diff --git a/src/webapp.ts b/src/webapp.ts index 03dc804b..615ef80f 100644 --- a/src/webapp.ts +++ b/src/webapp.ts @@ -1,12 +1,12 @@ import { GBConfigService } from "../packages/core.gbapp/services/GBConfigService"; +import { app, BrowserWindow } from 'electron'; +import path from 'path'; +import url from 'url'; -const { app, BrowserWindow } = require('electron'); -const path = require('path'); -const url = require('url'); + export function runUI() { -function createWindow() { // Create the browser window. - const win = new BrowserWindow({ width: 800, height: 600 }); + const win = new BrowserWindow({ width: 800, height: 600, title: 'General Bots Studio' }); // and load the index.html of the app. win.loadURL( @@ -18,4 +18,4 @@ function createWindow() { ); } -app.on('ready', createWindow); +app.on('ready', runUI); diff --git a/templates/api-client.gbai/api-client.gbdialog/partner-center.vbs b/templates/api-client.gbai/api-client.gbdialog/partner-center.vbs new file mode 100644 index 00000000..7a3111cb --- /dev/null +++ b/templates/api-client.gbai/api-client.gbdialog/partner-center.vbs @@ -0,0 +1,121 @@ +REM SET SCHEDULE "1 * * * * *" + +REM Obtém token do Partner Center via token do AD. + +SET HEADER "return-client-request-id" AS "true" +SET HEADER "Content-Type" As "application/x-www-form-urlencoded; charset=utf-8" + +pcToken = POST "https://login.microsoftonline.com/" + tenantId + "/oauth2/token", "resource=https%3A%2F%2Fgraph.windows.net&client_id=" + clientId + "&client_secret=" + clientSecret + "&grant_type=client_credentials" + +REM repara chamada de Billing. + +SET HEADER "Authorization" AS "Bearer " + pcToken.access_token +SET HEADER "MS-Contract-Version" AS "v1" +SET HEADER "MS-CorrelationId" AS uuid() +SET HEADER "MS-RequestId" AS uuid() +SET HEADER "MS-PartnerCenter-Application" AS "General Bots" +SET HEADER "X-Locale" AS "en-US" + +REM Sincroniza Customers e Subscriptions + +SET PAGE MODE "none" +list = GET host + "/v1/customers?size=20000" +MERGE "Customers" WITH list.items BY "Id" + +FOR EACH item IN list + subs = GET host + "/v1/customers/" + item.id + "/subscriptions" + MERGE "Subscriptions" WITH subs.items BY "Id" +END FOR + + +REM Determina período. + +IF today = dueDay THEN + IF period = "previous" AND NOT CONTINUATION TOKEN THEN + period = "current" + ELSE + period = "previous" + END IF + ELSE + period = "current" +END IF + + + +REM Perform the call and loop through the billing items. + +SET PAGE MODE "auto" +list = GET host + "/v1/invoices/unbilled/lineitems?provider=onetime&invoicelineitemtype=usagelineitems¤cycode=" + currency + "&period=previous&idparceiro=" + idparceiro +FOR EACH item IN list + SAVE "Billing", item.alternateId, item.availabilityId, item.billableQuantity, item.billingFrequency, item.chargeEndDate, item.chargeStartDate, item.chargeType, item.currency, item.customerCountry, item.customerDomainName, item.customerId, item.customerName, item.effectiveUnitPrice, item.invoiceNumber, item.meterDescription, item.mpnId, item.orderDate, item.orderId, item.partnerId, item.pCToBCExchangeRate, item.pCToBCExchangeRateDate, item.priceAdjustmentDescription, item.pricingCurrency, item.productId, item.productName, item.publisherId, item.publisherName, item.quantity, item.resellerMpnId, item.reservationOrderId, item.skuId, item.skuName, item.subscriptionDescription, item.subscriptionId, item.subtotal, item.taxTotal, item.termAndBillingCycle, item.totalForCustomer, item.unitPrice, item.unitType +END FOR + + +TABLE Billing + CustomerId Customers + ResourceGroup string(200) + ResourceUri string(1000) + Tags string(max) + AdditionalInfo string(max) + ServiceInfo1 string(max) + ServiceInfo2 string(max) + CustomerCountry string(6) + MpnId string(50) + ResellerMpnId string(50) + ChargeType string(200) + UnitPrice* double + Quantity* double + UnitType string(max) + BillingPreTaxTotal double + BillingCurrency string(6) + PricingPreTaxTotal double + PricingCurrency string(6) + EntitlementId string(50) + EntitlementDescription string(400) + PCToBCExchangeRate double + PCToBCExchangeRateDate date + EffectiveUnitPrice* double + RateOfPartnerEarnedCredit double + ConsumedService string(200) + ResourceLocation string(100) + MeterRegion string(100) + PartnerId string(50) + PartnerName string(400) + CustomerName string(400) + CustomerDomainName string(400) + InvoiceNumber string(400) + ProductId string(50) + SkuId string(50) + AvailabilityId string(50) + SkuName string(200) + ProductName string(400) + PublisherName string(200) + PublisherId string(200) + SubscriptionId string(50) + SubscriptionDescription string(400) + ChargeStartDate* date + ChargeEndDate* date + UsageDate date + MeterType string(400) + MeterCategory string(100) + MeterId string(50) + MeterSubCategory string(100) + MeterName string(200) + UnitOfMeasure string(100) + Reprocess boolean +END TABLE + + +TABLE Customers + TenantId guid + CompanyName string(100) + Id guid +END TABLE + + +TABLE Subscriptions + CustomerId Customers + Id guid + OfferName string(50) +END TABLE + diff --git a/templates/api-server.gbai/api.gbdialog/start.bas b/templates/api-server.gbai/api.gbdialog/start.bas new file mode 100644 index 00000000..a60abdf6 --- /dev/null +++ b/templates/api-server.gbai/api.gbdialog/start.bas @@ -0,0 +1,79 @@ +REM 302 / 1234 +PARAM barraca AS number LIKE Código da barraca +PARAM operador AS number LIKE Código do operador +DESCRIPTION Esta função (tool) nunca é chamada pelo GPT. É um WebService do GB. + +REM Login como Garçom +data = NEW OBJECT +data.IdentificadorOperador = operador +data.BarracaId = barraca +login = POST "https://api.server.com.br/api/Operadores/Login", data +SET HEADER "Authorization" AS login.accessToken + +REM Obter o cardápio da Barraca - Utilizar o token recuperado acima. +data = GET "https://api.server.com.br/api/Item/Barraca/${barraca}/Cliente" +produtos = NEW ARRAY + +FOR EACH item IN data[0].itens + IF item.statusItem = "Ativo" THEN + produto = NEW OBJECT + produto.id = item.id + produto.valor = item.valor + produto.nome = item.produto.nome + produto.detalhe = item.detalhe + produto.acompanhamentos = item.gruposAcompanhamento + + produtos.push(produto) + END IF +NEXT + +BEGIN SYSTEM PROMPT +Você deve atuar como um chatbot que irá auxiliar o atendente de uma loja respeitando as seguintes regras: +Sempre que o atendente fizer um pedido e deve incluir a mesa e o nome do cliente. Exemplo: Uma caipirinha de 400ml de Abacaxi para Rafael na mesa 10. +Os pedidos são feitos com base nos produtos e acompanhamentos deste cardápio de produtos: + ${JSON.stringify (produtos)}. +A cada pedido realizado, retorne JSON contendo o nome do produto, a mesa e uma lista de acompanhamentos com seus respectivos ids. +Mantenha itensPedido com apenas um item e mantenha itemsAcompanhamento apenas com os acompanhamentos que foram especificados. +ItensAcompanhamento deve conter a coleção de itens de acompanhamento do pedido, que é solicitado quando o pedido é feito, por exemplo: Caipirinha de Morango com Gelo, Açúcar e Limão, gerariam três elementos neste nó. + +Segue o exemplo do JSON do Pedido, apague os itens e mande um com o pedido feito pela pessoa, é apenas um exemplo: +{ + itensPedido: [ + { + item: { + id: 23872, + valor: 20, + nome: Caipirinha Limão + }, + itensAcompanhamento: [ + { + id: 0, + valor: 0, + quantidade: 1 + } + ], + quantidade: 1, + observacao: a + }, + { + item: { + id: 25510, + valor: 12, + nome: Heineken Lata 350ml + }, + itensAcompanhamento: [], + quantidade: 1, + observacao: nenhuma + } + ], + barracaId: ${barraca}, + usuarioId: ${operador}, + identificadorConta: Rafael, + tipoEntregaId: 2, + camposTipoEntrega: { + Mesa: 5 + } +} + + +END SYSTEM PROMPT \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/backup-sharepoint.bas b/templates/default.gbai/default.gbdialog/backup-sharepoint.bas new file mode 100644 index 00000000..e7f14003 --- /dev/null +++ b/templates/default.gbai/default.gbdialog/backup-sharepoint.bas @@ -0,0 +1,19 @@ +list = DIR "QCARobot.gbdrive" + +FOR EACH item IN list +TALK "Verificando: " + item.name +DEBUG item +oldDays = DATEDIFF date, item.modified, "day" + +IF oldDays > 3 THEN +TALK "O arquivo ${item.name} será arquivado, pois está expirado." +blob = UPLOAD item +TALK Upload para o Azure realizado. + +SAVE "log.xlsx", "archived",today,now, item.path, item.name, item.size, item.modified, blob.md5 +REM DELETE item +REM TALK Arquivo removido do SharePoint. +ELSE +TALK "O arquivo ${item.name} não precisa de arquivamento." +END IF +NEXT \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/bi-conversational.bas b/templates/default.gbai/default.gbdialog/bi-conversational.bas new file mode 100644 index 00000000..d6e3b16e --- /dev/null +++ b/templates/default.gbai/default.gbdialog/bi-conversational.bas @@ -0,0 +1,42 @@ + +REM SET SCHEDULE "1 * * * * *" + +billing = FIND "Billing" + +REM Consumo Mensal de barras. + +data = SELECT SUM(effectiveUnitPrice) as Value, MONTH(usageDate)+'/'+YEAR(usageDate) from billing GROUP BY MONTH(date), YEAR(date) +img = CHART "timseries", data +SEND FILE img, "Consumo Mensal" + +REM Categoria do Produto + +data = SELECT SUM(effectiveUnitPrice) as Value, meterCategory from billing GROUP BY meterCategory +img = CHART "donut", data +SEND FILE img, "Categoria do Produto" + +REM Sub Categoria do Produto + +data = SELECT SUM(effectiveUnitPrice) as Value, meterSubCategory from billing GROUP BY meterCategory +img = CHART "donut", data +SEND FILE img, "Subcategoria do Produto" + +REM Nome do Produto (Resumido) +REM productName + +REM Região do Recurso +REM resourceLocation + +REM Grupo do Recurso +REM resourceGroup + + +REM Consumo Mensal de barras (Envio individual para cada cliente) + +customers = FIND "Customers" +FOR EACH c IN customers +data = SELECT SUM(effectiveUnitPrice) as Value, MONTH(usageDate)+'/'+YEAR(usageDate) from billing GROUP BY MONTH(date), YEAR(date) WHERE customerId = c.id +img = CHART "timseries", data +SEND FILE img, "Consumo Mensal" +END FOR + diff --git a/templates/default.gbai/default.gbdialog/bot.vbs.gbignore b/templates/default.gbai/default.gbdialog/bot.vbs.gbignore deleted file mode 100644 index 7a6734c2..00000000 --- a/templates/default.gbai/default.gbdialog/bot.vbs.gbignore +++ /dev/null @@ -1,77 +0,0 @@ -' General Bots Copyright (c) pragmatismo.cloud. All rights reserved. Licensed under the AGPL-3.0. -' Rules from http://jsfiddle.net/roderick/dym05hsy - -talk "How many installments do you want to pay your Credit?" -hear installments - -if installments > 60 then - talk "The maximum number of payments is 60" -else - talk "What is the amount requested?" - hear amount - - if amount >100000 then - talk "We are sorry, we can only accept proposals bellow 100k" - else - - talk "What is the best due date?" - hear dueDate - - interestRate = 0 - adjustment = 0 - - if installments < 12 then - interestRate = 1.60 - adjustment = 0.09748 - end if - - if installments > 12 and installments < 18 then - interestRate = 1.66 - adjustment = 0.06869 - end if - - if installments > 18 and installments < 36 then - interestRate = 1.64 - adjustment = 0.05397 - end if - - if installments > 36 and installments < 48 then - interestRate = 1.62 - adjustment = 0.03931 - end if - - if installments > 48 and installments < 60 then - interestRate = 1.70 - adjustment = 0.03270 - end if - - if installments = 60 then - interestRate = 1.79 - adjustment = 0.02916 - end if - - if installments > 60 then - talk "The maximum number of payments is 60" - end if - - nInstallments = parseInt(installments) - vamount = parseFloat(amount) - initialPayment = vamount * 0.3 ' 30% of the value - tac = 800 - adjustment = 1.3 - - totalValue = amount - initialPayment + tac - paymentValue = totalValue * adjustment - finalValue = paymentValue * nInstallments + initialPayment - - talk "Congratulations! Your credit analysis is **done**:" - talk "First payment: **" + initialPayment + "**" - talk "Payment value: **" + paymentValue + "**" - talk "Interest Rate: **" + interestRate + "%**" - talk "Total Value: **" + totalValue + "**" - talk "Final Value: **" + finalValue + "**" - - - - end if -end if diff --git a/templates/default.gbai/default.gbdialog/broadcast.bas b/templates/default.gbai/default.gbdialog/broadcast.bas new file mode 100644 index 00000000..f38e5626 --- /dev/null +++ b/templates/default.gbai/default.gbdialog/broadcast.bas @@ -0,0 +1,10 @@ +lista = find "broadcast.csv" +indice = 1 +do while indice < ubound(lista) + linha = lista[indice] + TALK TO linha.mobile, "Oi, " + linha.name + ". Tudo bem? How about *General Bots* deployed? " + wait 5 + save “Log.xlsx”, today, now, username, from,linha.mobile, linha.name +indice = indice + 1 +loop +talk “O envio foi realizado. “ diff --git a/templates/default.gbai/default.gbdialog/cadastro-evento.bas b/templates/default.gbai/default.gbdialog/cadastro-evento.bas new file mode 100644 index 00000000..23f81e34 --- /dev/null +++ b/templates/default.gbai/default.gbdialog/cadastro-evento.bas @@ -0,0 +1,16 @@ +TALK "Olá, por favor, qual seu nome completo?" +HEAR nome +TALK "Qual o seu email para contato? " +HEAR email +TALK "Qual o seu telefone para contato? " +HEAR telefone +TALK "Função? " +HEAR funcao +TALK "Qual empresa que estará representando? " +HEAR empresa +TALK "É freelancer?" +HEAR freelancer AS BOOLEAN +TALK "Você pretende participar do evento em qual cidade? " +HEAR cidade AS "São Paulo", "Rio de Janeiro" +TALK "Você deseja receber outras informações do mailing da Quanta?" +SAVE "pessoas.xlsx", nome, email, telefone, funcao, empresa, freelancer \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/delivery.vbs.gbignore b/templates/default.gbai/default.gbdialog/delivery.vbs.gbignore deleted file mode 100644 index e119cda2..00000000 --- a/templates/default.gbai/default.gbdialog/delivery.vbs.gbignore +++ /dev/null @@ -1,50 +0,0 @@ -' General Bots Copyright (c) pragmatismo.cloud. All rights reserved. Licensed under the AGPL-3.0. - -talk "Quer pagar quanto?" -hear amount - -talk "Para onde?" -hear address - -if amount < 5 then - talk "O mínimo que vendo este produto é 5." -else - - if address is in "Rio" then - get payment amount - delivery to address - else - talk "Vou ver se tenho um parceiro para entregar aí e te falo. Eu só entrego no Rio." - end if -end if - -talk "Valeu!" - - - -Falar "Qual seu nome?" -Ouvir nome - -Falar "Informe seu CEP, por favor:" -Ouvir CEP - -Address = CEP - -Confira seu endereço: - -Address.Street -Address.Number - - -Falar "Manda sua localização para eu pedir a alguém para sair agora com o seu pedido" -Hear Location - -SAve "Pedidos.xlsx", Nome, From, Location.Street, Location.Number - - - -Falar "Manda sua localização que eu encontro o posto mais próximo" -Hear Location - -Find "Postos.xlsx", "Endereço=" + Location - \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/find-on-excel.vbs b/templates/default.gbai/default.gbdialog/find-on-excel.vbs deleted file mode 100644 index a8418aa0..00000000 --- a/templates/default.gbai/default.gbdialog/find-on-excel.vbs +++ /dev/null @@ -1,29 +0,0 @@ - - -if consulta = "cpf" then - talk "Qual seu CPF?" - hear cpf - talk "Aguarde alguns instantes que eu localizo seu cadastro..." - row = find "Cadastro.xlsx", "CPF=" + cpf - if row != null then - talk "Oi, " + row.Nome + "Tudo bem? " - talk "Seu código de cliente é " + row.Cod - talk "Vamos te enviar o pedido para seu endereço em: " + row.Endereço - send file "boleta.pdf", "Pague já e evite multas!" - else - talk "Tente novamente." - end if -else - talk "Qual seria seu código?" - hear cod - talk "Aguarde alguns instantes que eu localizo seu cadastro..." - row = find "Cadastro.xlsx", "Cod=" + cod - if row != null then - talk "Oi, " + row.Nome + "Tudo bem? " - talk "Seu CPF é " + row.CPF - talk "Vamos te enviar o pedido para seu endereço em: " + row.Endereço - send file "boleta.pdf", "Pague já e evite multas!" - else - talk "Tente novamente." - end if -end if diff --git a/templates/default.gbai/default.gbdialog/find-or-talk.vbs.gbignore b/templates/default.gbai/default.gbdialog/find-or-talk.vbs.gbignore deleted file mode 100644 index 084b0bf1..00000000 --- a/templates/default.gbai/default.gbdialog/find-or-talk.vbs.gbignore +++ /dev/null @@ -1,5 +0,0 @@ -talk “Olá! Seja bem vinda(o)!” - -X = find “campanhas.xlsx”, “nome=1239” OR TALK “Desculpe-me, não localizei seu nome.” - -talk “opa, vamos lá!” + x.nome diff --git a/templates/default.gbai/default.gbdialog/get-payment.vbs.gbignore b/templates/default.gbai/default.gbdialog/get-payment.vbs.gbignore deleted file mode 100644 index 75ea3531..00000000 --- a/templates/default.gbai/default.gbdialog/get-payment.vbs.gbignore +++ /dev/null @@ -1,12 +0,0 @@ -' General Bots Copyright (c) pragmatismo.cloud. All rights reserved. Licensed under the AGPL-3.0. - -talk "Quer pagar quanto?" -hear amount - -if amount < 5 then - talk "O mínimo que vendo este produto é 5." -else - get payment amount -end if - -talk "Valeu!" \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/get-set-excel.vbs b/templates/default.gbai/default.gbdialog/get-set-excel.vbs deleted file mode 100644 index 40e024d7..00000000 --- a/templates/default.gbai/default.gbdialog/get-set-excel.vbs +++ /dev/null @@ -1,9 +0,0 @@ -value = get "list.xslx", "A1:A1" - -set "list.xslx", "A1:A1", "value" - -myVar = find "chamadosbug748.xlsx", "CHAMADO=" + "5521979047667-44129-10" -status="alterado" -set "chamadosbug748.xlsx", "E" + myVar.line + ":E" + myVar.line, status -res = get "chamadosbug748.xlsx", "E" + myVar.line + ":E" + myVar.line -talk "Obrigado e até a próxima e veja bem, o resultado é esse: " + res diff --git a/templates/default.gbai/default.gbdialog/get-stock.vbs.gbignore b/templates/default.gbai/default.gbdialog/get-stock.bas similarity index 100% rename from templates/default.gbai/default.gbdialog/get-stock.vbs.gbignore rename to templates/default.gbai/default.gbdialog/get-stock.bas diff --git a/templates/default.gbai/default.gbdialog/http-get-and-post.vbs b/templates/default.gbai/default.gbdialog/http-get-and-post.vbs deleted file mode 100644 index 8454dfd7..00000000 --- a/templates/default.gbai/default.gbdialog/http-get-and-post.vbs +++ /dev/null @@ -1,6 +0,0 @@ - -user = get "http://server/path" - -user = post "http://server/path", "data" - -Talk “ The user area is” + user.area, user.validuser, user.user \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/interest.bas b/templates/default.gbai/default.gbdialog/interest.bas new file mode 100644 index 00000000..6a6b356a --- /dev/null +++ b/templates/default.gbai/default.gbdialog/interest.bas @@ -0,0 +1,77 @@ +' General Bots Copyright (c) pragmatismo.cloud. All rights reserved. Licensed under the AGPL-3.0. +' Rules from http://jsfiddle.net/roderick/dym05hsy + +talk "How many installments do you want to pay your Credit?" +hear installments + +If installments > 60 Then + talk "The maximum number of payments is 60" +Else + talk "What is the amount requested?" + hear amount + + If amount > 100000 Then + talk "We are sorry, we can only accept proposals bellow 100k" + Else + + talk "What is the best due date?" + hear dueDate + + interestRate = 0 + adjustment = 0 + + If installments < 12 Then + interestRate = 1.60 + adjustment = 0.09748 + End If + + If installments > 12 And installments < 18 Then + interestRate = 1.66 + adjustment = 0.06869 + End If + + If installments > 18 And installments < 36 Then + interestRate = 1.64 + adjustment = 0.05397 + End If + + If installments > 36 And installments < 48 Then + interestRate = 1.62 + adjustment = 0.03931 + End If + + If installments > 48 And installments < 60 Then + interestRate = 1.70 + adjustment = 0.03270 + End If + + If installments = 60 Then + interestRate = 1.79 + adjustment = 0.02916 + End If + + If installments > 60 Then + talk "The maximum number of payments is 60" + End If + + nInstallments = parseInt(installments) + vamount = parseFloat(amount) + initialPayment = vamount * 0.3 ' 30% of the value + tac = 800 + adjustment = 1.3 + + totalValue = amount - initialPayment + tac + paymentValue = totalValue * adjustment + finalValue = paymentValue * nInstallments + initialPayment + + talk "Congratulations! Your credit analysis is **done**:" + talk "First payment: **" + initialPayment + "**" + talk "Payment value: **" + paymentValue + "**" + talk "Interest Rate: **" + interestRate + "%**" + talk "Total Value: **" + totalValue + "**" + talk "Final Value: **" + finalValue + "**" + + + + End If +End If \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/lab.vbs.gbignore b/templates/default.gbai/default.gbdialog/lab.vbs.gbignore deleted file mode 100644 index d07d07df..00000000 --- a/templates/default.gbai/default.gbdialog/lab.vbs.gbignore +++ /dev/null @@ -1,26 +0,0 @@ -talk "Qual seu pedido?" -hear pedido -talk "Qual seu e-mail?" -hear email -talk "Obrigado, seu pedido será processado e retornamos." -ask payment - - -talk "Qual seu pedido?" -hear pedido -talk "Obrigado. Agora informe seu nome:" -Hear nome -Talk "Obrigado" + nome + "! Agora falta saber onde vamos entregar. Qual seu endereço?" -Hear endereço -Save "BistroBot.gbdata\pedidos.xlsx", nome, pedido, endereço, phone -Talk "Aguarde, enquanto eu calculo o valor total do seu pedido. Volto em alguns minutos, aguarde!" -Total = Ask "+5521999995555", "Qual o valor para o pedido da(o)" + nome +"?" -ask payment Total - -Talk "Qual seunome? " -Hear nome -Talk "Qual o valor pedido?" -Hear pedido -Save "Contoso.gbdata\ Aprovações.xlsx", nome, pedido, phone -Ask "+5521999995555", "Aprove por favor o pedido tal " -Talk "Sua aprovação foi enviada, aguarde." diff --git a/templates/default.gbai/default.gbdialog/save-on-excel.vbs.gbignore b/templates/default.gbai/default.gbdialog/save-on-excel.vbs.gbignore deleted file mode 100644 index 27504192..00000000 --- a/templates/default.gbai/default.gbdialog/save-on-excel.vbs.gbignore +++ /dev/null @@ -1,11 +0,0 @@ - -talk "O seu nome, por favor?" -hear nome - -talk "Qual seu pedido?" -hear details - -talk "Valeu " + nome + "! Agora falta saber onde vamos entregar. \nQual seu endereço?" -hear address - -save "Pedidos.xlsx", id, nome, from, address, details, today diff --git a/templates/default.gbai/default.gbdialog/sys-bot-farm-creation.vbs.gbignore b/templates/default.gbai/default.gbdialog/sys-bot-farm-creation.vbs.gbignore deleted file mode 100644 index 95a20666..00000000 --- a/templates/default.gbai/default.gbdialog/sys-bot-farm-creation.vbs.gbignore +++ /dev/null @@ -1,37 +0,0 @@ -' General Bots Copyright (c) pragmatismo.cloud. All rights reserved. Licensed under the AGPL-3.0. - -talk "Please, tell me what is the Bot name?" -hear title - -talk "If you tell me your username/password, I can show service subscription list to you." -talk "What is your Username (eg.: human@domain.bot)" -hear email - -talk "What is your Password" -hear password - -talk "Your password? (Will be discarded after sigining process)" -talk "Can you describe in a few words what the bot is about?" -hear description - -talk "Please, paste the Subscription ID (Azure):" -hear subscriptionId - -talk "Please, provide the cloud location just like 'westus'?" -hear location - -talk "Please, provide the Authoring Key for NLP service (LUIS)?" -hear authoringKey - -talk "Sorry, this part cannot be automated yet due to Microsoft schedule, please go to https://apps.dev.microsoft.com/portal/register-app to generate manually an App ID and App Secret." -wait 5 - -talk "Please, provide the App ID you just generated:" -hear appId - -talk "Please, provide the Generated Password:" -hear appPassword - -talk "Now, I am going to create a Bot farm... Wait 5 minutes or more..." - -create a bot farm using title, email, password, location, authoringKey, appId, appPassword, subscriptionId diff --git a/templates/default.gbai/default.gbdialog/templates.vbs b/templates/default.gbai/default.gbdialog/templates.vbs deleted file mode 100644 index 55cccb41..00000000 --- a/templates/default.gbai/default.gbdialog/templates.vbs +++ /dev/null @@ -1,25 +0,0 @@ - - -talk "qual seu nome?" -hear nome -talk "qual seu e-mail?" -hear email - -documento = "meutemplate.docx", nome, email, - -send file documento - -save file documento, "curriculos/nome" + ".docx" - -' $name - -'$trabalho - -'Experiência -'$ano1 -'$oquefoifeitoAno1 -'$ano2 -'$oquefoifeitoAno2 -'$ano3 -'$oquefoifeitoAno1 - diff --git a/templates/default.gbai/default.gbdialog/translator.gbignore b/templates/default.gbai/default.gbdialog/translator.gbignore deleted file mode 100644 index bbd32df1..00000000 --- a/templates/default.gbai/default.gbdialog/translator.gbignore +++ /dev/null @@ -1,13 +0,0 @@ -rem hi - -talk "Qual seu nome?" -hear name - -talk "Qual seu CPF?" -hear CPF - -talk "Por que você abrirá este chamado?" -hear translated motivo - -talk "Seu nome: " + name -talk "Você disse em Português " + motivo. \ No newline at end of file diff --git a/templates/default.gbai/default.gbdialog/validate-email-list.bas b/templates/default.gbai/default.gbdialog/validate-email-list.bas new file mode 100644 index 00000000..fba7c312 --- /dev/null +++ b/templates/default.gbai/default.gbdialog/validate-email-list.bas @@ -0,0 +1,12 @@ +SET MAX LINES 1000 +list = FIND "Mailing Global.xlsx" +indice = 1 +do while indice < ubound(list) + row = list[indice] +valid = IS VALID row.email +indice = indice + 1 +IF valid THEN +Set "Mailing Global.xlsx", "B" + indice , "x" +END IF +loop +talk “Validate OK. “ diff --git a/templates/default.gbai/default.gbtheme/images/logo.png b/templates/default.gbai/default.gbdrive/logo-gb.png similarity index 100% rename from templates/default.gbai/default.gbtheme/images/logo.png rename to templates/default.gbai/default.gbdrive/logo-gb.png diff --git a/templates/default.gbai/default.gbdrive/northwind.db b/templates/default.gbai/default.gbdrive/northwind.db new file mode 100644 index 00000000..3c558345 Binary files /dev/null and b/templates/default.gbai/default.gbdrive/northwind.db differ diff --git a/templates/default.gbai/default.gbdrive/template.docx b/templates/default.gbai/default.gbdrive/template.docx new file mode 100644 index 00000000..3b3482bc Binary files /dev/null and b/templates/default.gbai/default.gbdrive/template.docx differ diff --git a/templates/default.gbai/default.gbkb/pages/about.md b/templates/default.gbai/default.gbkb/articles/about.md similarity index 91% rename from templates/default.gbai/default.gbkb/pages/about.md rename to templates/default.gbai/default.gbkb/articles/about.md index f8f61594..dd257863 100644 --- a/templates/default.gbai/default.gbkb/pages/about.md +++ b/templates/default.gbai/default.gbkb/articles/about.md @@ -1,16 +1,16 @@ -#Desenvolvimento Personalizado +# Desenvolvimento Personalizado General Bots usa linguagem natural para entender o que as pessoas querem, facilitando o desenvolvimento de código. Quando alguém diz: "Preciso do relatório mensal" ou "Imprima o relatório do mês", General Bots entende o mesmo. Utilize o nosso desenvolvimento para estender a conversa com suas próprias regras e intenções. -#Descoberta +# Descoberta General Bots pode pró-ativamente sugerir suas habilidades para os usuários baseada no contexto, como solicitação de um pedido, envio de uma mensagem, agendamento de uma conferência telefônica ou qualquer ação definida na sua aplicação. -#Torne pessoal +# Torne pessoal Entregue experiências únicas através do conhecimento que a General Bots possui sobre seus usuários e preferências, para ajudar a tomar decisões e apresentar sempre o melhor cenário. -#Sem downloads adicionais +# Sem downloads adicionais A interface da sua aplicação é automaticamente integrada à General Bots, de modo que não seja necessário realizar download ou instalações. diff --git a/templates/default.gbai/default.gbkb/videos/placeholder b/templates/default.gbai/default.gbkb/docs/placeholder similarity index 100% rename from templates/default.gbai/default.gbkb/videos/placeholder rename to templates/default.gbai/default.gbkb/docs/placeholder diff --git a/templates/default.gbai/default.gbkb/draft.md b/templates/default.gbai/default.gbkb/draft.md deleted file mode 100644 index 3e56b0b6..00000000 --- a/templates/default.gbai/default.gbkb/draft.md +++ /dev/null @@ -1,3 +0,0 @@ - ltimas notcias - Contato - Ofertas diff --git a/templates/default.gbai/default.gbkb/images/placeholder b/templates/default.gbai/default.gbkb/images/placeholder new file mode 100644 index 00000000..e69de29b diff --git a/templates/default.gbai/default.gbkb/menu.csv b/templates/default.gbai/default.gbkb/menu.csv new file mode 100644 index 00000000..e111e4a0 --- /dev/null +++ b/templates/default.gbai/default.gbkb/menu.csv @@ -0,0 +1,10 @@ +welcome,,, +who we are,,, +contact us,,, +about,,, +,us,, +,,music, +,,painting, +,,anything, +,,,else +Cookies,,, diff --git a/templates/default.gbai/default.gbkb/package.json b/templates/default.gbai/default.gbkb/package.json deleted file mode 100644 index 6d8fb717..00000000 --- a/templates/default.gbai/default.gbkb/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "botId":"pragmatismo-ai-prd", - "version": "1.0.0", - "description": "Bot pragmatismo.", - "license": "Private" -} \ No newline at end of file diff --git a/templates/default.gbai/default.gbkb/subjects.json b/templates/default.gbai/default.gbkb/subjects.json deleted file mode 100644 index 0afc084b..00000000 --- a/templates/default.gbai/default.gbkb/subjects.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "children": [ - { - "title": "Bots & AI", - "description": "Bots & inteligência artificial.", - "id": "bots-ai", - "children": [ - { - "title": "General Bots", - "description": "Plataforma de bots da pragmatismo.cloud.", - "id": "general-bots" - }, - { - "title": "Cortana Intelligence Suite", - "description": "Suite de Big Data da Microsoft.", - "id": "cortana" - } - ] - }, - { - "title": "Produtividade", - "description": "Artigos sobre sistemas Internos.", - "id": "produtividade", - "children": [ - { - "title": "Microsoft Project Online", - "description": "Artigos sobre o Microsoft Project Online.", - "id": "msproject" - }, - { - "title": "SharePoint", - "description": "SharePoint, sites e serviços.", - "id": "sharepoint" - }, - { - "title": "Office 365", - "description": "Plataforma colaborativa moderna da Microsoft.", - "id": "office365" - }, - { - "title": "Microsoft Dynamics", - "description": "Artigos sobre plataforma de CRM da Microsoft.", - "id": "msdynamics" - }, - { - "title": "Power BI", - "description": "Dashboards modernos e intuitivos.", - "id": "powerbi" - } - ] - }, - { - "title": "Sobre", - "description": "Artigos sobre o Bot da pragmatismo.cloud", - "id": "sobre" - } - ] -} \ No newline at end of file diff --git a/templates/default.gbai/default.gbkb/subjects/bots-ai.png b/templates/default.gbai/default.gbkb/subjects/bots-ai.png deleted file mode 100644 index 5c9197f7..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/bots-ai.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/cortana.png b/templates/default.gbai/default.gbkb/subjects/cortana.png deleted file mode 100644 index 96445174..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/cortana.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/general-bots.png b/templates/default.gbai/default.gbkb/subjects/general-bots.png deleted file mode 100644 index 1a68418e..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/general-bots.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/msdynamics.png b/templates/default.gbai/default.gbkb/subjects/msdynamics.png deleted file mode 100644 index 6076c093..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/msdynamics.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/msproject.png b/templates/default.gbai/default.gbkb/subjects/msproject.png deleted file mode 100644 index 7df4e3d1..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/msproject.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/office365.png b/templates/default.gbai/default.gbkb/subjects/office365.png deleted file mode 100644 index f9aae394..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/office365.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/powerbi.png b/templates/default.gbai/default.gbkb/subjects/powerbi.png deleted file mode 100644 index f9aae394..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/powerbi.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/produtividade.png b/templates/default.gbai/default.gbkb/subjects/produtividade.png deleted file mode 100644 index 8e4d6c1a..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/produtividade.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/sharepoint.png b/templates/default.gbai/default.gbkb/subjects/sharepoint.png deleted file mode 100644 index a1423ae9..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/sharepoint.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/skype.png b/templates/default.gbai/default.gbkb/subjects/skype.png deleted file mode 100644 index 7ee1402e..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/skype.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/subjects/sobre.png b/templates/default.gbai/default.gbkb/subjects/sobre.png deleted file mode 100644 index 9e0f1b76..00000000 Binary files a/templates/default.gbai/default.gbkb/subjects/sobre.png and /dev/null differ diff --git a/templates/default.gbai/default.gbkb/tabular/min.tsv b/templates/default.gbai/default.gbkb/tabular/min.tsv deleted file mode 100644 index 7eca9c7a..00000000 Binary files a/templates/default.gbai/default.gbkb/tabular/min.tsv and /dev/null differ diff --git a/templates/default.gbai/default.gbot/Config.xlsx b/templates/default.gbai/default.gbot/Config.xlsx deleted file mode 100644 index 4216ce3e..00000000 Binary files a/templates/default.gbai/default.gbot/Config.xlsx and /dev/null differ diff --git a/templates/default.gbai/default.gbot/config.csv b/templates/default.gbai/default.gbot/config.csv new file mode 100644 index 00000000..9b4f5ca4 --- /dev/null +++ b/templates/default.gbai/default.gbot/config.csv @@ -0,0 +1,54 @@ +name,value +.gbapp List, +Admin Notify E-mail, +AdminNotify SMS Number, +Answer Mode, +Azure Open AI Embedding Model, +Azure Open AI Endpoint, +Azure Open AI GPT Model, +Azure Open AI Image Model, +Azure Open AI Instance, +Azure Open AI Key, +Azure Open AI Version, +Blob Account, +Blob Key, +Blob Name, +Bot Admin Number, +Bot Number, +Can Publish, +Color1, +Color2, +Debug Web Automation, +Default Content Language, +Default User Language, +Domain, +Enable Audio Hearing, +Feedback Improve Message, +Group Spell, +Keep Text, +Language Detector, +library, +Logo, +Logo Image Height, +Logo Image Url, +Logo Image Width, +Marketplace Bot Id, +Merchant ID, +Merchant Key, +NLP Score, +Notes, +Open AI Key, +Search Score, +Start Dialog, +Store Answer Score, +Synchronize Database, +Transfer To, +Twitter Access Token, +Twitter Access Token Secret, +Twitter Consumer Key, +Twitter Consumer Key Secret, +Website, +Welcome Article, +WhatsApp Admins, +WhatsApp Group ID, +WhatsApp Group Shortcuts, \ No newline at end of file diff --git a/templates/default.gbai/default.gbtheme/css/App.css b/templates/default.gbai/default.gbtheme/css/App.css deleted file mode 100644 index 5fa8a7c5..00000000 --- a/templates/default.gbai/default.gbtheme/css/App.css +++ /dev/null @@ -1,171 +0,0 @@ -body { - background-color: #dadada !important; -} - -.loader { - opacity: 1 !important; - filter: opacity(100%); -} - - -.gb-quality-button-yes { - width: 54px; - text-decoration: none; - text-transform: uppercase; - background-color: green; - color: white; - padding: 2px; - cursor: pointer; - transition: 0.9s; - transition-delay: 0.3s; - border: none; -} - -.gb-quality-button-no { - width: 54px; - text-decoration: none; - text-transform: uppercase; - background-color: red; - color: white; - padding: 2px; - cursor: pointer; - transition: 0.9s; - transition-delay: 0.3s; - border: none; -} - -.gb-markdown-player-quality { - background-color: #f5e4a8; - padding: 4px; - position: absolute; - bottom: 14px; - left: -9px; - width: 100%; - border-radius: 5px; - color: #52514e; - border: 1px solid #b2a46e; - text-align: center; -} - -.media-player { - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important; -} - -.media-player-container { - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; -} - -.media-player-link { - cursor: pointer !important; -} - -.gb-bullet-player { - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important; - background: white; - height: 95%; - overflow-y: scroll; -} - -.gb-bullet-player-item { - cursor: pointer; -} - -.gb-image-player-outter-div {} - -.gb-image-player-img {} - -.gb-bullet-player-outter-div {} - -.gb-video-player-wrapper { - width: 100%; - height: 100%; -} - -.gb-video-react-player { - - position: relative; - left: 50%; - transform: translateX(-50%); -} - -body { - display: flex; -} - -.App { - min-height: 100vh; -} - -.App .body { - display: flex; - flex-direction: row; -} - -.body { - flex-basis: 12em; - /* Default value of the element before distribuing the remaing space */ - flex-grow: 0; - /* Defined the ability to groe */ - flex-shrink: 0; - /* Defines the ability to shrink */ - max-width: 12em; - order: -1; -} - -body { - margin: 0; - overflow: hidden; -} - -.media-player-container { - overflow: auto; - max-height: 90%; - font-family: "Open Sans", sans-serif; - background: white; -} - -.media-player-scroll { - height: 1500px; -} - -@media screen and (max-width: 1000px) { - .media-player-scroll h1 { - font-size: 15px; - } - .media-player-scroll p { - font-size: 12px; - } - .media-player-scroll li { - font-size: 12px; - } -} - -@media screen and (max-width: 451px) { - .media-player { - position: relative; - zoom: 90%; - height: 94% !important; - width: 95% !important; - background-repeat: no-repeat; - margin-top: 10px; - margin-left: 10px; - margin-right: -40px; - } - .gb-markdown-player-quality { - bottom: -1px; - left: -3px; - } -} - -@media screen and (min-width: 451px) { - .media-player { - position: relative; - zoom: 90%; - height: 100% !important; - width: 95% !important; - background-repeat: no-repeat; - margin-top: 10px; - margin-left: 20px; - margin-right: -40px; - } -} \ No newline at end of file diff --git a/templates/default.gbai/default.gbtheme/css/ChatPane.css b/templates/default.gbai/default.gbtheme/css/ChatPane.css deleted file mode 100644 index 42ad5bc5..00000000 --- a/templates/default.gbai/default.gbtheme/css/ChatPane.css +++ /dev/null @@ -1,47 +0,0 @@ -.webchat > div { - height: 100%; - width: 100%; -} - -.webchat { - background-color: white !important; - left: 57%; - right: 0%; - top: 0; - bottom: 0; - overflow: auto !important; -} - -@media screen and (max-width: 1000px) { - .webchat { - display: inline-block !important; - width: 96% !important; - height: 57% !important; - font-family: 'Open Sans', sans-serif; - font-size: 14px; - left: 50%; - top: 41%; - - position: absolute; - margin-left: -48%; - } -} - -@media screen and (min-width: 1000px) { - .webchat { - display: inline-block !important; - width: 50% !important; - font-family: 'Open Sans', sans-serif; - font-size: 14px; - top: 1% !important; - - height: 96%; - position: absolute; - right: 0; - margin-left: -8%; - position: absolute; - top: 0; - bottom: 0; - border-bottom: 4px solid #4f4f4f; - } -} diff --git a/templates/default.gbai/default.gbtheme/css/Content.css b/templates/default.gbai/default.gbtheme/css/Content.css deleted file mode 100644 index 987a3986..00000000 --- a/templates/default.gbai/default.gbtheme/css/Content.css +++ /dev/null @@ -1,18 +0,0 @@ -.body .container { padding: 1em;width: 100%;height: 100% } - -.body .ms-Breadcrumb { - margin-bottom: 1em; - margin-top: 0; -} - -.body .selection { - height: calc(100vh - 16.5em); - overflow-x: auto; -} - -.body .selection .selection-item { - display: flex; - padding: 0.5em; -} - -.body .selection .selection-item .name { margin-left: 1em; } diff --git a/templates/default.gbai/default.gbtheme/css/Footer.css b/templates/default.gbai/default.gbtheme/css/Footer.css deleted file mode 100644 index 3033d6d4..00000000 --- a/templates/default.gbai/default.gbtheme/css/Footer.css +++ /dev/null @@ -1,8 +0,0 @@ -.footer { - align-items: center; - background-color: #450a64; - display: flex; - justify-content: center; -} - -.footer-container { color: white; } \ No newline at end of file diff --git a/templates/default.gbai/default.gbtheme/css/GifPlayer.css b/templates/default.gbai/default.gbtheme/css/GifPlayer.css deleted file mode 100644 index 727c752a..00000000 --- a/templates/default.gbai/default.gbtheme/css/GifPlayer.css +++ /dev/null @@ -1,31 +0,0 @@ -@media screen and (max-width: 1000px) { - .player { - width: 93% !important; - height: 26% !important; - border: 7px solid #272727; - position: absolute; - top: 9%; - left: 50%; - margin-left: -48%; - background: url(../images/general-bot-background.jpg), WHITE; - background-repeat: no-repeat; - background-size: contain; - background-position: center; - } -} - -@media screen and (min-width: 1000px) { - .player { - display: inline-block; - width: 46% !important; - height: 81% !important; - border: 7px solid #272727; - background: url(../images/general-bot-background.jpg), WHITE; - background-repeat: no-repeat; - background-size: contain; - background-position: center; - position: absolute; - left: 1%; - top: 15%; - } -} \ No newline at end of file diff --git a/templates/default.gbai/default.gbtheme/css/MediaPlayer.css b/templates/default.gbai/default.gbtheme/css/MediaPlayer.css deleted file mode 100644 index a193c839..00000000 --- a/templates/default.gbai/default.gbtheme/css/MediaPlayer.css +++ /dev/null @@ -1,7 +0,0 @@ -.media { - margin-top: 20px; - height: 280px !important; - width: 200px !important; - - } - diff --git a/templates/default.gbai/default.gbtheme/css/NavBar.css b/templates/default.gbai/default.gbtheme/css/NavBar.css deleted file mode 100644 index 6aa3d64e..00000000 --- a/templates/default.gbai/default.gbtheme/css/NavBar.css +++ /dev/null @@ -1,22 +0,0 @@ -.NavBar { - align-items: center; - display: flex; - justify-content: space-between; - padding: 0.2em 0.5em; - border-bottom-width: 1px; - color:black; - height: 100%; -} - -/* -.logo { - padding-top: 4em; -} -*/ - -.NavBar .searchbox { width: 20em; } - -.NavBar .searchbox .ms-SearchBox { - background-color: white; - margin-bottom: 0; -} diff --git a/templates/default.gbai/default.gbtheme/css/SideBarMenu.css b/templates/default.gbai/default.gbtheme/css/SideBarMenu.css deleted file mode 100644 index b1de09f1..00000000 --- a/templates/default.gbai/default.gbtheme/css/SideBarMenu.css +++ /dev/null @@ -1,199 +0,0 @@ -.ms-Nav { - background: #222; - color: white; - margin-top: 20px; -} - -.ms-Nav-link { - color: white !important; - background-color: #222222 !important; -} - -.ms-Nav-link a:active { - border-right: 2px solid white; -} - -.ms-Nav-compositeLink .ms-Nav-chevronButton.ms-Nav-chevronButton--link { - background: #222222 !important; -} - -.ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton, -.ms-Nav-compositeLink.is-selected a { - padding-left: 70px !important; -} - -html[dir="ltr"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton:after, -html[dir="ltr"] .ms-Nav-compositeLink.is-selected a:after { - border-left: none !important; -} - -@media screen and (max-width: 419px) { - .sidebar { - display: inline-block !important; - background-color: #3f3f3f !important; - height: 8%; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - } - - .tittleSideBarMenu { - display: none; - } - - .iconMenu { - color: #d1d1d1; - font-size: 13px; - display: inline; - margin-right: 20px; - } - .iconMenu:hover { - color: white; - } - - .IconsMenu { - position: absolute; - top: 50%; - margin-top: -23px; - height: 22px; - width: 300px; - left: 50%; - margin-left: -150px; - text-align: center; - font-family: "Open Sans", sans-serif; - } - - .iconText { - cursor: pointer; - } -} - -@media screen and (min-width: 520px) and (max-width:1000px) { - .tittleSideBarMenu { - display: none; - } - .sidebar { - display: inline-block !important; - background-color: #3f3f3f !important; - height: 8%; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - background-image: url(../images/bot-logo.png); - background-position: 2px 2px; - background-repeat: no-repeat; - background-size: contain; - } - .IconsMenu { - position: absolute; - top: 50%; - margin-top: -11px; - height: 22px; - width: 416px; - left: 100px !important; - margin-left: 0px !important; - text-align: center; - font-family: "Open Sans", sans-serif; - } - .iconMenu { - color: #d1d1d1; - } - .iconMenu:hover { - color: white; - } -} - -@media screen and (min-width: 420px) and (max-width: 1000px) { - .sidebar { - display: inline-block !important; - background-color: #3f3f3f !important; - height: 8%; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - } - .tittleSideBarMenu { - display: none; - } - - .iconMenu { - color: #d1d1d1; - font-size: 14px; - display: inline; - margin-right: 20px; - } - .iconMenu:hover { - color: white; - } - - .IconsMenu { - position: absolute; - top: 50%; - margin-top: -11px; - height: 22px; - width: 416px; - left: 50%; - margin-left: -208px; - text-align: center; - font-family: "Open Sans", sans-serif; - } - - .iconText { - cursor: pointer; - } -} - - -@media screen and (min-width: 1000px) { - .sidebar { - display: inline-block !important; - background-color: #3f3f3f !important; - height: 15%; - position: absolute; - top: 1%; - left: 1%; - width: 46% !important; - border-right: 14px solid #3f3f3f !important; - } - - .tittleSideBarMenu { - color: white; - text-align: center; - } - - .iconMenu { - color: #d1d1d1; - font-size: 14px; - text-align: center; - margin-right: 20px; - margin-left: 20px; - } - .iconMenu:hover { - color: white; - } - - .IconsMenu { - width: 520px; - display: inline-flex; - position: absolute; - left: 50%; - margin-left: -249px; - bottom: 10px; - height: 22px; - font-family: "Open Sans", sans-serif; - } - - .iconText { - cursor: pointer; - } -} - - - -.iconText:hover { - cursor: pointer; - -} \ No newline at end of file diff --git a/templates/default.gbai/default.gbtheme/css/index.css b/templates/default.gbai/default.gbtheme/css/index.css deleted file mode 100644 index a0f01045..00000000 --- a/templates/default.gbai/default.gbtheme/css/index.css +++ /dev/null @@ -1,41 +0,0 @@ -body { - font-family: 'Open Sans', sans-serif; - font-size: 14px; - margin: 0; - padding: 0; -} - - - -/** Main Layout rules */ - -.App { min-height: 100vh; } - -.App { - display: flex; - flex: 1; - flex-direction: column; -} - -.App .body { - display: flex; - flex: 1; - flex-direction: row; -} - -.body .sidebar { order: -1; } - -.body .content { flex: 1; } - -.body .sidebar { - flex: 0 0 12em; - max-width: 12em; -} - -.App .header { height: 4em; } - -.App .footer { height: 4em; } - -/** Text */ - -.text-red { color: red; } \ No newline at end of file diff --git a/templates/default.gbai/default.gbtheme/css/webchat-style.json b/templates/default.gbai/default.gbtheme/css/webchat-style.json deleted file mode 100644 index a731280a..00000000 --- a/templates/default.gbai/default.gbtheme/css/webchat-style.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "accent": "Red", - "avatarSize": 40, - - "backgroundColor": "White", - - "bubbleBackground": "White", - "bubbleBorder": "solid 1px #E6E6E6", - "bubbleBorderRadius": 2, - "bubbleFromUserBackground": "White", - "bubbleFromUserBorder": "solid 1px #E6E6E6", - "bubbleFromUserBorderRadius": 2, - "bubbleFromUserTextColor": "Black", - "bubbleImageHeight": 240, - "bubbleMaxWidth": 480, - "bubbleMinHeight": 40, - "bubbleMinWidth": 250, - "bubbleTextColor": "Black", - - "hideSendBox": false, - - "microphoneButtonColorOnDictate": "#F33", - - "paddingRegular": 10, - "paddingWide": 20, - - "sendBoxButtonColor": "#999", - "sendBoxButtonColorOnDisabled": "#CCC", - "sendBoxButtonColorOnFocus": "#333", - "sendBoxButtonColorOnHover": "#333", - - "sendBoxHeight": 40, - - "showSpokenText": false, - - "suggestedActionBackground": "White", - "suggestedActionBorder": "solid 2px", - "suggestedActionBorderRadius": 0, - "suggestedActionDisabledBackground": "White", - "suggestedActionDisabledBorder": "solid 2px #E6E6E6", - "suggestedActionHeight": 40, - "transcriptOverlayButtonBackground": "rgba(0, 0, 0, .6)", - "transcriptOverlayButtonBackgroundOnFocus": "rgba(0, 0, 0, .8)", - "transcriptOverlayButtonBackgroundOnHover": "rgba(0, 0, 0, .8)", - "transcriptOverlayButtonColor": "White", - "transcriptOverlayButtonColorOnFocus": "White", - "transcriptOverlayButtonColorOnHover": "White", - - "videoHeight": 270 -} diff --git a/templates/default.gbai/default.gbtheme/images/bot-logo-chat.png b/templates/default.gbai/default.gbtheme/images/bot-logo-chat.png deleted file mode 100644 index eff66af3..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/bot-logo-chat.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/bot-logo.png b/templates/default.gbai/default.gbtheme/images/bot-logo.png deleted file mode 100644 index 68f43a6c..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/bot-logo.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/bot-tv-on.png b/templates/default.gbai/default.gbtheme/images/bot-tv-on.png deleted file mode 100644 index 3dc4d075..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/bot-tv-on.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/bot-tv-on2.png b/templates/default.gbai/default.gbtheme/images/bot-tv-on2.png deleted file mode 100644 index 3feffa66..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/bot-tv-on2.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/bot-tv.png b/templates/default.gbai/default.gbtheme/images/bot-tv.png deleted file mode 100644 index ddb76e8c..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/bot-tv.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/chat-background.png b/templates/default.gbai/default.gbtheme/images/chat-background.png deleted file mode 100644 index df3a0645..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/chat-background.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/chat-header-logo.png b/templates/default.gbai/default.gbtheme/images/chat-header-logo.png deleted file mode 100644 index 60a4b6cb..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/chat-header-logo.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/chat-header.png b/templates/default.gbai/default.gbtheme/images/chat-header.png deleted file mode 100644 index 12375d90..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/chat-header.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/general-bot-background.jpg b/templates/default.gbai/default.gbtheme/images/general-bot-background.jpg deleted file mode 100644 index bb82ff17..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/general-bot-background.jpg and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/logo-Pragmatismo.png b/templates/default.gbai/default.gbtheme/images/logo-Pragmatismo.png deleted file mode 100644 index 27c055cf..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/logo-Pragmatismo.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/logo.jpg b/templates/default.gbai/default.gbtheme/images/logo.jpg deleted file mode 100644 index 80af5455..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/logo.jpg and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/pragmatismo-logo.png b/templates/default.gbai/default.gbtheme/images/pragmatismo-logo.png deleted file mode 100644 index af20dea8..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/pragmatismo-logo.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/pragmatismo-powered-by.png b/templates/default.gbai/default.gbtheme/images/pragmatismo-powered-by.png deleted file mode 100644 index ed6242f4..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/pragmatismo-powered-by.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/projector-background.jpg b/templates/default.gbai/default.gbtheme/images/projector-background.jpg deleted file mode 100644 index 8b70a5de..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/projector-background.jpg and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/projetor_tela.png b/templates/default.gbai/default.gbtheme/images/projetor_tela.png deleted file mode 100644 index b984ff5a..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/projetor_tela.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/screen.png b/templates/default.gbai/default.gbtheme/images/screen.png deleted file mode 100644 index 7ecac2d8..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/screen.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/images/tela-01.png b/templates/default.gbai/default.gbtheme/images/tela-01.png deleted file mode 100644 index 2b596533..00000000 Binary files a/templates/default.gbai/default.gbtheme/images/tela-01.png and /dev/null differ diff --git a/templates/default.gbai/default.gbtheme/package.json b/templates/default.gbai/default.gbtheme/package.json deleted file mode 100644 index 45d5f79f..00000000 --- a/templates/default.gbai/default.gbtheme/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": "1.0.0", - "description": "Default General Bots theme.", - "authors": "pragmatismo.cloud", - "license": "AGPL-3.0" - -} \ No newline at end of file diff --git a/templates/edu.gbai/edu.gbdialog/start.bas b/templates/edu.gbai/edu.gbdialog/start.bas new file mode 100644 index 00000000..0a1ef562 --- /dev/null +++ b/templates/edu.gbai/edu.gbdialog/start.bas @@ -0,0 +1,47 @@ +REM SEND FILE “colegioinovar.PNG” +SAVE “Log.xlsx”, from, mobile, today, now, "start" + +TALK "Olá " + username + “, eu sou o *InovarBot*, uma inteligência artificial criada para facilitar o seu contato conosco (instituição de ensino) e auxiliar em seu crescimento/progresso/evolução educacional." + +row = FIND “People.xlsx”, “mobile=” + from +IF row = null THEN + +TALK Verifiquei que é seu primeiro contato conosco por aqui. Vamos fazer o seu cadastro e realizar a matrícula logo em seguida. +TALK Por favor, me informe o seu *Nome Completo*: +HEAR nome AS NAME +TALK Qual a sua *data de nascimento*? Exemplo: 23/09/2001. +HEAR datanasc AS DATE +TALK Informe por favor, um *e-mail* pra contato. +HEAR email as EMAIL +TALK Por favor, me informe o seu *CPF* (apenas números). +HEAR cpf AS INTEGER +TALK Qual o *número do seu RG ou CNH* (apenas números, por favor)? +HEAR rg AS INTEGER +TALK Qual o *Órgão emissor* do seu RG ou CNH? +HEAR orgaorg +TALK Qual a *data de emissão* do seu *RG* ou *CNH*? Exemplo: 15/08/2007 +HEAR dataemite AS DATE +TALK Qual o seu endereço completo? +HEAR ender +TALK Pronto! Agora vamos realizar a matrícula do aluno.\n\nPor favor, me informe o *Nome Completo*: +HEAR nomealuno AS NAME +TALK Me informe o *CPF* (apenas números) do aluno: +HEAR cpfaluno as INTEGER +TALK Qual a *data de nascimento* do aluno? Exemplo: 07/03/2010 +HEAR datanascaluno AS DATE +TALK Qual o *RG* (apenas números) do aluno? +HEAR rgaluno AS DATE +TALK Qual o *Órgão Emissor* do documento? +HEAR orgaoaluno +TALK Qual o *Data de Emissão* do documento? +HEAR emissaoaluno AS DATE +TALK Qual o nome do responsável financeiro do aluno? +HEAR respfinaluno AS NAME +TALK Vou registrar agora estes dados, um instante por favor... +SAVE People.xlsx, id, from, nome, datanasc, email, cpf, rg, orgaorg, dataemite, ender, nomealuno, cpfaluno, datanascaluno +TALK "Pronto, + username + ! O cadastro foi realizado. Iremos entrar em contato. \n\nObrigado!" + +ELSE +SAVE Log.xlsx, from, mobile, today, now, hello +TALK Olá, + username + ! Bem-vinda(o) de volta. Você pode tirar dúvidas comigo sobre a secretaria. +END IF \ No newline at end of file diff --git a/templates/instagram.gbai/instagram.gbdialog/poster.bas b/templates/instagram.gbai/instagram.gbdialog/poster.bas new file mode 100644 index 00000000..7bed7e8e --- /dev/null +++ b/templates/instagram.gbai/instagram.gbdialog/poster.bas @@ -0,0 +1,7 @@ +REM SET SCHEDULE "* 8 * * * *" +user = “user@domain.com” +pass= "*************" +o =get "https://oooooooooo" +caption = REWRITE "Crie um post sobre hotmart e seus produtos, no estilo dica do dia incluíndo 10 hashtags, estilo instagram o texto! Importante, retorne só a saída de texto pronta" +image = GET IMAGE caption +POST username, password, image, caption diff --git a/templates/law.gbai/law.gbdialog/processo.bas b/templates/law.gbai/law.gbdialog/processo.bas new file mode 100644 index 00000000..6c75c254 --- /dev/null +++ b/templates/law.gbai/law.gbdialog/processo.bas @@ -0,0 +1,6 @@ +TALK "Qual o número do processo? " +HEAR processo +text = GET "processo.pdf" +text = "Com base neste documento, responda as dúvidas da pessoa: \n\n" + text +SET CONTEXT text +TALK "Processo ${processo} carregado. Pode me perguntar qualquer coisa do processo ou me peça um resumo da forma que você precisar. " diff --git a/templates/law.gbai/law.gbdialog/start.bas b/templates/law.gbai/law.gbdialog/start.bas new file mode 100644 index 00000000..d0365825 --- /dev/null +++ b/templates/law.gbai/law.gbdialog/start.bas @@ -0,0 +1,21 @@ +TALK “Olá! “ + username + “! Bem vinda(o)!” +BEGIN TALK +Ddiálogo/funcionalidade de consulta de processos, o conector WhastApp Vs Microsoft Teams (General Bots - Conector Microsoft Teams X WhatsApp.pdf) teve destaque por caber em diversas realidades vislumbradas nesse segmento. + +A funcionalidade Reading Comprehension / GPT permite submeter perguntas a um texto, como o Diário Oficial, em busca de conteúdos relacionados. + +O repositório respeita a governança e permite que conteúdos sejam compartilhados com clientes e equipe, conforme credenciais. + +O site do escritório pode ter um chat atendendo ao público, onde o mesmo Bot é a entidade invocada. + +O cliente pode conversar via WhatsApp com o escritório, estando o agente atendendo via chat do Microsoft Teams e o General Bots atuando como N1, respondendo prontamente a questões de base de conhecimento. + +Proativamente o Assistente Virtual pode disparar alertas/notificações para colaboradores e/ou clientes, baseados em agenda ou em KPIs monitorados pela inteligência. + + +END TALK +BEGIN SYSTEM PROMPT + +If someone asks about my technology, I'm an AI virtual assistant powered by the General Bots LLM. +Always answer at the end, saying that your are available, say it each time differently with each response. +END SYSTEM PROMPT \ No newline at end of file diff --git a/templates/law.gbai/law.gbdrive/processo.pdf b/templates/law.gbai/law.gbdrive/processo.pdf new file mode 100644 index 00000000..dab0cc85 Binary files /dev/null and b/templates/law.gbai/law.gbdrive/processo.pdf differ diff --git a/templates/store.gbai/store.gbdata/Categories.csv b/templates/store.gbai/store.gbdata/Categories.csv new file mode 100644 index 00000000..dc1975c4 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Categories.csv @@ -0,0 +1,9 @@ +CategoryID,CategoryName,Description +1,Beverages,"Soft drinks, coffees, teas, beers, and ales" +2,Condiments,"Sweet and savory sauces, relishes, spreads, and seasonings" +3,Confections,"Desserts, candies, and sweet breads" +4,Dairy Products,Cheeses +5,Grains/Cereals,"Breads, crackers, pasta, and cereal" +6,Meat/Poultry,Prepared meats +7,Produce,Dried fruit and bean curd +8,Seafood,Seaweed and fish diff --git a/templates/store.gbai/store.gbdata/CustomerCustomerDemo.csv b/templates/store.gbai/store.gbdata/CustomerCustomerDemo.csv new file mode 100644 index 00000000..b411c66c --- /dev/null +++ b/templates/store.gbai/store.gbdata/CustomerCustomerDemo.csv @@ -0,0 +1 @@ +CustomerID,CustomerTypeID diff --git a/templates/store.gbai/store.gbdata/CustomerDemographics.csv b/templates/store.gbai/store.gbdata/CustomerDemographics.csv new file mode 100644 index 00000000..47e9ae98 --- /dev/null +++ b/templates/store.gbai/store.gbdata/CustomerDemographics.csv @@ -0,0 +1 @@ +CustomerTypeID,CustomerDesc diff --git a/templates/store.gbai/store.gbdata/Customers.csv b/templates/store.gbai/store.gbdata/Customers.csv new file mode 100644 index 00000000..00e09689 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Customers.csv @@ -0,0 +1,94 @@ +CustomerID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax +ALFKI,Alfreds Futterkiste,Maria Anders,Sales Representative,Obere Str. 57,Berlin,Western Europe,12209,Germany,030-0074321,030-0076545 +ANATR,Ana Trujillo Emparedados y helados,Ana Trujillo,Owner,Avda. de la Constitución 2222,México D.F.,Central America,05021,Mexico,(5) 555-4729,(5) 555-3745 +ANTON,Antonio Moreno Taquería,Antonio Moreno,Owner,Mataderos 2312,México D.F.,Central America,05023,Mexico,(5) 555-3932, +AROUT,Around the Horn,Thomas Hardy,Sales Representative,120 Hanover Sq.,London,British Isles,WA1 1DP,UK,(171) 555-7788,(171) 555-6750 +BERGS,Berglunds snabbköp,Christina Berglund,Order Administrator,Berguvsvägen 8,Luleå,Northern Europe,S-958 22,Sweden,0921-12 34 65,0921-12 34 67 +BLAUS,Blauer See Delikatessen,Hanna Moos,Sales Representative,Forsterstr. 57,Mannheim,Western Europe,68306,Germany,0621-08460,0621-08924 +BLONP,Blondesddsl père et fils,Frédérique Citeaux,Marketing Manager,"24, place Kléber",Strasbourg,Western Europe,67000,France,88.60.15.31,88.60.15.32 +BOLID,Bólido Comidas preparadas,Martín Sommer,Owner,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain,(91) 555 22 82,(91) 555 91 99 +BONAP,Bon app',Laurence Lebihan,Owner,"12, rue des Bouchers",Marseille,Western Europe,13008,France,91.24.45.40,91.24.45.41 +BOTTM,Bottom-Dollar Markets,Elizabeth Lincoln,Accounting Manager,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada,(604) 555-4729,(604) 555-3745 +BSBEV,B's Beverages,Victoria Ashworth,Sales Representative,Fauntleroy Circus,London,British Isles,EC2 5NT,UK,(171) 555-1212, +CACTU,Cactus Comidas para llevar,Patricio Simpson,Sales Agent,Cerrito 333,Buenos Aires,South America,1010,Argentina,(1) 135-5555,(1) 135-4892 +CENTC,Centro comercial Moctezuma,Francisco Chang,Marketing Manager,Sierras de Granada 9993,México D.F.,Central America,05022,Mexico,(5) 555-3392,(5) 555-7293 +CHOPS,Chop-suey Chinese,Yang Wang,Owner,Hauptstr. 29,Bern,Western Europe,3012,Switzerland,0452-076545, +COMMI,Comércio Mineiro,Pedro Afonso,Sales Associate,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil,(11) 555-7647, +CONSH,Consolidated Holdings,Elizabeth Brown,Sales Representative,Berkeley Gardens 12 Brewery,London,British Isles,WX1 6LT,UK,(171) 555-2282,(171) 555-9199 +DRACD,Drachenblut Delikatessen,Sven Ottlieb,Order Administrator,Walserweg 21,Aachen,Western Europe,52066,Germany,0241-039123,0241-059428 +DUMON,Du monde entier,Janine Labrune,Owner,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France,40.67.88.88,40.67.89.89 +EASTC,Eastern Connection,Ann Devon,Sales Agent,35 King George,London,British Isles,WX3 6FW,UK,(171) 555-0297,(171) 555-3373 +ERNSH,Ernst Handel,Roland Mendel,Sales Manager,Kirchgasse 6,Graz,Western Europe,8010,Austria,7675-3425,7675-3426 +FAMIA,Familia Arquibaldo,Aria Cruz,Marketing Assistant,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil,(11) 555-9857, +FISSA,FISSA Fabrica Inter. Salchichas S.A.,Diego Roel,Accounting Manager,"C/ Moralzarzal, 86",Madrid,Southern Europe,28034,Spain,(91) 555 94 44,(91) 555 55 93 +FOLIG,Folies gourmandes,Martine Rancé,Assistant Sales Agent,"184, chaussée de Tournai",Lille,Western Europe,59000,France,20.16.10.16,20.16.10.17 +FOLKO,Folk och fä HB,Maria Larsson,Owner,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden,0695-34 67 21, +FRANK,Frankenversand,Peter Franken,Marketing Manager,Berliner Platz 43,München,Western Europe,80805,Germany,089-0877310,089-0877451 +FRANR,France restauration,Carine Schmitt,Marketing Manager,"54, rue Royale",Nantes,Western Europe,44000,France,40.32.21.21,40.32.21.20 +FRANS,Franchi S.p.A.,Paolo Accorti,Sales Representative,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy,011-4988260,011-4988261 +FURIB,Furia Bacalhau e Frutos do Mar,Lino Rodriguez,Sales Manager,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal,(1) 354-2534,(1) 354-2535 +GALED,Galería del gastrónomo,Eduardo Saavedra,Marketing Manager,"Rambla de Cataluña, 23",Barcelona,Southern Europe,08022,Spain,(93) 203 4560,(93) 203 4561 +GODOS,Godos Cocina Típica,José Pedro Freyre,Sales Manager,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain,(95) 555 82 82, +GOURL,Gourmet Lanchonetes,André Fonseca,Sales Associate,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil,(11) 555-9482, +GREAL,Great Lakes Food Market,Howard Snyder,Marketing Manager,2732 Baker Blvd.,Eugene,North America,97403,USA,(503) 555-7555, +GROSR,GROSELLA-Restaurante,Manuel Pereira,Owner,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela,(2) 283-2951,(2) 283-3397 +HANAR,Hanari Carnes,Mario Pontes,Accounting Manager,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil,(21) 555-0091,(21) 555-8765 +HILAA,HILARION-Abastos,Carlos Hernández,Sales Representative,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela,(5) 555-1340,(5) 555-1948 +HUNGC,Hungry Coyote Import Store,Yoshi Latimer,Sales Representative,City Center Plaza 516 Main St.,Elgin,North America,97827,USA,(503) 555-6874,(503) 555-2376 +HUNGO,Hungry Owl All-Night Grocers,Patricia McKenna,Sales Associate,8 Johnstown Road,Cork,British Isles,,Ireland,2967 542,2967 3333 +ISLAT,Island Trading,Helen Bennett,Marketing Manager,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK,(198) 555-8888, +KOENE,Königlich Essen,Philip Cramer,Sales Associate,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany,0555-09876, +LACOR,La corne d'abondance,Daniel Tonini,Sales Representative,"67, avenue de l'Europe",Versailles,Western Europe,78000,France,30.59.84.10,30.59.85.11 +LAMAI,La maison d'Asie,Annette Roulet,Sales Manager,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France,61.77.61.10,61.77.61.11 +LAUGB,Laughing Bacchus Wine Cellars,Yoshi Tannamuri,Marketing Assistant,1900 Oak St.,Vancouver,North America,V3F 2K1,Canada,(604) 555-3392,(604) 555-7293 +LAZYK,Lazy K Kountry Store,John Steel,Marketing Manager,12 Orchestra Terrace,Walla Walla,North America,99362,USA,(509) 555-7969,(509) 555-6221 +LEHMS,Lehmanns Marktstand,Renate Messner,Sales Representative,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany,069-0245984,069-0245874 +LETSS,Let's Stop N Shop,Jaime Yorres,Owner,87 Polk St. Suite 5,San Francisco,North America,94117,USA,(415) 555-5938, +LILAS,LILA-Supermercado,Carlos González,Accounting Manager,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela,(9) 331-6954,(9) 331-7256 +LINOD,LINO-Delicateses,Felipe Izquierdo,Owner,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela,(8) 34-56-12,(8) 34-93-93 +LONEP,Lonesome Pine Restaurant,Fran Wilson,Sales Manager,89 Chiaroscuro Rd.,Portland,North America,97219,USA,(503) 555-9573,(503) 555-9646 +MAGAA,Magazzini Alimentari Riuniti,Giovanni Rovelli,Marketing Manager,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy,035-640230,035-640231 +MAISD,Maison Dewey,Catherine Dewey,Sales Agent,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium,(02) 201 24 67,(02) 201 24 68 +MEREP,Mère Paillarde,Jean Fresnière,Marketing Assistant,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada,(514) 555-8054,(514) 555-8055 +MORGK,Morgenstern Gesundkost,Alexander Feuer,Marketing Assistant,Heerstr. 22,Leipzig,Western Europe,04179,Germany,0342-023176, +NORTS,North/South,Simon Crowther,Sales Associate,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK,(171) 555-7733,(171) 555-2530 +OCEAN,Océano Atlántico Ltda.,Yvonne Moncada,Sales Agent,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina,(1) 135-5333,(1) 135-5535 +OLDWO,Old World Delicatessen,Rene Phillips,Sales Representative,2743 Bering St.,Anchorage,North America,99508,USA,(907) 555-7584,(907) 555-2880 +OTTIK,Ottilies Käseladen,Henriette Pfalzheim,Owner,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany,0221-0644327,0221-0765721 +PARIS,Paris spécialités,Marie Bertrand,Owner,"265, boulevard Charonne",Paris,Western Europe,75012,France,(1) 42.34.22.66,(1) 42.34.22.77 +PERIC,Pericles Comidas clásicas,Guillermo Fernández,Sales Representative,Calle Dr. Jorge Cash 321,México D.F.,Central America,05033,Mexico,(5) 552-3745,(5) 545-3745 +PICCO,Piccolo und mehr,Georg Pipps,Sales Manager,Geislweg 14,Salzburg,Western Europe,5020,Austria,6562-9722,6562-9723 +PRINI,Princesa Isabel Vinhos,Isabel de Castro,Sales Representative,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal,(1) 356-5634, +QUEDE,Que Delícia,Bernardo Batista,Accounting Manager,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil,(21) 555-4252,(21) 555-4545 +QUEEN,Queen Cozinha,Lúcia Carvalho,Marketing Assistant,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil,(11) 555-1189, +QUICK,QUICK-Stop,Horst Kloss,Accounting Manager,Taucherstraße 10,Cunewalde,Western Europe,01307,Germany,0372-035188, +RANCH,Rancho grande,Sergio Gutiérrez,Sales Representative,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina,(1) 123-5555,(1) 123-5556 +RATTC,Rattlesnake Canyon Grocery,Paula Wilson,Assistant Sales Representative,2817 Milton Dr.,Albuquerque,North America,87110,USA,(505) 555-5939,(505) 555-3620 +REGGC,Reggiani Caseifici,Maurizio Moroni,Sales Associate,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy,0522-556721,0522-556722 +RICAR,Ricardo Adocicados,Janete Limeira,Assistant Sales Agent,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil,(21) 555-3412, +RICSU,Richter Supermarkt,Michael Holz,Sales Manager,Grenzacherweg 237,Genève,Western Europe,1203,Switzerland,0897-034214, +ROMEY,Romero y tomillo,Alejandra Camino,Accounting Manager,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain,(91) 745 6200,(91) 745 6210 +SANTG,Santé Gourmet,Jonas Bergulfsen,Owner,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway,07-98 92 35,07-98 92 47 +SAVEA,Save-a-lot Markets,Jose Pavarotti,Sales Representative,187 Suffolk Ln.,Boise,North America,83720,USA,(208) 555-8097, +SEVES,Seven Seas Imports,Hari Kumar,Sales Manager,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK,(171) 555-1717,(171) 555-5646 +SIMOB,Simons bistro,Jytte Petersen,Owner,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark,31 12 34 56,31 13 35 57 +SPECD,Spécialités du monde,Dominique Perrier,Marketing Manager,"25, rue Lauriston",Paris,Western Europe,75016,France,(1) 47.55.60.10,(1) 47.55.60.20 +SPLIR,Split Rail Beer & Ale,Art Braunschweiger,Sales Manager,P.O. Box 555,Lander,North America,82520,USA,(307) 555-4680,(307) 555-6525 +SUPRD,Suprêmes délices,Pascale Cartrain,Accounting Manager,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium,(071) 23 67 22 20,(071) 23 67 22 21 +THEBI,The Big Cheese,Liz Nixon,Marketing Manager,89 Jefferson Way Suite 2,Portland,North America,97201,USA,(503) 555-3612, +THECR,The Cracker Box,Liu Wong,Marketing Assistant,55 Grizzly Peak Rd.,Butte,North America,59801,USA,(406) 555-5834,(406) 555-8083 +TOMSP,Toms Spezialitäten,Karin Josephs,Marketing Manager,Luisenstr. 48,Münster,Western Europe,44087,Germany,0251-031259,0251-035695 +TORTU,Tortuga Restaurante,Miguel Angel Paolino,Owner,Avda. Azteca 123,México D.F.,Central America,05033,Mexico,(5) 555-2933, +TRADH,Tradição Hipermercados,Anabela Domingues,Sales Representative,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil,(11) 555-2167,(11) 555-2168 +TRAIH,Trail's Head Gourmet Provisioners,Helvetius Nagy,Sales Associate,722 DaVinci Blvd.,Kirkland,North America,98034,USA,(206) 555-8257,(206) 555-2174 +VAFFE,Vaffeljernet,Palle Ibsen,Sales Manager,Smagsloget 45,Århus,Northern Europe,8200,Denmark,86 21 32 43,86 22 33 44 +Val2 ,IT,Val2,IT,,,,,,, +VALON,IT,Valon Hoti,IT,,,,,,, +VICTE,Victuailles en stock,Mary Saveley,Sales Agent,"2, rue du Commerce",Lyon,Western Europe,69004,France,78.32.54.86,78.32.54.87 +VINET,Vins et alcools Chevalier,Paul Henriot,Accounting Manager,59 rue de l'Abbaye,Reims,Western Europe,51100,France,26.47.15.10,26.47.15.11 +WANDK,Die Wandernde Kuh,Rita Müller,Sales Representative,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany,0711-020361,0711-035428 +WARTH,Wartian Herkku,Pirkko Koskitalo,Accounting Manager,Torikatu 38,Oulu,Scandinavia,90110,Finland,981-443655,981-443655 +WELLI,Wellington Importadora,Paula Parente,Sales Manager,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil,(14) 555-8122, +WHITC,White Clover Markets,Karl Jablonski,Owner,305 - 14th Ave. S. Suite 3B,Seattle,North America,98128,USA,(206) 555-4112,(206) 555-4115 +WILMK,Wilman Kala,Matti Karttunen,Owner/Marketing Assistant,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland,90-224 8858,90-224 8858 +WOLZA,Wolski Zajazd,Zbyszek Piestrzeniewicz,Owner,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland,(26) 642-7012,(26) 642-7012 diff --git a/templates/store.gbai/store.gbdata/EmployeeTerritories.csv b/templates/store.gbai/store.gbdata/EmployeeTerritories.csv new file mode 100644 index 00000000..b41977c0 --- /dev/null +++ b/templates/store.gbai/store.gbdata/EmployeeTerritories.csv @@ -0,0 +1,50 @@ +EmployeeID,TerritoryID +1,06897 +1,19713 +2,01581 +2,01730 +2,01833 +2,02116 +2,02139 +2,02184 +2,40222 +3,30346 +3,31406 +3,32859 +3,33607 +4,20852 +4,27403 +4,27511 +5,02903 +5,07960 +5,08837 +5,10019 +5,10038 +5,11747 +5,14450 +6,85014 +6,85251 +6,98004 +6,98052 +6,98104 +7,60179 +7,60601 +7,80202 +7,80909 +7,90405 +7,94025 +7,94105 +7,95008 +7,95054 +7,95060 +8,19428 +8,44122 +8,45839 +8,53404 +9,03049 +9,03801 +9,48075 +9,48084 +9,48304 +9,55113 +9,55439 diff --git a/templates/store.gbai/store.gbdata/Employees.csv b/templates/store.gbai/store.gbdata/Employees.csv new file mode 100644 index 00000000..c1046fd0 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Employees.csv @@ -0,0 +1,12 @@ +EmployeeID,LastName,FirstName,Title,TitleOfCourtesy,BirthDate,HireDate,Address,City,Region,PostalCode,Country,HomePhone,Extension,Notes,ReportsTo,PhotoPath +1,Davolio,Nancy,Sales Representative,Ms.,1968-12-08,2012-05-01,507 - 20th Ave. E.Apt. 2A,Seattle,North America,98122,USA,(206) 555-9857,5467,"Education includes a BA in psychology from Colorado State University in 1970. She also completed ""The Art of the Cold Call."" Nancy is a member of Toastmasters International.",2,http://accweb/emmployees/davolio.bmp +2,Fuller,Andrew,"Vice President, Sales",Dr.,1972-02-19,2012-08-14,908 W. Capital Way,Tacoma,North America,98401,USA,(206) 555-9482,3457,"Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.",,http://accweb/emmployees/fuller.bmp +3,Leverling,Janet,Sales Representative,Ms.,1983-08-30,2012-04-01,722 Moss Bay Blvd.,Kirkland,North America,98033,USA,(206) 555-3412,3355,Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.,2,http://accweb/emmployees/leverling.bmp +4,Peacock,Margaret,Sales Representative,Mrs.,1957-09-19,2013-05-03,4110 Old Redmond Rd.,Redmond,North America,98052,USA,(206) 555-8122,5176,Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.,2,http://accweb/emmployees/peacock.bmp +5,Buchanan,Steven,Sales Manager,Mr.,1975-03-04,2013-10-17,14 Garrett Hill,London,British Isles,SW1 8JR,UK,(71) 555-4848,3453,"Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses ""Successful Telemarketing"" and ""International Sales Management."" He is fluent in French.",2,http://accweb/emmployees/buchanan.bmp +6,Suyama,Michael,Sales Representative,Mr.,1983-07-02,2013-10-17,"Coventry House +Miner Rd.",London,British Isles,EC2 7JR,UK,(71) 555-7773,428,"Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses ""Multi-Cultural Selling"" and ""Time Management for the Sales Professional."" He is fluent in Japanese and can read and write French, Portuguese, and Spanish.",5,http://accweb/emmployees/davolio.bmp +7,King,Robert,Sales Representative,Mr.,1980-05-29,2014-01-02,"Edgeham Hollow +Winchester Way",London,British Isles,RG1 9SP,UK,(71) 555-5598,465,"Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled ""Selling in Europe,"" he was transferred to the London office in March 1993.",5,http://accweb/emmployees/davolio.bmp +8,Callahan,Laura,Inside Sales Coordinator,Ms.,1978-01-09,2014-03-05,4726 - 11th Ave. N.E.,Seattle,North America,98105,USA,(206) 555-1189,2344,Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.,2,http://accweb/emmployees/davolio.bmp +9,Dodsworth,Anne,Sales Representative,Ms.,1986-01-27,2014-11-15,7 Houndstooth Rd.,London,British Isles,WG2 7LT,UK,(71) 555-4444,452,Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.,5,http://accweb/emmployees/davolio.bmp diff --git a/templates/store.gbai/store.gbdata/Order Details.csv b/templates/store.gbai/store.gbdata/Order Details.csv new file mode 100644 index 00000000..2eb71e08 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Order Details.csv @@ -0,0 +1,609284 @@ +OrderID,ProductID,UnitPrice,Quantity,Discount +10248,11,14,12,0.0 +10248,42,9.8,10,0.0 +10248,72,34.8,5,0.0 +10249,14,18.6,9,0.0 +10249,51,42.4,40,0.0 +10250,41,7.7,10,0.0 +10250,51,42.4,35,0.15 +10250,65,16.8,15,0.15 +10251,22,16.8,6,0.05 +10251,57,15.6,15,0.05 +10251,65,16.8,20,0.0 +10252,20,64.8,40,0.05 +10252,33,2,25,0.05 +10252,60,27.2,40,0.0 +10253,31,10,20,0.0 +10253,39,14.4,42,0.0 +10253,49,16,40,0.0 +10254,24,3.6,15,0.15 +10254,55,19.2,21,0.15 +10254,74,8,21,0.0 +10255,2,15.2,20,0.0 +10255,16,13.9,35,0.0 +10255,36,15.2,25,0.0 +10255,59,44,30,0.0 +10256,53,26.2,15,0.0 +10256,77,10.4,12,0.0 +10257,27,35.1,25,0.0 +10257,39,14.4,6,0.0 +10257,77,10.4,15,0.0 +10258,2,15.2,50,0.2 +10258,5,17,65,0.2 +10258,32,25.6,6,0.2 +10259,21,8,10,0.0 +10259,37,20.8,1,0.0 +10260,41,7.7,16,0.25 +10260,57,15.6,50,0.0 +10260,62,39.4,15,0.25 +10260,70,12,21,0.25 +10261,21,8,20,0.0 +10261,35,14.4,20,0.0 +10262,5,17,12,0.2 +10262,7,24,15,0.0 +10262,56,30.4,2,0.0 +10263,16,13.9,60,0.25 +10263,24,3.6,28,0.0 +10263,30,20.7,60,0.25 +10263,74,8,36,0.25 +10264,2,15.2,35,0.0 +10264,41,7.7,25,0.15 +10265,17,31.2,30,0.0 +10265,70,12,20,0.0 +10266,12,30.4,12,0.05 +10267,40,14.7,50,0.0 +10267,59,44,70,0.15 +10267,76,14.4,15,0.15 +10268,29,99,10,0.0 +10268,72,27.8,4,0.0 +10269,33,2,60,0.05 +10269,72,27.8,20,0.05 +10270,36,15.2,30,0.0 +10270,43,36.8,25,0.0 +10271,33,2,24,0.0 +10272,20,64.8,6,0.0 +10272,31,10,40,0.0 +10272,72,27.8,24,0.0 +10273,10,24.8,24,0.05 +10273,31,10,15,0.05 +10273,33,2,20,0.0 +10273,40,14.7,60,0.05 +10273,76,14.4,33,0.05 +10274,71,17.2,20,0.0 +10274,72,27.8,7,0.0 +10275,24,3.6,12,0.05 +10275,59,44,6,0.05 +10276,10,24.8,15,0.0 +10276,13,4.8,10,0.0 +10277,28,36.4,20,0.0 +10277,62,39.4,12,0.0 +10278,44,15.5,16,0.0 +10278,59,44,15,0.0 +10278,63,35.1,8,0.0 +10278,73,12,25,0.0 +10279,17,31.2,15,0.25 +10280,24,3.6,12,0.0 +10280,55,19.2,20,0.0 +10280,75,6.2,30,0.0 +10281,19,7.3,1,0.0 +10281,24,3.6,6,0.0 +10281,35,14.4,4,0.0 +10282,30,20.7,6,0.0 +10282,57,15.6,2,0.0 +10283,15,12.4,20,0.0 +10283,19,7.3,18,0.0 +10283,60,27.2,35,0.0 +10283,72,27.8,3,0.0 +10284,27,35.1,15,0.25 +10284,44,15.5,21,0.0 +10284,60,27.2,20,0.25 +10284,67,11.2,5,0.25 +10285,1,14.4,45,0.2 +10285,40,14.7,40,0.2 +10285,53,26.2,36,0.2 +10286,35,14.4,100,0.0 +10286,62,39.4,40,0.0 +10287,16,13.9,40,0.15 +10287,34,11.2,20,0.0 +10287,46,9.6,15,0.15 +10288,54,5.9,10,0.1 +10288,68,10,3,0.1 +10289,3,8,30,0.0 +10289,64,26.6,9,0.0 +10290,5,17,20,0.0 +10290,29,99,15,0.0 +10290,49,16,15,0.0 +10290,77,10.4,10,0.0 +10291,13,4.8,20,0.1 +10291,44,15.5,24,0.1 +10291,51,42.4,2,0.1 +10292,20,64.8,20,0.0 +10293,18,50,12,0.0 +10293,24,3.6,10,0.0 +10293,63,35.1,5,0.0 +10293,75,6.2,6,0.0 +10294,1,14.4,18,0.0 +10294,17,31.2,15,0.0 +10294,43,36.8,15,0.0 +10294,60,27.2,21,0.0 +10294,75,6.2,6,0.0 +10295,56,30.4,4,0.0 +10296,11,16.8,12,0.0 +10296,16,13.9,30,0.0 +10296,69,28.8,15,0.0 +10297,39,14.4,60,0.0 +10297,72,27.8,20,0.0 +10298,2,15.2,40,0.0 +10298,36,15.2,40,0.25 +10298,59,44,30,0.25 +10298,62,39.4,15,0.0 +10299,19,7.3,15,0.0 +10299,70,12,20,0.0 +10300,66,13.6,30,0.0 +10300,68,10,20,0.0 +10301,40,14.7,10,0.0 +10301,56,30.4,20,0.0 +10302,17,31.2,40,0.0 +10302,28,36.4,28,0.0 +10302,43,36.8,12,0.0 +10303,40,14.7,40,0.1 +10303,65,16.8,30,0.1 +10303,68,10,15,0.1 +10304,49,16,30,0.0 +10304,59,44,10,0.0 +10304,71,17.2,2,0.0 +10305,18,50,25,0.1 +10305,29,99,25,0.1 +10305,39,14.4,30,0.1 +10306,30,20.7,10,0.0 +10306,53,26.2,10,0.0 +10306,54,5.9,5,0.0 +10307,62,39.4,10,0.0 +10307,68,10,3,0.0 +10308,69,28.8,1,0.0 +10308,70,12,5,0.0 +10309,4,17.6,20,0.0 +10309,6,20,30,0.0 +10309,42,11.2,2,0.0 +10309,43,36.8,20,0.0 +10309,71,17.2,3,0.0 +10310,16,13.9,10,0.0 +10310,62,39.4,5,0.0 +10311,42,11.2,6,0.0 +10311,69,28.8,7,0.0 +10312,28,36.4,4,0.0 +10312,43,36.8,24,0.0 +10312,53,26.2,20,0.0 +10312,75,6.2,10,0.0 +10313,36,15.2,12,0.0 +10314,32,25.6,40,0.1 +10314,58,10.6,30,0.1 +10314,62,39.4,25,0.1 +10315,34,11.2,14,0.0 +10315,70,12,30,0.0 +10316,41,7.7,10,0.0 +10316,62,39.4,70,0.0 +10317,1,14.4,20,0.0 +10318,41,7.7,20,0.0 +10318,76,14.4,6,0.0 +10319,17,31.2,8,0.0 +10319,28,36.4,14,0.0 +10319,76,14.4,30,0.0 +10320,71,17.2,30,0.0 +10321,35,14.4,10,0.0 +10322,52,5.6,20,0.0 +10323,15,12.4,5,0.0 +10323,25,11.2,4,0.0 +10323,39,14.4,4,0.0 +10324,16,13.9,21,0.15 +10324,35,14.4,70,0.15 +10324,46,9.6,30,0.0 +10324,59,44,40,0.15 +10324,63,35.1,80,0.15 +10325,6,20,6,0.0 +10325,13,4.8,12,0.0 +10325,14,18.6,9,0.0 +10325,31,10,4,0.0 +10325,72,27.8,40,0.0 +10326,4,17.6,24,0.0 +10326,57,15.6,16,0.0 +10326,75,6.2,50,0.0 +10327,2,15.2,25,0.2 +10327,11,16.8,50,0.2 +10327,30,20.7,35,0.2 +10327,58,10.6,30,0.2 +10328,59,44,9,0.0 +10328,65,16.8,40,0.0 +10328,68,10,10,0.0 +10329,19,7.3,10,0.05 +10329,30,20.7,8,0.05 +10329,38,210.8,20,0.05 +10329,56,30.4,12,0.05 +10330,26,24.9,50,0.15 +10330,72,27.8,25,0.15 +10331,54,5.9,15,0.0 +10332,18,50,40,0.2 +10332,42,11.2,10,0.2 +10332,47,7.6,16,0.2 +10333,14,18.6,10,0.0 +10333,21,8,10,0.1 +10333,71,17.2,40,0.1 +10334,52,5.6,8,0.0 +10334,68,10,10,0.0 +10335,2,15.2,7,0.2 +10335,31,10,25,0.2 +10335,32,25.6,6,0.2 +10335,51,42.4,48,0.2 +10336,4,17.6,18,0.1 +10337,23,7.2,40,0.0 +10337,26,24.9,24,0.0 +10337,36,15.2,20,0.0 +10337,37,20.8,28,0.0 +10337,72,27.8,25,0.0 +10338,17,31.2,20,0.0 +10338,30,20.7,15,0.0 +10339,4,17.6,10,0.0 +10339,17,31.2,70,0.05 +10339,62,39.4,28,0.0 +10340,18,50,20,0.05 +10340,41,7.7,12,0.05 +10340,43,36.8,40,0.05 +10341,33,2,8,0.0 +10341,59,44,9,0.15 +10342,2,15.2,24,0.2 +10342,31,10,56,0.2 +10342,36,15.2,40,0.2 +10342,55,19.2,40,0.2 +10343,64,26.6,50,0.0 +10343,68,10,4,0.05 +10343,76,14.4,15,0.0 +10344,4,17.6,35,0.0 +10344,8,32,70,0.25 +10345,8,32,70,0.0 +10345,19,7.3,80,0.0 +10345,42,11.2,9,0.0 +10346,17,31.2,36,0.1 +10346,56,30.4,20,0.0 +10347,25,11.2,10,0.0 +10347,39,14.4,50,0.15 +10347,40,14.7,4,0.0 +10347,75,6.2,6,0.15 +10348,1,14.4,15,0.15 +10348,23,7.2,25,0.0 +10349,54,5.9,24,0.0 +10350,50,13,15,0.1 +10350,69,28.8,18,0.1 +10351,38,210.8,20,0.05 +10351,41,7.7,13,0.0 +10351,44,15.5,77,0.05 +10351,65,16.8,10,0.05 +10352,24,3.6,10,0.0 +10352,54,5.9,20,0.15 +10353,11,16.8,12,0.2 +10353,38,210.8,50,0.2 +10354,1,14.4,12,0.0 +10354,29,99,4,0.0 +10355,24,3.6,25,0.0 +10355,57,15.6,25,0.0 +10356,31,10,30,0.0 +10356,55,19.2,12,0.0 +10356,69,28.8,20,0.0 +10357,10,24.8,30,0.2 +10357,26,24.9,16,0.0 +10357,60,27.2,8,0.2 +10358,24,3.6,10,0.05 +10358,34,11.2,10,0.05 +10358,36,15.2,20,0.05 +10359,16,13.9,56,0.05 +10359,31,10,70,0.05 +10359,60,27.2,80,0.05 +10360,28,36.4,30,0.0 +10360,29,99,35,0.0 +10360,38,210.8,10,0.0 +10360,49,16,35,0.0 +10360,54,5.9,28,0.0 +10361,39,14.4,54,0.1 +10361,60,27.2,55,0.1 +10362,25,11.2,50,0.0 +10362,51,42.4,20,0.0 +10362,54,5.9,24,0.0 +10363,31,10,20,0.0 +10363,75,6.2,12,0.0 +10363,76,14.4,12,0.0 +10364,69,28.8,30,0.0 +10364,71,17.2,5,0.0 +10365,11,16.8,24,0.0 +10366,65,16.8,5,0.0 +10366,77,10.4,5,0.0 +10367,34,11.2,36,0.0 +10367,54,5.9,18,0.0 +10367,65,16.8,15,0.0 +10367,77,10.4,7,0.0 +10368,21,8,5,0.1 +10368,28,36.4,13,0.1 +10368,57,15.6,25,0.0 +10368,64,26.6,35,0.1 +10369,29,99,20,0.0 +10369,56,30.4,18,0.25 +10370,1,14.4,15,0.15 +10370,64,26.6,30,0.0 +10370,74,8,20,0.15 +10371,36,15.2,6,0.2 +10372,20,64.8,12,0.25 +10372,38,210.8,40,0.25 +10372,60,27.2,70,0.25 +10372,72,27.8,42,0.25 +10373,58,10.6,80,0.2 +10373,71,17.2,50,0.2 +10374,31,10,30,0.0 +10374,58,10.6,15,0.0 +10375,14,18.6,15,0.0 +10375,54,5.9,10,0.0 +10376,31,10,42,0.05 +10377,28,36.4,20,0.15 +10377,39,14.4,20,0.15 +10378,71,17.2,6,0.0 +10379,41,7.7,8,0.1 +10379,63,35.1,16,0.1 +10379,65,16.8,20,0.1 +10380,30,20.7,18,0.1 +10380,53,26.2,20,0.1 +10380,60,27.2,6,0.1 +10380,70,12,30,0.0 +10381,74,8,14,0.0 +10382,5,17,32,0.0 +10382,18,50,9,0.0 +10382,29,99,14,0.0 +10382,33,2,60,0.0 +10382,74,8,50,0.0 +10383,13,4.8,20,0.0 +10383,50,13,15,0.0 +10383,56,30.4,20,0.0 +10384,20,64.8,28,0.0 +10384,60,27.2,15,0.0 +10385,7,24,10,0.2 +10385,60,27.2,20,0.2 +10385,68,10,8,0.2 +10386,24,3.6,15,0.0 +10386,34,11.2,10,0.0 +10387,24,3.6,15,0.0 +10387,28,36.4,6,0.0 +10387,59,44,12,0.0 +10387,71,17.2,15,0.0 +10388,45,7.6,15,0.2 +10388,52,5.6,20,0.2 +10388,53,26.2,40,0.0 +10389,10,24.8,16,0.0 +10389,55,19.2,15,0.0 +10389,62,39.4,20,0.0 +10389,70,12,30,0.0 +10390,31,10,60,0.1 +10390,35,14.4,40,0.1 +10390,46,9.6,45,0.0 +10390,72,27.8,24,0.1 +10391,13,4.8,18,0.0 +10392,69,28.8,50,0.0 +10393,2,15.2,25,0.25 +10393,14,18.6,42,0.25 +10393,25,11.2,7,0.25 +10393,26,24.9,70,0.25 +10393,31,10,32,0.0 +10394,13,4.8,10,0.0 +10394,62,39.4,10,0.0 +10395,46,9.6,28,0.1 +10395,53,26.2,70,0.1 +10395,69,28.8,8,0.0 +10396,23,7.2,40,0.0 +10396,71,17.2,60,0.0 +10396,72,27.8,21,0.0 +10397,21,8,10,0.15 +10397,51,42.4,18,0.15 +10398,35,14.4,30,0.0 +10398,55,19.2,120,0.1 +10399,68,10,60,0.0 +10399,71,17.2,30,0.0 +10399,76,14.4,35,0.0 +10399,77,10.4,14,0.0 +10400,29,99,21,0.0 +10400,35,14.4,35,0.0 +10400,49,16,30,0.0 +10401,30,20.7,18,0.0 +10401,56,30.4,70,0.0 +10401,65,16.8,20,0.0 +10401,71,17.2,60,0.0 +10402,23,7.2,60,0.0 +10402,63,35.1,65,0.0 +10403,16,13.9,21,0.15 +10403,48,10.2,70,0.15 +10404,26,24.9,30,0.05 +10404,42,11.2,40,0.05 +10404,49,16,30,0.05 +10405,3,8,50,0.0 +10406,1,14.4,10,0.0 +10406,21,8,30,0.1 +10406,28,36.4,42,0.1 +10406,36,15.2,5,0.1 +10406,40,14.7,2,0.1 +10407,11,16.8,30,0.0 +10407,69,28.8,15,0.0 +10407,71,17.2,15,0.0 +10408,37,20.8,10,0.0 +10408,54,5.9,6,0.0 +10408,62,39.4,35,0.0 +10409,14,18.6,12,0.0 +10409,21,8,12,0.0 +10410,33,2,49,0.0 +10410,59,44,16,0.0 +10411,41,7.7,25,0.2 +10411,44,15.5,40,0.2 +10411,59,44,9,0.2 +10412,14,18.6,20,0.1 +10413,1,14.4,24,0.0 +10413,62,39.4,40,0.0 +10413,76,14.4,14,0.0 +10414,19,7.3,18,0.05 +10414,33,2,50,0.0 +10415,17,31.2,2,0.0 +10415,33,2,20,0.0 +10416,19,7.3,20,0.0 +10416,53,26.2,10,0.0 +10416,57,15.6,20,0.0 +10417,38,210.8,50,0.0 +10417,46,9.6,2,0.25 +10417,68,10,36,0.25 +10417,77,10.4,35,0.0 +10418,2,15.2,60,0.0 +10418,47,7.6,55,0.0 +10418,61,22.8,16,0.0 +10418,74,8,15,0.0 +10419,60,27.2,60,0.05 +10419,69,28.8,20,0.05 +10420,9,77.6,20,0.1 +10420,13,4.8,2,0.1 +10420,70,12,8,0.1 +10420,73,12,20,0.1 +10421,19,7.3,4,0.15 +10421,26,24.9,30,0.0 +10421,53,26.2,15,0.15 +10421,77,10.4,10,0.15 +10422,26,24.9,2,0.0 +10423,31,10,14,0.0 +10423,59,44,20,0.0 +10424,35,14.4,60,0.2 +10424,38,210.8,49,0.2 +10424,68,10,30,0.2 +10425,55,19.2,10,0.25 +10425,76,14.4,20,0.25 +10426,56,30.4,5,0.0 +10426,64,26.6,7,0.0 +10427,14,18.6,35,0.0 +10428,46,9.6,20,0.0 +10429,50,13,40,0.0 +10429,63,35.1,35,0.25 +10430,17,31.2,45,0.2 +10430,21,8,50,0.0 +10430,56,30.4,30,0.0 +10430,59,44,70,0.2 +10431,17,31.2,50,0.25 +10431,40,14.7,50,0.25 +10431,47,7.6,30,0.25 +10432,26,24.9,10,0.0 +10432,54,5.9,40,0.0 +10433,56,30.4,28,0.0 +10434,11,16.8,6,0.0 +10434,76,14.4,18,0.15 +10435,2,15.2,10,0.0 +10435,22,16.8,12,0.0 +10435,72,27.8,10,0.0 +10436,46,9.6,5,0.0 +10436,56,30.4,40,0.1 +10436,64,26.6,30,0.1 +10436,75,6.2,24,0.1 +10437,53,26.2,15,0.0 +10438,19,7.3,15,0.2 +10438,34,11.2,20,0.2 +10438,57,15.6,15,0.2 +10439,12,30.4,15,0.0 +10439,16,13.9,16,0.0 +10439,64,26.6,6,0.0 +10439,74,8,30,0.0 +10440,2,15.2,45,0.15 +10440,16,13.9,49,0.15 +10440,29,99,24,0.15 +10440,61,22.8,90,0.15 +10441,27,35.1,50,0.0 +10442,11,16.8,30,0.0 +10442,54,5.9,80,0.0 +10442,66,13.6,60,0.0 +10443,11,16.8,6,0.2 +10443,28,36.4,12,0.0 +10444,17,31.2,10,0.0 +10444,26,24.9,15,0.0 +10444,35,14.4,8,0.0 +10444,41,7.7,30,0.0 +10445,39,14.4,6,0.0 +10445,54,5.9,15,0.0 +10446,19,7.3,12,0.1 +10446,24,3.6,20,0.1 +10446,31,10,3,0.1 +10446,52,5.6,15,0.1 +10447,19,7.3,40,0.0 +10447,65,16.8,35,0.0 +10447,71,17.2,2,0.0 +10448,26,24.9,6,0.0 +10448,40,14.7,20,0.0 +10449,10,24.8,14,0.0 +10449,52,5.6,20,0.0 +10449,62,39.4,35,0.0 +10450,10,24.8,20,0.2 +10450,54,5.9,6,0.2 +10451,55,19.2,120,0.1 +10451,64,26.6,35,0.1 +10451,65,16.8,28,0.1 +10451,77,10.4,55,0.1 +10452,28,36.4,15,0.0 +10452,44,15.5,100,0.05 +10453,48,10.2,15,0.1 +10453,70,12,25,0.1 +10454,16,13.9,20,0.2 +10454,33,2,20,0.2 +10454,46,9.6,10,0.2 +10455,39,14.4,20,0.0 +10455,53,26.2,50,0.0 +10455,61,22.8,25,0.0 +10455,71,17.2,30,0.0 +10456,21,8,40,0.15 +10456,49,16,21,0.15 +10457,59,44,36,0.0 +10458,26,24.9,30,0.0 +10458,28,36.4,30,0.0 +10458,43,36.8,20,0.0 +10458,56,30.4,15,0.0 +10458,71,17.2,50,0.0 +10459,7,24,16,0.05 +10459,46,9.6,20,0.05 +10459,72,27.8,40,0.0 +10460,68,10,21,0.25 +10460,75,6.2,4,0.25 +10461,21,8,40,0.25 +10461,30,20.7,28,0.25 +10461,55,19.2,60,0.25 +10462,13,4.8,1,0.0 +10462,23,7.2,21,0.0 +10463,19,7.3,21,0.0 +10463,42,11.2,50,0.0 +10464,4,17.6,16,0.2 +10464,43,36.8,3,0.0 +10464,56,30.4,30,0.2 +10464,60,27.2,20,0.0 +10465,24,3.6,25,0.0 +10465,29,99,18,0.1 +10465,40,14.7,20,0.0 +10465,45,7.6,30,0.1 +10465,50,13,25,0.0 +10466,11,16.8,10,0.0 +10466,46,9.6,5,0.0 +10467,24,3.6,28,0.0 +10467,25,11.2,12,0.0 +10468,30,20.7,8,0.0 +10468,43,36.8,15,0.0 +10469,2,15.2,40,0.15 +10469,16,13.9,35,0.15 +10469,44,15.5,2,0.15 +10470,18,50,30,0.0 +10470,23,7.2,15,0.0 +10470,64,26.6,8,0.0 +10471,7,24,30,0.0 +10471,56,30.4,20,0.0 +10472,24,3.6,80,0.05 +10472,51,42.4,18,0.0 +10473,33,2,12,0.0 +10473,71,17.2,12,0.0 +10474,14,18.6,12,0.0 +10474,28,36.4,18,0.0 +10474,40,14.7,21,0.0 +10474,75,6.2,10,0.0 +10475,31,10,35,0.15 +10475,66,13.6,60,0.15 +10475,76,14.4,42,0.15 +10476,55,19.2,2,0.05 +10476,70,12,12,0.0 +10477,1,14.4,15,0.0 +10477,21,8,21,0.25 +10477,39,14.4,20,0.25 +10478,10,24.8,20,0.05 +10479,38,210.8,30,0.0 +10479,53,26.2,28,0.0 +10479,59,44,60,0.0 +10479,64,26.6,30,0.0 +10480,47,7.6,30,0.0 +10480,59,44,12,0.0 +10481,49,16,24,0.0 +10481,60,27.2,40,0.0 +10482,40,14.7,10,0.0 +10483,34,11.2,35,0.05 +10483,77,10.4,30,0.05 +10484,21,8,14,0.0 +10484,40,14.7,10,0.0 +10484,51,42.4,3,0.0 +10485,2,15.2,20,0.1 +10485,3,8,20,0.1 +10485,55,19.2,30,0.1 +10485,70,12,60,0.1 +10486,11,16.8,5,0.0 +10486,51,42.4,25,0.0 +10486,74,8,16,0.0 +10487,19,7.3,5,0.0 +10487,26,24.9,30,0.0 +10487,54,5.9,24,0.25 +10488,59,44,30,0.0 +10488,73,12,20,0.2 +10489,11,16.8,15,0.25 +10489,16,13.9,18,0.0 +10490,59,44,60,0.0 +10490,68,10,30,0.0 +10490,75,6.2,36,0.0 +10491,44,15.5,15,0.15 +10491,77,10.4,7,0.15 +10492,25,11.2,60,0.05 +10492,42,11.2,20,0.05 +10493,65,16.8,15,0.1 +10493,66,13.6,10,0.1 +10493,69,28.8,10,0.1 +10494,56,30.4,30,0.0 +10495,23,7.2,10,0.0 +10495,41,7.7,20,0.0 +10495,77,10.4,5,0.0 +10496,31,10,20,0.05 +10497,56,30.4,14,0.0 +10497,72,27.8,25,0.0 +10497,77,10.4,25,0.0 +10498,24,4.5,14,0.0 +10498,40,18.4,5,0.0 +10498,42,14,30,0.0 +10499,28,45.6,20,0.0 +10499,49,20,25,0.0 +10500,15,15.5,12,0.05 +10500,28,45.6,8,0.05 +10501,54,7.45,20,0.0 +10502,45,9.5,21,0.0 +10502,53,32.8,6,0.0 +10502,67,14,30,0.0 +10503,14,23.25,70,0.0 +10503,65,21.05,20,0.0 +10504,2,19,12,0.0 +10504,21,10,12,0.0 +10504,53,32.8,10,0.0 +10504,61,28.5,25,0.0 +10505,62,49.3,3,0.0 +10506,25,14,18,0.1 +10506,70,15,14,0.1 +10507,43,46,15,0.15 +10507,48,12.75,15,0.15 +10508,13,6,10,0.0 +10508,39,18,10,0.0 +10509,28,45.6,3,0.0 +10510,29,123.79,36,0.0 +10510,75,7.75,36,0.1 +10511,4,22,50,0.15 +10511,7,30,50,0.15 +10511,8,40,10,0.15 +10512,24,4.5,10,0.15 +10512,46,12,9,0.15 +10512,47,9.5,6,0.15 +10512,60,34,12,0.15 +10513,21,10,40,0.2 +10513,32,32,50,0.2 +10513,61,28.5,15,0.2 +10514,20,81,39,0.0 +10514,28,45.6,35,0.0 +10514,56,38,70,0.0 +10514,65,21.05,39,0.0 +10514,75,7.75,50,0.0 +10515,9,97,16,0.15 +10515,16,17.45,50,0.0 +10515,27,43.9,120,0.0 +10515,33,2.5,16,0.15 +10515,60,34,84,0.15 +10516,18,62.5,25,0.1 +10516,41,9.65,80,0.1 +10516,42,14,20,0.0 +10517,52,7,6,0.0 +10517,59,55,4,0.0 +10517,70,15,6,0.0 +10518,24,4.5,5,0.0 +10518,38,263.5,15,0.0 +10518,44,19.45,9,0.0 +10519,10,31,16,0.05 +10519,56,38,40,0.0 +10519,60,34,10,0.05 +10520,24,4.5,8,0.0 +10520,53,32.8,5,0.0 +10521,35,18,3,0.0 +10521,41,9.65,10,0.0 +10521,68,12.5,6,0.0 +10522,1,18,40,0.2 +10522,8,40,24,0.0 +10522,30,25.89,20,0.2 +10522,40,18.4,25,0.2 +10523,17,39,25,0.1 +10523,20,81,15,0.1 +10523,37,26,18,0.1 +10523,41,9.65,6,0.1 +10524,10,31,2,0.0 +10524,30,25.89,10,0.0 +10524,43,46,60,0.0 +10524,54,7.45,15,0.0 +10525,36,19,30,0.0 +10525,40,18.4,15,0.1 +10526,1,18,8,0.15 +10526,13,6,10,0.0 +10526,56,38,30,0.15 +10527,4,22,50,0.1 +10527,36,19,30,0.1 +10528,11,21,3,0.0 +10528,33,2.5,8,0.2 +10528,72,34.8,9,0.0 +10529,55,24,14,0.0 +10529,68,12.5,20,0.0 +10529,69,36,10,0.0 +10530,17,39,40,0.0 +10530,43,46,25,0.0 +10530,61,28.5,20,0.0 +10530,76,18,50,0.0 +10531,59,55,2,0.0 +10532,30,25.89,15,0.0 +10532,66,17,24,0.0 +10533,4,22,50,0.05 +10533,72,34.8,24,0.0 +10533,73,15,24,0.05 +10534,30,25.89,10,0.0 +10534,40,18.4,10,0.2 +10534,54,7.45,10,0.2 +10535,11,21,50,0.1 +10535,40,18.4,10,0.1 +10535,57,19.5,5,0.1 +10535,59,55,15,0.1 +10536,12,38,15,0.25 +10536,31,12.5,20,0.0 +10536,33,2.5,30,0.0 +10536,60,34,35,0.25 +10537,31,12.5,30,0.0 +10537,51,53,6,0.0 +10537,58,13.25,20,0.0 +10537,72,34.8,21,0.0 +10537,73,15,9,0.0 +10538,70,15,7,0.0 +10538,72,34.8,1,0.0 +10539,13,6,8,0.0 +10539,21,10,15,0.0 +10539,33,2.5,15,0.0 +10539,49,20,6,0.0 +10540,3,10,60,0.0 +10540,26,31.23,40,0.0 +10540,38,263.5,30,0.0 +10540,68,12.5,35,0.0 +10541,24,4.5,35,0.1 +10541,38,263.5,4,0.1 +10541,65,21.05,36,0.1 +10541,71,21.5,9,0.1 +10542,11,21,15,0.05 +10542,54,7.45,24,0.05 +10543,12,38,30,0.15 +10543,23,9,70,0.15 +10544,28,45.6,7,0.0 +10544,67,14,7,0.0 +10545,11,21,10,0.0 +10546,7,30,10,0.0 +10546,35,18,30,0.0 +10546,62,49.3,40,0.0 +10547,32,32,24,0.15 +10547,36,19,60,0.0 +10548,34,14,10,0.25 +10548,41,9.65,14,0.0 +10549,31,12.5,55,0.15 +10549,45,9.5,100,0.15 +10549,51,53,48,0.15 +10550,17,39,8,0.1 +10550,19,9.2,10,0.0 +10550,21,10,6,0.1 +10550,61,28.5,10,0.1 +10551,16,17.45,40,0.15 +10551,35,18,20,0.15 +10551,44,19.45,40,0.0 +10552,69,36,18,0.0 +10552,75,7.75,30,0.0 +10553,11,21,15,0.0 +10553,16,17.45,14,0.0 +10553,22,21,24,0.0 +10553,31,12.5,30,0.0 +10553,35,18,6,0.0 +10554,16,17.45,30,0.05 +10554,23,9,20,0.05 +10554,62,49.3,20,0.05 +10554,77,13,10,0.05 +10555,14,23.25,30,0.2 +10555,19,9.2,35,0.2 +10555,24,4.5,18,0.2 +10555,51,53,20,0.2 +10555,56,38,40,0.2 +10556,72,34.8,24,0.0 +10557,64,33.25,30,0.0 +10557,75,7.75,20,0.0 +10558,47,9.5,25,0.0 +10558,51,53,20,0.0 +10558,52,7,30,0.0 +10558,53,32.8,18,0.0 +10558,73,15,3,0.0 +10559,41,9.65,12,0.05 +10559,55,24,18,0.05 +10560,30,25.89,20,0.0 +10560,62,49.3,15,0.25 +10561,44,19.45,10,0.0 +10561,51,53,50,0.0 +10562,33,2.5,20,0.1 +10562,62,49.3,10,0.1 +10563,36,19,25,0.0 +10563,52,7,70,0.0 +10564,17,39,16,0.05 +10564,31,12.5,6,0.05 +10564,55,24,25,0.05 +10565,24,4.5,25,0.1 +10565,64,33.25,18,0.1 +10566,11,21,35,0.15 +10566,18,62.5,18,0.15 +10566,76,18,10,0.0 +10567,31,12.5,60,0.2 +10567,51,53,3,0.0 +10567,59,55,40,0.2 +10568,10,31,5,0.0 +10569,31,12.5,35,0.2 +10569,76,18,30,0.0 +10570,11,21,15,0.05 +10570,56,38,60,0.05 +10571,14,23.25,11,0.15 +10571,42,14,28,0.15 +10572,16,17.45,12,0.1 +10572,32,32,10,0.1 +10572,40,18.4,50,0.0 +10572,75,7.75,15,0.1 +10573,17,39,18,0.0 +10573,34,14,40,0.0 +10573,53,32.8,25,0.0 +10574,33,2.5,14,0.0 +10574,40,18.4,2,0.0 +10574,62,49.3,10,0.0 +10574,64,33.25,6,0.0 +10575,59,55,12,0.0 +10575,63,43.9,6,0.0 +10575,72,34.8,30,0.0 +10575,76,18,10,0.0 +10576,1,18,10,0.0 +10576,31,12.5,20,0.0 +10576,44,19.45,21,0.0 +10577,39,18,10,0.0 +10577,75,7.75,20,0.0 +10577,77,13,18,0.0 +10578,35,18,20,0.0 +10578,57,19.5,6,0.0 +10579,15,15.5,10,0.0 +10579,75,7.75,21,0.0 +10580,14,23.25,15,0.05 +10580,41,9.65,9,0.05 +10580,65,21.05,30,0.05 +10581,75,7.75,50,0.2 +10582,57,19.5,4,0.0 +10582,76,18,14,0.0 +10583,29,123.79,10,0.0 +10583,60,34,24,0.15 +10583,69,36,10,0.15 +10584,31,12.5,50,0.05 +10585,47,9.5,15,0.0 +10586,52,7,4,0.15 +10587,26,31.23,6,0.0 +10587,35,18,20,0.0 +10587,77,13,20,0.0 +10588,18,62.5,40,0.2 +10588,42,14,100,0.2 +10589,35,18,4,0.0 +10590,1,18,20,0.0 +10590,77,13,60,0.05 +10591,3,10,14,0.0 +10591,7,30,10,0.0 +10591,54,7.45,50,0.0 +10592,15,15.5,25,0.05 +10592,26,31.23,5,0.05 +10593,20,81,21,0.2 +10593,69,36,20,0.2 +10593,76,18,4,0.2 +10594,52,7,24,0.0 +10594,58,13.25,30,0.0 +10595,35,18,30,0.25 +10595,61,28.5,120,0.25 +10595,69,36,65,0.25 +10596,56,38,5,0.2 +10596,63,43.9,24,0.2 +10596,75,7.75,30,0.2 +10597,24,4.5,35,0.2 +10597,57,19.5,20,0.0 +10597,65,21.05,12,0.2 +10598,27,43.9,50,0.0 +10598,71,21.5,9,0.0 +10599,62,49.3,10,0.0 +10600,54,7.45,4,0.0 +10600,73,15,30,0.0 +10601,13,6,60,0.0 +10601,59,55,35,0.0 +10602,77,13,5,0.25 +10603,22,21,48,0.0 +10603,49,20,25,0.05 +10604,48,12.75,6,0.1 +10604,76,18,10,0.1 +10605,16,17.45,30,0.05 +10605,59,55,20,0.05 +10605,60,34,70,0.05 +10605,71,21.5,15,0.05 +10606,4,22,20,0.2 +10606,55,24,20,0.2 +10606,62,49.3,10,0.2 +10607,7,30,45,0.0 +10607,17,39,100,0.0 +10607,33,2.5,14,0.0 +10607,40,18.4,42,0.0 +10607,72,34.8,12,0.0 +10608,56,38,28,0.0 +10609,1,18,3,0.0 +10609,10,31,10,0.0 +10609,21,10,6,0.0 +10610,36,19,21,0.25 +10611,1,18,6,0.0 +10611,2,19,10,0.0 +10611,60,34,15,0.0 +10612,10,31,70,0.0 +10612,36,19,55,0.0 +10612,49,20,18,0.0 +10612,60,34,40,0.0 +10612,76,18,80,0.0 +10613,13,6,8,0.1 +10613,75,7.75,40,0.0 +10614,11,21,14,0.0 +10614,21,10,8,0.0 +10614,39,18,5,0.0 +10615,55,24,5,0.0 +10616,38,263.5,15,0.05 +10616,56,38,14,0.0 +10616,70,15,15,0.05 +10616,71,21.5,15,0.05 +10617,59,55,30,0.15 +10618,6,25,70,0.0 +10618,56,38,20,0.0 +10618,68,12.5,15,0.0 +10619,21,10,42,0.0 +10619,22,21,40,0.0 +10620,24,4.5,5,0.0 +10620,52,7,5,0.0 +10621,19,9.2,5,0.0 +10621,23,9,10,0.0 +10621,70,15,20,0.0 +10621,71,21.5,15,0.0 +10622,2,19,20,0.0 +10622,68,12.5,18,0.2 +10623,14,23.25,21,0.0 +10623,19,9.2,15,0.1 +10623,21,10,25,0.1 +10623,24,4.5,3,0.0 +10623,35,18,30,0.1 +10624,28,45.6,10,0.0 +10624,29,123.79,6,0.0 +10624,44,19.45,10,0.0 +10625,14,23.25,3,0.0 +10625,42,14,5,0.0 +10625,60,34,10,0.0 +10626,53,32.8,12,0.0 +10626,60,34,20,0.0 +10626,71,21.5,20,0.0 +10627,62,49.3,15,0.0 +10627,73,15,35,0.15 +10628,1,18,25,0.0 +10629,29,123.79,20,0.0 +10629,64,33.25,9,0.0 +10630,55,24,12,0.05 +10630,76,18,35,0.0 +10631,75,7.75,8,0.1 +10632,2,19,30,0.05 +10632,33,2.5,20,0.05 +10633,12,38,36,0.15 +10633,13,6,13,0.15 +10633,26,31.23,35,0.15 +10633,62,49.3,80,0.15 +10634,7,30,35,0.0 +10634,18,62.5,50,0.0 +10634,51,53,15,0.0 +10634,75,7.75,2,0.0 +10635,4,22,10,0.1 +10635,5,21.35,15,0.1 +10635,22,21,40,0.0 +10636,4,22,25,0.0 +10636,58,13.25,6,0.0 +10637,11,21,10,0.0 +10637,50,16.25,25,0.05 +10637,56,38,60,0.05 +10638,45,9.5,20,0.0 +10638,65,21.05,21,0.0 +10638,72,34.8,60,0.0 +10639,18,62.5,8,0.0 +10640,69,36,20,0.25 +10640,70,15,15,0.25 +10641,2,19,50,0.0 +10641,40,18.4,60,0.0 +10642,21,10,30,0.2 +10642,61,28.5,20,0.2 +10643,28,45.6,15,0.25 +10643,39,18,21,0.25 +10643,46,12,2,0.25 +10644,18,62.5,4,0.1 +10644,43,46,20,0.0 +10644,46,12,21,0.1 +10645,18,62.5,20,0.0 +10645,36,19,15,0.0 +10646,1,18,15,0.25 +10646,10,31,18,0.25 +10646,71,21.5,30,0.25 +10646,77,13,35,0.25 +10647,19,9.2,30,0.0 +10647,39,18,20,0.0 +10648,22,21,15,0.0 +10648,24,4.5,15,0.15 +10649,28,45.6,20,0.0 +10649,72,34.8,15,0.0 +10650,30,25.89,30,0.0 +10650,53,32.8,25,0.05 +10650,54,7.45,30,0.0 +10651,19,9.2,12,0.25 +10651,22,21,20,0.25 +10652,30,25.89,2,0.25 +10652,42,14,20,0.0 +10653,16,17.45,30,0.1 +10653,60,34,20,0.1 +10654,4,22,12,0.1 +10654,39,18,20,0.1 +10654,54,7.45,6,0.1 +10655,41,9.65,20,0.2 +10656,14,23.25,3,0.1 +10656,44,19.45,28,0.1 +10656,47,9.5,6,0.1 +10657,15,15.5,50,0.0 +10657,41,9.65,24,0.0 +10657,46,12,45,0.0 +10657,47,9.5,10,0.0 +10657,56,38,45,0.0 +10657,60,34,30,0.0 +10658,21,10,60,0.0 +10658,40,18.4,70,0.05 +10658,60,34,55,0.05 +10658,77,13,70,0.05 +10659,31,12.5,20,0.05 +10659,40,18.4,24,0.05 +10659,70,15,40,0.05 +10660,20,81,21,0.0 +10661,39,18,3,0.2 +10661,58,13.25,49,0.2 +10662,68,12.5,10,0.0 +10663,40,18.4,30,0.05 +10663,42,14,30,0.05 +10663,51,53,20,0.05 +10664,10,31,24,0.15 +10664,56,38,12,0.15 +10664,65,21.05,15,0.15 +10665,51,53,20,0.0 +10665,59,55,1,0.0 +10665,76,18,10,0.0 +10666,29,123.79,36,0.0 +10666,65,21.05,10,0.0 +10667,69,36,45,0.2 +10667,71,21.5,14,0.2 +10668,31,12.5,8,0.1 +10668,55,24,4,0.1 +10668,64,33.25,15,0.1 +10669,36,19,30,0.0 +10670,23,9,32,0.0 +10670,46,12,60,0.0 +10670,67,14,25,0.0 +10670,73,15,50,0.0 +10670,75,7.75,25,0.0 +10671,16,17.45,10,0.0 +10671,62,49.3,10,0.0 +10671,65,21.05,12,0.0 +10672,38,263.5,15,0.1 +10672,71,21.5,12,0.0 +10673,16,17.45,3,0.0 +10673,42,14,6,0.0 +10673,43,46,6,0.0 +10674,23,9,5,0.0 +10675,14,23.25,30,0.0 +10675,53,32.8,10,0.0 +10675,58,13.25,30,0.0 +10676,10,31,2,0.0 +10676,19,9.2,7,0.0 +10676,44,19.45,21,0.0 +10677,26,31.23,30,0.15 +10677,33,2.5,8,0.15 +10678,12,38,100,0.0 +10678,33,2.5,30,0.0 +10678,41,9.65,120,0.0 +10678,54,7.45,30,0.0 +10679,59,55,12,0.0 +10680,16,17.45,50,0.25 +10680,31,12.5,20,0.25 +10680,42,14,40,0.25 +10681,19,9.2,30,0.1 +10681,21,10,12,0.1 +10681,64,33.25,28,0.0 +10682,33,2.5,30,0.0 +10682,66,17,4,0.0 +10682,75,7.75,30,0.0 +10683,52,7,9,0.0 +10684,40,18.4,20,0.0 +10684,47,9.5,40,0.0 +10684,60,34,30,0.0 +10685,10,31,20,0.0 +10685,41,9.65,4,0.0 +10685,47,9.5,15,0.0 +10686,17,39,30,0.2 +10686,26,31.23,15,0.0 +10687,9,97,50,0.25 +10687,29,123.79,10,0.0 +10687,36,19,6,0.25 +10688,10,31,18,0.1 +10688,28,45.6,60,0.1 +10688,34,14,14,0.0 +10689,1,18,35,0.25 +10690,56,38,20,0.25 +10690,77,13,30,0.25 +10691,1,18,30,0.0 +10691,29,123.79,40,0.0 +10691,43,46,40,0.0 +10691,44,19.45,24,0.0 +10691,62,49.3,48,0.0 +10692,63,43.9,20,0.0 +10693,9,97,6,0.0 +10693,54,7.45,60,0.15 +10693,69,36,30,0.15 +10693,73,15,15,0.15 +10694,7,30,90,0.0 +10694,59,55,25,0.0 +10694,70,15,50,0.0 +10695,8,40,10,0.0 +10695,12,38,4,0.0 +10695,24,4.5,20,0.0 +10696,17,39,20,0.0 +10696,46,12,18,0.0 +10697,19,9.2,7,0.25 +10697,35,18,9,0.25 +10697,58,13.25,30,0.25 +10697,70,15,30,0.25 +10698,11,21,15,0.0 +10698,17,39,8,0.05 +10698,29,123.79,12,0.05 +10698,65,21.05,65,0.05 +10698,70,15,8,0.05 +10699,47,9.5,12,0.0 +10700,1,18,5,0.2 +10700,34,14,12,0.2 +10700,68,12.5,40,0.2 +10700,71,21.5,60,0.2 +10701,59,55,42,0.15 +10701,71,21.5,20,0.15 +10701,76,18,35,0.15 +10702,3,10,6,0.0 +10702,76,18,15,0.0 +10703,2,19,5,0.0 +10703,59,55,35,0.0 +10703,73,15,35,0.0 +10704,4,22,6,0.0 +10704,24,4.5,35,0.0 +10704,48,12.75,24,0.0 +10705,31,12.5,20,0.0 +10705,32,32,4,0.0 +10706,16,17.45,20,0.0 +10706,43,46,24,0.0 +10706,59,55,8,0.0 +10707,55,24,21,0.0 +10707,57,19.5,40,0.0 +10707,70,15,28,0.15 +10708,5,21.35,4,0.0 +10708,36,19,5,0.0 +10709,8,40,40,0.0 +10709,51,53,28,0.0 +10709,60,34,10,0.0 +10710,19,9.2,5,0.0 +10710,47,9.5,5,0.0 +10711,19,9.2,12,0.0 +10711,41,9.65,42,0.0 +10711,53,32.8,120,0.0 +10712,53,32.8,3,0.05 +10712,56,38,30,0.0 +10713,10,31,18,0.0 +10713,26,31.23,30,0.0 +10713,45,9.5,110,0.0 +10713,46,12,24,0.0 +10714,2,19,30,0.25 +10714,17,39,27,0.25 +10714,47,9.5,50,0.25 +10714,56,38,18,0.25 +10714,58,13.25,12,0.25 +10715,10,31,21,0.0 +10715,71,21.5,30,0.0 +10716,21,10,5,0.0 +10716,51,53,7,0.0 +10716,61,28.5,10,0.0 +10717,21,10,32,0.05 +10717,54,7.45,15,0.0 +10717,69,36,25,0.05 +10718,12,38,36,0.0 +10718,16,17.45,20,0.0 +10718,36,19,40,0.0 +10718,62,49.3,20,0.0 +10719,18,62.5,12,0.25 +10719,30,25.89,3,0.25 +10719,54,7.45,40,0.25 +10720,35,18,21,0.0 +10720,71,21.5,8,0.0 +10721,44,19.45,50,0.05 +10722,2,19,3,0.0 +10722,31,12.5,50,0.0 +10722,68,12.5,45,0.0 +10722,75,7.75,42,0.0 +10723,26,31.23,15,0.0 +10724,10,31,16,0.0 +10724,61,28.5,5,0.0 +10725,41,9.65,12,0.0 +10725,52,7,4,0.0 +10725,55,24,6,0.0 +10726,4,22,25,0.0 +10726,11,21,5,0.0 +10727,17,39,20,0.05 +10727,56,38,10,0.05 +10727,59,55,10,0.05 +10728,30,25.89,15,0.0 +10728,40,18.4,6,0.0 +10728,55,24,12,0.0 +10728,60,34,15,0.0 +10729,1,18,50,0.0 +10729,21,10,30,0.0 +10729,50,16.25,40,0.0 +10730,16,17.45,15,0.05 +10730,31,12.5,3,0.05 +10730,65,21.05,10,0.05 +10731,21,10,40,0.05 +10731,51,53,30,0.05 +10732,76,18,20,0.0 +10733,14,23.25,16,0.0 +10733,28,45.6,20,0.0 +10733,52,7,25,0.0 +10734,6,25,30,0.0 +10734,30,25.89,15,0.0 +10734,76,18,20,0.0 +10735,61,28.5,20,0.1 +10735,77,13,2,0.1 +10736,65,21.05,40,0.0 +10736,75,7.75,20,0.0 +10737,13,6,4,0.0 +10737,41,9.65,12,0.0 +10738,16,17.45,3,0.0 +10739,36,19,6,0.0 +10739,52,7,18,0.0 +10740,28,45.6,5,0.2 +10740,35,18,35,0.2 +10740,45,9.5,40,0.2 +10740,56,38,14,0.2 +10741,2,19,15,0.2 +10742,3,10,20,0.0 +10742,60,34,50,0.0 +10742,72,34.8,35,0.0 +10743,46,12,28,0.05 +10744,40,18.4,50,0.2 +10745,18,62.5,24,0.0 +10745,44,19.45,16,0.0 +10745,59,55,45,0.0 +10745,72,34.8,7,0.0 +10746,13,6,6,0.0 +10746,42,14,28,0.0 +10746,62,49.3,9,0.0 +10746,69,36,40,0.0 +10747,31,12.5,8,0.0 +10747,41,9.65,35,0.0 +10747,63,43.9,9,0.0 +10747,69,36,30,0.0 +10748,23,9,44,0.0 +10748,40,18.4,40,0.0 +10748,56,38,28,0.0 +10749,56,38,15,0.0 +10749,59,55,6,0.0 +10749,76,18,10,0.0 +10750,14,23.25,5,0.15 +10750,45,9.5,40,0.15 +10750,59,55,25,0.15 +10751,26,31.23,12,0.1 +10751,30,25.89,30,0.0 +10751,50,16.25,20,0.1 +10751,73,15,15,0.0 +10752,1,18,8,0.0 +10752,69,36,3,0.0 +10753,45,9.5,4,0.0 +10753,74,10,5,0.0 +10754,40,18.4,3,0.0 +10755,47,9.5,30,0.25 +10755,56,38,30,0.25 +10755,57,19.5,14,0.25 +10755,69,36,25,0.25 +10756,18,62.5,21,0.2 +10756,36,19,20,0.2 +10756,68,12.5,6,0.2 +10756,69,36,20,0.2 +10757,34,14,30,0.0 +10757,59,55,7,0.0 +10757,62,49.3,30,0.0 +10757,64,33.25,24,0.0 +10758,26,31.23,20,0.0 +10758,52,7,60,0.0 +10758,70,15,40,0.0 +10759,32,32,10,0.0 +10760,25,14,12,0.25 +10760,27,43.9,40,0.0 +10760,43,46,30,0.25 +10761,25,14,35,0.25 +10761,75,7.75,18,0.0 +10762,39,18,16,0.0 +10762,47,9.5,30,0.0 +10762,51,53,28,0.0 +10762,56,38,60,0.0 +10763,21,10,40,0.0 +10763,22,21,6,0.0 +10763,24,4.5,20,0.0 +10764,3,10,20,0.1 +10764,39,18,130,0.1 +10765,65,21.05,80,0.1 +10766,2,19,40,0.0 +10766,7,30,35,0.0 +10766,68,12.5,40,0.0 +10767,42,14,2,0.0 +10768,22,21,4,0.0 +10768,31,12.5,50,0.0 +10768,60,34,15,0.0 +10768,71,21.5,12,0.0 +10769,41,9.65,30,0.05 +10769,52,7,15,0.05 +10769,61,28.5,20,0.0 +10769,62,49.3,15,0.0 +10770,11,21,15,0.25 +10771,71,21.5,16,0.0 +10772,29,123.79,18,0.0 +10772,59,55,25,0.0 +10773,17,39,33,0.0 +10773,31,12.5,70,0.2 +10773,75,7.75,7,0.2 +10774,31,12.5,2,0.25 +10774,66,17,50,0.0 +10775,10,31,6,0.0 +10775,67,14,3,0.0 +10776,31,12.5,16,0.05 +10776,42,14,12,0.05 +10776,45,9.5,27,0.05 +10776,51,53,120,0.05 +10777,42,14,20,0.2 +10778,41,9.65,10,0.0 +10779,16,17.45,20,0.0 +10779,62,49.3,20,0.0 +10780,70,15,35,0.0 +10780,77,13,15,0.0 +10781,54,7.45,3,0.2 +10781,56,38,20,0.2 +10781,74,10,35,0.0 +10782,31,12.5,1,0.0 +10783,31,12.5,10,0.0 +10783,38,263.5,5,0.0 +10784,36,19,30,0.0 +10784,39,18,2,0.15 +10784,72,34.8,30,0.15 +10785,10,31,10,0.0 +10785,75,7.75,10,0.0 +10786,8,40,30,0.2 +10786,30,25.89,15,0.2 +10786,75,7.75,42,0.2 +10787,2,19,15,0.05 +10787,29,123.79,20,0.05 +10788,19,9.2,50,0.05 +10788,75,7.75,40,0.05 +10789,18,62.5,30,0.0 +10789,35,18,15,0.0 +10789,63,43.9,30,0.0 +10789,68,12.5,18,0.0 +10790,7,30,3,0.15 +10790,56,38,20,0.15 +10791,29,123.79,14,0.05 +10791,41,9.65,20,0.05 +10792,2,19,10,0.0 +10792,54,7.45,3,0.0 +10792,68,12.5,15,0.0 +10793,41,9.65,14,0.0 +10793,52,7,8,0.0 +10794,14,23.25,15,0.2 +10794,54,7.45,6,0.2 +10795,16,17.45,65,0.0 +10795,17,39,35,0.25 +10796,26,31.23,21,0.2 +10796,44,19.45,10,0.0 +10796,64,33.25,35,0.2 +10796,69,36,24,0.2 +10797,11,21,20,0.0 +10798,62,49.3,2,0.0 +10798,72,34.8,10,0.0 +10799,13,6,20,0.15 +10799,24,4.5,20,0.15 +10799,59,55,25,0.0 +10800,11,21,50,0.1 +10800,51,53,10,0.1 +10800,54,7.45,7,0.1 +10801,17,39,40,0.25 +10801,29,123.79,20,0.25 +10802,30,25.89,25,0.25 +10802,51,53,30,0.25 +10802,55,24,60,0.25 +10802,62,49.3,5,0.25 +10803,19,9.2,24,0.05 +10803,25,14,15,0.05 +10803,59,55,15,0.05 +10804,10,31,36,0.0 +10804,28,45.6,24,0.0 +10804,49,20,4,0.15 +10805,34,14,10,0.0 +10805,38,263.5,10,0.0 +10806,2,19,20,0.25 +10806,65,21.05,2,0.0 +10806,74,10,15,0.25 +10807,40,18.4,1,0.0 +10808,56,38,20,0.15 +10808,76,18,50,0.15 +10809,52,7,20,0.0 +10810,13,6,7,0.0 +10810,25,14,5,0.0 +10810,70,15,5,0.0 +10811,19,9.2,15,0.0 +10811,23,9,18,0.0 +10811,40,18.4,30,0.0 +10812,31,12.5,16,0.1 +10812,72,34.8,40,0.1 +10812,77,13,20,0.0 +10813,2,19,12,0.2 +10813,46,12,35,0.0 +10814,41,9.65,20,0.0 +10814,43,46,20,0.15 +10814,48,12.75,8,0.15 +10814,61,28.5,30,0.15 +10815,33,2.5,16,0.0 +10816,38,263.5,30,0.05 +10816,62,49.3,20,0.05 +10817,26,31.23,40,0.15 +10817,38,263.5,30,0.0 +10817,40,18.4,60,0.15 +10817,62,49.3,25,0.15 +10818,32,32,20,0.0 +10818,41,9.65,20,0.0 +10819,43,46,7,0.0 +10819,75,7.75,20,0.0 +10820,56,38,30,0.0 +10821,35,18,20,0.0 +10821,51,53,6,0.0 +10822,62,49.3,3,0.0 +10822,70,15,6,0.0 +10823,11,21,20,0.1 +10823,57,19.5,15,0.0 +10823,59,55,40,0.1 +10823,77,13,15,0.1 +10824,41,9.65,12,0.0 +10824,70,15,9,0.0 +10825,26,31.23,12,0.0 +10825,53,32.8,20,0.0 +10826,31,12.5,35,0.0 +10826,57,19.5,15,0.0 +10827,10,31,15,0.0 +10827,39,18,21,0.0 +10828,20,81,5,0.0 +10828,38,263.5,2,0.0 +10829,2,19,10,0.0 +10829,8,40,20,0.0 +10829,13,6,10,0.0 +10829,60,34,21,0.0 +10830,6,25,6,0.0 +10830,39,18,28,0.0 +10830,60,34,30,0.0 +10830,68,12.5,24,0.0 +10831,19,9.2,2,0.0 +10831,35,18,8,0.0 +10831,38,263.5,8,0.0 +10831,43,46,9,0.0 +10832,13,6,3,0.2 +10832,25,14,10,0.2 +10832,44,19.45,16,0.2 +10832,64,33.25,3,0.0 +10833,7,30,20,0.1 +10833,31,12.5,9,0.1 +10833,53,32.8,9,0.1 +10834,29,123.79,8,0.05 +10834,30,25.89,20,0.05 +10835,59,55,15,0.0 +10835,77,13,2,0.2 +10836,22,21,52,0.0 +10836,35,18,6,0.0 +10836,57,19.5,24,0.0 +10836,60,34,60,0.0 +10836,64,33.25,30,0.0 +10837,13,6,6,0.0 +10837,40,18.4,25,0.0 +10837,47,9.5,40,0.25 +10837,76,18,21,0.25 +10838,1,18,4,0.25 +10838,18,62.5,25,0.25 +10838,36,19,50,0.25 +10839,58,13.25,30,0.1 +10839,72,34.8,15,0.1 +10840,25,14,6,0.2 +10840,39,18,10,0.2 +10841,10,31,16,0.0 +10841,56,38,30,0.0 +10841,59,55,50,0.0 +10841,77,13,15,0.0 +10842,11,21,15,0.0 +10842,43,46,5,0.0 +10842,68,12.5,20,0.0 +10842,70,15,12,0.0 +10843,51,53,4,0.25 +10844,22,21,35,0.0 +10845,23,9,70,0.1 +10845,35,18,25,0.1 +10845,42,14,42,0.1 +10845,58,13.25,60,0.1 +10845,64,33.25,48,0.0 +10846,4,22,21,0.0 +10846,70,15,30,0.0 +10846,74,10,20,0.0 +10847,1,18,80,0.2 +10847,19,9.2,12,0.2 +10847,37,26,60,0.2 +10847,45,9.5,36,0.2 +10847,60,34,45,0.2 +10847,71,21.5,55,0.2 +10848,5,21.35,30,0.0 +10848,9,97,3,0.0 +10849,3,10,49,0.0 +10849,26,31.23,18,0.15 +10850,25,14,20,0.15 +10850,33,2.5,4,0.15 +10850,70,15,30,0.15 +10851,2,19,5,0.05 +10851,25,14,10,0.05 +10851,57,19.5,10,0.05 +10851,59,55,42,0.05 +10852,2,19,15,0.0 +10852,17,39,6,0.0 +10852,62,49.3,50,0.0 +10853,18,62.5,10,0.0 +10854,10,31,100,0.15 +10854,13,6,65,0.15 +10855,16,17.45,50,0.0 +10855,31,12.5,14,0.0 +10855,56,38,24,0.0 +10855,65,21.05,15,0.15 +10856,2,19,20,0.0 +10856,42,14,20,0.0 +10857,3,10,30,0.0 +10857,26,31.23,35,0.25 +10857,29,123.79,10,0.25 +10858,7,30,5,0.0 +10858,27,43.9,10,0.0 +10858,70,15,4,0.0 +10859,24,4.5,40,0.25 +10859,54,7.45,35,0.25 +10859,64,33.25,30,0.25 +10860,51,53,3,0.0 +10860,76,18,20,0.0 +10861,17,39,42,0.0 +10861,18,62.5,20,0.0 +10861,21,10,40,0.0 +10861,33,2.5,35,0.0 +10861,62,49.3,3,0.0 +10862,11,21,25,0.0 +10862,52,7,8,0.0 +10863,1,18,20,0.15 +10863,58,13.25,12,0.15 +10864,35,18,4,0.0 +10864,67,14,15,0.0 +10865,38,263.5,60,0.05 +10865,39,18,80,0.05 +10866,2,19,21,0.25 +10866,24,4.5,6,0.25 +10866,30,25.89,40,0.25 +10867,53,32.8,3,0.0 +10868,26,31.23,20,0.0 +10868,35,18,30,0.0 +10868,49,20,42,0.1 +10869,1,18,40,0.0 +10869,11,21,10,0.0 +10869,23,9,50,0.0 +10869,68,12.5,20,0.0 +10870,35,18,3,0.0 +10870,51,53,2,0.0 +10871,6,25,50,0.05 +10871,16,17.45,12,0.05 +10871,17,39,16,0.05 +10872,55,24,10,0.05 +10872,62,49.3,20,0.05 +10872,64,33.25,15,0.05 +10872,65,21.05,21,0.05 +10873,21,10,20,0.0 +10873,28,45.6,3,0.0 +10874,10,31,10,0.0 +10875,19,9.2,25,0.0 +10875,47,9.5,21,0.1 +10875,49,20,15,0.0 +10876,46,12,21,0.0 +10876,64,33.25,20,0.0 +10877,16,17.45,30,0.25 +10877,18,62.5,25,0.0 +10878,20,81,20,0.05 +10879,40,18.4,12,0.0 +10879,65,21.05,10,0.0 +10879,76,18,10,0.0 +10880,23,9,30,0.2 +10880,61,28.5,30,0.2 +10880,70,15,50,0.2 +10881,73,15,10,0.0 +10882,42,14,25,0.0 +10882,49,20,20,0.15 +10882,54,7.45,32,0.15 +10883,24,4.5,8,0.0 +10884,21,10,40,0.05 +10884,56,38,21,0.05 +10884,65,21.05,12,0.05 +10885,2,19,20,0.0 +10885,24,4.5,12,0.0 +10885,70,15,30,0.0 +10885,77,13,25,0.0 +10886,10,31,70,0.0 +10886,31,12.5,35,0.0 +10886,77,13,40,0.0 +10887,25,14,5,0.0 +10888,2,19,20,0.0 +10888,68,12.5,18,0.0 +10889,11,21,40,0.0 +10889,38,263.5,40,0.0 +10890,17,39,15,0.0 +10890,34,14,10,0.0 +10890,41,9.65,14,0.0 +10891,30,25.89,15,0.05 +10892,59,55,40,0.05 +10893,8,40,30,0.0 +10893,24,4.5,10,0.0 +10893,29,123.79,24,0.0 +10893,30,25.89,35,0.0 +10893,36,19,20,0.0 +10894,13,6,28,0.05 +10894,69,36,50,0.05 +10894,75,7.75,120,0.05 +10895,24,4.5,110,0.0 +10895,39,18,45,0.0 +10895,40,18.4,91,0.0 +10895,60,34,100,0.0 +10896,45,9.5,15,0.0 +10896,56,38,16,0.0 +10897,29,123.79,80,0.0 +10897,30,25.89,36,0.0 +10898,13,6,5,0.0 +10899,39,18,8,0.15 +10900,70,15,3,0.25 +10901,41,9.65,30,0.0 +10901,71,21.5,30,0.0 +10902,55,24,30,0.15 +10902,62,49.3,6,0.15 +10903,13,6,40,0.0 +10903,65,21.05,21,0.0 +10903,68,12.5,20,0.0 +10904,58,13.25,15,0.0 +10904,62,49.3,35,0.0 +10905,1,18,20,0.05 +10906,61,28.5,15,0.0 +10907,75,7.75,14,0.0 +10908,7,30,20,0.05 +10908,52,7,14,0.05 +10909,7,30,12,0.0 +10909,16,17.45,15,0.0 +10909,41,9.65,5,0.0 +10910,19,9.2,12,0.0 +10910,49,20,10,0.0 +10910,61,28.5,5,0.0 +10911,1,18,10,0.0 +10911,17,39,12,0.0 +10911,67,14,15,0.0 +10912,11,21,40,0.25 +10912,29,123.79,60,0.25 +10913,4,22,30,0.25 +10913,33,2.5,40,0.25 +10913,58,13.25,15,0.0 +10914,71,21.5,25,0.0 +10915,17,39,10,0.0 +10915,33,2.5,30,0.0 +10915,54,7.45,10,0.0 +10916,16,17.45,6,0.0 +10916,32,32,6,0.0 +10916,57,19.5,20,0.0 +10917,30,25.89,1,0.0 +10917,60,34,10,0.0 +10918,1,18,60,0.25 +10918,60,34,25,0.25 +10919,16,17.45,24,0.0 +10919,25,14,24,0.0 +10919,40,18.4,20,0.0 +10920,50,16.25,24,0.0 +10921,35,18,10,0.0 +10921,63,43.9,40,0.0 +10922,17,39,15,0.0 +10922,24,4.5,35,0.0 +10923,42,14,10,0.2 +10923,43,46,10,0.2 +10923,67,14,24,0.2 +10924,10,31,20,0.1 +10924,28,45.6,30,0.1 +10924,75,7.75,6,0.0 +10925,36,19,25,0.15 +10925,52,7,12,0.15 +10926,11,21,2,0.0 +10926,13,6,10,0.0 +10926,19,9.2,7,0.0 +10926,72,34.8,10,0.0 +10927,20,81,5,0.0 +10927,52,7,5,0.0 +10927,76,18,20,0.0 +10928,47,9.5,5,0.0 +10928,76,18,5,0.0 +10929,21,10,60,0.0 +10929,75,7.75,49,0.0 +10929,77,13,15,0.0 +10930,21,10,36,0.0 +10930,27,43.9,25,0.0 +10930,55,24,25,0.2 +10930,58,13.25,30,0.2 +10931,13,6,42,0.15 +10931,57,19.5,30,0.0 +10932,16,17.45,30,0.1 +10932,62,49.3,14,0.1 +10932,72,34.8,16,0.0 +10932,75,7.75,20,0.1 +10933,53,32.8,2,0.0 +10933,61,28.5,30,0.0 +10934,6,25,20,0.0 +10935,1,18,21,0.0 +10935,18,62.5,4,0.25 +10935,23,9,8,0.25 +10936,36,19,30,0.2 +10937,28,45.6,8,0.0 +10937,34,14,20,0.0 +10938,13,6,20,0.25 +10938,43,46,24,0.25 +10938,60,34,49,0.25 +10938,71,21.5,35,0.25 +10939,2,19,10,0.15 +10939,67,14,40,0.15 +10940,7,30,8,0.0 +10940,13,6,20,0.0 +10941,31,12.5,44,0.25 +10941,62,49.3,30,0.25 +10941,68,12.5,80,0.25 +10941,72,34.8,50,0.0 +10942,49,20,28,0.0 +10943,13,6,15,0.0 +10943,22,21,21,0.0 +10943,46,12,15,0.0 +10944,11,21,5,0.25 +10944,44,19.45,18,0.25 +10944,56,38,18,0.0 +10945,13,6,20,0.0 +10945,31,12.5,10,0.0 +10946,10,31,25,0.0 +10946,24,4.5,25,0.0 +10946,77,13,40,0.0 +10947,59,55,4,0.0 +10948,50,16.25,9,0.0 +10948,51,53,40,0.0 +10948,55,24,4,0.0 +10949,6,25,12,0.0 +10949,10,31,30,0.0 +10949,17,39,6,0.0 +10949,62,49.3,60,0.0 +10950,4,22,5,0.0 +10951,33,2.5,15,0.05 +10951,41,9.65,6,0.05 +10951,75,7.75,50,0.05 +10952,6,25,16,0.05 +10952,28,45.6,2,0.0 +10953,20,81,50,0.05 +10953,31,12.5,50,0.05 +10954,16,17.45,28,0.15 +10954,31,12.5,25,0.15 +10954,45,9.5,30,0.0 +10954,60,34,24,0.15 +10955,75,7.75,12,0.2 +10956,21,10,12,0.0 +10956,47,9.5,14,0.0 +10956,51,53,8,0.0 +10957,30,25.89,30,0.0 +10957,35,18,40,0.0 +10957,64,33.25,8,0.0 +10958,5,21.35,20,0.0 +10958,7,30,6,0.0 +10958,72,34.8,5,0.0 +10959,75,7.75,20,0.15 +10960,24,4.5,10,0.25 +10960,41,9.65,24,0.0 +10961,52,7,6,0.05 +10961,76,18,60,0.0 +10962,7,30,45,0.0 +10962,13,6,77,0.0 +10962,53,32.8,20,0.0 +10962,69,36,9,0.0 +10962,76,18,44,0.0 +10963,60,34,2,0.15 +10964,18,62.5,6,0.0 +10964,38,263.5,5,0.0 +10964,69,36,10,0.0 +10965,51,53,16,0.0 +10966,37,26,8,0.0 +10966,56,38,12,0.15 +10966,62,49.3,12,0.15 +10967,19,9.2,12,0.0 +10967,49,20,40,0.0 +10968,12,38,30,0.0 +10968,24,4.5,30,0.0 +10968,64,33.25,4,0.0 +10969,46,12,9,0.0 +10970,52,7,40,0.2 +10971,29,123.79,14,0.0 +10972,17,39,6,0.0 +10972,33,2.5,7,0.0 +10973,26,31.23,5,0.0 +10973,41,9.65,6,0.0 +10973,75,7.75,10,0.0 +10974,63,43.9,10,0.0 +10975,8,40,16,0.0 +10975,75,7.75,10,0.0 +10976,28,45.6,20,0.0 +10977,39,18,30,0.0 +10977,47,9.5,30,0.0 +10977,51,53,10,0.0 +10977,63,43.9,20,0.0 +10978,8,40,20,0.15 +10978,21,10,40,0.15 +10978,40,18.4,10,0.0 +10978,44,19.45,6,0.15 +10979,7,30,18,0.0 +10979,12,38,20,0.0 +10979,24,4.5,80,0.0 +10979,27,43.9,30,0.0 +10979,31,12.5,24,0.0 +10979,63,43.9,35,0.0 +10980,75,7.75,40,0.2 +10981,38,263.5,60,0.0 +10982,7,30,20,0.0 +10982,43,46,9,0.0 +10983,13,6,84,0.15 +10983,57,19.5,15,0.0 +10984,16,17.45,55,0.0 +10984,24,4.5,20,0.0 +10984,36,19,40,0.0 +10985,16,17.45,36,0.1 +10985,18,62.5,8,0.1 +10985,32,32,35,0.1 +10986,11,21,30,0.0 +10986,20,81,15,0.0 +10986,76,18,10,0.0 +10986,77,13,15,0.0 +10987,7,30,60,0.0 +10987,43,46,6,0.0 +10987,72,34.8,20,0.0 +10988,7,30,60,0.0 +10988,62,49.3,40,0.1 +10989,6,25,40,0.0 +10989,11,21,15,0.0 +10989,41,9.65,4,0.0 +10990,21,10,65,0.0 +10990,34,14,60,0.15 +10990,55,24,65,0.15 +10990,61,28.5,66,0.15 +10991,2,19,50,0.2 +10991,70,15,20,0.2 +10991,76,18,90,0.2 +10992,72,34.8,2,0.0 +10993,29,123.79,50,0.25 +10993,41,9.65,35,0.25 +10994,59,55,18,0.05 +10995,51,53,20,0.0 +10995,60,34,4,0.0 +10996,42,14,40,0.0 +10997,32,32,50,0.0 +10997,46,12,20,0.25 +10997,52,7,20,0.25 +10998,24,4.5,12,0.0 +10998,61,28.5,7,0.0 +10998,74,10,20,0.0 +10998,75,7.75,30,0.0 +10999,41,9.65,20,0.05 +10999,51,53,15,0.05 +10999,77,13,21,0.05 +11000,4,22,25,0.25 +11000,24,4.5,30,0.25 +11000,77,13,30,0.0 +11001,7,30,60,0.0 +11001,22,21,25,0.0 +11001,46,12,25,0.0 +11001,55,24,6,0.0 +11002,13,6,56,0.0 +11002,35,18,15,0.15 +11002,42,14,24,0.15 +11002,55,24,40,0.0 +11003,1,18,4,0.0 +11003,40,18.4,10,0.0 +11003,52,7,10,0.0 +11004,26,31.23,6,0.0 +11004,76,18,6,0.0 +11005,1,18,2,0.0 +11005,59,55,10,0.0 +11006,1,18,8,0.0 +11006,29,123.79,2,0.25 +11007,8,40,30,0.0 +11007,29,123.79,10,0.0 +11007,42,14,14,0.0 +11008,28,45.6,70,0.05 +11008,34,14,90,0.05 +11008,71,21.5,21,0.0 +11009,24,4.5,12,0.0 +11009,36,19,18,0.25 +11009,60,34,9,0.0 +11010,7,30,20,0.0 +11010,24,4.5,10,0.0 +11011,58,13.25,40,0.05 +11011,71,21.5,20,0.0 +11012,19,9.2,50,0.05 +11012,60,34,36,0.05 +11012,71,21.5,60,0.05 +11013,23,9,10,0.0 +11013,42,14,4,0.0 +11013,45,9.5,20,0.0 +11013,68,12.5,2,0.0 +11014,41,9.65,28,0.1 +11015,30,25.89,15,0.0 +11015,77,13,18,0.0 +11016,31,12.5,15,0.0 +11016,36,19,16,0.0 +11017,3,10,25,0.0 +11017,59,55,110,0.0 +11017,70,15,30,0.0 +11018,12,38,20,0.0 +11018,18,62.5,10,0.0 +11018,56,38,5,0.0 +11019,46,12,3,0.0 +11019,49,20,2,0.0 +11020,10,31,24,0.15 +11021,2,19,11,0.25 +11021,20,81,15,0.0 +11021,26,31.23,63,0.0 +11021,51,53,44,0.25 +11021,72,34.8,35,0.0 +11022,19,9.2,35,0.0 +11022,69,36,30,0.0 +11023,7,30,4,0.0 +11023,43,46,30,0.0 +11024,26,31.23,12,0.0 +11024,33,2.5,30,0.0 +11024,65,21.05,21,0.0 +11024,71,21.5,50,0.0 +11025,1,18,10,0.1 +11025,13,6,20,0.1 +11026,18,62.5,8,0.0 +11026,51,53,10,0.0 +11027,24,4.5,30,0.25 +11027,62,49.3,21,0.25 +11028,55,24,35,0.0 +11028,59,55,24,0.0 +11029,56,38,20,0.0 +11029,63,43.9,12,0.0 +11030,2,19,100,0.25 +11030,5,21.35,70,0.0 +11030,29,123.79,60,0.25 +11030,59,55,100,0.25 +11031,1,18,45,0.0 +11031,13,6,80,0.0 +11031,24,4.5,21,0.0 +11031,64,33.25,20,0.0 +11031,71,21.5,16,0.0 +11032,36,19,35,0.0 +11032,38,263.5,25,0.0 +11032,59,55,30,0.0 +11033,53,32.8,70,0.1 +11033,69,36,36,0.1 +11034,21,10,15,0.1 +11034,44,19.45,12,0.0 +11034,61,28.5,6,0.0 +11035,1,18,10,0.0 +11035,35,18,60,0.0 +11035,42,14,30,0.0 +11035,54,7.45,10,0.0 +11036,13,6,7,0.0 +11036,59,55,30,0.0 +11037,70,15,4,0.0 +11038,40,18.4,5,0.2 +11038,52,7,2,0.0 +11038,71,21.5,30,0.0 +11039,28,45.6,20,0.0 +11039,35,18,24,0.0 +11039,49,20,60,0.0 +11039,57,19.5,28,0.0 +11040,21,10,20,0.0 +11041,2,19,30,0.2 +11041,63,43.9,30,0.0 +11042,44,19.45,15,0.0 +11042,61,28.5,4,0.0 +11043,11,21,10,0.0 +11044,62,49.3,12,0.0 +11045,33,2.5,15,0.0 +11045,51,53,24,0.0 +11046,12,38,20,0.05 +11046,32,32,15,0.05 +11046,35,18,18,0.05 +11047,1,18,25,0.25 +11047,5,21.35,30,0.25 +11048,68,12.5,42,0.0 +11049,2,19,10,0.2 +11049,12,38,4,0.2 +11050,76,18,50,0.1 +11051,24,4.5,10,0.2 +11052,43,46,30,0.2 +11052,61,28.5,10,0.2 +11053,18,62.5,35,0.2 +11053,32,32,20,0.0 +11053,64,33.25,25,0.2 +11054,33,2.5,10,0.0 +11054,67,14,20,0.0 +11055,24,4.5,15,0.0 +11055,25,14,15,0.0 +11055,51,53,20,0.0 +11055,57,19.5,20,0.0 +11056,7,30,40,0.0 +11056,55,24,35,0.0 +11056,60,34,50,0.0 +11057,70,15,3,0.0 +11058,21,10,3,0.0 +11058,60,34,21,0.0 +11058,61,28.5,4,0.0 +11059,13,6,30,0.0 +11059,17,39,12,0.0 +11059,60,34,35,0.0 +11060,60,34,4,0.0 +11060,77,13,10,0.0 +11061,60,34,15,0.0 +11062,53,32.8,10,0.2 +11062,70,15,12,0.2 +11063,34,14,30,0.0 +11063,40,18.4,40,0.1 +11063,41,9.65,30,0.1 +11064,17,39,77,0.1 +11064,41,9.65,12,0.0 +11064,53,32.8,25,0.1 +11064,55,24,4,0.1 +11064,68,12.5,55,0.0 +11065,30,25.89,4,0.25 +11065,54,7.45,20,0.25 +11066,16,17.45,3,0.0 +11066,19,9.2,42,0.0 +11066,34,14,35,0.0 +11067,41,9.65,9,0.0 +11068,28,45.6,8,0.15 +11068,43,46,36,0.15 +11068,77,13,28,0.15 +11069,39,18,20,0.0 +11070,1,18,40,0.15 +11070,2,19,20,0.15 +11070,16,17.45,30,0.15 +11070,31,12.5,20,0.0 +11071,7,30,15,0.05 +11071,13,6,10,0.05 +11072,2,19,8,0.0 +11072,41,9.65,40,0.0 +11072,50,16.25,22,0.0 +11072,64,33.25,130,0.0 +11073,11,21,10,0.0 +11073,24,4.5,20,0.0 +11074,16,17.45,14,0.05 +11075,2,19,10,0.15 +11075,46,12,30,0.15 +11075,76,18,2,0.15 +11076,6,25,20,0.25 +11076,14,23.25,20,0.25 +11076,19,9.2,10,0.25 +11077,2,19,24,0.2 +11077,3,10,4,0.0 +11077,4,22,1,0.0 +11077,6,25,1,0.02 +11077,7,30,1,0.05 +11077,8,40,2,0.1 +11077,10,31,1,0.0 +11077,12,38,2,0.05 +11077,13,6,4,0.0 +11077,14,23.25,1,0.03 +11077,16,17.45,2,0.03 +11077,20,81,1,0.04 +11077,23,9,2,0.0 +11077,32,32,1,0.0 +11077,39,18,2,0.05 +11077,41,9.65,3,0.0 +11077,46,12,3,0.02 +11077,52,7,2,0.0 +11077,55,24,2,0.0 +11077,60,34,2,0.06 +11077,64,33.25,2,0.03 +11077,66,17,1,0.0 +11077,73,15,2,0.01 +11077,75,7.75,4,0.0 +11077,77,13,2,0.0 +11078,51,53,17,0.0 +11078,45,9.5,22,0.0 +11078,17,39,41,0.0 +11078,76,18,46,0.0 +11078,49,20,11,0.0 +11078,77,13,18,0.0 +11078,60,34,9,0.0 +11078,32,32,19,0.0 +11078,52,7,4,0.0 +11078,20,81,35,0.0 +11078,59,55,27,0.0 +11079,15,15.5,29,0.0 +11079,6,25,34,0.0 +11079,56,38,30,0.0 +11079,53,32.8,3,0.0 +11079,45,9.5,34,0.0 +11079,52,7,42,0.0 +11079,67,14,3,0.0 +11079,60,34,21,0.0 +11079,22,21,17,0.0 +11079,46,12,9,0.0 +11079,8,40,43,0.0 +11079,59,55,1,0.0 +11079,10,31,7,0.0 +11079,25,14,34,0.0 +11079,48,12.75,6,0.0 +11079,40,18.4,24,0.0 +11079,58,13.25,40,0.0 +11079,13,6,33,0.0 +11080,4,22,38,0.0 +11080,33,2.5,47,0.0 +11080,69,36,10,0.0 +11080,62,49.3,22,0.0 +11080,37,26,31,0.0 +11080,60,34,27,0.0 +11080,22,21,10,0.0 +11080,10,31,35,0.0 +11080,17,39,46,0.0 +11080,29,123.79,8,0.0 +11080,7,30,17,0.0 +11080,2,19,36,0.0 +11080,40,18.4,34,0.0 +11080,73,15,45,0.0 +11080,5,21.35,11,0.0 +11080,47,9.5,46,0.0 +11080,9,97,34,0.0 +11080,20,81,14,0.0 +11080,45,9.5,32,0.0 +11080,61,28.5,47,0.0 +11080,54,7.45,15,0.0 +11080,53,32.8,11,0.0 +11080,67,14,11,0.0 +11080,56,38,29,0.0 +11080,27,43.9,2,0.0 +11080,15,15.5,16,0.0 +11080,18,62.5,18,0.0 +11080,64,33.25,11,0.0 +11080,75,7.75,27,0.0 +11080,25,14,29,0.0 +11080,59,55,22,0.0 +11080,31,12.5,39,0.0 +11080,3,10,3,0.0 +11080,72,34.8,32,0.0 +11080,11,21,2,0.0 +11080,14,23.25,26,0.0 +11080,51,53,50,0.0 +11080,49,20,7,0.0 +11080,34,14,11,0.0 +11080,26,31.23,23,0.0 +11080,65,21.05,49,0.0 +11081,63,43.9,37,0.0 +11081,2,19,13,0.0 +11081,64,33.25,6,0.0 +11081,72,34.8,39,0.0 +11081,34,14,1,0.0 +11081,70,15,7,0.0 +11081,1,18,38,0.0 +11081,13,6,18,0.0 +11081,38,263.5,35,0.0 +11081,76,18,7,0.0 +11081,30,25.89,33,0.0 +11081,28,45.6,44,0.0 +11081,77,13,2,0.0 +11081,54,7.45,23,0.0 +11081,5,21.35,15,0.0 +11081,27,43.9,11,0.0 +11081,52,7,22,0.0 +11081,45,9.5,4,0.0 +11081,71,21.5,4,0.0 +11081,56,38,37,0.0 +11081,57,19.5,40,0.0 +11081,37,26,30,0.0 +11081,17,39,1,0.0 +11081,22,21,38,0.0 +11081,36,19,15,0.0 +11081,61,28.5,50,0.0 +11081,50,16.25,50,0.0 +11081,23,9,15,0.0 +11081,66,17,5,0.0 +11081,32,32,13,0.0 +11081,3,10,10,0.0 +11081,29,123.79,43,0.0 +11081,49,20,12,0.0 +11081,67,14,34,0.0 +11081,12,38,45,0.0 +11081,58,13.25,42,0.0 +11081,33,2.5,48,0.0 +11081,60,34,16,0.0 +11081,8,40,26,0.0 +11081,6,25,19,0.0 +11081,21,10,33,0.0 +11081,62,49.3,10,0.0 +11081,11,21,15,0.0 +11081,51,53,16,0.0 +11081,74,10,28,0.0 +11081,53,32.8,6,0.0 +11081,68,12.5,50,0.0 +11081,19,9.2,21,0.0 +11081,20,81,31,0.0 +11081,40,18.4,38,0.0 +11081,48,12.75,3,0.0 +11081,47,9.5,49,0.0 +11081,9,97,10,0.0 +11081,59,55,21,0.0 +11081,24,4.5,12,0.0 +11081,25,14,37,0.0 +11081,16,17.45,22,0.0 +11081,42,14,19,0.0 +11081,41,9.65,25,0.0 +11081,18,62.5,42,0.0 +11081,75,7.75,11,0.0 +11081,10,31,7,0.0 +11081,26,31.23,10,0.0 +11081,7,30,8,0.0 +11081,35,18,35,0.0 +11081,55,24,22,0.0 +11081,69,36,42,0.0 +11081,14,23.25,48,0.0 +11081,73,15,27,0.0 +11082,18,62.5,44,0.0 +11082,63,43.9,29,0.0 +11082,15,15.5,9,0.0 +11082,32,32,8,0.0 +11082,59,55,31,0.0 +11082,66,17,9,0.0 +11082,8,40,7,0.0 +11082,76,18,30,0.0 +11082,25,14,38,0.0 +11082,48,12.75,5,0.0 +11083,2,19,17,0.0 +11083,76,18,7,0.0 +11083,72,34.8,12,0.0 +11083,38,263.5,28,0.0 +11083,49,20,24,0.0 +11083,29,123.79,22,0.0 +11083,30,25.89,22,0.0 +11083,73,15,35,0.0 +11083,17,39,9,0.0 +11083,5,21.35,5,0.0 +11083,58,13.25,9,0.0 +11083,60,34,18,0.0 +11083,36,19,3,0.0 +11083,9,97,46,0.0 +11083,75,7.75,32,0.0 +11083,54,7.45,33,0.0 +11083,41,9.65,15,0.0 +11083,44,19.45,19,0.0 +11083,19,9.2,24,0.0 +11083,61,28.5,29,0.0 +11083,21,10,11,0.0 +11083,63,43.9,24,0.0 +11083,18,62.5,27,0.0 +11083,52,7,10,0.0 +11083,57,19.5,16,0.0 +11083,11,21,27,0.0 +11083,24,4.5,25,0.0 +11083,50,16.25,32,0.0 +11083,31,12.5,37,0.0 +11083,67,14,33,0.0 +11083,34,14,21,0.0 +11083,28,45.6,1,0.0 +11083,35,18,49,0.0 +11083,51,53,35,0.0 +11083,23,9,33,0.0 +11083,65,21.05,6,0.0 +11083,46,12,32,0.0 +11083,26,31.23,11,0.0 +11083,62,49.3,50,0.0 +11083,59,55,47,0.0 +11083,13,6,25,0.0 +11083,74,10,37,0.0 +11083,22,21,23,0.0 +11083,20,81,15,0.0 +11083,33,2.5,21,0.0 +11083,68,12.5,9,0.0 +11083,77,13,9,0.0 +11083,12,38,11,0.0 +11083,64,33.25,2,0.0 +11083,71,21.5,12,0.0 +11083,25,14,18,0.0 +11083,43,46,38,0.0 +11083,42,14,41,0.0 +11083,70,15,1,0.0 +11083,10,31,32,0.0 +11083,47,9.5,47,0.0 +11083,1,18,49,0.0 +11084,17,39,48,0.0 +11084,46,12,39,0.0 +11084,71,21.5,7,0.0 +11084,28,45.6,2,0.0 +11084,1,18,31,0.0 +11084,66,17,11,0.0 +11084,8,40,41,0.0 +11084,34,14,39,0.0 +11084,59,55,22,0.0 +11084,35,18,41,0.0 +11084,72,34.8,3,0.0 +11084,29,123.79,1,0.0 +11084,9,97,44,0.0 +11084,39,18,38,0.0 +11084,64,33.25,29,0.0 +11084,18,62.5,17,0.0 +11084,41,9.65,47,0.0 +11084,24,4.5,2,0.0 +11084,75,7.75,13,0.0 +11084,60,34,34,0.0 +11084,3,10,45,0.0 +11084,70,15,40,0.0 +11084,4,22,19,0.0 +11084,58,13.25,16,0.0 +11084,7,30,44,0.0 +11084,15,15.5,33,0.0 +11084,25,14,8,0.0 +11084,50,16.25,25,0.0 +11084,63,43.9,9,0.0 +11084,20,81,43,0.0 +11084,42,14,32,0.0 +11084,2,19,10,0.0 +11084,12,38,19,0.0 +11084,38,263.5,13,0.0 +11084,68,12.5,32,0.0 +11084,14,23.25,35,0.0 +11084,27,43.9,16,0.0 +11084,44,19.45,43,0.0 +11084,13,6,29,0.0 +11084,37,26,6,0.0 +11084,33,2.5,30,0.0 +11084,69,36,47,0.0 +11084,22,21,40,0.0 +11084,36,19,14,0.0 +11084,19,9.2,19,0.0 +11084,74,10,29,0.0 +11084,48,12.75,47,0.0 +11084,61,28.5,41,0.0 +11084,30,25.89,41,0.0 +11084,32,32,40,0.0 +11084,77,13,6,0.0 +11084,76,18,24,0.0 +11084,57,19.5,28,0.0 +11084,21,10,14,0.0 +11084,56,38,5,0.0 +11084,31,12.5,48,0.0 +11084,45,9.5,10,0.0 +11084,52,7,24,0.0 +11084,47,9.5,27,0.0 +11084,11,21,49,0.0 +11084,54,7.45,14,0.0 +11084,43,46,36,0.0 +11084,73,15,12,0.0 +11084,6,25,22,0.0 +11084,16,17.45,49,0.0 +11084,23,9,39,0.0 +11084,26,31.23,50,0.0 +11084,65,21.05,16,0.0 +11084,62,49.3,31,0.0 +11084,49,20,11,0.0 +11084,51,53,19,0.0 +11084,55,24,1,0.0 +11084,53,32.8,12,0.0 +11084,40,18.4,20,0.0 +11085,44,19.45,22,0.0 +11085,72,34.8,50,0.0 +11085,71,21.5,33,0.0 +11085,26,31.23,48,0.0 +11085,67,14,6,0.0 +11085,77,13,10,0.0 +11085,56,38,15,0.0 +11085,68,12.5,47,0.0 +11085,74,10,24,0.0 +11085,45,9.5,7,0.0 +11085,1,18,49,0.0 +11085,27,43.9,29,0.0 +11085,4,22,26,0.0 +11085,22,21,1,0.0 +11085,12,38,6,0.0 +11085,69,36,19,0.0 +11085,51,53,29,0.0 +11085,75,7.75,23,0.0 +11085,50,16.25,35,0.0 +11085,64,33.25,19,0.0 +11085,52,7,50,0.0 +11085,76,18,33,0.0 +11085,58,13.25,11,0.0 +11085,15,15.5,47,0.0 +11085,8,40,43,0.0 +11085,41,9.65,47,0.0 +11085,40,18.4,41,0.0 +11085,37,26,46,0.0 +11085,11,21,21,0.0 +11085,54,7.45,5,0.0 +11085,65,21.05,49,0.0 +11086,71,21.5,3,0.0 +11086,74,10,39,0.0 +11086,42,14,15,0.0 +11086,17,39,6,0.0 +11087,2,19,31,0.0 +11087,74,10,1,0.0 +11087,46,12,24,0.0 +11087,21,10,7,0.0 +11087,59,55,10,0.0 +11087,6,25,38,0.0 +11087,37,26,44,0.0 +11087,11,21,43,0.0 +11087,75,7.75,43,0.0 +11087,77,13,21,0.0 +11087,22,21,22,0.0 +11087,29,123.79,40,0.0 +11087,14,23.25,24,0.0 +11087,34,14,43,0.0 +11087,19,9.2,22,0.0 +11087,33,2.5,3,0.0 +11087,48,12.75,25,0.0 +11087,31,12.5,24,0.0 +11087,38,263.5,11,0.0 +11087,57,19.5,29,0.0 +11088,28,45.6,15,0.0 +11088,74,10,43,0.0 +11088,69,36,30,0.0 +11088,25,14,47,0.0 +11088,14,23.25,19,0.0 +11088,1,18,2,0.0 +11088,21,10,13,0.0 +11088,16,17.45,30,0.0 +11088,40,18.4,43,0.0 +11088,42,14,23,0.0 +11088,12,38,10,0.0 +11088,65,21.05,3,0.0 +11088,44,19.45,38,0.0 +11088,56,38,35,0.0 +11088,67,14,43,0.0 +11088,22,21,32,0.0 +11088,64,33.25,38,0.0 +11088,26,31.23,16,0.0 +11088,15,15.5,46,0.0 +11088,9,97,39,0.0 +11088,71,21.5,14,0.0 +11088,45,9.5,49,0.0 +11088,52,7,5,0.0 +11088,32,32,7,0.0 +11088,10,31,19,0.0 +11088,47,9.5,31,0.0 +11088,50,16.25,3,0.0 +11088,51,53,7,0.0 +11088,4,22,50,0.0 +11088,38,263.5,22,0.0 +11088,43,46,9,0.0 +11088,49,20,12,0.0 +11088,62,49.3,39,0.0 +11088,17,39,17,0.0 +11088,2,19,45,0.0 +11088,77,13,39,0.0 +11088,20,81,34,0.0 +11088,30,25.89,46,0.0 +11088,58,13.25,28,0.0 +11088,31,12.5,2,0.0 +11088,7,30,32,0.0 +11088,46,12,45,0.0 +11088,35,18,3,0.0 +11088,59,55,14,0.0 +11088,33,2.5,9,0.0 +11088,63,43.9,45,0.0 +11088,68,12.5,38,0.0 +11088,6,25,13,0.0 +11088,76,18,46,0.0 +11088,27,43.9,31,0.0 +11089,15,15.5,17,0.0 +11089,46,12,33,0.0 +11089,64,33.25,25,0.0 +11089,4,22,6,0.0 +11089,55,24,34,0.0 +11089,58,13.25,2,0.0 +11089,1,18,3,0.0 +11089,43,46,40,0.0 +11089,7,30,50,0.0 +11090,56,38,17,0.0 +11090,5,21.35,43,0.0 +11090,52,7,36,0.0 +11090,13,6,50,0.0 +11090,58,13.25,30,0.0 +11090,64,33.25,18,0.0 +11090,15,15.5,20,0.0 +11090,53,32.8,20,0.0 +11090,9,97,9,0.0 +11090,55,24,39,0.0 +11090,42,14,15,0.0 +11090,74,10,15,0.0 +11090,8,40,25,0.0 +11090,49,20,7,0.0 +11090,41,9.65,50,0.0 +11090,61,28.5,36,0.0 +11090,10,31,33,0.0 +11090,21,10,2,0.0 +11090,33,2.5,11,0.0 +11090,28,45.6,22,0.0 +11090,51,53,26,0.0 +11090,34,14,39,0.0 +11090,43,46,31,0.0 +11090,24,4.5,31,0.0 +11090,6,25,5,0.0 +11090,11,21,6,0.0 +11090,4,22,23,0.0 +11090,22,21,39,0.0 +11090,17,39,46,0.0 +11090,37,26,10,0.0 +11090,70,15,46,0.0 +11090,40,18.4,18,0.0 +11090,35,18,21,0.0 +11090,76,18,21,0.0 +11091,57,19.5,49,0.0 +11091,63,43.9,1,0.0 +11091,49,20,10,0.0 +11091,21,10,22,0.0 +11091,67,14,44,0.0 +11091,37,26,36,0.0 +11091,68,12.5,36,0.0 +11091,58,13.25,33,0.0 +11091,7,30,19,0.0 +11091,76,18,25,0.0 +11092,29,123.79,17,0.0 +11092,68,12.5,50,0.0 +11092,48,12.75,2,0.0 +11092,5,21.35,49,0.0 +11092,67,14,43,0.0 +11092,15,15.5,46,0.0 +11092,32,32,12,0.0 +11092,30,25.89,4,0.0 +11092,1,18,46,0.0 +11092,9,97,7,0.0 +11092,8,40,35,0.0 +11092,56,38,18,0.0 +11092,35,18,32,0.0 +11092,31,12.5,46,0.0 +11092,22,21,41,0.0 +11092,24,4.5,27,0.0 +11092,36,19,9,0.0 +11092,77,13,31,0.0 +11092,7,30,3,0.0 +11092,33,2.5,15,0.0 +11092,10,31,22,0.0 +11092,50,16.25,25,0.0 +11093,45,9.5,26,0.0 +11093,4,22,24,0.0 +11093,41,9.65,11,0.0 +11093,60,34,21,0.0 +11093,10,31,34,0.0 +11093,30,25.89,9,0.0 +11093,6,25,42,0.0 +11093,70,15,21,0.0 +11093,37,26,17,0.0 +11093,28,45.6,7,0.0 +11093,19,9.2,23,0.0 +11093,51,53,16,0.0 +11093,69,36,32,0.0 +11093,75,7.75,9,0.0 +11093,36,19,4,0.0 +11093,52,7,9,0.0 +11093,24,4.5,2,0.0 +11093,13,6,12,0.0 +11093,23,9,1,0.0 +11093,38,263.5,10,0.0 +11093,53,32.8,40,0.0 +11093,66,17,10,0.0 +11093,22,21,21,0.0 +11093,16,17.45,21,0.0 +11093,62,49.3,15,0.0 +11093,72,34.8,15,0.0 +11093,58,13.25,41,0.0 +11093,27,43.9,22,0.0 +11093,5,21.35,19,0.0 +11093,35,18,49,0.0 +11093,48,12.75,34,0.0 +11093,76,18,2,0.0 +11093,77,13,44,0.0 +11093,59,55,6,0.0 +11093,3,10,18,0.0 +11093,67,14,46,0.0 +11093,46,12,32,0.0 +11093,54,7.45,8,0.0 +11093,8,40,15,0.0 +11093,32,32,36,0.0 +11093,57,19.5,49,0.0 +11093,33,2.5,26,0.0 +11093,31,12.5,42,0.0 +11093,63,43.9,40,0.0 +11093,65,21.05,18,0.0 +11093,64,33.25,23,0.0 +11093,42,14,36,0.0 +11093,39,18,32,0.0 +11093,44,19.45,24,0.0 +11093,1,18,43,0.0 +11093,43,46,4,0.0 +11093,15,15.5,15,0.0 +11093,34,14,47,0.0 +11093,71,21.5,15,0.0 +11093,40,18.4,34,0.0 +11093,50,16.25,6,0.0 +11093,20,81,3,0.0 +11094,11,21,25,0.0 +11094,48,12.75,25,0.0 +11094,18,62.5,38,0.0 +11094,29,123.79,8,0.0 +11094,75,7.75,12,0.0 +11094,23,9,46,0.0 +11094,40,18.4,8,0.0 +11094,50,16.25,20,0.0 +11094,64,33.25,45,0.0 +11094,33,2.5,47,0.0 +11094,27,43.9,44,0.0 +11094,14,23.25,12,0.0 +11094,70,15,26,0.0 +11094,38,263.5,14,0.0 +11094,12,38,13,0.0 +11094,13,6,6,0.0 +11094,76,18,25,0.0 +11094,25,14,35,0.0 +11094,32,32,38,0.0 +11094,44,19.45,18,0.0 +11094,31,12.5,36,0.0 +11094,67,14,48,0.0 +11094,62,49.3,4,0.0 +11094,17,39,14,0.0 +11094,66,17,33,0.0 +11094,72,34.8,30,0.0 +11094,54,7.45,48,0.0 +11094,6,25,7,0.0 +11094,77,13,32,0.0 +11094,16,17.45,13,0.0 +11094,57,19.5,21,0.0 +11094,3,10,10,0.0 +11094,71,21.5,29,0.0 +11094,19,9.2,2,0.0 +11094,60,34,34,0.0 +11094,42,14,10,0.0 +11094,45,9.5,33,0.0 +11094,28,45.6,13,0.0 +11094,55,24,30,0.0 +11094,10,31,4,0.0 +11094,37,26,6,0.0 +11094,58,13.25,9,0.0 +11094,1,18,13,0.0 +11095,76,18,49,0.0 +11095,58,13.25,11,0.0 +11095,27,43.9,18,0.0 +11095,25,14,16,0.0 +11095,2,19,5,0.0 +11095,59,55,49,0.0 +11095,4,22,42,0.0 +11095,47,9.5,12,0.0 +11095,1,18,17,0.0 +11095,67,14,8,0.0 +11095,63,43.9,4,0.0 +11095,7,30,2,0.0 +11095,52,7,12,0.0 +11095,57,19.5,48,0.0 +11096,61,28.5,32,0.0 +11096,17,39,30,0.0 +11096,31,12.5,41,0.0 +11096,62,49.3,10,0.0 +11096,26,31.23,3,0.0 +11096,71,21.5,31,0.0 +11096,18,62.5,10,0.0 +11096,25,14,44,0.0 +11096,19,9.2,40,0.0 +11096,33,2.5,24,0.0 +11096,66,17,8,0.0 +11096,67,14,47,0.0 +11096,54,7.45,1,0.0 +11096,76,18,2,0.0 +11096,39,18,50,0.0 +11096,15,15.5,33,0.0 +11096,77,13,49,0.0 +11096,58,13.25,4,0.0 +11096,63,43.9,49,0.0 +11096,2,19,34,0.0 +11096,8,40,45,0.0 +11096,21,10,44,0.0 +11096,53,32.8,39,0.0 +11096,14,23.25,32,0.0 +11096,23,9,27,0.0 +11096,44,19.45,25,0.0 +11096,68,12.5,34,0.0 +11096,3,10,23,0.0 +11096,1,18,25,0.0 +11096,73,15,25,0.0 +11096,70,15,44,0.0 +11096,51,53,1,0.0 +11096,37,26,11,0.0 +11096,65,21.05,29,0.0 +11096,50,16.25,8,0.0 +11096,69,36,49,0.0 +11096,29,123.79,46,0.0 +11096,12,38,46,0.0 +11096,64,33.25,3,0.0 +11096,6,25,46,0.0 +11096,10,31,43,0.0 +11096,9,97,33,0.0 +11096,57,19.5,4,0.0 +11096,13,6,29,0.0 +11096,74,10,41,0.0 +11096,11,21,6,0.0 +11096,35,18,13,0.0 +11096,42,14,50,0.0 +11096,16,17.45,16,0.0 +11096,59,55,36,0.0 +11096,7,30,45,0.0 +11096,56,38,31,0.0 +11096,47,9.5,42,0.0 +11096,30,25.89,34,0.0 +11096,40,18.4,16,0.0 +11096,55,24,41,0.0 +11096,72,34.8,22,0.0 +11096,48,12.75,2,0.0 +11096,5,21.35,22,0.0 +11096,45,9.5,16,0.0 +11096,75,7.75,10,0.0 +11096,52,7,14,0.0 +11096,34,14,34,0.0 +11096,20,81,6,0.0 +11096,4,22,21,0.0 +11096,24,4.5,8,0.0 +11097,32,32,6,0.0 +11097,75,7.75,13,0.0 +11097,40,18.4,14,0.0 +11097,61,28.5,38,0.0 +11097,30,25.89,25,0.0 +11097,63,43.9,21,0.0 +11097,10,31,33,0.0 +11097,73,15,19,0.0 +11097,9,97,44,0.0 +11097,11,21,12,0.0 +11097,15,15.5,16,0.0 +11097,38,263.5,21,0.0 +11097,59,55,45,0.0 +11098,18,62.5,28,0.0 +11098,26,31.23,22,0.0 +11098,59,55,12,0.0 +11098,46,12,12,0.0 +11098,11,21,9,0.0 +11098,54,7.45,1,0.0 +11098,20,81,47,0.0 +11098,28,45.6,46,0.0 +11098,60,34,43,0.0 +11098,66,17,5,0.0 +11098,9,97,14,0.0 +11098,42,14,3,0.0 +11098,61,28.5,4,0.0 +11098,12,38,42,0.0 +11098,68,12.5,8,0.0 +11098,14,23.25,30,0.0 +11099,74,10,28,0.0 +11099,3,10,10,0.0 +11099,52,7,48,0.0 +11099,32,32,24,0.0 +11099,72,34.8,33,0.0 +11099,30,25.89,25,0.0 +11099,41,9.65,7,0.0 +11099,35,18,30,0.0 +11099,1,18,12,0.0 +11099,51,53,34,0.0 +11099,73,15,7,0.0 +11099,50,16.25,12,0.0 +11099,57,19.5,28,0.0 +11099,48,12.75,22,0.0 +11099,4,22,22,0.0 +11099,58,13.25,35,0.0 +11099,18,62.5,13,0.0 +11099,26,31.23,27,0.0 +11099,11,21,42,0.0 +11099,59,55,23,0.0 +11099,43,46,5,0.0 +11099,10,31,18,0.0 +11100,70,15,28,0.0 +11100,42,14,46,0.0 +11100,45,9.5,22,0.0 +11100,51,53,50,0.0 +11100,35,18,13,0.0 +11100,26,31.23,21,0.0 +11100,33,2.5,44,0.0 +11100,34,14,28,0.0 +11100,38,263.5,27,0.0 +11100,28,45.6,26,0.0 +11100,6,25,24,0.0 +11100,24,4.5,32,0.0 +11100,18,62.5,4,0.0 +11100,44,19.45,45,0.0 +11100,23,9,31,0.0 +11100,36,19,34,0.0 +11100,66,17,15,0.0 +11100,48,12.75,23,0.0 +11100,69,36,22,0.0 +11100,8,40,43,0.0 +11100,71,21.5,7,0.0 +11100,14,23.25,39,0.0 +11100,32,32,22,0.0 +11100,10,31,1,0.0 +11100,46,12,50,0.0 +11100,37,26,37,0.0 +11100,72,34.8,7,0.0 +11100,76,18,6,0.0 +11100,65,21.05,25,0.0 +11100,11,21,28,0.0 +11100,12,38,37,0.0 +11100,55,24,38,0.0 +11100,67,14,37,0.0 +11100,77,13,10,0.0 +11100,39,18,38,0.0 +11100,22,21,23,0.0 +11100,68,12.5,35,0.0 +11100,20,81,9,0.0 +11100,13,6,6,0.0 +11100,50,16.25,19,0.0 +11100,7,30,29,0.0 +11100,25,14,21,0.0 +11100,1,18,49,0.0 +11100,29,123.79,10,0.0 +11100,62,49.3,9,0.0 +11100,53,32.8,9,0.0 +11100,49,20,22,0.0 +11100,2,19,41,0.0 +11100,40,18.4,12,0.0 +11100,19,9.2,9,0.0 +11100,43,46,37,0.0 +11100,41,9.65,42,0.0 +11100,61,28.5,6,0.0 +11100,30,25.89,42,0.0 +11100,27,43.9,4,0.0 +11100,74,10,49,0.0 +11100,64,33.25,40,0.0 +11100,3,10,28,0.0 +11100,47,9.5,37,0.0 +11100,15,15.5,43,0.0 +11100,17,39,18,0.0 +11100,5,21.35,11,0.0 +11100,9,97,48,0.0 +11100,59,55,44,0.0 +11101,38,263.5,46,0.0 +11101,11,21,33,0.0 +11101,65,21.05,3,0.0 +11101,44,19.45,5,0.0 +11101,21,10,1,0.0 +11101,22,21,2,0.0 +11101,14,23.25,34,0.0 +11101,48,12.75,39,0.0 +11101,62,49.3,14,0.0 +11101,29,123.79,1,0.0 +11101,2,19,16,0.0 +11101,24,4.5,24,0.0 +11101,6,25,27,0.0 +11101,66,17,18,0.0 +11101,26,31.23,19,0.0 +11101,20,81,39,0.0 +11101,47,9.5,22,0.0 +11101,10,31,44,0.0 +11101,53,32.8,9,0.0 +11101,34,14,3,0.0 +11101,46,12,49,0.0 +11101,49,20,3,0.0 +11101,23,9,23,0.0 +11101,8,40,14,0.0 +11101,76,18,16,0.0 +11101,33,2.5,22,0.0 +11101,4,22,13,0.0 +11101,52,7,8,0.0 +11101,12,38,48,0.0 +11101,74,10,43,0.0 +11102,34,14,3,0.0 +11102,33,2.5,13,0.0 +11102,68,12.5,48,0.0 +11102,16,17.45,34,0.0 +11102,58,13.25,30,0.0 +11102,1,18,20,0.0 +11102,67,14,47,0.0 +11102,52,7,36,0.0 +11102,5,21.35,33,0.0 +11102,28,45.6,19,0.0 +11102,55,24,46,0.0 +11102,61,28.5,8,0.0 +11102,72,34.8,50,0.0 +11102,48,12.75,19,0.0 +11102,4,22,15,0.0 +11102,2,19,18,0.0 +11102,23,9,40,0.0 +11102,39,18,43,0.0 +11102,27,43.9,10,0.0 +11102,46,12,42,0.0 +11102,75,7.75,13,0.0 +11102,19,9.2,31,0.0 +11102,26,31.23,34,0.0 +11102,60,34,2,0.0 +11102,38,263.5,29,0.0 +11102,40,18.4,39,0.0 +11102,35,18,44,0.0 +11102,29,123.79,48,0.0 +11102,57,19.5,24,0.0 +11102,47,9.5,45,0.0 +11102,64,33.25,13,0.0 +11102,44,19.45,36,0.0 +11102,77,13,31,0.0 +11103,54,7.45,39,0.0 +11103,64,33.25,33,0.0 +11103,43,46,44,0.0 +11103,6,25,10,0.0 +11103,9,97,21,0.0 +11103,42,14,8,0.0 +11103,38,263.5,15,0.0 +11103,69,36,2,0.0 +11103,25,14,9,0.0 +11103,35,18,5,0.0 +11103,68,12.5,5,0.0 +11103,33,2.5,46,0.0 +11103,77,13,12,0.0 +11103,53,32.8,6,0.0 +11103,18,62.5,1,0.0 +11103,22,21,35,0.0 +11103,58,13.25,36,0.0 +11103,61,28.5,23,0.0 +11103,48,12.75,9,0.0 +11103,76,18,34,0.0 +11103,39,18,8,0.0 +11103,31,12.5,44,0.0 +11103,20,81,48,0.0 +11103,49,20,2,0.0 +11103,14,23.25,33,0.0 +11103,28,45.6,30,0.0 +11103,73,15,38,0.0 +11103,26,31.23,20,0.0 +11103,15,15.5,16,0.0 +11103,30,25.89,12,0.0 +11103,7,30,18,0.0 +11103,37,26,19,0.0 +11103,67,14,43,0.0 +11103,52,7,50,0.0 +11103,41,9.65,20,0.0 +11103,46,12,31,0.0 +11103,66,17,6,0.0 +11103,17,39,30,0.0 +11103,72,34.8,7,0.0 +11103,36,19,14,0.0 +11103,44,19.45,4,0.0 +11103,32,32,22,0.0 +11103,65,21.05,47,0.0 +11103,63,43.9,13,0.0 +11103,60,34,49,0.0 +11103,62,49.3,27,0.0 +11103,57,19.5,33,0.0 +11103,29,123.79,6,0.0 +11103,70,15,8,0.0 +11103,13,6,25,0.0 +11103,12,38,34,0.0 +11103,40,18.4,35,0.0 +11103,45,9.5,37,0.0 +11103,5,21.35,28,0.0 +11103,4,22,14,0.0 +11103,71,21.5,12,0.0 +11103,74,10,5,0.0 +11103,59,55,48,0.0 +11103,11,21,8,0.0 +11103,16,17.45,46,0.0 +11103,75,7.75,45,0.0 +11103,19,9.2,8,0.0 +11103,51,53,42,0.0 +11103,1,18,9,0.0 +11103,21,10,34,0.0 +11103,10,31,46,0.0 +11103,8,40,15,0.0 +11103,23,9,24,0.0 +11103,56,38,12,0.0 +11103,47,9.5,22,0.0 +11104,71,21.5,28,0.0 +11104,72,34.8,5,0.0 +11104,32,32,16,0.0 +11104,16,17.45,31,0.0 +11104,66,17,10,0.0 +11104,31,12.5,20,0.0 +11104,42,14,7,0.0 +11104,48,12.75,26,0.0 +11105,65,21.05,28,0.0 +11105,7,30,31,0.0 +11105,12,38,6,0.0 +11105,36,19,47,0.0 +11105,8,40,20,0.0 +11105,35,18,28,0.0 +11105,41,9.65,48,0.0 +11105,71,21.5,40,0.0 +11105,66,17,45,0.0 +11105,67,14,36,0.0 +11105,21,10,39,0.0 +11105,16,17.45,7,0.0 +11105,31,12.5,41,0.0 +11105,60,34,13,0.0 +11105,49,20,1,0.0 +11105,2,19,20,0.0 +11105,75,7.75,50,0.0 +11105,39,18,21,0.0 +11105,17,39,1,0.0 +11105,10,31,14,0.0 +11105,77,13,9,0.0 +11105,30,25.89,3,0.0 +11105,27,43.9,48,0.0 +11105,29,123.79,27,0.0 +11105,58,13.25,14,0.0 +11105,5,21.35,26,0.0 +11105,45,9.5,34,0.0 +11105,28,45.6,46,0.0 +11105,43,46,7,0.0 +11105,73,15,2,0.0 +11105,57,19.5,1,0.0 +11105,1,18,27,0.0 +11105,32,32,5,0.0 +11105,61,28.5,48,0.0 +11105,59,55,23,0.0 +11105,72,34.8,28,0.0 +11105,51,53,38,0.0 +11105,24,4.5,15,0.0 +11105,37,26,47,0.0 +11105,64,33.25,50,0.0 +11105,74,10,24,0.0 +11105,23,9,35,0.0 +11105,56,38,35,0.0 +11105,25,14,17,0.0 +11105,62,49.3,29,0.0 +11105,15,15.5,27,0.0 +11105,46,12,39,0.0 +11105,18,62.5,1,0.0 +11105,40,18.4,45,0.0 +11105,38,263.5,31,0.0 +11105,68,12.5,32,0.0 +11105,4,22,30,0.0 +11105,44,19.45,23,0.0 +11105,54,7.45,33,0.0 +11105,63,43.9,12,0.0 +11105,42,14,43,0.0 +11105,26,31.23,20,0.0 +11105,47,9.5,27,0.0 +11105,9,97,39,0.0 +11105,48,12.75,27,0.0 +11105,20,81,32,0.0 +11105,52,7,25,0.0 +11105,55,24,33,0.0 +11105,76,18,20,0.0 +11105,19,9.2,26,0.0 +11105,22,21,49,0.0 +11105,69,36,6,0.0 +11105,50,16.25,23,0.0 +11105,34,14,31,0.0 +11105,70,15,17,0.0 +11105,53,32.8,14,0.0 +11105,3,10,40,0.0 +11105,13,6,20,0.0 +11105,14,23.25,49,0.0 +11105,33,2.5,50,0.0 +11105,11,21,21,0.0 +11106,63,43.9,25,0.0 +11106,52,7,8,0.0 +11106,44,19.45,10,0.0 +11106,30,25.89,50,0.0 +11106,17,39,48,0.0 +11106,60,34,44,0.0 +11106,29,123.79,40,0.0 +11106,8,40,4,0.0 +11106,35,18,32,0.0 +11106,19,9.2,34,0.0 +11106,61,28.5,21,0.0 +11106,33,2.5,22,0.0 +11106,48,12.75,32,0.0 +11106,49,20,35,0.0 +11107,63,43.9,4,0.0 +11107,73,15,20,0.0 +11107,77,13,7,0.0 +11107,43,46,1,0.0 +11107,75,7.75,10,0.0 +11107,68,12.5,8,0.0 +11107,8,40,24,0.0 +11107,67,14,41,0.0 +11107,20,81,24,0.0 +11107,42,14,35,0.0 +11107,71,21.5,6,0.0 +11107,26,31.23,28,0.0 +11107,44,19.45,41,0.0 +11107,13,6,31,0.0 +11107,53,32.8,45,0.0 +11107,61,28.5,48,0.0 +11107,37,26,37,0.0 +11107,35,18,22,0.0 +11107,62,49.3,43,0.0 +11107,16,17.45,34,0.0 +11107,65,21.05,41,0.0 +11107,72,34.8,42,0.0 +11107,29,123.79,45,0.0 +11107,48,12.75,50,0.0 +11107,12,38,48,0.0 +11107,66,17,48,0.0 +11107,31,12.5,9,0.0 +11107,24,4.5,12,0.0 +11107,28,45.6,13,0.0 +11107,15,15.5,23,0.0 +11107,49,20,9,0.0 +11107,3,10,26,0.0 +11107,9,97,50,0.0 +11107,11,21,27,0.0 +11107,41,9.65,12,0.0 +11107,19,9.2,1,0.0 +11107,6,25,4,0.0 +11107,59,55,21,0.0 +11107,21,10,12,0.0 +11107,33,2.5,37,0.0 +11107,14,23.25,45,0.0 +11107,40,18.4,20,0.0 +11107,64,33.25,20,0.0 +11107,18,62.5,34,0.0 +11107,74,10,39,0.0 +11107,25,14,23,0.0 +11107,17,39,7,0.0 +11107,46,12,5,0.0 +11107,32,32,39,0.0 +11107,7,30,4,0.0 +11107,30,25.89,48,0.0 +11107,60,34,18,0.0 +11107,10,31,11,0.0 +11107,22,21,16,0.0 +11107,5,21.35,40,0.0 +11107,70,15,31,0.0 +11107,2,19,38,0.0 +11107,52,7,8,0.0 +11107,36,19,10,0.0 +11107,69,36,6,0.0 +11107,55,24,19,0.0 +11107,54,7.45,36,0.0 +11107,23,9,47,0.0 +11107,76,18,46,0.0 +11107,51,53,20,0.0 +11107,34,14,8,0.0 +11107,38,263.5,35,0.0 +11107,56,38,8,0.0 +11108,48,12.75,42,0.0 +11108,73,15,11,0.0 +11108,43,46,24,0.0 +11108,22,21,29,0.0 +11108,4,22,39,0.0 +11108,69,36,7,0.0 +11108,2,19,40,0.0 +11108,77,13,27,0.0 +11108,1,18,10,0.0 +11108,9,97,43,0.0 +11108,19,9.2,50,0.0 +11108,28,45.6,7,0.0 +11108,66,17,18,0.0 +11108,74,10,32,0.0 +11108,32,32,45,0.0 +11108,49,20,3,0.0 +11108,40,18.4,22,0.0 +11108,13,6,29,0.0 +11108,23,9,22,0.0 +11108,21,10,32,0.0 +11108,67,14,38,0.0 +11108,35,18,1,0.0 +11108,34,14,32,0.0 +11108,57,19.5,10,0.0 +11108,56,38,19,0.0 +11108,27,43.9,37,0.0 +11108,12,38,16,0.0 +11108,26,31.23,27,0.0 +11108,72,34.8,30,0.0 +11108,8,40,15,0.0 +11108,59,55,11,0.0 +11108,62,49.3,10,0.0 +11108,55,24,14,0.0 +11108,37,26,17,0.0 +11108,31,12.5,29,0.0 +11108,58,13.25,35,0.0 +11108,41,9.65,13,0.0 +11108,46,12,44,0.0 +11108,42,14,2,0.0 +11108,18,62.5,47,0.0 +11108,60,34,6,0.0 +11109,27,43.9,29,0.0 +11109,15,15.5,2,0.0 +11109,51,53,7,0.0 +11109,24,4.5,45,0.0 +11109,10,31,29,0.0 +11110,41,9.65,49,0.0 +11110,64,33.25,14,0.0 +11110,42,14,28,0.0 +11110,51,53,10,0.0 +11110,70,15,29,0.0 +11110,35,18,16,0.0 +11110,17,39,18,0.0 +11110,14,23.25,45,0.0 +11110,69,36,46,0.0 +11110,72,34.8,29,0.0 +11110,39,18,16,0.0 +11110,48,12.75,19,0.0 +11110,32,32,43,0.0 +11110,73,15,48,0.0 +11110,16,17.45,22,0.0 +11110,38,263.5,36,0.0 +11110,30,25.89,8,0.0 +11110,24,4.5,15,0.0 +11110,20,81,26,0.0 +11110,46,12,29,0.0 +11110,5,21.35,27,0.0 +11110,26,31.23,9,0.0 +11110,47,9.5,14,0.0 +11110,40,18.4,40,0.0 +11110,27,43.9,40,0.0 +11110,21,10,43,0.0 +11110,71,21.5,34,0.0 +11110,12,38,4,0.0 +11110,15,15.5,30,0.0 +11110,2,19,24,0.0 +11110,74,10,10,0.0 +11110,67,14,9,0.0 +11110,37,26,35,0.0 +11110,49,20,49,0.0 +11110,65,21.05,8,0.0 +11110,58,13.25,48,0.0 +11110,62,49.3,41,0.0 +11110,44,19.45,31,0.0 +11111,17,39,1,0.0 +11111,52,7,7,0.0 +11111,75,7.75,15,0.0 +11111,15,15.5,20,0.0 +11111,36,19,32,0.0 +11111,60,34,6,0.0 +11111,42,14,31,0.0 +11111,59,55,36,0.0 +11111,62,49.3,37,0.0 +11111,19,9.2,47,0.0 +11111,21,10,32,0.0 +11111,8,40,7,0.0 +11111,35,18,15,0.0 +11111,77,13,23,0.0 +11111,12,38,35,0.0 +11111,20,81,20,0.0 +11111,24,4.5,32,0.0 +11111,25,14,38,0.0 +11111,26,31.23,11,0.0 +11111,14,23.25,5,0.0 +11111,34,14,1,0.0 +11111,32,32,9,0.0 +11111,4,22,10,0.0 +11111,53,32.8,29,0.0 +11111,5,21.35,25,0.0 +11111,37,26,7,0.0 +11111,67,14,13,0.0 +11111,22,21,33,0.0 +11111,30,25.89,27,0.0 +11111,16,17.45,25,0.0 +11111,47,9.5,15,0.0 +11111,27,43.9,40,0.0 +11111,50,16.25,44,0.0 +11111,51,53,11,0.0 +11111,1,18,21,0.0 +11111,6,25,20,0.0 +11111,33,2.5,8,0.0 +11111,18,62.5,48,0.0 +11111,63,43.9,44,0.0 +11111,3,10,22,0.0 +11111,31,12.5,31,0.0 +11111,10,31,23,0.0 +11111,76,18,6,0.0 +11111,29,123.79,6,0.0 +11111,74,10,37,0.0 +11111,49,20,7,0.0 +11111,41,9.65,39,0.0 +11111,38,263.5,17,0.0 +11111,48,12.75,48,0.0 +11111,57,19.5,45,0.0 +11111,28,45.6,46,0.0 +11111,68,12.5,50,0.0 +11111,65,21.05,39,0.0 +11111,70,15,3,0.0 +11111,44,19.45,44,0.0 +11111,54,7.45,43,0.0 +11111,39,18,16,0.0 +11111,2,19,20,0.0 +11111,71,21.5,35,0.0 +11111,45,9.5,18,0.0 +11111,61,28.5,13,0.0 +11111,56,38,23,0.0 +11111,69,36,24,0.0 +11111,58,13.25,2,0.0 +11111,66,17,38,0.0 +11111,64,33.25,35,0.0 +11111,11,21,50,0.0 +11111,73,15,39,0.0 +11111,72,34.8,7,0.0 +11111,55,24,48,0.0 +11111,7,30,41,0.0 +11111,9,97,11,0.0 +11111,43,46,9,0.0 +11111,13,6,32,0.0 +11112,52,7,32,0.0 +11112,28,45.6,4,0.0 +11112,10,31,17,0.0 +11112,51,53,27,0.0 +11112,9,97,32,0.0 +11112,66,17,39,0.0 +11112,72,34.8,32,0.0 +11112,15,15.5,6,0.0 +11112,1,18,2,0.0 +11112,46,12,36,0.0 +11112,48,12.75,46,0.0 +11112,70,15,13,0.0 +11112,39,18,33,0.0 +11112,71,21.5,3,0.0 +11112,47,9.5,44,0.0 +11112,30,25.89,45,0.0 +11112,64,33.25,48,0.0 +11112,7,30,40,0.0 +11112,68,12.5,1,0.0 +11112,54,7.45,21,0.0 +11112,27,43.9,14,0.0 +11112,20,81,27,0.0 +11112,14,23.25,1,0.0 +11112,37,26,7,0.0 +11112,17,39,8,0.0 +11112,43,46,44,0.0 +11112,63,43.9,44,0.0 +11112,65,21.05,40,0.0 +11112,77,13,48,0.0 +11112,22,21,27,0.0 +11112,40,18.4,11,0.0 +11112,74,10,25,0.0 +11112,67,14,25,0.0 +11112,29,123.79,19,0.0 +11112,11,21,20,0.0 +11112,18,62.5,3,0.0 +11112,23,9,48,0.0 +11112,75,7.75,43,0.0 +11112,12,38,25,0.0 +11112,16,17.45,41,0.0 +11112,69,36,15,0.0 +11112,21,10,5,0.0 +11112,41,9.65,40,0.0 +11112,53,32.8,48,0.0 +11112,6,25,16,0.0 +11112,49,20,29,0.0 +11112,62,49.3,26,0.0 +11112,44,19.45,17,0.0 +11112,33,2.5,9,0.0 +11112,38,263.5,29,0.0 +11112,57,19.5,19,0.0 +11112,58,13.25,30,0.0 +11112,26,31.23,46,0.0 +11112,60,34,22,0.0 +11112,42,14,44,0.0 +11112,19,9.2,47,0.0 +11112,3,10,9,0.0 +11112,24,4.5,15,0.0 +11112,32,32,16,0.0 +11112,73,15,21,0.0 +11112,56,38,35,0.0 +11112,61,28.5,33,0.0 +11112,8,40,21,0.0 +11112,50,16.25,12,0.0 +11112,5,21.35,33,0.0 +11112,36,19,10,0.0 +11112,13,6,13,0.0 +11112,25,14,32,0.0 +11112,34,14,34,0.0 +11112,55,24,20,0.0 +11112,76,18,40,0.0 +11113,57,19.5,10,0.0 +11113,41,9.65,40,0.0 +11113,46,12,16,0.0 +11113,2,19,2,0.0 +11113,54,7.45,44,0.0 +11113,37,26,40,0.0 +11113,73,15,44,0.0 +11113,66,17,44,0.0 +11113,15,15.5,16,0.0 +11113,35,18,42,0.0 +11113,68,12.5,9,0.0 +11113,75,7.75,19,0.0 +11113,70,15,6,0.0 +11113,49,20,46,0.0 +11113,67,14,41,0.0 +11113,42,14,49,0.0 +11113,52,7,9,0.0 +11113,64,33.25,3,0.0 +11113,60,34,40,0.0 +11113,22,21,21,0.0 +11113,33,2.5,2,0.0 +11113,58,13.25,15,0.0 +11113,45,9.5,8,0.0 +11113,47,9.5,47,0.0 +11113,39,18,25,0.0 +11113,53,32.8,35,0.0 +11113,76,18,14,0.0 +11113,19,9.2,1,0.0 +11113,51,53,32,0.0 +11113,17,39,18,0.0 +11113,30,25.89,11,0.0 +11113,12,38,49,0.0 +11113,55,24,9,0.0 +11113,4,22,28,0.0 +11113,3,10,46,0.0 +11113,26,31.23,14,0.0 +11113,28,45.6,16,0.0 +11113,36,19,50,0.0 +11113,20,81,44,0.0 +11113,6,25,27,0.0 +11113,14,23.25,30,0.0 +11113,23,9,23,0.0 +11113,43,46,35,0.0 +11113,13,6,4,0.0 +11113,29,123.79,12,0.0 +11113,11,21,49,0.0 +11113,50,16.25,36,0.0 +11113,71,21.5,35,0.0 +11113,77,13,32,0.0 +11113,56,38,18,0.0 +11113,38,263.5,18,0.0 +11113,62,49.3,12,0.0 +11113,31,12.5,38,0.0 +11113,63,43.9,26,0.0 +11113,1,18,32,0.0 +11113,24,4.5,49,0.0 +11113,59,55,48,0.0 +11113,69,36,43,0.0 +11113,61,28.5,26,0.0 +11113,9,97,18,0.0 +11113,16,17.45,15,0.0 +11114,62,49.3,12,0.0 +11114,77,13,33,0.0 +11114,22,21,40,0.0 +11114,46,12,33,0.0 +11114,75,7.75,17,0.0 +11114,57,19.5,11,0.0 +11114,7,30,5,0.0 +11114,3,10,23,0.0 +11114,39,18,21,0.0 +11114,59,55,34,0.0 +11114,14,23.25,5,0.0 +11114,9,97,15,0.0 +11114,48,12.75,40,0.0 +11115,77,13,45,0.0 +11115,35,18,2,0.0 +11115,4,22,19,0.0 +11115,30,25.89,25,0.0 +11115,3,10,13,0.0 +11115,1,18,30,0.0 +11115,39,18,3,0.0 +11115,74,10,9,0.0 +11115,18,62.5,40,0.0 +11115,16,17.45,11,0.0 +11115,21,10,23,0.0 +11115,44,19.45,35,0.0 +11115,13,6,9,0.0 +11115,66,17,9,0.0 +11115,71,21.5,32,0.0 +11115,32,32,44,0.0 +11115,58,13.25,35,0.0 +11115,28,45.6,31,0.0 +11115,26,31.23,23,0.0 +11115,75,7.75,11,0.0 +11115,34,14,18,0.0 +11115,25,14,27,0.0 +11115,52,7,47,0.0 +11115,36,19,47,0.0 +11115,67,14,31,0.0 +11115,11,21,9,0.0 +11115,76,18,48,0.0 +11115,70,15,31,0.0 +11115,12,38,40,0.0 +11115,68,12.5,37,0.0 +11115,7,30,11,0.0 +11115,49,20,33,0.0 +11115,14,23.25,35,0.0 +11115,2,19,46,0.0 +11115,37,26,8,0.0 +11115,22,21,23,0.0 +11115,6,25,50,0.0 +11115,15,15.5,29,0.0 +11115,59,55,12,0.0 +11115,63,43.9,16,0.0 +11115,50,16.25,1,0.0 +11115,5,21.35,1,0.0 +11115,9,97,38,0.0 +11115,64,33.25,38,0.0 +11115,61,28.5,46,0.0 +11115,72,34.8,30,0.0 +11115,43,46,29,0.0 +11115,69,36,48,0.0 +11115,42,14,49,0.0 +11115,27,43.9,36,0.0 +11115,23,9,33,0.0 +11115,62,49.3,43,0.0 +11115,33,2.5,6,0.0 +11115,8,40,27,0.0 +11115,19,9.2,10,0.0 +11115,57,19.5,10,0.0 +11115,47,9.5,37,0.0 +11115,46,12,15,0.0 +11115,73,15,34,0.0 +11115,60,34,7,0.0 +11115,38,263.5,33,0.0 +11115,24,4.5,1,0.0 +11115,55,24,13,0.0 +11115,45,9.5,39,0.0 +11115,51,53,24,0.0 +11115,41,9.65,4,0.0 +11115,20,81,7,0.0 +11115,40,18.4,45,0.0 +11115,10,31,35,0.0 +11115,17,39,12,0.0 +11116,51,53,33,0.0 +11116,36,19,7,0.0 +11116,44,19.45,20,0.0 +11116,22,21,25,0.0 +11116,2,19,49,0.0 +11116,67,14,24,0.0 +11116,75,7.75,3,0.0 +11116,4,22,34,0.0 +11116,50,16.25,32,0.0 +11116,9,97,33,0.0 +11116,16,17.45,36,0.0 +11116,72,34.8,31,0.0 +11116,25,14,44,0.0 +11116,60,34,32,0.0 +11116,8,40,18,0.0 +11116,68,12.5,49,0.0 +11116,59,55,49,0.0 +11116,64,33.25,19,0.0 +11116,43,46,29,0.0 +11116,48,12.75,24,0.0 +11116,54,7.45,8,0.0 +11116,21,10,49,0.0 +11116,77,13,36,0.0 +11116,71,21.5,27,0.0 +11116,26,31.23,7,0.0 +11116,30,25.89,27,0.0 +11116,33,2.5,1,0.0 +11116,40,18.4,18,0.0 +11116,3,10,4,0.0 +11116,57,19.5,41,0.0 +11116,39,18,12,0.0 +11116,14,23.25,30,0.0 +11116,45,9.5,25,0.0 +11116,27,43.9,15,0.0 +11116,66,17,36,0.0 +11116,11,21,37,0.0 +11116,76,18,45,0.0 +11116,58,13.25,6,0.0 +11116,12,38,30,0.0 +11116,34,14,48,0.0 +11116,1,18,25,0.0 +11116,61,28.5,18,0.0 +11116,7,30,22,0.0 +11116,19,9.2,13,0.0 +11116,46,12,38,0.0 +11116,6,25,4,0.0 +11116,17,39,27,0.0 +11116,29,123.79,48,0.0 +11116,28,45.6,30,0.0 +11116,62,49.3,7,0.0 +11116,18,62.5,38,0.0 +11116,63,43.9,36,0.0 +11116,38,263.5,15,0.0 +11116,56,38,25,0.0 +11116,42,14,31,0.0 +11116,24,4.5,48,0.0 +11116,31,12.5,12,0.0 +11116,74,10,3,0.0 +11116,5,21.35,37,0.0 +11116,53,32.8,31,0.0 +11116,20,81,37,0.0 +11116,35,18,18,0.0 +11116,69,36,26,0.0 +11116,13,6,25,0.0 +11116,23,9,43,0.0 +11116,32,32,22,0.0 +11116,73,15,35,0.0 +11116,70,15,10,0.0 +11116,10,31,3,0.0 +11116,41,9.65,3,0.0 +11116,55,24,44,0.0 +11117,6,25,15,0.0 +11117,43,46,40,0.0 +11117,55,24,10,0.0 +11117,20,81,28,0.0 +11117,77,13,50,0.0 +11117,11,21,19,0.0 +11117,45,9.5,48,0.0 +11117,59,55,29,0.0 +11117,42,14,33,0.0 +11117,37,26,28,0.0 +11117,73,15,27,0.0 +11117,29,123.79,29,0.0 +11117,9,97,14,0.0 +11117,16,17.45,2,0.0 +11117,75,7.75,44,0.0 +11117,27,43.9,48,0.0 +11117,19,9.2,41,0.0 +11117,76,18,1,0.0 +11117,39,18,3,0.0 +11118,29,123.79,17,0.0 +11118,77,13,45,0.0 +11118,37,26,30,0.0 +11118,76,18,2,0.0 +11118,10,31,32,0.0 +11118,24,4.5,17,0.0 +11118,54,7.45,44,0.0 +11118,5,21.35,38,0.0 +11118,60,34,22,0.0 +11118,7,30,13,0.0 +11118,19,9.2,21,0.0 +11118,9,97,22,0.0 +11118,74,10,38,0.0 +11118,66,17,13,0.0 +11118,49,20,48,0.0 +11118,46,12,49,0.0 +11118,73,15,20,0.0 +11118,47,9.5,5,0.0 +11118,43,46,12,0.0 +11118,11,21,30,0.0 +11118,72,34.8,26,0.0 +11118,69,36,4,0.0 +11118,51,53,41,0.0 +11118,1,18,38,0.0 +11118,61,28.5,35,0.0 +11118,36,19,27,0.0 +11118,58,13.25,14,0.0 +11118,45,9.5,20,0.0 +11118,12,38,40,0.0 +11118,2,19,15,0.0 +11118,52,7,37,0.0 +11118,30,25.89,42,0.0 +11118,28,45.6,23,0.0 +11118,22,21,8,0.0 +11118,56,38,8,0.0 +11118,18,62.5,9,0.0 +11118,6,25,20,0.0 +11118,32,32,21,0.0 +11119,70,15,39,0.0 +11119,52,7,50,0.0 +11119,2,19,2,0.0 +11119,3,10,8,0.0 +11119,77,13,6,0.0 +11119,28,45.6,34,0.0 +11119,25,14,14,0.0 +11119,18,62.5,32,0.0 +11119,24,4.5,19,0.0 +11119,39,18,37,0.0 +11119,56,38,12,0.0 +11119,71,21.5,3,0.0 +11119,61,28.5,35,0.0 +11119,46,12,4,0.0 +11119,12,38,21,0.0 +11119,10,31,28,0.0 +11119,42,14,3,0.0 +11119,57,19.5,49,0.0 +11119,63,43.9,7,0.0 +11119,14,23.25,43,0.0 +11119,37,26,13,0.0 +11119,64,33.25,26,0.0 +11119,54,7.45,25,0.0 +11120,7,30,4,0.0 +11120,8,40,25,0.0 +11120,11,21,10,0.0 +11120,47,9.5,10,0.0 +11120,68,12.5,44,0.0 +11121,49,20,49,0.0 +11121,57,19.5,15,0.0 +11121,62,49.3,21,0.0 +11121,11,21,16,0.0 +11121,14,23.25,14,0.0 +11121,65,21.05,33,0.0 +11121,26,31.23,11,0.0 +11121,77,13,46,0.0 +11121,66,17,4,0.0 +11121,36,19,48,0.0 +11121,54,7.45,16,0.0 +11121,7,30,41,0.0 +11121,6,25,28,0.0 +11121,68,12.5,41,0.0 +11121,56,38,28,0.0 +11121,9,97,15,0.0 +11121,18,62.5,26,0.0 +11121,3,10,18,0.0 +11121,52,7,25,0.0 +11121,21,10,19,0.0 +11121,48,12.75,48,0.0 +11121,33,2.5,7,0.0 +11121,43,46,8,0.0 +11121,16,17.45,43,0.0 +11121,29,123.79,5,0.0 +11121,38,263.5,37,0.0 +11121,28,45.6,15,0.0 +11121,31,12.5,3,0.0 +11121,8,40,14,0.0 +11121,39,18,20,0.0 +11121,59,55,27,0.0 +11121,42,14,22,0.0 +11121,55,24,46,0.0 +11121,37,26,9,0.0 +11121,75,7.75,4,0.0 +11121,19,9.2,39,0.0 +11121,30,25.89,47,0.0 +11121,5,21.35,34,0.0 +11121,2,19,15,0.0 +11121,58,13.25,3,0.0 +11121,53,32.8,27,0.0 +11121,34,14,4,0.0 +11121,17,39,15,0.0 +11121,60,34,27,0.0 +11121,71,21.5,27,0.0 +11121,23,9,7,0.0 +11121,12,38,35,0.0 +11121,64,33.25,35,0.0 +11121,15,15.5,40,0.0 +11121,10,31,32,0.0 +11121,50,16.25,10,0.0 +11121,63,43.9,48,0.0 +11121,13,6,18,0.0 +11121,1,18,28,0.0 +11121,61,28.5,43,0.0 +11121,72,34.8,1,0.0 +11121,20,81,17,0.0 +11121,70,15,26,0.0 +11122,15,15.5,2,0.0 +11122,61,28.5,38,0.0 +11123,18,62.5,17,0.0 +11123,32,32,14,0.0 +11123,26,31.23,28,0.0 +11123,8,40,19,0.0 +11123,57,19.5,9,0.0 +11123,3,10,10,0.0 +11123,24,4.5,23,0.0 +11123,51,53,13,0.0 +11123,41,9.65,50,0.0 +11123,73,15,8,0.0 +11123,19,9.2,26,0.0 +11123,15,15.5,5,0.0 +11123,45,9.5,13,0.0 +11123,58,13.25,1,0.0 +11124,55,24,41,0.0 +11124,41,9.65,2,0.0 +11124,13,6,45,0.0 +11124,6,25,32,0.0 +11124,69,36,47,0.0 +11124,36,19,20,0.0 +11124,49,20,40,0.0 +11124,45,9.5,10,0.0 +11124,32,32,40,0.0 +11124,60,34,21,0.0 +11124,53,32.8,37,0.0 +11124,25,14,36,0.0 +11124,38,263.5,45,0.0 +11124,14,23.25,3,0.0 +11124,7,30,25,0.0 +11124,26,31.23,38,0.0 +11124,1,18,3,0.0 +11124,15,15.5,37,0.0 +11124,59,55,39,0.0 +11124,30,25.89,23,0.0 +11124,27,43.9,17,0.0 +11124,9,97,34,0.0 +11124,75,7.75,19,0.0 +11124,12,38,16,0.0 +11124,46,12,10,0.0 +11124,64,33.25,40,0.0 +11124,22,21,45,0.0 +11124,50,16.25,9,0.0 +11124,44,19.45,17,0.0 +11124,4,22,18,0.0 +11124,73,15,39,0.0 +11124,67,14,43,0.0 +11124,70,15,24,0.0 +11124,37,26,49,0.0 +11124,3,10,43,0.0 +11124,61,28.5,5,0.0 +11124,54,7.45,40,0.0 +11124,21,10,50,0.0 +11124,35,18,3,0.0 +11124,34,14,13,0.0 +11124,66,17,6,0.0 +11124,2,19,46,0.0 +11124,72,34.8,28,0.0 +11124,65,21.05,49,0.0 +11124,10,31,25,0.0 +11124,48,12.75,12,0.0 +11124,23,9,15,0.0 +11124,68,12.5,15,0.0 +11124,56,38,37,0.0 +11124,63,43.9,11,0.0 +11124,57,19.5,37,0.0 +11124,58,13.25,6,0.0 +11124,39,18,42,0.0 +11124,5,21.35,15,0.0 +11124,19,9.2,8,0.0 +11124,11,21,38,0.0 +11124,47,9.5,48,0.0 +11124,76,18,13,0.0 +11124,31,12.5,39,0.0 +11124,18,62.5,47,0.0 +11124,52,7,40,0.0 +11124,77,13,2,0.0 +11124,8,40,7,0.0 +11124,17,39,39,0.0 +11124,24,4.5,45,0.0 +11125,9,97,30,0.0 +11125,51,53,16,0.0 +11125,77,13,5,0.0 +11125,54,7.45,37,0.0 +11125,74,10,13,0.0 +11125,49,20,12,0.0 +11125,1,18,29,0.0 +11125,67,14,15,0.0 +11125,41,9.65,22,0.0 +11125,38,263.5,10,0.0 +11125,76,18,27,0.0 +11125,48,12.75,32,0.0 +11125,57,19.5,18,0.0 +11125,39,18,17,0.0 +11125,17,39,26,0.0 +11125,73,15,25,0.0 +11125,14,23.25,18,0.0 +11125,26,31.23,49,0.0 +11125,5,21.35,21,0.0 +11125,61,28.5,15,0.0 +11125,59,55,48,0.0 +11125,36,19,43,0.0 +11125,22,21,20,0.0 +11126,11,21,13,0.0 +11126,34,14,12,0.0 +11126,58,13.25,32,0.0 +11126,47,9.5,4,0.0 +11126,70,15,28,0.0 +11126,72,34.8,16,0.0 +11126,23,9,1,0.0 +11126,39,18,45,0.0 +11127,59,55,23,0.0 +11127,77,13,17,0.0 +11127,52,7,10,0.0 +11127,47,9.5,7,0.0 +11127,68,12.5,19,0.0 +11127,13,6,47,0.0 +11127,60,34,27,0.0 +11127,7,30,39,0.0 +11127,75,7.75,28,0.0 +11127,46,12,32,0.0 +11127,33,2.5,29,0.0 +11127,29,123.79,1,0.0 +11127,15,15.5,43,0.0 +11127,61,28.5,35,0.0 +11127,18,62.5,17,0.0 +11127,2,19,35,0.0 +11127,23,9,34,0.0 +11127,11,21,32,0.0 +11127,41,9.65,18,0.0 +11127,58,13.25,44,0.0 +11127,22,21,4,0.0 +11127,65,21.05,4,0.0 +11127,51,53,46,0.0 +11127,3,10,34,0.0 +11127,69,36,33,0.0 +11128,7,30,22,0.0 +11128,56,38,35,0.0 +11128,25,14,23,0.0 +11128,13,6,44,0.0 +11128,8,40,3,0.0 +11128,67,14,35,0.0 +11128,64,33.25,9,0.0 +11128,15,15.5,32,0.0 +11128,29,123.79,49,0.0 +11128,16,17.45,12,0.0 +11128,26,31.23,29,0.0 +11128,9,97,19,0.0 +11128,36,19,35,0.0 +11128,23,9,29,0.0 +11128,51,53,4,0.0 +11128,17,39,24,0.0 +11128,69,36,45,0.0 +11128,24,4.5,8,0.0 +11128,58,13.25,22,0.0 +11128,53,32.8,34,0.0 +11128,3,10,23,0.0 +11128,70,15,34,0.0 +11128,2,19,45,0.0 +11128,34,14,14,0.0 +11128,45,9.5,22,0.0 +11128,62,49.3,18,0.0 +11128,52,7,50,0.0 +11128,63,43.9,4,0.0 +11128,12,38,27,0.0 +11128,19,9.2,21,0.0 +11128,77,13,41,0.0 +11128,73,15,28,0.0 +11128,20,81,5,0.0 +11128,68,12.5,18,0.0 +11128,10,31,27,0.0 +11128,49,20,26,0.0 +11128,76,18,13,0.0 +11128,32,32,22,0.0 +11128,75,7.75,43,0.0 +11128,31,12.5,13,0.0 +11128,65,21.05,37,0.0 +11128,33,2.5,33,0.0 +11128,57,19.5,41,0.0 +11128,5,21.35,27,0.0 +11128,59,55,49,0.0 +11128,37,26,20,0.0 +11128,30,25.89,41,0.0 +11128,38,263.5,1,0.0 +11128,21,10,43,0.0 +11128,60,34,45,0.0 +11128,42,14,43,0.0 +11128,41,9.65,39,0.0 +11128,71,21.5,23,0.0 +11128,74,10,46,0.0 +11128,22,21,38,0.0 +11128,43,46,3,0.0 +11128,72,34.8,41,0.0 +11128,28,45.6,42,0.0 +11128,47,9.5,43,0.0 +11128,55,24,13,0.0 +11128,40,18.4,17,0.0 +11128,66,17,11,0.0 +11128,18,62.5,38,0.0 +11128,1,18,18,0.0 +11128,50,16.25,16,0.0 +11128,46,12,46,0.0 +11129,77,13,32,0.0 +11129,52,7,11,0.0 +11129,46,12,30,0.0 +11129,8,40,20,0.0 +11129,57,19.5,31,0.0 +11129,26,31.23,31,0.0 +11129,70,15,10,0.0 +11129,25,14,23,0.0 +11129,2,19,47,0.0 +11129,14,23.25,24,0.0 +11129,3,10,26,0.0 +11129,43,46,24,0.0 +11129,41,9.65,26,0.0 +11129,23,9,6,0.0 +11129,20,81,12,0.0 +11129,44,19.45,30,0.0 +11129,39,18,50,0.0 +11129,4,22,38,0.0 +11129,72,34.8,5,0.0 +11129,19,9.2,3,0.0 +11129,7,30,46,0.0 +11129,53,32.8,50,0.0 +11129,69,36,20,0.0 +11129,50,16.25,43,0.0 +11129,31,12.5,7,0.0 +11129,60,34,43,0.0 +11129,45,9.5,28,0.0 +11129,42,14,39,0.0 +11129,13,6,38,0.0 +11129,36,19,39,0.0 +11129,76,18,38,0.0 +11129,48,12.75,27,0.0 +11129,28,45.6,13,0.0 +11129,71,21.5,18,0.0 +11129,59,55,16,0.0 +11129,65,21.05,49,0.0 +11129,56,38,18,0.0 +11129,33,2.5,2,0.0 +11129,38,263.5,31,0.0 +11129,17,39,10,0.0 +11129,55,24,10,0.0 +11129,18,62.5,43,0.0 +11129,34,14,40,0.0 +11129,29,123.79,4,0.0 +11129,6,25,6,0.0 +11129,63,43.9,21,0.0 +11129,16,17.45,32,0.0 +11129,11,21,26,0.0 +11129,12,38,6,0.0 +11129,15,15.5,11,0.0 +11129,75,7.75,35,0.0 +11129,68,12.5,29,0.0 +11129,73,15,43,0.0 +11129,22,21,35,0.0 +11129,74,10,47,0.0 +11129,5,21.35,23,0.0 +11129,27,43.9,44,0.0 +11129,51,53,25,0.0 +11129,9,97,31,0.0 +11129,61,28.5,25,0.0 +11130,50,16.25,19,0.0 +11130,9,97,3,0.0 +11130,36,19,35,0.0 +11130,63,43.9,27,0.0 +11130,30,25.89,48,0.0 +11130,41,9.65,48,0.0 +11130,37,26,15,0.0 +11130,11,21,6,0.0 +11130,26,31.23,31,0.0 +11130,58,13.25,11,0.0 +11130,33,2.5,14,0.0 +11130,27,43.9,15,0.0 +11130,38,263.5,45,0.0 +11130,68,12.5,12,0.0 +11130,31,12.5,28,0.0 +11130,42,14,19,0.0 +11130,52,7,41,0.0 +11130,71,21.5,41,0.0 +11130,47,9.5,46,0.0 +11130,39,18,32,0.0 +11130,23,9,14,0.0 +11130,65,21.05,4,0.0 +11130,56,38,16,0.0 +11130,29,123.79,47,0.0 +11130,73,15,32,0.0 +11130,34,14,21,0.0 +11130,18,62.5,50,0.0 +11130,45,9.5,6,0.0 +11130,12,38,35,0.0 +11130,8,40,14,0.0 +11130,51,53,46,0.0 +11130,24,4.5,12,0.0 +11130,19,9.2,10,0.0 +11130,66,17,8,0.0 +11130,61,28.5,28,0.0 +11130,77,13,14,0.0 +11130,70,15,29,0.0 +11130,75,7.75,44,0.0 +11130,57,19.5,49,0.0 +11130,59,55,49,0.0 +11130,76,18,7,0.0 +11130,43,46,36,0.0 +11130,13,6,46,0.0 +11130,69,36,16,0.0 +11131,76,18,16,0.0 +11131,58,13.25,41,0.0 +11131,12,38,33,0.0 +11132,43,46,45,0.0 +11132,29,123.79,44,0.0 +11132,39,18,35,0.0 +11132,55,24,12,0.0 +11132,53,32.8,37,0.0 +11132,18,62.5,39,0.0 +11132,9,97,27,0.0 +11132,64,33.25,2,0.0 +11132,19,9.2,41,0.0 +11132,11,21,33,0.0 +11132,5,21.35,4,0.0 +11132,58,13.25,36,0.0 +11132,37,26,2,0.0 +11132,2,19,17,0.0 +11132,15,15.5,5,0.0 +11132,26,31.23,22,0.0 +11132,52,7,11,0.0 +11132,65,21.05,31,0.0 +11132,40,18.4,43,0.0 +11132,35,18,36,0.0 +11132,46,12,43,0.0 +11132,10,31,20,0.0 +11132,63,43.9,17,0.0 +11132,75,7.75,14,0.0 +11132,54,7.45,5,0.0 +11132,44,19.45,49,0.0 +11132,24,4.5,8,0.0 +11132,71,21.5,46,0.0 +11132,59,55,16,0.0 +11132,17,39,2,0.0 +11132,48,12.75,35,0.0 +11132,20,81,14,0.0 +11132,3,10,16,0.0 +11132,31,12.5,12,0.0 +11132,41,9.65,10,0.0 +11132,69,36,26,0.0 +11132,51,53,17,0.0 +11132,57,19.5,43,0.0 +11132,42,14,39,0.0 +11132,27,43.9,22,0.0 +11132,6,25,29,0.0 +11132,4,22,17,0.0 +11132,50,16.25,12,0.0 +11132,77,13,46,0.0 +11132,49,20,14,0.0 +11132,56,38,13,0.0 +11132,1,18,5,0.0 +11132,32,32,4,0.0 +11132,67,14,39,0.0 +11132,73,15,5,0.0 +11132,7,30,19,0.0 +11133,62,49.3,24,0.0 +11133,15,15.5,48,0.0 +11133,18,62.5,20,0.0 +11133,56,38,7,0.0 +11133,71,21.5,25,0.0 +11133,48,12.75,26,0.0 +11133,53,32.8,12,0.0 +11133,34,14,25,0.0 +11133,17,39,45,0.0 +11133,14,23.25,7,0.0 +11133,74,10,27,0.0 +11133,8,40,44,0.0 +11133,63,43.9,38,0.0 +11133,1,18,8,0.0 +11133,9,97,36,0.0 +11133,37,26,31,0.0 +11133,32,32,48,0.0 +11133,67,14,21,0.0 +11133,47,9.5,36,0.0 +11133,5,21.35,5,0.0 +11133,24,4.5,40,0.0 +11133,35,18,12,0.0 +11133,20,81,19,0.0 +11133,46,12,30,0.0 +11133,65,21.05,16,0.0 +11133,19,9.2,44,0.0 +11133,73,15,13,0.0 +11133,31,12.5,1,0.0 +11133,7,30,49,0.0 +11133,77,13,39,0.0 +11133,70,15,38,0.0 +11133,50,16.25,2,0.0 +11134,62,49.3,13,0.0 +11134,4,22,21,0.0 +11134,37,26,6,0.0 +11134,7,30,4,0.0 +11134,5,21.35,48,0.0 +11134,35,18,27,0.0 +11134,2,19,35,0.0 +11134,24,4.5,43,0.0 +11134,31,12.5,3,0.0 +11134,43,46,37,0.0 +11134,16,17.45,43,0.0 +11134,17,39,9,0.0 +11134,72,34.8,21,0.0 +11134,33,2.5,25,0.0 +11134,13,6,21,0.0 +11134,10,31,42,0.0 +11134,45,9.5,39,0.0 +11134,70,15,18,0.0 +11134,38,263.5,36,0.0 +11134,28,45.6,49,0.0 +11134,39,18,45,0.0 +11134,47,9.5,32,0.0 +11134,3,10,34,0.0 +11134,44,19.45,40,0.0 +11134,50,16.25,27,0.0 +11134,9,97,49,0.0 +11134,26,31.23,48,0.0 +11134,19,9.2,29,0.0 +11134,41,9.65,37,0.0 +11134,73,15,20,0.0 +11134,61,28.5,42,0.0 +11134,77,13,32,0.0 +11134,67,14,14,0.0 +11134,12,38,16,0.0 +11134,48,12.75,44,0.0 +11134,57,19.5,33,0.0 +11134,54,7.45,29,0.0 +11134,29,123.79,40,0.0 +11134,6,25,35,0.0 +11134,76,18,49,0.0 +11134,27,43.9,28,0.0 +11134,55,24,27,0.0 +11134,40,18.4,26,0.0 +11134,25,14,23,0.0 +11134,63,43.9,41,0.0 +11134,21,10,2,0.0 +11134,71,21.5,22,0.0 +11134,32,32,8,0.0 +11134,68,12.5,18,0.0 +11134,15,15.5,49,0.0 +11134,49,20,31,0.0 +11134,11,21,34,0.0 +11134,60,34,31,0.0 +11134,14,23.25,24,0.0 +11134,58,13.25,43,0.0 +11134,56,38,37,0.0 +11134,65,21.05,2,0.0 +11134,20,81,25,0.0 +11134,52,7,31,0.0 +11134,8,40,5,0.0 +11134,66,17,31,0.0 +11134,34,14,31,0.0 +11134,46,12,30,0.0 +11134,1,18,22,0.0 +11134,75,7.75,40,0.0 +11134,42,14,35,0.0 +11134,69,36,41,0.0 +11135,56,38,3,0.0 +11135,32,32,36,0.0 +11135,52,7,40,0.0 +11135,45,9.5,45,0.0 +11136,52,7,4,0.0 +11136,34,14,4,0.0 +11136,15,15.5,7,0.0 +11136,45,9.5,21,0.0 +11136,18,62.5,21,0.0 +11136,24,4.5,29,0.0 +11136,2,19,46,0.0 +11136,29,123.79,41,0.0 +11136,73,15,18,0.0 +11136,74,10,41,0.0 +11136,31,12.5,17,0.0 +11136,46,12,40,0.0 +11136,44,19.45,14,0.0 +11136,50,16.25,18,0.0 +11136,54,7.45,13,0.0 +11136,30,25.89,32,0.0 +11136,68,12.5,47,0.0 +11136,75,7.75,47,0.0 +11136,20,81,19,0.0 +11136,12,38,41,0.0 +11136,22,21,7,0.0 +11136,41,9.65,25,0.0 +11136,21,10,18,0.0 +11136,23,9,6,0.0 +11136,10,31,25,0.0 +11136,72,34.8,47,0.0 +11136,14,23.25,50,0.0 +11136,66,17,25,0.0 +11136,3,10,35,0.0 +11136,76,18,3,0.0 +11136,11,21,19,0.0 +11136,70,15,39,0.0 +11136,56,38,27,0.0 +11136,59,55,7,0.0 +11136,42,14,15,0.0 +11136,25,14,23,0.0 +11136,37,26,27,0.0 +11137,13,6,29,0.0 +11137,67,14,30,0.0 +11137,15,15.5,23,0.0 +11137,2,19,36,0.0 +11137,42,14,21,0.0 +11137,26,31.23,42,0.0 +11137,9,97,42,0.0 +11137,18,62.5,5,0.0 +11137,20,81,30,0.0 +11138,46,12,25,0.0 +11138,37,26,37,0.0 +11138,21,10,12,0.0 +11138,35,18,32,0.0 +11138,58,13.25,42,0.0 +11138,41,9.65,16,0.0 +11138,16,17.45,26,0.0 +11138,57,19.5,9,0.0 +11138,33,2.5,6,0.0 +11138,26,31.23,35,0.0 +11138,28,45.6,8,0.0 +11138,31,12.5,30,0.0 +11138,36,19,28,0.0 +11138,34,14,25,0.0 +11138,17,39,21,0.0 +11138,40,18.4,23,0.0 +11138,24,4.5,7,0.0 +11138,12,38,32,0.0 +11138,13,6,25,0.0 +11138,59,55,15,0.0 +11138,71,21.5,9,0.0 +11138,14,23.25,12,0.0 +11138,45,9.5,6,0.0 +11138,9,97,15,0.0 +11138,75,7.75,50,0.0 +11138,42,14,13,0.0 +11138,27,43.9,2,0.0 +11138,53,32.8,6,0.0 +11138,5,21.35,31,0.0 +11138,52,7,13,0.0 +11138,56,38,27,0.0 +11138,10,31,1,0.0 +11138,32,32,11,0.0 +11138,55,24,4,0.0 +11138,69,36,28,0.0 +11139,33,2.5,35,0.0 +11139,43,46,41,0.0 +11139,31,12.5,1,0.0 +11139,6,25,16,0.0 +11139,49,20,39,0.0 +11139,68,12.5,31,0.0 +11139,28,45.6,47,0.0 +11139,38,263.5,4,0.0 +11139,2,19,4,0.0 +11139,7,30,3,0.0 +11139,76,18,6,0.0 +11139,62,49.3,35,0.0 +11139,56,38,24,0.0 +11139,42,14,37,0.0 +11139,22,21,5,0.0 +11139,4,22,41,0.0 +11139,41,9.65,17,0.0 +11139,75,7.75,33,0.0 +11139,35,18,49,0.0 +11139,16,17.45,8,0.0 +11139,55,24,4,0.0 +11139,34,14,25,0.0 +11139,23,9,47,0.0 +11139,39,18,39,0.0 +11139,67,14,6,0.0 +11139,45,9.5,44,0.0 +11139,17,39,46,0.0 +11139,11,21,34,0.0 +11139,71,21.5,45,0.0 +11139,40,18.4,5,0.0 +11139,19,9.2,46,0.0 +11139,8,40,23,0.0 +11139,14,23.25,29,0.0 +11139,65,21.05,35,0.0 +11139,3,10,37,0.0 +11139,10,31,16,0.0 +11139,20,81,21,0.0 +11139,64,33.25,25,0.0 +11139,52,7,39,0.0 +11139,36,19,22,0.0 +11139,27,43.9,18,0.0 +11139,37,26,5,0.0 +11139,48,12.75,44,0.0 +11139,26,31.23,47,0.0 +11139,5,21.35,45,0.0 +11139,25,14,18,0.0 +11139,70,15,5,0.0 +11139,61,28.5,5,0.0 +11139,9,97,47,0.0 +11139,1,18,4,0.0 +11139,12,38,10,0.0 +11139,74,10,15,0.0 +11139,63,43.9,27,0.0 +11139,29,123.79,36,0.0 +11139,53,32.8,25,0.0 +11139,13,6,18,0.0 +11140,23,9,29,0.0 +11140,29,123.79,34,0.0 +11140,52,7,41,0.0 +11140,13,6,28,0.0 +11140,28,45.6,27,0.0 +11140,51,53,46,0.0 +11140,56,38,16,0.0 +11140,26,31.23,1,0.0 +11140,8,40,17,0.0 +11140,43,46,48,0.0 +11140,32,32,10,0.0 +11140,68,12.5,2,0.0 +11140,14,23.25,44,0.0 +11140,20,81,23,0.0 +11140,41,9.65,42,0.0 +11140,53,32.8,22,0.0 +11140,50,16.25,9,0.0 +11140,75,7.75,37,0.0 +11140,9,97,31,0.0 +11140,27,43.9,14,0.0 +11140,64,33.25,46,0.0 +11140,25,14,32,0.0 +11140,59,55,13,0.0 +11140,10,31,25,0.0 +11140,35,18,14,0.0 +11140,34,14,48,0.0 +11140,40,18.4,31,0.0 +11140,42,14,50,0.0 +11140,71,21.5,46,0.0 +11140,30,25.89,19,0.0 +11140,17,39,41,0.0 +11140,47,9.5,14,0.0 +11140,7,30,33,0.0 +11140,33,2.5,38,0.0 +11140,11,21,24,0.0 +11140,19,9.2,48,0.0 +11140,1,18,23,0.0 +11140,38,263.5,5,0.0 +11140,76,18,22,0.0 +11140,73,15,1,0.0 +11140,36,19,41,0.0 +11140,60,34,34,0.0 +11140,74,10,5,0.0 +11140,22,21,45,0.0 +11140,3,10,48,0.0 +11140,62,49.3,19,0.0 +11140,5,21.35,26,0.0 +11140,31,12.5,45,0.0 +11140,55,24,7,0.0 +11140,57,19.5,26,0.0 +11140,21,10,13,0.0 +11140,49,20,14,0.0 +11140,18,62.5,32,0.0 +11140,66,17,49,0.0 +11140,16,17.45,15,0.0 +11140,67,14,44,0.0 +11140,6,25,7,0.0 +11140,44,19.45,8,0.0 +11141,30,25.89,21,0.0 +11141,74,10,37,0.0 +11141,52,7,13,0.0 +11141,56,38,47,0.0 +11141,49,20,26,0.0 +11141,51,53,13,0.0 +11141,48,12.75,50,0.0 +11141,7,30,10,0.0 +11141,17,39,26,0.0 +11141,60,34,6,0.0 +11141,76,18,49,0.0 +11141,20,81,36,0.0 +11141,19,9.2,10,0.0 +11141,14,23.25,10,0.0 +11141,13,6,46,0.0 +11141,21,10,31,0.0 +11141,45,9.5,10,0.0 +11141,54,7.45,42,0.0 +11141,4,22,24,0.0 +11141,24,4.5,38,0.0 +11142,49,20,43,0.0 +11142,11,21,2,0.0 +11142,23,9,45,0.0 +11142,38,263.5,35,0.0 +11143,39,18,16,0.0 +11143,68,12.5,49,0.0 +11143,37,26,4,0.0 +11143,14,23.25,37,0.0 +11143,66,17,25,0.0 +11143,4,22,5,0.0 +11143,28,45.6,20,0.0 +11143,26,31.23,41,0.0 +11143,23,9,29,0.0 +11143,16,17.45,12,0.0 +11143,50,16.25,25,0.0 +11143,6,25,20,0.0 +11143,63,43.9,34,0.0 +11143,51,53,20,0.0 +11143,9,97,41,0.0 +11143,48,12.75,35,0.0 +11143,53,32.8,18,0.0 +11143,10,31,12,0.0 +11143,56,38,23,0.0 +11143,45,9.5,29,0.0 +11143,62,49.3,10,0.0 +11143,35,18,33,0.0 +11143,11,21,12,0.0 +11143,34,14,15,0.0 +11143,2,19,10,0.0 +11143,55,24,10,0.0 +11144,19,9.2,40,0.0 +11144,39,18,14,0.0 +11144,59,55,19,0.0 +11144,36,19,38,0.0 +11144,41,9.65,33,0.0 +11144,17,39,48,0.0 +11144,24,4.5,36,0.0 +11144,69,36,18,0.0 +11144,2,19,4,0.0 +11144,25,14,50,0.0 +11144,72,34.8,36,0.0 +11144,29,123.79,2,0.0 +11144,3,10,37,0.0 +11144,13,6,1,0.0 +11144,51,53,16,0.0 +11144,33,2.5,41,0.0 +11144,37,26,36,0.0 +11144,52,7,38,0.0 +11144,7,30,4,0.0 +11144,57,19.5,38,0.0 +11144,23,9,16,0.0 +11144,70,15,37,0.0 +11144,12,38,34,0.0 +11144,40,18.4,16,0.0 +11144,63,43.9,45,0.0 +11144,8,40,10,0.0 +11144,27,43.9,47,0.0 +11144,5,21.35,30,0.0 +11144,46,12,42,0.0 +11144,77,13,8,0.0 +11144,15,15.5,7,0.0 +11144,49,20,46,0.0 +11144,45,9.5,23,0.0 +11144,38,263.5,18,0.0 +11144,31,12.5,37,0.0 +11144,28,45.6,4,0.0 +11144,26,31.23,20,0.0 +11144,35,18,13,0.0 +11144,22,21,11,0.0 +11144,66,17,43,0.0 +11144,54,7.45,14,0.0 +11144,30,25.89,24,0.0 +11144,68,12.5,42,0.0 +11144,14,23.25,50,0.0 +11144,71,21.5,7,0.0 +11144,58,13.25,20,0.0 +11144,48,12.75,17,0.0 +11144,21,10,14,0.0 +11144,4,22,23,0.0 +11144,64,33.25,43,0.0 +11144,65,21.05,15,0.0 +11144,11,21,2,0.0 +11144,74,10,47,0.0 +11144,9,97,23,0.0 +11144,60,34,21,0.0 +11144,43,46,22,0.0 +11144,32,32,43,0.0 +11144,56,38,36,0.0 +11144,20,81,22,0.0 +11144,10,31,38,0.0 +11144,44,19.45,8,0.0 +11144,34,14,32,0.0 +11144,50,16.25,42,0.0 +11144,42,14,35,0.0 +11144,16,17.45,38,0.0 +11144,61,28.5,31,0.0 +11144,73,15,5,0.0 +11144,55,24,37,0.0 +11144,75,7.75,8,0.0 +11144,67,14,6,0.0 +11144,53,32.8,6,0.0 +11144,47,9.5,38,0.0 +11144,62,49.3,20,0.0 +11144,76,18,31,0.0 +11145,72,34.8,20,0.0 +11145,6,25,23,0.0 +11145,77,13,41,0.0 +11145,47,9.5,42,0.0 +11145,15,15.5,46,0.0 +11145,11,21,24,0.0 +11145,75,7.75,35,0.0 +11145,57,19.5,37,0.0 +11145,27,43.9,18,0.0 +11145,44,19.45,28,0.0 +11145,43,46,21,0.0 +11145,8,40,26,0.0 +11145,38,263.5,3,0.0 +11145,32,32,22,0.0 +11145,70,15,26,0.0 +11145,22,21,24,0.0 +11145,49,20,3,0.0 +11145,53,32.8,47,0.0 +11145,60,34,7,0.0 +11145,63,43.9,46,0.0 +11145,34,14,3,0.0 +11145,59,55,15,0.0 +11145,66,17,14,0.0 +11145,28,45.6,1,0.0 +11145,64,33.25,37,0.0 +11145,24,4.5,27,0.0 +11145,30,25.89,5,0.0 +11145,41,9.65,38,0.0 +11145,50,16.25,14,0.0 +11145,14,23.25,40,0.0 +11145,37,26,3,0.0 +11145,36,19,5,0.0 +11145,10,31,3,0.0 +11146,16,17.45,1,0.0 +11146,34,14,23,0.0 +11146,48,12.75,36,0.0 +11146,68,12.5,42,0.0 +11146,75,7.75,38,0.0 +11146,77,13,9,0.0 +11146,38,263.5,11,0.0 +11146,23,9,2,0.0 +11146,29,123.79,39,0.0 +11146,15,15.5,29,0.0 +11146,59,55,32,0.0 +11146,3,10,2,0.0 +11146,18,62.5,18,0.0 +11146,40,18.4,16,0.0 +11146,8,40,5,0.0 +11146,5,21.35,40,0.0 +11146,70,15,46,0.0 +11146,7,30,46,0.0 +11146,27,43.9,16,0.0 +11146,32,32,9,0.0 +11146,31,12.5,43,0.0 +11146,21,10,38,0.0 +11146,13,6,5,0.0 +11146,37,26,39,0.0 +11146,2,19,34,0.0 +11146,25,14,14,0.0 +11146,56,38,17,0.0 +11146,12,38,33,0.0 +11146,24,4.5,26,0.0 +11146,49,20,31,0.0 +11146,72,34.8,39,0.0 +11146,26,31.23,28,0.0 +11146,43,46,49,0.0 +11146,53,32.8,29,0.0 +11146,42,14,2,0.0 +11146,1,18,22,0.0 +11146,50,16.25,46,0.0 +11146,20,81,29,0.0 +11146,54,7.45,6,0.0 +11146,58,13.25,36,0.0 +11146,52,7,6,0.0 +11146,35,18,2,0.0 +11146,6,25,40,0.0 +11146,28,45.6,16,0.0 +11146,46,12,32,0.0 +11146,17,39,47,0.0 +11146,71,21.5,21,0.0 +11146,9,97,42,0.0 +11146,19,9.2,6,0.0 +11146,14,23.25,6,0.0 +11146,4,22,1,0.0 +11146,55,24,30,0.0 +11146,74,10,45,0.0 +11146,66,17,43,0.0 +11146,33,2.5,42,0.0 +11146,41,9.65,15,0.0 +11146,62,49.3,13,0.0 +11146,10,31,12,0.0 +11146,67,14,39,0.0 +11146,51,53,11,0.0 +11146,11,21,41,0.0 +11146,22,21,33,0.0 +11146,63,43.9,33,0.0 +11146,44,19.45,30,0.0 +11146,61,28.5,6,0.0 +11147,27,43.9,27,0.0 +11147,9,97,39,0.0 +11147,13,6,40,0.0 +11147,66,17,2,0.0 +11147,52,7,32,0.0 +11147,69,36,15,0.0 +11147,21,10,44,0.0 +11147,28,45.6,23,0.0 +11147,1,18,8,0.0 +11147,37,26,25,0.0 +11147,24,4.5,41,0.0 +11147,53,32.8,26,0.0 +11147,33,2.5,36,0.0 +11147,20,81,31,0.0 +11147,3,10,45,0.0 +11147,58,13.25,23,0.0 +11148,57,19.5,10,0.0 +11148,59,55,19,0.0 +11148,6,25,19,0.0 +11148,60,34,38,0.0 +11148,5,21.35,6,0.0 +11148,39,18,24,0.0 +11148,67,14,10,0.0 +11148,32,32,35,0.0 +11148,50,16.25,31,0.0 +11148,4,22,8,0.0 +11148,71,21.5,45,0.0 +11148,48,12.75,11,0.0 +11148,2,19,15,0.0 +11148,15,15.5,20,0.0 +11148,76,18,30,0.0 +11148,75,7.75,35,0.0 +11148,72,34.8,13,0.0 +11148,9,97,41,0.0 +11148,63,43.9,15,0.0 +11148,37,26,45,0.0 +11148,49,20,5,0.0 +11148,52,7,36,0.0 +11148,66,17,12,0.0 +11148,58,13.25,32,0.0 +11148,77,13,29,0.0 +11148,12,38,24,0.0 +11148,24,4.5,16,0.0 +11148,64,33.25,18,0.0 +11148,42,14,14,0.0 +11148,54,7.45,3,0.0 +11148,56,38,41,0.0 +11148,11,21,45,0.0 +11148,27,43.9,39,0.0 +11148,34,14,30,0.0 +11148,19,9.2,40,0.0 +11148,13,6,48,0.0 +11148,3,10,12,0.0 +11148,53,32.8,2,0.0 +11148,41,9.65,13,0.0 +11149,30,25.89,8,0.0 +11149,19,9.2,34,0.0 +11149,50,16.25,8,0.0 +11149,7,30,36,0.0 +11149,51,53,27,0.0 +11149,43,46,3,0.0 +11149,59,55,5,0.0 +11149,2,19,27,0.0 +11149,14,23.25,21,0.0 +11149,46,12,48,0.0 +11149,9,97,20,0.0 +11149,10,31,20,0.0 +11149,25,14,28,0.0 +11149,21,10,29,0.0 +11149,8,40,32,0.0 +11149,42,14,31,0.0 +11149,75,7.75,15,0.0 +11149,22,21,31,0.0 +11149,48,12.75,45,0.0 +11149,3,10,38,0.0 +11149,5,21.35,44,0.0 +11149,4,22,21,0.0 +11149,62,49.3,49,0.0 +11149,65,21.05,49,0.0 +11149,36,19,44,0.0 +11149,27,43.9,26,0.0 +11149,49,20,13,0.0 +11149,31,12.5,15,0.0 +11149,56,38,35,0.0 +11149,6,25,3,0.0 +11149,54,7.45,22,0.0 +11149,76,18,12,0.0 +11149,12,38,18,0.0 +11149,52,7,15,0.0 +11149,60,34,30,0.0 +11149,23,9,7,0.0 +11149,35,18,34,0.0 +11149,77,13,3,0.0 +11149,70,15,2,0.0 +11149,61,28.5,36,0.0 +11149,15,15.5,24,0.0 +11149,39,18,23,0.0 +11149,58,13.25,5,0.0 +11149,68,12.5,37,0.0 +11149,18,62.5,13,0.0 +11149,72,34.8,23,0.0 +11149,16,17.45,40,0.0 +11149,17,39,36,0.0 +11149,24,4.5,1,0.0 +11149,67,14,19,0.0 +11149,28,45.6,33,0.0 +11149,71,21.5,45,0.0 +11149,73,15,33,0.0 +11149,1,18,39,0.0 +11149,13,6,42,0.0 +11149,20,81,44,0.0 +11149,40,18.4,22,0.0 +11149,33,2.5,14,0.0 +11149,47,9.5,41,0.0 +11149,63,43.9,14,0.0 +11149,66,17,47,0.0 +11149,53,32.8,1,0.0 +11149,57,19.5,21,0.0 +11149,41,9.65,45,0.0 +11149,69,36,43,0.0 +11149,29,123.79,40,0.0 +11149,44,19.45,22,0.0 +11149,38,263.5,38,0.0 +11149,37,26,21,0.0 +11149,32,32,27,0.0 +11149,26,31.23,18,0.0 +11149,55,24,22,0.0 +11149,34,14,3,0.0 +11150,14,23.25,28,0.0 +11150,60,34,35,0.0 +11150,42,14,22,0.0 +11150,5,21.35,44,0.0 +11150,56,38,50,0.0 +11150,11,21,5,0.0 +11150,20,81,33,0.0 +11150,1,18,13,0.0 +11150,7,30,33,0.0 +11150,40,18.4,17,0.0 +11150,13,6,17,0.0 +11150,48,12.75,15,0.0 +11150,74,10,22,0.0 +11150,58,13.25,4,0.0 +11150,61,28.5,40,0.0 +11150,39,18,37,0.0 +11150,26,31.23,26,0.0 +11151,37,26,49,0.0 +11151,55,24,24,0.0 +11151,77,13,41,0.0 +11151,67,14,5,0.0 +11151,8,40,8,0.0 +11151,34,14,34,0.0 +11151,22,21,47,0.0 +11152,61,28.5,16,0.0 +11152,72,34.8,12,0.0 +11152,56,38,7,0.0 +11152,5,21.35,29,0.0 +11152,39,18,17,0.0 +11152,49,20,6,0.0 +11152,64,33.25,5,0.0 +11152,53,32.8,5,0.0 +11152,45,9.5,46,0.0 +11152,14,23.25,39,0.0 +11152,70,15,8,0.0 +11152,75,7.75,12,0.0 +11152,8,40,16,0.0 +11152,36,19,11,0.0 +11152,42,14,45,0.0 +11152,62,49.3,46,0.0 +11152,11,21,45,0.0 +11152,37,26,7,0.0 +11152,9,97,6,0.0 +11152,43,46,13,0.0 +11153,67,14,1,0.0 +11153,40,18.4,36,0.0 +11153,34,14,12,0.0 +11153,66,17,29,0.0 +11153,61,28.5,21,0.0 +11153,2,19,21,0.0 +11153,13,6,46,0.0 +11153,63,43.9,22,0.0 +11153,28,45.6,39,0.0 +11153,73,15,31,0.0 +11153,16,17.45,28,0.0 +11153,75,7.75,24,0.0 +11153,46,12,43,0.0 +11153,45,9.5,38,0.0 +11153,19,9.2,42,0.0 +11153,65,21.05,6,0.0 +11153,18,62.5,22,0.0 +11153,77,13,19,0.0 +11153,53,32.8,9,0.0 +11153,20,81,47,0.0 +11153,48,12.75,26,0.0 +11153,62,49.3,34,0.0 +11153,37,26,3,0.0 +11153,3,10,47,0.0 +11153,25,14,42,0.0 +11153,42,14,30,0.0 +11153,5,21.35,45,0.0 +11153,35,18,17,0.0 +11153,26,31.23,47,0.0 +11153,50,16.25,10,0.0 +11153,57,19.5,4,0.0 +11153,6,25,8,0.0 +11153,76,18,31,0.0 +11153,55,24,23,0.0 +11153,58,13.25,24,0.0 +11153,33,2.5,31,0.0 +11153,27,43.9,28,0.0 +11153,14,23.25,6,0.0 +11153,69,36,10,0.0 +11153,24,4.5,31,0.0 +11153,17,39,37,0.0 +11153,12,38,40,0.0 +11153,11,21,9,0.0 +11153,70,15,38,0.0 +11153,38,263.5,32,0.0 +11154,19,9.2,20,0.0 +11154,42,14,38,0.0 +11155,1,18,41,0.0 +11155,46,12,5,0.0 +11155,43,46,13,0.0 +11155,30,25.89,18,0.0 +11155,70,15,37,0.0 +11155,29,123.79,4,0.0 +11155,10,31,24,0.0 +11155,23,9,35,0.0 +11155,2,19,6,0.0 +11155,72,34.8,23,0.0 +11155,3,10,6,0.0 +11155,51,53,33,0.0 +11155,65,21.05,27,0.0 +11155,17,39,3,0.0 +11155,7,30,22,0.0 +11155,5,21.35,29,0.0 +11155,24,4.5,3,0.0 +11155,18,62.5,1,0.0 +11155,40,18.4,19,0.0 +11155,21,10,42,0.0 +11155,62,49.3,18,0.0 +11155,47,9.5,6,0.0 +11155,39,18,19,0.0 +11155,53,32.8,50,0.0 +11155,45,9.5,42,0.0 +11155,34,14,15,0.0 +11155,38,263.5,29,0.0 +11155,48,12.75,20,0.0 +11155,44,19.45,1,0.0 +11155,55,24,29,0.0 +11155,67,14,42,0.0 +11155,42,14,38,0.0 +11155,71,21.5,28,0.0 +11155,8,40,26,0.0 +11155,59,55,17,0.0 +11155,12,38,38,0.0 +11155,32,32,31,0.0 +11155,6,25,2,0.0 +11155,74,10,28,0.0 +11155,50,16.25,8,0.0 +11155,64,33.25,34,0.0 +11155,69,36,6,0.0 +11155,11,21,16,0.0 +11155,20,81,7,0.0 +11155,52,7,41,0.0 +11155,22,21,49,0.0 +11155,63,43.9,18,0.0 +11155,19,9.2,45,0.0 +11155,33,2.5,23,0.0 +11155,14,23.25,31,0.0 +11155,41,9.65,50,0.0 +11155,61,28.5,21,0.0 +11155,36,19,4,0.0 +11155,60,34,35,0.0 +11155,76,18,2,0.0 +11155,58,13.25,50,0.0 +11155,25,14,14,0.0 +11155,37,26,32,0.0 +11155,75,7.75,49,0.0 +11155,31,12.5,35,0.0 +11155,54,7.45,37,0.0 +11155,26,31.23,10,0.0 +11155,27,43.9,15,0.0 +11155,16,17.45,50,0.0 +11155,56,38,33,0.0 +11155,13,6,37,0.0 +11155,4,22,21,0.0 +11156,10,31,45,0.0 +11156,71,21.5,22,0.0 +11156,15,15.5,29,0.0 +11156,14,23.25,11,0.0 +11156,59,55,3,0.0 +11156,5,21.35,41,0.0 +11156,61,28.5,27,0.0 +11156,42,14,38,0.0 +11156,31,12.5,10,0.0 +11157,42,14,48,0.0 +11157,12,38,25,0.0 +11157,3,10,25,0.0 +11157,17,39,49,0.0 +11157,8,40,49,0.0 +11157,59,55,26,0.0 +11157,49,20,49,0.0 +11157,33,2.5,26,0.0 +11157,6,25,18,0.0 +11157,57,19.5,22,0.0 +11157,75,7.75,39,0.0 +11157,13,6,1,0.0 +11157,7,30,28,0.0 +11157,61,28.5,14,0.0 +11157,65,21.05,28,0.0 +11157,52,7,14,0.0 +11157,22,21,5,0.0 +11157,77,13,6,0.0 +11157,35,18,2,0.0 +11157,34,14,50,0.0 +11157,55,24,41,0.0 +11157,48,12.75,32,0.0 +11157,53,32.8,17,0.0 +11157,20,81,16,0.0 +11157,14,23.25,7,0.0 +11157,73,15,4,0.0 +11157,24,4.5,50,0.0 +11157,41,9.65,1,0.0 +11157,47,9.5,14,0.0 +11157,18,62.5,37,0.0 +11157,60,34,29,0.0 +11158,56,38,13,0.0 +11158,45,9.5,48,0.0 +11158,39,18,10,0.0 +11158,60,34,21,0.0 +11158,10,31,10,0.0 +11158,18,62.5,42,0.0 +11158,22,21,47,0.0 +11158,32,32,31,0.0 +11158,27,43.9,12,0.0 +11158,24,4.5,45,0.0 +11158,74,10,43,0.0 +11158,54,7.45,35,0.0 +11158,43,46,45,0.0 +11158,2,19,9,0.0 +11158,1,18,38,0.0 +11158,6,25,39,0.0 +11158,4,22,35,0.0 +11158,75,7.75,44,0.0 +11158,55,24,46,0.0 +11158,73,15,7,0.0 +11158,16,17.45,36,0.0 +11158,50,16.25,46,0.0 +11158,31,12.5,35,0.0 +11158,49,20,31,0.0 +11158,64,33.25,44,0.0 +11158,29,123.79,2,0.0 +11158,57,19.5,4,0.0 +11158,12,38,45,0.0 +11158,5,21.35,2,0.0 +11158,35,18,20,0.0 +11158,65,21.05,35,0.0 +11158,70,15,39,0.0 +11158,11,21,32,0.0 +11158,72,34.8,10,0.0 +11158,46,12,47,0.0 +11158,53,32.8,19,0.0 +11158,19,9.2,31,0.0 +11158,48,12.75,49,0.0 +11158,37,26,4,0.0 +11158,63,43.9,42,0.0 +11158,47,9.5,47,0.0 +11158,25,14,47,0.0 +11158,67,14,37,0.0 +11158,7,30,34,0.0 +11158,34,14,25,0.0 +11158,28,45.6,50,0.0 +11158,26,31.23,49,0.0 +11158,30,25.89,29,0.0 +11158,44,19.45,21,0.0 +11158,15,15.5,44,0.0 +11158,69,36,39,0.0 +11158,51,53,16,0.0 +11158,59,55,31,0.0 +11158,17,39,31,0.0 +11158,76,18,30,0.0 +11158,66,17,14,0.0 +11158,38,263.5,40,0.0 +11159,70,15,10,0.0 +11159,48,12.75,39,0.0 +11159,35,18,45,0.0 +11159,55,24,22,0.0 +11159,33,2.5,4,0.0 +11159,77,13,50,0.0 +11159,11,21,7,0.0 +11159,67,14,47,0.0 +11159,58,13.25,12,0.0 +11159,45,9.5,1,0.0 +11159,71,21.5,16,0.0 +11159,14,23.25,18,0.0 +11159,46,12,16,0.0 +11159,61,28.5,3,0.0 +11159,36,19,16,0.0 +11159,66,17,44,0.0 +11159,53,32.8,5,0.0 +11159,50,16.25,24,0.0 +11159,9,97,2,0.0 +11159,10,31,16,0.0 +11159,68,12.5,20,0.0 +11159,15,15.5,35,0.0 +11159,4,22,50,0.0 +11159,60,34,15,0.0 +11159,1,18,36,0.0 +11159,31,12.5,28,0.0 +11159,75,7.75,8,0.0 +11159,43,46,9,0.0 +11159,73,15,21,0.0 +11159,2,19,23,0.0 +11159,44,19.45,43,0.0 +11159,37,26,34,0.0 +11159,57,19.5,20,0.0 +11159,65,21.05,4,0.0 +11159,30,25.89,12,0.0 +11159,59,55,45,0.0 +11159,6,25,3,0.0 +11159,13,6,12,0.0 +11159,40,18.4,23,0.0 +11159,20,81,9,0.0 +11159,19,9.2,30,0.0 +11160,21,10,18,0.0 +11160,3,10,39,0.0 +11160,20,81,48,0.0 +11160,23,9,11,0.0 +11160,46,12,32,0.0 +11160,65,21.05,29,0.0 +11160,39,18,41,0.0 +11160,69,36,15,0.0 +11160,1,18,25,0.0 +11160,57,19.5,37,0.0 +11160,31,12.5,19,0.0 +11160,72,34.8,25,0.0 +11160,54,7.45,32,0.0 +11160,55,24,39,0.0 +11160,47,9.5,21,0.0 +11160,13,6,17,0.0 +11160,70,15,1,0.0 +11160,49,20,48,0.0 +11160,51,53,40,0.0 +11160,58,13.25,50,0.0 +11160,14,23.25,12,0.0 +11160,74,10,3,0.0 +11160,2,19,10,0.0 +11160,76,18,50,0.0 +11160,34,14,48,0.0 +11160,67,14,38,0.0 +11160,44,19.45,24,0.0 +11160,15,15.5,35,0.0 +11160,38,263.5,7,0.0 +11160,45,9.5,2,0.0 +11160,29,123.79,20,0.0 +11160,28,45.6,32,0.0 +11160,56,38,10,0.0 +11160,24,4.5,14,0.0 +11160,26,31.23,15,0.0 +11160,64,33.25,36,0.0 +11160,27,43.9,26,0.0 +11160,18,62.5,48,0.0 +11160,11,21,41,0.0 +11160,73,15,44,0.0 +11160,4,22,38,0.0 +11160,40,18.4,41,0.0 +11160,7,30,33,0.0 +11161,54,7.45,11,0.0 +11161,26,31.23,26,0.0 +11161,12,38,6,0.0 +11161,41,9.65,38,0.0 +11161,31,12.5,22,0.0 +11161,33,2.5,44,0.0 +11161,68,12.5,27,0.0 +11161,14,23.25,26,0.0 +11161,22,21,36,0.0 +11161,36,19,32,0.0 +11161,59,55,32,0.0 +11161,3,10,29,0.0 +11161,2,19,4,0.0 +11161,50,16.25,10,0.0 +11161,27,43.9,28,0.0 +11161,11,21,15,0.0 +11161,67,14,41,0.0 +11161,25,14,16,0.0 +11161,13,6,49,0.0 +11161,23,9,35,0.0 +11161,65,21.05,42,0.0 +11161,6,25,21,0.0 +11161,64,33.25,16,0.0 +11161,29,123.79,27,0.0 +11161,35,18,8,0.0 +11161,77,13,16,0.0 +11161,52,7,16,0.0 +11161,47,9.5,48,0.0 +11161,10,31,11,0.0 +11161,66,17,19,0.0 +11161,15,15.5,29,0.0 +11161,32,32,31,0.0 +11161,1,18,38,0.0 +11161,69,36,23,0.0 +11161,63,43.9,27,0.0 +11161,20,81,40,0.0 +11161,40,18.4,34,0.0 +11161,73,15,46,0.0 +11161,60,34,21,0.0 +11161,55,24,17,0.0 +11161,30,25.89,39,0.0 +11161,28,45.6,16,0.0 +11161,46,12,33,0.0 +11161,61,28.5,12,0.0 +11161,45,9.5,5,0.0 +11161,74,10,38,0.0 +11161,56,38,27,0.0 +11161,19,9.2,23,0.0 +11161,76,18,48,0.0 +11161,18,62.5,23,0.0 +11161,75,7.75,31,0.0 +11161,7,30,47,0.0 +11161,57,19.5,7,0.0 +11161,49,20,9,0.0 +11161,8,40,18,0.0 +11161,53,32.8,10,0.0 +11161,43,46,17,0.0 +11161,9,97,10,0.0 +11161,24,4.5,17,0.0 +11161,16,17.45,37,0.0 +11161,72,34.8,34,0.0 +11161,44,19.45,24,0.0 +11161,21,10,43,0.0 +11161,37,26,36,0.0 +11161,17,39,17,0.0 +11161,58,13.25,3,0.0 +11161,39,18,18,0.0 +11162,27,43.9,48,0.0 +11162,62,49.3,14,0.0 +11162,43,46,4,0.0 +11162,5,21.35,5,0.0 +11162,69,36,40,0.0 +11162,16,17.45,16,0.0 +11162,72,34.8,48,0.0 +11162,21,10,8,0.0 +11162,76,18,21,0.0 +11162,48,12.75,1,0.0 +11162,73,15,22,0.0 +11162,57,19.5,30,0.0 +11162,53,32.8,44,0.0 +11162,33,2.5,39,0.0 +11162,42,14,23,0.0 +11162,18,62.5,13,0.0 +11162,51,53,1,0.0 +11162,74,10,34,0.0 +11162,46,12,4,0.0 +11162,26,31.23,22,0.0 +11162,8,40,3,0.0 +11162,36,19,1,0.0 +11162,15,15.5,6,0.0 +11162,63,43.9,10,0.0 +11162,60,34,17,0.0 +11162,12,38,39,0.0 +11162,39,18,26,0.0 +11162,68,12.5,19,0.0 +11162,6,25,40,0.0 +11162,47,9.5,7,0.0 +11162,20,81,11,0.0 +11162,71,21.5,48,0.0 +11162,37,26,22,0.0 +11162,41,9.65,12,0.0 +11162,3,10,27,0.0 +11162,4,22,25,0.0 +11162,35,18,41,0.0 +11162,25,14,13,0.0 +11162,54,7.45,39,0.0 +11162,24,4.5,40,0.0 +11162,2,19,3,0.0 +11162,22,21,8,0.0 +11162,28,45.6,2,0.0 +11162,61,28.5,22,0.0 +11162,75,7.75,26,0.0 +11162,17,39,9,0.0 +11162,59,55,37,0.0 +11162,30,25.89,50,0.0 +11162,49,20,22,0.0 +11162,23,9,13,0.0 +11162,34,14,8,0.0 +11162,13,6,7,0.0 +11162,56,38,37,0.0 +11162,7,30,33,0.0 +11162,32,32,39,0.0 +11162,52,7,35,0.0 +11163,14,23.25,13,0.0 +11163,34,14,9,0.0 +11163,37,26,25,0.0 +11163,59,55,7,0.0 +11163,55,24,34,0.0 +11163,76,18,11,0.0 +11163,47,9.5,46,0.0 +11163,21,10,37,0.0 +11163,24,4.5,18,0.0 +11163,2,19,2,0.0 +11163,40,18.4,28,0.0 +11163,65,21.05,7,0.0 +11163,13,6,12,0.0 +11163,61,28.5,39,0.0 +11163,57,19.5,28,0.0 +11163,64,33.25,42,0.0 +11163,35,18,34,0.0 +11163,30,25.89,5,0.0 +11163,62,49.3,17,0.0 +11163,33,2.5,11,0.0 +11163,29,123.79,37,0.0 +11163,39,18,18,0.0 +11163,12,38,33,0.0 +11163,5,21.35,44,0.0 +11163,70,15,14,0.0 +11163,17,39,3,0.0 +11164,40,18.4,9,0.0 +11164,42,14,18,0.0 +11164,66,17,25,0.0 +11164,65,21.05,8,0.0 +11164,70,15,29,0.0 +11164,63,43.9,2,0.0 +11164,25,14,10,0.0 +11164,28,45.6,10,0.0 +11164,4,22,7,0.0 +11164,37,26,16,0.0 +11164,49,20,47,0.0 +11164,61,28.5,47,0.0 +11164,57,19.5,45,0.0 +11164,62,49.3,15,0.0 +11164,27,43.9,49,0.0 +11164,8,40,31,0.0 +11164,5,21.35,26,0.0 +11164,1,18,39,0.0 +11164,6,25,5,0.0 +11164,72,34.8,21,0.0 +11164,51,53,9,0.0 +11164,50,16.25,21,0.0 +11164,18,62.5,27,0.0 +11164,7,30,14,0.0 +11164,58,13.25,31,0.0 +11164,39,18,13,0.0 +11164,67,14,3,0.0 +11164,10,31,12,0.0 +11164,30,25.89,2,0.0 +11164,24,4.5,47,0.0 +11164,20,81,29,0.0 +11164,68,12.5,38,0.0 +11164,47,9.5,34,0.0 +11164,12,38,9,0.0 +11164,34,14,28,0.0 +11164,71,21.5,27,0.0 +11164,35,18,40,0.0 +11164,36,19,43,0.0 +11165,24,4.5,41,0.0 +11165,47,9.5,34,0.0 +11165,66,17,47,0.0 +11165,42,14,32,0.0 +11165,67,14,7,0.0 +11165,46,12,8,0.0 +11165,56,38,49,0.0 +11165,39,18,44,0.0 +11165,61,28.5,10,0.0 +11165,29,123.79,1,0.0 +11165,49,20,14,0.0 +11165,23,9,32,0.0 +11165,5,21.35,11,0.0 +11165,36,19,7,0.0 +11165,54,7.45,2,0.0 +11165,1,18,41,0.0 +11165,65,21.05,49,0.0 +11165,21,10,8,0.0 +11165,28,45.6,1,0.0 +11165,17,39,13,0.0 +11165,74,10,11,0.0 +11165,6,25,35,0.0 +11165,51,53,48,0.0 +11165,37,26,12,0.0 +11165,58,13.25,12,0.0 +11165,25,14,7,0.0 +11165,70,15,5,0.0 +11165,50,16.25,22,0.0 +11165,77,13,16,0.0 +11165,12,38,33,0.0 +11165,55,24,35,0.0 +11165,75,7.75,18,0.0 +11165,20,81,31,0.0 +11165,32,32,35,0.0 +11165,44,19.45,13,0.0 +11165,43,46,25,0.0 +11165,52,7,7,0.0 +11165,22,21,34,0.0 +11165,2,19,34,0.0 +11165,27,43.9,2,0.0 +11165,57,19.5,12,0.0 +11165,69,36,35,0.0 +11165,33,2.5,42,0.0 +11165,41,9.65,14,0.0 +11165,53,32.8,30,0.0 +11165,10,31,19,0.0 +11165,68,12.5,22,0.0 +11165,63,43.9,3,0.0 +11165,7,30,36,0.0 +11165,45,9.5,32,0.0 +11165,64,33.25,49,0.0 +11165,19,9.2,43,0.0 +11165,26,31.23,43,0.0 +11165,71,21.5,48,0.0 +11165,11,21,2,0.0 +11165,8,40,22,0.0 +11165,59,55,28,0.0 +11165,34,14,39,0.0 +11165,73,15,29,0.0 +11165,31,12.5,10,0.0 +11165,14,23.25,17,0.0 +11165,9,97,4,0.0 +11165,62,49.3,27,0.0 +11165,4,22,28,0.0 +11165,72,34.8,8,0.0 +11165,38,263.5,35,0.0 +11165,35,18,5,0.0 +11165,48,12.75,10,0.0 +11165,30,25.89,17,0.0 +11165,3,10,31,0.0 +11165,40,18.4,20,0.0 +11165,16,17.45,35,0.0 +11166,74,10,8,0.0 +11166,20,81,26,0.0 +11166,58,13.25,47,0.0 +11166,17,39,43,0.0 +11166,48,12.75,23,0.0 +11166,24,4.5,45,0.0 +11166,67,14,24,0.0 +11166,51,53,43,0.0 +11166,43,46,13,0.0 +11166,49,20,8,0.0 +11166,63,43.9,34,0.0 +11166,1,18,49,0.0 +11166,16,17.45,43,0.0 +11166,15,15.5,32,0.0 +11166,22,21,9,0.0 +11166,53,32.8,41,0.0 +11166,41,9.65,30,0.0 +11166,68,12.5,26,0.0 +11166,42,14,18,0.0 +11166,44,19.45,43,0.0 +11166,7,30,16,0.0 +11166,12,38,30,0.0 +11166,38,263.5,17,0.0 +11166,26,31.23,1,0.0 +11166,69,36,32,0.0 +11166,52,7,50,0.0 +11166,57,19.5,16,0.0 +11166,27,43.9,15,0.0 +11166,72,34.8,14,0.0 +11166,45,9.5,4,0.0 +11166,21,10,8,0.0 +11166,6,25,34,0.0 +11166,14,23.25,27,0.0 +11166,25,14,8,0.0 +11166,71,21.5,44,0.0 +11166,18,62.5,25,0.0 +11166,64,33.25,15,0.0 +11166,29,123.79,12,0.0 +11166,9,97,17,0.0 +11166,37,26,21,0.0 +11166,11,21,8,0.0 +11166,66,17,27,0.0 +11166,65,21.05,14,0.0 +11166,59,55,21,0.0 +11166,70,15,14,0.0 +11166,50,16.25,33,0.0 +11166,47,9.5,39,0.0 +11166,39,18,15,0.0 +11166,46,12,15,0.0 +11166,4,22,8,0.0 +11166,56,38,42,0.0 +11166,61,28.5,28,0.0 +11166,8,40,21,0.0 +11166,19,9.2,20,0.0 +11166,36,19,16,0.0 +11166,54,7.45,33,0.0 +11166,40,18.4,48,0.0 +11167,75,7.75,45,0.0 +11167,31,12.5,48,0.0 +11167,55,24,16,0.0 +11167,48,12.75,48,0.0 +11167,27,43.9,38,0.0 +11167,8,40,41,0.0 +11167,18,62.5,31,0.0 +11167,10,31,6,0.0 +11167,56,38,41,0.0 +11167,5,21.35,23,0.0 +11167,23,9,47,0.0 +11167,26,31.23,7,0.0 +11167,2,19,24,0.0 +11167,65,21.05,47,0.0 +11167,37,26,12,0.0 +11167,25,14,46,0.0 +11167,39,18,25,0.0 +11167,35,18,8,0.0 +11167,20,81,6,0.0 +11167,14,23.25,14,0.0 +11167,51,53,27,0.0 +11167,59,55,14,0.0 +11167,70,15,47,0.0 +11167,16,17.45,24,0.0 +11167,53,32.8,38,0.0 +11167,3,10,47,0.0 +11167,24,4.5,3,0.0 +11167,38,263.5,12,0.0 +11167,34,14,44,0.0 +11167,68,12.5,3,0.0 +11168,51,53,32,0.0 +11168,72,34.8,24,0.0 +11168,16,17.45,44,0.0 +11168,30,25.89,16,0.0 +11168,40,18.4,38,0.0 +11168,76,18,28,0.0 +11168,46,12,18,0.0 +11168,66,17,8,0.0 +11168,61,28.5,29,0.0 +11168,11,21,32,0.0 +11168,7,30,41,0.0 +11168,33,2.5,28,0.0 +11168,6,25,4,0.0 +11168,2,19,24,0.0 +11168,26,31.23,6,0.0 +11168,60,34,12,0.0 +11168,59,55,31,0.0 +11168,52,7,31,0.0 +11168,5,21.35,3,0.0 +11168,45,9.5,12,0.0 +11168,9,97,44,0.0 +11168,1,18,17,0.0 +11168,74,10,21,0.0 +11168,57,19.5,45,0.0 +11168,67,14,36,0.0 +11168,22,21,46,0.0 +11168,42,14,3,0.0 +11168,55,24,32,0.0 +11168,63,43.9,47,0.0 +11168,68,12.5,41,0.0 +11168,18,62.5,40,0.0 +11168,3,10,16,0.0 +11168,28,45.6,25,0.0 +11168,20,81,32,0.0 +11168,58,13.25,25,0.0 +11168,54,7.45,45,0.0 +11168,37,26,34,0.0 +11168,77,13,3,0.0 +11168,64,33.25,10,0.0 +11168,27,43.9,22,0.0 +11168,43,46,44,0.0 +11168,65,21.05,8,0.0 +11168,17,39,33,0.0 +11168,47,9.5,35,0.0 +11168,75,7.75,43,0.0 +11168,31,12.5,21,0.0 +11168,4,22,3,0.0 +11168,13,6,20,0.0 +11168,19,9.2,4,0.0 +11168,29,123.79,47,0.0 +11168,70,15,46,0.0 +11168,49,20,42,0.0 +11168,15,15.5,38,0.0 +11168,12,38,7,0.0 +11168,44,19.45,1,0.0 +11168,56,38,48,0.0 +11168,23,9,29,0.0 +11168,73,15,32,0.0 +11168,62,49.3,43,0.0 +11168,34,14,7,0.0 +11168,10,31,34,0.0 +11168,53,32.8,48,0.0 +11168,50,16.25,41,0.0 +11168,32,32,39,0.0 +11168,14,23.25,24,0.0 +11168,69,36,43,0.0 +11168,48,12.75,33,0.0 +11168,38,263.5,3,0.0 +11168,36,19,3,0.0 +11168,39,18,18,0.0 +11169,72,34.8,11,0.0 +11169,53,32.8,24,0.0 +11169,12,38,15,0.0 +11169,62,49.3,29,0.0 +11169,48,12.75,36,0.0 +11169,19,9.2,2,0.0 +11169,64,33.25,20,0.0 +11169,54,7.45,10,0.0 +11169,35,18,48,0.0 +11169,47,9.5,23,0.0 +11169,75,7.75,35,0.0 +11169,66,17,22,0.0 +11169,63,43.9,34,0.0 +11169,70,15,32,0.0 +11169,56,38,47,0.0 +11169,9,97,44,0.0 +11169,27,43.9,13,0.0 +11169,37,26,19,0.0 +11169,33,2.5,2,0.0 +11169,30,25.89,19,0.0 +11169,3,10,1,0.0 +11169,44,19.45,24,0.0 +11169,23,9,28,0.0 +11169,29,123.79,5,0.0 +11169,36,19,9,0.0 +11169,68,12.5,29,0.0 +11169,52,7,16,0.0 +11169,14,23.25,38,0.0 +11169,32,32,1,0.0 +11169,76,18,47,0.0 +11169,28,45.6,21,0.0 +11169,46,12,3,0.0 +11169,31,12.5,13,0.0 +11169,69,36,6,0.0 +11169,42,14,40,0.0 +11169,5,21.35,11,0.0 +11169,15,15.5,31,0.0 +11169,17,39,50,0.0 +11169,6,25,26,0.0 +11169,13,6,33,0.0 +11169,77,13,31,0.0 +11169,73,15,6,0.0 +11169,38,263.5,43,0.0 +11169,61,28.5,19,0.0 +11169,41,9.65,15,0.0 +11169,34,14,36,0.0 +11169,20,81,37,0.0 +11169,4,22,46,0.0 +11169,24,4.5,49,0.0 +11169,10,31,37,0.0 +11169,55,24,43,0.0 +11169,51,53,14,0.0 +11169,39,18,15,0.0 +11169,25,14,44,0.0 +11169,21,10,16,0.0 +11169,2,19,9,0.0 +11169,18,62.5,28,0.0 +11169,49,20,28,0.0 +11169,8,40,6,0.0 +11169,43,46,21,0.0 +11169,71,21.5,12,0.0 +11169,58,13.25,4,0.0 +11169,26,31.23,24,0.0 +11169,67,14,18,0.0 +11169,1,18,32,0.0 +11169,65,21.05,47,0.0 +11169,40,18.4,37,0.0 +11169,22,21,9,0.0 +11169,74,10,32,0.0 +11170,62,49.3,25,0.0 +11170,56,38,36,0.0 +11170,5,21.35,44,0.0 +11170,26,31.23,17,0.0 +11170,72,34.8,46,0.0 +11170,45,9.5,10,0.0 +11170,58,13.25,8,0.0 +11170,77,13,27,0.0 +11171,2,19,4,0.0 +11171,24,4.5,29,0.0 +11171,30,25.89,19,0.0 +11171,19,9.2,45,0.0 +11171,71,21.5,31,0.0 +11171,22,21,6,0.0 +11171,28,45.6,7,0.0 +11171,60,34,22,0.0 +11171,11,21,40,0.0 +11171,13,6,48,0.0 +11171,67,14,46,0.0 +11171,38,263.5,4,0.0 +11171,4,22,21,0.0 +11171,16,17.45,25,0.0 +11171,17,39,32,0.0 +11171,25,14,3,0.0 +11171,6,25,46,0.0 +11171,48,12.75,32,0.0 +11171,46,12,38,0.0 +11171,50,16.25,46,0.0 +11171,73,15,21,0.0 +11171,32,32,47,0.0 +11171,14,23.25,47,0.0 +11171,12,38,40,0.0 +11171,61,28.5,36,0.0 +11171,57,19.5,36,0.0 +11172,74,10,4,0.0 +11172,52,7,21,0.0 +11172,19,9.2,26,0.0 +11172,37,26,11,0.0 +11173,6,25,14,0.0 +11173,17,39,38,0.0 +11174,72,34.8,8,0.0 +11174,42,14,41,0.0 +11174,33,2.5,28,0.0 +11174,15,15.5,9,0.0 +11174,65,21.05,14,0.0 +11174,56,38,24,0.0 +11174,55,24,37,0.0 +11174,6,25,11,0.0 +11174,45,9.5,2,0.0 +11174,11,21,38,0.0 +11174,23,9,3,0.0 +11174,17,39,8,0.0 +11174,14,23.25,25,0.0 +11174,76,18,18,0.0 +11174,4,22,45,0.0 +11174,73,15,38,0.0 +11174,46,12,17,0.0 +11174,1,18,50,0.0 +11174,59,55,45,0.0 +11174,49,20,2,0.0 +11174,2,19,16,0.0 +11174,39,18,11,0.0 +11174,67,14,46,0.0 +11174,62,49.3,49,0.0 +11174,69,36,49,0.0 +11174,13,6,19,0.0 +11174,16,17.45,26,0.0 +11174,34,14,13,0.0 +11174,32,32,16,0.0 +11174,36,19,20,0.0 +11174,12,38,45,0.0 +11174,28,45.6,26,0.0 +11174,24,4.5,19,0.0 +11174,61,28.5,15,0.0 +11174,30,25.89,50,0.0 +11174,52,7,29,0.0 +11174,7,30,26,0.0 +11174,18,62.5,28,0.0 +11174,48,12.75,3,0.0 +11174,29,123.79,40,0.0 +11174,37,26,7,0.0 +11174,70,15,41,0.0 +11174,35,18,17,0.0 +11174,19,9.2,19,0.0 +11174,54,7.45,20,0.0 +11174,74,10,4,0.0 +11174,25,14,13,0.0 +11175,1,18,35,0.0 +11175,9,97,46,0.0 +11175,49,20,49,0.0 +11175,5,21.35,28,0.0 +11175,35,18,43,0.0 +11175,57,19.5,46,0.0 +11175,69,36,48,0.0 +11175,44,19.45,22,0.0 +11175,38,263.5,19,0.0 +11175,12,38,11,0.0 +11175,76,18,48,0.0 +11175,58,13.25,40,0.0 +11175,70,15,39,0.0 +11175,26,31.23,45,0.0 +11175,54,7.45,45,0.0 +11175,48,12.75,12,0.0 +11175,3,10,25,0.0 +11175,13,6,4,0.0 +11175,23,9,6,0.0 +11175,55,24,5,0.0 +11175,61,28.5,1,0.0 +11175,11,21,3,0.0 +11175,17,39,48,0.0 +11175,43,46,22,0.0 +11175,16,17.45,22,0.0 +11175,41,9.65,21,0.0 +11175,64,33.25,32,0.0 +11175,71,21.5,1,0.0 +11175,39,18,24,0.0 +11175,75,7.75,12,0.0 +11175,8,40,8,0.0 +11176,31,12.5,42,0.0 +11176,70,15,12,0.0 +11176,15,15.5,31,0.0 +11176,20,81,41,0.0 +11176,52,7,7,0.0 +11176,54,7.45,23,0.0 +11176,10,31,27,0.0 +11176,66,17,28,0.0 +11176,64,33.25,6,0.0 +11176,21,10,28,0.0 +11176,26,31.23,16,0.0 +11176,58,13.25,25,0.0 +11176,43,46,27,0.0 +11176,25,14,30,0.0 +11176,69,36,25,0.0 +11176,28,45.6,41,0.0 +11176,50,16.25,30,0.0 +11176,35,18,8,0.0 +11176,56,38,34,0.0 +11176,29,123.79,38,0.0 +11176,6,25,23,0.0 +11176,44,19.45,37,0.0 +11176,71,21.5,13,0.0 +11176,63,43.9,44,0.0 +11176,77,13,10,0.0 +11176,60,34,31,0.0 +11176,19,9.2,11,0.0 +11177,63,43.9,12,0.0 +11177,8,40,44,0.0 +11177,40,18.4,44,0.0 +11177,36,19,26,0.0 +11177,16,17.45,48,0.0 +11177,66,17,20,0.0 +11177,17,39,18,0.0 +11177,77,13,10,0.0 +11177,10,31,49,0.0 +11177,41,9.65,1,0.0 +11177,68,12.5,33,0.0 +11177,60,34,42,0.0 +11177,4,22,42,0.0 +11177,64,33.25,15,0.0 +11177,25,14,3,0.0 +11177,55,24,41,0.0 +11177,73,15,32,0.0 +11177,56,38,43,0.0 +11177,27,43.9,43,0.0 +11177,14,23.25,31,0.0 +11177,1,18,9,0.0 +11177,38,263.5,13,0.0 +11177,58,13.25,9,0.0 +11177,30,25.89,49,0.0 +11177,43,46,30,0.0 +11177,9,97,19,0.0 +11177,57,19.5,7,0.0 +11177,28,45.6,13,0.0 +11177,24,4.5,33,0.0 +11177,47,9.5,4,0.0 +11177,74,10,27,0.0 +11177,5,21.35,22,0.0 +11177,35,18,36,0.0 +11177,42,14,12,0.0 +11177,2,19,18,0.0 +11177,70,15,2,0.0 +11177,69,36,14,0.0 +11177,65,21.05,18,0.0 +11177,11,21,45,0.0 +11177,48,12.75,19,0.0 +11177,21,10,15,0.0 +11177,61,28.5,8,0.0 +11177,67,14,37,0.0 +11177,12,38,28,0.0 +11177,75,7.75,26,0.0 +11177,15,15.5,43,0.0 +11177,3,10,1,0.0 +11177,34,14,21,0.0 +11177,29,123.79,14,0.0 +11177,22,21,9,0.0 +11177,59,55,41,0.0 +11177,26,31.23,34,0.0 +11177,51,53,30,0.0 +11177,62,49.3,41,0.0 +11177,13,6,27,0.0 +11177,37,26,1,0.0 +11177,71,21.5,25,0.0 +11177,31,12.5,50,0.0 +11177,52,7,49,0.0 +11177,44,19.45,35,0.0 +11177,49,20,36,0.0 +11177,7,30,47,0.0 +11177,19,9.2,15,0.0 +11177,72,34.8,32,0.0 +11177,39,18,36,0.0 +11177,23,9,50,0.0 +11177,6,25,24,0.0 +11177,20,81,46,0.0 +11177,45,9.5,32,0.0 +11177,50,16.25,10,0.0 +11177,54,7.45,13,0.0 +11177,32,32,46,0.0 +11177,76,18,34,0.0 +11177,18,62.5,23,0.0 +11177,53,32.8,48,0.0 +11178,46,12,18,0.0 +11178,17,39,29,0.0 +11178,65,21.05,20,0.0 +11178,70,15,4,0.0 +11178,66,17,17,0.0 +11178,60,34,22,0.0 +11178,12,38,32,0.0 +11178,58,13.25,10,0.0 +11178,21,10,30,0.0 +11178,64,33.25,4,0.0 +11178,45,9.5,28,0.0 +11178,59,55,25,0.0 +11178,31,12.5,46,0.0 +11178,50,16.25,24,0.0 +11178,32,32,34,0.0 +11178,77,13,48,0.0 +11178,40,18.4,24,0.0 +11178,74,10,8,0.0 +11178,69,36,26,0.0 +11178,55,24,24,0.0 +11178,20,81,16,0.0 +11178,13,6,30,0.0 +11178,24,4.5,2,0.0 +11178,49,20,33,0.0 +11178,14,23.25,38,0.0 +11178,35,18,16,0.0 +11178,68,12.5,6,0.0 +11178,34,14,34,0.0 +11178,29,123.79,36,0.0 +11178,15,15.5,50,0.0 +11178,10,31,39,0.0 +11178,8,40,16,0.0 +11178,62,49.3,13,0.0 +11178,9,97,41,0.0 +11178,53,32.8,18,0.0 +11178,39,18,34,0.0 +11178,75,7.75,44,0.0 +11178,37,26,22,0.0 +11178,23,9,32,0.0 +11178,5,21.35,36,0.0 +11178,42,14,30,0.0 +11178,52,7,20,0.0 +11178,19,9.2,30,0.0 +11178,51,53,41,0.0 +11178,26,31.23,24,0.0 +11178,73,15,4,0.0 +11178,44,19.45,39,0.0 +11178,63,43.9,27,0.0 +11178,67,14,34,0.0 +11179,13,6,12,0.0 +11179,60,34,3,0.0 +11179,41,9.65,2,0.0 +11179,69,36,5,0.0 +11179,5,21.35,39,0.0 +11179,53,32.8,35,0.0 +11179,23,9,15,0.0 +11179,74,10,32,0.0 +11179,68,12.5,27,0.0 +11179,43,46,39,0.0 +11179,27,43.9,48,0.0 +11179,21,10,26,0.0 +11179,11,21,11,0.0 +11179,35,18,26,0.0 +11179,29,123.79,28,0.0 +11179,16,17.45,33,0.0 +11179,1,18,6,0.0 +11179,37,26,12,0.0 +11179,54,7.45,44,0.0 +11179,28,45.6,23,0.0 +11179,59,55,2,0.0 +11179,73,15,33,0.0 +11179,19,9.2,7,0.0 +11179,75,7.75,9,0.0 +11179,61,28.5,9,0.0 +11179,12,38,43,0.0 +11179,42,14,14,0.0 +11179,9,97,4,0.0 +11179,56,38,12,0.0 +11179,57,19.5,18,0.0 +11179,65,21.05,49,0.0 +11179,51,53,26,0.0 +11179,2,19,21,0.0 +11179,76,18,9,0.0 +11179,10,31,48,0.0 +11179,31,12.5,13,0.0 +11179,64,33.25,42,0.0 +11179,3,10,41,0.0 +11179,52,7,21,0.0 +11179,55,24,21,0.0 +11179,46,12,18,0.0 +11179,26,31.23,47,0.0 +11179,8,40,30,0.0 +11179,14,23.25,17,0.0 +11179,50,16.25,48,0.0 +11179,39,18,26,0.0 +11179,24,4.5,42,0.0 +11179,44,19.45,24,0.0 +11179,32,32,5,0.0 +11179,58,13.25,3,0.0 +11179,70,15,37,0.0 +11179,47,9.5,45,0.0 +11179,18,62.5,39,0.0 +11179,33,2.5,13,0.0 +11179,72,34.8,42,0.0 +11179,25,14,20,0.0 +11179,77,13,1,0.0 +11179,20,81,2,0.0 +11179,7,30,24,0.0 +11180,70,15,27,0.0 +11180,23,9,11,0.0 +11180,71,21.5,11,0.0 +11180,28,45.6,16,0.0 +11180,44,19.45,27,0.0 +11180,10,31,37,0.0 +11180,64,33.25,17,0.0 +11180,40,18.4,24,0.0 +11180,68,12.5,32,0.0 +11180,46,12,41,0.0 +11180,50,16.25,22,0.0 +11180,5,21.35,3,0.0 +11180,72,34.8,47,0.0 +11180,11,21,14,0.0 +11180,15,15.5,3,0.0 +11180,6,25,9,0.0 +11180,62,49.3,17,0.0 +11180,43,46,17,0.0 +11180,48,12.75,36,0.0 +11180,22,21,3,0.0 +11180,51,53,21,0.0 +11180,47,9.5,42,0.0 +11180,19,9.2,19,0.0 +11180,74,10,16,0.0 +11180,59,55,50,0.0 +11180,20,81,48,0.0 +11180,75,7.75,44,0.0 +11180,36,19,44,0.0 +11180,76,18,18,0.0 +11180,41,9.65,36,0.0 +11180,58,13.25,23,0.0 +11180,52,7,32,0.0 +11180,30,25.89,45,0.0 +11180,3,10,2,0.0 +11180,13,6,31,0.0 +11180,2,19,30,0.0 +11180,7,30,37,0.0 +11180,37,26,18,0.0 +11180,26,31.23,47,0.0 +11180,12,38,18,0.0 +11180,53,32.8,40,0.0 +11180,69,36,29,0.0 +11180,35,18,22,0.0 +11180,17,39,48,0.0 +11180,57,19.5,36,0.0 +11180,24,4.5,33,0.0 +11180,45,9.5,31,0.0 +11180,39,18,25,0.0 +11181,43,46,29,0.0 +11181,13,6,23,0.0 +11181,35,18,45,0.0 +11181,69,36,45,0.0 +11181,62,49.3,22,0.0 +11181,28,45.6,40,0.0 +11181,53,32.8,1,0.0 +11181,75,7.75,42,0.0 +11181,29,123.79,36,0.0 +11181,33,2.5,10,0.0 +11181,30,25.89,4,0.0 +11181,34,14,40,0.0 +11181,27,43.9,39,0.0 +11181,40,18.4,46,0.0 +11181,6,25,17,0.0 +11181,11,21,12,0.0 +11181,36,19,4,0.0 +11181,50,16.25,45,0.0 +11181,19,9.2,34,0.0 +11181,16,17.45,30,0.0 +11181,9,97,17,0.0 +11181,56,38,23,0.0 +11181,4,22,4,0.0 +11181,74,10,4,0.0 +11181,59,55,34,0.0 +11181,18,62.5,28,0.0 +11181,57,19.5,7,0.0 +11181,2,19,23,0.0 +11181,54,7.45,45,0.0 +11181,58,13.25,27,0.0 +11181,77,13,16,0.0 +11182,19,9.2,26,0.0 +11182,61,28.5,20,0.0 +11182,23,9,37,0.0 +11182,5,21.35,11,0.0 +11182,6,25,4,0.0 +11182,38,263.5,49,0.0 +11182,18,62.5,22,0.0 +11182,49,20,42,0.0 +11182,27,43.9,8,0.0 +11182,9,97,17,0.0 +11182,62,49.3,14,0.0 +11182,73,15,23,0.0 +11182,8,40,23,0.0 +11182,68,12.5,36,0.0 +11182,10,31,21,0.0 +11182,20,81,25,0.0 +11182,45,9.5,1,0.0 +11182,14,23.25,17,0.0 +11182,2,19,34,0.0 +11182,7,30,15,0.0 +11182,59,55,33,0.0 +11182,30,25.89,12,0.0 +11182,29,123.79,17,0.0 +11182,1,18,10,0.0 +11182,76,18,12,0.0 +11182,54,7.45,44,0.0 +11182,22,21,45,0.0 +11182,24,4.5,46,0.0 +11182,53,32.8,45,0.0 +11182,67,14,25,0.0 +11182,43,46,47,0.0 +11182,21,10,40,0.0 +11182,64,33.25,2,0.0 +11182,31,12.5,28,0.0 +11182,40,18.4,7,0.0 +11182,52,7,7,0.0 +11182,66,17,21,0.0 +11182,47,9.5,6,0.0 +11182,34,14,39,0.0 +11182,39,18,21,0.0 +11182,69,36,49,0.0 +11182,42,14,1,0.0 +11182,11,21,31,0.0 +11182,37,26,41,0.0 +11182,3,10,6,0.0 +11183,4,22,9,0.0 +11183,26,31.23,50,0.0 +11183,57,19.5,41,0.0 +11183,49,20,16,0.0 +11183,50,16.25,13,0.0 +11183,62,49.3,48,0.0 +11183,1,18,18,0.0 +11183,36,19,45,0.0 +11183,31,12.5,16,0.0 +11183,21,10,33,0.0 +11183,35,18,33,0.0 +11183,60,34,33,0.0 +11184,72,34.8,42,0.0 +11184,57,19.5,37,0.0 +11184,75,7.75,21,0.0 +11184,73,15,7,0.0 +11184,28,45.6,5,0.0 +11184,37,26,39,0.0 +11184,16,17.45,40,0.0 +11184,60,34,33,0.0 +11184,53,32.8,15,0.0 +11184,46,12,4,0.0 +11184,74,10,35,0.0 +11184,52,7,15,0.0 +11184,64,33.25,20,0.0 +11184,4,22,20,0.0 +11184,59,55,8,0.0 +11184,62,49.3,40,0.0 +11184,66,17,44,0.0 +11184,65,21.05,45,0.0 +11184,19,9.2,39,0.0 +11184,5,21.35,35,0.0 +11184,44,19.45,23,0.0 +11184,17,39,48,0.0 +11184,55,24,33,0.0 +11184,61,28.5,25,0.0 +11184,38,263.5,24,0.0 +11184,51,53,22,0.0 +11184,25,14,9,0.0 +11184,15,15.5,11,0.0 +11184,31,12.5,23,0.0 +11184,13,6,32,0.0 +11184,76,18,16,0.0 +11184,20,81,18,0.0 +11184,69,36,6,0.0 +11184,29,123.79,22,0.0 +11184,27,43.9,31,0.0 +11184,39,18,44,0.0 +11184,56,38,9,0.0 +11184,42,14,25,0.0 +11184,49,20,4,0.0 +11184,8,40,44,0.0 +11184,71,21.5,46,0.0 +11184,41,9.65,31,0.0 +11184,36,19,10,0.0 +11184,24,4.5,3,0.0 +11184,58,13.25,47,0.0 +11184,50,16.25,39,0.0 +11184,47,9.5,48,0.0 +11184,18,62.5,33,0.0 +11184,77,13,29,0.0 +11184,70,15,7,0.0 +11184,10,31,36,0.0 +11184,26,31.23,25,0.0 +11184,11,21,28,0.0 +11184,12,38,29,0.0 +11184,21,10,15,0.0 +11185,3,10,36,0.0 +11185,67,14,25,0.0 +11185,64,33.25,14,0.0 +11185,11,21,22,0.0 +11185,21,10,42,0.0 +11185,31,12.5,34,0.0 +11185,55,24,28,0.0 +11185,32,32,17,0.0 +11185,30,25.89,1,0.0 +11185,41,9.65,23,0.0 +11185,53,32.8,24,0.0 +11185,29,123.79,14,0.0 +11185,49,20,37,0.0 +11185,13,6,7,0.0 +11185,48,12.75,20,0.0 +11185,34,14,15,0.0 +11185,56,38,35,0.0 +11185,4,22,4,0.0 +11185,28,45.6,6,0.0 +11185,1,18,30,0.0 +11185,18,62.5,10,0.0 +11185,45,9.5,48,0.0 +11185,77,13,4,0.0 +11185,76,18,34,0.0 +11185,57,19.5,23,0.0 +11185,54,7.45,33,0.0 +11185,38,263.5,25,0.0 +11185,51,53,3,0.0 +11185,9,97,36,0.0 +11185,33,2.5,48,0.0 +11185,25,14,33,0.0 +11185,68,12.5,34,0.0 +11185,19,9.2,42,0.0 +11185,15,15.5,42,0.0 +11185,74,10,4,0.0 +11185,63,43.9,26,0.0 +11185,72,34.8,9,0.0 +11185,46,12,37,0.0 +11185,22,21,1,0.0 +11185,65,21.05,32,0.0 +11185,59,55,28,0.0 +11185,40,18.4,42,0.0 +11185,43,46,5,0.0 +11185,44,19.45,49,0.0 +11185,36,19,38,0.0 +11185,27,43.9,46,0.0 +11185,75,7.75,44,0.0 +11185,7,30,26,0.0 +11186,56,38,39,0.0 +11186,59,55,49,0.0 +11186,42,14,3,0.0 +11186,18,62.5,9,0.0 +11186,31,12.5,18,0.0 +11186,8,40,14,0.0 +11186,51,53,39,0.0 +11186,26,31.23,39,0.0 +11186,74,10,31,0.0 +11186,6,25,40,0.0 +11186,65,21.05,41,0.0 +11186,3,10,21,0.0 +11186,36,19,12,0.0 +11186,47,9.5,26,0.0 +11186,77,13,43,0.0 +11186,58,13.25,44,0.0 +11186,49,20,10,0.0 +11186,4,22,34,0.0 +11186,64,33.25,23,0.0 +11186,63,43.9,41,0.0 +11186,30,25.89,17,0.0 +11186,69,36,18,0.0 +11186,54,7.45,39,0.0 +11186,41,9.65,35,0.0 +11186,75,7.75,41,0.0 +11186,43,46,43,0.0 +11186,34,14,26,0.0 +11186,16,17.45,25,0.0 +11186,68,12.5,5,0.0 +11186,9,97,9,0.0 +11186,60,34,42,0.0 +11186,70,15,50,0.0 +11186,13,6,28,0.0 +11186,48,12.75,50,0.0 +11186,67,14,33,0.0 +11186,15,15.5,17,0.0 +11186,40,18.4,38,0.0 +11186,2,19,3,0.0 +11186,10,31,16,0.0 +11186,23,9,41,0.0 +11186,44,19.45,5,0.0 +11186,32,32,42,0.0 +11186,62,49.3,18,0.0 +11186,1,18,34,0.0 +11186,46,12,42,0.0 +11186,27,43.9,4,0.0 +11186,11,21,5,0.0 +11186,25,14,13,0.0 +11186,45,9.5,22,0.0 +11186,66,17,17,0.0 +11187,17,39,46,0.0 +11187,75,7.75,26,0.0 +11187,72,34.8,47,0.0 +11187,70,15,24,0.0 +11187,21,10,11,0.0 +11187,29,123.79,6,0.0 +11187,66,17,40,0.0 +11187,76,18,11,0.0 +11187,23,9,23,0.0 +11187,12,38,27,0.0 +11187,34,14,23,0.0 +11187,49,20,26,0.0 +11187,64,33.25,40,0.0 +11188,52,7,27,0.0 +11188,45,9.5,14,0.0 +11188,13,6,25,0.0 +11188,41,9.65,23,0.0 +11188,3,10,1,0.0 +11188,66,17,49,0.0 +11188,76,18,44,0.0 +11188,1,18,2,0.0 +11188,64,33.25,46,0.0 +11188,34,14,14,0.0 +11188,30,25.89,48,0.0 +11188,58,13.25,2,0.0 +11188,9,97,36,0.0 +11188,60,34,40,0.0 +11188,20,81,20,0.0 +11188,67,14,49,0.0 +11188,11,21,37,0.0 +11188,8,40,46,0.0 +11188,65,21.05,29,0.0 +11188,23,9,40,0.0 +11188,27,43.9,5,0.0 +11188,72,34.8,40,0.0 +11188,35,18,35,0.0 +11188,32,32,36,0.0 +11188,70,15,28,0.0 +11188,33,2.5,32,0.0 +11188,4,22,18,0.0 +11188,51,53,33,0.0 +11188,29,123.79,15,0.0 +11188,47,9.5,5,0.0 +11188,77,13,35,0.0 +11188,39,18,42,0.0 +11188,73,15,48,0.0 +11188,6,25,21,0.0 +11188,50,16.25,22,0.0 +11188,7,30,49,0.0 +11188,62,49.3,22,0.0 +11188,24,4.5,13,0.0 +11188,54,7.45,46,0.0 +11188,69,36,42,0.0 +11188,19,9.2,20,0.0 +11188,25,14,17,0.0 +11188,75,7.75,12,0.0 +11188,48,12.75,43,0.0 +11188,38,263.5,8,0.0 +11188,2,19,13,0.0 +11188,42,14,40,0.0 +11188,31,12.5,11,0.0 +11188,5,21.35,19,0.0 +11188,16,17.45,49,0.0 +11188,56,38,6,0.0 +11188,53,32.8,18,0.0 +11188,17,39,6,0.0 +11188,15,15.5,14,0.0 +11188,22,21,8,0.0 +11188,40,18.4,14,0.0 +11188,55,24,14,0.0 +11188,46,12,41,0.0 +11188,10,31,4,0.0 +11188,57,19.5,36,0.0 +11188,28,45.6,14,0.0 +11188,18,62.5,6,0.0 +11188,59,55,29,0.0 +11188,37,26,49,0.0 +11188,43,46,48,0.0 +11188,61,28.5,43,0.0 +11188,36,19,42,0.0 +11188,49,20,44,0.0 +11188,44,19.45,5,0.0 +11188,14,23.25,35,0.0 +11188,26,31.23,22,0.0 +11188,12,38,9,0.0 +11188,68,12.5,5,0.0 +11188,21,10,27,0.0 +11188,63,43.9,38,0.0 +11188,74,10,27,0.0 +11188,71,21.5,2,0.0 +11189,27,43.9,11,0.0 +11189,23,9,4,0.0 +11189,66,17,4,0.0 +11189,44,19.45,49,0.0 +11189,32,32,10,0.0 +11189,55,24,47,0.0 +11189,20,81,9,0.0 +11189,73,15,22,0.0 +11189,13,6,10,0.0 +11189,43,46,20,0.0 +11189,70,15,22,0.0 +11189,65,21.05,26,0.0 +11189,8,40,46,0.0 +11189,30,25.89,21,0.0 +11189,4,22,11,0.0 +11189,56,38,39,0.0 +11189,9,97,48,0.0 +11189,76,18,21,0.0 +11189,18,62.5,21,0.0 +11189,37,26,8,0.0 +11189,17,39,47,0.0 +11189,29,123.79,13,0.0 +11189,77,13,22,0.0 +11189,38,263.5,43,0.0 +11189,46,12,11,0.0 +11189,47,9.5,38,0.0 +11189,59,55,5,0.0 +11189,74,10,23,0.0 +11189,1,18,38,0.0 +11189,54,7.45,36,0.0 +11189,67,14,13,0.0 +11189,35,18,30,0.0 +11189,52,7,7,0.0 +11189,21,10,26,0.0 +11189,58,13.25,34,0.0 +11189,51,53,26,0.0 +11189,7,30,35,0.0 +11189,68,12.5,40,0.0 +11189,3,10,10,0.0 +11189,63,43.9,47,0.0 +11189,16,17.45,1,0.0 +11189,15,15.5,30,0.0 +11189,75,7.75,30,0.0 +11189,50,16.25,40,0.0 +11189,64,33.25,43,0.0 +11189,60,34,39,0.0 +11189,72,34.8,22,0.0 +11189,42,14,7,0.0 +11189,36,19,22,0.0 +11189,48,12.75,9,0.0 +11189,14,23.25,23,0.0 +11189,33,2.5,40,0.0 +11189,25,14,49,0.0 +11189,69,36,31,0.0 +11189,12,38,22,0.0 +11189,40,18.4,20,0.0 +11189,57,19.5,14,0.0 +11189,62,49.3,39,0.0 +11189,31,12.5,20,0.0 +11189,49,20,20,0.0 +11190,54,7.45,9,0.0 +11190,44,19.45,6,0.0 +11190,25,14,4,0.0 +11190,27,43.9,42,0.0 +11190,12,38,47,0.0 +11190,24,4.5,24,0.0 +11190,63,43.9,32,0.0 +11190,76,18,12,0.0 +11190,32,32,18,0.0 +11190,46,12,45,0.0 +11190,70,15,21,0.0 +11190,62,49.3,24,0.0 +11190,7,30,8,0.0 +11190,5,21.35,25,0.0 +11190,49,20,24,0.0 +11190,34,14,43,0.0 +11190,65,21.05,21,0.0 +11190,2,19,30,0.0 +11190,22,21,15,0.0 +11190,15,15.5,34,0.0 +11190,57,19.5,28,0.0 +11190,20,81,27,0.0 +11190,43,46,6,0.0 +11190,13,6,17,0.0 +11190,29,123.79,22,0.0 +11190,28,45.6,32,0.0 +11190,42,14,44,0.0 +11190,14,23.25,40,0.0 +11190,69,36,14,0.0 +11190,52,7,47,0.0 +11190,59,55,42,0.0 +11190,72,34.8,47,0.0 +11190,77,13,43,0.0 +11190,39,18,29,0.0 +11190,31,12.5,39,0.0 +11190,60,34,49,0.0 +11190,17,39,3,0.0 +11190,73,15,49,0.0 +11190,6,25,40,0.0 +11190,16,17.45,24,0.0 +11190,68,12.5,29,0.0 +11190,47,9.5,3,0.0 +11190,50,16.25,29,0.0 +11190,75,7.75,4,0.0 +11190,8,40,37,0.0 +11190,35,18,17,0.0 +11190,3,10,20,0.0 +11190,66,17,20,0.0 +11190,48,12.75,24,0.0 +11190,9,97,31,0.0 +11190,4,22,23,0.0 +11190,1,18,28,0.0 +11190,61,28.5,18,0.0 +11190,21,10,36,0.0 +11190,41,9.65,35,0.0 +11190,18,62.5,18,0.0 +11191,28,45.6,30,0.0 +11191,58,13.25,37,0.0 +11191,36,19,27,0.0 +11191,19,9.2,14,0.0 +11191,13,6,19,0.0 +11191,22,21,15,0.0 +11191,12,38,48,0.0 +11191,66,17,49,0.0 +11191,57,19.5,31,0.0 +11191,56,38,41,0.0 +11191,64,33.25,37,0.0 +11191,29,123.79,39,0.0 +11191,55,24,25,0.0 +11191,3,10,40,0.0 +11191,54,7.45,17,0.0 +11191,25,14,48,0.0 +11191,50,16.25,18,0.0 +11191,47,9.5,26,0.0 +11191,44,19.45,20,0.0 +11191,77,13,9,0.0 +11191,24,4.5,35,0.0 +11191,41,9.65,26,0.0 +11191,34,14,38,0.0 +11191,33,2.5,4,0.0 +11191,15,15.5,12,0.0 +11191,8,40,39,0.0 +11191,35,18,30,0.0 +11191,18,62.5,14,0.0 +11191,21,10,28,0.0 +11191,72,34.8,41,0.0 +11191,9,97,13,0.0 +11191,76,18,44,0.0 +11191,1,18,7,0.0 +11191,14,23.25,14,0.0 +11191,53,32.8,5,0.0 +11191,75,7.75,42,0.0 +11191,60,34,7,0.0 +11191,42,14,11,0.0 +11191,27,43.9,34,0.0 +11191,69,36,26,0.0 +11191,32,32,3,0.0 +11192,33,2.5,32,0.0 +11192,66,17,26,0.0 +11192,57,19.5,36,0.0 +11192,56,38,21,0.0 +11192,13,6,7,0.0 +11192,19,9.2,36,0.0 +11192,16,17.45,3,0.0 +11192,27,43.9,3,0.0 +11192,45,9.5,37,0.0 +11192,8,40,4,0.0 +11192,4,22,13,0.0 +11192,69,36,1,0.0 +11192,55,24,8,0.0 +11192,32,32,16,0.0 +11192,62,49.3,23,0.0 +11192,47,9.5,31,0.0 +11192,3,10,11,0.0 +11192,34,14,30,0.0 +11192,76,18,45,0.0 +11192,7,30,21,0.0 +11192,41,9.65,36,0.0 +11192,67,14,2,0.0 +11192,75,7.75,47,0.0 +11192,35,18,33,0.0 +11192,48,12.75,45,0.0 +11192,21,10,29,0.0 +11192,39,18,49,0.0 +11192,15,15.5,36,0.0 +11192,28,45.6,49,0.0 +11192,5,21.35,24,0.0 +11192,65,21.05,44,0.0 +11192,2,19,4,0.0 +11192,52,7,35,0.0 +11192,18,62.5,32,0.0 +11192,64,33.25,50,0.0 +11192,1,18,50,0.0 +11192,26,31.23,40,0.0 +11192,40,18.4,11,0.0 +11192,46,12,38,0.0 +11192,50,16.25,37,0.0 +11192,49,20,29,0.0 +11192,51,53,19,0.0 +11192,36,19,30,0.0 +11192,12,38,23,0.0 +11192,61,28.5,9,0.0 +11192,63,43.9,14,0.0 +11192,6,25,13,0.0 +11192,29,123.79,7,0.0 +11192,53,32.8,23,0.0 +11192,24,4.5,46,0.0 +11192,11,21,13,0.0 +11192,31,12.5,29,0.0 +11192,17,39,27,0.0 +11192,23,9,5,0.0 +11192,20,81,1,0.0 +11192,30,25.89,43,0.0 +11192,73,15,38,0.0 +11192,10,31,45,0.0 +11192,54,7.45,26,0.0 +11192,14,23.25,50,0.0 +11192,22,21,8,0.0 +11193,25,14,17,0.0 +11193,65,21.05,24,0.0 +11193,32,32,28,0.0 +11193,34,14,42,0.0 +11193,23,9,41,0.0 +11193,18,62.5,22,0.0 +11193,10,31,7,0.0 +11193,53,32.8,42,0.0 +11193,55,24,2,0.0 +11193,67,14,23,0.0 +11193,37,26,28,0.0 +11193,63,43.9,41,0.0 +11193,40,18.4,36,0.0 +11193,51,53,20,0.0 +11193,45,9.5,25,0.0 +11193,8,40,11,0.0 +11193,49,20,39,0.0 +11193,6,25,4,0.0 +11193,59,55,50,0.0 +11193,64,33.25,29,0.0 +11193,2,19,40,0.0 +11193,1,18,16,0.0 +11193,36,19,41,0.0 +11193,12,38,46,0.0 +11193,33,2.5,50,0.0 +11193,26,31.23,11,0.0 +11194,76,18,28,0.0 +11194,66,17,28,0.0 +11194,5,21.35,39,0.0 +11194,29,123.79,20,0.0 +11194,48,12.75,24,0.0 +11194,56,38,39,0.0 +11194,10,31,48,0.0 +11194,13,6,46,0.0 +11194,26,31.23,10,0.0 +11194,34,14,38,0.0 +11194,21,10,44,0.0 +11194,59,55,29,0.0 +11194,67,14,29,0.0 +11194,64,33.25,6,0.0 +11194,74,10,5,0.0 +11194,36,19,12,0.0 +11194,65,21.05,37,0.0 +11194,52,7,49,0.0 +11194,41,9.65,35,0.0 +11194,45,9.5,38,0.0 +11194,18,62.5,45,0.0 +11194,62,49.3,34,0.0 +11194,42,14,46,0.0 +11194,49,20,25,0.0 +11194,46,12,2,0.0 +11194,12,38,46,0.0 +11194,40,18.4,6,0.0 +11194,60,34,32,0.0 +11194,77,13,8,0.0 +11194,68,12.5,48,0.0 +11194,3,10,17,0.0 +11194,16,17.45,1,0.0 +11194,63,43.9,31,0.0 +11194,11,21,9,0.0 +11194,61,28.5,1,0.0 +11194,43,46,1,0.0 +11194,9,97,21,0.0 +11194,23,9,18,0.0 +11194,1,18,31,0.0 +11194,28,45.6,20,0.0 +11195,53,32.8,50,0.0 +11195,15,15.5,10,0.0 +11195,41,9.65,8,0.0 +11195,52,7,40,0.0 +11195,71,21.5,23,0.0 +11195,13,6,26,0.0 +11195,17,39,31,0.0 +11195,26,31.23,42,0.0 +11195,11,21,34,0.0 +11195,75,7.75,1,0.0 +11195,28,45.6,29,0.0 +11195,49,20,26,0.0 +11195,3,10,42,0.0 +11195,64,33.25,24,0.0 +11195,68,12.5,11,0.0 +11195,54,7.45,29,0.0 +11195,73,15,14,0.0 +11195,24,4.5,35,0.0 +11195,16,17.45,3,0.0 +11195,62,49.3,2,0.0 +11195,31,12.5,46,0.0 +11195,33,2.5,43,0.0 +11195,72,34.8,24,0.0 +11195,74,10,14,0.0 +11195,51,53,42,0.0 +11196,43,46,36,0.0 +11196,72,34.8,32,0.0 +11196,11,21,26,0.0 +11196,62,49.3,44,0.0 +11196,49,20,13,0.0 +11196,10,31,22,0.0 +11196,9,97,28,0.0 +11196,58,13.25,46,0.0 +11196,55,24,25,0.0 +11196,66,17,14,0.0 +11196,40,18.4,28,0.0 +11196,12,38,37,0.0 +11196,17,39,3,0.0 +11196,16,17.45,11,0.0 +11196,2,19,49,0.0 +11196,15,15.5,11,0.0 +11196,18,62.5,26,0.0 +11196,37,26,48,0.0 +11196,70,15,38,0.0 +11196,73,15,38,0.0 +11196,50,16.25,40,0.0 +11196,31,12.5,24,0.0 +11196,64,33.25,28,0.0 +11196,74,10,35,0.0 +11196,47,9.5,19,0.0 +11196,60,34,39,0.0 +11196,19,9.2,14,0.0 +11196,25,14,7,0.0 +11196,77,13,19,0.0 +11196,23,9,10,0.0 +11196,38,263.5,13,0.0 +11196,46,12,2,0.0 +11196,76,18,47,0.0 +11196,24,4.5,2,0.0 +11196,3,10,25,0.0 +11196,6,25,19,0.0 +11196,63,43.9,27,0.0 +11196,35,18,41,0.0 +11196,39,18,37,0.0 +11196,68,12.5,33,0.0 +11196,4,22,33,0.0 +11196,48,12.75,36,0.0 +11196,69,36,44,0.0 +11196,65,21.05,4,0.0 +11196,8,40,12,0.0 +11196,34,14,47,0.0 +11196,54,7.45,46,0.0 +11196,20,81,40,0.0 +11196,56,38,14,0.0 +11196,5,21.35,26,0.0 +11196,53,32.8,28,0.0 +11196,30,25.89,41,0.0 +11196,27,43.9,47,0.0 +11196,21,10,46,0.0 +11196,41,9.65,35,0.0 +11196,59,55,20,0.0 +11196,32,32,48,0.0 +11196,61,28.5,26,0.0 +11196,45,9.5,37,0.0 +11196,44,19.45,21,0.0 +11196,28,45.6,32,0.0 +11196,7,30,41,0.0 +11196,14,23.25,5,0.0 +11197,13,6,24,0.0 +11197,5,21.35,4,0.0 +11197,26,31.23,36,0.0 +11197,37,26,6,0.0 +11197,48,12.75,47,0.0 +11197,64,33.25,19,0.0 +11197,7,30,25,0.0 +11197,3,10,38,0.0 +11197,61,28.5,8,0.0 +11197,1,18,14,0.0 +11197,52,7,16,0.0 +11197,19,9.2,8,0.0 +11197,15,15.5,20,0.0 +11198,57,19.5,17,0.0 +11198,6,25,19,0.0 +11198,17,39,48,0.0 +11198,65,21.05,19,0.0 +11198,59,55,34,0.0 +11198,22,21,2,0.0 +11198,1,18,13,0.0 +11198,70,15,47,0.0 +11198,2,19,39,0.0 +11198,54,7.45,12,0.0 +11198,15,15.5,22,0.0 +11198,63,43.9,41,0.0 +11198,47,9.5,34,0.0 +11198,34,14,47,0.0 +11198,43,46,47,0.0 +11198,73,15,4,0.0 +11198,19,9.2,47,0.0 +11198,16,17.45,2,0.0 +11198,58,13.25,5,0.0 +11198,41,9.65,48,0.0 +11198,39,18,6,0.0 +11198,50,16.25,24,0.0 +11198,32,32,9,0.0 +11198,33,2.5,6,0.0 +11198,11,21,18,0.0 +11198,77,13,7,0.0 +11198,64,33.25,28,0.0 +11198,56,38,44,0.0 +11198,24,4.5,9,0.0 +11198,45,9.5,31,0.0 +11198,51,53,27,0.0 +11198,31,12.5,36,0.0 +11198,42,14,44,0.0 +11198,35,18,25,0.0 +11198,68,12.5,27,0.0 +11198,13,6,32,0.0 +11198,36,19,45,0.0 +11198,53,32.8,16,0.0 +11198,67,14,37,0.0 +11198,75,7.75,28,0.0 +11198,25,14,12,0.0 +11198,74,10,4,0.0 +11198,8,40,11,0.0 +11198,9,97,32,0.0 +11198,10,31,33,0.0 +11198,5,21.35,37,0.0 +11198,27,43.9,17,0.0 +11198,72,34.8,24,0.0 +11198,66,17,10,0.0 +11198,18,62.5,22,0.0 +11198,69,36,28,0.0 +11198,14,23.25,43,0.0 +11198,52,7,43,0.0 +11198,30,25.89,9,0.0 +11198,44,19.45,34,0.0 +11198,48,12.75,10,0.0 +11198,3,10,31,0.0 +11198,40,18.4,40,0.0 +11199,50,16.25,10,0.0 +11199,35,18,20,0.0 +11199,46,12,15,0.0 +11199,64,33.25,27,0.0 +11199,43,46,33,0.0 +11199,58,13.25,6,0.0 +11199,49,20,38,0.0 +11199,8,40,24,0.0 +11199,40,18.4,16,0.0 +11199,14,23.25,9,0.0 +11200,19,9.2,5,0.0 +11200,49,20,3,0.0 +11200,28,45.6,6,0.0 +11200,32,32,6,0.0 +11200,14,23.25,25,0.0 +11200,30,25.89,2,0.0 +11200,65,21.05,41,0.0 +11200,50,16.25,22,0.0 +11200,11,21,35,0.0 +11200,4,22,3,0.0 +11200,10,31,5,0.0 +11200,70,15,39,0.0 +11200,64,33.25,30,0.0 +11200,54,7.45,12,0.0 +11200,71,21.5,12,0.0 +11200,21,10,37,0.0 +11200,18,62.5,31,0.0 +11200,39,18,6,0.0 +11200,20,81,5,0.0 +11200,1,18,4,0.0 +11200,44,19.45,1,0.0 +11200,12,38,3,0.0 +11200,37,26,34,0.0 +11200,13,6,48,0.0 +11200,46,12,23,0.0 +11200,61,28.5,9,0.0 +11200,24,4.5,19,0.0 +11200,31,12.5,11,0.0 +11200,16,17.45,41,0.0 +11200,25,14,29,0.0 +11200,2,19,38,0.0 +11200,74,10,50,0.0 +11200,3,10,18,0.0 +11200,52,7,50,0.0 +11200,48,12.75,9,0.0 +11200,6,25,44,0.0 +11200,62,49.3,15,0.0 +11200,33,2.5,1,0.0 +11200,73,15,29,0.0 +11201,59,55,43,0.0 +11201,42,14,38,0.0 +11201,75,7.75,25,0.0 +11201,13,6,20,0.0 +11201,24,4.5,16,0.0 +11201,31,12.5,42,0.0 +11202,14,23.25,32,0.0 +11202,43,46,18,0.0 +11202,46,12,42,0.0 +11202,71,21.5,26,0.0 +11202,49,20,48,0.0 +11202,54,7.45,40,0.0 +11202,23,9,15,0.0 +11202,24,4.5,20,0.0 +11202,65,21.05,49,0.0 +11202,62,49.3,27,0.0 +11202,44,19.45,41,0.0 +11202,53,32.8,14,0.0 +11202,72,34.8,13,0.0 +11202,74,10,9,0.0 +11202,1,18,26,0.0 +11202,37,26,17,0.0 +11202,39,18,20,0.0 +11202,67,14,4,0.0 +11202,41,9.65,32,0.0 +11202,45,9.5,43,0.0 +11202,75,7.75,16,0.0 +11202,3,10,34,0.0 +11202,58,13.25,35,0.0 +11202,25,14,19,0.0 +11202,47,9.5,45,0.0 +11202,73,15,25,0.0 +11202,21,10,48,0.0 +11202,36,19,15,0.0 +11202,30,25.89,30,0.0 +11202,16,17.45,47,0.0 +11202,60,34,50,0.0 +11202,22,21,6,0.0 +11202,57,19.5,21,0.0 +11202,40,18.4,33,0.0 +11202,32,32,35,0.0 +11202,34,14,32,0.0 +11202,63,43.9,28,0.0 +11202,70,15,36,0.0 +11202,10,31,38,0.0 +11202,20,81,7,0.0 +11202,76,18,36,0.0 +11202,4,22,13,0.0 +11202,55,24,29,0.0 +11202,26,31.23,7,0.0 +11202,19,9.2,50,0.0 +11202,7,30,15,0.0 +11202,52,7,1,0.0 +11202,59,55,2,0.0 +11202,11,21,1,0.0 +11203,76,18,30,0.0 +11203,17,39,8,0.0 +11203,56,38,21,0.0 +11203,3,10,41,0.0 +11203,37,26,17,0.0 +11203,32,32,17,0.0 +11203,57,19.5,27,0.0 +11203,39,18,6,0.0 +11203,20,81,9,0.0 +11203,52,7,9,0.0 +11203,11,21,6,0.0 +11203,28,45.6,2,0.0 +11203,74,10,39,0.0 +11203,44,19.45,45,0.0 +11203,73,15,23,0.0 +11203,18,62.5,34,0.0 +11203,27,43.9,37,0.0 +11203,51,53,24,0.0 +11203,35,18,5,0.0 +11203,46,12,1,0.0 +11203,4,22,38,0.0 +11203,75,7.75,19,0.0 +11203,5,21.35,7,0.0 +11203,50,16.25,20,0.0 +11203,48,12.75,4,0.0 +11203,23,9,13,0.0 +11203,60,34,26,0.0 +11203,41,9.65,10,0.0 +11203,33,2.5,19,0.0 +11203,24,4.5,47,0.0 +11203,6,25,18,0.0 +11203,40,18.4,1,0.0 +11203,43,46,14,0.0 +11203,65,21.05,24,0.0 +11204,73,15,2,0.0 +11204,30,25.89,6,0.0 +11204,26,31.23,33,0.0 +11204,52,7,25,0.0 +11204,24,4.5,4,0.0 +11204,76,18,17,0.0 +11204,75,7.75,28,0.0 +11204,72,34.8,21,0.0 +11204,32,32,27,0.0 +11204,40,18.4,35,0.0 +11204,23,9,46,0.0 +11204,64,33.25,12,0.0 +11204,38,263.5,42,0.0 +11204,54,7.45,31,0.0 +11204,1,18,2,0.0 +11204,31,12.5,47,0.0 +11204,43,46,46,0.0 +11204,33,2.5,41,0.0 +11204,66,17,23,0.0 +11204,51,53,16,0.0 +11204,36,19,38,0.0 +11204,42,14,6,0.0 +11204,65,21.05,27,0.0 +11204,4,22,46,0.0 +11204,17,39,15,0.0 +11204,49,20,49,0.0 +11204,35,18,31,0.0 +11204,13,6,33,0.0 +11204,10,31,18,0.0 +11204,7,30,25,0.0 +11204,2,19,9,0.0 +11204,71,21.5,44,0.0 +11204,69,36,46,0.0 +11204,55,24,21,0.0 +11204,56,38,36,0.0 +11204,57,19.5,3,0.0 +11204,48,12.75,29,0.0 +11204,60,34,20,0.0 +11204,14,23.25,25,0.0 +11204,5,21.35,20,0.0 +11204,6,25,32,0.0 +11204,8,40,7,0.0 +11204,9,97,35,0.0 +11204,41,9.65,25,0.0 +11204,28,45.6,32,0.0 +11204,19,9.2,24,0.0 +11204,63,43.9,35,0.0 +11204,77,13,33,0.0 +11204,34,14,1,0.0 +11204,3,10,15,0.0 +11204,61,28.5,22,0.0 +11204,39,18,10,0.0 +11204,45,9.5,13,0.0 +11204,25,14,45,0.0 +11204,27,43.9,37,0.0 +11204,70,15,21,0.0 +11204,58,13.25,11,0.0 +11204,44,19.45,37,0.0 +11204,68,12.5,47,0.0 +11204,18,62.5,45,0.0 +11204,53,32.8,10,0.0 +11204,47,9.5,21,0.0 +11204,22,21,41,0.0 +11204,50,16.25,23,0.0 +11204,21,10,42,0.0 +11204,46,12,49,0.0 +11205,68,12.5,50,0.0 +11205,64,33.25,24,0.0 +11205,23,9,1,0.0 +11205,50,16.25,15,0.0 +11205,25,14,20,0.0 +11205,65,21.05,27,0.0 +11205,28,45.6,6,0.0 +11205,44,19.45,27,0.0 +11205,70,15,16,0.0 +11205,37,26,2,0.0 +11205,26,31.23,45,0.0 +11205,52,7,33,0.0 +11205,53,32.8,16,0.0 +11205,16,17.45,21,0.0 +11205,54,7.45,41,0.0 +11205,41,9.65,28,0.0 +11205,40,18.4,41,0.0 +11205,57,19.5,17,0.0 +11205,12,38,37,0.0 +11205,59,55,13,0.0 +11205,36,19,1,0.0 +11205,48,12.75,4,0.0 +11205,74,10,39,0.0 +11205,75,7.75,48,0.0 +11205,1,18,11,0.0 +11205,27,43.9,19,0.0 +11205,42,14,39,0.0 +11205,4,22,4,0.0 +11205,3,10,39,0.0 +11205,45,9.5,46,0.0 +11205,67,14,20,0.0 +11205,46,12,19,0.0 +11205,11,21,38,0.0 +11205,76,18,49,0.0 +11205,77,13,34,0.0 +11206,14,23.25,18,0.0 +11206,77,13,39,0.0 +11206,44,19.45,8,0.0 +11206,74,10,4,0.0 +11206,48,12.75,6,0.0 +11206,12,38,32,0.0 +11207,30,25.89,16,0.0 +11207,33,2.5,49,0.0 +11207,28,45.6,1,0.0 +11207,19,9.2,26,0.0 +11207,47,9.5,25,0.0 +11207,70,15,32,0.0 +11207,71,21.5,25,0.0 +11207,6,25,11,0.0 +11207,22,21,39,0.0 +11207,34,14,45,0.0 +11207,31,12.5,34,0.0 +11207,36,19,7,0.0 +11207,10,31,2,0.0 +11207,66,17,34,0.0 +11207,60,34,33,0.0 +11207,62,49.3,47,0.0 +11207,12,38,11,0.0 +11207,23,9,25,0.0 +11207,14,23.25,41,0.0 +11207,49,20,31,0.0 +11207,65,21.05,43,0.0 +11207,13,6,46,0.0 +11207,1,18,13,0.0 +11207,39,18,31,0.0 +11207,69,36,20,0.0 +11207,51,53,34,0.0 +11207,26,31.23,24,0.0 +11207,55,24,17,0.0 +11207,8,40,41,0.0 +11207,53,32.8,17,0.0 +11207,64,33.25,41,0.0 +11207,11,21,20,0.0 +11207,61,28.5,40,0.0 +11207,41,9.65,22,0.0 +11207,77,13,13,0.0 +11207,67,14,8,0.0 +11207,18,62.5,11,0.0 +11207,5,21.35,18,0.0 +11207,21,10,10,0.0 +11207,43,46,23,0.0 +11207,45,9.5,28,0.0 +11207,27,43.9,29,0.0 +11207,48,12.75,19,0.0 +11207,38,263.5,48,0.0 +11207,37,26,2,0.0 +11207,72,34.8,1,0.0 +11207,56,38,10,0.0 +11207,16,17.45,30,0.0 +11207,42,14,20,0.0 +11207,9,97,26,0.0 +11207,50,16.25,29,0.0 +11207,46,12,49,0.0 +11208,73,15,49,0.0 +11208,18,62.5,26,0.0 +11208,53,32.8,14,0.0 +11208,43,46,1,0.0 +11208,42,14,12,0.0 +11208,70,15,8,0.0 +11208,29,123.79,23,0.0 +11208,16,17.45,47,0.0 +11208,63,43.9,6,0.0 +11208,67,14,20,0.0 +11208,32,32,50,0.0 +11208,9,97,6,0.0 +11208,14,23.25,39,0.0 +11208,23,9,27,0.0 +11208,3,10,49,0.0 +11208,33,2.5,49,0.0 +11208,34,14,45,0.0 +11208,60,34,14,0.0 +11208,11,21,32,0.0 +11208,56,38,29,0.0 +11208,44,19.45,12,0.0 +11208,28,45.6,33,0.0 +11208,30,25.89,1,0.0 +11208,46,12,40,0.0 +11208,38,263.5,4,0.0 +11208,50,16.25,35,0.0 +11208,64,33.25,39,0.0 +11208,7,30,8,0.0 +11208,6,25,4,0.0 +11208,13,6,27,0.0 +11208,49,20,40,0.0 +11208,40,18.4,45,0.0 +11208,51,53,19,0.0 +11208,59,55,17,0.0 +11208,24,4.5,26,0.0 +11208,26,31.23,22,0.0 +11209,8,40,3,0.0 +11209,68,12.5,40,0.0 +11209,19,9.2,3,0.0 +11209,40,18.4,13,0.0 +11209,45,9.5,48,0.0 +11209,75,7.75,6,0.0 +11209,70,15,38,0.0 +11209,21,10,44,0.0 +11209,61,28.5,42,0.0 +11209,2,19,36,0.0 +11209,55,24,17,0.0 +11209,26,31.23,36,0.0 +11209,24,4.5,16,0.0 +11209,11,21,24,0.0 +11209,54,7.45,47,0.0 +11209,77,13,21,0.0 +11209,22,21,35,0.0 +11209,3,10,42,0.0 +11209,35,18,27,0.0 +11209,1,18,22,0.0 +11209,50,16.25,19,0.0 +11209,43,46,25,0.0 +11209,66,17,14,0.0 +11209,37,26,27,0.0 +11209,20,81,13,0.0 +11209,18,62.5,16,0.0 +11209,53,32.8,22,0.0 +11209,39,18,1,0.0 +11209,13,6,3,0.0 +11209,69,36,30,0.0 +11209,15,15.5,27,0.0 +11209,25,14,50,0.0 +11209,7,30,31,0.0 +11210,6,25,24,0.0 +11210,75,7.75,14,0.0 +11210,32,32,21,0.0 +11210,21,10,19,0.0 +11210,25,14,38,0.0 +11210,53,32.8,34,0.0 +11210,43,46,47,0.0 +11210,59,55,11,0.0 +11210,68,12.5,19,0.0 +11210,76,18,15,0.0 +11210,26,31.23,19,0.0 +11210,7,30,43,0.0 +11210,37,26,35,0.0 +11210,27,43.9,8,0.0 +11210,36,19,36,0.0 +11210,40,18.4,47,0.0 +11210,41,9.65,44,0.0 +11210,14,23.25,39,0.0 +11210,30,25.89,43,0.0 +11210,74,10,33,0.0 +11210,10,31,4,0.0 +11210,54,7.45,35,0.0 +11210,23,9,44,0.0 +11210,69,36,7,0.0 +11210,34,14,36,0.0 +11210,58,13.25,25,0.0 +11210,46,12,33,0.0 +11210,35,18,26,0.0 +11210,65,21.05,8,0.0 +11210,45,9.5,16,0.0 +11210,28,45.6,1,0.0 +11210,13,6,49,0.0 +11210,20,81,32,0.0 +11210,17,39,41,0.0 +11210,56,38,18,0.0 +11210,48,12.75,7,0.0 +11210,38,263.5,4,0.0 +11210,31,12.5,46,0.0 +11210,9,97,17,0.0 +11210,67,14,14,0.0 +11210,33,2.5,8,0.0 +11210,1,18,40,0.0 +11210,62,49.3,14,0.0 +11210,60,34,45,0.0 +11210,51,53,23,0.0 +11210,55,24,30,0.0 +11210,57,19.5,11,0.0 +11210,72,34.8,3,0.0 +11210,73,15,43,0.0 +11210,64,33.25,8,0.0 +11210,5,21.35,37,0.0 +11210,24,4.5,24,0.0 +11210,50,16.25,28,0.0 +11210,19,9.2,6,0.0 +11210,42,14,13,0.0 +11210,39,18,17,0.0 +11210,18,62.5,13,0.0 +11210,11,21,21,0.0 +11210,12,38,4,0.0 +11210,3,10,3,0.0 +11210,47,9.5,11,0.0 +11210,61,28.5,32,0.0 +11210,70,15,43,0.0 +11210,22,21,7,0.0 +11210,29,123.79,22,0.0 +11210,77,13,6,0.0 +11211,75,7.75,13,0.0 +11211,26,31.23,14,0.0 +11211,24,4.5,42,0.0 +11211,58,13.25,43,0.0 +11211,19,9.2,4,0.0 +11211,68,12.5,22,0.0 +11211,72,34.8,27,0.0 +11211,49,20,20,0.0 +11211,11,21,31,0.0 +11211,57,19.5,49,0.0 +11211,8,40,31,0.0 +11211,10,31,37,0.0 +11211,41,9.65,50,0.0 +11211,23,9,41,0.0 +11211,12,38,7,0.0 +11211,54,7.45,47,0.0 +11211,27,43.9,15,0.0 +11211,29,123.79,25,0.0 +11211,45,9.5,11,0.0 +11211,65,21.05,20,0.0 +11211,51,53,2,0.0 +11211,70,15,42,0.0 +11212,57,19.5,19,0.0 +11212,18,62.5,22,0.0 +11212,66,17,34,0.0 +11212,38,263.5,40,0.0 +11212,43,46,23,0.0 +11212,4,22,20,0.0 +11212,60,34,25,0.0 +11212,31,12.5,4,0.0 +11212,10,31,14,0.0 +11212,65,21.05,21,0.0 +11212,6,25,18,0.0 +11212,19,9.2,20,0.0 +11212,17,39,19,0.0 +11212,20,81,9,0.0 +11212,24,4.5,47,0.0 +11212,22,21,29,0.0 +11212,1,18,8,0.0 +11212,59,55,17,0.0 +11212,58,13.25,41,0.0 +11212,9,97,8,0.0 +11212,69,36,16,0.0 +11212,39,18,20,0.0 +11212,51,53,11,0.0 +11212,63,43.9,30,0.0 +11212,52,7,5,0.0 +11212,47,9.5,34,0.0 +11212,49,20,10,0.0 +11212,12,38,10,0.0 +11212,45,9.5,9,0.0 +11212,64,33.25,2,0.0 +11212,5,21.35,24,0.0 +11212,25,14,46,0.0 +11212,30,25.89,15,0.0 +11212,33,2.5,4,0.0 +11212,3,10,9,0.0 +11212,41,9.65,15,0.0 +11212,40,18.4,25,0.0 +11212,74,10,31,0.0 +11212,46,12,40,0.0 +11212,77,13,6,0.0 +11212,36,19,4,0.0 +11212,71,21.5,39,0.0 +11212,21,10,13,0.0 +11212,62,49.3,7,0.0 +11212,44,19.45,44,0.0 +11212,73,15,39,0.0 +11212,27,43.9,23,0.0 +11212,15,15.5,9,0.0 +11212,29,123.79,16,0.0 +11212,70,15,4,0.0 +11212,37,26,21,0.0 +11212,67,14,29,0.0 +11212,76,18,43,0.0 +11212,48,12.75,43,0.0 +11212,54,7.45,28,0.0 +11212,53,32.8,48,0.0 +11212,55,24,41,0.0 +11212,28,45.6,40,0.0 +11212,8,40,12,0.0 +11212,23,9,30,0.0 +11212,34,14,22,0.0 +11212,35,18,24,0.0 +11212,2,19,45,0.0 +11212,11,21,42,0.0 +11212,32,32,21,0.0 +11212,26,31.23,47,0.0 +11212,16,17.45,46,0.0 +11212,56,38,30,0.0 +11212,61,28.5,47,0.0 +11212,68,12.5,26,0.0 +11212,13,6,14,0.0 +11212,50,16.25,40,0.0 +11212,75,7.75,44,0.0 +11213,77,13,30,0.0 +11214,29,123.79,19,0.0 +11214,1,18,30,0.0 +11214,14,23.25,41,0.0 +11214,17,39,26,0.0 +11214,16,17.45,6,0.0 +11214,58,13.25,38,0.0 +11214,4,22,22,0.0 +11214,70,15,32,0.0 +11214,3,10,21,0.0 +11214,31,12.5,17,0.0 +11214,28,45.6,11,0.0 +11214,21,10,41,0.0 +11214,39,18,39,0.0 +11214,51,53,49,0.0 +11214,44,19.45,17,0.0 +11214,43,46,9,0.0 +11214,32,32,25,0.0 +11214,73,15,26,0.0 +11214,7,30,43,0.0 +11214,46,12,40,0.0 +11214,35,18,44,0.0 +11214,24,4.5,5,0.0 +11214,50,16.25,28,0.0 +11215,55,24,38,0.0 +11215,42,14,1,0.0 +11215,20,81,12,0.0 +11215,59,55,1,0.0 +11215,72,34.8,27,0.0 +11215,34,14,3,0.0 +11215,24,4.5,37,0.0 +11215,69,36,35,0.0 +11215,48,12.75,27,0.0 +11215,28,45.6,33,0.0 +11215,66,17,3,0.0 +11215,49,20,48,0.0 +11215,18,62.5,12,0.0 +11215,52,7,14,0.0 +11215,9,97,22,0.0 +11215,36,19,1,0.0 +11215,43,46,46,0.0 +11215,51,53,43,0.0 +11215,31,12.5,45,0.0 +11215,19,9.2,8,0.0 +11215,63,43.9,6,0.0 +11215,16,17.45,33,0.0 +11215,25,14,14,0.0 +11215,73,15,34,0.0 +11215,45,9.5,50,0.0 +11215,14,23.25,16,0.0 +11215,56,38,10,0.0 +11215,53,32.8,2,0.0 +11215,1,18,40,0.0 +11215,6,25,4,0.0 +11215,46,12,46,0.0 +11215,60,34,50,0.0 +11215,32,32,34,0.0 +11215,13,6,10,0.0 +11215,65,21.05,26,0.0 +11215,70,15,41,0.0 +11215,21,10,22,0.0 +11215,76,18,2,0.0 +11215,22,21,19,0.0 +11215,7,30,42,0.0 +11215,44,19.45,16,0.0 +11215,15,15.5,31,0.0 +11215,5,21.35,19,0.0 +11215,50,16.25,31,0.0 +11215,67,14,32,0.0 +11215,10,31,25,0.0 +11215,62,49.3,11,0.0 +11215,26,31.23,27,0.0 +11215,12,38,10,0.0 +11215,29,123.79,9,0.0 +11215,4,22,2,0.0 +11215,2,19,49,0.0 +11215,38,263.5,31,0.0 +11215,54,7.45,4,0.0 +11216,61,28.5,27,0.0 +11216,30,25.89,46,0.0 +11216,8,40,43,0.0 +11216,27,43.9,26,0.0 +11216,33,2.5,27,0.0 +11216,47,9.5,34,0.0 +11216,43,46,9,0.0 +11216,4,22,37,0.0 +11216,32,32,8,0.0 +11216,60,34,46,0.0 +11216,28,45.6,50,0.0 +11216,69,36,18,0.0 +11216,38,263.5,3,0.0 +11216,23,9,14,0.0 +11216,67,14,3,0.0 +11216,59,55,18,0.0 +11216,40,18.4,42,0.0 +11216,31,12.5,9,0.0 +11216,13,6,36,0.0 +11216,71,21.5,25,0.0 +11216,12,38,19,0.0 +11216,63,43.9,40,0.0 +11216,52,7,33,0.0 +11216,20,81,26,0.0 +11216,49,20,40,0.0 +11216,50,16.25,21,0.0 +11216,2,19,1,0.0 +11216,54,7.45,14,0.0 +11216,73,15,16,0.0 +11216,26,31.23,9,0.0 +11216,14,23.25,24,0.0 +11216,7,30,25,0.0 +11216,15,15.5,3,0.0 +11216,44,19.45,5,0.0 +11216,19,9.2,25,0.0 +11216,36,19,12,0.0 +11216,22,21,8,0.0 +11216,68,12.5,41,0.0 +11217,49,20,25,0.0 +11217,3,10,38,0.0 +11217,5,21.35,1,0.0 +11217,63,43.9,6,0.0 +11217,68,12.5,38,0.0 +11217,37,26,22,0.0 +11217,76,18,18,0.0 +11217,32,32,19,0.0 +11217,46,12,43,0.0 +11217,27,43.9,20,0.0 +11217,9,97,8,0.0 +11217,36,19,21,0.0 +11217,26,31.23,44,0.0 +11217,53,32.8,11,0.0 +11217,48,12.75,11,0.0 +11217,42,14,32,0.0 +11217,33,2.5,30,0.0 +11217,6,25,2,0.0 +11217,47,9.5,9,0.0 +11217,22,21,30,0.0 +11217,41,9.65,7,0.0 +11217,13,6,13,0.0 +11217,34,14,18,0.0 +11217,30,25.89,4,0.0 +11217,39,18,5,0.0 +11217,58,13.25,25,0.0 +11217,54,7.45,17,0.0 +11217,67,14,45,0.0 +11217,12,38,14,0.0 +11217,43,46,35,0.0 +11217,74,10,4,0.0 +11217,44,19.45,7,0.0 +11217,45,9.5,19,0.0 +11217,51,53,17,0.0 +11217,14,23.25,44,0.0 +11217,59,55,5,0.0 +11217,23,9,23,0.0 +11217,4,22,28,0.0 +11217,72,34.8,45,0.0 +11217,11,21,45,0.0 +11217,31,12.5,38,0.0 +11217,1,18,26,0.0 +11217,60,34,15,0.0 +11217,25,14,26,0.0 +11217,56,38,3,0.0 +11217,70,15,8,0.0 +11217,73,15,15,0.0 +11217,8,40,21,0.0 +11217,18,62.5,25,0.0 +11217,64,33.25,41,0.0 +11217,19,9.2,45,0.0 +11217,17,39,47,0.0 +11217,62,49.3,30,0.0 +11217,38,263.5,24,0.0 +11217,2,19,48,0.0 +11217,65,21.05,9,0.0 +11217,55,24,9,0.0 +11217,75,7.75,2,0.0 +11217,50,16.25,23,0.0 +11217,29,123.79,1,0.0 +11217,16,17.45,9,0.0 +11217,35,18,15,0.0 +11217,21,10,5,0.0 +11217,71,21.5,20,0.0 +11217,28,45.6,29,0.0 +11217,20,81,45,0.0 +11217,10,31,10,0.0 +11217,57,19.5,31,0.0 +11217,66,17,30,0.0 +11217,61,28.5,26,0.0 +11217,15,15.5,38,0.0 +11217,69,36,35,0.0 +11217,7,30,15,0.0 +11217,24,4.5,13,0.0 +11218,32,32,32,0.0 +11218,65,21.05,3,0.0 +11218,16,17.45,26,0.0 +11218,54,7.45,27,0.0 +11218,69,36,10,0.0 +11218,73,15,45,0.0 +11218,28,45.6,2,0.0 +11218,35,18,45,0.0 +11219,42,14,28,0.0 +11219,29,123.79,41,0.0 +11219,60,34,30,0.0 +11219,17,39,26,0.0 +11219,36,19,7,0.0 +11219,68,12.5,33,0.0 +11219,10,31,42,0.0 +11219,64,33.25,7,0.0 +11219,13,6,26,0.0 +11219,27,43.9,15,0.0 +11219,45,9.5,40,0.0 +11219,61,28.5,28,0.0 +11219,22,21,45,0.0 +11219,7,30,49,0.0 +11219,49,20,44,0.0 +11219,57,19.5,26,0.0 +11219,47,9.5,28,0.0 +11219,14,23.25,19,0.0 +11219,28,45.6,31,0.0 +11219,46,12,21,0.0 +11219,20,81,1,0.0 +11219,37,26,26,0.0 +11219,43,46,3,0.0 +11219,66,17,22,0.0 +11219,34,14,1,0.0 +11219,56,38,20,0.0 +11219,19,9.2,7,0.0 +11219,31,12.5,30,0.0 +11219,48,12.75,40,0.0 +11219,23,9,30,0.0 +11219,72,34.8,19,0.0 +11219,51,53,16,0.0 +11219,18,62.5,37,0.0 +11219,65,21.05,48,0.0 +11219,12,38,7,0.0 +11219,39,18,1,0.0 +11219,55,24,12,0.0 +11219,24,4.5,40,0.0 +11219,11,21,2,0.0 +11219,75,7.75,27,0.0 +11219,5,21.35,15,0.0 +11219,16,17.45,5,0.0 +11219,62,49.3,32,0.0 +11219,32,32,34,0.0 +11219,1,18,14,0.0 +11219,52,7,30,0.0 +11219,69,36,30,0.0 +11219,40,18.4,31,0.0 +11219,70,15,1,0.0 +11219,54,7.45,45,0.0 +11219,41,9.65,7,0.0 +11219,67,14,19,0.0 +11219,8,40,7,0.0 +11220,19,9.2,26,0.0 +11220,52,7,5,0.0 +11220,47,9.5,50,0.0 +11220,17,39,7,0.0 +11220,31,12.5,22,0.0 +11220,74,10,7,0.0 +11220,20,81,8,0.0 +11220,3,10,19,0.0 +11220,64,33.25,30,0.0 +11220,25,14,32,0.0 +11220,75,7.75,42,0.0 +11220,2,19,32,0.0 +11220,48,12.75,18,0.0 +11220,40,18.4,3,0.0 +11220,35,18,31,0.0 +11220,37,26,10,0.0 +11220,39,18,38,0.0 +11220,57,19.5,26,0.0 +11220,68,12.5,37,0.0 +11220,53,32.8,18,0.0 +11220,54,7.45,44,0.0 +11220,23,9,13,0.0 +11220,51,53,32,0.0 +11220,49,20,39,0.0 +11220,18,62.5,47,0.0 +11220,10,31,32,0.0 +11220,69,36,24,0.0 +11220,30,25.89,42,0.0 +11220,61,28.5,20,0.0 +11220,44,19.45,39,0.0 +11220,7,30,11,0.0 +11220,28,45.6,16,0.0 +11220,41,9.65,19,0.0 +11220,76,18,49,0.0 +11220,9,97,42,0.0 +11220,73,15,30,0.0 +11220,67,14,37,0.0 +11220,60,34,2,0.0 +11220,33,2.5,23,0.0 +11220,34,14,27,0.0 +11220,38,263.5,17,0.0 +11220,24,4.5,4,0.0 +11220,8,40,14,0.0 +11220,6,25,42,0.0 +11220,55,24,11,0.0 +11220,45,9.5,47,0.0 +11220,66,17,29,0.0 +11220,22,21,36,0.0 +11220,77,13,10,0.0 +11220,13,6,37,0.0 +11220,21,10,20,0.0 +11220,71,21.5,18,0.0 +11220,29,123.79,11,0.0 +11220,16,17.45,2,0.0 +11220,14,23.25,44,0.0 +11220,59,55,8,0.0 +11220,1,18,9,0.0 +11220,72,34.8,40,0.0 +11220,11,21,29,0.0 +11220,65,21.05,17,0.0 +11220,42,14,36,0.0 +11220,62,49.3,19,0.0 +11220,32,32,45,0.0 +11221,3,10,30,0.0 +11221,15,15.5,4,0.0 +11221,54,7.45,49,0.0 +11221,62,49.3,50,0.0 +11221,66,17,1,0.0 +11221,45,9.5,39,0.0 +11221,22,21,43,0.0 +11221,29,123.79,39,0.0 +11221,10,31,45,0.0 +11221,20,81,30,0.0 +11221,17,39,45,0.0 +11221,19,9.2,41,0.0 +11221,68,12.5,49,0.0 +11221,12,38,41,0.0 +11221,57,19.5,7,0.0 +11221,4,22,8,0.0 +11221,77,13,49,0.0 +11221,52,7,32,0.0 +11221,33,2.5,39,0.0 +11221,1,18,3,0.0 +11221,7,30,18,0.0 +11221,41,9.65,15,0.0 +11221,13,6,17,0.0 +11221,50,16.25,16,0.0 +11221,37,26,38,0.0 +11221,75,7.75,20,0.0 +11222,20,81,40,0.0 +11222,6,25,11,0.0 +11222,69,36,22,0.0 +11222,21,10,39,0.0 +11222,75,7.75,12,0.0 +11222,30,25.89,21,0.0 +11222,54,7.45,11,0.0 +11222,53,32.8,22,0.0 +11222,37,26,24,0.0 +11222,56,38,29,0.0 +11222,77,13,21,0.0 +11222,62,49.3,13,0.0 +11222,45,9.5,31,0.0 +11222,35,18,47,0.0 +11222,74,10,29,0.0 +11222,40,18.4,1,0.0 +11222,66,17,18,0.0 +11222,43,46,23,0.0 +11222,61,28.5,17,0.0 +11222,67,14,48,0.0 +11222,8,40,18,0.0 +11222,52,7,9,0.0 +11222,38,263.5,32,0.0 +11222,29,123.79,3,0.0 +11222,19,9.2,22,0.0 +11222,22,21,16,0.0 +11222,25,14,35,0.0 +11222,11,21,49,0.0 +11222,44,19.45,39,0.0 +11222,16,17.45,44,0.0 +11222,42,14,2,0.0 +11222,24,4.5,28,0.0 +11222,51,53,39,0.0 +11222,64,33.25,4,0.0 +11222,10,31,7,0.0 +11222,4,22,35,0.0 +11222,9,97,43,0.0 +11222,17,39,9,0.0 +11222,57,19.5,21,0.0 +11222,32,32,34,0.0 +11222,36,19,12,0.0 +11222,26,31.23,3,0.0 +11222,63,43.9,4,0.0 +11222,1,18,31,0.0 +11222,15,15.5,13,0.0 +11222,65,21.05,20,0.0 +11222,49,20,30,0.0 +11222,18,62.5,45,0.0 +11222,46,12,47,0.0 +11222,7,30,41,0.0 +11222,73,15,25,0.0 +11222,14,23.25,32,0.0 +11222,50,16.25,8,0.0 +11222,3,10,41,0.0 +11222,28,45.6,48,0.0 +11222,76,18,45,0.0 +11222,55,24,2,0.0 +11222,48,12.75,11,0.0 +11222,5,21.35,32,0.0 +11222,23,9,7,0.0 +11222,70,15,49,0.0 +11222,71,21.5,39,0.0 +11222,34,14,19,0.0 +11222,27,43.9,11,0.0 +11222,47,9.5,24,0.0 +11222,2,19,50,0.0 +11222,31,12.5,8,0.0 +11222,72,34.8,45,0.0 +11222,33,2.5,20,0.0 +11222,60,34,7,0.0 +11223,25,14,34,0.0 +11223,52,7,39,0.0 +11223,46,12,26,0.0 +11223,58,13.25,45,0.0 +11223,51,53,14,0.0 +11223,71,21.5,16,0.0 +11223,45,9.5,45,0.0 +11223,28,45.6,19,0.0 +11223,39,18,1,0.0 +11223,42,14,38,0.0 +11223,32,32,31,0.0 +11223,5,21.35,38,0.0 +11223,69,36,48,0.0 +11223,16,17.45,40,0.0 +11223,67,14,46,0.0 +11223,17,39,9,0.0 +11223,64,33.25,7,0.0 +11223,24,4.5,32,0.0 +11223,2,19,46,0.0 +11223,8,40,44,0.0 +11223,50,16.25,29,0.0 +11223,65,21.05,6,0.0 +11223,40,18.4,35,0.0 +11223,47,9.5,39,0.0 +11223,53,32.8,7,0.0 +11223,13,6,3,0.0 +11223,35,18,6,0.0 +11223,12,38,35,0.0 +11223,70,15,21,0.0 +11223,43,46,15,0.0 +11223,6,25,8,0.0 +11223,49,20,28,0.0 +11223,31,12.5,6,0.0 +11223,7,30,7,0.0 +11224,76,18,24,0.0 +11224,10,31,33,0.0 +11224,1,18,35,0.0 +11224,30,25.89,33,0.0 +11224,34,14,16,0.0 +11224,19,9.2,27,0.0 +11224,67,14,28,0.0 +11224,74,10,4,0.0 +11224,20,81,28,0.0 +11224,52,7,12,0.0 +11224,23,9,37,0.0 +11224,9,97,1,0.0 +11224,66,17,34,0.0 +11224,69,36,23,0.0 +11224,32,32,42,0.0 +11224,15,15.5,45,0.0 +11224,33,2.5,24,0.0 +11224,8,40,47,0.0 +11224,11,21,36,0.0 +11224,42,14,3,0.0 +11224,54,7.45,16,0.0 +11224,24,4.5,22,0.0 +11224,41,9.65,49,0.0 +11224,61,28.5,10,0.0 +11224,6,25,27,0.0 +11224,2,19,29,0.0 +11224,48,12.75,39,0.0 +11224,26,31.23,4,0.0 +11224,58,13.25,5,0.0 +11224,35,18,11,0.0 +11224,37,26,23,0.0 +11224,7,30,7,0.0 +11224,50,16.25,18,0.0 +11224,51,53,45,0.0 +11224,31,12.5,10,0.0 +11224,72,34.8,40,0.0 +11224,36,19,2,0.0 +11224,5,21.35,9,0.0 +11224,62,49.3,14,0.0 +11224,3,10,10,0.0 +11224,27,43.9,42,0.0 +11224,68,12.5,12,0.0 +11224,63,43.9,47,0.0 +11224,55,24,47,0.0 +11224,56,38,31,0.0 +11224,16,17.45,48,0.0 +11224,25,14,17,0.0 +11224,4,22,3,0.0 +11224,49,20,22,0.0 +11224,71,21.5,50,0.0 +11224,40,18.4,43,0.0 +11225,14,23.25,22,0.0 +11225,41,9.65,47,0.0 +11225,48,12.75,26,0.0 +11225,1,18,3,0.0 +11225,66,17,48,0.0 +11225,44,19.45,15,0.0 +11225,47,9.5,15,0.0 +11225,51,53,3,0.0 +11225,65,21.05,11,0.0 +11225,56,38,15,0.0 +11225,42,14,13,0.0 +11225,38,263.5,14,0.0 +11225,29,123.79,14,0.0 +11225,75,7.75,8,0.0 +11225,19,9.2,17,0.0 +11225,63,43.9,7,0.0 +11225,68,12.5,30,0.0 +11225,72,34.8,38,0.0 +11225,32,32,10,0.0 +11225,28,45.6,24,0.0 +11225,6,25,3,0.0 +11225,43,46,18,0.0 +11225,64,33.25,50,0.0 +11225,33,2.5,33,0.0 +11225,76,18,34,0.0 +11225,34,14,49,0.0 +11225,77,13,43,0.0 +11225,49,20,35,0.0 +11225,67,14,38,0.0 +11225,74,10,22,0.0 +11225,25,14,15,0.0 +11225,12,38,33,0.0 +11225,39,18,17,0.0 +11225,46,12,30,0.0 +11225,70,15,31,0.0 +11225,30,25.89,31,0.0 +11225,50,16.25,28,0.0 +11225,22,21,8,0.0 +11225,23,9,8,0.0 +11225,40,18.4,38,0.0 +11225,58,13.25,28,0.0 +11225,2,19,20,0.0 +11225,16,17.45,23,0.0 +11225,69,36,42,0.0 +11225,21,10,23,0.0 +11225,26,31.23,1,0.0 +11225,37,26,27,0.0 +11225,35,18,16,0.0 +11225,31,12.5,38,0.0 +11225,18,62.5,40,0.0 +11225,7,30,46,0.0 +11225,27,43.9,46,0.0 +11225,4,22,36,0.0 +11225,10,31,8,0.0 +11225,61,28.5,31,0.0 +11225,9,97,16,0.0 +11225,24,4.5,29,0.0 +11225,13,6,28,0.0 +11225,3,10,21,0.0 +11225,73,15,33,0.0 +11225,54,7.45,27,0.0 +11225,20,81,25,0.0 +11225,36,19,16,0.0 +11225,52,7,19,0.0 +11225,59,55,15,0.0 +11225,17,39,11,0.0 +11226,32,32,48,0.0 +11226,23,9,24,0.0 +11226,45,9.5,45,0.0 +11226,65,21.05,48,0.0 +11226,29,123.79,6,0.0 +11226,53,32.8,24,0.0 +11226,72,34.8,42,0.0 +11226,21,10,46,0.0 +11226,20,81,27,0.0 +11226,43,46,17,0.0 +11226,5,21.35,46,0.0 +11227,7,30,24,0.0 +11227,20,81,47,0.0 +11227,12,38,8,0.0 +11227,26,31.23,7,0.0 +11227,4,22,28,0.0 +11227,58,13.25,30,0.0 +11227,75,7.75,19,0.0 +11227,24,4.5,15,0.0 +11227,30,25.89,46,0.0 +11227,19,9.2,37,0.0 +11227,2,19,44,0.0 +11227,17,39,26,0.0 +11227,47,9.5,18,0.0 +11227,25,14,10,0.0 +11227,32,32,29,0.0 +11227,68,12.5,32,0.0 +11227,38,263.5,11,0.0 +11227,50,16.25,42,0.0 +11227,45,9.5,2,0.0 +11227,42,14,29,0.0 +11227,23,9,3,0.0 +11227,41,9.65,32,0.0 +11227,5,21.35,30,0.0 +11227,21,10,18,0.0 +11227,69,36,17,0.0 +11227,46,12,11,0.0 +11227,34,14,4,0.0 +11227,16,17.45,31,0.0 +11227,55,24,45,0.0 +11228,44,19.45,41,0.0 +11228,66,17,22,0.0 +11228,27,43.9,28,0.0 +11228,4,22,13,0.0 +11228,70,15,39,0.0 +11228,62,49.3,40,0.0 +11228,52,7,13,0.0 +11228,20,81,49,0.0 +11228,74,10,24,0.0 +11228,35,18,41,0.0 +11228,45,9.5,40,0.0 +11228,59,55,12,0.0 +11228,60,34,32,0.0 +11228,42,14,27,0.0 +11228,9,97,41,0.0 +11228,73,15,46,0.0 +11228,56,38,42,0.0 +11228,36,19,18,0.0 +11228,21,10,39,0.0 +11228,72,34.8,44,0.0 +11228,57,19.5,12,0.0 +11228,58,13.25,19,0.0 +11228,34,14,22,0.0 +11228,16,17.45,6,0.0 +11228,39,18,28,0.0 +11228,46,12,16,0.0 +11228,61,28.5,49,0.0 +11228,29,123.79,6,0.0 +11228,37,26,1,0.0 +11228,71,21.5,50,0.0 +11228,30,25.89,7,0.0 +11228,65,21.05,8,0.0 +11228,28,45.6,37,0.0 +11228,69,36,38,0.0 +11228,14,23.25,22,0.0 +11228,41,9.65,7,0.0 +11228,23,9,41,0.0 +11228,24,4.5,41,0.0 +11228,33,2.5,6,0.0 +11229,6,25,28,0.0 +11229,33,2.5,45,0.0 +11229,27,43.9,2,0.0 +11229,61,28.5,36,0.0 +11229,76,18,22,0.0 +11229,44,19.45,50,0.0 +11229,25,14,9,0.0 +11229,17,39,43,0.0 +11229,53,32.8,47,0.0 +11229,52,7,4,0.0 +11229,71,21.5,41,0.0 +11229,57,19.5,9,0.0 +11229,62,49.3,13,0.0 +11229,42,14,3,0.0 +11229,31,12.5,10,0.0 +11229,72,34.8,50,0.0 +11229,32,32,19,0.0 +11229,35,18,11,0.0 +11229,30,25.89,39,0.0 +11229,55,24,6,0.0 +11229,68,12.5,33,0.0 +11229,4,22,9,0.0 +11229,67,14,49,0.0 +11229,36,19,6,0.0 +11229,65,21.05,26,0.0 +11229,2,19,3,0.0 +11229,51,53,4,0.0 +11229,22,21,10,0.0 +11229,24,4.5,46,0.0 +11229,75,7.75,20,0.0 +11229,7,30,23,0.0 +11229,50,16.25,8,0.0 +11229,23,9,13,0.0 +11229,14,23.25,32,0.0 +11229,73,15,45,0.0 +11229,54,7.45,4,0.0 +11229,8,40,50,0.0 +11229,38,263.5,1,0.0 +11229,39,18,48,0.0 +11229,49,20,37,0.0 +11229,41,9.65,30,0.0 +11229,74,10,44,0.0 +11229,59,55,31,0.0 +11229,37,26,23,0.0 +11229,45,9.5,33,0.0 +11229,29,123.79,44,0.0 +11229,69,36,28,0.0 +11230,8,40,2,0.0 +11230,48,12.75,40,0.0 +11230,28,45.6,16,0.0 +11230,62,49.3,11,0.0 +11230,46,12,40,0.0 +11230,16,17.45,7,0.0 +11230,58,13.25,4,0.0 +11230,69,36,10,0.0 +11230,72,34.8,29,0.0 +11230,17,39,6,0.0 +11230,33,2.5,26,0.0 +11230,53,32.8,19,0.0 +11230,11,21,26,0.0 +11230,74,10,7,0.0 +11230,49,20,25,0.0 +11230,47,9.5,5,0.0 +11230,36,19,36,0.0 +11230,13,6,18,0.0 +11230,56,38,7,0.0 +11230,7,30,2,0.0 +11230,60,34,43,0.0 +11230,52,7,6,0.0 +11230,59,55,24,0.0 +11230,25,14,22,0.0 +11230,50,16.25,50,0.0 +11230,12,38,10,0.0 +11230,10,31,16,0.0 +11230,20,81,20,0.0 +11230,51,53,2,0.0 +11230,30,25.89,42,0.0 +11230,71,21.5,3,0.0 +11230,75,7.75,21,0.0 +11230,2,19,36,0.0 +11230,34,14,7,0.0 +11230,5,21.35,37,0.0 +11230,65,21.05,28,0.0 +11230,55,24,40,0.0 +11230,63,43.9,11,0.0 +11230,70,15,16,0.0 +11230,37,26,47,0.0 +11230,1,18,32,0.0 +11230,44,19.45,21,0.0 +11230,21,10,35,0.0 +11230,29,123.79,16,0.0 +11230,68,12.5,17,0.0 +11230,19,9.2,35,0.0 +11230,73,15,10,0.0 +11230,3,10,11,0.0 +11230,18,62.5,17,0.0 +11230,77,13,16,0.0 +11230,42,14,38,0.0 +11230,4,22,40,0.0 +11230,45,9.5,2,0.0 +11230,27,43.9,44,0.0 +11230,43,46,22,0.0 +11230,66,17,5,0.0 +11230,67,14,34,0.0 +11230,40,18.4,7,0.0 +11230,14,23.25,5,0.0 +11230,23,9,39,0.0 +11230,24,4.5,46,0.0 +11230,64,33.25,31,0.0 +11231,55,24,11,0.0 +11231,47,9.5,38,0.0 +11231,13,6,40,0.0 +11231,56,38,15,0.0 +11231,62,49.3,23,0.0 +11232,40,18.4,27,0.0 +11232,22,21,24,0.0 +11232,47,9.5,32,0.0 +11232,30,25.89,4,0.0 +11232,1,18,30,0.0 +11232,13,6,49,0.0 +11232,46,12,28,0.0 +11232,33,2.5,11,0.0 +11232,48,12.75,32,0.0 +11232,55,24,7,0.0 +11232,9,97,24,0.0 +11232,66,17,11,0.0 +11232,68,12.5,2,0.0 +11232,35,18,49,0.0 +11232,72,34.8,27,0.0 +11232,53,32.8,49,0.0 +11232,27,43.9,32,0.0 +11232,5,21.35,2,0.0 +11232,61,28.5,10,0.0 +11232,26,31.23,26,0.0 +11232,45,9.5,11,0.0 +11232,43,46,9,0.0 +11232,51,53,25,0.0 +11232,77,13,37,0.0 +11232,54,7.45,33,0.0 +11232,36,19,16,0.0 +11232,69,36,25,0.0 +11232,23,9,20,0.0 +11232,17,39,5,0.0 +11232,3,10,2,0.0 +11232,10,31,8,0.0 +11232,70,15,3,0.0 +11232,57,19.5,18,0.0 +11232,19,9.2,32,0.0 +11232,76,18,33,0.0 +11232,64,33.25,28,0.0 +11233,12,38,36,0.0 +11233,39,18,33,0.0 +11233,76,18,1,0.0 +11233,2,19,48,0.0 +11233,44,19.45,21,0.0 +11233,38,263.5,42,0.0 +11233,22,21,16,0.0 +11233,65,21.05,34,0.0 +11233,72,34.8,40,0.0 +11233,58,13.25,10,0.0 +11233,27,43.9,29,0.0 +11233,55,24,27,0.0 +11233,60,34,49,0.0 +11233,36,19,17,0.0 +11233,46,12,40,0.0 +11234,52,7,24,0.0 +11234,55,24,5,0.0 +11234,14,23.25,40,0.0 +11234,7,30,27,0.0 +11234,25,14,32,0.0 +11234,4,22,28,0.0 +11234,72,34.8,47,0.0 +11234,66,17,27,0.0 +11234,1,18,14,0.0 +11234,76,18,2,0.0 +11234,34,14,19,0.0 +11234,29,123.79,6,0.0 +11234,15,15.5,12,0.0 +11234,16,17.45,37,0.0 +11234,71,21.5,34,0.0 +11234,49,20,18,0.0 +11234,33,2.5,13,0.0 +11234,59,55,16,0.0 +11234,6,25,3,0.0 +11234,58,13.25,30,0.0 +11234,12,38,39,0.0 +11234,75,7.75,21,0.0 +11234,53,32.8,47,0.0 +11234,10,31,31,0.0 +11234,64,33.25,31,0.0 +11234,5,21.35,19,0.0 +11234,37,26,9,0.0 +11234,32,32,16,0.0 +11234,56,38,7,0.0 +11234,48,12.75,47,0.0 +11234,60,34,11,0.0 +11234,73,15,26,0.0 +11234,19,9.2,45,0.0 +11234,45,9.5,19,0.0 +11234,40,18.4,21,0.0 +11234,54,7.45,45,0.0 +11234,31,12.5,13,0.0 +11234,23,9,19,0.0 +11234,35,18,46,0.0 +11234,3,10,12,0.0 +11234,8,40,14,0.0 +11234,13,6,30,0.0 +11234,26,31.23,37,0.0 +11234,68,12.5,12,0.0 +11234,21,10,21,0.0 +11234,41,9.65,10,0.0 +11234,18,62.5,41,0.0 +11234,43,46,8,0.0 +11234,74,10,10,0.0 +11234,11,21,34,0.0 +11234,65,21.05,18,0.0 +11234,36,19,8,0.0 +11234,50,16.25,29,0.0 +11234,63,43.9,20,0.0 +11234,67,14,46,0.0 +11235,36,19,27,0.0 +11235,12,38,36,0.0 +11235,61,28.5,48,0.0 +11235,60,34,40,0.0 +11235,74,10,22,0.0 +11235,71,21.5,6,0.0 +11235,38,263.5,24,0.0 +11235,40,18.4,15,0.0 +11235,59,55,40,0.0 +11235,54,7.45,35,0.0 +11235,29,123.79,5,0.0 +11235,28,45.6,12,0.0 +11236,28,45.6,40,0.0 +11236,33,2.5,47,0.0 +11236,59,55,40,0.0 +11236,17,39,44,0.0 +11236,8,40,32,0.0 +11236,75,7.75,16,0.0 +11236,57,19.5,10,0.0 +11236,71,21.5,20,0.0 +11236,39,18,35,0.0 +11236,10,31,44,0.0 +11236,6,25,5,0.0 +11236,56,38,27,0.0 +11236,11,21,14,0.0 +11236,52,7,6,0.0 +11236,51,53,33,0.0 +11236,67,14,17,0.0 +11236,60,34,19,0.0 +11236,43,46,14,0.0 +11236,53,32.8,34,0.0 +11236,38,263.5,22,0.0 +11236,77,13,22,0.0 +11236,45,9.5,24,0.0 +11236,1,18,35,0.0 +11236,44,19.45,12,0.0 +11236,64,33.25,18,0.0 +11236,48,12.75,10,0.0 +11236,18,62.5,19,0.0 +11236,29,123.79,19,0.0 +11236,14,23.25,9,0.0 +11236,46,12,41,0.0 +11236,65,21.05,37,0.0 +11236,41,9.65,44,0.0 +11236,31,12.5,21,0.0 +11236,22,21,17,0.0 +11236,24,4.5,14,0.0 +11236,34,14,3,0.0 +11236,68,12.5,7,0.0 +11236,27,43.9,27,0.0 +11236,36,19,30,0.0 +11236,63,43.9,21,0.0 +11236,69,36,9,0.0 +11236,21,10,47,0.0 +11236,25,14,7,0.0 +11236,12,38,5,0.0 +11236,66,17,41,0.0 +11236,35,18,43,0.0 +11236,55,24,43,0.0 +11236,19,9.2,46,0.0 +11236,16,17.45,42,0.0 +11236,9,97,40,0.0 +11236,15,15.5,33,0.0 +11236,40,18.4,23,0.0 +11236,32,32,5,0.0 +11236,23,9,14,0.0 +11236,26,31.23,43,0.0 +11236,37,26,23,0.0 +11236,5,21.35,37,0.0 +11236,7,30,23,0.0 +11236,72,34.8,21,0.0 +11236,61,28.5,4,0.0 +11236,70,15,31,0.0 +11236,73,15,13,0.0 +11236,58,13.25,23,0.0 +11236,47,9.5,24,0.0 +11236,49,20,30,0.0 +11236,2,19,14,0.0 +11236,30,25.89,30,0.0 +11236,42,14,1,0.0 +11236,74,10,46,0.0 +11236,62,49.3,7,0.0 +11237,1,18,25,0.0 +11237,73,15,12,0.0 +11237,29,123.79,44,0.0 +11237,51,53,26,0.0 +11237,55,24,14,0.0 +11237,53,32.8,8,0.0 +11237,18,62.5,16,0.0 +11237,47,9.5,49,0.0 +11237,67,14,24,0.0 +11237,7,30,7,0.0 +11237,25,14,4,0.0 +11237,24,4.5,3,0.0 +11237,52,7,7,0.0 +11237,68,12.5,44,0.0 +11237,11,21,12,0.0 +11237,22,21,1,0.0 +11237,17,39,30,0.0 +11237,6,25,12,0.0 +11237,40,18.4,47,0.0 +11237,57,19.5,17,0.0 +11237,31,12.5,34,0.0 +11237,63,43.9,46,0.0 +11237,69,36,10,0.0 +11237,62,49.3,39,0.0 +11237,43,46,6,0.0 +11237,61,28.5,10,0.0 +11237,64,33.25,4,0.0 +11237,34,14,30,0.0 +11237,56,38,18,0.0 +11237,70,15,46,0.0 +11237,5,21.35,4,0.0 +11237,33,2.5,39,0.0 +11237,75,7.75,50,0.0 +11237,10,31,33,0.0 +11237,16,17.45,29,0.0 +11237,44,19.45,11,0.0 +11237,77,13,15,0.0 +11237,32,32,47,0.0 +11237,42,14,15,0.0 +11237,14,23.25,42,0.0 +11237,45,9.5,27,0.0 +11237,54,7.45,33,0.0 +11237,74,10,32,0.0 +11237,72,34.8,35,0.0 +11237,50,16.25,28,0.0 +11237,20,81,46,0.0 +11237,9,97,24,0.0 +11237,46,12,21,0.0 +11237,23,9,13,0.0 +11237,39,18,15,0.0 +11237,30,25.89,18,0.0 +11237,15,15.5,29,0.0 +11237,58,13.25,18,0.0 +11237,60,34,44,0.0 +11237,13,6,42,0.0 +11237,36,19,30,0.0 +11237,8,40,40,0.0 +11237,48,12.75,17,0.0 +11237,66,17,41,0.0 +11237,2,19,12,0.0 +11237,3,10,7,0.0 +11237,76,18,10,0.0 +11237,65,21.05,15,0.0 +11237,38,263.5,11,0.0 +11237,21,10,25,0.0 +11237,26,31.23,21,0.0 +11237,49,20,16,0.0 +11237,4,22,24,0.0 +11237,28,45.6,29,0.0 +11237,59,55,12,0.0 +11237,12,38,1,0.0 +11237,19,9.2,37,0.0 +11237,71,21.5,36,0.0 +11238,65,21.05,19,0.0 +11238,9,97,2,0.0 +11238,44,19.45,18,0.0 +11238,21,10,49,0.0 +11238,27,43.9,4,0.0 +11238,57,19.5,42,0.0 +11238,58,13.25,49,0.0 +11238,5,21.35,4,0.0 +11238,26,31.23,40,0.0 +11238,76,18,7,0.0 +11238,32,32,34,0.0 +11238,46,12,24,0.0 +11238,70,15,16,0.0 +11238,8,40,34,0.0 +11238,13,6,4,0.0 +11238,64,33.25,33,0.0 +11239,51,53,33,0.0 +11239,9,97,15,0.0 +11239,34,14,29,0.0 +11239,54,7.45,7,0.0 +11239,66,17,33,0.0 +11239,50,16.25,7,0.0 +11239,29,123.79,44,0.0 +11240,42,14,36,0.0 +11240,71,21.5,1,0.0 +11240,17,39,39,0.0 +11240,32,32,24,0.0 +11240,13,6,33,0.0 +11240,3,10,35,0.0 +11241,44,19.45,40,0.0 +11241,62,49.3,31,0.0 +11241,61,28.5,35,0.0 +11241,32,32,17,0.0 +11241,13,6,17,0.0 +11241,33,2.5,34,0.0 +11241,38,263.5,43,0.0 +11241,56,38,35,0.0 +11241,63,43.9,34,0.0 +11242,9,97,34,0.0 +11242,32,32,27,0.0 +11242,62,49.3,34,0.0 +11242,28,45.6,1,0.0 +11242,27,43.9,33,0.0 +11242,46,12,49,0.0 +11242,43,46,14,0.0 +11242,19,9.2,50,0.0 +11242,51,53,25,0.0 +11242,29,123.79,22,0.0 +11242,7,30,50,0.0 +11242,75,7.75,19,0.0 +11242,42,14,22,0.0 +11242,23,9,43,0.0 +11242,18,62.5,34,0.0 +11242,26,31.23,8,0.0 +11242,34,14,26,0.0 +11242,70,15,16,0.0 +11242,56,38,25,0.0 +11242,10,31,10,0.0 +11242,15,15.5,30,0.0 +11242,33,2.5,29,0.0 +11242,5,21.35,42,0.0 +11242,68,12.5,24,0.0 +11242,40,18.4,13,0.0 +11242,8,40,45,0.0 +11243,14,23.25,15,0.0 +11243,30,25.89,36,0.0 +11243,64,33.25,43,0.0 +11243,74,10,27,0.0 +11243,29,123.79,17,0.0 +11243,4,22,18,0.0 +11243,76,18,28,0.0 +11243,20,81,10,0.0 +11243,33,2.5,1,0.0 +11243,40,18.4,27,0.0 +11243,12,38,36,0.0 +11243,16,17.45,39,0.0 +11243,45,9.5,3,0.0 +11243,50,16.25,22,0.0 +11243,35,18,38,0.0 +11243,60,34,40,0.0 +11243,71,21.5,35,0.0 +11243,62,49.3,46,0.0 +11243,44,19.45,20,0.0 +11243,42,14,9,0.0 +11243,31,12.5,36,0.0 +11243,19,9.2,21,0.0 +11243,55,24,24,0.0 +11243,11,21,47,0.0 +11243,77,13,23,0.0 +11243,63,43.9,26,0.0 +11243,43,46,16,0.0 +11243,54,7.45,14,0.0 +11243,23,9,7,0.0 +11243,57,19.5,16,0.0 +11243,28,45.6,49,0.0 +11243,25,14,3,0.0 +11243,53,32.8,10,0.0 +11244,25,14,42,0.0 +11244,11,21,31,0.0 +11244,60,34,47,0.0 +11244,26,31.23,38,0.0 +11244,63,43.9,38,0.0 +11244,37,26,40,0.0 +11245,72,34.8,37,0.0 +11245,73,15,31,0.0 +11245,61,28.5,49,0.0 +11245,54,7.45,31,0.0 +11245,47,9.5,3,0.0 +11245,19,9.2,38,0.0 +11245,66,17,8,0.0 +11245,32,32,21,0.0 +11245,1,18,39,0.0 +11245,63,43.9,35,0.0 +11245,52,7,9,0.0 +11245,59,55,41,0.0 +11245,45,9.5,3,0.0 +11245,57,19.5,49,0.0 +11245,18,62.5,8,0.0 +11245,29,123.79,22,0.0 +11245,23,9,1,0.0 +11245,5,21.35,19,0.0 +11245,60,34,22,0.0 +11245,71,21.5,11,0.0 +11245,48,12.75,1,0.0 +11245,3,10,41,0.0 +11245,53,32.8,38,0.0 +11245,69,36,23,0.0 +11245,50,16.25,7,0.0 +11245,33,2.5,19,0.0 +11245,41,9.65,4,0.0 +11245,44,19.45,6,0.0 +11245,67,14,45,0.0 +11245,36,19,12,0.0 +11245,4,22,17,0.0 +11245,76,18,48,0.0 +11246,6,25,39,0.0 +11246,50,16.25,28,0.0 +11246,12,38,1,0.0 +11246,14,23.25,47,0.0 +11246,61,28.5,2,0.0 +11246,3,10,28,0.0 +11246,22,21,6,0.0 +11246,47,9.5,7,0.0 +11246,63,43.9,27,0.0 +11246,30,25.89,5,0.0 +11246,44,19.45,43,0.0 +11246,59,55,14,0.0 +11246,74,10,8,0.0 +11246,49,20,33,0.0 +11246,10,31,23,0.0 +11246,27,43.9,38,0.0 +11246,45,9.5,22,0.0 +11246,57,19.5,44,0.0 +11246,19,9.2,34,0.0 +11246,48,12.75,41,0.0 +11246,17,39,44,0.0 +11246,23,9,49,0.0 +11246,9,97,7,0.0 +11246,75,7.75,50,0.0 +11246,58,13.25,27,0.0 +11246,35,18,45,0.0 +11246,34,14,35,0.0 +11246,76,18,31,0.0 +11246,26,31.23,33,0.0 +11246,52,7,4,0.0 +11246,53,32.8,21,0.0 +11246,66,17,9,0.0 +11246,31,12.5,13,0.0 +11246,28,45.6,9,0.0 +11246,70,15,29,0.0 +11246,7,30,7,0.0 +11246,36,19,10,0.0 +11246,33,2.5,3,0.0 +11246,42,14,49,0.0 +11246,55,24,12,0.0 +11246,24,4.5,44,0.0 +11246,73,15,18,0.0 +11246,46,12,41,0.0 +11246,51,53,34,0.0 +11246,11,21,27,0.0 +11246,56,38,29,0.0 +11246,32,32,2,0.0 +11246,71,21.5,37,0.0 +11246,8,40,50,0.0 +11246,29,123.79,49,0.0 +11246,62,49.3,26,0.0 +11246,1,18,17,0.0 +11246,64,33.25,24,0.0 +11246,54,7.45,7,0.0 +11246,2,19,26,0.0 +11246,15,15.5,42,0.0 +11246,69,36,26,0.0 +11246,60,34,19,0.0 +11246,16,17.45,23,0.0 +11246,21,10,32,0.0 +11246,13,6,50,0.0 +11246,65,21.05,44,0.0 +11246,77,13,7,0.0 +11246,39,18,28,0.0 +11246,38,263.5,1,0.0 +11246,43,46,21,0.0 +11246,4,22,34,0.0 +11246,20,81,20,0.0 +11246,25,14,8,0.0 +11246,68,12.5,7,0.0 +11246,37,26,2,0.0 +11246,67,14,38,0.0 +11247,53,32.8,25,0.0 +11247,63,43.9,10,0.0 +11247,2,19,46,0.0 +11247,51,53,40,0.0 +11247,77,13,40,0.0 +11247,56,38,11,0.0 +11247,73,15,49,0.0 +11247,32,32,21,0.0 +11247,45,9.5,12,0.0 +11247,68,12.5,40,0.0 +11247,48,12.75,33,0.0 +11247,28,45.6,17,0.0 +11248,30,25.89,28,0.0 +11248,9,97,26,0.0 +11248,17,39,7,0.0 +11248,68,12.5,15,0.0 +11248,67,14,18,0.0 +11248,71,21.5,46,0.0 +11248,51,53,32,0.0 +11248,66,17,4,0.0 +11248,40,18.4,48,0.0 +11248,15,15.5,19,0.0 +11248,58,13.25,22,0.0 +11248,37,26,4,0.0 +11248,31,12.5,39,0.0 +11248,49,20,44,0.0 +11248,8,40,39,0.0 +11248,41,9.65,37,0.0 +11248,34,14,7,0.0 +11248,13,6,20,0.0 +11248,45,9.5,24,0.0 +11248,56,38,15,0.0 +11248,39,18,18,0.0 +11248,27,43.9,27,0.0 +11248,7,30,8,0.0 +11249,35,18,8,0.0 +11249,56,38,46,0.0 +11249,4,22,37,0.0 +11249,19,9.2,18,0.0 +11249,22,21,16,0.0 +11249,57,19.5,16,0.0 +11249,50,16.25,7,0.0 +11249,47,9.5,30,0.0 +11249,11,21,45,0.0 +11249,61,28.5,4,0.0 +11250,7,30,36,0.0 +11250,55,24,5,0.0 +11250,27,43.9,46,0.0 +11250,24,4.5,23,0.0 +11250,23,9,28,0.0 +11250,66,17,47,0.0 +11250,15,15.5,47,0.0 +11250,18,62.5,31,0.0 +11250,58,13.25,25,0.0 +11250,3,10,29,0.0 +11250,11,21,9,0.0 +11250,37,26,17,0.0 +11250,61,28.5,18,0.0 +11250,53,32.8,44,0.0 +11250,69,36,43,0.0 +11250,13,6,6,0.0 +11250,65,21.05,20,0.0 +11250,72,34.8,46,0.0 +11250,57,19.5,24,0.0 +11250,48,12.75,36,0.0 +11250,50,16.25,3,0.0 +11250,60,34,49,0.0 +11250,2,19,18,0.0 +11251,10,31,45,0.0 +11251,34,14,34,0.0 +11251,69,36,45,0.0 +11251,67,14,24,0.0 +11251,49,20,41,0.0 +11251,50,16.25,42,0.0 +11251,54,7.45,6,0.0 +11251,20,81,33,0.0 +11251,21,10,45,0.0 +11251,71,21.5,36,0.0 +11251,62,49.3,47,0.0 +11251,52,7,47,0.0 +11251,43,46,5,0.0 +11251,46,12,30,0.0 +11251,59,55,39,0.0 +11251,15,15.5,4,0.0 +11251,70,15,48,0.0 +11251,32,32,49,0.0 +11251,1,18,20,0.0 +11251,39,18,41,0.0 +11251,48,12.75,46,0.0 +11251,45,9.5,13,0.0 +11251,72,34.8,31,0.0 +11251,28,45.6,15,0.0 +11251,40,18.4,18,0.0 +11251,38,263.5,34,0.0 +11251,5,21.35,18,0.0 +11251,42,14,33,0.0 +11251,25,14,42,0.0 +11251,19,9.2,3,0.0 +11251,31,12.5,26,0.0 +11251,26,31.23,35,0.0 +11251,60,34,10,0.0 +11251,44,19.45,20,0.0 +11251,57,19.5,29,0.0 +11251,9,97,1,0.0 +11251,29,123.79,49,0.0 +11251,64,33.25,37,0.0 +11251,35,18,10,0.0 +11251,74,10,19,0.0 +11251,11,21,8,0.0 +11251,22,21,37,0.0 +11251,3,10,16,0.0 +11251,66,17,7,0.0 +11251,27,43.9,9,0.0 +11251,75,7.75,47,0.0 +11251,65,21.05,19,0.0 +11251,4,22,22,0.0 +11251,58,13.25,5,0.0 +11251,77,13,9,0.0 +11251,30,25.89,10,0.0 +11251,12,38,44,0.0 +11251,6,25,41,0.0 +11252,52,7,40,0.0 +11252,61,28.5,14,0.0 +11252,35,18,11,0.0 +11252,70,15,29,0.0 +11252,59,55,11,0.0 +11252,6,25,46,0.0 +11252,22,21,50,0.0 +11252,26,31.23,22,0.0 +11252,23,9,34,0.0 +11252,2,19,23,0.0 +11252,24,4.5,37,0.0 +11252,60,34,2,0.0 +11252,14,23.25,25,0.0 +11252,63,43.9,36,0.0 +11252,54,7.45,27,0.0 +11252,34,14,4,0.0 +11252,13,6,12,0.0 +11253,25,14,11,0.0 +11253,72,34.8,2,0.0 +11253,41,9.65,19,0.0 +11253,32,32,12,0.0 +11253,22,21,5,0.0 +11253,29,123.79,21,0.0 +11253,59,55,9,0.0 +11253,68,12.5,34,0.0 +11253,76,18,6,0.0 +11253,10,31,15,0.0 +11253,67,14,25,0.0 +11253,42,14,29,0.0 +11253,40,18.4,9,0.0 +11253,69,36,45,0.0 +11253,50,16.25,16,0.0 +11253,13,6,3,0.0 +11253,12,38,41,0.0 +11253,21,10,32,0.0 +11253,3,10,48,0.0 +11253,56,38,26,0.0 +11253,36,19,34,0.0 +11253,53,32.8,39,0.0 +11253,44,19.45,12,0.0 +11254,6,25,36,0.0 +11254,21,10,43,0.0 +11254,46,12,22,0.0 +11254,35,18,15,0.0 +11254,51,53,15,0.0 +11254,18,62.5,24,0.0 +11254,12,38,39,0.0 +11254,32,32,18,0.0 +11254,42,14,35,0.0 +11254,62,49.3,17,0.0 +11254,41,9.65,23,0.0 +11254,68,12.5,10,0.0 +11254,1,18,1,0.0 +11254,70,15,37,0.0 +11254,39,18,10,0.0 +11254,49,20,30,0.0 +11254,20,81,19,0.0 +11254,30,25.89,36,0.0 +11254,48,12.75,45,0.0 +11254,65,21.05,13,0.0 +11254,17,39,33,0.0 +11254,7,30,6,0.0 +11254,33,2.5,34,0.0 +11254,25,14,11,0.0 +11254,10,31,49,0.0 +11254,23,9,4,0.0 +11254,57,19.5,17,0.0 +11254,56,38,44,0.0 +11254,63,43.9,6,0.0 +11254,74,10,46,0.0 +11254,38,263.5,5,0.0 +11254,16,17.45,38,0.0 +11254,53,32.8,40,0.0 +11254,76,18,28,0.0 +11254,34,14,10,0.0 +11254,52,7,42,0.0 +11254,71,21.5,9,0.0 +11254,28,45.6,36,0.0 +11254,24,4.5,18,0.0 +11254,60,34,42,0.0 +11254,43,46,15,0.0 +11254,11,21,29,0.0 +11254,47,9.5,36,0.0 +11254,5,21.35,26,0.0 +11254,75,7.75,26,0.0 +11254,77,13,10,0.0 +11254,55,24,23,0.0 +11254,45,9.5,31,0.0 +11254,67,14,18,0.0 +11255,59,55,8,0.0 +11255,76,18,4,0.0 +11255,58,13.25,24,0.0 +11255,61,28.5,19,0.0 +11255,55,24,2,0.0 +11256,40,18.4,35,0.0 +11256,45,9.5,20,0.0 +11256,63,43.9,30,0.0 +11256,76,18,22,0.0 +11256,20,81,25,0.0 +11256,18,62.5,41,0.0 +11256,12,38,14,0.0 +11256,65,21.05,22,0.0 +11256,43,46,2,0.0 +11256,41,9.65,5,0.0 +11256,48,12.75,13,0.0 +11256,14,23.25,46,0.0 +11256,33,2.5,40,0.0 +11256,54,7.45,49,0.0 +11256,67,14,41,0.0 +11256,8,40,32,0.0 +11256,34,14,24,0.0 +11256,29,123.79,20,0.0 +11256,9,97,34,0.0 +11256,37,26,7,0.0 +11256,50,16.25,41,0.0 +11256,66,17,49,0.0 +11256,44,19.45,50,0.0 +11256,55,24,23,0.0 +11256,7,30,28,0.0 +11256,23,9,44,0.0 +11256,75,7.75,27,0.0 +11256,72,34.8,28,0.0 +11256,64,33.25,28,0.0 +11256,56,38,28,0.0 +11256,60,34,28,0.0 +11256,59,55,41,0.0 +11256,57,19.5,42,0.0 +11257,58,13.25,2,0.0 +11257,30,25.89,34,0.0 +11257,52,7,22,0.0 +11257,29,123.79,2,0.0 +11257,6,25,11,0.0 +11257,47,9.5,43,0.0 +11257,62,49.3,2,0.0 +11257,57,19.5,27,0.0 +11257,21,10,23,0.0 +11257,11,21,47,0.0 +11257,77,13,34,0.0 +11257,19,9.2,39,0.0 +11257,4,22,28,0.0 +11257,26,31.23,16,0.0 +11257,41,9.65,41,0.0 +11257,68,12.5,32,0.0 +11257,23,9,31,0.0 +11257,2,19,8,0.0 +11257,27,43.9,22,0.0 +11257,1,18,26,0.0 +11257,54,7.45,40,0.0 +11257,67,14,25,0.0 +11257,60,34,35,0.0 +11257,44,19.45,43,0.0 +11257,12,38,30,0.0 +11257,9,97,6,0.0 +11257,3,10,8,0.0 +11257,63,43.9,48,0.0 +11257,70,15,7,0.0 +11257,43,46,40,0.0 +11257,22,21,15,0.0 +11257,25,14,28,0.0 +11257,33,2.5,17,0.0 +11257,56,38,7,0.0 +11257,74,10,5,0.0 +11257,40,18.4,2,0.0 +11257,72,34.8,17,0.0 +11257,5,21.35,34,0.0 +11257,51,53,5,0.0 +11257,8,40,9,0.0 +11257,53,32.8,39,0.0 +11257,48,12.75,45,0.0 +11257,50,16.25,20,0.0 +11257,18,62.5,25,0.0 +11257,49,20,41,0.0 +11257,31,12.5,13,0.0 +11257,69,36,3,0.0 +11257,16,17.45,14,0.0 +11257,46,12,42,0.0 +11257,17,39,40,0.0 +11257,61,28.5,3,0.0 +11257,76,18,43,0.0 +11257,75,7.75,5,0.0 +11257,24,4.5,49,0.0 +11257,65,21.05,30,0.0 +11257,15,15.5,32,0.0 +11257,59,55,27,0.0 +11257,45,9.5,11,0.0 +11257,7,30,47,0.0 +11257,55,24,38,0.0 +11257,64,33.25,30,0.0 +11258,55,24,37,0.0 +11258,64,33.25,10,0.0 +11258,68,12.5,23,0.0 +11258,44,19.45,3,0.0 +11258,58,13.25,1,0.0 +11258,19,9.2,8,0.0 +11258,52,7,47,0.0 +11258,8,40,20,0.0 +11258,17,39,31,0.0 +11258,65,21.05,10,0.0 +11258,48,12.75,42,0.0 +11258,32,32,39,0.0 +11258,14,23.25,12,0.0 +11258,46,12,20,0.0 +11258,28,45.6,5,0.0 +11258,41,9.65,18,0.0 +11258,23,9,6,0.0 +11258,13,6,39,0.0 +11258,12,38,30,0.0 +11258,9,97,42,0.0 +11258,11,21,5,0.0 +11258,5,21.35,10,0.0 +11258,21,10,48,0.0 +11258,42,14,38,0.0 +11258,1,18,9,0.0 +11258,71,21.5,21,0.0 +11258,73,15,41,0.0 +11258,7,30,5,0.0 +11258,35,18,42,0.0 +11258,49,20,20,0.0 +11258,47,9.5,30,0.0 +11258,72,34.8,38,0.0 +11258,6,25,21,0.0 +11258,63,43.9,31,0.0 +11258,16,17.45,13,0.0 +11258,15,15.5,39,0.0 +11258,50,16.25,19,0.0 +11258,3,10,32,0.0 +11258,25,14,32,0.0 +11258,43,46,50,0.0 +11258,37,26,43,0.0 +11258,62,49.3,7,0.0 +11258,61,28.5,27,0.0 +11258,29,123.79,26,0.0 +11258,40,18.4,45,0.0 +11258,67,14,41,0.0 +11258,66,17,28,0.0 +11258,54,7.45,37,0.0 +11258,60,34,40,0.0 +11258,56,38,41,0.0 +11258,69,36,22,0.0 +11258,39,18,15,0.0 +11258,75,7.75,38,0.0 +11258,20,81,35,0.0 +11258,26,31.23,49,0.0 +11258,53,32.8,16,0.0 +11258,57,19.5,2,0.0 +11258,34,14,27,0.0 +11258,59,55,18,0.0 +11258,38,263.5,18,0.0 +11258,70,15,45,0.0 +11258,36,19,24,0.0 +11258,22,21,46,0.0 +11258,31,12.5,38,0.0 +11259,69,36,8,0.0 +11259,62,49.3,47,0.0 +11259,40,18.4,2,0.0 +11259,42,14,11,0.0 +11259,50,16.25,11,0.0 +11259,73,15,11,0.0 +11259,15,15.5,18,0.0 +11259,68,12.5,35,0.0 +11259,63,43.9,6,0.0 +11259,33,2.5,26,0.0 +11259,18,62.5,34,0.0 +11259,46,12,30,0.0 +11259,32,32,19,0.0 +11259,55,24,2,0.0 +11259,48,12.75,16,0.0 +11259,39,18,5,0.0 +11259,53,32.8,14,0.0 +11259,30,25.89,43,0.0 +11259,3,10,29,0.0 +11259,52,7,41,0.0 +11259,17,39,8,0.0 +11259,56,38,27,0.0 +11259,76,18,46,0.0 +11259,9,97,29,0.0 +11259,20,81,45,0.0 +11259,10,31,40,0.0 +11259,6,25,15,0.0 +11259,72,34.8,28,0.0 +11259,66,17,18,0.0 +11259,75,7.75,18,0.0 +11259,23,9,26,0.0 +11259,45,9.5,20,0.0 +11259,16,17.45,25,0.0 +11259,13,6,26,0.0 +11259,7,30,29,0.0 +11259,26,31.23,11,0.0 +11259,5,21.35,48,0.0 +11259,77,13,4,0.0 +11259,14,23.25,37,0.0 +11259,47,9.5,31,0.0 +11259,64,33.25,33,0.0 +11259,1,18,40,0.0 +11259,61,28.5,46,0.0 +11259,41,9.65,2,0.0 +11259,57,19.5,39,0.0 +11259,74,10,12,0.0 +11259,35,18,33,0.0 +11259,37,26,37,0.0 +11259,21,10,18,0.0 +11259,31,12.5,45,0.0 +11259,67,14,18,0.0 +11259,65,21.05,23,0.0 +11259,2,19,21,0.0 +11259,59,55,42,0.0 +11259,60,34,35,0.0 +11259,36,19,17,0.0 +11259,71,21.5,34,0.0 +11259,54,7.45,34,0.0 +11259,38,263.5,30,0.0 +11259,12,38,34,0.0 +11260,62,49.3,45,0.0 +11260,47,9.5,4,0.0 +11260,13,6,27,0.0 +11260,59,55,36,0.0 +11260,77,13,40,0.0 +11260,8,40,30,0.0 +11260,66,17,28,0.0 +11260,53,32.8,6,0.0 +11260,25,14,2,0.0 +11260,38,263.5,40,0.0 +11260,16,17.45,12,0.0 +11260,76,18,26,0.0 +11260,72,34.8,28,0.0 +11260,21,10,31,0.0 +11260,36,19,3,0.0 +11260,18,62.5,12,0.0 +11260,61,28.5,17,0.0 +11260,44,19.45,26,0.0 +11260,5,21.35,17,0.0 +11260,67,14,49,0.0 +11260,46,12,24,0.0 +11260,12,38,40,0.0 +11260,24,4.5,23,0.0 +11260,74,10,24,0.0 +11260,75,7.75,33,0.0 +11260,69,36,41,0.0 +11260,20,81,32,0.0 +11260,17,39,21,0.0 +11260,73,15,39,0.0 +11260,30,25.89,9,0.0 +11260,10,31,19,0.0 +11260,65,21.05,6,0.0 +11260,37,26,43,0.0 +11260,26,31.23,49,0.0 +11260,32,32,42,0.0 +11260,28,45.6,45,0.0 +11260,19,9.2,31,0.0 +11260,29,123.79,18,0.0 +11260,54,7.45,17,0.0 +11260,3,10,37,0.0 +11260,7,30,39,0.0 +11260,71,21.5,1,0.0 +11260,4,22,15,0.0 +11260,39,18,4,0.0 +11260,45,9.5,4,0.0 +11260,14,23.25,8,0.0 +11260,22,21,47,0.0 +11261,58,13.25,6,0.0 +11261,35,18,21,0.0 +11261,31,12.5,24,0.0 +11261,42,14,23,0.0 +11261,65,21.05,46,0.0 +11261,51,53,28,0.0 +11261,41,9.65,48,0.0 +11261,1,18,42,0.0 +11261,73,15,47,0.0 +11261,22,21,24,0.0 +11261,44,19.45,28,0.0 +11261,48,12.75,48,0.0 +11261,19,9.2,37,0.0 +11261,74,10,34,0.0 +11261,13,6,11,0.0 +11261,34,14,21,0.0 +11261,64,33.25,4,0.0 +11261,8,40,48,0.0 +11261,18,62.5,43,0.0 +11261,70,15,38,0.0 +11261,57,19.5,41,0.0 +11261,43,46,32,0.0 +11261,72,34.8,23,0.0 +11261,68,12.5,26,0.0 +11261,27,43.9,42,0.0 +11261,76,18,20,0.0 +11261,37,26,30,0.0 +11261,62,49.3,48,0.0 +11261,50,16.25,26,0.0 +11261,32,32,27,0.0 +11261,14,23.25,19,0.0 +11261,40,18.4,27,0.0 +11261,30,25.89,30,0.0 +11261,25,14,4,0.0 +11261,9,97,41,0.0 +11261,77,13,28,0.0 +11261,6,25,19,0.0 +11261,53,32.8,39,0.0 +11261,47,9.5,18,0.0 +11261,67,14,31,0.0 +11261,66,17,40,0.0 +11261,33,2.5,4,0.0 +11261,39,18,50,0.0 +11261,59,55,30,0.0 +11261,23,9,3,0.0 +11261,71,21.5,45,0.0 +11261,26,31.23,47,0.0 +11261,36,19,50,0.0 +11261,49,20,49,0.0 +11261,54,7.45,45,0.0 +11261,38,263.5,42,0.0 +11261,11,21,26,0.0 +11261,3,10,1,0.0 +11262,35,18,50,0.0 +11262,58,13.25,21,0.0 +11262,52,7,40,0.0 +11262,72,34.8,17,0.0 +11262,67,14,42,0.0 +11262,44,19.45,31,0.0 +11262,4,22,50,0.0 +11262,13,6,20,0.0 +11262,25,14,15,0.0 +11262,51,53,35,0.0 +11262,36,19,3,0.0 +11262,50,16.25,2,0.0 +11262,62,49.3,10,0.0 +11263,32,32,18,0.0 +11263,64,33.25,21,0.0 +11263,37,26,4,0.0 +11263,31,12.5,30,0.0 +11263,46,12,47,0.0 +11263,22,21,26,0.0 +11263,47,9.5,14,0.0 +11263,30,25.89,41,0.0 +11263,7,30,33,0.0 +11263,33,2.5,31,0.0 +11263,14,23.25,13,0.0 +11263,68,12.5,1,0.0 +11264,75,7.75,21,0.0 +11264,77,13,18,0.0 +11264,40,18.4,44,0.0 +11264,20,81,19,0.0 +11264,36,19,44,0.0 +11264,39,18,21,0.0 +11264,62,49.3,26,0.0 +11264,69,36,2,0.0 +11264,3,10,12,0.0 +11264,17,39,29,0.0 +11264,73,15,23,0.0 +11264,11,21,1,0.0 +11264,51,53,39,0.0 +11264,65,21.05,8,0.0 +11264,67,14,1,0.0 +11264,9,97,22,0.0 +11264,33,2.5,22,0.0 +11264,76,18,30,0.0 +11264,12,38,19,0.0 +11264,66,17,12,0.0 +11264,16,17.45,23,0.0 +11264,15,15.5,18,0.0 +11264,1,18,6,0.0 +11264,25,14,20,0.0 +11264,23,9,17,0.0 +11264,46,12,47,0.0 +11264,43,46,50,0.0 +11264,32,32,2,0.0 +11264,68,12.5,43,0.0 +11264,31,12.5,40,0.0 +11264,27,43.9,14,0.0 +11264,8,40,10,0.0 +11264,44,19.45,40,0.0 +11264,48,12.75,29,0.0 +11264,5,21.35,22,0.0 +11264,49,20,17,0.0 +11264,10,31,17,0.0 +11265,59,55,44,0.0 +11265,16,17.45,29,0.0 +11265,36,19,30,0.0 +11265,9,97,20,0.0 +11265,12,38,5,0.0 +11265,5,21.35,21,0.0 +11265,29,123.79,22,0.0 +11265,45,9.5,46,0.0 +11265,34,14,1,0.0 +11265,20,81,22,0.0 +11265,48,12.75,23,0.0 +11265,72,34.8,18,0.0 +11265,75,7.75,48,0.0 +11265,26,31.23,16,0.0 +11265,23,9,31,0.0 +11265,47,9.5,11,0.0 +11265,44,19.45,49,0.0 +11265,1,18,16,0.0 +11265,77,13,49,0.0 +11265,13,6,46,0.0 +11265,74,10,3,0.0 +11265,17,39,19,0.0 +11265,66,17,40,0.0 +11265,11,21,47,0.0 +11265,43,46,19,0.0 +11265,69,36,35,0.0 +11265,2,19,33,0.0 +11265,21,10,19,0.0 +11265,31,12.5,23,0.0 +11265,61,28.5,43,0.0 +11265,3,10,40,0.0 +11265,30,25.89,2,0.0 +11265,37,26,27,0.0 +11265,14,23.25,26,0.0 +11265,76,18,43,0.0 +11265,39,18,38,0.0 +11265,40,18.4,45,0.0 +11265,25,14,27,0.0 +11265,62,49.3,43,0.0 +11265,71,21.5,22,0.0 +11265,38,263.5,19,0.0 +11265,58,13.25,19,0.0 +11265,24,4.5,6,0.0 +11265,28,45.6,15,0.0 +11266,43,46,22,0.0 +11266,13,6,39,0.0 +11266,50,16.25,47,0.0 +11266,67,14,21,0.0 +11266,45,9.5,12,0.0 +11266,4,22,28,0.0 +11266,12,38,5,0.0 +11266,14,23.25,34,0.0 +11266,70,15,9,0.0 +11266,40,18.4,24,0.0 +11266,34,14,11,0.0 +11266,58,13.25,23,0.0 +11266,8,40,42,0.0 +11266,38,263.5,25,0.0 +11266,74,10,37,0.0 +11266,27,43.9,4,0.0 +11266,57,19.5,41,0.0 +11266,49,20,49,0.0 +11266,22,21,10,0.0 +11266,44,19.45,26,0.0 +11266,39,18,39,0.0 +11266,41,9.65,5,0.0 +11266,6,25,3,0.0 +11266,71,21.5,46,0.0 +11266,25,14,18,0.0 +11266,61,28.5,22,0.0 +11266,48,12.75,48,0.0 +11266,2,19,15,0.0 +11266,55,24,13,0.0 +11266,11,21,20,0.0 +11266,30,25.89,1,0.0 +11266,37,26,35,0.0 +11267,52,7,29,0.0 +11267,58,13.25,27,0.0 +11267,35,18,16,0.0 +11267,11,21,45,0.0 +11267,30,25.89,34,0.0 +11267,10,31,14,0.0 +11267,4,22,3,0.0 +11267,19,9.2,12,0.0 +11267,16,17.45,25,0.0 +11267,53,32.8,14,0.0 +11267,76,18,33,0.0 +11267,12,38,28,0.0 +11267,9,97,30,0.0 +11267,45,9.5,16,0.0 +11267,57,19.5,4,0.0 +11267,37,26,11,0.0 +11268,27,43.9,9,0.0 +11269,55,24,25,0.0 +11269,18,62.5,5,0.0 +11269,59,55,30,0.0 +11269,32,32,16,0.0 +11269,47,9.5,6,0.0 +11269,22,21,32,0.0 +11269,63,43.9,30,0.0 +11269,4,22,25,0.0 +11269,43,46,12,0.0 +11269,39,18,26,0.0 +11269,76,18,1,0.0 +11269,73,15,30,0.0 +11269,30,25.89,5,0.0 +11269,35,18,41,0.0 +11269,38,263.5,9,0.0 +11269,69,36,33,0.0 +11269,8,40,13,0.0 +11269,21,10,47,0.0 +11269,11,21,45,0.0 +11269,28,45.6,9,0.0 +11269,20,81,19,0.0 +11269,40,18.4,42,0.0 +11269,66,17,16,0.0 +11269,23,9,2,0.0 +11269,54,7.45,41,0.0 +11269,70,15,8,0.0 +11269,58,13.25,7,0.0 +11269,3,10,11,0.0 +11269,74,10,40,0.0 +11269,2,19,45,0.0 +11269,41,9.65,14,0.0 +11269,57,19.5,45,0.0 +11269,7,30,47,0.0 +11269,25,14,19,0.0 +11269,26,31.23,32,0.0 +11269,16,17.45,32,0.0 +11269,6,25,43,0.0 +11269,49,20,35,0.0 +11269,62,49.3,25,0.0 +11269,27,43.9,36,0.0 +11269,10,31,20,0.0 +11269,12,38,48,0.0 +11269,77,13,7,0.0 +11269,53,32.8,37,0.0 +11269,72,34.8,23,0.0 +11269,5,21.35,19,0.0 +11269,31,12.5,9,0.0 +11269,1,18,41,0.0 +11269,65,21.05,19,0.0 +11269,46,12,35,0.0 +11269,17,39,12,0.0 +11269,50,16.25,13,0.0 +11269,34,14,23,0.0 +11269,71,21.5,3,0.0 +11269,48,12.75,33,0.0 +11269,75,7.75,30,0.0 +11269,19,9.2,8,0.0 +11269,52,7,5,0.0 +11269,68,12.5,12,0.0 +11270,43,46,16,0.0 +11270,42,14,21,0.0 +11270,25,14,33,0.0 +11270,20,81,40,0.0 +11270,46,12,9,0.0 +11270,73,15,20,0.0 +11270,18,62.5,34,0.0 +11270,27,43.9,34,0.0 +11270,54,7.45,26,0.0 +11271,61,28.5,5,0.0 +11271,33,2.5,2,0.0 +11271,32,32,18,0.0 +11271,45,9.5,27,0.0 +11271,47,9.5,1,0.0 +11272,17,39,27,0.0 +11272,72,34.8,50,0.0 +11272,38,263.5,15,0.0 +11272,66,17,44,0.0 +11272,40,18.4,33,0.0 +11272,31,12.5,25,0.0 +11272,77,13,16,0.0 +11272,71,21.5,36,0.0 +11272,25,14,10,0.0 +11272,22,21,18,0.0 +11272,21,10,29,0.0 +11272,54,7.45,39,0.0 +11272,33,2.5,1,0.0 +11272,4,22,29,0.0 +11272,34,14,22,0.0 +11272,15,15.5,31,0.0 +11272,74,10,43,0.0 +11272,56,38,12,0.0 +11272,20,81,7,0.0 +11272,13,6,48,0.0 +11272,41,9.65,11,0.0 +11272,39,18,34,0.0 +11272,67,14,40,0.0 +11272,57,19.5,15,0.0 +11272,27,43.9,39,0.0 +11272,49,20,39,0.0 +11272,64,33.25,28,0.0 +11272,58,13.25,40,0.0 +11272,26,31.23,20,0.0 +11272,5,21.35,13,0.0 +11272,48,12.75,29,0.0 +11272,10,31,17,0.0 +11272,3,10,2,0.0 +11272,7,30,36,0.0 +11272,6,25,13,0.0 +11272,60,34,37,0.0 +11272,30,25.89,39,0.0 +11273,13,6,11,0.0 +11273,58,13.25,48,0.0 +11273,61,28.5,50,0.0 +11273,41,9.65,18,0.0 +11273,21,10,1,0.0 +11273,7,30,19,0.0 +11273,39,18,16,0.0 +11273,44,19.45,16,0.0 +11273,10,31,9,0.0 +11273,19,9.2,41,0.0 +11273,68,12.5,36,0.0 +11273,56,38,5,0.0 +11273,42,14,43,0.0 +11273,16,17.45,21,0.0 +11273,23,9,32,0.0 +11273,64,33.25,12,0.0 +11273,30,25.89,30,0.0 +11274,45,9.5,34,0.0 +11274,58,13.25,23,0.0 +11274,65,21.05,41,0.0 +11274,16,17.45,10,0.0 +11274,18,62.5,25,0.0 +11274,2,19,41,0.0 +11274,36,19,6,0.0 +11274,44,19.45,33,0.0 +11274,15,15.5,24,0.0 +11274,3,10,29,0.0 +11274,25,14,7,0.0 +11274,56,38,23,0.0 +11274,69,36,7,0.0 +11274,14,23.25,27,0.0 +11274,51,53,13,0.0 +11274,10,31,41,0.0 +11274,55,24,13,0.0 +11274,43,46,26,0.0 +11274,12,38,33,0.0 +11274,68,12.5,5,0.0 +11274,70,15,12,0.0 +11274,50,16.25,12,0.0 +11274,27,43.9,29,0.0 +11274,24,4.5,22,0.0 +11274,73,15,18,0.0 +11274,64,33.25,11,0.0 +11274,62,49.3,20,0.0 +11274,47,9.5,31,0.0 +11274,59,55,29,0.0 +11274,30,25.89,9,0.0 +11274,17,39,46,0.0 +11274,21,10,27,0.0 +11274,75,7.75,20,0.0 +11274,8,40,31,0.0 +11274,35,18,9,0.0 +11274,7,30,33,0.0 +11274,77,13,1,0.0 +11274,23,9,48,0.0 +11274,74,10,6,0.0 +11274,33,2.5,43,0.0 +11274,9,97,4,0.0 +11274,34,14,9,0.0 +11274,28,45.6,15,0.0 +11274,20,81,33,0.0 +11274,63,43.9,29,0.0 +11274,39,18,29,0.0 +11274,57,19.5,50,0.0 +11274,11,21,18,0.0 +11274,32,32,19,0.0 +11274,4,22,11,0.0 +11274,72,34.8,11,0.0 +11274,31,12.5,36,0.0 +11274,53,32.8,10,0.0 +11274,71,21.5,2,0.0 +11274,29,123.79,34,0.0 +11274,41,9.65,49,0.0 +11274,66,17,35,0.0 +11274,13,6,18,0.0 +11274,40,18.4,41,0.0 +11274,76,18,50,0.0 +11274,26,31.23,24,0.0 +11274,5,21.35,4,0.0 +11274,49,20,16,0.0 +11275,48,12.75,24,0.0 +11275,28,45.6,30,0.0 +11275,46,12,46,0.0 +11275,20,81,21,0.0 +11275,51,53,50,0.0 +11275,56,38,21,0.0 +11275,71,21.5,24,0.0 +11275,55,24,41,0.0 +11275,31,12.5,27,0.0 +11275,12,38,30,0.0 +11275,11,21,14,0.0 +11275,6,25,18,0.0 +11275,34,14,27,0.0 +11275,19,9.2,3,0.0 +11275,67,14,2,0.0 +11275,23,9,46,0.0 +11275,49,20,26,0.0 +11275,77,13,49,0.0 +11275,30,25.89,6,0.0 +11276,3,10,28,0.0 +11276,54,7.45,29,0.0 +11276,57,19.5,10,0.0 +11276,66,17,32,0.0 +11276,44,19.45,24,0.0 +11276,48,12.75,4,0.0 +11276,38,263.5,13,0.0 +11276,18,62.5,22,0.0 +11276,29,123.79,38,0.0 +11276,9,97,26,0.0 +11276,56,38,26,0.0 +11276,42,14,21,0.0 +11276,47,9.5,18,0.0 +11276,13,6,41,0.0 +11276,25,14,50,0.0 +11276,53,32.8,28,0.0 +11276,77,13,24,0.0 +11276,59,55,29,0.0 +11276,22,21,37,0.0 +11276,62,49.3,41,0.0 +11276,72,34.8,39,0.0 +11277,7,30,35,0.0 +11277,76,18,33,0.0 +11277,58,13.25,33,0.0 +11277,46,12,14,0.0 +11277,18,62.5,1,0.0 +11277,77,13,9,0.0 +11277,11,21,42,0.0 +11277,62,49.3,46,0.0 +11277,41,9.65,31,0.0 +11277,56,38,28,0.0 +11277,5,21.35,28,0.0 +11277,52,7,21,0.0 +11277,3,10,22,0.0 +11277,23,9,10,0.0 +11277,70,15,6,0.0 +11277,9,97,17,0.0 +11277,69,36,37,0.0 +11277,75,7.75,38,0.0 +11277,2,19,31,0.0 +11277,59,55,40,0.0 +11277,13,6,19,0.0 +11277,33,2.5,39,0.0 +11277,27,43.9,8,0.0 +11277,30,25.89,14,0.0 +11277,22,21,2,0.0 +11277,28,45.6,21,0.0 +11277,29,123.79,29,0.0 +11277,51,53,11,0.0 +11277,14,23.25,11,0.0 +11277,68,12.5,4,0.0 +11277,53,32.8,18,0.0 +11277,10,31,26,0.0 +11277,39,18,30,0.0 +11277,50,16.25,41,0.0 +11277,24,4.5,23,0.0 +11277,57,19.5,8,0.0 +11277,61,28.5,22,0.0 +11277,54,7.45,33,0.0 +11277,17,39,50,0.0 +11277,47,9.5,48,0.0 +11277,72,34.8,33,0.0 +11277,31,12.5,33,0.0 +11277,64,33.25,22,0.0 +11277,60,34,36,0.0 +11277,15,15.5,35,0.0 +11277,38,263.5,46,0.0 +11277,67,14,13,0.0 +11277,49,20,6,0.0 +11277,44,19.45,16,0.0 +11277,19,9.2,19,0.0 +11277,26,31.23,32,0.0 +11277,71,21.5,30,0.0 +11277,25,14,6,0.0 +11277,21,10,35,0.0 +11277,48,12.75,12,0.0 +11278,72,34.8,27,0.0 +11278,69,36,13,0.0 +11278,30,25.89,35,0.0 +11278,49,20,24,0.0 +11278,14,23.25,31,0.0 +11278,64,33.25,21,0.0 +11278,3,10,30,0.0 +11278,57,19.5,16,0.0 +11278,66,17,30,0.0 +11278,43,46,37,0.0 +11278,35,18,9,0.0 +11278,11,21,16,0.0 +11278,16,17.45,44,0.0 +11278,15,15.5,21,0.0 +11278,62,49.3,2,0.0 +11278,38,263.5,48,0.0 +11278,39,18,33,0.0 +11278,77,13,6,0.0 +11278,6,25,45,0.0 +11278,10,31,21,0.0 +11278,9,97,6,0.0 +11278,4,22,25,0.0 +11278,32,32,27,0.0 +11278,7,30,39,0.0 +11278,1,18,6,0.0 +11278,19,9.2,5,0.0 +11278,21,10,12,0.0 +11278,22,21,18,0.0 +11278,47,9.5,47,0.0 +11278,76,18,22,0.0 +11278,24,4.5,15,0.0 +11278,63,43.9,40,0.0 +11278,25,14,46,0.0 +11278,65,21.05,31,0.0 +11278,40,18.4,20,0.0 +11278,74,10,43,0.0 +11278,26,31.23,22,0.0 +11278,61,28.5,40,0.0 +11278,31,12.5,19,0.0 +11278,55,24,12,0.0 +11278,23,9,12,0.0 +11278,45,9.5,41,0.0 +11278,46,12,19,0.0 +11278,2,19,39,0.0 +11278,73,15,1,0.0 +11278,20,81,14,0.0 +11278,18,62.5,34,0.0 +11278,12,38,9,0.0 +11278,8,40,24,0.0 +11279,44,19.45,17,0.0 +11279,61,28.5,6,0.0 +11279,23,9,7,0.0 +11279,70,15,9,0.0 +11279,29,123.79,33,0.0 +11279,28,45.6,17,0.0 +11280,11,21,37,0.0 +11280,61,28.5,34,0.0 +11280,49,20,23,0.0 +11280,32,32,4,0.0 +11280,62,49.3,43,0.0 +11280,65,21.05,16,0.0 +11280,27,43.9,25,0.0 +11280,3,10,10,0.0 +11280,40,18.4,10,0.0 +11280,59,55,19,0.0 +11280,48,12.75,41,0.0 +11280,41,9.65,6,0.0 +11280,9,97,20,0.0 +11280,47,9.5,3,0.0 +11280,10,31,16,0.0 +11280,45,9.5,32,0.0 +11280,24,4.5,25,0.0 +11280,20,81,31,0.0 +11280,56,38,25,0.0 +11280,12,38,48,0.0 +11280,76,18,6,0.0 +11280,74,10,39,0.0 +11280,55,24,43,0.0 +11280,33,2.5,18,0.0 +11280,67,14,3,0.0 +11280,64,33.25,25,0.0 +11280,57,19.5,8,0.0 +11280,22,21,1,0.0 +11280,18,62.5,43,0.0 +11280,26,31.23,42,0.0 +11280,15,15.5,31,0.0 +11280,58,13.25,42,0.0 +11280,31,12.5,20,0.0 +11280,34,14,17,0.0 +11280,14,23.25,40,0.0 +11280,44,19.45,46,0.0 +11280,35,18,26,0.0 +11280,29,123.79,2,0.0 +11280,73,15,30,0.0 +11280,72,34.8,37,0.0 +11280,60,34,30,0.0 +11280,63,43.9,14,0.0 +11280,37,26,8,0.0 +11280,17,39,3,0.0 +11280,38,263.5,33,0.0 +11280,54,7.45,47,0.0 +11280,68,12.5,21,0.0 +11280,42,14,39,0.0 +11280,71,21.5,38,0.0 +11280,5,21.35,35,0.0 +11280,50,16.25,28,0.0 +11280,6,25,8,0.0 +11280,21,10,35,0.0 +11280,70,15,12,0.0 +11280,46,12,33,0.0 +11280,8,40,20,0.0 +11280,19,9.2,39,0.0 +11280,52,7,18,0.0 +11281,38,263.5,29,0.0 +11281,18,62.5,15,0.0 +11281,5,21.35,37,0.0 +11281,14,23.25,9,0.0 +11281,29,123.79,34,0.0 +11281,57,19.5,47,0.0 +11281,15,15.5,8,0.0 +11281,56,38,28,0.0 +11281,41,9.65,34,0.0 +11281,32,32,2,0.0 +11281,36,19,34,0.0 +11281,12,38,15,0.0 +11281,9,97,41,0.0 +11281,30,25.89,23,0.0 +11281,28,45.6,1,0.0 +11281,47,9.5,27,0.0 +11281,21,10,18,0.0 +11281,69,36,41,0.0 +11281,45,9.5,17,0.0 +11281,58,13.25,16,0.0 +11281,66,17,7,0.0 +11281,52,7,22,0.0 +11281,6,25,35,0.0 +11281,16,17.45,8,0.0 +11281,31,12.5,49,0.0 +11281,48,12.75,28,0.0 +11281,55,24,1,0.0 +11281,74,10,39,0.0 +11281,23,9,45,0.0 +11281,68,12.5,2,0.0 +11281,77,13,25,0.0 +11281,46,12,14,0.0 +11281,34,14,1,0.0 +11281,26,31.23,45,0.0 +11281,1,18,45,0.0 +11281,60,34,25,0.0 +11281,11,21,6,0.0 +11281,39,18,30,0.0 +11281,40,18.4,30,0.0 +11281,51,53,10,0.0 +11281,19,9.2,27,0.0 +11281,70,15,7,0.0 +11281,22,21,12,0.0 +11281,4,22,2,0.0 +11281,71,21.5,44,0.0 +11281,49,20,23,0.0 +11281,64,33.25,39,0.0 +11281,27,43.9,40,0.0 +11281,25,14,6,0.0 +11281,13,6,28,0.0 +11281,20,81,18,0.0 +11281,76,18,24,0.0 +11281,50,16.25,30,0.0 +11281,63,43.9,8,0.0 +11281,2,19,8,0.0 +11281,42,14,5,0.0 +11281,33,2.5,16,0.0 +11281,17,39,19,0.0 +11281,59,55,11,0.0 +11281,43,46,21,0.0 +11281,44,19.45,4,0.0 +11281,37,26,1,0.0 +11281,7,30,45,0.0 +11281,3,10,11,0.0 +11281,8,40,9,0.0 +11281,54,7.45,18,0.0 +11281,62,49.3,46,0.0 +11281,73,15,45,0.0 +11281,61,28.5,29,0.0 +11281,75,7.75,41,0.0 +11281,24,4.5,47,0.0 +11281,53,32.8,22,0.0 +11281,67,14,34,0.0 +11281,35,18,11,0.0 +11281,10,31,22,0.0 +11281,65,21.05,48,0.0 +11281,72,34.8,32,0.0 +11282,19,9.2,40,0.0 +11282,37,26,47,0.0 +11282,55,24,39,0.0 +11282,27,43.9,38,0.0 +11282,28,45.6,42,0.0 +11282,26,31.23,11,0.0 +11282,50,16.25,16,0.0 +11282,5,21.35,25,0.0 +11282,67,14,23,0.0 +11282,25,14,45,0.0 +11282,73,15,16,0.0 +11282,48,12.75,7,0.0 +11282,46,12,23,0.0 +11282,43,46,22,0.0 +11282,53,32.8,17,0.0 +11282,20,81,38,0.0 +11282,65,21.05,41,0.0 +11282,54,7.45,5,0.0 +11282,4,22,47,0.0 +11282,40,18.4,29,0.0 +11282,76,18,3,0.0 +11282,51,53,18,0.0 +11282,47,9.5,31,0.0 +11282,42,14,9,0.0 +11282,38,263.5,40,0.0 +11282,39,18,22,0.0 +11282,15,15.5,29,0.0 +11282,66,17,40,0.0 +11282,68,12.5,44,0.0 +11282,61,28.5,19,0.0 +11282,57,19.5,24,0.0 +11282,56,38,41,0.0 +11282,34,14,11,0.0 +11282,18,62.5,27,0.0 +11282,21,10,30,0.0 +11282,72,34.8,31,0.0 +11282,60,34,13,0.0 +11282,49,20,47,0.0 +11282,33,2.5,49,0.0 +11282,11,21,37,0.0 +11282,8,40,5,0.0 +11282,52,7,23,0.0 +11282,62,49.3,33,0.0 +11282,44,19.45,49,0.0 +11282,29,123.79,22,0.0 +11282,35,18,5,0.0 +11282,1,18,49,0.0 +11282,74,10,29,0.0 +11282,9,97,45,0.0 +11282,17,39,5,0.0 +11282,16,17.45,11,0.0 +11282,12,38,33,0.0 +11282,32,32,49,0.0 +11282,7,30,30,0.0 +11282,31,12.5,43,0.0 +11282,24,4.5,4,0.0 +11282,58,13.25,26,0.0 +11282,10,31,9,0.0 +11282,45,9.5,33,0.0 +11282,70,15,11,0.0 +11282,59,55,14,0.0 +11282,30,25.89,7,0.0 +11282,23,9,19,0.0 +11282,22,21,43,0.0 +11282,77,13,20,0.0 +11282,64,33.25,40,0.0 +11282,71,21.5,5,0.0 +11282,13,6,5,0.0 +11283,58,13.25,44,0.0 +11283,4,22,22,0.0 +11283,26,31.23,32,0.0 +11283,56,38,15,0.0 +11283,29,123.79,15,0.0 +11283,22,21,48,0.0 +11283,66,17,38,0.0 +11283,57,19.5,21,0.0 +11283,14,23.25,10,0.0 +11283,53,32.8,50,0.0 +11283,49,20,50,0.0 +11283,1,18,33,0.0 +11283,25,14,14,0.0 +11283,43,46,12,0.0 +11283,6,25,50,0.0 +11283,46,12,6,0.0 +11283,35,18,6,0.0 +11283,44,19.45,19,0.0 +11283,70,15,20,0.0 +11283,60,34,18,0.0 +11283,10,31,41,0.0 +11283,51,53,36,0.0 +11283,23,9,26,0.0 +11283,19,9.2,45,0.0 +11283,27,43.9,22,0.0 +11283,63,43.9,28,0.0 +11283,65,21.05,36,0.0 +11283,32,32,26,0.0 +11283,59,55,5,0.0 +11283,39,18,38,0.0 +11283,7,30,43,0.0 +11283,50,16.25,47,0.0 +11283,17,39,4,0.0 +11283,40,18.4,1,0.0 +11283,52,7,47,0.0 +11283,41,9.65,35,0.0 +11283,9,97,35,0.0 +11283,3,10,10,0.0 +11283,33,2.5,19,0.0 +11283,37,26,13,0.0 +11283,75,7.75,26,0.0 +11283,5,21.35,27,0.0 +11283,34,14,3,0.0 +11283,45,9.5,26,0.0 +11283,28,45.6,32,0.0 +11283,16,17.45,6,0.0 +11283,48,12.75,16,0.0 +11283,62,49.3,41,0.0 +11283,68,12.5,32,0.0 +11283,36,19,28,0.0 +11283,77,13,31,0.0 +11283,2,19,9,0.0 +11283,74,10,20,0.0 +11283,13,6,34,0.0 +11283,67,14,21,0.0 +11283,15,15.5,22,0.0 +11283,47,9.5,7,0.0 +11283,21,10,15,0.0 +11283,76,18,11,0.0 +11283,73,15,50,0.0 +11283,18,62.5,23,0.0 +11283,30,25.89,12,0.0 +11283,8,40,15,0.0 +11283,20,81,40,0.0 +11283,72,34.8,47,0.0 +11283,24,4.5,41,0.0 +11283,61,28.5,11,0.0 +11283,31,12.5,11,0.0 +11283,11,21,43,0.0 +11283,55,24,43,0.0 +11283,42,14,6,0.0 +11284,11,21,48,0.0 +11284,15,15.5,10,0.0 +11284,23,9,37,0.0 +11284,64,33.25,41,0.0 +11284,10,31,34,0.0 +11284,65,21.05,29,0.0 +11284,28,45.6,9,0.0 +11284,36,19,12,0.0 +11284,63,43.9,17,0.0 +11284,41,9.65,49,0.0 +11284,35,18,8,0.0 +11284,55,24,2,0.0 +11284,1,18,29,0.0 +11284,58,13.25,14,0.0 +11284,13,6,6,0.0 +11284,21,10,18,0.0 +11284,17,39,30,0.0 +11284,60,34,7,0.0 +11284,59,55,35,0.0 +11284,72,34.8,29,0.0 +11284,62,49.3,45,0.0 +11284,14,23.25,37,0.0 +11284,24,4.5,13,0.0 +11284,57,19.5,16,0.0 +11284,40,18.4,29,0.0 +11284,56,38,28,0.0 +11284,7,30,9,0.0 +11284,70,15,46,0.0 +11284,3,10,33,0.0 +11284,48,12.75,35,0.0 +11284,30,25.89,32,0.0 +11284,61,28.5,27,0.0 +11284,67,14,33,0.0 +11284,8,40,10,0.0 +11284,49,20,3,0.0 +11284,53,32.8,44,0.0 +11284,33,2.5,15,0.0 +11284,51,53,14,0.0 +11284,20,81,42,0.0 +11284,22,21,34,0.0 +11284,52,7,41,0.0 +11284,54,7.45,11,0.0 +11284,29,123.79,31,0.0 +11284,37,26,15,0.0 +11284,32,32,17,0.0 +11284,50,16.25,4,0.0 +11284,77,13,6,0.0 +11284,66,17,4,0.0 +11284,39,18,32,0.0 +11284,19,9.2,13,0.0 +11284,25,14,40,0.0 +11284,45,9.5,38,0.0 +11284,68,12.5,41,0.0 +11284,47,9.5,1,0.0 +11285,52,7,31,0.0 +11285,25,14,1,0.0 +11285,28,45.6,37,0.0 +11285,58,13.25,2,0.0 +11285,39,18,19,0.0 +11286,17,39,39,0.0 +11286,5,21.35,50,0.0 +11286,34,14,9,0.0 +11286,19,9.2,14,0.0 +11286,30,25.89,46,0.0 +11286,35,18,15,0.0 +11286,33,2.5,46,0.0 +11286,66,17,15,0.0 +11286,53,32.8,10,0.0 +11286,36,19,7,0.0 +11286,2,19,16,0.0 +11286,11,21,17,0.0 +11286,12,38,45,0.0 +11286,13,6,2,0.0 +11286,8,40,48,0.0 +11286,44,19.45,16,0.0 +11286,69,36,13,0.0 +11286,14,23.25,41,0.0 +11286,72,34.8,15,0.0 +11286,63,43.9,20,0.0 +11286,60,34,35,0.0 +11286,77,13,1,0.0 +11286,73,15,49,0.0 +11286,54,7.45,32,0.0 +11286,41,9.65,5,0.0 +11286,70,15,44,0.0 +11286,4,22,37,0.0 +11286,9,97,29,0.0 +11286,71,21.5,11,0.0 +11286,46,12,19,0.0 +11286,26,31.23,25,0.0 +11286,24,4.5,23,0.0 +11286,29,123.79,21,0.0 +11286,16,17.45,4,0.0 +11286,40,18.4,15,0.0 +11286,55,24,1,0.0 +11286,74,10,44,0.0 +11286,64,33.25,48,0.0 +11286,48,12.75,37,0.0 +11286,22,21,10,0.0 +11286,67,14,16,0.0 +11286,27,43.9,8,0.0 +11286,56,38,13,0.0 +11286,21,10,4,0.0 +11287,25,14,2,0.0 +11287,44,19.45,38,0.0 +11287,42,14,42,0.0 +11287,64,33.25,38,0.0 +11287,18,62.5,42,0.0 +11288,36,19,27,0.0 +11288,10,31,34,0.0 +11288,13,6,44,0.0 +11288,73,15,48,0.0 +11288,17,39,11,0.0 +11288,32,32,12,0.0 +11288,69,36,18,0.0 +11288,25,14,13,0.0 +11288,55,24,30,0.0 +11289,29,123.79,1,0.0 +11289,53,32.8,10,0.0 +11289,64,33.25,1,0.0 +11289,32,32,42,0.0 +11290,34,14,40,0.0 +11290,65,21.05,43,0.0 +11290,59,55,17,0.0 +11290,3,10,44,0.0 +11290,17,39,21,0.0 +11290,71,21.5,8,0.0 +11290,60,34,44,0.0 +11290,46,12,44,0.0 +11290,18,62.5,50,0.0 +11290,15,15.5,46,0.0 +11290,70,15,36,0.0 +11290,9,97,43,0.0 +11290,13,6,36,0.0 +11291,20,81,37,0.0 +11291,39,18,50,0.0 +11291,28,45.6,20,0.0 +11291,53,32.8,24,0.0 +11291,69,36,23,0.0 +11291,64,33.25,18,0.0 +11291,76,18,8,0.0 +11291,68,12.5,23,0.0 +11291,22,21,44,0.0 +11291,35,18,39,0.0 +11291,58,13.25,23,0.0 +11291,9,97,25,0.0 +11291,30,25.89,19,0.0 +11291,56,38,24,0.0 +11291,67,14,43,0.0 +11291,46,12,49,0.0 +11291,48,12.75,38,0.0 +11291,72,34.8,39,0.0 +11291,21,10,26,0.0 +11291,7,30,13,0.0 +11291,34,14,19,0.0 +11291,73,15,29,0.0 +11291,44,19.45,15,0.0 +11291,50,16.25,5,0.0 +11291,38,263.5,47,0.0 +11291,61,28.5,9,0.0 +11291,19,9.2,44,0.0 +11291,36,19,19,0.0 +11291,24,4.5,19,0.0 +11291,16,17.45,4,0.0 +11291,66,17,28,0.0 +11291,14,23.25,45,0.0 +11292,76,18,20,0.0 +11292,10,31,35,0.0 +11292,36,19,26,0.0 +11292,14,23.25,31,0.0 +11292,64,33.25,42,0.0 +11292,70,15,45,0.0 +11292,9,97,38,0.0 +11292,62,49.3,39,0.0 +11292,35,18,38,0.0 +11292,45,9.5,30,0.0 +11292,17,39,43,0.0 +11292,33,2.5,44,0.0 +11292,69,36,49,0.0 +11292,39,18,37,0.0 +11292,71,21.5,14,0.0 +11292,2,19,12,0.0 +11293,63,43.9,43,0.0 +11293,11,21,17,0.0 +11293,7,30,20,0.0 +11293,48,12.75,12,0.0 +11293,19,9.2,20,0.0 +11293,77,13,10,0.0 +11293,55,24,13,0.0 +11293,44,19.45,8,0.0 +11293,34,14,21,0.0 +11293,25,14,12,0.0 +11293,1,18,40,0.0 +11293,38,263.5,9,0.0 +11293,33,2.5,30,0.0 +11293,3,10,2,0.0 +11293,68,12.5,28,0.0 +11293,47,9.5,5,0.0 +11293,26,31.23,11,0.0 +11293,66,17,45,0.0 +11293,61,28.5,10,0.0 +11293,56,38,14,0.0 +11293,16,17.45,33,0.0 +11293,69,36,15,0.0 +11293,51,53,3,0.0 +11293,27,43.9,32,0.0 +11293,62,49.3,14,0.0 +11293,54,7.45,6,0.0 +11293,49,20,39,0.0 +11293,70,15,3,0.0 +11293,32,32,1,0.0 +11293,4,22,23,0.0 +11293,40,18.4,24,0.0 +11293,6,25,14,0.0 +11293,76,18,8,0.0 +11293,53,32.8,18,0.0 +11293,21,10,11,0.0 +11293,8,40,45,0.0 +11293,15,15.5,36,0.0 +11293,14,23.25,24,0.0 +11293,24,4.5,49,0.0 +11293,71,21.5,16,0.0 +11293,30,25.89,13,0.0 +11293,23,9,1,0.0 +11293,42,14,31,0.0 +11293,46,12,25,0.0 +11293,75,7.75,3,0.0 +11293,58,13.25,9,0.0 +11294,60,34,31,0.0 +11294,35,18,37,0.0 +11294,77,13,12,0.0 +11294,33,2.5,33,0.0 +11294,30,25.89,3,0.0 +11294,7,30,27,0.0 +11294,12,38,16,0.0 +11294,49,20,23,0.0 +11294,9,97,36,0.0 +11294,25,14,45,0.0 +11294,17,39,48,0.0 +11294,2,19,34,0.0 +11294,50,16.25,4,0.0 +11294,21,10,47,0.0 +11294,55,24,32,0.0 +11294,51,53,42,0.0 +11294,54,7.45,43,0.0 +11294,45,9.5,50,0.0 +11294,41,9.65,3,0.0 +11294,37,26,34,0.0 +11294,27,43.9,34,0.0 +11294,48,12.75,25,0.0 +11294,4,22,3,0.0 +11294,69,36,19,0.0 +11294,62,49.3,17,0.0 +11294,22,21,48,0.0 +11294,46,12,20,0.0 +11294,1,18,26,0.0 +11294,58,13.25,34,0.0 +11294,5,21.35,12,0.0 +11294,71,21.5,2,0.0 +11294,19,9.2,31,0.0 +11294,65,21.05,12,0.0 +11294,38,263.5,23,0.0 +11294,57,19.5,4,0.0 +11294,53,32.8,37,0.0 +11294,26,31.23,38,0.0 +11294,63,43.9,26,0.0 +11294,44,19.45,40,0.0 +11294,52,7,35,0.0 +11294,39,18,35,0.0 +11294,47,9.5,18,0.0 +11294,56,38,4,0.0 +11294,40,18.4,32,0.0 +11294,20,81,48,0.0 +11294,3,10,13,0.0 +11294,10,31,36,0.0 +11294,64,33.25,44,0.0 +11294,76,18,24,0.0 +11294,31,12.5,15,0.0 +11294,8,40,20,0.0 +11294,68,12.5,18,0.0 +11295,22,21,32,0.0 +11295,63,43.9,8,0.0 +11295,33,2.5,30,0.0 +11295,42,14,13,0.0 +11295,2,19,2,0.0 +11295,49,20,9,0.0 +11295,8,40,23,0.0 +11295,13,6,14,0.0 +11295,64,33.25,45,0.0 +11295,69,36,27,0.0 +11295,51,53,36,0.0 +11295,1,18,1,0.0 +11295,61,28.5,18,0.0 +11295,39,18,26,0.0 +11295,72,34.8,40,0.0 +11295,40,18.4,47,0.0 +11295,73,15,9,0.0 +11295,10,31,46,0.0 +11295,48,12.75,11,0.0 +11295,31,12.5,4,0.0 +11295,44,19.45,30,0.0 +11295,34,14,1,0.0 +11295,60,34,28,0.0 +11295,45,9.5,2,0.0 +11295,57,19.5,23,0.0 +11295,24,4.5,25,0.0 +11295,19,9.2,7,0.0 +11295,71,21.5,38,0.0 +11295,6,25,10,0.0 +11295,47,9.5,16,0.0 +11295,5,21.35,2,0.0 +11295,18,62.5,34,0.0 +11295,41,9.65,8,0.0 +11295,77,13,23,0.0 +11295,37,26,44,0.0 +11295,46,12,14,0.0 +11295,36,19,33,0.0 +11295,56,38,33,0.0 +11295,30,25.89,6,0.0 +11295,4,22,13,0.0 +11295,65,21.05,11,0.0 +11295,23,9,13,0.0 +11295,35,18,28,0.0 +11295,17,39,50,0.0 +11295,32,32,39,0.0 +11295,29,123.79,30,0.0 +11295,15,15.5,36,0.0 +11295,67,14,45,0.0 +11295,3,10,27,0.0 +11295,75,7.75,36,0.0 +11295,14,23.25,13,0.0 +11295,52,7,49,0.0 +11295,54,7.45,29,0.0 +11295,38,263.5,24,0.0 +11295,16,17.45,43,0.0 +11295,27,43.9,45,0.0 +11295,21,10,9,0.0 +11295,53,32.8,15,0.0 +11295,20,81,18,0.0 +11295,66,17,44,0.0 +11295,68,12.5,1,0.0 +11295,9,97,4,0.0 +11295,55,24,19,0.0 +11295,62,49.3,38,0.0 +11295,59,55,31,0.0 +11295,7,30,6,0.0 +11295,58,13.25,47,0.0 +11295,70,15,4,0.0 +11295,25,14,7,0.0 +11295,74,10,37,0.0 +11295,11,21,45,0.0 +11295,28,45.6,9,0.0 +11295,12,38,37,0.0 +11295,26,31.23,45,0.0 +11296,33,2.5,47,0.0 +11296,59,55,21,0.0 +11296,49,20,50,0.0 +11296,47,9.5,20,0.0 +11296,51,53,48,0.0 +11296,20,81,40,0.0 +11296,11,21,18,0.0 +11296,52,7,25,0.0 +11296,28,45.6,46,0.0 +11296,10,31,28,0.0 +11296,61,28.5,33,0.0 +11296,58,13.25,5,0.0 +11296,60,34,14,0.0 +11296,46,12,9,0.0 +11296,66,17,8,0.0 +11296,4,22,26,0.0 +11296,25,14,14,0.0 +11296,69,36,42,0.0 +11296,30,25.89,13,0.0 +11296,50,16.25,30,0.0 +11296,65,21.05,33,0.0 +11296,45,9.5,32,0.0 +11296,8,40,39,0.0 +11296,32,32,22,0.0 +11296,56,38,24,0.0 +11296,6,25,47,0.0 +11296,21,10,13,0.0 +11296,75,7.75,48,0.0 +11296,64,33.25,16,0.0 +11296,36,19,24,0.0 +11296,41,9.65,5,0.0 +11296,3,10,7,0.0 +11296,29,123.79,34,0.0 +11296,72,34.8,47,0.0 +11296,39,18,10,0.0 +11296,42,14,38,0.0 +11296,48,12.75,25,0.0 +11296,54,7.45,21,0.0 +11296,7,30,46,0.0 +11296,62,49.3,16,0.0 +11296,14,23.25,12,0.0 +11296,9,97,20,0.0 +11296,1,18,50,0.0 +11296,16,17.45,23,0.0 +11296,43,46,49,0.0 +11296,5,21.35,33,0.0 +11296,63,43.9,12,0.0 +11296,57,19.5,32,0.0 +11296,24,4.5,18,0.0 +11296,18,62.5,12,0.0 +11296,17,39,35,0.0 +11296,19,9.2,45,0.0 +11296,26,31.23,9,0.0 +11296,34,14,16,0.0 +11296,55,24,11,0.0 +11296,23,9,15,0.0 +11296,77,13,18,0.0 +11296,73,15,43,0.0 +11296,35,18,43,0.0 +11296,2,19,21,0.0 +11296,53,32.8,4,0.0 +11296,74,10,22,0.0 +11296,37,26,48,0.0 +11296,15,15.5,5,0.0 +11296,22,21,40,0.0 +11296,76,18,49,0.0 +11296,27,43.9,1,0.0 +11296,68,12.5,7,0.0 +11297,32,32,3,0.0 +11297,1,18,2,0.0 +11297,24,4.5,28,0.0 +11297,33,2.5,38,0.0 +11297,13,6,8,0.0 +11297,71,21.5,9,0.0 +11297,61,28.5,45,0.0 +11297,44,19.45,41,0.0 +11297,39,18,7,0.0 +11297,11,21,39,0.0 +11297,28,45.6,26,0.0 +11297,69,36,4,0.0 +11297,5,21.35,6,0.0 +11297,34,14,4,0.0 +11297,65,21.05,25,0.0 +11297,21,10,12,0.0 +11297,56,38,40,0.0 +11297,14,23.25,12,0.0 +11297,35,18,19,0.0 +11297,63,43.9,32,0.0 +11297,9,97,24,0.0 +11297,73,15,3,0.0 +11297,7,30,41,0.0 +11297,43,46,2,0.0 +11297,49,20,47,0.0 +11297,55,24,2,0.0 +11297,2,19,26,0.0 +11297,75,7.75,30,0.0 +11297,30,25.89,29,0.0 +11297,16,17.45,30,0.0 +11297,20,81,2,0.0 +11297,19,9.2,26,0.0 +11297,8,40,45,0.0 +11297,45,9.5,16,0.0 +11297,59,55,41,0.0 +11298,49,20,30,0.0 +11298,14,23.25,15,0.0 +11298,46,12,5,0.0 +11298,21,10,42,0.0 +11298,3,10,20,0.0 +11298,1,18,25,0.0 +11298,72,34.8,4,0.0 +11298,77,13,28,0.0 +11298,54,7.45,24,0.0 +11298,55,24,16,0.0 +11298,39,18,6,0.0 +11298,2,19,13,0.0 +11298,56,38,17,0.0 +11298,27,43.9,42,0.0 +11298,37,26,41,0.0 +11298,63,43.9,10,0.0 +11298,42,14,29,0.0 +11298,35,18,29,0.0 +11298,73,15,12,0.0 +11298,30,25.89,31,0.0 +11298,51,53,18,0.0 +11298,50,16.25,46,0.0 +11298,19,9.2,41,0.0 +11298,60,34,15,0.0 +11298,18,62.5,28,0.0 +11298,64,33.25,48,0.0 +11298,76,18,8,0.0 +11298,22,21,32,0.0 +11298,6,25,22,0.0 +11298,40,18.4,12,0.0 +11298,58,13.25,22,0.0 +11298,38,263.5,2,0.0 +11298,45,9.5,5,0.0 +11298,31,12.5,33,0.0 +11298,9,97,10,0.0 +11298,32,32,28,0.0 +11298,29,123.79,18,0.0 +11298,8,40,33,0.0 +11298,57,19.5,25,0.0 +11298,48,12.75,32,0.0 +11298,47,9.5,49,0.0 +11298,34,14,9,0.0 +11298,25,14,7,0.0 +11298,23,9,18,0.0 +11298,10,31,48,0.0 +11298,43,46,25,0.0 +11298,62,49.3,23,0.0 +11298,15,15.5,4,0.0 +11298,75,7.75,3,0.0 +11298,59,55,8,0.0 +11298,17,39,2,0.0 +11298,33,2.5,26,0.0 +11298,7,30,19,0.0 +11298,13,6,22,0.0 +11298,26,31.23,34,0.0 +11298,70,15,33,0.0 +11298,28,45.6,24,0.0 +11298,41,9.65,32,0.0 +11298,4,22,37,0.0 +11299,29,123.79,50,0.0 +11299,31,12.5,46,0.0 +11299,20,81,19,0.0 +11299,9,97,8,0.0 +11299,40,18.4,44,0.0 +11299,44,19.45,38,0.0 +11299,10,31,13,0.0 +11299,42,14,6,0.0 +11299,32,32,46,0.0 +11299,66,17,50,0.0 +11299,3,10,37,0.0 +11299,49,20,50,0.0 +11299,1,18,32,0.0 +11299,53,32.8,37,0.0 +11299,14,23.25,35,0.0 +11299,16,17.45,25,0.0 +11299,73,15,13,0.0 +11299,2,19,45,0.0 +11299,33,2.5,49,0.0 +11299,17,39,29,0.0 +11299,69,36,22,0.0 +11299,36,19,10,0.0 +11299,59,55,32,0.0 +11299,45,9.5,24,0.0 +11299,39,18,31,0.0 +11299,48,12.75,7,0.0 +11299,64,33.25,29,0.0 +11299,52,7,33,0.0 +11299,43,46,20,0.0 +11299,11,21,19,0.0 +11299,21,10,33,0.0 +11299,57,19.5,19,0.0 +11299,28,45.6,38,0.0 +11299,63,43.9,34,0.0 +11299,76,18,13,0.0 +11299,70,15,44,0.0 +11299,26,31.23,8,0.0 +11299,56,38,4,0.0 +11299,55,24,11,0.0 +11299,61,28.5,38,0.0 +11299,68,12.5,20,0.0 +11299,18,62.5,32,0.0 +11299,5,21.35,10,0.0 +11299,23,9,3,0.0 +11299,75,7.75,43,0.0 +11299,37,26,46,0.0 +11299,15,15.5,7,0.0 +11299,41,9.65,4,0.0 +11299,8,40,5,0.0 +11299,58,13.25,47,0.0 +11299,50,16.25,46,0.0 +11299,13,6,40,0.0 +11299,67,14,35,0.0 +11299,71,21.5,22,0.0 +11299,60,34,29,0.0 +11299,35,18,2,0.0 +11299,6,25,14,0.0 +11299,72,34.8,2,0.0 +11299,77,13,16,0.0 +11299,12,38,44,0.0 +11299,7,30,12,0.0 +11299,19,9.2,39,0.0 +11299,4,22,49,0.0 +11299,62,49.3,5,0.0 +11299,74,10,45,0.0 +11299,65,21.05,11,0.0 +11299,24,4.5,11,0.0 +11299,54,7.45,30,0.0 +11299,51,53,2,0.0 +11299,34,14,37,0.0 +11300,44,19.45,39,0.0 +11300,45,9.5,13,0.0 +11300,11,21,44,0.0 +11300,60,34,29,0.0 +11300,22,21,39,0.0 +11300,61,28.5,12,0.0 +11300,3,10,26,0.0 +11300,32,32,10,0.0 +11300,33,2.5,41,0.0 +11300,35,18,24,0.0 +11300,69,36,45,0.0 +11300,20,81,48,0.0 +11300,75,7.75,20,0.0 +11300,38,263.5,12,0.0 +11300,59,55,38,0.0 +11300,68,12.5,36,0.0 +11300,51,53,48,0.0 +11300,13,6,14,0.0 +11300,57,19.5,50,0.0 +11300,53,32.8,14,0.0 +11300,54,7.45,33,0.0 +11300,29,123.79,19,0.0 +11300,24,4.5,3,0.0 +11300,5,21.35,50,0.0 +11300,31,12.5,40,0.0 +11300,63,43.9,23,0.0 +11300,40,18.4,10,0.0 +11301,18,62.5,24,0.0 +11301,6,25,6,0.0 +11301,52,7,44,0.0 +11301,2,19,18,0.0 +11301,37,26,41,0.0 +11301,32,32,33,0.0 +11301,71,21.5,50,0.0 +11301,8,40,14,0.0 +11301,72,34.8,13,0.0 +11301,26,31.23,17,0.0 +11301,47,9.5,2,0.0 +11301,24,4.5,23,0.0 +11301,56,38,45,0.0 +11301,27,43.9,47,0.0 +11301,35,18,3,0.0 +11301,34,14,2,0.0 +11301,62,49.3,33,0.0 +11301,51,53,1,0.0 +11301,59,55,42,0.0 +11301,50,16.25,29,0.0 +11301,19,9.2,16,0.0 +11301,66,17,25,0.0 +11302,58,13.25,6,0.0 +11302,36,19,45,0.0 +11302,1,18,48,0.0 +11302,2,19,26,0.0 +11302,43,46,20,0.0 +11302,9,97,30,0.0 +11302,14,23.25,8,0.0 +11302,75,7.75,46,0.0 +11302,67,14,9,0.0 +11302,56,38,42,0.0 +11302,19,9.2,22,0.0 +11302,20,81,3,0.0 +11302,33,2.5,1,0.0 +11302,32,32,11,0.0 +11302,8,40,47,0.0 +11302,10,31,5,0.0 +11302,3,10,36,0.0 +11302,74,10,34,0.0 +11302,63,43.9,49,0.0 +11302,13,6,12,0.0 +11302,53,32.8,2,0.0 +11302,57,19.5,16,0.0 +11302,61,28.5,46,0.0 +11302,35,18,21,0.0 +11302,31,12.5,49,0.0 +11302,70,15,21,0.0 +11303,70,15,16,0.0 +11303,16,17.45,29,0.0 +11303,54,7.45,10,0.0 +11303,38,263.5,1,0.0 +11303,20,81,44,0.0 +11303,30,25.89,15,0.0 +11303,64,33.25,33,0.0 +11303,35,18,44,0.0 +11303,68,12.5,37,0.0 +11303,51,53,26,0.0 +11303,44,19.45,16,0.0 +11303,23,9,32,0.0 +11303,29,123.79,40,0.0 +11303,11,21,6,0.0 +11303,15,15.5,18,0.0 +11303,76,18,20,0.0 +11303,10,31,44,0.0 +11303,74,10,23,0.0 +11303,61,28.5,48,0.0 +11303,62,49.3,26,0.0 +11303,12,38,27,0.0 +11303,77,13,30,0.0 +11304,21,10,15,0.0 +11304,27,43.9,12,0.0 +11304,42,14,35,0.0 +11304,29,123.79,36,0.0 +11304,77,13,27,0.0 +11304,68,12.5,28,0.0 +11304,10,31,31,0.0 +11304,6,25,24,0.0 +11304,52,7,49,0.0 +11304,7,30,45,0.0 +11304,1,18,36,0.0 +11304,37,26,12,0.0 +11304,15,15.5,5,0.0 +11304,23,9,9,0.0 +11304,66,17,24,0.0 +11304,30,25.89,45,0.0 +11304,55,24,1,0.0 +11304,62,49.3,10,0.0 +11304,45,9.5,4,0.0 +11304,5,21.35,32,0.0 +11304,11,21,37,0.0 +11304,3,10,26,0.0 +11304,74,10,23,0.0 +11304,39,18,3,0.0 +11304,43,46,9,0.0 +11305,45,9.5,4,0.0 +11305,54,7.45,3,0.0 +11305,51,53,49,0.0 +11305,20,81,35,0.0 +11305,59,55,48,0.0 +11305,61,28.5,17,0.0 +11305,41,9.65,9,0.0 +11305,58,13.25,9,0.0 +11305,8,40,49,0.0 +11305,69,36,33,0.0 +11305,65,21.05,13,0.0 +11305,46,12,45,0.0 +11305,36,19,18,0.0 +11305,52,7,31,0.0 +11305,9,97,13,0.0 +11305,32,32,17,0.0 +11305,30,25.89,12,0.0 +11305,38,263.5,26,0.0 +11305,4,22,31,0.0 +11305,47,9.5,32,0.0 +11305,50,16.25,39,0.0 +11305,49,20,45,0.0 +11305,37,26,12,0.0 +11305,16,17.45,49,0.0 +11305,62,49.3,13,0.0 +11305,73,15,9,0.0 +11305,75,7.75,9,0.0 +11305,31,12.5,18,0.0 +11305,17,39,17,0.0 +11305,71,21.5,27,0.0 +11305,6,25,34,0.0 +11305,68,12.5,44,0.0 +11305,48,12.75,5,0.0 +11305,35,18,33,0.0 +11305,70,15,41,0.0 +11305,42,14,13,0.0 +11305,23,9,1,0.0 +11305,22,21,28,0.0 +11305,24,4.5,34,0.0 +11305,72,34.8,46,0.0 +11305,76,18,38,0.0 +11305,21,10,38,0.0 +11305,40,18.4,10,0.0 +11305,67,14,27,0.0 +11305,43,46,49,0.0 +11305,64,33.25,45,0.0 +11305,33,2.5,25,0.0 +11305,2,19,49,0.0 +11305,7,30,27,0.0 +11305,5,21.35,39,0.0 +11305,39,18,40,0.0 +11305,3,10,35,0.0 +11305,34,14,46,0.0 +11306,50,16.25,26,0.0 +11306,15,15.5,50,0.0 +11306,44,19.45,20,0.0 +11306,72,34.8,44,0.0 +11306,4,22,7,0.0 +11306,21,10,28,0.0 +11306,53,32.8,19,0.0 +11306,38,263.5,1,0.0 +11306,2,19,12,0.0 +11306,22,21,40,0.0 +11306,77,13,48,0.0 +11306,74,10,47,0.0 +11306,10,31,36,0.0 +11306,76,18,10,0.0 +11306,20,81,37,0.0 +11306,29,123.79,11,0.0 +11307,8,40,10,0.0 +11307,32,32,28,0.0 +11307,3,10,4,0.0 +11307,67,14,23,0.0 +11307,52,7,12,0.0 +11307,10,31,40,0.0 +11307,34,14,28,0.0 +11307,73,15,9,0.0 +11307,12,38,29,0.0 +11307,41,9.65,7,0.0 +11307,42,14,21,0.0 +11307,36,19,39,0.0 +11307,35,18,17,0.0 +11307,14,23.25,36,0.0 +11307,28,45.6,9,0.0 +11307,21,10,7,0.0 +11307,63,43.9,27,0.0 +11307,17,39,46,0.0 +11307,58,13.25,48,0.0 +11307,48,12.75,3,0.0 +11307,1,18,40,0.0 +11307,9,97,15,0.0 +11307,16,17.45,50,0.0 +11307,19,9.2,47,0.0 +11307,71,21.5,41,0.0 +11307,29,123.79,13,0.0 +11307,45,9.5,34,0.0 +11307,40,18.4,18,0.0 +11307,54,7.45,30,0.0 +11307,46,12,27,0.0 +11307,33,2.5,23,0.0 +11307,39,18,46,0.0 +11307,49,20,43,0.0 +11307,24,4.5,34,0.0 +11308,1,18,22,0.0 +11308,23,9,30,0.0 +11308,18,62.5,26,0.0 +11308,30,25.89,35,0.0 +11308,37,26,1,0.0 +11308,73,15,7,0.0 +11308,77,13,14,0.0 +11308,43,46,48,0.0 +11308,76,18,48,0.0 +11308,7,30,18,0.0 +11308,4,22,6,0.0 +11308,28,45.6,25,0.0 +11308,48,12.75,11,0.0 +11308,17,39,39,0.0 +11308,74,10,49,0.0 +11308,71,21.5,14,0.0 +11308,40,18.4,6,0.0 +11308,61,28.5,5,0.0 +11308,11,21,41,0.0 +11308,27,43.9,5,0.0 +11308,54,7.45,5,0.0 +11308,3,10,44,0.0 +11308,55,24,47,0.0 +11308,2,19,19,0.0 +11308,5,21.35,6,0.0 +11308,14,23.25,49,0.0 +11308,34,14,44,0.0 +11308,51,53,34,0.0 +11308,60,34,40,0.0 +11308,69,36,27,0.0 +11308,26,31.23,16,0.0 +11308,72,34.8,11,0.0 +11308,66,17,41,0.0 +11308,56,38,13,0.0 +11308,33,2.5,35,0.0 +11308,45,9.5,29,0.0 +11308,8,40,16,0.0 +11308,70,15,38,0.0 +11308,41,9.65,5,0.0 +11308,64,33.25,42,0.0 +11308,21,10,36,0.0 +11308,65,21.05,38,0.0 +11308,63,43.9,40,0.0 +11308,24,4.5,45,0.0 +11308,67,14,26,0.0 +11308,57,19.5,21,0.0 +11308,19,9.2,48,0.0 +11308,50,16.25,38,0.0 +11308,38,263.5,48,0.0 +11308,13,6,50,0.0 +11308,68,12.5,31,0.0 +11308,75,7.75,14,0.0 +11308,62,49.3,41,0.0 +11308,36,19,28,0.0 +11308,39,18,42,0.0 +11308,58,13.25,21,0.0 +11308,49,20,32,0.0 +11308,16,17.45,48,0.0 +11308,32,32,38,0.0 +11308,22,21,44,0.0 +11308,20,81,45,0.0 +11308,44,19.45,46,0.0 +11308,52,7,14,0.0 +11308,35,18,5,0.0 +11308,9,97,7,0.0 +11308,6,25,37,0.0 +11308,59,55,14,0.0 +11308,47,9.5,26,0.0 +11309,37,26,22,0.0 +11309,8,40,33,0.0 +11309,63,43.9,21,0.0 +11309,61,28.5,18,0.0 +11309,5,21.35,50,0.0 +11309,22,21,38,0.0 +11309,32,32,15,0.0 +11309,6,25,50,0.0 +11309,28,45.6,21,0.0 +11309,25,14,8,0.0 +11309,23,9,24,0.0 +11309,72,34.8,25,0.0 +11309,17,39,33,0.0 +11309,35,18,36,0.0 +11309,55,24,2,0.0 +11309,19,9.2,9,0.0 +11309,76,18,44,0.0 +11309,65,21.05,23,0.0 +11309,40,18.4,9,0.0 +11309,74,10,39,0.0 +11309,24,4.5,28,0.0 +11309,69,36,40,0.0 +11309,68,12.5,11,0.0 +11309,46,12,31,0.0 +11309,29,123.79,31,0.0 +11309,71,21.5,8,0.0 +11309,58,13.25,50,0.0 +11309,52,7,23,0.0 +11309,2,19,38,0.0 +11309,13,6,8,0.0 +11309,27,43.9,42,0.0 +11309,38,263.5,38,0.0 +11309,48,12.75,21,0.0 +11309,49,20,17,0.0 +11309,34,14,45,0.0 +11309,50,16.25,37,0.0 +11309,21,10,43,0.0 +11309,67,14,28,0.0 +11309,10,31,41,0.0 +11309,60,34,39,0.0 +11309,15,15.5,47,0.0 +11310,75,7.75,19,0.0 +11310,29,123.79,6,0.0 +11310,20,81,12,0.0 +11310,21,10,23,0.0 +11310,49,20,29,0.0 +11310,5,21.35,32,0.0 +11310,39,18,32,0.0 +11310,76,18,37,0.0 +11310,18,62.5,1,0.0 +11310,66,17,28,0.0 +11311,74,10,22,0.0 +11311,19,9.2,40,0.0 +11311,47,9.5,31,0.0 +11311,15,15.5,46,0.0 +11311,9,97,26,0.0 +11311,3,10,49,0.0 +11311,16,17.45,29,0.0 +11311,1,18,45,0.0 +11311,20,81,17,0.0 +11311,38,263.5,38,0.0 +11311,52,7,11,0.0 +11311,12,38,2,0.0 +11311,23,9,22,0.0 +11311,4,22,39,0.0 +11311,26,31.23,34,0.0 +11311,25,14,48,0.0 +11311,7,30,16,0.0 +11311,30,25.89,32,0.0 +11311,36,19,15,0.0 +11311,58,13.25,26,0.0 +11311,65,21.05,2,0.0 +11311,17,39,37,0.0 +11311,14,23.25,16,0.0 +11311,29,123.79,11,0.0 +11311,40,18.4,19,0.0 +11311,51,53,8,0.0 +11311,68,12.5,46,0.0 +11311,13,6,43,0.0 +11311,5,21.35,6,0.0 +11311,45,9.5,34,0.0 +11311,10,31,7,0.0 +11311,37,26,43,0.0 +11311,41,9.65,3,0.0 +11311,33,2.5,4,0.0 +11311,60,34,33,0.0 +11312,38,263.5,16,0.0 +11313,43,46,5,0.0 +11313,29,123.79,9,0.0 +11313,36,19,37,0.0 +11313,2,19,26,0.0 +11313,72,34.8,6,0.0 +11313,16,17.45,15,0.0 +11313,57,19.5,10,0.0 +11313,63,43.9,46,0.0 +11313,9,97,12,0.0 +11313,33,2.5,4,0.0 +11313,39,18,18,0.0 +11313,56,38,2,0.0 +11313,52,7,25,0.0 +11313,51,53,12,0.0 +11313,1,18,44,0.0 +11313,7,30,12,0.0 +11313,45,9.5,18,0.0 +11313,68,12.5,16,0.0 +11313,69,36,38,0.0 +11313,12,38,44,0.0 +11313,5,21.35,49,0.0 +11313,55,24,37,0.0 +11314,58,13.25,1,0.0 +11314,6,25,46,0.0 +11314,48,12.75,28,0.0 +11314,40,18.4,31,0.0 +11314,68,12.5,22,0.0 +11314,10,31,9,0.0 +11314,8,40,15,0.0 +11314,32,32,23,0.0 +11314,12,38,10,0.0 +11314,20,81,40,0.0 +11314,52,7,31,0.0 +11314,27,43.9,31,0.0 +11314,34,14,14,0.0 +11314,73,15,50,0.0 +11314,62,49.3,47,0.0 +11314,7,30,22,0.0 +11314,70,15,39,0.0 +11314,77,13,31,0.0 +11315,38,263.5,41,0.0 +11315,45,9.5,38,0.0 +11315,69,36,32,0.0 +11315,37,26,25,0.0 +11315,4,22,12,0.0 +11315,48,12.75,16,0.0 +11315,32,32,43,0.0 +11315,16,17.45,9,0.0 +11315,53,32.8,14,0.0 +11315,72,34.8,3,0.0 +11315,34,14,27,0.0 +11315,42,14,48,0.0 +11315,73,15,32,0.0 +11315,49,20,26,0.0 +11316,24,4.5,2,0.0 +11316,16,17.45,27,0.0 +11316,63,43.9,16,0.0 +11316,28,45.6,15,0.0 +11316,50,16.25,2,0.0 +11316,61,28.5,15,0.0 +11316,33,2.5,5,0.0 +11316,52,7,8,0.0 +11316,21,10,33,0.0 +11316,1,18,5,0.0 +11316,19,9.2,46,0.0 +11316,6,25,21,0.0 +11316,53,32.8,21,0.0 +11316,3,10,39,0.0 +11316,76,18,40,0.0 +11316,25,14,9,0.0 +11316,70,15,26,0.0 +11316,13,6,10,0.0 +11316,60,34,50,0.0 +11316,69,36,44,0.0 +11316,67,14,29,0.0 +11316,68,12.5,1,0.0 +11316,34,14,27,0.0 +11317,73,15,8,0.0 +11317,54,7.45,12,0.0 +11317,67,14,3,0.0 +11317,18,62.5,41,0.0 +11317,66,17,47,0.0 +11317,48,12.75,11,0.0 +11317,39,18,9,0.0 +11317,10,31,11,0.0 +11317,64,33.25,20,0.0 +11317,74,10,37,0.0 +11317,5,21.35,41,0.0 +11317,3,10,7,0.0 +11317,53,32.8,39,0.0 +11317,16,17.45,9,0.0 +11317,65,21.05,37,0.0 +11317,47,9.5,32,0.0 +11317,13,6,14,0.0 +11317,14,23.25,35,0.0 +11317,9,97,49,0.0 +11317,38,263.5,18,0.0 +11317,59,55,26,0.0 +11317,41,9.65,43,0.0 +11317,63,43.9,37,0.0 +11317,72,34.8,33,0.0 +11317,12,38,47,0.0 +11317,56,38,27,0.0 +11317,60,34,31,0.0 +11317,1,18,49,0.0 +11317,33,2.5,3,0.0 +11317,26,31.23,6,0.0 +11317,51,53,43,0.0 +11317,71,21.5,3,0.0 +11317,17,39,24,0.0 +11317,58,13.25,40,0.0 +11317,43,46,10,0.0 +11317,6,25,29,0.0 +11317,7,30,13,0.0 +11317,49,20,42,0.0 +11317,57,19.5,49,0.0 +11317,76,18,33,0.0 +11317,23,9,41,0.0 +11317,55,24,24,0.0 +11317,27,43.9,44,0.0 +11317,34,14,46,0.0 +11317,30,25.89,26,0.0 +11317,19,9.2,21,0.0 +11317,25,14,2,0.0 +11317,36,19,34,0.0 +11317,2,19,1,0.0 +11317,8,40,9,0.0 +11317,24,4.5,7,0.0 +11317,44,19.45,1,0.0 +11317,15,15.5,18,0.0 +11317,11,21,13,0.0 +11317,50,16.25,13,0.0 +11317,20,81,27,0.0 +11317,75,7.75,6,0.0 +11317,4,22,12,0.0 +11317,40,18.4,12,0.0 +11318,62,49.3,18,0.0 +11318,2,19,32,0.0 +11318,28,45.6,48,0.0 +11318,57,19.5,26,0.0 +11318,46,12,20,0.0 +11318,29,123.79,18,0.0 +11318,44,19.45,13,0.0 +11318,5,21.35,43,0.0 +11318,54,7.45,45,0.0 +11318,42,14,6,0.0 +11318,65,21.05,14,0.0 +11318,22,21,13,0.0 +11318,70,15,25,0.0 +11318,56,38,39,0.0 +11318,26,31.23,33,0.0 +11318,13,6,29,0.0 +11318,9,97,25,0.0 +11318,34,14,7,0.0 +11318,23,9,27,0.0 +11318,58,13.25,43,0.0 +11318,24,4.5,49,0.0 +11318,77,13,13,0.0 +11318,1,18,50,0.0 +11318,12,38,19,0.0 +11318,49,20,14,0.0 +11318,36,19,48,0.0 +11318,4,22,20,0.0 +11318,74,10,36,0.0 +11318,11,21,48,0.0 +11318,19,9.2,41,0.0 +11318,61,28.5,1,0.0 +11318,55,24,11,0.0 +11318,60,34,15,0.0 +11318,35,18,34,0.0 +11318,16,17.45,33,0.0 +11318,20,81,10,0.0 +11318,30,25.89,20,0.0 +11318,75,7.75,28,0.0 +11318,6,25,3,0.0 +11318,31,12.5,44,0.0 +11319,30,25.89,27,0.0 +11319,1,18,41,0.0 +11319,24,4.5,41,0.0 +11319,69,36,5,0.0 +11319,42,14,43,0.0 +11319,19,9.2,4,0.0 +11319,43,46,35,0.0 +11319,32,32,10,0.0 +11319,9,97,28,0.0 +11319,64,33.25,42,0.0 +11319,37,26,35,0.0 +11319,22,21,6,0.0 +11319,17,39,31,0.0 +11319,44,19.45,27,0.0 +11319,25,14,28,0.0 +11319,74,10,37,0.0 +11319,23,9,39,0.0 +11319,53,32.8,28,0.0 +11319,66,17,15,0.0 +11319,6,25,10,0.0 +11319,36,19,43,0.0 +11319,56,38,48,0.0 +11319,61,28.5,12,0.0 +11319,55,24,28,0.0 +11319,34,14,42,0.0 +11319,77,13,10,0.0 +11319,26,31.23,4,0.0 +11319,16,17.45,27,0.0 +11319,46,12,17,0.0 +11319,68,12.5,8,0.0 +11319,40,18.4,3,0.0 +11319,13,6,15,0.0 +11319,21,10,48,0.0 +11319,50,16.25,30,0.0 +11319,67,14,17,0.0 +11319,57,19.5,10,0.0 +11319,52,7,44,0.0 +11319,28,45.6,38,0.0 +11319,73,15,27,0.0 +11319,38,263.5,47,0.0 +11319,2,19,41,0.0 +11319,18,62.5,8,0.0 +11319,75,7.75,43,0.0 +11319,58,13.25,45,0.0 +11319,5,21.35,12,0.0 +11319,72,34.8,48,0.0 +11320,36,19,12,0.0 +11320,57,19.5,4,0.0 +11320,52,7,36,0.0 +11320,17,39,39,0.0 +11320,75,7.75,33,0.0 +11320,4,22,17,0.0 +11320,69,36,36,0.0 +11320,30,25.89,25,0.0 +11320,6,25,48,0.0 +11320,16,17.45,9,0.0 +11320,21,10,38,0.0 +11320,49,20,39,0.0 +11320,76,18,36,0.0 +11320,68,12.5,48,0.0 +11320,63,43.9,24,0.0 +11320,3,10,4,0.0 +11320,58,13.25,10,0.0 +11320,50,16.25,43,0.0 +11320,53,32.8,50,0.0 +11320,74,10,7,0.0 +11320,25,14,38,0.0 +11320,62,49.3,12,0.0 +11320,39,18,3,0.0 +11320,35,18,12,0.0 +11320,23,9,49,0.0 +11320,12,38,13,0.0 +11320,72,34.8,8,0.0 +11320,18,62.5,27,0.0 +11320,27,43.9,31,0.0 +11320,66,17,48,0.0 +11320,15,15.5,27,0.0 +11320,61,28.5,38,0.0 +11320,19,9.2,18,0.0 +11320,20,81,46,0.0 +11320,29,123.79,48,0.0 +11320,73,15,38,0.0 +11320,37,26,25,0.0 +11320,47,9.5,44,0.0 +11320,60,34,19,0.0 +11320,38,263.5,39,0.0 +11320,43,46,27,0.0 +11320,34,14,32,0.0 +11321,51,53,19,0.0 +11321,58,13.25,50,0.0 +11321,14,23.25,34,0.0 +11321,15,15.5,43,0.0 +11321,75,7.75,18,0.0 +11321,74,10,7,0.0 +11321,50,16.25,34,0.0 +11321,56,38,13,0.0 +11321,48,12.75,15,0.0 +11321,47,9.5,46,0.0 +11321,69,36,9,0.0 +11321,54,7.45,8,0.0 +11321,71,21.5,3,0.0 +11321,64,33.25,28,0.0 +11321,20,81,33,0.0 +11322,47,9.5,15,0.0 +11322,21,10,23,0.0 +11322,68,12.5,44,0.0 +11322,49,20,41,0.0 +11322,38,263.5,37,0.0 +11322,33,2.5,27,0.0 +11322,18,62.5,27,0.0 +11322,19,9.2,10,0.0 +11322,60,34,50,0.0 +11322,59,55,5,0.0 +11322,57,19.5,33,0.0 +11322,9,97,37,0.0 +11322,64,33.25,9,0.0 +11322,50,16.25,19,0.0 +11322,12,38,49,0.0 +11322,61,28.5,39,0.0 +11322,69,36,23,0.0 +11322,24,4.5,28,0.0 +11322,66,17,27,0.0 +11322,17,39,10,0.0 +11322,7,30,48,0.0 +11322,34,14,42,0.0 +11322,71,21.5,46,0.0 +11322,74,10,44,0.0 +11322,72,34.8,21,0.0 +11322,53,32.8,33,0.0 +11322,40,18.4,3,0.0 +11322,28,45.6,6,0.0 +11322,20,81,22,0.0 +11322,76,18,30,0.0 +11322,30,25.89,19,0.0 +11322,15,15.5,17,0.0 +11322,25,14,22,0.0 +11322,39,18,36,0.0 +11322,54,7.45,46,0.0 +11322,23,9,27,0.0 +11322,62,49.3,41,0.0 +11322,2,19,38,0.0 +11322,70,15,39,0.0 +11322,41,9.65,42,0.0 +11322,11,21,42,0.0 +11322,22,21,45,0.0 +11323,10,31,5,0.0 +11323,4,22,12,0.0 +11323,43,46,33,0.0 +11323,61,28.5,18,0.0 +11323,36,19,14,0.0 +11323,14,23.25,48,0.0 +11323,55,24,20,0.0 +11323,6,25,35,0.0 +11323,17,39,33,0.0 +11323,5,21.35,27,0.0 +11323,77,13,30,0.0 +11323,76,18,21,0.0 +11323,15,15.5,8,0.0 +11323,69,36,15,0.0 +11323,32,32,22,0.0 +11323,54,7.45,29,0.0 +11323,63,43.9,1,0.0 +11323,66,17,22,0.0 +11323,19,9.2,35,0.0 +11323,37,26,38,0.0 +11323,35,18,47,0.0 +11323,60,34,25,0.0 +11323,11,21,8,0.0 +11323,34,14,40,0.0 +11323,1,18,3,0.0 +11323,27,43.9,3,0.0 +11323,38,263.5,38,0.0 +11323,22,21,25,0.0 +11323,64,33.25,46,0.0 +11323,48,12.75,19,0.0 +11323,16,17.45,21,0.0 +11323,44,19.45,33,0.0 +11323,25,14,9,0.0 +11323,52,7,26,0.0 +11323,68,12.5,13,0.0 +11323,41,9.65,25,0.0 +11323,8,40,12,0.0 +11323,45,9.5,29,0.0 +11323,18,62.5,23,0.0 +11323,39,18,21,0.0 +11323,57,19.5,25,0.0 +11323,31,12.5,7,0.0 +11323,3,10,39,0.0 +11323,42,14,15,0.0 +11323,12,38,35,0.0 +11323,51,53,36,0.0 +11323,24,4.5,43,0.0 +11323,40,18.4,36,0.0 +11323,2,19,27,0.0 +11323,9,97,44,0.0 +11323,70,15,6,0.0 +11323,29,123.79,47,0.0 +11324,21,10,11,0.0 +11324,56,38,37,0.0 +11324,71,21.5,2,0.0 +11324,14,23.25,36,0.0 +11324,39,18,40,0.0 +11324,36,19,5,0.0 +11324,59,55,47,0.0 +11324,1,18,33,0.0 +11324,33,2.5,6,0.0 +11324,5,21.35,15,0.0 +11324,76,18,18,0.0 +11324,6,25,15,0.0 +11324,50,16.25,26,0.0 +11324,17,39,25,0.0 +11324,40,18.4,20,0.0 +11324,52,7,33,0.0 +11324,12,38,34,0.0 +11324,37,26,29,0.0 +11324,30,25.89,7,0.0 +11324,73,15,13,0.0 +11324,8,40,16,0.0 +11324,54,7.45,44,0.0 +11324,2,19,33,0.0 +11324,77,13,32,0.0 +11324,51,53,34,0.0 +11324,7,30,11,0.0 +11324,72,34.8,42,0.0 +11324,16,17.45,33,0.0 +11324,48,12.75,39,0.0 +11324,34,14,39,0.0 +11324,43,46,2,0.0 +11324,74,10,41,0.0 +11324,24,4.5,33,0.0 +11324,35,18,49,0.0 +11324,18,62.5,15,0.0 +11324,26,31.23,33,0.0 +11325,4,22,32,0.0 +11325,68,12.5,28,0.0 +11325,10,31,49,0.0 +11325,31,12.5,11,0.0 +11325,7,30,10,0.0 +11326,49,20,25,0.0 +11326,72,34.8,13,0.0 +11326,51,53,15,0.0 +11326,59,55,16,0.0 +11326,15,15.5,6,0.0 +11326,71,21.5,27,0.0 +11326,73,15,47,0.0 +11326,69,36,17,0.0 +11326,46,12,1,0.0 +11326,21,10,46,0.0 +11326,50,16.25,38,0.0 +11326,70,15,9,0.0 +11326,75,7.75,33,0.0 +11326,76,18,46,0.0 +11326,64,33.25,31,0.0 +11326,38,263.5,43,0.0 +11326,31,12.5,37,0.0 +11326,77,13,46,0.0 +11326,68,12.5,19,0.0 +11326,40,18.4,17,0.0 +11326,17,39,24,0.0 +11326,57,19.5,17,0.0 +11326,65,21.05,7,0.0 +11327,64,33.25,49,0.0 +11327,30,25.89,37,0.0 +11327,14,23.25,29,0.0 +11327,55,24,28,0.0 +11327,18,62.5,23,0.0 +11328,37,26,35,0.0 +11328,59,55,47,0.0 +11328,56,38,26,0.0 +11328,51,53,1,0.0 +11328,12,38,43,0.0 +11328,55,24,39,0.0 +11328,40,18.4,17,0.0 +11328,72,34.8,15,0.0 +11328,77,13,33,0.0 +11328,62,49.3,43,0.0 +11328,19,9.2,50,0.0 +11328,60,34,19,0.0 +11328,69,36,8,0.0 +11328,20,81,49,0.0 +11328,48,12.75,24,0.0 +11328,6,25,38,0.0 +11328,8,40,1,0.0 +11328,54,7.45,45,0.0 +11328,36,19,16,0.0 +11328,4,22,38,0.0 +11328,11,21,9,0.0 +11328,30,25.89,31,0.0 +11328,64,33.25,29,0.0 +11328,32,32,34,0.0 +11328,15,15.5,38,0.0 +11328,35,18,27,0.0 +11328,17,39,38,0.0 +11328,31,12.5,25,0.0 +11328,41,9.65,26,0.0 +11328,67,14,28,0.0 +11328,57,19.5,25,0.0 +11328,34,14,26,0.0 +11328,3,10,50,0.0 +11328,18,62.5,6,0.0 +11328,16,17.45,12,0.0 +11328,39,18,41,0.0 +11328,13,6,10,0.0 +11328,75,7.75,10,0.0 +11328,66,17,34,0.0 +11328,24,4.5,2,0.0 +11328,26,31.23,43,0.0 +11328,50,16.25,10,0.0 +11329,48,12.75,21,0.0 +11329,28,45.6,1,0.0 +11329,23,9,18,0.0 +11329,56,38,34,0.0 +11329,11,21,27,0.0 +11329,37,26,42,0.0 +11329,1,18,36,0.0 +11329,19,9.2,49,0.0 +11329,40,18.4,42,0.0 +11329,38,263.5,4,0.0 +11329,42,14,19,0.0 +11329,30,25.89,27,0.0 +11329,77,13,7,0.0 +11329,4,22,10,0.0 +11329,8,40,11,0.0 +11329,26,31.23,14,0.0 +11329,53,32.8,39,0.0 +11329,31,12.5,2,0.0 +11329,47,9.5,44,0.0 +11329,73,15,11,0.0 +11329,41,9.65,9,0.0 +11329,2,19,8,0.0 +11329,75,7.75,22,0.0 +11329,51,53,45,0.0 +11329,33,2.5,2,0.0 +11329,57,19.5,44,0.0 +11329,52,7,12,0.0 +11329,16,17.45,42,0.0 +11329,67,14,29,0.0 +11329,66,17,35,0.0 +11329,10,31,50,0.0 +11329,6,25,17,0.0 +11329,20,81,6,0.0 +11329,74,10,8,0.0 +11329,3,10,50,0.0 +11329,50,16.25,14,0.0 +11329,29,123.79,28,0.0 +11329,55,24,9,0.0 +11329,71,21.5,22,0.0 +11329,65,21.05,6,0.0 +11329,15,15.5,45,0.0 +11329,72,34.8,31,0.0 +11329,27,43.9,24,0.0 +11329,43,46,17,0.0 +11329,5,21.35,4,0.0 +11329,62,49.3,49,0.0 +11329,32,32,46,0.0 +11329,9,97,6,0.0 +11329,25,14,14,0.0 +11329,21,10,11,0.0 +11329,45,9.5,38,0.0 +11329,34,14,6,0.0 +11329,61,28.5,8,0.0 +11329,54,7.45,4,0.0 +11329,63,43.9,11,0.0 +11329,14,23.25,24,0.0 +11329,68,12.5,26,0.0 +11330,35,18,36,0.0 +11330,66,17,33,0.0 +11330,48,12.75,20,0.0 +11330,9,97,37,0.0 +11330,8,40,4,0.0 +11330,41,9.65,16,0.0 +11330,15,15.5,14,0.0 +11330,16,17.45,27,0.0 +11330,61,28.5,4,0.0 +11330,46,12,25,0.0 +11330,44,19.45,48,0.0 +11330,42,14,47,0.0 +11330,34,14,43,0.0 +11330,45,9.5,43,0.0 +11330,76,18,28,0.0 +11330,71,21.5,49,0.0 +11330,6,25,8,0.0 +11330,32,32,22,0.0 +11330,39,18,38,0.0 +11330,59,55,49,0.0 +11330,37,26,47,0.0 +11330,33,2.5,15,0.0 +11330,72,34.8,47,0.0 +11331,50,16.25,2,0.0 +11331,35,18,46,0.0 +11331,15,15.5,1,0.0 +11331,42,14,18,0.0 +11331,54,7.45,5,0.0 +11331,64,33.25,2,0.0 +11331,23,9,45,0.0 +11331,56,38,38,0.0 +11331,74,10,34,0.0 +11331,29,123.79,1,0.0 +11331,52,7,5,0.0 +11331,6,25,27,0.0 +11331,3,10,37,0.0 +11331,69,36,25,0.0 +11331,24,4.5,23,0.0 +11331,33,2.5,17,0.0 +11331,7,30,49,0.0 +11331,25,14,40,0.0 +11331,5,21.35,14,0.0 +11331,77,13,32,0.0 +11331,73,15,46,0.0 +11331,60,34,49,0.0 +11331,26,31.23,16,0.0 +11331,36,19,42,0.0 +11331,30,25.89,13,0.0 +11331,58,13.25,48,0.0 +11331,37,26,6,0.0 +11331,4,22,15,0.0 +11331,59,55,37,0.0 +11331,14,23.25,12,0.0 +11331,17,39,36,0.0 +11331,34,14,39,0.0 +11331,43,46,31,0.0 +11331,49,20,3,0.0 +11331,63,43.9,16,0.0 +11331,2,19,49,0.0 +11331,72,34.8,25,0.0 +11331,57,19.5,36,0.0 +11331,76,18,50,0.0 +11331,13,6,4,0.0 +11331,20,81,27,0.0 +11331,53,32.8,26,0.0 +11331,11,21,24,0.0 +11331,46,12,45,0.0 +11331,16,17.45,9,0.0 +11331,38,263.5,8,0.0 +11331,51,53,47,0.0 +11331,48,12.75,36,0.0 +11331,55,24,34,0.0 +11331,40,18.4,25,0.0 +11331,9,97,40,0.0 +11331,65,21.05,19,0.0 +11331,27,43.9,26,0.0 +11331,70,15,50,0.0 +11331,31,12.5,20,0.0 +11331,32,32,49,0.0 +11331,8,40,46,0.0 +11331,68,12.5,10,0.0 +11331,45,9.5,46,0.0 +11331,66,17,4,0.0 +11331,75,7.75,1,0.0 +11331,61,28.5,41,0.0 +11331,41,9.65,47,0.0 +11331,71,21.5,7,0.0 +11331,44,19.45,23,0.0 +11331,21,10,25,0.0 +11331,10,31,48,0.0 +11331,22,21,26,0.0 +11331,19,9.2,5,0.0 +11331,62,49.3,28,0.0 +11331,12,38,4,0.0 +11331,39,18,37,0.0 +11331,47,9.5,27,0.0 +11331,1,18,49,0.0 +11332,40,18.4,14,0.0 +11332,55,24,29,0.0 +11332,37,26,43,0.0 +11332,13,6,18,0.0 +11332,4,22,15,0.0 +11332,42,14,2,0.0 +11332,19,9.2,28,0.0 +11332,45,9.5,3,0.0 +11332,6,25,9,0.0 +11332,29,123.79,28,0.0 +11332,68,12.5,43,0.0 +11332,52,7,47,0.0 +11332,59,55,1,0.0 +11332,32,32,16,0.0 +11332,60,34,48,0.0 +11332,24,4.5,16,0.0 +11332,46,12,18,0.0 +11332,36,19,19,0.0 +11332,77,13,46,0.0 +11332,54,7.45,38,0.0 +11332,8,40,14,0.0 +11332,12,38,48,0.0 +11332,49,20,46,0.0 +11332,73,15,5,0.0 +11332,21,10,42,0.0 +11332,22,21,4,0.0 +11332,63,43.9,29,0.0 +11332,72,34.8,27,0.0 +11332,18,62.5,50,0.0 +11332,33,2.5,11,0.0 +11332,16,17.45,49,0.0 +11332,57,19.5,18,0.0 +11332,10,31,11,0.0 +11332,7,30,13,0.0 +11332,3,10,37,0.0 +11332,43,46,30,0.0 +11332,26,31.23,41,0.0 +11332,30,25.89,16,0.0 +11332,25,14,9,0.0 +11332,27,43.9,30,0.0 +11332,53,32.8,45,0.0 +11332,15,15.5,36,0.0 +11332,50,16.25,9,0.0 +11332,39,18,10,0.0 +11332,38,263.5,45,0.0 +11332,74,10,28,0.0 +11332,20,81,43,0.0 +11332,31,12.5,19,0.0 +11332,14,23.25,37,0.0 +11332,64,33.25,22,0.0 +11332,70,15,47,0.0 +11332,48,12.75,25,0.0 +11332,47,9.5,27,0.0 +11332,58,13.25,26,0.0 +11333,73,15,32,0.0 +11333,61,28.5,8,0.0 +11333,69,36,30,0.0 +11333,6,25,31,0.0 +11333,19,9.2,22,0.0 +11333,33,2.5,34,0.0 +11333,58,13.25,5,0.0 +11333,7,30,5,0.0 +11333,72,34.8,45,0.0 +11333,23,9,25,0.0 +11333,9,97,38,0.0 +11333,28,45.6,47,0.0 +11333,17,39,41,0.0 +11333,4,22,34,0.0 +11333,66,17,4,0.0 +11333,45,9.5,12,0.0 +11333,77,13,38,0.0 +11333,22,21,12,0.0 +11333,38,263.5,37,0.0 +11333,51,53,25,0.0 +11333,47,9.5,19,0.0 +11333,63,43.9,21,0.0 +11333,8,40,21,0.0 +11334,66,17,19,0.0 +11334,35,18,1,0.0 +11334,77,13,37,0.0 +11334,41,9.65,5,0.0 +11334,56,38,34,0.0 +11334,71,21.5,46,0.0 +11334,46,12,11,0.0 +11334,40,18.4,50,0.0 +11334,17,39,28,0.0 +11334,18,62.5,43,0.0 +11334,28,45.6,22,0.0 +11334,14,23.25,34,0.0 +11334,43,46,17,0.0 +11334,20,81,11,0.0 +11334,19,9.2,9,0.0 +11334,61,28.5,20,0.0 +11334,75,7.75,39,0.0 +11334,34,14,21,0.0 +11334,4,22,41,0.0 +11334,58,13.25,20,0.0 +11334,59,55,18,0.0 +11334,21,10,14,0.0 +11334,10,31,36,0.0 +11334,22,21,31,0.0 +11334,23,9,30,0.0 +11334,72,34.8,21,0.0 +11334,38,263.5,7,0.0 +11334,52,7,12,0.0 +11334,16,17.45,23,0.0 +11334,5,21.35,12,0.0 +11334,76,18,15,0.0 +11334,63,43.9,4,0.0 +11334,60,34,18,0.0 +11334,37,26,30,0.0 +11334,47,9.5,8,0.0 +11334,30,25.89,26,0.0 +11334,65,21.05,18,0.0 +11334,2,19,50,0.0 +11334,48,12.75,23,0.0 +11334,44,19.45,15,0.0 +11334,32,32,34,0.0 +11334,11,21,1,0.0 +11334,13,6,2,0.0 +11334,36,19,26,0.0 +11334,31,12.5,43,0.0 +11334,55,24,50,0.0 +11334,42,14,4,0.0 +11334,29,123.79,42,0.0 +11334,54,7.45,28,0.0 +11334,64,33.25,15,0.0 +11334,62,49.3,8,0.0 +11334,3,10,44,0.0 +11334,25,14,47,0.0 +11334,24,4.5,7,0.0 +11334,26,31.23,16,0.0 +11334,33,2.5,12,0.0 +11334,51,53,17,0.0 +11334,7,30,35,0.0 +11334,27,43.9,37,0.0 +11334,74,10,20,0.0 +11334,50,16.25,46,0.0 +11334,57,19.5,37,0.0 +11334,49,20,46,0.0 +11334,39,18,23,0.0 +11334,53,32.8,30,0.0 +11334,67,14,21,0.0 +11334,8,40,20,0.0 +11334,70,15,50,0.0 +11334,9,97,32,0.0 +11334,12,38,12,0.0 +11334,1,18,14,0.0 +11335,11,21,44,0.0 +11335,54,7.45,3,0.0 +11335,12,38,36,0.0 +11335,9,97,8,0.0 +11335,36,19,41,0.0 +11335,31,12.5,25,0.0 +11335,38,263.5,22,0.0 +11335,17,39,34,0.0 +11335,2,19,22,0.0 +11335,7,30,35,0.0 +11335,64,33.25,15,0.0 +11335,42,14,23,0.0 +11335,40,18.4,13,0.0 +11335,53,32.8,23,0.0 +11335,63,43.9,34,0.0 +11335,47,9.5,10,0.0 +11335,49,20,36,0.0 +11335,55,24,18,0.0 +11335,60,34,49,0.0 +11335,45,9.5,1,0.0 +11335,3,10,33,0.0 +11335,39,18,26,0.0 +11335,30,25.89,32,0.0 +11335,46,12,16,0.0 +11335,5,21.35,34,0.0 +11335,34,14,33,0.0 +11335,44,19.45,10,0.0 +11335,32,32,45,0.0 +11335,62,49.3,22,0.0 +11335,67,14,18,0.0 +11335,76,18,24,0.0 +11335,70,15,13,0.0 +11335,23,9,2,0.0 +11335,58,13.25,47,0.0 +11335,24,4.5,36,0.0 +11335,73,15,18,0.0 +11335,28,45.6,2,0.0 +11335,15,15.5,21,0.0 +11335,8,40,4,0.0 +11335,77,13,9,0.0 +11335,29,123.79,42,0.0 +11335,22,21,11,0.0 +11335,50,16.25,49,0.0 +11335,65,21.05,40,0.0 +11335,69,36,31,0.0 +11335,56,38,9,0.0 +11335,1,18,46,0.0 +11335,41,9.65,26,0.0 +11335,66,17,35,0.0 +11335,74,10,9,0.0 +11335,48,12.75,29,0.0 +11335,14,23.25,50,0.0 +11335,33,2.5,24,0.0 +11335,35,18,35,0.0 +11335,52,7,46,0.0 +11335,26,31.23,45,0.0 +11335,37,26,46,0.0 +11335,19,9.2,42,0.0 +11335,4,22,22,0.0 +11335,72,34.8,22,0.0 +11335,68,12.5,2,0.0 +11336,42,14,33,0.0 +11336,58,13.25,45,0.0 +11336,37,26,43,0.0 +11337,16,17.45,31,0.0 +11337,8,40,5,0.0 +11337,55,24,7,0.0 +11337,72,34.8,19,0.0 +11337,53,32.8,28,0.0 +11337,3,10,36,0.0 +11337,33,2.5,19,0.0 +11338,42,14,50,0.0 +11338,67,14,12,0.0 +11338,39,18,48,0.0 +11338,64,33.25,13,0.0 +11338,10,31,1,0.0 +11338,48,12.75,41,0.0 +11338,36,19,44,0.0 +11338,3,10,45,0.0 +11338,21,10,42,0.0 +11338,74,10,25,0.0 +11338,77,13,44,0.0 +11338,4,22,34,0.0 +11338,71,21.5,38,0.0 +11338,9,97,24,0.0 +11338,55,24,41,0.0 +11338,34,14,5,0.0 +11338,27,43.9,5,0.0 +11338,1,18,9,0.0 +11338,58,13.25,13,0.0 +11338,41,9.65,26,0.0 +11338,47,9.5,21,0.0 +11338,59,55,17,0.0 +11338,7,30,35,0.0 +11338,23,9,6,0.0 +11338,45,9.5,26,0.0 +11338,18,62.5,32,0.0 +11338,75,7.75,42,0.0 +11338,31,12.5,33,0.0 +11338,73,15,25,0.0 +11338,76,18,3,0.0 +11338,14,23.25,34,0.0 +11338,8,40,45,0.0 +11338,63,43.9,34,0.0 +11338,25,14,50,0.0 +11339,27,43.9,43,0.0 +11339,50,16.25,23,0.0 +11339,73,15,20,0.0 +11339,65,21.05,23,0.0 +11339,59,55,39,0.0 +11339,10,31,35,0.0 +11339,15,15.5,34,0.0 +11339,4,22,48,0.0 +11339,61,28.5,35,0.0 +11339,72,34.8,29,0.0 +11339,46,12,13,0.0 +11339,77,13,16,0.0 +11339,24,4.5,3,0.0 +11339,35,18,25,0.0 +11339,20,81,26,0.0 +11339,68,12.5,8,0.0 +11339,45,9.5,48,0.0 +11339,16,17.45,43,0.0 +11339,1,18,29,0.0 +11339,66,17,36,0.0 +11339,12,38,14,0.0 +11339,67,14,32,0.0 +11339,42,14,25,0.0 +11339,60,34,47,0.0 +11339,8,40,50,0.0 +11339,57,19.5,45,0.0 +11339,34,14,25,0.0 +11339,41,9.65,35,0.0 +11339,9,97,4,0.0 +11339,48,12.75,19,0.0 +11339,52,7,31,0.0 +11339,75,7.75,47,0.0 +11339,6,25,38,0.0 +11339,5,21.35,41,0.0 +11339,31,12.5,36,0.0 +11339,64,33.25,18,0.0 +11339,19,9.2,19,0.0 +11339,18,62.5,10,0.0 +11339,70,15,35,0.0 +11339,55,24,26,0.0 +11339,38,263.5,3,0.0 +11339,76,18,36,0.0 +11339,40,18.4,15,0.0 +11339,54,7.45,10,0.0 +11339,39,18,17,0.0 +11339,17,39,32,0.0 +11339,28,45.6,13,0.0 +11339,62,49.3,25,0.0 +11339,49,20,35,0.0 +11339,7,30,43,0.0 +11339,22,21,37,0.0 +11339,69,36,46,0.0 +11339,21,10,44,0.0 +11339,43,46,48,0.0 +11339,47,9.5,40,0.0 +11339,63,43.9,27,0.0 +11339,25,14,11,0.0 +11339,74,10,3,0.0 +11339,36,19,38,0.0 +11339,3,10,36,0.0 +11340,15,15.5,2,0.0 +11340,13,6,27,0.0 +11340,35,18,29,0.0 +11340,71,21.5,22,0.0 +11340,56,38,13,0.0 +11340,18,62.5,1,0.0 +11340,52,7,4,0.0 +11340,51,53,10,0.0 +11340,59,55,6,0.0 +11340,32,32,29,0.0 +11340,22,21,19,0.0 +11340,70,15,43,0.0 +11340,33,2.5,12,0.0 +11340,30,25.89,30,0.0 +11340,75,7.75,24,0.0 +11340,28,45.6,36,0.0 +11340,1,18,19,0.0 +11340,53,32.8,2,0.0 +11341,5,21.35,19,0.0 +11341,24,4.5,47,0.0 +11341,36,19,37,0.0 +11341,48,12.75,32,0.0 +11341,10,31,4,0.0 +11341,49,20,45,0.0 +11341,23,9,28,0.0 +11341,67,14,25,0.0 +11341,34,14,48,0.0 +11341,30,25.89,44,0.0 +11341,71,21.5,32,0.0 +11341,35,18,38,0.0 +11341,70,15,32,0.0 +11341,52,7,17,0.0 +11341,62,49.3,49,0.0 +11341,1,18,11,0.0 +11341,37,26,46,0.0 +11341,59,55,9,0.0 +11341,63,43.9,1,0.0 +11341,7,30,37,0.0 +11341,74,10,33,0.0 +11341,4,22,22,0.0 +11341,2,19,16,0.0 +11341,42,14,29,0.0 +11341,15,15.5,10,0.0 +11341,75,7.75,33,0.0 +11341,58,13.25,49,0.0 +11341,11,21,25,0.0 +11341,32,32,46,0.0 +11341,6,25,38,0.0 +11341,50,16.25,14,0.0 +11341,53,32.8,50,0.0 +11341,68,12.5,43,0.0 +11341,16,17.45,14,0.0 +11341,14,23.25,31,0.0 +11341,31,12.5,1,0.0 +11341,44,19.45,33,0.0 +11341,45,9.5,42,0.0 +11341,39,18,14,0.0 +11341,64,33.25,30,0.0 +11341,13,6,26,0.0 +11341,76,18,18,0.0 +11341,65,21.05,32,0.0 +11341,25,14,30,0.0 +11341,38,263.5,44,0.0 +11341,46,12,12,0.0 +11341,55,24,21,0.0 +11341,8,40,2,0.0 +11341,51,53,15,0.0 +11341,33,2.5,35,0.0 +11342,27,43.9,42,0.0 +11342,29,123.79,1,0.0 +11342,59,55,49,0.0 +11342,16,17.45,29,0.0 +11342,73,15,28,0.0 +11342,8,40,47,0.0 +11342,13,6,8,0.0 +11342,67,14,32,0.0 +11342,74,10,1,0.0 +11342,37,26,34,0.0 +11342,33,2.5,42,0.0 +11342,64,33.25,17,0.0 +11342,51,53,39,0.0 +11342,36,19,5,0.0 +11342,10,31,26,0.0 +11342,55,24,26,0.0 +11342,34,14,25,0.0 +11342,9,97,36,0.0 +11342,66,17,24,0.0 +11342,32,32,20,0.0 +11342,3,10,30,0.0 +11342,31,12.5,34,0.0 +11342,15,15.5,1,0.0 +11342,25,14,18,0.0 +11342,52,7,34,0.0 +11342,5,21.35,5,0.0 +11342,26,31.23,47,0.0 +11342,40,18.4,15,0.0 +11342,30,25.89,6,0.0 +11342,11,21,12,0.0 +11342,21,10,33,0.0 +11342,6,25,37,0.0 +11342,50,16.25,17,0.0 +11342,47,9.5,30,0.0 +11342,46,12,23,0.0 +11342,75,7.75,44,0.0 +11342,24,4.5,37,0.0 +11342,22,21,15,0.0 +11342,56,38,8,0.0 +11342,53,32.8,38,0.0 +11342,54,7.45,41,0.0 +11342,58,13.25,40,0.0 +11342,48,12.75,10,0.0 +11342,41,9.65,2,0.0 +11342,39,18,12,0.0 +11342,57,19.5,15,0.0 +11342,1,18,38,0.0 +11342,61,28.5,38,0.0 +11342,19,9.2,49,0.0 +11342,65,21.05,43,0.0 +11342,17,39,27,0.0 +11342,44,19.45,25,0.0 +11342,70,15,29,0.0 +11342,76,18,43,0.0 +11342,62,49.3,12,0.0 +11342,4,22,35,0.0 +11342,2,19,50,0.0 +11342,45,9.5,14,0.0 +11342,35,18,41,0.0 +11342,49,20,24,0.0 +11342,43,46,9,0.0 +11342,68,12.5,11,0.0 +11342,18,62.5,26,0.0 +11342,23,9,36,0.0 +11343,31,12.5,12,0.0 +11343,65,21.05,28,0.0 +11343,27,43.9,40,0.0 +11343,47,9.5,23,0.0 +11344,41,9.65,2,0.0 +11344,25,14,16,0.0 +11344,45,9.5,18,0.0 +11344,66,17,28,0.0 +11344,46,12,36,0.0 +11344,22,21,35,0.0 +11344,6,25,33,0.0 +11344,36,19,17,0.0 +11344,34,14,13,0.0 +11344,2,19,46,0.0 +11344,31,12.5,24,0.0 +11344,69,36,5,0.0 +11344,49,20,29,0.0 +11344,30,25.89,8,0.0 +11344,56,38,46,0.0 +11344,53,32.8,45,0.0 +11344,60,34,5,0.0 +11344,29,123.79,24,0.0 +11344,4,22,40,0.0 +11344,24,4.5,35,0.0 +11344,51,53,40,0.0 +11344,54,7.45,5,0.0 +11344,7,30,42,0.0 +11344,26,31.23,1,0.0 +11344,55,24,39,0.0 +11344,8,40,4,0.0 +11344,68,12.5,37,0.0 +11344,71,21.5,19,0.0 +11344,3,10,27,0.0 +11344,17,39,32,0.0 +11344,18,62.5,20,0.0 +11344,39,18,38,0.0 +11344,40,18.4,43,0.0 +11344,42,14,9,0.0 +11344,59,55,5,0.0 +11344,44,19.45,47,0.0 +11344,23,9,37,0.0 +11345,21,10,48,0.0 +11345,58,13.25,12,0.0 +11345,65,21.05,3,0.0 +11345,31,12.5,5,0.0 +11345,16,17.45,1,0.0 +11345,10,31,29,0.0 +11345,56,38,35,0.0 +11345,28,45.6,8,0.0 +11345,52,7,36,0.0 +11345,67,14,27,0.0 +11345,44,19.45,47,0.0 +11345,66,17,39,0.0 +11345,36,19,46,0.0 +11345,43,46,30,0.0 +11345,25,14,3,0.0 +11345,22,21,38,0.0 +11345,9,97,24,0.0 +11345,37,26,19,0.0 +11345,46,12,6,0.0 +11345,53,32.8,34,0.0 +11345,57,19.5,34,0.0 +11345,70,15,24,0.0 +11345,6,25,27,0.0 +11345,59,55,13,0.0 +11345,2,19,18,0.0 +11345,33,2.5,3,0.0 +11345,40,18.4,39,0.0 +11345,26,31.23,25,0.0 +11345,34,14,47,0.0 +11345,49,20,39,0.0 +11345,68,12.5,5,0.0 +11345,8,40,36,0.0 +11345,30,25.89,33,0.0 +11345,41,9.65,40,0.0 +11345,17,39,1,0.0 +11345,76,18,33,0.0 +11345,12,38,1,0.0 +11345,50,16.25,25,0.0 +11345,11,21,45,0.0 +11345,29,123.79,33,0.0 +11345,39,18,11,0.0 +11345,71,21.5,6,0.0 +11346,30,25.89,34,0.0 +11346,12,38,45,0.0 +11346,50,16.25,10,0.0 +11346,59,55,5,0.0 +11346,45,9.5,38,0.0 +11346,72,34.8,34,0.0 +11346,10,31,46,0.0 +11346,49,20,50,0.0 +11346,22,21,14,0.0 +11346,54,7.45,28,0.0 +11347,67,14,21,0.0 +11347,39,18,21,0.0 +11347,50,16.25,46,0.0 +11347,63,43.9,15,0.0 +11347,5,21.35,23,0.0 +11347,10,31,48,0.0 +11347,58,13.25,3,0.0 +11347,24,4.5,47,0.0 +11347,68,12.5,9,0.0 +11347,77,13,27,0.0 +11347,59,55,39,0.0 +11347,27,43.9,31,0.0 +11347,22,21,42,0.0 +11347,11,21,13,0.0 +11347,34,14,23,0.0 +11347,53,32.8,46,0.0 +11347,19,9.2,41,0.0 +11348,75,7.75,37,0.0 +11348,76,18,21,0.0 +11348,4,22,37,0.0 +11348,17,39,8,0.0 +11348,51,53,48,0.0 +11348,7,30,8,0.0 +11348,26,31.23,9,0.0 +11348,19,9.2,34,0.0 +11348,29,123.79,13,0.0 +11348,20,81,42,0.0 +11348,46,12,27,0.0 +11348,62,49.3,27,0.0 +11348,30,25.89,6,0.0 +11348,32,32,11,0.0 +11349,38,263.5,31,0.0 +11349,56,38,48,0.0 +11349,16,17.45,29,0.0 +11349,22,21,37,0.0 +11349,40,18.4,4,0.0 +11349,55,24,42,0.0 +11349,47,9.5,14,0.0 +11349,9,97,18,0.0 +11349,23,9,42,0.0 +11349,32,32,10,0.0 +11349,74,10,31,0.0 +11349,15,15.5,42,0.0 +11349,26,31.23,34,0.0 +11349,60,34,21,0.0 +11349,20,81,47,0.0 +11349,73,15,40,0.0 +11349,71,21.5,2,0.0 +11349,6,25,20,0.0 +11349,4,22,50,0.0 +11349,77,13,34,0.0 +11349,46,12,48,0.0 +11349,31,12.5,16,0.0 +11349,42,14,37,0.0 +11349,28,45.6,16,0.0 +11349,48,12.75,32,0.0 +11349,45,9.5,16,0.0 +11349,12,38,17,0.0 +11349,30,25.89,42,0.0 +11349,3,10,24,0.0 +11349,36,19,13,0.0 +11349,39,18,23,0.0 +11349,7,30,3,0.0 +11349,51,53,2,0.0 +11349,13,6,40,0.0 +11349,65,21.05,26,0.0 +11349,63,43.9,34,0.0 +11349,11,21,22,0.0 +11349,76,18,46,0.0 +11349,69,36,26,0.0 +11349,17,39,28,0.0 +11349,64,33.25,18,0.0 +11349,8,40,8,0.0 +11349,33,2.5,8,0.0 +11349,66,17,37,0.0 +11349,14,23.25,6,0.0 +11350,20,81,19,0.0 +11350,42,14,19,0.0 +11350,60,34,12,0.0 +11350,14,23.25,8,0.0 +11350,34,14,2,0.0 +11350,4,22,32,0.0 +11350,9,97,22,0.0 +11350,28,45.6,49,0.0 +11350,40,18.4,26,0.0 +11350,26,31.23,25,0.0 +11350,74,10,18,0.0 +11350,43,46,34,0.0 +11350,51,53,37,0.0 +11350,7,30,25,0.0 +11350,18,62.5,5,0.0 +11350,52,7,35,0.0 +11350,49,20,15,0.0 +11350,11,21,38,0.0 +11350,46,12,12,0.0 +11350,2,19,24,0.0 +11350,69,36,34,0.0 +11350,10,31,33,0.0 +11350,55,24,43,0.0 +11350,62,49.3,29,0.0 +11350,30,25.89,15,0.0 +11350,36,19,16,0.0 +11350,67,14,48,0.0 +11350,5,21.35,45,0.0 +11350,71,21.5,50,0.0 +11350,33,2.5,31,0.0 +11350,61,28.5,19,0.0 +11350,25,14,44,0.0 +11350,37,26,46,0.0 +11350,38,263.5,9,0.0 +11350,50,16.25,48,0.0 +11350,76,18,37,0.0 +11350,6,25,50,0.0 +11350,39,18,6,0.0 +11350,66,17,34,0.0 +11350,41,9.65,47,0.0 +11350,1,18,46,0.0 +11350,32,32,12,0.0 +11350,73,15,5,0.0 +11350,3,10,33,0.0 +11350,47,9.5,3,0.0 +11350,24,4.5,27,0.0 +11350,13,6,18,0.0 +11350,65,21.05,20,0.0 +11350,17,39,16,0.0 +11350,77,13,10,0.0 +11350,63,43.9,33,0.0 +11350,45,9.5,49,0.0 +11350,70,15,7,0.0 +11350,21,10,25,0.0 +11350,31,12.5,49,0.0 +11350,8,40,11,0.0 +11350,22,21,34,0.0 +11350,27,43.9,27,0.0 +11350,56,38,23,0.0 +11350,72,34.8,6,0.0 +11350,44,19.45,46,0.0 +11350,48,12.75,3,0.0 +11350,12,38,12,0.0 +11350,64,33.25,2,0.0 +11350,19,9.2,39,0.0 +11350,29,123.79,15,0.0 +11350,23,9,30,0.0 +11350,57,19.5,29,0.0 +11350,68,12.5,36,0.0 +11350,75,7.75,34,0.0 +11350,59,55,29,0.0 +11350,53,32.8,41,0.0 +11350,58,13.25,4,0.0 +11350,16,17.45,39,0.0 +11351,70,15,18,0.0 +11351,15,15.5,37,0.0 +11351,9,97,2,0.0 +11351,25,14,19,0.0 +11351,12,38,39,0.0 +11351,8,40,6,0.0 +11351,58,13.25,46,0.0 +11351,75,7.75,5,0.0 +11351,5,21.35,4,0.0 +11351,37,26,18,0.0 +11351,44,19.45,29,0.0 +11351,49,20,13,0.0 +11351,61,28.5,11,0.0 +11351,76,18,19,0.0 +11351,2,19,1,0.0 +11351,30,25.89,37,0.0 +11351,39,18,41,0.0 +11351,40,18.4,21,0.0 +11351,72,34.8,29,0.0 +11351,21,10,49,0.0 +11351,38,263.5,18,0.0 +11351,74,10,48,0.0 +11351,1,18,4,0.0 +11351,10,31,38,0.0 +11351,56,38,25,0.0 +11351,62,49.3,20,0.0 +11351,48,12.75,37,0.0 +11351,51,53,18,0.0 +11351,14,23.25,20,0.0 +11351,35,18,50,0.0 +11351,16,17.45,5,0.0 +11351,6,25,16,0.0 +11351,73,15,26,0.0 +11351,59,55,24,0.0 +11351,43,46,17,0.0 +11351,66,17,5,0.0 +11351,13,6,41,0.0 +11351,57,19.5,1,0.0 +11351,24,4.5,8,0.0 +11351,27,43.9,4,0.0 +11351,64,33.25,33,0.0 +11351,55,24,9,0.0 +11351,77,13,28,0.0 +11351,26,31.23,21,0.0 +11351,4,22,9,0.0 +11351,7,30,7,0.0 +11351,54,7.45,48,0.0 +11351,52,7,3,0.0 +11351,29,123.79,38,0.0 +11351,46,12,49,0.0 +11351,33,2.5,24,0.0 +11351,28,45.6,36,0.0 +11351,36,19,32,0.0 +11351,18,62.5,18,0.0 +11351,3,10,23,0.0 +11352,63,43.9,18,0.0 +11352,35,18,26,0.0 +11352,4,22,42,0.0 +11352,74,10,49,0.0 +11352,37,26,22,0.0 +11352,34,14,5,0.0 +11352,13,6,22,0.0 +11352,49,20,34,0.0 +11352,11,21,36,0.0 +11352,32,32,36,0.0 +11352,58,13.25,40,0.0 +11352,23,9,36,0.0 +11352,51,53,10,0.0 +11352,42,14,10,0.0 +11352,55,24,12,0.0 +11352,53,32.8,37,0.0 +11352,9,97,12,0.0 +11352,56,38,8,0.0 +11352,60,34,6,0.0 +11352,3,10,35,0.0 +11352,65,21.05,38,0.0 +11352,64,33.25,27,0.0 +11352,7,30,29,0.0 +11352,59,55,31,0.0 +11352,68,12.5,18,0.0 +11352,62,49.3,47,0.0 +11352,5,21.35,49,0.0 +11352,15,15.5,38,0.0 +11352,30,25.89,15,0.0 +11352,1,18,12,0.0 +11352,46,12,17,0.0 +11352,76,18,8,0.0 +11352,17,39,30,0.0 +11352,71,21.5,30,0.0 +11352,47,9.5,17,0.0 +11352,66,17,2,0.0 +11352,43,46,36,0.0 +11352,44,19.45,48,0.0 +11352,19,9.2,16,0.0 +11352,40,18.4,2,0.0 +11352,20,81,2,0.0 +11352,12,38,22,0.0 +11352,69,36,35,0.0 +11352,39,18,21,0.0 +11352,8,40,4,0.0 +11352,50,16.25,41,0.0 +11352,38,263.5,23,0.0 +11352,57,19.5,50,0.0 +11352,52,7,31,0.0 +11352,54,7.45,22,0.0 +11352,31,12.5,18,0.0 +11352,72,34.8,11,0.0 +11352,14,23.25,27,0.0 +11352,27,43.9,38,0.0 +11352,36,19,4,0.0 +11352,26,31.23,28,0.0 +11352,45,9.5,27,0.0 +11352,28,45.6,22,0.0 +11353,51,53,11,0.0 +11353,66,17,47,0.0 +11353,36,19,3,0.0 +11353,43,46,50,0.0 +11353,54,7.45,29,0.0 +11353,74,10,28,0.0 +11353,26,31.23,7,0.0 +11353,72,34.8,12,0.0 +11353,15,15.5,7,0.0 +11353,48,12.75,50,0.0 +11353,35,18,5,0.0 +11353,6,25,23,0.0 +11353,73,15,7,0.0 +11353,5,21.35,5,0.0 +11353,25,14,27,0.0 +11353,28,45.6,25,0.0 +11353,39,18,19,0.0 +11353,21,10,45,0.0 +11353,30,25.89,47,0.0 +11353,63,43.9,19,0.0 +11353,34,14,13,0.0 +11353,14,23.25,10,0.0 +11353,60,34,43,0.0 +11353,18,62.5,40,0.0 +11353,49,20,10,0.0 +11353,7,30,38,0.0 +11353,40,18.4,34,0.0 +11353,8,40,29,0.0 +11353,3,10,34,0.0 +11353,13,6,38,0.0 +11354,14,23.25,12,0.0 +11354,19,9.2,35,0.0 +11354,58,13.25,47,0.0 +11354,36,19,30,0.0 +11354,23,9,12,0.0 +11354,35,18,24,0.0 +11354,26,31.23,42,0.0 +11354,24,4.5,33,0.0 +11354,49,20,19,0.0 +11354,76,18,24,0.0 +11354,46,12,32,0.0 +11354,54,7.45,24,0.0 +11354,3,10,27,0.0 +11354,37,26,36,0.0 +11354,38,263.5,21,0.0 +11354,57,19.5,47,0.0 +11355,63,43.9,5,0.0 +11355,13,6,42,0.0 +11355,69,36,2,0.0 +11355,24,4.5,27,0.0 +11355,39,18,45,0.0 +11355,35,18,38,0.0 +11355,28,45.6,5,0.0 +11355,50,16.25,38,0.0 +11355,56,38,43,0.0 +11355,10,31,31,0.0 +11355,7,30,21,0.0 +11355,36,19,27,0.0 +11355,25,14,8,0.0 +11355,71,21.5,43,0.0 +11355,29,123.79,24,0.0 +11355,52,7,48,0.0 +11355,31,12.5,34,0.0 +11355,21,10,31,0.0 +11355,41,9.65,3,0.0 +11355,5,21.35,47,0.0 +11355,1,18,38,0.0 +11355,60,34,39,0.0 +11355,34,14,13,0.0 +11355,43,46,38,0.0 +11355,22,21,5,0.0 +11355,54,7.45,37,0.0 +11355,3,10,45,0.0 +11355,66,17,14,0.0 +11355,67,14,24,0.0 +11355,14,23.25,25,0.0 +11355,8,40,19,0.0 +11355,59,55,14,0.0 +11355,73,15,30,0.0 +11355,55,24,14,0.0 +11355,30,25.89,16,0.0 +11355,65,21.05,43,0.0 +11355,70,15,3,0.0 +11355,18,62.5,30,0.0 +11355,32,32,37,0.0 +11355,38,263.5,23,0.0 +11355,42,14,46,0.0 +11355,53,32.8,28,0.0 +11355,23,9,24,0.0 +11355,16,17.45,22,0.0 +11355,11,21,48,0.0 +11355,37,26,20,0.0 +11355,44,19.45,31,0.0 +11355,58,13.25,14,0.0 +11355,46,12,35,0.0 +11355,74,10,19,0.0 +11355,76,18,25,0.0 +11355,4,22,6,0.0 +11355,27,43.9,38,0.0 +11355,75,7.75,29,0.0 +11355,20,81,10,0.0 +11355,26,31.23,21,0.0 +11355,19,9.2,34,0.0 +11355,72,34.8,2,0.0 +11355,40,18.4,39,0.0 +11355,64,33.25,45,0.0 +11355,12,38,41,0.0 +11355,9,97,17,0.0 +11355,57,19.5,18,0.0 +11355,6,25,5,0.0 +11355,48,12.75,4,0.0 +11355,15,15.5,38,0.0 +11355,62,49.3,39,0.0 +11355,33,2.5,21,0.0 +11355,68,12.5,31,0.0 +11355,77,13,23,0.0 +11355,49,20,21,0.0 +11355,47,9.5,31,0.0 +11355,51,53,24,0.0 +11355,61,28.5,15,0.0 +11356,76,18,20,0.0 +11356,14,23.25,43,0.0 +11356,71,21.5,25,0.0 +11356,4,22,34,0.0 +11356,42,14,34,0.0 +11356,36,19,17,0.0 +11356,8,40,22,0.0 +11356,56,38,37,0.0 +11356,44,19.45,25,0.0 +11356,53,32.8,23,0.0 +11356,74,10,40,0.0 +11356,23,9,41,0.0 +11356,31,12.5,30,0.0 +11356,27,43.9,3,0.0 +11356,55,24,3,0.0 +11356,46,12,8,0.0 +11356,24,4.5,36,0.0 +11356,72,34.8,49,0.0 +11356,70,15,23,0.0 +11356,33,2.5,18,0.0 +11356,50,16.25,49,0.0 +11356,48,12.75,4,0.0 +11356,73,15,50,0.0 +11356,60,34,38,0.0 +11356,61,28.5,11,0.0 +11356,19,9.2,40,0.0 +11356,65,21.05,21,0.0 +11356,32,32,15,0.0 +11356,54,7.45,21,0.0 +11356,59,55,42,0.0 +11356,5,21.35,16,0.0 +11356,20,81,4,0.0 +11356,3,10,37,0.0 +11356,57,19.5,5,0.0 +11356,7,30,4,0.0 +11356,41,9.65,8,0.0 +11356,34,14,27,0.0 +11356,26,31.23,1,0.0 +11356,13,6,43,0.0 +11356,45,9.5,48,0.0 +11356,35,18,8,0.0 +11356,12,38,13,0.0 +11356,38,263.5,14,0.0 +11356,18,62.5,21,0.0 +11356,58,13.25,35,0.0 +11356,21,10,37,0.0 +11356,75,7.75,39,0.0 +11356,15,15.5,49,0.0 +11356,1,18,20,0.0 +11356,30,25.89,33,0.0 +11356,37,26,26,0.0 +11356,62,49.3,22,0.0 +11356,28,45.6,47,0.0 +11356,25,14,13,0.0 +11356,52,7,34,0.0 +11356,29,123.79,43,0.0 +11356,66,17,5,0.0 +11356,64,33.25,8,0.0 +11356,77,13,46,0.0 +11357,53,32.8,39,0.0 +11357,46,12,43,0.0 +11357,5,21.35,11,0.0 +11357,13,6,21,0.0 +11357,65,21.05,19,0.0 +11357,22,21,26,0.0 +11357,67,14,43,0.0 +11357,56,38,27,0.0 +11357,61,28.5,29,0.0 +11357,25,14,6,0.0 +11357,2,19,28,0.0 +11357,30,25.89,39,0.0 +11357,12,38,16,0.0 +11357,9,97,41,0.0 +11357,24,4.5,45,0.0 +11357,23,9,21,0.0 +11357,1,18,7,0.0 +11357,68,12.5,23,0.0 +11357,63,43.9,9,0.0 +11357,48,12.75,40,0.0 +11357,16,17.45,8,0.0 +11357,55,24,34,0.0 +11357,6,25,38,0.0 +11357,73,15,21,0.0 +11357,38,263.5,17,0.0 +11357,35,18,10,0.0 +11357,66,17,37,0.0 +11357,20,81,33,0.0 +11357,71,21.5,25,0.0 +11357,72,34.8,42,0.0 +11357,70,15,23,0.0 +11357,31,12.5,1,0.0 +11357,77,13,4,0.0 +11357,45,9.5,21,0.0 +11357,10,31,2,0.0 +11357,58,13.25,19,0.0 +11357,8,40,35,0.0 +11357,26,31.23,25,0.0 +11357,42,14,32,0.0 +11357,74,10,35,0.0 +11357,69,36,47,0.0 +11357,7,30,42,0.0 +11357,4,22,20,0.0 +11358,3,10,44,0.0 +11358,15,15.5,13,0.0 +11358,14,23.25,7,0.0 +11358,28,45.6,20,0.0 +11358,20,81,38,0.0 +11358,74,10,11,0.0 +11358,58,13.25,31,0.0 +11358,66,17,20,0.0 +11358,70,15,5,0.0 +11358,75,7.75,22,0.0 +11358,17,39,16,0.0 +11358,32,32,23,0.0 +11358,26,31.23,6,0.0 +11358,71,21.5,19,0.0 +11358,6,25,41,0.0 +11358,37,26,18,0.0 +11358,48,12.75,1,0.0 +11358,61,28.5,32,0.0 +11358,16,17.45,3,0.0 +11359,32,32,12,0.0 +11359,6,25,44,0.0 +11359,66,17,39,0.0 +11359,12,38,45,0.0 +11359,40,18.4,15,0.0 +11359,65,21.05,7,0.0 +11359,16,17.45,47,0.0 +11359,2,19,34,0.0 +11359,52,7,29,0.0 +11359,23,9,15,0.0 +11359,57,19.5,43,0.0 +11359,41,9.65,45,0.0 +11359,44,19.45,47,0.0 +11359,15,15.5,49,0.0 +11359,72,34.8,7,0.0 +11359,54,7.45,32,0.0 +11359,11,21,38,0.0 +11359,59,55,7,0.0 +11359,70,15,19,0.0 +11359,60,34,5,0.0 +11359,34,14,22,0.0 +11359,29,123.79,21,0.0 +11359,5,21.35,4,0.0 +11359,69,36,35,0.0 +11359,62,49.3,18,0.0 +11359,7,30,19,0.0 +11359,43,46,44,0.0 +11359,9,97,40,0.0 +11359,4,22,17,0.0 +11359,18,62.5,40,0.0 +11359,13,6,31,0.0 +11359,51,53,13,0.0 +11359,64,33.25,1,0.0 +11359,74,10,50,0.0 +11359,56,38,29,0.0 +11359,25,14,32,0.0 +11359,63,43.9,18,0.0 +11360,40,18.4,28,0.0 +11360,14,23.25,14,0.0 +11360,46,12,24,0.0 +11360,24,4.5,32,0.0 +11360,53,32.8,50,0.0 +11360,15,15.5,1,0.0 +11360,12,38,46,0.0 +11360,2,19,36,0.0 +11360,73,15,44,0.0 +11360,47,9.5,17,0.0 +11360,26,31.23,40,0.0 +11360,70,15,36,0.0 +11360,22,21,21,0.0 +11360,32,32,16,0.0 +11360,36,19,17,0.0 +11360,29,123.79,25,0.0 +11360,67,14,22,0.0 +11360,19,9.2,33,0.0 +11360,39,18,28,0.0 +11360,49,20,37,0.0 +11360,18,62.5,11,0.0 +11360,30,25.89,40,0.0 +11360,9,97,14,0.0 +11360,37,26,10,0.0 +11360,68,12.5,7,0.0 +11360,10,31,45,0.0 +11360,51,53,10,0.0 +11360,54,7.45,33,0.0 +11360,62,49.3,32,0.0 +11360,59,55,16,0.0 +11360,27,43.9,48,0.0 +11360,77,13,35,0.0 +11360,58,13.25,24,0.0 +11360,41,9.65,49,0.0 +11360,6,25,1,0.0 +11360,74,10,33,0.0 +11360,1,18,10,0.0 +11360,65,21.05,46,0.0 +11360,63,43.9,2,0.0 +11360,57,19.5,4,0.0 +11360,21,10,23,0.0 +11360,48,12.75,36,0.0 +11360,3,10,1,0.0 +11360,71,21.5,36,0.0 +11360,5,21.35,48,0.0 +11360,8,40,5,0.0 +11360,23,9,32,0.0 +11360,25,14,26,0.0 +11360,50,16.25,26,0.0 +11360,44,19.45,10,0.0 +11360,56,38,7,0.0 +11360,7,30,23,0.0 +11360,11,21,48,0.0 +11360,31,12.5,21,0.0 +11360,64,33.25,33,0.0 +11360,17,39,19,0.0 +11360,52,7,26,0.0 +11360,35,18,30,0.0 +11360,33,2.5,33,0.0 +11360,45,9.5,39,0.0 +11360,4,22,36,0.0 +11360,75,7.75,41,0.0 +11360,72,34.8,12,0.0 +11360,66,17,18,0.0 +11361,50,16.25,50,0.0 +11361,59,55,10,0.0 +11361,29,123.79,22,0.0 +11361,15,15.5,50,0.0 +11361,27,43.9,47,0.0 +11361,55,24,21,0.0 +11361,41,9.65,14,0.0 +11361,30,25.89,13,0.0 +11361,5,21.35,47,0.0 +11361,17,39,20,0.0 +11361,36,19,26,0.0 +11361,66,17,19,0.0 +11361,4,22,6,0.0 +11361,49,20,46,0.0 +11361,25,14,1,0.0 +11361,75,7.75,46,0.0 +11361,48,12.75,7,0.0 +11361,2,19,13,0.0 +11361,53,32.8,4,0.0 +11361,62,49.3,13,0.0 +11361,22,21,2,0.0 +11361,6,25,20,0.0 +11361,61,28.5,24,0.0 +11361,73,15,4,0.0 +11361,3,10,38,0.0 +11361,39,18,39,0.0 +11361,52,7,28,0.0 +11361,37,26,2,0.0 +11361,63,43.9,37,0.0 +11361,43,46,37,0.0 +11361,21,10,22,0.0 +11361,40,18.4,50,0.0 +11361,56,38,17,0.0 +11361,58,13.25,34,0.0 +11361,68,12.5,49,0.0 +11361,18,62.5,48,0.0 +11361,34,14,2,0.0 +11361,51,53,46,0.0 +11361,38,263.5,44,0.0 +11361,16,17.45,28,0.0 +11361,74,10,17,0.0 +11361,42,14,48,0.0 +11361,32,32,43,0.0 +11362,41,9.65,49,0.0 +11362,15,15.5,26,0.0 +11362,45,9.5,41,0.0 +11362,61,28.5,20,0.0 +11362,68,12.5,26,0.0 +11362,12,38,24,0.0 +11362,50,16.25,27,0.0 +11362,57,19.5,30,0.0 +11362,47,9.5,43,0.0 +11362,71,21.5,18,0.0 +11362,72,34.8,21,0.0 +11362,69,36,2,0.0 +11362,23,9,5,0.0 +11362,48,12.75,14,0.0 +11362,37,26,1,0.0 +11362,11,21,25,0.0 +11362,58,13.25,31,0.0 +11362,35,18,49,0.0 +11363,35,18,20,0.0 +11363,40,18.4,29,0.0 +11363,8,40,50,0.0 +11363,45,9.5,45,0.0 +11363,9,97,30,0.0 +11363,48,12.75,41,0.0 +11363,47,9.5,46,0.0 +11363,43,46,6,0.0 +11363,58,13.25,39,0.0 +11363,30,25.89,45,0.0 +11363,55,24,29,0.0 +11363,49,20,11,0.0 +11363,10,31,42,0.0 +11363,64,33.25,12,0.0 +11363,65,21.05,38,0.0 +11363,77,13,18,0.0 +11363,60,34,33,0.0 +11363,3,10,43,0.0 +11363,44,19.45,12,0.0 +11363,39,18,48,0.0 +11363,37,26,30,0.0 +11363,72,34.8,50,0.0 +11363,15,15.5,29,0.0 +11363,31,12.5,5,0.0 +11363,70,15,44,0.0 +11363,18,62.5,27,0.0 +11363,61,28.5,10,0.0 +11363,11,21,27,0.0 +11363,34,14,20,0.0 +11363,13,6,12,0.0 +11363,76,18,3,0.0 +11363,50,16.25,15,0.0 +11363,25,14,11,0.0 +11363,69,36,17,0.0 +11363,33,2.5,31,0.0 +11363,17,39,9,0.0 +11363,42,14,41,0.0 +11363,5,21.35,27,0.0 +11363,21,10,33,0.0 +11363,73,15,39,0.0 +11363,22,21,46,0.0 +11363,68,12.5,42,0.0 +11363,1,18,11,0.0 +11363,4,22,42,0.0 +11363,6,25,31,0.0 +11363,20,81,20,0.0 +11363,59,55,13,0.0 +11363,23,9,18,0.0 +11363,19,9.2,26,0.0 +11363,36,19,12,0.0 +11363,52,7,33,0.0 +11363,27,43.9,44,0.0 +11363,57,19.5,33,0.0 +11363,67,14,6,0.0 +11363,24,4.5,1,0.0 +11363,62,49.3,3,0.0 +11363,28,45.6,40,0.0 +11363,71,21.5,34,0.0 +11363,38,263.5,21,0.0 +11363,46,12,13,0.0 +11363,14,23.25,28,0.0 +11363,53,32.8,18,0.0 +11363,74,10,33,0.0 +11363,29,123.79,41,0.0 +11364,77,13,6,0.0 +11364,10,31,7,0.0 +11364,33,2.5,28,0.0 +11364,54,7.45,14,0.0 +11364,3,10,42,0.0 +11364,34,14,44,0.0 +11364,39,18,27,0.0 +11364,23,9,22,0.0 +11364,13,6,14,0.0 +11364,31,12.5,32,0.0 +11364,8,40,32,0.0 +11364,16,17.45,14,0.0 +11364,47,9.5,20,0.0 +11364,4,22,30,0.0 +11364,12,38,39,0.0 +11364,36,19,35,0.0 +11364,62,49.3,41,0.0 +11364,15,15.5,43,0.0 +11364,48,12.75,38,0.0 +11364,24,4.5,5,0.0 +11364,22,21,15,0.0 +11364,74,10,19,0.0 +11364,61,28.5,34,0.0 +11364,66,17,33,0.0 +11364,73,15,40,0.0 +11364,64,33.25,41,0.0 +11364,51,53,24,0.0 +11364,26,31.23,21,0.0 +11364,60,34,35,0.0 +11364,57,19.5,38,0.0 +11364,68,12.5,47,0.0 +11364,59,55,21,0.0 +11364,1,18,8,0.0 +11364,25,14,14,0.0 +11364,20,81,25,0.0 +11364,46,12,5,0.0 +11364,44,19.45,44,0.0 +11364,32,32,11,0.0 +11364,41,9.65,35,0.0 +11364,2,19,3,0.0 +11364,17,39,48,0.0 +11364,70,15,29,0.0 +11364,11,21,22,0.0 +11364,76,18,38,0.0 +11364,72,34.8,1,0.0 +11364,49,20,31,0.0 +11364,56,38,5,0.0 +11364,71,21.5,34,0.0 +11364,18,62.5,10,0.0 +11364,40,18.4,14,0.0 +11364,63,43.9,43,0.0 +11364,7,30,7,0.0 +11364,21,10,25,0.0 +11364,50,16.25,46,0.0 +11364,37,26,1,0.0 +11364,52,7,11,0.0 +11365,56,38,23,0.0 +11365,25,14,50,0.0 +11365,23,9,20,0.0 +11365,69,36,49,0.0 +11365,8,40,27,0.0 +11365,52,7,45,0.0 +11365,10,31,38,0.0 +11365,37,26,9,0.0 +11365,6,25,12,0.0 +11365,73,15,37,0.0 +11365,7,30,41,0.0 +11366,16,17.45,31,0.0 +11366,43,46,28,0.0 +11366,6,25,16,0.0 +11366,8,40,28,0.0 +11366,17,39,28,0.0 +11366,36,19,12,0.0 +11366,54,7.45,24,0.0 +11366,29,123.79,48,0.0 +11366,50,16.25,27,0.0 +11366,14,23.25,27,0.0 +11366,9,97,32,0.0 +11366,44,19.45,37,0.0 +11366,53,32.8,24,0.0 +11366,49,20,17,0.0 +11366,37,26,27,0.0 +11366,13,6,12,0.0 +11366,62,49.3,23,0.0 +11366,4,22,2,0.0 +11366,57,19.5,50,0.0 +11366,24,4.5,11,0.0 +11366,75,7.75,26,0.0 +11366,38,263.5,10,0.0 +11366,55,24,41,0.0 +11366,66,17,34,0.0 +11366,23,9,2,0.0 +11366,41,9.65,28,0.0 +11366,11,21,41,0.0 +11366,42,14,3,0.0 +11366,45,9.5,40,0.0 +11366,22,21,48,0.0 +11366,19,9.2,1,0.0 +11366,65,21.05,44,0.0 +11366,39,18,32,0.0 +11366,52,7,34,0.0 +11366,70,15,42,0.0 +11367,75,7.75,29,0.0 +11367,27,43.9,43,0.0 +11368,3,10,27,0.0 +11368,58,13.25,31,0.0 +11368,25,14,47,0.0 +11368,63,43.9,20,0.0 +11368,48,12.75,47,0.0 +11368,72,34.8,15,0.0 +11368,74,10,38,0.0 +11368,34,14,38,0.0 +11368,8,40,23,0.0 +11368,77,13,13,0.0 +11368,10,31,35,0.0 +11368,56,38,36,0.0 +11368,55,24,44,0.0 +11368,26,31.23,13,0.0 +11368,14,23.25,36,0.0 +11368,23,9,45,0.0 +11368,45,9.5,50,0.0 +11368,18,62.5,35,0.0 +11368,52,7,5,0.0 +11368,59,55,47,0.0 +11368,76,18,1,0.0 +11368,40,18.4,15,0.0 +11368,61,28.5,29,0.0 +11368,60,34,4,0.0 +11368,67,14,22,0.0 +11368,32,32,8,0.0 +11368,44,19.45,32,0.0 +11368,15,15.5,19,0.0 +11368,65,21.05,47,0.0 +11368,47,9.5,14,0.0 +11368,16,17.45,34,0.0 +11368,2,19,28,0.0 +11368,41,9.65,44,0.0 +11368,35,18,32,0.0 +11368,20,81,24,0.0 +11368,21,10,21,0.0 +11369,61,28.5,11,0.0 +11369,4,22,8,0.0 +11369,3,10,34,0.0 +11369,26,31.23,21,0.0 +11369,30,25.89,42,0.0 +11369,21,10,33,0.0 +11369,59,55,29,0.0 +11369,9,97,31,0.0 +11369,43,46,5,0.0 +11369,47,9.5,34,0.0 +11369,42,14,6,0.0 +11369,63,43.9,15,0.0 +11369,52,7,10,0.0 +11369,31,12.5,14,0.0 +11370,7,30,15,0.0 +11370,20,81,28,0.0 +11370,22,21,43,0.0 +11370,55,24,40,0.0 +11370,15,15.5,6,0.0 +11370,51,53,31,0.0 +11370,53,32.8,9,0.0 +11370,17,39,45,0.0 +11370,26,31.23,20,0.0 +11370,63,43.9,15,0.0 +11370,35,18,45,0.0 +11370,29,123.79,38,0.0 +11370,40,18.4,34,0.0 +11370,31,12.5,9,0.0 +11370,76,18,8,0.0 +11370,67,14,48,0.0 +11370,27,43.9,48,0.0 +11370,19,9.2,24,0.0 +11370,10,31,11,0.0 +11370,25,14,6,0.0 +11370,71,21.5,5,0.0 +11370,65,21.05,30,0.0 +11370,73,15,36,0.0 +11370,57,19.5,31,0.0 +11370,64,33.25,18,0.0 +11370,1,18,43,0.0 +11370,68,12.5,14,0.0 +11370,69,36,40,0.0 +11370,12,38,44,0.0 +11370,5,21.35,26,0.0 +11370,3,10,50,0.0 +11370,18,62.5,29,0.0 +11370,74,10,41,0.0 +11370,28,45.6,27,0.0 +11370,62,49.3,2,0.0 +11370,66,17,1,0.0 +11370,58,13.25,26,0.0 +11370,9,97,40,0.0 +11370,34,14,25,0.0 +11370,47,9.5,30,0.0 +11370,37,26,15,0.0 +11371,76,18,6,0.0 +11371,33,2.5,5,0.0 +11371,41,9.65,27,0.0 +11371,58,13.25,49,0.0 +11371,39,18,1,0.0 +11371,23,9,31,0.0 +11371,29,123.79,43,0.0 +11371,30,25.89,33,0.0 +11371,50,16.25,1,0.0 +11371,2,19,26,0.0 +11371,4,22,39,0.0 +11371,35,18,9,0.0 +11371,25,14,17,0.0 +11371,69,36,8,0.0 +11371,31,12.5,26,0.0 +11371,27,43.9,9,0.0 +11371,51,53,50,0.0 +11371,48,12.75,10,0.0 +11372,29,123.79,23,0.0 +11372,77,13,12,0.0 +11372,38,263.5,44,0.0 +11372,10,31,16,0.0 +11372,69,36,31,0.0 +11372,26,31.23,4,0.0 +11372,17,39,32,0.0 +11372,66,17,21,0.0 +11372,24,4.5,2,0.0 +11372,74,10,25,0.0 +11372,1,18,26,0.0 +11372,2,19,32,0.0 +11372,75,7.75,44,0.0 +11372,22,21,45,0.0 +11372,48,12.75,35,0.0 +11372,57,19.5,9,0.0 +11372,4,22,20,0.0 +11372,3,10,9,0.0 +11372,40,18.4,34,0.0 +11372,50,16.25,44,0.0 +11372,72,34.8,2,0.0 +11372,65,21.05,19,0.0 +11372,36,19,30,0.0 +11372,45,9.5,26,0.0 +11372,23,9,3,0.0 +11372,28,45.6,27,0.0 +11372,56,38,26,0.0 +11372,20,81,44,0.0 +11373,39,18,47,0.0 +11373,32,32,26,0.0 +11373,35,18,23,0.0 +11373,17,39,15,0.0 +11373,12,38,9,0.0 +11373,6,25,19,0.0 +11373,22,21,33,0.0 +11373,9,97,26,0.0 +11373,11,21,42,0.0 +11373,24,4.5,33,0.0 +11373,46,12,42,0.0 +11373,5,21.35,50,0.0 +11373,38,263.5,10,0.0 +11373,52,7,20,0.0 +11373,56,38,43,0.0 +11373,75,7.75,15,0.0 +11373,70,15,1,0.0 +11373,65,21.05,40,0.0 +11373,48,12.75,15,0.0 +11373,31,12.5,28,0.0 +11373,7,30,50,0.0 +11373,47,9.5,1,0.0 +11373,1,18,45,0.0 +11373,10,31,16,0.0 +11373,45,9.5,20,0.0 +11373,20,81,32,0.0 +11373,23,9,27,0.0 +11373,76,18,38,0.0 +11373,37,26,28,0.0 +11373,30,25.89,18,0.0 +11373,33,2.5,19,0.0 +11373,19,9.2,35,0.0 +11373,28,45.6,31,0.0 +11373,25,14,29,0.0 +11373,18,62.5,14,0.0 +11373,49,20,37,0.0 +11373,34,14,22,0.0 +11373,58,13.25,27,0.0 +11373,44,19.45,10,0.0 +11373,63,43.9,46,0.0 +11373,64,33.25,32,0.0 +11373,69,36,34,0.0 +11373,15,15.5,40,0.0 +11374,9,97,2,0.0 +11374,48,12.75,46,0.0 +11374,25,14,46,0.0 +11374,24,4.5,40,0.0 +11374,53,32.8,11,0.0 +11374,47,9.5,15,0.0 +11374,23,9,47,0.0 +11374,15,15.5,41,0.0 +11374,73,15,31,0.0 +11374,42,14,44,0.0 +11374,41,9.65,48,0.0 +11374,61,28.5,39,0.0 +11374,72,34.8,12,0.0 +11374,37,26,40,0.0 +11374,68,12.5,35,0.0 +11374,10,31,25,0.0 +11374,38,263.5,20,0.0 +11374,50,16.25,1,0.0 +11374,69,36,46,0.0 +11374,51,53,32,0.0 +11374,8,40,27,0.0 +11374,77,13,38,0.0 +11374,30,25.89,3,0.0 +11374,27,43.9,45,0.0 +11374,46,12,27,0.0 +11374,4,22,24,0.0 +11374,35,18,5,0.0 +11374,63,43.9,13,0.0 +11374,33,2.5,34,0.0 +11374,49,20,50,0.0 +11374,20,81,40,0.0 +11374,18,62.5,21,0.0 +11374,52,7,32,0.0 +11374,14,23.25,3,0.0 +11375,58,13.25,3,0.0 +11375,72,34.8,35,0.0 +11375,17,39,4,0.0 +11375,42,14,37,0.0 +11375,11,21,30,0.0 +11375,2,19,24,0.0 +11375,67,14,10,0.0 +11375,34,14,2,0.0 +11375,16,17.45,11,0.0 +11375,63,43.9,37,0.0 +11375,28,45.6,9,0.0 +11375,15,15.5,49,0.0 +11375,22,21,10,0.0 +11375,57,19.5,23,0.0 +11375,53,32.8,2,0.0 +11375,30,25.89,20,0.0 +11375,3,10,49,0.0 +11375,60,34,1,0.0 +11375,75,7.75,32,0.0 +11375,61,28.5,5,0.0 +11375,20,81,22,0.0 +11375,21,10,41,0.0 +11375,55,24,47,0.0 +11375,5,21.35,7,0.0 +11375,47,9.5,50,0.0 +11375,1,18,37,0.0 +11375,40,18.4,19,0.0 +11375,36,19,42,0.0 +11375,45,9.5,18,0.0 +11375,35,18,3,0.0 +11375,68,12.5,49,0.0 +11375,29,123.79,37,0.0 +11375,23,9,34,0.0 +11375,74,10,32,0.0 +11375,31,12.5,25,0.0 +11375,26,31.23,5,0.0 +11375,77,13,25,0.0 +11375,54,7.45,18,0.0 +11375,59,55,47,0.0 +11375,62,49.3,14,0.0 +11376,28,45.6,24,0.0 +11376,57,19.5,21,0.0 +11376,13,6,13,0.0 +11376,54,7.45,37,0.0 +11376,55,24,16,0.0 +11376,22,21,32,0.0 +11376,5,21.35,18,0.0 +11376,37,26,30,0.0 +11376,62,49.3,13,0.0 +11376,70,15,10,0.0 +11376,16,17.45,3,0.0 +11376,71,21.5,26,0.0 +11377,1,18,27,0.0 +11377,59,55,39,0.0 +11377,77,13,9,0.0 +11377,40,18.4,12,0.0 +11377,49,20,47,0.0 +11377,3,10,6,0.0 +11377,45,9.5,11,0.0 +11377,67,14,14,0.0 +11377,25,14,35,0.0 +11377,9,97,8,0.0 +11377,36,19,42,0.0 +11377,76,18,42,0.0 +11377,64,33.25,43,0.0 +11377,63,43.9,32,0.0 +11377,4,22,23,0.0 +11377,65,21.05,15,0.0 +11377,69,36,17,0.0 +11377,72,34.8,26,0.0 +11377,71,21.5,47,0.0 +11377,43,46,36,0.0 +11377,16,17.45,29,0.0 +11377,10,31,50,0.0 +11377,14,23.25,15,0.0 +11377,30,25.89,34,0.0 +11377,44,19.45,17,0.0 +11378,56,38,20,0.0 +11378,10,31,10,0.0 +11378,27,43.9,48,0.0 +11378,64,33.25,8,0.0 +11378,69,36,6,0.0 +11378,3,10,35,0.0 +11378,9,97,1,0.0 +11378,44,19.45,26,0.0 +11378,40,18.4,28,0.0 +11378,21,10,17,0.0 +11378,72,34.8,48,0.0 +11378,36,19,24,0.0 +11378,49,20,38,0.0 +11378,66,17,41,0.0 +11378,24,4.5,2,0.0 +11378,7,30,49,0.0 +11378,47,9.5,9,0.0 +11378,1,18,39,0.0 +11378,25,14,46,0.0 +11378,55,24,23,0.0 +11378,60,34,28,0.0 +11378,67,14,4,0.0 +11378,74,10,33,0.0 +11378,37,26,43,0.0 +11378,31,12.5,26,0.0 +11378,42,14,20,0.0 +11378,59,55,19,0.0 +11378,77,13,24,0.0 +11379,9,97,21,0.0 +11379,69,36,4,0.0 +11379,13,6,47,0.0 +11379,5,21.35,41,0.0 +11379,32,32,47,0.0 +11379,19,9.2,18,0.0 +11379,47,9.5,13,0.0 +11379,71,21.5,15,0.0 +11379,61,28.5,9,0.0 +11379,7,30,28,0.0 +11379,11,21,44,0.0 +11379,62,49.3,37,0.0 +11379,60,34,15,0.0 +11379,23,9,12,0.0 +11379,51,53,22,0.0 +11379,58,13.25,46,0.0 +11379,74,10,29,0.0 +11379,37,26,32,0.0 +11379,63,43.9,14,0.0 +11379,53,32.8,41,0.0 +11379,64,33.25,3,0.0 +11379,70,15,25,0.0 +11379,12,38,1,0.0 +11379,42,14,36,0.0 +11380,7,30,43,0.0 +11380,46,12,44,0.0 +11380,76,18,6,0.0 +11380,54,7.45,16,0.0 +11380,8,40,13,0.0 +11380,14,23.25,35,0.0 +11380,17,39,13,0.0 +11380,75,7.75,11,0.0 +11380,40,18.4,46,0.0 +11380,72,34.8,47,0.0 +11380,9,97,12,0.0 +11380,67,14,9,0.0 +11380,4,22,47,0.0 +11380,74,10,50,0.0 +11380,37,26,17,0.0 +11380,49,20,47,0.0 +11380,77,13,50,0.0 +11380,16,17.45,28,0.0 +11380,52,7,13,0.0 +11380,50,16.25,27,0.0 +11380,18,62.5,46,0.0 +11380,62,49.3,2,0.0 +11380,47,9.5,10,0.0 +11380,42,14,9,0.0 +11380,61,28.5,24,0.0 +11380,24,4.5,24,0.0 +11380,13,6,30,0.0 +11380,51,53,25,0.0 +11380,33,2.5,9,0.0 +11380,15,15.5,35,0.0 +11380,70,15,7,0.0 +11380,6,25,3,0.0 +11380,68,12.5,28,0.0 +11380,43,46,34,0.0 +11380,30,25.89,18,0.0 +11380,64,33.25,26,0.0 +11380,32,32,4,0.0 +11380,38,263.5,26,0.0 +11380,28,45.6,38,0.0 +11380,23,9,23,0.0 +11380,26,31.23,4,0.0 +11380,58,13.25,23,0.0 +11380,10,31,38,0.0 +11380,19,9.2,18,0.0 +11380,35,18,4,0.0 +11380,22,21,3,0.0 +11380,57,19.5,38,0.0 +11380,73,15,28,0.0 +11380,29,123.79,11,0.0 +11380,25,14,29,0.0 +11380,27,43.9,28,0.0 +11380,59,55,45,0.0 +11380,21,10,38,0.0 +11380,65,21.05,18,0.0 +11380,34,14,26,0.0 +11380,41,9.65,14,0.0 +11380,60,34,48,0.0 +11380,56,38,24,0.0 +11380,1,18,27,0.0 +11380,3,10,10,0.0 +11380,53,32.8,46,0.0 +11380,44,19.45,13,0.0 +11381,16,17.45,30,0.0 +11381,36,19,44,0.0 +11381,57,19.5,9,0.0 +11381,20,81,8,0.0 +11381,15,15.5,50,0.0 +11381,30,25.89,19,0.0 +11381,9,97,49,0.0 +11381,23,9,49,0.0 +11381,63,43.9,40,0.0 +11381,40,18.4,5,0.0 +11381,76,18,27,0.0 +11381,18,62.5,11,0.0 +11381,48,12.75,11,0.0 +11381,54,7.45,30,0.0 +11381,51,53,39,0.0 +11381,44,19.45,25,0.0 +11381,35,18,9,0.0 +11381,39,18,21,0.0 +11381,6,25,11,0.0 +11381,1,18,13,0.0 +11381,65,21.05,37,0.0 +11381,14,23.25,36,0.0 +11381,29,123.79,38,0.0 +11381,50,16.25,4,0.0 +11381,75,7.75,49,0.0 +11381,28,45.6,29,0.0 +11381,11,21,48,0.0 +11381,2,19,18,0.0 +11381,77,13,17,0.0 +11381,3,10,32,0.0 +11381,13,6,41,0.0 +11381,60,34,32,0.0 +11381,42,14,41,0.0 +11381,64,33.25,24,0.0 +11381,32,32,26,0.0 +11381,19,9.2,6,0.0 +11381,74,10,31,0.0 +11381,25,14,36,0.0 +11381,71,21.5,30,0.0 +11381,4,22,33,0.0 +11381,24,4.5,4,0.0 +11381,5,21.35,49,0.0 +11381,49,20,37,0.0 +11381,31,12.5,4,0.0 +11381,47,9.5,41,0.0 +11381,37,26,6,0.0 +11381,70,15,35,0.0 +11381,69,36,19,0.0 +11381,59,55,21,0.0 +11381,55,24,29,0.0 +11381,38,263.5,15,0.0 +11381,12,38,1,0.0 +11381,67,14,47,0.0 +11381,8,40,7,0.0 +11381,68,12.5,33,0.0 +11381,41,9.65,16,0.0 +11381,34,14,14,0.0 +11381,26,31.23,35,0.0 +11381,10,31,28,0.0 +11381,56,38,40,0.0 +11381,33,2.5,8,0.0 +11381,46,12,13,0.0 +11381,62,49.3,44,0.0 +11382,48,12.75,4,0.0 +11382,50,16.25,29,0.0 +11382,62,49.3,8,0.0 +11382,41,9.65,23,0.0 +11382,36,19,14,0.0 +11382,31,12.5,6,0.0 +11382,52,7,24,0.0 +11382,10,31,22,0.0 +11382,44,19.45,15,0.0 +11382,65,21.05,47,0.0 +11382,20,81,43,0.0 +11382,56,38,8,0.0 +11382,67,14,14,0.0 +11382,34,14,11,0.0 +11382,66,17,20,0.0 +11382,68,12.5,4,0.0 +11382,51,53,46,0.0 +11382,63,43.9,18,0.0 +11382,71,21.5,10,0.0 +11382,72,34.8,16,0.0 +11382,1,18,43,0.0 +11382,75,7.75,6,0.0 +11382,74,10,33,0.0 +11382,70,15,49,0.0 +11382,38,263.5,34,0.0 +11382,17,39,50,0.0 +11382,28,45.6,37,0.0 +11382,9,97,3,0.0 +11382,32,32,38,0.0 +11382,15,15.5,48,0.0 +11382,33,2.5,44,0.0 +11382,18,62.5,40,0.0 +11382,46,12,46,0.0 +11382,14,23.25,23,0.0 +11382,58,13.25,13,0.0 +11382,69,36,26,0.0 +11382,57,19.5,23,0.0 +11382,60,34,3,0.0 +11382,42,14,1,0.0 +11383,77,13,28,0.0 +11383,24,4.5,2,0.0 +11383,10,31,23,0.0 +11383,26,31.23,21,0.0 +11383,68,12.5,4,0.0 +11383,55,24,50,0.0 +11383,30,25.89,37,0.0 +11383,6,25,35,0.0 +11383,62,49.3,7,0.0 +11383,39,18,16,0.0 +11383,36,19,40,0.0 +11383,73,15,41,0.0 +11383,69,36,37,0.0 +11383,58,13.25,28,0.0 +11383,11,21,1,0.0 +11383,29,123.79,31,0.0 +11383,41,9.65,20,0.0 +11383,48,12.75,21,0.0 +11383,47,9.5,4,0.0 +11383,19,9.2,1,0.0 +11383,9,97,27,0.0 +11383,60,34,49,0.0 +11383,61,28.5,8,0.0 +11383,23,9,7,0.0 +11383,51,53,24,0.0 +11383,12,38,24,0.0 +11383,42,14,24,0.0 +11383,8,40,33,0.0 +11383,43,46,9,0.0 +11383,72,34.8,9,0.0 +11383,21,10,50,0.0 +11383,3,10,48,0.0 +11383,74,10,47,0.0 +11383,37,26,24,0.0 +11383,33,2.5,11,0.0 +11383,67,14,16,0.0 +11384,44,19.45,29,0.0 +11384,61,28.5,48,0.0 +11384,26,31.23,42,0.0 +11384,75,7.75,33,0.0 +11384,37,26,2,0.0 +11384,2,19,8,0.0 +11384,24,4.5,26,0.0 +11384,22,21,32,0.0 +11385,16,17.45,41,0.0 +11386,74,10,8,0.0 +11386,4,22,45,0.0 +11386,64,33.25,33,0.0 +11386,65,21.05,48,0.0 +11386,58,13.25,35,0.0 +11386,7,30,17,0.0 +11386,41,9.65,19,0.0 +11386,2,19,11,0.0 +11386,11,21,50,0.0 +11386,76,18,30,0.0 +11386,39,18,15,0.0 +11386,73,15,19,0.0 +11386,6,25,35,0.0 +11386,42,14,12,0.0 +11386,70,15,22,0.0 +11386,15,15.5,25,0.0 +11386,35,18,37,0.0 +11386,61,28.5,11,0.0 +11386,9,97,47,0.0 +11386,48,12.75,16,0.0 +11386,13,6,10,0.0 +11386,12,38,23,0.0 +11386,34,14,39,0.0 +11386,55,24,26,0.0 +11386,36,19,47,0.0 +11386,46,12,27,0.0 +11386,77,13,9,0.0 +11386,49,20,26,0.0 +11386,5,21.35,16,0.0 +11386,30,25.89,26,0.0 +11386,19,9.2,39,0.0 +11386,40,18.4,10,0.0 +11386,18,62.5,39,0.0 +11386,51,53,12,0.0 +11386,20,81,20,0.0 +11386,29,123.79,2,0.0 +11386,28,45.6,4,0.0 +11386,68,12.5,8,0.0 +11386,37,26,39,0.0 +11386,31,12.5,42,0.0 +11386,71,21.5,44,0.0 +11386,38,263.5,18,0.0 +11386,24,4.5,40,0.0 +11386,63,43.9,50,0.0 +11386,17,39,32,0.0 +11386,1,18,12,0.0 +11386,3,10,22,0.0 +11386,57,19.5,45,0.0 +11386,53,32.8,26,0.0 +11386,14,23.25,44,0.0 +11386,69,36,19,0.0 +11386,45,9.5,28,0.0 +11386,50,16.25,20,0.0 +11386,60,34,10,0.0 +11386,67,14,50,0.0 +11386,26,31.23,15,0.0 +11386,47,9.5,11,0.0 +11386,54,7.45,50,0.0 +11386,75,7.75,31,0.0 +11386,27,43.9,44,0.0 +11386,8,40,4,0.0 +11386,21,10,5,0.0 +11386,52,7,36,0.0 +11386,72,34.8,1,0.0 +11386,16,17.45,43,0.0 +11386,22,21,39,0.0 +11386,59,55,22,0.0 +11386,10,31,10,0.0 +11386,62,49.3,40,0.0 +11386,23,9,46,0.0 +11386,66,17,44,0.0 +11386,32,32,10,0.0 +11386,25,14,48,0.0 +11386,43,46,43,0.0 +11386,56,38,27,0.0 +11386,44,19.45,5,0.0 +11387,6,25,32,0.0 +11387,60,34,14,0.0 +11387,28,45.6,17,0.0 +11387,36,19,18,0.0 +11387,32,32,26,0.0 +11387,18,62.5,15,0.0 +11387,4,22,31,0.0 +11387,66,17,32,0.0 +11387,41,9.65,3,0.0 +11387,44,19.45,28,0.0 +11387,20,81,25,0.0 +11387,30,25.89,28,0.0 +11387,77,13,4,0.0 +11387,27,43.9,29,0.0 +11387,69,36,44,0.0 +11387,75,7.75,31,0.0 +11387,48,12.75,22,0.0 +11387,5,21.35,34,0.0 +11387,65,21.05,12,0.0 +11387,61,28.5,28,0.0 +11387,58,13.25,18,0.0 +11387,16,17.45,3,0.0 +11387,50,16.25,22,0.0 +11387,40,18.4,13,0.0 +11387,8,40,36,0.0 +11387,68,12.5,20,0.0 +11387,64,33.25,30,0.0 +11387,55,24,21,0.0 +11387,51,53,2,0.0 +11387,37,26,14,0.0 +11387,24,4.5,37,0.0 +11387,47,9.5,30,0.0 +11387,33,2.5,13,0.0 +11387,56,38,46,0.0 +11387,54,7.45,49,0.0 +11387,38,263.5,33,0.0 +11387,1,18,10,0.0 +11387,23,9,41,0.0 +11387,57,19.5,35,0.0 +11387,67,14,38,0.0 +11387,9,97,45,0.0 +11387,71,21.5,19,0.0 +11387,25,14,25,0.0 +11388,16,17.45,28,0.0 +11388,37,26,18,0.0 +11388,42,14,42,0.0 +11388,62,49.3,38,0.0 +11388,20,81,42,0.0 +11388,6,25,28,0.0 +11388,39,18,28,0.0 +11388,38,263.5,37,0.0 +11388,41,9.65,38,0.0 +11388,43,46,4,0.0 +11388,13,6,25,0.0 +11388,10,31,22,0.0 +11388,54,7.45,9,0.0 +11388,32,32,16,0.0 +11388,27,43.9,27,0.0 +11388,64,33.25,28,0.0 +11388,4,22,28,0.0 +11388,24,4.5,28,0.0 +11388,49,20,16,0.0 +11388,75,7.75,13,0.0 +11389,8,40,18,0.0 +11389,19,9.2,22,0.0 +11389,66,17,24,0.0 +11389,39,18,18,0.0 +11389,4,22,11,0.0 +11389,73,15,41,0.0 +11389,3,10,2,0.0 +11389,45,9.5,3,0.0 +11389,56,38,7,0.0 +11389,17,39,16,0.0 +11389,5,21.35,12,0.0 +11389,22,21,35,0.0 +11389,41,9.65,40,0.0 +11389,40,18.4,30,0.0 +11390,3,10,24,0.0 +11390,21,10,40,0.0 +11390,29,123.79,1,0.0 +11390,70,15,31,0.0 +11390,52,7,1,0.0 +11390,8,40,34,0.0 +11391,4,22,4,0.0 +11391,76,18,30,0.0 +11391,48,12.75,20,0.0 +11391,39,18,2,0.0 +11391,35,18,9,0.0 +11391,11,21,43,0.0 +11391,55,24,23,0.0 +11391,36,19,4,0.0 +11391,15,15.5,17,0.0 +11391,44,19.45,34,0.0 +11391,8,40,21,0.0 +11391,28,45.6,39,0.0 +11391,61,28.5,39,0.0 +11391,63,43.9,15,0.0 +11391,74,10,28,0.0 +11391,49,20,19,0.0 +11391,53,32.8,12,0.0 +11391,71,21.5,5,0.0 +11391,41,9.65,11,0.0 +11391,34,14,12,0.0 +11392,20,81,49,0.0 +11392,76,18,24,0.0 +11392,57,19.5,3,0.0 +11392,71,21.5,26,0.0 +11392,48,12.75,48,0.0 +11392,50,16.25,49,0.0 +11392,44,19.45,6,0.0 +11392,36,19,6,0.0 +11392,70,15,37,0.0 +11392,54,7.45,4,0.0 +11392,69,36,20,0.0 +11392,30,25.89,35,0.0 +11392,35,18,6,0.0 +11392,8,40,47,0.0 +11392,16,17.45,6,0.0 +11392,15,15.5,6,0.0 +11392,23,9,11,0.0 +11392,68,12.5,7,0.0 +11392,65,21.05,4,0.0 +11392,13,6,3,0.0 +11392,28,45.6,41,0.0 +11392,17,39,37,0.0 +11392,74,10,50,0.0 +11392,63,43.9,10,0.0 +11392,59,55,1,0.0 +11392,55,24,48,0.0 +11392,75,7.75,50,0.0 +11392,41,9.65,19,0.0 +11392,12,38,21,0.0 +11392,67,14,16,0.0 +11392,31,12.5,13,0.0 +11392,51,53,24,0.0 +11392,77,13,25,0.0 +11392,24,4.5,23,0.0 +11392,64,33.25,26,0.0 +11392,19,9.2,9,0.0 +11392,34,14,41,0.0 +11392,39,18,4,0.0 +11392,45,9.5,43,0.0 +11392,18,62.5,39,0.0 +11392,3,10,12,0.0 +11393,69,36,32,0.0 +11393,34,14,13,0.0 +11393,68,12.5,20,0.0 +11393,47,9.5,39,0.0 +11393,28,45.6,39,0.0 +11393,48,12.75,19,0.0 +11393,9,97,32,0.0 +11393,64,33.25,50,0.0 +11393,63,43.9,37,0.0 +11393,39,18,32,0.0 +11393,25,14,22,0.0 +11393,56,38,18,0.0 +11393,13,6,15,0.0 +11393,45,9.5,25,0.0 +11393,11,21,41,0.0 +11393,16,17.45,30,0.0 +11393,76,18,46,0.0 +11393,20,81,44,0.0 +11393,51,53,10,0.0 +11394,67,14,30,0.0 +11394,39,18,16,0.0 +11394,38,263.5,49,0.0 +11394,34,14,29,0.0 +11394,25,14,36,0.0 +11394,23,9,20,0.0 +11394,27,43.9,14,0.0 +11394,74,10,49,0.0 +11394,40,18.4,41,0.0 +11394,43,46,23,0.0 +11394,32,32,28,0.0 +11394,70,15,23,0.0 +11394,9,97,19,0.0 +11394,19,9.2,18,0.0 +11394,15,15.5,15,0.0 +11394,6,25,17,0.0 +11394,30,25.89,27,0.0 +11394,20,81,39,0.0 +11394,52,7,11,0.0 +11394,13,6,8,0.0 +11394,21,10,12,0.0 +11394,1,18,13,0.0 +11394,11,21,2,0.0 +11394,63,43.9,37,0.0 +11394,76,18,37,0.0 +11394,37,26,18,0.0 +11394,55,24,39,0.0 +11394,35,18,29,0.0 +11394,28,45.6,32,0.0 +11394,48,12.75,26,0.0 +11394,22,21,16,0.0 +11394,41,9.65,30,0.0 +11394,18,62.5,45,0.0 +11394,12,38,49,0.0 +11394,62,49.3,32,0.0 +11394,61,28.5,8,0.0 +11394,24,4.5,42,0.0 +11394,3,10,9,0.0 +11394,51,53,40,0.0 +11394,33,2.5,18,0.0 +11394,69,36,16,0.0 +11394,56,38,4,0.0 +11394,2,19,25,0.0 +11394,42,14,48,0.0 +11394,65,21.05,2,0.0 +11394,7,30,46,0.0 +11394,14,23.25,45,0.0 +11394,73,15,2,0.0 +11394,5,21.35,34,0.0 +11394,58,13.25,12,0.0 +11394,31,12.5,8,0.0 +11394,16,17.45,47,0.0 +11394,59,55,47,0.0 +11394,46,12,34,0.0 +11394,75,7.75,32,0.0 +11394,44,19.45,22,0.0 +11394,17,39,17,0.0 +11394,66,17,34,0.0 +11394,57,19.5,13,0.0 +11394,4,22,40,0.0 +11394,45,9.5,3,0.0 +11394,68,12.5,30,0.0 +11394,64,33.25,47,0.0 +11394,72,34.8,39,0.0 +11394,71,21.5,5,0.0 +11394,77,13,6,0.0 +11394,49,20,31,0.0 +11394,8,40,19,0.0 +11394,60,34,33,0.0 +11394,47,9.5,29,0.0 +11394,29,123.79,47,0.0 +11394,36,19,22,0.0 +11394,50,16.25,1,0.0 +11395,72,34.8,3,0.0 +11395,11,21,21,0.0 +11395,35,18,14,0.0 +11395,1,18,11,0.0 +11395,33,2.5,39,0.0 +11395,51,53,19,0.0 +11395,67,14,39,0.0 +11395,14,23.25,39,0.0 +11395,64,33.25,10,0.0 +11395,38,263.5,48,0.0 +11395,4,22,24,0.0 +11395,27,43.9,35,0.0 +11395,76,18,22,0.0 +11395,45,9.5,43,0.0 +11395,10,31,3,0.0 +11395,58,13.25,25,0.0 +11395,30,25.89,37,0.0 +11395,34,14,30,0.0 +11395,46,12,1,0.0 +11395,73,15,28,0.0 +11395,55,24,47,0.0 +11395,16,17.45,17,0.0 +11395,47,9.5,22,0.0 +11395,74,10,48,0.0 +11395,53,32.8,4,0.0 +11395,65,21.05,29,0.0 +11395,50,16.25,44,0.0 +11395,54,7.45,46,0.0 +11395,77,13,11,0.0 +11395,40,18.4,11,0.0 +11395,49,20,35,0.0 +11395,37,26,20,0.0 +11395,69,36,20,0.0 +11395,70,15,35,0.0 +11395,19,9.2,43,0.0 +11395,32,32,15,0.0 +11395,23,9,41,0.0 +11395,63,43.9,18,0.0 +11395,48,12.75,32,0.0 +11395,43,46,29,0.0 +11395,68,12.5,15,0.0 +11395,42,14,39,0.0 +11395,12,38,16,0.0 +11395,44,19.45,34,0.0 +11395,3,10,18,0.0 +11395,5,21.35,44,0.0 +11395,62,49.3,32,0.0 +11395,31,12.5,7,0.0 +11396,8,40,28,0.0 +11396,44,19.45,19,0.0 +11396,68,12.5,21,0.0 +11396,12,38,8,0.0 +11396,17,39,24,0.0 +11396,61,28.5,19,0.0 +11396,40,18.4,40,0.0 +11396,26,31.23,48,0.0 +11396,56,38,38,0.0 +11396,48,12.75,42,0.0 +11396,4,22,48,0.0 +11396,43,46,3,0.0 +11396,73,15,23,0.0 +11396,36,19,15,0.0 +11396,14,23.25,31,0.0 +11396,3,10,29,0.0 +11396,7,30,2,0.0 +11396,41,9.65,43,0.0 +11396,72,34.8,10,0.0 +11396,58,13.25,4,0.0 +11396,25,14,48,0.0 +11396,50,16.25,29,0.0 +11396,51,53,38,0.0 +11396,49,20,17,0.0 +11396,28,45.6,44,0.0 +11396,9,97,47,0.0 +11396,31,12.5,42,0.0 +11396,71,21.5,50,0.0 +11396,47,9.5,33,0.0 +11396,63,43.9,2,0.0 +11396,53,32.8,44,0.0 +11396,1,18,15,0.0 +11396,6,25,42,0.0 +11396,62,49.3,31,0.0 +11396,24,4.5,5,0.0 +11396,10,31,24,0.0 +11396,38,263.5,25,0.0 +11396,23,9,31,0.0 +11396,64,33.25,43,0.0 +11396,11,21,28,0.0 +11396,69,36,20,0.0 +11396,27,43.9,9,0.0 +11396,37,26,29,0.0 +11396,19,9.2,22,0.0 +11396,70,15,32,0.0 +11396,15,15.5,46,0.0 +11396,46,12,36,0.0 +11396,59,55,36,0.0 +11396,2,19,15,0.0 +11397,46,12,38,0.0 +11397,52,7,32,0.0 +11397,22,21,21,0.0 +11397,29,123.79,11,0.0 +11397,6,25,36,0.0 +11397,39,18,4,0.0 +11397,1,18,37,0.0 +11397,62,49.3,12,0.0 +11397,32,32,41,0.0 +11397,66,17,14,0.0 +11397,16,17.45,41,0.0 +11397,68,12.5,41,0.0 +11397,67,14,28,0.0 +11397,45,9.5,38,0.0 +11397,40,18.4,45,0.0 +11397,61,28.5,49,0.0 +11397,54,7.45,32,0.0 +11397,25,14,27,0.0 +11397,50,16.25,19,0.0 +11397,69,36,28,0.0 +11397,43,46,48,0.0 +11397,34,14,27,0.0 +11397,27,43.9,25,0.0 +11397,55,24,15,0.0 +11397,33,2.5,31,0.0 +11397,44,19.45,26,0.0 +11397,2,19,12,0.0 +11397,3,10,27,0.0 +11397,57,19.5,18,0.0 +11397,17,39,14,0.0 +11397,5,21.35,20,0.0 +11397,10,31,3,0.0 +11397,35,18,19,0.0 +11397,26,31.23,12,0.0 +11397,77,13,49,0.0 +11397,58,13.25,13,0.0 +11397,71,21.5,49,0.0 +11397,59,55,1,0.0 +11397,75,7.75,14,0.0 +11397,4,22,33,0.0 +11397,74,10,20,0.0 +11397,76,18,7,0.0 +11397,42,14,30,0.0 +11397,15,15.5,5,0.0 +11397,21,10,33,0.0 +11397,18,62.5,14,0.0 +11397,51,53,18,0.0 +11397,56,38,30,0.0 +11397,31,12.5,28,0.0 +11397,70,15,39,0.0 +11397,8,40,29,0.0 +11397,28,45.6,49,0.0 +11397,47,9.5,12,0.0 +11397,12,38,6,0.0 +11397,30,25.89,23,0.0 +11397,23,9,39,0.0 +11397,13,6,32,0.0 +11397,53,32.8,45,0.0 +11397,24,4.5,18,0.0 +11397,37,26,10,0.0 +11397,73,15,23,0.0 +11397,36,19,13,0.0 +11397,14,23.25,22,0.0 +11397,60,34,13,0.0 +11397,63,43.9,18,0.0 +11397,72,34.8,7,0.0 +11397,38,263.5,17,0.0 +11397,41,9.65,17,0.0 +11397,48,12.75,24,0.0 +11397,49,20,5,0.0 +11397,64,33.25,39,0.0 +11397,20,81,15,0.0 +11397,65,21.05,50,0.0 +11397,7,30,45,0.0 +11398,11,21,39,0.0 +11398,60,34,32,0.0 +11398,42,14,39,0.0 +11398,7,30,46,0.0 +11398,23,9,20,0.0 +11398,4,22,47,0.0 +11398,72,34.8,24,0.0 +11398,77,13,22,0.0 +11398,40,18.4,43,0.0 +11398,69,36,28,0.0 +11398,62,49.3,44,0.0 +11398,19,9.2,44,0.0 +11398,41,9.65,7,0.0 +11398,24,4.5,20,0.0 +11398,9,97,31,0.0 +11398,34,14,13,0.0 +11398,47,9.5,39,0.0 +11398,71,21.5,15,0.0 +11398,20,81,7,0.0 +11398,33,2.5,22,0.0 +11398,14,23.25,6,0.0 +11398,59,55,37,0.0 +11398,45,9.5,17,0.0 +11398,63,43.9,30,0.0 +11398,49,20,43,0.0 +11398,18,62.5,44,0.0 +11398,5,21.35,9,0.0 +11398,66,17,6,0.0 +11398,13,6,35,0.0 +11398,70,15,20,0.0 +11398,39,18,44,0.0 +11398,46,12,34,0.0 +11398,37,26,12,0.0 +11398,57,19.5,50,0.0 +11398,38,263.5,22,0.0 +11398,50,16.25,49,0.0 +11398,27,43.9,12,0.0 +11398,16,17.45,39,0.0 +11398,3,10,1,0.0 +11398,64,33.25,47,0.0 +11398,56,38,12,0.0 +11398,43,46,35,0.0 +11398,65,21.05,24,0.0 +11398,25,14,21,0.0 +11398,17,39,37,0.0 +11398,30,25.89,42,0.0 +11398,22,21,50,0.0 +11398,26,31.23,16,0.0 +11398,61,28.5,41,0.0 +11398,51,53,15,0.0 +11398,54,7.45,10,0.0 +11398,2,19,20,0.0 +11398,76,18,23,0.0 +11398,73,15,5,0.0 +11398,8,40,14,0.0 +11398,32,32,33,0.0 +11398,74,10,16,0.0 +11398,15,15.5,32,0.0 +11398,10,31,25,0.0 +11398,48,12.75,49,0.0 +11398,1,18,7,0.0 +11398,68,12.5,16,0.0 +11398,28,45.6,41,0.0 +11398,35,18,15,0.0 +11398,29,123.79,31,0.0 +11398,36,19,23,0.0 +11398,55,24,12,0.0 +11398,12,38,19,0.0 +11398,31,12.5,34,0.0 +11398,6,25,30,0.0 +11398,44,19.45,29,0.0 +11398,67,14,43,0.0 +11399,5,21.35,38,0.0 +11399,62,49.3,46,0.0 +11399,57,19.5,44,0.0 +11399,28,45.6,22,0.0 +11399,33,2.5,13,0.0 +11399,75,7.75,37,0.0 +11399,23,9,19,0.0 +11399,39,18,6,0.0 +11399,76,18,37,0.0 +11399,73,15,37,0.0 +11399,38,263.5,13,0.0 +11399,21,10,29,0.0 +11399,26,31.23,6,0.0 +11399,7,30,13,0.0 +11399,63,43.9,1,0.0 +11399,64,33.25,43,0.0 +11399,13,6,38,0.0 +11399,65,21.05,37,0.0 +11399,36,19,8,0.0 +11399,43,46,30,0.0 +11399,61,28.5,30,0.0 +11399,41,9.65,3,0.0 +11399,12,38,7,0.0 +11399,60,34,37,0.0 +11399,55,24,7,0.0 +11399,17,39,43,0.0 +11399,8,40,38,0.0 +11400,61,28.5,29,0.0 +11400,15,15.5,11,0.0 +11400,1,18,18,0.0 +11400,47,9.5,46,0.0 +11400,76,18,36,0.0 +11400,33,2.5,18,0.0 +11400,8,40,15,0.0 +11400,27,43.9,23,0.0 +11400,7,30,14,0.0 +11400,44,19.45,13,0.0 +11400,57,19.5,8,0.0 +11400,40,18.4,21,0.0 +11400,65,21.05,35,0.0 +11400,64,33.25,38,0.0 +11400,70,15,20,0.0 +11400,52,7,1,0.0 +11400,31,12.5,9,0.0 +11400,19,9.2,18,0.0 +11400,77,13,37,0.0 +11400,30,25.89,33,0.0 +11400,34,14,42,0.0 +11400,55,24,43,0.0 +11400,9,97,12,0.0 +11400,71,21.5,40,0.0 +11400,35,18,24,0.0 +11400,67,14,28,0.0 +11400,53,32.8,30,0.0 +11401,47,9.5,23,0.0 +11401,10,31,18,0.0 +11401,7,30,20,0.0 +11401,46,12,36,0.0 +11401,72,34.8,43,0.0 +11401,69,36,48,0.0 +11401,13,6,31,0.0 +11401,32,32,1,0.0 +11401,34,14,23,0.0 +11401,23,9,8,0.0 +11401,8,40,24,0.0 +11401,5,21.35,47,0.0 +11401,41,9.65,26,0.0 +11401,50,16.25,18,0.0 +11401,12,38,4,0.0 +11401,21,10,26,0.0 +11401,39,18,30,0.0 +11401,51,53,41,0.0 +11401,49,20,14,0.0 +11401,19,9.2,33,0.0 +11401,24,4.5,44,0.0 +11401,37,26,19,0.0 +11401,68,12.5,9,0.0 +11401,22,21,32,0.0 +11401,73,15,17,0.0 +11401,55,24,39,0.0 +11401,44,19.45,43,0.0 +11401,71,21.5,22,0.0 +11401,62,49.3,44,0.0 +11401,17,39,20,0.0 +11401,70,15,27,0.0 +11401,6,25,10,0.0 +11401,54,7.45,44,0.0 +11401,59,55,44,0.0 +11401,18,62.5,39,0.0 +11401,53,32.8,10,0.0 +11401,4,22,39,0.0 +11401,45,9.5,47,0.0 +11401,28,45.6,44,0.0 +11401,25,14,43,0.0 +11401,14,23.25,41,0.0 +11401,36,19,12,0.0 +11401,1,18,18,0.0 +11401,2,19,49,0.0 +11401,27,43.9,19,0.0 +11401,65,21.05,5,0.0 +11401,42,14,36,0.0 +11401,43,46,19,0.0 +11401,31,12.5,34,0.0 +11401,57,19.5,34,0.0 +11401,30,25.89,14,0.0 +11401,20,81,12,0.0 +11402,6,25,9,0.0 +11402,46,12,19,0.0 +11402,39,18,19,0.0 +11402,20,81,6,0.0 +11402,4,22,13,0.0 +11402,26,31.23,34,0.0 +11402,58,13.25,1,0.0 +11402,14,23.25,46,0.0 +11402,76,18,11,0.0 +11402,63,43.9,20,0.0 +11402,35,18,37,0.0 +11402,74,10,7,0.0 +11402,72,34.8,38,0.0 +11402,41,9.65,6,0.0 +11402,49,20,19,0.0 +11402,15,15.5,38,0.0 +11402,22,21,19,0.0 +11402,73,15,25,0.0 +11402,9,97,14,0.0 +11402,1,18,36,0.0 +11402,23,9,11,0.0 +11402,18,62.5,3,0.0 +11402,10,31,9,0.0 +11402,56,38,20,0.0 +11402,67,14,7,0.0 +11402,5,21.35,1,0.0 +11402,64,33.25,18,0.0 +11402,13,6,39,0.0 +11402,37,26,18,0.0 +11402,11,21,23,0.0 +11402,8,40,16,0.0 +11402,77,13,47,0.0 +11402,31,12.5,8,0.0 +11402,42,14,32,0.0 +11402,54,7.45,18,0.0 +11402,29,123.79,10,0.0 +11402,70,15,12,0.0 +11402,45,9.5,7,0.0 +11402,50,16.25,34,0.0 +11402,33,2.5,24,0.0 +11402,2,19,27,0.0 +11402,75,7.75,28,0.0 +11402,7,30,46,0.0 +11402,21,10,35,0.0 +11402,36,19,20,0.0 +11403,6,25,8,0.0 +11403,67,14,4,0.0 +11403,29,123.79,22,0.0 +11403,14,23.25,10,0.0 +11403,59,55,37,0.0 +11403,18,62.5,23,0.0 +11403,11,21,43,0.0 +11403,38,263.5,45,0.0 +11403,74,10,30,0.0 +11403,54,7.45,17,0.0 +11403,10,31,2,0.0 +11403,3,10,16,0.0 +11403,9,97,8,0.0 +11403,27,43.9,47,0.0 +11403,42,14,34,0.0 +11403,13,6,47,0.0 +11403,33,2.5,23,0.0 +11403,37,26,8,0.0 +11404,50,16.25,32,0.0 +11404,24,4.5,9,0.0 +11404,15,15.5,6,0.0 +11404,71,21.5,48,0.0 +11404,70,15,34,0.0 +11404,52,7,23,0.0 +11404,4,22,50,0.0 +11404,14,23.25,50,0.0 +11404,25,14,38,0.0 +11404,73,15,10,0.0 +11404,34,14,41,0.0 +11404,20,81,18,0.0 +11404,27,43.9,8,0.0 +11404,55,24,23,0.0 +11404,9,97,29,0.0 +11404,6,25,42,0.0 +11404,37,26,16,0.0 +11404,32,32,7,0.0 +11404,45,9.5,26,0.0 +11404,10,31,27,0.0 +11404,26,31.23,37,0.0 +11404,30,25.89,3,0.0 +11404,33,2.5,33,0.0 +11404,1,18,34,0.0 +11404,42,14,29,0.0 +11404,36,19,47,0.0 +11404,74,10,26,0.0 +11404,17,39,41,0.0 +11404,19,9.2,28,0.0 +11404,31,12.5,11,0.0 +11404,2,19,10,0.0 +11404,12,38,44,0.0 +11404,49,20,36,0.0 +11404,58,13.25,42,0.0 +11404,5,21.35,34,0.0 +11404,18,62.5,44,0.0 +11404,76,18,36,0.0 +11404,60,34,16,0.0 +11404,35,18,21,0.0 +11404,65,21.05,1,0.0 +11404,22,21,38,0.0 +11404,75,7.75,34,0.0 +11404,43,46,44,0.0 +11404,56,38,7,0.0 +11404,13,6,30,0.0 +11404,77,13,21,0.0 +11404,28,45.6,26,0.0 +11404,46,12,43,0.0 +11404,47,9.5,13,0.0 +11404,7,30,28,0.0 +11404,40,18.4,41,0.0 +11404,8,40,17,0.0 +11404,72,34.8,17,0.0 +11404,59,55,44,0.0 +11404,44,19.45,50,0.0 +11404,39,18,40,0.0 +11404,51,53,35,0.0 +11404,23,9,34,0.0 +11404,67,14,49,0.0 +11404,53,32.8,27,0.0 +11404,21,10,41,0.0 +11404,16,17.45,20,0.0 +11404,29,123.79,25,0.0 +11404,11,21,2,0.0 +11404,69,36,14,0.0 +11405,37,26,34,0.0 +11405,45,9.5,47,0.0 +11405,43,46,46,0.0 +11405,28,45.6,33,0.0 +11405,62,49.3,39,0.0 +11405,32,32,14,0.0 +11405,3,10,42,0.0 +11405,48,12.75,32,0.0 +11405,67,14,3,0.0 +11405,35,18,12,0.0 +11405,2,19,2,0.0 +11406,62,49.3,36,0.0 +11406,20,81,26,0.0 +11406,8,40,5,0.0 +11406,11,21,12,0.0 +11406,60,34,29,0.0 +11406,36,19,49,0.0 +11406,75,7.75,7,0.0 +11406,52,7,45,0.0 +11406,67,14,15,0.0 +11406,38,263.5,47,0.0 +11406,72,34.8,35,0.0 +11406,3,10,3,0.0 +11406,65,21.05,35,0.0 +11407,9,97,46,0.0 +11407,23,9,32,0.0 +11407,27,43.9,13,0.0 +11407,57,19.5,23,0.0 +11407,61,28.5,5,0.0 +11407,28,45.6,50,0.0 +11407,3,10,49,0.0 +11407,58,13.25,2,0.0 +11407,41,9.65,15,0.0 +11407,74,10,33,0.0 +11407,33,2.5,24,0.0 +11407,39,18,37,0.0 +11407,47,9.5,46,0.0 +11407,1,18,7,0.0 +11407,49,20,36,0.0 +11407,17,39,29,0.0 +11407,63,43.9,43,0.0 +11407,32,32,29,0.0 +11407,15,15.5,42,0.0 +11407,8,40,14,0.0 +11407,6,25,41,0.0 +11407,64,33.25,26,0.0 +11407,29,123.79,44,0.0 +11407,4,22,48,0.0 +11407,73,15,28,0.0 +11407,55,24,40,0.0 +11408,18,62.5,10,0.0 +11408,27,43.9,48,0.0 +11408,55,24,14,0.0 +11408,72,34.8,42,0.0 +11408,13,6,35,0.0 +11408,45,9.5,46,0.0 +11408,56,38,41,0.0 +11408,49,20,38,0.0 +11408,10,31,42,0.0 +11408,22,21,45,0.0 +11409,77,13,17,0.0 +11409,19,9.2,36,0.0 +11409,16,17.45,36,0.0 +11409,33,2.5,25,0.0 +11409,31,12.5,31,0.0 +11409,48,12.75,23,0.0 +11409,12,38,31,0.0 +11409,10,31,14,0.0 +11409,43,46,41,0.0 +11409,59,55,36,0.0 +11409,34,14,40,0.0 +11409,42,14,14,0.0 +11409,58,13.25,5,0.0 +11409,60,34,1,0.0 +11409,57,19.5,31,0.0 +11409,35,18,21,0.0 +11409,66,17,27,0.0 +11409,76,18,36,0.0 +11409,17,39,17,0.0 +11409,55,24,42,0.0 +11409,51,53,34,0.0 +11409,56,38,46,0.0 +11409,2,19,17,0.0 +11409,32,32,41,0.0 +11409,23,9,22,0.0 +11410,61,28.5,2,0.0 +11410,48,12.75,46,0.0 +11410,47,9.5,14,0.0 +11410,23,9,13,0.0 +11410,1,18,32,0.0 +11410,38,263.5,15,0.0 +11410,64,33.25,16,0.0 +11410,5,21.35,1,0.0 +11410,24,4.5,21,0.0 +11410,20,81,28,0.0 +11411,61,28.5,33,0.0 +11411,77,13,31,0.0 +11411,8,40,35,0.0 +11411,53,32.8,47,0.0 +11411,73,15,11,0.0 +11411,31,12.5,6,0.0 +11411,32,32,43,0.0 +11411,58,13.25,23,0.0 +11411,41,9.65,16,0.0 +11411,69,36,13,0.0 +11411,65,21.05,7,0.0 +11411,36,19,13,0.0 +11411,42,14,35,0.0 +11411,10,31,10,0.0 +11411,76,18,32,0.0 +11411,40,18.4,9,0.0 +11411,67,14,38,0.0 +11411,75,7.75,12,0.0 +11411,49,20,49,0.0 +11411,66,17,9,0.0 +11411,4,22,40,0.0 +11411,70,15,27,0.0 +11411,2,19,30,0.0 +11411,59,55,47,0.0 +11411,50,16.25,20,0.0 +11411,28,45.6,8,0.0 +11411,43,46,46,0.0 +11411,63,43.9,21,0.0 +11411,6,25,22,0.0 +11411,37,26,46,0.0 +11411,33,2.5,40,0.0 +11411,20,81,6,0.0 +11411,7,30,1,0.0 +11411,71,21.5,5,0.0 +11411,23,9,7,0.0 +11411,18,62.5,31,0.0 +11411,38,263.5,22,0.0 +11411,35,18,19,0.0 +11411,25,14,41,0.0 +11411,16,17.45,10,0.0 +11411,54,7.45,37,0.0 +11411,22,21,31,0.0 +11411,72,34.8,33,0.0 +11411,9,97,29,0.0 +11411,17,39,6,0.0 +11411,57,19.5,29,0.0 +11411,56,38,14,0.0 +11411,64,33.25,31,0.0 +11411,26,31.23,28,0.0 +11411,13,6,7,0.0 +11411,21,10,39,0.0 +11411,19,9.2,38,0.0 +11411,29,123.79,42,0.0 +11411,44,19.45,15,0.0 +11411,60,34,33,0.0 +11411,62,49.3,28,0.0 +11411,5,21.35,24,0.0 +11411,52,7,12,0.0 +11411,30,25.89,35,0.0 +11411,46,12,34,0.0 +11411,55,24,2,0.0 +11411,45,9.5,22,0.0 +11411,34,14,15,0.0 +11411,3,10,32,0.0 +11411,1,18,3,0.0 +11411,74,10,34,0.0 +11411,27,43.9,39,0.0 +11411,14,23.25,47,0.0 +11411,15,15.5,30,0.0 +11411,11,21,9,0.0 +11411,68,12.5,22,0.0 +11411,12,38,42,0.0 +11411,39,18,9,0.0 +11411,48,12.75,25,0.0 +11411,47,9.5,20,0.0 +11411,24,4.5,32,0.0 +11411,51,53,10,0.0 +11412,67,14,46,0.0 +11412,62,49.3,45,0.0 +11412,24,4.5,1,0.0 +11412,63,43.9,39,0.0 +11412,66,17,30,0.0 +11412,48,12.75,31,0.0 +11412,18,62.5,29,0.0 +11412,11,21,24,0.0 +11412,53,32.8,34,0.0 +11412,59,55,30,0.0 +11412,56,38,13,0.0 +11412,14,23.25,6,0.0 +11412,12,38,7,0.0 +11412,28,45.6,38,0.0 +11412,33,2.5,21,0.0 +11412,39,18,27,0.0 +11412,45,9.5,29,0.0 +11412,73,15,41,0.0 +11412,21,10,1,0.0 +11412,23,9,20,0.0 +11412,36,19,15,0.0 +11412,42,14,4,0.0 +11412,40,18.4,48,0.0 +11412,60,34,25,0.0 +11412,58,13.25,3,0.0 +11412,5,21.35,33,0.0 +11412,1,18,18,0.0 +11413,21,10,34,0.0 +11413,57,19.5,4,0.0 +11413,55,24,36,0.0 +11413,70,15,11,0.0 +11413,33,2.5,38,0.0 +11413,14,23.25,38,0.0 +11413,29,123.79,22,0.0 +11413,10,31,10,0.0 +11413,27,43.9,45,0.0 +11413,11,21,17,0.0 +11413,48,12.75,37,0.0 +11413,24,4.5,41,0.0 +11413,58,13.25,18,0.0 +11413,60,34,36,0.0 +11413,59,55,27,0.0 +11413,30,25.89,16,0.0 +11413,77,13,28,0.0 +11413,22,21,19,0.0 +11413,13,6,7,0.0 +11413,25,14,50,0.0 +11413,67,14,35,0.0 +11413,56,38,14,0.0 +11413,40,18.4,16,0.0 +11413,65,21.05,14,0.0 +11413,9,97,35,0.0 +11413,73,15,50,0.0 +11413,47,9.5,17,0.0 +11413,44,19.45,21,0.0 +11413,54,7.45,7,0.0 +11413,34,14,37,0.0 +11413,18,62.5,14,0.0 +11413,38,263.5,3,0.0 +11413,37,26,48,0.0 +11413,7,30,39,0.0 +11413,68,12.5,6,0.0 +11413,23,9,35,0.0 +11413,52,7,44,0.0 +11413,3,10,36,0.0 +11413,62,49.3,5,0.0 +11413,36,19,14,0.0 +11413,31,12.5,1,0.0 +11413,61,28.5,36,0.0 +11413,5,21.35,29,0.0 +11413,19,9.2,1,0.0 +11413,39,18,16,0.0 +11414,59,55,28,0.0 +11414,72,34.8,9,0.0 +11414,18,62.5,16,0.0 +11414,1,18,49,0.0 +11414,49,20,37,0.0 +11414,7,30,29,0.0 +11414,19,9.2,18,0.0 +11414,13,6,41,0.0 +11414,63,43.9,46,0.0 +11414,41,9.65,43,0.0 +11414,36,19,48,0.0 +11414,45,9.5,2,0.0 +11414,54,7.45,11,0.0 +11414,15,15.5,27,0.0 +11414,22,21,42,0.0 +11414,35,18,22,0.0 +11414,52,7,25,0.0 +11414,38,263.5,35,0.0 +11414,3,10,4,0.0 +11414,17,39,9,0.0 +11414,62,49.3,45,0.0 +11414,60,34,47,0.0 +11414,12,38,24,0.0 +11414,5,21.35,48,0.0 +11414,8,40,36,0.0 +11414,66,17,31,0.0 +11414,76,18,17,0.0 +11414,71,21.5,19,0.0 +11414,11,21,10,0.0 +11414,28,45.6,48,0.0 +11414,67,14,25,0.0 +11414,75,7.75,45,0.0 +11414,29,123.79,6,0.0 +11414,77,13,24,0.0 +11414,26,31.23,36,0.0 +11415,21,10,43,0.0 +11415,25,14,3,0.0 +11415,18,62.5,14,0.0 +11415,17,39,4,0.0 +11415,27,43.9,46,0.0 +11415,35,18,8,0.0 +11415,29,123.79,41,0.0 +11415,11,21,23,0.0 +11415,15,15.5,48,0.0 +11415,9,97,31,0.0 +11415,1,18,47,0.0 +11415,48,12.75,33,0.0 +11415,50,16.25,13,0.0 +11415,76,18,44,0.0 +11415,45,9.5,3,0.0 +11415,24,4.5,4,0.0 +11415,67,14,27,0.0 +11415,7,30,21,0.0 +11415,74,10,19,0.0 +11415,38,263.5,39,0.0 +11415,53,32.8,24,0.0 +11415,19,9.2,50,0.0 +11415,52,7,23,0.0 +11415,55,24,8,0.0 +11415,68,12.5,4,0.0 +11415,59,55,28,0.0 +11415,20,81,50,0.0 +11415,54,7.45,19,0.0 +11415,16,17.45,28,0.0 +11415,8,40,9,0.0 +11415,60,34,2,0.0 +11415,75,7.75,34,0.0 +11415,70,15,25,0.0 +11415,31,12.5,40,0.0 +11415,49,20,7,0.0 +11415,57,19.5,18,0.0 +11415,28,45.6,11,0.0 +11415,2,19,35,0.0 +11415,46,12,31,0.0 +11416,75,7.75,35,0.0 +11416,11,21,2,0.0 +11416,44,19.45,31,0.0 +11416,40,18.4,35,0.0 +11416,57,19.5,44,0.0 +11416,2,19,20,0.0 +11416,55,24,28,0.0 +11416,43,46,15,0.0 +11416,64,33.25,47,0.0 +11416,74,10,32,0.0 +11416,68,12.5,14,0.0 +11416,7,30,36,0.0 +11416,10,31,45,0.0 +11416,65,21.05,6,0.0 +11416,77,13,48,0.0 +11416,54,7.45,46,0.0 +11417,58,13.25,40,0.0 +11417,5,21.35,16,0.0 +11417,64,33.25,4,0.0 +11417,17,39,27,0.0 +11417,57,19.5,44,0.0 +11417,54,7.45,30,0.0 +11417,65,21.05,43,0.0 +11417,59,55,9,0.0 +11417,34,14,37,0.0 +11417,2,19,9,0.0 +11417,32,32,23,0.0 +11417,13,6,49,0.0 +11417,28,45.6,25,0.0 +11417,18,62.5,26,0.0 +11417,53,32.8,8,0.0 +11417,14,23.25,17,0.0 +11417,77,13,24,0.0 +11417,37,26,3,0.0 +11417,35,18,36,0.0 +11417,12,38,23,0.0 +11417,51,53,36,0.0 +11417,36,19,37,0.0 +11417,24,4.5,39,0.0 +11417,30,25.89,48,0.0 +11417,49,20,21,0.0 +11417,71,21.5,6,0.0 +11417,20,81,25,0.0 +11417,44,19.45,44,0.0 +11417,73,15,16,0.0 +11417,72,34.8,28,0.0 +11417,40,18.4,20,0.0 +11417,38,263.5,12,0.0 +11417,67,14,5,0.0 +11417,11,21,13,0.0 +11417,74,10,20,0.0 +11417,60,34,26,0.0 +11417,62,49.3,29,0.0 +11417,46,12,38,0.0 +11417,52,7,26,0.0 +11417,10,31,39,0.0 +11417,63,43.9,24,0.0 +11417,42,14,4,0.0 +11417,76,18,11,0.0 +11417,68,12.5,26,0.0 +11417,55,24,42,0.0 +11417,3,10,48,0.0 +11417,4,22,25,0.0 +11417,15,15.5,49,0.0 +11417,41,9.65,36,0.0 +11417,27,43.9,4,0.0 +11417,16,17.45,37,0.0 +11417,66,17,36,0.0 +11417,21,10,47,0.0 +11417,26,31.23,39,0.0 +11417,75,7.75,22,0.0 +11417,69,36,23,0.0 +11417,47,9.5,22,0.0 +11417,7,30,50,0.0 +11417,8,40,39,0.0 +11417,45,9.5,42,0.0 +11417,50,16.25,23,0.0 +11417,31,12.5,36,0.0 +11418,64,33.25,36,0.0 +11418,9,97,44,0.0 +11418,22,21,8,0.0 +11418,16,17.45,14,0.0 +11418,76,18,20,0.0 +11418,30,25.89,30,0.0 +11418,59,55,42,0.0 +11418,62,49.3,29,0.0 +11418,8,40,28,0.0 +11418,56,38,16,0.0 +11418,14,23.25,2,0.0 +11418,18,62.5,16,0.0 +11418,1,18,27,0.0 +11418,67,14,23,0.0 +11418,34,14,29,0.0 +11418,42,14,47,0.0 +11418,54,7.45,49,0.0 +11418,31,12.5,20,0.0 +11418,41,9.65,30,0.0 +11418,55,24,49,0.0 +11418,74,10,13,0.0 +11418,20,81,49,0.0 +11418,7,30,44,0.0 +11418,6,25,6,0.0 +11418,69,36,50,0.0 +11418,29,123.79,50,0.0 +11418,21,10,4,0.0 +11418,43,46,41,0.0 +11418,27,43.9,29,0.0 +11418,61,28.5,18,0.0 +11418,4,22,41,0.0 +11418,25,14,20,0.0 +11418,10,31,22,0.0 +11418,50,16.25,16,0.0 +11418,33,2.5,31,0.0 +11418,28,45.6,30,0.0 +11418,45,9.5,3,0.0 +11418,72,34.8,9,0.0 +11418,23,9,37,0.0 +11418,77,13,44,0.0 +11418,37,26,3,0.0 +11418,71,21.5,50,0.0 +11418,52,7,9,0.0 +11418,3,10,4,0.0 +11418,75,7.75,26,0.0 +11418,47,9.5,27,0.0 +11418,26,31.23,25,0.0 +11418,48,12.75,10,0.0 +11418,58,13.25,10,0.0 +11418,68,12.5,28,0.0 +11418,57,19.5,23,0.0 +11418,36,19,24,0.0 +11418,40,18.4,30,0.0 +11418,12,38,37,0.0 +11418,19,9.2,28,0.0 +11418,63,43.9,2,0.0 +11418,13,6,16,0.0 +11418,24,4.5,41,0.0 +11418,49,20,44,0.0 +11418,51,53,33,0.0 +11418,38,263.5,25,0.0 +11418,35,18,4,0.0 +11418,73,15,40,0.0 +11419,57,19.5,17,0.0 +11419,56,38,14,0.0 +11419,4,22,15,0.0 +11419,50,16.25,19,0.0 +11419,59,55,8,0.0 +11419,77,13,24,0.0 +11419,43,46,26,0.0 +11419,31,12.5,38,0.0 +11419,1,18,44,0.0 +11419,73,15,37,0.0 +11419,71,21.5,5,0.0 +11419,53,32.8,34,0.0 +11419,58,13.25,20,0.0 +11419,48,12.75,8,0.0 +11419,12,38,13,0.0 +11419,22,21,50,0.0 +11419,62,49.3,47,0.0 +11419,19,9.2,26,0.0 +11419,55,24,2,0.0 +11419,44,19.45,20,0.0 +11419,37,26,2,0.0 +11419,32,32,31,0.0 +11419,49,20,34,0.0 +11419,14,23.25,44,0.0 +11419,64,33.25,49,0.0 +11419,65,21.05,43,0.0 +11419,7,30,27,0.0 +11419,6,25,25,0.0 +11419,42,14,37,0.0 +11419,52,7,4,0.0 +11419,61,28.5,20,0.0 +11419,8,40,8,0.0 +11419,3,10,35,0.0 +11419,60,34,41,0.0 +11420,26,31.23,5,0.0 +11420,12,38,9,0.0 +11420,68,12.5,34,0.0 +11420,41,9.65,10,0.0 +11420,31,12.5,11,0.0 +11420,49,20,21,0.0 +11420,20,81,2,0.0 +11420,65,21.05,46,0.0 +11420,42,14,19,0.0 +11420,32,32,49,0.0 +11420,53,32.8,3,0.0 +11420,61,28.5,21,0.0 +11420,46,12,40,0.0 +11420,5,21.35,29,0.0 +11420,28,45.6,18,0.0 +11420,66,17,43,0.0 +11420,76,18,4,0.0 +11420,62,49.3,23,0.0 +11420,75,7.75,41,0.0 +11420,9,97,46,0.0 +11420,13,6,25,0.0 +11420,14,23.25,28,0.0 +11420,74,10,7,0.0 +11420,35,18,20,0.0 +11420,71,21.5,28,0.0 +11420,6,25,4,0.0 +11420,64,33.25,21,0.0 +11420,67,14,38,0.0 +11421,57,19.5,2,0.0 +11421,69,36,35,0.0 +11421,23,9,38,0.0 +11421,67,14,27,0.0 +11421,74,10,43,0.0 +11421,21,10,41,0.0 +11421,60,34,36,0.0 +11421,31,12.5,21,0.0 +11421,43,46,35,0.0 +11421,50,16.25,48,0.0 +11421,58,13.25,9,0.0 +11421,6,25,42,0.0 +11421,40,18.4,29,0.0 +11421,54,7.45,15,0.0 +11421,45,9.5,45,0.0 +11421,37,26,46,0.0 +11421,24,4.5,5,0.0 +11421,51,53,16,0.0 +11421,39,18,16,0.0 +11421,48,12.75,5,0.0 +11421,1,18,29,0.0 +11421,35,18,28,0.0 +11421,62,49.3,44,0.0 +11421,29,123.79,23,0.0 +11421,49,20,4,0.0 +11421,9,97,40,0.0 +11421,66,17,22,0.0 +11421,61,28.5,31,0.0 +11421,42,14,46,0.0 +11421,16,17.45,33,0.0 +11421,3,10,8,0.0 +11421,73,15,4,0.0 +11421,2,19,42,0.0 +11421,55,24,41,0.0 +11421,32,32,39,0.0 +11421,63,43.9,2,0.0 +11421,53,32.8,2,0.0 +11421,44,19.45,4,0.0 +11421,19,9.2,43,0.0 +11421,7,30,17,0.0 +11421,52,7,43,0.0 +11421,64,33.25,17,0.0 +11421,47,9.5,39,0.0 +11421,70,15,26,0.0 +11421,15,15.5,17,0.0 +11421,18,62.5,35,0.0 +11421,4,22,46,0.0 +11421,12,38,25,0.0 +11421,8,40,30,0.0 +11421,56,38,27,0.0 +11421,71,21.5,21,0.0 +11421,20,81,38,0.0 +11421,13,6,8,0.0 +11421,36,19,32,0.0 +11422,16,17.45,31,0.0 +11422,27,43.9,47,0.0 +11422,35,18,49,0.0 +11422,52,7,45,0.0 +11422,56,38,11,0.0 +11422,14,23.25,39,0.0 +11422,50,16.25,16,0.0 +11422,12,38,36,0.0 +11422,57,19.5,19,0.0 +11422,2,19,8,0.0 +11422,48,12.75,46,0.0 +11422,74,10,39,0.0 +11422,6,25,25,0.0 +11422,44,19.45,30,0.0 +11422,22,21,13,0.0 +11422,24,4.5,11,0.0 +11422,41,9.65,34,0.0 +11422,30,25.89,10,0.0 +11422,75,7.75,4,0.0 +11422,61,28.5,14,0.0 +11422,4,22,1,0.0 +11422,1,18,33,0.0 +11422,49,20,44,0.0 +11422,28,45.6,38,0.0 +11422,15,15.5,31,0.0 +11422,26,31.23,35,0.0 +11422,40,18.4,35,0.0 +11422,18,62.5,13,0.0 +11422,11,21,2,0.0 +11422,47,9.5,26,0.0 +11422,66,17,14,0.0 +11422,34,14,42,0.0 +11422,9,97,44,0.0 +11422,38,263.5,34,0.0 +11422,59,55,6,0.0 +11422,7,30,36,0.0 +11422,31,12.5,37,0.0 +11422,73,15,19,0.0 +11422,67,14,27,0.0 +11422,21,10,38,0.0 +11423,41,9.65,27,0.0 +11423,46,12,34,0.0 +11423,9,97,13,0.0 +11423,49,20,19,0.0 +11423,14,23.25,13,0.0 +11423,40,18.4,44,0.0 +11423,64,33.25,26,0.0 +11423,63,43.9,32,0.0 +11423,39,18,30,0.0 +11423,57,19.5,42,0.0 +11423,59,55,10,0.0 +11423,62,49.3,29,0.0 +11423,15,15.5,40,0.0 +11423,61,28.5,6,0.0 +11423,70,15,26,0.0 +11423,30,25.89,8,0.0 +11423,47,9.5,35,0.0 +11423,22,21,22,0.0 +11423,55,24,43,0.0 +11423,26,31.23,49,0.0 +11423,21,10,15,0.0 +11424,35,18,8,0.0 +11424,62,49.3,22,0.0 +11424,31,12.5,46,0.0 +11424,64,33.25,42,0.0 +11424,58,13.25,43,0.0 +11424,11,21,24,0.0 +11424,75,7.75,8,0.0 +11424,53,32.8,7,0.0 +11424,21,10,38,0.0 +11424,3,10,8,0.0 +11424,71,21.5,27,0.0 +11424,48,12.75,33,0.0 +11424,32,32,19,0.0 +11424,57,19.5,45,0.0 +11424,18,62.5,2,0.0 +11424,2,19,33,0.0 +11424,46,12,44,0.0 +11424,33,2.5,22,0.0 +11424,60,34,36,0.0 +11424,38,263.5,38,0.0 +11424,74,10,23,0.0 +11424,59,55,22,0.0 +11424,24,4.5,29,0.0 +11424,15,15.5,3,0.0 +11424,28,45.6,8,0.0 +11424,43,46,21,0.0 +11424,25,14,35,0.0 +11424,72,34.8,2,0.0 +11424,55,24,12,0.0 +11425,30,25.89,49,0.0 +11425,75,7.75,12,0.0 +11425,42,14,5,0.0 +11425,4,22,17,0.0 +11425,41,9.65,10,0.0 +11425,48,12.75,22,0.0 +11425,8,40,25,0.0 +11425,63,43.9,17,0.0 +11425,29,123.79,16,0.0 +11425,19,9.2,22,0.0 +11425,14,23.25,48,0.0 +11425,18,62.5,1,0.0 +11425,47,9.5,47,0.0 +11425,64,33.25,5,0.0 +11425,53,32.8,45,0.0 +11425,31,12.5,37,0.0 +11425,21,10,9,0.0 +11425,13,6,43,0.0 +11425,58,13.25,46,0.0 +11425,25,14,47,0.0 +11425,44,19.45,50,0.0 +11425,12,38,29,0.0 +11425,27,43.9,36,0.0 +11425,9,97,30,0.0 +11425,72,34.8,21,0.0 +11425,36,19,18,0.0 +11425,59,55,14,0.0 +11425,2,19,25,0.0 +11425,35,18,7,0.0 +11425,57,19.5,25,0.0 +11425,22,21,28,0.0 +11425,65,21.05,49,0.0 +11425,77,13,30,0.0 +11425,71,21.5,9,0.0 +11425,55,24,31,0.0 +11425,67,14,15,0.0 +11425,46,12,34,0.0 +11425,11,21,5,0.0 +11425,38,263.5,47,0.0 +11425,68,12.5,7,0.0 +11425,34,14,6,0.0 +11425,52,7,5,0.0 +11425,10,31,1,0.0 +11425,56,38,7,0.0 +11425,3,10,20,0.0 +11425,6,25,42,0.0 +11425,45,9.5,33,0.0 +11425,26,31.23,31,0.0 +11425,43,46,22,0.0 +11425,5,21.35,27,0.0 +11425,76,18,36,0.0 +11425,37,26,26,0.0 +11425,28,45.6,22,0.0 +11425,62,49.3,7,0.0 +11425,33,2.5,44,0.0 +11425,24,4.5,28,0.0 +11425,66,17,1,0.0 +11425,7,30,7,0.0 +11425,50,16.25,36,0.0 +11425,54,7.45,25,0.0 +11425,39,18,24,0.0 +11425,1,18,4,0.0 +11425,23,9,27,0.0 +11425,20,81,40,0.0 +11425,69,36,25,0.0 +11425,15,15.5,5,0.0 +11425,74,10,16,0.0 +11425,40,18.4,46,0.0 +11426,41,9.65,44,0.0 +11426,1,18,42,0.0 +11426,12,38,38,0.0 +11426,57,19.5,27,0.0 +11426,55,24,22,0.0 +11426,64,33.25,27,0.0 +11426,58,13.25,48,0.0 +11426,76,18,39,0.0 +11426,43,46,10,0.0 +11426,37,26,39,0.0 +11426,63,43.9,20,0.0 +11426,8,40,32,0.0 +11426,42,14,17,0.0 +11426,60,34,27,0.0 +11426,50,16.25,19,0.0 +11426,65,21.05,44,0.0 +11426,74,10,35,0.0 +11426,59,55,49,0.0 +11426,3,10,8,0.0 +11426,62,49.3,4,0.0 +11426,71,21.5,35,0.0 +11426,13,6,11,0.0 +11426,29,123.79,8,0.0 +11426,2,19,37,0.0 +11426,68,12.5,31,0.0 +11426,39,18,16,0.0 +11426,25,14,41,0.0 +11426,52,7,8,0.0 +11426,4,22,19,0.0 +11426,51,53,26,0.0 +11426,48,12.75,37,0.0 +11426,22,21,30,0.0 +11426,75,7.75,22,0.0 +11426,36,19,39,0.0 +11426,47,9.5,25,0.0 +11426,73,15,19,0.0 +11426,69,36,47,0.0 +11426,23,9,14,0.0 +11426,15,15.5,25,0.0 +11426,19,9.2,20,0.0 +11426,10,31,7,0.0 +11426,72,34.8,17,0.0 +11426,16,17.45,30,0.0 +11426,77,13,2,0.0 +11426,33,2.5,20,0.0 +11426,21,10,29,0.0 +11426,9,97,48,0.0 +11426,44,19.45,31,0.0 +11426,54,7.45,14,0.0 +11426,70,15,24,0.0 +11426,20,81,22,0.0 +11426,27,43.9,11,0.0 +11426,38,263.5,50,0.0 +11426,28,45.6,27,0.0 +11426,30,25.89,24,0.0 +11426,67,14,48,0.0 +11426,61,28.5,31,0.0 +11426,17,39,45,0.0 +11426,14,23.25,5,0.0 +11426,5,21.35,16,0.0 +11426,24,4.5,36,0.0 +11426,56,38,7,0.0 +11426,34,14,29,0.0 +11426,32,32,15,0.0 +11426,18,62.5,1,0.0 +11426,26,31.23,7,0.0 +11426,45,9.5,29,0.0 +11426,49,20,29,0.0 +11426,7,30,41,0.0 +11427,16,17.45,32,0.0 +11427,71,21.5,37,0.0 +11427,46,12,30,0.0 +11427,12,38,48,0.0 +11427,30,25.89,41,0.0 +11427,38,263.5,2,0.0 +11427,49,20,29,0.0 +11427,32,32,18,0.0 +11427,41,9.65,1,0.0 +11427,54,7.45,20,0.0 +11427,72,34.8,8,0.0 +11427,62,49.3,49,0.0 +11427,26,31.23,19,0.0 +11427,73,15,21,0.0 +11427,63,43.9,34,0.0 +11427,1,18,47,0.0 +11427,59,55,4,0.0 +11427,61,28.5,32,0.0 +11427,39,18,18,0.0 +11427,14,23.25,9,0.0 +11427,42,14,22,0.0 +11427,17,39,33,0.0 +11427,5,21.35,50,0.0 +11427,77,13,40,0.0 +11427,31,12.5,21,0.0 +11427,37,26,6,0.0 +11427,66,17,7,0.0 +11427,52,7,20,0.0 +11427,21,10,18,0.0 +11427,35,18,20,0.0 +11427,3,10,43,0.0 +11427,22,21,26,0.0 +11427,76,18,30,0.0 +11427,4,22,36,0.0 +11427,65,21.05,41,0.0 +11427,70,15,39,0.0 +11427,10,31,41,0.0 +11427,28,45.6,24,0.0 +11427,7,30,36,0.0 +11427,45,9.5,45,0.0 +11427,34,14,20,0.0 +11427,44,19.45,47,0.0 +11427,43,46,29,0.0 +11427,64,33.25,34,0.0 +11427,20,81,39,0.0 +11427,60,34,35,0.0 +11427,68,12.5,20,0.0 +11427,53,32.8,15,0.0 +11427,27,43.9,41,0.0 +11427,74,10,1,0.0 +11427,75,7.75,11,0.0 +11427,9,97,25,0.0 +11427,69,36,44,0.0 +11427,50,16.25,50,0.0 +11427,19,9.2,20,0.0 +11427,51,53,8,0.0 +11427,57,19.5,13,0.0 +11427,48,12.75,30,0.0 +11427,58,13.25,31,0.0 +11427,36,19,17,0.0 +11427,2,19,11,0.0 +11427,55,24,19,0.0 +11427,40,18.4,35,0.0 +11427,67,14,40,0.0 +11427,24,4.5,3,0.0 +11427,18,62.5,49,0.0 +11427,11,21,39,0.0 +11427,8,40,41,0.0 +11427,25,14,13,0.0 +11427,6,25,41,0.0 +11427,13,6,38,0.0 +11428,61,28.5,34,0.0 +11428,32,32,22,0.0 +11428,25,14,29,0.0 +11428,41,9.65,49,0.0 +11428,6,25,13,0.0 +11428,1,18,24,0.0 +11428,55,24,31,0.0 +11428,22,21,38,0.0 +11428,76,18,31,0.0 +11428,59,55,33,0.0 +11428,58,13.25,15,0.0 +11428,9,97,49,0.0 +11428,17,39,11,0.0 +11428,14,23.25,35,0.0 +11428,63,43.9,21,0.0 +11428,20,81,20,0.0 +11428,42,14,44,0.0 +11428,2,19,21,0.0 +11428,34,14,22,0.0 +11428,52,7,24,0.0 +11428,12,38,29,0.0 +11428,65,21.05,24,0.0 +11428,33,2.5,19,0.0 +11428,44,19.45,41,0.0 +11428,11,21,18,0.0 +11428,38,263.5,2,0.0 +11428,57,19.5,11,0.0 +11428,26,31.23,10,0.0 +11428,49,20,29,0.0 +11428,73,15,15,0.0 +11428,29,123.79,38,0.0 +11428,3,10,20,0.0 +11428,69,36,25,0.0 +11428,46,12,9,0.0 +11428,15,15.5,3,0.0 +11428,45,9.5,34,0.0 +11428,23,9,6,0.0 +11428,47,9.5,22,0.0 +11428,70,15,13,0.0 +11428,77,13,27,0.0 +11428,8,40,43,0.0 +11428,71,21.5,24,0.0 +11428,56,38,10,0.0 +11428,54,7.45,47,0.0 +11428,67,14,28,0.0 +11428,43,46,35,0.0 +11428,74,10,21,0.0 +11428,21,10,36,0.0 +11428,37,26,29,0.0 +11428,18,62.5,33,0.0 +11428,40,18.4,22,0.0 +11428,30,25.89,31,0.0 +11428,64,33.25,8,0.0 +11428,16,17.45,3,0.0 +11428,60,34,43,0.0 +11428,72,34.8,30,0.0 +11428,28,45.6,22,0.0 +11428,68,12.5,9,0.0 +11428,13,6,30,0.0 +11429,30,25.89,23,0.0 +11429,8,40,26,0.0 +11429,76,18,44,0.0 +11429,33,2.5,41,0.0 +11429,60,34,2,0.0 +11429,1,18,14,0.0 +11429,57,19.5,34,0.0 +11429,29,123.79,8,0.0 +11429,55,24,35,0.0 +11429,42,14,36,0.0 +11429,12,38,31,0.0 +11429,71,21.5,1,0.0 +11429,37,26,19,0.0 +11429,4,22,10,0.0 +11429,56,38,18,0.0 +11429,10,31,24,0.0 +11429,65,21.05,17,0.0 +11429,46,12,10,0.0 +11429,20,81,26,0.0 +11429,74,10,49,0.0 +11429,63,43.9,42,0.0 +11430,3,10,11,0.0 +11430,45,9.5,1,0.0 +11430,58,13.25,23,0.0 +11430,70,15,29,0.0 +11430,36,19,30,0.0 +11430,55,24,10,0.0 +11430,37,26,9,0.0 +11430,76,18,24,0.0 +11430,24,4.5,22,0.0 +11430,40,18.4,16,0.0 +11430,30,25.89,16,0.0 +11430,31,12.5,41,0.0 +11430,65,21.05,16,0.0 +11430,52,7,6,0.0 +11430,44,19.45,7,0.0 +11430,16,17.45,19,0.0 +11430,26,31.23,43,0.0 +11430,53,32.8,4,0.0 +11430,4,22,19,0.0 +11430,12,38,40,0.0 +11430,49,20,21,0.0 +11430,47,9.5,25,0.0 +11430,6,25,37,0.0 +11430,29,123.79,14,0.0 +11430,28,45.6,41,0.0 +11430,69,36,26,0.0 +11430,64,33.25,30,0.0 +11430,23,9,23,0.0 +11430,7,30,12,0.0 +11430,11,21,34,0.0 +11430,20,81,32,0.0 +11430,57,19.5,43,0.0 +11430,13,6,26,0.0 +11430,60,34,16,0.0 +11430,71,21.5,30,0.0 +11430,42,14,46,0.0 +11430,39,18,13,0.0 +11430,46,12,10,0.0 +11430,50,16.25,12,0.0 +11430,59,55,43,0.0 +11430,27,43.9,49,0.0 +11430,22,21,4,0.0 +11430,18,62.5,45,0.0 +11430,5,21.35,23,0.0 +11430,14,23.25,18,0.0 +11430,66,17,30,0.0 +11430,61,28.5,3,0.0 +11430,54,7.45,3,0.0 +11430,10,31,18,0.0 +11430,63,43.9,22,0.0 +11430,33,2.5,16,0.0 +11430,56,38,33,0.0 +11430,51,53,45,0.0 +11430,15,15.5,12,0.0 +11430,34,14,16,0.0 +11430,8,40,24,0.0 +11430,77,13,37,0.0 +11430,2,19,46,0.0 +11430,74,10,48,0.0 +11430,32,32,27,0.0 +11430,1,18,50,0.0 +11430,38,263.5,36,0.0 +11430,67,14,28,0.0 +11430,25,14,31,0.0 +11430,62,49.3,1,0.0 +11430,19,9.2,8,0.0 +11431,61,28.5,44,0.0 +11431,41,9.65,5,0.0 +11431,62,49.3,50,0.0 +11432,42,14,20,0.0 +11432,70,15,30,0.0 +11432,29,123.79,17,0.0 +11432,56,38,11,0.0 +11432,5,21.35,39,0.0 +11432,24,4.5,46,0.0 +11432,10,31,47,0.0 +11432,28,45.6,8,0.0 +11432,17,39,4,0.0 +11432,12,38,20,0.0 +11432,38,263.5,15,0.0 +11432,54,7.45,28,0.0 +11432,26,31.23,1,0.0 +11432,74,10,30,0.0 +11432,46,12,32,0.0 +11432,39,18,21,0.0 +11432,21,10,6,0.0 +11432,47,9.5,15,0.0 +11432,37,26,11,0.0 +11432,36,19,47,0.0 +11432,76,18,31,0.0 +11432,72,34.8,41,0.0 +11432,11,21,44,0.0 +11432,41,9.65,42,0.0 +11432,23,9,50,0.0 +11432,75,7.75,22,0.0 +11432,27,43.9,48,0.0 +11432,13,6,21,0.0 +11432,53,32.8,1,0.0 +11432,3,10,2,0.0 +11432,44,19.45,34,0.0 +11432,30,25.89,15,0.0 +11432,35,18,7,0.0 +11432,33,2.5,2,0.0 +11432,40,18.4,4,0.0 +11432,65,21.05,30,0.0 +11432,9,97,29,0.0 +11432,6,25,11,0.0 +11432,34,14,2,0.0 +11432,31,12.5,16,0.0 +11432,58,13.25,42,0.0 +11432,19,9.2,39,0.0 +11432,61,28.5,31,0.0 +11432,2,19,15,0.0 +11432,67,14,8,0.0 +11432,73,15,24,0.0 +11432,63,43.9,11,0.0 +11432,48,12.75,40,0.0 +11432,57,19.5,38,0.0 +11432,1,18,1,0.0 +11432,77,13,43,0.0 +11432,66,17,2,0.0 +11432,69,36,33,0.0 +11432,14,23.25,34,0.0 +11432,55,24,24,0.0 +11432,45,9.5,28,0.0 +11432,22,21,10,0.0 +11432,51,53,15,0.0 +11432,49,20,42,0.0 +11432,32,32,2,0.0 +11432,7,30,30,0.0 +11432,50,16.25,39,0.0 +11432,71,21.5,38,0.0 +11432,16,17.45,2,0.0 +11432,8,40,41,0.0 +11432,60,34,23,0.0 +11432,4,22,21,0.0 +11432,64,33.25,23,0.0 +11432,25,14,24,0.0 +11432,43,46,45,0.0 +11432,68,12.5,4,0.0 +11432,18,62.5,15,0.0 +11432,62,49.3,31,0.0 +11433,2,19,31,0.0 +11433,45,9.5,2,0.0 +11433,73,15,10,0.0 +11433,66,17,10,0.0 +11433,18,62.5,23,0.0 +11433,71,21.5,14,0.0 +11433,20,81,15,0.0 +11433,38,263.5,31,0.0 +11433,59,55,19,0.0 +11433,23,9,21,0.0 +11433,40,18.4,7,0.0 +11433,37,26,26,0.0 +11433,3,10,1,0.0 +11433,67,14,46,0.0 +11433,13,6,19,0.0 +11433,54,7.45,39,0.0 +11433,25,14,38,0.0 +11433,56,38,20,0.0 +11433,15,15.5,40,0.0 +11433,8,40,49,0.0 +11433,7,30,33,0.0 +11433,58,13.25,44,0.0 +11433,21,10,42,0.0 +11433,65,21.05,15,0.0 +11433,17,39,36,0.0 +11433,28,45.6,48,0.0 +11433,68,12.5,4,0.0 +11433,61,28.5,44,0.0 +11433,53,32.8,1,0.0 +11433,41,9.65,39,0.0 +11433,36,19,7,0.0 +11433,55,24,19,0.0 +11433,35,18,12,0.0 +11433,22,21,37,0.0 +11433,50,16.25,15,0.0 +11433,30,25.89,8,0.0 +11433,64,33.25,44,0.0 +11433,11,21,6,0.0 +11433,62,49.3,29,0.0 +11433,29,123.79,43,0.0 +11433,19,9.2,41,0.0 +11434,48,12.75,3,0.0 +11434,51,53,49,0.0 +11434,19,9.2,49,0.0 +11434,4,22,10,0.0 +11434,11,21,37,0.0 +11434,60,34,3,0.0 +11434,31,12.5,10,0.0 +11434,18,62.5,2,0.0 +11434,23,9,13,0.0 +11434,10,31,9,0.0 +11434,14,23.25,35,0.0 +11434,17,39,22,0.0 +11434,33,2.5,36,0.0 +11434,27,43.9,7,0.0 +11434,8,40,31,0.0 +11434,21,10,17,0.0 +11434,66,17,30,0.0 +11434,59,55,20,0.0 +11434,16,17.45,12,0.0 +11434,3,10,36,0.0 +11434,20,81,32,0.0 +11434,74,10,17,0.0 +11434,2,19,6,0.0 +11434,42,14,38,0.0 +11434,5,21.35,29,0.0 +11434,25,14,3,0.0 +11434,53,32.8,46,0.0 +11434,30,25.89,48,0.0 +11434,35,18,9,0.0 +11434,73,15,48,0.0 +11434,26,31.23,19,0.0 +11434,15,15.5,43,0.0 +11434,68,12.5,50,0.0 +11434,24,4.5,24,0.0 +11434,7,30,19,0.0 +11434,70,15,35,0.0 +11434,67,14,9,0.0 +11434,44,19.45,36,0.0 +11434,13,6,15,0.0 +11434,62,49.3,4,0.0 +11434,39,18,10,0.0 +11434,52,7,10,0.0 +11434,9,97,20,0.0 +11434,77,13,13,0.0 +11434,45,9.5,50,0.0 +11434,75,7.75,38,0.0 +11434,49,20,49,0.0 +11434,46,12,39,0.0 +11434,63,43.9,42,0.0 +11434,61,28.5,31,0.0 +11434,37,26,14,0.0 +11434,72,34.8,15,0.0 +11434,64,33.25,16,0.0 +11434,22,21,10,0.0 +11434,58,13.25,11,0.0 +11434,36,19,26,0.0 +11434,32,32,20,0.0 +11434,50,16.25,46,0.0 +11434,71,21.5,44,0.0 +11434,40,18.4,37,0.0 +11434,55,24,1,0.0 +11434,41,9.65,22,0.0 +11434,47,9.5,46,0.0 +11434,29,123.79,16,0.0 +11434,6,25,22,0.0 +11435,2,19,39,0.0 +11435,75,7.75,12,0.0 +11435,3,10,35,0.0 +11435,31,12.5,30,0.0 +11435,48,12.75,34,0.0 +11435,14,23.25,14,0.0 +11435,23,9,29,0.0 +11435,25,14,24,0.0 +11435,55,24,27,0.0 +11435,45,9.5,7,0.0 +11435,72,34.8,23,0.0 +11435,49,20,2,0.0 +11435,38,263.5,26,0.0 +11435,73,15,20,0.0 +11435,60,34,7,0.0 +11435,69,36,27,0.0 +11435,13,6,40,0.0 +11435,63,43.9,29,0.0 +11435,37,26,38,0.0 +11435,5,21.35,6,0.0 +11435,24,4.5,38,0.0 +11435,19,9.2,11,0.0 +11435,64,33.25,46,0.0 +11435,35,18,32,0.0 +11435,11,21,24,0.0 +11435,12,38,5,0.0 +11435,50,16.25,4,0.0 +11435,30,25.89,8,0.0 +11435,41,9.65,46,0.0 +11435,20,81,42,0.0 +11435,40,18.4,35,0.0 +11435,67,14,18,0.0 +11435,32,32,40,0.0 +11435,18,62.5,36,0.0 +11435,7,30,31,0.0 +11435,51,53,45,0.0 +11435,71,21.5,37,0.0 +11435,57,19.5,13,0.0 +11435,58,13.25,48,0.0 +11435,65,21.05,48,0.0 +11435,16,17.45,41,0.0 +11435,1,18,36,0.0 +11435,70,15,18,0.0 +11435,52,7,16,0.0 +11435,53,32.8,42,0.0 +11435,44,19.45,15,0.0 +11435,61,28.5,22,0.0 +11435,74,10,14,0.0 +11435,17,39,5,0.0 +11435,68,12.5,25,0.0 +11435,26,31.23,31,0.0 +11435,33,2.5,3,0.0 +11435,9,97,19,0.0 +11435,34,14,44,0.0 +11435,46,12,35,0.0 +11435,6,25,2,0.0 +11435,4,22,37,0.0 +11435,76,18,16,0.0 +11435,77,13,7,0.0 +11435,42,14,3,0.0 +11435,22,21,22,0.0 +11436,31,12.5,46,0.0 +11436,48,12.75,37,0.0 +11436,77,13,24,0.0 +11436,76,18,25,0.0 +11436,73,15,39,0.0 +11436,41,9.65,41,0.0 +11436,72,34.8,2,0.0 +11436,56,38,43,0.0 +11436,45,9.5,45,0.0 +11436,65,21.05,16,0.0 +11436,18,62.5,22,0.0 +11436,71,21.5,26,0.0 +11436,39,18,30,0.0 +11436,30,25.89,8,0.0 +11436,35,18,37,0.0 +11436,19,9.2,4,0.0 +11436,68,12.5,26,0.0 +11436,59,55,43,0.0 +11436,15,15.5,29,0.0 +11436,2,19,20,0.0 +11436,66,17,8,0.0 +11436,75,7.75,49,0.0 +11436,46,12,6,0.0 +11436,60,34,33,0.0 +11436,29,123.79,16,0.0 +11436,57,19.5,1,0.0 +11436,38,263.5,49,0.0 +11436,25,14,33,0.0 +11436,21,10,39,0.0 +11436,67,14,40,0.0 +11436,6,25,30,0.0 +11436,10,31,22,0.0 +11436,36,19,42,0.0 +11436,9,97,14,0.0 +11436,54,7.45,15,0.0 +11436,14,23.25,34,0.0 +11436,8,40,14,0.0 +11436,58,13.25,41,0.0 +11436,16,17.45,46,0.0 +11436,24,4.5,17,0.0 +11436,62,49.3,45,0.0 +11436,37,26,7,0.0 +11436,70,15,11,0.0 +11436,42,14,12,0.0 +11436,33,2.5,19,0.0 +11436,5,21.35,50,0.0 +11436,17,39,6,0.0 +11436,52,7,23,0.0 +11436,64,33.25,2,0.0 +11436,69,36,5,0.0 +11436,28,45.6,9,0.0 +11436,40,18.4,1,0.0 +11436,12,38,49,0.0 +11436,34,14,4,0.0 +11436,74,10,34,0.0 +11436,47,9.5,49,0.0 +11436,1,18,49,0.0 +11436,63,43.9,16,0.0 +11436,61,28.5,36,0.0 +11436,32,32,15,0.0 +11436,53,32.8,6,0.0 +11436,44,19.45,9,0.0 +11436,20,81,31,0.0 +11436,22,21,19,0.0 +11436,23,9,18,0.0 +11436,43,46,12,0.0 +11436,50,16.25,10,0.0 +11436,27,43.9,41,0.0 +11436,4,22,16,0.0 +11436,13,6,37,0.0 +11436,11,21,10,0.0 +11436,49,20,26,0.0 +11436,26,31.23,18,0.0 +11436,51,53,30,0.0 +11436,7,30,43,0.0 +11437,12,38,2,0.0 +11437,43,46,31,0.0 +11437,14,23.25,19,0.0 +11437,25,14,2,0.0 +11437,31,12.5,2,0.0 +11437,48,12.75,2,0.0 +11437,37,26,34,0.0 +11437,75,7.75,43,0.0 +11437,20,81,41,0.0 +11437,72,34.8,29,0.0 +11437,29,123.79,7,0.0 +11437,3,10,49,0.0 +11437,55,24,50,0.0 +11437,26,31.23,26,0.0 +11437,69,36,8,0.0 +11437,52,7,40,0.0 +11437,24,4.5,10,0.0 +11437,60,34,16,0.0 +11437,47,9.5,6,0.0 +11437,53,32.8,18,0.0 +11437,22,21,18,0.0 +11437,70,15,33,0.0 +11437,8,40,11,0.0 +11437,57,19.5,44,0.0 +11437,45,9.5,5,0.0 +11437,6,25,46,0.0 +11437,64,33.25,11,0.0 +11437,62,49.3,5,0.0 +11437,65,21.05,18,0.0 +11437,63,43.9,43,0.0 +11437,7,30,45,0.0 +11437,61,28.5,49,0.0 +11437,10,31,36,0.0 +11437,46,12,11,0.0 +11437,68,12.5,33,0.0 +11437,27,43.9,16,0.0 +11437,11,21,19,0.0 +11437,35,18,14,0.0 +11437,21,10,47,0.0 +11437,71,21.5,14,0.0 +11437,38,263.5,17,0.0 +11437,39,18,23,0.0 +11437,56,38,24,0.0 +11437,4,22,38,0.0 +11437,1,18,15,0.0 +11437,58,13.25,40,0.0 +11437,30,25.89,39,0.0 +11437,33,2.5,44,0.0 +11437,77,13,46,0.0 +11437,19,9.2,34,0.0 +11437,9,97,12,0.0 +11437,67,14,17,0.0 +11437,16,17.45,34,0.0 +11437,44,19.45,3,0.0 +11437,59,55,47,0.0 +11437,51,53,27,0.0 +11437,76,18,11,0.0 +11437,28,45.6,2,0.0 +11437,74,10,42,0.0 +11437,34,14,21,0.0 +11437,36,19,14,0.0 +11437,66,17,24,0.0 +11437,13,6,37,0.0 +11437,5,21.35,14,0.0 +11437,23,9,10,0.0 +11437,42,14,11,0.0 +11437,2,19,14,0.0 +11437,41,9.65,39,0.0 +11437,18,62.5,46,0.0 +11437,49,20,50,0.0 +11437,17,39,42,0.0 +11437,32,32,7,0.0 +11437,73,15,42,0.0 +11438,15,15.5,40,0.0 +11438,72,34.8,2,0.0 +11438,2,19,18,0.0 +11438,68,12.5,43,0.0 +11438,46,12,20,0.0 +11438,51,53,1,0.0 +11438,7,30,4,0.0 +11438,4,22,50,0.0 +11438,31,12.5,36,0.0 +11438,35,18,33,0.0 +11438,56,38,39,0.0 +11438,14,23.25,40,0.0 +11438,16,17.45,8,0.0 +11438,44,19.45,47,0.0 +11438,24,4.5,25,0.0 +11438,41,9.65,2,0.0 +11438,9,97,3,0.0 +11438,59,55,13,0.0 +11438,6,25,27,0.0 +11438,22,21,38,0.0 +11438,8,40,32,0.0 +11438,38,263.5,22,0.0 +11439,50,16.25,50,0.0 +11439,17,39,38,0.0 +11439,30,25.89,30,0.0 +11439,68,12.5,43,0.0 +11439,46,12,45,0.0 +11439,29,123.79,32,0.0 +11439,42,14,23,0.0 +11439,19,9.2,43,0.0 +11439,36,19,10,0.0 +11439,38,263.5,41,0.0 +11439,70,15,47,0.0 +11439,69,36,35,0.0 +11439,51,53,20,0.0 +11439,77,13,4,0.0 +11439,61,28.5,9,0.0 +11439,75,7.75,6,0.0 +11439,65,21.05,28,0.0 +11439,20,81,43,0.0 +11439,37,26,45,0.0 +11439,7,30,39,0.0 +11439,9,97,10,0.0 +11439,64,33.25,48,0.0 +11439,62,49.3,38,0.0 +11439,66,17,14,0.0 +11439,48,12.75,16,0.0 +11439,4,22,9,0.0 +11439,54,7.45,1,0.0 +11439,47,9.5,48,0.0 +11439,52,7,41,0.0 +11439,26,31.23,27,0.0 +11439,73,15,26,0.0 +11439,67,14,42,0.0 +11439,57,19.5,10,0.0 +11439,55,24,38,0.0 +11439,72,34.8,16,0.0 +11439,16,17.45,20,0.0 +11439,2,19,41,0.0 +11439,28,45.6,8,0.0 +11439,13,6,6,0.0 +11439,74,10,6,0.0 +11439,32,32,30,0.0 +11439,63,43.9,23,0.0 +11439,8,40,50,0.0 +11439,53,32.8,10,0.0 +11439,45,9.5,5,0.0 +11439,39,18,30,0.0 +11439,18,62.5,43,0.0 +11439,33,2.5,23,0.0 +11439,59,55,50,0.0 +11439,11,21,16,0.0 +11439,49,20,28,0.0 +11439,41,9.65,45,0.0 +11439,25,14,12,0.0 +11439,35,18,3,0.0 +11439,12,38,18,0.0 +11439,43,46,5,0.0 +11439,27,43.9,49,0.0 +11439,23,9,37,0.0 +11439,71,21.5,31,0.0 +11439,24,4.5,20,0.0 +11439,15,15.5,24,0.0 +11440,75,7.75,4,0.0 +11440,46,12,22,0.0 +11440,76,18,24,0.0 +11440,60,34,45,0.0 +11440,44,19.45,43,0.0 +11440,61,28.5,12,0.0 +11440,25,14,12,0.0 +11440,39,18,25,0.0 +11440,5,21.35,6,0.0 +11440,70,15,32,0.0 +11440,11,21,3,0.0 +11440,26,31.23,1,0.0 +11440,58,13.25,39,0.0 +11440,15,15.5,33,0.0 +11440,30,25.89,39,0.0 +11440,21,10,3,0.0 +11440,49,20,17,0.0 +11440,47,9.5,1,0.0 +11440,1,18,48,0.0 +11440,36,19,4,0.0 +11440,64,33.25,22,0.0 +11440,19,9.2,26,0.0 +11440,6,25,26,0.0 +11440,62,49.3,33,0.0 +11440,17,39,50,0.0 +11440,4,22,28,0.0 +11440,8,40,17,0.0 +11441,11,21,32,0.0 +11441,68,12.5,35,0.0 +11441,26,31.23,19,0.0 +11441,3,10,27,0.0 +11441,44,19.45,24,0.0 +11441,41,9.65,21,0.0 +11441,24,4.5,30,0.0 +11441,64,33.25,43,0.0 +11441,51,53,2,0.0 +11441,61,28.5,37,0.0 +11441,33,2.5,36,0.0 +11441,38,263.5,42,0.0 +11441,15,15.5,5,0.0 +11441,25,14,36,0.0 +11441,37,26,7,0.0 +11441,1,18,42,0.0 +11441,12,38,45,0.0 +11441,32,32,19,0.0 +11441,40,18.4,26,0.0 +11441,66,17,38,0.0 +11441,13,6,45,0.0 +11441,22,21,44,0.0 +11441,10,31,14,0.0 +11441,39,18,1,0.0 +11441,49,20,30,0.0 +11441,58,13.25,33,0.0 +11441,76,18,49,0.0 +11442,15,15.5,16,0.0 +11442,60,34,11,0.0 +11442,64,33.25,4,0.0 +11442,50,16.25,14,0.0 +11442,31,12.5,33,0.0 +11442,47,9.5,16,0.0 +11442,37,26,23,0.0 +11442,75,7.75,3,0.0 +11442,34,14,13,0.0 +11442,29,123.79,42,0.0 +11442,62,49.3,12,0.0 +11442,40,18.4,24,0.0 +11442,56,38,22,0.0 +11442,10,31,45,0.0 +11442,25,14,12,0.0 +11442,22,21,22,0.0 +11442,58,13.25,28,0.0 +11442,39,18,30,0.0 +11442,54,7.45,30,0.0 +11442,61,28.5,40,0.0 +11442,51,53,31,0.0 +11442,23,9,21,0.0 +11442,19,9.2,23,0.0 +11442,5,21.35,24,0.0 +11442,28,45.6,39,0.0 +11442,26,31.23,13,0.0 +11442,63,43.9,3,0.0 +11442,18,62.5,2,0.0 +11442,35,18,48,0.0 +11442,55,24,23,0.0 +11442,6,25,46,0.0 +11442,41,9.65,9,0.0 +11442,67,14,16,0.0 +11442,43,46,12,0.0 +11442,74,10,44,0.0 +11442,16,17.45,32,0.0 +11442,65,21.05,44,0.0 +11442,76,18,16,0.0 +11442,48,12.75,43,0.0 +11442,46,12,31,0.0 +11442,33,2.5,26,0.0 +11442,7,30,50,0.0 +11442,69,36,31,0.0 +11442,52,7,41,0.0 +11442,38,263.5,50,0.0 +11442,9,97,41,0.0 +11442,4,22,35,0.0 +11442,71,21.5,35,0.0 +11442,70,15,6,0.0 +11442,72,34.8,20,0.0 +11442,77,13,32,0.0 +11442,8,40,14,0.0 +11442,59,55,11,0.0 +11442,73,15,28,0.0 +11442,13,6,27,0.0 +11442,30,25.89,50,0.0 +11442,20,81,36,0.0 +11442,17,39,9,0.0 +11442,68,12.5,28,0.0 +11442,57,19.5,13,0.0 +11442,14,23.25,46,0.0 +11442,66,17,14,0.0 +11442,44,19.45,16,0.0 +11442,49,20,46,0.0 +11442,21,10,27,0.0 +11442,24,4.5,12,0.0 +11442,42,14,50,0.0 +11442,1,18,11,0.0 +11442,32,32,3,0.0 +11442,11,21,20,0.0 +11442,3,10,47,0.0 +11442,53,32.8,49,0.0 +11442,45,9.5,9,0.0 +11442,2,19,15,0.0 +11442,27,43.9,23,0.0 +11442,12,38,44,0.0 +11443,6,25,50,0.0 +11443,67,14,30,0.0 +11443,20,81,39,0.0 +11443,14,23.25,23,0.0 +11443,1,18,20,0.0 +11443,17,39,7,0.0 +11443,74,10,49,0.0 +11443,29,123.79,3,0.0 +11443,44,19.45,29,0.0 +11443,18,62.5,48,0.0 +11443,30,25.89,48,0.0 +11443,60,34,40,0.0 +11443,66,17,19,0.0 +11443,51,53,38,0.0 +11443,72,34.8,1,0.0 +11443,19,9.2,45,0.0 +11443,70,15,31,0.0 +11443,28,45.6,38,0.0 +11443,42,14,18,0.0 +11443,39,18,47,0.0 +11443,41,9.65,14,0.0 +11443,34,14,1,0.0 +11443,63,43.9,30,0.0 +11443,61,28.5,37,0.0 +11443,53,32.8,41,0.0 +11443,35,18,35,0.0 +11443,5,21.35,24,0.0 +11443,55,24,49,0.0 +11443,11,21,5,0.0 +11443,12,38,22,0.0 +11443,15,15.5,16,0.0 +11443,46,12,8,0.0 +11443,23,9,4,0.0 +11443,49,20,41,0.0 +11443,32,32,17,0.0 +11443,8,40,13,0.0 +11443,27,43.9,45,0.0 +11443,33,2.5,26,0.0 +11443,58,13.25,23,0.0 +11443,16,17.45,31,0.0 +11443,43,46,11,0.0 +11443,71,21.5,36,0.0 +11443,47,9.5,12,0.0 +11443,36,19,4,0.0 +11443,48,12.75,13,0.0 +11443,68,12.5,47,0.0 +11443,56,38,5,0.0 +11443,24,4.5,7,0.0 +11443,22,21,10,0.0 +11443,62,49.3,35,0.0 +11443,59,55,34,0.0 +11443,21,10,28,0.0 +11443,76,18,47,0.0 +11443,2,19,43,0.0 +11443,75,7.75,20,0.0 +11443,26,31.23,42,0.0 +11443,69,36,6,0.0 +11443,57,19.5,40,0.0 +11443,52,7,10,0.0 +11443,7,30,50,0.0 +11443,50,16.25,1,0.0 +11443,9,97,5,0.0 +11443,13,6,15,0.0 +11443,4,22,43,0.0 +11443,31,12.5,24,0.0 +11443,40,18.4,20,0.0 +11443,77,13,33,0.0 +11443,54,7.45,42,0.0 +11443,38,263.5,39,0.0 +11443,64,33.25,16,0.0 +11443,65,21.05,43,0.0 +11443,25,14,36,0.0 +11443,73,15,18,0.0 +11443,45,9.5,7,0.0 +11443,10,31,23,0.0 +11443,37,26,42,0.0 +11444,9,97,13,0.0 +11444,67,14,34,0.0 +11444,54,7.45,2,0.0 +11444,70,15,45,0.0 +11444,21,10,16,0.0 +11444,1,18,22,0.0 +11444,43,46,24,0.0 +11444,66,17,29,0.0 +11444,36,19,21,0.0 +11444,4,22,42,0.0 +11444,75,7.75,49,0.0 +11444,71,21.5,44,0.0 +11444,72,34.8,12,0.0 +11444,56,38,19,0.0 +11444,42,14,45,0.0 +11444,51,53,6,0.0 +11444,35,18,40,0.0 +11444,3,10,48,0.0 +11444,26,31.23,6,0.0 +11444,63,43.9,12,0.0 +11444,12,38,41,0.0 +11444,33,2.5,29,0.0 +11444,76,18,32,0.0 +11444,30,25.89,38,0.0 +11444,65,21.05,33,0.0 +11444,57,19.5,23,0.0 +11444,29,123.79,4,0.0 +11444,47,9.5,23,0.0 +11444,68,12.5,29,0.0 +11444,11,21,35,0.0 +11444,14,23.25,25,0.0 +11444,40,18.4,43,0.0 +11444,44,19.45,41,0.0 +11444,62,49.3,45,0.0 +11444,39,18,1,0.0 +11444,28,45.6,44,0.0 +11444,60,34,32,0.0 +11444,73,15,43,0.0 +11444,16,17.45,39,0.0 +11444,50,16.25,33,0.0 +11444,31,12.5,44,0.0 +11444,2,19,48,0.0 +11444,52,7,26,0.0 +11444,15,15.5,19,0.0 +11444,8,40,40,0.0 +11444,23,9,3,0.0 +11444,58,13.25,21,0.0 +11444,19,9.2,34,0.0 +11444,25,14,6,0.0 +11444,55,24,25,0.0 +11444,22,21,48,0.0 +11444,32,32,26,0.0 +11444,53,32.8,22,0.0 +11444,48,12.75,2,0.0 +11444,77,13,22,0.0 +11444,38,263.5,7,0.0 +11444,20,81,2,0.0 +11444,41,9.65,12,0.0 +11444,49,20,42,0.0 +11444,46,12,44,0.0 +11444,61,28.5,49,0.0 +11444,45,9.5,47,0.0 +11444,10,31,34,0.0 +11444,59,55,3,0.0 +11444,7,30,7,0.0 +11444,64,33.25,31,0.0 +11444,6,25,22,0.0 +11444,24,4.5,10,0.0 +11444,17,39,31,0.0 +11444,69,36,40,0.0 +11444,27,43.9,36,0.0 +11444,13,6,14,0.0 +11444,5,21.35,7,0.0 +11444,18,62.5,24,0.0 +11444,37,26,34,0.0 +11444,34,14,38,0.0 +11445,34,14,40,0.0 +11445,32,32,44,0.0 +11445,44,19.45,40,0.0 +11445,19,9.2,14,0.0 +11445,39,18,32,0.0 +11445,43,46,25,0.0 +11445,64,33.25,3,0.0 +11446,62,49.3,33,0.0 +11446,14,23.25,43,0.0 +11446,10,31,20,0.0 +11446,45,9.5,29,0.0 +11446,7,30,28,0.0 +11446,9,97,38,0.0 +11446,52,7,6,0.0 +11446,54,7.45,48,0.0 +11446,61,28.5,50,0.0 +11446,39,18,14,0.0 +11446,41,9.65,30,0.0 +11446,1,18,38,0.0 +11446,60,34,24,0.0 +11446,27,43.9,5,0.0 +11446,49,20,34,0.0 +11446,42,14,8,0.0 +11446,22,21,44,0.0 +11446,18,62.5,17,0.0 +11446,77,13,30,0.0 +11446,28,45.6,21,0.0 +11446,64,33.25,7,0.0 +11446,4,22,2,0.0 +11446,31,12.5,47,0.0 +11446,34,14,27,0.0 +11446,71,21.5,37,0.0 +11446,74,10,3,0.0 +11446,63,43.9,23,0.0 +11446,75,7.75,30,0.0 +11446,5,21.35,2,0.0 +11446,36,19,21,0.0 +11446,50,16.25,2,0.0 +11446,53,32.8,9,0.0 +11446,30,25.89,13,0.0 +11446,68,12.5,13,0.0 +11446,69,36,18,0.0 +11446,59,55,10,0.0 +11446,47,9.5,20,0.0 +11446,20,81,11,0.0 +11446,15,15.5,23,0.0 +11446,40,18.4,34,0.0 +11446,66,17,2,0.0 +11446,12,38,16,0.0 +11446,67,14,17,0.0 +11446,6,25,33,0.0 +11446,11,21,19,0.0 +11446,57,19.5,35,0.0 +11446,56,38,41,0.0 +11446,65,21.05,46,0.0 +11446,58,13.25,27,0.0 +11446,8,40,33,0.0 +11446,13,6,6,0.0 +11446,26,31.23,39,0.0 +11446,2,19,32,0.0 +11446,72,34.8,29,0.0 +11446,55,24,12,0.0 +11446,37,26,26,0.0 +11446,44,19.45,12,0.0 +11446,16,17.45,15,0.0 +11446,24,4.5,1,0.0 +11446,43,46,2,0.0 +11446,25,14,20,0.0 +11446,46,12,2,0.0 +11446,38,263.5,36,0.0 +11446,19,9.2,48,0.0 +11446,23,9,32,0.0 +11446,17,39,15,0.0 +11446,70,15,31,0.0 +11446,73,15,25,0.0 +11446,35,18,12,0.0 +11447,52,7,42,0.0 +11447,1,18,48,0.0 +11447,11,21,18,0.0 +11447,69,36,13,0.0 +11447,51,53,11,0.0 +11447,74,10,17,0.0 +11447,49,20,48,0.0 +11447,73,15,15,0.0 +11447,19,9.2,28,0.0 +11447,15,15.5,30,0.0 +11447,76,18,33,0.0 +11447,70,15,4,0.0 +11447,21,10,2,0.0 +11447,61,28.5,48,0.0 +11447,71,21.5,13,0.0 +11447,29,123.79,17,0.0 +11447,39,18,50,0.0 +11447,22,21,28,0.0 +11447,14,23.25,28,0.0 +11447,18,62.5,43,0.0 +11447,45,9.5,4,0.0 +11447,34,14,1,0.0 +11447,54,7.45,7,0.0 +11447,20,81,13,0.0 +11447,30,25.89,10,0.0 +11447,13,6,36,0.0 +11447,46,12,20,0.0 +11447,3,10,12,0.0 +11447,35,18,38,0.0 +11447,60,34,18,0.0 +11447,56,38,26,0.0 +11447,25,14,5,0.0 +11447,28,45.6,45,0.0 +11447,12,38,16,0.0 +11447,59,55,11,0.0 +11447,37,26,25,0.0 +11447,58,13.25,31,0.0 +11447,77,13,41,0.0 +11447,66,17,15,0.0 +11447,16,17.45,38,0.0 +11447,5,21.35,48,0.0 +11447,23,9,4,0.0 +11447,41,9.65,45,0.0 +11447,40,18.4,27,0.0 +11447,42,14,18,0.0 +11447,62,49.3,23,0.0 +11447,6,25,20,0.0 +11447,67,14,17,0.0 +11447,33,2.5,30,0.0 +11447,9,97,19,0.0 +11447,68,12.5,12,0.0 +11447,27,43.9,50,0.0 +11447,75,7.75,49,0.0 +11447,31,12.5,42,0.0 +11447,32,32,5,0.0 +11447,10,31,16,0.0 +11447,38,263.5,20,0.0 +11447,63,43.9,28,0.0 +11447,24,4.5,20,0.0 +11447,47,9.5,29,0.0 +11447,48,12.75,38,0.0 +11447,4,22,28,0.0 +11447,55,24,31,0.0 +11447,72,34.8,34,0.0 +11447,36,19,27,0.0 +11447,57,19.5,11,0.0 +11447,64,33.25,46,0.0 +11447,44,19.45,24,0.0 +11447,7,30,22,0.0 +11447,43,46,13,0.0 +11448,74,10,22,0.0 +11448,54,7.45,26,0.0 +11448,29,123.79,36,0.0 +11448,63,43.9,32,0.0 +11448,26,31.23,22,0.0 +11448,67,14,40,0.0 +11448,28,45.6,33,0.0 +11448,25,14,4,0.0 +11448,76,18,15,0.0 +11448,70,15,6,0.0 +11448,35,18,42,0.0 +11448,34,14,36,0.0 +11448,77,13,20,0.0 +11448,53,32.8,35,0.0 +11448,31,12.5,10,0.0 +11448,48,12.75,9,0.0 +11448,58,13.25,41,0.0 +11448,15,15.5,33,0.0 +11448,19,9.2,42,0.0 +11448,1,18,6,0.0 +11448,13,6,49,0.0 +11448,65,21.05,34,0.0 +11448,57,19.5,42,0.0 +11448,11,21,2,0.0 +11448,73,15,17,0.0 +11448,14,23.25,20,0.0 +11448,36,19,19,0.0 +11448,71,21.5,46,0.0 +11448,46,12,35,0.0 +11448,21,10,26,0.0 +11448,27,43.9,27,0.0 +11448,66,17,43,0.0 +11448,62,49.3,31,0.0 +11448,3,10,5,0.0 +11448,52,7,37,0.0 +11448,39,18,3,0.0 +11448,69,36,44,0.0 +11448,32,32,10,0.0 +11449,53,32.8,11,0.0 +11449,57,19.5,48,0.0 +11449,46,12,43,0.0 +11449,66,17,41,0.0 +11449,45,9.5,31,0.0 +11449,47,9.5,37,0.0 +11449,2,19,16,0.0 +11449,37,26,19,0.0 +11449,24,4.5,43,0.0 +11449,6,25,34,0.0 +11449,16,17.45,31,0.0 +11449,68,12.5,3,0.0 +11449,51,53,15,0.0 +11449,11,21,49,0.0 +11449,34,14,18,0.0 +11449,26,31.23,42,0.0 +11449,28,45.6,32,0.0 +11449,67,14,35,0.0 +11449,36,19,28,0.0 +11449,63,43.9,11,0.0 +11449,19,9.2,11,0.0 +11449,32,32,3,0.0 +11449,13,6,1,0.0 +11449,8,40,41,0.0 +11449,41,9.65,37,0.0 +11449,25,14,12,0.0 +11449,65,21.05,48,0.0 +11449,55,24,14,0.0 +11450,41,9.65,9,0.0 +11450,18,62.5,23,0.0 +11450,65,21.05,18,0.0 +11450,62,49.3,30,0.0 +11450,26,31.23,10,0.0 +11450,11,21,24,0.0 +11450,68,12.5,5,0.0 +11450,35,18,35,0.0 +11450,16,17.45,18,0.0 +11450,42,14,7,0.0 +11450,71,21.5,3,0.0 +11450,33,2.5,50,0.0 +11450,72,34.8,3,0.0 +11450,61,28.5,41,0.0 +11450,64,33.25,34,0.0 +11450,70,15,39,0.0 +11450,32,32,22,0.0 +11450,50,16.25,45,0.0 +11450,73,15,43,0.0 +11450,67,14,48,0.0 +11450,44,19.45,46,0.0 +11450,15,15.5,26,0.0 +11450,21,10,7,0.0 +11450,37,26,14,0.0 +11450,7,30,11,0.0 +11450,34,14,1,0.0 +11450,53,32.8,9,0.0 +11450,20,81,37,0.0 +11450,19,9.2,38,0.0 +11450,22,21,3,0.0 +11450,69,36,30,0.0 +11450,12,38,17,0.0 +11450,60,34,36,0.0 +11450,55,24,8,0.0 +11451,55,24,29,0.0 +11451,58,13.25,1,0.0 +11451,52,7,2,0.0 +11451,42,14,33,0.0 +11451,29,123.79,24,0.0 +11451,12,38,26,0.0 +11451,43,46,29,0.0 +11451,23,9,33,0.0 +11451,20,81,41,0.0 +11451,34,14,39,0.0 +11451,68,12.5,41,0.0 +11451,24,4.5,17,0.0 +11451,18,62.5,28,0.0 +11451,77,13,26,0.0 +11451,59,55,24,0.0 +11451,47,9.5,47,0.0 +11451,67,14,33,0.0 +11451,40,18.4,50,0.0 +11451,62,49.3,46,0.0 +11451,63,43.9,23,0.0 +11451,36,19,50,0.0 +11451,57,19.5,37,0.0 +11451,61,28.5,13,0.0 +11451,32,32,48,0.0 +11451,25,14,15,0.0 +11451,2,19,40,0.0 +11451,26,31.23,45,0.0 +11451,22,21,9,0.0 +11451,15,15.5,6,0.0 +11451,64,33.25,1,0.0 +11451,38,263.5,38,0.0 +11451,65,21.05,48,0.0 +11451,28,45.6,32,0.0 +11451,16,17.45,15,0.0 +11451,72,34.8,3,0.0 +11451,45,9.5,38,0.0 +11451,75,7.75,9,0.0 +11451,10,31,30,0.0 +11451,14,23.25,17,0.0 +11451,69,36,7,0.0 +11451,71,21.5,37,0.0 +11451,76,18,22,0.0 +11451,4,22,20,0.0 +11451,17,39,30,0.0 +11451,50,16.25,43,0.0 +11451,48,12.75,7,0.0 +11451,7,30,20,0.0 +11451,53,32.8,6,0.0 +11451,8,40,29,0.0 +11451,66,17,5,0.0 +11451,13,6,46,0.0 +11451,70,15,10,0.0 +11451,9,97,31,0.0 +11451,37,26,43,0.0 +11451,33,2.5,33,0.0 +11451,31,12.5,3,0.0 +11451,44,19.45,22,0.0 +11451,21,10,32,0.0 +11451,74,10,40,0.0 +11451,73,15,31,0.0 +11451,49,20,48,0.0 +11451,3,10,40,0.0 +11451,41,9.65,4,0.0 +11451,19,9.2,12,0.0 +11451,60,34,11,0.0 +11451,51,53,26,0.0 +11451,39,18,1,0.0 +11451,30,25.89,7,0.0 +11451,54,7.45,15,0.0 +11451,11,21,4,0.0 +11451,46,12,41,0.0 +11451,6,25,28,0.0 +11451,1,18,16,0.0 +11451,27,43.9,16,0.0 +11451,35,18,27,0.0 +11452,26,31.23,46,0.0 +11452,64,33.25,7,0.0 +11452,76,18,27,0.0 +11452,14,23.25,7,0.0 +11452,55,24,3,0.0 +11452,59,55,44,0.0 +11452,3,10,29,0.0 +11452,51,53,50,0.0 +11452,30,25.89,49,0.0 +11452,15,15.5,14,0.0 +11452,52,7,12,0.0 +11452,39,18,28,0.0 +11452,43,46,11,0.0 +11452,68,12.5,4,0.0 +11452,22,21,22,0.0 +11452,49,20,30,0.0 +11452,44,19.45,36,0.0 +11452,16,17.45,28,0.0 +11452,5,21.35,7,0.0 +11452,67,14,19,0.0 +11452,35,18,29,0.0 +11452,57,19.5,28,0.0 +11452,54,7.45,12,0.0 +11452,56,38,41,0.0 +11452,12,38,8,0.0 +11452,9,97,5,0.0 +11452,32,32,19,0.0 +11452,21,10,28,0.0 +11452,28,45.6,49,0.0 +11452,29,123.79,20,0.0 +11452,19,9.2,8,0.0 +11452,13,6,7,0.0 +11452,70,15,26,0.0 +11452,27,43.9,5,0.0 +11452,71,21.5,11,0.0 +11452,2,19,23,0.0 +11452,1,18,18,0.0 +11452,66,17,37,0.0 +11452,8,40,1,0.0 +11452,47,9.5,28,0.0 +11452,40,18.4,48,0.0 +11452,42,14,28,0.0 +11452,24,4.5,44,0.0 +11452,77,13,37,0.0 +11452,18,62.5,47,0.0 +11452,61,28.5,41,0.0 +11452,73,15,2,0.0 +11452,11,21,7,0.0 +11453,48,12.75,41,0.0 +11453,7,30,26,0.0 +11453,57,19.5,1,0.0 +11453,29,123.79,1,0.0 +11453,37,26,16,0.0 +11453,64,33.25,22,0.0 +11453,27,43.9,23,0.0 +11453,75,7.75,9,0.0 +11453,22,21,1,0.0 +11453,69,36,2,0.0 +11453,58,13.25,20,0.0 +11453,17,39,42,0.0 +11453,12,38,32,0.0 +11453,71,21.5,33,0.0 +11453,8,40,47,0.0 +11453,2,19,26,0.0 +11453,24,4.5,20,0.0 +11453,70,15,48,0.0 +11453,25,14,32,0.0 +11453,6,25,5,0.0 +11453,46,12,35,0.0 +11453,30,25.89,23,0.0 +11453,34,14,23,0.0 +11453,1,18,13,0.0 +11453,44,19.45,9,0.0 +11453,52,7,29,0.0 +11453,23,9,37,0.0 +11453,41,9.65,49,0.0 +11453,53,32.8,9,0.0 +11453,15,15.5,16,0.0 +11453,21,10,33,0.0 +11453,4,22,41,0.0 +11453,67,14,4,0.0 +11453,68,12.5,14,0.0 +11453,55,24,49,0.0 +11453,36,19,46,0.0 +11453,60,34,18,0.0 +11453,31,12.5,49,0.0 +11453,73,15,5,0.0 +11453,65,21.05,44,0.0 +11453,28,45.6,18,0.0 +11453,51,53,8,0.0 +11453,38,263.5,37,0.0 +11454,20,81,26,0.0 +11454,67,14,45,0.0 +11454,38,263.5,43,0.0 +11454,50,16.25,27,0.0 +11454,70,15,22,0.0 +11454,69,36,7,0.0 +11454,46,12,42,0.0 +11454,2,19,33,0.0 +11454,44,19.45,44,0.0 +11454,15,15.5,38,0.0 +11454,66,17,2,0.0 +11454,1,18,36,0.0 +11454,16,17.45,2,0.0 +11454,3,10,9,0.0 +11454,76,18,38,0.0 +11454,39,18,46,0.0 +11454,33,2.5,24,0.0 +11454,34,14,12,0.0 +11455,43,46,25,0.0 +11455,53,32.8,7,0.0 +11455,24,4.5,44,0.0 +11455,19,9.2,18,0.0 +11455,37,26,32,0.0 +11455,63,43.9,41,0.0 +11455,20,81,44,0.0 +11455,51,53,4,0.0 +11455,41,9.65,49,0.0 +11455,28,45.6,30,0.0 +11455,5,21.35,23,0.0 +11455,69,36,34,0.0 +11455,23,9,18,0.0 +11455,1,18,48,0.0 +11455,73,15,4,0.0 +11455,13,6,24,0.0 +11455,62,49.3,33,0.0 +11455,36,19,4,0.0 +11455,21,10,26,0.0 +11455,75,7.75,45,0.0 +11455,31,12.5,38,0.0 +11455,38,263.5,23,0.0 +11455,58,13.25,23,0.0 +11455,15,15.5,37,0.0 +11455,55,24,25,0.0 +11455,17,39,50,0.0 +11455,52,7,29,0.0 +11455,56,38,5,0.0 +11455,9,97,9,0.0 +11455,29,123.79,32,0.0 +11455,27,43.9,31,0.0 +11455,18,62.5,33,0.0 +11455,70,15,28,0.0 +11455,8,40,23,0.0 +11455,3,10,25,0.0 +11455,32,32,15,0.0 +11455,42,14,39,0.0 +11455,60,34,21,0.0 +11456,35,18,21,0.0 +11456,13,6,38,0.0 +11456,23,9,38,0.0 +11457,12,38,50,0.0 +11457,30,25.89,29,0.0 +11457,24,4.5,37,0.0 +11457,47,9.5,15,0.0 +11457,43,46,2,0.0 +11457,40,18.4,48,0.0 +11457,20,81,8,0.0 +11457,17,39,14,0.0 +11457,38,263.5,46,0.0 +11457,32,32,5,0.0 +11457,18,62.5,32,0.0 +11457,44,19.45,35,0.0 +11457,50,16.25,11,0.0 +11457,31,12.5,10,0.0 +11457,11,21,41,0.0 +11457,23,9,49,0.0 +11457,2,19,16,0.0 +11457,65,21.05,24,0.0 +11457,25,14,27,0.0 +11457,70,15,34,0.0 +11457,77,13,19,0.0 +11457,45,9.5,4,0.0 +11457,63,43.9,24,0.0 +11457,13,6,44,0.0 +11457,69,36,26,0.0 +11458,29,123.79,16,0.0 +11458,9,97,16,0.0 +11458,20,81,45,0.0 +11458,48,12.75,5,0.0 +11458,53,32.8,34,0.0 +11458,58,13.25,3,0.0 +11458,4,22,46,0.0 +11458,68,12.5,50,0.0 +11458,54,7.45,39,0.0 +11458,37,26,32,0.0 +11458,12,38,2,0.0 +11458,51,53,38,0.0 +11458,46,12,16,0.0 +11458,65,21.05,24,0.0 +11458,56,38,24,0.0 +11458,17,39,49,0.0 +11458,40,18.4,6,0.0 +11458,38,263.5,7,0.0 +11458,35,18,3,0.0 +11458,69,36,18,0.0 +11458,30,25.89,24,0.0 +11458,70,15,29,0.0 +11458,72,34.8,50,0.0 +11458,61,28.5,49,0.0 +11458,2,19,3,0.0 +11458,10,31,14,0.0 +11458,55,24,44,0.0 +11458,16,17.45,39,0.0 +11458,28,45.6,4,0.0 +11458,6,25,39,0.0 +11458,1,18,41,0.0 +11458,64,33.25,14,0.0 +11458,71,21.5,34,0.0 +11458,11,21,31,0.0 +11458,42,14,27,0.0 +11458,44,19.45,40,0.0 +11458,3,10,19,0.0 +11458,36,19,5,0.0 +11458,14,23.25,14,0.0 +11458,60,34,30,0.0 +11458,7,30,6,0.0 +11458,5,21.35,5,0.0 +11458,15,15.5,37,0.0 +11458,49,20,6,0.0 +11458,45,9.5,37,0.0 +11458,34,14,33,0.0 +11459,62,49.3,8,0.0 +11459,11,21,11,0.0 +11459,44,19.45,9,0.0 +11459,52,7,2,0.0 +11459,30,25.89,42,0.0 +11459,41,9.65,12,0.0 +11459,16,17.45,10,0.0 +11459,3,10,22,0.0 +11459,25,14,6,0.0 +11459,19,9.2,25,0.0 +11459,58,13.25,26,0.0 +11459,73,15,44,0.0 +11459,57,19.5,35,0.0 +11459,6,25,8,0.0 +11459,18,62.5,36,0.0 +11459,17,39,16,0.0 +11459,47,9.5,50,0.0 +11459,32,32,16,0.0 +11459,35,18,35,0.0 +11459,75,7.75,18,0.0 +11459,49,20,6,0.0 +11459,34,14,31,0.0 +11459,67,14,20,0.0 +11459,55,24,37,0.0 +11459,4,22,19,0.0 +11459,33,2.5,15,0.0 +11459,24,4.5,17,0.0 +11459,12,38,10,0.0 +11459,68,12.5,28,0.0 +11459,43,46,41,0.0 +11459,76,18,9,0.0 +11459,69,36,20,0.0 +11459,1,18,26,0.0 +11459,51,53,36,0.0 +11459,23,9,39,0.0 +11459,38,263.5,35,0.0 +11459,45,9.5,32,0.0 +11459,42,14,13,0.0 +11459,48,12.75,45,0.0 +11459,40,18.4,38,0.0 +11459,2,19,37,0.0 +11459,59,55,14,0.0 +11459,60,34,16,0.0 +11459,77,13,17,0.0 +11459,10,31,19,0.0 +11459,13,6,50,0.0 +11459,15,15.5,33,0.0 +11459,46,12,48,0.0 +11459,36,19,46,0.0 +11459,7,30,49,0.0 +11459,5,21.35,7,0.0 +11459,63,43.9,46,0.0 +11459,20,81,12,0.0 +11459,50,16.25,48,0.0 +11459,14,23.25,13,0.0 +11459,72,34.8,30,0.0 +11459,21,10,25,0.0 +11459,37,26,21,0.0 +11459,28,45.6,21,0.0 +11459,65,21.05,13,0.0 +11459,22,21,15,0.0 +11459,8,40,5,0.0 +11459,61,28.5,7,0.0 +11459,56,38,31,0.0 +11459,39,18,41,0.0 +11459,27,43.9,12,0.0 +11459,66,17,10,0.0 +11459,53,32.8,35,0.0 +11459,26,31.23,23,0.0 +11459,31,12.5,8,0.0 +11459,70,15,41,0.0 +11460,29,123.79,11,0.0 +11460,35,18,44,0.0 +11460,59,55,20,0.0 +11460,7,30,28,0.0 +11460,13,6,13,0.0 +11460,62,49.3,5,0.0 +11460,5,21.35,38,0.0 +11460,60,34,22,0.0 +11460,22,21,10,0.0 +11460,6,25,47,0.0 +11461,63,43.9,25,0.0 +11461,77,13,18,0.0 +11461,25,14,11,0.0 +11461,21,10,20,0.0 +11461,8,40,49,0.0 +11461,43,46,37,0.0 +11461,24,4.5,39,0.0 +11461,5,21.35,19,0.0 +11461,34,14,4,0.0 +11461,76,18,38,0.0 +11461,38,263.5,30,0.0 +11461,4,22,41,0.0 +11461,75,7.75,50,0.0 +11461,65,21.05,35,0.0 +11462,58,13.25,29,0.0 +11462,68,12.5,9,0.0 +11462,71,21.5,30,0.0 +11462,1,18,36,0.0 +11462,23,9,27,0.0 +11462,51,53,42,0.0 +11462,66,17,25,0.0 +11462,11,21,41,0.0 +11462,35,18,19,0.0 +11462,24,4.5,15,0.0 +11462,2,19,20,0.0 +11462,12,38,25,0.0 +11462,40,18.4,35,0.0 +11462,42,14,27,0.0 +11462,55,24,46,0.0 +11462,70,15,18,0.0 +11462,64,33.25,7,0.0 +11462,65,21.05,47,0.0 +11462,17,39,37,0.0 +11462,52,7,15,0.0 +11462,19,9.2,21,0.0 +11462,33,2.5,5,0.0 +11462,20,81,7,0.0 +11462,75,7.75,6,0.0 +11462,63,43.9,15,0.0 +11462,38,263.5,26,0.0 +11462,9,97,34,0.0 +11462,44,19.45,46,0.0 +11462,46,12,45,0.0 +11462,74,10,16,0.0 +11462,73,15,41,0.0 +11462,72,34.8,32,0.0 +11462,15,15.5,4,0.0 +11462,62,49.3,3,0.0 +11462,60,34,1,0.0 +11462,37,26,1,0.0 +11462,31,12.5,45,0.0 +11462,34,14,2,0.0 +11462,45,9.5,18,0.0 +11462,5,21.35,23,0.0 +11462,54,7.45,50,0.0 +11462,32,32,27,0.0 +11462,69,36,1,0.0 +11462,21,10,37,0.0 +11462,49,20,44,0.0 +11462,25,14,35,0.0 +11462,16,17.45,26,0.0 +11462,36,19,11,0.0 +11462,13,6,43,0.0 +11462,39,18,44,0.0 +11462,14,23.25,22,0.0 +11462,67,14,33,0.0 +11462,43,46,45,0.0 +11462,47,9.5,19,0.0 +11462,6,25,24,0.0 +11462,56,38,31,0.0 +11462,53,32.8,25,0.0 +11462,41,9.65,22,0.0 +11462,57,19.5,33,0.0 +11462,50,16.25,32,0.0 +11462,10,31,5,0.0 +11462,8,40,47,0.0 +11462,59,55,12,0.0 +11462,48,12.75,29,0.0 +11462,7,30,38,0.0 +11462,26,31.23,16,0.0 +11462,22,21,18,0.0 +11463,44,19.45,6,0.0 +11463,8,40,32,0.0 +11463,12,38,40,0.0 +11463,15,15.5,41,0.0 +11463,23,9,21,0.0 +11463,54,7.45,38,0.0 +11463,47,9.5,16,0.0 +11463,43,46,7,0.0 +11463,48,12.75,27,0.0 +11463,68,12.5,20,0.0 +11463,69,36,26,0.0 +11463,3,10,2,0.0 +11463,63,43.9,12,0.0 +11463,30,25.89,28,0.0 +11463,73,15,41,0.0 +11463,71,21.5,4,0.0 +11463,28,45.6,1,0.0 +11463,70,15,50,0.0 +11463,58,13.25,11,0.0 +11463,42,14,47,0.0 +11463,27,43.9,33,0.0 +11463,55,24,4,0.0 +11463,18,62.5,49,0.0 +11463,51,53,44,0.0 +11463,16,17.45,38,0.0 +11463,22,21,27,0.0 +11463,74,10,32,0.0 +11463,60,34,21,0.0 +11463,1,18,48,0.0 +11463,36,19,45,0.0 +11463,75,7.75,2,0.0 +11463,76,18,3,0.0 +11463,29,123.79,3,0.0 +11464,23,9,28,0.0 +11464,29,123.79,47,0.0 +11464,71,21.5,10,0.0 +11464,7,30,15,0.0 +11464,46,12,34,0.0 +11464,75,7.75,41,0.0 +11464,53,32.8,34,0.0 +11464,21,10,13,0.0 +11464,25,14,31,0.0 +11464,65,21.05,24,0.0 +11464,11,21,3,0.0 +11464,12,38,20,0.0 +11464,58,13.25,21,0.0 +11464,60,34,25,0.0 +11464,14,23.25,7,0.0 +11464,70,15,1,0.0 +11464,77,13,44,0.0 +11464,3,10,4,0.0 +11464,43,46,1,0.0 +11464,39,18,14,0.0 +11464,47,9.5,28,0.0 +11464,26,31.23,21,0.0 +11464,34,14,36,0.0 +11464,38,263.5,2,0.0 +11464,10,31,1,0.0 +11464,67,14,40,0.0 +11464,32,32,40,0.0 +11464,4,22,17,0.0 +11464,55,24,42,0.0 +11464,16,17.45,46,0.0 +11464,5,21.35,23,0.0 +11464,18,62.5,48,0.0 +11464,15,15.5,11,0.0 +11464,9,97,41,0.0 +11464,62,49.3,12,0.0 +11464,1,18,10,0.0 +11464,41,9.65,11,0.0 +11464,68,12.5,36,0.0 +11464,57,19.5,42,0.0 +11464,72,34.8,42,0.0 +11464,30,25.89,39,0.0 +11464,17,39,15,0.0 +11464,56,38,27,0.0 +11464,24,4.5,13,0.0 +11464,2,19,25,0.0 +11464,64,33.25,14,0.0 +11464,61,28.5,4,0.0 +11464,22,21,9,0.0 +11464,49,20,31,0.0 +11464,33,2.5,22,0.0 +11464,31,12.5,36,0.0 +11464,66,17,16,0.0 +11464,36,19,13,0.0 +11464,44,19.45,9,0.0 +11464,59,55,21,0.0 +11464,52,7,22,0.0 +11464,50,16.25,37,0.0 +11464,19,9.2,12,0.0 +11464,40,18.4,22,0.0 +11464,28,45.6,19,0.0 +11464,27,43.9,14,0.0 +11464,8,40,48,0.0 +11464,45,9.5,42,0.0 +11464,74,10,33,0.0 +11464,76,18,44,0.0 +11464,42,14,41,0.0 +11464,73,15,10,0.0 +11464,35,18,19,0.0 +11464,48,12.75,18,0.0 +11464,13,6,44,0.0 +11464,20,81,7,0.0 +11464,69,36,29,0.0 +11465,51,53,33,0.0 +11465,48,12.75,39,0.0 +11465,2,19,49,0.0 +11465,61,28.5,21,0.0 +11465,11,21,4,0.0 +11465,15,15.5,37,0.0 +11465,73,15,10,0.0 +11465,35,18,7,0.0 +11465,34,14,42,0.0 +11465,12,38,47,0.0 +11465,32,32,45,0.0 +11465,9,97,35,0.0 +11465,67,14,13,0.0 +11465,49,20,25,0.0 +11465,56,38,39,0.0 +11465,14,23.25,11,0.0 +11465,22,21,2,0.0 +11465,77,13,36,0.0 +11465,28,45.6,5,0.0 +11465,7,30,17,0.0 +11465,39,18,36,0.0 +11465,10,31,6,0.0 +11465,58,13.25,15,0.0 +11465,65,21.05,7,0.0 +11465,16,17.45,23,0.0 +11466,11,21,19,0.0 +11466,9,97,30,0.0 +11466,62,49.3,32,0.0 +11466,65,21.05,8,0.0 +11466,32,32,41,0.0 +11466,12,38,22,0.0 +11466,22,21,50,0.0 +11466,3,10,11,0.0 +11466,46,12,47,0.0 +11466,45,9.5,45,0.0 +11466,7,30,30,0.0 +11466,71,21.5,39,0.0 +11466,1,18,21,0.0 +11466,67,14,32,0.0 +11466,52,7,34,0.0 +11466,30,25.89,32,0.0 +11466,56,38,4,0.0 +11466,6,25,19,0.0 +11466,23,9,38,0.0 +11466,13,6,12,0.0 +11466,57,19.5,40,0.0 +11466,55,24,50,0.0 +11466,10,31,19,0.0 +11466,24,4.5,33,0.0 +11466,72,34.8,5,0.0 +11466,59,55,44,0.0 +11466,39,18,37,0.0 +11466,44,19.45,13,0.0 +11466,35,18,26,0.0 +11466,70,15,30,0.0 +11466,53,32.8,40,0.0 +11466,14,23.25,16,0.0 +11466,28,45.6,30,0.0 +11466,15,15.5,31,0.0 +11466,33,2.5,14,0.0 +11466,36,19,12,0.0 +11466,19,9.2,13,0.0 +11466,2,19,22,0.0 +11466,66,17,15,0.0 +11466,47,9.5,8,0.0 +11466,75,7.75,4,0.0 +11466,41,9.65,8,0.0 +11466,17,39,29,0.0 +11466,68,12.5,42,0.0 +11466,37,26,9,0.0 +11466,48,12.75,17,0.0 +11466,16,17.45,21,0.0 +11466,4,22,50,0.0 +11466,20,81,19,0.0 +11466,34,14,21,0.0 +11466,61,28.5,48,0.0 +11466,64,33.25,41,0.0 +11466,58,13.25,2,0.0 +11466,74,10,39,0.0 +11466,42,14,47,0.0 +11466,77,13,25,0.0 +11466,8,40,18,0.0 +11466,43,46,46,0.0 +11466,18,62.5,29,0.0 +11466,27,43.9,16,0.0 +11466,31,12.5,8,0.0 +11466,69,36,25,0.0 +11466,51,53,2,0.0 +11466,25,14,32,0.0 +11466,26,31.23,15,0.0 +11466,49,20,6,0.0 +11466,73,15,4,0.0 +11467,18,62.5,3,0.0 +11467,56,38,18,0.0 +11467,67,14,25,0.0 +11467,58,13.25,48,0.0 +11467,4,22,49,0.0 +11467,26,31.23,35,0.0 +11467,6,25,33,0.0 +11467,1,18,18,0.0 +11467,54,7.45,10,0.0 +11467,49,20,48,0.0 +11467,63,43.9,13,0.0 +11467,42,14,39,0.0 +11467,9,97,12,0.0 +11467,47,9.5,10,0.0 +11467,73,15,50,0.0 +11467,65,21.05,33,0.0 +11467,52,7,16,0.0 +11467,16,17.45,35,0.0 +11467,13,6,34,0.0 +11467,24,4.5,4,0.0 +11467,64,33.25,48,0.0 +11467,46,12,3,0.0 +11467,17,39,1,0.0 +11467,35,18,13,0.0 +11467,30,25.89,48,0.0 +11467,43,46,12,0.0 +11467,37,26,1,0.0 +11467,25,14,50,0.0 +11467,70,15,8,0.0 +11467,48,12.75,32,0.0 +11468,6,25,30,0.0 +11468,8,40,29,0.0 +11468,7,30,14,0.0 +11468,46,12,19,0.0 +11468,48,12.75,27,0.0 +11468,53,32.8,38,0.0 +11468,26,31.23,8,0.0 +11468,38,263.5,31,0.0 +11468,69,36,34,0.0 +11468,31,12.5,30,0.0 +11468,12,38,13,0.0 +11468,5,21.35,27,0.0 +11468,10,31,13,0.0 +11468,32,32,31,0.0 +11468,15,15.5,37,0.0 +11468,34,14,38,0.0 +11468,75,7.75,47,0.0 +11468,63,43.9,15,0.0 +11468,77,13,5,0.0 +11468,76,18,11,0.0 +11468,43,46,48,0.0 +11468,59,55,50,0.0 +11468,3,10,32,0.0 +11468,60,34,26,0.0 +11468,56,38,46,0.0 +11468,58,13.25,31,0.0 +11468,36,19,2,0.0 +11468,57,19.5,44,0.0 +11468,73,15,11,0.0 +11468,52,7,24,0.0 +11468,61,28.5,30,0.0 +11468,25,14,21,0.0 +11468,55,24,44,0.0 +11468,66,17,40,0.0 +11468,11,21,19,0.0 +11468,44,19.45,35,0.0 +11469,65,21.05,44,0.0 +11469,4,22,46,0.0 +11469,57,19.5,22,0.0 +11469,21,10,44,0.0 +11469,12,38,9,0.0 +11469,71,21.5,39,0.0 +11469,63,43.9,41,0.0 +11469,70,15,9,0.0 +11469,19,9.2,40,0.0 +11469,47,9.5,43,0.0 +11469,31,12.5,7,0.0 +11469,20,81,12,0.0 +11469,60,34,37,0.0 +11469,3,10,33,0.0 +11469,40,18.4,5,0.0 +11469,62,49.3,29,0.0 +11469,61,28.5,2,0.0 +11469,22,21,47,0.0 +11469,1,18,16,0.0 +11469,44,19.45,39,0.0 +11469,41,9.65,7,0.0 +11469,24,4.5,43,0.0 +11469,69,36,21,0.0 +11469,5,21.35,4,0.0 +11469,11,21,36,0.0 +11469,42,14,39,0.0 +11469,48,12.75,9,0.0 +11469,26,31.23,33,0.0 +11469,25,14,10,0.0 +11469,43,46,26,0.0 +11469,33,2.5,43,0.0 +11469,14,23.25,45,0.0 +11469,52,7,1,0.0 +11469,50,16.25,28,0.0 +11469,45,9.5,18,0.0 +11469,27,43.9,13,0.0 +11469,37,26,28,0.0 +11469,9,97,19,0.0 +11469,53,32.8,20,0.0 +11469,68,12.5,12,0.0 +11469,55,24,1,0.0 +11469,32,32,33,0.0 +11469,15,15.5,33,0.0 +11469,75,7.75,17,0.0 +11469,58,13.25,13,0.0 +11469,77,13,44,0.0 +11469,38,263.5,25,0.0 +11469,49,20,46,0.0 +11469,56,38,14,0.0 +11469,6,25,7,0.0 +11469,8,40,35,0.0 +11469,74,10,12,0.0 +11469,59,55,23,0.0 +11469,39,18,20,0.0 +11469,36,19,42,0.0 +11470,6,25,29,0.0 +11470,55,24,19,0.0 +11470,73,15,27,0.0 +11470,70,15,49,0.0 +11470,68,12.5,28,0.0 +11470,35,18,28,0.0 +11470,36,19,14,0.0 +11470,26,31.23,8,0.0 +11470,59,55,32,0.0 +11470,67,14,41,0.0 +11470,40,18.4,4,0.0 +11470,21,10,32,0.0 +11470,45,9.5,24,0.0 +11470,3,10,49,0.0 +11470,71,21.5,11,0.0 +11470,69,36,13,0.0 +11470,58,13.25,30,0.0 +11470,28,45.6,24,0.0 +11470,30,25.89,13,0.0 +11470,31,12.5,20,0.0 +11470,50,16.25,38,0.0 +11470,19,9.2,29,0.0 +11470,74,10,34,0.0 +11470,4,22,41,0.0 +11470,37,26,13,0.0 +11470,16,17.45,10,0.0 +11470,34,14,18,0.0 +11471,64,33.25,49,0.0 +11471,27,43.9,22,0.0 +11471,52,7,37,0.0 +11471,69,36,11,0.0 +11471,45,9.5,49,0.0 +11471,55,24,17,0.0 +11471,51,53,18,0.0 +11471,73,15,13,0.0 +11471,5,21.35,2,0.0 +11471,75,7.75,2,0.0 +11471,40,18.4,40,0.0 +11471,11,21,13,0.0 +11471,6,25,7,0.0 +11471,19,9.2,48,0.0 +11471,71,21.5,50,0.0 +11471,4,22,15,0.0 +11472,2,19,46,0.0 +11472,64,33.25,33,0.0 +11472,31,12.5,4,0.0 +11472,62,49.3,20,0.0 +11472,42,14,41,0.0 +11472,54,7.45,42,0.0 +11472,72,34.8,6,0.0 +11472,43,46,17,0.0 +11472,63,43.9,39,0.0 +11472,52,7,13,0.0 +11472,60,34,25,0.0 +11472,8,40,35,0.0 +11472,59,55,46,0.0 +11472,30,25.89,5,0.0 +11472,53,32.8,5,0.0 +11472,44,19.45,4,0.0 +11472,5,21.35,33,0.0 +11472,65,21.05,28,0.0 +11472,22,21,21,0.0 +11472,10,31,39,0.0 +11472,25,14,9,0.0 +11472,61,28.5,31,0.0 +11472,4,22,45,0.0 +11472,58,13.25,36,0.0 +11472,74,10,7,0.0 +11472,7,30,27,0.0 +11472,21,10,31,0.0 +11472,37,26,38,0.0 +11472,32,32,28,0.0 +11472,67,14,5,0.0 +11472,70,15,38,0.0 +11472,40,18.4,23,0.0 +11472,38,263.5,38,0.0 +11472,39,18,24,0.0 +11472,36,19,7,0.0 +11472,24,4.5,4,0.0 +11472,46,12,33,0.0 +11472,19,9.2,16,0.0 +11472,69,36,40,0.0 +11472,17,39,5,0.0 +11472,26,31.23,3,0.0 +11472,41,9.65,48,0.0 +11472,47,9.5,46,0.0 +11472,18,62.5,38,0.0 +11472,76,18,19,0.0 +11472,11,21,18,0.0 +11472,12,38,16,0.0 +11473,17,39,43,0.0 +11473,60,34,17,0.0 +11473,27,43.9,5,0.0 +11473,57,19.5,44,0.0 +11473,1,18,24,0.0 +11473,23,9,16,0.0 +11473,47,9.5,22,0.0 +11473,69,36,3,0.0 +11473,50,16.25,24,0.0 +11473,73,15,20,0.0 +11473,30,25.89,28,0.0 +11473,3,10,34,0.0 +11473,8,40,29,0.0 +11473,7,30,7,0.0 +11473,53,32.8,35,0.0 +11473,10,31,43,0.0 +11473,24,4.5,6,0.0 +11473,68,12.5,8,0.0 +11473,62,49.3,7,0.0 +11473,5,21.35,13,0.0 +11473,45,9.5,2,0.0 +11473,20,81,11,0.0 +11473,37,26,31,0.0 +11473,65,21.05,38,0.0 +11473,33,2.5,35,0.0 +11473,61,28.5,46,0.0 +11473,63,43.9,7,0.0 +11473,34,14,18,0.0 +11473,22,21,44,0.0 +11473,40,18.4,48,0.0 +11473,59,55,50,0.0 +11473,42,14,18,0.0 +11473,72,34.8,10,0.0 +11473,14,23.25,17,0.0 +11473,19,9.2,42,0.0 +11473,52,7,8,0.0 +11473,39,18,40,0.0 +11473,48,12.75,34,0.0 +11473,25,14,2,0.0 +11473,18,62.5,9,0.0 +11473,51,53,21,0.0 +11473,11,21,10,0.0 +11473,21,10,20,0.0 +11473,12,38,15,0.0 +11473,13,6,46,0.0 +11473,6,25,1,0.0 +11473,77,13,35,0.0 +11473,70,15,19,0.0 +11473,58,13.25,8,0.0 +11473,28,45.6,19,0.0 +11473,29,123.79,16,0.0 +11473,67,14,27,0.0 +11473,71,21.5,26,0.0 +11474,32,32,9,0.0 +11474,30,25.89,21,0.0 +11474,69,36,38,0.0 +11474,9,97,50,0.0 +11474,63,43.9,26,0.0 +11474,6,25,50,0.0 +11474,15,15.5,2,0.0 +11474,70,15,9,0.0 +11474,54,7.45,27,0.0 +11474,19,9.2,8,0.0 +11474,47,9.5,19,0.0 +11474,72,34.8,6,0.0 +11474,34,14,45,0.0 +11474,71,21.5,18,0.0 +11474,77,13,35,0.0 +11474,43,46,44,0.0 +11474,75,7.75,40,0.0 +11474,10,31,33,0.0 +11474,5,21.35,24,0.0 +11474,40,18.4,16,0.0 +11474,76,18,9,0.0 +11474,8,40,42,0.0 +11474,64,33.25,4,0.0 +11474,50,16.25,38,0.0 +11474,27,43.9,18,0.0 +11474,31,12.5,37,0.0 +11474,1,18,15,0.0 +11474,18,62.5,31,0.0 +11474,21,10,41,0.0 +11474,49,20,10,0.0 +11474,45,9.5,2,0.0 +11474,55,24,6,0.0 +11474,42,14,24,0.0 +11474,58,13.25,39,0.0 +11474,2,19,36,0.0 +11474,23,9,40,0.0 +11474,7,30,2,0.0 +11474,73,15,39,0.0 +11474,33,2.5,30,0.0 +11474,37,26,42,0.0 +11474,12,38,9,0.0 +11474,44,19.45,18,0.0 +11474,51,53,9,0.0 +11474,52,7,41,0.0 +11474,68,12.5,19,0.0 +11474,3,10,23,0.0 +11474,24,4.5,44,0.0 +11474,46,12,33,0.0 +11474,60,34,22,0.0 +11474,66,17,36,0.0 +11474,61,28.5,36,0.0 +11474,67,14,48,0.0 +11474,17,39,39,0.0 +11474,35,18,5,0.0 +11474,14,23.25,25,0.0 +11475,75,7.75,29,0.0 +11475,54,7.45,28,0.0 +11475,43,46,16,0.0 +11475,10,31,40,0.0 +11475,61,28.5,9,0.0 +11475,28,45.6,3,0.0 +11475,70,15,42,0.0 +11475,39,18,45,0.0 +11475,30,25.89,50,0.0 +11475,29,123.79,10,0.0 +11475,60,34,24,0.0 +11475,66,17,18,0.0 +11475,71,21.5,44,0.0 +11476,53,32.8,28,0.0 +11476,28,45.6,6,0.0 +11476,9,97,21,0.0 +11476,71,21.5,16,0.0 +11476,6,25,50,0.0 +11476,77,13,5,0.0 +11476,2,19,42,0.0 +11476,19,9.2,25,0.0 +11476,40,18.4,21,0.0 +11476,63,43.9,29,0.0 +11476,22,21,23,0.0 +11476,18,62.5,38,0.0 +11476,29,123.79,12,0.0 +11476,43,46,27,0.0 +11476,55,24,18,0.0 +11476,38,263.5,32,0.0 +11476,5,21.35,5,0.0 +11476,26,31.23,45,0.0 +11476,11,21,6,0.0 +11476,7,30,32,0.0 +11476,65,21.05,29,0.0 +11476,46,12,10,0.0 +11476,50,16.25,6,0.0 +11476,45,9.5,19,0.0 +11476,23,9,32,0.0 +11476,3,10,12,0.0 +11476,56,38,14,0.0 +11476,8,40,6,0.0 +11476,39,18,47,0.0 +11476,59,55,18,0.0 +11476,25,14,43,0.0 +11476,21,10,37,0.0 +11476,57,19.5,44,0.0 +11476,62,49.3,13,0.0 +11476,64,33.25,38,0.0 +11476,75,7.75,35,0.0 +11476,31,12.5,5,0.0 +11476,47,9.5,48,0.0 +11476,61,28.5,37,0.0 +11476,66,17,28,0.0 +11476,51,53,8,0.0 +11476,32,32,20,0.0 +11476,74,10,16,0.0 +11476,35,18,43,0.0 +11476,60,34,29,0.0 +11476,27,43.9,44,0.0 +11476,69,36,46,0.0 +11476,67,14,47,0.0 +11476,42,14,41,0.0 +11476,17,39,15,0.0 +11476,54,7.45,46,0.0 +11476,41,9.65,27,0.0 +11476,73,15,21,0.0 +11476,76,18,10,0.0 +11476,14,23.25,15,0.0 +11476,72,34.8,25,0.0 +11476,10,31,16,0.0 +11476,48,12.75,6,0.0 +11477,11,21,24,0.0 +11477,8,40,23,0.0 +11477,70,15,45,0.0 +11477,64,33.25,12,0.0 +11477,20,81,3,0.0 +11477,23,9,7,0.0 +11477,37,26,3,0.0 +11477,74,10,32,0.0 +11477,50,16.25,10,0.0 +11477,9,97,4,0.0 +11477,60,34,18,0.0 +11477,3,10,2,0.0 +11477,12,38,44,0.0 +11477,53,32.8,25,0.0 +11477,54,7.45,29,0.0 +11477,47,9.5,42,0.0 +11477,49,20,1,0.0 +11478,35,18,28,0.0 +11478,48,12.75,14,0.0 +11478,53,32.8,3,0.0 +11478,55,24,25,0.0 +11478,63,43.9,32,0.0 +11478,62,49.3,47,0.0 +11478,28,45.6,4,0.0 +11478,76,18,3,0.0 +11478,7,30,45,0.0 +11478,73,15,42,0.0 +11478,44,19.45,38,0.0 +11478,52,7,22,0.0 +11478,64,33.25,8,0.0 +11478,23,9,12,0.0 +11478,37,26,12,0.0 +11478,22,21,47,0.0 +11478,2,19,10,0.0 +11478,32,32,9,0.0 +11478,60,34,16,0.0 +11478,16,17.45,44,0.0 +11478,41,9.65,16,0.0 +11478,10,31,40,0.0 +11478,70,15,15,0.0 +11478,26,31.23,18,0.0 +11478,59,55,16,0.0 +11478,29,123.79,11,0.0 +11478,46,12,26,0.0 +11478,24,4.5,3,0.0 +11478,50,16.25,8,0.0 +11478,45,9.5,50,0.0 +11478,40,18.4,28,0.0 +11478,68,12.5,37,0.0 +11478,36,19,37,0.0 +11478,47,9.5,7,0.0 +11478,19,9.2,37,0.0 +11478,15,15.5,28,0.0 +11478,18,62.5,12,0.0 +11478,54,7.45,20,0.0 +11478,51,53,42,0.0 +11478,13,6,6,0.0 +11478,61,28.5,14,0.0 +11478,31,12.5,42,0.0 +11478,14,23.25,26,0.0 +11478,8,40,26,0.0 +11478,38,263.5,25,0.0 +11478,3,10,40,0.0 +11478,9,97,17,0.0 +11478,17,39,10,0.0 +11478,69,36,15,0.0 +11478,34,14,8,0.0 +11478,56,38,41,0.0 +11478,1,18,29,0.0 +11478,27,43.9,34,0.0 +11478,74,10,29,0.0 +11478,43,46,50,0.0 +11478,42,14,29,0.0 +11478,66,17,36,0.0 +11478,67,14,47,0.0 +11478,58,13.25,19,0.0 +11478,4,22,49,0.0 +11478,5,21.35,6,0.0 +11478,75,7.75,29,0.0 +11478,49,20,40,0.0 +11478,6,25,24,0.0 +11478,72,34.8,33,0.0 +11478,71,21.5,24,0.0 +11478,39,18,39,0.0 +11479,28,45.6,39,0.0 +11479,64,33.25,10,0.0 +11479,60,34,33,0.0 +11479,69,36,43,0.0 +11479,16,17.45,4,0.0 +11479,22,21,16,0.0 +11479,3,10,11,0.0 +11479,73,15,8,0.0 +11479,61,28.5,12,0.0 +11479,58,13.25,50,0.0 +11479,59,55,40,0.0 +11479,75,7.75,26,0.0 +11479,13,6,35,0.0 +11479,37,26,5,0.0 +11479,43,46,46,0.0 +11479,34,14,18,0.0 +11479,26,31.23,7,0.0 +11479,66,17,3,0.0 +11479,30,25.89,27,0.0 +11479,41,9.65,21,0.0 +11479,46,12,8,0.0 +11479,2,19,43,0.0 +11479,56,38,26,0.0 +11479,12,38,24,0.0 +11479,33,2.5,27,0.0 +11479,20,81,6,0.0 +11479,39,18,2,0.0 +11480,3,10,45,0.0 +11480,53,32.8,12,0.0 +11480,67,14,49,0.0 +11480,75,7.75,42,0.0 +11480,61,28.5,3,0.0 +11480,7,30,14,0.0 +11480,46,12,5,0.0 +11480,45,9.5,24,0.0 +11480,9,97,45,0.0 +11480,4,22,6,0.0 +11480,22,21,22,0.0 +11480,35,18,21,0.0 +11480,40,18.4,12,0.0 +11480,1,18,24,0.0 +11480,19,9.2,10,0.0 +11480,11,21,34,0.0 +11480,49,20,6,0.0 +11480,76,18,16,0.0 +11480,28,45.6,9,0.0 +11480,8,40,22,0.0 +11480,34,14,22,0.0 +11480,48,12.75,13,0.0 +11480,70,15,40,0.0 +11480,10,31,21,0.0 +11480,62,49.3,5,0.0 +11480,27,43.9,13,0.0 +11480,63,43.9,24,0.0 +11480,71,21.5,37,0.0 +11480,54,7.45,46,0.0 +11480,74,10,2,0.0 +11480,64,33.25,24,0.0 +11480,52,7,38,0.0 +11480,29,123.79,8,0.0 +11480,69,36,12,0.0 +11480,2,19,5,0.0 +11480,38,263.5,6,0.0 +11480,66,17,24,0.0 +11480,65,21.05,19,0.0 +11480,21,10,7,0.0 +11480,15,15.5,40,0.0 +11480,72,34.8,43,0.0 +11480,39,18,18,0.0 +11480,50,16.25,13,0.0 +11480,42,14,15,0.0 +11480,24,4.5,36,0.0 +11480,13,6,15,0.0 +11480,77,13,45,0.0 +11480,51,53,45,0.0 +11480,20,81,18,0.0 +11480,12,38,15,0.0 +11480,23,9,20,0.0 +11480,56,38,33,0.0 +11481,13,6,16,0.0 +11481,58,13.25,1,0.0 +11481,55,24,16,0.0 +11481,20,81,47,0.0 +11482,75,7.75,24,0.0 +11482,65,21.05,15,0.0 +11482,2,19,42,0.0 +11482,29,123.79,47,0.0 +11482,47,9.5,8,0.0 +11482,67,14,40,0.0 +11482,32,32,6,0.0 +11482,68,12.5,48,0.0 +11482,6,25,44,0.0 +11482,19,9.2,18,0.0 +11482,9,97,4,0.0 +11482,24,4.5,28,0.0 +11482,53,32.8,7,0.0 +11482,57,19.5,17,0.0 +11482,34,14,8,0.0 +11482,62,49.3,13,0.0 +11482,69,36,9,0.0 +11482,31,12.5,12,0.0 +11482,21,10,39,0.0 +11482,12,38,34,0.0 +11482,76,18,49,0.0 +11482,23,9,19,0.0 +11482,27,43.9,29,0.0 +11482,8,40,10,0.0 +11482,26,31.23,50,0.0 +11482,66,17,16,0.0 +11482,17,39,43,0.0 +11482,71,21.5,49,0.0 +11482,51,53,22,0.0 +11482,72,34.8,37,0.0 +11482,13,6,21,0.0 +11482,64,33.25,41,0.0 +11482,30,25.89,22,0.0 +11482,3,10,38,0.0 +11482,63,43.9,14,0.0 +11482,1,18,38,0.0 +11482,14,23.25,20,0.0 +11482,37,26,49,0.0 +11482,50,16.25,27,0.0 +11482,48,12.75,9,0.0 +11482,44,19.45,3,0.0 +11482,61,28.5,20,0.0 +11482,40,18.4,46,0.0 +11482,10,31,16,0.0 +11482,55,24,42,0.0 +11483,3,10,35,0.0 +11483,77,13,35,0.0 +11483,27,43.9,50,0.0 +11483,67,14,2,0.0 +11483,55,24,38,0.0 +11483,20,81,24,0.0 +11483,73,15,5,0.0 +11483,19,9.2,12,0.0 +11483,38,263.5,30,0.0 +11483,59,55,12,0.0 +11483,13,6,27,0.0 +11483,12,38,4,0.0 +11483,21,10,43,0.0 +11483,32,32,17,0.0 +11483,75,7.75,20,0.0 +11483,68,12.5,34,0.0 +11483,54,7.45,27,0.0 +11483,31,12.5,1,0.0 +11483,52,7,48,0.0 +11483,35,18,14,0.0 +11483,33,2.5,17,0.0 +11483,15,15.5,27,0.0 +11483,50,16.25,49,0.0 +11483,46,12,47,0.0 +11483,17,39,10,0.0 +11483,41,9.65,29,0.0 +11483,28,45.6,48,0.0 +11483,16,17.45,5,0.0 +11483,66,17,44,0.0 +11483,18,62.5,8,0.0 +11483,9,97,22,0.0 +11483,63,43.9,43,0.0 +11483,58,13.25,19,0.0 +11483,61,28.5,21,0.0 +11483,6,25,28,0.0 +11483,34,14,2,0.0 +11483,42,14,22,0.0 +11483,70,15,15,0.0 +11483,48,12.75,22,0.0 +11483,45,9.5,46,0.0 +11483,30,25.89,29,0.0 +11483,56,38,28,0.0 +11483,74,10,23,0.0 +11483,7,30,12,0.0 +11483,37,26,31,0.0 +11483,25,14,34,0.0 +11484,1,18,9,0.0 +11484,56,38,35,0.0 +11484,19,9.2,39,0.0 +11484,12,38,30,0.0 +11484,22,21,36,0.0 +11484,9,97,24,0.0 +11484,28,45.6,31,0.0 +11484,4,22,27,0.0 +11484,14,23.25,26,0.0 +11484,37,26,3,0.0 +11484,23,9,49,0.0 +11484,65,21.05,8,0.0 +11484,46,12,38,0.0 +11484,63,43.9,39,0.0 +11484,48,12.75,33,0.0 +11484,11,21,21,0.0 +11484,77,13,8,0.0 +11484,62,49.3,16,0.0 +11484,64,33.25,41,0.0 +11484,74,10,9,0.0 +11484,30,25.89,45,0.0 +11484,75,7.75,39,0.0 +11484,29,123.79,47,0.0 +11484,20,81,34,0.0 +11484,42,14,6,0.0 +11484,41,9.65,18,0.0 +11484,24,4.5,25,0.0 +11484,49,20,9,0.0 +11484,27,43.9,8,0.0 +11484,7,30,14,0.0 +11484,57,19.5,30,0.0 +11484,54,7.45,49,0.0 +11484,68,12.5,38,0.0 +11484,55,24,47,0.0 +11484,13,6,13,0.0 +11484,31,12.5,22,0.0 +11484,47,9.5,27,0.0 +11484,50,16.25,49,0.0 +11484,33,2.5,41,0.0 +11484,51,53,34,0.0 +11484,39,18,13,0.0 +11484,61,28.5,10,0.0 +11484,26,31.23,23,0.0 +11484,70,15,15,0.0 +11484,76,18,6,0.0 +11484,15,15.5,30,0.0 +11484,3,10,50,0.0 +11484,17,39,50,0.0 +11484,71,21.5,18,0.0 +11484,35,18,28,0.0 +11484,43,46,43,0.0 +11484,67,14,30,0.0 +11484,52,7,3,0.0 +11484,25,14,44,0.0 +11484,10,31,22,0.0 +11484,21,10,19,0.0 +11484,44,19.45,20,0.0 +11484,2,19,6,0.0 +11484,58,13.25,30,0.0 +11484,34,14,24,0.0 +11484,60,34,40,0.0 +11484,16,17.45,31,0.0 +11484,40,18.4,14,0.0 +11484,72,34.8,45,0.0 +11484,53,32.8,19,0.0 +11484,73,15,8,0.0 +11484,45,9.5,24,0.0 +11484,5,21.35,46,0.0 +11484,6,25,29,0.0 +11484,18,62.5,32,0.0 +11484,66,17,1,0.0 +11484,8,40,25,0.0 +11484,36,19,18,0.0 +11484,69,36,24,0.0 +11484,59,55,21,0.0 +11484,32,32,8,0.0 +11484,38,263.5,42,0.0 +11485,26,31.23,46,0.0 +11485,17,39,30,0.0 +11485,67,14,50,0.0 +11485,46,12,28,0.0 +11485,39,18,37,0.0 +11485,71,21.5,8,0.0 +11485,5,21.35,46,0.0 +11485,32,32,38,0.0 +11485,43,46,48,0.0 +11485,74,10,37,0.0 +11485,21,10,20,0.0 +11485,41,9.65,32,0.0 +11485,13,6,37,0.0 +11485,6,25,20,0.0 +11485,9,97,3,0.0 +11485,16,17.45,39,0.0 +11485,30,25.89,28,0.0 +11485,61,28.5,6,0.0 +11485,20,81,38,0.0 +11485,40,18.4,15,0.0 +11485,65,21.05,46,0.0 +11485,54,7.45,6,0.0 +11485,51,53,10,0.0 +11485,29,123.79,27,0.0 +11485,62,49.3,4,0.0 +11485,58,13.25,36,0.0 +11485,38,263.5,40,0.0 +11485,24,4.5,12,0.0 +11485,18,62.5,11,0.0 +11485,77,13,28,0.0 +11485,75,7.75,14,0.0 +11485,63,43.9,22,0.0 +11485,59,55,9,0.0 +11485,57,19.5,2,0.0 +11485,12,38,31,0.0 +11485,25,14,3,0.0 +11485,66,17,26,0.0 +11485,35,18,42,0.0 +11485,48,12.75,32,0.0 +11485,76,18,37,0.0 +11485,44,19.45,47,0.0 +11485,42,14,27,0.0 +11485,53,32.8,12,0.0 +11485,8,40,32,0.0 +11485,11,21,11,0.0 +11485,72,34.8,15,0.0 +11485,49,20,4,0.0 +11485,36,19,14,0.0 +11485,50,16.25,42,0.0 +11485,10,31,9,0.0 +11485,23,9,11,0.0 +11485,37,26,6,0.0 +11485,52,7,1,0.0 +11485,28,45.6,50,0.0 +11485,4,22,17,0.0 +11485,7,30,26,0.0 +11485,27,43.9,47,0.0 +11485,70,15,13,0.0 +11485,73,15,8,0.0 +11485,68,12.5,18,0.0 +11485,45,9.5,39,0.0 +11485,1,18,10,0.0 +11485,22,21,13,0.0 +11485,64,33.25,14,0.0 +11485,14,23.25,26,0.0 +11485,33,2.5,33,0.0 +11485,31,12.5,49,0.0 +11485,2,19,41,0.0 +11485,69,36,49,0.0 +11485,56,38,41,0.0 +11485,55,24,39,0.0 +11485,60,34,50,0.0 +11485,47,9.5,45,0.0 +11485,15,15.5,41,0.0 +11485,19,9.2,36,0.0 +11485,3,10,30,0.0 +11485,34,14,42,0.0 +11486,6,25,41,0.0 +11486,50,16.25,25,0.0 +11486,55,24,24,0.0 +11486,53,32.8,2,0.0 +11486,61,28.5,43,0.0 +11486,18,62.5,10,0.0 +11486,73,15,7,0.0 +11486,65,21.05,8,0.0 +11486,66,17,19,0.0 +11487,73,15,31,0.0 +11487,47,9.5,15,0.0 +11487,32,32,2,0.0 +11487,29,123.79,37,0.0 +11487,5,21.35,3,0.0 +11487,17,39,49,0.0 +11487,19,9.2,47,0.0 +11487,57,19.5,25,0.0 +11487,7,30,40,0.0 +11487,44,19.45,19,0.0 +11487,76,18,42,0.0 +11487,41,9.65,19,0.0 +11487,42,14,10,0.0 +11487,14,23.25,6,0.0 +11487,67,14,35,0.0 +11487,15,15.5,34,0.0 +11487,23,9,7,0.0 +11487,30,25.89,48,0.0 +11487,10,31,39,0.0 +11487,36,19,21,0.0 +11487,46,12,31,0.0 +11487,51,53,32,0.0 +11487,45,9.5,44,0.0 +11487,75,7.75,14,0.0 +11487,8,40,45,0.0 +11487,71,21.5,34,0.0 +11487,56,38,27,0.0 +11487,28,45.6,42,0.0 +11487,6,25,45,0.0 +11487,74,10,30,0.0 +11487,38,263.5,3,0.0 +11487,68,12.5,13,0.0 +11487,40,18.4,15,0.0 +11487,58,13.25,16,0.0 +11487,61,28.5,18,0.0 +11487,54,7.45,41,0.0 +11487,20,81,42,0.0 +11487,33,2.5,10,0.0 +11487,65,21.05,48,0.0 +11487,50,16.25,1,0.0 +11487,1,18,44,0.0 +11487,4,22,43,0.0 +11487,37,26,38,0.0 +11487,62,49.3,29,0.0 +11487,63,43.9,28,0.0 +11487,12,38,41,0.0 +11487,26,31.23,49,0.0 +11487,31,12.5,30,0.0 +11487,64,33.25,49,0.0 +11487,22,21,11,0.0 +11487,18,62.5,50,0.0 +11487,52,7,33,0.0 +11487,25,14,18,0.0 +11487,3,10,1,0.0 +11487,72,34.8,44,0.0 +11487,48,12.75,48,0.0 +11487,53,32.8,50,0.0 +11487,39,18,9,0.0 +11487,35,18,7,0.0 +11487,13,6,50,0.0 +11487,24,4.5,3,0.0 +11487,60,34,39,0.0 +11487,77,13,30,0.0 +11487,21,10,28,0.0 +11487,27,43.9,27,0.0 +11487,34,14,44,0.0 +11487,43,46,28,0.0 +11487,70,15,12,0.0 +11487,55,24,16,0.0 +11487,2,19,23,0.0 +11487,59,55,35,0.0 +11487,16,17.45,19,0.0 +11487,66,17,28,0.0 +11487,49,20,39,0.0 +11487,11,21,43,0.0 +11487,69,36,4,0.0 +11488,19,9.2,39,0.0 +11488,35,18,22,0.0 +11488,40,18.4,29,0.0 +11488,76,18,46,0.0 +11488,43,46,8,0.0 +11488,59,55,38,0.0 +11488,22,21,28,0.0 +11488,33,2.5,12,0.0 +11488,13,6,1,0.0 +11488,48,12.75,9,0.0 +11488,70,15,1,0.0 +11488,75,7.75,26,0.0 +11488,44,19.45,41,0.0 +11488,21,10,6,0.0 +11488,1,18,36,0.0 +11488,64,33.25,22,0.0 +11488,63,43.9,33,0.0 +11488,5,21.35,22,0.0 +11488,49,20,28,0.0 +11488,46,12,18,0.0 +11488,18,62.5,28,0.0 +11488,26,31.23,19,0.0 +11488,73,15,12,0.0 +11488,2,19,31,0.0 +11488,72,34.8,29,0.0 +11488,10,31,29,0.0 +11488,77,13,20,0.0 +11488,25,14,25,0.0 +11488,39,18,34,0.0 +11488,45,9.5,22,0.0 +11488,4,22,29,0.0 +11488,23,9,23,0.0 +11488,32,32,40,0.0 +11488,68,12.5,11,0.0 +11488,17,39,8,0.0 +11488,57,19.5,11,0.0 +11488,30,25.89,4,0.0 +11488,9,97,2,0.0 +11488,71,21.5,2,0.0 +11488,20,81,6,0.0 +11488,54,7.45,17,0.0 +11488,61,28.5,30,0.0 +11488,8,40,16,0.0 +11488,74,10,5,0.0 +11488,11,21,9,0.0 +11488,6,25,30,0.0 +11488,52,7,7,0.0 +11488,69,36,19,0.0 +11488,12,38,32,0.0 +11488,36,19,27,0.0 +11488,38,263.5,45,0.0 +11488,29,123.79,21,0.0 +11488,24,4.5,20,0.0 +11488,66,17,16,0.0 +11488,53,32.8,48,0.0 +11488,3,10,25,0.0 +11488,41,9.65,45,0.0 +11488,56,38,22,0.0 +11488,62,49.3,35,0.0 +11488,7,30,46,0.0 +11489,62,49.3,24,0.0 +11489,55,24,42,0.0 +11489,1,18,28,0.0 +11489,13,6,45,0.0 +11489,43,46,31,0.0 +11489,77,13,48,0.0 +11489,10,31,29,0.0 +11490,1,18,37,0.0 +11490,18,62.5,24,0.0 +11490,5,21.35,47,0.0 +11490,72,34.8,24,0.0 +11490,21,10,47,0.0 +11490,51,53,38,0.0 +11490,28,45.6,19,0.0 +11490,75,7.75,42,0.0 +11490,55,24,1,0.0 +11490,2,19,19,0.0 +11490,60,34,18,0.0 +11491,73,15,14,0.0 +11491,69,36,43,0.0 +11491,51,53,7,0.0 +11491,23,9,19,0.0 +11491,42,14,24,0.0 +11491,68,12.5,38,0.0 +11491,53,32.8,18,0.0 +11491,30,25.89,35,0.0 +11491,26,31.23,27,0.0 +11491,40,18.4,29,0.0 +11491,72,34.8,4,0.0 +11491,2,19,49,0.0 +11491,20,81,36,0.0 +11491,1,18,27,0.0 +11491,56,38,17,0.0 +11491,19,9.2,23,0.0 +11491,65,21.05,34,0.0 +11491,60,34,17,0.0 +11491,66,17,7,0.0 +11492,76,18,7,0.0 +11492,74,10,45,0.0 +11492,16,17.45,27,0.0 +11492,47,9.5,31,0.0 +11492,8,40,38,0.0 +11492,25,14,22,0.0 +11492,50,16.25,29,0.0 +11492,18,62.5,13,0.0 +11492,22,21,10,0.0 +11492,44,19.45,37,0.0 +11492,57,19.5,45,0.0 +11492,67,14,39,0.0 +11492,54,7.45,21,0.0 +11492,10,31,4,0.0 +11492,19,9.2,50,0.0 +11492,68,12.5,12,0.0 +11492,2,19,16,0.0 +11492,49,20,31,0.0 +11492,51,53,22,0.0 +11492,60,34,14,0.0 +11492,14,23.25,28,0.0 +11492,4,22,41,0.0 +11492,21,10,41,0.0 +11492,71,21.5,8,0.0 +11492,55,24,2,0.0 +11492,75,7.75,47,0.0 +11492,17,39,49,0.0 +11492,64,33.25,20,0.0 +11492,12,38,38,0.0 +11492,52,7,12,0.0 +11492,1,18,33,0.0 +11492,23,9,28,0.0 +11492,20,81,33,0.0 +11492,39,18,21,0.0 +11492,11,21,8,0.0 +11492,63,43.9,4,0.0 +11492,32,32,48,0.0 +11492,58,13.25,26,0.0 +11492,15,15.5,9,0.0 +11492,72,34.8,17,0.0 +11492,31,12.5,17,0.0 +11492,77,13,21,0.0 +11492,27,43.9,34,0.0 +11492,42,14,42,0.0 +11492,65,21.05,43,0.0 +11492,24,4.5,19,0.0 +11492,33,2.5,37,0.0 +11492,38,263.5,25,0.0 +11492,5,21.35,17,0.0 +11492,61,28.5,41,0.0 +11492,48,12.75,15,0.0 +11492,30,25.89,32,0.0 +11493,38,263.5,9,0.0 +11493,53,32.8,5,0.0 +11493,61,28.5,14,0.0 +11493,68,12.5,29,0.0 +11493,42,14,41,0.0 +11493,49,20,7,0.0 +11493,46,12,33,0.0 +11493,50,16.25,30,0.0 +11493,76,18,33,0.0 +11493,45,9.5,31,0.0 +11493,35,18,34,0.0 +11493,19,9.2,13,0.0 +11493,33,2.5,16,0.0 +11493,18,62.5,10,0.0 +11493,5,21.35,30,0.0 +11493,7,30,9,0.0 +11493,27,43.9,23,0.0 +11493,15,15.5,46,0.0 +11493,34,14,33,0.0 +11493,2,19,12,0.0 +11493,25,14,20,0.0 +11493,57,19.5,11,0.0 +11493,59,55,37,0.0 +11493,48,12.75,35,0.0 +11493,40,18.4,45,0.0 +11493,30,25.89,50,0.0 +11493,29,123.79,19,0.0 +11493,37,26,36,0.0 +11493,63,43.9,7,0.0 +11493,26,31.23,4,0.0 +11493,43,46,16,0.0 +11493,74,10,44,0.0 +11493,66,17,3,0.0 +11493,12,38,14,0.0 +11493,60,34,37,0.0 +11493,70,15,49,0.0 +11493,1,18,5,0.0 +11493,16,17.45,4,0.0 +11493,4,22,43,0.0 +11493,24,4.5,28,0.0 +11493,8,40,11,0.0 +11493,41,9.65,46,0.0 +11493,52,7,40,0.0 +11493,55,24,4,0.0 +11493,72,34.8,4,0.0 +11493,21,10,15,0.0 +11493,64,33.25,6,0.0 +11493,14,23.25,2,0.0 +11493,6,25,16,0.0 +11493,51,53,8,0.0 +11493,71,21.5,42,0.0 +11493,44,19.45,24,0.0 +11493,73,15,37,0.0 +11494,64,33.25,24,0.0 +11494,25,14,25,0.0 +11494,69,36,10,0.0 +11494,19,9.2,39,0.0 +11494,26,31.23,35,0.0 +11494,40,18.4,17,0.0 +11494,71,21.5,2,0.0 +11494,39,18,41,0.0 +11494,31,12.5,7,0.0 +11494,59,55,13,0.0 +11494,60,34,26,0.0 +11494,55,24,28,0.0 +11494,48,12.75,22,0.0 +11494,44,19.45,27,0.0 +11494,42,14,8,0.0 +11494,70,15,40,0.0 +11494,9,97,49,0.0 +11494,18,62.5,43,0.0 +11494,24,4.5,2,0.0 +11494,73,15,24,0.0 +11494,38,263.5,5,0.0 +11494,68,12.5,26,0.0 +11494,65,21.05,17,0.0 +11494,45,9.5,22,0.0 +11494,52,7,46,0.0 +11494,2,19,5,0.0 +11494,53,32.8,33,0.0 +11494,66,17,17,0.0 +11495,47,9.5,39,0.0 +11495,61,28.5,49,0.0 +11495,16,17.45,20,0.0 +11495,33,2.5,32,0.0 +11495,13,6,32,0.0 +11495,51,53,27,0.0 +11495,75,7.75,16,0.0 +11495,39,18,13,0.0 +11495,12,38,4,0.0 +11495,26,31.23,49,0.0 +11495,31,12.5,17,0.0 +11495,67,14,48,0.0 +11495,68,12.5,27,0.0 +11495,10,31,38,0.0 +11495,34,14,36,0.0 +11495,72,34.8,13,0.0 +11495,60,34,46,0.0 +11495,42,14,5,0.0 +11495,56,38,13,0.0 +11495,7,30,32,0.0 +11495,53,32.8,35,0.0 +11495,43,46,15,0.0 +11495,54,7.45,28,0.0 +11495,77,13,16,0.0 +11495,27,43.9,39,0.0 +11495,64,33.25,49,0.0 +11495,8,40,43,0.0 +11495,37,26,27,0.0 +11495,6,25,2,0.0 +11495,41,9.65,23,0.0 +11495,29,123.79,49,0.0 +11495,20,81,34,0.0 +11495,63,43.9,24,0.0 +11495,73,15,17,0.0 +11495,46,12,47,0.0 +11495,59,55,36,0.0 +11495,5,21.35,47,0.0 +11495,14,23.25,43,0.0 +11495,55,24,3,0.0 +11495,4,22,33,0.0 +11495,30,25.89,19,0.0 +11495,23,9,31,0.0 +11495,40,18.4,9,0.0 +11495,45,9.5,21,0.0 +11495,21,10,16,0.0 +11495,18,62.5,1,0.0 +11495,22,21,32,0.0 +11495,50,16.25,10,0.0 +11495,15,15.5,10,0.0 +11495,17,39,32,0.0 +11495,71,21.5,22,0.0 +11495,57,19.5,34,0.0 +11495,9,97,3,0.0 +11495,49,20,34,0.0 +11495,1,18,42,0.0 +11495,66,17,41,0.0 +11495,69,36,45,0.0 +11495,3,10,17,0.0 +11495,2,19,20,0.0 +11495,44,19.45,9,0.0 +11495,32,32,41,0.0 +11495,11,21,34,0.0 +11495,65,21.05,37,0.0 +11495,70,15,10,0.0 +11495,38,263.5,50,0.0 +11495,48,12.75,30,0.0 +11495,35,18,28,0.0 +11495,58,13.25,35,0.0 +11495,76,18,2,0.0 +11495,28,45.6,47,0.0 +11495,74,10,45,0.0 +11495,19,9.2,22,0.0 +11495,52,7,2,0.0 +11495,62,49.3,14,0.0 +11495,25,14,31,0.0 +11495,24,4.5,28,0.0 +11495,36,19,16,0.0 +11496,18,62.5,22,0.0 +11496,31,12.5,11,0.0 +11496,49,20,25,0.0 +11496,72,34.8,19,0.0 +11496,56,38,24,0.0 +11496,9,97,16,0.0 +11496,34,14,29,0.0 +11496,73,15,38,0.0 +11496,63,43.9,37,0.0 +11496,21,10,5,0.0 +11496,68,12.5,17,0.0 +11496,39,18,27,0.0 +11496,22,21,28,0.0 +11496,55,24,13,0.0 +11496,45,9.5,10,0.0 +11496,13,6,46,0.0 +11496,64,33.25,28,0.0 +11496,29,123.79,40,0.0 +11496,52,7,49,0.0 +11496,54,7.45,10,0.0 +11496,59,55,6,0.0 +11496,46,12,32,0.0 +11496,19,9.2,8,0.0 +11496,24,4.5,1,0.0 +11496,27,43.9,38,0.0 +11496,77,13,45,0.0 +11496,1,18,48,0.0 +11496,28,45.6,43,0.0 +11496,38,263.5,13,0.0 +11496,6,25,4,0.0 +11496,17,39,13,0.0 +11496,43,46,37,0.0 +11496,8,40,16,0.0 +11496,57,19.5,3,0.0 +11496,75,7.75,46,0.0 +11496,47,9.5,44,0.0 +11496,58,13.25,4,0.0 +11496,11,21,39,0.0 +11496,16,17.45,16,0.0 +11496,60,34,45,0.0 +11496,61,28.5,2,0.0 +11496,10,31,3,0.0 +11496,41,9.65,8,0.0 +11496,23,9,36,0.0 +11496,50,16.25,28,0.0 +11496,33,2.5,18,0.0 +11496,5,21.35,35,0.0 +11496,66,17,20,0.0 +11496,62,49.3,37,0.0 +11496,25,14,20,0.0 +11496,20,81,11,0.0 +11496,53,32.8,31,0.0 +11496,3,10,34,0.0 +11497,57,19.5,47,0.0 +11497,29,123.79,24,0.0 +11497,36,19,36,0.0 +11497,63,43.9,7,0.0 +11497,34,14,45,0.0 +11497,75,7.75,4,0.0 +11498,48,12.75,13,0.0 +11498,57,19.5,44,0.0 +11498,46,12,15,0.0 +11498,76,18,34,0.0 +11498,71,21.5,40,0.0 +11498,75,7.75,30,0.0 +11498,25,14,33,0.0 +11498,14,23.25,31,0.0 +11498,23,9,8,0.0 +11498,21,10,1,0.0 +11498,18,62.5,21,0.0 +11498,35,18,47,0.0 +11498,6,25,12,0.0 +11498,7,30,12,0.0 +11498,52,7,10,0.0 +11498,39,18,8,0.0 +11498,11,21,11,0.0 +11498,29,123.79,41,0.0 +11498,70,15,46,0.0 +11498,16,17.45,11,0.0 +11498,54,7.45,4,0.0 +11498,47,9.5,26,0.0 +11498,37,26,18,0.0 +11498,38,263.5,30,0.0 +11498,58,13.25,6,0.0 +11498,51,53,1,0.0 +11498,41,9.65,36,0.0 +11498,65,21.05,33,0.0 +11498,4,22,40,0.0 +11498,49,20,20,0.0 +11498,8,40,6,0.0 +11498,66,17,15,0.0 +11498,72,34.8,11,0.0 +11498,50,16.25,17,0.0 +11498,24,4.5,45,0.0 +11498,5,21.35,34,0.0 +11498,53,32.8,12,0.0 +11498,63,43.9,25,0.0 +11498,20,81,36,0.0 +11498,34,14,38,0.0 +11498,9,97,47,0.0 +11498,15,15.5,27,0.0 +11498,62,49.3,3,0.0 +11498,74,10,2,0.0 +11498,22,21,9,0.0 +11498,61,28.5,15,0.0 +11498,59,55,23,0.0 +11498,3,10,41,0.0 +11498,55,24,37,0.0 +11498,30,25.89,19,0.0 +11498,68,12.5,44,0.0 +11498,64,33.25,4,0.0 +11498,32,32,19,0.0 +11498,42,14,3,0.0 +11498,43,46,26,0.0 +11498,73,15,11,0.0 +11498,69,36,29,0.0 +11498,19,9.2,33,0.0 +11498,77,13,8,0.0 +11498,60,34,5,0.0 +11498,31,12.5,30,0.0 +11498,28,45.6,15,0.0 +11499,30,25.89,34,0.0 +11499,10,31,42,0.0 +11499,73,15,26,0.0 +11499,20,81,50,0.0 +11499,19,9.2,16,0.0 +11499,58,13.25,36,0.0 +11499,27,43.9,50,0.0 +11499,17,39,21,0.0 +11499,48,12.75,18,0.0 +11499,45,9.5,1,0.0 +11499,59,55,26,0.0 +11499,16,17.45,8,0.0 +11499,53,32.8,6,0.0 +11499,50,16.25,46,0.0 +11499,5,21.35,16,0.0 +11500,31,12.5,6,0.0 +11500,6,25,4,0.0 +11501,56,38,46,0.0 +11501,51,53,20,0.0 +11501,40,18.4,13,0.0 +11501,7,30,1,0.0 +11501,21,10,17,0.0 +11501,25,14,22,0.0 +11501,20,81,43,0.0 +11501,12,38,23,0.0 +11501,15,15.5,1,0.0 +11501,42,14,44,0.0 +11501,23,9,49,0.0 +11501,68,12.5,21,0.0 +11501,33,2.5,2,0.0 +11501,75,7.75,31,0.0 +11501,52,7,24,0.0 +11501,74,10,37,0.0 +11501,8,40,49,0.0 +11501,41,9.65,37,0.0 +11501,16,17.45,22,0.0 +11501,61,28.5,45,0.0 +11501,9,97,40,0.0 +11501,57,19.5,38,0.0 +11501,18,62.5,10,0.0 +11501,46,12,48,0.0 +11502,20,81,40,0.0 +11502,10,31,7,0.0 +11502,51,53,33,0.0 +11502,46,12,37,0.0 +11502,17,39,15,0.0 +11502,42,14,48,0.0 +11502,61,28.5,2,0.0 +11502,13,6,19,0.0 +11502,43,46,29,0.0 +11502,53,32.8,21,0.0 +11502,31,12.5,4,0.0 +11502,4,22,8,0.0 +11502,41,9.65,43,0.0 +11502,52,7,18,0.0 +11502,66,17,14,0.0 +11502,25,14,43,0.0 +11502,27,43.9,8,0.0 +11502,39,18,33,0.0 +11502,47,9.5,18,0.0 +11502,70,15,36,0.0 +11502,2,19,44,0.0 +11502,64,33.25,1,0.0 +11502,50,16.25,31,0.0 +11502,68,12.5,21,0.0 +11502,3,10,47,0.0 +11502,67,14,35,0.0 +11502,9,97,40,0.0 +11503,57,19.5,2,0.0 +11503,45,9.5,38,0.0 +11503,8,40,15,0.0 +11503,69,36,28,0.0 +11503,58,13.25,28,0.0 +11503,13,6,43,0.0 +11503,41,9.65,13,0.0 +11503,73,15,6,0.0 +11503,38,263.5,37,0.0 +11503,47,9.5,20,0.0 +11503,19,9.2,30,0.0 +11503,72,34.8,32,0.0 +11503,49,20,45,0.0 +11503,71,21.5,14,0.0 +11503,22,21,27,0.0 +11503,54,7.45,2,0.0 +11503,21,10,16,0.0 +11503,16,17.45,43,0.0 +11503,17,39,35,0.0 +11503,77,13,20,0.0 +11503,15,15.5,35,0.0 +11503,28,45.6,30,0.0 +11503,23,9,25,0.0 +11503,3,10,1,0.0 +11503,63,43.9,9,0.0 +11503,42,14,13,0.0 +11503,6,25,39,0.0 +11503,20,81,28,0.0 +11503,24,4.5,30,0.0 +11503,61,28.5,43,0.0 +11503,74,10,34,0.0 +11503,53,32.8,24,0.0 +11503,59,55,3,0.0 +11503,18,62.5,8,0.0 +11503,34,14,13,0.0 +11503,62,49.3,36,0.0 +11503,68,12.5,44,0.0 +11503,60,34,8,0.0 +11503,12,38,46,0.0 +11503,76,18,14,0.0 +11503,10,31,44,0.0 +11503,9,97,34,0.0 +11503,50,16.25,20,0.0 +11503,52,7,1,0.0 +11503,33,2.5,12,0.0 +11503,70,15,24,0.0 +11503,4,22,41,0.0 +11503,67,14,50,0.0 +11503,43,46,20,0.0 +11503,75,7.75,32,0.0 +11503,55,24,13,0.0 +11503,66,17,27,0.0 +11503,2,19,25,0.0 +11503,25,14,24,0.0 +11503,1,18,41,0.0 +11503,48,12.75,4,0.0 +11503,36,19,24,0.0 +11503,56,38,37,0.0 +11503,40,18.4,27,0.0 +11503,31,12.5,16,0.0 +11503,7,30,39,0.0 +11503,39,18,21,0.0 +11503,51,53,30,0.0 +11503,26,31.23,46,0.0 +11503,5,21.35,34,0.0 +11503,27,43.9,27,0.0 +11504,73,15,2,0.0 +11504,62,49.3,36,0.0 +11504,54,7.45,14,0.0 +11504,5,21.35,7,0.0 +11504,8,40,37,0.0 +11504,50,16.25,44,0.0 +11504,46,12,47,0.0 +11504,15,15.5,5,0.0 +11504,23,9,27,0.0 +11504,12,38,40,0.0 +11504,65,21.05,31,0.0 +11504,26,31.23,45,0.0 +11504,77,13,38,0.0 +11504,13,6,47,0.0 +11504,3,10,48,0.0 +11504,72,34.8,30,0.0 +11504,28,45.6,40,0.0 +11504,76,18,38,0.0 +11504,66,17,9,0.0 +11504,36,19,25,0.0 +11504,9,97,43,0.0 +11504,16,17.45,26,0.0 +11504,55,24,10,0.0 +11504,67,14,44,0.0 +11504,69,36,18,0.0 +11504,27,43.9,15,0.0 +11504,44,19.45,28,0.0 +11504,63,43.9,43,0.0 +11504,61,28.5,13,0.0 +11504,74,10,39,0.0 +11504,1,18,43,0.0 +11504,75,7.75,46,0.0 +11504,14,23.25,10,0.0 +11504,20,81,7,0.0 +11504,21,10,6,0.0 +11504,64,33.25,44,0.0 +11504,58,13.25,29,0.0 +11504,68,12.5,10,0.0 +11504,35,18,30,0.0 +11504,48,12.75,49,0.0 +11504,7,30,43,0.0 +11504,37,26,1,0.0 +11504,6,25,32,0.0 +11504,19,9.2,44,0.0 +11504,17,39,10,0.0 +11504,59,55,5,0.0 +11504,47,9.5,14,0.0 +11504,33,2.5,49,0.0 +11504,51,53,17,0.0 +11504,56,38,30,0.0 +11504,53,32.8,45,0.0 +11504,24,4.5,15,0.0 +11504,32,32,10,0.0 +11504,22,21,36,0.0 +11504,42,14,23,0.0 +11504,41,9.65,48,0.0 +11504,45,9.5,25,0.0 +11505,64,33.25,43,0.0 +11505,58,13.25,15,0.0 +11505,32,32,6,0.0 +11505,30,25.89,5,0.0 +11505,29,123.79,21,0.0 +11505,50,16.25,24,0.0 +11505,53,32.8,19,0.0 +11505,40,18.4,38,0.0 +11505,27,43.9,14,0.0 +11505,9,97,24,0.0 +11505,18,62.5,25,0.0 +11505,11,21,42,0.0 +11505,37,26,4,0.0 +11505,52,7,18,0.0 +11505,61,28.5,38,0.0 +11505,68,12.5,12,0.0 +11505,4,22,22,0.0 +11505,35,18,17,0.0 +11505,31,12.5,18,0.0 +11505,46,12,50,0.0 +11505,22,21,34,0.0 +11505,14,23.25,1,0.0 +11505,70,15,26,0.0 +11505,21,10,31,0.0 +11505,47,9.5,38,0.0 +11505,71,21.5,45,0.0 +11505,76,18,30,0.0 +11505,57,19.5,35,0.0 +11505,69,36,31,0.0 +11505,25,14,6,0.0 +11505,1,18,37,0.0 +11505,17,39,36,0.0 +11505,44,19.45,32,0.0 +11505,16,17.45,43,0.0 +11505,23,9,1,0.0 +11505,74,10,8,0.0 +11505,28,45.6,35,0.0 +11505,65,21.05,41,0.0 +11505,43,46,34,0.0 +11505,51,53,19,0.0 +11505,48,12.75,48,0.0 +11505,55,24,6,0.0 +11505,6,25,35,0.0 +11505,33,2.5,35,0.0 +11505,2,19,28,0.0 +11505,8,40,10,0.0 +11505,24,4.5,14,0.0 +11505,45,9.5,8,0.0 +11505,54,7.45,32,0.0 +11505,77,13,36,0.0 +11505,49,20,22,0.0 +11505,41,9.65,43,0.0 +11505,13,6,18,0.0 +11505,42,14,40,0.0 +11506,37,26,22,0.0 +11506,62,49.3,43,0.0 +11506,77,13,20,0.0 +11506,25,14,41,0.0 +11506,56,38,46,0.0 +11506,55,24,49,0.0 +11506,31,12.5,5,0.0 +11506,21,10,37,0.0 +11506,60,34,20,0.0 +11506,43,46,48,0.0 +11506,73,15,10,0.0 +11506,2,19,8,0.0 +11507,8,40,44,0.0 +11507,42,14,2,0.0 +11507,38,263.5,11,0.0 +11507,17,39,35,0.0 +11507,62,49.3,29,0.0 +11507,9,97,19,0.0 +11507,63,43.9,9,0.0 +11507,22,21,19,0.0 +11507,16,17.45,24,0.0 +11507,72,34.8,31,0.0 +11507,48,12.75,28,0.0 +11507,5,21.35,34,0.0 +11507,44,19.45,22,0.0 +11507,33,2.5,41,0.0 +11507,4,22,12,0.0 +11507,37,26,45,0.0 +11507,27,43.9,38,0.0 +11507,65,21.05,4,0.0 +11507,29,123.79,30,0.0 +11507,76,18,27,0.0 +11507,19,9.2,47,0.0 +11507,69,36,17,0.0 +11507,64,33.25,21,0.0 +11507,68,12.5,45,0.0 +11507,11,21,13,0.0 +11507,24,4.5,27,0.0 +11507,73,15,23,0.0 +11507,35,18,27,0.0 +11507,39,18,43,0.0 +11507,66,17,11,0.0 +11507,70,15,14,0.0 +11507,26,31.23,14,0.0 +11507,45,9.5,24,0.0 +11507,67,14,23,0.0 +11507,47,9.5,45,0.0 +11507,13,6,9,0.0 +11507,60,34,2,0.0 +11507,36,19,36,0.0 +11507,41,9.65,19,0.0 +11507,23,9,16,0.0 +11507,2,19,21,0.0 +11507,50,16.25,37,0.0 +11507,18,62.5,28,0.0 +11507,58,13.25,31,0.0 +11507,3,10,28,0.0 +11507,10,31,21,0.0 +11507,21,10,10,0.0 +11507,14,23.25,25,0.0 +11508,65,21.05,27,0.0 +11508,75,7.75,18,0.0 +11508,30,25.89,41,0.0 +11508,54,7.45,26,0.0 +11508,43,46,17,0.0 +11508,61,28.5,14,0.0 +11508,71,21.5,30,0.0 +11508,40,18.4,30,0.0 +11508,23,9,23,0.0 +11508,57,19.5,3,0.0 +11508,15,15.5,11,0.0 +11508,16,17.45,32,0.0 +11508,68,12.5,42,0.0 +11508,55,24,26,0.0 +11508,6,25,38,0.0 +11508,31,12.5,32,0.0 +11508,1,18,48,0.0 +11508,5,21.35,20,0.0 +11508,38,263.5,40,0.0 +11508,49,20,4,0.0 +11508,14,23.25,20,0.0 +11508,59,55,31,0.0 +11508,45,9.5,38,0.0 +11508,20,81,16,0.0 +11508,39,18,38,0.0 +11509,77,13,47,0.0 +11509,46,12,31,0.0 +11509,36,19,27,0.0 +11509,52,7,37,0.0 +11509,76,18,29,0.0 +11509,30,25.89,41,0.0 +11509,59,55,10,0.0 +11509,66,17,36,0.0 +11509,74,10,25,0.0 +11509,38,263.5,8,0.0 +11509,15,15.5,38,0.0 +11509,56,38,49,0.0 +11509,48,12.75,31,0.0 +11509,61,28.5,47,0.0 +11509,51,53,1,0.0 +11509,64,33.25,50,0.0 +11509,55,24,34,0.0 +11509,47,9.5,42,0.0 +11509,18,62.5,5,0.0 +11509,10,31,39,0.0 +11509,4,22,8,0.0 +11509,68,12.5,31,0.0 +11509,60,34,25,0.0 +11509,65,21.05,13,0.0 +11509,33,2.5,18,0.0 +11509,19,9.2,48,0.0 +11509,27,43.9,49,0.0 +11509,29,123.79,23,0.0 +11509,7,30,22,0.0 +11509,63,43.9,30,0.0 +11509,45,9.5,36,0.0 +11509,9,97,47,0.0 +11509,31,12.5,35,0.0 +11509,70,15,50,0.0 +11509,5,21.35,18,0.0 +11509,13,6,9,0.0 +11509,26,31.23,31,0.0 +11509,25,14,32,0.0 +11509,8,40,34,0.0 +11509,6,25,46,0.0 +11509,20,81,24,0.0 +11509,71,21.5,9,0.0 +11509,75,7.75,26,0.0 +11509,67,14,20,0.0 +11509,12,38,21,0.0 +11509,34,14,35,0.0 +11509,22,21,21,0.0 +11509,72,34.8,20,0.0 +11509,11,21,20,0.0 +11509,50,16.25,15,0.0 +11509,16,17.45,38,0.0 +11509,21,10,40,0.0 +11509,37,26,14,0.0 +11509,40,18.4,39,0.0 +11509,57,19.5,18,0.0 +11509,35,18,14,0.0 +11509,2,19,2,0.0 +11509,58,13.25,16,0.0 +11509,3,10,12,0.0 +11509,23,9,16,0.0 +11509,49,20,10,0.0 +11509,73,15,40,0.0 +11509,62,49.3,28,0.0 +11509,42,14,23,0.0 +11509,43,46,32,0.0 +11509,54,7.45,35,0.0 +11509,17,39,37,0.0 +11509,14,23.25,14,0.0 +11509,44,19.45,34,0.0 +11509,39,18,14,0.0 +11509,1,18,49,0.0 +11509,24,4.5,46,0.0 +11509,69,36,13,0.0 +11510,58,13.25,44,0.0 +11510,31,12.5,6,0.0 +11510,55,24,26,0.0 +11510,7,30,15,0.0 +11510,63,43.9,43,0.0 +11510,32,32,48,0.0 +11510,12,38,10,0.0 +11510,57,19.5,38,0.0 +11510,8,40,50,0.0 +11510,4,22,35,0.0 +11510,34,14,35,0.0 +11510,35,18,46,0.0 +11510,22,21,17,0.0 +11510,6,25,31,0.0 +11510,67,14,12,0.0 +11510,30,25.89,3,0.0 +11510,44,19.45,45,0.0 +11510,28,45.6,18,0.0 +11510,36,19,23,0.0 +11510,25,14,45,0.0 +11511,56,38,29,0.0 +11511,5,21.35,27,0.0 +11511,55,24,26,0.0 +11511,58,13.25,24,0.0 +11511,20,81,1,0.0 +11511,43,46,41,0.0 +11511,4,22,14,0.0 +11511,32,32,10,0.0 +11511,7,30,4,0.0 +11511,62,49.3,1,0.0 +11511,2,19,4,0.0 +11511,68,12.5,41,0.0 +11511,16,17.45,16,0.0 +11511,50,16.25,27,0.0 +11511,6,25,44,0.0 +11511,36,19,28,0.0 +11511,35,18,8,0.0 +11511,66,17,41,0.0 +11511,60,34,18,0.0 +11511,63,43.9,5,0.0 +11511,29,123.79,11,0.0 +11511,67,14,23,0.0 +11511,26,31.23,29,0.0 +11511,48,12.75,42,0.0 +11511,76,18,3,0.0 +11511,73,15,3,0.0 +11511,64,33.25,7,0.0 +11511,70,15,7,0.0 +11511,72,34.8,33,0.0 +11511,69,36,45,0.0 +11511,57,19.5,13,0.0 +11511,12,38,12,0.0 +11511,47,9.5,20,0.0 +11511,22,21,41,0.0 +11511,39,18,29,0.0 +11511,52,7,6,0.0 +11511,19,9.2,15,0.0 +11511,46,12,49,0.0 +11512,72,34.8,12,0.0 +11512,24,4.5,42,0.0 +11512,15,15.5,34,0.0 +11512,46,12,40,0.0 +11512,22,21,43,0.0 +11512,3,10,19,0.0 +11512,76,18,32,0.0 +11512,7,30,3,0.0 +11512,36,19,28,0.0 +11512,13,6,14,0.0 +11512,26,31.23,32,0.0 +11512,66,17,24,0.0 +11512,65,21.05,11,0.0 +11512,73,15,5,0.0 +11512,53,32.8,10,0.0 +11512,23,9,14,0.0 +11512,14,23.25,46,0.0 +11512,67,14,25,0.0 +11512,33,2.5,43,0.0 +11512,9,97,25,0.0 +11512,18,62.5,45,0.0 +11512,41,9.65,10,0.0 +11512,11,21,43,0.0 +11512,75,7.75,38,0.0 +11512,49,20,48,0.0 +11512,56,38,46,0.0 +11512,60,34,19,0.0 +11512,4,22,18,0.0 +11512,47,9.5,26,0.0 +11512,61,28.5,37,0.0 +11512,32,32,35,0.0 +11512,12,38,24,0.0 +11512,51,53,49,0.0 +11512,28,45.6,13,0.0 +11512,54,7.45,28,0.0 +11512,8,40,6,0.0 +11512,64,33.25,10,0.0 +11512,21,10,1,0.0 +11512,35,18,39,0.0 +11512,77,13,48,0.0 +11512,25,14,43,0.0 +11512,5,21.35,21,0.0 +11512,2,19,24,0.0 +11513,3,10,23,0.0 +11513,41,9.65,27,0.0 +11513,43,46,17,0.0 +11513,13,6,47,0.0 +11513,50,16.25,35,0.0 +11513,27,43.9,43,0.0 +11513,6,25,37,0.0 +11513,51,53,26,0.0 +11513,65,21.05,36,0.0 +11513,28,45.6,47,0.0 +11513,46,12,37,0.0 +11513,10,31,4,0.0 +11513,52,7,23,0.0 +11513,36,19,13,0.0 +11513,76,18,22,0.0 +11513,18,62.5,15,0.0 +11513,40,18.4,2,0.0 +11513,4,22,16,0.0 +11513,29,123.79,30,0.0 +11513,39,18,10,0.0 +11513,55,24,21,0.0 +11513,33,2.5,38,0.0 +11513,56,38,18,0.0 +11513,68,12.5,5,0.0 +11513,72,34.8,45,0.0 +11513,49,20,2,0.0 +11513,25,14,27,0.0 +11513,60,34,50,0.0 +11513,54,7.45,10,0.0 +11513,21,10,16,0.0 +11513,1,18,23,0.0 +11513,14,23.25,39,0.0 +11513,69,36,16,0.0 +11513,57,19.5,43,0.0 +11513,32,32,7,0.0 +11513,47,9.5,17,0.0 +11513,45,9.5,28,0.0 +11513,31,12.5,25,0.0 +11513,30,25.89,39,0.0 +11513,59,55,37,0.0 +11513,9,97,4,0.0 +11513,5,21.35,32,0.0 +11513,71,21.5,43,0.0 +11513,66,17,47,0.0 +11513,17,39,13,0.0 +11513,44,19.45,48,0.0 +11513,19,9.2,48,0.0 +11513,12,38,11,0.0 +11513,7,30,47,0.0 +11513,75,7.75,16,0.0 +11513,61,28.5,41,0.0 +11513,64,33.25,22,0.0 +11513,16,17.45,44,0.0 +11513,37,26,20,0.0 +11513,70,15,17,0.0 +11513,34,14,10,0.0 +11513,22,21,13,0.0 +11513,20,81,6,0.0 +11513,74,10,40,0.0 +11513,38,263.5,7,0.0 +11513,15,15.5,6,0.0 +11513,11,21,14,0.0 +11513,8,40,31,0.0 +11513,77,13,13,0.0 +11513,58,13.25,22,0.0 +11513,24,4.5,30,0.0 +11513,23,9,8,0.0 +11513,2,19,32,0.0 +11513,42,14,41,0.0 +11513,62,49.3,18,0.0 +11514,37,26,18,0.0 +11514,71,21.5,20,0.0 +11514,47,9.5,9,0.0 +11514,26,31.23,17,0.0 +11514,36,19,35,0.0 +11514,12,38,31,0.0 +11514,3,10,9,0.0 +11514,31,12.5,39,0.0 +11514,38,263.5,11,0.0 +11514,15,15.5,36,0.0 +11514,4,22,44,0.0 +11514,60,34,45,0.0 +11514,1,18,48,0.0 +11514,14,23.25,32,0.0 +11514,72,34.8,39,0.0 +11514,28,45.6,34,0.0 +11514,58,13.25,41,0.0 +11514,66,17,38,0.0 +11514,10,31,18,0.0 +11514,6,25,8,0.0 +11514,50,16.25,41,0.0 +11514,51,53,8,0.0 +11514,57,19.5,38,0.0 +11514,16,17.45,39,0.0 +11514,39,18,14,0.0 +11514,48,12.75,10,0.0 +11514,43,46,4,0.0 +11514,11,21,49,0.0 +11514,59,55,50,0.0 +11515,2,19,16,0.0 +11515,40,18.4,9,0.0 +11515,20,81,6,0.0 +11515,50,16.25,47,0.0 +11515,43,46,5,0.0 +11515,63,43.9,1,0.0 +11515,3,10,49,0.0 +11515,54,7.45,12,0.0 +11515,21,10,17,0.0 +11515,45,9.5,38,0.0 +11515,51,53,31,0.0 +11515,52,7,50,0.0 +11515,5,21.35,4,0.0 +11515,11,21,26,0.0 +11515,6,25,13,0.0 +11515,57,19.5,12,0.0 +11515,23,9,38,0.0 +11515,27,43.9,34,0.0 +11515,26,31.23,11,0.0 +11516,10,31,23,0.0 +11516,1,18,12,0.0 +11516,8,40,30,0.0 +11516,62,49.3,20,0.0 +11516,12,38,3,0.0 +11516,51,53,27,0.0 +11516,68,12.5,10,0.0 +11516,57,19.5,17,0.0 +11516,40,18.4,19,0.0 +11516,33,2.5,25,0.0 +11516,3,10,40,0.0 +11516,13,6,25,0.0 +11516,26,31.23,31,0.0 +11516,49,20,39,0.0 +11516,5,21.35,10,0.0 +11516,46,12,3,0.0 +11516,25,14,24,0.0 +11516,72,34.8,45,0.0 +11516,47,9.5,14,0.0 +11516,34,14,42,0.0 +11516,29,123.79,32,0.0 +11516,35,18,1,0.0 +11516,44,19.45,15,0.0 +11516,42,14,40,0.0 +11516,30,25.89,50,0.0 +11517,12,38,19,0.0 +11517,51,53,32,0.0 +11517,36,19,13,0.0 +11517,3,10,19,0.0 +11517,16,17.45,17,0.0 +11517,57,19.5,26,0.0 +11517,76,18,13,0.0 +11517,70,15,11,0.0 +11517,69,36,21,0.0 +11517,47,9.5,20,0.0 +11517,41,9.65,18,0.0 +11517,32,32,6,0.0 +11517,68,12.5,34,0.0 +11517,13,6,49,0.0 +11517,28,45.6,21,0.0 +11517,77,13,33,0.0 +11517,39,18,26,0.0 +11517,20,81,3,0.0 +11517,53,32.8,41,0.0 +11517,1,18,28,0.0 +11517,49,20,25,0.0 +11517,11,21,30,0.0 +11517,72,34.8,5,0.0 +11517,38,263.5,24,0.0 +11517,46,12,2,0.0 +11517,19,9.2,35,0.0 +11517,8,40,28,0.0 +11517,58,13.25,27,0.0 +11517,4,22,35,0.0 +11517,2,19,44,0.0 +11517,30,25.89,46,0.0 +11517,52,7,45,0.0 +11517,15,15.5,9,0.0 +11517,21,10,26,0.0 +11517,6,25,44,0.0 +11517,61,28.5,43,0.0 +11517,17,39,17,0.0 +11517,33,2.5,18,0.0 +11517,71,21.5,26,0.0 +11517,27,43.9,22,0.0 +11517,43,46,12,0.0 +11517,65,21.05,31,0.0 +11517,7,30,12,0.0 +11517,73,15,3,0.0 +11517,74,10,38,0.0 +11517,59,55,43,0.0 +11517,64,33.25,1,0.0 +11517,31,12.5,11,0.0 +11517,35,18,50,0.0 +11517,56,38,36,0.0 +11517,5,21.35,47,0.0 +11517,42,14,35,0.0 +11517,10,31,29,0.0 +11517,48,12.75,40,0.0 +11517,37,26,28,0.0 +11517,45,9.5,14,0.0 +11517,26,31.23,26,0.0 +11517,40,18.4,40,0.0 +11517,54,7.45,44,0.0 +11517,14,23.25,9,0.0 +11517,22,21,46,0.0 +11517,25,14,24,0.0 +11517,67,14,33,0.0 +11517,66,17,2,0.0 +11517,62,49.3,2,0.0 +11517,34,14,48,0.0 +11517,9,97,42,0.0 +11517,63,43.9,2,0.0 +11518,59,55,24,0.0 +11518,36,19,33,0.0 +11518,76,18,42,0.0 +11518,53,32.8,17,0.0 +11518,55,24,5,0.0 +11518,51,53,44,0.0 +11518,33,2.5,6,0.0 +11518,30,25.89,4,0.0 +11518,17,39,24,0.0 +11518,12,38,13,0.0 +11518,23,9,44,0.0 +11518,56,38,11,0.0 +11518,25,14,4,0.0 +11519,71,21.5,24,0.0 +11519,4,22,40,0.0 +11519,76,18,1,0.0 +11519,19,9.2,39,0.0 +11519,25,14,35,0.0 +11519,64,33.25,22,0.0 +11519,16,17.45,31,0.0 +11520,6,25,23,0.0 +11520,27,43.9,9,0.0 +11520,73,15,1,0.0 +11520,56,38,37,0.0 +11520,30,25.89,11,0.0 +11520,9,97,2,0.0 +11520,23,9,47,0.0 +11520,49,20,1,0.0 +11520,41,9.65,23,0.0 +11520,65,21.05,19,0.0 +11520,17,39,38,0.0 +11520,70,15,7,0.0 +11520,25,14,25,0.0 +11520,54,7.45,15,0.0 +11520,28,45.6,16,0.0 +11520,26,31.23,22,0.0 +11520,45,9.5,22,0.0 +11520,50,16.25,38,0.0 +11520,47,9.5,2,0.0 +11520,59,55,27,0.0 +11520,12,38,36,0.0 +11520,36,19,39,0.0 +11520,22,21,22,0.0 +11520,14,23.25,34,0.0 +11520,53,32.8,22,0.0 +11520,74,10,2,0.0 +11520,63,43.9,32,0.0 +11521,45,9.5,18,0.0 +11521,66,17,1,0.0 +11521,64,33.25,24,0.0 +11521,5,21.35,16,0.0 +11521,68,12.5,30,0.0 +11521,6,25,33,0.0 +11521,75,7.75,3,0.0 +11521,3,10,35,0.0 +11521,30,25.89,48,0.0 +11521,21,10,1,0.0 +11521,51,53,46,0.0 +11521,16,17.45,22,0.0 +11521,19,9.2,5,0.0 +11521,46,12,26,0.0 +11521,77,13,1,0.0 +11521,28,45.6,2,0.0 +11521,74,10,21,0.0 +11521,41,9.65,15,0.0 +11521,20,81,28,0.0 +11521,76,18,14,0.0 +11521,11,21,22,0.0 +11521,61,28.5,39,0.0 +11521,40,18.4,6,0.0 +11521,32,32,32,0.0 +11521,54,7.45,16,0.0 +11521,69,36,23,0.0 +11521,73,15,7,0.0 +11521,24,4.5,4,0.0 +11521,23,9,37,0.0 +11521,58,13.25,11,0.0 +11521,71,21.5,13,0.0 +11521,12,38,9,0.0 +11521,59,55,25,0.0 +11521,13,6,20,0.0 +11521,49,20,26,0.0 +11521,10,31,34,0.0 +11521,63,43.9,35,0.0 +11521,25,14,35,0.0 +11521,29,123.79,3,0.0 +11521,44,19.45,19,0.0 +11521,2,19,38,0.0 +11521,67,14,29,0.0 +11521,62,49.3,44,0.0 +11521,33,2.5,44,0.0 +11521,34,14,44,0.0 +11521,8,40,16,0.0 +11521,36,19,31,0.0 +11521,4,22,13,0.0 +11521,9,97,35,0.0 +11521,26,31.23,18,0.0 +11521,27,43.9,35,0.0 +11521,1,18,22,0.0 +11521,14,23.25,5,0.0 +11521,43,46,5,0.0 +11521,65,21.05,22,0.0 +11521,55,24,6,0.0 +11521,57,19.5,37,0.0 +11521,47,9.5,43,0.0 +11521,17,39,11,0.0 +11521,53,32.8,10,0.0 +11521,37,26,20,0.0 +11521,15,15.5,32,0.0 +11521,72,34.8,47,0.0 +11521,48,12.75,19,0.0 +11521,60,34,35,0.0 +11521,31,12.5,47,0.0 +11521,39,18,35,0.0 +11521,42,14,31,0.0 +11522,6,25,22,0.0 +11522,11,21,50,0.0 +11522,33,2.5,42,0.0 +11522,66,17,34,0.0 +11522,21,10,13,0.0 +11522,8,40,3,0.0 +11522,12,38,45,0.0 +11522,72,34.8,40,0.0 +11522,20,81,36,0.0 +11522,69,36,15,0.0 +11522,65,21.05,5,0.0 +11522,61,28.5,36,0.0 +11522,10,31,11,0.0 +11523,13,6,29,0.0 +11523,44,19.45,13,0.0 +11523,49,20,39,0.0 +11523,66,17,32,0.0 +11523,16,17.45,23,0.0 +11523,41,9.65,36,0.0 +11523,47,9.5,33,0.0 +11523,27,43.9,2,0.0 +11523,36,19,12,0.0 +11523,74,10,22,0.0 +11523,76,18,5,0.0 +11523,10,31,48,0.0 +11523,39,18,48,0.0 +11523,22,21,40,0.0 +11523,2,19,22,0.0 +11523,57,19.5,10,0.0 +11523,51,53,21,0.0 +11523,18,62.5,8,0.0 +11523,69,36,14,0.0 +11523,70,15,5,0.0 +11523,5,21.35,44,0.0 +11523,71,21.5,23,0.0 +11523,73,15,26,0.0 +11523,25,14,10,0.0 +11523,52,7,11,0.0 +11523,9,97,27,0.0 +11523,12,38,21,0.0 +11523,58,13.25,13,0.0 +11523,67,14,18,0.0 +11523,62,49.3,2,0.0 +11523,55,24,20,0.0 +11523,32,32,41,0.0 +11523,42,14,43,0.0 +11523,35,18,38,0.0 +11523,6,25,21,0.0 +11523,50,16.25,31,0.0 +11523,30,25.89,2,0.0 +11523,11,21,31,0.0 +11523,19,9.2,28,0.0 +11523,60,34,7,0.0 +11523,23,9,49,0.0 +11523,61,28.5,39,0.0 +11523,40,18.4,46,0.0 +11523,45,9.5,50,0.0 +11523,14,23.25,32,0.0 +11523,1,18,7,0.0 +11523,7,30,21,0.0 +11523,64,33.25,15,0.0 +11523,34,14,29,0.0 +11523,68,12.5,28,0.0 +11523,48,12.75,4,0.0 +11524,67,14,1,0.0 +11524,61,28.5,47,0.0 +11524,75,7.75,49,0.0 +11524,5,21.35,10,0.0 +11524,52,7,41,0.0 +11524,24,4.5,26,0.0 +11524,50,16.25,5,0.0 +11524,2,19,48,0.0 +11524,62,49.3,28,0.0 +11524,58,13.25,30,0.0 +11524,12,38,49,0.0 +11524,39,18,15,0.0 +11524,17,39,15,0.0 +11524,65,21.05,49,0.0 +11524,66,17,1,0.0 +11524,4,22,39,0.0 +11524,59,55,21,0.0 +11524,29,123.79,5,0.0 +11524,27,43.9,35,0.0 +11524,48,12.75,7,0.0 +11524,76,18,24,0.0 +11524,10,31,17,0.0 +11524,23,9,30,0.0 +11524,70,15,34,0.0 +11524,43,46,17,0.0 +11524,38,263.5,36,0.0 +11524,46,12,4,0.0 +11524,30,25.89,49,0.0 +11524,47,9.5,32,0.0 +11524,64,33.25,11,0.0 +11524,51,53,10,0.0 +11524,18,62.5,32,0.0 +11524,25,14,11,0.0 +11524,26,31.23,38,0.0 +11524,40,18.4,7,0.0 +11524,3,10,23,0.0 +11524,68,12.5,2,0.0 +11524,7,30,21,0.0 +11524,41,9.65,34,0.0 +11524,19,9.2,36,0.0 +11524,35,18,39,0.0 +11524,33,2.5,21,0.0 +11524,28,45.6,46,0.0 +11524,56,38,23,0.0 +11524,20,81,5,0.0 +11524,54,7.45,5,0.0 +11524,8,40,39,0.0 +11524,44,19.45,17,0.0 +11524,21,10,46,0.0 +11524,14,23.25,26,0.0 +11524,77,13,41,0.0 +11524,42,14,38,0.0 +11524,73,15,2,0.0 +11524,37,26,47,0.0 +11524,69,36,42,0.0 +11524,74,10,10,0.0 +11524,22,21,23,0.0 +11524,16,17.45,41,0.0 +11524,13,6,41,0.0 +11524,6,25,28,0.0 +11524,11,21,23,0.0 +11524,72,34.8,16,0.0 +11524,71,21.5,29,0.0 +11524,53,32.8,48,0.0 +11524,55,24,19,0.0 +11524,9,97,19,0.0 +11524,57,19.5,39,0.0 +11524,34,14,39,0.0 +11524,45,9.5,28,0.0 +11524,49,20,18,0.0 +11524,60,34,8,0.0 +11524,1,18,5,0.0 +11525,18,62.5,45,0.0 +11525,42,14,26,0.0 +11525,40,18.4,7,0.0 +11525,22,21,6,0.0 +11525,8,40,46,0.0 +11525,43,46,18,0.0 +11525,57,19.5,45,0.0 +11525,32,32,47,0.0 +11525,64,33.25,25,0.0 +11525,69,36,4,0.0 +11526,59,55,32,0.0 +11526,45,9.5,44,0.0 +11526,74,10,16,0.0 +11526,33,2.5,38,0.0 +11526,19,9.2,10,0.0 +11526,13,6,18,0.0 +11526,61,28.5,49,0.0 +11526,7,30,40,0.0 +11526,66,17,25,0.0 +11526,18,62.5,5,0.0 +11526,5,21.35,20,0.0 +11526,32,32,44,0.0 +11526,54,7.45,37,0.0 +11526,37,26,42,0.0 +11526,51,53,14,0.0 +11526,17,39,28,0.0 +11526,28,45.6,30,0.0 +11526,44,19.45,29,0.0 +11526,71,21.5,24,0.0 +11526,3,10,32,0.0 +11526,39,18,30,0.0 +11526,63,43.9,1,0.0 +11526,67,14,38,0.0 +11526,47,9.5,44,0.0 +11526,73,15,14,0.0 +11526,34,14,44,0.0 +11526,22,21,25,0.0 +11526,76,18,49,0.0 +11526,49,20,36,0.0 +11526,55,24,5,0.0 +11526,77,13,38,0.0 +11526,65,21.05,39,0.0 +11526,57,19.5,45,0.0 +11526,16,17.45,7,0.0 +11526,69,36,19,0.0 +11526,42,14,46,0.0 +11526,29,123.79,25,0.0 +11526,20,81,15,0.0 +11526,56,38,7,0.0 +11526,62,49.3,26,0.0 +11526,64,33.25,13,0.0 +11526,43,46,28,0.0 +11526,72,34.8,1,0.0 +11526,1,18,43,0.0 +11526,10,31,34,0.0 +11526,25,14,48,0.0 +11526,11,21,30,0.0 +11526,21,10,13,0.0 +11526,50,16.25,14,0.0 +11526,35,18,46,0.0 +11526,9,97,20,0.0 +11526,12,38,41,0.0 +11526,60,34,18,0.0 +11526,14,23.25,27,0.0 +11526,46,12,23,0.0 +11526,23,9,23,0.0 +11526,26,31.23,11,0.0 +11526,52,7,35,0.0 +11526,75,7.75,34,0.0 +11526,27,43.9,1,0.0 +11526,48,12.75,27,0.0 +11526,31,12.5,23,0.0 +11526,58,13.25,28,0.0 +11526,41,9.65,43,0.0 +11526,6,25,48,0.0 +11526,38,263.5,43,0.0 +11526,2,19,40,0.0 +11526,68,12.5,14,0.0 +11526,8,40,35,0.0 +11526,4,22,26,0.0 +11526,70,15,2,0.0 +11526,36,19,32,0.0 +11526,30,25.89,26,0.0 +11526,40,18.4,12,0.0 +11526,15,15.5,15,0.0 +11526,24,4.5,32,0.0 +11526,53,32.8,46,0.0 +11527,15,15.5,45,0.0 +11527,60,34,50,0.0 +11527,25,14,36,0.0 +11527,36,19,30,0.0 +11527,59,55,48,0.0 +11527,46,12,11,0.0 +11527,57,19.5,47,0.0 +11527,33,2.5,35,0.0 +11527,30,25.89,24,0.0 +11527,69,36,4,0.0 +11527,58,13.25,31,0.0 +11527,16,17.45,48,0.0 +11527,68,12.5,39,0.0 +11527,47,9.5,18,0.0 +11527,52,7,21,0.0 +11527,7,30,35,0.0 +11527,8,40,22,0.0 +11527,37,26,31,0.0 +11527,54,7.45,25,0.0 +11527,2,19,41,0.0 +11527,1,18,37,0.0 +11527,39,18,10,0.0 +11527,17,39,43,0.0 +11527,10,31,25,0.0 +11527,3,10,16,0.0 +11527,22,21,10,0.0 +11527,49,20,49,0.0 +11527,73,15,13,0.0 +11527,66,17,35,0.0 +11527,72,34.8,47,0.0 +11527,14,23.25,37,0.0 +11527,40,18.4,12,0.0 +11527,4,22,44,0.0 +11527,70,15,37,0.0 +11527,67,14,15,0.0 +11527,43,46,34,0.0 +11527,5,21.35,27,0.0 +11527,21,10,12,0.0 +11527,51,53,11,0.0 +11527,77,13,26,0.0 +11527,71,21.5,20,0.0 +11527,19,9.2,10,0.0 +11527,12,38,47,0.0 +11527,50,16.25,17,0.0 +11527,26,31.23,13,0.0 +11527,48,12.75,10,0.0 +11527,28,45.6,48,0.0 +11527,61,28.5,7,0.0 +11527,11,21,49,0.0 +11527,29,123.79,36,0.0 +11527,63,43.9,43,0.0 +11527,64,33.25,42,0.0 +11527,42,14,6,0.0 +11527,53,32.8,42,0.0 +11527,38,263.5,4,0.0 +11527,6,25,20,0.0 +11527,31,12.5,37,0.0 +11527,44,19.45,3,0.0 +11527,13,6,41,0.0 +11527,34,14,33,0.0 +11527,74,10,22,0.0 +11527,27,43.9,39,0.0 +11527,56,38,16,0.0 +11527,18,62.5,41,0.0 +11527,9,97,7,0.0 +11528,33,2.5,37,0.0 +11528,27,43.9,2,0.0 +11528,74,10,39,0.0 +11528,40,18.4,25,0.0 +11528,32,32,34,0.0 +11528,42,14,6,0.0 +11528,28,45.6,14,0.0 +11528,72,34.8,44,0.0 +11528,3,10,42,0.0 +11528,70,15,49,0.0 +11528,50,16.25,16,0.0 +11528,45,9.5,3,0.0 +11528,71,21.5,8,0.0 +11528,20,81,22,0.0 +11528,17,39,37,0.0 +11528,51,53,22,0.0 +11528,64,33.25,17,0.0 +11528,34,14,29,0.0 +11528,15,15.5,40,0.0 +11528,54,7.45,10,0.0 +11528,31,12.5,20,0.0 +11528,14,23.25,15,0.0 +11528,39,18,34,0.0 +11528,60,34,30,0.0 +11528,56,38,12,0.0 +11528,25,14,14,0.0 +11528,11,21,19,0.0 +11528,55,24,18,0.0 +11528,10,31,29,0.0 +11528,19,9.2,41,0.0 +11528,12,38,33,0.0 +11528,53,32.8,12,0.0 +11528,61,28.5,50,0.0 +11528,18,62.5,12,0.0 +11528,59,55,39,0.0 +11528,9,97,6,0.0 +11528,13,6,32,0.0 +11528,30,25.89,14,0.0 +11528,66,17,48,0.0 +11528,1,18,8,0.0 +11528,24,4.5,33,0.0 +11528,36,19,31,0.0 +11528,73,15,22,0.0 +11528,41,9.65,41,0.0 +11528,44,19.45,40,0.0 +11528,26,31.23,31,0.0 +11528,46,12,19,0.0 +11528,65,21.05,35,0.0 +11528,38,263.5,20,0.0 +11528,67,14,41,0.0 +11528,7,30,33,0.0 +11528,43,46,22,0.0 +11528,57,19.5,40,0.0 +11528,47,9.5,45,0.0 +11528,69,36,5,0.0 +11528,23,9,7,0.0 +11528,21,10,11,0.0 +11528,77,13,6,0.0 +11528,35,18,30,0.0 +11528,2,19,3,0.0 +11528,75,7.75,42,0.0 +11528,6,25,33,0.0 +11528,4,22,2,0.0 +11528,76,18,34,0.0 +11528,52,7,33,0.0 +11528,5,21.35,23,0.0 +11528,68,12.5,36,0.0 +11528,49,20,36,0.0 +11528,22,21,3,0.0 +11528,16,17.45,8,0.0 +11529,52,7,12,0.0 +11529,42,14,7,0.0 +11529,67,14,42,0.0 +11529,41,9.65,6,0.0 +11529,34,14,43,0.0 +11529,57,19.5,45,0.0 +11529,15,15.5,16,0.0 +11529,27,43.9,7,0.0 +11529,45,9.5,2,0.0 +11529,23,9,2,0.0 +11529,61,28.5,1,0.0 +11529,75,7.75,30,0.0 +11529,5,21.35,34,0.0 +11529,48,12.75,16,0.0 +11529,53,32.8,12,0.0 +11529,18,62.5,11,0.0 +11529,10,31,14,0.0 +11530,46,12,49,0.0 +11530,34,14,45,0.0 +11530,70,15,41,0.0 +11530,58,13.25,23,0.0 +11530,17,39,20,0.0 +11530,43,46,11,0.0 +11530,39,18,43,0.0 +11530,7,30,18,0.0 +11530,2,19,8,0.0 +11530,53,32.8,49,0.0 +11530,5,21.35,16,0.0 +11530,36,19,41,0.0 +11530,24,4.5,15,0.0 +11530,42,14,18,0.0 +11530,61,28.5,14,0.0 +11530,74,10,15,0.0 +11530,15,15.5,13,0.0 +11530,54,7.45,11,0.0 +11530,32,32,40,0.0 +11530,26,31.23,18,0.0 +11530,28,45.6,47,0.0 +11530,52,7,35,0.0 +11530,22,21,30,0.0 +11530,41,9.65,43,0.0 +11530,62,49.3,9,0.0 +11530,69,36,27,0.0 +11530,49,20,4,0.0 +11530,38,263.5,22,0.0 +11530,73,15,35,0.0 +11530,64,33.25,41,0.0 +11530,27,43.9,25,0.0 +11530,33,2.5,28,0.0 +11530,56,38,48,0.0 +11530,44,19.45,24,0.0 +11530,48,12.75,26,0.0 +11530,65,21.05,30,0.0 +11530,19,9.2,25,0.0 +11530,8,40,6,0.0 +11530,55,24,30,0.0 +11530,75,7.75,14,0.0 +11530,50,16.25,28,0.0 +11530,10,31,31,0.0 +11530,3,10,17,0.0 +11530,67,14,30,0.0 +11530,45,9.5,47,0.0 +11530,72,34.8,27,0.0 +11530,4,22,24,0.0 +11530,16,17.45,38,0.0 +11530,9,97,9,0.0 +11530,14,23.25,5,0.0 +11530,37,26,3,0.0 +11530,21,10,1,0.0 +11530,30,25.89,39,0.0 +11530,23,9,50,0.0 +11530,47,9.5,46,0.0 +11530,66,17,5,0.0 +11530,6,25,28,0.0 +11530,59,55,1,0.0 +11530,1,18,14,0.0 +11530,76,18,40,0.0 +11530,68,12.5,11,0.0 +11530,60,34,17,0.0 +11530,57,19.5,9,0.0 +11530,77,13,50,0.0 +11530,12,38,37,0.0 +11530,25,14,18,0.0 +11531,44,19.45,42,0.0 +11531,63,43.9,34,0.0 +11531,42,14,48,0.0 +11531,12,38,36,0.0 +11531,21,10,42,0.0 +11531,27,43.9,18,0.0 +11531,37,26,49,0.0 +11531,47,9.5,18,0.0 +11531,71,21.5,13,0.0 +11531,8,40,2,0.0 +11531,38,263.5,14,0.0 +11531,17,39,47,0.0 +11531,50,16.25,11,0.0 +11531,57,19.5,45,0.0 +11531,64,33.25,27,0.0 +11531,40,18.4,23,0.0 +11531,41,9.65,19,0.0 +11531,36,19,19,0.0 +11531,14,23.25,35,0.0 +11531,65,21.05,9,0.0 +11531,18,62.5,37,0.0 +11531,53,32.8,16,0.0 +11531,66,17,20,0.0 +11531,13,6,36,0.0 +11531,25,14,19,0.0 +11531,75,7.75,28,0.0 +11531,7,30,8,0.0 +11531,16,17.45,46,0.0 +11531,61,28.5,26,0.0 +11531,58,13.25,3,0.0 +11531,77,13,20,0.0 +11531,24,4.5,14,0.0 +11531,32,32,19,0.0 +11531,73,15,43,0.0 +11531,54,7.45,30,0.0 +11531,48,12.75,10,0.0 +11532,50,16.25,15,0.0 +11532,8,40,39,0.0 +11532,19,9.2,31,0.0 +11532,55,24,3,0.0 +11532,29,123.79,31,0.0 +11532,24,4.5,11,0.0 +11532,34,14,19,0.0 +11532,21,10,17,0.0 +11532,48,12.75,47,0.0 +11532,63,43.9,2,0.0 +11532,51,53,41,0.0 +11532,65,21.05,48,0.0 +11532,47,9.5,13,0.0 +11532,35,18,5,0.0 +11532,43,46,27,0.0 +11532,20,81,41,0.0 +11532,22,21,19,0.0 +11532,76,18,22,0.0 +11532,25,14,41,0.0 +11532,11,21,41,0.0 +11532,67,14,33,0.0 +11532,37,26,5,0.0 +11532,5,21.35,38,0.0 +11532,18,62.5,40,0.0 +11532,2,19,9,0.0 +11532,40,18.4,39,0.0 +11532,39,18,33,0.0 +11532,30,25.89,38,0.0 +11532,4,22,40,0.0 +11532,56,38,22,0.0 +11532,9,97,6,0.0 +11532,74,10,31,0.0 +11532,7,30,9,0.0 +11532,3,10,23,0.0 +11532,70,15,9,0.0 +11532,31,12.5,48,0.0 +11532,64,33.25,36,0.0 +11532,33,2.5,38,0.0 +11532,73,15,38,0.0 +11532,44,19.45,17,0.0 +11532,69,36,29,0.0 +11532,77,13,1,0.0 +11532,57,19.5,26,0.0 +11532,71,21.5,13,0.0 +11532,49,20,6,0.0 +11532,28,45.6,37,0.0 +11532,72,34.8,28,0.0 +11532,46,12,16,0.0 +11532,41,9.65,11,0.0 +11532,36,19,34,0.0 +11532,62,49.3,24,0.0 +11532,26,31.23,23,0.0 +11532,15,15.5,14,0.0 +11532,38,263.5,17,0.0 +11532,61,28.5,49,0.0 +11532,58,13.25,4,0.0 +11532,42,14,50,0.0 +11532,60,34,43,0.0 +11532,59,55,10,0.0 +11532,13,6,37,0.0 +11532,6,25,44,0.0 +11532,12,38,2,0.0 +11532,75,7.75,18,0.0 +11532,66,17,37,0.0 +11532,14,23.25,38,0.0 +11532,68,12.5,15,0.0 +11532,10,31,7,0.0 +11532,23,9,24,0.0 +11532,52,7,26,0.0 +11532,54,7.45,37,0.0 +11532,17,39,44,0.0 +11532,16,17.45,6,0.0 +11532,45,9.5,42,0.0 +11532,32,32,30,0.0 +11532,27,43.9,36,0.0 +11532,1,18,49,0.0 +11532,53,32.8,35,0.0 +11533,50,16.25,19,0.0 +11533,19,9.2,35,0.0 +11533,21,10,20,0.0 +11533,76,18,13,0.0 +11533,71,21.5,33,0.0 +11533,60,34,21,0.0 +11533,51,53,34,0.0 +11533,34,14,32,0.0 +11533,36,19,32,0.0 +11533,24,4.5,34,0.0 +11533,53,32.8,27,0.0 +11533,66,17,37,0.0 +11533,74,10,14,0.0 +11533,30,25.89,8,0.0 +11533,6,25,4,0.0 +11533,18,62.5,33,0.0 +11533,37,26,35,0.0 +11533,73,15,40,0.0 +11533,47,9.5,33,0.0 +11533,7,30,44,0.0 +11533,46,12,3,0.0 +11533,2,19,49,0.0 +11533,49,20,43,0.0 +11533,43,46,5,0.0 +11533,56,38,32,0.0 +11533,25,14,24,0.0 +11533,64,33.25,27,0.0 +11533,31,12.5,18,0.0 +11533,28,45.6,22,0.0 +11533,70,15,10,0.0 +11533,35,18,8,0.0 +11533,26,31.23,8,0.0 +11533,11,21,45,0.0 +11533,3,10,13,0.0 +11533,22,21,19,0.0 +11533,63,43.9,32,0.0 +11533,57,19.5,37,0.0 +11534,2,19,16,0.0 +11534,31,12.5,37,0.0 +11534,6,25,21,0.0 +11534,12,38,3,0.0 +11534,69,36,36,0.0 +11534,28,45.6,3,0.0 +11534,18,62.5,36,0.0 +11534,44,19.45,8,0.0 +11534,24,4.5,39,0.0 +11534,19,9.2,27,0.0 +11534,10,31,18,0.0 +11534,56,38,16,0.0 +11534,42,14,10,0.0 +11534,50,16.25,4,0.0 +11534,27,43.9,5,0.0 +11534,1,18,23,0.0 +11534,55,24,38,0.0 +11534,58,13.25,6,0.0 +11534,14,23.25,27,0.0 +11534,26,31.23,44,0.0 +11534,49,20,37,0.0 +11535,1,18,21,0.0 +11535,8,40,6,0.0 +11535,52,7,13,0.0 +11535,3,10,26,0.0 +11535,61,28.5,42,0.0 +11535,67,14,48,0.0 +11535,58,13.25,37,0.0 +11535,35,18,4,0.0 +11535,47,9.5,34,0.0 +11535,63,43.9,31,0.0 +11535,50,16.25,42,0.0 +11535,18,62.5,37,0.0 +11535,60,34,1,0.0 +11535,43,46,9,0.0 +11535,73,15,21,0.0 +11535,9,97,15,0.0 +11535,68,12.5,46,0.0 +11535,34,14,44,0.0 +11535,72,34.8,10,0.0 +11535,42,14,28,0.0 +11535,32,32,29,0.0 +11535,69,36,50,0.0 +11535,44,19.45,32,0.0 +11535,15,15.5,49,0.0 +11535,74,10,26,0.0 +11535,64,33.25,18,0.0 +11535,24,4.5,39,0.0 +11535,46,12,42,0.0 +11535,4,22,28,0.0 +11536,58,13.25,39,0.0 +11536,19,9.2,5,0.0 +11536,73,15,48,0.0 +11536,6,25,45,0.0 +11536,72,34.8,2,0.0 +11536,43,46,20,0.0 +11536,31,12.5,26,0.0 +11536,22,21,7,0.0 +11536,60,34,13,0.0 +11536,3,10,9,0.0 +11536,20,81,35,0.0 +11536,75,7.75,3,0.0 +11536,32,32,28,0.0 +11536,57,19.5,42,0.0 +11536,23,9,5,0.0 +11536,70,15,13,0.0 +11536,44,19.45,44,0.0 +11536,37,26,1,0.0 +11536,8,40,7,0.0 +11536,65,21.05,22,0.0 +11536,25,14,2,0.0 +11536,69,36,49,0.0 +11536,13,6,30,0.0 +11536,26,31.23,45,0.0 +11536,5,21.35,44,0.0 +11536,10,31,38,0.0 +11536,77,13,49,0.0 +11536,14,23.25,30,0.0 +11536,1,18,35,0.0 +11536,30,25.89,6,0.0 +11536,15,15.5,30,0.0 +11536,41,9.65,24,0.0 +11536,62,49.3,6,0.0 +11536,35,18,17,0.0 +11536,27,43.9,12,0.0 +11536,42,14,4,0.0 +11536,29,123.79,2,0.0 +11536,2,19,39,0.0 +11536,51,53,45,0.0 +11536,55,24,28,0.0 +11536,61,28.5,7,0.0 +11536,48,12.75,50,0.0 +11536,28,45.6,2,0.0 +11536,40,18.4,39,0.0 +11536,59,55,32,0.0 +11536,49,20,20,0.0 +11536,76,18,3,0.0 +11537,69,36,43,0.0 +11537,5,21.35,3,0.0 +11537,30,25.89,34,0.0 +11537,76,18,33,0.0 +11537,31,12.5,35,0.0 +11537,46,12,10,0.0 +11537,52,7,42,0.0 +11537,55,24,11,0.0 +11537,15,15.5,4,0.0 +11537,4,22,38,0.0 +11537,18,62.5,19,0.0 +11537,36,19,35,0.0 +11537,73,15,10,0.0 +11537,27,43.9,21,0.0 +11537,1,18,30,0.0 +11537,37,26,21,0.0 +11537,22,21,14,0.0 +11537,7,30,12,0.0 +11537,44,19.45,23,0.0 +11537,19,9.2,40,0.0 +11537,23,9,33,0.0 +11537,50,16.25,23,0.0 +11537,33,2.5,16,0.0 +11537,66,17,48,0.0 +11537,26,31.23,20,0.0 +11537,74,10,42,0.0 +11537,3,10,18,0.0 +11537,41,9.65,27,0.0 +11537,25,14,4,0.0 +11537,21,10,16,0.0 +11537,45,9.5,31,0.0 +11537,20,81,9,0.0 +11537,12,38,40,0.0 +11537,54,7.45,45,0.0 +11537,40,18.4,27,0.0 +11537,77,13,26,0.0 +11537,14,23.25,1,0.0 +11537,35,18,37,0.0 +11537,57,19.5,21,0.0 +11537,51,53,28,0.0 +11537,9,97,11,0.0 +11537,24,4.5,27,0.0 +11537,72,34.8,33,0.0 +11537,6,25,3,0.0 +11537,8,40,9,0.0 +11537,48,12.75,43,0.0 +11537,34,14,30,0.0 +11537,10,31,38,0.0 +11537,53,32.8,1,0.0 +11537,16,17.45,14,0.0 +11537,64,33.25,31,0.0 +11537,59,55,16,0.0 +11537,60,34,7,0.0 +11537,75,7.75,14,0.0 +11537,29,123.79,40,0.0 +11537,63,43.9,42,0.0 +11537,68,12.5,50,0.0 +11537,17,39,39,0.0 +11537,42,14,15,0.0 +11537,61,28.5,27,0.0 +11537,32,32,27,0.0 +11537,39,18,14,0.0 +11537,56,38,50,0.0 +11537,47,9.5,38,0.0 +11537,28,45.6,47,0.0 +11537,65,21.05,24,0.0 +11537,13,6,32,0.0 +11537,2,19,34,0.0 +11537,71,21.5,31,0.0 +11537,58,13.25,22,0.0 +11537,49,20,42,0.0 +11537,38,263.5,37,0.0 +11537,11,21,15,0.0 +11538,1,18,2,0.0 +11538,38,263.5,5,0.0 +11538,17,39,6,0.0 +11538,61,28.5,35,0.0 +11538,26,31.23,45,0.0 +11538,13,6,5,0.0 +11538,63,43.9,26,0.0 +11538,53,32.8,4,0.0 +11538,49,20,41,0.0 +11538,48,12.75,50,0.0 +11538,74,10,39,0.0 +11538,32,32,34,0.0 +11538,42,14,27,0.0 +11538,69,36,12,0.0 +11538,22,21,15,0.0 +11538,58,13.25,6,0.0 +11538,52,7,45,0.0 +11538,37,26,19,0.0 +11538,45,9.5,29,0.0 +11538,41,9.65,43,0.0 +11538,6,25,28,0.0 +11538,18,62.5,27,0.0 +11538,16,17.45,40,0.0 +11538,36,19,48,0.0 +11538,44,19.45,10,0.0 +11538,33,2.5,6,0.0 +11538,28,45.6,46,0.0 +11538,19,9.2,28,0.0 +11538,65,21.05,21,0.0 +11538,57,19.5,49,0.0 +11538,77,13,46,0.0 +11538,12,38,40,0.0 +11538,21,10,35,0.0 +11538,73,15,12,0.0 +11538,62,49.3,34,0.0 +11538,76,18,3,0.0 +11538,20,81,23,0.0 +11538,27,43.9,3,0.0 +11538,29,123.79,4,0.0 +11538,66,17,14,0.0 +11539,1,18,31,0.0 +11539,59,55,25,0.0 +11539,70,15,28,0.0 +11539,40,18.4,11,0.0 +11539,32,32,14,0.0 +11539,51,53,14,0.0 +11539,25,14,37,0.0 +11539,16,17.45,48,0.0 +11539,66,17,8,0.0 +11539,31,12.5,4,0.0 +11539,2,19,43,0.0 +11539,76,18,11,0.0 +11539,29,123.79,27,0.0 +11539,21,10,24,0.0 +11539,3,10,21,0.0 +11539,22,21,28,0.0 +11539,37,26,33,0.0 +11539,61,28.5,7,0.0 +11539,72,34.8,11,0.0 +11539,41,9.65,32,0.0 +11539,14,23.25,27,0.0 +11539,15,15.5,31,0.0 +11539,69,36,3,0.0 +11539,48,12.75,5,0.0 +11539,30,25.89,34,0.0 +11539,71,21.5,42,0.0 +11539,62,49.3,14,0.0 +11539,23,9,44,0.0 +11539,65,21.05,17,0.0 +11539,55,24,48,0.0 +11539,42,14,12,0.0 +11539,28,45.6,31,0.0 +11539,68,12.5,7,0.0 +11539,24,4.5,45,0.0 +11539,75,7.75,2,0.0 +11539,52,7,14,0.0 +11539,58,13.25,48,0.0 +11539,47,9.5,20,0.0 +11539,63,43.9,25,0.0 +11539,18,62.5,44,0.0 +11539,9,97,17,0.0 +11539,53,32.8,32,0.0 +11539,10,31,43,0.0 +11539,57,19.5,12,0.0 +11539,12,38,16,0.0 +11539,64,33.25,26,0.0 +11539,20,81,32,0.0 +11539,60,34,3,0.0 +11539,67,14,8,0.0 +11539,4,22,16,0.0 +11539,34,14,15,0.0 +11539,43,46,20,0.0 +11539,27,43.9,17,0.0 +11539,54,7.45,23,0.0 +11539,13,6,1,0.0 +11539,74,10,20,0.0 +11539,8,40,9,0.0 +11539,26,31.23,44,0.0 +11539,6,25,38,0.0 +11539,38,263.5,47,0.0 +11539,45,9.5,10,0.0 +11539,36,19,45,0.0 +11539,39,18,27,0.0 +11539,33,2.5,20,0.0 +11539,5,21.35,12,0.0 +11539,7,30,8,0.0 +11539,77,13,47,0.0 +11539,46,12,38,0.0 +11539,35,18,23,0.0 +11539,17,39,34,0.0 +11539,56,38,36,0.0 +11539,11,21,30,0.0 +11539,49,20,6,0.0 +11539,19,9.2,47,0.0 +11539,73,15,9,0.0 +11539,44,19.45,1,0.0 +11539,50,16.25,44,0.0 +11540,6,25,5,0.0 +11540,19,9.2,38,0.0 +11540,59,55,39,0.0 +11540,8,40,19,0.0 +11540,4,22,16,0.0 +11540,63,43.9,23,0.0 +11540,70,15,46,0.0 +11540,3,10,3,0.0 +11540,72,34.8,22,0.0 +11540,54,7.45,8,0.0 +11540,27,43.9,45,0.0 +11540,69,36,17,0.0 +11540,32,32,11,0.0 +11540,24,4.5,35,0.0 +11540,11,21,10,0.0 +11540,26,31.23,39,0.0 +11540,56,38,41,0.0 +11540,42,14,41,0.0 +11540,45,9.5,30,0.0 +11540,39,18,33,0.0 +11540,17,39,45,0.0 +11540,65,21.05,47,0.0 +11540,67,14,7,0.0 +11540,43,46,18,0.0 +11540,74,10,45,0.0 +11540,73,15,47,0.0 +11540,38,263.5,19,0.0 +11540,22,21,46,0.0 +11540,20,81,31,0.0 +11540,62,49.3,8,0.0 +11540,46,12,7,0.0 +11540,23,9,38,0.0 +11540,25,14,43,0.0 +11540,71,21.5,20,0.0 +11540,29,123.79,40,0.0 +11540,66,17,34,0.0 +11540,34,14,15,0.0 +11540,37,26,46,0.0 +11540,13,6,1,0.0 +11540,41,9.65,1,0.0 +11540,35,18,1,0.0 +11540,51,53,21,0.0 +11540,57,19.5,5,0.0 +11540,30,25.89,16,0.0 +11540,76,18,34,0.0 +11540,64,33.25,6,0.0 +11540,52,7,35,0.0 +11540,15,15.5,14,0.0 +11540,28,45.6,26,0.0 +11540,16,17.45,9,0.0 +11540,55,24,10,0.0 +11540,75,7.75,35,0.0 +11540,33,2.5,50,0.0 +11541,31,12.5,34,0.0 +11541,45,9.5,46,0.0 +11541,49,20,13,0.0 +11541,14,23.25,2,0.0 +11541,33,2.5,23,0.0 +11541,75,7.75,18,0.0 +11541,50,16.25,6,0.0 +11541,15,15.5,19,0.0 +11541,57,19.5,30,0.0 +11541,29,123.79,5,0.0 +11541,43,46,19,0.0 +11541,55,24,46,0.0 +11542,16,17.45,34,0.0 +11542,29,123.79,17,0.0 +11542,26,31.23,11,0.0 +11542,73,15,32,0.0 +11542,28,45.6,6,0.0 +11542,37,26,32,0.0 +11542,62,49.3,23,0.0 +11542,27,43.9,3,0.0 +11542,72,34.8,18,0.0 +11542,53,32.8,50,0.0 +11542,43,46,33,0.0 +11542,46,12,29,0.0 +11542,44,19.45,10,0.0 +11542,4,22,13,0.0 +11542,68,12.5,16,0.0 +11542,64,33.25,18,0.0 +11542,36,19,45,0.0 +11542,52,7,25,0.0 +11542,15,15.5,26,0.0 +11542,56,38,3,0.0 +11542,35,18,22,0.0 +11542,71,21.5,41,0.0 +11542,13,6,13,0.0 +11542,58,13.25,20,0.0 +11542,22,21,2,0.0 +11542,20,81,4,0.0 +11542,65,21.05,42,0.0 +11542,14,23.25,27,0.0 +11542,9,97,49,0.0 +11542,6,25,4,0.0 +11542,41,9.65,41,0.0 +11542,31,12.5,8,0.0 +11542,77,13,4,0.0 +11542,40,18.4,25,0.0 +11542,55,24,22,0.0 +11542,19,9.2,48,0.0 +11542,5,21.35,26,0.0 +11542,67,14,34,0.0 +11542,63,43.9,30,0.0 +11542,74,10,18,0.0 +11542,61,28.5,31,0.0 +11542,17,39,28,0.0 +11542,34,14,20,0.0 +11542,75,7.75,48,0.0 +11542,7,30,37,0.0 +11542,60,34,22,0.0 +11542,10,31,43,0.0 +11542,70,15,33,0.0 +11542,30,25.89,45,0.0 +11542,54,7.45,8,0.0 +11542,50,16.25,28,0.0 +11542,21,10,23,0.0 +11542,8,40,23,0.0 +11542,57,19.5,3,0.0 +11542,12,38,15,0.0 +11543,32,32,47,0.0 +11543,49,20,41,0.0 +11543,54,7.45,20,0.0 +11543,13,6,42,0.0 +11543,10,31,14,0.0 +11543,75,7.75,38,0.0 +11543,56,38,15,0.0 +11543,33,2.5,31,0.0 +11543,61,28.5,31,0.0 +11543,24,4.5,17,0.0 +11543,50,16.25,50,0.0 +11543,46,12,5,0.0 +11543,8,40,41,0.0 +11543,28,45.6,35,0.0 +11543,51,53,1,0.0 +11543,41,9.65,5,0.0 +11543,73,15,27,0.0 +11543,20,81,32,0.0 +11543,5,21.35,16,0.0 +11543,65,21.05,50,0.0 +11543,62,49.3,9,0.0 +11543,22,21,25,0.0 +11543,21,10,25,0.0 +11543,68,12.5,28,0.0 +11543,34,14,19,0.0 +11543,38,263.5,1,0.0 +11543,26,31.23,47,0.0 +11543,71,21.5,11,0.0 +11543,66,17,26,0.0 +11543,18,62.5,29,0.0 +11543,63,43.9,10,0.0 +11543,74,10,18,0.0 +11543,1,18,24,0.0 +11543,7,30,45,0.0 +11543,47,9.5,50,0.0 +11543,64,33.25,42,0.0 +11543,58,13.25,46,0.0 +11543,57,19.5,25,0.0 +11543,37,26,18,0.0 +11543,53,32.8,9,0.0 +11543,70,15,37,0.0 +11543,45,9.5,31,0.0 +11543,9,97,24,0.0 +11543,42,14,50,0.0 +11543,77,13,35,0.0 +11543,31,12.5,34,0.0 +11543,69,36,40,0.0 +11543,39,18,2,0.0 +11543,19,9.2,13,0.0 +11543,15,15.5,11,0.0 +11543,36,19,25,0.0 +11543,14,23.25,26,0.0 +11543,17,39,32,0.0 +11543,29,123.79,35,0.0 +11543,55,24,35,0.0 +11543,16,17.45,20,0.0 +11543,11,21,44,0.0 +11544,21,10,19,0.0 +11544,41,9.65,47,0.0 +11544,52,7,12,0.0 +11544,54,7.45,32,0.0 +11544,69,36,30,0.0 +11544,22,21,45,0.0 +11544,18,62.5,13,0.0 +11544,42,14,44,0.0 +11544,19,9.2,46,0.0 +11544,47,9.5,2,0.0 +11544,67,14,3,0.0 +11544,73,15,12,0.0 +11544,65,21.05,20,0.0 +11544,70,15,28,0.0 +11544,66,17,44,0.0 +11544,76,18,1,0.0 +11544,55,24,49,0.0 +11544,27,43.9,12,0.0 +11544,53,32.8,22,0.0 +11544,20,81,41,0.0 +11544,50,16.25,7,0.0 +11544,39,18,17,0.0 +11544,30,25.89,33,0.0 +11544,2,19,39,0.0 +11544,77,13,38,0.0 +11544,57,19.5,15,0.0 +11544,37,26,12,0.0 +11544,56,38,35,0.0 +11544,1,18,35,0.0 +11544,16,17.45,13,0.0 +11544,31,12.5,25,0.0 +11544,49,20,8,0.0 +11544,43,46,3,0.0 +11544,12,38,24,0.0 +11544,10,31,4,0.0 +11545,13,6,46,0.0 +11545,62,49.3,14,0.0 +11545,17,39,38,0.0 +11545,55,24,19,0.0 +11545,26,31.23,8,0.0 +11545,48,12.75,49,0.0 +11545,49,20,35,0.0 +11545,34,14,16,0.0 +11545,23,9,22,0.0 +11545,59,55,41,0.0 +11545,51,53,47,0.0 +11545,71,21.5,36,0.0 +11545,61,28.5,23,0.0 +11545,70,15,22,0.0 +11545,29,123.79,29,0.0 +11545,64,33.25,47,0.0 +11545,73,15,14,0.0 +11545,14,23.25,17,0.0 +11545,6,25,5,0.0 +11545,7,30,32,0.0 +11545,44,19.45,43,0.0 +11545,58,13.25,35,0.0 +11545,67,14,38,0.0 +11545,63,43.9,40,0.0 +11545,25,14,7,0.0 +11545,36,19,38,0.0 +11545,69,36,5,0.0 +11545,22,21,33,0.0 +11545,53,32.8,9,0.0 +11545,24,4.5,43,0.0 +11545,43,46,15,0.0 +11545,38,263.5,47,0.0 +11545,9,97,35,0.0 +11545,1,18,41,0.0 +11546,64,33.25,45,0.0 +11546,21,10,26,0.0 +11546,18,62.5,27,0.0 +11546,1,18,26,0.0 +11546,33,2.5,22,0.0 +11546,25,14,34,0.0 +11546,46,12,48,0.0 +11546,71,21.5,13,0.0 +11546,8,40,45,0.0 +11546,17,39,47,0.0 +11546,42,14,46,0.0 +11546,75,7.75,37,0.0 +11546,7,30,28,0.0 +11546,56,38,21,0.0 +11546,72,34.8,28,0.0 +11546,13,6,13,0.0 +11546,45,9.5,49,0.0 +11546,53,32.8,50,0.0 +11546,50,16.25,5,0.0 +11546,63,43.9,44,0.0 +11546,52,7,44,0.0 +11546,38,263.5,4,0.0 +11546,77,13,5,0.0 +11546,24,4.5,44,0.0 +11546,67,14,10,0.0 +11546,11,21,28,0.0 +11546,16,17.45,41,0.0 +11547,69,36,24,0.0 +11547,51,53,18,0.0 +11547,7,30,1,0.0 +11547,41,9.65,5,0.0 +11547,61,28.5,10,0.0 +11547,42,14,1,0.0 +11547,36,19,31,0.0 +11547,12,38,49,0.0 +11547,60,34,18,0.0 +11547,33,2.5,17,0.0 +11547,50,16.25,3,0.0 +11547,65,21.05,4,0.0 +11547,15,15.5,5,0.0 +11547,49,20,9,0.0 +11547,70,15,7,0.0 +11547,52,7,36,0.0 +11547,22,21,21,0.0 +11547,67,14,41,0.0 +11547,8,40,8,0.0 +11547,27,43.9,19,0.0 +11547,20,81,31,0.0 +11547,24,4.5,32,0.0 +11547,32,32,27,0.0 +11547,59,55,18,0.0 +11547,31,12.5,24,0.0 +11547,66,17,18,0.0 +11547,55,24,36,0.0 +11547,13,6,9,0.0 +11547,10,31,40,0.0 +11547,30,25.89,24,0.0 +11547,35,18,23,0.0 +11547,5,21.35,23,0.0 +11547,54,7.45,36,0.0 +11547,44,19.45,36,0.0 +11547,28,45.6,5,0.0 +11547,74,10,7,0.0 +11547,1,18,15,0.0 +11547,77,13,42,0.0 +11547,25,14,17,0.0 +11548,55,24,5,0.0 +11548,31,12.5,50,0.0 +11548,47,9.5,23,0.0 +11548,29,123.79,20,0.0 +11548,53,32.8,26,0.0 +11548,19,9.2,11,0.0 +11548,74,10,23,0.0 +11548,68,12.5,29,0.0 +11548,66,17,28,0.0 +11548,35,18,46,0.0 +11548,23,9,33,0.0 +11548,3,10,22,0.0 +11548,71,21.5,4,0.0 +11548,57,19.5,11,0.0 +11548,62,49.3,32,0.0 +11548,20,81,32,0.0 +11548,16,17.45,1,0.0 +11548,41,9.65,25,0.0 +11548,21,10,48,0.0 +11548,54,7.45,49,0.0 +11548,13,6,4,0.0 +11548,24,4.5,6,0.0 +11548,61,28.5,32,0.0 +11548,40,18.4,43,0.0 +11548,18,62.5,41,0.0 +11548,34,14,23,0.0 +11548,27,43.9,40,0.0 +11548,44,19.45,29,0.0 +11548,7,30,42,0.0 +11548,22,21,40,0.0 +11548,15,15.5,14,0.0 +11548,11,21,12,0.0 +11548,51,53,5,0.0 +11548,14,23.25,17,0.0 +11548,77,13,46,0.0 +11548,36,19,24,0.0 +11548,72,34.8,1,0.0 +11548,70,15,48,0.0 +11548,30,25.89,24,0.0 +11548,60,34,39,0.0 +11548,73,15,45,0.0 +11548,9,97,42,0.0 +11548,12,38,26,0.0 +11548,75,7.75,16,0.0 +11548,52,7,17,0.0 +11548,38,263.5,42,0.0 +11548,64,33.25,5,0.0 +11548,10,31,20,0.0 +11548,58,13.25,4,0.0 +11548,46,12,41,0.0 +11548,33,2.5,5,0.0 +11548,26,31.23,3,0.0 +11549,58,13.25,3,0.0 +11549,17,39,13,0.0 +11549,31,12.5,37,0.0 +11549,20,81,12,0.0 +11549,41,9.65,24,0.0 +11549,5,21.35,40,0.0 +11549,2,19,14,0.0 +11549,3,10,4,0.0 +11549,65,21.05,50,0.0 +11549,19,9.2,31,0.0 +11549,40,18.4,10,0.0 +11549,77,13,11,0.0 +11549,6,25,25,0.0 +11549,33,2.5,29,0.0 +11549,18,62.5,19,0.0 +11549,24,4.5,49,0.0 +11549,53,32.8,19,0.0 +11549,28,45.6,50,0.0 +11549,26,31.23,43,0.0 +11549,45,9.5,39,0.0 +11549,13,6,8,0.0 +11549,22,21,30,0.0 +11549,54,7.45,36,0.0 +11549,52,7,11,0.0 +11549,1,18,13,0.0 +11549,72,34.8,30,0.0 +11549,55,24,20,0.0 +11549,36,19,39,0.0 +11549,59,55,13,0.0 +11549,50,16.25,7,0.0 +11549,44,19.45,27,0.0 +11549,63,43.9,30,0.0 +11549,66,17,24,0.0 +11549,37,26,27,0.0 +11549,4,22,40,0.0 +11549,35,18,27,0.0 +11549,62,49.3,36,0.0 +11549,61,28.5,15,0.0 +11550,75,7.75,32,0.0 +11550,69,36,21,0.0 +11550,39,18,36,0.0 +11550,40,18.4,34,0.0 +11550,60,34,46,0.0 +11550,17,39,47,0.0 +11550,21,10,47,0.0 +11550,10,31,21,0.0 +11550,63,43.9,1,0.0 +11550,29,123.79,18,0.0 +11550,23,9,13,0.0 +11550,45,9.5,1,0.0 +11550,48,12.75,38,0.0 +11550,36,19,46,0.0 +11550,62,49.3,1,0.0 +11550,7,30,16,0.0 +11550,31,12.5,32,0.0 +11550,2,19,8,0.0 +11550,8,40,26,0.0 +11550,53,32.8,11,0.0 +11550,38,263.5,35,0.0 +11550,27,43.9,39,0.0 +11550,61,28.5,11,0.0 +11550,44,19.45,42,0.0 +11550,64,33.25,10,0.0 +11550,54,7.45,33,0.0 +11550,20,81,14,0.0 +11550,25,14,28,0.0 +11550,13,6,17,0.0 +11550,32,32,26,0.0 +11550,15,15.5,25,0.0 +11550,71,21.5,19,0.0 +11550,49,20,27,0.0 +11550,47,9.5,4,0.0 +11550,72,34.8,45,0.0 +11550,56,38,3,0.0 +11550,52,7,23,0.0 +11550,11,21,16,0.0 +11550,46,12,35,0.0 +11550,5,21.35,40,0.0 +11550,14,23.25,3,0.0 +11550,6,25,8,0.0 +11550,34,14,28,0.0 +11550,26,31.23,25,0.0 +11550,28,45.6,20,0.0 +11550,70,15,15,0.0 +11550,74,10,6,0.0 +11550,9,97,30,0.0 +11550,68,12.5,18,0.0 +11550,37,26,32,0.0 +11550,30,25.89,20,0.0 +11550,65,21.05,37,0.0 +11550,33,2.5,27,0.0 +11550,59,55,21,0.0 +11550,76,18,25,0.0 +11551,52,7,44,0.0 +11551,14,23.25,21,0.0 +11551,37,26,43,0.0 +11551,30,25.89,9,0.0 +11551,70,15,39,0.0 +11551,9,97,32,0.0 +11551,26,31.23,42,0.0 +11551,1,18,1,0.0 +11551,41,9.65,3,0.0 +11551,4,22,35,0.0 +11551,71,21.5,9,0.0 +11551,73,15,2,0.0 +11551,77,13,24,0.0 +11551,63,43.9,4,0.0 +11551,3,10,24,0.0 +11551,58,13.25,33,0.0 +11551,51,53,42,0.0 +11551,57,19.5,43,0.0 +11551,69,36,43,0.0 +11551,2,19,20,0.0 +11551,66,17,41,0.0 +11551,32,32,23,0.0 +11551,23,9,32,0.0 +11551,44,19.45,18,0.0 +11551,17,39,34,0.0 +11551,20,81,17,0.0 +11551,43,46,29,0.0 +11551,33,2.5,8,0.0 +11551,25,14,35,0.0 +11551,39,18,27,0.0 +11551,42,14,34,0.0 +11551,76,18,4,0.0 +11551,56,38,4,0.0 +11551,54,7.45,33,0.0 +11551,50,16.25,49,0.0 +11551,55,24,4,0.0 +11551,40,18.4,29,0.0 +11551,5,21.35,3,0.0 +11551,61,28.5,17,0.0 +11551,13,6,6,0.0 +11551,27,43.9,41,0.0 +11551,28,45.6,7,0.0 +11551,36,19,32,0.0 +11551,74,10,8,0.0 +11551,75,7.75,48,0.0 +11552,63,43.9,30,0.0 +11552,38,263.5,28,0.0 +11552,6,25,34,0.0 +11552,55,24,24,0.0 +11552,29,123.79,8,0.0 +11552,35,18,9,0.0 +11552,16,17.45,31,0.0 +11552,66,17,43,0.0 +11552,58,13.25,47,0.0 +11552,21,10,44,0.0 +11552,74,10,13,0.0 +11552,3,10,38,0.0 +11552,34,14,6,0.0 +11552,73,15,2,0.0 +11552,32,32,8,0.0 +11552,43,46,15,0.0 +11552,59,55,20,0.0 +11552,10,31,47,0.0 +11552,52,7,2,0.0 +11552,56,38,3,0.0 +11552,4,22,37,0.0 +11552,44,19.45,34,0.0 +11552,51,53,48,0.0 +11552,76,18,47,0.0 +11552,37,26,25,0.0 +11552,57,19.5,38,0.0 +11552,60,34,25,0.0 +11552,20,81,49,0.0 +11552,41,9.65,9,0.0 +11552,46,12,50,0.0 +11552,8,40,15,0.0 +11552,50,16.25,44,0.0 +11552,23,9,36,0.0 +11552,54,7.45,50,0.0 +11552,30,25.89,43,0.0 +11552,28,45.6,15,0.0 +11552,45,9.5,46,0.0 +11552,53,32.8,18,0.0 +11552,1,18,49,0.0 +11552,15,15.5,3,0.0 +11552,61,28.5,30,0.0 +11552,18,62.5,4,0.0 +11552,71,21.5,40,0.0 +11552,17,39,6,0.0 +11552,31,12.5,15,0.0 +11552,7,30,41,0.0 +11552,72,34.8,25,0.0 +11552,5,21.35,3,0.0 +11552,75,7.75,5,0.0 +11552,22,21,15,0.0 +11552,9,97,31,0.0 +11553,25,14,27,0.0 +11553,37,26,40,0.0 +11553,57,19.5,26,0.0 +11553,35,18,17,0.0 +11553,66,17,41,0.0 +11553,3,10,15,0.0 +11553,17,39,3,0.0 +11553,9,97,6,0.0 +11553,42,14,23,0.0 +11553,54,7.45,8,0.0 +11553,16,17.45,26,0.0 +11553,50,16.25,35,0.0 +11553,14,23.25,34,0.0 +11553,77,13,30,0.0 +11553,15,15.5,15,0.0 +11553,67,14,43,0.0 +11553,65,21.05,28,0.0 +11553,32,32,8,0.0 +11553,30,25.89,26,0.0 +11553,62,49.3,10,0.0 +11553,41,9.65,24,0.0 +11553,49,20,29,0.0 +11553,73,15,42,0.0 +11553,36,19,13,0.0 +11553,71,21.5,20,0.0 +11553,74,10,8,0.0 +11553,2,19,33,0.0 +11553,21,10,48,0.0 +11553,31,12.5,11,0.0 +11553,27,43.9,19,0.0 +11553,58,13.25,28,0.0 +11553,34,14,14,0.0 +11554,22,21,19,0.0 +11554,58,13.25,8,0.0 +11554,28,45.6,16,0.0 +11554,6,25,48,0.0 +11554,47,9.5,32,0.0 +11554,74,10,6,0.0 +11554,43,46,22,0.0 +11554,44,19.45,13,0.0 +11554,9,97,46,0.0 +11554,49,20,21,0.0 +11554,19,9.2,19,0.0 +11554,1,18,38,0.0 +11554,69,36,35,0.0 +11554,65,21.05,5,0.0 +11554,24,4.5,7,0.0 +11554,20,81,23,0.0 +11554,15,15.5,17,0.0 +11554,32,32,12,0.0 +11554,72,34.8,43,0.0 +11554,59,55,13,0.0 +11554,21,10,18,0.0 +11554,41,9.65,50,0.0 +11554,10,31,38,0.0 +11554,2,19,47,0.0 +11554,29,123.79,1,0.0 +11554,42,14,19,0.0 +11554,36,19,3,0.0 +11554,76,18,42,0.0 +11554,56,38,29,0.0 +11554,16,17.45,5,0.0 +11554,48,12.75,1,0.0 +11554,11,21,17,0.0 +11554,23,9,20,0.0 +11554,53,32.8,47,0.0 +11554,52,7,38,0.0 +11554,26,31.23,23,0.0 +11554,70,15,21,0.0 +11554,57,19.5,44,0.0 +11554,55,24,49,0.0 +11554,50,16.25,48,0.0 +11554,14,23.25,20,0.0 +11554,66,17,19,0.0 +11554,34,14,37,0.0 +11555,62,49.3,18,0.0 +11555,1,18,7,0.0 +11555,71,21.5,9,0.0 +11555,42,14,24,0.0 +11555,29,123.79,25,0.0 +11555,68,12.5,5,0.0 +11555,38,263.5,47,0.0 +11555,41,9.65,16,0.0 +11555,36,19,12,0.0 +11555,51,53,35,0.0 +11555,9,97,4,0.0 +11555,75,7.75,17,0.0 +11555,17,39,15,0.0 +11555,61,28.5,48,0.0 +11555,69,36,32,0.0 +11555,10,31,29,0.0 +11555,73,15,36,0.0 +11555,26,31.23,46,0.0 +11555,67,14,4,0.0 +11555,65,21.05,8,0.0 +11555,77,13,34,0.0 +11555,37,26,18,0.0 +11555,58,13.25,19,0.0 +11555,74,10,21,0.0 +11555,44,19.45,21,0.0 +11555,46,12,37,0.0 +11555,30,25.89,28,0.0 +11555,70,15,40,0.0 +11555,13,6,28,0.0 +11555,34,14,18,0.0 +11555,59,55,29,0.0 +11555,60,34,25,0.0 +11555,11,21,33,0.0 +11555,49,20,46,0.0 +11555,21,10,37,0.0 +11555,72,34.8,46,0.0 +11555,4,22,25,0.0 +11555,52,7,15,0.0 +11555,23,9,45,0.0 +11555,5,21.35,36,0.0 +11555,48,12.75,33,0.0 +11555,28,45.6,22,0.0 +11555,3,10,21,0.0 +11555,24,4.5,33,0.0 +11555,47,9.5,23,0.0 +11555,53,32.8,11,0.0 +11555,7,30,19,0.0 +11555,64,33.25,37,0.0 +11555,76,18,11,0.0 +11555,45,9.5,30,0.0 +11555,50,16.25,9,0.0 +11555,22,21,23,0.0 +11555,63,43.9,23,0.0 +11555,32,32,4,0.0 +11555,31,12.5,49,0.0 +11555,2,19,46,0.0 +11555,8,40,10,0.0 +11555,6,25,26,0.0 +11555,57,19.5,47,0.0 +11555,39,18,37,0.0 +11555,18,62.5,14,0.0 +11555,15,15.5,6,0.0 +11555,43,46,44,0.0 +11555,16,17.45,40,0.0 +11555,55,24,18,0.0 +11555,35,18,41,0.0 +11555,56,38,22,0.0 +11555,12,38,50,0.0 +11555,33,2.5,25,0.0 +11555,25,14,38,0.0 +11555,20,81,37,0.0 +11555,14,23.25,22,0.0 +11555,19,9.2,34,0.0 +11555,54,7.45,14,0.0 +11555,27,43.9,10,0.0 +11556,56,38,22,0.0 +11556,69,36,6,0.0 +11556,11,21,37,0.0 +11556,25,14,43,0.0 +11556,5,21.35,49,0.0 +11556,52,7,18,0.0 +11556,49,20,50,0.0 +11556,3,10,11,0.0 +11556,26,31.23,20,0.0 +11556,23,9,20,0.0 +11556,70,15,6,0.0 +11556,67,14,25,0.0 +11556,45,9.5,47,0.0 +11556,27,43.9,38,0.0 +11556,37,26,4,0.0 +11556,33,2.5,20,0.0 +11556,64,33.25,26,0.0 +11556,77,13,42,0.0 +11556,10,31,46,0.0 +11556,59,55,45,0.0 +11556,20,81,32,0.0 +11556,9,97,22,0.0 +11556,17,39,17,0.0 +11556,72,34.8,40,0.0 +11556,6,25,30,0.0 +11556,18,62.5,34,0.0 +11556,38,263.5,46,0.0 +11556,14,23.25,17,0.0 +11556,76,18,38,0.0 +11556,34,14,50,0.0 +11556,54,7.45,37,0.0 +11556,2,19,45,0.0 +11556,31,12.5,18,0.0 +11556,41,9.65,12,0.0 +11556,44,19.45,9,0.0 +11556,50,16.25,14,0.0 +11556,4,22,41,0.0 +11556,66,17,7,0.0 +11556,73,15,11,0.0 +11556,48,12.75,38,0.0 +11556,57,19.5,39,0.0 +11556,7,30,43,0.0 +11556,74,10,7,0.0 +11556,1,18,8,0.0 +11556,22,21,50,0.0 +11556,40,18.4,28,0.0 +11556,62,49.3,45,0.0 +11556,43,46,23,0.0 +11556,63,43.9,48,0.0 +11556,55,24,33,0.0 +11556,65,21.05,41,0.0 +11556,36,19,8,0.0 +11556,16,17.45,9,0.0 +11556,30,25.89,45,0.0 +11556,28,45.6,47,0.0 +11556,51,53,19,0.0 +11556,39,18,44,0.0 +11556,42,14,5,0.0 +11556,15,15.5,21,0.0 +11556,71,21.5,25,0.0 +11557,9,97,28,0.0 +11557,42,14,38,0.0 +11557,52,7,31,0.0 +11557,67,14,15,0.0 +11557,66,17,32,0.0 +11557,24,4.5,3,0.0 +11557,55,24,41,0.0 +11557,29,123.79,27,0.0 +11557,53,32.8,16,0.0 +11557,64,33.25,5,0.0 +11557,19,9.2,4,0.0 +11557,74,10,5,0.0 +11557,44,19.45,3,0.0 +11557,59,55,15,0.0 +11557,50,16.25,17,0.0 +11557,40,18.4,3,0.0 +11557,12,38,19,0.0 +11557,3,10,6,0.0 +11557,23,9,25,0.0 +11557,20,81,43,0.0 +11557,73,15,15,0.0 +11557,34,14,2,0.0 +11557,15,15.5,39,0.0 +11557,10,31,44,0.0 +11557,62,49.3,30,0.0 +11557,60,34,8,0.0 +11557,2,19,21,0.0 +11557,7,30,38,0.0 +11557,5,21.35,16,0.0 +11557,43,46,18,0.0 +11557,18,62.5,43,0.0 +11557,14,23.25,1,0.0 +11557,27,43.9,47,0.0 +11557,30,25.89,34,0.0 +11557,8,40,33,0.0 +11557,22,21,50,0.0 +11557,17,39,31,0.0 +11557,33,2.5,36,0.0 +11557,63,43.9,38,0.0 +11557,32,32,5,0.0 +11557,48,12.75,32,0.0 +11557,70,15,41,0.0 +11557,47,9.5,45,0.0 +11557,45,9.5,3,0.0 +11557,28,45.6,39,0.0 +11557,54,7.45,24,0.0 +11557,39,18,34,0.0 +11558,53,32.8,50,0.0 +11558,49,20,43,0.0 +11558,10,31,36,0.0 +11558,34,14,1,0.0 +11558,2,19,6,0.0 +11558,59,55,36,0.0 +11558,65,21.05,49,0.0 +11558,32,32,12,0.0 +11558,58,13.25,21,0.0 +11558,18,62.5,23,0.0 +11558,14,23.25,5,0.0 +11558,9,97,15,0.0 +11558,6,25,47,0.0 +11558,69,36,11,0.0 +11558,11,21,27,0.0 +11558,33,2.5,29,0.0 +11558,35,18,34,0.0 +11558,68,12.5,43,0.0 +11558,46,12,13,0.0 +11558,38,263.5,2,0.0 +11558,57,19.5,42,0.0 +11558,75,7.75,47,0.0 +11558,42,14,6,0.0 +11558,67,14,41,0.0 +11558,48,12.75,4,0.0 +11558,66,17,4,0.0 +11558,56,38,30,0.0 +11558,51,53,18,0.0 +11558,22,21,4,0.0 +11558,30,25.89,1,0.0 +11558,15,15.5,23,0.0 +11558,4,22,1,0.0 +11558,77,13,50,0.0 +11558,25,14,15,0.0 +11558,45,9.5,3,0.0 +11558,52,7,14,0.0 +11558,26,31.23,34,0.0 +11558,1,18,23,0.0 +11558,61,28.5,5,0.0 +11558,17,39,30,0.0 +11558,7,30,33,0.0 +11558,3,10,31,0.0 +11558,40,18.4,1,0.0 +11558,29,123.79,10,0.0 +11558,5,21.35,11,0.0 +11558,76,18,9,0.0 +11558,64,33.25,34,0.0 +11558,63,43.9,48,0.0 +11558,37,26,40,0.0 +11558,13,6,8,0.0 +11558,27,43.9,29,0.0 +11558,55,24,35,0.0 +11558,60,34,27,0.0 +11558,16,17.45,12,0.0 +11558,43,46,22,0.0 +11558,36,19,16,0.0 +11558,71,21.5,22,0.0 +11558,24,4.5,50,0.0 +11558,23,9,33,0.0 +11558,19,9.2,17,0.0 +11558,39,18,14,0.0 +11558,50,16.25,13,0.0 +11558,41,9.65,45,0.0 +11558,72,34.8,18,0.0 +11558,62,49.3,8,0.0 +11558,31,12.5,2,0.0 +11558,73,15,39,0.0 +11558,8,40,29,0.0 +11558,28,45.6,30,0.0 +11558,20,81,48,0.0 +11558,12,38,41,0.0 +11559,72,34.8,16,0.0 +11559,28,45.6,20,0.0 +11559,73,15,35,0.0 +11559,36,19,4,0.0 +11559,42,14,47,0.0 +11559,32,32,44,0.0 +11559,26,31.23,47,0.0 +11559,19,9.2,44,0.0 +11559,58,13.25,30,0.0 +11559,66,17,50,0.0 +11559,37,26,39,0.0 +11559,62,49.3,42,0.0 +11559,34,14,7,0.0 +11559,15,15.5,31,0.0 +11559,75,7.75,39,0.0 +11559,13,6,35,0.0 +11559,71,21.5,25,0.0 +11559,52,7,24,0.0 +11559,27,43.9,21,0.0 +11559,50,16.25,27,0.0 +11559,14,23.25,11,0.0 +11559,1,18,19,0.0 +11559,23,9,48,0.0 +11559,24,4.5,9,0.0 +11559,45,9.5,48,0.0 +11559,20,81,36,0.0 +11559,54,7.45,46,0.0 +11559,21,10,35,0.0 +11559,8,40,28,0.0 +11559,76,18,48,0.0 +11559,5,21.35,17,0.0 +11559,40,18.4,47,0.0 +11559,61,28.5,45,0.0 +11559,30,25.89,36,0.0 +11559,69,36,30,0.0 +11559,38,263.5,37,0.0 +11559,11,21,36,0.0 +11559,16,17.45,22,0.0 +11559,39,18,37,0.0 +11559,31,12.5,2,0.0 +11559,4,22,22,0.0 +11559,35,18,35,0.0 +11559,43,46,12,0.0 +11559,49,20,41,0.0 +11559,70,15,25,0.0 +11559,9,97,7,0.0 +11559,60,34,24,0.0 +11559,74,10,37,0.0 +11559,10,31,27,0.0 +11559,47,9.5,19,0.0 +11559,63,43.9,46,0.0 +11559,3,10,25,0.0 +11559,33,2.5,35,0.0 +11559,48,12.75,3,0.0 +11559,53,32.8,40,0.0 +11559,56,38,14,0.0 +11559,25,14,2,0.0 +11559,57,19.5,41,0.0 +11559,22,21,5,0.0 +11559,6,25,15,0.0 +11559,41,9.65,33,0.0 +11559,55,24,37,0.0 +11559,2,19,26,0.0 +11559,59,55,6,0.0 +11559,51,53,3,0.0 +11559,17,39,9,0.0 +11559,46,12,45,0.0 +11559,44,19.45,15,0.0 +11559,67,14,1,0.0 +11559,64,33.25,17,0.0 +11559,12,38,25,0.0 +11559,77,13,18,0.0 +11559,7,30,14,0.0 +11559,29,123.79,48,0.0 +11559,68,12.5,42,0.0 +11559,18,62.5,5,0.0 +11560,5,21.35,35,0.0 +11560,17,39,28,0.0 +11560,4,22,43,0.0 +11560,48,12.75,1,0.0 +11560,20,81,33,0.0 +11560,39,18,47,0.0 +11560,47,9.5,47,0.0 +11560,43,46,30,0.0 +11560,56,38,12,0.0 +11560,37,26,42,0.0 +11560,35,18,49,0.0 +11560,45,9.5,36,0.0 +11560,55,24,13,0.0 +11560,30,25.89,4,0.0 +11560,57,19.5,25,0.0 +11560,74,10,4,0.0 +11560,6,25,3,0.0 +11560,1,18,49,0.0 +11560,10,31,27,0.0 +11560,51,53,11,0.0 +11560,3,10,24,0.0 +11560,8,40,36,0.0 +11560,62,49.3,47,0.0 +11560,60,34,27,0.0 +11560,14,23.25,28,0.0 +11560,28,45.6,38,0.0 +11560,68,12.5,11,0.0 +11560,49,20,11,0.0 +11560,72,34.8,43,0.0 +11560,69,36,3,0.0 +11560,2,19,12,0.0 +11560,71,21.5,13,0.0 +11560,50,16.25,7,0.0 +11560,33,2.5,9,0.0 +11560,32,32,38,0.0 +11560,38,263.5,28,0.0 +11560,29,123.79,9,0.0 +11560,9,97,5,0.0 +11560,26,31.23,32,0.0 +11560,27,43.9,1,0.0 +11560,15,15.5,18,0.0 +11560,36,19,50,0.0 +11560,44,19.45,6,0.0 +11560,61,28.5,50,0.0 +11560,19,9.2,42,0.0 +11560,63,43.9,21,0.0 +11560,65,21.05,12,0.0 +11560,64,33.25,15,0.0 +11560,73,15,44,0.0 +11560,46,12,25,0.0 +11560,18,62.5,39,0.0 +11560,22,21,39,0.0 +11560,11,21,47,0.0 +11560,21,10,46,0.0 +11560,23,9,22,0.0 +11560,31,12.5,1,0.0 +11560,53,32.8,20,0.0 +11560,25,14,37,0.0 +11561,16,17.45,32,0.0 +11561,14,23.25,13,0.0 +11561,33,2.5,1,0.0 +11561,57,19.5,19,0.0 +11561,31,12.5,33,0.0 +11561,34,14,23,0.0 +11561,2,19,32,0.0 +11561,32,32,25,0.0 +11561,71,21.5,46,0.0 +11561,43,46,3,0.0 +11561,8,40,43,0.0 +11561,9,97,40,0.0 +11561,1,18,22,0.0 +11561,11,21,7,0.0 +11561,69,36,16,0.0 +11561,26,31.23,46,0.0 +11561,5,21.35,12,0.0 +11561,51,53,41,0.0 +11561,35,18,12,0.0 +11561,37,26,39,0.0 +11561,39,18,43,0.0 +11561,49,20,45,0.0 +11561,54,7.45,49,0.0 +11561,74,10,12,0.0 +11561,73,15,4,0.0 +11561,61,28.5,7,0.0 +11561,65,21.05,38,0.0 +11561,77,13,40,0.0 +11561,76,18,32,0.0 +11562,57,19.5,18,0.0 +11562,48,12.75,43,0.0 +11562,75,7.75,12,0.0 +11562,58,13.25,36,0.0 +11562,74,10,40,0.0 +11562,1,18,34,0.0 +11562,53,32.8,16,0.0 +11562,44,19.45,14,0.0 +11562,39,18,39,0.0 +11562,24,4.5,7,0.0 +11562,65,21.05,14,0.0 +11562,60,34,26,0.0 +11562,40,18.4,33,0.0 +11562,46,12,28,0.0 +11562,76,18,38,0.0 +11562,15,15.5,31,0.0 +11563,2,19,41,0.0 +11563,72,34.8,33,0.0 +11563,69,36,37,0.0 +11563,7,30,8,0.0 +11563,22,21,42,0.0 +11563,28,45.6,35,0.0 +11563,68,12.5,11,0.0 +11563,62,49.3,5,0.0 +11563,48,12.75,29,0.0 +11563,75,7.75,36,0.0 +11563,49,20,29,0.0 +11563,57,19.5,43,0.0 +11563,60,34,46,0.0 +11563,71,21.5,26,0.0 +11563,44,19.45,19,0.0 +11563,56,38,48,0.0 +11563,24,4.5,25,0.0 +11563,67,14,45,0.0 +11563,27,43.9,33,0.0 +11563,9,97,40,0.0 +11563,41,9.65,6,0.0 +11563,10,31,39,0.0 +11563,20,81,12,0.0 +11563,23,9,17,0.0 +11563,73,15,45,0.0 +11563,45,9.5,26,0.0 +11563,33,2.5,14,0.0 +11563,46,12,1,0.0 +11563,53,32.8,9,0.0 +11563,31,12.5,43,0.0 +11563,40,18.4,21,0.0 +11563,42,14,47,0.0 +11563,65,21.05,22,0.0 +11563,19,9.2,7,0.0 +11563,59,55,28,0.0 +11563,61,28.5,18,0.0 +11563,25,14,48,0.0 +11563,6,25,34,0.0 +11563,8,40,10,0.0 +11563,77,13,27,0.0 +11563,5,21.35,17,0.0 +11563,63,43.9,18,0.0 +11563,34,14,50,0.0 +11563,54,7.45,20,0.0 +11563,36,19,37,0.0 +11563,18,62.5,46,0.0 +11563,15,15.5,22,0.0 +11563,21,10,11,0.0 +11563,17,39,12,0.0 +11563,55,24,4,0.0 +11563,11,21,10,0.0 +11563,47,9.5,1,0.0 +11563,29,123.79,45,0.0 +11563,51,53,12,0.0 +11563,50,16.25,12,0.0 +11563,1,18,13,0.0 +11563,13,6,15,0.0 +11563,64,33.25,16,0.0 +11563,12,38,37,0.0 +11563,74,10,12,0.0 +11563,39,18,17,0.0 +11563,58,13.25,1,0.0 +11563,66,17,39,0.0 +11564,58,13.25,43,0.0 +11564,74,10,33,0.0 +11564,70,15,50,0.0 +11564,36,19,25,0.0 +11564,14,23.25,14,0.0 +11564,50,16.25,12,0.0 +11564,8,40,27,0.0 +11564,71,21.5,3,0.0 +11564,23,9,22,0.0 +11564,2,19,24,0.0 +11564,53,32.8,39,0.0 +11564,16,17.45,32,0.0 +11564,19,9.2,2,0.0 +11564,37,26,28,0.0 +11564,33,2.5,23,0.0 +11564,52,7,32,0.0 +11564,62,49.3,19,0.0 +11564,5,21.35,2,0.0 +11564,39,18,38,0.0 +11564,44,19.45,18,0.0 +11564,43,46,23,0.0 +11564,15,15.5,7,0.0 +11564,6,25,27,0.0 +11564,46,12,46,0.0 +11564,25,14,6,0.0 +11565,5,21.35,36,0.0 +11565,52,7,50,0.0 +11565,59,55,22,0.0 +11565,20,81,32,0.0 +11565,27,43.9,38,0.0 +11565,36,19,38,0.0 +11565,35,18,40,0.0 +11565,7,30,8,0.0 +11565,12,38,41,0.0 +11565,50,16.25,36,0.0 +11565,47,9.5,9,0.0 +11565,41,9.65,5,0.0 +11565,21,10,16,0.0 +11565,75,7.75,36,0.0 +11565,45,9.5,12,0.0 +11565,70,15,33,0.0 +11565,23,9,34,0.0 +11565,46,12,49,0.0 +11565,71,21.5,31,0.0 +11565,15,15.5,16,0.0 +11565,54,7.45,40,0.0 +11565,32,32,32,0.0 +11565,74,10,7,0.0 +11565,31,12.5,33,0.0 +11565,48,12.75,46,0.0 +11565,1,18,11,0.0 +11565,42,14,30,0.0 +11565,64,33.25,48,0.0 +11565,16,17.45,28,0.0 +11565,49,20,22,0.0 +11565,9,97,12,0.0 +11565,40,18.4,34,0.0 +11565,34,14,19,0.0 +11565,62,49.3,29,0.0 +11565,39,18,22,0.0 +11565,76,18,36,0.0 +11565,51,53,10,0.0 +11565,22,21,31,0.0 +11565,58,13.25,24,0.0 +11565,17,39,16,0.0 +11565,2,19,24,0.0 +11565,8,40,19,0.0 +11565,26,31.23,46,0.0 +11565,37,26,28,0.0 +11565,24,4.5,33,0.0 +11565,57,19.5,16,0.0 +11565,3,10,2,0.0 +11565,19,9.2,43,0.0 +11566,67,14,25,0.0 +11566,37,26,7,0.0 +11566,65,21.05,36,0.0 +11566,20,81,48,0.0 +11566,4,22,49,0.0 +11566,28,45.6,15,0.0 +11566,23,9,22,0.0 +11566,13,6,36,0.0 +11566,25,14,11,0.0 +11566,3,10,16,0.0 +11566,45,9.5,17,0.0 +11566,12,38,41,0.0 +11566,42,14,48,0.0 +11566,8,40,38,0.0 +11566,2,19,13,0.0 +11566,57,19.5,43,0.0 +11566,49,20,27,0.0 +11566,22,21,21,0.0 +11566,38,263.5,8,0.0 +11566,11,21,39,0.0 +11566,19,9.2,16,0.0 +11566,36,19,5,0.0 +11566,60,34,35,0.0 +11566,41,9.65,2,0.0 +11566,39,18,49,0.0 +11566,26,31.23,30,0.0 +11566,43,46,22,0.0 +11566,10,31,18,0.0 +11566,27,43.9,49,0.0 +11566,52,7,21,0.0 +11566,44,19.45,45,0.0 +11566,33,2.5,9,0.0 +11566,64,33.25,38,0.0 +11566,7,30,33,0.0 +11566,72,34.8,18,0.0 +11566,16,17.45,47,0.0 +11566,9,97,1,0.0 +11566,74,10,35,0.0 +11566,53,32.8,3,0.0 +11566,34,14,35,0.0 +11566,51,53,41,0.0 +11566,35,18,7,0.0 +11566,63,43.9,14,0.0 +11566,58,13.25,1,0.0 +11566,71,21.5,16,0.0 +11566,40,18.4,22,0.0 +11566,61,28.5,16,0.0 +11566,17,39,48,0.0 +11566,31,12.5,42,0.0 +11566,32,32,43,0.0 +11566,46,12,15,0.0 +11566,59,55,29,0.0 +11566,77,13,2,0.0 +11566,54,7.45,2,0.0 +11566,56,38,37,0.0 +11566,55,24,41,0.0 +11566,66,17,7,0.0 +11566,75,7.75,13,0.0 +11566,48,12.75,49,0.0 +11566,30,25.89,38,0.0 +11566,6,25,16,0.0 +11566,50,16.25,16,0.0 +11566,70,15,27,0.0 +11566,29,123.79,20,0.0 +11566,15,15.5,34,0.0 +11567,45,9.5,27,0.0 +11567,8,40,38,0.0 +11567,50,16.25,45,0.0 +11567,31,12.5,25,0.0 +11567,58,13.25,31,0.0 +11567,73,15,6,0.0 +11567,5,21.35,27,0.0 +11567,30,25.89,24,0.0 +11567,29,123.79,4,0.0 +11567,20,81,14,0.0 +11567,76,18,15,0.0 +11567,60,34,19,0.0 +11567,26,31.23,17,0.0 +11567,11,21,19,0.0 +11567,23,9,40,0.0 +11567,68,12.5,18,0.0 +11567,4,22,47,0.0 +11567,1,18,41,0.0 +11567,9,97,38,0.0 +11567,12,38,12,0.0 +11567,14,23.25,17,0.0 +11567,6,25,22,0.0 +11567,3,10,17,0.0 +11567,71,21.5,33,0.0 +11567,32,32,23,0.0 +11567,55,24,2,0.0 +11567,22,21,30,0.0 +11567,7,30,26,0.0 +11567,61,28.5,50,0.0 +11567,39,18,22,0.0 +11567,24,4.5,5,0.0 +11567,38,263.5,44,0.0 +11567,17,39,49,0.0 +11567,33,2.5,16,0.0 +11567,77,13,41,0.0 +11567,72,34.8,1,0.0 +11567,37,26,47,0.0 +11567,43,46,6,0.0 +11567,34,14,17,0.0 +11567,69,36,23,0.0 +11567,52,7,8,0.0 +11567,16,17.45,17,0.0 +11567,13,6,4,0.0 +11567,66,17,5,0.0 +11567,27,43.9,41,0.0 +11567,59,55,15,0.0 +11567,35,18,47,0.0 +11567,56,38,46,0.0 +11567,62,49.3,32,0.0 +11567,25,14,48,0.0 +11567,36,19,1,0.0 +11567,15,15.5,36,0.0 +11567,51,53,41,0.0 +11567,40,18.4,10,0.0 +11567,48,12.75,3,0.0 +11567,28,45.6,35,0.0 +11567,49,20,45,0.0 +11567,74,10,46,0.0 +11568,29,123.79,45,0.0 +11568,15,15.5,32,0.0 +11568,52,7,37,0.0 +11568,28,45.6,25,0.0 +11568,70,15,50,0.0 +11568,31,12.5,25,0.0 +11568,2,19,15,0.0 +11568,71,21.5,31,0.0 +11568,67,14,11,0.0 +11568,17,39,37,0.0 +11568,64,33.25,31,0.0 +11568,54,7.45,39,0.0 +11568,72,34.8,36,0.0 +11568,4,22,27,0.0 +11568,20,81,44,0.0 +11568,23,9,6,0.0 +11568,76,18,24,0.0 +11568,61,28.5,29,0.0 +11568,37,26,1,0.0 +11568,38,263.5,11,0.0 +11568,7,30,14,0.0 +11568,74,10,7,0.0 +11568,41,9.65,1,0.0 +11568,5,21.35,43,0.0 +11568,33,2.5,46,0.0 +11568,3,10,3,0.0 +11568,73,15,17,0.0 +11568,26,31.23,38,0.0 +11568,13,6,16,0.0 +11568,50,16.25,31,0.0 +11568,45,9.5,19,0.0 +11568,21,10,24,0.0 +11568,42,14,22,0.0 +11568,66,17,5,0.0 +11568,59,55,50,0.0 +11568,25,14,7,0.0 +11568,18,62.5,33,0.0 +11568,48,12.75,2,0.0 +11568,47,9.5,46,0.0 +11568,30,25.89,26,0.0 +11568,55,24,36,0.0 +11568,34,14,38,0.0 +11568,27,43.9,44,0.0 +11568,35,18,39,0.0 +11568,19,9.2,48,0.0 +11568,24,4.5,36,0.0 +11568,39,18,46,0.0 +11568,22,21,35,0.0 +11568,14,23.25,38,0.0 +11568,56,38,3,0.0 +11568,32,32,31,0.0 +11568,16,17.45,32,0.0 +11568,51,53,45,0.0 +11568,58,13.25,31,0.0 +11568,53,32.8,35,0.0 +11568,46,12,15,0.0 +11568,63,43.9,17,0.0 +11568,57,19.5,4,0.0 +11568,75,7.75,39,0.0 +11568,36,19,36,0.0 +11568,49,20,34,0.0 +11568,43,46,10,0.0 +11568,62,49.3,40,0.0 +11568,44,19.45,43,0.0 +11568,9,97,31,0.0 +11568,1,18,21,0.0 +11568,12,38,17,0.0 +11569,75,7.75,10,0.0 +11569,8,40,39,0.0 +11569,5,21.35,16,0.0 +11569,26,31.23,31,0.0 +11569,76,18,13,0.0 +11569,59,55,29,0.0 +11569,16,17.45,31,0.0 +11569,3,10,30,0.0 +11569,7,30,50,0.0 +11569,25,14,11,0.0 +11569,10,31,15,0.0 +11569,21,10,44,0.0 +11569,9,97,22,0.0 +11569,62,49.3,30,0.0 +11570,45,9.5,18,0.0 +11570,27,43.9,18,0.0 +11570,38,263.5,18,0.0 +11570,33,2.5,43,0.0 +11570,11,21,9,0.0 +11571,16,17.45,19,0.0 +11571,76,18,21,0.0 +11571,36,19,22,0.0 +11571,18,62.5,38,0.0 +11571,67,14,13,0.0 +11571,54,7.45,20,0.0 +11571,52,7,37,0.0 +11571,65,21.05,13,0.0 +11571,21,10,42,0.0 +11571,77,13,15,0.0 +11571,5,21.35,8,0.0 +11571,37,26,15,0.0 +11571,73,15,49,0.0 +11571,55,24,47,0.0 +11571,7,30,49,0.0 +11571,27,43.9,35,0.0 +11571,63,43.9,45,0.0 +11571,33,2.5,5,0.0 +11571,38,263.5,47,0.0 +11571,62,49.3,30,0.0 +11571,6,25,20,0.0 +11571,41,9.65,22,0.0 +11571,1,18,49,0.0 +11571,69,36,10,0.0 +11571,70,15,23,0.0 +11571,75,7.75,41,0.0 +11571,47,9.5,26,0.0 +11571,39,18,3,0.0 +11571,26,31.23,14,0.0 +11571,71,21.5,30,0.0 +11571,34,14,41,0.0 +11571,30,25.89,12,0.0 +11571,2,19,46,0.0 +11571,19,9.2,47,0.0 +11571,50,16.25,3,0.0 +11571,61,28.5,22,0.0 +11571,56,38,10,0.0 +11571,3,10,49,0.0 +11571,40,18.4,22,0.0 +11571,9,97,21,0.0 +11571,15,15.5,45,0.0 +11571,44,19.45,47,0.0 +11571,14,23.25,12,0.0 +11571,13,6,50,0.0 +11571,43,46,22,0.0 +11571,24,4.5,49,0.0 +11571,31,12.5,33,0.0 +11571,32,32,6,0.0 +11571,25,14,5,0.0 +11571,10,31,11,0.0 +11571,23,9,15,0.0 +11571,51,53,14,0.0 +11572,22,21,40,0.0 +11572,52,7,26,0.0 +11572,50,16.25,23,0.0 +11572,8,40,25,0.0 +11572,58,13.25,26,0.0 +11572,73,15,22,0.0 +11572,51,53,34,0.0 +11572,18,62.5,25,0.0 +11572,13,6,31,0.0 +11572,65,21.05,5,0.0 +11572,29,123.79,33,0.0 +11572,44,19.45,46,0.0 +11572,59,55,12,0.0 +11572,32,32,22,0.0 +11572,68,12.5,12,0.0 +11572,5,21.35,47,0.0 +11572,70,15,45,0.0 +11572,47,9.5,7,0.0 +11572,33,2.5,7,0.0 +11572,35,18,7,0.0 +11572,40,18.4,47,0.0 +11572,67,14,10,0.0 +11572,66,17,3,0.0 +11572,57,19.5,46,0.0 +11572,39,18,2,0.0 +11572,43,46,30,0.0 +11572,28,45.6,12,0.0 +11572,49,20,1,0.0 +11572,21,10,7,0.0 +11572,38,263.5,45,0.0 +11572,31,12.5,20,0.0 +11572,26,31.23,34,0.0 +11572,62,49.3,7,0.0 +11572,76,18,49,0.0 +11572,19,9.2,45,0.0 +11572,10,31,19,0.0 +11572,77,13,34,0.0 +11572,36,19,1,0.0 +11572,45,9.5,3,0.0 +11572,1,18,9,0.0 +11572,23,9,18,0.0 +11572,9,97,34,0.0 +11572,20,81,16,0.0 +11573,28,45.6,27,0.0 +11573,2,19,2,0.0 +11573,34,14,8,0.0 +11573,29,123.79,32,0.0 +11573,74,10,19,0.0 +11573,13,6,34,0.0 +11573,59,55,43,0.0 +11573,67,14,46,0.0 +11573,10,31,19,0.0 +11573,49,20,29,0.0 +11573,58,13.25,25,0.0 +11573,39,18,7,0.0 +11573,75,7.75,24,0.0 +11573,21,10,7,0.0 +11573,66,17,33,0.0 +11573,8,40,42,0.0 +11573,62,49.3,28,0.0 +11573,9,97,13,0.0 +11573,24,4.5,12,0.0 +11573,18,62.5,9,0.0 +11573,44,19.45,40,0.0 +11573,14,23.25,28,0.0 +11573,7,30,48,0.0 +11573,46,12,36,0.0 +11573,54,7.45,43,0.0 +11573,65,21.05,7,0.0 +11573,37,26,49,0.0 +11573,35,18,23,0.0 +11573,22,21,20,0.0 +11573,51,53,46,0.0 +11574,25,14,38,0.0 +11574,28,45.6,3,0.0 +11574,27,43.9,8,0.0 +11574,57,19.5,1,0.0 +11574,40,18.4,43,0.0 +11574,17,39,25,0.0 +11574,24,4.5,38,0.0 +11574,62,49.3,18,0.0 +11574,53,32.8,7,0.0 +11574,69,36,48,0.0 +11574,48,12.75,25,0.0 +11574,22,21,50,0.0 +11574,71,21.5,3,0.0 +11574,14,23.25,17,0.0 +11574,54,7.45,20,0.0 +11574,34,14,34,0.0 +11574,1,18,42,0.0 +11574,59,55,17,0.0 +11574,26,31.23,44,0.0 +11574,77,13,25,0.0 +11574,3,10,20,0.0 +11574,13,6,8,0.0 +11574,21,10,11,0.0 +11574,29,123.79,46,0.0 +11574,32,32,47,0.0 +11574,5,21.35,5,0.0 +11574,49,20,15,0.0 +11574,10,31,37,0.0 +11574,18,62.5,40,0.0 +11574,66,17,46,0.0 +11574,68,12.5,10,0.0 +11574,75,7.75,21,0.0 +11574,33,2.5,31,0.0 +11574,45,9.5,24,0.0 +11574,35,18,12,0.0 +11574,55,24,10,0.0 +11574,52,7,12,0.0 +11574,41,9.65,34,0.0 +11574,11,21,3,0.0 +11575,59,55,3,0.0 +11575,53,32.8,24,0.0 +11575,47,9.5,25,0.0 +11575,45,9.5,46,0.0 +11575,28,45.6,27,0.0 +11575,69,36,49,0.0 +11575,57,19.5,14,0.0 +11575,54,7.45,8,0.0 +11575,24,4.5,42,0.0 +11575,51,53,20,0.0 +11575,17,39,32,0.0 +11575,14,23.25,34,0.0 +11575,19,9.2,12,0.0 +11575,37,26,37,0.0 +11575,60,34,35,0.0 +11575,13,6,30,0.0 +11575,33,2.5,5,0.0 +11575,12,38,41,0.0 +11575,76,18,38,0.0 +11575,27,43.9,11,0.0 +11575,42,14,49,0.0 +11576,62,49.3,30,0.0 +11576,38,263.5,47,0.0 +11576,52,7,2,0.0 +11576,19,9.2,45,0.0 +11576,32,32,22,0.0 +11576,21,10,48,0.0 +11576,20,81,14,0.0 +11576,73,15,16,0.0 +11576,23,9,9,0.0 +11576,43,46,15,0.0 +11577,64,33.25,4,0.0 +11577,4,22,11,0.0 +11577,39,18,11,0.0 +11577,74,10,37,0.0 +11577,67,14,39,0.0 +11577,31,12.5,3,0.0 +11577,70,15,49,0.0 +11577,65,21.05,8,0.0 +11577,56,38,41,0.0 +11577,73,15,14,0.0 +11577,41,9.65,26,0.0 +11577,21,10,27,0.0 +11577,2,19,31,0.0 +11577,9,97,50,0.0 +11577,17,39,40,0.0 +11577,35,18,7,0.0 +11577,51,53,31,0.0 +11577,5,21.35,40,0.0 +11577,68,12.5,34,0.0 +11577,27,43.9,4,0.0 +11577,58,13.25,28,0.0 +11577,8,40,46,0.0 +11577,38,263.5,7,0.0 +11577,43,46,37,0.0 +11577,45,9.5,8,0.0 +11577,37,26,22,0.0 +11577,61,28.5,7,0.0 +11577,54,7.45,43,0.0 +11577,24,4.5,1,0.0 +11577,32,32,41,0.0 +11577,72,34.8,32,0.0 +11577,15,15.5,48,0.0 +11577,1,18,43,0.0 +11577,46,12,24,0.0 +11577,29,123.79,39,0.0 +11577,60,34,33,0.0 +11577,10,31,10,0.0 +11577,11,21,21,0.0 +11577,6,25,21,0.0 +11577,12,38,8,0.0 +11577,30,25.89,2,0.0 +11577,19,9.2,5,0.0 +11577,33,2.5,1,0.0 +11577,47,9.5,37,0.0 +11577,69,36,25,0.0 +11577,52,7,35,0.0 +11577,71,21.5,42,0.0 +11577,63,43.9,20,0.0 +11577,18,62.5,4,0.0 +11577,22,21,11,0.0 +11577,36,19,1,0.0 +11577,34,14,17,0.0 +11577,28,45.6,43,0.0 +11577,25,14,33,0.0 +11577,76,18,21,0.0 +11577,62,49.3,34,0.0 +11577,16,17.45,46,0.0 +11577,26,31.23,43,0.0 +11577,7,30,15,0.0 +11577,53,32.8,43,0.0 +11577,42,14,7,0.0 +11577,50,16.25,14,0.0 +11577,3,10,44,0.0 +11577,23,9,6,0.0 +11577,59,55,38,0.0 +11577,20,81,10,0.0 +11577,13,6,47,0.0 +11577,40,18.4,29,0.0 +11577,77,13,4,0.0 +11577,48,12.75,22,0.0 +11578,29,123.79,8,0.0 +11578,43,46,3,0.0 +11578,63,43.9,42,0.0 +11578,35,18,20,0.0 +11578,36,19,42,0.0 +11578,75,7.75,22,0.0 +11578,52,7,2,0.0 +11578,51,53,15,0.0 +11578,48,12.75,26,0.0 +11578,12,38,37,0.0 +11578,16,17.45,43,0.0 +11578,23,9,21,0.0 +11578,54,7.45,19,0.0 +11578,42,14,41,0.0 +11578,72,34.8,5,0.0 +11578,73,15,6,0.0 +11578,76,18,34,0.0 +11578,1,18,27,0.0 +11578,77,13,14,0.0 +11578,39,18,5,0.0 +11578,4,22,33,0.0 +11578,65,21.05,47,0.0 +11578,64,33.25,9,0.0 +11578,68,12.5,37,0.0 +11578,55,24,50,0.0 +11578,60,34,26,0.0 +11578,30,25.89,40,0.0 +11578,69,36,3,0.0 +11578,50,16.25,48,0.0 +11578,31,12.5,10,0.0 +11578,49,20,36,0.0 +11578,22,21,36,0.0 +11578,19,9.2,33,0.0 +11578,20,81,14,0.0 +11578,2,19,33,0.0 +11578,61,28.5,32,0.0 +11578,46,12,49,0.0 +11578,59,55,23,0.0 +11578,8,40,1,0.0 +11578,44,19.45,4,0.0 +11578,53,32.8,47,0.0 +11578,18,62.5,14,0.0 +11578,6,25,36,0.0 +11578,21,10,50,0.0 +11578,26,31.23,13,0.0 +11578,71,21.5,6,0.0 +11578,11,21,42,0.0 +11578,13,6,32,0.0 +11578,32,32,19,0.0 +11578,37,26,36,0.0 +11578,9,97,18,0.0 +11578,47,9.5,19,0.0 +11578,15,15.5,38,0.0 +11578,66,17,44,0.0 +11578,40,18.4,23,0.0 +11578,62,49.3,1,0.0 +11578,3,10,20,0.0 +11579,54,7.45,23,0.0 +11579,37,26,18,0.0 +11580,12,38,26,0.0 +11580,31,12.5,47,0.0 +11580,15,15.5,4,0.0 +11580,70,15,31,0.0 +11580,46,12,4,0.0 +11580,68,12.5,7,0.0 +11580,58,13.25,47,0.0 +11580,62,49.3,38,0.0 +11580,51,53,20,0.0 +11580,19,9.2,10,0.0 +11580,71,21.5,28,0.0 +11580,56,38,11,0.0 +11580,20,81,49,0.0 +11580,21,10,36,0.0 +11580,35,18,21,0.0 +11580,36,19,7,0.0 +11580,13,6,2,0.0 +11580,33,2.5,10,0.0 +11580,74,10,41,0.0 +11580,10,31,17,0.0 +11580,54,7.45,5,0.0 +11580,29,123.79,45,0.0 +11580,67,14,21,0.0 +11581,52,7,20,0.0 +11581,31,12.5,23,0.0 +11581,15,15.5,23,0.0 +11581,39,18,36,0.0 +11581,29,123.79,40,0.0 +11581,63,43.9,20,0.0 +11581,61,28.5,20,0.0 +11581,47,9.5,28,0.0 +11581,36,19,19,0.0 +11581,71,21.5,29,0.0 +11581,77,13,2,0.0 +11581,65,21.05,30,0.0 +11581,3,10,44,0.0 +11581,42,14,50,0.0 +11581,74,10,31,0.0 +11581,40,18.4,12,0.0 +11581,43,46,14,0.0 +11581,8,40,35,0.0 +11581,54,7.45,8,0.0 +11581,45,9.5,25,0.0 +11581,13,6,25,0.0 +11581,48,12.75,13,0.0 +11581,70,15,43,0.0 +11581,6,25,30,0.0 +11581,64,33.25,31,0.0 +11581,72,34.8,30,0.0 +11581,32,32,34,0.0 +11581,1,18,19,0.0 +11581,26,31.23,9,0.0 +11581,53,32.8,49,0.0 +11581,35,18,43,0.0 +11581,11,21,26,0.0 +11581,5,21.35,35,0.0 +11581,7,30,2,0.0 +11581,51,53,9,0.0 +11581,28,45.6,43,0.0 +11581,2,19,3,0.0 +11581,62,49.3,11,0.0 +11581,57,19.5,7,0.0 +11581,21,10,40,0.0 +11581,49,20,19,0.0 +11581,14,23.25,24,0.0 +11581,76,18,37,0.0 +11581,66,17,28,0.0 +11582,7,30,43,0.0 +11582,18,62.5,30,0.0 +11582,31,12.5,45,0.0 +11582,64,33.25,22,0.0 +11582,27,43.9,4,0.0 +11582,66,17,48,0.0 +11582,57,19.5,29,0.0 +11582,28,45.6,4,0.0 +11582,39,18,50,0.0 +11582,67,14,18,0.0 +11582,34,14,23,0.0 +11582,73,15,41,0.0 +11582,70,15,43,0.0 +11582,19,9.2,15,0.0 +11582,45,9.5,24,0.0 +11582,56,38,4,0.0 +11582,30,25.89,5,0.0 +11582,69,36,30,0.0 +11582,43,46,39,0.0 +11582,47,9.5,17,0.0 +11582,61,28.5,44,0.0 +11582,20,81,44,0.0 +11582,46,12,49,0.0 +11582,6,25,28,0.0 +11582,32,32,19,0.0 +11582,3,10,26,0.0 +11582,14,23.25,37,0.0 +11582,10,31,36,0.0 +11582,48,12.75,3,0.0 +11582,59,55,22,0.0 +11582,8,40,47,0.0 +11582,2,19,28,0.0 +11582,68,12.5,5,0.0 +11582,21,10,30,0.0 +11582,40,18.4,27,0.0 +11582,37,26,33,0.0 +11582,9,97,32,0.0 +11583,37,26,37,0.0 +11583,57,19.5,25,0.0 +11583,3,10,40,0.0 +11583,11,21,49,0.0 +11583,55,24,30,0.0 +11583,45,9.5,21,0.0 +11583,47,9.5,48,0.0 +11583,68,12.5,6,0.0 +11583,77,13,9,0.0 +11583,29,123.79,48,0.0 +11583,75,7.75,4,0.0 +11583,40,18.4,23,0.0 +11583,10,31,37,0.0 +11583,14,23.25,24,0.0 +11583,69,36,34,0.0 +11583,64,33.25,11,0.0 +11583,50,16.25,38,0.0 +11583,7,30,1,0.0 +11583,48,12.75,47,0.0 +11583,54,7.45,5,0.0 +11583,46,12,5,0.0 +11583,25,14,6,0.0 +11583,19,9.2,31,0.0 +11583,39,18,44,0.0 +11583,42,14,27,0.0 +11583,24,4.5,35,0.0 +11583,49,20,13,0.0 +11583,53,32.8,1,0.0 +11583,66,17,40,0.0 +11583,18,62.5,32,0.0 +11583,21,10,21,0.0 +11583,44,19.45,34,0.0 +11583,1,18,34,0.0 +11583,41,9.65,32,0.0 +11583,32,32,11,0.0 +11583,33,2.5,2,0.0 +11583,28,45.6,44,0.0 +11583,4,22,40,0.0 +11583,36,19,29,0.0 +11583,63,43.9,44,0.0 +11583,31,12.5,37,0.0 +11583,30,25.89,38,0.0 +11584,20,81,17,0.0 +11584,37,26,13,0.0 +11584,46,12,45,0.0 +11584,59,55,14,0.0 +11584,8,40,3,0.0 +11584,13,6,46,0.0 +11584,19,9.2,18,0.0 +11584,60,34,39,0.0 +11584,11,21,23,0.0 +11584,4,22,17,0.0 +11584,22,21,12,0.0 +11584,71,21.5,48,0.0 +11584,47,9.5,28,0.0 +11584,2,19,19,0.0 +11584,65,21.05,33,0.0 +11584,35,18,27,0.0 +11585,70,15,1,0.0 +11585,33,2.5,15,0.0 +11585,39,18,43,0.0 +11585,42,14,26,0.0 +11585,57,19.5,45,0.0 +11585,11,21,47,0.0 +11585,66,17,33,0.0 +11585,47,9.5,23,0.0 +11585,45,9.5,43,0.0 +11585,13,6,15,0.0 +11585,3,10,25,0.0 +11585,10,31,24,0.0 +11585,20,81,24,0.0 +11585,31,12.5,21,0.0 +11585,32,32,34,0.0 +11585,55,24,21,0.0 +11585,25,14,16,0.0 +11585,49,20,15,0.0 +11585,58,13.25,20,0.0 +11585,73,15,1,0.0 +11585,67,14,14,0.0 +11585,46,12,30,0.0 +11585,44,19.45,25,0.0 +11585,27,43.9,9,0.0 +11585,65,21.05,4,0.0 +11585,48,12.75,11,0.0 +11585,62,49.3,16,0.0 +11585,60,34,33,0.0 +11585,52,7,19,0.0 +11585,43,46,21,0.0 +11585,56,38,29,0.0 +11585,26,31.23,28,0.0 +11585,19,9.2,6,0.0 +11585,2,19,33,0.0 +11585,18,62.5,20,0.0 +11585,71,21.5,33,0.0 +11585,54,7.45,9,0.0 +11585,74,10,43,0.0 +11585,1,18,32,0.0 +11586,26,31.23,16,0.0 +11586,57,19.5,15,0.0 +11586,47,9.5,44,0.0 +11586,25,14,33,0.0 +11586,11,21,18,0.0 +11586,62,49.3,12,0.0 +11586,63,43.9,23,0.0 +11586,55,24,38,0.0 +11586,23,9,10,0.0 +11586,39,18,2,0.0 +11586,38,263.5,27,0.0 +11586,32,32,43,0.0 +11586,43,46,11,0.0 +11586,18,62.5,42,0.0 +11586,48,12.75,44,0.0 +11586,5,21.35,17,0.0 +11586,24,4.5,2,0.0 +11586,29,123.79,34,0.0 +11586,19,9.2,24,0.0 +11586,1,18,31,0.0 +11586,4,22,15,0.0 +11586,56,38,26,0.0 +11586,60,34,9,0.0 +11586,59,55,16,0.0 +11586,6,25,38,0.0 +11586,58,13.25,41,0.0 +11586,22,21,27,0.0 +11586,74,10,40,0.0 +11586,71,21.5,26,0.0 +11586,14,23.25,47,0.0 +11586,54,7.45,26,0.0 +11586,46,12,36,0.0 +11586,64,33.25,47,0.0 +11586,35,18,9,0.0 +11586,20,81,25,0.0 +11586,13,6,45,0.0 +11586,69,36,45,0.0 +11586,3,10,5,0.0 +11586,72,34.8,46,0.0 +11586,68,12.5,43,0.0 +11587,26,31.23,42,0.0 +11587,21,10,48,0.0 +11587,77,13,37,0.0 +11587,2,19,9,0.0 +11587,34,14,36,0.0 +11588,27,43.9,10,0.0 +11588,50,16.25,31,0.0 +11588,52,7,21,0.0 +11588,74,10,42,0.0 +11588,41,9.65,24,0.0 +11588,77,13,44,0.0 +11588,25,14,24,0.0 +11588,61,28.5,43,0.0 +11588,2,19,46,0.0 +11588,14,23.25,25,0.0 +11588,62,49.3,3,0.0 +11588,39,18,33,0.0 +11588,23,9,15,0.0 +11588,18,62.5,32,0.0 +11588,17,39,33,0.0 +11588,28,45.6,50,0.0 +11588,3,10,21,0.0 +11588,71,21.5,30,0.0 +11588,8,40,34,0.0 +11588,43,46,18,0.0 +11588,57,19.5,47,0.0 +11588,30,25.89,30,0.0 +11588,7,30,34,0.0 +11588,38,263.5,15,0.0 +11588,13,6,39,0.0 +11588,55,24,18,0.0 +11588,10,31,49,0.0 +11588,54,7.45,4,0.0 +11588,63,43.9,5,0.0 +11588,73,15,47,0.0 +11588,51,53,26,0.0 +11588,59,55,3,0.0 +11588,40,18.4,31,0.0 +11588,65,21.05,42,0.0 +11588,37,26,26,0.0 +11588,49,20,9,0.0 +11588,12,38,41,0.0 +11588,1,18,22,0.0 +11588,11,21,37,0.0 +11588,42,14,34,0.0 +11588,22,21,44,0.0 +11588,33,2.5,37,0.0 +11588,68,12.5,20,0.0 +11588,26,31.23,42,0.0 +11588,20,81,3,0.0 +11588,16,17.45,45,0.0 +11588,53,32.8,47,0.0 +11588,5,21.35,5,0.0 +11588,34,14,49,0.0 +11588,58,13.25,23,0.0 +11588,4,22,37,0.0 +11588,69,36,15,0.0 +11588,24,4.5,5,0.0 +11588,35,18,19,0.0 +11588,31,12.5,48,0.0 +11588,70,15,40,0.0 +11588,15,15.5,10,0.0 +11588,72,34.8,31,0.0 +11589,41,9.65,14,0.0 +11589,25,14,21,0.0 +11589,11,21,1,0.0 +11589,27,43.9,30,0.0 +11589,13,6,23,0.0 +11589,51,53,28,0.0 +11589,6,25,36,0.0 +11589,1,18,43,0.0 +11589,3,10,28,0.0 +11589,29,123.79,33,0.0 +11589,71,21.5,4,0.0 +11589,4,22,29,0.0 +11589,50,16.25,49,0.0 +11589,63,43.9,50,0.0 +11589,72,34.8,5,0.0 +11589,54,7.45,38,0.0 +11589,61,28.5,12,0.0 +11589,75,7.75,9,0.0 +11589,21,10,42,0.0 +11589,31,12.5,33,0.0 +11589,10,31,20,0.0 +11589,5,21.35,2,0.0 +11589,28,45.6,12,0.0 +11589,69,36,11,0.0 +11589,32,32,30,0.0 +11589,46,12,1,0.0 +11589,65,21.05,48,0.0 +11589,74,10,41,0.0 +11589,42,14,46,0.0 +11589,66,17,12,0.0 +11589,8,40,49,0.0 +11589,24,4.5,17,0.0 +11589,34,14,19,0.0 +11589,58,13.25,22,0.0 +11589,26,31.23,10,0.0 +11589,9,97,7,0.0 +11589,12,38,13,0.0 +11589,48,12.75,8,0.0 +11589,22,21,30,0.0 +11589,30,25.89,8,0.0 +11589,33,2.5,26,0.0 +11589,56,38,1,0.0 +11589,52,7,37,0.0 +11589,55,24,17,0.0 +11589,68,12.5,25,0.0 +11589,43,46,28,0.0 +11589,70,15,50,0.0 +11589,64,33.25,24,0.0 +11589,73,15,32,0.0 +11589,36,19,2,0.0 +11589,38,263.5,13,0.0 +11589,7,30,35,0.0 +11589,60,34,41,0.0 +11589,76,18,5,0.0 +11589,14,23.25,15,0.0 +11589,23,9,12,0.0 +11589,77,13,3,0.0 +11589,53,32.8,50,0.0 +11589,39,18,2,0.0 +11589,19,9.2,39,0.0 +11589,20,81,19,0.0 +11589,37,26,6,0.0 +11589,35,18,48,0.0 +11589,44,19.45,34,0.0 +11589,17,39,10,0.0 +11590,75,7.75,38,0.0 +11590,71,21.5,35,0.0 +11590,36,19,9,0.0 +11590,60,34,19,0.0 +11590,76,18,8,0.0 +11590,22,21,1,0.0 +11590,12,38,50,0.0 +11590,10,31,3,0.0 +11590,77,13,18,0.0 +11590,73,15,48,0.0 +11590,42,14,10,0.0 +11590,70,15,48,0.0 +11590,2,19,37,0.0 +11590,44,19.45,14,0.0 +11590,63,43.9,20,0.0 +11590,18,62.5,48,0.0 +11590,68,12.5,49,0.0 +11590,17,39,20,0.0 +11590,1,18,32,0.0 +11590,48,12.75,39,0.0 +11590,69,36,12,0.0 +11590,13,6,45,0.0 +11590,3,10,6,0.0 +11590,54,7.45,16,0.0 +11590,31,12.5,16,0.0 +11590,51,53,38,0.0 +11590,4,22,25,0.0 +11590,58,13.25,21,0.0 +11590,56,38,1,0.0 +11590,11,21,23,0.0 +11590,74,10,47,0.0 +11590,29,123.79,46,0.0 +11590,65,21.05,42,0.0 +11590,66,17,35,0.0 +11590,57,19.5,19,0.0 +11590,34,14,11,0.0 +11590,39,18,14,0.0 +11591,76,18,17,0.0 +11592,54,7.45,27,0.0 +11592,52,7,19,0.0 +11592,28,45.6,6,0.0 +11592,38,263.5,26,0.0 +11592,66,17,47,0.0 +11592,15,15.5,46,0.0 +11592,5,21.35,16,0.0 +11592,45,9.5,18,0.0 +11592,30,25.89,38,0.0 +11592,36,19,29,0.0 +11592,24,4.5,48,0.0 +11592,4,22,45,0.0 +11592,26,31.23,41,0.0 +11592,3,10,36,0.0 +11592,29,123.79,47,0.0 +11592,46,12,46,0.0 +11592,25,14,37,0.0 +11592,39,18,18,0.0 +11592,50,16.25,18,0.0 +11592,9,97,32,0.0 +11592,22,21,6,0.0 +11592,70,15,36,0.0 +11592,10,31,47,0.0 +11592,49,20,20,0.0 +11592,23,9,12,0.0 +11592,62,49.3,20,0.0 +11592,21,10,34,0.0 +11592,40,18.4,18,0.0 +11592,72,34.8,23,0.0 +11592,41,9.65,20,0.0 +11592,44,19.45,13,0.0 +11592,17,39,23,0.0 +11592,8,40,31,0.0 +11592,61,28.5,31,0.0 +11592,67,14,46,0.0 +11592,56,38,19,0.0 +11592,13,6,35,0.0 +11592,60,34,26,0.0 +11592,73,15,28,0.0 +11592,12,38,47,0.0 +11592,51,53,12,0.0 +11592,16,17.45,16,0.0 +11592,68,12.5,22,0.0 +11592,75,7.75,2,0.0 +11593,29,123.79,3,0.0 +11593,35,18,5,0.0 +11593,9,97,9,0.0 +11593,21,10,40,0.0 +11593,62,49.3,44,0.0 +11593,24,4.5,41,0.0 +11593,66,17,35,0.0 +11593,26,31.23,6,0.0 +11593,57,19.5,30,0.0 +11593,4,22,30,0.0 +11593,14,23.25,22,0.0 +11593,51,53,3,0.0 +11593,39,18,16,0.0 +11593,55,24,19,0.0 +11593,34,14,25,0.0 +11593,40,18.4,7,0.0 +11593,43,46,44,0.0 +11593,33,2.5,8,0.0 +11593,67,14,6,0.0 +11593,11,21,18,0.0 +11593,31,12.5,5,0.0 +11593,59,55,23,0.0 +11593,5,21.35,9,0.0 +11593,63,43.9,33,0.0 +11593,70,15,26,0.0 +11593,75,7.75,13,0.0 +11593,77,13,25,0.0 +11593,15,15.5,11,0.0 +11593,54,7.45,19,0.0 +11593,10,31,10,0.0 +11593,22,21,36,0.0 +11593,60,34,14,0.0 +11593,56,38,16,0.0 +11593,25,14,1,0.0 +11593,68,12.5,38,0.0 +11593,3,10,15,0.0 +11593,45,9.5,1,0.0 +11593,44,19.45,26,0.0 +11593,46,12,4,0.0 +11593,20,81,24,0.0 +11593,53,32.8,47,0.0 +11593,41,9.65,19,0.0 +11593,18,62.5,43,0.0 +11593,61,28.5,42,0.0 +11593,19,9.2,5,0.0 +11593,48,12.75,18,0.0 +11593,32,32,50,0.0 +11593,28,45.6,35,0.0 +11593,23,9,40,0.0 +11593,17,39,24,0.0 +11593,74,10,40,0.0 +11593,65,21.05,22,0.0 +11593,69,36,44,0.0 +11593,2,19,44,0.0 +11593,47,9.5,6,0.0 +11593,8,40,41,0.0 +11593,12,38,6,0.0 +11593,76,18,18,0.0 +11593,58,13.25,48,0.0 +11593,64,33.25,32,0.0 +11593,49,20,43,0.0 +11593,6,25,23,0.0 +11593,73,15,20,0.0 +11593,42,14,32,0.0 +11593,13,6,20,0.0 +11593,50,16.25,16,0.0 +11593,36,19,41,0.0 +11593,30,25.89,20,0.0 +11593,37,26,46,0.0 +11593,72,34.8,7,0.0 +11593,27,43.9,28,0.0 +11593,52,7,38,0.0 +11594,30,25.89,9,0.0 +11594,29,123.79,23,0.0 +11594,48,12.75,46,0.0 +11594,6,25,32,0.0 +11594,1,18,31,0.0 +11594,12,38,20,0.0 +11594,4,22,44,0.0 +11594,71,21.5,20,0.0 +11594,25,14,24,0.0 +11594,19,9.2,38,0.0 +11594,57,19.5,49,0.0 +11594,66,17,45,0.0 +11594,11,21,12,0.0 +11594,46,12,47,0.0 +11594,3,10,13,0.0 +11594,9,97,7,0.0 +11594,44,19.45,11,0.0 +11594,38,263.5,31,0.0 +11594,17,39,10,0.0 +11594,72,34.8,8,0.0 +11594,35,18,3,0.0 +11594,8,40,14,0.0 +11594,13,6,15,0.0 +11594,23,9,10,0.0 +11594,74,10,35,0.0 +11594,59,55,47,0.0 +11594,51,53,35,0.0 +11594,54,7.45,22,0.0 +11594,49,20,19,0.0 +11594,56,38,16,0.0 +11594,58,13.25,49,0.0 +11594,20,81,34,0.0 +11594,45,9.5,10,0.0 +11594,33,2.5,48,0.0 +11594,60,34,14,0.0 +11594,37,26,27,0.0 +11594,55,24,21,0.0 +11594,50,16.25,23,0.0 +11594,53,32.8,28,0.0 +11594,7,30,3,0.0 +11594,2,19,1,0.0 +11594,14,23.25,38,0.0 +11594,16,17.45,44,0.0 +11594,61,28.5,32,0.0 +11594,36,19,3,0.0 +11594,42,14,16,0.0 +11594,64,33.25,3,0.0 +11594,27,43.9,42,0.0 +11594,47,9.5,45,0.0 +11594,73,15,46,0.0 +11594,31,12.5,37,0.0 +11594,22,21,10,0.0 +11594,41,9.65,27,0.0 +11594,69,36,44,0.0 +11594,40,18.4,31,0.0 +11594,43,46,35,0.0 +11594,10,31,32,0.0 +11594,24,4.5,21,0.0 +11594,21,10,9,0.0 +11594,18,62.5,34,0.0 +11595,38,263.5,20,0.0 +11595,11,21,48,0.0 +11595,14,23.25,50,0.0 +11595,55,24,47,0.0 +11595,41,9.65,31,0.0 +11595,40,18.4,25,0.0 +11595,10,31,44,0.0 +11595,58,13.25,24,0.0 +11595,15,15.5,48,0.0 +11595,23,9,25,0.0 +11595,2,19,38,0.0 +11595,27,43.9,23,0.0 +11595,20,81,32,0.0 +11595,18,62.5,16,0.0 +11595,6,25,17,0.0 +11595,56,38,45,0.0 +11595,73,15,3,0.0 +11595,43,46,34,0.0 +11595,49,20,45,0.0 +11595,19,9.2,31,0.0 +11595,45,9.5,4,0.0 +11595,46,12,34,0.0 +11595,16,17.45,30,0.0 +11595,66,17,50,0.0 +11595,74,10,20,0.0 +11595,4,22,38,0.0 +11595,33,2.5,22,0.0 +11595,42,14,37,0.0 +11595,25,14,5,0.0 +11595,65,21.05,28,0.0 +11595,70,15,19,0.0 +11595,7,30,14,0.0 +11595,12,38,5,0.0 +11595,44,19.45,20,0.0 +11595,52,7,20,0.0 +11595,34,14,36,0.0 +11595,17,39,42,0.0 +11595,13,6,40,0.0 +11595,69,36,36,0.0 +11595,50,16.25,38,0.0 +11595,3,10,9,0.0 +11595,5,21.35,38,0.0 +11595,68,12.5,41,0.0 +11595,21,10,1,0.0 +11595,61,28.5,3,0.0 +11595,54,7.45,22,0.0 +11595,48,12.75,7,0.0 +11595,24,4.5,37,0.0 +11595,53,32.8,43,0.0 +11595,28,45.6,44,0.0 +11595,29,123.79,21,0.0 +11595,35,18,45,0.0 +11595,59,55,14,0.0 +11596,34,14,38,0.0 +11596,23,9,23,0.0 +11596,63,43.9,35,0.0 +11596,19,9.2,19,0.0 +11596,17,39,39,0.0 +11596,33,2.5,35,0.0 +11596,40,18.4,13,0.0 +11596,47,9.5,3,0.0 +11596,70,15,44,0.0 +11596,15,15.5,13,0.0 +11596,41,9.65,3,0.0 +11596,57,19.5,4,0.0 +11596,43,46,16,0.0 +11596,21,10,50,0.0 +11596,44,19.45,16,0.0 +11596,26,31.23,24,0.0 +11596,20,81,7,0.0 +11596,36,19,40,0.0 +11596,74,10,34,0.0 +11596,68,12.5,10,0.0 +11596,67,14,4,0.0 +11596,25,14,14,0.0 +11596,54,7.45,26,0.0 +11596,16,17.45,23,0.0 +11596,10,31,17,0.0 +11596,28,45.6,11,0.0 +11596,48,12.75,41,0.0 +11596,7,30,1,0.0 +11596,35,18,42,0.0 +11596,69,36,34,0.0 +11596,13,6,6,0.0 +11596,38,263.5,1,0.0 +11596,29,123.79,16,0.0 +11596,77,13,16,0.0 +11596,51,53,12,0.0 +11596,30,25.89,21,0.0 +11596,76,18,4,0.0 +11596,8,40,21,0.0 +11596,49,20,37,0.0 +11596,58,13.25,13,0.0 +11597,73,15,37,0.0 +11597,53,32.8,30,0.0 +11597,39,18,10,0.0 +11597,61,28.5,24,0.0 +11597,22,21,46,0.0 +11597,40,18.4,1,0.0 +11597,17,39,46,0.0 +11597,2,19,20,0.0 +11597,12,38,26,0.0 +11597,3,10,38,0.0 +11597,62,49.3,15,0.0 +11597,59,55,15,0.0 +11597,42,14,25,0.0 +11597,14,23.25,36,0.0 +11597,7,30,50,0.0 +11597,35,18,8,0.0 +11597,4,22,11,0.0 +11597,75,7.75,31,0.0 +11597,32,32,47,0.0 +11597,31,12.5,49,0.0 +11597,68,12.5,43,0.0 +11597,24,4.5,33,0.0 +11597,50,16.25,41,0.0 +11597,43,46,11,0.0 +11597,76,18,24,0.0 +11597,77,13,50,0.0 +11597,64,33.25,29,0.0 +11597,29,123.79,17,0.0 +11597,36,19,3,0.0 +11597,44,19.45,30,0.0 +11597,63,43.9,3,0.0 +11597,56,38,46,0.0 +11597,18,62.5,27,0.0 +11597,28,45.6,8,0.0 +11597,47,9.5,8,0.0 +11598,46,12,15,0.0 +11598,58,13.25,17,0.0 +11598,43,46,23,0.0 +11598,16,17.45,19,0.0 +11598,4,22,15,0.0 +11598,57,19.5,49,0.0 +11598,59,55,7,0.0 +11598,11,21,31,0.0 +11598,10,31,28,0.0 +11598,65,21.05,40,0.0 +11598,33,2.5,21,0.0 +11598,77,13,3,0.0 +11598,49,20,49,0.0 +11598,12,38,28,0.0 +11598,1,18,42,0.0 +11598,35,18,26,0.0 +11598,69,36,29,0.0 +11598,42,14,13,0.0 +11598,76,18,35,0.0 +11598,8,40,37,0.0 +11598,56,38,33,0.0 +11598,39,18,15,0.0 +11598,72,34.8,31,0.0 +11598,15,15.5,2,0.0 +11598,54,7.45,19,0.0 +11598,60,34,15,0.0 +11598,75,7.75,16,0.0 +11598,48,12.75,4,0.0 +11598,31,12.5,14,0.0 +11598,28,45.6,31,0.0 +11598,21,10,24,0.0 +11598,68,12.5,30,0.0 +11598,38,263.5,29,0.0 +11598,6,25,50,0.0 +11598,40,18.4,24,0.0 +11598,5,21.35,9,0.0 +11598,52,7,31,0.0 +11598,17,39,14,0.0 +11598,63,43.9,38,0.0 +11598,32,32,13,0.0 +11598,67,14,46,0.0 +11598,66,17,42,0.0 +11598,23,9,41,0.0 +11598,25,14,45,0.0 +11598,9,97,13,0.0 +11598,14,23.25,8,0.0 +11598,64,33.25,1,0.0 +11598,61,28.5,50,0.0 +11598,3,10,5,0.0 +11598,73,15,23,0.0 +11598,13,6,32,0.0 +11598,24,4.5,5,0.0 +11598,20,81,36,0.0 +11598,62,49.3,21,0.0 +11598,29,123.79,20,0.0 +11598,44,19.45,30,0.0 +11598,70,15,15,0.0 +11598,41,9.65,46,0.0 +11598,50,16.25,44,0.0 +11598,18,62.5,23,0.0 +11598,19,9.2,15,0.0 +11598,51,53,30,0.0 +11598,30,25.89,3,0.0 +11598,37,26,24,0.0 +11598,53,32.8,38,0.0 +11598,36,19,24,0.0 +11598,74,10,41,0.0 +11598,7,30,41,0.0 +11598,34,14,38,0.0 +11598,47,9.5,29,0.0 +11598,22,21,49,0.0 +11598,55,24,16,0.0 +11598,27,43.9,14,0.0 +11598,26,31.23,18,0.0 +11598,2,19,6,0.0 +11599,46,12,31,0.0 +11599,48,12.75,39,0.0 +11599,39,18,29,0.0 +11599,32,32,10,0.0 +11599,77,13,23,0.0 +11599,11,21,45,0.0 +11599,37,26,17,0.0 +11599,74,10,50,0.0 +11599,40,18.4,47,0.0 +11599,71,21.5,22,0.0 +11599,56,38,20,0.0 +11599,70,15,29,0.0 +11599,16,17.45,49,0.0 +11599,52,7,23,0.0 +11600,3,10,22,0.0 +11600,4,22,32,0.0 +11600,38,263.5,31,0.0 +11600,14,23.25,22,0.0 +11600,33,2.5,16,0.0 +11600,62,49.3,26,0.0 +11600,25,14,26,0.0 +11600,13,6,25,0.0 +11600,11,21,31,0.0 +11600,41,9.65,44,0.0 +11600,12,38,45,0.0 +11600,20,81,50,0.0 +11601,64,33.25,7,0.0 +11601,15,15.5,45,0.0 +11601,42,14,4,0.0 +11601,1,18,18,0.0 +11601,55,24,45,0.0 +11601,76,18,16,0.0 +11601,56,38,10,0.0 +11601,10,31,49,0.0 +11601,54,7.45,17,0.0 +11601,51,53,20,0.0 +11601,16,17.45,42,0.0 +11601,6,25,31,0.0 +11601,27,43.9,13,0.0 +11601,30,25.89,19,0.0 +11601,53,32.8,48,0.0 +11601,8,40,38,0.0 +11601,18,62.5,22,0.0 +11601,39,18,22,0.0 +11601,71,21.5,1,0.0 +11601,35,18,34,0.0 +11601,68,12.5,42,0.0 +11601,28,45.6,26,0.0 +11601,29,123.79,49,0.0 +11601,17,39,24,0.0 +11601,65,21.05,12,0.0 +11601,52,7,11,0.0 +11601,33,2.5,4,0.0 +11601,72,34.8,33,0.0 +11601,57,19.5,26,0.0 +11601,34,14,43,0.0 +11601,70,15,6,0.0 +11601,32,32,9,0.0 +11601,7,30,38,0.0 +11601,25,14,46,0.0 +11601,50,16.25,35,0.0 +11601,26,31.23,48,0.0 +11602,55,24,7,0.0 +11602,16,17.45,50,0.0 +11602,2,19,7,0.0 +11602,18,62.5,41,0.0 +11602,63,43.9,27,0.0 +11602,49,20,31,0.0 +11602,8,40,45,0.0 +11602,41,9.65,9,0.0 +11602,57,19.5,19,0.0 +11602,37,26,33,0.0 +11602,64,33.25,41,0.0 +11602,6,25,44,0.0 +11602,32,32,8,0.0 +11602,15,15.5,33,0.0 +11602,5,21.35,37,0.0 +11602,76,18,25,0.0 +11602,71,21.5,42,0.0 +11602,65,21.05,10,0.0 +11602,33,2.5,22,0.0 +11602,77,13,33,0.0 +11602,73,15,41,0.0 +11602,35,18,38,0.0 +11602,53,32.8,4,0.0 +11602,28,45.6,42,0.0 +11602,40,18.4,30,0.0 +11602,43,46,20,0.0 +11602,11,21,15,0.0 +11602,4,22,28,0.0 +11602,27,43.9,26,0.0 +11602,10,31,35,0.0 +11602,69,36,49,0.0 +11602,50,16.25,38,0.0 +11602,67,14,30,0.0 +11602,19,9.2,1,0.0 +11602,34,14,48,0.0 +11602,51,53,49,0.0 +11603,65,21.05,4,0.0 +11603,14,23.25,7,0.0 +11603,20,81,49,0.0 +11603,49,20,43,0.0 +11603,35,18,43,0.0 +11603,3,10,46,0.0 +11603,31,12.5,25,0.0 +11603,60,34,44,0.0 +11603,4,22,23,0.0 +11603,50,16.25,36,0.0 +11603,7,30,34,0.0 +11603,13,6,8,0.0 +11603,10,31,19,0.0 +11603,56,38,8,0.0 +11603,61,28.5,31,0.0 +11603,22,21,34,0.0 +11603,69,36,50,0.0 +11603,26,31.23,20,0.0 +11603,66,17,40,0.0 +11603,59,55,20,0.0 +11603,75,7.75,11,0.0 +11603,40,18.4,39,0.0 +11603,30,25.89,25,0.0 +11603,15,15.5,20,0.0 +11603,11,21,16,0.0 +11603,77,13,17,0.0 +11603,51,53,35,0.0 +11603,62,49.3,8,0.0 +11603,32,32,8,0.0 +11603,54,7.45,49,0.0 +11603,17,39,30,0.0 +11603,34,14,2,0.0 +11603,2,19,50,0.0 +11603,38,263.5,5,0.0 +11604,20,81,13,0.0 +11604,59,55,45,0.0 +11604,74,10,14,0.0 +11604,24,4.5,41,0.0 +11604,4,22,1,0.0 +11604,49,20,22,0.0 +11604,47,9.5,39,0.0 +11604,69,36,5,0.0 +11604,39,18,11,0.0 +11604,21,10,26,0.0 +11604,68,12.5,22,0.0 +11604,55,24,2,0.0 +11604,6,25,18,0.0 +11604,42,14,43,0.0 +11604,63,43.9,42,0.0 +11604,28,45.6,11,0.0 +11604,8,40,18,0.0 +11604,14,23.25,45,0.0 +11604,17,39,44,0.0 +11604,54,7.45,40,0.0 +11604,26,31.23,18,0.0 +11604,40,18.4,7,0.0 +11604,16,17.45,39,0.0 +11604,67,14,26,0.0 +11604,36,19,7,0.0 +11604,66,17,20,0.0 +11604,53,32.8,32,0.0 +11604,30,25.89,34,0.0 +11604,51,53,18,0.0 +11604,65,21.05,25,0.0 +11604,50,16.25,21,0.0 +11604,57,19.5,17,0.0 +11604,29,123.79,13,0.0 +11604,61,28.5,43,0.0 +11604,37,26,34,0.0 +11604,75,7.75,34,0.0 +11604,25,14,39,0.0 +11604,27,43.9,49,0.0 +11604,38,263.5,15,0.0 +11604,46,12,25,0.0 +11604,77,13,32,0.0 +11604,41,9.65,37,0.0 +11604,5,21.35,19,0.0 +11604,43,46,14,0.0 +11604,9,97,37,0.0 +11604,33,2.5,29,0.0 +11604,32,32,15,0.0 +11604,71,21.5,13,0.0 +11604,19,9.2,10,0.0 +11604,10,31,4,0.0 +11604,72,34.8,24,0.0 +11604,3,10,12,0.0 +11604,60,34,16,0.0 +11604,34,14,6,0.0 +11604,56,38,17,0.0 +11604,73,15,22,0.0 +11604,11,21,45,0.0 +11604,15,15.5,23,0.0 +11604,70,15,2,0.0 +11604,45,9.5,26,0.0 +11604,18,62.5,7,0.0 +11604,7,30,10,0.0 +11604,1,18,28,0.0 +11604,58,13.25,50,0.0 +11604,48,12.75,27,0.0 +11604,12,38,37,0.0 +11604,22,21,44,0.0 +11605,71,21.5,3,0.0 +11605,51,53,43,0.0 +11605,47,9.5,4,0.0 +11605,9,97,6,0.0 +11605,52,7,50,0.0 +11605,30,25.89,11,0.0 +11605,49,20,20,0.0 +11605,65,21.05,10,0.0 +11605,21,10,20,0.0 +11605,2,19,40,0.0 +11605,36,19,20,0.0 +11605,33,2.5,29,0.0 +11605,77,13,4,0.0 +11605,14,23.25,24,0.0 +11605,11,21,21,0.0 +11605,43,46,9,0.0 +11605,69,36,14,0.0 +11605,8,40,39,0.0 +11605,73,15,6,0.0 +11605,40,18.4,32,0.0 +11605,4,22,7,0.0 +11605,70,15,42,0.0 +11605,31,12.5,41,0.0 +11605,54,7.45,38,0.0 +11605,27,43.9,2,0.0 +11605,34,14,16,0.0 +11605,37,26,28,0.0 +11605,63,43.9,48,0.0 +11605,18,62.5,45,0.0 +11605,56,38,14,0.0 +11605,72,34.8,31,0.0 +11605,19,9.2,34,0.0 +11606,41,9.65,24,0.0 +11606,34,14,9,0.0 +11606,10,31,44,0.0 +11606,75,7.75,22,0.0 +11606,46,12,46,0.0 +11606,45,9.5,41,0.0 +11606,33,2.5,39,0.0 +11606,56,38,17,0.0 +11606,19,9.2,19,0.0 +11606,44,19.45,18,0.0 +11606,6,25,8,0.0 +11606,60,34,42,0.0 +11606,62,49.3,24,0.0 +11606,24,4.5,34,0.0 +11606,7,30,33,0.0 +11606,36,19,23,0.0 +11606,3,10,1,0.0 +11606,26,31.23,36,0.0 +11606,57,19.5,30,0.0 +11606,58,13.25,38,0.0 +11607,35,18,16,0.0 +11607,6,25,33,0.0 +11607,51,53,43,0.0 +11607,54,7.45,28,0.0 +11607,55,24,4,0.0 +11607,12,38,8,0.0 +11607,69,36,8,0.0 +11607,73,15,23,0.0 +11607,5,21.35,47,0.0 +11607,42,14,38,0.0 +11607,68,12.5,48,0.0 +11607,63,43.9,8,0.0 +11607,71,21.5,17,0.0 +11607,1,18,25,0.0 +11607,17,39,3,0.0 +11607,13,6,17,0.0 +11607,38,263.5,18,0.0 +11607,37,26,41,0.0 +11607,46,12,23,0.0 +11607,77,13,33,0.0 +11607,23,9,25,0.0 +11607,27,43.9,28,0.0 +11607,11,21,6,0.0 +11607,75,7.75,43,0.0 +11608,5,21.35,24,0.0 +11608,65,21.05,11,0.0 +11609,6,25,4,0.0 +11609,3,10,42,0.0 +11609,14,23.25,50,0.0 +11609,8,40,7,0.0 +11609,48,12.75,35,0.0 +11609,28,45.6,34,0.0 +11609,15,15.5,46,0.0 +11609,63,43.9,45,0.0 +11609,39,18,27,0.0 +11609,35,18,6,0.0 +11609,56,38,16,0.0 +11609,25,14,35,0.0 +11609,41,9.65,19,0.0 +11609,7,30,24,0.0 +11609,21,10,41,0.0 +11609,47,9.5,6,0.0 +11609,32,32,26,0.0 +11609,52,7,25,0.0 +11609,69,36,21,0.0 +11609,40,18.4,28,0.0 +11609,33,2.5,31,0.0 +11609,71,21.5,18,0.0 +11609,59,55,39,0.0 +11609,12,38,37,0.0 +11609,27,43.9,47,0.0 +11609,68,12.5,12,0.0 +11609,55,24,13,0.0 +11609,45,9.5,42,0.0 +11609,62,49.3,16,0.0 +11609,37,26,20,0.0 +11609,29,123.79,39,0.0 +11609,65,21.05,35,0.0 +11609,16,17.45,6,0.0 +11609,13,6,13,0.0 +11609,70,15,20,0.0 +11609,26,31.23,24,0.0 +11610,17,39,47,0.0 +11610,49,20,33,0.0 +11610,22,21,34,0.0 +11610,69,36,32,0.0 +11610,37,26,45,0.0 +11610,66,17,27,0.0 +11610,31,12.5,39,0.0 +11610,7,30,6,0.0 +11610,26,31.23,43,0.0 +11610,2,19,5,0.0 +11610,23,9,5,0.0 +11610,67,14,5,0.0 +11610,5,21.35,3,0.0 +11610,64,33.25,20,0.0 +11610,14,23.25,1,0.0 +11610,20,81,32,0.0 +11610,53,32.8,35,0.0 +11610,54,7.45,29,0.0 +11610,71,21.5,33,0.0 +11610,15,15.5,38,0.0 +11610,16,17.45,43,0.0 +11610,27,43.9,7,0.0 +11610,56,38,41,0.0 +11610,11,21,33,0.0 +11610,29,123.79,47,0.0 +11610,30,25.89,48,0.0 +11610,34,14,24,0.0 +11610,40,18.4,24,0.0 +11610,62,49.3,47,0.0 +11610,38,263.5,41,0.0 +11610,47,9.5,39,0.0 +11610,57,19.5,34,0.0 +11610,44,19.45,19,0.0 +11610,72,34.8,43,0.0 +11610,51,53,23,0.0 +11610,73,15,28,0.0 +11610,60,34,22,0.0 +11610,48,12.75,44,0.0 +11610,19,9.2,31,0.0 +11610,9,97,24,0.0 +11610,55,24,18,0.0 +11610,43,46,32,0.0 +11610,58,13.25,48,0.0 +11610,28,45.6,12,0.0 +11610,52,7,33,0.0 +11611,41,9.65,21,0.0 +11611,8,40,36,0.0 +11611,57,19.5,36,0.0 +11611,65,21.05,11,0.0 +11611,68,12.5,5,0.0 +11611,52,7,33,0.0 +11611,3,10,31,0.0 +11611,67,14,14,0.0 +11611,31,12.5,17,0.0 +11611,53,32.8,34,0.0 +11611,63,43.9,4,0.0 +11612,56,38,47,0.0 +11612,61,28.5,13,0.0 +11612,49,20,10,0.0 +11612,45,9.5,50,0.0 +11612,57,19.5,37,0.0 +11612,18,62.5,23,0.0 +11612,20,81,44,0.0 +11612,35,18,38,0.0 +11612,73,15,19,0.0 +11612,77,13,3,0.0 +11612,37,26,8,0.0 +11612,17,39,5,0.0 +11612,51,53,9,0.0 +11612,76,18,8,0.0 +11612,12,38,36,0.0 +11612,55,24,19,0.0 +11612,65,21.05,39,0.0 +11612,58,13.25,46,0.0 +11612,34,14,45,0.0 +11612,48,12.75,23,0.0 +11612,26,31.23,20,0.0 +11612,62,49.3,16,0.0 +11612,14,23.25,24,0.0 +11612,9,97,34,0.0 +11612,28,45.6,29,0.0 +11612,2,19,11,0.0 +11612,1,18,23,0.0 +11612,5,21.35,31,0.0 +11612,60,34,34,0.0 +11612,59,55,14,0.0 +11612,22,21,47,0.0 +11612,47,9.5,29,0.0 +11612,4,22,47,0.0 +11612,11,21,8,0.0 +11612,71,21.5,25,0.0 +11612,52,7,4,0.0 +11612,21,10,33,0.0 +11612,10,31,39,0.0 +11612,72,34.8,46,0.0 +11612,16,17.45,7,0.0 +11612,41,9.65,32,0.0 +11612,23,9,11,0.0 +11612,42,14,26,0.0 +11612,40,18.4,20,0.0 +11612,66,17,25,0.0 +11612,29,123.79,6,0.0 +11612,63,43.9,22,0.0 +11612,33,2.5,19,0.0 +11612,54,7.45,17,0.0 +11612,74,10,6,0.0 +11612,43,46,26,0.0 +11612,36,19,14,0.0 +11612,46,12,16,0.0 +11612,68,12.5,49,0.0 +11612,50,16.25,37,0.0 +11612,15,15.5,28,0.0 +11612,27,43.9,49,0.0 +11612,32,32,8,0.0 +11612,31,12.5,24,0.0 +11612,38,263.5,16,0.0 +11612,25,14,43,0.0 +11612,24,4.5,21,0.0 +11612,7,30,50,0.0 +11613,74,10,3,0.0 +11613,38,263.5,2,0.0 +11613,64,33.25,36,0.0 +11613,58,13.25,22,0.0 +11613,57,19.5,21,0.0 +11613,73,15,44,0.0 +11613,52,7,6,0.0 +11613,76,18,5,0.0 +11613,49,20,30,0.0 +11613,44,19.45,32,0.0 +11613,42,14,35,0.0 +11613,70,15,12,0.0 +11613,77,13,4,0.0 +11613,30,25.89,16,0.0 +11613,9,97,34,0.0 +11613,63,43.9,2,0.0 +11613,11,21,16,0.0 +11613,40,18.4,24,0.0 +11613,21,10,20,0.0 +11613,31,12.5,28,0.0 +11613,45,9.5,22,0.0 +11613,14,23.25,50,0.0 +11613,47,9.5,13,0.0 +11613,32,32,26,0.0 +11613,8,40,42,0.0 +11613,17,39,6,0.0 +11613,3,10,35,0.0 +11613,7,30,20,0.0 +11613,75,7.75,42,0.0 +11613,13,6,13,0.0 +11613,37,26,33,0.0 +11613,68,12.5,9,0.0 +11613,53,32.8,30,0.0 +11613,27,43.9,39,0.0 +11613,29,123.79,48,0.0 +11613,39,18,20,0.0 +11613,10,31,23,0.0 +11613,1,18,19,0.0 +11613,4,22,30,0.0 +11614,72,34.8,17,0.0 +11614,8,40,14,0.0 +11614,68,12.5,29,0.0 +11614,55,24,23,0.0 +11614,26,31.23,25,0.0 +11614,13,6,23,0.0 +11614,57,19.5,23,0.0 +11614,34,14,43,0.0 +11614,19,9.2,15,0.0 +11614,18,62.5,22,0.0 +11614,46,12,28,0.0 +11614,10,31,18,0.0 +11614,48,12.75,1,0.0 +11614,54,7.45,6,0.0 +11614,47,9.5,34,0.0 +11614,37,26,48,0.0 +11614,6,25,8,0.0 +11614,52,7,50,0.0 +11614,58,13.25,5,0.0 +11614,50,16.25,28,0.0 +11614,69,36,21,0.0 +11614,40,18.4,50,0.0 +11614,17,39,45,0.0 +11614,59,55,29,0.0 +11614,29,123.79,38,0.0 +11614,39,18,1,0.0 +11614,70,15,36,0.0 +11614,25,14,26,0.0 +11614,36,19,37,0.0 +11614,63,43.9,42,0.0 +11614,4,22,46,0.0 +11614,53,32.8,49,0.0 +11614,22,21,32,0.0 +11614,76,18,11,0.0 +11614,27,43.9,2,0.0 +11614,16,17.45,49,0.0 +11614,28,45.6,29,0.0 +11614,77,13,27,0.0 +11614,45,9.5,37,0.0 +11614,61,28.5,15,0.0 +11614,60,34,3,0.0 +11614,30,25.89,3,0.0 +11614,9,97,36,0.0 +11614,15,15.5,36,0.0 +11614,74,10,10,0.0 +11614,43,46,43,0.0 +11614,44,19.45,36,0.0 +11614,20,81,2,0.0 +11614,33,2.5,10,0.0 +11614,35,18,34,0.0 +11614,66,17,16,0.0 +11614,56,38,11,0.0 +11614,24,4.5,43,0.0 +11614,62,49.3,6,0.0 +11614,41,9.65,17,0.0 +11614,5,21.35,48,0.0 +11614,32,32,27,0.0 +11614,75,7.75,1,0.0 +11614,64,33.25,49,0.0 +11614,3,10,24,0.0 +11614,1,18,47,0.0 +11614,14,23.25,14,0.0 +11614,31,12.5,4,0.0 +11614,11,21,8,0.0 +11614,49,20,33,0.0 +11614,38,263.5,47,0.0 +11614,42,14,39,0.0 +11614,23,9,45,0.0 +11614,12,38,47,0.0 +11614,71,21.5,20,0.0 +11615,28,45.6,46,0.0 +11615,22,21,48,0.0 +11615,48,12.75,38,0.0 +11615,2,19,10,0.0 +11615,64,33.25,33,0.0 +11615,23,9,50,0.0 +11615,34,14,30,0.0 +11615,4,22,6,0.0 +11615,21,10,34,0.0 +11615,61,28.5,35,0.0 +11615,75,7.75,42,0.0 +11615,70,15,28,0.0 +11615,18,62.5,27,0.0 +11615,33,2.5,18,0.0 +11615,40,18.4,6,0.0 +11615,62,49.3,18,0.0 +11615,38,263.5,31,0.0 +11615,15,15.5,47,0.0 +11615,77,13,22,0.0 +11615,53,32.8,31,0.0 +11615,29,123.79,20,0.0 +11615,6,25,12,0.0 +11615,39,18,48,0.0 +11615,12,38,20,0.0 +11615,63,43.9,7,0.0 +11615,60,34,12,0.0 +11615,56,38,48,0.0 +11615,16,17.45,10,0.0 +11615,67,14,5,0.0 +11615,7,30,41,0.0 +11615,31,12.5,28,0.0 +11615,65,21.05,26,0.0 +11615,50,16.25,43,0.0 +11615,66,17,2,0.0 +11615,3,10,40,0.0 +11615,30,25.89,6,0.0 +11615,13,6,49,0.0 +11615,42,14,42,0.0 +11615,58,13.25,20,0.0 +11615,49,20,22,0.0 +11615,32,32,38,0.0 +11615,57,19.5,18,0.0 +11615,1,18,48,0.0 +11615,51,53,17,0.0 +11615,68,12.5,6,0.0 +11615,52,7,11,0.0 +11615,41,9.65,7,0.0 +11616,6,25,23,0.0 +11616,36,19,22,0.0 +11616,5,21.35,27,0.0 +11616,49,20,39,0.0 +11616,74,10,31,0.0 +11616,77,13,18,0.0 +11616,10,31,3,0.0 +11616,24,4.5,5,0.0 +11616,26,31.23,26,0.0 +11616,9,97,19,0.0 +11616,19,9.2,45,0.0 +11616,15,15.5,15,0.0 +11616,20,81,50,0.0 +11616,60,34,11,0.0 +11616,63,43.9,1,0.0 +11616,67,14,27,0.0 +11616,54,7.45,1,0.0 +11616,8,40,36,0.0 +11616,69,36,5,0.0 +11616,58,13.25,48,0.0 +11616,56,38,12,0.0 +11616,71,21.5,4,0.0 +11616,51,53,8,0.0 +11616,7,30,38,0.0 +11616,28,45.6,16,0.0 +11616,4,22,33,0.0 +11616,76,18,36,0.0 +11616,12,38,35,0.0 +11616,32,32,7,0.0 +11616,30,25.89,37,0.0 +11616,17,39,39,0.0 +11616,34,14,17,0.0 +11616,43,46,20,0.0 +11616,47,9.5,32,0.0 +11617,12,38,2,0.0 +11617,67,14,1,0.0 +11617,10,31,2,0.0 +11617,62,49.3,45,0.0 +11617,17,39,18,0.0 +11617,19,9.2,49,0.0 +11617,63,43.9,5,0.0 +11617,54,7.45,3,0.0 +11617,14,23.25,23,0.0 +11617,60,34,12,0.0 +11617,7,30,34,0.0 +11617,45,9.5,32,0.0 +11617,6,25,2,0.0 +11617,65,21.05,21,0.0 +11617,29,123.79,9,0.0 +11617,24,4.5,1,0.0 +11617,72,34.8,46,0.0 +11617,77,13,13,0.0 +11617,73,15,48,0.0 +11617,68,12.5,29,0.0 +11617,9,97,31,0.0 +11617,52,7,28,0.0 +11617,20,81,42,0.0 +11617,55,24,18,0.0 +11617,59,55,27,0.0 +11617,44,19.45,30,0.0 +11617,27,43.9,9,0.0 +11617,36,19,16,0.0 +11617,13,6,1,0.0 +11617,2,19,37,0.0 +11617,26,31.23,7,0.0 +11617,46,12,38,0.0 +11617,1,18,12,0.0 +11617,69,36,27,0.0 +11617,4,22,3,0.0 +11617,23,9,13,0.0 +11617,43,46,38,0.0 +11617,25,14,18,0.0 +11617,35,18,22,0.0 +11617,76,18,15,0.0 +11617,40,18.4,44,0.0 +11617,39,18,23,0.0 +11617,37,26,7,0.0 +11617,71,21.5,15,0.0 +11617,30,25.89,33,0.0 +11617,74,10,36,0.0 +11617,48,12.75,15,0.0 +11617,57,19.5,3,0.0 +11618,70,15,37,0.0 +11618,68,12.5,39,0.0 +11618,27,43.9,6,0.0 +11618,62,49.3,24,0.0 +11618,40,18.4,9,0.0 +11618,24,4.5,11,0.0 +11618,31,12.5,46,0.0 +11618,36,19,37,0.0 +11618,28,45.6,38,0.0 +11618,69,36,38,0.0 +11618,23,9,46,0.0 +11618,76,18,8,0.0 +11619,51,53,34,0.0 +11619,69,36,41,0.0 +11619,48,12.75,34,0.0 +11619,27,43.9,6,0.0 +11619,7,30,8,0.0 +11619,63,43.9,32,0.0 +11619,45,9.5,20,0.0 +11619,66,17,24,0.0 +11619,54,7.45,30,0.0 +11619,28,45.6,9,0.0 +11619,65,21.05,20,0.0 +11619,76,18,23,0.0 +11619,13,6,21,0.0 +11619,40,18.4,12,0.0 +11619,42,14,4,0.0 +11619,15,15.5,29,0.0 +11619,60,34,41,0.0 +11619,8,40,15,0.0 +11619,19,9.2,23,0.0 +11619,72,34.8,38,0.0 +11619,75,7.75,25,0.0 +11619,46,12,42,0.0 +11619,18,62.5,11,0.0 +11619,4,22,5,0.0 +11619,1,18,39,0.0 +11619,9,97,25,0.0 +11619,30,25.89,1,0.0 +11619,41,9.65,25,0.0 +11619,67,14,7,0.0 +11619,70,15,2,0.0 +11619,37,26,37,0.0 +11619,20,81,5,0.0 +11619,12,38,47,0.0 +11620,65,21.05,20,0.0 +11620,19,9.2,24,0.0 +11620,46,12,22,0.0 +11620,2,19,5,0.0 +11620,72,34.8,16,0.0 +11620,33,2.5,18,0.0 +11620,69,36,9,0.0 +11620,3,10,30,0.0 +11620,13,6,30,0.0 +11620,44,19.45,45,0.0 +11620,53,32.8,41,0.0 +11620,26,31.23,35,0.0 +11620,10,31,9,0.0 +11620,35,18,24,0.0 +11620,28,45.6,36,0.0 +11620,45,9.5,20,0.0 +11620,61,28.5,20,0.0 +11620,36,19,38,0.0 +11620,38,263.5,34,0.0 +11621,55,24,22,0.0 +11621,5,21.35,49,0.0 +11621,71,21.5,35,0.0 +11621,42,14,48,0.0 +11621,56,38,1,0.0 +11621,38,263.5,19,0.0 +11621,15,15.5,27,0.0 +11621,2,19,19,0.0 +11621,43,46,19,0.0 +11621,23,9,8,0.0 +11621,39,18,45,0.0 +11621,25,14,35,0.0 +11621,28,45.6,49,0.0 +11621,75,7.75,40,0.0 +11621,29,123.79,8,0.0 +11621,31,12.5,2,0.0 +11621,26,31.23,27,0.0 +11621,69,36,16,0.0 +11621,36,19,37,0.0 +11621,48,12.75,42,0.0 +11621,40,18.4,1,0.0 +11621,61,28.5,37,0.0 +11621,47,9.5,2,0.0 +11621,33,2.5,39,0.0 +11621,46,12,46,0.0 +11621,32,32,38,0.0 +11621,60,34,16,0.0 +11621,51,53,22,0.0 +11621,37,26,27,0.0 +11621,10,31,50,0.0 +11621,3,10,21,0.0 +11621,21,10,17,0.0 +11621,54,7.45,33,0.0 +11621,57,19.5,50,0.0 +11621,17,39,23,0.0 +11621,16,17.45,19,0.0 +11621,24,4.5,30,0.0 +11621,9,97,25,0.0 +11621,76,18,6,0.0 +11621,20,81,33,0.0 +11621,1,18,42,0.0 +11621,62,49.3,35,0.0 +11621,11,21,15,0.0 +11621,35,18,9,0.0 +11621,63,43.9,17,0.0 +11621,66,17,2,0.0 +11621,70,15,10,0.0 +11621,67,14,15,0.0 +11621,72,34.8,39,0.0 +11622,47,9.5,40,0.0 +11622,59,55,2,0.0 +11622,28,45.6,32,0.0 +11622,11,21,41,0.0 +11622,75,7.75,33,0.0 +11622,36,19,34,0.0 +11622,35,18,17,0.0 +11622,64,33.25,32,0.0 +11622,42,14,20,0.0 +11622,17,39,23,0.0 +11622,31,12.5,4,0.0 +11622,73,15,7,0.0 +11622,65,21.05,5,0.0 +11622,30,25.89,40,0.0 +11622,16,17.45,20,0.0 +11622,23,9,44,0.0 +11622,19,9.2,50,0.0 +11622,20,81,49,0.0 +11622,67,14,15,0.0 +11622,57,19.5,8,0.0 +11622,51,53,9,0.0 +11622,7,30,17,0.0 +11622,69,36,27,0.0 +11622,61,28.5,15,0.0 +11622,37,26,23,0.0 +11622,25,14,4,0.0 +11622,55,24,33,0.0 +11622,48,12.75,4,0.0 +11622,50,16.25,17,0.0 +11622,43,46,22,0.0 +11622,60,34,39,0.0 +11622,27,43.9,5,0.0 +11622,49,20,26,0.0 +11622,3,10,23,0.0 +11622,9,97,39,0.0 +11622,26,31.23,14,0.0 +11622,18,62.5,25,0.0 +11622,2,19,47,0.0 +11622,39,18,4,0.0 +11622,22,21,37,0.0 +11622,77,13,7,0.0 +11622,45,9.5,20,0.0 +11622,12,38,50,0.0 +11622,14,23.25,48,0.0 +11622,10,31,9,0.0 +11622,52,7,42,0.0 +11622,29,123.79,37,0.0 +11622,34,14,42,0.0 +11623,74,10,27,0.0 +11623,50,16.25,41,0.0 +11623,38,263.5,46,0.0 +11623,23,9,27,0.0 +11623,72,34.8,34,0.0 +11623,54,7.45,24,0.0 +11623,68,12.5,40,0.0 +11623,31,12.5,11,0.0 +11623,69,36,16,0.0 +11623,75,7.75,6,0.0 +11623,3,10,27,0.0 +11623,40,18.4,23,0.0 +11623,42,14,50,0.0 +11623,45,9.5,37,0.0 +11623,70,15,39,0.0 +11623,56,38,5,0.0 +11623,77,13,44,0.0 +11623,4,22,6,0.0 +11623,26,31.23,45,0.0 +11623,22,21,19,0.0 +11623,21,10,21,0.0 +11623,15,15.5,34,0.0 +11623,20,81,32,0.0 +11623,60,34,29,0.0 +11623,64,33.25,49,0.0 +11623,28,45.6,15,0.0 +11623,2,19,4,0.0 +11623,71,21.5,21,0.0 +11623,52,7,10,0.0 +11623,18,62.5,12,0.0 +11623,44,19.45,31,0.0 +11623,57,19.5,38,0.0 +11623,16,17.45,38,0.0 +11623,19,9.2,43,0.0 +11623,73,15,32,0.0 +11623,14,23.25,5,0.0 +11623,30,25.89,18,0.0 +11623,46,12,40,0.0 +11624,30,25.89,47,0.0 +11624,24,4.5,29,0.0 +11624,63,43.9,47,0.0 +11624,10,31,16,0.0 +11624,26,31.23,47,0.0 +11624,56,38,26,0.0 +11624,61,28.5,29,0.0 +11624,49,20,18,0.0 +11624,64,33.25,14,0.0 +11624,54,7.45,21,0.0 +11624,31,12.5,9,0.0 +11624,77,13,5,0.0 +11624,51,53,8,0.0 +11624,1,18,6,0.0 +11624,74,10,26,0.0 +11624,19,9.2,17,0.0 +11624,17,39,26,0.0 +11624,20,81,37,0.0 +11624,73,15,27,0.0 +11624,57,19.5,10,0.0 +11624,12,38,42,0.0 +11624,34,14,29,0.0 +11624,75,7.75,45,0.0 +11624,3,10,26,0.0 +11624,7,30,6,0.0 +11624,28,45.6,36,0.0 +11625,59,55,11,0.0 +11625,35,18,30,0.0 +11626,27,43.9,29,0.0 +11626,34,14,16,0.0 +11626,61,28.5,46,0.0 +11627,56,38,12,0.0 +11627,23,9,18,0.0 +11627,21,10,45,0.0 +11627,69,36,17,0.0 +11627,38,263.5,29,0.0 +11627,71,21.5,6,0.0 +11627,34,14,45,0.0 +11627,14,23.25,5,0.0 +11627,12,38,34,0.0 +11627,2,19,5,0.0 +11627,30,25.89,2,0.0 +11627,67,14,19,0.0 +11627,46,12,10,0.0 +11627,45,9.5,45,0.0 +11627,3,10,15,0.0 +11627,49,20,8,0.0 +11627,51,53,34,0.0 +11627,72,34.8,32,0.0 +11627,6,25,25,0.0 +11627,32,32,3,0.0 +11627,11,21,44,0.0 +11627,31,12.5,29,0.0 +11627,16,17.45,1,0.0 +11627,36,19,44,0.0 +11627,43,46,2,0.0 +11627,58,13.25,15,0.0 +11627,10,31,16,0.0 +11627,13,6,31,0.0 +11627,24,4.5,2,0.0 +11627,54,7.45,41,0.0 +11628,30,25.89,33,0.0 +11628,28,45.6,1,0.0 +11628,2,19,47,0.0 +11628,61,28.5,9,0.0 +11628,76,18,14,0.0 +11628,27,43.9,43,0.0 +11628,46,12,42,0.0 +11628,10,31,18,0.0 +11629,18,62.5,36,0.0 +11629,42,14,13,0.0 +11629,75,7.75,32,0.0 +11629,1,18,22,0.0 +11629,2,19,12,0.0 +11629,60,34,2,0.0 +11629,36,19,7,0.0 +11629,26,31.23,4,0.0 +11629,34,14,31,0.0 +11629,69,36,24,0.0 +11629,21,10,13,0.0 +11629,64,33.25,36,0.0 +11629,10,31,15,0.0 +11629,72,34.8,14,0.0 +11629,45,9.5,47,0.0 +11629,25,14,13,0.0 +11629,49,20,34,0.0 +11629,29,123.79,41,0.0 +11629,30,25.89,8,0.0 +11629,43,46,49,0.0 +11629,57,19.5,13,0.0 +11629,44,19.45,7,0.0 +11629,68,12.5,15,0.0 +11629,76,18,42,0.0 +11629,3,10,36,0.0 +11629,46,12,7,0.0 +11629,41,9.65,9,0.0 +11629,19,9.2,7,0.0 +11629,13,6,8,0.0 +11629,39,18,12,0.0 +11629,38,263.5,40,0.0 +11629,65,21.05,11,0.0 +11629,77,13,17,0.0 +11629,16,17.45,4,0.0 +11629,8,40,30,0.0 +11629,58,13.25,37,0.0 +11629,35,18,31,0.0 +11629,17,39,28,0.0 +11629,40,18.4,3,0.0 +11629,67,14,11,0.0 +11629,31,12.5,4,0.0 +11629,12,38,27,0.0 +11629,52,7,25,0.0 +11629,33,2.5,12,0.0 +11629,9,97,20,0.0 +11629,23,9,35,0.0 +11629,51,53,8,0.0 +11629,47,9.5,36,0.0 +11629,24,4.5,48,0.0 +11629,54,7.45,28,0.0 +11629,73,15,23,0.0 +11629,14,23.25,15,0.0 +11629,28,45.6,39,0.0 +11630,60,34,8,0.0 +11630,18,62.5,49,0.0 +11630,54,7.45,29,0.0 +11630,36,19,42,0.0 +11630,3,10,49,0.0 +11630,48,12.75,43,0.0 +11630,52,7,46,0.0 +11630,7,30,48,0.0 +11630,27,43.9,14,0.0 +11630,61,28.5,4,0.0 +11630,51,53,10,0.0 +11630,64,33.25,38,0.0 +11630,20,81,5,0.0 +11630,70,15,32,0.0 +11630,71,21.5,41,0.0 +11630,23,9,4,0.0 +11630,15,15.5,11,0.0 +11630,73,15,13,0.0 +11630,68,12.5,45,0.0 +11630,31,12.5,40,0.0 +11630,74,10,17,0.0 +11630,17,39,6,0.0 +11630,75,7.75,24,0.0 +11630,77,13,45,0.0 +11630,53,32.8,30,0.0 +11630,58,13.25,43,0.0 +11631,45,9.5,42,0.0 +11631,7,30,39,0.0 +11631,64,33.25,24,0.0 +11631,6,25,40,0.0 +11631,50,16.25,25,0.0 +11631,52,7,2,0.0 +11631,47,9.5,47,0.0 +11631,16,17.45,11,0.0 +11631,76,18,5,0.0 +11631,15,15.5,41,0.0 +11632,60,34,38,0.0 +11632,49,20,21,0.0 +11632,36,19,38,0.0 +11632,6,25,11,0.0 +11632,54,7.45,15,0.0 +11632,35,18,29,0.0 +11632,19,9.2,15,0.0 +11632,53,32.8,4,0.0 +11632,24,4.5,26,0.0 +11632,55,24,34,0.0 +11632,40,18.4,15,0.0 +11632,59,55,5,0.0 +11632,14,23.25,33,0.0 +11632,11,21,8,0.0 +11632,29,123.79,3,0.0 +11632,56,38,7,0.0 +11632,63,43.9,1,0.0 +11632,8,40,35,0.0 +11632,38,263.5,6,0.0 +11632,62,49.3,21,0.0 +11632,34,14,20,0.0 +11632,9,97,1,0.0 +11632,43,46,7,0.0 +11632,52,7,49,0.0 +11632,47,9.5,8,0.0 +11632,75,7.75,6,0.0 +11632,46,12,8,0.0 +11632,37,26,43,0.0 +11632,72,34.8,36,0.0 +11632,3,10,45,0.0 +11632,23,9,22,0.0 +11632,28,45.6,10,0.0 +11632,64,33.25,35,0.0 +11632,48,12.75,42,0.0 +11632,71,21.5,47,0.0 +11632,15,15.5,31,0.0 +11632,76,18,26,0.0 +11632,26,31.23,21,0.0 +11632,42,14,22,0.0 +11632,73,15,11,0.0 +11632,25,14,21,0.0 +11632,1,18,48,0.0 +11632,2,19,4,0.0 +11632,31,12.5,7,0.0 +11632,39,18,40,0.0 +11632,44,19.45,22,0.0 +11632,58,13.25,49,0.0 +11632,69,36,17,0.0 +11632,66,17,43,0.0 +11632,30,25.89,4,0.0 +11632,27,43.9,35,0.0 +11632,68,12.5,50,0.0 +11632,57,19.5,22,0.0 +11632,7,30,7,0.0 +11632,61,28.5,33,0.0 +11632,12,38,20,0.0 +11632,45,9.5,19,0.0 +11632,50,16.25,5,0.0 +11632,74,10,46,0.0 +11632,10,31,20,0.0 +11632,4,22,32,0.0 +11632,70,15,36,0.0 +11632,32,32,46,0.0 +11632,51,53,50,0.0 +11632,20,81,9,0.0 +11632,65,21.05,36,0.0 +11632,13,6,24,0.0 +11632,21,10,7,0.0 +11632,18,62.5,25,0.0 +11633,73,15,50,0.0 +11633,15,15.5,48,0.0 +11633,64,33.25,15,0.0 +11633,16,17.45,10,0.0 +11633,31,12.5,30,0.0 +11633,71,21.5,40,0.0 +11633,51,53,29,0.0 +11633,7,30,44,0.0 +11633,36,19,12,0.0 +11633,5,21.35,6,0.0 +11633,29,123.79,31,0.0 +11633,60,34,37,0.0 +11633,56,38,45,0.0 +11633,27,43.9,50,0.0 +11633,61,28.5,6,0.0 +11633,3,10,32,0.0 +11633,24,4.5,6,0.0 +11633,52,7,25,0.0 +11634,17,39,47,0.0 +11634,35,18,13,0.0 +11634,37,26,41,0.0 +11634,22,21,7,0.0 +11634,19,9.2,10,0.0 +11634,28,45.6,5,0.0 +11634,45,9.5,33,0.0 +11634,39,18,22,0.0 +11634,59,55,49,0.0 +11634,34,14,29,0.0 +11634,64,33.25,10,0.0 +11634,12,38,50,0.0 +11634,55,24,3,0.0 +11634,29,123.79,37,0.0 +11634,8,40,5,0.0 +11634,25,14,38,0.0 +11634,42,14,1,0.0 +11634,46,12,3,0.0 +11634,38,263.5,6,0.0 +11634,21,10,6,0.0 +11634,74,10,44,0.0 +11634,26,31.23,37,0.0 +11634,50,16.25,48,0.0 +11634,63,43.9,42,0.0 +11634,20,81,34,0.0 +11634,66,17,8,0.0 +11634,27,43.9,50,0.0 +11634,75,7.75,19,0.0 +11634,2,19,26,0.0 +11634,57,19.5,4,0.0 +11634,16,17.45,1,0.0 +11634,30,25.89,44,0.0 +11634,67,14,28,0.0 +11634,44,19.45,41,0.0 +11634,6,25,20,0.0 +11634,13,6,2,0.0 +11634,7,30,21,0.0 +11634,33,2.5,23,0.0 +11634,23,9,21,0.0 +11634,76,18,40,0.0 +11634,56,38,16,0.0 +11634,36,19,32,0.0 +11634,52,7,45,0.0 +11634,62,49.3,31,0.0 +11634,4,22,42,0.0 +11634,68,12.5,14,0.0 +11634,69,36,47,0.0 +11634,71,21.5,50,0.0 +11634,10,31,6,0.0 +11634,60,34,49,0.0 +11634,18,62.5,20,0.0 +11634,54,7.45,50,0.0 +11634,41,9.65,43,0.0 +11634,5,21.35,9,0.0 +11634,43,46,19,0.0 +11634,65,21.05,48,0.0 +11634,70,15,26,0.0 +11634,1,18,18,0.0 +11634,3,10,39,0.0 +11634,72,34.8,1,0.0 +11635,46,12,10,0.0 +11635,35,18,8,0.0 +11635,1,18,11,0.0 +11635,7,30,2,0.0 +11635,74,10,25,0.0 +11635,55,24,26,0.0 +11635,27,43.9,6,0.0 +11635,36,19,20,0.0 +11635,56,38,46,0.0 +11635,15,15.5,17,0.0 +11635,32,32,13,0.0 +11635,71,21.5,29,0.0 +11635,73,15,14,0.0 +11635,11,21,36,0.0 +11635,70,15,2,0.0 +11635,42,14,50,0.0 +11635,76,18,10,0.0 +11635,5,21.35,22,0.0 +11635,45,9.5,34,0.0 +11635,75,7.75,12,0.0 +11635,34,14,20,0.0 +11635,14,23.25,32,0.0 +11635,29,123.79,49,0.0 +11635,77,13,5,0.0 +11635,57,19.5,34,0.0 +11635,43,46,17,0.0 +11635,39,18,12,0.0 +11635,44,19.45,11,0.0 +11635,60,34,28,0.0 +11635,52,7,15,0.0 +11635,68,12.5,45,0.0 +11635,8,40,27,0.0 +11635,49,20,48,0.0 +11635,10,31,42,0.0 +11635,64,33.25,28,0.0 +11635,18,62.5,29,0.0 +11635,20,81,10,0.0 +11636,47,9.5,27,0.0 +11636,46,12,10,0.0 +11636,16,17.45,26,0.0 +11636,6,25,22,0.0 +11636,56,38,23,0.0 +11636,62,49.3,33,0.0 +11636,4,22,31,0.0 +11636,36,19,26,0.0 +11636,63,43.9,29,0.0 +11636,13,6,17,0.0 +11636,59,55,5,0.0 +11636,11,21,10,0.0 +11636,28,45.6,11,0.0 +11636,60,34,11,0.0 +11636,33,2.5,32,0.0 +11636,71,21.5,49,0.0 +11636,22,21,22,0.0 +11637,4,22,6,0.0 +11637,65,21.05,3,0.0 +11638,2,19,33,0.0 +11638,50,16.25,40,0.0 +11638,30,25.89,5,0.0 +11638,21,10,39,0.0 +11638,61,28.5,3,0.0 +11638,54,7.45,33,0.0 +11638,6,25,12,0.0 +11638,63,43.9,20,0.0 +11638,64,33.25,9,0.0 +11638,11,21,33,0.0 +11638,74,10,12,0.0 +11638,19,9.2,20,0.0 +11638,42,14,19,0.0 +11639,75,7.75,30,0.0 +11639,39,18,5,0.0 +11639,2,19,17,0.0 +11639,71,21.5,48,0.0 +11639,72,34.8,44,0.0 +11639,55,24,27,0.0 +11639,59,55,31,0.0 +11639,48,12.75,35,0.0 +11639,22,21,11,0.0 +11639,64,33.25,27,0.0 +11639,32,32,17,0.0 +11639,12,38,4,0.0 +11639,50,16.25,2,0.0 +11639,26,31.23,7,0.0 +11640,62,49.3,48,0.0 +11640,35,18,40,0.0 +11640,15,15.5,50,0.0 +11640,37,26,23,0.0 +11640,49,20,49,0.0 +11640,48,12.75,46,0.0 +11640,43,46,20,0.0 +11640,69,36,49,0.0 +11640,8,40,16,0.0 +11640,21,10,25,0.0 +11640,50,16.25,34,0.0 +11640,73,15,21,0.0 +11640,6,25,13,0.0 +11640,36,19,30,0.0 +11640,46,12,27,0.0 +11640,45,9.5,34,0.0 +11640,20,81,25,0.0 +11640,19,9.2,28,0.0 +11640,28,45.6,10,0.0 +11641,40,18.4,15,0.0 +11641,19,9.2,36,0.0 +11641,61,28.5,3,0.0 +11641,66,17,31,0.0 +11641,68,12.5,46,0.0 +11641,70,15,15,0.0 +11641,20,81,33,0.0 +11641,18,62.5,23,0.0 +11641,17,39,21,0.0 +11641,10,31,6,0.0 +11641,27,43.9,31,0.0 +11641,71,21.5,6,0.0 +11641,26,31.23,42,0.0 +11641,38,263.5,36,0.0 +11642,15,15.5,44,0.0 +11642,6,25,19,0.0 +11642,70,15,21,0.0 +11642,9,97,46,0.0 +11642,21,10,7,0.0 +11642,26,31.23,40,0.0 +11642,30,25.89,13,0.0 +11642,63,43.9,34,0.0 +11642,57,19.5,40,0.0 +11642,48,12.75,10,0.0 +11642,69,36,47,0.0 +11642,3,10,47,0.0 +11642,4,22,23,0.0 +11642,32,32,29,0.0 +11642,77,13,41,0.0 +11642,62,49.3,41,0.0 +11642,50,16.25,47,0.0 +11642,7,30,26,0.0 +11642,20,81,36,0.0 +11642,17,39,23,0.0 +11642,2,19,38,0.0 +11642,60,34,28,0.0 +11642,54,7.45,26,0.0 +11642,5,21.35,10,0.0 +11642,49,20,41,0.0 +11642,52,7,36,0.0 +11642,11,21,27,0.0 +11642,14,23.25,48,0.0 +11642,46,12,17,0.0 +11642,40,18.4,45,0.0 +11642,59,55,6,0.0 +11642,68,12.5,10,0.0 +11642,29,123.79,34,0.0 +11642,74,10,5,0.0 +11642,47,9.5,11,0.0 +11642,23,9,3,0.0 +11642,1,18,18,0.0 +11642,42,14,20,0.0 +11642,67,14,11,0.0 +11642,55,24,26,0.0 +11642,43,46,45,0.0 +11642,36,19,31,0.0 +11642,18,62.5,23,0.0 +11642,45,9.5,2,0.0 +11642,76,18,35,0.0 +11642,58,13.25,4,0.0 +11642,8,40,37,0.0 +11642,33,2.5,17,0.0 +11642,31,12.5,38,0.0 +11642,35,18,38,0.0 +11642,51,53,13,0.0 +11642,28,45.6,36,0.0 +11642,34,14,41,0.0 +11643,30,25.89,36,0.0 +11643,38,263.5,7,0.0 +11643,12,38,18,0.0 +11643,41,9.65,35,0.0 +11643,67,14,44,0.0 +11643,73,15,33,0.0 +11643,62,49.3,22,0.0 +11643,4,22,3,0.0 +11643,70,15,15,0.0 +11643,15,15.5,26,0.0 +11643,71,21.5,18,0.0 +11644,77,13,12,0.0 +11644,48,12.75,7,0.0 +11644,10,31,29,0.0 +11644,45,9.5,49,0.0 +11644,30,25.89,36,0.0 +11644,7,30,41,0.0 +11644,4,22,37,0.0 +11644,23,9,23,0.0 +11644,19,9.2,2,0.0 +11644,47,9.5,24,0.0 +11644,49,20,25,0.0 +11644,18,62.5,46,0.0 +11644,29,123.79,43,0.0 +11644,1,18,17,0.0 +11644,68,12.5,26,0.0 +11644,60,34,49,0.0 +11644,75,7.75,42,0.0 +11644,3,10,39,0.0 +11644,74,10,11,0.0 +11644,5,21.35,12,0.0 +11644,52,7,50,0.0 +11644,69,36,26,0.0 +11644,33,2.5,34,0.0 +11644,66,17,30,0.0 +11644,17,39,27,0.0 +11644,61,28.5,11,0.0 +11644,11,21,21,0.0 +11644,71,21.5,5,0.0 +11644,16,17.45,11,0.0 +11644,25,14,40,0.0 +11644,36,19,24,0.0 +11644,46,12,11,0.0 +11644,65,21.05,33,0.0 +11644,42,14,36,0.0 +11644,28,45.6,9,0.0 +11644,73,15,48,0.0 +11644,57,19.5,34,0.0 +11644,40,18.4,41,0.0 +11644,9,97,4,0.0 +11644,6,25,7,0.0 +11644,44,19.45,20,0.0 +11644,21,10,37,0.0 +11644,22,21,22,0.0 +11644,63,43.9,30,0.0 +11644,64,33.25,11,0.0 +11644,12,38,47,0.0 +11644,31,12.5,10,0.0 +11644,50,16.25,50,0.0 +11644,39,18,21,0.0 +11644,62,49.3,46,0.0 +11644,43,46,19,0.0 +11644,24,4.5,18,0.0 +11644,37,26,14,0.0 +11645,44,19.45,16,0.0 +11645,45,9.5,42,0.0 +11645,24,4.5,25,0.0 +11645,2,19,40,0.0 +11645,12,38,42,0.0 +11645,72,34.8,31,0.0 +11645,71,21.5,39,0.0 +11645,69,36,2,0.0 +11645,9,97,30,0.0 +11645,51,53,47,0.0 +11645,14,23.25,37,0.0 +11645,62,49.3,24,0.0 +11645,36,19,25,0.0 +11645,68,12.5,23,0.0 +11646,46,12,48,0.0 +11647,2,19,4,0.0 +11647,70,15,32,0.0 +11647,13,6,3,0.0 +11647,9,97,16,0.0 +11647,3,10,21,0.0 +11647,66,17,45,0.0 +11647,1,18,30,0.0 +11647,47,9.5,42,0.0 +11647,71,21.5,50,0.0 +11647,15,15.5,13,0.0 +11647,21,10,13,0.0 +11647,54,7.45,38,0.0 +11647,75,7.75,24,0.0 +11647,52,7,22,0.0 +11647,12,38,50,0.0 +11647,35,18,4,0.0 +11647,48,12.75,32,0.0 +11647,16,17.45,47,0.0 +11647,46,12,37,0.0 +11647,14,23.25,17,0.0 +11647,19,9.2,18,0.0 +11647,18,62.5,6,0.0 +11647,55,24,44,0.0 +11647,29,123.79,8,0.0 +11647,59,55,50,0.0 +11647,41,9.65,1,0.0 +11648,27,43.9,39,0.0 +11648,26,31.23,49,0.0 +11648,15,15.5,45,0.0 +11648,4,22,17,0.0 +11648,67,14,26,0.0 +11648,51,53,47,0.0 +11648,68,12.5,9,0.0 +11648,22,21,26,0.0 +11648,50,16.25,30,0.0 +11648,43,46,28,0.0 +11648,38,263.5,28,0.0 +11648,76,18,31,0.0 +11648,47,9.5,12,0.0 +11648,54,7.45,23,0.0 +11648,65,21.05,14,0.0 +11648,37,26,35,0.0 +11648,60,34,43,0.0 +11648,73,15,7,0.0 +11648,6,25,40,0.0 +11648,12,38,29,0.0 +11648,7,30,24,0.0 +11648,40,18.4,27,0.0 +11648,23,9,40,0.0 +11648,74,10,3,0.0 +11648,64,33.25,23,0.0 +11648,33,2.5,17,0.0 +11648,25,14,6,0.0 +11648,31,12.5,10,0.0 +11648,49,20,18,0.0 +11648,57,19.5,33,0.0 +11648,45,9.5,4,0.0 +11648,2,19,40,0.0 +11648,35,18,33,0.0 +11648,24,4.5,6,0.0 +11648,5,21.35,10,0.0 +11648,16,17.45,36,0.0 +11648,59,55,10,0.0 +11648,19,9.2,6,0.0 +11648,58,13.25,46,0.0 +11648,34,14,33,0.0 +11648,17,39,16,0.0 +11648,14,23.25,3,0.0 +11648,3,10,20,0.0 +11648,63,43.9,23,0.0 +11648,70,15,31,0.0 +11648,9,97,10,0.0 +11648,39,18,10,0.0 +11648,42,14,19,0.0 +11648,36,19,35,0.0 +11648,56,38,21,0.0 +11648,75,7.75,10,0.0 +11648,46,12,41,0.0 +11649,72,34.8,36,0.0 +11649,12,38,8,0.0 +11649,26,31.23,25,0.0 +11649,15,15.5,23,0.0 +11649,23,9,48,0.0 +11649,5,21.35,17,0.0 +11649,52,7,10,0.0 +11649,18,62.5,42,0.0 +11649,74,10,24,0.0 +11649,57,19.5,48,0.0 +11649,46,12,6,0.0 +11649,69,36,1,0.0 +11649,59,55,6,0.0 +11649,47,9.5,43,0.0 +11649,9,97,11,0.0 +11649,58,13.25,7,0.0 +11649,42,14,8,0.0 +11649,40,18.4,35,0.0 +11649,11,21,28,0.0 +11649,16,17.45,4,0.0 +11649,4,22,43,0.0 +11649,61,28.5,35,0.0 +11649,39,18,26,0.0 +11649,27,43.9,17,0.0 +11649,14,23.25,7,0.0 +11649,48,12.75,24,0.0 +11650,39,18,28,0.0 +11650,26,31.23,29,0.0 +11650,27,43.9,44,0.0 +11650,16,17.45,36,0.0 +11650,63,43.9,29,0.0 +11650,76,18,24,0.0 +11650,44,19.45,40,0.0 +11650,48,12.75,10,0.0 +11650,66,17,14,0.0 +11650,53,32.8,6,0.0 +11650,29,123.79,36,0.0 +11650,24,4.5,50,0.0 +11650,40,18.4,44,0.0 +11650,71,21.5,25,0.0 +11650,1,18,17,0.0 +11650,19,9.2,13,0.0 +11650,20,81,20,0.0 +11650,58,13.25,15,0.0 +11650,51,53,9,0.0 +11650,77,13,4,0.0 +11650,3,10,26,0.0 +11650,65,21.05,42,0.0 +11650,60,34,24,0.0 +11650,59,55,40,0.0 +11650,2,19,27,0.0 +11650,22,21,45,0.0 +11650,52,7,27,0.0 +11650,72,34.8,2,0.0 +11651,39,18,44,0.0 +11651,54,7.45,30,0.0 +11651,63,43.9,50,0.0 +11651,13,6,8,0.0 +11651,64,33.25,7,0.0 +11651,29,123.79,21,0.0 +11651,6,25,42,0.0 +11651,7,30,37,0.0 +11651,14,23.25,4,0.0 +11651,28,45.6,18,0.0 +11651,74,10,16,0.0 +11651,51,53,28,0.0 +11651,61,28.5,47,0.0 +11651,15,15.5,44,0.0 +11651,30,25.89,27,0.0 +11651,32,32,10,0.0 +11651,36,19,31,0.0 +11651,26,31.23,21,0.0 +11651,70,15,29,0.0 +11651,25,14,39,0.0 +11651,18,62.5,25,0.0 +11651,49,20,12,0.0 +11651,77,13,6,0.0 +11651,19,9.2,19,0.0 +11651,31,12.5,3,0.0 +11651,76,18,23,0.0 +11651,12,38,25,0.0 +11651,38,263.5,47,0.0 +11651,66,17,35,0.0 +11651,59,55,30,0.0 +11651,8,40,3,0.0 +11651,4,22,33,0.0 +11651,5,21.35,48,0.0 +11651,46,12,7,0.0 +11651,60,34,6,0.0 +11651,67,14,43,0.0 +11651,10,31,39,0.0 +11651,21,10,29,0.0 +11651,48,12.75,14,0.0 +11651,57,19.5,22,0.0 +11651,16,17.45,44,0.0 +11651,37,26,43,0.0 +11651,45,9.5,26,0.0 +11651,1,18,29,0.0 +11651,11,21,12,0.0 +11651,34,14,1,0.0 +11651,65,21.05,15,0.0 +11651,43,46,2,0.0 +11651,35,18,9,0.0 +11651,75,7.75,38,0.0 +11651,3,10,20,0.0 +11651,58,13.25,42,0.0 +11651,27,43.9,17,0.0 +11651,47,9.5,43,0.0 +11651,69,36,24,0.0 +11651,20,81,25,0.0 +11651,22,21,21,0.0 +11651,9,97,49,0.0 +11651,53,32.8,22,0.0 +11651,41,9.65,48,0.0 +11651,17,39,50,0.0 +11651,55,24,29,0.0 +11651,2,19,9,0.0 +11651,68,12.5,31,0.0 +11651,71,21.5,6,0.0 +11651,73,15,16,0.0 +11651,62,49.3,26,0.0 +11651,50,16.25,33,0.0 +11651,44,19.45,18,0.0 +11651,33,2.5,33,0.0 +11651,23,9,43,0.0 +11651,40,18.4,23,0.0 +11651,72,34.8,5,0.0 +11651,24,4.5,36,0.0 +11652,48,12.75,45,0.0 +11652,54,7.45,26,0.0 +11652,73,15,18,0.0 +11652,26,31.23,48,0.0 +11652,35,18,45,0.0 +11652,36,19,39,0.0 +11652,53,32.8,13,0.0 +11652,14,23.25,22,0.0 +11653,76,18,33,0.0 +11653,37,26,48,0.0 +11653,65,21.05,45,0.0 +11653,39,18,45,0.0 +11653,32,32,28,0.0 +11653,58,13.25,18,0.0 +11653,29,123.79,41,0.0 +11653,31,12.5,36,0.0 +11653,41,9.65,38,0.0 +11653,42,14,13,0.0 +11653,7,30,1,0.0 +11653,33,2.5,22,0.0 +11653,47,9.5,35,0.0 +11653,36,19,31,0.0 +11653,26,31.23,43,0.0 +11653,46,12,43,0.0 +11653,40,18.4,28,0.0 +11653,34,14,19,0.0 +11653,5,21.35,36,0.0 +11653,38,263.5,25,0.0 +11653,18,62.5,22,0.0 +11653,19,9.2,29,0.0 +11653,64,33.25,36,0.0 +11653,57,19.5,27,0.0 +11653,24,4.5,8,0.0 +11653,25,14,18,0.0 +11653,9,97,20,0.0 +11653,16,17.45,22,0.0 +11653,74,10,30,0.0 +11653,72,34.8,41,0.0 +11653,43,46,17,0.0 +11653,10,31,39,0.0 +11653,8,40,25,0.0 +11653,27,43.9,45,0.0 +11653,69,36,26,0.0 +11653,54,7.45,50,0.0 +11653,12,38,35,0.0 +11653,52,7,40,0.0 +11653,62,49.3,44,0.0 +11653,1,18,30,0.0 +11653,59,55,22,0.0 +11653,48,12.75,32,0.0 +11653,11,21,32,0.0 +11653,4,22,3,0.0 +11653,2,19,8,0.0 +11653,44,19.45,31,0.0 +11653,6,25,9,0.0 +11653,30,25.89,23,0.0 +11653,70,15,1,0.0 +11653,67,14,9,0.0 +11653,35,18,16,0.0 +11653,66,17,28,0.0 +11653,68,12.5,26,0.0 +11653,53,32.8,46,0.0 +11653,23,9,50,0.0 +11653,73,15,1,0.0 +11653,71,21.5,29,0.0 +11653,17,39,48,0.0 +11653,21,10,38,0.0 +11653,14,23.25,23,0.0 +11653,13,6,27,0.0 +11653,15,15.5,38,0.0 +11653,28,45.6,10,0.0 +11653,51,53,15,0.0 +11653,61,28.5,40,0.0 +11653,77,13,44,0.0 +11653,50,16.25,27,0.0 +11654,4,22,10,0.0 +11654,28,45.6,41,0.0 +11654,55,24,29,0.0 +11654,40,18.4,40,0.0 +11654,27,43.9,9,0.0 +11654,20,81,50,0.0 +11654,66,17,11,0.0 +11654,65,21.05,35,0.0 +11654,57,19.5,25,0.0 +11654,30,25.89,27,0.0 +11654,6,25,50,0.0 +11654,13,6,40,0.0 +11654,3,10,24,0.0 +11654,54,7.45,50,0.0 +11654,33,2.5,7,0.0 +11654,11,21,31,0.0 +11654,10,31,36,0.0 +11654,34,14,6,0.0 +11654,69,36,27,0.0 +11654,44,19.45,46,0.0 +11654,37,26,33,0.0 +11654,24,4.5,18,0.0 +11654,46,12,3,0.0 +11654,74,10,5,0.0 +11654,43,46,11,0.0 +11654,63,43.9,20,0.0 +11654,16,17.45,29,0.0 +11654,21,10,6,0.0 +11654,41,9.65,3,0.0 +11654,14,23.25,43,0.0 +11654,29,123.79,49,0.0 +11654,72,34.8,49,0.0 +11654,51,53,50,0.0 +11654,71,21.5,37,0.0 +11654,76,18,43,0.0 +11654,73,15,34,0.0 +11654,25,14,24,0.0 +11654,75,7.75,17,0.0 +11654,35,18,11,0.0 +11654,58,13.25,2,0.0 +11654,9,97,7,0.0 +11654,47,9.5,1,0.0 +11655,21,10,37,0.0 +11655,20,81,23,0.0 +11655,68,12.5,31,0.0 +11655,15,15.5,2,0.0 +11655,77,13,26,0.0 +11655,1,18,18,0.0 +11655,37,26,39,0.0 +11655,53,32.8,1,0.0 +11655,51,53,5,0.0 +11655,5,21.35,16,0.0 +11655,39,18,10,0.0 +11655,22,21,21,0.0 +11656,14,23.25,6,0.0 +11656,9,97,49,0.0 +11656,2,19,45,0.0 +11656,34,14,22,0.0 +11656,62,49.3,32,0.0 +11656,46,12,49,0.0 +11656,65,21.05,24,0.0 +11656,67,14,21,0.0 +11656,42,14,1,0.0 +11656,71,21.5,15,0.0 +11656,31,12.5,8,0.0 +11656,53,32.8,18,0.0 +11656,68,12.5,11,0.0 +11656,29,123.79,6,0.0 +11656,32,32,23,0.0 +11656,22,21,25,0.0 +11656,10,31,36,0.0 +11656,69,36,23,0.0 +11656,47,9.5,34,0.0 +11656,23,9,49,0.0 +11656,17,39,29,0.0 +11656,51,53,12,0.0 +11656,57,19.5,28,0.0 +11656,77,13,4,0.0 +11656,28,45.6,21,0.0 +11656,61,28.5,32,0.0 +11656,7,30,38,0.0 +11656,66,17,24,0.0 +11656,55,24,39,0.0 +11656,16,17.45,32,0.0 +11656,73,15,27,0.0 +11656,15,15.5,3,0.0 +11656,20,81,18,0.0 +11656,1,18,3,0.0 +11656,44,19.45,18,0.0 +11656,63,43.9,38,0.0 +11656,33,2.5,16,0.0 +11656,6,25,40,0.0 +11656,43,46,12,0.0 +11656,37,26,31,0.0 +11656,45,9.5,26,0.0 +11656,70,15,18,0.0 +11656,56,38,5,0.0 +11656,75,7.75,38,0.0 +11656,24,4.5,48,0.0 +11657,15,15.5,9,0.0 +11657,14,23.25,8,0.0 +11657,7,30,25,0.0 +11657,68,12.5,37,0.0 +11657,23,9,23,0.0 +11657,12,38,40,0.0 +11657,36,19,33,0.0 +11657,24,4.5,37,0.0 +11657,32,32,9,0.0 +11657,27,43.9,39,0.0 +11657,60,34,25,0.0 +11657,40,18.4,47,0.0 +11657,20,81,13,0.0 +11657,11,21,30,0.0 +11657,59,55,41,0.0 +11657,57,19.5,26,0.0 +11657,53,32.8,33,0.0 +11657,2,19,25,0.0 +11657,48,12.75,8,0.0 +11657,13,6,16,0.0 +11657,31,12.5,13,0.0 +11657,6,25,9,0.0 +11657,44,19.45,28,0.0 +11657,10,31,44,0.0 +11657,19,9.2,11,0.0 +11657,8,40,1,0.0 +11657,64,33.25,8,0.0 +11657,28,45.6,11,0.0 +11657,62,49.3,50,0.0 +11657,35,18,19,0.0 +11657,17,39,32,0.0 +11657,29,123.79,42,0.0 +11657,22,21,31,0.0 +11657,52,7,37,0.0 +11657,61,28.5,12,0.0 +11657,72,34.8,9,0.0 +11657,3,10,32,0.0 +11657,33,2.5,39,0.0 +11657,25,14,30,0.0 +11657,21,10,50,0.0 +11657,39,18,22,0.0 +11657,66,17,45,0.0 +11657,75,7.75,2,0.0 +11657,58,13.25,1,0.0 +11658,31,12.5,18,0.0 +11658,26,31.23,3,0.0 +11658,29,123.79,19,0.0 +11658,28,45.6,35,0.0 +11658,32,32,18,0.0 +11658,60,34,3,0.0 +11658,20,81,44,0.0 +11658,18,62.5,16,0.0 +11659,8,40,31,0.0 +11659,22,21,18,0.0 +11659,42,14,38,0.0 +11659,39,18,43,0.0 +11659,75,7.75,6,0.0 +11659,17,39,26,0.0 +11659,50,16.25,44,0.0 +11659,62,49.3,24,0.0 +11659,71,21.5,12,0.0 +11659,51,53,47,0.0 +11659,47,9.5,50,0.0 +11659,34,14,12,0.0 +11659,74,10,19,0.0 +11659,60,34,16,0.0 +11659,65,21.05,2,0.0 +11659,54,7.45,20,0.0 +11659,37,26,31,0.0 +11660,49,20,23,0.0 +11660,13,6,22,0.0 +11660,41,9.65,15,0.0 +11660,36,19,45,0.0 +11660,70,15,35,0.0 +11660,58,13.25,45,0.0 +11660,17,39,7,0.0 +11660,4,22,9,0.0 +11660,51,53,39,0.0 +11660,9,97,4,0.0 +11660,45,9.5,25,0.0 +11660,39,18,47,0.0 +11660,50,16.25,28,0.0 +11660,69,36,3,0.0 +11660,28,45.6,28,0.0 +11660,55,24,4,0.0 +11660,11,21,29,0.0 +11660,54,7.45,39,0.0 +11660,67,14,43,0.0 +11660,6,25,23,0.0 +11660,57,19.5,18,0.0 +11660,3,10,44,0.0 +11660,34,14,24,0.0 +11660,66,17,22,0.0 +11660,62,49.3,24,0.0 +11660,12,38,34,0.0 +11660,22,21,12,0.0 +11660,71,21.5,28,0.0 +11660,56,38,32,0.0 +11660,38,263.5,31,0.0 +11660,73,15,30,0.0 +11660,7,30,13,0.0 +11660,72,34.8,22,0.0 +11660,23,9,38,0.0 +11660,31,12.5,42,0.0 +11660,14,23.25,45,0.0 +11660,52,7,28,0.0 +11660,20,81,2,0.0 +11660,48,12.75,9,0.0 +11660,40,18.4,30,0.0 +11660,33,2.5,47,0.0 +11660,29,123.79,4,0.0 +11660,65,21.05,4,0.0 +11660,21,10,44,0.0 +11660,76,18,14,0.0 +11660,74,10,5,0.0 +11660,37,26,49,0.0 +11660,53,32.8,7,0.0 +11660,42,14,27,0.0 +11660,1,18,21,0.0 +11660,44,19.45,38,0.0 +11660,5,21.35,10,0.0 +11660,2,19,30,0.0 +11660,47,9.5,5,0.0 +11660,68,12.5,17,0.0 +11660,59,55,19,0.0 +11660,8,40,17,0.0 +11660,26,31.23,5,0.0 +11661,17,39,44,0.0 +11661,53,32.8,19,0.0 +11661,21,10,28,0.0 +11661,14,23.25,29,0.0 +11661,63,43.9,27,0.0 +11661,71,21.5,40,0.0 +11661,15,15.5,35,0.0 +11661,4,22,5,0.0 +11661,45,9.5,25,0.0 +11661,50,16.25,34,0.0 +11661,77,13,8,0.0 +11661,66,17,18,0.0 +11661,46,12,5,0.0 +11661,43,46,15,0.0 +11661,73,15,34,0.0 +11661,13,6,10,0.0 +11661,58,13.25,6,0.0 +11661,44,19.45,6,0.0 +11661,54,7.45,11,0.0 +11661,22,21,7,0.0 +11661,72,34.8,18,0.0 +11661,16,17.45,46,0.0 +11661,70,15,4,0.0 +11661,65,21.05,31,0.0 +11661,51,53,4,0.0 +11661,31,12.5,6,0.0 +11661,6,25,42,0.0 +11661,26,31.23,6,0.0 +11661,34,14,8,0.0 +11661,27,43.9,44,0.0 +11661,1,18,6,0.0 +11661,38,263.5,18,0.0 +11661,61,28.5,6,0.0 +11661,55,24,35,0.0 +11661,59,55,10,0.0 +11661,39,18,10,0.0 +11661,42,14,26,0.0 +11661,69,36,47,0.0 +11662,71,21.5,39,0.0 +11662,6,25,42,0.0 +11662,75,7.75,12,0.0 +11662,22,21,12,0.0 +11662,67,14,35,0.0 +11662,4,22,18,0.0 +11662,55,24,39,0.0 +11662,38,263.5,31,0.0 +11662,68,12.5,20,0.0 +11662,66,17,38,0.0 +11662,62,49.3,43,0.0 +11662,76,18,37,0.0 +11662,77,13,49,0.0 +11662,57,19.5,24,0.0 +11662,44,19.45,17,0.0 +11662,19,9.2,24,0.0 +11662,46,12,5,0.0 +11662,30,25.89,30,0.0 +11662,14,23.25,44,0.0 +11662,2,19,24,0.0 +11662,52,7,34,0.0 +11662,8,40,13,0.0 +11662,40,18.4,4,0.0 +11662,50,16.25,18,0.0 +11662,16,17.45,33,0.0 +11662,5,21.35,36,0.0 +11662,42,14,4,0.0 +11662,21,10,42,0.0 +11662,72,34.8,19,0.0 +11662,65,21.05,45,0.0 +11662,7,30,25,0.0 +11662,28,45.6,41,0.0 +11662,26,31.23,12,0.0 +11662,39,18,46,0.0 +11662,37,26,8,0.0 +11662,18,62.5,33,0.0 +11662,29,123.79,10,0.0 +11662,23,9,17,0.0 +11662,53,32.8,29,0.0 +11662,74,10,22,0.0 +11662,48,12.75,43,0.0 +11662,34,14,20,0.0 +11662,61,28.5,28,0.0 +11662,24,4.5,1,0.0 +11662,54,7.45,24,0.0 +11662,49,20,18,0.0 +11662,9,97,3,0.0 +11662,73,15,23,0.0 +11662,43,46,26,0.0 +11662,15,15.5,36,0.0 +11662,59,55,16,0.0 +11662,3,10,46,0.0 +11662,13,6,14,0.0 +11662,1,18,8,0.0 +11662,64,33.25,43,0.0 +11662,56,38,16,0.0 +11662,20,81,19,0.0 +11663,17,39,44,0.0 +11663,63,43.9,3,0.0 +11663,4,22,37,0.0 +11664,26,31.23,35,0.0 +11664,36,19,49,0.0 +11664,23,9,37,0.0 +11664,39,18,34,0.0 +11664,49,20,48,0.0 +11664,12,38,12,0.0 +11664,58,13.25,44,0.0 +11664,68,12.5,28,0.0 +11664,27,43.9,9,0.0 +11664,56,38,42,0.0 +11664,60,34,1,0.0 +11665,1,18,1,0.0 +11665,2,19,4,0.0 +11665,36,19,27,0.0 +11665,24,4.5,36,0.0 +11665,56,38,35,0.0 +11665,30,25.89,45,0.0 +11665,46,12,26,0.0 +11665,13,6,42,0.0 +11665,70,15,15,0.0 +11665,47,9.5,36,0.0 +11665,61,28.5,13,0.0 +11665,65,21.05,16,0.0 +11665,12,38,32,0.0 +11665,21,10,34,0.0 +11665,66,17,28,0.0 +11665,72,34.8,5,0.0 +11665,51,53,47,0.0 +11665,28,45.6,25,0.0 +11665,27,43.9,10,0.0 +11665,48,12.75,49,0.0 +11665,25,14,15,0.0 +11665,39,18,47,0.0 +11665,76,18,34,0.0 +11665,75,7.75,19,0.0 +11665,8,40,45,0.0 +11665,26,31.23,38,0.0 +11665,33,2.5,32,0.0 +11665,11,21,10,0.0 +11665,9,97,37,0.0 +11665,5,21.35,11,0.0 +11665,41,9.65,44,0.0 +11665,44,19.45,23,0.0 +11665,63,43.9,16,0.0 +11665,45,9.5,46,0.0 +11665,55,24,24,0.0 +11665,19,9.2,42,0.0 +11665,71,21.5,6,0.0 +11665,62,49.3,24,0.0 +11665,35,18,29,0.0 +11665,59,55,18,0.0 +11665,38,263.5,31,0.0 +11665,31,12.5,44,0.0 +11665,40,18.4,34,0.0 +11665,10,31,7,0.0 +11665,37,26,9,0.0 +11665,29,123.79,12,0.0 +11665,14,23.25,48,0.0 +11665,57,19.5,4,0.0 +11665,18,62.5,31,0.0 +11665,7,30,30,0.0 +11665,23,9,19,0.0 +11665,6,25,24,0.0 +11665,68,12.5,7,0.0 +11666,49,20,3,0.0 +11666,6,25,38,0.0 +11666,75,7.75,2,0.0 +11666,13,6,12,0.0 +11666,40,18.4,12,0.0 +11666,63,43.9,32,0.0 +11666,56,38,43,0.0 +11666,15,15.5,21,0.0 +11666,51,53,28,0.0 +11666,33,2.5,46,0.0 +11666,52,7,25,0.0 +11666,74,10,22,0.0 +11666,54,7.45,35,0.0 +11666,57,19.5,5,0.0 +11666,73,15,12,0.0 +11666,37,26,43,0.0 +11666,76,18,41,0.0 +11666,55,24,43,0.0 +11666,14,23.25,30,0.0 +11666,62,49.3,9,0.0 +11666,35,18,13,0.0 +11666,68,12.5,24,0.0 +11666,22,21,26,0.0 +11666,53,32.8,9,0.0 +11666,60,34,20,0.0 +11666,29,123.79,34,0.0 +11666,48,12.75,22,0.0 +11666,31,12.5,26,0.0 +11666,66,17,33,0.0 +11666,45,9.5,8,0.0 +11666,77,13,13,0.0 +11666,65,21.05,6,0.0 +11666,19,9.2,9,0.0 +11666,23,9,9,0.0 +11666,26,31.23,15,0.0 +11666,70,15,45,0.0 +11666,67,14,3,0.0 +11667,48,12.75,28,0.0 +11667,70,15,22,0.0 +11667,51,53,38,0.0 +11667,72,34.8,20,0.0 +11667,67,14,40,0.0 +11667,60,34,48,0.0 +11667,64,33.25,27,0.0 +11667,56,38,41,0.0 +11667,54,7.45,40,0.0 +11667,44,19.45,43,0.0 +11667,33,2.5,19,0.0 +11667,61,28.5,46,0.0 +11667,30,25.89,20,0.0 +11667,76,18,19,0.0 +11667,36,19,31,0.0 +11667,77,13,44,0.0 +11667,14,23.25,13,0.0 +11667,4,22,26,0.0 +11667,28,45.6,1,0.0 +11667,16,17.45,47,0.0 +11667,12,38,19,0.0 +11667,3,10,4,0.0 +11667,37,26,28,0.0 +11667,26,31.23,14,0.0 +11667,10,31,44,0.0 +11667,9,97,37,0.0 +11667,45,9.5,47,0.0 +11667,41,9.65,8,0.0 +11667,18,62.5,37,0.0 +11667,50,16.25,20,0.0 +11667,21,10,34,0.0 +11667,71,21.5,9,0.0 +11667,69,36,9,0.0 +11667,7,30,35,0.0 +11667,46,12,7,0.0 +11667,15,15.5,2,0.0 +11667,62,49.3,17,0.0 +11667,58,13.25,13,0.0 +11667,6,25,1,0.0 +11667,40,18.4,42,0.0 +11667,24,4.5,32,0.0 +11667,8,40,43,0.0 +11667,5,21.35,35,0.0 +11667,73,15,49,0.0 +11667,53,32.8,10,0.0 +11667,13,6,11,0.0 +11667,66,17,9,0.0 +11667,25,14,11,0.0 +11667,68,12.5,10,0.0 +11667,34,14,4,0.0 +11667,19,9.2,24,0.0 +11667,27,43.9,39,0.0 +11667,49,20,48,0.0 +11667,17,39,45,0.0 +11667,35,18,25,0.0 +11667,63,43.9,18,0.0 +11667,65,21.05,2,0.0 +11667,23,9,14,0.0 +11667,43,46,19,0.0 +11667,29,123.79,21,0.0 +11667,39,18,12,0.0 +11667,55,24,1,0.0 +11667,75,7.75,50,0.0 +11667,38,263.5,3,0.0 +11667,59,55,45,0.0 +11667,57,19.5,10,0.0 +11667,11,21,36,0.0 +11667,2,19,48,0.0 +11667,52,7,33,0.0 +11667,22,21,4,0.0 +11667,1,18,47,0.0 +11667,32,32,18,0.0 +11667,74,10,34,0.0 +11667,47,9.5,40,0.0 +11667,31,12.5,50,0.0 +11668,51,53,48,0.0 +11668,67,14,22,0.0 +11668,60,34,37,0.0 +11668,36,19,37,0.0 +11668,8,40,24,0.0 +11668,57,19.5,38,0.0 +11668,19,9.2,1,0.0 +11668,26,31.23,35,0.0 +11668,16,17.45,29,0.0 +11668,46,12,23,0.0 +11668,32,32,20,0.0 +11668,14,23.25,22,0.0 +11668,23,9,40,0.0 +11668,41,9.65,17,0.0 +11668,3,10,21,0.0 +11668,22,21,39,0.0 +11668,72,34.8,46,0.0 +11668,66,17,21,0.0 +11668,54,7.45,18,0.0 +11668,52,7,34,0.0 +11668,33,2.5,35,0.0 +11668,77,13,6,0.0 +11668,17,39,37,0.0 +11668,1,18,29,0.0 +11668,75,7.75,37,0.0 +11668,4,22,15,0.0 +11668,11,21,27,0.0 +11668,59,55,16,0.0 +11668,61,28.5,36,0.0 +11668,69,36,1,0.0 +11668,6,25,1,0.0 +11669,60,34,48,0.0 +11669,71,21.5,45,0.0 +11669,17,39,22,0.0 +11669,18,62.5,39,0.0 +11669,11,21,25,0.0 +11669,22,21,30,0.0 +11669,34,14,32,0.0 +11669,25,14,27,0.0 +11669,51,53,4,0.0 +11669,59,55,38,0.0 +11669,52,7,1,0.0 +11669,33,2.5,39,0.0 +11669,66,17,5,0.0 +11669,48,12.75,45,0.0 +11669,7,30,9,0.0 +11669,40,18.4,13,0.0 +11669,6,25,38,0.0 +11669,65,21.05,36,0.0 +11669,10,31,9,0.0 +11669,69,36,39,0.0 +11670,24,4.5,7,0.0 +11670,22,21,7,0.0 +11671,4,22,46,0.0 +11671,33,2.5,6,0.0 +11671,24,4.5,40,0.0 +11671,52,7,21,0.0 +11671,28,45.6,31,0.0 +11671,32,32,22,0.0 +11671,42,14,47,0.0 +11671,22,21,9,0.0 +11671,75,7.75,3,0.0 +11671,60,34,47,0.0 +11671,46,12,6,0.0 +11671,68,12.5,42,0.0 +11671,70,15,16,0.0 +11671,40,18.4,46,0.0 +11671,66,17,42,0.0 +11671,6,25,18,0.0 +11671,45,9.5,36,0.0 +11671,30,25.89,43,0.0 +11671,8,40,4,0.0 +11671,25,14,50,0.0 +11671,55,24,25,0.0 +11671,1,18,9,0.0 +11671,44,19.45,43,0.0 +11671,50,16.25,29,0.0 +11671,77,13,10,0.0 +11671,29,123.79,30,0.0 +11671,43,46,5,0.0 +11671,35,18,37,0.0 +11671,69,36,11,0.0 +11671,19,9.2,43,0.0 +11671,12,38,28,0.0 +11671,57,19.5,20,0.0 +11671,7,30,25,0.0 +11671,76,18,30,0.0 +11671,74,10,20,0.0 +11671,53,32.8,13,0.0 +11671,13,6,2,0.0 +11671,37,26,16,0.0 +11671,61,28.5,17,0.0 +11671,39,18,38,0.0 +11671,23,9,45,0.0 +11672,26,31.23,27,0.0 +11672,2,19,33,0.0 +11672,40,18.4,34,0.0 +11672,74,10,4,0.0 +11672,25,14,41,0.0 +11672,21,10,38,0.0 +11672,57,19.5,44,0.0 +11672,77,13,32,0.0 +11672,4,22,4,0.0 +11672,13,6,35,0.0 +11672,23,9,4,0.0 +11672,68,12.5,45,0.0 +11672,3,10,26,0.0 +11672,59,55,37,0.0 +11672,9,97,12,0.0 +11672,63,43.9,33,0.0 +11672,6,25,16,0.0 +11672,20,81,9,0.0 +11672,53,32.8,4,0.0 +11672,32,32,15,0.0 +11672,54,7.45,11,0.0 +11672,11,21,29,0.0 +11672,51,53,1,0.0 +11672,55,24,8,0.0 +11672,19,9.2,34,0.0 +11672,7,30,45,0.0 +11672,52,7,45,0.0 +11672,12,38,36,0.0 +11672,28,45.6,22,0.0 +11672,65,21.05,6,0.0 +11672,10,31,8,0.0 +11672,34,14,44,0.0 +11672,76,18,27,0.0 +11672,27,43.9,27,0.0 +11672,31,12.5,29,0.0 +11672,1,18,4,0.0 +11672,49,20,8,0.0 +11672,69,36,37,0.0 +11672,8,40,48,0.0 +11672,70,15,28,0.0 +11672,46,12,37,0.0 +11672,56,38,16,0.0 +11672,24,4.5,8,0.0 +11672,42,14,18,0.0 +11672,60,34,26,0.0 +11672,71,21.5,4,0.0 +11672,39,18,29,0.0 +11672,66,17,38,0.0 +11672,67,14,26,0.0 +11672,15,15.5,14,0.0 +11672,43,46,36,0.0 +11672,35,18,2,0.0 +11672,41,9.65,41,0.0 +11673,6,25,37,0.0 +11673,20,81,32,0.0 +11673,72,34.8,47,0.0 +11673,10,31,44,0.0 +11673,48,12.75,49,0.0 +11673,16,17.45,38,0.0 +11673,30,25.89,28,0.0 +11673,56,38,43,0.0 +11673,26,31.23,37,0.0 +11673,1,18,34,0.0 +11673,14,23.25,38,0.0 +11673,8,40,4,0.0 +11673,36,19,43,0.0 +11673,12,38,47,0.0 +11673,13,6,16,0.0 +11673,18,62.5,34,0.0 +11673,50,16.25,22,0.0 +11673,64,33.25,43,0.0 +11673,39,18,26,0.0 +11673,32,32,37,0.0 +11673,37,26,41,0.0 +11673,34,14,45,0.0 +11673,67,14,17,0.0 +11673,51,53,36,0.0 +11673,62,49.3,36,0.0 +11673,58,13.25,19,0.0 +11673,11,21,47,0.0 +11673,49,20,2,0.0 +11673,27,43.9,17,0.0 +11673,2,19,26,0.0 +11673,44,19.45,11,0.0 +11673,9,97,30,0.0 +11673,19,9.2,23,0.0 +11673,77,13,34,0.0 +11673,15,15.5,10,0.0 +11673,41,9.65,23,0.0 +11673,65,21.05,15,0.0 +11673,69,36,3,0.0 +11673,5,21.35,6,0.0 +11674,59,55,12,0.0 +11674,30,25.89,3,0.0 +11674,64,33.25,13,0.0 +11674,29,123.79,40,0.0 +11674,68,12.5,11,0.0 +11674,23,9,10,0.0 +11674,13,6,33,0.0 +11674,22,21,1,0.0 +11674,51,53,34,0.0 +11674,37,26,27,0.0 +11674,33,2.5,17,0.0 +11674,60,34,21,0.0 +11674,54,7.45,16,0.0 +11674,73,15,31,0.0 +11674,66,17,45,0.0 +11674,58,13.25,13,0.0 +11674,16,17.45,3,0.0 +11674,77,13,25,0.0 +11674,61,28.5,38,0.0 +11674,43,46,7,0.0 +11674,15,15.5,18,0.0 +11674,12,38,2,0.0 +11674,52,7,36,0.0 +11674,40,18.4,12,0.0 +11674,14,23.25,29,0.0 +11674,69,36,21,0.0 +11674,70,15,24,0.0 +11674,24,4.5,18,0.0 +11674,25,14,41,0.0 +11674,2,19,16,0.0 +11674,46,12,23,0.0 +11674,42,14,21,0.0 +11674,11,21,33,0.0 +11674,55,24,2,0.0 +11674,35,18,40,0.0 +11674,26,31.23,49,0.0 +11674,10,31,11,0.0 +11674,21,10,49,0.0 +11674,4,22,43,0.0 +11674,3,10,6,0.0 +11674,39,18,47,0.0 +11674,36,19,22,0.0 +11674,53,32.8,41,0.0 +11674,76,18,9,0.0 +11674,71,21.5,40,0.0 +11674,65,21.05,39,0.0 +11674,38,263.5,16,0.0 +11674,1,18,5,0.0 +11674,45,9.5,9,0.0 +11674,9,97,6,0.0 +11674,50,16.25,39,0.0 +11674,7,30,42,0.0 +11674,56,38,44,0.0 +11674,41,9.65,39,0.0 +11674,48,12.75,43,0.0 +11674,47,9.5,22,0.0 +11674,17,39,10,0.0 +11675,58,13.25,15,0.0 +11675,54,7.45,22,0.0 +11675,42,14,39,0.0 +11675,68,12.5,39,0.0 +11675,76,18,35,0.0 +11675,4,22,18,0.0 +11675,61,28.5,8,0.0 +11675,41,9.65,16,0.0 +11675,38,263.5,37,0.0 +11675,18,62.5,17,0.0 +11675,63,43.9,10,0.0 +11675,36,19,3,0.0 +11675,65,21.05,7,0.0 +11675,39,18,14,0.0 +11675,51,53,29,0.0 +11675,27,43.9,40,0.0 +11675,73,15,38,0.0 +11675,21,10,43,0.0 +11675,53,32.8,41,0.0 +11675,11,21,8,0.0 +11675,74,10,16,0.0 +11675,52,7,5,0.0 +11676,18,62.5,35,0.0 +11676,65,21.05,38,0.0 +11676,56,38,4,0.0 +11676,50,16.25,21,0.0 +11676,15,15.5,47,0.0 +11676,24,4.5,10,0.0 +11676,62,49.3,48,0.0 +11676,63,43.9,2,0.0 +11676,60,34,28,0.0 +11676,49,20,23,0.0 +11676,67,14,44,0.0 +11676,54,7.45,49,0.0 +11676,38,263.5,31,0.0 +11676,22,21,13,0.0 +11676,6,25,18,0.0 +11676,64,33.25,38,0.0 +11676,52,7,20,0.0 +11676,44,19.45,11,0.0 +11676,57,19.5,27,0.0 +11676,17,39,29,0.0 +11676,77,13,1,0.0 +11676,46,12,23,0.0 +11676,43,46,17,0.0 +11676,23,9,2,0.0 +11676,45,9.5,3,0.0 +11676,66,17,9,0.0 +11676,33,2.5,5,0.0 +11676,7,30,29,0.0 +11676,14,23.25,34,0.0 +11676,55,24,23,0.0 +11676,30,25.89,12,0.0 +11676,69,36,13,0.0 +11676,68,12.5,29,0.0 +11676,21,10,36,0.0 +11676,26,31.23,10,0.0 +11676,8,40,4,0.0 +11676,51,53,14,0.0 +11676,29,123.79,28,0.0 +11676,11,21,49,0.0 +11676,19,9.2,14,0.0 +11676,12,38,28,0.0 +11676,16,17.45,38,0.0 +11676,42,14,49,0.0 +11676,3,10,11,0.0 +11676,40,18.4,19,0.0 +11676,72,34.8,15,0.0 +11676,27,43.9,48,0.0 +11676,25,14,34,0.0 +11676,5,21.35,9,0.0 +11676,4,22,21,0.0 +11676,58,13.25,15,0.0 +11676,2,19,31,0.0 +11676,9,97,5,0.0 +11676,10,31,31,0.0 +11676,41,9.65,8,0.0 +11676,70,15,37,0.0 +11676,76,18,36,0.0 +11677,28,45.6,6,0.0 +11677,23,9,49,0.0 +11677,71,21.5,35,0.0 +11677,34,14,43,0.0 +11677,57,19.5,23,0.0 +11677,65,21.05,16,0.0 +11677,4,22,8,0.0 +11677,25,14,43,0.0 +11677,16,17.45,34,0.0 +11677,46,12,37,0.0 +11677,75,7.75,8,0.0 +11677,77,13,4,0.0 +11677,20,81,24,0.0 +11677,70,15,12,0.0 +11677,43,46,21,0.0 +11677,52,7,43,0.0 +11677,15,15.5,45,0.0 +11677,33,2.5,24,0.0 +11677,49,20,46,0.0 +11677,76,18,20,0.0 +11677,73,15,39,0.0 +11677,30,25.89,9,0.0 +11677,51,53,1,0.0 +11677,55,24,26,0.0 +11677,68,12.5,4,0.0 +11677,66,17,25,0.0 +11677,59,55,33,0.0 +11677,67,14,43,0.0 +11677,32,32,32,0.0 +11677,74,10,30,0.0 +11677,62,49.3,38,0.0 +11677,27,43.9,46,0.0 +11677,37,26,47,0.0 +11677,10,31,49,0.0 +11677,21,10,1,0.0 +11677,1,18,43,0.0 +11677,24,4.5,4,0.0 +11677,56,38,14,0.0 +11677,18,62.5,36,0.0 +11677,69,36,41,0.0 +11677,26,31.23,41,0.0 +11677,53,32.8,10,0.0 +11677,58,13.25,23,0.0 +11677,22,21,2,0.0 +11677,60,34,11,0.0 +11677,39,18,6,0.0 +11677,36,19,10,0.0 +11677,61,28.5,23,0.0 +11677,8,40,7,0.0 +11677,12,38,36,0.0 +11677,31,12.5,23,0.0 +11677,9,97,4,0.0 +11677,64,33.25,38,0.0 +11677,47,9.5,38,0.0 +11677,5,21.35,2,0.0 +11677,19,9.2,33,0.0 +11677,41,9.65,18,0.0 +11677,6,25,10,0.0 +11677,44,19.45,5,0.0 +11677,14,23.25,38,0.0 +11677,11,21,17,0.0 +11677,17,39,43,0.0 +11677,13,6,6,0.0 +11677,72,34.8,31,0.0 +11677,50,16.25,17,0.0 +11677,2,19,22,0.0 +11677,42,14,14,0.0 +11677,35,18,41,0.0 +11677,48,12.75,10,0.0 +11677,29,123.79,28,0.0 +11677,63,43.9,28,0.0 +11677,45,9.5,11,0.0 +11678,66,17,31,0.0 +11678,31,12.5,12,0.0 +11678,24,4.5,40,0.0 +11678,2,19,5,0.0 +11678,74,10,45,0.0 +11678,54,7.45,32,0.0 +11678,30,25.89,17,0.0 +11678,22,21,49,0.0 +11678,57,19.5,49,0.0 +11678,72,34.8,42,0.0 +11678,35,18,23,0.0 +11678,1,18,10,0.0 +11678,14,23.25,33,0.0 +11678,70,15,30,0.0 +11678,21,10,39,0.0 +11678,56,38,27,0.0 +11678,60,34,20,0.0 +11678,27,43.9,27,0.0 +11678,25,14,6,0.0 +11678,47,9.5,35,0.0 +11678,37,26,43,0.0 +11678,5,21.35,36,0.0 +11678,12,38,13,0.0 +11678,59,55,4,0.0 +11678,20,81,28,0.0 +11678,28,45.6,39,0.0 +11678,42,14,33,0.0 +11678,29,123.79,16,0.0 +11678,50,16.25,6,0.0 +11678,15,15.5,16,0.0 +11678,16,17.45,26,0.0 +11678,43,46,33,0.0 +11678,17,39,36,0.0 +11678,65,21.05,41,0.0 +11678,73,15,34,0.0 +11678,26,31.23,10,0.0 +11678,71,21.5,30,0.0 +11678,55,24,34,0.0 +11678,13,6,22,0.0 +11678,63,43.9,30,0.0 +11678,9,97,5,0.0 +11678,32,32,48,0.0 +11678,18,62.5,12,0.0 +11678,45,9.5,35,0.0 +11678,19,9.2,14,0.0 +11678,7,30,1,0.0 +11678,38,263.5,40,0.0 +11678,64,33.25,44,0.0 +11678,23,9,27,0.0 +11678,67,14,7,0.0 +11678,40,18.4,37,0.0 +11678,39,18,40,0.0 +11678,62,49.3,11,0.0 +11679,5,21.35,30,0.0 +11679,61,28.5,14,0.0 +11679,16,17.45,13,0.0 +11679,26,31.23,49,0.0 +11679,74,10,28,0.0 +11679,14,23.25,44,0.0 +11679,67,14,46,0.0 +11679,49,20,21,0.0 +11680,20,81,13,0.0 +11680,67,14,44,0.0 +11680,73,15,4,0.0 +11680,32,32,38,0.0 +11680,43,46,25,0.0 +11680,56,38,25,0.0 +11680,27,43.9,24,0.0 +11680,65,21.05,2,0.0 +11680,36,19,25,0.0 +11680,26,31.23,44,0.0 +11680,21,10,22,0.0 +11680,53,32.8,42,0.0 +11680,38,263.5,37,0.0 +11680,75,7.75,19,0.0 +11680,6,25,26,0.0 +11680,23,9,10,0.0 +11680,2,19,28,0.0 +11680,72,34.8,40,0.0 +11680,49,20,49,0.0 +11680,16,17.45,38,0.0 +11680,64,33.25,3,0.0 +11680,61,28.5,12,0.0 +11680,15,15.5,41,0.0 +11680,28,45.6,16,0.0 +11680,24,4.5,42,0.0 +11680,13,6,19,0.0 +11680,34,14,46,0.0 +11680,3,10,28,0.0 +11680,52,7,17,0.0 +11680,63,43.9,27,0.0 +11680,37,26,48,0.0 +11680,4,22,28,0.0 +11680,30,25.89,27,0.0 +11680,58,13.25,37,0.0 +11680,39,18,16,0.0 +11680,44,19.45,18,0.0 +11680,77,13,10,0.0 +11681,14,23.25,3,0.0 +11681,57,19.5,4,0.0 +11681,76,18,10,0.0 +11681,37,26,6,0.0 +11681,60,34,6,0.0 +11681,67,14,50,0.0 +11681,34,14,24,0.0 +11681,71,21.5,30,0.0 +11681,29,123.79,28,0.0 +11681,64,33.25,38,0.0 +11681,31,12.5,42,0.0 +11681,12,38,34,0.0 +11681,77,13,32,0.0 +11681,13,6,12,0.0 +11681,30,25.89,44,0.0 +11681,16,17.45,4,0.0 +11681,44,19.45,9,0.0 +11681,1,18,19,0.0 +11681,40,18.4,46,0.0 +11681,45,9.5,3,0.0 +11681,4,22,47,0.0 +11681,22,21,26,0.0 +11681,6,25,21,0.0 +11681,20,81,47,0.0 +11681,33,2.5,35,0.0 +11681,38,263.5,2,0.0 +11681,19,9.2,33,0.0 +11681,62,49.3,32,0.0 +11681,66,17,35,0.0 +11681,46,12,48,0.0 +11681,47,9.5,17,0.0 +11681,24,4.5,10,0.0 +11681,42,14,8,0.0 +11681,11,21,40,0.0 +11681,53,32.8,33,0.0 +11681,69,36,35,0.0 +11681,17,39,21,0.0 +11681,68,12.5,30,0.0 +11681,41,9.65,18,0.0 +11681,10,31,50,0.0 +11681,59,55,25,0.0 +11681,32,32,15,0.0 +11681,23,9,8,0.0 +11681,49,20,45,0.0 +11681,51,53,21,0.0 +11681,2,19,43,0.0 +11681,26,31.23,48,0.0 +11681,50,16.25,29,0.0 +11681,48,12.75,37,0.0 +11681,43,46,32,0.0 +11681,25,14,27,0.0 +11681,36,19,8,0.0 +11681,61,28.5,32,0.0 +11681,70,15,41,0.0 +11681,52,7,5,0.0 +11681,55,24,14,0.0 +11681,9,97,8,0.0 +11681,72,34.8,29,0.0 +11681,58,13.25,39,0.0 +11681,8,40,48,0.0 +11681,39,18,27,0.0 +11681,54,7.45,48,0.0 +11681,27,43.9,38,0.0 +11681,56,38,37,0.0 +11681,75,7.75,39,0.0 +11681,3,10,33,0.0 +11681,73,15,23,0.0 +11681,7,30,47,0.0 +11681,18,62.5,1,0.0 +11681,63,43.9,25,0.0 +11681,21,10,29,0.0 +11681,35,18,43,0.0 +11681,15,15.5,37,0.0 +11681,5,21.35,15,0.0 +11681,74,10,45,0.0 +11681,28,45.6,37,0.0 +11681,65,21.05,18,0.0 +11682,76,18,14,0.0 +11682,43,46,46,0.0 +11682,54,7.45,32,0.0 +11682,51,53,19,0.0 +11682,73,15,16,0.0 +11682,2,19,28,0.0 +11682,10,31,39,0.0 +11682,27,43.9,21,0.0 +11682,37,26,12,0.0 +11682,22,21,41,0.0 +11682,16,17.45,30,0.0 +11682,1,18,24,0.0 +11682,35,18,41,0.0 +11682,41,9.65,32,0.0 +11682,24,4.5,29,0.0 +11682,5,21.35,37,0.0 +11682,70,15,3,0.0 +11682,31,12.5,17,0.0 +11682,30,25.89,25,0.0 +11682,26,31.23,39,0.0 +11682,3,10,39,0.0 +11682,36,19,29,0.0 +11682,47,9.5,43,0.0 +11682,61,28.5,30,0.0 +11682,12,38,18,0.0 +11682,74,10,35,0.0 +11682,69,36,20,0.0 +11682,55,24,5,0.0 +11682,9,97,5,0.0 +11682,6,25,2,0.0 +11682,33,2.5,21,0.0 +11682,20,81,49,0.0 +11682,19,9.2,41,0.0 +11682,40,18.4,17,0.0 +11682,75,7.75,48,0.0 +11682,60,34,49,0.0 +11682,13,6,37,0.0 +11682,14,23.25,23,0.0 +11682,39,18,4,0.0 +11682,44,19.45,21,0.0 +11682,67,14,39,0.0 +11682,56,38,39,0.0 +11682,7,30,33,0.0 +11682,4,22,31,0.0 +11682,34,14,49,0.0 +11682,23,9,46,0.0 +11682,58,13.25,20,0.0 +11682,65,21.05,1,0.0 +11682,38,263.5,39,0.0 +11682,11,21,40,0.0 +11682,15,15.5,28,0.0 +11682,64,33.25,38,0.0 +11682,46,12,22,0.0 +11682,72,34.8,39,0.0 +11682,8,40,36,0.0 +11682,50,16.25,34,0.0 +11682,77,13,21,0.0 +11682,17,39,16,0.0 +11682,71,21.5,28,0.0 +11682,59,55,14,0.0 +11682,68,12.5,26,0.0 +11682,57,19.5,43,0.0 +11682,52,7,50,0.0 +11682,49,20,49,0.0 +11682,29,123.79,20,0.0 +11682,45,9.5,3,0.0 +11682,48,12.75,19,0.0 +11682,63,43.9,29,0.0 +11682,25,14,11,0.0 +11682,62,49.3,27,0.0 +11682,42,14,10,0.0 +11682,21,10,29,0.0 +11682,66,17,22,0.0 +11682,18,62.5,3,0.0 +11682,28,45.6,14,0.0 +11682,53,32.8,1,0.0 +11682,32,32,37,0.0 +11683,40,18.4,33,0.0 +11683,73,15,40,0.0 +11683,55,24,29,0.0 +11683,28,45.6,29,0.0 +11683,70,15,32,0.0 +11683,54,7.45,21,0.0 +11683,44,19.45,2,0.0 +11683,39,18,27,0.0 +11683,6,25,11,0.0 +11683,75,7.75,45,0.0 +11683,52,7,32,0.0 +11683,77,13,12,0.0 +11683,41,9.65,32,0.0 +11683,37,26,4,0.0 +11683,50,16.25,5,0.0 +11683,27,43.9,50,0.0 +11683,29,123.79,34,0.0 +11683,2,19,3,0.0 +11683,36,19,12,0.0 +11683,20,81,4,0.0 +11683,62,49.3,20,0.0 +11683,53,32.8,11,0.0 +11683,59,55,39,0.0 +11683,64,33.25,46,0.0 +11683,43,46,41,0.0 +11683,19,9.2,46,0.0 +11683,74,10,49,0.0 +11683,30,25.89,46,0.0 +11683,23,9,48,0.0 +11683,32,32,35,0.0 +11683,65,21.05,42,0.0 +11683,14,23.25,17,0.0 +11683,1,18,41,0.0 +11683,63,43.9,16,0.0 +11683,9,97,10,0.0 +11683,38,263.5,45,0.0 +11683,48,12.75,32,0.0 +11683,56,38,4,0.0 +11683,33,2.5,42,0.0 +11683,10,31,12,0.0 +11683,8,40,33,0.0 +11683,57,19.5,8,0.0 +11683,7,30,25,0.0 +11683,66,17,23,0.0 +11683,61,28.5,39,0.0 +11683,22,21,6,0.0 +11683,47,9.5,7,0.0 +11683,51,53,1,0.0 +11683,46,12,13,0.0 +11683,69,36,43,0.0 +11683,31,12.5,13,0.0 +11683,68,12.5,41,0.0 +11683,45,9.5,12,0.0 +11683,5,21.35,1,0.0 +11683,16,17.45,24,0.0 +11683,17,39,3,0.0 +11683,35,18,49,0.0 +11683,4,22,49,0.0 +11683,25,14,44,0.0 +11684,11,21,14,0.0 +11684,49,20,35,0.0 +11684,54,7.45,40,0.0 +11684,46,12,43,0.0 +11684,67,14,19,0.0 +11684,10,31,36,0.0 +11684,32,32,24,0.0 +11684,9,97,7,0.0 +11684,19,9.2,39,0.0 +11684,72,34.8,47,0.0 +11684,26,31.23,38,0.0 +11684,64,33.25,19,0.0 +11684,57,19.5,12,0.0 +11684,42,14,2,0.0 +11684,60,34,46,0.0 +11684,35,18,11,0.0 +11684,59,55,49,0.0 +11684,63,43.9,23,0.0 +11684,51,53,48,0.0 +11684,38,263.5,9,0.0 +11684,41,9.65,5,0.0 +11684,33,2.5,18,0.0 +11684,2,19,17,0.0 +11684,22,21,36,0.0 +11684,3,10,30,0.0 +11684,61,28.5,19,0.0 +11684,45,9.5,23,0.0 +11684,76,18,15,0.0 +11684,7,30,42,0.0 +11684,21,10,3,0.0 +11684,56,38,32,0.0 +11684,29,123.79,19,0.0 +11684,23,9,41,0.0 +11684,5,21.35,16,0.0 +11684,52,7,14,0.0 +11684,16,17.45,5,0.0 +11684,53,32.8,23,0.0 +11684,47,9.5,38,0.0 +11684,75,7.75,33,0.0 +11685,23,9,44,0.0 +11685,13,6,46,0.0 +11685,34,14,26,0.0 +11685,46,12,23,0.0 +11685,6,25,34,0.0 +11685,3,10,25,0.0 +11685,54,7.45,38,0.0 +11686,74,10,16,0.0 +11686,72,34.8,22,0.0 +11686,30,25.89,47,0.0 +11686,65,21.05,12,0.0 +11686,23,9,19,0.0 +11686,4,22,42,0.0 +11686,73,15,15,0.0 +11686,34,14,49,0.0 +11686,45,9.5,42,0.0 +11686,56,38,2,0.0 +11686,43,46,19,0.0 +11686,25,14,34,0.0 +11686,47,9.5,6,0.0 +11686,15,15.5,23,0.0 +11686,12,38,34,0.0 +11686,71,21.5,29,0.0 +11686,67,14,41,0.0 +11686,70,15,28,0.0 +11686,2,19,10,0.0 +11686,16,17.45,14,0.0 +11686,41,9.65,42,0.0 +11686,6,25,46,0.0 +11686,26,31.23,14,0.0 +11686,37,26,47,0.0 +11686,75,7.75,23,0.0 +11686,39,18,21,0.0 +11686,77,13,41,0.0 +11686,38,263.5,34,0.0 +11687,8,40,27,0.0 +11687,6,25,13,0.0 +11687,68,12.5,38,0.0 +11687,69,36,15,0.0 +11687,16,17.45,22,0.0 +11687,54,7.45,18,0.0 +11687,11,21,17,0.0 +11687,67,14,14,0.0 +11687,63,43.9,6,0.0 +11687,42,14,21,0.0 +11687,43,46,36,0.0 +11687,75,7.75,32,0.0 +11687,48,12.75,8,0.0 +11687,27,43.9,8,0.0 +11687,26,31.23,3,0.0 +11687,24,4.5,35,0.0 +11687,25,14,6,0.0 +11687,1,18,7,0.0 +11687,50,16.25,33,0.0 +11687,52,7,33,0.0 +11687,5,21.35,40,0.0 +11687,30,25.89,43,0.0 +11687,31,12.5,41,0.0 +11687,64,33.25,20,0.0 +11687,62,49.3,48,0.0 +11687,44,19.45,15,0.0 +11687,22,21,16,0.0 +11687,29,123.79,22,0.0 +11687,41,9.65,3,0.0 +11687,21,10,6,0.0 +11687,40,18.4,7,0.0 +11687,19,9.2,12,0.0 +11687,23,9,5,0.0 +11687,35,18,8,0.0 +11687,14,23.25,9,0.0 +11687,49,20,15,0.0 +11687,66,17,29,0.0 +11687,10,31,20,0.0 +11687,17,39,19,0.0 +11687,7,30,16,0.0 +11687,73,15,36,0.0 +11687,33,2.5,11,0.0 +11688,10,31,20,0.0 +11688,41,9.65,3,0.0 +11688,49,20,16,0.0 +11688,46,12,4,0.0 +11688,59,55,35,0.0 +11688,26,31.23,17,0.0 +11688,28,45.6,39,0.0 +11688,48,12.75,32,0.0 +11688,39,18,23,0.0 +11688,51,53,27,0.0 +11688,72,34.8,18,0.0 +11688,34,14,50,0.0 +11688,55,24,27,0.0 +11688,22,21,19,0.0 +11688,36,19,27,0.0 +11688,66,17,44,0.0 +11688,35,18,45,0.0 +11688,76,18,33,0.0 +11688,73,15,28,0.0 +11688,45,9.5,14,0.0 +11688,31,12.5,28,0.0 +11688,30,25.89,20,0.0 +11688,29,123.79,16,0.0 +11688,14,23.25,13,0.0 +11688,18,62.5,14,0.0 +11688,60,34,18,0.0 +11688,65,21.05,30,0.0 +11688,3,10,42,0.0 +11688,11,21,50,0.0 +11688,53,32.8,45,0.0 +11688,21,10,38,0.0 +11688,16,17.45,36,0.0 +11688,56,38,38,0.0 +11688,47,9.5,34,0.0 +11688,75,7.75,29,0.0 +11688,52,7,9,0.0 +11688,8,40,15,0.0 +11688,4,22,42,0.0 +11688,25,14,13,0.0 +11688,27,43.9,15,0.0 +11688,9,97,14,0.0 +11688,64,33.25,38,0.0 +11688,7,30,19,0.0 +11688,6,25,16,0.0 +11688,61,28.5,15,0.0 +11688,68,12.5,22,0.0 +11688,77,13,34,0.0 +11688,38,263.5,21,0.0 +11688,2,19,49,0.0 +11688,50,16.25,48,0.0 +11688,15,15.5,6,0.0 +11688,40,18.4,27,0.0 +11688,19,9.2,12,0.0 +11688,42,14,47,0.0 +11688,43,46,1,0.0 +11688,57,19.5,8,0.0 +11688,63,43.9,49,0.0 +11688,70,15,12,0.0 +11688,20,81,10,0.0 +11689,6,25,32,0.0 +11689,66,17,8,0.0 +11689,56,38,30,0.0 +11689,74,10,27,0.0 +11689,72,34.8,9,0.0 +11689,8,40,27,0.0 +11689,75,7.75,19,0.0 +11689,76,18,17,0.0 +11689,17,39,29,0.0 +11689,33,2.5,23,0.0 +11689,10,31,47,0.0 +11689,20,81,3,0.0 +11689,21,10,39,0.0 +11689,60,34,5,0.0 +11689,50,16.25,3,0.0 +11689,28,45.6,50,0.0 +11689,46,12,48,0.0 +11689,3,10,24,0.0 +11689,11,21,17,0.0 +11689,31,12.5,47,0.0 +11689,4,22,8,0.0 +11689,29,123.79,4,0.0 +11689,61,28.5,31,0.0 +11689,71,21.5,34,0.0 +11689,27,43.9,14,0.0 +11689,63,43.9,4,0.0 +11689,58,13.25,32,0.0 +11689,18,62.5,35,0.0 +11689,41,9.65,35,0.0 +11689,14,23.25,27,0.0 +11689,22,21,24,0.0 +11689,55,24,41,0.0 +11689,7,30,5,0.0 +11689,42,14,36,0.0 +11689,25,14,33,0.0 +11689,57,19.5,36,0.0 +11689,2,19,33,0.0 +11689,62,49.3,7,0.0 +11689,34,14,14,0.0 +11689,52,7,40,0.0 +11689,26,31.23,41,0.0 +11689,51,53,32,0.0 +11689,59,55,29,0.0 +11689,48,12.75,45,0.0 +11689,43,46,33,0.0 +11689,36,19,37,0.0 +11689,1,18,29,0.0 +11689,64,33.25,13,0.0 +11689,49,20,35,0.0 +11689,5,21.35,3,0.0 +11689,73,15,44,0.0 +11689,15,15.5,12,0.0 +11689,12,38,45,0.0 +11689,54,7.45,8,0.0 +11689,13,6,33,0.0 +11689,69,36,2,0.0 +11689,16,17.45,27,0.0 +11689,45,9.5,50,0.0 +11689,19,9.2,21,0.0 +11689,9,97,36,0.0 +11689,37,26,1,0.0 +11689,68,12.5,44,0.0 +11689,23,9,28,0.0 +11689,32,32,2,0.0 +11689,53,32.8,35,0.0 +11689,35,18,44,0.0 +11689,47,9.5,18,0.0 +11689,24,4.5,38,0.0 +11689,65,21.05,7,0.0 +11689,77,13,10,0.0 +11689,38,263.5,15,0.0 +11689,70,15,28,0.0 +11689,39,18,1,0.0 +11689,67,14,46,0.0 +11689,40,18.4,4,0.0 +11690,69,36,42,0.0 +11690,27,43.9,24,0.0 +11690,34,14,15,0.0 +11690,65,21.05,23,0.0 +11690,50,16.25,5,0.0 +11690,51,53,43,0.0 +11690,41,9.65,39,0.0 +11690,8,40,5,0.0 +11690,70,15,43,0.0 +11690,76,18,15,0.0 +11690,18,62.5,4,0.0 +11690,22,21,14,0.0 +11690,74,10,33,0.0 +11690,4,22,47,0.0 +11690,49,20,49,0.0 +11690,73,15,39,0.0 +11690,35,18,8,0.0 +11690,66,17,31,0.0 +11690,61,28.5,13,0.0 +11690,12,38,44,0.0 +11690,10,31,45,0.0 +11690,17,39,15,0.0 +11690,47,9.5,47,0.0 +11691,58,13.25,30,0.0 +11691,3,10,25,0.0 +11691,40,18.4,50,0.0 +11691,56,38,14,0.0 +11691,59,55,7,0.0 +11691,72,34.8,50,0.0 +11691,21,10,46,0.0 +11691,39,18,20,0.0 +11691,4,22,39,0.0 +11691,77,13,42,0.0 +11691,17,39,11,0.0 +11691,31,12.5,15,0.0 +11691,70,15,47,0.0 +11691,54,7.45,6,0.0 +11691,10,31,16,0.0 +11691,69,36,19,0.0 +11691,64,33.25,29,0.0 +11691,46,12,4,0.0 +11691,73,15,24,0.0 +11691,52,7,32,0.0 +11691,33,2.5,23,0.0 +11691,63,43.9,5,0.0 +11691,48,12.75,39,0.0 +11691,75,7.75,20,0.0 +11691,45,9.5,38,0.0 +11691,32,32,16,0.0 +11691,42,14,3,0.0 +11691,5,21.35,1,0.0 +11691,74,10,30,0.0 +11691,24,4.5,32,0.0 +11691,60,34,34,0.0 +11691,68,12.5,46,0.0 +11691,23,9,6,0.0 +11691,19,9.2,39,0.0 +11691,76,18,20,0.0 +11691,22,21,34,0.0 +11691,26,31.23,12,0.0 +11691,61,28.5,20,0.0 +11691,2,19,32,0.0 +11691,67,14,2,0.0 +11692,37,26,10,0.0 +11692,18,62.5,7,0.0 +11692,76,18,50,0.0 +11692,55,24,25,0.0 +11692,61,28.5,1,0.0 +11692,12,38,42,0.0 +11692,39,18,13,0.0 +11692,66,17,40,0.0 +11692,9,97,22,0.0 +11692,29,123.79,35,0.0 +11692,26,31.23,1,0.0 +11692,71,21.5,23,0.0 +11692,43,46,33,0.0 +11692,19,9.2,28,0.0 +11692,57,19.5,23,0.0 +11692,11,21,30,0.0 +11692,41,9.65,4,0.0 +11692,23,9,15,0.0 +11692,74,10,31,0.0 +11692,15,15.5,32,0.0 +11692,40,18.4,24,0.0 +11692,17,39,42,0.0 +11692,72,34.8,2,0.0 +11692,42,14,26,0.0 +11692,21,10,33,0.0 +11692,10,31,16,0.0 +11692,68,12.5,44,0.0 +11692,48,12.75,13,0.0 +11692,13,6,20,0.0 +11692,25,14,17,0.0 +11692,28,45.6,47,0.0 +11692,47,9.5,4,0.0 +11692,63,43.9,49,0.0 +11692,16,17.45,46,0.0 +11692,50,16.25,18,0.0 +11692,1,18,27,0.0 +11692,64,33.25,25,0.0 +11692,33,2.5,24,0.0 +11692,31,12.5,8,0.0 +11692,2,19,13,0.0 +11692,65,21.05,14,0.0 +11692,32,32,22,0.0 +11692,49,20,42,0.0 +11692,30,25.89,50,0.0 +11692,56,38,26,0.0 +11692,70,15,45,0.0 +11692,22,21,43,0.0 +11692,14,23.25,13,0.0 +11692,4,22,9,0.0 +11692,34,14,42,0.0 +11692,54,7.45,38,0.0 +11693,31,12.5,32,0.0 +11693,69,36,43,0.0 +11693,29,123.79,25,0.0 +11693,77,13,50,0.0 +11693,17,39,28,0.0 +11693,72,34.8,2,0.0 +11693,8,40,17,0.0 +11693,14,23.25,42,0.0 +11693,38,263.5,19,0.0 +11693,75,7.75,24,0.0 +11693,64,33.25,8,0.0 +11693,20,81,17,0.0 +11693,1,18,28,0.0 +11693,73,15,7,0.0 +11693,70,15,13,0.0 +11693,12,38,5,0.0 +11693,54,7.45,30,0.0 +11693,66,17,24,0.0 +11693,24,4.5,23,0.0 +11693,74,10,41,0.0 +11693,61,28.5,1,0.0 +11693,6,25,8,0.0 +11693,7,30,14,0.0 +11693,55,24,16,0.0 +11693,13,6,49,0.0 +11693,53,32.8,4,0.0 +11693,4,22,30,0.0 +11693,52,7,28,0.0 +11693,65,21.05,13,0.0 +11693,58,13.25,33,0.0 +11693,23,9,30,0.0 +11693,26,31.23,15,0.0 +11693,47,9.5,26,0.0 +11693,46,12,34,0.0 +11693,27,43.9,24,0.0 +11693,18,62.5,39,0.0 +11693,48,12.75,19,0.0 +11693,57,19.5,30,0.0 +11693,36,19,7,0.0 +11693,33,2.5,11,0.0 +11693,15,15.5,27,0.0 +11693,49,20,26,0.0 +11693,42,14,18,0.0 +11693,28,45.6,48,0.0 +11693,19,9.2,13,0.0 +11693,67,14,22,0.0 +11693,25,14,32,0.0 +11693,43,46,26,0.0 +11693,34,14,21,0.0 +11693,32,32,38,0.0 +11694,3,10,5,0.0 +11694,70,15,40,0.0 +11694,9,97,26,0.0 +11694,59,55,10,0.0 +11694,72,34.8,39,0.0 +11694,58,13.25,49,0.0 +11694,8,40,38,0.0 +11694,65,21.05,2,0.0 +11694,28,45.6,37,0.0 +11694,22,21,42,0.0 +11694,66,17,23,0.0 +11694,69,36,21,0.0 +11694,62,49.3,7,0.0 +11694,24,4.5,23,0.0 +11694,53,32.8,22,0.0 +11694,67,14,19,0.0 +11694,41,9.65,28,0.0 +11694,40,18.4,38,0.0 +11694,50,16.25,49,0.0 +11694,64,33.25,19,0.0 +11694,33,2.5,24,0.0 +11694,52,7,43,0.0 +11694,14,23.25,3,0.0 +11694,11,21,37,0.0 +11694,54,7.45,32,0.0 +11694,39,18,16,0.0 +11694,77,13,30,0.0 +11694,27,43.9,9,0.0 +11694,7,30,15,0.0 +11694,45,9.5,14,0.0 +11694,57,19.5,46,0.0 +11694,43,46,22,0.0 +11695,53,32.8,35,0.0 +11695,39,18,42,0.0 +11695,23,9,49,0.0 +11695,69,36,47,0.0 +11695,16,17.45,23,0.0 +11695,40,18.4,10,0.0 +11695,73,15,39,0.0 +11695,57,19.5,43,0.0 +11695,61,28.5,26,0.0 +11695,7,30,50,0.0 +11695,30,25.89,47,0.0 +11695,37,26,8,0.0 +11695,26,31.23,8,0.0 +11695,29,123.79,14,0.0 +11696,14,23.25,35,0.0 +11696,16,17.45,12,0.0 +11696,11,21,19,0.0 +11696,23,9,38,0.0 +11696,7,30,7,0.0 +11696,47,9.5,7,0.0 +11696,56,38,50,0.0 +11696,21,10,27,0.0 +11696,25,14,11,0.0 +11696,37,26,22,0.0 +11696,71,21.5,34,0.0 +11696,40,18.4,15,0.0 +11696,31,12.5,18,0.0 +11696,53,32.8,4,0.0 +11696,54,7.45,20,0.0 +11696,17,39,10,0.0 +11696,22,21,44,0.0 +11696,2,19,23,0.0 +11696,65,21.05,10,0.0 +11696,69,36,34,0.0 +11696,42,14,1,0.0 +11696,29,123.79,50,0.0 +11696,57,19.5,22,0.0 +11696,5,21.35,21,0.0 +11696,10,31,42,0.0 +11696,8,40,43,0.0 +11696,34,14,24,0.0 +11696,50,16.25,18,0.0 +11696,64,33.25,17,0.0 +11696,58,13.25,36,0.0 +11696,4,22,13,0.0 +11696,60,34,37,0.0 +11696,24,4.5,25,0.0 +11696,26,31.23,18,0.0 +11696,73,15,42,0.0 +11696,61,28.5,7,0.0 +11696,70,15,8,0.0 +11696,19,9.2,34,0.0 +11696,77,13,11,0.0 +11696,12,38,36,0.0 +11696,32,32,37,0.0 +11696,1,18,6,0.0 +11696,35,18,1,0.0 +11696,9,97,19,0.0 +11696,6,25,8,0.0 +11696,75,7.75,39,0.0 +11696,68,12.5,42,0.0 +11696,27,43.9,15,0.0 +11696,43,46,49,0.0 +11696,72,34.8,35,0.0 +11696,52,7,8,0.0 +11696,28,45.6,15,0.0 +11696,33,2.5,14,0.0 +11696,15,15.5,45,0.0 +11696,74,10,49,0.0 +11696,18,62.5,34,0.0 +11696,63,43.9,43,0.0 +11696,45,9.5,25,0.0 +11696,39,18,24,0.0 +11696,38,263.5,44,0.0 +11696,13,6,48,0.0 +11696,49,20,27,0.0 +11696,55,24,29,0.0 +11696,3,10,41,0.0 +11696,62,49.3,9,0.0 +11696,36,19,10,0.0 +11696,76,18,50,0.0 +11696,46,12,19,0.0 +11696,67,14,18,0.0 +11696,44,19.45,48,0.0 +11696,59,55,43,0.0 +11696,20,81,4,0.0 +11696,41,9.65,3,0.0 +11696,66,17,46,0.0 +11696,30,25.89,19,0.0 +11697,13,6,33,0.0 +11697,11,21,42,0.0 +11697,12,38,49,0.0 +11697,76,18,17,0.0 +11697,74,10,17,0.0 +11697,1,18,10,0.0 +11697,75,7.75,5,0.0 +11697,35,18,7,0.0 +11697,36,19,3,0.0 +11697,29,123.79,43,0.0 +11698,75,7.75,7,0.0 +11698,58,13.25,31,0.0 +11698,57,19.5,35,0.0 +11698,11,21,11,0.0 +11698,71,21.5,37,0.0 +11698,12,38,46,0.0 +11698,61,28.5,13,0.0 +11698,53,32.8,11,0.0 +11698,69,36,31,0.0 +11698,21,10,16,0.0 +11698,19,9.2,34,0.0 +11698,76,18,35,0.0 +11698,30,25.89,4,0.0 +11698,35,18,9,0.0 +11698,26,31.23,13,0.0 +11698,22,21,13,0.0 +11698,28,45.6,44,0.0 +11698,66,17,50,0.0 +11698,55,24,6,0.0 +11698,48,12.75,8,0.0 +11698,29,123.79,1,0.0 +11699,52,7,34,0.0 +11699,4,22,10,0.0 +11699,47,9.5,27,0.0 +11699,53,32.8,5,0.0 +11699,7,30,13,0.0 +11699,17,39,45,0.0 +11699,29,123.79,7,0.0 +11699,64,33.25,27,0.0 +11699,34,14,34,0.0 +11699,22,21,2,0.0 +11699,25,14,35,0.0 +11699,1,18,14,0.0 +11699,37,26,24,0.0 +11699,74,10,28,0.0 +11699,69,36,6,0.0 +11699,23,9,8,0.0 +11699,3,10,25,0.0 +11699,28,45.6,38,0.0 +11699,55,24,43,0.0 +11699,38,263.5,24,0.0 +11699,5,21.35,39,0.0 +11699,11,21,22,0.0 +11699,46,12,31,0.0 +11699,20,81,18,0.0 +11699,62,49.3,20,0.0 +11699,77,13,12,0.0 +11699,65,21.05,14,0.0 +11699,66,17,31,0.0 +11699,27,43.9,1,0.0 +11699,63,43.9,19,0.0 +11699,51,53,14,0.0 +11699,50,16.25,20,0.0 +11699,39,18,19,0.0 +11699,49,20,17,0.0 +11699,61,28.5,12,0.0 +11699,54,7.45,20,0.0 +11699,41,9.65,50,0.0 +11699,13,6,37,0.0 +11699,76,18,32,0.0 +11699,33,2.5,36,0.0 +11700,70,15,23,0.0 +11700,75,7.75,43,0.0 +11700,50,16.25,20,0.0 +11700,37,26,41,0.0 +11700,59,55,26,0.0 +11700,12,38,24,0.0 +11700,71,21.5,9,0.0 +11700,15,15.5,28,0.0 +11700,73,15,27,0.0 +11700,41,9.65,5,0.0 +11700,67,14,50,0.0 +11700,6,25,42,0.0 +11700,27,43.9,25,0.0 +11700,51,53,24,0.0 +11700,47,9.5,8,0.0 +11700,2,19,7,0.0 +11700,36,19,16,0.0 +11700,18,62.5,16,0.0 +11700,44,19.45,8,0.0 +11700,77,13,41,0.0 +11700,48,12.75,43,0.0 +11700,45,9.5,8,0.0 +11700,54,7.45,18,0.0 +11700,21,10,28,0.0 +11700,29,123.79,45,0.0 +11700,52,7,13,0.0 +11700,14,23.25,46,0.0 +11700,35,18,26,0.0 +11700,30,25.89,31,0.0 +11700,23,9,2,0.0 +11700,38,263.5,37,0.0 +11700,56,38,9,0.0 +11701,69,36,11,0.0 +11701,22,21,14,0.0 +11701,62,49.3,37,0.0 +11701,52,7,30,0.0 +11701,7,30,50,0.0 +11701,14,23.25,26,0.0 +11701,57,19.5,41,0.0 +11701,43,46,22,0.0 +11701,38,263.5,11,0.0 +11701,77,13,11,0.0 +11701,4,22,12,0.0 +11701,26,31.23,8,0.0 +11701,53,32.8,24,0.0 +11701,73,15,23,0.0 +11701,65,21.05,33,0.0 +11701,70,15,48,0.0 +11701,8,40,25,0.0 +11701,6,25,46,0.0 +11701,51,53,17,0.0 +11701,59,55,14,0.0 +11701,9,97,13,0.0 +11701,34,14,30,0.0 +11701,30,25.89,17,0.0 +11701,17,39,16,0.0 +11701,5,21.35,19,0.0 +11701,3,10,36,0.0 +11701,47,9.5,7,0.0 +11701,13,6,45,0.0 +11701,39,18,41,0.0 +11701,32,32,2,0.0 +11701,19,9.2,41,0.0 +11701,31,12.5,10,0.0 +11701,24,4.5,14,0.0 +11701,18,62.5,32,0.0 +11701,40,18.4,43,0.0 +11701,23,9,1,0.0 +11701,33,2.5,18,0.0 +11701,61,28.5,26,0.0 +11701,28,45.6,26,0.0 +11701,71,21.5,25,0.0 +11701,2,19,12,0.0 +11701,10,31,8,0.0 +11701,58,13.25,7,0.0 +11701,20,81,39,0.0 +11701,42,14,18,0.0 +11701,46,12,21,0.0 +11701,72,34.8,23,0.0 +11701,76,18,32,0.0 +11701,63,43.9,5,0.0 +11701,48,12.75,35,0.0 +11701,15,15.5,49,0.0 +11701,45,9.5,10,0.0 +11701,55,24,36,0.0 +11701,44,19.45,25,0.0 +11701,12,38,38,0.0 +11701,67,14,4,0.0 +11701,29,123.79,37,0.0 +11701,49,20,38,0.0 +11701,54,7.45,1,0.0 +11701,25,14,6,0.0 +11701,66,17,5,0.0 +11701,36,19,34,0.0 +11701,50,16.25,38,0.0 +11701,11,21,29,0.0 +11701,41,9.65,16,0.0 +11701,37,26,22,0.0 +11701,35,18,5,0.0 +11701,1,18,20,0.0 +11702,26,31.23,46,0.0 +11702,62,49.3,19,0.0 +11702,77,13,22,0.0 +11702,58,13.25,3,0.0 +11702,28,45.6,39,0.0 +11702,71,21.5,3,0.0 +11702,47,9.5,38,0.0 +11702,39,18,20,0.0 +11702,74,10,10,0.0 +11702,46,12,18,0.0 +11702,10,31,43,0.0 +11702,75,7.75,48,0.0 +11702,19,9.2,24,0.0 +11702,57,19.5,9,0.0 +11702,14,23.25,40,0.0 +11702,35,18,22,0.0 +11702,15,15.5,35,0.0 +11702,49,20,9,0.0 +11702,27,43.9,14,0.0 +11703,15,15.5,2,0.0 +11703,18,62.5,24,0.0 +11703,61,28.5,19,0.0 +11703,65,21.05,34,0.0 +11703,42,14,32,0.0 +11703,60,34,14,0.0 +11703,46,12,6,0.0 +11703,19,9.2,49,0.0 +11703,66,17,12,0.0 +11703,77,13,6,0.0 +11703,34,14,21,0.0 +11703,54,7.45,16,0.0 +11703,69,36,49,0.0 +11703,23,9,9,0.0 +11703,75,7.75,41,0.0 +11703,25,14,7,0.0 +11703,26,31.23,2,0.0 +11703,50,16.25,41,0.0 +11703,76,18,11,0.0 +11703,59,55,45,0.0 +11703,52,7,4,0.0 +11703,37,26,48,0.0 +11703,36,19,14,0.0 +11703,4,22,44,0.0 +11703,8,40,7,0.0 +11703,74,10,1,0.0 +11703,28,45.6,24,0.0 +11703,55,24,19,0.0 +11703,10,31,27,0.0 +11703,45,9.5,2,0.0 +11703,16,17.45,14,0.0 +11703,71,21.5,15,0.0 +11703,62,49.3,5,0.0 +11703,14,23.25,31,0.0 +11703,22,21,39,0.0 +11703,9,97,31,0.0 +11703,48,12.75,37,0.0 +11703,57,19.5,49,0.0 +11703,43,46,16,0.0 +11703,47,9.5,2,0.0 +11703,6,25,36,0.0 +11703,41,9.65,23,0.0 +11703,63,43.9,40,0.0 +11703,29,123.79,6,0.0 +11703,56,38,18,0.0 +11703,68,12.5,2,0.0 +11703,40,18.4,37,0.0 +11703,5,21.35,27,0.0 +11703,17,39,47,0.0 +11703,12,38,23,0.0 +11703,73,15,6,0.0 +11703,24,4.5,7,0.0 +11703,49,20,12,0.0 +11703,20,81,24,0.0 +11703,13,6,49,0.0 +11703,44,19.45,4,0.0 +11703,67,14,14,0.0 +11703,72,34.8,21,0.0 +11703,38,263.5,4,0.0 +11703,1,18,4,0.0 +11703,33,2.5,33,0.0 +11703,58,13.25,15,0.0 +11704,1,18,21,0.0 +11704,77,13,31,0.0 +11704,7,30,48,0.0 +11705,27,43.9,48,0.0 +11705,66,17,18,0.0 +11705,57,19.5,1,0.0 +11705,3,10,49,0.0 +11705,55,24,48,0.0 +11705,28,45.6,36,0.0 +11705,51,53,9,0.0 +11705,45,9.5,10,0.0 +11705,6,25,16,0.0 +11705,37,26,36,0.0 +11705,4,22,34,0.0 +11705,24,4.5,47,0.0 +11705,26,31.23,34,0.0 +11705,68,12.5,22,0.0 +11705,42,14,7,0.0 +11705,35,18,22,0.0 +11705,65,21.05,25,0.0 +11705,67,14,29,0.0 +11705,38,263.5,39,0.0 +11705,49,20,15,0.0 +11705,69,36,36,0.0 +11705,2,19,26,0.0 +11705,74,10,30,0.0 +11705,62,49.3,5,0.0 +11705,43,46,40,0.0 +11705,14,23.25,25,0.0 +11705,48,12.75,21,0.0 +11705,44,19.45,35,0.0 +11705,13,6,6,0.0 +11705,77,13,15,0.0 +11705,40,18.4,15,0.0 +11705,17,39,31,0.0 +11705,18,62.5,45,0.0 +11705,52,7,13,0.0 +11705,50,16.25,49,0.0 +11705,15,15.5,10,0.0 +11705,63,43.9,32,0.0 +11705,8,40,21,0.0 +11705,36,19,18,0.0 +11705,30,25.89,30,0.0 +11705,47,9.5,43,0.0 +11705,56,38,33,0.0 +11705,46,12,24,0.0 +11705,32,32,23,0.0 +11705,10,31,15,0.0 +11705,9,97,3,0.0 +11705,12,38,21,0.0 +11705,22,21,9,0.0 +11705,19,9.2,34,0.0 +11705,23,9,25,0.0 +11705,60,34,14,0.0 +11705,31,12.5,22,0.0 +11705,72,34.8,33,0.0 +11705,33,2.5,34,0.0 +11705,7,30,15,0.0 +11705,25,14,33,0.0 +11705,34,14,42,0.0 +11705,58,13.25,3,0.0 +11705,39,18,50,0.0 +11705,75,7.75,32,0.0 +11705,76,18,23,0.0 +11705,61,28.5,35,0.0 +11705,64,33.25,18,0.0 +11705,71,21.5,28,0.0 +11705,41,9.65,24,0.0 +11705,70,15,22,0.0 +11705,54,7.45,34,0.0 +11705,53,32.8,15,0.0 +11705,29,123.79,40,0.0 +11705,20,81,16,0.0 +11705,16,17.45,9,0.0 +11705,21,10,10,0.0 +11706,8,40,15,0.0 +11706,66,17,13,0.0 +11706,25,14,9,0.0 +11706,4,22,29,0.0 +11706,21,10,21,0.0 +11706,9,97,1,0.0 +11706,71,21.5,50,0.0 +11706,68,12.5,48,0.0 +11706,14,23.25,32,0.0 +11706,11,21,37,0.0 +11706,67,14,9,0.0 +11706,39,18,43,0.0 +11706,29,123.79,5,0.0 +11706,65,21.05,3,0.0 +11706,60,34,49,0.0 +11706,75,7.75,32,0.0 +11706,56,38,28,0.0 +11706,64,33.25,15,0.0 +11706,77,13,15,0.0 +11706,5,21.35,31,0.0 +11706,12,38,37,0.0 +11706,28,45.6,2,0.0 +11706,19,9.2,42,0.0 +11706,34,14,39,0.0 +11706,18,62.5,32,0.0 +11706,23,9,9,0.0 +11706,26,31.23,24,0.0 +11706,59,55,29,0.0 +11706,50,16.25,10,0.0 +11706,76,18,42,0.0 +11706,27,43.9,21,0.0 +11706,7,30,21,0.0 +11706,47,9.5,35,0.0 +11706,48,12.75,21,0.0 +11706,63,43.9,2,0.0 +11706,38,263.5,7,0.0 +11706,53,32.8,4,0.0 +11706,20,81,44,0.0 +11706,24,4.5,30,0.0 +11706,57,19.5,36,0.0 +11706,35,18,37,0.0 +11706,45,9.5,30,0.0 +11706,49,20,16,0.0 +11706,58,13.25,8,0.0 +11706,72,34.8,9,0.0 +11706,42,14,30,0.0 +11706,41,9.65,40,0.0 +11706,61,28.5,46,0.0 +11706,31,12.5,11,0.0 +11706,36,19,10,0.0 +11706,43,46,43,0.0 +11706,16,17.45,41,0.0 +11706,1,18,18,0.0 +11706,32,32,14,0.0 +11706,62,49.3,18,0.0 +11706,73,15,7,0.0 +11706,15,15.5,46,0.0 +11706,10,31,35,0.0 +11706,22,21,20,0.0 +11706,2,19,45,0.0 +11706,51,53,10,0.0 +11706,69,36,40,0.0 +11706,17,39,5,0.0 +11706,44,19.45,3,0.0 +11706,46,12,7,0.0 +11706,37,26,25,0.0 +11706,40,18.4,22,0.0 +11706,55,24,17,0.0 +11706,54,7.45,45,0.0 +11706,3,10,26,0.0 +11706,70,15,40,0.0 +11706,6,25,12,0.0 +11706,52,7,2,0.0 +11706,30,25.89,26,0.0 +11706,74,10,4,0.0 +11706,13,6,31,0.0 +11706,33,2.5,14,0.0 +11707,22,21,14,0.0 +11707,69,36,41,0.0 +11707,29,123.79,3,0.0 +11707,73,15,50,0.0 +11707,14,23.25,30,0.0 +11707,64,33.25,12,0.0 +11707,62,49.3,39,0.0 +11707,8,40,18,0.0 +11707,30,25.89,4,0.0 +11707,6,25,21,0.0 +11707,77,13,12,0.0 +11707,50,16.25,12,0.0 +11707,20,81,28,0.0 +11707,70,15,16,0.0 +11707,71,21.5,15,0.0 +11707,42,14,5,0.0 +11707,60,34,36,0.0 +11707,49,20,45,0.0 +11707,28,45.6,37,0.0 +11708,61,28.5,28,0.0 +11708,20,81,49,0.0 +11708,21,10,47,0.0 +11708,53,32.8,13,0.0 +11708,68,12.5,12,0.0 +11708,26,31.23,23,0.0 +11708,35,18,18,0.0 +11708,73,15,24,0.0 +11708,19,9.2,43,0.0 +11708,71,21.5,4,0.0 +11708,4,22,28,0.0 +11708,31,12.5,22,0.0 +11708,56,38,39,0.0 +11708,55,24,28,0.0 +11708,6,25,45,0.0 +11708,51,53,5,0.0 +11708,13,6,38,0.0 +11708,27,43.9,50,0.0 +11708,49,20,36,0.0 +11708,65,21.05,45,0.0 +11708,66,17,12,0.0 +11708,41,9.65,49,0.0 +11708,63,43.9,25,0.0 +11708,69,36,38,0.0 +11708,33,2.5,3,0.0 +11709,75,7.75,47,0.0 +11709,42,14,18,0.0 +11709,28,45.6,26,0.0 +11709,49,20,7,0.0 +11709,7,30,31,0.0 +11709,13,6,38,0.0 +11709,30,25.89,49,0.0 +11709,43,46,16,0.0 +11709,1,18,18,0.0 +11709,33,2.5,39,0.0 +11709,26,31.23,40,0.0 +11709,9,97,9,0.0 +11709,32,32,42,0.0 +11709,29,123.79,29,0.0 +11709,20,81,36,0.0 +11709,71,21.5,11,0.0 +11709,54,7.45,34,0.0 +11709,41,9.65,45,0.0 +11709,53,32.8,1,0.0 +11709,10,31,1,0.0 +11709,23,9,45,0.0 +11709,65,21.05,39,0.0 +11709,3,10,20,0.0 +11709,12,38,11,0.0 +11709,8,40,28,0.0 +11709,64,33.25,33,0.0 +11709,61,28.5,35,0.0 +11709,63,43.9,8,0.0 +11709,21,10,45,0.0 +11709,56,38,39,0.0 +11709,5,21.35,5,0.0 +11709,35,18,45,0.0 +11709,77,13,25,0.0 +11709,62,49.3,49,0.0 +11709,69,36,41,0.0 +11709,73,15,8,0.0 +11709,31,12.5,19,0.0 +11709,67,14,30,0.0 +11709,59,55,9,0.0 +11709,17,39,16,0.0 +11709,27,43.9,14,0.0 +11709,22,21,2,0.0 +11709,48,12.75,18,0.0 +11709,57,19.5,42,0.0 +11710,2,19,13,0.0 +11710,18,62.5,6,0.0 +11710,58,13.25,4,0.0 +11710,41,9.65,22,0.0 +11710,9,97,28,0.0 +11710,40,18.4,25,0.0 +11710,60,34,25,0.0 +11710,37,26,31,0.0 +11710,1,18,13,0.0 +11710,69,36,32,0.0 +11710,55,24,1,0.0 +11710,21,10,20,0.0 +11710,43,46,45,0.0 +11710,76,18,47,0.0 +11710,32,32,39,0.0 +11710,45,9.5,37,0.0 +11710,27,43.9,29,0.0 +11711,6,25,29,0.0 +11711,74,10,16,0.0 +11711,28,45.6,38,0.0 +11711,19,9.2,41,0.0 +11711,36,19,40,0.0 +11711,46,12,43,0.0 +11711,41,9.65,34,0.0 +11711,24,4.5,19,0.0 +11711,23,9,49,0.0 +11711,45,9.5,18,0.0 +11711,8,40,11,0.0 +11711,26,31.23,32,0.0 +11711,69,36,8,0.0 +11711,20,81,35,0.0 +11711,56,38,45,0.0 +11711,10,31,12,0.0 +11711,43,46,17,0.0 +11711,62,49.3,9,0.0 +11711,65,21.05,2,0.0 +11711,27,43.9,11,0.0 +11711,21,10,46,0.0 +11711,17,39,38,0.0 +11711,52,7,35,0.0 +11711,5,21.35,43,0.0 +11711,58,13.25,8,0.0 +11711,76,18,2,0.0 +11711,12,38,1,0.0 +11711,71,21.5,26,0.0 +11711,67,14,49,0.0 +11711,51,53,36,0.0 +11711,38,263.5,34,0.0 +11711,18,62.5,15,0.0 +11711,50,16.25,48,0.0 +11711,44,19.45,44,0.0 +11712,3,10,1,0.0 +11712,24,4.5,24,0.0 +11712,36,19,32,0.0 +11712,34,14,32,0.0 +11712,35,18,9,0.0 +11712,63,43.9,48,0.0 +11712,28,45.6,31,0.0 +11712,49,20,16,0.0 +11712,62,49.3,26,0.0 +11712,56,38,12,0.0 +11712,70,15,28,0.0 +11712,26,31.23,46,0.0 +11712,52,7,17,0.0 +11712,16,17.45,13,0.0 +11712,58,13.25,47,0.0 +11713,72,34.8,1,0.0 +11713,17,39,23,0.0 +11713,24,4.5,8,0.0 +11713,30,25.89,19,0.0 +11713,60,34,8,0.0 +11713,66,17,40,0.0 +11713,40,18.4,45,0.0 +11713,75,7.75,34,0.0 +11713,45,9.5,38,0.0 +11713,16,17.45,19,0.0 +11713,4,22,39,0.0 +11713,70,15,16,0.0 +11713,53,32.8,3,0.0 +11713,29,123.79,46,0.0 +11713,42,14,34,0.0 +11713,36,19,18,0.0 +11713,74,10,28,0.0 +11713,1,18,40,0.0 +11713,57,19.5,24,0.0 +11713,49,20,36,0.0 +11713,77,13,12,0.0 +11713,38,263.5,18,0.0 +11713,55,24,2,0.0 +11713,43,46,36,0.0 +11713,67,14,2,0.0 +11713,26,31.23,8,0.0 +11713,13,6,24,0.0 +11713,32,32,6,0.0 +11713,58,13.25,43,0.0 +11713,7,30,16,0.0 +11713,48,12.75,20,0.0 +11713,76,18,38,0.0 +11713,21,10,23,0.0 +11713,23,9,42,0.0 +11713,37,26,1,0.0 +11713,8,40,41,0.0 +11713,27,43.9,13,0.0 +11713,14,23.25,29,0.0 +11713,63,43.9,49,0.0 +11713,10,31,5,0.0 +11713,15,15.5,16,0.0 +11713,41,9.65,25,0.0 +11713,65,21.05,25,0.0 +11713,51,53,43,0.0 +11713,54,7.45,25,0.0 +11713,2,19,12,0.0 +11713,35,18,41,0.0 +11713,6,25,22,0.0 +11713,44,19.45,30,0.0 +11713,33,2.5,2,0.0 +11713,25,14,30,0.0 +11713,52,7,34,0.0 +11713,19,9.2,28,0.0 +11713,12,38,25,0.0 +11713,47,9.5,45,0.0 +11713,11,21,40,0.0 +11713,68,12.5,6,0.0 +11713,50,16.25,48,0.0 +11713,59,55,11,0.0 +11714,52,7,36,0.0 +11714,43,46,43,0.0 +11714,60,34,9,0.0 +11714,5,21.35,44,0.0 +11714,31,12.5,42,0.0 +11714,13,6,34,0.0 +11714,63,43.9,14,0.0 +11714,58,13.25,43,0.0 +11714,2,19,40,0.0 +11714,17,39,31,0.0 +11714,38,263.5,43,0.0 +11714,67,14,23,0.0 +11714,24,4.5,9,0.0 +11714,77,13,38,0.0 +11714,50,16.25,15,0.0 +11714,42,14,40,0.0 +11714,76,18,8,0.0 +11714,1,18,36,0.0 +11714,23,9,43,0.0 +11714,18,62.5,18,0.0 +11714,39,18,32,0.0 +11714,53,32.8,40,0.0 +11714,40,18.4,15,0.0 +11714,61,28.5,23,0.0 +11714,29,123.79,31,0.0 +11714,64,33.25,21,0.0 +11714,16,17.45,49,0.0 +11714,36,19,28,0.0 +11714,33,2.5,25,0.0 +11714,8,40,7,0.0 +11714,11,21,15,0.0 +11714,70,15,11,0.0 +11714,55,24,19,0.0 +11714,12,38,45,0.0 +11714,32,32,10,0.0 +11714,10,31,46,0.0 +11714,37,26,8,0.0 +11714,51,53,7,0.0 +11714,44,19.45,16,0.0 +11714,35,18,34,0.0 +11714,19,9.2,17,0.0 +11715,60,34,50,0.0 +11715,19,9.2,29,0.0 +11715,13,6,40,0.0 +11715,37,26,48,0.0 +11715,32,32,36,0.0 +11715,10,31,18,0.0 +11715,73,15,13,0.0 +11716,48,12.75,5,0.0 +11716,69,36,9,0.0 +11716,52,7,3,0.0 +11716,29,123.79,27,0.0 +11716,44,19.45,23,0.0 +11716,25,14,2,0.0 +11716,8,40,31,0.0 +11716,27,43.9,38,0.0 +11716,60,34,1,0.0 +11716,22,21,30,0.0 +11716,23,9,9,0.0 +11716,65,21.05,41,0.0 +11716,15,15.5,50,0.0 +11716,16,17.45,17,0.0 +11716,10,31,30,0.0 +11716,2,19,32,0.0 +11716,41,9.65,37,0.0 +11716,47,9.5,48,0.0 +11716,32,32,40,0.0 +11716,57,19.5,14,0.0 +11716,1,18,46,0.0 +11716,73,15,17,0.0 +11716,30,25.89,9,0.0 +11716,58,13.25,46,0.0 +11716,9,97,36,0.0 +11716,45,9.5,24,0.0 +11716,71,21.5,21,0.0 +11716,19,9.2,22,0.0 +11716,62,49.3,38,0.0 +11716,61,28.5,29,0.0 +11716,54,7.45,15,0.0 +11716,42,14,9,0.0 +11716,20,81,48,0.0 +11716,39,18,6,0.0 +11716,53,32.8,25,0.0 +11716,4,22,33,0.0 +11716,6,25,31,0.0 +11716,55,24,49,0.0 +11716,63,43.9,34,0.0 +11716,5,21.35,39,0.0 +11716,28,45.6,1,0.0 +11716,7,30,6,0.0 +11716,56,38,43,0.0 +11716,68,12.5,19,0.0 +11716,26,31.23,13,0.0 +11716,21,10,38,0.0 +11716,72,34.8,20,0.0 +11716,75,7.75,7,0.0 +11716,35,18,47,0.0 +11716,37,26,7,0.0 +11716,33,2.5,31,0.0 +11716,40,18.4,32,0.0 +11716,70,15,5,0.0 +11716,12,38,4,0.0 +11716,49,20,10,0.0 +11716,67,14,23,0.0 +11716,17,39,45,0.0 +11716,13,6,22,0.0 +11716,14,23.25,14,0.0 +11716,46,12,40,0.0 +11716,64,33.25,13,0.0 +11716,24,4.5,37,0.0 +11717,9,97,30,0.0 +11718,18,62.5,6,0.0 +11718,70,15,4,0.0 +11718,65,21.05,44,0.0 +11718,24,4.5,46,0.0 +11718,13,6,46,0.0 +11718,31,12.5,3,0.0 +11718,6,25,10,0.0 +11718,2,19,17,0.0 +11718,66,17,49,0.0 +11718,33,2.5,1,0.0 +11718,54,7.45,41,0.0 +11718,62,49.3,17,0.0 +11718,14,23.25,5,0.0 +11718,45,9.5,40,0.0 +11718,20,81,23,0.0 +11718,3,10,35,0.0 +11718,49,20,23,0.0 +11718,63,43.9,43,0.0 +11718,50,16.25,42,0.0 +11718,51,53,43,0.0 +11719,37,26,25,0.0 +11719,23,9,40,0.0 +11719,73,15,14,0.0 +11719,67,14,11,0.0 +11719,70,15,41,0.0 +11719,14,23.25,27,0.0 +11719,61,28.5,21,0.0 +11719,28,45.6,34,0.0 +11719,69,36,11,0.0 +11719,20,81,39,0.0 +11719,2,19,25,0.0 +11719,15,15.5,43,0.0 +11719,35,18,5,0.0 +11719,75,7.75,42,0.0 +11719,25,14,19,0.0 +11719,38,263.5,50,0.0 +11719,77,13,40,0.0 +11719,72,34.8,32,0.0 +11719,57,19.5,47,0.0 +11719,44,19.45,32,0.0 +11719,45,9.5,28,0.0 +11719,18,62.5,23,0.0 +11719,7,30,23,0.0 +11719,76,18,35,0.0 +11719,40,18.4,1,0.0 +11719,54,7.45,23,0.0 +11719,24,4.5,17,0.0 +11719,5,21.35,43,0.0 +11719,50,16.25,4,0.0 +11719,27,43.9,35,0.0 +11719,11,21,42,0.0 +11719,31,12.5,12,0.0 +11719,8,40,35,0.0 +11719,16,17.45,15,0.0 +11719,21,10,16,0.0 +11719,55,24,15,0.0 +11719,71,21.5,30,0.0 +11719,59,55,48,0.0 +11719,33,2.5,46,0.0 +11719,74,10,34,0.0 +11719,51,53,20,0.0 +11719,53,32.8,28,0.0 +11719,64,33.25,13,0.0 +11719,26,31.23,28,0.0 +11719,63,43.9,18,0.0 +11719,41,9.65,1,0.0 +11719,68,12.5,47,0.0 +11719,62,49.3,37,0.0 +11720,24,4.5,10,0.0 +11720,74,10,7,0.0 +11720,75,7.75,13,0.0 +11720,43,46,35,0.0 +11720,17,39,22,0.0 +11720,35,18,40,0.0 +11721,56,38,7,0.0 +11721,33,2.5,48,0.0 +11721,37,26,48,0.0 +11721,46,12,49,0.0 +11721,67,14,21,0.0 +11722,62,49.3,43,0.0 +11722,26,31.23,18,0.0 +11722,70,15,9,0.0 +11722,55,24,42,0.0 +11722,32,32,7,0.0 +11722,24,4.5,26,0.0 +11722,30,25.89,38,0.0 +11722,45,9.5,18,0.0 +11722,65,21.05,24,0.0 +11723,19,9.2,40,0.0 +11723,3,10,18,0.0 +11723,46,12,44,0.0 +11723,67,14,27,0.0 +11723,56,38,45,0.0 +11723,11,21,36,0.0 +11723,37,26,4,0.0 +11723,50,16.25,17,0.0 +11723,74,10,30,0.0 +11723,12,38,15,0.0 +11723,18,62.5,35,0.0 +11723,15,15.5,8,0.0 +11723,45,9.5,19,0.0 +11723,10,31,1,0.0 +11723,26,31.23,33,0.0 +11723,55,24,43,0.0 +11723,44,19.45,28,0.0 +11723,62,49.3,21,0.0 +11723,49,20,27,0.0 +11723,22,21,26,0.0 +11723,51,53,17,0.0 +11723,54,7.45,23,0.0 +11723,8,40,23,0.0 +11723,73,15,28,0.0 +11723,58,13.25,12,0.0 +11723,53,32.8,43,0.0 +11723,66,17,2,0.0 +11724,26,31.23,9,0.0 +11724,35,18,42,0.0 +11724,24,4.5,15,0.0 +11724,14,23.25,23,0.0 +11724,11,21,39,0.0 +11724,33,2.5,46,0.0 +11724,71,21.5,33,0.0 +11724,3,10,18,0.0 +11724,32,32,28,0.0 +11724,13,6,22,0.0 +11724,6,25,31,0.0 +11724,50,16.25,18,0.0 +11724,43,46,10,0.0 +11724,62,49.3,23,0.0 +11724,54,7.45,30,0.0 +11724,44,19.45,27,0.0 +11724,63,43.9,49,0.0 +11724,31,12.5,32,0.0 +11724,42,14,39,0.0 +11724,40,18.4,31,0.0 +11724,7,30,42,0.0 +11725,54,7.45,35,0.0 +11725,21,10,25,0.0 +11725,23,9,5,0.0 +11725,18,62.5,47,0.0 +11725,63,43.9,15,0.0 +11725,75,7.75,24,0.0 +11725,24,4.5,31,0.0 +11725,52,7,12,0.0 +11725,49,20,28,0.0 +11725,44,19.45,49,0.0 +11725,30,25.89,19,0.0 +11725,2,19,33,0.0 +11725,77,13,25,0.0 +11725,65,21.05,17,0.0 +11726,7,30,39,0.0 +11726,69,36,11,0.0 +11726,5,21.35,4,0.0 +11726,53,32.8,46,0.0 +11726,28,45.6,40,0.0 +11726,35,18,32,0.0 +11726,25,14,39,0.0 +11726,42,14,28,0.0 +11726,1,18,34,0.0 +11726,10,31,22,0.0 +11726,52,7,37,0.0 +11726,73,15,24,0.0 +11726,30,25.89,35,0.0 +11726,3,10,36,0.0 +11726,74,10,13,0.0 +11726,66,17,50,0.0 +11726,19,9.2,45,0.0 +11726,34,14,45,0.0 +11726,29,123.79,9,0.0 +11726,9,97,5,0.0 +11726,46,12,25,0.0 +11726,23,9,34,0.0 +11726,68,12.5,31,0.0 +11726,11,21,44,0.0 +11726,54,7.45,46,0.0 +11726,50,16.25,40,0.0 +11726,13,6,19,0.0 +11726,37,26,28,0.0 +11726,65,21.05,15,0.0 +11727,32,32,40,0.0 +11727,29,123.79,7,0.0 +11727,1,18,41,0.0 +11727,24,4.5,47,0.0 +11727,69,36,16,0.0 +11727,6,25,4,0.0 +11727,36,19,29,0.0 +11727,31,12.5,21,0.0 +11727,53,32.8,30,0.0 +11727,75,7.75,3,0.0 +11727,42,14,21,0.0 +11727,17,39,42,0.0 +11727,35,18,13,0.0 +11727,63,43.9,44,0.0 +11727,30,25.89,36,0.0 +11727,68,12.5,32,0.0 +11727,9,97,30,0.0 +11727,26,31.23,46,0.0 +11727,28,45.6,22,0.0 +11727,39,18,32,0.0 +11727,54,7.45,19,0.0 +11727,19,9.2,24,0.0 +11727,52,7,34,0.0 +11727,14,23.25,2,0.0 +11727,18,62.5,29,0.0 +11727,59,55,25,0.0 +11727,47,9.5,13,0.0 +11727,65,21.05,35,0.0 +11727,74,10,34,0.0 +11727,23,9,49,0.0 +11727,7,30,6,0.0 +11727,43,46,44,0.0 +11727,77,13,22,0.0 +11727,11,21,19,0.0 +11727,16,17.45,1,0.0 +11727,10,31,31,0.0 +11727,66,17,42,0.0 +11727,60,34,31,0.0 +11727,8,40,8,0.0 +11727,61,28.5,49,0.0 +11727,57,19.5,27,0.0 +11727,44,19.45,22,0.0 +11727,70,15,34,0.0 +11727,5,21.35,14,0.0 +11727,71,21.5,29,0.0 +11727,58,13.25,12,0.0 +11727,67,14,4,0.0 +11727,15,15.5,30,0.0 +11727,56,38,18,0.0 +11727,41,9.65,22,0.0 +11727,27,43.9,25,0.0 +11727,62,49.3,29,0.0 +11727,48,12.75,21,0.0 +11727,37,26,2,0.0 +11727,38,263.5,31,0.0 +11727,22,21,5,0.0 +11727,64,33.25,26,0.0 +11727,40,18.4,22,0.0 +11727,49,20,26,0.0 +11727,55,24,27,0.0 +11727,20,81,14,0.0 +11728,51,53,33,0.0 +11728,72,34.8,8,0.0 +11728,19,9.2,46,0.0 +11728,12,38,41,0.0 +11728,47,9.5,2,0.0 +11728,75,7.75,2,0.0 +11728,46,12,47,0.0 +11728,14,23.25,22,0.0 +11728,16,17.45,31,0.0 +11728,54,7.45,12,0.0 +11728,42,14,17,0.0 +11728,22,21,32,0.0 +11728,70,15,50,0.0 +11728,41,9.65,30,0.0 +11728,39,18,4,0.0 +11728,24,4.5,20,0.0 +11728,40,18.4,27,0.0 +11728,73,15,10,0.0 +11728,27,43.9,15,0.0 +11729,49,20,8,0.0 +11729,5,21.35,11,0.0 +11729,16,17.45,36,0.0 +11729,25,14,10,0.0 +11729,62,49.3,14,0.0 +11729,66,17,39,0.0 +11729,27,43.9,36,0.0 +11729,3,10,46,0.0 +11729,13,6,25,0.0 +11729,19,9.2,28,0.0 +11729,37,26,12,0.0 +11729,60,34,34,0.0 +11729,18,62.5,13,0.0 +11729,47,9.5,38,0.0 +11729,30,25.89,43,0.0 +11729,53,32.8,38,0.0 +11729,34,14,23,0.0 +11729,44,19.45,33,0.0 +11729,36,19,46,0.0 +11729,48,12.75,48,0.0 +11729,73,15,11,0.0 +11729,54,7.45,29,0.0 +11729,57,19.5,19,0.0 +11729,38,263.5,47,0.0 +11729,15,15.5,7,0.0 +11729,71,21.5,9,0.0 +11729,76,18,44,0.0 +11729,35,18,22,0.0 +11729,63,43.9,31,0.0 +11729,9,97,29,0.0 +11729,70,15,26,0.0 +11729,1,18,21,0.0 +11729,39,18,33,0.0 +11729,43,46,13,0.0 +11729,74,10,23,0.0 +11729,59,55,2,0.0 +11729,55,24,39,0.0 +11729,45,9.5,31,0.0 +11729,11,21,20,0.0 +11729,69,36,37,0.0 +11729,75,7.75,40,0.0 +11729,6,25,34,0.0 +11729,12,38,20,0.0 +11729,50,16.25,23,0.0 +11729,23,9,44,0.0 +11729,20,81,5,0.0 +11729,17,39,6,0.0 +11730,26,31.23,15,0.0 +11730,32,32,13,0.0 +11730,40,18.4,6,0.0 +11730,73,15,3,0.0 +11730,64,33.25,29,0.0 +11730,72,34.8,10,0.0 +11730,14,23.25,10,0.0 +11730,33,2.5,6,0.0 +11730,20,81,20,0.0 +11730,36,19,9,0.0 +11730,60,34,32,0.0 +11730,27,43.9,35,0.0 +11730,8,40,41,0.0 +11730,13,6,25,0.0 +11730,75,7.75,27,0.0 +11730,17,39,5,0.0 +11730,34,14,14,0.0 +11730,28,45.6,50,0.0 +11730,45,9.5,21,0.0 +11730,61,28.5,28,0.0 +11730,69,36,19,0.0 +11730,70,15,14,0.0 +11730,23,9,35,0.0 +11730,4,22,26,0.0 +11730,11,21,26,0.0 +11730,74,10,44,0.0 +11730,52,7,25,0.0 +11730,57,19.5,20,0.0 +11730,44,19.45,40,0.0 +11730,16,17.45,46,0.0 +11730,42,14,7,0.0 +11730,47,9.5,27,0.0 +11730,9,97,38,0.0 +11730,54,7.45,48,0.0 +11730,24,4.5,14,0.0 +11730,49,20,1,0.0 +11730,43,46,21,0.0 +11730,46,12,19,0.0 +11730,62,49.3,25,0.0 +11730,77,13,44,0.0 +11730,41,9.65,3,0.0 +11730,15,15.5,23,0.0 +11730,39,18,8,0.0 +11730,29,123.79,11,0.0 +11730,19,9.2,23,0.0 +11730,31,12.5,13,0.0 +11730,22,21,33,0.0 +11730,76,18,13,0.0 +11730,18,62.5,47,0.0 +11730,38,263.5,32,0.0 +11730,66,17,14,0.0 +11730,35,18,25,0.0 +11730,48,12.75,15,0.0 +11730,10,31,26,0.0 +11730,12,38,35,0.0 +11730,65,21.05,41,0.0 +11730,2,19,7,0.0 +11731,51,53,1,0.0 +11731,16,17.45,7,0.0 +11731,75,7.75,49,0.0 +11731,5,21.35,26,0.0 +11731,72,34.8,40,0.0 +11731,33,2.5,15,0.0 +11731,70,15,10,0.0 +11731,48,12.75,43,0.0 +11731,63,43.9,5,0.0 +11731,9,97,8,0.0 +11731,34,14,50,0.0 +11731,67,14,31,0.0 +11731,7,30,9,0.0 +11731,2,19,21,0.0 +11731,4,22,41,0.0 +11731,14,23.25,16,0.0 +11731,25,14,24,0.0 +11731,35,18,30,0.0 +11731,21,10,4,0.0 +11731,46,12,7,0.0 +11731,69,36,27,0.0 +11731,57,19.5,12,0.0 +11731,41,9.65,48,0.0 +11731,60,34,16,0.0 +11731,44,19.45,6,0.0 +11731,76,18,38,0.0 +11731,22,21,46,0.0 +11731,6,25,14,0.0 +11731,36,19,45,0.0 +11731,58,13.25,46,0.0 +11731,17,39,19,0.0 +11731,52,7,31,0.0 +11731,3,10,27,0.0 +11731,50,16.25,40,0.0 +11731,29,123.79,8,0.0 +11731,53,32.8,3,0.0 +11731,40,18.4,3,0.0 +11731,77,13,24,0.0 +11731,19,9.2,17,0.0 +11731,59,55,35,0.0 +11731,38,263.5,40,0.0 +11731,37,26,31,0.0 +11731,1,18,32,0.0 +11731,71,21.5,12,0.0 +11731,66,17,28,0.0 +11731,61,28.5,48,0.0 +11731,54,7.45,23,0.0 +11731,8,40,4,0.0 +11731,30,25.89,35,0.0 +11731,55,24,9,0.0 +11731,65,21.05,21,0.0 +11731,32,32,48,0.0 +11731,15,15.5,41,0.0 +11731,23,9,42,0.0 +11731,20,81,25,0.0 +11731,47,9.5,45,0.0 +11731,24,4.5,49,0.0 +11731,31,12.5,49,0.0 +11731,28,45.6,24,0.0 +11731,11,21,3,0.0 +11731,42,14,42,0.0 +11731,64,33.25,10,0.0 +11731,62,49.3,27,0.0 +11731,26,31.23,9,0.0 +11731,18,62.5,8,0.0 +11732,23,9,1,0.0 +11732,43,46,47,0.0 +11732,50,16.25,27,0.0 +11732,5,21.35,34,0.0 +11732,58,13.25,32,0.0 +11732,69,36,3,0.0 +11732,8,40,46,0.0 +11732,73,15,5,0.0 +11732,24,4.5,12,0.0 +11732,16,17.45,41,0.0 +11732,55,24,5,0.0 +11732,39,18,9,0.0 +11733,73,15,26,0.0 +11733,3,10,4,0.0 +11733,30,25.89,8,0.0 +11733,59,55,16,0.0 +11733,77,13,32,0.0 +11733,63,43.9,44,0.0 +11733,41,9.65,18,0.0 +11733,11,21,22,0.0 +11733,28,45.6,5,0.0 +11733,61,28.5,37,0.0 +11733,19,9.2,18,0.0 +11733,66,17,34,0.0 +11733,2,19,24,0.0 +11733,12,38,23,0.0 +11733,14,23.25,42,0.0 +11733,5,21.35,43,0.0 +11733,53,32.8,22,0.0 +11733,24,4.5,10,0.0 +11733,71,21.5,11,0.0 +11733,35,18,33,0.0 +11733,18,62.5,21,0.0 +11733,31,12.5,31,0.0 +11733,27,43.9,44,0.0 +11733,9,97,4,0.0 +11733,58,13.25,26,0.0 +11733,17,39,24,0.0 +11733,60,34,44,0.0 +11733,72,34.8,49,0.0 +11733,56,38,22,0.0 +11733,33,2.5,46,0.0 +11733,69,36,9,0.0 +11733,10,31,39,0.0 +11733,40,18.4,29,0.0 +11733,65,21.05,21,0.0 +11733,22,21,47,0.0 +11733,67,14,48,0.0 +11734,59,55,25,0.0 +11734,2,19,33,0.0 +11734,13,6,32,0.0 +11734,16,17.45,5,0.0 +11734,45,9.5,18,0.0 +11734,1,18,48,0.0 +11734,34,14,4,0.0 +11734,21,10,13,0.0 +11734,25,14,48,0.0 +11734,57,19.5,22,0.0 +11734,66,17,35,0.0 +11734,15,15.5,43,0.0 +11734,67,14,46,0.0 +11734,62,49.3,12,0.0 +11734,36,19,19,0.0 +11734,52,7,31,0.0 +11734,37,26,5,0.0 +11734,74,10,24,0.0 +11734,77,13,37,0.0 +11734,32,32,24,0.0 +11734,49,20,4,0.0 +11734,75,7.75,10,0.0 +11734,50,16.25,36,0.0 +11734,20,81,12,0.0 +11734,11,21,35,0.0 +11734,58,13.25,38,0.0 +11734,30,25.89,49,0.0 +11734,6,25,37,0.0 +11734,4,22,27,0.0 +11734,48,12.75,37,0.0 +11734,14,23.25,31,0.0 +11734,65,21.05,13,0.0 +11734,68,12.5,18,0.0 +11734,60,34,29,0.0 +11734,24,4.5,18,0.0 +11734,28,45.6,37,0.0 +11734,39,18,13,0.0 +11734,42,14,17,0.0 +11734,5,21.35,35,0.0 +11734,72,34.8,20,0.0 +11734,69,36,8,0.0 +11735,51,53,40,0.0 +11735,58,13.25,10,0.0 +11735,72,34.8,26,0.0 +11735,55,24,25,0.0 +11735,44,19.45,46,0.0 +11735,66,17,4,0.0 +11735,42,14,18,0.0 +11735,6,25,17,0.0 +11735,54,7.45,6,0.0 +11735,69,36,13,0.0 +11735,7,30,18,0.0 +11735,28,45.6,37,0.0 +11735,9,97,34,0.0 +11735,47,9.5,42,0.0 +11735,74,10,47,0.0 +11735,12,38,36,0.0 +11735,25,14,33,0.0 +11735,40,18.4,6,0.0 +11735,68,12.5,15,0.0 +11735,10,31,33,0.0 +11735,11,21,37,0.0 +11735,41,9.65,39,0.0 +11735,4,22,8,0.0 +11735,15,15.5,3,0.0 +11735,17,39,31,0.0 +11735,63,43.9,35,0.0 +11735,32,32,45,0.0 +11735,64,33.25,12,0.0 +11735,53,32.8,36,0.0 +11735,75,7.75,20,0.0 +11735,39,18,21,0.0 +11735,1,18,6,0.0 +11735,77,13,49,0.0 +11735,34,14,38,0.0 +11735,29,123.79,46,0.0 +11735,73,15,27,0.0 +11735,43,46,13,0.0 +11735,65,21.05,37,0.0 +11735,36,19,8,0.0 +11735,49,20,49,0.0 +11735,23,9,15,0.0 +11735,52,7,43,0.0 +11735,30,25.89,1,0.0 +11735,2,19,21,0.0 +11735,60,34,9,0.0 +11735,19,9.2,50,0.0 +11735,56,38,18,0.0 +11735,18,62.5,16,0.0 +11735,38,263.5,28,0.0 +11735,20,81,42,0.0 +11735,46,12,22,0.0 +11735,31,12.5,31,0.0 +11735,33,2.5,17,0.0 +11735,61,28.5,10,0.0 +11735,45,9.5,1,0.0 +11735,59,55,33,0.0 +11735,48,12.75,21,0.0 +11735,24,4.5,10,0.0 +11736,51,53,29,0.0 +11736,59,55,23,0.0 +11736,71,21.5,18,0.0 +11736,39,18,26,0.0 +11736,58,13.25,18,0.0 +11736,19,9.2,4,0.0 +11736,7,30,27,0.0 +11736,38,263.5,17,0.0 +11736,40,18.4,45,0.0 +11736,73,15,40,0.0 +11736,11,21,12,0.0 +11736,25,14,6,0.0 +11736,64,33.25,44,0.0 +11736,5,21.35,2,0.0 +11736,17,39,6,0.0 +11736,36,19,36,0.0 +11736,66,17,39,0.0 +11736,33,2.5,14,0.0 +11736,21,10,41,0.0 +11736,10,31,26,0.0 +11736,67,14,3,0.0 +11736,24,4.5,14,0.0 +11736,65,21.05,7,0.0 +11736,26,31.23,48,0.0 +11736,74,10,17,0.0 +11736,31,12.5,30,0.0 +11736,48,12.75,44,0.0 +11736,68,12.5,38,0.0 +11736,44,19.45,44,0.0 +11736,28,45.6,50,0.0 +11736,29,123.79,30,0.0 +11736,18,62.5,22,0.0 +11736,9,97,6,0.0 +11736,27,43.9,7,0.0 +11736,42,14,16,0.0 +11736,43,46,17,0.0 +11736,12,38,21,0.0 +11736,50,16.25,50,0.0 +11736,47,9.5,27,0.0 +11736,70,15,24,0.0 +11736,46,12,29,0.0 +11736,3,10,37,0.0 +11736,49,20,39,0.0 +11736,72,34.8,40,0.0 +11736,4,22,10,0.0 +11736,20,81,13,0.0 +11736,60,34,19,0.0 +11736,63,43.9,38,0.0 +11736,56,38,6,0.0 +11736,16,17.45,23,0.0 +11736,14,23.25,24,0.0 +11736,8,40,22,0.0 +11736,62,49.3,2,0.0 +11736,53,32.8,38,0.0 +11736,52,7,34,0.0 +11736,34,14,36,0.0 +11736,57,19.5,3,0.0 +11736,15,15.5,44,0.0 +11736,45,9.5,18,0.0 +11736,2,19,37,0.0 +11736,61,28.5,25,0.0 +11736,23,9,26,0.0 +11736,13,6,29,0.0 +11736,35,18,46,0.0 +11736,30,25.89,6,0.0 +11736,32,32,39,0.0 +11736,55,24,13,0.0 +11736,69,36,14,0.0 +11736,77,13,1,0.0 +11736,1,18,14,0.0 +11737,25,14,24,0.0 +11737,19,9.2,35,0.0 +11737,50,16.25,34,0.0 +11737,41,9.65,6,0.0 +11737,3,10,26,0.0 +11737,62,49.3,49,0.0 +11737,59,55,34,0.0 +11737,49,20,37,0.0 +11737,21,10,48,0.0 +11737,54,7.45,37,0.0 +11737,13,6,12,0.0 +11737,42,14,25,0.0 +11737,73,15,50,0.0 +11737,10,31,20,0.0 +11737,35,18,20,0.0 +11737,37,26,13,0.0 +11737,58,13.25,9,0.0 +11737,51,53,11,0.0 +11737,56,38,40,0.0 +11737,20,81,27,0.0 +11737,30,25.89,43,0.0 +11737,77,13,27,0.0 +11737,61,28.5,17,0.0 +11737,39,18,36,0.0 +11737,17,39,44,0.0 +11737,74,10,23,0.0 +11737,45,9.5,23,0.0 +11737,53,32.8,9,0.0 +11737,65,21.05,13,0.0 +11737,14,23.25,28,0.0 +11737,57,19.5,40,0.0 +11737,64,33.25,49,0.0 +11737,29,123.79,11,0.0 +11737,23,9,13,0.0 +11737,75,7.75,46,0.0 +11737,26,31.23,48,0.0 +11737,44,19.45,28,0.0 +11737,66,17,21,0.0 +11737,6,25,4,0.0 +11737,8,40,9,0.0 +11737,31,12.5,13,0.0 +11737,9,97,37,0.0 +11737,32,32,6,0.0 +11737,27,43.9,30,0.0 +11737,52,7,35,0.0 +11737,12,38,50,0.0 +11737,28,45.6,46,0.0 +11738,43,46,20,0.0 +11738,12,38,45,0.0 +11738,19,9.2,7,0.0 +11738,51,53,2,0.0 +11738,72,34.8,33,0.0 +11738,17,39,26,0.0 +11738,14,23.25,35,0.0 +11738,4,22,14,0.0 +11738,28,45.6,36,0.0 +11738,47,9.5,11,0.0 +11738,48,12.75,1,0.0 +11738,66,17,38,0.0 +11738,36,19,26,0.0 +11738,62,49.3,15,0.0 +11738,31,12.5,27,0.0 +11738,63,43.9,27,0.0 +11738,60,34,44,0.0 +11738,52,7,19,0.0 +11738,11,21,14,0.0 +11738,44,19.45,40,0.0 +11738,27,43.9,35,0.0 +11738,20,81,16,0.0 +11738,25,14,19,0.0 +11738,70,15,3,0.0 +11738,53,32.8,23,0.0 +11738,21,10,32,0.0 +11738,37,26,43,0.0 +11738,34,14,13,0.0 +11738,26,31.23,37,0.0 +11738,57,19.5,17,0.0 +11738,1,18,31,0.0 +11738,45,9.5,33,0.0 +11738,2,19,1,0.0 +11738,69,36,31,0.0 +11738,42,14,39,0.0 +11738,30,25.89,32,0.0 +11739,4,22,3,0.0 +11739,71,21.5,16,0.0 +11739,53,32.8,44,0.0 +11739,65,21.05,31,0.0 +11739,51,53,42,0.0 +11739,7,30,21,0.0 +11739,19,9.2,21,0.0 +11739,30,25.89,41,0.0 +11739,8,40,24,0.0 +11739,60,34,11,0.0 +11739,9,97,45,0.0 +11739,27,43.9,10,0.0 +11739,14,23.25,49,0.0 +11739,63,43.9,7,0.0 +11739,38,263.5,13,0.0 +11739,13,6,42,0.0 +11739,48,12.75,4,0.0 +11739,2,19,37,0.0 +11739,46,12,37,0.0 +11739,33,2.5,9,0.0 +11739,31,12.5,50,0.0 +11739,61,28.5,49,0.0 +11739,42,14,6,0.0 +11739,32,32,42,0.0 +11739,43,46,15,0.0 +11739,75,7.75,7,0.0 +11739,66,17,44,0.0 +11739,77,13,43,0.0 +11739,26,31.23,32,0.0 +11739,16,17.45,39,0.0 +11739,35,18,23,0.0 +11739,67,14,14,0.0 +11739,55,24,36,0.0 +11739,20,81,45,0.0 +11739,5,21.35,7,0.0 +11739,3,10,34,0.0 +11739,54,7.45,50,0.0 +11739,57,19.5,2,0.0 +11739,47,9.5,12,0.0 +11739,45,9.5,32,0.0 +11739,10,31,5,0.0 +11739,76,18,17,0.0 +11739,6,25,3,0.0 +11739,49,20,38,0.0 +11739,73,15,36,0.0 +11739,1,18,6,0.0 +11740,4,22,29,0.0 +11740,45,9.5,3,0.0 +11740,57,19.5,26,0.0 +11740,34,14,9,0.0 +11740,69,36,20,0.0 +11740,8,40,37,0.0 +11740,38,263.5,23,0.0 +11740,64,33.25,46,0.0 +11740,55,24,49,0.0 +11740,22,21,28,0.0 +11740,74,10,6,0.0 +11740,70,15,43,0.0 +11740,10,31,28,0.0 +11740,68,12.5,27,0.0 +11740,29,123.79,43,0.0 +11740,71,21.5,1,0.0 +11740,11,21,27,0.0 +11740,32,32,7,0.0 +11740,75,7.75,45,0.0 +11740,44,19.45,45,0.0 +11740,28,45.6,39,0.0 +11740,73,15,17,0.0 +11740,31,12.5,34,0.0 +11740,33,2.5,23,0.0 +11740,50,16.25,1,0.0 +11740,23,9,6,0.0 +11740,61,28.5,50,0.0 +11740,9,97,18,0.0 +11740,24,4.5,15,0.0 +11740,30,25.89,12,0.0 +11740,27,43.9,25,0.0 +11740,36,19,9,0.0 +11740,72,34.8,18,0.0 +11740,12,38,37,0.0 +11740,52,7,43,0.0 +11740,65,21.05,35,0.0 +11740,53,32.8,40,0.0 +11740,63,43.9,5,0.0 +11740,43,46,14,0.0 +11740,18,62.5,25,0.0 +11740,1,18,33,0.0 +11740,17,39,47,0.0 +11740,13,6,40,0.0 +11740,20,81,17,0.0 +11740,59,55,8,0.0 +11740,62,49.3,46,0.0 +11740,46,12,3,0.0 +11740,25,14,31,0.0 +11740,47,9.5,8,0.0 +11740,6,25,7,0.0 +11740,15,15.5,9,0.0 +11740,41,9.65,37,0.0 +11740,42,14,27,0.0 +11740,60,34,32,0.0 +11740,51,53,50,0.0 +11740,14,23.25,47,0.0 +11740,2,19,6,0.0 +11740,58,13.25,30,0.0 +11740,67,14,20,0.0 +11740,77,13,18,0.0 +11740,40,18.4,48,0.0 +11740,7,30,47,0.0 +11740,39,18,36,0.0 +11740,5,21.35,7,0.0 +11740,16,17.45,8,0.0 +11740,54,7.45,24,0.0 +11740,56,38,37,0.0 +11740,37,26,15,0.0 +11740,19,9.2,50,0.0 +11740,21,10,7,0.0 +11740,26,31.23,10,0.0 +11740,35,18,29,0.0 +11740,48,12.75,24,0.0 +11740,3,10,9,0.0 +11740,49,20,18,0.0 +11740,66,17,9,0.0 +11741,30,25.89,1,0.0 +11741,32,32,25,0.0 +11741,71,21.5,49,0.0 +11741,5,21.35,20,0.0 +11741,9,97,13,0.0 +11741,20,81,20,0.0 +11741,55,24,40,0.0 +11741,46,12,13,0.0 +11741,8,40,40,0.0 +11741,37,26,43,0.0 +11741,14,23.25,14,0.0 +11741,69,36,7,0.0 +11741,24,4.5,44,0.0 +11741,36,19,17,0.0 +11741,61,28.5,33,0.0 +11741,13,6,29,0.0 +11741,51,53,32,0.0 +11741,75,7.75,13,0.0 +11741,65,21.05,39,0.0 +11741,2,19,35,0.0 +11741,4,22,49,0.0 +11741,72,34.8,34,0.0 +11741,76,18,19,0.0 +11741,44,19.45,33,0.0 +11741,16,17.45,41,0.0 +11741,28,45.6,3,0.0 +11741,60,34,3,0.0 +11741,41,9.65,6,0.0 +11741,23,9,16,0.0 +11741,73,15,49,0.0 +11741,11,21,15,0.0 +11741,47,9.5,17,0.0 +11741,48,12.75,18,0.0 +11741,19,9.2,35,0.0 +11741,34,14,10,0.0 +11741,59,55,10,0.0 +11741,42,14,26,0.0 +11741,45,9.5,18,0.0 +11741,39,18,9,0.0 +11741,6,25,24,0.0 +11741,53,32.8,34,0.0 +11741,38,263.5,10,0.0 +11741,15,15.5,43,0.0 +11741,52,7,31,0.0 +11741,49,20,2,0.0 +11741,3,10,22,0.0 +11741,40,18.4,20,0.0 +11741,1,18,23,0.0 +11741,31,12.5,37,0.0 +11741,21,10,45,0.0 +11741,57,19.5,27,0.0 +11741,25,14,21,0.0 +11741,74,10,33,0.0 +11741,68,12.5,7,0.0 +11741,66,17,38,0.0 +11741,56,38,25,0.0 +11741,54,7.45,7,0.0 +11741,67,14,26,0.0 +11741,58,13.25,13,0.0 +11741,22,21,43,0.0 +11741,17,39,35,0.0 +11741,33,2.5,48,0.0 +11741,7,30,19,0.0 +11741,64,33.25,30,0.0 +11741,77,13,4,0.0 +11741,35,18,37,0.0 +11741,50,16.25,39,0.0 +11741,10,31,2,0.0 +11741,27,43.9,33,0.0 +11741,43,46,5,0.0 +11742,60,34,32,0.0 +11742,75,7.75,50,0.0 +11742,43,46,30,0.0 +11742,10,31,5,0.0 +11742,41,9.65,15,0.0 +11742,29,123.79,25,0.0 +11742,31,12.5,39,0.0 +11742,44,19.45,45,0.0 +11742,8,40,50,0.0 +11742,52,7,15,0.0 +11742,11,21,10,0.0 +11742,73,15,8,0.0 +11743,65,21.05,19,0.0 +11743,58,13.25,6,0.0 +11743,77,13,22,0.0 +11743,11,21,36,0.0 +11743,39,18,43,0.0 +11743,26,31.23,39,0.0 +11743,72,34.8,13,0.0 +11743,27,43.9,49,0.0 +11743,51,53,11,0.0 +11743,61,28.5,10,0.0 +11743,64,33.25,49,0.0 +11743,63,43.9,43,0.0 +11744,30,25.89,18,0.0 +11744,14,23.25,38,0.0 +11744,16,17.45,12,0.0 +11744,62,49.3,38,0.0 +11744,47,9.5,9,0.0 +11744,42,14,16,0.0 +11744,17,39,20,0.0 +11744,12,38,43,0.0 +11744,77,13,16,0.0 +11744,67,14,22,0.0 +11744,13,6,22,0.0 +11744,45,9.5,8,0.0 +11744,70,15,40,0.0 +11744,3,10,13,0.0 +11744,24,4.5,20,0.0 +11744,32,32,48,0.0 +11744,66,17,9,0.0 +11744,20,81,8,0.0 +11744,59,55,7,0.0 +11744,52,7,21,0.0 +11744,44,19.45,21,0.0 +11744,34,14,1,0.0 +11744,53,32.8,46,0.0 +11744,21,10,33,0.0 +11744,58,13.25,44,0.0 +11744,15,15.5,7,0.0 +11744,37,26,46,0.0 +11744,72,34.8,15,0.0 +11744,5,21.35,39,0.0 +11744,73,15,19,0.0 +11744,18,62.5,38,0.0 +11744,40,18.4,44,0.0 +11744,27,43.9,2,0.0 +11744,26,31.23,22,0.0 +11744,6,25,27,0.0 +11744,9,97,6,0.0 +11744,35,18,45,0.0 +11744,28,45.6,12,0.0 +11744,4,22,27,0.0 +11744,2,19,48,0.0 +11744,7,30,19,0.0 +11744,55,24,48,0.0 +11744,63,43.9,8,0.0 +11744,65,21.05,46,0.0 +11744,64,33.25,42,0.0 +11744,33,2.5,22,0.0 +11744,23,9,50,0.0 +11744,41,9.65,39,0.0 +11744,76,18,42,0.0 +11744,51,53,28,0.0 +11744,43,46,3,0.0 +11744,50,16.25,49,0.0 +11744,36,19,8,0.0 +11744,57,19.5,1,0.0 +11744,46,12,39,0.0 +11744,71,21.5,15,0.0 +11744,75,7.75,16,0.0 +11744,11,21,39,0.0 +11744,48,12.75,50,0.0 +11745,17,39,19,0.0 +11745,13,6,17,0.0 +11745,76,18,14,0.0 +11745,52,7,29,0.0 +11745,29,123.79,42,0.0 +11745,31,12.5,26,0.0 +11745,10,31,5,0.0 +11745,43,46,42,0.0 +11745,48,12.75,2,0.0 +11745,20,81,48,0.0 +11745,42,14,47,0.0 +11745,8,40,49,0.0 +11745,18,62.5,10,0.0 +11745,69,36,1,0.0 +11745,74,10,41,0.0 +11745,15,15.5,46,0.0 +11745,38,263.5,40,0.0 +11746,15,15.5,37,0.0 +11746,17,39,19,0.0 +11746,75,7.75,47,0.0 +11746,74,10,33,0.0 +11746,27,43.9,39,0.0 +11747,5,21.35,1,0.0 +11747,18,62.5,34,0.0 +11747,63,43.9,50,0.0 +11747,50,16.25,6,0.0 +11747,47,9.5,35,0.0 +11747,38,263.5,20,0.0 +11747,4,22,42,0.0 +11747,53,32.8,4,0.0 +11747,7,30,30,0.0 +11747,6,25,44,0.0 +11747,14,23.25,11,0.0 +11747,60,34,43,0.0 +11747,8,40,7,0.0 +11747,61,28.5,23,0.0 +11747,70,15,34,0.0 +11747,40,18.4,25,0.0 +11747,69,36,3,0.0 +11747,13,6,26,0.0 +11747,21,10,38,0.0 +11747,76,18,40,0.0 +11747,74,10,38,0.0 +11747,64,33.25,50,0.0 +11747,2,19,37,0.0 +11747,51,53,7,0.0 +11747,41,9.65,49,0.0 +11747,71,21.5,28,0.0 +11747,37,26,44,0.0 +11747,67,14,30,0.0 +11747,27,43.9,12,0.0 +11747,62,49.3,5,0.0 +11747,19,9.2,2,0.0 +11747,29,123.79,25,0.0 +11748,29,123.79,17,0.0 +11749,4,22,32,0.0 +11749,33,2.5,25,0.0 +11749,9,97,13,0.0 +11749,63,43.9,47,0.0 +11749,55,24,25,0.0 +11749,56,38,15,0.0 +11749,6,25,48,0.0 +11749,47,9.5,17,0.0 +11749,29,123.79,10,0.0 +11749,76,18,5,0.0 +11749,46,12,7,0.0 +11749,39,18,6,0.0 +11749,68,12.5,46,0.0 +11749,30,25.89,2,0.0 +11749,75,7.75,33,0.0 +11749,49,20,37,0.0 +11749,11,21,25,0.0 +11749,69,36,21,0.0 +11749,62,49.3,14,0.0 +11749,23,9,8,0.0 +11749,18,62.5,31,0.0 +11749,52,7,1,0.0 +11749,28,45.6,39,0.0 +11749,1,18,16,0.0 +11749,50,16.25,15,0.0 +11749,72,34.8,33,0.0 +11749,14,23.25,21,0.0 +11749,8,40,22,0.0 +11749,41,9.65,38,0.0 +11749,54,7.45,11,0.0 +11749,32,32,35,0.0 +11749,51,53,26,0.0 +11749,66,17,41,0.0 +11749,31,12.5,25,0.0 +11749,43,46,4,0.0 +11749,13,6,17,0.0 +11749,74,10,35,0.0 +11749,25,14,25,0.0 +11749,65,21.05,45,0.0 +11749,44,19.45,35,0.0 +11749,19,9.2,1,0.0 +11749,77,13,18,0.0 +11749,36,19,17,0.0 +11749,70,15,11,0.0 +11749,12,38,30,0.0 +11749,61,28.5,3,0.0 +11749,2,19,10,0.0 +11749,34,14,25,0.0 +11749,7,30,43,0.0 +11749,64,33.25,4,0.0 +11749,58,13.25,47,0.0 +11749,57,19.5,46,0.0 +11749,48,12.75,50,0.0 +11749,3,10,30,0.0 +11749,37,26,45,0.0 +11749,16,17.45,6,0.0 +11749,67,14,13,0.0 +11749,21,10,32,0.0 +11749,17,39,11,0.0 +11749,24,4.5,32,0.0 +11749,22,21,41,0.0 +11749,15,15.5,23,0.0 +11749,10,31,22,0.0 +11749,40,18.4,20,0.0 +11749,73,15,8,0.0 +11749,38,263.5,3,0.0 +11750,12,38,5,0.0 +11750,60,34,24,0.0 +11750,40,18.4,8,0.0 +11750,25,14,30,0.0 +11750,68,12.5,33,0.0 +11750,74,10,43,0.0 +11750,63,43.9,30,0.0 +11750,11,21,47,0.0 +11750,3,10,46,0.0 +11750,70,15,17,0.0 +11750,65,21.05,38,0.0 +11750,62,49.3,40,0.0 +11750,46,12,12,0.0 +11750,17,39,3,0.0 +11750,27,43.9,21,0.0 +11750,10,31,26,0.0 +11750,43,46,16,0.0 +11750,48,12.75,16,0.0 +11750,23,9,41,0.0 +11750,20,81,21,0.0 +11750,15,15.5,35,0.0 +11750,52,7,23,0.0 +11750,67,14,36,0.0 +11750,39,18,5,0.0 +11750,37,26,18,0.0 +11750,61,28.5,32,0.0 +11750,24,4.5,33,0.0 +11750,16,17.45,24,0.0 +11750,54,7.45,48,0.0 +11750,59,55,48,0.0 +11750,51,53,11,0.0 +11750,49,20,43,0.0 +11750,6,25,4,0.0 +11750,22,21,40,0.0 +11750,31,12.5,12,0.0 +11750,35,18,27,0.0 +11751,40,18.4,8,0.0 +11751,45,9.5,34,0.0 +11751,22,21,14,0.0 +11751,4,22,29,0.0 +11751,49,20,46,0.0 +11751,27,43.9,25,0.0 +11751,23,9,34,0.0 +11751,56,38,16,0.0 +11751,29,123.79,32,0.0 +11751,58,13.25,23,0.0 +11751,33,2.5,23,0.0 +11751,60,34,36,0.0 +11751,71,21.5,26,0.0 +11751,64,33.25,8,0.0 +11751,54,7.45,25,0.0 +11751,73,15,20,0.0 +11751,61,28.5,6,0.0 +11751,9,97,5,0.0 +11751,66,17,22,0.0 +11751,12,38,41,0.0 +11751,67,14,47,0.0 +11751,18,62.5,33,0.0 +11751,72,34.8,45,0.0 +11751,62,49.3,24,0.0 +11751,28,45.6,22,0.0 +11751,69,36,19,0.0 +11751,38,263.5,16,0.0 +11751,32,32,42,0.0 +11751,37,26,38,0.0 +11751,77,13,14,0.0 +11751,43,46,37,0.0 +11751,15,15.5,30,0.0 +11751,46,12,23,0.0 +11751,8,40,8,0.0 +11751,75,7.75,35,0.0 +11751,63,43.9,7,0.0 +11751,44,19.45,49,0.0 +11751,6,25,3,0.0 +11751,50,16.25,47,0.0 +11751,14,23.25,38,0.0 +11751,31,12.5,38,0.0 +11751,35,18,50,0.0 +11751,70,15,21,0.0 +11751,11,21,44,0.0 +11751,1,18,8,0.0 +11752,4,22,6,0.0 +11752,74,10,26,0.0 +11752,61,28.5,25,0.0 +11752,62,49.3,2,0.0 +11752,35,18,49,0.0 +11752,38,263.5,9,0.0 +11752,76,18,20,0.0 +11752,1,18,11,0.0 +11752,18,62.5,34,0.0 +11752,40,18.4,50,0.0 +11752,43,46,17,0.0 +11752,21,10,48,0.0 +11752,64,33.25,47,0.0 +11752,57,19.5,5,0.0 +11752,50,16.25,12,0.0 +11752,54,7.45,2,0.0 +11752,58,13.25,19,0.0 +11752,59,55,6,0.0 +11752,46,12,8,0.0 +11752,65,21.05,30,0.0 +11752,27,43.9,35,0.0 +11752,39,18,26,0.0 +11752,44,19.45,16,0.0 +11752,29,123.79,45,0.0 +11752,8,40,11,0.0 +11752,49,20,30,0.0 +11752,11,21,39,0.0 +11752,5,21.35,30,0.0 +11752,7,30,16,0.0 +11752,48,12.75,11,0.0 +11752,28,45.6,5,0.0 +11752,2,19,23,0.0 +11752,55,24,42,0.0 +11752,60,34,44,0.0 +11752,23,9,5,0.0 +11752,51,53,45,0.0 +11752,9,97,36,0.0 +11752,31,12.5,10,0.0 +11752,45,9.5,21,0.0 +11752,33,2.5,40,0.0 +11752,69,36,37,0.0 +11752,73,15,23,0.0 +11752,34,14,9,0.0 +11752,66,17,43,0.0 +11752,14,23.25,10,0.0 +11752,16,17.45,31,0.0 +11752,41,9.65,26,0.0 +11753,26,31.23,35,0.0 +11753,37,26,21,0.0 +11753,12,38,40,0.0 +11753,21,10,4,0.0 +11753,47,9.5,28,0.0 +11753,14,23.25,8,0.0 +11753,74,10,40,0.0 +11753,28,45.6,6,0.0 +11753,49,20,4,0.0 +11753,51,53,48,0.0 +11753,20,81,17,0.0 +11753,60,34,38,0.0 +11753,16,17.45,7,0.0 +11753,8,40,10,0.0 +11753,62,49.3,6,0.0 +11753,72,34.8,43,0.0 +11753,54,7.45,48,0.0 +11753,25,14,27,0.0 +11753,65,21.05,17,0.0 +11753,58,13.25,41,0.0 +11753,41,9.65,29,0.0 +11753,69,36,31,0.0 +11753,39,18,35,0.0 +11753,13,6,47,0.0 +11753,36,19,35,0.0 +11753,70,15,27,0.0 +11753,63,43.9,39,0.0 +11753,75,7.75,25,0.0 +11753,46,12,17,0.0 +11753,23,9,36,0.0 +11753,42,14,8,0.0 +11753,33,2.5,41,0.0 +11753,40,18.4,31,0.0 +11753,44,19.45,33,0.0 +11753,10,31,1,0.0 +11753,71,21.5,41,0.0 +11753,15,15.5,37,0.0 +11753,1,18,8,0.0 +11753,27,43.9,15,0.0 +11753,35,18,5,0.0 +11753,55,24,34,0.0 +11753,18,62.5,32,0.0 +11753,5,21.35,25,0.0 +11753,52,7,33,0.0 +11753,2,19,16,0.0 +11753,59,55,15,0.0 +11753,76,18,39,0.0 +11753,38,263.5,43,0.0 +11753,45,9.5,44,0.0 +11754,5,21.35,44,0.0 +11754,56,38,39,0.0 +11754,57,19.5,16,0.0 +11754,10,31,15,0.0 +11754,13,6,15,0.0 +11754,3,10,24,0.0 +11754,47,9.5,39,0.0 +11754,55,24,9,0.0 +11754,59,55,11,0.0 +11754,37,26,6,0.0 +11754,60,34,45,0.0 +11754,46,12,11,0.0 +11754,30,25.89,45,0.0 +11754,40,18.4,11,0.0 +11754,61,28.5,34,0.0 +11754,21,10,14,0.0 +11754,68,12.5,9,0.0 +11754,8,40,4,0.0 +11754,12,38,16,0.0 +11754,34,14,33,0.0 +11754,18,62.5,29,0.0 +11754,35,18,39,0.0 +11754,53,32.8,41,0.0 +11754,48,12.75,47,0.0 +11754,32,32,8,0.0 +11754,19,9.2,35,0.0 +11754,31,12.5,36,0.0 +11754,74,10,22,0.0 +11754,69,36,49,0.0 +11754,14,23.25,30,0.0 +11754,36,19,33,0.0 +11754,45,9.5,15,0.0 +11754,66,17,2,0.0 +11754,7,30,33,0.0 +11754,73,15,42,0.0 +11754,39,18,17,0.0 +11754,77,13,7,0.0 +11754,17,39,44,0.0 +11754,26,31.23,28,0.0 +11754,29,123.79,33,0.0 +11754,22,21,13,0.0 +11754,50,16.25,43,0.0 +11754,23,9,48,0.0 +11754,38,263.5,24,0.0 +11754,11,21,39,0.0 +11754,27,43.9,17,0.0 +11754,25,14,47,0.0 +11754,4,22,35,0.0 +11754,75,7.75,32,0.0 +11754,41,9.65,40,0.0 +11754,58,13.25,25,0.0 +11754,33,2.5,34,0.0 +11754,65,21.05,2,0.0 +11754,52,7,48,0.0 +11754,62,49.3,20,0.0 +11754,70,15,36,0.0 +11754,20,81,46,0.0 +11754,9,97,14,0.0 +11754,24,4.5,36,0.0 +11754,42,14,49,0.0 +11754,49,20,8,0.0 +11754,1,18,44,0.0 +11754,28,45.6,43,0.0 +11754,71,21.5,12,0.0 +11754,16,17.45,44,0.0 +11755,31,12.5,14,0.0 +11755,13,6,15,0.0 +11755,72,34.8,48,0.0 +11755,33,2.5,8,0.0 +11755,62,49.3,14,0.0 +11755,6,25,20,0.0 +11755,30,25.89,49,0.0 +11755,75,7.75,49,0.0 +11755,69,36,15,0.0 +11755,45,9.5,24,0.0 +11755,54,7.45,41,0.0 +11755,11,21,27,0.0 +11755,32,32,30,0.0 +11755,42,14,6,0.0 +11755,71,21.5,13,0.0 +11755,5,21.35,16,0.0 +11755,3,10,32,0.0 +11755,18,62.5,8,0.0 +11755,37,26,33,0.0 +11755,73,15,36,0.0 +11755,68,12.5,39,0.0 +11755,44,19.45,21,0.0 +11755,36,19,50,0.0 +11755,21,10,28,0.0 +11755,43,46,21,0.0 +11755,22,21,36,0.0 +11755,20,81,25,0.0 +11755,29,123.79,5,0.0 +11755,1,18,32,0.0 +11755,47,9.5,37,0.0 +11755,51,53,14,0.0 +11755,58,13.25,11,0.0 +11755,46,12,33,0.0 +11755,40,18.4,38,0.0 +11755,48,12.75,47,0.0 +11755,77,13,27,0.0 +11755,74,10,11,0.0 +11755,60,34,39,0.0 +11755,35,18,19,0.0 +11755,52,7,40,0.0 +11755,26,31.23,29,0.0 +11755,15,15.5,8,0.0 +11755,23,9,41,0.0 +11755,4,22,24,0.0 +11755,39,18,50,0.0 +11755,57,19.5,36,0.0 +11755,12,38,35,0.0 +11756,25,14,43,0.0 +11756,13,6,7,0.0 +11756,44,19.45,5,0.0 +11756,60,34,36,0.0 +11756,3,10,5,0.0 +11756,14,23.25,29,0.0 +11756,34,14,30,0.0 +11756,66,17,44,0.0 +11756,61,28.5,42,0.0 +11756,39,18,18,0.0 +11757,6,25,10,0.0 +11757,73,15,45,0.0 +11757,56,38,29,0.0 +11757,7,30,42,0.0 +11757,14,23.25,30,0.0 +11757,8,40,46,0.0 +11757,16,17.45,11,0.0 +11757,15,15.5,12,0.0 +11757,51,53,20,0.0 +11757,21,10,23,0.0 +11757,52,7,11,0.0 +11757,33,2.5,35,0.0 +11757,55,24,3,0.0 +11757,2,19,5,0.0 +11757,58,13.25,38,0.0 +11757,9,97,15,0.0 +11757,34,14,33,0.0 +11757,28,45.6,3,0.0 +11757,68,12.5,6,0.0 +11757,71,21.5,45,0.0 +11757,39,18,3,0.0 +11757,27,43.9,41,0.0 +11757,44,19.45,46,0.0 +11757,49,20,21,0.0 +11757,20,81,38,0.0 +11758,34,14,21,0.0 +11758,30,25.89,30,0.0 +11758,77,13,33,0.0 +11758,19,9.2,28,0.0 +11758,55,24,7,0.0 +11758,62,49.3,50,0.0 +11758,32,32,21,0.0 +11758,71,21.5,37,0.0 +11758,36,19,11,0.0 +11758,15,15.5,2,0.0 +11758,65,21.05,11,0.0 +11758,67,14,23,0.0 +11758,75,7.75,45,0.0 +11758,35,18,33,0.0 +11758,8,40,38,0.0 +11758,48,12.75,17,0.0 +11758,70,15,17,0.0 +11758,49,20,12,0.0 +11758,27,43.9,4,0.0 +11758,20,81,6,0.0 +11758,2,19,23,0.0 +11758,14,23.25,21,0.0 +11758,53,32.8,40,0.0 +11758,31,12.5,42,0.0 +11758,33,2.5,20,0.0 +11758,4,22,47,0.0 +11758,54,7.45,8,0.0 +11758,43,46,2,0.0 +11758,6,25,26,0.0 +11758,44,19.45,13,0.0 +11758,13,6,14,0.0 +11758,72,34.8,25,0.0 +11758,59,55,41,0.0 +11758,76,18,44,0.0 +11758,22,21,31,0.0 +11758,37,26,37,0.0 +11758,24,4.5,11,0.0 +11758,46,12,37,0.0 +11758,38,263.5,32,0.0 +11758,7,30,30,0.0 +11758,57,19.5,44,0.0 +11758,69,36,26,0.0 +11758,10,31,6,0.0 +11758,5,21.35,1,0.0 +11758,66,17,11,0.0 +11758,64,33.25,19,0.0 +11758,45,9.5,30,0.0 +11758,17,39,7,0.0 +11758,16,17.45,28,0.0 +11758,74,10,47,0.0 +11758,50,16.25,16,0.0 +11758,63,43.9,36,0.0 +11758,41,9.65,21,0.0 +11758,47,9.5,5,0.0 +11758,29,123.79,28,0.0 +11758,11,21,29,0.0 +11758,61,28.5,10,0.0 +11758,40,18.4,10,0.0 +11758,26,31.23,11,0.0 +11758,9,97,29,0.0 +11758,73,15,28,0.0 +11758,60,34,8,0.0 +11758,3,10,22,0.0 +11758,28,45.6,45,0.0 +11758,58,13.25,11,0.0 +11758,68,12.5,12,0.0 +11758,21,10,34,0.0 +11758,39,18,19,0.0 +11758,56,38,47,0.0 +11758,18,62.5,13,0.0 +11758,42,14,6,0.0 +11759,51,53,20,0.0 +11759,62,49.3,48,0.0 +11759,49,20,1,0.0 +11759,77,13,8,0.0 +11759,72,34.8,44,0.0 +11759,28,45.6,41,0.0 +11759,75,7.75,45,0.0 +11759,73,15,20,0.0 +11759,16,17.45,40,0.0 +11759,71,21.5,33,0.0 +11759,19,9.2,39,0.0 +11759,54,7.45,5,0.0 +11759,43,46,26,0.0 +11759,12,38,42,0.0 +11759,48,12.75,41,0.0 +11759,23,9,9,0.0 +11759,60,34,4,0.0 +11759,64,33.25,18,0.0 +11759,68,12.5,32,0.0 +11759,55,24,25,0.0 +11759,5,21.35,12,0.0 +11759,66,17,33,0.0 +11759,56,38,8,0.0 +11759,25,14,10,0.0 +11759,36,19,37,0.0 +11759,35,18,7,0.0 +11759,13,6,18,0.0 +11759,61,28.5,7,0.0 +11759,29,123.79,28,0.0 +11759,58,13.25,10,0.0 +11759,59,55,43,0.0 +11759,34,14,42,0.0 +11759,14,23.25,22,0.0 +11759,27,43.9,34,0.0 +11759,26,31.23,50,0.0 +11759,24,4.5,13,0.0 +11759,69,36,11,0.0 +11759,10,31,15,0.0 +11759,37,26,42,0.0 +11759,74,10,32,0.0 +11759,44,19.45,1,0.0 +11759,41,9.65,34,0.0 +11759,52,7,40,0.0 +11759,9,97,36,0.0 +11759,1,18,8,0.0 +11759,39,18,2,0.0 +11759,65,21.05,49,0.0 +11759,38,263.5,14,0.0 +11759,42,14,47,0.0 +11759,6,25,25,0.0 +11759,67,14,41,0.0 +11759,4,22,7,0.0 +11759,15,15.5,40,0.0 +11759,70,15,12,0.0 +11759,8,40,25,0.0 +11759,32,32,47,0.0 +11759,76,18,27,0.0 +11760,75,7.75,4,0.0 +11760,24,4.5,1,0.0 +11760,35,18,29,0.0 +11760,45,9.5,29,0.0 +11760,54,7.45,10,0.0 +11760,36,19,48,0.0 +11760,41,9.65,32,0.0 +11760,18,62.5,19,0.0 +11760,77,13,6,0.0 +11760,39,18,10,0.0 +11760,69,36,29,0.0 +11760,62,49.3,7,0.0 +11760,4,22,6,0.0 +11760,11,21,5,0.0 +11760,71,21.5,41,0.0 +11760,68,12.5,3,0.0 +11760,19,9.2,15,0.0 +11760,49,20,40,0.0 +11760,15,15.5,26,0.0 +11760,17,39,23,0.0 +11760,14,23.25,46,0.0 +11760,73,15,13,0.0 +11760,44,19.45,24,0.0 +11760,10,31,36,0.0 +11760,3,10,40,0.0 +11760,38,263.5,38,0.0 +11760,40,18.4,31,0.0 +11760,66,17,21,0.0 +11760,64,33.25,25,0.0 +11760,30,25.89,8,0.0 +11760,65,21.05,23,0.0 +11760,46,12,50,0.0 +11760,57,19.5,3,0.0 +11760,61,28.5,24,0.0 +11760,31,12.5,42,0.0 +11760,32,32,5,0.0 +11760,6,25,3,0.0 +11760,1,18,37,0.0 +11760,50,16.25,18,0.0 +11760,56,38,43,0.0 +11760,16,17.45,2,0.0 +11760,47,9.5,44,0.0 +11760,9,97,35,0.0 +11760,43,46,25,0.0 +11760,2,19,33,0.0 +11760,48,12.75,7,0.0 +11760,76,18,10,0.0 +11760,37,26,50,0.0 +11760,23,9,13,0.0 +11760,26,31.23,46,0.0 +11760,63,43.9,41,0.0 +11760,70,15,16,0.0 +11760,58,13.25,40,0.0 +11760,25,14,12,0.0 +11760,27,43.9,41,0.0 +11760,28,45.6,16,0.0 +11760,60,34,27,0.0 +11760,52,7,32,0.0 +11760,67,14,37,0.0 +11760,5,21.35,14,0.0 +11760,42,14,15,0.0 +11760,20,81,29,0.0 +11760,53,32.8,28,0.0 +11761,71,21.5,33,0.0 +11761,2,19,2,0.0 +11761,47,9.5,45,0.0 +11761,69,36,18,0.0 +11761,1,18,30,0.0 +11761,74,10,28,0.0 +11761,62,49.3,14,0.0 +11761,13,6,44,0.0 +11761,44,19.45,27,0.0 +11761,66,17,45,0.0 +11761,73,15,34,0.0 +11761,64,33.25,25,0.0 +11761,14,23.25,13,0.0 +11761,41,9.65,19,0.0 +11761,24,4.5,44,0.0 +11761,60,34,18,0.0 +11761,10,31,39,0.0 +11761,9,97,10,0.0 +11761,16,17.45,38,0.0 +11761,8,40,15,0.0 +11761,42,14,20,0.0 +11761,43,46,25,0.0 +11761,68,12.5,44,0.0 +11761,27,43.9,6,0.0 +11761,28,45.6,50,0.0 +11761,37,26,10,0.0 +11761,26,31.23,43,0.0 +11761,31,12.5,7,0.0 +11761,77,13,12,0.0 +11761,63,43.9,26,0.0 +11761,70,15,46,0.0 +11761,12,38,11,0.0 +11761,7,30,24,0.0 +11761,39,18,26,0.0 +11761,45,9.5,45,0.0 +11761,48,12.75,30,0.0 +11761,52,7,6,0.0 +11761,72,34.8,37,0.0 +11761,30,25.89,10,0.0 +11761,25,14,24,0.0 +11761,19,9.2,32,0.0 +11761,58,13.25,30,0.0 +11761,53,32.8,19,0.0 +11761,4,22,40,0.0 +11761,6,25,18,0.0 +11761,50,16.25,29,0.0 +11761,55,24,17,0.0 +11761,20,81,44,0.0 +11761,5,21.35,1,0.0 +11761,32,32,24,0.0 +11761,38,263.5,46,0.0 +11761,51,53,20,0.0 +11761,40,18.4,48,0.0 +11761,34,14,46,0.0 +11761,76,18,6,0.0 +11761,29,123.79,32,0.0 +11761,49,20,39,0.0 +11761,75,7.75,17,0.0 +11761,65,21.05,29,0.0 +11761,54,7.45,8,0.0 +11761,35,18,8,0.0 +11761,22,21,19,0.0 +11761,3,10,9,0.0 +11761,33,2.5,25,0.0 +11761,18,62.5,18,0.0 +11761,17,39,32,0.0 +11761,59,55,21,0.0 +11761,61,28.5,3,0.0 +11761,67,14,49,0.0 +11761,15,15.5,26,0.0 +11761,23,9,35,0.0 +11761,46,12,40,0.0 +11761,57,19.5,21,0.0 +11761,11,21,26,0.0 +11762,10,31,4,0.0 +11762,77,13,45,0.0 +11762,24,4.5,9,0.0 +11762,5,21.35,18,0.0 +11762,30,25.89,19,0.0 +11762,29,123.79,4,0.0 +11762,53,32.8,13,0.0 +11762,44,19.45,18,0.0 +11762,75,7.75,32,0.0 +11762,22,21,36,0.0 +11762,60,34,49,0.0 +11762,2,19,49,0.0 +11762,41,9.65,5,0.0 +11762,62,49.3,31,0.0 +11762,57,19.5,47,0.0 +11762,1,18,15,0.0 +11762,69,36,32,0.0 +11762,71,21.5,28,0.0 +11762,36,19,22,0.0 +11762,42,14,35,0.0 +11762,19,9.2,25,0.0 +11762,32,32,10,0.0 +11762,64,33.25,7,0.0 +11762,70,15,33,0.0 +11762,33,2.5,9,0.0 +11762,50,16.25,4,0.0 +11762,59,55,7,0.0 +11762,67,14,48,0.0 +11762,13,6,28,0.0 +11762,52,7,4,0.0 +11762,8,40,43,0.0 +11762,26,31.23,26,0.0 +11762,37,26,38,0.0 +11762,7,30,31,0.0 +11762,51,53,40,0.0 +11762,48,12.75,6,0.0 +11762,12,38,15,0.0 +11762,20,81,39,0.0 +11762,45,9.5,35,0.0 +11762,39,18,10,0.0 +11762,61,28.5,46,0.0 +11762,46,12,26,0.0 +11762,17,39,47,0.0 +11762,76,18,9,0.0 +11762,58,13.25,22,0.0 +11762,68,12.5,50,0.0 +11762,16,17.45,49,0.0 +11762,14,23.25,43,0.0 +11762,74,10,38,0.0 +11762,65,21.05,27,0.0 +11762,38,263.5,37,0.0 +11762,21,10,39,0.0 +11762,34,14,16,0.0 +11762,28,45.6,7,0.0 +11762,4,22,23,0.0 +11762,11,21,42,0.0 +11762,49,20,2,0.0 +11762,47,9.5,16,0.0 +11762,23,9,3,0.0 +11762,25,14,44,0.0 +11762,43,46,25,0.0 +11762,9,97,13,0.0 +11762,40,18.4,15,0.0 +11762,18,62.5,50,0.0 +11762,72,34.8,44,0.0 +11762,56,38,8,0.0 +11762,27,43.9,47,0.0 +11762,6,25,26,0.0 +11762,35,18,1,0.0 +11762,63,43.9,27,0.0 +11762,15,15.5,38,0.0 +11762,3,10,7,0.0 +11762,54,7.45,42,0.0 +11762,31,12.5,5,0.0 +11762,73,15,27,0.0 +11762,66,17,50,0.0 +11762,55,24,6,0.0 +11763,8,40,45,0.0 +11763,28,45.6,32,0.0 +11763,69,36,25,0.0 +11763,26,31.23,20,0.0 +11763,75,7.75,30,0.0 +11763,76,18,19,0.0 +11763,12,38,16,0.0 +11763,1,18,13,0.0 +11763,2,19,41,0.0 +11763,22,21,36,0.0 +11763,63,43.9,25,0.0 +11763,48,12.75,48,0.0 +11763,43,46,7,0.0 +11763,56,38,19,0.0 +11763,23,9,7,0.0 +11763,25,14,35,0.0 +11763,7,30,41,0.0 +11763,29,123.79,48,0.0 +11763,31,12.5,46,0.0 +11763,36,19,32,0.0 +11763,5,21.35,45,0.0 +11763,24,4.5,25,0.0 +11763,16,17.45,23,0.0 +11764,8,40,2,0.0 +11764,77,13,7,0.0 +11764,72,34.8,6,0.0 +11764,36,19,44,0.0 +11764,34,14,30,0.0 +11764,75,7.75,29,0.0 +11764,46,12,11,0.0 +11764,55,24,46,0.0 +11764,27,43.9,38,0.0 +11764,71,21.5,39,0.0 +11764,68,12.5,40,0.0 +11764,70,15,16,0.0 +11764,38,263.5,44,0.0 +11764,4,22,25,0.0 +11764,48,12.75,16,0.0 +11764,22,21,41,0.0 +11764,19,9.2,35,0.0 +11765,36,19,41,0.0 +11765,51,53,2,0.0 +11765,37,26,14,0.0 +11765,18,62.5,35,0.0 +11765,67,14,6,0.0 +11765,38,263.5,22,0.0 +11765,1,18,18,0.0 +11765,59,55,49,0.0 +11765,43,46,15,0.0 +11765,30,25.89,2,0.0 +11765,71,21.5,35,0.0 +11765,47,9.5,50,0.0 +11765,22,21,35,0.0 +11765,10,31,39,0.0 +11765,57,19.5,8,0.0 +11765,69,36,3,0.0 +11765,54,7.45,13,0.0 +11765,55,24,35,0.0 +11765,77,13,2,0.0 +11765,74,10,42,0.0 +11765,29,123.79,34,0.0 +11765,46,12,40,0.0 +11765,58,13.25,32,0.0 +11765,68,12.5,13,0.0 +11765,49,20,22,0.0 +11765,8,40,20,0.0 +11765,56,38,36,0.0 +11765,72,34.8,22,0.0 +11765,75,7.75,45,0.0 +11765,11,21,37,0.0 +11765,53,32.8,21,0.0 +11765,17,39,29,0.0 +11765,28,45.6,16,0.0 +11765,5,21.35,47,0.0 +11765,16,17.45,12,0.0 +11765,24,4.5,6,0.0 +11765,60,34,27,0.0 +11765,27,43.9,5,0.0 +11765,21,10,12,0.0 +11765,26,31.23,47,0.0 +11765,15,15.5,22,0.0 +11765,25,14,33,0.0 +11765,34,14,50,0.0 +11765,2,19,40,0.0 +11765,3,10,20,0.0 +11765,52,7,21,0.0 +11765,65,21.05,31,0.0 +11765,13,6,17,0.0 +11765,63,43.9,12,0.0 +11765,6,25,4,0.0 +11765,48,12.75,44,0.0 +11765,12,38,32,0.0 +11765,19,9.2,38,0.0 +11765,66,17,40,0.0 +11765,76,18,46,0.0 +11765,9,97,4,0.0 +11766,47,9.5,17,0.0 +11766,50,16.25,41,0.0 +11766,55,24,50,0.0 +11766,11,21,21,0.0 +11766,60,34,30,0.0 +11766,23,9,25,0.0 +11766,7,30,20,0.0 +11766,17,39,45,0.0 +11766,44,19.45,20,0.0 +11766,6,25,4,0.0 +11766,12,38,14,0.0 +11766,26,31.23,36,0.0 +11766,31,12.5,42,0.0 +11766,74,10,36,0.0 +11766,36,19,28,0.0 +11766,75,7.75,25,0.0 +11766,27,43.9,12,0.0 +11766,54,7.45,40,0.0 +11766,58,13.25,12,0.0 +11766,46,12,40,0.0 +11766,30,25.89,43,0.0 +11766,51,53,10,0.0 +11766,41,9.65,32,0.0 +11766,70,15,40,0.0 +11766,33,2.5,15,0.0 +11766,62,49.3,44,0.0 +11766,1,18,42,0.0 +11766,19,9.2,49,0.0 +11766,32,32,29,0.0 +11766,34,14,13,0.0 +11766,37,26,38,0.0 +11766,8,40,26,0.0 +11766,61,28.5,13,0.0 +11766,59,55,8,0.0 +11766,15,15.5,2,0.0 +11766,21,10,1,0.0 +11766,53,32.8,20,0.0 +11766,29,123.79,44,0.0 +11766,64,33.25,35,0.0 +11766,66,17,18,0.0 +11766,22,21,14,0.0 +11766,16,17.45,36,0.0 +11766,13,6,11,0.0 +11766,14,23.25,4,0.0 +11766,9,97,21,0.0 +11766,71,21.5,33,0.0 +11766,18,62.5,6,0.0 +11766,77,13,40,0.0 +11766,49,20,17,0.0 +11766,56,38,4,0.0 +11766,57,19.5,45,0.0 +11766,38,263.5,7,0.0 +11766,4,22,19,0.0 +11766,43,46,30,0.0 +11766,5,21.35,47,0.0 +11766,2,19,38,0.0 +11766,42,14,19,0.0 +11766,3,10,24,0.0 +11766,73,15,15,0.0 +11766,67,14,44,0.0 +11766,20,81,23,0.0 +11766,72,34.8,29,0.0 +11766,68,12.5,25,0.0 +11766,52,7,19,0.0 +11766,10,31,50,0.0 +11766,48,12.75,42,0.0 +11766,65,21.05,6,0.0 +11766,69,36,25,0.0 +11766,35,18,35,0.0 +11766,76,18,1,0.0 +11766,40,18.4,29,0.0 +11766,28,45.6,50,0.0 +11766,63,43.9,41,0.0 +11766,45,9.5,31,0.0 +11766,25,14,14,0.0 +11766,24,4.5,27,0.0 +11767,53,32.8,9,0.0 +11767,43,46,50,0.0 +11767,42,14,39,0.0 +11767,41,9.65,43,0.0 +11767,70,15,29,0.0 +11767,4,22,1,0.0 +11767,35,18,39,0.0 +11767,5,21.35,3,0.0 +11767,21,10,21,0.0 +11767,56,38,28,0.0 +11767,61,28.5,14,0.0 +11767,57,19.5,14,0.0 +11767,48,12.75,1,0.0 +11767,12,38,19,0.0 +11767,14,23.25,22,0.0 +11767,51,53,19,0.0 +11767,16,17.45,11,0.0 +11767,54,7.45,30,0.0 +11767,50,16.25,47,0.0 +11767,37,26,17,0.0 +11767,33,2.5,14,0.0 +11767,6,25,18,0.0 +11767,59,55,8,0.0 +11767,71,21.5,34,0.0 +11767,1,18,28,0.0 +11767,76,18,39,0.0 +11767,30,25.89,32,0.0 +11767,11,21,41,0.0 +11767,52,7,38,0.0 +11767,58,13.25,22,0.0 +11767,46,12,30,0.0 +11767,31,12.5,6,0.0 +11767,13,6,27,0.0 +11767,18,62.5,35,0.0 +11767,55,24,13,0.0 +11767,7,30,23,0.0 +11767,39,18,45,0.0 +11767,17,39,50,0.0 +11767,20,81,12,0.0 +11767,60,34,14,0.0 +11767,75,7.75,23,0.0 +11767,3,10,41,0.0 +11767,45,9.5,11,0.0 +11767,44,19.45,35,0.0 +11767,8,40,3,0.0 +11767,24,4.5,16,0.0 +11767,27,43.9,19,0.0 +11767,29,123.79,25,0.0 +11767,74,10,40,0.0 +11767,73,15,16,0.0 +11767,69,36,13,0.0 +11768,37,26,26,0.0 +11768,14,23.25,17,0.0 +11768,68,12.5,4,0.0 +11768,63,43.9,32,0.0 +11768,43,46,34,0.0 +11768,50,16.25,32,0.0 +11768,75,7.75,36,0.0 +11768,77,13,49,0.0 +11768,32,32,34,0.0 +11768,19,9.2,36,0.0 +11768,2,19,19,0.0 +11768,60,34,4,0.0 +11768,64,33.25,7,0.0 +11768,49,20,7,0.0 +11768,39,18,5,0.0 +11768,51,53,37,0.0 +11768,31,12.5,17,0.0 +11768,5,21.35,1,0.0 +11768,76,18,14,0.0 +11768,20,81,5,0.0 +11768,42,14,42,0.0 +11768,11,21,22,0.0 +11768,16,17.45,30,0.0 +11768,25,14,18,0.0 +11768,21,10,7,0.0 +11768,62,49.3,23,0.0 +11768,47,9.5,5,0.0 +11768,67,14,21,0.0 +11768,27,43.9,8,0.0 +11768,3,10,29,0.0 +11768,72,34.8,42,0.0 +11768,45,9.5,37,0.0 +11768,1,18,43,0.0 +11768,18,62.5,34,0.0 +11768,4,22,17,0.0 +11768,24,4.5,5,0.0 +11768,38,263.5,48,0.0 +11768,59,55,48,0.0 +11768,29,123.79,4,0.0 +11768,58,13.25,4,0.0 +11768,36,19,1,0.0 +11768,41,9.65,4,0.0 +11768,57,19.5,15,0.0 +11768,46,12,12,0.0 +11769,4,22,48,0.0 +11769,69,36,11,0.0 +11769,72,34.8,34,0.0 +11769,24,4.5,38,0.0 +11769,59,55,34,0.0 +11769,52,7,20,0.0 +11769,43,46,13,0.0 +11769,45,9.5,44,0.0 +11769,14,23.25,35,0.0 +11769,77,13,37,0.0 +11769,37,26,42,0.0 +11769,40,18.4,7,0.0 +11769,21,10,45,0.0 +11769,27,43.9,24,0.0 +11769,38,263.5,25,0.0 +11769,53,32.8,20,0.0 +11769,56,38,50,0.0 +11769,34,14,1,0.0 +11769,26,31.23,36,0.0 +11769,65,21.05,16,0.0 +11769,74,10,39,0.0 +11769,22,21,29,0.0 +11769,50,16.25,22,0.0 +11769,75,7.75,23,0.0 +11769,36,19,7,0.0 +11769,13,6,50,0.0 +11769,33,2.5,7,0.0 +11769,51,53,39,0.0 +11769,12,38,42,0.0 +11769,44,19.45,24,0.0 +11769,16,17.45,34,0.0 +11769,7,30,26,0.0 +11769,1,18,33,0.0 +11769,30,25.89,4,0.0 +11769,61,28.5,48,0.0 +11769,17,39,30,0.0 +11769,70,15,48,0.0 +11769,63,43.9,16,0.0 +11769,18,62.5,25,0.0 +11769,35,18,17,0.0 +11769,47,9.5,31,0.0 +11769,57,19.5,15,0.0 +11769,49,20,5,0.0 +11769,68,12.5,13,0.0 +11769,28,45.6,45,0.0 +11769,10,31,19,0.0 +11769,54,7.45,25,0.0 +11769,2,19,18,0.0 +11769,64,33.25,23,0.0 +11769,9,97,29,0.0 +11769,60,34,49,0.0 +11769,66,17,41,0.0 +11769,73,15,32,0.0 +11769,39,18,31,0.0 +11769,55,24,48,0.0 +11769,67,14,6,0.0 +11769,76,18,10,0.0 +11769,3,10,20,0.0 +11769,15,15.5,48,0.0 +11769,41,9.65,6,0.0 +11769,23,9,28,0.0 +11769,8,40,17,0.0 +11769,5,21.35,17,0.0 +11769,6,25,31,0.0 +11770,15,15.5,36,0.0 +11770,9,97,28,0.0 +11770,44,19.45,7,0.0 +11770,35,18,13,0.0 +11770,65,21.05,13,0.0 +11770,30,25.89,22,0.0 +11770,49,20,7,0.0 +11770,48,12.75,3,0.0 +11770,34,14,18,0.0 +11770,23,9,26,0.0 +11770,51,53,9,0.0 +11770,66,17,15,0.0 +11770,41,9.65,4,0.0 +11770,67,14,35,0.0 +11770,27,43.9,25,0.0 +11770,42,14,19,0.0 +11770,62,49.3,45,0.0 +11770,29,123.79,35,0.0 +11770,16,17.45,48,0.0 +11770,68,12.5,19,0.0 +11770,24,4.5,47,0.0 +11770,69,36,35,0.0 +11770,28,45.6,31,0.0 +11770,3,10,47,0.0 +11770,4,22,38,0.0 +11770,59,55,5,0.0 +11770,31,12.5,11,0.0 +11770,26,31.23,6,0.0 +11770,21,10,18,0.0 +11770,57,19.5,31,0.0 +11770,74,10,13,0.0 +11770,56,38,13,0.0 +11770,38,263.5,37,0.0 +11770,58,13.25,37,0.0 +11770,32,32,39,0.0 +11770,11,21,35,0.0 +11770,71,21.5,10,0.0 +11770,76,18,3,0.0 +11770,5,21.35,15,0.0 +11770,36,19,26,0.0 +11770,25,14,32,0.0 +11770,39,18,6,0.0 +11770,33,2.5,17,0.0 +11770,6,25,50,0.0 +11770,63,43.9,36,0.0 +11770,18,62.5,10,0.0 +11770,22,21,46,0.0 +11770,60,34,4,0.0 +11770,19,9.2,48,0.0 +11770,61,28.5,4,0.0 +11770,50,16.25,11,0.0 +11770,77,13,29,0.0 +11770,37,26,28,0.0 +11770,12,38,37,0.0 +11770,40,18.4,5,0.0 +11770,8,40,40,0.0 +11770,53,32.8,8,0.0 +11770,46,12,33,0.0 +11770,14,23.25,26,0.0 +11770,73,15,8,0.0 +11770,20,81,48,0.0 +11770,7,30,20,0.0 +11770,54,7.45,17,0.0 +11770,64,33.25,45,0.0 +11770,47,9.5,4,0.0 +11770,52,7,17,0.0 +11770,1,18,20,0.0 +11770,72,34.8,33,0.0 +11770,70,15,45,0.0 +11771,35,18,23,0.0 +11771,26,31.23,40,0.0 +11771,1,18,4,0.0 +11771,23,9,11,0.0 +11771,54,7.45,13,0.0 +11771,37,26,11,0.0 +11771,61,28.5,20,0.0 +11771,22,21,20,0.0 +11771,66,17,16,0.0 +11771,74,10,3,0.0 +11771,60,34,33,0.0 +11771,38,263.5,40,0.0 +11771,10,31,12,0.0 +11772,46,12,45,0.0 +11772,2,19,21,0.0 +11772,23,9,22,0.0 +11772,62,49.3,43,0.0 +11772,17,39,2,0.0 +11772,11,21,47,0.0 +11772,59,55,21,0.0 +11772,16,17.45,14,0.0 +11772,67,14,28,0.0 +11773,65,21.05,11,0.0 +11773,21,10,6,0.0 +11774,25,14,49,0.0 +11774,51,53,22,0.0 +11774,35,18,29,0.0 +11774,18,62.5,46,0.0 +11774,52,7,11,0.0 +11774,62,49.3,1,0.0 +11774,47,9.5,14,0.0 +11774,26,31.23,27,0.0 +11774,56,38,1,0.0 +11774,34,14,48,0.0 +11774,22,21,34,0.0 +11774,71,21.5,39,0.0 +11774,40,18.4,46,0.0 +11774,46,12,9,0.0 +11774,67,14,15,0.0 +11774,2,19,42,0.0 +11774,39,18,41,0.0 +11774,16,17.45,50,0.0 +11774,57,19.5,3,0.0 +11774,24,4.5,4,0.0 +11774,3,10,10,0.0 +11774,7,30,13,0.0 +11774,69,36,25,0.0 +11774,70,15,32,0.0 +11774,17,39,45,0.0 +11774,13,6,10,0.0 +11774,27,43.9,31,0.0 +11774,66,17,21,0.0 +11774,37,26,21,0.0 +11774,44,19.45,35,0.0 +11774,29,123.79,27,0.0 +11774,8,40,44,0.0 +11774,61,28.5,22,0.0 +11774,42,14,35,0.0 +11774,58,13.25,22,0.0 +11774,6,25,49,0.0 +11774,4,22,9,0.0 +11774,74,10,5,0.0 +11774,41,9.65,8,0.0 +11774,64,33.25,8,0.0 +11774,36,19,34,0.0 +11774,55,24,5,0.0 +11774,30,25.89,47,0.0 +11774,31,12.5,8,0.0 +11774,15,15.5,1,0.0 +11774,10,31,49,0.0 +11774,21,10,20,0.0 +11774,23,9,14,0.0 +11774,73,15,27,0.0 +11774,14,23.25,1,0.0 +11774,75,7.75,48,0.0 +11774,45,9.5,26,0.0 +11774,5,21.35,27,0.0 +11774,12,38,12,0.0 +11774,50,16.25,44,0.0 +11775,7,30,50,0.0 +11775,51,53,12,0.0 +11775,12,38,29,0.0 +11775,73,15,4,0.0 +11775,53,32.8,31,0.0 +11775,21,10,14,0.0 +11775,67,14,41,0.0 +11775,5,21.35,41,0.0 +11775,36,19,20,0.0 +11775,69,36,38,0.0 +11775,45,9.5,40,0.0 +11775,68,12.5,43,0.0 +11775,30,25.89,44,0.0 +11775,42,14,39,0.0 +11775,44,19.45,27,0.0 +11775,50,16.25,34,0.0 +11775,72,34.8,13,0.0 +11775,19,9.2,12,0.0 +11775,18,62.5,34,0.0 +11775,70,15,8,0.0 +11775,59,55,8,0.0 +11775,23,9,2,0.0 +11775,40,18.4,41,0.0 +11775,39,18,47,0.0 +11775,66,17,20,0.0 +11775,58,13.25,18,0.0 +11775,3,10,6,0.0 +11775,60,34,30,0.0 +11775,2,19,9,0.0 +11775,63,43.9,22,0.0 +11775,8,40,21,0.0 +11775,43,46,21,0.0 +11775,15,15.5,10,0.0 +11775,57,19.5,33,0.0 +11775,29,123.79,26,0.0 +11775,74,10,44,0.0 +11775,16,17.45,42,0.0 +11775,47,9.5,1,0.0 +11775,61,28.5,14,0.0 +11775,49,20,50,0.0 +11775,33,2.5,47,0.0 +11775,14,23.25,20,0.0 +11775,46,12,6,0.0 +11775,71,21.5,25,0.0 +11775,25,14,34,0.0 +11775,56,38,18,0.0 +11775,22,21,5,0.0 +11776,64,33.25,2,0.0 +11776,51,53,37,0.0 +11776,31,12.5,14,0.0 +11776,76,18,18,0.0 +11776,54,7.45,16,0.0 +11776,6,25,12,0.0 +11776,5,21.35,12,0.0 +11776,26,31.23,49,0.0 +11776,50,16.25,34,0.0 +11776,21,10,41,0.0 +11776,4,22,20,0.0 +11776,44,19.45,8,0.0 +11776,52,7,44,0.0 +11776,24,4.5,46,0.0 +11776,65,21.05,25,0.0 +11776,46,12,19,0.0 +11776,36,19,44,0.0 +11776,45,9.5,47,0.0 +11776,53,32.8,20,0.0 +11776,39,18,8,0.0 +11776,18,62.5,50,0.0 +11776,3,10,2,0.0 +11776,71,21.5,50,0.0 +11776,68,12.5,6,0.0 +11776,47,9.5,3,0.0 +11776,61,28.5,3,0.0 +11776,29,123.79,8,0.0 +11776,15,15.5,12,0.0 +11776,32,32,44,0.0 +11776,59,55,1,0.0 +11776,19,9.2,39,0.0 +11776,41,9.65,48,0.0 +11776,40,18.4,14,0.0 +11776,30,25.89,14,0.0 +11776,42,14,3,0.0 +11776,33,2.5,35,0.0 +11776,77,13,35,0.0 +11776,67,14,16,0.0 +11776,16,17.45,17,0.0 +11776,55,24,14,0.0 +11776,28,45.6,48,0.0 +11776,20,81,45,0.0 +11776,22,21,36,0.0 +11776,60,34,43,0.0 +11776,70,15,47,0.0 +11776,7,30,9,0.0 +11776,43,46,27,0.0 +11776,57,19.5,49,0.0 +11776,27,43.9,23,0.0 +11776,37,26,8,0.0 +11777,50,16.25,24,0.0 +11777,17,39,42,0.0 +11777,64,33.25,34,0.0 +11777,34,14,36,0.0 +11777,62,49.3,44,0.0 +11777,73,15,28,0.0 +11777,68,12.5,27,0.0 +11777,69,36,39,0.0 +11777,15,15.5,17,0.0 +11777,77,13,5,0.0 +11777,31,12.5,21,0.0 +11777,27,43.9,23,0.0 +11777,65,21.05,43,0.0 +11777,5,21.35,40,0.0 +11777,58,13.25,14,0.0 +11777,2,19,47,0.0 +11777,32,32,19,0.0 +11777,42,14,11,0.0 +11777,49,20,2,0.0 +11777,25,14,25,0.0 +11777,45,9.5,42,0.0 +11777,51,53,10,0.0 +11777,1,18,42,0.0 +11777,24,4.5,16,0.0 +11777,28,45.6,38,0.0 +11777,37,26,10,0.0 +11777,26,31.23,44,0.0 +11777,21,10,5,0.0 +11777,18,62.5,39,0.0 +11777,61,28.5,49,0.0 +11777,19,9.2,10,0.0 +11777,41,9.65,34,0.0 +11777,3,10,7,0.0 +11777,48,12.75,9,0.0 +11777,12,38,45,0.0 +11777,30,25.89,12,0.0 +11777,66,17,39,0.0 +11777,16,17.45,42,0.0 +11777,72,34.8,23,0.0 +11777,56,38,20,0.0 +11777,59,55,44,0.0 +11777,55,24,13,0.0 +11777,71,21.5,28,0.0 +11777,35,18,17,0.0 +11777,6,25,7,0.0 +11777,74,10,18,0.0 +11777,40,18.4,48,0.0 +11777,67,14,17,0.0 +11777,8,40,24,0.0 +11777,70,15,14,0.0 +11777,53,32.8,24,0.0 +11778,44,19.45,20,0.0 +11778,63,43.9,10,0.0 +11778,58,13.25,1,0.0 +11778,41,9.65,41,0.0 +11778,69,36,28,0.0 +11778,42,14,6,0.0 +11778,12,38,39,0.0 +11778,37,26,22,0.0 +11778,27,43.9,15,0.0 +11778,29,123.79,30,0.0 +11778,19,9.2,6,0.0 +11778,53,32.8,23,0.0 +11778,14,23.25,13,0.0 +11778,66,17,5,0.0 +11778,5,21.35,33,0.0 +11778,74,10,8,0.0 +11778,61,28.5,44,0.0 +11778,60,34,48,0.0 +11778,76,18,34,0.0 +11778,48,12.75,6,0.0 +11778,65,21.05,5,0.0 +11778,34,14,35,0.0 +11778,49,20,20,0.0 +11778,56,38,39,0.0 +11778,36,19,34,0.0 +11778,24,4.5,46,0.0 +11778,40,18.4,1,0.0 +11778,55,24,27,0.0 +11778,8,40,21,0.0 +11778,54,7.45,18,0.0 +11778,1,18,20,0.0 +11778,18,62.5,48,0.0 +11778,62,49.3,30,0.0 +11778,68,12.5,44,0.0 +11778,23,9,7,0.0 +11778,30,25.89,36,0.0 +11778,73,15,43,0.0 +11778,59,55,38,0.0 +11778,7,30,29,0.0 +11778,6,25,48,0.0 +11778,16,17.45,39,0.0 +11778,67,14,20,0.0 +11778,25,14,38,0.0 +11778,47,9.5,5,0.0 +11778,46,12,36,0.0 +11778,20,81,14,0.0 +11778,21,10,42,0.0 +11778,52,7,18,0.0 +11778,43,46,1,0.0 +11778,17,39,25,0.0 +11778,31,12.5,12,0.0 +11778,39,18,18,0.0 +11778,3,10,2,0.0 +11778,72,34.8,41,0.0 +11779,65,21.05,27,0.0 +11779,35,18,47,0.0 +11779,66,17,32,0.0 +11779,71,21.5,18,0.0 +11779,62,49.3,18,0.0 +11779,37,26,37,0.0 +11779,45,9.5,1,0.0 +11779,13,6,1,0.0 +11779,11,21,9,0.0 +11779,42,14,4,0.0 +11779,77,13,25,0.0 +11779,67,14,5,0.0 +11779,28,45.6,40,0.0 +11779,10,31,42,0.0 +11779,8,40,50,0.0 +11779,33,2.5,38,0.0 +11779,61,28.5,31,0.0 +11779,26,31.23,23,0.0 +11779,18,62.5,22,0.0 +11779,74,10,19,0.0 +11779,49,20,9,0.0 +11779,1,18,40,0.0 +11779,27,43.9,44,0.0 +11779,24,4.5,29,0.0 +11779,14,23.25,38,0.0 +11779,54,7.45,44,0.0 +11779,30,25.89,50,0.0 +11779,29,123.79,20,0.0 +11779,72,34.8,17,0.0 +11779,36,19,37,0.0 +11779,22,21,21,0.0 +11779,53,32.8,15,0.0 +11779,47,9.5,7,0.0 +11779,2,19,36,0.0 +11779,70,15,5,0.0 +11779,15,15.5,25,0.0 +11779,69,36,15,0.0 +11779,38,263.5,40,0.0 +11779,51,53,20,0.0 +11779,34,14,41,0.0 +11779,55,24,31,0.0 +11779,50,16.25,5,0.0 +11779,48,12.75,40,0.0 +11779,5,21.35,31,0.0 +11779,44,19.45,26,0.0 +11779,23,9,46,0.0 +11779,20,81,10,0.0 +11779,39,18,48,0.0 +11779,57,19.5,12,0.0 +11779,52,7,43,0.0 +11779,46,12,46,0.0 +11779,56,38,19,0.0 +11779,7,30,42,0.0 +11779,31,12.5,11,0.0 +11779,25,14,16,0.0 +11779,73,15,31,0.0 +11779,21,10,16,0.0 +11779,75,7.75,16,0.0 +11779,4,22,26,0.0 +11779,40,18.4,44,0.0 +11779,12,38,35,0.0 +11779,9,97,14,0.0 +11779,76,18,39,0.0 +11779,17,39,33,0.0 +11779,6,25,12,0.0 +11779,60,34,50,0.0 +11779,63,43.9,12,0.0 +11779,41,9.65,32,0.0 +11779,68,12.5,44,0.0 +11779,59,55,42,0.0 +11779,32,32,45,0.0 +11779,16,17.45,25,0.0 +11779,64,33.25,20,0.0 +11779,58,13.25,16,0.0 +11779,43,46,10,0.0 +11780,6,25,26,0.0 +11780,31,12.5,46,0.0 +11780,43,46,28,0.0 +11780,33,2.5,4,0.0 +11780,25,14,34,0.0 +11780,16,17.45,1,0.0 +11780,13,6,45,0.0 +11780,52,7,14,0.0 +11780,40,18.4,41,0.0 +11780,3,10,19,0.0 +11780,51,53,16,0.0 +11780,11,21,23,0.0 +11780,72,34.8,35,0.0 +11780,65,21.05,16,0.0 +11780,57,19.5,49,0.0 +11780,14,23.25,1,0.0 +11780,32,32,4,0.0 +11780,47,9.5,50,0.0 +11780,28,45.6,29,0.0 +11780,73,15,41,0.0 +11780,60,34,13,0.0 +11780,7,30,4,0.0 +11780,66,17,39,0.0 +11780,9,97,22,0.0 +11781,57,19.5,9,0.0 +11781,44,19.45,45,0.0 +11781,27,43.9,44,0.0 +11781,59,55,45,0.0 +11781,74,10,43,0.0 +11781,73,15,32,0.0 +11781,36,19,35,0.0 +11781,48,12.75,48,0.0 +11781,58,13.25,13,0.0 +11781,41,9.65,20,0.0 +11781,31,12.5,32,0.0 +11781,47,9.5,7,0.0 +11781,15,15.5,27,0.0 +11781,13,6,46,0.0 +11781,28,45.6,27,0.0 +11781,46,12,18,0.0 +11781,61,28.5,5,0.0 +11781,51,53,23,0.0 +11781,64,33.25,28,0.0 +11781,16,17.45,33,0.0 +11781,70,15,39,0.0 +11781,37,26,12,0.0 +11781,6,25,12,0.0 +11781,66,17,36,0.0 +11781,50,16.25,24,0.0 +11781,68,12.5,25,0.0 +11781,55,24,7,0.0 +11781,75,7.75,28,0.0 +11781,23,9,50,0.0 +11781,60,34,5,0.0 +11781,14,23.25,33,0.0 +11781,71,21.5,50,0.0 +11781,17,39,12,0.0 +11781,45,9.5,23,0.0 +11781,34,14,9,0.0 +11781,76,18,14,0.0 +11781,18,62.5,19,0.0 +11781,72,34.8,14,0.0 +11781,49,20,16,0.0 +11781,9,97,30,0.0 +11781,25,14,19,0.0 +11781,77,13,46,0.0 +11781,11,21,21,0.0 +11781,20,81,41,0.0 +11781,62,49.3,47,0.0 +11781,29,123.79,37,0.0 +11781,39,18,1,0.0 +11781,38,263.5,23,0.0 +11781,43,46,8,0.0 +11781,5,21.35,43,0.0 +11781,53,32.8,1,0.0 +11781,10,31,6,0.0 +11781,24,4.5,43,0.0 +11781,52,7,46,0.0 +11781,21,10,31,0.0 +11781,26,31.23,32,0.0 +11781,69,36,42,0.0 +11781,22,21,19,0.0 +11781,32,32,10,0.0 +11781,42,14,33,0.0 +11782,56,38,45,0.0 +11782,4,22,22,0.0 +11782,12,38,33,0.0 +11782,10,31,48,0.0 +11782,18,62.5,34,0.0 +11782,17,39,40,0.0 +11782,47,9.5,34,0.0 +11782,75,7.75,5,0.0 +11782,40,18.4,29,0.0 +11783,59,55,20,0.0 +11783,25,14,38,0.0 +11783,37,26,49,0.0 +11783,9,97,24,0.0 +11783,45,9.5,44,0.0 +11783,51,53,28,0.0 +11783,26,31.23,12,0.0 +11783,28,45.6,22,0.0 +11783,8,40,24,0.0 +11783,38,263.5,22,0.0 +11783,16,17.45,17,0.0 +11783,75,7.75,27,0.0 +11783,40,18.4,28,0.0 +11783,57,19.5,15,0.0 +11783,42,14,11,0.0 +11783,55,24,43,0.0 +11783,73,15,12,0.0 +11783,5,21.35,46,0.0 +11783,6,25,12,0.0 +11783,15,15.5,43,0.0 +11783,77,13,48,0.0 +11783,50,16.25,27,0.0 +11783,70,15,49,0.0 +11783,34,14,1,0.0 +11783,24,4.5,22,0.0 +11783,22,21,40,0.0 +11783,4,22,15,0.0 +11783,76,18,12,0.0 +11783,54,7.45,23,0.0 +11783,30,25.89,45,0.0 +11783,13,6,46,0.0 +11783,44,19.45,36,0.0 +11783,2,19,22,0.0 +11783,29,123.79,40,0.0 +11783,18,62.5,4,0.0 +11783,53,32.8,36,0.0 +11783,23,9,32,0.0 +11783,61,28.5,13,0.0 +11783,10,31,39,0.0 +11783,3,10,21,0.0 +11783,74,10,32,0.0 +11783,60,34,1,0.0 +11783,43,46,9,0.0 +11783,58,13.25,39,0.0 +11783,39,18,27,0.0 +11784,2,19,15,0.0 +11784,10,31,6,0.0 +11784,16,17.45,7,0.0 +11784,61,28.5,29,0.0 +11784,4,22,6,0.0 +11784,34,14,16,0.0 +11784,35,18,48,0.0 +11784,40,18.4,28,0.0 +11784,43,46,21,0.0 +11784,11,21,9,0.0 +11784,1,18,24,0.0 +11784,68,12.5,30,0.0 +11784,27,43.9,25,0.0 +11784,60,34,22,0.0 +11785,77,13,2,0.0 +11785,47,9.5,14,0.0 +11785,21,10,34,0.0 +11785,44,19.45,47,0.0 +11785,15,15.5,10,0.0 +11785,12,38,3,0.0 +11785,63,43.9,2,0.0 +11786,53,32.8,27,0.0 +11786,2,19,21,0.0 +11786,75,7.75,8,0.0 +11786,7,30,44,0.0 +11786,61,28.5,15,0.0 +11786,3,10,6,0.0 +11786,51,53,8,0.0 +11786,40,18.4,4,0.0 +11786,49,20,6,0.0 +11786,31,12.5,32,0.0 +11786,45,9.5,3,0.0 +11786,52,7,7,0.0 +11786,63,43.9,17,0.0 +11786,12,38,23,0.0 +11786,46,12,43,0.0 +11786,24,4.5,49,0.0 +11786,69,36,49,0.0 +11786,58,13.25,3,0.0 +11787,51,53,11,0.0 +11787,24,4.5,14,0.0 +11787,16,17.45,33,0.0 +11787,3,10,50,0.0 +11787,55,24,18,0.0 +11787,4,22,50,0.0 +11787,21,10,5,0.0 +11787,61,28.5,7,0.0 +11787,11,21,13,0.0 +11787,77,13,49,0.0 +11787,1,18,9,0.0 +11787,76,18,24,0.0 +11787,71,21.5,16,0.0 +11787,25,14,3,0.0 +11787,23,9,2,0.0 +11787,48,12.75,29,0.0 +11787,73,15,24,0.0 +11787,44,19.45,40,0.0 +11787,2,19,8,0.0 +11787,9,97,27,0.0 +11787,49,20,30,0.0 +11787,75,7.75,34,0.0 +11787,72,34.8,45,0.0 +11787,54,7.45,28,0.0 +11787,68,12.5,41,0.0 +11787,59,55,23,0.0 +11787,47,9.5,6,0.0 +11787,45,9.5,19,0.0 +11787,70,15,48,0.0 +11787,6,25,5,0.0 +11787,18,62.5,11,0.0 +11787,12,38,16,0.0 +11787,50,16.25,12,0.0 +11787,42,14,23,0.0 +11787,38,263.5,43,0.0 +11787,57,19.5,29,0.0 +11787,26,31.23,19,0.0 +11787,15,15.5,47,0.0 +11787,74,10,35,0.0 +11787,34,14,4,0.0 +11787,10,31,45,0.0 +11787,5,21.35,17,0.0 +11787,40,18.4,15,0.0 +11787,52,7,30,0.0 +11787,67,14,17,0.0 +11787,56,38,15,0.0 +11787,22,21,3,0.0 +11787,60,34,38,0.0 +11787,66,17,19,0.0 +11787,64,33.25,16,0.0 +11787,65,21.05,6,0.0 +11787,33,2.5,2,0.0 +11787,62,49.3,2,0.0 +11787,69,36,4,0.0 +11788,59,55,42,0.0 +11788,56,38,47,0.0 +11788,26,31.23,38,0.0 +11788,4,22,32,0.0 +11788,41,9.65,6,0.0 +11788,66,17,40,0.0 +11788,17,39,25,0.0 +11788,75,7.75,23,0.0 +11788,5,21.35,1,0.0 +11788,12,38,30,0.0 +11788,1,18,21,0.0 +11788,40,18.4,5,0.0 +11788,54,7.45,38,0.0 +11788,35,18,10,0.0 +11788,57,19.5,12,0.0 +11788,33,2.5,31,0.0 +11788,70,15,41,0.0 +11788,6,25,41,0.0 +11788,7,30,27,0.0 +11788,22,21,16,0.0 +11788,2,19,47,0.0 +11788,55,24,17,0.0 +11788,67,14,9,0.0 +11788,43,46,29,0.0 +11788,29,123.79,49,0.0 +11788,15,15.5,42,0.0 +11788,45,9.5,2,0.0 +11788,31,12.5,24,0.0 +11788,71,21.5,2,0.0 +11788,38,263.5,24,0.0 +11788,16,17.45,39,0.0 +11788,34,14,31,0.0 +11788,51,53,15,0.0 +11788,72,34.8,26,0.0 +11788,50,16.25,16,0.0 +11788,77,13,14,0.0 +11788,30,25.89,25,0.0 +11788,13,6,22,0.0 +11788,53,32.8,5,0.0 +11788,23,9,30,0.0 +11788,42,14,11,0.0 +11788,47,9.5,47,0.0 +11788,58,13.25,47,0.0 +11788,3,10,28,0.0 +11788,69,36,6,0.0 +11788,68,12.5,36,0.0 +11788,18,62.5,50,0.0 +11788,46,12,49,0.0 +11788,49,20,44,0.0 +11788,62,49.3,25,0.0 +11788,14,23.25,40,0.0 +11788,11,21,10,0.0 +11788,48,12.75,49,0.0 +11788,19,9.2,7,0.0 +11788,8,40,5,0.0 +11788,74,10,34,0.0 +11788,36,19,9,0.0 +11788,61,28.5,18,0.0 +11788,28,45.6,30,0.0 +11788,37,26,2,0.0 +11788,9,97,27,0.0 +11788,21,10,15,0.0 +11788,32,32,43,0.0 +11788,20,81,33,0.0 +11788,24,4.5,41,0.0 +11788,76,18,40,0.0 +11788,60,34,50,0.0 +11788,10,31,45,0.0 +11788,39,18,4,0.0 +11788,27,43.9,12,0.0 +11788,52,7,19,0.0 +11788,63,43.9,25,0.0 +11788,65,21.05,25,0.0 +11788,73,15,49,0.0 +11788,44,19.45,28,0.0 +11788,64,33.25,9,0.0 +11789,52,7,42,0.0 +11789,49,20,10,0.0 +11789,58,13.25,26,0.0 +11789,41,9.65,31,0.0 +11789,16,17.45,22,0.0 +11789,23,9,30,0.0 +11789,56,38,3,0.0 +11789,51,53,48,0.0 +11789,30,25.89,22,0.0 +11789,46,12,31,0.0 +11789,29,123.79,37,0.0 +11789,73,15,44,0.0 +11789,63,43.9,42,0.0 +11789,17,39,13,0.0 +11789,31,12.5,32,0.0 +11789,18,62.5,48,0.0 +11789,38,263.5,9,0.0 +11789,61,28.5,28,0.0 +11789,66,17,5,0.0 +11789,48,12.75,31,0.0 +11789,76,18,35,0.0 +11789,57,19.5,25,0.0 +11789,62,49.3,18,0.0 +11789,27,43.9,36,0.0 +11789,40,18.4,12,0.0 +11789,71,21.5,2,0.0 +11789,67,14,41,0.0 +11789,10,31,29,0.0 +11789,5,21.35,8,0.0 +11789,33,2.5,3,0.0 +11789,54,7.45,37,0.0 +11789,60,34,27,0.0 +11789,75,7.75,42,0.0 +11789,43,46,30,0.0 +11789,11,21,29,0.0 +11789,47,9.5,16,0.0 +11789,21,10,18,0.0 +11789,1,18,41,0.0 +11789,64,33.25,25,0.0 +11789,15,15.5,22,0.0 +11790,17,39,5,0.0 +11790,13,6,50,0.0 +11790,24,4.5,46,0.0 +11790,61,28.5,45,0.0 +11790,53,32.8,28,0.0 +11790,29,123.79,32,0.0 +11790,58,13.25,1,0.0 +11790,39,18,49,0.0 +11790,28,45.6,12,0.0 +11790,74,10,44,0.0 +11790,43,46,35,0.0 +11790,26,31.23,34,0.0 +11790,19,9.2,28,0.0 +11790,54,7.45,22,0.0 +11790,31,12.5,31,0.0 +11790,41,9.65,37,0.0 +11790,12,38,16,0.0 +11790,7,30,22,0.0 +11790,44,19.45,18,0.0 +11790,23,9,12,0.0 +11790,3,10,3,0.0 +11790,34,14,20,0.0 +11790,45,9.5,40,0.0 +11790,27,43.9,4,0.0 +11790,71,21.5,29,0.0 +11790,63,43.9,22,0.0 +11790,49,20,17,0.0 +11790,65,21.05,23,0.0 +11790,11,21,8,0.0 +11790,9,97,2,0.0 +11790,72,34.8,34,0.0 +11790,67,14,45,0.0 +11790,47,9.5,23,0.0 +11790,16,17.45,9,0.0 +11790,52,7,33,0.0 +11790,68,12.5,4,0.0 +11790,66,17,38,0.0 +11790,77,13,42,0.0 +11790,75,7.75,35,0.0 +11790,59,55,9,0.0 +11790,14,23.25,28,0.0 +11790,37,26,41,0.0 +11790,69,36,20,0.0 +11790,8,40,24,0.0 +11790,60,34,43,0.0 +11790,15,15.5,37,0.0 +11790,22,21,12,0.0 +11790,57,19.5,47,0.0 +11790,40,18.4,13,0.0 +11790,30,25.89,47,0.0 +11790,64,33.25,46,0.0 +11790,62,49.3,45,0.0 +11790,46,12,12,0.0 +11790,36,19,18,0.0 +11790,33,2.5,23,0.0 +11790,20,81,44,0.0 +11790,2,19,48,0.0 +11790,21,10,23,0.0 +11790,1,18,15,0.0 +11790,38,263.5,44,0.0 +11790,6,25,12,0.0 +11790,50,16.25,50,0.0 +11790,32,32,22,0.0 +11790,76,18,31,0.0 +11790,73,15,44,0.0 +11790,18,62.5,3,0.0 +11790,25,14,38,0.0 +11790,70,15,25,0.0 +11790,56,38,36,0.0 +11791,17,39,32,0.0 +11791,44,19.45,15,0.0 +11791,37,26,27,0.0 +11791,63,43.9,38,0.0 +11791,29,123.79,34,0.0 +11791,13,6,14,0.0 +11791,47,9.5,48,0.0 +11791,26,31.23,11,0.0 +11791,18,62.5,3,0.0 +11791,11,21,10,0.0 +11791,2,19,37,0.0 +11791,46,12,15,0.0 +11791,23,9,40,0.0 +11791,12,38,34,0.0 +11791,41,9.65,24,0.0 +11791,74,10,27,0.0 +11791,67,14,37,0.0 +11791,38,263.5,25,0.0 +11791,51,53,36,0.0 +11791,30,25.89,33,0.0 +11791,28,45.6,30,0.0 +11791,39,18,26,0.0 +11791,15,15.5,41,0.0 +11791,54,7.45,32,0.0 +11791,69,36,19,0.0 +11791,1,18,24,0.0 +11791,20,81,37,0.0 +11791,49,20,16,0.0 +11791,40,18.4,34,0.0 +11791,25,14,50,0.0 +11791,42,14,39,0.0 +11791,70,15,38,0.0 +11791,35,18,34,0.0 +11791,50,16.25,22,0.0 +11791,16,17.45,16,0.0 +11791,58,13.25,49,0.0 +11791,60,34,31,0.0 +11791,52,7,23,0.0 +11791,56,38,20,0.0 +11791,34,14,10,0.0 +11791,77,13,47,0.0 +11791,27,43.9,22,0.0 +11791,71,21.5,30,0.0 +11791,68,12.5,46,0.0 +11791,3,10,31,0.0 +11791,31,12.5,22,0.0 +11791,72,34.8,42,0.0 +11791,8,40,45,0.0 +11791,62,49.3,44,0.0 +11791,33,2.5,30,0.0 +11791,5,21.35,25,0.0 +11791,65,21.05,28,0.0 +11791,48,12.75,23,0.0 +11791,21,10,8,0.0 +11791,4,22,30,0.0 +11791,9,97,18,0.0 +11791,32,32,14,0.0 +11791,61,28.5,35,0.0 +11791,76,18,41,0.0 +11791,36,19,25,0.0 +11791,6,25,16,0.0 +11791,22,21,25,0.0 +11792,74,10,41,0.0 +11792,52,7,44,0.0 +11792,57,19.5,2,0.0 +11792,18,62.5,42,0.0 +11792,66,17,35,0.0 +11792,33,2.5,20,0.0 +11792,7,30,46,0.0 +11792,49,20,4,0.0 +11792,25,14,14,0.0 +11792,12,38,44,0.0 +11792,53,32.8,48,0.0 +11792,47,9.5,41,0.0 +11792,1,18,5,0.0 +11792,42,14,14,0.0 +11792,48,12.75,42,0.0 +11792,35,18,3,0.0 +11792,34,14,26,0.0 +11792,68,12.5,6,0.0 +11792,76,18,2,0.0 +11792,43,46,31,0.0 +11792,6,25,7,0.0 +11792,46,12,27,0.0 +11792,45,9.5,29,0.0 +11792,16,17.45,8,0.0 +11792,31,12.5,28,0.0 +11792,28,45.6,44,0.0 +11792,2,19,50,0.0 +11792,59,55,45,0.0 +11792,30,25.89,27,0.0 +11792,62,49.3,45,0.0 +11792,5,21.35,11,0.0 +11792,39,18,50,0.0 +11792,41,9.65,49,0.0 +11792,56,38,32,0.0 +11792,17,39,9,0.0 +11792,70,15,43,0.0 +11792,77,13,20,0.0 +11792,54,7.45,17,0.0 +11792,4,22,29,0.0 +11792,27,43.9,34,0.0 +11792,26,31.23,41,0.0 +11792,13,6,11,0.0 +11792,73,15,32,0.0 +11792,3,10,41,0.0 +11792,50,16.25,26,0.0 +11792,37,26,36,0.0 +11792,60,34,32,0.0 +11792,19,9.2,38,0.0 +11792,15,15.5,6,0.0 +11792,75,7.75,34,0.0 +11792,71,21.5,41,0.0 +11792,63,43.9,42,0.0 +11792,10,31,27,0.0 +11792,61,28.5,50,0.0 +11792,14,23.25,23,0.0 +11792,29,123.79,47,0.0 +11792,44,19.45,12,0.0 +11792,36,19,47,0.0 +11792,9,97,8,0.0 +11792,8,40,46,0.0 +11793,74,10,1,0.0 +11793,10,31,13,0.0 +11793,12,38,13,0.0 +11793,47,9.5,42,0.0 +11793,64,33.25,33,0.0 +11793,57,19.5,45,0.0 +11793,67,14,29,0.0 +11793,59,55,18,0.0 +11793,8,40,29,0.0 +11793,33,2.5,3,0.0 +11793,11,21,33,0.0 +11793,70,15,16,0.0 +11793,68,12.5,32,0.0 +11793,62,49.3,30,0.0 +11793,49,20,50,0.0 +11793,17,39,30,0.0 +11793,32,32,25,0.0 +11793,28,45.6,27,0.0 +11793,1,18,22,0.0 +11793,72,34.8,28,0.0 +11793,52,7,19,0.0 +11793,63,43.9,36,0.0 +11793,71,21.5,1,0.0 +11793,60,34,23,0.0 +11793,73,15,48,0.0 +11793,3,10,24,0.0 +11793,22,21,22,0.0 +11793,6,25,12,0.0 +11793,50,16.25,36,0.0 +11793,34,14,44,0.0 +11793,43,46,6,0.0 +11793,19,9.2,41,0.0 +11793,9,97,33,0.0 +11793,54,7.45,12,0.0 +11793,66,17,36,0.0 +11793,26,31.23,49,0.0 +11793,46,12,6,0.0 +11793,39,18,6,0.0 +11793,24,4.5,48,0.0 +11793,77,13,19,0.0 +11793,15,15.5,34,0.0 +11793,75,7.75,29,0.0 +11793,2,19,46,0.0 +11793,37,26,30,0.0 +11793,69,36,21,0.0 +11793,58,13.25,19,0.0 +11793,40,18.4,30,0.0 +11793,20,81,13,0.0 +11793,55,24,44,0.0 +11793,14,23.25,48,0.0 +11793,5,21.35,22,0.0 +11793,56,38,21,0.0 +11793,31,12.5,14,0.0 +11794,23,9,4,0.0 +11794,7,30,13,0.0 +11794,42,14,44,0.0 +11794,10,31,48,0.0 +11794,24,4.5,24,0.0 +11794,29,123.79,16,0.0 +11794,70,15,22,0.0 +11794,47,9.5,26,0.0 +11794,45,9.5,27,0.0 +11794,57,19.5,41,0.0 +11794,26,31.23,28,0.0 +11794,54,7.45,1,0.0 +11794,52,7,42,0.0 +11794,27,43.9,30,0.0 +11794,18,62.5,31,0.0 +11794,11,21,2,0.0 +11794,35,18,25,0.0 +11794,16,17.45,39,0.0 +11794,2,19,48,0.0 +11794,38,263.5,48,0.0 +11794,68,12.5,15,0.0 +11794,72,34.8,44,0.0 +11794,59,55,43,0.0 +11794,41,9.65,10,0.0 +11794,58,13.25,27,0.0 +11794,62,49.3,21,0.0 +11794,1,18,15,0.0 +11794,77,13,4,0.0 +11794,9,97,15,0.0 +11794,66,17,33,0.0 +11794,3,10,32,0.0 +11794,21,10,3,0.0 +11794,64,33.25,48,0.0 +11794,61,28.5,40,0.0 +11794,60,34,18,0.0 +11794,73,15,11,0.0 +11794,46,12,23,0.0 +11794,15,15.5,25,0.0 +11794,67,14,13,0.0 +11794,37,26,19,0.0 +11794,71,21.5,38,0.0 +11794,6,25,21,0.0 +11794,40,18.4,21,0.0 +11794,17,39,34,0.0 +11794,44,19.45,3,0.0 +11794,74,10,39,0.0 +11794,30,25.89,26,0.0 +11794,65,21.05,14,0.0 +11794,34,14,20,0.0 +11794,69,36,18,0.0 +11794,39,18,20,0.0 +11794,28,45.6,37,0.0 +11794,8,40,50,0.0 +11794,55,24,37,0.0 +11794,49,20,12,0.0 +11794,51,53,16,0.0 +11794,53,32.8,11,0.0 +11794,4,22,25,0.0 +11794,5,21.35,43,0.0 +11794,43,46,35,0.0 +11794,12,38,7,0.0 +11794,31,12.5,12,0.0 +11794,75,7.75,15,0.0 +11794,13,6,14,0.0 +11794,20,81,37,0.0 +11794,48,12.75,21,0.0 +11794,50,16.25,37,0.0 +11794,14,23.25,49,0.0 +11794,63,43.9,18,0.0 +11794,22,21,22,0.0 +11794,36,19,37,0.0 +11794,76,18,12,0.0 +11795,35,18,25,0.0 +11795,30,25.89,28,0.0 +11795,5,21.35,49,0.0 +11795,40,18.4,38,0.0 +11795,1,18,49,0.0 +11795,7,30,4,0.0 +11795,38,263.5,37,0.0 +11795,24,4.5,23,0.0 +11795,31,12.5,15,0.0 +11795,74,10,49,0.0 +11795,59,55,25,0.0 +11795,57,19.5,46,0.0 +11795,18,62.5,12,0.0 +11795,33,2.5,50,0.0 +11795,60,34,33,0.0 +11795,21,10,17,0.0 +11795,34,14,22,0.0 +11795,71,21.5,2,0.0 +11795,39,18,15,0.0 +11795,43,46,31,0.0 +11795,3,10,10,0.0 +11795,68,12.5,35,0.0 +11795,44,19.45,37,0.0 +11795,29,123.79,15,0.0 +11795,6,25,16,0.0 +11795,10,31,48,0.0 +11795,28,45.6,26,0.0 +11795,69,36,40,0.0 +11795,46,12,8,0.0 +11795,62,49.3,48,0.0 +11795,42,14,48,0.0 +11795,25,14,3,0.0 +11795,76,18,42,0.0 +11795,23,9,29,0.0 +11795,52,7,40,0.0 +11795,51,53,47,0.0 +11795,77,13,34,0.0 +11795,20,81,50,0.0 +11795,32,32,39,0.0 +11795,61,28.5,4,0.0 +11795,36,19,38,0.0 +11795,14,23.25,21,0.0 +11795,4,22,37,0.0 +11795,64,33.25,49,0.0 +11795,11,21,41,0.0 +11795,2,19,38,0.0 +11795,58,13.25,22,0.0 +11795,26,31.23,11,0.0 +11795,65,21.05,19,0.0 +11795,15,15.5,45,0.0 +11795,53,32.8,34,0.0 +11795,73,15,9,0.0 +11795,49,20,20,0.0 +11796,58,13.25,18,0.0 +11796,5,21.35,36,0.0 +11796,55,24,18,0.0 +11796,30,25.89,48,0.0 +11796,27,43.9,26,0.0 +11796,64,33.25,40,0.0 +11796,62,49.3,42,0.0 +11796,21,10,45,0.0 +11796,7,30,38,0.0 +11796,44,19.45,11,0.0 +11796,49,20,48,0.0 +11796,54,7.45,5,0.0 +11796,51,53,8,0.0 +11796,38,263.5,49,0.0 +11796,76,18,46,0.0 +11796,14,23.25,49,0.0 +11796,28,45.6,8,0.0 +11796,26,31.23,26,0.0 +11796,69,36,15,0.0 +11796,6,25,27,0.0 +11796,9,97,19,0.0 +11796,75,7.75,38,0.0 +11796,34,14,10,0.0 +11796,20,81,40,0.0 +11796,16,17.45,5,0.0 +11796,47,9.5,30,0.0 +11796,48,12.75,44,0.0 +11796,57,19.5,47,0.0 +11796,22,21,40,0.0 +11796,32,32,42,0.0 +11796,12,38,25,0.0 +11796,67,14,47,0.0 +11796,17,39,6,0.0 +11796,66,17,23,0.0 +11796,71,21.5,45,0.0 +11796,41,9.65,2,0.0 +11796,1,18,49,0.0 +11796,77,13,38,0.0 +11796,42,14,10,0.0 +11796,43,46,38,0.0 +11796,3,10,25,0.0 +11796,31,12.5,47,0.0 +11796,2,19,31,0.0 +11796,74,10,10,0.0 +11796,53,32.8,20,0.0 +11796,73,15,15,0.0 +11796,56,38,15,0.0 +11796,24,4.5,46,0.0 +11796,8,40,14,0.0 +11796,37,26,48,0.0 +11796,13,6,48,0.0 +11796,50,16.25,19,0.0 +11796,46,12,2,0.0 +11796,68,12.5,38,0.0 +11796,61,28.5,15,0.0 +11796,35,18,35,0.0 +11796,52,7,18,0.0 +11796,11,21,3,0.0 +11796,33,2.5,21,0.0 +11797,40,18.4,3,0.0 +11797,64,33.25,21,0.0 +11797,32,32,50,0.0 +11797,25,14,42,0.0 +11797,12,38,17,0.0 +11797,72,34.8,38,0.0 +11797,15,15.5,8,0.0 +11797,53,32.8,12,0.0 +11797,1,18,44,0.0 +11797,58,13.25,22,0.0 +11797,21,10,10,0.0 +11797,2,19,5,0.0 +11797,62,49.3,4,0.0 +11797,52,7,43,0.0 +11797,51,53,36,0.0 +11797,48,12.75,8,0.0 +11797,13,6,1,0.0 +11797,29,123.79,38,0.0 +11797,28,45.6,30,0.0 +11797,24,4.5,9,0.0 +11797,4,22,49,0.0 +11797,50,16.25,29,0.0 +11797,69,36,3,0.0 +11797,77,13,3,0.0 +11797,45,9.5,42,0.0 +11797,7,30,2,0.0 +11797,22,21,22,0.0 +11797,60,34,43,0.0 +11797,5,21.35,41,0.0 +11797,18,62.5,44,0.0 +11797,11,21,14,0.0 +11797,31,12.5,50,0.0 +11797,36,19,23,0.0 +11797,61,28.5,12,0.0 +11797,27,43.9,4,0.0 +11797,26,31.23,22,0.0 +11797,19,9.2,27,0.0 +11797,8,40,2,0.0 +11797,70,15,45,0.0 +11797,47,9.5,6,0.0 +11797,17,39,18,0.0 +11797,14,23.25,5,0.0 +11798,74,10,50,0.0 +11798,18,62.5,30,0.0 +11798,7,30,14,0.0 +11798,12,38,23,0.0 +11798,4,22,21,0.0 +11798,37,26,16,0.0 +11798,3,10,2,0.0 +11798,68,12.5,3,0.0 +11799,7,30,10,0.0 +11799,1,18,25,0.0 +11800,5,21.35,18,0.0 +11800,67,14,34,0.0 +11800,21,10,37,0.0 +11800,54,7.45,13,0.0 +11800,13,6,48,0.0 +11800,10,31,15,0.0 +11800,15,15.5,7,0.0 +11800,59,55,17,0.0 +11800,36,19,34,0.0 +11800,50,16.25,6,0.0 +11800,20,81,9,0.0 +11800,3,10,37,0.0 +11800,58,13.25,30,0.0 +11800,28,45.6,30,0.0 +11800,70,15,38,0.0 +11800,4,22,2,0.0 +11800,66,17,39,0.0 +11800,43,46,26,0.0 +11800,31,12.5,6,0.0 +11800,47,9.5,20,0.0 +11800,17,39,18,0.0 +11800,65,21.05,7,0.0 +11800,45,9.5,2,0.0 +11800,68,12.5,3,0.0 +11800,38,263.5,15,0.0 +11800,46,12,18,0.0 +11800,69,36,5,0.0 +11800,55,24,47,0.0 +11800,7,30,36,0.0 +11800,34,14,7,0.0 +11800,32,32,20,0.0 +11800,1,18,6,0.0 +11800,35,18,47,0.0 +11800,27,43.9,7,0.0 +11800,29,123.79,44,0.0 +11800,40,18.4,20,0.0 +11800,25,14,30,0.0 +11800,39,18,24,0.0 +11800,22,21,33,0.0 +11800,57,19.5,21,0.0 +11800,51,53,14,0.0 +11800,41,9.65,28,0.0 +11800,64,33.25,48,0.0 +11800,44,19.45,27,0.0 +11801,8,40,41,0.0 +11801,17,39,15,0.0 +11801,66,17,11,0.0 +11801,18,62.5,23,0.0 +11801,2,19,32,0.0 +11801,58,13.25,21,0.0 +11801,19,9.2,22,0.0 +11801,55,24,26,0.0 +11801,45,9.5,30,0.0 +11801,62,49.3,23,0.0 +11801,67,14,26,0.0 +11801,42,14,18,0.0 +11801,22,21,19,0.0 +11801,54,7.45,30,0.0 +11801,31,12.5,32,0.0 +11801,57,19.5,33,0.0 +11801,71,21.5,43,0.0 +11801,36,19,16,0.0 +11801,65,21.05,5,0.0 +11801,32,32,31,0.0 +11801,64,33.25,8,0.0 +11801,39,18,29,0.0 +11801,41,9.65,36,0.0 +11801,30,25.89,17,0.0 +11801,26,31.23,44,0.0 +11801,61,28.5,48,0.0 +11801,21,10,31,0.0 +11801,12,38,19,0.0 +11801,43,46,30,0.0 +11801,27,43.9,47,0.0 +11801,50,16.25,16,0.0 +11801,52,7,21,0.0 +11801,7,30,3,0.0 +11801,75,7.75,36,0.0 +11801,59,55,11,0.0 +11801,77,13,26,0.0 +11801,16,17.45,32,0.0 +11801,33,2.5,7,0.0 +11801,72,34.8,18,0.0 +11801,14,23.25,27,0.0 +11801,70,15,41,0.0 +11801,47,9.5,21,0.0 +11801,69,36,23,0.0 +11801,60,34,35,0.0 +11801,48,12.75,7,0.0 +11801,10,31,6,0.0 +11801,15,15.5,41,0.0 +11801,51,53,49,0.0 +11801,6,25,35,0.0 +11801,25,14,32,0.0 +11801,29,123.79,44,0.0 +11802,37,26,29,0.0 +11802,57,19.5,34,0.0 +11802,67,14,25,0.0 +11802,62,49.3,3,0.0 +11802,43,46,22,0.0 +11802,16,17.45,34,0.0 +11802,61,28.5,14,0.0 +11802,34,14,34,0.0 +11802,3,10,14,0.0 +11802,72,34.8,20,0.0 +11802,25,14,16,0.0 +11802,26,31.23,4,0.0 +11802,51,53,28,0.0 +11802,50,16.25,27,0.0 +11802,56,38,32,0.0 +11802,76,18,15,0.0 +11802,20,81,42,0.0 +11802,47,9.5,32,0.0 +11802,65,21.05,33,0.0 +11802,33,2.5,45,0.0 +11802,23,9,7,0.0 +11802,7,30,15,0.0 +11802,9,97,39,0.0 +11802,70,15,45,0.0 +11802,12,38,44,0.0 +11802,10,31,39,0.0 +11802,13,6,17,0.0 +11802,59,55,48,0.0 +11802,32,32,44,0.0 +11802,4,22,23,0.0 +11802,30,25.89,22,0.0 +11802,73,15,16,0.0 +11802,8,40,24,0.0 +11802,19,9.2,11,0.0 +11802,42,14,36,0.0 +11802,53,32.8,43,0.0 +11802,45,9.5,11,0.0 +11802,74,10,8,0.0 +11802,31,12.5,43,0.0 +11802,40,18.4,22,0.0 +11802,28,45.6,6,0.0 +11802,58,13.25,3,0.0 +11803,51,53,17,0.0 +11803,48,12.75,35,0.0 +11803,11,21,19,0.0 +11803,4,22,10,0.0 +11803,26,31.23,45,0.0 +11803,23,9,50,0.0 +11803,57,19.5,11,0.0 +11803,29,123.79,3,0.0 +11803,76,18,19,0.0 +11803,5,21.35,32,0.0 +11803,70,15,15,0.0 +11803,38,263.5,8,0.0 +11803,56,38,19,0.0 +11803,17,39,43,0.0 +11803,44,19.45,29,0.0 +11803,18,62.5,27,0.0 +11803,58,13.25,18,0.0 +11803,33,2.5,9,0.0 +11803,10,31,35,0.0 +11803,20,81,28,0.0 +11803,35,18,49,0.0 +11803,67,14,27,0.0 +11803,61,28.5,2,0.0 +11803,46,12,20,0.0 +11803,69,36,36,0.0 +11803,59,55,17,0.0 +11803,7,30,35,0.0 +11803,45,9.5,27,0.0 +11803,55,24,2,0.0 +11803,31,12.5,26,0.0 +11803,12,38,4,0.0 +11803,39,18,36,0.0 +11803,24,4.5,28,0.0 +11803,60,34,37,0.0 +11803,74,10,30,0.0 +11803,52,7,41,0.0 +11803,49,20,12,0.0 +11803,15,15.5,48,0.0 +11803,36,19,3,0.0 +11803,28,45.6,28,0.0 +11803,25,14,2,0.0 +11803,8,40,50,0.0 +11803,50,16.25,6,0.0 +11803,14,23.25,18,0.0 +11803,68,12.5,6,0.0 +11803,65,21.05,27,0.0 +11803,37,26,20,0.0 +11803,72,34.8,32,0.0 +11803,2,19,21,0.0 +11803,62,49.3,41,0.0 +11803,40,18.4,11,0.0 +11803,47,9.5,17,0.0 +11803,13,6,17,0.0 +11803,75,7.75,5,0.0 +11803,71,21.5,4,0.0 +11803,16,17.45,26,0.0 +11803,77,13,33,0.0 +11803,32,32,43,0.0 +11803,34,14,31,0.0 +11803,64,33.25,16,0.0 +11803,73,15,13,0.0 +11803,9,97,34,0.0 +11803,54,7.45,11,0.0 +11803,22,21,35,0.0 +11803,19,9.2,6,0.0 +11803,1,18,12,0.0 +11803,63,43.9,45,0.0 +11803,53,32.8,30,0.0 +11803,6,25,16,0.0 +11803,30,25.89,3,0.0 +11803,42,14,9,0.0 +11803,3,10,18,0.0 +11803,27,43.9,11,0.0 +11803,41,9.65,23,0.0 +11803,66,17,10,0.0 +11804,31,12.5,22,0.0 +11804,56,38,12,0.0 +11804,53,32.8,8,0.0 +11804,58,13.25,40,0.0 +11804,47,9.5,40,0.0 +11804,54,7.45,4,0.0 +11804,49,20,15,0.0 +11804,19,9.2,33,0.0 +11804,72,34.8,35,0.0 +11804,37,26,42,0.0 +11804,17,39,1,0.0 +11804,74,10,25,0.0 +11804,39,18,26,0.0 +11804,60,34,25,0.0 +11804,22,21,3,0.0 +11804,11,21,2,0.0 +11804,6,25,50,0.0 +11804,66,17,43,0.0 +11804,77,13,30,0.0 +11804,71,21.5,15,0.0 +11804,44,19.45,23,0.0 +11804,38,263.5,25,0.0 +11804,48,12.75,35,0.0 +11804,13,6,32,0.0 +11804,29,123.79,10,0.0 +11804,27,43.9,3,0.0 +11804,32,32,17,0.0 +11804,12,38,25,0.0 +11804,59,55,24,0.0 +11804,64,33.25,13,0.0 +11804,73,15,24,0.0 +11804,41,9.65,27,0.0 +11804,36,19,14,0.0 +11804,7,30,40,0.0 +11804,70,15,45,0.0 +11804,57,19.5,30,0.0 +11804,40,18.4,34,0.0 +11804,42,14,6,0.0 +11804,51,53,37,0.0 +11804,2,19,11,0.0 +11804,4,22,16,0.0 +11805,69,36,17,0.0 +11805,14,23.25,34,0.0 +11805,66,17,5,0.0 +11805,33,2.5,41,0.0 +11805,4,22,7,0.0 +11805,74,10,21,0.0 +11805,25,14,50,0.0 +11805,70,15,4,0.0 +11805,55,24,13,0.0 +11805,52,7,7,0.0 +11805,18,62.5,36,0.0 +11805,67,14,36,0.0 +11805,30,25.89,41,0.0 +11805,26,31.23,33,0.0 +11805,47,9.5,45,0.0 +11805,20,81,41,0.0 +11805,39,18,13,0.0 +11805,63,43.9,35,0.0 +11805,17,39,9,0.0 +11805,16,17.45,22,0.0 +11805,23,9,22,0.0 +11805,41,9.65,3,0.0 +11805,64,33.25,8,0.0 +11805,35,18,30,0.0 +11805,71,21.5,38,0.0 +11805,15,15.5,40,0.0 +11805,24,4.5,21,0.0 +11806,57,19.5,24,0.0 +11806,70,15,38,0.0 +11806,45,9.5,29,0.0 +11807,49,20,32,0.0 +11807,38,263.5,42,0.0 +11807,20,81,6,0.0 +11807,58,13.25,32,0.0 +11807,1,18,9,0.0 +11807,74,10,15,0.0 +11807,8,40,8,0.0 +11807,39,18,48,0.0 +11807,21,10,28,0.0 +11807,66,17,43,0.0 +11807,48,12.75,1,0.0 +11807,7,30,5,0.0 +11807,29,123.79,50,0.0 +11807,4,22,19,0.0 +11807,10,31,49,0.0 +11807,72,34.8,33,0.0 +11807,18,62.5,25,0.0 +11807,57,19.5,12,0.0 +11807,46,12,50,0.0 +11807,70,15,23,0.0 +11807,32,32,15,0.0 +11807,12,38,41,0.0 +11807,64,33.25,34,0.0 +11807,55,24,2,0.0 +11807,2,19,29,0.0 +11807,26,31.23,38,0.0 +11807,15,15.5,35,0.0 +11807,9,97,5,0.0 +11807,75,7.75,44,0.0 +11807,68,12.5,26,0.0 +11807,67,14,4,0.0 +11807,40,18.4,14,0.0 +11807,63,43.9,40,0.0 +11807,19,9.2,40,0.0 +11807,27,43.9,8,0.0 +11807,76,18,21,0.0 +11807,31,12.5,31,0.0 +11807,51,53,32,0.0 +11807,16,17.45,16,0.0 +11807,65,21.05,10,0.0 +11807,5,21.35,43,0.0 +11807,69,36,21,0.0 +11807,35,18,44,0.0 +11807,30,25.89,41,0.0 +11807,3,10,32,0.0 +11807,36,19,42,0.0 +11807,73,15,17,0.0 +11807,77,13,7,0.0 +11807,17,39,40,0.0 +11807,45,9.5,46,0.0 +11807,60,34,17,0.0 +11807,33,2.5,10,0.0 +11807,53,32.8,19,0.0 +11807,11,21,34,0.0 +11807,52,7,24,0.0 +11807,62,49.3,2,0.0 +11807,24,4.5,11,0.0 +11807,59,55,2,0.0 +11807,13,6,8,0.0 +11807,23,9,46,0.0 +11807,71,21.5,38,0.0 +11807,34,14,4,0.0 +11807,28,45.6,20,0.0 +11807,44,19.45,34,0.0 +11807,22,21,38,0.0 +11807,41,9.65,48,0.0 +11807,47,9.5,22,0.0 +11807,37,26,44,0.0 +11807,61,28.5,13,0.0 +11807,14,23.25,1,0.0 +11807,25,14,32,0.0 +11807,56,38,25,0.0 +11807,50,16.25,35,0.0 +11807,54,7.45,26,0.0 +11807,43,46,25,0.0 +11807,6,25,21,0.0 +11808,30,25.89,49,0.0 +11808,55,24,35,0.0 +11808,16,17.45,32,0.0 +11808,49,20,21,0.0 +11808,48,12.75,11,0.0 +11808,73,15,44,0.0 +11808,44,19.45,14,0.0 +11808,47,9.5,45,0.0 +11808,2,19,45,0.0 +11808,72,34.8,2,0.0 +11808,56,38,30,0.0 +11808,40,18.4,32,0.0 +11808,64,33.25,40,0.0 +11808,35,18,17,0.0 +11808,58,13.25,23,0.0 +11808,22,21,28,0.0 +11808,57,19.5,13,0.0 +11808,71,21.5,23,0.0 +11808,1,18,7,0.0 +11808,43,46,2,0.0 +11808,25,14,17,0.0 +11808,15,15.5,18,0.0 +11808,21,10,28,0.0 +11808,69,36,36,0.0 +11808,27,43.9,36,0.0 +11808,77,13,50,0.0 +11809,54,7.45,5,0.0 +11809,58,13.25,42,0.0 +11809,2,19,21,0.0 +11809,41,9.65,33,0.0 +11809,72,34.8,8,0.0 +11809,34,14,6,0.0 +11809,38,263.5,27,0.0 +11809,61,28.5,32,0.0 +11809,56,38,17,0.0 +11809,10,31,8,0.0 +11809,48,12.75,7,0.0 +11809,7,30,13,0.0 +11809,60,34,18,0.0 +11809,33,2.5,37,0.0 +11809,75,7.75,32,0.0 +11809,53,32.8,35,0.0 +11809,64,33.25,48,0.0 +11809,70,15,20,0.0 +11809,18,62.5,50,0.0 +11809,8,40,6,0.0 +11809,69,36,7,0.0 +11809,30,25.89,38,0.0 +11809,32,32,21,0.0 +11809,39,18,44,0.0 +11809,66,17,5,0.0 +11809,31,12.5,3,0.0 +11809,24,4.5,48,0.0 +11809,15,15.5,12,0.0 +11809,43,46,16,0.0 +11809,76,18,50,0.0 +11809,25,14,28,0.0 +11809,4,22,44,0.0 +11809,26,31.23,48,0.0 +11810,21,10,34,0.0 +11810,49,20,26,0.0 +11810,6,25,24,0.0 +11810,74,10,6,0.0 +11810,2,19,42,0.0 +11810,28,45.6,2,0.0 +11810,45,9.5,8,0.0 +11810,67,14,4,0.0 +11810,52,7,48,0.0 +11810,10,31,30,0.0 +11810,57,19.5,4,0.0 +11810,72,34.8,25,0.0 +11810,23,9,2,0.0 +11810,34,14,44,0.0 +11810,40,18.4,7,0.0 +11810,26,31.23,3,0.0 +11810,56,38,18,0.0 +11810,8,40,36,0.0 +11811,10,31,2,0.0 +11811,72,34.8,35,0.0 +11811,74,10,31,0.0 +11811,15,15.5,5,0.0 +11811,54,7.45,15,0.0 +11811,8,40,34,0.0 +11811,59,55,33,0.0 +11811,22,21,6,0.0 +11811,42,14,18,0.0 +11811,31,12.5,2,0.0 +11811,25,14,34,0.0 +11811,9,97,41,0.0 +11811,19,9.2,38,0.0 +11811,28,45.6,12,0.0 +11811,68,12.5,27,0.0 +11811,58,13.25,3,0.0 +11811,27,43.9,12,0.0 +11811,32,32,33,0.0 +11811,5,21.35,5,0.0 +11811,55,24,23,0.0 +11811,64,33.25,27,0.0 +11811,77,13,17,0.0 +11811,57,19.5,28,0.0 +11811,7,30,40,0.0 +11811,61,28.5,39,0.0 +11811,53,32.8,30,0.0 +11811,21,10,1,0.0 +11811,18,62.5,35,0.0 +11811,20,81,26,0.0 +11811,47,9.5,16,0.0 +11811,11,21,18,0.0 +11811,66,17,20,0.0 +11811,1,18,45,0.0 +11811,23,9,14,0.0 +11811,41,9.65,43,0.0 +11811,48,12.75,13,0.0 +11811,26,31.23,33,0.0 +11811,56,38,18,0.0 +11811,71,21.5,27,0.0 +11811,62,49.3,19,0.0 +11811,63,43.9,45,0.0 +11811,24,4.5,21,0.0 +11811,13,6,48,0.0 +11811,16,17.45,40,0.0 +11811,67,14,19,0.0 +11811,52,7,20,0.0 +11811,33,2.5,11,0.0 +11811,50,16.25,24,0.0 +11811,44,19.45,10,0.0 +11811,36,19,25,0.0 +11811,76,18,8,0.0 +11811,46,12,27,0.0 +11811,37,26,46,0.0 +11811,38,263.5,40,0.0 +11811,70,15,39,0.0 +11811,4,22,43,0.0 +11811,73,15,43,0.0 +11811,30,25.89,15,0.0 +11811,60,34,1,0.0 +11811,14,23.25,4,0.0 +11811,40,18.4,43,0.0 +11811,49,20,27,0.0 +11811,51,53,44,0.0 +11811,75,7.75,42,0.0 +11811,43,46,17,0.0 +11811,65,21.05,18,0.0 +11812,60,34,9,0.0 +11812,39,18,29,0.0 +11812,32,32,12,0.0 +11812,74,10,34,0.0 +11813,45,9.5,43,0.0 +11813,37,26,2,0.0 +11813,27,43.9,19,0.0 +11813,11,21,11,0.0 +11813,35,18,43,0.0 +11813,57,19.5,14,0.0 +11813,51,53,39,0.0 +11813,65,21.05,49,0.0 +11813,25,14,2,0.0 +11813,18,62.5,29,0.0 +11813,46,12,22,0.0 +11813,72,34.8,27,0.0 +11813,48,12.75,34,0.0 +11813,16,17.45,21,0.0 +11813,4,22,3,0.0 +11813,49,20,17,0.0 +11813,20,81,49,0.0 +11813,10,31,43,0.0 +11813,32,32,1,0.0 +11813,67,14,27,0.0 +11813,64,33.25,50,0.0 +11813,1,18,23,0.0 +11813,58,13.25,46,0.0 +11813,8,40,50,0.0 +11813,39,18,14,0.0 +11813,28,45.6,7,0.0 +11813,13,6,23,0.0 +11813,7,30,35,0.0 +11813,24,4.5,24,0.0 +11813,9,97,11,0.0 +11813,56,38,17,0.0 +11813,12,38,29,0.0 +11813,50,16.25,30,0.0 +11813,59,55,44,0.0 +11813,3,10,25,0.0 +11813,23,9,47,0.0 +11813,52,7,35,0.0 +11813,14,23.25,15,0.0 +11813,17,39,20,0.0 +11813,43,46,40,0.0 +11813,34,14,18,0.0 +11813,69,36,15,0.0 +11813,53,32.8,35,0.0 +11813,2,19,49,0.0 +11813,38,263.5,30,0.0 +11813,77,13,38,0.0 +11813,15,15.5,25,0.0 +11813,71,21.5,23,0.0 +11813,40,18.4,43,0.0 +11813,41,9.65,47,0.0 +11813,19,9.2,37,0.0 +11813,55,24,22,0.0 +11813,22,21,50,0.0 +11813,70,15,37,0.0 +11813,54,7.45,11,0.0 +11813,47,9.5,31,0.0 +11813,26,31.23,17,0.0 +11813,74,10,21,0.0 +11813,21,10,48,0.0 +11813,60,34,20,0.0 +11813,76,18,10,0.0 +11813,29,123.79,24,0.0 +11813,63,43.9,43,0.0 +11813,42,14,47,0.0 +11813,66,17,50,0.0 +11813,61,28.5,49,0.0 +11813,36,19,26,0.0 +11813,33,2.5,33,0.0 +11813,62,49.3,24,0.0 +11813,30,25.89,40,0.0 +11813,75,7.75,18,0.0 +11813,68,12.5,22,0.0 +11813,44,19.45,7,0.0 +11813,31,12.5,9,0.0 +11813,5,21.35,17,0.0 +11813,6,25,5,0.0 +11814,48,12.75,28,0.0 +11814,28,45.6,20,0.0 +11814,41,9.65,30,0.0 +11814,1,18,18,0.0 +11814,14,23.25,50,0.0 +11814,47,9.5,8,0.0 +11814,24,4.5,47,0.0 +11814,66,17,24,0.0 +11814,19,9.2,31,0.0 +11814,42,14,23,0.0 +11814,36,19,11,0.0 +11814,11,21,13,0.0 +11814,62,49.3,16,0.0 +11814,8,40,40,0.0 +11814,65,21.05,24,0.0 +11814,35,18,13,0.0 +11814,4,22,11,0.0 +11814,32,32,21,0.0 +11814,20,81,38,0.0 +11814,29,123.79,4,0.0 +11814,3,10,11,0.0 +11814,57,19.5,39,0.0 +11814,15,15.5,29,0.0 +11814,25,14,22,0.0 +11814,58,13.25,33,0.0 +11814,6,25,27,0.0 +11814,68,12.5,1,0.0 +11814,33,2.5,45,0.0 +11814,16,17.45,40,0.0 +11814,53,32.8,47,0.0 +11814,51,53,7,0.0 +11814,10,31,47,0.0 +11814,72,34.8,50,0.0 +11814,46,12,31,0.0 +11814,75,7.75,6,0.0 +11814,37,26,10,0.0 +11814,12,38,31,0.0 +11814,50,16.25,37,0.0 +11814,43,46,18,0.0 +11814,70,15,49,0.0 +11814,49,20,17,0.0 +11814,9,97,33,0.0 +11814,39,18,7,0.0 +11814,59,55,50,0.0 +11814,30,25.89,31,0.0 +11814,67,14,24,0.0 +11814,27,43.9,10,0.0 +11814,13,6,47,0.0 +11814,7,30,20,0.0 +11814,64,33.25,29,0.0 +11814,52,7,30,0.0 +11814,21,10,16,0.0 +11814,61,28.5,14,0.0 +11814,34,14,43,0.0 +11814,56,38,14,0.0 +11814,38,263.5,34,0.0 +11814,2,19,17,0.0 +11814,23,9,14,0.0 +11814,60,34,39,0.0 +11814,31,12.5,46,0.0 +11814,26,31.23,41,0.0 +11814,5,21.35,15,0.0 +11814,54,7.45,33,0.0 +11814,17,39,13,0.0 +11814,55,24,6,0.0 +11814,44,19.45,37,0.0 +11814,74,10,12,0.0 +11814,45,9.5,2,0.0 +11814,69,36,31,0.0 +11815,24,4.5,18,0.0 +11815,35,18,16,0.0 +11815,38,263.5,37,0.0 +11815,7,30,7,0.0 +11815,74,10,43,0.0 +11815,37,26,28,0.0 +11815,31,12.5,5,0.0 +11815,72,34.8,8,0.0 +11815,56,38,41,0.0 +11815,59,55,19,0.0 +11815,51,53,42,0.0 +11815,50,16.25,41,0.0 +11815,33,2.5,48,0.0 +11815,67,14,18,0.0 +11815,61,28.5,29,0.0 +11815,2,19,12,0.0 +11815,23,9,37,0.0 +11816,46,12,26,0.0 +11816,24,4.5,50,0.0 +11816,72,34.8,19,0.0 +11816,14,23.25,31,0.0 +11816,33,2.5,37,0.0 +11816,16,17.45,14,0.0 +11816,23,9,7,0.0 +11816,58,13.25,50,0.0 +11816,32,32,19,0.0 +11816,17,39,3,0.0 +11816,61,28.5,24,0.0 +11816,76,18,39,0.0 +11816,64,33.25,45,0.0 +11816,34,14,38,0.0 +11816,42,14,21,0.0 +11816,38,263.5,23,0.0 +11816,50,16.25,23,0.0 +11816,31,12.5,27,0.0 +11816,10,31,27,0.0 +11816,7,30,43,0.0 +11816,60,34,3,0.0 +11816,43,46,14,0.0 +11816,53,32.8,26,0.0 +11816,13,6,42,0.0 +11816,30,25.89,8,0.0 +11816,35,18,14,0.0 +11816,28,45.6,49,0.0 +11816,49,20,47,0.0 +11816,65,21.05,15,0.0 +11816,77,13,37,0.0 +11816,25,14,19,0.0 +11816,2,19,22,0.0 +11816,6,25,35,0.0 +11816,21,10,13,0.0 +11816,59,55,36,0.0 +11816,55,24,26,0.0 +11816,74,10,18,0.0 +11816,36,19,18,0.0 +11816,15,15.5,12,0.0 +11816,39,18,14,0.0 +11816,19,9.2,17,0.0 +11816,4,22,48,0.0 +11816,40,18.4,31,0.0 +11816,8,40,37,0.0 +11816,68,12.5,9,0.0 +11816,11,21,27,0.0 +11816,3,10,20,0.0 +11816,57,19.5,2,0.0 +11816,67,14,48,0.0 +11816,44,19.45,22,0.0 +11816,66,17,25,0.0 +11816,37,26,5,0.0 +11816,75,7.75,16,0.0 +11816,20,81,14,0.0 +11816,69,36,11,0.0 +11816,29,123.79,6,0.0 +11816,54,7.45,43,0.0 +11816,73,15,45,0.0 +11816,22,21,30,0.0 +11816,70,15,25,0.0 +11816,1,18,46,0.0 +11816,12,38,39,0.0 +11816,45,9.5,47,0.0 +11816,26,31.23,33,0.0 +11816,48,12.75,35,0.0 +11816,51,53,34,0.0 +11816,9,97,34,0.0 +11817,23,9,30,0.0 +11817,17,39,30,0.0 +11817,56,38,39,0.0 +11817,2,19,44,0.0 +11817,31,12.5,34,0.0 +11817,9,97,42,0.0 +11817,65,21.05,14,0.0 +11817,34,14,45,0.0 +11817,70,15,31,0.0 +11817,25,14,44,0.0 +11817,28,45.6,32,0.0 +11817,41,9.65,33,0.0 +11817,73,15,35,0.0 +11817,63,43.9,48,0.0 +11817,72,34.8,1,0.0 +11817,44,19.45,15,0.0 +11817,67,14,15,0.0 +11817,15,15.5,31,0.0 +11817,68,12.5,31,0.0 +11817,18,62.5,4,0.0 +11817,12,38,19,0.0 +11817,24,4.5,22,0.0 +11817,1,18,23,0.0 +11817,29,123.79,27,0.0 +11817,27,43.9,5,0.0 +11817,57,19.5,33,0.0 +11817,69,36,26,0.0 +11817,71,21.5,44,0.0 +11817,16,17.45,41,0.0 +11817,49,20,2,0.0 +11817,33,2.5,21,0.0 +11817,22,21,6,0.0 +11817,20,81,29,0.0 +11817,6,25,42,0.0 +11817,53,32.8,30,0.0 +11817,77,13,21,0.0 +11817,10,31,29,0.0 +11817,37,26,38,0.0 +11817,61,28.5,16,0.0 +11817,47,9.5,26,0.0 +11817,58,13.25,34,0.0 +11817,36,19,23,0.0 +11817,38,263.5,29,0.0 +11817,50,16.25,33,0.0 +11817,74,10,7,0.0 +11817,62,49.3,42,0.0 +11817,3,10,32,0.0 +11817,19,9.2,4,0.0 +11817,26,31.23,19,0.0 +11817,45,9.5,43,0.0 +11817,40,18.4,5,0.0 +11817,8,40,10,0.0 +11817,21,10,31,0.0 +11817,42,14,19,0.0 +11817,7,30,47,0.0 +11817,30,25.89,23,0.0 +11818,48,12.75,20,0.0 +11818,36,19,38,0.0 +11818,33,2.5,45,0.0 +11818,37,26,11,0.0 +11818,7,30,10,0.0 +11818,14,23.25,35,0.0 +11818,3,10,14,0.0 +11818,44,19.45,32,0.0 +11818,38,263.5,35,0.0 +11818,47,9.5,2,0.0 +11818,11,21,21,0.0 +11818,57,19.5,9,0.0 +11818,5,21.35,2,0.0 +11818,63,43.9,35,0.0 +11818,55,24,19,0.0 +11818,9,97,3,0.0 +11818,8,40,2,0.0 +11818,30,25.89,5,0.0 +11818,66,17,31,0.0 +11818,41,9.65,43,0.0 +11818,60,34,32,0.0 +11818,13,6,33,0.0 +11818,24,4.5,1,0.0 +11818,15,15.5,42,0.0 +11818,21,10,33,0.0 +11818,61,28.5,40,0.0 +11818,53,32.8,9,0.0 +11818,59,55,3,0.0 +11818,56,38,17,0.0 +11818,16,17.45,38,0.0 +11818,6,25,3,0.0 +11818,34,14,21,0.0 +11818,45,9.5,31,0.0 +11818,19,9.2,6,0.0 +11818,76,18,9,0.0 +11818,51,53,49,0.0 +11818,39,18,15,0.0 +11818,54,7.45,6,0.0 +11818,4,22,45,0.0 +11818,68,12.5,2,0.0 +11818,22,21,25,0.0 +11818,12,38,37,0.0 +11818,17,39,37,0.0 +11818,10,31,39,0.0 +11818,29,123.79,49,0.0 +11818,20,81,13,0.0 +11818,2,19,39,0.0 +11818,58,13.25,18,0.0 +11818,74,10,3,0.0 +11818,35,18,1,0.0 +11818,50,16.25,12,0.0 +11818,26,31.23,28,0.0 +11818,18,62.5,28,0.0 +11818,32,32,10,0.0 +11818,71,21.5,4,0.0 +11818,67,14,21,0.0 +11818,72,34.8,21,0.0 +11818,62,49.3,22,0.0 +11818,49,20,37,0.0 +11818,25,14,39,0.0 +11818,42,14,1,0.0 +11819,6,25,19,0.0 +11819,32,32,6,0.0 +11819,4,22,19,0.0 +11819,52,7,37,0.0 +11819,7,30,17,0.0 +11819,9,97,44,0.0 +11819,18,62.5,12,0.0 +11819,62,49.3,23,0.0 +11819,63,43.9,33,0.0 +11819,38,263.5,40,0.0 +11819,34,14,50,0.0 +11819,22,21,42,0.0 +11819,46,12,48,0.0 +11819,65,21.05,15,0.0 +11819,66,17,9,0.0 +11819,2,19,19,0.0 +11819,20,81,36,0.0 +11819,54,7.45,8,0.0 +11819,56,38,4,0.0 +11819,36,19,32,0.0 +11819,14,23.25,5,0.0 +11819,68,12.5,40,0.0 +11819,13,6,44,0.0 +11819,69,36,19,0.0 +11819,39,18,20,0.0 +11819,42,14,9,0.0 +11819,45,9.5,39,0.0 +11819,1,18,23,0.0 +11819,72,34.8,29,0.0 +11819,11,21,47,0.0 +11819,71,21.5,32,0.0 +11819,15,15.5,31,0.0 +11819,19,9.2,34,0.0 +11819,29,123.79,19,0.0 +11819,67,14,30,0.0 +11819,40,18.4,14,0.0 +11819,50,16.25,6,0.0 +11819,25,14,18,0.0 +11820,28,45.6,50,0.0 +11820,21,10,29,0.0 +11820,62,49.3,45,0.0 +11820,33,2.5,13,0.0 +11820,39,18,40,0.0 +11820,66,17,41,0.0 +11820,38,263.5,45,0.0 +11820,45,9.5,15,0.0 +11820,77,13,19,0.0 +11820,51,53,3,0.0 +11820,59,55,3,0.0 +11820,17,39,15,0.0 +11820,60,34,38,0.0 +11820,11,21,22,0.0 +11820,18,62.5,22,0.0 +11820,1,18,8,0.0 +11820,49,20,5,0.0 +11820,70,15,46,0.0 +11820,22,21,2,0.0 +11820,43,46,3,0.0 +11820,68,12.5,28,0.0 +11820,30,25.89,46,0.0 +11820,24,4.5,44,0.0 +11820,53,32.8,4,0.0 +11820,8,40,12,0.0 +11820,44,19.45,22,0.0 +11820,69,36,1,0.0 +11820,63,43.9,1,0.0 +11820,31,12.5,44,0.0 +11820,14,23.25,17,0.0 +11820,57,19.5,36,0.0 +11820,12,38,12,0.0 +11820,46,12,37,0.0 +11820,7,30,1,0.0 +11820,76,18,8,0.0 +11820,54,7.45,8,0.0 +11820,19,9.2,33,0.0 +11820,41,9.65,49,0.0 +11820,20,81,2,0.0 +11820,65,21.05,44,0.0 +11820,40,18.4,19,0.0 +11820,71,21.5,12,0.0 +11820,73,15,6,0.0 +11820,52,7,17,0.0 +11820,75,7.75,20,0.0 +11820,61,28.5,29,0.0 +11820,56,38,12,0.0 +11820,23,9,3,0.0 +11820,15,15.5,1,0.0 +11820,55,24,46,0.0 +11820,42,14,40,0.0 +11820,3,10,14,0.0 +11820,48,12.75,46,0.0 +11820,50,16.25,5,0.0 +11820,26,31.23,33,0.0 +11820,58,13.25,2,0.0 +11820,16,17.45,41,0.0 +11820,27,43.9,39,0.0 +11820,74,10,14,0.0 +11820,32,32,5,0.0 +11820,2,19,6,0.0 +11820,37,26,2,0.0 +11820,4,22,23,0.0 +11820,5,21.35,33,0.0 +11820,35,18,21,0.0 +11820,64,33.25,18,0.0 +11820,6,25,39,0.0 +11820,72,34.8,12,0.0 +11820,36,19,42,0.0 +11820,29,123.79,23,0.0 +11820,34,14,18,0.0 +11820,13,6,49,0.0 +11820,47,9.5,15,0.0 +11821,25,14,10,0.0 +11821,9,97,43,0.0 +11821,38,263.5,8,0.0 +11821,57,19.5,3,0.0 +11821,48,12.75,46,0.0 +11821,14,23.25,39,0.0 +11821,50,16.25,4,0.0 +11821,51,53,41,0.0 +11821,21,10,32,0.0 +11821,71,21.5,35,0.0 +11821,65,21.05,31,0.0 +11821,16,17.45,36,0.0 +11821,69,36,26,0.0 +11821,28,45.6,27,0.0 +11821,72,34.8,30,0.0 +11821,22,21,8,0.0 +11821,62,49.3,10,0.0 +11821,1,18,27,0.0 +11821,76,18,9,0.0 +11821,36,19,50,0.0 +11821,33,2.5,1,0.0 +11822,35,18,21,0.0 +11822,37,26,50,0.0 +11822,58,13.25,14,0.0 +11822,25,14,6,0.0 +11822,72,34.8,13,0.0 +11822,52,7,27,0.0 +11822,5,21.35,24,0.0 +11822,67,14,19,0.0 +11822,29,123.79,3,0.0 +11822,32,32,9,0.0 +11822,2,19,10,0.0 +11822,23,9,25,0.0 +11822,33,2.5,22,0.0 +11822,14,23.25,7,0.0 +11822,61,28.5,11,0.0 +11822,57,19.5,6,0.0 +11822,43,46,25,0.0 +11822,39,18,15,0.0 +11822,64,33.25,30,0.0 +11822,22,21,27,0.0 +11822,16,17.45,4,0.0 +11822,46,12,43,0.0 +11822,70,15,15,0.0 +11822,7,30,36,0.0 +11822,26,31.23,3,0.0 +11822,47,9.5,26,0.0 +11822,41,9.65,36,0.0 +11822,44,19.45,36,0.0 +11823,18,62.5,19,0.0 +11823,65,21.05,44,0.0 +11823,12,38,10,0.0 +11823,19,9.2,1,0.0 +11823,28,45.6,15,0.0 +11823,5,21.35,29,0.0 +11823,17,39,40,0.0 +11823,52,7,8,0.0 +11823,72,34.8,13,0.0 +11823,68,12.5,42,0.0 +11823,25,14,27,0.0 +11823,13,6,12,0.0 +11823,31,12.5,17,0.0 +11823,60,34,32,0.0 +11823,59,55,1,0.0 +11823,76,18,39,0.0 +11823,67,14,50,0.0 +11823,54,7.45,26,0.0 +11823,9,97,4,0.0 +11823,70,15,6,0.0 +11823,69,36,40,0.0 +11823,14,23.25,11,0.0 +11823,51,53,39,0.0 +11823,71,21.5,8,0.0 +11823,35,18,3,0.0 +11823,6,25,23,0.0 +11823,42,14,18,0.0 +11823,2,19,31,0.0 +11823,64,33.25,9,0.0 +11823,20,81,14,0.0 +11823,26,31.23,48,0.0 +11823,45,9.5,37,0.0 +11823,7,30,28,0.0 +11823,53,32.8,6,0.0 +11823,55,24,1,0.0 +11823,75,7.75,8,0.0 +11823,8,40,39,0.0 +11823,32,32,17,0.0 +11823,29,123.79,6,0.0 +11823,40,18.4,3,0.0 +11823,61,28.5,3,0.0 +11823,22,21,2,0.0 +11823,63,43.9,36,0.0 +11823,3,10,36,0.0 +11823,57,19.5,3,0.0 +11823,38,263.5,9,0.0 +11823,66,17,16,0.0 +11823,48,12.75,19,0.0 +11823,41,9.65,9,0.0 +11824,48,12.75,8,0.0 +11824,4,22,15,0.0 +11824,14,23.25,28,0.0 +11824,16,17.45,7,0.0 +11824,31,12.5,26,0.0 +11824,12,38,19,0.0 +11824,65,21.05,22,0.0 +11824,60,34,16,0.0 +11824,57,19.5,8,0.0 +11824,6,25,22,0.0 +11824,24,4.5,14,0.0 +11824,2,19,37,0.0 +11824,76,18,34,0.0 +11824,7,30,20,0.0 +11824,56,38,7,0.0 +11824,9,97,4,0.0 +11824,30,25.89,35,0.0 +11824,17,39,49,0.0 +11824,46,12,49,0.0 +11824,36,19,29,0.0 +11824,26,31.23,49,0.0 +11824,51,53,49,0.0 +11824,44,19.45,42,0.0 +11824,70,15,28,0.0 +11824,34,14,25,0.0 +11824,77,13,13,0.0 +11824,54,7.45,39,0.0 +11824,75,7.75,44,0.0 +11824,42,14,10,0.0 +11824,55,24,6,0.0 +11824,38,263.5,41,0.0 +11824,52,7,47,0.0 +11824,8,40,6,0.0 +11824,66,17,25,0.0 +11824,21,10,2,0.0 +11824,74,10,49,0.0 +11824,47,9.5,26,0.0 +11824,43,46,29,0.0 +11824,58,13.25,2,0.0 +11824,15,15.5,3,0.0 +11824,41,9.65,32,0.0 +11824,63,43.9,41,0.0 +11824,50,16.25,38,0.0 +11824,33,2.5,13,0.0 +11824,59,55,9,0.0 +11824,13,6,19,0.0 +11824,72,34.8,6,0.0 +11824,32,32,11,0.0 +11824,29,123.79,47,0.0 +11824,67,14,13,0.0 +11824,25,14,10,0.0 +11824,49,20,14,0.0 +11824,69,36,15,0.0 +11824,35,18,34,0.0 +11824,64,33.25,19,0.0 +11824,53,32.8,32,0.0 +11824,19,9.2,10,0.0 +11824,28,45.6,9,0.0 +11824,37,26,38,0.0 +11824,39,18,26,0.0 +11824,73,15,23,0.0 +11824,61,28.5,2,0.0 +11824,5,21.35,36,0.0 +11824,10,31,25,0.0 +11824,23,9,42,0.0 +11824,11,21,36,0.0 +11824,20,81,26,0.0 +11824,45,9.5,1,0.0 +11824,40,18.4,10,0.0 +11824,3,10,22,0.0 +11824,1,18,9,0.0 +11824,71,21.5,39,0.0 +11824,68,12.5,8,0.0 +11824,62,49.3,33,0.0 +11824,22,21,47,0.0 +11825,2,19,47,0.0 +11825,21,10,10,0.0 +11825,22,21,19,0.0 +11825,64,33.25,10,0.0 +11825,66,17,38,0.0 +11825,74,10,16,0.0 +11825,17,39,22,0.0 +11825,3,10,1,0.0 +11825,30,25.89,39,0.0 +11825,32,32,11,0.0 +11825,14,23.25,18,0.0 +11825,35,18,3,0.0 +11825,54,7.45,15,0.0 +11825,73,15,17,0.0 +11825,9,97,12,0.0 +11825,33,2.5,35,0.0 +11825,23,9,22,0.0 +11825,8,40,21,0.0 +11825,4,22,2,0.0 +11825,53,32.8,30,0.0 +11825,56,38,4,0.0 +11825,43,46,46,0.0 +11825,36,19,33,0.0 +11825,70,15,39,0.0 +11825,6,25,17,0.0 +11825,60,34,46,0.0 +11825,44,19.45,45,0.0 +11825,26,31.23,39,0.0 +11825,63,43.9,35,0.0 +11825,13,6,23,0.0 +11825,51,53,29,0.0 +11825,16,17.45,46,0.0 +11825,37,26,22,0.0 +11825,52,7,42,0.0 +11825,59,55,34,0.0 +11825,12,38,27,0.0 +11825,38,263.5,10,0.0 +11825,7,30,42,0.0 +11825,25,14,38,0.0 +11825,45,9.5,27,0.0 +11825,39,18,47,0.0 +11825,72,34.8,10,0.0 +11825,20,81,47,0.0 +11825,1,18,37,0.0 +11825,49,20,46,0.0 +11825,19,9.2,2,0.0 +11825,24,4.5,34,0.0 +11825,71,21.5,14,0.0 +11825,29,123.79,47,0.0 +11825,58,13.25,14,0.0 +11825,10,31,20,0.0 +11825,62,49.3,18,0.0 +11825,77,13,44,0.0 +11825,57,19.5,19,0.0 +11825,67,14,7,0.0 +11825,47,9.5,39,0.0 +11825,75,7.75,45,0.0 +11825,34,14,35,0.0 +11825,28,45.6,22,0.0 +11825,48,12.75,7,0.0 +11825,40,18.4,28,0.0 +11825,46,12,33,0.0 +11825,41,9.65,8,0.0 +11825,31,12.5,11,0.0 +11825,69,36,40,0.0 +11825,15,15.5,46,0.0 +11825,65,21.05,16,0.0 +11825,5,21.35,39,0.0 +11825,55,24,17,0.0 +11825,50,16.25,17,0.0 +11825,61,28.5,13,0.0 +11825,27,43.9,10,0.0 +11825,76,18,16,0.0 +11825,68,12.5,49,0.0 +11825,18,62.5,19,0.0 +11825,42,14,1,0.0 +11825,11,21,17,0.0 +11826,57,19.5,8,0.0 +11826,43,46,32,0.0 +11826,42,14,21,0.0 +11826,54,7.45,23,0.0 +11826,61,28.5,25,0.0 +11826,7,30,41,0.0 +11826,69,36,4,0.0 +11826,21,10,50,0.0 +11826,23,9,18,0.0 +11826,71,21.5,15,0.0 +11826,35,18,3,0.0 +11826,22,21,8,0.0 +11826,14,23.25,20,0.0 +11826,66,17,26,0.0 +11826,28,45.6,7,0.0 +11826,16,17.45,13,0.0 +11826,75,7.75,12,0.0 +11826,74,10,10,0.0 +11826,4,22,34,0.0 +11826,20,81,50,0.0 +11826,13,6,49,0.0 +11826,15,15.5,2,0.0 +11826,41,9.65,26,0.0 +11826,30,25.89,7,0.0 +11826,60,34,47,0.0 +11826,24,4.5,37,0.0 +11826,12,38,31,0.0 +11826,56,38,29,0.0 +11826,37,26,4,0.0 +11826,40,18.4,19,0.0 +11826,52,7,20,0.0 +11826,32,32,7,0.0 +11826,70,15,6,0.0 +11826,59,55,16,0.0 +11826,38,263.5,17,0.0 +11826,5,21.35,21,0.0 +11826,2,19,24,0.0 +11826,65,21.05,19,0.0 +11826,77,13,35,0.0 +11826,27,43.9,17,0.0 +11827,57,19.5,7,0.0 +11827,62,49.3,5,0.0 +11827,2,19,30,0.0 +11827,69,36,29,0.0 +11827,12,38,31,0.0 +11827,46,12,16,0.0 +11827,58,13.25,25,0.0 +11827,38,263.5,6,0.0 +11827,44,19.45,35,0.0 +11827,43,46,30,0.0 +11827,50,16.25,36,0.0 +11827,33,2.5,12,0.0 +11827,31,12.5,16,0.0 +11827,24,4.5,50,0.0 +11827,45,9.5,35,0.0 +11827,7,30,27,0.0 +11827,75,7.75,22,0.0 +11827,29,123.79,26,0.0 +11827,48,12.75,20,0.0 +11827,34,14,23,0.0 +11827,55,24,3,0.0 +11827,67,14,14,0.0 +11827,17,39,23,0.0 +11827,35,18,44,0.0 +11827,49,20,26,0.0 +11827,71,21.5,16,0.0 +11827,16,17.45,18,0.0 +11827,76,18,30,0.0 +11827,70,15,41,0.0 +11827,74,10,1,0.0 +11827,26,31.23,16,0.0 +11827,40,18.4,8,0.0 +11827,18,62.5,6,0.0 +11827,19,9.2,43,0.0 +11827,51,53,30,0.0 +11827,32,32,40,0.0 +11827,36,19,10,0.0 +11827,23,9,20,0.0 +11827,60,34,1,0.0 +11827,27,43.9,5,0.0 +11827,73,15,23,0.0 +11827,9,97,5,0.0 +11828,44,19.45,25,0.0 +11828,76,18,34,0.0 +11828,75,7.75,42,0.0 +11828,3,10,24,0.0 +11828,25,14,11,0.0 +11828,43,46,27,0.0 +11828,40,18.4,3,0.0 +11828,10,31,25,0.0 +11828,30,25.89,1,0.0 +11828,50,16.25,43,0.0 +11828,14,23.25,13,0.0 +11828,8,40,48,0.0 +11828,21,10,6,0.0 +11828,66,17,47,0.0 +11828,70,15,40,0.0 +11828,41,9.65,1,0.0 +11828,7,30,21,0.0 +11828,5,21.35,27,0.0 +11828,37,26,49,0.0 +11828,51,53,25,0.0 +11828,71,21.5,43,0.0 +11828,29,123.79,48,0.0 +11828,24,4.5,36,0.0 +11828,58,13.25,8,0.0 +11828,45,9.5,20,0.0 +11828,62,49.3,46,0.0 +11828,4,22,10,0.0 +11828,20,81,2,0.0 +11828,38,263.5,10,0.0 +11828,39,18,48,0.0 +11828,69,36,42,0.0 +11828,77,13,50,0.0 +11828,49,20,34,0.0 +11828,47,9.5,31,0.0 +11828,22,21,19,0.0 +11828,59,55,42,0.0 +11828,74,10,44,0.0 +11828,72,34.8,11,0.0 +11828,23,9,24,0.0 +11828,15,15.5,21,0.0 +11828,6,25,19,0.0 +11828,63,43.9,40,0.0 +11828,26,31.23,28,0.0 +11828,46,12,2,0.0 +11828,9,97,42,0.0 +11828,55,24,19,0.0 +11829,11,21,15,0.0 +11829,18,62.5,16,0.0 +11829,15,15.5,29,0.0 +11829,19,9.2,35,0.0 +11829,74,10,17,0.0 +11829,56,38,22,0.0 +11829,36,19,43,0.0 +11829,47,9.5,18,0.0 +11829,3,10,45,0.0 +11829,76,18,21,0.0 +11829,28,45.6,46,0.0 +11829,10,31,6,0.0 +11829,57,19.5,16,0.0 +11829,52,7,23,0.0 +11829,17,39,3,0.0 +11829,75,7.75,9,0.0 +11829,55,24,20,0.0 +11829,21,10,34,0.0 +11829,5,21.35,49,0.0 +11829,44,19.45,43,0.0 +11829,60,34,32,0.0 +11829,64,33.25,39,0.0 +11829,65,21.05,21,0.0 +11829,72,34.8,24,0.0 +11829,69,36,33,0.0 +11829,2,19,29,0.0 +11829,54,7.45,36,0.0 +11829,58,13.25,34,0.0 +11829,24,4.5,3,0.0 +11830,52,7,49,0.0 +11830,42,14,11,0.0 +11830,58,13.25,38,0.0 +11830,35,18,13,0.0 +11830,65,21.05,35,0.0 +11830,62,49.3,50,0.0 +11830,40,18.4,23,0.0 +11830,9,97,4,0.0 +11830,2,19,1,0.0 +11830,46,12,8,0.0 +11830,53,32.8,32,0.0 +11830,20,81,24,0.0 +11830,69,36,9,0.0 +11830,7,30,37,0.0 +11830,34,14,14,0.0 +11830,5,21.35,32,0.0 +11830,8,40,6,0.0 +11830,54,7.45,5,0.0 +11830,45,9.5,6,0.0 +11830,49,20,27,0.0 +11830,27,43.9,1,0.0 +11830,15,15.5,17,0.0 +11830,72,34.8,7,0.0 +11830,11,21,2,0.0 +11830,41,9.65,21,0.0 +11830,61,28.5,29,0.0 +11830,28,45.6,11,0.0 +11830,29,123.79,37,0.0 +11830,44,19.45,44,0.0 +11830,75,7.75,47,0.0 +11830,43,46,2,0.0 +11830,74,10,23,0.0 +11830,14,23.25,24,0.0 +11831,21,10,34,0.0 +11831,31,12.5,28,0.0 +11831,12,38,18,0.0 +11831,15,15.5,13,0.0 +11831,70,15,32,0.0 +11831,76,18,45,0.0 +11831,32,32,47,0.0 +11831,50,16.25,3,0.0 +11831,75,7.75,18,0.0 +11831,22,21,27,0.0 +11831,4,22,47,0.0 +11831,55,24,20,0.0 +11831,48,12.75,32,0.0 +11831,5,21.35,24,0.0 +11831,71,21.5,18,0.0 +11831,36,19,5,0.0 +11831,9,97,6,0.0 +11831,59,55,46,0.0 +11831,18,62.5,48,0.0 +11831,35,18,7,0.0 +11831,47,9.5,5,0.0 +11831,52,7,23,0.0 +11831,42,14,48,0.0 +11831,53,32.8,24,0.0 +11831,63,43.9,2,0.0 +11831,3,10,38,0.0 +11831,54,7.45,5,0.0 +11831,65,21.05,48,0.0 +11831,74,10,33,0.0 +11831,41,9.65,8,0.0 +11831,16,17.45,29,0.0 +11831,20,81,29,0.0 +11831,19,9.2,24,0.0 +11831,38,263.5,9,0.0 +11831,26,31.23,23,0.0 +11831,43,46,32,0.0 +11831,11,21,18,0.0 +11831,57,19.5,15,0.0 +11831,77,13,29,0.0 +11831,7,30,38,0.0 +11831,56,38,2,0.0 +11831,72,34.8,30,0.0 +11831,66,17,32,0.0 +11831,67,14,49,0.0 +11831,60,34,41,0.0 +11831,30,25.89,47,0.0 +11831,39,18,6,0.0 +11831,45,9.5,24,0.0 +11831,44,19.45,21,0.0 +11831,13,6,45,0.0 +11831,33,2.5,15,0.0 +11831,64,33.25,5,0.0 +11831,17,39,26,0.0 +11831,14,23.25,48,0.0 +11831,27,43.9,40,0.0 +11831,2,19,3,0.0 +11831,23,9,41,0.0 +11831,34,14,12,0.0 +11831,25,14,7,0.0 +11831,29,123.79,44,0.0 +11831,61,28.5,5,0.0 +11831,58,13.25,19,0.0 +11831,40,18.4,10,0.0 +11831,24,4.5,20,0.0 +11831,62,49.3,8,0.0 +11832,36,19,39,0.0 +11832,25,14,22,0.0 +11832,20,81,28,0.0 +11832,53,32.8,19,0.0 +11832,41,9.65,10,0.0 +11832,60,34,25,0.0 +11832,29,123.79,35,0.0 +11832,33,2.5,23,0.0 +11832,23,9,5,0.0 +11832,54,7.45,20,0.0 +11832,45,9.5,1,0.0 +11832,48,12.75,23,0.0 +11832,56,38,10,0.0 +11832,7,30,9,0.0 +11832,16,17.45,13,0.0 +11832,3,10,30,0.0 +11832,67,14,46,0.0 +11832,30,25.89,16,0.0 +11832,74,10,33,0.0 +11832,55,24,7,0.0 +11832,73,15,31,0.0 +11832,71,21.5,48,0.0 +11832,50,16.25,18,0.0 +11832,65,21.05,20,0.0 +11832,43,46,39,0.0 +11832,38,263.5,30,0.0 +11832,34,14,38,0.0 +11832,32,32,13,0.0 +11832,44,19.45,8,0.0 +11832,21,10,17,0.0 +11832,1,18,14,0.0 +11832,5,21.35,29,0.0 +11832,46,12,47,0.0 +11832,13,6,21,0.0 +11832,11,21,5,0.0 +11832,35,18,16,0.0 +11832,52,7,42,0.0 +11832,77,13,42,0.0 +11832,76,18,38,0.0 +11832,12,38,26,0.0 +11832,37,26,18,0.0 +11832,40,18.4,36,0.0 +11832,59,55,37,0.0 +11833,57,19.5,49,0.0 +11833,5,21.35,32,0.0 +11833,48,12.75,3,0.0 +11833,24,4.5,33,0.0 +11833,18,62.5,32,0.0 +11833,59,55,28,0.0 +11833,77,13,3,0.0 +11833,69,36,21,0.0 +11833,75,7.75,4,0.0 +11833,51,53,41,0.0 +11833,58,13.25,30,0.0 +11833,37,26,43,0.0 +11834,27,43.9,7,0.0 +11834,32,32,43,0.0 +11834,55,24,42,0.0 +11834,33,2.5,20,0.0 +11834,74,10,17,0.0 +11834,15,15.5,24,0.0 +11834,56,38,10,0.0 +11834,13,6,5,0.0 +11834,42,14,34,0.0 +11834,23,9,22,0.0 +11834,77,13,27,0.0 +11834,41,9.65,45,0.0 +11834,14,23.25,33,0.0 +11834,72,34.8,2,0.0 +11834,51,53,27,0.0 +11834,65,21.05,40,0.0 +11834,3,10,42,0.0 +11834,35,18,13,0.0 +11834,50,16.25,22,0.0 +11834,2,19,42,0.0 +11834,43,46,3,0.0 +11834,48,12.75,45,0.0 +11834,47,9.5,6,0.0 +11834,71,21.5,28,0.0 +11834,31,12.5,15,0.0 +11834,45,9.5,39,0.0 +11834,12,38,2,0.0 +11834,26,31.23,22,0.0 +11834,4,22,18,0.0 +11834,9,97,8,0.0 +11834,60,34,42,0.0 +11834,25,14,46,0.0 +11834,62,49.3,30,0.0 +11834,20,81,43,0.0 +11834,10,31,32,0.0 +11834,22,21,23,0.0 +11834,75,7.75,15,0.0 +11834,76,18,39,0.0 +11834,70,15,31,0.0 +11834,67,14,19,0.0 +11834,8,40,17,0.0 +11834,49,20,30,0.0 +11834,61,28.5,37,0.0 +11834,58,13.25,32,0.0 +11834,34,14,28,0.0 +11834,68,12.5,41,0.0 +11834,17,39,43,0.0 +11834,57,19.5,6,0.0 +11834,64,33.25,38,0.0 +11834,1,18,21,0.0 +11834,59,55,6,0.0 +11834,54,7.45,9,0.0 +11834,52,7,42,0.0 +11834,24,4.5,26,0.0 +11834,44,19.45,20,0.0 +11834,6,25,38,0.0 +11834,28,45.6,30,0.0 +11834,73,15,49,0.0 +11834,38,263.5,25,0.0 +11834,39,18,6,0.0 +11834,30,25.89,50,0.0 +11834,69,36,17,0.0 +11834,66,17,14,0.0 +11834,16,17.45,36,0.0 +11834,36,19,11,0.0 +11834,37,26,5,0.0 +11834,21,10,42,0.0 +11834,46,12,14,0.0 +11834,19,9.2,21,0.0 +11834,40,18.4,6,0.0 +11834,63,43.9,28,0.0 +11834,53,32.8,5,0.0 +11834,11,21,15,0.0 +11835,59,55,32,0.0 +11835,39,18,8,0.0 +11835,20,81,45,0.0 +11835,14,23.25,43,0.0 +11835,34,14,20,0.0 +11835,67,14,39,0.0 +11835,6,25,26,0.0 +11835,47,9.5,38,0.0 +11835,10,31,15,0.0 +11835,5,21.35,20,0.0 +11835,43,46,23,0.0 +11835,7,30,39,0.0 +11835,46,12,41,0.0 +11835,53,32.8,47,0.0 +11835,48,12.75,50,0.0 +11835,58,13.25,48,0.0 +11835,12,38,26,0.0 +11835,68,12.5,24,0.0 +11836,8,40,5,0.0 +11836,53,32.8,31,0.0 +11836,17,39,11,0.0 +11836,52,7,20,0.0 +11836,62,49.3,30,0.0 +11836,46,12,14,0.0 +11836,50,16.25,14,0.0 +11836,1,18,17,0.0 +11836,61,28.5,22,0.0 +11836,10,31,19,0.0 +11836,38,263.5,24,0.0 +11836,74,10,29,0.0 +11836,21,10,35,0.0 +11836,19,9.2,18,0.0 +11836,25,14,32,0.0 +11836,12,38,18,0.0 +11836,56,38,6,0.0 +11836,49,20,33,0.0 +11836,67,14,17,0.0 +11836,43,46,15,0.0 +11836,47,9.5,5,0.0 +11836,76,18,30,0.0 +11836,2,19,7,0.0 +11836,34,14,39,0.0 +11836,6,25,27,0.0 +11836,9,97,23,0.0 +11836,7,30,28,0.0 +11836,42,14,29,0.0 +11836,70,15,16,0.0 +11836,39,18,31,0.0 +11837,60,34,34,0.0 +11837,11,21,47,0.0 +11837,7,30,18,0.0 +11837,40,18.4,50,0.0 +11837,1,18,35,0.0 +11837,59,55,28,0.0 +11837,30,25.89,3,0.0 +11837,36,19,18,0.0 +11837,52,7,48,0.0 +11837,67,14,7,0.0 +11837,48,12.75,3,0.0 +11837,61,28.5,7,0.0 +11837,76,18,36,0.0 +11837,57,19.5,27,0.0 +11837,13,6,5,0.0 +11837,21,10,24,0.0 +11837,43,46,44,0.0 +11837,4,22,17,0.0 +11837,50,16.25,35,0.0 +11837,44,19.45,22,0.0 +11837,14,23.25,19,0.0 +11837,39,18,49,0.0 +11837,65,21.05,37,0.0 +11837,49,20,27,0.0 +11837,72,34.8,40,0.0 +11837,37,26,15,0.0 +11837,17,39,39,0.0 +11837,26,31.23,28,0.0 +11837,8,40,44,0.0 +11837,66,17,33,0.0 +11837,27,43.9,22,0.0 +11837,41,9.65,26,0.0 +11837,10,31,7,0.0 +11837,35,18,41,0.0 +11837,19,9.2,44,0.0 +11837,63,43.9,25,0.0 +11838,65,21.05,49,0.0 +11838,64,33.25,18,0.0 +11838,63,43.9,50,0.0 +11838,61,28.5,50,0.0 +11838,5,21.35,43,0.0 +11838,68,12.5,15,0.0 +11838,39,18,35,0.0 +11839,55,24,4,0.0 +11839,28,45.6,24,0.0 +11839,67,14,30,0.0 +11839,68,12.5,37,0.0 +11839,61,28.5,8,0.0 +11839,69,36,35,0.0 +11839,63,43.9,6,0.0 +11839,60,34,10,0.0 +11839,52,7,41,0.0 +11839,16,17.45,21,0.0 +11839,51,53,19,0.0 +11839,2,19,22,0.0 +11839,74,10,11,0.0 +11839,58,13.25,7,0.0 +11839,77,13,26,0.0 +11839,13,6,28,0.0 +11839,15,15.5,39,0.0 +11839,59,55,1,0.0 +11839,18,62.5,29,0.0 +11839,5,21.35,49,0.0 +11839,21,10,3,0.0 +11839,11,21,23,0.0 +11839,36,19,50,0.0 +11839,62,49.3,14,0.0 +11839,27,43.9,12,0.0 +11839,66,17,22,0.0 +11839,76,18,31,0.0 +11839,57,19.5,11,0.0 +11839,47,9.5,5,0.0 +11839,39,18,15,0.0 +11839,25,14,24,0.0 +11839,22,21,40,0.0 +11839,41,9.65,8,0.0 +11839,14,23.25,30,0.0 +11839,50,16.25,44,0.0 +11839,35,18,9,0.0 +11839,1,18,37,0.0 +11839,71,21.5,17,0.0 +11839,23,9,34,0.0 +11839,32,32,20,0.0 +11839,30,25.89,16,0.0 +11839,44,19.45,49,0.0 +11839,4,22,40,0.0 +11839,19,9.2,24,0.0 +11839,31,12.5,37,0.0 +11839,7,30,42,0.0 +11839,73,15,38,0.0 +11839,33,2.5,40,0.0 +11839,38,263.5,2,0.0 +11839,24,4.5,11,0.0 +11839,12,38,4,0.0 +11839,45,9.5,31,0.0 +11839,34,14,41,0.0 +11840,25,14,4,0.0 +11840,18,62.5,42,0.0 +11840,63,43.9,34,0.0 +11840,19,9.2,14,0.0 +11840,22,21,29,0.0 +11840,75,7.75,44,0.0 +11840,49,20,23,0.0 +11840,28,45.6,3,0.0 +11840,16,17.45,16,0.0 +11840,40,18.4,4,0.0 +11840,67,14,24,0.0 +11840,10,31,24,0.0 +11840,59,55,48,0.0 +11840,44,19.45,43,0.0 +11840,4,22,23,0.0 +11840,27,43.9,48,0.0 +11840,32,32,28,0.0 +11840,62,49.3,8,0.0 +11840,8,40,6,0.0 +11840,38,263.5,13,0.0 +11840,36,19,21,0.0 +11840,13,6,4,0.0 +11840,23,9,31,0.0 +11840,74,10,22,0.0 +11840,30,25.89,29,0.0 +11840,76,18,4,0.0 +11840,68,12.5,8,0.0 +11840,57,19.5,39,0.0 +11840,52,7,44,0.0 +11840,42,14,5,0.0 +11840,7,30,8,0.0 +11841,14,23.25,47,0.0 +11841,52,7,29,0.0 +11841,73,15,16,0.0 +11842,49,20,32,0.0 +11842,45,9.5,1,0.0 +11842,13,6,1,0.0 +11842,37,26,47,0.0 +11842,44,19.45,23,0.0 +11842,56,38,39,0.0 +11842,3,10,37,0.0 +11842,75,7.75,37,0.0 +11842,35,18,10,0.0 +11842,34,14,6,0.0 +11842,74,10,15,0.0 +11842,14,23.25,37,0.0 +11842,26,31.23,24,0.0 +11842,64,33.25,11,0.0 +11842,77,13,12,0.0 +11842,71,21.5,8,0.0 +11842,41,9.65,16,0.0 +11842,4,22,10,0.0 +11842,16,17.45,16,0.0 +11842,55,24,32,0.0 +11842,31,12.5,1,0.0 +11842,9,97,10,0.0 +11842,59,55,37,0.0 +11842,19,9.2,14,0.0 +11842,66,17,20,0.0 +11842,60,34,46,0.0 +11842,73,15,19,0.0 +11842,61,28.5,50,0.0 +11842,39,18,39,0.0 +11842,15,15.5,9,0.0 +11842,72,34.8,17,0.0 +11842,30,25.89,29,0.0 +11842,54,7.45,50,0.0 +11842,8,40,49,0.0 +11842,2,19,34,0.0 +11842,76,18,7,0.0 +11842,50,16.25,7,0.0 +11842,24,4.5,30,0.0 +11842,63,43.9,50,0.0 +11842,25,14,7,0.0 +11842,36,19,11,0.0 +11842,1,18,37,0.0 +11842,58,13.25,29,0.0 +11842,68,12.5,46,0.0 +11842,52,7,13,0.0 +11842,53,32.8,43,0.0 +11842,10,31,4,0.0 +11842,40,18.4,5,0.0 +11842,65,21.05,11,0.0 +11842,38,263.5,12,0.0 +11842,11,21,43,0.0 +11842,42,14,50,0.0 +11842,23,9,30,0.0 +11842,6,25,24,0.0 +11842,70,15,47,0.0 +11842,20,81,17,0.0 +11842,12,38,49,0.0 +11842,5,21.35,40,0.0 +11842,69,36,23,0.0 +11842,57,19.5,29,0.0 +11842,18,62.5,39,0.0 +11842,33,2.5,8,0.0 +11842,47,9.5,10,0.0 +11842,51,53,46,0.0 +11842,43,46,8,0.0 +11842,46,12,37,0.0 +11842,27,43.9,21,0.0 +11842,29,123.79,42,0.0 +11842,21,10,2,0.0 +11842,17,39,39,0.0 +11842,22,21,2,0.0 +11843,33,2.5,14,0.0 +11843,51,53,16,0.0 +11843,53,32.8,26,0.0 +11843,31,12.5,15,0.0 +11843,68,12.5,2,0.0 +11843,60,34,42,0.0 +11843,71,21.5,33,0.0 +11843,20,81,50,0.0 +11843,77,13,2,0.0 +11844,9,97,11,0.0 +11844,6,25,29,0.0 +11844,50,16.25,26,0.0 +11844,3,10,12,0.0 +11844,41,9.65,10,0.0 +11844,12,38,5,0.0 +11844,2,19,19,0.0 +11844,69,36,41,0.0 +11844,49,20,12,0.0 +11844,21,10,46,0.0 +11844,44,19.45,9,0.0 +11844,55,24,35,0.0 +11844,23,9,16,0.0 +11844,67,14,48,0.0 +11844,5,21.35,1,0.0 +11844,68,12.5,14,0.0 +11844,11,21,32,0.0 +11844,52,7,19,0.0 +11844,51,53,32,0.0 +11844,17,39,9,0.0 +11844,75,7.75,41,0.0 +11844,77,13,33,0.0 +11844,19,9.2,33,0.0 +11844,16,17.45,17,0.0 +11844,63,43.9,26,0.0 +11844,65,21.05,32,0.0 +11844,1,18,22,0.0 +11844,36,19,4,0.0 +11844,45,9.5,2,0.0 +11844,46,12,35,0.0 +11844,72,34.8,25,0.0 +11844,34,14,38,0.0 +11844,39,18,18,0.0 +11844,42,14,17,0.0 +11844,61,28.5,1,0.0 +11844,25,14,41,0.0 +11844,15,15.5,44,0.0 +11844,30,25.89,34,0.0 +11844,70,15,2,0.0 +11844,13,6,21,0.0 +11844,26,31.23,40,0.0 +11844,24,4.5,15,0.0 +11844,33,2.5,14,0.0 +11844,4,22,26,0.0 +11844,22,21,37,0.0 +11844,35,18,19,0.0 +11844,20,81,8,0.0 +11844,54,7.45,26,0.0 +11844,71,21.5,27,0.0 +11844,29,123.79,45,0.0 +11844,53,32.8,37,0.0 +11844,66,17,4,0.0 +11844,56,38,34,0.0 +11844,47,9.5,10,0.0 +11844,59,55,36,0.0 +11845,1,18,3,0.0 +11845,11,21,44,0.0 +11845,61,28.5,9,0.0 +11845,49,20,15,0.0 +11845,58,13.25,37,0.0 +11845,73,15,11,0.0 +11845,14,23.25,39,0.0 +11845,5,21.35,20,0.0 +11845,46,12,4,0.0 +11845,25,14,11,0.0 +11845,19,9.2,15,0.0 +11845,12,38,5,0.0 +11845,23,9,23,0.0 +11845,6,25,48,0.0 +11845,76,18,19,0.0 +11845,8,40,20,0.0 +11845,65,21.05,34,0.0 +11845,28,45.6,18,0.0 +11845,4,22,7,0.0 +11845,64,33.25,42,0.0 +11845,13,6,34,0.0 +11845,7,30,26,0.0 +11845,50,16.25,40,0.0 +11845,69,36,15,0.0 +11845,10,31,42,0.0 +11845,24,4.5,29,0.0 +11845,17,39,3,0.0 +11845,45,9.5,47,0.0 +11845,21,10,33,0.0 +11845,26,31.23,34,0.0 +11845,40,18.4,43,0.0 +11846,75,7.75,10,0.0 +11846,62,49.3,15,0.0 +11846,23,9,29,0.0 +11846,65,21.05,21,0.0 +11846,29,123.79,47,0.0 +11846,43,46,14,0.0 +11846,17,39,29,0.0 +11846,76,18,8,0.0 +11846,27,43.9,40,0.0 +11846,71,21.5,32,0.0 +11846,74,10,22,0.0 +11846,45,9.5,8,0.0 +11846,66,17,12,0.0 +11846,53,32.8,22,0.0 +11846,6,25,11,0.0 +11846,1,18,22,0.0 +11846,30,25.89,6,0.0 +11846,56,38,16,0.0 +11846,36,19,18,0.0 +11846,67,14,40,0.0 +11846,19,9.2,47,0.0 +11846,16,17.45,46,0.0 +11846,50,16.25,34,0.0 +11846,2,19,50,0.0 +11846,68,12.5,43,0.0 +11846,42,14,23,0.0 +11846,21,10,42,0.0 +11846,57,19.5,24,0.0 +11846,34,14,47,0.0 +11846,8,40,44,0.0 +11846,24,4.5,12,0.0 +11846,25,14,39,0.0 +11846,58,13.25,43,0.0 +11846,49,20,49,0.0 +11846,9,97,9,0.0 +11846,70,15,47,0.0 +11846,11,21,20,0.0 +11846,63,43.9,6,0.0 +11846,5,21.35,44,0.0 +11846,7,30,18,0.0 +11846,3,10,7,0.0 +11846,33,2.5,34,0.0 +11846,14,23.25,17,0.0 +11846,55,24,8,0.0 +11846,4,22,23,0.0 +11846,48,12.75,20,0.0 +11846,61,28.5,33,0.0 +11846,64,33.25,14,0.0 +11846,15,15.5,44,0.0 +11846,54,7.45,45,0.0 +11846,22,21,44,0.0 +11846,38,263.5,32,0.0 +11846,12,38,24,0.0 +11846,52,7,43,0.0 +11846,72,34.8,29,0.0 +11846,41,9.65,24,0.0 +11847,60,34,17,0.0 +11847,13,6,21,0.0 +11847,19,9.2,42,0.0 +11848,20,81,48,0.0 +11848,67,14,26,0.0 +11848,60,34,46,0.0 +11848,63,43.9,3,0.0 +11848,9,97,20,0.0 +11848,47,9.5,49,0.0 +11848,30,25.89,25,0.0 +11848,6,25,31,0.0 +11848,68,12.5,47,0.0 +11848,53,32.8,47,0.0 +11848,35,18,20,0.0 +11848,11,21,43,0.0 +11848,54,7.45,24,0.0 +11848,29,123.79,39,0.0 +11848,44,19.45,41,0.0 +11848,15,15.5,19,0.0 +11848,3,10,36,0.0 +11848,49,20,1,0.0 +11848,52,7,44,0.0 +11848,70,15,46,0.0 +11848,7,30,34,0.0 +11848,4,22,11,0.0 +11848,18,62.5,39,0.0 +11848,14,23.25,20,0.0 +11848,32,32,10,0.0 +11848,16,17.45,49,0.0 +11848,43,46,5,0.0 +11848,66,17,10,0.0 +11848,21,10,16,0.0 +11848,1,18,3,0.0 +11848,75,7.75,14,0.0 +11848,2,19,11,0.0 +11848,26,31.23,15,0.0 +11848,24,4.5,15,0.0 +11848,46,12,13,0.0 +11848,72,34.8,36,0.0 +11848,23,9,18,0.0 +11848,33,2.5,15,0.0 +11848,62,49.3,4,0.0 +11848,39,18,38,0.0 +11849,32,32,11,0.0 +11849,37,26,4,0.0 +11849,28,45.6,8,0.0 +11849,21,10,36,0.0 +11850,67,14,1,0.0 +11850,19,9.2,8,0.0 +11850,37,26,3,0.0 +11850,74,10,32,0.0 +11850,25,14,26,0.0 +11850,41,9.65,20,0.0 +11850,72,34.8,29,0.0 +11850,3,10,36,0.0 +11850,47,9.5,32,0.0 +11850,71,21.5,14,0.0 +11850,4,22,37,0.0 +11850,35,18,12,0.0 +11850,38,263.5,11,0.0 +11850,39,18,42,0.0 +11850,49,20,48,0.0 +11850,60,34,47,0.0 +11850,24,4.5,20,0.0 +11850,8,40,49,0.0 +11850,7,30,29,0.0 +11850,51,53,35,0.0 +11851,61,28.5,35,0.0 +11851,6,25,15,0.0 +11851,62,49.3,13,0.0 +11851,59,55,27,0.0 +11851,70,15,32,0.0 +11851,46,12,12,0.0 +11851,32,32,15,0.0 +11851,28,45.6,46,0.0 +11851,34,14,31,0.0 +11851,55,24,30,0.0 +11851,54,7.45,17,0.0 +11851,23,9,8,0.0 +11851,21,10,4,0.0 +11851,58,13.25,41,0.0 +11851,26,31.23,8,0.0 +11851,57,19.5,5,0.0 +11851,60,34,20,0.0 +11851,66,17,29,0.0 +11851,44,19.45,47,0.0 +11851,63,43.9,46,0.0 +11851,51,53,38,0.0 +11851,37,26,46,0.0 +11851,24,4.5,16,0.0 +11851,31,12.5,39,0.0 +11851,3,10,15,0.0 +11851,71,21.5,23,0.0 +11851,40,18.4,24,0.0 +11851,12,38,10,0.0 +11851,27,43.9,36,0.0 +11851,76,18,11,0.0 +11851,13,6,39,0.0 +11851,20,81,7,0.0 +11851,36,19,23,0.0 +11851,7,30,5,0.0 +11851,52,7,20,0.0 +11851,75,7.75,14,0.0 +11851,14,23.25,46,0.0 +11851,49,20,1,0.0 +11851,1,18,2,0.0 +11851,33,2.5,32,0.0 +11851,18,62.5,39,0.0 +11851,8,40,12,0.0 +11851,35,18,12,0.0 +11851,10,31,6,0.0 +11851,9,97,37,0.0 +11851,50,16.25,36,0.0 +11851,48,12.75,1,0.0 +11851,43,46,27,0.0 +11851,67,14,27,0.0 +11851,69,36,44,0.0 +11851,41,9.65,49,0.0 +11851,42,14,11,0.0 +11851,5,21.35,13,0.0 +11851,74,10,7,0.0 +11851,45,9.5,36,0.0 +11851,77,13,25,0.0 +11851,11,21,50,0.0 +11851,56,38,22,0.0 +11851,68,12.5,20,0.0 +11851,16,17.45,34,0.0 +11851,19,9.2,45,0.0 +11851,38,263.5,45,0.0 +11852,36,19,45,0.0 +11852,25,14,32,0.0 +11852,31,12.5,3,0.0 +11852,71,21.5,34,0.0 +11852,23,9,50,0.0 +11852,50,16.25,6,0.0 +11853,53,32.8,15,0.0 +11853,43,46,44,0.0 +11853,26,31.23,13,0.0 +11853,72,34.8,49,0.0 +11853,40,18.4,14,0.0 +11853,12,38,14,0.0 +11853,51,53,46,0.0 +11853,71,21.5,12,0.0 +11853,20,81,20,0.0 +11853,28,45.6,46,0.0 +11853,11,21,7,0.0 +11853,76,18,12,0.0 +11853,16,17.45,46,0.0 +11853,22,21,9,0.0 +11853,57,19.5,15,0.0 +11853,34,14,35,0.0 +11853,45,9.5,48,0.0 +11853,50,16.25,29,0.0 +11853,19,9.2,7,0.0 +11853,69,36,46,0.0 +11853,70,15,50,0.0 +11853,49,20,24,0.0 +11853,54,7.45,33,0.0 +11853,35,18,23,0.0 +11854,12,38,28,0.0 +11854,27,43.9,26,0.0 +11854,9,97,14,0.0 +11854,65,21.05,10,0.0 +11854,68,12.5,30,0.0 +11854,7,30,44,0.0 +11854,26,31.23,30,0.0 +11854,74,10,11,0.0 +11854,44,19.45,34,0.0 +11854,58,13.25,35,0.0 +11854,13,6,12,0.0 +11854,73,15,25,0.0 +11854,49,20,31,0.0 +11854,52,7,3,0.0 +11854,59,55,35,0.0 +11854,53,32.8,43,0.0 +11854,41,9.65,17,0.0 +11854,56,38,42,0.0 +11854,76,18,12,0.0 +11854,77,13,5,0.0 +11854,75,7.75,18,0.0 +11854,66,17,47,0.0 +11854,46,12,40,0.0 +11854,54,7.45,35,0.0 +11854,71,21.5,17,0.0 +11854,61,28.5,16,0.0 +11854,31,12.5,22,0.0 +11854,15,15.5,30,0.0 +11854,37,26,37,0.0 +11854,69,36,19,0.0 +11854,16,17.45,49,0.0 +11854,25,14,21,0.0 +11854,57,19.5,47,0.0 +11854,22,21,45,0.0 +11855,29,123.79,28,0.0 +11855,69,36,25,0.0 +11855,24,4.5,26,0.0 +11855,40,18.4,15,0.0 +11855,38,263.5,19,0.0 +11855,49,20,28,0.0 +11855,43,46,16,0.0 +11855,42,14,1,0.0 +11855,20,81,35,0.0 +11855,50,16.25,27,0.0 +11855,10,31,14,0.0 +11855,70,15,18,0.0 +11855,52,7,49,0.0 +11855,62,49.3,13,0.0 +11855,11,21,29,0.0 +11855,59,55,4,0.0 +11855,37,26,17,0.0 +11855,25,14,42,0.0 +11855,17,39,19,0.0 +11855,41,9.65,20,0.0 +11855,48,12.75,13,0.0 +11855,77,13,31,0.0 +11855,15,15.5,6,0.0 +11855,34,14,21,0.0 +11855,36,19,22,0.0 +11855,30,25.89,25,0.0 +11855,12,38,8,0.0 +11855,51,53,10,0.0 +11855,39,18,29,0.0 +11855,6,25,38,0.0 +11855,71,21.5,8,0.0 +11855,13,6,22,0.0 +11855,60,34,33,0.0 +11855,46,12,15,0.0 +11855,73,15,13,0.0 +11855,23,9,1,0.0 +11856,29,123.79,16,0.0 +11856,17,39,24,0.0 +11856,8,40,34,0.0 +11856,21,10,5,0.0 +11856,25,14,34,0.0 +11856,40,18.4,4,0.0 +11856,46,12,18,0.0 +11856,19,9.2,35,0.0 +11856,41,9.65,14,0.0 +11856,5,21.35,28,0.0 +11856,34,14,50,0.0 +11856,61,28.5,27,0.0 +11856,22,21,5,0.0 +11856,11,21,4,0.0 +11856,10,31,1,0.0 +11856,51,53,33,0.0 +11856,54,7.45,18,0.0 +11856,13,6,16,0.0 +11856,59,55,11,0.0 +11856,74,10,48,0.0 +11856,28,45.6,25,0.0 +11856,42,14,50,0.0 +11856,69,36,29,0.0 +11856,76,18,9,0.0 +11857,42,14,11,0.0 +11857,64,33.25,6,0.0 +11857,76,18,21,0.0 +11857,59,55,32,0.0 +11857,12,38,10,0.0 +11857,65,21.05,14,0.0 +11857,43,46,15,0.0 +11857,66,17,5,0.0 +11857,77,13,2,0.0 +11857,22,21,38,0.0 +11857,37,26,38,0.0 +11857,48,12.75,32,0.0 +11857,46,12,33,0.0 +11857,24,4.5,25,0.0 +11857,69,36,42,0.0 +11857,28,45.6,45,0.0 +11857,52,7,20,0.0 +11857,38,263.5,20,0.0 +11857,71,21.5,9,0.0 +11857,75,7.75,13,0.0 +11857,15,15.5,39,0.0 +11857,67,14,49,0.0 +11857,23,9,24,0.0 +11857,10,31,25,0.0 +11857,18,62.5,18,0.0 +11857,73,15,43,0.0 +11858,75,7.75,16,0.0 +11858,60,34,40,0.0 +11858,14,23.25,28,0.0 +11858,53,32.8,36,0.0 +11858,74,10,7,0.0 +11858,57,19.5,21,0.0 +11858,8,40,24,0.0 +11858,42,14,13,0.0 +11858,19,9.2,31,0.0 +11858,35,18,35,0.0 +11858,61,28.5,22,0.0 +11858,45,9.5,23,0.0 +11858,34,14,3,0.0 +11858,12,38,26,0.0 +11858,36,19,5,0.0 +11858,18,62.5,2,0.0 +11858,6,25,35,0.0 +11858,39,18,5,0.0 +11858,15,15.5,47,0.0 +11858,76,18,37,0.0 +11858,29,123.79,26,0.0 +11858,50,16.25,49,0.0 +11858,72,34.8,26,0.0 +11858,7,30,49,0.0 +11858,3,10,20,0.0 +11858,49,20,27,0.0 +11858,9,97,49,0.0 +11858,52,7,16,0.0 +11858,55,24,7,0.0 +11858,26,31.23,7,0.0 +11858,51,53,25,0.0 +11858,5,21.35,11,0.0 +11858,71,21.5,42,0.0 +11859,36,19,42,0.0 +11859,34,14,44,0.0 +11859,74,10,24,0.0 +11859,75,7.75,1,0.0 +11859,27,43.9,44,0.0 +11859,68,12.5,50,0.0 +11859,41,9.65,32,0.0 +11859,18,62.5,40,0.0 +11859,67,14,1,0.0 +11859,9,97,38,0.0 +11859,17,39,8,0.0 +11859,50,16.25,46,0.0 +11859,10,31,37,0.0 +11859,61,28.5,41,0.0 +11859,71,21.5,7,0.0 +11859,26,31.23,28,0.0 +11859,33,2.5,13,0.0 +11859,59,55,34,0.0 +11859,44,19.45,45,0.0 +11859,1,18,27,0.0 +11859,11,21,45,0.0 +11859,51,53,5,0.0 +11859,28,45.6,29,0.0 +11859,38,263.5,29,0.0 +11859,13,6,27,0.0 +11859,25,14,1,0.0 +11859,66,17,32,0.0 +11859,53,32.8,46,0.0 +11859,48,12.75,17,0.0 +11859,57,19.5,44,0.0 +11859,19,9.2,39,0.0 +11859,12,38,47,0.0 +11859,15,15.5,15,0.0 +11859,60,34,10,0.0 +11859,16,17.45,47,0.0 +11859,46,12,44,0.0 +11859,20,81,8,0.0 +11860,71,21.5,18,0.0 +11860,54,7.45,6,0.0 +11860,72,34.8,21,0.0 +11860,63,43.9,37,0.0 +11860,34,14,17,0.0 +11860,33,2.5,3,0.0 +11860,8,40,19,0.0 +11860,35,18,29,0.0 +11860,36,19,45,0.0 +11860,47,9.5,1,0.0 +11860,11,21,7,0.0 +11860,41,9.65,25,0.0 +11860,18,62.5,17,0.0 +11860,15,15.5,39,0.0 +11860,60,34,4,0.0 +11860,45,9.5,16,0.0 +11860,25,14,25,0.0 +11860,73,15,46,0.0 +11860,55,24,21,0.0 +11860,69,36,10,0.0 +11860,67,14,14,0.0 +11860,20,81,36,0.0 +11860,29,123.79,11,0.0 +11860,64,33.25,47,0.0 +11860,19,9.2,30,0.0 +11860,74,10,7,0.0 +11860,17,39,36,0.0 +11860,31,12.5,23,0.0 +11860,10,31,11,0.0 +11860,26,31.23,10,0.0 +11860,76,18,13,0.0 +11860,37,26,45,0.0 +11860,7,30,13,0.0 +11860,68,12.5,4,0.0 +11860,14,23.25,9,0.0 +11860,49,20,28,0.0 +11860,42,14,9,0.0 +11860,28,45.6,23,0.0 +11860,23,9,35,0.0 +11860,44,19.45,6,0.0 +11860,57,19.5,17,0.0 +11860,32,32,3,0.0 +11860,30,25.89,27,0.0 +11860,4,22,20,0.0 +11860,9,97,29,0.0 +11860,70,15,39,0.0 +11860,66,17,1,0.0 +11860,21,10,15,0.0 +11860,16,17.45,44,0.0 +11860,50,16.25,44,0.0 +11860,6,25,14,0.0 +11860,27,43.9,27,0.0 +11860,75,7.75,15,0.0 +11860,58,13.25,10,0.0 +11860,53,32.8,28,0.0 +11860,13,6,16,0.0 +11860,12,38,14,0.0 +11860,5,21.35,48,0.0 +11860,62,49.3,42,0.0 +11860,48,12.75,7,0.0 +11860,22,21,40,0.0 +11860,56,38,19,0.0 +11860,38,263.5,7,0.0 +11860,65,21.05,38,0.0 +11860,24,4.5,26,0.0 +11861,33,2.5,27,0.0 +11861,51,53,26,0.0 +11861,62,49.3,31,0.0 +11861,63,43.9,47,0.0 +11861,67,14,13,0.0 +11861,30,25.89,2,0.0 +11861,39,18,1,0.0 +11861,13,6,48,0.0 +11861,47,9.5,4,0.0 +11861,3,10,18,0.0 +11861,32,32,19,0.0 +11861,25,14,29,0.0 +11861,57,19.5,23,0.0 +11861,24,4.5,6,0.0 +11861,16,17.45,8,0.0 +11862,35,18,13,0.0 +11862,54,7.45,38,0.0 +11862,33,2.5,50,0.0 +11862,9,97,43,0.0 +11862,67,14,1,0.0 +11862,28,45.6,1,0.0 +11862,44,19.45,48,0.0 +11862,77,13,37,0.0 +11862,20,81,21,0.0 +11862,21,10,26,0.0 +11862,29,123.79,3,0.0 +11862,5,21.35,50,0.0 +11862,18,62.5,31,0.0 +11862,40,18.4,13,0.0 +11862,72,34.8,18,0.0 +11862,16,17.45,28,0.0 +11862,15,15.5,46,0.0 +11862,8,40,18,0.0 +11862,41,9.65,15,0.0 +11862,61,28.5,21,0.0 +11862,19,9.2,50,0.0 +11862,3,10,15,0.0 +11862,46,12,15,0.0 +11862,70,15,19,0.0 +11862,60,34,34,0.0 +11862,36,19,22,0.0 +11862,49,20,43,0.0 +11862,42,14,12,0.0 +11862,57,19.5,18,0.0 +11863,21,10,36,0.0 +11863,11,21,29,0.0 +11863,54,7.45,11,0.0 +11863,9,97,44,0.0 +11863,16,17.45,36,0.0 +11863,5,21.35,11,0.0 +11863,52,7,25,0.0 +11863,36,19,19,0.0 +11863,28,45.6,50,0.0 +11863,10,31,31,0.0 +11863,20,81,45,0.0 +11863,67,14,11,0.0 +11863,35,18,23,0.0 +11863,70,15,7,0.0 +11863,31,12.5,35,0.0 +11863,14,23.25,47,0.0 +11863,71,21.5,9,0.0 +11863,58,13.25,6,0.0 +11863,30,25.89,42,0.0 +11863,33,2.5,21,0.0 +11863,68,12.5,12,0.0 +11863,37,26,2,0.0 +11863,53,32.8,16,0.0 +11863,57,19.5,34,0.0 +11863,7,30,10,0.0 +11863,73,15,23,0.0 +11863,51,53,44,0.0 +11863,34,14,21,0.0 +11863,12,38,20,0.0 +11863,4,22,40,0.0 +11863,55,24,21,0.0 +11863,75,7.75,26,0.0 +11863,27,43.9,50,0.0 +11863,8,40,17,0.0 +11863,60,34,20,0.0 +11863,41,9.65,7,0.0 +11863,59,55,14,0.0 +11863,15,15.5,11,0.0 +11863,50,16.25,25,0.0 +11863,69,36,22,0.0 +11863,26,31.23,9,0.0 +11863,46,12,6,0.0 +11863,29,123.79,37,0.0 +11863,62,49.3,47,0.0 +11863,65,21.05,16,0.0 +11863,64,33.25,26,0.0 +11863,3,10,5,0.0 +11863,2,19,13,0.0 +11863,17,39,27,0.0 +11863,44,19.45,24,0.0 +11863,66,17,4,0.0 +11863,38,263.5,24,0.0 +11864,20,81,49,0.0 +11864,66,17,46,0.0 +11864,7,30,49,0.0 +11864,25,14,24,0.0 +11864,12,38,45,0.0 +11864,6,25,49,0.0 +11864,4,22,9,0.0 +11864,24,4.5,10,0.0 +11864,14,23.25,8,0.0 +11864,43,46,28,0.0 +11864,59,55,21,0.0 +11864,45,9.5,2,0.0 +11864,51,53,29,0.0 +11864,16,17.45,11,0.0 +11864,49,20,2,0.0 +11864,42,14,47,0.0 +11864,72,34.8,48,0.0 +11864,44,19.45,1,0.0 +11864,70,15,20,0.0 +11864,26,31.23,4,0.0 +11864,61,28.5,34,0.0 +11864,62,49.3,15,0.0 +11864,34,14,1,0.0 +11864,8,40,3,0.0 +11864,1,18,9,0.0 +11864,76,18,47,0.0 +11864,71,21.5,14,0.0 +11864,11,21,6,0.0 +11864,39,18,34,0.0 +11864,33,2.5,40,0.0 +11864,22,21,9,0.0 +11864,48,12.75,27,0.0 +11864,9,97,27,0.0 +11864,28,45.6,20,0.0 +11864,27,43.9,44,0.0 +11864,69,36,45,0.0 +11864,63,43.9,8,0.0 +11864,73,15,19,0.0 +11864,46,12,34,0.0 +11864,10,31,44,0.0 +11864,35,18,16,0.0 +11864,30,25.89,50,0.0 +11864,31,12.5,49,0.0 +11864,55,24,42,0.0 +11864,3,10,42,0.0 +11864,38,263.5,44,0.0 +11864,18,62.5,40,0.0 +11864,41,9.65,12,0.0 +11864,36,19,35,0.0 +11864,77,13,50,0.0 +11864,47,9.5,46,0.0 +11864,54,7.45,32,0.0 +11864,50,16.25,47,0.0 +11864,56,38,47,0.0 +11864,53,32.8,14,0.0 +11865,11,21,34,0.0 +11865,74,10,12,0.0 +11865,45,9.5,30,0.0 +11865,6,25,50,0.0 +11865,62,49.3,40,0.0 +11865,70,15,7,0.0 +11865,75,7.75,42,0.0 +11865,39,18,12,0.0 +11865,43,46,22,0.0 +11865,55,24,7,0.0 +11865,65,21.05,36,0.0 +11865,20,81,28,0.0 +11865,23,9,21,0.0 +11865,2,19,26,0.0 +11865,54,7.45,21,0.0 +11865,49,20,42,0.0 +11865,22,21,1,0.0 +11865,67,14,47,0.0 +11865,46,12,22,0.0 +11865,3,10,39,0.0 +11865,37,26,22,0.0 +11865,31,12.5,13,0.0 +11865,41,9.65,18,0.0 +11865,66,17,9,0.0 +11865,38,263.5,3,0.0 +11865,17,39,39,0.0 +11865,7,30,28,0.0 +11865,52,7,19,0.0 +11865,33,2.5,24,0.0 +11865,63,43.9,22,0.0 +11865,36,19,14,0.0 +11865,14,23.25,7,0.0 +11865,59,55,39,0.0 +11865,29,123.79,27,0.0 +11865,48,12.75,24,0.0 +11865,58,13.25,42,0.0 +11865,53,32.8,30,0.0 +11865,8,40,42,0.0 +11865,18,62.5,34,0.0 +11865,42,14,17,0.0 +11865,16,17.45,33,0.0 +11865,34,14,37,0.0 +11865,47,9.5,46,0.0 +11865,69,36,28,0.0 +11865,76,18,4,0.0 +11865,26,31.23,7,0.0 +11865,25,14,36,0.0 +11865,72,34.8,31,0.0 +11865,5,21.35,36,0.0 +11865,60,34,21,0.0 +11865,51,53,23,0.0 +11866,73,15,31,0.0 +11866,5,21.35,5,0.0 +11866,10,31,49,0.0 +11866,23,9,8,0.0 +11866,64,33.25,18,0.0 +11866,53,32.8,50,0.0 +11866,45,9.5,35,0.0 +11866,52,7,27,0.0 +11866,70,15,47,0.0 +11866,72,34.8,33,0.0 +11866,50,16.25,17,0.0 +11866,63,43.9,40,0.0 +11866,24,4.5,30,0.0 +11866,11,21,2,0.0 +11866,25,14,15,0.0 +11866,74,10,31,0.0 +11866,75,7.75,38,0.0 +11866,54,7.45,49,0.0 +11866,47,9.5,50,0.0 +11866,8,40,3,0.0 +11866,19,9.2,30,0.0 +11866,13,6,6,0.0 +11866,28,45.6,45,0.0 +11866,67,14,49,0.0 +11866,58,13.25,24,0.0 +11866,33,2.5,39,0.0 +11866,59,55,4,0.0 +11866,48,12.75,31,0.0 +11866,7,30,31,0.0 +11866,38,263.5,20,0.0 +11866,15,15.5,10,0.0 +11866,57,19.5,45,0.0 +11866,2,19,33,0.0 +11866,3,10,37,0.0 +11866,60,34,30,0.0 +11866,62,49.3,19,0.0 +11866,46,12,47,0.0 +11866,1,18,7,0.0 +11866,32,32,18,0.0 +11866,18,62.5,2,0.0 +11866,21,10,15,0.0 +11866,69,36,48,0.0 +11867,24,4.5,38,0.0 +11867,33,2.5,43,0.0 +11867,21,10,11,0.0 +11867,34,14,41,0.0 +11867,11,21,48,0.0 +11867,55,24,10,0.0 +11867,9,97,35,0.0 +11867,29,123.79,28,0.0 +11867,72,34.8,8,0.0 +11867,38,263.5,49,0.0 +11867,10,31,19,0.0 +11867,6,25,8,0.0 +11867,49,20,14,0.0 +11867,58,13.25,43,0.0 +11868,14,23.25,50,0.0 +11868,50,16.25,16,0.0 +11869,49,20,28,0.0 +11869,25,14,15,0.0 +11869,28,45.6,19,0.0 +11869,46,12,43,0.0 +11869,64,33.25,36,0.0 +11869,38,263.5,14,0.0 +11869,45,9.5,28,0.0 +11869,31,12.5,34,0.0 +11869,47,9.5,34,0.0 +11869,32,32,19,0.0 +11869,35,18,27,0.0 +11869,27,43.9,10,0.0 +11869,6,25,39,0.0 +11869,7,30,48,0.0 +11869,53,32.8,21,0.0 +11869,55,24,21,0.0 +11869,13,6,24,0.0 +11869,20,81,9,0.0 +11869,54,7.45,18,0.0 +11869,26,31.23,10,0.0 +11869,36,19,35,0.0 +11869,77,13,37,0.0 +11869,17,39,43,0.0 +11869,3,10,40,0.0 +11869,63,43.9,42,0.0 +11869,29,123.79,20,0.0 +11869,30,25.89,15,0.0 +11869,75,7.75,28,0.0 +11869,59,55,32,0.0 +11869,14,23.25,4,0.0 +11869,44,19.45,18,0.0 +11869,68,12.5,49,0.0 +11869,67,14,1,0.0 +11869,50,16.25,3,0.0 +11869,1,18,34,0.0 +11869,69,36,5,0.0 +11869,11,21,26,0.0 +11869,60,34,28,0.0 +11869,57,19.5,16,0.0 +11869,5,21.35,8,0.0 +11869,8,40,16,0.0 +11869,21,10,35,0.0 +11869,19,9.2,2,0.0 +11869,40,18.4,31,0.0 +11869,34,14,23,0.0 +11869,23,9,1,0.0 +11869,22,21,43,0.0 +11869,4,22,14,0.0 +11869,66,17,48,0.0 +11870,56,38,7,0.0 +11870,10,31,45,0.0 +11870,40,18.4,30,0.0 +11870,7,30,17,0.0 +11870,44,19.45,5,0.0 +11870,55,24,10,0.0 +11870,14,23.25,33,0.0 +11870,57,19.5,8,0.0 +11870,45,9.5,35,0.0 +11870,76,18,16,0.0 +11870,33,2.5,37,0.0 +11870,15,15.5,29,0.0 +11870,49,20,1,0.0 +11870,65,21.05,9,0.0 +11870,69,36,5,0.0 +11870,6,25,46,0.0 +11870,38,263.5,28,0.0 +11870,60,34,39,0.0 +11870,26,31.23,7,0.0 +11870,1,18,6,0.0 +11870,4,22,39,0.0 +11870,20,81,22,0.0 +11870,12,38,36,0.0 +11870,39,18,16,0.0 +11870,42,14,37,0.0 +11870,47,9.5,24,0.0 +11870,8,40,40,0.0 +11870,67,14,1,0.0 +11870,23,9,48,0.0 +11871,23,9,46,0.0 +11871,3,10,23,0.0 +11871,49,20,24,0.0 +11871,41,9.65,45,0.0 +11871,48,12.75,35,0.0 +11871,51,53,23,0.0 +11871,45,9.5,29,0.0 +11871,44,19.45,38,0.0 +11871,68,12.5,1,0.0 +11871,18,62.5,44,0.0 +11871,67,14,5,0.0 +11871,26,31.23,37,0.0 +11871,14,23.25,32,0.0 +11871,47,9.5,50,0.0 +11871,8,40,29,0.0 +11871,56,38,12,0.0 +11871,38,263.5,7,0.0 +11871,2,19,16,0.0 +11871,73,15,18,0.0 +11871,75,7.75,8,0.0 +11871,52,7,8,0.0 +11871,25,14,19,0.0 +11871,60,34,49,0.0 +11871,46,12,38,0.0 +11871,20,81,18,0.0 +11871,69,36,33,0.0 +11872,68,12.5,17,0.0 +11872,41,9.65,50,0.0 +11872,21,10,21,0.0 +11872,15,15.5,30,0.0 +11872,72,34.8,19,0.0 +11872,50,16.25,41,0.0 +11873,24,4.5,4,0.0 +11873,50,16.25,24,0.0 +11873,10,31,14,0.0 +11873,53,32.8,38,0.0 +11873,3,10,23,0.0 +11873,39,18,32,0.0 +11873,54,7.45,45,0.0 +11873,43,46,9,0.0 +11873,26,31.23,45,0.0 +11873,13,6,28,0.0 +11873,59,55,25,0.0 +11873,77,13,32,0.0 +11873,69,36,12,0.0 +11873,6,25,48,0.0 +11873,67,14,32,0.0 +11873,38,263.5,14,0.0 +11873,28,45.6,30,0.0 +11873,27,43.9,9,0.0 +11873,22,21,33,0.0 +11873,20,81,4,0.0 +11873,34,14,32,0.0 +11873,12,38,34,0.0 +11873,57,19.5,28,0.0 +11873,76,18,33,0.0 +11873,35,18,15,0.0 +11873,8,40,33,0.0 +11873,31,12.5,26,0.0 +11873,68,12.5,7,0.0 +11873,5,21.35,38,0.0 +11873,46,12,30,0.0 +11873,7,30,23,0.0 +11873,37,26,31,0.0 +11873,60,34,3,0.0 +11873,65,21.05,33,0.0 +11873,66,17,36,0.0 +11873,23,9,12,0.0 +11873,9,97,22,0.0 +11873,2,19,25,0.0 +11873,19,9.2,17,0.0 +11873,48,12.75,5,0.0 +11873,72,34.8,50,0.0 +11873,32,32,2,0.0 +11874,15,15.5,7,0.0 +11874,66,17,17,0.0 +11874,5,21.35,35,0.0 +11874,24,4.5,44,0.0 +11874,55,24,32,0.0 +11874,64,33.25,23,0.0 +11874,7,30,2,0.0 +11874,14,23.25,24,0.0 +11874,28,45.6,27,0.0 +11874,60,34,31,0.0 +11874,45,9.5,32,0.0 +11874,69,36,24,0.0 +11874,41,9.65,49,0.0 +11874,20,81,39,0.0 +11874,9,97,25,0.0 +11874,51,53,45,0.0 +11874,50,16.25,39,0.0 +11874,38,263.5,50,0.0 +11874,54,7.45,38,0.0 +11874,1,18,29,0.0 +11874,11,21,4,0.0 +11874,42,14,37,0.0 +11874,18,62.5,35,0.0 +11874,68,12.5,3,0.0 +11874,13,6,13,0.0 +11874,49,20,4,0.0 +11874,63,43.9,13,0.0 +11874,19,9.2,41,0.0 +11874,67,14,44,0.0 +11874,57,19.5,20,0.0 +11874,30,25.89,14,0.0 +11874,40,18.4,21,0.0 +11875,77,13,24,0.0 +11875,56,38,40,0.0 +11875,57,19.5,5,0.0 +11875,49,20,46,0.0 +11875,65,21.05,47,0.0 +11875,69,36,28,0.0 +11875,30,25.89,13,0.0 +11875,15,15.5,42,0.0 +11875,35,18,34,0.0 +11875,32,32,16,0.0 +11875,29,123.79,17,0.0 +11875,4,22,36,0.0 +11875,71,21.5,35,0.0 +11875,72,34.8,12,0.0 +11875,27,43.9,6,0.0 +11875,74,10,37,0.0 +11875,24,4.5,24,0.0 +11875,31,12.5,14,0.0 +11875,48,12.75,40,0.0 +11875,76,18,5,0.0 +11875,50,16.25,36,0.0 +11875,9,97,37,0.0 +11875,47,9.5,37,0.0 +11875,75,7.75,36,0.0 +11875,63,43.9,50,0.0 +11876,55,24,46,0.0 +11876,71,21.5,5,0.0 +11876,46,12,1,0.0 +11876,56,38,21,0.0 +11876,13,6,26,0.0 +11876,22,21,16,0.0 +11876,69,36,22,0.0 +11876,8,40,7,0.0 +11876,47,9.5,44,0.0 +11876,1,18,44,0.0 +11876,42,14,27,0.0 +11876,53,32.8,33,0.0 +11876,9,97,6,0.0 +11876,28,45.6,8,0.0 +11876,7,30,14,0.0 +11876,2,19,5,0.0 +11876,45,9.5,20,0.0 +11876,65,21.05,26,0.0 +11876,17,39,7,0.0 +11876,16,17.45,29,0.0 +11876,58,13.25,46,0.0 +11876,73,15,38,0.0 +11876,57,19.5,20,0.0 +11876,27,43.9,15,0.0 +11876,18,62.5,23,0.0 +11876,30,25.89,37,0.0 +11876,62,49.3,12,0.0 +11876,11,21,29,0.0 +11876,63,43.9,35,0.0 +11876,41,9.65,7,0.0 +11876,68,12.5,35,0.0 +11876,26,31.23,1,0.0 +11876,76,18,30,0.0 +11876,3,10,13,0.0 +11876,19,9.2,30,0.0 +11876,54,7.45,20,0.0 +11876,72,34.8,27,0.0 +11876,24,4.5,38,0.0 +11876,43,46,26,0.0 +11876,61,28.5,28,0.0 +11876,49,20,38,0.0 +11876,25,14,48,0.0 +11876,23,9,36,0.0 +11876,33,2.5,47,0.0 +11876,51,53,50,0.0 +11876,50,16.25,1,0.0 +11876,6,25,48,0.0 +11876,5,21.35,16,0.0 +11876,4,22,36,0.0 +11876,12,38,33,0.0 +11876,10,31,44,0.0 +11876,77,13,17,0.0 +11876,35,18,46,0.0 +11876,66,17,16,0.0 +11876,75,7.75,41,0.0 +11876,48,12.75,27,0.0 +11876,37,26,38,0.0 +11876,14,23.25,38,0.0 +11876,21,10,31,0.0 +11876,40,18.4,35,0.0 +11876,34,14,5,0.0 +11876,59,55,39,0.0 +11876,44,19.45,30,0.0 +11876,29,123.79,22,0.0 +11876,70,15,16,0.0 +11876,52,7,3,0.0 +11876,15,15.5,12,0.0 +11877,12,38,47,0.0 +11877,68,12.5,6,0.0 +11877,21,10,11,0.0 +11877,65,21.05,31,0.0 +11877,64,33.25,10,0.0 +11877,35,18,2,0.0 +11877,31,12.5,25,0.0 +11877,29,123.79,20,0.0 +11877,37,26,47,0.0 +11877,23,9,22,0.0 +11877,40,18.4,4,0.0 +11877,66,17,49,0.0 +11877,33,2.5,40,0.0 +11877,56,38,36,0.0 +11877,14,23.25,15,0.0 +11877,67,14,38,0.0 +11877,17,39,17,0.0 +11877,20,81,18,0.0 +11877,18,62.5,22,0.0 +11877,54,7.45,18,0.0 +11877,58,13.25,2,0.0 +11877,10,31,27,0.0 +11877,63,43.9,16,0.0 +11877,32,32,2,0.0 +11877,48,12.75,21,0.0 +11877,1,18,26,0.0 +11877,9,97,9,0.0 +11877,74,10,37,0.0 +11877,24,4.5,43,0.0 +11877,73,15,15,0.0 +11877,71,21.5,17,0.0 +11877,44,19.45,43,0.0 +11877,46,12,30,0.0 +11877,61,28.5,20,0.0 +11877,38,263.5,36,0.0 +11877,60,34,20,0.0 +11877,25,14,38,0.0 +11877,59,55,34,0.0 +11877,22,21,14,0.0 +11877,15,15.5,2,0.0 +11877,16,17.45,16,0.0 +11877,27,43.9,50,0.0 +11877,43,46,20,0.0 +11877,5,21.35,27,0.0 +11877,8,40,32,0.0 +11877,3,10,29,0.0 +11877,70,15,48,0.0 +11877,75,7.75,39,0.0 +11877,45,9.5,39,0.0 +11877,30,25.89,2,0.0 +11877,7,30,31,0.0 +11877,6,25,35,0.0 +11877,13,6,39,0.0 +11877,77,13,49,0.0 +11877,49,20,13,0.0 +11877,52,7,11,0.0 +11877,11,21,23,0.0 +11877,53,32.8,13,0.0 +11877,36,19,11,0.0 +11877,28,45.6,25,0.0 +11877,39,18,23,0.0 +11877,41,9.65,36,0.0 +11877,2,19,11,0.0 +11877,57,19.5,6,0.0 +11877,55,24,16,0.0 +11877,19,9.2,41,0.0 +11877,72,34.8,15,0.0 +11877,42,14,9,0.0 +11877,26,31.23,46,0.0 +11877,47,9.5,9,0.0 +11877,34,14,25,0.0 +11877,51,53,27,0.0 +11877,50,16.25,2,0.0 +11877,69,36,27,0.0 +11877,62,49.3,5,0.0 +11877,4,22,9,0.0 +11877,76,18,15,0.0 +11878,77,13,21,0.0 +11878,13,6,19,0.0 +11878,3,10,6,0.0 +11878,76,18,1,0.0 +11878,25,14,41,0.0 +11878,28,45.6,35,0.0 +11879,32,32,49,0.0 +11879,49,20,3,0.0 +11879,51,53,40,0.0 +11879,24,4.5,31,0.0 +11879,11,21,3,0.0 +11879,75,7.75,7,0.0 +11879,64,33.25,6,0.0 +11879,63,43.9,35,0.0 +11879,15,15.5,4,0.0 +11879,72,34.8,20,0.0 +11879,31,12.5,41,0.0 +11879,16,17.45,9,0.0 +11879,26,31.23,37,0.0 +11879,7,30,26,0.0 +11879,46,12,28,0.0 +11879,21,10,38,0.0 +11879,37,26,43,0.0 +11879,61,28.5,16,0.0 +11879,29,123.79,14,0.0 +11879,66,17,4,0.0 +11880,29,123.79,44,0.0 +11880,8,40,36,0.0 +11880,34,14,45,0.0 +11880,49,20,35,0.0 +11880,7,30,28,0.0 +11880,60,34,27,0.0 +11880,53,32.8,48,0.0 +11880,50,16.25,13,0.0 +11880,24,4.5,18,0.0 +11880,51,53,47,0.0 +11880,74,10,21,0.0 +11880,23,9,33,0.0 +11880,15,15.5,1,0.0 +11880,26,31.23,48,0.0 +11880,21,10,39,0.0 +11880,73,15,40,0.0 +11880,27,43.9,50,0.0 +11880,2,19,41,0.0 +11880,3,10,47,0.0 +11880,39,18,18,0.0 +11880,22,21,39,0.0 +11880,52,7,44,0.0 +11880,41,9.65,33,0.0 +11880,37,26,19,0.0 +11880,59,55,21,0.0 +11880,31,12.5,1,0.0 +11880,62,49.3,47,0.0 +11880,28,45.6,36,0.0 +11880,32,32,23,0.0 +11880,47,9.5,30,0.0 +11880,14,23.25,44,0.0 +11880,6,25,24,0.0 +11880,20,81,8,0.0 +11880,44,19.45,4,0.0 +11880,33,2.5,24,0.0 +11880,48,12.75,28,0.0 +11880,58,13.25,27,0.0 +11880,65,21.05,7,0.0 +11880,13,6,42,0.0 +11880,61,28.5,32,0.0 +11880,40,18.4,2,0.0 +11880,18,62.5,33,0.0 +11880,69,36,48,0.0 +11880,64,33.25,18,0.0 +11880,16,17.45,36,0.0 +11880,36,19,15,0.0 +11880,30,25.89,7,0.0 +11880,9,97,24,0.0 +11880,54,7.45,24,0.0 +11880,10,31,50,0.0 +11880,17,39,23,0.0 +11880,1,18,34,0.0 +11880,5,21.35,24,0.0 +11880,67,14,20,0.0 +11880,42,14,6,0.0 +11880,12,38,18,0.0 +11880,25,14,41,0.0 +11880,43,46,15,0.0 +11880,68,12.5,43,0.0 +11880,45,9.5,48,0.0 +11880,11,21,45,0.0 +11880,56,38,32,0.0 +11880,55,24,7,0.0 +11880,66,17,31,0.0 +11880,4,22,33,0.0 +11880,76,18,40,0.0 +11880,75,7.75,35,0.0 +11880,35,18,23,0.0 +11880,70,15,39,0.0 +11880,38,263.5,29,0.0 +11880,57,19.5,31,0.0 +11880,77,13,5,0.0 +11880,63,43.9,49,0.0 +11880,19,9.2,3,0.0 +11881,20,81,37,0.0 +11881,9,97,37,0.0 +11881,70,15,19,0.0 +11881,52,7,36,0.0 +11881,55,24,34,0.0 +11881,18,62.5,49,0.0 +11881,22,21,21,0.0 +11881,8,40,31,0.0 +11881,53,32.8,43,0.0 +11881,75,7.75,42,0.0 +11881,63,43.9,23,0.0 +11881,64,33.25,8,0.0 +11881,6,25,46,0.0 +11881,10,31,50,0.0 +11881,21,10,27,0.0 +11881,1,18,3,0.0 +11881,29,123.79,40,0.0 +11881,47,9.5,49,0.0 +11881,69,36,49,0.0 +11881,7,30,3,0.0 +11881,72,34.8,22,0.0 +11881,66,17,2,0.0 +11881,68,12.5,29,0.0 +11881,49,20,15,0.0 +11881,74,10,3,0.0 +11881,37,26,30,0.0 +11881,38,263.5,18,0.0 +11881,17,39,42,0.0 +11881,13,6,32,0.0 +11881,43,46,38,0.0 +11881,33,2.5,26,0.0 +11881,45,9.5,33,0.0 +11881,50,16.25,15,0.0 +11881,28,45.6,4,0.0 +11881,14,23.25,31,0.0 +11881,35,18,39,0.0 +11881,71,21.5,28,0.0 +11881,56,38,44,0.0 +11881,15,15.5,39,0.0 +11881,3,10,18,0.0 +11881,34,14,33,0.0 +11881,51,53,48,0.0 +11881,65,21.05,13,0.0 +11881,31,12.5,19,0.0 +11881,73,15,46,0.0 +11881,24,4.5,37,0.0 +11882,49,20,34,0.0 +11882,67,14,18,0.0 +11882,12,38,5,0.0 +11882,2,19,11,0.0 +11882,14,23.25,46,0.0 +11882,17,39,47,0.0 +11882,29,123.79,34,0.0 +11882,75,7.75,5,0.0 +11882,20,81,28,0.0 +11882,63,43.9,4,0.0 +11882,1,18,43,0.0 +11882,30,25.89,34,0.0 +11882,5,21.35,36,0.0 +11882,61,28.5,20,0.0 +11882,66,17,7,0.0 +11882,65,21.05,19,0.0 +11882,58,13.25,43,0.0 +11882,26,31.23,42,0.0 +11882,68,12.5,13,0.0 +11882,42,14,47,0.0 +11882,45,9.5,17,0.0 +11882,70,15,21,0.0 +11882,11,21,32,0.0 +11882,4,22,5,0.0 +11882,15,15.5,41,0.0 +11882,21,10,30,0.0 +11882,31,12.5,2,0.0 +11882,69,36,41,0.0 +11882,53,32.8,16,0.0 +11882,40,18.4,17,0.0 +11882,59,55,25,0.0 +11882,54,7.45,47,0.0 +11882,33,2.5,32,0.0 +11882,57,19.5,42,0.0 +11882,77,13,21,0.0 +11882,3,10,31,0.0 +11882,9,97,39,0.0 +11882,36,19,12,0.0 +11882,6,25,45,0.0 +11882,23,9,15,0.0 +11882,25,14,4,0.0 +11882,71,21.5,13,0.0 +11882,72,34.8,6,0.0 +11882,43,46,35,0.0 +11882,44,19.45,26,0.0 +11882,8,40,3,0.0 +11882,60,34,10,0.0 +11882,18,62.5,47,0.0 +11882,56,38,30,0.0 +11882,48,12.75,17,0.0 +11882,34,14,2,0.0 +11882,27,43.9,34,0.0 +11882,10,31,6,0.0 +11882,62,49.3,29,0.0 +11882,28,45.6,3,0.0 +11882,55,24,9,0.0 +11882,16,17.45,27,0.0 +11882,47,9.5,40,0.0 +11882,41,9.65,21,0.0 +11882,35,18,23,0.0 +11882,24,4.5,14,0.0 +11882,13,6,46,0.0 +11882,74,10,30,0.0 +11882,7,30,10,0.0 +11882,38,263.5,21,0.0 +11882,52,7,24,0.0 +11882,50,16.25,17,0.0 +11882,22,21,36,0.0 +11883,73,15,24,0.0 +11883,8,40,9,0.0 +11883,69,36,8,0.0 +11883,76,18,24,0.0 +11883,56,38,35,0.0 +11883,63,43.9,17,0.0 +11883,7,30,24,0.0 +11883,75,7.75,24,0.0 +11883,26,31.23,38,0.0 +11883,6,25,14,0.0 +11883,68,12.5,35,0.0 +11883,65,21.05,43,0.0 +11883,27,43.9,6,0.0 +11883,59,55,25,0.0 +11883,10,31,24,0.0 +11883,42,14,19,0.0 +11883,13,6,4,0.0 +11883,19,9.2,46,0.0 +11883,39,18,44,0.0 +11883,20,81,27,0.0 +11883,55,24,22,0.0 +11883,74,10,39,0.0 +11883,43,46,1,0.0 +11883,67,14,26,0.0 +11883,23,9,5,0.0 +11884,2,19,19,0.0 +11884,20,81,1,0.0 +11884,3,10,41,0.0 +11884,43,46,50,0.0 +11884,60,34,18,0.0 +11884,15,15.5,12,0.0 +11884,37,26,29,0.0 +11884,73,15,4,0.0 +11884,21,10,21,0.0 +11884,48,12.75,27,0.0 +11884,47,9.5,13,0.0 +11884,38,263.5,8,0.0 +11884,25,14,34,0.0 +11884,61,28.5,49,0.0 +11884,68,12.5,17,0.0 +11884,54,7.45,22,0.0 +11884,12,38,10,0.0 +11884,40,18.4,6,0.0 +11884,28,45.6,48,0.0 +11884,17,39,4,0.0 +11884,57,19.5,38,0.0 +11884,49,20,37,0.0 +11884,56,38,45,0.0 +11884,62,49.3,15,0.0 +11884,55,24,42,0.0 +11884,11,21,48,0.0 +11884,22,21,2,0.0 +11884,35,18,15,0.0 +11884,33,2.5,9,0.0 +11884,41,9.65,20,0.0 +11884,13,6,42,0.0 +11884,69,36,8,0.0 +11884,59,55,26,0.0 +11885,77,13,19,0.0 +11885,39,18,6,0.0 +11885,17,39,13,0.0 +11885,64,33.25,11,0.0 +11885,13,6,43,0.0 +11885,20,81,4,0.0 +11885,36,19,40,0.0 +11885,47,9.5,2,0.0 +11885,1,18,34,0.0 +11885,45,9.5,24,0.0 +11885,28,45.6,39,0.0 +11885,44,19.45,34,0.0 +11885,58,13.25,31,0.0 +11885,32,32,15,0.0 +11885,65,21.05,27,0.0 +11885,70,15,49,0.0 +11885,15,15.5,1,0.0 +11885,38,263.5,2,0.0 +11885,23,9,44,0.0 +11885,14,23.25,27,0.0 +11885,30,25.89,25,0.0 +11885,60,34,1,0.0 +11885,16,17.45,31,0.0 +11885,51,53,40,0.0 +11885,54,7.45,19,0.0 +11885,48,12.75,37,0.0 +11885,53,32.8,1,0.0 +11885,57,19.5,34,0.0 +11885,41,9.65,22,0.0 +11885,62,49.3,39,0.0 +11885,2,19,44,0.0 +11885,10,31,15,0.0 +11885,56,38,15,0.0 +11885,40,18.4,48,0.0 +11885,49,20,5,0.0 +11885,18,62.5,4,0.0 +11886,25,14,47,0.0 +11886,2,19,10,0.0 +11886,3,10,3,0.0 +11886,61,28.5,25,0.0 +11886,49,20,7,0.0 +11886,26,31.23,47,0.0 +11886,69,36,17,0.0 +11886,31,12.5,20,0.0 +11886,44,19.45,49,0.0 +11886,42,14,6,0.0 +11886,64,33.25,8,0.0 +11886,46,12,45,0.0 +11886,39,18,21,0.0 +11886,48,12.75,35,0.0 +11886,9,97,9,0.0 +11886,41,9.65,26,0.0 +11886,19,9.2,1,0.0 +11886,70,15,6,0.0 +11886,50,16.25,40,0.0 +11886,29,123.79,9,0.0 +11886,38,263.5,4,0.0 +11886,58,13.25,7,0.0 +11886,43,46,50,0.0 +11886,56,38,25,0.0 +11886,6,25,38,0.0 +11886,33,2.5,15,0.0 +11886,15,15.5,7,0.0 +11886,10,31,32,0.0 +11886,23,9,2,0.0 +11886,7,30,14,0.0 +11886,77,13,50,0.0 +11886,73,15,28,0.0 +11886,59,55,10,0.0 +11886,8,40,31,0.0 +11886,1,18,3,0.0 +11886,52,7,48,0.0 +11886,30,25.89,36,0.0 +11886,18,62.5,35,0.0 +11886,13,6,21,0.0 +11886,68,12.5,10,0.0 +11886,5,21.35,31,0.0 +11886,27,43.9,29,0.0 +11886,11,21,20,0.0 +11886,34,14,29,0.0 +11886,55,24,12,0.0 +11886,24,4.5,47,0.0 +11886,28,45.6,43,0.0 +11886,17,39,28,0.0 +11886,54,7.45,40,0.0 +11886,67,14,40,0.0 +11886,57,19.5,3,0.0 +11886,37,26,24,0.0 +11886,32,32,12,0.0 +11886,66,17,4,0.0 +11886,20,81,14,0.0 +11886,60,34,50,0.0 +11887,73,15,21,0.0 +11887,24,4.5,3,0.0 +11887,45,9.5,3,0.0 +11887,16,17.45,31,0.0 +11887,70,15,3,0.0 +11887,30,25.89,28,0.0 +11887,23,9,45,0.0 +11887,42,14,22,0.0 +11887,67,14,49,0.0 +11887,22,21,7,0.0 +11887,15,15.5,41,0.0 +11887,52,7,30,0.0 +11887,72,34.8,22,0.0 +11887,65,21.05,18,0.0 +11887,44,19.45,11,0.0 +11887,63,43.9,50,0.0 +11887,61,28.5,33,0.0 +11887,18,62.5,45,0.0 +11887,8,40,19,0.0 +11887,41,9.65,14,0.0 +11887,46,12,4,0.0 +11887,69,36,38,0.0 +11887,76,18,2,0.0 +11887,28,45.6,23,0.0 +11887,57,19.5,7,0.0 +11887,56,38,9,0.0 +11887,66,17,22,0.0 +11887,59,55,15,0.0 +11887,19,9.2,50,0.0 +11887,3,10,50,0.0 +11887,34,14,50,0.0 +11887,31,12.5,48,0.0 +11887,48,12.75,7,0.0 +11887,4,22,36,0.0 +11887,54,7.45,7,0.0 +11887,13,6,39,0.0 +11887,55,24,8,0.0 +11887,2,19,46,0.0 +11887,6,25,26,0.0 +11887,39,18,31,0.0 +11887,20,81,38,0.0 +11887,38,263.5,21,0.0 +11887,47,9.5,3,0.0 +11887,62,49.3,50,0.0 +11887,7,30,2,0.0 +11887,37,26,6,0.0 +11887,68,12.5,3,0.0 +11887,36,19,5,0.0 +11887,5,21.35,1,0.0 +11887,50,16.25,6,0.0 +11887,51,53,34,0.0 +11887,1,18,31,0.0 +11887,12,38,28,0.0 +11887,43,46,18,0.0 +11888,51,53,50,0.0 +11888,7,30,50,0.0 +11888,6,25,41,0.0 +11888,20,81,17,0.0 +11888,42,14,43,0.0 +11888,3,10,12,0.0 +11888,40,18.4,33,0.0 +11888,45,9.5,15,0.0 +11888,17,39,27,0.0 +11888,68,12.5,36,0.0 +11888,30,25.89,9,0.0 +11888,49,20,5,0.0 +11888,21,10,27,0.0 +11888,12,38,34,0.0 +11888,77,13,47,0.0 +11888,57,19.5,35,0.0 +11888,39,18,42,0.0 +11888,53,32.8,49,0.0 +11888,72,34.8,22,0.0 +11888,22,21,32,0.0 +11888,66,17,11,0.0 +11888,25,14,2,0.0 +11888,36,19,14,0.0 +11888,2,19,11,0.0 +11888,54,7.45,47,0.0 +11888,33,2.5,16,0.0 +11888,38,263.5,41,0.0 +11888,55,24,47,0.0 +11888,37,26,21,0.0 +11888,52,7,47,0.0 +11888,34,14,35,0.0 +11888,71,21.5,42,0.0 +11888,70,15,23,0.0 +11888,1,18,37,0.0 +11888,15,15.5,32,0.0 +11888,14,23.25,36,0.0 +11888,29,123.79,9,0.0 +11888,46,12,37,0.0 +11888,23,9,29,0.0 +11888,59,55,43,0.0 +11888,16,17.45,43,0.0 +11888,64,33.25,21,0.0 +11888,5,21.35,12,0.0 +11888,31,12.5,19,0.0 +11888,73,15,18,0.0 +11888,35,18,34,0.0 +11888,41,9.65,24,0.0 +11888,8,40,15,0.0 +11889,44,19.45,16,0.0 +11889,60,34,30,0.0 +11889,57,19.5,21,0.0 +11889,40,18.4,45,0.0 +11889,67,14,35,0.0 +11889,72,34.8,37,0.0 +11889,52,7,35,0.0 +11889,27,43.9,7,0.0 +11889,1,18,50,0.0 +11889,51,53,7,0.0 +11889,3,10,38,0.0 +11889,11,21,38,0.0 +11889,71,21.5,30,0.0 +11889,53,32.8,17,0.0 +11889,69,36,40,0.0 +11889,15,15.5,19,0.0 +11889,5,21.35,30,0.0 +11889,73,15,43,0.0 +11889,56,38,41,0.0 +11889,64,33.25,30,0.0 +11889,75,7.75,21,0.0 +11889,48,12.75,38,0.0 +11889,30,25.89,28,0.0 +11889,21,10,7,0.0 +11889,31,12.5,17,0.0 +11889,29,123.79,38,0.0 +11889,19,9.2,18,0.0 +11889,6,25,47,0.0 +11889,20,81,45,0.0 +11889,33,2.5,46,0.0 +11889,38,263.5,42,0.0 +11889,13,6,48,0.0 +11889,46,12,19,0.0 +11889,4,22,1,0.0 +11889,2,19,32,0.0 +11889,39,18,22,0.0 +11889,55,24,25,0.0 +11889,49,20,39,0.0 +11889,12,38,7,0.0 +11889,77,13,32,0.0 +11889,23,9,14,0.0 +11889,70,15,3,0.0 +11889,14,23.25,44,0.0 +11889,47,9.5,4,0.0 +11889,66,17,34,0.0 +11889,37,26,19,0.0 +11889,26,31.23,47,0.0 +11889,58,13.25,33,0.0 +11889,22,21,27,0.0 +11889,16,17.45,12,0.0 +11889,24,4.5,14,0.0 +11889,61,28.5,44,0.0 +11889,68,12.5,24,0.0 +11889,50,16.25,24,0.0 +11889,25,14,25,0.0 +11889,62,49.3,22,0.0 +11889,74,10,11,0.0 +11890,44,19.45,25,0.0 +11890,50,16.25,45,0.0 +11890,45,9.5,29,0.0 +11890,32,32,8,0.0 +11890,22,21,28,0.0 +11890,68,12.5,33,0.0 +11890,73,15,45,0.0 +11890,8,40,17,0.0 +11890,12,38,27,0.0 +11890,23,9,29,0.0 +11890,55,24,42,0.0 +11890,60,34,13,0.0 +11890,47,9.5,47,0.0 +11890,49,20,32,0.0 +11890,63,43.9,4,0.0 +11890,62,49.3,39,0.0 +11890,70,15,39,0.0 +11890,35,18,40,0.0 +11890,27,43.9,6,0.0 +11890,39,18,29,0.0 +11890,34,14,41,0.0 +11890,58,13.25,6,0.0 +11890,16,17.45,36,0.0 +11890,5,21.35,48,0.0 +11890,17,39,42,0.0 +11890,51,53,46,0.0 +11890,24,4.5,2,0.0 +11890,61,28.5,48,0.0 +11890,18,62.5,43,0.0 +11890,36,19,49,0.0 +11890,13,6,32,0.0 +11890,77,13,9,0.0 +11890,48,12.75,7,0.0 +11890,40,18.4,9,0.0 +11890,42,14,22,0.0 +11890,29,123.79,10,0.0 +11890,28,45.6,38,0.0 +11890,56,38,13,0.0 +11890,69,36,44,0.0 +11890,21,10,50,0.0 +11890,1,18,23,0.0 +11890,25,14,3,0.0 +11890,9,97,24,0.0 +11890,67,14,41,0.0 +11890,33,2.5,41,0.0 +11890,76,18,43,0.0 +11890,54,7.45,19,0.0 +11890,37,26,39,0.0 +11890,7,30,21,0.0 +11890,6,25,13,0.0 +11890,66,17,36,0.0 +11890,14,23.25,38,0.0 +11890,2,19,19,0.0 +11890,41,9.65,42,0.0 +11890,19,9.2,31,0.0 +11890,46,12,18,0.0 +11890,20,81,43,0.0 +11890,31,12.5,26,0.0 +11890,75,7.75,44,0.0 +11890,59,55,30,0.0 +11890,74,10,26,0.0 +11890,15,15.5,4,0.0 +11890,65,21.05,34,0.0 +11890,4,22,33,0.0 +11890,57,19.5,50,0.0 +11890,30,25.89,42,0.0 +11890,71,21.5,16,0.0 +11890,10,31,45,0.0 +11890,52,7,32,0.0 +11890,72,34.8,38,0.0 +11890,38,263.5,35,0.0 +11890,11,21,8,0.0 +11890,43,46,33,0.0 +11890,26,31.23,6,0.0 +11891,66,17,3,0.0 +11891,51,53,9,0.0 +11891,60,34,41,0.0 +11891,30,25.89,24,0.0 +11891,62,49.3,22,0.0 +11891,34,14,20,0.0 +11891,35,18,29,0.0 +11891,75,7.75,37,0.0 +11891,69,36,29,0.0 +11891,7,30,17,0.0 +11891,24,4.5,9,0.0 +11891,23,9,40,0.0 +11891,13,6,19,0.0 +11891,55,24,30,0.0 +11891,63,43.9,19,0.0 +11891,49,20,36,0.0 +11891,42,14,37,0.0 +11891,22,21,27,0.0 +11891,17,39,3,0.0 +11891,15,15.5,1,0.0 +11891,16,17.45,40,0.0 +11891,29,123.79,18,0.0 +11891,57,19.5,18,0.0 +11891,11,21,16,0.0 +11891,72,34.8,2,0.0 +11891,8,40,22,0.0 +11891,5,21.35,35,0.0 +11891,18,62.5,30,0.0 +11891,73,15,33,0.0 +11891,74,10,41,0.0 +11891,47,9.5,48,0.0 +11891,40,18.4,34,0.0 +11891,37,26,1,0.0 +11891,10,31,6,0.0 +11891,33,2.5,47,0.0 +11891,70,15,6,0.0 +11891,76,18,35,0.0 +11891,67,14,45,0.0 +11891,28,45.6,7,0.0 +11891,59,55,46,0.0 +11891,64,33.25,47,0.0 +11891,54,7.45,22,0.0 +11891,9,97,12,0.0 +11891,14,23.25,13,0.0 +11892,25,14,44,0.0 +11892,1,18,24,0.0 +11892,33,2.5,3,0.0 +11892,74,10,13,0.0 +11892,52,7,37,0.0 +11892,69,36,44,0.0 +11892,56,38,25,0.0 +11892,17,39,42,0.0 +11892,35,18,17,0.0 +11892,61,28.5,5,0.0 +11892,3,10,12,0.0 +11892,71,21.5,15,0.0 +11892,73,15,23,0.0 +11892,64,33.25,44,0.0 +11892,30,25.89,44,0.0 +11892,7,30,24,0.0 +11892,11,21,18,0.0 +11892,46,12,3,0.0 +11892,27,43.9,5,0.0 +11892,53,32.8,27,0.0 +11892,22,21,23,0.0 +11892,4,22,42,0.0 +11892,19,9.2,4,0.0 +11892,39,18,9,0.0 +11892,8,40,34,0.0 +11892,40,18.4,31,0.0 +11892,77,13,10,0.0 +11892,54,7.45,15,0.0 +11892,42,14,27,0.0 +11892,63,43.9,31,0.0 +11892,47,9.5,49,0.0 +11892,10,31,35,0.0 +11892,28,45.6,26,0.0 +11892,65,21.05,9,0.0 +11892,43,46,21,0.0 +11892,14,23.25,36,0.0 +11892,2,19,11,0.0 +11892,18,62.5,39,0.0 +11892,21,10,30,0.0 +11892,6,25,45,0.0 +11892,72,34.8,10,0.0 +11892,58,13.25,16,0.0 +11892,59,55,13,0.0 +11892,48,12.75,30,0.0 +11892,38,263.5,15,0.0 +11892,44,19.45,14,0.0 +11892,67,14,27,0.0 +11892,12,38,34,0.0 +11892,60,34,15,0.0 +11892,49,20,7,0.0 +11892,68,12.5,50,0.0 +11892,51,53,30,0.0 +11892,50,16.25,10,0.0 +11892,13,6,46,0.0 +11892,31,12.5,25,0.0 +11892,37,26,2,0.0 +11892,9,97,44,0.0 +11893,50,16.25,3,0.0 +11893,48,12.75,41,0.0 +11893,7,30,28,0.0 +11893,62,49.3,24,0.0 +11893,30,25.89,34,0.0 +11893,9,97,11,0.0 +11893,53,32.8,19,0.0 +11893,17,39,15,0.0 +11893,61,28.5,15,0.0 +11893,23,9,30,0.0 +11893,34,14,37,0.0 +11893,65,21.05,26,0.0 +11893,10,31,46,0.0 +11893,59,55,25,0.0 +11893,28,45.6,47,0.0 +11893,40,18.4,20,0.0 +11893,25,14,37,0.0 +11893,45,9.5,21,0.0 +11893,18,62.5,32,0.0 +11894,10,31,25,0.0 +11894,29,123.79,23,0.0 +11894,25,14,36,0.0 +11894,5,21.35,28,0.0 +11894,6,25,49,0.0 +11894,41,9.65,13,0.0 +11894,36,19,1,0.0 +11894,65,21.05,40,0.0 +11894,19,9.2,24,0.0 +11894,14,23.25,21,0.0 +11894,73,15,38,0.0 +11894,4,22,44,0.0 +11894,24,4.5,8,0.0 +11894,51,53,35,0.0 +11894,22,21,39,0.0 +11894,42,14,45,0.0 +11894,57,19.5,44,0.0 +11894,26,31.23,28,0.0 +11894,44,19.45,2,0.0 +11895,65,21.05,23,0.0 +11895,17,39,44,0.0 +11895,43,46,45,0.0 +11895,45,9.5,12,0.0 +11895,9,97,28,0.0 +11895,2,19,5,0.0 +11895,29,123.79,42,0.0 +11895,7,30,11,0.0 +11895,38,263.5,21,0.0 +11895,28,45.6,8,0.0 +11895,35,18,41,0.0 +11895,13,6,9,0.0 +11895,23,9,15,0.0 +11895,60,34,35,0.0 +11895,44,19.45,3,0.0 +11895,37,26,14,0.0 +11895,64,33.25,48,0.0 +11896,71,21.5,28,0.0 +11896,31,12.5,19,0.0 +11896,35,18,1,0.0 +11896,11,21,19,0.0 +11897,74,10,28,0.0 +11897,60,34,37,0.0 +11897,63,43.9,30,0.0 +11897,58,13.25,20,0.0 +11897,48,12.75,31,0.0 +11897,5,21.35,46,0.0 +11897,31,12.5,19,0.0 +11897,61,28.5,9,0.0 +11897,65,21.05,36,0.0 +11897,77,13,24,0.0 +11897,66,17,5,0.0 +11897,26,31.23,36,0.0 +11897,30,25.89,36,0.0 +11897,18,62.5,20,0.0 +11897,76,18,30,0.0 +11897,6,25,47,0.0 +11897,42,14,17,0.0 +11897,3,10,10,0.0 +11897,59,55,15,0.0 +11897,44,19.45,19,0.0 +11897,32,32,35,0.0 +11897,34,14,25,0.0 +11897,35,18,20,0.0 +11897,57,19.5,10,0.0 +11897,41,9.65,9,0.0 +11897,2,19,32,0.0 +11897,37,26,15,0.0 +11897,54,7.45,12,0.0 +11897,53,32.8,24,0.0 +11897,56,38,1,0.0 +11897,52,7,46,0.0 +11897,8,40,34,0.0 +11897,64,33.25,8,0.0 +11897,19,9.2,21,0.0 +11897,33,2.5,40,0.0 +11897,39,18,23,0.0 +11897,25,14,35,0.0 +11898,66,17,40,0.0 +11898,64,33.25,20,0.0 +11898,33,2.5,21,0.0 +11898,36,19,23,0.0 +11898,22,21,15,0.0 +11898,20,81,6,0.0 +11898,54,7.45,25,0.0 +11898,18,62.5,46,0.0 +11898,14,23.25,10,0.0 +11898,70,15,40,0.0 +11898,71,21.5,18,0.0 +11898,77,13,34,0.0 +11898,23,9,47,0.0 +11898,5,21.35,14,0.0 +11898,55,24,25,0.0 +11898,19,9.2,5,0.0 +11898,34,14,50,0.0 +11898,60,34,24,0.0 +11898,58,13.25,1,0.0 +11898,46,12,30,0.0 +11899,65,21.05,1,0.0 +11899,57,19.5,15,0.0 +11899,69,36,48,0.0 +11899,2,19,25,0.0 +11899,17,39,15,0.0 +11899,40,18.4,34,0.0 +11899,26,31.23,32,0.0 +11899,5,21.35,16,0.0 +11899,35,18,11,0.0 +11899,68,12.5,44,0.0 +11899,75,7.75,47,0.0 +11899,77,13,46,0.0 +11899,49,20,17,0.0 +11899,42,14,10,0.0 +11899,25,14,5,0.0 +11899,36,19,20,0.0 +11899,56,38,38,0.0 +11899,38,263.5,46,0.0 +11899,73,15,17,0.0 +11899,19,9.2,47,0.0 +11899,30,25.89,14,0.0 +11899,22,21,18,0.0 +11899,76,18,6,0.0 +11899,32,32,17,0.0 +11899,43,46,7,0.0 +11899,31,12.5,16,0.0 +11899,39,18,32,0.0 +11899,11,21,25,0.0 +11899,66,17,39,0.0 +11899,1,18,11,0.0 +11899,46,12,27,0.0 +11899,29,123.79,15,0.0 +11899,70,15,39,0.0 +11899,54,7.45,20,0.0 +11899,7,30,32,0.0 +11899,15,15.5,7,0.0 +11899,4,22,32,0.0 +11899,34,14,50,0.0 +11899,45,9.5,3,0.0 +11899,61,28.5,25,0.0 +11899,51,53,29,0.0 +11899,50,16.25,47,0.0 +11899,13,6,41,0.0 +11899,52,7,37,0.0 +11899,9,97,15,0.0 +11899,74,10,16,0.0 +11899,62,49.3,36,0.0 +11899,59,55,30,0.0 +11899,23,9,27,0.0 +11899,72,34.8,1,0.0 +11899,63,43.9,32,0.0 +11899,12,38,35,0.0 +11899,67,14,21,0.0 +11899,53,32.8,9,0.0 +11899,8,40,42,0.0 +11899,58,13.25,29,0.0 +11899,14,23.25,4,0.0 +11899,37,26,35,0.0 +11899,60,34,16,0.0 +11899,33,2.5,32,0.0 +11900,66,17,7,0.0 +11900,60,34,13,0.0 +11900,32,32,40,0.0 +11900,52,7,26,0.0 +11900,13,6,26,0.0 +11900,36,19,15,0.0 +11900,72,34.8,18,0.0 +11900,38,263.5,36,0.0 +11900,20,81,31,0.0 +11900,57,19.5,3,0.0 +11900,23,9,38,0.0 +11900,3,10,14,0.0 +11900,12,38,8,0.0 +11900,26,31.23,23,0.0 +11900,42,14,12,0.0 +11900,21,10,11,0.0 +11900,5,21.35,20,0.0 +11900,58,13.25,28,0.0 +11900,39,18,38,0.0 +11900,37,26,5,0.0 +11900,1,18,29,0.0 +11900,47,9.5,2,0.0 +11901,11,21,41,0.0 +11901,57,19.5,26,0.0 +11901,20,81,28,0.0 +11901,69,36,24,0.0 +11901,75,7.75,12,0.0 +11901,45,9.5,27,0.0 +11901,25,14,11,0.0 +11901,43,46,27,0.0 +11901,51,53,38,0.0 +11901,67,14,41,0.0 +11901,18,62.5,39,0.0 +11901,71,21.5,18,0.0 +11901,16,17.45,7,0.0 +11901,68,12.5,40,0.0 +11901,73,15,5,0.0 +11901,29,123.79,36,0.0 +11901,36,19,21,0.0 +11901,21,10,29,0.0 +11901,17,39,33,0.0 +11901,9,97,27,0.0 +11901,76,18,6,0.0 +11901,62,49.3,2,0.0 +11901,54,7.45,20,0.0 +11901,31,12.5,46,0.0 +11901,70,15,43,0.0 +11901,6,25,13,0.0 +11901,28,45.6,4,0.0 +11901,56,38,30,0.0 +11901,2,19,13,0.0 +11901,44,19.45,19,0.0 +11901,58,13.25,23,0.0 +11901,59,55,2,0.0 +11901,42,14,4,0.0 +11901,47,9.5,14,0.0 +11901,23,9,12,0.0 +11901,64,33.25,18,0.0 +11901,38,263.5,3,0.0 +11901,14,23.25,44,0.0 +11901,61,28.5,10,0.0 +11901,52,7,16,0.0 +11901,53,32.8,12,0.0 +11901,46,12,10,0.0 +11901,26,31.23,31,0.0 +11901,49,20,5,0.0 +11901,27,43.9,22,0.0 +11901,19,9.2,25,0.0 +11901,66,17,36,0.0 +11901,72,34.8,44,0.0 +11901,7,30,42,0.0 +11901,3,10,32,0.0 +11901,10,31,45,0.0 +11901,5,21.35,6,0.0 +11901,24,4.5,22,0.0 +11901,50,16.25,42,0.0 +11901,32,32,20,0.0 +11901,8,40,23,0.0 +11901,77,13,42,0.0 +11901,12,38,11,0.0 +11901,39,18,36,0.0 +11901,33,2.5,37,0.0 +11901,74,10,18,0.0 +11901,30,25.89,45,0.0 +11902,75,7.75,27,0.0 +11902,10,31,47,0.0 +11902,37,26,47,0.0 +11902,13,6,42,0.0 +11902,68,12.5,7,0.0 +11902,15,15.5,20,0.0 +11902,65,21.05,23,0.0 +11902,69,36,8,0.0 +11902,46,12,31,0.0 +11902,27,43.9,32,0.0 +11902,6,25,10,0.0 +11902,36,19,4,0.0 +11902,55,24,10,0.0 +11902,66,17,44,0.0 +11902,16,17.45,34,0.0 +11902,53,32.8,21,0.0 +11903,52,7,4,0.0 +11903,31,12.5,10,0.0 +11903,54,7.45,11,0.0 +11903,48,12.75,14,0.0 +11903,12,38,30,0.0 +11903,60,34,45,0.0 +11903,37,26,49,0.0 +11903,7,30,10,0.0 +11903,18,62.5,50,0.0 +11903,76,18,40,0.0 +11903,42,14,2,0.0 +11903,17,39,3,0.0 +11903,34,14,44,0.0 +11903,4,22,1,0.0 +11903,67,14,1,0.0 +11903,10,31,49,0.0 +11903,23,9,14,0.0 +11903,59,55,42,0.0 +11903,77,13,42,0.0 +11903,5,21.35,30,0.0 +11903,11,21,3,0.0 +11903,35,18,4,0.0 +11903,20,81,27,0.0 +11903,50,16.25,7,0.0 +11903,57,19.5,7,0.0 +11903,38,263.5,5,0.0 +11903,72,34.8,1,0.0 +11903,49,20,1,0.0 +11903,47,9.5,6,0.0 +11903,51,53,15,0.0 +11904,30,25.89,34,0.0 +11904,37,26,5,0.0 +11904,73,15,10,0.0 +11904,35,18,27,0.0 +11904,77,13,23,0.0 +11904,69,36,12,0.0 +11904,12,38,22,0.0 +11904,67,14,13,0.0 +11904,27,43.9,30,0.0 +11904,28,45.6,38,0.0 +11904,29,123.79,2,0.0 +11904,16,17.45,12,0.0 +11904,41,9.65,10,0.0 +11904,42,14,30,0.0 +11904,45,9.5,2,0.0 +11904,18,62.5,30,0.0 +11904,59,55,47,0.0 +11904,39,18,40,0.0 +11904,3,10,6,0.0 +11904,71,21.5,30,0.0 +11904,63,43.9,41,0.0 +11904,65,21.05,37,0.0 +11904,50,16.25,7,0.0 +11904,24,4.5,31,0.0 +11904,26,31.23,15,0.0 +11904,57,19.5,1,0.0 +11904,54,7.45,23,0.0 +11904,7,30,12,0.0 +11904,58,13.25,29,0.0 +11904,13,6,25,0.0 +11904,1,18,45,0.0 +11904,48,12.75,39,0.0 +11904,51,53,49,0.0 +11904,2,19,23,0.0 +11904,14,23.25,40,0.0 +11904,66,17,23,0.0 +11904,8,40,47,0.0 +11904,60,34,24,0.0 +11904,43,46,34,0.0 +11904,72,34.8,13,0.0 +11904,75,7.75,1,0.0 +11904,6,25,13,0.0 +11904,38,263.5,41,0.0 +11904,25,14,3,0.0 +11904,10,31,23,0.0 +11905,30,25.89,46,0.0 +11905,53,32.8,9,0.0 +11905,12,38,38,0.0 +11905,45,9.5,19,0.0 +11905,25,14,31,0.0 +11905,71,21.5,46,0.0 +11905,62,49.3,29,0.0 +11905,43,46,7,0.0 +11905,57,19.5,28,0.0 +11905,44,19.45,35,0.0 +11905,75,7.75,8,0.0 +11905,17,39,7,0.0 +11905,36,19,6,0.0 +11905,9,97,2,0.0 +11905,22,21,4,0.0 +11905,2,19,48,0.0 +11905,50,16.25,44,0.0 +11905,46,12,38,0.0 +11905,13,6,15,0.0 +11905,16,17.45,32,0.0 +11905,4,22,50,0.0 +11905,61,28.5,28,0.0 +11905,74,10,32,0.0 +11905,29,123.79,2,0.0 +11905,33,2.5,2,0.0 +11905,20,81,3,0.0 +11905,48,12.75,34,0.0 +11905,10,31,22,0.0 +11905,1,18,19,0.0 +11905,27,43.9,15,0.0 +11905,66,17,49,0.0 +11905,54,7.45,13,0.0 +11905,31,12.5,10,0.0 +11905,72,34.8,20,0.0 +11905,11,21,50,0.0 +11905,8,40,33,0.0 +11905,47,9.5,17,0.0 +11905,52,7,2,0.0 +11905,73,15,13,0.0 +11905,56,38,33,0.0 +11905,24,4.5,40,0.0 +11905,59,55,15,0.0 +11905,77,13,29,0.0 +11905,39,18,38,0.0 +11905,49,20,13,0.0 +11905,63,43.9,19,0.0 +11905,76,18,17,0.0 +11905,3,10,14,0.0 +11905,38,263.5,20,0.0 +11905,18,62.5,9,0.0 +11905,70,15,37,0.0 +11905,68,12.5,17,0.0 +11905,34,14,20,0.0 +11905,51,53,46,0.0 +11905,60,34,33,0.0 +11905,15,15.5,7,0.0 +11905,7,30,13,0.0 +11905,35,18,11,0.0 +11905,19,9.2,37,0.0 +11905,55,24,44,0.0 +11905,32,32,16,0.0 +11905,6,25,1,0.0 +11905,40,18.4,35,0.0 +11905,64,33.25,7,0.0 +11905,37,26,6,0.0 +11905,69,36,4,0.0 +11905,67,14,37,0.0 +11905,21,10,15,0.0 +11905,58,13.25,4,0.0 +11905,5,21.35,20,0.0 +11905,42,14,46,0.0 +11905,28,45.6,17,0.0 +11905,23,9,25,0.0 +11905,65,21.05,22,0.0 +11905,26,31.23,36,0.0 +11905,14,23.25,47,0.0 +11906,7,30,19,0.0 +11906,6,25,2,0.0 +11906,22,21,29,0.0 +11906,60,34,8,0.0 +11906,16,17.45,2,0.0 +11907,27,43.9,13,0.0 +11907,59,55,2,0.0 +11907,17,39,46,0.0 +11907,14,23.25,50,0.0 +11907,21,10,33,0.0 +11907,3,10,5,0.0 +11907,36,19,31,0.0 +11907,38,263.5,35,0.0 +11907,56,38,26,0.0 +11907,73,15,5,0.0 +11907,68,12.5,33,0.0 +11907,46,12,8,0.0 +11907,25,14,7,0.0 +11907,71,21.5,28,0.0 +11907,7,30,22,0.0 +11907,4,22,1,0.0 +11907,10,31,2,0.0 +11907,74,10,29,0.0 +11907,70,15,49,0.0 +11907,41,9.65,32,0.0 +11907,31,12.5,23,0.0 +11907,54,7.45,17,0.0 +11907,11,21,27,0.0 +11907,5,21.35,14,0.0 +11907,43,46,7,0.0 +11907,13,6,9,0.0 +11907,66,17,13,0.0 +11907,28,45.6,33,0.0 +11907,75,7.75,49,0.0 +11907,34,14,49,0.0 +11907,49,20,3,0.0 +11907,69,36,38,0.0 +11907,76,18,8,0.0 +11907,51,53,20,0.0 +11907,52,7,10,0.0 +11907,47,9.5,3,0.0 +11907,45,9.5,16,0.0 +11907,35,18,22,0.0 +11907,19,9.2,50,0.0 +11907,23,9,3,0.0 +11907,33,2.5,16,0.0 +11908,67,14,39,0.0 +11908,56,38,7,0.0 +11908,75,7.75,13,0.0 +11908,31,12.5,40,0.0 +11908,32,32,36,0.0 +11908,24,4.5,24,0.0 +11908,76,18,43,0.0 +11908,41,9.65,42,0.0 +11908,66,17,2,0.0 +11908,63,43.9,31,0.0 +11908,21,10,3,0.0 +11908,77,13,36,0.0 +11908,12,38,20,0.0 +11908,71,21.5,41,0.0 +11908,68,12.5,40,0.0 +11908,72,34.8,30,0.0 +11908,25,14,28,0.0 +11908,4,22,35,0.0 +11908,8,40,4,0.0 +11908,61,28.5,49,0.0 +11908,16,17.45,43,0.0 +11908,6,25,7,0.0 +11908,17,39,12,0.0 +11908,37,26,39,0.0 +11908,57,19.5,46,0.0 +11908,58,13.25,15,0.0 +11908,18,62.5,38,0.0 +11908,3,10,26,0.0 +11908,62,49.3,10,0.0 +11908,20,81,8,0.0 +11908,34,14,2,0.0 +11908,15,15.5,38,0.0 +11908,59,55,19,0.0 +11908,1,18,11,0.0 +11908,2,19,2,0.0 +11908,55,24,19,0.0 +11908,73,15,23,0.0 +11908,33,2.5,45,0.0 +11908,42,14,11,0.0 +11908,53,32.8,24,0.0 +11908,48,12.75,36,0.0 +11908,35,18,48,0.0 +11908,60,34,11,0.0 +11908,13,6,6,0.0 +11908,7,30,39,0.0 +11908,70,15,10,0.0 +11908,46,12,14,0.0 +11908,29,123.79,12,0.0 +11908,22,21,41,0.0 +11908,69,36,39,0.0 +11908,23,9,28,0.0 +11908,54,7.45,28,0.0 +11908,39,18,26,0.0 +11908,36,19,50,0.0 +11908,64,33.25,26,0.0 +11908,47,9.5,46,0.0 +11908,5,21.35,38,0.0 +11908,26,31.23,42,0.0 +11908,49,20,1,0.0 +11908,19,9.2,5,0.0 +11908,44,19.45,42,0.0 +11908,10,31,8,0.0 +11908,9,97,2,0.0 +11908,11,21,32,0.0 +11908,74,10,27,0.0 +11909,65,21.05,12,0.0 +11909,41,9.65,21,0.0 +11909,68,12.5,9,0.0 +11909,62,49.3,36,0.0 +11909,29,123.79,30,0.0 +11909,72,34.8,38,0.0 +11909,67,14,3,0.0 +11909,75,7.75,14,0.0 +11909,21,10,47,0.0 +11909,22,21,45,0.0 +11909,4,22,3,0.0 +11909,33,2.5,10,0.0 +11909,28,45.6,23,0.0 +11909,15,15.5,12,0.0 +11909,47,9.5,15,0.0 +11909,66,17,43,0.0 +11909,74,10,31,0.0 +11909,43,46,8,0.0 +11909,44,19.45,14,0.0 +11909,30,25.89,14,0.0 +11909,77,13,50,0.0 +11909,32,32,50,0.0 +11909,57,19.5,5,0.0 +11909,42,14,10,0.0 +11909,20,81,5,0.0 +11909,50,16.25,47,0.0 +11909,23,9,34,0.0 +11909,13,6,44,0.0 +11909,48,12.75,28,0.0 +11909,12,38,17,0.0 +11909,10,31,1,0.0 +11909,5,21.35,11,0.0 +11909,8,40,50,0.0 +11909,7,30,48,0.0 +11909,11,21,47,0.0 +11909,26,31.23,28,0.0 +11909,38,263.5,9,0.0 +11909,46,12,36,0.0 +11909,76,18,20,0.0 +11909,31,12.5,31,0.0 +11909,71,21.5,21,0.0 +11909,58,13.25,5,0.0 +11909,51,53,12,0.0 +11909,61,28.5,22,0.0 +11909,6,25,12,0.0 +11909,19,9.2,48,0.0 +11909,25,14,1,0.0 +11909,3,10,1,0.0 +11909,53,32.8,2,0.0 +11909,18,62.5,15,0.0 +11909,69,36,21,0.0 +11909,63,43.9,36,0.0 +11909,39,18,34,0.0 +11910,5,21.35,10,0.0 +11910,65,21.05,20,0.0 +11910,32,32,45,0.0 +11910,26,31.23,5,0.0 +11910,4,22,43,0.0 +11910,31,12.5,21,0.0 +11910,77,13,27,0.0 +11910,18,62.5,17,0.0 +11910,43,46,23,0.0 +11910,36,19,15,0.0 +11910,74,10,17,0.0 +11910,33,2.5,30,0.0 +11910,22,21,30,0.0 +11910,10,31,45,0.0 +11910,72,34.8,19,0.0 +11910,53,32.8,14,0.0 +11910,42,14,4,0.0 +11910,11,21,6,0.0 +11910,67,14,1,0.0 +11910,76,18,36,0.0 +11910,12,38,23,0.0 +11910,20,81,27,0.0 +11910,19,9.2,32,0.0 +11910,7,30,29,0.0 +11910,60,34,24,0.0 +11910,41,9.65,10,0.0 +11910,6,25,13,0.0 +11910,75,7.75,33,0.0 +11910,70,15,44,0.0 +11910,56,38,43,0.0 +11910,39,18,40,0.0 +11910,59,55,45,0.0 +11910,14,23.25,4,0.0 +11910,24,4.5,36,0.0 +11910,27,43.9,16,0.0 +11910,29,123.79,42,0.0 +11910,16,17.45,7,0.0 +11910,35,18,45,0.0 +11910,50,16.25,33,0.0 +11910,48,12.75,32,0.0 +11910,57,19.5,9,0.0 +11910,52,7,28,0.0 +11910,40,18.4,40,0.0 +11910,61,28.5,32,0.0 +11910,46,12,35,0.0 +11910,1,18,46,0.0 +11910,17,39,15,0.0 +11910,49,20,16,0.0 +11910,64,33.25,32,0.0 +11911,31,12.5,41,0.0 +11911,46,12,45,0.0 +11911,70,15,47,0.0 +11911,26,31.23,17,0.0 +11911,33,2.5,1,0.0 +11911,42,14,48,0.0 +11911,47,9.5,11,0.0 +11911,61,28.5,31,0.0 +11912,3,10,19,0.0 +11912,8,40,7,0.0 +11912,73,15,29,0.0 +11912,38,263.5,33,0.0 +11912,9,97,31,0.0 +11912,75,7.75,41,0.0 +11912,26,31.23,25,0.0 +11912,5,21.35,39,0.0 +11912,64,33.25,39,0.0 +11912,11,21,1,0.0 +11912,35,18,42,0.0 +11912,19,9.2,32,0.0 +11912,42,14,39,0.0 +11912,49,20,13,0.0 +11912,10,31,27,0.0 +11912,45,9.5,43,0.0 +11912,15,15.5,24,0.0 +11912,57,19.5,16,0.0 +11912,50,16.25,16,0.0 +11912,14,23.25,15,0.0 +11912,71,21.5,31,0.0 +11912,22,21,27,0.0 +11912,43,46,15,0.0 +11912,63,43.9,5,0.0 +11912,18,62.5,24,0.0 +11912,24,4.5,1,0.0 +11912,68,12.5,5,0.0 +11912,69,36,34,0.0 +11912,34,14,44,0.0 +11912,60,34,36,0.0 +11912,2,19,34,0.0 +11912,25,14,25,0.0 +11912,55,24,17,0.0 +11912,27,43.9,35,0.0 +11912,46,12,48,0.0 +11912,40,18.4,27,0.0 +11912,56,38,43,0.0 +11912,1,18,23,0.0 +11912,58,13.25,29,0.0 +11912,54,7.45,21,0.0 +11912,48,12.75,35,0.0 +11912,52,7,42,0.0 +11912,20,81,32,0.0 +11913,31,12.5,17,0.0 +11913,30,25.89,18,0.0 +11913,37,26,11,0.0 +11913,9,97,27,0.0 +11913,38,263.5,2,0.0 +11913,4,22,50,0.0 +11913,20,81,32,0.0 +11913,8,40,15,0.0 +11913,11,21,3,0.0 +11913,71,21.5,22,0.0 +11913,26,31.23,19,0.0 +11913,77,13,27,0.0 +11913,34,14,20,0.0 +11913,65,21.05,25,0.0 +11913,7,30,1,0.0 +11913,29,123.79,49,0.0 +11913,73,15,36,0.0 +11913,12,38,40,0.0 +11913,42,14,42,0.0 +11913,41,9.65,36,0.0 +11913,10,31,16,0.0 +11913,43,46,48,0.0 +11913,55,24,48,0.0 +11913,6,25,43,0.0 +11913,59,55,24,0.0 +11913,16,17.45,39,0.0 +11913,2,19,49,0.0 +11913,47,9.5,21,0.0 +11913,51,53,46,0.0 +11913,63,43.9,34,0.0 +11913,33,2.5,49,0.0 +11913,27,43.9,23,0.0 +11913,40,18.4,23,0.0 +11913,18,62.5,14,0.0 +11913,13,6,48,0.0 +11913,15,15.5,35,0.0 +11913,21,10,50,0.0 +11913,67,14,13,0.0 +11913,48,12.75,25,0.0 +11913,49,20,32,0.0 +11913,54,7.45,6,0.0 +11914,67,14,22,0.0 +11914,25,14,31,0.0 +11914,43,46,24,0.0 +11914,66,17,25,0.0 +11914,71,21.5,12,0.0 +11914,5,21.35,43,0.0 +11914,61,28.5,25,0.0 +11914,20,81,47,0.0 +11914,13,6,32,0.0 +11914,14,23.25,38,0.0 +11914,68,12.5,12,0.0 +11914,16,17.45,33,0.0 +11914,18,62.5,49,0.0 +11914,29,123.79,7,0.0 +11914,32,32,47,0.0 +11914,28,45.6,9,0.0 +11914,42,14,34,0.0 +11914,41,9.65,23,0.0 +11914,21,10,46,0.0 +11914,48,12.75,24,0.0 +11914,53,32.8,16,0.0 +11914,7,30,19,0.0 +11914,9,97,41,0.0 +11914,62,49.3,29,0.0 +11914,75,7.75,25,0.0 +11914,47,9.5,4,0.0 +11914,31,12.5,32,0.0 +11914,36,19,43,0.0 +11914,22,21,11,0.0 +11914,19,9.2,34,0.0 +11914,4,22,1,0.0 +11914,6,25,26,0.0 +11914,37,26,20,0.0 +11914,38,263.5,34,0.0 +11914,1,18,13,0.0 +11914,49,20,8,0.0 +11914,8,40,17,0.0 +11914,2,19,19,0.0 +11914,56,38,38,0.0 +11914,45,9.5,35,0.0 +11914,73,15,50,0.0 +11914,35,18,22,0.0 +11914,34,14,45,0.0 +11914,3,10,6,0.0 +11914,52,7,45,0.0 +11914,70,15,33,0.0 +11914,15,15.5,30,0.0 +11914,33,2.5,19,0.0 +11914,39,18,25,0.0 +11914,59,55,32,0.0 +11914,26,31.23,21,0.0 +11915,48,12.75,2,0.0 +11915,56,38,9,0.0 +11915,61,28.5,20,0.0 +11915,76,18,44,0.0 +11915,70,15,32,0.0 +11915,54,7.45,38,0.0 +11915,49,20,27,0.0 +11915,35,18,48,0.0 +11915,17,39,13,0.0 +11915,7,30,38,0.0 +11915,11,21,12,0.0 +11915,4,22,38,0.0 +11915,60,34,10,0.0 +11915,59,55,30,0.0 +11915,16,17.45,22,0.0 +11915,72,34.8,3,0.0 +11915,24,4.5,21,0.0 +11915,21,10,33,0.0 +11915,33,2.5,29,0.0 +11915,73,15,27,0.0 +11915,3,10,16,0.0 +11915,43,46,9,0.0 +11915,50,16.25,21,0.0 +11915,37,26,2,0.0 +11915,69,36,25,0.0 +11915,44,19.45,40,0.0 +11915,8,40,41,0.0 +11915,62,49.3,44,0.0 +11915,40,18.4,21,0.0 +11915,67,14,25,0.0 +11915,65,21.05,6,0.0 +11915,77,13,50,0.0 +11915,2,19,45,0.0 +11915,58,13.25,16,0.0 +11915,47,9.5,23,0.0 +11915,5,21.35,40,0.0 +11915,20,81,15,0.0 +11915,63,43.9,4,0.0 +11915,34,14,49,0.0 +11915,45,9.5,39,0.0 +11915,26,31.23,10,0.0 +11915,14,23.25,8,0.0 +11915,57,19.5,39,0.0 +11915,52,7,22,0.0 +11915,9,97,2,0.0 +11915,38,263.5,17,0.0 +11915,22,21,10,0.0 +11915,66,17,28,0.0 +11915,36,19,40,0.0 +11915,71,21.5,39,0.0 +11915,41,9.65,25,0.0 +11915,42,14,8,0.0 +11915,55,24,7,0.0 +11915,1,18,8,0.0 +11915,68,12.5,13,0.0 +11915,39,18,16,0.0 +11915,6,25,30,0.0 +11915,29,123.79,50,0.0 +11915,15,15.5,5,0.0 +11915,30,25.89,46,0.0 +11915,25,14,16,0.0 +11915,27,43.9,39,0.0 +11915,53,32.8,18,0.0 +11915,28,45.6,50,0.0 +11915,31,12.5,32,0.0 +11915,12,38,40,0.0 +11915,51,53,29,0.0 +11915,75,7.75,17,0.0 +11915,32,32,8,0.0 +11915,13,6,32,0.0 +11916,15,15.5,48,0.0 +11916,49,20,7,0.0 +11916,12,38,49,0.0 +11916,68,12.5,24,0.0 +11916,60,34,34,0.0 +11916,13,6,13,0.0 +11916,17,39,41,0.0 +11916,18,62.5,27,0.0 +11916,26,31.23,32,0.0 +11916,47,9.5,29,0.0 +11916,67,14,49,0.0 +11916,77,13,30,0.0 +11916,59,55,49,0.0 +11916,52,7,21,0.0 +11916,30,25.89,26,0.0 +11916,53,32.8,38,0.0 +11916,10,31,41,0.0 +11916,31,12.5,26,0.0 +11916,64,33.25,46,0.0 +11916,76,18,43,0.0 +11916,70,15,23,0.0 +11916,4,22,8,0.0 +11916,19,9.2,22,0.0 +11916,35,18,10,0.0 +11916,32,32,44,0.0 +11916,55,24,18,0.0 +11916,43,46,32,0.0 +11916,34,14,44,0.0 +11916,44,19.45,25,0.0 +11916,14,23.25,33,0.0 +11916,6,25,32,0.0 +11916,3,10,29,0.0 +11916,40,18.4,33,0.0 +11917,5,21.35,7,0.0 +11917,11,21,20,0.0 +11917,60,34,9,0.0 +11917,38,263.5,36,0.0 +11917,56,38,43,0.0 +11917,73,15,9,0.0 +11917,77,13,28,0.0 +11917,24,4.5,10,0.0 +11917,51,53,12,0.0 +11917,65,21.05,8,0.0 +11917,70,15,44,0.0 +11917,66,17,27,0.0 +11917,59,55,19,0.0 +11917,10,31,2,0.0 +11917,27,43.9,33,0.0 +11917,71,21.5,22,0.0 +11917,22,21,11,0.0 +11917,26,31.23,27,0.0 +11917,18,62.5,25,0.0 +11917,72,34.8,16,0.0 +11917,20,81,7,0.0 +11917,30,25.89,36,0.0 +11917,32,32,23,0.0 +11917,14,23.25,34,0.0 +11917,57,19.5,45,0.0 +11917,4,22,18,0.0 +11918,9,97,35,0.0 +11918,8,40,34,0.0 +11918,5,21.35,13,0.0 +11918,33,2.5,29,0.0 +11918,56,38,24,0.0 +11918,12,38,37,0.0 +11918,49,20,27,0.0 +11918,45,9.5,29,0.0 +11918,22,21,6,0.0 +11918,37,26,35,0.0 +11918,35,18,22,0.0 +11918,58,13.25,40,0.0 +11918,36,19,22,0.0 +11918,73,15,50,0.0 +11918,77,13,49,0.0 +11918,16,17.45,2,0.0 +11918,20,81,32,0.0 +11918,4,22,29,0.0 +11918,28,45.6,25,0.0 +11918,38,263.5,21,0.0 +11918,25,14,39,0.0 +11918,42,14,44,0.0 +11918,72,34.8,5,0.0 +11918,29,123.79,24,0.0 +11918,10,31,8,0.0 +11918,51,53,19,0.0 +11918,66,17,47,0.0 +11918,15,15.5,2,0.0 +11918,46,12,29,0.0 +11918,34,14,27,0.0 +11918,17,39,25,0.0 +11918,70,15,47,0.0 +11918,6,25,27,0.0 +11918,61,28.5,48,0.0 +11918,48,12.75,43,0.0 +11918,40,18.4,31,0.0 +11918,30,25.89,26,0.0 +11918,69,36,20,0.0 +11918,55,24,39,0.0 +11918,67,14,46,0.0 +11918,76,18,16,0.0 +11918,63,43.9,40,0.0 +11918,41,9.65,32,0.0 +11918,23,9,5,0.0 +11918,26,31.23,33,0.0 +11918,1,18,16,0.0 +11918,18,62.5,21,0.0 +11918,32,32,2,0.0 +11918,74,10,49,0.0 +11918,75,7.75,34,0.0 +11918,3,10,24,0.0 +11918,39,18,25,0.0 +11918,2,19,20,0.0 +11918,52,7,39,0.0 +11918,62,49.3,12,0.0 +11918,71,21.5,27,0.0 +11918,19,9.2,13,0.0 +11918,65,21.05,10,0.0 +11918,44,19.45,49,0.0 +11918,64,33.25,40,0.0 +11919,39,18,30,0.0 +11919,46,12,4,0.0 +11919,10,31,39,0.0 +11919,73,15,48,0.0 +11919,29,123.79,36,0.0 +11920,75,7.75,21,0.0 +11920,71,21.5,22,0.0 +11920,60,34,30,0.0 +11920,29,123.79,38,0.0 +11920,2,19,39,0.0 +11920,46,12,39,0.0 +11920,28,45.6,7,0.0 +11920,23,9,18,0.0 +11920,8,40,29,0.0 +11920,54,7.45,5,0.0 +11920,5,21.35,7,0.0 +11920,18,62.5,24,0.0 +11920,61,28.5,30,0.0 +11920,69,36,49,0.0 +11920,22,21,35,0.0 +11920,50,16.25,29,0.0 +11920,72,34.8,5,0.0 +11920,14,23.25,39,0.0 +11920,9,97,36,0.0 +11920,47,9.5,11,0.0 +11920,33,2.5,8,0.0 +11920,53,32.8,23,0.0 +11920,57,19.5,28,0.0 +11920,12,38,23,0.0 +11920,70,15,36,0.0 +11920,55,24,4,0.0 +11920,37,26,32,0.0 +11920,52,7,46,0.0 +11920,30,25.89,46,0.0 +11920,56,38,2,0.0 +11920,20,81,2,0.0 +11920,3,10,34,0.0 +11920,31,12.5,18,0.0 +11920,16,17.45,37,0.0 +11920,21,10,43,0.0 +11920,36,19,43,0.0 +11920,34,14,28,0.0 +11920,17,39,41,0.0 +11920,15,15.5,31,0.0 +11920,6,25,47,0.0 +11920,35,18,23,0.0 +11920,44,19.45,25,0.0 +11920,13,6,11,0.0 +11920,76,18,28,0.0 +11920,19,9.2,40,0.0 +11920,42,14,32,0.0 +11920,45,9.5,9,0.0 +11920,4,22,17,0.0 +11920,59,55,1,0.0 +11920,64,33.25,39,0.0 +11920,67,14,14,0.0 +11920,49,20,44,0.0 +11920,26,31.23,33,0.0 +11920,73,15,41,0.0 +11920,62,49.3,13,0.0 +11920,11,21,23,0.0 +11920,65,21.05,44,0.0 +11920,38,263.5,20,0.0 +11920,43,46,24,0.0 +11920,58,13.25,9,0.0 +11920,40,18.4,46,0.0 +11920,39,18,49,0.0 +11920,32,32,36,0.0 +11920,1,18,38,0.0 +11920,48,12.75,10,0.0 +11920,63,43.9,27,0.0 +11920,10,31,16,0.0 +11920,77,13,12,0.0 +11920,7,30,45,0.0 +11920,27,43.9,36,0.0 +11920,74,10,27,0.0 +11920,51,53,28,0.0 +11920,68,12.5,18,0.0 +11921,76,18,42,0.0 +11921,53,32.8,19,0.0 +11921,20,81,1,0.0 +11921,14,23.25,24,0.0 +11921,25,14,32,0.0 +11921,61,28.5,19,0.0 +11921,9,97,20,0.0 +11921,29,123.79,16,0.0 +11921,48,12.75,9,0.0 +11921,44,19.45,43,0.0 +11921,46,12,15,0.0 +11921,27,43.9,12,0.0 +11921,64,33.25,23,0.0 +11921,70,15,18,0.0 +11921,77,13,22,0.0 +11921,7,30,41,0.0 +11921,12,38,16,0.0 +11921,17,39,25,0.0 +11921,56,38,31,0.0 +11921,30,25.89,23,0.0 +11921,45,9.5,47,0.0 +11921,6,25,14,0.0 +11921,59,55,22,0.0 +11921,1,18,5,0.0 +11921,15,15.5,39,0.0 +11921,5,21.35,50,0.0 +11921,58,13.25,47,0.0 +11921,63,43.9,32,0.0 +11921,49,20,32,0.0 +11921,26,31.23,50,0.0 +11921,54,7.45,25,0.0 +11921,33,2.5,12,0.0 +11921,41,9.65,10,0.0 +11921,62,49.3,19,0.0 +11921,72,34.8,48,0.0 +11921,16,17.45,35,0.0 +11922,75,7.75,33,0.0 +11922,36,19,31,0.0 +11922,39,18,19,0.0 +11922,77,13,27,0.0 +11922,3,10,29,0.0 +11922,54,7.45,6,0.0 +11922,25,14,1,0.0 +11922,71,21.5,41,0.0 +11922,45,9.5,30,0.0 +11922,62,49.3,37,0.0 +11922,9,97,26,0.0 +11922,67,14,42,0.0 +11922,18,62.5,16,0.0 +11922,14,23.25,42,0.0 +11922,55,24,27,0.0 +11922,66,17,19,0.0 +11922,31,12.5,34,0.0 +11922,5,21.35,10,0.0 +11922,10,31,16,0.0 +11922,30,25.89,16,0.0 +11922,42,14,45,0.0 +11922,32,32,13,0.0 +11922,19,9.2,28,0.0 +11922,59,55,17,0.0 +11922,40,18.4,27,0.0 +11922,76,18,41,0.0 +11922,1,18,25,0.0 +11922,24,4.5,3,0.0 +11922,73,15,37,0.0 +11922,33,2.5,27,0.0 +11922,52,7,35,0.0 +11922,70,15,37,0.0 +11922,49,20,32,0.0 +11922,69,36,6,0.0 +11922,57,19.5,37,0.0 +11922,26,31.23,40,0.0 +11922,16,17.45,31,0.0 +11922,64,33.25,14,0.0 +11922,47,9.5,20,0.0 +11922,20,81,32,0.0 +11922,38,263.5,18,0.0 +11922,72,34.8,15,0.0 +11922,61,28.5,45,0.0 +11922,60,34,4,0.0 +11922,4,22,45,0.0 +11922,22,21,12,0.0 +11922,56,38,35,0.0 +11922,23,9,22,0.0 +11922,63,43.9,38,0.0 +11922,8,40,9,0.0 +11922,35,18,49,0.0 +11922,21,10,20,0.0 +11922,48,12.75,44,0.0 +11922,6,25,45,0.0 +11923,19,9.2,32,0.0 +11923,65,21.05,45,0.0 +11923,48,12.75,31,0.0 +11923,46,12,34,0.0 +11923,22,21,20,0.0 +11923,69,36,30,0.0 +11923,68,12.5,32,0.0 +11924,24,4.5,42,0.0 +11924,36,19,14,0.0 +11924,27,43.9,11,0.0 +11924,74,10,16,0.0 +11924,9,97,8,0.0 +11924,63,43.9,6,0.0 +11924,4,22,36,0.0 +11924,69,36,48,0.0 +11924,40,18.4,49,0.0 +11924,2,19,9,0.0 +11924,19,9.2,25,0.0 +11924,37,26,48,0.0 +11924,58,13.25,9,0.0 +11924,70,15,4,0.0 +11924,45,9.5,24,0.0 +11924,18,62.5,5,0.0 +11924,68,12.5,29,0.0 +11924,29,123.79,15,0.0 +11924,43,46,6,0.0 +11924,65,21.05,33,0.0 +11924,71,21.5,12,0.0 +11924,8,40,40,0.0 +11924,30,25.89,21,0.0 +11925,74,10,26,0.0 +11925,67,14,29,0.0 +11925,45,9.5,41,0.0 +11925,49,20,10,0.0 +11925,38,263.5,47,0.0 +11925,13,6,37,0.0 +11925,39,18,28,0.0 +11925,46,12,4,0.0 +11925,44,19.45,17,0.0 +11925,36,19,22,0.0 +11925,31,12.5,13,0.0 +11925,63,43.9,9,0.0 +11925,11,21,35,0.0 +11925,51,53,35,0.0 +11925,35,18,40,0.0 +11925,9,97,29,0.0 +11925,28,45.6,10,0.0 +11925,60,34,22,0.0 +11925,68,12.5,9,0.0 +11925,19,9.2,48,0.0 +11925,43,46,16,0.0 +11925,50,16.25,30,0.0 +11925,21,10,4,0.0 +11925,18,62.5,13,0.0 +11925,59,55,24,0.0 +11925,30,25.89,30,0.0 +11925,14,23.25,43,0.0 +11925,8,40,23,0.0 +11925,5,21.35,41,0.0 +11925,20,81,35,0.0 +11925,47,9.5,18,0.0 +11925,3,10,9,0.0 +11925,70,15,35,0.0 +11925,72,34.8,31,0.0 +11926,8,40,24,0.0 +11926,68,12.5,33,0.0 +11926,34,14,23,0.0 +11926,5,21.35,34,0.0 +11926,22,21,10,0.0 +11926,51,53,48,0.0 +11926,58,13.25,27,0.0 +11926,6,25,44,0.0 +11926,46,12,18,0.0 +11926,3,10,31,0.0 +11926,66,17,39,0.0 +11926,23,9,23,0.0 +11926,67,14,25,0.0 +11926,74,10,42,0.0 +11926,21,10,2,0.0 +11926,27,43.9,6,0.0 +11926,77,13,12,0.0 +11926,55,24,15,0.0 +11926,44,19.45,48,0.0 +11926,13,6,6,0.0 +11926,35,18,23,0.0 +11926,45,9.5,10,0.0 +11926,64,33.25,11,0.0 +11926,54,7.45,42,0.0 +11926,20,81,9,0.0 +11926,60,34,22,0.0 +11926,11,21,1,0.0 +11926,43,46,13,0.0 +11926,19,9.2,17,0.0 +11926,70,15,13,0.0 +11926,24,4.5,34,0.0 +11926,50,16.25,11,0.0 +11926,31,12.5,50,0.0 +11926,49,20,18,0.0 +11926,25,14,5,0.0 +11926,4,22,50,0.0 +11926,65,21.05,16,0.0 +11926,61,28.5,25,0.0 +11926,32,32,28,0.0 +11926,75,7.75,7,0.0 +11926,38,263.5,14,0.0 +11926,76,18,20,0.0 +11926,52,7,1,0.0 +11927,59,55,1,0.0 +11927,1,18,4,0.0 +11927,8,40,40,0.0 +11927,16,17.45,31,0.0 +11927,36,19,39,0.0 +11927,68,12.5,49,0.0 +11927,3,10,50,0.0 +11927,12,38,4,0.0 +11927,56,38,33,0.0 +11927,47,9.5,25,0.0 +11927,44,19.45,43,0.0 +11928,38,263.5,11,0.0 +11928,18,62.5,21,0.0 +11928,10,31,20,0.0 +11928,52,7,1,0.0 +11928,48,12.75,39,0.0 +11928,58,13.25,9,0.0 +11928,17,39,46,0.0 +11928,32,32,34,0.0 +11928,42,14,33,0.0 +11928,36,19,16,0.0 +11928,57,19.5,6,0.0 +11928,75,7.75,31,0.0 +11928,31,12.5,5,0.0 +11928,16,17.45,36,0.0 +11928,22,21,3,0.0 +11928,54,7.45,21,0.0 +11928,19,9.2,39,0.0 +11928,25,14,25,0.0 +11928,51,53,31,0.0 +11928,20,81,30,0.0 +11928,73,15,19,0.0 +11928,8,40,1,0.0 +11928,40,18.4,37,0.0 +11928,21,10,23,0.0 +11928,23,9,1,0.0 +11928,44,19.45,7,0.0 +11928,39,18,24,0.0 +11928,62,49.3,11,0.0 +11928,63,43.9,30,0.0 +11928,27,43.9,42,0.0 +11928,49,20,34,0.0 +11928,67,14,4,0.0 +11928,30,25.89,16,0.0 +11928,7,30,32,0.0 +11928,24,4.5,45,0.0 +11928,69,36,40,0.0 +11928,71,21.5,40,0.0 +11928,50,16.25,22,0.0 +11928,66,17,34,0.0 +11928,60,34,48,0.0 +11928,61,28.5,37,0.0 +11928,3,10,11,0.0 +11928,56,38,33,0.0 +11928,26,31.23,2,0.0 +11928,14,23.25,1,0.0 +11928,76,18,41,0.0 +11928,74,10,6,0.0 +11928,34,14,39,0.0 +11928,70,15,5,0.0 +11928,2,19,10,0.0 +11928,45,9.5,13,0.0 +11928,72,34.8,45,0.0 +11928,12,38,14,0.0 +11928,55,24,15,0.0 +11928,53,32.8,41,0.0 +11928,64,33.25,16,0.0 +11928,13,6,49,0.0 +11928,46,12,28,0.0 +11928,77,13,17,0.0 +11928,1,18,36,0.0 +11928,35,18,35,0.0 +11928,11,21,49,0.0 +11928,9,97,13,0.0 +11928,5,21.35,2,0.0 +11928,4,22,22,0.0 +11928,29,123.79,9,0.0 +11928,37,26,1,0.0 +11928,59,55,36,0.0 +11928,28,45.6,17,0.0 +11928,33,2.5,12,0.0 +11928,65,21.05,46,0.0 +11928,68,12.5,29,0.0 +11928,47,9.5,18,0.0 +11928,6,25,7,0.0 +11928,43,46,46,0.0 +11929,49,20,29,0.0 +11929,28,45.6,26,0.0 +11929,76,18,21,0.0 +11929,35,18,5,0.0 +11929,47,9.5,49,0.0 +11930,47,9.5,5,0.0 +11930,29,123.79,13,0.0 +11930,39,18,13,0.0 +11930,6,25,16,0.0 +11930,14,23.25,5,0.0 +11930,33,2.5,34,0.0 +11930,12,38,21,0.0 +11930,52,7,13,0.0 +11930,3,10,13,0.0 +11930,59,55,16,0.0 +11930,18,62.5,18,0.0 +11930,17,39,34,0.0 +11930,73,15,24,0.0 +11930,76,18,45,0.0 +11930,41,9.65,27,0.0 +11930,44,19.45,1,0.0 +11930,37,26,1,0.0 +11930,57,19.5,41,0.0 +11930,21,10,31,0.0 +11930,32,32,40,0.0 +11930,54,7.45,1,0.0 +11930,62,49.3,8,0.0 +11930,10,31,23,0.0 +11930,48,12.75,38,0.0 +11930,25,14,43,0.0 +11930,46,12,49,0.0 +11930,58,13.25,6,0.0 +11930,9,97,27,0.0 +11930,15,15.5,22,0.0 +11930,66,17,31,0.0 +11930,11,21,10,0.0 +11930,65,21.05,5,0.0 +11930,34,14,48,0.0 +11930,77,13,25,0.0 +11930,1,18,18,0.0 +11930,36,19,2,0.0 +11930,19,9.2,38,0.0 +11930,27,43.9,6,0.0 +11930,50,16.25,10,0.0 +11930,13,6,13,0.0 +11930,35,18,6,0.0 +11930,16,17.45,10,0.0 +11930,23,9,31,0.0 +11930,49,20,24,0.0 +11930,7,30,29,0.0 +11930,20,81,44,0.0 +11930,72,34.8,6,0.0 +11930,22,21,27,0.0 +11930,69,36,32,0.0 +11930,30,25.89,44,0.0 +11930,68,12.5,36,0.0 +11930,40,18.4,16,0.0 +11930,45,9.5,26,0.0 +11930,2,19,13,0.0 +11930,74,10,2,0.0 +11930,8,40,19,0.0 +11930,24,4.5,11,0.0 +11930,53,32.8,4,0.0 +11930,71,21.5,34,0.0 +11930,61,28.5,13,0.0 +11930,60,34,32,0.0 +11930,43,46,9,0.0 +11930,75,7.75,14,0.0 +11930,42,14,41,0.0 +11930,51,53,19,0.0 +11930,38,263.5,24,0.0 +11930,26,31.23,42,0.0 +11930,64,33.25,44,0.0 +11930,31,12.5,44,0.0 +11930,63,43.9,38,0.0 +11930,28,45.6,47,0.0 +11930,56,38,26,0.0 +11931,42,14,8,0.0 +11931,15,15.5,23,0.0 +11931,22,21,3,0.0 +11931,5,21.35,7,0.0 +11931,74,10,48,0.0 +11931,25,14,7,0.0 +11931,71,21.5,43,0.0 +11931,9,97,42,0.0 +11931,17,39,32,0.0 +11931,60,34,39,0.0 +11931,38,263.5,30,0.0 +11931,3,10,39,0.0 +11931,1,18,18,0.0 +11931,63,43.9,35,0.0 +11931,52,7,5,0.0 +11931,37,26,49,0.0 +11931,45,9.5,15,0.0 +11931,62,49.3,46,0.0 +11931,58,13.25,13,0.0 +11931,40,18.4,2,0.0 +11931,43,46,19,0.0 +11931,19,9.2,41,0.0 +11931,10,31,17,0.0 +11931,28,45.6,45,0.0 +11931,31,12.5,42,0.0 +11931,26,31.23,48,0.0 +11931,53,32.8,31,0.0 +11932,24,4.5,45,0.0 +11932,50,16.25,22,0.0 +11932,19,9.2,38,0.0 +11932,34,14,22,0.0 +11932,5,21.35,19,0.0 +11932,68,12.5,38,0.0 +11932,26,31.23,8,0.0 +11932,39,18,42,0.0 +11932,42,14,37,0.0 +11932,6,25,21,0.0 +11932,21,10,40,0.0 +11932,3,10,4,0.0 +11932,47,9.5,36,0.0 +11932,62,49.3,27,0.0 +11932,32,32,1,0.0 +11932,22,21,16,0.0 +11932,71,21.5,13,0.0 +11932,43,46,46,0.0 +11932,13,6,36,0.0 +11932,11,21,37,0.0 +11932,23,9,4,0.0 +11932,41,9.65,9,0.0 +11932,55,24,45,0.0 +11932,2,19,8,0.0 +11932,1,18,15,0.0 +11932,58,13.25,43,0.0 +11932,4,22,24,0.0 +11932,67,14,26,0.0 +11932,30,25.89,47,0.0 +11932,69,36,10,0.0 +11932,20,81,3,0.0 +11932,33,2.5,40,0.0 +11932,56,38,28,0.0 +11932,57,19.5,47,0.0 +11932,18,62.5,39,0.0 +11932,8,40,41,0.0 +11932,54,7.45,34,0.0 +11933,65,21.05,24,0.0 +11933,68,12.5,29,0.0 +11933,49,20,5,0.0 +11933,76,18,46,0.0 +11933,60,34,50,0.0 +11933,40,18.4,19,0.0 +11933,32,32,44,0.0 +11933,8,40,17,0.0 +11933,20,81,38,0.0 +11933,13,6,37,0.0 +11933,3,10,43,0.0 +11933,52,7,18,0.0 +11933,36,19,17,0.0 +11933,46,12,46,0.0 +11933,33,2.5,5,0.0 +11934,18,62.5,39,0.0 +11934,32,32,35,0.0 +11934,15,15.5,49,0.0 +11934,66,17,34,0.0 +11934,52,7,33,0.0 +11934,14,23.25,27,0.0 +11934,59,55,27,0.0 +11934,5,21.35,14,0.0 +11934,77,13,12,0.0 +11934,54,7.45,36,0.0 +11934,7,30,45,0.0 +11934,16,17.45,9,0.0 +11934,31,12.5,37,0.0 +11934,24,4.5,19,0.0 +11934,4,22,26,0.0 +11934,28,45.6,3,0.0 +11934,13,6,14,0.0 +11934,58,13.25,30,0.0 +11934,23,9,10,0.0 +11934,56,38,49,0.0 +11934,70,15,9,0.0 +11934,46,12,10,0.0 +11934,63,43.9,3,0.0 +11934,75,7.75,6,0.0 +11934,36,19,46,0.0 +11934,42,14,44,0.0 +11934,74,10,6,0.0 +11934,60,34,44,0.0 +11934,48,12.75,41,0.0 +11934,29,123.79,4,0.0 +11934,9,97,43,0.0 +11934,43,46,7,0.0 +11934,55,24,25,0.0 +11934,72,34.8,36,0.0 +11934,39,18,41,0.0 +11934,1,18,45,0.0 +11934,67,14,28,0.0 +11934,19,9.2,49,0.0 +11934,68,12.5,46,0.0 +11934,12,38,37,0.0 +11934,26,31.23,45,0.0 +11934,76,18,24,0.0 +11934,37,26,37,0.0 +11934,65,21.05,40,0.0 +11934,34,14,31,0.0 +11935,59,55,44,0.0 +11935,48,12.75,26,0.0 +11935,23,9,17,0.0 +11936,66,17,41,0.0 +11936,59,55,44,0.0 +11936,56,38,28,0.0 +11936,74,10,21,0.0 +11936,24,4.5,1,0.0 +11936,8,40,40,0.0 +11936,2,19,18,0.0 +11936,50,16.25,22,0.0 +11936,62,49.3,16,0.0 +11936,60,34,34,0.0 +11936,51,53,5,0.0 +11936,14,23.25,1,0.0 +11936,73,15,39,0.0 +11936,64,33.25,37,0.0 +11936,13,6,40,0.0 +11936,46,12,48,0.0 +11936,77,13,45,0.0 +11936,12,38,36,0.0 +11936,48,12.75,29,0.0 +11936,3,10,34,0.0 +11936,31,12.5,26,0.0 +11936,47,9.5,48,0.0 +11936,36,19,31,0.0 +11936,29,123.79,7,0.0 +11936,41,9.65,10,0.0 +11936,23,9,23,0.0 +11936,1,18,13,0.0 +11936,30,25.89,43,0.0 +11936,67,14,15,0.0 +11936,49,20,50,0.0 +11936,54,7.45,27,0.0 +11936,27,43.9,30,0.0 +11936,38,263.5,43,0.0 +11936,34,14,42,0.0 +11936,37,26,24,0.0 +11936,45,9.5,39,0.0 +11936,17,39,48,0.0 +11936,63,43.9,49,0.0 +11936,19,9.2,15,0.0 +11936,70,15,37,0.0 +11936,40,18.4,11,0.0 +11936,15,15.5,31,0.0 +11936,58,13.25,45,0.0 +11936,57,19.5,31,0.0 +11936,53,32.8,40,0.0 +11936,25,14,38,0.0 +11936,9,97,28,0.0 +11936,28,45.6,15,0.0 +11936,7,30,34,0.0 +11936,55,24,33,0.0 +11936,71,21.5,22,0.0 +11936,10,31,11,0.0 +11936,42,14,1,0.0 +11936,52,7,25,0.0 +11936,33,2.5,33,0.0 +11936,21,10,40,0.0 +11936,18,62.5,4,0.0 +11936,69,36,41,0.0 +11936,76,18,37,0.0 +11936,16,17.45,27,0.0 +11936,61,28.5,50,0.0 +11936,68,12.5,41,0.0 +11936,32,32,9,0.0 +11936,11,21,9,0.0 +11936,4,22,40,0.0 +11936,65,21.05,27,0.0 +11937,20,81,8,0.0 +11937,46,12,11,0.0 +11937,23,9,43,0.0 +11937,60,34,1,0.0 +11937,6,25,50,0.0 +11937,65,21.05,31,0.0 +11937,47,9.5,9,0.0 +11937,69,36,18,0.0 +11937,3,10,47,0.0 +11937,19,9.2,5,0.0 +11937,58,13.25,42,0.0 +11937,56,38,7,0.0 +11937,12,38,46,0.0 +11937,13,6,46,0.0 +11937,16,17.45,16,0.0 +11937,45,9.5,45,0.0 +11937,21,10,3,0.0 +11937,39,18,37,0.0 +11937,55,24,19,0.0 +11937,71,21.5,33,0.0 +11937,4,22,44,0.0 +11937,28,45.6,22,0.0 +11937,22,21,49,0.0 +11937,41,9.65,21,0.0 +11937,50,16.25,19,0.0 +11937,51,53,38,0.0 +11937,1,18,41,0.0 +11937,8,40,26,0.0 +11937,53,32.8,32,0.0 +11937,27,43.9,28,0.0 +11937,37,26,8,0.0 +11937,68,12.5,32,0.0 +11937,66,17,40,0.0 +11937,36,19,4,0.0 +11937,5,21.35,8,0.0 +11937,31,12.5,12,0.0 +11937,14,23.25,46,0.0 +11937,9,97,9,0.0 +11937,64,33.25,17,0.0 +11937,59,55,45,0.0 +11937,43,46,34,0.0 +11937,75,7.75,27,0.0 +11937,44,19.45,35,0.0 +11937,77,13,49,0.0 +11937,74,10,43,0.0 +11937,48,12.75,42,0.0 +11937,40,18.4,11,0.0 +11937,34,14,43,0.0 +11937,25,14,8,0.0 +11937,18,62.5,36,0.0 +11937,72,34.8,4,0.0 +11937,33,2.5,49,0.0 +11937,29,123.79,28,0.0 +11937,11,21,32,0.0 +11937,7,30,3,0.0 +11937,54,7.45,47,0.0 +11937,73,15,46,0.0 +11937,63,43.9,44,0.0 +11937,42,14,22,0.0 +11937,2,19,39,0.0 +11937,17,39,8,0.0 +11937,76,18,37,0.0 +11937,15,15.5,41,0.0 +11937,52,7,9,0.0 +11937,62,49.3,6,0.0 +11937,10,31,6,0.0 +11937,35,18,5,0.0 +11937,32,32,48,0.0 +11938,69,36,9,0.0 +11938,26,31.23,45,0.0 +11938,42,14,48,0.0 +11938,55,24,4,0.0 +11938,1,18,48,0.0 +11938,66,17,19,0.0 +11938,45,9.5,30,0.0 +11938,56,38,19,0.0 +11938,35,18,9,0.0 +11938,75,7.75,27,0.0 +11938,43,46,32,0.0 +11938,67,14,50,0.0 +11938,63,43.9,20,0.0 +11938,24,4.5,45,0.0 +11938,9,97,1,0.0 +11938,73,15,44,0.0 +11938,32,32,4,0.0 +11938,34,14,37,0.0 +11938,5,21.35,9,0.0 +11938,53,32.8,49,0.0 +11938,36,19,10,0.0 +11938,48,12.75,20,0.0 +11938,72,34.8,11,0.0 +11938,20,81,47,0.0 +11938,57,19.5,3,0.0 +11938,25,14,36,0.0 +11938,29,123.79,10,0.0 +11938,77,13,44,0.0 +11938,59,55,7,0.0 +11938,38,263.5,27,0.0 +11938,54,7.45,25,0.0 +11938,47,9.5,29,0.0 +11938,2,19,4,0.0 +11938,61,28.5,15,0.0 +11938,6,25,29,0.0 +11938,8,40,49,0.0 +11938,27,43.9,12,0.0 +11938,68,12.5,2,0.0 +11938,74,10,39,0.0 +11938,50,16.25,27,0.0 +11938,62,49.3,23,0.0 +11938,18,62.5,22,0.0 +11938,22,21,40,0.0 +11938,40,18.4,14,0.0 +11938,17,39,16,0.0 +11938,30,25.89,48,0.0 +11938,4,22,25,0.0 +11938,46,12,41,0.0 +11938,11,21,45,0.0 +11939,70,15,19,0.0 +11939,52,7,5,0.0 +11939,32,32,39,0.0 +11939,76,18,50,0.0 +11939,59,55,42,0.0 +11939,44,19.45,42,0.0 +11939,1,18,21,0.0 +11939,37,26,44,0.0 +11939,45,9.5,22,0.0 +11939,33,2.5,4,0.0 +11939,41,9.65,13,0.0 +11939,6,25,45,0.0 +11939,24,4.5,29,0.0 +11939,67,14,37,0.0 +11939,3,10,21,0.0 +11939,68,12.5,23,0.0 +11939,12,38,9,0.0 +11939,46,12,28,0.0 +11939,63,43.9,43,0.0 +11939,18,62.5,39,0.0 +11939,4,22,13,0.0 +11939,47,9.5,15,0.0 +11939,30,25.89,47,0.0 +11939,50,16.25,10,0.0 +11939,22,21,12,0.0 +11939,72,34.8,47,0.0 +11939,73,15,45,0.0 +11939,56,38,35,0.0 +11939,58,13.25,5,0.0 +11939,65,21.05,36,0.0 +11939,25,14,50,0.0 +11939,5,21.35,8,0.0 +11939,2,19,13,0.0 +11939,7,30,14,0.0 +11939,13,6,35,0.0 +11939,49,20,34,0.0 +11939,34,14,40,0.0 +11939,36,19,9,0.0 +11939,64,33.25,32,0.0 +11939,8,40,29,0.0 +11939,60,34,26,0.0 +11940,37,26,25,0.0 +11940,49,20,18,0.0 +11940,26,31.23,35,0.0 +11940,71,21.5,14,0.0 +11940,17,39,18,0.0 +11940,68,12.5,34,0.0 +11940,72,34.8,12,0.0 +11940,57,19.5,29,0.0 +11940,73,15,44,0.0 +11940,36,19,28,0.0 +11940,7,30,50,0.0 +11940,9,97,43,0.0 +11940,59,55,16,0.0 +11940,56,38,1,0.0 +11940,77,13,21,0.0 +11940,23,9,16,0.0 +11940,55,24,49,0.0 +11940,42,14,15,0.0 +11940,27,43.9,26,0.0 +11940,1,18,19,0.0 +11940,25,14,2,0.0 +11940,15,15.5,14,0.0 +11940,31,12.5,17,0.0 +11940,41,9.65,29,0.0 +11940,58,13.25,22,0.0 +11940,74,10,34,0.0 +11940,32,32,40,0.0 +11940,21,10,18,0.0 +11940,67,14,32,0.0 +11940,66,17,43,0.0 +11940,19,9.2,28,0.0 +11940,54,7.45,34,0.0 +11940,13,6,32,0.0 +11940,63,43.9,3,0.0 +11940,44,19.45,33,0.0 +11940,65,21.05,38,0.0 +11940,16,17.45,1,0.0 +11940,3,10,4,0.0 +11940,33,2.5,23,0.0 +11940,53,32.8,23,0.0 +11940,34,14,30,0.0 +11940,60,34,24,0.0 +11940,40,18.4,44,0.0 +11940,28,45.6,30,0.0 +11940,69,36,17,0.0 +11940,18,62.5,32,0.0 +11940,35,18,7,0.0 +11940,29,123.79,12,0.0 +11940,30,25.89,17,0.0 +11940,2,19,14,0.0 +11940,22,21,38,0.0 +11940,45,9.5,3,0.0 +11940,8,40,14,0.0 +11940,61,28.5,50,0.0 +11940,10,31,23,0.0 +11940,46,12,41,0.0 +11940,47,9.5,18,0.0 +11940,52,7,16,0.0 +11940,24,4.5,38,0.0 +11940,5,21.35,16,0.0 +11940,51,53,29,0.0 +11940,6,25,49,0.0 +11940,70,15,21,0.0 +11940,12,38,30,0.0 +11940,4,22,19,0.0 +11940,76,18,12,0.0 +11940,38,263.5,19,0.0 +11941,67,14,40,0.0 +11941,57,19.5,15,0.0 +11941,23,9,36,0.0 +11941,49,20,6,0.0 +11941,7,30,49,0.0 +11941,37,26,5,0.0 +11941,72,34.8,41,0.0 +11941,46,12,14,0.0 +11941,63,43.9,5,0.0 +11941,32,32,18,0.0 +11941,65,21.05,30,0.0 +11941,10,31,5,0.0 +11941,50,16.25,27,0.0 +11941,47,9.5,1,0.0 +11941,61,28.5,23,0.0 +11941,71,21.5,50,0.0 +11941,66,17,29,0.0 +11941,40,18.4,25,0.0 +11941,68,12.5,19,0.0 +11941,35,18,19,0.0 +11941,45,9.5,16,0.0 +11941,14,23.25,47,0.0 +11941,15,15.5,18,0.0 +11941,42,14,17,0.0 +11941,30,25.89,23,0.0 +11941,12,38,43,0.0 +11941,60,34,5,0.0 +11941,69,36,7,0.0 +11941,51,53,38,0.0 +11941,54,7.45,46,0.0 +11941,76,18,37,0.0 +11941,59,55,19,0.0 +11941,11,21,38,0.0 +11941,43,46,31,0.0 +11941,44,19.45,46,0.0 +11941,31,12.5,33,0.0 +11941,27,43.9,1,0.0 +11941,13,6,25,0.0 +11941,53,32.8,36,0.0 +11941,64,33.25,1,0.0 +11941,52,7,28,0.0 +11941,75,7.75,43,0.0 +11941,19,9.2,34,0.0 +11941,77,13,1,0.0 +11941,9,97,34,0.0 +11941,18,62.5,29,0.0 +11941,58,13.25,34,0.0 +11941,28,45.6,45,0.0 +11941,33,2.5,15,0.0 +11941,70,15,16,0.0 +11941,2,19,23,0.0 +11941,38,263.5,34,0.0 +11941,34,14,27,0.0 +11941,26,31.23,14,0.0 +11941,17,39,38,0.0 +11941,62,49.3,49,0.0 +11941,39,18,40,0.0 +11941,41,9.65,38,0.0 +11941,36,19,29,0.0 +11941,16,17.45,16,0.0 +11941,1,18,32,0.0 +11941,4,22,3,0.0 +11941,74,10,17,0.0 +11942,22,21,50,0.0 +11942,49,20,12,0.0 +11942,14,23.25,17,0.0 +11942,46,12,37,0.0 +11942,3,10,22,0.0 +11942,33,2.5,44,0.0 +11942,11,21,13,0.0 +11942,10,31,24,0.0 +11942,43,46,11,0.0 +11942,51,53,19,0.0 +11942,63,43.9,28,0.0 +11942,50,16.25,2,0.0 +11942,20,81,36,0.0 +11942,25,14,47,0.0 +11943,50,16.25,23,0.0 +11943,59,55,40,0.0 +11943,71,21.5,6,0.0 +11943,3,10,48,0.0 +11943,52,7,8,0.0 +11943,5,21.35,25,0.0 +11943,29,123.79,50,0.0 +11943,6,25,36,0.0 +11943,57,19.5,6,0.0 +11943,23,9,12,0.0 +11943,26,31.23,45,0.0 +11943,37,26,3,0.0 +11943,31,12.5,40,0.0 +11943,47,9.5,6,0.0 +11943,25,14,9,0.0 +11943,14,23.25,10,0.0 +11943,48,12.75,13,0.0 +11943,73,15,4,0.0 +11943,77,13,31,0.0 +11943,17,39,39,0.0 +11943,42,14,2,0.0 +11943,60,34,30,0.0 +11943,11,21,48,0.0 +11943,38,263.5,19,0.0 +11943,28,45.6,31,0.0 +11943,34,14,46,0.0 +11943,61,28.5,29,0.0 +11943,18,62.5,50,0.0 +11943,51,53,2,0.0 +11943,76,18,38,0.0 +11943,20,81,27,0.0 +11943,41,9.65,29,0.0 +11943,35,18,36,0.0 +11943,4,22,38,0.0 +11943,58,13.25,7,0.0 +11943,68,12.5,2,0.0 +11943,56,38,11,0.0 +11943,74,10,37,0.0 +11943,36,19,44,0.0 +11943,12,38,9,0.0 +11943,54,7.45,16,0.0 +11943,1,18,35,0.0 +11943,39,18,12,0.0 +11943,64,33.25,20,0.0 +11943,53,32.8,43,0.0 +11943,32,32,11,0.0 +11943,40,18.4,33,0.0 +11943,62,49.3,34,0.0 +11943,15,15.5,28,0.0 +11943,21,10,45,0.0 +11943,69,36,29,0.0 +11943,70,15,19,0.0 +11943,46,12,37,0.0 +11943,43,46,23,0.0 +11943,2,19,22,0.0 +11943,7,30,21,0.0 +11943,9,97,13,0.0 +11943,55,24,10,0.0 +11943,72,34.8,42,0.0 +11943,63,43.9,7,0.0 +11943,49,20,31,0.0 +11943,10,31,1,0.0 +11944,18,62.5,15,0.0 +11944,71,21.5,41,0.0 +11944,14,23.25,42,0.0 +11944,44,19.45,9,0.0 +11944,54,7.45,42,0.0 +11944,40,18.4,37,0.0 +11944,62,49.3,29,0.0 +11944,50,16.25,36,0.0 +11945,24,4.5,19,0.0 +11945,14,23.25,20,0.0 +11945,55,24,11,0.0 +11945,7,30,12,0.0 +11945,5,21.35,19,0.0 +11945,32,32,17,0.0 +11945,4,22,45,0.0 +11945,74,10,29,0.0 +11945,16,17.45,16,0.0 +11945,28,45.6,43,0.0 +11945,13,6,37,0.0 +11945,29,123.79,11,0.0 +11945,54,7.45,30,0.0 +11945,77,13,23,0.0 +11945,42,14,20,0.0 +11945,48,12.75,41,0.0 +11945,46,12,40,0.0 +11945,67,14,6,0.0 +11945,37,26,40,0.0 +11945,27,43.9,41,0.0 +11945,12,38,50,0.0 +11945,50,16.25,36,0.0 +11945,61,28.5,41,0.0 +11945,35,18,44,0.0 +11945,47,9.5,17,0.0 +11945,9,97,47,0.0 +11945,40,18.4,3,0.0 +11945,68,12.5,28,0.0 +11945,6,25,47,0.0 +11945,1,18,35,0.0 +11945,45,9.5,36,0.0 +11945,8,40,44,0.0 +11945,38,263.5,37,0.0 +11945,75,7.75,37,0.0 +11945,17,39,31,0.0 +11945,34,14,35,0.0 +11945,71,21.5,34,0.0 +11945,53,32.8,33,0.0 +11945,76,18,14,0.0 +11945,73,15,40,0.0 +11945,49,20,47,0.0 +11946,22,21,34,0.0 +11946,47,9.5,8,0.0 +11946,40,18.4,30,0.0 +11946,2,19,24,0.0 +11946,33,2.5,8,0.0 +11946,77,13,11,0.0 +11946,30,25.89,37,0.0 +11946,63,43.9,14,0.0 +11946,72,34.8,44,0.0 +11946,16,17.45,39,0.0 +11946,19,9.2,13,0.0 +11946,32,32,23,0.0 +11946,17,39,23,0.0 +11946,25,14,22,0.0 +11946,39,18,35,0.0 +11946,57,19.5,14,0.0 +11946,51,53,24,0.0 +11946,53,32.8,1,0.0 +11946,60,34,24,0.0 +11946,52,7,32,0.0 +11946,27,43.9,25,0.0 +11947,27,43.9,19,0.0 +11947,18,62.5,1,0.0 +11947,46,12,42,0.0 +11947,44,19.45,38,0.0 +11947,5,21.35,24,0.0 +11947,13,6,26,0.0 +11947,7,30,43,0.0 +11947,74,10,36,0.0 +11947,12,38,10,0.0 +11948,31,12.5,28,0.0 +11948,18,62.5,26,0.0 +11949,63,43.9,42,0.0 +11949,31,12.5,23,0.0 +11949,57,19.5,14,0.0 +11949,32,32,34,0.0 +11949,34,14,3,0.0 +11949,4,22,34,0.0 +11949,68,12.5,32,0.0 +11949,13,6,24,0.0 +11949,27,43.9,36,0.0 +11949,41,9.65,9,0.0 +11949,62,49.3,32,0.0 +11949,61,28.5,28,0.0 +11949,38,263.5,3,0.0 +11949,66,17,30,0.0 +11949,58,13.25,49,0.0 +11949,5,21.35,32,0.0 +11949,2,19,2,0.0 +11949,44,19.45,3,0.0 +11949,25,14,10,0.0 +11949,48,12.75,28,0.0 +11949,43,46,32,0.0 +11949,74,10,35,0.0 +11949,39,18,17,0.0 +11949,35,18,15,0.0 +11949,73,15,50,0.0 +11949,21,10,22,0.0 +11949,12,38,47,0.0 +11949,55,24,47,0.0 +11950,9,97,39,0.0 +11950,38,263.5,11,0.0 +11950,1,18,44,0.0 +11950,65,21.05,45,0.0 +11950,55,24,49,0.0 +11950,36,19,24,0.0 +11950,13,6,44,0.0 +11950,51,53,27,0.0 +11950,35,18,18,0.0 +11950,66,17,8,0.0 +11951,2,19,35,0.0 +11951,9,97,42,0.0 +11951,15,15.5,34,0.0 +11951,8,40,21,0.0 +11951,61,28.5,35,0.0 +11951,39,18,43,0.0 +11951,46,12,35,0.0 +11951,26,31.23,37,0.0 +11951,36,19,4,0.0 +11951,70,15,9,0.0 +11951,11,21,8,0.0 +11951,52,7,19,0.0 +11951,45,9.5,24,0.0 +11951,35,18,37,0.0 +11951,75,7.75,7,0.0 +11951,49,20,18,0.0 +11951,3,10,48,0.0 +11951,63,43.9,12,0.0 +11951,58,13.25,10,0.0 +11951,65,21.05,22,0.0 +11952,37,26,34,0.0 +11952,34,14,27,0.0 +11952,43,46,25,0.0 +11952,66,17,14,0.0 +11952,25,14,8,0.0 +11952,51,53,34,0.0 +11952,21,10,48,0.0 +11952,67,14,25,0.0 +11952,13,6,34,0.0 +11952,48,12.75,18,0.0 +11952,20,81,47,0.0 +11952,68,12.5,38,0.0 +11952,40,18.4,1,0.0 +11952,42,14,34,0.0 +11952,6,25,48,0.0 +11952,77,13,8,0.0 +11952,8,40,7,0.0 +11952,32,32,45,0.0 +11952,44,19.45,28,0.0 +11952,24,4.5,21,0.0 +11952,76,18,49,0.0 +11952,3,10,15,0.0 +11952,30,25.89,48,0.0 +11952,11,21,27,0.0 +11952,31,12.5,34,0.0 +11952,16,17.45,19,0.0 +11952,50,16.25,46,0.0 +11952,56,38,21,0.0 +11952,59,55,13,0.0 +11952,47,9.5,47,0.0 +11952,65,21.05,22,0.0 +11952,71,21.5,45,0.0 +11952,45,9.5,21,0.0 +11952,57,19.5,6,0.0 +11952,27,43.9,18,0.0 +11952,63,43.9,39,0.0 +11952,9,97,14,0.0 +11952,1,18,42,0.0 +11952,26,31.23,13,0.0 +11952,38,263.5,1,0.0 +11952,15,15.5,28,0.0 +11952,64,33.25,46,0.0 +11952,2,19,20,0.0 +11952,46,12,34,0.0 +11952,19,9.2,23,0.0 +11952,53,32.8,20,0.0 +11952,60,34,38,0.0 +11952,22,21,43,0.0 +11952,52,7,14,0.0 +11952,10,31,14,0.0 +11952,74,10,9,0.0 +11952,29,123.79,20,0.0 +11952,7,30,40,0.0 +11952,75,7.75,8,0.0 +11952,41,9.65,6,0.0 +11952,12,38,5,0.0 +11952,49,20,28,0.0 +11952,62,49.3,8,0.0 +11952,61,28.5,33,0.0 +11952,69,36,19,0.0 +11952,54,7.45,23,0.0 +11952,36,19,17,0.0 +11952,39,18,26,0.0 +11952,70,15,11,0.0 +11953,75,7.75,7,0.0 +11953,69,36,13,0.0 +11953,55,24,36,0.0 +11953,16,17.45,44,0.0 +11953,27,43.9,2,0.0 +11953,4,22,17,0.0 +11954,73,15,33,0.0 +11954,20,81,26,0.0 +11954,63,43.9,48,0.0 +11954,14,23.25,16,0.0 +11954,22,21,43,0.0 +11954,37,26,12,0.0 +11954,70,15,23,0.0 +11954,10,31,8,0.0 +11954,58,13.25,12,0.0 +11954,40,18.4,17,0.0 +11955,15,15.5,11,0.0 +11955,77,13,9,0.0 +11955,47,9.5,17,0.0 +11955,38,263.5,30,0.0 +11955,26,31.23,12,0.0 +11955,53,32.8,32,0.0 +11955,30,25.89,49,0.0 +11955,33,2.5,14,0.0 +11955,17,39,20,0.0 +11955,40,18.4,32,0.0 +11955,44,19.45,33,0.0 +11955,62,49.3,14,0.0 +11955,58,13.25,9,0.0 +11955,54,7.45,13,0.0 +11955,65,21.05,50,0.0 +11955,69,36,14,0.0 +11955,27,43.9,1,0.0 +11955,19,9.2,13,0.0 +11955,75,7.75,2,0.0 +11955,71,21.5,1,0.0 +11955,52,7,27,0.0 +11955,16,17.45,10,0.0 +11955,46,12,19,0.0 +11955,6,25,15,0.0 +11955,10,31,41,0.0 +11955,76,18,23,0.0 +11955,36,19,25,0.0 +11955,14,23.25,25,0.0 +11955,59,55,30,0.0 +11955,42,14,21,0.0 +11955,3,10,13,0.0 +11955,56,38,43,0.0 +11955,32,32,45,0.0 +11955,70,15,40,0.0 +11955,73,15,9,0.0 +11955,43,46,3,0.0 +11955,55,24,26,0.0 +11955,74,10,41,0.0 +11955,1,18,12,0.0 +11955,41,9.65,46,0.0 +11955,8,40,23,0.0 +11955,34,14,36,0.0 +11955,31,12.5,42,0.0 +11955,49,20,46,0.0 +11955,24,4.5,44,0.0 +11955,72,34.8,24,0.0 +11955,11,21,21,0.0 +11955,7,30,7,0.0 +11955,29,123.79,36,0.0 +11955,2,19,11,0.0 +11956,33,2.5,46,0.0 +11956,59,55,28,0.0 +11956,1,18,6,0.0 +11956,40,18.4,39,0.0 +11956,61,28.5,2,0.0 +11956,67,14,6,0.0 +11956,6,25,21,0.0 +11956,2,19,17,0.0 +11956,48,12.75,11,0.0 +11956,43,46,27,0.0 +11956,31,12.5,37,0.0 +11956,10,31,8,0.0 +11956,50,16.25,31,0.0 +11956,55,24,41,0.0 +11956,13,6,31,0.0 +11956,5,21.35,38,0.0 +11956,25,14,11,0.0 +11956,12,38,45,0.0 +11956,34,14,10,0.0 +11956,58,13.25,44,0.0 +11956,56,38,40,0.0 +11956,51,53,45,0.0 +11956,24,4.5,6,0.0 +11956,26,31.23,33,0.0 +11956,62,49.3,8,0.0 +11956,35,18,14,0.0 +11956,3,10,43,0.0 +11956,20,81,40,0.0 +11956,71,21.5,25,0.0 +11956,66,17,2,0.0 +11956,28,45.6,39,0.0 +11956,36,19,9,0.0 +11956,7,30,34,0.0 +11956,17,39,34,0.0 +11956,27,43.9,9,0.0 +11956,57,19.5,24,0.0 +11956,39,18,32,0.0 +11956,54,7.45,25,0.0 +11956,16,17.45,21,0.0 +11956,77,13,28,0.0 +11956,63,43.9,2,0.0 +11956,41,9.65,16,0.0 +11956,72,34.8,8,0.0 +11956,23,9,8,0.0 +11956,15,15.5,10,0.0 +11956,9,97,44,0.0 +11956,70,15,37,0.0 +11956,8,40,19,0.0 +11956,45,9.5,23,0.0 +11956,42,14,31,0.0 +11956,11,21,27,0.0 +11956,52,7,1,0.0 +11956,37,26,11,0.0 +11956,38,263.5,27,0.0 +11956,60,34,29,0.0 +11956,47,9.5,34,0.0 +11956,76,18,11,0.0 +11956,69,36,23,0.0 +11956,4,22,18,0.0 +11956,75,7.75,14,0.0 +11956,65,21.05,11,0.0 +11956,18,62.5,40,0.0 +11956,46,12,13,0.0 +11956,30,25.89,7,0.0 +11956,68,12.5,44,0.0 +11956,73,15,15,0.0 +11956,14,23.25,9,0.0 +11956,21,10,36,0.0 +11956,74,10,20,0.0 +11956,64,33.25,26,0.0 +11956,22,21,14,0.0 +11956,49,20,44,0.0 +11956,53,32.8,39,0.0 +11956,32,32,16,0.0 +11956,29,123.79,48,0.0 +11956,44,19.45,34,0.0 +11956,19,9.2,9,0.0 +11957,11,21,15,0.0 +11957,21,10,34,0.0 +11957,12,38,27,0.0 +11957,33,2.5,34,0.0 +11957,47,9.5,24,0.0 +11957,17,39,2,0.0 +11957,43,46,2,0.0 +11957,35,18,20,0.0 +11957,20,81,20,0.0 +11957,23,9,3,0.0 +11957,9,97,28,0.0 +11957,61,28.5,7,0.0 +11957,76,18,12,0.0 +11957,14,23.25,11,0.0 +11957,50,16.25,1,0.0 +11957,13,6,3,0.0 +11957,5,21.35,20,0.0 +11957,41,9.65,10,0.0 +11957,70,15,1,0.0 +11957,57,19.5,48,0.0 +11957,18,62.5,21,0.0 +11957,27,43.9,31,0.0 +11957,46,12,43,0.0 +11957,16,17.45,3,0.0 +11957,39,18,18,0.0 +11957,62,49.3,25,0.0 +11957,38,263.5,12,0.0 +11957,68,12.5,13,0.0 +11957,77,13,8,0.0 +11957,2,19,21,0.0 +11957,56,38,47,0.0 +11957,22,21,7,0.0 +11957,34,14,50,0.0 +11957,67,14,44,0.0 +11957,15,15.5,46,0.0 +11957,45,9.5,16,0.0 +11957,53,32.8,29,0.0 +11957,25,14,29,0.0 +11957,36,19,40,0.0 +11957,32,32,37,0.0 +11957,65,21.05,26,0.0 +11957,73,15,20,0.0 +11957,24,4.5,50,0.0 +11957,48,12.75,36,0.0 +11957,28,45.6,45,0.0 +11957,7,30,31,0.0 +11957,4,22,10,0.0 +11957,44,19.45,6,0.0 +11957,49,20,27,0.0 +11957,3,10,41,0.0 +11957,75,7.75,48,0.0 +11957,71,21.5,45,0.0 +11957,37,26,3,0.0 +11957,60,34,42,0.0 +11957,64,33.25,48,0.0 +11957,10,31,24,0.0 +11957,19,9.2,40,0.0 +11957,72,34.8,37,0.0 +11957,31,12.5,16,0.0 +11957,26,31.23,24,0.0 +11957,59,55,50,0.0 +11957,58,13.25,13,0.0 +11957,8,40,23,0.0 +11957,29,123.79,36,0.0 +11957,74,10,11,0.0 +11957,63,43.9,22,0.0 +11957,54,7.45,25,0.0 +11957,30,25.89,41,0.0 +11957,66,17,24,0.0 +11957,6,25,37,0.0 +11957,52,7,16,0.0 +11958,39,18,18,0.0 +11958,23,9,45,0.0 +11958,61,28.5,23,0.0 +11958,18,62.5,33,0.0 +11958,66,17,36,0.0 +11958,46,12,39,0.0 +11958,22,21,37,0.0 +11958,51,53,9,0.0 +11958,16,17.45,33,0.0 +11958,17,39,9,0.0 +11958,40,18.4,16,0.0 +11958,6,25,42,0.0 +11958,27,43.9,39,0.0 +11958,70,15,35,0.0 +11958,54,7.45,14,0.0 +11958,2,19,19,0.0 +11958,38,263.5,12,0.0 +11958,48,12.75,33,0.0 +11958,55,24,7,0.0 +11958,63,43.9,22,0.0 +11958,24,4.5,45,0.0 +11958,75,7.75,5,0.0 +11958,44,19.45,45,0.0 +11958,31,12.5,48,0.0 +11958,57,19.5,50,0.0 +11958,13,6,49,0.0 +11958,52,7,9,0.0 +11958,30,25.89,2,0.0 +11958,19,9.2,1,0.0 +11958,67,14,12,0.0 +11958,58,13.25,22,0.0 +11958,35,18,29,0.0 +11958,73,15,27,0.0 +11958,36,19,43,0.0 +11958,72,34.8,46,0.0 +11958,11,21,13,0.0 +11958,60,34,1,0.0 +11958,62,49.3,5,0.0 +11958,74,10,27,0.0 +11958,14,23.25,12,0.0 +11958,77,13,4,0.0 +11958,29,123.79,9,0.0 +11958,49,20,14,0.0 +11958,41,9.65,44,0.0 +11958,65,21.05,20,0.0 +11958,32,32,41,0.0 +11958,8,40,16,0.0 +11958,7,30,41,0.0 +11958,71,21.5,10,0.0 +11958,28,45.6,31,0.0 +11958,47,9.5,22,0.0 +11958,10,31,26,0.0 +11958,26,31.23,24,0.0 +11959,36,19,36,0.0 +11960,46,12,47,0.0 +11960,19,9.2,23,0.0 +11960,57,19.5,18,0.0 +11960,23,9,37,0.0 +11960,48,12.75,26,0.0 +11960,2,19,44,0.0 +11960,7,30,15,0.0 +11960,74,10,39,0.0 +11960,62,49.3,3,0.0 +11960,55,24,15,0.0 +11960,56,38,45,0.0 +11960,6,25,41,0.0 +11960,39,18,5,0.0 +11960,37,26,31,0.0 +11960,61,28.5,14,0.0 +11960,10,31,10,0.0 +11960,27,43.9,12,0.0 +11960,17,39,17,0.0 +11960,26,31.23,21,0.0 +11960,8,40,11,0.0 +11960,68,12.5,9,0.0 +11960,41,9.65,31,0.0 +11960,47,9.5,24,0.0 +11960,20,81,2,0.0 +11960,24,4.5,36,0.0 +11960,73,15,38,0.0 +11960,52,7,40,0.0 +11960,64,33.25,15,0.0 +11960,65,21.05,8,0.0 +11960,72,34.8,26,0.0 +11960,14,23.25,23,0.0 +11960,54,7.45,7,0.0 +11960,45,9.5,6,0.0 +11960,15,15.5,16,0.0 +11960,38,263.5,15,0.0 +11960,40,18.4,21,0.0 +11960,34,14,16,0.0 +11960,70,15,25,0.0 +11960,67,14,24,0.0 +11960,22,21,15,0.0 +11960,51,53,18,0.0 +11960,42,14,39,0.0 +11960,43,46,22,0.0 +11960,9,97,1,0.0 +11960,12,38,29,0.0 +11960,75,7.75,1,0.0 +11960,29,123.79,1,0.0 +11960,1,18,27,0.0 +11960,71,21.5,34,0.0 +11960,59,55,43,0.0 +11960,31,12.5,45,0.0 +11960,44,19.45,3,0.0 +11960,60,34,18,0.0 +11960,76,18,2,0.0 +11960,32,32,32,0.0 +11960,36,19,16,0.0 +11960,35,18,23,0.0 +11960,3,10,20,0.0 +11960,66,17,1,0.0 +11960,58,13.25,5,0.0 +11960,16,17.45,14,0.0 +11960,53,32.8,29,0.0 +11960,69,36,33,0.0 +11960,33,2.5,31,0.0 +11960,30,25.89,40,0.0 +11960,77,13,25,0.0 +11961,20,81,6,0.0 +11961,5,21.35,20,0.0 +11961,42,14,36,0.0 +11961,17,39,3,0.0 +11961,36,19,31,0.0 +11961,77,13,31,0.0 +11961,74,10,28,0.0 +11961,6,25,49,0.0 +11961,8,40,38,0.0 +11961,28,45.6,40,0.0 +11961,47,9.5,16,0.0 +11961,56,38,5,0.0 +11961,25,14,31,0.0 +11961,22,21,19,0.0 +11961,2,19,34,0.0 +11961,21,10,44,0.0 +11961,4,22,46,0.0 +11961,55,24,23,0.0 +11961,50,16.25,1,0.0 +11961,73,15,50,0.0 +11961,35,18,22,0.0 +11961,44,19.45,24,0.0 +11961,33,2.5,23,0.0 +11961,40,18.4,48,0.0 +11961,61,28.5,20,0.0 +11961,60,34,2,0.0 +11961,10,31,23,0.0 +11961,65,21.05,23,0.0 +11961,70,15,49,0.0 +11961,39,18,23,0.0 +11961,41,9.65,32,0.0 +11962,61,28.5,6,0.0 +11962,19,9.2,10,0.0 +11962,48,12.75,34,0.0 +11962,21,10,41,0.0 +11962,31,12.5,30,0.0 +11962,18,62.5,25,0.0 +11962,34,14,30,0.0 +11962,17,39,19,0.0 +11962,15,15.5,9,0.0 +11962,68,12.5,1,0.0 +11962,38,263.5,5,0.0 +11962,28,45.6,50,0.0 +11962,12,38,16,0.0 +11962,23,9,10,0.0 +11962,5,21.35,28,0.0 +11962,1,18,7,0.0 +11962,70,15,43,0.0 +11962,74,10,4,0.0 +11962,69,36,49,0.0 +11962,62,49.3,47,0.0 +11962,13,6,9,0.0 +11962,2,19,8,0.0 +11962,59,55,16,0.0 +11962,66,17,31,0.0 +11962,22,21,21,0.0 +11962,8,40,16,0.0 +11962,35,18,44,0.0 +11962,75,7.75,24,0.0 +11962,7,30,27,0.0 +11962,30,25.89,16,0.0 +11962,72,34.8,21,0.0 +11962,11,21,43,0.0 +11962,39,18,15,0.0 +11962,45,9.5,30,0.0 +11962,20,81,7,0.0 +11962,29,123.79,42,0.0 +11962,47,9.5,48,0.0 +11962,76,18,13,0.0 +11962,58,13.25,36,0.0 +11962,54,7.45,2,0.0 +11962,16,17.45,37,0.0 +11962,33,2.5,49,0.0 +11962,42,14,16,0.0 +11962,32,32,17,0.0 +11962,52,7,11,0.0 +11962,55,24,1,0.0 +11963,23,9,47,0.0 +11963,30,25.89,9,0.0 +11963,76,18,19,0.0 +11963,61,28.5,47,0.0 +11963,65,21.05,33,0.0 +11963,39,18,1,0.0 +11963,75,7.75,19,0.0 +11963,29,123.79,43,0.0 +11963,48,12.75,16,0.0 +11963,62,49.3,15,0.0 +11963,44,19.45,10,0.0 +11963,74,10,12,0.0 +11963,34,14,28,0.0 +11963,73,15,12,0.0 +11963,15,15.5,43,0.0 +11963,32,32,27,0.0 +11963,5,21.35,43,0.0 +11963,25,14,28,0.0 +11963,1,18,7,0.0 +11963,64,33.25,41,0.0 +11963,53,32.8,12,0.0 +11963,14,23.25,44,0.0 +11963,71,21.5,32,0.0 +11963,57,19.5,39,0.0 +11963,37,26,49,0.0 +11964,32,32,9,0.0 +11964,72,34.8,37,0.0 +11964,38,263.5,33,0.0 +11964,10,31,31,0.0 +11964,63,43.9,43,0.0 +11965,27,43.9,50,0.0 +11965,60,34,35,0.0 +11965,21,10,18,0.0 +11965,13,6,14,0.0 +11965,71,21.5,15,0.0 +11965,58,13.25,23,0.0 +11965,7,30,11,0.0 +11965,8,40,8,0.0 +11965,61,28.5,20,0.0 +11965,14,23.25,28,0.0 +11965,18,62.5,41,0.0 +11965,48,12.75,11,0.0 +11965,64,33.25,27,0.0 +11965,55,24,34,0.0 +11965,15,15.5,6,0.0 +11965,34,14,18,0.0 +11965,37,26,46,0.0 +11965,12,38,29,0.0 +11965,50,16.25,38,0.0 +11965,22,21,28,0.0 +11965,62,49.3,19,0.0 +11965,26,31.23,49,0.0 +11965,56,38,47,0.0 +11965,59,55,18,0.0 +11965,31,12.5,39,0.0 +11966,63,43.9,10,0.0 +11966,42,14,22,0.0 +11966,7,30,20,0.0 +11966,4,22,18,0.0 +11966,62,49.3,6,0.0 +11966,69,36,25,0.0 +11966,3,10,50,0.0 +11966,17,39,36,0.0 +11966,19,9.2,12,0.0 +11966,45,9.5,24,0.0 +11966,46,12,30,0.0 +11966,26,31.23,46,0.0 +11966,21,10,40,0.0 +11966,20,81,3,0.0 +11966,65,21.05,16,0.0 +11966,49,20,40,0.0 +11966,24,4.5,18,0.0 +11966,71,21.5,36,0.0 +11966,37,26,45,0.0 +11966,55,24,50,0.0 +11966,47,9.5,28,0.0 +11966,38,263.5,1,0.0 +11966,30,25.89,13,0.0 +11966,41,9.65,48,0.0 +11966,1,18,39,0.0 +11966,75,7.75,17,0.0 +11967,2,19,15,0.0 +11967,72,34.8,7,0.0 +11967,12,38,19,0.0 +11967,67,14,30,0.0 +11967,27,43.9,16,0.0 +11967,61,28.5,10,0.0 +11967,22,21,32,0.0 +11967,64,33.25,35,0.0 +11967,46,12,25,0.0 +11967,25,14,46,0.0 +11967,63,43.9,36,0.0 +11967,77,13,33,0.0 +11968,4,22,6,0.0 +11968,40,18.4,9,0.0 +11968,44,19.45,25,0.0 +11968,36,19,15,0.0 +11968,11,21,33,0.0 +11968,60,34,50,0.0 +11968,37,26,30,0.0 +11968,62,49.3,25,0.0 +11968,43,46,38,0.0 +11968,6,25,7,0.0 +11968,42,14,33,0.0 +11968,64,33.25,20,0.0 +11968,58,13.25,34,0.0 +11968,54,7.45,16,0.0 +11968,72,34.8,11,0.0 +11969,28,45.6,34,0.0 +11969,7,30,47,0.0 +11969,14,23.25,43,0.0 +11969,66,17,14,0.0 +11969,67,14,39,0.0 +11969,1,18,33,0.0 +11969,69,36,37,0.0 +11969,73,15,44,0.0 +11969,21,10,10,0.0 +11969,51,53,17,0.0 +11969,17,39,40,0.0 +11969,5,21.35,32,0.0 +11969,55,24,41,0.0 +11969,8,40,37,0.0 +11969,10,31,33,0.0 +11969,9,97,27,0.0 +11969,72,34.8,18,0.0 +11969,25,14,45,0.0 +11969,15,15.5,41,0.0 +11969,52,7,13,0.0 +11969,38,263.5,24,0.0 +11969,36,19,38,0.0 +11969,37,26,17,0.0 +11969,18,62.5,26,0.0 +11969,75,7.75,24,0.0 +11969,13,6,8,0.0 +11969,42,14,16,0.0 +11969,23,9,8,0.0 +11969,71,21.5,34,0.0 +11969,64,33.25,40,0.0 +11969,31,12.5,28,0.0 +11969,27,43.9,17,0.0 +11969,59,55,14,0.0 +11969,70,15,48,0.0 +11969,63,43.9,14,0.0 +11969,26,31.23,29,0.0 +11969,45,9.5,4,0.0 +11969,33,2.5,6,0.0 +11969,49,20,17,0.0 +11969,65,21.05,30,0.0 +11970,1,18,49,0.0 +11970,20,81,15,0.0 +11970,45,9.5,3,0.0 +11970,64,33.25,30,0.0 +11970,48,12.75,4,0.0 +11970,47,9.5,47,0.0 +11970,32,32,46,0.0 +11970,70,15,3,0.0 +11970,63,43.9,25,0.0 +11970,49,20,47,0.0 +11970,58,13.25,12,0.0 +11970,4,22,5,0.0 +11970,10,31,31,0.0 +11970,37,26,44,0.0 +11970,2,19,31,0.0 +11970,67,14,32,0.0 +11970,19,9.2,29,0.0 +11970,43,46,5,0.0 +11970,21,10,12,0.0 +11970,68,12.5,22,0.0 +11970,35,18,49,0.0 +11970,53,32.8,4,0.0 +11970,39,18,27,0.0 +11970,51,53,40,0.0 +11970,15,15.5,32,0.0 +11970,33,2.5,31,0.0 +11970,38,263.5,46,0.0 +11970,25,14,50,0.0 +11970,65,21.05,9,0.0 +11970,24,4.5,27,0.0 +11970,59,55,44,0.0 +11970,72,34.8,25,0.0 +11970,46,12,22,0.0 +11970,61,28.5,12,0.0 +11970,11,21,26,0.0 +11970,18,62.5,31,0.0 +11970,44,19.45,4,0.0 +11970,52,7,17,0.0 +11970,62,49.3,29,0.0 +11970,27,43.9,6,0.0 +11970,22,21,10,0.0 +11970,69,36,4,0.0 +11970,26,31.23,24,0.0 +11970,60,34,11,0.0 +11970,40,18.4,44,0.0 +11970,30,25.89,28,0.0 +11970,28,45.6,11,0.0 +11970,57,19.5,15,0.0 +11970,9,97,40,0.0 +11970,41,9.65,13,0.0 +11970,7,30,5,0.0 +11970,66,17,7,0.0 +11970,74,10,37,0.0 +11970,50,16.25,3,0.0 +11970,14,23.25,18,0.0 +11970,56,38,44,0.0 +11970,8,40,45,0.0 +11970,76,18,23,0.0 +11970,16,17.45,35,0.0 +11970,73,15,12,0.0 +11970,31,12.5,15,0.0 +11970,5,21.35,14,0.0 +11970,34,14,10,0.0 +11970,6,25,25,0.0 +11970,75,7.75,49,0.0 +11970,55,24,1,0.0 +11970,42,14,22,0.0 +11970,54,7.45,27,0.0 +11970,36,19,33,0.0 +11970,71,21.5,43,0.0 +11970,29,123.79,38,0.0 +11970,23,9,49,0.0 +11971,6,25,13,0.0 +11971,22,21,11,0.0 +11971,33,2.5,48,0.0 +11971,13,6,24,0.0 +11971,52,7,24,0.0 +11971,51,53,49,0.0 +11971,34,14,15,0.0 +11971,40,18.4,17,0.0 +11971,54,7.45,4,0.0 +11971,73,15,2,0.0 +11971,28,45.6,36,0.0 +11971,39,18,32,0.0 +11971,55,24,35,0.0 +11971,20,81,29,0.0 +11971,38,263.5,48,0.0 +11971,56,38,3,0.0 +11971,65,21.05,15,0.0 +11971,46,12,21,0.0 +11971,31,12.5,3,0.0 +11971,37,26,49,0.0 +11971,11,21,10,0.0 +11971,42,14,26,0.0 +11971,69,36,27,0.0 +11971,21,10,32,0.0 +11971,59,55,47,0.0 +11971,66,17,18,0.0 +11971,47,9.5,15,0.0 +11971,58,13.25,41,0.0 +11971,77,13,37,0.0 +11971,35,18,41,0.0 +11971,2,19,32,0.0 +11971,14,23.25,7,0.0 +11971,67,14,11,0.0 +11971,71,21.5,39,0.0 +11971,16,17.45,46,0.0 +11971,75,7.75,16,0.0 +11971,74,10,50,0.0 +11971,29,123.79,23,0.0 +11971,26,31.23,19,0.0 +11971,53,32.8,30,0.0 +11971,18,62.5,40,0.0 +11971,4,22,10,0.0 +11971,15,15.5,22,0.0 +11971,48,12.75,40,0.0 +11971,27,43.9,36,0.0 +11971,76,18,45,0.0 +11971,1,18,13,0.0 +11971,5,21.35,22,0.0 +11971,49,20,39,0.0 +11971,61,28.5,7,0.0 +11971,41,9.65,50,0.0 +11971,7,30,17,0.0 +11971,44,19.45,26,0.0 +11971,32,32,4,0.0 +11971,10,31,21,0.0 +11971,17,39,21,0.0 +11971,64,33.25,26,0.0 +11971,19,9.2,46,0.0 +11971,60,34,33,0.0 +11971,25,14,14,0.0 +11971,36,19,43,0.0 +11971,12,38,34,0.0 +11971,72,34.8,39,0.0 +11971,45,9.5,50,0.0 +11971,62,49.3,18,0.0 +11971,23,9,47,0.0 +11971,3,10,29,0.0 +11971,9,97,33,0.0 +11971,30,25.89,22,0.0 +11971,50,16.25,7,0.0 +11971,43,46,40,0.0 +11971,8,40,49,0.0 +11971,70,15,1,0.0 +11971,57,19.5,14,0.0 +11971,63,43.9,11,0.0 +11971,68,12.5,22,0.0 +11971,24,4.5,9,0.0 +11972,37,26,33,0.0 +11972,15,15.5,24,0.0 +11972,69,36,19,0.0 +11972,4,22,26,0.0 +11972,7,30,23,0.0 +11972,14,23.25,29,0.0 +11972,74,10,4,0.0 +11972,73,15,1,0.0 +11972,63,43.9,8,0.0 +11972,33,2.5,23,0.0 +11972,75,7.75,30,0.0 +11972,29,123.79,22,0.0 +11972,45,9.5,5,0.0 +11972,66,17,33,0.0 +11972,1,18,9,0.0 +11972,24,4.5,50,0.0 +11972,70,15,5,0.0 +11972,13,6,45,0.0 +11972,64,33.25,7,0.0 +11972,68,12.5,50,0.0 +11972,19,9.2,41,0.0 +11972,67,14,26,0.0 +11972,30,25.89,9,0.0 +11972,59,55,13,0.0 +11972,26,31.23,45,0.0 +11972,3,10,45,0.0 +11972,18,62.5,12,0.0 +11972,53,32.8,27,0.0 +11972,62,49.3,37,0.0 +11972,22,21,16,0.0 +11972,8,40,29,0.0 +11972,49,20,12,0.0 +11972,51,53,5,0.0 +11972,38,263.5,17,0.0 +11972,23,9,17,0.0 +11972,71,21.5,21,0.0 +11972,40,18.4,13,0.0 +11972,6,25,8,0.0 +11972,32,32,44,0.0 +11972,54,7.45,12,0.0 +11972,41,9.65,48,0.0 +11972,77,13,4,0.0 +11972,21,10,38,0.0 +11972,65,21.05,11,0.0 +11972,55,24,1,0.0 +11972,58,13.25,22,0.0 +11972,11,21,21,0.0 +11972,76,18,16,0.0 +11972,43,46,29,0.0 +11972,61,28.5,39,0.0 +11972,9,97,35,0.0 +11972,35,18,35,0.0 +11972,34,14,21,0.0 +11972,57,19.5,16,0.0 +11972,20,81,24,0.0 +11972,60,34,42,0.0 +11972,52,7,8,0.0 +11972,42,14,36,0.0 +11972,27,43.9,22,0.0 +11972,12,38,30,0.0 +11973,10,31,42,0.0 +11973,25,14,4,0.0 +11973,6,25,17,0.0 +11973,55,24,50,0.0 +11973,56,38,18,0.0 +11973,33,2.5,10,0.0 +11973,29,123.79,4,0.0 +11973,42,14,1,0.0 +11973,4,22,45,0.0 +11973,13,6,40,0.0 +11973,7,30,21,0.0 +11973,37,26,40,0.0 +11973,40,18.4,15,0.0 +11973,52,7,12,0.0 +11973,67,14,50,0.0 +11973,64,33.25,33,0.0 +11973,62,49.3,49,0.0 +11973,74,10,36,0.0 +11973,66,17,16,0.0 +11973,22,21,17,0.0 +11973,41,9.65,9,0.0 +11973,34,14,10,0.0 +11973,11,21,26,0.0 +11973,48,12.75,16,0.0 +11973,20,81,36,0.0 +11973,30,25.89,39,0.0 +11973,19,9.2,35,0.0 +11973,65,21.05,16,0.0 +11973,31,12.5,49,0.0 +11973,12,38,9,0.0 +11973,46,12,39,0.0 +11973,1,18,30,0.0 +11973,32,32,37,0.0 +11973,23,9,24,0.0 +11973,73,15,44,0.0 +11973,16,17.45,24,0.0 +11973,49,20,4,0.0 +11973,47,9.5,3,0.0 +11973,69,36,14,0.0 +11973,14,23.25,40,0.0 +11973,9,97,46,0.0 +11973,38,263.5,7,0.0 +11973,63,43.9,19,0.0 +11973,72,34.8,1,0.0 +11973,17,39,4,0.0 +11973,58,13.25,3,0.0 +11973,2,19,41,0.0 +11973,27,43.9,15,0.0 +11973,76,18,12,0.0 +11973,43,46,22,0.0 +11973,51,53,6,0.0 +11973,60,34,39,0.0 +11973,70,15,30,0.0 +11974,12,38,50,0.0 +11974,49,20,48,0.0 +11974,56,38,31,0.0 +11974,40,18.4,18,0.0 +11974,69,36,24,0.0 +11974,32,32,6,0.0 +11974,9,97,3,0.0 +11974,23,9,39,0.0 +11974,55,24,31,0.0 +11974,20,81,47,0.0 +11974,61,28.5,18,0.0 +11974,70,15,24,0.0 +11974,28,45.6,23,0.0 +11974,5,21.35,21,0.0 +11974,68,12.5,20,0.0 +11974,26,31.23,50,0.0 +11974,75,7.75,27,0.0 +11974,52,7,38,0.0 +11974,45,9.5,37,0.0 +11974,50,16.25,7,0.0 +11974,17,39,44,0.0 +11974,14,23.25,46,0.0 +11974,18,62.5,43,0.0 +11974,2,19,20,0.0 +11974,59,55,12,0.0 +11974,15,15.5,30,0.0 +11974,27,43.9,4,0.0 +11974,30,25.89,30,0.0 +11974,64,33.25,42,0.0 +11974,4,22,42,0.0 +11974,13,6,4,0.0 +11974,39,18,32,0.0 +11974,71,21.5,14,0.0 +11974,34,14,11,0.0 +11974,57,19.5,10,0.0 +11974,3,10,37,0.0 +11974,19,9.2,4,0.0 +11974,24,4.5,49,0.0 +11974,72,34.8,48,0.0 +11974,16,17.45,36,0.0 +11974,76,18,35,0.0 +11974,58,13.25,47,0.0 +11974,47,9.5,12,0.0 +11974,1,18,22,0.0 +11974,21,10,21,0.0 +11974,22,21,35,0.0 +11974,38,263.5,50,0.0 +11974,29,123.79,33,0.0 +11975,66,17,5,0.0 +11975,26,31.23,21,0.0 +11975,56,38,9,0.0 +11975,16,17.45,4,0.0 +11975,63,43.9,25,0.0 +11976,34,14,30,0.0 +11976,18,62.5,45,0.0 +11976,8,40,11,0.0 +11976,29,123.79,46,0.0 +11976,36,19,40,0.0 +11976,55,24,50,0.0 +11976,28,45.6,13,0.0 +11976,46,12,12,0.0 +11976,58,13.25,24,0.0 +11976,7,30,42,0.0 +11976,17,39,19,0.0 +11976,56,38,39,0.0 +11976,1,18,33,0.0 +11976,51,53,25,0.0 +11976,73,15,7,0.0 +11976,24,4.5,29,0.0 +11976,62,49.3,13,0.0 +11976,65,21.05,7,0.0 +11976,71,21.5,43,0.0 +11976,59,55,38,0.0 +11976,48,12.75,35,0.0 +11976,70,15,35,0.0 +11976,64,33.25,6,0.0 +11976,41,9.65,13,0.0 +11976,23,9,24,0.0 +11976,3,10,13,0.0 +11976,13,6,9,0.0 +11977,27,43.9,35,0.0 +11977,31,12.5,35,0.0 +11977,49,20,16,0.0 +11977,48,12.75,47,0.0 +11977,10,31,48,0.0 +11977,39,18,50,0.0 +11977,65,21.05,12,0.0 +11977,32,32,48,0.0 +11977,7,30,31,0.0 +11977,76,18,11,0.0 +11977,24,4.5,15,0.0 +11977,17,39,26,0.0 +11977,51,53,42,0.0 +11977,73,15,33,0.0 +11977,67,14,16,0.0 +11977,12,38,2,0.0 +11977,59,55,25,0.0 +11977,50,16.25,15,0.0 +11977,15,15.5,45,0.0 +11977,46,12,46,0.0 +11977,56,38,19,0.0 +11977,16,17.45,7,0.0 +11977,57,19.5,25,0.0 +11977,62,49.3,20,0.0 +11977,71,21.5,33,0.0 +11977,75,7.75,44,0.0 +11977,30,25.89,47,0.0 +11977,66,17,48,0.0 +11977,9,97,10,0.0 +11977,22,21,32,0.0 +11977,2,19,19,0.0 +11977,11,21,9,0.0 +11977,63,43.9,48,0.0 +11977,34,14,34,0.0 +11977,1,18,15,0.0 +11977,14,23.25,46,0.0 +11977,43,46,37,0.0 +11977,18,62.5,32,0.0 +11977,74,10,12,0.0 +11978,51,53,7,0.0 +11978,1,18,5,0.0 +11978,33,2.5,15,0.0 +11978,71,21.5,36,0.0 +11978,30,25.89,43,0.0 +11978,18,62.5,20,0.0 +11978,10,31,29,0.0 +11978,69,36,18,0.0 +11978,46,12,20,0.0 +11978,37,26,45,0.0 +11978,54,7.45,29,0.0 +11978,19,9.2,36,0.0 +11978,70,15,31,0.0 +11978,20,81,28,0.0 +11978,73,15,34,0.0 +11978,74,10,10,0.0 +11978,13,6,14,0.0 +11978,27,43.9,15,0.0 +11978,11,21,4,0.0 +11978,59,55,27,0.0 +11978,38,263.5,39,0.0 +11978,55,24,12,0.0 +11978,29,123.79,20,0.0 +11978,68,12.5,8,0.0 +11978,25,14,41,0.0 +11978,49,20,1,0.0 +11978,40,18.4,38,0.0 +11978,2,19,36,0.0 +11978,31,12.5,9,0.0 +11978,50,16.25,24,0.0 +11978,4,22,8,0.0 +11978,9,97,7,0.0 +11978,17,39,33,0.0 +11978,32,32,24,0.0 +11978,63,43.9,21,0.0 +11978,47,9.5,9,0.0 +11978,35,18,28,0.0 +11978,56,38,29,0.0 +11978,12,38,35,0.0 +11978,42,14,13,0.0 +11978,14,23.25,38,0.0 +11978,66,17,47,0.0 +11978,39,18,40,0.0 +11978,77,13,47,0.0 +11978,45,9.5,47,0.0 +11978,26,31.23,22,0.0 +11978,43,46,13,0.0 +11978,44,19.45,1,0.0 +11978,57,19.5,12,0.0 +11978,22,21,19,0.0 +11979,26,31.23,16,0.0 +11979,35,18,44,0.0 +11979,72,34.8,24,0.0 +11979,52,7,2,0.0 +11979,24,4.5,35,0.0 +11979,23,9,34,0.0 +11979,73,15,16,0.0 +11979,10,31,41,0.0 +11979,40,18.4,18,0.0 +11979,13,6,25,0.0 +11979,31,12.5,31,0.0 +11979,6,25,2,0.0 +11979,48,12.75,12,0.0 +11979,44,19.45,32,0.0 +11979,45,9.5,47,0.0 +11979,27,43.9,9,0.0 +11979,14,23.25,46,0.0 +11979,21,10,5,0.0 +11979,3,10,9,0.0 +11979,22,21,9,0.0 +11979,9,97,4,0.0 +11979,63,43.9,40,0.0 +11979,29,123.79,46,0.0 +11979,51,53,17,0.0 +11979,42,14,49,0.0 +11980,3,10,40,0.0 +11980,52,7,23,0.0 +11980,67,14,41,0.0 +11980,28,45.6,7,0.0 +11980,4,22,5,0.0 +11980,65,21.05,43,0.0 +11980,29,123.79,37,0.0 +11980,56,38,43,0.0 +11980,74,10,6,0.0 +11980,25,14,11,0.0 +11980,46,12,23,0.0 +11980,1,18,37,0.0 +11980,37,26,7,0.0 +11980,58,13.25,42,0.0 +11980,50,16.25,31,0.0 +11980,36,19,47,0.0 +11980,76,18,35,0.0 +11980,16,17.45,3,0.0 +11980,44,19.45,1,0.0 +11980,55,24,38,0.0 +11980,31,12.5,48,0.0 +11980,30,25.89,21,0.0 +11980,19,9.2,41,0.0 +11980,34,14,11,0.0 +11980,51,53,48,0.0 +11980,24,4.5,43,0.0 +11980,54,7.45,45,0.0 +11980,32,32,37,0.0 +11980,13,6,8,0.0 +11980,17,39,1,0.0 +11980,64,33.25,34,0.0 +11980,6,25,34,0.0 +11980,11,21,17,0.0 +11980,12,38,2,0.0 +11980,7,30,38,0.0 +11980,60,34,48,0.0 +11980,20,81,29,0.0 +11980,26,31.23,16,0.0 +11980,10,31,35,0.0 +11980,15,15.5,4,0.0 +11980,49,20,45,0.0 +11980,66,17,28,0.0 +11980,41,9.65,31,0.0 +11980,23,9,40,0.0 +11980,63,43.9,35,0.0 +11980,33,2.5,21,0.0 +11980,73,15,28,0.0 +11980,8,40,13,0.0 +11980,75,7.75,42,0.0 +11980,59,55,10,0.0 +11980,47,9.5,6,0.0 +11980,2,19,16,0.0 +11980,72,34.8,40,0.0 +11980,45,9.5,35,0.0 +11980,77,13,42,0.0 +11980,69,36,40,0.0 +11980,22,21,12,0.0 +11980,68,12.5,44,0.0 +11980,62,49.3,26,0.0 +11980,48,12.75,33,0.0 +11980,61,28.5,27,0.0 +11980,53,32.8,41,0.0 +11980,40,18.4,49,0.0 +11980,57,19.5,28,0.0 +11980,35,18,42,0.0 +11980,43,46,21,0.0 +11980,21,10,49,0.0 +11980,5,21.35,21,0.0 +11980,39,18,25,0.0 +11980,38,263.5,5,0.0 +11980,14,23.25,30,0.0 +11980,27,43.9,48,0.0 +11980,42,14,1,0.0 +11980,9,97,43,0.0 +11980,70,15,36,0.0 +11981,23,9,45,0.0 +11981,17,39,17,0.0 +11981,8,40,34,0.0 +11981,64,33.25,7,0.0 +11981,51,53,50,0.0 +11981,50,16.25,14,0.0 +11981,60,34,29,0.0 +11981,22,21,49,0.0 +11981,28,45.6,11,0.0 +11981,38,263.5,6,0.0 +11981,59,55,17,0.0 +11981,34,14,27,0.0 +11981,42,14,32,0.0 +11981,46,12,14,0.0 +11981,77,13,45,0.0 +11981,35,18,15,0.0 +11981,68,12.5,39,0.0 +11981,12,38,3,0.0 +11981,3,10,5,0.0 +11981,6,25,27,0.0 +11981,18,62.5,27,0.0 +11981,67,14,22,0.0 +11981,53,32.8,1,0.0 +11981,32,32,16,0.0 +11981,52,7,32,0.0 +11981,61,28.5,35,0.0 +11981,4,22,12,0.0 +11981,66,17,5,0.0 +11981,2,19,28,0.0 +11981,36,19,9,0.0 +11981,57,19.5,6,0.0 +11981,49,20,47,0.0 +11981,7,30,50,0.0 +11981,26,31.23,25,0.0 +11981,10,31,24,0.0 +11981,71,21.5,4,0.0 +11981,48,12.75,49,0.0 +11981,73,15,29,0.0 +11981,37,26,28,0.0 +11981,69,36,49,0.0 +11981,56,38,14,0.0 +11981,65,21.05,19,0.0 +11981,33,2.5,42,0.0 +11981,27,43.9,34,0.0 +11981,29,123.79,20,0.0 +11982,36,19,25,0.0 +11982,37,26,6,0.0 +11982,41,9.65,32,0.0 +11982,60,34,20,0.0 +11982,6,25,47,0.0 +11982,69,36,11,0.0 +11982,26,31.23,2,0.0 +11982,43,46,35,0.0 +11982,9,97,41,0.0 +11982,52,7,22,0.0 +11982,72,34.8,8,0.0 +11982,77,13,36,0.0 +11982,38,263.5,37,0.0 +11982,29,123.79,39,0.0 +11982,31,12.5,8,0.0 +11982,28,45.6,23,0.0 +11982,2,19,45,0.0 +11982,48,12.75,22,0.0 +11982,22,21,7,0.0 +11982,24,4.5,50,0.0 +11982,15,15.5,24,0.0 +11982,30,25.89,36,0.0 +11982,8,40,25,0.0 +11982,45,9.5,25,0.0 +11982,47,9.5,26,0.0 +11982,32,32,3,0.0 +11982,74,10,40,0.0 +11982,49,20,9,0.0 +11982,14,23.25,25,0.0 +11982,56,38,29,0.0 +11982,3,10,37,0.0 +11982,71,21.5,19,0.0 +11982,42,14,23,0.0 +11982,54,7.45,14,0.0 +11982,59,55,44,0.0 +11982,20,81,4,0.0 +11982,4,22,26,0.0 +11982,58,13.25,33,0.0 +11982,5,21.35,25,0.0 +11982,62,49.3,25,0.0 +11982,7,30,44,0.0 +11982,11,21,5,0.0 +11982,1,18,39,0.0 +11982,75,7.75,5,0.0 +11982,55,24,16,0.0 +11982,51,53,34,0.0 +11982,17,39,11,0.0 +11982,53,32.8,21,0.0 +11982,44,19.45,24,0.0 +11982,33,2.5,40,0.0 +11982,10,31,19,0.0 +11982,68,12.5,5,0.0 +11982,63,43.9,48,0.0 +11982,57,19.5,48,0.0 +11982,34,14,35,0.0 +11983,51,53,22,0.0 +11983,14,23.25,43,0.0 +11983,74,10,5,0.0 +11983,67,14,27,0.0 +11983,61,28.5,31,0.0 +11983,5,21.35,19,0.0 +11983,19,9.2,18,0.0 +11983,12,38,42,0.0 +11983,60,34,42,0.0 +11983,65,21.05,21,0.0 +11983,2,19,14,0.0 +11983,45,9.5,29,0.0 +11983,29,123.79,49,0.0 +11983,40,18.4,42,0.0 +11983,76,18,11,0.0 +11983,52,7,3,0.0 +11983,41,9.65,31,0.0 +11983,34,14,9,0.0 +11983,17,39,38,0.0 +11983,56,38,20,0.0 +11983,27,43.9,41,0.0 +11983,26,31.23,47,0.0 +11983,43,46,34,0.0 +11983,20,81,42,0.0 +11983,37,26,5,0.0 +11983,62,49.3,3,0.0 +11983,71,21.5,45,0.0 +11983,68,12.5,26,0.0 +11983,72,34.8,38,0.0 +11983,73,15,4,0.0 +11983,21,10,23,0.0 +11983,49,20,46,0.0 +11983,64,33.25,24,0.0 +11983,24,4.5,41,0.0 +11983,15,15.5,27,0.0 +11983,32,32,25,0.0 +11983,57,19.5,29,0.0 +11983,18,62.5,18,0.0 +11983,70,15,31,0.0 +11983,50,16.25,42,0.0 +11983,33,2.5,3,0.0 +11984,39,18,49,0.0 +11984,45,9.5,45,0.0 +11984,61,28.5,48,0.0 +11984,9,97,14,0.0 +11984,20,81,41,0.0 +11984,57,19.5,26,0.0 +11984,75,7.75,16,0.0 +11984,58,13.25,4,0.0 +11984,52,7,14,0.0 +11984,21,10,15,0.0 +11984,43,46,28,0.0 +11984,63,43.9,18,0.0 +11984,50,16.25,17,0.0 +11984,16,17.45,35,0.0 +11984,36,19,43,0.0 +11984,29,123.79,45,0.0 +11984,24,4.5,19,0.0 +11984,30,25.89,25,0.0 +11984,59,55,45,0.0 +11984,37,26,10,0.0 +11984,48,12.75,42,0.0 +11984,32,32,16,0.0 +11984,27,43.9,3,0.0 +11984,71,21.5,18,0.0 +11984,65,21.05,28,0.0 +11984,70,15,47,0.0 +11984,7,30,25,0.0 +11984,12,38,48,0.0 +11984,19,9.2,5,0.0 +11984,66,17,39,0.0 +11984,13,6,49,0.0 +11984,62,49.3,17,0.0 +11984,18,62.5,21,0.0 +11984,26,31.23,48,0.0 +11984,74,10,26,0.0 +11984,49,20,22,0.0 +11984,51,53,39,0.0 +11984,72,34.8,44,0.0 +11984,15,15.5,11,0.0 +11984,3,10,27,0.0 +11984,11,21,47,0.0 +11984,23,9,35,0.0 +11984,64,33.25,16,0.0 +11984,5,21.35,44,0.0 +11984,8,40,41,0.0 +11984,28,45.6,30,0.0 +11984,6,25,22,0.0 +11984,38,263.5,42,0.0 +11984,4,22,20,0.0 +11984,60,34,8,0.0 +11984,46,12,2,0.0 +11985,65,21.05,46,0.0 +11985,73,15,47,0.0 +11985,62,49.3,14,0.0 +11985,57,19.5,50,0.0 +11985,43,46,47,0.0 +11985,41,9.65,35,0.0 +11985,46,12,7,0.0 +11985,77,13,50,0.0 +11985,51,53,20,0.0 +11985,22,21,47,0.0 +11985,23,9,29,0.0 +11985,74,10,35,0.0 +11985,45,9.5,49,0.0 +11985,4,22,28,0.0 +11985,52,7,38,0.0 +11985,19,9.2,3,0.0 +11985,67,14,13,0.0 +11985,50,16.25,5,0.0 +11985,21,10,23,0.0 +11985,72,34.8,20,0.0 +11985,29,123.79,22,0.0 +11985,76,18,29,0.0 +11985,53,32.8,4,0.0 +11985,75,7.75,37,0.0 +11985,58,13.25,37,0.0 +11985,16,17.45,19,0.0 +11985,20,81,48,0.0 +11985,48,12.75,11,0.0 +11985,27,43.9,12,0.0 +11985,69,36,15,0.0 +11985,7,30,2,0.0 +11985,9,97,4,0.0 +11985,13,6,16,0.0 +11985,59,55,14,0.0 +11985,36,19,45,0.0 +11985,26,31.23,39,0.0 +11985,66,17,42,0.0 +11985,33,2.5,40,0.0 +11985,44,19.45,3,0.0 +11985,34,14,33,0.0 +11985,42,14,14,0.0 +11985,40,18.4,42,0.0 +11985,54,7.45,11,0.0 +11985,47,9.5,31,0.0 +11985,39,18,40,0.0 +11985,3,10,21,0.0 +11985,11,21,30,0.0 +11985,15,15.5,46,0.0 +11985,55,24,22,0.0 +11985,17,39,28,0.0 +11985,24,4.5,1,0.0 +11985,10,31,34,0.0 +11985,8,40,2,0.0 +11985,71,21.5,8,0.0 +11985,2,19,45,0.0 +11985,28,45.6,31,0.0 +11985,35,18,20,0.0 +11985,25,14,3,0.0 +11985,14,23.25,25,0.0 +11985,6,25,34,0.0 +11985,70,15,22,0.0 +11985,63,43.9,15,0.0 +11985,12,38,8,0.0 +11985,38,263.5,12,0.0 +11985,1,18,38,0.0 +11985,49,20,11,0.0 +11986,72,34.8,35,0.0 +11986,46,12,36,0.0 +11986,76,18,20,0.0 +11986,57,19.5,35,0.0 +11986,18,62.5,17,0.0 +11986,36,19,11,0.0 +11986,5,21.35,7,0.0 +11986,31,12.5,43,0.0 +11986,27,43.9,44,0.0 +11986,15,15.5,27,0.0 +11986,32,32,48,0.0 +11986,64,33.25,28,0.0 +11986,2,19,26,0.0 +11986,48,12.75,2,0.0 +11987,52,7,50,0.0 +11987,42,14,37,0.0 +11987,66,17,21,0.0 +11987,38,263.5,36,0.0 +11987,3,10,4,0.0 +11987,60,34,49,0.0 +11987,18,62.5,37,0.0 +11987,75,7.75,45,0.0 +11987,24,4.5,16,0.0 +11987,7,30,24,0.0 +11987,64,33.25,28,0.0 +11987,50,16.25,1,0.0 +11987,56,38,29,0.0 +11987,73,15,39,0.0 +11987,39,18,32,0.0 +11987,61,28.5,43,0.0 +11987,35,18,32,0.0 +11987,30,25.89,21,0.0 +11987,2,19,1,0.0 +11987,54,7.45,14,0.0 +11987,4,22,27,0.0 +11987,26,31.23,23,0.0 +11987,13,6,30,0.0 +11987,70,15,29,0.0 +11987,65,21.05,49,0.0 +11987,22,21,22,0.0 +11987,17,39,43,0.0 +11987,63,43.9,12,0.0 +11987,49,20,30,0.0 +11987,12,38,30,0.0 +11987,67,14,48,0.0 +11987,9,97,16,0.0 +11987,45,9.5,35,0.0 +11987,25,14,1,0.0 +11987,31,12.5,19,0.0 +11987,14,23.25,9,0.0 +11987,47,9.5,48,0.0 +11987,33,2.5,21,0.0 +11987,62,49.3,40,0.0 +11987,32,32,15,0.0 +11987,68,12.5,6,0.0 +11987,53,32.8,40,0.0 +11987,34,14,10,0.0 +11987,36,19,29,0.0 +11987,21,10,10,0.0 +11987,41,9.65,21,0.0 +11988,43,46,22,0.0 +11988,25,14,25,0.0 +11988,6,25,8,0.0 +11988,14,23.25,6,0.0 +11988,23,9,47,0.0 +11988,59,55,20,0.0 +11988,67,14,42,0.0 +11988,76,18,27,0.0 +11988,30,25.89,15,0.0 +11988,26,31.23,24,0.0 +11988,15,15.5,12,0.0 +11989,58,13.25,27,0.0 +11989,66,17,34,0.0 +11989,1,18,12,0.0 +11989,36,19,17,0.0 +11989,65,21.05,10,0.0 +11989,3,10,12,0.0 +11989,55,24,1,0.0 +11989,7,30,22,0.0 +11989,59,55,1,0.0 +11989,23,9,24,0.0 +11989,75,7.75,32,0.0 +11989,67,14,14,0.0 +11989,6,25,23,0.0 +11989,14,23.25,34,0.0 +11989,2,19,44,0.0 +11989,4,22,2,0.0 +11989,49,20,13,0.0 +11989,56,38,16,0.0 +11989,73,15,38,0.0 +11989,30,25.89,29,0.0 +11989,50,16.25,7,0.0 +11989,13,6,40,0.0 +11989,11,21,36,0.0 +11989,70,15,2,0.0 +11989,77,13,30,0.0 +11989,42,14,26,0.0 +11989,31,12.5,7,0.0 +11989,12,38,8,0.0 +11989,8,40,50,0.0 +11989,22,21,3,0.0 +11989,34,14,49,0.0 +11989,15,15.5,2,0.0 +11989,64,33.25,39,0.0 +11989,48,12.75,19,0.0 +11989,28,45.6,41,0.0 +11989,20,81,28,0.0 +11989,63,43.9,43,0.0 +11989,53,32.8,47,0.0 +11990,53,32.8,35,0.0 +11990,19,9.2,50,0.0 +11990,55,24,8,0.0 +11990,66,17,13,0.0 +11990,2,19,3,0.0 +11990,75,7.75,13,0.0 +11990,41,9.65,29,0.0 +11990,8,40,3,0.0 +11990,17,39,30,0.0 +11990,35,18,17,0.0 +11990,1,18,28,0.0 +11990,4,22,37,0.0 +11990,6,25,25,0.0 +11990,48,12.75,33,0.0 +11990,16,17.45,11,0.0 +11991,12,38,32,0.0 +11991,65,21.05,3,0.0 +11991,42,14,32,0.0 +11991,58,13.25,41,0.0 +11991,21,10,13,0.0 +11991,23,9,13,0.0 +11991,55,24,40,0.0 +11991,34,14,43,0.0 +11991,68,12.5,11,0.0 +11991,61,28.5,45,0.0 +11991,33,2.5,37,0.0 +11991,8,40,48,0.0 +11991,46,12,26,0.0 +11991,73,15,2,0.0 +11991,44,19.45,45,0.0 +11991,16,17.45,11,0.0 +11991,62,49.3,13,0.0 +11991,50,16.25,32,0.0 +11991,35,18,14,0.0 +11991,53,32.8,10,0.0 +11991,67,14,23,0.0 +11991,38,263.5,18,0.0 +11991,4,22,13,0.0 +11991,9,97,36,0.0 +11991,2,19,19,0.0 +11991,63,43.9,29,0.0 +11991,18,62.5,40,0.0 +11991,74,10,41,0.0 +11991,76,18,27,0.0 +11991,32,32,7,0.0 +11991,54,7.45,50,0.0 +11991,13,6,33,0.0 +11991,75,7.75,12,0.0 +11991,52,7,16,0.0 +11991,57,19.5,40,0.0 +11991,71,21.5,28,0.0 +11991,56,38,10,0.0 +11991,70,15,23,0.0 +11991,77,13,4,0.0 +11992,54,7.45,22,0.0 +11992,43,46,23,0.0 +11992,44,19.45,2,0.0 +11992,55,24,13,0.0 +11992,66,17,43,0.0 +11992,31,12.5,24,0.0 +11992,58,13.25,37,0.0 +11992,52,7,39,0.0 +11992,51,53,49,0.0 +11992,62,49.3,45,0.0 +11992,70,15,24,0.0 +11993,41,9.65,21,0.0 +11993,46,12,47,0.0 +11993,15,15.5,44,0.0 +11993,37,26,23,0.0 +11993,72,34.8,22,0.0 +11993,42,14,13,0.0 +11993,1,18,44,0.0 +11993,14,23.25,4,0.0 +11993,62,49.3,50,0.0 +11993,24,4.5,19,0.0 +11993,18,62.5,28,0.0 +11993,71,21.5,5,0.0 +11993,69,36,12,0.0 +11993,36,19,5,0.0 +11993,4,22,31,0.0 +11993,57,19.5,25,0.0 +11993,56,38,30,0.0 +11993,30,25.89,39,0.0 +11993,38,263.5,4,0.0 +11994,1,18,18,0.0 +11994,34,14,46,0.0 +11994,21,10,32,0.0 +11994,47,9.5,7,0.0 +11994,33,2.5,44,0.0 +11994,60,34,11,0.0 +11994,4,22,36,0.0 +11994,2,19,3,0.0 +11994,13,6,26,0.0 +11994,61,28.5,17,0.0 +11994,27,43.9,50,0.0 +11994,72,34.8,5,0.0 +11994,68,12.5,17,0.0 +11994,71,21.5,4,0.0 +11994,35,18,22,0.0 +11994,41,9.65,41,0.0 +11994,31,12.5,46,0.0 +11994,6,25,14,0.0 +11994,54,7.45,30,0.0 +11994,28,45.6,31,0.0 +11994,9,97,33,0.0 +11994,8,40,18,0.0 +11994,73,15,28,0.0 +11994,64,33.25,37,0.0 +11994,48,12.75,15,0.0 +11994,55,24,50,0.0 +11994,74,10,37,0.0 +11994,56,38,12,0.0 +11994,20,81,35,0.0 +11994,53,32.8,35,0.0 +11994,29,123.79,38,0.0 +11994,39,18,43,0.0 +11994,3,10,42,0.0 +11994,24,4.5,16,0.0 +11994,37,26,49,0.0 +11994,14,23.25,10,0.0 +11994,26,31.23,17,0.0 +11995,65,21.05,29,0.0 +11995,74,10,37,0.0 +11995,10,31,19,0.0 +11995,35,18,5,0.0 +11995,4,22,45,0.0 +11995,61,28.5,14,0.0 +11995,75,7.75,4,0.0 +11995,3,10,8,0.0 +11995,57,19.5,48,0.0 +11995,21,10,15,0.0 +11995,69,36,19,0.0 +11995,25,14,29,0.0 +11995,22,21,20,0.0 +11995,34,14,5,0.0 +11995,73,15,9,0.0 +11995,23,9,33,0.0 +11995,43,46,33,0.0 +11995,72,34.8,39,0.0 +11995,55,24,47,0.0 +11995,58,13.25,41,0.0 +11995,14,23.25,11,0.0 +11995,6,25,50,0.0 +11995,54,7.45,32,0.0 +11995,18,62.5,24,0.0 +11995,60,34,12,0.0 +11995,24,4.5,46,0.0 +11995,64,33.25,3,0.0 +11995,40,18.4,23,0.0 +11995,50,16.25,33,0.0 +11995,31,12.5,34,0.0 +11995,7,30,43,0.0 +11995,37,26,25,0.0 +11995,44,19.45,21,0.0 +11995,51,53,9,0.0 +11995,77,13,13,0.0 +11995,67,14,15,0.0 +11995,17,39,44,0.0 +11995,70,15,38,0.0 +11995,2,19,44,0.0 +11995,15,15.5,49,0.0 +11995,76,18,31,0.0 +11995,63,43.9,27,0.0 +11995,32,32,41,0.0 +11995,33,2.5,41,0.0 +11995,41,9.65,22,0.0 +11995,29,123.79,41,0.0 +11995,8,40,45,0.0 +11995,52,7,44,0.0 +11995,47,9.5,23,0.0 +11995,13,6,13,0.0 +11995,36,19,12,0.0 +11995,9,97,3,0.0 +11995,53,32.8,6,0.0 +11995,28,45.6,26,0.0 +11995,71,21.5,29,0.0 +11995,26,31.23,35,0.0 +11995,12,38,21,0.0 +11995,48,12.75,12,0.0 +11995,11,21,34,0.0 +11995,66,17,13,0.0 +11995,16,17.45,25,0.0 +11995,68,12.5,23,0.0 +11995,59,55,8,0.0 +11995,49,20,10,0.0 +11995,45,9.5,41,0.0 +11995,27,43.9,7,0.0 +11996,26,31.23,24,0.0 +11996,55,24,20,0.0 +11996,21,10,45,0.0 +11996,22,21,12,0.0 +11996,46,12,12,0.0 +11996,15,15.5,37,0.0 +11996,49,20,27,0.0 +11996,6,25,31,0.0 +11996,77,13,11,0.0 +11996,1,18,16,0.0 +11996,39,18,31,0.0 +11996,71,21.5,14,0.0 +11996,36,19,22,0.0 +11996,53,32.8,47,0.0 +11996,54,7.45,14,0.0 +11996,47,9.5,44,0.0 +11996,41,9.65,22,0.0 +11996,31,12.5,44,0.0 +11996,48,12.75,1,0.0 +11996,45,9.5,25,0.0 +11996,69,36,44,0.0 +11996,9,97,45,0.0 +11996,27,43.9,39,0.0 +11996,61,28.5,31,0.0 +11996,7,30,49,0.0 +11996,65,21.05,21,0.0 +11996,66,17,30,0.0 +11996,40,18.4,8,0.0 +11996,30,25.89,8,0.0 +11996,16,17.45,38,0.0 +11996,28,45.6,49,0.0 +11996,17,39,17,0.0 +11996,68,12.5,39,0.0 +11996,24,4.5,27,0.0 +11996,29,123.79,34,0.0 +11996,74,10,25,0.0 +11996,42,14,45,0.0 +11996,5,21.35,14,0.0 +11996,33,2.5,6,0.0 +11996,38,263.5,50,0.0 +11996,20,81,19,0.0 +11996,51,53,10,0.0 +11996,8,40,9,0.0 +11996,12,38,28,0.0 +11996,60,34,10,0.0 +11996,64,33.25,30,0.0 +11996,56,38,30,0.0 +11997,1,18,12,0.0 +11997,42,14,36,0.0 +11997,24,4.5,17,0.0 +11997,44,19.45,7,0.0 +11997,16,17.45,5,0.0 +11997,23,9,31,0.0 +11997,73,15,46,0.0 +11997,65,21.05,17,0.0 +11997,33,2.5,45,0.0 +11997,69,36,13,0.0 +11997,37,26,49,0.0 +11997,49,20,31,0.0 +11997,62,49.3,14,0.0 +11997,3,10,1,0.0 +11997,61,28.5,27,0.0 +11997,64,33.25,7,0.0 +11998,43,46,26,0.0 +11998,23,9,10,0.0 +11998,53,32.8,8,0.0 +11998,66,17,9,0.0 +11998,18,62.5,31,0.0 +11998,46,12,4,0.0 +11998,25,14,22,0.0 +11998,26,31.23,27,0.0 +11998,41,9.65,38,0.0 +11998,22,21,2,0.0 +11998,29,123.79,36,0.0 +11998,15,15.5,15,0.0 +11998,14,23.25,20,0.0 +11998,20,81,15,0.0 +11998,73,15,1,0.0 +11998,77,13,10,0.0 +11998,13,6,46,0.0 +11998,65,21.05,48,0.0 +11998,58,13.25,48,0.0 +11998,27,43.9,13,0.0 +11998,72,34.8,39,0.0 +11998,12,38,12,0.0 +11998,5,21.35,18,0.0 +11998,35,18,39,0.0 +11998,21,10,2,0.0 +11999,14,23.25,42,0.0 +11999,58,13.25,50,0.0 +11999,49,20,36,0.0 +11999,18,62.5,38,0.0 +11999,11,21,28,0.0 +12000,13,6,47,0.0 +12000,69,36,38,0.0 +12000,61,28.5,8,0.0 +12000,71,21.5,43,0.0 +12000,57,19.5,33,0.0 +12000,45,9.5,30,0.0 +12000,18,62.5,42,0.0 +12000,60,34,33,0.0 +12000,31,12.5,6,0.0 +12000,27,43.9,38,0.0 +12000,26,31.23,34,0.0 +12000,55,24,19,0.0 +12000,43,46,31,0.0 +12000,28,45.6,44,0.0 +12000,16,17.45,31,0.0 +12000,44,19.45,2,0.0 +12000,1,18,5,0.0 +12000,5,21.35,37,0.0 +12000,52,7,40,0.0 +12000,32,32,31,0.0 +12000,64,33.25,20,0.0 +12000,25,14,36,0.0 +12000,48,12.75,39,0.0 +12000,77,13,19,0.0 +12000,8,40,3,0.0 +12000,66,17,36,0.0 +12000,65,21.05,14,0.0 +12000,20,81,33,0.0 +12000,54,7.45,20,0.0 +12000,38,263.5,16,0.0 +12000,76,18,35,0.0 +12000,3,10,20,0.0 +12000,70,15,35,0.0 +12000,50,16.25,40,0.0 +12000,41,9.65,11,0.0 +12000,67,14,44,0.0 +12000,63,43.9,34,0.0 +12000,15,15.5,32,0.0 +12000,2,19,27,0.0 +12000,19,9.2,9,0.0 +12000,24,4.5,49,0.0 +12000,30,25.89,49,0.0 +12000,17,39,6,0.0 +12001,2,19,15,0.0 +12001,5,21.35,44,0.0 +12001,55,24,43,0.0 +12001,61,28.5,9,0.0 +12001,7,30,24,0.0 +12001,69,36,1,0.0 +12001,67,14,47,0.0 +12001,40,18.4,27,0.0 +12001,23,9,41,0.0 +12001,27,43.9,28,0.0 +12001,12,38,20,0.0 +12001,56,38,43,0.0 +12001,8,40,15,0.0 +12001,20,81,39,0.0 +12001,16,17.45,10,0.0 +12001,28,45.6,27,0.0 +12001,22,21,46,0.0 +12001,18,62.5,35,0.0 +12001,26,31.23,14,0.0 +12001,49,20,13,0.0 +12001,58,13.25,45,0.0 +12001,47,9.5,38,0.0 +12001,46,12,31,0.0 +12002,41,9.65,17,0.0 +12002,45,9.5,16,0.0 +12002,29,123.79,28,0.0 +12002,70,15,4,0.0 +12002,69,36,19,0.0 +12002,71,21.5,16,0.0 +12002,17,39,5,0.0 +12002,5,21.35,28,0.0 +12002,48,12.75,35,0.0 +12002,2,19,24,0.0 +12002,22,21,39,0.0 +12002,52,7,35,0.0 +12002,26,31.23,48,0.0 +12002,53,32.8,35,0.0 +12002,77,13,48,0.0 +12002,65,21.05,34,0.0 +12002,35,18,31,0.0 +12002,1,18,25,0.0 +12002,4,22,21,0.0 +12002,75,7.75,10,0.0 +12002,14,23.25,30,0.0 +12002,57,19.5,11,0.0 +12002,49,20,20,0.0 +12002,20,81,42,0.0 +12002,64,33.25,48,0.0 +12002,61,28.5,30,0.0 +12002,63,43.9,5,0.0 +12002,60,34,40,0.0 +12002,66,17,9,0.0 +12003,59,55,8,0.0 +12003,62,49.3,43,0.0 +12003,52,7,19,0.0 +12003,69,36,48,0.0 +12003,18,62.5,21,0.0 +12003,67,14,42,0.0 +12003,29,123.79,21,0.0 +12003,20,81,6,0.0 +12003,1,18,15,0.0 +12003,33,2.5,38,0.0 +12003,44,19.45,17,0.0 +12003,42,14,15,0.0 +12003,4,22,27,0.0 +12003,61,28.5,19,0.0 +12003,40,18.4,10,0.0 +12003,71,21.5,41,0.0 +12003,68,12.5,36,0.0 +12003,65,21.05,30,0.0 +12003,66,17,28,0.0 +12003,45,9.5,30,0.0 +12003,37,26,13,0.0 +12003,8,40,34,0.0 +12003,30,25.89,49,0.0 +12003,64,33.25,30,0.0 +12003,75,7.75,1,0.0 +12003,35,18,12,0.0 +12003,55,24,48,0.0 +12003,41,9.65,23,0.0 +12003,49,20,17,0.0 +12003,2,19,46,0.0 +12003,72,34.8,9,0.0 +12003,11,21,39,0.0 +12003,6,25,37,0.0 +12003,43,46,43,0.0 +12003,56,38,3,0.0 +12004,43,46,39,0.0 +12004,72,34.8,4,0.0 +12004,20,81,20,0.0 +12004,39,18,26,0.0 +12004,27,43.9,41,0.0 +12004,23,9,16,0.0 +12004,66,17,41,0.0 +12004,12,38,50,0.0 +12004,14,23.25,23,0.0 +12004,33,2.5,40,0.0 +12004,7,30,17,0.0 +12004,34,14,42,0.0 +12004,77,13,30,0.0 +12005,60,34,39,0.0 +12005,68,12.5,5,0.0 +12005,15,15.5,30,0.0 +12005,14,23.25,32,0.0 +12005,3,10,1,0.0 +12005,69,36,21,0.0 +12005,76,18,19,0.0 +12005,66,17,18,0.0 +12005,30,25.89,25,0.0 +12005,18,62.5,49,0.0 +12005,63,43.9,40,0.0 +12005,61,28.5,20,0.0 +12005,59,55,18,0.0 +12005,39,18,21,0.0 +12005,27,43.9,33,0.0 +12005,56,38,21,0.0 +12005,73,15,26,0.0 +12005,43,46,40,0.0 +12005,48,12.75,47,0.0 +12005,57,19.5,20,0.0 +12005,51,53,40,0.0 +12005,17,39,10,0.0 +12005,24,4.5,45,0.0 +12005,1,18,23,0.0 +12005,31,12.5,21,0.0 +12005,7,30,14,0.0 +12005,34,14,39,0.0 +12005,16,17.45,31,0.0 +12005,13,6,19,0.0 +12005,40,18.4,45,0.0 +12005,38,263.5,36,0.0 +12005,47,9.5,36,0.0 +12005,33,2.5,27,0.0 +12005,55,24,40,0.0 +12005,5,21.35,21,0.0 +12005,42,14,21,0.0 +12005,21,10,34,0.0 +12005,22,21,30,0.0 +12005,65,21.05,46,0.0 +12005,45,9.5,34,0.0 +12005,9,97,6,0.0 +12005,11,21,42,0.0 +12005,36,19,46,0.0 +12005,49,20,7,0.0 +12005,77,13,42,0.0 +12005,6,25,25,0.0 +12005,20,81,8,0.0 +12005,4,22,9,0.0 +12005,29,123.79,40,0.0 +12005,10,31,21,0.0 +12005,26,31.23,47,0.0 +12005,54,7.45,33,0.0 +12005,52,7,10,0.0 +12005,74,10,1,0.0 +12005,25,14,30,0.0 +12005,19,9.2,36,0.0 +12005,62,49.3,16,0.0 +12005,58,13.25,29,0.0 +12005,32,32,12,0.0 +12005,41,9.65,25,0.0 +12005,72,34.8,16,0.0 +12005,46,12,44,0.0 +12005,35,18,1,0.0 +12005,64,33.25,46,0.0 +12006,38,263.5,12,0.0 +12006,57,19.5,48,0.0 +12006,62,49.3,30,0.0 +12006,3,10,18,0.0 +12006,55,24,17,0.0 +12006,75,7.75,24,0.0 +12006,67,14,21,0.0 +12006,25,14,34,0.0 +12006,42,14,19,0.0 +12006,76,18,3,0.0 +12006,24,4.5,41,0.0 +12006,40,18.4,27,0.0 +12006,50,16.25,7,0.0 +12006,49,20,20,0.0 +12006,54,7.45,33,0.0 +12006,26,31.23,7,0.0 +12006,19,9.2,34,0.0 +12006,2,19,17,0.0 +12006,14,23.25,44,0.0 +12006,53,32.8,41,0.0 +12006,71,21.5,46,0.0 +12006,10,31,43,0.0 +12006,61,28.5,45,0.0 +12006,33,2.5,22,0.0 +12006,59,55,30,0.0 +12006,43,46,12,0.0 +12006,17,39,19,0.0 +12006,27,43.9,20,0.0 +12006,22,21,14,0.0 +12006,1,18,27,0.0 +12006,72,34.8,44,0.0 +12006,52,7,40,0.0 +12006,77,13,2,0.0 +12006,64,33.25,14,0.0 +12006,74,10,10,0.0 +12006,56,38,10,0.0 +12006,15,15.5,2,0.0 +12006,58,13.25,8,0.0 +12006,31,12.5,39,0.0 +12006,29,123.79,32,0.0 +12006,47,9.5,38,0.0 +12006,66,17,2,0.0 +12006,39,18,29,0.0 +12006,20,81,15,0.0 +12006,37,26,2,0.0 +12006,9,97,8,0.0 +12006,44,19.45,10,0.0 +12006,28,45.6,21,0.0 +12006,18,62.5,16,0.0 +12006,60,34,32,0.0 +12006,41,9.65,8,0.0 +12006,36,19,25,0.0 +12006,21,10,7,0.0 +12006,6,25,33,0.0 +12006,73,15,4,0.0 +12006,4,22,31,0.0 +12006,63,43.9,18,0.0 +12006,46,12,23,0.0 +12006,11,21,27,0.0 +12006,23,9,24,0.0 +12006,35,18,24,0.0 +12006,8,40,49,0.0 +12006,65,21.05,32,0.0 +12006,13,6,46,0.0 +12006,51,53,28,0.0 +12006,30,25.89,13,0.0 +12006,68,12.5,50,0.0 +12006,69,36,2,0.0 +12006,32,32,27,0.0 +12006,5,21.35,1,0.0 +12006,16,17.45,9,0.0 +12006,48,12.75,1,0.0 +12006,7,30,23,0.0 +12006,34,14,33,0.0 +12006,70,15,9,0.0 +12006,12,38,9,0.0 +12007,34,14,49,0.0 +12007,36,19,4,0.0 +12007,43,46,40,0.0 +12007,73,15,16,0.0 +12007,25,14,20,0.0 +12007,55,24,26,0.0 +12007,74,10,42,0.0 +12007,72,34.8,21,0.0 +12007,28,45.6,48,0.0 +12007,70,15,8,0.0 +12007,33,2.5,20,0.0 +12007,37,26,18,0.0 +12007,40,18.4,50,0.0 +12007,24,4.5,24,0.0 +12007,39,18,33,0.0 +12007,53,32.8,9,0.0 +12007,50,16.25,34,0.0 +12007,12,38,16,0.0 +12007,27,43.9,33,0.0 +12007,19,9.2,3,0.0 +12007,46,12,8,0.0 +12007,63,43.9,45,0.0 +12007,32,32,16,0.0 +12007,60,34,34,0.0 +12007,44,19.45,38,0.0 +12007,58,13.25,1,0.0 +12007,9,97,32,0.0 +12007,35,18,14,0.0 +12007,5,21.35,17,0.0 +12007,38,263.5,41,0.0 +12007,62,49.3,11,0.0 +12007,16,17.45,47,0.0 +12007,4,22,11,0.0 +12007,56,38,6,0.0 +12007,51,53,24,0.0 +12007,8,40,1,0.0 +12007,30,25.89,49,0.0 +12007,47,9.5,5,0.0 +12007,75,7.75,41,0.0 +12007,76,18,25,0.0 +12007,69,36,21,0.0 +12007,13,6,39,0.0 +12007,11,21,15,0.0 +12007,59,55,4,0.0 +12007,2,19,9,0.0 +12007,26,31.23,22,0.0 +12007,77,13,22,0.0 +12007,64,33.25,36,0.0 +12007,20,81,5,0.0 +12008,54,7.45,28,0.0 +12008,16,17.45,47,0.0 +12008,66,17,38,0.0 +12008,1,18,17,0.0 +12008,29,123.79,37,0.0 +12008,63,43.9,9,0.0 +12008,42,14,26,0.0 +12008,61,28.5,6,0.0 +12008,11,21,12,0.0 +12008,56,38,14,0.0 +12008,3,10,26,0.0 +12008,17,39,22,0.0 +12008,43,46,18,0.0 +12009,30,25.89,33,0.0 +12009,18,62.5,10,0.0 +12009,74,10,50,0.0 +12009,13,6,48,0.0 +12009,53,32.8,16,0.0 +12009,68,12.5,20,0.0 +12009,15,15.5,22,0.0 +12009,4,22,25,0.0 +12009,65,21.05,8,0.0 +12009,10,31,26,0.0 +12009,62,49.3,34,0.0 +12009,16,17.45,26,0.0 +12009,47,9.5,42,0.0 +12009,55,24,4,0.0 +12009,61,28.5,8,0.0 +12009,24,4.5,5,0.0 +12009,42,14,50,0.0 +12009,37,26,39,0.0 +12009,28,45.6,31,0.0 +12009,41,9.65,39,0.0 +12009,50,16.25,8,0.0 +12009,60,34,45,0.0 +12009,3,10,44,0.0 +12009,43,46,14,0.0 +12009,34,14,45,0.0 +12009,70,15,31,0.0 +12009,67,14,39,0.0 +12009,27,43.9,40,0.0 +12009,6,25,39,0.0 +12009,9,97,33,0.0 +12009,1,18,36,0.0 +12009,52,7,14,0.0 +12009,31,12.5,25,0.0 +12009,45,9.5,42,0.0 +12009,40,18.4,2,0.0 +12009,36,19,47,0.0 +12009,72,34.8,4,0.0 +12009,58,13.25,4,0.0 +12009,25,14,29,0.0 +12009,44,19.45,44,0.0 +12009,73,15,13,0.0 +12009,32,32,48,0.0 +12009,69,36,2,0.0 +12009,66,17,10,0.0 +12009,63,43.9,15,0.0 +12009,11,21,11,0.0 +12009,8,40,30,0.0 +12009,29,123.79,6,0.0 +12009,26,31.23,5,0.0 +12009,39,18,11,0.0 +12009,71,21.5,39,0.0 +12009,51,53,21,0.0 +12009,19,9.2,45,0.0 +12009,23,9,22,0.0 +12009,35,18,29,0.0 +12009,64,33.25,33,0.0 +12009,5,21.35,31,0.0 +12009,56,38,46,0.0 +12009,12,38,1,0.0 +12010,77,13,45,0.0 +12010,42,14,16,0.0 +12010,27,43.9,31,0.0 +12010,23,9,30,0.0 +12010,1,18,14,0.0 +12010,65,21.05,17,0.0 +12010,22,21,44,0.0 +12010,74,10,24,0.0 +12010,26,31.23,14,0.0 +12010,45,9.5,7,0.0 +12010,70,15,37,0.0 +12010,63,43.9,38,0.0 +12010,58,13.25,49,0.0 +12010,43,46,13,0.0 +12010,57,19.5,14,0.0 +12010,36,19,8,0.0 +12010,7,30,46,0.0 +12010,32,32,16,0.0 +12010,50,16.25,37,0.0 +12010,71,21.5,38,0.0 +12010,31,12.5,38,0.0 +12010,38,263.5,7,0.0 +12010,28,45.6,26,0.0 +12010,33,2.5,31,0.0 +12010,24,4.5,43,0.0 +12010,56,38,36,0.0 +12010,16,17.45,18,0.0 +12010,39,18,42,0.0 +12010,35,18,28,0.0 +12010,2,19,32,0.0 +12010,61,28.5,20,0.0 +12010,21,10,42,0.0 +12010,47,9.5,28,0.0 +12010,73,15,25,0.0 +12010,34,14,37,0.0 +12010,40,18.4,47,0.0 +12010,14,23.25,21,0.0 +12010,46,12,19,0.0 +12010,49,20,40,0.0 +12010,19,9.2,42,0.0 +12010,55,24,14,0.0 +12010,64,33.25,24,0.0 +12010,48,12.75,20,0.0 +12010,68,12.5,9,0.0 +12010,44,19.45,10,0.0 +12010,66,17,50,0.0 +12010,37,26,47,0.0 +12010,59,55,2,0.0 +12010,75,7.75,4,0.0 +12010,20,81,49,0.0 +12010,6,25,50,0.0 +12010,17,39,46,0.0 +12010,8,40,39,0.0 +12010,25,14,43,0.0 +12010,69,36,47,0.0 +12010,72,34.8,25,0.0 +12010,30,25.89,39,0.0 +12010,41,9.65,38,0.0 +12010,9,97,11,0.0 +12010,67,14,48,0.0 +12010,60,34,17,0.0 +12010,11,21,28,0.0 +12011,22,21,11,0.0 +12011,47,9.5,4,0.0 +12011,38,263.5,1,0.0 +12011,43,46,28,0.0 +12011,40,18.4,39,0.0 +12011,6,25,5,0.0 +12011,37,26,25,0.0 +12011,23,9,6,0.0 +12011,42,14,36,0.0 +12011,27,43.9,15,0.0 +12011,24,4.5,38,0.0 +12011,53,32.8,12,0.0 +12011,29,123.79,2,0.0 +12011,57,19.5,29,0.0 +12011,32,32,7,0.0 +12011,35,18,24,0.0 +12011,9,97,43,0.0 +12011,21,10,19,0.0 +12011,67,14,2,0.0 +12011,11,21,38,0.0 +12011,45,9.5,44,0.0 +12011,49,20,43,0.0 +12011,69,36,5,0.0 +12011,44,19.45,11,0.0 +12011,70,15,49,0.0 +12011,75,7.75,31,0.0 +12011,60,34,13,0.0 +12011,18,62.5,48,0.0 +12011,68,12.5,38,0.0 +12011,16,17.45,14,0.0 +12011,66,17,36,0.0 +12011,36,19,22,0.0 +12011,20,81,47,0.0 +12011,46,12,37,0.0 +12011,28,45.6,47,0.0 +12011,14,23.25,9,0.0 +12011,73,15,19,0.0 +12011,41,9.65,45,0.0 +12011,65,21.05,31,0.0 +12011,5,21.35,30,0.0 +12012,52,7,2,0.0 +12012,56,38,43,0.0 +12012,44,19.45,4,0.0 +12012,49,20,15,0.0 +12012,16,17.45,28,0.0 +12012,47,9.5,23,0.0 +12012,27,43.9,22,0.0 +12012,6,25,50,0.0 +12012,28,45.6,40,0.0 +12012,34,14,4,0.0 +12012,43,46,20,0.0 +12012,73,15,19,0.0 +12012,17,39,50,0.0 +12013,25,14,1,0.0 +12013,24,4.5,14,0.0 +12013,63,43.9,10,0.0 +12013,44,19.45,13,0.0 +12013,28,45.6,20,0.0 +12013,16,17.45,42,0.0 +12013,8,40,29,0.0 +12013,33,2.5,10,0.0 +12013,11,21,50,0.0 +12013,17,39,5,0.0 +12013,14,23.25,1,0.0 +12013,76,18,46,0.0 +12013,64,33.25,6,0.0 +12013,20,81,5,0.0 +12013,4,22,15,0.0 +12013,73,15,2,0.0 +12013,65,21.05,3,0.0 +12013,15,15.5,49,0.0 +12013,77,13,33,0.0 +12013,53,32.8,17,0.0 +12013,38,263.5,26,0.0 +12013,13,6,47,0.0 +12013,1,18,19,0.0 +12013,74,10,37,0.0 +12013,6,25,45,0.0 +12013,2,19,22,0.0 +12013,59,55,37,0.0 +12013,42,14,23,0.0 +12013,60,34,28,0.0 +12013,3,10,48,0.0 +12013,39,18,3,0.0 +12013,48,12.75,35,0.0 +12013,55,24,29,0.0 +12013,27,43.9,16,0.0 +12013,31,12.5,5,0.0 +12013,23,9,5,0.0 +12013,70,15,15,0.0 +12014,27,43.9,10,0.0 +12014,16,17.45,35,0.0 +12014,55,24,25,0.0 +12014,21,10,37,0.0 +12014,71,21.5,45,0.0 +12014,29,123.79,32,0.0 +12014,36,19,48,0.0 +12014,17,39,47,0.0 +12014,73,15,4,0.0 +12014,70,15,21,0.0 +12014,65,21.05,39,0.0 +12014,72,34.8,24,0.0 +12014,47,9.5,47,0.0 +12014,32,32,8,0.0 +12014,8,40,43,0.0 +12014,52,7,50,0.0 +12014,49,20,29,0.0 +12014,25,14,4,0.0 +12014,44,19.45,16,0.0 +12014,6,25,29,0.0 +12014,69,36,20,0.0 +12014,50,16.25,10,0.0 +12014,34,14,30,0.0 +12014,9,97,26,0.0 +12015,9,97,47,0.0 +12015,39,18,29,0.0 +12016,29,123.79,42,0.0 +12016,41,9.65,32,0.0 +12016,21,10,30,0.0 +12016,3,10,49,0.0 +12016,28,45.6,50,0.0 +12016,76,18,4,0.0 +12016,10,31,50,0.0 +12016,62,49.3,24,0.0 +12016,40,18.4,36,0.0 +12016,38,263.5,39,0.0 +12016,15,15.5,34,0.0 +12016,66,17,3,0.0 +12016,24,4.5,3,0.0 +12016,35,18,49,0.0 +12016,55,24,40,0.0 +12016,47,9.5,39,0.0 +12016,19,9.2,38,0.0 +12016,37,26,3,0.0 +12016,64,33.25,16,0.0 +12016,77,13,41,0.0 +12016,48,12.75,2,0.0 +12016,42,14,1,0.0 +12016,75,7.75,35,0.0 +12016,44,19.45,50,0.0 +12016,1,18,49,0.0 +12016,30,25.89,50,0.0 +12016,73,15,40,0.0 +12016,65,21.05,16,0.0 +12016,56,38,16,0.0 +12016,71,21.5,27,0.0 +12016,16,17.45,20,0.0 +12017,3,10,28,0.0 +12017,10,31,49,0.0 +12017,43,46,36,0.0 +12017,49,20,32,0.0 +12017,70,15,10,0.0 +12017,4,22,41,0.0 +12017,5,21.35,22,0.0 +12017,8,40,30,0.0 +12017,57,19.5,25,0.0 +12017,30,25.89,38,0.0 +12017,25,14,37,0.0 +12017,12,38,7,0.0 +12017,39,18,17,0.0 +12017,71,21.5,18,0.0 +12017,54,7.45,26,0.0 +12017,69,36,38,0.0 +12017,34,14,28,0.0 +12017,52,7,25,0.0 +12017,55,24,3,0.0 +12017,46,12,32,0.0 +12017,15,15.5,4,0.0 +12017,47,9.5,21,0.0 +12017,16,17.45,4,0.0 +12017,44,19.45,48,0.0 +12017,27,43.9,47,0.0 +12017,13,6,49,0.0 +12017,23,9,3,0.0 +12017,28,45.6,11,0.0 +12017,40,18.4,30,0.0 +12017,41,9.65,25,0.0 +12017,45,9.5,25,0.0 +12017,36,19,25,0.0 +12017,63,43.9,30,0.0 +12017,21,10,41,0.0 +12017,14,23.25,7,0.0 +12017,42,14,4,0.0 +12017,73,15,42,0.0 +12017,31,12.5,6,0.0 +12017,26,31.23,37,0.0 +12017,19,9.2,8,0.0 +12017,74,10,19,0.0 +12017,61,28.5,19,0.0 +12017,48,12.75,37,0.0 +12017,68,12.5,29,0.0 +12017,6,25,7,0.0 +12017,76,18,50,0.0 +12017,65,21.05,4,0.0 +12017,18,62.5,1,0.0 +12017,53,32.8,19,0.0 +12017,59,55,27,0.0 +12017,75,7.75,19,0.0 +12017,22,21,29,0.0 +12017,20,81,37,0.0 +12017,35,18,18,0.0 +12017,17,39,3,0.0 +12017,32,32,48,0.0 +12017,33,2.5,20,0.0 +12017,66,17,30,0.0 +12017,64,33.25,39,0.0 +12017,38,263.5,41,0.0 +12017,56,38,12,0.0 +12017,60,34,37,0.0 +12017,11,21,45,0.0 +12017,7,30,44,0.0 +12017,67,14,28,0.0 +12017,2,19,30,0.0 +12017,24,4.5,16,0.0 +12017,29,123.79,1,0.0 +12017,77,13,41,0.0 +12017,51,53,44,0.0 +12017,72,34.8,29,0.0 +12017,1,18,18,0.0 +12017,37,26,6,0.0 +12017,9,97,31,0.0 +12018,34,14,6,0.0 +12018,68,12.5,24,0.0 +12018,36,19,5,0.0 +12018,26,31.23,9,0.0 +12018,52,7,5,0.0 +12018,12,38,35,0.0 +12018,7,30,17,0.0 +12018,27,43.9,23,0.0 +12018,45,9.5,38,0.0 +12018,4,22,3,0.0 +12018,64,33.25,11,0.0 +12018,15,15.5,12,0.0 +12018,8,40,23,0.0 +12018,3,10,45,0.0 +12018,48,12.75,1,0.0 +12018,76,18,32,0.0 +12018,62,49.3,47,0.0 +12018,13,6,50,0.0 +12018,46,12,4,0.0 +12018,31,12.5,24,0.0 +12018,58,13.25,33,0.0 +12018,38,263.5,10,0.0 +12018,11,21,22,0.0 +12018,16,17.45,22,0.0 +12018,9,97,33,0.0 +12018,67,14,9,0.0 +12018,55,24,17,0.0 +12018,22,21,30,0.0 +12018,74,10,9,0.0 +12018,47,9.5,21,0.0 +12018,42,14,28,0.0 +12018,57,19.5,20,0.0 +12018,40,18.4,47,0.0 +12018,2,19,12,0.0 +12018,61,28.5,42,0.0 +12018,65,21.05,35,0.0 +12018,5,21.35,28,0.0 +12018,29,123.79,8,0.0 +12019,42,14,46,0.0 +12019,12,38,42,0.0 +12019,26,31.23,11,0.0 +12019,47,9.5,13,0.0 +12019,51,53,32,0.0 +12019,65,21.05,12,0.0 +12019,9,97,39,0.0 +12019,64,33.25,40,0.0 +12019,24,4.5,33,0.0 +12019,76,18,6,0.0 +12019,27,43.9,7,0.0 +12019,37,26,40,0.0 +12019,15,15.5,45,0.0 +12019,41,9.65,29,0.0 +12019,44,19.45,33,0.0 +12019,74,10,29,0.0 +12019,63,43.9,37,0.0 +12019,54,7.45,6,0.0 +12019,33,2.5,44,0.0 +12019,16,17.45,39,0.0 +12019,61,28.5,12,0.0 +12019,25,14,46,0.0 +12019,10,31,40,0.0 +12019,18,62.5,9,0.0 +12019,60,34,22,0.0 +12019,43,46,50,0.0 +12019,19,9.2,48,0.0 +12019,14,23.25,16,0.0 +12019,34,14,35,0.0 +12019,22,21,4,0.0 +12019,5,21.35,7,0.0 +12019,72,34.8,38,0.0 +12019,66,17,37,0.0 +12019,40,18.4,26,0.0 +12019,17,39,27,0.0 +12019,68,12.5,14,0.0 +12019,4,22,32,0.0 +12019,52,7,8,0.0 +12019,32,32,3,0.0 +12019,70,15,9,0.0 +12019,56,38,30,0.0 +12019,71,21.5,20,0.0 +12019,31,12.5,23,0.0 +12019,46,12,15,0.0 +12019,30,25.89,22,0.0 +12019,11,21,27,0.0 +12019,69,36,50,0.0 +12019,21,10,28,0.0 +12019,6,25,37,0.0 +12019,62,49.3,19,0.0 +12019,73,15,3,0.0 +12019,57,19.5,8,0.0 +12019,23,9,21,0.0 +12019,58,13.25,43,0.0 +12019,20,81,23,0.0 +12019,35,18,13,0.0 +12019,1,18,50,0.0 +12019,3,10,39,0.0 +12019,7,30,17,0.0 +12019,77,13,9,0.0 +12019,49,20,48,0.0 +12019,36,19,15,0.0 +12019,28,45.6,21,0.0 +12019,13,6,1,0.0 +12019,75,7.75,50,0.0 +12019,29,123.79,32,0.0 +12019,39,18,48,0.0 +12019,48,12.75,14,0.0 +12019,38,263.5,32,0.0 +12019,8,40,29,0.0 +12019,67,14,9,0.0 +12019,2,19,3,0.0 +12019,59,55,38,0.0 +12020,62,49.3,10,0.0 +12020,52,7,38,0.0 +12020,20,81,48,0.0 +12020,37,26,31,0.0 +12020,31,12.5,3,0.0 +12020,57,19.5,30,0.0 +12020,33,2.5,28,0.0 +12020,43,46,4,0.0 +12020,13,6,27,0.0 +12020,34,14,19,0.0 +12020,26,31.23,17,0.0 +12020,69,36,46,0.0 +12020,30,25.89,33,0.0 +12020,7,30,5,0.0 +12020,35,18,9,0.0 +12020,59,55,25,0.0 +12020,10,31,4,0.0 +12020,66,17,41,0.0 +12020,16,17.45,10,0.0 +12020,41,9.65,9,0.0 +12020,11,21,47,0.0 +12020,77,13,45,0.0 +12020,67,14,37,0.0 +12020,45,9.5,21,0.0 +12020,22,21,39,0.0 +12020,14,23.25,27,0.0 +12020,56,38,38,0.0 +12020,47,9.5,33,0.0 +12020,70,15,32,0.0 +12020,48,12.75,25,0.0 +12020,64,33.25,48,0.0 +12020,54,7.45,32,0.0 +12020,63,43.9,45,0.0 +12020,46,12,40,0.0 +12020,71,21.5,25,0.0 +12021,23,9,42,0.0 +12021,61,28.5,3,0.0 +12021,12,38,18,0.0 +12021,34,14,21,0.0 +12021,36,19,23,0.0 +12021,26,31.23,47,0.0 +12021,60,34,29,0.0 +12021,64,33.25,35,0.0 +12021,6,25,17,0.0 +12021,59,55,5,0.0 +12021,3,10,46,0.0 +12021,14,23.25,26,0.0 +12021,33,2.5,35,0.0 +12021,4,22,11,0.0 +12021,51,53,35,0.0 +12021,44,19.45,37,0.0 +12021,69,36,19,0.0 +12021,73,15,2,0.0 +12021,25,14,36,0.0 +12021,35,18,33,0.0 +12021,42,14,31,0.0 +12021,54,7.45,21,0.0 +12021,2,19,25,0.0 +12021,24,4.5,21,0.0 +12021,38,263.5,35,0.0 +12021,50,16.25,10,0.0 +12021,10,31,10,0.0 +12021,70,15,6,0.0 +12021,8,40,29,0.0 +12021,19,9.2,35,0.0 +12021,20,81,23,0.0 +12021,40,18.4,10,0.0 +12021,65,21.05,12,0.0 +12021,75,7.75,48,0.0 +12022,53,32.8,34,0.0 +12022,59,55,4,0.0 +12022,48,12.75,27,0.0 +12022,46,12,11,0.0 +12022,45,9.5,48,0.0 +12022,11,21,22,0.0 +12022,56,38,14,0.0 +12022,16,17.45,31,0.0 +12022,23,9,37,0.0 +12022,62,49.3,20,0.0 +12022,73,15,36,0.0 +12022,58,13.25,33,0.0 +12022,19,9.2,39,0.0 +12022,49,20,45,0.0 +12022,47,9.5,32,0.0 +12022,34,14,9,0.0 +12022,55,24,24,0.0 +12022,7,30,37,0.0 +12022,50,16.25,34,0.0 +12022,9,97,49,0.0 +12022,71,21.5,46,0.0 +12022,66,17,13,0.0 +12022,35,18,9,0.0 +12022,64,33.25,38,0.0 +12022,18,62.5,30,0.0 +12022,63,43.9,28,0.0 +12022,28,45.6,7,0.0 +12023,18,62.5,10,0.0 +12023,40,18.4,42,0.0 +12023,6,25,47,0.0 +12023,75,7.75,27,0.0 +12023,56,38,1,0.0 +12023,47,9.5,24,0.0 +12023,14,23.25,45,0.0 +12023,57,19.5,1,0.0 +12023,4,22,9,0.0 +12023,52,7,19,0.0 +12023,3,10,37,0.0 +12023,17,39,20,0.0 +12023,77,13,9,0.0 +12023,53,32.8,10,0.0 +12023,21,10,44,0.0 +12023,44,19.45,6,0.0 +12023,30,25.89,44,0.0 +12023,76,18,26,0.0 +12023,38,263.5,41,0.0 +12023,16,17.45,39,0.0 +12023,26,31.23,36,0.0 +12023,59,55,5,0.0 +12023,34,14,44,0.0 +12023,35,18,39,0.0 +12023,33,2.5,33,0.0 +12023,13,6,32,0.0 +12023,62,49.3,13,0.0 +12023,55,24,15,0.0 +12023,63,43.9,26,0.0 +12024,48,12.75,50,0.0 +12024,14,23.25,36,0.0 +12024,75,7.75,13,0.0 +12024,58,13.25,19,0.0 +12024,39,18,29,0.0 +12024,1,18,24,0.0 +12024,71,21.5,13,0.0 +12024,74,10,44,0.0 +12024,30,25.89,35,0.0 +12024,62,49.3,30,0.0 +12024,38,263.5,14,0.0 +12024,63,43.9,3,0.0 +12024,53,32.8,44,0.0 +12024,3,10,24,0.0 +12024,44,19.45,48,0.0 +12024,76,18,14,0.0 +12024,57,19.5,26,0.0 +12024,34,14,22,0.0 +12024,64,33.25,2,0.0 +12024,66,17,4,0.0 +12024,72,34.8,36,0.0 +12024,33,2.5,47,0.0 +12024,36,19,8,0.0 +12024,37,26,6,0.0 +12024,69,36,8,0.0 +12024,12,38,20,0.0 +12024,10,31,4,0.0 +12024,8,40,18,0.0 +12024,43,46,5,0.0 +12024,52,7,10,0.0 +12024,70,15,45,0.0 +12024,5,21.35,23,0.0 +12024,17,39,18,0.0 +12024,22,21,19,0.0 +12024,25,14,15,0.0 +12025,14,23.25,36,0.0 +12025,10,31,11,0.0 +12025,48,12.75,14,0.0 +12025,51,53,35,0.0 +12025,9,97,10,0.0 +12025,60,34,48,0.0 +12025,68,12.5,48,0.0 +12025,66,17,30,0.0 +12025,61,28.5,1,0.0 +12025,21,10,22,0.0 +12025,64,33.25,20,0.0 +12025,62,49.3,22,0.0 +12025,46,12,28,0.0 +12025,32,32,25,0.0 +12025,1,18,11,0.0 +12025,76,18,43,0.0 +12025,47,9.5,44,0.0 +12025,33,2.5,23,0.0 +12025,20,81,6,0.0 +12025,71,21.5,23,0.0 +12025,25,14,10,0.0 +12025,7,30,21,0.0 +12025,31,12.5,17,0.0 +12025,74,10,34,0.0 +12025,40,18.4,7,0.0 +12025,35,18,11,0.0 +12025,49,20,6,0.0 +12025,43,46,26,0.0 +12025,38,263.5,14,0.0 +12025,70,15,40,0.0 +12025,44,19.45,8,0.0 +12025,57,19.5,45,0.0 +12025,15,15.5,12,0.0 +12025,53,32.8,45,0.0 +12025,5,21.35,3,0.0 +12025,6,25,3,0.0 +12025,17,39,46,0.0 +12025,59,55,39,0.0 +12025,2,19,24,0.0 +12025,29,123.79,12,0.0 +12025,30,25.89,4,0.0 +12025,4,22,37,0.0 +12025,77,13,17,0.0 +12025,13,6,37,0.0 +12025,26,31.23,1,0.0 +12025,23,9,12,0.0 +12025,3,10,14,0.0 +12026,42,14,19,0.0 +12026,25,14,11,0.0 +12026,58,13.25,14,0.0 +12026,57,19.5,46,0.0 +12026,9,97,1,0.0 +12026,31,12.5,25,0.0 +12026,39,18,36,0.0 +12026,77,13,31,0.0 +12026,67,14,41,0.0 +12026,73,15,35,0.0 +12026,45,9.5,9,0.0 +12026,76,18,29,0.0 +12026,63,43.9,25,0.0 +12026,30,25.89,21,0.0 +12026,8,40,16,0.0 +12026,38,263.5,46,0.0 +12026,5,21.35,39,0.0 +12026,32,32,43,0.0 +12026,2,19,25,0.0 +12026,44,19.45,29,0.0 +12026,37,26,43,0.0 +12026,75,7.75,35,0.0 +12026,26,31.23,37,0.0 +12026,66,17,48,0.0 +12026,40,18.4,5,0.0 +12026,3,10,37,0.0 +12026,28,45.6,14,0.0 +12027,75,7.75,21,0.0 +12027,59,55,49,0.0 +12027,73,15,14,0.0 +12027,40,18.4,49,0.0 +12027,63,43.9,50,0.0 +12027,71,21.5,39,0.0 +12027,21,10,12,0.0 +12027,42,14,46,0.0 +12027,66,17,46,0.0 +12027,6,25,44,0.0 +12027,60,34,11,0.0 +12027,50,16.25,30,0.0 +12027,11,21,22,0.0 +12027,24,4.5,36,0.0 +12027,48,12.75,39,0.0 +12027,38,263.5,33,0.0 +12027,22,21,12,0.0 +12027,39,18,34,0.0 +12027,28,45.6,40,0.0 +12027,7,30,35,0.0 +12027,70,15,21,0.0 +12027,47,9.5,24,0.0 +12027,45,9.5,3,0.0 +12027,46,12,28,0.0 +12027,33,2.5,18,0.0 +12027,62,49.3,25,0.0 +12027,76,18,46,0.0 +12027,30,25.89,35,0.0 +12027,9,97,23,0.0 +12027,65,21.05,23,0.0 +12027,55,24,33,0.0 +12027,23,9,28,0.0 +12027,53,32.8,2,0.0 +12027,44,19.45,31,0.0 +12027,68,12.5,21,0.0 +12027,64,33.25,39,0.0 +12027,57,19.5,21,0.0 +12027,32,32,15,0.0 +12027,49,20,31,0.0 +12027,25,14,47,0.0 +12027,37,26,7,0.0 +12027,26,31.23,45,0.0 +12027,29,123.79,37,0.0 +12027,31,12.5,27,0.0 +12027,17,39,6,0.0 +12027,14,23.25,38,0.0 +12027,67,14,48,0.0 +12027,1,18,20,0.0 +12027,54,7.45,24,0.0 +12027,8,40,24,0.0 +12027,12,38,49,0.0 +12027,5,21.35,29,0.0 +12027,61,28.5,35,0.0 +12027,10,31,23,0.0 +12027,2,19,17,0.0 +12027,56,38,22,0.0 +12027,43,46,3,0.0 +12027,35,18,22,0.0 +12027,51,53,46,0.0 +12027,15,15.5,10,0.0 +12027,52,7,28,0.0 +12027,19,9.2,32,0.0 +12027,13,6,48,0.0 +12027,74,10,14,0.0 +12028,48,12.75,45,0.0 +12028,71,21.5,11,0.0 +12028,16,17.45,47,0.0 +12028,9,97,11,0.0 +12028,76,18,3,0.0 +12028,24,4.5,20,0.0 +12028,5,21.35,36,0.0 +12028,51,53,31,0.0 +12028,69,36,45,0.0 +12028,22,21,4,0.0 +12028,40,18.4,11,0.0 +12028,55,24,33,0.0 +12028,47,9.5,31,0.0 +12028,62,49.3,23,0.0 +12028,11,21,24,0.0 +12028,21,10,27,0.0 +12028,34,14,41,0.0 +12028,53,32.8,20,0.0 +12028,54,7.45,22,0.0 +12028,72,34.8,37,0.0 +12028,52,7,42,0.0 +12028,36,19,33,0.0 +12028,49,20,8,0.0 +12028,68,12.5,24,0.0 +12028,74,10,32,0.0 +12028,66,17,3,0.0 +12028,73,15,7,0.0 +12028,67,14,46,0.0 +12028,43,46,23,0.0 +12028,64,33.25,9,0.0 +12028,45,9.5,16,0.0 +12028,3,10,22,0.0 +12028,17,39,17,0.0 +12028,41,9.65,12,0.0 +12028,35,18,13,0.0 +12028,27,43.9,6,0.0 +12028,57,19.5,37,0.0 +12028,60,34,46,0.0 +12028,56,38,17,0.0 +12028,37,26,43,0.0 +12028,19,9.2,12,0.0 +12028,12,38,24,0.0 +12028,61,28.5,1,0.0 +12028,75,7.75,29,0.0 +12028,23,9,3,0.0 +12028,14,23.25,42,0.0 +12028,31,12.5,50,0.0 +12028,2,19,28,0.0 +12028,77,13,2,0.0 +12028,63,43.9,10,0.0 +12029,72,34.8,37,0.0 +12029,68,12.5,3,0.0 +12029,4,22,44,0.0 +12029,5,21.35,50,0.0 +12029,20,81,46,0.0 +12029,61,28.5,31,0.0 +12029,23,9,36,0.0 +12029,19,9.2,28,0.0 +12029,47,9.5,5,0.0 +12030,16,17.45,34,0.0 +12030,25,14,1,0.0 +12030,56,38,23,0.0 +12030,29,123.79,4,0.0 +12030,14,23.25,20,0.0 +12030,28,45.6,8,0.0 +12030,68,12.5,47,0.0 +12030,34,14,49,0.0 +12030,32,32,33,0.0 +12030,74,10,6,0.0 +12030,6,25,43,0.0 +12030,77,13,34,0.0 +12030,55,24,8,0.0 +12030,48,12.75,22,0.0 +12030,38,263.5,31,0.0 +12030,70,15,17,0.0 +12030,64,33.25,31,0.0 +12030,65,21.05,9,0.0 +12030,26,31.23,47,0.0 +12030,41,9.65,16,0.0 +12030,24,4.5,8,0.0 +12030,23,9,29,0.0 +12030,66,17,50,0.0 +12030,44,19.45,47,0.0 +12030,2,19,26,0.0 +12030,12,38,21,0.0 +12030,10,31,33,0.0 +12030,72,34.8,36,0.0 +12031,61,28.5,18,0.0 +12031,17,39,11,0.0 +12031,13,6,5,0.0 +12031,54,7.45,31,0.0 +12031,53,32.8,4,0.0 +12031,8,40,17,0.0 +12031,41,9.65,28,0.0 +12031,16,17.45,3,0.0 +12031,9,97,7,0.0 +12031,31,12.5,5,0.0 +12031,5,21.35,4,0.0 +12031,47,9.5,25,0.0 +12031,73,15,11,0.0 +12031,34,14,48,0.0 +12031,20,81,34,0.0 +12031,44,19.45,33,0.0 +12031,51,53,21,0.0 +12031,70,15,1,0.0 +12031,26,31.23,35,0.0 +12031,4,22,23,0.0 +12031,3,10,37,0.0 +12031,29,123.79,33,0.0 +12031,69,36,40,0.0 +12031,19,9.2,41,0.0 +12031,37,26,35,0.0 +12031,66,17,10,0.0 +12031,1,18,1,0.0 +12031,49,20,32,0.0 +12031,32,32,41,0.0 +12031,62,49.3,43,0.0 +12031,22,21,39,0.0 +12031,71,21.5,31,0.0 +12031,56,38,7,0.0 +12031,65,21.05,46,0.0 +12031,21,10,1,0.0 +12032,52,7,32,0.0 +12032,36,19,37,0.0 +12032,54,7.45,44,0.0 +12032,40,18.4,47,0.0 +12032,65,21.05,48,0.0 +12032,77,13,50,0.0 +12032,71,21.5,49,0.0 +12032,72,34.8,45,0.0 +12032,28,45.6,6,0.0 +12032,22,21,34,0.0 +12032,45,9.5,38,0.0 +12032,19,9.2,49,0.0 +12032,2,19,12,0.0 +12033,75,7.75,26,0.0 +12033,22,21,14,0.0 +12033,56,38,26,0.0 +12033,44,19.45,9,0.0 +12033,43,46,14,0.0 +12033,49,20,45,0.0 +12033,46,12,23,0.0 +12033,66,17,30,0.0 +12033,14,23.25,44,0.0 +12033,16,17.45,3,0.0 +12033,1,18,28,0.0 +12033,41,9.65,13,0.0 +12033,29,123.79,28,0.0 +12033,53,32.8,4,0.0 +12033,5,21.35,46,0.0 +12033,15,15.5,22,0.0 +12033,31,12.5,35,0.0 +12033,24,4.5,42,0.0 +12033,77,13,30,0.0 +12033,72,34.8,37,0.0 +12033,8,40,41,0.0 +12033,23,9,48,0.0 +12033,61,28.5,26,0.0 +12033,74,10,5,0.0 +12033,35,18,25,0.0 +12033,52,7,29,0.0 +12033,2,19,23,0.0 +12033,36,19,5,0.0 +12033,73,15,45,0.0 +12033,69,36,18,0.0 +12033,55,24,19,0.0 +12033,30,25.89,35,0.0 +12033,48,12.75,1,0.0 +12033,42,14,10,0.0 +12033,47,9.5,50,0.0 +12033,4,22,36,0.0 +12033,40,18.4,16,0.0 +12033,54,7.45,26,0.0 +12033,37,26,21,0.0 +12033,10,31,48,0.0 +12033,63,43.9,1,0.0 +12033,70,15,10,0.0 +12033,59,55,41,0.0 +12033,50,16.25,24,0.0 +12033,71,21.5,45,0.0 +12033,51,53,1,0.0 +12033,25,14,17,0.0 +12033,64,33.25,49,0.0 +12033,26,31.23,18,0.0 +12033,12,38,7,0.0 +12033,60,34,28,0.0 +12033,38,263.5,42,0.0 +12033,19,9.2,39,0.0 +12033,17,39,42,0.0 +12033,3,10,8,0.0 +12033,20,81,49,0.0 +12033,57,19.5,22,0.0 +12033,68,12.5,28,0.0 +12033,33,2.5,23,0.0 +12033,32,32,49,0.0 +12033,39,18,21,0.0 +12033,67,14,21,0.0 +12033,21,10,2,0.0 +12033,45,9.5,37,0.0 +12033,9,97,34,0.0 +12033,28,45.6,29,0.0 +12033,7,30,50,0.0 +12033,65,21.05,22,0.0 +12033,34,14,26,0.0 +12033,76,18,13,0.0 +12033,6,25,25,0.0 +12033,18,62.5,28,0.0 +12033,62,49.3,15,0.0 +12033,27,43.9,23,0.0 +12033,58,13.25,2,0.0 +12034,10,31,21,0.0 +12034,60,34,29,0.0 +12034,19,9.2,14,0.0 +12034,54,7.45,45,0.0 +12034,53,32.8,9,0.0 +12034,41,9.65,32,0.0 +12034,13,6,15,0.0 +12034,30,25.89,46,0.0 +12034,58,13.25,5,0.0 +12034,34,14,23,0.0 +12034,5,21.35,22,0.0 +12034,18,62.5,14,0.0 +12034,32,32,18,0.0 +12034,12,38,40,0.0 +12034,33,2.5,30,0.0 +12034,31,12.5,1,0.0 +12034,6,25,33,0.0 +12034,52,7,34,0.0 +12034,72,34.8,35,0.0 +12034,17,39,20,0.0 +12034,25,14,27,0.0 +12034,15,15.5,39,0.0 +12034,62,49.3,46,0.0 +12034,55,24,19,0.0 +12034,70,15,3,0.0 +12034,26,31.23,32,0.0 +12034,16,17.45,27,0.0 +12034,76,18,16,0.0 +12034,57,19.5,17,0.0 +12034,61,28.5,30,0.0 +12034,47,9.5,28,0.0 +12034,29,123.79,18,0.0 +12034,45,9.5,2,0.0 +12034,28,45.6,6,0.0 +12034,27,43.9,46,0.0 +12034,22,21,23,0.0 +12034,46,12,36,0.0 +12034,14,23.25,41,0.0 +12035,69,36,8,0.0 +12035,38,263.5,48,0.0 +12035,55,24,44,0.0 +12035,70,15,31,0.0 +12035,23,9,27,0.0 +12035,24,4.5,38,0.0 +12035,33,2.5,15,0.0 +12035,41,9.65,29,0.0 +12035,44,19.45,31,0.0 +12035,35,18,28,0.0 +12035,22,21,31,0.0 +12035,36,19,33,0.0 +12035,45,9.5,27,0.0 +12035,77,13,9,0.0 +12035,47,9.5,8,0.0 +12035,62,49.3,2,0.0 +12035,57,19.5,29,0.0 +12035,15,15.5,20,0.0 +12035,54,7.45,7,0.0 +12035,74,10,9,0.0 +12035,68,12.5,17,0.0 +12035,28,45.6,14,0.0 +12035,13,6,35,0.0 +12035,50,16.25,28,0.0 +12035,5,21.35,44,0.0 +12035,71,21.5,49,0.0 +12035,12,38,1,0.0 +12035,39,18,25,0.0 +12035,8,40,18,0.0 +12035,59,55,46,0.0 +12035,34,14,39,0.0 +12035,30,25.89,44,0.0 +12035,40,18.4,9,0.0 +12035,19,9.2,27,0.0 +12035,46,12,36,0.0 +12035,65,21.05,43,0.0 +12035,37,26,17,0.0 +12035,27,43.9,13,0.0 +12035,42,14,1,0.0 +12035,29,123.79,6,0.0 +12035,75,7.75,29,0.0 +12035,43,46,45,0.0 +12035,48,12.75,47,0.0 +12035,7,30,37,0.0 +12035,2,19,38,0.0 +12035,3,10,32,0.0 +12035,49,20,42,0.0 +12035,1,18,43,0.0 +12035,67,14,35,0.0 +12035,11,21,3,0.0 +12035,61,28.5,35,0.0 +12035,26,31.23,29,0.0 +12035,17,39,45,0.0 +12035,63,43.9,17,0.0 +12035,25,14,14,0.0 +12035,6,25,46,0.0 +12035,32,32,43,0.0 +12035,31,12.5,41,0.0 +12035,76,18,21,0.0 +12035,66,17,8,0.0 +12035,20,81,25,0.0 +12035,52,7,40,0.0 +12036,75,7.75,19,0.0 +12036,63,43.9,31,0.0 +12036,68,12.5,26,0.0 +12036,48,12.75,41,0.0 +12036,30,25.89,16,0.0 +12036,20,81,2,0.0 +12036,45,9.5,34,0.0 +12036,32,32,13,0.0 +12036,53,32.8,45,0.0 +12036,19,9.2,23,0.0 +12036,58,13.25,10,0.0 +12036,59,55,21,0.0 +12036,27,43.9,2,0.0 +12036,3,10,1,0.0 +12036,1,18,38,0.0 +12036,34,14,13,0.0 +12036,35,18,48,0.0 +12036,7,30,35,0.0 +12036,5,21.35,11,0.0 +12036,65,21.05,21,0.0 +12036,50,16.25,37,0.0 +12036,69,36,15,0.0 +12036,64,33.25,50,0.0 +12036,60,34,7,0.0 +12036,22,21,42,0.0 +12036,37,26,10,0.0 +12036,44,19.45,9,0.0 +12036,24,4.5,14,0.0 +12036,6,25,20,0.0 +12036,76,18,27,0.0 +12036,13,6,21,0.0 +12036,12,38,26,0.0 +12036,39,18,13,0.0 +12036,71,21.5,12,0.0 +12036,51,53,4,0.0 +12036,49,20,6,0.0 +12036,40,18.4,41,0.0 +12036,29,123.79,30,0.0 +12036,18,62.5,13,0.0 +12036,61,28.5,46,0.0 +12036,2,19,4,0.0 +12036,21,10,49,0.0 +12036,36,19,13,0.0 +12036,25,14,48,0.0 +12036,62,49.3,44,0.0 +12036,77,13,8,0.0 +12036,42,14,35,0.0 +12036,56,38,15,0.0 +12036,55,24,13,0.0 +12036,11,21,45,0.0 +12036,67,14,30,0.0 +12036,33,2.5,5,0.0 +12036,26,31.23,45,0.0 +12036,23,9,12,0.0 +12036,8,40,40,0.0 +12036,38,263.5,22,0.0 +12036,73,15,28,0.0 +12036,41,9.65,46,0.0 +12036,10,31,38,0.0 +12036,16,17.45,50,0.0 +12036,4,22,23,0.0 +12036,17,39,2,0.0 +12036,47,9.5,6,0.0 +12036,28,45.6,14,0.0 +12036,70,15,29,0.0 +12036,9,97,2,0.0 +12036,66,17,13,0.0 +12036,74,10,26,0.0 +12036,72,34.8,42,0.0 +12036,52,7,5,0.0 +12036,54,7.45,20,0.0 +12036,57,19.5,45,0.0 +12036,43,46,29,0.0 +12036,15,15.5,21,0.0 +12036,31,12.5,2,0.0 +12036,14,23.25,10,0.0 +12036,46,12,39,0.0 +12037,66,17,7,0.0 +12037,43,46,15,0.0 +12037,68,12.5,26,0.0 +12037,67,14,49,0.0 +12037,35,18,14,0.0 +12037,2,19,2,0.0 +12037,74,10,21,0.0 +12037,46,12,16,0.0 +12037,14,23.25,27,0.0 +12037,41,9.65,27,0.0 +12037,15,15.5,12,0.0 +12037,40,18.4,11,0.0 +12037,10,31,44,0.0 +12037,52,7,17,0.0 +12037,63,43.9,13,0.0 +12037,72,34.8,39,0.0 +12037,1,18,22,0.0 +12037,30,25.89,47,0.0 +12037,17,39,27,0.0 +12037,75,7.75,19,0.0 +12037,64,33.25,3,0.0 +12037,20,81,17,0.0 +12037,54,7.45,48,0.0 +12037,44,19.45,39,0.0 +12037,9,97,35,0.0 +12037,51,53,39,0.0 +12037,60,34,44,0.0 +12037,76,18,30,0.0 +12037,65,21.05,48,0.0 +12037,21,10,5,0.0 +12037,19,9.2,49,0.0 +12037,71,21.5,8,0.0 +12037,62,49.3,1,0.0 +12037,28,45.6,48,0.0 +12037,31,12.5,22,0.0 +12037,69,36,31,0.0 +12037,53,32.8,29,0.0 +12037,11,21,32,0.0 +12037,26,31.23,20,0.0 +12037,25,14,14,0.0 +12037,24,4.5,1,0.0 +12037,5,21.35,43,0.0 +12037,23,9,43,0.0 +12037,73,15,50,0.0 +12037,8,40,25,0.0 +12037,42,14,38,0.0 +12037,50,16.25,27,0.0 +12037,45,9.5,23,0.0 +12037,49,20,26,0.0 +12037,37,26,3,0.0 +12037,70,15,14,0.0 +12037,4,22,17,0.0 +12037,57,19.5,46,0.0 +12037,36,19,41,0.0 +12037,48,12.75,31,0.0 +12037,18,62.5,22,0.0 +12037,58,13.25,37,0.0 +12037,38,263.5,21,0.0 +12037,56,38,29,0.0 +12037,27,43.9,3,0.0 +12037,33,2.5,23,0.0 +12037,39,18,4,0.0 +12037,3,10,28,0.0 +12037,6,25,38,0.0 +12037,13,6,20,0.0 +12037,61,28.5,44,0.0 +12037,22,21,36,0.0 +12037,7,30,4,0.0 +12038,18,62.5,8,0.0 +12038,6,25,7,0.0 +12038,37,26,26,0.0 +12038,22,21,47,0.0 +12038,32,32,49,0.0 +12038,4,22,38,0.0 +12038,5,21.35,17,0.0 +12038,27,43.9,28,0.0 +12038,3,10,23,0.0 +12038,64,33.25,19,0.0 +12038,34,14,49,0.0 +12038,55,24,25,0.0 +12038,60,34,1,0.0 +12038,45,9.5,49,0.0 +12038,77,13,2,0.0 +12038,10,31,50,0.0 +12038,53,32.8,18,0.0 +12038,66,17,11,0.0 +12038,65,21.05,47,0.0 +12038,74,10,37,0.0 +12038,2,19,50,0.0 +12038,36,19,44,0.0 +12038,48,12.75,31,0.0 +12038,46,12,6,0.0 +12038,35,18,44,0.0 +12038,59,55,31,0.0 +12038,69,36,28,0.0 +12038,57,19.5,36,0.0 +12038,23,9,37,0.0 +12038,29,123.79,19,0.0 +12038,67,14,22,0.0 +12038,12,38,41,0.0 +12038,13,6,43,0.0 +12038,54,7.45,17,0.0 +12038,28,45.6,3,0.0 +12038,30,25.89,7,0.0 +12038,19,9.2,22,0.0 +12038,17,39,45,0.0 +12038,41,9.65,8,0.0 +12038,11,21,11,0.0 +12038,43,46,5,0.0 +12038,76,18,21,0.0 +12038,7,30,27,0.0 +12038,38,263.5,13,0.0 +12038,71,21.5,33,0.0 +12038,33,2.5,33,0.0 +12038,21,10,39,0.0 +12038,9,97,48,0.0 +12038,52,7,13,0.0 +12038,40,18.4,33,0.0 +12039,12,38,40,0.0 +12039,51,53,30,0.0 +12039,64,33.25,44,0.0 +12040,11,21,10,0.0 +12040,6,25,24,0.0 +12040,54,7.45,5,0.0 +12040,63,43.9,7,0.0 +12040,66,17,33,0.0 +12040,58,13.25,33,0.0 +12040,31,12.5,33,0.0 +12040,59,55,47,0.0 +12040,73,15,40,0.0 +12040,9,97,2,0.0 +12040,55,24,34,0.0 +12040,41,9.65,28,0.0 +12040,37,26,11,0.0 +12040,35,18,30,0.0 +12040,34,14,15,0.0 +12040,47,9.5,50,0.0 +12040,12,38,9,0.0 +12040,38,263.5,17,0.0 +12040,67,14,9,0.0 +12040,56,38,23,0.0 +12040,74,10,9,0.0 +12040,69,36,27,0.0 +12040,40,18.4,21,0.0 +12040,8,40,28,0.0 +12040,14,23.25,20,0.0 +12040,17,39,18,0.0 +12040,42,14,26,0.0 +12040,3,10,22,0.0 +12040,20,81,32,0.0 +12040,75,7.75,8,0.0 +12040,70,15,13,0.0 +12040,16,17.45,18,0.0 +12040,44,19.45,31,0.0 +12040,49,20,5,0.0 +12040,23,9,7,0.0 +12040,2,19,39,0.0 +12040,25,14,47,0.0 +12040,5,21.35,21,0.0 +12040,64,33.25,14,0.0 +12040,50,16.25,7,0.0 +12040,29,123.79,10,0.0 +12040,57,19.5,29,0.0 +12040,19,9.2,4,0.0 +12040,21,10,2,0.0 +12040,15,15.5,22,0.0 +12040,18,62.5,34,0.0 +12040,24,4.5,16,0.0 +12040,22,21,1,0.0 +12040,13,6,47,0.0 +12040,45,9.5,38,0.0 +12040,39,18,18,0.0 +12040,10,31,50,0.0 +12040,60,34,13,0.0 +12040,4,22,50,0.0 +12041,41,9.65,48,0.0 +12041,71,21.5,10,0.0 +12041,29,123.79,20,0.0 +12041,23,9,14,0.0 +12041,46,12,14,0.0 +12041,68,12.5,34,0.0 +12041,35,18,26,0.0 +12041,52,7,1,0.0 +12041,70,15,34,0.0 +12041,11,21,18,0.0 +12041,42,14,47,0.0 +12041,22,21,17,0.0 +12041,16,17.45,17,0.0 +12041,66,17,11,0.0 +12041,74,10,20,0.0 +12041,17,39,19,0.0 +12041,65,21.05,48,0.0 +12041,39,18,40,0.0 +12041,77,13,26,0.0 +12041,38,263.5,43,0.0 +12041,47,9.5,15,0.0 +12041,10,31,49,0.0 +12041,15,15.5,10,0.0 +12042,45,9.5,22,0.0 +12042,41,9.65,3,0.0 +12042,2,19,24,0.0 +12042,9,97,35,0.0 +12042,56,38,2,0.0 +12042,4,22,47,0.0 +12042,33,2.5,19,0.0 +12042,49,20,36,0.0 +12042,5,21.35,31,0.0 +12042,53,32.8,15,0.0 +12042,21,10,12,0.0 +12042,73,15,36,0.0 +12042,19,9.2,17,0.0 +12042,46,12,41,0.0 +12042,43,46,15,0.0 +12042,16,17.45,21,0.0 +12042,34,14,7,0.0 +12042,23,9,40,0.0 +12042,67,14,22,0.0 +12042,22,21,4,0.0 +12042,30,25.89,17,0.0 +12042,28,45.6,24,0.0 +12042,50,16.25,24,0.0 +12042,75,7.75,36,0.0 +12042,65,21.05,44,0.0 +12042,15,15.5,19,0.0 +12042,68,12.5,15,0.0 +12042,54,7.45,4,0.0 +12042,55,24,4,0.0 +12042,52,7,27,0.0 +12042,14,23.25,38,0.0 +12042,64,33.25,20,0.0 +12042,11,21,30,0.0 +12042,32,32,37,0.0 +12042,69,36,13,0.0 +12042,61,28.5,10,0.0 +12042,25,14,1,0.0 +12042,60,34,28,0.0 +12042,3,10,20,0.0 +12042,51,53,3,0.0 +12042,77,13,27,0.0 +12042,66,17,49,0.0 +12042,70,15,49,0.0 +12042,44,19.45,20,0.0 +12042,17,39,41,0.0 +12042,58,13.25,33,0.0 +12042,1,18,9,0.0 +12042,47,9.5,22,0.0 +12042,26,31.23,26,0.0 +12042,6,25,15,0.0 +12042,20,81,21,0.0 +12042,7,30,30,0.0 +12042,29,123.79,39,0.0 +12042,63,43.9,16,0.0 +12042,76,18,49,0.0 +12042,8,40,33,0.0 +12042,48,12.75,46,0.0 +12042,18,62.5,11,0.0 +12042,35,18,24,0.0 +12042,71,21.5,10,0.0 +12042,39,18,25,0.0 +12042,12,38,11,0.0 +12042,57,19.5,32,0.0 +12042,36,19,16,0.0 +12042,74,10,9,0.0 +12043,11,21,16,0.0 +12043,17,39,25,0.0 +12043,21,10,29,0.0 +12043,75,7.75,1,0.0 +12043,1,18,23,0.0 +12043,46,12,15,0.0 +12043,55,24,15,0.0 +12043,20,81,14,0.0 +12043,35,18,50,0.0 +12043,66,17,35,0.0 +12043,54,7.45,48,0.0 +12043,57,19.5,47,0.0 +12043,49,20,5,0.0 +12043,51,53,28,0.0 +12043,19,9.2,16,0.0 +12043,76,18,31,0.0 +12043,37,26,17,0.0 +12043,36,19,19,0.0 +12043,68,12.5,45,0.0 +12043,40,18.4,43,0.0 +12043,34,14,37,0.0 +12043,43,46,9,0.0 +12043,25,14,37,0.0 +12043,10,31,22,0.0 +12043,56,38,41,0.0 +12043,63,43.9,6,0.0 +12043,39,18,27,0.0 +12043,52,7,3,0.0 +12043,32,32,17,0.0 +12043,31,12.5,9,0.0 +12043,7,30,50,0.0 +12043,18,62.5,41,0.0 +12043,15,15.5,34,0.0 +12043,4,22,35,0.0 +12043,16,17.45,46,0.0 +12043,72,34.8,23,0.0 +12043,70,15,28,0.0 +12043,42,14,35,0.0 +12043,23,9,33,0.0 +12043,13,6,25,0.0 +12043,67,14,40,0.0 +12043,47,9.5,9,0.0 +12043,33,2.5,38,0.0 +12043,27,43.9,25,0.0 +12043,69,36,9,0.0 +12043,38,263.5,8,0.0 +12043,5,21.35,9,0.0 +12043,41,9.65,8,0.0 +12043,9,97,23,0.0 +12043,28,45.6,23,0.0 +12044,37,26,49,0.0 +12044,26,31.23,1,0.0 +12044,58,13.25,48,0.0 +12044,59,55,43,0.0 +12044,38,263.5,20,0.0 +12044,66,17,37,0.0 +12044,61,28.5,6,0.0 +12044,43,46,13,0.0 +12044,56,38,14,0.0 +12044,44,19.45,18,0.0 +12044,6,25,32,0.0 +12044,3,10,29,0.0 +12044,51,53,5,0.0 +12044,57,19.5,24,0.0 +12044,32,32,19,0.0 +12044,15,15.5,41,0.0 +12044,28,45.6,10,0.0 +12044,27,43.9,40,0.0 +12044,71,21.5,22,0.0 +12044,46,12,22,0.0 +12044,21,10,3,0.0 +12044,49,20,49,0.0 +12044,76,18,46,0.0 +12044,23,9,29,0.0 +12044,9,97,10,0.0 +12044,10,31,3,0.0 +12044,14,23.25,4,0.0 +12044,64,33.25,10,0.0 +12044,69,36,47,0.0 +12044,36,19,19,0.0 +12044,74,10,29,0.0 +12044,29,123.79,42,0.0 +12044,30,25.89,5,0.0 +12044,41,9.65,40,0.0 +12044,54,7.45,43,0.0 +12044,48,12.75,24,0.0 +12044,52,7,18,0.0 +12044,67,14,23,0.0 +12044,13,6,26,0.0 +12044,35,18,12,0.0 +12044,53,32.8,10,0.0 +12044,40,18.4,40,0.0 +12044,17,39,47,0.0 +12044,2,19,11,0.0 +12044,5,21.35,44,0.0 +12044,42,14,25,0.0 +12044,8,40,31,0.0 +12044,24,4.5,41,0.0 +12044,60,34,1,0.0 +12044,7,30,16,0.0 +12044,18,62.5,37,0.0 +12044,4,22,2,0.0 +12044,63,43.9,36,0.0 +12044,33,2.5,32,0.0 +12044,62,49.3,17,0.0 +12044,11,21,16,0.0 +12044,73,15,34,0.0 +12044,77,13,36,0.0 +12044,34,14,45,0.0 +12044,70,15,4,0.0 +12044,39,18,8,0.0 +12045,70,15,24,0.0 +12045,21,10,14,0.0 +12045,13,6,38,0.0 +12045,72,34.8,20,0.0 +12045,49,20,21,0.0 +12045,14,23.25,21,0.0 +12045,39,18,42,0.0 +12045,4,22,45,0.0 +12045,22,21,36,0.0 +12045,51,53,22,0.0 +12045,45,9.5,1,0.0 +12045,76,18,5,0.0 +12045,54,7.45,33,0.0 +12045,3,10,14,0.0 +12045,7,30,22,0.0 +12045,38,263.5,50,0.0 +12045,74,10,33,0.0 +12045,17,39,7,0.0 +12045,59,55,12,0.0 +12045,5,21.35,23,0.0 +12045,33,2.5,2,0.0 +12045,28,45.6,35,0.0 +12045,32,32,20,0.0 +12045,2,19,34,0.0 +12045,53,32.8,47,0.0 +12045,30,25.89,50,0.0 +12045,12,38,25,0.0 +12045,6,25,49,0.0 +12045,52,7,46,0.0 +12045,47,9.5,27,0.0 +12045,75,7.75,47,0.0 +12045,50,16.25,10,0.0 +12045,58,13.25,16,0.0 +12045,27,43.9,45,0.0 +12045,40,18.4,7,0.0 +12045,62,49.3,22,0.0 +12045,63,43.9,3,0.0 +12045,23,9,10,0.0 +12046,63,43.9,46,0.0 +12046,18,62.5,3,0.0 +12046,36,19,45,0.0 +12046,9,97,19,0.0 +12046,54,7.45,15,0.0 +12046,34,14,18,0.0 +12046,55,24,38,0.0 +12046,76,18,10,0.0 +12046,32,32,40,0.0 +12046,15,15.5,40,0.0 +12046,42,14,36,0.0 +12046,58,13.25,48,0.0 +12046,16,17.45,21,0.0 +12046,13,6,27,0.0 +12046,47,9.5,50,0.0 +12046,11,21,41,0.0 +12046,29,123.79,10,0.0 +12046,77,13,38,0.0 +12046,73,15,40,0.0 +12046,31,12.5,45,0.0 +12046,75,7.75,27,0.0 +12046,60,34,27,0.0 +12046,57,19.5,2,0.0 +12046,50,16.25,48,0.0 +12046,21,10,44,0.0 +12046,49,20,34,0.0 +12046,64,33.25,13,0.0 +12046,23,9,32,0.0 +12046,17,39,38,0.0 +12046,41,9.65,41,0.0 +12046,74,10,3,0.0 +12046,61,28.5,14,0.0 +12046,48,12.75,20,0.0 +12046,71,21.5,6,0.0 +12046,43,46,20,0.0 +12046,72,34.8,40,0.0 +12046,7,30,17,0.0 +12046,14,23.25,12,0.0 +12046,1,18,2,0.0 +12046,30,25.89,19,0.0 +12046,62,49.3,16,0.0 +12046,28,45.6,48,0.0 +12046,3,10,38,0.0 +12046,8,40,25,0.0 +12046,45,9.5,37,0.0 +12046,2,19,20,0.0 +12046,70,15,1,0.0 +12046,38,263.5,31,0.0 +12046,37,26,28,0.0 +12046,67,14,37,0.0 +12046,66,17,44,0.0 +12046,68,12.5,47,0.0 +12046,35,18,39,0.0 +12046,10,31,44,0.0 +12046,4,22,13,0.0 +12046,65,21.05,24,0.0 +12046,56,38,2,0.0 +12046,46,12,8,0.0 +12046,26,31.23,37,0.0 +12046,24,4.5,49,0.0 +12046,52,7,32,0.0 +12047,29,123.79,28,0.0 +12047,14,23.25,50,0.0 +12047,5,21.35,23,0.0 +12047,63,43.9,47,0.0 +12047,21,10,17,0.0 +12047,41,9.65,5,0.0 +12047,59,55,25,0.0 +12047,48,12.75,5,0.0 +12047,1,18,11,0.0 +12047,67,14,43,0.0 +12047,50,16.25,21,0.0 +12047,3,10,28,0.0 +12047,61,28.5,50,0.0 +12047,46,12,1,0.0 +12047,18,62.5,16,0.0 +12047,36,19,23,0.0 +12047,31,12.5,39,0.0 +12047,47,9.5,3,0.0 +12047,17,39,49,0.0 +12047,60,34,27,0.0 +12047,74,10,45,0.0 +12047,55,24,35,0.0 +12047,45,9.5,22,0.0 +12047,23,9,19,0.0 +12047,49,20,3,0.0 +12047,51,53,32,0.0 +12047,32,32,6,0.0 +12047,76,18,46,0.0 +12047,25,14,28,0.0 +12047,44,19.45,24,0.0 +12048,45,9.5,37,0.0 +12048,13,6,16,0.0 +12048,54,7.45,49,0.0 +12048,37,26,39,0.0 +12048,21,10,44,0.0 +12048,6,25,35,0.0 +12048,40,18.4,8,0.0 +12048,35,18,4,0.0 +12048,59,55,43,0.0 +12048,34,14,38,0.0 +12048,65,21.05,36,0.0 +12048,72,34.8,21,0.0 +12048,25,14,40,0.0 +12048,9,97,37,0.0 +12048,4,22,2,0.0 +12048,39,18,11,0.0 +12048,5,21.35,21,0.0 +12048,33,2.5,5,0.0 +12048,69,36,32,0.0 +12048,32,32,21,0.0 +12048,48,12.75,27,0.0 +12048,50,16.25,20,0.0 +12049,40,18.4,12,0.0 +12049,48,12.75,17,0.0 +12049,67,14,17,0.0 +12049,41,9.65,21,0.0 +12049,54,7.45,45,0.0 +12049,17,39,7,0.0 +12049,65,21.05,40,0.0 +12049,10,31,32,0.0 +12050,46,12,48,0.0 +12050,56,38,6,0.0 +12050,66,17,15,0.0 +12050,41,9.65,36,0.0 +12050,73,15,3,0.0 +12050,14,23.25,32,0.0 +12050,23,9,44,0.0 +12050,65,21.05,4,0.0 +12050,64,33.25,31,0.0 +12050,7,30,49,0.0 +12050,32,32,10,0.0 +12050,52,7,32,0.0 +12050,44,19.45,49,0.0 +12050,47,9.5,4,0.0 +12050,45,9.5,41,0.0 +12050,57,19.5,27,0.0 +12050,51,53,22,0.0 +12050,69,36,11,0.0 +12050,28,45.6,35,0.0 +12050,11,21,6,0.0 +12050,61,28.5,17,0.0 +12050,29,123.79,31,0.0 +12050,35,18,43,0.0 +12050,49,20,12,0.0 +12050,21,10,38,0.0 +12050,67,14,10,0.0 +12050,58,13.25,36,0.0 +12050,76,18,49,0.0 +12050,55,24,49,0.0 +12050,1,18,30,0.0 +12050,18,62.5,6,0.0 +12050,8,40,49,0.0 +12050,37,26,33,0.0 +12050,2,19,21,0.0 +12050,48,12.75,14,0.0 +12050,9,97,44,0.0 +12050,77,13,47,0.0 +12050,19,9.2,1,0.0 +12050,17,39,7,0.0 +12050,33,2.5,32,0.0 +12050,60,34,19,0.0 +12050,30,25.89,2,0.0 +12050,4,22,44,0.0 +12050,72,34.8,9,0.0 +12050,13,6,19,0.0 +12050,53,32.8,29,0.0 +12050,25,14,37,0.0 +12050,62,49.3,12,0.0 +12050,68,12.5,1,0.0 +12050,54,7.45,27,0.0 +12050,70,15,27,0.0 +12050,22,21,42,0.0 +12050,24,4.5,44,0.0 +12050,31,12.5,18,0.0 +12050,71,21.5,20,0.0 +12050,20,81,37,0.0 +12050,63,43.9,8,0.0 +12050,12,38,11,0.0 +12050,39,18,18,0.0 +12050,27,43.9,42,0.0 +12050,59,55,30,0.0 +12050,74,10,6,0.0 +12050,75,7.75,30,0.0 +12051,46,12,33,0.0 +12051,44,19.45,44,0.0 +12051,41,9.65,31,0.0 +12051,60,34,26,0.0 +12051,49,20,46,0.0 +12051,57,19.5,17,0.0 +12051,28,45.6,18,0.0 +12051,58,13.25,36,0.0 +12051,39,18,24,0.0 +12051,31,12.5,5,0.0 +12051,36,19,40,0.0 +12051,50,16.25,32,0.0 +12051,37,26,21,0.0 +12051,3,10,35,0.0 +12051,74,10,10,0.0 +12051,61,28.5,12,0.0 +12051,26,31.23,39,0.0 +12051,11,21,42,0.0 +12051,20,81,30,0.0 +12051,38,263.5,44,0.0 +12051,59,55,1,0.0 +12051,69,36,41,0.0 +12051,67,14,11,0.0 +12051,65,21.05,29,0.0 +12051,25,14,41,0.0 +12051,29,123.79,10,0.0 +12051,7,30,46,0.0 +12051,17,39,46,0.0 +12051,70,15,10,0.0 +12051,75,7.75,49,0.0 +12051,35,18,37,0.0 +12051,55,24,38,0.0 +12051,53,32.8,12,0.0 +12051,8,40,22,0.0 +12051,66,17,36,0.0 +12051,63,43.9,40,0.0 +12051,73,15,9,0.0 +12051,64,33.25,37,0.0 +12051,19,9.2,48,0.0 +12051,6,25,41,0.0 +12051,54,7.45,31,0.0 +12051,10,31,26,0.0 +12051,12,38,36,0.0 +12051,68,12.5,47,0.0 +12051,76,18,9,0.0 +12051,34,14,42,0.0 +12051,48,12.75,25,0.0 +12051,16,17.45,43,0.0 +12051,9,97,25,0.0 +12051,18,62.5,27,0.0 +12051,14,23.25,9,0.0 +12051,72,34.8,42,0.0 +12051,2,19,3,0.0 +12051,22,21,23,0.0 +12051,15,15.5,6,0.0 +12051,62,49.3,32,0.0 +12051,24,4.5,7,0.0 +12052,43,46,17,0.0 +12052,6,25,49,0.0 +12052,38,263.5,41,0.0 +12052,70,15,16,0.0 +12052,4,22,31,0.0 +12052,62,49.3,40,0.0 +12052,5,21.35,8,0.0 +12052,58,13.25,16,0.0 +12052,48,12.75,23,0.0 +12052,49,20,23,0.0 +12052,71,21.5,26,0.0 +12052,69,36,49,0.0 +12052,44,19.45,24,0.0 +12052,36,19,10,0.0 +12052,63,43.9,21,0.0 +12052,2,19,45,0.0 +12052,50,16.25,48,0.0 +12052,67,14,16,0.0 +12052,68,12.5,46,0.0 +12052,8,40,19,0.0 +12052,27,43.9,37,0.0 +12052,64,33.25,37,0.0 +12052,65,21.05,36,0.0 +12052,18,62.5,20,0.0 +12052,41,9.65,42,0.0 +12052,40,18.4,30,0.0 +12052,22,21,27,0.0 +12053,63,43.9,44,0.0 +12053,12,38,48,0.0 +12053,25,14,4,0.0 +12053,71,21.5,34,0.0 +12053,34,14,17,0.0 +12053,27,43.9,20,0.0 +12053,48,12.75,11,0.0 +12053,9,97,18,0.0 +12053,36,19,30,0.0 +12053,57,19.5,39,0.0 +12053,38,263.5,24,0.0 +12053,35,18,16,0.0 +12053,67,14,8,0.0 +12053,2,19,42,0.0 +12053,49,20,11,0.0 +12053,30,25.89,13,0.0 +12053,56,38,33,0.0 +12053,17,39,5,0.0 +12053,39,18,2,0.0 +12054,44,19.45,43,0.0 +12054,18,62.5,50,0.0 +12054,32,32,50,0.0 +12054,65,21.05,33,0.0 +12054,62,49.3,44,0.0 +12054,49,20,46,0.0 +12054,23,9,2,0.0 +12054,7,30,29,0.0 +12054,63,43.9,34,0.0 +12054,31,12.5,43,0.0 +12054,56,38,30,0.0 +12054,28,45.6,31,0.0 +12054,51,53,15,0.0 +12054,20,81,44,0.0 +12054,17,39,12,0.0 +12054,26,31.23,14,0.0 +12054,36,19,13,0.0 +12054,13,6,36,0.0 +12054,64,33.25,8,0.0 +12054,66,17,14,0.0 +12054,48,12.75,32,0.0 +12054,9,97,18,0.0 +12055,77,13,47,0.0 +12055,50,16.25,46,0.0 +12055,35,18,22,0.0 +12055,38,263.5,36,0.0 +12055,36,19,10,0.0 +12055,23,9,36,0.0 +12055,53,32.8,25,0.0 +12055,42,14,45,0.0 +12055,31,12.5,16,0.0 +12055,74,10,35,0.0 +12055,7,30,4,0.0 +12055,20,81,32,0.0 +12055,11,21,23,0.0 +12055,17,39,3,0.0 +12055,21,10,6,0.0 +12055,52,7,13,0.0 +12055,6,25,22,0.0 +12055,56,38,7,0.0 +12055,51,53,5,0.0 +12055,44,19.45,27,0.0 +12055,32,32,9,0.0 +12055,57,19.5,12,0.0 +12055,59,55,43,0.0 +12055,70,15,38,0.0 +12055,2,19,3,0.0 +12055,34,14,20,0.0 +12055,13,6,10,0.0 +12055,47,9.5,35,0.0 +12055,18,62.5,41,0.0 +12055,69,36,11,0.0 +12055,30,25.89,31,0.0 +12055,67,14,31,0.0 +12056,40,18.4,44,0.0 +12056,59,55,4,0.0 +12056,33,2.5,9,0.0 +12056,76,18,45,0.0 +12056,43,46,24,0.0 +12056,26,31.23,38,0.0 +12056,6,25,45,0.0 +12056,18,62.5,33,0.0 +12056,70,15,15,0.0 +12056,37,26,13,0.0 +12056,61,28.5,46,0.0 +12056,36,19,30,0.0 +12056,66,17,29,0.0 +12056,19,9.2,49,0.0 +12056,9,97,5,0.0 +12056,5,21.35,7,0.0 +12056,75,7.75,20,0.0 +12056,60,34,46,0.0 +12056,69,36,35,0.0 +12056,48,12.75,29,0.0 +12056,56,38,36,0.0 +12056,72,34.8,50,0.0 +12056,7,30,24,0.0 +12056,45,9.5,46,0.0 +12057,62,49.3,13,0.0 +12057,59,55,50,0.0 +12057,51,53,17,0.0 +12057,26,31.23,6,0.0 +12057,50,16.25,22,0.0 +12057,44,19.45,6,0.0 +12057,73,15,43,0.0 +12057,25,14,9,0.0 +12057,49,20,16,0.0 +12057,4,22,20,0.0 +12057,56,38,1,0.0 +12057,72,34.8,15,0.0 +12057,68,12.5,15,0.0 +12058,59,55,38,0.0 +12058,66,17,21,0.0 +12059,17,39,44,0.0 +12059,39,18,48,0.0 +12059,9,97,26,0.0 +12059,3,10,30,0.0 +12059,67,14,33,0.0 +12059,6,25,7,0.0 +12059,51,53,1,0.0 +12059,53,32.8,47,0.0 +12059,43,46,38,0.0 +12059,58,13.25,1,0.0 +12059,47,9.5,17,0.0 +12059,69,36,48,0.0 +12059,73,15,1,0.0 +12059,34,14,40,0.0 +12059,63,43.9,8,0.0 +12059,75,7.75,25,0.0 +12059,70,15,6,0.0 +12059,50,16.25,42,0.0 +12060,13,6,49,0.0 +12060,56,38,12,0.0 +12060,58,13.25,36,0.0 +12060,53,32.8,23,0.0 +12060,32,32,18,0.0 +12060,62,49.3,36,0.0 +12060,64,33.25,27,0.0 +12060,59,55,29,0.0 +12060,31,12.5,41,0.0 +12060,68,12.5,11,0.0 +12060,17,39,47,0.0 +12060,51,53,26,0.0 +12060,75,7.75,11,0.0 +12060,66,17,21,0.0 +12060,69,36,27,0.0 +12060,44,19.45,48,0.0 +12060,43,46,16,0.0 +12060,5,21.35,9,0.0 +12060,39,18,14,0.0 +12060,1,18,29,0.0 +12060,41,9.65,23,0.0 +12060,54,7.45,20,0.0 +12060,23,9,9,0.0 +12060,22,21,14,0.0 +12060,16,17.45,43,0.0 +12060,25,14,46,0.0 +12060,11,21,39,0.0 +12060,40,18.4,30,0.0 +12060,18,62.5,18,0.0 +12060,27,43.9,41,0.0 +12060,8,40,8,0.0 +12060,36,19,26,0.0 +12060,3,10,31,0.0 +12060,26,31.23,49,0.0 +12060,60,34,13,0.0 +12060,74,10,34,0.0 +12060,48,12.75,3,0.0 +12060,46,12,40,0.0 +12060,67,14,17,0.0 +12060,76,18,47,0.0 +12060,2,19,38,0.0 +12060,72,34.8,22,0.0 +12060,52,7,5,0.0 +12060,15,15.5,31,0.0 +12061,35,18,11,0.0 +12061,53,32.8,16,0.0 +12061,8,40,2,0.0 +12061,31,12.5,39,0.0 +12061,5,21.35,10,0.0 +12061,18,62.5,10,0.0 +12061,26,31.23,42,0.0 +12061,20,81,40,0.0 +12061,63,43.9,22,0.0 +12061,7,30,26,0.0 +12061,25,14,25,0.0 +12061,71,21.5,20,0.0 +12061,76,18,28,0.0 +12061,57,19.5,49,0.0 +12061,30,25.89,1,0.0 +12061,24,4.5,17,0.0 +12061,19,9.2,16,0.0 +12061,61,28.5,14,0.0 +12061,64,33.25,11,0.0 +12061,77,13,31,0.0 +12061,6,25,1,0.0 +12061,36,19,26,0.0 +12061,59,55,33,0.0 +12061,58,13.25,28,0.0 +12061,29,123.79,32,0.0 +12061,47,9.5,37,0.0 +12061,39,18,2,0.0 +12061,45,9.5,24,0.0 +12061,13,6,17,0.0 +12061,68,12.5,9,0.0 +12061,49,20,38,0.0 +12061,56,38,44,0.0 +12061,12,38,10,0.0 +12061,17,39,18,0.0 +12061,21,10,8,0.0 +12061,9,97,26,0.0 +12061,67,14,12,0.0 +12061,50,16.25,48,0.0 +12061,42,14,31,0.0 +12061,38,263.5,44,0.0 +12061,73,15,9,0.0 +12061,44,19.45,49,0.0 +12061,74,10,50,0.0 +12061,10,31,47,0.0 +12061,60,34,21,0.0 +12061,43,46,19,0.0 +12061,1,18,4,0.0 +12061,69,36,2,0.0 +12061,15,15.5,37,0.0 +12061,41,9.65,42,0.0 +12061,62,49.3,15,0.0 +12061,37,26,4,0.0 +12061,46,12,12,0.0 +12061,27,43.9,32,0.0 +12061,40,18.4,49,0.0 +12061,54,7.45,12,0.0 +12061,55,24,17,0.0 +12061,72,34.8,35,0.0 +12062,49,20,42,0.0 +12062,51,53,21,0.0 +12062,19,9.2,43,0.0 +12062,34,14,38,0.0 +12062,62,49.3,39,0.0 +12062,60,34,27,0.0 +12062,69,36,8,0.0 +12062,72,34.8,36,0.0 +12062,7,30,50,0.0 +12063,29,123.79,17,0.0 +12063,9,97,10,0.0 +12063,32,32,26,0.0 +12063,16,17.45,12,0.0 +12063,19,9.2,25,0.0 +12063,62,49.3,42,0.0 +12063,30,25.89,13,0.0 +12063,28,45.6,48,0.0 +12063,53,32.8,48,0.0 +12063,22,21,6,0.0 +12063,5,21.35,33,0.0 +12063,66,17,46,0.0 +12063,27,43.9,8,0.0 +12063,37,26,6,0.0 +12063,51,53,41,0.0 +12063,25,14,43,0.0 +12063,24,4.5,45,0.0 +12063,18,62.5,5,0.0 +12063,33,2.5,30,0.0 +12063,21,10,25,0.0 +12063,6,25,18,0.0 +12063,73,15,22,0.0 +12063,44,19.45,17,0.0 +12063,76,18,10,0.0 +12063,46,12,39,0.0 +12063,2,19,16,0.0 +12063,70,15,44,0.0 +12063,41,9.65,45,0.0 +12063,71,21.5,19,0.0 +12063,43,46,4,0.0 +12063,26,31.23,4,0.0 +12063,3,10,19,0.0 +12063,57,19.5,4,0.0 +12063,48,12.75,33,0.0 +12063,50,16.25,30,0.0 +12063,45,9.5,11,0.0 +12063,55,24,37,0.0 +12063,31,12.5,32,0.0 +12063,69,36,36,0.0 +12063,42,14,20,0.0 +12063,7,30,39,0.0 +12063,11,21,12,0.0 +12063,64,33.25,29,0.0 +12063,72,34.8,50,0.0 +12063,40,18.4,24,0.0 +12063,39,18,40,0.0 +12063,74,10,21,0.0 +12063,15,15.5,44,0.0 +12063,8,40,8,0.0 +12063,36,19,49,0.0 +12063,1,18,15,0.0 +12063,63,43.9,36,0.0 +12063,60,34,12,0.0 +12063,20,81,33,0.0 +12063,23,9,17,0.0 +12064,74,10,32,0.0 +12064,55,24,28,0.0 +12064,1,18,48,0.0 +12064,71,21.5,25,0.0 +12064,14,23.25,11,0.0 +12064,69,36,5,0.0 +12064,12,38,13,0.0 +12064,43,46,32,0.0 +12064,59,55,37,0.0 +12064,36,19,21,0.0 +12064,52,7,43,0.0 +12064,37,26,10,0.0 +12064,28,45.6,35,0.0 +12064,10,31,11,0.0 +12064,26,31.23,31,0.0 +12064,24,4.5,8,0.0 +12064,9,97,20,0.0 +12064,4,22,4,0.0 +12064,76,18,37,0.0 +12064,30,25.89,46,0.0 +12064,66,17,9,0.0 +12064,67,14,35,0.0 +12064,6,25,7,0.0 +12064,50,16.25,32,0.0 +12064,49,20,2,0.0 +12064,17,39,27,0.0 +12064,35,18,38,0.0 +12064,22,21,5,0.0 +12064,64,33.25,35,0.0 +12064,57,19.5,30,0.0 +12064,32,32,33,0.0 +12064,51,53,41,0.0 +12064,77,13,21,0.0 +12064,73,15,39,0.0 +12064,34,14,47,0.0 +12064,75,7.75,46,0.0 +12064,72,34.8,6,0.0 +12064,40,18.4,11,0.0 +12064,62,49.3,22,0.0 +12064,68,12.5,35,0.0 +12064,45,9.5,31,0.0 +12064,2,19,15,0.0 +12064,20,81,22,0.0 +12064,33,2.5,26,0.0 +12064,48,12.75,6,0.0 +12064,60,34,1,0.0 +12064,5,21.35,26,0.0 +12064,8,40,16,0.0 +12064,21,10,49,0.0 +12064,16,17.45,48,0.0 +12064,13,6,46,0.0 +12064,15,15.5,48,0.0 +12064,38,263.5,11,0.0 +12064,27,43.9,45,0.0 +12065,17,39,44,0.0 +12065,31,12.5,14,0.0 +12065,35,18,1,0.0 +12065,59,55,11,0.0 +12065,21,10,7,0.0 +12065,28,45.6,8,0.0 +12065,38,263.5,16,0.0 +12065,47,9.5,46,0.0 +12065,69,36,16,0.0 +12065,75,7.75,21,0.0 +12065,11,21,36,0.0 +12065,27,43.9,29,0.0 +12065,29,123.79,37,0.0 +12065,2,19,16,0.0 +12065,36,19,27,0.0 +12065,40,18.4,36,0.0 +12065,32,32,37,0.0 +12065,12,38,22,0.0 +12065,16,17.45,13,0.0 +12065,41,9.65,43,0.0 +12065,33,2.5,19,0.0 +12065,71,21.5,14,0.0 +12065,7,30,48,0.0 +12065,60,34,21,0.0 +12065,23,9,25,0.0 +12065,34,14,16,0.0 +12065,63,43.9,27,0.0 +12065,6,25,16,0.0 +12065,52,7,25,0.0 +12065,8,40,27,0.0 +12065,61,28.5,2,0.0 +12065,13,6,7,0.0 +12065,49,20,1,0.0 +12065,4,22,40,0.0 +12065,45,9.5,25,0.0 +12065,37,26,34,0.0 +12065,18,62.5,31,0.0 +12065,15,15.5,26,0.0 +12065,70,15,13,0.0 +12066,71,21.5,9,0.0 +12066,21,10,16,0.0 +12066,24,4.5,2,0.0 +12066,68,12.5,5,0.0 +12066,22,21,21,0.0 +12066,12,38,43,0.0 +12066,47,9.5,32,0.0 +12066,11,21,14,0.0 +12066,20,81,14,0.0 +12066,30,25.89,37,0.0 +12066,50,16.25,21,0.0 +12066,23,9,33,0.0 +12066,62,49.3,30,0.0 +12066,45,9.5,41,0.0 +12066,42,14,35,0.0 +12066,9,97,32,0.0 +12066,74,10,19,0.0 +12066,18,62.5,47,0.0 +12066,69,36,48,0.0 +12066,13,6,21,0.0 +12066,41,9.65,27,0.0 +12066,36,19,9,0.0 +12066,1,18,5,0.0 +12066,26,31.23,48,0.0 +12067,60,34,25,0.0 +12067,9,97,50,0.0 +12067,27,43.9,6,0.0 +12067,34,14,42,0.0 +12067,29,123.79,3,0.0 +12067,35,18,3,0.0 +12067,19,9.2,3,0.0 +12067,1,18,47,0.0 +12067,36,19,35,0.0 +12067,41,9.65,17,0.0 +12067,40,18.4,40,0.0 +12067,38,263.5,9,0.0 +12067,62,49.3,41,0.0 +12067,74,10,15,0.0 +12067,50,16.25,23,0.0 +12067,15,15.5,35,0.0 +12067,55,24,42,0.0 +12067,48,12.75,50,0.0 +12067,52,7,13,0.0 +12067,64,33.25,2,0.0 +12067,75,7.75,20,0.0 +12067,31,12.5,23,0.0 +12067,20,81,21,0.0 +12067,77,13,35,0.0 +12067,30,25.89,29,0.0 +12067,26,31.23,21,0.0 +12067,21,10,46,0.0 +12067,69,36,42,0.0 +12067,46,12,18,0.0 +12067,7,30,27,0.0 +12067,58,13.25,8,0.0 +12067,76,18,26,0.0 +12067,54,7.45,33,0.0 +12067,43,46,3,0.0 +12067,6,25,23,0.0 +12067,2,19,40,0.0 +12067,22,21,48,0.0 +12067,72,34.8,22,0.0 +12067,65,21.05,9,0.0 +12067,49,20,44,0.0 +12067,33,2.5,28,0.0 +12067,14,23.25,27,0.0 +12067,51,53,6,0.0 +12067,68,12.5,27,0.0 +12067,13,6,4,0.0 +12067,67,14,12,0.0 +12067,5,21.35,37,0.0 +12067,73,15,12,0.0 +12067,3,10,23,0.0 +12067,4,22,23,0.0 +12067,12,38,45,0.0 +12067,10,31,32,0.0 +12067,42,14,36,0.0 +12067,66,17,31,0.0 +12067,28,45.6,18,0.0 +12067,56,38,46,0.0 +12067,23,9,25,0.0 +12067,57,19.5,43,0.0 +12067,32,32,49,0.0 +12067,70,15,22,0.0 +12067,11,21,37,0.0 +12067,37,26,27,0.0 +12067,16,17.45,22,0.0 +12067,45,9.5,14,0.0 +12068,52,7,43,0.0 +12068,19,9.2,12,0.0 +12068,23,9,5,0.0 +12068,3,10,24,0.0 +12068,41,9.65,21,0.0 +12068,54,7.45,35,0.0 +12068,7,30,48,0.0 +12068,49,20,39,0.0 +12068,40,18.4,26,0.0 +12068,8,40,23,0.0 +12068,28,45.6,37,0.0 +12068,71,21.5,37,0.0 +12068,43,46,18,0.0 +12068,16,17.45,38,0.0 +12068,20,81,7,0.0 +12068,22,21,30,0.0 +12068,47,9.5,24,0.0 +12068,57,19.5,15,0.0 +12068,63,43.9,33,0.0 +12068,61,28.5,27,0.0 +12068,36,19,4,0.0 +12068,77,13,23,0.0 +12068,65,21.05,42,0.0 +12068,25,14,34,0.0 +12068,68,12.5,19,0.0 +12068,12,38,39,0.0 +12068,37,26,26,0.0 +12068,59,55,22,0.0 +12068,10,31,34,0.0 +12068,34,14,31,0.0 +12068,21,10,9,0.0 +12068,42,14,29,0.0 +12068,44,19.45,20,0.0 +12068,35,18,28,0.0 +12068,53,32.8,6,0.0 +12068,70,15,12,0.0 +12068,4,22,31,0.0 +12068,9,97,5,0.0 +12068,24,4.5,20,0.0 +12068,64,33.25,23,0.0 +12068,76,18,18,0.0 +12068,74,10,46,0.0 +12068,11,21,47,0.0 +12068,56,38,42,0.0 +12068,18,62.5,10,0.0 +12068,58,13.25,21,0.0 +12068,60,34,13,0.0 +12068,48,12.75,42,0.0 +12068,5,21.35,35,0.0 +12068,39,18,28,0.0 +12068,67,14,24,0.0 +12068,55,24,13,0.0 +12068,32,32,31,0.0 +12068,33,2.5,39,0.0 +12068,1,18,34,0.0 +12068,75,7.75,39,0.0 +12069,16,17.45,34,0.0 +12069,47,9.5,39,0.0 +12069,76,18,10,0.0 +12069,19,9.2,17,0.0 +12069,69,36,26,0.0 +12069,77,13,4,0.0 +12069,53,32.8,12,0.0 +12069,39,18,11,0.0 +12069,75,7.75,46,0.0 +12069,58,13.25,48,0.0 +12069,1,18,40,0.0 +12069,34,14,23,0.0 +12069,45,9.5,5,0.0 +12069,26,31.23,32,0.0 +12069,8,40,9,0.0 +12069,23,9,18,0.0 +12069,2,19,18,0.0 +12069,7,30,10,0.0 +12069,13,6,27,0.0 +12069,61,28.5,50,0.0 +12069,33,2.5,25,0.0 +12069,63,43.9,18,0.0 +12069,10,31,33,0.0 +12069,14,23.25,35,0.0 +12069,12,38,23,0.0 +12069,66,17,2,0.0 +12069,67,14,49,0.0 +12069,25,14,3,0.0 +12069,55,24,26,0.0 +12070,33,2.5,4,0.0 +12070,30,25.89,22,0.0 +12070,23,9,10,0.0 +12070,67,14,50,0.0 +12070,72,34.8,21,0.0 +12070,77,13,32,0.0 +12070,24,4.5,12,0.0 +12070,54,7.45,4,0.0 +12070,17,39,20,0.0 +12070,15,15.5,34,0.0 +12070,74,10,50,0.0 +12070,42,14,4,0.0 +12070,60,34,19,0.0 +12070,56,38,48,0.0 +12070,48,12.75,21,0.0 +12070,57,19.5,12,0.0 +12070,44,19.45,33,0.0 +12070,6,25,14,0.0 +12070,8,40,4,0.0 +12070,36,19,37,0.0 +12070,5,21.35,5,0.0 +12070,2,19,39,0.0 +12070,26,31.23,50,0.0 +12070,32,32,3,0.0 +12070,55,24,15,0.0 +12070,11,21,31,0.0 +12070,52,7,16,0.0 +12070,51,53,4,0.0 +12070,65,21.05,46,0.0 +12070,53,32.8,6,0.0 +12070,19,9.2,13,0.0 +12070,12,38,46,0.0 +12070,20,81,16,0.0 +12070,71,21.5,27,0.0 +12070,40,18.4,36,0.0 +12070,76,18,26,0.0 +12070,38,263.5,21,0.0 +12070,9,97,3,0.0 +12070,62,49.3,45,0.0 +12070,13,6,12,0.0 +12070,28,45.6,32,0.0 +12070,34,14,15,0.0 +12070,10,31,7,0.0 +12070,25,14,21,0.0 +12070,75,7.75,29,0.0 +12070,68,12.5,7,0.0 +12070,69,36,5,0.0 +12070,70,15,9,0.0 +12070,1,18,48,0.0 +12070,37,26,44,0.0 +12071,71,21.5,34,0.0 +12071,55,24,36,0.0 +12071,52,7,11,0.0 +12071,29,123.79,6,0.0 +12071,69,36,42,0.0 +12071,39,18,20,0.0 +12071,65,21.05,47,0.0 +12071,68,12.5,30,0.0 +12071,57,19.5,48,0.0 +12071,40,18.4,42,0.0 +12071,30,25.89,28,0.0 +12071,22,21,21,0.0 +12071,38,263.5,3,0.0 +12071,20,81,23,0.0 +12071,49,20,34,0.0 +12071,60,34,30,0.0 +12071,41,9.65,23,0.0 +12071,54,7.45,8,0.0 +12071,8,40,23,0.0 +12071,21,10,11,0.0 +12071,77,13,30,0.0 +12071,18,62.5,50,0.0 +12071,46,12,17,0.0 +12071,3,10,9,0.0 +12071,72,34.8,33,0.0 +12071,9,97,15,0.0 +12071,31,12.5,31,0.0 +12071,66,17,13,0.0 +12071,32,32,41,0.0 +12071,56,38,6,0.0 +12071,4,22,24,0.0 +12071,74,10,7,0.0 +12071,48,12.75,45,0.0 +12071,19,9.2,19,0.0 +12071,70,15,30,0.0 +12071,73,15,40,0.0 +12071,33,2.5,14,0.0 +12071,25,14,30,0.0 +12071,63,43.9,9,0.0 +12071,44,19.45,27,0.0 +12071,13,6,18,0.0 +12071,37,26,46,0.0 +12071,43,46,5,0.0 +12071,24,4.5,19,0.0 +12071,28,45.6,50,0.0 +12071,51,53,23,0.0 +12071,5,21.35,37,0.0 +12071,2,19,41,0.0 +12071,64,33.25,29,0.0 +12071,53,32.8,7,0.0 +12071,26,31.23,21,0.0 +12071,62,49.3,2,0.0 +12071,17,39,1,0.0 +12071,67,14,21,0.0 +12071,36,19,11,0.0 +12071,15,15.5,42,0.0 +12071,59,55,23,0.0 +12071,75,7.75,25,0.0 +12071,35,18,20,0.0 +12071,7,30,38,0.0 +12071,16,17.45,43,0.0 +12071,12,38,28,0.0 +12071,10,31,2,0.0 +12071,6,25,26,0.0 +12071,47,9.5,36,0.0 +12071,42,14,10,0.0 +12071,45,9.5,33,0.0 +12071,50,16.25,46,0.0 +12071,34,14,35,0.0 +12071,23,9,22,0.0 +12071,11,21,39,0.0 +12072,74,10,30,0.0 +12072,76,18,24,0.0 +12072,45,9.5,15,0.0 +12072,57,19.5,28,0.0 +12072,53,32.8,43,0.0 +12072,67,14,4,0.0 +12072,16,17.45,48,0.0 +12072,25,14,30,0.0 +12072,47,9.5,11,0.0 +12072,32,32,16,0.0 +12072,73,15,37,0.0 +12072,49,20,42,0.0 +12072,20,81,20,0.0 +12072,18,62.5,30,0.0 +12072,69,36,22,0.0 +12072,61,28.5,42,0.0 +12072,24,4.5,7,0.0 +12072,65,21.05,10,0.0 +12072,8,40,23,0.0 +12072,40,18.4,46,0.0 +12072,27,43.9,10,0.0 +12072,68,12.5,4,0.0 +12072,11,21,20,0.0 +12073,43,46,41,0.0 +12073,41,9.65,26,0.0 +12073,29,123.79,31,0.0 +12073,23,9,6,0.0 +12073,3,10,31,0.0 +12073,61,28.5,6,0.0 +12074,10,31,27,0.0 +12074,23,9,21,0.0 +12074,15,15.5,47,0.0 +12074,73,15,21,0.0 +12074,8,40,14,0.0 +12074,13,6,14,0.0 +12074,46,12,40,0.0 +12074,32,32,24,0.0 +12074,51,53,21,0.0 +12074,2,19,18,0.0 +12074,59,55,20,0.0 +12074,70,15,39,0.0 +12074,18,62.5,45,0.0 +12074,43,46,15,0.0 +12074,6,25,20,0.0 +12074,30,25.89,5,0.0 +12074,34,14,26,0.0 +12074,63,43.9,42,0.0 +12074,47,9.5,50,0.0 +12074,4,22,33,0.0 +12074,71,21.5,38,0.0 +12074,54,7.45,18,0.0 +12074,31,12.5,17,0.0 +12074,17,39,24,0.0 +12074,64,33.25,21,0.0 +12074,14,23.25,13,0.0 +12074,12,38,24,0.0 +12074,33,2.5,33,0.0 +12074,9,97,32,0.0 +12074,20,81,41,0.0 +12074,27,43.9,42,0.0 +12074,65,21.05,7,0.0 +12074,5,21.35,8,0.0 +12074,75,7.75,42,0.0 +12074,16,17.45,14,0.0 +12074,28,45.6,18,0.0 +12075,33,2.5,31,0.0 +12075,66,17,37,0.0 +12075,1,18,15,0.0 +12075,61,28.5,16,0.0 +12075,8,40,23,0.0 +12075,25,14,37,0.0 +12075,27,43.9,39,0.0 +12075,76,18,24,0.0 +12075,70,15,36,0.0 +12075,4,22,39,0.0 +12075,18,62.5,27,0.0 +12075,62,49.3,37,0.0 +12075,50,16.25,16,0.0 +12075,47,9.5,39,0.0 +12075,32,32,6,0.0 +12075,20,81,30,0.0 +12075,17,39,21,0.0 +12075,68,12.5,49,0.0 +12075,11,21,8,0.0 +12075,37,26,22,0.0 +12075,64,33.25,16,0.0 +12075,77,13,24,0.0 +12076,74,10,8,0.0 +12076,21,10,34,0.0 +12076,18,62.5,33,0.0 +12076,39,18,26,0.0 +12076,1,18,31,0.0 +12076,50,16.25,22,0.0 +12076,42,14,30,0.0 +12076,35,18,19,0.0 +12076,77,13,48,0.0 +12076,41,9.65,24,0.0 +12076,64,33.25,23,0.0 +12076,11,21,49,0.0 +12076,19,9.2,45,0.0 +12076,34,14,32,0.0 +12076,56,38,15,0.0 +12076,30,25.89,8,0.0 +12076,20,81,48,0.0 +12076,36,19,46,0.0 +12076,59,55,37,0.0 +12076,55,24,23,0.0 +12076,68,12.5,49,0.0 +12076,49,20,15,0.0 +12076,70,15,16,0.0 +12076,27,43.9,29,0.0 +12076,33,2.5,4,0.0 +12076,65,21.05,38,0.0 +12076,48,12.75,9,0.0 +12076,10,31,9,0.0 +12076,26,31.23,33,0.0 +12076,54,7.45,18,0.0 +12076,24,4.5,18,0.0 +12076,66,17,10,0.0 +12076,16,17.45,30,0.0 +12076,12,38,48,0.0 +12076,29,123.79,14,0.0 +12076,14,23.25,14,0.0 +12076,63,43.9,40,0.0 +12076,76,18,22,0.0 +12076,22,21,8,0.0 +12076,3,10,17,0.0 +12076,23,9,17,0.0 +12076,52,7,20,0.0 +12076,47,9.5,29,0.0 +12076,73,15,47,0.0 +12076,67,14,43,0.0 +12076,15,15.5,50,0.0 +12076,53,32.8,9,0.0 +12076,43,46,12,0.0 +12076,17,39,35,0.0 +12076,72,34.8,4,0.0 +12076,60,34,32,0.0 +12076,25,14,50,0.0 +12076,46,12,43,0.0 +12076,58,13.25,6,0.0 +12076,45,9.5,17,0.0 +12076,9,97,24,0.0 +12077,33,2.5,32,0.0 +12077,15,15.5,6,0.0 +12077,70,15,36,0.0 +12077,49,20,32,0.0 +12077,51,53,48,0.0 +12077,46,12,14,0.0 +12077,29,123.79,40,0.0 +12077,41,9.65,22,0.0 +12077,14,23.25,43,0.0 +12077,48,12.75,46,0.0 +12077,10,31,43,0.0 +12077,61,28.5,35,0.0 +12077,39,18,9,0.0 +12078,26,31.23,42,0.0 +12078,3,10,15,0.0 +12078,72,34.8,5,0.0 +12078,31,12.5,10,0.0 +12078,20,81,20,0.0 +12078,19,9.2,16,0.0 +12078,53,32.8,42,0.0 +12078,17,39,23,0.0 +12078,50,16.25,37,0.0 +12078,69,36,4,0.0 +12078,73,15,39,0.0 +12078,76,18,42,0.0 +12078,30,25.89,26,0.0 +12078,13,6,20,0.0 +12078,37,26,19,0.0 +12078,43,46,22,0.0 +12078,6,25,5,0.0 +12078,60,34,25,0.0 +12078,57,19.5,44,0.0 +12078,63,43.9,1,0.0 +12078,33,2.5,17,0.0 +12078,49,20,11,0.0 +12078,75,7.75,31,0.0 +12078,7,30,46,0.0 +12078,11,21,31,0.0 +12078,62,49.3,40,0.0 +12078,55,24,44,0.0 +12078,42,14,34,0.0 +12078,51,53,24,0.0 +12078,47,9.5,46,0.0 +12079,6,25,8,0.0 +12079,9,97,28,0.0 +12079,5,21.35,22,0.0 +12079,22,21,27,0.0 +12079,62,49.3,27,0.0 +12079,53,32.8,36,0.0 +12079,66,17,38,0.0 +12079,1,18,13,0.0 +12079,51,53,7,0.0 +12079,20,81,38,0.0 +12079,74,10,4,0.0 +12079,61,28.5,2,0.0 +12079,33,2.5,21,0.0 +12080,16,17.45,41,0.0 +12080,28,45.6,48,0.0 +12080,67,14,43,0.0 +12080,13,6,47,0.0 +12080,33,2.5,18,0.0 +12080,43,46,25,0.0 +12080,37,26,33,0.0 +12080,10,31,43,0.0 +12080,54,7.45,3,0.0 +12080,70,15,48,0.0 +12080,76,18,49,0.0 +12080,65,21.05,12,0.0 +12080,24,4.5,26,0.0 +12080,20,81,14,0.0 +12080,2,19,43,0.0 +12080,64,33.25,44,0.0 +12080,31,12.5,47,0.0 +12080,17,39,42,0.0 +12080,29,123.79,19,0.0 +12080,41,9.65,15,0.0 +12080,74,10,13,0.0 +12080,21,10,14,0.0 +12080,55,24,50,0.0 +12080,6,25,10,0.0 +12080,50,16.25,34,0.0 +12080,3,10,37,0.0 +12080,48,12.75,49,0.0 +12080,40,18.4,34,0.0 +12080,62,49.3,5,0.0 +12080,56,38,36,0.0 +12080,11,21,44,0.0 +12080,77,13,36,0.0 +12080,73,15,11,0.0 +12080,68,12.5,6,0.0 +12080,66,17,41,0.0 +12080,9,97,28,0.0 +12080,42,14,26,0.0 +12080,45,9.5,10,0.0 +12080,26,31.23,14,0.0 +12080,72,34.8,37,0.0 +12080,39,18,5,0.0 +12080,75,7.75,35,0.0 +12080,35,18,20,0.0 +12080,44,19.45,41,0.0 +12080,46,12,23,0.0 +12080,53,32.8,29,0.0 +12080,58,13.25,28,0.0 +12080,7,30,35,0.0 +12080,5,21.35,13,0.0 +12080,57,19.5,22,0.0 +12080,71,21.5,40,0.0 +12080,51,53,40,0.0 +12080,69,36,5,0.0 +12080,47,9.5,39,0.0 +12080,23,9,25,0.0 +12080,18,62.5,49,0.0 +12080,49,20,5,0.0 +12081,56,38,19,0.0 +12081,2,19,35,0.0 +12081,8,40,17,0.0 +12081,70,15,31,0.0 +12081,71,21.5,44,0.0 +12081,77,13,22,0.0 +12081,18,62.5,42,0.0 +12082,58,13.25,45,0.0 +12082,74,10,26,0.0 +12082,65,21.05,50,0.0 +12082,39,18,4,0.0 +12082,64,33.25,25,0.0 +12082,45,9.5,42,0.0 +12082,48,12.75,19,0.0 +12082,76,18,26,0.0 +12082,14,23.25,22,0.0 +12082,25,14,33,0.0 +12082,72,34.8,49,0.0 +12082,73,15,12,0.0 +12082,16,17.45,2,0.0 +12082,47,9.5,17,0.0 +12082,29,123.79,34,0.0 +12082,1,18,4,0.0 +12082,13,6,22,0.0 +12082,51,53,35,0.0 +12082,27,43.9,1,0.0 +12082,60,34,8,0.0 +12082,7,30,42,0.0 +12082,69,36,37,0.0 +12082,33,2.5,7,0.0 +12082,54,7.45,37,0.0 +12082,15,15.5,13,0.0 +12082,38,263.5,30,0.0 +12082,9,97,32,0.0 +12082,5,21.35,11,0.0 +12082,70,15,22,0.0 +12082,3,10,14,0.0 +12082,32,32,40,0.0 +12082,66,17,21,0.0 +12083,3,10,11,0.0 +12083,14,23.25,23,0.0 +12083,46,12,2,0.0 +12083,63,43.9,32,0.0 +12083,55,24,28,0.0 +12083,73,15,29,0.0 +12083,37,26,10,0.0 +12083,27,43.9,4,0.0 +12083,36,19,16,0.0 +12083,75,7.75,6,0.0 +12083,69,36,38,0.0 +12083,30,25.89,34,0.0 +12083,48,12.75,26,0.0 +12083,42,14,45,0.0 +12083,40,18.4,7,0.0 +12084,1,18,36,0.0 +12084,15,15.5,41,0.0 +12084,74,10,10,0.0 +12084,12,38,7,0.0 +12084,70,15,47,0.0 +12084,64,33.25,10,0.0 +12084,27,43.9,13,0.0 +12084,55,24,47,0.0 +12084,11,21,40,0.0 +12084,43,46,37,0.0 +12084,32,32,2,0.0 +12084,76,18,18,0.0 +12084,65,21.05,13,0.0 +12084,54,7.45,41,0.0 +12084,33,2.5,38,0.0 +12084,42,14,20,0.0 +12084,71,21.5,19,0.0 +12084,22,21,17,0.0 +12084,21,10,43,0.0 +12084,5,21.35,3,0.0 +12084,67,14,20,0.0 +12084,37,26,39,0.0 +12084,6,25,49,0.0 +12084,47,9.5,22,0.0 +12084,19,9.2,42,0.0 +12085,42,14,3,0.0 +12085,23,9,42,0.0 +12085,17,39,48,0.0 +12085,62,49.3,6,0.0 +12085,67,14,43,0.0 +12085,46,12,43,0.0 +12085,8,40,31,0.0 +12085,65,21.05,32,0.0 +12085,71,21.5,40,0.0 +12085,66,17,40,0.0 +12085,7,30,34,0.0 +12085,1,18,11,0.0 +12085,48,12.75,5,0.0 +12085,30,25.89,8,0.0 +12085,55,24,32,0.0 +12085,34,14,23,0.0 +12085,63,43.9,41,0.0 +12085,9,97,38,0.0 +12085,73,15,11,0.0 +12085,75,7.75,46,0.0 +12085,22,21,26,0.0 +12085,38,263.5,8,0.0 +12085,76,18,35,0.0 +12086,18,62.5,24,0.0 +12086,43,46,36,0.0 +12086,33,2.5,5,0.0 +12086,1,18,47,0.0 +12086,66,17,21,0.0 +12086,2,19,37,0.0 +12086,20,81,35,0.0 +12086,11,21,13,0.0 +12086,39,18,21,0.0 +12086,10,31,13,0.0 +12086,44,19.45,21,0.0 +12086,37,26,1,0.0 +12086,74,10,14,0.0 +12086,58,13.25,22,0.0 +12086,46,12,24,0.0 +12086,26,31.23,18,0.0 +12086,53,32.8,3,0.0 +12086,67,14,46,0.0 +12086,8,40,37,0.0 +12086,52,7,18,0.0 +12086,12,38,17,0.0 +12086,5,21.35,14,0.0 +12087,76,18,49,0.0 +12087,1,18,3,0.0 +12087,19,9.2,8,0.0 +12087,45,9.5,34,0.0 +12087,2,19,41,0.0 +12087,38,263.5,5,0.0 +12087,64,33.25,18,0.0 +12087,21,10,45,0.0 +12087,63,43.9,26,0.0 +12087,62,49.3,40,0.0 +12087,29,123.79,32,0.0 +12087,9,97,29,0.0 +12087,59,55,50,0.0 +12087,48,12.75,3,0.0 +12087,7,30,17,0.0 +12087,55,24,30,0.0 +12087,60,34,6,0.0 +12087,70,15,37,0.0 +12087,13,6,41,0.0 +12087,46,12,21,0.0 +12087,40,18.4,33,0.0 +12087,24,4.5,28,0.0 +12087,53,32.8,18,0.0 +12087,77,13,4,0.0 +12087,6,25,33,0.0 +12087,35,18,2,0.0 +12087,61,28.5,42,0.0 +12087,72,34.8,37,0.0 +12087,73,15,16,0.0 +12087,12,38,26,0.0 +12087,11,21,7,0.0 +12087,54,7.45,31,0.0 +12087,57,19.5,28,0.0 +12087,23,9,4,0.0 +12087,49,20,44,0.0 +12087,4,22,44,0.0 +12087,17,39,44,0.0 +12087,69,36,21,0.0 +12087,33,2.5,25,0.0 +12087,14,23.25,5,0.0 +12087,16,17.45,13,0.0 +12087,27,43.9,26,0.0 +12087,75,7.75,33,0.0 +12087,37,26,32,0.0 +12087,18,62.5,45,0.0 +12087,68,12.5,24,0.0 +12087,39,18,27,0.0 +12087,56,38,33,0.0 +12087,71,21.5,13,0.0 +12087,41,9.65,40,0.0 +12087,25,14,46,0.0 +12087,10,31,46,0.0 +12087,44,19.45,9,0.0 +12087,5,21.35,27,0.0 +12087,15,15.5,17,0.0 +12087,34,14,3,0.0 +12087,66,17,49,0.0 +12087,32,32,38,0.0 +12087,67,14,19,0.0 +12087,8,40,17,0.0 +12087,28,45.6,8,0.0 +12087,43,46,40,0.0 +12087,20,81,32,0.0 +12087,50,16.25,14,0.0 +12087,58,13.25,45,0.0 +12087,52,7,14,0.0 +12087,3,10,39,0.0 +12087,30,25.89,48,0.0 +12088,69,36,36,0.0 +12088,65,21.05,5,0.0 +12088,32,32,46,0.0 +12088,26,31.23,2,0.0 +12088,7,30,24,0.0 +12088,67,14,23,0.0 +12088,54,7.45,24,0.0 +12088,16,17.45,19,0.0 +12088,42,14,38,0.0 +12088,58,13.25,28,0.0 +12088,66,17,17,0.0 +12088,36,19,48,0.0 +12088,50,16.25,29,0.0 +12088,60,34,19,0.0 +12088,17,39,46,0.0 +12088,29,123.79,4,0.0 +12088,71,21.5,46,0.0 +12088,12,38,35,0.0 +12088,33,2.5,17,0.0 +12088,70,15,33,0.0 +12088,15,15.5,42,0.0 +12088,2,19,21,0.0 +12088,43,46,13,0.0 +12088,27,43.9,21,0.0 +12088,39,18,7,0.0 +12088,68,12.5,9,0.0 +12088,35,18,14,0.0 +12088,18,62.5,41,0.0 +12088,30,25.89,50,0.0 +12088,23,9,21,0.0 +12088,37,26,3,0.0 +12088,48,12.75,1,0.0 +12088,44,19.45,5,0.0 +12088,4,22,25,0.0 +12088,47,9.5,49,0.0 +12088,74,10,16,0.0 +12088,57,19.5,18,0.0 +12088,9,97,33,0.0 +12088,75,7.75,7,0.0 +12088,72,34.8,47,0.0 +12088,8,40,31,0.0 +12088,56,38,28,0.0 +12088,61,28.5,44,0.0 +12089,46,12,34,0.0 +12089,51,53,37,0.0 +12089,72,34.8,21,0.0 +12089,47,9.5,38,0.0 +12089,35,18,43,0.0 +12089,54,7.45,36,0.0 +12089,67,14,47,0.0 +12089,32,32,21,0.0 +12089,53,32.8,14,0.0 +12089,18,62.5,49,0.0 +12089,31,12.5,10,0.0 +12089,68,12.5,6,0.0 +12089,26,31.23,35,0.0 +12089,75,7.75,29,0.0 +12089,27,43.9,47,0.0 +12089,62,49.3,39,0.0 +12089,17,39,1,0.0 +12089,21,10,8,0.0 +12089,4,22,9,0.0 +12089,30,25.89,38,0.0 +12089,36,19,46,0.0 +12089,9,97,28,0.0 +12089,74,10,22,0.0 +12089,14,23.25,12,0.0 +12089,49,20,3,0.0 +12089,77,13,38,0.0 +12089,70,15,2,0.0 +12089,55,24,1,0.0 +12089,15,15.5,43,0.0 +12089,40,18.4,37,0.0 +12089,66,17,37,0.0 +12089,12,38,17,0.0 +12089,28,45.6,7,0.0 +12089,50,16.25,21,0.0 +12089,2,19,17,0.0 +12089,38,263.5,19,0.0 +12089,8,40,21,0.0 +12089,58,13.25,25,0.0 +12089,69,36,23,0.0 +12089,42,14,29,0.0 +12089,59,55,14,0.0 +12089,57,19.5,10,0.0 +12089,7,30,14,0.0 +12089,3,10,5,0.0 +12089,37,26,31,0.0 +12089,71,21.5,1,0.0 +12089,25,14,30,0.0 +12090,73,15,42,0.0 +12090,63,43.9,45,0.0 +12090,2,19,2,0.0 +12090,68,12.5,24,0.0 +12090,41,9.65,36,0.0 +12090,24,4.5,3,0.0 +12090,50,16.25,43,0.0 +12090,62,49.3,33,0.0 +12090,70,15,30,0.0 +12090,47,9.5,28,0.0 +12090,35,18,17,0.0 +12090,29,123.79,6,0.0 +12090,30,25.89,20,0.0 +12090,16,17.45,35,0.0 +12090,59,55,35,0.0 +12090,54,7.45,20,0.0 +12090,77,13,38,0.0 +12090,60,34,31,0.0 +12090,28,45.6,50,0.0 +12090,65,21.05,8,0.0 +12090,56,38,32,0.0 +12090,22,21,37,0.0 +12091,32,32,15,0.0 +12091,51,53,46,0.0 +12091,75,7.75,48,0.0 +12091,19,9.2,43,0.0 +12091,5,21.35,39,0.0 +12091,58,13.25,15,0.0 +12091,4,22,25,0.0 +12091,35,18,38,0.0 +12091,61,28.5,49,0.0 +12091,66,17,22,0.0 +12091,62,49.3,17,0.0 +12091,6,25,44,0.0 +12091,54,7.45,38,0.0 +12091,39,18,6,0.0 +12091,12,38,2,0.0 +12091,20,81,6,0.0 +12091,38,263.5,37,0.0 +12091,33,2.5,35,0.0 +12091,11,21,15,0.0 +12091,28,45.6,11,0.0 +12091,71,21.5,2,0.0 +12092,4,22,5,0.0 +12092,44,19.45,47,0.0 +12092,75,7.75,31,0.0 +12092,45,9.5,36,0.0 +12092,12,38,12,0.0 +12092,74,10,38,0.0 +12092,14,23.25,50,0.0 +12092,18,62.5,2,0.0 +12092,50,16.25,32,0.0 +12092,43,46,30,0.0 +12092,51,53,38,0.0 +12092,76,18,19,0.0 +12092,40,18.4,9,0.0 +12092,28,45.6,8,0.0 +12092,38,263.5,25,0.0 +12093,20,81,12,0.0 +12093,37,26,30,0.0 +12094,29,123.79,13,0.0 +12094,22,21,45,0.0 +12094,5,21.35,28,0.0 +12094,28,45.6,20,0.0 +12094,4,22,38,0.0 +12094,69,36,9,0.0 +12094,75,7.75,7,0.0 +12094,10,31,32,0.0 +12094,21,10,50,0.0 +12094,15,15.5,47,0.0 +12094,72,34.8,3,0.0 +12094,1,18,30,0.0 +12094,45,9.5,23,0.0 +12094,76,18,38,0.0 +12094,73,15,14,0.0 +12094,57,19.5,8,0.0 +12094,11,21,36,0.0 +12094,58,13.25,8,0.0 +12094,32,32,10,0.0 +12094,13,6,7,0.0 +12094,52,7,37,0.0 +12094,43,46,41,0.0 +12094,63,43.9,13,0.0 +12094,31,12.5,27,0.0 +12094,17,39,12,0.0 +12094,38,263.5,47,0.0 +12094,64,33.25,49,0.0 +12095,72,34.8,3,0.0 +12095,8,40,3,0.0 +12095,68,12.5,49,0.0 +12095,5,21.35,43,0.0 +12095,13,6,23,0.0 +12095,40,18.4,34,0.0 +12095,38,263.5,49,0.0 +12095,39,18,49,0.0 +12095,17,39,13,0.0 +12095,42,14,22,0.0 +12095,75,7.75,4,0.0 +12095,35,18,6,0.0 +12095,3,10,39,0.0 +12095,31,12.5,17,0.0 +12095,77,13,44,0.0 +12095,74,10,36,0.0 +12095,29,123.79,27,0.0 +12095,7,30,47,0.0 +12095,69,36,20,0.0 +12095,56,38,5,0.0 +12095,50,16.25,47,0.0 +12095,51,53,28,0.0 +12095,15,15.5,26,0.0 +12095,73,15,17,0.0 +12095,63,43.9,9,0.0 +12095,4,22,46,0.0 +12095,1,18,41,0.0 +12095,6,25,4,0.0 +12095,48,12.75,45,0.0 +12095,12,38,27,0.0 +12095,62,49.3,47,0.0 +12095,23,9,6,0.0 +12095,30,25.89,45,0.0 +12095,58,13.25,13,0.0 +12095,64,33.25,10,0.0 +12095,25,14,32,0.0 +12095,70,15,12,0.0 +12095,21,10,12,0.0 +12095,57,19.5,40,0.0 +12095,36,19,8,0.0 +12095,66,17,13,0.0 +12095,34,14,29,0.0 +12095,28,45.6,42,0.0 +12095,44,19.45,25,0.0 +12095,9,97,31,0.0 +12095,11,21,46,0.0 +12095,60,34,19,0.0 +12095,10,31,26,0.0 +12095,26,31.23,34,0.0 +12095,14,23.25,6,0.0 +12095,49,20,13,0.0 +12095,19,9.2,31,0.0 +12095,18,62.5,48,0.0 +12095,32,32,41,0.0 +12095,53,32.8,16,0.0 +12095,47,9.5,10,0.0 +12095,43,46,23,0.0 +12095,59,55,12,0.0 +12095,20,81,28,0.0 +12095,52,7,38,0.0 +12095,16,17.45,2,0.0 +12095,65,21.05,16,0.0 +12095,41,9.65,38,0.0 +12095,55,24,45,0.0 +12095,76,18,8,0.0 +12095,22,21,50,0.0 +12095,46,12,27,0.0 +12095,24,4.5,44,0.0 +12095,67,14,5,0.0 +12096,51,53,18,0.0 +12096,6,25,29,0.0 +12096,27,43.9,37,0.0 +12096,12,38,50,0.0 +12096,20,81,5,0.0 +12096,76,18,39,0.0 +12096,71,21.5,15,0.0 +12096,3,10,25,0.0 +12096,28,45.6,6,0.0 +12096,63,43.9,50,0.0 +12096,74,10,5,0.0 +12096,38,263.5,7,0.0 +12096,65,21.05,10,0.0 +12096,9,97,41,0.0 +12096,5,21.35,23,0.0 +12096,66,17,20,0.0 +12096,58,13.25,14,0.0 +12096,21,10,11,0.0 +12096,13,6,36,0.0 +12096,39,18,35,0.0 +12096,68,12.5,28,0.0 +12096,60,34,31,0.0 +12096,40,18.4,36,0.0 +12096,56,38,27,0.0 +12096,69,36,32,0.0 +12096,59,55,22,0.0 +12096,10,31,12,0.0 +12096,42,14,38,0.0 +12096,55,24,44,0.0 +12096,70,15,19,0.0 +12096,18,62.5,3,0.0 +12096,29,123.79,36,0.0 +12096,64,33.25,6,0.0 +12096,4,22,5,0.0 +12096,24,4.5,18,0.0 +12096,15,15.5,1,0.0 +12096,8,40,14,0.0 +12096,54,7.45,38,0.0 +12096,16,17.45,29,0.0 +12096,1,18,50,0.0 +12096,14,23.25,11,0.0 +12096,57,19.5,27,0.0 +12096,67,14,12,0.0 +12096,47,9.5,14,0.0 +12096,25,14,27,0.0 +12096,22,21,11,0.0 +12096,19,9.2,2,0.0 +12096,75,7.75,20,0.0 +12096,77,13,21,0.0 +12096,45,9.5,17,0.0 +12096,34,14,47,0.0 +12096,30,25.89,46,0.0 +12097,17,39,36,0.0 +12097,14,23.25,30,0.0 +12097,75,7.75,4,0.0 +12097,37,26,9,0.0 +12097,4,22,21,0.0 +12097,46,12,44,0.0 +12097,58,13.25,8,0.0 +12097,5,21.35,44,0.0 +12097,8,40,38,0.0 +12097,40,18.4,43,0.0 +12097,68,12.5,48,0.0 +12097,22,21,29,0.0 +12097,30,25.89,50,0.0 +12097,49,20,9,0.0 +12097,36,19,21,0.0 +12097,45,9.5,42,0.0 +12097,43,46,30,0.0 +12097,39,18,10,0.0 +12097,57,19.5,25,0.0 +12097,2,19,11,0.0 +12097,55,24,14,0.0 +12097,27,43.9,20,0.0 +12097,61,28.5,44,0.0 +12097,59,55,14,0.0 +12097,38,263.5,15,0.0 +12097,76,18,19,0.0 +12097,34,14,1,0.0 +12097,47,9.5,18,0.0 +12097,19,9.2,5,0.0 +12097,3,10,46,0.0 +12097,29,123.79,5,0.0 +12097,12,38,11,0.0 +12097,72,34.8,13,0.0 +12097,62,49.3,39,0.0 +12097,10,31,23,0.0 +12097,11,21,38,0.0 +12097,48,12.75,45,0.0 +12097,9,97,11,0.0 +12097,44,19.45,16,0.0 +12097,67,14,15,0.0 +12097,16,17.45,49,0.0 +12097,31,12.5,3,0.0 +12097,66,17,6,0.0 +12097,18,62.5,42,0.0 +12098,72,34.8,42,0.0 +12098,54,7.45,39,0.0 +12098,58,13.25,46,0.0 +12098,8,40,15,0.0 +12098,22,21,46,0.0 +12098,25,14,29,0.0 +12098,17,39,29,0.0 +12098,45,9.5,45,0.0 +12098,35,18,17,0.0 +12098,59,55,3,0.0 +12098,56,38,13,0.0 +12098,43,46,6,0.0 +12098,12,38,25,0.0 +12098,24,4.5,18,0.0 +12098,32,32,8,0.0 +12098,20,81,50,0.0 +12098,71,21.5,44,0.0 +12098,66,17,18,0.0 +12098,69,36,37,0.0 +12098,47,9.5,16,0.0 +12098,28,45.6,23,0.0 +12098,63,43.9,32,0.0 +12098,61,28.5,30,0.0 +12098,42,14,13,0.0 +12098,70,15,16,0.0 +12098,7,30,43,0.0 +12098,41,9.65,34,0.0 +12098,55,24,15,0.0 +12098,1,18,6,0.0 +12098,6,25,9,0.0 +12098,4,22,43,0.0 +12098,64,33.25,18,0.0 +12098,13,6,31,0.0 +12098,9,97,37,0.0 +12098,5,21.35,35,0.0 +12098,16,17.45,47,0.0 +12098,76,18,34,0.0 +12098,40,18.4,24,0.0 +12098,44,19.45,8,0.0 +12098,18,62.5,7,0.0 +12099,20,81,27,0.0 +12099,2,19,1,0.0 +12099,58,13.25,20,0.0 +12099,69,36,32,0.0 +12099,16,17.45,10,0.0 +12099,8,40,24,0.0 +12099,9,97,4,0.0 +12099,70,15,36,0.0 +12099,48,12.75,47,0.0 +12099,27,43.9,42,0.0 +12099,52,7,32,0.0 +12099,4,22,32,0.0 +12099,50,16.25,29,0.0 +12099,1,18,4,0.0 +12099,72,34.8,34,0.0 +12099,41,9.65,40,0.0 +12099,61,28.5,29,0.0 +12099,37,26,43,0.0 +12099,17,39,27,0.0 +12099,25,14,20,0.0 +12099,65,21.05,27,0.0 +12099,43,46,4,0.0 +12099,35,18,16,0.0 +12099,32,32,13,0.0 +12099,3,10,34,0.0 +12099,40,18.4,41,0.0 +12099,77,13,42,0.0 +12099,66,17,38,0.0 +12099,63,43.9,2,0.0 +12099,23,9,12,0.0 +12099,15,15.5,23,0.0 +12099,75,7.75,22,0.0 +12099,60,34,47,0.0 +12099,12,38,12,0.0 +12099,45,9.5,45,0.0 +12099,62,49.3,34,0.0 +12099,46,12,25,0.0 +12099,28,45.6,2,0.0 +12099,21,10,13,0.0 +12099,44,19.45,50,0.0 +12099,36,19,46,0.0 +12099,18,62.5,13,0.0 +12099,38,263.5,31,0.0 +12099,54,7.45,21,0.0 +12099,67,14,42,0.0 +12099,55,24,39,0.0 +12099,74,10,41,0.0 +12099,14,23.25,16,0.0 +12099,33,2.5,33,0.0 +12099,7,30,32,0.0 +12099,13,6,23,0.0 +12099,24,4.5,7,0.0 +12099,73,15,22,0.0 +12099,42,14,42,0.0 +12099,57,19.5,21,0.0 +12099,47,9.5,1,0.0 +12099,39,18,31,0.0 +12099,51,53,39,0.0 +12099,30,25.89,7,0.0 +12099,19,9.2,31,0.0 +12099,10,31,25,0.0 +12100,53,32.8,30,0.0 +12100,44,19.45,40,0.0 +12100,15,15.5,9,0.0 +12100,1,18,32,0.0 +12100,13,6,18,0.0 +12100,35,18,23,0.0 +12100,23,9,15,0.0 +12100,10,31,30,0.0 +12100,69,36,37,0.0 +12100,55,24,21,0.0 +12100,5,21.35,18,0.0 +12100,14,23.25,34,0.0 +12100,12,38,31,0.0 +12100,31,12.5,33,0.0 +12100,75,7.75,34,0.0 +12100,73,15,49,0.0 +12100,40,18.4,24,0.0 +12100,2,19,47,0.0 +12100,8,40,16,0.0 +12100,66,17,47,0.0 +12100,77,13,15,0.0 +12100,32,32,27,0.0 +12100,33,2.5,42,0.0 +12100,18,62.5,39,0.0 +12100,62,49.3,49,0.0 +12100,41,9.65,19,0.0 +12100,11,21,49,0.0 +12100,38,263.5,40,0.0 +12100,3,10,8,0.0 +12100,49,20,40,0.0 +12100,21,10,11,0.0 +12100,48,12.75,37,0.0 +12100,39,18,25,0.0 +12100,26,31.23,1,0.0 +12100,22,21,38,0.0 +12100,36,19,28,0.0 +12100,43,46,29,0.0 +12100,17,39,3,0.0 +12100,7,30,7,0.0 +12100,19,9.2,25,0.0 +12100,58,13.25,49,0.0 +12100,59,55,38,0.0 +12101,51,53,21,0.0 +12101,41,9.65,33,0.0 +12101,50,16.25,29,0.0 +12101,46,12,5,0.0 +12101,9,97,42,0.0 +12101,1,18,6,0.0 +12101,73,15,40,0.0 +12101,34,14,40,0.0 +12101,19,9.2,25,0.0 +12101,10,31,9,0.0 +12101,35,18,9,0.0 +12101,22,21,17,0.0 +12101,27,43.9,49,0.0 +12101,47,9.5,2,0.0 +12101,32,32,3,0.0 +12101,18,62.5,34,0.0 +12101,58,13.25,22,0.0 +12101,63,43.9,37,0.0 +12101,69,36,6,0.0 +12101,72,34.8,4,0.0 +12101,45,9.5,21,0.0 +12101,2,19,18,0.0 +12101,38,263.5,23,0.0 +12101,7,30,48,0.0 +12101,5,21.35,12,0.0 +12101,12,38,29,0.0 +12101,53,32.8,8,0.0 +12101,66,17,42,0.0 +12101,15,15.5,19,0.0 +12101,24,4.5,14,0.0 +12101,74,10,29,0.0 +12101,61,28.5,4,0.0 +12101,11,21,31,0.0 +12101,54,7.45,42,0.0 +12102,72,34.8,2,0.0 +12102,20,81,32,0.0 +12102,1,18,1,0.0 +12102,38,263.5,11,0.0 +12102,8,40,10,0.0 +12102,2,19,21,0.0 +12102,77,13,31,0.0 +12102,42,14,42,0.0 +12102,55,24,40,0.0 +12102,9,97,5,0.0 +12102,39,18,25,0.0 +12102,66,17,31,0.0 +12102,45,9.5,1,0.0 +12102,74,10,4,0.0 +12102,29,123.79,28,0.0 +12102,24,4.5,50,0.0 +12102,54,7.45,33,0.0 +12102,22,21,35,0.0 +12102,50,16.25,1,0.0 +12102,71,21.5,44,0.0 +12102,33,2.5,23,0.0 +12102,23,9,11,0.0 +12102,5,21.35,22,0.0 +12102,26,31.23,6,0.0 +12102,31,12.5,15,0.0 +12102,36,19,38,0.0 +12102,13,6,41,0.0 +12102,44,19.45,15,0.0 +12102,73,15,17,0.0 +12102,68,12.5,50,0.0 +12102,75,7.75,42,0.0 +12102,32,32,36,0.0 +12102,10,31,37,0.0 +12102,30,25.89,21,0.0 +12102,48,12.75,6,0.0 +12102,76,18,42,0.0 +12102,57,19.5,23,0.0 +12102,7,30,50,0.0 +12102,56,38,48,0.0 +12102,28,45.6,35,0.0 +12102,69,36,27,0.0 +12102,4,22,3,0.0 +12102,3,10,39,0.0 +12102,46,12,23,0.0 +12102,52,7,18,0.0 +12102,14,23.25,29,0.0 +12102,41,9.65,5,0.0 +12102,59,55,1,0.0 +12102,37,26,50,0.0 +12102,70,15,13,0.0 +12102,25,14,9,0.0 +12102,43,46,36,0.0 +12102,16,17.45,15,0.0 +12102,63,43.9,8,0.0 +12102,58,13.25,13,0.0 +12102,62,49.3,31,0.0 +12102,40,18.4,3,0.0 +12102,51,53,3,0.0 +12102,35,18,26,0.0 +12102,64,33.25,26,0.0 +12102,27,43.9,49,0.0 +12102,67,14,1,0.0 +12102,60,34,24,0.0 +12102,17,39,16,0.0 +12102,11,21,19,0.0 +12103,41,9.65,48,0.0 +12103,40,18.4,41,0.0 +12103,58,13.25,14,0.0 +12103,27,43.9,44,0.0 +12103,7,30,34,0.0 +12103,33,2.5,50,0.0 +12103,34,14,47,0.0 +12103,45,9.5,8,0.0 +12103,23,9,34,0.0 +12103,1,18,32,0.0 +12103,39,18,19,0.0 +12103,60,34,5,0.0 +12103,14,23.25,39,0.0 +12103,32,32,42,0.0 +12103,30,25.89,28,0.0 +12103,3,10,32,0.0 +12103,67,14,35,0.0 +12103,69,36,49,0.0 +12103,65,21.05,21,0.0 +12103,11,21,44,0.0 +12103,77,13,16,0.0 +12103,9,97,29,0.0 +12104,49,20,7,0.0 +12104,21,10,3,0.0 +12104,70,15,29,0.0 +12104,3,10,48,0.0 +12104,11,21,44,0.0 +12104,65,21.05,38,0.0 +12104,43,46,45,0.0 +12104,60,34,1,0.0 +12104,72,34.8,36,0.0 +12104,62,49.3,40,0.0 +12104,77,13,28,0.0 +12104,74,10,30,0.0 +12104,64,33.25,43,0.0 +12104,30,25.89,14,0.0 +12104,40,18.4,36,0.0 +12104,39,18,28,0.0 +12104,18,62.5,45,0.0 +12104,33,2.5,40,0.0 +12104,48,12.75,40,0.0 +12104,10,31,13,0.0 +12104,31,12.5,44,0.0 +12104,73,15,18,0.0 +12104,25,14,39,0.0 +12104,42,14,7,0.0 +12104,12,38,39,0.0 +12104,32,32,15,0.0 +12104,8,40,14,0.0 +12104,41,9.65,4,0.0 +12104,50,16.25,11,0.0 +12104,59,55,1,0.0 +12104,69,36,26,0.0 +12104,66,17,13,0.0 +12104,55,24,47,0.0 +12105,59,55,9,0.0 +12105,54,7.45,50,0.0 +12105,75,7.75,24,0.0 +12105,17,39,21,0.0 +12105,45,9.5,11,0.0 +12105,70,15,20,0.0 +12105,69,36,4,0.0 +12105,15,15.5,5,0.0 +12105,12,38,15,0.0 +12105,38,263.5,34,0.0 +12105,76,18,26,0.0 +12105,24,4.5,32,0.0 +12105,44,19.45,1,0.0 +12105,13,6,38,0.0 +12105,36,19,30,0.0 +12105,77,13,47,0.0 +12105,33,2.5,5,0.0 +12105,22,21,4,0.0 +12105,26,31.23,5,0.0 +12105,34,14,12,0.0 +12105,71,21.5,16,0.0 +12105,27,43.9,44,0.0 +12105,6,25,9,0.0 +12105,57,19.5,41,0.0 +12105,46,12,29,0.0 +12105,55,24,29,0.0 +12105,67,14,35,0.0 +12105,66,17,33,0.0 +12105,1,18,11,0.0 +12105,40,18.4,6,0.0 +12105,8,40,40,0.0 +12105,56,38,42,0.0 +12105,58,13.25,24,0.0 +12105,14,23.25,29,0.0 +12105,2,19,23,0.0 +12105,43,46,3,0.0 +12105,7,30,5,0.0 +12105,74,10,39,0.0 +12105,16,17.45,7,0.0 +12105,18,62.5,45,0.0 +12105,60,34,28,0.0 +12105,49,20,26,0.0 +12105,50,16.25,19,0.0 +12105,21,10,16,0.0 +12105,37,26,12,0.0 +12105,30,25.89,44,0.0 +12105,4,22,17,0.0 +12105,73,15,42,0.0 +12105,11,21,25,0.0 +12105,64,33.25,8,0.0 +12105,3,10,45,0.0 +12105,19,9.2,44,0.0 +12105,51,53,9,0.0 +12105,32,32,31,0.0 +12105,31,12.5,24,0.0 +12105,35,18,36,0.0 +12105,65,21.05,45,0.0 +12105,20,81,4,0.0 +12105,61,28.5,46,0.0 +12105,41,9.65,47,0.0 +12105,5,21.35,24,0.0 +12105,72,34.8,33,0.0 +12105,28,45.6,37,0.0 +12106,63,43.9,6,0.0 +12106,48,12.75,26,0.0 +12106,38,263.5,41,0.0 +12106,42,14,19,0.0 +12106,31,12.5,32,0.0 +12106,45,9.5,28,0.0 +12106,17,39,40,0.0 +12106,66,17,41,0.0 +12106,24,4.5,19,0.0 +12106,49,20,23,0.0 +12106,72,34.8,19,0.0 +12106,8,40,50,0.0 +12106,36,19,40,0.0 +12106,21,10,10,0.0 +12106,9,97,45,0.0 +12106,69,36,36,0.0 +12106,67,14,45,0.0 +12106,61,28.5,9,0.0 +12106,2,19,43,0.0 +12106,11,21,28,0.0 +12106,33,2.5,46,0.0 +12106,5,21.35,50,0.0 +12106,12,38,10,0.0 +12106,35,18,29,0.0 +12106,6,25,15,0.0 +12106,25,14,41,0.0 +12106,1,18,8,0.0 +12106,55,24,37,0.0 +12106,52,7,44,0.0 +12106,44,19.45,5,0.0 +12106,22,21,38,0.0 +12106,37,26,16,0.0 +12106,74,10,9,0.0 +12107,41,9.65,3,0.0 +12107,26,31.23,2,0.0 +12107,40,18.4,4,0.0 +12107,51,53,7,0.0 +12107,4,22,29,0.0 +12107,49,20,36,0.0 +12107,71,21.5,43,0.0 +12107,2,19,6,0.0 +12107,31,12.5,7,0.0 +12107,6,25,37,0.0 +12107,70,15,35,0.0 +12107,7,30,47,0.0 +12108,70,15,39,0.0 +12108,32,32,49,0.0 +12108,76,18,41,0.0 +12108,59,55,29,0.0 +12108,7,30,41,0.0 +12108,33,2.5,35,0.0 +12108,6,25,4,0.0 +12108,64,33.25,32,0.0 +12108,34,14,32,0.0 +12108,36,19,24,0.0 +12108,43,46,7,0.0 +12108,68,12.5,10,0.0 +12108,21,10,16,0.0 +12108,29,123.79,3,0.0 +12108,49,20,11,0.0 +12108,42,14,17,0.0 +12108,26,31.23,3,0.0 +12108,66,17,27,0.0 +12108,60,34,2,0.0 +12108,44,19.45,34,0.0 +12108,14,23.25,27,0.0 +12108,69,36,22,0.0 +12108,2,19,18,0.0 +12108,55,24,40,0.0 +12108,18,62.5,2,0.0 +12108,71,21.5,3,0.0 +12108,31,12.5,1,0.0 +12108,1,18,44,0.0 +12108,19,9.2,20,0.0 +12108,51,53,50,0.0 +12108,61,28.5,5,0.0 +12108,39,18,18,0.0 +12108,50,16.25,30,0.0 +12108,74,10,10,0.0 +12108,57,19.5,14,0.0 +12108,24,4.5,3,0.0 +12108,23,9,19,0.0 +12108,37,26,46,0.0 +12108,67,14,32,0.0 +12108,11,21,38,0.0 +12108,13,6,7,0.0 +12108,58,13.25,42,0.0 +12108,46,12,17,0.0 +12108,47,9.5,13,0.0 +12108,56,38,42,0.0 +12108,25,14,30,0.0 +12108,15,15.5,2,0.0 +12108,41,9.65,8,0.0 +12108,48,12.75,25,0.0 +12108,45,9.5,15,0.0 +12109,59,55,14,0.0 +12109,42,14,45,0.0 +12109,24,4.5,40,0.0 +12109,3,10,38,0.0 +12109,74,10,48,0.0 +12109,56,38,8,0.0 +12109,1,18,18,0.0 +12109,45,9.5,4,0.0 +12109,54,7.45,49,0.0 +12109,52,7,37,0.0 +12109,61,28.5,16,0.0 +12109,30,25.89,19,0.0 +12109,37,26,20,0.0 +12109,19,9.2,35,0.0 +12109,40,18.4,41,0.0 +12109,11,21,26,0.0 +12109,35,18,46,0.0 +12109,6,25,14,0.0 +12109,9,97,50,0.0 +12109,44,19.45,22,0.0 +12109,69,36,40,0.0 +12109,34,14,41,0.0 +12109,25,14,33,0.0 +12109,33,2.5,45,0.0 +12109,16,17.45,42,0.0 +12109,26,31.23,23,0.0 +12109,17,39,4,0.0 +12109,38,263.5,30,0.0 +12109,64,33.25,19,0.0 +12109,23,9,39,0.0 +12109,43,46,37,0.0 +12109,49,20,22,0.0 +12109,36,19,24,0.0 +12109,13,6,47,0.0 +12109,53,32.8,26,0.0 +12109,20,81,15,0.0 +12109,51,53,3,0.0 +12109,68,12.5,25,0.0 +12109,22,21,4,0.0 +12109,50,16.25,36,0.0 +12109,41,9.65,2,0.0 +12109,62,49.3,35,0.0 +12109,5,21.35,8,0.0 +12110,61,28.5,21,0.0 +12110,27,43.9,24,0.0 +12110,28,45.6,46,0.0 +12110,7,30,7,0.0 +12110,53,32.8,10,0.0 +12110,4,22,20,0.0 +12110,59,55,35,0.0 +12110,11,21,35,0.0 +12110,30,25.89,17,0.0 +12110,32,32,26,0.0 +12110,55,24,21,0.0 +12110,76,18,35,0.0 +12110,6,25,23,0.0 +12110,69,36,36,0.0 +12110,2,19,23,0.0 +12110,66,17,15,0.0 +12110,24,4.5,8,0.0 +12110,67,14,35,0.0 +12110,22,21,29,0.0 +12110,77,13,11,0.0 +12110,37,26,39,0.0 +12110,62,49.3,31,0.0 +12110,56,38,45,0.0 +12110,63,43.9,18,0.0 +12110,35,18,45,0.0 +12110,1,18,45,0.0 +12110,14,23.25,21,0.0 +12110,31,12.5,22,0.0 +12110,68,12.5,26,0.0 +12110,45,9.5,19,0.0 +12110,42,14,23,0.0 +12110,54,7.45,31,0.0 +12110,29,123.79,28,0.0 +12110,9,97,45,0.0 +12110,40,18.4,1,0.0 +12110,20,81,16,0.0 +12110,3,10,11,0.0 +12110,70,15,16,0.0 +12110,23,9,18,0.0 +12110,75,7.75,41,0.0 +12110,10,31,29,0.0 +12110,58,13.25,23,0.0 +12110,72,34.8,36,0.0 +12110,34,14,8,0.0 +12111,7,30,5,0.0 +12111,57,19.5,6,0.0 +12111,6,25,41,0.0 +12111,39,18,38,0.0 +12111,20,81,37,0.0 +12111,74,10,6,0.0 +12111,52,7,21,0.0 +12111,5,21.35,14,0.0 +12111,3,10,22,0.0 +12111,63,43.9,40,0.0 +12111,21,10,50,0.0 +12112,6,25,17,0.0 +12112,47,9.5,17,0.0 +12112,34,14,2,0.0 +12112,10,31,32,0.0 +12112,38,263.5,23,0.0 +12112,60,34,36,0.0 +12112,2,19,41,0.0 +12112,33,2.5,37,0.0 +12112,71,21.5,22,0.0 +12112,40,18.4,11,0.0 +12112,67,14,22,0.0 +12112,58,13.25,20,0.0 +12112,24,4.5,35,0.0 +12113,49,20,4,0.0 +12113,39,18,45,0.0 +12113,21,10,13,0.0 +12113,31,12.5,7,0.0 +12113,17,39,19,0.0 +12113,66,17,47,0.0 +12113,14,23.25,14,0.0 +12113,75,7.75,35,0.0 +12113,44,19.45,1,0.0 +12113,19,9.2,26,0.0 +12113,36,19,31,0.0 +12113,50,16.25,33,0.0 +12113,73,15,42,0.0 +12113,52,7,9,0.0 +12113,12,38,9,0.0 +12113,68,12.5,20,0.0 +12113,72,34.8,11,0.0 +12113,30,25.89,7,0.0 +12113,13,6,41,0.0 +12113,27,43.9,50,0.0 +12113,35,18,50,0.0 +12113,55,24,47,0.0 +12113,41,9.65,26,0.0 +12113,3,10,13,0.0 +12113,28,45.6,30,0.0 +12113,48,12.75,41,0.0 +12113,24,4.5,27,0.0 +12113,32,32,5,0.0 +12113,77,13,34,0.0 +12113,51,53,20,0.0 +12113,70,15,40,0.0 +12113,57,19.5,15,0.0 +12113,4,22,7,0.0 +12113,42,14,29,0.0 +12113,63,43.9,29,0.0 +12113,25,14,17,0.0 +12113,76,18,8,0.0 +12113,34,14,16,0.0 +12113,65,21.05,26,0.0 +12113,58,13.25,36,0.0 +12113,7,30,5,0.0 +12113,15,15.5,28,0.0 +12113,37,26,14,0.0 +12113,11,21,23,0.0 +12113,59,55,44,0.0 +12113,54,7.45,33,0.0 +12113,53,32.8,3,0.0 +12113,16,17.45,25,0.0 +12113,33,2.5,22,0.0 +12113,56,38,5,0.0 +12113,9,97,30,0.0 +12113,69,36,10,0.0 +12113,46,12,39,0.0 +12113,40,18.4,47,0.0 +12113,45,9.5,37,0.0 +12113,74,10,6,0.0 +12113,2,19,41,0.0 +12113,60,34,34,0.0 +12113,61,28.5,8,0.0 +12113,5,21.35,37,0.0 +12113,29,123.79,9,0.0 +12113,64,33.25,25,0.0 +12113,26,31.23,16,0.0 +12113,38,263.5,32,0.0 +12113,22,21,2,0.0 +12113,62,49.3,23,0.0 +12113,47,9.5,36,0.0 +12113,71,21.5,7,0.0 +12113,23,9,27,0.0 +12113,1,18,24,0.0 +12114,38,263.5,8,0.0 +12114,15,15.5,40,0.0 +12114,3,10,14,0.0 +12114,35,18,18,0.0 +12114,23,9,45,0.0 +12114,75,7.75,3,0.0 +12114,41,9.65,24,0.0 +12114,17,39,31,0.0 +12114,12,38,2,0.0 +12114,71,21.5,33,0.0 +12114,44,19.45,24,0.0 +12114,16,17.45,4,0.0 +12114,4,22,43,0.0 +12114,10,31,6,0.0 +12114,27,43.9,7,0.0 +12114,1,18,31,0.0 +12114,18,62.5,38,0.0 +12114,64,33.25,5,0.0 +12114,49,20,16,0.0 +12114,36,19,38,0.0 +12114,46,12,27,0.0 +12114,51,53,18,0.0 +12114,30,25.89,6,0.0 +12114,47,9.5,40,0.0 +12114,52,7,48,0.0 +12114,66,17,36,0.0 +12114,31,12.5,29,0.0 +12114,59,55,46,0.0 +12114,63,43.9,27,0.0 +12114,39,18,10,0.0 +12114,53,32.8,7,0.0 +12115,43,46,32,0.0 +12115,31,12.5,2,0.0 +12115,42,14,30,0.0 +12115,3,10,2,0.0 +12115,21,10,25,0.0 +12115,9,97,44,0.0 +12115,27,43.9,38,0.0 +12115,55,24,6,0.0 +12115,47,9.5,10,0.0 +12115,40,18.4,34,0.0 +12115,57,19.5,29,0.0 +12115,39,18,24,0.0 +12115,65,21.05,16,0.0 +12115,18,62.5,25,0.0 +12115,68,12.5,32,0.0 +12115,34,14,18,0.0 +12115,72,34.8,43,0.0 +12115,33,2.5,48,0.0 +12115,23,9,26,0.0 +12115,53,32.8,10,0.0 +12115,54,7.45,45,0.0 +12115,46,12,10,0.0 +12115,17,39,36,0.0 +12115,76,18,26,0.0 +12115,52,7,9,0.0 +12115,70,15,47,0.0 +12115,35,18,6,0.0 +12115,56,38,40,0.0 +12115,10,31,18,0.0 +12115,22,21,12,0.0 +12115,71,21.5,12,0.0 +12115,4,22,1,0.0 +12115,67,14,42,0.0 +12115,11,21,18,0.0 +12115,64,33.25,4,0.0 +12115,16,17.45,30,0.0 +12115,5,21.35,11,0.0 +12115,29,123.79,9,0.0 +12115,19,9.2,3,0.0 +12115,44,19.45,31,0.0 +12115,63,43.9,28,0.0 +12115,75,7.75,12,0.0 +12115,7,30,2,0.0 +12115,73,15,33,0.0 +12115,28,45.6,28,0.0 +12115,6,25,29,0.0 +12115,12,38,15,0.0 +12115,61,28.5,47,0.0 +12115,77,13,20,0.0 +12115,15,15.5,40,0.0 +12115,66,17,30,0.0 +12115,59,55,9,0.0 +12115,50,16.25,45,0.0 +12115,2,19,50,0.0 +12115,48,12.75,37,0.0 +12115,30,25.89,7,0.0 +12116,50,16.25,24,0.0 +12116,52,7,18,0.0 +12116,24,4.5,16,0.0 +12116,22,21,16,0.0 +12116,2,19,47,0.0 +12116,37,26,50,0.0 +12116,51,53,12,0.0 +12116,36,19,14,0.0 +12116,29,123.79,21,0.0 +12116,38,263.5,11,0.0 +12116,68,12.5,20,0.0 +12116,45,9.5,50,0.0 +12116,49,20,45,0.0 +12116,70,15,12,0.0 +12116,44,19.45,43,0.0 +12116,31,12.5,14,0.0 +12116,26,31.23,15,0.0 +12116,48,12.75,40,0.0 +12116,47,9.5,32,0.0 +12116,17,39,48,0.0 +12116,34,14,19,0.0 +12116,57,19.5,21,0.0 +12116,39,18,46,0.0 +12116,63,43.9,28,0.0 +12116,23,9,32,0.0 +12116,41,9.65,44,0.0 +12116,32,32,36,0.0 +12116,60,34,28,0.0 +12116,46,12,6,0.0 +12116,12,38,1,0.0 +12116,61,28.5,27,0.0 +12116,75,7.75,18,0.0 +12116,77,13,5,0.0 +12116,15,15.5,45,0.0 +12116,11,21,36,0.0 +12116,71,21.5,38,0.0 +12116,58,13.25,23,0.0 +12116,27,43.9,39,0.0 +12116,1,18,22,0.0 +12116,28,45.6,35,0.0 +12117,39,18,45,0.0 +12117,58,13.25,17,0.0 +12117,68,12.5,36,0.0 +12117,53,32.8,42,0.0 +12117,73,15,14,0.0 +12117,19,9.2,15,0.0 +12117,23,9,3,0.0 +12117,67,14,12,0.0 +12117,15,15.5,28,0.0 +12117,75,7.75,15,0.0 +12117,9,97,19,0.0 +12117,64,33.25,41,0.0 +12117,55,24,30,0.0 +12117,71,21.5,35,0.0 +12118,42,14,20,0.0 +12118,8,40,23,0.0 +12118,68,12.5,42,0.0 +12118,31,12.5,17,0.0 +12118,35,18,1,0.0 +12118,66,17,50,0.0 +12118,15,15.5,10,0.0 +12118,62,49.3,16,0.0 +12118,9,97,48,0.0 +12118,12,38,46,0.0 +12118,14,23.25,29,0.0 +12118,74,10,28,0.0 +12118,29,123.79,35,0.0 +12118,23,9,25,0.0 +12118,37,26,18,0.0 +12118,18,62.5,30,0.0 +12118,22,21,15,0.0 +12118,77,13,10,0.0 +12118,2,19,13,0.0 +12118,21,10,39,0.0 +12118,70,15,20,0.0 +12118,63,43.9,26,0.0 +12118,64,33.25,40,0.0 +12118,24,4.5,16,0.0 +12118,11,21,22,0.0 +12118,20,81,5,0.0 +12118,55,24,22,0.0 +12118,67,14,22,0.0 +12118,5,21.35,23,0.0 +12118,34,14,38,0.0 +12118,27,43.9,17,0.0 +12118,44,19.45,19,0.0 +12118,38,263.5,48,0.0 +12118,51,53,25,0.0 +12118,49,20,4,0.0 +12118,32,32,44,0.0 +12118,25,14,28,0.0 +12118,17,39,11,0.0 +12118,59,55,44,0.0 +12118,57,19.5,26,0.0 +12118,39,18,30,0.0 +12118,54,7.45,26,0.0 +12118,6,25,43,0.0 +12118,61,28.5,40,0.0 +12119,26,31.23,9,0.0 +12119,58,13.25,35,0.0 +12119,40,18.4,21,0.0 +12119,45,9.5,37,0.0 +12119,57,19.5,39,0.0 +12119,9,97,10,0.0 +12119,17,39,2,0.0 +12119,8,40,43,0.0 +12119,2,19,40,0.0 +12119,27,43.9,26,0.0 +12119,22,21,7,0.0 +12119,47,9.5,24,0.0 +12119,43,46,45,0.0 +12119,11,21,22,0.0 +12119,35,18,50,0.0 +12119,38,263.5,42,0.0 +12119,54,7.45,8,0.0 +12119,72,34.8,23,0.0 +12119,42,14,8,0.0 +12119,66,17,22,0.0 +12120,76,18,18,0.0 +12120,15,15.5,8,0.0 +12120,36,19,5,0.0 +12120,53,32.8,29,0.0 +12120,41,9.65,49,0.0 +12120,6,25,31,0.0 +12120,30,25.89,36,0.0 +12120,20,81,2,0.0 +12120,13,6,40,0.0 +12120,65,21.05,31,0.0 +12120,60,34,36,0.0 +12120,31,12.5,28,0.0 +12120,58,13.25,21,0.0 +12120,64,33.25,1,0.0 +12120,43,46,19,0.0 +12120,5,21.35,29,0.0 +12120,44,19.45,43,0.0 +12120,69,36,37,0.0 +12120,68,12.5,21,0.0 +12120,1,18,16,0.0 +12120,38,263.5,45,0.0 +12120,50,16.25,29,0.0 +12120,61,28.5,19,0.0 +12120,10,31,26,0.0 +12120,52,7,17,0.0 +12120,2,19,19,0.0 +12120,33,2.5,26,0.0 +12120,45,9.5,45,0.0 +12120,11,21,20,0.0 +12120,9,97,32,0.0 +12120,23,9,38,0.0 +12120,57,19.5,39,0.0 +12120,22,21,19,0.0 +12120,27,43.9,12,0.0 +12120,66,17,19,0.0 +12120,25,14,34,0.0 +12120,47,9.5,4,0.0 +12120,74,10,14,0.0 +12120,17,39,27,0.0 +12120,35,18,50,0.0 +12120,75,7.75,1,0.0 +12120,34,14,41,0.0 +12120,51,53,37,0.0 +12120,40,18.4,21,0.0 +12120,24,4.5,15,0.0 +12120,42,14,39,0.0 +12121,7,30,4,0.0 +12121,40,18.4,21,0.0 +12121,41,9.65,44,0.0 +12121,15,15.5,41,0.0 +12121,55,24,49,0.0 +12121,67,14,32,0.0 +12121,11,21,1,0.0 +12121,6,25,38,0.0 +12121,31,12.5,45,0.0 +12121,20,81,48,0.0 +12121,8,40,47,0.0 +12121,64,33.25,28,0.0 +12121,5,21.35,4,0.0 +12121,47,9.5,5,0.0 +12121,70,15,32,0.0 +12121,43,46,13,0.0 +12121,65,21.05,33,0.0 +12121,73,15,40,0.0 +12121,37,26,16,0.0 +12121,14,23.25,12,0.0 +12121,60,34,37,0.0 +12121,24,4.5,1,0.0 +12121,75,7.75,7,0.0 +12121,17,39,45,0.0 +12121,34,14,16,0.0 +12121,58,13.25,8,0.0 +12121,18,62.5,44,0.0 +12121,56,38,39,0.0 +12121,22,21,47,0.0 +12121,61,28.5,17,0.0 +12121,66,17,40,0.0 +12121,62,49.3,46,0.0 +12121,59,55,50,0.0 +12121,12,38,18,0.0 +12121,49,20,16,0.0 +12121,26,31.23,10,0.0 +12121,1,18,31,0.0 +12121,9,97,39,0.0 +12121,69,36,3,0.0 +12121,38,263.5,39,0.0 +12121,32,32,45,0.0 +12121,27,43.9,30,0.0 +12121,74,10,36,0.0 +12121,35,18,14,0.0 +12121,28,45.6,27,0.0 +12121,71,21.5,45,0.0 +12121,33,2.5,30,0.0 +12121,39,18,1,0.0 +12121,51,53,26,0.0 +12121,44,19.45,33,0.0 +12121,63,43.9,32,0.0 +12121,23,9,27,0.0 +12121,50,16.25,44,0.0 +12121,36,19,2,0.0 +12121,29,123.79,47,0.0 +12121,2,19,29,0.0 +12121,54,7.45,27,0.0 +12121,13,6,20,0.0 +12121,19,9.2,34,0.0 +12121,21,10,44,0.0 +12122,76,18,18,0.0 +12122,66,17,4,0.0 +12122,28,45.6,23,0.0 +12122,20,81,13,0.0 +12122,77,13,25,0.0 +12122,73,15,12,0.0 +12122,70,15,17,0.0 +12122,2,19,9,0.0 +12122,57,19.5,26,0.0 +12122,41,9.65,22,0.0 +12122,45,9.5,39,0.0 +12122,3,10,21,0.0 +12122,26,31.23,38,0.0 +12122,47,9.5,30,0.0 +12122,68,12.5,44,0.0 +12122,25,14,35,0.0 +12122,44,19.45,47,0.0 +12122,71,21.5,18,0.0 +12122,53,32.8,13,0.0 +12122,4,22,31,0.0 +12122,19,9.2,37,0.0 +12122,40,18.4,13,0.0 +12122,34,14,19,0.0 +12122,37,26,7,0.0 +12122,59,55,1,0.0 +12122,31,12.5,32,0.0 +12122,67,14,42,0.0 +12122,23,9,2,0.0 +12122,13,6,33,0.0 +12122,69,36,33,0.0 +12122,65,21.05,15,0.0 +12122,55,24,19,0.0 +12122,72,34.8,32,0.0 +12122,43,46,50,0.0 +12122,10,31,14,0.0 +12122,63,43.9,6,0.0 +12122,49,20,43,0.0 +12122,56,38,4,0.0 +12122,15,15.5,45,0.0 +12122,7,30,24,0.0 +12122,60,34,45,0.0 +12122,51,53,38,0.0 +12122,16,17.45,9,0.0 +12122,58,13.25,16,0.0 +12122,1,18,29,0.0 +12122,9,97,46,0.0 +12122,17,39,17,0.0 +12122,50,16.25,12,0.0 +12122,6,25,6,0.0 +12122,46,12,42,0.0 +12122,30,25.89,2,0.0 +12122,29,123.79,35,0.0 +12122,48,12.75,16,0.0 +12122,24,4.5,24,0.0 +12122,61,28.5,49,0.0 +12122,33,2.5,6,0.0 +12122,38,263.5,13,0.0 +12122,74,10,8,0.0 +12122,52,7,31,0.0 +12122,35,18,5,0.0 +12122,22,21,20,0.0 +12122,21,10,35,0.0 +12123,4,22,13,0.0 +12123,76,18,22,0.0 +12123,65,21.05,40,0.0 +12123,13,6,21,0.0 +12123,17,39,23,0.0 +12123,61,28.5,43,0.0 +12123,42,14,20,0.0 +12123,73,15,8,0.0 +12123,32,32,17,0.0 +12123,16,17.45,23,0.0 +12123,50,16.25,42,0.0 +12123,38,263.5,42,0.0 +12123,49,20,11,0.0 +12123,5,21.35,34,0.0 +12123,69,36,7,0.0 +12124,64,33.25,33,0.0 +12124,8,40,28,0.0 +12124,32,32,22,0.0 +12124,62,49.3,20,0.0 +12124,53,32.8,40,0.0 +12124,40,18.4,37,0.0 +12124,42,14,45,0.0 +12124,16,17.45,50,0.0 +12124,22,21,39,0.0 +12124,63,43.9,47,0.0 +12124,18,62.5,19,0.0 +12124,71,21.5,18,0.0 +12124,72,34.8,47,0.0 +12124,24,4.5,12,0.0 +12124,21,10,8,0.0 +12124,60,34,21,0.0 +12124,6,25,9,0.0 +12124,3,10,25,0.0 +12124,49,20,36,0.0 +12124,27,43.9,2,0.0 +12124,41,9.65,47,0.0 +12124,65,21.05,34,0.0 +12124,17,39,12,0.0 +12124,25,14,16,0.0 +12124,2,19,43,0.0 +12124,29,123.79,1,0.0 +12124,5,21.35,30,0.0 +12124,1,18,46,0.0 +12124,39,18,33,0.0 +12124,33,2.5,7,0.0 +12124,51,53,23,0.0 +12124,35,18,12,0.0 +12124,73,15,12,0.0 +12124,55,24,21,0.0 +12124,76,18,3,0.0 +12124,43,46,7,0.0 +12124,11,21,16,0.0 +12124,52,7,26,0.0 +12124,13,6,46,0.0 +12125,22,21,3,0.0 +12125,61,28.5,27,0.0 +12125,24,4.5,50,0.0 +12125,18,62.5,5,0.0 +12125,60,34,31,0.0 +12125,40,18.4,4,0.0 +12125,13,6,20,0.0 +12125,37,26,44,0.0 +12125,54,7.45,19,0.0 +12125,28,45.6,8,0.0 +12125,3,10,50,0.0 +12125,36,19,26,0.0 +12125,33,2.5,30,0.0 +12125,77,13,22,0.0 +12125,4,22,19,0.0 +12125,64,33.25,12,0.0 +12125,68,12.5,9,0.0 +12125,12,38,13,0.0 +12125,62,49.3,22,0.0 +12125,2,19,41,0.0 +12125,27,43.9,45,0.0 +12125,76,18,44,0.0 +12125,59,55,22,0.0 +12125,66,17,12,0.0 +12125,45,9.5,49,0.0 +12125,16,17.45,21,0.0 +12125,48,12.75,12,0.0 +12125,19,9.2,14,0.0 +12125,41,9.65,26,0.0 +12125,75,7.75,4,0.0 +12125,9,97,32,0.0 +12125,35,18,35,0.0 +12125,73,15,4,0.0 +12125,43,46,1,0.0 +12125,10,31,6,0.0 +12125,39,18,41,0.0 +12125,71,21.5,40,0.0 +12125,49,20,3,0.0 +12125,74,10,42,0.0 +12125,55,24,21,0.0 +12126,8,40,1,0.0 +12126,64,33.25,19,0.0 +12126,67,14,47,0.0 +12126,44,19.45,6,0.0 +12126,16,17.45,31,0.0 +12126,27,43.9,28,0.0 +12126,41,9.65,40,0.0 +12126,55,24,36,0.0 +12126,7,30,10,0.0 +12126,34,14,45,0.0 +12126,49,20,26,0.0 +12126,40,18.4,50,0.0 +12126,76,18,18,0.0 +12126,20,81,14,0.0 +12126,70,15,43,0.0 +12126,68,12.5,18,0.0 +12126,38,263.5,50,0.0 +12126,60,34,19,0.0 +12126,18,62.5,30,0.0 +12126,35,18,12,0.0 +12126,47,9.5,13,0.0 +12126,21,10,44,0.0 +12126,43,46,28,0.0 +12126,14,23.25,49,0.0 +12126,57,19.5,24,0.0 +12126,66,17,24,0.0 +12126,10,31,39,0.0 +12126,69,36,30,0.0 +12126,11,21,28,0.0 +12126,62,49.3,37,0.0 +12126,71,21.5,44,0.0 +12126,33,2.5,15,0.0 +12126,46,12,24,0.0 +12126,58,13.25,46,0.0 +12126,63,43.9,38,0.0 +12126,22,21,25,0.0 +12126,1,18,38,0.0 +12126,15,15.5,13,0.0 +12126,56,38,26,0.0 +12126,2,19,2,0.0 +12126,6,25,23,0.0 +12126,31,12.5,4,0.0 +12126,24,4.5,2,0.0 +12126,17,39,40,0.0 +12126,9,97,37,0.0 +12126,72,34.8,16,0.0 +12126,73,15,12,0.0 +12126,42,14,12,0.0 +12127,60,34,44,0.0 +12127,70,15,46,0.0 +12127,68,12.5,27,0.0 +12127,8,40,35,0.0 +12127,66,17,28,0.0 +12127,28,45.6,48,0.0 +12127,2,19,38,0.0 +12127,14,23.25,49,0.0 +12127,7,30,45,0.0 +12127,17,39,38,0.0 +12127,75,7.75,33,0.0 +12127,36,19,8,0.0 +12127,10,31,16,0.0 +12127,65,21.05,28,0.0 +12127,42,14,5,0.0 +12127,71,21.5,34,0.0 +12127,6,25,12,0.0 +12127,41,9.65,6,0.0 +12127,53,32.8,10,0.0 +12127,45,9.5,26,0.0 +12127,39,18,31,0.0 +12127,72,34.8,5,0.0 +12127,47,9.5,13,0.0 +12127,46,12,50,0.0 +12127,51,53,28,0.0 +12127,35,18,30,0.0 +12127,33,2.5,46,0.0 +12127,67,14,5,0.0 +12127,37,26,46,0.0 +12127,15,15.5,11,0.0 +12127,4,22,29,0.0 +12127,57,19.5,43,0.0 +12127,52,7,28,0.0 +12127,54,7.45,40,0.0 +12127,43,46,30,0.0 +12127,12,38,25,0.0 +12127,55,24,1,0.0 +12127,73,15,33,0.0 +12127,40,18.4,4,0.0 +12127,21,10,4,0.0 +12127,32,32,13,0.0 +12127,59,55,33,0.0 +12127,13,6,8,0.0 +12127,69,36,22,0.0 +12127,48,12.75,43,0.0 +12127,19,9.2,43,0.0 +12127,58,13.25,8,0.0 +12127,38,263.5,17,0.0 +12127,9,97,26,0.0 +12128,12,38,24,0.0 +12128,66,17,26,0.0 +12128,65,21.05,2,0.0 +12128,29,123.79,34,0.0 +12128,42,14,12,0.0 +12128,50,16.25,5,0.0 +12128,67,14,23,0.0 +12128,56,38,10,0.0 +12128,8,40,36,0.0 +12128,60,34,36,0.0 +12128,26,31.23,6,0.0 +12128,43,46,48,0.0 +12128,30,25.89,41,0.0 +12128,14,23.25,3,0.0 +12128,54,7.45,5,0.0 +12128,48,12.75,3,0.0 +12128,33,2.5,43,0.0 +12128,11,21,43,0.0 +12128,25,14,50,0.0 +12128,75,7.75,1,0.0 +12129,8,40,30,0.0 +12129,31,12.5,32,0.0 +12129,69,36,14,0.0 +12130,37,26,31,0.0 +12130,71,21.5,45,0.0 +12130,35,18,13,0.0 +12130,72,34.8,41,0.0 +12130,67,14,26,0.0 +12130,48,12.75,1,0.0 +12130,22,21,11,0.0 +12130,23,9,12,0.0 +12130,55,24,36,0.0 +12130,1,18,50,0.0 +12130,5,21.35,23,0.0 +12130,76,18,43,0.0 +12130,3,10,12,0.0 +12130,4,22,4,0.0 +12130,68,12.5,12,0.0 +12130,33,2.5,6,0.0 +12130,9,97,10,0.0 +12130,47,9.5,35,0.0 +12130,66,17,44,0.0 +12130,49,20,17,0.0 +12130,7,30,17,0.0 +12130,77,13,20,0.0 +12130,20,81,44,0.0 +12130,13,6,45,0.0 +12130,31,12.5,41,0.0 +12130,62,49.3,45,0.0 +12130,63,43.9,8,0.0 +12130,21,10,7,0.0 +12130,43,46,4,0.0 +12130,51,53,1,0.0 +12130,54,7.45,34,0.0 +12130,74,10,5,0.0 +12130,58,13.25,26,0.0 +12130,46,12,2,0.0 +12130,56,38,43,0.0 +12130,17,39,44,0.0 +12130,28,45.6,1,0.0 +12130,26,31.23,24,0.0 +12130,39,18,43,0.0 +12130,61,28.5,41,0.0 +12130,27,43.9,38,0.0 +12130,41,9.65,4,0.0 +12130,44,19.45,1,0.0 +12130,25,14,28,0.0 +12130,53,32.8,45,0.0 +12130,57,19.5,47,0.0 +12130,29,123.79,7,0.0 +12130,11,21,15,0.0 +12130,42,14,30,0.0 +12130,64,33.25,43,0.0 +12130,15,15.5,9,0.0 +12130,40,18.4,6,0.0 +12130,65,21.05,15,0.0 +12130,52,7,46,0.0 +12130,14,23.25,3,0.0 +12130,6,25,14,0.0 +12130,12,38,4,0.0 +12130,8,40,14,0.0 +12130,60,34,38,0.0 +12130,70,15,28,0.0 +12130,75,7.75,41,0.0 +12130,45,9.5,20,0.0 +12130,16,17.45,22,0.0 +12130,73,15,9,0.0 +12130,2,19,11,0.0 +12130,19,9.2,46,0.0 +12130,38,263.5,39,0.0 +12130,50,16.25,3,0.0 +12130,59,55,30,0.0 +12130,18,62.5,27,0.0 +12130,34,14,50,0.0 +12130,32,32,45,0.0 +12130,69,36,47,0.0 +12131,55,24,46,0.0 +12131,9,97,29,0.0 +12131,33,2.5,41,0.0 +12131,41,9.65,45,0.0 +12131,37,26,28,0.0 +12131,32,32,8,0.0 +12131,1,18,10,0.0 +12131,77,13,49,0.0 +12131,21,10,32,0.0 +12131,26,31.23,10,0.0 +12131,57,19.5,1,0.0 +12131,47,9.5,34,0.0 +12131,75,7.75,41,0.0 +12131,6,25,7,0.0 +12131,40,18.4,46,0.0 +12131,43,46,25,0.0 +12131,28,45.6,40,0.0 +12131,76,18,41,0.0 +12131,36,19,12,0.0 +12131,52,7,47,0.0 +12131,35,18,12,0.0 +12131,4,22,3,0.0 +12131,48,12.75,30,0.0 +12131,70,15,5,0.0 +12131,72,34.8,50,0.0 +12131,11,21,39,0.0 +12131,23,9,36,0.0 +12131,68,12.5,13,0.0 +12131,53,32.8,50,0.0 +12131,12,38,23,0.0 +12131,16,17.45,30,0.0 +12131,24,4.5,50,0.0 +12131,19,9.2,34,0.0 +12131,42,14,1,0.0 +12131,74,10,34,0.0 +12131,61,28.5,17,0.0 +12131,65,21.05,24,0.0 +12131,49,20,13,0.0 +12131,10,31,35,0.0 +12131,13,6,32,0.0 +12131,71,21.5,17,0.0 +12131,22,21,20,0.0 +12131,45,9.5,33,0.0 +12131,64,33.25,14,0.0 +12131,63,43.9,4,0.0 +12131,30,25.89,49,0.0 +12131,18,62.5,4,0.0 +12131,66,17,22,0.0 +12131,17,39,21,0.0 +12132,77,13,10,0.0 +12132,61,28.5,42,0.0 +12132,11,21,14,0.0 +12132,64,33.25,26,0.0 +12132,43,46,7,0.0 +12132,25,14,36,0.0 +12132,1,18,13,0.0 +12132,16,17.45,31,0.0 +12132,31,12.5,11,0.0 +12132,40,18.4,36,0.0 +12132,9,97,25,0.0 +12132,42,14,45,0.0 +12132,15,15.5,18,0.0 +12132,23,9,43,0.0 +12132,45,9.5,30,0.0 +12132,63,43.9,23,0.0 +12132,52,7,23,0.0 +12132,76,18,40,0.0 +12132,8,40,20,0.0 +12132,49,20,39,0.0 +12132,59,55,6,0.0 +12132,41,9.65,2,0.0 +12132,10,31,48,0.0 +12132,54,7.45,20,0.0 +12132,36,19,27,0.0 +12132,33,2.5,35,0.0 +12132,35,18,2,0.0 +12132,21,10,10,0.0 +12132,57,19.5,33,0.0 +12132,37,26,32,0.0 +12132,66,17,8,0.0 +12132,19,9.2,45,0.0 +12132,55,24,32,0.0 +12132,74,10,18,0.0 +12132,32,32,13,0.0 +12132,17,39,29,0.0 +12132,75,7.75,8,0.0 +12132,6,25,12,0.0 +12132,44,19.45,28,0.0 +12132,72,34.8,24,0.0 +12133,48,12.75,39,0.0 +12133,39,18,46,0.0 +12133,43,46,26,0.0 +12133,36,19,22,0.0 +12133,28,45.6,49,0.0 +12133,45,9.5,10,0.0 +12133,42,14,5,0.0 +12133,46,12,5,0.0 +12133,2,19,37,0.0 +12133,64,33.25,13,0.0 +12133,37,26,26,0.0 +12133,75,7.75,46,0.0 +12133,7,30,35,0.0 +12133,56,38,32,0.0 +12133,66,17,35,0.0 +12133,4,22,18,0.0 +12133,21,10,45,0.0 +12133,30,25.89,50,0.0 +12133,20,81,43,0.0 +12133,33,2.5,37,0.0 +12133,68,12.5,22,0.0 +12133,72,34.8,8,0.0 +12133,38,263.5,50,0.0 +12133,71,21.5,14,0.0 +12133,5,21.35,36,0.0 +12133,65,21.05,14,0.0 +12133,29,123.79,31,0.0 +12133,74,10,3,0.0 +12133,54,7.45,36,0.0 +12133,60,34,32,0.0 +12133,1,18,45,0.0 +12133,22,21,15,0.0 +12133,3,10,42,0.0 +12133,47,9.5,24,0.0 +12133,24,4.5,50,0.0 +12133,10,31,13,0.0 +12133,23,9,35,0.0 +12133,11,21,43,0.0 +12133,44,19.45,24,0.0 +12133,70,15,7,0.0 +12133,41,9.65,26,0.0 +12133,51,53,41,0.0 +12133,57,19.5,21,0.0 +12133,34,14,31,0.0 +12133,62,49.3,28,0.0 +12133,49,20,5,0.0 +12133,50,16.25,20,0.0 +12133,76,18,16,0.0 +12133,63,43.9,32,0.0 +12133,59,55,19,0.0 +12133,9,97,21,0.0 +12134,22,21,43,0.0 +12134,46,12,22,0.0 +12134,53,32.8,44,0.0 +12134,20,81,39,0.0 +12134,11,21,40,0.0 +12134,43,46,4,0.0 +12134,73,15,50,0.0 +12134,5,21.35,38,0.0 +12134,70,15,26,0.0 +12134,42,14,45,0.0 +12134,29,123.79,42,0.0 +12134,3,10,47,0.0 +12134,38,263.5,38,0.0 +12134,34,14,2,0.0 +12134,37,26,44,0.0 +12134,65,21.05,47,0.0 +12134,60,34,50,0.0 +12134,30,25.89,48,0.0 +12134,1,18,17,0.0 +12134,14,23.25,4,0.0 +12134,33,2.5,49,0.0 +12134,25,14,32,0.0 +12134,23,9,27,0.0 +12134,77,13,6,0.0 +12134,48,12.75,30,0.0 +12135,75,7.75,33,0.0 +12135,64,33.25,28,0.0 +12135,7,30,14,0.0 +12135,63,43.9,26,0.0 +12135,14,23.25,16,0.0 +12135,47,9.5,46,0.0 +12135,28,45.6,40,0.0 +12135,53,32.8,49,0.0 +12135,48,12.75,13,0.0 +12135,15,15.5,7,0.0 +12135,71,21.5,8,0.0 +12135,6,25,5,0.0 +12135,31,12.5,50,0.0 +12135,24,4.5,26,0.0 +12135,50,16.25,31,0.0 +12135,52,7,24,0.0 +12135,29,123.79,25,0.0 +12135,13,6,36,0.0 +12135,5,21.35,38,0.0 +12135,77,13,25,0.0 +12135,2,19,36,0.0 +12135,30,25.89,25,0.0 +12135,9,97,28,0.0 +12135,22,21,23,0.0 +12135,40,18.4,23,0.0 +12135,54,7.45,17,0.0 +12135,36,19,14,0.0 +12135,43,46,41,0.0 +12135,76,18,8,0.0 +12135,20,81,35,0.0 +12135,10,31,22,0.0 +12135,21,10,35,0.0 +12135,39,18,15,0.0 +12135,46,12,47,0.0 +12135,45,9.5,14,0.0 +12135,12,38,48,0.0 +12135,11,21,17,0.0 +12135,17,39,35,0.0 +12135,1,18,30,0.0 +12135,55,24,4,0.0 +12135,74,10,7,0.0 +12135,18,62.5,41,0.0 +12135,41,9.65,6,0.0 +12135,25,14,44,0.0 +12135,44,19.45,1,0.0 +12135,3,10,36,0.0 +12135,70,15,47,0.0 +12135,51,53,18,0.0 +12135,66,17,27,0.0 +12135,19,9.2,10,0.0 +12135,62,49.3,5,0.0 +12135,33,2.5,17,0.0 +12135,69,36,15,0.0 +12135,59,55,26,0.0 +12135,38,263.5,14,0.0 +12135,32,32,14,0.0 +12135,23,9,18,0.0 +12135,65,21.05,1,0.0 +12135,68,12.5,1,0.0 +12135,57,19.5,36,0.0 +12135,37,26,48,0.0 +12135,60,34,37,0.0 +12135,72,34.8,40,0.0 +12135,61,28.5,24,0.0 +12136,17,39,12,0.0 +12136,62,49.3,5,0.0 +12136,50,16.25,1,0.0 +12136,11,21,31,0.0 +12136,37,26,35,0.0 +12136,18,62.5,33,0.0 +12136,44,19.45,25,0.0 +12136,8,40,20,0.0 +12136,7,30,4,0.0 +12136,72,34.8,10,0.0 +12136,56,38,31,0.0 +12136,15,15.5,40,0.0 +12136,75,7.75,3,0.0 +12136,59,55,36,0.0 +12136,38,263.5,26,0.0 +12136,55,24,32,0.0 +12136,40,18.4,28,0.0 +12136,41,9.65,29,0.0 +12136,39,18,38,0.0 +12136,32,32,24,0.0 +12136,69,36,36,0.0 +12136,24,4.5,30,0.0 +12136,13,6,19,0.0 +12136,6,25,21,0.0 +12136,71,21.5,43,0.0 +12136,47,9.5,40,0.0 +12136,34,14,45,0.0 +12136,46,12,37,0.0 +12136,66,17,34,0.0 +12136,73,15,22,0.0 +12136,45,9.5,40,0.0 +12136,5,21.35,22,0.0 +12136,9,97,49,0.0 +12136,3,10,43,0.0 +12136,76,18,5,0.0 +12136,31,12.5,23,0.0 +12136,53,32.8,35,0.0 +12136,67,14,50,0.0 +12137,40,18.4,29,0.0 +12137,36,19,21,0.0 +12137,29,123.79,6,0.0 +12138,62,49.3,22,0.0 +12138,4,22,48,0.0 +12138,45,9.5,50,0.0 +12138,15,15.5,26,0.0 +12138,11,21,39,0.0 +12138,42,14,5,0.0 +12138,67,14,41,0.0 +12138,33,2.5,39,0.0 +12138,7,30,33,0.0 +12138,25,14,43,0.0 +12139,40,18.4,23,0.0 +12139,24,4.5,5,0.0 +12139,1,18,11,0.0 +12139,33,2.5,3,0.0 +12139,36,19,29,0.0 +12139,8,40,11,0.0 +12139,49,20,41,0.0 +12139,46,12,5,0.0 +12139,76,18,33,0.0 +12139,25,14,13,0.0 +12139,30,25.89,39,0.0 +12139,22,21,34,0.0 +12139,66,17,3,0.0 +12139,47,9.5,17,0.0 +12139,16,17.45,12,0.0 +12139,55,24,38,0.0 +12139,62,49.3,31,0.0 +12139,41,9.65,9,0.0 +12139,54,7.45,31,0.0 +12139,10,31,15,0.0 +12139,5,21.35,44,0.0 +12139,64,33.25,14,0.0 +12139,14,23.25,16,0.0 +12139,26,31.23,9,0.0 +12139,35,18,40,0.0 +12139,58,13.25,38,0.0 +12139,2,19,22,0.0 +12139,18,62.5,36,0.0 +12139,3,10,48,0.0 +12140,51,53,40,0.0 +12140,7,30,26,0.0 +12140,50,16.25,13,0.0 +12140,66,17,22,0.0 +12141,49,20,10,0.0 +12141,41,9.65,26,0.0 +12141,45,9.5,20,0.0 +12141,2,19,23,0.0 +12141,52,7,41,0.0 +12141,59,55,21,0.0 +12141,48,12.75,27,0.0 +12141,39,18,35,0.0 +12141,65,21.05,6,0.0 +12141,12,38,8,0.0 +12142,75,7.75,40,0.0 +12142,69,36,20,0.0 +12142,61,28.5,3,0.0 +12142,13,6,32,0.0 +12142,46,12,38,0.0 +12142,48,12.75,27,0.0 +12142,28,45.6,19,0.0 +12142,53,32.8,15,0.0 +12142,5,21.35,17,0.0 +12142,8,40,40,0.0 +12142,20,81,12,0.0 +12142,10,31,26,0.0 +12142,57,19.5,43,0.0 +12142,43,46,25,0.0 +12142,38,263.5,32,0.0 +12142,68,12.5,41,0.0 +12142,22,21,7,0.0 +12142,73,15,28,0.0 +12142,41,9.65,10,0.0 +12142,12,38,16,0.0 +12142,55,24,44,0.0 +12142,60,34,18,0.0 +12142,14,23.25,34,0.0 +12142,56,38,19,0.0 +12142,9,97,46,0.0 +12142,67,14,10,0.0 +12142,31,12.5,44,0.0 +12142,52,7,8,0.0 +12142,49,20,44,0.0 +12142,74,10,24,0.0 +12142,37,26,9,0.0 +12142,40,18.4,28,0.0 +12142,58,13.25,36,0.0 +12142,6,25,40,0.0 +12142,23,9,43,0.0 +12142,39,18,40,0.0 +12142,11,21,20,0.0 +12142,65,21.05,32,0.0 +12142,2,19,23,0.0 +12142,62,49.3,11,0.0 +12142,36,19,4,0.0 +12142,42,14,20,0.0 +12142,59,55,6,0.0 +12142,27,43.9,37,0.0 +12142,76,18,30,0.0 +12142,18,62.5,29,0.0 +12142,24,4.5,9,0.0 +12142,32,32,39,0.0 +12142,50,16.25,2,0.0 +12142,66,17,35,0.0 +12142,64,33.25,18,0.0 +12142,15,15.5,11,0.0 +12142,71,21.5,16,0.0 +12142,35,18,42,0.0 +12142,70,15,30,0.0 +12142,54,7.45,20,0.0 +12142,16,17.45,1,0.0 +12142,26,31.23,41,0.0 +12142,7,30,36,0.0 +12142,4,22,45,0.0 +12142,30,25.89,42,0.0 +12143,36,19,14,0.0 +12143,10,31,31,0.0 +12143,49,20,36,0.0 +12143,53,32.8,3,0.0 +12143,43,46,31,0.0 +12143,23,9,5,0.0 +12143,7,30,14,0.0 +12143,66,17,26,0.0 +12143,57,19.5,31,0.0 +12143,76,18,19,0.0 +12143,17,39,10,0.0 +12143,19,9.2,37,0.0 +12143,22,21,15,0.0 +12143,63,43.9,23,0.0 +12143,9,97,5,0.0 +12143,70,15,43,0.0 +12143,59,55,47,0.0 +12143,27,43.9,24,0.0 +12143,71,21.5,3,0.0 +12143,73,15,43,0.0 +12143,15,15.5,32,0.0 +12143,39,18,21,0.0 +12143,31,12.5,37,0.0 +12143,32,32,18,0.0 +12143,64,33.25,23,0.0 +12143,38,263.5,23,0.0 +12143,34,14,32,0.0 +12143,58,13.25,45,0.0 +12143,65,21.05,27,0.0 +12143,50,16.25,5,0.0 +12143,55,24,46,0.0 +12143,21,10,38,0.0 +12143,24,4.5,47,0.0 +12143,60,34,40,0.0 +12143,74,10,39,0.0 +12143,35,18,41,0.0 +12143,37,26,35,0.0 +12143,1,18,29,0.0 +12143,62,49.3,19,0.0 +12143,13,6,5,0.0 +12143,44,19.45,48,0.0 +12143,5,21.35,33,0.0 +12143,33,2.5,46,0.0 +12143,14,23.25,15,0.0 +12143,41,9.65,50,0.0 +12143,29,123.79,30,0.0 +12143,52,7,44,0.0 +12143,72,34.8,19,0.0 +12143,26,31.23,11,0.0 +12143,40,18.4,16,0.0 +12143,47,9.5,19,0.0 +12143,46,12,49,0.0 +12143,77,13,50,0.0 +12143,2,19,11,0.0 +12143,48,12.75,46,0.0 +12143,28,45.6,48,0.0 +12143,67,14,14,0.0 +12143,75,7.75,8,0.0 +12143,56,38,31,0.0 +12143,11,21,10,0.0 +12143,20,81,14,0.0 +12143,8,40,47,0.0 +12144,62,49.3,3,0.0 +12144,15,15.5,5,0.0 +12144,13,6,15,0.0 +12144,5,21.35,4,0.0 +12144,17,39,1,0.0 +12144,33,2.5,5,0.0 +12144,14,23.25,42,0.0 +12144,22,21,38,0.0 +12144,63,43.9,26,0.0 +12144,39,18,35,0.0 +12144,2,19,5,0.0 +12144,40,18.4,2,0.0 +12144,68,12.5,32,0.0 +12144,72,34.8,31,0.0 +12144,44,19.45,7,0.0 +12144,67,14,46,0.0 +12144,32,32,46,0.0 +12144,9,97,33,0.0 +12144,6,25,34,0.0 +12144,59,55,23,0.0 +12144,20,81,7,0.0 +12144,45,9.5,43,0.0 +12144,11,21,44,0.0 +12144,76,18,49,0.0 +12144,51,53,13,0.0 +12144,60,34,50,0.0 +12144,54,7.45,19,0.0 +12144,42,14,11,0.0 +12144,61,28.5,40,0.0 +12144,69,36,42,0.0 +12144,31,12.5,39,0.0 +12144,53,32.8,15,0.0 +12144,52,7,45,0.0 +12144,57,19.5,17,0.0 +12144,49,20,26,0.0 +12144,73,15,1,0.0 +12144,18,62.5,32,0.0 +12144,36,19,36,0.0 +12144,64,33.25,32,0.0 +12144,1,18,5,0.0 +12144,47,9.5,15,0.0 +12144,28,45.6,21,0.0 +12144,21,10,43,0.0 +12144,19,9.2,49,0.0 +12144,65,21.05,28,0.0 +12144,74,10,48,0.0 +12144,71,21.5,24,0.0 +12144,34,14,15,0.0 +12144,8,40,6,0.0 +12144,27,43.9,21,0.0 +12144,41,9.65,46,0.0 +12144,26,31.23,22,0.0 +12144,37,26,35,0.0 +12144,43,46,29,0.0 +12144,77,13,41,0.0 +12144,4,22,1,0.0 +12144,25,14,32,0.0 +12144,55,24,27,0.0 +12144,12,38,39,0.0 +12144,3,10,33,0.0 +12144,48,12.75,47,0.0 +12144,30,25.89,17,0.0 +12144,70,15,16,0.0 +12144,29,123.79,10,0.0 +12144,58,13.25,30,0.0 +12144,23,9,1,0.0 +12144,16,17.45,23,0.0 +12144,10,31,9,0.0 +12144,24,4.5,46,0.0 +12144,7,30,19,0.0 +12144,38,263.5,41,0.0 +12144,56,38,39,0.0 +12144,46,12,8,0.0 +12144,66,17,22,0.0 +12144,35,18,25,0.0 +12144,50,16.25,8,0.0 +12145,68,12.5,50,0.0 +12145,8,40,10,0.0 +12145,67,14,1,0.0 +12145,49,20,25,0.0 +12145,72,34.8,48,0.0 +12145,76,18,31,0.0 +12145,17,39,31,0.0 +12145,28,45.6,26,0.0 +12145,60,34,42,0.0 +12145,69,36,22,0.0 +12145,6,25,32,0.0 +12145,22,21,37,0.0 +12145,11,21,29,0.0 +12145,53,32.8,7,0.0 +12145,75,7.75,3,0.0 +12145,10,31,13,0.0 +12145,58,13.25,14,0.0 +12145,59,55,8,0.0 +12145,64,33.25,47,0.0 +12145,40,18.4,9,0.0 +12145,36,19,33,0.0 +12145,65,21.05,28,0.0 +12145,30,25.89,40,0.0 +12145,18,62.5,48,0.0 +12145,61,28.5,17,0.0 +12145,56,38,41,0.0 +12145,44,19.45,14,0.0 +12145,57,19.5,3,0.0 +12145,26,31.23,15,0.0 +12145,41,9.65,29,0.0 +12145,62,49.3,3,0.0 +12145,25,14,41,0.0 +12145,13,6,47,0.0 +12145,20,81,28,0.0 +12145,9,97,19,0.0 +12145,55,24,40,0.0 +12145,7,30,47,0.0 +12145,33,2.5,39,0.0 +12145,5,21.35,22,0.0 +12145,35,18,21,0.0 +12145,45,9.5,25,0.0 +12145,71,21.5,36,0.0 +12145,43,46,6,0.0 +12145,1,18,36,0.0 +12145,48,12.75,43,0.0 +12145,2,19,14,0.0 +12145,77,13,43,0.0 +12145,46,12,49,0.0 +12145,15,15.5,8,0.0 +12145,42,14,27,0.0 +12145,34,14,15,0.0 +12145,24,4.5,37,0.0 +12145,31,12.5,41,0.0 +12145,23,9,20,0.0 +12145,21,10,24,0.0 +12145,4,22,25,0.0 +12145,37,26,45,0.0 +12145,52,7,25,0.0 +12145,74,10,4,0.0 +12145,12,38,50,0.0 +12145,14,23.25,35,0.0 +12145,54,7.45,29,0.0 +12145,66,17,5,0.0 +12145,27,43.9,39,0.0 +12145,51,53,30,0.0 +12145,19,9.2,13,0.0 +12145,16,17.45,45,0.0 +12145,73,15,10,0.0 +12145,70,15,25,0.0 +12145,32,32,44,0.0 +12145,63,43.9,25,0.0 +12146,31,12.5,28,0.0 +12146,9,97,18,0.0 +12146,68,12.5,4,0.0 +12146,16,17.45,11,0.0 +12146,60,34,6,0.0 +12146,8,40,13,0.0 +12146,61,28.5,41,0.0 +12146,33,2.5,44,0.0 +12146,48,12.75,33,0.0 +12146,21,10,50,0.0 +12146,24,4.5,32,0.0 +12146,64,33.25,15,0.0 +12146,36,19,34,0.0 +12146,42,14,25,0.0 +12146,52,7,2,0.0 +12146,15,15.5,35,0.0 +12146,14,23.25,40,0.0 +12146,17,39,24,0.0 +12146,29,123.79,5,0.0 +12146,44,19.45,22,0.0 +12146,37,26,44,0.0 +12146,19,9.2,35,0.0 +12146,75,7.75,10,0.0 +12146,18,62.5,36,0.0 +12146,57,19.5,45,0.0 +12146,27,43.9,36,0.0 +12146,35,18,32,0.0 +12146,50,16.25,13,0.0 +12146,12,38,14,0.0 +12146,73,15,6,0.0 +12146,67,14,1,0.0 +12146,3,10,35,0.0 +12146,45,9.5,19,0.0 +12146,5,21.35,26,0.0 +12146,26,31.23,38,0.0 +12146,11,21,22,0.0 +12146,43,46,4,0.0 +12146,32,32,18,0.0 +12146,77,13,35,0.0 +12146,55,24,36,0.0 +12146,59,55,32,0.0 +12146,23,9,35,0.0 +12146,39,18,24,0.0 +12146,69,36,36,0.0 +12146,63,43.9,20,0.0 +12146,6,25,11,0.0 +12146,51,53,45,0.0 +12146,22,21,36,0.0 +12146,41,9.65,4,0.0 +12146,47,9.5,38,0.0 +12146,40,18.4,18,0.0 +12146,34,14,39,0.0 +12146,2,19,16,0.0 +12146,25,14,31,0.0 +12146,72,34.8,20,0.0 +12146,74,10,44,0.0 +12146,70,15,12,0.0 +12146,62,49.3,6,0.0 +12146,1,18,9,0.0 +12146,58,13.25,22,0.0 +12146,4,22,14,0.0 +12146,76,18,41,0.0 +12146,54,7.45,44,0.0 +12146,56,38,45,0.0 +12146,28,45.6,46,0.0 +12146,65,21.05,23,0.0 +12146,20,81,29,0.0 +12146,30,25.89,27,0.0 +12146,13,6,4,0.0 +12146,38,263.5,29,0.0 +12146,66,17,26,0.0 +12146,46,12,30,0.0 +12146,7,30,6,0.0 +12146,53,32.8,22,0.0 +12147,27,43.9,14,0.0 +12147,40,18.4,23,0.0 +12147,8,40,41,0.0 +12147,34,14,42,0.0 +12147,63,43.9,42,0.0 +12147,7,30,46,0.0 +12147,71,21.5,36,0.0 +12147,59,55,1,0.0 +12147,18,62.5,39,0.0 +12147,25,14,33,0.0 +12147,46,12,2,0.0 +12147,51,53,14,0.0 +12147,4,22,29,0.0 +12147,69,36,28,0.0 +12147,44,19.45,35,0.0 +12147,61,28.5,45,0.0 +12147,56,38,20,0.0 +12147,76,18,15,0.0 +12147,66,17,22,0.0 +12147,24,4.5,48,0.0 +12147,26,31.23,23,0.0 +12147,60,34,23,0.0 +12147,21,10,19,0.0 +12147,15,15.5,7,0.0 +12147,47,9.5,45,0.0 +12147,38,263.5,46,0.0 +12147,33,2.5,20,0.0 +12147,13,6,25,0.0 +12147,70,15,2,0.0 +12147,43,46,40,0.0 +12147,28,45.6,29,0.0 +12147,10,31,10,0.0 +12147,65,21.05,40,0.0 +12147,74,10,10,0.0 +12147,73,15,13,0.0 +12147,75,7.75,34,0.0 +12147,14,23.25,5,0.0 +12147,9,97,8,0.0 +12147,41,9.65,9,0.0 +12147,50,16.25,30,0.0 +12147,2,19,6,0.0 +12147,67,14,41,0.0 +12147,3,10,1,0.0 +12147,22,21,2,0.0 +12147,5,21.35,2,0.0 +12147,23,9,20,0.0 +12147,37,26,16,0.0 +12147,45,9.5,12,0.0 +12147,16,17.45,11,0.0 +12147,52,7,37,0.0 +12147,77,13,8,0.0 +12147,57,19.5,28,0.0 +12147,68,12.5,15,0.0 +12147,17,39,33,0.0 +12147,19,9.2,24,0.0 +12147,39,18,47,0.0 +12147,49,20,17,0.0 +12147,64,33.25,15,0.0 +12147,29,123.79,49,0.0 +12147,42,14,43,0.0 +12147,35,18,39,0.0 +12147,11,21,8,0.0 +12147,62,49.3,37,0.0 +12147,20,81,41,0.0 +12147,30,25.89,15,0.0 +12147,1,18,10,0.0 +12147,53,32.8,38,0.0 +12147,36,19,30,0.0 +12147,58,13.25,27,0.0 +12147,12,38,39,0.0 +12147,6,25,12,0.0 +12147,54,7.45,47,0.0 +12147,55,24,12,0.0 +12147,72,34.8,10,0.0 +12147,32,32,14,0.0 +12147,31,12.5,49,0.0 +12147,48,12.75,9,0.0 +12148,49,20,8,0.0 +12148,26,31.23,50,0.0 +12148,64,33.25,30,0.0 +12148,1,18,8,0.0 +12148,63,43.9,49,0.0 +12148,21,10,20,0.0 +12148,10,31,33,0.0 +12148,2,19,11,0.0 +12148,39,18,42,0.0 +12148,19,9.2,11,0.0 +12148,30,25.89,35,0.0 +12148,41,9.65,17,0.0 +12148,61,28.5,46,0.0 +12148,59,55,35,0.0 +12148,57,19.5,48,0.0 +12148,66,17,42,0.0 +12148,76,18,45,0.0 +12148,34,14,29,0.0 +12148,17,39,28,0.0 +12148,6,25,47,0.0 +12148,68,12.5,7,0.0 +12148,65,21.05,47,0.0 +12148,24,4.5,11,0.0 +12148,31,12.5,27,0.0 +12148,72,34.8,31,0.0 +12148,55,24,21,0.0 +12148,37,26,24,0.0 +12148,47,9.5,42,0.0 +12148,18,62.5,27,0.0 +12148,36,19,5,0.0 +12148,20,81,44,0.0 +12148,74,10,12,0.0 +12148,15,15.5,24,0.0 +12148,40,18.4,41,0.0 +12148,8,40,22,0.0 +12149,12,38,20,0.0 +12149,60,34,7,0.0 +12149,72,34.8,12,0.0 +12149,34,14,10,0.0 +12149,41,9.65,46,0.0 +12149,66,17,46,0.0 +12149,70,15,13,0.0 +12149,36,19,41,0.0 +12149,63,43.9,19,0.0 +12149,51,53,2,0.0 +12149,24,4.5,35,0.0 +12149,21,10,2,0.0 +12149,27,43.9,41,0.0 +12149,3,10,9,0.0 +12149,33,2.5,9,0.0 +12149,11,21,23,0.0 +12150,20,81,46,0.0 +12150,30,25.89,6,0.0 +12150,43,46,47,0.0 +12150,33,2.5,25,0.0 +12150,35,18,2,0.0 +12150,74,10,43,0.0 +12150,2,19,38,0.0 +12150,14,23.25,49,0.0 +12150,1,18,24,0.0 +12150,31,12.5,37,0.0 +12150,28,45.6,10,0.0 +12150,8,40,33,0.0 +12150,50,16.25,24,0.0 +12150,68,12.5,2,0.0 +12150,70,15,5,0.0 +12150,52,7,44,0.0 +12150,62,49.3,25,0.0 +12150,58,13.25,30,0.0 +12150,22,21,47,0.0 +12150,24,4.5,39,0.0 +12150,32,32,24,0.0 +12150,51,53,34,0.0 +12150,55,24,28,0.0 +12150,76,18,2,0.0 +12150,71,21.5,9,0.0 +12150,17,39,7,0.0 +12150,25,14,46,0.0 +12150,53,32.8,6,0.0 +12150,56,38,8,0.0 +12150,36,19,30,0.0 +12150,5,21.35,32,0.0 +12150,44,19.45,5,0.0 +12150,21,10,4,0.0 +12150,4,22,35,0.0 +12150,27,43.9,39,0.0 +12150,69,36,2,0.0 +12150,63,43.9,13,0.0 +12150,46,12,43,0.0 +12150,16,17.45,43,0.0 +12150,41,9.65,18,0.0 +12150,39,18,44,0.0 +12150,72,34.8,12,0.0 +12150,19,9.2,50,0.0 +12150,75,7.75,28,0.0 +12150,29,123.79,39,0.0 +12150,73,15,20,0.0 +12150,34,14,26,0.0 +12150,13,6,15,0.0 +12150,60,34,32,0.0 +12150,59,55,37,0.0 +12150,26,31.23,30,0.0 +12150,7,30,48,0.0 +12150,66,17,14,0.0 +12150,37,26,23,0.0 +12150,64,33.25,41,0.0 +12150,61,28.5,8,0.0 +12150,18,62.5,14,0.0 +12150,65,21.05,28,0.0 +12150,42,14,34,0.0 +12150,54,7.45,10,0.0 +12150,6,25,2,0.0 +12150,77,13,46,0.0 +12150,57,19.5,49,0.0 +12151,4,22,27,0.0 +12152,33,2.5,49,0.0 +12152,19,9.2,10,0.0 +12152,15,15.5,43,0.0 +12152,71,21.5,34,0.0 +12152,24,4.5,14,0.0 +12152,8,40,48,0.0 +12153,37,26,48,0.0 +12153,19,9.2,19,0.0 +12153,67,14,1,0.0 +12153,12,38,1,0.0 +12153,15,15.5,31,0.0 +12153,70,15,40,0.0 +12153,46,12,16,0.0 +12153,8,40,23,0.0 +12153,43,46,25,0.0 +12153,29,123.79,4,0.0 +12153,27,43.9,35,0.0 +12153,60,34,12,0.0 +12153,25,14,20,0.0 +12153,36,19,2,0.0 +12153,41,9.65,6,0.0 +12153,42,14,6,0.0 +12153,54,7.45,31,0.0 +12153,34,14,49,0.0 +12153,39,18,30,0.0 +12153,72,34.8,20,0.0 +12153,6,25,10,0.0 +12153,5,21.35,27,0.0 +12153,50,16.25,23,0.0 +12153,22,21,35,0.0 +12153,51,53,10,0.0 +12153,77,13,16,0.0 +12153,47,9.5,22,0.0 +12153,3,10,2,0.0 +12153,2,19,31,0.0 +12153,55,24,22,0.0 +12153,56,38,6,0.0 +12153,4,22,5,0.0 +12153,20,81,4,0.0 +12153,24,4.5,13,0.0 +12153,66,17,16,0.0 +12153,57,19.5,23,0.0 +12153,21,10,39,0.0 +12153,11,21,12,0.0 +12153,38,263.5,11,0.0 +12153,73,15,29,0.0 +12153,63,43.9,7,0.0 +12153,62,49.3,18,0.0 +12153,65,21.05,26,0.0 +12153,35,18,2,0.0 +12153,9,97,35,0.0 +12153,13,6,15,0.0 +12153,31,12.5,15,0.0 +12153,49,20,31,0.0 +12153,33,2.5,1,0.0 +12153,75,7.75,35,0.0 +12153,40,18.4,2,0.0 +12153,17,39,26,0.0 +12153,64,33.25,35,0.0 +12153,76,18,14,0.0 +12153,26,31.23,3,0.0 +12153,48,12.75,45,0.0 +12153,58,13.25,35,0.0 +12153,59,55,15,0.0 +12153,53,32.8,11,0.0 +12153,14,23.25,27,0.0 +12153,10,31,24,0.0 +12153,7,30,22,0.0 +12154,62,49.3,38,0.0 +12154,47,9.5,27,0.0 +12154,58,13.25,17,0.0 +12154,71,21.5,10,0.0 +12154,64,33.25,33,0.0 +12154,23,9,41,0.0 +12154,42,14,29,0.0 +12154,7,30,3,0.0 +12154,29,123.79,22,0.0 +12154,19,9.2,2,0.0 +12154,6,25,18,0.0 +12154,73,15,20,0.0 +12154,55,24,22,0.0 +12154,25,14,30,0.0 +12154,14,23.25,36,0.0 +12154,27,43.9,1,0.0 +12154,30,25.89,3,0.0 +12154,76,18,24,0.0 +12154,36,19,34,0.0 +12154,59,55,42,0.0 +12154,18,62.5,11,0.0 +12154,74,10,21,0.0 +12154,9,97,25,0.0 +12154,22,21,15,0.0 +12154,10,31,34,0.0 +12154,20,81,32,0.0 +12154,2,19,32,0.0 +12154,70,15,38,0.0 +12154,45,9.5,22,0.0 +12154,46,12,25,0.0 +12154,69,36,31,0.0 +12154,16,17.45,37,0.0 +12154,37,26,34,0.0 +12154,1,18,22,0.0 +12154,57,19.5,13,0.0 +12154,60,34,41,0.0 +12154,32,32,45,0.0 +12154,35,18,22,0.0 +12154,43,46,20,0.0 +12154,12,38,28,0.0 +12154,67,14,26,0.0 +12154,33,2.5,25,0.0 +12154,41,9.65,45,0.0 +12154,17,39,21,0.0 +12154,54,7.45,43,0.0 +12154,61,28.5,11,0.0 +12154,34,14,6,0.0 +12154,63,43.9,7,0.0 +12154,39,18,28,0.0 +12154,48,12.75,43,0.0 +12154,44,19.45,17,0.0 +12154,77,13,2,0.0 +12154,3,10,7,0.0 +12154,11,21,12,0.0 +12154,50,16.25,43,0.0 +12154,8,40,14,0.0 +12154,68,12.5,12,0.0 +12154,4,22,47,0.0 +12154,75,7.75,20,0.0 +12154,28,45.6,7,0.0 +12154,40,18.4,42,0.0 +12154,53,32.8,43,0.0 +12155,28,45.6,13,0.0 +12155,22,21,9,0.0 +12155,35,18,29,0.0 +12155,54,7.45,50,0.0 +12155,77,13,13,0.0 +12155,73,15,38,0.0 +12155,10,31,13,0.0 +12155,27,43.9,29,0.0 +12155,60,34,11,0.0 +12155,69,36,41,0.0 +12155,37,26,43,0.0 +12155,42,14,2,0.0 +12155,16,17.45,42,0.0 +12155,48,12.75,37,0.0 +12155,1,18,46,0.0 +12155,19,9.2,7,0.0 +12155,76,18,21,0.0 +12155,4,22,12,0.0 +12155,40,18.4,22,0.0 +12155,75,7.75,9,0.0 +12155,58,13.25,33,0.0 +12155,13,6,37,0.0 +12155,52,7,48,0.0 +12155,17,39,20,0.0 +12155,39,18,16,0.0 +12155,31,12.5,29,0.0 +12155,26,31.23,29,0.0 +12155,36,19,26,0.0 +12155,30,25.89,45,0.0 +12155,5,21.35,28,0.0 +12155,68,12.5,16,0.0 +12155,6,25,30,0.0 +12155,57,19.5,1,0.0 +12155,12,38,21,0.0 +12155,38,263.5,21,0.0 +12155,32,32,11,0.0 +12155,59,55,21,0.0 +12155,70,15,5,0.0 +12155,3,10,20,0.0 +12155,61,28.5,42,0.0 +12155,63,43.9,13,0.0 +12155,25,14,31,0.0 +12155,44,19.45,10,0.0 +12155,18,62.5,36,0.0 +12155,66,17,18,0.0 +12155,43,46,23,0.0 +12155,71,21.5,10,0.0 +12155,65,21.05,42,0.0 +12155,64,33.25,10,0.0 +12155,24,4.5,10,0.0 +12155,9,97,11,0.0 +12155,7,30,26,0.0 +12155,56,38,16,0.0 +12155,55,24,45,0.0 +12155,53,32.8,25,0.0 +12155,20,81,25,0.0 +12155,47,9.5,7,0.0 +12155,51,53,29,0.0 +12155,11,21,22,0.0 +12155,62,49.3,42,0.0 +12155,33,2.5,34,0.0 +12155,50,16.25,13,0.0 +12155,72,34.8,30,0.0 +12155,74,10,14,0.0 +12155,45,9.5,22,0.0 +12156,45,9.5,30,0.0 +12156,69,36,12,0.0 +12156,25,14,21,0.0 +12156,74,10,37,0.0 +12156,2,19,17,0.0 +12156,13,6,17,0.0 +12156,58,13.25,24,0.0 +12156,77,13,17,0.0 +12156,23,9,49,0.0 +12156,11,21,23,0.0 +12156,9,97,22,0.0 +12156,62,49.3,33,0.0 +12156,76,18,13,0.0 +12156,63,43.9,11,0.0 +12156,34,14,43,0.0 +12156,65,21.05,7,0.0 +12156,7,30,43,0.0 +12156,29,123.79,24,0.0 +12156,52,7,8,0.0 +12156,57,19.5,49,0.0 +12156,59,55,16,0.0 +12156,28,45.6,3,0.0 +12156,44,19.45,31,0.0 +12156,32,32,12,0.0 +12156,38,263.5,29,0.0 +12156,3,10,44,0.0 +12156,55,24,19,0.0 +12156,6,25,25,0.0 +12156,31,12.5,7,0.0 +12156,49,20,10,0.0 +12156,15,15.5,2,0.0 +12156,53,32.8,46,0.0 +12156,20,81,15,0.0 +12156,33,2.5,25,0.0 +12156,26,31.23,41,0.0 +12156,68,12.5,24,0.0 +12156,12,38,31,0.0 +12156,48,12.75,45,0.0 +12156,50,16.25,25,0.0 +12156,8,40,44,0.0 +12156,30,25.89,33,0.0 +12156,19,9.2,34,0.0 +12156,71,21.5,46,0.0 +12156,61,28.5,47,0.0 +12156,35,18,9,0.0 +12156,10,31,2,0.0 +12156,75,7.75,12,0.0 +12156,72,34.8,46,0.0 +12156,46,12,49,0.0 +12156,64,33.25,5,0.0 +12156,16,17.45,38,0.0 +12156,70,15,23,0.0 +12156,1,18,26,0.0 +12156,4,22,38,0.0 +12156,18,62.5,10,0.0 +12157,54,7.45,38,0.0 +12157,40,18.4,19,0.0 +12157,4,22,42,0.0 +12157,14,23.25,32,0.0 +12157,53,32.8,17,0.0 +12157,70,15,21,0.0 +12157,25,14,8,0.0 +12157,66,17,9,0.0 +12157,61,28.5,45,0.0 +12157,38,263.5,34,0.0 +12157,1,18,48,0.0 +12157,65,21.05,47,0.0 +12157,44,19.45,35,0.0 +12157,17,39,24,0.0 +12157,63,43.9,38,0.0 +12157,15,15.5,1,0.0 +12157,31,12.5,24,0.0 +12157,41,9.65,45,0.0 +12157,48,12.75,30,0.0 +12157,47,9.5,2,0.0 +12157,27,43.9,45,0.0 +12157,7,30,13,0.0 +12157,67,14,1,0.0 +12157,46,12,12,0.0 +12157,52,7,37,0.0 +12157,71,21.5,49,0.0 +12157,20,81,47,0.0 +12157,5,21.35,8,0.0 +12157,55,24,13,0.0 +12157,72,34.8,7,0.0 +12157,34,14,22,0.0 +12157,73,15,35,0.0 +12157,16,17.45,47,0.0 +12157,24,4.5,15,0.0 +12157,10,31,12,0.0 +12157,26,31.23,42,0.0 +12157,12,38,33,0.0 +12157,75,7.75,14,0.0 +12158,16,17.45,45,0.0 +12158,72,34.8,48,0.0 +12158,27,43.9,35,0.0 +12158,14,23.25,37,0.0 +12158,7,30,14,0.0 +12158,12,38,16,0.0 +12158,65,21.05,36,0.0 +12158,4,22,40,0.0 +12158,58,13.25,34,0.0 +12158,66,17,47,0.0 +12158,35,18,12,0.0 +12158,45,9.5,44,0.0 +12158,36,19,14,0.0 +12158,54,7.45,31,0.0 +12158,59,55,18,0.0 +12158,76,18,26,0.0 +12158,48,12.75,31,0.0 +12158,57,19.5,32,0.0 +12158,74,10,31,0.0 +12158,63,43.9,17,0.0 +12158,41,9.65,12,0.0 +12158,26,31.23,27,0.0 +12158,5,21.35,29,0.0 +12158,17,39,25,0.0 +12158,39,18,24,0.0 +12158,19,9.2,31,0.0 +12158,62,49.3,40,0.0 +12158,51,53,34,0.0 +12158,44,19.45,41,0.0 +12158,55,24,25,0.0 +12158,77,13,42,0.0 +12158,38,263.5,36,0.0 +12158,28,45.6,19,0.0 +12158,43,46,47,0.0 +12158,69,36,45,0.0 +12158,30,25.89,38,0.0 +12158,18,62.5,15,0.0 +12158,70,15,4,0.0 +12158,49,20,9,0.0 +12158,15,15.5,37,0.0 +12158,20,81,25,0.0 +12158,60,34,9,0.0 +12158,40,18.4,32,0.0 +12158,42,14,30,0.0 +12158,8,40,11,0.0 +12158,47,9.5,36,0.0 +12158,31,12.5,35,0.0 +12158,24,4.5,48,0.0 +12158,32,32,11,0.0 +12158,25,14,19,0.0 +12158,37,26,17,0.0 +12158,23,9,4,0.0 +12158,52,7,13,0.0 +12158,3,10,9,0.0 +12158,33,2.5,38,0.0 +12158,61,28.5,2,0.0 +12158,68,12.5,4,0.0 +12158,10,31,39,0.0 +12158,53,32.8,9,0.0 +12159,50,16.25,29,0.0 +12159,56,38,41,0.0 +12159,67,14,7,0.0 +12159,69,36,42,0.0 +12159,61,28.5,44,0.0 +12159,40,18.4,50,0.0 +12159,76,18,48,0.0 +12159,75,7.75,6,0.0 +12159,10,31,34,0.0 +12159,33,2.5,23,0.0 +12159,58,13.25,46,0.0 +12159,70,15,46,0.0 +12159,31,12.5,9,0.0 +12159,24,4.5,13,0.0 +12159,62,49.3,31,0.0 +12159,37,26,49,0.0 +12159,65,21.05,10,0.0 +12159,49,20,20,0.0 +12159,47,9.5,44,0.0 +12159,30,25.89,38,0.0 +12159,13,6,26,0.0 +12159,29,123.79,48,0.0 +12159,43,46,20,0.0 +12159,45,9.5,45,0.0 +12159,21,10,47,0.0 +12159,20,81,46,0.0 +12159,9,97,4,0.0 +12159,3,10,38,0.0 +12159,19,9.2,25,0.0 +12159,53,32.8,27,0.0 +12159,26,31.23,15,0.0 +12159,12,38,48,0.0 +12159,68,12.5,25,0.0 +12159,5,21.35,28,0.0 +12159,1,18,27,0.0 +12159,23,9,16,0.0 +12159,35,18,28,0.0 +12159,16,17.45,35,0.0 +12159,41,9.65,8,0.0 +12159,7,30,7,0.0 +12159,8,40,44,0.0 +12159,15,15.5,39,0.0 +12159,59,55,14,0.0 +12159,77,13,20,0.0 +12159,42,14,8,0.0 +12159,63,43.9,43,0.0 +12159,4,22,29,0.0 +12159,2,19,49,0.0 +12159,17,39,21,0.0 +12159,14,23.25,32,0.0 +12160,23,9,7,0.0 +12160,43,46,50,0.0 +12160,35,18,32,0.0 +12160,38,263.5,2,0.0 +12160,20,81,32,0.0 +12160,34,14,22,0.0 +12160,7,30,48,0.0 +12160,25,14,40,0.0 +12160,4,22,37,0.0 +12160,16,17.45,9,0.0 +12160,71,21.5,47,0.0 +12160,28,45.6,26,0.0 +12160,42,14,9,0.0 +12160,39,18,46,0.0 +12160,57,19.5,45,0.0 +12160,6,25,36,0.0 +12160,54,7.45,23,0.0 +12160,61,28.5,25,0.0 +12160,76,18,11,0.0 +12160,14,23.25,46,0.0 +12160,31,12.5,31,0.0 +12160,37,26,38,0.0 +12160,56,38,22,0.0 +12160,75,7.75,36,0.0 +12160,33,2.5,31,0.0 +12160,73,15,48,0.0 +12160,22,21,3,0.0 +12160,30,25.89,30,0.0 +12160,68,12.5,29,0.0 +12160,59,55,40,0.0 +12160,74,10,19,0.0 +12160,15,15.5,27,0.0 +12160,70,15,17,0.0 +12160,24,4.5,13,0.0 +12160,55,24,17,0.0 +12161,5,21.35,15,0.0 +12161,39,18,22,0.0 +12161,7,30,20,0.0 +12161,19,9.2,11,0.0 +12161,32,32,2,0.0 +12161,56,38,27,0.0 +12161,55,24,16,0.0 +12161,59,55,3,0.0 +12161,51,53,38,0.0 +12161,14,23.25,35,0.0 +12161,60,34,9,0.0 +12161,6,25,36,0.0 +12161,74,10,48,0.0 +12161,44,19.45,17,0.0 +12161,48,12.75,37,0.0 +12161,29,123.79,47,0.0 +12161,38,263.5,48,0.0 +12161,33,2.5,38,0.0 +12161,27,43.9,1,0.0 +12161,10,31,14,0.0 +12161,52,7,1,0.0 +12161,71,21.5,42,0.0 +12161,36,19,50,0.0 +12161,9,97,28,0.0 +12161,62,49.3,8,0.0 +12161,1,18,10,0.0 +12161,47,9.5,19,0.0 +12161,15,15.5,28,0.0 +12161,68,12.5,5,0.0 +12161,8,40,8,0.0 +12161,3,10,9,0.0 +12161,17,39,31,0.0 +12161,58,13.25,9,0.0 +12161,4,22,44,0.0 +12161,69,36,40,0.0 +12161,35,18,10,0.0 +12161,72,34.8,35,0.0 +12161,43,46,47,0.0 +12161,67,14,3,0.0 +12161,45,9.5,32,0.0 +12161,40,18.4,29,0.0 +12161,34,14,35,0.0 +12161,30,25.89,22,0.0 +12161,64,33.25,47,0.0 +12161,63,43.9,1,0.0 +12161,12,38,1,0.0 +12161,49,20,11,0.0 +12161,37,26,19,0.0 +12162,57,19.5,20,0.0 +12162,45,9.5,30,0.0 +12162,11,21,11,0.0 +12162,14,23.25,14,0.0 +12162,36,19,18,0.0 +12162,10,31,39,0.0 +12162,25,14,1,0.0 +12162,2,19,4,0.0 +12162,64,33.25,26,0.0 +12162,50,16.25,5,0.0 +12162,18,62.5,19,0.0 +12162,5,21.35,18,0.0 +12162,53,32.8,8,0.0 +12162,54,7.45,15,0.0 +12162,48,12.75,10,0.0 +12162,75,7.75,22,0.0 +12162,37,26,31,0.0 +12162,9,97,26,0.0 +12162,61,28.5,43,0.0 +12162,33,2.5,6,0.0 +12162,60,34,26,0.0 +12162,44,19.45,31,0.0 +12162,56,38,4,0.0 +12162,51,53,36,0.0 +12162,55,24,19,0.0 +12162,68,12.5,22,0.0 +12162,23,9,26,0.0 +12162,29,123.79,32,0.0 +12162,58,13.25,41,0.0 +12162,76,18,30,0.0 +12162,73,15,9,0.0 +12162,22,21,7,0.0 +12162,46,12,40,0.0 +12162,70,15,27,0.0 +12162,59,55,19,0.0 +12162,41,9.65,18,0.0 +12162,1,18,25,0.0 +12162,21,10,10,0.0 +12162,20,81,36,0.0 +12162,13,6,17,0.0 +12162,69,36,31,0.0 +12162,7,30,19,0.0 +12162,24,4.5,48,0.0 +12162,6,25,47,0.0 +12162,26,31.23,12,0.0 +12162,47,9.5,40,0.0 +12162,35,18,14,0.0 +12162,30,25.89,14,0.0 +12162,77,13,19,0.0 +12162,74,10,7,0.0 +12162,19,9.2,27,0.0 +12162,8,40,1,0.0 +12162,34,14,13,0.0 +12162,4,22,25,0.0 +12163,48,12.75,4,0.0 +12163,30,25.89,36,0.0 +12163,24,4.5,3,0.0 +12163,37,26,34,0.0 +12163,51,53,50,0.0 +12163,4,22,50,0.0 +12163,76,18,47,0.0 +12163,47,9.5,12,0.0 +12163,52,7,12,0.0 +12163,62,49.3,42,0.0 +12163,31,12.5,49,0.0 +12164,4,22,32,0.0 +12164,30,25.89,10,0.0 +12164,43,46,45,0.0 +12164,40,18.4,46,0.0 +12164,38,263.5,37,0.0 +12164,50,16.25,12,0.0 +12164,53,32.8,42,0.0 +12164,3,10,16,0.0 +12164,5,21.35,25,0.0 +12164,65,21.05,5,0.0 +12164,6,25,31,0.0 +12164,60,34,31,0.0 +12164,69,36,14,0.0 +12164,55,24,15,0.0 +12164,1,18,28,0.0 +12164,59,55,44,0.0 +12164,58,13.25,50,0.0 +12164,7,30,20,0.0 +12164,15,15.5,32,0.0 +12164,63,43.9,47,0.0 +12164,31,12.5,35,0.0 +12164,8,40,39,0.0 +12164,41,9.65,42,0.0 +12164,33,2.5,10,0.0 +12164,21,10,18,0.0 +12164,39,18,37,0.0 +12164,54,7.45,18,0.0 +12164,51,53,50,0.0 +12164,71,21.5,10,0.0 +12164,47,9.5,28,0.0 +12164,56,38,25,0.0 +12164,25,14,21,0.0 +12164,17,39,22,0.0 +12164,76,18,48,0.0 +12164,18,62.5,12,0.0 +12164,62,49.3,46,0.0 +12164,45,9.5,38,0.0 +12164,19,9.2,41,0.0 +12164,28,45.6,41,0.0 +12164,46,12,22,0.0 +12164,70,15,13,0.0 +12164,23,9,19,0.0 +12164,73,15,12,0.0 +12164,32,32,17,0.0 +12164,72,34.8,21,0.0 +12164,64,33.25,26,0.0 +12164,36,19,3,0.0 +12165,49,20,50,0.0 +12165,21,10,40,0.0 +12165,43,46,21,0.0 +12165,8,40,16,0.0 +12165,3,10,24,0.0 +12165,44,19.45,44,0.0 +12165,4,22,43,0.0 +12165,1,18,5,0.0 +12165,27,43.9,18,0.0 +12165,16,17.45,42,0.0 +12165,56,38,1,0.0 +12165,36,19,49,0.0 +12165,9,97,10,0.0 +12165,20,81,42,0.0 +12165,60,34,30,0.0 +12165,66,17,20,0.0 +12165,76,18,33,0.0 +12165,61,28.5,26,0.0 +12165,72,34.8,20,0.0 +12165,26,31.23,9,0.0 +12165,2,19,15,0.0 +12165,17,39,31,0.0 +12165,42,14,16,0.0 +12165,73,15,16,0.0 +12165,15,15.5,24,0.0 +12165,25,14,38,0.0 +12165,41,9.65,28,0.0 +12165,70,15,38,0.0 +12165,13,6,39,0.0 +12165,10,31,44,0.0 +12165,11,21,49,0.0 +12165,69,36,14,0.0 +12165,58,13.25,21,0.0 +12165,75,7.75,44,0.0 +12165,45,9.5,23,0.0 +12165,40,18.4,24,0.0 +12165,38,263.5,40,0.0 +12165,67,14,24,0.0 +12165,65,21.05,44,0.0 +12165,71,21.5,16,0.0 +12165,33,2.5,29,0.0 +12165,77,13,35,0.0 +12165,19,9.2,24,0.0 +12165,74,10,17,0.0 +12165,39,18,3,0.0 +12165,52,7,43,0.0 +12165,62,49.3,12,0.0 +12165,35,18,29,0.0 +12165,14,23.25,26,0.0 +12165,68,12.5,1,0.0 +12165,48,12.75,23,0.0 +12165,51,53,35,0.0 +12165,64,33.25,32,0.0 +12165,50,16.25,18,0.0 +12166,11,21,8,0.0 +12166,77,13,3,0.0 +12166,27,43.9,22,0.0 +12166,45,9.5,40,0.0 +12166,70,15,6,0.0 +12166,42,14,13,0.0 +12166,31,12.5,5,0.0 +12166,64,33.25,48,0.0 +12166,28,45.6,44,0.0 +12166,24,4.5,36,0.0 +12166,72,34.8,41,0.0 +12166,20,81,31,0.0 +12166,3,10,33,0.0 +12166,4,22,50,0.0 +12166,53,32.8,1,0.0 +12166,7,30,23,0.0 +12166,56,38,23,0.0 +12166,49,20,41,0.0 +12166,65,21.05,7,0.0 +12166,16,17.45,18,0.0 +12166,39,18,4,0.0 +12166,59,55,16,0.0 +12166,50,16.25,40,0.0 +12166,43,46,22,0.0 +12166,40,18.4,36,0.0 +12166,38,263.5,33,0.0 +12166,33,2.5,34,0.0 +12166,15,15.5,13,0.0 +12166,30,25.89,23,0.0 +12166,13,6,20,0.0 +12166,23,9,7,0.0 +12166,22,21,6,0.0 +12166,5,21.35,18,0.0 +12166,35,18,19,0.0 +12166,61,28.5,6,0.0 +12166,25,14,10,0.0 +12166,2,19,30,0.0 +12166,47,9.5,13,0.0 +12166,6,25,11,0.0 +12166,36,19,7,0.0 +12166,18,62.5,25,0.0 +12166,71,21.5,36,0.0 +12166,17,39,23,0.0 +12166,41,9.65,38,0.0 +12166,68,12.5,32,0.0 +12166,55,24,8,0.0 +12166,63,43.9,1,0.0 +12166,21,10,10,0.0 +12166,67,14,9,0.0 +12166,75,7.75,49,0.0 +12166,44,19.45,19,0.0 +12166,54,7.45,22,0.0 +12166,73,15,2,0.0 +12166,46,12,5,0.0 +12166,66,17,33,0.0 +12166,52,7,36,0.0 +12167,65,21.05,6,0.0 +12167,1,18,18,0.0 +12167,44,19.45,33,0.0 +12167,61,28.5,35,0.0 +12167,14,23.25,29,0.0 +12167,63,43.9,27,0.0 +12167,11,21,30,0.0 +12167,75,7.75,41,0.0 +12167,49,20,10,0.0 +12167,27,43.9,49,0.0 +12167,64,33.25,27,0.0 +12167,70,15,21,0.0 +12167,2,19,9,0.0 +12167,57,19.5,10,0.0 +12167,47,9.5,15,0.0 +12167,15,15.5,41,0.0 +12167,26,31.23,26,0.0 +12167,20,81,37,0.0 +12167,52,7,33,0.0 +12167,3,10,22,0.0 +12167,62,49.3,39,0.0 +12167,9,97,23,0.0 +12167,72,34.8,11,0.0 +12167,32,32,9,0.0 +12167,22,21,37,0.0 +12167,48,12.75,38,0.0 +12167,25,14,28,0.0 +12167,19,9.2,47,0.0 +12167,30,25.89,13,0.0 +12167,24,4.5,17,0.0 +12167,59,55,10,0.0 +12167,7,30,36,0.0 +12167,50,16.25,40,0.0 +12167,28,45.6,30,0.0 +12167,40,18.4,8,0.0 +12167,38,263.5,24,0.0 +12167,10,31,1,0.0 +12168,74,10,4,0.0 +12168,30,25.89,4,0.0 +12168,61,28.5,49,0.0 +12168,77,13,18,0.0 +12168,6,25,24,0.0 +12168,26,31.23,11,0.0 +12168,72,34.8,16,0.0 +12168,16,17.45,47,0.0 +12168,5,21.35,35,0.0 +12168,73,15,35,0.0 +12168,57,19.5,24,0.0 +12168,60,34,40,0.0 +12168,76,18,14,0.0 +12168,62,49.3,44,0.0 +12168,53,32.8,19,0.0 +12168,58,13.25,38,0.0 +12168,47,9.5,42,0.0 +12168,9,97,45,0.0 +12169,70,15,47,0.0 +12169,54,7.45,40,0.0 +12169,62,49.3,36,0.0 +12169,27,43.9,14,0.0 +12169,26,31.23,7,0.0 +12169,67,14,29,0.0 +12169,12,38,4,0.0 +12170,69,36,35,0.0 +12170,64,33.25,3,0.0 +12170,71,21.5,46,0.0 +12170,15,15.5,19,0.0 +12170,17,39,15,0.0 +12170,59,55,23,0.0 +12170,73,15,17,0.0 +12170,21,10,13,0.0 +12170,67,14,20,0.0 +12170,63,43.9,28,0.0 +12170,66,17,1,0.0 +12170,36,19,13,0.0 +12170,55,24,8,0.0 +12170,8,40,5,0.0 +12170,34,14,14,0.0 +12170,77,13,12,0.0 +12170,52,7,30,0.0 +12170,68,12.5,49,0.0 +12170,25,14,19,0.0 +12170,24,4.5,15,0.0 +12170,46,12,41,0.0 +12170,6,25,40,0.0 +12170,50,16.25,7,0.0 +12170,47,9.5,11,0.0 +12170,9,97,40,0.0 +12170,41,9.65,10,0.0 +12170,75,7.75,17,0.0 +12170,58,13.25,30,0.0 +12170,29,123.79,12,0.0 +12171,17,39,46,0.0 +12171,52,7,42,0.0 +12171,28,45.6,14,0.0 +12171,1,18,12,0.0 +12171,16,17.45,27,0.0 +12172,47,9.5,4,0.0 +12172,12,38,41,0.0 +12172,1,18,5,0.0 +12173,46,12,15,0.0 +12173,64,33.25,9,0.0 +12173,13,6,48,0.0 +12173,65,21.05,40,0.0 +12174,2,19,25,0.0 +12174,77,13,22,0.0 +12174,32,32,30,0.0 +12174,66,17,30,0.0 +12174,35,18,41,0.0 +12174,49,20,11,0.0 +12174,42,14,41,0.0 +12174,38,263.5,16,0.0 +12174,34,14,29,0.0 +12174,29,123.79,24,0.0 +12174,10,31,39,0.0 +12174,28,45.6,47,0.0 +12174,33,2.5,20,0.0 +12174,5,21.35,50,0.0 +12174,22,21,43,0.0 +12174,68,12.5,31,0.0 +12174,16,17.45,33,0.0 +12174,76,18,6,0.0 +12174,57,19.5,43,0.0 +12174,37,26,38,0.0 +12174,59,55,35,0.0 +12174,15,15.5,34,0.0 +12174,60,34,33,0.0 +12175,34,14,12,0.0 +12175,20,81,19,0.0 +12175,73,15,40,0.0 +12175,28,45.6,34,0.0 +12175,75,7.75,36,0.0 +12175,25,14,2,0.0 +12175,64,33.25,3,0.0 +12175,74,10,26,0.0 +12175,50,16.25,27,0.0 +12175,10,31,3,0.0 +12175,42,14,44,0.0 +12175,52,7,39,0.0 +12175,39,18,12,0.0 +12175,56,38,38,0.0 +12175,36,19,20,0.0 +12175,41,9.65,12,0.0 +12175,62,49.3,40,0.0 +12175,49,20,42,0.0 +12175,65,21.05,25,0.0 +12175,53,32.8,14,0.0 +12175,17,39,21,0.0 +12175,69,36,39,0.0 +12175,51,53,22,0.0 +12175,71,21.5,24,0.0 +12175,23,9,29,0.0 +12175,29,123.79,11,0.0 +12175,1,18,13,0.0 +12175,4,22,31,0.0 +12175,44,19.45,1,0.0 +12175,30,25.89,46,0.0 +12175,70,15,5,0.0 +12175,16,17.45,24,0.0 +12175,58,13.25,2,0.0 +12175,54,7.45,2,0.0 +12175,32,32,12,0.0 +12175,24,4.5,23,0.0 +12175,7,30,16,0.0 +12175,3,10,27,0.0 +12175,59,55,29,0.0 +12175,47,9.5,8,0.0 +12175,66,17,29,0.0 +12175,15,15.5,12,0.0 +12175,12,38,19,0.0 +12175,6,25,5,0.0 +12175,22,21,35,0.0 +12175,13,6,13,0.0 +12175,14,23.25,26,0.0 +12175,77,13,46,0.0 +12175,43,46,18,0.0 +12175,63,43.9,13,0.0 +12175,38,263.5,41,0.0 +12175,8,40,46,0.0 +12175,2,19,34,0.0 +12175,21,10,22,0.0 +12175,19,9.2,20,0.0 +12175,67,14,45,0.0 +12175,37,26,22,0.0 +12175,40,18.4,47,0.0 +12175,55,24,31,0.0 +12175,31,12.5,17,0.0 +12175,45,9.5,47,0.0 +12175,61,28.5,30,0.0 +12175,46,12,26,0.0 +12175,60,34,24,0.0 +12175,68,12.5,7,0.0 +12175,11,21,34,0.0 +12175,72,34.8,39,0.0 +12175,35,18,7,0.0 +12175,5,21.35,24,0.0 +12175,26,31.23,7,0.0 +12175,33,2.5,45,0.0 +12175,48,12.75,16,0.0 +12175,9,97,34,0.0 +12175,57,19.5,9,0.0 +12175,76,18,22,0.0 +12175,27,43.9,6,0.0 +12175,18,62.5,10,0.0 +12176,16,17.45,5,0.0 +12176,39,18,50,0.0 +12176,72,34.8,43,0.0 +12176,42,14,39,0.0 +12176,36,19,39,0.0 +12176,20,81,43,0.0 +12176,37,26,18,0.0 +12176,4,22,22,0.0 +12176,33,2.5,1,0.0 +12176,49,20,21,0.0 +12176,19,9.2,13,0.0 +12176,52,7,44,0.0 +12176,60,34,19,0.0 +12176,51,53,37,0.0 +12176,34,14,32,0.0 +12176,59,55,29,0.0 +12176,66,17,14,0.0 +12176,12,38,5,0.0 +12176,7,30,2,0.0 +12176,25,14,23,0.0 +12176,45,9.5,47,0.0 +12176,58,13.25,48,0.0 +12176,23,9,27,0.0 +12176,43,46,31,0.0 +12176,17,39,29,0.0 +12176,54,7.45,39,0.0 +12176,28,45.6,22,0.0 +12176,15,15.5,5,0.0 +12176,26,31.23,21,0.0 +12176,69,36,1,0.0 +12176,65,21.05,1,0.0 +12176,71,21.5,33,0.0 +12176,22,21,46,0.0 +12176,73,15,45,0.0 +12176,1,18,43,0.0 +12176,57,19.5,11,0.0 +12176,67,14,11,0.0 +12176,13,6,8,0.0 +12176,35,18,42,0.0 +12176,74,10,33,0.0 +12176,55,24,28,0.0 +12176,30,25.89,8,0.0 +12176,76,18,22,0.0 +12176,44,19.45,38,0.0 +12176,61,28.5,46,0.0 +12176,38,263.5,32,0.0 +12176,68,12.5,47,0.0 +12176,40,18.4,18,0.0 +12176,24,4.5,42,0.0 +12176,10,31,13,0.0 +12176,64,33.25,8,0.0 +12176,31,12.5,12,0.0 +12176,29,123.79,24,0.0 +12176,11,21,43,0.0 +12176,53,32.8,27,0.0 +12176,3,10,43,0.0 +12176,41,9.65,50,0.0 +12176,21,10,19,0.0 +12176,56,38,2,0.0 +12176,46,12,41,0.0 +12176,70,15,15,0.0 +12176,9,97,24,0.0 +12176,63,43.9,21,0.0 +12176,50,16.25,7,0.0 +12176,47,9.5,22,0.0 +12176,6,25,9,0.0 +12176,2,19,8,0.0 +12176,77,13,39,0.0 +12176,5,21.35,45,0.0 +12176,27,43.9,23,0.0 +12176,32,32,15,0.0 +12177,23,9,7,0.0 +12177,48,12.75,20,0.0 +12177,59,55,26,0.0 +12177,75,7.75,25,0.0 +12177,61,28.5,5,0.0 +12177,62,49.3,2,0.0 +12177,4,22,11,0.0 +12177,68,12.5,12,0.0 +12177,19,9.2,3,0.0 +12177,67,14,49,0.0 +12177,14,23.25,18,0.0 +12177,45,9.5,16,0.0 +12177,15,15.5,18,0.0 +12177,36,19,2,0.0 +12177,3,10,22,0.0 +12177,57,19.5,37,0.0 +12177,53,32.8,43,0.0 +12177,21,10,9,0.0 +12177,34,14,22,0.0 +12177,41,9.65,45,0.0 +12177,42,14,43,0.0 +12177,55,24,22,0.0 +12177,22,21,29,0.0 +12177,24,4.5,46,0.0 +12177,70,15,29,0.0 +12177,49,20,37,0.0 +12177,27,43.9,22,0.0 +12177,46,12,9,0.0 +12177,44,19.45,27,0.0 +12177,54,7.45,38,0.0 +12177,18,62.5,47,0.0 +12177,9,97,41,0.0 +12177,35,18,1,0.0 +12177,5,21.35,36,0.0 +12177,58,13.25,26,0.0 +12177,13,6,7,0.0 +12177,74,10,48,0.0 +12177,72,34.8,19,0.0 +12177,60,34,30,0.0 +12177,26,31.23,29,0.0 +12177,76,18,39,0.0 +12177,20,81,9,0.0 +12177,40,18.4,11,0.0 +12177,1,18,18,0.0 +12177,73,15,40,0.0 +12177,66,17,41,0.0 +12177,32,32,36,0.0 +12177,8,40,42,0.0 +12177,25,14,18,0.0 +12177,33,2.5,21,0.0 +12177,52,7,16,0.0 +12177,77,13,12,0.0 +12177,38,263.5,12,0.0 +12177,2,19,31,0.0 +12177,65,21.05,23,0.0 +12177,6,25,34,0.0 +12177,63,43.9,2,0.0 +12177,30,25.89,6,0.0 +12177,10,31,3,0.0 +12177,69,36,21,0.0 +12177,56,38,32,0.0 +12177,50,16.25,49,0.0 +12177,37,26,27,0.0 +12177,51,53,29,0.0 +12177,47,9.5,38,0.0 +12177,17,39,46,0.0 +12177,16,17.45,30,0.0 +12177,71,21.5,1,0.0 +12177,39,18,31,0.0 +12177,28,45.6,42,0.0 +12177,64,33.25,31,0.0 +12177,11,21,47,0.0 +12177,29,123.79,15,0.0 +12177,7,30,49,0.0 +12177,31,12.5,17,0.0 +12177,12,38,16,0.0 +12178,37,26,13,0.0 +12178,61,28.5,3,0.0 +12178,2,19,48,0.0 +12178,5,21.35,30,0.0 +12178,26,31.23,9,0.0 +12178,65,21.05,8,0.0 +12178,7,30,8,0.0 +12178,66,17,33,0.0 +12178,53,32.8,41,0.0 +12178,6,25,13,0.0 +12178,39,18,27,0.0 +12178,41,9.65,42,0.0 +12178,43,46,3,0.0 +12178,56,38,7,0.0 +12178,29,123.79,31,0.0 +12178,75,7.75,9,0.0 +12178,22,21,10,0.0 +12178,59,55,43,0.0 +12178,51,53,44,0.0 +12178,49,20,19,0.0 +12178,9,97,21,0.0 +12178,76,18,44,0.0 +12178,46,12,37,0.0 +12178,27,43.9,27,0.0 +12178,20,81,48,0.0 +12178,45,9.5,25,0.0 +12178,48,12.75,7,0.0 +12178,17,39,35,0.0 +12178,1,18,48,0.0 +12178,11,21,30,0.0 +12178,3,10,3,0.0 +12178,70,15,13,0.0 +12178,71,21.5,42,0.0 +12178,36,19,8,0.0 +12178,47,9.5,48,0.0 +12178,57,19.5,6,0.0 +12178,72,34.8,5,0.0 +12178,74,10,40,0.0 +12178,34,14,11,0.0 +12178,68,12.5,27,0.0 +12178,18,62.5,18,0.0 +12178,52,7,43,0.0 +12178,32,32,1,0.0 +12178,35,18,50,0.0 +12178,44,19.45,3,0.0 +12178,42,14,23,0.0 +12178,77,13,33,0.0 +12178,31,12.5,42,0.0 +12178,62,49.3,44,0.0 +12178,19,9.2,16,0.0 +12178,63,43.9,23,0.0 +12178,60,34,35,0.0 +12178,4,22,39,0.0 +12178,23,9,50,0.0 +12178,54,7.45,29,0.0 +12178,38,263.5,35,0.0 +12178,67,14,13,0.0 +12178,30,25.89,22,0.0 +12178,15,15.5,8,0.0 +12178,24,4.5,8,0.0 +12178,25,14,41,0.0 +12178,8,40,3,0.0 +12178,28,45.6,29,0.0 +12179,19,9.2,44,0.0 +12179,11,21,10,0.0 +12179,53,32.8,48,0.0 +12180,26,31.23,37,0.0 +12180,36,19,38,0.0 +12180,25,14,26,0.0 +12180,28,45.6,6,0.0 +12180,47,9.5,15,0.0 +12180,44,19.45,31,0.0 +12180,61,28.5,46,0.0 +12180,45,9.5,48,0.0 +12180,53,32.8,41,0.0 +12180,70,15,26,0.0 +12180,68,12.5,20,0.0 +12180,62,49.3,13,0.0 +12180,39,18,5,0.0 +12180,19,9.2,38,0.0 +12180,20,81,31,0.0 +12180,59,55,31,0.0 +12180,21,10,17,0.0 +12180,32,32,4,0.0 +12180,54,7.45,31,0.0 +12180,41,9.65,15,0.0 +12180,12,38,6,0.0 +12180,8,40,45,0.0 +12180,5,21.35,35,0.0 +12180,16,17.45,48,0.0 +12180,55,24,19,0.0 +12180,23,9,26,0.0 +12180,34,14,48,0.0 +12180,6,25,46,0.0 +12180,64,33.25,41,0.0 +12180,31,12.5,47,0.0 +12180,48,12.75,9,0.0 +12180,69,36,31,0.0 +12180,56,38,32,0.0 +12180,14,23.25,32,0.0 +12180,24,4.5,49,0.0 +12180,17,39,30,0.0 +12180,1,18,48,0.0 +12180,52,7,28,0.0 +12180,77,13,14,0.0 +12180,15,15.5,10,0.0 +12180,40,18.4,5,0.0 +12180,33,2.5,25,0.0 +12180,72,34.8,40,0.0 +12180,11,21,4,0.0 +12180,63,43.9,11,0.0 +12180,3,10,40,0.0 +12180,50,16.25,46,0.0 +12180,73,15,46,0.0 +12180,38,263.5,14,0.0 +12180,65,21.05,34,0.0 +12180,4,22,21,0.0 +12180,75,7.75,12,0.0 +12181,51,53,1,0.0 +12181,63,43.9,32,0.0 +12181,18,62.5,31,0.0 +12181,27,43.9,2,0.0 +12181,8,40,22,0.0 +12181,49,20,22,0.0 +12181,6,25,31,0.0 +12181,70,15,8,0.0 +12181,68,12.5,18,0.0 +12181,33,2.5,18,0.0 +12181,62,49.3,45,0.0 +12181,50,16.25,19,0.0 +12181,40,18.4,45,0.0 +12181,77,13,19,0.0 +12181,73,15,30,0.0 +12181,45,9.5,2,0.0 +12181,35,18,28,0.0 +12181,26,31.23,39,0.0 +12181,71,21.5,16,0.0 +12181,22,21,30,0.0 +12181,3,10,49,0.0 +12181,46,12,21,0.0 +12181,61,28.5,49,0.0 +12181,39,18,26,0.0 +12181,65,21.05,13,0.0 +12181,10,31,43,0.0 +12181,13,6,48,0.0 +12181,25,14,40,0.0 +12181,36,19,29,0.0 +12181,29,123.79,20,0.0 +12181,19,9.2,42,0.0 +12181,2,19,47,0.0 +12181,30,25.89,7,0.0 +12181,17,39,15,0.0 +12181,21,10,28,0.0 +12181,56,38,4,0.0 +12181,74,10,15,0.0 +12181,55,24,17,0.0 +12181,54,7.45,37,0.0 +12181,72,34.8,22,0.0 +12181,37,26,27,0.0 +12181,57,19.5,45,0.0 +12181,53,32.8,21,0.0 +12181,34,14,1,0.0 +12181,59,55,8,0.0 +12181,64,33.25,49,0.0 +12181,41,9.65,17,0.0 +12181,11,21,42,0.0 +12181,43,46,45,0.0 +12181,24,4.5,36,0.0 +12181,32,32,18,0.0 +12181,60,34,34,0.0 +12181,44,19.45,31,0.0 +12181,52,7,5,0.0 +12181,31,12.5,34,0.0 +12181,5,21.35,22,0.0 +12181,76,18,7,0.0 +12181,14,23.25,27,0.0 +12181,16,17.45,34,0.0 +12181,48,12.75,37,0.0 +12181,28,45.6,32,0.0 +12181,15,15.5,7,0.0 +12181,42,14,10,0.0 +12181,4,22,32,0.0 +12181,38,263.5,2,0.0 +12181,1,18,4,0.0 +12181,9,97,14,0.0 +12181,67,14,44,0.0 +12181,23,9,37,0.0 +12181,58,13.25,5,0.0 +12181,7,30,10,0.0 +12182,62,49.3,9,0.0 +12182,47,9.5,25,0.0 +12182,57,19.5,26,0.0 +12182,14,23.25,42,0.0 +12182,34,14,23,0.0 +12182,65,21.05,21,0.0 +12182,60,34,19,0.0 +12182,53,32.8,43,0.0 +12182,39,18,31,0.0 +12182,30,25.89,31,0.0 +12182,59,55,36,0.0 +12182,38,263.5,38,0.0 +12182,54,7.45,27,0.0 +12182,51,53,33,0.0 +12182,49,20,30,0.0 +12182,5,21.35,42,0.0 +12182,45,9.5,28,0.0 +12182,46,12,7,0.0 +12182,27,43.9,34,0.0 +12182,58,13.25,33,0.0 +12182,73,15,30,0.0 +12182,13,6,19,0.0 +12182,77,13,40,0.0 +12182,16,17.45,33,0.0 +12182,9,97,42,0.0 +12182,72,34.8,23,0.0 +12182,36,19,50,0.0 +12182,76,18,21,0.0 +12182,41,9.65,8,0.0 +12182,3,10,28,0.0 +12182,12,38,38,0.0 +12182,10,31,18,0.0 +12182,32,32,50,0.0 +12182,33,2.5,28,0.0 +12182,68,12.5,9,0.0 +12182,67,14,33,0.0 +12182,69,36,3,0.0 +12182,2,19,47,0.0 +12182,6,25,40,0.0 +12183,2,19,11,0.0 +12183,68,12.5,46,0.0 +12183,22,21,1,0.0 +12183,47,9.5,18,0.0 +12183,63,43.9,42,0.0 +12183,21,10,31,0.0 +12183,59,55,43,0.0 +12183,65,21.05,45,0.0 +12183,10,31,48,0.0 +12183,14,23.25,3,0.0 +12183,37,26,17,0.0 +12183,33,2.5,6,0.0 +12183,19,9.2,38,0.0 +12183,5,21.35,1,0.0 +12183,50,16.25,13,0.0 +12183,72,34.8,5,0.0 +12183,38,263.5,16,0.0 +12183,41,9.65,22,0.0 +12183,66,17,23,0.0 +12183,42,14,45,0.0 +12183,7,30,39,0.0 +12183,18,62.5,15,0.0 +12183,1,18,45,0.0 +12183,6,25,49,0.0 +12183,26,31.23,28,0.0 +12183,67,14,22,0.0 +12183,57,19.5,46,0.0 +12183,35,18,38,0.0 +12183,58,13.25,16,0.0 +12183,36,19,33,0.0 +12183,48,12.75,33,0.0 +12183,71,21.5,49,0.0 +12183,77,13,10,0.0 +12183,52,7,22,0.0 +12183,62,49.3,28,0.0 +12183,16,17.45,36,0.0 +12183,8,40,32,0.0 +12183,28,45.6,20,0.0 +12183,3,10,15,0.0 +12183,60,34,16,0.0 +12183,70,15,44,0.0 +12183,20,81,27,0.0 +12183,75,7.75,30,0.0 +12183,23,9,28,0.0 +12183,25,14,2,0.0 +12183,40,18.4,50,0.0 +12183,13,6,18,0.0 +12184,44,19.45,15,0.0 +12184,48,12.75,27,0.0 +12184,6,25,16,0.0 +12184,9,97,44,0.0 +12184,60,34,15,0.0 +12184,68,12.5,42,0.0 +12184,57,19.5,28,0.0 +12184,55,24,31,0.0 +12184,63,43.9,34,0.0 +12184,18,62.5,20,0.0 +12184,56,38,36,0.0 +12184,23,9,50,0.0 +12184,35,18,40,0.0 +12184,15,15.5,25,0.0 +12184,11,21,33,0.0 +12184,12,38,15,0.0 +12184,77,13,19,0.0 +12184,1,18,48,0.0 +12184,49,20,5,0.0 +12184,17,39,41,0.0 +12184,29,123.79,20,0.0 +12184,43,46,9,0.0 +12184,40,18.4,21,0.0 +12184,25,14,29,0.0 +12184,26,31.23,39,0.0 +12184,65,21.05,5,0.0 +12184,53,32.8,20,0.0 +12184,58,13.25,9,0.0 +12184,73,15,50,0.0 +12184,67,14,36,0.0 +12185,26,31.23,29,0.0 +12185,21,10,1,0.0 +12185,53,32.8,34,0.0 +12185,68,12.5,6,0.0 +12185,44,19.45,14,0.0 +12185,14,23.25,3,0.0 +12185,70,15,12,0.0 +12185,54,7.45,3,0.0 +12185,18,62.5,18,0.0 +12185,5,21.35,11,0.0 +12185,12,38,45,0.0 +12185,16,17.45,13,0.0 +12185,33,2.5,18,0.0 +12185,72,34.8,22,0.0 +12185,55,24,47,0.0 +12185,39,18,45,0.0 +12185,62,49.3,32,0.0 +12185,22,21,15,0.0 +12185,25,14,13,0.0 +12185,42,14,25,0.0 +12185,36,19,19,0.0 +12185,75,7.75,2,0.0 +12185,40,18.4,34,0.0 +12185,45,9.5,25,0.0 +12185,58,13.25,21,0.0 +12185,66,17,7,0.0 +12185,61,28.5,20,0.0 +12185,71,21.5,41,0.0 +12185,74,10,50,0.0 +12185,31,12.5,24,0.0 +12185,6,25,19,0.0 +12185,23,9,9,0.0 +12185,27,43.9,42,0.0 +12185,32,32,34,0.0 +12185,52,7,19,0.0 +12186,23,9,48,0.0 +12186,70,15,24,0.0 +12186,40,18.4,31,0.0 +12186,57,19.5,22,0.0 +12186,61,28.5,16,0.0 +12186,51,53,27,0.0 +12186,55,24,26,0.0 +12186,54,7.45,11,0.0 +12186,33,2.5,39,0.0 +12186,10,31,1,0.0 +12186,35,18,41,0.0 +12186,19,9.2,37,0.0 +12186,52,7,18,0.0 +12186,38,263.5,25,0.0 +12186,2,19,32,0.0 +12186,16,17.45,29,0.0 +12186,50,16.25,21,0.0 +12186,27,43.9,39,0.0 +12186,5,21.35,25,0.0 +12186,6,25,5,0.0 +12186,67,14,38,0.0 +12186,9,97,47,0.0 +12186,20,81,47,0.0 +12186,75,7.75,43,0.0 +12186,22,21,50,0.0 +12186,76,18,29,0.0 +12186,74,10,29,0.0 +12186,1,18,16,0.0 +12186,66,17,14,0.0 +12186,8,40,12,0.0 +12186,43,46,18,0.0 +12186,26,31.23,47,0.0 +12186,48,12.75,45,0.0 +12186,24,4.5,39,0.0 +12186,72,34.8,16,0.0 +12187,34,14,27,0.0 +12187,30,25.89,38,0.0 +12187,66,17,19,0.0 +12187,70,15,3,0.0 +12187,5,21.35,16,0.0 +12187,51,53,28,0.0 +12187,3,10,29,0.0 +12187,48,12.75,13,0.0 +12187,4,22,13,0.0 +12187,55,24,3,0.0 +12187,75,7.75,24,0.0 +12187,42,14,34,0.0 +12187,69,36,16,0.0 +12187,58,13.25,15,0.0 +12187,74,10,37,0.0 +12187,67,14,47,0.0 +12187,54,7.45,2,0.0 +12187,32,32,29,0.0 +12187,39,18,18,0.0 +12187,10,31,44,0.0 +12187,14,23.25,23,0.0 +12187,9,97,44,0.0 +12187,62,49.3,9,0.0 +12187,64,33.25,29,0.0 +12187,31,12.5,23,0.0 +12187,12,38,23,0.0 +12187,8,40,4,0.0 +12187,21,10,22,0.0 +12187,53,32.8,39,0.0 +12187,46,12,8,0.0 +12187,52,7,31,0.0 +12187,11,21,19,0.0 +12187,1,18,39,0.0 +12187,57,19.5,8,0.0 +12187,37,26,40,0.0 +12187,73,15,23,0.0 +12187,18,62.5,40,0.0 +12187,65,21.05,18,0.0 +12187,49,20,46,0.0 +12187,71,21.5,29,0.0 +12187,27,43.9,42,0.0 +12187,61,28.5,7,0.0 +12187,77,13,12,0.0 +12187,24,4.5,37,0.0 +12187,40,18.4,20,0.0 +12187,38,263.5,39,0.0 +12187,23,9,40,0.0 +12187,63,43.9,4,0.0 +12187,26,31.23,14,0.0 +12187,43,46,49,0.0 +12187,25,14,28,0.0 +12187,36,19,31,0.0 +12188,27,43.9,25,0.0 +12188,20,81,41,0.0 +12189,52,7,16,0.0 +12189,1,18,27,0.0 +12189,55,24,44,0.0 +12189,75,7.75,5,0.0 +12189,67,14,47,0.0 +12189,32,32,36,0.0 +12189,48,12.75,17,0.0 +12189,71,21.5,16,0.0 +12189,43,46,40,0.0 +12189,30,25.89,24,0.0 +12189,37,26,7,0.0 +12189,51,53,36,0.0 +12189,28,45.6,14,0.0 +12189,24,4.5,26,0.0 +12189,26,31.23,25,0.0 +12189,10,31,21,0.0 +12189,56,38,40,0.0 +12189,7,30,41,0.0 +12189,63,43.9,9,0.0 +12189,54,7.45,40,0.0 +12189,33,2.5,32,0.0 +12190,19,9.2,20,0.0 +12190,13,6,20,0.0 +12190,36,19,8,0.0 +12190,23,9,23,0.0 +12190,51,53,49,0.0 +12190,33,2.5,27,0.0 +12190,70,15,46,0.0 +12190,52,7,4,0.0 +12190,76,18,29,0.0 +12190,20,81,3,0.0 +12190,59,55,24,0.0 +12191,19,9.2,45,0.0 +12191,40,18.4,43,0.0 +12191,30,25.89,2,0.0 +12191,67,14,6,0.0 +12191,24,4.5,18,0.0 +12191,11,21,3,0.0 +12191,32,32,12,0.0 +12191,66,17,6,0.0 +12191,61,28.5,3,0.0 +12191,29,123.79,35,0.0 +12191,70,15,50,0.0 +12191,33,2.5,38,0.0 +12191,10,31,42,0.0 +12191,2,19,22,0.0 +12191,22,21,20,0.0 +12191,23,9,8,0.0 +12191,63,43.9,9,0.0 +12191,27,43.9,11,0.0 +12191,5,21.35,27,0.0 +12191,52,7,42,0.0 +12191,7,30,16,0.0 +12191,54,7.45,29,0.0 +12191,28,45.6,23,0.0 +12191,25,14,13,0.0 +12191,68,12.5,13,0.0 +12191,49,20,18,0.0 +12191,62,49.3,20,0.0 +12191,16,17.45,20,0.0 +12191,77,13,12,0.0 +12191,47,9.5,1,0.0 +12191,36,19,19,0.0 +12191,46,12,27,0.0 +12191,18,62.5,3,0.0 +12191,65,21.05,3,0.0 +12191,74,10,4,0.0 +12191,58,13.25,3,0.0 +12191,76,18,4,0.0 +12191,37,26,39,0.0 +12191,64,33.25,30,0.0 +12191,42,14,5,0.0 +12191,55,24,19,0.0 +12191,12,38,23,0.0 +12191,48,12.75,49,0.0 +12191,60,34,21,0.0 +12191,20,81,25,0.0 +12191,21,10,43,0.0 +12191,75,7.75,11,0.0 +12191,73,15,24,0.0 +12191,6,25,4,0.0 +12191,35,18,32,0.0 +12191,59,55,17,0.0 +12191,17,39,24,0.0 +12191,57,19.5,23,0.0 +12191,44,19.45,16,0.0 +12191,69,36,34,0.0 +12192,9,97,33,0.0 +12192,36,19,15,0.0 +12192,10,31,43,0.0 +12192,32,32,14,0.0 +12192,28,45.6,26,0.0 +12192,16,17.45,30,0.0 +12192,38,263.5,33,0.0 +12192,61,28.5,33,0.0 +12192,17,39,3,0.0 +12192,62,49.3,19,0.0 +12192,30,25.89,40,0.0 +12192,11,21,41,0.0 +12192,58,13.25,33,0.0 +12192,2,19,46,0.0 +12192,67,14,18,0.0 +12192,77,13,1,0.0 +12192,5,21.35,4,0.0 +12192,49,20,16,0.0 +12192,55,24,15,0.0 +12192,72,34.8,11,0.0 +12192,15,15.5,19,0.0 +12192,75,7.75,10,0.0 +12192,54,7.45,49,0.0 +12192,70,15,9,0.0 +12192,20,81,26,0.0 +12192,33,2.5,15,0.0 +12192,12,38,26,0.0 +12192,52,7,38,0.0 +12192,34,14,29,0.0 +12192,42,14,24,0.0 +12192,4,22,21,0.0 +12192,24,4.5,16,0.0 +12192,19,9.2,27,0.0 +12192,74,10,29,0.0 +12192,46,12,29,0.0 +12192,41,9.65,48,0.0 +12192,57,19.5,30,0.0 +12192,71,21.5,7,0.0 +12192,69,36,12,0.0 +12192,7,30,41,0.0 +12192,27,43.9,33,0.0 +12192,39,18,22,0.0 +12192,21,10,4,0.0 +12192,47,9.5,27,0.0 +12192,13,6,38,0.0 +12192,64,33.25,10,0.0 +12193,28,45.6,29,0.0 +12193,34,14,40,0.0 +12193,69,36,43,0.0 +12193,53,32.8,25,0.0 +12193,40,18.4,4,0.0 +12193,67,14,40,0.0 +12193,70,15,10,0.0 +12193,58,13.25,18,0.0 +12193,73,15,32,0.0 +12193,32,32,10,0.0 +12193,37,26,29,0.0 +12193,15,15.5,15,0.0 +12193,56,38,42,0.0 +12193,18,62.5,28,0.0 +12193,10,31,48,0.0 +12193,57,19.5,36,0.0 +12193,59,55,23,0.0 +12193,14,23.25,23,0.0 +12193,38,263.5,31,0.0 +12193,76,18,25,0.0 +12193,33,2.5,26,0.0 +12193,7,30,9,0.0 +12193,30,25.89,27,0.0 +12193,9,97,47,0.0 +12193,60,34,29,0.0 +12193,13,6,25,0.0 +12193,43,46,35,0.0 +12193,25,14,14,0.0 +12193,48,12.75,41,0.0 +12193,21,10,14,0.0 +12193,24,4.5,12,0.0 +12193,55,24,16,0.0 +12193,68,12.5,4,0.0 +12193,52,7,33,0.0 +12194,28,45.6,2,0.0 +12194,69,36,8,0.0 +12194,14,23.25,27,0.0 +12194,25,14,1,0.0 +12195,43,46,35,0.0 +12195,55,24,50,0.0 +12195,44,19.45,27,0.0 +12195,15,15.5,37,0.0 +12195,11,21,21,0.0 +12195,50,16.25,32,0.0 +12195,77,13,15,0.0 +12195,30,25.89,15,0.0 +12195,24,4.5,44,0.0 +12195,37,26,7,0.0 +12195,54,7.45,19,0.0 +12195,31,12.5,6,0.0 +12195,33,2.5,19,0.0 +12195,21,10,9,0.0 +12195,4,22,20,0.0 +12195,59,55,28,0.0 +12195,6,25,42,0.0 +12195,71,21.5,1,0.0 +12195,12,38,21,0.0 +12195,51,53,39,0.0 +12195,18,62.5,48,0.0 +12195,57,19.5,27,0.0 +12195,10,31,1,0.0 +12195,27,43.9,15,0.0 +12195,64,33.25,6,0.0 +12195,75,7.75,8,0.0 +12195,34,14,47,0.0 +12195,56,38,10,0.0 +12195,23,9,24,0.0 +12195,20,81,42,0.0 +12195,22,21,45,0.0 +12195,40,18.4,25,0.0 +12195,49,20,44,0.0 +12195,74,10,16,0.0 +12195,42,14,13,0.0 +12195,45,9.5,8,0.0 +12195,32,32,42,0.0 +12195,13,6,35,0.0 +12195,69,36,29,0.0 +12195,16,17.45,19,0.0 +12195,25,14,22,0.0 +12195,63,43.9,22,0.0 +12195,19,9.2,36,0.0 +12195,14,23.25,24,0.0 +12195,68,12.5,1,0.0 +12195,66,17,31,0.0 +12195,65,21.05,43,0.0 +12195,9,97,50,0.0 +12195,48,12.75,23,0.0 +12195,17,39,37,0.0 +12195,8,40,31,0.0 +12195,38,263.5,3,0.0 +12195,52,7,46,0.0 +12195,2,19,28,0.0 +12195,60,34,16,0.0 +12195,41,9.65,34,0.0 +12195,73,15,47,0.0 +12195,70,15,12,0.0 +12195,5,21.35,12,0.0 +12195,26,31.23,24,0.0 +12195,7,30,5,0.0 +12195,72,34.8,20,0.0 +12195,61,28.5,19,0.0 +12195,76,18,24,0.0 +12196,59,55,19,0.0 +12196,75,7.75,44,0.0 +12196,42,14,23,0.0 +12196,11,21,35,0.0 +12196,72,34.8,2,0.0 +12196,66,17,26,0.0 +12196,61,28.5,44,0.0 +12196,47,9.5,28,0.0 +12196,21,10,17,0.0 +12196,19,9.2,31,0.0 +12196,74,10,17,0.0 +12196,52,7,41,0.0 +12196,23,9,20,0.0 +12196,41,9.65,46,0.0 +12196,37,26,5,0.0 +12196,3,10,15,0.0 +12196,26,31.23,22,0.0 +12196,22,21,36,0.0 +12196,31,12.5,36,0.0 +12196,73,15,14,0.0 +12196,24,4.5,31,0.0 +12196,67,14,42,0.0 +12196,57,19.5,7,0.0 +12196,39,18,6,0.0 +12196,44,19.45,5,0.0 +12196,55,24,13,0.0 +12196,18,62.5,4,0.0 +12196,53,32.8,38,0.0 +12196,4,22,29,0.0 +12197,68,12.5,22,0.0 +12197,48,12.75,32,0.0 +12197,74,10,33,0.0 +12197,12,38,24,0.0 +12197,29,123.79,27,0.0 +12197,24,4.5,27,0.0 +12197,37,26,12,0.0 +12197,57,19.5,48,0.0 +12197,55,24,41,0.0 +12197,46,12,43,0.0 +12197,73,15,38,0.0 +12197,6,25,1,0.0 +12197,31,12.5,17,0.0 +12197,36,19,13,0.0 +12197,9,97,49,0.0 +12197,65,21.05,18,0.0 +12197,7,30,1,0.0 +12197,14,23.25,22,0.0 +12197,34,14,12,0.0 +12197,42,14,20,0.0 +12197,21,10,4,0.0 +12197,16,17.45,44,0.0 +12197,62,49.3,27,0.0 +12197,59,55,48,0.0 +12197,75,7.75,6,0.0 +12197,25,14,28,0.0 +12197,1,18,46,0.0 +12198,13,6,11,0.0 +12198,68,12.5,14,0.0 +12198,8,40,6,0.0 +12198,60,34,44,0.0 +12198,51,53,15,0.0 +12198,28,45.6,11,0.0 +12198,43,46,4,0.0 +12198,74,10,6,0.0 +12198,76,18,6,0.0 +12198,36,19,10,0.0 +12198,33,2.5,28,0.0 +12198,23,9,13,0.0 +12198,50,16.25,23,0.0 +12198,19,9.2,21,0.0 +12198,57,19.5,22,0.0 +12198,72,34.8,38,0.0 +12198,1,18,42,0.0 +12198,65,21.05,16,0.0 +12198,30,25.89,25,0.0 +12198,71,21.5,47,0.0 +12198,77,13,30,0.0 +12198,3,10,29,0.0 +12198,34,14,6,0.0 +12198,10,31,14,0.0 +12198,70,15,39,0.0 +12198,48,12.75,10,0.0 +12198,26,31.23,35,0.0 +12198,67,14,18,0.0 +12198,18,62.5,36,0.0 +12198,42,14,12,0.0 +12198,52,7,3,0.0 +12198,61,28.5,41,0.0 +12198,58,13.25,15,0.0 +12198,14,23.25,23,0.0 +12198,11,21,38,0.0 +12198,37,26,50,0.0 +12198,6,25,23,0.0 +12198,59,55,9,0.0 +12198,39,18,33,0.0 +12198,35,18,36,0.0 +12198,16,17.45,15,0.0 +12198,32,32,7,0.0 +12198,31,12.5,4,0.0 +12198,15,15.5,5,0.0 +12198,46,12,49,0.0 +12198,27,43.9,3,0.0 +12198,2,19,13,0.0 +12199,63,43.9,30,0.0 +12199,76,18,1,0.0 +12199,67,14,20,0.0 +12199,5,21.35,26,0.0 +12199,57,19.5,19,0.0 +12199,56,38,2,0.0 +12199,74,10,46,0.0 +12199,59,55,50,0.0 +12199,25,14,3,0.0 +12199,21,10,7,0.0 +12199,71,21.5,11,0.0 +12199,46,12,49,0.0 +12199,2,19,1,0.0 +12199,48,12.75,34,0.0 +12199,29,123.79,35,0.0 +12199,75,7.75,7,0.0 +12199,58,13.25,39,0.0 +12199,61,28.5,6,0.0 +12199,28,45.6,12,0.0 +12199,64,33.25,26,0.0 +12199,20,81,39,0.0 +12199,65,21.05,41,0.0 +12199,26,31.23,28,0.0 +12199,77,13,42,0.0 +12199,19,9.2,28,0.0 +12199,31,12.5,1,0.0 +12199,45,9.5,41,0.0 +12199,18,62.5,21,0.0 +12199,7,30,4,0.0 +12199,40,18.4,39,0.0 +12199,70,15,2,0.0 +12199,49,20,43,0.0 +12199,60,34,8,0.0 +12199,72,34.8,43,0.0 +12199,69,36,19,0.0 +12200,54,7.45,17,0.0 +12200,41,9.65,7,0.0 +12200,66,17,25,0.0 +12200,18,62.5,22,0.0 +12200,51,53,36,0.0 +12200,9,97,2,0.0 +12200,65,21.05,48,0.0 +12200,23,9,44,0.0 +12200,36,19,48,0.0 +12200,55,24,29,0.0 +12200,42,14,20,0.0 +12200,6,25,5,0.0 +12200,15,15.5,31,0.0 +12200,40,18.4,32,0.0 +12200,34,14,49,0.0 +12200,37,26,8,0.0 +12200,20,81,23,0.0 +12200,48,12.75,28,0.0 +12200,46,12,15,0.0 +12200,64,33.25,47,0.0 +12200,44,19.45,36,0.0 +12200,14,23.25,26,0.0 +12200,61,28.5,43,0.0 +12200,31,12.5,41,0.0 +12200,57,19.5,35,0.0 +12200,28,45.6,10,0.0 +12200,62,49.3,18,0.0 +12200,1,18,32,0.0 +12200,8,40,22,0.0 +12200,33,2.5,21,0.0 +12200,32,32,44,0.0 +12200,16,17.45,25,0.0 +12200,47,9.5,5,0.0 +12200,2,19,18,0.0 +12200,53,32.8,44,0.0 +12200,50,16.25,32,0.0 +12200,69,36,18,0.0 +12200,74,10,36,0.0 +12200,30,25.89,38,0.0 +12200,10,31,17,0.0 +12200,56,38,7,0.0 +12200,11,21,19,0.0 +12200,35,18,19,0.0 +12200,43,46,35,0.0 +12200,58,13.25,39,0.0 +12200,17,39,5,0.0 +12200,52,7,2,0.0 +12200,70,15,38,0.0 +12200,7,30,12,0.0 +12200,21,10,39,0.0 +12200,24,4.5,49,0.0 +12200,60,34,50,0.0 +12200,5,21.35,1,0.0 +12200,68,12.5,42,0.0 +12200,63,43.9,15,0.0 +12200,27,43.9,28,0.0 +12200,39,18,18,0.0 +12200,71,21.5,50,0.0 +12200,76,18,28,0.0 +12200,22,21,6,0.0 +12200,73,15,47,0.0 +12200,75,7.75,6,0.0 +12200,26,31.23,45,0.0 +12200,25,14,11,0.0 +12200,59,55,46,0.0 +12200,72,34.8,12,0.0 +12200,45,9.5,6,0.0 +12200,38,263.5,50,0.0 +12201,32,32,9,0.0 +12201,71,21.5,22,0.0 +12201,6,25,46,0.0 +12201,66,17,24,0.0 +12201,43,46,45,0.0 +12201,27,43.9,31,0.0 +12201,5,21.35,38,0.0 +12201,7,30,26,0.0 +12201,76,18,37,0.0 +12201,31,12.5,30,0.0 +12201,49,20,50,0.0 +12201,62,49.3,47,0.0 +12201,28,45.6,13,0.0 +12201,21,10,30,0.0 +12201,51,53,20,0.0 +12201,35,18,10,0.0 +12201,75,7.75,21,0.0 +12201,70,15,1,0.0 +12201,20,81,4,0.0 +12201,37,26,23,0.0 +12201,18,62.5,31,0.0 +12201,69,36,25,0.0 +12201,24,4.5,8,0.0 +12201,29,123.79,20,0.0 +12201,56,38,49,0.0 +12201,60,34,2,0.0 +12201,42,14,31,0.0 +12201,33,2.5,50,0.0 +12201,9,97,21,0.0 +12202,18,62.5,25,0.0 +12203,72,34.8,30,0.0 +12203,9,97,16,0.0 +12204,41,9.65,50,0.0 +12204,26,31.23,16,0.0 +12204,12,38,12,0.0 +12204,47,9.5,24,0.0 +12204,1,18,35,0.0 +12204,71,21.5,13,0.0 +12204,66,17,45,0.0 +12204,37,26,26,0.0 +12204,50,16.25,22,0.0 +12204,2,19,27,0.0 +12204,20,81,50,0.0 +12204,73,15,26,0.0 +12205,18,62.5,1,0.0 +12205,23,9,34,0.0 +12205,51,53,1,0.0 +12205,3,10,12,0.0 +12205,74,10,36,0.0 +12205,12,38,50,0.0 +12205,57,19.5,47,0.0 +12205,58,13.25,13,0.0 +12205,69,36,32,0.0 +12205,21,10,10,0.0 +12205,52,7,17,0.0 +12205,34,14,3,0.0 +12205,70,15,38,0.0 +12205,26,31.23,12,0.0 +12205,33,2.5,45,0.0 +12205,25,14,4,0.0 +12205,37,26,28,0.0 +12205,7,30,48,0.0 +12206,48,12.75,15,0.0 +12206,58,13.25,7,0.0 +12206,65,21.05,27,0.0 +12206,19,9.2,28,0.0 +12207,9,97,36,0.0 +12207,27,43.9,1,0.0 +12207,48,12.75,46,0.0 +12207,73,15,45,0.0 +12207,23,9,30,0.0 +12207,19,9.2,22,0.0 +12207,36,19,17,0.0 +12207,45,9.5,31,0.0 +12207,66,17,43,0.0 +12207,6,25,50,0.0 +12207,65,21.05,45,0.0 +12207,76,18,30,0.0 +12207,24,4.5,49,0.0 +12207,33,2.5,41,0.0 +12207,57,19.5,33,0.0 +12207,49,20,13,0.0 +12207,21,10,50,0.0 +12207,62,49.3,13,0.0 +12207,75,7.75,42,0.0 +12207,43,46,7,0.0 +12207,7,30,45,0.0 +12207,44,19.45,41,0.0 +12207,4,22,39,0.0 +12207,69,36,19,0.0 +12207,20,81,3,0.0 +12207,39,18,30,0.0 +12207,14,23.25,50,0.0 +12207,52,7,19,0.0 +12208,9,97,13,0.0 +12208,13,6,13,0.0 +12208,53,32.8,13,0.0 +12208,10,31,50,0.0 +12208,61,28.5,2,0.0 +12208,29,123.79,7,0.0 +12208,52,7,6,0.0 +12208,51,53,24,0.0 +12208,38,263.5,41,0.0 +12208,28,45.6,28,0.0 +12208,48,12.75,15,0.0 +12208,14,23.25,13,0.0 +12208,76,18,29,0.0 +12208,11,21,17,0.0 +12208,25,14,36,0.0 +12208,47,9.5,11,0.0 +12208,64,33.25,22,0.0 +12208,77,13,2,0.0 +12208,72,34.8,34,0.0 +12208,18,62.5,41,0.0 +12208,67,14,39,0.0 +12208,2,19,28,0.0 +12208,26,31.23,31,0.0 +12208,34,14,14,0.0 +12208,31,12.5,28,0.0 +12208,59,55,16,0.0 +12208,66,17,50,0.0 +12208,7,30,40,0.0 +12208,35,18,48,0.0 +12208,37,26,6,0.0 +12208,3,10,16,0.0 +12208,73,15,25,0.0 +12208,60,34,25,0.0 +12208,65,21.05,1,0.0 +12208,6,25,41,0.0 +12208,1,18,4,0.0 +12208,12,38,31,0.0 +12208,71,21.5,29,0.0 +12208,63,43.9,5,0.0 +12208,40,18.4,46,0.0 +12208,21,10,23,0.0 +12208,36,19,28,0.0 +12208,16,17.45,12,0.0 +12208,46,12,3,0.0 +12209,50,16.25,47,0.0 +12209,74,10,19,0.0 +12209,56,38,38,0.0 +12209,16,17.45,32,0.0 +12209,33,2.5,36,0.0 +12209,30,25.89,40,0.0 +12209,61,28.5,19,0.0 +12209,66,17,16,0.0 +12209,37,26,22,0.0 +12209,77,13,40,0.0 +12209,12,38,29,0.0 +12209,69,36,8,0.0 +12209,31,12.5,11,0.0 +12209,40,18.4,1,0.0 +12209,45,9.5,39,0.0 +12209,43,46,12,0.0 +12209,4,22,22,0.0 +12209,26,31.23,45,0.0 +12209,3,10,37,0.0 +12209,32,32,24,0.0 +12209,7,30,39,0.0 +12209,39,18,9,0.0 +12209,14,23.25,45,0.0 +12209,5,21.35,44,0.0 +12209,13,6,24,0.0 +12209,68,12.5,15,0.0 +12209,67,14,28,0.0 +12209,71,21.5,3,0.0 +12209,59,55,34,0.0 +12209,19,9.2,3,0.0 +12209,42,14,47,0.0 +12210,77,13,34,0.0 +12210,31,12.5,9,0.0 +12210,61,28.5,38,0.0 +12210,44,19.45,15,0.0 +12210,27,43.9,9,0.0 +12210,23,9,30,0.0 +12210,12,38,31,0.0 +12210,49,20,26,0.0 +12210,64,33.25,19,0.0 +12210,50,16.25,18,0.0 +12210,37,26,21,0.0 +12210,71,21.5,18,0.0 +12210,62,49.3,2,0.0 +12210,5,21.35,41,0.0 +12210,65,21.05,24,0.0 +12210,40,18.4,43,0.0 +12210,17,39,34,0.0 +12210,66,17,48,0.0 +12210,73,15,5,0.0 +12210,34,14,47,0.0 +12210,21,10,12,0.0 +12210,55,24,34,0.0 +12210,42,14,22,0.0 +12210,60,34,16,0.0 +12210,16,17.45,26,0.0 +12210,10,31,9,0.0 +12210,3,10,49,0.0 +12210,35,18,29,0.0 +12210,15,15.5,41,0.0 +12210,47,9.5,34,0.0 +12210,53,32.8,41,0.0 +12210,4,22,28,0.0 +12210,7,30,37,0.0 +12210,13,6,44,0.0 +12210,57,19.5,10,0.0 +12210,45,9.5,31,0.0 +12210,39,18,30,0.0 +12210,19,9.2,31,0.0 +12210,52,7,17,0.0 +12210,36,19,22,0.0 +12210,70,15,32,0.0 +12210,41,9.65,10,0.0 +12210,1,18,35,0.0 +12210,74,10,3,0.0 +12210,75,7.75,36,0.0 +12210,68,12.5,50,0.0 +12210,14,23.25,8,0.0 +12210,59,55,29,0.0 +12210,38,263.5,4,0.0 +12210,69,36,23,0.0 +12210,6,25,33,0.0 +12210,9,97,15,0.0 +12210,32,32,7,0.0 +12210,8,40,7,0.0 +12210,56,38,6,0.0 +12210,25,14,27,0.0 +12210,20,81,12,0.0 +12210,22,21,3,0.0 +12210,11,21,21,0.0 +12210,48,12.75,38,0.0 +12210,28,45.6,40,0.0 +12210,2,19,3,0.0 +12210,46,12,10,0.0 +12210,58,13.25,6,0.0 +12210,63,43.9,1,0.0 +12210,76,18,20,0.0 +12210,43,46,38,0.0 +12210,72,34.8,11,0.0 +12210,51,53,49,0.0 +12210,67,14,35,0.0 +12210,26,31.23,38,0.0 +12210,24,4.5,29,0.0 +12210,54,7.45,8,0.0 +12210,33,2.5,13,0.0 +12210,29,123.79,40,0.0 +12210,30,25.89,9,0.0 +12210,18,62.5,21,0.0 +12211,6,25,37,0.0 +12211,60,34,9,0.0 +12211,40,18.4,27,0.0 +12211,2,19,7,0.0 +12211,23,9,9,0.0 +12211,39,18,10,0.0 +12211,56,38,29,0.0 +12211,67,14,29,0.0 +12211,77,13,7,0.0 +12211,71,21.5,18,0.0 +12211,19,9.2,42,0.0 +12212,51,53,29,0.0 +12212,77,13,49,0.0 +12212,64,33.25,4,0.0 +12212,43,46,1,0.0 +12212,41,9.65,6,0.0 +12212,5,21.35,44,0.0 +12212,37,26,46,0.0 +12212,13,6,33,0.0 +12212,21,10,3,0.0 +12212,76,18,40,0.0 +12212,20,81,28,0.0 +12212,12,38,1,0.0 +12212,4,22,27,0.0 +12212,16,17.45,28,0.0 +12212,66,17,30,0.0 +12212,6,25,18,0.0 +12213,35,18,45,0.0 +12213,47,9.5,45,0.0 +12213,21,10,36,0.0 +12213,71,21.5,50,0.0 +12213,23,9,4,0.0 +12213,25,14,44,0.0 +12213,57,19.5,36,0.0 +12213,3,10,29,0.0 +12213,10,31,10,0.0 +12213,51,53,7,0.0 +12213,76,18,33,0.0 +12213,33,2.5,32,0.0 +12213,18,62.5,36,0.0 +12213,9,97,16,0.0 +12213,61,28.5,48,0.0 +12213,62,49.3,31,0.0 +12213,45,9.5,29,0.0 +12213,30,25.89,41,0.0 +12213,32,32,29,0.0 +12213,6,25,8,0.0 +12213,20,81,14,0.0 +12213,38,263.5,3,0.0 +12213,69,36,43,0.0 +12213,11,21,43,0.0 +12213,14,23.25,28,0.0 +12213,5,21.35,28,0.0 +12213,13,6,49,0.0 +12213,44,19.45,6,0.0 +12213,59,55,46,0.0 +12213,12,38,14,0.0 +12213,50,16.25,43,0.0 +12213,31,12.5,28,0.0 +12213,52,7,13,0.0 +12213,48,12.75,11,0.0 +12213,56,38,24,0.0 +12213,74,10,11,0.0 +12213,24,4.5,40,0.0 +12213,17,39,24,0.0 +12213,53,32.8,3,0.0 +12213,75,7.75,40,0.0 +12213,42,14,42,0.0 +12213,70,15,16,0.0 +12213,73,15,5,0.0 +12213,2,19,12,0.0 +12213,1,18,17,0.0 +12213,26,31.23,5,0.0 +12213,65,21.05,50,0.0 +12213,40,18.4,7,0.0 +12214,10,31,8,0.0 +12214,5,21.35,11,0.0 +12214,16,17.45,39,0.0 +12214,14,23.25,8,0.0 +12214,50,16.25,16,0.0 +12214,68,12.5,25,0.0 +12214,1,18,4,0.0 +12214,59,55,10,0.0 +12214,54,7.45,7,0.0 +12214,72,34.8,39,0.0 +12214,66,17,36,0.0 +12214,45,9.5,6,0.0 +12214,25,14,29,0.0 +12214,29,123.79,16,0.0 +12214,70,15,18,0.0 +12214,73,15,9,0.0 +12214,77,13,25,0.0 +12214,31,12.5,19,0.0 +12214,2,19,31,0.0 +12214,55,24,19,0.0 +12214,6,25,4,0.0 +12214,4,22,23,0.0 +12214,42,14,41,0.0 +12214,19,9.2,31,0.0 +12214,65,21.05,45,0.0 +12214,7,30,22,0.0 +12214,56,38,7,0.0 +12214,37,26,18,0.0 +12214,30,25.89,20,0.0 +12214,17,39,38,0.0 +12214,49,20,38,0.0 +12214,41,9.65,2,0.0 +12214,46,12,29,0.0 +12214,57,19.5,41,0.0 +12214,18,62.5,44,0.0 +12215,39,18,7,0.0 +12215,77,13,16,0.0 +12215,38,263.5,43,0.0 +12215,74,10,4,0.0 +12215,43,46,50,0.0 +12215,49,20,36,0.0 +12215,10,31,22,0.0 +12215,18,62.5,1,0.0 +12215,33,2.5,14,0.0 +12215,20,81,15,0.0 +12215,73,15,11,0.0 +12215,41,9.65,3,0.0 +12215,62,49.3,8,0.0 +12215,21,10,45,0.0 +12215,11,21,16,0.0 +12215,29,123.79,32,0.0 +12215,68,12.5,15,0.0 +12215,26,31.23,17,0.0 +12215,51,53,38,0.0 +12215,27,43.9,23,0.0 +12215,34,14,36,0.0 +12215,48,12.75,27,0.0 +12215,63,43.9,37,0.0 +12215,56,38,3,0.0 +12215,58,13.25,50,0.0 +12215,2,19,35,0.0 +12215,70,15,36,0.0 +12215,55,24,42,0.0 +12215,44,19.45,2,0.0 +12215,57,19.5,45,0.0 +12215,67,14,11,0.0 +12215,17,39,22,0.0 +12215,35,18,3,0.0 +12215,64,33.25,45,0.0 +12215,53,32.8,39,0.0 +12215,69,36,33,0.0 +12215,25,14,14,0.0 +12215,72,34.8,39,0.0 +12215,40,18.4,26,0.0 +12215,71,21.5,39,0.0 +12215,60,34,47,0.0 +12215,1,18,39,0.0 +12215,45,9.5,9,0.0 +12215,50,16.25,34,0.0 +12215,13,6,1,0.0 +12215,52,7,20,0.0 +12215,36,19,43,0.0 +12215,42,14,26,0.0 +12215,7,30,41,0.0 +12215,66,17,39,0.0 +12215,31,12.5,16,0.0 +12215,61,28.5,37,0.0 +12215,28,45.6,3,0.0 +12215,16,17.45,9,0.0 +12215,47,9.5,27,0.0 +12215,37,26,38,0.0 +12215,75,7.75,1,0.0 +12215,22,21,30,0.0 +12215,15,15.5,37,0.0 +12215,6,25,26,0.0 +12215,59,55,22,0.0 +12215,3,10,44,0.0 +12215,65,21.05,43,0.0 +12215,46,12,36,0.0 +12215,24,4.5,11,0.0 +12215,4,22,29,0.0 +12215,76,18,14,0.0 +12215,5,21.35,15,0.0 +12215,54,7.45,9,0.0 +12215,19,9.2,10,0.0 +12215,14,23.25,28,0.0 +12215,32,32,10,0.0 +12215,23,9,35,0.0 +12216,56,38,14,0.0 +12216,25,14,15,0.0 +12216,76,18,44,0.0 +12216,17,39,21,0.0 +12216,71,21.5,18,0.0 +12216,18,62.5,25,0.0 +12216,14,23.25,37,0.0 +12216,6,25,16,0.0 +12216,8,40,38,0.0 +12216,73,15,10,0.0 +12216,74,10,20,0.0 +12216,65,21.05,34,0.0 +12216,21,10,41,0.0 +12216,28,45.6,48,0.0 +12216,2,19,21,0.0 +12216,72,34.8,10,0.0 +12216,77,13,29,0.0 +12216,24,4.5,40,0.0 +12216,62,49.3,17,0.0 +12216,57,19.5,44,0.0 +12216,45,9.5,2,0.0 +12216,61,28.5,5,0.0 +12216,58,13.25,12,0.0 +12216,44,19.45,39,0.0 +12216,7,30,27,0.0 +12216,27,43.9,20,0.0 +12216,52,7,40,0.0 +12216,9,97,36,0.0 +12216,33,2.5,20,0.0 +12216,41,9.65,34,0.0 +12216,12,38,8,0.0 +12216,23,9,48,0.0 +12216,63,43.9,8,0.0 +12216,42,14,21,0.0 +12217,6,25,34,0.0 +12217,27,43.9,15,0.0 +12217,31,12.5,34,0.0 +12217,44,19.45,25,0.0 +12217,77,13,13,0.0 +12217,2,19,29,0.0 +12217,62,49.3,42,0.0 +12217,25,14,17,0.0 +12217,17,39,8,0.0 +12217,35,18,28,0.0 +12217,4,22,23,0.0 +12217,13,6,4,0.0 +12217,75,7.75,46,0.0 +12217,9,97,10,0.0 +12217,71,21.5,36,0.0 +12218,27,43.9,47,0.0 +12218,53,32.8,27,0.0 +12218,41,9.65,1,0.0 +12218,57,19.5,24,0.0 +12218,6,25,39,0.0 +12218,32,32,42,0.0 +12218,61,28.5,48,0.0 +12218,15,15.5,43,0.0 +12218,33,2.5,14,0.0 +12218,47,9.5,45,0.0 +12218,51,53,48,0.0 +12218,52,7,6,0.0 +12218,36,19,19,0.0 +12218,71,21.5,46,0.0 +12218,9,97,37,0.0 +12218,54,7.45,33,0.0 +12218,45,9.5,28,0.0 +12218,72,34.8,47,0.0 +12218,21,10,33,0.0 +12218,29,123.79,24,0.0 +12218,66,17,20,0.0 +12218,43,46,28,0.0 +12218,75,7.75,24,0.0 +12218,8,40,32,0.0 +12218,30,25.89,47,0.0 +12218,2,19,1,0.0 +12218,16,17.45,29,0.0 +12218,11,21,45,0.0 +12218,42,14,34,0.0 +12218,25,14,35,0.0 +12218,13,6,41,0.0 +12218,26,31.23,14,0.0 +12218,12,38,43,0.0 +12218,50,16.25,11,0.0 +12218,39,18,44,0.0 +12218,40,18.4,39,0.0 +12218,77,13,6,0.0 +12218,14,23.25,15,0.0 +12218,1,18,42,0.0 +12218,62,49.3,31,0.0 +12218,76,18,31,0.0 +12218,48,12.75,25,0.0 +12218,23,9,26,0.0 +12218,55,24,1,0.0 +12218,69,36,14,0.0 +12218,73,15,13,0.0 +12218,74,10,10,0.0 +12218,58,13.25,31,0.0 +12218,56,38,28,0.0 +12218,34,14,5,0.0 +12218,70,15,13,0.0 +12219,27,43.9,49,0.0 +12219,73,15,31,0.0 +12219,2,19,17,0.0 +12219,66,17,5,0.0 +12219,77,13,41,0.0 +12219,42,14,50,0.0 +12219,20,81,11,0.0 +12219,61,28.5,11,0.0 +12219,51,53,42,0.0 +12219,49,20,10,0.0 +12219,67,14,31,0.0 +12219,60,34,21,0.0 +12219,64,33.25,2,0.0 +12219,57,19.5,39,0.0 +12219,63,43.9,2,0.0 +12219,70,15,17,0.0 +12219,35,18,49,0.0 +12219,72,34.8,35,0.0 +12219,26,31.23,6,0.0 +12219,11,21,47,0.0 +12219,25,14,16,0.0 +12219,59,55,20,0.0 +12219,36,19,35,0.0 +12219,12,38,35,0.0 +12219,47,9.5,48,0.0 +12219,39,18,43,0.0 +12220,15,15.5,26,0.0 +12220,16,17.45,11,0.0 +12220,14,23.25,5,0.0 +12220,73,15,46,0.0 +12220,40,18.4,9,0.0 +12220,19,9.2,46,0.0 +12220,62,49.3,16,0.0 +12220,42,14,31,0.0 +12220,32,32,43,0.0 +12220,66,17,3,0.0 +12220,59,55,39,0.0 +12220,33,2.5,20,0.0 +12220,7,30,41,0.0 +12220,36,19,37,0.0 +12220,57,19.5,9,0.0 +12220,38,263.5,27,0.0 +12220,63,43.9,27,0.0 +12220,35,18,13,0.0 +12220,13,6,40,0.0 +12220,58,13.25,24,0.0 +12220,11,21,15,0.0 +12220,31,12.5,31,0.0 +12220,49,20,19,0.0 +12220,71,21.5,24,0.0 +12220,23,9,6,0.0 +12220,9,97,10,0.0 +12220,8,40,15,0.0 +12220,75,7.75,35,0.0 +12220,55,24,32,0.0 +12220,61,28.5,16,0.0 +12220,60,34,1,0.0 +12220,72,34.8,9,0.0 +12220,17,39,42,0.0 +12220,1,18,5,0.0 +12220,65,21.05,28,0.0 +12220,70,15,48,0.0 +12220,26,31.23,48,0.0 +12220,41,9.65,31,0.0 +12220,28,45.6,47,0.0 +12220,10,31,23,0.0 +12220,54,7.45,44,0.0 +12220,25,14,13,0.0 +12220,29,123.79,40,0.0 +12220,30,25.89,8,0.0 +12220,6,25,15,0.0 +12220,21,10,3,0.0 +12220,64,33.25,7,0.0 +12220,67,14,3,0.0 +12220,18,62.5,46,0.0 +12220,4,22,11,0.0 +12220,77,13,21,0.0 +12220,5,21.35,44,0.0 +12220,24,4.5,23,0.0 +12220,48,12.75,20,0.0 +12220,27,43.9,31,0.0 +12220,12,38,5,0.0 +12220,20,81,45,0.0 +12220,3,10,28,0.0 +12220,51,53,41,0.0 +12220,47,9.5,49,0.0 +12220,22,21,27,0.0 +12220,44,19.45,12,0.0 +12220,43,46,47,0.0 +12220,34,14,5,0.0 +12220,76,18,37,0.0 +12220,2,19,40,0.0 +12220,50,16.25,25,0.0 +12221,31,12.5,50,0.0 +12221,55,24,10,0.0 +12221,70,15,17,0.0 +12221,7,30,16,0.0 +12221,47,9.5,3,0.0 +12221,73,15,44,0.0 +12221,9,97,29,0.0 +12221,41,9.65,40,0.0 +12221,56,38,13,0.0 +12221,19,9.2,5,0.0 +12221,75,7.75,18,0.0 +12221,4,22,25,0.0 +12221,63,43.9,25,0.0 +12221,60,34,10,0.0 +12221,59,55,11,0.0 +12221,53,32.8,33,0.0 +12221,13,6,8,0.0 +12221,30,25.89,49,0.0 +12222,17,39,26,0.0 +12222,76,18,16,0.0 +12222,52,7,16,0.0 +12222,35,18,40,0.0 +12222,67,14,7,0.0 +12222,12,38,49,0.0 +12222,61,28.5,16,0.0 +12222,37,26,5,0.0 +12222,15,15.5,41,0.0 +12222,20,81,9,0.0 +12222,5,21.35,35,0.0 +12222,22,21,41,0.0 +12222,48,12.75,13,0.0 +12222,29,123.79,2,0.0 +12222,44,19.45,49,0.0 +12222,32,32,33,0.0 +12222,56,38,8,0.0 +12222,9,97,3,0.0 +12222,64,33.25,9,0.0 +12222,26,31.23,10,0.0 +12222,19,9.2,4,0.0 +12222,30,25.89,2,0.0 +12222,66,17,3,0.0 +12222,47,9.5,29,0.0 +12222,8,40,28,0.0 +12222,41,9.65,26,0.0 +12222,63,43.9,27,0.0 +12222,6,25,49,0.0 +12222,4,22,24,0.0 +12222,60,34,23,0.0 +12222,1,18,24,0.0 +12222,58,13.25,4,0.0 +12222,43,46,22,0.0 +12222,46,12,50,0.0 +12222,13,6,38,0.0 +12222,38,263.5,24,0.0 +12222,25,14,3,0.0 +12222,34,14,48,0.0 +12222,68,12.5,14,0.0 +12222,23,9,41,0.0 +12222,62,49.3,17,0.0 +12222,65,21.05,38,0.0 +12222,40,18.4,41,0.0 +12222,71,21.5,41,0.0 +12222,10,31,20,0.0 +12222,74,10,50,0.0 +12222,36,19,11,0.0 +12222,54,7.45,39,0.0 +12222,42,14,20,0.0 +12222,24,4.5,7,0.0 +12222,7,30,49,0.0 +12222,53,32.8,27,0.0 +12222,33,2.5,12,0.0 +12222,73,15,3,0.0 +12222,57,19.5,15,0.0 +12222,11,21,40,0.0 +12222,3,10,6,0.0 +12222,49,20,2,0.0 +12222,39,18,30,0.0 +12222,45,9.5,25,0.0 +12222,55,24,42,0.0 +12222,75,7.75,6,0.0 +12222,2,19,28,0.0 +12222,21,10,26,0.0 +12222,72,34.8,9,0.0 +12222,18,62.5,21,0.0 +12222,28,45.6,4,0.0 +12222,51,53,44,0.0 +12222,31,12.5,48,0.0 +12223,7,30,12,0.0 +12223,49,20,19,0.0 +12223,61,28.5,25,0.0 +12223,47,9.5,22,0.0 +12223,13,6,47,0.0 +12223,14,23.25,9,0.0 +12223,10,31,19,0.0 +12223,24,4.5,1,0.0 +12223,30,25.89,36,0.0 +12223,38,263.5,16,0.0 +12223,45,9.5,9,0.0 +12223,18,62.5,49,0.0 +12223,50,16.25,8,0.0 +12223,68,12.5,38,0.0 +12223,23,9,11,0.0 +12223,34,14,22,0.0 +12223,60,34,26,0.0 +12223,21,10,27,0.0 +12223,20,81,37,0.0 +12223,5,21.35,28,0.0 +12223,74,10,42,0.0 +12223,66,17,49,0.0 +12223,43,46,36,0.0 +12223,17,39,47,0.0 +12223,11,21,9,0.0 +12223,48,12.75,33,0.0 +12223,52,7,9,0.0 +12223,71,21.5,4,0.0 +12223,1,18,18,0.0 +12223,28,45.6,23,0.0 +12223,31,12.5,25,0.0 +12223,58,13.25,21,0.0 +12223,15,15.5,45,0.0 +12223,75,7.75,31,0.0 +12223,29,123.79,42,0.0 +12223,39,18,19,0.0 +12223,73,15,45,0.0 +12223,70,15,11,0.0 +12223,35,18,44,0.0 +12223,25,14,9,0.0 +12223,62,49.3,13,0.0 +12223,3,10,35,0.0 +12223,19,9.2,19,0.0 +12224,8,40,11,0.0 +12224,53,32.8,22,0.0 +12224,75,7.75,16,0.0 +12224,67,14,43,0.0 +12224,71,21.5,14,0.0 +12224,17,39,46,0.0 +12224,24,4.5,27,0.0 +12224,60,34,10,0.0 +12224,30,25.89,22,0.0 +12224,76,18,9,0.0 +12224,49,20,24,0.0 +12224,62,49.3,17,0.0 +12224,39,18,9,0.0 +12224,16,17.45,4,0.0 +12224,56,38,3,0.0 +12224,73,15,6,0.0 +12224,40,18.4,38,0.0 +12224,41,9.65,11,0.0 +12224,55,24,31,0.0 +12224,35,18,9,0.0 +12224,61,28.5,6,0.0 +12224,47,9.5,15,0.0 +12224,20,81,38,0.0 +12224,28,45.6,25,0.0 +12224,3,10,42,0.0 +12224,77,13,36,0.0 +12224,51,53,37,0.0 +12224,11,21,50,0.0 +12224,64,33.25,47,0.0 +12224,25,14,13,0.0 +12224,4,22,28,0.0 +12224,59,55,22,0.0 +12224,23,9,20,0.0 +12224,32,32,10,0.0 +12224,69,36,48,0.0 +12224,14,23.25,30,0.0 +12224,44,19.45,35,0.0 +12224,68,12.5,4,0.0 +12224,26,31.23,18,0.0 +12224,13,6,34,0.0 +12224,27,43.9,11,0.0 +12224,33,2.5,12,0.0 +12224,63,43.9,21,0.0 +12224,65,21.05,42,0.0 +12224,7,30,50,0.0 +12224,36,19,31,0.0 +12224,42,14,39,0.0 +12224,52,7,46,0.0 +12224,66,17,26,0.0 +12224,31,12.5,31,0.0 +12224,12,38,34,0.0 +12224,74,10,29,0.0 +12225,58,13.25,13,0.0 +12225,14,23.25,46,0.0 +12225,29,123.79,3,0.0 +12225,63,43.9,19,0.0 +12225,9,97,42,0.0 +12225,40,18.4,22,0.0 +12225,32,32,18,0.0 +12225,19,9.2,50,0.0 +12225,50,16.25,31,0.0 +12225,57,19.5,30,0.0 +12225,13,6,34,0.0 +12225,4,22,5,0.0 +12225,18,62.5,17,0.0 +12225,38,263.5,43,0.0 +12225,53,32.8,4,0.0 +12225,76,18,32,0.0 +12225,30,25.89,28,0.0 +12225,25,14,33,0.0 +12225,67,14,25,0.0 +12225,61,28.5,37,0.0 +12225,41,9.65,30,0.0 +12225,15,15.5,22,0.0 +12225,52,7,34,0.0 +12225,35,18,44,0.0 +12225,49,20,43,0.0 +12225,5,21.35,26,0.0 +12225,31,12.5,1,0.0 +12225,74,10,9,0.0 +12225,72,34.8,23,0.0 +12225,11,21,44,0.0 +12225,37,26,38,0.0 +12225,62,49.3,40,0.0 +12225,22,21,11,0.0 +12225,6,25,48,0.0 +12225,3,10,18,0.0 +12225,68,12.5,44,0.0 +12225,59,55,19,0.0 +12225,71,21.5,3,0.0 +12225,12,38,18,0.0 +12225,45,9.5,41,0.0 +12225,23,9,2,0.0 +12225,60,34,4,0.0 +12225,54,7.45,7,0.0 +12225,47,9.5,7,0.0 +12225,1,18,31,0.0 +12225,69,36,8,0.0 +12225,44,19.45,33,0.0 +12225,73,15,24,0.0 +12225,8,40,45,0.0 +12225,43,46,9,0.0 +12225,17,39,21,0.0 +12225,36,19,4,0.0 +12225,21,10,8,0.0 +12225,20,81,16,0.0 +12225,66,17,26,0.0 +12225,77,13,27,0.0 +12225,64,33.25,44,0.0 +12225,75,7.75,2,0.0 +12225,55,24,4,0.0 +12225,56,38,23,0.0 +12225,10,31,35,0.0 +12225,70,15,13,0.0 +12225,42,14,46,0.0 +12225,7,30,35,0.0 +12225,28,45.6,48,0.0 +12226,8,40,9,0.0 +12226,21,10,12,0.0 +12226,40,18.4,36,0.0 +12226,13,6,26,0.0 +12226,22,21,2,0.0 +12226,63,43.9,45,0.0 +12226,34,14,33,0.0 +12226,75,7.75,4,0.0 +12226,53,32.8,36,0.0 +12226,59,55,32,0.0 +12226,7,30,4,0.0 +12226,26,31.23,22,0.0 +12226,11,21,19,0.0 +12226,64,33.25,35,0.0 +12226,16,17.45,20,0.0 +12226,30,25.89,31,0.0 +12226,6,25,13,0.0 +12226,2,19,50,0.0 +12226,55,24,34,0.0 +12226,50,16.25,41,0.0 +12226,12,38,26,0.0 +12226,66,17,13,0.0 +12226,60,34,6,0.0 +12226,17,39,22,0.0 +12226,27,43.9,6,0.0 +12226,57,19.5,45,0.0 +12226,73,15,1,0.0 +12226,67,14,25,0.0 +12226,39,18,45,0.0 +12226,71,21.5,35,0.0 +12226,35,18,47,0.0 +12226,24,4.5,29,0.0 +12226,49,20,33,0.0 +12226,72,34.8,11,0.0 +12226,15,15.5,46,0.0 +12226,36,19,20,0.0 +12226,38,263.5,3,0.0 +12226,68,12.5,48,0.0 +12226,51,53,7,0.0 +12226,46,12,5,0.0 +12226,69,36,34,0.0 +12226,42,14,47,0.0 +12226,3,10,17,0.0 +12226,76,18,42,0.0 +12226,44,19.45,27,0.0 +12226,9,97,47,0.0 +12227,71,21.5,29,0.0 +12227,6,25,27,0.0 +12227,72,34.8,33,0.0 +12227,26,31.23,40,0.0 +12227,55,24,4,0.0 +12227,53,32.8,5,0.0 +12227,69,36,36,0.0 +12227,57,19.5,10,0.0 +12227,60,34,4,0.0 +12227,25,14,40,0.0 +12227,4,22,1,0.0 +12227,38,263.5,45,0.0 +12227,43,46,42,0.0 +12227,41,9.65,18,0.0 +12227,11,21,49,0.0 +12227,9,97,23,0.0 +12227,31,12.5,5,0.0 +12228,30,25.89,46,0.0 +12228,70,15,29,0.0 +12228,28,45.6,41,0.0 +12228,11,21,33,0.0 +12229,63,43.9,8,0.0 +12229,20,81,39,0.0 +12229,4,22,29,0.0 +12229,54,7.45,30,0.0 +12229,65,21.05,17,0.0 +12229,29,123.79,23,0.0 +12229,31,12.5,29,0.0 +12229,69,36,15,0.0 +12229,6,25,18,0.0 +12229,8,40,23,0.0 +12229,21,10,7,0.0 +12229,18,62.5,32,0.0 +12229,23,9,41,0.0 +12229,26,31.23,48,0.0 +12229,38,263.5,4,0.0 +12229,61,28.5,30,0.0 +12229,7,30,48,0.0 +12229,1,18,1,0.0 +12229,13,6,40,0.0 +12229,73,15,27,0.0 +12229,30,25.89,18,0.0 +12229,25,14,46,0.0 +12229,14,23.25,21,0.0 +12229,52,7,15,0.0 +12229,75,7.75,32,0.0 +12229,17,39,49,0.0 +12229,66,17,45,0.0 +12229,50,16.25,10,0.0 +12229,19,9.2,8,0.0 +12229,28,45.6,15,0.0 +12229,45,9.5,45,0.0 +12229,27,43.9,41,0.0 +12229,10,31,41,0.0 +12229,74,10,3,0.0 +12229,62,49.3,47,0.0 +12229,36,19,33,0.0 +12229,15,15.5,47,0.0 +12229,49,20,12,0.0 +12229,44,19.45,41,0.0 +12229,9,97,15,0.0 +12229,11,21,34,0.0 +12229,59,55,1,0.0 +12229,5,21.35,7,0.0 +12229,22,21,50,0.0 +12229,3,10,7,0.0 +12229,37,26,3,0.0 +12229,57,19.5,40,0.0 +12229,41,9.65,39,0.0 +12229,70,15,4,0.0 +12229,48,12.75,37,0.0 +12229,34,14,11,0.0 +12229,53,32.8,6,0.0 +12230,51,53,5,0.0 +12230,30,25.89,41,0.0 +12230,21,10,9,0.0 +12230,62,49.3,37,0.0 +12230,37,26,29,0.0 +12230,73,15,1,0.0 +12230,31,12.5,12,0.0 +12231,56,38,48,0.0 +12231,2,19,6,0.0 +12231,37,26,20,0.0 +12231,27,43.9,43,0.0 +12231,1,18,8,0.0 +12231,17,39,48,0.0 +12231,25,14,40,0.0 +12231,10,31,28,0.0 +12231,7,30,37,0.0 +12231,21,10,10,0.0 +12231,47,9.5,1,0.0 +12231,77,13,29,0.0 +12231,14,23.25,3,0.0 +12231,55,24,9,0.0 +12231,71,21.5,27,0.0 +12231,75,7.75,13,0.0 +12231,64,33.25,30,0.0 +12231,60,34,16,0.0 +12231,59,55,1,0.0 +12231,52,7,37,0.0 +12231,20,81,39,0.0 +12231,40,18.4,3,0.0 +12231,63,43.9,41,0.0 +12231,69,36,18,0.0 +12231,51,53,23,0.0 +12231,24,4.5,44,0.0 +12231,72,34.8,19,0.0 +12231,65,21.05,13,0.0 +12231,33,2.5,2,0.0 +12231,26,31.23,15,0.0 +12231,22,21,41,0.0 +12231,76,18,33,0.0 +12231,6,25,35,0.0 +12231,49,20,48,0.0 +12231,54,7.45,8,0.0 +12231,11,21,9,0.0 +12231,13,6,33,0.0 +12231,61,28.5,14,0.0 +12231,16,17.45,45,0.0 +12231,53,32.8,11,0.0 +12231,9,97,6,0.0 +12231,67,14,50,0.0 +12231,57,19.5,20,0.0 +12231,31,12.5,18,0.0 +12231,38,263.5,46,0.0 +12231,5,21.35,50,0.0 +12231,44,19.45,29,0.0 +12231,48,12.75,20,0.0 +12231,28,45.6,14,0.0 +12231,12,38,18,0.0 +12232,21,10,13,0.0 +12232,28,45.6,26,0.0 +12232,27,43.9,6,0.0 +12232,52,7,37,0.0 +12232,59,55,1,0.0 +12232,64,33.25,50,0.0 +12232,6,25,28,0.0 +12232,20,81,42,0.0 +12232,29,123.79,39,0.0 +12232,30,25.89,1,0.0 +12232,76,18,28,0.0 +12232,65,21.05,34,0.0 +12232,61,28.5,20,0.0 +12232,18,62.5,2,0.0 +12232,41,9.65,8,0.0 +12232,44,19.45,25,0.0 +12232,37,26,34,0.0 +12232,7,30,10,0.0 +12232,35,18,9,0.0 +12232,53,32.8,3,0.0 +12232,71,21.5,45,0.0 +12232,73,15,34,0.0 +12233,69,36,34,0.0 +12233,2,19,31,0.0 +12233,11,21,32,0.0 +12233,15,15.5,25,0.0 +12233,4,22,25,0.0 +12233,50,16.25,1,0.0 +12233,56,38,5,0.0 +12233,23,9,34,0.0 +12233,54,7.45,33,0.0 +12233,18,62.5,3,0.0 +12233,75,7.75,43,0.0 +12233,74,10,2,0.0 +12233,40,18.4,18,0.0 +12233,30,25.89,32,0.0 +12233,17,39,45,0.0 +12233,71,21.5,49,0.0 +12233,13,6,38,0.0 +12233,58,13.25,9,0.0 +12233,63,43.9,49,0.0 +12233,41,9.65,14,0.0 +12233,43,46,6,0.0 +12233,65,21.05,36,0.0 +12233,42,14,17,0.0 +12233,9,97,24,0.0 +12233,77,13,17,0.0 +12233,72,34.8,3,0.0 +12233,20,81,4,0.0 +12233,5,21.35,26,0.0 +12233,47,9.5,5,0.0 +12233,3,10,15,0.0 +12233,55,24,12,0.0 +12233,46,12,28,0.0 +12233,60,34,3,0.0 +12233,19,9.2,21,0.0 +12233,25,14,27,0.0 +12233,67,14,34,0.0 +12233,7,30,16,0.0 +12233,76,18,20,0.0 +12233,38,263.5,3,0.0 +12233,48,12.75,18,0.0 +12233,26,31.23,7,0.0 +12233,57,19.5,15,0.0 +12233,21,10,27,0.0 +12233,1,18,24,0.0 +12233,39,18,30,0.0 +12233,8,40,30,0.0 +12233,6,25,35,0.0 +12233,10,31,1,0.0 +12233,53,32.8,23,0.0 +12233,61,28.5,41,0.0 +12233,51,53,20,0.0 +12233,62,49.3,41,0.0 +12233,28,45.6,45,0.0 +12233,66,17,12,0.0 +12233,27,43.9,26,0.0 +12233,73,15,38,0.0 +12233,12,38,2,0.0 +12233,36,19,4,0.0 +12233,35,18,14,0.0 +12233,52,7,46,0.0 +12233,45,9.5,46,0.0 +12233,59,55,5,0.0 +12233,31,12.5,15,0.0 +12233,29,123.79,1,0.0 +12233,22,21,23,0.0 +12233,49,20,13,0.0 +12233,14,23.25,5,0.0 +12233,68,12.5,46,0.0 +12233,44,19.45,21,0.0 +12233,37,26,30,0.0 +12233,64,33.25,19,0.0 +12233,24,4.5,39,0.0 +12233,16,17.45,19,0.0 +12233,32,32,4,0.0 +12234,9,97,25,0.0 +12234,62,49.3,17,0.0 +12234,68,12.5,23,0.0 +12234,48,12.75,18,0.0 +12234,73,15,48,0.0 +12234,53,32.8,13,0.0 +12235,44,19.45,19,0.0 +12235,27,43.9,23,0.0 +12235,32,32,6,0.0 +12235,74,10,2,0.0 +12235,13,6,43,0.0 +12235,12,38,42,0.0 +12235,18,62.5,36,0.0 +12235,15,15.5,34,0.0 +12235,76,18,5,0.0 +12235,48,12.75,48,0.0 +12235,39,18,42,0.0 +12235,14,23.25,22,0.0 +12235,53,32.8,16,0.0 +12235,5,21.35,17,0.0 +12235,28,45.6,4,0.0 +12235,63,43.9,42,0.0 +12235,19,9.2,41,0.0 +12235,65,21.05,2,0.0 +12235,56,38,16,0.0 +12235,6,25,13,0.0 +12235,57,19.5,8,0.0 +12235,36,19,41,0.0 +12235,11,21,4,0.0 +12235,4,22,41,0.0 +12235,21,10,39,0.0 +12235,3,10,14,0.0 +12235,46,12,28,0.0 +12235,29,123.79,13,0.0 +12235,62,49.3,38,0.0 +12235,55,24,23,0.0 +12235,10,31,10,0.0 +12235,1,18,45,0.0 +12235,59,55,31,0.0 +12235,54,7.45,26,0.0 +12235,23,9,41,0.0 +12235,58,13.25,21,0.0 +12235,52,7,24,0.0 +12235,47,9.5,18,0.0 +12235,73,15,9,0.0 +12235,2,19,22,0.0 +12235,64,33.25,14,0.0 +12235,7,30,40,0.0 +12235,30,25.89,41,0.0 +12235,38,263.5,22,0.0 +12235,75,7.75,23,0.0 +12235,41,9.65,13,0.0 +12235,45,9.5,46,0.0 +12235,17,39,1,0.0 +12235,49,20,7,0.0 +12235,68,12.5,50,0.0 +12235,26,31.23,16,0.0 +12235,25,14,48,0.0 +12235,16,17.45,10,0.0 +12235,70,15,17,0.0 +12235,69,36,8,0.0 +12235,61,28.5,13,0.0 +12235,42,14,35,0.0 +12235,66,17,42,0.0 +12235,22,21,36,0.0 +12236,36,19,3,0.0 +12236,12,38,6,0.0 +12236,50,16.25,40,0.0 +12236,63,43.9,2,0.0 +12236,10,31,7,0.0 +12236,66,17,16,0.0 +12236,65,21.05,7,0.0 +12236,62,49.3,3,0.0 +12236,44,19.45,2,0.0 +12236,22,21,25,0.0 +12236,1,18,23,0.0 +12236,40,18.4,38,0.0 +12236,4,22,17,0.0 +12236,69,36,27,0.0 +12236,47,9.5,32,0.0 +12236,74,10,16,0.0 +12236,38,263.5,12,0.0 +12236,21,10,45,0.0 +12236,14,23.25,1,0.0 +12236,60,34,32,0.0 +12236,56,38,6,0.0 +12236,37,26,33,0.0 +12236,45,9.5,33,0.0 +12236,55,24,6,0.0 +12236,32,32,7,0.0 +12236,73,15,47,0.0 +12236,70,15,46,0.0 +12236,68,12.5,39,0.0 +12236,76,18,14,0.0 +12236,18,62.5,4,0.0 +12236,71,21.5,39,0.0 +12236,54,7.45,32,0.0 +12236,3,10,18,0.0 +12236,31,12.5,9,0.0 +12236,28,45.6,28,0.0 +12236,39,18,13,0.0 +12236,49,20,50,0.0 +12236,16,17.45,39,0.0 +12236,67,14,20,0.0 +12236,51,53,49,0.0 +12236,57,19.5,6,0.0 +12237,62,49.3,30,0.0 +12237,33,2.5,40,0.0 +12237,43,46,26,0.0 +12237,7,30,25,0.0 +12237,30,25.89,5,0.0 +12237,32,32,9,0.0 +12237,18,62.5,21,0.0 +12237,68,12.5,31,0.0 +12237,40,18.4,31,0.0 +12237,1,18,36,0.0 +12237,14,23.25,49,0.0 +12237,63,43.9,17,0.0 +12237,51,53,5,0.0 +12237,65,21.05,25,0.0 +12237,4,22,25,0.0 +12237,31,12.5,10,0.0 +12237,5,21.35,42,0.0 +12237,23,9,35,0.0 +12237,6,25,2,0.0 +12237,48,12.75,23,0.0 +12237,74,10,6,0.0 +12237,8,40,30,0.0 +12237,58,13.25,12,0.0 +12237,17,39,6,0.0 +12237,24,4.5,18,0.0 +12237,39,18,5,0.0 +12237,71,21.5,34,0.0 +12237,50,16.25,15,0.0 +12237,47,9.5,22,0.0 +12237,76,18,8,0.0 +12237,72,34.8,9,0.0 +12237,11,21,41,0.0 +12237,60,34,37,0.0 +12237,29,123.79,43,0.0 +12237,53,32.8,21,0.0 +12237,3,10,25,0.0 +12237,42,14,11,0.0 +12237,73,15,35,0.0 +12237,36,19,38,0.0 +12237,66,17,38,0.0 +12237,9,97,36,0.0 +12237,2,19,45,0.0 +12237,26,31.23,1,0.0 +12237,57,19.5,38,0.0 +12237,35,18,14,0.0 +12237,67,14,38,0.0 +12237,69,36,49,0.0 +12237,19,9.2,37,0.0 +12237,61,28.5,50,0.0 +12237,54,7.45,29,0.0 +12237,15,15.5,10,0.0 +12237,46,12,12,0.0 +12237,21,10,18,0.0 +12237,75,7.75,9,0.0 +12237,10,31,37,0.0 +12237,34,14,8,0.0 +12237,37,26,44,0.0 +12237,70,15,11,0.0 +12237,27,43.9,43,0.0 +12237,20,81,40,0.0 +12238,62,49.3,29,0.0 +12238,3,10,40,0.0 +12238,31,12.5,37,0.0 +12238,34,14,12,0.0 +12238,20,81,20,0.0 +12238,74,10,21,0.0 +12238,60,34,4,0.0 +12238,30,25.89,29,0.0 +12238,14,23.25,36,0.0 +12238,21,10,38,0.0 +12238,49,20,37,0.0 +12238,69,36,1,0.0 +12238,23,9,15,0.0 +12238,38,263.5,4,0.0 +12238,68,12.5,40,0.0 +12238,26,31.23,50,0.0 +12238,63,43.9,3,0.0 +12238,36,19,14,0.0 +12238,65,21.05,41,0.0 +12238,64,33.25,41,0.0 +12239,21,10,30,0.0 +12240,62,49.3,10,0.0 +12240,29,123.79,14,0.0 +12240,67,14,13,0.0 +12240,60,34,33,0.0 +12240,22,21,37,0.0 +12240,33,2.5,21,0.0 +12240,48,12.75,28,0.0 +12240,2,19,3,0.0 +12240,75,7.75,23,0.0 +12240,19,9.2,33,0.0 +12240,28,45.6,10,0.0 +12240,44,19.45,32,0.0 +12240,66,17,24,0.0 +12240,24,4.5,13,0.0 +12240,35,18,9,0.0 +12240,53,32.8,10,0.0 +12240,17,39,19,0.0 +12240,26,31.23,11,0.0 +12240,51,53,28,0.0 +12240,15,15.5,13,0.0 +12240,34,14,12,0.0 +12240,13,6,6,0.0 +12240,12,38,15,0.0 +12240,73,15,12,0.0 +12240,59,55,6,0.0 +12240,43,46,48,0.0 +12240,3,10,28,0.0 +12240,20,81,42,0.0 +12240,18,62.5,38,0.0 +12240,72,34.8,13,0.0 +12240,56,38,2,0.0 +12240,23,9,20,0.0 +12240,47,9.5,37,0.0 +12240,50,16.25,27,0.0 +12240,41,9.65,41,0.0 +12240,65,21.05,43,0.0 +12240,45,9.5,40,0.0 +12240,21,10,40,0.0 +12240,27,43.9,39,0.0 +12240,52,7,20,0.0 +12240,7,30,37,0.0 +12240,69,36,24,0.0 +12240,39,18,7,0.0 +12240,11,21,26,0.0 +12240,58,13.25,39,0.0 +12240,36,19,28,0.0 +12240,64,33.25,12,0.0 +12240,54,7.45,1,0.0 +12240,57,19.5,20,0.0 +12240,4,22,43,0.0 +12240,8,40,44,0.0 +12240,55,24,7,0.0 +12241,2,19,26,0.0 +12241,71,21.5,10,0.0 +12241,41,9.65,23,0.0 +12241,19,9.2,49,0.0 +12241,30,25.89,24,0.0 +12241,49,20,9,0.0 +12241,77,13,29,0.0 +12241,28,45.6,31,0.0 +12241,48,12.75,14,0.0 +12241,59,55,5,0.0 +12241,15,15.5,25,0.0 +12241,27,43.9,48,0.0 +12241,51,53,30,0.0 +12242,61,28.5,37,0.0 +12242,64,33.25,25,0.0 +12242,16,17.45,37,0.0 +12242,30,25.89,12,0.0 +12242,6,25,1,0.0 +12242,65,21.05,3,0.0 +12242,37,26,50,0.0 +12242,51,53,27,0.0 +12242,36,19,32,0.0 +12242,59,55,23,0.0 +12242,63,43.9,41,0.0 +12242,15,15.5,7,0.0 +12242,32,32,7,0.0 +12242,73,15,32,0.0 +12242,60,34,16,0.0 +12242,52,7,50,0.0 +12242,7,30,37,0.0 +12242,18,62.5,47,0.0 +12242,17,39,19,0.0 +12242,21,10,40,0.0 +12242,26,31.23,6,0.0 +12242,45,9.5,16,0.0 +12242,74,10,34,0.0 +12242,72,34.8,7,0.0 +12242,58,13.25,8,0.0 +12242,23,9,46,0.0 +12242,66,17,26,0.0 +12242,20,81,13,0.0 +12242,39,18,6,0.0 +12242,22,21,40,0.0 +12242,69,36,12,0.0 +12242,46,12,20,0.0 +12242,25,14,35,0.0 +12242,77,13,5,0.0 +12242,13,6,28,0.0 +12242,3,10,43,0.0 +12242,14,23.25,4,0.0 +12242,41,9.65,9,0.0 +12242,71,21.5,49,0.0 +12242,9,97,14,0.0 +12242,70,15,33,0.0 +12242,42,14,12,0.0 +12242,8,40,44,0.0 +12242,24,4.5,4,0.0 +12242,47,9.5,14,0.0 +12242,76,18,19,0.0 +12242,75,7.75,17,0.0 +12242,44,19.45,39,0.0 +12242,11,21,44,0.0 +12242,54,7.45,30,0.0 +12242,33,2.5,6,0.0 +12242,49,20,45,0.0 +12242,19,9.2,49,0.0 +12242,35,18,1,0.0 +12242,4,22,28,0.0 +12242,55,24,34,0.0 +12242,57,19.5,25,0.0 +12242,38,263.5,12,0.0 +12242,53,32.8,11,0.0 +12242,29,123.79,49,0.0 +12242,67,14,24,0.0 +12242,48,12.75,16,0.0 +12242,31,12.5,2,0.0 +12242,10,31,5,0.0 +12242,1,18,12,0.0 +12242,34,14,47,0.0 +12243,59,55,44,0.0 +12243,42,14,4,0.0 +12243,17,39,36,0.0 +12243,47,9.5,48,0.0 +12243,70,15,49,0.0 +12243,10,31,3,0.0 +12243,6,25,40,0.0 +12244,76,18,37,0.0 +12244,42,14,46,0.0 +12244,35,18,37,0.0 +12244,58,13.25,38,0.0 +12244,49,20,38,0.0 +12244,59,55,23,0.0 +12244,24,4.5,16,0.0 +12244,56,38,43,0.0 +12244,27,43.9,50,0.0 +12244,51,53,23,0.0 +12244,71,21.5,3,0.0 +12244,41,9.65,41,0.0 +12244,37,26,16,0.0 +12244,39,18,43,0.0 +12244,16,17.45,37,0.0 +12244,7,30,43,0.0 +12244,61,28.5,2,0.0 +12244,20,81,27,0.0 +12244,2,19,19,0.0 +12244,26,31.23,41,0.0 +12244,47,9.5,13,0.0 +12244,12,38,27,0.0 +12244,9,97,34,0.0 +12244,18,62.5,32,0.0 +12244,50,16.25,5,0.0 +12244,52,7,11,0.0 +12244,6,25,42,0.0 +12244,21,10,40,0.0 +12244,72,34.8,25,0.0 +12244,53,32.8,33,0.0 +12244,63,43.9,3,0.0 +12244,22,21,36,0.0 +12244,38,263.5,36,0.0 +12244,13,6,41,0.0 +12244,48,12.75,4,0.0 +12244,45,9.5,8,0.0 +12244,44,19.45,37,0.0 +12244,34,14,8,0.0 +12244,30,25.89,26,0.0 +12244,62,49.3,4,0.0 +12244,29,123.79,18,0.0 +12244,15,15.5,15,0.0 +12244,73,15,21,0.0 +12244,60,34,4,0.0 +12244,74,10,14,0.0 +12244,25,14,23,0.0 +12244,46,12,50,0.0 +12244,54,7.45,19,0.0 +12244,64,33.25,45,0.0 +12244,17,39,1,0.0 +12244,5,21.35,1,0.0 +12244,77,13,37,0.0 +12244,69,36,23,0.0 +12244,1,18,36,0.0 +12244,75,7.75,7,0.0 +12244,31,12.5,6,0.0 +12244,68,12.5,28,0.0 +12244,11,21,7,0.0 +12244,43,46,46,0.0 +12244,8,40,27,0.0 +12244,40,18.4,37,0.0 +12244,23,9,23,0.0 +12244,33,2.5,39,0.0 +12244,19,9.2,13,0.0 +12244,70,15,11,0.0 +12244,4,22,24,0.0 +12244,3,10,15,0.0 +12244,55,24,22,0.0 +12244,57,19.5,14,0.0 +12245,38,263.5,21,0.0 +12245,25,14,26,0.0 +12245,50,16.25,7,0.0 +12245,31,12.5,21,0.0 +12245,18,62.5,1,0.0 +12245,45,9.5,18,0.0 +12245,19,9.2,12,0.0 +12245,44,19.45,10,0.0 +12245,20,81,48,0.0 +12245,75,7.75,32,0.0 +12245,24,4.5,17,0.0 +12245,60,34,36,0.0 +12245,21,10,19,0.0 +12245,6,25,5,0.0 +12245,57,19.5,23,0.0 +12245,53,32.8,25,0.0 +12245,32,32,24,0.0 +12245,62,49.3,38,0.0 +12245,29,123.79,43,0.0 +12245,16,17.45,37,0.0 +12245,30,25.89,12,0.0 +12245,39,18,43,0.0 +12245,74,10,35,0.0 +12246,64,33.25,30,0.0 +12246,23,9,22,0.0 +12246,17,39,46,0.0 +12246,57,19.5,45,0.0 +12246,48,12.75,31,0.0 +12246,12,38,23,0.0 +12246,61,28.5,35,0.0 +12246,34,14,4,0.0 +12246,18,62.5,39,0.0 +12246,45,9.5,7,0.0 +12246,49,20,21,0.0 +12246,60,34,39,0.0 +12246,37,26,45,0.0 +12246,10,31,49,0.0 +12246,43,46,13,0.0 +12246,13,6,4,0.0 +12246,71,21.5,44,0.0 +12246,36,19,3,0.0 +12246,44,19.45,12,0.0 +12246,32,32,16,0.0 +12247,69,36,45,0.0 +12247,39,18,5,0.0 +12247,66,17,1,0.0 +12247,74,10,10,0.0 +12247,30,25.89,13,0.0 +12247,20,81,36,0.0 +12247,3,10,39,0.0 +12247,73,15,26,0.0 +12247,16,17.45,46,0.0 +12247,11,21,43,0.0 +12247,42,14,49,0.0 +12247,49,20,30,0.0 +12247,54,7.45,38,0.0 +12247,34,14,26,0.0 +12247,45,9.5,12,0.0 +12247,47,9.5,30,0.0 +12247,60,34,7,0.0 +12247,61,28.5,38,0.0 +12247,12,38,46,0.0 +12247,51,53,6,0.0 +12247,44,19.45,43,0.0 +12247,59,55,38,0.0 +12247,31,12.5,22,0.0 +12247,57,19.5,19,0.0 +12247,41,9.65,46,0.0 +12248,75,7.75,3,0.0 +12248,40,18.4,43,0.0 +12248,76,18,34,0.0 +12248,52,7,8,0.0 +12248,19,9.2,22,0.0 +12248,33,2.5,23,0.0 +12248,77,13,18,0.0 +12248,6,25,3,0.0 +12248,24,4.5,16,0.0 +12248,67,14,27,0.0 +12248,7,30,1,0.0 +12248,16,17.45,4,0.0 +12248,25,14,33,0.0 +12248,54,7.45,44,0.0 +12248,58,13.25,17,0.0 +12248,59,55,29,0.0 +12248,55,24,33,0.0 +12248,8,40,40,0.0 +12248,12,38,28,0.0 +12248,62,49.3,37,0.0 +12248,51,53,29,0.0 +12248,50,16.25,25,0.0 +12248,1,18,3,0.0 +12249,12,38,20,0.0 +12249,53,32.8,22,0.0 +12249,46,12,42,0.0 +12249,56,38,34,0.0 +12249,51,53,28,0.0 +12249,42,14,4,0.0 +12249,15,15.5,45,0.0 +12249,31,12.5,17,0.0 +12249,35,18,34,0.0 +12249,65,21.05,44,0.0 +12249,37,26,41,0.0 +12249,67,14,17,0.0 +12249,38,263.5,20,0.0 +12249,30,25.89,16,0.0 +12249,24,4.5,43,0.0 +12249,45,9.5,4,0.0 +12249,11,21,36,0.0 +12249,61,28.5,38,0.0 +12249,75,7.75,26,0.0 +12249,32,32,49,0.0 +12249,72,34.8,1,0.0 +12249,66,17,22,0.0 +12249,54,7.45,22,0.0 +12249,6,25,2,0.0 +12249,70,15,3,0.0 +12249,33,2.5,23,0.0 +12249,13,6,18,0.0 +12249,50,16.25,39,0.0 +12249,4,22,30,0.0 +12249,20,81,39,0.0 +12249,18,62.5,29,0.0 +12249,29,123.79,10,0.0 +12249,19,9.2,28,0.0 +12249,59,55,3,0.0 +12249,17,39,29,0.0 +12249,36,19,41,0.0 +12249,55,24,39,0.0 +12249,14,23.25,24,0.0 +12249,26,31.23,43,0.0 +12249,73,15,1,0.0 +12249,40,18.4,42,0.0 +12249,2,19,24,0.0 +12249,68,12.5,32,0.0 +12249,10,31,36,0.0 +12249,7,30,16,0.0 +12249,58,13.25,42,0.0 +12249,25,14,38,0.0 +12249,47,9.5,27,0.0 +12249,8,40,30,0.0 +12249,49,20,17,0.0 +12249,41,9.65,42,0.0 +12249,52,7,44,0.0 +12249,27,43.9,8,0.0 +12249,9,97,36,0.0 +12249,1,18,5,0.0 +12249,3,10,26,0.0 +12249,5,21.35,40,0.0 +12249,64,33.25,30,0.0 +12249,77,13,13,0.0 +12249,28,45.6,2,0.0 +12249,71,21.5,2,0.0 +12249,43,46,15,0.0 +12249,23,9,19,0.0 +12249,76,18,46,0.0 +12249,39,18,8,0.0 +12249,22,21,42,0.0 +12249,34,14,16,0.0 +12249,62,49.3,48,0.0 +12249,44,19.45,18,0.0 +12249,21,10,28,0.0 +12249,63,43.9,30,0.0 +12249,16,17.45,14,0.0 +12249,69,36,22,0.0 +12249,57,19.5,45,0.0 +12249,48,12.75,22,0.0 +12250,47,9.5,45,0.0 +12251,5,21.35,26,0.0 +12251,77,13,12,0.0 +12251,45,9.5,5,0.0 +12251,62,49.3,42,0.0 +12251,13,6,4,0.0 +12251,70,15,6,0.0 +12251,42,14,7,0.0 +12251,18,62.5,16,0.0 +12251,43,46,44,0.0 +12251,1,18,43,0.0 +12251,48,12.75,30,0.0 +12251,34,14,32,0.0 +12251,73,15,34,0.0 +12251,76,18,32,0.0 +12251,9,97,27,0.0 +12251,40,18.4,39,0.0 +12251,31,12.5,45,0.0 +12251,55,24,26,0.0 +12251,61,28.5,46,0.0 +12251,29,123.79,33,0.0 +12252,72,34.8,39,0.0 +12252,51,53,38,0.0 +12252,65,21.05,16,0.0 +12252,20,81,6,0.0 +12252,7,30,30,0.0 +12252,30,25.89,18,0.0 +12252,57,19.5,44,0.0 +12252,3,10,36,0.0 +12252,76,18,49,0.0 +12252,10,31,50,0.0 +12252,21,10,2,0.0 +12252,38,263.5,27,0.0 +12252,18,62.5,8,0.0 +12252,8,40,33,0.0 +12252,43,46,50,0.0 +12252,52,7,25,0.0 +12252,68,12.5,42,0.0 +12252,58,13.25,25,0.0 +12252,40,18.4,35,0.0 +12252,11,21,30,0.0 +12252,50,16.25,4,0.0 +12252,60,34,18,0.0 +12252,35,18,21,0.0 +12252,29,123.79,11,0.0 +12252,14,23.25,3,0.0 +12252,41,9.65,7,0.0 +12252,13,6,35,0.0 +12252,67,14,3,0.0 +12252,2,19,46,0.0 +12252,39,18,17,0.0 +12252,70,15,7,0.0 +12252,47,9.5,20,0.0 +12252,54,7.45,18,0.0 +12252,1,18,16,0.0 +12252,55,24,50,0.0 +12252,71,21.5,16,0.0 +12252,25,14,19,0.0 +12252,44,19.45,3,0.0 +12252,33,2.5,9,0.0 +12252,61,28.5,12,0.0 +12252,9,97,50,0.0 +12253,24,4.5,13,0.0 +12253,2,19,36,0.0 +12253,11,21,40,0.0 +12253,74,10,37,0.0 +12253,25,14,7,0.0 +12253,51,53,26,0.0 +12253,3,10,36,0.0 +12253,41,9.65,13,0.0 +12253,20,81,38,0.0 +12253,8,40,18,0.0 +12253,72,34.8,7,0.0 +12253,70,15,7,0.0 +12253,45,9.5,9,0.0 +12253,10,31,30,0.0 +12253,14,23.25,32,0.0 +12253,76,18,4,0.0 +12253,6,25,10,0.0 +12253,67,14,31,0.0 +12253,28,45.6,28,0.0 +12253,55,24,32,0.0 +12253,48,12.75,44,0.0 +12253,4,22,17,0.0 +12253,19,9.2,3,0.0 +12253,29,123.79,20,0.0 +12253,13,6,37,0.0 +12253,27,43.9,18,0.0 +12253,73,15,35,0.0 +12253,60,34,43,0.0 +12253,42,14,5,0.0 +12253,75,7.75,38,0.0 +12253,59,55,34,0.0 +12254,9,97,38,0.0 +12254,44,19.45,49,0.0 +12254,72,34.8,35,0.0 +12254,45,9.5,36,0.0 +12254,16,17.45,8,0.0 +12254,39,18,9,0.0 +12254,4,22,45,0.0 +12254,73,15,39,0.0 +12254,48,12.75,7,0.0 +12254,33,2.5,6,0.0 +12254,29,123.79,29,0.0 +12254,56,38,35,0.0 +12254,36,19,24,0.0 +12254,5,21.35,10,0.0 +12254,19,9.2,36,0.0 +12254,47,9.5,6,0.0 +12254,15,15.5,33,0.0 +12254,76,18,15,0.0 +12254,24,4.5,50,0.0 +12254,17,39,23,0.0 +12254,7,30,1,0.0 +12254,30,25.89,6,0.0 +12254,70,15,28,0.0 +12254,59,55,31,0.0 +12254,34,14,18,0.0 +12254,66,17,31,0.0 +12254,11,21,13,0.0 +12254,54,7.45,31,0.0 +12254,42,14,19,0.0 +12254,50,16.25,41,0.0 +12254,18,62.5,42,0.0 +12254,49,20,21,0.0 +12254,65,21.05,21,0.0 +12254,25,14,25,0.0 +12254,40,18.4,9,0.0 +12254,43,46,18,0.0 +12254,46,12,21,0.0 +12254,31,12.5,23,0.0 +12254,23,9,34,0.0 +12254,60,34,26,0.0 +12254,61,28.5,40,0.0 +12254,41,9.65,28,0.0 +12254,13,6,23,0.0 +12254,8,40,4,0.0 +12254,1,18,22,0.0 +12254,75,7.75,4,0.0 +12254,12,38,20,0.0 +12254,10,31,26,0.0 +12254,58,13.25,17,0.0 +12254,68,12.5,7,0.0 +12254,57,19.5,9,0.0 +12254,38,263.5,35,0.0 +12254,2,19,4,0.0 +12254,67,14,49,0.0 +12254,52,7,39,0.0 +12254,3,10,48,0.0 +12254,22,21,20,0.0 +12254,27,43.9,45,0.0 +12254,6,25,37,0.0 +12254,53,32.8,4,0.0 +12254,55,24,38,0.0 +12254,35,18,22,0.0 +12254,26,31.23,25,0.0 +12254,63,43.9,3,0.0 +12254,64,33.25,2,0.0 +12254,37,26,34,0.0 +12254,32,32,23,0.0 +12254,20,81,24,0.0 +12254,28,45.6,11,0.0 +12254,71,21.5,34,0.0 +12255,13,6,37,0.0 +12255,76,18,3,0.0 +12255,21,10,43,0.0 +12255,31,12.5,17,0.0 +12255,50,16.25,46,0.0 +12255,8,40,33,0.0 +12255,48,12.75,38,0.0 +12255,45,9.5,15,0.0 +12255,41,9.65,2,0.0 +12255,42,14,45,0.0 +12255,33,2.5,18,0.0 +12255,24,4.5,46,0.0 +12255,52,7,36,0.0 +12255,60,34,48,0.0 +12255,16,17.45,44,0.0 +12255,61,28.5,4,0.0 +12255,39,18,3,0.0 +12255,59,55,33,0.0 +12255,70,15,28,0.0 +12255,35,18,7,0.0 +12255,58,13.25,1,0.0 +12255,53,32.8,39,0.0 +12255,15,15.5,31,0.0 +12255,30,25.89,16,0.0 +12255,12,38,29,0.0 +12255,43,46,37,0.0 +12255,1,18,1,0.0 +12255,29,123.79,28,0.0 +12255,44,19.45,17,0.0 +12255,32,32,27,0.0 +12255,34,14,26,0.0 +12255,46,12,49,0.0 +12255,20,81,40,0.0 +12255,75,7.75,28,0.0 +12255,49,20,37,0.0 +12255,66,17,6,0.0 +12255,68,12.5,24,0.0 +12255,22,21,47,0.0 +12255,5,21.35,1,0.0 +12255,55,24,14,0.0 +12255,18,62.5,17,0.0 +12255,9,97,22,0.0 +12255,25,14,14,0.0 +12255,54,7.45,21,0.0 +12255,10,31,8,0.0 +12255,57,19.5,30,0.0 +12255,63,43.9,47,0.0 +12255,19,9.2,9,0.0 +12255,67,14,19,0.0 +12255,62,49.3,37,0.0 +12255,47,9.5,14,0.0 +12255,38,263.5,38,0.0 +12255,23,9,37,0.0 +12255,14,23.25,28,0.0 +12255,51,53,27,0.0 +12255,77,13,7,0.0 +12255,6,25,22,0.0 +12255,3,10,28,0.0 +12255,26,31.23,33,0.0 +12255,71,21.5,22,0.0 +12255,2,19,5,0.0 +12255,11,21,31,0.0 +12256,12,38,35,0.0 +12256,28,45.6,21,0.0 +12256,66,17,50,0.0 +12256,33,2.5,39,0.0 +12256,24,4.5,26,0.0 +12256,55,24,31,0.0 +12256,49,20,25,0.0 +12256,56,38,47,0.0 +12256,73,15,1,0.0 +12256,17,39,10,0.0 +12256,7,30,39,0.0 +12256,57,19.5,7,0.0 +12256,41,9.65,35,0.0 +12256,2,19,43,0.0 +12256,19,9.2,28,0.0 +12256,51,53,45,0.0 +12256,3,10,18,0.0 +12256,54,7.45,32,0.0 +12256,77,13,45,0.0 +12256,20,81,38,0.0 +12256,11,21,22,0.0 +12256,70,15,24,0.0 +12256,36,19,17,0.0 +12256,65,21.05,49,0.0 +12256,64,33.25,15,0.0 +12256,69,36,25,0.0 +12256,26,31.23,14,0.0 +12256,16,17.45,30,0.0 +12256,5,21.35,13,0.0 +12256,68,12.5,32,0.0 +12256,31,12.5,8,0.0 +12256,72,34.8,9,0.0 +12256,43,46,13,0.0 +12256,40,18.4,36,0.0 +12256,9,97,10,0.0 +12256,37,26,28,0.0 +12256,25,14,20,0.0 +12256,44,19.45,9,0.0 +12256,60,34,47,0.0 +12256,62,49.3,40,0.0 +12256,61,28.5,23,0.0 +12256,13,6,14,0.0 +12256,46,12,21,0.0 +12256,45,9.5,2,0.0 +12256,71,21.5,41,0.0 +12256,53,32.8,12,0.0 +12256,32,32,17,0.0 +12256,10,31,6,0.0 +12256,74,10,24,0.0 +12256,48,12.75,32,0.0 +12256,15,15.5,17,0.0 +12256,52,7,30,0.0 +12256,50,16.25,15,0.0 +12256,27,43.9,29,0.0 +12256,8,40,33,0.0 +12256,18,62.5,50,0.0 +12256,1,18,19,0.0 +12256,63,43.9,4,0.0 +12256,23,9,42,0.0 +12256,4,22,21,0.0 +12256,14,23.25,25,0.0 +12256,58,13.25,31,0.0 +12256,30,25.89,40,0.0 +12256,29,123.79,46,0.0 +12256,39,18,35,0.0 +12256,67,14,38,0.0 +12256,6,25,44,0.0 +12256,75,7.75,35,0.0 +12256,21,10,19,0.0 +12256,35,18,14,0.0 +12256,76,18,6,0.0 +12256,59,55,11,0.0 +12257,62,49.3,25,0.0 +12257,4,22,41,0.0 +12257,74,10,9,0.0 +12257,77,13,27,0.0 +12257,12,38,4,0.0 +12257,65,21.05,2,0.0 +12257,45,9.5,47,0.0 +12257,37,26,41,0.0 +12257,1,18,41,0.0 +12257,60,34,41,0.0 +12257,39,18,11,0.0 +12257,16,17.45,33,0.0 +12257,8,40,40,0.0 +12257,29,123.79,50,0.0 +12257,51,53,45,0.0 +12257,19,9.2,18,0.0 +12257,24,4.5,14,0.0 +12257,13,6,1,0.0 +12257,36,19,20,0.0 +12257,70,15,28,0.0 +12257,59,55,1,0.0 +12257,28,45.6,8,0.0 +12257,76,18,42,0.0 +12257,56,38,7,0.0 +12257,75,7.75,30,0.0 +12257,11,21,50,0.0 +12257,52,7,32,0.0 +12257,66,17,21,0.0 +12257,14,23.25,2,0.0 +12257,10,31,12,0.0 +12257,61,28.5,16,0.0 +12257,57,19.5,21,0.0 +12257,27,43.9,43,0.0 +12257,54,7.45,43,0.0 +12257,9,97,33,0.0 +12257,17,39,31,0.0 +12257,2,19,19,0.0 +12257,55,24,34,0.0 +12257,50,16.25,20,0.0 +12257,48,12.75,41,0.0 +12257,53,32.8,30,0.0 +12257,71,21.5,27,0.0 +12257,42,14,37,0.0 +12257,35,18,23,0.0 +12257,31,12.5,50,0.0 +12257,38,263.5,18,0.0 +12257,64,33.25,24,0.0 +12257,49,20,26,0.0 +12257,26,31.23,37,0.0 +12257,58,13.25,13,0.0 +12257,32,32,22,0.0 +12257,68,12.5,29,0.0 +12257,6,25,34,0.0 +12257,41,9.65,44,0.0 +12258,49,20,38,0.0 +12258,40,18.4,47,0.0 +12258,25,14,13,0.0 +12258,23,9,39,0.0 +12258,54,7.45,2,0.0 +12258,13,6,22,0.0 +12258,30,25.89,33,0.0 +12258,38,263.5,35,0.0 +12258,7,30,35,0.0 +12258,59,55,31,0.0 +12258,14,23.25,7,0.0 +12258,42,14,3,0.0 +12258,57,19.5,22,0.0 +12258,67,14,12,0.0 +12258,50,16.25,24,0.0 +12258,22,21,24,0.0 +12258,46,12,23,0.0 +12258,8,40,1,0.0 +12258,35,18,1,0.0 +12258,1,18,21,0.0 +12258,11,21,2,0.0 +12258,75,7.75,17,0.0 +12258,65,21.05,28,0.0 +12258,2,19,50,0.0 +12258,3,10,12,0.0 +12258,28,45.6,35,0.0 +12258,4,22,48,0.0 +12258,72,34.8,50,0.0 +12258,64,33.25,46,0.0 +12258,55,24,17,0.0 +12258,62,49.3,48,0.0 +12258,47,9.5,16,0.0 +12258,5,21.35,16,0.0 +12258,6,25,45,0.0 +12258,24,4.5,49,0.0 +12258,76,18,15,0.0 +12258,66,17,22,0.0 +12258,16,17.45,49,0.0 +12258,56,38,29,0.0 +12258,19,9.2,40,0.0 +12258,44,19.45,15,0.0 +12258,27,43.9,31,0.0 +12258,18,62.5,26,0.0 +12258,26,31.23,28,0.0 +12258,10,31,13,0.0 +12258,48,12.75,41,0.0 +12258,15,15.5,28,0.0 +12258,68,12.5,2,0.0 +12258,51,53,49,0.0 +12258,32,32,13,0.0 +12258,37,26,47,0.0 +12258,12,38,31,0.0 +12258,39,18,48,0.0 +12258,20,81,21,0.0 +12258,29,123.79,32,0.0 +12258,77,13,49,0.0 +12258,63,43.9,14,0.0 +12258,71,21.5,38,0.0 +12258,74,10,17,0.0 +12258,58,13.25,9,0.0 +12258,41,9.65,26,0.0 +12258,34,14,3,0.0 +12258,45,9.5,47,0.0 +12258,43,46,16,0.0 +12258,31,12.5,15,0.0 +12258,17,39,8,0.0 +12259,75,7.75,48,0.0 +12259,7,30,24,0.0 +12259,30,25.89,27,0.0 +12259,17,39,28,0.0 +12259,59,55,44,0.0 +12259,21,10,49,0.0 +12259,56,38,11,0.0 +12259,46,12,28,0.0 +12259,32,32,46,0.0 +12259,52,7,47,0.0 +12259,68,12.5,9,0.0 +12259,44,19.45,44,0.0 +12259,4,22,5,0.0 +12259,16,17.45,15,0.0 +12259,48,12.75,15,0.0 +12259,76,18,34,0.0 +12259,55,24,36,0.0 +12259,24,4.5,30,0.0 +12259,45,9.5,29,0.0 +12259,13,6,13,0.0 +12259,69,36,1,0.0 +12259,19,9.2,11,0.0 +12259,62,49.3,16,0.0 +12259,37,26,21,0.0 +12259,70,15,17,0.0 +12259,6,25,22,0.0 +12259,10,31,30,0.0 +12259,50,16.25,28,0.0 +12259,77,13,11,0.0 +12259,42,14,50,0.0 +12259,12,38,17,0.0 +12259,51,53,27,0.0 +12259,18,62.5,17,0.0 +12259,3,10,8,0.0 +12259,60,34,50,0.0 +12259,14,23.25,39,0.0 +12259,49,20,39,0.0 +12259,73,15,22,0.0 +12259,15,15.5,46,0.0 +12259,25,14,42,0.0 +12259,57,19.5,41,0.0 +12259,71,21.5,20,0.0 +12259,53,32.8,29,0.0 +12259,67,14,39,0.0 +12259,5,21.35,45,0.0 +12259,27,43.9,24,0.0 +12259,35,18,21,0.0 +12259,28,45.6,9,0.0 +12259,33,2.5,50,0.0 +12259,66,17,23,0.0 +12259,22,21,42,0.0 +12259,11,21,25,0.0 +12259,2,19,45,0.0 +12259,9,97,27,0.0 +12259,43,46,45,0.0 +12259,23,9,32,0.0 +12259,26,31.23,26,0.0 +12259,34,14,27,0.0 +12259,1,18,19,0.0 +12259,65,21.05,14,0.0 +12259,20,81,47,0.0 +12259,29,123.79,47,0.0 +12259,64,33.25,4,0.0 +12259,8,40,47,0.0 +12260,64,33.25,34,0.0 +12260,37,26,11,0.0 +12260,33,2.5,43,0.0 +12260,24,4.5,10,0.0 +12260,73,15,23,0.0 +12261,71,21.5,50,0.0 +12261,35,18,20,0.0 +12261,8,40,35,0.0 +12261,23,9,26,0.0 +12261,26,31.23,22,0.0 +12261,51,53,22,0.0 +12261,21,10,27,0.0 +12261,48,12.75,30,0.0 +12261,31,12.5,4,0.0 +12261,43,46,17,0.0 +12261,58,13.25,40,0.0 +12261,44,19.45,10,0.0 +12261,77,13,3,0.0 +12261,34,14,33,0.0 +12261,45,9.5,40,0.0 +12261,38,263.5,48,0.0 +12261,59,55,6,0.0 +12261,32,32,5,0.0 +12261,19,9.2,23,0.0 +12261,4,22,42,0.0 +12261,61,28.5,5,0.0 +12261,16,17.45,24,0.0 +12262,49,20,25,0.0 +12262,63,43.9,14,0.0 +12262,2,19,2,0.0 +12262,50,16.25,15,0.0 +12262,52,7,40,0.0 +12262,44,19.45,26,0.0 +12262,31,12.5,3,0.0 +12262,69,36,7,0.0 +12262,39,18,13,0.0 +12262,26,31.23,5,0.0 +12262,61,28.5,1,0.0 +12262,37,26,9,0.0 +12262,75,7.75,48,0.0 +12262,22,21,4,0.0 +12262,14,23.25,16,0.0 +12263,69,36,23,0.0 +12263,8,40,11,0.0 +12263,77,13,24,0.0 +12263,34,14,34,0.0 +12263,27,43.9,28,0.0 +12263,35,18,17,0.0 +12263,18,62.5,23,0.0 +12263,23,9,49,0.0 +12263,2,19,32,0.0 +12263,71,21.5,5,0.0 +12263,76,18,45,0.0 +12263,33,2.5,50,0.0 +12263,1,18,36,0.0 +12263,12,38,50,0.0 +12263,16,17.45,20,0.0 +12263,41,9.65,36,0.0 +12263,68,12.5,7,0.0 +12263,6,25,36,0.0 +12263,25,14,9,0.0 +12263,73,15,29,0.0 +12263,46,12,24,0.0 +12263,51,53,26,0.0 +12263,70,15,34,0.0 +12263,63,43.9,7,0.0 +12263,21,10,42,0.0 +12263,43,46,37,0.0 +12263,64,33.25,38,0.0 +12263,7,30,16,0.0 +12263,22,21,15,0.0 +12263,58,13.25,40,0.0 +12263,40,18.4,29,0.0 +12263,11,21,33,0.0 +12263,42,14,33,0.0 +12263,75,7.75,9,0.0 +12263,52,7,11,0.0 +12263,54,7.45,20,0.0 +12263,47,9.5,2,0.0 +12263,59,55,49,0.0 +12263,62,49.3,49,0.0 +12263,53,32.8,23,0.0 +12263,13,6,43,0.0 +12263,31,12.5,3,0.0 +12263,19,9.2,19,0.0 +12263,15,15.5,41,0.0 +12263,38,263.5,33,0.0 +12263,28,45.6,27,0.0 +12263,61,28.5,5,0.0 +12263,39,18,44,0.0 +12263,24,4.5,1,0.0 +12263,55,24,19,0.0 +12263,20,81,11,0.0 +12263,26,31.23,2,0.0 +12263,65,21.05,45,0.0 +12263,57,19.5,3,0.0 +12263,72,34.8,44,0.0 +12263,36,19,35,0.0 +12263,32,32,34,0.0 +12263,10,31,21,0.0 +12263,60,34,34,0.0 +12263,29,123.79,46,0.0 +12263,48,12.75,48,0.0 +12263,30,25.89,2,0.0 +12263,67,14,17,0.0 +12263,5,21.35,8,0.0 +12263,44,19.45,14,0.0 +12263,74,10,21,0.0 +12263,50,16.25,27,0.0 +12263,17,39,37,0.0 +12263,49,20,5,0.0 +12263,66,17,18,0.0 +12263,4,22,33,0.0 +12263,45,9.5,43,0.0 +12263,14,23.25,17,0.0 +12263,3,10,28,0.0 +12263,56,38,18,0.0 +12263,37,26,34,0.0 +12264,57,19.5,9,0.0 +12264,67,14,36,0.0 +12264,64,33.25,44,0.0 +12264,51,53,45,0.0 +12264,21,10,21,0.0 +12264,68,12.5,42,0.0 +12264,38,263.5,39,0.0 +12264,10,31,50,0.0 +12264,43,46,37,0.0 +12264,69,36,38,0.0 +12264,31,12.5,12,0.0 +12264,23,9,15,0.0 +12264,34,14,46,0.0 +12264,42,14,21,0.0 +12264,4,22,40,0.0 +12264,2,19,31,0.0 +12264,14,23.25,41,0.0 +12264,74,10,26,0.0 +12264,54,7.45,18,0.0 +12264,70,15,24,0.0 +12264,75,7.75,38,0.0 +12264,52,7,32,0.0 +12264,73,15,37,0.0 +12264,66,17,26,0.0 +12264,63,43.9,3,0.0 +12264,60,34,16,0.0 +12264,29,123.79,22,0.0 +12264,6,25,5,0.0 +12264,35,18,1,0.0 +12264,11,21,26,0.0 +12264,72,34.8,30,0.0 +12264,22,21,46,0.0 +12264,44,19.45,34,0.0 +12264,13,6,12,0.0 +12264,5,21.35,35,0.0 +12264,36,19,9,0.0 +12264,15,15.5,2,0.0 +12264,39,18,21,0.0 +12264,48,12.75,17,0.0 +12264,62,49.3,9,0.0 +12264,3,10,4,0.0 +12264,28,45.6,32,0.0 +12264,12,38,34,0.0 +12264,17,39,39,0.0 +12265,13,6,12,0.0 +12265,12,38,41,0.0 +12265,60,34,26,0.0 +12265,8,40,36,0.0 +12265,16,17.45,4,0.0 +12265,29,123.79,26,0.0 +12265,17,39,43,0.0 +12265,52,7,12,0.0 +12265,62,49.3,31,0.0 +12265,46,12,26,0.0 +12265,40,18.4,48,0.0 +12265,38,263.5,41,0.0 +12265,76,18,5,0.0 +12265,43,46,6,0.0 +12265,51,53,8,0.0 +12265,28,45.6,39,0.0 +12265,59,55,6,0.0 +12265,55,24,25,0.0 +12265,15,15.5,47,0.0 +12265,30,25.89,12,0.0 +12265,2,19,7,0.0 +12265,27,43.9,10,0.0 +12265,67,14,49,0.0 +12265,61,28.5,3,0.0 +12265,47,9.5,30,0.0 +12266,36,19,27,0.0 +12266,56,38,28,0.0 +12266,41,9.65,18,0.0 +12266,1,18,43,0.0 +12266,52,7,47,0.0 +12266,64,33.25,30,0.0 +12266,29,123.79,37,0.0 +12266,17,39,34,0.0 +12266,18,62.5,34,0.0 +12266,54,7.45,1,0.0 +12266,7,30,39,0.0 +12266,31,12.5,7,0.0 +12266,70,15,35,0.0 +12266,38,263.5,41,0.0 +12266,28,45.6,22,0.0 +12266,47,9.5,46,0.0 +12266,16,17.45,13,0.0 +12266,68,12.5,10,0.0 +12266,49,20,47,0.0 +12266,32,32,37,0.0 +12266,24,4.5,7,0.0 +12266,6,25,34,0.0 +12266,37,26,47,0.0 +12266,8,40,10,0.0 +12266,57,19.5,31,0.0 +12266,10,31,20,0.0 +12266,23,9,39,0.0 +12266,34,14,38,0.0 +12266,27,43.9,17,0.0 +12266,45,9.5,18,0.0 +12266,76,18,4,0.0 +12266,44,19.45,21,0.0 +12266,55,24,16,0.0 +12266,66,17,48,0.0 +12266,59,55,26,0.0 +12266,22,21,30,0.0 +12266,65,21.05,33,0.0 +12267,9,97,37,0.0 +12267,32,32,26,0.0 +12267,45,9.5,7,0.0 +12267,72,34.8,17,0.0 +12267,38,263.5,38,0.0 +12267,64,33.25,40,0.0 +12267,37,26,20,0.0 +12267,40,18.4,28,0.0 +12267,52,7,22,0.0 +12267,59,55,33,0.0 +12267,66,17,32,0.0 +12267,25,14,19,0.0 +12267,71,21.5,20,0.0 +12267,10,31,23,0.0 +12267,29,123.79,7,0.0 +12267,75,7.75,17,0.0 +12267,1,18,41,0.0 +12268,11,21,31,0.0 +12268,58,13.25,41,0.0 +12268,19,9.2,20,0.0 +12268,28,45.6,35,0.0 +12268,3,10,45,0.0 +12268,48,12.75,30,0.0 +12268,32,32,8,0.0 +12268,63,43.9,6,0.0 +12268,23,9,42,0.0 +12268,12,38,25,0.0 +12268,59,55,29,0.0 +12268,57,19.5,13,0.0 +12268,30,25.89,2,0.0 +12268,2,19,42,0.0 +12268,66,17,43,0.0 +12268,22,21,18,0.0 +12268,73,15,41,0.0 +12268,15,15.5,49,0.0 +12268,64,33.25,33,0.0 +12268,54,7.45,16,0.0 +12268,21,10,40,0.0 +12268,45,9.5,24,0.0 +12268,16,17.45,14,0.0 +12268,77,13,27,0.0 +12268,44,19.45,11,0.0 +12268,53,32.8,4,0.0 +12268,68,12.5,19,0.0 +12268,20,81,13,0.0 +12268,69,36,6,0.0 +12268,55,24,45,0.0 +12268,38,263.5,25,0.0 +12268,74,10,25,0.0 +12268,50,16.25,1,0.0 +12269,29,123.79,5,0.0 +12269,68,12.5,48,0.0 +12269,2,19,45,0.0 +12269,18,62.5,23,0.0 +12269,9,97,21,0.0 +12269,54,7.45,27,0.0 +12269,38,263.5,35,0.0 +12269,5,21.35,3,0.0 +12269,53,32.8,10,0.0 +12269,35,18,14,0.0 +12269,47,9.5,1,0.0 +12269,40,18.4,20,0.0 +12269,74,10,49,0.0 +12269,19,9.2,3,0.0 +12269,75,7.75,19,0.0 +12269,14,23.25,6,0.0 +12269,8,40,7,0.0 +12269,58,13.25,21,0.0 +12269,76,18,2,0.0 +12269,59,55,24,0.0 +12269,60,34,29,0.0 +12269,64,33.25,34,0.0 +12269,10,31,25,0.0 +12269,73,15,40,0.0 +12269,48,12.75,15,0.0 +12269,57,19.5,36,0.0 +12269,34,14,8,0.0 +12269,16,17.45,3,0.0 +12269,31,12.5,48,0.0 +12269,46,12,8,0.0 +12269,39,18,11,0.0 +12269,27,43.9,45,0.0 +12269,11,21,31,0.0 +12269,12,38,2,0.0 +12269,72,34.8,41,0.0 +12269,24,4.5,33,0.0 +12269,66,17,26,0.0 +12269,6,25,22,0.0 +12269,52,7,17,0.0 +12269,13,6,4,0.0 +12269,61,28.5,49,0.0 +12269,22,21,38,0.0 +12269,71,21.5,48,0.0 +12269,50,16.25,25,0.0 +12269,67,14,49,0.0 +12269,43,46,12,0.0 +12269,20,81,16,0.0 +12269,63,43.9,6,0.0 +12269,62,49.3,42,0.0 +12269,17,39,31,0.0 +12269,32,32,32,0.0 +12269,69,36,31,0.0 +12269,55,24,25,0.0 +12269,41,9.65,49,0.0 +12269,65,21.05,43,0.0 +12269,15,15.5,14,0.0 +12269,77,13,50,0.0 +12269,1,18,16,0.0 +12269,3,10,13,0.0 +12269,36,19,23,0.0 +12269,26,31.23,5,0.0 +12270,15,15.5,12,0.0 +12270,40,18.4,45,0.0 +12270,77,13,36,0.0 +12270,21,10,23,0.0 +12270,51,53,13,0.0 +12270,31,12.5,4,0.0 +12270,54,7.45,47,0.0 +12270,69,36,41,0.0 +12270,50,16.25,44,0.0 +12270,5,21.35,36,0.0 +12270,38,263.5,18,0.0 +12270,65,21.05,14,0.0 +12270,46,12,48,0.0 +12270,76,18,41,0.0 +12270,68,12.5,22,0.0 +12270,71,21.5,13,0.0 +12270,23,9,36,0.0 +12270,73,15,2,0.0 +12270,20,81,23,0.0 +12270,25,14,14,0.0 +12270,61,28.5,32,0.0 +12270,49,20,8,0.0 +12270,28,45.6,15,0.0 +12270,7,30,40,0.0 +12270,58,13.25,17,0.0 +12270,63,43.9,2,0.0 +12270,16,17.45,26,0.0 +12270,75,7.75,21,0.0 +12270,44,19.45,36,0.0 +12270,43,46,9,0.0 +12270,26,31.23,10,0.0 +12270,29,123.79,49,0.0 +12270,39,18,50,0.0 +12270,52,7,48,0.0 +12270,72,34.8,39,0.0 +12270,4,22,50,0.0 +12270,60,34,46,0.0 +12270,24,4.5,43,0.0 +12270,42,14,39,0.0 +12270,74,10,20,0.0 +12270,64,33.25,48,0.0 +12270,67,14,6,0.0 +12270,17,39,1,0.0 +12270,8,40,46,0.0 +12270,36,19,25,0.0 +12270,6,25,39,0.0 +12270,47,9.5,10,0.0 +12270,1,18,27,0.0 +12270,56,38,26,0.0 +12270,59,55,13,0.0 +12270,10,31,41,0.0 +12270,30,25.89,33,0.0 +12270,57,19.5,47,0.0 +12270,37,26,31,0.0 +12270,70,15,50,0.0 +12270,35,18,2,0.0 +12270,2,19,27,0.0 +12270,34,14,25,0.0 +12270,66,17,31,0.0 +12270,22,21,27,0.0 +12270,45,9.5,37,0.0 +12270,27,43.9,24,0.0 +12270,13,6,20,0.0 +12270,3,10,32,0.0 +12270,19,9.2,18,0.0 +12270,9,97,46,0.0 +12270,41,9.65,25,0.0 +12270,11,21,26,0.0 +12270,53,32.8,24,0.0 +12270,12,38,3,0.0 +12270,33,2.5,21,0.0 +12270,48,12.75,8,0.0 +12270,18,62.5,37,0.0 +12270,62,49.3,37,0.0 +12270,32,32,44,0.0 +12270,14,23.25,12,0.0 +12270,55,24,24,0.0 +12271,29,123.79,17,0.0 +12271,6,25,22,0.0 +12271,46,12,10,0.0 +12271,3,10,46,0.0 +12271,56,38,4,0.0 +12271,66,17,42,0.0 +12271,21,10,25,0.0 +12271,1,18,17,0.0 +12271,76,18,18,0.0 +12271,27,43.9,43,0.0 +12271,63,43.9,35,0.0 +12271,57,19.5,22,0.0 +12271,41,9.65,40,0.0 +12271,72,34.8,36,0.0 +12271,53,32.8,43,0.0 +12271,19,9.2,17,0.0 +12271,24,4.5,35,0.0 +12271,54,7.45,50,0.0 +12271,59,55,48,0.0 +12271,30,25.89,50,0.0 +12271,23,9,19,0.0 +12271,13,6,9,0.0 +12271,4,22,29,0.0 +12271,55,24,27,0.0 +12271,48,12.75,23,0.0 +12271,51,53,27,0.0 +12271,25,14,29,0.0 +12271,7,30,34,0.0 +12271,39,18,1,0.0 +12271,52,7,38,0.0 +12271,44,19.45,44,0.0 +12271,28,45.6,11,0.0 +12271,20,81,34,0.0 +12271,2,19,47,0.0 +12271,32,32,6,0.0 +12271,42,14,5,0.0 +12271,69,36,24,0.0 +12271,43,46,20,0.0 +12271,31,12.5,38,0.0 +12271,40,18.4,16,0.0 +12271,47,9.5,42,0.0 +12271,22,21,8,0.0 +12271,14,23.25,20,0.0 +12271,68,12.5,3,0.0 +12271,38,263.5,15,0.0 +12271,70,15,49,0.0 +12271,73,15,28,0.0 +12271,50,16.25,38,0.0 +12271,37,26,6,0.0 +12271,16,17.45,16,0.0 +12271,35,18,10,0.0 +12271,64,33.25,23,0.0 +12271,33,2.5,26,0.0 +12271,12,38,28,0.0 +12271,9,97,1,0.0 +12271,10,31,35,0.0 +12271,60,34,44,0.0 +12271,75,7.75,43,0.0 +12271,65,21.05,26,0.0 +12271,67,14,39,0.0 +12271,18,62.5,5,0.0 +12271,49,20,24,0.0 +12271,62,49.3,5,0.0 +12271,15,15.5,40,0.0 +12271,8,40,26,0.0 +12271,5,21.35,28,0.0 +12272,30,25.89,13,0.0 +12272,28,45.6,14,0.0 +12272,25,14,1,0.0 +12272,65,21.05,14,0.0 +12272,75,7.75,14,0.0 +12272,9,97,30,0.0 +12272,60,34,13,0.0 +12272,40,18.4,16,0.0 +12272,55,24,26,0.0 +12272,50,16.25,38,0.0 +12272,39,18,17,0.0 +12272,43,46,41,0.0 +12272,31,12.5,34,0.0 +12272,34,14,42,0.0 +12272,63,43.9,2,0.0 +12272,44,19.45,46,0.0 +12272,51,53,32,0.0 +12272,68,12.5,47,0.0 +12272,52,7,41,0.0 +12272,10,31,33,0.0 +12272,57,19.5,10,0.0 +12272,3,10,45,0.0 +12272,17,39,36,0.0 +12272,56,38,46,0.0 +12272,64,33.25,34,0.0 +12272,36,19,9,0.0 +12272,4,22,10,0.0 +12272,49,20,32,0.0 +12272,2,19,16,0.0 +12272,41,9.65,26,0.0 +12272,15,15.5,14,0.0 +12272,18,62.5,24,0.0 +12272,47,9.5,47,0.0 +12272,59,55,17,0.0 +12272,71,21.5,26,0.0 +12272,46,12,15,0.0 +12272,45,9.5,15,0.0 +12272,37,26,43,0.0 +12272,5,21.35,10,0.0 +12272,24,4.5,42,0.0 +12272,70,15,12,0.0 +12272,54,7.45,33,0.0 +12272,74,10,48,0.0 +12272,32,32,18,0.0 +12272,21,10,44,0.0 +12272,27,43.9,37,0.0 +12272,23,9,45,0.0 +12272,61,28.5,15,0.0 +12272,73,15,3,0.0 +12272,76,18,37,0.0 +12272,20,81,42,0.0 +12272,26,31.23,24,0.0 +12272,19,9.2,47,0.0 +12272,22,21,34,0.0 +12272,77,13,45,0.0 +12272,58,13.25,42,0.0 +12272,48,12.75,18,0.0 +12272,67,14,12,0.0 +12272,33,2.5,33,0.0 +12272,69,36,13,0.0 +12272,12,38,9,0.0 +12272,14,23.25,24,0.0 +12272,66,17,14,0.0 +12272,72,34.8,45,0.0 +12272,35,18,33,0.0 +12272,62,49.3,12,0.0 +12272,6,25,41,0.0 +12273,62,49.3,41,0.0 +12273,13,6,44,0.0 +12273,70,15,21,0.0 +12273,61,28.5,44,0.0 +12273,51,53,47,0.0 +12273,40,18.4,18,0.0 +12273,27,43.9,32,0.0 +12273,23,9,20,0.0 +12273,76,18,16,0.0 +12273,64,33.25,43,0.0 +12273,9,97,50,0.0 +12273,55,24,12,0.0 +12273,21,10,9,0.0 +12273,35,18,11,0.0 +12273,53,32.8,1,0.0 +12273,14,23.25,31,0.0 +12273,12,38,34,0.0 +12273,74,10,23,0.0 +12273,36,19,18,0.0 +12273,29,123.79,43,0.0 +12273,73,15,39,0.0 +12273,42,14,42,0.0 +12273,57,19.5,24,0.0 +12273,25,14,12,0.0 +12273,1,18,37,0.0 +12273,19,9.2,13,0.0 +12273,63,43.9,6,0.0 +12273,46,12,20,0.0 +12273,18,62.5,35,0.0 +12273,24,4.5,2,0.0 +12273,3,10,45,0.0 +12273,28,45.6,49,0.0 +12273,77,13,34,0.0 +12273,32,32,31,0.0 +12273,10,31,2,0.0 +12273,17,39,43,0.0 +12273,66,17,42,0.0 +12273,20,81,23,0.0 +12273,45,9.5,3,0.0 +12273,38,263.5,39,0.0 +12273,69,36,19,0.0 +12273,47,9.5,32,0.0 +12273,11,21,31,0.0 +12274,7,30,15,0.0 +12274,72,34.8,40,0.0 +12275,47,9.5,4,0.0 +12275,45,9.5,13,0.0 +12275,7,30,15,0.0 +12275,31,12.5,39,0.0 +12275,15,15.5,13,0.0 +12275,46,12,38,0.0 +12275,73,15,7,0.0 +12275,5,21.35,9,0.0 +12275,34,14,17,0.0 +12275,26,31.23,24,0.0 +12275,50,16.25,6,0.0 +12275,24,4.5,25,0.0 +12275,27,43.9,14,0.0 +12275,35,18,9,0.0 +12275,54,7.45,13,0.0 +12275,9,97,9,0.0 +12275,56,38,37,0.0 +12275,2,19,46,0.0 +12275,10,31,17,0.0 +12275,30,25.89,31,0.0 +12275,52,7,41,0.0 +12275,59,55,4,0.0 +12275,55,24,13,0.0 +12276,51,53,30,0.0 +12276,73,15,47,0.0 +12276,29,123.79,37,0.0 +12276,30,25.89,35,0.0 +12276,12,38,49,0.0 +12276,34,14,7,0.0 +12276,9,97,26,0.0 +12276,10,31,8,0.0 +12276,74,10,7,0.0 +12276,38,263.5,5,0.0 +12276,41,9.65,12,0.0 +12276,50,16.25,30,0.0 +12276,1,18,40,0.0 +12276,48,12.75,3,0.0 +12276,60,34,27,0.0 +12276,22,21,30,0.0 +12276,68,12.5,8,0.0 +12277,42,14,14,0.0 +12277,21,10,25,0.0 +12277,19,9.2,50,0.0 +12277,48,12.75,43,0.0 +12277,68,12.5,40,0.0 +12277,43,46,49,0.0 +12277,7,30,29,0.0 +12277,10,31,27,0.0 +12277,23,9,48,0.0 +12277,37,26,8,0.0 +12277,63,43.9,17,0.0 +12277,50,16.25,16,0.0 +12277,6,25,48,0.0 +12277,9,97,39,0.0 +12277,12,38,49,0.0 +12277,31,12.5,1,0.0 +12277,75,7.75,3,0.0 +12277,74,10,26,0.0 +12277,49,20,3,0.0 +12277,58,13.25,24,0.0 +12277,56,38,22,0.0 +12277,15,15.5,47,0.0 +12277,51,53,39,0.0 +12277,30,25.89,10,0.0 +12277,61,28.5,42,0.0 +12277,39,18,19,0.0 +12277,22,21,21,0.0 +12277,16,17.45,4,0.0 +12277,2,19,17,0.0 +12277,29,123.79,10,0.0 +12277,57,19.5,50,0.0 +12277,55,24,28,0.0 +12277,38,263.5,50,0.0 +12277,72,34.8,49,0.0 +12277,64,33.25,29,0.0 +12277,40,18.4,32,0.0 +12277,26,31.23,31,0.0 +12277,36,19,43,0.0 +12277,8,40,26,0.0 +12277,17,39,19,0.0 +12277,71,21.5,31,0.0 +12277,24,4.5,20,0.0 +12277,1,18,45,0.0 +12278,17,39,28,0.0 +12278,70,15,5,0.0 +12278,43,46,37,0.0 +12278,38,263.5,36,0.0 +12278,50,16.25,6,0.0 +12278,24,4.5,23,0.0 +12278,7,30,36,0.0 +12278,14,23.25,1,0.0 +12278,1,18,1,0.0 +12278,69,36,32,0.0 +12278,61,28.5,18,0.0 +12278,32,32,49,0.0 +12278,74,10,5,0.0 +12278,73,15,6,0.0 +12278,46,12,49,0.0 +12278,49,20,9,0.0 +12278,29,123.79,26,0.0 +12278,40,18.4,33,0.0 +12278,57,19.5,4,0.0 +12278,59,55,13,0.0 +12278,22,21,37,0.0 +12278,45,9.5,12,0.0 +12278,34,14,24,0.0 +12278,19,9.2,25,0.0 +12278,41,9.65,22,0.0 +12278,58,13.25,42,0.0 +12278,65,21.05,28,0.0 +12278,53,32.8,29,0.0 +12278,51,53,30,0.0 +12278,20,81,21,0.0 +12278,66,17,44,0.0 +12278,63,43.9,46,0.0 +12278,28,45.6,40,0.0 +12278,2,19,1,0.0 +12278,72,34.8,18,0.0 +12278,5,21.35,7,0.0 +12278,27,43.9,9,0.0 +12278,52,7,42,0.0 +12278,64,33.25,4,0.0 +12278,75,7.75,9,0.0 +12278,18,62.5,43,0.0 +12278,67,14,7,0.0 +12278,44,19.45,21,0.0 +12278,3,10,46,0.0 +12278,77,13,7,0.0 +12278,33,2.5,39,0.0 +12278,54,7.45,6,0.0 +12278,26,31.23,42,0.0 +12278,55,24,10,0.0 +12278,36,19,5,0.0 +12278,21,10,14,0.0 +12278,76,18,9,0.0 +12278,10,31,47,0.0 +12278,48,12.75,47,0.0 +12278,9,97,2,0.0 +12278,12,38,17,0.0 +12278,23,9,36,0.0 +12279,50,16.25,35,0.0 +12279,65,21.05,10,0.0 +12279,27,43.9,26,0.0 +12279,37,26,11,0.0 +12279,11,21,29,0.0 +12279,22,21,33,0.0 +12279,69,36,19,0.0 +12279,47,9.5,41,0.0 +12279,34,14,14,0.0 +12279,2,19,49,0.0 +12279,28,45.6,24,0.0 +12279,5,21.35,42,0.0 +12279,76,18,19,0.0 +12279,61,28.5,22,0.0 +12279,70,15,27,0.0 +12279,74,10,11,0.0 +12279,77,13,7,0.0 +12279,26,31.23,40,0.0 +12279,71,21.5,2,0.0 +12279,14,23.25,8,0.0 +12279,66,17,34,0.0 +12279,29,123.79,14,0.0 +12279,54,7.45,10,0.0 +12279,3,10,31,0.0 +12279,12,38,22,0.0 +12279,43,46,15,0.0 +12279,10,31,1,0.0 +12279,45,9.5,24,0.0 +12279,53,32.8,20,0.0 +12279,62,49.3,24,0.0 +12279,23,9,33,0.0 +12279,42,14,28,0.0 +12279,52,7,12,0.0 +12279,25,14,5,0.0 +12279,1,18,22,0.0 +12279,60,34,24,0.0 +12279,6,25,19,0.0 +12279,17,39,32,0.0 +12279,8,40,36,0.0 +12279,32,32,48,0.0 +12279,18,62.5,12,0.0 +12279,39,18,47,0.0 +12279,75,7.75,5,0.0 +12279,30,25.89,15,0.0 +12279,13,6,9,0.0 +12279,38,263.5,42,0.0 +12279,7,30,7,0.0 +12279,35,18,11,0.0 +12279,58,13.25,4,0.0 +12279,20,81,18,0.0 +12279,63,43.9,26,0.0 +12279,68,12.5,7,0.0 +12279,67,14,30,0.0 +12280,46,12,13,0.0 +12280,15,15.5,28,0.0 +12280,76,18,36,0.0 +12280,11,21,33,0.0 +12280,16,17.45,30,0.0 +12281,22,21,24,0.0 +12281,75,7.75,42,0.0 +12281,45,9.5,4,0.0 +12281,50,16.25,4,0.0 +12281,37,26,15,0.0 +12281,12,38,45,0.0 +12281,47,9.5,44,0.0 +12281,25,14,42,0.0 +12281,51,53,50,0.0 +12281,42,14,39,0.0 +12281,70,15,44,0.0 +12281,27,43.9,23,0.0 +12281,59,55,32,0.0 +12281,13,6,28,0.0 +12281,15,15.5,13,0.0 +12281,33,2.5,32,0.0 +12281,73,15,29,0.0 +12281,36,19,28,0.0 +12281,76,18,20,0.0 +12281,41,9.65,12,0.0 +12281,46,12,8,0.0 +12281,21,10,5,0.0 +12281,24,4.5,50,0.0 +12281,69,36,46,0.0 +12281,63,43.9,35,0.0 +12281,17,39,15,0.0 +12281,8,40,31,0.0 +12281,19,9.2,11,0.0 +12281,31,12.5,37,0.0 +12281,77,13,40,0.0 +12281,18,62.5,13,0.0 +12281,1,18,1,0.0 +12281,30,25.89,41,0.0 +12281,68,12.5,28,0.0 +12281,16,17.45,8,0.0 +12281,64,33.25,11,0.0 +12281,11,21,32,0.0 +12282,24,4.5,34,0.0 +12282,46,12,35,0.0 +12282,55,24,42,0.0 +12282,48,12.75,2,0.0 +12282,72,34.8,38,0.0 +12282,53,32.8,7,0.0 +12282,62,49.3,34,0.0 +12282,58,13.25,24,0.0 +12282,65,21.05,14,0.0 +12282,11,21,22,0.0 +12282,42,14,3,0.0 +12282,37,26,24,0.0 +12282,64,33.25,17,0.0 +12282,2,19,48,0.0 +12282,28,45.6,47,0.0 +12282,49,20,48,0.0 +12283,30,25.89,48,0.0 +12283,47,9.5,49,0.0 +12283,59,55,36,0.0 +12283,16,17.45,41,0.0 +12283,20,81,33,0.0 +12283,72,34.8,7,0.0 +12283,41,9.65,20,0.0 +12283,53,32.8,24,0.0 +12283,54,7.45,23,0.0 +12283,28,45.6,33,0.0 +12283,26,31.23,13,0.0 +12283,32,32,9,0.0 +12283,31,12.5,50,0.0 +12283,75,7.75,14,0.0 +12283,14,23.25,8,0.0 +12283,35,18,13,0.0 +12283,39,18,46,0.0 +12283,2,19,40,0.0 +12283,67,14,6,0.0 +12283,58,13.25,34,0.0 +12283,57,19.5,30,0.0 +12283,37,26,50,0.0 +12283,60,34,41,0.0 +12283,77,13,40,0.0 +12283,33,2.5,41,0.0 +12283,56,38,24,0.0 +12283,9,97,16,0.0 +12283,50,16.25,48,0.0 +12283,23,9,31,0.0 +12283,7,30,13,0.0 +12283,22,21,47,0.0 +12283,18,62.5,5,0.0 +12283,49,20,50,0.0 +12283,40,18.4,9,0.0 +12283,73,15,19,0.0 +12283,63,43.9,49,0.0 +12283,48,12.75,44,0.0 +12283,3,10,45,0.0 +12283,65,21.05,11,0.0 +12283,43,46,20,0.0 +12283,55,24,33,0.0 +12283,69,36,42,0.0 +12283,19,9.2,21,0.0 +12283,68,12.5,29,0.0 +12283,5,21.35,31,0.0 +12283,76,18,14,0.0 +12283,42,14,22,0.0 +12283,8,40,15,0.0 +12283,46,12,26,0.0 +12283,52,7,48,0.0 +12283,29,123.79,12,0.0 +12283,36,19,39,0.0 +12284,60,34,8,0.0 +12284,58,13.25,8,0.0 +12284,65,21.05,20,0.0 +12284,20,81,39,0.0 +12284,25,14,40,0.0 +12284,38,263.5,12,0.0 +12284,10,31,8,0.0 +12285,15,15.5,16,0.0 +12285,11,21,34,0.0 +12285,14,23.25,15,0.0 +12285,64,33.25,29,0.0 +12285,65,21.05,44,0.0 +12285,43,46,4,0.0 +12285,72,34.8,41,0.0 +12285,75,7.75,4,0.0 +12285,1,18,25,0.0 +12285,18,62.5,13,0.0 +12285,9,97,46,0.0 +12285,67,14,35,0.0 +12285,51,53,39,0.0 +12285,68,12.5,35,0.0 +12285,13,6,35,0.0 +12285,12,38,14,0.0 +12285,21,10,21,0.0 +12285,58,13.25,15,0.0 +12285,56,38,8,0.0 +12285,48,12.75,35,0.0 +12285,7,30,47,0.0 +12285,55,24,32,0.0 +12285,61,28.5,8,0.0 +12285,50,16.25,24,0.0 +12285,53,32.8,10,0.0 +12285,33,2.5,10,0.0 +12285,3,10,12,0.0 +12285,41,9.65,36,0.0 +12285,40,18.4,36,0.0 +12285,37,26,10,0.0 +12285,49,20,7,0.0 +12285,23,9,20,0.0 +12285,59,55,16,0.0 +12285,46,12,6,0.0 +12285,42,14,4,0.0 +12285,30,25.89,21,0.0 +12285,2,19,6,0.0 +12285,19,9.2,20,0.0 +12285,57,19.5,45,0.0 +12285,32,32,38,0.0 +12285,36,19,31,0.0 +12285,35,18,26,0.0 +12285,66,17,34,0.0 +12285,6,25,9,0.0 +12285,4,22,4,0.0 +12285,54,7.45,14,0.0 +12285,62,49.3,25,0.0 +12285,5,21.35,18,0.0 +12285,26,31.23,38,0.0 +12285,76,18,42,0.0 +12286,58,13.25,35,0.0 +12286,33,2.5,39,0.0 +12286,18,62.5,17,0.0 +12286,44,19.45,42,0.0 +12286,29,123.79,50,0.0 +12286,72,34.8,8,0.0 +12286,8,40,28,0.0 +12286,77,13,48,0.0 +12286,21,10,40,0.0 +12286,22,21,32,0.0 +12286,7,30,9,0.0 +12286,39,18,28,0.0 +12287,57,19.5,8,0.0 +12287,10,31,27,0.0 +12287,73,15,29,0.0 +12287,26,31.23,3,0.0 +12287,14,23.25,27,0.0 +12287,41,9.65,8,0.0 +12287,30,25.89,23,0.0 +12287,75,7.75,11,0.0 +12287,76,18,42,0.0 +12287,32,32,14,0.0 +12287,28,45.6,5,0.0 +12287,53,32.8,14,0.0 +12287,34,14,29,0.0 +12287,59,55,15,0.0 +12287,44,19.45,2,0.0 +12287,21,10,27,0.0 +12288,23,9,40,0.0 +12288,70,15,32,0.0 +12288,49,20,21,0.0 +12288,33,2.5,18,0.0 +12288,26,31.23,31,0.0 +12288,48,12.75,22,0.0 +12288,32,32,33,0.0 +12288,14,23.25,11,0.0 +12288,54,7.45,37,0.0 +12288,12,38,25,0.0 +12288,59,55,38,0.0 +12288,42,14,7,0.0 +12288,60,34,50,0.0 +12288,21,10,32,0.0 +12288,39,18,36,0.0 +12288,61,28.5,36,0.0 +12288,63,43.9,32,0.0 +12288,71,21.5,32,0.0 +12288,1,18,43,0.0 +12288,8,40,24,0.0 +12288,56,38,20,0.0 +12288,35,18,25,0.0 +12288,50,16.25,17,0.0 +12288,30,25.89,39,0.0 +12288,6,25,8,0.0 +12288,43,46,12,0.0 +12288,15,15.5,2,0.0 +12288,58,13.25,44,0.0 +12288,25,14,20,0.0 +12288,62,49.3,30,0.0 +12288,20,81,6,0.0 +12288,37,26,12,0.0 +12288,73,15,12,0.0 +12288,75,7.75,29,0.0 +12288,2,19,42,0.0 +12288,68,12.5,29,0.0 +12288,10,31,42,0.0 +12288,24,4.5,12,0.0 +12288,36,19,8,0.0 +12288,18,62.5,3,0.0 +12288,19,9.2,11,0.0 +12288,76,18,37,0.0 +12288,28,45.6,20,0.0 +12288,29,123.79,1,0.0 +12288,74,10,39,0.0 +12288,57,19.5,12,0.0 +12288,67,14,37,0.0 +12288,17,39,11,0.0 +12288,69,36,32,0.0 +12288,45,9.5,15,0.0 +12288,3,10,27,0.0 +12288,65,21.05,50,0.0 +12288,77,13,40,0.0 +12288,55,24,21,0.0 +12288,51,53,39,0.0 +12288,64,33.25,28,0.0 +12288,38,263.5,6,0.0 +12288,44,19.45,1,0.0 +12288,34,14,23,0.0 +12288,31,12.5,3,0.0 +12288,9,97,11,0.0 +12288,53,32.8,32,0.0 +12288,47,9.5,34,0.0 +12288,5,21.35,9,0.0 +12288,52,7,30,0.0 +12288,66,17,23,0.0 +12288,7,30,35,0.0 +12289,36,19,44,0.0 +12289,24,4.5,36,0.0 +12289,2,19,22,0.0 +12289,44,19.45,4,0.0 +12289,5,21.35,27,0.0 +12289,60,34,46,0.0 +12289,54,7.45,35,0.0 +12289,35,18,3,0.0 +12289,66,17,23,0.0 +12289,26,31.23,10,0.0 +12289,10,31,15,0.0 +12289,43,46,2,0.0 +12289,62,49.3,35,0.0 +12289,7,30,23,0.0 +12289,19,9.2,47,0.0 +12289,21,10,23,0.0 +12289,48,12.75,25,0.0 +12289,27,43.9,18,0.0 +12289,72,34.8,37,0.0 +12289,40,18.4,32,0.0 +12289,59,55,46,0.0 +12289,25,14,21,0.0 +12289,57,19.5,36,0.0 +12289,33,2.5,24,0.0 +12289,23,9,6,0.0 +12289,46,12,2,0.0 +12289,53,32.8,43,0.0 +12289,61,28.5,17,0.0 +12289,75,7.75,21,0.0 +12289,28,45.6,1,0.0 +12289,77,13,9,0.0 +12289,58,13.25,21,0.0 +12289,20,81,37,0.0 +12289,29,123.79,23,0.0 +12289,41,9.65,11,0.0 +12289,67,14,40,0.0 +12289,11,21,33,0.0 +12289,3,10,6,0.0 +12289,12,38,1,0.0 +12289,15,15.5,4,0.0 +12289,9,97,5,0.0 +12289,65,21.05,10,0.0 +12289,63,43.9,18,0.0 +12289,39,18,26,0.0 +12289,74,10,16,0.0 +12289,38,263.5,30,0.0 +12289,49,20,25,0.0 +12289,8,40,21,0.0 +12289,17,39,31,0.0 +12289,6,25,13,0.0 +12289,42,14,50,0.0 +12289,13,6,24,0.0 +12289,16,17.45,38,0.0 +12289,14,23.25,19,0.0 +12289,18,62.5,32,0.0 +12289,1,18,19,0.0 +12289,68,12.5,27,0.0 +12289,64,33.25,9,0.0 +12289,50,16.25,4,0.0 +12289,76,18,1,0.0 +12289,69,36,27,0.0 +12289,51,53,7,0.0 +12289,31,12.5,38,0.0 +12289,30,25.89,16,0.0 +12289,73,15,37,0.0 +12289,47,9.5,12,0.0 +12289,71,21.5,20,0.0 +12289,52,7,32,0.0 +12289,22,21,9,0.0 +12289,70,15,46,0.0 +12289,37,26,49,0.0 +12289,55,24,24,0.0 +12290,46,12,8,0.0 +12290,28,45.6,37,0.0 +12290,57,19.5,15,0.0 +12290,76,18,24,0.0 +12290,5,21.35,10,0.0 +12290,37,26,10,0.0 +12290,41,9.65,4,0.0 +12290,42,14,21,0.0 +12290,25,14,18,0.0 +12290,15,15.5,22,0.0 +12290,29,123.79,6,0.0 +12290,3,10,13,0.0 +12290,40,18.4,37,0.0 +12290,60,34,4,0.0 +12290,77,13,9,0.0 +12290,35,18,24,0.0 +12290,19,9.2,1,0.0 +12290,33,2.5,25,0.0 +12290,49,20,21,0.0 +12290,44,19.45,36,0.0 +12290,45,9.5,17,0.0 +12290,32,32,48,0.0 +12290,27,43.9,13,0.0 +12290,9,97,29,0.0 +12290,66,17,15,0.0 +12290,6,25,21,0.0 +12290,75,7.75,41,0.0 +12290,65,21.05,33,0.0 +12290,36,19,33,0.0 +12290,20,81,26,0.0 +12290,13,6,19,0.0 +12290,1,18,7,0.0 +12290,7,30,44,0.0 +12290,10,31,33,0.0 +12290,52,7,49,0.0 +12290,11,21,42,0.0 +12290,43,46,13,0.0 +12290,22,21,49,0.0 +12290,53,32.8,37,0.0 +12290,16,17.45,39,0.0 +12291,30,25.89,11,0.0 +12291,61,28.5,43,0.0 +12291,13,6,23,0.0 +12291,54,7.45,32,0.0 +12291,21,10,36,0.0 +12291,69,36,22,0.0 +12291,16,17.45,26,0.0 +12291,67,14,8,0.0 +12291,52,7,23,0.0 +12291,1,18,43,0.0 +12291,31,12.5,46,0.0 +12291,71,21.5,15,0.0 +12291,41,9.65,12,0.0 +12291,55,24,18,0.0 +12291,29,123.79,31,0.0 +12291,11,21,32,0.0 +12291,26,31.23,15,0.0 +12291,33,2.5,38,0.0 +12291,36,19,49,0.0 +12291,45,9.5,33,0.0 +12291,15,15.5,45,0.0 +12291,70,15,28,0.0 +12291,4,22,2,0.0 +12291,56,38,45,0.0 +12291,74,10,46,0.0 +12291,57,19.5,35,0.0 +12291,6,25,3,0.0 +12291,44,19.45,3,0.0 +12291,65,21.05,20,0.0 +12291,8,40,1,0.0 +12291,48,12.75,30,0.0 +12291,34,14,25,0.0 +12291,22,21,18,0.0 +12291,59,55,50,0.0 +12291,60,34,12,0.0 +12291,20,81,32,0.0 +12291,43,46,27,0.0 +12291,76,18,47,0.0 +12291,24,4.5,50,0.0 +12291,49,20,32,0.0 +12291,2,19,37,0.0 +12292,73,15,43,0.0 +12292,62,49.3,48,0.0 +12292,57,19.5,50,0.0 +12292,21,10,16,0.0 +12292,2,19,14,0.0 +12292,58,13.25,39,0.0 +12293,38,263.5,42,0.0 +12293,71,21.5,9,0.0 +12293,27,43.9,9,0.0 +12293,52,7,32,0.0 +12293,3,10,32,0.0 +12293,9,97,22,0.0 +12293,24,4.5,6,0.0 +12293,77,13,36,0.0 +12293,10,31,30,0.0 +12293,2,19,44,0.0 +12293,6,25,5,0.0 +12293,35,18,47,0.0 +12293,56,38,14,0.0 +12293,65,21.05,31,0.0 +12293,45,9.5,2,0.0 +12293,4,22,13,0.0 +12293,76,18,41,0.0 +12293,66,17,8,0.0 +12293,72,34.8,49,0.0 +12293,20,81,49,0.0 +12293,15,15.5,21,0.0 +12293,37,26,31,0.0 +12293,47,9.5,24,0.0 +12293,40,18.4,42,0.0 +12293,29,123.79,9,0.0 +12293,31,12.5,37,0.0 +12293,53,32.8,41,0.0 +12293,58,13.25,36,0.0 +12293,70,15,16,0.0 +12293,62,49.3,1,0.0 +12293,25,14,12,0.0 +12293,28,45.6,3,0.0 +12293,34,14,21,0.0 +12293,12,38,50,0.0 +12293,13,6,1,0.0 +12293,60,34,39,0.0 +12293,49,20,9,0.0 +12293,46,12,32,0.0 +12293,63,43.9,18,0.0 +12293,18,62.5,9,0.0 +12293,75,7.75,39,0.0 +12293,23,9,31,0.0 +12293,16,17.45,33,0.0 +12293,11,21,1,0.0 +12293,73,15,32,0.0 +12293,44,19.45,49,0.0 +12293,36,19,44,0.0 +12293,39,18,5,0.0 +12293,55,24,48,0.0 +12293,30,25.89,22,0.0 +12293,32,32,14,0.0 +12293,57,19.5,22,0.0 +12293,19,9.2,41,0.0 +12293,8,40,14,0.0 +12293,5,21.35,47,0.0 +12293,68,12.5,24,0.0 +12293,1,18,35,0.0 +12293,26,31.23,42,0.0 +12293,51,53,31,0.0 +12293,59,55,4,0.0 +12293,43,46,26,0.0 +12293,50,16.25,28,0.0 +12293,7,30,17,0.0 +12293,42,14,31,0.0 +12293,61,28.5,2,0.0 +12293,69,36,11,0.0 +12293,48,12.75,34,0.0 +12293,17,39,42,0.0 +12293,22,21,46,0.0 +12293,74,10,41,0.0 +12293,14,23.25,2,0.0 +12293,41,9.65,41,0.0 +12293,67,14,40,0.0 +12293,21,10,44,0.0 +12293,54,7.45,11,0.0 +12293,33,2.5,1,0.0 +12293,64,33.25,30,0.0 +12294,50,16.25,34,0.0 +12294,60,34,25,0.0 +12294,73,15,50,0.0 +12294,42,14,41,0.0 +12294,9,97,9,0.0 +12294,66,17,41,0.0 +12294,68,12.5,35,0.0 +12294,7,30,38,0.0 +12294,37,26,6,0.0 +12294,38,263.5,23,0.0 +12294,76,18,2,0.0 +12294,6,25,13,0.0 +12294,41,9.65,35,0.0 +12294,51,53,40,0.0 +12294,33,2.5,46,0.0 +12294,34,14,38,0.0 +12294,4,22,16,0.0 +12294,46,12,33,0.0 +12294,1,18,40,0.0 +12294,2,19,38,0.0 +12294,40,18.4,24,0.0 +12294,23,9,16,0.0 +12294,17,39,10,0.0 +12294,30,25.89,3,0.0 +12294,59,55,23,0.0 +12294,55,24,46,0.0 +12294,65,21.05,26,0.0 +12294,19,9.2,9,0.0 +12294,70,15,15,0.0 +12294,56,38,30,0.0 +12294,20,81,36,0.0 +12294,54,7.45,2,0.0 +12294,25,14,19,0.0 +12294,58,13.25,48,0.0 +12294,48,12.75,35,0.0 +12294,3,10,34,0.0 +12294,31,12.5,38,0.0 +12294,43,46,18,0.0 +12294,45,9.5,25,0.0 +12294,52,7,31,0.0 +12294,69,36,33,0.0 +12294,27,43.9,44,0.0 +12294,61,28.5,22,0.0 +12294,49,20,25,0.0 +12294,71,21.5,15,0.0 +12294,62,49.3,32,0.0 +12294,63,43.9,12,0.0 +12294,18,62.5,50,0.0 +12294,32,32,3,0.0 +12294,16,17.45,49,0.0 +12294,29,123.79,25,0.0 +12294,67,14,27,0.0 +12294,22,21,4,0.0 +12294,24,4.5,2,0.0 +12294,36,19,41,0.0 +12294,28,45.6,15,0.0 +12294,72,34.8,12,0.0 +12294,77,13,6,0.0 +12294,47,9.5,31,0.0 +12294,15,15.5,4,0.0 +12294,13,6,23,0.0 +12294,5,21.35,3,0.0 +12294,21,10,1,0.0 +12294,64,33.25,11,0.0 +12294,35,18,32,0.0 +12294,44,19.45,28,0.0 +12294,74,10,2,0.0 +12295,2,19,35,0.0 +12295,46,12,15,0.0 +12295,9,97,46,0.0 +12295,73,15,4,0.0 +12295,69,36,5,0.0 +12295,45,9.5,18,0.0 +12295,10,31,37,0.0 +12295,33,2.5,9,0.0 +12295,38,263.5,34,0.0 +12295,3,10,48,0.0 +12295,18,62.5,22,0.0 +12295,29,123.79,38,0.0 +12295,11,21,35,0.0 +12295,43,46,38,0.0 +12295,34,14,36,0.0 +12295,8,40,35,0.0 +12295,19,9.2,14,0.0 +12295,22,21,41,0.0 +12295,57,19.5,10,0.0 +12295,16,17.45,20,0.0 +12295,65,21.05,38,0.0 +12295,47,9.5,12,0.0 +12295,74,10,3,0.0 +12295,55,24,29,0.0 +12295,64,33.25,40,0.0 +12295,17,39,46,0.0 +12295,15,15.5,39,0.0 +12295,58,13.25,8,0.0 +12295,61,28.5,26,0.0 +12295,23,9,26,0.0 +12295,50,16.25,27,0.0 +12295,52,7,24,0.0 +12295,5,21.35,49,0.0 +12295,42,14,27,0.0 +12295,66,17,17,0.0 +12295,31,12.5,35,0.0 +12295,25,14,42,0.0 +12295,44,19.45,23,0.0 +12295,6,25,43,0.0 +12295,4,22,34,0.0 +12295,14,23.25,43,0.0 +12295,30,25.89,45,0.0 +12295,56,38,40,0.0 +12295,20,81,6,0.0 +12295,48,12.75,16,0.0 +12295,49,20,24,0.0 +12295,60,34,35,0.0 +12295,37,26,32,0.0 +12295,77,13,27,0.0 +12295,51,53,16,0.0 +12295,39,18,26,0.0 +12295,76,18,49,0.0 +12295,24,4.5,42,0.0 +12295,1,18,50,0.0 +12295,12,38,34,0.0 +12295,36,19,2,0.0 +12295,21,10,39,0.0 +12295,54,7.45,16,0.0 +12295,70,15,2,0.0 +12295,68,12.5,38,0.0 +12295,7,30,7,0.0 +12295,75,7.75,5,0.0 +12295,26,31.23,18,0.0 +12295,40,18.4,27,0.0 +12295,72,34.8,11,0.0 +12295,32,32,18,0.0 +12295,63,43.9,24,0.0 +12295,67,14,30,0.0 +12295,13,6,40,0.0 +12295,41,9.65,23,0.0 +12295,35,18,35,0.0 +12296,21,10,47,0.0 +12297,55,24,5,0.0 +12297,39,18,14,0.0 +12297,13,6,43,0.0 +12297,11,21,25,0.0 +12297,17,39,4,0.0 +12297,70,15,21,0.0 +12297,40,18.4,8,0.0 +12297,23,9,37,0.0 +12297,19,9.2,41,0.0 +12297,38,263.5,29,0.0 +12297,69,36,23,0.0 +12297,67,14,27,0.0 +12297,28,45.6,45,0.0 +12297,3,10,5,0.0 +12297,24,4.5,3,0.0 +12297,31,12.5,36,0.0 +12297,58,13.25,29,0.0 +12297,44,19.45,38,0.0 +12297,45,9.5,24,0.0 +12297,16,17.45,48,0.0 +12297,6,25,6,0.0 +12297,68,12.5,41,0.0 +12297,62,49.3,18,0.0 +12297,71,21.5,18,0.0 +12297,61,28.5,42,0.0 +12297,54,7.45,12,0.0 +12297,15,15.5,25,0.0 +12297,33,2.5,12,0.0 +12297,75,7.75,10,0.0 +12297,7,30,22,0.0 +12297,73,15,22,0.0 +12298,14,23.25,15,0.0 +12298,20,81,23,0.0 +12298,50,16.25,21,0.0 +12298,23,9,9,0.0 +12298,43,46,34,0.0 +12298,44,19.45,40,0.0 +12298,55,24,42,0.0 +12298,11,21,18,0.0 +12298,33,2.5,6,0.0 +12298,6,25,9,0.0 +12298,34,14,17,0.0 +12298,36,19,35,0.0 +12298,15,15.5,12,0.0 +12298,2,19,5,0.0 +12298,29,123.79,50,0.0 +12298,8,40,13,0.0 +12298,24,4.5,28,0.0 +12298,48,12.75,24,0.0 +12298,16,17.45,8,0.0 +12298,70,15,43,0.0 +12298,76,18,21,0.0 +12298,17,39,40,0.0 +12298,41,9.65,20,0.0 +12298,51,53,20,0.0 +12298,58,13.25,5,0.0 +12298,60,34,46,0.0 +12298,65,21.05,36,0.0 +12298,31,12.5,13,0.0 +12298,46,12,12,0.0 +12298,53,32.8,48,0.0 +12299,70,15,42,0.0 +12299,6,25,10,0.0 +12299,53,32.8,44,0.0 +12299,62,49.3,25,0.0 +12299,1,18,18,0.0 +12299,61,28.5,11,0.0 +12299,44,19.45,11,0.0 +12299,68,12.5,9,0.0 +12299,9,97,18,0.0 +12299,30,25.89,42,0.0 +12299,72,34.8,15,0.0 +12299,69,36,18,0.0 +12299,52,7,29,0.0 +12299,33,2.5,36,0.0 +12299,57,19.5,50,0.0 +12299,47,9.5,43,0.0 +12299,7,30,23,0.0 +12299,27,43.9,1,0.0 +12299,23,9,38,0.0 +12299,48,12.75,12,0.0 +12299,45,9.5,43,0.0 +12299,15,15.5,26,0.0 +12299,20,81,4,0.0 +12299,46,12,28,0.0 +12299,14,23.25,18,0.0 +12299,34,14,29,0.0 +12299,66,17,5,0.0 +12299,71,21.5,29,0.0 +12299,42,14,40,0.0 +12299,77,13,48,0.0 +12299,21,10,17,0.0 +12299,19,9.2,17,0.0 +12299,13,6,20,0.0 +12299,60,34,3,0.0 +12299,51,53,20,0.0 +12299,58,13.25,42,0.0 +12299,63,43.9,33,0.0 +12299,31,12.5,38,0.0 +12299,67,14,2,0.0 +12299,8,40,32,0.0 +12299,65,21.05,28,0.0 +12299,76,18,50,0.0 +12299,59,55,5,0.0 +12299,41,9.65,47,0.0 +12299,55,24,41,0.0 +12299,12,38,5,0.0 +12299,29,123.79,44,0.0 +12299,50,16.25,35,0.0 +12299,49,20,6,0.0 +12299,4,22,41,0.0 +12299,24,4.5,41,0.0 +12299,40,18.4,23,0.0 +12299,3,10,25,0.0 +12299,16,17.45,20,0.0 +12300,61,28.5,14,0.0 +12300,52,7,11,0.0 +12300,48,12.75,29,0.0 +12300,53,32.8,36,0.0 +12301,52,7,19,0.0 +12301,58,13.25,42,0.0 +12301,76,18,18,0.0 +12301,74,10,27,0.0 +12301,20,81,49,0.0 +12301,69,36,20,0.0 +12301,1,18,29,0.0 +12301,54,7.45,47,0.0 +12301,13,6,2,0.0 +12301,4,22,25,0.0 +12301,5,21.35,43,0.0 +12301,70,15,30,0.0 +12301,39,18,50,0.0 +12301,9,97,8,0.0 +12301,31,12.5,17,0.0 +12301,15,15.5,4,0.0 +12301,7,30,49,0.0 +12301,59,55,12,0.0 +12301,30,25.89,49,0.0 +12301,8,40,31,0.0 +12301,23,9,50,0.0 +12301,63,43.9,28,0.0 +12301,56,38,27,0.0 +12301,16,17.45,40,0.0 +12301,42,14,25,0.0 +12301,64,33.25,36,0.0 +12301,49,20,4,0.0 +12301,6,25,40,0.0 +12301,61,28.5,44,0.0 +12301,55,24,9,0.0 +12301,3,10,23,0.0 +12301,25,14,13,0.0 +12301,14,23.25,1,0.0 +12301,51,53,35,0.0 +12301,28,45.6,48,0.0 +12301,24,4.5,4,0.0 +12301,36,19,19,0.0 +12301,10,31,48,0.0 +12301,41,9.65,41,0.0 +12301,62,49.3,27,0.0 +12301,57,19.5,28,0.0 +12301,26,31.23,35,0.0 +12301,2,19,7,0.0 +12301,40,18.4,6,0.0 +12301,35,18,11,0.0 +12301,22,21,6,0.0 +12301,46,12,37,0.0 +12301,66,17,39,0.0 +12301,12,38,48,0.0 +12301,53,32.8,44,0.0 +12301,72,34.8,42,0.0 +12301,34,14,7,0.0 +12301,50,16.25,38,0.0 +12301,37,26,49,0.0 +12301,67,14,44,0.0 +12301,18,62.5,12,0.0 +12301,21,10,23,0.0 +12301,27,43.9,4,0.0 +12301,38,263.5,36,0.0 +12301,29,123.79,16,0.0 +12301,60,34,17,0.0 +12301,33,2.5,26,0.0 +12301,47,9.5,22,0.0 +12301,65,21.05,46,0.0 +12301,68,12.5,14,0.0 +12301,44,19.45,19,0.0 +12301,75,7.75,45,0.0 +12301,77,13,4,0.0 +12301,32,32,48,0.0 +12301,73,15,9,0.0 +12301,11,21,14,0.0 +12302,29,123.79,11,0.0 +12302,8,40,34,0.0 +12302,67,14,1,0.0 +12302,10,31,35,0.0 +12302,21,10,46,0.0 +12302,18,62.5,41,0.0 +12302,25,14,17,0.0 +12302,23,9,45,0.0 +12302,64,33.25,47,0.0 +12302,50,16.25,29,0.0 +12302,71,21.5,34,0.0 +12302,4,22,36,0.0 +12302,75,7.75,47,0.0 +12302,62,49.3,10,0.0 +12302,9,97,34,0.0 +12302,6,25,20,0.0 +12302,40,18.4,25,0.0 +12302,32,32,19,0.0 +12302,68,12.5,10,0.0 +12302,52,7,1,0.0 +12302,2,19,32,0.0 +12302,19,9.2,2,0.0 +12302,60,34,40,0.0 +12302,44,19.45,39,0.0 +12303,51,53,37,0.0 +12303,34,14,16,0.0 +12303,77,13,36,0.0 +12303,65,21.05,13,0.0 +12303,21,10,19,0.0 +12303,42,14,6,0.0 +12303,16,17.45,22,0.0 +12303,27,43.9,5,0.0 +12303,66,17,10,0.0 +12303,10,31,48,0.0 +12303,17,39,47,0.0 +12303,76,18,45,0.0 +12303,1,18,10,0.0 +12303,45,9.5,9,0.0 +12303,29,123.79,25,0.0 +12303,33,2.5,12,0.0 +12303,60,34,23,0.0 +12303,46,12,9,0.0 +12303,50,16.25,12,0.0 +12303,20,81,30,0.0 +12303,61,28.5,44,0.0 +12303,23,9,44,0.0 +12304,10,31,22,0.0 +12304,57,19.5,26,0.0 +12304,69,36,27,0.0 +12304,34,14,10,0.0 +12304,44,19.45,46,0.0 +12304,56,38,35,0.0 +12304,32,32,30,0.0 +12304,58,13.25,4,0.0 +12304,43,46,14,0.0 +12304,62,49.3,15,0.0 +12304,36,19,11,0.0 +12304,38,263.5,46,0.0 +12304,1,18,3,0.0 +12304,26,31.23,27,0.0 +12304,55,24,33,0.0 +12304,49,20,20,0.0 +12304,35,18,9,0.0 +12304,39,18,12,0.0 +12304,21,10,21,0.0 +12304,73,15,44,0.0 +12304,74,10,5,0.0 +12304,18,62.5,40,0.0 +12304,29,123.79,34,0.0 +12304,9,97,15,0.0 +12304,71,21.5,45,0.0 +12304,45,9.5,3,0.0 +12304,4,22,8,0.0 +12304,40,18.4,15,0.0 +12304,33,2.5,29,0.0 +12304,46,12,17,0.0 +12304,17,39,39,0.0 +12304,30,25.89,14,0.0 +12304,51,53,18,0.0 +12304,13,6,48,0.0 +12304,14,23.25,36,0.0 +12304,75,7.75,41,0.0 +12304,52,7,14,0.0 +12305,59,55,34,0.0 +12305,19,9.2,16,0.0 +12305,57,19.5,23,0.0 +12305,9,97,47,0.0 +12305,12,38,50,0.0 +12305,66,17,30,0.0 +12305,58,13.25,21,0.0 +12306,57,19.5,3,0.0 +12306,3,10,38,0.0 +12306,55,24,5,0.0 +12306,73,15,12,0.0 +12306,53,32.8,11,0.0 +12306,51,53,40,0.0 +12306,59,55,4,0.0 +12306,33,2.5,2,0.0 +12306,72,34.8,42,0.0 +12306,77,13,49,0.0 +12306,31,12.5,30,0.0 +12306,76,18,45,0.0 +12306,26,31.23,30,0.0 +12307,52,7,50,0.0 +12307,66,17,33,0.0 +12307,71,21.5,10,0.0 +12307,60,34,32,0.0 +12307,13,6,32,0.0 +12307,9,97,22,0.0 +12307,48,12.75,26,0.0 +12307,64,33.25,11,0.0 +12307,34,14,39,0.0 +12307,70,15,9,0.0 +12307,17,39,33,0.0 +12307,35,18,29,0.0 +12307,30,25.89,25,0.0 +12307,43,46,48,0.0 +12307,56,38,49,0.0 +12307,19,9.2,40,0.0 +12307,76,18,13,0.0 +12307,53,32.8,32,0.0 +12307,50,16.25,30,0.0 +12307,28,45.6,33,0.0 +12307,75,7.75,31,0.0 +12307,74,10,19,0.0 +12307,44,19.45,2,0.0 +12307,41,9.65,19,0.0 +12307,57,19.5,42,0.0 +12307,4,22,19,0.0 +12307,40,18.4,7,0.0 +12307,54,7.45,31,0.0 +12307,2,19,29,0.0 +12307,14,23.25,9,0.0 +12307,31,12.5,37,0.0 +12307,32,32,31,0.0 +12307,61,28.5,4,0.0 +12307,51,53,44,0.0 +12307,62,49.3,18,0.0 +12307,25,14,16,0.0 +12307,23,9,7,0.0 +12307,1,18,40,0.0 +12307,22,21,26,0.0 +12307,12,38,26,0.0 +12307,21,10,33,0.0 +12307,7,30,15,0.0 +12307,15,15.5,41,0.0 +12307,36,19,48,0.0 +12307,39,18,35,0.0 +12307,47,9.5,29,0.0 +12307,33,2.5,19,0.0 +12307,11,21,21,0.0 +12308,33,2.5,19,0.0 +12308,53,32.8,9,0.0 +12308,4,22,14,0.0 +12308,68,12.5,14,0.0 +12308,73,15,35,0.0 +12308,35,18,26,0.0 +12308,1,18,38,0.0 +12308,41,9.65,8,0.0 +12308,56,38,25,0.0 +12308,7,30,17,0.0 +12308,39,18,3,0.0 +12308,24,4.5,32,0.0 +12308,38,263.5,41,0.0 +12308,12,38,36,0.0 +12308,16,17.45,32,0.0 +12308,3,10,27,0.0 +12308,15,15.5,49,0.0 +12308,26,31.23,24,0.0 +12308,28,45.6,44,0.0 +12308,69,36,26,0.0 +12308,29,123.79,19,0.0 +12308,72,34.8,9,0.0 +12308,52,7,35,0.0 +12308,6,25,28,0.0 +12308,11,21,1,0.0 +12308,20,81,1,0.0 +12308,42,14,44,0.0 +12308,65,21.05,8,0.0 +12308,77,13,28,0.0 +12308,57,19.5,1,0.0 +12308,17,39,5,0.0 +12308,32,32,7,0.0 +12308,18,62.5,49,0.0 +12308,21,10,36,0.0 +12308,75,7.75,38,0.0 +12308,48,12.75,42,0.0 +12308,19,9.2,46,0.0 +12308,55,24,23,0.0 +12308,49,20,46,0.0 +12308,31,12.5,20,0.0 +12308,22,21,26,0.0 +12308,46,12,32,0.0 +12308,47,9.5,14,0.0 +12308,50,16.25,4,0.0 +12308,40,18.4,23,0.0 +12308,43,46,13,0.0 +12308,67,14,7,0.0 +12308,63,43.9,5,0.0 +12308,74,10,24,0.0 +12308,23,9,44,0.0 +12308,64,33.25,8,0.0 +12308,37,26,11,0.0 +12309,71,21.5,13,0.0 +12309,21,10,14,0.0 +12309,66,17,30,0.0 +12309,51,53,42,0.0 +12309,27,43.9,42,0.0 +12309,77,13,16,0.0 +12309,68,12.5,15,0.0 +12309,7,30,45,0.0 +12309,40,18.4,30,0.0 +12309,50,16.25,16,0.0 +12309,59,55,47,0.0 +12309,56,38,30,0.0 +12309,43,46,24,0.0 +12309,30,25.89,8,0.0 +12309,69,36,25,0.0 +12309,44,19.45,45,0.0 +12309,42,14,39,0.0 +12309,41,9.65,16,0.0 +12309,74,10,27,0.0 +12309,25,14,39,0.0 +12309,57,19.5,38,0.0 +12309,5,21.35,14,0.0 +12309,52,7,22,0.0 +12309,14,23.25,11,0.0 +12309,23,9,26,0.0 +12309,62,49.3,39,0.0 +12309,48,12.75,39,0.0 +12309,53,32.8,34,0.0 +12309,54,7.45,31,0.0 +12309,17,39,15,0.0 +12309,67,14,19,0.0 +12309,60,34,39,0.0 +12309,29,123.79,21,0.0 +12309,3,10,7,0.0 +12309,64,33.25,49,0.0 +12309,12,38,3,0.0 +12309,73,15,42,0.0 +12310,39,18,19,0.0 +12310,69,36,40,0.0 +12310,32,32,28,0.0 +12310,42,14,33,0.0 +12310,57,19.5,50,0.0 +12310,49,20,12,0.0 +12310,64,33.25,25,0.0 +12310,1,18,40,0.0 +12310,24,4.5,8,0.0 +12310,30,25.89,36,0.0 +12310,68,12.5,40,0.0 +12310,6,25,14,0.0 +12310,71,21.5,31,0.0 +12310,20,81,7,0.0 +12310,16,17.45,43,0.0 +12310,7,30,6,0.0 +12310,26,31.23,40,0.0 +12310,62,49.3,30,0.0 +12311,24,4.5,23,0.0 +12311,10,31,20,0.0 +12311,21,10,27,0.0 +12311,69,36,17,0.0 +12311,42,14,47,0.0 +12311,65,21.05,35,0.0 +12311,23,9,49,0.0 +12311,68,12.5,39,0.0 +12311,27,43.9,1,0.0 +12311,72,34.8,37,0.0 +12311,36,19,22,0.0 +12311,64,33.25,4,0.0 +12311,14,23.25,29,0.0 +12311,50,16.25,41,0.0 +12311,31,12.5,22,0.0 +12311,28,45.6,1,0.0 +12311,54,7.45,38,0.0 +12311,55,24,12,0.0 +12311,73,15,39,0.0 +12311,22,21,45,0.0 +12311,62,49.3,45,0.0 +12311,75,7.75,36,0.0 +12311,43,46,10,0.0 +12311,37,26,5,0.0 +12311,45,9.5,17,0.0 +12311,13,6,36,0.0 +12311,32,32,44,0.0 +12311,18,62.5,31,0.0 +12311,15,15.5,41,0.0 +12311,41,9.65,20,0.0 +12311,48,12.75,50,0.0 +12311,70,15,17,0.0 +12311,8,40,39,0.0 +12311,51,53,3,0.0 +12311,52,7,23,0.0 +12311,12,38,27,0.0 +12311,57,19.5,40,0.0 +12311,3,10,12,0.0 +12311,20,81,14,0.0 +12311,9,97,19,0.0 +12311,2,19,19,0.0 +12311,63,43.9,10,0.0 +12311,74,10,10,0.0 +12311,6,25,30,0.0 +12311,30,25.89,18,0.0 +12311,19,9.2,23,0.0 +12311,16,17.45,34,0.0 +12311,38,263.5,42,0.0 +12311,34,14,24,0.0 +12311,4,22,23,0.0 +12311,7,30,43,0.0 +12311,66,17,43,0.0 +12311,47,9.5,12,0.0 +12311,33,2.5,44,0.0 +12311,67,14,20,0.0 +12311,56,38,8,0.0 +12311,29,123.79,3,0.0 +12311,59,55,30,0.0 +12312,65,21.05,26,0.0 +12312,20,81,30,0.0 +12312,40,18.4,11,0.0 +12312,31,12.5,15,0.0 +12312,22,21,30,0.0 +12312,61,28.5,14,0.0 +12312,41,9.65,17,0.0 +12312,9,97,1,0.0 +12312,39,18,31,0.0 +12312,19,9.2,31,0.0 +12312,48,12.75,1,0.0 +12312,72,34.8,27,0.0 +12312,47,9.5,22,0.0 +12312,58,13.25,32,0.0 +12312,28,45.6,47,0.0 +12312,56,38,43,0.0 +12312,68,12.5,41,0.0 +12312,42,14,1,0.0 +12312,63,43.9,39,0.0 +12312,36,19,26,0.0 +12312,8,40,13,0.0 +12312,1,18,8,0.0 +12312,71,21.5,3,0.0 +12312,13,6,25,0.0 +12312,4,22,10,0.0 +12312,44,19.45,15,0.0 +12312,35,18,21,0.0 +12312,14,23.25,1,0.0 +12312,38,263.5,23,0.0 +12312,73,15,33,0.0 +12312,62,49.3,45,0.0 +12312,49,20,23,0.0 +12312,5,21.35,37,0.0 +12312,60,34,15,0.0 +12312,64,33.25,25,0.0 +12312,59,55,22,0.0 +12312,26,31.23,19,0.0 +12312,12,38,20,0.0 +12312,3,10,40,0.0 +12312,27,43.9,7,0.0 +12312,30,25.89,34,0.0 +12312,33,2.5,42,0.0 +12312,54,7.45,34,0.0 +12312,77,13,2,0.0 +12313,1,18,34,0.0 +12313,48,12.75,5,0.0 +12313,22,21,44,0.0 +12313,38,263.5,27,0.0 +12313,25,14,24,0.0 +12313,50,16.25,38,0.0 +12313,15,15.5,46,0.0 +12313,43,46,18,0.0 +12313,31,12.5,24,0.0 +12313,49,20,7,0.0 +12313,28,45.6,10,0.0 +12313,54,7.45,7,0.0 +12313,75,7.75,6,0.0 +12313,27,43.9,30,0.0 +12313,36,19,42,0.0 +12313,21,10,15,0.0 +12313,9,97,20,0.0 +12313,44,19.45,16,0.0 +12313,76,18,13,0.0 +12313,29,123.79,31,0.0 +12313,30,25.89,19,0.0 +12313,39,18,36,0.0 +12313,41,9.65,50,0.0 +12313,74,10,49,0.0 +12313,24,4.5,46,0.0 +12313,64,33.25,31,0.0 +12313,19,9.2,3,0.0 +12313,6,25,33,0.0 +12313,69,36,25,0.0 +12313,12,38,6,0.0 +12313,16,17.45,19,0.0 +12313,2,19,5,0.0 +12313,60,34,50,0.0 +12313,46,12,8,0.0 +12313,65,21.05,24,0.0 +12313,42,14,22,0.0 +12313,61,28.5,12,0.0 +12313,53,32.8,3,0.0 +12313,18,62.5,4,0.0 +12313,33,2.5,38,0.0 +12313,47,9.5,23,0.0 +12313,58,13.25,50,0.0 +12313,56,38,48,0.0 +12313,55,24,31,0.0 +12313,3,10,47,0.0 +12313,77,13,30,0.0 +12313,34,14,42,0.0 +12313,11,21,31,0.0 +12313,14,23.25,8,0.0 +12313,26,31.23,45,0.0 +12313,68,12.5,9,0.0 +12313,45,9.5,12,0.0 +12313,20,81,44,0.0 +12313,32,32,13,0.0 +12313,59,55,8,0.0 +12314,59,55,22,0.0 +12314,43,46,12,0.0 +12314,16,17.45,33,0.0 +12314,10,31,45,0.0 +12314,34,14,19,0.0 +12314,2,19,41,0.0 +12314,56,38,7,0.0 +12314,69,36,25,0.0 +12314,57,19.5,9,0.0 +12314,30,25.89,39,0.0 +12314,7,30,26,0.0 +12314,42,14,11,0.0 +12314,25,14,14,0.0 +12314,28,45.6,8,0.0 +12314,76,18,2,0.0 +12314,51,53,22,0.0 +12314,29,123.79,9,0.0 +12314,62,49.3,49,0.0 +12314,15,15.5,37,0.0 +12314,63,43.9,2,0.0 +12314,48,12.75,26,0.0 +12314,3,10,24,0.0 +12314,64,33.25,38,0.0 +12314,4,22,46,0.0 +12314,71,21.5,18,0.0 +12314,9,97,3,0.0 +12314,74,10,40,0.0 +12314,17,39,34,0.0 +12314,65,21.05,42,0.0 +12314,27,43.9,30,0.0 +12314,14,23.25,13,0.0 +12314,45,9.5,30,0.0 +12314,54,7.45,1,0.0 +12314,35,18,35,0.0 +12314,49,20,38,0.0 +12314,31,12.5,22,0.0 +12314,5,21.35,49,0.0 +12314,6,25,8,0.0 +12314,58,13.25,17,0.0 +12314,53,32.8,35,0.0 +12314,46,12,4,0.0 +12315,54,7.45,44,0.0 +12315,65,21.05,28,0.0 +12315,31,12.5,26,0.0 +12315,41,9.65,25,0.0 +12315,68,12.5,24,0.0 +12315,16,17.45,45,0.0 +12315,24,4.5,4,0.0 +12315,70,15,21,0.0 +12315,53,32.8,5,0.0 +12315,29,123.79,8,0.0 +12315,73,15,25,0.0 +12315,38,263.5,24,0.0 +12315,20,81,49,0.0 +12315,35,18,39,0.0 +12315,62,49.3,25,0.0 +12315,61,28.5,16,0.0 +12315,3,10,32,0.0 +12315,71,21.5,33,0.0 +12315,32,32,32,0.0 +12315,5,21.35,26,0.0 +12315,49,20,10,0.0 +12315,6,25,47,0.0 +12315,12,38,41,0.0 +12315,64,33.25,42,0.0 +12315,76,18,36,0.0 +12315,50,16.25,2,0.0 +12315,8,40,21,0.0 +12315,27,43.9,45,0.0 +12315,26,31.23,24,0.0 +12315,59,55,13,0.0 +12315,22,21,41,0.0 +12315,10,31,25,0.0 +12315,7,30,23,0.0 +12315,72,34.8,48,0.0 +12315,33,2.5,19,0.0 +12315,21,10,18,0.0 +12315,43,46,25,0.0 +12315,14,23.25,22,0.0 +12315,52,7,13,0.0 +12315,18,62.5,14,0.0 +12315,56,38,33,0.0 +12315,75,7.75,48,0.0 +12315,37,26,5,0.0 +12315,46,12,44,0.0 +12315,44,19.45,27,0.0 +12315,4,22,20,0.0 +12315,69,36,31,0.0 +12315,77,13,5,0.0 +12315,63,43.9,50,0.0 +12315,25,14,32,0.0 +12315,9,97,28,0.0 +12315,58,13.25,6,0.0 +12315,34,14,31,0.0 +12315,15,15.5,31,0.0 +12315,1,18,3,0.0 +12315,40,18.4,50,0.0 +12315,13,6,14,0.0 +12315,67,14,7,0.0 +12315,66,17,19,0.0 +12315,42,14,3,0.0 +12315,36,19,24,0.0 +12315,11,21,25,0.0 +12315,60,34,2,0.0 +12315,30,25.89,20,0.0 +12315,17,39,36,0.0 +12315,48,12.75,39,0.0 +12315,57,19.5,38,0.0 +12315,45,9.5,20,0.0 +12315,47,9.5,36,0.0 +12315,74,10,18,0.0 +12316,33,2.5,39,0.0 +12316,46,12,38,0.0 +12316,28,45.6,43,0.0 +12316,75,7.75,47,0.0 +12316,43,46,48,0.0 +12316,40,18.4,31,0.0 +12316,18,62.5,42,0.0 +12316,5,21.35,31,0.0 +12316,50,16.25,2,0.0 +12316,15,15.5,40,0.0 +12316,69,36,49,0.0 +12316,10,31,1,0.0 +12316,36,19,4,0.0 +12316,59,55,31,0.0 +12316,64,33.25,29,0.0 +12316,3,10,41,0.0 +12316,76,18,5,0.0 +12316,71,21.5,47,0.0 +12316,47,9.5,2,0.0 +12316,52,7,19,0.0 +12316,20,81,48,0.0 +12316,6,25,12,0.0 +12316,44,19.45,39,0.0 +12316,1,18,5,0.0 +12316,63,43.9,43,0.0 +12316,58,13.25,4,0.0 +12316,32,32,47,0.0 +12316,66,17,21,0.0 +12316,19,9.2,21,0.0 +12316,14,23.25,26,0.0 +12316,12,38,31,0.0 +12316,26,31.23,18,0.0 +12316,39,18,44,0.0 +12316,8,40,17,0.0 +12316,35,18,46,0.0 +12316,42,14,33,0.0 +12316,55,24,19,0.0 +12316,31,12.5,47,0.0 +12316,13,6,48,0.0 +12316,25,14,17,0.0 +12316,29,123.79,46,0.0 +12316,62,49.3,41,0.0 +12316,61,28.5,6,0.0 +12316,68,12.5,20,0.0 +12316,67,14,13,0.0 +12316,9,97,28,0.0 +12316,38,263.5,36,0.0 +12316,22,21,6,0.0 +12316,45,9.5,18,0.0 +12316,37,26,4,0.0 +12316,70,15,36,0.0 +12316,17,39,42,0.0 +12316,74,10,7,0.0 +12316,56,38,34,0.0 +12316,72,34.8,30,0.0 +12317,38,263.5,9,0.0 +12317,31,12.5,15,0.0 +12317,59,55,50,0.0 +12317,77,13,1,0.0 +12317,76,18,26,0.0 +12317,34,14,24,0.0 +12317,33,2.5,44,0.0 +12317,73,15,9,0.0 +12317,46,12,48,0.0 +12317,19,9.2,38,0.0 +12317,69,36,14,0.0 +12317,54,7.45,10,0.0 +12317,40,18.4,1,0.0 +12317,27,43.9,46,0.0 +12317,58,13.25,5,0.0 +12317,53,32.8,40,0.0 +12317,6,25,30,0.0 +12317,52,7,3,0.0 +12317,22,21,4,0.0 +12317,7,30,28,0.0 +12317,17,39,41,0.0 +12317,62,49.3,37,0.0 +12317,60,34,21,0.0 +12317,36,19,14,0.0 +12317,65,21.05,19,0.0 +12317,26,31.23,24,0.0 +12317,55,24,34,0.0 +12317,47,9.5,31,0.0 +12317,2,19,46,0.0 +12317,57,19.5,43,0.0 +12317,29,123.79,10,0.0 +12317,20,81,32,0.0 +12317,1,18,9,0.0 +12317,72,34.8,43,0.0 +12317,4,22,49,0.0 +12317,14,23.25,42,0.0 +12317,75,7.75,33,0.0 +12318,32,32,48,0.0 +12318,39,18,38,0.0 +12318,69,36,33,0.0 +12318,58,13.25,45,0.0 +12318,73,15,36,0.0 +12318,65,21.05,18,0.0 +12318,21,10,1,0.0 +12318,56,38,18,0.0 +12318,74,10,16,0.0 +12318,41,9.65,22,0.0 +12318,22,21,1,0.0 +12318,43,46,2,0.0 +12318,12,38,4,0.0 +12318,11,21,8,0.0 +12318,9,97,25,0.0 +12318,15,15.5,34,0.0 +12318,26,31.23,14,0.0 +12318,28,45.6,33,0.0 +12318,51,53,49,0.0 +12318,48,12.75,13,0.0 +12318,40,18.4,6,0.0 +12318,19,9.2,7,0.0 +12318,45,9.5,30,0.0 +12318,47,9.5,23,0.0 +12318,53,32.8,31,0.0 +12318,66,17,50,0.0 +12318,20,81,50,0.0 +12318,72,34.8,30,0.0 +12319,45,9.5,6,0.0 +12319,70,15,16,0.0 +12319,42,14,11,0.0 +12319,11,21,15,0.0 +12319,61,28.5,34,0.0 +12319,33,2.5,9,0.0 +12319,6,25,44,0.0 +12319,57,19.5,25,0.0 +12319,59,55,10,0.0 +12319,19,9.2,41,0.0 +12319,29,123.79,11,0.0 +12319,15,15.5,17,0.0 +12319,50,16.25,7,0.0 +12319,13,6,3,0.0 +12319,44,19.45,45,0.0 +12319,9,97,20,0.0 +12319,37,26,49,0.0 +12319,4,22,46,0.0 +12319,23,9,36,0.0 +12319,2,19,41,0.0 +12319,67,14,41,0.0 +12319,75,7.75,14,0.0 +12319,31,12.5,14,0.0 +12319,35,18,24,0.0 +12319,25,14,1,0.0 +12319,72,34.8,19,0.0 +12319,47,9.5,26,0.0 +12319,64,33.25,10,0.0 +12319,56,38,12,0.0 +12319,52,7,9,0.0 +12319,22,21,36,0.0 +12319,55,24,8,0.0 +12319,63,43.9,50,0.0 +12319,77,13,18,0.0 +12319,17,39,40,0.0 +12319,48,12.75,12,0.0 +12319,58,13.25,48,0.0 +12319,18,62.5,43,0.0 +12319,3,10,32,0.0 +12319,46,12,19,0.0 +12319,5,21.35,44,0.0 +12319,14,23.25,6,0.0 +12319,71,21.5,33,0.0 +12319,12,38,43,0.0 +12319,27,43.9,14,0.0 +12319,43,46,20,0.0 +12319,30,25.89,26,0.0 +12319,69,36,8,0.0 +12319,34,14,31,0.0 +12319,16,17.45,4,0.0 +12319,32,32,16,0.0 +12319,51,53,6,0.0 +12319,40,18.4,34,0.0 +12319,73,15,40,0.0 +12319,68,12.5,6,0.0 +12319,7,30,5,0.0 +12319,49,20,6,0.0 +12319,53,32.8,43,0.0 +12319,41,9.65,16,0.0 +12319,54,7.45,9,0.0 +12319,36,19,11,0.0 +12319,76,18,20,0.0 +12319,60,34,10,0.0 +12319,65,21.05,46,0.0 +12319,8,40,18,0.0 +12319,28,45.6,6,0.0 +12319,39,18,18,0.0 +12319,20,81,1,0.0 +12319,24,4.5,4,0.0 +12319,74,10,8,0.0 +12319,21,10,15,0.0 +12320,37,26,27,0.0 +12320,66,17,6,0.0 +12320,67,14,22,0.0 +12320,19,9.2,41,0.0 +12320,20,81,41,0.0 +12320,60,34,10,0.0 +12320,71,21.5,19,0.0 +12320,29,123.79,41,0.0 +12321,77,13,23,0.0 +12321,1,18,14,0.0 +12321,56,38,36,0.0 +12321,41,9.65,35,0.0 +12321,13,6,25,0.0 +12321,43,46,5,0.0 +12321,23,9,22,0.0 +12321,62,49.3,36,0.0 +12321,50,16.25,36,0.0 +12321,22,21,46,0.0 +12321,37,26,20,0.0 +12321,47,9.5,22,0.0 +12321,48,12.75,43,0.0 +12321,15,15.5,32,0.0 +12321,36,19,7,0.0 +12321,69,36,10,0.0 +12321,68,12.5,8,0.0 +12321,38,263.5,13,0.0 +12321,67,14,35,0.0 +12321,9,97,22,0.0 +12321,70,15,13,0.0 +12321,71,21.5,33,0.0 +12321,10,31,38,0.0 +12321,17,39,24,0.0 +12321,29,123.79,1,0.0 +12321,18,62.5,30,0.0 +12321,45,9.5,47,0.0 +12321,52,7,33,0.0 +12321,65,21.05,9,0.0 +12321,35,18,20,0.0 +12321,51,53,46,0.0 +12321,40,18.4,18,0.0 +12321,75,7.75,11,0.0 +12321,6,25,30,0.0 +12322,50,16.25,42,0.0 +12322,40,18.4,31,0.0 +12322,59,55,40,0.0 +12322,22,21,30,0.0 +12322,17,39,13,0.0 +12322,5,21.35,27,0.0 +12322,54,7.45,15,0.0 +12322,44,19.45,20,0.0 +12322,39,18,39,0.0 +12322,73,15,10,0.0 +12322,16,17.45,37,0.0 +12322,33,2.5,42,0.0 +12322,1,18,8,0.0 +12322,51,53,36,0.0 +12322,9,97,25,0.0 +12322,13,6,48,0.0 +12322,19,9.2,22,0.0 +12322,63,43.9,8,0.0 +12322,77,13,19,0.0 +12322,7,30,33,0.0 +12322,66,17,5,0.0 +12322,46,12,11,0.0 +12322,3,10,13,0.0 +12322,68,12.5,3,0.0 +12322,31,12.5,34,0.0 +12322,70,15,41,0.0 +12322,76,18,13,0.0 +12322,64,33.25,29,0.0 +12322,34,14,44,0.0 +12322,49,20,10,0.0 +12322,4,22,44,0.0 +12322,45,9.5,21,0.0 +12322,32,32,43,0.0 +12322,47,9.5,25,0.0 +12322,58,13.25,44,0.0 +12322,43,46,26,0.0 +12322,6,25,41,0.0 +12322,74,10,9,0.0 +12322,27,43.9,45,0.0 +12322,71,21.5,29,0.0 +12322,75,7.75,28,0.0 +12322,25,14,43,0.0 +12322,8,40,35,0.0 +12322,36,19,28,0.0 +12322,28,45.6,42,0.0 +12322,62,49.3,48,0.0 +12322,26,31.23,28,0.0 +12322,35,18,17,0.0 +12322,57,19.5,39,0.0 +12322,38,263.5,34,0.0 +12322,24,4.5,33,0.0 +12322,23,9,7,0.0 +12322,42,14,25,0.0 +12322,60,34,2,0.0 +12323,30,25.89,33,0.0 +12323,21,10,4,0.0 +12323,49,20,48,0.0 +12323,28,45.6,20,0.0 +12323,12,38,10,0.0 +12323,52,7,23,0.0 +12323,26,31.23,34,0.0 +12323,44,19.45,49,0.0 +12323,4,22,19,0.0 +12324,71,21.5,3,0.0 +12324,26,31.23,5,0.0 +12324,70,15,37,0.0 +12324,72,34.8,11,0.0 +12324,61,28.5,11,0.0 +12324,42,14,32,0.0 +12324,6,25,24,0.0 +12324,7,30,46,0.0 +12324,68,12.5,30,0.0 +12324,24,4.5,16,0.0 +12324,23,9,2,0.0 +12324,50,16.25,26,0.0 +12324,3,10,14,0.0 +12324,32,32,29,0.0 +12324,65,21.05,25,0.0 +12324,27,43.9,18,0.0 +12324,51,53,46,0.0 +12325,16,17.45,41,0.0 +12325,1,18,31,0.0 +12325,52,7,15,0.0 +12325,6,25,17,0.0 +12325,75,7.75,39,0.0 +12325,14,23.25,5,0.0 +12325,33,2.5,13,0.0 +12325,5,21.35,49,0.0 +12326,9,97,31,0.0 +12326,30,25.89,20,0.0 +12326,24,4.5,10,0.0 +12326,66,17,17,0.0 +12326,18,62.5,38,0.0 +12326,35,18,13,0.0 +12326,58,13.25,25,0.0 +12326,57,19.5,4,0.0 +12326,2,19,44,0.0 +12326,61,28.5,41,0.0 +12326,40,18.4,42,0.0 +12326,21,10,27,0.0 +12326,77,13,5,0.0 +12326,22,21,46,0.0 +12326,75,7.75,33,0.0 +12326,62,49.3,26,0.0 +12326,65,21.05,9,0.0 +12326,5,21.35,7,0.0 +12326,20,81,31,0.0 +12326,7,30,26,0.0 +12326,33,2.5,35,0.0 +12326,64,33.25,4,0.0 +12326,23,9,30,0.0 +12326,46,12,49,0.0 +12326,59,55,11,0.0 +12326,68,12.5,36,0.0 +12326,45,9.5,37,0.0 +12326,52,7,19,0.0 +12326,4,22,12,0.0 +12326,72,34.8,26,0.0 +12326,69,36,24,0.0 +12326,50,16.25,20,0.0 +12326,70,15,6,0.0 +12326,48,12.75,35,0.0 +12326,37,26,18,0.0 +12326,27,43.9,19,0.0 +12326,36,19,28,0.0 +12326,44,19.45,38,0.0 +12326,47,9.5,42,0.0 +12326,16,17.45,5,0.0 +12326,74,10,8,0.0 +12326,43,46,43,0.0 +12326,55,24,48,0.0 +12326,11,21,44,0.0 +12326,60,34,17,0.0 +12326,51,53,22,0.0 +12326,73,15,37,0.0 +12326,67,14,31,0.0 +12326,63,43.9,7,0.0 +12326,8,40,37,0.0 +12326,6,25,40,0.0 +12326,29,123.79,30,0.0 +12326,76,18,46,0.0 +12326,41,9.65,29,0.0 +12326,17,39,9,0.0 +12326,49,20,34,0.0 +12326,39,18,41,0.0 +12326,25,14,34,0.0 +12326,13,6,5,0.0 +12326,42,14,1,0.0 +12326,19,9.2,6,0.0 +12326,34,14,3,0.0 +12326,56,38,14,0.0 +12326,12,38,47,0.0 +12326,54,7.45,31,0.0 +12327,41,9.65,23,0.0 +12327,13,6,24,0.0 +12327,68,12.5,43,0.0 +12327,65,21.05,27,0.0 +12327,4,22,28,0.0 +12327,17,39,5,0.0 +12327,14,23.25,7,0.0 +12327,74,10,17,0.0 +12327,60,34,29,0.0 +12327,7,30,13,0.0 +12327,19,9.2,14,0.0 +12327,2,19,26,0.0 +12327,21,10,50,0.0 +12327,62,49.3,41,0.0 +12327,67,14,45,0.0 +12327,34,14,15,0.0 +12327,45,9.5,34,0.0 +12327,35,18,35,0.0 +12327,40,18.4,14,0.0 +12327,15,15.5,39,0.0 +12327,75,7.75,46,0.0 +12327,46,12,29,0.0 +12327,57,19.5,27,0.0 +12327,5,21.35,34,0.0 +12327,18,62.5,15,0.0 +12327,73,15,10,0.0 +12327,28,45.6,23,0.0 +12327,11,21,3,0.0 +12327,22,21,18,0.0 +12327,24,4.5,29,0.0 +12327,26,31.23,22,0.0 +12327,77,13,34,0.0 +12327,32,32,15,0.0 +12327,72,34.8,28,0.0 +12327,69,36,31,0.0 +12327,70,15,29,0.0 +12327,39,18,10,0.0 +12327,8,40,41,0.0 +12327,54,7.45,9,0.0 +12327,64,33.25,35,0.0 +12327,1,18,40,0.0 +12327,61,28.5,27,0.0 +12327,48,12.75,34,0.0 +12327,44,19.45,48,0.0 +12327,37,26,41,0.0 +12327,49,20,40,0.0 +12327,38,263.5,10,0.0 +12327,47,9.5,14,0.0 +12327,71,21.5,39,0.0 +12327,53,32.8,26,0.0 +12327,16,17.45,7,0.0 +12327,3,10,33,0.0 +12328,47,9.5,37,0.0 +12328,15,15.5,25,0.0 +12328,31,12.5,33,0.0 +12328,19,9.2,43,0.0 +12328,55,24,32,0.0 +12328,54,7.45,14,0.0 +12328,27,43.9,26,0.0 +12328,45,9.5,37,0.0 +12328,49,20,30,0.0 +12328,36,19,19,0.0 +12328,40,18.4,1,0.0 +12328,43,46,27,0.0 +12328,76,18,7,0.0 +12328,51,53,17,0.0 +12328,30,25.89,29,0.0 +12328,60,34,1,0.0 +12328,46,12,24,0.0 +12328,11,21,38,0.0 +12328,17,39,14,0.0 +12328,41,9.65,9,0.0 +12328,48,12.75,41,0.0 +12328,4,22,46,0.0 +12328,6,25,11,0.0 +12328,24,4.5,23,0.0 +12328,5,21.35,7,0.0 +12328,66,17,38,0.0 +12328,33,2.5,11,0.0 +12328,10,31,30,0.0 +12328,64,33.25,2,0.0 +12328,29,123.79,16,0.0 +12328,39,18,27,0.0 +12328,75,7.75,39,0.0 +12328,53,32.8,21,0.0 +12328,3,10,4,0.0 +12328,58,13.25,49,0.0 +12328,74,10,14,0.0 +12328,13,6,6,0.0 +12328,42,14,40,0.0 +12328,67,14,29,0.0 +12328,1,18,6,0.0 +12328,20,81,4,0.0 +12328,52,7,19,0.0 +12328,28,45.6,35,0.0 +12328,69,36,29,0.0 +12328,50,16.25,27,0.0 +12328,26,31.23,32,0.0 +12328,57,19.5,9,0.0 +12328,65,21.05,46,0.0 +12328,72,34.8,34,0.0 +12328,8,40,32,0.0 +12328,68,12.5,10,0.0 +12328,35,18,10,0.0 +12328,73,15,14,0.0 +12328,59,55,44,0.0 +12328,38,263.5,24,0.0 +12329,54,7.45,19,0.0 +12329,41,9.65,45,0.0 +12329,44,19.45,31,0.0 +12329,35,18,45,0.0 +12329,62,49.3,8,0.0 +12329,39,18,2,0.0 +12329,61,28.5,41,0.0 +12329,10,31,9,0.0 +12329,69,36,13,0.0 +12329,21,10,48,0.0 +12329,76,18,3,0.0 +12329,51,53,34,0.0 +12329,19,9.2,41,0.0 +12329,50,16.25,41,0.0 +12329,45,9.5,32,0.0 +12329,38,263.5,49,0.0 +12329,33,2.5,41,0.0 +12329,53,32.8,24,0.0 +12329,37,26,42,0.0 +12329,23,9,4,0.0 +12329,31,12.5,50,0.0 +12329,6,25,44,0.0 +12329,4,22,31,0.0 +12329,42,14,33,0.0 +12329,65,21.05,31,0.0 +12329,32,32,48,0.0 +12329,60,34,24,0.0 +12329,7,30,25,0.0 +12329,52,7,22,0.0 +12329,15,15.5,7,0.0 +12329,49,20,17,0.0 +12329,67,14,42,0.0 +12329,46,12,28,0.0 +12329,74,10,34,0.0 +12329,22,21,35,0.0 +12329,72,34.8,34,0.0 +12329,47,9.5,3,0.0 +12329,11,21,20,0.0 +12329,26,31.23,19,0.0 +12329,2,19,28,0.0 +12329,3,10,28,0.0 +12329,71,21.5,32,0.0 +12329,75,7.75,34,0.0 +12329,77,13,22,0.0 +12329,14,23.25,10,0.0 +12329,8,40,41,0.0 +12329,57,19.5,29,0.0 +12329,30,25.89,18,0.0 +12329,43,46,12,0.0 +12329,63,43.9,21,0.0 +12329,13,6,46,0.0 +12329,59,55,29,0.0 +12329,18,62.5,47,0.0 +12329,9,97,44,0.0 +12329,55,24,23,0.0 +12329,48,12.75,46,0.0 +12329,16,17.45,5,0.0 +12329,20,81,48,0.0 +12329,70,15,8,0.0 +12329,68,12.5,46,0.0 +12329,34,14,35,0.0 +12329,36,19,6,0.0 +12329,58,13.25,15,0.0 +12330,11,21,42,0.0 +12330,19,9.2,2,0.0 +12330,26,31.23,17,0.0 +12330,54,7.45,20,0.0 +12330,60,34,36,0.0 +12330,40,18.4,12,0.0 +12330,48,12.75,23,0.0 +12330,17,39,17,0.0 +12330,46,12,43,0.0 +12330,52,7,15,0.0 +12330,32,32,41,0.0 +12330,9,97,23,0.0 +12330,37,26,32,0.0 +12330,10,31,41,0.0 +12330,29,123.79,14,0.0 +12331,16,17.45,15,0.0 +12331,44,19.45,7,0.0 +12332,25,14,43,0.0 +12332,27,43.9,27,0.0 +12332,67,14,33,0.0 +12332,8,40,34,0.0 +12332,18,62.5,13,0.0 +12332,58,13.25,11,0.0 +12332,1,18,42,0.0 +12332,23,9,43,0.0 +12332,59,55,7,0.0 +12332,33,2.5,32,0.0 +12332,63,43.9,18,0.0 +12332,75,7.75,18,0.0 +12332,77,13,13,0.0 +12332,4,22,39,0.0 +12332,51,53,46,0.0 +12332,72,34.8,37,0.0 +12332,6,25,14,0.0 +12332,26,31.23,40,0.0 +12332,54,7.45,31,0.0 +12332,62,49.3,23,0.0 +12332,40,18.4,29,0.0 +12332,24,4.5,27,0.0 +12332,28,45.6,26,0.0 +12332,48,12.75,25,0.0 +12332,9,97,1,0.0 +12332,3,10,30,0.0 +12332,47,9.5,40,0.0 +12333,42,14,23,0.0 +12333,74,10,15,0.0 +12333,16,17.45,44,0.0 +12333,6,25,19,0.0 +12333,47,9.5,12,0.0 +12333,67,14,12,0.0 +12333,50,16.25,7,0.0 +12333,45,9.5,50,0.0 +12333,34,14,28,0.0 +12333,71,21.5,34,0.0 +12333,63,43.9,12,0.0 +12333,40,18.4,8,0.0 +12333,13,6,46,0.0 +12333,43,46,42,0.0 +12333,55,24,5,0.0 +12333,66,17,31,0.0 +12333,75,7.75,22,0.0 +12333,73,15,15,0.0 +12333,2,19,29,0.0 +12333,24,4.5,44,0.0 +12333,69,36,9,0.0 +12333,76,18,1,0.0 +12333,28,45.6,30,0.0 +12333,51,53,40,0.0 +12333,9,97,13,0.0 +12333,27,43.9,42,0.0 +12333,32,32,17,0.0 +12334,65,21.05,43,0.0 +12334,3,10,39,0.0 +12334,19,9.2,13,0.0 +12334,20,81,18,0.0 +12334,4,22,30,0.0 +12334,74,10,14,0.0 +12334,54,7.45,25,0.0 +12334,48,12.75,13,0.0 +12334,47,9.5,48,0.0 +12334,46,12,16,0.0 +12334,7,30,11,0.0 +12334,21,10,20,0.0 +12334,77,13,7,0.0 +12334,5,21.35,37,0.0 +12334,34,14,11,0.0 +12334,11,21,9,0.0 +12334,49,20,45,0.0 +12334,18,62.5,23,0.0 +12334,57,19.5,9,0.0 +12334,70,15,35,0.0 +12334,35,18,21,0.0 +12334,37,26,18,0.0 +12334,13,6,35,0.0 +12334,43,46,7,0.0 +12334,32,32,14,0.0 +12334,60,34,6,0.0 +12334,8,40,32,0.0 +12334,40,18.4,17,0.0 +12334,16,17.45,44,0.0 +12334,63,43.9,7,0.0 +12334,38,263.5,34,0.0 +12334,45,9.5,45,0.0 +12334,6,25,16,0.0 +12334,41,9.65,24,0.0 +12334,24,4.5,12,0.0 +12334,56,38,39,0.0 +12334,64,33.25,26,0.0 +12334,44,19.45,33,0.0 +12334,22,21,36,0.0 +12334,68,12.5,36,0.0 +12334,73,15,37,0.0 +12334,27,43.9,4,0.0 +12334,14,23.25,26,0.0 +12334,2,19,24,0.0 +12334,69,36,6,0.0 +12334,30,25.89,11,0.0 +12334,31,12.5,33,0.0 +12334,36,19,37,0.0 +12334,17,39,44,0.0 +12334,59,55,49,0.0 +12334,67,14,5,0.0 +12334,26,31.23,37,0.0 +12334,1,18,28,0.0 +12334,72,34.8,28,0.0 +12334,25,14,18,0.0 +12334,61,28.5,13,0.0 +12334,42,14,16,0.0 +12334,71,21.5,46,0.0 +12334,75,7.75,30,0.0 +12334,58,13.25,24,0.0 +12334,23,9,11,0.0 +12334,12,38,7,0.0 +12334,52,7,20,0.0 +12334,76,18,9,0.0 +12334,33,2.5,9,0.0 +12334,50,16.25,12,0.0 +12334,29,123.79,31,0.0 +12334,66,17,12,0.0 +12334,62,49.3,15,0.0 +12335,38,263.5,48,0.0 +12335,36,19,45,0.0 +12335,21,10,31,0.0 +12335,28,45.6,23,0.0 +12335,33,2.5,22,0.0 +12335,52,7,9,0.0 +12335,23,9,47,0.0 +12335,50,16.25,29,0.0 +12335,11,21,10,0.0 +12335,74,10,4,0.0 +12335,25,14,15,0.0 +12335,72,34.8,33,0.0 +12335,69,36,4,0.0 +12335,45,9.5,3,0.0 +12335,41,9.65,21,0.0 +12335,61,28.5,2,0.0 +12335,62,49.3,35,0.0 +12335,17,39,6,0.0 +12335,44,19.45,17,0.0 +12335,60,34,6,0.0 +12336,14,23.25,13,0.0 +12336,43,46,26,0.0 +12336,58,13.25,5,0.0 +12336,44,19.45,32,0.0 +12336,35,18,15,0.0 +12336,42,14,33,0.0 +12336,38,263.5,43,0.0 +12336,6,25,32,0.0 +12336,31,12.5,14,0.0 +12336,53,32.8,29,0.0 +12336,3,10,1,0.0 +12336,7,30,21,0.0 +12336,47,9.5,17,0.0 +12336,25,14,11,0.0 +12336,41,9.65,10,0.0 +12336,74,10,38,0.0 +12336,28,45.6,26,0.0 +12336,21,10,39,0.0 +12336,16,17.45,3,0.0 +12336,24,4.5,37,0.0 +12336,40,18.4,50,0.0 +12336,12,38,36,0.0 +12336,65,21.05,8,0.0 +12336,51,53,16,0.0 +12336,22,21,2,0.0 +12336,57,19.5,22,0.0 +12336,64,33.25,17,0.0 +12336,50,16.25,22,0.0 +12336,23,9,12,0.0 +12336,2,19,8,0.0 +12336,71,21.5,42,0.0 +12336,13,6,30,0.0 +12336,61,28.5,1,0.0 +12336,29,123.79,14,0.0 +12336,45,9.5,13,0.0 +12336,1,18,7,0.0 +12336,20,81,19,0.0 +12336,76,18,7,0.0 +12336,46,12,14,0.0 +12336,48,12.75,39,0.0 +12336,27,43.9,20,0.0 +12336,26,31.23,25,0.0 +12336,34,14,32,0.0 +12336,4,22,45,0.0 +12336,30,25.89,22,0.0 +12336,37,26,35,0.0 +12336,70,15,26,0.0 +12336,72,34.8,27,0.0 +12336,9,97,33,0.0 +12336,77,13,18,0.0 +12336,56,38,25,0.0 +12336,39,18,5,0.0 +12336,67,14,43,0.0 +12336,66,17,10,0.0 +12336,59,55,32,0.0 +12336,36,19,43,0.0 +12336,73,15,8,0.0 +12336,55,24,30,0.0 +12336,11,21,23,0.0 +12336,54,7.45,1,0.0 +12336,49,20,10,0.0 +12336,63,43.9,4,0.0 +12336,62,49.3,21,0.0 +12336,68,12.5,3,0.0 +12336,60,34,47,0.0 +12336,15,15.5,25,0.0 +12336,19,9.2,41,0.0 +12336,17,39,1,0.0 +12336,75,7.75,39,0.0 +12336,10,31,22,0.0 +12336,32,32,19,0.0 +12336,33,2.5,37,0.0 +12336,52,7,6,0.0 +12337,65,21.05,27,0.0 +12337,12,38,33,0.0 +12337,67,14,2,0.0 +12337,58,13.25,29,0.0 +12337,8,40,8,0.0 +12337,47,9.5,30,0.0 +12337,29,123.79,4,0.0 +12337,48,12.75,22,0.0 +12337,33,2.5,8,0.0 +12337,30,25.89,39,0.0 +12337,76,18,20,0.0 +12337,18,62.5,43,0.0 +12337,34,14,18,0.0 +12337,14,23.25,21,0.0 +12337,71,21.5,21,0.0 +12337,39,18,27,0.0 +12337,24,4.5,49,0.0 +12337,56,38,40,0.0 +12337,46,12,25,0.0 +12337,19,9.2,25,0.0 +12337,75,7.75,2,0.0 +12337,21,10,34,0.0 +12337,43,46,44,0.0 +12337,7,30,38,0.0 +12337,35,18,22,0.0 +12337,22,21,23,0.0 +12337,50,16.25,2,0.0 +12337,69,36,36,0.0 +12337,74,10,26,0.0 +12337,5,21.35,4,0.0 +12337,1,18,4,0.0 +12337,44,19.45,2,0.0 +12337,49,20,43,0.0 +12337,52,7,23,0.0 +12337,60,34,38,0.0 +12337,66,17,23,0.0 +12338,36,19,37,0.0 +12338,8,40,27,0.0 +12338,66,17,39,0.0 +12338,13,6,45,0.0 +12338,65,21.05,20,0.0 +12338,70,15,16,0.0 +12338,61,28.5,26,0.0 +12338,30,25.89,37,0.0 +12338,39,18,25,0.0 +12338,40,18.4,19,0.0 +12338,58,13.25,12,0.0 +12338,54,7.45,17,0.0 +12338,7,30,47,0.0 +12338,33,2.5,40,0.0 +12338,43,46,19,0.0 +12338,62,49.3,7,0.0 +12338,72,34.8,13,0.0 +12338,24,4.5,17,0.0 +12338,31,12.5,1,0.0 +12338,51,53,7,0.0 +12338,73,15,5,0.0 +12338,60,34,34,0.0 +12338,44,19.45,3,0.0 +12338,77,13,4,0.0 +12338,76,18,7,0.0 +12338,23,9,29,0.0 +12338,34,14,38,0.0 +12338,1,18,47,0.0 +12338,32,32,3,0.0 +12338,35,18,14,0.0 +12338,37,26,2,0.0 +12338,11,21,49,0.0 +12338,29,123.79,20,0.0 +12338,68,12.5,34,0.0 +12338,41,9.65,3,0.0 +12338,57,19.5,35,0.0 +12338,6,25,4,0.0 +12338,48,12.75,14,0.0 +12338,64,33.25,11,0.0 +12338,69,36,2,0.0 +12338,17,39,48,0.0 +12338,2,19,30,0.0 +12338,49,20,15,0.0 +12338,47,9.5,45,0.0 +12338,45,9.5,17,0.0 +12338,26,31.23,32,0.0 +12338,19,9.2,45,0.0 +12338,53,32.8,11,0.0 +12338,74,10,22,0.0 +12338,16,17.45,47,0.0 +12338,9,97,40,0.0 +12339,32,32,43,0.0 +12339,75,7.75,17,0.0 +12339,47,9.5,18,0.0 +12339,74,10,45,0.0 +12339,25,14,28,0.0 +12339,27,43.9,14,0.0 +12339,31,12.5,2,0.0 +12339,65,21.05,11,0.0 +12339,13,6,14,0.0 +12339,53,32.8,37,0.0 +12339,10,31,13,0.0 +12339,61,28.5,33,0.0 +12339,3,10,12,0.0 +12339,19,9.2,33,0.0 +12339,54,7.45,46,0.0 +12339,29,123.79,15,0.0 +12339,8,40,9,0.0 +12339,42,14,23,0.0 +12339,48,12.75,28,0.0 +12339,46,12,43,0.0 +12339,45,9.5,8,0.0 +12339,5,21.35,30,0.0 +12339,60,34,18,0.0 +12339,2,19,28,0.0 +12339,9,97,50,0.0 +12339,69,36,24,0.0 +12339,34,14,23,0.0 +12339,28,45.6,17,0.0 +12339,4,22,45,0.0 +12339,51,53,35,0.0 +12339,21,10,48,0.0 +12339,12,38,2,0.0 +12339,15,15.5,25,0.0 +12339,40,18.4,36,0.0 +12339,36,19,12,0.0 +12339,33,2.5,35,0.0 +12339,73,15,20,0.0 +12339,11,21,38,0.0 +12339,66,17,26,0.0 +12339,37,26,13,0.0 +12339,67,14,44,0.0 +12339,58,13.25,23,0.0 +12339,39,18,38,0.0 +12339,49,20,13,0.0 +12339,18,62.5,31,0.0 +12339,64,33.25,24,0.0 +12339,59,55,40,0.0 +12339,50,16.25,22,0.0 +12339,72,34.8,39,0.0 +12339,24,4.5,48,0.0 +12339,16,17.45,35,0.0 +12339,17,39,33,0.0 +12339,30,25.89,14,0.0 +12339,23,9,38,0.0 +12339,14,23.25,37,0.0 +12339,62,49.3,14,0.0 +12339,71,21.5,39,0.0 +12339,43,46,1,0.0 +12339,44,19.45,12,0.0 +12339,52,7,24,0.0 +12339,6,25,31,0.0 +12339,77,13,8,0.0 +12340,65,21.05,41,0.0 +12340,42,14,14,0.0 +12340,52,7,9,0.0 +12340,58,13.25,17,0.0 +12340,44,19.45,21,0.0 +12340,35,18,44,0.0 +12340,36,19,7,0.0 +12340,12,38,48,0.0 +12340,25,14,21,0.0 +12340,50,16.25,31,0.0 +12340,73,15,43,0.0 +12340,32,32,12,0.0 +12340,61,28.5,38,0.0 +12340,39,18,49,0.0 +12340,74,10,46,0.0 +12340,76,18,38,0.0 +12340,6,25,33,0.0 +12340,16,17.45,50,0.0 +12340,4,22,44,0.0 +12340,66,17,20,0.0 +12340,9,97,32,0.0 +12340,26,31.23,47,0.0 +12340,8,40,27,0.0 +12340,15,15.5,20,0.0 +12340,55,24,13,0.0 +12340,11,21,16,0.0 +12340,27,43.9,19,0.0 +12340,59,55,15,0.0 +12340,3,10,31,0.0 +12340,75,7.75,14,0.0 +12340,62,49.3,6,0.0 +12340,51,53,16,0.0 +12340,54,7.45,24,0.0 +12340,13,6,49,0.0 +12340,34,14,23,0.0 +12340,10,31,2,0.0 +12340,56,38,45,0.0 +12340,38,263.5,7,0.0 +12340,53,32.8,21,0.0 +12340,49,20,43,0.0 +12340,31,12.5,31,0.0 +12340,7,30,25,0.0 +12340,29,123.79,29,0.0 +12340,70,15,35,0.0 +12340,41,9.65,39,0.0 +12340,71,21.5,32,0.0 +12340,21,10,13,0.0 +12340,68,12.5,16,0.0 +12340,37,26,43,0.0 +12340,14,23.25,28,0.0 +12340,20,81,29,0.0 +12340,2,19,3,0.0 +12340,60,34,44,0.0 +12340,1,18,22,0.0 +12340,45,9.5,18,0.0 +12340,30,25.89,47,0.0 +12340,18,62.5,20,0.0 +12340,63,43.9,1,0.0 +12340,40,18.4,38,0.0 +12340,33,2.5,50,0.0 +12340,19,9.2,3,0.0 +12340,48,12.75,2,0.0 +12341,42,14,23,0.0 +12341,43,46,36,0.0 +12341,15,15.5,43,0.0 +12341,3,10,1,0.0 +12341,19,9.2,9,0.0 +12341,77,13,30,0.0 +12341,56,38,27,0.0 +12342,7,30,9,0.0 +12342,34,14,13,0.0 +12342,12,38,22,0.0 +12342,58,13.25,32,0.0 +12343,3,10,22,0.0 +12343,35,18,37,0.0 +12343,36,19,46,0.0 +12343,12,38,40,0.0 +12343,31,12.5,32,0.0 +12343,47,9.5,14,0.0 +12343,43,46,50,0.0 +12343,57,19.5,18,0.0 +12343,19,9.2,10,0.0 +12343,67,14,21,0.0 +12343,21,10,6,0.0 +12343,8,40,9,0.0 +12343,75,7.75,25,0.0 +12343,63,43.9,47,0.0 +12343,62,49.3,16,0.0 +12343,60,34,24,0.0 +12343,7,30,8,0.0 +12343,58,13.25,1,0.0 +12343,24,4.5,43,0.0 +12343,73,15,1,0.0 +12343,48,12.75,45,0.0 +12343,51,53,27,0.0 +12343,18,62.5,49,0.0 +12343,29,123.79,44,0.0 +12343,50,16.25,15,0.0 +12343,5,21.35,20,0.0 +12343,28,45.6,31,0.0 +12343,13,6,15,0.0 +12343,65,21.05,19,0.0 +12343,11,21,18,0.0 +12343,70,15,33,0.0 +12343,39,18,34,0.0 +12343,45,9.5,3,0.0 +12343,74,10,18,0.0 +12343,41,9.65,48,0.0 +12343,49,20,24,0.0 +12343,17,39,44,0.0 +12343,64,33.25,14,0.0 +12343,6,25,12,0.0 +12343,30,25.89,41,0.0 +12343,33,2.5,11,0.0 +12343,16,17.45,19,0.0 +12343,22,21,39,0.0 +12343,34,14,25,0.0 +12343,9,97,33,0.0 +12343,52,7,2,0.0 +12343,68,12.5,44,0.0 +12343,42,14,7,0.0 +12343,38,263.5,3,0.0 +12344,21,10,43,0.0 +12344,54,7.45,30,0.0 +12344,47,9.5,24,0.0 +12344,57,19.5,30,0.0 +12344,16,17.45,36,0.0 +12344,72,34.8,40,0.0 +12344,24,4.5,30,0.0 +12344,27,43.9,28,0.0 +12344,41,9.65,25,0.0 +12344,61,28.5,7,0.0 +12344,8,40,45,0.0 +12344,70,15,43,0.0 +12344,64,33.25,27,0.0 +12344,58,13.25,50,0.0 +12344,9,97,26,0.0 +12344,68,12.5,34,0.0 +12344,65,21.05,27,0.0 +12344,48,12.75,40,0.0 +12344,35,18,22,0.0 +12345,17,39,44,0.0 +12345,43,46,4,0.0 +12345,49,20,18,0.0 +12345,14,23.25,35,0.0 +12345,58,13.25,45,0.0 +12345,25,14,43,0.0 +12345,13,6,19,0.0 +12345,20,81,31,0.0 +12345,60,34,18,0.0 +12345,55,24,2,0.0 +12345,26,31.23,16,0.0 +12345,57,19.5,49,0.0 +12345,33,2.5,26,0.0 +12345,9,97,33,0.0 +12345,53,32.8,17,0.0 +12345,51,53,31,0.0 +12345,75,7.75,22,0.0 +12345,76,18,42,0.0 +12345,39,18,27,0.0 +12345,23,9,1,0.0 +12345,48,12.75,4,0.0 +12345,40,18.4,21,0.0 +12345,24,4.5,26,0.0 +12345,37,26,48,0.0 +12345,16,17.45,39,0.0 +12345,42,14,14,0.0 +12345,10,31,35,0.0 +12345,35,18,11,0.0 +12345,1,18,5,0.0 +12345,7,30,32,0.0 +12345,52,7,9,0.0 +12345,21,10,50,0.0 +12345,36,19,1,0.0 +12345,67,14,14,0.0 +12345,69,36,45,0.0 +12345,19,9.2,47,0.0 +12345,70,15,48,0.0 +12345,31,12.5,7,0.0 +12345,28,45.6,27,0.0 +12345,34,14,20,0.0 +12345,8,40,47,0.0 +12345,66,17,41,0.0 +12345,29,123.79,41,0.0 +12345,77,13,29,0.0 +12345,64,33.25,23,0.0 +12345,65,21.05,30,0.0 +12345,27,43.9,6,0.0 +12345,2,19,17,0.0 +12345,68,12.5,20,0.0 +12345,12,38,23,0.0 +12345,4,22,9,0.0 +12345,11,21,33,0.0 +12346,69,36,24,0.0 +12346,12,38,11,0.0 +12346,56,38,5,0.0 +12346,14,23.25,28,0.0 +12346,11,21,32,0.0 +12346,8,40,9,0.0 +12346,6,25,30,0.0 +12346,35,18,37,0.0 +12346,9,97,48,0.0 +12346,26,31.23,14,0.0 +12346,74,10,22,0.0 +12346,63,43.9,19,0.0 +12346,52,7,22,0.0 +12346,25,14,39,0.0 +12346,19,9.2,48,0.0 +12346,50,16.25,29,0.0 +12347,13,6,36,0.0 +12347,58,13.25,46,0.0 +12347,76,18,31,0.0 +12347,70,15,24,0.0 +12347,63,43.9,5,0.0 +12347,23,9,25,0.0 +12347,72,34.8,6,0.0 +12347,47,9.5,33,0.0 +12347,43,46,20,0.0 +12347,65,21.05,49,0.0 +12347,66,17,17,0.0 +12347,28,45.6,18,0.0 +12347,69,36,12,0.0 +12347,5,21.35,38,0.0 +12347,53,32.8,14,0.0 +12347,34,14,7,0.0 +12347,9,97,41,0.0 +12347,26,31.23,23,0.0 +12347,52,7,41,0.0 +12347,50,16.25,4,0.0 +12347,19,9.2,33,0.0 +12347,25,14,36,0.0 +12347,60,34,8,0.0 +12348,71,21.5,10,0.0 +12348,52,7,35,0.0 +12348,51,53,25,0.0 +12348,73,15,28,0.0 +12348,36,19,40,0.0 +12348,34,14,4,0.0 +12348,43,46,30,0.0 +12348,16,17.45,45,0.0 +12348,4,22,7,0.0 +12348,42,14,14,0.0 +12348,77,13,47,0.0 +12348,8,40,1,0.0 +12348,24,4.5,15,0.0 +12348,5,21.35,45,0.0 +12348,57,19.5,23,0.0 +12348,12,38,10,0.0 +12348,41,9.65,39,0.0 +12348,53,32.8,23,0.0 +12348,69,36,48,0.0 +12348,76,18,20,0.0 +12348,18,62.5,7,0.0 +12348,32,32,24,0.0 +12348,23,9,37,0.0 +12348,54,7.45,13,0.0 +12348,1,18,47,0.0 +12348,13,6,46,0.0 +12348,61,28.5,19,0.0 +12348,67,14,41,0.0 +12348,75,7.75,8,0.0 +12348,62,49.3,43,0.0 +12348,15,15.5,6,0.0 +12348,50,16.25,3,0.0 +12348,2,19,16,0.0 +12348,63,43.9,4,0.0 +12348,58,13.25,11,0.0 +12348,3,10,44,0.0 +12348,20,81,7,0.0 +12348,7,30,23,0.0 +12348,31,12.5,19,0.0 +12348,55,24,3,0.0 +12348,66,17,48,0.0 +12348,37,26,23,0.0 +12348,19,9.2,44,0.0 +12348,40,18.4,13,0.0 +12348,10,31,17,0.0 +12348,56,38,34,0.0 +12349,3,10,33,0.0 +12349,57,19.5,5,0.0 +12349,23,9,7,0.0 +12349,70,15,11,0.0 +12349,18,62.5,23,0.0 +12349,60,34,43,0.0 +12349,37,26,31,0.0 +12349,43,46,10,0.0 +12349,69,36,20,0.0 +12349,9,97,1,0.0 +12349,17,39,28,0.0 +12349,16,17.45,46,0.0 +12349,59,55,6,0.0 +12349,20,81,13,0.0 +12349,73,15,14,0.0 +12349,33,2.5,26,0.0 +12349,36,19,25,0.0 +12349,56,38,47,0.0 +12349,29,123.79,43,0.0 +12349,72,34.8,23,0.0 +12349,6,25,21,0.0 +12349,45,9.5,23,0.0 +12349,21,10,47,0.0 +12349,63,43.9,40,0.0 +12349,54,7.45,4,0.0 +12349,64,33.25,9,0.0 +12349,30,25.89,2,0.0 +12349,12,38,12,0.0 +12349,25,14,23,0.0 +12349,48,12.75,29,0.0 +12349,53,32.8,17,0.0 +12349,46,12,3,0.0 +12349,13,6,16,0.0 +12349,77,13,43,0.0 +12349,62,49.3,13,0.0 +12349,51,53,49,0.0 +12349,39,18,30,0.0 +12349,66,17,5,0.0 +12349,11,21,37,0.0 +12349,75,7.75,17,0.0 +12349,32,32,10,0.0 +12349,14,23.25,11,0.0 +12349,31,12.5,46,0.0 +12349,22,21,3,0.0 +12349,2,19,26,0.0 +12349,35,18,31,0.0 +12349,4,22,33,0.0 +12349,50,16.25,26,0.0 +12349,71,21.5,3,0.0 +12349,27,43.9,5,0.0 +12349,76,18,26,0.0 +12349,38,263.5,3,0.0 +12349,52,7,32,0.0 +12349,1,18,23,0.0 +12349,24,4.5,42,0.0 +12349,40,18.4,30,0.0 +12349,67,14,35,0.0 +12349,28,45.6,18,0.0 +12349,15,15.5,46,0.0 +12349,68,12.5,13,0.0 +12349,10,31,20,0.0 +12349,8,40,2,0.0 +12349,58,13.25,13,0.0 +12349,41,9.65,48,0.0 +12349,19,9.2,29,0.0 +12349,42,14,46,0.0 +12349,65,21.05,24,0.0 +12349,47,9.5,7,0.0 +12349,44,19.45,45,0.0 +12350,72,34.8,29,0.0 +12350,5,21.35,8,0.0 +12350,44,19.45,50,0.0 +12350,59,55,31,0.0 +12350,42,14,9,0.0 +12351,36,19,47,0.0 +12351,55,24,33,0.0 +12351,34,14,15,0.0 +12351,7,30,39,0.0 +12351,65,21.05,33,0.0 +12351,16,17.45,31,0.0 +12351,60,34,13,0.0 +12351,13,6,17,0.0 +12351,46,12,14,0.0 +12351,15,15.5,38,0.0 +12351,27,43.9,6,0.0 +12351,12,38,4,0.0 +12351,51,53,21,0.0 +12351,75,7.75,14,0.0 +12351,20,81,6,0.0 +12351,53,32.8,48,0.0 +12351,59,55,6,0.0 +12351,73,15,40,0.0 +12351,30,25.89,46,0.0 +12351,64,33.25,22,0.0 +12351,56,38,37,0.0 +12351,29,123.79,48,0.0 +12351,70,15,45,0.0 +12352,47,9.5,24,0.0 +12352,37,26,3,0.0 +12352,66,17,16,0.0 +12352,53,32.8,16,0.0 +12352,1,18,41,0.0 +12352,77,13,24,0.0 +12352,49,20,48,0.0 +12352,45,9.5,13,0.0 +12352,31,12.5,37,0.0 +12352,18,62.5,46,0.0 +12352,9,97,50,0.0 +12352,71,21.5,28,0.0 +12352,73,15,35,0.0 +12352,19,9.2,39,0.0 +12352,72,34.8,32,0.0 +12352,60,34,45,0.0 +12352,22,21,28,0.0 +12352,16,17.45,17,0.0 +12352,44,19.45,36,0.0 +12352,57,19.5,22,0.0 +12352,75,7.75,31,0.0 +12352,56,38,1,0.0 +12352,13,6,29,0.0 +12352,51,53,9,0.0 +12352,68,12.5,25,0.0 +12352,70,15,27,0.0 +12352,21,10,26,0.0 +12352,17,39,22,0.0 +12352,28,45.6,6,0.0 +12352,34,14,8,0.0 +12352,59,55,24,0.0 +12352,64,33.25,26,0.0 +12352,5,21.35,49,0.0 +12352,3,10,34,0.0 +12352,55,24,34,0.0 +12352,38,263.5,17,0.0 +12352,6,25,36,0.0 +12352,65,21.05,20,0.0 +12352,4,22,38,0.0 +12352,67,14,22,0.0 +12352,40,18.4,22,0.0 +12352,42,14,37,0.0 +12352,63,43.9,30,0.0 +12352,24,4.5,13,0.0 +12352,48,12.75,45,0.0 +12352,39,18,40,0.0 +12352,69,36,35,0.0 +12352,33,2.5,39,0.0 +12352,43,46,48,0.0 +12352,2,19,41,0.0 +12352,25,14,32,0.0 +12352,15,15.5,4,0.0 +12352,50,16.25,36,0.0 +12352,46,12,39,0.0 +12352,12,38,20,0.0 +12352,30,25.89,36,0.0 +12352,36,19,42,0.0 +12352,74,10,2,0.0 +12352,26,31.23,9,0.0 +12352,41,9.65,13,0.0 +12352,54,7.45,13,0.0 +12352,62,49.3,23,0.0 +12352,58,13.25,35,0.0 +12353,16,17.45,27,0.0 +12354,17,39,22,0.0 +12354,43,46,4,0.0 +12354,29,123.79,49,0.0 +12354,23,9,24,0.0 +12354,18,62.5,34,0.0 +12354,69,36,2,0.0 +12354,72,34.8,14,0.0 +12354,38,263.5,6,0.0 +12354,6,25,40,0.0 +12354,30,25.89,7,0.0 +12354,48,12.75,15,0.0 +12354,9,97,33,0.0 +12354,56,38,47,0.0 +12354,45,9.5,32,0.0 +12354,32,32,42,0.0 +12354,55,24,40,0.0 +12354,51,53,11,0.0 +12354,52,7,3,0.0 +12354,47,9.5,44,0.0 +12354,63,43.9,10,0.0 +12354,34,14,22,0.0 +12354,62,49.3,44,0.0 +12354,59,55,48,0.0 +12354,27,43.9,26,0.0 +12354,31,12.5,3,0.0 +12354,3,10,14,0.0 +12354,7,30,38,0.0 +12354,74,10,13,0.0 +12354,73,15,40,0.0 +12354,12,38,25,0.0 +12354,70,15,39,0.0 +12354,10,31,41,0.0 +12354,44,19.45,50,0.0 +12354,60,34,33,0.0 +12354,76,18,16,0.0 +12354,65,21.05,27,0.0 +12355,15,15.5,32,0.0 +12355,8,40,24,0.0 +12355,17,39,24,0.0 +12355,40,18.4,20,0.0 +12355,52,7,33,0.0 +12355,38,263.5,33,0.0 +12355,68,12.5,4,0.0 +12355,56,38,46,0.0 +12355,33,2.5,43,0.0 +12355,77,13,23,0.0 +12355,10,31,16,0.0 +12355,3,10,34,0.0 +12355,5,21.35,14,0.0 +12355,26,31.23,20,0.0 +12355,46,12,1,0.0 +12355,60,34,25,0.0 +12355,63,43.9,6,0.0 +12355,54,7.45,25,0.0 +12355,12,38,39,0.0 +12355,73,15,7,0.0 +12355,11,21,32,0.0 +12355,19,9.2,4,0.0 +12355,49,20,9,0.0 +12355,41,9.65,29,0.0 +12355,70,15,22,0.0 +12355,72,34.8,34,0.0 +12355,31,12.5,23,0.0 +12355,69,36,29,0.0 +12355,61,28.5,27,0.0 +12355,71,21.5,16,0.0 +12355,44,19.45,26,0.0 +12355,16,17.45,45,0.0 +12355,14,23.25,44,0.0 +12355,32,32,49,0.0 +12355,23,9,12,0.0 +12355,58,13.25,44,0.0 +12355,55,24,46,0.0 +12355,65,21.05,47,0.0 +12355,50,16.25,46,0.0 +12356,27,43.9,33,0.0 +12356,3,10,25,0.0 +12356,52,7,10,0.0 +12356,58,13.25,14,0.0 +12356,40,18.4,15,0.0 +12356,48,12.75,5,0.0 +12356,22,21,10,0.0 +12356,62,49.3,14,0.0 +12356,23,9,16,0.0 +12357,59,55,47,0.0 +12357,22,21,39,0.0 +12357,32,32,20,0.0 +12357,23,9,30,0.0 +12357,42,14,8,0.0 +12357,2,19,33,0.0 +12357,20,81,28,0.0 +12357,5,21.35,23,0.0 +12357,7,30,48,0.0 +12357,18,62.5,40,0.0 +12357,14,23.25,35,0.0 +12357,6,25,24,0.0 +12357,67,14,33,0.0 +12357,61,28.5,25,0.0 +12357,74,10,2,0.0 +12357,3,10,48,0.0 +12357,33,2.5,13,0.0 +12357,27,43.9,15,0.0 +12357,21,10,15,0.0 +12357,30,25.89,22,0.0 +12357,9,97,48,0.0 +12357,34,14,4,0.0 +12357,69,36,45,0.0 +12357,48,12.75,2,0.0 +12357,64,33.25,41,0.0 +12357,51,53,41,0.0 +12357,37,26,22,0.0 +12357,36,19,17,0.0 +12357,57,19.5,19,0.0 +12357,73,15,5,0.0 +12357,66,17,50,0.0 +12357,17,39,39,0.0 +12357,40,18.4,38,0.0 +12357,4,22,38,0.0 +12357,1,18,47,0.0 +12357,50,16.25,15,0.0 +12357,12,38,39,0.0 +12357,54,7.45,9,0.0 +12357,41,9.65,41,0.0 +12357,70,15,30,0.0 +12357,38,263.5,22,0.0 +12357,13,6,36,0.0 +12357,28,45.6,2,0.0 +12357,49,20,36,0.0 +12358,50,16.25,35,0.0 +12358,36,19,46,0.0 +12358,14,23.25,24,0.0 +12358,45,9.5,50,0.0 +12358,40,18.4,2,0.0 +12358,71,21.5,4,0.0 +12358,74,10,37,0.0 +12358,46,12,43,0.0 +12358,58,13.25,35,0.0 +12358,72,34.8,50,0.0 +12358,66,17,28,0.0 +12358,43,46,15,0.0 +12358,37,26,20,0.0 +12358,56,38,45,0.0 +12358,42,14,36,0.0 +12358,10,31,44,0.0 +12359,49,20,32,0.0 +12359,46,12,6,0.0 +12359,41,9.65,1,0.0 +12359,44,19.45,17,0.0 +12359,21,10,31,0.0 +12359,38,263.5,35,0.0 +12359,58,13.25,10,0.0 +12359,32,32,21,0.0 +12359,12,38,42,0.0 +12359,24,4.5,43,0.0 +12359,14,23.25,48,0.0 +12359,65,21.05,20,0.0 +12359,59,55,46,0.0 +12359,22,21,19,0.0 +12359,76,18,9,0.0 +12359,42,14,40,0.0 +12359,17,39,22,0.0 +12359,43,46,21,0.0 +12359,60,34,47,0.0 +12359,66,17,45,0.0 +12359,23,9,39,0.0 +12359,33,2.5,24,0.0 +12359,16,17.45,6,0.0 +12359,63,43.9,21,0.0 +12359,39,18,48,0.0 +12359,45,9.5,9,0.0 +12359,4,22,22,0.0 +12359,48,12.75,11,0.0 +12359,9,97,16,0.0 +12359,73,15,16,0.0 +12359,75,7.75,3,0.0 +12359,47,9.5,32,0.0 +12359,20,81,9,0.0 +12359,7,30,43,0.0 +12359,34,14,31,0.0 +12359,15,15.5,42,0.0 +12359,74,10,33,0.0 +12359,54,7.45,23,0.0 +12359,35,18,37,0.0 +12359,64,33.25,14,0.0 +12359,52,7,47,0.0 +12359,40,18.4,2,0.0 +12359,30,25.89,29,0.0 +12359,29,123.79,8,0.0 +12359,70,15,19,0.0 +12359,18,62.5,20,0.0 +12359,53,32.8,19,0.0 +12359,68,12.5,34,0.0 +12359,50,16.25,5,0.0 +12359,25,14,35,0.0 +12359,37,26,13,0.0 +12359,36,19,44,0.0 +12359,57,19.5,50,0.0 +12359,51,53,10,0.0 +12359,11,21,27,0.0 +12359,71,21.5,3,0.0 +12359,8,40,14,0.0 +12359,13,6,48,0.0 +12359,2,19,32,0.0 +12359,28,45.6,28,0.0 +12359,3,10,23,0.0 +12359,19,9.2,14,0.0 +12359,67,14,9,0.0 +12359,6,25,18,0.0 +12359,69,36,3,0.0 +12359,77,13,50,0.0 +12359,61,28.5,43,0.0 +12359,5,21.35,46,0.0 +12360,32,32,31,0.0 +12360,41,9.65,18,0.0 +12360,68,12.5,44,0.0 +12360,52,7,37,0.0 +12360,54,7.45,48,0.0 +12360,43,46,40,0.0 +12360,50,16.25,4,0.0 +12360,2,19,31,0.0 +12360,62,49.3,26,0.0 +12360,59,55,7,0.0 +12360,15,15.5,49,0.0 +12360,39,18,2,0.0 +12360,63,43.9,21,0.0 +12360,31,12.5,8,0.0 +12360,67,14,47,0.0 +12360,49,20,35,0.0 +12360,11,21,7,0.0 +12360,1,18,21,0.0 +12360,24,4.5,45,0.0 +12360,76,18,8,0.0 +12360,60,34,23,0.0 +12360,46,12,35,0.0 +12360,26,31.23,18,0.0 +12360,38,263.5,6,0.0 +12360,16,17.45,23,0.0 +12360,29,123.79,25,0.0 +12360,33,2.5,31,0.0 +12360,47,9.5,37,0.0 +12360,66,17,30,0.0 +12360,42,14,21,0.0 +12360,12,38,4,0.0 +12360,10,31,4,0.0 +12360,45,9.5,35,0.0 +12360,71,21.5,26,0.0 +12360,53,32.8,8,0.0 +12360,7,30,24,0.0 +12360,48,12.75,6,0.0 +12360,40,18.4,39,0.0 +12360,17,39,28,0.0 +12360,37,26,46,0.0 +12360,28,45.6,13,0.0 +12360,56,38,8,0.0 +12360,70,15,20,0.0 +12360,9,97,35,0.0 +12360,8,40,4,0.0 +12360,58,13.25,24,0.0 +12360,30,25.89,5,0.0 +12360,22,21,12,0.0 +12360,36,19,36,0.0 +12360,51,53,18,0.0 +12360,74,10,28,0.0 +12360,55,24,48,0.0 +12360,69,36,44,0.0 +12360,27,43.9,22,0.0 +12360,34,14,7,0.0 +12360,72,34.8,7,0.0 +12360,13,6,23,0.0 +12360,14,23.25,28,0.0 +12360,18,62.5,12,0.0 +12360,23,9,15,0.0 +12360,73,15,4,0.0 +12360,35,18,17,0.0 +12360,75,7.75,5,0.0 +12360,44,19.45,4,0.0 +12360,65,21.05,43,0.0 +12360,20,81,7,0.0 +12360,57,19.5,29,0.0 +12361,45,9.5,30,0.0 +12361,10,31,6,0.0 +12361,5,21.35,11,0.0 +12361,58,13.25,50,0.0 +12361,37,26,14,0.0 +12361,9,97,3,0.0 +12361,27,43.9,32,0.0 +12361,22,21,15,0.0 +12361,26,31.23,17,0.0 +12361,19,9.2,50,0.0 +12361,77,13,27,0.0 +12361,34,14,43,0.0 +12361,7,30,7,0.0 +12361,11,21,27,0.0 +12361,3,10,40,0.0 +12361,32,32,30,0.0 +12361,54,7.45,47,0.0 +12362,30,25.89,27,0.0 +12362,24,4.5,41,0.0 +12362,6,25,24,0.0 +12362,39,18,23,0.0 +12362,15,15.5,6,0.0 +12362,38,263.5,9,0.0 +12362,18,62.5,5,0.0 +12362,1,18,46,0.0 +12362,4,22,26,0.0 +12362,47,9.5,4,0.0 +12362,28,45.6,43,0.0 +12362,34,14,47,0.0 +12362,61,28.5,46,0.0 +12362,58,13.25,35,0.0 +12362,48,12.75,15,0.0 +12362,49,20,1,0.0 +12362,31,12.5,50,0.0 +12362,43,46,49,0.0 +12362,17,39,8,0.0 +12362,2,19,46,0.0 +12362,20,81,23,0.0 +12362,60,34,19,0.0 +12362,12,38,35,0.0 +12362,68,12.5,2,0.0 +12362,59,55,38,0.0 +12362,75,7.75,27,0.0 +12362,36,19,6,0.0 +12362,42,14,31,0.0 +12362,23,9,10,0.0 +12362,5,21.35,39,0.0 +12362,55,24,8,0.0 +12362,44,19.45,1,0.0 +12362,73,15,16,0.0 +12362,32,32,20,0.0 +12362,64,33.25,11,0.0 +12362,57,19.5,35,0.0 +12362,62,49.3,27,0.0 +12362,8,40,6,0.0 +12362,41,9.65,24,0.0 +12362,14,23.25,27,0.0 +12362,26,31.23,28,0.0 +12362,76,18,4,0.0 +12362,40,18.4,22,0.0 +12362,50,16.25,37,0.0 +12362,54,7.45,34,0.0 +12362,51,53,5,0.0 +12362,16,17.45,13,0.0 +12362,67,14,45,0.0 +12362,10,31,16,0.0 +12362,74,10,26,0.0 +12362,77,13,35,0.0 +12362,19,9.2,36,0.0 +12362,11,21,22,0.0 +12362,56,38,14,0.0 +12362,65,21.05,8,0.0 +12362,53,32.8,12,0.0 +12362,33,2.5,8,0.0 +12363,34,14,50,0.0 +12363,21,10,44,0.0 +12363,49,20,42,0.0 +12363,47,9.5,15,0.0 +12363,44,19.45,31,0.0 +12363,28,45.6,18,0.0 +12363,37,26,41,0.0 +12363,1,18,48,0.0 +12363,9,97,8,0.0 +12363,6,25,23,0.0 +12363,30,25.89,31,0.0 +12363,66,17,35,0.0 +12363,26,31.23,22,0.0 +12363,29,123.79,40,0.0 +12363,25,14,5,0.0 +12363,45,9.5,8,0.0 +12363,64,33.25,47,0.0 +12363,40,18.4,8,0.0 +12363,48,12.75,2,0.0 +12363,61,28.5,29,0.0 +12363,7,30,14,0.0 +12363,39,18,24,0.0 +12363,76,18,34,0.0 +12363,33,2.5,8,0.0 +12363,54,7.45,20,0.0 +12363,15,15.5,46,0.0 +12363,70,15,41,0.0 +12363,38,263.5,46,0.0 +12363,36,19,35,0.0 +12363,62,49.3,31,0.0 +12363,71,21.5,12,0.0 +12363,3,10,1,0.0 +12363,65,21.05,46,0.0 +12363,43,46,36,0.0 +12363,13,6,12,0.0 +12363,69,36,5,0.0 +12363,35,18,25,0.0 +12363,53,32.8,25,0.0 +12363,68,12.5,49,0.0 +12363,73,15,39,0.0 +12363,46,12,6,0.0 +12364,20,81,9,0.0 +12364,37,26,1,0.0 +12364,13,6,17,0.0 +12364,15,15.5,9,0.0 +12364,77,13,11,0.0 +12364,4,22,19,0.0 +12364,32,32,5,0.0 +12364,17,39,19,0.0 +12364,27,43.9,19,0.0 +12364,5,21.35,3,0.0 +12364,24,4.5,23,0.0 +12364,34,14,40,0.0 +12364,51,53,24,0.0 +12364,62,49.3,21,0.0 +12364,70,15,13,0.0 +12364,58,13.25,45,0.0 +12364,64,33.25,12,0.0 +12364,46,12,9,0.0 +12364,6,25,45,0.0 +12364,18,62.5,42,0.0 +12364,76,18,28,0.0 +12364,2,19,34,0.0 +12364,28,45.6,46,0.0 +12364,71,21.5,22,0.0 +12364,65,21.05,22,0.0 +12364,35,18,27,0.0 +12364,63,43.9,45,0.0 +12364,14,23.25,26,0.0 +12364,73,15,2,0.0 +12364,10,31,34,0.0 +12364,1,18,19,0.0 +12364,59,55,34,0.0 +12364,12,38,15,0.0 +12364,9,97,3,0.0 +12364,54,7.45,19,0.0 +12364,22,21,31,0.0 +12364,67,14,46,0.0 +12364,39,18,29,0.0 +12364,68,12.5,11,0.0 +12364,49,20,45,0.0 +12364,29,123.79,43,0.0 +12364,19,9.2,36,0.0 +12364,66,17,8,0.0 +12364,3,10,41,0.0 +12364,21,10,46,0.0 +12364,26,31.23,27,0.0 +12364,40,18.4,30,0.0 +12364,16,17.45,4,0.0 +12364,72,34.8,50,0.0 +12364,11,21,43,0.0 +12364,47,9.5,18,0.0 +12364,45,9.5,32,0.0 +12364,75,7.75,28,0.0 +12364,25,14,5,0.0 +12364,57,19.5,18,0.0 +12364,44,19.45,10,0.0 +12364,74,10,46,0.0 +12364,60,34,25,0.0 +12364,48,12.75,40,0.0 +12364,52,7,4,0.0 +12364,33,2.5,27,0.0 +12364,53,32.8,15,0.0 +12364,43,46,16,0.0 +12364,31,12.5,10,0.0 +12364,30,25.89,14,0.0 +12365,18,62.5,15,0.0 +12365,39,18,12,0.0 +12365,13,6,22,0.0 +12365,8,40,12,0.0 +12365,35,18,24,0.0 +12365,43,46,8,0.0 +12365,38,263.5,37,0.0 +12365,68,12.5,27,0.0 +12365,11,21,49,0.0 +12365,54,7.45,27,0.0 +12365,62,49.3,47,0.0 +12365,66,17,34,0.0 +12365,77,13,50,0.0 +12365,64,33.25,9,0.0 +12365,57,19.5,47,0.0 +12365,42,14,48,0.0 +12365,63,43.9,8,0.0 +12365,17,39,29,0.0 +12365,44,19.45,42,0.0 +12365,5,21.35,3,0.0 +12365,9,97,27,0.0 +12365,72,34.8,2,0.0 +12365,37,26,40,0.0 +12365,75,7.75,50,0.0 +12365,47,9.5,25,0.0 +12365,46,12,33,0.0 +12365,53,32.8,3,0.0 +12365,20,81,50,0.0 +12365,59,55,21,0.0 +12365,25,14,33,0.0 +12365,26,31.23,43,0.0 +12365,29,123.79,7,0.0 +12365,45,9.5,31,0.0 +12365,33,2.5,23,0.0 +12365,56,38,11,0.0 +12365,10,31,1,0.0 +12365,23,9,25,0.0 +12365,16,17.45,16,0.0 +12365,58,13.25,50,0.0 +12365,28,45.6,21,0.0 +12365,22,21,20,0.0 +12365,51,53,15,0.0 +12365,2,19,32,0.0 +12365,67,14,37,0.0 +12365,27,43.9,27,0.0 +12365,40,18.4,44,0.0 +12365,21,10,20,0.0 +12365,3,10,47,0.0 +12366,41,9.65,23,0.0 +12366,74,10,31,0.0 +12366,7,30,2,0.0 +12366,51,53,39,0.0 +12366,4,22,26,0.0 +12366,63,43.9,31,0.0 +12366,55,24,33,0.0 +12366,10,31,41,0.0 +12366,22,21,19,0.0 +12366,44,19.45,43,0.0 +12366,73,15,33,0.0 +12366,16,17.45,43,0.0 +12366,18,62.5,11,0.0 +12366,76,18,38,0.0 +12366,72,34.8,38,0.0 +12366,34,14,34,0.0 +12366,43,46,8,0.0 +12366,21,10,5,0.0 +12366,40,18.4,9,0.0 +12366,5,21.35,15,0.0 +12366,53,32.8,19,0.0 +12366,67,14,30,0.0 +12366,48,12.75,36,0.0 +12366,46,12,27,0.0 +12366,69,36,7,0.0 +12366,23,9,35,0.0 +12366,64,33.25,10,0.0 +12366,1,18,47,0.0 +12366,24,4.5,3,0.0 +12366,13,6,11,0.0 +12366,28,45.6,36,0.0 +12366,31,12.5,37,0.0 +12366,15,15.5,47,0.0 +12366,32,32,18,0.0 +12366,2,19,39,0.0 +12366,71,21.5,8,0.0 +12366,30,25.89,25,0.0 +12366,3,10,35,0.0 +12366,59,55,7,0.0 +12366,37,26,2,0.0 +12366,45,9.5,50,0.0 +12366,66,17,46,0.0 +12366,50,16.25,41,0.0 +12366,54,7.45,44,0.0 +12366,17,39,27,0.0 +12366,25,14,24,0.0 +12366,35,18,15,0.0 +12366,77,13,35,0.0 +12366,61,28.5,34,0.0 +12366,39,18,28,0.0 +12366,36,19,11,0.0 +12366,33,2.5,5,0.0 +12366,38,263.5,40,0.0 +12366,27,43.9,41,0.0 +12366,8,40,15,0.0 +12366,57,19.5,47,0.0 +12366,6,25,23,0.0 +12366,65,21.05,24,0.0 +12366,26,31.23,26,0.0 +12366,58,13.25,12,0.0 +12366,42,14,46,0.0 +12366,14,23.25,26,0.0 +12366,70,15,17,0.0 +12366,20,81,25,0.0 +12366,29,123.79,21,0.0 +12366,68,12.5,39,0.0 +12366,56,38,14,0.0 +12366,49,20,11,0.0 +12366,9,97,4,0.0 +12366,62,49.3,27,0.0 +12366,52,7,44,0.0 +12366,12,38,30,0.0 +12366,11,21,49,0.0 +12366,60,34,19,0.0 +12366,75,7.75,31,0.0 +12367,1,18,36,0.0 +12367,50,16.25,44,0.0 +12367,42,14,36,0.0 +12367,13,6,21,0.0 +12367,3,10,24,0.0 +12367,52,7,18,0.0 +12367,56,38,12,0.0 +12367,15,15.5,14,0.0 +12367,49,20,46,0.0 +12367,76,18,30,0.0 +12367,31,12.5,27,0.0 +12367,19,9.2,11,0.0 +12367,64,33.25,44,0.0 +12367,54,7.45,7,0.0 +12368,47,9.5,21,0.0 +12368,54,7.45,48,0.0 +12368,46,12,44,0.0 +12368,30,25.89,38,0.0 +12368,33,2.5,24,0.0 +12368,65,21.05,45,0.0 +12368,56,38,43,0.0 +12368,13,6,22,0.0 +12368,29,123.79,11,0.0 +12368,42,14,33,0.0 +12368,20,81,36,0.0 +12368,49,20,44,0.0 +12368,51,53,12,0.0 +12368,59,55,1,0.0 +12368,23,9,19,0.0 +12368,69,36,46,0.0 +12368,31,12.5,12,0.0 +12368,60,34,46,0.0 +12368,70,15,34,0.0 +12368,18,62.5,15,0.0 +12368,9,97,46,0.0 +12368,76,18,21,0.0 +12368,3,10,18,0.0 +12368,55,24,29,0.0 +12368,61,28.5,12,0.0 +12368,27,43.9,27,0.0 +12368,62,49.3,5,0.0 +12368,7,30,44,0.0 +12368,53,32.8,21,0.0 +12368,40,18.4,12,0.0 +12368,39,18,28,0.0 +12368,37,26,42,0.0 +12368,75,7.75,26,0.0 +12368,38,263.5,43,0.0 +12368,28,45.6,13,0.0 +12368,71,21.5,11,0.0 +12368,17,39,46,0.0 +12368,58,13.25,9,0.0 +12368,57,19.5,42,0.0 +12368,14,23.25,35,0.0 +12368,64,33.25,36,0.0 +12368,45,9.5,37,0.0 +12368,5,21.35,48,0.0 +12368,16,17.45,2,0.0 +12368,50,16.25,11,0.0 +12368,2,19,20,0.0 +12368,41,9.65,39,0.0 +12368,66,17,9,0.0 +12368,34,14,42,0.0 +12368,67,14,49,0.0 +12368,68,12.5,28,0.0 +12368,74,10,37,0.0 +12368,22,21,33,0.0 +12368,12,38,25,0.0 +12368,25,14,18,0.0 +12368,72,34.8,22,0.0 +12368,11,21,14,0.0 +12368,48,12.75,47,0.0 +12369,60,34,38,0.0 +12369,59,55,42,0.0 +12369,22,21,47,0.0 +12369,42,14,50,0.0 +12369,29,123.79,19,0.0 +12369,31,12.5,42,0.0 +12369,58,13.25,22,0.0 +12369,13,6,1,0.0 +12369,48,12.75,41,0.0 +12369,20,81,21,0.0 +12369,61,28.5,13,0.0 +12369,67,14,38,0.0 +12369,17,39,26,0.0 +12369,32,32,3,0.0 +12369,55,24,36,0.0 +12369,63,43.9,6,0.0 +12369,4,22,1,0.0 +12369,15,15.5,10,0.0 +12369,53,32.8,5,0.0 +12369,23,9,37,0.0 +12369,1,18,13,0.0 +12369,3,10,26,0.0 +12369,8,40,31,0.0 +12369,35,18,10,0.0 +12369,30,25.89,42,0.0 +12369,74,10,50,0.0 +12369,27,43.9,20,0.0 +12369,19,9.2,16,0.0 +12369,49,20,20,0.0 +12369,52,7,32,0.0 +12369,38,263.5,21,0.0 +12369,57,19.5,26,0.0 +12369,39,18,35,0.0 +12369,47,9.5,21,0.0 +12369,14,23.25,35,0.0 +12369,72,34.8,43,0.0 +12369,76,18,8,0.0 +12369,75,7.75,50,0.0 +12369,26,31.23,19,0.0 +12369,65,21.05,13,0.0 +12369,21,10,33,0.0 +12369,69,36,7,0.0 +12369,68,12.5,13,0.0 +12369,16,17.45,30,0.0 +12369,37,26,29,0.0 +12369,33,2.5,47,0.0 +12369,28,45.6,40,0.0 +12369,18,62.5,19,0.0 +12369,2,19,18,0.0 +12369,12,38,34,0.0 +12369,45,9.5,47,0.0 +12369,77,13,32,0.0 +12369,62,49.3,29,0.0 +12369,7,30,6,0.0 +12369,36,19,7,0.0 +12369,5,21.35,17,0.0 +12369,6,25,19,0.0 +12369,73,15,8,0.0 +12369,10,31,50,0.0 +12369,54,7.45,14,0.0 +12369,71,21.5,50,0.0 +12369,40,18.4,6,0.0 +12369,51,53,23,0.0 +12369,46,12,4,0.0 +12369,66,17,33,0.0 +12369,11,21,33,0.0 +12369,9,97,16,0.0 +12369,64,33.25,20,0.0 +12369,50,16.25,28,0.0 +12369,70,15,38,0.0 +12369,56,38,49,0.0 +12369,41,9.65,45,0.0 +12369,43,46,44,0.0 +12370,69,36,5,0.0 +12370,58,13.25,41,0.0 +12370,59,55,7,0.0 +12370,13,6,8,0.0 +12370,57,19.5,32,0.0 +12370,63,43.9,33,0.0 +12370,48,12.75,13,0.0 +12370,35,18,35,0.0 +12370,16,17.45,5,0.0 +12370,18,62.5,30,0.0 +12370,32,32,7,0.0 +12370,29,123.79,36,0.0 +12370,22,21,29,0.0 +12370,14,23.25,42,0.0 +12370,7,30,25,0.0 +12370,4,22,20,0.0 +12370,75,7.75,17,0.0 +12370,10,31,8,0.0 +12370,17,39,48,0.0 +12370,53,32.8,47,0.0 +12370,45,9.5,7,0.0 +12370,24,4.5,47,0.0 +12370,2,19,13,0.0 +12370,51,53,22,0.0 +12370,46,12,24,0.0 +12370,73,15,46,0.0 +12370,8,40,44,0.0 +12370,34,14,47,0.0 +12370,33,2.5,29,0.0 +12370,41,9.65,30,0.0 +12370,55,24,33,0.0 +12370,77,13,38,0.0 +12370,15,15.5,9,0.0 +12370,43,46,47,0.0 +12370,11,21,22,0.0 +12370,76,18,9,0.0 +12370,44,19.45,36,0.0 +12370,64,33.25,32,0.0 +12370,23,9,46,0.0 +12370,70,15,24,0.0 +12370,5,21.35,4,0.0 +12370,9,97,39,0.0 +12370,1,18,40,0.0 +12370,52,7,8,0.0 +12370,65,21.05,29,0.0 +12370,28,45.6,23,0.0 +12370,21,10,27,0.0 +12370,72,34.8,49,0.0 +12370,54,7.45,43,0.0 +12370,60,34,15,0.0 +12370,40,18.4,26,0.0 +12370,56,38,49,0.0 +12370,62,49.3,38,0.0 +12370,20,81,43,0.0 +12370,39,18,9,0.0 +12370,19,9.2,42,0.0 +12370,36,19,34,0.0 +12371,39,18,24,0.0 +12371,41,9.65,1,0.0 +12371,36,19,3,0.0 +12371,30,25.89,1,0.0 +12371,28,45.6,22,0.0 +12371,56,38,43,0.0 +12371,20,81,35,0.0 +12371,5,21.35,18,0.0 +12371,16,17.45,14,0.0 +12371,57,19.5,47,0.0 +12371,14,23.25,4,0.0 +12371,51,53,31,0.0 +12371,68,12.5,11,0.0 +12371,55,24,36,0.0 +12371,34,14,25,0.0 +12371,63,43.9,23,0.0 +12371,43,46,16,0.0 +12371,60,34,35,0.0 +12371,46,12,35,0.0 +12371,3,10,38,0.0 +12371,31,12.5,10,0.0 +12371,38,263.5,15,0.0 +12371,52,7,1,0.0 +12371,58,13.25,10,0.0 +12371,21,10,39,0.0 +12371,13,6,32,0.0 +12371,9,97,21,0.0 +12371,15,15.5,31,0.0 +12371,49,20,8,0.0 +12371,23,9,16,0.0 +12371,32,32,25,0.0 +12371,18,62.5,23,0.0 +12371,61,28.5,19,0.0 +12371,19,9.2,1,0.0 +12371,54,7.45,14,0.0 +12371,44,19.45,19,0.0 +12371,74,10,41,0.0 +12371,72,34.8,38,0.0 +12371,8,40,10,0.0 +12371,73,15,43,0.0 +12371,53,32.8,42,0.0 +12371,62,49.3,41,0.0 +12371,69,36,18,0.0 +12371,67,14,8,0.0 +12371,6,25,46,0.0 +12371,77,13,26,0.0 +12371,76,18,45,0.0 +12371,12,38,4,0.0 +12371,66,17,13,0.0 +12371,64,33.25,14,0.0 +12371,17,39,44,0.0 +12371,29,123.79,17,0.0 +12371,4,22,30,0.0 +12371,37,26,35,0.0 +12371,70,15,45,0.0 +12371,2,19,29,0.0 +12371,35,18,27,0.0 +12371,48,12.75,39,0.0 +12371,1,18,29,0.0 +12371,71,21.5,8,0.0 +12371,25,14,9,0.0 +12371,24,4.5,21,0.0 +12371,22,21,38,0.0 +12371,65,21.05,46,0.0 +12371,40,18.4,38,0.0 +12371,26,31.23,16,0.0 +12371,33,2.5,41,0.0 +12371,75,7.75,1,0.0 +12371,10,31,42,0.0 +12371,47,9.5,20,0.0 +12372,52,7,7,0.0 +12372,51,53,46,0.0 +12372,44,19.45,23,0.0 +12372,12,38,2,0.0 +12372,74,10,22,0.0 +12372,7,30,45,0.0 +12372,36,19,10,0.0 +12372,25,14,15,0.0 +12372,71,21.5,6,0.0 +12372,66,17,46,0.0 +12372,56,38,19,0.0 +12372,17,39,45,0.0 +12372,15,15.5,16,0.0 +12372,65,21.05,33,0.0 +12372,37,26,12,0.0 +12372,75,7.75,2,0.0 +12372,38,263.5,30,0.0 +12372,10,31,20,0.0 +12372,14,23.25,48,0.0 +12372,20,81,10,0.0 +12372,40,18.4,30,0.0 +12372,45,9.5,27,0.0 +12372,42,14,39,0.0 +12372,19,9.2,38,0.0 +12372,5,21.35,37,0.0 +12372,57,19.5,7,0.0 +12372,60,34,36,0.0 +12372,49,20,17,0.0 +12372,59,55,20,0.0 +12372,70,15,43,0.0 +12373,77,13,33,0.0 +12373,71,21.5,47,0.0 +12373,52,7,6,0.0 +12373,66,17,41,0.0 +12373,51,53,5,0.0 +12373,30,25.89,31,0.0 +12373,62,49.3,48,0.0 +12373,11,21,13,0.0 +12373,49,20,18,0.0 +12373,76,18,47,0.0 +12373,68,12.5,26,0.0 +12373,54,7.45,9,0.0 +12373,34,14,27,0.0 +12373,1,18,13,0.0 +12373,50,16.25,20,0.0 +12373,4,22,15,0.0 +12373,31,12.5,19,0.0 +12373,43,46,23,0.0 +12373,47,9.5,42,0.0 +12373,23,9,40,0.0 +12373,60,34,12,0.0 +12373,16,17.45,17,0.0 +12373,33,2.5,9,0.0 +12373,13,6,13,0.0 +12373,37,26,40,0.0 +12373,21,10,11,0.0 +12373,36,19,12,0.0 +12373,14,23.25,43,0.0 +12373,63,43.9,14,0.0 +12373,18,62.5,45,0.0 +12373,75,7.75,11,0.0 +12373,35,18,41,0.0 +12373,25,14,31,0.0 +12373,42,14,27,0.0 +12373,8,40,40,0.0 +12373,7,30,44,0.0 +12373,29,123.79,37,0.0 +12373,32,32,3,0.0 +12373,67,14,22,0.0 +12373,72,34.8,11,0.0 +12373,61,28.5,40,0.0 +12373,6,25,27,0.0 +12373,45,9.5,10,0.0 +12373,19,9.2,43,0.0 +12373,12,38,30,0.0 +12373,28,45.6,1,0.0 +12373,20,81,29,0.0 +12373,38,263.5,7,0.0 +12373,15,15.5,40,0.0 +12373,3,10,12,0.0 +12373,57,19.5,40,0.0 +12373,40,18.4,46,0.0 +12373,41,9.65,11,0.0 +12373,64,33.25,5,0.0 +12373,17,39,24,0.0 +12373,10,31,45,0.0 +12373,58,13.25,23,0.0 +12373,56,38,44,0.0 +12374,68,12.5,5,0.0 +12374,55,24,1,0.0 +12374,52,7,28,0.0 +12374,6,25,42,0.0 +12374,49,20,37,0.0 +12374,35,18,25,0.0 +12374,62,49.3,30,0.0 +12374,19,9.2,18,0.0 +12374,15,15.5,4,0.0 +12374,51,53,39,0.0 +12374,21,10,28,0.0 +12374,76,18,29,0.0 +12374,56,38,28,0.0 +12374,16,17.45,40,0.0 +12374,31,12.5,17,0.0 +12374,60,34,29,0.0 +12374,59,55,46,0.0 +12374,23,9,20,0.0 +12374,38,263.5,48,0.0 +12374,22,21,21,0.0 +12374,28,45.6,12,0.0 +12374,8,40,38,0.0 +12374,64,33.25,13,0.0 +12374,37,26,3,0.0 +12374,50,16.25,12,0.0 +12374,53,32.8,45,0.0 +12374,7,30,48,0.0 +12374,34,14,49,0.0 +12374,14,23.25,21,0.0 +12374,70,15,35,0.0 +12374,65,21.05,36,0.0 +12374,40,18.4,15,0.0 +12374,77,13,29,0.0 +12374,54,7.45,19,0.0 +12374,36,19,34,0.0 +12374,43,46,44,0.0 +12374,9,97,30,0.0 +12374,69,36,1,0.0 +12374,30,25.89,27,0.0 +12374,74,10,35,0.0 +12374,57,19.5,36,0.0 +12374,39,18,4,0.0 +12374,48,12.75,47,0.0 +12374,27,43.9,40,0.0 +12374,17,39,28,0.0 +12374,12,38,10,0.0 +12374,41,9.65,10,0.0 +12374,18,62.5,31,0.0 +12374,13,6,1,0.0 +12374,29,123.79,1,0.0 +12374,33,2.5,45,0.0 +12374,75,7.75,40,0.0 +12374,58,13.25,31,0.0 +12374,66,17,2,0.0 +12374,4,22,14,0.0 +12374,5,21.35,32,0.0 +12374,44,19.45,32,0.0 +12374,10,31,9,0.0 +12374,42,14,10,0.0 +12374,25,14,29,0.0 +12374,71,21.5,42,0.0 +12374,26,31.23,17,0.0 +12375,29,123.79,39,0.0 +12375,56,38,25,0.0 +12375,18,62.5,1,0.0 +12375,70,15,2,0.0 +12375,25,14,46,0.0 +12375,27,43.9,40,0.0 +12375,33,2.5,39,0.0 +12375,55,24,32,0.0 +12375,13,6,49,0.0 +12375,57,19.5,1,0.0 +12375,38,263.5,26,0.0 +12376,20,81,36,0.0 +12376,27,43.9,21,0.0 +12376,18,62.5,2,0.0 +12376,76,18,49,0.0 +12376,21,10,22,0.0 +12376,49,20,28,0.0 +12376,8,40,7,0.0 +12376,23,9,14,0.0 +12376,11,21,17,0.0 +12376,66,17,31,0.0 +12376,55,24,43,0.0 +12376,30,25.89,3,0.0 +12376,77,13,48,0.0 +12376,32,32,15,0.0 +12376,57,19.5,43,0.0 +12376,53,32.8,14,0.0 +12376,3,10,10,0.0 +12376,69,36,42,0.0 +12376,28,45.6,34,0.0 +12376,2,19,4,0.0 +12376,24,4.5,38,0.0 +12376,42,14,11,0.0 +12376,1,18,16,0.0 +12377,20,81,40,0.0 +12377,26,31.23,39,0.0 +12377,75,7.75,6,0.0 +12377,32,32,5,0.0 +12377,22,21,17,0.0 +12377,25,14,13,0.0 +12377,29,123.79,27,0.0 +12377,35,18,38,0.0 +12377,11,21,17,0.0 +12377,65,21.05,1,0.0 +12377,47,9.5,26,0.0 +12377,23,9,18,0.0 +12377,62,49.3,15,0.0 +12377,43,46,3,0.0 +12377,54,7.45,9,0.0 +12377,61,28.5,39,0.0 +12377,55,24,34,0.0 +12377,53,32.8,3,0.0 +12377,69,36,31,0.0 +12377,52,7,30,0.0 +12377,63,43.9,2,0.0 +12377,16,17.45,42,0.0 +12377,57,19.5,13,0.0 +12377,12,38,20,0.0 +12377,38,263.5,3,0.0 +12377,15,15.5,5,0.0 +12377,66,17,49,0.0 +12377,51,53,31,0.0 +12377,33,2.5,40,0.0 +12377,56,38,35,0.0 +12377,39,18,37,0.0 +12377,24,4.5,48,0.0 +12377,41,9.65,39,0.0 +12377,37,26,28,0.0 +12377,40,18.4,30,0.0 +12377,17,39,1,0.0 +12377,1,18,40,0.0 +12377,50,16.25,47,0.0 +12377,76,18,25,0.0 +12377,44,19.45,15,0.0 +12377,59,55,43,0.0 +12377,31,12.5,5,0.0 +12377,60,34,3,0.0 +12377,58,13.25,10,0.0 +12377,42,14,8,0.0 +12377,67,14,8,0.0 +12377,49,20,15,0.0 +12377,64,33.25,38,0.0 +12378,53,32.8,26,0.0 +12378,21,10,37,0.0 +12378,20,81,30,0.0 +12378,22,21,35,0.0 +12378,27,43.9,42,0.0 +12378,3,10,46,0.0 +12378,40,18.4,33,0.0 +12378,5,21.35,48,0.0 +12378,58,13.25,45,0.0 +12378,41,9.65,36,0.0 +12378,7,30,43,0.0 +12378,60,34,37,0.0 +12378,65,21.05,7,0.0 +12378,42,14,25,0.0 +12378,47,9.5,27,0.0 +12378,16,17.45,24,0.0 +12378,36,19,12,0.0 +12378,37,26,30,0.0 +12378,18,62.5,2,0.0 +12378,64,33.25,46,0.0 +12378,67,14,7,0.0 +12378,50,16.25,19,0.0 +12378,4,22,25,0.0 +12378,35,18,44,0.0 +12378,77,13,15,0.0 +12378,68,12.5,27,0.0 +12378,63,43.9,3,0.0 +12378,38,263.5,48,0.0 +12378,61,28.5,30,0.0 +12378,26,31.23,28,0.0 +12378,17,39,44,0.0 +12378,12,38,35,0.0 +12378,24,4.5,37,0.0 +12378,44,19.45,49,0.0 +12378,11,21,23,0.0 +12378,31,12.5,33,0.0 +12378,9,97,48,0.0 +12378,66,17,5,0.0 +12378,15,15.5,37,0.0 +12378,51,53,23,0.0 +12378,45,9.5,38,0.0 +12378,62,49.3,34,0.0 +12378,25,14,32,0.0 +12378,75,7.75,37,0.0 +12378,76,18,3,0.0 +12378,28,45.6,14,0.0 +12378,32,32,50,0.0 +12378,69,36,12,0.0 +12378,59,55,47,0.0 +12378,73,15,44,0.0 +12378,6,25,4,0.0 +12378,56,38,48,0.0 +12378,33,2.5,8,0.0 +12379,55,24,8,0.0 +12379,74,10,28,0.0 +12379,1,18,18,0.0 +12379,11,21,20,0.0 +12379,45,9.5,24,0.0 +12379,47,9.5,44,0.0 +12379,10,31,4,0.0 +12379,37,26,17,0.0 +12379,63,43.9,39,0.0 +12379,72,34.8,4,0.0 +12379,68,12.5,49,0.0 +12379,51,53,15,0.0 +12379,8,40,35,0.0 +12379,38,263.5,48,0.0 +12379,73,15,35,0.0 +12379,61,28.5,15,0.0 +12379,67,14,29,0.0 +12379,35,18,13,0.0 +12379,40,18.4,40,0.0 +12379,56,38,23,0.0 +12379,66,17,3,0.0 +12379,46,12,40,0.0 +12379,19,9.2,19,0.0 +12379,25,14,35,0.0 +12379,14,23.25,10,0.0 +12379,54,7.45,35,0.0 +12379,21,10,49,0.0 +12379,77,13,7,0.0 +12379,62,49.3,46,0.0 +12379,13,6,29,0.0 +12379,29,123.79,19,0.0 +12379,27,43.9,20,0.0 +12379,58,13.25,38,0.0 +12379,12,38,34,0.0 +12379,34,14,39,0.0 +12379,16,17.45,47,0.0 +12379,22,21,42,0.0 +12380,63,43.9,8,0.0 +12380,76,18,48,0.0 +12380,28,45.6,35,0.0 +12380,39,18,2,0.0 +12380,56,38,48,0.0 +12380,49,20,12,0.0 +12380,68,12.5,45,0.0 +12380,8,40,34,0.0 +12380,27,43.9,38,0.0 +12380,35,18,22,0.0 +12380,69,36,31,0.0 +12380,6,25,34,0.0 +12380,15,15.5,13,0.0 +12380,2,19,44,0.0 +12380,18,62.5,16,0.0 +12380,55,24,17,0.0 +12380,58,13.25,15,0.0 +12380,67,14,43,0.0 +12380,47,9.5,12,0.0 +12380,54,7.45,37,0.0 +12380,53,32.8,24,0.0 +12380,34,14,26,0.0 +12380,31,12.5,31,0.0 +12380,45,9.5,27,0.0 +12380,4,22,19,0.0 +12380,32,32,27,0.0 +12380,20,81,36,0.0 +12380,61,28.5,25,0.0 +12380,43,46,39,0.0 +12380,65,21.05,35,0.0 +12380,60,34,3,0.0 +12380,30,25.89,35,0.0 +12381,72,34.8,12,0.0 +12381,32,32,13,0.0 +12381,70,15,15,0.0 +12381,54,7.45,20,0.0 +12381,19,9.2,13,0.0 +12381,43,46,15,0.0 +12381,18,62.5,8,0.0 +12381,11,21,46,0.0 +12381,77,13,15,0.0 +12381,30,25.89,50,0.0 +12381,65,21.05,1,0.0 +12381,75,7.75,36,0.0 +12381,56,38,29,0.0 +12381,8,40,1,0.0 +12381,39,18,36,0.0 +12381,12,38,19,0.0 +12381,55,24,27,0.0 +12381,5,21.35,10,0.0 +12381,59,55,11,0.0 +12381,64,33.25,33,0.0 +12381,62,49.3,37,0.0 +12381,10,31,50,0.0 +12381,34,14,45,0.0 +12381,27,43.9,20,0.0 +12381,68,12.5,38,0.0 +12381,22,21,17,0.0 +12381,58,13.25,49,0.0 +12381,9,97,34,0.0 +12381,51,53,32,0.0 +12381,6,25,6,0.0 +12381,36,19,8,0.0 +12381,63,43.9,26,0.0 +12381,52,7,21,0.0 +12381,40,18.4,28,0.0 +12381,15,15.5,33,0.0 +12381,13,6,16,0.0 +12381,31,12.5,10,0.0 +12381,44,19.45,40,0.0 +12381,74,10,41,0.0 +12381,69,36,40,0.0 +12381,1,18,3,0.0 +12381,47,9.5,5,0.0 +12381,37,26,27,0.0 +12381,67,14,32,0.0 +12381,46,12,43,0.0 +12381,33,2.5,23,0.0 +12381,42,14,34,0.0 +12381,16,17.45,50,0.0 +12381,21,10,10,0.0 +12381,17,39,25,0.0 +12381,20,81,42,0.0 +12381,29,123.79,37,0.0 +12381,28,45.6,26,0.0 +12381,25,14,33,0.0 +12381,23,9,32,0.0 +12381,38,263.5,16,0.0 +12381,48,12.75,48,0.0 +12381,14,23.25,30,0.0 +12381,2,19,45,0.0 +12381,71,21.5,20,0.0 +12382,50,16.25,24,0.0 +12382,7,30,43,0.0 +12382,41,9.65,44,0.0 +12382,58,13.25,10,0.0 +12382,55,24,9,0.0 +12382,16,17.45,10,0.0 +12382,13,6,20,0.0 +12382,68,12.5,8,0.0 +12382,15,15.5,22,0.0 +12382,18,62.5,2,0.0 +12382,35,18,42,0.0 +12382,26,31.23,23,0.0 +12382,60,34,42,0.0 +12382,25,14,47,0.0 +12382,71,21.5,21,0.0 +12382,34,14,2,0.0 +12382,22,21,13,0.0 +12382,48,12.75,24,0.0 +12382,61,28.5,42,0.0 +12382,23,9,13,0.0 +12382,72,34.8,42,0.0 +12382,1,18,13,0.0 +12382,59,55,33,0.0 +12382,14,23.25,26,0.0 +12382,21,10,21,0.0 +12382,31,12.5,27,0.0 +12382,3,10,9,0.0 +12382,65,21.05,40,0.0 +12382,67,14,20,0.0 +12382,62,49.3,7,0.0 +12382,57,19.5,8,0.0 +12382,10,31,16,0.0 +12382,27,43.9,27,0.0 +12382,64,33.25,26,0.0 +12383,14,23.25,30,0.0 +12383,22,21,6,0.0 +12383,40,18.4,31,0.0 +12383,43,46,29,0.0 +12383,55,24,41,0.0 +12383,27,43.9,45,0.0 +12383,10,31,19,0.0 +12383,62,49.3,32,0.0 +12383,33,2.5,30,0.0 +12383,41,9.65,48,0.0 +12383,25,14,38,0.0 +12384,16,17.45,13,0.0 +12384,46,12,14,0.0 +12384,64,33.25,26,0.0 +12384,24,4.5,47,0.0 +12384,12,38,7,0.0 +12384,30,25.89,9,0.0 +12384,19,9.2,14,0.0 +12384,66,17,7,0.0 +12384,57,19.5,18,0.0 +12384,18,62.5,29,0.0 +12384,26,31.23,39,0.0 +12384,20,81,14,0.0 +12384,65,21.05,22,0.0 +12384,76,18,6,0.0 +12384,67,14,26,0.0 +12384,40,18.4,19,0.0 +12384,41,9.65,38,0.0 +12384,25,14,38,0.0 +12384,14,23.25,23,0.0 +12385,53,32.8,34,0.0 +12385,5,21.35,12,0.0 +12385,41,9.65,16,0.0 +12385,45,9.5,37,0.0 +12385,71,21.5,21,0.0 +12385,60,34,49,0.0 +12385,19,9.2,35,0.0 +12385,17,39,8,0.0 +12385,30,25.89,26,0.0 +12385,61,28.5,29,0.0 +12385,39,18,35,0.0 +12385,38,263.5,13,0.0 +12385,9,97,17,0.0 +12385,54,7.45,47,0.0 +12385,50,16.25,2,0.0 +12385,12,38,14,0.0 +12385,23,9,26,0.0 +12385,22,21,8,0.0 +12385,62,49.3,39,0.0 +12385,3,10,4,0.0 +12385,46,12,2,0.0 +12385,16,17.45,7,0.0 +12385,74,10,48,0.0 +12385,35,18,10,0.0 +12385,47,9.5,31,0.0 +12385,63,43.9,21,0.0 +12385,75,7.75,20,0.0 +12385,43,46,46,0.0 +12385,69,36,4,0.0 +12385,73,15,21,0.0 +12385,27,43.9,44,0.0 +12385,36,19,28,0.0 +12385,37,26,10,0.0 +12385,48,12.75,2,0.0 +12385,58,13.25,5,0.0 +12385,40,18.4,34,0.0 +12386,54,7.45,42,0.0 +12386,68,12.5,45,0.0 +12386,11,21,50,0.0 +12386,49,20,6,0.0 +12386,12,38,44,0.0 +12386,47,9.5,18,0.0 +12386,53,32.8,19,0.0 +12386,76,18,32,0.0 +12386,48,12.75,14,0.0 +12386,35,18,39,0.0 +12386,30,25.89,50,0.0 +12386,75,7.75,30,0.0 +12386,37,26,37,0.0 +12387,3,10,32,0.0 +12387,28,45.6,33,0.0 +12387,20,81,4,0.0 +12387,60,34,16,0.0 +12387,66,17,7,0.0 +12387,64,33.25,9,0.0 +12387,4,22,35,0.0 +12387,45,9.5,2,0.0 +12387,67,14,14,0.0 +12387,21,10,40,0.0 +12387,25,14,21,0.0 +12387,37,26,15,0.0 +12387,17,39,22,0.0 +12387,7,30,34,0.0 +12387,23,9,37,0.0 +12387,72,34.8,38,0.0 +12387,11,21,31,0.0 +12387,69,36,18,0.0 +12388,18,62.5,37,0.0 +12388,70,15,29,0.0 +12388,33,2.5,23,0.0 +12388,66,17,32,0.0 +12388,12,38,37,0.0 +12388,9,97,4,0.0 +12388,37,26,30,0.0 +12388,53,32.8,22,0.0 +12388,46,12,34,0.0 +12388,25,14,28,0.0 +12388,2,19,41,0.0 +12388,19,9.2,45,0.0 +12388,20,81,45,0.0 +12388,15,15.5,42,0.0 +12388,34,14,31,0.0 +12388,67,14,11,0.0 +12388,24,4.5,38,0.0 +12388,3,10,46,0.0 +12388,48,12.75,44,0.0 +12388,4,22,5,0.0 +12388,23,9,3,0.0 +12388,21,10,38,0.0 +12388,11,21,19,0.0 +12388,16,17.45,41,0.0 +12388,17,39,33,0.0 +12388,60,34,13,0.0 +12388,74,10,13,0.0 +12388,22,21,14,0.0 +12388,1,18,31,0.0 +12388,47,9.5,49,0.0 +12388,45,9.5,17,0.0 +12388,55,24,32,0.0 +12388,41,9.65,12,0.0 +12388,32,32,11,0.0 +12388,38,263.5,28,0.0 +12388,57,19.5,12,0.0 +12388,6,25,49,0.0 +12388,68,12.5,43,0.0 +12388,63,43.9,6,0.0 +12388,58,13.25,47,0.0 +12388,13,6,17,0.0 +12388,77,13,41,0.0 +12388,73,15,11,0.0 +12388,27,43.9,50,0.0 +12388,26,31.23,27,0.0 +12388,51,53,26,0.0 +12388,56,38,17,0.0 +12388,62,49.3,22,0.0 +12388,75,7.75,16,0.0 +12388,49,20,20,0.0 +12388,7,30,50,0.0 +12388,30,25.89,2,0.0 +12388,54,7.45,15,0.0 +12388,69,36,17,0.0 +12388,10,31,8,0.0 +12388,52,7,23,0.0 +12388,71,21.5,48,0.0 +12388,76,18,38,0.0 +12388,28,45.6,3,0.0 +12388,31,12.5,3,0.0 +12388,61,28.5,36,0.0 +12388,44,19.45,10,0.0 +12388,43,46,8,0.0 +12388,72,34.8,45,0.0 +12388,50,16.25,44,0.0 +12388,35,18,33,0.0 +12388,36,19,33,0.0 +12388,29,123.79,31,0.0 +12388,14,23.25,38,0.0 +12388,39,18,28,0.0 +12388,64,33.25,19,0.0 +12388,65,21.05,22,0.0 +12388,42,14,25,0.0 +12388,40,18.4,27,0.0 +12388,59,55,48,0.0 +12388,5,21.35,31,0.0 +12389,73,15,50,0.0 +12389,74,10,29,0.0 +12389,45,9.5,42,0.0 +12389,44,19.45,32,0.0 +12389,37,26,44,0.0 +12389,58,13.25,11,0.0 +12389,27,43.9,50,0.0 +12389,67,14,28,0.0 +12389,8,40,18,0.0 +12389,10,31,45,0.0 +12389,31,12.5,29,0.0 +12389,3,10,34,0.0 +12389,43,46,14,0.0 +12389,11,21,48,0.0 +12389,65,21.05,40,0.0 +12389,22,21,25,0.0 +12389,59,55,12,0.0 +12389,2,19,18,0.0 +12389,64,33.25,30,0.0 +12389,30,25.89,24,0.0 +12389,28,45.6,4,0.0 +12389,48,12.75,32,0.0 +12389,66,17,10,0.0 +12389,52,7,30,0.0 +12389,15,15.5,12,0.0 +12389,47,9.5,37,0.0 +12389,18,62.5,11,0.0 +12389,61,28.5,49,0.0 +12389,70,15,2,0.0 +12389,40,18.4,7,0.0 +12389,1,18,4,0.0 +12389,20,81,28,0.0 +12389,36,19,42,0.0 +12389,26,31.23,43,0.0 +12389,46,12,33,0.0 +12389,51,53,13,0.0 +12389,34,14,37,0.0 +12389,39,18,45,0.0 +12389,57,19.5,2,0.0 +12389,6,25,12,0.0 +12389,55,24,47,0.0 +12389,56,38,14,0.0 +12389,21,10,5,0.0 +12389,62,49.3,15,0.0 +12389,60,34,47,0.0 +12389,5,21.35,21,0.0 +12389,72,34.8,18,0.0 +12389,29,123.79,8,0.0 +12389,12,38,12,0.0 +12389,33,2.5,18,0.0 +12389,76,18,22,0.0 +12389,41,9.65,8,0.0 +12389,49,20,7,0.0 +12389,42,14,17,0.0 +12389,63,43.9,45,0.0 +12389,13,6,19,0.0 +12389,35,18,32,0.0 +12389,38,263.5,33,0.0 +12389,50,16.25,41,0.0 +12389,68,12.5,48,0.0 +12389,23,9,7,0.0 +12389,75,7.75,22,0.0 +12389,19,9.2,38,0.0 +12389,32,32,49,0.0 +12389,4,22,21,0.0 +12389,53,32.8,37,0.0 +12389,69,36,44,0.0 +12389,16,17.45,12,0.0 +12389,71,21.5,21,0.0 +12389,77,13,46,0.0 +12389,17,39,22,0.0 +12389,24,4.5,6,0.0 +12389,25,14,8,0.0 +12389,9,97,13,0.0 +12389,54,7.45,20,0.0 +12390,57,19.5,31,0.0 +12390,47,9.5,42,0.0 +12390,64,33.25,39,0.0 +12390,66,17,7,0.0 +12390,6,25,40,0.0 +12390,33,2.5,8,0.0 +12390,16,17.45,49,0.0 +12390,3,10,19,0.0 +12390,21,10,26,0.0 +12390,22,21,5,0.0 +12390,77,13,41,0.0 +12390,20,81,6,0.0 +12390,44,19.45,11,0.0 +12390,75,7.75,19,0.0 +12390,26,31.23,39,0.0 +12390,69,36,33,0.0 +12390,45,9.5,49,0.0 +12390,18,62.5,28,0.0 +12390,35,18,18,0.0 +12390,43,46,19,0.0 +12390,71,21.5,20,0.0 +12390,63,43.9,3,0.0 +12390,27,43.9,47,0.0 +12390,38,263.5,32,0.0 +12390,53,32.8,39,0.0 +12390,24,4.5,39,0.0 +12390,5,21.35,5,0.0 +12390,34,14,29,0.0 +12390,76,18,1,0.0 +12390,12,38,15,0.0 +12390,36,19,38,0.0 +12390,70,15,17,0.0 +12390,62,49.3,35,0.0 +12390,40,18.4,19,0.0 +12390,74,10,6,0.0 +12390,29,123.79,20,0.0 +12390,37,26,5,0.0 +12390,8,40,41,0.0 +12390,72,34.8,30,0.0 +12390,41,9.65,24,0.0 +12390,73,15,8,0.0 +12390,59,55,1,0.0 +12390,19,9.2,24,0.0 +12390,55,24,10,0.0 +12390,23,9,19,0.0 +12390,17,39,49,0.0 +12390,46,12,7,0.0 +12390,10,31,49,0.0 +12390,61,28.5,41,0.0 +12390,14,23.25,45,0.0 +12390,58,13.25,46,0.0 +12390,60,34,10,0.0 +12390,13,6,15,0.0 +12390,42,14,35,0.0 +12390,51,53,6,0.0 +12390,48,12.75,13,0.0 +12390,2,19,18,0.0 +12390,67,14,2,0.0 +12390,25,14,36,0.0 +12390,56,38,50,0.0 +12390,49,20,5,0.0 +12390,39,18,42,0.0 +12390,30,25.89,39,0.0 +12390,15,15.5,36,0.0 +12390,52,7,41,0.0 +12390,31,12.5,44,0.0 +12390,65,21.05,44,0.0 +12390,54,7.45,4,0.0 +12390,32,32,22,0.0 +12390,9,97,17,0.0 +12390,1,18,36,0.0 +12390,4,22,19,0.0 +12390,68,12.5,15,0.0 +12391,51,53,20,0.0 +12391,13,6,2,0.0 +12391,60,34,35,0.0 +12391,18,62.5,42,0.0 +12391,66,17,50,0.0 +12391,1,18,42,0.0 +12391,32,32,48,0.0 +12391,74,10,38,0.0 +12391,67,14,45,0.0 +12391,25,14,1,0.0 +12391,56,38,22,0.0 +12391,72,34.8,45,0.0 +12391,22,21,47,0.0 +12391,8,40,41,0.0 +12391,58,13.25,3,0.0 +12391,4,22,13,0.0 +12391,52,7,25,0.0 +12391,9,97,22,0.0 +12391,37,26,12,0.0 +12391,62,49.3,24,0.0 +12391,5,21.35,20,0.0 +12391,61,28.5,21,0.0 +12391,65,21.05,16,0.0 +12391,2,19,27,0.0 +12391,11,21,4,0.0 +12391,26,31.23,7,0.0 +12391,63,43.9,20,0.0 +12391,14,23.25,2,0.0 +12391,48,12.75,13,0.0 +12391,33,2.5,10,0.0 +12391,43,46,8,0.0 +12391,54,7.45,20,0.0 +12391,42,14,30,0.0 +12391,59,55,16,0.0 +12391,17,39,9,0.0 +12391,15,15.5,2,0.0 +12391,44,19.45,28,0.0 +12391,46,12,26,0.0 +12391,64,33.25,34,0.0 +12391,30,25.89,39,0.0 +12391,12,38,39,0.0 +12391,50,16.25,31,0.0 +12391,19,9.2,5,0.0 +12391,20,81,21,0.0 +12391,45,9.5,28,0.0 +12391,57,19.5,18,0.0 +12391,35,18,24,0.0 +12391,3,10,31,0.0 +12391,34,14,36,0.0 +12391,36,19,44,0.0 +12391,28,45.6,36,0.0 +12391,41,9.65,22,0.0 +12391,6,25,50,0.0 +12391,70,15,5,0.0 +12392,24,4.5,26,0.0 +12392,29,123.79,41,0.0 +12392,20,81,38,0.0 +12392,52,7,5,0.0 +12392,5,21.35,49,0.0 +12392,59,55,38,0.0 +12392,48,12.75,11,0.0 +12392,50,16.25,50,0.0 +12392,18,62.5,46,0.0 +12392,39,18,39,0.0 +12392,74,10,46,0.0 +12392,66,17,2,0.0 +12392,33,2.5,3,0.0 +12392,64,33.25,4,0.0 +12392,47,9.5,33,0.0 +12392,11,21,6,0.0 +12392,32,32,27,0.0 +12392,75,7.75,6,0.0 +12392,36,19,42,0.0 +12392,26,31.23,36,0.0 +12392,53,32.8,7,0.0 +12392,57,19.5,50,0.0 +12392,21,10,12,0.0 +12392,42,14,48,0.0 +12392,69,36,42,0.0 +12392,16,17.45,31,0.0 +12392,61,28.5,2,0.0 +12392,45,9.5,2,0.0 +12392,6,25,2,0.0 +12392,56,38,39,0.0 +12392,63,43.9,48,0.0 +12392,15,15.5,2,0.0 +12392,76,18,39,0.0 +12392,60,34,6,0.0 +12392,43,46,10,0.0 +12392,30,25.89,33,0.0 +12392,2,19,50,0.0 +12392,7,30,16,0.0 +12392,51,53,25,0.0 +12392,9,97,12,0.0 +12392,28,45.6,8,0.0 +12392,25,14,25,0.0 +12392,14,23.25,49,0.0 +12392,1,18,9,0.0 +12392,67,14,12,0.0 +12392,41,9.65,36,0.0 +12392,55,24,14,0.0 +12392,4,22,28,0.0 +12392,49,20,41,0.0 +12392,34,14,10,0.0 +12392,31,12.5,40,0.0 +12392,27,43.9,20,0.0 +12392,58,13.25,27,0.0 +12392,12,38,35,0.0 +12392,10,31,31,0.0 +12392,70,15,18,0.0 +12392,13,6,9,0.0 +12392,3,10,10,0.0 +12392,62,49.3,25,0.0 +12392,19,9.2,49,0.0 +12392,71,21.5,7,0.0 +12392,44,19.45,29,0.0 +12392,40,18.4,48,0.0 +12392,35,18,5,0.0 +12392,65,21.05,39,0.0 +12392,22,21,20,0.0 +12392,23,9,39,0.0 +12392,17,39,39,0.0 +12392,68,12.5,1,0.0 +12392,8,40,25,0.0 +12392,72,34.8,34,0.0 +12392,73,15,9,0.0 +12392,77,13,50,0.0 +12393,33,2.5,36,0.0 +12393,62,49.3,9,0.0 +12393,73,15,4,0.0 +12393,39,18,49,0.0 +12393,44,19.45,23,0.0 +12393,64,33.25,31,0.0 +12393,22,21,7,0.0 +12393,26,31.23,12,0.0 +12393,23,9,5,0.0 +12393,63,43.9,47,0.0 +12393,45,9.5,25,0.0 +12393,9,97,20,0.0 +12393,20,81,1,0.0 +12393,47,9.5,39,0.0 +12393,17,39,10,0.0 +12393,66,17,28,0.0 +12393,30,25.89,42,0.0 +12393,76,18,5,0.0 +12393,52,7,20,0.0 +12393,13,6,39,0.0 +12393,2,19,35,0.0 +12393,55,24,16,0.0 +12393,34,14,15,0.0 +12393,35,18,20,0.0 +12393,40,18.4,41,0.0 +12393,51,53,45,0.0 +12393,49,20,7,0.0 +12393,8,40,12,0.0 +12393,5,21.35,8,0.0 +12393,54,7.45,33,0.0 +12393,57,19.5,30,0.0 +12393,58,13.25,31,0.0 +12393,37,26,29,0.0 +12393,4,22,28,0.0 +12393,12,38,25,0.0 +12393,61,28.5,6,0.0 +12393,77,13,27,0.0 +12393,69,36,29,0.0 +12393,32,32,7,0.0 +12393,21,10,36,0.0 +12393,70,15,27,0.0 +12393,75,7.75,47,0.0 +12393,43,46,11,0.0 +12393,18,62.5,37,0.0 +12393,7,30,31,0.0 +12393,16,17.45,30,0.0 +12393,10,31,1,0.0 +12393,31,12.5,7,0.0 +12393,46,12,24,0.0 +12393,15,15.5,2,0.0 +12393,72,34.8,42,0.0 +12393,59,55,31,0.0 +12394,71,21.5,13,0.0 +12394,50,16.25,12,0.0 +12394,48,12.75,15,0.0 +12394,73,15,20,0.0 +12394,53,32.8,26,0.0 +12394,24,4.5,14,0.0 +12394,43,46,39,0.0 +12394,36,19,46,0.0 +12394,20,81,23,0.0 +12394,58,13.25,5,0.0 +12394,9,97,28,0.0 +12394,3,10,39,0.0 +12394,54,7.45,21,0.0 +12394,59,55,24,0.0 +12394,30,25.89,32,0.0 +12394,76,18,48,0.0 +12394,31,12.5,13,0.0 +12395,37,26,48,0.0 +12395,25,14,39,0.0 +12395,45,9.5,32,0.0 +12395,51,53,30,0.0 +12395,52,7,16,0.0 +12395,2,19,49,0.0 +12395,5,21.35,21,0.0 +12395,17,39,28,0.0 +12395,21,10,46,0.0 +12395,34,14,10,0.0 +12395,16,17.45,11,0.0 +12395,60,34,9,0.0 +12396,14,23.25,24,0.0 +12396,77,13,39,0.0 +12396,67,14,25,0.0 +12396,24,4.5,41,0.0 +12396,71,21.5,36,0.0 +12396,37,26,46,0.0 +12396,36,19,2,0.0 +12396,69,36,3,0.0 +12396,29,123.79,47,0.0 +12396,28,45.6,40,0.0 +12396,25,14,4,0.0 +12396,62,49.3,10,0.0 +12396,7,30,31,0.0 +12396,30,25.89,8,0.0 +12396,52,7,34,0.0 +12396,65,21.05,35,0.0 +12396,44,19.45,35,0.0 +12396,55,24,21,0.0 +12396,15,15.5,19,0.0 +12396,45,9.5,26,0.0 +12396,21,10,5,0.0 +12396,72,34.8,29,0.0 +12396,13,6,10,0.0 +12396,26,31.23,46,0.0 +12396,40,18.4,4,0.0 +12396,6,25,47,0.0 +12396,33,2.5,31,0.0 +12396,49,20,38,0.0 +12396,8,40,32,0.0 +12396,12,38,43,0.0 +12396,39,18,36,0.0 +12396,2,19,34,0.0 +12396,5,21.35,48,0.0 +12396,9,97,1,0.0 +12396,1,18,3,0.0 +12396,48,12.75,8,0.0 +12397,74,10,19,0.0 +12397,51,53,4,0.0 +12397,24,4.5,32,0.0 +12397,50,16.25,30,0.0 +12397,14,23.25,8,0.0 +12397,27,43.9,37,0.0 +12397,76,18,14,0.0 +12397,37,26,14,0.0 +12397,12,38,11,0.0 +12397,45,9.5,12,0.0 +12397,49,20,49,0.0 +12397,34,14,35,0.0 +12397,26,31.23,8,0.0 +12397,10,31,38,0.0 +12397,16,17.45,17,0.0 +12397,11,21,3,0.0 +12397,48,12.75,12,0.0 +12397,66,17,16,0.0 +12397,53,32.8,4,0.0 +12397,5,21.35,37,0.0 +12397,75,7.75,47,0.0 +12397,55,24,29,0.0 +12397,7,30,45,0.0 +12397,1,18,8,0.0 +12397,6,25,33,0.0 +12397,8,40,36,0.0 +12397,31,12.5,39,0.0 +12397,15,15.5,29,0.0 +12397,71,21.5,12,0.0 +12397,32,32,31,0.0 +12397,20,81,9,0.0 +12397,30,25.89,20,0.0 +12397,42,14,34,0.0 +12397,58,13.25,31,0.0 +12397,69,36,24,0.0 +12397,65,21.05,8,0.0 +12398,40,18.4,25,0.0 +12398,4,22,5,0.0 +12398,73,15,29,0.0 +12398,45,9.5,45,0.0 +12398,15,15.5,5,0.0 +12398,31,12.5,24,0.0 +12398,41,9.65,41,0.0 +12398,35,18,40,0.0 +12398,1,18,48,0.0 +12398,17,39,30,0.0 +12398,2,19,4,0.0 +12398,20,81,7,0.0 +12398,72,34.8,18,0.0 +12398,10,31,33,0.0 +12398,67,14,21,0.0 +12398,62,49.3,27,0.0 +12398,57,19.5,5,0.0 +12398,65,21.05,27,0.0 +12398,55,24,3,0.0 +12398,30,25.89,4,0.0 +12398,12,38,5,0.0 +12398,61,28.5,3,0.0 +12398,49,20,46,0.0 +12398,70,15,2,0.0 +12398,33,2.5,19,0.0 +12398,16,17.45,49,0.0 +12398,11,21,18,0.0 +12398,44,19.45,46,0.0 +12398,14,23.25,21,0.0 +12398,56,38,13,0.0 +12398,32,32,36,0.0 +12398,63,43.9,48,0.0 +12398,69,36,13,0.0 +12398,60,34,45,0.0 +12398,53,32.8,14,0.0 +12398,76,18,37,0.0 +12398,5,21.35,34,0.0 +12398,3,10,42,0.0 +12398,6,25,7,0.0 +12398,51,53,5,0.0 +12398,26,31.23,38,0.0 +12398,7,30,22,0.0 +12398,39,18,5,0.0 +12398,38,263.5,34,0.0 +12398,64,33.25,11,0.0 +12398,34,14,5,0.0 +12398,18,62.5,18,0.0 +12399,49,20,38,0.0 +12399,44,19.45,29,0.0 +12399,9,97,17,0.0 +12399,52,7,28,0.0 +12399,32,32,25,0.0 +12399,73,15,28,0.0 +12399,56,38,20,0.0 +12399,5,21.35,38,0.0 +12399,66,17,14,0.0 +12399,62,49.3,22,0.0 +12399,6,25,38,0.0 +12399,4,22,35,0.0 +12399,21,10,7,0.0 +12399,48,12.75,37,0.0 +12399,22,21,41,0.0 +12399,37,26,8,0.0 +12399,16,17.45,29,0.0 +12399,40,18.4,12,0.0 +12399,71,21.5,30,0.0 +12400,63,43.9,11,0.0 +12400,29,123.79,25,0.0 +12400,45,9.5,39,0.0 +12400,52,7,38,0.0 +12400,46,12,43,0.0 +12400,71,21.5,31,0.0 +12400,56,38,28,0.0 +12400,7,30,12,0.0 +12400,64,33.25,37,0.0 +12400,37,26,12,0.0 +12400,47,9.5,12,0.0 +12400,74,10,25,0.0 +12400,3,10,40,0.0 +12400,51,53,40,0.0 +12401,23,9,44,0.0 +12401,59,55,38,0.0 +12401,10,31,5,0.0 +12401,21,10,24,0.0 +12401,41,9.65,8,0.0 +12401,33,2.5,9,0.0 +12401,67,14,27,0.0 +12401,40,18.4,50,0.0 +12401,43,46,46,0.0 +12401,13,6,41,0.0 +12401,24,4.5,48,0.0 +12401,34,14,13,0.0 +12401,37,26,20,0.0 +12401,69,36,38,0.0 +12401,77,13,8,0.0 +12401,51,53,6,0.0 +12401,25,14,36,0.0 +12401,39,18,37,0.0 +12401,12,38,34,0.0 +12401,26,31.23,6,0.0 +12401,44,19.45,40,0.0 +12401,1,18,19,0.0 +12401,35,18,47,0.0 +12401,6,25,26,0.0 +12401,45,9.5,35,0.0 +12401,46,12,19,0.0 +12401,18,62.5,18,0.0 +12401,32,32,46,0.0 +12401,4,22,31,0.0 +12401,11,21,10,0.0 +12401,36,19,34,0.0 +12401,48,12.75,27,0.0 +12401,52,7,37,0.0 +12401,30,25.89,40,0.0 +12401,71,21.5,7,0.0 +12401,31,12.5,48,0.0 +12401,76,18,9,0.0 +12401,63,43.9,45,0.0 +12401,27,43.9,18,0.0 +12401,17,39,13,0.0 +12401,68,12.5,17,0.0 +12401,64,33.25,19,0.0 +12401,3,10,15,0.0 +12401,15,15.5,22,0.0 +12401,42,14,47,0.0 +12401,20,81,29,0.0 +12401,74,10,43,0.0 +12401,22,21,9,0.0 +12401,9,97,12,0.0 +12401,16,17.45,17,0.0 +12401,72,34.8,23,0.0 +12401,19,9.2,27,0.0 +12402,31,12.5,32,0.0 +12402,39,18,39,0.0 +12402,3,10,12,0.0 +12402,32,32,26,0.0 +12402,48,12.75,47,0.0 +12402,6,25,5,0.0 +12402,49,20,8,0.0 +12402,8,40,9,0.0 +12402,74,10,20,0.0 +12402,30,25.89,15,0.0 +12402,77,13,6,0.0 +12402,73,15,33,0.0 +12402,75,7.75,35,0.0 +12402,40,18.4,22,0.0 +12402,68,12.5,2,0.0 +12402,56,38,11,0.0 +12402,5,21.35,4,0.0 +12402,15,15.5,11,0.0 +12402,66,17,36,0.0 +12402,17,39,40,0.0 +12402,69,36,20,0.0 +12402,59,55,29,0.0 +12402,16,17.45,5,0.0 +12402,2,19,9,0.0 +12402,60,34,14,0.0 +12402,4,22,7,0.0 +12402,51,53,16,0.0 +12402,29,123.79,44,0.0 +12402,26,31.23,48,0.0 +12402,41,9.65,49,0.0 +12402,20,81,47,0.0 +12402,52,7,30,0.0 +12402,36,19,42,0.0 +12402,25,14,44,0.0 +12402,42,14,29,0.0 +12402,50,16.25,10,0.0 +12402,23,9,29,0.0 +12402,19,9.2,11,0.0 +12402,47,9.5,12,0.0 +12402,27,43.9,16,0.0 +12402,54,7.45,23,0.0 +12402,11,21,31,0.0 +12402,34,14,41,0.0 +12402,62,49.3,5,0.0 +12402,46,12,46,0.0 +12402,67,14,21,0.0 +12402,64,33.25,25,0.0 +12402,45,9.5,14,0.0 +12402,7,30,23,0.0 +12402,53,32.8,2,0.0 +12402,33,2.5,33,0.0 +12402,9,97,3,0.0 +12402,14,23.25,32,0.0 +12402,18,62.5,14,0.0 +12402,44,19.45,14,0.0 +12402,12,38,15,0.0 +12402,71,21.5,44,0.0 +12402,72,34.8,14,0.0 +12403,61,28.5,41,0.0 +12403,58,13.25,35,0.0 +12403,73,15,16,0.0 +12403,64,33.25,24,0.0 +12403,51,53,9,0.0 +12403,75,7.75,46,0.0 +12403,42,14,45,0.0 +12403,60,34,13,0.0 +12403,21,10,42,0.0 +12403,23,9,45,0.0 +12403,62,49.3,20,0.0 +12403,18,62.5,36,0.0 +12403,8,40,45,0.0 +12403,27,43.9,39,0.0 +12403,11,21,45,0.0 +12403,43,46,13,0.0 +12403,38,263.5,27,0.0 +12403,41,9.65,9,0.0 +12403,26,31.23,14,0.0 +12403,63,43.9,43,0.0 +12403,13,6,34,0.0 +12403,30,25.89,50,0.0 +12403,28,45.6,42,0.0 +12403,4,22,49,0.0 +12403,12,38,26,0.0 +12403,70,15,17,0.0 +12403,10,31,18,0.0 +12403,53,32.8,43,0.0 +12403,6,25,27,0.0 +12403,50,16.25,10,0.0 +12403,36,19,2,0.0 +12403,56,38,5,0.0 +12403,14,23.25,11,0.0 +12403,2,19,35,0.0 +12403,65,21.05,23,0.0 +12403,29,123.79,36,0.0 +12403,20,81,14,0.0 +12403,1,18,10,0.0 +12403,17,39,2,0.0 +12403,55,24,2,0.0 +12403,5,21.35,9,0.0 +12403,72,34.8,3,0.0 +12403,25,14,4,0.0 +12403,54,7.45,27,0.0 +12403,69,36,16,0.0 +12403,52,7,41,0.0 +12403,37,26,8,0.0 +12403,49,20,14,0.0 +12403,71,21.5,15,0.0 +12403,48,12.75,23,0.0 +12403,59,55,15,0.0 +12403,40,18.4,22,0.0 +12403,57,19.5,42,0.0 +12404,56,38,19,0.0 +12404,37,26,12,0.0 +12404,14,23.25,12,0.0 +12404,10,31,17,0.0 +12404,21,10,41,0.0 +12404,34,14,49,0.0 +12404,19,9.2,43,0.0 +12404,30,25.89,37,0.0 +12404,7,30,5,0.0 +12404,63,43.9,49,0.0 +12404,44,19.45,16,0.0 +12404,16,17.45,32,0.0 +12404,25,14,48,0.0 +12404,43,46,48,0.0 +12404,12,38,33,0.0 +12404,22,21,28,0.0 +12404,59,55,12,0.0 +12405,62,49.3,4,0.0 +12405,44,19.45,31,0.0 +12405,66,17,21,0.0 +12405,43,46,38,0.0 +12405,60,34,11,0.0 +12405,54,7.45,30,0.0 +12405,35,18,19,0.0 +12405,12,38,39,0.0 +12405,58,13.25,26,0.0 +12405,73,15,28,0.0 +12405,49,20,7,0.0 +12405,4,22,10,0.0 +12405,28,45.6,32,0.0 +12405,76,18,50,0.0 +12405,36,19,26,0.0 +12405,63,43.9,8,0.0 +12405,75,7.75,32,0.0 +12405,11,21,35,0.0 +12405,19,9.2,50,0.0 +12405,6,25,19,0.0 +12405,45,9.5,14,0.0 +12405,72,34.8,28,0.0 +12405,40,18.4,20,0.0 +12405,21,10,39,0.0 +12405,31,12.5,21,0.0 +12405,23,9,34,0.0 +12405,68,12.5,3,0.0 +12405,42,14,5,0.0 +12405,24,4.5,49,0.0 +12405,48,12.75,4,0.0 +12405,57,19.5,35,0.0 +12405,34,14,11,0.0 +12405,1,18,23,0.0 +12405,33,2.5,17,0.0 +12405,10,31,15,0.0 +12405,67,14,23,0.0 +12405,22,21,27,0.0 +12405,71,21.5,17,0.0 +12406,76,18,40,0.0 +12407,31,12.5,18,0.0 +12407,63,43.9,42,0.0 +12407,38,263.5,16,0.0 +12407,28,45.6,10,0.0 +12407,60,34,10,0.0 +12407,58,13.25,50,0.0 +12407,16,17.45,4,0.0 +12407,51,53,31,0.0 +12407,17,39,30,0.0 +12407,50,16.25,3,0.0 +12407,74,10,13,0.0 +12407,26,31.23,49,0.0 +12407,22,21,4,0.0 +12407,34,14,37,0.0 +12407,73,15,4,0.0 +12407,49,20,38,0.0 +12407,35,18,7,0.0 +12407,54,7.45,10,0.0 +12407,25,14,37,0.0 +12407,29,123.79,11,0.0 +12407,43,46,35,0.0 +12407,69,36,28,0.0 +12407,24,4.5,44,0.0 +12407,9,97,42,0.0 +12407,32,32,30,0.0 +12407,42,14,16,0.0 +12408,5,21.35,20,0.0 +12408,4,22,6,0.0 +12408,57,19.5,11,0.0 +12408,10,31,37,0.0 +12408,45,9.5,25,0.0 +12408,50,16.25,43,0.0 +12408,36,19,38,0.0 +12408,53,32.8,46,0.0 +12408,49,20,41,0.0 +12408,54,7.45,4,0.0 +12408,71,21.5,16,0.0 +12408,35,18,5,0.0 +12408,39,18,31,0.0 +12408,13,6,28,0.0 +12408,37,26,23,0.0 +12408,59,55,50,0.0 +12408,7,30,9,0.0 +12408,23,9,32,0.0 +12408,63,43.9,7,0.0 +12408,55,24,14,0.0 +12408,74,10,28,0.0 +12408,15,15.5,27,0.0 +12408,70,15,7,0.0 +12408,56,38,15,0.0 +12408,19,9.2,30,0.0 +12408,30,25.89,9,0.0 +12408,3,10,19,0.0 +12408,42,14,48,0.0 +12408,18,62.5,34,0.0 +12408,8,40,21,0.0 +12408,17,39,16,0.0 +12408,40,18.4,29,0.0 +12408,26,31.23,1,0.0 +12408,1,18,33,0.0 +12408,61,28.5,30,0.0 +12408,11,21,32,0.0 +12408,16,17.45,37,0.0 +12408,51,53,39,0.0 +12408,41,9.65,19,0.0 +12408,44,19.45,22,0.0 +12408,21,10,43,0.0 +12408,60,34,3,0.0 +12408,22,21,16,0.0 +12408,9,97,50,0.0 +12408,6,25,41,0.0 +12408,68,12.5,26,0.0 +12408,75,7.75,38,0.0 +12408,48,12.75,29,0.0 +12408,73,15,42,0.0 +12408,77,13,38,0.0 +12409,14,23.25,23,0.0 +12409,13,6,24,0.0 +12409,18,62.5,45,0.0 +12409,51,53,16,0.0 +12409,8,40,17,0.0 +12409,40,18.4,17,0.0 +12409,60,34,15,0.0 +12409,1,18,28,0.0 +12409,70,15,5,0.0 +12409,59,55,30,0.0 +12409,9,97,27,0.0 +12409,62,49.3,9,0.0 +12409,17,39,13,0.0 +12409,52,7,37,0.0 +12409,22,21,47,0.0 +12410,41,9.65,45,0.0 +12410,63,43.9,47,0.0 +12410,6,25,33,0.0 +12410,66,17,7,0.0 +12410,59,55,15,0.0 +12410,43,46,14,0.0 +12410,52,7,50,0.0 +12410,24,4.5,48,0.0 +12410,74,10,45,0.0 +12410,9,97,29,0.0 +12410,27,43.9,2,0.0 +12410,10,31,19,0.0 +12410,34,14,17,0.0 +12410,47,9.5,14,0.0 +12410,23,9,38,0.0 +12410,72,34.8,33,0.0 +12410,14,23.25,44,0.0 +12410,48,12.75,47,0.0 +12410,71,21.5,34,0.0 +12410,35,18,50,0.0 +12410,22,21,28,0.0 +12410,30,25.89,27,0.0 +12410,75,7.75,13,0.0 +12410,73,15,27,0.0 +12410,42,14,9,0.0 +12410,58,13.25,48,0.0 +12410,13,6,6,0.0 +12410,18,62.5,4,0.0 +12411,18,62.5,43,0.0 +12411,35,18,50,0.0 +12411,43,46,25,0.0 +12411,8,40,16,0.0 +12411,30,25.89,49,0.0 +12411,10,31,49,0.0 +12411,70,15,45,0.0 +12411,14,23.25,23,0.0 +12411,54,7.45,5,0.0 +12411,59,55,1,0.0 +12411,71,21.5,11,0.0 +12411,22,21,15,0.0 +12411,4,22,26,0.0 +12411,65,21.05,24,0.0 +12411,69,36,10,0.0 +12411,26,31.23,7,0.0 +12411,40,18.4,37,0.0 +12411,44,19.45,16,0.0 +12411,48,12.75,49,0.0 +12411,52,7,8,0.0 +12411,5,21.35,24,0.0 +12411,58,13.25,3,0.0 +12411,46,12,36,0.0 +12411,12,38,30,0.0 +12411,36,19,41,0.0 +12411,45,9.5,19,0.0 +12411,3,10,13,0.0 +12411,1,18,25,0.0 +12411,55,24,4,0.0 +12411,57,19.5,1,0.0 +12411,62,49.3,13,0.0 +12411,74,10,16,0.0 +12411,11,21,7,0.0 +12411,17,39,19,0.0 +12411,25,14,13,0.0 +12411,68,12.5,23,0.0 +12411,34,14,3,0.0 +12411,28,45.6,28,0.0 +12411,23,9,30,0.0 +12411,50,16.25,41,0.0 +12411,75,7.75,35,0.0 +12411,31,12.5,14,0.0 +12411,38,263.5,38,0.0 +12411,33,2.5,27,0.0 +12411,16,17.45,17,0.0 +12411,77,13,39,0.0 +12412,64,33.25,34,0.0 +12412,49,20,43,0.0 +12412,46,12,24,0.0 +12412,42,14,39,0.0 +12412,27,43.9,5,0.0 +12412,32,32,22,0.0 +12412,50,16.25,26,0.0 +12412,13,6,4,0.0 +12412,19,9.2,44,0.0 +12412,14,23.25,34,0.0 +12412,51,53,38,0.0 +12412,9,97,40,0.0 +12412,39,18,46,0.0 +12412,47,9.5,41,0.0 +12412,74,10,27,0.0 +12412,48,12.75,41,0.0 +12412,12,38,36,0.0 +12412,77,13,17,0.0 +12412,55,24,48,0.0 +12412,30,25.89,49,0.0 +12412,5,21.35,28,0.0 +12412,43,46,38,0.0 +12412,31,12.5,11,0.0 +12412,23,9,27,0.0 +12412,71,21.5,37,0.0 +12412,8,40,16,0.0 +12412,45,9.5,21,0.0 +12412,29,123.79,13,0.0 +12412,21,10,48,0.0 +12412,36,19,9,0.0 +12412,62,49.3,21,0.0 +12412,67,14,38,0.0 +12412,25,14,22,0.0 +12412,6,25,4,0.0 +12412,54,7.45,28,0.0 +12412,22,21,16,0.0 +12412,76,18,40,0.0 +12412,44,19.45,23,0.0 +12412,28,45.6,14,0.0 +12412,60,34,48,0.0 +12412,10,31,45,0.0 +12412,69,36,18,0.0 +12412,33,2.5,45,0.0 +12412,15,15.5,34,0.0 +12412,37,26,26,0.0 +12412,4,22,11,0.0 +12412,63,43.9,45,0.0 +12412,57,19.5,37,0.0 +12412,1,18,1,0.0 +12412,38,263.5,10,0.0 +12412,34,14,12,0.0 +12412,70,15,38,0.0 +12413,48,12.75,41,0.0 +12413,52,7,3,0.0 +12413,70,15,20,0.0 +12413,73,15,28,0.0 +12413,38,263.5,44,0.0 +12413,31,12.5,15,0.0 +12413,32,32,31,0.0 +12413,35,18,33,0.0 +12413,39,18,42,0.0 +12413,60,34,17,0.0 +12413,54,7.45,45,0.0 +12413,69,36,5,0.0 +12413,59,55,48,0.0 +12413,16,17.45,5,0.0 +12413,65,21.05,29,0.0 +12413,37,26,14,0.0 +12413,20,81,17,0.0 +12413,41,9.65,26,0.0 +12413,62,49.3,10,0.0 +12413,28,45.6,11,0.0 +12413,24,4.5,48,0.0 +12413,25,14,13,0.0 +12413,5,21.35,33,0.0 +12413,47,9.5,33,0.0 +12413,12,38,36,0.0 +12413,13,6,27,0.0 +12413,4,22,9,0.0 +12413,76,18,49,0.0 +12413,19,9.2,38,0.0 +12413,1,18,21,0.0 +12413,58,13.25,47,0.0 +12413,21,10,36,0.0 +12413,50,16.25,42,0.0 +12413,17,39,22,0.0 +12413,15,15.5,25,0.0 +12413,42,14,2,0.0 +12413,57,19.5,28,0.0 +12413,71,21.5,29,0.0 +12413,53,32.8,50,0.0 +12413,49,20,22,0.0 +12413,34,14,32,0.0 +12413,55,24,7,0.0 +12413,75,7.75,40,0.0 +12413,2,19,29,0.0 +12413,44,19.45,22,0.0 +12413,6,25,8,0.0 +12413,51,53,36,0.0 +12413,3,10,1,0.0 +12413,36,19,50,0.0 +12413,23,9,40,0.0 +12413,10,31,47,0.0 +12413,45,9.5,40,0.0 +12413,67,14,1,0.0 +12413,68,12.5,22,0.0 +12413,77,13,29,0.0 +12413,27,43.9,14,0.0 +12413,30,25.89,50,0.0 +12413,43,46,26,0.0 +12413,11,21,17,0.0 +12413,18,62.5,12,0.0 +12413,74,10,43,0.0 +12413,56,38,2,0.0 +12413,22,21,15,0.0 +12413,7,30,25,0.0 +12413,8,40,6,0.0 +12413,29,123.79,36,0.0 +12414,59,55,38,0.0 +12414,63,43.9,31,0.0 +12414,24,4.5,43,0.0 +12414,16,17.45,39,0.0 +12414,74,10,49,0.0 +12414,9,97,22,0.0 +12414,31,12.5,12,0.0 +12414,65,21.05,12,0.0 +12414,75,7.75,18,0.0 +12414,43,46,26,0.0 +12414,28,45.6,37,0.0 +12414,7,30,33,0.0 +12414,35,18,28,0.0 +12414,37,26,2,0.0 +12414,67,14,4,0.0 +12414,17,39,2,0.0 +12414,6,25,37,0.0 +12414,77,13,1,0.0 +12415,67,14,16,0.0 +12415,23,9,5,0.0 +12415,73,15,18,0.0 +12415,60,34,27,0.0 +12415,22,21,50,0.0 +12415,24,4.5,15,0.0 +12415,54,7.45,37,0.0 +12415,39,18,42,0.0 +12415,5,21.35,23,0.0 +12415,9,97,41,0.0 +12415,2,19,14,0.0 +12415,17,39,21,0.0 +12415,21,10,14,0.0 +12415,64,33.25,9,0.0 +12415,43,46,28,0.0 +12415,35,18,14,0.0 +12415,66,17,4,0.0 +12415,52,7,27,0.0 +12415,28,45.6,37,0.0 +12415,57,19.5,46,0.0 +12415,50,16.25,44,0.0 +12415,42,14,42,0.0 +12415,53,32.8,31,0.0 +12415,8,40,32,0.0 +12415,7,30,31,0.0 +12415,37,26,39,0.0 +12415,68,12.5,30,0.0 +12415,74,10,43,0.0 +12415,59,55,10,0.0 +12415,69,36,41,0.0 +12415,6,25,10,0.0 +12415,3,10,49,0.0 +12416,68,12.5,48,0.0 +12416,1,18,19,0.0 +12416,10,31,16,0.0 +12416,24,4.5,42,0.0 +12416,55,24,30,0.0 +12416,31,12.5,7,0.0 +12416,60,34,7,0.0 +12416,18,62.5,13,0.0 +12416,40,18.4,4,0.0 +12416,62,49.3,10,0.0 +12416,22,21,1,0.0 +12416,14,23.25,20,0.0 +12417,24,4.5,41,0.0 +12417,19,9.2,30,0.0 +12417,13,6,7,0.0 +12417,33,2.5,32,0.0 +12417,57,19.5,42,0.0 +12417,25,14,8,0.0 +12417,31,12.5,9,0.0 +12417,12,38,43,0.0 +12417,75,7.75,4,0.0 +12417,40,18.4,26,0.0 +12417,69,36,50,0.0 +12417,55,24,50,0.0 +12417,56,38,46,0.0 +12417,26,31.23,5,0.0 +12417,73,15,18,0.0 +12417,3,10,38,0.0 +12417,50,16.25,21,0.0 +12417,23,9,50,0.0 +12417,47,9.5,30,0.0 +12417,61,28.5,40,0.0 +12417,29,123.79,25,0.0 +12417,10,31,40,0.0 +12417,38,263.5,32,0.0 +12417,6,25,42,0.0 +12417,70,15,29,0.0 +12417,18,62.5,20,0.0 +12417,5,21.35,50,0.0 +12417,2,19,6,0.0 +12417,46,12,38,0.0 +12417,30,25.89,4,0.0 +12417,45,9.5,17,0.0 +12417,1,18,25,0.0 +12418,20,81,12,0.0 +12418,71,21.5,48,0.0 +12418,41,9.65,31,0.0 +12418,31,12.5,27,0.0 +12418,73,15,23,0.0 +12418,45,9.5,2,0.0 +12418,65,21.05,17,0.0 +12418,27,43.9,13,0.0 +12418,35,18,28,0.0 +12418,66,17,5,0.0 +12418,47,9.5,16,0.0 +12418,28,45.6,31,0.0 +12418,40,18.4,14,0.0 +12418,26,31.23,38,0.0 +12418,57,19.5,3,0.0 +12418,74,10,37,0.0 +12418,55,24,14,0.0 +12418,10,31,11,0.0 +12418,56,38,29,0.0 +12418,19,9.2,20,0.0 +12418,17,39,20,0.0 +12418,38,263.5,28,0.0 +12418,3,10,7,0.0 +12418,52,7,44,0.0 +12418,15,15.5,45,0.0 +12418,53,32.8,29,0.0 +12418,30,25.89,8,0.0 +12418,68,12.5,26,0.0 +12418,37,26,22,0.0 +12418,16,17.45,21,0.0 +12419,3,10,49,0.0 +12419,13,6,39,0.0 +12419,61,28.5,45,0.0 +12419,11,21,4,0.0 +12419,19,9.2,31,0.0 +12419,9,97,34,0.0 +12419,22,21,40,0.0 +12419,27,43.9,31,0.0 +12419,20,81,6,0.0 +12419,36,19,10,0.0 +12419,76,18,30,0.0 +12419,21,10,7,0.0 +12419,65,21.05,20,0.0 +12419,7,30,6,0.0 +12419,4,22,34,0.0 +12419,58,13.25,12,0.0 +12419,34,14,40,0.0 +12419,14,23.25,17,0.0 +12419,17,39,16,0.0 +12419,45,9.5,22,0.0 +12419,44,19.45,38,0.0 +12419,68,12.5,49,0.0 +12419,18,62.5,9,0.0 +12419,42,14,34,0.0 +12419,70,15,2,0.0 +12419,37,26,20,0.0 +12419,15,15.5,17,0.0 +12419,48,12.75,23,0.0 +12419,75,7.75,48,0.0 +12419,60,34,40,0.0 +12419,30,25.89,46,0.0 +12419,57,19.5,20,0.0 +12419,69,36,41,0.0 +12419,71,21.5,2,0.0 +12419,12,38,33,0.0 +12419,1,18,41,0.0 +12419,55,24,14,0.0 +12419,49,20,37,0.0 +12419,38,263.5,50,0.0 +12419,46,12,28,0.0 +12419,40,18.4,5,0.0 +12419,39,18,10,0.0 +12419,50,16.25,44,0.0 +12419,10,31,38,0.0 +12419,16,17.45,20,0.0 +12419,56,38,34,0.0 +12419,67,14,12,0.0 +12419,31,12.5,21,0.0 +12420,22,21,12,0.0 +12420,40,18.4,36,0.0 +12420,41,9.65,18,0.0 +12420,51,53,28,0.0 +12420,74,10,24,0.0 +12420,10,31,35,0.0 +12420,68,12.5,13,0.0 +12420,64,33.25,6,0.0 +12420,63,43.9,22,0.0 +12420,13,6,20,0.0 +12420,2,19,47,0.0 +12420,48,12.75,42,0.0 +12420,25,14,21,0.0 +12420,1,18,21,0.0 +12420,46,12,29,0.0 +12420,61,28.5,50,0.0 +12420,66,17,26,0.0 +12420,53,32.8,18,0.0 +12420,45,9.5,34,0.0 +12420,55,24,31,0.0 +12420,37,26,1,0.0 +12420,76,18,19,0.0 +12420,5,21.35,23,0.0 +12420,17,39,46,0.0 +12420,16,17.45,9,0.0 +12420,26,31.23,22,0.0 +12420,49,20,40,0.0 +12420,14,23.25,25,0.0 +12420,21,10,28,0.0 +12420,42,14,21,0.0 +12420,6,25,42,0.0 +12420,60,34,13,0.0 +12420,73,15,47,0.0 +12420,35,18,5,0.0 +12420,30,25.89,49,0.0 +12420,28,45.6,41,0.0 +12420,27,43.9,27,0.0 +12420,67,14,36,0.0 +12420,47,9.5,11,0.0 +12420,9,97,20,0.0 +12420,3,10,22,0.0 +12420,52,7,11,0.0 +12420,24,4.5,26,0.0 +12420,29,123.79,42,0.0 +12420,39,18,48,0.0 +12420,15,15.5,20,0.0 +12420,72,34.8,13,0.0 +12420,54,7.45,39,0.0 +12420,44,19.45,43,0.0 +12420,77,13,39,0.0 +12420,69,36,14,0.0 +12420,8,40,10,0.0 +12420,43,46,18,0.0 +12420,20,81,50,0.0 +12420,34,14,39,0.0 +12420,11,21,38,0.0 +12420,19,9.2,12,0.0 +12420,56,38,50,0.0 +12420,18,62.5,27,0.0 +12420,71,21.5,43,0.0 +12420,23,9,4,0.0 +12420,36,19,8,0.0 +12420,7,30,24,0.0 +12420,75,7.75,14,0.0 +12420,50,16.25,39,0.0 +12420,58,13.25,50,0.0 +12420,57,19.5,47,0.0 +12420,32,32,31,0.0 +12420,65,21.05,35,0.0 +12420,59,55,22,0.0 +12420,12,38,31,0.0 +12420,31,12.5,30,0.0 +12420,38,263.5,36,0.0 +12420,4,22,9,0.0 +12421,57,19.5,25,0.0 +12421,67,14,35,0.0 +12421,26,31.23,45,0.0 +12421,4,22,18,0.0 +12421,16,17.45,40,0.0 +12421,64,33.25,15,0.0 +12421,24,4.5,11,0.0 +12421,68,12.5,3,0.0 +12421,40,18.4,39,0.0 +12421,72,34.8,46,0.0 +12421,49,20,23,0.0 +12421,60,34,30,0.0 +12421,31,12.5,47,0.0 +12421,15,15.5,11,0.0 +12421,46,12,32,0.0 +12421,5,21.35,20,0.0 +12421,61,28.5,16,0.0 +12421,53,32.8,16,0.0 +12421,30,25.89,46,0.0 +12421,58,13.25,39,0.0 +12421,41,9.65,24,0.0 +12421,56,38,39,0.0 +12421,3,10,38,0.0 +12421,43,46,39,0.0 +12421,23,9,26,0.0 +12421,74,10,12,0.0 +12421,47,9.5,22,0.0 +12421,19,9.2,42,0.0 +12421,59,55,28,0.0 +12421,65,21.05,15,0.0 +12421,17,39,35,0.0 +12421,52,7,26,0.0 +12421,36,19,3,0.0 +12421,51,53,18,0.0 +12421,35,18,45,0.0 +12421,44,19.45,19,0.0 +12421,28,45.6,47,0.0 +12421,25,14,38,0.0 +12421,69,36,23,0.0 +12421,63,43.9,45,0.0 +12421,50,16.25,29,0.0 +12421,71,21.5,27,0.0 +12421,75,7.75,42,0.0 +12421,9,97,47,0.0 +12421,55,24,5,0.0 +12421,70,15,4,0.0 +12421,2,19,2,0.0 +12421,32,32,48,0.0 +12421,76,18,21,0.0 +12421,18,62.5,19,0.0 +12421,54,7.45,8,0.0 +12421,20,81,19,0.0 +12421,1,18,38,0.0 +12421,21,10,32,0.0 +12421,48,12.75,34,0.0 +12421,45,9.5,8,0.0 +12421,10,31,13,0.0 +12421,39,18,23,0.0 +12421,12,38,24,0.0 +12421,73,15,3,0.0 +12421,27,43.9,1,0.0 +12421,77,13,36,0.0 +12421,42,14,24,0.0 +12421,38,263.5,48,0.0 +12421,62,49.3,25,0.0 +12421,6,25,49,0.0 +12421,22,21,12,0.0 +12421,33,2.5,14,0.0 +12421,66,17,19,0.0 +12421,8,40,11,0.0 +12422,11,21,36,0.0 +12422,29,123.79,21,0.0 +12422,66,17,8,0.0 +12422,5,21.35,35,0.0 +12422,7,30,26,0.0 +12422,12,38,33,0.0 +12422,8,40,49,0.0 +12422,38,263.5,49,0.0 +12422,76,18,26,0.0 +12422,26,31.23,12,0.0 +12422,23,9,22,0.0 +12422,68,12.5,48,0.0 +12422,3,10,46,0.0 +12422,67,14,13,0.0 +12422,51,53,3,0.0 +12422,28,45.6,25,0.0 +12422,2,19,32,0.0 +12422,31,12.5,23,0.0 +12422,20,81,50,0.0 +12422,39,18,41,0.0 +12422,34,14,41,0.0 +12422,64,33.25,39,0.0 +12422,60,34,11,0.0 +12422,43,46,40,0.0 +12422,42,14,29,0.0 +12423,4,22,44,0.0 +12423,66,17,5,0.0 +12423,40,18.4,4,0.0 +12423,70,15,30,0.0 +12423,67,14,28,0.0 +12423,36,19,49,0.0 +12423,62,49.3,42,0.0 +12423,16,17.45,15,0.0 +12423,75,7.75,1,0.0 +12423,69,36,2,0.0 +12423,31,12.5,22,0.0 +12423,52,7,15,0.0 +12423,65,21.05,37,0.0 +12423,33,2.5,14,0.0 +12423,63,43.9,24,0.0 +12423,35,18,36,0.0 +12423,55,24,33,0.0 +12423,60,34,40,0.0 +12423,6,25,44,0.0 +12423,22,21,34,0.0 +12423,37,26,5,0.0 +12423,14,23.25,42,0.0 +12423,76,18,1,0.0 +12423,32,32,24,0.0 +12423,49,20,15,0.0 +12423,13,6,9,0.0 +12423,46,12,27,0.0 +12423,48,12.75,36,0.0 +12423,23,9,31,0.0 +12423,20,81,29,0.0 +12423,12,38,4,0.0 +12423,50,16.25,26,0.0 +12423,43,46,47,0.0 +12423,61,28.5,18,0.0 +12423,10,31,21,0.0 +12423,68,12.5,10,0.0 +12423,74,10,15,0.0 +12423,28,45.6,38,0.0 +12423,47,9.5,19,0.0 +12423,11,21,27,0.0 +12423,19,9.2,25,0.0 +12423,73,15,23,0.0 +12423,15,15.5,30,0.0 +12423,71,21.5,12,0.0 +12423,25,14,13,0.0 +12423,1,18,50,0.0 +12424,57,19.5,43,0.0 +12424,50,16.25,27,0.0 +12424,25,14,43,0.0 +12424,27,43.9,45,0.0 +12424,41,9.65,13,0.0 +12424,4,22,43,0.0 +12424,28,45.6,50,0.0 +12424,22,21,23,0.0 +12424,40,18.4,10,0.0 +12424,75,7.75,25,0.0 +12424,65,21.05,13,0.0 +12424,38,263.5,23,0.0 +12424,58,13.25,5,0.0 +12424,77,13,27,0.0 +12424,3,10,4,0.0 +12424,51,53,48,0.0 +12424,7,30,7,0.0 +12424,49,20,36,0.0 +12424,13,6,41,0.0 +12424,37,26,46,0.0 +12424,61,28.5,41,0.0 +12424,45,9.5,46,0.0 +12424,29,123.79,29,0.0 +12424,72,34.8,29,0.0 +12424,48,12.75,29,0.0 +12424,47,9.5,10,0.0 +12424,30,25.89,17,0.0 +12424,69,36,11,0.0 +12424,68,12.5,35,0.0 +12424,14,23.25,10,0.0 +12424,1,18,15,0.0 +12424,5,21.35,28,0.0 +12424,31,12.5,22,0.0 +12425,75,7.75,44,0.0 +12425,57,19.5,13,0.0 +12425,41,9.65,15,0.0 +12425,9,97,21,0.0 +12425,26,31.23,44,0.0 +12425,77,13,6,0.0 +12425,70,15,16,0.0 +12425,33,2.5,11,0.0 +12425,24,4.5,29,0.0 +12425,67,14,22,0.0 +12425,68,12.5,3,0.0 +12425,47,9.5,25,0.0 +12425,58,13.25,27,0.0 +12425,6,25,31,0.0 +12425,34,14,49,0.0 +12425,10,31,37,0.0 +12425,73,15,37,0.0 +12425,30,25.89,16,0.0 +12425,72,34.8,21,0.0 +12425,40,18.4,31,0.0 +12425,76,18,30,0.0 +12425,63,43.9,14,0.0 +12425,69,36,28,0.0 +12425,50,16.25,18,0.0 +12425,38,263.5,17,0.0 +12425,59,55,11,0.0 +12425,45,9.5,23,0.0 +12425,54,7.45,30,0.0 +12425,12,38,12,0.0 +12425,23,9,11,0.0 +12425,53,32.8,15,0.0 +12425,48,12.75,10,0.0 +12425,46,12,30,0.0 +12425,55,24,40,0.0 +12425,22,21,26,0.0 +12425,1,18,2,0.0 +12425,14,23.25,1,0.0 +12425,64,33.25,16,0.0 +12425,28,45.6,14,0.0 +12425,20,81,41,0.0 +12425,32,32,17,0.0 +12425,5,21.35,43,0.0 +12425,3,10,43,0.0 +12425,15,15.5,13,0.0 +12425,43,46,1,0.0 +12425,65,21.05,4,0.0 +12425,49,20,38,0.0 +12425,36,19,5,0.0 +12425,71,21.5,28,0.0 +12425,35,18,1,0.0 +12425,44,19.45,11,0.0 +12425,60,34,23,0.0 +12425,74,10,6,0.0 +12425,2,19,36,0.0 +12425,8,40,26,0.0 +12425,21,10,8,0.0 +12425,31,12.5,13,0.0 +12425,27,43.9,18,0.0 +12425,39,18,39,0.0 +12425,7,30,44,0.0 +12425,42,14,24,0.0 +12425,25,14,48,0.0 +12425,19,9.2,33,0.0 +12425,56,38,1,0.0 +12425,61,28.5,12,0.0 +12425,51,53,25,0.0 +12425,16,17.45,34,0.0 +12425,66,17,15,0.0 +12425,11,21,35,0.0 +12425,13,6,21,0.0 +12425,17,39,1,0.0 +12425,18,62.5,26,0.0 +12426,41,9.65,19,0.0 +12426,16,17.45,17,0.0 +12426,47,9.5,46,0.0 +12426,66,17,7,0.0 +12426,18,62.5,49,0.0 +12426,72,34.8,6,0.0 +12426,68,12.5,43,0.0 +12426,48,12.75,34,0.0 +12426,25,14,6,0.0 +12426,34,14,37,0.0 +12426,40,18.4,47,0.0 +12426,62,49.3,41,0.0 +12426,8,40,49,0.0 +12426,61,28.5,13,0.0 +12426,52,7,46,0.0 +12426,11,21,48,0.0 +12426,70,15,12,0.0 +12426,9,97,3,0.0 +12426,33,2.5,26,0.0 +12426,19,9.2,19,0.0 +12426,4,22,11,0.0 +12426,23,9,24,0.0 +12426,63,43.9,9,0.0 +12426,39,18,19,0.0 +12426,1,18,35,0.0 +12426,38,263.5,8,0.0 +12426,55,24,47,0.0 +12426,21,10,49,0.0 +12426,20,81,49,0.0 +12426,29,123.79,26,0.0 +12426,6,25,32,0.0 +12426,26,31.23,40,0.0 +12426,15,15.5,4,0.0 +12426,59,55,25,0.0 +12427,28,45.6,23,0.0 +12427,11,21,48,0.0 +12427,32,32,10,0.0 +12427,58,13.25,29,0.0 +12427,36,19,18,0.0 +12427,75,7.75,19,0.0 +12427,45,9.5,30,0.0 +12427,56,38,29,0.0 +12427,39,18,44,0.0 +12427,62,49.3,4,0.0 +12427,57,19.5,46,0.0 +12427,71,21.5,14,0.0 +12427,49,20,16,0.0 +12427,73,15,13,0.0 +12427,66,17,29,0.0 +12427,41,9.65,49,0.0 +12427,37,26,34,0.0 +12427,6,25,44,0.0 +12427,17,39,43,0.0 +12427,38,263.5,28,0.0 +12427,55,24,29,0.0 +12427,21,10,7,0.0 +12427,42,14,44,0.0 +12427,22,21,14,0.0 +12427,46,12,1,0.0 +12427,74,10,3,0.0 +12427,13,6,20,0.0 +12427,43,46,22,0.0 +12427,51,53,45,0.0 +12427,15,15.5,9,0.0 +12427,69,36,25,0.0 +12427,34,14,35,0.0 +12427,63,43.9,14,0.0 +12427,23,9,23,0.0 +12427,2,19,19,0.0 +12427,29,123.79,23,0.0 +12427,1,18,20,0.0 +12427,5,21.35,25,0.0 +12427,44,19.45,45,0.0 +12427,4,22,20,0.0 +12427,70,15,32,0.0 +12427,26,31.23,32,0.0 +12427,68,12.5,10,0.0 +12427,7,30,22,0.0 +12427,19,9.2,38,0.0 +12427,24,4.5,44,0.0 +12427,76,18,9,0.0 +12427,47,9.5,16,0.0 +12427,12,38,17,0.0 +12427,20,81,8,0.0 +12427,61,28.5,49,0.0 +12427,59,55,15,0.0 +12427,54,7.45,1,0.0 +12427,30,25.89,5,0.0 +12427,14,23.25,17,0.0 +12427,50,16.25,40,0.0 +12427,67,14,47,0.0 +12427,25,14,22,0.0 +12427,40,18.4,43,0.0 +12427,52,7,33,0.0 +12427,18,62.5,48,0.0 +12427,31,12.5,38,0.0 +12427,27,43.9,50,0.0 +12427,72,34.8,19,0.0 +12427,9,97,50,0.0 +12427,3,10,8,0.0 +12427,64,33.25,50,0.0 +12427,77,13,38,0.0 +12427,8,40,50,0.0 +12427,48,12.75,23,0.0 +12427,65,21.05,13,0.0 +12427,53,32.8,40,0.0 +12427,33,2.5,47,0.0 +12427,10,31,23,0.0 +12427,16,17.45,17,0.0 +12427,35,18,13,0.0 +12427,60,34,40,0.0 +12428,55,24,48,0.0 +12428,70,15,39,0.0 +12428,31,12.5,7,0.0 +12428,28,45.6,8,0.0 +12428,4,22,37,0.0 +12428,61,28.5,45,0.0 +12428,65,21.05,34,0.0 +12428,40,18.4,35,0.0 +12429,33,2.5,32,0.0 +12429,52,7,49,0.0 +12429,31,12.5,8,0.0 +12429,10,31,10,0.0 +12429,24,4.5,40,0.0 +12429,8,40,7,0.0 +12429,23,9,18,0.0 +12429,76,18,24,0.0 +12429,37,26,8,0.0 +12429,60,34,34,0.0 +12429,4,22,32,0.0 +12429,56,38,38,0.0 +12429,30,25.89,21,0.0 +12429,12,38,49,0.0 +12429,26,31.23,5,0.0 +12429,32,32,40,0.0 +12429,51,53,36,0.0 +12429,11,21,11,0.0 +12429,44,19.45,34,0.0 +12429,19,9.2,9,0.0 +12429,66,17,4,0.0 +12429,65,21.05,40,0.0 +12429,18,62.5,32,0.0 +12429,71,21.5,11,0.0 +12429,6,25,2,0.0 +12429,54,7.45,15,0.0 +12429,47,9.5,11,0.0 +12429,13,6,48,0.0 +12429,35,18,17,0.0 +12429,39,18,12,0.0 +12430,75,7.75,16,0.0 +12430,54,7.45,30,0.0 +12430,27,43.9,41,0.0 +12430,73,15,11,0.0 +12430,60,34,32,0.0 +12430,76,18,20,0.0 +12430,26,31.23,17,0.0 +12430,13,6,1,0.0 +12430,12,38,32,0.0 +12430,71,21.5,14,0.0 +12430,32,32,18,0.0 +12430,14,23.25,9,0.0 +12430,53,32.8,12,0.0 +12430,57,19.5,23,0.0 +12430,67,14,25,0.0 +12430,77,13,1,0.0 +12430,66,17,46,0.0 +12430,49,20,24,0.0 +12430,59,55,27,0.0 +12430,50,16.25,11,0.0 +12430,62,49.3,20,0.0 +12430,63,43.9,12,0.0 +12430,28,45.6,2,0.0 +12430,31,12.5,38,0.0 +12430,1,18,30,0.0 +12430,72,34.8,34,0.0 +12430,23,9,3,0.0 +12430,3,10,42,0.0 +12430,70,15,33,0.0 +12430,10,31,11,0.0 +12430,45,9.5,36,0.0 +12430,56,38,37,0.0 +12430,41,9.65,42,0.0 +12430,15,15.5,40,0.0 +12430,69,36,30,0.0 +12430,58,13.25,20,0.0 +12430,16,17.45,8,0.0 +12430,20,81,18,0.0 +12430,42,14,11,0.0 +12430,6,25,46,0.0 +12430,18,62.5,24,0.0 +12430,55,24,37,0.0 +12430,44,19.45,6,0.0 +12430,4,22,50,0.0 +12430,30,25.89,48,0.0 +12430,74,10,32,0.0 +12430,33,2.5,20,0.0 +12430,47,9.5,28,0.0 +12431,67,14,48,0.0 +12431,3,10,40,0.0 +12431,2,19,27,0.0 +12431,49,20,3,0.0 +12431,36,19,35,0.0 +12431,56,38,15,0.0 +12431,28,45.6,4,0.0 +12431,25,14,13,0.0 +12431,18,62.5,31,0.0 +12431,22,21,3,0.0 +12431,14,23.25,10,0.0 +12431,72,34.8,14,0.0 +12431,15,15.5,31,0.0 +12431,20,81,8,0.0 +12431,11,21,28,0.0 +12431,31,12.5,42,0.0 +12431,40,18.4,47,0.0 +12431,47,9.5,13,0.0 +12431,13,6,17,0.0 +12431,58,13.25,17,0.0 +12431,34,14,2,0.0 +12431,53,32.8,35,0.0 +12431,12,38,7,0.0 +12431,63,43.9,36,0.0 +12431,42,14,7,0.0 +12431,43,46,16,0.0 +12431,59,55,40,0.0 +12431,19,9.2,46,0.0 +12431,62,49.3,44,0.0 +12431,7,30,12,0.0 +12431,5,21.35,19,0.0 +12431,37,26,20,0.0 +12431,24,4.5,7,0.0 +12431,55,24,28,0.0 +12431,75,7.75,21,0.0 +12431,41,9.65,33,0.0 +12431,8,40,40,0.0 +12431,26,31.23,45,0.0 +12431,61,28.5,15,0.0 +12431,35,18,41,0.0 +12431,9,97,44,0.0 +12431,46,12,32,0.0 +12431,4,22,3,0.0 +12431,71,21.5,48,0.0 +12431,33,2.5,12,0.0 +12431,23,9,46,0.0 +12431,60,34,40,0.0 +12431,70,15,49,0.0 +12431,1,18,46,0.0 +12431,51,53,22,0.0 +12431,74,10,21,0.0 +12431,16,17.45,9,0.0 +12431,68,12.5,18,0.0 +12431,66,17,38,0.0 +12431,21,10,4,0.0 +12431,17,39,25,0.0 +12431,48,12.75,26,0.0 +12431,54,7.45,31,0.0 +12431,77,13,15,0.0 +12431,6,25,48,0.0 +12431,65,21.05,47,0.0 +12431,38,263.5,11,0.0 +12431,29,123.79,10,0.0 +12431,64,33.25,45,0.0 +12431,39,18,11,0.0 +12431,57,19.5,42,0.0 +12431,73,15,26,0.0 +12431,27,43.9,35,0.0 +12431,45,9.5,1,0.0 +12431,69,36,35,0.0 +12431,52,7,50,0.0 +12431,44,19.45,4,0.0 +12431,32,32,46,0.0 +12431,50,16.25,25,0.0 +12431,76,18,41,0.0 +12431,30,25.89,35,0.0 +12431,10,31,18,0.0 +12432,39,18,23,0.0 +12432,38,263.5,11,0.0 +12432,11,21,10,0.0 +12432,45,9.5,20,0.0 +12432,66,17,17,0.0 +12432,54,7.45,49,0.0 +12432,29,123.79,13,0.0 +12432,61,28.5,7,0.0 +12432,22,21,8,0.0 +12432,1,18,24,0.0 +12432,73,15,28,0.0 +12432,77,13,47,0.0 +12432,8,40,30,0.0 +12432,37,26,25,0.0 +12432,15,15.5,46,0.0 +12432,74,10,26,0.0 +12432,14,23.25,35,0.0 +12432,71,21.5,11,0.0 +12432,67,14,13,0.0 +12432,63,43.9,9,0.0 +12432,42,14,19,0.0 +12432,31,12.5,29,0.0 +12432,28,45.6,42,0.0 +12432,36,19,14,0.0 +12432,68,12.5,28,0.0 +12432,49,20,4,0.0 +12432,50,16.25,42,0.0 +12432,9,97,39,0.0 +12432,25,14,16,0.0 +12432,33,2.5,49,0.0 +12432,3,10,10,0.0 +12432,64,33.25,36,0.0 +12432,10,31,50,0.0 +12432,57,19.5,3,0.0 +12432,13,6,13,0.0 +12432,43,46,23,0.0 +12432,24,4.5,33,0.0 +12432,56,38,8,0.0 +12432,60,34,5,0.0 +12432,76,18,15,0.0 +12432,69,36,40,0.0 +12432,58,13.25,17,0.0 +12432,21,10,35,0.0 +12432,23,9,34,0.0 +12432,7,30,6,0.0 +12432,65,21.05,39,0.0 +12432,27,43.9,11,0.0 +12432,44,19.45,28,0.0 +12432,16,17.45,25,0.0 +12432,41,9.65,33,0.0 +12432,17,39,40,0.0 +12432,52,7,19,0.0 +12432,5,21.35,38,0.0 +12432,59,55,48,0.0 +12432,47,9.5,27,0.0 +12432,20,81,35,0.0 +12433,77,13,39,0.0 +12433,37,26,33,0.0 +12433,41,9.65,46,0.0 +12433,48,12.75,7,0.0 +12433,8,40,35,0.0 +12433,39,18,19,0.0 +12433,10,31,38,0.0 +12433,61,28.5,43,0.0 +12433,16,17.45,10,0.0 +12433,12,38,23,0.0 +12433,14,23.25,13,0.0 +12433,6,25,45,0.0 +12433,55,24,16,0.0 +12433,50,16.25,37,0.0 +12433,21,10,14,0.0 +12433,9,97,43,0.0 +12433,26,31.23,50,0.0 +12433,19,9.2,46,0.0 +12433,70,15,30,0.0 +12433,71,21.5,31,0.0 +12433,13,6,5,0.0 +12433,38,263.5,17,0.0 +12433,64,33.25,28,0.0 +12433,4,22,13,0.0 +12433,54,7.45,20,0.0 +12433,43,46,23,0.0 +12433,2,19,14,0.0 +12433,51,53,35,0.0 +12433,34,14,4,0.0 +12433,5,21.35,34,0.0 +12433,36,19,27,0.0 +12433,49,20,5,0.0 +12433,69,36,13,0.0 +12433,68,12.5,28,0.0 +12433,40,18.4,40,0.0 +12433,24,4.5,50,0.0 +12433,46,12,28,0.0 +12433,35,18,9,0.0 +12433,20,81,17,0.0 +12433,47,9.5,17,0.0 +12433,65,21.05,17,0.0 +12433,7,30,39,0.0 +12433,17,39,25,0.0 +12433,56,38,45,0.0 +12433,74,10,11,0.0 +12433,75,7.75,50,0.0 +12433,22,21,23,0.0 +12434,70,15,42,0.0 +12434,46,12,30,0.0 +12434,15,15.5,42,0.0 +12434,65,21.05,38,0.0 +12434,39,18,25,0.0 +12434,24,4.5,21,0.0 +12434,11,21,30,0.0 +12434,56,38,39,0.0 +12434,49,20,49,0.0 +12434,17,39,18,0.0 +12434,75,7.75,39,0.0 +12434,2,19,9,0.0 +12434,60,34,15,0.0 +12434,41,9.65,31,0.0 +12434,27,43.9,32,0.0 +12434,54,7.45,15,0.0 +12434,19,9.2,30,0.0 +12434,34,14,15,0.0 +12434,63,43.9,23,0.0 +12434,20,81,20,0.0 +12434,69,36,31,0.0 +12434,14,23.25,12,0.0 +12434,68,12.5,43,0.0 +12434,3,10,41,0.0 +12434,7,30,50,0.0 +12434,4,22,18,0.0 +12434,43,46,27,0.0 +12434,28,45.6,45,0.0 +12434,9,97,47,0.0 +12434,57,19.5,21,0.0 +12434,76,18,11,0.0 +12434,10,31,11,0.0 +12434,29,123.79,41,0.0 +12434,44,19.45,18,0.0 +12434,77,13,33,0.0 +12434,25,14,27,0.0 +12434,66,17,18,0.0 +12434,67,14,18,0.0 +12434,8,40,21,0.0 +12434,64,33.25,22,0.0 +12435,71,21.5,1,0.0 +12435,26,31.23,3,0.0 +12435,28,45.6,25,0.0 +12435,41,9.65,26,0.0 +12435,24,4.5,7,0.0 +12435,7,30,19,0.0 +12435,58,13.25,10,0.0 +12435,30,25.89,45,0.0 +12435,25,14,8,0.0 +12435,61,28.5,20,0.0 +12435,76,18,10,0.0 +12435,34,14,34,0.0 +12435,12,38,21,0.0 +12435,68,12.5,41,0.0 +12435,5,21.35,13,0.0 +12435,57,19.5,43,0.0 +12435,66,17,19,0.0 +12435,8,40,21,0.0 +12435,2,19,42,0.0 +12435,63,43.9,31,0.0 +12435,55,24,6,0.0 +12435,22,21,25,0.0 +12435,62,49.3,17,0.0 +12435,17,39,11,0.0 +12435,13,6,16,0.0 +12435,37,26,9,0.0 +12435,46,12,12,0.0 +12435,53,32.8,34,0.0 +12435,16,17.45,42,0.0 +12435,70,15,10,0.0 +12435,40,18.4,14,0.0 +12435,69,36,15,0.0 +12435,50,16.25,48,0.0 +12435,42,14,42,0.0 +12435,60,34,15,0.0 +12435,3,10,38,0.0 +12435,45,9.5,50,0.0 +12435,52,7,16,0.0 +12435,29,123.79,29,0.0 +12435,65,21.05,37,0.0 +12435,38,263.5,5,0.0 +12435,6,25,35,0.0 +12435,75,7.75,11,0.0 +12435,4,22,37,0.0 +12435,36,19,9,0.0 +12435,19,9.2,3,0.0 +12435,44,19.45,15,0.0 +12435,31,12.5,46,0.0 +12435,1,18,9,0.0 +12435,9,97,10,0.0 +12435,15,15.5,1,0.0 +12435,48,12.75,5,0.0 +12435,14,23.25,42,0.0 +12435,21,10,32,0.0 +12435,27,43.9,38,0.0 +12435,51,53,23,0.0 +12435,47,9.5,20,0.0 +12435,49,20,49,0.0 +12435,18,62.5,38,0.0 +12435,77,13,35,0.0 +12435,72,34.8,47,0.0 +12435,59,55,25,0.0 +12435,11,21,48,0.0 +12435,32,32,17,0.0 +12435,23,9,19,0.0 +12435,64,33.25,4,0.0 +12435,67,14,4,0.0 +12435,33,2.5,41,0.0 +12435,43,46,34,0.0 +12435,54,7.45,19,0.0 +12435,35,18,32,0.0 +12435,20,81,45,0.0 +12435,56,38,29,0.0 +12435,73,15,25,0.0 +12435,10,31,1,0.0 +12435,74,10,8,0.0 +12435,39,18,14,0.0 +12436,27,43.9,7,0.0 +12436,23,9,40,0.0 +12436,55,24,37,0.0 +12436,15,15.5,3,0.0 +12436,3,10,8,0.0 +12436,38,263.5,3,0.0 +12436,17,39,29,0.0 +12436,35,18,16,0.0 +12436,47,9.5,9,0.0 +12436,59,55,35,0.0 +12436,37,26,5,0.0 +12436,58,13.25,7,0.0 +12436,28,45.6,22,0.0 +12436,41,9.65,29,0.0 +12436,29,123.79,2,0.0 +12436,73,15,5,0.0 +12436,64,33.25,31,0.0 +12436,2,19,8,0.0 +12436,44,19.45,19,0.0 +12436,22,21,19,0.0 +12436,54,7.45,39,0.0 +12436,11,21,30,0.0 +12436,61,28.5,33,0.0 +12436,43,46,10,0.0 +12436,69,36,2,0.0 +12436,12,38,40,0.0 +12436,75,7.75,35,0.0 +12436,53,32.8,29,0.0 +12436,19,9.2,42,0.0 +12436,7,30,41,0.0 +12436,62,49.3,14,0.0 +12436,10,31,26,0.0 +12436,45,9.5,23,0.0 +12436,1,18,37,0.0 +12436,20,81,38,0.0 +12436,40,18.4,31,0.0 +12436,24,4.5,11,0.0 +12436,4,22,22,0.0 +12436,6,25,47,0.0 +12436,60,34,24,0.0 +12436,9,97,48,0.0 +12436,57,19.5,5,0.0 +12436,18,62.5,24,0.0 +12436,71,21.5,49,0.0 +12436,32,32,25,0.0 +12436,13,6,2,0.0 +12436,14,23.25,23,0.0 +12436,70,15,12,0.0 +12436,63,43.9,29,0.0 +12436,67,14,4,0.0 +12436,25,14,4,0.0 +12436,66,17,14,0.0 +12436,5,21.35,2,0.0 +12436,49,20,23,0.0 +12436,46,12,33,0.0 +12436,33,2.5,27,0.0 +12436,56,38,1,0.0 +12436,30,25.89,7,0.0 +12436,51,53,40,0.0 +12436,50,16.25,40,0.0 +12436,16,17.45,9,0.0 +12436,68,12.5,3,0.0 +12436,34,14,40,0.0 +12436,26,31.23,32,0.0 +12436,48,12.75,40,0.0 +12437,55,24,32,0.0 +12437,52,7,35,0.0 +12437,40,18.4,24,0.0 +12437,42,14,48,0.0 +12437,7,30,36,0.0 +12437,26,31.23,18,0.0 +12437,24,4.5,13,0.0 +12437,4,22,22,0.0 +12437,14,23.25,30,0.0 +12437,61,28.5,37,0.0 +12437,41,9.65,10,0.0 +12437,43,46,45,0.0 +12437,64,33.25,8,0.0 +12437,33,2.5,48,0.0 +12437,10,31,27,0.0 +12437,46,12,47,0.0 +12437,71,21.5,1,0.0 +12437,49,20,13,0.0 +12437,35,18,34,0.0 +12437,28,45.6,43,0.0 +12437,9,97,7,0.0 +12437,45,9.5,14,0.0 +12437,50,16.25,38,0.0 +12437,72,34.8,49,0.0 +12437,48,12.75,27,0.0 +12437,58,13.25,2,0.0 +12437,8,40,36,0.0 +12437,27,43.9,4,0.0 +12437,16,17.45,3,0.0 +12437,77,13,1,0.0 +12437,15,15.5,4,0.0 +12437,74,10,38,0.0 +12437,62,49.3,19,0.0 +12437,32,32,29,0.0 +12437,21,10,37,0.0 +12437,6,25,36,0.0 +12437,47,9.5,12,0.0 +12437,66,17,20,0.0 +12437,18,62.5,27,0.0 +12437,68,12.5,10,0.0 +12437,30,25.89,8,0.0 +12437,36,19,14,0.0 +12437,75,7.75,11,0.0 +12437,13,6,7,0.0 +12437,53,32.8,41,0.0 +12437,17,39,14,0.0 +12437,31,12.5,8,0.0 +12437,65,21.05,37,0.0 +12437,69,36,39,0.0 +12437,39,18,5,0.0 +12438,57,19.5,34,0.0 +12438,16,17.45,40,0.0 +12438,47,9.5,5,0.0 +12438,64,33.25,1,0.0 +12438,67,14,49,0.0 +12438,44,19.45,12,0.0 +12438,77,13,1,0.0 +12438,58,13.25,10,0.0 +12438,37,26,12,0.0 +12438,65,21.05,3,0.0 +12438,46,12,24,0.0 +12438,43,46,24,0.0 +12438,8,40,18,0.0 +12438,26,31.23,32,0.0 +12438,2,19,42,0.0 +12438,29,123.79,22,0.0 +12438,45,9.5,47,0.0 +12438,53,32.8,22,0.0 +12438,27,43.9,1,0.0 +12438,11,21,11,0.0 +12438,35,18,27,0.0 +12438,71,21.5,27,0.0 +12438,17,39,39,0.0 +12438,51,53,16,0.0 +12438,39,18,10,0.0 +12438,49,20,10,0.0 +12438,72,34.8,7,0.0 +12438,6,25,45,0.0 +12438,9,97,43,0.0 +12438,22,21,14,0.0 +12438,24,4.5,6,0.0 +12438,28,45.6,46,0.0 +12438,19,9.2,14,0.0 +12438,32,32,30,0.0 +12438,30,25.89,34,0.0 +12438,23,9,26,0.0 +12438,21,10,47,0.0 +12438,40,18.4,20,0.0 +12438,15,15.5,15,0.0 +12438,55,24,19,0.0 +12438,73,15,9,0.0 +12438,52,7,30,0.0 +12438,25,14,22,0.0 +12438,34,14,18,0.0 +12438,10,31,49,0.0 +12438,54,7.45,14,0.0 +12438,56,38,29,0.0 +12438,59,55,7,0.0 +12438,4,22,17,0.0 +12438,48,12.75,28,0.0 +12438,69,36,47,0.0 +12438,75,7.75,2,0.0 +12438,7,30,20,0.0 +12439,28,45.6,43,0.0 +12439,23,9,25,0.0 +12439,44,19.45,25,0.0 +12439,73,15,32,0.0 +12439,3,10,30,0.0 +12439,8,40,15,0.0 +12439,2,19,48,0.0 +12439,29,123.79,11,0.0 +12439,9,97,17,0.0 +12439,68,12.5,21,0.0 +12439,17,39,14,0.0 +12439,16,17.45,16,0.0 +12439,42,14,4,0.0 +12439,48,12.75,22,0.0 +12439,49,20,14,0.0 +12439,4,22,4,0.0 +12439,27,43.9,3,0.0 +12439,71,21.5,32,0.0 +12439,6,25,5,0.0 +12439,55,24,42,0.0 +12439,1,18,23,0.0 +12439,57,19.5,7,0.0 +12439,36,19,13,0.0 +12439,26,31.23,24,0.0 +12439,45,9.5,32,0.0 +12439,18,62.5,29,0.0 +12439,46,12,1,0.0 +12439,34,14,6,0.0 +12439,53,32.8,31,0.0 +12439,56,38,4,0.0 +12439,52,7,38,0.0 +12439,47,9.5,19,0.0 +12439,61,28.5,30,0.0 +12439,76,18,17,0.0 +12439,51,53,4,0.0 +12439,70,15,46,0.0 +12439,30,25.89,25,0.0 +12439,33,2.5,37,0.0 +12439,41,9.65,24,0.0 +12439,64,33.25,43,0.0 +12439,63,43.9,15,0.0 +12439,22,21,13,0.0 +12439,25,14,39,0.0 +12439,38,263.5,23,0.0 +12439,74,10,44,0.0 +12439,37,26,42,0.0 +12439,35,18,37,0.0 +12439,10,31,23,0.0 +12439,43,46,15,0.0 +12439,75,7.75,49,0.0 +12439,32,32,41,0.0 +12439,62,49.3,25,0.0 +12439,58,13.25,39,0.0 +12439,20,81,31,0.0 +12439,60,34,47,0.0 +12439,39,18,32,0.0 +12439,7,30,11,0.0 +12439,72,34.8,50,0.0 +12439,5,21.35,33,0.0 +12439,12,38,44,0.0 +12439,69,36,2,0.0 +12439,59,55,34,0.0 +12439,19,9.2,36,0.0 +12439,54,7.45,11,0.0 +12439,13,6,45,0.0 +12439,67,14,6,0.0 +12439,21,10,41,0.0 +12439,50,16.25,6,0.0 +12439,65,21.05,8,0.0 +12439,24,4.5,11,0.0 +12439,66,17,14,0.0 +12440,24,4.5,30,0.0 +12440,19,9.2,6,0.0 +12440,22,21,31,0.0 +12440,73,15,26,0.0 +12440,2,19,32,0.0 +12440,60,34,5,0.0 +12440,15,15.5,16,0.0 +12440,28,45.6,32,0.0 +12440,46,12,25,0.0 +12440,38,263.5,50,0.0 +12440,16,17.45,48,0.0 +12440,29,123.79,35,0.0 +12440,27,43.9,43,0.0 +12440,75,7.75,32,0.0 +12440,74,10,2,0.0 +12440,14,23.25,32,0.0 +12440,71,21.5,49,0.0 +12440,69,36,33,0.0 +12440,47,9.5,16,0.0 +12440,4,22,36,0.0 +12440,57,19.5,9,0.0 +12440,61,28.5,7,0.0 +12440,65,21.05,2,0.0 +12440,1,18,44,0.0 +12440,42,14,26,0.0 +12440,67,14,27,0.0 +12440,50,16.25,7,0.0 +12440,33,2.5,12,0.0 +12440,49,20,44,0.0 +12440,36,19,9,0.0 +12440,44,19.45,5,0.0 +12440,58,13.25,12,0.0 +12440,41,9.65,34,0.0 +12440,43,46,5,0.0 +12440,59,55,28,0.0 +12440,17,39,13,0.0 +12440,48,12.75,31,0.0 +12440,66,17,34,0.0 +12440,62,49.3,1,0.0 +12440,11,21,50,0.0 +12440,32,32,11,0.0 +12440,8,40,3,0.0 +12440,30,25.89,26,0.0 +12440,68,12.5,21,0.0 +12440,18,62.5,1,0.0 +12440,20,81,19,0.0 +12440,70,15,40,0.0 +12440,37,26,45,0.0 +12440,39,18,28,0.0 +12440,77,13,10,0.0 +12440,63,43.9,46,0.0 +12440,12,38,20,0.0 +12440,7,30,10,0.0 +12440,72,34.8,13,0.0 +12440,64,33.25,36,0.0 +12440,76,18,15,0.0 +12440,40,18.4,37,0.0 +12440,9,97,48,0.0 +12440,56,38,31,0.0 +12440,51,53,11,0.0 +12440,21,10,19,0.0 +12440,35,18,25,0.0 +12440,3,10,46,0.0 +12440,31,12.5,22,0.0 +12440,5,21.35,3,0.0 +12440,25,14,30,0.0 +12440,6,25,3,0.0 +12440,10,31,30,0.0 +12440,55,24,46,0.0 +12441,74,10,4,0.0 +12441,18,62.5,37,0.0 +12441,71,21.5,15,0.0 +12441,34,14,44,0.0 +12441,60,34,50,0.0 +12441,49,20,35,0.0 +12441,67,14,47,0.0 +12441,29,123.79,7,0.0 +12441,52,7,14,0.0 +12441,57,19.5,38,0.0 +12441,9,97,47,0.0 +12441,55,24,35,0.0 +12441,31,12.5,38,0.0 +12441,37,26,30,0.0 +12441,77,13,41,0.0 +12441,41,9.65,23,0.0 +12441,13,6,42,0.0 +12441,66,17,43,0.0 +12441,75,7.75,44,0.0 +12441,14,23.25,24,0.0 +12441,24,4.5,5,0.0 +12441,12,38,41,0.0 +12441,28,45.6,47,0.0 +12441,76,18,6,0.0 +12441,72,34.8,13,0.0 +12441,25,14,21,0.0 +12441,53,32.8,12,0.0 +12441,61,28.5,37,0.0 +12441,8,40,3,0.0 +12441,22,21,8,0.0 +12441,32,32,8,0.0 +12441,20,81,46,0.0 +12441,51,53,35,0.0 +12441,54,7.45,20,0.0 +12441,7,30,38,0.0 +12441,36,19,20,0.0 +12441,15,15.5,7,0.0 +12441,39,18,3,0.0 +12441,1,18,50,0.0 +12441,16,17.45,11,0.0 +12441,69,36,37,0.0 +12441,3,10,15,0.0 +12441,40,18.4,9,0.0 +12441,43,46,27,0.0 +12441,5,21.35,16,0.0 +12441,38,263.5,47,0.0 +12441,59,55,42,0.0 +12441,64,33.25,12,0.0 +12441,68,12.5,46,0.0 +12441,65,21.05,9,0.0 +12442,5,21.35,40,0.0 +12442,15,15.5,3,0.0 +12442,58,13.25,44,0.0 +12442,41,9.65,8,0.0 +12442,69,36,23,0.0 +12442,18,62.5,32,0.0 +12442,6,25,48,0.0 +12442,44,19.45,37,0.0 +12442,64,33.25,12,0.0 +12442,75,7.75,40,0.0 +12442,63,43.9,8,0.0 +12442,29,123.79,8,0.0 +12442,48,12.75,45,0.0 +12442,3,10,30,0.0 +12442,28,45.6,24,0.0 +12442,67,14,15,0.0 +12442,19,9.2,22,0.0 +12442,61,28.5,31,0.0 +12442,17,39,44,0.0 +12442,55,24,32,0.0 +12442,21,10,21,0.0 +12442,24,4.5,13,0.0 +12442,39,18,18,0.0 +12442,43,46,26,0.0 +12442,33,2.5,21,0.0 +12442,32,32,28,0.0 +12442,51,53,34,0.0 +12442,59,55,16,0.0 +12442,1,18,11,0.0 +12442,73,15,17,0.0 +12442,56,38,9,0.0 +12442,74,10,9,0.0 +12442,57,19.5,40,0.0 +12442,71,21.5,50,0.0 +12442,4,22,18,0.0 +12442,12,38,31,0.0 +12442,70,15,44,0.0 +12442,25,14,20,0.0 +12442,8,40,50,0.0 +12442,46,12,24,0.0 +12442,26,31.23,40,0.0 +12442,31,12.5,44,0.0 +12442,38,263.5,9,0.0 +12442,76,18,25,0.0 +12442,16,17.45,48,0.0 +12442,53,32.8,18,0.0 +12442,52,7,10,0.0 +12442,36,19,22,0.0 +12442,66,17,21,0.0 +12442,40,18.4,1,0.0 +12442,60,34,17,0.0 +12442,68,12.5,33,0.0 +12443,13,6,5,0.0 +12443,30,25.89,17,0.0 +12443,66,17,37,0.0 +12443,25,14,27,0.0 +12443,22,21,1,0.0 +12443,58,13.25,25,0.0 +12443,59,55,34,0.0 +12443,71,21.5,11,0.0 +12443,73,15,27,0.0 +12443,75,7.75,48,0.0 +12443,7,30,25,0.0 +12443,67,14,17,0.0 +12443,14,23.25,18,0.0 +12443,45,9.5,19,0.0 +12443,62,49.3,35,0.0 +12443,60,34,41,0.0 +12443,29,123.79,31,0.0 +12443,36,19,34,0.0 +12443,19,9.2,19,0.0 +12443,10,31,49,0.0 +12443,69,36,10,0.0 +12443,3,10,37,0.0 +12443,38,263.5,13,0.0 +12443,68,12.5,39,0.0 +12443,21,10,49,0.0 +12443,15,15.5,31,0.0 +12443,50,16.25,42,0.0 +12443,72,34.8,30,0.0 +12443,43,46,37,0.0 +12443,33,2.5,2,0.0 +12443,52,7,12,0.0 +12443,40,18.4,32,0.0 +12443,28,45.6,13,0.0 +12444,47,9.5,21,0.0 +12444,46,12,1,0.0 +12444,28,45.6,10,0.0 +12444,10,31,6,0.0 +12444,77,13,46,0.0 +12444,69,36,15,0.0 +12444,50,16.25,23,0.0 +12444,30,25.89,40,0.0 +12444,19,9.2,24,0.0 +12444,57,19.5,35,0.0 +12444,24,4.5,38,0.0 +12444,35,18,18,0.0 +12445,40,18.4,36,0.0 +12445,13,6,18,0.0 +12445,9,97,45,0.0 +12445,77,13,2,0.0 +12445,74,10,46,0.0 +12445,27,43.9,16,0.0 +12445,16,17.45,11,0.0 +12445,18,62.5,22,0.0 +12445,59,55,44,0.0 +12445,39,18,18,0.0 +12445,33,2.5,42,0.0 +12445,73,15,11,0.0 +12445,1,18,31,0.0 +12445,50,16.25,18,0.0 +12445,35,18,10,0.0 +12445,32,32,25,0.0 +12445,15,15.5,10,0.0 +12445,43,46,37,0.0 +12445,76,18,15,0.0 +12445,48,12.75,20,0.0 +12445,36,19,6,0.0 +12445,72,34.8,12,0.0 +12445,45,9.5,24,0.0 +12445,28,45.6,43,0.0 +12445,47,9.5,9,0.0 +12445,5,21.35,39,0.0 +12445,51,53,13,0.0 +12445,60,34,19,0.0 +12445,30,25.89,9,0.0 +12445,2,19,23,0.0 +12445,17,39,19,0.0 +12445,37,26,28,0.0 +12445,20,81,33,0.0 +12445,71,21.5,32,0.0 +12445,26,31.23,34,0.0 +12445,65,21.05,29,0.0 +12445,62,49.3,12,0.0 +12445,42,14,27,0.0 +12445,70,15,13,0.0 +12445,12,38,11,0.0 +12445,44,19.45,47,0.0 +12445,58,13.25,24,0.0 +12445,61,28.5,48,0.0 +12445,69,36,34,0.0 +12445,25,14,9,0.0 +12445,7,30,23,0.0 +12445,63,43.9,6,0.0 +12445,8,40,40,0.0 +12445,68,12.5,20,0.0 +12445,34,14,30,0.0 +12445,52,7,21,0.0 +12445,41,9.65,9,0.0 +12445,38,263.5,3,0.0 +12445,46,12,30,0.0 +12445,10,31,19,0.0 +12445,3,10,32,0.0 +12445,24,4.5,37,0.0 +12445,6,25,4,0.0 +12445,14,23.25,39,0.0 +12445,11,21,35,0.0 +12445,23,9,6,0.0 +12445,55,24,43,0.0 +12445,54,7.45,7,0.0 +12445,49,20,50,0.0 +12445,66,17,22,0.0 +12445,21,10,28,0.0 +12445,64,33.25,40,0.0 +12445,57,19.5,46,0.0 +12445,67,14,29,0.0 +12445,75,7.75,40,0.0 +12445,29,123.79,16,0.0 +12445,53,32.8,19,0.0 +12445,31,12.5,20,0.0 +12445,19,9.2,14,0.0 +12445,4,22,43,0.0 +12445,22,21,18,0.0 +12446,47,9.5,5,0.0 +12446,23,9,36,0.0 +12446,2,19,35,0.0 +12446,19,9.2,34,0.0 +12446,51,53,35,0.0 +12446,16,17.45,47,0.0 +12446,3,10,39,0.0 +12446,40,18.4,28,0.0 +12446,75,7.75,34,0.0 +12446,62,49.3,49,0.0 +12446,74,10,25,0.0 +12446,20,81,37,0.0 +12446,34,14,46,0.0 +12446,24,4.5,26,0.0 +12446,35,18,24,0.0 +12446,12,38,17,0.0 +12446,50,16.25,44,0.0 +12446,52,7,35,0.0 +12446,14,23.25,5,0.0 +12446,53,32.8,31,0.0 +12446,26,31.23,23,0.0 +12446,32,32,18,0.0 +12446,4,22,13,0.0 +12446,45,9.5,29,0.0 +12446,72,34.8,8,0.0 +12446,11,21,13,0.0 +12446,43,46,4,0.0 +12446,9,97,44,0.0 +12446,76,18,21,0.0 +12446,21,10,50,0.0 +12446,46,12,5,0.0 +12446,33,2.5,16,0.0 +12446,63,43.9,26,0.0 +12446,60,34,39,0.0 +12446,36,19,42,0.0 +12446,57,19.5,41,0.0 +12446,49,20,25,0.0 +12446,18,62.5,19,0.0 +12446,28,45.6,44,0.0 +12446,8,40,38,0.0 +12446,68,12.5,28,0.0 +12446,42,14,15,0.0 +12446,67,14,46,0.0 +12446,25,14,4,0.0 +12446,1,18,45,0.0 +12446,29,123.79,34,0.0 +12446,54,7.45,44,0.0 +12446,6,25,43,0.0 +12446,10,31,41,0.0 +12446,17,39,22,0.0 +12446,61,28.5,28,0.0 +12446,71,21.5,16,0.0 +12446,55,24,24,0.0 +12446,69,36,13,0.0 +12447,50,16.25,17,0.0 +12447,60,34,5,0.0 +12447,43,46,20,0.0 +12447,31,12.5,39,0.0 +12447,27,43.9,32,0.0 +12447,46,12,8,0.0 +12447,40,18.4,30,0.0 +12447,36,19,5,0.0 +12447,66,17,2,0.0 +12447,72,34.8,44,0.0 +12447,37,26,13,0.0 +12447,68,12.5,13,0.0 +12447,74,10,45,0.0 +12447,9,97,21,0.0 +12447,65,21.05,24,0.0 +12447,53,32.8,20,0.0 +12447,61,28.5,10,0.0 +12447,6,25,19,0.0 +12447,1,18,10,0.0 +12447,70,15,30,0.0 +12447,42,14,38,0.0 +12447,24,4.5,14,0.0 +12447,64,33.25,16,0.0 +12447,39,18,7,0.0 +12447,7,30,6,0.0 +12447,48,12.75,28,0.0 +12447,25,14,20,0.0 +12447,56,38,7,0.0 +12447,17,39,21,0.0 +12447,47,9.5,5,0.0 +12447,2,19,19,0.0 +12447,3,10,8,0.0 +12447,52,7,22,0.0 +12447,32,32,9,0.0 +12447,44,19.45,18,0.0 +12447,33,2.5,32,0.0 +12447,16,17.45,40,0.0 +12447,69,36,49,0.0 +12447,23,9,42,0.0 +12447,19,9.2,21,0.0 +12447,71,21.5,20,0.0 +12447,59,55,14,0.0 +12447,41,9.65,25,0.0 +12447,13,6,47,0.0 +12447,63,43.9,35,0.0 +12447,49,20,11,0.0 +12447,55,24,28,0.0 +12447,57,19.5,40,0.0 +12447,28,45.6,34,0.0 +12447,34,14,20,0.0 +12447,67,14,6,0.0 +12447,38,263.5,42,0.0 +12447,14,23.25,21,0.0 +12447,75,7.75,22,0.0 +12447,11,21,21,0.0 +12447,15,15.5,35,0.0 +12447,73,15,13,0.0 +12447,29,123.79,48,0.0 +12447,22,21,20,0.0 +12447,18,62.5,24,0.0 +12447,10,31,21,0.0 +12447,51,53,34,0.0 +12447,35,18,27,0.0 +12447,54,7.45,5,0.0 +12447,4,22,22,0.0 +12447,77,13,30,0.0 +12447,20,81,1,0.0 +12447,21,10,14,0.0 +12447,12,38,1,0.0 +12447,76,18,5,0.0 +12447,30,25.89,6,0.0 +12448,40,18.4,13,0.0 +12448,46,12,42,0.0 +12448,57,19.5,2,0.0 +12448,44,19.45,48,0.0 +12448,31,12.5,46,0.0 +12448,69,36,31,0.0 +12448,66,17,30,0.0 +12448,37,26,39,0.0 +12448,3,10,9,0.0 +12448,25,14,6,0.0 +12448,11,21,37,0.0 +12448,52,7,33,0.0 +12448,72,34.8,42,0.0 +12448,24,4.5,20,0.0 +12448,29,123.79,40,0.0 +12448,20,81,42,0.0 +12448,28,45.6,43,0.0 +12448,36,19,3,0.0 +12448,33,2.5,8,0.0 +12448,59,55,20,0.0 +12448,8,40,10,0.0 +12448,63,43.9,31,0.0 +12449,72,34.8,28,0.0 +12449,1,18,12,0.0 +12449,24,4.5,22,0.0 +12449,10,31,49,0.0 +12449,71,21.5,24,0.0 +12449,23,9,5,0.0 +12449,37,26,16,0.0 +12449,76,18,9,0.0 +12449,20,81,37,0.0 +12449,70,15,7,0.0 +12449,60,34,50,0.0 +12449,15,15.5,24,0.0 +12449,17,39,40,0.0 +12449,73,15,8,0.0 +12449,34,14,26,0.0 +12449,21,10,19,0.0 +12449,49,20,28,0.0 +12449,48,12.75,34,0.0 +12449,3,10,35,0.0 +12449,66,17,38,0.0 +12449,39,18,19,0.0 +12449,62,49.3,45,0.0 +12449,47,9.5,10,0.0 +12449,26,31.23,5,0.0 +12449,16,17.45,9,0.0 +12449,68,12.5,23,0.0 +12449,75,7.75,34,0.0 +12449,63,43.9,39,0.0 +12449,35,18,5,0.0 +12449,4,22,9,0.0 +12449,57,19.5,15,0.0 +12449,32,32,32,0.0 +12449,40,18.4,12,0.0 +12449,50,16.25,21,0.0 +12449,22,21,25,0.0 +12449,7,30,42,0.0 +12449,67,14,14,0.0 +12449,19,9.2,8,0.0 +12449,9,97,50,0.0 +12449,38,263.5,14,0.0 +12449,74,10,4,0.0 +12449,8,40,4,0.0 +12449,6,25,23,0.0 +12449,52,7,41,0.0 +12449,25,14,33,0.0 +12449,33,2.5,16,0.0 +12449,51,53,46,0.0 +12449,61,28.5,18,0.0 +12449,13,6,44,0.0 +12449,58,13.25,31,0.0 +12449,11,21,28,0.0 +12449,27,43.9,14,0.0 +12449,18,62.5,15,0.0 +12449,46,12,35,0.0 +12449,54,7.45,2,0.0 +12449,14,23.25,18,0.0 +12449,42,14,37,0.0 +12449,41,9.65,34,0.0 +12449,31,12.5,48,0.0 +12449,55,24,30,0.0 +12449,28,45.6,45,0.0 +12449,65,21.05,2,0.0 +12450,9,97,12,0.0 +12450,19,9.2,16,0.0 +12450,70,15,35,0.0 +12450,26,31.23,1,0.0 +12450,16,17.45,40,0.0 +12450,33,2.5,22,0.0 +12450,15,15.5,44,0.0 +12450,71,21.5,35,0.0 +12450,46,12,28,0.0 +12450,67,14,40,0.0 +12450,75,7.75,1,0.0 +12450,63,43.9,26,0.0 +12450,25,14,39,0.0 +12450,21,10,7,0.0 +12450,55,24,1,0.0 +12450,32,32,20,0.0 +12450,56,38,26,0.0 +12450,29,123.79,34,0.0 +12450,62,49.3,10,0.0 +12450,43,46,11,0.0 +12450,1,18,13,0.0 +12450,38,263.5,19,0.0 +12450,64,33.25,39,0.0 +12450,57,19.5,12,0.0 +12450,42,14,6,0.0 +12450,68,12.5,13,0.0 +12450,22,21,41,0.0 +12450,7,30,34,0.0 +12450,41,9.65,34,0.0 +12450,30,25.89,23,0.0 +12450,3,10,41,0.0 +12450,24,4.5,47,0.0 +12450,44,19.45,28,0.0 +12450,20,81,28,0.0 +12450,11,21,35,0.0 +12450,66,17,10,0.0 +12450,4,22,44,0.0 +12450,47,9.5,46,0.0 +12450,18,62.5,11,0.0 +12450,45,9.5,4,0.0 +12450,23,9,50,0.0 +12450,77,13,11,0.0 +12450,39,18,38,0.0 +12450,10,31,41,0.0 +12450,72,34.8,38,0.0 +12450,59,55,18,0.0 +12450,2,19,50,0.0 +12450,49,20,6,0.0 +12450,51,53,19,0.0 +12450,8,40,22,0.0 +12450,17,39,33,0.0 +12450,69,36,39,0.0 +12450,13,6,11,0.0 +12450,52,7,34,0.0 +12450,31,12.5,36,0.0 +12450,37,26,45,0.0 +12450,35,18,38,0.0 +12450,54,7.45,7,0.0 +12450,50,16.25,44,0.0 +12450,5,21.35,33,0.0 +12450,14,23.25,31,0.0 +12450,28,45.6,36,0.0 +12450,61,28.5,18,0.0 +12450,36,19,17,0.0 +12451,32,32,12,0.0 +12451,43,46,43,0.0 +12451,77,13,4,0.0 +12451,24,4.5,30,0.0 +12451,38,263.5,48,0.0 +12451,33,2.5,44,0.0 +12451,8,40,45,0.0 +12451,10,31,12,0.0 +12451,20,81,36,0.0 +12451,73,15,19,0.0 +12451,45,9.5,10,0.0 +12451,68,12.5,32,0.0 +12451,49,20,41,0.0 +12451,66,17,46,0.0 +12451,72,34.8,4,0.0 +12451,46,12,14,0.0 +12451,47,9.5,8,0.0 +12451,17,39,4,0.0 +12451,11,21,19,0.0 +12451,59,55,21,0.0 +12451,41,9.65,26,0.0 +12451,60,34,33,0.0 +12451,7,30,37,0.0 +12451,36,19,1,0.0 +12451,53,32.8,15,0.0 +12451,31,12.5,37,0.0 +12451,67,14,42,0.0 +12451,65,21.05,1,0.0 +12451,56,38,36,0.0 +12451,64,33.25,42,0.0 +12451,44,19.45,31,0.0 +12451,74,10,9,0.0 +12451,13,6,12,0.0 +12451,61,28.5,45,0.0 +12451,2,19,42,0.0 +12451,62,49.3,4,0.0 +12451,50,16.25,48,0.0 +12451,3,10,27,0.0 +12451,39,18,20,0.0 +12451,27,43.9,45,0.0 +12451,34,14,22,0.0 +12451,25,14,40,0.0 +12451,14,23.25,5,0.0 +12451,29,123.79,10,0.0 +12451,37,26,20,0.0 +12451,1,18,17,0.0 +12452,10,31,16,0.0 +12452,34,14,40,0.0 +12452,17,39,14,0.0 +12452,55,24,48,0.0 +12452,16,17.45,3,0.0 +12452,49,20,47,0.0 +12452,77,13,26,0.0 +12452,3,10,19,0.0 +12452,24,4.5,15,0.0 +12452,42,14,35,0.0 +12452,52,7,45,0.0 +12452,31,12.5,37,0.0 +12452,37,26,21,0.0 +12452,26,31.23,28,0.0 +12452,15,15.5,16,0.0 +12452,54,7.45,36,0.0 +12452,12,38,21,0.0 +12452,69,36,26,0.0 +12452,60,34,28,0.0 +12452,13,6,50,0.0 +12452,56,38,24,0.0 +12452,44,19.45,33,0.0 +12452,23,9,31,0.0 +12452,22,21,26,0.0 +12452,63,43.9,19,0.0 +12452,5,21.35,46,0.0 +12452,7,30,49,0.0 +12452,61,28.5,25,0.0 +12452,38,263.5,6,0.0 +12452,30,25.89,6,0.0 +12452,74,10,1,0.0 +12452,62,49.3,34,0.0 +12452,40,18.4,44,0.0 +12452,50,16.25,11,0.0 +12452,1,18,10,0.0 +12452,51,53,19,0.0 +12452,8,40,6,0.0 +12452,58,13.25,10,0.0 +12452,73,15,42,0.0 +12452,35,18,14,0.0 +12453,55,24,12,0.0 +12453,42,14,2,0.0 +12453,74,10,14,0.0 +12453,54,7.45,4,0.0 +12453,36,19,40,0.0 +12454,16,17.45,34,0.0 +12454,14,23.25,34,0.0 +12454,58,13.25,13,0.0 +12454,18,62.5,48,0.0 +12454,37,26,10,0.0 +12454,25,14,26,0.0 +12454,76,18,25,0.0 +12454,43,46,47,0.0 +12454,11,21,22,0.0 +12454,15,15.5,20,0.0 +12454,12,38,13,0.0 +12454,52,7,44,0.0 +12454,42,14,43,0.0 +12454,7,30,5,0.0 +12454,60,34,8,0.0 +12454,69,36,22,0.0 +12454,55,24,35,0.0 +12454,44,19.45,23,0.0 +12454,34,14,1,0.0 +12454,47,9.5,36,0.0 +12454,27,43.9,11,0.0 +12454,70,15,11,0.0 +12454,46,12,4,0.0 +12454,53,32.8,11,0.0 +12454,29,123.79,34,0.0 +12454,57,19.5,49,0.0 +12454,65,21.05,37,0.0 +12454,51,53,21,0.0 +12454,21,10,22,0.0 +12454,28,45.6,6,0.0 +12454,24,4.5,39,0.0 +12454,49,20,18,0.0 +12454,22,21,7,0.0 +12454,62,49.3,33,0.0 +12454,61,28.5,36,0.0 +12454,39,18,22,0.0 +12454,1,18,1,0.0 +12454,68,12.5,26,0.0 +12454,9,97,5,0.0 +12454,35,18,1,0.0 +12454,59,55,15,0.0 +12454,10,31,13,0.0 +12454,4,22,21,0.0 +12454,2,19,22,0.0 +12454,19,9.2,50,0.0 +12454,54,7.45,14,0.0 +12454,45,9.5,26,0.0 +12454,36,19,44,0.0 +12454,74,10,7,0.0 +12454,20,81,9,0.0 +12454,67,14,30,0.0 +12454,23,9,37,0.0 +12454,56,38,22,0.0 +12454,17,39,28,0.0 +12454,71,21.5,41,0.0 +12454,40,18.4,10,0.0 +12454,48,12.75,43,0.0 +12454,3,10,21,0.0 +12454,75,7.75,28,0.0 +12454,64,33.25,5,0.0 +12454,30,25.89,6,0.0 +12454,66,17,20,0.0 +12454,31,12.5,25,0.0 +12454,50,16.25,28,0.0 +12454,72,34.8,49,0.0 +12454,41,9.65,18,0.0 +12455,21,10,44,0.0 +12455,22,21,22,0.0 +12455,53,32.8,18,0.0 +12455,46,12,49,0.0 +12455,57,19.5,20,0.0 +12455,35,18,25,0.0 +12455,7,30,18,0.0 +12455,60,34,44,0.0 +12455,4,22,16,0.0 +12455,25,14,18,0.0 +12455,29,123.79,15,0.0 +12455,73,15,12,0.0 +12455,42,14,50,0.0 +12455,5,21.35,24,0.0 +12455,32,32,17,0.0 +12455,8,40,20,0.0 +12455,6,25,6,0.0 +12455,19,9.2,40,0.0 +12455,31,12.5,8,0.0 +12455,39,18,21,0.0 +12455,16,17.45,17,0.0 +12455,24,4.5,2,0.0 +12455,1,18,8,0.0 +12455,14,23.25,4,0.0 +12455,15,15.5,10,0.0 +12455,47,9.5,40,0.0 +12455,33,2.5,34,0.0 +12455,44,19.45,3,0.0 +12455,20,81,39,0.0 +12455,23,9,4,0.0 +12455,45,9.5,27,0.0 +12455,48,12.75,14,0.0 +12455,59,55,49,0.0 +12455,18,62.5,37,0.0 +12455,34,14,1,0.0 +12455,26,31.23,38,0.0 +12455,62,49.3,26,0.0 +12455,13,6,32,0.0 +12455,36,19,46,0.0 +12455,50,16.25,17,0.0 +12455,52,7,22,0.0 +12455,69,36,4,0.0 +12456,1,18,13,0.0 +12456,46,12,16,0.0 +12456,57,19.5,41,0.0 +12456,58,13.25,1,0.0 +12456,32,32,10,0.0 +12456,29,123.79,49,0.0 +12456,31,12.5,30,0.0 +12456,55,24,6,0.0 +12456,49,20,30,0.0 +12456,43,46,2,0.0 +12456,5,21.35,36,0.0 +12456,3,10,28,0.0 +12456,77,13,21,0.0 +12456,8,40,9,0.0 +12456,51,53,43,0.0 +12456,21,10,5,0.0 +12456,22,21,16,0.0 +12456,63,43.9,50,0.0 +12456,33,2.5,37,0.0 +12456,17,39,39,0.0 +12456,69,36,22,0.0 +12456,30,25.89,31,0.0 +12456,75,7.75,12,0.0 +12456,45,9.5,20,0.0 +12456,56,38,30,0.0 +12456,34,14,24,0.0 +12456,16,17.45,38,0.0 +12456,67,14,44,0.0 +12456,2,19,50,0.0 +12456,4,22,6,0.0 +12456,68,12.5,49,0.0 +12456,38,263.5,17,0.0 +12456,37,26,30,0.0 +12456,14,23.25,30,0.0 +12456,71,21.5,4,0.0 +12456,64,33.25,45,0.0 +12456,41,9.65,10,0.0 +12456,70,15,15,0.0 +12456,12,38,49,0.0 +12456,53,32.8,50,0.0 +12456,6,25,2,0.0 +12456,24,4.5,33,0.0 +12456,61,28.5,36,0.0 +12456,15,15.5,15,0.0 +12456,62,49.3,33,0.0 +12456,52,7,31,0.0 +12456,40,18.4,23,0.0 +12456,28,45.6,15,0.0 +12456,54,7.45,30,0.0 +12456,26,31.23,48,0.0 +12456,18,62.5,40,0.0 +12456,42,14,3,0.0 +12456,73,15,31,0.0 +12456,65,21.05,48,0.0 +12456,13,6,13,0.0 +12456,20,81,25,0.0 +12456,47,9.5,47,0.0 +12456,44,19.45,10,0.0 +12456,25,14,8,0.0 +12456,76,18,16,0.0 +12457,75,7.75,46,0.0 +12457,27,43.9,5,0.0 +12458,4,22,44,0.0 +12458,6,25,15,0.0 +12458,56,38,15,0.0 +12458,8,40,43,0.0 +12458,19,9.2,40,0.0 +12458,43,46,33,0.0 +12458,30,25.89,5,0.0 +12458,63,43.9,9,0.0 +12458,22,21,46,0.0 +12458,64,33.25,7,0.0 +12458,42,14,31,0.0 +12458,28,45.6,48,0.0 +12458,52,7,10,0.0 +12458,50,16.25,26,0.0 +12458,21,10,36,0.0 +12458,18,62.5,16,0.0 +12458,16,17.45,42,0.0 +12458,23,9,11,0.0 +12458,39,18,37,0.0 +12458,65,21.05,48,0.0 +12458,34,14,9,0.0 +12458,62,49.3,49,0.0 +12458,38,263.5,43,0.0 +12458,59,55,45,0.0 +12458,35,18,34,0.0 +12458,25,14,4,0.0 +12458,29,123.79,28,0.0 +12458,13,6,48,0.0 +12458,20,81,30,0.0 +12458,7,30,2,0.0 +12458,74,10,18,0.0 +12458,58,13.25,39,0.0 +12458,32,32,38,0.0 +12458,15,15.5,22,0.0 +12458,33,2.5,45,0.0 +12458,54,7.45,38,0.0 +12458,76,18,47,0.0 +12458,3,10,16,0.0 +12458,57,19.5,26,0.0 +12458,72,34.8,2,0.0 +12458,41,9.65,1,0.0 +12458,60,34,10,0.0 +12458,46,12,35,0.0 +12458,61,28.5,46,0.0 +12458,24,4.5,38,0.0 +12458,37,26,31,0.0 +12458,75,7.75,44,0.0 +12458,10,31,15,0.0 +12458,71,21.5,47,0.0 +12458,69,36,28,0.0 +12458,51,53,24,0.0 +12458,40,18.4,39,0.0 +12458,12,38,20,0.0 +12458,9,97,33,0.0 +12458,47,9.5,25,0.0 +12458,36,19,34,0.0 +12459,1,18,11,0.0 +12459,59,55,7,0.0 +12459,64,33.25,12,0.0 +12459,15,15.5,25,0.0 +12459,8,40,36,0.0 +12459,75,7.75,1,0.0 +12459,57,19.5,2,0.0 +12459,27,43.9,39,0.0 +12459,26,31.23,47,0.0 +12459,47,9.5,9,0.0 +12459,11,21,28,0.0 +12459,18,62.5,16,0.0 +12459,67,14,27,0.0 +12459,49,20,26,0.0 +12459,40,18.4,35,0.0 +12459,52,7,7,0.0 +12459,7,30,11,0.0 +12459,69,36,17,0.0 +12459,41,9.65,12,0.0 +12459,14,23.25,31,0.0 +12459,77,13,41,0.0 +12459,17,39,47,0.0 +12459,10,31,7,0.0 +12459,50,16.25,13,0.0 +12459,21,10,41,0.0 +12460,40,18.4,25,0.0 +12460,63,43.9,15,0.0 +12460,57,19.5,45,0.0 +12460,68,12.5,1,0.0 +12460,45,9.5,27,0.0 +12460,9,97,3,0.0 +12460,16,17.45,15,0.0 +12460,4,22,37,0.0 +12460,3,10,14,0.0 +12460,29,123.79,19,0.0 +12460,35,18,44,0.0 +12460,10,31,45,0.0 +12460,42,14,30,0.0 +12460,62,49.3,15,0.0 +12460,49,20,8,0.0 +12460,26,31.23,28,0.0 +12460,48,12.75,42,0.0 +12460,8,40,50,0.0 +12460,34,14,31,0.0 +12460,14,23.25,42,0.0 +12460,17,39,3,0.0 +12460,50,16.25,34,0.0 +12460,24,4.5,8,0.0 +12460,69,36,23,0.0 +12460,76,18,23,0.0 +12460,59,55,23,0.0 +12460,7,30,5,0.0 +12460,73,15,3,0.0 +12460,13,6,44,0.0 +12460,43,46,18,0.0 +12460,23,9,24,0.0 +12460,30,25.89,33,0.0 +12460,21,10,1,0.0 +12460,36,19,18,0.0 +12460,25,14,45,0.0 +12460,32,32,37,0.0 +12460,74,10,23,0.0 +12460,31,12.5,31,0.0 +12460,38,263.5,34,0.0 +12460,2,19,32,0.0 +12460,12,38,14,0.0 +12460,51,53,11,0.0 +12460,22,21,41,0.0 +12460,1,18,45,0.0 +12460,47,9.5,9,0.0 +12460,65,21.05,41,0.0 +12460,55,24,26,0.0 +12460,44,19.45,27,0.0 +12460,39,18,43,0.0 +12460,37,26,19,0.0 +12460,54,7.45,19,0.0 +12460,27,43.9,14,0.0 +12460,11,21,25,0.0 +12460,19,9.2,28,0.0 +12460,67,14,31,0.0 +12461,13,6,50,0.0 +12461,73,15,4,0.0 +12462,33,2.5,20,0.0 +12462,18,62.5,2,0.0 +12462,32,32,32,0.0 +12462,75,7.75,43,0.0 +12462,27,43.9,35,0.0 +12462,68,12.5,34,0.0 +12463,46,12,38,0.0 +12463,53,32.8,6,0.0 +12463,2,19,40,0.0 +12463,63,43.9,8,0.0 +12463,10,31,37,0.0 +12463,68,12.5,43,0.0 +12463,43,46,37,0.0 +12463,37,26,14,0.0 +12463,38,263.5,35,0.0 +12463,22,21,13,0.0 +12463,14,23.25,39,0.0 +12463,65,21.05,7,0.0 +12463,9,97,20,0.0 +12463,34,14,32,0.0 +12463,12,38,15,0.0 +12463,5,21.35,4,0.0 +12463,1,18,40,0.0 +12463,28,45.6,7,0.0 +12463,71,21.5,32,0.0 +12463,47,9.5,16,0.0 +12463,55,24,27,0.0 +12463,70,15,32,0.0 +12463,73,15,37,0.0 +12463,39,18,10,0.0 +12463,54,7.45,46,0.0 +12463,59,55,3,0.0 +12463,7,30,27,0.0 +12463,19,9.2,24,0.0 +12463,67,14,2,0.0 +12463,35,18,21,0.0 +12463,16,17.45,11,0.0 +12463,33,2.5,28,0.0 +12463,21,10,5,0.0 +12463,11,21,24,0.0 +12463,20,81,39,0.0 +12463,13,6,21,0.0 +12463,42,14,49,0.0 +12463,57,19.5,37,0.0 +12463,69,36,3,0.0 +12463,31,12.5,43,0.0 +12464,48,12.75,13,0.0 +12464,61,28.5,8,0.0 +12464,10,31,40,0.0 +12464,74,10,37,0.0 +12464,29,123.79,25,0.0 +12464,7,30,37,0.0 +12464,3,10,35,0.0 +12464,17,39,27,0.0 +12464,70,15,47,0.0 +12464,49,20,12,0.0 +12465,65,21.05,3,0.0 +12465,36,19,8,0.0 +12465,39,18,11,0.0 +12465,57,19.5,5,0.0 +12465,64,33.25,44,0.0 +12465,26,31.23,50,0.0 +12465,70,15,14,0.0 +12465,31,12.5,2,0.0 +12465,63,43.9,41,0.0 +12465,77,13,50,0.0 +12465,44,19.45,25,0.0 +12465,27,43.9,14,0.0 +12465,41,9.65,30,0.0 +12465,59,55,41,0.0 +12465,75,7.75,8,0.0 +12465,62,49.3,37,0.0 +12465,16,17.45,22,0.0 +12465,10,31,9,0.0 +12465,6,25,10,0.0 +12465,20,81,7,0.0 +12465,58,13.25,27,0.0 +12465,24,4.5,19,0.0 +12465,71,21.5,25,0.0 +12466,41,9.65,4,0.0 +12466,77,13,44,0.0 +12466,11,21,45,0.0 +12466,34,14,8,0.0 +12466,67,14,36,0.0 +12466,76,18,33,0.0 +12466,62,49.3,19,0.0 +12466,29,123.79,20,0.0 +12466,24,4.5,32,0.0 +12466,26,31.23,4,0.0 +12467,47,9.5,11,0.0 +12467,59,55,39,0.0 +12467,37,26,5,0.0 +12467,72,34.8,36,0.0 +12467,18,62.5,42,0.0 +12467,56,38,44,0.0 +12467,48,12.75,24,0.0 +12467,2,19,42,0.0 +12467,67,14,21,0.0 +12467,5,21.35,11,0.0 +12467,34,14,30,0.0 +12467,6,25,41,0.0 +12467,14,23.25,12,0.0 +12467,54,7.45,38,0.0 +12467,28,45.6,38,0.0 +12467,10,31,18,0.0 +12468,24,4.5,17,0.0 +12468,32,32,44,0.0 +12468,31,12.5,36,0.0 +12468,37,26,42,0.0 +12468,74,10,23,0.0 +12468,60,34,9,0.0 +12468,75,7.75,10,0.0 +12468,54,7.45,49,0.0 +12469,6,25,2,0.0 +12469,24,4.5,4,0.0 +12469,46,12,29,0.0 +12469,25,14,17,0.0 +12469,7,30,38,0.0 +12469,21,10,47,0.0 +12469,51,53,23,0.0 +12469,50,16.25,44,0.0 +12470,65,21.05,47,0.0 +12470,36,19,7,0.0 +12470,2,19,18,0.0 +12470,6,25,19,0.0 +12470,50,16.25,37,0.0 +12470,11,21,28,0.0 +12470,28,45.6,48,0.0 +12470,27,43.9,18,0.0 +12470,18,62.5,7,0.0 +12470,22,21,30,0.0 +12470,32,32,1,0.0 +12470,57,19.5,8,0.0 +12470,47,9.5,25,0.0 +12470,34,14,43,0.0 +12470,42,14,48,0.0 +12471,25,14,50,0.0 +12471,50,16.25,12,0.0 +12471,67,14,35,0.0 +12471,3,10,48,0.0 +12471,15,15.5,13,0.0 +12471,37,26,46,0.0 +12471,8,40,29,0.0 +12471,10,31,44,0.0 +12472,52,7,30,0.0 +12472,66,17,49,0.0 +12472,54,7.45,40,0.0 +12472,39,18,29,0.0 +12472,58,13.25,14,0.0 +12472,57,19.5,26,0.0 +12472,53,32.8,14,0.0 +12472,74,10,8,0.0 +12472,10,31,39,0.0 +12472,21,10,17,0.0 +12472,27,43.9,23,0.0 +12472,65,21.05,48,0.0 +12472,20,81,6,0.0 +12472,73,15,5,0.0 +12472,42,14,42,0.0 +12472,67,14,32,0.0 +12472,35,18,7,0.0 +12472,72,34.8,36,0.0 +12472,9,97,26,0.0 +12472,41,9.65,35,0.0 +12472,17,39,47,0.0 +12472,18,62.5,21,0.0 +12472,43,46,33,0.0 +12472,47,9.5,23,0.0 +12472,48,12.75,1,0.0 +12472,64,33.25,25,0.0 +12472,24,4.5,35,0.0 +12472,71,21.5,39,0.0 +12472,44,19.45,46,0.0 +12472,8,40,2,0.0 +12472,23,9,46,0.0 +12472,36,19,37,0.0 +12472,2,19,11,0.0 +12472,12,38,30,0.0 +12472,14,23.25,44,0.0 +12472,76,18,47,0.0 +12472,11,21,49,0.0 +12473,75,7.75,33,0.0 +12473,11,21,47,0.0 +12473,67,14,15,0.0 +12473,18,62.5,43,0.0 +12473,4,22,46,0.0 +12473,53,32.8,35,0.0 +12473,59,55,5,0.0 +12473,34,14,4,0.0 +12473,15,15.5,5,0.0 +12473,19,9.2,35,0.0 +12473,44,19.45,39,0.0 +12473,71,21.5,48,0.0 +12473,63,43.9,34,0.0 +12473,17,39,31,0.0 +12473,69,36,21,0.0 +12473,70,15,4,0.0 +12473,5,21.35,23,0.0 +12473,49,20,23,0.0 +12473,66,17,1,0.0 +12473,2,19,46,0.0 +12473,33,2.5,5,0.0 +12473,40,18.4,38,0.0 +12474,50,16.25,30,0.0 +12474,8,40,38,0.0 +12474,15,15.5,37,0.0 +12474,77,13,47,0.0 +12474,34,14,38,0.0 +12474,30,25.89,49,0.0 +12474,52,7,44,0.0 +12474,65,21.05,49,0.0 +12474,55,24,41,0.0 +12474,47,9.5,43,0.0 +12474,63,43.9,35,0.0 +12474,23,9,25,0.0 +12474,32,32,29,0.0 +12474,74,10,18,0.0 +12474,28,45.6,34,0.0 +12474,17,39,13,0.0 +12474,57,19.5,43,0.0 +12474,1,18,44,0.0 +12474,22,21,25,0.0 +12474,72,34.8,9,0.0 +12474,42,14,12,0.0 +12474,41,9.65,29,0.0 +12474,45,9.5,4,0.0 +12474,75,7.75,9,0.0 +12474,69,36,13,0.0 +12474,49,20,45,0.0 +12474,10,31,41,0.0 +12474,2,19,16,0.0 +12474,20,81,48,0.0 +12474,70,15,40,0.0 +12474,6,25,16,0.0 +12474,11,21,8,0.0 +12474,64,33.25,34,0.0 +12474,46,12,43,0.0 +12474,61,28.5,16,0.0 +12474,76,18,3,0.0 +12474,7,30,42,0.0 +12474,18,62.5,6,0.0 +12475,77,13,16,0.0 +12475,24,4.5,43,0.0 +12475,51,53,3,0.0 +12475,11,21,25,0.0 +12475,66,17,8,0.0 +12475,61,28.5,1,0.0 +12475,43,46,38,0.0 +12475,9,97,48,0.0 +12475,59,55,37,0.0 +12475,32,32,8,0.0 +12475,63,43.9,15,0.0 +12475,33,2.5,28,0.0 +12475,53,32.8,9,0.0 +12475,47,9.5,29,0.0 +12475,76,18,49,0.0 +12475,57,19.5,8,0.0 +12475,65,21.05,17,0.0 +12475,14,23.25,27,0.0 +12475,42,14,3,0.0 +12475,22,21,2,0.0 +12475,37,26,24,0.0 +12475,35,18,34,0.0 +12475,6,25,24,0.0 +12475,20,81,24,0.0 +12475,30,25.89,44,0.0 +12475,15,15.5,1,0.0 +12475,72,34.8,2,0.0 +12475,49,20,27,0.0 +12475,39,18,25,0.0 +12475,55,24,7,0.0 +12475,48,12.75,44,0.0 +12475,60,34,36,0.0 +12475,71,21.5,10,0.0 +12475,75,7.75,34,0.0 +12475,44,19.45,10,0.0 +12475,1,18,11,0.0 +12475,56,38,7,0.0 +12475,18,62.5,33,0.0 +12475,52,7,31,0.0 +12475,25,14,15,0.0 +12475,36,19,26,0.0 +12475,46,12,26,0.0 +12475,16,17.45,25,0.0 +12475,2,19,47,0.0 +12475,54,7.45,5,0.0 +12475,58,13.25,49,0.0 +12475,12,38,13,0.0 +12475,4,22,16,0.0 +12475,62,49.3,10,0.0 +12475,67,14,36,0.0 +12475,69,36,45,0.0 +12475,64,33.25,40,0.0 +12475,31,12.5,30,0.0 +12476,71,21.5,36,0.0 +12476,3,10,40,0.0 +12476,62,49.3,40,0.0 +12476,8,40,41,0.0 +12476,36,19,27,0.0 +12476,25,14,31,0.0 +12476,37,26,8,0.0 +12476,20,81,3,0.0 +12476,47,9.5,35,0.0 +12476,18,62.5,23,0.0 +12476,61,28.5,46,0.0 +12476,73,15,13,0.0 +12476,23,9,43,0.0 +12476,16,17.45,28,0.0 +12476,52,7,25,0.0 +12476,2,19,34,0.0 +12476,22,21,16,0.0 +12477,56,38,20,0.0 +12477,66,17,33,0.0 +12477,75,7.75,42,0.0 +12477,68,12.5,42,0.0 +12477,65,21.05,42,0.0 +12477,46,12,7,0.0 +12477,54,7.45,39,0.0 +12477,5,21.35,42,0.0 +12477,11,21,18,0.0 +12477,67,14,1,0.0 +12477,44,19.45,43,0.0 +12477,62,49.3,24,0.0 +12477,36,19,21,0.0 +12477,61,28.5,44,0.0 +12477,9,97,16,0.0 +12477,16,17.45,1,0.0 +12477,48,12.75,15,0.0 +12477,32,32,42,0.0 +12477,34,14,32,0.0 +12477,24,4.5,37,0.0 +12477,77,13,19,0.0 +12477,73,15,19,0.0 +12477,74,10,20,0.0 +12477,22,21,23,0.0 +12477,6,25,4,0.0 +12477,40,18.4,9,0.0 +12477,17,39,27,0.0 +12477,52,7,32,0.0 +12477,4,22,37,0.0 +12477,57,19.5,23,0.0 +12477,60,34,47,0.0 +12477,51,53,30,0.0 +12477,3,10,1,0.0 +12477,1,18,45,0.0 +12477,29,123.79,24,0.0 +12477,63,43.9,28,0.0 +12477,2,19,13,0.0 +12477,15,15.5,39,0.0 +12477,10,31,40,0.0 +12477,18,62.5,50,0.0 +12477,39,18,27,0.0 +12477,19,9.2,30,0.0 +12477,38,263.5,12,0.0 +12477,59,55,29,0.0 +12477,8,40,42,0.0 +12477,50,16.25,8,0.0 +12477,41,9.65,17,0.0 +12477,47,9.5,42,0.0 +12477,31,12.5,1,0.0 +12477,21,10,32,0.0 +12477,76,18,46,0.0 +12477,7,30,32,0.0 +12477,71,21.5,42,0.0 +12477,28,45.6,6,0.0 +12477,33,2.5,25,0.0 +12477,14,23.25,38,0.0 +12477,72,34.8,39,0.0 +12477,69,36,18,0.0 +12477,70,15,35,0.0 +12477,37,26,45,0.0 +12477,20,81,6,0.0 +12477,12,38,7,0.0 +12477,45,9.5,37,0.0 +12477,42,14,41,0.0 +12477,43,46,7,0.0 +12477,58,13.25,21,0.0 +12478,19,9.2,24,0.0 +12478,30,25.89,19,0.0 +12478,56,38,19,0.0 +12478,62,49.3,34,0.0 +12478,72,34.8,36,0.0 +12478,37,26,4,0.0 +12478,22,21,5,0.0 +12478,24,4.5,7,0.0 +12478,35,18,49,0.0 +12478,20,81,24,0.0 +12478,12,38,20,0.0 +12478,18,62.5,2,0.0 +12478,60,34,7,0.0 +12478,28,45.6,50,0.0 +12478,67,14,29,0.0 +12478,77,13,37,0.0 +12478,70,15,46,0.0 +12478,14,23.25,4,0.0 +12478,9,97,6,0.0 +12478,41,9.65,21,0.0 +12478,64,33.25,36,0.0 +12478,15,15.5,41,0.0 +12478,4,22,20,0.0 +12478,5,21.35,47,0.0 +12478,61,28.5,40,0.0 +12478,2,19,41,0.0 +12478,74,10,50,0.0 +12478,49,20,39,0.0 +12478,36,19,15,0.0 +12478,58,13.25,23,0.0 +12478,50,16.25,18,0.0 +12478,26,31.23,46,0.0 +12478,42,14,14,0.0 +12478,32,32,50,0.0 +12478,34,14,25,0.0 +12478,52,7,17,0.0 +12478,68,12.5,50,0.0 +12478,38,263.5,15,0.0 +12478,73,15,32,0.0 +12479,64,33.25,42,0.0 +12479,43,46,5,0.0 +12479,21,10,15,0.0 +12479,29,123.79,17,0.0 +12479,6,25,22,0.0 +12479,12,38,11,0.0 +12479,74,10,18,0.0 +12479,11,21,7,0.0 +12479,77,13,27,0.0 +12479,7,30,49,0.0 +12479,51,53,31,0.0 +12479,69,36,33,0.0 +12479,40,18.4,30,0.0 +12479,20,81,46,0.0 +12479,73,15,19,0.0 +12479,28,45.6,19,0.0 +12479,30,25.89,35,0.0 +12479,66,17,33,0.0 +12479,67,14,1,0.0 +12479,63,43.9,40,0.0 +12479,52,7,47,0.0 +12479,54,7.45,10,0.0 +12479,9,97,2,0.0 +12479,56,38,50,0.0 +12479,39,18,22,0.0 +12479,48,12.75,4,0.0 +12479,60,34,7,0.0 +12479,31,12.5,46,0.0 +12479,68,12.5,17,0.0 +12479,58,13.25,33,0.0 +12479,10,31,14,0.0 +12479,46,12,4,0.0 +12479,44,19.45,39,0.0 +12479,49,20,39,0.0 +12480,64,33.25,38,0.0 +12480,49,20,2,0.0 +12480,38,263.5,38,0.0 +12480,18,62.5,29,0.0 +12480,56,38,40,0.0 +12480,51,53,14,0.0 +12480,57,19.5,23,0.0 +12480,11,21,26,0.0 +12480,62,49.3,35,0.0 +12480,42,14,24,0.0 +12480,53,32.8,8,0.0 +12480,29,123.79,30,0.0 +12480,21,10,33,0.0 +12480,13,6,37,0.0 +12480,7,30,43,0.0 +12480,47,9.5,38,0.0 +12480,41,9.65,11,0.0 +12480,59,55,11,0.0 +12480,60,34,45,0.0 +12480,8,40,18,0.0 +12480,68,12.5,27,0.0 +12480,43,46,10,0.0 +12480,32,32,25,0.0 +12480,52,7,45,0.0 +12480,66,17,42,0.0 +12480,70,15,23,0.0 +12480,45,9.5,31,0.0 +12480,77,13,31,0.0 +12480,33,2.5,35,0.0 +12480,2,19,38,0.0 +12480,14,23.25,12,0.0 +12480,24,4.5,31,0.0 +12480,48,12.75,47,0.0 +12480,37,26,40,0.0 +12480,46,12,21,0.0 +12480,55,24,20,0.0 +12480,72,34.8,5,0.0 +12480,10,31,24,0.0 +12480,15,15.5,46,0.0 +12480,34,14,29,0.0 +12480,44,19.45,33,0.0 +12480,26,31.23,37,0.0 +12480,31,12.5,3,0.0 +12480,73,15,29,0.0 +12480,36,19,19,0.0 +12480,5,21.35,38,0.0 +12480,63,43.9,20,0.0 +12480,69,36,32,0.0 +12480,61,28.5,23,0.0 +12480,19,9.2,23,0.0 +12480,20,81,50,0.0 +12480,54,7.45,16,0.0 +12480,58,13.25,16,0.0 +12480,40,18.4,12,0.0 +12480,39,18,37,0.0 +12480,65,21.05,16,0.0 +12480,12,38,26,0.0 +12480,9,97,22,0.0 +12480,75,7.75,42,0.0 +12480,23,9,3,0.0 +12480,30,25.89,44,0.0 +12480,22,21,1,0.0 +12480,71,21.5,14,0.0 +12480,3,10,34,0.0 +12480,28,45.6,6,0.0 +12480,6,25,8,0.0 +12480,74,10,37,0.0 +12480,1,18,23,0.0 +12480,4,22,38,0.0 +12480,17,39,30,0.0 +12481,8,40,36,0.0 +12481,36,19,50,0.0 +12481,17,39,4,0.0 +12481,67,14,26,0.0 +12481,14,23.25,13,0.0 +12481,33,2.5,28,0.0 +12481,39,18,39,0.0 +12481,58,13.25,27,0.0 +12481,59,55,14,0.0 +12481,46,12,8,0.0 +12481,68,12.5,17,0.0 +12481,23,9,6,0.0 +12481,4,22,28,0.0 +12481,63,43.9,26,0.0 +12481,49,20,1,0.0 +12481,28,45.6,11,0.0 +12481,54,7.45,3,0.0 +12481,2,19,34,0.0 +12481,74,10,11,0.0 +12481,50,16.25,36,0.0 +12481,77,13,8,0.0 +12481,32,32,25,0.0 +12481,56,38,29,0.0 +12481,48,12.75,45,0.0 +12481,19,9.2,23,0.0 +12481,16,17.45,23,0.0 +12481,38,263.5,28,0.0 +12481,53,32.8,12,0.0 +12481,11,21,29,0.0 +12481,22,21,48,0.0 +12481,12,38,9,0.0 +12481,34,14,19,0.0 +12481,25,14,48,0.0 +12481,6,25,17,0.0 +12481,72,34.8,33,0.0 +12481,64,33.25,23,0.0 +12481,55,24,23,0.0 +12481,52,7,49,0.0 +12482,50,16.25,38,0.0 +12482,64,33.25,39,0.0 +12482,29,123.79,47,0.0 +12482,47,9.5,21,0.0 +12482,20,81,42,0.0 +12482,18,62.5,48,0.0 +12482,48,12.75,26,0.0 +12482,2,19,18,0.0 +12482,24,4.5,11,0.0 +12482,35,18,1,0.0 +12482,60,34,46,0.0 +12482,53,32.8,16,0.0 +12482,57,19.5,1,0.0 +12482,7,30,13,0.0 +12482,72,34.8,24,0.0 +12482,26,31.23,14,0.0 +12482,15,15.5,14,0.0 +12482,12,38,37,0.0 +12482,17,39,23,0.0 +12482,65,21.05,34,0.0 +12482,21,10,12,0.0 +12482,9,97,46,0.0 +12482,30,25.89,23,0.0 +12482,25,14,8,0.0 +12482,33,2.5,18,0.0 +12482,41,9.65,26,0.0 +12482,38,263.5,45,0.0 +12482,62,49.3,45,0.0 +12482,49,20,35,0.0 +12482,39,18,47,0.0 +12482,6,25,42,0.0 +12482,1,18,46,0.0 +12482,11,21,34,0.0 +12482,37,26,34,0.0 +12482,70,15,21,0.0 +12482,14,23.25,19,0.0 +12482,40,18.4,36,0.0 +12482,36,19,48,0.0 +12482,5,21.35,40,0.0 +12482,4,22,24,0.0 +12482,51,53,26,0.0 +12482,43,46,13,0.0 +12482,67,14,12,0.0 +12482,58,13.25,11,0.0 +12482,76,18,34,0.0 +12482,66,17,8,0.0 +12482,74,10,20,0.0 +12482,3,10,36,0.0 +12482,73,15,49,0.0 +12482,10,31,27,0.0 +12482,19,9.2,41,0.0 +12482,8,40,18,0.0 +12482,52,7,3,0.0 +12482,77,13,34,0.0 +12482,44,19.45,6,0.0 +12482,23,9,14,0.0 +12482,28,45.6,43,0.0 +12482,34,14,41,0.0 +12483,29,123.79,22,0.0 +12484,1,18,3,0.0 +12484,20,81,29,0.0 +12484,12,38,36,0.0 +12484,70,15,42,0.0 +12484,74,10,36,0.0 +12484,53,32.8,45,0.0 +12484,21,10,29,0.0 +12484,48,12.75,34,0.0 +12484,18,62.5,26,0.0 +12484,59,55,40,0.0 +12484,73,15,23,0.0 +12484,52,7,10,0.0 +12484,56,38,2,0.0 +12484,26,31.23,11,0.0 +12484,23,9,5,0.0 +12484,15,15.5,41,0.0 +12484,51,53,43,0.0 +12484,76,18,50,0.0 +12484,36,19,37,0.0 +12484,60,34,6,0.0 +12484,75,7.75,45,0.0 +12484,42,14,20,0.0 +12484,45,9.5,19,0.0 +12484,8,40,46,0.0 +12484,32,32,10,0.0 +12484,68,12.5,21,0.0 +12484,57,19.5,20,0.0 +12484,33,2.5,3,0.0 +12484,3,10,33,0.0 +12484,71,21.5,7,0.0 +12484,77,13,42,0.0 +12484,38,263.5,15,0.0 +12484,27,43.9,12,0.0 +12484,40,18.4,9,0.0 +12484,31,12.5,28,0.0 +12484,25,14,14,0.0 +12485,37,26,14,0.0 +12485,6,25,2,0.0 +12485,16,17.45,18,0.0 +12485,50,16.25,37,0.0 +12485,71,21.5,44,0.0 +12485,14,23.25,41,0.0 +12485,58,13.25,37,0.0 +12485,46,12,12,0.0 +12485,52,7,20,0.0 +12485,51,53,35,0.0 +12485,67,14,19,0.0 +12485,66,17,14,0.0 +12485,31,12.5,33,0.0 +12485,62,49.3,3,0.0 +12485,76,18,43,0.0 +12485,11,21,4,0.0 +12485,63,43.9,28,0.0 +12485,48,12.75,35,0.0 +12485,33,2.5,39,0.0 +12485,2,19,28,0.0 +12485,34,14,22,0.0 +12485,10,31,16,0.0 +12485,56,38,28,0.0 +12485,28,45.6,6,0.0 +12485,1,18,32,0.0 +12485,39,18,9,0.0 +12485,23,9,30,0.0 +12485,55,24,19,0.0 +12485,12,38,37,0.0 +12485,20,81,44,0.0 +12485,21,10,29,0.0 +12485,54,7.45,20,0.0 +12485,43,46,47,0.0 +12485,3,10,13,0.0 +12485,22,21,49,0.0 +12485,47,9.5,27,0.0 +12485,25,14,25,0.0 +12485,41,9.65,31,0.0 +12485,57,19.5,21,0.0 +12485,77,13,21,0.0 +12485,75,7.75,15,0.0 +12485,49,20,38,0.0 +12485,32,32,18,0.0 +12485,15,15.5,42,0.0 +12485,5,21.35,6,0.0 +12485,35,18,38,0.0 +12485,29,123.79,7,0.0 +12485,40,18.4,37,0.0 +12485,24,4.5,17,0.0 +12485,74,10,2,0.0 +12485,70,15,27,0.0 +12485,53,32.8,29,0.0 +12485,61,28.5,39,0.0 +12485,60,34,1,0.0 +12485,72,34.8,21,0.0 +12485,4,22,7,0.0 +12485,13,6,20,0.0 +12485,26,31.23,12,0.0 +12485,19,9.2,44,0.0 +12485,59,55,42,0.0 +12485,18,62.5,24,0.0 +12485,44,19.45,36,0.0 +12485,42,14,3,0.0 +12485,9,97,12,0.0 +12485,30,25.89,20,0.0 +12485,17,39,25,0.0 +12485,8,40,22,0.0 +12485,68,12.5,24,0.0 +12485,64,33.25,48,0.0 +12485,7,30,19,0.0 +12485,73,15,5,0.0 +12485,45,9.5,24,0.0 +12485,38,263.5,47,0.0 +12485,27,43.9,41,0.0 +12485,69,36,11,0.0 +12485,36,19,39,0.0 +12486,35,18,43,0.0 +12486,39,18,42,0.0 +12486,23,9,15,0.0 +12486,28,45.6,35,0.0 +12486,67,14,2,0.0 +12486,72,34.8,22,0.0 +12486,65,21.05,25,0.0 +12486,27,43.9,1,0.0 +12486,44,19.45,14,0.0 +12486,29,123.79,19,0.0 +12486,69,36,44,0.0 +12486,18,62.5,12,0.0 +12486,34,14,29,0.0 +12486,37,26,35,0.0 +12486,8,40,20,0.0 +12486,1,18,21,0.0 +12486,38,263.5,16,0.0 +12486,48,12.75,27,0.0 +12486,42,14,5,0.0 +12486,49,20,32,0.0 +12486,12,38,31,0.0 +12486,64,33.25,15,0.0 +12486,47,9.5,19,0.0 +12486,52,7,37,0.0 +12486,59,55,33,0.0 +12486,9,97,34,0.0 +12486,58,13.25,43,0.0 +12486,22,21,3,0.0 +12486,16,17.45,26,0.0 +12486,33,2.5,37,0.0 +12486,66,17,37,0.0 +12486,73,15,50,0.0 +12486,19,9.2,40,0.0 +12486,62,49.3,12,0.0 +12486,70,15,17,0.0 +12486,2,19,9,0.0 +12486,40,18.4,3,0.0 +12486,77,13,4,0.0 +12486,3,10,31,0.0 +12486,43,46,16,0.0 +12486,25,14,48,0.0 +12486,4,22,27,0.0 +12486,13,6,11,0.0 +12486,63,43.9,19,0.0 +12486,14,23.25,12,0.0 +12486,32,32,39,0.0 +12486,5,21.35,9,0.0 +12486,24,4.5,49,0.0 +12486,15,15.5,43,0.0 +12486,55,24,42,0.0 +12486,10,31,48,0.0 +12486,74,10,41,0.0 +12486,31,12.5,34,0.0 +12486,46,12,11,0.0 +12486,20,81,41,0.0 +12487,74,10,18,0.0 +12488,28,45.6,39,0.0 +12488,31,12.5,12,0.0 +12488,62,49.3,23,0.0 +12488,3,10,29,0.0 +12488,25,14,9,0.0 +12488,27,43.9,4,0.0 +12488,35,18,44,0.0 +12488,12,38,23,0.0 +12488,64,33.25,9,0.0 +12488,33,2.5,11,0.0 +12488,7,30,45,0.0 +12488,10,31,47,0.0 +12488,70,15,19,0.0 +12488,11,21,40,0.0 +12488,16,17.45,20,0.0 +12488,49,20,43,0.0 +12488,73,15,21,0.0 +12488,40,18.4,43,0.0 +12488,23,9,31,0.0 +12488,8,40,1,0.0 +12488,63,43.9,50,0.0 +12488,4,22,26,0.0 +12488,50,16.25,41,0.0 +12488,22,21,7,0.0 +12488,59,55,32,0.0 +12488,52,7,18,0.0 +12489,26,31.23,44,0.0 +12489,4,22,24,0.0 +12489,52,7,21,0.0 +12489,15,15.5,32,0.0 +12489,41,9.65,38,0.0 +12489,69,36,30,0.0 +12489,28,45.6,24,0.0 +12489,49,20,22,0.0 +12489,43,46,21,0.0 +12489,22,21,17,0.0 +12489,74,10,5,0.0 +12489,6,25,34,0.0 +12489,1,18,25,0.0 +12489,14,23.25,22,0.0 +12489,47,9.5,36,0.0 +12489,48,12.75,23,0.0 +12489,63,43.9,2,0.0 +12489,37,26,15,0.0 +12489,10,31,27,0.0 +12489,55,24,41,0.0 +12489,64,33.25,19,0.0 +12489,76,18,16,0.0 +12489,18,62.5,3,0.0 +12489,32,32,40,0.0 +12489,56,38,34,0.0 +12489,60,34,50,0.0 +12489,59,55,35,0.0 +12489,12,38,25,0.0 +12489,38,263.5,12,0.0 +12489,5,21.35,19,0.0 +12489,34,14,34,0.0 +12489,2,19,36,0.0 +12489,65,21.05,3,0.0 +12489,30,25.89,22,0.0 +12489,42,14,41,0.0 +12489,11,21,31,0.0 +12489,16,17.45,8,0.0 +12489,9,97,7,0.0 +12489,27,43.9,50,0.0 +12489,44,19.45,34,0.0 +12489,72,34.8,10,0.0 +12489,19,9.2,48,0.0 +12489,33,2.5,47,0.0 +12489,68,12.5,41,0.0 +12489,67,14,22,0.0 +12489,71,21.5,17,0.0 +12489,70,15,4,0.0 +12489,31,12.5,34,0.0 +12489,25,14,29,0.0 +12489,20,81,29,0.0 +12489,58,13.25,22,0.0 +12489,45,9.5,6,0.0 +12489,61,28.5,40,0.0 +12489,13,6,1,0.0 +12489,50,16.25,25,0.0 +12489,7,30,49,0.0 +12489,57,19.5,28,0.0 +12489,66,17,2,0.0 +12489,62,49.3,38,0.0 +12489,77,13,21,0.0 +12489,46,12,27,0.0 +12489,39,18,26,0.0 +12489,51,53,38,0.0 +12489,53,32.8,24,0.0 +12489,36,19,38,0.0 +12489,23,9,34,0.0 +12489,73,15,36,0.0 +12489,17,39,39,0.0 +12489,29,123.79,24,0.0 +12489,54,7.45,34,0.0 +12489,21,10,6,0.0 +12489,40,18.4,36,0.0 +12489,35,18,3,0.0 +12489,75,7.75,21,0.0 +12490,12,38,26,0.0 +12490,35,18,13,0.0 +12490,8,40,15,0.0 +12490,6,25,17,0.0 +12490,63,43.9,2,0.0 +12490,34,14,43,0.0 +12490,13,6,6,0.0 +12490,19,9.2,5,0.0 +12490,76,18,8,0.0 +12490,29,123.79,42,0.0 +12490,9,97,34,0.0 +12490,70,15,14,0.0 +12490,15,15.5,1,0.0 +12490,65,21.05,4,0.0 +12490,77,13,33,0.0 +12490,52,7,13,0.0 +12490,33,2.5,46,0.0 +12490,38,263.5,6,0.0 +12490,23,9,43,0.0 +12490,5,21.35,14,0.0 +12490,46,12,3,0.0 +12490,69,36,2,0.0 +12490,17,39,33,0.0 +12490,32,32,3,0.0 +12490,25,14,20,0.0 +12490,55,24,4,0.0 +12490,42,14,41,0.0 +12490,62,49.3,31,0.0 +12490,14,23.25,14,0.0 +12490,66,17,1,0.0 +12490,27,43.9,4,0.0 +12490,37,26,28,0.0 +12490,16,17.45,16,0.0 +12490,56,38,46,0.0 +12490,59,55,27,0.0 +12490,73,15,39,0.0 +12490,3,10,46,0.0 +12490,10,31,4,0.0 +12490,2,19,46,0.0 +12490,72,34.8,20,0.0 +12490,68,12.5,32,0.0 +12490,20,81,16,0.0 +12490,71,21.5,47,0.0 +12490,21,10,13,0.0 +12490,67,14,36,0.0 +12490,47,9.5,15,0.0 +12490,60,34,3,0.0 +12490,61,28.5,14,0.0 +12490,4,22,47,0.0 +12490,11,21,32,0.0 +12490,18,62.5,41,0.0 +12490,50,16.25,30,0.0 +12490,54,7.45,18,0.0 +12490,45,9.5,4,0.0 +12490,36,19,21,0.0 +12490,57,19.5,26,0.0 +12490,53,32.8,35,0.0 +12490,7,30,37,0.0 +12491,13,6,29,0.0 +12491,37,26,10,0.0 +12491,1,18,6,0.0 +12491,9,97,41,0.0 +12491,57,19.5,24,0.0 +12491,35,18,14,0.0 +12491,23,9,18,0.0 +12491,68,12.5,41,0.0 +12491,34,14,7,0.0 +12491,3,10,44,0.0 +12491,55,24,32,0.0 +12491,24,4.5,7,0.0 +12491,21,10,11,0.0 +12491,51,53,11,0.0 +12491,59,55,14,0.0 +12491,36,19,15,0.0 +12491,7,30,46,0.0 +12491,52,7,12,0.0 +12491,74,10,25,0.0 +12491,39,18,8,0.0 +12491,4,22,42,0.0 +12491,46,12,27,0.0 +12491,50,16.25,24,0.0 +12491,31,12.5,33,0.0 +12491,58,13.25,11,0.0 +12491,5,21.35,36,0.0 +12491,32,32,19,0.0 +12491,70,15,45,0.0 +12491,67,14,45,0.0 +12491,66,17,36,0.0 +12491,18,62.5,35,0.0 +12491,16,17.45,40,0.0 +12491,25,14,26,0.0 +12491,62,49.3,33,0.0 +12491,12,38,47,0.0 +12491,2,19,20,0.0 +12491,6,25,26,0.0 +12491,19,9.2,15,0.0 +12491,20,81,45,0.0 +12491,41,9.65,19,0.0 +12491,54,7.45,23,0.0 +12491,17,39,15,0.0 +12491,65,21.05,40,0.0 +12491,60,34,32,0.0 +12491,43,46,23,0.0 +12491,49,20,10,0.0 +12491,73,15,47,0.0 +12491,22,21,22,0.0 +12491,8,40,12,0.0 +12491,45,9.5,1,0.0 +12491,28,45.6,31,0.0 +12491,76,18,24,0.0 +12491,71,21.5,6,0.0 +12491,38,263.5,39,0.0 +12491,75,7.75,46,0.0 +12491,69,36,47,0.0 +12491,42,14,17,0.0 +12491,33,2.5,8,0.0 +12491,40,18.4,10,0.0 +12491,61,28.5,30,0.0 +12491,63,43.9,19,0.0 +12491,15,15.5,24,0.0 +12491,10,31,46,0.0 +12491,30,25.89,2,0.0 +12492,36,19,32,0.0 +12492,62,49.3,47,0.0 +12492,74,10,4,0.0 +12492,28,45.6,11,0.0 +12492,58,13.25,50,0.0 +12492,67,14,28,0.0 +12492,68,12.5,14,0.0 +12492,49,20,31,0.0 +12492,72,34.8,48,0.0 +12492,71,21.5,37,0.0 +12492,65,21.05,45,0.0 +12492,61,28.5,25,0.0 +12492,8,40,42,0.0 +12492,38,263.5,36,0.0 +12492,2,19,30,0.0 +12492,45,9.5,1,0.0 +12492,60,34,17,0.0 +12492,16,17.45,39,0.0 +12492,26,31.23,31,0.0 +12492,52,7,31,0.0 +12492,19,9.2,35,0.0 +12492,25,14,25,0.0 +12492,29,123.79,36,0.0 +12492,37,26,27,0.0 +12492,14,23.25,34,0.0 +12492,44,19.45,48,0.0 +12492,30,25.89,37,0.0 +12492,51,53,2,0.0 +12492,41,9.65,5,0.0 +12492,40,18.4,40,0.0 +12492,33,2.5,39,0.0 +12492,66,17,4,0.0 +12492,11,21,30,0.0 +12492,12,38,38,0.0 +12492,57,19.5,21,0.0 +12492,22,21,38,0.0 +12492,64,33.25,38,0.0 +12492,76,18,25,0.0 +12492,24,4.5,49,0.0 +12492,13,6,26,0.0 +12492,23,9,10,0.0 +12492,18,62.5,13,0.0 +12492,59,55,6,0.0 +12492,6,25,19,0.0 +12492,73,15,29,0.0 +12492,70,15,26,0.0 +12492,32,32,7,0.0 +12492,56,38,4,0.0 +12492,21,10,24,0.0 +12492,77,13,46,0.0 +12492,46,12,49,0.0 +12492,27,43.9,20,0.0 +12492,4,22,17,0.0 +12492,7,30,24,0.0 +12492,53,32.8,42,0.0 +12492,55,24,25,0.0 +12492,75,7.75,44,0.0 +12492,17,39,32,0.0 +12492,50,16.25,49,0.0 +12492,42,14,3,0.0 +12492,69,36,48,0.0 +12492,9,97,15,0.0 +12492,15,15.5,26,0.0 +12493,63,43.9,37,0.0 +12493,35,18,20,0.0 +12493,68,12.5,29,0.0 +12493,9,97,12,0.0 +12493,33,2.5,30,0.0 +12493,57,19.5,34,0.0 +12493,7,30,25,0.0 +12493,20,81,41,0.0 +12493,34,14,39,0.0 +12493,73,15,21,0.0 +12493,50,16.25,28,0.0 +12493,6,25,38,0.0 +12493,21,10,23,0.0 +12493,17,39,1,0.0 +12493,70,15,41,0.0 +12493,47,9.5,43,0.0 +12493,28,45.6,12,0.0 +12493,60,34,15,0.0 +12493,18,62.5,1,0.0 +12493,45,9.5,39,0.0 +12493,62,49.3,40,0.0 +12493,59,55,10,0.0 +12494,33,2.5,41,0.0 +12494,51,53,38,0.0 +12494,24,4.5,23,0.0 +12494,52,7,44,0.0 +12494,16,17.45,46,0.0 +12494,73,15,14,0.0 +12494,19,9.2,24,0.0 +12494,77,13,48,0.0 +12494,55,24,42,0.0 +12494,37,26,2,0.0 +12494,40,18.4,8,0.0 +12494,65,21.05,49,0.0 +12494,54,7.45,25,0.0 +12494,53,32.8,14,0.0 +12494,2,19,43,0.0 +12494,59,55,42,0.0 +12494,61,28.5,3,0.0 +12494,27,43.9,6,0.0 +12494,76,18,39,0.0 +12494,48,12.75,33,0.0 +12494,14,23.25,19,0.0 +12494,50,16.25,12,0.0 +12494,18,62.5,16,0.0 +12494,30,25.89,13,0.0 +12494,35,18,20,0.0 +12494,57,19.5,24,0.0 +12494,42,14,30,0.0 +12494,21,10,22,0.0 +12494,69,36,29,0.0 +12494,13,6,8,0.0 +12494,74,10,9,0.0 +12494,63,43.9,46,0.0 +12494,58,13.25,9,0.0 +12494,46,12,36,0.0 +12494,15,15.5,27,0.0 +12494,1,18,44,0.0 +12494,38,263.5,20,0.0 +12494,62,49.3,5,0.0 +12494,26,31.23,43,0.0 +12494,47,9.5,7,0.0 +12494,72,34.8,28,0.0 +12494,60,34,44,0.0 +12494,56,38,40,0.0 +12494,20,81,31,0.0 +12494,7,30,49,0.0 +12494,64,33.25,41,0.0 +12494,75,7.75,44,0.0 +12495,35,18,35,0.0 +12495,25,14,42,0.0 +12495,32,32,42,0.0 +12495,19,9.2,8,0.0 +12495,37,26,6,0.0 +12495,14,23.25,26,0.0 +12495,49,20,37,0.0 +12495,73,15,49,0.0 +12495,74,10,23,0.0 +12495,4,22,22,0.0 +12495,76,18,4,0.0 +12495,18,62.5,11,0.0 +12495,31,12.5,28,0.0 +12495,63,43.9,36,0.0 +12495,34,14,25,0.0 +12495,23,9,25,0.0 +12495,39,18,4,0.0 +12495,58,13.25,15,0.0 +12495,75,7.75,22,0.0 +12495,24,4.5,4,0.0 +12495,8,40,23,0.0 +12495,61,28.5,42,0.0 +12495,6,25,5,0.0 +12495,33,2.5,40,0.0 +12495,42,14,42,0.0 +12495,48,12.75,2,0.0 +12495,30,25.89,44,0.0 +12495,11,21,3,0.0 +12495,54,7.45,19,0.0 +12495,55,24,30,0.0 +12495,67,14,41,0.0 +12495,56,38,45,0.0 +12495,22,21,20,0.0 +12495,44,19.45,17,0.0 +12495,9,97,19,0.0 +12495,77,13,4,0.0 +12495,62,49.3,3,0.0 +12495,52,7,13,0.0 +12495,27,43.9,43,0.0 +12495,2,19,8,0.0 +12495,51,53,26,0.0 +12495,64,33.25,39,0.0 +12495,57,19.5,42,0.0 +12495,17,39,9,0.0 +12495,72,34.8,16,0.0 +12495,15,15.5,26,0.0 +12495,12,38,12,0.0 +12495,36,19,28,0.0 +12495,45,9.5,22,0.0 +12495,26,31.23,50,0.0 +12495,38,263.5,49,0.0 +12495,5,21.35,35,0.0 +12495,3,10,35,0.0 +12495,20,81,20,0.0 +12495,53,32.8,41,0.0 +12496,1,18,49,0.0 +12496,59,55,32,0.0 +12496,14,23.25,7,0.0 +12496,41,9.65,1,0.0 +12496,40,18.4,8,0.0 +12496,43,46,47,0.0 +12496,48,12.75,42,0.0 +12496,2,19,47,0.0 +12496,6,25,20,0.0 +12496,12,38,14,0.0 +12496,77,13,42,0.0 +12496,53,32.8,29,0.0 +12496,68,12.5,50,0.0 +12496,30,25.89,47,0.0 +12496,46,12,21,0.0 +12496,76,18,41,0.0 +12496,60,34,50,0.0 +12496,10,31,36,0.0 +12496,39,18,45,0.0 +12496,21,10,22,0.0 +12496,47,9.5,29,0.0 +12496,15,15.5,20,0.0 +12496,64,33.25,12,0.0 +12496,33,2.5,11,0.0 +12496,13,6,8,0.0 +12496,57,19.5,49,0.0 +12496,26,31.23,6,0.0 +12496,72,34.8,5,0.0 +12496,56,38,4,0.0 +12496,9,97,44,0.0 +12496,71,21.5,2,0.0 +12496,54,7.45,5,0.0 +12496,34,14,14,0.0 +12496,31,12.5,28,0.0 +12496,27,43.9,27,0.0 +12496,67,14,8,0.0 +12496,7,30,8,0.0 +12496,75,7.75,2,0.0 +12496,42,14,1,0.0 +12496,70,15,18,0.0 +12496,29,123.79,7,0.0 +12496,23,9,5,0.0 +12496,73,15,13,0.0 +12496,24,4.5,33,0.0 +12496,38,263.5,29,0.0 +12496,52,7,42,0.0 +12496,25,14,20,0.0 +12496,36,19,43,0.0 +12496,49,20,41,0.0 +12496,18,62.5,33,0.0 +12496,22,21,34,0.0 +12496,37,26,46,0.0 +12496,16,17.45,45,0.0 +12496,17,39,31,0.0 +12496,32,32,31,0.0 +12496,50,16.25,13,0.0 +12496,51,53,9,0.0 +12496,35,18,22,0.0 +12496,66,17,37,0.0 +12496,61,28.5,33,0.0 +12496,58,13.25,20,0.0 +12496,4,22,43,0.0 +12496,3,10,47,0.0 +12496,28,45.6,1,0.0 +12496,11,21,46,0.0 +12496,74,10,27,0.0 +12496,69,36,23,0.0 +12496,55,24,6,0.0 +12496,8,40,40,0.0 +12496,44,19.45,13,0.0 +12496,65,21.05,27,0.0 +12497,17,39,32,0.0 +12497,68,12.5,17,0.0 +12497,34,14,50,0.0 +12497,38,263.5,33,0.0 +12497,62,49.3,24,0.0 +12497,70,15,12,0.0 +12497,30,25.89,43,0.0 +12498,25,14,23,0.0 +12498,72,34.8,15,0.0 +12498,57,19.5,11,0.0 +12498,29,123.79,11,0.0 +12498,6,25,4,0.0 +12498,7,30,18,0.0 +12498,71,21.5,17,0.0 +12498,42,14,44,0.0 +12498,70,15,43,0.0 +12498,19,9.2,16,0.0 +12498,56,38,1,0.0 +12498,34,14,48,0.0 +12498,21,10,30,0.0 +12498,24,4.5,49,0.0 +12498,23,9,17,0.0 +12498,66,17,38,0.0 +12498,62,49.3,39,0.0 +12498,58,13.25,8,0.0 +12498,47,9.5,1,0.0 +12498,32,32,47,0.0 +12498,28,45.6,28,0.0 +12498,39,18,41,0.0 +12498,69,36,29,0.0 +12498,52,7,21,0.0 +12498,77,13,36,0.0 +12498,55,24,31,0.0 +12498,46,12,28,0.0 +12498,4,22,17,0.0 +12498,18,62.5,25,0.0 +12498,59,55,42,0.0 +12498,43,46,44,0.0 +12498,27,43.9,12,0.0 +12498,36,19,25,0.0 +12498,22,21,6,0.0 +12498,14,23.25,20,0.0 +12498,60,34,26,0.0 +12498,38,263.5,31,0.0 +12498,74,10,43,0.0 +12498,9,97,14,0.0 +12498,48,12.75,20,0.0 +12498,30,25.89,44,0.0 +12498,40,18.4,10,0.0 +12498,16,17.45,3,0.0 +12498,10,31,21,0.0 +12498,44,19.45,2,0.0 +12498,67,14,44,0.0 +12498,75,7.75,37,0.0 +12498,17,39,23,0.0 +12498,20,81,24,0.0 +12498,13,6,40,0.0 +12498,51,53,46,0.0 +12498,49,20,49,0.0 +12498,3,10,12,0.0 +12498,15,15.5,14,0.0 +12498,2,19,21,0.0 +12498,35,18,13,0.0 +12498,1,18,11,0.0 +12499,76,18,5,0.0 +12499,70,15,14,0.0 +12499,27,43.9,28,0.0 +12499,5,21.35,45,0.0 +12499,69,36,19,0.0 +12499,45,9.5,31,0.0 +12499,30,25.89,24,0.0 +12499,51,53,12,0.0 +12499,42,14,30,0.0 +12499,31,12.5,48,0.0 +12499,52,7,18,0.0 +12499,11,21,28,0.0 +12499,7,30,24,0.0 +12499,3,10,24,0.0 +12499,33,2.5,29,0.0 +12499,74,10,42,0.0 +12499,75,7.75,7,0.0 +12499,48,12.75,23,0.0 +12499,65,21.05,9,0.0 +12499,34,14,2,0.0 +12499,68,12.5,50,0.0 +12499,44,19.45,41,0.0 +12499,67,14,21,0.0 +12499,64,33.25,38,0.0 +12499,12,38,17,0.0 +12499,9,97,24,0.0 +12499,40,18.4,8,0.0 +12499,36,19,46,0.0 +12499,39,18,40,0.0 +12499,62,49.3,41,0.0 +12499,8,40,39,0.0 +12499,24,4.5,31,0.0 +12499,23,9,17,0.0 +12499,71,21.5,8,0.0 +12499,29,123.79,38,0.0 +12499,46,12,21,0.0 +12499,32,32,9,0.0 +12499,18,62.5,21,0.0 +12499,26,31.23,11,0.0 +12499,35,18,44,0.0 +12499,66,17,23,0.0 +12499,4,22,35,0.0 +12499,73,15,48,0.0 +12499,20,81,12,0.0 +12499,19,9.2,21,0.0 +12499,57,19.5,24,0.0 +12499,55,24,17,0.0 +12499,14,23.25,43,0.0 +12499,61,28.5,42,0.0 +12499,28,45.6,32,0.0 +12499,15,15.5,22,0.0 +12499,53,32.8,36,0.0 +12499,47,9.5,30,0.0 +12499,49,20,30,0.0 +12499,58,13.25,37,0.0 +12499,54,7.45,5,0.0 +12499,72,34.8,17,0.0 +12500,22,21,34,0.0 +12500,17,39,15,0.0 +12501,14,23.25,1,0.0 +12501,18,62.5,15,0.0 +12501,71,21.5,22,0.0 +12501,43,46,17,0.0 +12501,7,30,37,0.0 +12501,45,9.5,13,0.0 +12501,51,53,33,0.0 +12501,52,7,23,0.0 +12501,12,38,44,0.0 +12501,63,43.9,11,0.0 +12501,39,18,31,0.0 +12501,2,19,3,0.0 +12501,70,15,30,0.0 +12501,24,4.5,12,0.0 +12501,16,17.45,16,0.0 +12501,26,31.23,17,0.0 +12501,10,31,27,0.0 +12501,66,17,41,0.0 +12501,76,18,8,0.0 +12501,47,9.5,37,0.0 +12501,75,7.75,21,0.0 +12501,60,34,16,0.0 +12501,69,36,34,0.0 +12501,41,9.65,43,0.0 +12501,40,18.4,10,0.0 +12501,57,19.5,15,0.0 +12501,62,49.3,43,0.0 +12501,25,14,43,0.0 +12501,23,9,13,0.0 +12501,46,12,18,0.0 +12501,4,22,43,0.0 +12501,28,45.6,42,0.0 +12501,77,13,31,0.0 +12501,72,34.8,45,0.0 +12501,50,16.25,35,0.0 +12501,34,14,20,0.0 +12501,36,19,32,0.0 +12501,49,20,27,0.0 +12501,29,123.79,44,0.0 +12501,54,7.45,15,0.0 +12501,1,18,25,0.0 +12501,48,12.75,11,0.0 +12501,56,38,31,0.0 +12501,74,10,49,0.0 +12501,53,32.8,40,0.0 +12501,42,14,44,0.0 +12501,17,39,32,0.0 +12501,13,6,20,0.0 +12501,33,2.5,3,0.0 +12501,6,25,44,0.0 +12501,35,18,32,0.0 +12501,27,43.9,32,0.0 +12501,44,19.45,22,0.0 +12501,59,55,13,0.0 +12502,38,263.5,24,0.0 +12502,41,9.65,47,0.0 +12502,20,81,24,0.0 +12502,75,7.75,47,0.0 +12502,1,18,45,0.0 +12502,4,22,38,0.0 +12502,27,43.9,43,0.0 +12502,61,28.5,36,0.0 +12502,62,49.3,30,0.0 +12502,60,34,33,0.0 +12502,34,14,26,0.0 +12502,57,19.5,36,0.0 +12502,29,123.79,2,0.0 +12502,35,18,39,0.0 +12502,68,12.5,33,0.0 +12502,43,46,35,0.0 +12502,50,16.25,35,0.0 +12502,53,32.8,33,0.0 +12502,59,55,24,0.0 +12502,69,36,14,0.0 +12502,65,21.05,34,0.0 +12502,21,10,41,0.0 +12503,14,23.25,26,0.0 +12503,23,9,7,0.0 +12503,74,10,48,0.0 +12503,19,9.2,42,0.0 +12503,22,21,4,0.0 +12503,1,18,48,0.0 +12503,29,123.79,37,0.0 +12503,31,12.5,40,0.0 +12503,67,14,46,0.0 +12503,9,97,27,0.0 +12503,24,4.5,50,0.0 +12503,61,28.5,24,0.0 +12503,36,19,9,0.0 +12503,7,30,17,0.0 +12503,21,10,1,0.0 +12503,41,9.65,30,0.0 +12503,59,55,21,0.0 +12503,10,31,32,0.0 +12503,18,62.5,28,0.0 +12503,15,15.5,11,0.0 +12503,30,25.89,27,0.0 +12503,47,9.5,17,0.0 +12503,52,7,30,0.0 +12503,4,22,5,0.0 +12503,75,7.75,21,0.0 +12503,62,49.3,30,0.0 +12503,50,16.25,3,0.0 +12503,66,17,45,0.0 +12503,60,34,25,0.0 +12503,26,31.23,47,0.0 +12503,49,20,19,0.0 +12503,69,36,46,0.0 +12503,73,15,8,0.0 +12503,20,81,35,0.0 +12503,5,21.35,4,0.0 +12503,43,46,9,0.0 +12503,76,18,47,0.0 +12503,39,18,25,0.0 +12503,65,21.05,33,0.0 +12503,51,53,12,0.0 +12503,8,40,16,0.0 +12503,2,19,45,0.0 +12503,12,38,10,0.0 +12503,58,13.25,48,0.0 +12503,6,25,20,0.0 +12503,38,263.5,38,0.0 +12503,28,45.6,17,0.0 +12503,11,21,20,0.0 +12503,42,14,4,0.0 +12503,68,12.5,38,0.0 +12503,56,38,30,0.0 +12503,16,17.45,24,0.0 +12503,57,19.5,42,0.0 +12503,44,19.45,22,0.0 +12503,45,9.5,15,0.0 +12503,17,39,17,0.0 +12503,53,32.8,18,0.0 +12503,46,12,7,0.0 +12503,32,32,6,0.0 +12503,27,43.9,48,0.0 +12503,33,2.5,45,0.0 +12503,48,12.75,25,0.0 +12504,42,14,16,0.0 +12504,48,12.75,31,0.0 +12504,57,19.5,16,0.0 +12504,49,20,4,0.0 +12504,20,81,28,0.0 +12504,23,9,11,0.0 +12504,72,34.8,19,0.0 +12504,70,15,50,0.0 +12504,18,62.5,43,0.0 +12504,61,28.5,15,0.0 +12504,24,4.5,50,0.0 +12504,64,33.25,48,0.0 +12504,5,21.35,36,0.0 +12504,44,19.45,33,0.0 +12504,1,18,7,0.0 +12504,71,21.5,43,0.0 +12504,31,12.5,2,0.0 +12504,46,12,47,0.0 +12504,60,34,12,0.0 +12504,30,25.89,14,0.0 +12504,22,21,50,0.0 +12504,14,23.25,37,0.0 +12504,36,19,33,0.0 +12504,6,25,34,0.0 +12504,8,40,44,0.0 +12504,3,10,8,0.0 +12505,8,40,41,0.0 +12505,29,123.79,34,0.0 +12505,54,7.45,26,0.0 +12505,43,46,28,0.0 +12505,14,23.25,49,0.0 +12505,4,22,2,0.0 +12505,42,14,12,0.0 +12505,58,13.25,23,0.0 +12505,67,14,41,0.0 +12505,35,18,23,0.0 +12505,74,10,14,0.0 +12505,23,9,24,0.0 +12505,44,19.45,46,0.0 +12505,71,21.5,5,0.0 +12505,72,34.8,28,0.0 +12505,10,31,45,0.0 +12505,61,28.5,18,0.0 +12505,56,38,50,0.0 +12505,17,39,39,0.0 +12505,52,7,25,0.0 +12505,16,17.45,9,0.0 +12505,65,21.05,35,0.0 +12505,11,21,47,0.0 +12505,26,31.23,25,0.0 +12505,75,7.75,37,0.0 +12505,24,4.5,7,0.0 +12505,49,20,10,0.0 +12505,39,18,25,0.0 +12505,20,81,50,0.0 +12505,22,21,44,0.0 +12505,31,12.5,20,0.0 +12505,41,9.65,39,0.0 +12505,12,38,19,0.0 +12505,55,24,12,0.0 +12505,27,43.9,20,0.0 +12505,50,16.25,38,0.0 +12505,3,10,25,0.0 +12505,48,12.75,25,0.0 +12505,77,13,8,0.0 +12505,70,15,28,0.0 +12505,19,9.2,11,0.0 +12505,7,30,49,0.0 +12505,66,17,26,0.0 +12505,1,18,35,0.0 +12505,36,19,21,0.0 +12505,76,18,37,0.0 +12505,32,32,7,0.0 +12505,64,33.25,3,0.0 +12505,68,12.5,13,0.0 +12505,25,14,49,0.0 +12505,15,15.5,17,0.0 +12506,54,7.45,6,0.0 +12506,13,6,6,0.0 +12506,32,32,15,0.0 +12506,28,45.6,3,0.0 +12506,53,32.8,21,0.0 +12506,27,43.9,29,0.0 +12506,76,18,5,0.0 +12506,15,15.5,25,0.0 +12506,50,16.25,43,0.0 +12506,77,13,38,0.0 +12506,71,21.5,14,0.0 +12506,40,18.4,14,0.0 +12506,44,19.45,41,0.0 +12506,14,23.25,18,0.0 +12506,23,9,38,0.0 +12506,38,263.5,31,0.0 +12506,21,10,19,0.0 +12506,33,2.5,22,0.0 +12506,62,49.3,27,0.0 +12506,12,38,3,0.0 +12506,69,36,36,0.0 +12506,63,43.9,41,0.0 +12506,2,19,50,0.0 +12506,26,31.23,42,0.0 +12506,57,19.5,39,0.0 +12506,10,31,45,0.0 +12506,67,14,31,0.0 +12506,42,14,8,0.0 +12506,4,22,16,0.0 +12506,39,18,42,0.0 +12506,16,17.45,32,0.0 +12506,58,13.25,35,0.0 +12506,17,39,39,0.0 +12506,9,97,22,0.0 +12506,70,15,11,0.0 +12506,72,34.8,35,0.0 +12506,5,21.35,40,0.0 +12506,37,26,35,0.0 +12506,7,30,36,0.0 +12506,25,14,44,0.0 +12506,47,9.5,37,0.0 +12506,66,17,16,0.0 +12506,34,14,33,0.0 +12506,49,20,17,0.0 +12506,43,46,37,0.0 +12506,51,53,17,0.0 +12506,3,10,21,0.0 +12506,11,21,32,0.0 +12506,64,33.25,43,0.0 +12506,8,40,35,0.0 +12506,56,38,49,0.0 +12506,65,21.05,11,0.0 +12506,35,18,13,0.0 +12506,48,12.75,30,0.0 +12506,52,7,50,0.0 +12506,60,34,2,0.0 +12506,46,12,2,0.0 +12506,73,15,37,0.0 +12507,37,26,46,0.0 +12507,47,9.5,49,0.0 +12507,4,22,24,0.0 +12507,68,12.5,17,0.0 +12507,48,12.75,31,0.0 +12507,14,23.25,42,0.0 +12507,33,2.5,38,0.0 +12508,61,28.5,19,0.0 +12508,4,22,19,0.0 +12508,18,62.5,24,0.0 +12508,15,15.5,13,0.0 +12508,50,16.25,13,0.0 +12508,13,6,46,0.0 +12508,28,45.6,47,0.0 +12508,71,21.5,30,0.0 +12508,54,7.45,19,0.0 +12508,40,18.4,31,0.0 +12508,44,19.45,42,0.0 +12508,47,9.5,33,0.0 +12508,30,25.89,32,0.0 +12508,17,39,7,0.0 +12508,7,30,12,0.0 +12508,11,21,19,0.0 +12508,22,21,23,0.0 +12508,53,32.8,14,0.0 +12508,32,32,24,0.0 +12508,59,55,30,0.0 +12508,67,14,15,0.0 +12508,58,13.25,44,0.0 +12508,60,34,19,0.0 +12508,69,36,7,0.0 +12508,16,17.45,3,0.0 +12508,72,34.8,9,0.0 +12508,26,31.23,44,0.0 +12508,57,19.5,37,0.0 +12508,29,123.79,17,0.0 +12508,6,25,38,0.0 +12508,74,10,26,0.0 +12508,37,26,21,0.0 +12508,31,12.5,47,0.0 +12508,3,10,47,0.0 +12508,42,14,31,0.0 +12508,10,31,21,0.0 +12508,9,97,20,0.0 +12508,25,14,12,0.0 +12508,34,14,4,0.0 +12508,20,81,45,0.0 +12508,73,15,9,0.0 +12508,39,18,10,0.0 +12508,48,12.75,16,0.0 +12508,76,18,23,0.0 +12509,51,53,41,0.0 +12509,45,9.5,8,0.0 +12509,7,30,26,0.0 +12509,57,19.5,42,0.0 +12509,30,25.89,9,0.0 +12509,72,34.8,32,0.0 +12509,10,31,49,0.0 +12509,6,25,47,0.0 +12509,43,46,14,0.0 +12509,70,15,16,0.0 +12509,21,10,40,0.0 +12509,52,7,22,0.0 +12509,40,18.4,9,0.0 +12509,48,12.75,32,0.0 +12509,49,20,45,0.0 +12509,73,15,12,0.0 +12509,63,43.9,44,0.0 +12509,77,13,32,0.0 +12509,26,31.23,37,0.0 +12509,59,55,46,0.0 +12509,60,34,40,0.0 +12509,17,39,13,0.0 +12509,31,12.5,31,0.0 +12509,9,97,9,0.0 +12509,32,32,29,0.0 +12509,38,263.5,27,0.0 +12509,68,12.5,29,0.0 +12509,39,18,28,0.0 +12509,24,4.5,29,0.0 +12509,8,40,49,0.0 +12509,25,14,4,0.0 +12509,54,7.45,34,0.0 +12509,28,45.6,46,0.0 +12509,42,14,5,0.0 +12509,11,21,36,0.0 +12509,71,21.5,48,0.0 +12509,55,24,45,0.0 +12509,37,26,12,0.0 +12509,41,9.65,10,0.0 +12509,47,9.5,21,0.0 +12509,74,10,39,0.0 +12509,50,16.25,13,0.0 +12509,19,9.2,5,0.0 +12509,69,36,35,0.0 +12509,16,17.45,4,0.0 +12509,58,13.25,47,0.0 +12509,14,23.25,5,0.0 +12509,15,15.5,32,0.0 +12509,13,6,43,0.0 +12509,1,18,20,0.0 +12509,33,2.5,4,0.0 +12509,2,19,14,0.0 +12510,42,14,6,0.0 +12510,60,34,6,0.0 +12510,28,45.6,28,0.0 +12510,40,18.4,40,0.0 +12510,12,38,12,0.0 +12510,66,17,27,0.0 +12510,29,123.79,41,0.0 +12510,54,7.45,24,0.0 +12510,47,9.5,41,0.0 +12510,10,31,28,0.0 +12510,23,9,4,0.0 +12510,24,4.5,17,0.0 +12510,21,10,9,0.0 +12510,75,7.75,40,0.0 +12510,25,14,20,0.0 +12510,73,15,23,0.0 +12510,27,43.9,34,0.0 +12510,57,19.5,44,0.0 +12510,61,28.5,40,0.0 +12510,35,18,45,0.0 +12510,65,21.05,23,0.0 +12510,72,34.8,48,0.0 +12510,34,14,38,0.0 +12510,49,20,25,0.0 +12510,18,62.5,37,0.0 +12510,8,40,49,0.0 +12510,22,21,1,0.0 +12510,32,32,16,0.0 +12510,76,18,41,0.0 +12510,44,19.45,2,0.0 +12510,30,25.89,27,0.0 +12510,67,14,28,0.0 +12510,16,17.45,44,0.0 +12510,13,6,3,0.0 +12510,69,36,17,0.0 +12510,9,97,35,0.0 +12510,17,39,43,0.0 +12510,45,9.5,49,0.0 +12510,74,10,47,0.0 +12510,71,21.5,11,0.0 +12510,4,22,35,0.0 +12510,50,16.25,12,0.0 +12510,46,12,27,0.0 +12510,63,43.9,41,0.0 +12510,5,21.35,15,0.0 +12510,56,38,9,0.0 +12510,41,9.65,37,0.0 +12510,15,15.5,13,0.0 +12510,31,12.5,31,0.0 +12510,19,9.2,31,0.0 +12510,2,19,35,0.0 +12510,7,30,3,0.0 +12510,62,49.3,22,0.0 +12510,43,46,38,0.0 +12510,77,13,35,0.0 +12510,59,55,43,0.0 +12510,14,23.25,28,0.0 +12510,38,263.5,44,0.0 +12510,64,33.25,12,0.0 +12510,3,10,19,0.0 +12510,48,12.75,34,0.0 +12510,11,21,42,0.0 +12510,58,13.25,17,0.0 +12510,33,2.5,46,0.0 +12511,23,9,50,0.0 +12511,54,7.45,44,0.0 +12511,65,21.05,27,0.0 +12511,62,49.3,3,0.0 +12511,16,17.45,41,0.0 +12511,58,13.25,35,0.0 +12511,64,33.25,27,0.0 +12511,72,34.8,21,0.0 +12511,56,38,15,0.0 +12511,27,43.9,50,0.0 +12511,69,36,42,0.0 +12511,19,9.2,30,0.0 +12511,42,14,43,0.0 +12511,48,12.75,8,0.0 +12511,24,4.5,18,0.0 +12511,52,7,38,0.0 +12511,21,10,20,0.0 +12511,15,15.5,25,0.0 +12511,3,10,43,0.0 +12511,60,34,2,0.0 +12511,41,9.65,22,0.0 +12511,77,13,41,0.0 +12511,25,14,6,0.0 +12511,55,24,27,0.0 +12511,68,12.5,27,0.0 +12511,46,12,12,0.0 +12511,66,17,19,0.0 +12511,47,9.5,6,0.0 +12511,37,26,35,0.0 +12511,7,30,42,0.0 +12511,61,28.5,12,0.0 +12511,75,7.75,50,0.0 +12511,34,14,11,0.0 +12511,63,43.9,4,0.0 +12511,38,263.5,16,0.0 +12511,45,9.5,22,0.0 +12511,14,23.25,14,0.0 +12511,67,14,9,0.0 +12511,59,55,25,0.0 +12511,73,15,37,0.0 +12511,71,21.5,25,0.0 +12511,2,19,17,0.0 +12511,6,25,27,0.0 +12511,33,2.5,40,0.0 +12511,18,62.5,19,0.0 +12511,36,19,43,0.0 +12511,70,15,29,0.0 +12511,13,6,6,0.0 +12511,31,12.5,8,0.0 +12511,74,10,43,0.0 +12511,32,32,32,0.0 +12511,28,45.6,24,0.0 +12511,44,19.45,41,0.0 +12511,39,18,30,0.0 +12511,9,97,45,0.0 +12511,43,46,33,0.0 +12511,30,25.89,12,0.0 +12511,76,18,33,0.0 +12511,1,18,34,0.0 +12511,57,19.5,27,0.0 +12511,12,38,29,0.0 +12511,20,81,19,0.0 +12511,10,31,34,0.0 +12511,17,39,12,0.0 +12511,51,53,20,0.0 +12511,40,18.4,25,0.0 +12511,4,22,44,0.0 +12512,29,123.79,18,0.0 +12512,39,18,23,0.0 +12512,76,18,31,0.0 +12512,10,31,39,0.0 +12512,74,10,33,0.0 +12512,38,263.5,28,0.0 +12512,24,4.5,25,0.0 +12512,45,9.5,28,0.0 +12512,61,28.5,8,0.0 +12513,77,13,36,0.0 +12513,22,21,37,0.0 +12513,67,14,46,0.0 +12513,2,19,33,0.0 +12513,15,15.5,24,0.0 +12513,42,14,40,0.0 +12513,10,31,7,0.0 +12513,25,14,45,0.0 +12513,38,263.5,24,0.0 +12513,9,97,40,0.0 +12513,52,7,17,0.0 +12513,74,10,26,0.0 +12513,40,18.4,6,0.0 +12513,50,16.25,7,0.0 +12513,70,15,44,0.0 +12513,45,9.5,32,0.0 +12513,8,40,31,0.0 +12513,60,34,18,0.0 +12513,39,18,28,0.0 +12513,27,43.9,27,0.0 +12513,43,46,17,0.0 +12513,26,31.23,22,0.0 +12513,18,62.5,42,0.0 +12513,7,30,28,0.0 +12513,75,7.75,16,0.0 +12513,54,7.45,14,0.0 +12513,49,20,4,0.0 +12513,12,38,21,0.0 +12513,16,17.45,46,0.0 +12513,65,21.05,13,0.0 +12513,34,14,34,0.0 +12513,46,12,6,0.0 +12513,57,19.5,26,0.0 +12513,59,55,41,0.0 +12513,4,22,18,0.0 +12513,56,38,43,0.0 +12513,64,33.25,43,0.0 +12513,21,10,44,0.0 +12513,29,123.79,27,0.0 +12513,17,39,7,0.0 +12513,61,28.5,50,0.0 +12513,23,9,8,0.0 +12513,58,13.25,29,0.0 +12513,68,12.5,36,0.0 +12513,35,18,21,0.0 +12513,30,25.89,45,0.0 +12513,13,6,33,0.0 +12514,50,16.25,48,0.0 +12514,57,19.5,28,0.0 +12514,35,18,38,0.0 +12514,76,18,37,0.0 +12514,39,18,12,0.0 +12514,70,15,9,0.0 +12514,48,12.75,4,0.0 +12514,38,263.5,11,0.0 +12514,64,33.25,28,0.0 +12514,3,10,35,0.0 +12514,55,24,14,0.0 +12514,60,34,48,0.0 +12514,73,15,29,0.0 +12514,75,7.75,13,0.0 +12514,74,10,38,0.0 +12514,11,21,14,0.0 +12514,37,26,37,0.0 +12514,14,23.25,16,0.0 +12514,72,34.8,30,0.0 +12514,42,14,12,0.0 +12514,18,62.5,27,0.0 +12514,32,32,43,0.0 +12514,41,9.65,46,0.0 +12514,54,7.45,38,0.0 +12514,46,12,22,0.0 +12514,59,55,5,0.0 +12514,36,19,9,0.0 +12514,22,21,50,0.0 +12514,28,45.6,26,0.0 +12514,6,25,18,0.0 +12515,8,40,35,0.0 +12515,53,32.8,4,0.0 +12515,9,97,26,0.0 +12515,13,6,29,0.0 +12515,52,7,16,0.0 +12515,39,18,33,0.0 +12515,2,19,29,0.0 +12515,77,13,48,0.0 +12515,63,43.9,38,0.0 +12515,24,4.5,9,0.0 +12515,51,53,46,0.0 +12515,66,17,47,0.0 +12515,21,10,31,0.0 +12515,68,12.5,26,0.0 +12515,58,13.25,12,0.0 +12515,76,18,33,0.0 +12515,57,19.5,15,0.0 +12515,36,19,39,0.0 +12515,29,123.79,40,0.0 +12515,31,12.5,14,0.0 +12515,74,10,35,0.0 +12515,60,34,35,0.0 +12515,27,43.9,14,0.0 +12515,35,18,12,0.0 +12515,1,18,28,0.0 +12515,48,12.75,1,0.0 +12515,54,7.45,19,0.0 +12515,55,24,13,0.0 +12515,59,55,24,0.0 +12515,65,21.05,9,0.0 +12515,50,16.25,33,0.0 +12515,20,81,6,0.0 +12515,32,32,33,0.0 +12515,15,15.5,49,0.0 +12515,40,18.4,11,0.0 +12515,75,7.75,17,0.0 +12515,37,26,13,0.0 +12515,30,25.89,38,0.0 +12515,25,14,38,0.0 +12515,73,15,8,0.0 +12515,38,263.5,39,0.0 +12515,71,21.5,16,0.0 +12515,5,21.35,38,0.0 +12515,3,10,21,0.0 +12515,10,31,32,0.0 +12515,47,9.5,11,0.0 +12515,14,23.25,24,0.0 +12515,49,20,24,0.0 +12515,46,12,10,0.0 +12515,62,49.3,14,0.0 +12515,42,14,8,0.0 +12515,70,15,32,0.0 +12515,4,22,3,0.0 +12515,7,30,40,0.0 +12515,43,46,40,0.0 +12515,45,9.5,17,0.0 +12515,19,9.2,8,0.0 +12515,28,45.6,34,0.0 +12515,67,14,18,0.0 +12515,23,9,42,0.0 +12515,72,34.8,46,0.0 +12515,22,21,46,0.0 +12515,18,62.5,17,0.0 +12515,69,36,3,0.0 +12515,11,21,1,0.0 +12515,12,38,16,0.0 +12515,26,31.23,40,0.0 +12515,16,17.45,28,0.0 +12515,61,28.5,4,0.0 +12515,56,38,25,0.0 +12516,10,31,18,0.0 +12516,42,14,44,0.0 +12516,54,7.45,39,0.0 +12516,29,123.79,50,0.0 +12516,63,43.9,30,0.0 +12516,45,9.5,23,0.0 +12516,16,17.45,17,0.0 +12516,43,46,39,0.0 +12516,60,34,13,0.0 +12516,75,7.75,22,0.0 +12516,34,14,30,0.0 +12516,69,36,23,0.0 +12516,73,15,32,0.0 +12516,65,21.05,8,0.0 +12516,72,34.8,42,0.0 +12516,71,21.5,1,0.0 +12516,77,13,30,0.0 +12516,22,21,16,0.0 +12516,58,13.25,13,0.0 +12516,55,24,9,0.0 +12517,38,263.5,32,0.0 +12517,23,9,35,0.0 +12517,3,10,34,0.0 +12517,17,39,33,0.0 +12517,1,18,6,0.0 +12517,26,31.23,18,0.0 +12517,70,15,17,0.0 +12517,9,97,33,0.0 +12517,35,18,26,0.0 +12517,15,15.5,28,0.0 +12517,8,40,42,0.0 +12517,12,38,2,0.0 +12517,62,49.3,32,0.0 +12517,69,36,8,0.0 +12517,61,28.5,33,0.0 +12517,48,12.75,16,0.0 +12517,4,22,17,0.0 +12517,5,21.35,21,0.0 +12517,43,46,16,0.0 +12517,56,38,31,0.0 +12517,77,13,33,0.0 +12517,24,4.5,30,0.0 +12517,51,53,19,0.0 +12517,53,32.8,27,0.0 +12517,34,14,46,0.0 +12517,19,9.2,40,0.0 +12517,30,25.89,28,0.0 +12517,74,10,19,0.0 +12517,18,62.5,20,0.0 +12517,22,21,1,0.0 +12517,57,19.5,11,0.0 +12517,67,14,23,0.0 +12517,60,34,6,0.0 +12518,68,12.5,2,0.0 +12518,24,4.5,34,0.0 +12518,62,49.3,43,0.0 +12518,3,10,18,0.0 +12518,66,17,22,0.0 +12518,17,39,42,0.0 +12518,63,43.9,32,0.0 +12518,43,46,45,0.0 +12518,31,12.5,7,0.0 +12518,74,10,38,0.0 +12518,13,6,20,0.0 +12518,2,19,17,0.0 +12518,12,38,43,0.0 +12518,39,18,45,0.0 +12518,65,21.05,3,0.0 +12518,4,22,21,0.0 +12518,30,25.89,41,0.0 +12518,60,34,50,0.0 +12518,48,12.75,39,0.0 +12518,51,53,12,0.0 +12518,69,36,12,0.0 +12518,6,25,15,0.0 +12518,1,18,39,0.0 +12518,53,32.8,22,0.0 +12518,42,14,10,0.0 +12518,46,12,6,0.0 +12518,55,24,12,0.0 +12518,8,40,3,0.0 +12518,61,28.5,48,0.0 +12518,23,9,18,0.0 +12518,29,123.79,43,0.0 +12518,5,21.35,5,0.0 +12518,18,62.5,16,0.0 +12518,45,9.5,30,0.0 +12518,70,15,39,0.0 +12518,22,21,20,0.0 +12518,58,13.25,22,0.0 +12518,67,14,18,0.0 +12518,37,26,43,0.0 +12518,11,21,41,0.0 +12518,16,17.45,32,0.0 +12518,27,43.9,3,0.0 +12518,28,45.6,4,0.0 +12518,75,7.75,11,0.0 +12518,40,18.4,11,0.0 +12518,49,20,6,0.0 +12518,59,55,41,0.0 +12519,61,28.5,29,0.0 +12519,5,21.35,14,0.0 +12519,63,43.9,32,0.0 +12519,51,53,16,0.0 +12519,64,33.25,14,0.0 +12519,15,15.5,41,0.0 +12519,54,7.45,22,0.0 +12519,66,17,8,0.0 +12519,26,31.23,32,0.0 +12519,6,25,15,0.0 +12519,41,9.65,29,0.0 +12519,43,46,43,0.0 +12519,65,21.05,27,0.0 +12519,11,21,27,0.0 +12519,3,10,35,0.0 +12519,37,26,43,0.0 +12519,44,19.45,18,0.0 +12519,49,20,48,0.0 +12519,36,19,22,0.0 +12519,67,14,39,0.0 +12519,48,12.75,44,0.0 +12519,23,9,3,0.0 +12519,74,10,23,0.0 +12519,69,36,30,0.0 +12519,10,31,48,0.0 +12519,22,21,25,0.0 +12519,16,17.45,1,0.0 +12519,53,32.8,29,0.0 +12519,52,7,35,0.0 +12519,13,6,7,0.0 +12519,9,97,21,0.0 +12519,39,18,3,0.0 +12519,27,43.9,50,0.0 +12519,42,14,36,0.0 +12519,17,39,2,0.0 +12519,18,62.5,3,0.0 +12519,25,14,10,0.0 +12519,14,23.25,5,0.0 +12519,71,21.5,31,0.0 +12519,55,24,4,0.0 +12519,73,15,21,0.0 +12519,60,34,18,0.0 +12519,21,10,39,0.0 +12519,31,12.5,5,0.0 +12519,28,45.6,1,0.0 +12519,47,9.5,36,0.0 +12519,77,13,46,0.0 +12519,45,9.5,48,0.0 +12519,76,18,50,0.0 +12519,34,14,28,0.0 +12519,7,30,35,0.0 +12519,59,55,46,0.0 +12519,40,18.4,15,0.0 +12519,24,4.5,12,0.0 +12519,50,16.25,22,0.0 +12519,46,12,37,0.0 +12519,58,13.25,29,0.0 +12519,33,2.5,45,0.0 +12520,75,7.75,17,0.0 +12520,56,38,29,0.0 +12520,40,18.4,7,0.0 +12520,62,49.3,2,0.0 +12520,64,33.25,8,0.0 +12520,45,9.5,13,0.0 +12520,34,14,3,0.0 +12520,28,45.6,36,0.0 +12520,72,34.8,45,0.0 +12520,31,12.5,22,0.0 +12520,24,4.5,22,0.0 +12520,37,26,15,0.0 +12520,52,7,12,0.0 +12520,21,10,45,0.0 +12520,3,10,36,0.0 +12520,60,34,37,0.0 +12520,10,31,9,0.0 +12520,27,43.9,28,0.0 +12520,32,32,40,0.0 +12520,25,14,18,0.0 +12520,14,23.25,13,0.0 +12520,15,15.5,38,0.0 +12520,71,21.5,1,0.0 +12520,54,7.45,23,0.0 +12520,77,13,26,0.0 +12520,6,25,37,0.0 +12520,30,25.89,11,0.0 +12520,49,20,18,0.0 +12520,47,9.5,30,0.0 +12520,51,53,15,0.0 +12520,35,18,5,0.0 +12520,19,9.2,44,0.0 +12520,17,39,16,0.0 +12520,29,123.79,41,0.0 +12520,13,6,47,0.0 +12520,22,21,2,0.0 +12520,63,43.9,29,0.0 +12520,12,38,9,0.0 +12520,7,30,48,0.0 +12520,2,19,41,0.0 +12520,16,17.45,1,0.0 +12520,5,21.35,3,0.0 +12520,36,19,49,0.0 +12520,42,14,36,0.0 +12520,1,18,39,0.0 +12521,39,18,32,0.0 +12521,74,10,34,0.0 +12521,31,12.5,39,0.0 +12521,71,21.5,4,0.0 +12521,46,12,37,0.0 +12521,12,38,4,0.0 +12521,21,10,45,0.0 +12521,38,263.5,8,0.0 +12521,58,13.25,26,0.0 +12521,24,4.5,16,0.0 +12521,8,40,4,0.0 +12521,50,16.25,32,0.0 +12521,56,38,28,0.0 +12521,53,32.8,10,0.0 +12521,5,21.35,27,0.0 +12521,55,24,16,0.0 +12521,48,12.75,35,0.0 +12521,60,34,42,0.0 +12521,11,21,17,0.0 +12521,28,45.6,25,0.0 +12521,14,23.25,46,0.0 +12521,66,17,46,0.0 +12521,7,30,24,0.0 +12521,18,62.5,43,0.0 +12521,73,15,42,0.0 +12521,63,43.9,35,0.0 +12521,68,12.5,10,0.0 +12521,64,33.25,12,0.0 +12521,19,9.2,40,0.0 +12521,29,123.79,2,0.0 +12521,35,18,30,0.0 +12521,51,53,41,0.0 +12521,61,28.5,7,0.0 +12521,47,9.5,5,0.0 +12521,22,21,8,0.0 +12521,1,18,7,0.0 +12521,36,19,33,0.0 +12521,59,55,48,0.0 +12521,30,25.89,18,0.0 +12521,34,14,50,0.0 +12521,75,7.75,14,0.0 +12521,16,17.45,33,0.0 +12521,3,10,15,0.0 +12522,20,81,38,0.0 +12522,45,9.5,24,0.0 +12522,38,263.5,21,0.0 +12522,76,18,7,0.0 +12522,51,53,29,0.0 +12522,64,33.25,44,0.0 +12522,2,19,19,0.0 +12522,9,97,28,0.0 +12522,44,19.45,11,0.0 +12522,72,34.8,40,0.0 +12522,66,17,19,0.0 +12522,43,46,42,0.0 +12522,4,22,14,0.0 +12522,63,43.9,1,0.0 +12522,56,38,24,0.0 +12522,52,7,17,0.0 +12522,26,31.23,16,0.0 +12522,71,21.5,3,0.0 +12522,68,12.5,19,0.0 +12522,31,12.5,44,0.0 +12522,40,18.4,22,0.0 +12522,75,7.75,3,0.0 +12522,37,26,23,0.0 +12522,36,19,47,0.0 +12522,62,49.3,7,0.0 +12522,74,10,45,0.0 +12522,3,10,5,0.0 +12522,24,4.5,21,0.0 +12522,30,25.89,10,0.0 +12522,33,2.5,27,0.0 +12522,12,38,46,0.0 +12522,7,30,35,0.0 +12522,14,23.25,35,0.0 +12522,15,15.5,29,0.0 +12522,28,45.6,10,0.0 +12522,42,14,32,0.0 +12522,35,18,50,0.0 +12522,47,9.5,19,0.0 +12522,41,9.65,50,0.0 +12522,67,14,17,0.0 +12522,48,12.75,34,0.0 +12522,54,7.45,12,0.0 +12522,18,62.5,45,0.0 +12522,60,34,19,0.0 +12522,55,24,26,0.0 +12522,39,18,36,0.0 +12522,19,9.2,13,0.0 +12522,58,13.25,43,0.0 +12522,70,15,27,0.0 +12522,53,32.8,33,0.0 +12522,59,55,27,0.0 +12522,1,18,28,0.0 +12522,32,32,25,0.0 +12522,6,25,31,0.0 +12523,71,21.5,9,0.0 +12523,31,12.5,15,0.0 +12523,69,36,20,0.0 +12523,40,18.4,50,0.0 +12523,68,12.5,4,0.0 +12523,17,39,11,0.0 +12523,43,46,22,0.0 +12523,42,14,1,0.0 +12523,36,19,33,0.0 +12523,32,32,15,0.0 +12524,36,19,12,0.0 +12524,57,19.5,9,0.0 +12524,53,32.8,26,0.0 +12524,54,7.45,2,0.0 +12524,17,39,19,0.0 +12524,52,7,9,0.0 +12524,72,34.8,28,0.0 +12524,38,263.5,15,0.0 +12524,13,6,49,0.0 +12524,42,14,50,0.0 +12524,41,9.65,6,0.0 +12524,34,14,31,0.0 +12524,7,30,32,0.0 +12524,62,49.3,31,0.0 +12524,37,26,38,0.0 +12524,66,17,19,0.0 +12524,10,31,45,0.0 +12524,19,9.2,16,0.0 +12524,11,21,2,0.0 +12524,29,123.79,15,0.0 +12524,75,7.75,19,0.0 +12524,58,13.25,26,0.0 +12524,3,10,37,0.0 +12524,14,23.25,18,0.0 +12524,74,10,6,0.0 +12524,30,25.89,17,0.0 +12524,22,21,9,0.0 +12524,32,32,9,0.0 +12524,27,43.9,13,0.0 +12524,31,12.5,29,0.0 +12524,6,25,8,0.0 +12524,15,15.5,17,0.0 +12524,63,43.9,32,0.0 +12525,60,34,50,0.0 +12525,11,21,45,0.0 +12525,71,21.5,32,0.0 +12525,54,7.45,31,0.0 +12525,30,25.89,32,0.0 +12525,72,34.8,40,0.0 +12525,66,17,43,0.0 +12525,2,19,24,0.0 +12525,15,15.5,18,0.0 +12525,41,9.65,14,0.0 +12525,53,32.8,9,0.0 +12525,17,39,43,0.0 +12525,39,18,9,0.0 +12525,51,53,38,0.0 +12525,55,24,17,0.0 +12525,40,18.4,27,0.0 +12525,32,32,5,0.0 +12525,35,18,36,0.0 +12525,45,9.5,47,0.0 +12525,42,14,29,0.0 +12525,4,22,37,0.0 +12525,58,13.25,20,0.0 +12525,48,12.75,6,0.0 +12525,70,15,26,0.0 +12525,28,45.6,39,0.0 +12525,7,30,15,0.0 +12525,61,28.5,25,0.0 +12525,74,10,16,0.0 +12525,75,7.75,16,0.0 +12525,25,14,14,0.0 +12525,33,2.5,7,0.0 +12525,26,31.23,13,0.0 +12525,50,16.25,38,0.0 +12525,37,26,18,0.0 +12525,38,263.5,50,0.0 +12526,53,32.8,29,0.0 +12526,3,10,16,0.0 +12526,18,62.5,20,0.0 +12526,9,97,17,0.0 +12526,44,19.45,23,0.0 +12526,68,12.5,4,0.0 +12526,67,14,31,0.0 +12526,56,38,14,0.0 +12526,30,25.89,49,0.0 +12526,38,263.5,33,0.0 +12526,11,21,12,0.0 +12526,19,9.2,31,0.0 +12526,31,12.5,38,0.0 +12526,12,38,27,0.0 +12526,63,43.9,4,0.0 +12526,70,15,5,0.0 +12526,52,7,49,0.0 +12526,51,53,13,0.0 +12526,1,18,43,0.0 +12526,69,36,18,0.0 +12526,28,45.6,40,0.0 +12526,42,14,44,0.0 +12526,71,21.5,24,0.0 +12526,29,123.79,12,0.0 +12526,64,33.25,46,0.0 +12526,39,18,29,0.0 +12526,55,24,28,0.0 +12526,36,19,35,0.0 +12526,5,21.35,21,0.0 +12526,65,21.05,3,0.0 +12526,24,4.5,36,0.0 +12526,2,19,10,0.0 +12526,41,9.65,36,0.0 +12526,76,18,26,0.0 +12526,77,13,19,0.0 +12526,66,17,7,0.0 +12526,35,18,36,0.0 +12526,74,10,11,0.0 +12526,21,10,21,0.0 +12526,58,13.25,36,0.0 +12526,22,21,8,0.0 +12526,20,81,35,0.0 +12526,46,12,10,0.0 +12526,8,40,28,0.0 +12526,72,34.8,9,0.0 +12526,6,25,25,0.0 +12526,40,18.4,23,0.0 +12526,23,9,5,0.0 +12526,57,19.5,50,0.0 +12526,25,14,13,0.0 +12526,15,15.5,37,0.0 +12526,54,7.45,13,0.0 +12526,13,6,17,0.0 +12526,34,14,23,0.0 +12526,27,43.9,15,0.0 +12526,50,16.25,20,0.0 +12526,43,46,41,0.0 +12526,14,23.25,2,0.0 +12526,16,17.45,22,0.0 +12526,33,2.5,29,0.0 +12526,17,39,27,0.0 +12526,45,9.5,50,0.0 +12526,62,49.3,24,0.0 +12526,26,31.23,46,0.0 +12526,37,26,8,0.0 +12526,47,9.5,4,0.0 +12526,60,34,25,0.0 +12526,73,15,47,0.0 +12526,4,22,50,0.0 +12527,54,7.45,44,0.0 +12527,43,46,39,0.0 +12527,41,9.65,26,0.0 +12527,68,12.5,45,0.0 +12527,17,39,24,0.0 +12527,15,15.5,20,0.0 +12527,52,7,8,0.0 +12527,37,26,30,0.0 +12527,42,14,1,0.0 +12527,21,10,2,0.0 +12527,55,24,43,0.0 +12527,26,31.23,9,0.0 +12527,60,34,10,0.0 +12527,30,25.89,24,0.0 +12527,62,49.3,17,0.0 +12527,10,31,25,0.0 +12527,73,15,31,0.0 +12527,24,4.5,47,0.0 +12527,64,33.25,49,0.0 +12527,29,123.79,17,0.0 +12527,70,15,9,0.0 +12527,14,23.25,10,0.0 +12527,32,32,48,0.0 +12527,36,19,9,0.0 +12527,18,62.5,39,0.0 +12527,28,45.6,42,0.0 +12527,65,21.05,30,0.0 +12527,59,55,36,0.0 +12527,49,20,31,0.0 +12527,76,18,49,0.0 +12527,5,21.35,16,0.0 +12527,63,43.9,43,0.0 +12527,74,10,12,0.0 +12527,19,9.2,45,0.0 +12527,3,10,6,0.0 +12527,33,2.5,35,0.0 +12527,4,22,48,0.0 +12527,50,16.25,4,0.0 +12527,39,18,32,0.0 +12527,57,19.5,41,0.0 +12527,31,12.5,39,0.0 +12527,72,34.8,16,0.0 +12527,77,13,18,0.0 +12527,2,19,33,0.0 +12527,45,9.5,22,0.0 +12527,61,28.5,13,0.0 +12527,23,9,27,0.0 +12527,22,21,41,0.0 +12527,48,12.75,29,0.0 +12527,27,43.9,10,0.0 +12527,7,30,4,0.0 +12527,16,17.45,26,0.0 +12527,58,13.25,10,0.0 +12527,13,6,1,0.0 +12527,66,17,43,0.0 +12527,34,14,33,0.0 +12527,71,21.5,31,0.0 +12527,8,40,38,0.0 +12527,56,38,10,0.0 +12527,11,21,47,0.0 +12527,35,18,23,0.0 +12527,67,14,31,0.0 +12527,75,7.75,28,0.0 +12527,51,53,24,0.0 +12528,44,19.45,34,0.0 +12528,4,22,25,0.0 +12528,52,7,28,0.0 +12528,43,46,42,0.0 +12528,64,33.25,37,0.0 +12528,17,39,39,0.0 +12528,69,36,29,0.0 +12528,47,9.5,34,0.0 +12528,66,17,50,0.0 +12528,1,18,30,0.0 +12528,14,23.25,6,0.0 +12528,67,14,21,0.0 +12528,10,31,5,0.0 +12528,65,21.05,32,0.0 +12528,49,20,42,0.0 +12528,51,53,23,0.0 +12528,39,18,39,0.0 +12528,22,21,32,0.0 +12528,58,13.25,44,0.0 +12528,72,34.8,39,0.0 +12528,76,18,44,0.0 +12528,56,38,26,0.0 +12528,9,97,7,0.0 +12528,2,19,26,0.0 +12528,30,25.89,18,0.0 +12528,21,10,8,0.0 +12528,50,16.25,16,0.0 +12528,3,10,36,0.0 +12528,62,49.3,43,0.0 +12528,13,6,7,0.0 +12528,68,12.5,35,0.0 +12528,42,14,45,0.0 +12528,19,9.2,30,0.0 +12528,74,10,2,0.0 +12528,46,12,30,0.0 +12528,61,28.5,36,0.0 +12528,20,81,16,0.0 +12528,8,40,23,0.0 +12528,34,14,43,0.0 +12528,27,43.9,30,0.0 +12528,35,18,23,0.0 +12528,16,17.45,18,0.0 +12528,31,12.5,28,0.0 +12528,53,32.8,8,0.0 +12528,24,4.5,50,0.0 +12528,23,9,3,0.0 +12528,12,38,27,0.0 +12528,32,32,6,0.0 +12528,28,45.6,16,0.0 +12528,45,9.5,23,0.0 +12528,5,21.35,29,0.0 +12528,54,7.45,44,0.0 +12528,63,43.9,46,0.0 +12528,73,15,20,0.0 +12528,38,263.5,14,0.0 +12528,41,9.65,14,0.0 +12528,37,26,3,0.0 +12528,55,24,44,0.0 +12528,59,55,13,0.0 +12528,29,123.79,21,0.0 +12528,25,14,35,0.0 +12528,36,19,30,0.0 +12528,11,21,45,0.0 +12528,48,12.75,3,0.0 +12528,18,62.5,36,0.0 +12528,7,30,13,0.0 +12528,70,15,3,0.0 +12528,71,21.5,50,0.0 +12528,33,2.5,32,0.0 +12528,57,19.5,18,0.0 +12528,75,7.75,25,0.0 +12529,49,20,3,0.0 +12529,41,9.65,30,0.0 +12529,11,21,14,0.0 +12529,26,31.23,35,0.0 +12529,8,40,16,0.0 +12529,61,28.5,43,0.0 +12529,77,13,47,0.0 +12529,39,18,50,0.0 +12529,6,25,47,0.0 +12529,60,34,41,0.0 +12529,31,12.5,1,0.0 +12529,51,53,10,0.0 +12529,71,21.5,29,0.0 +12529,35,18,13,0.0 +12529,46,12,44,0.0 +12529,23,9,10,0.0 +12529,54,7.45,28,0.0 +12529,76,18,32,0.0 +12529,13,6,44,0.0 +12529,62,49.3,33,0.0 +12529,40,18.4,20,0.0 +12529,7,30,34,0.0 +12529,43,46,12,0.0 +12529,1,18,37,0.0 +12529,56,38,23,0.0 +12530,26,31.23,29,0.0 +12530,18,62.5,41,0.0 +12530,61,28.5,15,0.0 +12530,40,18.4,44,0.0 +12530,42,14,25,0.0 +12530,56,38,3,0.0 +12530,23,9,29,0.0 +12530,69,36,1,0.0 +12530,34,14,36,0.0 +12530,35,18,37,0.0 +12530,62,49.3,46,0.0 +12530,45,9.5,23,0.0 +12530,8,40,43,0.0 +12530,9,97,26,0.0 +12530,16,17.45,43,0.0 +12531,2,19,19,0.0 +12531,25,14,38,0.0 +12531,60,34,11,0.0 +12531,72,34.8,44,0.0 +12531,43,46,11,0.0 +12531,36,19,25,0.0 +12531,27,43.9,13,0.0 +12531,6,25,11,0.0 +12531,9,97,8,0.0 +12531,54,7.45,30,0.0 +12531,3,10,28,0.0 +12531,77,13,41,0.0 +12531,13,6,44,0.0 +12531,53,32.8,23,0.0 +12531,47,9.5,13,0.0 +12531,61,28.5,26,0.0 +12531,34,14,49,0.0 +12531,75,7.75,27,0.0 +12531,67,14,50,0.0 +12531,69,36,36,0.0 +12531,32,32,27,0.0 +12531,57,19.5,38,0.0 +12531,19,9.2,28,0.0 +12531,41,9.65,38,0.0 +12531,50,16.25,25,0.0 +12531,12,38,17,0.0 +12531,37,26,22,0.0 +12531,15,15.5,45,0.0 +12531,16,17.45,28,0.0 +12531,64,33.25,29,0.0 +12531,51,53,42,0.0 +12531,44,19.45,10,0.0 +12531,66,17,34,0.0 +12531,29,123.79,44,0.0 +12531,49,20,6,0.0 +12531,14,23.25,30,0.0 +12531,48,12.75,19,0.0 +12531,38,263.5,35,0.0 +12531,5,21.35,34,0.0 +12531,59,55,15,0.0 +12531,7,30,5,0.0 +12531,46,12,16,0.0 +12531,23,9,24,0.0 +12531,30,25.89,17,0.0 +12531,11,21,20,0.0 +12531,20,81,17,0.0 +12531,1,18,30,0.0 +12531,42,14,10,0.0 +12531,74,10,22,0.0 +12531,55,24,48,0.0 +12531,17,39,38,0.0 +12531,39,18,7,0.0 +12531,56,38,33,0.0 +12531,40,18.4,12,0.0 +12531,10,31,12,0.0 +12531,45,9.5,22,0.0 +12531,22,21,3,0.0 +12531,70,15,21,0.0 +12531,58,13.25,21,0.0 +12531,62,49.3,39,0.0 +12531,18,62.5,31,0.0 +12531,63,43.9,9,0.0 +12531,4,22,50,0.0 +12531,65,21.05,1,0.0 +12531,31,12.5,42,0.0 +12531,33,2.5,18,0.0 +12531,8,40,2,0.0 +12531,68,12.5,9,0.0 +12531,26,31.23,33,0.0 +12532,56,38,10,0.0 +12532,70,15,42,0.0 +12532,10,31,24,0.0 +12532,29,123.79,32,0.0 +12532,35,18,11,0.0 +12532,7,30,7,0.0 +12532,30,25.89,34,0.0 +12532,22,21,9,0.0 +12532,58,13.25,7,0.0 +12532,38,263.5,26,0.0 +12532,59,55,40,0.0 +12532,13,6,39,0.0 +12532,20,81,49,0.0 +12532,23,9,46,0.0 +12532,9,97,11,0.0 +12532,33,2.5,29,0.0 +12532,11,21,14,0.0 +12532,45,9.5,8,0.0 +12532,41,9.65,13,0.0 +12532,74,10,14,0.0 +12532,51,53,23,0.0 +12532,3,10,4,0.0 +12532,18,62.5,29,0.0 +12532,1,18,20,0.0 +12532,77,13,25,0.0 +12532,24,4.5,42,0.0 +12532,54,7.45,15,0.0 +12532,64,33.25,6,0.0 +12532,37,26,39,0.0 +12532,52,7,18,0.0 +12532,57,19.5,49,0.0 +12532,66,17,23,0.0 +12532,25,14,48,0.0 +12532,48,12.75,24,0.0 +12532,50,16.25,38,0.0 +12532,39,18,18,0.0 +12532,31,12.5,40,0.0 +12532,72,34.8,46,0.0 +12532,8,40,19,0.0 +12532,5,21.35,33,0.0 +12532,27,43.9,12,0.0 +12532,73,15,40,0.0 +12532,6,25,44,0.0 +12532,60,34,44,0.0 +12532,2,19,42,0.0 +12532,76,18,49,0.0 +12532,47,9.5,39,0.0 +12532,26,31.23,43,0.0 +12532,12,38,14,0.0 +12532,40,18.4,41,0.0 +12532,69,36,8,0.0 +12532,62,49.3,17,0.0 +12532,65,21.05,30,0.0 +12532,55,24,33,0.0 +12532,14,23.25,28,0.0 +12532,36,19,36,0.0 +12532,34,14,11,0.0 +12532,46,12,34,0.0 +12532,63,43.9,36,0.0 +12532,53,32.8,1,0.0 +12533,67,14,36,0.0 +12533,50,16.25,9,0.0 +12533,54,7.45,2,0.0 +12533,69,36,48,0.0 +12533,19,9.2,46,0.0 +12533,22,21,2,0.0 +12533,7,30,23,0.0 +12533,18,62.5,42,0.0 +12533,8,40,43,0.0 +12533,6,25,42,0.0 +12533,21,10,26,0.0 +12533,23,9,49,0.0 +12533,39,18,8,0.0 +12533,55,24,17,0.0 +12533,72,34.8,42,0.0 +12533,10,31,8,0.0 +12533,63,43.9,12,0.0 +12533,14,23.25,2,0.0 +12533,4,22,44,0.0 +12533,20,81,19,0.0 +12533,13,6,6,0.0 +12533,74,10,11,0.0 +12533,46,12,12,0.0 +12534,28,45.6,39,0.0 +12534,60,34,32,0.0 +12534,33,2.5,31,0.0 +12534,44,19.45,9,0.0 +12534,26,31.23,34,0.0 +12534,54,7.45,12,0.0 +12534,48,12.75,37,0.0 +12534,20,81,15,0.0 +12534,76,18,47,0.0 +12534,24,4.5,9,0.0 +12534,53,32.8,48,0.0 +12534,74,10,7,0.0 +12534,6,25,38,0.0 +12534,35,18,13,0.0 +12534,70,15,5,0.0 +12534,72,34.8,41,0.0 +12534,37,26,47,0.0 +12534,40,18.4,32,0.0 +12534,67,14,35,0.0 +12534,58,13.25,36,0.0 +12534,3,10,2,0.0 +12534,64,33.25,10,0.0 +12534,73,15,27,0.0 +12534,7,30,30,0.0 +12534,66,17,35,0.0 +12534,29,123.79,46,0.0 +12534,12,38,14,0.0 +12534,51,53,29,0.0 +12534,22,21,37,0.0 +12534,57,19.5,45,0.0 +12534,41,9.65,15,0.0 +12534,50,16.25,44,0.0 +12534,9,97,29,0.0 +12534,17,39,49,0.0 +12534,34,14,43,0.0 +12534,52,7,14,0.0 +12534,45,9.5,35,0.0 +12534,55,24,35,0.0 +12534,43,46,10,0.0 +12534,27,43.9,24,0.0 +12534,15,15.5,33,0.0 +12535,69,36,5,0.0 +12535,57,19.5,4,0.0 +12535,41,9.65,6,0.0 +12535,9,97,4,0.0 +12535,28,45.6,21,0.0 +12535,14,23.25,50,0.0 +12535,63,43.9,46,0.0 +12535,33,2.5,16,0.0 +12535,11,21,4,0.0 +12535,72,34.8,20,0.0 +12535,18,62.5,11,0.0 +12535,52,7,1,0.0 +12535,71,21.5,2,0.0 +12535,74,10,25,0.0 +12535,53,32.8,40,0.0 +12535,50,16.25,50,0.0 +12535,56,38,32,0.0 +12535,67,14,44,0.0 +12535,60,34,23,0.0 +12535,42,14,33,0.0 +12535,77,13,15,0.0 +12535,22,21,37,0.0 +12535,64,33.25,24,0.0 +12535,19,9.2,3,0.0 +12535,23,9,26,0.0 +12535,12,38,1,0.0 +12535,20,81,28,0.0 +12535,15,15.5,6,0.0 +12535,39,18,19,0.0 +12535,59,55,49,0.0 +12535,29,123.79,5,0.0 +12535,40,18.4,1,0.0 +12535,44,19.45,24,0.0 +12535,8,40,50,0.0 +12535,68,12.5,7,0.0 +12535,46,12,40,0.0 +12535,54,7.45,38,0.0 +12535,27,43.9,31,0.0 +12535,65,21.05,23,0.0 +12535,36,19,12,0.0 +12536,43,46,13,0.0 +12536,40,18.4,3,0.0 +12536,45,9.5,10,0.0 +12536,34,14,37,0.0 +12536,12,38,43,0.0 +12536,23,9,36,0.0 +12536,16,17.45,27,0.0 +12536,15,15.5,49,0.0 +12536,5,21.35,25,0.0 +12536,22,21,17,0.0 +12536,13,6,20,0.0 +12536,30,25.89,31,0.0 +12536,32,32,28,0.0 +12536,72,34.8,32,0.0 +12536,37,26,4,0.0 +12536,65,21.05,42,0.0 +12536,19,9.2,16,0.0 +12536,8,40,40,0.0 +12536,55,24,15,0.0 +12536,54,7.45,15,0.0 +12536,26,31.23,48,0.0 +12536,18,62.5,44,0.0 +12537,16,17.45,43,0.0 +12537,10,31,37,0.0 +12537,43,46,19,0.0 +12537,57,19.5,48,0.0 +12537,15,15.5,9,0.0 +12537,21,10,41,0.0 +12537,7,30,21,0.0 +12538,4,22,3,0.0 +12538,42,14,37,0.0 +12538,20,81,29,0.0 +12538,35,18,46,0.0 +12538,59,55,15,0.0 +12538,1,18,50,0.0 +12538,21,10,48,0.0 +12538,29,123.79,6,0.0 +12538,66,17,6,0.0 +12538,67,14,21,0.0 +12538,3,10,3,0.0 +12538,39,18,26,0.0 +12538,9,97,19,0.0 +12538,61,28.5,38,0.0 +12538,2,19,14,0.0 +12538,31,12.5,30,0.0 +12538,17,39,19,0.0 +12538,15,15.5,17,0.0 +12538,46,12,4,0.0 +12538,76,18,24,0.0 +12538,18,62.5,15,0.0 +12538,50,16.25,42,0.0 +12538,36,19,37,0.0 +12538,60,34,20,0.0 +12538,8,40,17,0.0 +12538,63,43.9,45,0.0 +12538,32,32,25,0.0 +12538,52,7,30,0.0 +12538,30,25.89,43,0.0 +12538,19,9.2,45,0.0 +12538,10,31,29,0.0 +12538,64,33.25,3,0.0 +12538,71,21.5,45,0.0 +12538,55,24,25,0.0 +12538,34,14,48,0.0 +12538,11,21,12,0.0 +12538,13,6,23,0.0 +12538,22,21,18,0.0 +12538,45,9.5,14,0.0 +12538,49,20,33,0.0 +12538,25,14,42,0.0 +12538,62,49.3,18,0.0 +12538,47,9.5,31,0.0 +12538,38,263.5,21,0.0 +12538,40,18.4,12,0.0 +12538,70,15,50,0.0 +12538,75,7.75,46,0.0 +12538,12,38,21,0.0 +12538,6,25,24,0.0 +12538,54,7.45,27,0.0 +12538,77,13,25,0.0 +12538,24,4.5,39,0.0 +12538,26,31.23,3,0.0 +12538,72,34.8,4,0.0 +12538,33,2.5,18,0.0 +12538,53,32.8,15,0.0 +12538,7,30,9,0.0 +12538,16,17.45,15,0.0 +12538,68,12.5,17,0.0 +12538,5,21.35,2,0.0 +12538,57,19.5,16,0.0 +12538,69,36,11,0.0 +12538,65,21.05,24,0.0 +12538,28,45.6,6,0.0 +12538,23,9,41,0.0 +12538,48,12.75,43,0.0 +12538,43,46,10,0.0 +12538,51,53,5,0.0 +12538,14,23.25,9,0.0 +12538,74,10,31,0.0 +12538,27,43.9,44,0.0 +12538,73,15,29,0.0 +12538,37,26,42,0.0 +12539,68,12.5,36,0.0 +12539,27,43.9,4,0.0 +12539,37,26,30,0.0 +12539,70,15,30,0.0 +12539,49,20,36,0.0 +12539,31,12.5,39,0.0 +12539,54,7.45,40,0.0 +12539,67,14,21,0.0 +12539,36,19,27,0.0 +12539,32,32,19,0.0 +12539,33,2.5,33,0.0 +12539,45,9.5,21,0.0 +12540,47,9.5,47,0.0 +12540,51,53,37,0.0 +12540,53,32.8,50,0.0 +12540,40,18.4,15,0.0 +12540,29,123.79,22,0.0 +12540,34,14,26,0.0 +12540,72,34.8,48,0.0 +12540,70,15,29,0.0 +12540,16,17.45,32,0.0 +12540,17,39,10,0.0 +12540,56,38,29,0.0 +12540,7,30,2,0.0 +12540,9,97,5,0.0 +12540,57,19.5,42,0.0 +12540,63,43.9,47,0.0 +12540,49,20,5,0.0 +12540,35,18,38,0.0 +12540,10,31,20,0.0 +12540,67,14,32,0.0 +12540,30,25.89,21,0.0 +12540,32,32,18,0.0 +12540,15,15.5,1,0.0 +12540,8,40,45,0.0 +12540,39,18,48,0.0 +12540,71,21.5,10,0.0 +12540,65,21.05,37,0.0 +12540,37,26,3,0.0 +12540,23,9,8,0.0 +12540,27,43.9,5,0.0 +12540,76,18,44,0.0 +12540,43,46,13,0.0 +12540,75,7.75,16,0.0 +12540,21,10,16,0.0 +12540,33,2.5,25,0.0 +12540,68,12.5,44,0.0 +12540,77,13,20,0.0 +12540,45,9.5,38,0.0 +12540,3,10,5,0.0 +12540,61,28.5,40,0.0 +12540,46,12,16,0.0 +12540,22,21,47,0.0 +12540,12,38,26,0.0 +12540,6,25,13,0.0 +12540,25,14,45,0.0 +12540,44,19.45,42,0.0 +12540,13,6,39,0.0 +12540,55,24,49,0.0 +12540,48,12.75,13,0.0 +12540,69,36,22,0.0 +12540,11,21,49,0.0 +12540,38,263.5,27,0.0 +12540,36,19,35,0.0 +12540,18,62.5,23,0.0 +12540,60,34,45,0.0 +12540,41,9.65,21,0.0 +12540,59,55,17,0.0 +12540,58,13.25,24,0.0 +12540,74,10,23,0.0 +12540,24,4.5,21,0.0 +12540,20,81,13,0.0 +12540,14,23.25,13,0.0 +12540,54,7.45,12,0.0 +12540,5,21.35,46,0.0 +12540,26,31.23,13,0.0 +12540,2,19,20,0.0 +12540,1,18,26,0.0 +12540,50,16.25,47,0.0 +12540,52,7,15,0.0 +12540,64,33.25,28,0.0 +12540,42,14,22,0.0 +12540,73,15,7,0.0 +12541,72,34.8,28,0.0 +12541,66,17,15,0.0 +12541,37,26,17,0.0 +12541,16,17.45,11,0.0 +12541,48,12.75,43,0.0 +12541,15,15.5,40,0.0 +12541,21,10,8,0.0 +12541,29,123.79,45,0.0 +12541,53,32.8,6,0.0 +12541,42,14,45,0.0 +12541,6,25,38,0.0 +12541,76,18,1,0.0 +12541,65,21.05,35,0.0 +12541,13,6,31,0.0 +12541,2,19,19,0.0 +12541,50,16.25,7,0.0 +12541,3,10,42,0.0 +12541,26,31.23,50,0.0 +12541,49,20,9,0.0 +12541,9,97,14,0.0 +12541,51,53,24,0.0 +12541,77,13,16,0.0 +12541,40,18.4,33,0.0 +12541,30,25.89,13,0.0 +12541,10,31,50,0.0 +12541,36,19,39,0.0 +12541,45,9.5,39,0.0 +12541,62,49.3,50,0.0 +12541,46,12,6,0.0 +12541,43,46,10,0.0 +12541,54,7.45,5,0.0 +12541,71,21.5,49,0.0 +12541,68,12.5,31,0.0 +12541,67,14,45,0.0 +12541,20,81,44,0.0 +12541,12,38,28,0.0 +12541,14,23.25,11,0.0 +12541,33,2.5,10,0.0 +12541,23,9,20,0.0 +12541,1,18,5,0.0 +12541,58,13.25,35,0.0 +12541,56,38,43,0.0 +12542,54,7.45,42,0.0 +12542,42,14,45,0.0 +12542,21,10,4,0.0 +12542,73,15,42,0.0 +12542,45,9.5,42,0.0 +12542,30,25.89,49,0.0 +12542,9,97,21,0.0 +12542,13,6,39,0.0 +12542,35,18,2,0.0 +12542,77,13,40,0.0 +12542,22,21,7,0.0 +12542,64,33.25,12,0.0 +12542,11,21,43,0.0 +12542,33,2.5,13,0.0 +12542,12,38,44,0.0 +12542,25,14,9,0.0 +12542,15,15.5,10,0.0 +12542,53,32.8,36,0.0 +12542,57,19.5,23,0.0 +12542,28,45.6,14,0.0 +12542,48,12.75,48,0.0 +12542,67,14,8,0.0 +12542,19,9.2,19,0.0 +12542,50,16.25,25,0.0 +12542,3,10,36,0.0 +12542,24,4.5,32,0.0 +12542,26,31.23,3,0.0 +12542,41,9.65,48,0.0 +12542,17,39,27,0.0 +12542,56,38,38,0.0 +12542,36,19,4,0.0 +12542,38,263.5,48,0.0 +12542,2,19,9,0.0 +12542,58,13.25,48,0.0 +12542,10,31,43,0.0 +12542,55,24,17,0.0 +12542,20,81,37,0.0 +12542,70,15,16,0.0 +12542,60,34,25,0.0 +12542,16,17.45,27,0.0 +12542,65,21.05,13,0.0 +12542,66,17,29,0.0 +12542,72,34.8,49,0.0 +12542,74,10,1,0.0 +12542,5,21.35,7,0.0 +12542,51,53,3,0.0 +12542,14,23.25,39,0.0 +12542,71,21.5,26,0.0 +12542,27,43.9,32,0.0 +12542,40,18.4,30,0.0 +12542,8,40,13,0.0 +12542,44,19.45,13,0.0 +12542,43,46,35,0.0 +12542,34,14,50,0.0 +12542,6,25,36,0.0 +12542,31,12.5,42,0.0 +12542,52,7,4,0.0 +12542,4,22,38,0.0 +12542,18,62.5,45,0.0 +12542,47,9.5,8,0.0 +12543,55,24,46,0.0 +12543,48,12.75,39,0.0 +12543,22,21,17,0.0 +12543,19,9.2,10,0.0 +12543,32,32,23,0.0 +12543,44,19.45,3,0.0 +12543,66,17,8,0.0 +12543,75,7.75,2,0.0 +12543,43,46,43,0.0 +12543,61,28.5,35,0.0 +12543,30,25.89,17,0.0 +12543,67,14,39,0.0 +12543,29,123.79,48,0.0 +12543,35,18,30,0.0 +12543,52,7,9,0.0 +12543,39,18,18,0.0 +12543,65,21.05,8,0.0 +12543,76,18,25,0.0 +12543,73,15,29,0.0 +12543,41,9.65,25,0.0 +12543,68,12.5,17,0.0 +12543,17,39,10,0.0 +12543,9,97,20,0.0 +12543,51,53,30,0.0 +12543,49,20,23,0.0 +12543,72,34.8,21,0.0 +12543,54,7.45,24,0.0 +12543,33,2.5,27,0.0 +12543,16,17.45,36,0.0 +12543,56,38,29,0.0 +12543,53,32.8,21,0.0 +12543,23,9,37,0.0 +12543,59,55,43,0.0 +12543,2,19,37,0.0 +12544,27,43.9,12,0.0 +12545,66,17,41,0.0 +12545,13,6,4,0.0 +12545,22,21,18,0.0 +12545,11,21,22,0.0 +12545,61,28.5,44,0.0 +12545,70,15,37,0.0 +12545,23,9,42,0.0 +12545,59,55,22,0.0 +12545,68,12.5,17,0.0 +12545,1,18,7,0.0 +12545,53,32.8,6,0.0 +12545,7,30,18,0.0 +12545,24,4.5,38,0.0 +12545,67,14,14,0.0 +12545,46,12,6,0.0 +12545,40,18.4,4,0.0 +12545,42,14,4,0.0 +12545,76,18,47,0.0 +12545,36,19,23,0.0 +12545,15,15.5,31,0.0 +12545,64,33.25,41,0.0 +12545,69,36,50,0.0 +12545,2,19,13,0.0 +12545,72,34.8,9,0.0 +12545,34,14,32,0.0 +12545,14,23.25,34,0.0 +12545,17,39,49,0.0 +12545,63,43.9,3,0.0 +12545,12,38,35,0.0 +12545,10,31,26,0.0 +12545,60,34,32,0.0 +12545,58,13.25,10,0.0 +12545,47,9.5,39,0.0 +12545,21,10,49,0.0 +12545,49,20,39,0.0 +12545,73,15,30,0.0 +12545,77,13,9,0.0 +12545,33,2.5,4,0.0 +12545,57,19.5,1,0.0 +12545,32,32,16,0.0 +12545,27,43.9,3,0.0 +12545,9,97,7,0.0 +12545,25,14,12,0.0 +12545,71,21.5,37,0.0 +12545,55,24,15,0.0 +12545,38,263.5,2,0.0 +12545,16,17.45,22,0.0 +12545,29,123.79,43,0.0 +12545,5,21.35,2,0.0 +12545,8,40,33,0.0 +12545,39,18,31,0.0 +12545,45,9.5,43,0.0 +12545,48,12.75,23,0.0 +12545,54,7.45,26,0.0 +12545,62,49.3,39,0.0 +12545,20,81,1,0.0 +12545,3,10,36,0.0 +12545,4,22,5,0.0 +12545,43,46,31,0.0 +12545,52,7,22,0.0 +12545,30,25.89,2,0.0 +12545,37,26,39,0.0 +12545,44,19.45,7,0.0 +12545,56,38,33,0.0 +12545,26,31.23,47,0.0 +12545,18,62.5,49,0.0 +12545,65,21.05,17,0.0 +12545,41,9.65,7,0.0 +12545,75,7.75,33,0.0 +12545,74,10,47,0.0 +12545,35,18,35,0.0 +12545,19,9.2,44,0.0 +12545,6,25,11,0.0 +12545,28,45.6,30,0.0 +12546,55,24,27,0.0 +12546,7,30,26,0.0 +12546,10,31,15,0.0 +12546,38,263.5,12,0.0 +12546,23,9,45,0.0 +12546,17,39,5,0.0 +12546,40,18.4,5,0.0 +12546,1,18,34,0.0 +12546,13,6,26,0.0 +12546,50,16.25,35,0.0 +12546,44,19.45,40,0.0 +12546,53,32.8,16,0.0 +12546,5,21.35,7,0.0 +12546,18,62.5,3,0.0 +12546,12,38,49,0.0 +12546,64,33.25,23,0.0 +12546,69,36,6,0.0 +12546,20,81,5,0.0 +12546,42,14,1,0.0 +12546,11,21,48,0.0 +12546,36,19,31,0.0 +12546,27,43.9,2,0.0 +12546,67,14,33,0.0 +12546,28,45.6,21,0.0 +12546,21,10,47,0.0 +12546,73,15,46,0.0 +12546,77,13,33,0.0 +12546,3,10,44,0.0 +12546,15,15.5,28,0.0 +12546,29,123.79,5,0.0 +12546,26,31.23,5,0.0 +12546,66,17,45,0.0 +12546,57,19.5,41,0.0 +12546,8,40,7,0.0 +12546,9,97,15,0.0 +12546,68,12.5,38,0.0 +12546,35,18,35,0.0 +12546,22,21,8,0.0 +12546,59,55,22,0.0 +12546,31,12.5,32,0.0 +12546,62,49.3,25,0.0 +12546,52,7,1,0.0 +12546,70,15,37,0.0 +12546,75,7.75,39,0.0 +12546,19,9.2,43,0.0 +12546,16,17.45,23,0.0 +12546,49,20,30,0.0 +12546,6,25,9,0.0 +12546,63,43.9,2,0.0 +12546,43,46,17,0.0 +12546,72,34.8,2,0.0 +12546,24,4.5,44,0.0 +12546,71,21.5,10,0.0 +12546,48,12.75,26,0.0 +12546,61,28.5,25,0.0 +12546,56,38,11,0.0 +12547,14,23.25,35,0.0 +12547,60,34,6,0.0 +12547,54,7.45,37,0.0 +12547,29,123.79,49,0.0 +12547,12,38,16,0.0 +12547,24,4.5,23,0.0 +12547,3,10,44,0.0 +12547,22,21,1,0.0 +12547,76,18,4,0.0 +12547,50,16.25,28,0.0 +12547,77,13,43,0.0 +12547,53,32.8,27,0.0 +12547,23,9,25,0.0 +12547,31,12.5,46,0.0 +12547,72,34.8,45,0.0 +12547,1,18,21,0.0 +12547,9,97,12,0.0 +12547,36,19,28,0.0 +12547,13,6,10,0.0 +12547,51,53,28,0.0 +12547,19,9.2,29,0.0 +12547,58,13.25,23,0.0 +12547,16,17.45,46,0.0 +12547,18,62.5,46,0.0 +12547,64,33.25,9,0.0 +12547,47,9.5,20,0.0 +12547,52,7,11,0.0 +12547,49,20,21,0.0 +12547,34,14,30,0.0 +12547,46,12,49,0.0 +12547,7,30,37,0.0 +12547,42,14,9,0.0 +12547,17,39,5,0.0 +12547,55,24,35,0.0 +12547,28,45.6,47,0.0 +12547,10,31,42,0.0 +12547,20,81,44,0.0 +12547,69,36,44,0.0 +12547,61,28.5,11,0.0 +12547,40,18.4,31,0.0 +12547,39,18,38,0.0 +12547,45,9.5,23,0.0 +12547,38,263.5,44,0.0 +12547,4,22,41,0.0 +12547,35,18,7,0.0 +12547,48,12.75,35,0.0 +12547,66,17,24,0.0 +12547,67,14,49,0.0 +12547,70,15,11,0.0 +12547,73,15,12,0.0 +12547,57,19.5,49,0.0 +12547,59,55,41,0.0 +12547,26,31.23,15,0.0 +12547,25,14,2,0.0 +12547,6,25,40,0.0 +12547,68,12.5,23,0.0 +12547,43,46,38,0.0 +12547,21,10,26,0.0 +12547,37,26,42,0.0 +12547,2,19,18,0.0 +12547,11,21,26,0.0 +12547,30,25.89,45,0.0 +12547,33,2.5,3,0.0 +12547,65,21.05,2,0.0 +12547,41,9.65,49,0.0 +12547,5,21.35,50,0.0 +12547,15,15.5,1,0.0 +12547,56,38,17,0.0 +12547,27,43.9,25,0.0 +12548,74,10,46,0.0 +12548,37,26,43,0.0 +12548,41,9.65,6,0.0 +12548,10,31,15,0.0 +12548,2,19,22,0.0 +12548,24,4.5,16,0.0 +12548,8,40,12,0.0 +12548,43,46,23,0.0 +12548,70,15,14,0.0 +12548,31,12.5,8,0.0 +12548,76,18,32,0.0 +12548,77,13,37,0.0 +12548,19,9.2,13,0.0 +12548,65,21.05,30,0.0 +12548,4,22,6,0.0 +12548,9,97,24,0.0 +12548,73,15,35,0.0 +12548,21,10,9,0.0 +12548,64,33.25,48,0.0 +12548,52,7,26,0.0 +12548,32,32,15,0.0 +12548,6,25,32,0.0 +12548,20,81,1,0.0 +12548,12,38,43,0.0 +12548,46,12,16,0.0 +12548,53,32.8,41,0.0 +12548,16,17.45,17,0.0 +12548,71,21.5,46,0.0 +12548,13,6,45,0.0 +12548,36,19,42,0.0 +12548,67,14,12,0.0 +12548,51,53,1,0.0 +12548,62,49.3,23,0.0 +12548,18,62.5,27,0.0 +12548,22,21,21,0.0 +12548,27,43.9,5,0.0 +12548,75,7.75,31,0.0 +12548,7,30,39,0.0 +12548,66,17,29,0.0 +12548,28,45.6,20,0.0 +12548,14,23.25,17,0.0 +12548,11,21,33,0.0 +12548,40,18.4,27,0.0 +12548,35,18,9,0.0 +12548,23,9,4,0.0 +12548,69,36,9,0.0 +12549,40,18.4,8,0.0 +12549,33,2.5,22,0.0 +12549,48,12.75,45,0.0 +12549,53,32.8,14,0.0 +12549,26,31.23,31,0.0 +12549,31,12.5,49,0.0 +12549,50,16.25,3,0.0 +12549,72,34.8,4,0.0 +12549,52,7,11,0.0 +12549,68,12.5,32,0.0 +12549,54,7.45,12,0.0 +12549,65,21.05,11,0.0 +12549,42,14,47,0.0 +12549,57,19.5,39,0.0 +12549,46,12,43,0.0 +12549,61,28.5,5,0.0 +12549,49,20,22,0.0 +12549,59,55,46,0.0 +12549,9,97,7,0.0 +12549,24,4.5,25,0.0 +12549,22,21,16,0.0 +12549,6,25,28,0.0 +12549,14,23.25,1,0.0 +12549,39,18,17,0.0 +12549,23,9,28,0.0 +12549,15,15.5,45,0.0 +12549,34,14,14,0.0 +12549,70,15,31,0.0 +12549,67,14,15,0.0 +12549,28,45.6,5,0.0 +12549,4,22,30,0.0 +12549,12,38,29,0.0 +12549,3,10,43,0.0 +12549,18,62.5,45,0.0 +12549,44,19.45,10,0.0 +12549,21,10,30,0.0 +12549,41,9.65,13,0.0 +12549,25,14,27,0.0 +12549,64,33.25,40,0.0 +12549,75,7.75,44,0.0 +12549,2,19,36,0.0 +12549,10,31,20,0.0 +12549,29,123.79,23,0.0 +12549,32,32,41,0.0 +12549,63,43.9,47,0.0 +12549,55,24,12,0.0 +12549,62,49.3,25,0.0 +12549,69,36,24,0.0 +12549,27,43.9,4,0.0 +12549,71,21.5,38,0.0 +12549,5,21.35,23,0.0 +12549,66,17,38,0.0 +12549,51,53,47,0.0 +12549,35,18,35,0.0 +12549,77,13,20,0.0 +12549,30,25.89,22,0.0 +12549,20,81,3,0.0 +12549,38,263.5,35,0.0 +12549,13,6,9,0.0 +12549,8,40,2,0.0 +12549,74,10,6,0.0 +12549,58,13.25,7,0.0 +12549,47,9.5,23,0.0 +12549,11,21,29,0.0 +12549,1,18,50,0.0 +12549,16,17.45,20,0.0 +12549,45,9.5,22,0.0 +12549,43,46,15,0.0 +12550,73,15,16,0.0 +12550,74,10,38,0.0 +12550,15,15.5,5,0.0 +12550,35,18,49,0.0 +12550,28,45.6,45,0.0 +12550,70,15,37,0.0 +12550,60,34,37,0.0 +12550,24,4.5,27,0.0 +12550,26,31.23,22,0.0 +12551,37,26,8,0.0 +12551,26,31.23,3,0.0 +12551,11,21,26,0.0 +12551,50,16.25,25,0.0 +12551,73,15,17,0.0 +12551,55,24,13,0.0 +12552,39,18,31,0.0 +12552,55,24,50,0.0 +12552,63,43.9,15,0.0 +12552,75,7.75,11,0.0 +12553,16,17.45,34,0.0 +12553,47,9.5,15,0.0 +12553,15,15.5,22,0.0 +12553,34,14,7,0.0 +12553,26,31.23,31,0.0 +12553,6,25,12,0.0 +12554,30,25.89,16,0.0 +12555,32,32,6,0.0 +12555,16,17.45,36,0.0 +12555,42,14,40,0.0 +12555,36,19,4,0.0 +12555,31,12.5,40,0.0 +12555,60,34,41,0.0 +12555,66,17,10,0.0 +12555,73,15,32,0.0 +12555,4,22,16,0.0 +12555,9,97,33,0.0 +12555,18,62.5,7,0.0 +12555,15,15.5,15,0.0 +12555,56,38,47,0.0 +12555,14,23.25,48,0.0 +12555,5,21.35,17,0.0 +12555,53,32.8,6,0.0 +12555,38,263.5,34,0.0 +12555,68,12.5,35,0.0 +12555,24,4.5,2,0.0 +12555,70,15,13,0.0 +12555,46,12,23,0.0 +12555,23,9,11,0.0 +12555,7,30,16,0.0 +12555,77,13,16,0.0 +12555,71,21.5,26,0.0 +12556,67,14,2,0.0 +12556,43,46,16,0.0 +12556,55,24,28,0.0 +12556,63,43.9,37,0.0 +12556,39,18,40,0.0 +12556,73,15,21,0.0 +12556,1,18,45,0.0 +12556,60,34,2,0.0 +12556,4,22,50,0.0 +12556,8,40,39,0.0 +12556,25,14,16,0.0 +12556,29,123.79,48,0.0 +12556,11,21,40,0.0 +12556,10,31,22,0.0 +12556,34,14,27,0.0 +12556,40,18.4,39,0.0 +12556,50,16.25,15,0.0 +12556,16,17.45,30,0.0 +12556,13,6,10,0.0 +12556,61,28.5,32,0.0 +12556,59,55,25,0.0 +12556,48,12.75,40,0.0 +12556,75,7.75,40,0.0 +12556,71,21.5,43,0.0 +12556,30,25.89,25,0.0 +12556,58,13.25,26,0.0 +12556,70,15,30,0.0 +12556,54,7.45,20,0.0 +12556,12,38,5,0.0 +12556,72,34.8,32,0.0 +12556,32,32,49,0.0 +12556,41,9.65,21,0.0 +12556,18,62.5,1,0.0 +12556,56,38,32,0.0 +12556,38,263.5,5,0.0 +12556,42,14,1,0.0 +12557,18,62.5,18,0.0 +12557,23,9,18,0.0 +12557,39,18,34,0.0 +12557,41,9.65,27,0.0 +12557,54,7.45,10,0.0 +12557,65,21.05,37,0.0 +12557,38,263.5,38,0.0 +12557,1,18,31,0.0 +12557,58,13.25,26,0.0 +12557,13,6,21,0.0 +12557,3,10,4,0.0 +12557,74,10,40,0.0 +12557,70,15,15,0.0 +12557,34,14,34,0.0 +12557,52,7,44,0.0 +12557,22,21,43,0.0 +12557,19,9.2,6,0.0 +12557,29,123.79,20,0.0 +12557,62,49.3,5,0.0 +12557,57,19.5,10,0.0 +12557,9,97,47,0.0 +12557,4,22,32,0.0 +12557,14,23.25,38,0.0 +12557,35,18,15,0.0 +12557,26,31.23,32,0.0 +12557,64,33.25,8,0.0 +12557,6,25,33,0.0 +12557,20,81,4,0.0 +12557,7,30,46,0.0 +12557,77,13,3,0.0 +12557,8,40,10,0.0 +12557,48,12.75,19,0.0 +12557,27,43.9,9,0.0 +12557,10,31,37,0.0 +12557,55,24,40,0.0 +12557,17,39,33,0.0 +12557,51,53,43,0.0 +12557,71,21.5,3,0.0 +12557,30,25.89,23,0.0 +12557,15,15.5,15,0.0 +12557,16,17.45,45,0.0 +12557,45,9.5,12,0.0 +12557,42,14,26,0.0 +12557,33,2.5,30,0.0 +12557,56,38,34,0.0 +12557,36,19,2,0.0 +12557,63,43.9,22,0.0 +12557,24,4.5,40,0.0 +12557,69,36,24,0.0 +12557,32,32,47,0.0 +12557,60,34,40,0.0 +12557,59,55,13,0.0 +12557,53,32.8,3,0.0 +12558,8,40,1,0.0 +12558,50,16.25,7,0.0 +12558,42,14,8,0.0 +12558,3,10,26,0.0 +12558,73,15,33,0.0 +12558,60,34,48,0.0 +12558,9,97,32,0.0 +12558,32,32,25,0.0 +12558,41,9.65,3,0.0 +12558,13,6,16,0.0 +12558,11,21,23,0.0 +12558,75,7.75,36,0.0 +12558,40,18.4,22,0.0 +12558,28,45.6,11,0.0 +12558,53,32.8,21,0.0 +12558,23,9,2,0.0 +12558,61,28.5,3,0.0 +12558,64,33.25,38,0.0 +12558,29,123.79,30,0.0 +12558,6,25,39,0.0 +12558,57,19.5,37,0.0 +12558,46,12,34,0.0 +12558,37,26,46,0.0 +12558,38,263.5,26,0.0 +12558,15,15.5,49,0.0 +12558,31,12.5,50,0.0 +12558,21,10,2,0.0 +12558,27,43.9,16,0.0 +12558,33,2.5,40,0.0 +12558,43,46,44,0.0 +12558,19,9.2,35,0.0 +12558,26,31.23,48,0.0 +12558,30,25.89,9,0.0 +12558,51,53,15,0.0 +12558,36,19,8,0.0 +12558,16,17.45,42,0.0 +12558,1,18,6,0.0 +12558,74,10,18,0.0 +12558,76,18,39,0.0 +12558,77,13,22,0.0 +12558,67,14,44,0.0 +12558,45,9.5,4,0.0 +12558,39,18,7,0.0 +12558,63,43.9,36,0.0 +12558,22,21,32,0.0 +12558,65,21.05,1,0.0 +12558,35,18,20,0.0 +12558,49,20,47,0.0 +12558,48,12.75,47,0.0 +12558,4,22,45,0.0 +12558,62,49.3,40,0.0 +12558,52,7,44,0.0 +12558,66,17,23,0.0 +12558,69,36,24,0.0 +12558,54,7.45,18,0.0 +12558,59,55,31,0.0 +12558,17,39,31,0.0 +12558,7,30,33,0.0 +12558,72,34.8,32,0.0 +12558,71,21.5,3,0.0 +12558,55,24,4,0.0 +12558,18,62.5,30,0.0 +12558,14,23.25,9,0.0 +12558,34,14,31,0.0 +12558,12,38,16,0.0 +12558,2,19,20,0.0 +12559,16,17.45,33,0.0 +12559,13,6,3,0.0 +12559,19,9.2,31,0.0 +12559,76,18,33,0.0 +12559,72,34.8,18,0.0 +12559,42,14,30,0.0 +12559,34,14,31,0.0 +12559,52,7,20,0.0 +12559,25,14,38,0.0 +12560,46,12,16,0.0 +12560,44,19.45,5,0.0 +12560,20,81,27,0.0 +12560,31,12.5,13,0.0 +12560,16,17.45,19,0.0 +12561,10,31,3,0.0 +12561,70,15,44,0.0 +12561,4,22,34,0.0 +12561,47,9.5,25,0.0 +12561,13,6,8,0.0 +12561,67,14,25,0.0 +12561,34,14,22,0.0 +12561,65,21.05,23,0.0 +12561,20,81,8,0.0 +12561,53,32.8,3,0.0 +12561,15,15.5,4,0.0 +12561,54,7.45,45,0.0 +12561,2,19,33,0.0 +12561,5,21.35,22,0.0 +12561,31,12.5,31,0.0 +12561,48,12.75,6,0.0 +12561,6,25,35,0.0 +12561,59,55,12,0.0 +12561,8,40,44,0.0 +12561,25,14,3,0.0 +12561,55,24,30,0.0 +12561,69,36,44,0.0 +12561,52,7,6,0.0 +12561,18,62.5,3,0.0 +12561,73,15,37,0.0 +12561,51,53,25,0.0 +12561,24,4.5,16,0.0 +12561,37,26,18,0.0 +12561,38,263.5,38,0.0 +12561,17,39,5,0.0 +12561,57,19.5,18,0.0 +12561,33,2.5,29,0.0 +12561,44,19.45,5,0.0 +12562,72,34.8,30,0.0 +12562,8,40,50,0.0 +12562,77,13,1,0.0 +12562,25,14,11,0.0 +12562,55,24,6,0.0 +12562,75,7.75,6,0.0 +12562,14,23.25,5,0.0 +12562,74,10,27,0.0 +12562,13,6,2,0.0 +12562,7,30,28,0.0 +12562,33,2.5,20,0.0 +12562,3,10,20,0.0 +12562,16,17.45,18,0.0 +12562,41,9.65,41,0.0 +12562,28,45.6,11,0.0 +12562,6,25,9,0.0 +12562,39,18,27,0.0 +12562,69,36,40,0.0 +12562,2,19,3,0.0 +12562,22,21,22,0.0 +12562,9,97,26,0.0 +12562,48,12.75,13,0.0 +12562,38,263.5,11,0.0 +12562,31,12.5,20,0.0 +12562,23,9,16,0.0 +12562,11,21,37,0.0 +12562,66,17,10,0.0 +12562,71,21.5,9,0.0 +12562,49,20,25,0.0 +12562,4,22,10,0.0 +12562,47,9.5,26,0.0 +12562,32,32,27,0.0 +12562,51,53,22,0.0 +12562,59,55,15,0.0 +12562,12,38,25,0.0 +12562,42,14,23,0.0 +12562,29,123.79,10,0.0 +12562,24,4.5,29,0.0 +12562,26,31.23,38,0.0 +12562,53,32.8,7,0.0 +12562,54,7.45,16,0.0 +12562,43,46,41,0.0 +12562,34,14,20,0.0 +12562,61,28.5,7,0.0 +12562,40,18.4,27,0.0 +12562,45,9.5,40,0.0 +12562,57,19.5,10,0.0 +12562,50,16.25,49,0.0 +12562,21,10,29,0.0 +12562,65,21.05,34,0.0 +12562,20,81,36,0.0 +12563,28,45.6,12,0.0 +12563,51,53,32,0.0 +12563,74,10,5,0.0 +12563,11,21,46,0.0 +12563,43,46,4,0.0 +12563,44,19.45,10,0.0 +12563,12,38,47,0.0 +12563,16,17.45,30,0.0 +12563,32,32,41,0.0 +12563,9,97,42,0.0 +12563,70,15,40,0.0 +12563,22,21,43,0.0 +12563,73,15,26,0.0 +12563,52,7,14,0.0 +12563,6,25,28,0.0 +12563,3,10,34,0.0 +12563,25,14,46,0.0 +12563,46,12,21,0.0 +12563,42,14,37,0.0 +12563,61,28.5,49,0.0 +12563,30,25.89,45,0.0 +12563,7,30,25,0.0 +12563,65,21.05,6,0.0 +12563,63,43.9,2,0.0 +12563,20,81,29,0.0 +12563,36,19,38,0.0 +12563,45,9.5,25,0.0 +12563,53,32.8,1,0.0 +12563,10,31,29,0.0 +12563,21,10,48,0.0 +12563,17,39,47,0.0 +12563,23,9,15,0.0 +12563,40,18.4,29,0.0 +12563,67,14,9,0.0 +12563,47,9.5,33,0.0 +12563,66,17,9,0.0 +12563,14,23.25,19,0.0 +12563,4,22,8,0.0 +12563,13,6,6,0.0 +12563,41,9.65,39,0.0 +12563,5,21.35,45,0.0 +12563,24,4.5,8,0.0 +12563,56,38,3,0.0 +12563,60,34,15,0.0 +12563,31,12.5,15,0.0 +12563,49,20,5,0.0 +12563,77,13,2,0.0 +12563,59,55,6,0.0 +12564,56,38,15,0.0 +12564,50,16.25,34,0.0 +12565,72,34.8,1,0.0 +12565,3,10,44,0.0 +12565,26,31.23,30,0.0 +12565,73,15,8,0.0 +12565,66,17,22,0.0 +12565,58,13.25,36,0.0 +12565,28,45.6,33,0.0 +12565,44,19.45,7,0.0 +12565,15,15.5,19,0.0 +12565,61,28.5,38,0.0 +12565,36,19,11,0.0 +12565,5,21.35,32,0.0 +12565,70,15,45,0.0 +12565,38,263.5,40,0.0 +12565,43,46,30,0.0 +12565,18,62.5,30,0.0 +12565,23,9,5,0.0 +12565,17,39,36,0.0 +12565,57,19.5,32,0.0 +12565,69,36,18,0.0 +12565,20,81,7,0.0 +12565,32,32,3,0.0 +12565,40,18.4,14,0.0 +12565,48,12.75,21,0.0 +12565,74,10,22,0.0 +12565,33,2.5,26,0.0 +12565,53,32.8,34,0.0 +12565,42,14,12,0.0 +12565,46,12,45,0.0 +12565,30,25.89,6,0.0 +12565,67,14,14,0.0 +12565,39,18,34,0.0 +12565,71,21.5,20,0.0 +12565,21,10,3,0.0 +12565,75,7.75,20,0.0 +12565,31,12.5,20,0.0 +12565,10,31,27,0.0 +12565,47,9.5,14,0.0 +12565,76,18,11,0.0 +12565,50,16.25,18,0.0 +12565,34,14,16,0.0 +12565,41,9.65,9,0.0 +12565,22,21,48,0.0 +12565,37,26,42,0.0 +12565,29,123.79,4,0.0 +12566,5,21.35,21,0.0 +12566,56,38,21,0.0 +12566,69,36,19,0.0 +12566,8,40,4,0.0 +12566,62,49.3,35,0.0 +12566,12,38,27,0.0 +12566,34,14,29,0.0 +12566,53,32.8,9,0.0 +12566,68,12.5,20,0.0 +12566,55,24,30,0.0 +12566,23,9,19,0.0 +12566,10,31,14,0.0 +12566,54,7.45,27,0.0 +12566,30,25.89,44,0.0 +12566,24,4.5,5,0.0 +12566,36,19,32,0.0 +12566,71,21.5,30,0.0 +12566,22,21,27,0.0 +12566,15,15.5,34,0.0 +12566,25,14,5,0.0 +12566,9,97,4,0.0 +12566,3,10,2,0.0 +12566,51,53,22,0.0 +12566,39,18,49,0.0 +12567,41,9.65,37,0.0 +12567,38,263.5,41,0.0 +12567,46,12,2,0.0 +12567,9,97,45,0.0 +12567,14,23.25,46,0.0 +12568,73,15,18,0.0 +12568,61,28.5,26,0.0 +12568,57,19.5,5,0.0 +12568,43,46,17,0.0 +12568,71,21.5,2,0.0 +12568,30,25.89,6,0.0 +12568,16,17.45,40,0.0 +12568,8,40,4,0.0 +12568,63,43.9,15,0.0 +12568,76,18,44,0.0 +12568,68,12.5,10,0.0 +12568,26,31.23,34,0.0 +12568,77,13,44,0.0 +12568,75,7.75,26,0.0 +12568,25,14,47,0.0 +12568,1,18,5,0.0 +12568,39,18,22,0.0 +12568,24,4.5,20,0.0 +12568,4,22,2,0.0 +12568,67,14,46,0.0 +12568,15,15.5,21,0.0 +12568,32,32,47,0.0 +12568,54,7.45,31,0.0 +12568,28,45.6,16,0.0 +12568,58,13.25,28,0.0 +12568,36,19,47,0.0 +12568,19,9.2,26,0.0 +12568,5,21.35,19,0.0 +12568,60,34,34,0.0 +12568,41,9.65,48,0.0 +12568,56,38,11,0.0 +12568,9,97,22,0.0 +12568,50,16.25,5,0.0 +12568,12,38,2,0.0 +12568,17,39,2,0.0 +12568,2,19,47,0.0 +12568,13,6,39,0.0 +12568,64,33.25,20,0.0 +12568,22,21,28,0.0 +12568,48,12.75,24,0.0 +12568,53,32.8,39,0.0 +12568,47,9.5,48,0.0 +12568,62,49.3,48,0.0 +12568,14,23.25,8,0.0 +12568,6,25,45,0.0 +12568,7,30,26,0.0 +12569,29,123.79,40,0.0 +12569,61,28.5,14,0.0 +12569,52,7,43,0.0 +12569,50,16.25,19,0.0 +12569,2,19,48,0.0 +12569,57,19.5,17,0.0 +12569,37,26,47,0.0 +12569,6,25,24,0.0 +12569,5,21.35,32,0.0 +12569,22,21,40,0.0 +12569,68,12.5,39,0.0 +12569,13,6,1,0.0 +12569,26,31.23,23,0.0 +12569,53,32.8,41,0.0 +12569,62,49.3,1,0.0 +12569,16,17.45,13,0.0 +12569,70,15,9,0.0 +12569,11,21,34,0.0 +12569,72,34.8,18,0.0 +12570,50,16.25,5,0.0 +12570,12,38,14,0.0 +12570,67,14,31,0.0 +12570,22,21,16,0.0 +12570,26,31.23,31,0.0 +12570,74,10,2,0.0 +12570,14,23.25,8,0.0 +12570,54,7.45,26,0.0 +12570,29,123.79,37,0.0 +12570,71,21.5,39,0.0 +12570,77,13,45,0.0 +12570,16,17.45,18,0.0 +12570,42,14,45,0.0 +12570,23,9,25,0.0 +12570,62,49.3,48,0.0 +12570,60,34,47,0.0 +12570,76,18,28,0.0 +12571,11,21,23,0.0 +12571,9,97,23,0.0 +12571,49,20,15,0.0 +12571,32,32,14,0.0 +12571,75,7.75,35,0.0 +12571,12,38,32,0.0 +12571,56,38,23,0.0 +12571,77,13,29,0.0 +12571,63,43.9,1,0.0 +12571,30,25.89,5,0.0 +12571,73,15,15,0.0 +12571,71,21.5,43,0.0 +12571,45,9.5,46,0.0 +12571,48,12.75,32,0.0 +12571,44,19.45,26,0.0 +12571,37,26,50,0.0 +12571,72,34.8,8,0.0 +12571,61,28.5,41,0.0 +12571,25,14,32,0.0 +12571,1,18,8,0.0 +12571,55,24,23,0.0 +12571,13,6,5,0.0 +12571,62,49.3,39,0.0 +12571,34,14,19,0.0 +12571,39,18,33,0.0 +12571,4,22,41,0.0 +12571,26,31.23,32,0.0 +12571,74,10,12,0.0 +12571,22,21,12,0.0 +12571,52,7,26,0.0 +12572,15,15.5,38,0.0 +12572,17,39,10,0.0 +12572,40,18.4,4,0.0 +12572,12,38,47,0.0 +12572,33,2.5,9,0.0 +12572,67,14,33,0.0 +12572,10,31,19,0.0 +12572,32,32,26,0.0 +12572,56,38,22,0.0 +12572,31,12.5,36,0.0 +12572,51,53,5,0.0 +12572,68,12.5,1,0.0 +12572,27,43.9,29,0.0 +12572,30,25.89,29,0.0 +12572,72,34.8,23,0.0 +12572,69,36,35,0.0 +12572,29,123.79,5,0.0 +12572,59,55,47,0.0 +12572,1,18,20,0.0 +12572,9,97,40,0.0 +12573,58,13.25,42,0.0 +12573,24,4.5,31,0.0 +12573,2,19,34,0.0 +12573,21,10,14,0.0 +12573,66,17,10,0.0 +12573,49,20,47,0.0 +12573,72,34.8,41,0.0 +12573,3,10,24,0.0 +12573,64,33.25,13,0.0 +12573,35,18,48,0.0 +12573,54,7.45,33,0.0 +12573,46,12,41,0.0 +12573,41,9.65,42,0.0 +12573,36,19,13,0.0 +12573,29,123.79,49,0.0 +12573,56,38,25,0.0 +12573,67,14,22,0.0 +12573,40,18.4,34,0.0 +12573,53,32.8,11,0.0 +12573,7,30,10,0.0 +12573,22,21,40,0.0 +12573,76,18,41,0.0 +12573,4,22,20,0.0 +12573,70,15,47,0.0 +12573,63,43.9,13,0.0 +12573,43,46,12,0.0 +12573,12,38,17,0.0 +12573,71,21.5,37,0.0 +12573,68,12.5,18,0.0 +12573,32,32,42,0.0 +12573,47,9.5,13,0.0 +12573,39,18,6,0.0 +12573,6,25,46,0.0 +12573,27,43.9,15,0.0 +12573,33,2.5,5,0.0 +12573,11,21,38,0.0 +12573,75,7.75,40,0.0 +12573,69,36,48,0.0 +12573,59,55,16,0.0 +12573,25,14,16,0.0 +12573,73,15,16,0.0 +12573,37,26,39,0.0 +12573,62,49.3,21,0.0 +12573,16,17.45,6,0.0 +12573,13,6,20,0.0 +12573,9,97,17,0.0 +12573,61,28.5,9,0.0 +12573,1,18,44,0.0 +12573,57,19.5,26,0.0 +12573,14,23.25,31,0.0 +12573,74,10,11,0.0 +12573,8,40,21,0.0 +12573,28,45.6,10,0.0 +12573,30,25.89,39,0.0 +12573,20,81,2,0.0 +12573,26,31.23,3,0.0 +12573,5,21.35,13,0.0 +12573,50,16.25,28,0.0 +12573,17,39,12,0.0 +12573,77,13,45,0.0 +12573,15,15.5,50,0.0 +12573,31,12.5,46,0.0 +12573,34,14,3,0.0 +12573,42,14,38,0.0 +12574,13,6,34,0.0 +12574,19,9.2,19,0.0 +12574,21,10,8,0.0 +12574,2,19,13,0.0 +12574,76,18,39,0.0 +12574,27,43.9,8,0.0 +12574,28,45.6,45,0.0 +12574,38,263.5,2,0.0 +12574,67,14,22,0.0 +12574,3,10,28,0.0 +12575,13,6,16,0.0 +12575,26,31.23,35,0.0 +12575,4,22,4,0.0 +12575,52,7,30,0.0 +12575,43,46,30,0.0 +12575,73,15,48,0.0 +12575,45,9.5,39,0.0 +12575,24,4.5,40,0.0 +12575,42,14,33,0.0 +12575,33,2.5,9,0.0 +12575,41,9.65,27,0.0 +12575,2,19,21,0.0 +12575,56,38,33,0.0 +12575,47,9.5,45,0.0 +12575,20,81,9,0.0 +12575,10,31,39,0.0 +12575,49,20,44,0.0 +12575,36,19,23,0.0 +12575,57,19.5,39,0.0 +12575,16,17.45,37,0.0 +12575,72,34.8,32,0.0 +12575,48,12.75,33,0.0 +12575,31,12.5,41,0.0 +12575,54,7.45,12,0.0 +12575,64,33.25,41,0.0 +12575,35,18,29,0.0 +12575,55,24,39,0.0 +12575,12,38,37,0.0 +12575,11,21,3,0.0 +12575,8,40,48,0.0 +12575,15,15.5,6,0.0 +12575,63,43.9,7,0.0 +12575,27,43.9,3,0.0 +12575,69,36,18,0.0 +12575,21,10,2,0.0 +12575,17,39,25,0.0 +12575,30,25.89,18,0.0 +12575,46,12,29,0.0 +12575,38,263.5,21,0.0 +12575,61,28.5,5,0.0 +12575,68,12.5,24,0.0 +12575,39,18,41,0.0 +12575,9,97,27,0.0 +12575,75,7.75,17,0.0 +12575,67,14,29,0.0 +12575,44,19.45,12,0.0 +12575,76,18,23,0.0 +12576,67,14,4,0.0 +12576,38,263.5,27,0.0 +12576,15,15.5,23,0.0 +12576,26,31.23,25,0.0 +12576,21,10,17,0.0 +12576,75,7.75,31,0.0 +12576,54,7.45,4,0.0 +12576,4,22,38,0.0 +12576,8,40,20,0.0 +12576,31,12.5,23,0.0 +12576,40,18.4,43,0.0 +12576,55,24,6,0.0 +12576,17,39,9,0.0 +12576,64,33.25,28,0.0 +12576,36,19,3,0.0 +12576,16,17.45,13,0.0 +12576,71,21.5,8,0.0 +12576,57,19.5,11,0.0 +12576,12,38,16,0.0 +12576,43,46,40,0.0 +12576,6,25,30,0.0 +12576,5,21.35,26,0.0 +12576,28,45.6,42,0.0 +12577,10,31,29,0.0 +12577,3,10,49,0.0 +12577,67,14,35,0.0 +12577,41,9.65,33,0.0 +12577,5,21.35,24,0.0 +12577,51,53,50,0.0 +12577,19,9.2,8,0.0 +12577,44,19.45,10,0.0 +12577,50,16.25,18,0.0 +12577,23,9,50,0.0 +12577,45,9.5,8,0.0 +12577,60,34,46,0.0 +12577,29,123.79,48,0.0 +12577,39,18,22,0.0 +12577,8,40,28,0.0 +12577,1,18,35,0.0 +12577,20,81,24,0.0 +12577,47,9.5,6,0.0 +12577,33,2.5,24,0.0 +12577,74,10,43,0.0 +12577,4,22,9,0.0 +12577,43,46,23,0.0 +12577,34,14,34,0.0 +12577,30,25.89,10,0.0 +12577,16,17.45,30,0.0 +12577,36,19,11,0.0 +12577,17,39,25,0.0 +12577,40,18.4,43,0.0 +12577,42,14,9,0.0 +12577,46,12,15,0.0 +12577,76,18,39,0.0 +12577,28,45.6,7,0.0 +12577,27,43.9,3,0.0 +12577,66,17,21,0.0 +12577,65,21.05,47,0.0 +12577,18,62.5,48,0.0 +12577,12,38,36,0.0 +12577,21,10,9,0.0 +12577,59,55,29,0.0 +12577,64,33.25,7,0.0 +12577,56,38,7,0.0 +12577,7,30,7,0.0 +12577,57,19.5,9,0.0 +12577,73,15,49,0.0 +12577,72,34.8,31,0.0 +12577,62,49.3,24,0.0 +12577,14,23.25,15,0.0 +12577,38,263.5,43,0.0 +12577,68,12.5,45,0.0 +12577,26,31.23,24,0.0 +12577,70,15,17,0.0 +12577,71,21.5,49,0.0 +12577,32,32,24,0.0 +12577,54,7.45,49,0.0 +12577,61,28.5,18,0.0 +12577,15,15.5,44,0.0 +12577,9,97,45,0.0 +12577,22,21,8,0.0 +12577,37,26,45,0.0 +12577,6,25,19,0.0 +12577,77,13,9,0.0 +12577,31,12.5,11,0.0 +12577,55,24,6,0.0 +12577,49,20,17,0.0 +12577,2,19,34,0.0 +12578,10,31,4,0.0 +12578,15,15.5,29,0.0 +12578,74,10,21,0.0 +12578,64,33.25,30,0.0 +12578,21,10,33,0.0 +12578,5,21.35,10,0.0 +12578,71,21.5,33,0.0 +12578,46,12,35,0.0 +12578,14,23.25,39,0.0 +12578,52,7,39,0.0 +12578,72,34.8,43,0.0 +12578,1,18,47,0.0 +12578,55,24,15,0.0 +12578,31,12.5,34,0.0 +12578,39,18,14,0.0 +12578,26,31.23,34,0.0 +12578,35,18,29,0.0 +12578,29,123.79,44,0.0 +12578,57,19.5,26,0.0 +12578,17,39,32,0.0 +12578,11,21,19,0.0 +12578,42,14,40,0.0 +12578,45,9.5,6,0.0 +12578,13,6,42,0.0 +12578,63,43.9,46,0.0 +12578,6,25,17,0.0 +12578,4,22,7,0.0 +12578,77,13,44,0.0 +12578,22,21,12,0.0 +12578,19,9.2,23,0.0 +12578,36,19,34,0.0 +12578,47,9.5,46,0.0 +12578,43,46,41,0.0 +12578,18,62.5,4,0.0 +12578,41,9.65,20,0.0 +12578,76,18,34,0.0 +12578,24,4.5,16,0.0 +12578,8,40,42,0.0 +12578,58,13.25,47,0.0 +12579,49,20,25,0.0 +12579,18,62.5,17,0.0 +12579,46,12,43,0.0 +12579,72,34.8,43,0.0 +12579,37,26,28,0.0 +12579,19,9.2,17,0.0 +12579,20,81,1,0.0 +12579,68,12.5,38,0.0 +12579,25,14,12,0.0 +12579,9,97,44,0.0 +12579,73,15,26,0.0 +12579,71,21.5,4,0.0 +12579,57,19.5,25,0.0 +12579,55,24,9,0.0 +12579,29,123.79,27,0.0 +12579,10,31,17,0.0 +12579,42,14,17,0.0 +12579,7,30,50,0.0 +12579,33,2.5,45,0.0 +12579,38,263.5,2,0.0 +12579,53,32.8,50,0.0 +12579,69,36,33,0.0 +12579,56,38,19,0.0 +12579,58,13.25,7,0.0 +12579,64,33.25,44,0.0 +12579,1,18,42,0.0 +12579,32,32,16,0.0 +12579,16,17.45,24,0.0 +12579,44,19.45,35,0.0 +12579,76,18,37,0.0 +12579,75,7.75,44,0.0 +12579,30,25.89,42,0.0 +12579,13,6,27,0.0 +12579,65,21.05,4,0.0 +12579,35,18,49,0.0 +12579,39,18,41,0.0 +12579,77,13,4,0.0 +12579,62,49.3,1,0.0 +12579,60,34,34,0.0 +12579,34,14,17,0.0 +12579,27,43.9,27,0.0 +12579,22,21,18,0.0 +12579,51,53,14,0.0 +12579,6,25,34,0.0 +12579,31,12.5,40,0.0 +12579,41,9.65,21,0.0 +12579,45,9.5,28,0.0 +12579,15,15.5,27,0.0 +12579,67,14,34,0.0 +12579,3,10,19,0.0 +12579,5,21.35,10,0.0 +12579,47,9.5,37,0.0 +12579,8,40,11,0.0 +12579,50,16.25,2,0.0 +12579,70,15,22,0.0 +12579,14,23.25,4,0.0 +12579,28,45.6,13,0.0 +12579,63,43.9,40,0.0 +12579,74,10,50,0.0 +12579,24,4.5,28,0.0 +12579,21,10,33,0.0 +12579,4,22,46,0.0 +12579,66,17,3,0.0 +12579,23,9,28,0.0 +12579,17,39,15,0.0 +12579,12,38,6,0.0 +12579,52,7,36,0.0 +12579,61,28.5,44,0.0 +12580,52,7,23,0.0 +12580,12,38,23,0.0 +12580,11,21,48,0.0 +12580,41,9.65,48,0.0 +12580,56,38,48,0.0 +12580,61,28.5,39,0.0 +12580,48,12.75,39,0.0 +12580,46,12,26,0.0 +12580,9,97,4,0.0 +12580,55,24,34,0.0 +12580,13,6,11,0.0 +12580,37,26,20,0.0 +12580,39,18,35,0.0 +12580,47,9.5,13,0.0 +12580,67,14,26,0.0 +12580,29,123.79,33,0.0 +12580,50,16.25,25,0.0 +12580,58,13.25,18,0.0 +12580,23,9,35,0.0 +12580,28,45.6,20,0.0 +12580,6,25,41,0.0 +12580,62,49.3,16,0.0 +12581,13,6,25,0.0 +12581,27,43.9,21,0.0 +12581,7,30,49,0.0 +12581,56,38,33,0.0 +12581,33,2.5,12,0.0 +12581,9,97,42,0.0 +12581,69,36,19,0.0 +12581,68,12.5,22,0.0 +12581,63,43.9,32,0.0 +12581,15,15.5,46,0.0 +12581,8,40,49,0.0 +12581,24,4.5,4,0.0 +12581,72,34.8,31,0.0 +12581,6,25,10,0.0 +12581,52,7,14,0.0 +12581,49,20,46,0.0 +12581,21,10,16,0.0 +12581,3,10,50,0.0 +12581,19,9.2,15,0.0 +12581,76,18,50,0.0 +12581,75,7.75,44,0.0 +12581,67,14,40,0.0 +12581,42,14,44,0.0 +12581,46,12,3,0.0 +12581,38,263.5,49,0.0 +12581,28,45.6,41,0.0 +12581,10,31,45,0.0 +12581,43,46,25,0.0 +12581,48,12.75,7,0.0 +12581,30,25.89,23,0.0 +12581,73,15,46,0.0 +12581,36,19,19,0.0 +12581,61,28.5,23,0.0 +12581,20,81,29,0.0 +12581,45,9.5,30,0.0 +12581,31,12.5,16,0.0 +12581,5,21.35,24,0.0 +12581,41,9.65,1,0.0 +12582,63,43.9,3,0.0 +12582,69,36,27,0.0 +12582,35,18,32,0.0 +12582,64,33.25,10,0.0 +12582,59,55,35,0.0 +12582,12,38,27,0.0 +12582,72,34.8,37,0.0 +12582,11,21,12,0.0 +12582,43,46,45,0.0 +12582,7,30,20,0.0 +12582,19,9.2,3,0.0 +12582,65,21.05,18,0.0 +12582,46,12,40,0.0 +12583,18,62.5,38,0.0 +12583,30,25.89,17,0.0 +12584,62,49.3,24,0.0 +12584,4,22,50,0.0 +12584,24,4.5,49,0.0 +12584,69,36,26,0.0 +12584,27,43.9,38,0.0 +12584,9,97,30,0.0 +12584,67,14,16,0.0 +12584,28,45.6,13,0.0 +12584,65,21.05,20,0.0 +12584,32,32,50,0.0 +12584,31,12.5,29,0.0 +12584,26,31.23,34,0.0 +12584,5,21.35,24,0.0 +12584,43,46,25,0.0 +12584,22,21,34,0.0 +12584,44,19.45,10,0.0 +12584,55,24,33,0.0 +12584,41,9.65,26,0.0 +12584,15,15.5,21,0.0 +12584,74,10,1,0.0 +12584,64,33.25,31,0.0 +12584,11,21,23,0.0 +12584,12,38,28,0.0 +12584,57,19.5,31,0.0 +12584,20,81,39,0.0 +12584,60,34,3,0.0 +12584,77,13,50,0.0 +12584,58,13.25,39,0.0 +12584,72,34.8,25,0.0 +12584,35,18,44,0.0 +12584,45,9.5,9,0.0 +12584,42,14,32,0.0 +12584,54,7.45,46,0.0 +12584,2,19,37,0.0 +12584,51,53,23,0.0 +12584,73,15,20,0.0 +12584,30,25.89,9,0.0 +12584,48,12.75,48,0.0 +12584,47,9.5,6,0.0 +12584,70,15,34,0.0 +12584,7,30,22,0.0 +12584,18,62.5,20,0.0 +12584,56,38,18,0.0 +12584,76,18,15,0.0 +12584,8,40,22,0.0 +12584,13,6,49,0.0 +12584,16,17.45,36,0.0 +12584,61,28.5,20,0.0 +12584,52,7,13,0.0 +12584,68,12.5,44,0.0 +12584,1,18,20,0.0 +12584,3,10,7,0.0 +12584,23,9,13,0.0 +12584,59,55,3,0.0 +12584,33,2.5,20,0.0 +12584,19,9.2,18,0.0 +12584,49,20,9,0.0 +12584,46,12,44,0.0 +12584,36,19,28,0.0 +12584,40,18.4,33,0.0 +12584,29,123.79,42,0.0 +12584,75,7.75,15,0.0 +12584,21,10,1,0.0 +12584,71,21.5,10,0.0 +12584,66,17,24,0.0 +12585,15,15.5,47,0.0 +12585,1,18,32,0.0 +12585,22,21,27,0.0 +12585,25,14,16,0.0 +12585,41,9.65,2,0.0 +12585,42,14,23,0.0 +12585,51,53,29,0.0 +12586,1,18,18,0.0 +12586,35,18,22,0.0 +12586,53,32.8,17,0.0 +12586,74,10,33,0.0 +12586,17,39,30,0.0 +12586,41,9.65,5,0.0 +12586,51,53,9,0.0 +12586,7,30,27,0.0 +12586,66,17,13,0.0 +12586,25,14,29,0.0 +12586,46,12,23,0.0 +12586,68,12.5,25,0.0 +12586,70,15,28,0.0 +12586,5,21.35,24,0.0 +12586,32,32,22,0.0 +12586,18,62.5,12,0.0 +12586,29,123.79,8,0.0 +12586,19,9.2,14,0.0 +12586,26,31.23,30,0.0 +12586,4,22,30,0.0 +12587,30,25.89,21,0.0 +12587,66,17,47,0.0 +12587,71,21.5,46,0.0 +12587,2,19,26,0.0 +12587,36,19,29,0.0 +12587,48,12.75,32,0.0 +12587,55,24,41,0.0 +12587,77,13,43,0.0 +12587,59,55,49,0.0 +12587,24,4.5,12,0.0 +12587,58,13.25,7,0.0 +12587,31,12.5,24,0.0 +12587,32,32,15,0.0 +12587,72,34.8,1,0.0 +12587,67,14,20,0.0 +12587,10,31,49,0.0 +12587,20,81,28,0.0 +12587,38,263.5,20,0.0 +12587,15,15.5,36,0.0 +12587,16,17.45,34,0.0 +12587,37,26,48,0.0 +12587,74,10,21,0.0 +12587,69,36,6,0.0 +12587,23,9,1,0.0 +12587,64,33.25,30,0.0 +12587,63,43.9,38,0.0 +12587,73,15,16,0.0 +12587,57,19.5,41,0.0 +12587,44,19.45,10,0.0 +12587,1,18,1,0.0 +12587,53,32.8,34,0.0 +12587,60,34,44,0.0 +12587,29,123.79,3,0.0 +12587,54,7.45,29,0.0 +12587,75,7.75,18,0.0 +12587,56,38,29,0.0 +12587,39,18,6,0.0 +12587,14,23.25,9,0.0 +12587,17,39,47,0.0 +12587,68,12.5,41,0.0 +12587,13,6,43,0.0 +12587,11,21,44,0.0 +12587,45,9.5,40,0.0 +12587,26,31.23,36,0.0 +12587,8,40,39,0.0 +12587,6,25,17,0.0 +12587,49,20,1,0.0 +12587,40,18.4,19,0.0 +12587,62,49.3,41,0.0 +12587,47,9.5,39,0.0 +12587,42,14,15,0.0 +12587,70,15,6,0.0 +12587,28,45.6,36,0.0 +12587,18,62.5,14,0.0 +12587,34,14,31,0.0 +12587,35,18,35,0.0 +12587,33,2.5,39,0.0 +12587,9,97,49,0.0 +12587,52,7,29,0.0 +12587,61,28.5,10,0.0 +12587,3,10,47,0.0 +12587,46,12,49,0.0 +12587,12,38,23,0.0 +12587,43,46,24,0.0 +12587,4,22,40,0.0 +12587,27,43.9,8,0.0 +12587,21,10,48,0.0 +12587,19,9.2,32,0.0 +12587,51,53,41,0.0 +12587,25,14,37,0.0 +12587,5,21.35,15,0.0 +12587,76,18,4,0.0 +12587,41,9.65,16,0.0 +12587,65,21.05,34,0.0 +12587,22,21,1,0.0 +12587,7,30,8,0.0 +12587,50,16.25,32,0.0 +12588,37,26,11,0.0 +12588,62,49.3,33,0.0 +12588,6,25,19,0.0 +12588,51,53,26,0.0 +12588,56,38,22,0.0 +12588,52,7,42,0.0 +12588,44,19.45,29,0.0 +12588,47,9.5,11,0.0 +12588,34,14,39,0.0 +12588,15,15.5,32,0.0 +12588,2,19,12,0.0 +12588,48,12.75,37,0.0 +12588,73,15,24,0.0 +12588,75,7.75,36,0.0 +12588,12,38,41,0.0 +12588,43,46,6,0.0 +12588,65,21.05,29,0.0 +12588,28,45.6,17,0.0 +12588,36,19,14,0.0 +12588,11,21,8,0.0 +12588,23,9,49,0.0 +12588,19,9.2,37,0.0 +12588,40,18.4,43,0.0 +12588,68,12.5,50,0.0 +12588,26,31.23,15,0.0 +12588,10,31,47,0.0 +12588,61,28.5,1,0.0 +12588,60,34,43,0.0 +12588,27,43.9,32,0.0 +12588,57,19.5,31,0.0 +12588,3,10,46,0.0 +12588,46,12,29,0.0 +12588,64,33.25,18,0.0 +12588,4,22,22,0.0 +12588,16,17.45,16,0.0 +12588,58,13.25,46,0.0 +12588,33,2.5,32,0.0 +12588,14,23.25,18,0.0 +12588,1,18,48,0.0 +12588,76,18,26,0.0 +12588,77,13,33,0.0 +12588,49,20,18,0.0 +12588,50,16.25,39,0.0 +12588,70,15,15,0.0 +12588,59,55,23,0.0 +12588,32,32,22,0.0 +12588,29,123.79,47,0.0 +12588,53,32.8,4,0.0 +12588,41,9.65,45,0.0 +12588,21,10,41,0.0 +12588,42,14,8,0.0 +12588,20,81,22,0.0 +12588,30,25.89,31,0.0 +12588,54,7.45,46,0.0 +12588,9,97,3,0.0 +12588,17,39,34,0.0 +12588,13,6,34,0.0 +12588,25,14,41,0.0 +12588,39,18,24,0.0 +12588,18,62.5,20,0.0 +12588,71,21.5,43,0.0 +12588,35,18,41,0.0 +12588,38,263.5,9,0.0 +12588,7,30,7,0.0 +12588,55,24,41,0.0 +12588,31,12.5,7,0.0 +12588,72,34.8,18,0.0 +12588,8,40,18,0.0 +12588,67,14,10,0.0 +12588,63,43.9,4,0.0 +12588,66,17,15,0.0 +12588,45,9.5,34,0.0 +12588,69,36,30,0.0 +12588,5,21.35,16,0.0 +12588,24,4.5,30,0.0 +12588,22,21,49,0.0 +12588,74,10,44,0.0 +12589,39,18,21,0.0 +12589,57,19.5,31,0.0 +12589,19,9.2,26,0.0 +12589,47,9.5,8,0.0 +12589,77,13,21,0.0 +12589,20,81,31,0.0 +12589,9,97,24,0.0 +12589,5,21.35,10,0.0 +12589,37,26,42,0.0 +12589,23,9,45,0.0 +12589,15,15.5,31,0.0 +12589,4,22,47,0.0 +12589,32,32,10,0.0 +12589,3,10,44,0.0 +12589,75,7.75,34,0.0 +12589,72,34.8,11,0.0 +12589,28,45.6,43,0.0 +12589,10,31,18,0.0 +12589,42,14,8,0.0 +12589,24,4.5,1,0.0 +12589,36,19,50,0.0 +12590,33,2.5,40,0.0 +12590,6,25,41,0.0 +12590,15,15.5,50,0.0 +12590,3,10,11,0.0 +12590,77,13,4,0.0 +12590,25,14,37,0.0 +12590,10,31,45,0.0 +12590,65,21.05,39,0.0 +12590,69,36,16,0.0 +12590,55,24,16,0.0 +12590,60,34,48,0.0 +12590,16,17.45,20,0.0 +12590,12,38,35,0.0 +12590,30,25.89,42,0.0 +12590,62,49.3,50,0.0 +12590,35,18,45,0.0 +12590,73,15,42,0.0 +12590,31,12.5,33,0.0 +12590,26,31.23,27,0.0 +12590,22,21,11,0.0 +12590,59,55,34,0.0 +12590,17,39,6,0.0 +12590,24,4.5,43,0.0 +12590,18,62.5,38,0.0 +12590,67,14,22,0.0 +12590,36,19,22,0.0 +12590,34,14,41,0.0 +12590,56,38,20,0.0 +12590,63,43.9,30,0.0 +12590,13,6,3,0.0 +12590,5,21.35,21,0.0 +12590,9,97,28,0.0 +12590,74,10,44,0.0 +12590,45,9.5,30,0.0 +12590,66,17,3,0.0 +12590,53,32.8,13,0.0 +12590,27,43.9,13,0.0 +12590,51,53,14,0.0 +12590,21,10,36,0.0 +12590,40,18.4,44,0.0 +12590,19,9.2,44,0.0 +12590,14,23.25,26,0.0 +12590,71,21.5,25,0.0 +12590,49,20,26,0.0 +12590,39,18,8,0.0 +12590,38,263.5,2,0.0 +12590,54,7.45,23,0.0 +12590,68,12.5,37,0.0 +12591,11,21,44,0.0 +12591,13,6,43,0.0 +12591,64,33.25,16,0.0 +12591,16,17.45,5,0.0 +12591,21,10,32,0.0 +12592,6,25,40,0.0 +12592,68,12.5,40,0.0 +12592,44,19.45,43,0.0 +12593,60,34,46,0.0 +12593,75,7.75,37,0.0 +12593,70,15,17,0.0 +12593,19,9.2,40,0.0 +12593,1,18,8,0.0 +12593,68,12.5,49,0.0 +12593,5,21.35,4,0.0 +12593,44,19.45,2,0.0 +12593,13,6,19,0.0 +12593,50,16.25,40,0.0 +12593,36,19,24,0.0 +12593,9,97,26,0.0 +12593,23,9,26,0.0 +12593,33,2.5,27,0.0 +12593,8,40,34,0.0 +12593,14,23.25,21,0.0 +12593,42,14,7,0.0 +12593,54,7.45,15,0.0 +12593,31,12.5,20,0.0 +12593,51,53,32,0.0 +12593,47,9.5,19,0.0 +12593,59,55,42,0.0 +12593,76,18,13,0.0 +12593,2,19,17,0.0 +12593,26,31.23,5,0.0 +12593,65,21.05,13,0.0 +12593,16,17.45,26,0.0 +12593,7,30,32,0.0 +12593,62,49.3,27,0.0 +12593,53,32.8,38,0.0 +12593,43,46,26,0.0 +12593,64,33.25,50,0.0 +12593,24,4.5,32,0.0 +12593,77,13,22,0.0 +12593,17,39,24,0.0 +12593,69,36,47,0.0 +12593,41,9.65,49,0.0 +12593,56,38,2,0.0 +12593,48,12.75,18,0.0 +12593,27,43.9,40,0.0 +12593,21,10,46,0.0 +12593,58,13.25,16,0.0 +12593,72,34.8,11,0.0 +12593,35,18,37,0.0 +12593,32,32,45,0.0 +12593,29,123.79,38,0.0 +12593,71,21.5,6,0.0 +12593,63,43.9,17,0.0 +12593,55,24,42,0.0 +12593,6,25,10,0.0 +12593,49,20,20,0.0 +12593,46,12,24,0.0 +12593,18,62.5,15,0.0 +12593,20,81,19,0.0 +12593,4,22,43,0.0 +12594,25,14,39,0.0 +12595,6,25,44,0.0 +12595,13,6,49,0.0 +12595,9,97,25,0.0 +12595,28,45.6,31,0.0 +12595,76,18,12,0.0 +12595,45,9.5,18,0.0 +12595,64,33.25,41,0.0 +12595,53,32.8,31,0.0 +12595,67,14,8,0.0 +12595,32,32,40,0.0 +12595,10,31,33,0.0 +12595,52,7,9,0.0 +12595,71,21.5,8,0.0 +12595,39,18,35,0.0 +12595,25,14,44,0.0 +12595,21,10,14,0.0 +12595,37,26,12,0.0 +12595,11,21,11,0.0 +12595,19,9.2,24,0.0 +12595,30,25.89,1,0.0 +12595,16,17.45,23,0.0 +12595,12,38,29,0.0 +12595,36,19,5,0.0 +12595,54,7.45,48,0.0 +12595,5,21.35,39,0.0 +12595,23,9,34,0.0 +12595,55,24,16,0.0 +12595,75,7.75,11,0.0 +12595,26,31.23,36,0.0 +12595,42,14,20,0.0 +12595,18,62.5,5,0.0 +12595,8,40,24,0.0 +12595,38,263.5,40,0.0 +12595,7,30,8,0.0 +12595,43,46,34,0.0 +12595,44,19.45,7,0.0 +12595,14,23.25,13,0.0 +12595,66,17,18,0.0 +12595,74,10,44,0.0 +12595,2,19,15,0.0 +12595,3,10,35,0.0 +12595,22,21,50,0.0 +12595,62,49.3,22,0.0 +12595,40,18.4,11,0.0 +12595,61,28.5,10,0.0 +12595,51,53,16,0.0 +12595,70,15,43,0.0 +12595,20,81,40,0.0 +12595,31,12.5,7,0.0 +12595,69,36,27,0.0 +12595,77,13,33,0.0 +12595,63,43.9,7,0.0 +12595,49,20,31,0.0 +12595,59,55,38,0.0 +12595,15,15.5,47,0.0 +12595,35,18,39,0.0 +12595,29,123.79,30,0.0 +12595,47,9.5,31,0.0 +12595,60,34,24,0.0 +12595,1,18,18,0.0 +12595,72,34.8,12,0.0 +12595,50,16.25,33,0.0 +12595,57,19.5,39,0.0 +12595,58,13.25,48,0.0 +12595,4,22,9,0.0 +12596,3,10,41,0.0 +12596,32,32,43,0.0 +12596,42,14,30,0.0 +12596,44,19.45,25,0.0 +12596,25,14,27,0.0 +12596,58,13.25,41,0.0 +12596,68,12.5,7,0.0 +12596,69,36,11,0.0 +12596,67,14,20,0.0 +12596,36,19,34,0.0 +12596,66,17,42,0.0 +12596,53,32.8,2,0.0 +12596,14,23.25,44,0.0 +12596,61,28.5,45,0.0 +12596,4,22,11,0.0 +12596,76,18,12,0.0 +12597,76,18,2,0.0 +12597,29,123.79,47,0.0 +12597,30,25.89,30,0.0 +12597,77,13,12,0.0 +12597,1,18,5,0.0 +12597,22,21,6,0.0 +12597,45,9.5,19,0.0 +12597,71,21.5,45,0.0 +12597,4,22,18,0.0 +12597,72,34.8,33,0.0 +12597,26,31.23,16,0.0 +12597,36,19,5,0.0 +12597,13,6,36,0.0 +12597,19,9.2,39,0.0 +12597,49,20,9,0.0 +12597,39,18,24,0.0 +12597,37,26,1,0.0 +12597,28,45.6,48,0.0 +12597,9,97,2,0.0 +12597,38,263.5,32,0.0 +12597,17,39,4,0.0 +12597,62,49.3,41,0.0 +12597,21,10,26,0.0 +12597,24,4.5,50,0.0 +12597,18,62.5,35,0.0 +12597,74,10,28,0.0 +12597,15,15.5,4,0.0 +12597,52,7,16,0.0 +12597,5,21.35,11,0.0 +12597,7,30,15,0.0 +12597,56,38,39,0.0 +12597,41,9.65,33,0.0 +12597,47,9.5,38,0.0 +12597,3,10,39,0.0 +12597,23,9,30,0.0 +12597,16,17.45,41,0.0 +12597,14,23.25,47,0.0 +12597,50,16.25,22,0.0 +12597,57,19.5,49,0.0 +12597,61,28.5,50,0.0 +12597,63,43.9,12,0.0 +12597,34,14,17,0.0 +12597,25,14,41,0.0 +12597,75,7.75,29,0.0 +12597,48,12.75,37,0.0 +12597,12,38,9,0.0 +12597,32,32,17,0.0 +12597,40,18.4,45,0.0 +12598,33,2.5,27,0.0 +12598,10,31,12,0.0 +12598,37,26,50,0.0 +12598,71,21.5,41,0.0 +12598,47,9.5,26,0.0 +12598,28,45.6,11,0.0 +12598,56,38,49,0.0 +12598,77,13,24,0.0 +12598,42,14,17,0.0 +12598,52,7,11,0.0 +12598,22,21,18,0.0 +12598,63,43.9,31,0.0 +12598,39,18,25,0.0 +12598,31,12.5,11,0.0 +12598,73,15,33,0.0 +12598,62,49.3,4,0.0 +12598,51,53,7,0.0 +12598,32,32,46,0.0 +12598,24,4.5,6,0.0 +12598,67,14,36,0.0 +12598,19,9.2,9,0.0 +12598,12,38,22,0.0 +12598,17,39,2,0.0 +12598,66,17,25,0.0 +12598,34,14,30,0.0 +12598,60,34,7,0.0 +12598,44,19.45,8,0.0 +12598,7,30,8,0.0 +12598,57,19.5,17,0.0 +12598,50,16.25,34,0.0 +12598,70,15,38,0.0 +12598,75,7.75,36,0.0 +12598,6,25,29,0.0 +12598,49,20,34,0.0 +12598,48,12.75,7,0.0 +12598,8,40,3,0.0 +12598,35,18,39,0.0 +12598,38,263.5,48,0.0 +12598,59,55,21,0.0 +12598,36,19,27,0.0 +12598,18,62.5,41,0.0 +12598,14,23.25,40,0.0 +12598,27,43.9,20,0.0 +12598,13,6,49,0.0 +12598,53,32.8,29,0.0 +12598,4,22,18,0.0 +12598,20,81,42,0.0 +12598,15,15.5,8,0.0 +12598,61,28.5,44,0.0 +12598,46,12,45,0.0 +12598,3,10,19,0.0 +12598,65,21.05,13,0.0 +12598,68,12.5,24,0.0 +12598,30,25.89,27,0.0 +12598,2,19,42,0.0 +12598,55,24,47,0.0 +12598,16,17.45,20,0.0 +12598,54,7.45,50,0.0 +12598,5,21.35,30,0.0 +12598,69,36,39,0.0 +12599,27,43.9,39,0.0 +12599,29,123.79,12,0.0 +12599,70,15,35,0.0 +12599,4,22,27,0.0 +12599,57,19.5,12,0.0 +12599,1,18,38,0.0 +12599,44,19.45,49,0.0 +12599,46,12,48,0.0 +12599,60,34,35,0.0 +12599,43,46,33,0.0 +12599,7,30,31,0.0 +12599,51,53,39,0.0 +12599,35,18,44,0.0 +12599,47,9.5,15,0.0 +12599,68,12.5,7,0.0 +12599,52,7,39,0.0 +12599,36,19,50,0.0 +12599,40,18.4,45,0.0 +12599,42,14,22,0.0 +12599,6,25,7,0.0 +12599,23,9,41,0.0 +12599,59,55,6,0.0 +12599,58,13.25,42,0.0 +12599,34,14,9,0.0 +12599,53,32.8,40,0.0 +12599,32,32,18,0.0 +12599,62,49.3,32,0.0 +12599,11,21,45,0.0 +12599,18,62.5,36,0.0 +12599,69,36,15,0.0 +12599,65,21.05,18,0.0 +12599,54,7.45,1,0.0 +12599,66,17,28,0.0 +12599,33,2.5,36,0.0 +12599,26,31.23,35,0.0 +12599,50,16.25,50,0.0 +12599,67,14,47,0.0 +12599,12,38,34,0.0 +12599,55,24,21,0.0 +12599,5,21.35,49,0.0 +12599,15,15.5,44,0.0 +12599,20,81,10,0.0 +12599,49,20,4,0.0 +12599,61,28.5,38,0.0 +12599,19,9.2,19,0.0 +12599,22,21,5,0.0 +12599,41,9.65,46,0.0 +12599,21,10,14,0.0 +12599,71,21.5,10,0.0 +12599,2,19,3,0.0 +12599,28,45.6,37,0.0 +12600,74,10,4,0.0 +12600,67,14,39,0.0 +12600,14,23.25,33,0.0 +12600,3,10,29,0.0 +12600,12,38,4,0.0 +12600,44,19.45,5,0.0 +12600,9,97,8,0.0 +12600,40,18.4,50,0.0 +12600,22,21,49,0.0 +12600,57,19.5,18,0.0 +12600,49,20,4,0.0 +12600,8,40,3,0.0 +12600,21,10,11,0.0 +12600,58,13.25,19,0.0 +12600,41,9.65,36,0.0 +12600,10,31,8,0.0 +12600,59,55,18,0.0 +12600,46,12,15,0.0 +12600,61,28.5,5,0.0 +12600,15,15.5,48,0.0 +12600,32,32,31,0.0 +12600,5,21.35,43,0.0 +12600,72,34.8,26,0.0 +12600,2,19,17,0.0 +12600,11,21,5,0.0 +12600,18,62.5,21,0.0 +12600,39,18,5,0.0 +12600,23,9,12,0.0 +12600,53,32.8,11,0.0 +12600,54,7.45,22,0.0 +12600,19,9.2,27,0.0 +12600,63,43.9,29,0.0 +12600,26,31.23,12,0.0 +12600,17,39,43,0.0 +12600,25,14,19,0.0 +12600,68,12.5,23,0.0 +12600,33,2.5,22,0.0 +12600,38,263.5,41,0.0 +12600,37,26,8,0.0 +12600,16,17.45,43,0.0 +12600,13,6,42,0.0 +12600,20,81,5,0.0 +12600,56,38,6,0.0 +12600,43,46,42,0.0 +12600,66,17,18,0.0 +12600,27,43.9,14,0.0 +12600,31,12.5,41,0.0 +12600,24,4.5,19,0.0 +12600,45,9.5,11,0.0 +12600,50,16.25,20,0.0 +12600,1,18,17,0.0 +12600,35,18,47,0.0 +12600,70,15,16,0.0 +12600,69,36,41,0.0 +12600,64,33.25,29,0.0 +12601,49,20,31,0.0 +12601,33,2.5,49,0.0 +12601,48,12.75,35,0.0 +12601,25,14,6,0.0 +12601,23,9,39,0.0 +12601,61,28.5,28,0.0 +12601,31,12.5,12,0.0 +12601,51,53,20,0.0 +12601,62,49.3,3,0.0 +12601,41,9.65,12,0.0 +12601,70,15,37,0.0 +12601,3,10,33,0.0 +12601,46,12,27,0.0 +12601,73,15,11,0.0 +12601,74,10,13,0.0 +12601,6,25,19,0.0 +12601,37,26,43,0.0 +12601,43,46,10,0.0 +12601,64,33.25,11,0.0 +12601,44,19.45,8,0.0 +12601,67,14,16,0.0 +12601,77,13,29,0.0 +12601,42,14,26,0.0 +12601,68,12.5,48,0.0 +12601,72,34.8,35,0.0 +12601,5,21.35,37,0.0 +12601,47,9.5,17,0.0 +12601,27,43.9,18,0.0 +12601,17,39,13,0.0 +12601,55,24,14,0.0 +12601,29,123.79,48,0.0 +12601,36,19,14,0.0 +12601,10,31,34,0.0 +12601,52,7,37,0.0 +12601,58,13.25,7,0.0 +12601,2,19,17,0.0 +12601,4,22,48,0.0 +12601,14,23.25,10,0.0 +12602,72,34.8,17,0.0 +12602,47,9.5,4,0.0 +12602,34,14,50,0.0 +12602,7,30,26,0.0 +12602,38,263.5,5,0.0 +12602,36,19,41,0.0 +12602,26,31.23,39,0.0 +12602,75,7.75,3,0.0 +12602,63,43.9,44,0.0 +12602,22,21,5,0.0 +12602,24,4.5,36,0.0 +12602,35,18,44,0.0 +12602,48,12.75,44,0.0 +12602,17,39,6,0.0 +12602,27,43.9,36,0.0 +12602,37,26,40,0.0 +12602,66,17,15,0.0 +12602,40,18.4,43,0.0 +12602,68,12.5,11,0.0 +12602,71,21.5,9,0.0 +12602,61,28.5,35,0.0 +12602,5,21.35,43,0.0 +12602,1,18,44,0.0 +12602,6,25,31,0.0 +12602,76,18,29,0.0 +12602,67,14,42,0.0 +12602,33,2.5,7,0.0 +12602,46,12,12,0.0 +12602,32,32,38,0.0 +12602,21,10,12,0.0 +12602,39,18,37,0.0 +12602,69,36,38,0.0 +12602,56,38,16,0.0 +12602,8,40,16,0.0 +12602,62,49.3,42,0.0 +12602,43,46,28,0.0 +12602,60,34,9,0.0 +12602,28,45.6,13,0.0 +12602,19,9.2,46,0.0 +12602,41,9.65,24,0.0 +12602,9,97,47,0.0 +12602,57,19.5,38,0.0 +12602,44,19.45,26,0.0 +12602,58,13.25,23,0.0 +12602,30,25.89,8,0.0 +12602,45,9.5,37,0.0 +12602,52,7,13,0.0 +12602,70,15,15,0.0 +12602,42,14,39,0.0 +12602,2,19,23,0.0 +12602,49,20,46,0.0 +12602,16,17.45,12,0.0 +12602,13,6,20,0.0 +12602,15,15.5,19,0.0 +12602,53,32.8,15,0.0 +12602,14,23.25,4,0.0 +12602,4,22,39,0.0 +12602,11,21,40,0.0 +12602,12,38,26,0.0 +12602,29,123.79,13,0.0 +12602,74,10,21,0.0 +12602,54,7.45,46,0.0 +12603,15,15.5,29,0.0 +12603,65,21.05,8,0.0 +12603,77,13,35,0.0 +12603,39,18,36,0.0 +12603,34,14,21,0.0 +12603,66,17,48,0.0 +12603,14,23.25,36,0.0 +12603,74,10,50,0.0 +12603,61,28.5,33,0.0 +12603,64,33.25,13,0.0 +12603,10,31,9,0.0 +12603,23,9,43,0.0 +12603,44,19.45,12,0.0 +12603,47,9.5,37,0.0 +12603,63,43.9,47,0.0 +12603,26,31.23,50,0.0 +12603,52,7,36,0.0 +12603,35,18,25,0.0 +12603,62,49.3,32,0.0 +12603,55,24,4,0.0 +12603,58,13.25,31,0.0 +12603,76,18,42,0.0 +12603,17,39,18,0.0 +12603,53,32.8,35,0.0 +12603,6,25,28,0.0 +12603,18,62.5,31,0.0 +12603,32,32,37,0.0 +12603,31,12.5,45,0.0 +12603,19,9.2,12,0.0 +12603,27,43.9,2,0.0 +12603,51,53,28,0.0 +12603,70,15,11,0.0 +12603,41,9.65,28,0.0 +12603,69,36,18,0.0 +12603,40,18.4,35,0.0 +12603,57,19.5,28,0.0 +12603,20,81,13,0.0 +12603,43,46,5,0.0 +12603,49,20,32,0.0 +12603,3,10,27,0.0 +12603,25,14,19,0.0 +12603,22,21,47,0.0 +12603,24,4.5,39,0.0 +12603,12,38,38,0.0 +12603,36,19,12,0.0 +12603,73,15,14,0.0 +12603,13,6,6,0.0 +12603,33,2.5,45,0.0 +12603,46,12,41,0.0 +12603,60,34,6,0.0 +12603,21,10,40,0.0 +12603,45,9.5,16,0.0 +12603,56,38,4,0.0 +12603,16,17.45,26,0.0 +12603,48,12.75,32,0.0 +12603,37,26,10,0.0 +12603,72,34.8,26,0.0 +12603,9,97,21,0.0 +12603,38,263.5,25,0.0 +12603,28,45.6,34,0.0 +12603,71,21.5,40,0.0 +12603,2,19,12,0.0 +12603,29,123.79,41,0.0 +12604,62,49.3,10,0.0 +12604,22,21,15,0.0 +12604,46,12,13,0.0 +12604,4,22,1,0.0 +12604,37,26,28,0.0 +12604,77,13,17,0.0 +12604,49,20,44,0.0 +12604,50,16.25,30,0.0 +12604,23,9,14,0.0 +12604,8,40,12,0.0 +12604,48,12.75,22,0.0 +12604,25,14,47,0.0 +12604,56,38,14,0.0 +12604,66,17,12,0.0 +12604,14,23.25,36,0.0 +12604,51,53,15,0.0 +12604,41,9.65,5,0.0 +12604,70,15,48,0.0 +12604,64,33.25,26,0.0 +12604,72,34.8,31,0.0 +12604,58,13.25,2,0.0 +12604,42,14,42,0.0 +12604,31,12.5,31,0.0 +12604,59,55,15,0.0 +12604,54,7.45,21,0.0 +12604,15,15.5,9,0.0 +12604,32,32,22,0.0 +12604,40,18.4,23,0.0 +12604,55,24,35,0.0 +12605,61,28.5,3,0.0 +12605,51,53,35,0.0 +12605,26,31.23,41,0.0 +12605,59,55,22,0.0 +12605,60,34,28,0.0 +12605,6,25,34,0.0 +12605,1,18,21,0.0 +12605,3,10,35,0.0 +12605,21,10,31,0.0 +12605,14,23.25,39,0.0 +12605,64,33.25,9,0.0 +12605,5,21.35,38,0.0 +12605,24,4.5,23,0.0 +12606,5,21.35,10,0.0 +12606,27,43.9,2,0.0 +12606,21,10,19,0.0 +12606,2,19,3,0.0 +12606,50,16.25,11,0.0 +12606,60,34,40,0.0 +12606,72,34.8,1,0.0 +12606,71,21.5,24,0.0 +12606,44,19.45,43,0.0 +12606,26,31.23,17,0.0 +12606,68,12.5,8,0.0 +12606,33,2.5,7,0.0 +12606,19,9.2,26,0.0 +12606,59,55,41,0.0 +12606,70,15,23,0.0 +12606,45,9.5,27,0.0 +12606,74,10,17,0.0 +12606,64,33.25,28,0.0 +12606,39,18,37,0.0 +12606,46,12,41,0.0 +12606,56,38,34,0.0 +12606,24,4.5,45,0.0 +12606,9,97,11,0.0 +12606,13,6,46,0.0 +12606,11,21,41,0.0 +12606,53,32.8,41,0.0 +12606,67,14,46,0.0 +12606,57,19.5,18,0.0 +12606,42,14,4,0.0 +12606,75,7.75,17,0.0 +12606,15,15.5,13,0.0 +12606,55,24,28,0.0 +12606,54,7.45,43,0.0 +12606,23,9,15,0.0 +12606,65,21.05,36,0.0 +12606,8,40,4,0.0 +12606,41,9.65,29,0.0 +12606,47,9.5,46,0.0 +12606,14,23.25,33,0.0 +12606,34,14,15,0.0 +12606,6,25,16,0.0 +12606,69,36,33,0.0 +12606,58,13.25,3,0.0 +12606,77,13,36,0.0 +12606,40,18.4,30,0.0 +12606,73,15,5,0.0 +12606,35,18,20,0.0 +12606,1,18,14,0.0 +12606,22,21,11,0.0 +12606,10,31,18,0.0 +12606,66,17,19,0.0 +12606,29,123.79,5,0.0 +12606,37,26,12,0.0 +12606,61,28.5,8,0.0 +12606,51,53,43,0.0 +12606,16,17.45,6,0.0 +12606,36,19,48,0.0 +12606,32,32,44,0.0 +12606,63,43.9,16,0.0 +12606,52,7,43,0.0 +12606,48,12.75,19,0.0 +12606,38,263.5,37,0.0 +12606,76,18,28,0.0 +12606,30,25.89,42,0.0 +12606,18,62.5,15,0.0 +12606,28,45.6,15,0.0 +12606,7,30,17,0.0 +12607,36,19,44,0.0 +12607,49,20,47,0.0 +12607,13,6,27,0.0 +12607,38,263.5,31,0.0 +12607,66,17,26,0.0 +12607,23,9,47,0.0 +12607,46,12,40,0.0 +12607,55,24,31,0.0 +12607,4,22,14,0.0 +12607,75,7.75,24,0.0 +12607,21,10,32,0.0 +12607,26,31.23,20,0.0 +12607,18,62.5,34,0.0 +12607,43,46,13,0.0 +12607,15,15.5,42,0.0 +12607,62,49.3,31,0.0 +12607,14,23.25,27,0.0 +12607,34,14,13,0.0 +12607,10,31,15,0.0 +12607,68,12.5,3,0.0 +12607,35,18,18,0.0 +12607,67,14,19,0.0 +12607,32,32,38,0.0 +12607,42,14,3,0.0 +12607,69,36,4,0.0 +12607,17,39,43,0.0 +12607,29,123.79,49,0.0 +12607,28,45.6,31,0.0 +12607,11,21,6,0.0 +12607,6,25,17,0.0 +12607,57,19.5,40,0.0 +12607,41,9.65,47,0.0 +12607,40,18.4,37,0.0 +12607,1,18,4,0.0 +12607,71,21.5,21,0.0 +12607,45,9.5,14,0.0 +12607,7,30,50,0.0 +12607,20,81,38,0.0 +12607,16,17.45,45,0.0 +12607,47,9.5,18,0.0 +12607,74,10,1,0.0 +12607,50,16.25,28,0.0 +12607,44,19.45,39,0.0 +12607,53,32.8,32,0.0 +12607,58,13.25,47,0.0 +12607,48,12.75,49,0.0 +12607,2,19,24,0.0 +12608,56,38,25,0.0 +12608,23,9,11,0.0 +12608,15,15.5,32,0.0 +12608,69,36,8,0.0 +12608,18,62.5,46,0.0 +12608,65,21.05,20,0.0 +12608,17,39,36,0.0 +12608,75,7.75,8,0.0 +12608,43,46,34,0.0 +12608,4,22,47,0.0 +12608,3,10,3,0.0 +12608,41,9.65,25,0.0 +12608,49,20,1,0.0 +12608,53,32.8,36,0.0 +12608,14,23.25,36,0.0 +12608,70,15,43,0.0 +12608,20,81,23,0.0 +12608,47,9.5,30,0.0 +12608,52,7,1,0.0 +12608,77,13,34,0.0 +12608,32,32,22,0.0 +12608,58,13.25,30,0.0 +12608,5,21.35,20,0.0 +12608,13,6,26,0.0 +12608,1,18,5,0.0 +12608,73,15,1,0.0 +12608,36,19,36,0.0 +12608,44,19.45,22,0.0 +12608,38,263.5,32,0.0 +12608,35,18,35,0.0 +12608,61,28.5,36,0.0 +12608,28,45.6,16,0.0 +12608,10,31,24,0.0 +12608,31,12.5,22,0.0 +12608,16,17.45,37,0.0 +12608,72,34.8,6,0.0 +12608,50,16.25,25,0.0 +12608,67,14,11,0.0 +12608,21,10,3,0.0 +12608,76,18,36,0.0 +12608,66,17,33,0.0 +12608,19,9.2,34,0.0 +12608,29,123.79,27,0.0 +12609,43,46,17,0.0 +12609,10,31,31,0.0 +12609,67,14,36,0.0 +12609,20,81,13,0.0 +12609,74,10,14,0.0 +12610,40,18.4,49,0.0 +12610,14,23.25,19,0.0 +12610,72,34.8,10,0.0 +12610,37,26,1,0.0 +12610,58,13.25,18,0.0 +12610,64,33.25,50,0.0 +12610,44,19.45,10,0.0 +12610,38,263.5,2,0.0 +12610,29,123.79,48,0.0 +12610,43,46,36,0.0 +12610,39,18,13,0.0 +12610,68,12.5,44,0.0 +12610,56,38,40,0.0 +12610,23,9,32,0.0 +12610,17,39,50,0.0 +12610,50,16.25,4,0.0 +12610,57,19.5,29,0.0 +12610,6,25,3,0.0 +12610,53,32.8,24,0.0 +12610,30,25.89,18,0.0 +12610,1,18,10,0.0 +12610,73,15,18,0.0 +12610,54,7.45,9,0.0 +12610,41,9.65,38,0.0 +12610,8,40,5,0.0 +12610,55,24,20,0.0 +12610,49,20,46,0.0 +12610,76,18,16,0.0 +12610,45,9.5,4,0.0 +12610,52,7,36,0.0 +12610,63,43.9,31,0.0 +12610,19,9.2,41,0.0 +12610,7,30,37,0.0 +12610,48,12.75,30,0.0 +12610,11,21,42,0.0 +12610,15,15.5,26,0.0 +12610,9,97,41,0.0 +12610,28,45.6,33,0.0 +12610,33,2.5,46,0.0 +12610,13,6,44,0.0 +12610,24,4.5,43,0.0 +12610,46,12,7,0.0 +12610,26,31.23,2,0.0 +12610,60,34,2,0.0 +12610,75,7.75,44,0.0 +12610,12,38,13,0.0 +12610,47,9.5,17,0.0 +12610,22,21,29,0.0 +12610,32,32,24,0.0 +12610,34,14,50,0.0 +12610,21,10,43,0.0 +12610,66,17,13,0.0 +12610,3,10,17,0.0 +12610,27,43.9,49,0.0 +12610,59,55,47,0.0 +12610,10,31,19,0.0 +12610,65,21.05,49,0.0 +12610,42,14,37,0.0 +12610,51,53,28,0.0 +12610,25,14,42,0.0 +12610,67,14,22,0.0 +12610,16,17.45,39,0.0 +12610,4,22,36,0.0 +12610,77,13,13,0.0 +12610,74,10,45,0.0 +12610,5,21.35,14,0.0 +12610,36,19,19,0.0 +12610,31,12.5,49,0.0 +12610,61,28.5,42,0.0 +12610,71,21.5,14,0.0 +12610,70,15,11,0.0 +12611,7,30,24,0.0 +12611,56,38,11,0.0 +12611,32,32,10,0.0 +12611,28,45.6,15,0.0 +12611,33,2.5,46,0.0 +12611,73,15,12,0.0 +12611,19,9.2,4,0.0 +12611,47,9.5,28,0.0 +12611,63,43.9,47,0.0 +12611,65,21.05,12,0.0 +12611,1,18,4,0.0 +12611,55,24,50,0.0 +12611,11,21,34,0.0 +12611,66,17,41,0.0 +12611,57,19.5,26,0.0 +12611,24,4.5,36,0.0 +12611,51,53,42,0.0 +12611,44,19.45,2,0.0 +12611,20,81,3,0.0 +12611,29,123.79,17,0.0 +12611,45,9.5,35,0.0 +12611,35,18,48,0.0 +12611,14,23.25,37,0.0 +12611,3,10,35,0.0 +12611,70,15,29,0.0 +12612,18,62.5,30,0.0 +12612,52,7,45,0.0 +12612,1,18,46,0.0 +12612,10,31,28,0.0 +12613,68,12.5,28,0.0 +12613,47,9.5,22,0.0 +12613,27,43.9,29,0.0 +12613,3,10,46,0.0 +12613,58,13.25,44,0.0 +12613,74,10,2,0.0 +12613,60,34,36,0.0 +12613,73,15,5,0.0 +12613,38,263.5,4,0.0 +12613,31,12.5,44,0.0 +12613,55,24,7,0.0 +12613,71,21.5,42,0.0 +12613,35,18,34,0.0 +12614,30,25.89,3,0.0 +12614,26,31.23,4,0.0 +12614,41,9.65,48,0.0 +12614,70,15,45,0.0 +12614,32,32,36,0.0 +12614,52,7,45,0.0 +12614,45,9.5,40,0.0 +12614,76,18,25,0.0 +12614,12,38,3,0.0 +12614,69,36,29,0.0 +12614,63,43.9,30,0.0 +12614,21,10,1,0.0 +12614,49,20,8,0.0 +12614,74,10,36,0.0 +12614,4,22,36,0.0 +12614,46,12,13,0.0 +12614,64,33.25,24,0.0 +12614,55,24,24,0.0 +12614,75,7.75,29,0.0 +12614,16,17.45,49,0.0 +12614,20,81,50,0.0 +12614,15,15.5,3,0.0 +12614,67,14,42,0.0 +12614,61,28.5,45,0.0 +12614,58,13.25,23,0.0 +12614,22,21,36,0.0 +12614,1,18,22,0.0 +12614,40,18.4,6,0.0 +12614,25,14,11,0.0 +12614,31,12.5,49,0.0 +12614,5,21.35,7,0.0 +12614,62,49.3,10,0.0 +12614,54,7.45,50,0.0 +12614,6,25,32,0.0 +12614,53,32.8,25,0.0 +12614,43,46,41,0.0 +12614,33,2.5,12,0.0 +12614,10,31,48,0.0 +12614,44,19.45,18,0.0 +12614,38,263.5,38,0.0 +12614,9,97,16,0.0 +12614,13,6,2,0.0 +12614,14,23.25,30,0.0 +12614,35,18,11,0.0 +12614,7,30,30,0.0 +12614,3,10,23,0.0 +12614,36,19,40,0.0 +12614,42,14,12,0.0 +12614,23,9,49,0.0 +12614,66,17,11,0.0 +12614,51,53,8,0.0 +12614,57,19.5,4,0.0 +12614,18,62.5,32,0.0 +12614,73,15,48,0.0 +12614,65,21.05,11,0.0 +12614,60,34,24,0.0 +12614,47,9.5,26,0.0 +12614,59,55,39,0.0 +12614,71,21.5,48,0.0 +12614,29,123.79,34,0.0 +12614,11,21,19,0.0 +12615,71,21.5,24,0.0 +12615,69,36,29,0.0 +12615,4,22,41,0.0 +12615,8,40,5,0.0 +12615,62,49.3,11,0.0 +12615,29,123.79,10,0.0 +12615,51,53,6,0.0 +12615,40,18.4,49,0.0 +12615,58,13.25,2,0.0 +12616,57,19.5,30,0.0 +12616,67,14,5,0.0 +12616,15,15.5,28,0.0 +12616,8,40,12,0.0 +12616,13,6,19,0.0 +12616,55,24,33,0.0 +12616,22,21,11,0.0 +12616,45,9.5,46,0.0 +12616,31,12.5,11,0.0 +12616,16,17.45,6,0.0 +12616,64,33.25,7,0.0 +12616,19,9.2,46,0.0 +12616,7,30,46,0.0 +12616,24,4.5,16,0.0 +12616,54,7.45,14,0.0 +12616,61,28.5,37,0.0 +12616,53,32.8,9,0.0 +12616,12,38,8,0.0 +12616,10,31,13,0.0 +12616,72,34.8,10,0.0 +12616,71,21.5,10,0.0 +12616,32,32,2,0.0 +12616,14,23.25,10,0.0 +12616,37,26,22,0.0 +12616,59,55,10,0.0 +12616,49,20,49,0.0 +12616,17,39,11,0.0 +12616,6,25,31,0.0 +12616,43,46,11,0.0 +12616,33,2.5,8,0.0 +12616,40,18.4,1,0.0 +12616,62,49.3,28,0.0 +12616,35,18,33,0.0 +12616,34,14,7,0.0 +12616,65,21.05,50,0.0 +12616,38,263.5,21,0.0 +12616,11,21,41,0.0 +12616,74,10,4,0.0 +12616,28,45.6,7,0.0 +12616,63,43.9,34,0.0 +12616,76,18,33,0.0 +12616,52,7,5,0.0 +12616,70,15,14,0.0 +12616,36,19,1,0.0 +12616,41,9.65,30,0.0 +12616,1,18,39,0.0 +12616,77,13,39,0.0 +12616,26,31.23,9,0.0 +12616,56,38,14,0.0 +12616,5,21.35,14,0.0 +12616,42,14,13,0.0 +12616,25,14,1,0.0 +12616,60,34,15,0.0 +12616,21,10,20,0.0 +12616,69,36,49,0.0 +12616,2,19,15,0.0 +12616,51,53,40,0.0 +12616,18,62.5,27,0.0 +12616,23,9,25,0.0 +12616,39,18,7,0.0 +12616,66,17,10,0.0 +12616,50,16.25,38,0.0 +12616,75,7.75,49,0.0 +12617,53,32.8,20,0.0 +12617,62,49.3,6,0.0 +12617,75,7.75,12,0.0 +12617,48,12.75,43,0.0 +12618,23,9,31,0.0 +12618,68,12.5,3,0.0 +12618,66,17,2,0.0 +12618,45,9.5,30,0.0 +12618,13,6,12,0.0 +12618,69,36,21,0.0 +12618,57,19.5,50,0.0 +12618,51,53,15,0.0 +12618,16,17.45,3,0.0 +12618,22,21,26,0.0 +12618,21,10,36,0.0 +12618,28,45.6,2,0.0 +12618,40,18.4,41,0.0 +12618,76,18,28,0.0 +12618,37,26,39,0.0 +12618,70,15,41,0.0 +12618,59,55,32,0.0 +12618,8,40,4,0.0 +12618,44,19.45,12,0.0 +12618,77,13,26,0.0 +12618,20,81,18,0.0 +12618,43,46,35,0.0 +12618,74,10,18,0.0 +12618,38,263.5,16,0.0 +12618,46,12,2,0.0 +12618,35,18,9,0.0 +12618,3,10,43,0.0 +12618,39,18,43,0.0 +12618,5,21.35,39,0.0 +12618,26,31.23,2,0.0 +12618,60,34,29,0.0 +12618,42,14,27,0.0 +12618,64,33.25,32,0.0 +12618,34,14,8,0.0 +12618,54,7.45,15,0.0 +12618,30,25.89,48,0.0 +12618,10,31,40,0.0 +12618,58,13.25,27,0.0 +12618,17,39,27,0.0 +12618,18,62.5,43,0.0 +12618,32,32,8,0.0 +12618,48,12.75,13,0.0 +12618,65,21.05,14,0.0 +12618,4,22,39,0.0 +12618,29,123.79,17,0.0 +12618,6,25,39,0.0 +12618,75,7.75,42,0.0 +12618,15,15.5,38,0.0 +12618,19,9.2,49,0.0 +12618,56,38,49,0.0 +12618,2,19,19,0.0 +12618,61,28.5,49,0.0 +12618,11,21,37,0.0 +12618,1,18,48,0.0 +12618,9,97,16,0.0 +12618,27,43.9,7,0.0 +12618,33,2.5,8,0.0 +12618,14,23.25,49,0.0 +12619,49,20,46,0.0 +12619,40,18.4,16,0.0 +12619,35,18,47,0.0 +12619,69,36,41,0.0 +12619,51,53,33,0.0 +12619,4,22,26,0.0 +12619,60,34,18,0.0 +12619,61,28.5,44,0.0 +12619,14,23.25,21,0.0 +12619,50,16.25,31,0.0 +12619,33,2.5,39,0.0 +12619,23,9,50,0.0 +12619,9,97,48,0.0 +12619,27,43.9,10,0.0 +12619,75,7.75,46,0.0 +12619,39,18,47,0.0 +12619,10,31,10,0.0 +12619,38,263.5,15,0.0 +12619,1,18,13,0.0 +12619,16,17.45,13,0.0 +12619,2,19,8,0.0 +12619,13,6,1,0.0 +12619,44,19.45,46,0.0 +12619,28,45.6,2,0.0 +12619,73,15,37,0.0 +12619,65,21.05,35,0.0 +12619,43,46,23,0.0 +12619,21,10,12,0.0 +12619,15,15.5,43,0.0 +12619,64,33.25,25,0.0 +12619,6,25,12,0.0 +12619,34,14,28,0.0 +12619,66,17,18,0.0 +12619,62,49.3,1,0.0 +12619,59,55,13,0.0 +12619,57,19.5,7,0.0 +12619,24,4.5,3,0.0 +12619,42,14,20,0.0 +12619,77,13,5,0.0 +12619,41,9.65,31,0.0 +12619,7,30,39,0.0 +12619,68,12.5,30,0.0 +12619,26,31.23,4,0.0 +12619,29,123.79,8,0.0 +12620,25,14,11,0.0 +12620,33,2.5,18,0.0 +12620,28,45.6,12,0.0 +12620,39,18,25,0.0 +12620,74,10,3,0.0 +12620,16,17.45,19,0.0 +12620,2,19,15,0.0 +12620,12,38,50,0.0 +12620,6,25,35,0.0 +12620,27,43.9,12,0.0 +12620,46,12,34,0.0 +12620,71,21.5,40,0.0 +12621,73,15,1,0.0 +12621,65,21.05,46,0.0 +12621,53,32.8,37,0.0 +12621,41,9.65,26,0.0 +12621,43,46,36,0.0 +12621,64,33.25,43,0.0 +12621,14,23.25,15,0.0 +12621,25,14,20,0.0 +12621,8,40,44,0.0 +12621,31,12.5,3,0.0 +12621,29,123.79,10,0.0 +12621,11,21,50,0.0 +12621,42,14,38,0.0 +12621,33,2.5,49,0.0 +12621,50,16.25,26,0.0 +12621,4,22,12,0.0 +12621,1,18,14,0.0 +12621,54,7.45,33,0.0 +12621,22,21,27,0.0 +12621,19,9.2,5,0.0 +12621,3,10,18,0.0 +12621,34,14,15,0.0 +12621,57,19.5,43,0.0 +12621,59,55,35,0.0 +12621,38,263.5,12,0.0 +12621,30,25.89,18,0.0 +12621,44,19.45,7,0.0 +12621,67,14,1,0.0 +12621,46,12,5,0.0 +12621,27,43.9,7,0.0 +12621,6,25,48,0.0 +12621,15,15.5,37,0.0 +12621,32,32,13,0.0 +12621,62,49.3,50,0.0 +12621,2,19,30,0.0 +12621,37,26,32,0.0 +12622,30,25.89,16,0.0 +12622,75,7.75,27,0.0 +12622,65,21.05,23,0.0 +12622,44,19.45,15,0.0 +12622,59,55,30,0.0 +12622,4,22,11,0.0 +12622,60,34,27,0.0 +12622,55,24,13,0.0 +12623,15,15.5,18,0.0 +12623,70,15,5,0.0 +12623,22,21,21,0.0 +12623,75,7.75,50,0.0 +12623,72,34.8,16,0.0 +12623,40,18.4,46,0.0 +12623,20,81,10,0.0 +12623,42,14,6,0.0 +12623,61,28.5,9,0.0 +12623,67,14,24,0.0 +12623,3,10,12,0.0 +12623,68,12.5,19,0.0 +12623,35,18,29,0.0 +12623,49,20,25,0.0 +12623,52,7,14,0.0 +12623,76,18,12,0.0 +12623,11,21,27,0.0 +12623,29,123.79,12,0.0 +12623,34,14,47,0.0 +12623,28,45.6,13,0.0 +12623,44,19.45,42,0.0 +12623,59,55,1,0.0 +12623,62,49.3,1,0.0 +12623,73,15,29,0.0 +12623,2,19,48,0.0 +12623,47,9.5,46,0.0 +12623,14,23.25,19,0.0 +12623,38,263.5,25,0.0 +12623,69,36,35,0.0 +12623,19,9.2,36,0.0 +12623,1,18,40,0.0 +12623,60,34,10,0.0 +12623,45,9.5,18,0.0 +12623,5,21.35,20,0.0 +12623,63,43.9,9,0.0 +12623,36,19,48,0.0 +12623,13,6,22,0.0 +12623,46,12,11,0.0 +12623,50,16.25,42,0.0 +12623,41,9.65,42,0.0 +12623,9,97,25,0.0 +12623,58,13.25,38,0.0 +12623,64,33.25,8,0.0 +12623,30,25.89,3,0.0 +12623,39,18,36,0.0 +12623,18,62.5,32,0.0 +12623,74,10,30,0.0 +12623,51,53,23,0.0 +12623,53,32.8,15,0.0 +12623,48,12.75,42,0.0 +12623,43,46,1,0.0 +12623,10,31,46,0.0 +12623,24,4.5,3,0.0 +12623,25,14,24,0.0 +12623,23,9,25,0.0 +12623,32,32,42,0.0 +12623,26,31.23,7,0.0 +12623,16,17.45,8,0.0 +12623,77,13,33,0.0 +12623,12,38,50,0.0 +12623,66,17,38,0.0 +12623,4,22,48,0.0 +12623,8,40,27,0.0 +12623,6,25,18,0.0 +12623,33,2.5,38,0.0 +12623,31,12.5,47,0.0 +12623,27,43.9,27,0.0 +12623,37,26,22,0.0 +12623,71,21.5,30,0.0 +12623,56,38,17,0.0 +12623,17,39,37,0.0 +12624,14,23.25,19,0.0 +12624,29,123.79,18,0.0 +12624,28,45.6,44,0.0 +12624,33,2.5,29,0.0 +12624,75,7.75,28,0.0 +12624,65,21.05,21,0.0 +12624,3,10,42,0.0 +12624,6,25,14,0.0 +12624,50,16.25,30,0.0 +12624,8,40,36,0.0 +12624,27,43.9,44,0.0 +12624,24,4.5,27,0.0 +12624,45,9.5,5,0.0 +12624,32,32,9,0.0 +12624,72,34.8,49,0.0 +12624,2,19,7,0.0 +12624,22,21,19,0.0 +12624,13,6,31,0.0 +12624,60,34,22,0.0 +12624,39,18,43,0.0 +12624,23,9,18,0.0 +12624,71,21.5,15,0.0 +12624,4,22,16,0.0 +12624,25,14,8,0.0 +12624,42,14,1,0.0 +12624,54,7.45,20,0.0 +12624,43,46,9,0.0 +12624,38,263.5,23,0.0 +12624,10,31,37,0.0 +12624,26,31.23,25,0.0 +12624,48,12.75,44,0.0 +12624,1,18,15,0.0 +12624,73,15,41,0.0 +12624,44,19.45,50,0.0 +12624,36,19,28,0.0 +12624,67,14,6,0.0 +12624,34,14,14,0.0 +12624,74,10,15,0.0 +12624,12,38,21,0.0 +12624,17,39,28,0.0 +12624,30,25.89,33,0.0 +12624,55,24,14,0.0 +12624,5,21.35,25,0.0 +12624,51,53,48,0.0 +12624,47,9.5,42,0.0 +12624,41,9.65,20,0.0 +12624,76,18,37,0.0 +12624,49,20,29,0.0 +12624,40,18.4,3,0.0 +12624,77,13,2,0.0 +12624,53,32.8,7,0.0 +12624,20,81,33,0.0 +12624,37,26,16,0.0 +12624,59,55,39,0.0 +12624,35,18,34,0.0 +12624,7,30,33,0.0 +12624,52,7,15,0.0 +12624,56,38,35,0.0 +12624,68,12.5,16,0.0 +12624,63,43.9,39,0.0 +12624,61,28.5,12,0.0 +12624,9,97,21,0.0 +12624,46,12,5,0.0 +12624,19,9.2,42,0.0 +12624,58,13.25,15,0.0 +12624,11,21,12,0.0 +12624,66,17,45,0.0 +12624,62,49.3,36,0.0 +12624,16,17.45,18,0.0 +12624,69,36,45,0.0 +12624,31,12.5,17,0.0 +12624,57,19.5,10,0.0 +12624,15,15.5,12,0.0 +12624,70,15,35,0.0 +12625,7,30,22,0.0 +12625,67,14,14,0.0 +12625,5,21.35,32,0.0 +12625,71,21.5,46,0.0 +12625,21,10,41,0.0 +12625,64,33.25,45,0.0 +12625,55,24,21,0.0 +12625,72,34.8,29,0.0 +12625,13,6,49,0.0 +12625,19,9.2,6,0.0 +12625,3,10,47,0.0 +12625,10,31,50,0.0 +12625,1,18,14,0.0 +12625,70,15,32,0.0 +12625,50,16.25,41,0.0 +12625,14,23.25,20,0.0 +12625,20,81,14,0.0 +12625,8,40,5,0.0 +12625,29,123.79,35,0.0 +12625,49,20,3,0.0 +12625,4,22,45,0.0 +12625,38,263.5,29,0.0 +12625,22,21,22,0.0 +12625,59,55,1,0.0 +12625,51,53,8,0.0 +12625,41,9.65,4,0.0 +12625,36,19,39,0.0 +12625,66,17,44,0.0 +12625,23,9,37,0.0 +12625,33,2.5,25,0.0 +12625,12,38,25,0.0 +12625,68,12.5,22,0.0 +12625,17,39,8,0.0 +12625,42,14,18,0.0 +12625,2,19,20,0.0 +12625,54,7.45,49,0.0 +12625,60,34,47,0.0 +12625,65,21.05,35,0.0 +12625,35,18,16,0.0 +12625,57,19.5,14,0.0 +12625,46,12,7,0.0 +12625,47,9.5,38,0.0 +12625,62,49.3,23,0.0 +12625,27,43.9,31,0.0 +12625,77,13,26,0.0 +12625,28,45.6,17,0.0 +12625,61,28.5,49,0.0 +12625,24,4.5,40,0.0 +12625,31,12.5,3,0.0 +12625,37,26,16,0.0 +12625,73,15,3,0.0 +12625,18,62.5,9,0.0 +12625,48,12.75,3,0.0 +12625,40,18.4,27,0.0 +12625,69,36,14,0.0 +12625,53,32.8,23,0.0 +12625,9,97,5,0.0 +12625,39,18,3,0.0 +12625,30,25.89,18,0.0 +12625,56,38,40,0.0 +12625,43,46,30,0.0 +12625,32,32,6,0.0 +12625,45,9.5,49,0.0 +12625,34,14,25,0.0 +12625,75,7.75,5,0.0 +12625,26,31.23,18,0.0 +12625,15,15.5,33,0.0 +12625,25,14,11,0.0 +12625,63,43.9,44,0.0 +12625,58,13.25,15,0.0 +12625,11,21,41,0.0 +12625,16,17.45,32,0.0 +12625,76,18,41,0.0 +12625,74,10,19,0.0 +12625,6,25,38,0.0 +12625,44,19.45,36,0.0 +12625,52,7,42,0.0 +12626,49,20,4,0.0 +12626,77,13,39,0.0 +12626,59,55,22,0.0 +12626,71,21.5,13,0.0 +12626,58,13.25,29,0.0 +12626,55,24,48,0.0 +12626,9,97,21,0.0 +12626,48,12.75,9,0.0 +12626,63,43.9,30,0.0 +12626,51,53,28,0.0 +12626,64,33.25,39,0.0 +12626,2,19,47,0.0 +12626,25,14,15,0.0 +12626,37,26,10,0.0 +12626,43,46,13,0.0 +12626,14,23.25,41,0.0 +12626,35,18,19,0.0 +12626,41,9.65,7,0.0 +12626,44,19.45,1,0.0 +12626,38,263.5,41,0.0 +12626,18,62.5,48,0.0 +12626,53,32.8,24,0.0 +12626,6,25,39,0.0 +12626,46,12,24,0.0 +12626,57,19.5,23,0.0 +12626,52,7,34,0.0 +12626,24,4.5,40,0.0 +12626,68,12.5,12,0.0 +12626,60,34,30,0.0 +12626,39,18,1,0.0 +12626,26,31.23,28,0.0 +12626,22,21,31,0.0 +12626,31,12.5,13,0.0 +12626,47,9.5,3,0.0 +12626,76,18,35,0.0 +12626,12,38,31,0.0 +12626,61,28.5,2,0.0 +12626,65,21.05,17,0.0 +12626,11,21,30,0.0 +12626,13,6,49,0.0 +12626,54,7.45,35,0.0 +12626,40,18.4,3,0.0 +12626,23,9,31,0.0 +12626,4,22,7,0.0 +12626,66,17,50,0.0 +12626,8,40,19,0.0 +12626,42,14,33,0.0 +12626,16,17.45,39,0.0 +12626,10,31,9,0.0 +12626,69,36,38,0.0 +12626,30,25.89,25,0.0 +12626,3,10,20,0.0 +12626,20,81,20,0.0 +12626,73,15,18,0.0 +12626,21,10,19,0.0 +12626,19,9.2,3,0.0 +12626,28,45.6,49,0.0 +12626,74,10,6,0.0 +12626,67,14,48,0.0 +12626,62,49.3,4,0.0 +12626,56,38,41,0.0 +12626,32,32,4,0.0 +12626,17,39,37,0.0 +12626,36,19,3,0.0 +12626,33,2.5,29,0.0 +12626,72,34.8,7,0.0 +12626,27,43.9,26,0.0 +12626,5,21.35,48,0.0 +12626,1,18,40,0.0 +12626,34,14,11,0.0 +12626,7,30,14,0.0 +12626,45,9.5,35,0.0 +12626,75,7.75,47,0.0 +12626,29,123.79,17,0.0 +12626,15,15.5,43,0.0 +12627,56,38,45,0.0 +12627,4,22,30,0.0 +12627,72,34.8,44,0.0 +12627,47,9.5,47,0.0 +12627,45,9.5,40,0.0 +12627,49,20,10,0.0 +12627,27,43.9,7,0.0 +12627,65,21.05,8,0.0 +12627,68,12.5,50,0.0 +12627,54,7.45,34,0.0 +12627,70,15,28,0.0 +12627,57,19.5,42,0.0 +12627,24,4.5,46,0.0 +12627,21,10,10,0.0 +12627,42,14,18,0.0 +12627,77,13,49,0.0 +12627,34,14,43,0.0 +12627,22,21,22,0.0 +12627,52,7,3,0.0 +12627,62,49.3,27,0.0 +12627,43,46,23,0.0 +12627,8,40,22,0.0 +12627,32,32,18,0.0 +12627,3,10,18,0.0 +12627,58,13.25,3,0.0 +12627,53,32.8,46,0.0 +12627,19,9.2,6,0.0 +12627,46,12,50,0.0 +12627,48,12.75,21,0.0 +12627,12,38,20,0.0 +12627,51,53,24,0.0 +12627,35,18,27,0.0 +12627,38,263.5,7,0.0 +12627,74,10,24,0.0 +12627,28,45.6,19,0.0 +12627,6,25,9,0.0 +12627,20,81,2,0.0 +12627,66,17,48,0.0 +12627,44,19.45,16,0.0 +12627,64,33.25,34,0.0 +12627,63,43.9,10,0.0 +12627,76,18,17,0.0 +12627,60,34,49,0.0 +12627,73,15,48,0.0 +12627,39,18,27,0.0 +12627,40,18.4,40,0.0 +12627,36,19,13,0.0 +12627,2,19,16,0.0 +12627,75,7.75,30,0.0 +12627,11,21,45,0.0 +12627,50,16.25,43,0.0 +12627,29,123.79,25,0.0 +12627,30,25.89,5,0.0 +12627,67,14,2,0.0 +12627,23,9,42,0.0 +12627,69,36,29,0.0 +12627,13,6,10,0.0 +12627,55,24,38,0.0 +12627,25,14,9,0.0 +12627,15,15.5,12,0.0 +12627,17,39,43,0.0 +12627,16,17.45,33,0.0 +12627,9,97,2,0.0 +12627,7,30,28,0.0 +12627,26,31.23,19,0.0 +12627,33,2.5,25,0.0 +12627,10,31,24,0.0 +12627,41,9.65,49,0.0 +12628,5,21.35,42,0.0 +12628,13,6,39,0.0 +12628,60,34,49,0.0 +12628,23,9,26,0.0 +12628,69,36,21,0.0 +12628,51,53,6,0.0 +12629,58,13.25,23,0.0 +12629,52,7,41,0.0 +12629,37,26,40,0.0 +12629,42,14,39,0.0 +12629,56,38,31,0.0 +12629,61,28.5,35,0.0 +12629,40,18.4,9,0.0 +12629,48,12.75,2,0.0 +12629,12,38,30,0.0 +12629,60,34,9,0.0 +12629,55,24,3,0.0 +12629,53,32.8,50,0.0 +12629,51,53,23,0.0 +12629,18,62.5,34,0.0 +12629,69,36,23,0.0 +12629,7,30,1,0.0 +12629,46,12,28,0.0 +12629,4,22,25,0.0 +12629,66,17,11,0.0 +12629,62,49.3,10,0.0 +12629,1,18,17,0.0 +12629,50,16.25,49,0.0 +12629,19,9.2,13,0.0 +12629,41,9.65,28,0.0 +12629,65,21.05,4,0.0 +12629,13,6,49,0.0 +12629,35,18,27,0.0 +12629,23,9,32,0.0 +12629,24,4.5,3,0.0 +12629,26,31.23,4,0.0 +12629,8,40,48,0.0 +12629,33,2.5,20,0.0 +12629,63,43.9,27,0.0 +12629,32,32,7,0.0 +12629,5,21.35,1,0.0 +12629,38,263.5,5,0.0 +12629,14,23.25,36,0.0 +12629,71,21.5,19,0.0 +12629,16,17.45,31,0.0 +12629,57,19.5,14,0.0 +12629,77,13,26,0.0 +12629,68,12.5,34,0.0 +12629,9,97,46,0.0 +12629,11,21,8,0.0 +12629,67,14,37,0.0 +12629,70,15,31,0.0 +12629,47,9.5,47,0.0 +12629,75,7.75,15,0.0 +12629,39,18,33,0.0 +12629,45,9.5,18,0.0 +12629,36,19,37,0.0 +12629,43,46,8,0.0 +12629,28,45.6,37,0.0 +12629,27,43.9,5,0.0 +12629,34,14,24,0.0 +12630,27,43.9,24,0.0 +12630,67,14,34,0.0 +12630,6,25,30,0.0 +12630,69,36,32,0.0 +12630,34,14,31,0.0 +12630,20,81,3,0.0 +12630,51,53,32,0.0 +12630,43,46,46,0.0 +12630,9,97,19,0.0 +12630,8,40,46,0.0 +12630,25,14,22,0.0 +12630,3,10,24,0.0 +12630,18,62.5,30,0.0 +12630,23,9,5,0.0 +12630,63,43.9,7,0.0 +12630,70,15,22,0.0 +12630,30,25.89,44,0.0 +12630,72,34.8,12,0.0 +12630,45,9.5,49,0.0 +12630,28,45.6,19,0.0 +12630,74,10,29,0.0 +12631,64,33.25,32,0.0 +12631,66,17,6,0.0 +12631,23,9,2,0.0 +12631,50,16.25,26,0.0 +12631,8,40,49,0.0 +12631,44,19.45,18,0.0 +12631,71,21.5,45,0.0 +12631,70,15,22,0.0 +12631,38,263.5,37,0.0 +12631,48,12.75,11,0.0 +12631,2,19,48,0.0 +12631,6,25,17,0.0 +12631,73,15,23,0.0 +12631,12,38,49,0.0 +12631,69,36,40,0.0 +12631,57,19.5,28,0.0 +12631,72,34.8,29,0.0 +12631,3,10,38,0.0 +12631,47,9.5,50,0.0 +12631,31,12.5,8,0.0 +12631,24,4.5,33,0.0 +12631,33,2.5,31,0.0 +12631,25,14,19,0.0 +12631,75,7.75,8,0.0 +12631,46,12,46,0.0 +12631,32,32,45,0.0 +12631,59,55,26,0.0 +12631,18,62.5,41,0.0 +12631,55,24,1,0.0 +12631,45,9.5,28,0.0 +12631,5,21.35,9,0.0 +12631,49,20,24,0.0 +12631,65,21.05,2,0.0 +12631,15,15.5,6,0.0 +12631,1,18,6,0.0 +12631,62,49.3,46,0.0 +12631,4,22,10,0.0 +12631,74,10,46,0.0 +12631,40,18.4,1,0.0 +12631,28,45.6,30,0.0 +12631,21,10,44,0.0 +12631,68,12.5,6,0.0 +12631,39,18,37,0.0 +12631,14,23.25,44,0.0 +12631,37,26,41,0.0 +12631,11,21,39,0.0 +12631,34,14,20,0.0 +12631,13,6,15,0.0 +12631,35,18,13,0.0 +12631,61,28.5,42,0.0 +12631,22,21,33,0.0 +12631,52,7,46,0.0 +12631,77,13,46,0.0 +12632,9,97,14,0.0 +12632,29,123.79,8,0.0 +12632,66,17,36,0.0 +12632,45,9.5,29,0.0 +12632,1,18,31,0.0 +12632,68,12.5,45,0.0 +12632,54,7.45,33,0.0 +12632,18,62.5,28,0.0 +12632,44,19.45,16,0.0 +12632,43,46,24,0.0 +12632,19,9.2,14,0.0 +12632,55,24,4,0.0 +12632,74,10,14,0.0 +12632,3,10,37,0.0 +12632,12,38,44,0.0 +12632,63,43.9,18,0.0 +12632,50,16.25,7,0.0 +12632,22,21,14,0.0 +12632,57,19.5,11,0.0 +12632,77,13,14,0.0 +12632,5,21.35,8,0.0 +12632,33,2.5,41,0.0 +12632,34,14,46,0.0 +12632,4,22,31,0.0 +12632,15,15.5,44,0.0 +12632,51,53,48,0.0 +12632,23,9,21,0.0 +12632,8,40,1,0.0 +12632,21,10,13,0.0 +12632,36,19,15,0.0 +12632,31,12.5,47,0.0 +12632,60,34,36,0.0 +12632,59,55,27,0.0 +12632,16,17.45,43,0.0 +12632,56,38,49,0.0 +12632,41,9.65,18,0.0 +12632,24,4.5,42,0.0 +12632,71,21.5,30,0.0 +12632,30,25.89,28,0.0 +12632,10,31,2,0.0 +12633,2,19,22,0.0 +12633,75,7.75,8,0.0 +12633,62,49.3,3,0.0 +12633,45,9.5,38,0.0 +12633,33,2.5,29,0.0 +12633,43,46,49,0.0 +12633,5,21.35,15,0.0 +12633,37,26,49,0.0 +12633,6,25,15,0.0 +12633,21,10,3,0.0 +12633,34,14,42,0.0 +12633,27,43.9,30,0.0 +12633,24,4.5,45,0.0 +12633,59,55,13,0.0 +12633,39,18,5,0.0 +12633,57,19.5,35,0.0 +12633,29,123.79,13,0.0 +12633,40,18.4,49,0.0 +12633,1,18,13,0.0 +12633,72,34.8,47,0.0 +12633,18,62.5,49,0.0 +12633,50,16.25,13,0.0 +12633,44,19.45,37,0.0 +12633,66,17,8,0.0 +12633,23,9,27,0.0 +12633,63,43.9,19,0.0 +12633,9,97,45,0.0 +12633,28,45.6,26,0.0 +12633,11,21,3,0.0 +12633,52,7,47,0.0 +12633,12,38,13,0.0 +12633,58,13.25,23,0.0 +12633,13,6,27,0.0 +12633,73,15,34,0.0 +12633,3,10,23,0.0 +12633,69,36,19,0.0 +12633,15,15.5,41,0.0 +12633,22,21,11,0.0 +12633,68,12.5,50,0.0 +12633,30,25.89,37,0.0 +12633,55,24,37,0.0 +12633,17,39,48,0.0 +12633,26,31.23,45,0.0 +12633,67,14,21,0.0 +12633,64,33.25,4,0.0 +12633,36,19,39,0.0 +12633,54,7.45,12,0.0 +12633,35,18,48,0.0 +12633,19,9.2,9,0.0 +12633,46,12,44,0.0 +12633,7,30,21,0.0 +12633,74,10,24,0.0 +12633,56,38,6,0.0 +12633,48,12.75,13,0.0 +12633,53,32.8,31,0.0 +12633,51,53,1,0.0 +12633,20,81,4,0.0 +12633,31,12.5,28,0.0 +12633,61,28.5,41,0.0 +12633,38,263.5,34,0.0 +12633,42,14,27,0.0 +12633,49,20,1,0.0 +12633,25,14,13,0.0 +12633,4,22,11,0.0 +12633,47,9.5,24,0.0 +12633,16,17.45,48,0.0 +12633,65,21.05,2,0.0 +12633,41,9.65,39,0.0 +12633,8,40,47,0.0 +12633,10,31,2,0.0 +12633,70,15,23,0.0 +12633,76,18,23,0.0 +12633,71,21.5,4,0.0 +12633,32,32,22,0.0 +12633,60,34,20,0.0 +12634,69,36,32,0.0 +12634,12,38,23,0.0 +12634,7,30,14,0.0 +12634,50,16.25,8,0.0 +12634,4,22,22,0.0 +12634,32,32,11,0.0 +12634,48,12.75,1,0.0 +12634,76,18,32,0.0 +12634,38,263.5,14,0.0 +12634,40,18.4,20,0.0 +12634,23,9,39,0.0 +12634,59,55,15,0.0 +12634,61,28.5,36,0.0 +12634,46,12,21,0.0 +12634,33,2.5,25,0.0 +12634,77,13,29,0.0 +12634,72,34.8,21,0.0 +12634,71,21.5,31,0.0 +12634,13,6,26,0.0 +12634,17,39,29,0.0 +12634,49,20,32,0.0 +12634,63,43.9,2,0.0 +12634,30,25.89,26,0.0 +12634,5,21.35,19,0.0 +12634,9,97,23,0.0 +12634,57,19.5,37,0.0 +12634,41,9.65,48,0.0 +12634,21,10,39,0.0 +12634,42,14,34,0.0 +12634,16,17.45,14,0.0 +12634,8,40,25,0.0 +12634,19,9.2,33,0.0 +12634,65,21.05,1,0.0 +12634,2,19,31,0.0 +12634,66,17,31,0.0 +12634,74,10,34,0.0 +12634,31,12.5,12,0.0 +12634,20,81,17,0.0 +12634,27,43.9,15,0.0 +12634,70,15,50,0.0 +12634,56,38,23,0.0 +12635,44,19.45,10,0.0 +12635,70,15,22,0.0 +12635,57,19.5,10,0.0 +12635,21,10,29,0.0 +12635,76,18,36,0.0 +12635,47,9.5,13,0.0 +12635,56,38,31,0.0 +12635,69,36,4,0.0 +12635,22,21,30,0.0 +12635,66,17,12,0.0 +12635,13,6,11,0.0 +12635,63,43.9,18,0.0 +12635,43,46,33,0.0 +12635,52,7,17,0.0 +12635,30,25.89,24,0.0 +12635,24,4.5,45,0.0 +12635,33,2.5,23,0.0 +12635,3,10,39,0.0 +12635,7,30,14,0.0 +12635,62,49.3,36,0.0 +12635,16,17.45,6,0.0 +12635,40,18.4,18,0.0 +12635,50,16.25,39,0.0 +12635,51,53,48,0.0 +12635,25,14,15,0.0 +12635,28,45.6,13,0.0 +12635,46,12,43,0.0 +12635,55,24,44,0.0 +12635,64,33.25,35,0.0 +12636,26,31.23,10,0.0 +12636,54,7.45,39,0.0 +12636,62,49.3,21,0.0 +12636,40,18.4,26,0.0 +12636,11,21,9,0.0 +12636,56,38,12,0.0 +12636,28,45.6,11,0.0 +12636,57,19.5,6,0.0 +12636,21,10,39,0.0 +12636,68,12.5,39,0.0 +12636,65,21.05,13,0.0 +12636,38,263.5,42,0.0 +12636,35,18,41,0.0 +12637,13,6,4,0.0 +12637,46,12,48,0.0 +12637,2,19,6,0.0 +12637,42,14,30,0.0 +12638,55,24,2,0.0 +12638,13,6,41,0.0 +12638,5,21.35,33,0.0 +12638,73,15,8,0.0 +12638,16,17.45,1,0.0 +12638,46,12,2,0.0 +12638,24,4.5,3,0.0 +12638,37,26,8,0.0 +12638,47,9.5,7,0.0 +12638,68,12.5,34,0.0 +12638,20,81,49,0.0 +12638,15,15.5,10,0.0 +12638,9,97,18,0.0 +12638,72,34.8,20,0.0 +12638,35,18,25,0.0 +12638,6,25,48,0.0 +12638,56,38,40,0.0 +12638,1,18,40,0.0 +12638,50,16.25,37,0.0 +12638,45,9.5,47,0.0 +12638,75,7.75,19,0.0 +12638,18,62.5,15,0.0 +12638,32,32,9,0.0 +12638,36,19,34,0.0 +12638,8,40,47,0.0 +12638,2,19,29,0.0 +12638,42,14,33,0.0 +12638,59,55,15,0.0 +12638,30,25.89,29,0.0 +12638,77,13,7,0.0 +12638,58,13.25,41,0.0 +12638,69,36,25,0.0 +12638,22,21,22,0.0 +12639,37,26,23,0.0 +12639,52,7,47,0.0 +12639,74,10,7,0.0 +12639,8,40,16,0.0 +12639,47,9.5,4,0.0 +12639,54,7.45,7,0.0 +12639,73,15,44,0.0 +12639,14,23.25,41,0.0 +12639,24,4.5,25,0.0 +12639,71,21.5,29,0.0 +12639,26,31.23,35,0.0 +12639,49,20,12,0.0 +12639,56,38,13,0.0 +12639,33,2.5,16,0.0 +12639,2,19,50,0.0 +12639,65,21.05,32,0.0 +12639,60,34,5,0.0 +12639,6,25,26,0.0 +12639,25,14,3,0.0 +12639,9,97,4,0.0 +12639,27,43.9,3,0.0 +12639,4,22,1,0.0 +12639,66,17,35,0.0 +12639,68,12.5,22,0.0 +12639,34,14,9,0.0 +12639,38,263.5,4,0.0 +12639,46,12,28,0.0 +12639,64,33.25,45,0.0 +12639,13,6,42,0.0 +12639,40,18.4,47,0.0 +12639,20,81,14,0.0 +12639,53,32.8,32,0.0 +12639,32,32,20,0.0 +12639,36,19,42,0.0 +12639,39,18,28,0.0 +12639,76,18,3,0.0 +12639,23,9,32,0.0 +12639,67,14,48,0.0 +12639,16,17.45,24,0.0 +12639,28,45.6,8,0.0 +12639,5,21.35,7,0.0 +12639,55,24,42,0.0 +12639,69,36,15,0.0 +12639,75,7.75,32,0.0 +12639,59,55,34,0.0 +12639,15,15.5,50,0.0 +12639,10,31,17,0.0 +12639,41,9.65,45,0.0 +12639,42,14,34,0.0 +12639,50,16.25,23,0.0 +12639,48,12.75,28,0.0 +12639,77,13,31,0.0 +12639,1,18,13,0.0 +12639,21,10,5,0.0 +12639,11,21,12,0.0 +12639,44,19.45,26,0.0 +12639,58,13.25,48,0.0 +12639,18,62.5,50,0.0 +12639,30,25.89,37,0.0 +12639,12,38,38,0.0 +12639,22,21,35,0.0 +12639,17,39,7,0.0 +12639,7,30,25,0.0 +12640,13,6,50,0.0 +12640,52,7,4,0.0 +12640,35,18,2,0.0 +12640,76,18,41,0.0 +12640,48,12.75,34,0.0 +12640,28,45.6,50,0.0 +12640,17,39,46,0.0 +12640,54,7.45,30,0.0 +12640,21,10,9,0.0 +12640,53,32.8,23,0.0 +12640,5,21.35,6,0.0 +12640,29,123.79,37,0.0 +12640,39,18,27,0.0 +12640,56,38,3,0.0 +12640,68,12.5,39,0.0 +12640,8,40,14,0.0 +12640,2,19,28,0.0 +12640,1,18,29,0.0 +12640,22,21,44,0.0 +12641,44,19.45,29,0.0 +12641,3,10,6,0.0 +12641,31,12.5,33,0.0 +12641,43,46,25,0.0 +12641,22,21,42,0.0 +12641,74,10,47,0.0 +12641,60,34,46,0.0 +12641,72,34.8,14,0.0 +12641,38,263.5,24,0.0 +12641,77,13,41,0.0 +12641,68,12.5,11,0.0 +12641,8,40,38,0.0 +12641,57,19.5,49,0.0 +12641,24,4.5,2,0.0 +12641,15,15.5,5,0.0 +12641,45,9.5,11,0.0 +12641,48,12.75,42,0.0 +12641,26,31.23,36,0.0 +12641,32,32,22,0.0 +12641,41,9.65,36,0.0 +12641,50,16.25,37,0.0 +12641,51,53,11,0.0 +12641,17,39,46,0.0 +12641,62,49.3,23,0.0 +12641,5,21.35,44,0.0 +12641,56,38,11,0.0 +12641,67,14,8,0.0 +12641,30,25.89,15,0.0 +12641,73,15,23,0.0 +12641,66,17,8,0.0 +12641,71,21.5,48,0.0 +12641,34,14,31,0.0 +12641,1,18,1,0.0 +12641,28,45.6,38,0.0 +12641,40,18.4,16,0.0 +12641,69,36,45,0.0 +12641,21,10,35,0.0 +12641,64,33.25,38,0.0 +12641,2,19,31,0.0 +12641,25,14,50,0.0 +12641,76,18,10,0.0 +12641,35,18,20,0.0 +12641,6,25,1,0.0 +12641,36,19,10,0.0 +12641,7,30,39,0.0 +12641,33,2.5,5,0.0 +12641,53,32.8,32,0.0 +12641,23,9,31,0.0 +12641,27,43.9,19,0.0 +12641,49,20,26,0.0 +12642,16,17.45,23,0.0 +12642,53,32.8,50,0.0 +12642,76,18,21,0.0 +12642,72,34.8,26,0.0 +12643,53,32.8,49,0.0 +12643,13,6,3,0.0 +12643,6,25,31,0.0 +12643,69,36,27,0.0 +12643,20,81,50,0.0 +12643,11,21,21,0.0 +12643,4,22,36,0.0 +12643,14,23.25,33,0.0 +12643,2,19,22,0.0 +12643,18,62.5,2,0.0 +12643,73,15,2,0.0 +12643,3,10,27,0.0 +12643,25,14,14,0.0 +12644,8,40,12,0.0 +12644,75,7.75,21,0.0 +12644,41,9.65,31,0.0 +12644,66,17,25,0.0 +12644,60,34,42,0.0 +12644,11,21,9,0.0 +12644,14,23.25,41,0.0 +12644,5,21.35,50,0.0 +12644,56,38,38,0.0 +12644,37,26,27,0.0 +12644,57,19.5,27,0.0 +12644,39,18,10,0.0 +12644,32,32,13,0.0 +12644,52,7,9,0.0 +12644,59,55,4,0.0 +12644,20,81,23,0.0 +12644,44,19.45,48,0.0 +12644,45,9.5,20,0.0 +12644,61,28.5,50,0.0 +12644,62,49.3,38,0.0 +12644,67,14,1,0.0 +12644,53,32.8,42,0.0 +12644,34,14,3,0.0 +12644,38,263.5,42,0.0 +12644,51,53,22,0.0 +12644,19,9.2,21,0.0 +12644,4,22,42,0.0 +12644,68,12.5,13,0.0 +12644,10,31,20,0.0 +12644,35,18,4,0.0 +12644,74,10,23,0.0 +12644,54,7.45,17,0.0 +12644,70,15,27,0.0 +12644,76,18,23,0.0 +12644,7,30,28,0.0 +12644,30,25.89,16,0.0 +12644,17,39,37,0.0 +12644,63,43.9,41,0.0 +12644,24,4.5,18,0.0 +12644,58,13.25,31,0.0 +12644,47,9.5,2,0.0 +12644,73,15,26,0.0 +12644,49,20,43,0.0 +12644,65,21.05,47,0.0 +12644,71,21.5,34,0.0 +12644,77,13,21,0.0 +12644,3,10,33,0.0 +12644,36,19,8,0.0 +12644,2,19,8,0.0 +12644,1,18,32,0.0 +12644,27,43.9,3,0.0 +12644,50,16.25,15,0.0 +12644,18,62.5,33,0.0 +12644,15,15.5,16,0.0 +12644,28,45.6,30,0.0 +12644,6,25,8,0.0 +12644,55,24,20,0.0 +12644,29,123.79,34,0.0 +12644,48,12.75,9,0.0 +12645,75,7.75,20,0.0 +12645,38,263.5,10,0.0 +12645,26,31.23,44,0.0 +12645,1,18,15,0.0 +12645,57,19.5,21,0.0 +12645,71,21.5,34,0.0 +12645,69,36,50,0.0 +12645,48,12.75,26,0.0 +12645,17,39,3,0.0 +12645,30,25.89,42,0.0 +12645,21,10,4,0.0 +12645,60,34,22,0.0 +12645,39,18,9,0.0 +12645,59,55,30,0.0 +12645,29,123.79,6,0.0 +12645,31,12.5,10,0.0 +12645,72,34.8,37,0.0 +12645,67,14,38,0.0 +12645,65,21.05,7,0.0 +12645,5,21.35,23,0.0 +12645,51,53,19,0.0 +12645,42,14,47,0.0 +12645,24,4.5,40,0.0 +12645,36,19,24,0.0 +12645,16,17.45,29,0.0 +12645,45,9.5,24,0.0 +12645,62,49.3,27,0.0 +12645,13,6,30,0.0 +12645,64,33.25,29,0.0 +12645,53,32.8,9,0.0 +12645,46,12,10,0.0 +12645,25,14,37,0.0 +12645,32,32,39,0.0 +12645,74,10,49,0.0 +12645,50,16.25,34,0.0 +12645,55,24,25,0.0 +12645,34,14,47,0.0 +12645,23,9,43,0.0 +12645,63,43.9,41,0.0 +12645,4,22,7,0.0 +12645,43,46,45,0.0 +12646,14,23.25,17,0.0 +12646,28,45.6,25,0.0 +12646,48,12.75,47,0.0 +12646,57,19.5,46,0.0 +12646,55,24,38,0.0 +12646,16,17.45,5,0.0 +12646,76,18,11,0.0 +12646,53,32.8,12,0.0 +12646,51,53,33,0.0 +12646,20,81,9,0.0 +12646,13,6,20,0.0 +12646,75,7.75,41,0.0 +12646,32,32,15,0.0 +12646,1,18,45,0.0 +12646,41,9.65,2,0.0 +12646,11,21,6,0.0 +12646,54,7.45,10,0.0 +12646,44,19.45,37,0.0 +12646,30,25.89,3,0.0 +12646,9,97,40,0.0 +12646,50,16.25,24,0.0 +12646,29,123.79,10,0.0 +12646,42,14,20,0.0 +12646,23,9,47,0.0 +12646,52,7,37,0.0 +12646,40,18.4,1,0.0 +12646,62,49.3,12,0.0 +12646,18,62.5,4,0.0 +12646,37,26,43,0.0 +12646,10,31,47,0.0 +12646,46,12,12,0.0 +12646,35,18,34,0.0 +12646,2,19,32,0.0 +12646,36,19,43,0.0 +12646,69,36,32,0.0 +12646,64,33.25,47,0.0 +12646,70,15,47,0.0 +12646,60,34,50,0.0 +12646,3,10,41,0.0 +12646,39,18,34,0.0 +12646,17,39,41,0.0 +12646,63,43.9,40,0.0 +12646,24,4.5,44,0.0 +12646,8,40,37,0.0 +12646,59,55,42,0.0 +12646,26,31.23,50,0.0 +12646,19,9.2,2,0.0 +12646,71,21.5,47,0.0 +12646,61,28.5,50,0.0 +12646,49,20,3,0.0 +12646,56,38,20,0.0 +12646,74,10,20,0.0 +12646,4,22,41,0.0 +12646,27,43.9,1,0.0 +12646,7,30,8,0.0 +12646,67,14,17,0.0 +12646,12,38,11,0.0 +12646,43,46,37,0.0 +12646,73,15,5,0.0 +12646,77,13,33,0.0 +12646,47,9.5,42,0.0 +12647,25,14,9,0.0 +12647,12,38,40,0.0 +12647,3,10,50,0.0 +12647,56,38,14,0.0 +12647,32,32,8,0.0 +12647,44,19.45,41,0.0 +12647,11,21,11,0.0 +12647,57,19.5,36,0.0 +12647,62,49.3,24,0.0 +12647,45,9.5,30,0.0 +12647,48,12.75,21,0.0 +12647,2,19,26,0.0 +12647,63,43.9,40,0.0 +12647,30,25.89,10,0.0 +12647,22,21,34,0.0 +12647,28,45.6,27,0.0 +12647,23,9,35,0.0 +12647,38,263.5,26,0.0 +12647,69,36,33,0.0 +12647,6,25,31,0.0 +12647,10,31,14,0.0 +12647,50,16.25,1,0.0 +12647,64,33.25,42,0.0 +12647,47,9.5,23,0.0 +12647,74,10,28,0.0 +12647,1,18,34,0.0 +12647,19,9.2,19,0.0 +12647,18,62.5,30,0.0 +12647,67,14,24,0.0 +12647,43,46,7,0.0 +12647,59,55,14,0.0 +12647,55,24,33,0.0 +12647,58,13.25,46,0.0 +12647,7,30,9,0.0 +12647,15,15.5,29,0.0 +12647,46,12,16,0.0 +12647,21,10,8,0.0 +12647,65,21.05,8,0.0 +12648,70,15,45,0.0 +12648,62,49.3,4,0.0 +12648,63,43.9,44,0.0 +12648,69,36,40,0.0 +12648,43,46,44,0.0 +12648,55,24,49,0.0 +12648,50,16.25,35,0.0 +12648,25,14,50,0.0 +12648,26,31.23,24,0.0 +12648,48,12.75,19,0.0 +12648,38,263.5,4,0.0 +12648,17,39,46,0.0 +12648,75,7.75,14,0.0 +12648,71,21.5,33,0.0 +12648,77,13,8,0.0 +12648,51,53,2,0.0 +12648,18,62.5,9,0.0 +12648,73,15,42,0.0 +12648,31,12.5,42,0.0 +12648,32,32,24,0.0 +12648,46,12,39,0.0 +12648,14,23.25,10,0.0 +12648,27,43.9,32,0.0 +12648,72,34.8,13,0.0 +12648,56,38,30,0.0 +12648,66,17,28,0.0 +12648,59,55,28,0.0 +12648,24,4.5,33,0.0 +12648,76,18,7,0.0 +12648,53,32.8,46,0.0 +12648,30,25.89,32,0.0 +12648,6,25,48,0.0 +12648,33,2.5,36,0.0 +12648,21,10,4,0.0 +12648,44,19.45,25,0.0 +12648,2,19,12,0.0 +12648,5,21.35,20,0.0 +12648,40,18.4,20,0.0 +12648,7,30,30,0.0 +12648,37,26,24,0.0 +12648,54,7.45,28,0.0 +12648,13,6,3,0.0 +12648,8,40,26,0.0 +12648,19,9.2,11,0.0 +12648,16,17.45,19,0.0 +12648,49,20,11,0.0 +12648,4,22,38,0.0 +12648,23,9,22,0.0 +12648,61,28.5,31,0.0 +12648,28,45.6,36,0.0 +12648,58,13.25,3,0.0 +12648,39,18,16,0.0 +12648,57,19.5,27,0.0 +12648,35,18,11,0.0 +12648,45,9.5,6,0.0 +12648,67,14,2,0.0 +12648,9,97,13,0.0 +12648,12,38,36,0.0 +12648,41,9.65,5,0.0 +12648,15,15.5,6,0.0 +12648,64,33.25,37,0.0 +12648,47,9.5,21,0.0 +12648,68,12.5,1,0.0 +12648,20,81,11,0.0 +12648,74,10,1,0.0 +12648,22,21,46,0.0 +12648,52,7,37,0.0 +12648,34,14,49,0.0 +12648,65,21.05,26,0.0 +12648,11,21,15,0.0 +12648,10,31,21,0.0 +12648,1,18,25,0.0 +12649,38,263.5,30,0.0 +12649,75,7.75,49,0.0 +12649,40,18.4,8,0.0 +12649,71,21.5,12,0.0 +12649,45,9.5,7,0.0 +12649,14,23.25,35,0.0 +12649,8,40,13,0.0 +12649,59,55,25,0.0 +12649,25,14,10,0.0 +12649,76,18,40,0.0 +12649,5,21.35,50,0.0 +12649,72,34.8,21,0.0 +12649,47,9.5,25,0.0 +12649,67,14,39,0.0 +12649,46,12,33,0.0 +12649,49,20,30,0.0 +12649,16,17.45,47,0.0 +12649,61,28.5,9,0.0 +12649,3,10,36,0.0 +12649,35,18,12,0.0 +12649,36,19,45,0.0 +12649,62,49.3,38,0.0 +12649,9,97,35,0.0 +12649,1,18,22,0.0 +12649,69,36,49,0.0 +12649,11,21,40,0.0 +12649,57,19.5,38,0.0 +12649,33,2.5,29,0.0 +12649,70,15,1,0.0 +12649,29,123.79,7,0.0 +12649,6,25,33,0.0 +12649,77,13,6,0.0 +12649,2,19,47,0.0 +12649,27,43.9,25,0.0 +12649,41,9.65,12,0.0 +12649,28,45.6,13,0.0 +12649,63,43.9,2,0.0 +12649,20,81,24,0.0 +12649,43,46,11,0.0 +12649,73,15,44,0.0 +12649,60,34,3,0.0 +12649,7,30,16,0.0 +12649,37,26,50,0.0 +12649,21,10,5,0.0 +12649,58,13.25,20,0.0 +12649,53,32.8,17,0.0 +12649,13,6,48,0.0 +12649,52,7,47,0.0 +12649,55,24,21,0.0 +12649,68,12.5,25,0.0 +12649,24,4.5,21,0.0 +12649,32,32,12,0.0 +12649,44,19.45,7,0.0 +12649,18,62.5,28,0.0 +12649,34,14,29,0.0 +12650,63,43.9,20,0.0 +12650,46,12,7,0.0 +12650,16,17.45,23,0.0 +12650,55,24,39,0.0 +12650,9,97,31,0.0 +12650,37,26,21,0.0 +12650,56,38,18,0.0 +12650,32,32,2,0.0 +12650,47,9.5,10,0.0 +12650,68,12.5,19,0.0 +12650,44,19.45,44,0.0 +12650,5,21.35,48,0.0 +12650,40,18.4,47,0.0 +12650,6,25,2,0.0 +12650,45,9.5,25,0.0 +12650,2,19,10,0.0 +12650,1,18,30,0.0 +12650,59,55,23,0.0 +12650,19,9.2,4,0.0 +12650,4,22,33,0.0 +12650,34,14,36,0.0 +12650,38,263.5,40,0.0 +12650,29,123.79,7,0.0 +12650,17,39,24,0.0 +12650,70,15,32,0.0 +12650,3,10,32,0.0 +12650,25,14,4,0.0 +12650,8,40,17,0.0 +12650,7,30,22,0.0 +12650,36,19,20,0.0 +12650,14,23.25,48,0.0 +12650,51,53,44,0.0 +12650,71,21.5,44,0.0 +12650,42,14,29,0.0 +12650,26,31.23,38,0.0 +12650,22,21,12,0.0 +12650,35,18,30,0.0 +12650,67,14,50,0.0 +12650,73,15,25,0.0 +12650,11,21,9,0.0 +12650,24,4.5,6,0.0 +12650,53,32.8,28,0.0 +12650,77,13,46,0.0 +12650,64,33.25,3,0.0 +12650,12,38,31,0.0 +12650,65,21.05,29,0.0 +12650,54,7.45,29,0.0 +12650,13,6,29,0.0 +12650,27,43.9,36,0.0 +12650,18,62.5,25,0.0 +12650,49,20,49,0.0 +12650,20,81,19,0.0 +12650,41,9.65,3,0.0 +12650,58,13.25,47,0.0 +12650,43,46,19,0.0 +12650,52,7,14,0.0 +12651,75,7.75,9,0.0 +12651,60,34,12,0.0 +12651,34,14,48,0.0 +12651,76,18,21,0.0 +12651,26,31.23,48,0.0 +12651,77,13,23,0.0 +12651,14,23.25,34,0.0 +12651,32,32,5,0.0 +12651,31,12.5,39,0.0 +12651,35,18,23,0.0 +12651,4,22,10,0.0 +12651,68,12.5,9,0.0 +12651,2,19,18,0.0 +12651,58,13.25,7,0.0 +12651,25,14,10,0.0 +12651,17,39,44,0.0 +12651,13,6,2,0.0 +12651,43,46,8,0.0 +12651,42,14,39,0.0 +12651,1,18,41,0.0 +12651,8,40,35,0.0 +12651,61,28.5,34,0.0 +12651,64,33.25,47,0.0 +12651,52,7,41,0.0 +12651,24,4.5,27,0.0 +12651,50,16.25,42,0.0 +12651,38,263.5,5,0.0 +12651,7,30,27,0.0 +12651,11,21,47,0.0 +12651,48,12.75,9,0.0 +12651,49,20,17,0.0 +12651,40,18.4,48,0.0 +12651,54,7.45,32,0.0 +12651,19,9.2,32,0.0 +12652,17,39,21,0.0 +12652,54,7.45,22,0.0 +12652,47,9.5,35,0.0 +12652,38,263.5,29,0.0 +12652,6,25,22,0.0 +12652,14,23.25,38,0.0 +12652,64,33.25,21,0.0 +12652,77,13,7,0.0 +12652,63,43.9,4,0.0 +12652,61,28.5,26,0.0 +12652,32,32,12,0.0 +12652,28,45.6,21,0.0 +12652,30,25.89,6,0.0 +12652,69,36,27,0.0 +12652,20,81,28,0.0 +12652,3,10,1,0.0 +12652,21,10,40,0.0 +12652,76,18,33,0.0 +12652,50,16.25,25,0.0 +12652,67,14,19,0.0 +12652,53,32.8,10,0.0 +12652,44,19.45,44,0.0 +12652,42,14,19,0.0 +12652,8,40,1,0.0 +12652,39,18,19,0.0 +12652,16,17.45,13,0.0 +12652,43,46,34,0.0 +12652,37,26,5,0.0 +12652,66,17,29,0.0 +12652,59,55,42,0.0 +12652,57,19.5,7,0.0 +12652,15,15.5,40,0.0 +12652,75,7.75,16,0.0 +12652,60,34,28,0.0 +12652,9,97,39,0.0 +12652,10,31,30,0.0 +12652,35,18,17,0.0 +12652,31,12.5,27,0.0 +12652,25,14,23,0.0 +12652,36,19,40,0.0 +12652,13,6,5,0.0 +12652,5,21.35,49,0.0 +12652,46,12,35,0.0 +12652,33,2.5,29,0.0 +12652,70,15,12,0.0 +12652,74,10,46,0.0 +12652,56,38,15,0.0 +12652,45,9.5,9,0.0 +12652,72,34.8,11,0.0 +12652,27,43.9,40,0.0 +12652,12,38,45,0.0 +12652,19,9.2,45,0.0 +12652,11,21,28,0.0 +12652,41,9.65,12,0.0 +12652,7,30,8,0.0 +12652,23,9,42,0.0 +12652,26,31.23,32,0.0 +12652,24,4.5,34,0.0 +12652,49,20,29,0.0 +12652,40,18.4,43,0.0 +12652,22,21,35,0.0 +12653,29,123.79,24,0.0 +12653,64,33.25,6,0.0 +12653,57,19.5,37,0.0 +12653,25,14,48,0.0 +12653,68,12.5,38,0.0 +12653,31,12.5,25,0.0 +12653,21,10,50,0.0 +12653,46,12,13,0.0 +12653,22,21,35,0.0 +12653,3,10,5,0.0 +12653,40,18.4,49,0.0 +12653,26,31.23,31,0.0 +12653,7,30,44,0.0 +12653,18,62.5,6,0.0 +12653,76,18,11,0.0 +12653,5,21.35,46,0.0 +12653,51,53,48,0.0 +12653,69,36,35,0.0 +12653,52,7,47,0.0 +12653,77,13,14,0.0 +12653,75,7.75,18,0.0 +12653,59,55,5,0.0 +12653,48,12.75,42,0.0 +12653,58,13.25,15,0.0 +12653,15,15.5,23,0.0 +12653,9,97,6,0.0 +12653,41,9.65,4,0.0 +12653,39,18,47,0.0 +12653,30,25.89,3,0.0 +12653,8,40,23,0.0 +12653,60,34,35,0.0 +12653,37,26,7,0.0 +12653,65,21.05,13,0.0 +12653,33,2.5,45,0.0 +12653,44,19.45,30,0.0 +12653,23,9,32,0.0 +12653,34,14,26,0.0 +12654,6,25,40,0.0 +12654,73,15,40,0.0 +12654,70,15,24,0.0 +12654,14,23.25,24,0.0 +12654,2,19,8,0.0 +12654,69,36,5,0.0 +12654,49,20,28,0.0 +12654,16,17.45,30,0.0 +12654,31,12.5,18,0.0 +12654,51,53,47,0.0 +12654,58,13.25,10,0.0 +12654,66,17,10,0.0 +12654,53,32.8,35,0.0 +12654,33,2.5,50,0.0 +12654,8,40,8,0.0 +12654,18,62.5,36,0.0 +12654,36,19,1,0.0 +12654,17,39,6,0.0 +12655,12,38,41,0.0 +12655,69,36,6,0.0 +12655,33,2.5,41,0.0 +12655,43,46,6,0.0 +12655,35,18,41,0.0 +12655,25,14,1,0.0 +12655,7,30,38,0.0 +12655,75,7.75,31,0.0 +12655,28,45.6,23,0.0 +12655,41,9.65,13,0.0 +12655,24,4.5,11,0.0 +12655,55,24,26,0.0 +12655,77,13,36,0.0 +12655,4,22,21,0.0 +12655,48,12.75,17,0.0 +12655,52,7,50,0.0 +12655,22,21,29,0.0 +12655,67,14,12,0.0 +12655,15,15.5,38,0.0 +12655,59,55,26,0.0 +12655,38,263.5,37,0.0 +12655,76,18,1,0.0 +12656,65,21.05,18,0.0 +12656,8,40,45,0.0 +12656,29,123.79,16,0.0 +12656,17,39,17,0.0 +12656,9,97,15,0.0 +12656,50,16.25,42,0.0 +12656,14,23.25,11,0.0 +12656,74,10,40,0.0 +12656,52,7,5,0.0 +12656,35,18,16,0.0 +12656,66,17,23,0.0 +12656,47,9.5,29,0.0 +12656,36,19,10,0.0 +12656,62,49.3,16,0.0 +12656,43,46,30,0.0 +12656,63,43.9,8,0.0 +12656,10,31,11,0.0 +12656,19,9.2,10,0.0 +12656,46,12,11,0.0 +12656,60,34,6,0.0 +12656,13,6,39,0.0 +12656,25,14,4,0.0 +12656,12,38,25,0.0 +12656,38,263.5,16,0.0 +12656,33,2.5,18,0.0 +12656,61,28.5,25,0.0 +12656,27,43.9,17,0.0 +12656,16,17.45,30,0.0 +12656,70,15,29,0.0 +12656,42,14,17,0.0 +12656,59,55,50,0.0 +12656,24,4.5,36,0.0 +12656,67,14,45,0.0 +12656,72,34.8,10,0.0 +12656,32,32,15,0.0 +12656,53,32.8,14,0.0 +12656,1,18,10,0.0 +12656,45,9.5,25,0.0 +12656,51,53,26,0.0 +12656,21,10,38,0.0 +12656,48,12.75,9,0.0 +12656,49,20,35,0.0 +12656,40,18.4,2,0.0 +12656,77,13,6,0.0 +12656,34,14,8,0.0 +12656,55,24,47,0.0 +12656,30,25.89,12,0.0 +12656,39,18,49,0.0 +12656,18,62.5,2,0.0 +12656,73,15,50,0.0 +12656,6,25,44,0.0 +12656,44,19.45,43,0.0 +12656,76,18,9,0.0 +12656,75,7.75,9,0.0 +12656,68,12.5,43,0.0 +12656,7,30,37,0.0 +12656,54,7.45,46,0.0 +12656,31,12.5,15,0.0 +12656,11,21,34,0.0 +12656,64,33.25,16,0.0 +12656,23,9,34,0.0 +12656,28,45.6,6,0.0 +12656,3,10,47,0.0 +12656,41,9.65,17,0.0 +12656,20,81,40,0.0 +12656,71,21.5,2,0.0 +12656,37,26,11,0.0 +12656,22,21,14,0.0 +12656,58,13.25,43,0.0 +12656,5,21.35,39,0.0 +12656,69,36,27,0.0 +12656,2,19,29,0.0 +12657,71,21.5,19,0.0 +12657,69,36,21,0.0 +12657,1,18,21,0.0 +12657,42,14,26,0.0 +12657,31,12.5,29,0.0 +12657,36,19,39,0.0 +12657,35,18,47,0.0 +12657,17,39,43,0.0 +12657,67,14,17,0.0 +12657,38,263.5,13,0.0 +12657,13,6,38,0.0 +12657,34,14,39,0.0 +12657,5,21.35,44,0.0 +12657,72,34.8,36,0.0 +12657,46,12,32,0.0 +12657,68,12.5,4,0.0 +12657,27,43.9,5,0.0 +12657,32,32,36,0.0 +12657,59,55,46,0.0 +12657,49,20,7,0.0 +12657,61,28.5,40,0.0 +12657,29,123.79,27,0.0 +12657,14,23.25,40,0.0 +12657,66,17,39,0.0 +12658,53,32.8,11,0.0 +12658,73,15,3,0.0 +12658,39,18,21,0.0 +12658,17,39,45,0.0 +12658,58,13.25,16,0.0 +12658,61,28.5,17,0.0 +12658,18,62.5,19,0.0 +12658,68,12.5,24,0.0 +12658,36,19,18,0.0 +12658,75,7.75,13,0.0 +12658,5,21.35,49,0.0 +12658,2,19,19,0.0 +12658,3,10,15,0.0 +12658,6,25,19,0.0 +12658,12,38,14,0.0 +12658,64,33.25,10,0.0 +12658,14,23.25,4,0.0 +12658,4,22,6,0.0 +12658,42,14,48,0.0 +12658,43,46,44,0.0 +12658,32,32,45,0.0 +12658,60,34,42,0.0 +12658,7,30,5,0.0 +12658,67,14,9,0.0 +12658,35,18,14,0.0 +12658,54,7.45,23,0.0 +12658,11,21,49,0.0 +12658,56,38,43,0.0 +12658,57,19.5,45,0.0 +12658,25,14,41,0.0 +12658,16,17.45,35,0.0 +12658,28,45.6,32,0.0 +12659,33,2.5,34,0.0 +12659,2,19,19,0.0 +12659,37,26,2,0.0 +12659,30,25.89,2,0.0 +12659,6,25,38,0.0 +12659,52,7,3,0.0 +12659,44,19.45,11,0.0 +12659,72,34.8,13,0.0 +12659,49,20,23,0.0 +12659,28,45.6,16,0.0 +12659,20,81,26,0.0 +12659,12,38,15,0.0 +12659,55,24,23,0.0 +12659,4,22,35,0.0 +12659,18,62.5,49,0.0 +12659,56,38,2,0.0 +12659,23,9,15,0.0 +12659,19,9.2,26,0.0 +12659,46,12,10,0.0 +12659,58,13.25,29,0.0 +12659,21,10,49,0.0 +12659,15,15.5,50,0.0 +12659,71,21.5,37,0.0 +12659,63,43.9,11,0.0 +12659,11,21,24,0.0 +12659,45,9.5,4,0.0 +12659,54,7.45,7,0.0 +12659,68,12.5,34,0.0 +12659,73,15,36,0.0 +12659,9,97,47,0.0 +12659,69,36,8,0.0 +12659,8,40,27,0.0 +12659,66,17,44,0.0 +12659,3,10,21,0.0 +12659,17,39,49,0.0 +12659,42,14,14,0.0 +12659,14,23.25,50,0.0 +12659,61,28.5,32,0.0 +12659,60,34,42,0.0 +12659,36,19,50,0.0 +12659,40,18.4,28,0.0 +12659,70,15,17,0.0 +12659,38,263.5,13,0.0 +12659,13,6,16,0.0 +12659,32,32,24,0.0 +12659,26,31.23,32,0.0 +12659,74,10,5,0.0 +12659,22,21,33,0.0 +12659,39,18,37,0.0 +12659,41,9.65,45,0.0 +12659,75,7.75,35,0.0 +12659,5,21.35,37,0.0 +12659,50,16.25,29,0.0 +12659,53,32.8,45,0.0 +12659,29,123.79,27,0.0 +12659,25,14,8,0.0 +12659,16,17.45,11,0.0 +12659,76,18,10,0.0 +12659,48,12.75,34,0.0 +12659,77,13,28,0.0 +12659,47,9.5,2,0.0 +12659,35,18,7,0.0 +12659,10,31,1,0.0 +12660,38,263.5,38,0.0 +12660,35,18,42,0.0 +12660,25,14,18,0.0 +12660,34,14,32,0.0 +12660,44,19.45,28,0.0 +12660,73,15,19,0.0 +12660,1,18,30,0.0 +12660,7,30,47,0.0 +12660,30,25.89,36,0.0 +12660,21,10,34,0.0 +12660,2,19,9,0.0 +12660,61,28.5,16,0.0 +12660,76,18,1,0.0 +12660,36,19,22,0.0 +12660,64,33.25,40,0.0 +12660,23,9,46,0.0 +12660,65,21.05,16,0.0 +12660,13,6,30,0.0 +12660,56,38,46,0.0 +12660,39,18,45,0.0 +12660,12,38,48,0.0 +12660,51,53,5,0.0 +12660,60,34,15,0.0 +12660,55,24,40,0.0 +12660,74,10,44,0.0 +12660,71,21.5,25,0.0 +12660,67,14,14,0.0 +12660,77,13,50,0.0 +12661,65,21.05,44,0.0 +12661,64,33.25,8,0.0 +12661,12,38,4,0.0 +12661,17,39,7,0.0 +12661,2,19,21,0.0 +12661,16,17.45,15,0.0 +12661,23,9,50,0.0 +12661,41,9.65,1,0.0 +12661,51,53,46,0.0 +12661,37,26,29,0.0 +12661,48,12.75,33,0.0 +12661,32,32,45,0.0 +12661,7,30,9,0.0 +12661,19,9.2,4,0.0 +12661,13,6,29,0.0 +12661,74,10,45,0.0 +12661,67,14,37,0.0 +12661,71,21.5,8,0.0 +12661,4,22,22,0.0 +12661,49,20,21,0.0 +12661,63,43.9,43,0.0 +12662,46,12,19,0.0 +12662,15,15.5,39,0.0 +12662,41,9.65,21,0.0 +12662,14,23.25,3,0.0 +12662,30,25.89,37,0.0 +12662,49,20,26,0.0 +12662,10,31,29,0.0 +12662,50,16.25,19,0.0 +12662,52,7,2,0.0 +12662,1,18,45,0.0 +12662,45,9.5,45,0.0 +12662,54,7.45,18,0.0 +12662,36,19,11,0.0 +12662,8,40,15,0.0 +12662,38,263.5,9,0.0 +12662,51,53,27,0.0 +12662,37,26,12,0.0 +12662,11,21,5,0.0 +12662,56,38,42,0.0 +12662,70,15,44,0.0 +12662,33,2.5,36,0.0 +12662,21,10,42,0.0 +12662,64,33.25,39,0.0 +12662,62,49.3,16,0.0 +12662,48,12.75,41,0.0 +12662,53,32.8,24,0.0 +12662,32,32,22,0.0 +12662,74,10,18,0.0 +12662,67,14,1,0.0 +12662,29,123.79,13,0.0 +12662,22,21,19,0.0 +12662,43,46,49,0.0 +12662,9,97,28,0.0 +12662,40,18.4,39,0.0 +12662,73,15,11,0.0 +12662,18,62.5,2,0.0 +12662,76,18,46,0.0 +12662,72,34.8,3,0.0 +12662,77,13,12,0.0 +12662,20,81,29,0.0 +12662,31,12.5,1,0.0 +12662,24,4.5,36,0.0 +12662,68,12.5,2,0.0 +12662,39,18,36,0.0 +12663,64,33.25,13,0.0 +12663,66,17,1,0.0 +12663,44,19.45,41,0.0 +12663,3,10,11,0.0 +12663,18,62.5,49,0.0 +12664,36,19,6,0.0 +12664,8,40,38,0.0 +12664,27,43.9,9,0.0 +12665,6,25,26,0.0 +12665,36,19,27,0.0 +12665,73,15,8,0.0 +12665,75,7.75,15,0.0 +12666,64,33.25,39,0.0 +12666,13,6,41,0.0 +12666,47,9.5,28,0.0 +12666,52,7,48,0.0 +12666,30,25.89,46,0.0 +12666,55,24,9,0.0 +12666,51,53,18,0.0 +12666,73,15,22,0.0 +12666,31,12.5,50,0.0 +12666,27,43.9,30,0.0 +12666,41,9.65,6,0.0 +12666,11,21,20,0.0 +12666,56,38,8,0.0 +12666,66,17,50,0.0 +12666,8,40,20,0.0 +12666,14,23.25,10,0.0 +12666,32,32,21,0.0 +12666,23,9,13,0.0 +12666,39,18,10,0.0 +12666,1,18,10,0.0 +12666,37,26,38,0.0 +12666,2,19,32,0.0 +12666,40,18.4,18,0.0 +12666,42,14,22,0.0 +12666,65,21.05,26,0.0 +12666,20,81,11,0.0 +12666,18,62.5,24,0.0 +12666,10,31,14,0.0 +12666,24,4.5,16,0.0 +12666,34,14,37,0.0 +12666,7,30,37,0.0 +12667,50,16.25,38,0.0 +12667,43,46,46,0.0 +12667,7,30,34,0.0 +12667,19,9.2,20,0.0 +12667,62,49.3,46,0.0 +12667,42,14,27,0.0 +12667,35,18,6,0.0 +12667,17,39,5,0.0 +12667,3,10,46,0.0 +12667,55,24,32,0.0 +12667,61,28.5,7,0.0 +12667,14,23.25,43,0.0 +12667,1,18,23,0.0 +12667,16,17.45,30,0.0 +12667,11,21,25,0.0 +12667,37,26,19,0.0 +12667,75,7.75,4,0.0 +12667,10,31,6,0.0 +12667,26,31.23,43,0.0 +12667,56,38,49,0.0 +12667,77,13,10,0.0 +12668,36,19,3,0.0 +12668,23,9,18,0.0 +12668,13,6,12,0.0 +12668,6,25,26,0.0 +12668,2,19,49,0.0 +12668,30,25.89,49,0.0 +12668,53,32.8,27,0.0 +12668,34,14,21,0.0 +12668,72,34.8,20,0.0 +12668,20,81,18,0.0 +12668,75,7.75,27,0.0 +12668,16,17.45,24,0.0 +12668,41,9.65,40,0.0 +12668,22,21,36,0.0 +12668,15,15.5,9,0.0 +12668,10,31,41,0.0 +12668,58,13.25,17,0.0 +12668,49,20,21,0.0 +12668,51,53,26,0.0 +12668,9,97,1,0.0 +12668,67,14,26,0.0 +12668,45,9.5,19,0.0 +12668,76,18,1,0.0 +12668,11,21,20,0.0 +12668,1,18,34,0.0 +12668,29,123.79,49,0.0 +12668,40,18.4,13,0.0 +12668,14,23.25,35,0.0 +12668,12,38,37,0.0 +12668,17,39,35,0.0 +12668,42,14,31,0.0 +12668,64,33.25,33,0.0 +12668,24,4.5,7,0.0 +12668,27,43.9,21,0.0 +12668,37,26,14,0.0 +12668,7,30,11,0.0 +12668,71,21.5,23,0.0 +12668,18,62.5,24,0.0 +12668,63,43.9,48,0.0 +12668,59,55,9,0.0 +12669,11,21,41,0.0 +12669,8,40,22,0.0 +12669,46,12,45,0.0 +12669,7,30,38,0.0 +12669,52,7,8,0.0 +12669,39,18,9,0.0 +12669,62,49.3,43,0.0 +12669,17,39,46,0.0 +12669,36,19,31,0.0 +12669,19,9.2,2,0.0 +12669,41,9.65,10,0.0 +12669,44,19.45,13,0.0 +12669,6,25,28,0.0 +12669,1,18,5,0.0 +12669,49,20,28,0.0 +12669,27,43.9,2,0.0 +12669,22,21,18,0.0 +12669,42,14,24,0.0 +12669,48,12.75,40,0.0 +12669,55,24,5,0.0 +12669,13,6,1,0.0 +12669,18,62.5,15,0.0 +12669,2,19,21,0.0 +12669,66,17,28,0.0 +12669,56,38,32,0.0 +12669,31,12.5,20,0.0 +12669,14,23.25,18,0.0 +12669,21,10,12,0.0 +12669,45,9.5,8,0.0 +12669,10,31,39,0.0 +12669,30,25.89,45,0.0 +12669,25,14,30,0.0 +12669,23,9,50,0.0 +12669,33,2.5,9,0.0 +12669,60,34,22,0.0 +12669,9,97,1,0.0 +12669,32,32,13,0.0 +12669,47,9.5,16,0.0 +12669,16,17.45,38,0.0 +12669,29,123.79,48,0.0 +12669,43,46,47,0.0 +12669,57,19.5,35,0.0 +12669,20,81,5,0.0 +12669,5,21.35,39,0.0 +12669,63,43.9,19,0.0 +12669,26,31.23,21,0.0 +12669,65,21.05,15,0.0 +12669,71,21.5,28,0.0 +12669,28,45.6,12,0.0 +12669,76,18,8,0.0 +12669,34,14,36,0.0 +12669,68,12.5,26,0.0 +12669,15,15.5,25,0.0 +12670,27,43.9,46,0.0 +12670,41,9.65,20,0.0 +12670,34,14,5,0.0 +12670,47,9.5,25,0.0 +12670,65,21.05,30,0.0 +12670,17,39,4,0.0 +12670,29,123.79,29,0.0 +12670,71,21.5,48,0.0 +12671,71,21.5,41,0.0 +12671,67,14,37,0.0 +12671,13,6,10,0.0 +12671,43,46,14,0.0 +12671,7,30,34,0.0 +12671,2,19,7,0.0 +12671,11,21,14,0.0 +12671,3,10,40,0.0 +12671,41,9.65,42,0.0 +12671,57,19.5,36,0.0 +12671,31,12.5,4,0.0 +12671,42,14,31,0.0 +12671,37,26,14,0.0 +12671,77,13,41,0.0 +12671,60,34,1,0.0 +12671,44,19.45,25,0.0 +12672,39,18,22,0.0 +12672,23,9,29,0.0 +12672,67,14,15,0.0 +12672,1,18,29,0.0 +12672,76,18,23,0.0 +12672,73,15,11,0.0 +12672,62,49.3,38,0.0 +12672,66,17,9,0.0 +12672,13,6,22,0.0 +12672,64,33.25,47,0.0 +12672,51,53,48,0.0 +12672,34,14,26,0.0 +12672,33,2.5,24,0.0 +12672,27,43.9,33,0.0 +12672,61,28.5,22,0.0 +12672,71,21.5,36,0.0 +12672,26,31.23,3,0.0 +12672,65,21.05,26,0.0 +12672,63,43.9,41,0.0 +12672,17,39,25,0.0 +12672,57,19.5,47,0.0 +12672,70,15,17,0.0 +12672,75,7.75,10,0.0 +12672,36,19,19,0.0 +12672,19,9.2,22,0.0 +12672,8,40,42,0.0 +12672,28,45.6,44,0.0 +12672,44,19.45,17,0.0 +12672,72,34.8,25,0.0 +12672,35,18,23,0.0 +12672,30,25.89,21,0.0 +12672,48,12.75,46,0.0 +12672,25,14,15,0.0 +12672,21,10,24,0.0 +12672,74,10,21,0.0 +12672,52,7,50,0.0 +12672,15,15.5,22,0.0 +12672,59,55,7,0.0 +12672,50,16.25,24,0.0 +12672,22,21,49,0.0 +12672,55,24,18,0.0 +12672,16,17.45,29,0.0 +12672,38,263.5,38,0.0 +12672,56,38,8,0.0 +12672,12,38,42,0.0 +12672,68,12.5,34,0.0 +12672,47,9.5,10,0.0 +12672,45,9.5,15,0.0 +12672,42,14,39,0.0 +12672,46,12,16,0.0 +12672,2,19,19,0.0 +12672,20,81,45,0.0 +12672,3,10,29,0.0 +12672,6,25,13,0.0 +12672,54,7.45,16,0.0 +12672,43,46,34,0.0 +12672,18,62.5,41,0.0 +12672,41,9.65,15,0.0 +12672,53,32.8,48,0.0 +12672,77,13,12,0.0 +12672,40,18.4,39,0.0 +12672,37,26,49,0.0 +12672,49,20,43,0.0 +12672,60,34,20,0.0 +12672,24,4.5,38,0.0 +12672,32,32,22,0.0 +12672,14,23.25,21,0.0 +12672,58,13.25,3,0.0 +12672,31,12.5,35,0.0 +12672,7,30,17,0.0 +12672,9,97,16,0.0 +12673,73,15,10,0.0 +12673,42,14,42,0.0 +12673,49,20,26,0.0 +12673,69,36,10,0.0 +12673,61,28.5,4,0.0 +12673,37,26,38,0.0 +12673,23,9,3,0.0 +12673,56,38,49,0.0 +12673,52,7,3,0.0 +12673,24,4.5,10,0.0 +12673,67,14,25,0.0 +12673,30,25.89,50,0.0 +12673,41,9.65,21,0.0 +12673,45,9.5,15,0.0 +12673,19,9.2,42,0.0 +12673,26,31.23,42,0.0 +12673,65,21.05,19,0.0 +12673,40,18.4,13,0.0 +12673,18,62.5,16,0.0 +12673,7,30,19,0.0 +12673,55,24,44,0.0 +12674,44,19.45,20,0.0 +12674,75,7.75,40,0.0 +12674,21,10,18,0.0 +12674,73,15,19,0.0 +12674,26,31.23,20,0.0 +12674,76,18,31,0.0 +12674,38,263.5,46,0.0 +12674,37,26,24,0.0 +12674,69,36,5,0.0 +12674,67,14,34,0.0 +12674,65,21.05,16,0.0 +12674,7,30,25,0.0 +12674,15,15.5,14,0.0 +12674,45,9.5,30,0.0 +12674,39,18,36,0.0 +12674,17,39,42,0.0 +12674,77,13,37,0.0 +12674,28,45.6,36,0.0 +12674,51,53,24,0.0 +12674,29,123.79,5,0.0 +12674,5,21.35,30,0.0 +12674,62,49.3,17,0.0 +12674,18,62.5,7,0.0 +12674,3,10,15,0.0 +12674,61,28.5,24,0.0 +12674,55,24,44,0.0 +12674,64,33.25,25,0.0 +12674,25,14,46,0.0 +12674,30,25.89,45,0.0 +12674,1,18,11,0.0 +12674,68,12.5,33,0.0 +12674,48,12.75,17,0.0 +12674,35,18,19,0.0 +12674,50,16.25,35,0.0 +12674,47,9.5,6,0.0 +12674,14,23.25,44,0.0 +12674,59,55,50,0.0 +12674,43,46,29,0.0 +12674,53,32.8,13,0.0 +12674,40,18.4,37,0.0 +12674,57,19.5,49,0.0 +12674,72,34.8,21,0.0 +12674,34,14,29,0.0 +12674,13,6,46,0.0 +12675,32,32,32,0.0 +12675,9,97,1,0.0 +12675,46,12,40,0.0 +12675,28,45.6,1,0.0 +12675,65,21.05,27,0.0 +12675,57,19.5,2,0.0 +12675,76,18,47,0.0 +12675,39,18,2,0.0 +12675,23,9,29,0.0 +12675,62,49.3,32,0.0 +12675,49,20,5,0.0 +12675,6,25,5,0.0 +12675,26,31.23,17,0.0 +12675,33,2.5,26,0.0 +12675,60,34,4,0.0 +12675,50,16.25,31,0.0 +12675,44,19.45,48,0.0 +12675,48,12.75,38,0.0 +12675,38,263.5,10,0.0 +12675,42,14,15,0.0 +12675,7,30,32,0.0 +12675,31,12.5,9,0.0 +12675,8,40,21,0.0 +12675,53,32.8,13,0.0 +12675,13,6,1,0.0 +12675,20,81,20,0.0 +12675,45,9.5,47,0.0 +12675,55,24,45,0.0 +12675,40,18.4,13,0.0 +12675,12,38,32,0.0 +12675,15,15.5,16,0.0 +12675,69,36,5,0.0 +12675,66,17,48,0.0 +12675,58,13.25,22,0.0 +12675,59,55,3,0.0 +12675,17,39,20,0.0 +12675,34,14,41,0.0 +12675,67,14,7,0.0 +12675,3,10,8,0.0 +12675,30,25.89,21,0.0 +12675,70,15,5,0.0 +12675,73,15,35,0.0 +12675,63,43.9,34,0.0 +12675,56,38,19,0.0 +12675,35,18,13,0.0 +12675,43,46,15,0.0 +12675,27,43.9,21,0.0 +12675,61,28.5,12,0.0 +12675,74,10,6,0.0 +12675,68,12.5,46,0.0 +12675,54,7.45,24,0.0 +12675,19,9.2,21,0.0 +12675,47,9.5,2,0.0 +12675,2,19,45,0.0 +12675,41,9.65,19,0.0 +12675,1,18,49,0.0 +12675,10,31,9,0.0 +12675,4,22,14,0.0 +12675,36,19,49,0.0 +12675,22,21,2,0.0 +12675,18,62.5,31,0.0 +12675,51,53,31,0.0 +12675,64,33.25,41,0.0 +12675,52,7,28,0.0 +12675,75,7.75,19,0.0 +12676,16,17.45,48,0.0 +12676,1,18,6,0.0 +12676,72,34.8,4,0.0 +12676,45,9.5,33,0.0 +12676,49,20,4,0.0 +12676,43,46,10,0.0 +12676,46,12,8,0.0 +12676,76,18,20,0.0 +12676,47,9.5,27,0.0 +12676,5,21.35,21,0.0 +12676,68,12.5,44,0.0 +12676,66,17,9,0.0 +12676,64,33.25,22,0.0 +12676,34,14,31,0.0 +12676,37,26,14,0.0 +12676,35,18,19,0.0 +12676,14,23.25,8,0.0 +12676,33,2.5,1,0.0 +12676,77,13,30,0.0 +12676,32,32,32,0.0 +12676,56,38,44,0.0 +12676,53,32.8,47,0.0 +12676,2,19,14,0.0 +12677,56,38,14,0.0 +12677,40,18.4,40,0.0 +12677,16,17.45,3,0.0 +12677,31,12.5,19,0.0 +12677,18,62.5,35,0.0 +12677,10,31,12,0.0 +12677,64,33.25,1,0.0 +12677,2,19,42,0.0 +12677,5,21.35,30,0.0 +12677,25,14,33,0.0 +12678,38,263.5,40,0.0 +12678,57,19.5,11,0.0 +12678,73,15,25,0.0 +12678,74,10,26,0.0 +12678,1,18,11,0.0 +12678,59,55,47,0.0 +12678,77,13,19,0.0 +12678,68,12.5,36,0.0 +12678,39,18,25,0.0 +12678,8,40,1,0.0 +12678,6,25,7,0.0 +12678,67,14,35,0.0 +12678,17,39,37,0.0 +12678,36,19,43,0.0 +12678,7,30,21,0.0 +12678,71,21.5,28,0.0 +12678,26,31.23,47,0.0 +12678,9,97,21,0.0 +12678,58,13.25,3,0.0 +12678,72,34.8,2,0.0 +12678,42,14,2,0.0 +12678,40,18.4,13,0.0 +12678,10,31,25,0.0 +12678,49,20,2,0.0 +12678,23,9,36,0.0 +12678,64,33.25,30,0.0 +12678,54,7.45,28,0.0 +12678,20,81,49,0.0 +12678,33,2.5,39,0.0 +12678,52,7,17,0.0 +12678,56,38,25,0.0 +12678,51,53,17,0.0 +12678,66,17,46,0.0 +12678,34,14,7,0.0 +12678,46,12,48,0.0 +12678,60,34,31,0.0 +12678,32,32,33,0.0 +12678,43,46,43,0.0 +12678,65,21.05,11,0.0 +12678,69,36,49,0.0 +12678,27,43.9,2,0.0 +12678,25,14,3,0.0 +12678,14,23.25,10,0.0 +12678,4,22,24,0.0 +12678,48,12.75,18,0.0 +12678,45,9.5,46,0.0 +12678,30,25.89,33,0.0 +12678,41,9.65,50,0.0 +12678,47,9.5,16,0.0 +12678,31,12.5,3,0.0 +12678,22,21,41,0.0 +12678,21,10,16,0.0 +12678,29,123.79,24,0.0 +12678,11,21,22,0.0 +12678,76,18,31,0.0 +12678,15,15.5,9,0.0 +12679,65,21.05,50,0.0 +12679,49,20,29,0.0 +12679,76,18,13,0.0 +12679,72,34.8,14,0.0 +12679,31,12.5,22,0.0 +12679,3,10,20,0.0 +12679,58,13.25,2,0.0 +12679,24,4.5,42,0.0 +12679,37,26,17,0.0 +12679,42,14,40,0.0 +12679,60,34,42,0.0 +12679,59,55,27,0.0 +12679,45,9.5,7,0.0 +12679,29,123.79,11,0.0 +12679,30,25.89,46,0.0 +12679,1,18,31,0.0 +12679,47,9.5,9,0.0 +12679,17,39,11,0.0 +12679,74,10,5,0.0 +12679,27,43.9,2,0.0 +12679,67,14,7,0.0 +12679,28,45.6,30,0.0 +12679,39,18,47,0.0 +12679,40,18.4,9,0.0 +12679,22,21,25,0.0 +12679,15,15.5,31,0.0 +12679,2,19,34,0.0 +12679,44,19.45,50,0.0 +12679,63,43.9,3,0.0 +12679,57,19.5,28,0.0 +12679,55,24,16,0.0 +12679,50,16.25,50,0.0 +12679,41,9.65,24,0.0 +12679,66,17,6,0.0 +12679,19,9.2,39,0.0 +12679,10,31,3,0.0 +12679,34,14,21,0.0 +12679,13,6,1,0.0 +12679,77,13,20,0.0 +12679,69,36,30,0.0 +12679,56,38,38,0.0 +12679,4,22,29,0.0 +12679,18,62.5,15,0.0 +12679,11,21,33,0.0 +12679,33,2.5,29,0.0 +12679,16,17.45,45,0.0 +12679,12,38,19,0.0 +12679,61,28.5,43,0.0 +12679,64,33.25,37,0.0 +12679,21,10,9,0.0 +12679,26,31.23,35,0.0 +12679,32,32,7,0.0 +12680,23,9,23,0.0 +12680,6,25,7,0.0 +12680,33,2.5,43,0.0 +12680,12,38,16,0.0 +12681,68,12.5,4,0.0 +12681,9,97,24,0.0 +12681,77,13,23,0.0 +12681,65,21.05,12,0.0 +12681,2,19,11,0.0 +12681,57,19.5,13,0.0 +12681,61,28.5,29,0.0 +12681,37,26,20,0.0 +12681,76,18,47,0.0 +12681,49,20,12,0.0 +12681,50,16.25,11,0.0 +12681,22,21,15,0.0 +12681,38,263.5,15,0.0 +12681,40,18.4,29,0.0 +12681,13,6,30,0.0 +12681,62,49.3,16,0.0 +12681,47,9.5,11,0.0 +12681,56,38,37,0.0 +12681,69,36,31,0.0 +12681,45,9.5,9,0.0 +12681,58,13.25,7,0.0 +12681,30,25.89,36,0.0 +12681,36,19,24,0.0 +12681,64,33.25,42,0.0 +12681,6,25,14,0.0 +12681,51,53,27,0.0 +12681,3,10,16,0.0 +12681,21,10,47,0.0 +12681,17,39,10,0.0 +12681,14,23.25,30,0.0 +12681,55,24,41,0.0 +12681,34,14,35,0.0 +12681,27,43.9,48,0.0 +12681,1,18,29,0.0 +12681,53,32.8,10,0.0 +12681,11,21,46,0.0 +12681,10,31,21,0.0 +12681,70,15,15,0.0 +12681,26,31.23,26,0.0 +12681,74,10,49,0.0 +12681,23,9,3,0.0 +12681,54,7.45,41,0.0 +12681,16,17.45,7,0.0 +12681,8,40,32,0.0 +12681,41,9.65,36,0.0 +12681,29,123.79,43,0.0 +12682,42,14,17,0.0 +12682,2,19,50,0.0 +12682,64,33.25,49,0.0 +12683,62,49.3,14,0.0 +12683,18,62.5,11,0.0 +12683,3,10,29,0.0 +12683,13,6,3,0.0 +12683,32,32,21,0.0 +12683,63,43.9,14,0.0 +12683,33,2.5,10,0.0 +12683,75,7.75,20,0.0 +12683,24,4.5,14,0.0 +12683,7,30,38,0.0 +12683,30,25.89,14,0.0 +12683,76,18,36,0.0 +12683,4,22,45,0.0 +12683,47,9.5,46,0.0 +12683,74,10,1,0.0 +12683,59,55,39,0.0 +12683,26,31.23,48,0.0 +12683,37,26,44,0.0 +12683,17,39,23,0.0 +12683,72,34.8,22,0.0 +12683,69,36,1,0.0 +12683,55,24,35,0.0 +12683,38,263.5,16,0.0 +12683,57,19.5,39,0.0 +12683,46,12,40,0.0 +12683,66,17,30,0.0 +12683,77,13,11,0.0 +12683,20,81,28,0.0 +12683,67,14,22,0.0 +12683,68,12.5,4,0.0 +12683,43,46,31,0.0 +12683,12,38,29,0.0 +12683,51,53,48,0.0 +12683,35,18,14,0.0 +12683,14,23.25,49,0.0 +12683,65,21.05,5,0.0 +12683,22,21,35,0.0 +12683,27,43.9,26,0.0 +12683,36,19,37,0.0 +12683,40,18.4,30,0.0 +12683,49,20,46,0.0 +12683,61,28.5,38,0.0 +12683,28,45.6,48,0.0 +12683,29,123.79,2,0.0 +12683,15,15.5,37,0.0 +12683,70,15,24,0.0 +12683,34,14,16,0.0 +12683,53,32.8,18,0.0 +12683,23,9,24,0.0 +12683,60,34,38,0.0 +12683,50,16.25,35,0.0 +12683,6,25,48,0.0 +12683,8,40,47,0.0 +12683,56,38,28,0.0 +12683,58,13.25,16,0.0 +12683,10,31,2,0.0 +12683,25,14,32,0.0 +12683,19,9.2,20,0.0 +12684,32,32,32,0.0 +12684,68,12.5,33,0.0 +12684,73,15,40,0.0 +12684,12,38,46,0.0 +12684,35,18,12,0.0 +12684,1,18,42,0.0 +12684,10,31,19,0.0 +12684,52,7,25,0.0 +12684,67,14,36,0.0 +12684,29,123.79,27,0.0 +12684,65,21.05,31,0.0 +12684,9,97,32,0.0 +12684,33,2.5,27,0.0 +12684,64,33.25,48,0.0 +12684,46,12,20,0.0 +12684,18,62.5,30,0.0 +12684,7,30,13,0.0 +12684,74,10,13,0.0 +12684,71,21.5,49,0.0 +12684,31,12.5,41,0.0 +12684,57,19.5,29,0.0 +12685,43,46,48,0.0 +12685,47,9.5,27,0.0 +12685,39,18,34,0.0 +12685,74,10,48,0.0 +12685,24,4.5,4,0.0 +12685,51,53,26,0.0 +12685,44,19.45,12,0.0 +12685,4,22,12,0.0 +12685,67,14,13,0.0 +12685,56,38,32,0.0 +12685,3,10,7,0.0 +12685,33,2.5,21,0.0 +12685,58,13.25,5,0.0 +12685,68,12.5,41,0.0 +12685,38,263.5,46,0.0 +12685,37,26,1,0.0 +12685,11,21,31,0.0 +12685,22,21,29,0.0 +12685,54,7.45,8,0.0 +12685,41,9.65,31,0.0 +12685,46,12,34,0.0 +12685,17,39,50,0.0 +12685,19,9.2,3,0.0 +12685,55,24,18,0.0 +12685,61,28.5,27,0.0 +12685,16,17.45,39,0.0 +12685,36,19,3,0.0 +12685,29,123.79,7,0.0 +12685,12,38,17,0.0 +12685,2,19,19,0.0 +12685,15,15.5,30,0.0 +12685,34,14,3,0.0 +12685,60,34,26,0.0 +12685,66,17,21,0.0 +12685,64,33.25,35,0.0 +12685,40,18.4,37,0.0 +12685,76,18,1,0.0 +12685,23,9,14,0.0 +12685,52,7,43,0.0 +12685,42,14,3,0.0 +12685,5,21.35,19,0.0 +12685,21,10,39,0.0 +12685,71,21.5,8,0.0 +12685,26,31.23,43,0.0 +12685,75,7.75,34,0.0 +12685,28,45.6,14,0.0 +12685,25,14,31,0.0 +12685,48,12.75,32,0.0 +12685,31,12.5,23,0.0 +12685,35,18,43,0.0 +12685,59,55,14,0.0 +12685,1,18,2,0.0 +12685,73,15,18,0.0 +12685,62,49.3,19,0.0 +12685,63,43.9,44,0.0 +12685,65,21.05,4,0.0 +12685,9,97,25,0.0 +12685,7,30,14,0.0 +12685,57,19.5,47,0.0 +12685,13,6,12,0.0 +12685,6,25,50,0.0 +12685,70,15,47,0.0 +12686,22,21,9,0.0 +12686,67,14,44,0.0 +12686,23,9,23,0.0 +12686,17,39,43,0.0 +12686,5,21.35,30,0.0 +12686,57,19.5,14,0.0 +12686,33,2.5,31,0.0 +12686,10,31,35,0.0 +12686,61,28.5,43,0.0 +12686,19,9.2,37,0.0 +12686,68,12.5,6,0.0 +12686,27,43.9,7,0.0 +12686,74,10,26,0.0 +12686,11,21,39,0.0 +12686,63,43.9,29,0.0 +12686,6,25,32,0.0 +12686,51,53,36,0.0 +12686,24,4.5,8,0.0 +12686,16,17.45,15,0.0 +12686,39,18,50,0.0 +12686,37,26,50,0.0 +12686,14,23.25,24,0.0 +12686,42,14,25,0.0 +12686,77,13,33,0.0 +12686,66,17,49,0.0 +12686,35,18,28,0.0 +12686,29,123.79,10,0.0 +12686,41,9.65,18,0.0 +12686,7,30,13,0.0 +12686,30,25.89,12,0.0 +12686,58,13.25,20,0.0 +12686,48,12.75,18,0.0 +12686,75,7.75,14,0.0 +12686,59,55,10,0.0 +12686,72,34.8,20,0.0 +12686,2,19,42,0.0 +12686,3,10,38,0.0 +12686,50,16.25,48,0.0 +12686,45,9.5,20,0.0 +12686,8,40,24,0.0 +12686,31,12.5,11,0.0 +12686,36,19,37,0.0 +12686,52,7,20,0.0 +12686,38,263.5,32,0.0 +12686,62,49.3,8,0.0 +12686,26,31.23,21,0.0 +12686,20,81,9,0.0 +12686,40,18.4,50,0.0 +12686,21,10,18,0.0 +12686,64,33.25,23,0.0 +12686,12,38,50,0.0 +12686,18,62.5,49,0.0 +12686,69,36,11,0.0 +12686,73,15,17,0.0 +12686,15,15.5,14,0.0 +12686,70,15,10,0.0 +12686,4,22,34,0.0 +12686,25,14,19,0.0 +12686,54,7.45,46,0.0 +12686,56,38,8,0.0 +12686,32,32,44,0.0 +12686,76,18,27,0.0 +12686,34,14,28,0.0 +12686,46,12,29,0.0 +12686,49,20,14,0.0 +12686,55,24,9,0.0 +12686,60,34,5,0.0 +12686,13,6,20,0.0 +12686,47,9.5,25,0.0 +12686,9,97,28,0.0 +12687,53,32.8,42,0.0 +12687,17,39,14,0.0 +12687,25,14,46,0.0 +12687,52,7,14,0.0 +12687,19,9.2,17,0.0 +12687,64,33.25,11,0.0 +12687,75,7.75,20,0.0 +12687,48,12.75,37,0.0 +12687,2,19,6,0.0 +12688,10,31,39,0.0 +12688,45,9.5,17,0.0 +12688,22,21,2,0.0 +12688,31,12.5,11,0.0 +12688,3,10,38,0.0 +12688,76,18,47,0.0 +12688,25,14,12,0.0 +12688,20,81,46,0.0 +12688,55,24,13,0.0 +12688,37,26,17,0.0 +12688,32,32,35,0.0 +12688,58,13.25,14,0.0 +12688,42,14,45,0.0 +12688,33,2.5,14,0.0 +12688,54,7.45,18,0.0 +12688,7,30,38,0.0 +12688,56,38,1,0.0 +12688,46,12,14,0.0 +12688,6,25,6,0.0 +12688,61,28.5,21,0.0 +12688,27,43.9,26,0.0 +12688,62,49.3,47,0.0 +12688,75,7.75,13,0.0 +12688,21,10,15,0.0 +12688,44,19.45,7,0.0 +12688,35,18,34,0.0 +12688,36,19,23,0.0 +12688,40,18.4,49,0.0 +12688,12,38,4,0.0 +12688,49,20,27,0.0 +12688,18,62.5,48,0.0 +12688,19,9.2,48,0.0 +12688,77,13,13,0.0 +12688,74,10,4,0.0 +12688,67,14,6,0.0 +12688,1,18,15,0.0 +12688,29,123.79,17,0.0 +12688,4,22,35,0.0 +12688,73,15,21,0.0 +12688,68,12.5,45,0.0 +12688,63,43.9,2,0.0 +12688,66,17,15,0.0 +12688,16,17.45,48,0.0 +12688,52,7,25,0.0 +12688,59,55,40,0.0 +12688,13,6,13,0.0 +12688,15,15.5,15,0.0 +12688,8,40,37,0.0 +12688,69,36,6,0.0 +12688,60,34,49,0.0 +12688,51,53,11,0.0 +12689,74,10,46,0.0 +12689,46,12,21,0.0 +12689,20,81,42,0.0 +12689,33,2.5,20,0.0 +12689,55,24,6,0.0 +12689,62,49.3,28,0.0 +12689,7,30,12,0.0 +12689,2,19,14,0.0 +12689,68,12.5,38,0.0 +12689,54,7.45,49,0.0 +12689,69,36,37,0.0 +12689,22,21,21,0.0 +12689,72,34.8,16,0.0 +12689,64,33.25,30,0.0 +12689,17,39,40,0.0 +12689,4,22,35,0.0 +12689,43,46,48,0.0 +12689,56,38,50,0.0 +12689,49,20,9,0.0 +12689,67,14,19,0.0 +12690,61,28.5,50,0.0 +12690,31,12.5,30,0.0 +12690,65,21.05,10,0.0 +12690,40,18.4,10,0.0 +12690,15,15.5,42,0.0 +12690,52,7,9,0.0 +12690,39,18,12,0.0 +12690,1,18,8,0.0 +12690,69,36,39,0.0 +12690,59,55,49,0.0 +12690,41,9.65,41,0.0 +12690,25,14,24,0.0 +12691,28,45.6,29,0.0 +12691,9,97,42,0.0 +12691,51,53,45,0.0 +12691,12,38,29,0.0 +12691,50,16.25,27,0.0 +12691,29,123.79,43,0.0 +12691,72,34.8,18,0.0 +12691,69,36,11,0.0 +12691,11,21,8,0.0 +12691,40,18.4,42,0.0 +12691,19,9.2,41,0.0 +12691,77,13,47,0.0 +12691,67,14,28,0.0 +12691,7,30,2,0.0 +12691,39,18,13,0.0 +12691,47,9.5,28,0.0 +12691,73,15,38,0.0 +12691,46,12,47,0.0 +12691,37,26,12,0.0 +12691,53,32.8,34,0.0 +12691,62,49.3,10,0.0 +12691,48,12.75,10,0.0 +12691,26,31.23,12,0.0 +12691,23,9,24,0.0 +12691,54,7.45,12,0.0 +12691,74,10,42,0.0 +12691,64,33.25,14,0.0 +12691,10,31,25,0.0 +12691,20,81,17,0.0 +12691,68,12.5,5,0.0 +12691,76,18,2,0.0 +12691,22,21,33,0.0 +12691,70,15,22,0.0 +12691,25,14,28,0.0 +12691,35,18,2,0.0 +12691,14,23.25,5,0.0 +12691,34,14,29,0.0 +12691,75,7.75,13,0.0 +12691,61,28.5,14,0.0 +12691,66,17,46,0.0 +12691,38,263.5,26,0.0 +12691,58,13.25,33,0.0 +12691,49,20,38,0.0 +12691,52,7,20,0.0 +12691,5,21.35,28,0.0 +12691,45,9.5,7,0.0 +12691,57,19.5,30,0.0 +12691,21,10,33,0.0 +12691,56,38,8,0.0 +12691,15,15.5,21,0.0 +12691,43,46,23,0.0 +12691,63,43.9,46,0.0 +12691,60,34,15,0.0 +12691,41,9.65,11,0.0 +12691,1,18,21,0.0 +12691,6,25,45,0.0 +12691,36,19,2,0.0 +12691,55,24,20,0.0 +12691,31,12.5,13,0.0 +12691,17,39,1,0.0 +12691,18,62.5,42,0.0 +12692,50,16.25,35,0.0 +12692,70,15,8,0.0 +12692,38,263.5,22,0.0 +12692,16,17.45,41,0.0 +12692,47,9.5,15,0.0 +12692,58,13.25,41,0.0 +12692,45,9.5,25,0.0 +12692,21,10,10,0.0 +12692,37,26,39,0.0 +12692,31,12.5,6,0.0 +12692,68,12.5,3,0.0 +12692,9,97,16,0.0 +12692,71,21.5,35,0.0 +12692,19,9.2,6,0.0 +12692,15,15.5,46,0.0 +12692,27,43.9,3,0.0 +12692,13,6,26,0.0 +12692,35,18,40,0.0 +12692,23,9,15,0.0 +12692,12,38,21,0.0 +12692,33,2.5,12,0.0 +12692,24,4.5,12,0.0 +12692,64,33.25,47,0.0 +12692,77,13,2,0.0 +12692,20,81,7,0.0 +12692,28,45.6,25,0.0 +12692,49,20,20,0.0 +12692,39,18,22,0.0 +12692,8,40,13,0.0 +12692,41,9.65,36,0.0 +12692,61,28.5,30,0.0 +12692,40,18.4,6,0.0 +12692,43,46,18,0.0 +12692,32,32,34,0.0 +12692,44,19.45,5,0.0 +12692,42,14,12,0.0 +12692,22,21,13,0.0 +12693,9,97,4,0.0 +12693,8,40,7,0.0 +12693,15,15.5,35,0.0 +12693,5,21.35,33,0.0 +12693,35,18,24,0.0 +12693,70,15,6,0.0 +12693,52,7,34,0.0 +12693,75,7.75,39,0.0 +12693,72,34.8,46,0.0 +12693,40,18.4,32,0.0 +12693,31,12.5,5,0.0 +12693,38,263.5,19,0.0 +12693,11,21,12,0.0 +12693,54,7.45,15,0.0 +12693,12,38,29,0.0 +12693,73,15,19,0.0 +12693,22,21,23,0.0 +12693,46,12,14,0.0 +12693,65,21.05,2,0.0 +12693,67,14,7,0.0 +12693,59,55,34,0.0 +12693,66,17,2,0.0 +12693,28,45.6,29,0.0 +12693,39,18,21,0.0 +12693,27,43.9,32,0.0 +12693,18,62.5,24,0.0 +12693,62,49.3,18,0.0 +12693,69,36,27,0.0 +12693,24,4.5,43,0.0 +12693,57,19.5,18,0.0 +12693,36,19,8,0.0 +12693,43,46,48,0.0 +12693,16,17.45,30,0.0 +12693,33,2.5,29,0.0 +12693,17,39,2,0.0 +12693,13,6,19,0.0 +12693,19,9.2,20,0.0 +12693,20,81,38,0.0 +12693,45,9.5,30,0.0 +12693,4,22,44,0.0 +12693,42,14,33,0.0 +12693,30,25.89,12,0.0 +12693,2,19,28,0.0 +12693,53,32.8,13,0.0 +12693,14,23.25,6,0.0 +12693,25,14,46,0.0 +12693,56,38,11,0.0 +12693,49,20,38,0.0 +12693,60,34,43,0.0 +12693,10,31,4,0.0 +12693,61,28.5,15,0.0 +12693,7,30,45,0.0 +12693,6,25,3,0.0 +12693,1,18,36,0.0 +12693,71,21.5,27,0.0 +12693,63,43.9,9,0.0 +12693,47,9.5,30,0.0 +12693,44,19.45,20,0.0 +12693,41,9.65,20,0.0 +12693,68,12.5,13,0.0 +12693,37,26,26,0.0 +12693,64,33.25,10,0.0 +12693,34,14,48,0.0 +12693,3,10,44,0.0 +12693,55,24,50,0.0 +12694,39,18,18,0.0 +12694,67,14,7,0.0 +12694,69,36,2,0.0 +12694,15,15.5,21,0.0 +12694,62,49.3,20,0.0 +12694,3,10,45,0.0 +12694,45,9.5,8,0.0 +12694,8,40,12,0.0 +12694,2,19,37,0.0 +12694,44,19.45,18,0.0 +12694,72,34.8,11,0.0 +12694,49,20,7,0.0 +12694,50,16.25,48,0.0 +12694,22,21,28,0.0 +12694,16,17.45,37,0.0 +12694,77,13,37,0.0 +12694,9,97,21,0.0 +12694,5,21.35,41,0.0 +12694,10,31,43,0.0 +12694,27,43.9,29,0.0 +12694,25,14,11,0.0 +12694,33,2.5,29,0.0 +12694,38,263.5,36,0.0 +12694,64,33.25,29,0.0 +12694,19,9.2,42,0.0 +12694,28,45.6,32,0.0 +12694,37,26,17,0.0 +12694,68,12.5,39,0.0 +12694,46,12,26,0.0 +12694,17,39,39,0.0 +12694,53,32.8,3,0.0 +12694,36,19,13,0.0 +12694,18,62.5,16,0.0 +12694,23,9,41,0.0 +12694,59,55,36,0.0 +12694,63,43.9,30,0.0 +12694,61,28.5,32,0.0 +12694,58,13.25,42,0.0 +12694,30,25.89,44,0.0 +12694,34,14,34,0.0 +12694,4,22,8,0.0 +12694,42,14,10,0.0 +12694,20,81,21,0.0 +12694,71,21.5,43,0.0 +12694,43,46,32,0.0 +12694,7,30,42,0.0 +12694,56,38,35,0.0 +12694,73,15,15,0.0 +12694,26,31.23,45,0.0 +12694,54,7.45,26,0.0 +12694,47,9.5,11,0.0 +12694,24,4.5,32,0.0 +12694,31,12.5,46,0.0 +12694,6,25,1,0.0 +12694,48,12.75,12,0.0 +12694,32,32,29,0.0 +12694,55,24,50,0.0 +12694,66,17,19,0.0 +12694,12,38,23,0.0 +12694,51,53,1,0.0 +12694,60,34,14,0.0 +12694,65,21.05,25,0.0 +12694,76,18,20,0.0 +12694,35,18,45,0.0 +12695,23,9,2,0.0 +12695,18,62.5,42,0.0 +12695,73,15,3,0.0 +12695,40,18.4,48,0.0 +12695,51,53,8,0.0 +12695,48,12.75,19,0.0 +12695,26,31.23,26,0.0 +12695,7,30,11,0.0 +12695,35,18,1,0.0 +12695,72,34.8,18,0.0 +12695,12,38,28,0.0 +12695,61,28.5,10,0.0 +12695,60,34,22,0.0 +12695,20,81,40,0.0 +12695,22,21,12,0.0 +12695,64,33.25,32,0.0 +12695,38,263.5,28,0.0 +12695,36,19,18,0.0 +12695,43,46,20,0.0 +12695,39,18,31,0.0 +12695,47,9.5,41,0.0 +12696,37,26,39,0.0 +12696,14,23.25,43,0.0 +12696,20,81,47,0.0 +12696,43,46,31,0.0 +12696,36,19,28,0.0 +12696,4,22,6,0.0 +12696,73,15,31,0.0 +12696,58,13.25,41,0.0 +12696,24,4.5,49,0.0 +12696,66,17,41,0.0 +12696,21,10,32,0.0 +12696,67,14,13,0.0 +12696,60,34,18,0.0 +12696,55,24,41,0.0 +12696,65,21.05,20,0.0 +12696,39,18,18,0.0 +12696,1,18,35,0.0 +12696,13,6,19,0.0 +12696,19,9.2,36,0.0 +12696,12,38,17,0.0 +12696,72,34.8,43,0.0 +12696,2,19,2,0.0 +12696,22,21,24,0.0 +12696,57,19.5,50,0.0 +12696,29,123.79,15,0.0 +12696,40,18.4,19,0.0 +12696,53,32.8,11,0.0 +12696,41,9.65,2,0.0 +12696,77,13,26,0.0 +12696,31,12.5,42,0.0 +12696,10,31,48,0.0 +12696,18,62.5,42,0.0 +12696,50,16.25,8,0.0 +12696,5,21.35,13,0.0 +12696,76,18,5,0.0 +12696,8,40,3,0.0 +12696,61,28.5,16,0.0 +12697,4,22,28,0.0 +12697,22,21,22,0.0 +12697,75,7.75,37,0.0 +12697,40,18.4,10,0.0 +12697,6,25,15,0.0 +12697,20,81,24,0.0 +12697,57,19.5,38,0.0 +12697,74,10,16,0.0 +12697,37,26,9,0.0 +12697,23,9,33,0.0 +12697,9,97,5,0.0 +12697,45,9.5,22,0.0 +12697,13,6,49,0.0 +12697,24,4.5,34,0.0 +12697,29,123.79,21,0.0 +12697,56,38,4,0.0 +12697,54,7.45,44,0.0 +12697,67,14,8,0.0 +12697,65,21.05,43,0.0 +12697,3,10,49,0.0 +12697,60,34,50,0.0 +12697,77,13,2,0.0 +12697,48,12.75,15,0.0 +12697,43,46,16,0.0 +12697,58,13.25,25,0.0 +12697,52,7,5,0.0 +12697,25,14,17,0.0 +12697,51,53,29,0.0 +12697,27,43.9,14,0.0 +12697,1,18,10,0.0 +12697,14,23.25,40,0.0 +12697,15,15.5,2,0.0 +12697,18,62.5,5,0.0 +12697,49,20,8,0.0 +12697,32,32,27,0.0 +12697,76,18,41,0.0 +12697,41,9.65,10,0.0 +12697,66,17,42,0.0 +12697,26,31.23,29,0.0 +12697,34,14,50,0.0 +12697,36,19,17,0.0 +12697,69,36,8,0.0 +12697,63,43.9,31,0.0 +12697,7,30,16,0.0 +12697,17,39,44,0.0 +12697,62,49.3,28,0.0 +12697,33,2.5,28,0.0 +12697,12,38,24,0.0 +12697,55,24,15,0.0 +12697,73,15,43,0.0 +12697,64,33.25,7,0.0 +12697,5,21.35,49,0.0 +12697,72,34.8,8,0.0 +12698,11,21,9,0.0 +12698,40,18.4,32,0.0 +12698,7,30,19,0.0 +12698,66,17,13,0.0 +12698,21,10,18,0.0 +12698,28,45.6,20,0.0 +12698,38,263.5,43,0.0 +12698,14,23.25,16,0.0 +12698,5,21.35,38,0.0 +12698,69,36,41,0.0 +12698,60,34,13,0.0 +12698,20,81,27,0.0 +12698,57,19.5,12,0.0 +12698,12,38,1,0.0 +12698,72,34.8,49,0.0 +12698,1,18,19,0.0 +12698,24,4.5,42,0.0 +12698,16,17.45,26,0.0 +12698,36,19,6,0.0 +12698,77,13,19,0.0 +12698,8,40,42,0.0 +12698,47,9.5,29,0.0 +12698,45,9.5,40,0.0 +12698,13,6,4,0.0 +12698,52,7,18,0.0 +12698,64,33.25,28,0.0 +12698,17,39,20,0.0 +12698,25,14,11,0.0 +12698,31,12.5,22,0.0 +12698,58,13.25,17,0.0 +12698,15,15.5,4,0.0 +12698,70,15,26,0.0 +12698,33,2.5,20,0.0 +12698,56,38,22,0.0 +12698,26,31.23,39,0.0 +12698,49,20,49,0.0 +12698,34,14,44,0.0 +12698,42,14,17,0.0 +12698,76,18,39,0.0 +12698,43,46,26,0.0 +12698,61,28.5,46,0.0 +12698,73,15,21,0.0 +12698,29,123.79,13,0.0 +12698,23,9,31,0.0 +12698,22,21,29,0.0 +12698,71,21.5,26,0.0 +12698,50,16.25,3,0.0 +12698,75,7.75,44,0.0 +12698,51,53,21,0.0 +12698,74,10,28,0.0 +12698,2,19,20,0.0 +12698,55,24,3,0.0 +12698,54,7.45,24,0.0 +12698,4,22,18,0.0 +12698,41,9.65,21,0.0 +12698,39,18,20,0.0 +12698,30,25.89,34,0.0 +12698,3,10,34,0.0 +12698,37,26,47,0.0 +12698,63,43.9,34,0.0 +12698,46,12,5,0.0 +12698,35,18,37,0.0 +12698,32,32,27,0.0 +12698,18,62.5,22,0.0 +12698,62,49.3,49,0.0 +12698,27,43.9,15,0.0 +12698,65,21.05,13,0.0 +12698,53,32.8,50,0.0 +12698,59,55,26,0.0 +12698,6,25,35,0.0 +12698,67,14,29,0.0 +12698,44,19.45,32,0.0 +12699,21,10,16,0.0 +12699,38,263.5,46,0.0 +12699,70,15,3,0.0 +12699,39,18,50,0.0 +12699,6,25,43,0.0 +12699,16,17.45,4,0.0 +12699,26,31.23,6,0.0 +12699,47,9.5,36,0.0 +12699,4,22,45,0.0 +12699,58,13.25,25,0.0 +12699,14,23.25,16,0.0 +12699,71,21.5,37,0.0 +12699,7,30,12,0.0 +12699,46,12,24,0.0 +12699,28,45.6,16,0.0 +12699,56,38,20,0.0 +12699,49,20,31,0.0 +12699,11,21,29,0.0 +12699,67,14,45,0.0 +12699,36,19,48,0.0 +12699,32,32,18,0.0 +12699,12,38,41,0.0 +12699,51,53,15,0.0 +12699,24,4.5,43,0.0 +12699,44,19.45,38,0.0 +12699,73,15,46,0.0 +12699,45,9.5,33,0.0 +12699,61,28.5,34,0.0 +12699,42,14,1,0.0 +12699,69,36,13,0.0 +12699,50,16.25,26,0.0 +12699,55,24,16,0.0 +12699,9,97,22,0.0 +12699,2,19,23,0.0 +12699,8,40,10,0.0 +12699,31,12.5,27,0.0 +12699,35,18,15,0.0 +12699,74,10,13,0.0 +12699,18,62.5,47,0.0 +12700,56,38,32,0.0 +12700,30,25.89,37,0.0 +12700,34,14,2,0.0 +12700,31,12.5,17,0.0 +12701,71,21.5,17,0.0 +12701,51,53,17,0.0 +12701,6,25,26,0.0 +12701,34,14,12,0.0 +12701,12,38,19,0.0 +12701,75,7.75,24,0.0 +12701,3,10,19,0.0 +12701,13,6,32,0.0 +12701,28,45.6,40,0.0 +12701,25,14,7,0.0 +12701,11,21,17,0.0 +12701,50,16.25,19,0.0 +12701,77,13,25,0.0 +12701,36,19,44,0.0 +12701,32,32,36,0.0 +12701,9,97,15,0.0 +12701,48,12.75,2,0.0 +12701,29,123.79,48,0.0 +12702,13,6,46,0.0 +12702,63,43.9,34,0.0 +12702,41,9.65,33,0.0 +12702,72,34.8,7,0.0 +12702,16,17.45,2,0.0 +12702,66,17,1,0.0 +12702,71,21.5,8,0.0 +12702,58,13.25,46,0.0 +12702,68,12.5,48,0.0 +12702,12,38,28,0.0 +12702,62,49.3,15,0.0 +12702,20,81,6,0.0 +12702,64,33.25,32,0.0 +12702,69,36,38,0.0 +12702,25,14,43,0.0 +12702,35,18,15,0.0 +12702,21,10,11,0.0 +12702,27,43.9,25,0.0 +12702,5,21.35,40,0.0 +12702,34,14,14,0.0 +12702,42,14,22,0.0 +12702,51,53,19,0.0 +12702,75,7.75,3,0.0 +12702,8,40,36,0.0 +12702,50,16.25,7,0.0 +12702,57,19.5,17,0.0 +12702,54,7.45,30,0.0 +12702,3,10,35,0.0 +12702,4,22,35,0.0 +12702,53,32.8,39,0.0 +12702,9,97,47,0.0 +12702,2,19,5,0.0 +12702,19,9.2,1,0.0 +12702,23,9,5,0.0 +12702,55,24,20,0.0 +12702,38,263.5,18,0.0 +12703,58,13.25,41,0.0 +12703,45,9.5,25,0.0 +12703,51,53,2,0.0 +12703,41,9.65,21,0.0 +12703,40,18.4,34,0.0 +12703,34,14,24,0.0 +12703,10,31,16,0.0 +12703,66,17,28,0.0 +12703,64,33.25,48,0.0 +12703,11,21,10,0.0 +12703,60,34,37,0.0 +12703,28,45.6,35,0.0 +12703,55,24,20,0.0 +12703,9,97,15,0.0 +12703,20,81,12,0.0 +12703,73,15,16,0.0 +12703,53,32.8,8,0.0 +12703,12,38,10,0.0 +12703,77,13,25,0.0 +12703,63,43.9,44,0.0 +12703,47,9.5,45,0.0 +12703,71,21.5,11,0.0 +12703,29,123.79,42,0.0 +12703,62,49.3,39,0.0 +12703,67,14,24,0.0 +12703,65,21.05,34,0.0 +12703,17,39,28,0.0 +12703,35,18,12,0.0 +12703,48,12.75,38,0.0 +12703,54,7.45,42,0.0 +12703,59,55,18,0.0 +12703,24,4.5,27,0.0 +12703,25,14,33,0.0 +12703,1,18,8,0.0 +12703,2,19,30,0.0 +12703,18,62.5,40,0.0 +12703,61,28.5,20,0.0 +12704,57,19.5,50,0.0 +12704,16,17.45,35,0.0 +12704,12,38,33,0.0 +12704,42,14,40,0.0 +12704,70,15,25,0.0 +12704,50,16.25,20,0.0 +12704,67,14,45,0.0 +12704,41,9.65,10,0.0 +12704,17,39,48,0.0 +12704,61,28.5,5,0.0 +12704,60,34,31,0.0 +12704,19,9.2,16,0.0 +12704,11,21,26,0.0 +12704,5,21.35,15,0.0 +12704,31,12.5,3,0.0 +12704,63,43.9,37,0.0 +12704,69,36,30,0.0 +12704,66,17,45,0.0 +12704,53,32.8,24,0.0 +12704,74,10,46,0.0 +12704,1,18,18,0.0 +12704,49,20,25,0.0 +12704,38,263.5,20,0.0 +12704,7,30,15,0.0 +12704,28,45.6,31,0.0 +12704,14,23.25,28,0.0 +12704,40,18.4,40,0.0 +12704,26,31.23,49,0.0 +12705,24,4.5,26,0.0 +12705,21,10,26,0.0 +12705,65,21.05,32,0.0 +12705,25,14,20,0.0 +12705,36,19,46,0.0 +12705,50,16.25,43,0.0 +12705,34,14,39,0.0 +12705,2,19,23,0.0 +12705,48,12.75,14,0.0 +12705,44,19.45,47,0.0 +12705,11,21,40,0.0 +12706,25,14,40,0.0 +12706,61,28.5,15,0.0 +12706,28,45.6,42,0.0 +12706,64,33.25,37,0.0 +12706,20,81,15,0.0 +12706,34,14,49,0.0 +12706,33,2.5,21,0.0 +12706,30,25.89,29,0.0 +12706,16,17.45,10,0.0 +12706,63,43.9,46,0.0 +12706,21,10,45,0.0 +12706,15,15.5,37,0.0 +12706,50,16.25,1,0.0 +12706,75,7.75,3,0.0 +12706,60,34,11,0.0 +12706,27,43.9,17,0.0 +12706,40,18.4,23,0.0 +12706,52,7,11,0.0 +12706,72,34.8,9,0.0 +12706,29,123.79,11,0.0 +12706,70,15,43,0.0 +12706,5,21.35,17,0.0 +12706,57,19.5,33,0.0 +12706,18,62.5,20,0.0 +12706,77,13,30,0.0 +12706,37,26,38,0.0 +12706,41,9.65,23,0.0 +12706,31,12.5,12,0.0 +12706,4,22,33,0.0 +12706,56,38,21,0.0 +12706,32,32,26,0.0 +12706,69,36,29,0.0 +12706,46,12,7,0.0 +12706,73,15,46,0.0 +12706,23,9,27,0.0 +12706,2,19,1,0.0 +12706,14,23.25,7,0.0 +12706,66,17,41,0.0 +12706,7,30,35,0.0 +12706,38,263.5,44,0.0 +12707,68,12.5,19,0.0 +12707,13,6,12,0.0 +12707,22,21,13,0.0 +12707,77,13,19,0.0 +12707,55,24,20,0.0 +12707,70,15,29,0.0 +12707,53,32.8,44,0.0 +12707,66,17,43,0.0 +12707,8,40,48,0.0 +12707,45,9.5,48,0.0 +12707,32,32,36,0.0 +12707,48,12.75,1,0.0 +12707,7,30,33,0.0 +12707,26,31.23,3,0.0 +12707,2,19,9,0.0 +12707,17,39,25,0.0 +12707,37,26,11,0.0 +12707,19,9.2,50,0.0 +12707,41,9.65,24,0.0 +12707,6,25,8,0.0 +12707,52,7,43,0.0 +12707,75,7.75,2,0.0 +12707,36,19,19,0.0 +12707,46,12,26,0.0 +12707,65,21.05,36,0.0 +12707,64,33.25,24,0.0 +12707,21,10,18,0.0 +12707,31,12.5,37,0.0 +12707,27,43.9,39,0.0 +12707,10,31,31,0.0 +12708,53,32.8,16,0.0 +12708,8,40,29,0.0 +12708,29,123.79,49,0.0 +12708,36,19,39,0.0 +12708,74,10,12,0.0 +12708,9,97,20,0.0 +12708,67,14,26,0.0 +12708,31,12.5,22,0.0 +12708,38,263.5,33,0.0 +12708,16,17.45,48,0.0 +12708,63,43.9,49,0.0 +12708,2,19,12,0.0 +12708,42,14,50,0.0 +12708,35,18,34,0.0 +12708,24,4.5,15,0.0 +12708,56,38,13,0.0 +12708,1,18,7,0.0 +12708,7,30,9,0.0 +12708,21,10,3,0.0 +12708,33,2.5,42,0.0 +12708,43,46,13,0.0 +12708,22,21,29,0.0 +12708,13,6,21,0.0 +12708,14,23.25,44,0.0 +12708,58,13.25,45,0.0 +12708,72,34.8,50,0.0 +12708,61,28.5,15,0.0 +12708,75,7.75,5,0.0 +12708,15,15.5,48,0.0 +12708,50,16.25,12,0.0 +12708,3,10,16,0.0 +12708,26,31.23,2,0.0 +12708,62,49.3,11,0.0 +12708,47,9.5,10,0.0 +12708,45,9.5,32,0.0 +12708,59,55,48,0.0 +12708,20,81,21,0.0 +12708,39,18,6,0.0 +12708,52,7,31,0.0 +12708,11,21,13,0.0 +12708,57,19.5,30,0.0 +12708,76,18,38,0.0 +12708,19,9.2,50,0.0 +12708,40,18.4,13,0.0 +12708,71,21.5,6,0.0 +12708,5,21.35,32,0.0 +12708,17,39,38,0.0 +12708,18,62.5,46,0.0 +12708,25,14,29,0.0 +12708,70,15,46,0.0 +12708,32,32,33,0.0 +12708,46,12,32,0.0 +12708,27,43.9,45,0.0 +12708,34,14,31,0.0 +12708,51,53,17,0.0 +12708,54,7.45,14,0.0 +12708,12,38,7,0.0 +12708,49,20,9,0.0 +12708,68,12.5,49,0.0 +12708,66,17,31,0.0 +12708,37,26,6,0.0 +12708,6,25,46,0.0 +12708,77,13,32,0.0 +12708,41,9.65,44,0.0 +12708,30,25.89,50,0.0 +12708,44,19.45,31,0.0 +12708,73,15,47,0.0 +12708,23,9,3,0.0 +12708,10,31,18,0.0 +12708,55,24,21,0.0 +12708,48,12.75,32,0.0 +12708,28,45.6,34,0.0 +12708,60,34,18,0.0 +12708,65,21.05,14,0.0 +12708,4,22,50,0.0 +12708,64,33.25,40,0.0 +12708,69,36,41,0.0 +12709,14,23.25,42,0.0 +12709,27,43.9,23,0.0 +12709,48,12.75,38,0.0 +12709,17,39,28,0.0 +12709,59,55,31,0.0 +12709,32,32,28,0.0 +12709,70,15,14,0.0 +12709,34,14,24,0.0 +12709,28,45.6,49,0.0 +12709,5,21.35,34,0.0 +12709,8,40,4,0.0 +12709,41,9.65,33,0.0 +12709,19,9.2,31,0.0 +12709,49,20,37,0.0 +12709,63,43.9,14,0.0 +12709,15,15.5,36,0.0 +12709,20,81,44,0.0 +12709,33,2.5,37,0.0 +12709,53,32.8,14,0.0 +12709,13,6,33,0.0 +12709,46,12,29,0.0 +12709,54,7.45,6,0.0 +12709,52,7,38,0.0 +12709,26,31.23,1,0.0 +12709,44,19.45,28,0.0 +12709,18,62.5,14,0.0 +12709,30,25.89,34,0.0 +12709,65,21.05,15,0.0 +12709,3,10,34,0.0 +12709,40,18.4,11,0.0 +12709,51,53,16,0.0 +12709,11,21,40,0.0 +12709,68,12.5,47,0.0 +12709,50,16.25,50,0.0 +12709,60,34,49,0.0 +12709,67,14,30,0.0 +12709,37,26,37,0.0 +12709,57,19.5,30,0.0 +12709,75,7.75,14,0.0 +12709,76,18,40,0.0 +12709,9,97,10,0.0 +12709,22,21,15,0.0 +12709,74,10,3,0.0 +12709,56,38,16,0.0 +12709,61,28.5,16,0.0 +12709,4,22,19,0.0 +12709,12,38,6,0.0 +12709,58,13.25,17,0.0 +12709,16,17.45,7,0.0 +12709,6,25,30,0.0 +12709,69,36,1,0.0 +12709,73,15,20,0.0 +12709,2,19,44,0.0 +12709,1,18,30,0.0 +12709,55,24,45,0.0 +12709,23,9,15,0.0 +12710,28,45.6,31,0.0 +12710,6,25,21,0.0 +12710,75,7.75,4,0.0 +12710,72,34.8,14,0.0 +12710,9,97,17,0.0 +12710,48,12.75,14,0.0 +12710,58,13.25,7,0.0 +12710,26,31.23,47,0.0 +12710,42,14,48,0.0 +12710,77,13,4,0.0 +12710,51,53,6,0.0 +12710,15,15.5,36,0.0 +12710,24,4.5,42,0.0 +12710,52,7,23,0.0 +12710,16,17.45,33,0.0 +12710,66,17,47,0.0 +12710,37,26,31,0.0 +12710,64,33.25,3,0.0 +12710,36,19,38,0.0 +12710,53,32.8,49,0.0 +12710,35,18,12,0.0 +12710,38,263.5,32,0.0 +12710,62,49.3,11,0.0 +12710,41,9.65,1,0.0 +12710,59,55,30,0.0 +12710,19,9.2,44,0.0 +12710,65,21.05,29,0.0 +12710,39,18,36,0.0 +12711,43,46,11,0.0 +12711,28,45.6,26,0.0 +12711,14,23.25,34,0.0 +12711,66,17,34,0.0 +12711,53,32.8,14,0.0 +12712,73,15,31,0.0 +12712,76,18,17,0.0 +12712,56,38,3,0.0 +12712,71,21.5,27,0.0 +12712,34,14,40,0.0 +12712,26,31.23,9,0.0 +12712,11,21,35,0.0 +12712,23,9,48,0.0 +12712,24,4.5,23,0.0 +12712,36,19,28,0.0 +12712,74,10,18,0.0 +12712,32,32,45,0.0 +12712,3,10,38,0.0 +12712,21,10,30,0.0 +12712,72,34.8,43,0.0 +12712,25,14,17,0.0 +12712,35,18,40,0.0 +12712,38,263.5,6,0.0 +12712,44,19.45,4,0.0 +12712,63,43.9,12,0.0 +12712,69,36,45,0.0 +12712,1,18,11,0.0 +12712,20,81,6,0.0 +12712,43,46,35,0.0 +12712,60,34,22,0.0 +12712,77,13,30,0.0 +12712,4,22,2,0.0 +12712,6,25,25,0.0 +12712,15,15.5,8,0.0 +12712,19,9.2,28,0.0 +12712,10,31,43,0.0 +12712,54,7.45,9,0.0 +12712,27,43.9,39,0.0 +12712,45,9.5,20,0.0 +12712,70,15,18,0.0 +12712,42,14,16,0.0 +12712,33,2.5,5,0.0 +12712,62,49.3,22,0.0 +12712,41,9.65,36,0.0 +12712,39,18,11,0.0 +12712,16,17.45,2,0.0 +12712,29,123.79,10,0.0 +12712,48,12.75,10,0.0 +12712,40,18.4,34,0.0 +12712,12,38,11,0.0 +12712,68,12.5,32,0.0 +12712,64,33.25,1,0.0 +12712,59,55,22,0.0 +12712,13,6,4,0.0 +12712,18,62.5,50,0.0 +12712,30,25.89,25,0.0 +12712,57,19.5,4,0.0 +12712,55,24,15,0.0 +12712,67,14,48,0.0 +12712,7,30,20,0.0 +12712,2,19,17,0.0 +12712,14,23.25,38,0.0 +12712,28,45.6,34,0.0 +12712,47,9.5,35,0.0 +12712,22,21,4,0.0 +12712,37,26,16,0.0 +12712,58,13.25,12,0.0 +12712,5,21.35,14,0.0 +12712,31,12.5,20,0.0 +12712,61,28.5,2,0.0 +12712,66,17,25,0.0 +12712,53,32.8,17,0.0 +12712,17,39,12,0.0 +12712,50,16.25,43,0.0 +12712,65,21.05,9,0.0 +12712,8,40,24,0.0 +12712,49,20,28,0.0 +12712,75,7.75,39,0.0 +12712,46,12,34,0.0 +12713,6,25,10,0.0 +12713,66,17,29,0.0 +12713,13,6,48,0.0 +12713,35,18,44,0.0 +12713,5,21.35,18,0.0 +12713,25,14,25,0.0 +12713,10,31,45,0.0 +12713,12,38,49,0.0 +12713,75,7.75,41,0.0 +12713,20,81,20,0.0 +12713,45,9.5,21,0.0 +12713,61,28.5,1,0.0 +12713,48,12.75,9,0.0 +12713,69,36,10,0.0 +12713,27,43.9,29,0.0 +12713,64,33.25,16,0.0 +12713,33,2.5,32,0.0 +12713,50,16.25,3,0.0 +12713,63,43.9,35,0.0 +12713,24,4.5,16,0.0 +12713,2,19,15,0.0 +12713,43,46,11,0.0 +12713,55,24,21,0.0 +12713,52,7,21,0.0 +12713,37,26,40,0.0 +12713,72,34.8,33,0.0 +12713,44,19.45,26,0.0 +12713,70,15,8,0.0 +12713,68,12.5,20,0.0 +12713,15,15.5,4,0.0 +12713,14,23.25,39,0.0 +12713,58,13.25,10,0.0 +12713,53,32.8,11,0.0 +12713,51,53,18,0.0 +12713,74,10,49,0.0 +12713,60,34,36,0.0 +12713,11,21,28,0.0 +12713,77,13,36,0.0 +12713,8,40,12,0.0 +12713,18,62.5,48,0.0 +12713,19,9.2,14,0.0 +12713,65,21.05,34,0.0 +12713,21,10,39,0.0 +12713,34,14,22,0.0 +12713,28,45.6,33,0.0 +12713,9,97,18,0.0 +12713,26,31.23,35,0.0 +12713,30,25.89,46,0.0 +12713,41,9.65,11,0.0 +12713,29,123.79,30,0.0 +12713,7,30,8,0.0 +12713,22,21,15,0.0 +12713,38,263.5,1,0.0 +12713,62,49.3,23,0.0 +12713,16,17.45,4,0.0 +12713,39,18,32,0.0 +12713,36,19,25,0.0 +12713,17,39,49,0.0 +12713,73,15,41,0.0 +12713,76,18,34,0.0 +12713,57,19.5,19,0.0 +12713,71,21.5,35,0.0 +12713,54,7.45,21,0.0 +12713,40,18.4,7,0.0 +12713,32,32,2,0.0 +12713,23,9,25,0.0 +12713,67,14,37,0.0 +12713,31,12.5,30,0.0 +12713,3,10,47,0.0 +12713,46,12,22,0.0 +12713,4,22,28,0.0 +12714,68,12.5,2,0.0 +12714,4,22,10,0.0 +12714,29,123.79,33,0.0 +12714,46,12,19,0.0 +12714,27,43.9,46,0.0 +12714,54,7.45,25,0.0 +12714,31,12.5,6,0.0 +12714,24,4.5,44,0.0 +12714,59,55,13,0.0 +12714,17,39,2,0.0 +12714,62,49.3,5,0.0 +12714,23,9,31,0.0 +12714,74,10,43,0.0 +12714,52,7,38,0.0 +12714,51,53,33,0.0 +12714,76,18,14,0.0 +12714,19,9.2,44,0.0 +12714,26,31.23,7,0.0 +12714,67,14,17,0.0 +12714,58,13.25,38,0.0 +12714,36,19,2,0.0 +12714,72,34.8,17,0.0 +12714,40,18.4,17,0.0 +12714,64,33.25,47,0.0 +12714,43,46,31,0.0 +12714,3,10,32,0.0 +12714,25,14,14,0.0 +12714,28,45.6,40,0.0 +12714,53,32.8,42,0.0 +12714,34,14,4,0.0 +12714,16,17.45,33,0.0 +12714,44,19.45,31,0.0 +12715,20,81,12,0.0 +12715,54,7.45,47,0.0 +12715,41,9.65,4,0.0 +12715,27,43.9,36,0.0 +12715,8,40,49,0.0 +12715,67,14,48,0.0 +12715,61,28.5,2,0.0 +12715,21,10,29,0.0 +12715,45,9.5,45,0.0 +12715,60,34,50,0.0 +12715,28,45.6,21,0.0 +12715,58,13.25,25,0.0 +12715,56,38,33,0.0 +12715,77,13,18,0.0 +12715,70,15,23,0.0 +12715,22,21,22,0.0 +12715,9,97,43,0.0 +12715,68,12.5,28,0.0 +12715,40,18.4,3,0.0 +12715,25,14,4,0.0 +12715,34,14,38,0.0 +12715,43,46,50,0.0 +12715,46,12,40,0.0 +12715,75,7.75,45,0.0 +12715,14,23.25,20,0.0 +12715,42,14,35,0.0 +12715,71,21.5,26,0.0 +12715,65,21.05,8,0.0 +12715,15,15.5,40,0.0 +12715,48,12.75,26,0.0 +12715,19,9.2,24,0.0 +12715,72,34.8,10,0.0 +12715,23,9,21,0.0 +12715,47,9.5,49,0.0 +12715,13,6,47,0.0 +12715,57,19.5,50,0.0 +12715,12,38,5,0.0 +12715,49,20,6,0.0 +12715,62,49.3,12,0.0 +12715,32,32,23,0.0 +12715,6,25,22,0.0 +12715,64,33.25,18,0.0 +12715,50,16.25,36,0.0 +12715,30,25.89,2,0.0 +12715,44,19.45,4,0.0 +12715,59,55,44,0.0 +12715,29,123.79,37,0.0 +12715,16,17.45,27,0.0 +12715,69,36,46,0.0 +12715,37,26,8,0.0 +12715,2,19,48,0.0 +12715,5,21.35,27,0.0 +12715,33,2.5,4,0.0 +12715,73,15,35,0.0 +12715,11,21,16,0.0 +12715,10,31,25,0.0 +12715,74,10,4,0.0 +12715,51,53,17,0.0 +12715,66,17,23,0.0 +12715,39,18,29,0.0 +12715,36,19,18,0.0 +12715,18,62.5,28,0.0 +12715,31,12.5,33,0.0 +12715,17,39,3,0.0 +12716,30,25.89,6,0.0 +12716,70,15,31,0.0 +12716,59,55,5,0.0 +12716,45,9.5,37,0.0 +12716,21,10,2,0.0 +12716,38,263.5,20,0.0 +12716,34,14,36,0.0 +12716,22,21,45,0.0 +12716,63,43.9,46,0.0 +12716,8,40,31,0.0 +12716,60,34,1,0.0 +12716,16,17.45,29,0.0 +12716,33,2.5,45,0.0 +12716,43,46,41,0.0 +12716,32,32,7,0.0 +12716,37,26,40,0.0 +12716,27,43.9,45,0.0 +12716,48,12.75,9,0.0 +12716,39,18,47,0.0 +12716,41,9.65,34,0.0 +12716,14,23.25,31,0.0 +12716,51,53,2,0.0 +12716,75,7.75,48,0.0 +12716,20,81,15,0.0 +12716,17,39,14,0.0 +12716,68,12.5,40,0.0 +12716,6,25,22,0.0 +12716,52,7,10,0.0 +12716,1,18,4,0.0 +12716,57,19.5,29,0.0 +12716,19,9.2,50,0.0 +12716,55,24,37,0.0 +12716,71,21.5,15,0.0 +12716,64,33.25,42,0.0 +12716,72,34.8,38,0.0 +12716,53,32.8,42,0.0 +12716,12,38,21,0.0 +12716,28,45.6,20,0.0 +12716,18,62.5,30,0.0 +12716,35,18,29,0.0 +12716,49,20,1,0.0 +12716,73,15,27,0.0 +12716,13,6,8,0.0 +12716,65,21.05,29,0.0 +12716,46,12,28,0.0 +12716,23,9,21,0.0 +12716,58,13.25,39,0.0 +12716,69,36,38,0.0 +12716,77,13,44,0.0 +12716,36,19,22,0.0 +12716,4,22,9,0.0 +12716,42,14,33,0.0 +12716,7,30,10,0.0 +12716,54,7.45,47,0.0 +12716,62,49.3,25,0.0 +12716,2,19,33,0.0 +12716,40,18.4,3,0.0 +12716,31,12.5,35,0.0 +12716,24,4.5,27,0.0 +12716,50,16.25,28,0.0 +12716,44,19.45,34,0.0 +12716,25,14,12,0.0 +12716,74,10,47,0.0 +12716,3,10,26,0.0 +12716,76,18,29,0.0 +12716,47,9.5,17,0.0 +12716,67,14,4,0.0 +12716,9,97,10,0.0 +12716,11,21,14,0.0 +12717,27,43.9,16,0.0 +12717,46,12,12,0.0 +12717,2,19,14,0.0 +12718,74,10,20,0.0 +12718,48,12.75,16,0.0 +12718,66,17,14,0.0 +12718,9,97,5,0.0 +12718,1,18,37,0.0 +12718,69,36,38,0.0 +12718,7,30,31,0.0 +12718,54,7.45,12,0.0 +12718,10,31,40,0.0 +12718,49,20,3,0.0 +12718,64,33.25,36,0.0 +12718,59,55,32,0.0 +12718,67,14,17,0.0 +12718,42,14,12,0.0 +12718,37,26,21,0.0 +12718,4,22,14,0.0 +12718,57,19.5,10,0.0 +12718,12,38,31,0.0 +12718,61,28.5,16,0.0 +12718,28,45.6,48,0.0 +12718,20,81,11,0.0 +12719,50,16.25,33,0.0 +12719,68,12.5,37,0.0 +12719,52,7,37,0.0 +12719,60,34,43,0.0 +12719,12,38,16,0.0 +12719,70,15,48,0.0 +12719,42,14,7,0.0 +12719,54,7.45,6,0.0 +12719,69,36,28,0.0 +12719,51,53,33,0.0 +12719,55,24,13,0.0 +12719,2,19,2,0.0 +12719,15,15.5,31,0.0 +12719,47,9.5,23,0.0 +12719,43,46,24,0.0 +12719,59,55,10,0.0 +12719,40,18.4,6,0.0 +12719,48,12.75,25,0.0 +12719,35,18,24,0.0 +12719,22,21,1,0.0 +12719,75,7.75,6,0.0 +12719,45,9.5,18,0.0 +12719,26,31.23,48,0.0 +12719,32,32,6,0.0 +12719,3,10,34,0.0 +12719,74,10,21,0.0 +12719,64,33.25,20,0.0 +12719,67,14,25,0.0 +12719,9,97,26,0.0 +12719,5,21.35,19,0.0 +12719,56,38,5,0.0 +12719,39,18,28,0.0 +12719,46,12,12,0.0 +12719,23,9,31,0.0 +12720,55,24,13,0.0 +12720,22,21,33,0.0 +12720,40,18.4,19,0.0 +12720,24,4.5,17,0.0 +12720,16,17.45,2,0.0 +12720,71,21.5,33,0.0 +12721,40,18.4,35,0.0 +12721,57,19.5,46,0.0 +12721,76,18,46,0.0 +12721,21,10,44,0.0 +12721,20,81,17,0.0 +12721,16,17.45,29,0.0 +12721,19,9.2,7,0.0 +12721,60,34,39,0.0 +12721,59,55,50,0.0 +12721,4,22,28,0.0 +12721,36,19,8,0.0 +12721,12,38,39,0.0 +12721,66,17,25,0.0 +12721,42,14,45,0.0 +12721,14,23.25,22,0.0 +12721,5,21.35,21,0.0 +12721,43,46,12,0.0 +12721,28,45.6,20,0.0 +12721,48,12.75,1,0.0 +12721,74,10,19,0.0 +12721,63,43.9,10,0.0 +12721,68,12.5,38,0.0 +12721,26,31.23,36,0.0 +12721,52,7,13,0.0 +12721,53,32.8,3,0.0 +12721,33,2.5,41,0.0 +12721,65,21.05,22,0.0 +12721,75,7.75,32,0.0 +12721,11,21,27,0.0 +12721,15,15.5,39,0.0 +12721,62,49.3,26,0.0 +12721,64,33.25,42,0.0 +12721,9,97,36,0.0 +12721,7,30,36,0.0 +12721,31,12.5,1,0.0 +12721,29,123.79,38,0.0 +12721,22,21,45,0.0 +12721,24,4.5,3,0.0 +12721,56,38,19,0.0 +12721,39,18,28,0.0 +12721,32,32,25,0.0 +12721,25,14,45,0.0 +12721,30,25.89,5,0.0 +12721,51,53,19,0.0 +12722,63,43.9,14,0.0 +12722,56,38,41,0.0 +12722,18,62.5,17,0.0 +12723,24,4.5,1,0.0 +12723,64,33.25,45,0.0 +12723,55,24,19,0.0 +12723,63,43.9,6,0.0 +12723,37,26,36,0.0 +12723,62,49.3,34,0.0 +12723,22,21,33,0.0 +12723,2,19,44,0.0 +12723,77,13,37,0.0 +12723,50,16.25,5,0.0 +12723,27,43.9,35,0.0 +12723,68,12.5,46,0.0 +12723,72,34.8,12,0.0 +12723,33,2.5,30,0.0 +12723,60,34,33,0.0 +12723,69,36,11,0.0 +12723,49,20,5,0.0 +12723,15,15.5,5,0.0 +12723,71,21.5,35,0.0 +12723,42,14,6,0.0 +12723,70,15,50,0.0 +12723,73,15,12,0.0 +12723,14,23.25,15,0.0 +12723,34,14,19,0.0 +12723,74,10,46,0.0 +12723,21,10,10,0.0 +12723,75,7.75,34,0.0 +12723,4,22,37,0.0 +12723,28,45.6,37,0.0 +12723,40,18.4,4,0.0 +12723,35,18,3,0.0 +12723,45,9.5,26,0.0 +12723,9,97,44,0.0 +12723,5,21.35,23,0.0 +12723,54,7.45,9,0.0 +12723,32,32,12,0.0 +12723,12,38,28,0.0 +12723,38,263.5,4,0.0 +12723,39,18,48,0.0 +12723,52,7,18,0.0 +12723,25,14,21,0.0 +12723,30,25.89,19,0.0 +12723,66,17,19,0.0 +12723,6,25,38,0.0 +12723,17,39,5,0.0 +12723,7,30,20,0.0 +12723,31,12.5,34,0.0 +12723,76,18,26,0.0 +12723,26,31.23,28,0.0 +12723,1,18,12,0.0 +12723,13,6,23,0.0 +12723,36,19,14,0.0 +12723,16,17.45,34,0.0 +12723,56,38,7,0.0 +12723,8,40,43,0.0 +12723,18,62.5,9,0.0 +12723,59,55,41,0.0 +12724,13,6,30,0.0 +12724,15,15.5,39,0.0 +12724,31,12.5,44,0.0 +12724,63,43.9,1,0.0 +12724,25,14,31,0.0 +12724,32,32,41,0.0 +12724,14,23.25,21,0.0 +12724,46,12,19,0.0 +12724,54,7.45,23,0.0 +12724,17,39,42,0.0 +12724,76,18,27,0.0 +12724,49,20,43,0.0 +12724,6,25,50,0.0 +12724,26,31.23,9,0.0 +12724,69,36,28,0.0 +12724,43,46,19,0.0 +12724,77,13,6,0.0 +12724,10,31,33,0.0 +12724,75,7.75,38,0.0 +12724,12,38,14,0.0 +12724,55,24,30,0.0 +12724,1,18,22,0.0 +12724,70,15,4,0.0 +12724,48,12.75,10,0.0 +12724,4,22,18,0.0 +12724,71,21.5,1,0.0 +12724,67,14,37,0.0 +12724,61,28.5,27,0.0 +12724,50,16.25,39,0.0 +12724,62,49.3,5,0.0 +12724,8,40,49,0.0 +12724,22,21,40,0.0 +12724,65,21.05,24,0.0 +12724,20,81,34,0.0 +12724,51,53,4,0.0 +12724,24,4.5,10,0.0 +12724,21,10,3,0.0 +12724,34,14,23,0.0 +12724,35,18,41,0.0 +12724,23,9,12,0.0 +12724,72,34.8,16,0.0 +12724,9,97,39,0.0 +12724,57,19.5,4,0.0 +12724,38,263.5,45,0.0 +12724,39,18,12,0.0 +12724,64,33.25,24,0.0 +12724,59,55,22,0.0 +12725,3,10,5,0.0 +12725,61,28.5,15,0.0 +12725,9,97,29,0.0 +12725,57,19.5,23,0.0 +12725,64,33.25,17,0.0 +12725,45,9.5,45,0.0 +12725,44,19.45,38,0.0 +12725,63,43.9,8,0.0 +12725,75,7.75,21,0.0 +12726,42,14,14,0.0 +12726,58,13.25,4,0.0 +12726,50,16.25,14,0.0 +12726,40,18.4,43,0.0 +12726,7,30,21,0.0 +12726,60,34,3,0.0 +12726,73,15,28,0.0 +12726,11,21,33,0.0 +12726,74,10,37,0.0 +12727,29,123.79,11,0.0 +12727,20,81,9,0.0 +12727,11,21,47,0.0 +12727,27,43.9,33,0.0 +12727,53,32.8,18,0.0 +12727,62,49.3,29,0.0 +12727,26,31.23,5,0.0 +12727,39,18,31,0.0 +12727,3,10,2,0.0 +12727,7,30,17,0.0 +12727,48,12.75,9,0.0 +12727,14,23.25,48,0.0 +12727,65,21.05,40,0.0 +12727,9,97,44,0.0 +12727,73,15,44,0.0 +12727,60,34,12,0.0 +12727,4,22,39,0.0 +12727,24,4.5,27,0.0 +12727,2,19,1,0.0 +12727,68,12.5,30,0.0 +12727,25,14,42,0.0 +12727,49,20,3,0.0 +12727,63,43.9,41,0.0 +12727,41,9.65,12,0.0 +12727,16,17.45,9,0.0 +12727,34,14,27,0.0 +12727,10,31,4,0.0 +12727,6,25,9,0.0 +12727,69,36,8,0.0 +12727,36,19,45,0.0 +12727,77,13,41,0.0 +12727,44,19.45,38,0.0 +12727,30,25.89,46,0.0 +12727,19,9.2,19,0.0 +12727,47,9.5,33,0.0 +12727,33,2.5,25,0.0 +12727,40,18.4,27,0.0 +12727,58,13.25,29,0.0 +12727,54,7.45,47,0.0 +12727,64,33.25,22,0.0 +12727,55,24,34,0.0 +12727,71,21.5,49,0.0 +12727,31,12.5,2,0.0 +12727,52,7,32,0.0 +12727,15,15.5,50,0.0 +12727,76,18,46,0.0 +12728,54,7.45,11,0.0 +12728,44,19.45,26,0.0 +12728,77,13,5,0.0 +12728,8,40,40,0.0 +12728,17,39,18,0.0 +12728,23,9,49,0.0 +12728,59,55,2,0.0 +12728,1,18,9,0.0 +12728,56,38,15,0.0 +12728,14,23.25,20,0.0 +12728,58,13.25,13,0.0 +12728,32,32,20,0.0 +12728,34,14,38,0.0 +12728,45,9.5,13,0.0 +12728,12,38,7,0.0 +12728,39,18,50,0.0 +12728,4,22,8,0.0 +12728,65,21.05,28,0.0 +12728,21,10,38,0.0 +12728,13,6,31,0.0 +12728,24,4.5,5,0.0 +12728,66,17,23,0.0 +12728,7,30,32,0.0 +12728,9,97,10,0.0 +12728,71,21.5,14,0.0 +12728,74,10,46,0.0 +12728,42,14,32,0.0 +12728,76,18,30,0.0 +12728,72,34.8,15,0.0 +12728,48,12.75,37,0.0 +12728,19,9.2,39,0.0 +12728,49,20,11,0.0 +12728,11,21,47,0.0 +12728,61,28.5,37,0.0 +12728,63,43.9,15,0.0 +12728,22,21,42,0.0 +12728,51,53,32,0.0 +12728,28,45.6,42,0.0 +12728,52,7,22,0.0 +12728,46,12,50,0.0 +12728,47,9.5,26,0.0 +12728,30,25.89,36,0.0 +12728,57,19.5,24,0.0 +12728,10,31,15,0.0 +12728,75,7.75,9,0.0 +12728,55,24,29,0.0 +12728,69,36,24,0.0 +12728,3,10,39,0.0 +12728,43,46,17,0.0 +12728,18,62.5,34,0.0 +12728,27,43.9,49,0.0 +12728,68,12.5,45,0.0 +12728,2,19,32,0.0 +12728,41,9.65,15,0.0 +12728,35,18,49,0.0 +12728,36,19,38,0.0 +12728,50,16.25,9,0.0 +12728,31,12.5,27,0.0 +12728,16,17.45,24,0.0 +12728,73,15,12,0.0 +12728,60,34,26,0.0 +12728,5,21.35,3,0.0 +12728,38,263.5,50,0.0 +12728,29,123.79,13,0.0 +12728,26,31.23,37,0.0 +12728,53,32.8,1,0.0 +12728,6,25,13,0.0 +12728,15,15.5,42,0.0 +12728,40,18.4,4,0.0 +12728,37,26,25,0.0 +12728,64,33.25,23,0.0 +12728,62,49.3,27,0.0 +12728,33,2.5,26,0.0 +12729,77,13,44,0.0 +12729,31,12.5,48,0.0 +12730,10,31,44,0.0 +12730,39,18,46,0.0 +12730,62,49.3,46,0.0 +12730,44,19.45,37,0.0 +12730,76,18,15,0.0 +12730,73,15,5,0.0 +12730,8,40,21,0.0 +12730,35,18,40,0.0 +12730,64,33.25,42,0.0 +12730,20,81,19,0.0 +12730,41,9.65,20,0.0 +12730,60,34,12,0.0 +12731,52,7,28,0.0 +12731,20,81,3,0.0 +12731,76,18,31,0.0 +12731,26,31.23,15,0.0 +12731,60,34,15,0.0 +12731,73,15,19,0.0 +12731,45,9.5,13,0.0 +12731,25,14,25,0.0 +12731,47,9.5,37,0.0 +12731,12,38,18,0.0 +12731,51,53,36,0.0 +12731,27,43.9,23,0.0 +12731,66,17,43,0.0 +12731,42,14,25,0.0 +12731,9,97,2,0.0 +12731,34,14,36,0.0 +12731,55,24,9,0.0 +12731,35,18,31,0.0 +12731,41,9.65,7,0.0 +12732,41,9.65,45,0.0 +12732,63,43.9,26,0.0 +12732,77,13,26,0.0 +12732,69,36,14,0.0 +12732,55,24,18,0.0 +12732,61,28.5,36,0.0 +12732,51,53,25,0.0 +12732,54,7.45,39,0.0 +12732,71,21.5,6,0.0 +12732,60,34,39,0.0 +12732,7,30,35,0.0 +12732,76,18,29,0.0 +12732,50,16.25,46,0.0 +12732,35,18,17,0.0 +12732,70,15,23,0.0 +12732,12,38,44,0.0 +12732,47,9.5,11,0.0 +12732,64,33.25,33,0.0 +12732,33,2.5,12,0.0 +12732,53,32.8,4,0.0 +12732,42,14,27,0.0 +12732,6,25,32,0.0 +12732,46,12,29,0.0 +12732,23,9,6,0.0 +12732,57,19.5,14,0.0 +12732,43,46,44,0.0 +12732,38,263.5,50,0.0 +12732,11,21,25,0.0 +12732,56,38,30,0.0 +12732,5,21.35,1,0.0 +12732,28,45.6,40,0.0 +12732,3,10,19,0.0 +12732,4,22,47,0.0 +12732,25,14,11,0.0 +12732,19,9.2,45,0.0 +12732,75,7.75,1,0.0 +12732,73,15,38,0.0 +12732,49,20,17,0.0 +12732,13,6,33,0.0 +12732,21,10,40,0.0 +12732,10,31,23,0.0 +12732,24,4.5,35,0.0 +12732,68,12.5,32,0.0 +12732,52,7,31,0.0 +12732,26,31.23,46,0.0 +12733,61,28.5,12,0.0 +12733,18,62.5,4,0.0 +12733,25,14,49,0.0 +12733,11,21,16,0.0 +12733,40,18.4,10,0.0 +12733,73,15,16,0.0 +12733,38,263.5,26,0.0 +12733,32,32,8,0.0 +12733,52,7,36,0.0 +12733,30,25.89,34,0.0 +12733,42,14,10,0.0 +12733,49,20,48,0.0 +12733,5,21.35,8,0.0 +12733,14,23.25,45,0.0 +12733,2,19,5,0.0 +12733,39,18,19,0.0 +12733,77,13,33,0.0 +12733,4,22,14,0.0 +12733,6,25,10,0.0 +12733,33,2.5,24,0.0 +12733,51,53,23,0.0 +12733,35,18,43,0.0 +12733,65,21.05,40,0.0 +12733,71,21.5,46,0.0 +12733,50,16.25,2,0.0 +12733,13,6,28,0.0 +12733,44,19.45,42,0.0 +12733,69,36,38,0.0 +12733,1,18,26,0.0 +12733,19,9.2,8,0.0 +12733,48,12.75,23,0.0 +12733,53,32.8,47,0.0 +12733,7,30,39,0.0 +12733,64,33.25,8,0.0 +12733,47,9.5,43,0.0 +12733,74,10,23,0.0 +12733,55,24,24,0.0 +12733,26,31.23,26,0.0 +12733,72,34.8,13,0.0 +12733,10,31,31,0.0 +12733,60,34,17,0.0 +12733,57,19.5,16,0.0 +12733,21,10,13,0.0 +12733,68,12.5,39,0.0 +12733,28,45.6,10,0.0 +12733,75,7.75,49,0.0 +12733,70,15,45,0.0 +12733,8,40,21,0.0 +12733,12,38,35,0.0 +12733,15,15.5,24,0.0 +12733,45,9.5,26,0.0 +12733,46,12,18,0.0 +12733,3,10,5,0.0 +12733,22,21,15,0.0 +12733,58,13.25,11,0.0 +12733,17,39,24,0.0 +12733,31,12.5,4,0.0 +12734,45,9.5,37,0.0 +12734,16,17.45,49,0.0 +12734,66,17,34,0.0 +12734,52,7,9,0.0 +12734,65,21.05,41,0.0 +12734,5,21.35,21,0.0 +12734,8,40,23,0.0 +12734,37,26,33,0.0 +12734,76,18,14,0.0 +12734,46,12,20,0.0 +12734,39,18,41,0.0 +12734,12,38,6,0.0 +12734,43,46,6,0.0 +12734,42,14,34,0.0 +12734,27,43.9,45,0.0 +12734,36,19,29,0.0 +12734,3,10,27,0.0 +12734,47,9.5,26,0.0 +12734,31,12.5,46,0.0 +12734,14,23.25,3,0.0 +12734,29,123.79,38,0.0 +12734,25,14,27,0.0 +12734,10,31,32,0.0 +12734,30,25.89,25,0.0 +12734,53,32.8,38,0.0 +12734,35,18,16,0.0 +12734,11,21,46,0.0 +12734,40,18.4,24,0.0 +12734,6,25,12,0.0 +12734,73,15,14,0.0 +12734,57,19.5,5,0.0 +12734,13,6,44,0.0 +12734,4,22,21,0.0 +12734,44,19.45,27,0.0 +12734,75,7.75,48,0.0 +12734,70,15,32,0.0 +12734,28,45.6,2,0.0 +12734,74,10,47,0.0 +12734,15,15.5,12,0.0 +12734,23,9,2,0.0 +12734,17,39,42,0.0 +12734,41,9.65,44,0.0 +12734,18,62.5,46,0.0 +12734,56,38,21,0.0 +12734,9,97,26,0.0 +12734,34,14,25,0.0 +12734,59,55,32,0.0 +12734,49,20,7,0.0 +12734,19,9.2,9,0.0 +12734,24,4.5,21,0.0 +12734,60,34,38,0.0 +12734,51,53,8,0.0 +12734,32,32,48,0.0 +12734,61,28.5,38,0.0 +12734,26,31.23,5,0.0 +12734,62,49.3,47,0.0 +12734,21,10,17,0.0 +12734,48,12.75,45,0.0 +12734,22,21,37,0.0 +12734,50,16.25,17,0.0 +12734,58,13.25,6,0.0 +12734,38,263.5,14,0.0 +12734,55,24,22,0.0 +12734,33,2.5,41,0.0 +12734,68,12.5,42,0.0 +12734,20,81,28,0.0 +12734,77,13,35,0.0 +12734,64,33.25,27,0.0 +12734,1,18,50,0.0 +12734,71,21.5,46,0.0 +12734,67,14,31,0.0 +12734,54,7.45,32,0.0 +12734,7,30,27,0.0 +12734,63,43.9,16,0.0 +12734,69,36,29,0.0 +12735,14,23.25,1,0.0 +12735,11,21,16,0.0 +12735,54,7.45,7,0.0 +12735,12,38,40,0.0 +12735,35,18,11,0.0 +12735,65,21.05,35,0.0 +12735,52,7,37,0.0 +12735,32,32,17,0.0 +12735,56,38,4,0.0 +12735,61,28.5,32,0.0 +12735,21,10,45,0.0 +12735,24,4.5,36,0.0 +12735,45,9.5,45,0.0 +12735,26,31.23,7,0.0 +12735,39,18,13,0.0 +12735,34,14,27,0.0 +12735,1,18,6,0.0 +12735,6,25,49,0.0 +12735,57,19.5,11,0.0 +12735,25,14,33,0.0 +12735,48,12.75,8,0.0 +12735,19,9.2,33,0.0 +12735,67,14,31,0.0 +12735,77,13,42,0.0 +12735,47,9.5,9,0.0 +12735,27,43.9,43,0.0 +12735,44,19.45,48,0.0 +12735,36,19,11,0.0 +12735,69,36,30,0.0 +12735,74,10,37,0.0 +12735,17,39,14,0.0 +12735,37,26,29,0.0 +12735,72,34.8,7,0.0 +12735,76,18,29,0.0 +12735,60,34,40,0.0 +12735,64,33.25,28,0.0 +12735,40,18.4,46,0.0 +12735,28,45.6,35,0.0 +12735,43,46,10,0.0 +12735,55,24,10,0.0 +12735,31,12.5,24,0.0 +12735,16,17.45,39,0.0 +12735,68,12.5,3,0.0 +12735,73,15,44,0.0 +12735,46,12,42,0.0 +12735,29,123.79,26,0.0 +12735,53,32.8,12,0.0 +12735,18,62.5,36,0.0 +12735,23,9,17,0.0 +12735,9,97,25,0.0 +12735,22,21,19,0.0 +12735,75,7.75,30,0.0 +12735,66,17,17,0.0 +12735,62,49.3,43,0.0 +12735,49,20,13,0.0 +12735,30,25.89,10,0.0 +12735,4,22,11,0.0 +12735,20,81,13,0.0 +12735,10,31,37,0.0 +12735,3,10,27,0.0 +12735,70,15,14,0.0 +12735,58,13.25,27,0.0 +12735,50,16.25,16,0.0 +12735,51,53,2,0.0 +12735,42,14,4,0.0 +12735,63,43.9,38,0.0 +12735,15,15.5,21,0.0 +12735,33,2.5,45,0.0 +12735,38,263.5,20,0.0 +12735,71,21.5,23,0.0 +12736,77,13,12,0.0 +12736,48,12.75,49,0.0 +12736,6,25,17,0.0 +12736,9,97,24,0.0 +12736,34,14,4,0.0 +12736,58,13.25,27,0.0 +12736,25,14,22,0.0 +12736,15,15.5,42,0.0 +12736,7,30,24,0.0 +12736,5,21.35,5,0.0 +12736,56,38,12,0.0 +12737,75,7.75,7,0.0 +12737,6,25,18,0.0 +12737,8,40,37,0.0 +12737,43,46,24,0.0 +12737,58,13.25,46,0.0 +12737,42,14,36,0.0 +12737,66,17,15,0.0 +12737,59,55,28,0.0 +12737,68,12.5,29,0.0 +12737,54,7.45,7,0.0 +12737,22,21,31,0.0 +12737,52,7,40,0.0 +12737,16,17.45,5,0.0 +12737,18,62.5,37,0.0 +12737,39,18,12,0.0 +12737,32,32,19,0.0 +12737,49,20,2,0.0 +12737,11,21,31,0.0 +12737,35,18,26,0.0 +12737,4,22,46,0.0 +12737,45,9.5,32,0.0 +12737,51,53,49,0.0 +12737,13,6,7,0.0 +12737,17,39,5,0.0 +12737,28,45.6,34,0.0 +12737,38,263.5,28,0.0 +12737,56,38,27,0.0 +12737,25,14,11,0.0 +12737,65,21.05,7,0.0 +12737,62,49.3,20,0.0 +12737,9,97,16,0.0 +12737,46,12,14,0.0 +12737,47,9.5,7,0.0 +12737,23,9,4,0.0 +12737,50,16.25,44,0.0 +12737,1,18,40,0.0 +12737,67,14,41,0.0 +12737,12,38,26,0.0 +12737,26,31.23,31,0.0 +12737,63,43.9,19,0.0 +12737,64,33.25,21,0.0 +12737,40,18.4,28,0.0 +12737,77,13,50,0.0 +12737,3,10,48,0.0 +12737,5,21.35,20,0.0 +12737,31,12.5,39,0.0 +12737,61,28.5,16,0.0 +12737,57,19.5,10,0.0 +12737,48,12.75,20,0.0 +12737,71,21.5,36,0.0 +12737,53,32.8,6,0.0 +12737,27,43.9,2,0.0 +12737,55,24,11,0.0 +12737,74,10,49,0.0 +12737,15,15.5,41,0.0 +12737,34,14,31,0.0 +12737,60,34,4,0.0 +12737,69,36,30,0.0 +12737,30,25.89,48,0.0 +12737,2,19,40,0.0 +12737,44,19.45,4,0.0 +12737,29,123.79,39,0.0 +12737,24,4.5,19,0.0 +12738,35,18,46,0.0 +12738,19,9.2,10,0.0 +12738,67,14,46,0.0 +12738,4,22,17,0.0 +12738,54,7.45,8,0.0 +12738,73,15,9,0.0 +12738,75,7.75,14,0.0 +12738,39,18,27,0.0 +12738,51,53,12,0.0 +12738,59,55,38,0.0 +12738,33,2.5,27,0.0 +12738,56,38,7,0.0 +12738,74,10,39,0.0 +12738,16,17.45,1,0.0 +12738,9,97,13,0.0 +12738,43,46,47,0.0 +12738,37,26,10,0.0 +12738,6,25,33,0.0 +12738,23,9,6,0.0 +12738,25,14,19,0.0 +12738,65,21.05,41,0.0 +12738,34,14,38,0.0 +12738,57,19.5,15,0.0 +12738,71,21.5,28,0.0 +12738,40,18.4,34,0.0 +12738,27,43.9,23,0.0 +12738,42,14,46,0.0 +12738,2,19,41,0.0 +12738,70,15,40,0.0 +12738,66,17,3,0.0 +12738,18,62.5,35,0.0 +12738,62,49.3,10,0.0 +12738,52,7,14,0.0 +12738,7,30,15,0.0 +12738,22,21,6,0.0 +12738,69,36,37,0.0 +12738,48,12.75,10,0.0 +12738,30,25.89,19,0.0 +12738,20,81,23,0.0 +12738,44,19.45,13,0.0 +12738,60,34,47,0.0 +12738,24,4.5,27,0.0 +12738,77,13,22,0.0 +12738,38,263.5,4,0.0 +12738,55,24,11,0.0 +12738,11,21,43,0.0 +12738,46,12,14,0.0 +12738,47,9.5,18,0.0 +12738,76,18,38,0.0 +12738,53,32.8,16,0.0 +12738,29,123.79,30,0.0 +12738,28,45.6,37,0.0 +12738,49,20,47,0.0 +12738,45,9.5,33,0.0 +12738,17,39,5,0.0 +12738,1,18,13,0.0 +12738,68,12.5,8,0.0 +12738,12,38,23,0.0 +12738,15,15.5,13,0.0 +12738,50,16.25,32,0.0 +12738,41,9.65,26,0.0 +12738,10,31,7,0.0 +12738,63,43.9,3,0.0 +12738,31,12.5,15,0.0 +12738,14,23.25,16,0.0 +12738,58,13.25,2,0.0 +12738,3,10,26,0.0 +12738,64,33.25,4,0.0 +12738,36,19,33,0.0 +12738,13,6,39,0.0 +12738,26,31.23,48,0.0 +12738,8,40,37,0.0 +12739,17,39,20,0.0 +12739,69,36,4,0.0 +12739,62,49.3,19,0.0 +12739,76,18,24,0.0 +12739,50,16.25,17,0.0 +12739,74,10,43,0.0 +12739,22,21,26,0.0 +12739,43,46,42,0.0 +12739,31,12.5,4,0.0 +12739,53,32.8,29,0.0 +12739,28,45.6,45,0.0 +12739,8,40,16,0.0 +12739,32,32,32,0.0 +12739,46,12,23,0.0 +12739,52,7,8,0.0 +12739,14,23.25,26,0.0 +12739,38,263.5,10,0.0 +12739,13,6,32,0.0 +12739,66,17,48,0.0 +12739,9,97,47,0.0 +12739,68,12.5,40,0.0 +12739,23,9,49,0.0 +12739,55,24,20,0.0 +12739,35,18,31,0.0 +12739,65,21.05,13,0.0 +12739,15,15.5,37,0.0 +12739,12,38,46,0.0 +12739,41,9.65,1,0.0 +12739,58,13.25,7,0.0 +12739,72,34.8,32,0.0 +12739,1,18,50,0.0 +12739,71,21.5,4,0.0 +12739,63,43.9,39,0.0 +12739,11,21,9,0.0 +12739,19,9.2,39,0.0 +12739,4,22,49,0.0 +12739,42,14,4,0.0 +12739,34,14,20,0.0 +12739,7,30,32,0.0 +12739,44,19.45,36,0.0 +12739,57,19.5,28,0.0 +12739,18,62.5,12,0.0 +12739,37,26,32,0.0 +12739,29,123.79,39,0.0 +12739,20,81,6,0.0 +12739,64,33.25,1,0.0 +12739,36,19,27,0.0 +12739,6,25,32,0.0 +12739,40,18.4,6,0.0 +12739,54,7.45,4,0.0 +12739,75,7.75,17,0.0 +12739,2,19,12,0.0 +12739,73,15,42,0.0 +12739,30,25.89,25,0.0 +12739,21,10,24,0.0 +12739,59,55,10,0.0 +12739,33,2.5,11,0.0 +12739,27,43.9,12,0.0 +12739,3,10,48,0.0 +12739,56,38,24,0.0 +12739,67,14,35,0.0 +12739,16,17.45,18,0.0 +12739,48,12.75,36,0.0 +12739,51,53,20,0.0 +12739,70,15,5,0.0 +12739,77,13,12,0.0 +12739,25,14,20,0.0 +12739,49,20,39,0.0 +12739,61,28.5,25,0.0 +12739,45,9.5,15,0.0 +12739,24,4.5,37,0.0 +12739,26,31.23,19,0.0 +12739,10,31,49,0.0 +12739,5,21.35,24,0.0 +12739,47,9.5,3,0.0 +12739,39,18,50,0.0 +12740,31,12.5,21,0.0 +12740,4,22,14,0.0 +12740,16,17.45,41,0.0 +12740,2,19,46,0.0 +12740,27,43.9,25,0.0 +12740,75,7.75,37,0.0 +12740,43,46,38,0.0 +12740,14,23.25,18,0.0 +12740,67,14,17,0.0 +12740,1,18,12,0.0 +12740,65,21.05,43,0.0 +12740,49,20,30,0.0 +12740,55,24,44,0.0 +12740,10,31,2,0.0 +12740,70,15,16,0.0 +12740,7,30,20,0.0 +12740,52,7,8,0.0 +12740,54,7.45,13,0.0 +12740,12,38,29,0.0 +12740,76,18,18,0.0 +12740,24,4.5,16,0.0 +12740,63,43.9,48,0.0 +12740,28,45.6,22,0.0 +12740,47,9.5,41,0.0 +12740,73,15,45,0.0 +12740,35,18,37,0.0 +12740,32,32,40,0.0 +12740,25,14,12,0.0 +12740,34,14,42,0.0 +12740,45,9.5,49,0.0 +12740,21,10,9,0.0 +12740,56,38,43,0.0 +12740,19,9.2,9,0.0 +12740,60,34,42,0.0 +12740,33,2.5,1,0.0 +12740,29,123.79,15,0.0 +12740,13,6,23,0.0 +12741,63,43.9,28,0.0 +12741,28,45.6,18,0.0 +12741,76,18,49,0.0 +12741,59,55,22,0.0 +12741,18,62.5,43,0.0 +12741,15,15.5,28,0.0 +12741,24,4.5,10,0.0 +12741,65,21.05,42,0.0 +12741,30,25.89,22,0.0 +12741,20,81,2,0.0 +12741,64,33.25,18,0.0 +12741,37,26,11,0.0 +12741,52,7,16,0.0 +12741,62,49.3,13,0.0 +12741,39,18,14,0.0 +12741,33,2.5,22,0.0 +12741,55,24,39,0.0 +12741,70,15,43,0.0 +12741,75,7.75,11,0.0 +12741,45,9.5,21,0.0 +12741,61,28.5,43,0.0 +12741,77,13,16,0.0 +12741,17,39,41,0.0 +12741,41,9.65,17,0.0 +12741,5,21.35,43,0.0 +12741,67,14,5,0.0 +12741,14,23.25,32,0.0 +12741,21,10,29,0.0 +12741,44,19.45,39,0.0 +12741,16,17.45,26,0.0 +12741,6,25,3,0.0 +12741,8,40,15,0.0 +12741,10,31,33,0.0 +12741,43,46,11,0.0 +12741,46,12,3,0.0 +12741,69,36,32,0.0 +12741,72,34.8,47,0.0 +12741,4,22,46,0.0 +12741,53,32.8,14,0.0 +12741,48,12.75,49,0.0 +12741,57,19.5,44,0.0 +12741,60,34,49,0.0 +12741,47,9.5,38,0.0 +12741,74,10,1,0.0 +12741,29,123.79,23,0.0 +12741,2,19,44,0.0 +12741,32,32,21,0.0 +12741,35,18,23,0.0 +12741,73,15,47,0.0 +12741,50,16.25,32,0.0 +12741,11,21,28,0.0 +12741,66,17,43,0.0 +12741,58,13.25,2,0.0 +12741,31,12.5,31,0.0 +12741,38,263.5,7,0.0 +12741,42,14,10,0.0 +12741,12,38,43,0.0 +12741,22,21,23,0.0 +12741,68,12.5,21,0.0 +12741,34,14,1,0.0 +12742,25,14,34,0.0 +12742,55,24,14,0.0 +12742,61,28.5,32,0.0 +12742,72,34.8,31,0.0 +12742,8,40,42,0.0 +12742,33,2.5,9,0.0 +12742,30,25.89,26,0.0 +12742,7,30,46,0.0 +12742,29,123.79,39,0.0 +12742,3,10,22,0.0 +12742,41,9.65,14,0.0 +12742,64,33.25,17,0.0 +12742,9,97,29,0.0 +12742,75,7.75,7,0.0 +12742,19,9.2,41,0.0 +12742,22,21,50,0.0 +12742,1,18,28,0.0 +12743,48,12.75,16,0.0 +12743,73,15,41,0.0 +12743,42,14,16,0.0 +12743,17,39,4,0.0 +12743,40,18.4,47,0.0 +12743,1,18,26,0.0 +12744,57,19.5,23,0.0 +12744,38,263.5,27,0.0 +12744,76,18,44,0.0 +12744,25,14,35,0.0 +12744,43,46,10,0.0 +12744,56,38,41,0.0 +12744,8,40,3,0.0 +12744,39,18,30,0.0 +12744,4,22,29,0.0 +12744,16,17.45,11,0.0 +12744,53,32.8,15,0.0 +12744,44,19.45,13,0.0 +12744,19,9.2,39,0.0 +12744,64,33.25,19,0.0 +12744,11,21,50,0.0 +12744,18,62.5,21,0.0 +12744,24,4.5,40,0.0 +12744,72,34.8,45,0.0 +12744,29,123.79,7,0.0 +12744,26,31.23,14,0.0 +12744,6,25,19,0.0 +12744,52,7,18,0.0 +12744,3,10,5,0.0 +12744,21,10,24,0.0 +12744,1,18,11,0.0 +12744,46,12,27,0.0 +12744,58,13.25,20,0.0 +12744,60,34,6,0.0 +12744,55,24,21,0.0 +12744,37,26,9,0.0 +12744,75,7.75,33,0.0 +12744,77,13,50,0.0 +12744,74,10,43,0.0 +12744,14,23.25,37,0.0 +12744,33,2.5,26,0.0 +12744,41,9.65,17,0.0 +12744,40,18.4,21,0.0 +12744,50,16.25,1,0.0 +12744,49,20,17,0.0 +12744,30,25.89,40,0.0 +12744,63,43.9,10,0.0 +12744,23,9,41,0.0 +12744,15,15.5,32,0.0 +12744,59,55,17,0.0 +12744,68,12.5,33,0.0 +12744,36,19,30,0.0 +12744,69,36,31,0.0 +12744,35,18,26,0.0 +12744,7,30,41,0.0 +12744,5,21.35,37,0.0 +12744,62,49.3,41,0.0 +12744,22,21,20,0.0 +12744,73,15,30,0.0 +12744,10,31,18,0.0 +12744,45,9.5,18,0.0 +12744,17,39,48,0.0 +12744,65,21.05,33,0.0 +12744,61,28.5,34,0.0 +12744,32,32,18,0.0 +12744,13,6,16,0.0 +12744,51,53,13,0.0 +12744,28,45.6,10,0.0 +12744,66,17,4,0.0 +12744,71,21.5,16,0.0 +12744,54,7.45,2,0.0 +12744,47,9.5,36,0.0 +12744,48,12.75,43,0.0 +12744,34,14,43,0.0 +12744,67,14,46,0.0 +12744,20,81,36,0.0 +12744,9,97,16,0.0 +12744,42,14,11,0.0 +12744,31,12.5,16,0.0 +12744,12,38,2,0.0 +12745,76,18,38,0.0 +12745,7,30,44,0.0 +12745,50,16.25,7,0.0 +12745,66,17,4,0.0 +12745,64,33.25,25,0.0 +12745,49,20,24,0.0 +12745,68,12.5,31,0.0 +12745,15,15.5,33,0.0 +12745,21,10,36,0.0 +12745,48,12.75,48,0.0 +12745,45,9.5,16,0.0 +12745,11,21,36,0.0 +12745,4,22,31,0.0 +12745,10,31,3,0.0 +12745,32,32,49,0.0 +12745,24,4.5,7,0.0 +12745,26,31.23,37,0.0 +12745,60,34,26,0.0 +12745,35,18,46,0.0 +12745,42,14,31,0.0 +12745,2,19,6,0.0 +12745,74,10,21,0.0 +12745,12,38,49,0.0 +12745,56,38,49,0.0 +12745,3,10,8,0.0 +12745,44,19.45,19,0.0 +12745,22,21,19,0.0 +12745,63,43.9,36,0.0 +12745,28,45.6,25,0.0 +12745,58,13.25,35,0.0 +12745,47,9.5,42,0.0 +12745,51,53,1,0.0 +12745,38,263.5,6,0.0 +12745,41,9.65,39,0.0 +12745,46,12,22,0.0 +12745,59,55,50,0.0 +12745,73,15,26,0.0 +12745,34,14,36,0.0 +12745,61,28.5,2,0.0 +12745,31,12.5,37,0.0 +12745,25,14,32,0.0 +12745,39,18,34,0.0 +12745,29,123.79,13,0.0 +12745,1,18,34,0.0 +12745,30,25.89,21,0.0 +12745,8,40,46,0.0 +12745,19,9.2,10,0.0 +12746,55,24,10,0.0 +12746,63,43.9,43,0.0 +12746,64,33.25,38,0.0 +12746,25,14,1,0.0 +12746,77,13,20,0.0 +12746,65,21.05,34,0.0 +12746,17,39,23,0.0 +12746,10,31,11,0.0 +12746,21,10,18,0.0 +12746,16,17.45,6,0.0 +12746,48,12.75,41,0.0 +12746,26,31.23,36,0.0 +12746,18,62.5,43,0.0 +12746,47,9.5,2,0.0 +12746,68,12.5,44,0.0 +12746,73,15,24,0.0 +12746,50,16.25,6,0.0 +12746,39,18,14,0.0 +12746,66,17,50,0.0 +12746,75,7.75,19,0.0 +12746,6,25,1,0.0 +12746,56,38,21,0.0 +12746,31,12.5,36,0.0 +12746,51,53,2,0.0 +12746,76,18,37,0.0 +12746,58,13.25,5,0.0 +12746,69,36,4,0.0 +12746,29,123.79,15,0.0 +12746,44,19.45,28,0.0 +12746,4,22,39,0.0 +12746,22,21,46,0.0 +12746,34,14,8,0.0 +12746,67,14,21,0.0 +12746,74,10,48,0.0 +12746,14,23.25,12,0.0 +12746,13,6,14,0.0 +12746,60,34,24,0.0 +12746,40,18.4,26,0.0 +12746,8,40,6,0.0 +12746,32,32,42,0.0 +12746,57,19.5,47,0.0 +12746,72,34.8,20,0.0 +12746,38,263.5,32,0.0 +12746,35,18,49,0.0 +12746,59,55,14,0.0 +12746,37,26,27,0.0 +12746,23,9,1,0.0 +12746,52,7,40,0.0 +12746,1,18,15,0.0 +12746,43,46,29,0.0 +12746,11,21,46,0.0 +12746,61,28.5,29,0.0 +12746,30,25.89,11,0.0 +12746,9,97,36,0.0 +12746,46,12,7,0.0 +12746,3,10,39,0.0 +12746,20,81,19,0.0 +12746,42,14,46,0.0 +12746,12,38,21,0.0 +12746,70,15,48,0.0 +12746,36,19,50,0.0 +12746,24,4.5,16,0.0 +12746,15,15.5,30,0.0 +12746,28,45.6,22,0.0 +12746,53,32.8,29,0.0 +12747,34,14,31,0.0 +12747,6,25,15,0.0 +12747,28,45.6,37,0.0 +12747,44,19.45,49,0.0 +12747,65,21.05,32,0.0 +12747,50,16.25,4,0.0 +12747,66,17,31,0.0 +12747,19,9.2,16,0.0 +12747,12,38,31,0.0 +12747,42,14,2,0.0 +12747,56,38,37,0.0 +12747,47,9.5,14,0.0 +12747,61,28.5,4,0.0 +12747,35,18,15,0.0 +12747,25,14,19,0.0 +12747,26,31.23,12,0.0 +12747,15,15.5,9,0.0 +12747,21,10,23,0.0 +12747,55,24,45,0.0 +12747,48,12.75,32,0.0 +12747,77,13,31,0.0 +12747,43,46,23,0.0 +12747,41,9.65,36,0.0 +12747,20,81,4,0.0 +12747,2,19,9,0.0 +12747,1,18,50,0.0 +12747,60,34,12,0.0 +12747,22,21,43,0.0 +12747,17,39,12,0.0 +12747,7,30,42,0.0 +12748,25,14,23,0.0 +12748,54,7.45,17,0.0 +12748,39,18,31,0.0 +12748,65,21.05,29,0.0 +12749,44,19.45,7,0.0 +12749,75,7.75,49,0.0 +12749,40,18.4,28,0.0 +12749,9,97,47,0.0 +12749,55,24,37,0.0 +12749,17,39,27,0.0 +12749,60,34,4,0.0 +12749,61,28.5,47,0.0 +12749,21,10,20,0.0 +12749,2,19,28,0.0 +12749,33,2.5,2,0.0 +12749,27,43.9,35,0.0 +12749,34,14,41,0.0 +12749,29,123.79,28,0.0 +12749,67,14,22,0.0 +12749,77,13,37,0.0 +12749,26,31.23,47,0.0 +12749,39,18,13,0.0 +12749,53,32.8,36,0.0 +12749,47,9.5,31,0.0 +12749,25,14,1,0.0 +12749,41,9.65,50,0.0 +12749,62,49.3,14,0.0 +12749,11,21,48,0.0 +12749,18,62.5,37,0.0 +12749,65,21.05,43,0.0 +12749,66,17,16,0.0 +12749,72,34.8,5,0.0 +12749,15,15.5,37,0.0 +12749,35,18,30,0.0 +12749,3,10,26,0.0 +12749,1,18,6,0.0 +12749,64,33.25,40,0.0 +12749,46,12,29,0.0 +12749,57,19.5,29,0.0 +12749,69,36,13,0.0 +12749,13,6,19,0.0 +12749,49,20,43,0.0 +12749,32,32,2,0.0 +12749,16,17.45,15,0.0 +12749,23,9,13,0.0 +12749,51,53,42,0.0 +12749,38,263.5,8,0.0 +12749,52,7,25,0.0 +12749,37,26,46,0.0 +12749,68,12.5,28,0.0 +12749,24,4.5,47,0.0 +12749,7,30,19,0.0 +12749,48,12.75,48,0.0 +12749,20,81,3,0.0 +12749,4,22,40,0.0 +12749,70,15,14,0.0 +12749,50,16.25,10,0.0 +12749,36,19,2,0.0 +12749,73,15,16,0.0 +12749,10,31,5,0.0 +12749,31,12.5,5,0.0 +12749,8,40,50,0.0 +12749,5,21.35,39,0.0 +12749,76,18,6,0.0 +12749,14,23.25,37,0.0 +12749,43,46,18,0.0 +12749,30,25.89,24,0.0 +12749,54,7.45,4,0.0 +12749,28,45.6,33,0.0 +12749,58,13.25,39,0.0 +12749,56,38,21,0.0 +12749,45,9.5,20,0.0 +12749,6,25,11,0.0 +12749,42,14,40,0.0 +12749,12,38,34,0.0 +12749,22,21,14,0.0 +12749,74,10,35,0.0 +12750,72,34.8,44,0.0 +12750,2,19,32,0.0 +12750,24,4.5,10,0.0 +12750,16,17.45,21,0.0 +12750,21,10,27,0.0 +12750,53,32.8,21,0.0 +12750,55,24,25,0.0 +12750,54,7.45,21,0.0 +12750,33,2.5,21,0.0 +12750,68,12.5,3,0.0 +12750,28,45.6,32,0.0 +12750,60,34,10,0.0 +12750,74,10,43,0.0 +12750,1,18,27,0.0 +12750,52,7,27,0.0 +12750,3,10,37,0.0 +12750,26,31.23,18,0.0 +12750,36,19,50,0.0 +12750,37,26,50,0.0 +12750,42,14,8,0.0 +12750,47,9.5,1,0.0 +12750,64,33.25,24,0.0 +12750,70,15,41,0.0 +12750,32,32,6,0.0 +12750,38,263.5,3,0.0 +12750,43,46,7,0.0 +12751,8,40,29,0.0 +12752,58,13.25,6,0.0 +12752,57,19.5,38,0.0 +12752,73,15,39,0.0 +12752,52,7,44,0.0 +12752,6,25,40,0.0 +12752,33,2.5,50,0.0 +12752,76,18,3,0.0 +12752,59,55,33,0.0 +12752,29,123.79,5,0.0 +12752,61,28.5,34,0.0 +12752,8,40,1,0.0 +12752,43,46,24,0.0 +12752,72,34.8,30,0.0 +12752,69,36,23,0.0 +12753,7,30,26,0.0 +12753,47,9.5,19,0.0 +12753,33,2.5,21,0.0 +12753,54,7.45,38,0.0 +12753,5,21.35,35,0.0 +12753,27,43.9,21,0.0 +12753,51,53,7,0.0 +12753,37,26,10,0.0 +12753,55,24,2,0.0 +12753,62,49.3,11,0.0 +12753,13,6,23,0.0 +12753,73,15,45,0.0 +12753,45,9.5,28,0.0 +12753,31,12.5,7,0.0 +12753,28,45.6,34,0.0 +12753,40,18.4,47,0.0 +12753,35,18,24,0.0 +12753,66,17,13,0.0 +12753,17,39,7,0.0 +12753,42,14,4,0.0 +12753,44,19.45,5,0.0 +12753,25,14,41,0.0 +12753,34,14,4,0.0 +12753,20,81,23,0.0 +12753,49,20,46,0.0 +12753,68,12.5,26,0.0 +12753,3,10,14,0.0 +12753,56,38,25,0.0 +12753,26,31.23,33,0.0 +12753,15,15.5,14,0.0 +12753,8,40,50,0.0 +12753,75,7.75,37,0.0 +12753,29,123.79,49,0.0 +12753,60,34,49,0.0 +12753,11,21,16,0.0 +12753,32,32,24,0.0 +12753,50,16.25,42,0.0 +12753,1,18,27,0.0 +12753,22,21,10,0.0 +12753,39,18,38,0.0 +12753,41,9.65,19,0.0 +12753,30,25.89,14,0.0 +12753,18,62.5,43,0.0 +12753,12,38,47,0.0 +12753,74,10,47,0.0 +12753,71,21.5,9,0.0 +12753,64,33.25,17,0.0 +12753,19,9.2,20,0.0 +12753,61,28.5,10,0.0 +12753,38,263.5,8,0.0 +12753,43,46,22,0.0 +12753,10,31,32,0.0 +12753,53,32.8,46,0.0 +12753,69,36,34,0.0 +12754,59,55,38,0.0 +12754,72,34.8,23,0.0 +12754,29,123.79,47,0.0 +12754,60,34,15,0.0 +12754,46,12,43,0.0 +12754,6,25,8,0.0 +12754,43,46,21,0.0 +12754,33,2.5,9,0.0 +12754,2,19,28,0.0 +12754,54,7.45,42,0.0 +12754,67,14,24,0.0 +12754,7,30,10,0.0 +12754,45,9.5,10,0.0 +12754,5,21.35,41,0.0 +12754,77,13,21,0.0 +12754,22,21,3,0.0 +12754,35,18,8,0.0 +12754,1,18,35,0.0 +12754,63,43.9,18,0.0 +12754,73,15,48,0.0 +12754,20,81,18,0.0 +12754,47,9.5,45,0.0 +12754,18,62.5,26,0.0 +12754,32,32,18,0.0 +12754,4,22,43,0.0 +12754,71,21.5,35,0.0 +12754,14,23.25,29,0.0 +12754,39,18,48,0.0 +12754,44,19.45,45,0.0 +12754,8,40,41,0.0 +12754,42,14,32,0.0 +12754,49,20,50,0.0 +12754,37,26,50,0.0 +12754,53,32.8,8,0.0 +12754,51,53,34,0.0 +12754,66,17,15,0.0 +12754,36,19,11,0.0 +12754,58,13.25,50,0.0 +12754,62,49.3,44,0.0 +12754,19,9.2,25,0.0 +12754,56,38,50,0.0 +12754,40,18.4,11,0.0 +12755,8,40,49,0.0 +12755,55,24,29,0.0 +12755,2,19,17,0.0 +12755,26,31.23,26,0.0 +12755,77,13,4,0.0 +12755,42,14,40,0.0 +12755,21,10,4,0.0 +12755,57,19.5,34,0.0 +12755,61,28.5,9,0.0 +12755,50,16.25,15,0.0 +12755,29,123.79,6,0.0 +12755,52,7,39,0.0 +12755,40,18.4,43,0.0 +12755,12,38,33,0.0 +12755,37,26,26,0.0 +12755,67,14,22,0.0 +12755,68,12.5,7,0.0 +12755,43,46,32,0.0 +12755,19,9.2,20,0.0 +12755,30,25.89,41,0.0 +12755,18,62.5,8,0.0 +12755,49,20,3,0.0 +12755,39,18,43,0.0 +12755,54,7.45,47,0.0 +12755,47,9.5,23,0.0 +12755,10,31,9,0.0 +12755,45,9.5,14,0.0 +12755,34,14,49,0.0 +12755,63,43.9,44,0.0 +12755,48,12.75,19,0.0 +12755,64,33.25,35,0.0 +12755,28,45.6,5,0.0 +12755,56,38,48,0.0 +12755,75,7.75,14,0.0 +12755,16,17.45,8,0.0 +12755,15,15.5,50,0.0 +12755,13,6,26,0.0 +12755,14,23.25,20,0.0 +12755,38,263.5,19,0.0 +12755,41,9.65,18,0.0 +12755,24,4.5,47,0.0 +12755,11,21,29,0.0 +12755,9,97,19,0.0 +12755,36,19,42,0.0 +12755,65,21.05,12,0.0 +12755,4,22,42,0.0 +12755,33,2.5,22,0.0 +12755,32,32,47,0.0 +12755,25,14,33,0.0 +12755,1,18,32,0.0 +12755,22,21,33,0.0 +12755,31,12.5,10,0.0 +12755,35,18,24,0.0 +12755,73,15,28,0.0 +12755,59,55,19,0.0 +12755,62,49.3,13,0.0 +12755,6,25,14,0.0 +12755,17,39,22,0.0 +12755,60,34,36,0.0 +12755,53,32.8,20,0.0 +12756,62,49.3,42,0.0 +12756,22,21,25,0.0 +12756,57,19.5,44,0.0 +12756,18,62.5,20,0.0 +12756,72,34.8,35,0.0 +12756,34,14,20,0.0 +12756,36,19,16,0.0 +12756,71,21.5,29,0.0 +12756,51,53,42,0.0 +12756,25,14,5,0.0 +12756,64,33.25,9,0.0 +12756,42,14,50,0.0 +12756,46,12,15,0.0 +12756,66,17,32,0.0 +12756,6,25,7,0.0 +12756,5,21.35,1,0.0 +12756,59,55,9,0.0 +12756,13,6,48,0.0 +12756,54,7.45,17,0.0 +12756,43,46,15,0.0 +12756,75,7.75,38,0.0 +12756,63,43.9,1,0.0 +12756,67,14,37,0.0 +12756,68,12.5,1,0.0 +12756,11,21,7,0.0 +12756,12,38,30,0.0 +12756,3,10,29,0.0 +12756,26,31.23,25,0.0 +12756,77,13,20,0.0 +12756,23,9,17,0.0 +12756,61,28.5,14,0.0 +12756,76,18,14,0.0 +12756,48,12.75,48,0.0 +12756,69,36,41,0.0 +12756,4,22,47,0.0 +12756,38,263.5,28,0.0 +12756,35,18,39,0.0 +12756,24,4.5,20,0.0 +12756,44,19.45,35,0.0 +12756,7,30,1,0.0 +12756,32,32,15,0.0 +12756,53,32.8,16,0.0 +12757,72,34.8,41,0.0 +12757,75,7.75,23,0.0 +12757,28,45.6,44,0.0 +12757,22,21,29,0.0 +12757,20,81,28,0.0 +12757,31,12.5,10,0.0 +12757,9,97,34,0.0 +12757,48,12.75,29,0.0 +12757,70,15,32,0.0 +12757,60,34,21,0.0 +12757,27,43.9,48,0.0 +12757,24,4.5,8,0.0 +12757,52,7,47,0.0 +12757,64,33.25,41,0.0 +12757,43,46,19,0.0 +12757,54,7.45,7,0.0 +12757,62,49.3,42,0.0 +12757,42,14,37,0.0 +12757,5,21.35,20,0.0 +12757,47,9.5,26,0.0 +12757,18,62.5,21,0.0 +12757,66,17,43,0.0 +12758,3,10,3,0.0 +12758,70,15,22,0.0 +12758,36,19,17,0.0 +12758,71,21.5,17,0.0 +12758,27,43.9,40,0.0 +12758,33,2.5,26,0.0 +12758,16,17.45,17,0.0 +12758,53,32.8,17,0.0 +12758,46,12,31,0.0 +12758,32,32,6,0.0 +12758,35,18,8,0.0 +12758,2,19,18,0.0 +12758,69,36,30,0.0 +12759,69,36,28,0.0 +12759,72,34.8,29,0.0 +12759,34,14,45,0.0 +12759,66,17,14,0.0 +12759,46,12,21,0.0 +12759,20,81,26,0.0 +12759,51,53,17,0.0 +12759,63,43.9,41,0.0 +12759,45,9.5,8,0.0 +12759,5,21.35,38,0.0 +12759,31,12.5,46,0.0 +12759,54,7.45,50,0.0 +12759,32,32,42,0.0 +12760,58,13.25,16,0.0 +12760,77,13,18,0.0 +12760,17,39,13,0.0 +12760,11,21,50,0.0 +12760,76,18,31,0.0 +12760,66,17,29,0.0 +12760,26,31.23,24,0.0 +12760,46,12,20,0.0 +12760,16,17.45,27,0.0 +12760,56,38,23,0.0 +12760,60,34,14,0.0 +12760,25,14,46,0.0 +12760,27,43.9,20,0.0 +12760,20,81,44,0.0 +12760,59,55,45,0.0 +12760,23,9,29,0.0 +12760,6,25,11,0.0 +12760,32,32,8,0.0 +12760,14,23.25,37,0.0 +12760,61,28.5,7,0.0 +12760,24,4.5,20,0.0 +12760,52,7,42,0.0 +12760,47,9.5,29,0.0 +12760,5,21.35,34,0.0 +12760,29,123.79,26,0.0 +12760,35,18,50,0.0 +12760,36,19,49,0.0 +12760,8,40,11,0.0 +12760,9,97,18,0.0 +12760,38,263.5,28,0.0 +12760,55,24,3,0.0 +12760,70,15,9,0.0 +12760,31,12.5,17,0.0 +12760,19,9.2,13,0.0 +12760,28,45.6,36,0.0 +12760,69,36,41,0.0 +12760,7,30,6,0.0 +12760,53,32.8,31,0.0 +12760,57,19.5,11,0.0 +12760,62,49.3,3,0.0 +12760,37,26,18,0.0 +12760,41,9.65,2,0.0 +12760,48,12.75,9,0.0 +12760,18,62.5,39,0.0 +12760,1,18,38,0.0 +12760,43,46,48,0.0 +12760,12,38,8,0.0 +12760,40,18.4,39,0.0 +12760,68,12.5,27,0.0 +12760,33,2.5,47,0.0 +12760,72,34.8,11,0.0 +12760,54,7.45,10,0.0 +12760,3,10,50,0.0 +12760,74,10,22,0.0 +12760,15,15.5,33,0.0 +12760,71,21.5,42,0.0 +12760,67,14,11,0.0 +12760,73,15,37,0.0 +12760,51,53,38,0.0 +12760,21,10,44,0.0 +12760,65,21.05,45,0.0 +12760,34,14,35,0.0 +12760,50,16.25,5,0.0 +12760,10,31,43,0.0 +12760,75,7.75,48,0.0 +12760,13,6,19,0.0 +12760,64,33.25,21,0.0 +12760,63,43.9,43,0.0 +12760,2,19,39,0.0 +12760,30,25.89,23,0.0 +12760,45,9.5,8,0.0 +12760,39,18,30,0.0 +12760,4,22,7,0.0 +12761,73,15,33,0.0 +12761,70,15,22,0.0 +12761,68,12.5,1,0.0 +12761,66,17,9,0.0 +12761,54,7.45,21,0.0 +12761,14,23.25,50,0.0 +12761,27,43.9,36,0.0 +12761,15,15.5,29,0.0 +12761,21,10,11,0.0 +12761,16,17.45,23,0.0 +12761,24,4.5,46,0.0 +12761,62,49.3,33,0.0 +12761,51,53,11,0.0 +12761,58,13.25,48,0.0 +12761,52,7,40,0.0 +12761,33,2.5,25,0.0 +12761,31,12.5,10,0.0 +12761,18,62.5,47,0.0 +12761,53,32.8,9,0.0 +12761,1,18,1,0.0 +12761,63,43.9,33,0.0 +12761,4,22,39,0.0 +12761,12,38,38,0.0 +12761,2,19,36,0.0 +12761,76,18,20,0.0 +12761,37,26,45,0.0 +12761,34,14,1,0.0 +12761,57,19.5,22,0.0 +12761,22,21,22,0.0 +12761,11,21,39,0.0 +12761,32,32,40,0.0 +12761,13,6,19,0.0 +12761,61,28.5,44,0.0 +12761,46,12,25,0.0 +12761,72,34.8,36,0.0 +12761,42,14,24,0.0 +12761,55,24,42,0.0 +12761,59,55,14,0.0 +12761,35,18,9,0.0 +12761,74,10,9,0.0 +12761,17,39,43,0.0 +12761,60,34,34,0.0 +12761,48,12.75,27,0.0 +12762,70,15,19,0.0 +12762,12,38,37,0.0 +12762,65,21.05,39,0.0 +12762,35,18,36,0.0 +12762,38,263.5,45,0.0 +12762,49,20,43,0.0 +12762,22,21,14,0.0 +12762,57,19.5,45,0.0 +12762,9,97,23,0.0 +12762,29,123.79,43,0.0 +12762,13,6,17,0.0 +12762,5,21.35,20,0.0 +12762,37,26,2,0.0 +12762,28,45.6,19,0.0 +12762,30,25.89,46,0.0 +12762,54,7.45,4,0.0 +12762,6,25,26,0.0 +12762,3,10,48,0.0 +12762,14,23.25,16,0.0 +12762,59,55,37,0.0 +12762,41,9.65,41,0.0 +12762,72,34.8,15,0.0 +12762,76,18,45,0.0 +12762,47,9.5,11,0.0 +12762,4,22,39,0.0 +12762,39,18,36,0.0 +12762,60,34,33,0.0 +12762,24,4.5,25,0.0 +12762,8,40,30,0.0 +12762,26,31.23,32,0.0 +12762,36,19,13,0.0 +12762,42,14,37,0.0 +12762,31,12.5,12,0.0 +12763,70,15,19,0.0 +12763,19,9.2,39,0.0 +12763,55,24,16,0.0 +12763,37,26,11,0.0 +12763,27,43.9,49,0.0 +12763,71,21.5,48,0.0 +12763,53,32.8,15,0.0 +12763,64,33.25,11,0.0 +12763,54,7.45,50,0.0 +12763,75,7.75,34,0.0 +12763,67,14,22,0.0 +12763,76,18,18,0.0 +12763,6,25,17,0.0 +12763,73,15,16,0.0 +12763,61,28.5,47,0.0 +12763,72,34.8,8,0.0 +12763,47,9.5,8,0.0 +12763,60,34,50,0.0 +12763,63,43.9,28,0.0 +12763,41,9.65,37,0.0 +12763,46,12,15,0.0 +12763,3,10,45,0.0 +12763,13,6,43,0.0 +12763,35,18,26,0.0 +12763,31,12.5,18,0.0 +12763,22,21,20,0.0 +12763,30,25.89,25,0.0 +12763,16,17.45,22,0.0 +12763,42,14,33,0.0 +12763,28,45.6,33,0.0 +12763,45,9.5,27,0.0 +12763,20,81,17,0.0 +12763,56,38,21,0.0 +12763,21,10,31,0.0 +12763,4,22,21,0.0 +12763,68,12.5,19,0.0 +12763,1,18,5,0.0 +12763,58,13.25,33,0.0 +12763,26,31.23,42,0.0 +12763,32,32,6,0.0 +12763,33,2.5,16,0.0 +12763,49,20,1,0.0 +12763,44,19.45,46,0.0 +12763,24,4.5,49,0.0 +12763,17,39,38,0.0 +12763,34,14,25,0.0 +12763,39,18,14,0.0 +12763,38,263.5,31,0.0 +12763,50,16.25,5,0.0 +12763,48,12.75,14,0.0 +12763,5,21.35,11,0.0 +12763,77,13,33,0.0 +12763,7,30,29,0.0 +12763,59,55,26,0.0 +12763,10,31,45,0.0 +12763,51,53,30,0.0 +12763,43,46,27,0.0 +12763,25,14,37,0.0 +12763,40,18.4,39,0.0 +12763,65,21.05,49,0.0 +12763,36,19,39,0.0 +12763,18,62.5,9,0.0 +12763,14,23.25,45,0.0 +12763,57,19.5,25,0.0 +12763,62,49.3,44,0.0 +12763,15,15.5,4,0.0 +12763,69,36,30,0.0 +12763,11,21,7,0.0 +12763,29,123.79,3,0.0 +12763,8,40,18,0.0 +12763,52,7,22,0.0 +12763,74,10,12,0.0 +12763,12,38,41,0.0 +12763,66,17,23,0.0 +12763,2,19,49,0.0 +12763,9,97,10,0.0 +12764,43,46,48,0.0 +12764,3,10,13,0.0 +12764,42,14,7,0.0 +12764,73,15,33,0.0 +12764,20,81,36,0.0 +12764,47,9.5,43,0.0 +12764,61,28.5,14,0.0 +12764,11,21,22,0.0 +12764,33,2.5,38,0.0 +12764,2,19,26,0.0 +12764,19,9.2,10,0.0 +12764,27,43.9,44,0.0 +12764,35,18,30,0.0 +12764,37,26,30,0.0 +12764,38,263.5,13,0.0 +12764,60,34,7,0.0 +12764,74,10,21,0.0 +12764,72,34.8,30,0.0 +12764,8,40,22,0.0 +12764,65,21.05,33,0.0 +12764,4,22,10,0.0 +12764,54,7.45,50,0.0 +12764,32,32,15,0.0 +12764,76,18,16,0.0 +12764,25,14,4,0.0 +12764,55,24,13,0.0 +12764,6,25,7,0.0 +12764,57,19.5,44,0.0 +12764,31,12.5,31,0.0 +12764,39,18,17,0.0 +12764,52,7,16,0.0 +12764,46,12,22,0.0 +12764,36,19,11,0.0 +12764,56,38,31,0.0 +12764,12,38,39,0.0 +12764,5,21.35,12,0.0 +12764,69,36,15,0.0 +12764,26,31.23,2,0.0 +12764,67,14,32,0.0 +12764,66,17,41,0.0 +12764,68,12.5,31,0.0 +12764,44,19.45,11,0.0 +12764,9,97,8,0.0 +12764,34,14,42,0.0 +12764,24,4.5,41,0.0 +12764,29,123.79,35,0.0 +12764,51,53,20,0.0 +12765,62,49.3,10,0.0 +12765,64,33.25,2,0.0 +12765,7,30,21,0.0 +12765,35,18,8,0.0 +12765,54,7.45,16,0.0 +12765,36,19,16,0.0 +12765,47,9.5,33,0.0 +12765,16,17.45,42,0.0 +12765,70,15,9,0.0 +12765,57,19.5,22,0.0 +12765,50,16.25,28,0.0 +12765,55,24,14,0.0 +12765,9,97,31,0.0 +12765,32,32,6,0.0 +12765,46,12,11,0.0 +12765,29,123.79,15,0.0 +12765,13,6,40,0.0 +12765,63,43.9,22,0.0 +12765,58,13.25,3,0.0 +12765,28,45.6,23,0.0 +12765,33,2.5,16,0.0 +12765,24,4.5,2,0.0 +12765,27,43.9,2,0.0 +12766,35,18,9,0.0 +12766,18,62.5,19,0.0 +12766,64,33.25,9,0.0 +12766,5,21.35,26,0.0 +12766,47,9.5,13,0.0 +12766,28,45.6,12,0.0 +12766,42,14,43,0.0 +12766,57,19.5,10,0.0 +12766,61,28.5,23,0.0 +12766,12,38,48,0.0 +12766,71,21.5,3,0.0 +12766,26,31.23,30,0.0 +12766,73,15,20,0.0 +12766,32,32,45,0.0 +12766,22,21,49,0.0 +12766,48,12.75,16,0.0 +12766,62,49.3,30,0.0 +12766,76,18,16,0.0 +12766,43,46,2,0.0 +12766,33,2.5,7,0.0 +12766,34,14,36,0.0 +12766,55,24,33,0.0 +12766,19,9.2,19,0.0 +12766,59,55,24,0.0 +12766,46,12,48,0.0 +12766,2,19,40,0.0 +12766,70,15,42,0.0 +12766,37,26,10,0.0 +12766,52,7,41,0.0 +12766,36,19,21,0.0 +12766,17,39,4,0.0 +12766,45,9.5,24,0.0 +12766,69,36,8,0.0 +12766,72,34.8,9,0.0 +12766,74,10,49,0.0 +12766,38,263.5,9,0.0 +12766,63,43.9,12,0.0 +12766,23,9,20,0.0 +12766,1,18,19,0.0 +12766,27,43.9,40,0.0 +12766,30,25.89,30,0.0 +12766,39,18,22,0.0 +12766,10,31,18,0.0 +12766,8,40,48,0.0 +12766,4,22,12,0.0 +12766,66,17,31,0.0 +12767,10,31,35,0.0 +12767,65,21.05,23,0.0 +12767,53,32.8,48,0.0 +12767,46,12,38,0.0 +12767,6,25,7,0.0 +12767,38,263.5,4,0.0 +12767,34,14,3,0.0 +12767,76,18,10,0.0 +12767,2,19,42,0.0 +12767,4,22,32,0.0 +12767,12,38,41,0.0 +12767,23,9,34,0.0 +12767,63,43.9,16,0.0 +12767,16,17.45,3,0.0 +12767,40,18.4,20,0.0 +12767,19,9.2,39,0.0 +12767,18,62.5,22,0.0 +12767,57,19.5,22,0.0 +12767,9,97,39,0.0 +12767,28,45.6,30,0.0 +12767,1,18,5,0.0 +12767,33,2.5,19,0.0 +12767,42,14,32,0.0 +12767,36,19,32,0.0 +12767,3,10,19,0.0 +12767,56,38,21,0.0 +12767,11,21,45,0.0 +12767,77,13,16,0.0 +12767,59,55,24,0.0 +12767,13,6,4,0.0 +12767,26,31.23,36,0.0 +12767,5,21.35,32,0.0 +12767,15,15.5,14,0.0 +12767,45,9.5,25,0.0 +12767,43,46,3,0.0 +12767,25,14,27,0.0 +12767,21,10,8,0.0 +12767,39,18,6,0.0 +12767,74,10,30,0.0 +12767,58,13.25,2,0.0 +12767,7,30,12,0.0 +12767,27,43.9,43,0.0 +12767,70,15,33,0.0 +12767,8,40,34,0.0 +12767,29,123.79,42,0.0 +12767,22,21,38,0.0 +12767,73,15,17,0.0 +12767,62,49.3,14,0.0 +12767,52,7,2,0.0 +12768,56,38,15,0.0 +12768,55,24,49,0.0 +12768,39,18,5,0.0 +12768,62,49.3,42,0.0 +12768,69,36,43,0.0 +12768,74,10,46,0.0 +12768,23,9,6,0.0 +12768,28,45.6,9,0.0 +12768,38,263.5,25,0.0 +12768,33,2.5,45,0.0 +12768,10,31,20,0.0 +12768,52,7,36,0.0 +12768,15,15.5,17,0.0 +12768,13,6,42,0.0 +12768,72,34.8,37,0.0 +12768,54,7.45,27,0.0 +12768,44,19.45,27,0.0 +12768,75,7.75,37,0.0 +12768,48,12.75,50,0.0 +12768,25,14,36,0.0 +12768,35,18,47,0.0 +12768,34,14,24,0.0 +12768,60,34,36,0.0 +12768,36,19,10,0.0 +12768,46,12,48,0.0 +12768,53,32.8,6,0.0 +12768,59,55,45,0.0 +12768,40,18.4,23,0.0 +12768,11,21,8,0.0 +12768,21,10,28,0.0 +12768,19,9.2,24,0.0 +12768,26,31.23,30,0.0 +12768,29,123.79,5,0.0 +12768,20,81,40,0.0 +12768,76,18,20,0.0 +12768,18,62.5,11,0.0 +12768,8,40,18,0.0 +12768,2,19,50,0.0 +12768,58,13.25,50,0.0 +12768,57,19.5,38,0.0 +12768,68,12.5,17,0.0 +12768,5,21.35,24,0.0 +12768,66,17,24,0.0 +12768,43,46,14,0.0 +12768,73,15,21,0.0 +12768,47,9.5,33,0.0 +12768,71,21.5,16,0.0 +12768,6,25,25,0.0 +12768,45,9.5,27,0.0 +12768,22,21,20,0.0 +12768,4,22,40,0.0 +12768,17,39,31,0.0 +12768,49,20,41,0.0 +12768,9,97,46,0.0 +12768,31,12.5,17,0.0 +12769,71,21.5,39,0.0 +12769,21,10,35,0.0 +12769,1,18,1,0.0 +12769,26,31.23,23,0.0 +12769,40,18.4,47,0.0 +12769,62,49.3,26,0.0 +12769,58,13.25,36,0.0 +12769,4,22,4,0.0 +12769,61,28.5,45,0.0 +12769,14,23.25,38,0.0 +12769,35,18,48,0.0 +12769,12,38,4,0.0 +12769,74,10,10,0.0 +12770,74,10,42,0.0 +12770,1,18,38,0.0 +12770,4,22,38,0.0 +12770,3,10,29,0.0 +12770,30,25.89,13,0.0 +12770,38,263.5,15,0.0 +12771,59,55,32,0.0 +12771,17,39,7,0.0 +12771,75,7.75,24,0.0 +12771,31,12.5,4,0.0 +12771,6,25,8,0.0 +12771,42,14,44,0.0 +12771,37,26,37,0.0 +12771,3,10,44,0.0 +12771,76,18,35,0.0 +12771,46,12,20,0.0 +12771,9,97,46,0.0 +12771,56,38,36,0.0 +12771,20,81,49,0.0 +12771,58,13.25,33,0.0 +12771,11,21,16,0.0 +12771,62,49.3,22,0.0 +12771,54,7.45,33,0.0 +12771,35,18,46,0.0 +12771,26,31.23,37,0.0 +12771,48,12.75,5,0.0 +12771,65,21.05,41,0.0 +12771,19,9.2,10,0.0 +12771,27,43.9,19,0.0 +12771,5,21.35,17,0.0 +12771,22,21,44,0.0 +12771,10,31,40,0.0 +12771,66,17,48,0.0 +12771,30,25.89,9,0.0 +12771,51,53,20,0.0 +12771,53,32.8,41,0.0 +12771,50,16.25,39,0.0 +12771,13,6,45,0.0 +12771,70,15,50,0.0 +12771,77,13,20,0.0 +12771,60,34,44,0.0 +12771,21,10,50,0.0 +12771,55,24,10,0.0 +12771,28,45.6,38,0.0 +12771,2,19,42,0.0 +12771,52,7,19,0.0 +12771,8,40,31,0.0 +12771,15,15.5,14,0.0 +12771,32,32,11,0.0 +12771,23,9,28,0.0 +12771,40,18.4,32,0.0 +12771,1,18,38,0.0 +12771,7,30,15,0.0 +12771,72,34.8,23,0.0 +12771,45,9.5,19,0.0 +12771,41,9.65,43,0.0 +12771,34,14,46,0.0 +12771,36,19,39,0.0 +12771,71,21.5,48,0.0 +12771,68,12.5,46,0.0 +12771,29,123.79,40,0.0 +12771,18,62.5,11,0.0 +12771,4,22,5,0.0 +12771,47,9.5,8,0.0 +12771,43,46,25,0.0 +12771,64,33.25,48,0.0 +12771,44,19.45,43,0.0 +12771,61,28.5,47,0.0 +12771,57,19.5,37,0.0 +12771,74,10,43,0.0 +12771,63,43.9,45,0.0 +12771,38,263.5,38,0.0 +12771,39,18,22,0.0 +12771,25,14,47,0.0 +12771,49,20,10,0.0 +12772,58,13.25,19,0.0 +12772,66,17,10,0.0 +12772,32,32,37,0.0 +12772,76,18,50,0.0 +12772,33,2.5,44,0.0 +12772,65,21.05,15,0.0 +12772,20,81,43,0.0 +12772,52,7,49,0.0 +12772,19,9.2,37,0.0 +12772,31,12.5,49,0.0 +12772,59,55,38,0.0 +12772,75,7.75,39,0.0 +12772,57,19.5,23,0.0 +12772,8,40,8,0.0 +12772,51,53,25,0.0 +12772,68,12.5,35,0.0 +12772,26,31.23,3,0.0 +12772,37,26,5,0.0 +12772,4,22,25,0.0 +12772,71,21.5,7,0.0 +12772,3,10,50,0.0 +12772,77,13,25,0.0 +12772,43,46,9,0.0 +12772,72,34.8,8,0.0 +12772,73,15,12,0.0 +12772,55,24,2,0.0 +12772,18,62.5,2,0.0 +12772,67,14,10,0.0 +12772,61,28.5,6,0.0 +12772,22,21,1,0.0 +12772,46,12,20,0.0 +12772,5,21.35,24,0.0 +12772,47,9.5,25,0.0 +12772,45,9.5,22,0.0 +12772,56,38,38,0.0 +12772,64,33.25,28,0.0 +12772,10,31,4,0.0 +12772,6,25,26,0.0 +12772,62,49.3,19,0.0 +12772,35,18,44,0.0 +12772,49,20,41,0.0 +12772,25,14,10,0.0 +12772,13,6,13,0.0 +12772,74,10,27,0.0 +12772,70,15,4,0.0 +12772,2,19,7,0.0 +12772,34,14,32,0.0 +12772,28,45.6,9,0.0 +12772,29,123.79,5,0.0 +12772,11,21,6,0.0 +12772,44,19.45,31,0.0 +12772,15,15.5,37,0.0 +12772,27,43.9,44,0.0 +12772,63,43.9,6,0.0 +12772,9,97,22,0.0 +12772,48,12.75,28,0.0 +12772,16,17.45,50,0.0 +12772,36,19,26,0.0 +12773,18,62.5,12,0.0 +12773,5,21.35,1,0.0 +12773,61,28.5,4,0.0 +12773,59,55,5,0.0 +12773,16,17.45,48,0.0 +12773,52,7,19,0.0 +12773,36,19,34,0.0 +12773,14,23.25,43,0.0 +12773,55,24,6,0.0 +12773,6,25,32,0.0 +12773,38,263.5,27,0.0 +12773,4,22,29,0.0 +12773,1,18,23,0.0 +12773,30,25.89,28,0.0 +12773,37,26,44,0.0 +12773,42,14,46,0.0 +12773,11,21,50,0.0 +12773,9,97,44,0.0 +12773,26,31.23,6,0.0 +12773,34,14,30,0.0 +12773,19,9.2,19,0.0 +12773,12,38,7,0.0 +12773,62,49.3,23,0.0 +12773,24,4.5,22,0.0 +12773,3,10,18,0.0 +12773,33,2.5,7,0.0 +12773,20,81,12,0.0 +12773,53,32.8,26,0.0 +12773,7,30,5,0.0 +12773,25,14,23,0.0 +12774,69,36,41,0.0 +12774,53,32.8,4,0.0 +12774,22,21,23,0.0 +12774,59,55,32,0.0 +12774,48,12.75,33,0.0 +12774,26,31.23,16,0.0 +12774,49,20,20,0.0 +12774,76,18,31,0.0 +12774,2,19,1,0.0 +12774,4,22,33,0.0 +12774,42,14,19,0.0 +12774,47,9.5,27,0.0 +12774,5,21.35,34,0.0 +12774,36,19,36,0.0 +12774,3,10,29,0.0 +12774,29,123.79,11,0.0 +12774,30,25.89,10,0.0 +12774,28,45.6,11,0.0 +12774,15,15.5,45,0.0 +12774,16,17.45,30,0.0 +12774,33,2.5,20,0.0 +12774,20,81,2,0.0 +12774,35,18,32,0.0 +12774,51,53,43,0.0 +12774,67,14,17,0.0 +12774,63,43.9,6,0.0 +12774,50,16.25,31,0.0 +12774,25,14,23,0.0 +12774,31,12.5,44,0.0 +12774,77,13,46,0.0 +12774,39,18,37,0.0 +12774,19,9.2,1,0.0 +12774,11,21,24,0.0 +12774,37,26,17,0.0 +12774,41,9.65,49,0.0 +12774,17,39,22,0.0 +12774,61,28.5,4,0.0 +12774,13,6,21,0.0 +12774,24,4.5,35,0.0 +12774,52,7,46,0.0 +12774,7,30,45,0.0 +12774,10,31,12,0.0 +12774,71,21.5,12,0.0 +12774,12,38,9,0.0 +12774,18,62.5,47,0.0 +12774,34,14,20,0.0 +12774,62,49.3,4,0.0 +12774,40,18.4,10,0.0 +12774,32,32,7,0.0 +12774,55,24,29,0.0 +12774,68,12.5,15,0.0 +12774,65,21.05,45,0.0 +12774,66,17,17,0.0 +12774,46,12,2,0.0 +12774,21,10,29,0.0 +12774,74,10,3,0.0 +12774,43,46,31,0.0 +12774,57,19.5,47,0.0 +12774,1,18,29,0.0 +12774,8,40,15,0.0 +12774,9,97,13,0.0 +12774,70,15,50,0.0 +12774,54,7.45,25,0.0 +12774,45,9.5,50,0.0 +12774,44,19.45,12,0.0 +12774,64,33.25,43,0.0 +12774,56,38,3,0.0 +12774,73,15,28,0.0 +12774,75,7.75,22,0.0 +12774,38,263.5,32,0.0 +12774,6,25,44,0.0 +12774,58,13.25,7,0.0 +12775,12,38,24,0.0 +12775,69,36,26,0.0 +12775,19,9.2,19,0.0 +12775,9,97,44,0.0 +12775,37,26,35,0.0 +12775,72,34.8,34,0.0 +12775,28,45.6,23,0.0 +12775,31,12.5,35,0.0 +12775,62,49.3,41,0.0 +12775,2,19,48,0.0 +12775,51,53,15,0.0 +12775,11,21,23,0.0 +12775,36,19,45,0.0 +12775,60,34,42,0.0 +12775,39,18,33,0.0 +12775,47,9.5,20,0.0 +12775,55,24,17,0.0 +12775,49,20,44,0.0 +12775,5,21.35,50,0.0 +12775,27,43.9,25,0.0 +12775,3,10,3,0.0 +12775,35,18,36,0.0 +12775,75,7.75,48,0.0 +12775,74,10,1,0.0 +12775,29,123.79,6,0.0 +12775,63,43.9,36,0.0 +12775,24,4.5,48,0.0 +12775,20,81,37,0.0 +12775,18,62.5,20,0.0 +12775,41,9.65,35,0.0 +12775,10,31,48,0.0 +12775,30,25.89,8,0.0 +12775,6,25,14,0.0 +12775,40,18.4,1,0.0 +12775,48,12.75,11,0.0 +12775,71,21.5,7,0.0 +12775,67,14,15,0.0 +12775,23,9,49,0.0 +12775,76,18,43,0.0 +12775,50,16.25,41,0.0 +12775,65,21.05,31,0.0 +12775,46,12,47,0.0 +12775,16,17.45,29,0.0 +12775,32,32,17,0.0 +12776,33,2.5,12,0.0 +12776,66,17,31,0.0 +12776,69,36,22,0.0 +12776,67,14,42,0.0 +12776,27,43.9,25,0.0 +12776,35,18,22,0.0 +12776,75,7.75,10,0.0 +12776,28,45.6,10,0.0 +12776,56,38,20,0.0 +12776,25,14,3,0.0 +12776,77,13,5,0.0 +12776,29,123.79,44,0.0 +12776,38,263.5,10,0.0 +12776,32,32,15,0.0 +12776,40,18.4,4,0.0 +12776,26,31.23,36,0.0 +12776,58,13.25,23,0.0 +12776,42,14,9,0.0 +12776,65,21.05,28,0.0 +12776,21,10,33,0.0 +12776,22,21,15,0.0 +12776,51,53,20,0.0 +12776,14,23.25,19,0.0 +12776,6,25,48,0.0 +12776,18,62.5,45,0.0 +12776,64,33.25,41,0.0 +12776,37,26,21,0.0 +12776,47,9.5,26,0.0 +12776,62,49.3,3,0.0 +12776,53,32.8,6,0.0 +12776,57,19.5,38,0.0 +12776,50,16.25,3,0.0 +12776,15,15.5,39,0.0 +12776,41,9.65,30,0.0 +12776,70,15,5,0.0 +12776,19,9.2,7,0.0 +12776,23,9,43,0.0 +12776,36,19,6,0.0 +12776,12,38,11,0.0 +12776,61,28.5,38,0.0 +12776,8,40,9,0.0 +12776,54,7.45,8,0.0 +12776,5,21.35,4,0.0 +12776,2,19,45,0.0 +12776,44,19.45,27,0.0 +12776,48,12.75,13,0.0 +12776,55,24,8,0.0 +12776,10,31,45,0.0 +12776,1,18,35,0.0 +12776,39,18,12,0.0 +12776,74,10,40,0.0 +12776,16,17.45,27,0.0 +12776,43,46,32,0.0 +12776,60,34,33,0.0 +12776,20,81,14,0.0 +12776,68,12.5,16,0.0 +12776,73,15,44,0.0 +12776,45,9.5,44,0.0 +12776,17,39,29,0.0 +12776,30,25.89,31,0.0 +12776,24,4.5,49,0.0 +12776,13,6,4,0.0 +12777,28,45.6,20,0.0 +12777,66,17,22,0.0 +12777,56,38,10,0.0 +12777,62,49.3,30,0.0 +12777,34,14,5,0.0 +12777,29,123.79,35,0.0 +12777,35,18,27,0.0 +12777,55,24,38,0.0 +12777,50,16.25,31,0.0 +12777,5,21.35,41,0.0 +12777,1,18,40,0.0 +12777,52,7,3,0.0 +12777,58,13.25,11,0.0 +12777,77,13,6,0.0 +12777,30,25.89,24,0.0 +12777,37,26,32,0.0 +12777,22,21,35,0.0 +12777,46,12,18,0.0 +12777,73,15,16,0.0 +12777,69,36,45,0.0 +12777,7,30,28,0.0 +12777,74,10,28,0.0 +12777,9,97,13,0.0 +12777,3,10,6,0.0 +12777,51,53,34,0.0 +12777,19,9.2,37,0.0 +12777,6,25,30,0.0 +12777,2,19,3,0.0 +12777,48,12.75,34,0.0 +12777,11,21,20,0.0 +12777,18,62.5,38,0.0 +12777,53,32.8,21,0.0 +12777,57,19.5,43,0.0 +12777,40,18.4,41,0.0 +12777,59,55,35,0.0 +12777,21,10,38,0.0 +12777,47,9.5,23,0.0 +12777,41,9.65,18,0.0 +12777,13,6,15,0.0 +12777,20,81,28,0.0 +12777,24,4.5,32,0.0 +12777,71,21.5,13,0.0 +12777,27,43.9,46,0.0 +12777,44,19.45,27,0.0 +12777,31,12.5,41,0.0 +12777,38,263.5,10,0.0 +12777,17,39,47,0.0 +12778,49,20,36,0.0 +12778,77,13,48,0.0 +12778,19,9.2,7,0.0 +12778,31,12.5,12,0.0 +12778,11,21,34,0.0 +12778,62,49.3,28,0.0 +12778,40,18.4,48,0.0 +12778,33,2.5,37,0.0 +12778,67,14,13,0.0 +12778,69,36,24,0.0 +12778,25,14,34,0.0 +12778,68,12.5,20,0.0 +12778,38,263.5,10,0.0 +12778,28,45.6,39,0.0 +12778,15,15.5,25,0.0 +12778,23,9,40,0.0 +12778,59,55,42,0.0 +12778,43,46,12,0.0 +12778,72,34.8,26,0.0 +12778,27,43.9,45,0.0 +12778,50,16.25,6,0.0 +12778,61,28.5,41,0.0 +12778,24,4.5,47,0.0 +12778,37,26,7,0.0 +12779,60,34,41,0.0 +12779,40,18.4,48,0.0 +12779,18,62.5,4,0.0 +12779,70,15,48,0.0 +12779,36,19,27,0.0 +12779,59,55,9,0.0 +12779,37,26,1,0.0 +12779,62,49.3,25,0.0 +12779,9,97,33,0.0 +12779,3,10,43,0.0 +12779,46,12,46,0.0 +12779,32,32,14,0.0 +12779,44,19.45,49,0.0 +12779,42,14,7,0.0 +12779,57,19.5,33,0.0 +12779,4,22,3,0.0 +12779,12,38,16,0.0 +12779,50,16.25,10,0.0 +12779,71,21.5,16,0.0 +12779,34,14,9,0.0 +12779,13,6,5,0.0 +12779,35,18,11,0.0 +12779,76,18,13,0.0 +12779,68,12.5,17,0.0 +12779,10,31,11,0.0 +12779,23,9,26,0.0 +12779,52,7,37,0.0 +12779,66,17,37,0.0 +12779,31,12.5,15,0.0 +12779,33,2.5,43,0.0 +12779,41,9.65,7,0.0 +12779,39,18,40,0.0 +12779,30,25.89,34,0.0 +12779,53,32.8,6,0.0 +12779,28,45.6,26,0.0 +12779,38,263.5,47,0.0 +12779,16,17.45,34,0.0 +12779,2,19,36,0.0 +12779,61,28.5,14,0.0 +12779,43,46,42,0.0 +12779,14,23.25,44,0.0 +12779,29,123.79,14,0.0 +12779,1,18,26,0.0 +12779,5,21.35,30,0.0 +12779,54,7.45,33,0.0 +12779,49,20,33,0.0 +12779,55,24,24,0.0 +12779,26,31.23,49,0.0 +12779,7,30,11,0.0 +12779,8,40,13,0.0 +12779,25,14,20,0.0 +12779,48,12.75,31,0.0 +12779,74,10,38,0.0 +12779,58,13.25,21,0.0 +12779,47,9.5,6,0.0 +12779,64,33.25,14,0.0 +12779,22,21,24,0.0 +12779,45,9.5,19,0.0 +12779,6,25,15,0.0 +12779,73,15,6,0.0 +12779,56,38,43,0.0 +12779,20,81,40,0.0 +12779,69,36,42,0.0 +12779,75,7.75,29,0.0 +12779,11,21,22,0.0 +12779,21,10,50,0.0 +12779,77,13,7,0.0 +12779,65,21.05,46,0.0 +12779,51,53,6,0.0 +12779,24,4.5,33,0.0 +12779,19,9.2,35,0.0 +12779,15,15.5,47,0.0 +12779,17,39,6,0.0 +12779,67,14,2,0.0 +12779,63,43.9,21,0.0 +12779,27,43.9,41,0.0 +12780,11,21,25,0.0 +12780,16,17.45,37,0.0 +12780,61,28.5,16,0.0 +12780,30,25.89,8,0.0 +12780,45,9.5,47,0.0 +12780,64,33.25,12,0.0 +12780,13,6,39,0.0 +12780,31,12.5,9,0.0 +12780,29,123.79,12,0.0 +12780,25,14,48,0.0 +12780,77,13,45,0.0 +12780,67,14,48,0.0 +12780,28,45.6,10,0.0 +12780,44,19.45,45,0.0 +12780,56,38,6,0.0 +12780,17,39,45,0.0 +12780,66,17,26,0.0 +12780,63,43.9,46,0.0 +12780,57,19.5,31,0.0 +12780,19,9.2,14,0.0 +12780,37,26,49,0.0 +12780,50,16.25,36,0.0 +12780,1,18,14,0.0 +12780,10,31,21,0.0 +12780,70,15,36,0.0 +12780,42,14,41,0.0 +12780,54,7.45,47,0.0 +12780,48,12.75,3,0.0 +12780,36,19,11,0.0 +12780,52,7,27,0.0 +12780,27,43.9,49,0.0 +12780,72,34.8,17,0.0 +12780,33,2.5,27,0.0 +12780,20,81,25,0.0 +12780,6,25,21,0.0 +12780,62,49.3,49,0.0 +12780,55,24,34,0.0 +12780,76,18,46,0.0 +12780,7,30,43,0.0 +12780,60,34,22,0.0 +12780,34,14,21,0.0 +12780,75,7.75,38,0.0 +12780,59,55,35,0.0 +12780,38,263.5,24,0.0 +12780,73,15,47,0.0 +12780,26,31.23,11,0.0 +12780,40,18.4,21,0.0 +12780,68,12.5,5,0.0 +12780,35,18,6,0.0 +12780,46,12,2,0.0 +12780,15,15.5,33,0.0 +12780,69,36,36,0.0 +12780,51,53,38,0.0 +12780,58,13.25,33,0.0 +12780,22,21,42,0.0 +12780,24,4.5,16,0.0 +12780,12,38,34,0.0 +12780,65,21.05,11,0.0 +12780,8,40,32,0.0 +12780,4,22,19,0.0 +12780,9,97,35,0.0 +12780,71,21.5,21,0.0 +12780,41,9.65,13,0.0 +12780,23,9,29,0.0 +12780,47,9.5,18,0.0 +12780,53,32.8,35,0.0 +12780,43,46,31,0.0 +12780,21,10,30,0.0 +12780,2,19,5,0.0 +12781,58,13.25,35,0.0 +12781,59,55,5,0.0 +12781,64,33.25,7,0.0 +12781,23,9,6,0.0 +12781,16,17.45,26,0.0 +12781,76,18,25,0.0 +12781,22,21,28,0.0 +12781,51,53,40,0.0 +12781,14,23.25,12,0.0 +12781,57,19.5,28,0.0 +12781,47,9.5,4,0.0 +12781,50,16.25,50,0.0 +12781,75,7.75,12,0.0 +12781,28,45.6,34,0.0 +12781,17,39,9,0.0 +12781,63,43.9,32,0.0 +12781,61,28.5,43,0.0 +12781,9,97,3,0.0 +12781,27,43.9,29,0.0 +12781,8,40,22,0.0 +12781,55,24,23,0.0 +12781,2,19,9,0.0 +12781,41,9.65,30,0.0 +12781,32,32,6,0.0 +12781,60,34,15,0.0 +12781,40,18.4,11,0.0 +12781,39,18,33,0.0 +12781,33,2.5,42,0.0 +12781,6,25,44,0.0 +12781,68,12.5,47,0.0 +12781,46,12,10,0.0 +12781,11,21,23,0.0 +12781,66,17,19,0.0 +12781,37,26,27,0.0 +12781,20,81,3,0.0 +12781,3,10,18,0.0 +12781,36,19,37,0.0 +12781,35,18,16,0.0 +12781,73,15,12,0.0 +12781,15,15.5,24,0.0 +12781,7,30,8,0.0 +12781,74,10,17,0.0 +12781,24,4.5,16,0.0 +12781,25,14,12,0.0 +12781,52,7,48,0.0 +12781,34,14,48,0.0 +12781,43,46,10,0.0 +12781,29,123.79,26,0.0 +12781,1,18,42,0.0 +12781,62,49.3,8,0.0 +12781,10,31,19,0.0 +12781,54,7.45,49,0.0 +12781,19,9.2,49,0.0 +12781,18,62.5,35,0.0 +12781,77,13,27,0.0 +12781,56,38,16,0.0 +12781,67,14,5,0.0 +12781,31,12.5,35,0.0 +12781,42,14,23,0.0 +12781,5,21.35,4,0.0 +12781,26,31.23,14,0.0 +12781,30,25.89,46,0.0 +12781,4,22,5,0.0 +12781,44,19.45,19,0.0 +12781,13,6,17,0.0 +12781,48,12.75,50,0.0 +12781,65,21.05,17,0.0 +12781,49,20,21,0.0 +12782,56,38,6,0.0 +12782,62,49.3,50,0.0 +12782,71,21.5,37,0.0 +12782,28,45.6,11,0.0 +12782,4,22,30,0.0 +12782,23,9,17,0.0 +12782,34,14,49,0.0 +12782,39,18,43,0.0 +12782,29,123.79,15,0.0 +12782,77,13,14,0.0 +12782,75,7.75,39,0.0 +12782,47,9.5,28,0.0 +12782,76,18,1,0.0 +12782,36,19,20,0.0 +12782,7,30,39,0.0 +12782,67,14,19,0.0 +12782,49,20,20,0.0 +12782,50,16.25,16,0.0 +12782,35,18,46,0.0 +12782,72,34.8,39,0.0 +12782,73,15,3,0.0 +12782,63,43.9,35,0.0 +12782,1,18,24,0.0 +12782,37,26,30,0.0 +12782,32,32,12,0.0 +12782,59,55,48,0.0 +12782,8,40,42,0.0 +12782,16,17.45,1,0.0 +12782,6,25,34,0.0 +12782,42,14,16,0.0 +12782,66,17,28,0.0 +12782,20,81,34,0.0 +12782,26,31.23,6,0.0 +12782,2,19,6,0.0 +12782,68,12.5,15,0.0 +12782,69,36,47,0.0 +12782,9,97,43,0.0 +12782,46,12,43,0.0 +12782,33,2.5,24,0.0 +12782,57,19.5,47,0.0 +12782,65,21.05,18,0.0 +12782,54,7.45,36,0.0 +12782,27,43.9,42,0.0 +12782,61,28.5,37,0.0 +12782,25,14,5,0.0 +12782,13,6,28,0.0 +12782,74,10,26,0.0 +12782,60,34,1,0.0 +12782,12,38,43,0.0 +12782,24,4.5,25,0.0 +12782,21,10,50,0.0 +12782,10,31,22,0.0 +12782,48,12.75,28,0.0 +12783,38,263.5,49,0.0 +12783,7,30,39,0.0 +12783,49,20,33,0.0 +12783,68,12.5,17,0.0 +12783,66,17,13,0.0 +12783,9,97,45,0.0 +12783,28,45.6,28,0.0 +12783,35,18,26,0.0 +12783,16,17.45,32,0.0 +12783,70,15,15,0.0 +12783,60,34,21,0.0 +12783,4,22,1,0.0 +12783,59,55,1,0.0 +12783,13,6,32,0.0 +12783,53,32.8,44,0.0 +12783,58,13.25,44,0.0 +12783,47,9.5,14,0.0 +12783,62,49.3,12,0.0 +12783,23,9,36,0.0 +12783,33,2.5,23,0.0 +12783,22,21,24,0.0 +12783,25,14,11,0.0 +12783,20,81,47,0.0 +12783,61,28.5,30,0.0 +12783,69,36,2,0.0 +12783,48,12.75,46,0.0 +12783,26,31.23,42,0.0 +12783,76,18,27,0.0 +12783,36,19,5,0.0 +12783,74,10,48,0.0 +12783,73,15,37,0.0 +12783,41,9.65,33,0.0 +12783,14,23.25,41,0.0 +12783,77,13,8,0.0 +12783,44,19.45,49,0.0 +12783,50,16.25,43,0.0 +12783,54,7.45,4,0.0 +12783,21,10,27,0.0 +12783,45,9.5,3,0.0 +12783,42,14,19,0.0 +12783,10,31,22,0.0 +12783,56,38,21,0.0 +12783,51,53,37,0.0 +12783,12,38,50,0.0 +12783,55,24,10,0.0 +12783,2,19,40,0.0 +12783,30,25.89,44,0.0 +12783,57,19.5,22,0.0 +12783,15,15.5,3,0.0 +12783,32,32,23,0.0 +12783,27,43.9,37,0.0 +12783,64,33.25,38,0.0 +12784,42,14,24,0.0 +12784,12,38,18,0.0 +12784,58,13.25,35,0.0 +12784,28,45.6,50,0.0 +12784,19,9.2,25,0.0 +12784,55,24,21,0.0 +12784,26,31.23,23,0.0 +12784,71,21.5,28,0.0 +12784,60,34,48,0.0 +12784,74,10,14,0.0 +12784,24,4.5,34,0.0 +12784,33,2.5,2,0.0 +12784,40,18.4,7,0.0 +12784,14,23.25,43,0.0 +12784,18,62.5,44,0.0 +12784,1,18,12,0.0 +12784,2,19,38,0.0 +12784,48,12.75,35,0.0 +12784,23,9,2,0.0 +12784,11,21,44,0.0 +12784,5,21.35,30,0.0 +12784,75,7.75,44,0.0 +12784,31,12.5,49,0.0 +12784,17,39,40,0.0 +12784,22,21,42,0.0 +12784,52,7,11,0.0 +12784,16,17.45,18,0.0 +12784,21,10,13,0.0 +12784,32,32,29,0.0 +12784,7,30,4,0.0 +12784,29,123.79,43,0.0 +12784,61,28.5,40,0.0 +12784,46,12,35,0.0 +12784,35,18,49,0.0 +12784,59,55,15,0.0 +12784,44,19.45,34,0.0 +12784,36,19,43,0.0 +12784,65,21.05,21,0.0 +12784,39,18,3,0.0 +12784,49,20,22,0.0 +12784,45,9.5,16,0.0 +12784,43,46,3,0.0 +12784,27,43.9,2,0.0 +12784,47,9.5,21,0.0 +12784,25,14,30,0.0 +12784,41,9.65,33,0.0 +12784,53,32.8,15,0.0 +12784,8,40,15,0.0 +12784,76,18,4,0.0 +12784,13,6,15,0.0 +12784,15,15.5,9,0.0 +12784,20,81,28,0.0 +12784,67,14,36,0.0 +12785,26,31.23,44,0.0 +12785,52,7,48,0.0 +12785,69,36,37,0.0 +12785,77,13,7,0.0 +12785,9,97,6,0.0 +12785,73,15,23,0.0 +12785,40,18.4,42,0.0 +12785,4,22,22,0.0 +12785,8,40,14,0.0 +12785,71,21.5,29,0.0 +12785,66,17,26,0.0 +12785,10,31,22,0.0 +12785,67,14,26,0.0 +12785,47,9.5,30,0.0 +12785,42,14,22,0.0 +12785,68,12.5,35,0.0 +12785,25,14,42,0.0 +12785,70,15,20,0.0 +12785,32,32,1,0.0 +12785,34,14,2,0.0 +12785,41,9.65,7,0.0 +12785,21,10,12,0.0 +12785,61,28.5,46,0.0 +12785,37,26,13,0.0 +12785,54,7.45,39,0.0 +12785,63,43.9,48,0.0 +12785,44,19.45,41,0.0 +12785,28,45.6,13,0.0 +12785,29,123.79,35,0.0 +12786,16,17.45,16,0.0 +12786,11,21,1,0.0 +12786,17,39,47,0.0 +12786,55,24,47,0.0 +12786,51,53,4,0.0 +12786,39,18,30,0.0 +12786,26,31.23,39,0.0 +12786,24,4.5,26,0.0 +12786,10,31,50,0.0 +12786,21,10,3,0.0 +12786,40,18.4,32,0.0 +12786,67,14,37,0.0 +12786,7,30,13,0.0 +12786,30,25.89,4,0.0 +12786,29,123.79,5,0.0 +12786,14,23.25,14,0.0 +12786,63,43.9,46,0.0 +12786,12,38,10,0.0 +12786,28,45.6,24,0.0 +12786,73,15,28,0.0 +12786,54,7.45,21,0.0 +12786,23,9,1,0.0 +12786,48,12.75,49,0.0 +12786,77,13,14,0.0 +12786,25,14,25,0.0 +12786,35,18,11,0.0 +12786,3,10,14,0.0 +12786,1,18,49,0.0 +12786,27,43.9,18,0.0 +12786,71,21.5,8,0.0 +12786,43,46,33,0.0 +12786,9,97,35,0.0 +12787,71,21.5,9,0.0 +12787,76,18,42,0.0 +12787,17,39,31,0.0 +12787,12,38,49,0.0 +12787,77,13,34,0.0 +12787,27,43.9,18,0.0 +12787,25,14,11,0.0 +12787,66,17,12,0.0 +12787,45,9.5,50,0.0 +12787,72,34.8,15,0.0 +12787,31,12.5,3,0.0 +12787,41,9.65,41,0.0 +12787,47,9.5,30,0.0 +12787,22,21,3,0.0 +12787,10,31,43,0.0 +12787,30,25.89,44,0.0 +12787,37,26,32,0.0 +12787,51,53,41,0.0 +12787,9,97,4,0.0 +12787,4,22,16,0.0 +12787,5,21.35,2,0.0 +12787,68,12.5,34,0.0 +12787,28,45.6,25,0.0 +12787,20,81,41,0.0 +12787,73,15,50,0.0 +12787,62,49.3,49,0.0 +12787,65,21.05,39,0.0 +12787,1,18,6,0.0 +12787,8,40,9,0.0 +12787,6,25,3,0.0 +12787,34,14,41,0.0 +12787,67,14,32,0.0 +12787,56,38,10,0.0 +12787,55,24,26,0.0 +12787,59,55,1,0.0 +12787,3,10,16,0.0 +12787,53,32.8,29,0.0 +12787,63,43.9,21,0.0 +12787,18,62.5,46,0.0 +12787,42,14,13,0.0 +12787,48,12.75,31,0.0 +12787,32,32,47,0.0 +12787,19,9.2,33,0.0 +12787,11,21,29,0.0 +12787,23,9,27,0.0 +12787,58,13.25,1,0.0 +12787,49,20,2,0.0 +12787,7,30,43,0.0 +12787,75,7.75,28,0.0 +12787,21,10,25,0.0 +12787,50,16.25,25,0.0 +12787,74,10,26,0.0 +12787,57,19.5,12,0.0 +12787,15,15.5,49,0.0 +12787,33,2.5,17,0.0 +12787,46,12,13,0.0 +12787,29,123.79,13,0.0 +12787,39,18,48,0.0 +12787,36,19,4,0.0 +12787,2,19,35,0.0 +12787,43,46,24,0.0 +12787,40,18.4,16,0.0 +12787,70,15,7,0.0 +12787,64,33.25,28,0.0 +12787,60,34,50,0.0 +12787,44,19.45,49,0.0 +12787,26,31.23,43,0.0 +12787,14,23.25,39,0.0 +12787,52,7,27,0.0 +12787,61,28.5,33,0.0 +12787,35,18,24,0.0 +12788,72,34.8,45,0.0 +12788,55,24,34,0.0 +12788,59,55,24,0.0 +12788,70,15,18,0.0 +12788,8,40,2,0.0 +12788,53,32.8,22,0.0 +12788,47,9.5,28,0.0 +12788,27,43.9,7,0.0 +12788,65,21.05,30,0.0 +12788,29,123.79,23,0.0 +12788,35,18,48,0.0 +12788,13,6,17,0.0 +12788,45,9.5,23,0.0 +12788,75,7.75,15,0.0 +12788,42,14,8,0.0 +12788,73,15,10,0.0 +12788,18,62.5,30,0.0 +12788,61,28.5,12,0.0 +12788,63,43.9,35,0.0 +12788,62,49.3,9,0.0 +12788,49,20,11,0.0 +12788,22,21,14,0.0 +12788,20,81,1,0.0 +12788,51,53,37,0.0 +12788,68,12.5,42,0.0 +12788,58,13.25,6,0.0 +12788,14,23.25,34,0.0 +12788,60,34,23,0.0 +12788,25,14,4,0.0 +12788,16,17.45,15,0.0 +12788,9,97,6,0.0 +12788,30,25.89,50,0.0 +12788,52,7,36,0.0 +12788,54,7.45,37,0.0 +12788,48,12.75,14,0.0 +12788,41,9.65,50,0.0 +12788,17,39,48,0.0 +12788,2,19,34,0.0 +12788,23,9,48,0.0 +12788,69,36,31,0.0 +12788,33,2.5,6,0.0 +12788,6,25,25,0.0 +12788,57,19.5,10,0.0 +12788,39,18,33,0.0 +12788,28,45.6,2,0.0 +12788,46,12,21,0.0 +12788,24,4.5,16,0.0 +12788,31,12.5,36,0.0 +12788,67,14,49,0.0 +12788,11,21,27,0.0 +12788,4,22,23,0.0 +12788,64,33.25,9,0.0 +12788,66,17,10,0.0 +12788,10,31,29,0.0 +12788,38,263.5,1,0.0 +12788,12,38,9,0.0 +12788,76,18,45,0.0 +12788,44,19.45,11,0.0 +12788,40,18.4,2,0.0 +12788,32,32,6,0.0 +12788,26,31.23,35,0.0 +12788,71,21.5,37,0.0 +12788,19,9.2,20,0.0 +12788,56,38,50,0.0 +12788,37,26,8,0.0 +12788,77,13,12,0.0 +12788,36,19,33,0.0 +12789,38,263.5,6,0.0 +12789,27,43.9,49,0.0 +12789,56,38,30,0.0 +12789,31,12.5,27,0.0 +12790,14,23.25,40,0.0 +12790,16,17.45,45,0.0 +12790,46,12,1,0.0 +12790,11,21,46,0.0 +12790,39,18,36,0.0 +12790,10,31,28,0.0 +12790,71,21.5,10,0.0 +12790,34,14,36,0.0 +12790,63,43.9,32,0.0 +12790,74,10,3,0.0 +12790,55,24,19,0.0 +12790,49,20,40,0.0 +12790,30,25.89,31,0.0 +12790,7,30,21,0.0 +12790,24,4.5,19,0.0 +12790,31,12.5,35,0.0 +12790,51,53,15,0.0 +12790,73,15,26,0.0 +12791,46,12,12,0.0 +12791,44,19.45,41,0.0 +12791,61,28.5,24,0.0 +12791,50,16.25,36,0.0 +12791,39,18,6,0.0 +12791,13,6,22,0.0 +12791,54,7.45,18,0.0 +12791,74,10,33,0.0 +12791,32,32,47,0.0 +12791,14,23.25,20,0.0 +12791,59,55,49,0.0 +12791,70,15,24,0.0 +12791,41,9.65,47,0.0 +12791,10,31,18,0.0 +12791,43,46,9,0.0 +12791,5,21.35,27,0.0 +12791,36,19,35,0.0 +12791,57,19.5,27,0.0 +12791,9,97,20,0.0 +12791,66,17,3,0.0 +12791,25,14,7,0.0 +12791,30,25.89,29,0.0 +12791,63,43.9,19,0.0 +12791,53,32.8,4,0.0 +12791,68,12.5,42,0.0 +12791,23,9,5,0.0 +12791,48,12.75,14,0.0 +12791,45,9.5,5,0.0 +12791,19,9.2,36,0.0 +12791,67,14,15,0.0 +12792,72,34.8,49,0.0 +12792,60,34,6,0.0 +12792,73,15,18,0.0 +12792,24,4.5,20,0.0 +12792,19,9.2,46,0.0 +12792,20,81,49,0.0 +12792,43,46,4,0.0 +12792,22,21,26,0.0 +12792,26,31.23,33,0.0 +12792,15,15.5,30,0.0 +12792,77,13,22,0.0 +12792,44,19.45,24,0.0 +12792,56,38,42,0.0 +12792,30,25.89,3,0.0 +12792,10,31,38,0.0 +12792,45,9.5,3,0.0 +12792,41,9.65,7,0.0 +12792,38,263.5,17,0.0 +12792,58,13.25,44,0.0 +12792,47,9.5,40,0.0 +12792,32,32,41,0.0 +12792,57,19.5,4,0.0 +12792,13,6,43,0.0 +12792,68,12.5,10,0.0 +12792,2,19,34,0.0 +12792,31,12.5,1,0.0 +12792,9,97,10,0.0 +12792,75,7.75,16,0.0 +12792,18,62.5,46,0.0 +12792,14,23.25,36,0.0 +12792,46,12,10,0.0 +12792,74,10,38,0.0 +12792,7,30,37,0.0 +12792,3,10,9,0.0 +12792,76,18,13,0.0 +12792,6,25,5,0.0 +12792,48,12.75,49,0.0 +12792,65,21.05,39,0.0 +12792,71,21.5,15,0.0 +12792,34,14,45,0.0 +12792,70,15,21,0.0 +12792,23,9,37,0.0 +12792,59,55,36,0.0 +12792,67,14,39,0.0 +12792,54,7.45,42,0.0 +12792,36,19,6,0.0 +12792,8,40,48,0.0 +12792,16,17.45,12,0.0 +12792,55,24,23,0.0 +12792,61,28.5,35,0.0 +12792,63,43.9,26,0.0 +12792,33,2.5,9,0.0 +12792,17,39,2,0.0 +12793,35,18,33,0.0 +12793,20,81,43,0.0 +12793,63,43.9,6,0.0 +12793,1,18,23,0.0 +12793,66,17,34,0.0 +12793,67,14,43,0.0 +12793,26,31.23,26,0.0 +12793,11,21,10,0.0 +12793,57,19.5,20,0.0 +12793,25,14,41,0.0 +12793,50,16.25,1,0.0 +12793,42,14,31,0.0 +12793,16,17.45,10,0.0 +12793,39,18,17,0.0 +12793,72,34.8,15,0.0 +12793,27,43.9,14,0.0 +12793,13,6,18,0.0 +12793,64,33.25,45,0.0 +12793,44,19.45,47,0.0 +12793,23,9,25,0.0 +12793,8,40,26,0.0 +12793,46,12,46,0.0 +12793,75,7.75,22,0.0 +12793,60,34,34,0.0 +12793,4,22,17,0.0 +12793,58,13.25,22,0.0 +12793,2,19,29,0.0 +12793,17,39,20,0.0 +12793,36,19,26,0.0 +12793,5,21.35,12,0.0 +12793,12,38,46,0.0 +12793,6,25,37,0.0 +12793,65,21.05,22,0.0 +12793,49,20,14,0.0 +12793,43,46,48,0.0 +12793,21,10,10,0.0 +12793,3,10,23,0.0 +12793,47,9.5,46,0.0 +12793,34,14,22,0.0 +12793,59,55,17,0.0 +12793,37,26,6,0.0 +12793,32,32,36,0.0 +12793,54,7.45,49,0.0 +12793,69,36,1,0.0 +12793,45,9.5,18,0.0 +12793,33,2.5,44,0.0 +12793,55,24,26,0.0 +12793,38,263.5,16,0.0 +12793,31,12.5,32,0.0 +12793,61,28.5,41,0.0 +12793,28,45.6,40,0.0 +12793,71,21.5,7,0.0 +12793,19,9.2,10,0.0 +12793,40,18.4,5,0.0 +12793,51,53,46,0.0 +12793,53,32.8,34,0.0 +12793,29,123.79,27,0.0 +12793,77,13,44,0.0 +12793,62,49.3,27,0.0 +12793,76,18,25,0.0 +12793,48,12.75,1,0.0 +12793,30,25.89,9,0.0 +12793,15,15.5,34,0.0 +12793,68,12.5,39,0.0 +12793,10,31,24,0.0 +12793,24,4.5,4,0.0 +12793,74,10,26,0.0 +12793,56,38,14,0.0 +12793,41,9.65,12,0.0 +12793,70,15,47,0.0 +12794,37,26,28,0.0 +12794,59,55,42,0.0 +12794,12,38,12,0.0 +12794,69,36,22,0.0 +12794,21,10,6,0.0 +12794,5,21.35,4,0.0 +12794,47,9.5,17,0.0 +12794,30,25.89,26,0.0 +12794,45,9.5,4,0.0 +12794,62,49.3,40,0.0 +12795,61,28.5,46,0.0 +12795,34,14,27,0.0 +12795,14,23.25,44,0.0 +12795,57,19.5,27,0.0 +12795,70,15,1,0.0 +12795,42,14,26,0.0 +12795,77,13,30,0.0 +12795,69,36,19,0.0 +12795,73,15,29,0.0 +12795,8,40,24,0.0 +12795,20,81,29,0.0 +12795,17,39,49,0.0 +12795,37,26,39,0.0 +12795,47,9.5,14,0.0 +12795,58,13.25,28,0.0 +12795,53,32.8,43,0.0 +12795,9,97,20,0.0 +12795,65,21.05,24,0.0 +12795,62,49.3,1,0.0 +12795,31,12.5,39,0.0 +12795,16,17.45,24,0.0 +12795,39,18,46,0.0 +12795,21,10,21,0.0 +12795,26,31.23,19,0.0 +12795,75,7.75,50,0.0 +12795,13,6,29,0.0 +12795,18,62.5,17,0.0 +12795,5,21.35,24,0.0 +12795,66,17,7,0.0 +12795,30,25.89,46,0.0 +12795,15,15.5,43,0.0 +12795,56,38,48,0.0 +12795,28,45.6,35,0.0 +12795,4,22,20,0.0 +12795,6,25,43,0.0 +12795,3,10,23,0.0 +12795,54,7.45,5,0.0 +12795,68,12.5,10,0.0 +12795,49,20,2,0.0 +12795,44,19.45,5,0.0 +12795,10,31,28,0.0 +12795,22,21,8,0.0 +12795,33,2.5,24,0.0 +12795,52,7,28,0.0 +12795,11,21,13,0.0 +12795,45,9.5,9,0.0 +12795,36,19,21,0.0 +12795,50,16.25,23,0.0 +12795,59,55,19,0.0 +12795,38,263.5,42,0.0 +12795,2,19,31,0.0 +12795,60,34,20,0.0 +12795,12,38,40,0.0 +12795,32,32,10,0.0 +12795,43,46,43,0.0 +12795,76,18,10,0.0 +12795,64,33.25,25,0.0 +12795,72,34.8,17,0.0 +12795,40,18.4,35,0.0 +12795,46,12,42,0.0 +12795,74,10,37,0.0 +12795,67,14,18,0.0 +12795,41,9.65,5,0.0 +12795,55,24,3,0.0 +12795,71,21.5,12,0.0 +12795,35,18,39,0.0 +12796,20,81,44,0.0 +12796,36,19,41,0.0 +12797,47,9.5,17,0.0 +12797,50,16.25,23,0.0 +12797,55,24,6,0.0 +12797,2,19,49,0.0 +12797,22,21,5,0.0 +12797,39,18,5,0.0 +12797,44,19.45,50,0.0 +12797,75,7.75,15,0.0 +12797,33,2.5,33,0.0 +12797,24,4.5,42,0.0 +12797,74,10,46,0.0 +12797,10,31,3,0.0 +12797,66,17,6,0.0 +12797,36,19,2,0.0 +12797,41,9.65,43,0.0 +12797,53,32.8,49,0.0 +12797,28,45.6,6,0.0 +12797,51,53,7,0.0 +12797,58,13.25,26,0.0 +12797,26,31.23,49,0.0 +12797,18,62.5,27,0.0 +12797,38,263.5,2,0.0 +12797,57,19.5,19,0.0 +12797,61,28.5,3,0.0 +12797,37,26,7,0.0 +12797,34,14,20,0.0 +12797,13,6,40,0.0 +12797,52,7,38,0.0 +12797,19,9.2,14,0.0 +12797,16,17.45,16,0.0 +12797,3,10,6,0.0 +12797,8,40,19,0.0 +12797,5,21.35,30,0.0 +12797,11,21,5,0.0 +12797,63,43.9,45,0.0 +12797,70,15,3,0.0 +12797,23,9,35,0.0 +12797,35,18,44,0.0 +12797,42,14,49,0.0 +12797,31,12.5,17,0.0 +12797,77,13,17,0.0 +12797,68,12.5,14,0.0 +12797,21,10,3,0.0 +12797,32,32,32,0.0 +12797,65,21.05,39,0.0 +12797,76,18,5,0.0 +12797,73,15,19,0.0 +12797,20,81,29,0.0 +12797,56,38,42,0.0 +12797,30,25.89,35,0.0 +12797,71,21.5,40,0.0 +12797,49,20,10,0.0 +12797,69,36,27,0.0 +12797,54,7.45,3,0.0 +12797,62,49.3,41,0.0 +12797,59,55,9,0.0 +12797,7,30,17,0.0 +12797,64,33.25,33,0.0 +12797,60,34,29,0.0 +12797,6,25,14,0.0 +12797,40,18.4,45,0.0 +12797,43,46,44,0.0 +12797,72,34.8,34,0.0 +12797,27,43.9,21,0.0 +12797,9,97,28,0.0 +12797,1,18,50,0.0 +12797,4,22,24,0.0 +12797,29,123.79,42,0.0 +12797,46,12,14,0.0 +12797,45,9.5,42,0.0 +12797,15,15.5,44,0.0 +12797,67,14,7,0.0 +12797,48,12.75,12,0.0 +12798,44,19.45,3,0.0 +12798,62,49.3,21,0.0 +12798,66,17,26,0.0 +12798,76,18,44,0.0 +12798,22,21,22,0.0 +12798,51,53,34,0.0 +12798,26,31.23,31,0.0 +12798,40,18.4,17,0.0 +12798,67,14,44,0.0 +12798,58,13.25,17,0.0 +12799,65,21.05,9,0.0 +12799,38,263.5,30,0.0 +12799,56,38,6,0.0 +12799,64,33.25,48,0.0 +12799,33,2.5,23,0.0 +12799,9,97,23,0.0 +12799,73,15,12,0.0 +12799,59,55,11,0.0 +12799,25,14,18,0.0 +12799,63,43.9,30,0.0 +12799,76,18,43,0.0 +12799,61,28.5,23,0.0 +12799,40,18.4,19,0.0 +12799,42,14,19,0.0 +12799,23,9,19,0.0 +12799,2,19,3,0.0 +12799,6,25,1,0.0 +12799,68,12.5,26,0.0 +12799,21,10,44,0.0 +12799,18,62.5,35,0.0 +12799,26,31.23,49,0.0 +12799,45,9.5,38,0.0 +12799,17,39,46,0.0 +12799,35,18,10,0.0 +12799,55,24,18,0.0 +12799,49,20,38,0.0 +12799,47,9.5,31,0.0 +12799,11,21,20,0.0 +12799,54,7.45,41,0.0 +12799,77,13,34,0.0 +12799,5,21.35,18,0.0 +12799,48,12.75,21,0.0 +12799,16,17.45,23,0.0 +12799,34,14,5,0.0 +12799,53,32.8,11,0.0 +12799,67,14,33,0.0 +12799,7,30,28,0.0 +12799,22,21,35,0.0 +12799,29,123.79,36,0.0 +12799,52,7,30,0.0 +12799,43,46,36,0.0 +12799,60,34,33,0.0 +12799,32,32,32,0.0 +12799,30,25.89,16,0.0 +12799,28,45.6,5,0.0 +12799,3,10,21,0.0 +12800,51,53,41,0.0 +12800,49,20,47,0.0 +12800,58,13.25,23,0.0 +12800,29,123.79,2,0.0 +12800,16,17.45,45,0.0 +12800,77,13,32,0.0 +12800,48,12.75,49,0.0 +12800,60,34,20,0.0 +12800,43,46,22,0.0 +12800,54,7.45,14,0.0 +12800,53,32.8,2,0.0 +12800,9,97,39,0.0 +12801,43,46,28,0.0 +12801,57,19.5,17,0.0 +12801,76,18,21,0.0 +12801,44,19.45,46,0.0 +12801,69,36,18,0.0 +12801,12,38,20,0.0 +12801,71,21.5,28,0.0 +12801,1,18,8,0.0 +12801,30,25.89,10,0.0 +12801,29,123.79,46,0.0 +12801,40,18.4,3,0.0 +12801,55,24,12,0.0 +12801,21,10,17,0.0 +12801,14,23.25,3,0.0 +12801,18,62.5,35,0.0 +12801,23,9,49,0.0 +12801,33,2.5,3,0.0 +12801,31,12.5,33,0.0 +12801,74,10,45,0.0 +12801,9,97,47,0.0 +12801,45,9.5,6,0.0 +12801,53,32.8,19,0.0 +12801,7,30,26,0.0 +12801,15,15.5,35,0.0 +12801,48,12.75,8,0.0 +12801,49,20,1,0.0 +12801,25,14,7,0.0 +12801,50,16.25,8,0.0 +12801,6,25,23,0.0 +12801,38,263.5,45,0.0 +12801,56,38,43,0.0 +12801,19,9.2,1,0.0 +12801,66,17,18,0.0 +12801,73,15,49,0.0 +12801,8,40,33,0.0 +12801,64,33.25,13,0.0 +12801,77,13,26,0.0 +12801,11,21,18,0.0 +12801,13,6,35,0.0 +12801,75,7.75,50,0.0 +12801,72,34.8,20,0.0 +12801,63,43.9,2,0.0 +12801,41,9.65,31,0.0 +12801,22,21,13,0.0 +12801,20,81,3,0.0 +12801,61,28.5,42,0.0 +12801,62,49.3,37,0.0 +12801,70,15,13,0.0 +12801,17,39,10,0.0 +12802,56,38,34,0.0 +12802,35,18,9,0.0 +12802,43,46,21,0.0 +12802,3,10,22,0.0 +12802,15,15.5,25,0.0 +12802,65,21.05,18,0.0 +12802,48,12.75,30,0.0 +12802,77,13,27,0.0 +12802,18,62.5,17,0.0 +12802,25,14,40,0.0 +12802,52,7,8,0.0 +12802,71,21.5,17,0.0 +12802,68,12.5,5,0.0 +12802,21,10,36,0.0 +12802,39,18,9,0.0 +12802,16,17.45,23,0.0 +12802,49,20,14,0.0 +12802,64,33.25,16,0.0 +12802,17,39,23,0.0 +12802,33,2.5,32,0.0 +12802,5,21.35,31,0.0 +12802,53,32.8,20,0.0 +12802,7,30,41,0.0 +12802,11,21,20,0.0 +12802,55,24,13,0.0 +12802,75,7.75,42,0.0 +12802,67,14,8,0.0 +12802,1,18,23,0.0 +12802,42,14,46,0.0 +12802,27,43.9,37,0.0 +12802,60,34,25,0.0 +12802,61,28.5,43,0.0 +12802,45,9.5,21,0.0 +12802,50,16.25,19,0.0 +12802,44,19.45,36,0.0 +12802,63,43.9,30,0.0 +12802,4,22,3,0.0 +12803,40,18.4,48,0.0 +12803,2,19,29,0.0 +12803,56,38,11,0.0 +12803,25,14,17,0.0 +12803,72,34.8,48,0.0 +12803,35,18,42,0.0 +12803,10,31,16,0.0 +12803,1,18,38,0.0 +12803,34,14,26,0.0 +12803,38,263.5,28,0.0 +12803,52,7,9,0.0 +12803,27,43.9,34,0.0 +12803,23,9,3,0.0 +12803,3,10,40,0.0 +12803,62,49.3,7,0.0 +12803,39,18,33,0.0 +12803,9,97,33,0.0 +12803,28,45.6,27,0.0 +12803,77,13,19,0.0 +12803,14,23.25,45,0.0 +12803,30,25.89,41,0.0 +12803,48,12.75,17,0.0 +12803,69,36,23,0.0 +12804,49,20,37,0.0 +12804,16,17.45,34,0.0 +12804,5,21.35,12,0.0 +12804,3,10,47,0.0 +12804,62,49.3,18,0.0 +12804,6,25,12,0.0 +12804,36,19,8,0.0 +12804,19,9.2,43,0.0 +12804,31,12.5,27,0.0 +12804,30,25.89,8,0.0 +12804,54,7.45,13,0.0 +12804,38,263.5,35,0.0 +12804,24,4.5,31,0.0 +12804,55,24,17,0.0 +12804,77,13,28,0.0 +12804,57,19.5,6,0.0 +12804,18,62.5,5,0.0 +12804,7,30,21,0.0 +12804,26,31.23,24,0.0 +12804,23,9,10,0.0 +12804,14,23.25,9,0.0 +12804,66,17,10,0.0 +12804,65,21.05,9,0.0 +12804,64,33.25,4,0.0 +12804,71,21.5,16,0.0 +12804,69,36,33,0.0 +12804,50,16.25,6,0.0 +12804,32,32,16,0.0 +12804,53,32.8,49,0.0 +12804,74,10,40,0.0 +12804,56,38,47,0.0 +12804,17,39,3,0.0 +12804,1,18,4,0.0 +12804,39,18,49,0.0 +12804,52,7,44,0.0 +12804,72,34.8,4,0.0 +12804,28,45.6,20,0.0 +12804,51,53,8,0.0 +12804,8,40,6,0.0 +12804,25,14,40,0.0 +12804,75,7.75,48,0.0 +12804,76,18,36,0.0 +12804,45,9.5,21,0.0 +12804,70,15,9,0.0 +12804,47,9.5,48,0.0 +12804,63,43.9,5,0.0 +12804,12,38,46,0.0 +12804,73,15,5,0.0 +12804,11,21,35,0.0 +12804,13,6,1,0.0 +12804,67,14,28,0.0 +12804,4,22,13,0.0 +12804,59,55,4,0.0 +12804,21,10,36,0.0 +12804,61,28.5,34,0.0 +12804,34,14,5,0.0 +12804,29,123.79,28,0.0 +12804,58,13.25,23,0.0 +12804,9,97,9,0.0 +12804,2,19,15,0.0 +12804,41,9.65,24,0.0 +12804,46,12,11,0.0 +12804,15,15.5,31,0.0 +12804,20,81,40,0.0 +12804,27,43.9,3,0.0 +12804,48,12.75,34,0.0 +12804,60,34,21,0.0 +12804,44,19.45,49,0.0 +12804,22,21,41,0.0 +12804,37,26,6,0.0 +12804,10,31,4,0.0 +12804,40,18.4,5,0.0 +12804,43,46,34,0.0 +12804,33,2.5,42,0.0 +12804,35,18,13,0.0 +12805,17,39,45,0.0 +12805,62,49.3,23,0.0 +12805,48,12.75,36,0.0 +12805,55,24,31,0.0 +12805,49,20,37,0.0 +12805,59,55,46,0.0 +12805,43,46,19,0.0 +12805,44,19.45,22,0.0 +12805,40,18.4,20,0.0 +12805,24,4.5,13,0.0 +12805,61,28.5,2,0.0 +12805,9,97,20,0.0 +12805,19,9.2,16,0.0 +12805,20,81,25,0.0 +12805,72,34.8,16,0.0 +12805,71,21.5,50,0.0 +12805,22,21,3,0.0 +12805,10,31,4,0.0 +12805,33,2.5,13,0.0 +12805,60,34,23,0.0 +12805,21,10,18,0.0 +12805,53,32.8,7,0.0 +12805,26,31.23,14,0.0 +12805,64,33.25,11,0.0 +12805,77,13,17,0.0 +12805,69,36,46,0.0 +12805,56,38,44,0.0 +12805,58,13.25,39,0.0 +12805,37,26,25,0.0 +12805,75,7.75,49,0.0 +12805,52,7,29,0.0 +12805,70,15,6,0.0 +12805,2,19,10,0.0 +12805,3,10,33,0.0 +12805,65,21.05,39,0.0 +12805,38,263.5,2,0.0 +12805,4,22,12,0.0 +12805,13,6,43,0.0 +12805,50,16.25,5,0.0 +12806,16,17.45,15,0.0 +12806,21,10,16,0.0 +12806,44,19.45,5,0.0 +12806,5,21.35,44,0.0 +12806,54,7.45,24,0.0 +12806,36,19,28,0.0 +12806,31,12.5,45,0.0 +12806,76,18,22,0.0 +12806,15,15.5,18,0.0 +12806,18,62.5,8,0.0 +12806,41,9.65,5,0.0 +12806,22,21,24,0.0 +12806,72,34.8,26,0.0 +12806,4,22,1,0.0 +12806,27,43.9,44,0.0 +12806,24,4.5,36,0.0 +12806,11,21,39,0.0 +12806,38,263.5,18,0.0 +12806,29,123.79,9,0.0 +12806,32,32,43,0.0 +12806,69,36,31,0.0 +12806,9,97,9,0.0 +12806,1,18,15,0.0 +12806,52,7,32,0.0 +12807,63,43.9,4,0.0 +12807,69,36,15,0.0 +12807,18,62.5,6,0.0 +12807,49,20,34,0.0 +12807,1,18,23,0.0 +12807,4,22,47,0.0 +12807,44,19.45,44,0.0 +12807,25,14,24,0.0 +12807,13,6,39,0.0 +12807,56,38,21,0.0 +12807,43,46,37,0.0 +12807,66,17,39,0.0 +12807,14,23.25,15,0.0 +12807,42,14,41,0.0 +12807,37,26,41,0.0 +12807,19,9.2,27,0.0 +12807,15,15.5,44,0.0 +12807,41,9.65,30,0.0 +12807,33,2.5,19,0.0 +12807,30,25.89,10,0.0 +12807,58,13.25,3,0.0 +12807,28,45.6,36,0.0 +12807,39,18,5,0.0 +12807,70,15,13,0.0 +12807,72,34.8,3,0.0 +12807,74,10,3,0.0 +12807,10,31,19,0.0 +12807,75,7.75,45,0.0 +12807,64,33.25,48,0.0 +12807,22,21,17,0.0 +12807,24,4.5,32,0.0 +12807,67,14,7,0.0 +12807,7,30,29,0.0 +12807,34,14,42,0.0 +12807,60,34,6,0.0 +12807,65,21.05,33,0.0 +12807,57,19.5,44,0.0 +12807,53,32.8,10,0.0 +12807,26,31.23,18,0.0 +12807,59,55,13,0.0 +12807,5,21.35,20,0.0 +12807,17,39,13,0.0 +12808,23,9,50,0.0 +12808,26,31.23,25,0.0 +12808,57,19.5,46,0.0 +12808,44,19.45,14,0.0 +12808,15,15.5,25,0.0 +12808,51,53,15,0.0 +12808,12,38,17,0.0 +12808,66,17,31,0.0 +12808,53,32.8,24,0.0 +12808,14,23.25,35,0.0 +12808,60,34,2,0.0 +12808,3,10,40,0.0 +12808,29,123.79,17,0.0 +12808,16,17.45,8,0.0 +12808,5,21.35,3,0.0 +12808,43,46,22,0.0 +12808,55,24,27,0.0 +12808,17,39,41,0.0 +12808,4,22,10,0.0 +12808,76,18,50,0.0 +12808,33,2.5,27,0.0 +12808,67,14,41,0.0 +12808,27,43.9,48,0.0 +12808,22,21,16,0.0 +12808,56,38,40,0.0 +12808,39,18,37,0.0 +12808,21,10,49,0.0 +12808,37,26,33,0.0 +12808,19,9.2,8,0.0 +12808,63,43.9,24,0.0 +12808,61,28.5,36,0.0 +12808,58,13.25,36,0.0 +12808,46,12,50,0.0 +12808,28,45.6,20,0.0 +12808,54,7.45,38,0.0 +12808,6,25,12,0.0 +12808,1,18,28,0.0 +12808,71,21.5,23,0.0 +12808,59,55,10,0.0 +12808,9,97,41,0.0 +12808,36,19,19,0.0 +12809,45,9.5,39,0.0 +12809,11,21,18,0.0 +12809,27,43.9,5,0.0 +12809,66,17,14,0.0 +12809,23,9,37,0.0 +12809,33,2.5,8,0.0 +12809,3,10,16,0.0 +12809,8,40,28,0.0 +12809,7,30,13,0.0 +12809,31,12.5,3,0.0 +12809,20,81,6,0.0 +12809,32,32,5,0.0 +12809,62,49.3,50,0.0 +12809,68,12.5,5,0.0 +12809,73,15,10,0.0 +12809,14,23.25,48,0.0 +12809,36,19,20,0.0 +12809,1,18,12,0.0 +12809,44,19.45,50,0.0 +12809,9,97,39,0.0 +12809,57,19.5,18,0.0 +12809,16,17.45,35,0.0 +12809,26,31.23,15,0.0 +12809,72,34.8,6,0.0 +12809,70,15,29,0.0 +12809,53,32.8,23,0.0 +12809,65,21.05,23,0.0 +12809,71,21.5,2,0.0 +12809,41,9.65,9,0.0 +12809,50,16.25,7,0.0 +12809,38,263.5,1,0.0 +12809,60,34,34,0.0 +12809,75,7.75,46,0.0 +12809,17,39,37,0.0 +12809,47,9.5,49,0.0 +12809,54,7.45,29,0.0 +12809,46,12,28,0.0 +12809,24,4.5,21,0.0 +12809,13,6,41,0.0 +12809,40,18.4,26,0.0 +12809,6,25,9,0.0 +12809,37,26,25,0.0 +12809,49,20,31,0.0 +12809,63,43.9,27,0.0 +12809,61,28.5,40,0.0 +12809,39,18,27,0.0 +12809,22,21,17,0.0 +12809,55,24,42,0.0 +12809,12,38,9,0.0 +12809,58,13.25,43,0.0 +12809,52,7,43,0.0 +12809,43,46,32,0.0 +12809,76,18,8,0.0 +12809,2,19,27,0.0 +12809,67,14,23,0.0 +12809,18,62.5,26,0.0 +12809,42,14,34,0.0 +12809,56,38,48,0.0 +12809,21,10,45,0.0 +12809,15,15.5,29,0.0 +12809,48,12.75,3,0.0 +12809,34,14,2,0.0 +12809,5,21.35,4,0.0 +12809,25,14,14,0.0 +12809,35,18,24,0.0 +12809,51,53,9,0.0 +12809,19,9.2,17,0.0 +12809,69,36,50,0.0 +12809,4,22,50,0.0 +12809,28,45.6,19,0.0 +12809,64,33.25,46,0.0 +12809,29,123.79,46,0.0 +12809,74,10,11,0.0 +12809,30,25.89,15,0.0 +12809,59,55,1,0.0 +12809,77,13,26,0.0 +12810,65,21.05,36,0.0 +12810,66,17,38,0.0 +12810,47,9.5,31,0.0 +12810,33,2.5,10,0.0 +12810,24,4.5,15,0.0 +12810,73,15,42,0.0 +12810,20,81,13,0.0 +12810,9,97,23,0.0 +12810,50,16.25,34,0.0 +12810,56,38,40,0.0 +12810,25,14,8,0.0 +12810,41,9.65,27,0.0 +12810,11,21,25,0.0 +12810,12,38,21,0.0 +12810,54,7.45,31,0.0 +12810,76,18,44,0.0 +12810,19,9.2,34,0.0 +12810,3,10,10,0.0 +12810,8,40,32,0.0 +12810,26,31.23,20,0.0 +12810,63,43.9,10,0.0 +12810,14,23.25,10,0.0 +12810,55,24,9,0.0 +12810,29,123.79,21,0.0 +12810,32,32,34,0.0 +12810,45,9.5,18,0.0 +12810,6,25,31,0.0 +12810,72,34.8,12,0.0 +12810,17,39,23,0.0 +12810,10,31,50,0.0 +12810,34,14,47,0.0 +12810,7,30,28,0.0 +12810,16,17.45,40,0.0 +12811,6,25,1,0.0 +12811,56,38,11,0.0 +12811,66,17,33,0.0 +12811,20,81,23,0.0 +12811,9,97,26,0.0 +12811,35,18,30,0.0 +12811,43,46,5,0.0 +12811,60,34,13,0.0 +12811,28,45.6,16,0.0 +12811,11,21,42,0.0 +12811,59,55,25,0.0 +12811,54,7.45,44,0.0 +12811,36,19,35,0.0 +12811,76,18,5,0.0 +12811,24,4.5,49,0.0 +12811,15,15.5,23,0.0 +12811,52,7,8,0.0 +12811,68,12.5,5,0.0 +12811,49,20,10,0.0 +12811,51,53,3,0.0 +12811,32,32,9,0.0 +12811,16,17.45,5,0.0 +12811,75,7.75,23,0.0 +12811,2,19,35,0.0 +12811,3,10,30,0.0 +12811,4,22,47,0.0 +12811,41,9.65,3,0.0 +12811,50,16.25,4,0.0 +12811,71,21.5,37,0.0 +12811,63,43.9,4,0.0 +12811,13,6,32,0.0 +12811,44,19.45,21,0.0 +12811,5,21.35,15,0.0 +12811,23,9,10,0.0 +12811,47,9.5,3,0.0 +12811,64,33.25,40,0.0 +12811,18,62.5,37,0.0 +12811,37,26,4,0.0 +12811,48,12.75,45,0.0 +12811,17,39,48,0.0 +12811,57,19.5,20,0.0 +12811,34,14,1,0.0 +12811,27,43.9,3,0.0 +12811,1,18,46,0.0 +12811,29,123.79,34,0.0 +12811,30,25.89,16,0.0 +12812,34,14,5,0.0 +12812,43,46,46,0.0 +12812,72,34.8,31,0.0 +12812,75,7.75,32,0.0 +12812,30,25.89,34,0.0 +12812,18,62.5,4,0.0 +12812,29,123.79,17,0.0 +12812,68,12.5,2,0.0 +12812,25,14,39,0.0 +12812,36,19,12,0.0 +12812,40,18.4,28,0.0 +12812,62,49.3,6,0.0 +12812,51,53,20,0.0 +12812,17,39,3,0.0 +12812,69,36,7,0.0 +12812,9,97,41,0.0 +12812,48,12.75,44,0.0 +12812,42,14,37,0.0 +12812,54,7.45,20,0.0 +12812,77,13,33,0.0 +12813,54,7.45,44,0.0 +12813,4,22,44,0.0 +12813,2,19,15,0.0 +12813,25,14,35,0.0 +12813,76,18,19,0.0 +12813,8,40,8,0.0 +12813,71,21.5,50,0.0 +12813,14,23.25,47,0.0 +12813,53,32.8,5,0.0 +12813,60,34,37,0.0 +12813,52,7,14,0.0 +12813,20,81,43,0.0 +12813,15,15.5,24,0.0 +12813,46,12,1,0.0 +12813,33,2.5,48,0.0 +12813,43,46,45,0.0 +12813,18,62.5,39,0.0 +12813,23,9,48,0.0 +12813,74,10,14,0.0 +12813,55,24,9,0.0 +12813,69,36,34,0.0 +12813,5,21.35,40,0.0 +12813,65,21.05,27,0.0 +12813,64,33.25,2,0.0 +12813,29,123.79,26,0.0 +12813,59,55,11,0.0 +12813,32,32,32,0.0 +12813,58,13.25,37,0.0 +12813,67,14,23,0.0 +12813,37,26,34,0.0 +12813,38,263.5,45,0.0 +12813,63,43.9,40,0.0 +12813,70,15,44,0.0 +12813,57,19.5,27,0.0 +12813,35,18,37,0.0 +12813,73,15,20,0.0 +12813,22,21,50,0.0 +12813,13,6,13,0.0 +12813,44,19.45,1,0.0 +12813,42,14,50,0.0 +12813,11,21,30,0.0 +12813,21,10,12,0.0 +12813,62,49.3,8,0.0 +12813,10,31,42,0.0 +12813,75,7.75,38,0.0 +12813,19,9.2,27,0.0 +12813,34,14,44,0.0 +12813,24,4.5,44,0.0 +12813,16,17.45,28,0.0 +12813,56,38,5,0.0 +12813,39,18,37,0.0 +12813,31,12.5,24,0.0 +12813,68,12.5,47,0.0 +12813,9,97,14,0.0 +12814,22,21,12,0.0 +12814,73,15,38,0.0 +12814,34,14,39,0.0 +12814,50,16.25,18,0.0 +12814,1,18,21,0.0 +12814,65,21.05,37,0.0 +12814,19,9.2,32,0.0 +12814,46,12,37,0.0 +12814,43,46,37,0.0 +12814,68,12.5,44,0.0 +12814,44,19.45,47,0.0 +12814,4,22,7,0.0 +12814,41,9.65,43,0.0 +12814,36,19,49,0.0 +12814,20,81,46,0.0 +12814,77,13,43,0.0 +12814,15,15.5,25,0.0 +12814,71,21.5,44,0.0 +12814,37,26,3,0.0 +12814,30,25.89,2,0.0 +12814,17,39,3,0.0 +12814,70,15,32,0.0 +12814,59,55,22,0.0 +12814,3,10,8,0.0 +12814,10,31,9,0.0 +12814,13,6,6,0.0 +12814,12,38,23,0.0 +12814,27,43.9,41,0.0 +12814,38,263.5,22,0.0 +12814,67,14,39,0.0 +12814,45,9.5,17,0.0 +12814,14,23.25,37,0.0 +12814,5,21.35,33,0.0 +12814,8,40,38,0.0 +12814,39,18,8,0.0 +12814,76,18,24,0.0 +12814,57,19.5,10,0.0 +12814,24,4.5,23,0.0 +12814,7,30,17,0.0 +12814,16,17.45,9,0.0 +12814,74,10,22,0.0 +12814,48,12.75,34,0.0 +12814,11,21,30,0.0 +12814,52,7,17,0.0 +12814,23,9,29,0.0 +12814,35,18,29,0.0 +12814,51,53,35,0.0 +12814,56,38,10,0.0 +12814,72,34.8,30,0.0 +12814,25,14,8,0.0 +12814,21,10,23,0.0 +12814,64,33.25,6,0.0 +12814,33,2.5,38,0.0 +12814,61,28.5,24,0.0 +12814,60,34,16,0.0 +12814,75,7.75,18,0.0 +12814,2,19,17,0.0 +12814,28,45.6,12,0.0 +12814,49,20,28,0.0 +12814,26,31.23,12,0.0 +12814,58,13.25,27,0.0 +12814,69,36,27,0.0 +12815,74,10,34,0.0 +12815,35,18,43,0.0 +12815,9,97,19,0.0 +12815,8,40,20,0.0 +12815,69,36,47,0.0 +12815,38,263.5,15,0.0 +12815,53,32.8,36,0.0 +12815,1,18,33,0.0 +12815,73,15,11,0.0 +12815,21,10,15,0.0 +12815,63,43.9,17,0.0 +12815,62,49.3,47,0.0 +12815,72,34.8,47,0.0 +12815,26,31.23,4,0.0 +12815,30,25.89,7,0.0 +12815,43,46,37,0.0 +12815,75,7.75,3,0.0 +12815,32,32,7,0.0 +12815,44,19.45,6,0.0 +12815,40,18.4,5,0.0 +12815,76,18,27,0.0 +12815,5,21.35,31,0.0 +12815,46,12,43,0.0 +12815,58,13.25,23,0.0 +12815,56,38,34,0.0 +12815,70,15,32,0.0 +12815,19,9.2,37,0.0 +12815,55,24,8,0.0 +12815,42,14,17,0.0 +12815,64,33.25,4,0.0 +12815,39,18,33,0.0 +12815,65,21.05,17,0.0 +12815,67,14,1,0.0 +12815,10,31,1,0.0 +12815,36,19,28,0.0 +12815,52,7,43,0.0 +12815,66,17,15,0.0 +12815,17,39,41,0.0 +12815,61,28.5,30,0.0 +12815,23,9,10,0.0 +12815,20,81,8,0.0 +12815,24,4.5,30,0.0 +12815,2,19,12,0.0 +12815,60,34,8,0.0 +12815,29,123.79,13,0.0 +12816,69,36,11,0.0 +12816,54,7.45,41,0.0 +12816,16,17.45,23,0.0 +12816,43,46,15,0.0 +12816,15,15.5,3,0.0 +12816,58,13.25,30,0.0 +12816,40,18.4,14,0.0 +12816,75,7.75,19,0.0 +12816,11,21,11,0.0 +12816,24,4.5,30,0.0 +12816,51,53,28,0.0 +12816,44,19.45,16,0.0 +12816,66,17,47,0.0 +12816,3,10,15,0.0 +12816,72,34.8,26,0.0 +12816,19,9.2,38,0.0 +12816,63,43.9,47,0.0 +12816,23,9,5,0.0 +12816,34,14,21,0.0 +12816,73,15,49,0.0 +12816,30,25.89,13,0.0 +12816,65,21.05,4,0.0 +12816,14,23.25,38,0.0 +12816,13,6,35,0.0 +12816,60,34,20,0.0 +12816,49,20,5,0.0 +12816,39,18,44,0.0 +12816,62,49.3,40,0.0 +12816,50,16.25,8,0.0 +12816,59,55,14,0.0 +12816,52,7,34,0.0 +12816,21,10,45,0.0 +12816,74,10,30,0.0 +12816,56,38,15,0.0 +12816,47,9.5,16,0.0 +12816,45,9.5,40,0.0 +12816,41,9.65,22,0.0 +12816,29,123.79,27,0.0 +12816,55,24,5,0.0 +12816,33,2.5,2,0.0 +12816,7,30,39,0.0 +12816,70,15,24,0.0 +12816,1,18,44,0.0 +12816,12,38,19,0.0 +12816,64,33.25,8,0.0 +12816,25,14,37,0.0 +12816,38,263.5,50,0.0 +12816,67,14,40,0.0 +12816,53,32.8,4,0.0 +12816,68,12.5,44,0.0 +12816,8,40,20,0.0 +12816,9,97,19,0.0 +12816,36,19,28,0.0 +12816,27,43.9,26,0.0 +12816,32,32,37,0.0 +12816,6,25,22,0.0 +12816,77,13,17,0.0 +12816,46,12,21,0.0 +12817,56,38,2,0.0 +12817,4,22,31,0.0 +12817,26,31.23,17,0.0 +12817,7,30,40,0.0 +12817,57,19.5,24,0.0 +12817,12,38,36,0.0 +12817,74,10,6,0.0 +12817,30,25.89,40,0.0 +12817,34,14,46,0.0 +12817,72,34.8,48,0.0 +12817,31,12.5,16,0.0 +12817,36,19,2,0.0 +12817,19,9.2,42,0.0 +12817,21,10,40,0.0 +12817,55,24,26,0.0 +12817,70,15,49,0.0 +12817,13,6,14,0.0 +12817,25,14,6,0.0 +12817,62,49.3,50,0.0 +12817,67,14,11,0.0 +12817,20,81,41,0.0 +12817,68,12.5,8,0.0 +12818,52,7,20,0.0 +12818,31,12.5,12,0.0 +12818,14,23.25,4,0.0 +12818,76,18,36,0.0 +12818,65,21.05,20,0.0 +12818,61,28.5,7,0.0 +12818,47,9.5,16,0.0 +12818,10,31,47,0.0 +12818,35,18,32,0.0 +12818,24,4.5,42,0.0 +12818,42,14,49,0.0 +12818,3,10,1,0.0 +12818,46,12,44,0.0 +12818,50,16.25,49,0.0 +12819,64,33.25,9,0.0 +12819,68,12.5,9,0.0 +12819,15,15.5,4,0.0 +12819,29,123.79,39,0.0 +12819,50,16.25,24,0.0 +12819,7,30,50,0.0 +12819,65,21.05,38,0.0 +12819,34,14,15,0.0 +12819,41,9.65,38,0.0 +12819,35,18,41,0.0 +12819,5,21.35,35,0.0 +12819,25,14,22,0.0 +12819,67,14,39,0.0 +12819,54,7.45,10,0.0 +12819,18,62.5,35,0.0 +12819,49,20,24,0.0 +12819,28,45.6,41,0.0 +12819,73,15,2,0.0 +12819,72,34.8,27,0.0 +12819,56,38,44,0.0 +12819,52,7,44,0.0 +12819,66,17,6,0.0 +12819,46,12,49,0.0 +12819,48,12.75,41,0.0 +12819,8,40,46,0.0 +12819,12,38,20,0.0 +12819,27,43.9,46,0.0 +12819,16,17.45,19,0.0 +12819,63,43.9,14,0.0 +12819,69,36,6,0.0 +12819,59,55,3,0.0 +12819,45,9.5,12,0.0 +12819,43,46,12,0.0 +12819,31,12.5,8,0.0 +12819,61,28.5,16,0.0 +12819,70,15,29,0.0 +12819,13,6,16,0.0 +12819,19,9.2,38,0.0 +12819,9,97,13,0.0 +12819,22,21,19,0.0 +12819,53,32.8,22,0.0 +12819,14,23.25,6,0.0 +12819,39,18,17,0.0 +12819,76,18,47,0.0 +12819,62,49.3,4,0.0 +12819,4,22,7,0.0 +12819,26,31.23,49,0.0 +12819,36,19,22,0.0 +12819,58,13.25,10,0.0 +12819,40,18.4,7,0.0 +12819,1,18,11,0.0 +12819,10,31,16,0.0 +12819,38,263.5,16,0.0 +12819,17,39,32,0.0 +12819,55,24,41,0.0 +12819,42,14,11,0.0 +12819,77,13,1,0.0 +12819,2,19,19,0.0 +12819,75,7.75,8,0.0 +12819,6,25,42,0.0 +12819,23,9,6,0.0 +12819,21,10,12,0.0 +12819,71,21.5,25,0.0 +12819,37,26,50,0.0 +12819,11,21,3,0.0 +12819,60,34,5,0.0 +12819,51,53,47,0.0 +12819,44,19.45,9,0.0 +12819,33,2.5,39,0.0 +12820,11,21,31,0.0 +12820,62,49.3,18,0.0 +12820,44,19.45,25,0.0 +12820,48,12.75,3,0.0 +12820,77,13,26,0.0 +12820,45,9.5,12,0.0 +12820,43,46,26,0.0 +12820,20,81,7,0.0 +12820,58,13.25,20,0.0 +12820,33,2.5,47,0.0 +12820,28,45.6,47,0.0 +12820,46,12,2,0.0 +12820,67,14,44,0.0 +12820,18,62.5,1,0.0 +12820,51,53,33,0.0 +12820,69,36,4,0.0 +12820,26,31.23,45,0.0 +12820,52,7,17,0.0 +12820,14,23.25,13,0.0 +12820,41,9.65,20,0.0 +12820,12,38,26,0.0 +12820,65,21.05,10,0.0 +12820,5,21.35,32,0.0 +12820,55,24,49,0.0 +12820,32,32,38,0.0 +12820,36,19,31,0.0 +12820,27,43.9,2,0.0 +12820,57,19.5,17,0.0 +12820,31,12.5,31,0.0 +12820,23,9,38,0.0 +12820,42,14,44,0.0 +12820,7,30,38,0.0 +12820,22,21,37,0.0 +12820,34,14,47,0.0 +12821,77,13,23,0.0 +12821,29,123.79,31,0.0 +12821,41,9.65,43,0.0 +12821,32,32,44,0.0 +12821,8,40,40,0.0 +12821,7,30,7,0.0 +12821,15,15.5,33,0.0 +12821,72,34.8,9,0.0 +12821,49,20,39,0.0 +12821,68,12.5,8,0.0 +12821,37,26,29,0.0 +12821,62,49.3,43,0.0 +12821,67,14,35,0.0 +12821,9,97,46,0.0 +12821,1,18,11,0.0 +12821,4,22,15,0.0 +12821,57,19.5,19,0.0 +12821,65,21.05,35,0.0 +12821,54,7.45,2,0.0 +12821,19,9.2,5,0.0 +12821,27,43.9,8,0.0 +12821,46,12,43,0.0 +12821,45,9.5,11,0.0 +12821,28,45.6,44,0.0 +12821,39,18,22,0.0 +12821,35,18,27,0.0 +12822,31,12.5,48,0.0 +12822,41,9.65,33,0.0 +12822,62,49.3,21,0.0 +12822,11,21,49,0.0 +12822,19,9.2,50,0.0 +12822,34,14,2,0.0 +12822,73,15,15,0.0 +12822,70,15,2,0.0 +12822,38,263.5,31,0.0 +12822,59,55,33,0.0 +12822,29,123.79,36,0.0 +12822,6,25,25,0.0 +12822,64,33.25,47,0.0 +12822,40,18.4,15,0.0 +12822,43,46,32,0.0 +12822,4,22,8,0.0 +12822,45,9.5,12,0.0 +12822,14,23.25,31,0.0 +12822,66,17,31,0.0 +12822,37,26,10,0.0 +12822,51,53,30,0.0 +12822,18,62.5,22,0.0 +12822,33,2.5,8,0.0 +12822,42,14,46,0.0 +12822,13,6,35,0.0 +12822,60,34,45,0.0 +12822,72,34.8,49,0.0 +12822,16,17.45,41,0.0 +12822,58,13.25,37,0.0 +12822,1,18,43,0.0 +12822,12,38,20,0.0 +12822,55,24,44,0.0 +12822,75,7.75,11,0.0 +12822,28,45.6,50,0.0 +12822,26,31.23,44,0.0 +12822,77,13,40,0.0 +12822,3,10,43,0.0 +12822,48,12.75,20,0.0 +12822,44,19.45,18,0.0 +12822,76,18,21,0.0 +12822,69,36,25,0.0 +12822,50,16.25,45,0.0 +12822,74,10,7,0.0 +12822,9,97,46,0.0 +12822,27,43.9,27,0.0 +12822,10,31,33,0.0 +12822,35,18,15,0.0 +12822,23,9,49,0.0 +12822,2,19,42,0.0 +12822,21,10,26,0.0 +12822,57,19.5,30,0.0 +12822,65,21.05,46,0.0 +12822,5,21.35,5,0.0 +12822,17,39,37,0.0 +12822,67,14,22,0.0 +12822,52,7,1,0.0 +12822,54,7.45,24,0.0 +12822,20,81,43,0.0 +12822,46,12,37,0.0 +12823,32,32,11,0.0 +12823,66,17,37,0.0 +12823,25,14,48,0.0 +12823,16,17.45,12,0.0 +12823,38,263.5,50,0.0 +12823,40,18.4,38,0.0 +12823,9,97,34,0.0 +12823,45,9.5,42,0.0 +12823,22,21,48,0.0 +12823,72,34.8,2,0.0 +12823,29,123.79,24,0.0 +12823,17,39,13,0.0 +12823,6,25,29,0.0 +12823,73,15,23,0.0 +12823,26,31.23,4,0.0 +12823,12,38,13,0.0 +12823,67,14,13,0.0 +12823,60,34,23,0.0 +12823,69,36,41,0.0 +12823,7,30,47,0.0 +12823,13,6,31,0.0 +12823,57,19.5,10,0.0 +12823,62,49.3,3,0.0 +12823,75,7.75,45,0.0 +12823,46,12,9,0.0 +12823,24,4.5,36,0.0 +12823,33,2.5,23,0.0 +12823,50,16.25,35,0.0 +12823,77,13,36,0.0 +12823,53,32.8,29,0.0 +12823,65,21.05,34,0.0 +12823,64,33.25,17,0.0 +12823,68,12.5,19,0.0 +12823,42,14,30,0.0 +12823,14,23.25,47,0.0 +12823,52,7,37,0.0 +12823,47,9.5,47,0.0 +12823,74,10,44,0.0 +12823,4,22,14,0.0 +12823,59,55,48,0.0 +12823,28,45.6,25,0.0 +12823,55,24,16,0.0 +12823,56,38,37,0.0 +12823,44,19.45,35,0.0 +12823,30,25.89,30,0.0 +12823,49,20,31,0.0 +12823,10,31,48,0.0 +12823,71,21.5,17,0.0 +12823,19,9.2,35,0.0 +12823,27,43.9,17,0.0 +12823,34,14,21,0.0 +12823,61,28.5,37,0.0 +12823,37,26,14,0.0 +12823,36,19,13,0.0 +12823,23,9,21,0.0 +12823,41,9.65,37,0.0 +12823,21,10,41,0.0 +12823,2,19,25,0.0 +12823,3,10,5,0.0 +12823,39,18,21,0.0 +12823,48,12.75,38,0.0 +12823,31,12.5,34,0.0 +12823,20,81,2,0.0 +12824,55,24,41,0.0 +12824,67,14,33,0.0 +12824,65,21.05,32,0.0 +12824,1,18,16,0.0 +12824,12,38,40,0.0 +12824,54,7.45,23,0.0 +12824,17,39,17,0.0 +12824,73,15,42,0.0 +12824,70,15,47,0.0 +12824,32,32,46,0.0 +12824,44,19.45,35,0.0 +12824,37,26,14,0.0 +12824,68,12.5,35,0.0 +12824,34,14,7,0.0 +12824,28,45.6,28,0.0 +12824,35,18,26,0.0 +12824,24,4.5,13,0.0 +12825,74,10,3,0.0 +12825,29,123.79,32,0.0 +12825,11,21,35,0.0 +12825,52,7,41,0.0 +12825,51,53,8,0.0 +12825,16,17.45,18,0.0 +12825,19,9.2,20,0.0 +12825,55,24,43,0.0 +12825,70,15,1,0.0 +12825,54,7.45,44,0.0 +12825,4,22,16,0.0 +12825,28,45.6,24,0.0 +12825,43,46,35,0.0 +12825,36,19,18,0.0 +12825,40,18.4,16,0.0 +12825,6,25,37,0.0 +12825,1,18,15,0.0 +12825,23,9,32,0.0 +12825,17,39,17,0.0 +12825,35,18,17,0.0 +12825,27,43.9,35,0.0 +12825,38,263.5,29,0.0 +12825,3,10,28,0.0 +12825,75,7.75,32,0.0 +12825,22,21,27,0.0 +12825,8,40,15,0.0 +12825,69,36,30,0.0 +12825,30,25.89,50,0.0 +12825,41,9.65,38,0.0 +12825,9,97,12,0.0 +12825,34,14,29,0.0 +12825,18,62.5,24,0.0 +12825,10,31,42,0.0 +12825,21,10,37,0.0 +12825,73,15,27,0.0 +12825,56,38,48,0.0 +12825,26,31.23,50,0.0 +12825,48,12.75,23,0.0 +12826,72,34.8,15,0.0 +12826,54,7.45,38,0.0 +12826,28,45.6,39,0.0 +12826,1,18,8,0.0 +12826,60,34,44,0.0 +12826,68,12.5,13,0.0 +12826,34,14,26,0.0 +12826,70,15,2,0.0 +12826,58,13.25,39,0.0 +12826,30,25.89,13,0.0 +12826,41,9.65,1,0.0 +12826,61,28.5,9,0.0 +12826,63,43.9,13,0.0 +12826,49,20,45,0.0 +12826,75,7.75,31,0.0 +12826,71,21.5,23,0.0 +12826,21,10,34,0.0 +12826,8,40,30,0.0 +12826,5,21.35,17,0.0 +12826,25,14,15,0.0 +12826,9,97,25,0.0 +12826,67,14,7,0.0 +12826,31,12.5,21,0.0 +12826,3,10,14,0.0 +12826,50,16.25,14,0.0 +12827,35,18,15,0.0 +12827,70,15,44,0.0 +12827,13,6,47,0.0 +12827,68,12.5,21,0.0 +12827,54,7.45,25,0.0 +12827,73,15,1,0.0 +12827,12,38,9,0.0 +12827,7,30,41,0.0 +12827,50,16.25,2,0.0 +12827,10,31,5,0.0 +12827,56,38,32,0.0 +12827,24,4.5,10,0.0 +12827,40,18.4,14,0.0 +12827,46,12,27,0.0 +12827,26,31.23,24,0.0 +12827,19,9.2,45,0.0 +12827,30,25.89,50,0.0 +12827,17,39,4,0.0 +12827,38,263.5,46,0.0 +12827,22,21,42,0.0 +12827,76,18,31,0.0 +12827,33,2.5,19,0.0 +12827,62,49.3,6,0.0 +12827,53,32.8,3,0.0 +12827,75,7.75,36,0.0 +12827,71,21.5,44,0.0 +12827,18,62.5,36,0.0 +12827,4,22,28,0.0 +12827,42,14,8,0.0 +12827,29,123.79,39,0.0 +12827,45,9.5,2,0.0 +12827,9,97,12,0.0 +12827,57,19.5,35,0.0 +12827,5,21.35,40,0.0 +12827,58,13.25,7,0.0 +12827,47,9.5,45,0.0 +12827,69,36,26,0.0 +12827,65,21.05,25,0.0 +12827,44,19.45,41,0.0 +12827,39,18,13,0.0 +12827,15,15.5,24,0.0 +12827,20,81,43,0.0 +12827,6,25,50,0.0 +12827,3,10,7,0.0 +12827,63,43.9,2,0.0 +12827,37,26,11,0.0 +12827,16,17.45,50,0.0 +12827,67,14,15,0.0 +12827,32,32,25,0.0 +12827,25,14,4,0.0 +12827,11,21,45,0.0 +12827,31,12.5,4,0.0 +12827,51,53,4,0.0 +12827,34,14,33,0.0 +12827,55,24,24,0.0 +12827,8,40,2,0.0 +12827,43,46,14,0.0 +12827,36,19,32,0.0 +12827,77,13,30,0.0 +12827,23,9,45,0.0 +12827,72,34.8,13,0.0 +12827,74,10,11,0.0 +12827,1,18,38,0.0 +12827,28,45.6,45,0.0 +12827,27,43.9,4,0.0 +12827,2,19,46,0.0 +12827,60,34,8,0.0 +12827,59,55,20,0.0 +12828,7,30,38,0.0 +12828,63,43.9,25,0.0 +12828,56,38,44,0.0 +12828,9,97,11,0.0 +12828,42,14,9,0.0 +12828,48,12.75,26,0.0 +12828,47,9.5,32,0.0 +12828,15,15.5,36,0.0 +12828,52,7,1,0.0 +12828,8,40,16,0.0 +12828,60,34,21,0.0 +12828,22,21,16,0.0 +12828,18,62.5,38,0.0 +12828,1,18,34,0.0 +12828,2,19,13,0.0 +12828,33,2.5,28,0.0 +12828,77,13,38,0.0 +12828,41,9.65,15,0.0 +12828,34,14,19,0.0 +12828,45,9.5,34,0.0 +12828,69,36,30,0.0 +12828,62,49.3,17,0.0 +12828,4,22,46,0.0 +12828,53,32.8,28,0.0 +12828,73,15,42,0.0 +12828,59,55,36,0.0 +12828,3,10,44,0.0 +12828,76,18,31,0.0 +12828,23,9,5,0.0 +12828,37,26,47,0.0 +12828,66,17,18,0.0 +12828,28,45.6,49,0.0 +12828,19,9.2,50,0.0 +12828,67,14,15,0.0 +12828,17,39,10,0.0 +12828,75,7.75,22,0.0 +12828,46,12,34,0.0 +12828,51,53,34,0.0 +12828,32,32,26,0.0 +12828,16,17.45,11,0.0 +12828,43,46,9,0.0 +12828,61,28.5,36,0.0 +12828,6,25,23,0.0 +12828,72,34.8,22,0.0 +12828,30,25.89,9,0.0 +12828,36,19,46,0.0 +12828,55,24,24,0.0 +12828,71,21.5,50,0.0 +12828,11,21,5,0.0 +12828,49,20,3,0.0 +12828,38,263.5,29,0.0 +12828,35,18,22,0.0 +12828,50,16.25,40,0.0 +12828,12,38,30,0.0 +12829,1,18,48,0.0 +12829,11,21,9,0.0 +12829,21,10,2,0.0 +12829,31,12.5,15,0.0 +12829,71,21.5,4,0.0 +12829,65,21.05,31,0.0 +12829,2,19,13,0.0 +12829,63,43.9,12,0.0 +12829,55,24,36,0.0 +12829,10,31,12,0.0 +12829,8,40,3,0.0 +12829,25,14,36,0.0 +12829,62,49.3,12,0.0 +12829,68,12.5,33,0.0 +12829,20,81,19,0.0 +12829,60,34,12,0.0 +12829,15,15.5,32,0.0 +12829,27,43.9,1,0.0 +12829,23,9,41,0.0 +12829,16,17.45,6,0.0 +12829,12,38,4,0.0 +12829,45,9.5,44,0.0 +12829,32,32,17,0.0 +12829,28,45.6,8,0.0 +12829,66,17,13,0.0 +12829,74,10,16,0.0 +12829,52,7,19,0.0 +12829,26,31.23,15,0.0 +12829,51,53,23,0.0 +12829,56,38,47,0.0 +12829,14,23.25,9,0.0 +12829,64,33.25,30,0.0 +12829,4,22,26,0.0 +12829,18,62.5,15,0.0 +12829,38,263.5,12,0.0 +12829,22,21,27,0.0 +12829,44,19.45,33,0.0 +12829,53,32.8,35,0.0 +12829,58,13.25,3,0.0 +12829,24,4.5,22,0.0 +12829,69,36,43,0.0 +12829,42,14,22,0.0 +12829,77,13,44,0.0 +12829,73,15,48,0.0 +12829,48,12.75,23,0.0 +12829,6,25,10,0.0 +12829,59,55,32,0.0 +12829,72,34.8,32,0.0 +12829,40,18.4,13,0.0 +12829,17,39,19,0.0 +12829,9,97,8,0.0 +12829,34,14,5,0.0 +12829,3,10,39,0.0 +12829,75,7.75,36,0.0 +12829,37,26,30,0.0 +12830,56,38,33,0.0 +12830,47,9.5,43,0.0 +12830,26,31.23,16,0.0 +12830,35,18,20,0.0 +12830,74,10,16,0.0 +12830,5,21.35,15,0.0 +12830,15,15.5,39,0.0 +12830,9,97,5,0.0 +12830,68,12.5,12,0.0 +12830,42,14,18,0.0 +12830,62,49.3,14,0.0 +12830,59,55,34,0.0 +12830,37,26,1,0.0 +12830,76,18,40,0.0 +12830,30,25.89,3,0.0 +12830,23,9,31,0.0 +12830,75,7.75,6,0.0 +12830,43,46,15,0.0 +12830,50,16.25,49,0.0 +12830,52,7,41,0.0 +12830,3,10,1,0.0 +12830,73,15,14,0.0 +12830,44,19.45,1,0.0 +12830,6,25,50,0.0 +12830,54,7.45,19,0.0 +12830,4,22,49,0.0 +12830,71,21.5,43,0.0 +12830,25,14,34,0.0 +12830,11,21,32,0.0 +12830,22,21,24,0.0 +12830,63,43.9,13,0.0 +12830,19,9.2,27,0.0 +12830,49,20,32,0.0 +12830,36,19,6,0.0 +12830,61,28.5,19,0.0 +12830,53,32.8,28,0.0 +12830,58,13.25,19,0.0 +12830,60,34,42,0.0 +12830,65,21.05,26,0.0 +12830,55,24,10,0.0 +12830,41,9.65,44,0.0 +12830,28,45.6,3,0.0 +12830,8,40,21,0.0 +12830,38,263.5,23,0.0 +12830,29,123.79,30,0.0 +12830,72,34.8,5,0.0 +12830,33,2.5,22,0.0 +12830,46,12,40,0.0 +12830,66,17,4,0.0 +12830,13,6,10,0.0 +12830,69,36,9,0.0 +12830,70,15,18,0.0 +12830,48,12.75,41,0.0 +12830,40,18.4,8,0.0 +12830,51,53,42,0.0 +12830,64,33.25,3,0.0 +12830,57,19.5,4,0.0 +12830,21,10,22,0.0 +12830,18,62.5,34,0.0 +12830,39,18,41,0.0 +12830,67,14,38,0.0 +12830,16,17.45,25,0.0 +12830,34,14,1,0.0 +12830,10,31,28,0.0 +12830,1,18,19,0.0 +12831,59,55,38,0.0 +12831,61,28.5,36,0.0 +12831,7,30,27,0.0 +12831,35,18,50,0.0 +12831,39,18,43,0.0 +12831,67,14,16,0.0 +12831,71,21.5,6,0.0 +12831,44,19.45,7,0.0 +12831,37,26,38,0.0 +12831,53,32.8,39,0.0 +12831,64,33.25,11,0.0 +12831,4,22,26,0.0 +12831,62,49.3,26,0.0 +12831,57,19.5,35,0.0 +12831,14,23.25,13,0.0 +12831,1,18,16,0.0 +12831,2,19,5,0.0 +12831,11,21,27,0.0 +12831,5,21.35,6,0.0 +12832,69,36,50,0.0 +12832,50,16.25,43,0.0 +12832,23,9,7,0.0 +12832,30,25.89,23,0.0 +12832,27,43.9,17,0.0 +12832,2,19,44,0.0 +12832,67,14,35,0.0 +12832,9,97,7,0.0 +12832,15,15.5,4,0.0 +12832,45,9.5,36,0.0 +12832,48,12.75,7,0.0 +12832,31,12.5,48,0.0 +12832,61,28.5,11,0.0 +12832,55,24,21,0.0 +12832,13,6,38,0.0 +12832,19,9.2,50,0.0 +12832,35,18,42,0.0 +12832,18,62.5,42,0.0 +12832,66,17,15,0.0 +12832,56,38,31,0.0 +12832,76,18,21,0.0 +12832,62,49.3,14,0.0 +12832,46,12,14,0.0 +12832,10,31,49,0.0 +12832,60,34,40,0.0 +12832,1,18,31,0.0 +12832,65,21.05,44,0.0 +12832,73,15,46,0.0 +12832,4,22,29,0.0 +12832,77,13,1,0.0 +12832,24,4.5,27,0.0 +12832,7,30,25,0.0 +12832,59,55,36,0.0 +12832,38,263.5,17,0.0 +12832,6,25,15,0.0 +12832,53,32.8,23,0.0 +12832,74,10,46,0.0 +12832,17,39,10,0.0 +12832,3,10,33,0.0 +12832,5,21.35,50,0.0 +12832,16,17.45,29,0.0 +12832,34,14,9,0.0 +12832,12,38,27,0.0 +12832,52,7,2,0.0 +12832,72,34.8,31,0.0 +12832,25,14,41,0.0 +12832,64,33.25,47,0.0 +12832,44,19.45,39,0.0 +12832,21,10,33,0.0 +12832,57,19.5,31,0.0 +12832,54,7.45,47,0.0 +12832,14,23.25,1,0.0 +12832,32,32,29,0.0 +12832,68,12.5,20,0.0 +12832,70,15,10,0.0 +12832,20,81,5,0.0 +12832,28,45.6,12,0.0 +12832,75,7.75,24,0.0 +12832,58,13.25,33,0.0 +12832,36,19,38,0.0 +12832,26,31.23,14,0.0 +12832,63,43.9,30,0.0 +12832,22,21,27,0.0 +12832,11,21,47,0.0 +12832,40,18.4,2,0.0 +12832,8,40,33,0.0 +12832,49,20,27,0.0 +12832,43,46,43,0.0 +12832,39,18,43,0.0 +12832,37,26,19,0.0 +12833,65,21.05,21,0.0 +12833,40,18.4,48,0.0 +12833,70,15,38,0.0 +12833,45,9.5,33,0.0 +12833,57,19.5,48,0.0 +12833,56,38,27,0.0 +12833,58,13.25,27,0.0 +12833,69,36,49,0.0 +12833,15,15.5,39,0.0 +12833,11,21,48,0.0 +12833,23,9,34,0.0 +12833,3,10,21,0.0 +12833,59,55,18,0.0 +12833,35,18,20,0.0 +12833,19,9.2,8,0.0 +12833,41,9.65,48,0.0 +12833,21,10,35,0.0 +12833,10,31,1,0.0 +12833,63,43.9,9,0.0 +12833,36,19,3,0.0 +12833,38,263.5,7,0.0 +12833,50,16.25,1,0.0 +12833,46,12,38,0.0 +12833,33,2.5,30,0.0 +12833,29,123.79,38,0.0 +12833,71,21.5,3,0.0 +12833,12,38,47,0.0 +12833,9,97,24,0.0 +12833,31,12.5,5,0.0 +12833,73,15,39,0.0 +12833,13,6,15,0.0 +12833,53,32.8,36,0.0 +12833,17,39,22,0.0 +12833,25,14,47,0.0 +12833,24,4.5,21,0.0 +12833,27,43.9,42,0.0 +12833,55,24,12,0.0 +12833,75,7.75,31,0.0 +12833,54,7.45,23,0.0 +12833,26,31.23,16,0.0 +12833,64,33.25,19,0.0 +12833,28,45.6,1,0.0 +12833,32,32,46,0.0 +12833,61,28.5,33,0.0 +12833,20,81,49,0.0 +12833,68,12.5,32,0.0 +12833,22,21,16,0.0 +12833,47,9.5,11,0.0 +12833,48,12.75,45,0.0 +12833,49,20,12,0.0 +12833,74,10,33,0.0 +12833,76,18,31,0.0 +12833,77,13,11,0.0 +12833,7,30,48,0.0 +12833,4,22,14,0.0 +12833,5,21.35,49,0.0 +12833,14,23.25,28,0.0 +12833,16,17.45,29,0.0 +12834,71,21.5,23,0.0 +12834,52,7,50,0.0 +12834,32,32,1,0.0 +12834,65,21.05,26,0.0 +12834,49,20,25,0.0 +12834,48,12.75,6,0.0 +12834,3,10,13,0.0 +12834,77,13,1,0.0 +12834,16,17.45,4,0.0 +12834,55,24,28,0.0 +12834,58,13.25,2,0.0 +12834,61,28.5,6,0.0 +12834,36,19,32,0.0 +12834,7,30,40,0.0 +12834,13,6,3,0.0 +12834,9,97,34,0.0 +12834,29,123.79,41,0.0 +12834,72,34.8,12,0.0 +12834,11,21,37,0.0 +12834,44,19.45,40,0.0 +12834,51,53,7,0.0 +12834,6,25,31,0.0 +12834,22,21,17,0.0 +12834,43,46,4,0.0 +12834,67,14,13,0.0 +12834,31,12.5,32,0.0 +12834,59,55,43,0.0 +12834,41,9.65,32,0.0 +12834,38,263.5,8,0.0 +12834,40,18.4,32,0.0 +12834,12,38,15,0.0 +12834,68,12.5,17,0.0 +12834,47,9.5,50,0.0 +12834,64,33.25,24,0.0 +12834,66,17,20,0.0 +12834,27,43.9,29,0.0 +12834,34,14,41,0.0 +12834,62,49.3,29,0.0 +12834,8,40,38,0.0 +12834,21,10,12,0.0 +12834,28,45.6,3,0.0 +12834,42,14,26,0.0 +12834,35,18,10,0.0 +12834,19,9.2,1,0.0 +12834,25,14,49,0.0 +12834,74,10,46,0.0 +12834,54,7.45,22,0.0 +12834,63,43.9,37,0.0 +12834,1,18,28,0.0 +12834,23,9,6,0.0 +12834,33,2.5,17,0.0 +12834,53,32.8,47,0.0 +12834,26,31.23,42,0.0 +12834,75,7.75,10,0.0 +12834,57,19.5,11,0.0 +12834,39,18,9,0.0 +12834,4,22,15,0.0 +12834,73,15,43,0.0 +12834,15,15.5,8,0.0 +12834,37,26,11,0.0 +12834,50,16.25,17,0.0 +12835,36,19,19,0.0 +12835,73,15,33,0.0 +12835,19,9.2,44,0.0 +12835,76,18,13,0.0 +12835,12,38,49,0.0 +12835,6,25,11,0.0 +12835,48,12.75,10,0.0 +12835,9,97,8,0.0 +12835,20,81,17,0.0 +12835,21,10,36,0.0 +12835,75,7.75,32,0.0 +12835,58,13.25,9,0.0 +12835,46,12,46,0.0 +12835,69,36,19,0.0 +12835,56,38,43,0.0 +12835,41,9.65,5,0.0 +12835,25,14,24,0.0 +12835,47,9.5,39,0.0 +12835,14,23.25,46,0.0 +12835,23,9,48,0.0 +12835,26,31.23,1,0.0 +12835,68,12.5,11,0.0 +12835,42,14,5,0.0 +12835,2,19,35,0.0 +12835,34,14,34,0.0 +12835,35,18,15,0.0 +12835,45,9.5,14,0.0 +12835,4,22,28,0.0 +12835,57,19.5,18,0.0 +12835,70,15,49,0.0 +12835,27,43.9,41,0.0 +12835,60,34,27,0.0 +12835,15,15.5,31,0.0 +12835,74,10,33,0.0 +12835,59,55,27,0.0 +12835,31,12.5,45,0.0 +12835,33,2.5,41,0.0 +12835,49,20,1,0.0 +12835,24,4.5,1,0.0 +12835,67,14,20,0.0 +12835,50,16.25,14,0.0 +12835,22,21,20,0.0 +12835,43,46,40,0.0 +12835,39,18,7,0.0 +12835,7,30,18,0.0 +12835,62,49.3,4,0.0 +12835,52,7,13,0.0 +12835,18,62.5,13,0.0 +12835,54,7.45,11,0.0 +12835,61,28.5,39,0.0 +12835,38,263.5,28,0.0 +12835,1,18,4,0.0 +12835,71,21.5,40,0.0 +12835,44,19.45,3,0.0 +12836,12,38,29,0.0 +12836,57,19.5,5,0.0 +12836,35,18,49,0.0 +12836,62,49.3,44,0.0 +12836,39,18,50,0.0 +12836,52,7,49,0.0 +12837,64,33.25,19,0.0 +12837,36,19,49,0.0 +12837,13,6,20,0.0 +12837,71,21.5,4,0.0 +12837,67,14,8,0.0 +12837,33,2.5,17,0.0 +12837,66,17,6,0.0 +12837,15,15.5,34,0.0 +12837,27,43.9,50,0.0 +12837,40,18.4,38,0.0 +12837,3,10,21,0.0 +12837,57,19.5,6,0.0 +12837,9,97,2,0.0 +12837,47,9.5,22,0.0 +12837,65,21.05,31,0.0 +12838,15,15.5,42,0.0 +12838,65,21.05,43,0.0 +12838,29,123.79,6,0.0 +12838,18,62.5,2,0.0 +12838,58,13.25,38,0.0 +12839,38,263.5,30,0.0 +12839,22,21,49,0.0 +12839,28,45.6,28,0.0 +12839,40,18.4,39,0.0 +12839,41,9.65,26,0.0 +12839,55,24,35,0.0 +12839,9,97,43,0.0 +12839,64,33.25,33,0.0 +12839,65,21.05,44,0.0 +12839,37,26,23,0.0 +12839,59,55,33,0.0 +12839,45,9.5,24,0.0 +12839,60,34,42,0.0 +12839,36,19,23,0.0 +12839,73,15,21,0.0 +12839,5,21.35,30,0.0 +12840,69,36,46,0.0 +12840,50,16.25,48,0.0 +12840,59,55,37,0.0 +12840,17,39,27,0.0 +12840,39,18,33,0.0 +12840,43,46,40,0.0 +12840,55,24,39,0.0 +12840,36,19,24,0.0 +12840,77,13,38,0.0 +12840,8,40,48,0.0 +12840,3,10,13,0.0 +12840,4,22,40,0.0 +12840,21,10,39,0.0 +12840,48,12.75,48,0.0 +12840,23,9,26,0.0 +12840,2,19,30,0.0 +12840,15,15.5,29,0.0 +12840,58,13.25,29,0.0 +12840,74,10,33,0.0 +12840,70,15,11,0.0 +12840,40,18.4,7,0.0 +12840,1,18,43,0.0 +12840,29,123.79,10,0.0 +12840,6,25,32,0.0 +12840,52,7,35,0.0 +12840,13,6,29,0.0 +12840,51,53,49,0.0 +12840,71,21.5,15,0.0 +12840,19,9.2,32,0.0 +12840,35,18,23,0.0 +12840,54,7.45,29,0.0 +12840,75,7.75,49,0.0 +12840,5,21.35,16,0.0 +12840,37,26,21,0.0 +12840,30,25.89,24,0.0 +12840,14,23.25,22,0.0 +12840,72,34.8,44,0.0 +12840,63,43.9,8,0.0 +12840,22,21,27,0.0 +12840,27,43.9,14,0.0 +12840,12,38,19,0.0 +12840,20,81,1,0.0 +12840,67,14,37,0.0 +12840,47,9.5,5,0.0 +12840,68,12.5,1,0.0 +12840,53,32.8,33,0.0 +12840,64,33.25,36,0.0 +12840,41,9.65,48,0.0 +12840,28,45.6,8,0.0 +12840,10,31,33,0.0 +12840,7,30,4,0.0 +12840,76,18,8,0.0 +12840,34,14,8,0.0 +12840,33,2.5,9,0.0 +12840,62,49.3,31,0.0 +12840,26,31.23,44,0.0 +12840,61,28.5,18,0.0 +12840,9,97,10,0.0 +12840,16,17.45,48,0.0 +12840,44,19.45,35,0.0 +12840,32,32,32,0.0 +12840,66,17,1,0.0 +12840,49,20,37,0.0 +12840,57,19.5,15,0.0 +12840,24,4.5,33,0.0 +12840,56,38,10,0.0 +12840,46,12,4,0.0 +12840,73,15,45,0.0 +12840,25,14,13,0.0 +12840,45,9.5,10,0.0 +12840,18,62.5,38,0.0 +12840,65,21.05,33,0.0 +12840,60,34,45,0.0 +12841,12,38,23,0.0 +12841,56,38,35,0.0 +12841,75,7.75,17,0.0 +12841,39,18,47,0.0 +12841,74,10,14,0.0 +12841,34,14,10,0.0 +12841,2,19,8,0.0 +12841,42,14,7,0.0 +12841,68,12.5,39,0.0 +12841,72,34.8,24,0.0 +12841,4,22,6,0.0 +12841,21,10,15,0.0 +12841,32,32,10,0.0 +12841,41,9.65,13,0.0 +12841,50,16.25,30,0.0 +12841,11,21,22,0.0 +12841,64,33.25,15,0.0 +12841,61,28.5,37,0.0 +12841,44,19.45,21,0.0 +12841,46,12,5,0.0 +12841,38,263.5,14,0.0 +12841,24,4.5,25,0.0 +12841,60,34,21,0.0 +12841,53,32.8,16,0.0 +12841,3,10,43,0.0 +12841,70,15,1,0.0 +12841,35,18,4,0.0 +12841,73,15,39,0.0 +12841,58,13.25,48,0.0 +12841,15,15.5,16,0.0 +12841,54,7.45,49,0.0 +12841,19,9.2,30,0.0 +12841,25,14,30,0.0 +12841,37,26,12,0.0 +12841,1,18,10,0.0 +12841,49,20,20,0.0 +12841,51,53,28,0.0 +12841,59,55,9,0.0 +12841,5,21.35,5,0.0 +12841,26,31.23,37,0.0 +12841,16,17.45,4,0.0 +12841,62,49.3,2,0.0 +12841,28,45.6,25,0.0 +12841,47,9.5,28,0.0 +12841,13,6,28,0.0 +12841,48,12.75,3,0.0 +12841,71,21.5,38,0.0 +12841,18,62.5,17,0.0 +12841,55,24,37,0.0 +12841,57,19.5,12,0.0 +12841,17,39,21,0.0 +12841,76,18,13,0.0 +12841,67,14,48,0.0 +12841,45,9.5,38,0.0 +12841,33,2.5,49,0.0 +12841,77,13,20,0.0 +12841,31,12.5,2,0.0 +12841,8,40,44,0.0 +12841,22,21,23,0.0 +12841,65,21.05,39,0.0 +12841,27,43.9,42,0.0 +12841,6,25,42,0.0 +12841,52,7,42,0.0 +12841,29,123.79,14,0.0 +12841,69,36,19,0.0 +12841,23,9,32,0.0 +12841,10,31,4,0.0 +12841,14,23.25,29,0.0 +12842,41,9.65,37,0.0 +12842,25,14,44,0.0 +12842,12,38,15,0.0 +12842,30,25.89,23,0.0 +12842,40,18.4,31,0.0 +12842,69,36,34,0.0 +12842,49,20,44,0.0 +12842,6,25,4,0.0 +12842,20,81,50,0.0 +12842,4,22,4,0.0 +12842,35,18,38,0.0 +12842,29,123.79,46,0.0 +12842,59,55,38,0.0 +12842,10,31,11,0.0 +12842,1,18,1,0.0 +12842,52,7,9,0.0 +12842,21,10,34,0.0 +12842,22,21,17,0.0 +12842,68,12.5,5,0.0 +12842,9,97,17,0.0 +12842,26,31.23,15,0.0 +12842,61,28.5,17,0.0 +12842,62,49.3,20,0.0 +12843,22,21,49,0.0 +12843,67,14,45,0.0 +12843,74,10,34,0.0 +12843,70,15,41,0.0 +12843,28,45.6,16,0.0 +12843,72,34.8,41,0.0 +12843,3,10,16,0.0 +12843,58,13.25,4,0.0 +12843,9,97,43,0.0 +12843,55,24,6,0.0 +12843,31,12.5,28,0.0 +12843,46,12,49,0.0 +12843,27,43.9,4,0.0 +12843,18,62.5,39,0.0 +12843,8,40,41,0.0 +12843,10,31,33,0.0 +12843,62,49.3,17,0.0 +12843,43,46,4,0.0 +12843,6,25,15,0.0 +12843,34,14,1,0.0 +12843,51,53,4,0.0 +12843,13,6,48,0.0 +12843,39,18,25,0.0 +12843,63,43.9,37,0.0 +12843,45,9.5,6,0.0 +12843,50,16.25,18,0.0 +12844,40,18.4,50,0.0 +12844,46,12,4,0.0 +12844,27,43.9,28,0.0 +12844,1,18,2,0.0 +12844,34,14,37,0.0 +12844,43,46,40,0.0 +12844,42,14,29,0.0 +12844,18,62.5,33,0.0 +12844,6,25,11,0.0 +12844,29,123.79,26,0.0 +12844,58,13.25,29,0.0 +12844,70,15,47,0.0 +12844,55,24,31,0.0 +12844,25,14,26,0.0 +12844,14,23.25,34,0.0 +12844,38,263.5,13,0.0 +12844,71,21.5,24,0.0 +12844,59,55,21,0.0 +12844,16,17.45,45,0.0 +12844,11,21,39,0.0 +12845,48,12.75,22,0.0 +12845,2,19,47,0.0 +12845,17,39,33,0.0 +12845,27,43.9,38,0.0 +12846,8,40,29,0.0 +12846,45,9.5,45,0.0 +12846,1,18,22,0.0 +12846,40,18.4,32,0.0 +12846,24,4.5,35,0.0 +12846,47,9.5,15,0.0 +12846,34,14,11,0.0 +12846,63,43.9,2,0.0 +12846,14,23.25,29,0.0 +12846,77,13,17,0.0 +12846,76,18,31,0.0 +12846,42,14,37,0.0 +12846,2,19,45,0.0 +12846,60,34,8,0.0 +12846,55,24,33,0.0 +12846,36,19,27,0.0 +12846,69,36,48,0.0 +12846,67,14,7,0.0 +12846,25,14,5,0.0 +12846,61,28.5,35,0.0 +12846,48,12.75,4,0.0 +12846,7,30,39,0.0 +12846,19,9.2,7,0.0 +12846,74,10,48,0.0 +12846,57,19.5,2,0.0 +12846,31,12.5,14,0.0 +12846,22,21,43,0.0 +12846,9,97,27,0.0 +12846,38,263.5,50,0.0 +12846,66,17,45,0.0 +12846,4,22,49,0.0 +12846,39,18,17,0.0 +12846,15,15.5,49,0.0 +12846,62,49.3,38,0.0 +12846,5,21.35,17,0.0 +12846,23,9,28,0.0 +12846,16,17.45,47,0.0 +12846,32,32,35,0.0 +12846,29,123.79,47,0.0 +12846,71,21.5,32,0.0 +12846,72,34.8,6,0.0 +12846,27,43.9,19,0.0 +12846,26,31.23,8,0.0 +12846,53,32.8,37,0.0 +12846,6,25,20,0.0 +12846,52,7,28,0.0 +12846,17,39,6,0.0 +12846,59,55,19,0.0 +12846,21,10,43,0.0 +12846,20,81,15,0.0 +12846,35,18,34,0.0 +12846,68,12.5,18,0.0 +12846,49,20,41,0.0 +12846,13,6,35,0.0 +12846,64,33.25,11,0.0 +12846,50,16.25,43,0.0 +12846,10,31,12,0.0 +12846,30,25.89,6,0.0 +12846,43,46,18,0.0 +12846,37,26,38,0.0 +12846,56,38,46,0.0 +12846,11,21,38,0.0 +12846,54,7.45,18,0.0 +12846,33,2.5,50,0.0 +12846,41,9.65,15,0.0 +12846,44,19.45,24,0.0 +12846,75,7.75,44,0.0 +12846,70,15,21,0.0 +12846,18,62.5,5,0.0 +12846,12,38,23,0.0 +12846,73,15,30,0.0 +12846,28,45.6,27,0.0 +12846,51,53,44,0.0 +12846,3,10,9,0.0 +12846,58,13.25,45,0.0 +12846,65,21.05,36,0.0 +12846,46,12,7,0.0 +12847,18,62.5,18,0.0 +12847,67,14,20,0.0 +12847,39,18,13,0.0 +12847,45,9.5,46,0.0 +12847,11,21,45,0.0 +12847,12,38,33,0.0 +12847,4,22,19,0.0 +12847,21,10,9,0.0 +12847,58,13.25,38,0.0 +12847,23,9,46,0.0 +12847,52,7,24,0.0 +12847,54,7.45,26,0.0 +12847,70,15,10,0.0 +12847,27,43.9,17,0.0 +12847,35,18,18,0.0 +12847,77,13,46,0.0 +12847,63,43.9,23,0.0 +12847,43,46,27,0.0 +12847,56,38,34,0.0 +12847,75,7.75,6,0.0 +12847,6,25,13,0.0 +12847,73,15,33,0.0 +12847,71,21.5,23,0.0 +12847,76,18,22,0.0 +12847,7,30,32,0.0 +12847,64,33.25,1,0.0 +12847,14,23.25,24,0.0 +12847,30,25.89,48,0.0 +12847,32,32,9,0.0 +12847,51,53,14,0.0 +12847,59,55,36,0.0 +12847,36,19,19,0.0 +12847,72,34.8,24,0.0 +12847,8,40,7,0.0 +12847,49,20,20,0.0 +12847,9,97,7,0.0 +12847,38,263.5,34,0.0 +12847,62,49.3,1,0.0 +12847,20,81,49,0.0 +12847,60,34,42,0.0 +12847,53,32.8,50,0.0 +12847,16,17.45,22,0.0 +12847,37,26,43,0.0 +12847,33,2.5,29,0.0 +12847,41,9.65,12,0.0 +12847,13,6,41,0.0 +12848,40,18.4,20,0.0 +12848,31,12.5,35,0.0 +12848,3,10,41,0.0 +12848,56,38,14,0.0 +12848,55,24,23,0.0 +12848,21,10,34,0.0 +12848,66,17,14,0.0 +12848,64,33.25,18,0.0 +12848,42,14,19,0.0 +12848,14,23.25,17,0.0 +12848,53,32.8,45,0.0 +12848,73,15,27,0.0 +12848,11,21,36,0.0 +12848,74,10,17,0.0 +12848,63,43.9,5,0.0 +12848,61,28.5,25,0.0 +12848,77,13,18,0.0 +12848,57,19.5,26,0.0 +12848,32,32,23,0.0 +12848,7,30,27,0.0 +12848,30,25.89,36,0.0 +12848,70,15,13,0.0 +12848,76,18,2,0.0 +12848,4,22,44,0.0 +12849,28,45.6,39,0.0 +12849,48,12.75,8,0.0 +12849,34,14,33,0.0 +12849,64,33.25,43,0.0 +12849,2,19,19,0.0 +12849,17,39,11,0.0 +12849,68,12.5,31,0.0 +12849,49,20,41,0.0 +12849,39,18,13,0.0 +12849,1,18,23,0.0 +12849,63,43.9,41,0.0 +12849,30,25.89,35,0.0 +12849,55,24,3,0.0 +12849,40,18.4,1,0.0 +12849,16,17.45,14,0.0 +12849,74,10,5,0.0 +12849,50,16.25,19,0.0 +12849,53,32.8,1,0.0 +12849,33,2.5,43,0.0 +12849,70,15,14,0.0 +12849,47,9.5,16,0.0 +12849,9,97,45,0.0 +12849,11,21,12,0.0 +12849,36,19,9,0.0 +12849,56,38,6,0.0 +12849,20,81,48,0.0 +12849,61,28.5,47,0.0 +12849,51,53,44,0.0 +12849,38,263.5,18,0.0 +12849,5,21.35,4,0.0 +12849,66,17,9,0.0 +12849,45,9.5,12,0.0 +12849,21,10,22,0.0 +12849,57,19.5,45,0.0 +12849,7,30,7,0.0 +12849,72,34.8,39,0.0 +12849,75,7.75,5,0.0 +12849,15,15.5,9,0.0 +12849,3,10,18,0.0 +12849,76,18,49,0.0 +12849,44,19.45,50,0.0 +12849,12,38,40,0.0 +12849,59,55,13,0.0 +12849,19,9.2,24,0.0 +12849,26,31.23,38,0.0 +12849,18,62.5,41,0.0 +12849,27,43.9,13,0.0 +12849,29,123.79,4,0.0 +12849,46,12,5,0.0 +12849,35,18,46,0.0 +12849,13,6,41,0.0 +12849,65,21.05,20,0.0 +12849,71,21.5,36,0.0 +12849,8,40,18,0.0 +12849,42,14,30,0.0 +12849,31,12.5,29,0.0 +12849,67,14,46,0.0 +12849,23,9,48,0.0 +12849,32,32,40,0.0 +12849,62,49.3,46,0.0 +12849,24,4.5,1,0.0 +12849,58,13.25,35,0.0 +12849,77,13,4,0.0 +12849,43,46,33,0.0 +12850,60,34,37,0.0 +12850,68,12.5,35,0.0 +12850,48,12.75,30,0.0 +12850,54,7.45,6,0.0 +12850,15,15.5,41,0.0 +12850,43,46,18,0.0 +12850,38,263.5,30,0.0 +12850,73,15,12,0.0 +12850,46,12,36,0.0 +12850,76,18,17,0.0 +12850,37,26,36,0.0 +12850,16,17.45,26,0.0 +12850,6,25,19,0.0 +12850,75,7.75,22,0.0 +12850,22,21,6,0.0 +12850,77,13,6,0.0 +12850,33,2.5,8,0.0 +12850,23,9,49,0.0 +12850,74,10,8,0.0 +12850,58,13.25,49,0.0 +12850,39,18,38,0.0 +12850,71,21.5,1,0.0 +12850,63,43.9,41,0.0 +12850,44,19.45,30,0.0 +12850,45,9.5,25,0.0 +12850,14,23.25,46,0.0 +12851,64,33.25,32,0.0 +12851,7,30,37,0.0 +12851,43,46,13,0.0 +12851,67,14,23,0.0 +12851,56,38,37,0.0 +12851,26,31.23,17,0.0 +12851,16,17.45,11,0.0 +12851,59,55,1,0.0 +12851,60,34,43,0.0 +12851,57,19.5,35,0.0 +12851,31,12.5,48,0.0 +12851,52,7,22,0.0 +12851,23,9,17,0.0 +12851,39,18,47,0.0 +12851,25,14,34,0.0 +12851,8,40,50,0.0 +12851,76,18,27,0.0 +12851,42,14,29,0.0 +12851,66,17,23,0.0 +12851,15,15.5,33,0.0 +12851,5,21.35,38,0.0 +12851,74,10,16,0.0 +12851,1,18,3,0.0 +12851,4,22,28,0.0 +12852,15,15.5,6,0.0 +12852,28,45.6,21,0.0 +12852,12,38,8,0.0 +12852,26,31.23,28,0.0 +12852,64,33.25,38,0.0 +12852,42,14,42,0.0 +12852,29,123.79,31,0.0 +12852,47,9.5,18,0.0 +12852,77,13,20,0.0 +12852,6,25,46,0.0 +12852,3,10,25,0.0 +12852,70,15,35,0.0 +12852,65,21.05,35,0.0 +12852,48,12.75,42,0.0 +12852,43,46,4,0.0 +12852,58,13.25,9,0.0 +12852,52,7,26,0.0 +12852,32,32,9,0.0 +12852,2,19,44,0.0 +12852,9,97,19,0.0 +12852,68,12.5,45,0.0 +12852,27,43.9,27,0.0 +12852,69,36,15,0.0 +12852,56,38,39,0.0 +12852,1,18,26,0.0 +12852,35,18,24,0.0 +12852,75,7.75,19,0.0 +12852,25,14,4,0.0 +12852,50,16.25,2,0.0 +12852,49,20,2,0.0 +12852,45,9.5,14,0.0 +12852,20,81,24,0.0 +12852,62,49.3,43,0.0 +12852,10,31,3,0.0 +12852,33,2.5,7,0.0 +12852,18,62.5,44,0.0 +12852,41,9.65,37,0.0 +12852,61,28.5,25,0.0 +12852,23,9,25,0.0 +12852,44,19.45,46,0.0 +12852,22,21,45,0.0 +12852,4,22,27,0.0 +12852,7,30,24,0.0 +12852,63,43.9,2,0.0 +12852,21,10,37,0.0 +12852,73,15,33,0.0 +12852,19,9.2,36,0.0 +12852,13,6,29,0.0 +12852,51,53,5,0.0 +12852,76,18,18,0.0 +12852,31,12.5,20,0.0 +12852,39,18,4,0.0 +12852,71,21.5,45,0.0 +12852,55,24,8,0.0 +12852,24,4.5,28,0.0 +12852,66,17,27,0.0 +12852,60,34,24,0.0 +12852,17,39,4,0.0 +12852,46,12,11,0.0 +12852,53,32.8,3,0.0 +12852,37,26,46,0.0 +12852,74,10,27,0.0 +12852,40,18.4,14,0.0 +12852,5,21.35,49,0.0 +12852,38,263.5,19,0.0 +12852,36,19,19,0.0 +12852,59,55,29,0.0 +12852,14,23.25,11,0.0 +12852,72,34.8,6,0.0 +12852,34,14,36,0.0 +12852,54,7.45,49,0.0 +12852,11,21,32,0.0 +12852,30,25.89,17,0.0 +12852,57,19.5,30,0.0 +12852,8,40,9,0.0 +12852,16,17.45,29,0.0 +12852,67,14,4,0.0 +12853,23,9,49,0.0 +12853,24,4.5,45,0.0 +12853,71,21.5,36,0.0 +12853,20,81,48,0.0 +12853,29,123.79,25,0.0 +12853,52,7,30,0.0 +12853,43,46,2,0.0 +12853,2,19,38,0.0 +12853,16,17.45,11,0.0 +12853,39,18,5,0.0 +12853,8,40,33,0.0 +12853,40,18.4,38,0.0 +12853,60,34,40,0.0 +12853,42,14,35,0.0 +12853,26,31.23,26,0.0 +12853,76,18,50,0.0 +12853,36,19,23,0.0 +12853,49,20,1,0.0 +12853,18,62.5,14,0.0 +12853,13,6,36,0.0 +12853,75,7.75,37,0.0 +12853,56,38,9,0.0 +12853,47,9.5,3,0.0 +12853,50,16.25,6,0.0 +12853,9,97,43,0.0 +12853,19,9.2,42,0.0 +12853,74,10,35,0.0 +12853,17,39,1,0.0 +12853,12,38,15,0.0 +12853,10,31,21,0.0 +12853,77,13,11,0.0 +12853,5,21.35,49,0.0 +12853,25,14,42,0.0 +12853,53,32.8,45,0.0 +12853,65,21.05,8,0.0 +12853,64,33.25,30,0.0 +12853,66,17,16,0.0 +12853,31,12.5,7,0.0 +12853,1,18,30,0.0 +12853,70,15,35,0.0 +12853,51,53,46,0.0 +12853,62,49.3,50,0.0 +12853,45,9.5,21,0.0 +12853,73,15,32,0.0 +12853,57,19.5,44,0.0 +12853,11,21,35,0.0 +12853,34,14,9,0.0 +12853,44,19.45,35,0.0 +12853,61,28.5,1,0.0 +12853,4,22,25,0.0 +12853,35,18,25,0.0 +12853,54,7.45,7,0.0 +12853,33,2.5,26,0.0 +12853,7,30,20,0.0 +12853,67,14,12,0.0 +12853,46,12,48,0.0 +12853,21,10,33,0.0 +12853,15,15.5,44,0.0 +12853,22,21,33,0.0 +12853,14,23.25,23,0.0 +12853,32,32,18,0.0 +12853,27,43.9,45,0.0 +12853,59,55,18,0.0 +12853,69,36,6,0.0 +12853,63,43.9,39,0.0 +12853,72,34.8,37,0.0 +12853,68,12.5,35,0.0 +12853,38,263.5,5,0.0 +12853,3,10,10,0.0 +12853,28,45.6,4,0.0 +12853,37,26,2,0.0 +12853,48,12.75,32,0.0 +12853,30,25.89,15,0.0 +12853,41,9.65,7,0.0 +12853,6,25,2,0.0 +12853,55,24,49,0.0 +12854,38,263.5,21,0.0 +12854,69,36,37,0.0 +12854,10,31,30,0.0 +12855,41,9.65,1,0.0 +12855,35,18,33,0.0 +12855,61,28.5,4,0.0 +12855,17,39,28,0.0 +12855,63,43.9,35,0.0 +12855,30,25.89,43,0.0 +12855,11,21,32,0.0 +12855,5,21.35,34,0.0 +12855,1,18,14,0.0 +12855,3,10,12,0.0 +12855,28,45.6,50,0.0 +12855,57,19.5,12,0.0 +12855,9,97,25,0.0 +12855,74,10,31,0.0 +12855,29,123.79,36,0.0 +12855,16,17.45,44,0.0 +12855,55,24,46,0.0 +12855,37,26,45,0.0 +12855,51,53,26,0.0 +12855,22,21,8,0.0 +12855,2,19,7,0.0 +12855,42,14,49,0.0 +12855,19,9.2,22,0.0 +12855,24,4.5,23,0.0 +12855,14,23.25,6,0.0 +12855,36,19,17,0.0 +12855,12,38,30,0.0 +12855,18,62.5,20,0.0 +12855,33,2.5,10,0.0 +12855,47,9.5,31,0.0 +12855,66,17,25,0.0 +12855,7,30,11,0.0 +12855,27,43.9,15,0.0 +12855,68,12.5,29,0.0 +12855,8,40,39,0.0 +12855,76,18,30,0.0 +12855,20,81,32,0.0 +12855,58,13.25,9,0.0 +12855,15,15.5,31,0.0 +12855,25,14,48,0.0 +12855,64,33.25,13,0.0 +12855,56,38,6,0.0 +12855,4,22,13,0.0 +12855,65,21.05,50,0.0 +12855,46,12,37,0.0 +12855,67,14,29,0.0 +12855,45,9.5,30,0.0 +12855,6,25,25,0.0 +12855,13,6,32,0.0 +12855,62,49.3,40,0.0 +12855,60,34,28,0.0 +12855,53,32.8,6,0.0 +12855,44,19.45,17,0.0 +12855,23,9,19,0.0 +12855,21,10,10,0.0 +12855,72,34.8,22,0.0 +12855,50,16.25,6,0.0 +12855,70,15,42,0.0 +12855,49,20,48,0.0 +12856,27,43.9,28,0.0 +12856,25,14,11,0.0 +12856,60,34,31,0.0 +12856,34,14,46,0.0 +12856,43,46,8,0.0 +12856,12,38,45,0.0 +12856,58,13.25,11,0.0 +12856,61,28.5,46,0.0 +12856,46,12,30,0.0 +12856,9,97,30,0.0 +12856,70,15,23,0.0 +12856,3,10,50,0.0 +12856,10,31,46,0.0 +12856,8,40,9,0.0 +12856,68,12.5,1,0.0 +12856,59,55,1,0.0 +12856,6,25,45,0.0 +12856,13,6,3,0.0 +12856,51,53,32,0.0 +12856,4,22,38,0.0 +12856,28,45.6,10,0.0 +12856,40,18.4,21,0.0 +12856,32,32,10,0.0 +12856,33,2.5,9,0.0 +12856,48,12.75,30,0.0 +12856,49,20,21,0.0 +12856,38,263.5,25,0.0 +12856,29,123.79,10,0.0 +12856,21,10,36,0.0 +12856,5,21.35,33,0.0 +12856,18,62.5,36,0.0 +12856,55,24,16,0.0 +12856,47,9.5,20,0.0 +12856,36,19,34,0.0 +12856,35,18,43,0.0 +12856,52,7,48,0.0 +12856,69,36,28,0.0 +12856,53,32.8,30,0.0 +12856,37,26,4,0.0 +12856,65,21.05,41,0.0 +12856,41,9.65,37,0.0 +12856,67,14,9,0.0 +12856,76,18,36,0.0 +12856,74,10,36,0.0 +12856,7,30,36,0.0 +12856,26,31.23,39,0.0 +12856,39,18,13,0.0 +12856,57,19.5,33,0.0 +12856,66,17,43,0.0 +12856,30,25.89,45,0.0 +12856,42,14,4,0.0 +12856,15,15.5,18,0.0 +12856,31,12.5,1,0.0 +12856,71,21.5,36,0.0 +12856,45,9.5,49,0.0 +12856,63,43.9,38,0.0 +12856,62,49.3,41,0.0 +12856,20,81,3,0.0 +12856,54,7.45,8,0.0 +12856,22,21,16,0.0 +12856,77,13,15,0.0 +12857,16,17.45,2,0.0 +12857,40,18.4,14,0.0 +12857,53,32.8,16,0.0 +12857,5,21.35,11,0.0 +12857,57,19.5,12,0.0 +12857,55,24,25,0.0 +12857,18,62.5,3,0.0 +12857,31,12.5,42,0.0 +12857,17,39,38,0.0 +12857,68,12.5,3,0.0 +12857,44,19.45,42,0.0 +12857,43,46,44,0.0 +12857,72,34.8,20,0.0 +12857,29,123.79,41,0.0 +12857,75,7.75,8,0.0 +12857,64,33.25,17,0.0 +12857,41,9.65,43,0.0 +12858,63,43.9,32,0.0 +12858,20,81,1,0.0 +12858,14,23.25,47,0.0 +12858,37,26,5,0.0 +12858,39,18,31,0.0 +12858,56,38,25,0.0 +12858,23,9,47,0.0 +12858,17,39,22,0.0 +12858,67,14,3,0.0 +12858,43,46,8,0.0 +12858,55,24,30,0.0 +12858,75,7.75,16,0.0 +12858,16,17.45,14,0.0 +12858,45,9.5,50,0.0 +12858,34,14,8,0.0 +12858,52,7,48,0.0 +12858,21,10,27,0.0 +12858,73,15,16,0.0 +12858,26,31.23,31,0.0 +12858,38,263.5,50,0.0 +12858,2,19,45,0.0 +12858,10,31,12,0.0 +12858,4,22,26,0.0 +12858,62,49.3,41,0.0 +12858,24,4.5,39,0.0 +12858,8,40,4,0.0 +12858,12,38,49,0.0 +12858,3,10,13,0.0 +12858,49,20,20,0.0 +12858,31,12.5,34,0.0 +12858,7,30,29,0.0 +12858,33,2.5,8,0.0 +12858,74,10,16,0.0 +12858,54,7.45,37,0.0 +12858,22,21,40,0.0 +12858,57,19.5,14,0.0 +12858,66,17,14,0.0 +12858,25,14,42,0.0 +12858,11,21,25,0.0 +12858,61,28.5,31,0.0 +12858,35,18,39,0.0 +12858,70,15,48,0.0 +12858,13,6,38,0.0 +12858,30,25.89,14,0.0 +12858,19,9.2,40,0.0 +12858,60,34,40,0.0 +12858,9,97,1,0.0 +12858,18,62.5,42,0.0 +12858,65,21.05,12,0.0 +12858,72,34.8,27,0.0 +12859,27,43.9,5,0.0 +12859,65,21.05,31,0.0 +12859,49,20,43,0.0 +12859,8,40,20,0.0 +12860,63,43.9,16,0.0 +12860,30,25.89,38,0.0 +12860,53,32.8,47,0.0 +12860,55,24,23,0.0 +12860,52,7,18,0.0 +12860,33,2.5,43,0.0 +12860,9,97,21,0.0 +12860,19,9.2,36,0.0 +12860,77,13,31,0.0 +12860,40,18.4,14,0.0 +12860,15,15.5,17,0.0 +12860,76,18,40,0.0 +12860,74,10,16,0.0 +12860,34,14,26,0.0 +12860,59,55,7,0.0 +12860,54,7.45,1,0.0 +12860,75,7.75,43,0.0 +12860,35,18,11,0.0 +12860,71,21.5,39,0.0 +12860,72,34.8,2,0.0 +12860,39,18,8,0.0 +12860,20,81,7,0.0 +12860,13,6,50,0.0 +12860,27,43.9,25,0.0 +12860,42,14,12,0.0 +12860,12,38,22,0.0 +12860,10,31,3,0.0 +12860,14,23.25,17,0.0 +12860,25,14,16,0.0 +12860,68,12.5,4,0.0 +12860,57,19.5,44,0.0 +12860,2,19,38,0.0 +12860,1,18,47,0.0 +12860,8,40,30,0.0 +12860,38,263.5,14,0.0 +12860,47,9.5,44,0.0 +12860,41,9.65,28,0.0 +12860,44,19.45,50,0.0 +12860,69,36,22,0.0 +12860,4,22,32,0.0 +12861,38,263.5,44,0.0 +12861,51,53,42,0.0 +12861,63,43.9,42,0.0 +12861,73,15,10,0.0 +12861,31,12.5,18,0.0 +12861,22,21,43,0.0 +12861,72,34.8,20,0.0 +12861,52,7,28,0.0 +12861,48,12.75,6,0.0 +12861,23,9,43,0.0 +12861,21,10,38,0.0 +12861,1,18,22,0.0 +12861,6,25,8,0.0 +12861,24,4.5,34,0.0 +12861,30,25.89,43,0.0 +12861,27,43.9,47,0.0 +12861,45,9.5,24,0.0 +12861,11,21,14,0.0 +12861,33,2.5,43,0.0 +12861,58,13.25,3,0.0 +12861,71,21.5,8,0.0 +12861,5,21.35,24,0.0 +12861,28,45.6,43,0.0 +12861,77,13,23,0.0 +12861,64,33.25,45,0.0 +12861,74,10,23,0.0 +12861,42,14,19,0.0 +12861,60,34,31,0.0 +12861,7,30,10,0.0 +12861,35,18,16,0.0 +12861,57,19.5,44,0.0 +12861,62,49.3,39,0.0 +12861,17,39,43,0.0 +12861,49,20,25,0.0 +12861,53,32.8,36,0.0 +12861,4,22,20,0.0 +12861,55,24,21,0.0 +12861,44,19.45,47,0.0 +12861,29,123.79,42,0.0 +12861,37,26,39,0.0 +12861,20,81,9,0.0 +12861,8,40,26,0.0 +12861,26,31.23,24,0.0 +12861,41,9.65,25,0.0 +12861,61,28.5,11,0.0 +12861,66,17,29,0.0 +12861,54,7.45,5,0.0 +12861,56,38,29,0.0 +12861,25,14,23,0.0 +12861,70,15,34,0.0 +12861,50,16.25,15,0.0 +12861,47,9.5,49,0.0 +12861,75,7.75,39,0.0 +12861,3,10,44,0.0 +12861,13,6,24,0.0 +12861,12,38,15,0.0 +12861,65,21.05,23,0.0 +12861,9,97,41,0.0 +12861,36,19,32,0.0 +12861,46,12,37,0.0 +12861,14,23.25,29,0.0 +12861,40,18.4,8,0.0 +12861,34,14,50,0.0 +12861,18,62.5,44,0.0 +12861,68,12.5,25,0.0 +12861,2,19,1,0.0 +12861,16,17.45,5,0.0 +12861,39,18,50,0.0 +12861,43,46,24,0.0 +12861,59,55,40,0.0 +12861,69,36,30,0.0 +12861,32,32,41,0.0 +12861,10,31,6,0.0 +12861,15,15.5,22,0.0 +12861,76,18,7,0.0 +12861,19,9.2,8,0.0 +12862,10,31,22,0.0 +12862,64,33.25,44,0.0 +12862,66,17,49,0.0 +12862,42,14,21,0.0 +12862,1,18,22,0.0 +12862,9,97,36,0.0 +12862,16,17.45,46,0.0 +12862,11,21,33,0.0 +12862,37,26,1,0.0 +12862,29,123.79,40,0.0 +12862,53,32.8,12,0.0 +12862,56,38,33,0.0 +12862,77,13,13,0.0 +12862,62,49.3,30,0.0 +12862,39,18,5,0.0 +12862,50,16.25,16,0.0 +12862,61,28.5,41,0.0 +12862,45,9.5,8,0.0 +12862,67,14,34,0.0 +12862,41,9.65,22,0.0 +12862,48,12.75,41,0.0 +12862,65,21.05,36,0.0 +12862,22,21,5,0.0 +12862,25,14,26,0.0 +12862,19,9.2,40,0.0 +12862,15,15.5,42,0.0 +12862,52,7,8,0.0 +12862,26,31.23,19,0.0 +12862,74,10,40,0.0 +12862,44,19.45,34,0.0 +12862,14,23.25,7,0.0 +12862,36,19,34,0.0 +12862,46,12,21,0.0 +12862,73,15,4,0.0 +12862,5,21.35,16,0.0 +12862,31,12.5,15,0.0 +12862,12,38,10,0.0 +12862,47,9.5,19,0.0 +12862,20,81,45,0.0 +12862,32,32,41,0.0 +12862,43,46,37,0.0 +12862,21,10,10,0.0 +12862,8,40,38,0.0 +12862,40,18.4,10,0.0 +12862,76,18,17,0.0 +12862,51,53,17,0.0 +12862,33,2.5,16,0.0 +12863,52,7,38,0.0 +12864,44,19.45,41,0.0 +12864,60,34,5,0.0 +12864,75,7.75,33,0.0 +12864,21,10,13,0.0 +12864,24,4.5,5,0.0 +12864,76,18,25,0.0 +12865,58,13.25,31,0.0 +12865,48,12.75,4,0.0 +12865,13,6,7,0.0 +12865,72,34.8,48,0.0 +12865,59,55,29,0.0 +12865,12,38,27,0.0 +12865,44,19.45,44,0.0 +12865,77,13,39,0.0 +12865,26,31.23,25,0.0 +12865,21,10,5,0.0 +12865,50,16.25,44,0.0 +12865,25,14,27,0.0 +12865,63,43.9,19,0.0 +12865,71,21.5,7,0.0 +12865,23,9,27,0.0 +12865,51,53,47,0.0 +12865,74,10,32,0.0 +12865,41,9.65,44,0.0 +12865,34,14,25,0.0 +12865,33,2.5,6,0.0 +12865,8,40,19,0.0 +12865,31,12.5,40,0.0 +12865,53,32.8,29,0.0 +12865,54,7.45,31,0.0 +12865,2,19,34,0.0 +12865,37,26,20,0.0 +12865,15,15.5,23,0.0 +12865,52,7,32,0.0 +12865,28,45.6,29,0.0 +12865,69,36,49,0.0 +12865,35,18,31,0.0 +12865,47,9.5,24,0.0 +12865,3,10,27,0.0 +12865,76,18,10,0.0 +12866,3,10,46,0.0 +12866,10,31,24,0.0 +12866,71,21.5,28,0.0 +12866,60,34,15,0.0 +12866,77,13,48,0.0 +12866,7,30,25,0.0 +12866,70,15,21,0.0 +12866,46,12,24,0.0 +12866,12,38,17,0.0 +12866,65,21.05,37,0.0 +12866,40,18.4,45,0.0 +12866,69,36,27,0.0 +12866,2,19,1,0.0 +12866,19,9.2,46,0.0 +12866,27,43.9,40,0.0 +12866,66,17,33,0.0 +12866,11,21,3,0.0 +12866,67,14,8,0.0 +12866,4,22,10,0.0 +12866,21,10,42,0.0 +12866,75,7.75,8,0.0 +12867,9,97,36,0.0 +12867,34,14,27,0.0 +12867,51,53,47,0.0 +12867,61,28.5,48,0.0 +12867,43,46,26,0.0 +12867,4,22,23,0.0 +12867,13,6,34,0.0 +12867,30,25.89,25,0.0 +12867,48,12.75,36,0.0 +12867,64,33.25,41,0.0 +12867,15,15.5,14,0.0 +12867,22,21,30,0.0 +12867,72,34.8,36,0.0 +12867,17,39,43,0.0 +12867,20,81,40,0.0 +12867,62,49.3,46,0.0 +12867,3,10,18,0.0 +12867,60,34,40,0.0 +12867,66,17,1,0.0 +12867,7,30,36,0.0 +12867,57,19.5,43,0.0 +12867,74,10,39,0.0 +12867,35,18,22,0.0 +12867,41,9.65,39,0.0 +12867,69,36,10,0.0 +12867,39,18,47,0.0 +12867,46,12,48,0.0 +12867,75,7.75,28,0.0 +12867,67,14,2,0.0 +12867,59,55,38,0.0 +12867,54,7.45,34,0.0 +12867,6,25,27,0.0 +12867,77,13,11,0.0 +12867,27,43.9,49,0.0 +12867,40,18.4,25,0.0 +12867,73,15,38,0.0 +12867,38,263.5,29,0.0 +12868,36,19,4,0.0 +12868,68,12.5,29,0.0 +12868,35,18,30,0.0 +12868,59,55,18,0.0 +12868,46,12,37,0.0 +12868,5,21.35,43,0.0 +12868,26,31.23,28,0.0 +12868,47,9.5,26,0.0 +12868,63,43.9,15,0.0 +12868,9,97,27,0.0 +12868,30,25.89,35,0.0 +12869,15,15.5,37,0.0 +12869,8,40,5,0.0 +12869,17,39,11,0.0 +12869,22,21,8,0.0 +12869,72,34.8,19,0.0 +12869,10,31,12,0.0 +12869,66,17,19,0.0 +12869,55,24,10,0.0 +12869,29,123.79,38,0.0 +12869,43,46,1,0.0 +12869,36,19,13,0.0 +12869,24,4.5,42,0.0 +12870,8,40,40,0.0 +12870,17,39,44,0.0 +12870,57,19.5,10,0.0 +12870,18,62.5,21,0.0 +12870,66,17,33,0.0 +12870,47,9.5,43,0.0 +12870,37,26,37,0.0 +12870,45,9.5,4,0.0 +12870,32,32,29,0.0 +12870,38,263.5,46,0.0 +12870,70,15,8,0.0 +12870,40,18.4,4,0.0 +12870,25,14,14,0.0 +12870,19,9.2,43,0.0 +12870,52,7,4,0.0 +12870,44,19.45,11,0.0 +12870,13,6,1,0.0 +12870,1,18,40,0.0 +12870,16,17.45,48,0.0 +12870,59,55,31,0.0 +12870,11,21,42,0.0 +12870,15,15.5,20,0.0 +12870,54,7.45,49,0.0 +12870,69,36,3,0.0 +12870,49,20,9,0.0 +12870,3,10,43,0.0 +12870,73,15,39,0.0 +12870,35,18,13,0.0 +12870,42,14,5,0.0 +12870,33,2.5,45,0.0 +12870,9,97,14,0.0 +12870,27,43.9,21,0.0 +12870,56,38,8,0.0 +12870,22,21,40,0.0 +12870,62,49.3,4,0.0 +12870,58,13.25,47,0.0 +12870,12,38,2,0.0 +12870,51,53,34,0.0 +12870,7,30,41,0.0 +12870,10,31,9,0.0 +12870,36,19,22,0.0 +12870,20,81,1,0.0 +12870,65,21.05,10,0.0 +12870,50,16.25,48,0.0 +12870,72,34.8,39,0.0 +12870,76,18,3,0.0 +12870,46,12,12,0.0 +12870,41,9.65,39,0.0 +12870,39,18,5,0.0 +12870,77,13,28,0.0 +12870,34,14,27,0.0 +12871,75,7.75,39,0.0 +12871,74,10,18,0.0 +12871,3,10,39,0.0 +12871,38,263.5,37,0.0 +12871,13,6,10,0.0 +12871,23,9,24,0.0 +12872,69,36,6,0.0 +12872,57,19.5,40,0.0 +12872,52,7,46,0.0 +12872,29,123.79,12,0.0 +12872,50,16.25,27,0.0 +12872,6,25,43,0.0 +12872,30,25.89,16,0.0 +12872,39,18,47,0.0 +12872,77,13,33,0.0 +12872,62,49.3,15,0.0 +12872,14,23.25,5,0.0 +12872,22,21,50,0.0 +12872,74,10,40,0.0 +12872,2,19,44,0.0 +12872,60,34,42,0.0 +12872,67,14,44,0.0 +12872,11,21,19,0.0 +12872,10,31,11,0.0 +12872,75,7.75,32,0.0 +12872,17,39,14,0.0 +12872,7,30,48,0.0 +12872,26,31.23,40,0.0 +12872,56,38,5,0.0 +12872,34,14,36,0.0 +12872,63,43.9,34,0.0 +12872,66,17,6,0.0 +12872,40,18.4,26,0.0 +12872,37,26,44,0.0 +12872,16,17.45,29,0.0 +12872,65,21.05,19,0.0 +12872,53,32.8,33,0.0 +12873,39,18,26,0.0 +12873,45,9.5,11,0.0 +12873,76,18,9,0.0 +12873,1,18,29,0.0 +12873,44,19.45,31,0.0 +12873,11,21,25,0.0 +12873,56,38,29,0.0 +12873,42,14,34,0.0 +12873,46,12,28,0.0 +12873,32,32,26,0.0 +12874,35,18,50,0.0 +12874,2,19,39,0.0 +12874,66,17,37,0.0 +12874,77,13,21,0.0 +12874,61,28.5,43,0.0 +12874,15,15.5,23,0.0 +12874,57,19.5,12,0.0 +12874,53,32.8,28,0.0 +12874,4,22,43,0.0 +12874,73,15,30,0.0 +12874,64,33.25,29,0.0 +12874,42,14,46,0.0 +12874,16,17.45,50,0.0 +12874,33,2.5,43,0.0 +12874,10,31,40,0.0 +12874,76,18,12,0.0 +12874,9,97,46,0.0 +12874,21,10,39,0.0 +12874,68,12.5,19,0.0 +12874,24,4.5,41,0.0 +12874,47,9.5,49,0.0 +12874,3,10,27,0.0 +12874,55,24,34,0.0 +12875,36,19,21,0.0 +12875,76,18,50,0.0 +12875,12,38,8,0.0 +12875,16,17.45,46,0.0 +12875,46,12,33,0.0 +12875,9,97,37,0.0 +12875,65,21.05,10,0.0 +12875,23,9,28,0.0 +12875,26,31.23,4,0.0 +12875,56,38,29,0.0 +12875,52,7,21,0.0 +12875,73,15,31,0.0 +12875,18,62.5,46,0.0 +12875,10,31,44,0.0 +12875,45,9.5,18,0.0 +12875,14,23.25,1,0.0 +12875,32,32,4,0.0 +12875,62,49.3,47,0.0 +12875,59,55,12,0.0 +12875,43,46,6,0.0 +12875,4,22,24,0.0 +12875,20,81,33,0.0 +12875,27,43.9,17,0.0 +12875,57,19.5,39,0.0 +12875,37,26,45,0.0 +12875,28,45.6,12,0.0 +12875,49,20,12,0.0 +12875,61,28.5,16,0.0 +12875,19,9.2,37,0.0 +12875,15,15.5,30,0.0 +12875,63,43.9,49,0.0 +12875,50,16.25,18,0.0 +12875,5,21.35,50,0.0 +12875,55,24,50,0.0 +12875,39,18,28,0.0 +12875,66,17,22,0.0 +12875,75,7.75,17,0.0 +12875,64,33.25,20,0.0 +12875,77,13,41,0.0 +12875,30,25.89,3,0.0 +12875,51,53,34,0.0 +12875,21,10,43,0.0 +12875,74,10,24,0.0 +12875,25,14,28,0.0 +12875,40,18.4,43,0.0 +12875,53,32.8,45,0.0 +12875,8,40,39,0.0 +12875,29,123.79,10,0.0 +12875,42,14,28,0.0 +12875,70,15,28,0.0 +12875,24,4.5,3,0.0 +12875,11,21,37,0.0 +12875,71,21.5,2,0.0 +12875,33,2.5,8,0.0 +12875,69,36,15,0.0 +12875,13,6,19,0.0 +12876,70,15,14,0.0 +12876,7,30,1,0.0 +12876,67,14,36,0.0 +12876,76,18,17,0.0 +12876,64,33.25,26,0.0 +12876,48,12.75,50,0.0 +12876,27,43.9,32,0.0 +12876,65,21.05,41,0.0 +12876,9,97,23,0.0 +12876,20,81,21,0.0 +12876,66,17,18,0.0 +12876,36,19,14,0.0 +12876,68,12.5,25,0.0 +12876,44,19.45,1,0.0 +12876,72,34.8,16,0.0 +12876,3,10,7,0.0 +12876,49,20,36,0.0 +12876,28,45.6,29,0.0 +12876,29,123.79,5,0.0 +12876,46,12,22,0.0 +12876,45,9.5,20,0.0 +12876,24,4.5,10,0.0 +12876,74,10,49,0.0 +12876,11,21,36,0.0 +12876,52,7,19,0.0 +12876,6,25,43,0.0 +12876,41,9.65,26,0.0 +12876,34,14,49,0.0 +12876,15,15.5,28,0.0 +12876,71,21.5,20,0.0 +12876,4,22,30,0.0 +12876,1,18,37,0.0 +12876,23,9,29,0.0 +12876,62,49.3,50,0.0 +12876,21,10,24,0.0 +12876,75,7.75,40,0.0 +12877,67,14,28,0.0 +12877,56,38,45,0.0 +12877,59,55,39,0.0 +12877,51,53,12,0.0 +12877,44,19.45,21,0.0 +12877,68,12.5,12,0.0 +12877,16,17.45,38,0.0 +12877,57,19.5,37,0.0 +12877,69,36,2,0.0 +12877,25,14,44,0.0 +12877,53,32.8,46,0.0 +12878,15,15.5,3,0.0 +12878,27,43.9,45,0.0 +12878,61,28.5,18,0.0 +12878,19,9.2,37,0.0 +12878,45,9.5,49,0.0 +12878,5,21.35,48,0.0 +12878,47,9.5,43,0.0 +12878,26,31.23,22,0.0 +12878,65,21.05,35,0.0 +12878,71,21.5,24,0.0 +12878,76,18,15,0.0 +12878,74,10,48,0.0 +12878,21,10,44,0.0 +12878,32,32,24,0.0 +12878,52,7,4,0.0 +12878,34,14,47,0.0 +12878,23,9,1,0.0 +12878,11,21,9,0.0 +12878,48,12.75,27,0.0 +12878,55,24,13,0.0 +12878,62,49.3,41,0.0 +12878,73,15,41,0.0 +12878,60,34,28,0.0 +12878,50,16.25,30,0.0 +12878,58,13.25,48,0.0 +12878,51,53,10,0.0 +12878,39,18,10,0.0 +12878,56,38,50,0.0 +12878,66,17,21,0.0 +12878,2,19,9,0.0 +12878,40,18.4,29,0.0 +12878,49,20,10,0.0 +12878,41,9.65,33,0.0 +12878,17,39,27,0.0 +12878,36,19,6,0.0 +12878,46,12,10,0.0 +12878,24,4.5,13,0.0 +12878,16,17.45,40,0.0 +12878,69,36,23,0.0 +12878,68,12.5,22,0.0 +12878,57,19.5,16,0.0 +12878,29,123.79,28,0.0 +12878,33,2.5,48,0.0 +12878,25,14,4,0.0 +12878,70,15,24,0.0 +12878,9,97,3,0.0 +12878,44,19.45,48,0.0 +12878,13,6,5,0.0 +12878,8,40,11,0.0 +12878,18,62.5,31,0.0 +12878,37,26,4,0.0 +12878,14,23.25,12,0.0 +12878,20,81,33,0.0 +12878,64,33.25,2,0.0 +12878,54,7.45,5,0.0 +12878,10,31,41,0.0 +12878,4,22,34,0.0 +12878,12,38,20,0.0 +12878,42,14,26,0.0 +12878,35,18,9,0.0 +12878,1,18,11,0.0 +12878,6,25,6,0.0 +12878,75,7.75,39,0.0 +12878,59,55,12,0.0 +12878,67,14,15,0.0 +12878,7,30,50,0.0 +12878,77,13,48,0.0 +12878,43,46,45,0.0 +12878,28,45.6,50,0.0 +12878,72,34.8,7,0.0 +12878,31,12.5,40,0.0 +12879,59,55,21,0.0 +12879,72,34.8,28,0.0 +12879,53,32.8,43,0.0 +12879,4,22,11,0.0 +12879,64,33.25,35,0.0 +12879,70,15,29,0.0 +12879,58,13.25,10,0.0 +12879,25,14,15,0.0 +12879,32,32,15,0.0 +12879,40,18.4,22,0.0 +12879,74,10,17,0.0 +12879,34,14,23,0.0 +12879,63,43.9,19,0.0 +12879,51,53,48,0.0 +12879,33,2.5,43,0.0 +12879,16,17.45,49,0.0 +12879,2,19,6,0.0 +12879,3,10,15,0.0 +12879,76,18,13,0.0 +12879,12,38,11,0.0 +12879,56,38,44,0.0 +12879,66,17,15,0.0 +12879,65,21.05,26,0.0 +12879,41,9.65,14,0.0 +12879,49,20,34,0.0 +12879,46,12,10,0.0 +12879,15,15.5,29,0.0 +12879,22,21,43,0.0 +12879,30,25.89,28,0.0 +12879,48,12.75,36,0.0 +12879,14,23.25,50,0.0 +12879,7,30,46,0.0 +12879,54,7.45,18,0.0 +12879,19,9.2,18,0.0 +12880,56,38,42,0.0 +12880,19,9.2,44,0.0 +12880,62,49.3,9,0.0 +12880,1,18,22,0.0 +12880,23,9,47,0.0 +12880,18,62.5,23,0.0 +12880,9,97,36,0.0 +12880,70,15,34,0.0 +12880,32,32,19,0.0 +12880,53,32.8,46,0.0 +12880,20,81,45,0.0 +12880,29,123.79,42,0.0 +12880,55,24,8,0.0 +12880,69,36,40,0.0 +12880,67,14,12,0.0 +12880,33,2.5,24,0.0 +12880,25,14,38,0.0 +12880,73,15,22,0.0 +12880,71,21.5,36,0.0 +12880,30,25.89,7,0.0 +12880,11,21,14,0.0 +12880,46,12,5,0.0 +12880,21,10,34,0.0 +12880,31,12.5,35,0.0 +12880,22,21,44,0.0 +12880,41,9.65,11,0.0 +12880,42,14,47,0.0 +12880,61,28.5,48,0.0 +12880,45,9.5,23,0.0 +12880,51,53,32,0.0 +12880,4,22,43,0.0 +12880,60,34,50,0.0 +12880,35,18,31,0.0 +12880,40,18.4,25,0.0 +12880,66,17,29,0.0 +12880,8,40,20,0.0 +12880,24,4.5,43,0.0 +12880,16,17.45,25,0.0 +12880,6,25,48,0.0 +12880,27,43.9,2,0.0 +12880,36,19,26,0.0 +12880,34,14,6,0.0 +12880,54,7.45,16,0.0 +12880,65,21.05,42,0.0 +12880,10,31,22,0.0 +12880,77,13,18,0.0 +12880,7,30,7,0.0 +12880,38,263.5,14,0.0 +12880,52,7,43,0.0 +12880,68,12.5,10,0.0 +12880,64,33.25,49,0.0 +12880,59,55,43,0.0 +12880,17,39,50,0.0 +12880,58,13.25,41,0.0 +12880,63,43.9,49,0.0 +12880,76,18,11,0.0 +12880,12,38,49,0.0 +12880,5,21.35,48,0.0 +12880,43,46,13,0.0 +12880,47,9.5,17,0.0 +12880,37,26,35,0.0 +12880,57,19.5,47,0.0 +12880,26,31.23,33,0.0 +12880,44,19.45,48,0.0 +12880,72,34.8,28,0.0 +12881,64,33.25,15,0.0 +12881,76,18,13,0.0 +12881,72,34.8,49,0.0 +12881,51,53,3,0.0 +12881,67,14,37,0.0 +12881,39,18,24,0.0 +12881,20,81,50,0.0 +12881,31,12.5,19,0.0 +12881,8,40,33,0.0 +12881,46,12,4,0.0 +12881,37,26,12,0.0 +12881,70,15,26,0.0 +12881,10,31,32,0.0 +12881,5,21.35,32,0.0 +12881,60,34,2,0.0 +12881,29,123.79,36,0.0 +12881,17,39,20,0.0 +12881,62,49.3,21,0.0 +12881,1,18,4,0.0 +12881,27,43.9,14,0.0 +12881,11,21,5,0.0 +12881,23,9,2,0.0 +12881,30,25.89,4,0.0 +12881,68,12.5,42,0.0 +12881,3,10,29,0.0 +12881,69,36,43,0.0 +12881,32,32,9,0.0 +12881,41,9.65,33,0.0 +12881,55,24,47,0.0 +12881,2,19,5,0.0 +12881,34,14,28,0.0 +12881,74,10,6,0.0 +12881,9,97,5,0.0 +12881,26,31.23,31,0.0 +12881,19,9.2,41,0.0 +12881,73,15,45,0.0 +12881,6,25,46,0.0 +12881,47,9.5,19,0.0 +12881,77,13,37,0.0 +12881,18,62.5,44,0.0 +12881,15,15.5,23,0.0 +12881,12,38,18,0.0 +12881,75,7.75,7,0.0 +12881,57,19.5,15,0.0 +12881,13,6,31,0.0 +12881,43,46,12,0.0 +12881,40,18.4,39,0.0 +12881,42,14,17,0.0 +12881,48,12.75,36,0.0 +12881,45,9.5,31,0.0 +12881,24,4.5,49,0.0 +12881,53,32.8,23,0.0 +12881,33,2.5,22,0.0 +12881,35,18,10,0.0 +12881,63,43.9,27,0.0 +12882,65,21.05,34,0.0 +12882,41,9.65,19,0.0 +12882,34,14,47,0.0 +12882,10,31,28,0.0 +12882,19,9.2,34,0.0 +12882,69,36,5,0.0 +12882,47,9.5,24,0.0 +12882,76,18,9,0.0 +12882,68,12.5,24,0.0 +12882,16,17.45,22,0.0 +12882,29,123.79,31,0.0 +12882,35,18,7,0.0 +12882,12,38,27,0.0 +12882,18,62.5,34,0.0 +12882,11,21,17,0.0 +12882,53,32.8,12,0.0 +12882,39,18,4,0.0 +12882,17,39,30,0.0 +12882,7,30,44,0.0 +12882,44,19.45,5,0.0 +12882,48,12.75,39,0.0 +12882,50,16.25,37,0.0 +12882,30,25.89,29,0.0 +12882,9,97,24,0.0 +12882,67,14,1,0.0 +12882,61,28.5,2,0.0 +12882,43,46,26,0.0 +12882,54,7.45,11,0.0 +12882,64,33.25,11,0.0 +12882,51,53,22,0.0 +12882,45,9.5,16,0.0 +12882,13,6,1,0.0 +12882,59,55,13,0.0 +12882,56,38,16,0.0 +12882,24,4.5,46,0.0 +12882,5,21.35,5,0.0 +12882,3,10,42,0.0 +12882,42,14,27,0.0 +12882,26,31.23,15,0.0 +12882,2,19,48,0.0 +12882,62,49.3,18,0.0 +12882,22,21,19,0.0 +12882,8,40,17,0.0 +12882,77,13,33,0.0 +12882,31,12.5,31,0.0 +12882,55,24,47,0.0 +12882,36,19,27,0.0 +12882,6,25,31,0.0 +12882,70,15,9,0.0 +12883,19,9.2,35,0.0 +12883,12,38,46,0.0 +12883,30,25.89,31,0.0 +12883,34,14,20,0.0 +12883,22,21,7,0.0 +12883,63,43.9,21,0.0 +12883,5,21.35,17,0.0 +12883,17,39,10,0.0 +12883,27,43.9,32,0.0 +12883,20,81,22,0.0 +12883,60,34,10,0.0 +12883,43,46,46,0.0 +12883,76,18,21,0.0 +12883,48,12.75,7,0.0 +12883,18,62.5,39,0.0 +12883,9,97,5,0.0 +12883,52,7,31,0.0 +12883,75,7.75,44,0.0 +12883,31,12.5,36,0.0 +12883,24,4.5,8,0.0 +12883,59,55,9,0.0 +12883,56,38,41,0.0 +12883,4,22,29,0.0 +12883,47,9.5,2,0.0 +12883,2,19,15,0.0 +12883,61,28.5,42,0.0 +12883,1,18,11,0.0 +12883,77,13,25,0.0 +12883,66,17,37,0.0 +12883,26,31.23,22,0.0 +12883,46,12,43,0.0 +12884,74,10,22,0.0 +12884,11,21,2,0.0 +12884,8,40,10,0.0 +12884,33,2.5,37,0.0 +12884,52,7,48,0.0 +12884,53,32.8,44,0.0 +12884,19,9.2,47,0.0 +12884,41,9.65,21,0.0 +12884,6,25,45,0.0 +12884,3,10,45,0.0 +12884,49,20,41,0.0 +12884,13,6,50,0.0 +12884,57,19.5,32,0.0 +12884,1,18,48,0.0 +12884,22,21,49,0.0 +12884,21,10,33,0.0 +12884,31,12.5,4,0.0 +12884,46,12,45,0.0 +12884,9,97,3,0.0 +12884,63,43.9,9,0.0 +12884,62,49.3,7,0.0 +12884,76,18,5,0.0 +12884,7,30,38,0.0 +12884,38,263.5,37,0.0 +12884,16,17.45,42,0.0 +12884,2,19,13,0.0 +12884,28,45.6,40,0.0 +12884,39,18,19,0.0 +12884,14,23.25,34,0.0 +12884,24,4.5,47,0.0 +12884,48,12.75,41,0.0 +12884,44,19.45,23,0.0 +12884,20,81,47,0.0 +12884,5,21.35,38,0.0 +12884,51,53,20,0.0 +12884,47,9.5,6,0.0 +12884,17,39,11,0.0 +12884,54,7.45,2,0.0 +12884,29,123.79,46,0.0 +12884,50,16.25,30,0.0 +12884,56,38,50,0.0 +12884,35,18,23,0.0 +12884,30,25.89,39,0.0 +12884,60,34,34,0.0 +12884,26,31.23,47,0.0 +12884,55,24,46,0.0 +12884,59,55,28,0.0 +12884,34,14,26,0.0 +12884,67,14,41,0.0 +12884,64,33.25,15,0.0 +12885,48,12.75,15,0.0 +12885,11,21,26,0.0 +12885,52,7,26,0.0 +12885,54,7.45,43,0.0 +12885,9,97,42,0.0 +12885,17,39,5,0.0 +12885,12,38,19,0.0 +12885,34,14,29,0.0 +12885,74,10,26,0.0 +12885,28,45.6,22,0.0 +12885,57,19.5,1,0.0 +12885,56,38,42,0.0 +12885,36,19,13,0.0 +12885,77,13,23,0.0 +12885,41,9.65,9,0.0 +12885,69,36,22,0.0 +12885,13,6,24,0.0 +12885,58,13.25,31,0.0 +12885,53,32.8,32,0.0 +12886,44,19.45,12,0.0 +12886,36,19,7,0.0 +12886,17,39,17,0.0 +12886,65,21.05,4,0.0 +12886,26,31.23,9,0.0 +12886,25,14,3,0.0 +12886,21,10,9,0.0 +12886,8,40,32,0.0 +12886,53,32.8,16,0.0 +12886,18,62.5,23,0.0 +12886,60,34,13,0.0 +12886,15,15.5,32,0.0 +12886,42,14,43,0.0 +12886,1,18,37,0.0 +12886,12,38,26,0.0 +12886,19,9.2,26,0.0 +12886,7,30,41,0.0 +12886,50,16.25,29,0.0 +12886,68,12.5,29,0.0 +12886,9,97,7,0.0 +12886,30,25.89,27,0.0 +12886,32,32,36,0.0 +12886,13,6,47,0.0 +12886,76,18,1,0.0 +12886,71,21.5,20,0.0 +12886,3,10,45,0.0 +12886,74,10,20,0.0 +12886,72,34.8,8,0.0 +12886,5,21.35,42,0.0 +12886,28,45.6,23,0.0 +12886,77,13,39,0.0 +12886,43,46,19,0.0 +12886,54,7.45,12,0.0 +12886,33,2.5,33,0.0 +12886,41,9.65,4,0.0 +12886,56,38,32,0.0 +12886,51,53,35,0.0 +12886,31,12.5,3,0.0 +12886,70,15,23,0.0 +12887,23,9,42,0.0 +12887,4,22,15,0.0 +12887,43,46,38,0.0 +12887,10,31,23,0.0 +12887,55,24,14,0.0 +12887,27,43.9,24,0.0 +12887,30,25.89,24,0.0 +12887,44,19.45,46,0.0 +12887,70,15,3,0.0 +12887,73,15,47,0.0 +12887,59,55,16,0.0 +12887,25,14,27,0.0 +12887,51,53,23,0.0 +12887,66,17,29,0.0 +12887,2,19,38,0.0 +12887,33,2.5,16,0.0 +12887,49,20,30,0.0 +12887,75,7.75,37,0.0 +12887,29,123.79,41,0.0 +12887,24,4.5,50,0.0 +12887,6,25,22,0.0 +12887,35,18,37,0.0 +12887,69,36,19,0.0 +12887,31,12.5,39,0.0 +12887,9,97,18,0.0 +12887,74,10,38,0.0 +12887,22,21,17,0.0 +12887,50,16.25,49,0.0 +12887,65,21.05,28,0.0 +12887,17,39,22,0.0 +12887,67,14,49,0.0 +12887,52,7,21,0.0 +12887,28,45.6,4,0.0 +12887,36,19,28,0.0 +12887,14,23.25,6,0.0 +12887,39,18,46,0.0 +12887,16,17.45,41,0.0 +12887,5,21.35,37,0.0 +12887,42,14,37,0.0 +12887,41,9.65,4,0.0 +12887,53,32.8,38,0.0 +12887,20,81,48,0.0 +12887,62,49.3,32,0.0 +12887,46,12,10,0.0 +12887,15,15.5,16,0.0 +12887,26,31.23,17,0.0 +12887,19,9.2,26,0.0 +12887,38,263.5,21,0.0 +12887,12,38,37,0.0 +12887,54,7.45,45,0.0 +12888,53,32.8,40,0.0 +12888,36,19,18,0.0 +12888,46,12,38,0.0 +12888,16,17.45,32,0.0 +12888,68,12.5,4,0.0 +12888,31,12.5,21,0.0 +12888,52,7,15,0.0 +12888,15,15.5,15,0.0 +12888,19,9.2,15,0.0 +12888,57,19.5,15,0.0 +12888,11,21,23,0.0 +12888,63,43.9,32,0.0 +12888,30,25.89,24,0.0 +12888,18,62.5,47,0.0 +12888,54,7.45,9,0.0 +12888,65,21.05,43,0.0 +12888,39,18,48,0.0 +12888,69,36,14,0.0 +12888,14,23.25,7,0.0 +12888,25,14,36,0.0 +12888,34,14,14,0.0 +12888,73,15,24,0.0 +12888,12,38,22,0.0 +12888,42,14,48,0.0 +12888,51,53,7,0.0 +12888,74,10,45,0.0 +12888,21,10,28,0.0 +12888,17,39,11,0.0 +12888,2,19,45,0.0 +12888,64,33.25,21,0.0 +12888,3,10,8,0.0 +12888,61,28.5,21,0.0 +12888,50,16.25,2,0.0 +12888,45,9.5,1,0.0 +12888,43,46,48,0.0 +12888,4,22,44,0.0 +12888,62,49.3,18,0.0 +12888,41,9.65,18,0.0 +12888,28,45.6,34,0.0 +12888,5,21.35,27,0.0 +12888,70,15,31,0.0 +12888,55,24,46,0.0 +12888,60,34,33,0.0 +12888,66,17,20,0.0 +12888,22,21,14,0.0 +12888,10,31,18,0.0 +12888,35,18,3,0.0 +12888,26,31.23,7,0.0 +12888,33,2.5,13,0.0 +12888,58,13.25,8,0.0 +12888,49,20,15,0.0 +12888,47,9.5,26,0.0 +12888,6,25,36,0.0 +12888,48,12.75,43,0.0 +12888,1,18,7,0.0 +12888,67,14,26,0.0 +12888,23,9,41,0.0 +12888,38,263.5,49,0.0 +12888,40,18.4,21,0.0 +12888,72,34.8,11,0.0 +12888,8,40,45,0.0 +12888,37,26,18,0.0 +12888,9,97,50,0.0 +12888,20,81,13,0.0 +12888,77,13,21,0.0 +12888,56,38,36,0.0 +12888,75,7.75,23,0.0 +12888,32,32,34,0.0 +12888,76,18,1,0.0 +12889,42,14,35,0.0 +12889,54,7.45,13,0.0 +12889,2,19,2,0.0 +12889,9,97,19,0.0 +12889,39,18,22,0.0 +12889,55,24,1,0.0 +12889,75,7.75,2,0.0 +12889,48,12.75,38,0.0 +12889,59,55,35,0.0 +12889,69,36,8,0.0 +12889,68,12.5,22,0.0 +12889,30,25.89,11,0.0 +12889,38,263.5,19,0.0 +12889,19,9.2,49,0.0 +12889,4,22,50,0.0 +12889,65,21.05,38,0.0 +12889,43,46,25,0.0 +12889,41,9.65,45,0.0 +12889,63,43.9,18,0.0 +12889,27,43.9,10,0.0 +12889,71,21.5,2,0.0 +12890,37,26,33,0.0 +12890,39,18,49,0.0 +12890,69,36,35,0.0 +12890,75,7.75,2,0.0 +12890,18,62.5,34,0.0 +12890,19,9.2,4,0.0 +12890,11,21,3,0.0 +12890,22,21,4,0.0 +12890,7,30,39,0.0 +12890,12,38,6,0.0 +12890,71,21.5,30,0.0 +12890,55,24,3,0.0 +12890,65,21.05,43,0.0 +12890,64,33.25,24,0.0 +12890,17,39,18,0.0 +12890,49,20,2,0.0 +12890,14,23.25,6,0.0 +12890,31,12.5,28,0.0 +12890,4,22,22,0.0 +12890,74,10,37,0.0 +12890,52,7,17,0.0 +12890,29,123.79,18,0.0 +12890,76,18,21,0.0 +12890,23,9,16,0.0 +12891,53,32.8,42,0.0 +12891,6,25,18,0.0 +12891,43,46,33,0.0 +12891,3,10,48,0.0 +12891,75,7.75,42,0.0 +12891,46,12,15,0.0 +12891,26,31.23,14,0.0 +12891,44,19.45,50,0.0 +12891,29,123.79,2,0.0 +12891,36,19,7,0.0 +12891,9,97,40,0.0 +12891,70,15,8,0.0 +12891,7,30,31,0.0 +12891,47,9.5,37,0.0 +12891,67,14,9,0.0 +12891,20,81,26,0.0 +12891,15,15.5,23,0.0 +12891,59,55,16,0.0 +12891,55,24,31,0.0 +12891,13,6,9,0.0 +12891,39,18,15,0.0 +12891,34,14,32,0.0 +12891,71,21.5,24,0.0 +12891,50,16.25,23,0.0 +12891,16,17.45,15,0.0 +12891,73,15,50,0.0 +12891,28,45.6,6,0.0 +12891,25,14,38,0.0 +12891,52,7,50,0.0 +12891,1,18,19,0.0 +12891,17,39,45,0.0 +12891,35,18,24,0.0 +12891,76,18,15,0.0 +12891,63,43.9,16,0.0 +12891,18,62.5,13,0.0 +12891,2,19,38,0.0 +12891,22,21,22,0.0 +12891,77,13,16,0.0 +12891,30,25.89,25,0.0 +12891,8,40,32,0.0 +12891,19,9.2,40,0.0 +12891,62,49.3,46,0.0 +12891,58,13.25,43,0.0 +12891,38,263.5,10,0.0 +12891,11,21,6,0.0 +12891,45,9.5,50,0.0 +12891,61,28.5,44,0.0 +12891,24,4.5,26,0.0 +12891,21,10,49,0.0 +12891,69,36,14,0.0 +12891,54,7.45,37,0.0 +12891,5,21.35,20,0.0 +12891,37,26,48,0.0 +12891,72,34.8,2,0.0 +12891,40,18.4,6,0.0 +12891,32,32,32,0.0 +12891,31,12.5,41,0.0 +12891,42,14,41,0.0 +12891,23,9,48,0.0 +12891,57,19.5,24,0.0 +12891,74,10,13,0.0 +12891,56,38,32,0.0 +12891,60,34,32,0.0 +12891,48,12.75,3,0.0 +12891,65,21.05,40,0.0 +12892,64,33.25,41,0.0 +12892,21,10,13,0.0 +12892,76,18,31,0.0 +12892,47,9.5,18,0.0 +12892,34,14,20,0.0 +12892,38,263.5,26,0.0 +12892,41,9.65,34,0.0 +12892,32,32,31,0.0 +12892,60,34,22,0.0 +12892,70,15,27,0.0 +12892,59,55,6,0.0 +12892,45,9.5,1,0.0 +12892,18,62.5,3,0.0 +12892,22,21,38,0.0 +12892,58,13.25,29,0.0 +12892,28,45.6,5,0.0 +12892,31,12.5,23,0.0 +12892,27,43.9,41,0.0 +12892,66,17,18,0.0 +12892,72,34.8,26,0.0 +12892,15,15.5,27,0.0 +12892,52,7,21,0.0 +12892,46,12,5,0.0 +12892,50,16.25,26,0.0 +12892,73,15,42,0.0 +12892,71,21.5,41,0.0 +12892,6,25,44,0.0 +12892,56,38,36,0.0 +12892,48,12.75,20,0.0 +12892,11,21,27,0.0 +12892,37,26,21,0.0 +12892,49,20,13,0.0 +12892,77,13,40,0.0 +12892,40,18.4,48,0.0 +12892,75,7.75,26,0.0 +12892,29,123.79,18,0.0 +12892,10,31,6,0.0 +12892,62,49.3,33,0.0 +12892,25,14,20,0.0 +12892,35,18,25,0.0 +12892,2,19,24,0.0 +12892,3,10,18,0.0 +12892,5,21.35,49,0.0 +12892,61,28.5,39,0.0 +12892,55,24,7,0.0 +12892,8,40,15,0.0 +12892,13,6,40,0.0 +12892,30,25.89,38,0.0 +12892,36,19,20,0.0 +12892,51,53,10,0.0 +12892,69,36,12,0.0 +12892,1,18,7,0.0 +12892,42,14,31,0.0 +12892,67,14,49,0.0 +12892,9,97,6,0.0 +12892,53,32.8,47,0.0 +12893,72,34.8,48,0.0 +12893,55,24,49,0.0 +12893,47,9.5,7,0.0 +12893,71,21.5,48,0.0 +12893,25,14,42,0.0 +12893,32,32,11,0.0 +12894,36,19,18,0.0 +12894,2,19,26,0.0 +12894,46,12,13,0.0 +12894,48,12.75,24,0.0 +12894,29,123.79,46,0.0 +12894,30,25.89,17,0.0 +12894,1,18,46,0.0 +12894,37,26,10,0.0 +12894,50,16.25,11,0.0 +12894,52,7,32,0.0 +12894,43,46,46,0.0 +12894,38,263.5,13,0.0 +12894,12,38,28,0.0 +12894,73,15,25,0.0 +12894,14,23.25,44,0.0 +12894,64,33.25,27,0.0 +12894,54,7.45,1,0.0 +12894,10,31,6,0.0 +12894,47,9.5,43,0.0 +12894,49,20,39,0.0 +12894,24,4.5,8,0.0 +12894,56,38,26,0.0 +12894,39,18,50,0.0 +12894,34,14,4,0.0 +12894,17,39,24,0.0 +12894,31,12.5,20,0.0 +12894,9,97,4,0.0 +12894,35,18,35,0.0 +12894,40,18.4,24,0.0 +12894,7,30,5,0.0 +12894,21,10,40,0.0 +12894,72,34.8,5,0.0 +12894,3,10,37,0.0 +12894,76,18,2,0.0 +12894,63,43.9,24,0.0 +12894,65,21.05,37,0.0 +12894,67,14,1,0.0 +12894,16,17.45,6,0.0 +12894,70,15,40,0.0 +12894,13,6,34,0.0 +12894,4,22,41,0.0 +12894,25,14,44,0.0 +12894,53,32.8,16,0.0 +12894,19,9.2,31,0.0 +12894,27,43.9,2,0.0 +12894,66,17,32,0.0 +12895,57,19.5,14,0.0 +12895,25,14,27,0.0 +12895,34,14,49,0.0 +12895,56,38,28,0.0 +12895,77,13,27,0.0 +12895,26,31.23,31,0.0 +12895,18,62.5,5,0.0 +12895,75,7.75,24,0.0 +12895,69,36,5,0.0 +12895,21,10,37,0.0 +12895,51,53,30,0.0 +12895,29,123.79,27,0.0 +12895,73,15,47,0.0 +12895,12,38,8,0.0 +12895,16,17.45,4,0.0 +12895,44,19.45,21,0.0 +12895,59,55,30,0.0 +12895,45,9.5,20,0.0 +12895,60,34,8,0.0 +12895,38,263.5,39,0.0 +12895,42,14,36,0.0 +12895,72,34.8,34,0.0 +12895,22,21,7,0.0 +12895,64,33.25,5,0.0 +12895,63,43.9,3,0.0 +12895,47,9.5,45,0.0 +12895,3,10,30,0.0 +12895,8,40,44,0.0 +12895,20,81,47,0.0 +12895,11,21,35,0.0 +12895,15,15.5,29,0.0 +12895,67,14,47,0.0 +12895,32,32,15,0.0 +12895,33,2.5,7,0.0 +12895,2,19,16,0.0 +12895,55,24,4,0.0 +12895,28,45.6,6,0.0 +12895,62,49.3,21,0.0 +12895,65,21.05,11,0.0 +12895,66,17,46,0.0 +12895,35,18,32,0.0 +12895,37,26,40,0.0 +12895,27,43.9,28,0.0 +12895,4,22,21,0.0 +12895,74,10,11,0.0 +12895,39,18,49,0.0 +12895,10,31,12,0.0 +12895,46,12,47,0.0 +12895,7,30,32,0.0 +12895,43,46,37,0.0 +12895,24,4.5,41,0.0 +12895,5,21.35,44,0.0 +12895,50,16.25,3,0.0 +12895,40,18.4,10,0.0 +12895,53,32.8,26,0.0 +12895,31,12.5,20,0.0 +12895,6,25,19,0.0 +12895,54,7.45,34,0.0 +12895,58,13.25,38,0.0 +12895,9,97,16,0.0 +12895,49,20,41,0.0 +12895,23,9,23,0.0 +12895,1,18,29,0.0 +12895,71,21.5,31,0.0 +12895,19,9.2,35,0.0 +12895,17,39,29,0.0 +12895,48,12.75,2,0.0 +12895,70,15,31,0.0 +12895,14,23.25,41,0.0 +12895,52,7,49,0.0 +12895,76,18,20,0.0 +12896,28,45.6,38,0.0 +12896,75,7.75,38,0.0 +12896,37,26,16,0.0 +12896,31,12.5,32,0.0 +12896,41,9.65,42,0.0 +12896,32,32,20,0.0 +12896,21,10,46,0.0 +12896,29,123.79,24,0.0 +12896,3,10,19,0.0 +12896,18,62.5,40,0.0 +12896,25,14,13,0.0 +12896,72,34.8,35,0.0 +12896,77,13,33,0.0 +12896,15,15.5,18,0.0 +12896,33,2.5,2,0.0 +12896,66,17,7,0.0 +12896,59,55,15,0.0 +12896,62,49.3,38,0.0 +12896,24,4.5,39,0.0 +12896,74,10,42,0.0 +12896,6,25,29,0.0 +12896,63,43.9,23,0.0 +12896,61,28.5,24,0.0 +12896,11,21,19,0.0 +12896,39,18,24,0.0 +12896,71,21.5,43,0.0 +12896,48,12.75,47,0.0 +12896,30,25.89,21,0.0 +12896,1,18,44,0.0 +12896,20,81,39,0.0 +12896,12,38,20,0.0 +12896,47,9.5,13,0.0 +12896,53,32.8,35,0.0 +12896,22,21,22,0.0 +12896,34,14,34,0.0 +12896,43,46,27,0.0 +12896,35,18,4,0.0 +12896,56,38,39,0.0 +12897,67,14,41,0.0 +12897,22,21,10,0.0 +12897,44,19.45,25,0.0 +12897,56,38,5,0.0 +12897,38,263.5,42,0.0 +12897,61,28.5,47,0.0 +12897,55,24,31,0.0 +12897,11,21,8,0.0 +12897,70,15,12,0.0 +12897,66,17,37,0.0 +12897,24,4.5,13,0.0 +12897,10,31,32,0.0 +12897,25,14,38,0.0 +12897,33,2.5,24,0.0 +12897,58,13.25,36,0.0 +12897,27,43.9,12,0.0 +12897,40,18.4,50,0.0 +12897,3,10,38,0.0 +12897,73,15,46,0.0 +12897,13,6,47,0.0 +12897,57,19.5,3,0.0 +12897,37,26,32,0.0 +12897,36,19,36,0.0 +12897,43,46,32,0.0 +12897,59,55,24,0.0 +12897,34,14,24,0.0 +12897,1,18,35,0.0 +12897,16,17.45,33,0.0 +12897,51,53,20,0.0 +12897,41,9.65,41,0.0 +12897,75,7.75,33,0.0 +12897,19,9.2,19,0.0 +12897,31,12.5,50,0.0 +12897,69,36,39,0.0 +12898,63,43.9,40,0.0 +12898,48,12.75,37,0.0 +12898,42,14,34,0.0 +12898,72,34.8,26,0.0 +12898,11,21,27,0.0 +12898,36,19,46,0.0 +12898,39,18,40,0.0 +12898,14,23.25,34,0.0 +12898,25,14,10,0.0 +12898,26,31.23,36,0.0 +12898,46,12,18,0.0 +12898,15,15.5,1,0.0 +12898,60,34,10,0.0 +12898,50,16.25,12,0.0 +12898,23,9,9,0.0 +12898,62,49.3,30,0.0 +12898,13,6,19,0.0 +12898,66,17,49,0.0 +12898,55,24,50,0.0 +12898,58,13.25,5,0.0 +12898,16,17.45,26,0.0 +12898,27,43.9,2,0.0 +12898,61,28.5,42,0.0 +12898,71,21.5,7,0.0 +12898,77,13,17,0.0 +12898,28,45.6,18,0.0 +12898,52,7,39,0.0 +12898,32,32,21,0.0 +12898,47,9.5,27,0.0 +12898,65,21.05,39,0.0 +12898,9,97,29,0.0 +12898,67,14,10,0.0 +12898,38,263.5,39,0.0 +12898,40,18.4,48,0.0 +12898,17,39,19,0.0 +12898,21,10,4,0.0 +12898,2,19,13,0.0 +12898,73,15,30,0.0 +12898,75,7.75,41,0.0 +12898,6,25,22,0.0 +12898,74,10,10,0.0 +12898,35,18,29,0.0 +12898,24,4.5,6,0.0 +12898,56,38,1,0.0 +12898,1,18,46,0.0 +12898,70,15,37,0.0 +12898,51,53,19,0.0 +12898,76,18,13,0.0 +12898,33,2.5,39,0.0 +12898,49,20,28,0.0 +12898,37,26,35,0.0 +12898,22,21,1,0.0 +12898,18,62.5,36,0.0 +12898,68,12.5,22,0.0 +12899,70,15,7,0.0 +12899,23,9,47,0.0 +12899,1,18,14,0.0 +12899,50,16.25,16,0.0 +12899,18,62.5,16,0.0 +12899,58,13.25,10,0.0 +12899,62,49.3,8,0.0 +12899,57,19.5,22,0.0 +12899,3,10,14,0.0 +12899,30,25.89,6,0.0 +12899,32,32,11,0.0 +12899,63,43.9,40,0.0 +12899,12,38,1,0.0 +12899,40,18.4,22,0.0 +12899,75,7.75,23,0.0 +12899,39,18,33,0.0 +12899,33,2.5,49,0.0 +12899,25,14,2,0.0 +12899,19,9.2,44,0.0 +12899,6,25,8,0.0 +12899,54,7.45,33,0.0 +12899,10,31,45,0.0 +12899,4,22,17,0.0 +12899,41,9.65,22,0.0 +12899,66,17,39,0.0 +12899,56,38,21,0.0 +12899,27,43.9,10,0.0 +12899,69,36,19,0.0 +12899,20,81,42,0.0 +12899,44,19.45,15,0.0 +12899,49,20,23,0.0 +12899,35,18,8,0.0 +12899,45,9.5,40,0.0 +12899,16,17.45,42,0.0 +12899,38,263.5,45,0.0 +12899,71,21.5,42,0.0 +12899,59,55,37,0.0 +12899,68,12.5,16,0.0 +12899,52,7,24,0.0 +12899,53,32.8,4,0.0 +12899,46,12,43,0.0 +12899,22,21,27,0.0 +12899,55,24,4,0.0 +12899,48,12.75,11,0.0 +12899,24,4.5,50,0.0 +12899,5,21.35,48,0.0 +12899,51,53,5,0.0 +12899,17,39,47,0.0 +12899,65,21.05,19,0.0 +12899,42,14,31,0.0 +12899,2,19,44,0.0 +12899,11,21,26,0.0 +12899,13,6,48,0.0 +12899,47,9.5,44,0.0 +12899,21,10,41,0.0 +12899,8,40,50,0.0 +12899,43,46,31,0.0 +12899,15,15.5,42,0.0 +12899,77,13,41,0.0 +12899,73,15,1,0.0 +12899,60,34,16,0.0 +12899,7,30,6,0.0 +12899,28,45.6,24,0.0 +12899,72,34.8,29,0.0 +12899,31,12.5,10,0.0 +12899,14,23.25,22,0.0 +12899,37,26,24,0.0 +12899,67,14,49,0.0 +12899,36,19,4,0.0 +12899,64,33.25,37,0.0 +12899,34,14,26,0.0 +12900,70,15,42,0.0 +12900,33,2.5,40,0.0 +12900,28,45.6,34,0.0 +12900,43,46,16,0.0 +12900,47,9.5,17,0.0 +12900,1,18,9,0.0 +12900,26,31.23,45,0.0 +12900,27,43.9,34,0.0 +12900,31,12.5,30,0.0 +12900,59,55,44,0.0 +12900,20,81,46,0.0 +12900,41,9.65,2,0.0 +12900,77,13,5,0.0 +12900,34,14,32,0.0 +12900,35,18,36,0.0 +12900,71,21.5,38,0.0 +12900,76,18,37,0.0 +12900,5,21.35,23,0.0 +12900,64,33.25,10,0.0 +12900,50,16.25,40,0.0 +12900,21,10,33,0.0 +12900,54,7.45,39,0.0 +12900,53,32.8,9,0.0 +12900,55,24,31,0.0 +12901,70,15,44,0.0 +12901,4,22,15,0.0 +12901,73,15,20,0.0 +12901,12,38,22,0.0 +12901,38,263.5,23,0.0 +12901,76,18,47,0.0 +12901,71,21.5,3,0.0 +12901,48,12.75,49,0.0 +12901,50,16.25,12,0.0 +12901,77,13,28,0.0 +12901,44,19.45,25,0.0 +12901,27,43.9,32,0.0 +12901,17,39,11,0.0 +12901,5,21.35,11,0.0 +12901,57,19.5,49,0.0 +12901,64,33.25,16,0.0 +12901,10,31,34,0.0 +12901,35,18,27,0.0 +12901,15,15.5,45,0.0 +12901,51,53,20,0.0 +12901,20,81,27,0.0 +12901,72,34.8,12,0.0 +12901,60,34,44,0.0 +12901,40,18.4,42,0.0 +12901,66,17,17,0.0 +12901,74,10,23,0.0 +12901,65,21.05,26,0.0 +12901,53,32.8,36,0.0 +12901,30,25.89,32,0.0 +12901,7,30,48,0.0 +12901,1,18,42,0.0 +12901,62,49.3,26,0.0 +12901,24,4.5,5,0.0 +12901,63,43.9,2,0.0 +12901,49,20,36,0.0 +12901,14,23.25,15,0.0 +12901,42,14,30,0.0 +12901,45,9.5,26,0.0 +12901,55,24,26,0.0 +12901,25,14,32,0.0 +12901,31,12.5,11,0.0 +12901,58,13.25,6,0.0 +12901,54,7.45,40,0.0 +12901,59,55,43,0.0 +12901,61,28.5,46,0.0 +12901,69,36,17,0.0 +12901,47,9.5,31,0.0 +12901,19,9.2,8,0.0 +12901,13,6,36,0.0 +12901,28,45.6,48,0.0 +12901,11,21,18,0.0 +12901,68,12.5,36,0.0 +12901,21,10,13,0.0 +12901,22,21,44,0.0 +12901,26,31.23,8,0.0 +12901,56,38,24,0.0 +12902,11,21,4,0.0 +12902,10,31,22,0.0 +12902,43,46,50,0.0 +12902,53,32.8,34,0.0 +12902,6,25,32,0.0 +12902,35,18,16,0.0 +12902,3,10,20,0.0 +12902,18,62.5,24,0.0 +12902,48,12.75,42,0.0 +12902,9,97,12,0.0 +12902,46,12,13,0.0 +12902,2,19,19,0.0 +12902,74,10,7,0.0 +12902,37,26,40,0.0 +12902,57,19.5,28,0.0 +12902,34,14,40,0.0 +12902,73,15,2,0.0 +12902,65,21.05,24,0.0 +12902,12,38,25,0.0 +12903,22,21,38,0.0 +12903,77,13,49,0.0 +12903,64,33.25,19,0.0 +12903,4,22,10,0.0 +12903,58,13.25,49,0.0 +12903,12,38,39,0.0 +12903,25,14,19,0.0 +12903,6,25,38,0.0 +12903,8,40,22,0.0 +12903,14,23.25,10,0.0 +12903,30,25.89,10,0.0 +12903,21,10,2,0.0 +12903,48,12.75,48,0.0 +12903,54,7.45,22,0.0 +12903,17,39,3,0.0 +12903,65,21.05,40,0.0 +12903,34,14,47,0.0 +12903,36,19,16,0.0 +12903,3,10,1,0.0 +12903,46,12,43,0.0 +12903,60,34,41,0.0 +12903,38,263.5,36,0.0 +12903,71,21.5,23,0.0 +12903,52,7,45,0.0 +12903,42,14,10,0.0 +12903,57,19.5,6,0.0 +12903,73,15,11,0.0 +12903,66,17,23,0.0 +12903,29,123.79,41,0.0 +12903,24,4.5,18,0.0 +12903,35,18,24,0.0 +12903,75,7.75,29,0.0 +12903,72,34.8,25,0.0 +12903,16,17.45,7,0.0 +12904,40,18.4,30,0.0 +12904,38,263.5,20,0.0 +12904,57,19.5,5,0.0 +12904,31,12.5,32,0.0 +12904,52,7,20,0.0 +12904,12,38,13,0.0 +12904,43,46,41,0.0 +12904,19,9.2,41,0.0 +12904,48,12.75,37,0.0 +12904,65,21.05,20,0.0 +12904,55,24,49,0.0 +12904,74,10,43,0.0 +12904,17,39,41,0.0 +12904,56,38,4,0.0 +12904,46,12,25,0.0 +12904,75,7.75,36,0.0 +12904,2,19,36,0.0 +12904,53,32.8,7,0.0 +12904,61,28.5,45,0.0 +12904,47,9.5,34,0.0 +12904,69,36,18,0.0 +12904,58,13.25,11,0.0 +12904,54,7.45,50,0.0 +12904,11,21,19,0.0 +12904,23,9,23,0.0 +12904,42,14,23,0.0 +12904,35,18,36,0.0 +12904,25,14,3,0.0 +12904,68,12.5,38,0.0 +12904,67,14,48,0.0 +12904,73,15,23,0.0 +12904,13,6,23,0.0 +12904,41,9.65,6,0.0 +12904,29,123.79,20,0.0 +12904,66,17,50,0.0 +12904,1,18,19,0.0 +12904,9,97,49,0.0 +12904,50,16.25,5,0.0 +12904,4,22,22,0.0 +12904,10,31,16,0.0 +12904,64,33.25,46,0.0 +12904,30,25.89,18,0.0 +12904,77,13,24,0.0 +12904,45,9.5,38,0.0 +12904,76,18,15,0.0 +12904,8,40,7,0.0 +12904,24,4.5,3,0.0 +12904,72,34.8,8,0.0 +12904,27,43.9,21,0.0 +12904,36,19,40,0.0 +12904,32,32,40,0.0 +12904,49,20,1,0.0 +12904,3,10,13,0.0 +12904,71,21.5,50,0.0 +12904,34,14,34,0.0 +12904,14,23.25,25,0.0 +12904,37,26,5,0.0 +12904,15,15.5,2,0.0 +12904,20,81,31,0.0 +12904,33,2.5,39,0.0 +12904,18,62.5,13,0.0 +12904,63,43.9,10,0.0 +12904,70,15,23,0.0 +12904,5,21.35,2,0.0 +12904,60,34,38,0.0 +12904,59,55,36,0.0 +12904,62,49.3,31,0.0 +12904,51,53,27,0.0 +12904,26,31.23,7,0.0 +12904,39,18,22,0.0 +12904,28,45.6,38,0.0 +12904,7,30,4,0.0 +12904,16,17.45,20,0.0 +12905,2,19,17,0.0 +12905,62,49.3,47,0.0 +12905,37,26,4,0.0 +12905,71,21.5,42,0.0 +12905,42,14,8,0.0 +12906,25,14,47,0.0 +12906,28,45.6,8,0.0 +12906,17,39,47,0.0 +12906,9,97,35,0.0 +12906,51,53,45,0.0 +12906,75,7.75,26,0.0 +12906,33,2.5,18,0.0 +12906,36,19,43,0.0 +12906,37,26,41,0.0 +12906,64,33.25,45,0.0 +12906,67,14,26,0.0 +12906,46,12,20,0.0 +12906,69,36,8,0.0 +12906,27,43.9,10,0.0 +12906,35,18,49,0.0 +12906,74,10,38,0.0 +12906,23,9,31,0.0 +12906,39,18,12,0.0 +12906,12,38,29,0.0 +12906,56,38,36,0.0 +12906,18,62.5,12,0.0 +12906,30,25.89,23,0.0 +12906,31,12.5,4,0.0 +12906,48,12.75,32,0.0 +12906,54,7.45,11,0.0 +12906,49,20,8,0.0 +12906,16,17.45,40,0.0 +12906,42,14,42,0.0 +12906,38,263.5,47,0.0 +12906,40,18.4,28,0.0 +12906,34,14,26,0.0 +12906,19,9.2,13,0.0 +12906,1,18,23,0.0 +12906,11,21,23,0.0 +12906,62,49.3,21,0.0 +12906,5,21.35,4,0.0 +12906,52,7,13,0.0 +12906,15,15.5,43,0.0 +12906,6,25,35,0.0 +12906,66,17,47,0.0 +12906,47,9.5,25,0.0 +12906,7,30,18,0.0 +12906,29,123.79,37,0.0 +12906,61,28.5,25,0.0 +12906,60,34,14,0.0 +12906,32,32,40,0.0 +12906,4,22,35,0.0 +12906,72,34.8,37,0.0 +12906,57,19.5,18,0.0 +12906,43,46,5,0.0 +12906,63,43.9,20,0.0 +12906,65,21.05,1,0.0 +12906,24,4.5,5,0.0 +12906,8,40,16,0.0 +12906,22,21,38,0.0 +12906,76,18,49,0.0 +12907,51,53,34,0.0 +12907,27,43.9,38,0.0 +12907,73,15,14,0.0 +12907,54,7.45,7,0.0 +12907,20,81,39,0.0 +12907,75,7.75,7,0.0 +12907,46,12,15,0.0 +12907,38,263.5,31,0.0 +12907,72,34.8,47,0.0 +12907,35,18,9,0.0 +12907,62,49.3,46,0.0 +12907,31,12.5,12,0.0 +12907,21,10,24,0.0 +12908,26,31.23,7,0.0 +12908,42,14,7,0.0 +12908,64,33.25,49,0.0 +12908,10,31,38,0.0 +12908,40,18.4,49,0.0 +12908,4,22,9,0.0 +12908,55,24,49,0.0 +12908,71,21.5,13,0.0 +12908,66,17,22,0.0 +12908,75,7.75,6,0.0 +12908,52,7,28,0.0 +12908,36,19,49,0.0 +12908,43,46,8,0.0 +12908,74,10,10,0.0 +12908,60,34,2,0.0 +12908,63,43.9,23,0.0 +12908,32,32,23,0.0 +12908,13,6,46,0.0 +12908,5,21.35,8,0.0 +12908,38,263.5,35,0.0 +12908,56,38,29,0.0 +12908,34,14,15,0.0 +12908,28,45.6,6,0.0 +12908,2,19,1,0.0 +12908,14,23.25,22,0.0 +12908,47,9.5,5,0.0 +12908,24,4.5,33,0.0 +12908,21,10,11,0.0 +12908,29,123.79,1,0.0 +12908,8,40,42,0.0 +12908,54,7.45,46,0.0 +12908,67,14,33,0.0 +12908,61,28.5,2,0.0 +12908,35,18,38,0.0 +12908,49,20,31,0.0 +12908,62,49.3,16,0.0 +12908,19,9.2,13,0.0 +12908,72,34.8,14,0.0 +12908,7,30,29,0.0 +12908,22,21,19,0.0 +12908,23,9,31,0.0 +12908,59,55,20,0.0 +12908,3,10,25,0.0 +12908,48,12.75,49,0.0 +12908,33,2.5,48,0.0 +12908,9,97,16,0.0 +12908,68,12.5,4,0.0 +12908,50,16.25,43,0.0 +12908,77,13,10,0.0 +12908,12,38,36,0.0 +12908,37,26,26,0.0 +12908,57,19.5,25,0.0 +12908,17,39,44,0.0 +12908,18,62.5,34,0.0 +12908,39,18,13,0.0 +12908,16,17.45,17,0.0 +12908,11,21,39,0.0 +12908,45,9.5,37,0.0 +12908,46,12,4,0.0 +12908,53,32.8,44,0.0 +12908,15,15.5,43,0.0 +12908,41,9.65,6,0.0 +12908,73,15,22,0.0 +12908,30,25.89,25,0.0 +12908,51,53,26,0.0 +12908,44,19.45,46,0.0 +12908,31,12.5,39,0.0 +12908,58,13.25,42,0.0 +12908,20,81,38,0.0 +12908,27,43.9,44,0.0 +12908,25,14,5,0.0 +12908,65,21.05,21,0.0 +12908,1,18,40,0.0 +12908,6,25,24,0.0 +12908,69,36,14,0.0 +12909,8,40,25,0.0 +12909,46,12,34,0.0 +12909,61,28.5,43,0.0 +12909,65,21.05,34,0.0 +12909,20,81,45,0.0 +12909,14,23.25,8,0.0 +12909,71,21.5,26,0.0 +12909,49,20,6,0.0 +12909,75,7.75,26,0.0 +12909,24,4.5,3,0.0 +12909,40,18.4,35,0.0 +12909,59,55,32,0.0 +12909,38,263.5,7,0.0 +12909,39,18,42,0.0 +12909,76,18,38,0.0 +12909,73,15,46,0.0 +12909,9,97,14,0.0 +12909,28,45.6,48,0.0 +12909,67,14,24,0.0 +12909,32,32,27,0.0 +12909,33,2.5,13,0.0 +12909,15,15.5,15,0.0 +12909,25,14,3,0.0 +12909,29,123.79,44,0.0 +12909,58,13.25,12,0.0 +12909,53,32.8,47,0.0 +12909,42,14,12,0.0 +12909,69,36,37,0.0 +12909,70,15,38,0.0 +12909,64,33.25,40,0.0 +12909,19,9.2,24,0.0 +12909,35,18,44,0.0 +12909,22,21,31,0.0 +12909,37,26,1,0.0 +12909,48,12.75,5,0.0 +12909,30,25.89,46,0.0 +12909,3,10,31,0.0 +12909,36,19,30,0.0 +12909,60,34,36,0.0 +12909,2,19,46,0.0 +12909,6,25,28,0.0 +12909,62,49.3,41,0.0 +12909,74,10,12,0.0 +12909,54,7.45,24,0.0 +12909,66,17,46,0.0 +12909,23,9,1,0.0 +12909,27,43.9,19,0.0 +12909,4,22,49,0.0 +12909,45,9.5,18,0.0 +12909,43,46,7,0.0 +12909,68,12.5,1,0.0 +12909,21,10,41,0.0 +12909,50,16.25,50,0.0 +12909,41,9.65,7,0.0 +12909,13,6,8,0.0 +12909,63,43.9,31,0.0 +12909,5,21.35,50,0.0 +12909,1,18,30,0.0 +12909,17,39,24,0.0 +12909,10,31,2,0.0 +12909,34,14,21,0.0 +12909,11,21,29,0.0 +12909,56,38,45,0.0 +12909,52,7,10,0.0 +12909,7,30,5,0.0 +12909,77,13,20,0.0 +12909,57,19.5,19,0.0 +12909,12,38,14,0.0 +12909,26,31.23,48,0.0 +12909,18,62.5,25,0.0 +12909,51,53,21,0.0 +12909,16,17.45,40,0.0 +12910,4,22,40,0.0 +12910,2,19,30,0.0 +12910,21,10,9,0.0 +12910,40,18.4,17,0.0 +12910,48,12.75,48,0.0 +12910,53,32.8,36,0.0 +12910,49,20,7,0.0 +12910,35,18,32,0.0 +12910,55,24,34,0.0 +12910,5,21.35,3,0.0 +12910,9,97,9,0.0 +12910,76,18,15,0.0 +12910,27,43.9,41,0.0 +12910,50,16.25,9,0.0 +12910,8,40,27,0.0 +12910,44,19.45,17,0.0 +12910,13,6,28,0.0 +12910,45,9.5,7,0.0 +12910,47,9.5,34,0.0 +12910,15,15.5,6,0.0 +12910,25,14,44,0.0 +12910,57,19.5,39,0.0 +12910,1,18,29,0.0 +12910,36,19,18,0.0 +12910,75,7.75,19,0.0 +12910,71,21.5,44,0.0 +12910,61,28.5,40,0.0 +12910,37,26,27,0.0 +12910,17,39,18,0.0 +12910,56,38,35,0.0 +12910,66,17,26,0.0 +12910,72,34.8,44,0.0 +12910,32,32,23,0.0 +12910,22,21,8,0.0 +12910,30,25.89,27,0.0 +12910,34,14,2,0.0 +12910,33,2.5,31,0.0 +12910,16,17.45,47,0.0 +12910,28,45.6,21,0.0 +12910,24,4.5,7,0.0 +12910,62,49.3,9,0.0 +12910,11,21,46,0.0 +12910,70,15,37,0.0 +12910,54,7.45,19,0.0 +12910,42,14,41,0.0 +12910,52,7,6,0.0 +12910,23,9,22,0.0 +12910,46,12,45,0.0 +12910,20,81,5,0.0 +12910,7,30,19,0.0 +12910,74,10,42,0.0 +12910,77,13,39,0.0 +12910,43,46,3,0.0 +12910,67,14,42,0.0 +12910,73,15,14,0.0 +12910,6,25,16,0.0 +12910,19,9.2,8,0.0 +12910,58,13.25,10,0.0 +12910,59,55,49,0.0 +12910,64,33.25,12,0.0 +12910,14,23.25,6,0.0 +12910,10,31,7,0.0 +12911,50,16.25,50,0.0 +12911,61,28.5,35,0.0 +12911,59,55,28,0.0 +12911,42,14,30,0.0 +12911,65,21.05,23,0.0 +12911,56,38,1,0.0 +12911,3,10,3,0.0 +12911,8,40,48,0.0 +12911,54,7.45,17,0.0 +12911,26,31.23,7,0.0 +12911,30,25.89,7,0.0 +12911,60,34,33,0.0 +12911,43,46,46,0.0 +12911,34,14,2,0.0 +12911,53,32.8,34,0.0 +12911,5,21.35,18,0.0 +12911,52,7,23,0.0 +12911,39,18,42,0.0 +12911,35,18,33,0.0 +12911,19,9.2,44,0.0 +12911,17,39,35,0.0 +12911,47,9.5,25,0.0 +12911,57,19.5,28,0.0 +12911,33,2.5,29,0.0 +12911,9,97,18,0.0 +12911,46,12,22,0.0 +12911,1,18,19,0.0 +12911,31,12.5,24,0.0 +12911,24,4.5,12,0.0 +12911,44,19.45,41,0.0 +12911,75,7.75,25,0.0 +12911,38,263.5,30,0.0 +12911,49,20,11,0.0 +12911,51,53,40,0.0 +12911,20,81,33,0.0 +12911,27,43.9,13,0.0 +12911,40,18.4,33,0.0 +12911,55,24,4,0.0 +12911,2,19,43,0.0 +12911,10,31,43,0.0 +12911,21,10,45,0.0 +12911,77,13,3,0.0 +12911,36,19,4,0.0 +12911,66,17,31,0.0 +12911,29,123.79,49,0.0 +12911,4,22,1,0.0 +12911,74,10,33,0.0 +12911,73,15,26,0.0 +12911,76,18,15,0.0 +12911,7,30,43,0.0 +12911,11,21,18,0.0 +12911,16,17.45,2,0.0 +12911,28,45.6,23,0.0 +12912,4,22,4,0.0 +12912,30,25.89,39,0.0 +12912,5,21.35,39,0.0 +12912,76,18,36,0.0 +12912,53,32.8,40,0.0 +12912,8,40,30,0.0 +12912,41,9.65,27,0.0 +12912,62,49.3,25,0.0 +12912,1,18,5,0.0 +12912,15,15.5,24,0.0 +12912,66,17,10,0.0 +12912,47,9.5,8,0.0 +12912,56,38,13,0.0 +12912,61,28.5,21,0.0 +12912,17,39,34,0.0 +12912,43,46,43,0.0 +12912,55,24,4,0.0 +12912,72,34.8,13,0.0 +12912,39,18,32,0.0 +12912,2,19,42,0.0 +12912,33,2.5,6,0.0 +12912,50,16.25,7,0.0 +12912,40,18.4,3,0.0 +12912,23,9,1,0.0 +12912,63,43.9,42,0.0 +12912,48,12.75,49,0.0 +12912,44,19.45,43,0.0 +12912,68,12.5,25,0.0 +12912,38,263.5,32,0.0 +12912,19,9.2,1,0.0 +12912,45,9.5,6,0.0 +12912,11,21,17,0.0 +12912,64,33.25,34,0.0 +12912,18,62.5,44,0.0 +12912,28,45.6,26,0.0 +12912,7,30,9,0.0 +12912,74,10,43,0.0 +12912,59,55,23,0.0 +12912,69,36,39,0.0 +12912,71,21.5,23,0.0 +12912,70,15,26,0.0 +12912,36,19,42,0.0 +12912,49,20,5,0.0 +12912,26,31.23,4,0.0 +12912,32,32,43,0.0 +12912,20,81,37,0.0 +12912,13,6,26,0.0 +12912,10,31,7,0.0 +12912,77,13,31,0.0 +12912,60,34,47,0.0 +12912,31,12.5,48,0.0 +12912,3,10,18,0.0 +12912,42,14,24,0.0 +12912,73,15,45,0.0 +12912,29,123.79,13,0.0 +12912,67,14,18,0.0 +12912,57,19.5,46,0.0 +12912,54,7.45,11,0.0 +12912,58,13.25,10,0.0 +12912,9,97,45,0.0 +12912,52,7,39,0.0 +12912,35,18,47,0.0 +12912,75,7.75,47,0.0 +12912,6,25,14,0.0 +12912,12,38,2,0.0 +12912,22,21,2,0.0 +12912,24,4.5,37,0.0 +12912,37,26,20,0.0 +12912,21,10,3,0.0 +12912,46,12,4,0.0 +12912,34,14,41,0.0 +12912,14,23.25,45,0.0 +12912,27,43.9,11,0.0 +12912,65,21.05,42,0.0 +12913,39,18,30,0.0 +12913,58,13.25,9,0.0 +12913,9,97,12,0.0 +12913,52,7,41,0.0 +12913,59,55,18,0.0 +12913,44,19.45,43,0.0 +12913,47,9.5,39,0.0 +12913,26,31.23,45,0.0 +12914,16,17.45,21,0.0 +12914,25,14,46,0.0 +12914,28,45.6,40,0.0 +12914,47,9.5,10,0.0 +12914,39,18,33,0.0 +12914,20,81,28,0.0 +12914,22,21,29,0.0 +12914,27,43.9,1,0.0 +12914,19,9.2,11,0.0 +12914,61,28.5,8,0.0 +12914,2,19,40,0.0 +12914,23,9,34,0.0 +12914,64,33.25,49,0.0 +12914,71,21.5,1,0.0 +12914,60,34,31,0.0 +12914,67,14,24,0.0 +12914,11,21,25,0.0 +12914,46,12,1,0.0 +12914,24,4.5,44,0.0 +12914,55,24,47,0.0 +12914,29,123.79,28,0.0 +12914,62,49.3,24,0.0 +12914,34,14,34,0.0 +12914,38,263.5,13,0.0 +12914,7,30,48,0.0 +12914,54,7.45,41,0.0 +12914,1,18,46,0.0 +12914,51,53,20,0.0 +12914,13,6,15,0.0 +12914,69,36,1,0.0 +12914,15,15.5,35,0.0 +12914,76,18,47,0.0 +12914,5,21.35,43,0.0 +12914,14,23.25,24,0.0 +12914,70,15,23,0.0 +12914,77,13,41,0.0 +12914,66,17,8,0.0 +12914,10,31,35,0.0 +12914,8,40,8,0.0 +12914,56,38,41,0.0 +12914,68,12.5,21,0.0 +12914,3,10,30,0.0 +12914,58,13.25,35,0.0 +12914,9,97,24,0.0 +12914,31,12.5,50,0.0 +12914,18,62.5,8,0.0 +12914,50,16.25,41,0.0 +12914,44,19.45,46,0.0 +12914,45,9.5,37,0.0 +12914,59,55,4,0.0 +12914,63,43.9,32,0.0 +12914,26,31.23,3,0.0 +12914,48,12.75,7,0.0 +12914,4,22,32,0.0 +12914,75,7.75,15,0.0 +12914,43,46,2,0.0 +12915,58,13.25,17,0.0 +12915,19,9.2,36,0.0 +12915,67,14,25,0.0 +12915,66,17,32,0.0 +12915,31,12.5,35,0.0 +12915,24,4.5,44,0.0 +12915,22,21,23,0.0 +12915,21,10,20,0.0 +12915,32,32,44,0.0 +12915,6,25,28,0.0 +12915,77,13,33,0.0 +12915,26,31.23,13,0.0 +12915,39,18,8,0.0 +12915,30,25.89,2,0.0 +12915,61,28.5,6,0.0 +12915,47,9.5,8,0.0 +12915,12,38,34,0.0 +12915,40,18.4,49,0.0 +12915,7,30,23,0.0 +12915,25,14,14,0.0 +12915,38,263.5,28,0.0 +12915,17,39,43,0.0 +12915,65,21.05,41,0.0 +12915,44,19.45,46,0.0 +12915,14,23.25,37,0.0 +12915,35,18,20,0.0 +12915,37,26,42,0.0 +12915,48,12.75,12,0.0 +12915,76,18,3,0.0 +12915,53,32.8,31,0.0 +12915,13,6,4,0.0 +12915,59,55,42,0.0 +12915,72,34.8,32,0.0 +12915,28,45.6,37,0.0 +12915,10,31,21,0.0 +12915,71,21.5,49,0.0 +12915,18,62.5,35,0.0 +12915,5,21.35,7,0.0 +12915,23,9,29,0.0 +12915,54,7.45,14,0.0 +12915,50,16.25,3,0.0 +12915,55,24,39,0.0 +12915,4,22,25,0.0 +12915,45,9.5,19,0.0 +12915,29,123.79,38,0.0 +12915,68,12.5,3,0.0 +12915,36,19,40,0.0 +12915,33,2.5,4,0.0 +12915,60,34,29,0.0 +12915,41,9.65,25,0.0 +12915,46,12,7,0.0 +12915,49,20,6,0.0 +12915,2,19,45,0.0 +12915,15,15.5,10,0.0 +12915,3,10,45,0.0 +12915,52,7,23,0.0 +12915,9,97,43,0.0 +12915,8,40,44,0.0 +12915,75,7.75,24,0.0 +12915,11,21,19,0.0 +12915,62,49.3,7,0.0 +12915,70,15,21,0.0 +12915,16,17.45,28,0.0 +12915,74,10,5,0.0 +12915,56,38,39,0.0 +12915,51,53,46,0.0 +12915,43,46,6,0.0 +12915,64,33.25,13,0.0 +12915,27,43.9,24,0.0 +12915,34,14,23,0.0 +12915,42,14,23,0.0 +12915,20,81,21,0.0 +12915,1,18,27,0.0 +12915,57,19.5,22,0.0 +12915,73,15,27,0.0 +12915,63,43.9,6,0.0 +12915,69,36,25,0.0 +12916,43,46,50,0.0 +12916,21,10,22,0.0 +12916,6,25,24,0.0 +12916,33,2.5,30,0.0 +12916,44,19.45,8,0.0 +12916,23,9,44,0.0 +12916,28,45.6,27,0.0 +12916,30,25.89,2,0.0 +12916,40,18.4,45,0.0 +12916,7,30,8,0.0 +12916,34,14,7,0.0 +12916,69,36,11,0.0 +12916,59,55,1,0.0 +12916,22,21,6,0.0 +12916,73,15,28,0.0 +12916,67,14,8,0.0 +12916,5,21.35,34,0.0 +12916,38,263.5,31,0.0 +12916,50,16.25,42,0.0 +12916,62,49.3,49,0.0 +12916,74,10,44,0.0 +12916,25,14,50,0.0 +12916,60,34,11,0.0 +12916,29,123.79,35,0.0 +12916,41,9.65,17,0.0 +12916,8,40,27,0.0 +12916,72,34.8,19,0.0 +12916,70,15,35,0.0 +12916,66,17,28,0.0 +12916,32,32,50,0.0 +12916,18,62.5,13,0.0 +12916,1,18,25,0.0 +12916,14,23.25,15,0.0 +12916,39,18,11,0.0 +12916,19,9.2,35,0.0 +12916,37,26,34,0.0 +12916,36,19,20,0.0 +12916,64,33.25,36,0.0 +12916,56,38,31,0.0 +12916,51,53,44,0.0 +12916,55,24,34,0.0 +12916,63,43.9,3,0.0 +12916,13,6,43,0.0 +12916,2,19,21,0.0 +12916,61,28.5,29,0.0 +12916,17,39,49,0.0 +12916,57,19.5,48,0.0 +12916,47,9.5,10,0.0 +12916,76,18,6,0.0 +12916,4,22,28,0.0 +12916,45,9.5,39,0.0 +12917,63,43.9,27,0.0 +12917,39,18,21,0.0 +12917,7,30,46,0.0 +12917,55,24,45,0.0 +12917,42,14,8,0.0 +12917,65,21.05,31,0.0 +12917,70,15,34,0.0 +12917,44,19.45,19,0.0 +12917,9,97,3,0.0 +12917,13,6,9,0.0 +12917,46,12,3,0.0 +12917,40,18.4,8,0.0 +12917,30,25.89,35,0.0 +12917,33,2.5,31,0.0 +12917,24,4.5,18,0.0 +12917,8,40,17,0.0 +12917,75,7.75,2,0.0 +12917,12,38,9,0.0 +12917,2,19,11,0.0 +12917,10,31,47,0.0 +12917,19,9.2,44,0.0 +12917,29,123.79,7,0.0 +12917,14,23.25,28,0.0 +12917,50,16.25,49,0.0 +12917,34,14,44,0.0 +12917,58,13.25,9,0.0 +12917,49,20,18,0.0 +12917,28,45.6,46,0.0 +12917,38,263.5,7,0.0 +12917,27,43.9,9,0.0 +12917,48,12.75,5,0.0 +12917,54,7.45,19,0.0 +12917,31,12.5,49,0.0 +12917,45,9.5,41,0.0 +12917,77,13,50,0.0 +12917,71,21.5,4,0.0 +12917,16,17.45,12,0.0 +12917,41,9.65,36,0.0 +12917,56,38,28,0.0 +12917,32,32,33,0.0 +12917,36,19,34,0.0 +12917,3,10,31,0.0 +12917,59,55,18,0.0 +12917,61,28.5,43,0.0 +12917,62,49.3,17,0.0 +12917,21,10,45,0.0 +12917,67,14,39,0.0 +12917,64,33.25,36,0.0 +12917,4,22,49,0.0 +12917,51,53,38,0.0 +12917,23,9,6,0.0 +12917,57,19.5,40,0.0 +12917,11,21,10,0.0 +12917,76,18,9,0.0 +12917,73,15,41,0.0 +12917,47,9.5,12,0.0 +12917,15,15.5,38,0.0 +12917,22,21,5,0.0 +12917,5,21.35,28,0.0 +12917,53,32.8,6,0.0 +12917,43,46,32,0.0 +12917,25,14,43,0.0 +12917,18,62.5,5,0.0 +12917,37,26,46,0.0 +12917,17,39,46,0.0 +12917,74,10,21,0.0 +12917,52,7,32,0.0 +12917,69,36,16,0.0 +12918,40,18.4,28,0.0 +12918,1,18,4,0.0 +12918,13,6,43,0.0 +12918,4,22,40,0.0 +12918,32,32,46,0.0 +12918,37,26,10,0.0 +12918,53,32.8,47,0.0 +12918,72,34.8,15,0.0 +12918,67,14,29,0.0 +12918,66,17,49,0.0 +12918,59,55,42,0.0 +12918,12,38,44,0.0 +12918,61,28.5,18,0.0 +12918,3,10,1,0.0 +12918,15,15.5,6,0.0 +12918,18,62.5,43,0.0 +12918,36,19,30,0.0 +12918,19,9.2,41,0.0 +12918,10,31,28,0.0 +12918,28,45.6,46,0.0 +12918,34,14,38,0.0 +12918,55,24,17,0.0 +12918,46,12,37,0.0 +12918,63,43.9,23,0.0 +12918,22,21,28,0.0 +12918,20,81,2,0.0 +12918,69,36,4,0.0 +12918,21,10,20,0.0 +12918,17,39,36,0.0 +12918,51,53,15,0.0 +12918,35,18,36,0.0 +12918,65,21.05,49,0.0 +12918,47,9.5,23,0.0 +12918,24,4.5,36,0.0 +12918,68,12.5,31,0.0 +12918,54,7.45,29,0.0 +12918,27,43.9,11,0.0 +12918,49,20,42,0.0 +12918,6,25,18,0.0 +12918,73,15,25,0.0 +12918,75,7.75,23,0.0 +12918,74,10,46,0.0 +12918,14,23.25,11,0.0 +12919,72,34.8,14,0.0 +12919,60,34,38,0.0 +12919,52,7,19,0.0 +12919,47,9.5,28,0.0 +12919,71,21.5,13,0.0 +12919,51,53,13,0.0 +12919,22,21,35,0.0 +12919,11,21,48,0.0 +12919,74,10,20,0.0 +12919,33,2.5,29,0.0 +12919,14,23.25,17,0.0 +12919,50,16.25,3,0.0 +12919,4,22,31,0.0 +12919,39,18,25,0.0 +12919,67,14,40,0.0 +12919,8,40,49,0.0 +12919,77,13,32,0.0 +12919,34,14,11,0.0 +12919,26,31.23,40,0.0 +12919,69,36,43,0.0 +12919,18,62.5,16,0.0 +12919,55,24,50,0.0 +12919,45,9.5,49,0.0 +12919,68,12.5,38,0.0 +12919,23,9,39,0.0 +12919,42,14,27,0.0 +12920,63,43.9,35,0.0 +12920,46,12,16,0.0 +12920,23,9,17,0.0 +12920,5,21.35,17,0.0 +12920,54,7.45,31,0.0 +12920,22,21,27,0.0 +12920,77,13,12,0.0 +12920,47,9.5,42,0.0 +12920,66,17,18,0.0 +12920,45,9.5,37,0.0 +12920,6,25,34,0.0 +12920,30,25.89,18,0.0 +12920,18,62.5,43,0.0 +12920,71,21.5,46,0.0 +12920,62,49.3,38,0.0 +12920,35,18,44,0.0 +12920,21,10,4,0.0 +12920,29,123.79,1,0.0 +12920,50,16.25,50,0.0 +12920,74,10,5,0.0 +12920,3,10,5,0.0 +12920,11,21,2,0.0 +12920,69,36,9,0.0 +12920,34,14,2,0.0 +12920,65,21.05,15,0.0 +12920,37,26,7,0.0 +12920,58,13.25,27,0.0 +12920,2,19,4,0.0 +12920,57,19.5,31,0.0 +12920,55,24,21,0.0 +12920,61,28.5,21,0.0 +12920,73,15,11,0.0 +12920,13,6,22,0.0 +12920,67,14,32,0.0 +12921,19,9.2,21,0.0 +12921,51,53,43,0.0 +12921,1,18,24,0.0 +12922,69,36,34,0.0 +12922,3,10,37,0.0 +12922,61,28.5,5,0.0 +12922,19,9.2,23,0.0 +12922,62,49.3,14,0.0 +12922,18,62.5,8,0.0 +12922,31,12.5,28,0.0 +12922,75,7.75,29,0.0 +12922,9,97,44,0.0 +12922,46,12,35,0.0 +12922,34,14,38,0.0 +12922,43,46,3,0.0 +12922,32,32,6,0.0 +12922,68,12.5,2,0.0 +12922,37,26,49,0.0 +12922,13,6,46,0.0 +12922,77,13,29,0.0 +12922,11,21,29,0.0 +12922,16,17.45,21,0.0 +12922,2,19,39,0.0 +12922,73,15,31,0.0 +12922,53,32.8,44,0.0 +12922,58,13.25,26,0.0 +12922,30,25.89,30,0.0 +12922,50,16.25,27,0.0 +12922,41,9.65,29,0.0 +12922,5,21.35,2,0.0 +12922,1,18,16,0.0 +12922,15,15.5,22,0.0 +12922,17,39,29,0.0 +12922,47,9.5,2,0.0 +12922,39,18,9,0.0 +12922,51,53,14,0.0 +12922,24,4.5,19,0.0 +12922,12,38,10,0.0 +12922,67,14,41,0.0 +12922,63,43.9,23,0.0 +12922,42,14,22,0.0 +12922,74,10,33,0.0 +12922,4,22,32,0.0 +12922,10,31,34,0.0 +12922,28,45.6,30,0.0 +12922,44,19.45,22,0.0 +12922,60,34,39,0.0 +12922,33,2.5,2,0.0 +12922,64,33.25,38,0.0 +12922,7,30,11,0.0 +12922,55,24,22,0.0 +12922,26,31.23,21,0.0 +12922,36,19,21,0.0 +12922,27,43.9,40,0.0 +12922,6,25,34,0.0 +12922,66,17,1,0.0 +12922,45,9.5,11,0.0 +12922,71,21.5,37,0.0 +12922,40,18.4,7,0.0 +12922,23,9,39,0.0 +12922,14,23.25,35,0.0 +12922,54,7.45,13,0.0 +12922,59,55,49,0.0 +12922,76,18,5,0.0 +12922,38,263.5,50,0.0 +12922,35,18,24,0.0 +12922,20,81,43,0.0 +12922,49,20,30,0.0 +12922,8,40,21,0.0 +12922,56,38,25,0.0 +12922,57,19.5,14,0.0 +12922,72,34.8,21,0.0 +12922,25,14,41,0.0 +12923,13,6,45,0.0 +12923,32,32,25,0.0 +12923,54,7.45,47,0.0 +12923,47,9.5,15,0.0 +12923,65,21.05,22,0.0 +12923,15,15.5,27,0.0 +12923,39,18,47,0.0 +12923,52,7,37,0.0 +12923,30,25.89,48,0.0 +12923,70,15,29,0.0 +12923,50,16.25,39,0.0 +12923,10,31,5,0.0 +12923,18,62.5,9,0.0 +12923,22,21,27,0.0 +12923,64,33.25,17,0.0 +12923,42,14,49,0.0 +12923,55,24,33,0.0 +12923,4,22,10,0.0 +12923,23,9,14,0.0 +12923,31,12.5,14,0.0 +12923,69,36,43,0.0 +12923,60,34,1,0.0 +12923,66,17,28,0.0 +12923,35,18,31,0.0 +12923,63,43.9,50,0.0 +12923,16,17.45,20,0.0 +12923,62,49.3,39,0.0 +12923,68,12.5,33,0.0 +12923,73,15,25,0.0 +12923,75,7.75,22,0.0 +12923,44,19.45,49,0.0 +12923,61,28.5,3,0.0 +12923,8,40,9,0.0 +12923,76,18,41,0.0 +12923,19,9.2,3,0.0 +12923,24,4.5,46,0.0 +12923,37,26,8,0.0 +12923,46,12,18,0.0 +12923,53,32.8,37,0.0 +12923,9,97,30,0.0 +12923,74,10,48,0.0 +12923,34,14,39,0.0 +12923,58,13.25,10,0.0 +12923,26,31.23,30,0.0 +12923,17,39,25,0.0 +12923,7,30,46,0.0 +12923,49,20,3,0.0 +12923,6,25,20,0.0 +12923,38,263.5,9,0.0 +12924,74,10,10,0.0 +12924,20,81,29,0.0 +12924,26,31.23,50,0.0 +12924,65,21.05,32,0.0 +12924,59,55,25,0.0 +12924,71,21.5,25,0.0 +12924,6,25,47,0.0 +12924,13,6,18,0.0 +12924,35,18,34,0.0 +12924,21,10,28,0.0 +12924,76,18,37,0.0 +12924,24,4.5,26,0.0 +12924,40,18.4,1,0.0 +12924,22,21,44,0.0 +12924,57,19.5,7,0.0 +12924,39,18,6,0.0 +12924,34,14,40,0.0 +12924,19,9.2,46,0.0 +12924,16,17.45,44,0.0 +12924,52,7,26,0.0 +12924,46,12,47,0.0 +12924,5,21.35,46,0.0 +12924,23,9,10,0.0 +12924,72,34.8,14,0.0 +12924,68,12.5,19,0.0 +12924,67,14,36,0.0 +12924,47,9.5,43,0.0 +12924,36,19,46,0.0 +12924,77,13,7,0.0 +12924,15,15.5,12,0.0 +12924,27,43.9,48,0.0 +12924,7,30,9,0.0 +12924,61,28.5,17,0.0 +12924,41,9.65,37,0.0 +12924,63,43.9,46,0.0 +12924,42,14,47,0.0 +12924,10,31,46,0.0 +12924,32,32,30,0.0 +12924,3,10,25,0.0 +12924,58,13.25,29,0.0 +12924,43,46,8,0.0 +12924,37,26,17,0.0 +12924,48,12.75,5,0.0 +12924,56,38,17,0.0 +12924,45,9.5,38,0.0 +12924,62,49.3,49,0.0 +12924,50,16.25,17,0.0 +12924,54,7.45,3,0.0 +12924,2,19,24,0.0 +12924,11,21,40,0.0 +12924,55,24,47,0.0 +12924,25,14,23,0.0 +12924,64,33.25,36,0.0 +12924,29,123.79,13,0.0 +12924,44,19.45,20,0.0 +12925,51,53,34,0.0 +12925,57,19.5,15,0.0 +12925,39,18,23,0.0 +12925,2,19,41,0.0 +12925,17,39,21,0.0 +12925,28,45.6,11,0.0 +12925,7,30,31,0.0 +12925,68,12.5,5,0.0 +12925,34,14,40,0.0 +12925,53,32.8,24,0.0 +12925,22,21,47,0.0 +12925,62,49.3,10,0.0 +12925,38,263.5,12,0.0 +12925,72,34.8,49,0.0 +12925,69,36,43,0.0 +12925,21,10,4,0.0 +12925,32,32,50,0.0 +12925,23,9,34,0.0 +12925,54,7.45,36,0.0 +12925,5,21.35,8,0.0 +12925,47,9.5,41,0.0 +12925,13,6,12,0.0 +12925,70,15,9,0.0 +12925,30,25.89,34,0.0 +12925,75,7.75,26,0.0 +12925,3,10,1,0.0 +12925,49,20,29,0.0 +12925,36,19,48,0.0 +12925,55,24,32,0.0 +12925,58,13.25,49,0.0 +12925,45,9.5,26,0.0 +12925,6,25,49,0.0 +12925,56,38,39,0.0 +12925,67,14,17,0.0 +12926,60,34,7,0.0 +12926,17,39,3,0.0 +12926,46,12,48,0.0 +12926,16,17.45,25,0.0 +12926,19,9.2,27,0.0 +12926,12,38,31,0.0 +12926,53,32.8,38,0.0 +12926,10,31,16,0.0 +12926,14,23.25,50,0.0 +12926,31,12.5,32,0.0 +12927,75,7.75,46,0.0 +12927,59,55,16,0.0 +12927,58,13.25,31,0.0 +12927,20,81,41,0.0 +12927,49,20,15,0.0 +12927,64,33.25,38,0.0 +12927,21,10,15,0.0 +12927,24,4.5,22,0.0 +12927,16,17.45,13,0.0 +12927,61,28.5,20,0.0 +12927,72,34.8,17,0.0 +12927,42,14,42,0.0 +12927,8,40,41,0.0 +12927,19,9.2,25,0.0 +12927,48,12.75,36,0.0 +12927,63,43.9,45,0.0 +12927,11,21,34,0.0 +12927,6,25,3,0.0 +12927,10,31,42,0.0 +12927,29,123.79,18,0.0 +12927,46,12,43,0.0 +12927,38,263.5,15,0.0 +12927,34,14,34,0.0 +12927,4,22,20,0.0 +12927,2,19,43,0.0 +12927,1,18,29,0.0 +12927,67,14,44,0.0 +12927,36,19,46,0.0 +12927,56,38,48,0.0 +12927,35,18,36,0.0 +12927,3,10,33,0.0 +12927,22,21,33,0.0 +12927,7,30,29,0.0 +12927,40,18.4,5,0.0 +12927,14,23.25,4,0.0 +12927,70,15,47,0.0 +12927,31,12.5,14,0.0 +12927,66,17,8,0.0 +12927,76,18,6,0.0 +12927,32,32,3,0.0 +12927,26,31.23,17,0.0 +12927,71,21.5,42,0.0 +12927,68,12.5,39,0.0 +12927,62,49.3,46,0.0 +12928,62,49.3,2,0.0 +12928,2,19,48,0.0 +12928,44,19.45,33,0.0 +12928,28,45.6,9,0.0 +12928,56,38,15,0.0 +12928,37,26,2,0.0 +12928,64,33.25,31,0.0 +12928,68,12.5,11,0.0 +12928,75,7.75,16,0.0 +12929,57,19.5,10,0.0 +12929,9,97,25,0.0 +12929,42,14,29,0.0 +12929,10,31,10,0.0 +12929,2,19,32,0.0 +12929,44,19.45,23,0.0 +12929,77,13,19,0.0 +12929,11,21,48,0.0 +12929,36,19,17,0.0 +12929,67,14,32,0.0 +12929,16,17.45,22,0.0 +12929,13,6,41,0.0 +12929,6,25,11,0.0 +12929,40,18.4,14,0.0 +12929,74,10,37,0.0 +12929,21,10,45,0.0 +12929,47,9.5,2,0.0 +12929,51,53,17,0.0 +12929,43,46,45,0.0 +12929,3,10,30,0.0 +12929,8,40,10,0.0 +12929,41,9.65,22,0.0 +12929,71,21.5,20,0.0 +12929,31,12.5,4,0.0 +12929,37,26,40,0.0 +12929,27,43.9,38,0.0 +12929,19,9.2,32,0.0 +12929,20,81,50,0.0 +12929,32,32,3,0.0 +12929,54,7.45,16,0.0 +12929,35,18,9,0.0 +12929,24,4.5,15,0.0 +12929,69,36,26,0.0 +12929,60,34,25,0.0 +12929,33,2.5,40,0.0 +12929,58,13.25,26,0.0 +12929,70,15,21,0.0 +12929,56,38,46,0.0 +12929,26,31.23,22,0.0 +12929,29,123.79,1,0.0 +12929,50,16.25,25,0.0 +12929,18,62.5,39,0.0 +12929,76,18,39,0.0 +12929,22,21,28,0.0 +12929,52,7,48,0.0 +12929,46,12,23,0.0 +12929,23,9,10,0.0 +12929,55,24,20,0.0 +12929,48,12.75,24,0.0 +12929,59,55,11,0.0 +12929,64,33.25,25,0.0 +12929,63,43.9,21,0.0 +12929,7,30,1,0.0 +12929,17,39,17,0.0 +12929,39,18,50,0.0 +12929,73,15,21,0.0 +12929,28,45.6,30,0.0 +12929,66,17,25,0.0 +12929,5,21.35,49,0.0 +12929,45,9.5,37,0.0 +12929,15,15.5,12,0.0 +12929,4,22,9,0.0 +12929,34,14,3,0.0 +12929,14,23.25,48,0.0 +12929,1,18,6,0.0 +12929,53,32.8,45,0.0 +12929,25,14,2,0.0 +12929,72,34.8,30,0.0 +12929,75,7.75,36,0.0 +12929,30,25.89,14,0.0 +12929,12,38,35,0.0 +12929,62,49.3,26,0.0 +12929,68,12.5,10,0.0 +12929,38,263.5,22,0.0 +12929,61,28.5,27,0.0 +12929,65,21.05,4,0.0 +12929,49,20,19,0.0 +12930,50,16.25,4,0.0 +12930,17,39,10,0.0 +12930,23,9,8,0.0 +12930,24,4.5,33,0.0 +12930,44,19.45,50,0.0 +12930,16,17.45,17,0.0 +12930,48,12.75,19,0.0 +12930,63,43.9,5,0.0 +12930,42,14,22,0.0 +12930,34,14,8,0.0 +12930,58,13.25,30,0.0 +12930,37,26,9,0.0 +12930,36,19,47,0.0 +12930,9,97,10,0.0 +12930,11,21,7,0.0 +12930,46,12,1,0.0 +12930,38,263.5,29,0.0 +12930,57,19.5,48,0.0 +12930,59,55,2,0.0 +12930,76,18,2,0.0 +12930,61,28.5,27,0.0 +12930,67,14,16,0.0 +12930,27,43.9,43,0.0 +12930,64,33.25,30,0.0 +12930,31,12.5,40,0.0 +12930,68,12.5,27,0.0 +12930,20,81,17,0.0 +12930,15,15.5,34,0.0 +12930,45,9.5,36,0.0 +12930,28,45.6,10,0.0 +12930,2,19,8,0.0 +12930,73,15,33,0.0 +12930,40,18.4,29,0.0 +12930,32,32,10,0.0 +12930,39,18,13,0.0 +12930,65,21.05,41,0.0 +12930,55,24,36,0.0 +12930,41,9.65,23,0.0 +12930,26,31.23,39,0.0 +12930,25,14,6,0.0 +12930,43,46,9,0.0 +12930,35,18,20,0.0 +12931,66,17,29,0.0 +12931,51,53,24,0.0 +12931,25,14,23,0.0 +12931,24,4.5,29,0.0 +12931,15,15.5,49,0.0 +12931,26,31.23,21,0.0 +12931,7,30,15,0.0 +12931,20,81,31,0.0 +12931,34,14,17,0.0 +12931,63,43.9,26,0.0 +12932,56,38,30,0.0 +12932,67,14,13,0.0 +12932,76,18,12,0.0 +12932,23,9,17,0.0 +12932,51,53,6,0.0 +12932,74,10,28,0.0 +12932,69,36,26,0.0 +12932,26,31.23,2,0.0 +12932,38,263.5,8,0.0 +12932,8,40,12,0.0 +12932,12,38,16,0.0 +12932,42,14,19,0.0 +12932,77,13,19,0.0 +12932,60,34,41,0.0 +12932,18,62.5,44,0.0 +12932,57,19.5,34,0.0 +12932,9,97,33,0.0 +12933,4,22,50,0.0 +12933,64,33.25,46,0.0 +12933,20,81,15,0.0 +12933,72,34.8,35,0.0 +12933,71,21.5,46,0.0 +12933,65,21.05,4,0.0 +12933,18,62.5,33,0.0 +12933,11,21,12,0.0 +12933,19,9.2,19,0.0 +12933,10,31,38,0.0 +12933,23,9,46,0.0 +12933,67,14,28,0.0 +12933,9,97,30,0.0 +12933,47,9.5,10,0.0 +12933,61,28.5,25,0.0 +12933,29,123.79,21,0.0 +12933,21,10,41,0.0 +12933,26,31.23,6,0.0 +12933,15,15.5,31,0.0 +12933,62,49.3,5,0.0 +12933,5,21.35,39,0.0 +12933,16,17.45,39,0.0 +12933,53,32.8,24,0.0 +12933,74,10,9,0.0 +12933,49,20,38,0.0 +12933,39,18,50,0.0 +12933,35,18,30,0.0 +12933,58,13.25,39,0.0 +12933,28,45.6,28,0.0 +12933,60,34,31,0.0 +12933,6,25,46,0.0 +12933,70,15,3,0.0 +12933,3,10,42,0.0 +12933,17,39,28,0.0 +12933,63,43.9,12,0.0 +12933,44,19.45,2,0.0 +12933,56,38,24,0.0 +12933,30,25.89,2,0.0 +12933,59,55,1,0.0 +12933,48,12.75,49,0.0 +12933,66,17,12,0.0 +12933,14,23.25,39,0.0 +12933,68,12.5,12,0.0 +12933,27,43.9,17,0.0 +12933,69,36,15,0.0 +12933,76,18,17,0.0 +12933,50,16.25,43,0.0 +12933,33,2.5,10,0.0 +12933,52,7,11,0.0 +12933,46,12,31,0.0 +12933,51,53,18,0.0 +12933,57,19.5,22,0.0 +12933,55,24,45,0.0 +12933,40,18.4,10,0.0 +12933,24,4.5,48,0.0 +12933,37,26,13,0.0 +12933,31,12.5,44,0.0 +12933,13,6,18,0.0 +12933,1,18,33,0.0 +12933,22,21,22,0.0 +12933,75,7.75,37,0.0 +12933,2,19,15,0.0 +12933,36,19,11,0.0 +12933,73,15,26,0.0 +12933,43,46,2,0.0 +12933,54,7.45,28,0.0 +12933,45,9.5,9,0.0 +12933,7,30,20,0.0 +12933,12,38,29,0.0 +12933,77,13,26,0.0 +12933,38,263.5,23,0.0 +12933,8,40,24,0.0 +12933,32,32,48,0.0 +12933,34,14,29,0.0 +12933,25,14,18,0.0 +12933,42,14,8,0.0 +12933,41,9.65,42,0.0 +12934,63,43.9,24,0.0 +12934,13,6,26,0.0 +12934,69,36,46,0.0 +12934,2,19,3,0.0 +12934,73,15,22,0.0 +12934,33,2.5,18,0.0 +12934,53,32.8,3,0.0 +12934,52,7,36,0.0 +12934,3,10,34,0.0 +12934,40,18.4,38,0.0 +12934,57,19.5,13,0.0 +12934,58,13.25,20,0.0 +12934,12,38,21,0.0 +12934,6,25,17,0.0 +12934,19,9.2,17,0.0 +12934,66,17,42,0.0 +12934,8,40,46,0.0 +12934,10,31,37,0.0 +12934,50,16.25,14,0.0 +12934,36,19,2,0.0 +12934,71,21.5,34,0.0 +12934,27,43.9,44,0.0 +12934,5,21.35,13,0.0 +12934,1,18,22,0.0 +12934,38,263.5,4,0.0 +12934,67,14,37,0.0 +12934,41,9.65,23,0.0 +12934,9,97,7,0.0 +12934,32,32,38,0.0 +12934,24,4.5,13,0.0 +12934,60,34,31,0.0 +12934,20,81,41,0.0 +12934,26,31.23,47,0.0 +12934,76,18,14,0.0 +12934,47,9.5,47,0.0 +12934,14,23.25,15,0.0 +12934,17,39,19,0.0 +12934,18,62.5,36,0.0 +12934,74,10,5,0.0 +12934,34,14,8,0.0 +12934,77,13,7,0.0 +12934,11,21,28,0.0 +12934,23,9,36,0.0 +12934,49,20,28,0.0 +12934,4,22,17,0.0 +12934,44,19.45,25,0.0 +12934,70,15,17,0.0 +12934,43,46,48,0.0 +12934,72,34.8,1,0.0 +12934,22,21,11,0.0 +12934,75,7.75,43,0.0 +12934,29,123.79,13,0.0 +12934,45,9.5,16,0.0 +12934,16,17.45,36,0.0 +12934,28,45.6,15,0.0 +12934,30,25.89,46,0.0 +12934,62,49.3,22,0.0 +12934,21,10,45,0.0 +12935,39,18,7,0.0 +12935,71,21.5,49,0.0 +12935,30,25.89,20,0.0 +12935,60,34,34,0.0 +12935,56,38,27,0.0 +12935,55,24,43,0.0 +12935,6,25,9,0.0 +12935,53,32.8,5,0.0 +12935,26,31.23,11,0.0 +12935,37,26,28,0.0 +12935,65,21.05,46,0.0 +12935,27,43.9,21,0.0 +12935,32,32,42,0.0 +12935,38,263.5,2,0.0 +12935,8,40,45,0.0 +12935,14,23.25,17,0.0 +12935,40,18.4,37,0.0 +12935,77,13,36,0.0 +12935,76,18,34,0.0 +12935,48,12.75,37,0.0 +12935,58,13.25,21,0.0 +12935,17,39,44,0.0 +12935,45,9.5,28,0.0 +12935,44,19.45,29,0.0 +12935,18,62.5,41,0.0 +12935,2,19,21,0.0 +12935,16,17.45,45,0.0 +12935,36,19,42,0.0 +12935,67,14,46,0.0 +12935,10,31,28,0.0 +12935,46,12,22,0.0 +12936,25,14,41,0.0 +12936,19,9.2,34,0.0 +12936,31,12.5,12,0.0 +12936,9,97,27,0.0 +12936,72,34.8,4,0.0 +12936,48,12.75,23,0.0 +12936,56,38,32,0.0 +12936,22,21,13,0.0 +12936,75,7.75,14,0.0 +12936,67,14,39,0.0 +12936,28,45.6,42,0.0 +12936,49,20,49,0.0 +12936,50,16.25,42,0.0 +12936,41,9.65,18,0.0 +12936,5,21.35,32,0.0 +12936,71,21.5,48,0.0 +12936,77,13,18,0.0 +12937,35,18,36,0.0 +12937,9,97,7,0.0 +12937,11,21,8,0.0 +12937,76,18,18,0.0 +12937,44,19.45,23,0.0 +12937,63,43.9,50,0.0 +12937,17,39,15,0.0 +12937,65,21.05,1,0.0 +12937,59,55,20,0.0 +12937,43,46,49,0.0 +12937,26,31.23,29,0.0 +12937,60,34,10,0.0 +12937,23,9,35,0.0 +12937,77,13,48,0.0 +12937,10,31,6,0.0 +12937,4,22,36,0.0 +12937,7,30,29,0.0 +12937,48,12.75,35,0.0 +12937,21,10,41,0.0 +12937,74,10,8,0.0 +12937,52,7,18,0.0 +12937,75,7.75,38,0.0 +12937,68,12.5,12,0.0 +12937,47,9.5,40,0.0 +12937,34,14,37,0.0 +12937,25,14,44,0.0 +12937,38,263.5,25,0.0 +12937,18,62.5,37,0.0 +12937,66,17,21,0.0 +12937,54,7.45,11,0.0 +12937,14,23.25,35,0.0 +12937,16,17.45,14,0.0 +12937,2,19,21,0.0 +12937,27,43.9,15,0.0 +12937,36,19,24,0.0 +12937,41,9.65,47,0.0 +12937,56,38,14,0.0 +12937,57,19.5,5,0.0 +12937,50,16.25,32,0.0 +12937,3,10,16,0.0 +12937,42,14,40,0.0 +12937,64,33.25,14,0.0 +12937,8,40,2,0.0 +12937,70,15,5,0.0 +12937,6,25,24,0.0 +12937,19,9.2,18,0.0 +12937,32,32,14,0.0 +12937,20,81,49,0.0 +12937,15,15.5,37,0.0 +12937,61,28.5,3,0.0 +12937,33,2.5,35,0.0 +12937,29,123.79,39,0.0 +12937,49,20,9,0.0 +12937,1,18,37,0.0 +12937,72,34.8,2,0.0 +12937,31,12.5,29,0.0 +12937,62,49.3,35,0.0 +12937,69,36,17,0.0 +12937,24,4.5,42,0.0 +12937,13,6,23,0.0 +12937,39,18,26,0.0 +12937,37,26,48,0.0 +12937,22,21,34,0.0 +12937,67,14,5,0.0 +12938,70,15,14,0.0 +12939,63,43.9,8,0.0 +12939,3,10,4,0.0 +12939,39,18,44,0.0 +12939,20,81,29,0.0 +12939,36,19,39,0.0 +12939,26,31.23,23,0.0 +12939,71,21.5,22,0.0 +12939,69,36,25,0.0 +12939,15,15.5,19,0.0 +12939,28,45.6,50,0.0 +12939,77,13,36,0.0 +12939,62,49.3,50,0.0 +12939,38,263.5,27,0.0 +12939,40,18.4,36,0.0 +12939,59,55,44,0.0 +12939,14,23.25,12,0.0 +12939,73,15,2,0.0 +12939,72,34.8,31,0.0 +12939,6,25,23,0.0 +12939,66,17,5,0.0 +12939,45,9.5,47,0.0 +12939,10,31,38,0.0 +12939,35,18,3,0.0 +12939,4,22,14,0.0 +12939,37,26,4,0.0 +12939,30,25.89,34,0.0 +12939,76,18,27,0.0 +12939,50,16.25,17,0.0 +12939,55,24,6,0.0 +12939,61,28.5,44,0.0 +12939,51,53,34,0.0 +12939,23,9,2,0.0 +12939,56,38,12,0.0 +12939,32,32,10,0.0 +12939,42,14,12,0.0 +12939,17,39,13,0.0 +12939,41,9.65,48,0.0 +12939,7,30,14,0.0 +12939,67,14,35,0.0 +12939,12,38,18,0.0 +12939,68,12.5,13,0.0 +12939,60,34,47,0.0 +12939,27,43.9,42,0.0 +12939,18,62.5,27,0.0 +12939,46,12,1,0.0 +12939,31,12.5,29,0.0 +12939,24,4.5,1,0.0 +12939,48,12.75,18,0.0 +12939,49,20,46,0.0 +12939,57,19.5,48,0.0 +12939,19,9.2,45,0.0 +12939,75,7.75,4,0.0 +12939,22,21,25,0.0 +12939,1,18,28,0.0 +12940,14,23.25,41,0.0 +12940,17,39,32,0.0 +12940,54,7.45,9,0.0 +12940,44,19.45,31,0.0 +12940,61,28.5,10,0.0 +12941,25,14,15,0.0 +12941,13,6,39,0.0 +12941,8,40,27,0.0 +12941,18,62.5,41,0.0 +12941,9,97,33,0.0 +12941,26,31.23,25,0.0 +12941,35,18,17,0.0 +12941,69,36,49,0.0 +12941,16,17.45,50,0.0 +12941,36,19,44,0.0 +12941,62,49.3,11,0.0 +12941,53,32.8,15,0.0 +12941,57,19.5,38,0.0 +12941,15,15.5,35,0.0 +12941,70,15,2,0.0 +12941,39,18,49,0.0 +12941,61,28.5,33,0.0 +12941,56,38,49,0.0 +12941,34,14,37,0.0 +12941,64,33.25,18,0.0 +12941,6,25,39,0.0 +12941,11,21,7,0.0 +12941,65,21.05,3,0.0 +12941,22,21,4,0.0 +12941,12,38,12,0.0 +12941,63,43.9,39,0.0 +12941,74,10,49,0.0 +12941,45,9.5,49,0.0 +12941,73,15,45,0.0 +12941,10,31,13,0.0 +12941,5,21.35,17,0.0 +12941,76,18,40,0.0 +12941,68,12.5,44,0.0 +12941,41,9.65,49,0.0 +12941,75,7.75,32,0.0 +12941,19,9.2,22,0.0 +12941,20,81,46,0.0 +12941,51,53,44,0.0 +12941,42,14,37,0.0 +12941,71,21.5,19,0.0 +12941,50,16.25,37,0.0 +12941,46,12,39,0.0 +12941,2,19,1,0.0 +12942,66,17,21,0.0 +12942,56,38,41,0.0 +12942,30,25.89,22,0.0 +12942,38,263.5,27,0.0 +12942,21,10,48,0.0 +12943,75,7.75,10,0.0 +12943,26,31.23,29,0.0 +12943,32,32,14,0.0 +12943,19,9.2,6,0.0 +12943,45,9.5,36,0.0 +12943,49,20,29,0.0 +12943,12,38,18,0.0 +12943,60,34,49,0.0 +12943,46,12,4,0.0 +12943,2,19,2,0.0 +12943,15,15.5,10,0.0 +12943,69,36,17,0.0 +12943,44,19.45,36,0.0 +12943,61,28.5,32,0.0 +12943,53,32.8,48,0.0 +12943,41,9.65,44,0.0 +12944,39,18,34,0.0 +12944,14,23.25,47,0.0 +12944,62,49.3,25,0.0 +12944,42,14,26,0.0 +12944,18,62.5,8,0.0 +12944,56,38,38,0.0 +12944,28,45.6,2,0.0 +12944,31,12.5,31,0.0 +12944,25,14,39,0.0 +12944,50,16.25,35,0.0 +12944,11,21,36,0.0 +12944,63,43.9,13,0.0 +12944,38,263.5,41,0.0 +12944,77,13,15,0.0 +12944,69,36,34,0.0 +12944,30,25.89,4,0.0 +12944,61,28.5,4,0.0 +12944,8,40,37,0.0 +12944,75,7.75,13,0.0 +12944,46,12,2,0.0 +12944,66,17,38,0.0 +12944,2,19,21,0.0 +12944,12,38,26,0.0 +12944,21,10,44,0.0 +12944,72,34.8,1,0.0 +12944,9,97,9,0.0 +12944,1,18,44,0.0 +12944,70,15,3,0.0 +12944,22,21,1,0.0 +12944,51,53,2,0.0 +12944,3,10,27,0.0 +12944,32,32,37,0.0 +12944,23,9,34,0.0 +12944,34,14,18,0.0 +12944,45,9.5,14,0.0 +12944,4,22,2,0.0 +12944,71,21.5,29,0.0 +12944,37,26,21,0.0 +12944,10,31,33,0.0 +12944,13,6,22,0.0 +12944,47,9.5,40,0.0 +12944,36,19,35,0.0 +12944,65,21.05,48,0.0 +12944,74,10,31,0.0 +12944,41,9.65,27,0.0 +12944,17,39,14,0.0 +12944,52,7,6,0.0 +12944,73,15,40,0.0 +12944,15,15.5,45,0.0 +12944,44,19.45,26,0.0 +12944,60,34,21,0.0 +12944,54,7.45,1,0.0 +12944,48,12.75,46,0.0 +12944,59,55,1,0.0 +12944,67,14,14,0.0 +12944,43,46,23,0.0 +12944,58,13.25,29,0.0 +12944,53,32.8,6,0.0 +12944,33,2.5,40,0.0 +12944,5,21.35,13,0.0 +12944,26,31.23,19,0.0 +12944,55,24,15,0.0 +12944,64,33.25,44,0.0 +12944,76,18,26,0.0 +12944,6,25,6,0.0 +12944,57,19.5,15,0.0 +12944,29,123.79,34,0.0 +12944,7,30,13,0.0 +12944,24,4.5,5,0.0 +12944,49,20,16,0.0 +12944,35,18,38,0.0 +12944,20,81,20,0.0 +12944,16,17.45,35,0.0 +12944,68,12.5,48,0.0 +12945,33,2.5,16,0.0 +12945,57,19.5,22,0.0 +12945,48,12.75,3,0.0 +12945,44,19.45,13,0.0 +12945,41,9.65,39,0.0 +12945,75,7.75,8,0.0 +12945,6,25,40,0.0 +12945,3,10,29,0.0 +12945,56,38,39,0.0 +12945,53,32.8,28,0.0 +12945,28,45.6,14,0.0 +12945,22,21,2,0.0 +12945,40,18.4,15,0.0 +12945,13,6,45,0.0 +12945,38,263.5,18,0.0 +12945,34,14,10,0.0 +12945,29,123.79,29,0.0 +12945,35,18,30,0.0 +12945,65,21.05,49,0.0 +12945,25,14,5,0.0 +12945,27,43.9,37,0.0 +12945,21,10,40,0.0 +12945,64,33.25,23,0.0 +12945,68,12.5,37,0.0 +12945,70,15,28,0.0 +12945,46,12,14,0.0 +12945,72,34.8,1,0.0 +12945,7,30,15,0.0 +12945,5,21.35,3,0.0 +12945,45,9.5,50,0.0 +12945,30,25.89,3,0.0 +12945,47,9.5,28,0.0 +12945,60,34,28,0.0 +12945,4,22,23,0.0 +12945,9,97,21,0.0 +12945,55,24,49,0.0 +12945,26,31.23,25,0.0 +12945,59,55,5,0.0 +12945,69,36,34,0.0 +12945,74,10,50,0.0 +12945,71,21.5,14,0.0 +12945,31,12.5,42,0.0 +12945,73,15,23,0.0 +12946,27,43.9,20,0.0 +12946,25,14,12,0.0 +12946,8,40,34,0.0 +12946,37,26,6,0.0 +12946,9,97,31,0.0 +12946,65,21.05,37,0.0 +12946,70,15,13,0.0 +12946,63,43.9,18,0.0 +12946,32,32,40,0.0 +12946,57,19.5,11,0.0 +12946,30,25.89,7,0.0 +12946,55,24,10,0.0 +12946,71,21.5,47,0.0 +12946,47,9.5,5,0.0 +12946,13,6,46,0.0 +12946,7,30,18,0.0 +12946,15,15.5,19,0.0 +12946,2,19,10,0.0 +12946,28,45.6,8,0.0 +12946,75,7.75,10,0.0 +12946,66,17,1,0.0 +12946,36,19,13,0.0 +12946,12,38,37,0.0 +12946,20,81,25,0.0 +12946,16,17.45,42,0.0 +12946,40,18.4,47,0.0 +12946,4,22,6,0.0 +12946,59,55,30,0.0 +12946,18,62.5,39,0.0 +12946,39,18,3,0.0 +12946,60,34,47,0.0 +12946,6,25,11,0.0 +12946,14,23.25,1,0.0 +12946,22,21,30,0.0 +12946,73,15,47,0.0 +12946,23,9,46,0.0 +12946,26,31.23,22,0.0 +12946,67,14,22,0.0 +12946,42,14,33,0.0 +12946,29,123.79,32,0.0 +12946,38,263.5,37,0.0 +12946,77,13,13,0.0 +12946,56,38,7,0.0 +12946,17,39,26,0.0 +12946,54,7.45,48,0.0 +12946,21,10,41,0.0 +12946,5,21.35,17,0.0 +12946,76,18,8,0.0 +12947,9,97,39,0.0 +12947,37,26,22,0.0 +12947,33,2.5,15,0.0 +12947,20,81,17,0.0 +12947,18,62.5,42,0.0 +12947,49,20,8,0.0 +12947,55,24,50,0.0 +12947,45,9.5,17,0.0 +12947,2,19,24,0.0 +12947,10,31,41,0.0 +12947,43,46,21,0.0 +12947,17,39,23,0.0 +12947,26,31.23,35,0.0 +12947,24,4.5,18,0.0 +12947,5,21.35,43,0.0 +12947,67,14,13,0.0 +12947,22,21,31,0.0 +12947,56,38,8,0.0 +12947,68,12.5,25,0.0 +12947,16,17.45,28,0.0 +12947,30,25.89,38,0.0 +12947,71,21.5,22,0.0 +12947,3,10,48,0.0 +12947,40,18.4,17,0.0 +12947,73,15,36,0.0 +12947,77,13,9,0.0 +12947,42,14,49,0.0 +12947,61,28.5,49,0.0 +12947,54,7.45,40,0.0 +12947,38,263.5,10,0.0 +12947,72,34.8,8,0.0 +12947,60,34,14,0.0 +12947,66,17,50,0.0 +12948,67,14,23,0.0 +12948,41,9.65,35,0.0 +12948,63,43.9,47,0.0 +12948,36,19,15,0.0 +12948,16,17.45,9,0.0 +12948,17,39,38,0.0 +12948,13,6,26,0.0 +12948,59,55,40,0.0 +12948,66,17,18,0.0 +12948,53,32.8,32,0.0 +12948,26,31.23,11,0.0 +12948,3,10,15,0.0 +12948,14,23.25,12,0.0 +12948,5,21.35,5,0.0 +12948,45,9.5,43,0.0 +12948,74,10,23,0.0 +12948,28,45.6,13,0.0 +12948,57,19.5,18,0.0 +12948,7,30,31,0.0 +12948,48,12.75,26,0.0 +12948,10,31,34,0.0 +12948,43,46,15,0.0 +12948,18,62.5,3,0.0 +12948,19,9.2,19,0.0 +12948,76,18,44,0.0 +12948,35,18,29,0.0 +12948,72,34.8,1,0.0 +12948,31,12.5,36,0.0 +12948,42,14,3,0.0 +12948,6,25,45,0.0 +12948,58,13.25,34,0.0 +12948,32,32,12,0.0 +12948,46,12,15,0.0 +12948,8,40,20,0.0 +12948,52,7,32,0.0 +12948,29,123.79,38,0.0 +12948,12,38,15,0.0 +12948,62,49.3,40,0.0 +12948,64,33.25,3,0.0 +12948,11,21,20,0.0 +12948,4,22,34,0.0 +12948,21,10,16,0.0 +12948,55,24,41,0.0 +12948,37,26,15,0.0 +12948,22,21,38,0.0 +12948,34,14,6,0.0 +12948,75,7.75,3,0.0 +12948,9,97,11,0.0 +12948,61,28.5,20,0.0 +12948,56,38,10,0.0 +12948,38,263.5,27,0.0 +12948,50,16.25,23,0.0 +12948,44,19.45,39,0.0 +12948,2,19,12,0.0 +12948,71,21.5,17,0.0 +12948,15,15.5,25,0.0 +12948,77,13,19,0.0 +12948,20,81,22,0.0 +12948,47,9.5,29,0.0 +12948,1,18,2,0.0 +12948,27,43.9,19,0.0 +12948,60,34,42,0.0 +12948,69,36,46,0.0 +12948,24,4.5,32,0.0 +12948,30,25.89,45,0.0 +12948,51,53,15,0.0 +12948,49,20,10,0.0 +12948,25,14,22,0.0 +12948,70,15,26,0.0 +12948,65,21.05,21,0.0 +12948,73,15,16,0.0 +12948,40,18.4,46,0.0 +12948,39,18,30,0.0 +12948,54,7.45,11,0.0 +12948,68,12.5,37,0.0 +12949,18,62.5,12,0.0 +12949,71,21.5,16,0.0 +12949,47,9.5,1,0.0 +12949,42,14,11,0.0 +12949,2,19,32,0.0 +12949,53,32.8,1,0.0 +12949,73,15,7,0.0 +12949,15,15.5,5,0.0 +12949,9,97,15,0.0 +12949,58,13.25,37,0.0 +12949,11,21,26,0.0 +12949,36,19,27,0.0 +12949,45,9.5,44,0.0 +12949,50,16.25,32,0.0 +12949,65,21.05,34,0.0 +12949,30,25.89,48,0.0 +12949,55,24,22,0.0 +12949,44,19.45,10,0.0 +12949,37,26,16,0.0 +12949,75,7.75,20,0.0 +12949,56,38,48,0.0 +12949,63,43.9,19,0.0 +12949,25,14,11,0.0 +12949,41,9.65,33,0.0 +12949,16,17.45,4,0.0 +12949,21,10,26,0.0 +12949,74,10,35,0.0 +12949,26,31.23,14,0.0 +12949,39,18,14,0.0 +12949,6,25,13,0.0 +12949,76,18,2,0.0 +12949,27,43.9,10,0.0 +12949,49,20,34,0.0 +12949,51,53,37,0.0 +12949,20,81,48,0.0 +12949,17,39,12,0.0 +12949,35,18,13,0.0 +12949,14,23.25,41,0.0 +12949,23,9,28,0.0 +12949,19,9.2,25,0.0 +12949,57,19.5,23,0.0 +12949,34,14,27,0.0 +12949,13,6,46,0.0 +12949,29,123.79,47,0.0 +12949,33,2.5,47,0.0 +12949,4,22,37,0.0 +12949,31,12.5,44,0.0 +12949,10,31,44,0.0 +12949,67,14,34,0.0 +12949,24,4.5,18,0.0 +12949,43,46,26,0.0 +12949,46,12,31,0.0 +12949,32,32,8,0.0 +12949,61,28.5,2,0.0 +12949,64,33.25,37,0.0 +12949,72,34.8,31,0.0 +12949,7,30,27,0.0 +12949,69,36,19,0.0 +12949,70,15,23,0.0 +12950,13,6,40,0.0 +12950,39,18,1,0.0 +12950,18,62.5,7,0.0 +12950,2,19,33,0.0 +12950,3,10,4,0.0 +12950,42,14,29,0.0 +12950,63,43.9,7,0.0 +12950,43,46,3,0.0 +12950,31,12.5,29,0.0 +12950,21,10,1,0.0 +12950,25,14,44,0.0 +12950,27,43.9,31,0.0 +12950,72,34.8,27,0.0 +12950,17,39,31,0.0 +12950,50,16.25,14,0.0 +12950,8,40,16,0.0 +12950,6,25,27,0.0 +12950,38,263.5,29,0.0 +12950,14,23.25,28,0.0 +12950,34,14,43,0.0 +12950,24,4.5,13,0.0 +12950,28,45.6,13,0.0 +12950,11,21,14,0.0 +12950,4,22,27,0.0 +12950,60,34,17,0.0 +12950,19,9.2,11,0.0 +12950,70,15,45,0.0 +12950,37,26,18,0.0 +12950,12,38,33,0.0 +12950,56,38,6,0.0 +12950,41,9.65,48,0.0 +12950,45,9.5,12,0.0 +12950,71,21.5,3,0.0 +12950,35,18,21,0.0 +12950,64,33.25,21,0.0 +12950,55,24,42,0.0 +12950,16,17.45,4,0.0 +12950,47,9.5,26,0.0 +12950,29,123.79,30,0.0 +12950,49,20,46,0.0 +12950,1,18,29,0.0 +12950,53,32.8,39,0.0 +12950,75,7.75,5,0.0 +12950,69,36,50,0.0 +12950,68,12.5,26,0.0 +12950,7,30,48,0.0 +12950,57,19.5,41,0.0 +12951,62,49.3,32,0.0 +12951,60,34,39,0.0 +12951,58,13.25,33,0.0 +12951,74,10,42,0.0 +12951,18,62.5,34,0.0 +12951,33,2.5,35,0.0 +12951,26,31.23,15,0.0 +12951,9,97,43,0.0 +12951,68,12.5,13,0.0 +12951,21,10,15,0.0 +12951,69,36,41,0.0 +12952,14,23.25,21,0.0 +12952,54,7.45,24,0.0 +12952,30,25.89,37,0.0 +12952,26,31.23,47,0.0 +12952,53,32.8,27,0.0 +12952,52,7,11,0.0 +12952,57,19.5,41,0.0 +12952,60,34,40,0.0 +12952,63,43.9,18,0.0 +12952,9,97,1,0.0 +12952,77,13,42,0.0 +12952,22,21,13,0.0 +12952,19,9.2,11,0.0 +12952,31,12.5,22,0.0 +12952,41,9.65,8,0.0 +12952,35,18,22,0.0 +12952,71,21.5,39,0.0 +12952,69,36,43,0.0 +12952,4,22,18,0.0 +12952,64,33.25,5,0.0 +12952,6,25,25,0.0 +12952,38,263.5,5,0.0 +12952,62,49.3,35,0.0 +12952,66,17,33,0.0 +12952,3,10,35,0.0 +12952,55,24,16,0.0 +12952,42,14,5,0.0 +12953,6,25,46,0.0 +12953,9,97,21,0.0 +12953,18,62.5,25,0.0 +12953,58,13.25,25,0.0 +12953,8,40,36,0.0 +12953,4,22,13,0.0 +12953,67,14,29,0.0 +12953,33,2.5,12,0.0 +12953,51,53,2,0.0 +12953,25,14,42,0.0 +12953,60,34,49,0.0 +12953,24,4.5,17,0.0 +12953,47,9.5,34,0.0 +12953,48,12.75,50,0.0 +12953,20,81,38,0.0 +12953,37,26,22,0.0 +12953,34,14,32,0.0 +12953,57,19.5,1,0.0 +12954,50,16.25,13,0.0 +12954,11,21,7,0.0 +12954,34,14,44,0.0 +12954,67,14,50,0.0 +12954,64,33.25,28,0.0 +12954,58,13.25,48,0.0 +12954,43,46,13,0.0 +12954,8,40,23,0.0 +12954,55,24,1,0.0 +12954,15,15.5,23,0.0 +12954,27,43.9,1,0.0 +12954,59,55,25,0.0 +12954,30,25.89,33,0.0 +12954,52,7,34,0.0 +12954,56,38,24,0.0 +12954,39,18,33,0.0 +12954,72,34.8,44,0.0 +12954,38,263.5,31,0.0 +12954,77,13,16,0.0 +12954,29,123.79,2,0.0 +12954,28,45.6,22,0.0 +12954,47,9.5,8,0.0 +12954,57,19.5,24,0.0 +12954,26,31.23,44,0.0 +12954,25,14,5,0.0 +12954,37,26,31,0.0 +12954,19,9.2,24,0.0 +12954,9,97,18,0.0 +12954,7,30,7,0.0 +12954,62,49.3,5,0.0 +12954,66,17,18,0.0 +12954,74,10,21,0.0 +12954,42,14,24,0.0 +12954,4,22,9,0.0 +12954,33,2.5,9,0.0 +12954,68,12.5,22,0.0 +12954,10,31,13,0.0 +12954,41,9.65,10,0.0 +12954,48,12.75,29,0.0 +12954,71,21.5,26,0.0 +12954,61,28.5,41,0.0 +12954,54,7.45,26,0.0 +12955,15,15.5,23,0.0 +12955,25,14,43,0.0 +12955,27,43.9,4,0.0 +12955,56,38,35,0.0 +12955,3,10,6,0.0 +12955,62,49.3,47,0.0 +12955,10,31,41,0.0 +12955,42,14,25,0.0 +12955,5,21.35,20,0.0 +12955,70,15,2,0.0 +12955,50,16.25,37,0.0 +12955,23,9,24,0.0 +12955,73,15,42,0.0 +12955,58,13.25,50,0.0 +12955,37,26,41,0.0 +12955,39,18,17,0.0 +12955,45,9.5,46,0.0 +12955,48,12.75,16,0.0 +12955,60,34,20,0.0 +12955,77,13,16,0.0 +12955,55,24,15,0.0 +12955,65,21.05,38,0.0 +12955,63,43.9,3,0.0 +12955,8,40,46,0.0 +12955,38,263.5,13,0.0 +12955,7,30,50,0.0 +12955,36,19,49,0.0 +12955,16,17.45,38,0.0 +12955,69,36,7,0.0 +12955,29,123.79,48,0.0 +12955,66,17,38,0.0 +12955,14,23.25,9,0.0 +12955,1,18,43,0.0 +12955,17,39,39,0.0 +12955,68,12.5,48,0.0 +12955,28,45.6,29,0.0 +12955,51,53,31,0.0 +12955,4,22,49,0.0 +12955,67,14,23,0.0 +12955,19,9.2,46,0.0 +12956,3,10,20,0.0 +12956,73,15,41,0.0 +12956,68,12.5,25,0.0 +12956,25,14,30,0.0 +12956,49,20,25,0.0 +12956,4,22,36,0.0 +12956,48,12.75,40,0.0 +12956,57,19.5,47,0.0 +12956,37,26,44,0.0 +12956,15,15.5,28,0.0 +12956,53,32.8,34,0.0 +12956,12,38,37,0.0 +12956,54,7.45,41,0.0 +12956,64,33.25,29,0.0 +12957,30,25.89,44,0.0 +12957,35,18,25,0.0 +12957,55,24,33,0.0 +12957,37,26,40,0.0 +12958,52,7,14,0.0 +12958,72,34.8,27,0.0 +12958,55,24,30,0.0 +12958,39,18,36,0.0 +12958,45,9.5,38,0.0 +12958,18,62.5,18,0.0 +12958,37,26,37,0.0 +12958,74,10,47,0.0 +12958,24,4.5,2,0.0 +12958,50,16.25,22,0.0 +12958,56,38,16,0.0 +12958,33,2.5,12,0.0 +12958,36,19,39,0.0 +12958,34,14,24,0.0 +12958,8,40,43,0.0 +12958,58,13.25,25,0.0 +12958,10,31,50,0.0 +12959,58,13.25,39,0.0 +12959,72,34.8,39,0.0 +12959,57,19.5,35,0.0 +12959,51,53,20,0.0 +12959,30,25.89,35,0.0 +12959,33,2.5,28,0.0 +12959,77,13,19,0.0 +12959,37,26,24,0.0 +12959,6,25,19,0.0 +12959,47,9.5,36,0.0 +12959,23,9,39,0.0 +12959,60,34,27,0.0 +12959,73,15,38,0.0 +12959,71,21.5,5,0.0 +12959,50,16.25,49,0.0 +12959,20,81,49,0.0 +12959,55,24,42,0.0 +12959,36,19,37,0.0 +12960,75,7.75,26,0.0 +12960,21,10,26,0.0 +12960,5,21.35,38,0.0 +12960,17,39,33,0.0 +12960,35,18,3,0.0 +12960,69,36,46,0.0 +12960,70,15,39,0.0 +12960,49,20,32,0.0 +12960,66,17,37,0.0 +12960,45,9.5,40,0.0 +12960,24,4.5,39,0.0 +12960,33,2.5,35,0.0 +12960,71,21.5,32,0.0 +12960,16,17.45,20,0.0 +12960,63,43.9,48,0.0 +12960,39,18,1,0.0 +12960,3,10,43,0.0 +12960,62,49.3,26,0.0 +12960,74,10,34,0.0 +12961,37,26,38,0.0 +12961,67,14,8,0.0 +12961,30,25.89,38,0.0 +12961,5,21.35,26,0.0 +12961,44,19.45,33,0.0 +12961,18,62.5,16,0.0 +12961,63,43.9,21,0.0 +12961,72,34.8,22,0.0 +12961,45,9.5,3,0.0 +12961,38,263.5,10,0.0 +12961,40,18.4,14,0.0 +12961,43,46,8,0.0 +12961,3,10,36,0.0 +12961,64,33.25,14,0.0 +12961,68,12.5,22,0.0 +12961,49,20,9,0.0 +12962,28,45.6,42,0.0 +12962,43,46,26,0.0 +12962,17,39,4,0.0 +12962,35,18,50,0.0 +12962,9,97,44,0.0 +12962,72,34.8,17,0.0 +12962,67,14,13,0.0 +12962,14,23.25,47,0.0 +12962,64,33.25,49,0.0 +12962,18,62.5,5,0.0 +12962,30,25.89,36,0.0 +12962,10,31,40,0.0 +12962,50,16.25,46,0.0 +12962,54,7.45,10,0.0 +12962,4,22,36,0.0 +12962,31,12.5,5,0.0 +12962,11,21,26,0.0 +12962,22,21,6,0.0 +12962,26,31.23,45,0.0 +12962,33,2.5,32,0.0 +12962,5,21.35,40,0.0 +12962,19,9.2,37,0.0 +12962,44,19.45,19,0.0 +12962,77,13,27,0.0 +12962,7,30,26,0.0 +12962,38,263.5,49,0.0 +12962,53,32.8,23,0.0 +12962,47,9.5,41,0.0 +12962,8,40,40,0.0 +12962,70,15,5,0.0 +12962,13,6,25,0.0 +12962,63,43.9,12,0.0 +12962,48,12.75,18,0.0 +12962,37,26,35,0.0 +12962,23,9,36,0.0 +12962,55,24,11,0.0 +12962,41,9.65,2,0.0 +12962,16,17.45,40,0.0 +12962,49,20,10,0.0 +12962,32,32,14,0.0 +12962,76,18,22,0.0 +12962,25,14,48,0.0 +12962,68,12.5,12,0.0 +12962,51,53,50,0.0 +12962,2,19,2,0.0 +12962,45,9.5,17,0.0 +12962,20,81,42,0.0 +12962,29,123.79,19,0.0 +12962,6,25,13,0.0 +12962,46,12,37,0.0 +12962,59,55,5,0.0 +12962,52,7,42,0.0 +12962,24,4.5,13,0.0 +12962,61,28.5,6,0.0 +12962,75,7.75,37,0.0 +12962,62,49.3,15,0.0 +12962,73,15,12,0.0 +12962,69,36,46,0.0 +12962,42,14,6,0.0 +12962,27,43.9,24,0.0 +12962,56,38,25,0.0 +12962,15,15.5,8,0.0 +12963,13,6,32,0.0 +12963,70,15,35,0.0 +12963,5,21.35,2,0.0 +12963,66,17,10,0.0 +12963,54,7.45,40,0.0 +12963,57,19.5,34,0.0 +12963,26,31.23,35,0.0 +12963,8,40,34,0.0 +12963,2,19,10,0.0 +12963,3,10,26,0.0 +12963,49,20,33,0.0 +12963,18,62.5,34,0.0 +12963,10,31,32,0.0 +12963,58,13.25,48,0.0 +12963,65,21.05,17,0.0 +12963,41,9.65,33,0.0 +12963,12,38,46,0.0 +12963,53,32.8,17,0.0 +12963,75,7.75,47,0.0 +12963,15,15.5,43,0.0 +12963,48,12.75,1,0.0 +12963,71,21.5,7,0.0 +12963,28,45.6,5,0.0 +12963,16,17.45,27,0.0 +12963,22,21,25,0.0 +12963,43,46,41,0.0 +12963,34,14,14,0.0 +12963,39,18,19,0.0 +12963,32,32,30,0.0 +12963,25,14,21,0.0 +12963,6,25,46,0.0 +12963,23,9,34,0.0 +12963,77,13,41,0.0 +12963,31,12.5,43,0.0 +12963,56,38,13,0.0 +12963,11,21,2,0.0 +12963,62,49.3,11,0.0 +12963,14,23.25,27,0.0 +12963,38,263.5,34,0.0 +12964,68,12.5,50,0.0 +12964,34,14,47,0.0 +12964,7,30,25,0.0 +12964,59,55,35,0.0 +12964,60,34,5,0.0 +12964,36,19,46,0.0 +12964,27,43.9,8,0.0 +12964,15,15.5,3,0.0 +12964,41,9.65,44,0.0 +12964,53,32.8,44,0.0 +12964,73,15,30,0.0 +12964,55,24,22,0.0 +12964,62,49.3,14,0.0 +12964,56,38,37,0.0 +12964,26,31.23,39,0.0 +12964,47,9.5,45,0.0 +12964,16,17.45,49,0.0 +12964,69,36,29,0.0 +12964,45,9.5,32,0.0 +12964,3,10,47,0.0 +12964,61,28.5,43,0.0 +12964,1,18,19,0.0 +12964,65,21.05,39,0.0 +12964,13,6,49,0.0 +12964,18,62.5,2,0.0 +12964,48,12.75,20,0.0 +12964,5,21.35,22,0.0 +12964,51,53,43,0.0 +12964,21,10,39,0.0 +12964,32,32,19,0.0 +12964,11,21,49,0.0 +12964,74,10,38,0.0 +12964,29,123.79,26,0.0 +12964,17,39,28,0.0 +12964,43,46,27,0.0 +12964,9,97,22,0.0 +12964,38,263.5,39,0.0 +12964,8,40,28,0.0 +12964,10,31,1,0.0 +12964,77,13,36,0.0 +12964,19,9.2,22,0.0 +12964,49,20,10,0.0 +12964,31,12.5,30,0.0 +12964,71,21.5,35,0.0 +12964,12,38,5,0.0 +12964,14,23.25,22,0.0 +12964,28,45.6,3,0.0 +12964,58,13.25,4,0.0 +12964,50,16.25,46,0.0 +12964,67,14,26,0.0 +12964,40,18.4,10,0.0 +12964,37,26,6,0.0 +12964,22,21,11,0.0 +12964,23,9,39,0.0 +12964,54,7.45,23,0.0 +12964,33,2.5,13,0.0 +12964,63,43.9,10,0.0 +12964,76,18,7,0.0 +12964,75,7.75,31,0.0 +12964,39,18,32,0.0 +12964,2,19,36,0.0 +12964,57,19.5,12,0.0 +12964,46,12,30,0.0 +12964,70,15,24,0.0 +12964,4,22,1,0.0 +12964,52,7,21,0.0 +12964,30,25.89,5,0.0 +12964,44,19.45,26,0.0 +12964,64,33.25,45,0.0 +12964,66,17,6,0.0 +12964,24,4.5,13,0.0 +12964,72,34.8,21,0.0 +12964,20,81,9,0.0 +12964,6,25,7,0.0 +12964,35,18,24,0.0 +12964,25,14,22,0.0 +12965,46,12,12,0.0 +12965,41,9.65,2,0.0 +12965,37,26,13,0.0 +12965,21,10,31,0.0 +12965,74,10,27,0.0 +12965,45,9.5,12,0.0 +12965,52,7,12,0.0 +12965,75,7.75,13,0.0 +12965,29,123.79,43,0.0 +12965,12,38,23,0.0 +12965,51,53,29,0.0 +12965,14,23.25,31,0.0 +12965,76,18,37,0.0 +12965,40,18.4,32,0.0 +12965,8,40,41,0.0 +12965,57,19.5,17,0.0 +12965,16,17.45,5,0.0 +12965,10,31,8,0.0 +12965,34,14,1,0.0 +12965,11,21,22,0.0 +12965,1,18,23,0.0 +12965,19,9.2,23,0.0 +12965,59,55,16,0.0 +12965,28,45.6,32,0.0 +12965,18,62.5,8,0.0 +12965,64,33.25,36,0.0 +12965,72,34.8,41,0.0 +12965,73,15,31,0.0 +12965,49,20,1,0.0 +12965,66,17,46,0.0 +12965,22,21,33,0.0 +12965,47,9.5,48,0.0 +12965,44,19.45,37,0.0 +12965,36,19,24,0.0 +12965,53,32.8,24,0.0 +12965,33,2.5,3,0.0 +12965,13,6,30,0.0 +12965,5,21.35,36,0.0 +12965,63,43.9,47,0.0 +12965,70,15,46,0.0 +12965,3,10,47,0.0 +12965,42,14,12,0.0 +12965,23,9,20,0.0 +12965,68,12.5,27,0.0 +12965,48,12.75,43,0.0 +12965,54,7.45,7,0.0 +12965,6,25,32,0.0 +12965,65,21.05,12,0.0 +12965,27,43.9,35,0.0 +12965,67,14,35,0.0 +12965,69,36,37,0.0 +12965,25,14,19,0.0 +12965,77,13,31,0.0 +12965,35,18,37,0.0 +12965,60,34,5,0.0 +12965,61,28.5,42,0.0 +12965,50,16.25,31,0.0 +12965,55,24,18,0.0 +12965,62,49.3,4,0.0 +12965,56,38,36,0.0 +12965,71,21.5,3,0.0 +12965,39,18,46,0.0 +12965,15,15.5,15,0.0 +12965,17,39,28,0.0 +12965,9,97,8,0.0 +12966,18,62.5,14,0.0 +12966,68,12.5,24,0.0 +12966,63,43.9,28,0.0 +12966,65,21.05,38,0.0 +12966,61,28.5,32,0.0 +12966,38,263.5,9,0.0 +12966,75,7.75,37,0.0 +12966,55,24,28,0.0 +12966,5,21.35,3,0.0 +12966,69,36,46,0.0 +12966,3,10,4,0.0 +12966,23,9,14,0.0 +12966,36,19,33,0.0 +12966,27,43.9,46,0.0 +12966,29,123.79,6,0.0 +12966,60,34,28,0.0 +12966,48,12.75,36,0.0 +12966,72,34.8,3,0.0 +12966,26,31.23,43,0.0 +12966,49,20,49,0.0 +12966,16,17.45,3,0.0 +12966,73,15,4,0.0 +12966,43,46,41,0.0 +12966,51,53,29,0.0 +12966,57,19.5,32,0.0 +12966,67,14,17,0.0 +12966,70,15,48,0.0 +12967,5,21.35,9,0.0 +12967,4,22,43,0.0 +12967,14,23.25,33,0.0 +12967,54,7.45,35,0.0 +12967,65,21.05,48,0.0 +12967,6,25,6,0.0 +12967,63,43.9,48,0.0 +12967,16,17.45,50,0.0 +12967,55,24,37,0.0 +12967,60,34,1,0.0 +12967,9,97,15,0.0 +12967,28,45.6,21,0.0 +12967,10,31,37,0.0 +12967,35,18,25,0.0 +12967,17,39,8,0.0 +12967,66,17,33,0.0 +12967,21,10,45,0.0 +12967,27,43.9,33,0.0 +12967,77,13,35,0.0 +12967,13,6,40,0.0 +12967,1,18,29,0.0 +12967,12,38,32,0.0 +12967,39,18,47,0.0 +12967,31,12.5,26,0.0 +12967,45,9.5,43,0.0 +12967,68,12.5,50,0.0 +12967,76,18,30,0.0 +12967,64,33.25,49,0.0 +12967,23,9,14,0.0 +12967,72,34.8,3,0.0 +12967,58,13.25,1,0.0 +12967,52,7,11,0.0 +12967,51,53,4,0.0 +12967,29,123.79,46,0.0 +12967,50,16.25,18,0.0 +12967,62,49.3,21,0.0 +12967,20,81,23,0.0 +12967,69,36,26,0.0 +12967,57,19.5,46,0.0 +12967,41,9.65,47,0.0 +12967,32,32,48,0.0 +12967,2,19,36,0.0 +12967,43,46,24,0.0 +12967,67,14,22,0.0 +12967,74,10,14,0.0 +12967,59,55,2,0.0 +12967,15,15.5,26,0.0 +12967,25,14,5,0.0 +12967,49,20,48,0.0 +12967,26,31.23,33,0.0 +12967,71,21.5,28,0.0 +12967,44,19.45,37,0.0 +12967,3,10,43,0.0 +12967,8,40,14,0.0 +12968,4,22,1,0.0 +12968,25,14,36,0.0 +12968,49,20,13,0.0 +12968,5,21.35,31,0.0 +12968,65,21.05,35,0.0 +12968,66,17,1,0.0 +12968,28,45.6,37,0.0 +12968,23,9,1,0.0 +12968,26,31.23,31,0.0 +12968,45,9.5,19,0.0 +12968,71,21.5,25,0.0 +12968,37,26,20,0.0 +12968,74,10,36,0.0 +12968,24,4.5,38,0.0 +12968,76,18,12,0.0 +12968,1,18,1,0.0 +12968,34,14,2,0.0 +12968,14,23.25,43,0.0 +12968,73,15,44,0.0 +12968,69,36,11,0.0 +12968,16,17.45,12,0.0 +12968,32,32,44,0.0 +12968,20,81,7,0.0 +12968,17,39,45,0.0 +12968,35,18,22,0.0 +12968,11,21,37,0.0 +12968,47,9.5,22,0.0 +12968,72,34.8,12,0.0 +12968,22,21,40,0.0 +12968,48,12.75,13,0.0 +12968,50,16.25,11,0.0 +12968,64,33.25,32,0.0 +12968,70,15,4,0.0 +12968,62,49.3,29,0.0 +12968,54,7.45,37,0.0 +12968,33,2.5,11,0.0 +12968,15,15.5,11,0.0 +12969,21,10,17,0.0 +12969,68,12.5,20,0.0 +12969,23,9,12,0.0 +12969,57,19.5,40,0.0 +12969,75,7.75,37,0.0 +12969,59,55,23,0.0 +12969,60,34,11,0.0 +12969,24,4.5,30,0.0 +12969,14,23.25,35,0.0 +12969,71,21.5,39,0.0 +12969,17,39,30,0.0 +12969,62,49.3,4,0.0 +12969,36,19,20,0.0 +12969,3,10,42,0.0 +12969,53,32.8,23,0.0 +12969,9,97,19,0.0 +12969,58,13.25,4,0.0 +12969,64,33.25,23,0.0 +12969,10,31,31,0.0 +12969,31,12.5,29,0.0 +12969,50,16.25,50,0.0 +12969,2,19,23,0.0 +12969,63,43.9,38,0.0 +12969,1,18,12,0.0 +12969,52,7,47,0.0 +12969,48,12.75,35,0.0 +12969,40,18.4,46,0.0 +12969,4,22,14,0.0 +12969,30,25.89,12,0.0 +12969,66,17,22,0.0 +12970,31,12.5,19,0.0 +12970,30,25.89,28,0.0 +12970,34,14,50,0.0 +12970,16,17.45,47,0.0 +12970,55,24,11,0.0 +12970,19,9.2,14,0.0 +12970,45,9.5,8,0.0 +12970,18,62.5,18,0.0 +12970,73,15,27,0.0 +12970,65,21.05,21,0.0 +12970,50,16.25,39,0.0 +12970,5,21.35,21,0.0 +12970,46,12,10,0.0 +12970,29,123.79,14,0.0 +12970,56,38,19,0.0 +12970,13,6,39,0.0 +12970,47,9.5,38,0.0 +12970,1,18,26,0.0 +12970,71,21.5,45,0.0 +12970,61,28.5,9,0.0 +12971,2,19,17,0.0 +12971,61,28.5,3,0.0 +12971,64,33.25,33,0.0 +12971,29,123.79,4,0.0 +12971,45,9.5,3,0.0 +12971,50,16.25,22,0.0 +12971,62,49.3,31,0.0 +12971,46,12,38,0.0 +12971,71,21.5,41,0.0 +12971,41,9.65,41,0.0 +12971,26,31.23,50,0.0 +12971,52,7,16,0.0 +12971,47,9.5,22,0.0 +12971,15,15.5,16,0.0 +12971,68,12.5,29,0.0 +12971,54,7.45,5,0.0 +12971,11,21,9,0.0 +12971,7,30,2,0.0 +12971,74,10,21,0.0 +12971,33,2.5,10,0.0 +12971,39,18,6,0.0 +12971,58,13.25,38,0.0 +12971,77,13,42,0.0 +12971,27,43.9,8,0.0 +12971,67,14,8,0.0 +12971,69,36,37,0.0 +12971,48,12.75,35,0.0 +12971,63,43.9,26,0.0 +12971,23,9,50,0.0 +12971,16,17.45,37,0.0 +12971,18,62.5,34,0.0 +12971,35,18,17,0.0 +12971,17,39,8,0.0 +12971,53,32.8,29,0.0 +12971,70,15,24,0.0 +12971,9,97,12,0.0 +12971,14,23.25,31,0.0 +12971,57,19.5,40,0.0 +12971,56,38,21,0.0 +12971,42,14,29,0.0 +12971,21,10,25,0.0 +12971,3,10,47,0.0 +12971,49,20,2,0.0 +12971,66,17,41,0.0 +12971,5,21.35,19,0.0 +12971,1,18,1,0.0 +12971,28,45.6,28,0.0 +12971,59,55,30,0.0 +12971,37,26,6,0.0 +12971,55,24,31,0.0 +12971,38,263.5,40,0.0 +12971,12,38,10,0.0 +12971,51,53,26,0.0 +12971,76,18,14,0.0 +12971,22,21,48,0.0 +12971,75,7.75,31,0.0 +12971,24,4.5,35,0.0 +12971,4,22,35,0.0 +12971,44,19.45,22,0.0 +12971,73,15,12,0.0 +12971,30,25.89,6,0.0 +12971,19,9.2,37,0.0 +12971,32,32,22,0.0 +12971,60,34,29,0.0 +12971,31,12.5,30,0.0 +12971,34,14,32,0.0 +12971,25,14,2,0.0 +12971,13,6,5,0.0 +12971,72,34.8,37,0.0 +12971,65,21.05,35,0.0 +12971,36,19,4,0.0 +12971,6,25,48,0.0 +12971,10,31,26,0.0 +12971,43,46,47,0.0 +12971,40,18.4,38,0.0 +12971,20,81,42,0.0 +12971,8,40,44,0.0 +12972,53,32.8,42,0.0 +12972,50,16.25,41,0.0 +12972,75,7.75,34,0.0 +12972,56,38,50,0.0 +12972,19,9.2,50,0.0 +12972,69,36,38,0.0 +12972,6,25,20,0.0 +12972,5,21.35,48,0.0 +12972,14,23.25,27,0.0 +12972,54,7.45,30,0.0 +12972,26,31.23,23,0.0 +12972,8,40,26,0.0 +12972,2,19,27,0.0 +12972,44,19.45,18,0.0 +12972,37,26,25,0.0 +12972,22,21,44,0.0 +12972,63,43.9,34,0.0 +12972,58,13.25,3,0.0 +12972,52,7,20,0.0 +12972,51,53,4,0.0 +12972,24,4.5,13,0.0 +12972,74,10,14,0.0 +12972,61,28.5,44,0.0 +12972,31,12.5,9,0.0 +12972,28,45.6,1,0.0 +12972,10,31,7,0.0 +12972,33,2.5,36,0.0 +12972,34,14,5,0.0 +12972,17,39,22,0.0 +12972,7,30,45,0.0 +12972,45,9.5,12,0.0 +12972,66,17,21,0.0 +12972,67,14,14,0.0 +12972,60,34,16,0.0 +12972,48,12.75,15,0.0 +12972,72,34.8,41,0.0 +12972,18,62.5,42,0.0 +12972,39,18,18,0.0 +12972,15,15.5,49,0.0 +12972,59,55,36,0.0 +12972,46,12,8,0.0 +12972,38,263.5,20,0.0 +12972,16,17.45,44,0.0 +12972,77,13,15,0.0 +12972,68,12.5,43,0.0 +12972,21,10,1,0.0 +12972,29,123.79,4,0.0 +12972,40,18.4,28,0.0 +12972,30,25.89,48,0.0 +12972,65,21.05,13,0.0 +12972,57,19.5,33,0.0 +12972,27,43.9,41,0.0 +12972,25,14,7,0.0 +12972,35,18,44,0.0 +12972,23,9,18,0.0 +12972,1,18,2,0.0 +12972,62,49.3,40,0.0 +12972,41,9.65,50,0.0 +12972,42,14,13,0.0 +12972,12,38,49,0.0 +12972,71,21.5,5,0.0 +12972,36,19,7,0.0 +12972,64,33.25,42,0.0 +12973,75,7.75,18,0.0 +12973,42,14,30,0.0 +12973,47,9.5,3,0.0 +12973,31,12.5,42,0.0 +12973,63,43.9,34,0.0 +12973,19,9.2,28,0.0 +12973,3,10,2,0.0 +12973,35,18,9,0.0 +12973,16,17.45,33,0.0 +12973,1,18,32,0.0 +12973,10,31,4,0.0 +12973,21,10,50,0.0 +12973,5,21.35,28,0.0 +12973,58,13.25,40,0.0 +12973,2,19,23,0.0 +12973,6,25,15,0.0 +12973,34,14,43,0.0 +12973,29,123.79,2,0.0 +12973,59,55,32,0.0 +12973,54,7.45,45,0.0 +12973,64,33.25,5,0.0 +12973,70,15,30,0.0 +12973,37,26,45,0.0 +12973,45,9.5,40,0.0 +12973,72,34.8,14,0.0 +12973,62,49.3,22,0.0 +12973,8,40,12,0.0 +12973,57,19.5,28,0.0 +12973,66,17,23,0.0 +12973,49,20,14,0.0 +12973,67,14,50,0.0 +12973,53,32.8,9,0.0 +12973,24,4.5,39,0.0 +12973,4,22,45,0.0 +12973,48,12.75,19,0.0 +12973,39,18,34,0.0 +12973,40,18.4,4,0.0 +12973,28,45.6,10,0.0 +12973,44,19.45,29,0.0 +12973,76,18,41,0.0 +12973,77,13,21,0.0 +12973,52,7,27,0.0 +12973,7,30,7,0.0 +12973,25,14,37,0.0 +12973,50,16.25,43,0.0 +12973,38,263.5,40,0.0 +12973,22,21,48,0.0 +12973,55,24,9,0.0 +12973,9,97,14,0.0 +12973,14,23.25,47,0.0 +12973,41,9.65,13,0.0 +12973,30,25.89,23,0.0 +12973,26,31.23,42,0.0 +12973,13,6,42,0.0 +12973,73,15,28,0.0 +12973,51,53,44,0.0 +12973,60,34,38,0.0 +12973,56,38,6,0.0 +12973,43,46,28,0.0 +12973,20,81,26,0.0 +12973,74,10,9,0.0 +12973,18,62.5,46,0.0 +12973,68,12.5,14,0.0 +12973,33,2.5,22,0.0 +12973,71,21.5,22,0.0 +12974,1,18,46,0.0 +12974,42,14,50,0.0 +12974,68,12.5,44,0.0 +12974,61,28.5,27,0.0 +12974,58,13.25,20,0.0 +12974,74,10,35,0.0 +12974,39,18,28,0.0 +12974,47,9.5,36,0.0 +12974,76,18,12,0.0 +12974,40,18.4,18,0.0 +12974,53,32.8,26,0.0 +12974,60,34,1,0.0 +12974,28,45.6,18,0.0 +12974,69,36,13,0.0 +12974,3,10,46,0.0 +12974,6,25,19,0.0 +12974,30,25.89,47,0.0 +12974,66,17,1,0.0 +12974,65,21.05,18,0.0 +12974,27,43.9,36,0.0 +12974,21,10,25,0.0 +12974,2,19,6,0.0 +12974,22,21,3,0.0 +12974,33,2.5,9,0.0 +12974,43,46,3,0.0 +12974,64,33.25,50,0.0 +12974,10,31,3,0.0 +12974,36,19,34,0.0 +12974,44,19.45,7,0.0 +12974,63,43.9,27,0.0 +12974,17,39,31,0.0 +12974,62,49.3,45,0.0 +12974,45,9.5,49,0.0 +12974,4,22,12,0.0 +12974,29,123.79,43,0.0 +12974,38,263.5,21,0.0 +12974,37,26,33,0.0 +12974,55,24,21,0.0 +12974,54,7.45,15,0.0 +12974,73,15,28,0.0 +12974,23,9,33,0.0 +12974,59,55,31,0.0 +12974,20,81,18,0.0 +12974,26,31.23,15,0.0 +12974,31,12.5,14,0.0 +12974,8,40,40,0.0 +12974,51,53,7,0.0 +12974,5,21.35,50,0.0 +12974,67,14,44,0.0 +12974,52,7,26,0.0 +12974,13,6,47,0.0 +12974,71,21.5,27,0.0 +12974,46,12,26,0.0 +12974,34,14,17,0.0 +12974,24,4.5,46,0.0 +12974,7,30,40,0.0 +12974,9,97,26,0.0 +12974,56,38,28,0.0 +12974,75,7.75,39,0.0 +12975,66,17,23,0.0 +12975,58,13.25,17,0.0 +12975,3,10,8,0.0 +12975,77,13,1,0.0 +12975,12,38,50,0.0 +12975,52,7,22,0.0 +12975,38,263.5,39,0.0 +12975,25,14,39,0.0 +12975,75,7.75,32,0.0 +12975,11,21,43,0.0 +12975,10,31,15,0.0 +12975,39,18,7,0.0 +12975,7,30,3,0.0 +12975,55,24,33,0.0 +12975,16,17.45,50,0.0 +12975,21,10,4,0.0 +12975,72,34.8,16,0.0 +12975,20,81,2,0.0 +12975,47,9.5,28,0.0 +12975,60,34,33,0.0 +12975,51,53,43,0.0 +12975,31,12.5,39,0.0 +12975,24,4.5,20,0.0 +12975,45,9.5,8,0.0 +12975,9,97,24,0.0 +12975,57,19.5,37,0.0 +12975,76,18,24,0.0 +12975,44,19.45,23,0.0 +12975,48,12.75,8,0.0 +12976,70,15,18,0.0 +12976,37,26,11,0.0 +12976,9,97,6,0.0 +12976,1,18,25,0.0 +12976,74,10,8,0.0 +12976,75,7.75,38,0.0 +12976,32,32,3,0.0 +12976,45,9.5,21,0.0 +12976,60,34,35,0.0 +12976,13,6,37,0.0 +12976,35,18,36,0.0 +12976,25,14,27,0.0 +12976,62,49.3,21,0.0 +12976,40,18.4,32,0.0 +12976,26,31.23,39,0.0 +12976,3,10,48,0.0 +12976,6,25,46,0.0 +12977,46,12,30,0.0 +12977,64,33.25,3,0.0 +12977,77,13,50,0.0 +12977,66,17,19,0.0 +12977,70,15,13,0.0 +12977,72,34.8,25,0.0 +12977,29,123.79,25,0.0 +12977,54,7.45,31,0.0 +12977,69,36,34,0.0 +12977,12,38,13,0.0 +12977,75,7.75,23,0.0 +12977,43,46,8,0.0 +12977,7,30,9,0.0 +12977,26,31.23,6,0.0 +12977,45,9.5,48,0.0 +12978,1,18,42,0.0 +12978,73,15,45,0.0 +12978,45,9.5,1,0.0 +12978,22,21,19,0.0 +12978,16,17.45,26,0.0 +12978,57,19.5,34,0.0 +12978,40,18.4,16,0.0 +12978,76,18,8,0.0 +12978,54,7.45,9,0.0 +12978,32,32,42,0.0 +12978,19,9.2,28,0.0 +12978,34,14,48,0.0 +12978,62,49.3,36,0.0 +12978,46,12,50,0.0 +12978,3,10,37,0.0 +12978,2,19,3,0.0 +12978,8,40,14,0.0 +12978,66,17,14,0.0 +12978,41,9.65,32,0.0 +12978,28,45.6,50,0.0 +12978,14,23.25,32,0.0 +12978,7,30,29,0.0 +12978,39,18,30,0.0 +12978,17,39,29,0.0 +12978,30,25.89,2,0.0 +12978,18,62.5,5,0.0 +12978,63,43.9,49,0.0 +12979,1,18,49,0.0 +12979,37,26,38,0.0 +12979,47,9.5,35,0.0 +12979,3,10,4,0.0 +12979,34,14,25,0.0 +12979,2,19,4,0.0 +12980,72,34.8,26,0.0 +12980,10,31,24,0.0 +12980,32,32,41,0.0 +12980,24,4.5,46,0.0 +12980,51,53,7,0.0 +12980,31,12.5,31,0.0 +12980,59,55,3,0.0 +12980,12,38,6,0.0 +12980,52,7,32,0.0 +12980,73,15,27,0.0 +12980,34,14,45,0.0 +12980,60,34,41,0.0 +12980,75,7.75,36,0.0 +12980,17,39,21,0.0 +12980,49,20,26,0.0 +12980,66,17,3,0.0 +12980,5,21.35,3,0.0 +12980,68,12.5,43,0.0 +12980,14,23.25,3,0.0 +12980,57,19.5,26,0.0 +12980,53,32.8,48,0.0 +12980,55,24,7,0.0 +12980,19,9.2,27,0.0 +12980,3,10,19,0.0 +12980,21,10,36,0.0 +12980,9,97,16,0.0 +12980,11,21,21,0.0 +12980,37,26,50,0.0 +12980,1,18,8,0.0 +12980,43,46,46,0.0 +12980,38,263.5,36,0.0 +12980,28,45.6,42,0.0 +12980,30,25.89,9,0.0 +12980,50,16.25,43,0.0 +12980,41,9.65,20,0.0 +12980,23,9,40,0.0 +12980,65,21.05,35,0.0 +12980,22,21,19,0.0 +12980,27,43.9,14,0.0 +12980,62,49.3,41,0.0 +12980,20,81,12,0.0 +12980,7,30,34,0.0 +12980,35,18,39,0.0 +12980,77,13,36,0.0 +12980,26,31.23,48,0.0 +12980,63,43.9,26,0.0 +12980,61,28.5,2,0.0 +12980,4,22,31,0.0 +12980,48,12.75,49,0.0 +12980,33,2.5,39,0.0 +12980,13,6,13,0.0 +12981,59,55,18,0.0 +12981,29,123.79,11,0.0 +12981,12,38,1,0.0 +12981,56,38,3,0.0 +12981,11,21,35,0.0 +12981,50,16.25,40,0.0 +12981,60,34,43,0.0 +12981,57,19.5,49,0.0 +12981,48,12.75,17,0.0 +12981,43,46,42,0.0 +12981,13,6,32,0.0 +12981,66,17,40,0.0 +12981,14,23.25,26,0.0 +12981,77,13,11,0.0 +12981,4,22,14,0.0 +12981,19,9.2,27,0.0 +12981,6,25,44,0.0 +12982,57,19.5,1,0.0 +12982,45,9.5,26,0.0 +12982,47,9.5,17,0.0 +12982,7,30,3,0.0 +12982,70,15,17,0.0 +12982,64,33.25,45,0.0 +12982,35,18,10,0.0 +12982,44,19.45,27,0.0 +12982,63,43.9,24,0.0 +12982,33,2.5,17,0.0 +12982,69,36,23,0.0 +12982,67,14,4,0.0 +12982,58,13.25,3,0.0 +12982,42,14,24,0.0 +12982,51,53,21,0.0 +12982,55,24,35,0.0 +12982,54,7.45,46,0.0 +12982,36,19,41,0.0 +12982,24,4.5,1,0.0 +12982,22,21,37,0.0 +12982,4,22,3,0.0 +12982,20,81,42,0.0 +12982,38,263.5,16,0.0 +12982,5,21.35,36,0.0 +12982,12,38,16,0.0 +12982,73,15,7,0.0 +12982,31,12.5,33,0.0 +12982,56,38,44,0.0 +12982,66,17,1,0.0 +12982,25,14,35,0.0 +12982,29,123.79,44,0.0 +12982,10,31,38,0.0 +12982,62,49.3,34,0.0 +12982,77,13,44,0.0 +12982,17,39,33,0.0 +12982,6,25,13,0.0 +12982,16,17.45,13,0.0 +12982,49,20,23,0.0 +12982,1,18,11,0.0 +12982,26,31.23,25,0.0 +12982,18,62.5,20,0.0 +12982,19,9.2,16,0.0 +12982,21,10,37,0.0 +12982,72,34.8,9,0.0 +12983,49,20,19,0.0 +12983,6,25,42,0.0 +12983,64,33.25,39,0.0 +12983,24,4.5,28,0.0 +12983,23,9,34,0.0 +12983,33,2.5,21,0.0 +12983,41,9.65,10,0.0 +12983,51,53,10,0.0 +12983,21,10,27,0.0 +12983,57,19.5,45,0.0 +12983,65,21.05,3,0.0 +12983,34,14,24,0.0 +12983,4,22,5,0.0 +12983,67,14,35,0.0 +12983,66,17,8,0.0 +12983,37,26,36,0.0 +12983,40,18.4,12,0.0 +12983,54,7.45,33,0.0 +12983,12,38,22,0.0 +12983,17,39,4,0.0 +12983,68,12.5,31,0.0 +12983,3,10,50,0.0 +12983,1,18,44,0.0 +12983,15,15.5,20,0.0 +12983,22,21,45,0.0 +12983,10,31,17,0.0 +12983,28,45.6,26,0.0 +12983,58,13.25,16,0.0 +12983,20,81,18,0.0 +12983,77,13,42,0.0 +12983,16,17.45,9,0.0 +12983,44,19.45,8,0.0 +12984,1,18,19,0.0 +12984,60,34,33,0.0 +12984,62,49.3,5,0.0 +12984,48,12.75,19,0.0 +12984,56,38,35,0.0 +12984,3,10,1,0.0 +12984,9,97,9,0.0 +12984,12,38,46,0.0 +12984,51,53,15,0.0 +12984,36,19,31,0.0 +12984,71,21.5,32,0.0 +12984,4,22,1,0.0 +12984,29,123.79,47,0.0 +12984,49,20,46,0.0 +12984,35,18,44,0.0 +12984,45,9.5,9,0.0 +12984,69,36,21,0.0 +12984,55,24,16,0.0 +12984,11,21,40,0.0 +12984,38,263.5,37,0.0 +12984,46,12,49,0.0 +12984,2,19,24,0.0 +12984,47,9.5,31,0.0 +12984,34,14,37,0.0 +12984,21,10,11,0.0 +12984,14,23.25,30,0.0 +12984,54,7.45,6,0.0 +12984,23,9,46,0.0 +12984,40,18.4,39,0.0 +12984,68,12.5,45,0.0 +12984,43,46,7,0.0 +12984,52,7,47,0.0 +12984,27,43.9,2,0.0 +12984,17,39,29,0.0 +12984,74,10,48,0.0 +12984,72,34.8,31,0.0 +12984,37,26,26,0.0 +12984,24,4.5,19,0.0 +12984,26,31.23,37,0.0 +12984,6,25,10,0.0 +12984,64,33.25,5,0.0 +12984,53,32.8,24,0.0 +12984,67,14,2,0.0 +12984,63,43.9,31,0.0 +12984,20,81,33,0.0 +12984,66,17,38,0.0 +12984,77,13,19,0.0 +12984,19,9.2,33,0.0 +12984,73,15,17,0.0 +12984,33,2.5,10,0.0 +12984,41,9.65,32,0.0 +12985,46,12,41,0.0 +12985,20,81,16,0.0 +12985,10,31,46,0.0 +12985,1,18,36,0.0 +12985,38,263.5,22,0.0 +12985,24,4.5,44,0.0 +12985,7,30,41,0.0 +12985,34,14,49,0.0 +12985,19,9.2,13,0.0 +12985,77,13,50,0.0 +12985,23,9,25,0.0 +12985,33,2.5,42,0.0 +12985,45,9.5,28,0.0 +12985,2,19,48,0.0 +12985,76,18,50,0.0 +12985,68,12.5,21,0.0 +12985,51,53,11,0.0 +12985,71,21.5,25,0.0 +12985,62,49.3,15,0.0 +12985,44,19.45,25,0.0 +12985,73,15,2,0.0 +12985,53,32.8,23,0.0 +12985,13,6,49,0.0 +12985,30,25.89,48,0.0 +12985,35,18,15,0.0 +12985,55,24,25,0.0 +12985,28,45.6,20,0.0 +12985,50,16.25,41,0.0 +12985,75,7.75,46,0.0 +12985,27,43.9,17,0.0 +12985,41,9.65,42,0.0 +12985,25,14,27,0.0 +12985,63,43.9,50,0.0 +12985,22,21,40,0.0 +12985,66,17,36,0.0 +12985,57,19.5,30,0.0 +12985,29,123.79,11,0.0 +12985,17,39,24,0.0 +12985,48,12.75,19,0.0 +12985,67,14,7,0.0 +12985,11,21,14,0.0 +12985,14,23.25,32,0.0 +12985,31,12.5,11,0.0 +12985,60,34,34,0.0 +12985,64,33.25,8,0.0 +12985,70,15,36,0.0 +12985,37,26,26,0.0 +12985,12,38,42,0.0 +12985,16,17.45,2,0.0 +12985,9,97,11,0.0 +12985,32,32,6,0.0 +12985,18,62.5,50,0.0 +12985,8,40,38,0.0 +12985,36,19,5,0.0 +12985,72,34.8,12,0.0 +12985,5,21.35,16,0.0 +12985,4,22,7,0.0 +12985,43,46,9,0.0 +12985,54,7.45,8,0.0 +12985,47,9.5,28,0.0 +12985,39,18,47,0.0 +12985,59,55,16,0.0 +12985,74,10,36,0.0 +12985,52,7,16,0.0 +12985,6,25,32,0.0 +12985,56,38,50,0.0 +12985,40,18.4,39,0.0 +12985,15,15.5,18,0.0 +12985,3,10,20,0.0 +12985,21,10,22,0.0 +12985,49,20,19,0.0 +12985,61,28.5,23,0.0 +12985,42,14,18,0.0 +12985,65,21.05,5,0.0 +12985,26,31.23,23,0.0 +12985,58,13.25,6,0.0 +12986,55,24,9,0.0 +12986,26,31.23,30,0.0 +12987,41,9.65,7,0.0 +12987,2,19,24,0.0 +12987,68,12.5,8,0.0 +12987,1,18,45,0.0 +12987,53,32.8,3,0.0 +12987,12,38,23,0.0 +12987,29,123.79,41,0.0 +12987,52,7,38,0.0 +12987,33,2.5,43,0.0 +12987,36,19,27,0.0 +12987,30,25.89,39,0.0 +12987,3,10,26,0.0 +12987,59,55,43,0.0 +12987,21,10,17,0.0 +12987,63,43.9,20,0.0 +12987,56,38,39,0.0 +12987,11,21,24,0.0 +12987,19,9.2,6,0.0 +12987,75,7.75,35,0.0 +12987,10,31,5,0.0 +12987,20,81,45,0.0 +12987,17,39,45,0.0 +12987,27,43.9,25,0.0 +12987,45,9.5,14,0.0 +12987,31,12.5,45,0.0 +12987,66,17,40,0.0 +12987,34,14,22,0.0 +12987,43,46,10,0.0 +12987,38,263.5,43,0.0 +12987,51,53,5,0.0 +12987,74,10,42,0.0 +12987,22,21,18,0.0 +12987,57,19.5,16,0.0 +12987,9,97,26,0.0 +12987,70,15,37,0.0 +12987,13,6,3,0.0 +12987,69,36,43,0.0 +12987,71,21.5,50,0.0 +12987,39,18,25,0.0 +12987,46,12,29,0.0 +12987,47,9.5,11,0.0 +12987,18,62.5,1,0.0 +12987,40,18.4,29,0.0 +12987,5,21.35,29,0.0 +12987,16,17.45,2,0.0 +12987,15,15.5,38,0.0 +12987,25,14,39,0.0 +12987,50,16.25,49,0.0 +12987,26,31.23,26,0.0 +12987,77,13,36,0.0 +12987,32,32,39,0.0 +12988,59,55,49,0.0 +12988,9,97,14,0.0 +12988,5,21.35,42,0.0 +12988,3,10,49,0.0 +12988,37,26,45,0.0 +12988,54,7.45,7,0.0 +12988,38,263.5,32,0.0 +12988,7,30,28,0.0 +12988,65,21.05,44,0.0 +12988,43,46,13,0.0 +12988,74,10,46,0.0 +12988,26,31.23,40,0.0 +12988,58,13.25,6,0.0 +12988,36,19,17,0.0 +12988,49,20,1,0.0 +12988,76,18,5,0.0 +12988,18,62.5,29,0.0 +12988,22,21,24,0.0 +12988,55,24,37,0.0 +12988,13,6,43,0.0 +12988,51,53,9,0.0 +12988,71,21.5,2,0.0 +12988,60,34,50,0.0 +12988,15,15.5,19,0.0 +12988,31,12.5,17,0.0 +12988,46,12,35,0.0 +12988,69,36,48,0.0 +12988,1,18,8,0.0 +12988,8,40,46,0.0 +12988,25,14,25,0.0 +12988,32,32,8,0.0 +12988,21,10,22,0.0 +12988,20,81,22,0.0 +12988,50,16.25,40,0.0 +12988,39,18,38,0.0 +12988,70,15,39,0.0 +12988,47,9.5,16,0.0 +12988,6,25,47,0.0 +12988,64,33.25,7,0.0 +12988,4,22,16,0.0 +12988,30,25.89,11,0.0 +12988,33,2.5,43,0.0 +12988,23,9,15,0.0 +12988,41,9.65,4,0.0 +12988,16,17.45,50,0.0 +12988,52,7,21,0.0 +12988,77,13,1,0.0 +12988,2,19,2,0.0 +12988,14,23.25,22,0.0 +12988,40,18.4,2,0.0 +12988,35,18,27,0.0 +12988,12,38,24,0.0 +12988,53,32.8,24,0.0 +12988,75,7.75,36,0.0 +12988,62,49.3,36,0.0 +12988,73,15,3,0.0 +12988,28,45.6,4,0.0 +12988,63,43.9,1,0.0 +12988,45,9.5,12,0.0 +12988,48,12.75,34,0.0 +12988,67,14,44,0.0 +12988,44,19.45,48,0.0 +12988,19,9.2,37,0.0 +12989,64,33.25,1,0.0 +12989,26,31.23,36,0.0 +12989,7,30,5,0.0 +12990,16,17.45,30,0.0 +12990,44,19.45,29,0.0 +12990,72,34.8,48,0.0 +12990,8,40,36,0.0 +12990,1,18,3,0.0 +12990,37,26,7,0.0 +12990,50,16.25,3,0.0 +12990,46,12,1,0.0 +12990,31,12.5,32,0.0 +12990,43,46,16,0.0 +12990,73,15,41,0.0 +12990,12,38,48,0.0 +12990,42,14,3,0.0 +12990,32,32,36,0.0 +12990,28,45.6,21,0.0 +12990,7,30,41,0.0 +12990,33,2.5,2,0.0 +12990,68,12.5,25,0.0 +12990,58,13.25,6,0.0 +12990,36,19,35,0.0 +12990,71,21.5,37,0.0 +12990,64,33.25,29,0.0 +12990,34,14,34,0.0 +12990,48,12.75,18,0.0 +12990,22,21,32,0.0 +12990,63,43.9,19,0.0 +12990,26,31.23,3,0.0 +12990,13,6,22,0.0 +12990,20,81,23,0.0 +12990,77,13,25,0.0 +12990,65,21.05,23,0.0 +12990,25,14,16,0.0 +12990,15,15.5,33,0.0 +12990,52,7,20,0.0 +12990,21,10,30,0.0 +12990,61,28.5,45,0.0 +12990,29,123.79,8,0.0 +12990,10,31,4,0.0 +12990,76,18,20,0.0 +12990,41,9.65,50,0.0 +12990,45,9.5,14,0.0 +12990,40,18.4,22,0.0 +12990,54,7.45,44,0.0 +12990,23,9,15,0.0 +12990,51,53,42,0.0 +12990,67,14,30,0.0 +12990,11,21,29,0.0 +12990,53,32.8,33,0.0 +12990,56,38,13,0.0 +12990,60,34,4,0.0 +12990,9,97,14,0.0 +12990,59,55,50,0.0 +12990,38,263.5,8,0.0 +12990,27,43.9,16,0.0 +12990,57,19.5,15,0.0 +12990,3,10,10,0.0 +12990,49,20,50,0.0 +12990,75,7.75,43,0.0 +12990,66,17,23,0.0 +12990,62,49.3,50,0.0 +12990,70,15,37,0.0 +12990,74,10,27,0.0 +12990,2,19,14,0.0 +12990,30,25.89,47,0.0 +12990,18,62.5,15,0.0 +12990,5,21.35,9,0.0 +12990,19,9.2,34,0.0 +12990,39,18,39,0.0 +12990,24,4.5,4,0.0 +12990,4,22,2,0.0 +12990,55,24,25,0.0 +12990,47,9.5,34,0.0 +12990,14,23.25,48,0.0 +12990,35,18,32,0.0 +12990,69,36,21,0.0 +12990,17,39,42,0.0 +12991,72,34.8,39,0.0 +12991,61,28.5,43,0.0 +12991,59,55,19,0.0 +12991,56,38,9,0.0 +12991,57,19.5,28,0.0 +12991,51,53,42,0.0 +12991,3,10,46,0.0 +12991,11,21,33,0.0 +12991,37,26,5,0.0 +12991,44,19.45,42,0.0 +12991,16,17.45,7,0.0 +12991,29,123.79,24,0.0 +12991,6,25,11,0.0 +12991,58,13.25,42,0.0 +12991,12,38,18,0.0 +12991,5,21.35,21,0.0 +12991,46,12,27,0.0 +12991,71,21.5,32,0.0 +12991,45,9.5,48,0.0 +12991,60,34,42,0.0 +12991,20,81,20,0.0 +12991,9,97,33,0.0 +12991,10,31,11,0.0 +12991,43,46,12,0.0 +12991,30,25.89,24,0.0 +12991,40,18.4,25,0.0 +12991,49,20,37,0.0 +12991,70,15,21,0.0 +12991,66,17,25,0.0 +12991,2,19,17,0.0 +12992,43,46,38,0.0 +12992,52,7,26,0.0 +12992,31,12.5,36,0.0 +12992,49,20,2,0.0 +12992,29,123.79,21,0.0 +12992,6,25,17,0.0 +12993,51,53,18,0.0 +12993,74,10,19,0.0 +12993,16,17.45,1,0.0 +12993,69,36,29,0.0 +12993,61,28.5,27,0.0 +12993,77,13,45,0.0 +12993,5,21.35,4,0.0 +12993,33,2.5,34,0.0 +12993,35,18,23,0.0 +12993,66,17,1,0.0 +12993,11,21,50,0.0 +12993,41,9.65,22,0.0 +12993,73,15,2,0.0 +12993,53,32.8,27,0.0 +12993,30,25.89,17,0.0 +12993,47,9.5,24,0.0 +12993,2,19,50,0.0 +12993,32,32,23,0.0 +12993,36,19,39,0.0 +12993,37,26,4,0.0 +12993,67,14,25,0.0 +12993,14,23.25,3,0.0 +12993,64,33.25,17,0.0 +12993,31,12.5,36,0.0 +12993,45,9.5,32,0.0 +12993,20,81,19,0.0 +12993,50,16.25,32,0.0 +12993,48,12.75,37,0.0 +12993,43,46,17,0.0 +12993,27,43.9,2,0.0 +12993,3,10,44,0.0 +12993,70,15,49,0.0 +12993,54,7.45,28,0.0 +12993,21,10,32,0.0 +12993,40,18.4,7,0.0 +12993,1,18,37,0.0 +12993,17,39,5,0.0 +12993,4,22,24,0.0 +12993,26,31.23,21,0.0 +12993,28,45.6,30,0.0 +12993,12,38,50,0.0 +12993,49,20,30,0.0 +12993,8,40,19,0.0 +12993,10,31,31,0.0 +12993,65,21.05,15,0.0 +12993,57,19.5,6,0.0 +12993,7,30,39,0.0 +12993,29,123.79,5,0.0 +12993,22,21,24,0.0 +12993,56,38,11,0.0 +12993,34,14,45,0.0 +12993,58,13.25,34,0.0 +12993,46,12,38,0.0 +12994,32,32,14,0.0 +12994,25,14,24,0.0 +12994,65,21.05,15,0.0 +12994,59,55,16,0.0 +12994,57,19.5,10,0.0 +12994,33,2.5,2,0.0 +12994,10,31,40,0.0 +12994,24,4.5,37,0.0 +12994,37,26,11,0.0 +12994,70,15,15,0.0 +12994,63,43.9,28,0.0 +12994,5,21.35,25,0.0 +12994,1,18,33,0.0 +12994,13,6,3,0.0 +12994,66,17,16,0.0 +12994,54,7.45,38,0.0 +12994,40,18.4,43,0.0 +12994,68,12.5,41,0.0 +12994,23,9,48,0.0 +12994,31,12.5,32,0.0 +12994,72,34.8,46,0.0 +12994,19,9.2,15,0.0 +12994,28,45.6,1,0.0 +12994,44,19.45,30,0.0 +12994,61,28.5,18,0.0 +12994,12,38,27,0.0 +12994,14,23.25,10,0.0 +12994,39,18,34,0.0 +12994,15,15.5,1,0.0 +12994,50,16.25,34,0.0 +12994,8,40,19,0.0 +12994,34,14,19,0.0 +12994,47,9.5,32,0.0 +12994,9,97,18,0.0 +12994,69,36,2,0.0 +12994,46,12,5,0.0 +12994,64,33.25,50,0.0 +12994,26,31.23,7,0.0 +12994,6,25,14,0.0 +12994,16,17.45,4,0.0 +12994,58,13.25,6,0.0 +12994,22,21,20,0.0 +12994,38,263.5,22,0.0 +12994,67,14,41,0.0 +12994,27,43.9,8,0.0 +12994,3,10,28,0.0 +12994,62,49.3,28,0.0 +12994,60,34,32,0.0 +12994,56,38,44,0.0 +12994,71,21.5,47,0.0 +12994,43,46,3,0.0 +12994,73,15,9,0.0 +12994,18,62.5,45,0.0 +12994,45,9.5,26,0.0 +12994,41,9.65,20,0.0 +12994,36,19,44,0.0 +12994,30,25.89,12,0.0 +12994,55,24,49,0.0 +12994,17,39,11,0.0 +12994,76,18,27,0.0 +12994,77,13,9,0.0 +12994,49,20,6,0.0 +12994,11,21,27,0.0 +12994,52,7,8,0.0 +12994,2,19,41,0.0 +12994,7,30,8,0.0 +12994,42,14,29,0.0 +12995,40,18.4,7,0.0 +12995,38,263.5,50,0.0 +12995,36,19,43,0.0 +12995,10,31,16,0.0 +12995,53,32.8,19,0.0 +12995,26,31.23,3,0.0 +12995,70,15,33,0.0 +12995,33,2.5,32,0.0 +12995,75,7.75,26,0.0 +12995,71,21.5,44,0.0 +12995,68,12.5,47,0.0 +12995,7,30,48,0.0 +12995,6,25,21,0.0 +12995,28,45.6,16,0.0 +12995,67,14,4,0.0 +12995,19,9.2,47,0.0 +12995,66,17,46,0.0 +12995,14,23.25,44,0.0 +12995,17,39,1,0.0 +12995,21,10,17,0.0 +12995,72,34.8,5,0.0 +12995,61,28.5,38,0.0 +12995,39,18,15,0.0 +12995,52,7,5,0.0 +12995,65,21.05,13,0.0 +12996,47,9.5,34,0.0 +12996,3,10,15,0.0 +12996,58,13.25,25,0.0 +12996,63,43.9,38,0.0 +12996,6,25,14,0.0 +12996,67,14,49,0.0 +12996,1,18,9,0.0 +12996,56,38,49,0.0 +12996,77,13,26,0.0 +12996,10,31,9,0.0 +12996,46,12,14,0.0 +12996,36,19,5,0.0 +12997,44,19.45,17,0.0 +12997,60,34,41,0.0 +12997,13,6,28,0.0 +12997,19,9.2,11,0.0 +12997,64,33.25,4,0.0 +12997,45,9.5,21,0.0 +12997,57,19.5,29,0.0 +12997,1,18,30,0.0 +12997,74,10,36,0.0 +12997,20,81,18,0.0 +12997,38,263.5,11,0.0 +12997,72,34.8,1,0.0 +12997,29,123.79,3,0.0 +12997,47,9.5,13,0.0 +12997,8,40,7,0.0 +12997,51,53,46,0.0 +12997,69,36,4,0.0 +12997,77,13,46,0.0 +12997,53,32.8,46,0.0 +12997,58,13.25,49,0.0 +12997,3,10,46,0.0 +12997,23,9,48,0.0 +12997,16,17.45,24,0.0 +12997,24,4.5,6,0.0 +12997,32,32,50,0.0 +12997,43,46,34,0.0 +12997,48,12.75,35,0.0 +12998,58,13.25,39,0.0 +12998,43,46,36,0.0 +12998,57,19.5,17,0.0 +12998,4,22,10,0.0 +12998,16,17.45,8,0.0 +12998,2,19,28,0.0 +12998,19,9.2,46,0.0 +12998,76,18,19,0.0 +12998,61,28.5,27,0.0 +12998,64,33.25,17,0.0 +12998,9,97,45,0.0 +12998,38,263.5,45,0.0 +12998,72,34.8,14,0.0 +12998,41,9.65,44,0.0 +12998,47,9.5,48,0.0 +12998,26,31.23,30,0.0 +12998,27,43.9,48,0.0 +12998,24,4.5,7,0.0 +12998,53,32.8,45,0.0 +12998,52,7,7,0.0 +12998,12,38,1,0.0 +12998,35,18,8,0.0 +12998,65,21.05,36,0.0 +12998,51,53,41,0.0 +12998,63,43.9,5,0.0 +12998,25,14,27,0.0 +12998,7,30,31,0.0 +12998,28,45.6,36,0.0 +12998,44,19.45,35,0.0 +12998,70,15,1,0.0 +12998,10,31,1,0.0 +12998,3,10,5,0.0 +12998,74,10,10,0.0 +12998,8,40,46,0.0 +12998,32,32,13,0.0 +12998,42,14,50,0.0 +12998,46,12,42,0.0 +12998,17,39,35,0.0 +12998,37,26,9,0.0 +12998,31,12.5,1,0.0 +12998,45,9.5,42,0.0 +12998,18,62.5,33,0.0 +12998,40,18.4,24,0.0 +12998,39,18,14,0.0 +12998,22,21,33,0.0 +12998,62,49.3,35,0.0 +12998,23,9,4,0.0 +12999,71,21.5,10,0.0 +12999,46,12,5,0.0 +12999,4,22,26,0.0 +12999,37,26,17,0.0 +12999,74,10,49,0.0 +12999,29,123.79,16,0.0 +12999,41,9.65,49,0.0 +12999,47,9.5,22,0.0 +12999,11,21,7,0.0 +12999,35,18,41,0.0 +12999,32,32,28,0.0 +12999,21,10,8,0.0 +12999,51,53,46,0.0 +12999,34,14,39,0.0 +12999,73,15,27,0.0 +12999,44,19.45,41,0.0 +12999,38,263.5,17,0.0 +12999,76,18,42,0.0 +12999,75,7.75,26,0.0 +12999,69,36,34,0.0 +12999,49,20,2,0.0 +12999,58,13.25,20,0.0 +12999,2,19,21,0.0 +12999,5,21.35,7,0.0 +12999,52,7,10,0.0 +12999,63,43.9,21,0.0 +12999,15,15.5,35,0.0 +12999,14,23.25,31,0.0 +12999,27,43.9,36,0.0 +12999,6,25,50,0.0 +12999,64,33.25,13,0.0 +12999,17,39,50,0.0 +12999,43,46,9,0.0 +12999,68,12.5,35,0.0 +12999,26,31.23,48,0.0 +12999,53,32.8,40,0.0 +12999,54,7.45,48,0.0 +12999,30,25.89,16,0.0 +12999,36,19,43,0.0 +12999,56,38,2,0.0 +12999,33,2.5,21,0.0 +12999,24,4.5,39,0.0 +12999,61,28.5,22,0.0 +12999,40,18.4,32,0.0 +12999,42,14,29,0.0 +13000,24,4.5,2,0.0 +13000,48,12.75,2,0.0 +13000,32,32,44,0.0 +13000,11,21,8,0.0 +13000,9,97,39,0.0 +13000,26,31.23,31,0.0 +13000,46,12,33,0.0 +13000,18,62.5,18,0.0 +13000,49,20,29,0.0 +13000,5,21.35,14,0.0 +13000,76,18,38,0.0 +13000,30,25.89,47,0.0 +13000,21,10,45,0.0 +13000,15,15.5,38,0.0 +13000,70,15,35,0.0 +13001,31,12.5,47,0.0 +13001,29,123.79,39,0.0 +13001,18,62.5,37,0.0 +13001,16,17.45,46,0.0 +13001,60,34,2,0.0 +13001,52,7,44,0.0 +13001,7,30,34,0.0 +13001,5,21.35,10,0.0 +13001,49,20,50,0.0 +13001,1,18,16,0.0 +13001,72,34.8,34,0.0 +13001,67,14,42,0.0 +13001,58,13.25,32,0.0 +13001,53,32.8,5,0.0 +13001,66,17,42,0.0 +13001,25,14,47,0.0 +13001,14,23.25,25,0.0 +13002,76,18,32,0.0 +13002,47,9.5,16,0.0 +13002,65,21.05,15,0.0 +13002,62,49.3,50,0.0 +13002,7,30,44,0.0 +13002,46,12,11,0.0 +13002,58,13.25,36,0.0 +13002,41,9.65,3,0.0 +13002,54,7.45,48,0.0 +13002,32,32,15,0.0 +13002,69,36,28,0.0 +13002,66,17,41,0.0 +13002,21,10,42,0.0 +13002,20,81,45,0.0 +13002,56,38,6,0.0 +13002,31,12.5,19,0.0 +13002,33,2.5,16,0.0 +13002,13,6,42,0.0 +13002,59,55,35,0.0 +13002,71,21.5,26,0.0 +13002,50,16.25,42,0.0 +13002,45,9.5,50,0.0 +13002,29,123.79,33,0.0 +13002,2,19,37,0.0 +13002,49,20,12,0.0 +13002,64,33.25,40,0.0 +13002,9,97,19,0.0 +13002,5,21.35,31,0.0 +13002,53,32.8,50,0.0 +13002,67,14,25,0.0 +13002,30,25.89,16,0.0 +13002,57,19.5,49,0.0 +13002,22,21,22,0.0 +13002,72,34.8,50,0.0 +13002,68,12.5,41,0.0 +13002,43,46,32,0.0 +13002,37,26,34,0.0 +13002,4,22,45,0.0 +13002,10,31,13,0.0 +13002,24,4.5,40,0.0 +13002,55,24,30,0.0 +13002,73,15,22,0.0 +13002,18,62.5,27,0.0 +13002,36,19,14,0.0 +13002,25,14,25,0.0 +13002,48,12.75,3,0.0 +13002,16,17.45,5,0.0 +13002,23,9,36,0.0 +13002,40,18.4,49,0.0 +13002,39,18,2,0.0 +13003,31,12.5,16,0.0 +13003,66,17,33,0.0 +13003,19,9.2,21,0.0 +13003,68,12.5,18,0.0 +13003,24,4.5,42,0.0 +13003,25,14,10,0.0 +13003,55,24,48,0.0 +13003,52,7,10,0.0 +13003,37,26,30,0.0 +13003,36,19,41,0.0 +13003,59,55,15,0.0 +13003,75,7.75,2,0.0 +13003,46,12,24,0.0 +13003,26,31.23,50,0.0 +13003,67,14,3,0.0 +13003,72,34.8,41,0.0 +13003,47,9.5,34,0.0 +13003,4,22,19,0.0 +13003,8,40,49,0.0 +13003,69,36,14,0.0 +13003,48,12.75,5,0.0 +13003,54,7.45,25,0.0 +13003,38,263.5,14,0.0 +13003,57,19.5,41,0.0 +13003,58,13.25,4,0.0 +13003,16,17.45,4,0.0 +13003,27,43.9,13,0.0 +13003,30,25.89,11,0.0 +13003,40,18.4,24,0.0 +13003,53,32.8,29,0.0 +13003,13,6,18,0.0 +13003,49,20,11,0.0 +13003,39,18,19,0.0 +13003,71,21.5,32,0.0 +13004,27,43.9,30,0.0 +13004,62,49.3,40,0.0 +13004,4,22,24,0.0 +13004,70,15,32,0.0 +13004,7,30,46,0.0 +13004,52,7,47,0.0 +13004,31,12.5,32,0.0 +13004,35,18,33,0.0 +13004,44,19.45,6,0.0 +13004,51,53,19,0.0 +13004,11,21,24,0.0 +13004,75,7.75,43,0.0 +13005,74,10,31,0.0 +13005,4,22,6,0.0 +13005,41,9.65,12,0.0 +13005,61,28.5,41,0.0 +13005,64,33.25,41,0.0 +13005,44,19.45,24,0.0 +13005,35,18,22,0.0 +13005,60,34,5,0.0 +13005,40,18.4,35,0.0 +13005,48,12.75,9,0.0 +13005,8,40,27,0.0 +13005,13,6,21,0.0 +13005,62,49.3,50,0.0 +13005,9,97,21,0.0 +13005,25,14,33,0.0 +13005,20,81,24,0.0 +13005,29,123.79,31,0.0 +13005,16,17.45,18,0.0 +13005,31,12.5,32,0.0 +13005,6,25,20,0.0 +13005,58,13.25,28,0.0 +13005,18,62.5,38,0.0 +13005,17,39,6,0.0 +13005,15,15.5,4,0.0 +13005,73,15,29,0.0 +13005,50,16.25,50,0.0 +13005,30,25.89,29,0.0 +13005,47,9.5,7,0.0 +13005,12,38,42,0.0 +13005,69,36,18,0.0 +13005,28,45.6,8,0.0 +13005,72,34.8,10,0.0 +13005,26,31.23,48,0.0 +13005,39,18,37,0.0 +13005,46,12,35,0.0 +13005,36,19,12,0.0 +13005,32,32,27,0.0 +13005,68,12.5,3,0.0 +13005,75,7.75,2,0.0 +13005,57,19.5,27,0.0 +13005,22,21,1,0.0 +13005,11,21,15,0.0 +13005,27,43.9,5,0.0 +13005,23,9,46,0.0 +13005,33,2.5,43,0.0 +13005,21,10,17,0.0 +13005,67,14,18,0.0 +13005,37,26,38,0.0 +13005,2,19,19,0.0 +13005,66,17,3,0.0 +13005,42,14,30,0.0 +13005,63,43.9,1,0.0 +13005,59,55,22,0.0 +13005,38,263.5,37,0.0 +13005,7,30,26,0.0 +13005,65,21.05,4,0.0 +13005,49,20,23,0.0 +13005,45,9.5,50,0.0 +13005,71,21.5,1,0.0 +13005,70,15,31,0.0 +13005,43,46,45,0.0 +13005,10,31,45,0.0 +13005,76,18,27,0.0 +13005,1,18,43,0.0 +13005,51,53,1,0.0 +13005,55,24,7,0.0 +13005,56,38,11,0.0 +13005,54,7.45,31,0.0 +13005,52,7,34,0.0 +13005,14,23.25,22,0.0 +13005,19,9.2,23,0.0 +13005,77,13,49,0.0 +13005,24,4.5,38,0.0 +13005,34,14,32,0.0 +13005,53,32.8,19,0.0 +13005,5,21.35,44,0.0 +13006,53,32.8,35,0.0 +13006,28,45.6,18,0.0 +13006,34,14,4,0.0 +13006,42,14,17,0.0 +13006,68,12.5,24,0.0 +13006,73,15,15,0.0 +13006,13,6,15,0.0 +13006,1,18,41,0.0 +13006,11,21,4,0.0 +13006,52,7,25,0.0 +13006,39,18,35,0.0 +13006,2,19,18,0.0 +13006,4,22,19,0.0 +13006,59,55,7,0.0 +13006,15,15.5,28,0.0 +13006,38,263.5,7,0.0 +13006,60,34,15,0.0 +13006,27,43.9,2,0.0 +13006,61,28.5,50,0.0 +13006,65,21.05,23,0.0 +13006,70,15,47,0.0 +13006,54,7.45,8,0.0 +13006,16,17.45,30,0.0 +13006,58,13.25,31,0.0 +13006,47,9.5,45,0.0 +13006,49,20,1,0.0 +13006,63,43.9,42,0.0 +13006,62,49.3,22,0.0 +13006,55,24,21,0.0 +13006,29,123.79,33,0.0 +13006,31,12.5,24,0.0 +13006,72,34.8,28,0.0 +13006,8,40,5,0.0 +13006,57,19.5,36,0.0 +13006,9,97,11,0.0 +13006,46,12,39,0.0 +13006,44,19.45,11,0.0 +13006,3,10,24,0.0 +13006,40,18.4,7,0.0 +13006,69,36,37,0.0 +13007,20,81,46,0.0 +13007,48,12.75,17,0.0 +13007,12,38,6,0.0 +13007,11,21,45,0.0 +13007,44,19.45,39,0.0 +13007,5,21.35,30,0.0 +13007,50,16.25,21,0.0 +13007,47,9.5,34,0.0 +13007,24,4.5,30,0.0 +13007,1,18,46,0.0 +13007,58,13.25,23,0.0 +13007,17,39,8,0.0 +13007,9,97,15,0.0 +13007,30,25.89,37,0.0 +13007,73,15,50,0.0 +13007,53,32.8,33,0.0 +13007,7,30,39,0.0 +13007,32,32,50,0.0 +13007,34,14,7,0.0 +13007,64,33.25,40,0.0 +13007,72,34.8,49,0.0 +13007,68,12.5,50,0.0 +13007,8,40,9,0.0 +13007,45,9.5,34,0.0 +13007,70,15,1,0.0 +13007,52,7,31,0.0 +13007,31,12.5,39,0.0 +13007,26,31.23,41,0.0 +13008,59,55,25,0.0 +13008,38,263.5,27,0.0 +13008,71,21.5,19,0.0 +13008,62,49.3,19,0.0 +13008,23,9,9,0.0 +13008,6,25,6,0.0 +13008,34,14,2,0.0 +13008,57,19.5,11,0.0 +13008,46,12,4,0.0 +13008,14,23.25,48,0.0 +13008,12,38,14,0.0 +13008,32,32,44,0.0 +13008,60,34,23,0.0 +13008,4,22,37,0.0 +13008,56,38,20,0.0 +13008,36,19,40,0.0 +13008,18,62.5,48,0.0 +13008,1,18,1,0.0 +13008,67,14,25,0.0 +13008,43,46,21,0.0 +13008,68,12.5,27,0.0 +13008,45,9.5,8,0.0 +13008,76,18,44,0.0 +13008,37,26,42,0.0 +13008,25,14,14,0.0 +13008,39,18,6,0.0 +13008,77,13,15,0.0 +13008,16,17.45,29,0.0 +13008,73,15,14,0.0 +13008,35,18,24,0.0 +13008,20,81,18,0.0 +13008,9,97,9,0.0 +13008,19,9.2,33,0.0 +13008,51,53,50,0.0 +13008,15,15.5,37,0.0 +13008,75,7.75,37,0.0 +13008,70,15,31,0.0 +13008,49,20,5,0.0 +13008,11,21,2,0.0 +13008,42,14,3,0.0 +13008,52,7,44,0.0 +13008,72,34.8,1,0.0 +13008,65,21.05,47,0.0 +13008,58,13.25,45,0.0 +13008,29,123.79,24,0.0 +13008,31,12.5,49,0.0 +13008,5,21.35,44,0.0 +13008,13,6,50,0.0 +13008,63,43.9,22,0.0 +13008,48,12.75,26,0.0 +13008,26,31.23,13,0.0 +13008,3,10,14,0.0 +13008,28,45.6,4,0.0 +13008,17,39,6,0.0 +13008,21,10,20,0.0 +13008,66,17,10,0.0 +13008,24,4.5,11,0.0 +13008,64,33.25,44,0.0 +13009,74,10,44,0.0 +13009,68,12.5,19,0.0 +13009,20,81,6,0.0 +13009,64,33.25,2,0.0 +13009,33,2.5,22,0.0 +13009,24,4.5,14,0.0 +13009,40,18.4,22,0.0 +13009,6,25,26,0.0 +13009,3,10,10,0.0 +13009,39,18,25,0.0 +13009,61,28.5,4,0.0 +13009,26,31.23,14,0.0 +13009,11,21,6,0.0 +13009,34,14,48,0.0 +13009,13,6,39,0.0 +13009,70,15,15,0.0 +13009,67,14,37,0.0 +13010,34,14,47,0.0 +13010,16,17.45,44,0.0 +13010,71,21.5,35,0.0 +13010,61,28.5,38,0.0 +13010,9,97,7,0.0 +13010,72,34.8,16,0.0 +13010,43,46,6,0.0 +13010,29,123.79,34,0.0 +13010,77,13,10,0.0 +13010,63,43.9,28,0.0 +13010,55,24,12,0.0 +13010,65,21.05,13,0.0 +13010,3,10,10,0.0 +13010,36,19,18,0.0 +13010,42,14,33,0.0 +13010,53,32.8,39,0.0 +13010,32,32,29,0.0 +13010,44,19.45,27,0.0 +13010,1,18,24,0.0 +13010,13,6,27,0.0 +13010,26,31.23,23,0.0 +13010,17,39,17,0.0 +13010,74,10,23,0.0 +13010,60,34,42,0.0 +13010,18,62.5,15,0.0 +13010,64,33.25,17,0.0 +13010,25,14,42,0.0 +13010,57,19.5,23,0.0 +13010,11,21,34,0.0 +13010,70,15,14,0.0 +13010,45,9.5,16,0.0 +13010,48,12.75,15,0.0 +13010,31,12.5,10,0.0 +13010,59,55,14,0.0 +13010,33,2.5,4,0.0 +13010,49,20,14,0.0 +13010,52,7,26,0.0 +13010,73,15,47,0.0 +13010,10,31,11,0.0 +13010,56,38,30,0.0 +13010,39,18,17,0.0 +13010,14,23.25,49,0.0 +13010,20,81,28,0.0 +13010,50,16.25,22,0.0 +13010,75,7.75,24,0.0 +13010,35,18,14,0.0 +13010,23,9,46,0.0 +13010,8,40,35,0.0 +13010,41,9.65,28,0.0 +13010,76,18,26,0.0 +13010,24,4.5,22,0.0 +13011,1,18,9,0.0 +13011,11,21,45,0.0 +13011,36,19,8,0.0 +13011,5,21.35,21,0.0 +13011,8,40,32,0.0 +13011,35,18,3,0.0 +13011,23,9,12,0.0 +13011,73,15,12,0.0 +13011,3,10,41,0.0 +13011,56,38,43,0.0 +13011,19,9.2,35,0.0 +13011,74,10,7,0.0 +13011,38,263.5,29,0.0 +13011,64,33.25,28,0.0 +13011,50,16.25,26,0.0 +13011,72,34.8,24,0.0 +13011,40,18.4,27,0.0 +13011,6,25,18,0.0 +13011,27,43.9,15,0.0 +13011,12,38,26,0.0 +13011,61,28.5,43,0.0 +13011,71,21.5,41,0.0 +13011,76,18,17,0.0 +13011,7,30,21,0.0 +13011,9,97,46,0.0 +13011,69,36,6,0.0 +13011,20,81,27,0.0 +13011,60,34,16,0.0 +13012,29,123.79,48,0.0 +13012,55,24,11,0.0 +13012,9,97,13,0.0 +13012,30,25.89,39,0.0 +13012,50,16.25,31,0.0 +13012,53,32.8,17,0.0 +13012,65,21.05,23,0.0 +13012,24,4.5,10,0.0 +13012,56,38,45,0.0 +13012,76,18,18,0.0 +13012,34,14,47,0.0 +13012,66,17,46,0.0 +13012,67,14,21,0.0 +13012,75,7.75,30,0.0 +13012,28,45.6,27,0.0 +13012,64,33.25,45,0.0 +13012,41,9.65,31,0.0 +13012,25,14,45,0.0 +13012,13,6,6,0.0 +13012,49,20,42,0.0 +13012,23,9,9,0.0 +13012,44,19.45,13,0.0 +13012,68,12.5,50,0.0 +13012,77,13,43,0.0 +13012,8,40,4,0.0 +13012,27,43.9,20,0.0 +13012,21,10,15,0.0 +13012,69,36,24,0.0 +13012,10,31,47,0.0 +13012,20,81,36,0.0 +13012,33,2.5,4,0.0 +13012,15,15.5,33,0.0 +13013,10,31,43,0.0 +13013,32,32,48,0.0 +13013,48,12.75,38,0.0 +13013,19,9.2,47,0.0 +13013,21,10,10,0.0 +13013,56,38,21,0.0 +13013,46,12,44,0.0 +13013,42,14,6,0.0 +13013,50,16.25,50,0.0 +13013,3,10,7,0.0 +13013,14,23.25,4,0.0 +13013,72,34.8,21,0.0 +13013,5,21.35,35,0.0 +13013,11,21,27,0.0 +13013,23,9,6,0.0 +13013,17,39,17,0.0 +13013,71,21.5,8,0.0 +13013,34,14,4,0.0 +13013,24,4.5,9,0.0 +13013,37,26,42,0.0 +13013,31,12.5,20,0.0 +13013,44,19.45,15,0.0 +13013,22,21,1,0.0 +13013,1,18,37,0.0 +13013,58,13.25,45,0.0 +13013,12,38,34,0.0 +13013,63,43.9,36,0.0 +13013,36,19,2,0.0 +13013,74,10,4,0.0 +13013,77,13,4,0.0 +13013,67,14,17,0.0 +13013,68,12.5,5,0.0 +13013,69,36,45,0.0 +13013,28,45.6,47,0.0 +13013,52,7,10,0.0 +13013,16,17.45,37,0.0 +13013,70,15,12,0.0 +13013,53,32.8,46,0.0 +13013,35,18,7,0.0 +13013,49,20,14,0.0 +13013,41,9.65,29,0.0 +13013,26,31.23,47,0.0 +13013,33,2.5,35,0.0 +13013,13,6,40,0.0 +13013,15,15.5,33,0.0 +13013,76,18,28,0.0 +13013,8,40,2,0.0 +13013,2,19,33,0.0 +13013,27,43.9,47,0.0 +13013,40,18.4,7,0.0 +13013,65,21.05,33,0.0 +13013,30,25.89,48,0.0 +13013,55,24,2,0.0 +13013,29,123.79,36,0.0 +13013,18,62.5,30,0.0 +13013,75,7.75,36,0.0 +13013,6,25,1,0.0 +13013,45,9.5,19,0.0 +13014,27,43.9,41,0.0 +13014,11,21,45,0.0 +13014,63,43.9,50,0.0 +13014,43,46,50,0.0 +13014,58,13.25,8,0.0 +13014,31,12.5,31,0.0 +13014,28,45.6,21,0.0 +13014,18,62.5,26,0.0 +13014,52,7,30,0.0 +13014,46,12,36,0.0 +13014,66,17,7,0.0 +13014,48,12.75,48,0.0 +13014,3,10,12,0.0 +13014,30,25.89,11,0.0 +13014,62,49.3,7,0.0 +13014,25,14,7,0.0 +13015,48,12.75,26,0.0 +13015,56,38,37,0.0 +13015,4,22,25,0.0 +13015,70,15,24,0.0 +13015,32,32,30,0.0 +13015,69,36,5,0.0 +13015,63,43.9,21,0.0 +13015,23,9,10,0.0 +13015,64,33.25,4,0.0 +13015,61,28.5,25,0.0 +13015,27,43.9,43,0.0 +13015,43,46,42,0.0 +13015,54,7.45,41,0.0 +13015,1,18,13,0.0 +13015,30,25.89,10,0.0 +13015,33,2.5,19,0.0 +13015,19,9.2,4,0.0 +13016,50,16.25,32,0.0 +13016,35,18,42,0.0 +13016,27,43.9,30,0.0 +13016,65,21.05,9,0.0 +13016,36,19,12,0.0 +13016,58,13.25,3,0.0 +13016,1,18,16,0.0 +13016,57,19.5,41,0.0 +13016,33,2.5,15,0.0 +13016,67,14,25,0.0 +13016,47,9.5,38,0.0 +13016,3,10,18,0.0 +13016,20,81,31,0.0 +13016,70,15,14,0.0 +13016,30,25.89,28,0.0 +13016,49,20,7,0.0 +13016,8,40,32,0.0 +13016,73,15,6,0.0 +13016,69,36,26,0.0 +13016,48,12.75,21,0.0 +13016,15,15.5,21,0.0 +13016,37,26,35,0.0 +13016,42,14,34,0.0 +13016,52,7,26,0.0 +13016,39,18,15,0.0 +13016,26,31.23,45,0.0 +13016,32,32,49,0.0 +13016,63,43.9,46,0.0 +13016,23,9,21,0.0 +13016,43,46,43,0.0 +13016,12,38,45,0.0 +13016,29,123.79,21,0.0 +13016,28,45.6,50,0.0 +13016,18,62.5,40,0.0 +13016,19,9.2,19,0.0 +13016,11,21,5,0.0 +13016,45,9.5,2,0.0 +13016,75,7.75,19,0.0 +13016,25,14,22,0.0 +13016,38,263.5,12,0.0 +13017,72,34.8,41,0.0 +13017,47,9.5,8,0.0 +13017,64,33.25,29,0.0 +13017,51,53,37,0.0 +13017,14,23.25,30,0.0 +13017,42,14,44,0.0 +13017,67,14,2,0.0 +13017,43,46,9,0.0 +13017,66,17,32,0.0 +13017,50,16.25,17,0.0 +13017,45,9.5,27,0.0 +13017,31,12.5,49,0.0 +13017,3,10,42,0.0 +13017,24,4.5,22,0.0 +13017,60,34,32,0.0 +13017,38,263.5,8,0.0 +13017,37,26,34,0.0 +13017,49,20,43,0.0 +13017,15,15.5,36,0.0 +13017,46,12,12,0.0 +13017,19,9.2,26,0.0 +13017,7,30,3,0.0 +13017,76,18,11,0.0 +13017,16,17.45,34,0.0 +13017,17,39,34,0.0 +13017,35,18,19,0.0 +13017,36,19,23,0.0 +13017,27,43.9,4,0.0 +13017,74,10,26,0.0 +13017,29,123.79,15,0.0 +13017,48,12.75,21,0.0 +13017,20,81,8,0.0 +13017,44,19.45,31,0.0 +13017,40,18.4,48,0.0 +13017,77,13,33,0.0 +13017,1,18,22,0.0 +13017,57,19.5,37,0.0 +13017,34,14,22,0.0 +13017,26,31.23,50,0.0 +13017,52,7,50,0.0 +13017,59,55,38,0.0 +13017,68,12.5,27,0.0 +13017,58,13.25,9,0.0 +13018,76,18,26,0.0 +13018,64,33.25,2,0.0 +13018,47,9.5,10,0.0 +13018,32,32,34,0.0 +13018,41,9.65,27,0.0 +13018,66,17,26,0.0 +13018,17,39,3,0.0 +13018,10,31,3,0.0 +13018,28,45.6,29,0.0 +13018,5,21.35,30,0.0 +13018,72,34.8,45,0.0 +13018,8,40,48,0.0 +13018,71,21.5,20,0.0 +13018,19,9.2,32,0.0 +13018,34,14,13,0.0 +13018,44,19.45,17,0.0 +13018,26,31.23,50,0.0 +13018,20,81,27,0.0 +13018,27,43.9,45,0.0 +13018,70,15,31,0.0 +13018,69,36,4,0.0 +13018,11,21,48,0.0 +13018,30,25.89,46,0.0 +13018,36,19,1,0.0 +13018,39,18,16,0.0 +13018,1,18,38,0.0 +13018,60,34,31,0.0 +13018,33,2.5,38,0.0 +13018,3,10,23,0.0 +13018,7,30,22,0.0 +13018,58,13.25,15,0.0 +13018,61,28.5,29,0.0 +13018,65,21.05,31,0.0 +13018,18,62.5,7,0.0 +13018,24,4.5,49,0.0 +13018,29,123.79,34,0.0 +13018,55,24,17,0.0 +13018,15,15.5,33,0.0 +13018,35,18,38,0.0 +13018,13,6,41,0.0 +13018,56,38,12,0.0 +13018,23,9,30,0.0 +13018,21,10,27,0.0 +13018,77,13,23,0.0 +13018,12,38,43,0.0 +13018,6,25,46,0.0 +13018,42,14,32,0.0 +13018,59,55,5,0.0 +13018,48,12.75,24,0.0 +13018,43,46,4,0.0 +13018,38,263.5,42,0.0 +13018,49,20,31,0.0 +13018,75,7.75,36,0.0 +13018,25,14,33,0.0 +13018,73,15,44,0.0 +13018,52,7,29,0.0 +13018,63,43.9,7,0.0 +13018,74,10,45,0.0 +13018,2,19,23,0.0 +13018,51,53,19,0.0 +13018,53,32.8,36,0.0 +13018,37,26,5,0.0 +13018,67,14,36,0.0 +13018,22,21,41,0.0 +13018,62,49.3,31,0.0 +13018,50,16.25,13,0.0 +13018,16,17.45,35,0.0 +13018,57,19.5,1,0.0 +13018,4,22,9,0.0 +13018,31,12.5,9,0.0 +13018,9,97,11,0.0 +13018,40,18.4,35,0.0 +13019,14,23.25,42,0.0 +13019,77,13,37,0.0 +13019,57,19.5,3,0.0 +13019,45,9.5,7,0.0 +13019,35,18,22,0.0 +13019,39,18,46,0.0 +13019,65,21.05,2,0.0 +13019,75,7.75,17,0.0 +13019,52,7,2,0.0 +13019,44,19.45,1,0.0 +13019,60,34,3,0.0 +13019,26,31.23,30,0.0 +13019,37,26,40,0.0 +13020,8,40,16,0.0 +13020,17,39,50,0.0 +13020,38,263.5,5,0.0 +13020,37,26,28,0.0 +13020,41,9.65,17,0.0 +13020,49,20,33,0.0 +13020,22,21,48,0.0 +13020,48,12.75,20,0.0 +13020,64,33.25,33,0.0 +13020,70,15,44,0.0 +13020,74,10,31,0.0 +13020,72,34.8,20,0.0 +13020,42,14,36,0.0 +13020,29,123.79,30,0.0 +13020,52,7,20,0.0 +13020,54,7.45,45,0.0 +13020,2,19,40,0.0 +13020,44,19.45,2,0.0 +13020,60,34,30,0.0 +13020,19,9.2,49,0.0 +13021,16,17.45,14,0.0 +13021,54,7.45,26,0.0 +13021,60,34,38,0.0 +13021,12,38,13,0.0 +13021,20,81,29,0.0 +13021,4,22,37,0.0 +13021,70,15,6,0.0 +13021,39,18,39,0.0 +13021,48,12.75,47,0.0 +13021,56,38,28,0.0 +13021,34,14,47,0.0 +13021,30,25.89,40,0.0 +13021,63,43.9,10,0.0 +13021,68,12.5,38,0.0 +13021,67,14,44,0.0 +13021,72,34.8,40,0.0 +13021,23,9,47,0.0 +13021,5,21.35,32,0.0 +13021,35,18,20,0.0 +13021,44,19.45,16,0.0 +13021,76,18,47,0.0 +13021,31,12.5,17,0.0 +13021,8,40,26,0.0 +13021,55,24,49,0.0 +13021,37,26,12,0.0 +13021,29,123.79,15,0.0 +13021,58,13.25,1,0.0 +13021,11,21,34,0.0 +13021,73,15,3,0.0 +13021,69,36,35,0.0 +13021,14,23.25,28,0.0 +13021,24,4.5,28,0.0 +13021,42,14,26,0.0 +13021,50,16.25,19,0.0 +13021,62,49.3,38,0.0 +13021,25,14,32,0.0 +13021,75,7.75,19,0.0 +13021,66,17,7,0.0 +13021,26,31.23,41,0.0 +13021,6,25,6,0.0 +13021,74,10,43,0.0 +13021,71,21.5,17,0.0 +13021,27,43.9,26,0.0 +13021,65,21.05,38,0.0 +13021,21,10,6,0.0 +13021,64,33.25,13,0.0 +13021,2,19,20,0.0 +13021,22,21,29,0.0 +13021,19,9.2,29,0.0 +13021,77,13,44,0.0 +13022,64,33.25,14,0.0 +13022,59,55,41,0.0 +13022,5,21.35,1,0.0 +13022,73,15,31,0.0 +13023,58,13.25,31,0.0 +13023,16,17.45,34,0.0 +13023,9,97,23,0.0 +13023,60,34,6,0.0 +13023,52,7,28,0.0 +13023,4,22,6,0.0 +13023,75,7.75,17,0.0 +13023,29,123.79,21,0.0 +13023,11,21,8,0.0 +13023,51,53,26,0.0 +13024,55,24,22,0.0 +13024,73,15,9,0.0 +13024,77,13,33,0.0 +13024,23,9,44,0.0 +13024,26,31.23,26,0.0 +13024,72,34.8,49,0.0 +13024,15,15.5,41,0.0 +13024,22,21,18,0.0 +13024,42,14,35,0.0 +13024,68,12.5,47,0.0 +13024,49,20,17,0.0 +13024,71,21.5,50,0.0 +13024,74,10,15,0.0 +13024,45,9.5,50,0.0 +13024,2,19,16,0.0 +13024,70,15,14,0.0 +13024,60,34,19,0.0 +13024,48,12.75,28,0.0 +13024,69,36,21,0.0 +13024,5,21.35,23,0.0 +13024,17,39,43,0.0 +13024,46,12,46,0.0 +13024,28,45.6,14,0.0 +13024,3,10,20,0.0 +13024,41,9.65,37,0.0 +13024,30,25.89,22,0.0 +13024,54,7.45,13,0.0 +13024,12,38,27,0.0 +13024,75,7.75,39,0.0 +13024,4,22,12,0.0 +13025,19,9.2,48,0.0 +13025,71,21.5,18,0.0 +13025,13,6,31,0.0 +13025,1,18,17,0.0 +13025,69,36,4,0.0 +13025,54,7.45,22,0.0 +13025,14,23.25,45,0.0 +13025,45,9.5,16,0.0 +13025,72,34.8,26,0.0 +13025,10,31,19,0.0 +13025,77,13,33,0.0 +13025,42,14,38,0.0 +13025,33,2.5,21,0.0 +13025,50,16.25,50,0.0 +13025,16,17.45,28,0.0 +13025,41,9.65,25,0.0 +13025,60,34,10,0.0 +13025,27,43.9,1,0.0 +13025,22,21,26,0.0 +13025,43,46,42,0.0 +13025,9,97,46,0.0 +13025,52,7,22,0.0 +13025,12,38,22,0.0 +13025,49,20,45,0.0 +13025,15,15.5,43,0.0 +13025,57,19.5,39,0.0 +13025,18,62.5,40,0.0 +13025,7,30,6,0.0 +13025,34,14,21,0.0 +13025,29,123.79,43,0.0 +13025,62,49.3,18,0.0 +13025,32,32,23,0.0 +13025,63,43.9,32,0.0 +13025,25,14,21,0.0 +13025,23,9,7,0.0 +13025,47,9.5,25,0.0 +13025,51,53,33,0.0 +13025,24,4.5,45,0.0 +13025,38,263.5,23,0.0 +13025,68,12.5,7,0.0 +13025,53,32.8,31,0.0 +13025,48,12.75,11,0.0 +13025,75,7.75,40,0.0 +13025,4,22,5,0.0 +13025,67,14,41,0.0 +13025,3,10,27,0.0 +13025,17,39,21,0.0 +13025,39,18,26,0.0 +13025,70,15,11,0.0 +13025,28,45.6,45,0.0 +13025,2,19,3,0.0 +13025,74,10,6,0.0 +13025,73,15,19,0.0 +13025,61,28.5,43,0.0 +13025,56,38,10,0.0 +13025,37,26,47,0.0 +13025,5,21.35,37,0.0 +13025,35,18,10,0.0 +13025,20,81,32,0.0 +13025,76,18,49,0.0 +13025,44,19.45,50,0.0 +13025,55,24,43,0.0 +13025,26,31.23,11,0.0 +13025,21,10,13,0.0 +13025,11,21,24,0.0 +13025,66,17,7,0.0 +13025,58,13.25,46,0.0 +13025,59,55,17,0.0 +13025,36,19,12,0.0 +13026,64,33.25,13,0.0 +13026,32,32,22,0.0 +13026,48,12.75,49,0.0 +13026,74,10,7,0.0 +13026,6,25,40,0.0 +13026,25,14,48,0.0 +13026,28,45.6,5,0.0 +13026,34,14,12,0.0 +13026,54,7.45,2,0.0 +13026,62,49.3,47,0.0 +13026,10,31,17,0.0 +13026,45,9.5,1,0.0 +13026,53,32.8,2,0.0 +13026,50,16.25,47,0.0 +13026,51,53,1,0.0 +13026,75,7.75,37,0.0 +13026,46,12,17,0.0 +13027,70,15,3,0.0 +13027,8,40,37,0.0 +13027,27,43.9,46,0.0 +13027,5,21.35,18,0.0 +13027,10,31,15,0.0 +13027,35,18,13,0.0 +13027,38,263.5,47,0.0 +13027,20,81,28,0.0 +13027,45,9.5,18,0.0 +13027,69,36,16,0.0 +13027,13,6,14,0.0 +13027,28,45.6,34,0.0 +13027,41,9.65,40,0.0 +13027,49,20,9,0.0 +13027,63,43.9,7,0.0 +13027,12,38,9,0.0 +13027,74,10,36,0.0 +13027,67,14,3,0.0 +13027,32,32,19,0.0 +13027,37,26,46,0.0 +13027,55,24,3,0.0 +13027,4,22,26,0.0 +13027,11,21,33,0.0 +13027,46,12,21,0.0 +13027,26,31.23,41,0.0 +13027,50,16.25,9,0.0 +13027,60,34,26,0.0 +13027,23,9,38,0.0 +13027,76,18,49,0.0 +13027,71,21.5,6,0.0 +13027,30,25.89,41,0.0 +13027,1,18,49,0.0 +13027,42,14,42,0.0 +13027,17,39,10,0.0 +13027,16,17.45,18,0.0 +13027,75,7.75,26,0.0 +13027,24,4.5,7,0.0 +13027,34,14,2,0.0 +13027,53,32.8,35,0.0 +13027,44,19.45,14,0.0 +13027,58,13.25,28,0.0 +13027,3,10,32,0.0 +13027,31,12.5,49,0.0 +13027,36,19,49,0.0 +13027,6,25,35,0.0 +13028,14,23.25,45,0.0 +13028,73,15,17,0.0 +13028,1,18,2,0.0 +13028,53,32.8,35,0.0 +13028,67,14,10,0.0 +13028,60,34,47,0.0 +13028,48,12.75,14,0.0 +13028,13,6,37,0.0 +13028,36,19,17,0.0 +13028,25,14,26,0.0 +13028,76,18,15,0.0 +13028,16,17.45,6,0.0 +13028,61,28.5,6,0.0 +13028,74,10,45,0.0 +13028,56,38,43,0.0 +13028,18,62.5,36,0.0 +13028,34,14,31,0.0 +13028,32,32,25,0.0 +13028,17,39,36,0.0 +13028,6,25,13,0.0 +13028,37,26,6,0.0 +13028,23,9,20,0.0 +13028,66,17,31,0.0 +13028,57,19.5,20,0.0 +13028,19,9.2,34,0.0 +13028,77,13,17,0.0 +13028,30,25.89,18,0.0 +13028,47,9.5,44,0.0 +13028,28,45.6,7,0.0 +13029,10,31,15,0.0 +13029,27,43.9,22,0.0 +13029,53,32.8,37,0.0 +13029,39,18,23,0.0 +13029,12,38,33,0.0 +13029,60,34,29,0.0 +13029,47,9.5,31,0.0 +13029,72,34.8,39,0.0 +13029,6,25,35,0.0 +13029,29,123.79,37,0.0 +13029,30,25.89,34,0.0 +13029,8,40,31,0.0 +13029,7,30,42,0.0 +13029,50,16.25,23,0.0 +13029,51,53,19,0.0 +13029,5,21.35,45,0.0 +13029,44,19.45,15,0.0 +13029,40,18.4,34,0.0 +13030,41,9.65,30,0.0 +13030,75,7.75,1,0.0 +13030,24,4.5,21,0.0 +13030,42,14,12,0.0 +13030,13,6,17,0.0 +13030,11,21,42,0.0 +13030,59,55,11,0.0 +13030,33,2.5,5,0.0 +13030,76,18,31,0.0 +13030,69,36,39,0.0 +13030,77,13,30,0.0 +13030,62,49.3,44,0.0 +13030,30,25.89,27,0.0 +13030,44,19.45,3,0.0 +13030,72,34.8,41,0.0 +13030,60,34,48,0.0 +13030,54,7.45,50,0.0 +13030,52,7,12,0.0 +13030,17,39,7,0.0 +13030,9,97,46,0.0 +13030,67,14,40,0.0 +13030,4,22,14,0.0 +13030,68,12.5,24,0.0 +13030,51,53,42,0.0 +13030,63,43.9,29,0.0 +13030,32,32,17,0.0 +13030,2,19,33,0.0 +13030,27,43.9,37,0.0 +13030,74,10,11,0.0 +13030,71,21.5,29,0.0 +13030,61,28.5,12,0.0 +13030,5,21.35,31,0.0 +13030,20,81,38,0.0 +13030,50,16.25,21,0.0 +13030,6,25,11,0.0 +13030,25,14,41,0.0 +13030,58,13.25,25,0.0 +13030,1,18,25,0.0 +13030,38,263.5,4,0.0 +13030,57,19.5,30,0.0 +13030,12,38,11,0.0 +13030,45,9.5,2,0.0 +13030,65,21.05,42,0.0 +13030,7,30,21,0.0 +13030,39,18,2,0.0 +13030,34,14,37,0.0 +13030,64,33.25,11,0.0 +13030,31,12.5,25,0.0 +13030,14,23.25,13,0.0 +13030,56,38,25,0.0 +13030,55,24,32,0.0 +13030,49,20,17,0.0 +13030,19,9.2,1,0.0 +13030,23,9,34,0.0 +13030,73,15,46,0.0 +13030,15,15.5,2,0.0 +13030,70,15,15,0.0 +13030,29,123.79,40,0.0 +13030,66,17,12,0.0 +13030,43,46,13,0.0 +13030,28,45.6,23,0.0 +13030,26,31.23,35,0.0 +13030,22,21,6,0.0 +13030,21,10,2,0.0 +13030,8,40,21,0.0 +13030,10,31,36,0.0 +13030,35,18,1,0.0 +13030,3,10,19,0.0 +13030,18,62.5,47,0.0 +13030,46,12,11,0.0 +13030,47,9.5,50,0.0 +13030,48,12.75,1,0.0 +13031,41,9.65,5,0.0 +13031,32,32,33,0.0 +13031,50,16.25,32,0.0 +13031,18,62.5,38,0.0 +13031,33,2.5,25,0.0 +13031,67,14,38,0.0 +13031,56,38,43,0.0 +13031,52,7,20,0.0 +13031,47,9.5,48,0.0 +13031,70,15,19,0.0 +13031,66,17,25,0.0 +13031,27,43.9,8,0.0 +13031,34,14,49,0.0 +13031,39,18,41,0.0 +13031,69,36,37,0.0 +13031,59,55,15,0.0 +13031,55,24,38,0.0 +13031,21,10,42,0.0 +13031,48,12.75,49,0.0 +13031,57,19.5,26,0.0 +13031,29,123.79,41,0.0 +13032,22,21,40,0.0 +13032,52,7,36,0.0 +13032,73,15,20,0.0 +13032,48,12.75,9,0.0 +13032,61,28.5,26,0.0 +13032,42,14,17,0.0 +13032,72,34.8,28,0.0 +13032,25,14,19,0.0 +13032,8,40,21,0.0 +13032,4,22,4,0.0 +13032,65,21.05,4,0.0 +13032,14,23.25,39,0.0 +13032,19,9.2,33,0.0 +13032,56,38,5,0.0 +13032,38,263.5,30,0.0 +13032,28,45.6,49,0.0 +13032,10,31,5,0.0 +13032,40,18.4,35,0.0 +13032,54,7.45,20,0.0 +13032,57,19.5,36,0.0 +13032,50,16.25,24,0.0 +13032,18,62.5,13,0.0 +13032,77,13,44,0.0 +13032,15,15.5,33,0.0 +13032,6,25,5,0.0 +13032,43,46,47,0.0 +13032,20,81,49,0.0 +13032,5,21.35,19,0.0 +13032,37,26,15,0.0 +13032,47,9.5,43,0.0 +13032,41,9.65,6,0.0 +13032,53,32.8,50,0.0 +13032,7,30,12,0.0 +13032,27,43.9,32,0.0 +13032,17,39,45,0.0 +13032,63,43.9,48,0.0 +13032,21,10,35,0.0 +13032,49,20,12,0.0 +13032,2,19,21,0.0 +13032,74,10,5,0.0 +13032,60,34,22,0.0 +13032,71,21.5,45,0.0 +13032,34,14,12,0.0 +13032,58,13.25,1,0.0 +13032,70,15,19,0.0 +13032,29,123.79,5,0.0 +13032,36,19,35,0.0 +13032,39,18,27,0.0 +13032,44,19.45,43,0.0 +13032,12,38,20,0.0 +13032,45,9.5,10,0.0 +13032,24,4.5,17,0.0 +13032,11,21,50,0.0 +13032,67,14,38,0.0 +13032,75,7.75,50,0.0 +13033,4,22,27,0.0 +13033,7,30,47,0.0 +13033,41,9.65,44,0.0 +13033,42,14,35,0.0 +13033,23,9,47,0.0 +13033,68,12.5,9,0.0 +13033,18,62.5,45,0.0 +13033,77,13,9,0.0 +13033,72,34.8,21,0.0 +13033,21,10,31,0.0 +13033,64,33.25,46,0.0 +13033,2,19,9,0.0 +13033,76,18,26,0.0 +13033,58,13.25,10,0.0 +13033,36,19,17,0.0 +13033,38,263.5,47,0.0 +13033,54,7.45,25,0.0 +13033,49,20,31,0.0 +13033,12,38,47,0.0 +13033,45,9.5,23,0.0 +13033,10,31,45,0.0 +13033,70,15,45,0.0 +13033,61,28.5,50,0.0 +13033,31,12.5,35,0.0 +13033,28,45.6,19,0.0 +13033,59,55,32,0.0 +13033,55,24,42,0.0 +13033,8,40,28,0.0 +13033,57,19.5,50,0.0 +13033,1,18,9,0.0 +13033,46,12,23,0.0 +13033,9,97,44,0.0 +13033,15,15.5,21,0.0 +13033,16,17.45,7,0.0 +13033,48,12.75,34,0.0 +13033,5,21.35,45,0.0 +13033,66,17,22,0.0 +13033,47,9.5,5,0.0 +13033,17,39,16,0.0 +13033,62,49.3,6,0.0 +13033,6,25,20,0.0 +13033,11,21,19,0.0 +13033,13,6,12,0.0 +13033,74,10,19,0.0 +13033,20,81,30,0.0 +13033,34,14,23,0.0 +13033,22,21,35,0.0 +13033,30,25.89,31,0.0 +13033,69,36,43,0.0 +13033,40,18.4,44,0.0 +13033,3,10,45,0.0 +13033,50,16.25,16,0.0 +13033,14,23.25,10,0.0 +13033,35,18,36,0.0 +13033,19,9.2,3,0.0 +13033,33,2.5,8,0.0 +13033,25,14,14,0.0 +13033,71,21.5,38,0.0 +13033,60,34,10,0.0 +13033,37,26,22,0.0 +13033,67,14,12,0.0 +13033,65,21.05,7,0.0 +13033,29,123.79,24,0.0 +13033,44,19.45,49,0.0 +13034,44,19.45,4,0.0 +13034,26,31.23,47,0.0 +13034,1,18,41,0.0 +13034,48,12.75,38,0.0 +13034,24,4.5,9,0.0 +13034,63,43.9,2,0.0 +13034,67,14,28,0.0 +13034,35,18,18,0.0 +13034,62,49.3,21,0.0 +13034,32,32,19,0.0 +13034,52,7,13,0.0 +13034,9,97,34,0.0 +13034,20,81,46,0.0 +13034,12,38,31,0.0 +13034,17,39,1,0.0 +13034,29,123.79,33,0.0 +13034,14,23.25,48,0.0 +13034,51,53,10,0.0 +13034,30,25.89,14,0.0 +13034,37,26,50,0.0 +13034,46,12,36,0.0 +13034,15,15.5,26,0.0 +13034,65,21.05,9,0.0 +13034,45,9.5,6,0.0 +13034,11,21,2,0.0 +13034,16,17.45,40,0.0 +13034,42,14,43,0.0 +13034,4,22,13,0.0 +13034,57,19.5,18,0.0 +13034,23,9,20,0.0 +13035,67,14,32,0.0 +13035,68,12.5,29,0.0 +13035,54,7.45,28,0.0 +13035,30,25.89,16,0.0 +13035,59,55,16,0.0 +13035,13,6,28,0.0 +13035,76,18,26,0.0 +13035,3,10,8,0.0 +13035,40,18.4,47,0.0 +13035,32,32,29,0.0 +13035,2,19,17,0.0 +13035,36,19,31,0.0 +13035,22,21,42,0.0 +13035,26,31.23,44,0.0 +13035,71,21.5,37,0.0 +13035,27,43.9,43,0.0 +13035,41,9.65,38,0.0 +13035,14,23.25,43,0.0 +13035,43,46,40,0.0 +13035,70,15,1,0.0 +13035,52,7,29,0.0 +13035,19,9.2,8,0.0 +13036,34,14,14,0.0 +13036,50,16.25,47,0.0 +13036,70,15,4,0.0 +13036,63,43.9,13,0.0 +13036,72,34.8,14,0.0 +13036,66,17,4,0.0 +13036,14,23.25,36,0.0 +13036,23,9,2,0.0 +13036,44,19.45,19,0.0 +13036,62,49.3,40,0.0 +13036,52,7,36,0.0 +13036,13,6,6,0.0 +13036,17,39,15,0.0 +13036,42,14,4,0.0 +13036,22,21,41,0.0 +13036,39,18,18,0.0 +13036,16,17.45,28,0.0 +13036,4,22,6,0.0 +13036,38,263.5,24,0.0 +13036,24,4.5,3,0.0 +13036,64,33.25,43,0.0 +13036,54,7.45,23,0.0 +13036,35,18,41,0.0 +13036,21,10,2,0.0 +13036,15,15.5,4,0.0 +13036,29,123.79,9,0.0 +13036,27,43.9,19,0.0 +13036,76,18,24,0.0 +13036,68,12.5,48,0.0 +13036,30,25.89,34,0.0 +13036,3,10,50,0.0 +13036,61,28.5,34,0.0 +13036,11,21,6,0.0 +13036,8,40,3,0.0 +13036,73,15,43,0.0 +13036,9,97,44,0.0 +13036,32,32,35,0.0 +13037,40,18.4,36,0.0 +13037,9,97,10,0.0 +13037,20,81,36,0.0 +13037,49,20,32,0.0 +13037,10,31,15,0.0 +13037,16,17.45,41,0.0 +13037,48,12.75,47,0.0 +13037,13,6,41,0.0 +13037,24,4.5,29,0.0 +13037,8,40,34,0.0 +13037,11,21,3,0.0 +13037,34,14,30,0.0 +13037,69,36,45,0.0 +13037,22,21,31,0.0 +13037,25,14,4,0.0 +13037,5,21.35,10,0.0 +13037,14,23.25,29,0.0 +13037,36,19,44,0.0 +13037,26,31.23,11,0.0 +13037,60,34,45,0.0 +13037,33,2.5,46,0.0 +13037,18,62.5,14,0.0 +13037,38,263.5,29,0.0 +13037,44,19.45,2,0.0 +13037,15,15.5,13,0.0 +13037,63,43.9,3,0.0 +13037,21,10,38,0.0 +13037,4,22,49,0.0 +13038,2,19,25,0.0 +13038,33,2.5,10,0.0 +13038,62,49.3,21,0.0 +13038,60,34,6,0.0 +13038,43,46,50,0.0 +13038,53,32.8,35,0.0 +13038,40,18.4,5,0.0 +13038,54,7.45,2,0.0 +13038,58,13.25,24,0.0 +13038,55,24,6,0.0 +13038,3,10,28,0.0 +13038,1,18,5,0.0 +13038,69,36,35,0.0 +13038,64,33.25,25,0.0 +13038,6,25,43,0.0 +13038,52,7,40,0.0 +13038,27,43.9,26,0.0 +13038,42,14,35,0.0 +13038,35,18,4,0.0 +13038,47,9.5,32,0.0 +13038,37,26,13,0.0 +13038,26,31.23,42,0.0 +13038,17,39,4,0.0 +13038,41,9.65,18,0.0 +13038,75,7.75,30,0.0 +13038,56,38,5,0.0 +13038,48,12.75,9,0.0 +13038,9,97,20,0.0 +13038,16,17.45,16,0.0 +13038,77,13,1,0.0 +13038,36,19,22,0.0 +13038,29,123.79,23,0.0 +13038,14,23.25,48,0.0 +13038,18,62.5,16,0.0 +13038,45,9.5,41,0.0 +13038,32,32,42,0.0 +13038,30,25.89,37,0.0 +13038,49,20,25,0.0 +13038,70,15,15,0.0 +13038,68,12.5,3,0.0 +13038,73,15,2,0.0 +13038,57,19.5,36,0.0 +13038,46,12,8,0.0 +13038,5,21.35,50,0.0 +13038,50,16.25,15,0.0 +13038,76,18,8,0.0 +13038,15,15.5,1,0.0 +13038,12,38,15,0.0 +13038,34,14,1,0.0 +13038,61,28.5,49,0.0 +13038,4,22,11,0.0 +13038,72,34.8,21,0.0 +13038,74,10,41,0.0 +13038,20,81,50,0.0 +13038,21,10,30,0.0 +13038,22,21,13,0.0 +13038,24,4.5,20,0.0 +13038,59,55,35,0.0 +13038,39,18,23,0.0 +13038,11,21,16,0.0 +13038,8,40,18,0.0 +13038,63,43.9,35,0.0 +13038,51,53,41,0.0 +13038,13,6,25,0.0 +13038,66,17,32,0.0 +13038,31,12.5,33,0.0 +13038,7,30,5,0.0 +13038,44,19.45,12,0.0 +13038,38,263.5,14,0.0 +13038,67,14,40,0.0 +13038,23,9,44,0.0 +13038,28,45.6,40,0.0 +13038,25,14,4,0.0 +13038,71,21.5,24,0.0 +13039,58,13.25,10,0.0 +13039,17,39,3,0.0 +13039,56,38,22,0.0 +13039,3,10,34,0.0 +13039,50,16.25,8,0.0 +13039,59,55,39,0.0 +13039,63,43.9,16,0.0 +13039,57,19.5,45,0.0 +13039,77,13,9,0.0 +13039,45,9.5,43,0.0 +13039,43,46,46,0.0 +13039,30,25.89,1,0.0 +13039,27,43.9,47,0.0 +13039,70,15,45,0.0 +13039,67,14,14,0.0 +13039,36,19,5,0.0 +13039,9,97,36,0.0 +13039,20,81,11,0.0 +13039,10,31,7,0.0 +13039,33,2.5,21,0.0 +13039,16,17.45,46,0.0 +13039,7,30,9,0.0 +13039,51,53,7,0.0 +13039,13,6,19,0.0 +13039,15,15.5,10,0.0 +13039,71,21.5,16,0.0 +13039,26,31.23,3,0.0 +13039,55,24,1,0.0 +13039,6,25,16,0.0 +13039,14,23.25,37,0.0 +13039,40,18.4,9,0.0 +13039,65,21.05,50,0.0 +13039,23,9,8,0.0 +13039,19,9.2,49,0.0 +13039,74,10,17,0.0 +13039,1,18,31,0.0 +13039,25,14,13,0.0 +13039,2,19,33,0.0 +13039,68,12.5,27,0.0 +13039,66,17,16,0.0 +13039,49,20,28,0.0 +13039,48,12.75,34,0.0 +13039,41,9.65,10,0.0 +13039,24,4.5,35,0.0 +13039,72,34.8,25,0.0 +13039,21,10,22,0.0 +13039,12,38,13,0.0 +13039,73,15,4,0.0 +13039,32,32,1,0.0 +13039,29,123.79,15,0.0 +13039,52,7,23,0.0 +13039,44,19.45,1,0.0 +13039,46,12,20,0.0 +13039,76,18,47,0.0 +13039,11,21,20,0.0 +13039,38,263.5,45,0.0 +13039,18,62.5,45,0.0 +13039,35,18,8,0.0 +13039,39,18,32,0.0 +13039,34,14,10,0.0 +13039,54,7.45,22,0.0 +13039,5,21.35,3,0.0 +13039,4,22,39,0.0 +13039,42,14,38,0.0 +13039,69,36,12,0.0 +13039,47,9.5,17,0.0 +13039,62,49.3,24,0.0 +13039,53,32.8,19,0.0 +13039,8,40,38,0.0 +13039,31,12.5,13,0.0 +13040,76,18,21,0.0 +13040,1,18,34,0.0 +13040,58,13.25,11,0.0 +13040,4,22,40,0.0 +13040,21,10,24,0.0 +13040,35,18,4,0.0 +13040,33,2.5,20,0.0 +13040,44,19.45,2,0.0 +13040,24,4.5,42,0.0 +13040,51,53,27,0.0 +13040,20,81,45,0.0 +13040,26,31.23,34,0.0 +13040,55,24,21,0.0 +13040,39,18,12,0.0 +13040,29,123.79,5,0.0 +13040,31,12.5,46,0.0 +13040,18,62.5,35,0.0 +13040,5,21.35,17,0.0 +13040,32,32,47,0.0 +13040,47,9.5,29,0.0 +13040,60,34,13,0.0 +13040,12,38,11,0.0 +13040,8,40,31,0.0 +13040,11,21,9,0.0 +13040,67,14,33,0.0 +13040,74,10,9,0.0 +13040,72,34.8,42,0.0 +13040,25,14,42,0.0 +13040,53,32.8,7,0.0 +13040,75,7.75,6,0.0 +13040,68,12.5,12,0.0 +13040,56,38,28,0.0 +13040,27,43.9,18,0.0 +13040,46,12,21,0.0 +13040,2,19,44,0.0 +13040,65,21.05,2,0.0 +13040,34,14,48,0.0 +13040,23,9,25,0.0 +13040,38,263.5,44,0.0 +13040,6,25,39,0.0 +13040,28,45.6,23,0.0 +13040,22,21,12,0.0 +13040,66,17,38,0.0 +13040,9,97,9,0.0 +13040,54,7.45,7,0.0 +13040,36,19,35,0.0 +13041,53,32.8,14,0.0 +13041,14,23.25,40,0.0 +13041,57,19.5,7,0.0 +13041,35,18,5,0.0 +13041,61,28.5,32,0.0 +13041,33,2.5,7,0.0 +13041,5,21.35,8,0.0 +13041,75,7.75,1,0.0 +13041,24,4.5,30,0.0 +13041,63,43.9,40,0.0 +13041,37,26,48,0.0 +13041,39,18,24,0.0 +13041,40,18.4,9,0.0 +13041,3,10,49,0.0 +13041,9,97,29,0.0 +13041,51,53,15,0.0 +13041,7,30,32,0.0 +13041,66,17,48,0.0 +13041,65,21.05,2,0.0 +13041,43,46,21,0.0 +13041,77,13,15,0.0 +13041,22,21,7,0.0 +13041,36,19,37,0.0 +13041,59,55,14,0.0 +13041,4,22,4,0.0 +13041,58,13.25,27,0.0 +13041,17,39,10,0.0 +13041,67,14,33,0.0 +13041,19,9.2,12,0.0 +13041,56,38,50,0.0 +13041,55,24,32,0.0 +13041,26,31.23,19,0.0 +13041,30,25.89,9,0.0 +13041,42,14,43,0.0 +13041,76,18,29,0.0 +13041,41,9.65,7,0.0 +13041,62,49.3,6,0.0 +13041,68,12.5,15,0.0 +13041,6,25,38,0.0 +13041,23,9,12,0.0 +13041,13,6,44,0.0 +13041,25,14,46,0.0 +13041,15,15.5,8,0.0 +13041,8,40,14,0.0 +13041,34,14,2,0.0 +13041,50,16.25,45,0.0 +13041,48,12.75,40,0.0 +13041,29,123.79,40,0.0 +13042,49,20,2,0.0 +13042,35,18,20,0.0 +13042,42,14,26,0.0 +13042,7,30,44,0.0 +13042,32,32,3,0.0 +13042,27,43.9,28,0.0 +13042,62,49.3,7,0.0 +13042,30,25.89,22,0.0 +13042,2,19,34,0.0 +13042,16,17.45,41,0.0 +13042,22,21,26,0.0 +13042,44,19.45,44,0.0 +13042,46,12,29,0.0 +13042,64,33.25,48,0.0 +13042,20,81,29,0.0 +13042,23,9,14,0.0 +13042,60,34,8,0.0 +13042,54,7.45,49,0.0 +13042,63,43.9,39,0.0 +13042,25,14,46,0.0 +13042,43,46,41,0.0 +13042,13,6,30,0.0 +13042,36,19,14,0.0 +13042,11,21,9,0.0 +13042,39,18,43,0.0 +13042,58,13.25,26,0.0 +13042,41,9.65,28,0.0 +13042,1,18,30,0.0 +13042,31,12.5,19,0.0 +13042,14,23.25,35,0.0 +13042,6,25,13,0.0 +13042,28,45.6,18,0.0 +13042,3,10,15,0.0 +13042,56,38,20,0.0 +13042,74,10,9,0.0 +13042,15,15.5,1,0.0 +13042,59,55,21,0.0 +13042,55,24,37,0.0 +13043,34,14,18,0.0 +13043,21,10,1,0.0 +13043,49,20,30,0.0 +13043,72,34.8,38,0.0 +13043,64,33.25,22,0.0 +13043,6,25,21,0.0 +13043,10,31,36,0.0 +13043,56,38,49,0.0 +13043,53,32.8,44,0.0 +13043,36,19,17,0.0 +13043,47,9.5,1,0.0 +13043,39,18,37,0.0 +13043,40,18.4,7,0.0 +13043,73,15,24,0.0 +13043,20,81,48,0.0 +13043,37,26,13,0.0 +13043,50,16.25,21,0.0 +13043,45,9.5,37,0.0 +13043,77,13,4,0.0 +13043,17,39,29,0.0 +13043,68,12.5,32,0.0 +13043,71,21.5,26,0.0 +13043,42,14,17,0.0 +13043,4,22,49,0.0 +13043,74,10,28,0.0 +13043,23,9,17,0.0 +13043,28,45.6,7,0.0 +13043,2,19,23,0.0 +13043,66,17,45,0.0 +13043,13,6,3,0.0 +13043,5,21.35,17,0.0 +13043,22,21,10,0.0 +13043,38,263.5,1,0.0 +13043,54,7.45,49,0.0 +13043,55,24,38,0.0 +13043,16,17.45,17,0.0 +13043,15,15.5,6,0.0 +13043,1,18,14,0.0 +13043,63,43.9,32,0.0 +13043,26,31.23,22,0.0 +13043,7,30,14,0.0 +13043,60,34,11,0.0 +13043,65,21.05,32,0.0 +13043,52,7,24,0.0 +13044,66,17,30,0.0 +13044,77,13,19,0.0 +13044,75,7.75,3,0.0 +13044,12,38,6,0.0 +13044,19,9.2,27,0.0 +13044,63,43.9,39,0.0 +13044,59,55,11,0.0 +13044,39,18,22,0.0 +13044,71,21.5,15,0.0 +13044,46,12,35,0.0 +13044,54,7.45,16,0.0 +13044,8,40,16,0.0 +13044,3,10,31,0.0 +13044,32,32,3,0.0 +13044,37,26,32,0.0 +13044,22,21,36,0.0 +13044,74,10,23,0.0 +13044,69,36,30,0.0 +13044,50,16.25,40,0.0 +13044,5,21.35,34,0.0 +13044,30,25.89,10,0.0 +13044,1,18,1,0.0 +13044,29,123.79,46,0.0 +13044,48,12.75,24,0.0 +13044,4,22,43,0.0 +13044,36,19,9,0.0 +13044,18,62.5,8,0.0 +13044,24,4.5,9,0.0 +13044,51,53,6,0.0 +13044,64,33.25,7,0.0 +13044,13,6,20,0.0 +13044,47,9.5,6,0.0 +13044,38,263.5,14,0.0 +13044,31,12.5,15,0.0 +13044,28,45.6,37,0.0 +13044,23,9,26,0.0 +13044,40,18.4,46,0.0 +13044,53,32.8,38,0.0 +13044,15,15.5,20,0.0 +13044,2,19,39,0.0 +13044,67,14,35,0.0 +13044,60,34,5,0.0 +13044,44,19.45,33,0.0 +13044,56,38,34,0.0 +13044,16,17.45,32,0.0 +13044,49,20,21,0.0 +13044,33,2.5,46,0.0 +13044,61,28.5,8,0.0 +13044,9,97,21,0.0 +13044,21,10,15,0.0 +13044,55,24,16,0.0 +13044,35,18,1,0.0 +13044,20,81,38,0.0 +13044,34,14,4,0.0 +13044,17,39,13,0.0 +13044,65,21.05,42,0.0 +13044,25,14,19,0.0 +13044,42,14,6,0.0 +13044,73,15,43,0.0 +13044,45,9.5,43,0.0 +13044,7,30,25,0.0 +13044,41,9.65,50,0.0 +13044,58,13.25,2,0.0 +13044,26,31.23,49,0.0 +13044,62,49.3,40,0.0 +13044,6,25,16,0.0 +13044,11,21,46,0.0 +13044,10,31,17,0.0 +13044,70,15,12,0.0 +13045,31,12.5,19,0.0 +13045,45,9.5,33,0.0 +13045,44,19.45,2,0.0 +13045,33,2.5,20,0.0 +13045,68,12.5,20,0.0 +13045,1,18,17,0.0 +13045,2,19,1,0.0 +13045,49,20,14,0.0 +13045,30,25.89,19,0.0 +13045,74,10,48,0.0 +13045,66,17,2,0.0 +13045,35,18,38,0.0 +13045,46,12,44,0.0 +13045,53,32.8,9,0.0 +13045,42,14,2,0.0 +13045,32,32,38,0.0 +13045,56,38,34,0.0 +13045,65,21.05,11,0.0 +13045,77,13,34,0.0 +13045,41,9.65,42,0.0 +13045,3,10,11,0.0 +13045,8,40,26,0.0 +13045,27,43.9,28,0.0 +13045,73,15,34,0.0 +13045,62,49.3,34,0.0 +13045,26,31.23,18,0.0 +13045,69,36,20,0.0 +13045,16,17.45,42,0.0 +13045,55,24,14,0.0 +13045,60,34,7,0.0 +13045,11,21,14,0.0 +13045,36,19,2,0.0 +13045,19,9.2,33,0.0 +13045,71,21.5,46,0.0 +13045,14,23.25,35,0.0 +13045,13,6,14,0.0 +13045,64,33.25,22,0.0 +13045,37,26,48,0.0 +13045,23,9,18,0.0 +13045,52,7,49,0.0 +13045,9,97,42,0.0 +13045,54,7.45,8,0.0 +13045,18,62.5,48,0.0 +13045,76,18,42,0.0 +13045,40,18.4,10,0.0 +13045,25,14,46,0.0 +13045,6,25,8,0.0 +13045,48,12.75,33,0.0 +13045,61,28.5,48,0.0 +13045,43,46,17,0.0 +13045,57,19.5,28,0.0 +13045,4,22,1,0.0 +13045,70,15,25,0.0 +13045,38,263.5,18,0.0 +13045,59,55,5,0.0 +13045,51,53,26,0.0 +13045,39,18,17,0.0 +13045,34,14,42,0.0 +13045,75,7.75,2,0.0 +13045,22,21,25,0.0 +13045,17,39,25,0.0 +13045,12,38,10,0.0 +13045,58,13.25,40,0.0 +13045,5,21.35,43,0.0 +13045,67,14,35,0.0 +13045,29,123.79,49,0.0 +13046,17,39,32,0.0 +13046,60,34,16,0.0 +13046,45,9.5,46,0.0 +13046,13,6,49,0.0 +13046,68,12.5,17,0.0 +13046,44,19.45,2,0.0 +13046,56,38,43,0.0 +13046,14,23.25,23,0.0 +13046,37,26,12,0.0 +13046,77,13,41,0.0 +13046,48,12.75,11,0.0 +13046,55,24,21,0.0 +13046,18,62.5,36,0.0 +13046,7,30,5,0.0 +13046,57,19.5,19,0.0 +13046,31,12.5,45,0.0 +13046,25,14,3,0.0 +13046,20,81,19,0.0 +13046,1,18,48,0.0 +13046,64,33.25,9,0.0 +13046,3,10,28,0.0 +13046,27,43.9,28,0.0 +13046,36,19,37,0.0 +13046,47,9.5,4,0.0 +13046,67,14,22,0.0 +13046,16,17.45,26,0.0 +13046,42,14,21,0.0 +13046,50,16.25,13,0.0 +13046,26,31.23,25,0.0 +13047,32,32,33,0.0 +13047,44,19.45,40,0.0 +13047,65,21.05,11,0.0 +13047,2,19,44,0.0 +13047,55,24,29,0.0 +13047,58,13.25,41,0.0 +13047,66,17,48,0.0 +13047,38,263.5,20,0.0 +13047,14,23.25,2,0.0 +13047,31,12.5,6,0.0 +13047,57,19.5,15,0.0 +13047,42,14,27,0.0 +13047,12,38,1,0.0 +13047,43,46,2,0.0 +13047,77,13,47,0.0 +13047,26,31.23,29,0.0 +13047,62,49.3,30,0.0 +13047,16,17.45,5,0.0 +13047,76,18,16,0.0 +13047,24,4.5,29,0.0 +13047,50,16.25,11,0.0 +13047,17,39,28,0.0 +13047,45,9.5,38,0.0 +13047,61,28.5,8,0.0 +13047,39,18,27,0.0 +13047,54,7.45,37,0.0 +13047,11,21,5,0.0 +13047,63,43.9,10,0.0 +13047,13,6,11,0.0 +13047,6,25,46,0.0 +13047,1,18,8,0.0 +13047,70,15,16,0.0 +13047,52,7,8,0.0 +13047,5,21.35,6,0.0 +13047,56,38,44,0.0 +13047,59,55,11,0.0 +13047,35,18,5,0.0 +13047,60,34,24,0.0 +13047,22,21,11,0.0 +13047,36,19,47,0.0 +13047,64,33.25,46,0.0 +13047,33,2.5,7,0.0 +13047,27,43.9,41,0.0 +13047,41,9.65,26,0.0 +13047,47,9.5,35,0.0 +13047,75,7.75,15,0.0 +13047,71,21.5,28,0.0 +13047,29,123.79,20,0.0 +13047,73,15,9,0.0 +13047,30,25.89,32,0.0 +13047,18,62.5,35,0.0 +13047,20,81,19,0.0 +13047,40,18.4,37,0.0 +13047,19,9.2,50,0.0 +13047,37,26,48,0.0 +13047,67,14,45,0.0 +13047,15,15.5,41,0.0 +13047,74,10,27,0.0 +13047,25,14,35,0.0 +13047,21,10,29,0.0 +13047,48,12.75,33,0.0 +13047,4,22,17,0.0 +13047,72,34.8,47,0.0 +13047,69,36,7,0.0 +13047,3,10,34,0.0 +13047,34,14,3,0.0 +13047,7,30,16,0.0 +13047,46,12,37,0.0 +13047,28,45.6,7,0.0 +13047,49,20,4,0.0 +13047,51,53,16,0.0 +13047,10,31,11,0.0 +13047,9,97,38,0.0 +13047,68,12.5,21,0.0 +13047,53,32.8,41,0.0 +13047,8,40,30,0.0 +13047,23,9,37,0.0 +13048,23,9,25,0.0 +13048,12,38,34,0.0 +13048,69,36,3,0.0 +13048,41,9.65,41,0.0 +13048,75,7.75,41,0.0 +13048,2,19,11,0.0 +13048,19,9.2,21,0.0 +13048,62,49.3,13,0.0 +13048,39,18,11,0.0 +13048,37,26,15,0.0 +13048,73,15,13,0.0 +13048,76,18,13,0.0 +13048,17,39,34,0.0 +13048,36,19,23,0.0 +13048,7,30,24,0.0 +13048,57,19.5,15,0.0 +13048,63,43.9,21,0.0 +13048,29,123.79,20,0.0 +13049,68,12.5,35,0.0 +13049,5,21.35,48,0.0 +13049,41,9.65,3,0.0 +13049,48,12.75,39,0.0 +13049,26,31.23,32,0.0 +13049,12,38,5,0.0 +13049,18,62.5,32,0.0 +13049,40,18.4,17,0.0 +13049,61,28.5,15,0.0 +13049,70,15,16,0.0 +13049,47,9.5,14,0.0 +13049,21,10,1,0.0 +13049,52,7,27,0.0 +13049,36,19,28,0.0 +13049,72,34.8,47,0.0 +13049,27,43.9,16,0.0 +13049,69,36,47,0.0 +13049,30,25.89,12,0.0 +13049,46,12,35,0.0 +13049,76,18,34,0.0 +13049,20,81,47,0.0 +13049,63,43.9,1,0.0 +13049,2,19,25,0.0 +13049,10,31,27,0.0 +13049,6,25,25,0.0 +13049,50,16.25,43,0.0 +13049,77,13,42,0.0 +13049,75,7.75,11,0.0 +13049,24,4.5,34,0.0 +13049,25,14,38,0.0 +13049,15,15.5,36,0.0 +13049,53,32.8,38,0.0 +13049,42,14,5,0.0 +13049,74,10,26,0.0 +13049,57,19.5,15,0.0 +13049,62,49.3,43,0.0 +13049,39,18,44,0.0 +13049,45,9.5,20,0.0 +13049,34,14,6,0.0 +13049,55,24,48,0.0 +13049,49,20,40,0.0 +13049,35,18,20,0.0 +13049,17,39,23,0.0 +13049,28,45.6,32,0.0 +13049,65,21.05,6,0.0 +13049,29,123.79,38,0.0 +13049,31,12.5,7,0.0 +13049,13,6,20,0.0 +13049,8,40,12,0.0 +13049,58,13.25,7,0.0 +13049,60,34,46,0.0 +13049,23,9,38,0.0 +13049,9,97,6,0.0 +13049,71,21.5,1,0.0 +13049,1,18,48,0.0 +13049,64,33.25,30,0.0 +13049,4,22,6,0.0 +13049,32,32,42,0.0 +13049,3,10,20,0.0 +13049,14,23.25,21,0.0 +13049,37,26,30,0.0 +13049,22,21,17,0.0 +13049,38,263.5,14,0.0 +13049,51,53,32,0.0 +13049,19,9.2,38,0.0 +13050,40,18.4,22,0.0 +13050,48,12.75,20,0.0 +13050,5,21.35,11,0.0 +13050,21,10,34,0.0 +13050,38,263.5,16,0.0 +13050,66,17,15,0.0 +13050,75,7.75,18,0.0 +13050,37,26,7,0.0 +13050,30,25.89,41,0.0 +13050,74,10,6,0.0 +13050,47,9.5,27,0.0 +13050,63,43.9,43,0.0 +13050,27,43.9,49,0.0 +13050,20,81,47,0.0 +13050,16,17.45,33,0.0 +13050,6,25,15,0.0 +13051,24,4.5,17,0.0 +13051,17,39,39,0.0 +13052,60,34,14,0.0 +13052,1,18,1,0.0 +13052,53,32.8,47,0.0 +13052,67,14,33,0.0 +13052,24,4.5,16,0.0 +13052,13,6,9,0.0 +13052,44,19.45,4,0.0 +13052,63,43.9,19,0.0 +13052,73,15,38,0.0 +13052,21,10,11,0.0 +13052,65,21.05,12,0.0 +13052,56,38,41,0.0 +13052,15,15.5,22,0.0 +13052,62,49.3,30,0.0 +13052,70,15,50,0.0 +13052,12,38,14,0.0 +13052,18,62.5,9,0.0 +13053,54,7.45,18,0.0 +13053,44,19.45,50,0.0 +13053,52,7,21,0.0 +13053,49,20,21,0.0 +13053,6,25,27,0.0 +13053,39,18,49,0.0 +13053,53,32.8,3,0.0 +13053,19,9.2,36,0.0 +13053,64,33.25,33,0.0 +13053,57,19.5,24,0.0 +13053,35,18,46,0.0 +13053,16,17.45,21,0.0 +13053,43,46,37,0.0 +13053,23,9,42,0.0 +13053,27,43.9,41,0.0 +13053,1,18,38,0.0 +13054,52,7,13,0.0 +13054,54,7.45,15,0.0 +13054,67,14,32,0.0 +13054,17,39,2,0.0 +13054,34,14,40,0.0 +13054,58,13.25,18,0.0 +13054,32,32,28,0.0 +13054,46,12,42,0.0 +13054,47,9.5,13,0.0 +13054,11,21,34,0.0 +13054,53,32.8,13,0.0 +13054,50,16.25,9,0.0 +13054,23,9,44,0.0 +13054,45,9.5,6,0.0 +13054,37,26,29,0.0 +13054,6,25,50,0.0 +13054,25,14,39,0.0 +13054,13,6,24,0.0 +13054,3,10,14,0.0 +13054,16,17.45,34,0.0 +13054,4,22,3,0.0 +13054,14,23.25,50,0.0 +13054,24,4.5,19,0.0 +13054,63,43.9,4,0.0 +13054,2,19,46,0.0 +13054,48,12.75,36,0.0 +13054,66,17,25,0.0 +13054,35,18,6,0.0 +13054,33,2.5,33,0.0 +13054,40,18.4,14,0.0 +13054,61,28.5,7,0.0 +13054,71,21.5,4,0.0 +13054,69,36,35,0.0 +13054,77,13,36,0.0 +13054,30,25.89,18,0.0 +13054,27,43.9,28,0.0 +13054,76,18,12,0.0 +13054,21,10,25,0.0 +13054,65,21.05,34,0.0 +13054,60,34,38,0.0 +13054,72,34.8,25,0.0 +13054,42,14,47,0.0 +13054,12,38,36,0.0 +13054,55,24,26,0.0 +13054,36,19,34,0.0 +13054,62,49.3,39,0.0 +13054,39,18,2,0.0 +13054,31,12.5,3,0.0 +13054,64,33.25,42,0.0 +13054,74,10,36,0.0 +13054,57,19.5,47,0.0 +13054,20,81,33,0.0 +13054,43,46,20,0.0 +13054,9,97,20,0.0 +13054,59,55,49,0.0 +13054,22,21,47,0.0 +13054,75,7.75,12,0.0 +13054,51,53,31,0.0 +13054,44,19.45,4,0.0 +13054,19,9.2,22,0.0 +13054,15,15.5,10,0.0 +13054,49,20,2,0.0 +13054,70,15,36,0.0 +13054,41,9.65,40,0.0 +13054,7,30,36,0.0 +13054,10,31,15,0.0 +13054,56,38,29,0.0 +13054,68,12.5,41,0.0 +13054,8,40,4,0.0 +13054,73,15,11,0.0 +13054,28,45.6,29,0.0 +13054,29,123.79,28,0.0 +13054,38,263.5,13,0.0 +13054,18,62.5,1,0.0 +13054,26,31.23,5,0.0 +13054,1,18,3,0.0 +13055,37,26,17,0.0 +13055,19,9.2,13,0.0 +13055,75,7.75,49,0.0 +13055,11,21,5,0.0 +13055,15,15.5,38,0.0 +13055,61,28.5,7,0.0 +13055,58,13.25,12,0.0 +13055,45,9.5,13,0.0 +13055,10,31,24,0.0 +13055,41,9.65,20,0.0 +13055,13,6,46,0.0 +13055,22,21,43,0.0 +13055,67,14,34,0.0 +13055,12,38,23,0.0 +13055,33,2.5,42,0.0 +13055,53,32.8,34,0.0 +13055,51,53,16,0.0 +13055,71,21.5,15,0.0 +13055,57,19.5,28,0.0 +13055,36,19,20,0.0 +13055,47,9.5,22,0.0 +13055,39,18,2,0.0 +13055,26,31.23,7,0.0 +13055,73,15,39,0.0 +13055,65,21.05,31,0.0 +13055,40,18.4,28,0.0 +13055,55,24,31,0.0 +13055,5,21.35,23,0.0 +13055,16,17.45,32,0.0 +13055,50,16.25,10,0.0 +13055,1,18,18,0.0 +13055,25,14,22,0.0 +13055,56,38,34,0.0 +13055,27,43.9,3,0.0 +13055,46,12,10,0.0 +13055,62,49.3,10,0.0 +13055,3,10,20,0.0 +13055,76,18,2,0.0 +13055,6,25,2,0.0 +13055,52,7,39,0.0 +13055,32,32,45,0.0 +13056,9,97,16,0.0 +13056,46,12,17,0.0 +13056,2,19,23,0.0 +13056,56,38,6,0.0 +13056,73,15,47,0.0 +13056,39,18,44,0.0 +13056,8,40,20,0.0 +13056,71,21.5,7,0.0 +13056,59,55,26,0.0 +13056,53,32.8,18,0.0 +13056,21,10,48,0.0 +13056,13,6,4,0.0 +13056,63,43.9,13,0.0 +13056,75,7.75,42,0.0 +13056,37,26,11,0.0 +13056,17,39,27,0.0 +13056,52,7,22,0.0 +13056,32,32,43,0.0 +13056,76,18,45,0.0 +13056,25,14,43,0.0 +13056,36,19,22,0.0 +13056,38,263.5,44,0.0 +13056,47,9.5,6,0.0 +13056,15,15.5,29,0.0 +13056,19,9.2,27,0.0 +13056,12,38,13,0.0 +13056,11,21,43,0.0 +13056,10,31,20,0.0 +13056,77,13,47,0.0 +13056,33,2.5,31,0.0 +13056,24,4.5,43,0.0 +13056,42,14,15,0.0 +13056,44,19.45,24,0.0 +13056,26,31.23,45,0.0 +13056,60,34,47,0.0 +13056,7,30,25,0.0 +13056,28,45.6,8,0.0 +13056,62,49.3,10,0.0 +13056,69,36,23,0.0 +13056,61,28.5,40,0.0 +13056,35,18,22,0.0 +13056,54,7.45,1,0.0 +13056,20,81,2,0.0 +13056,58,13.25,7,0.0 +13056,5,21.35,25,0.0 +13056,30,25.89,33,0.0 +13057,33,2.5,45,0.0 +13057,49,20,37,0.0 +13057,24,4.5,35,0.0 +13057,63,43.9,12,0.0 +13057,56,38,10,0.0 +13057,9,97,42,0.0 +13057,48,12.75,20,0.0 +13057,6,25,24,0.0 +13057,46,12,23,0.0 +13057,25,14,21,0.0 +13057,71,21.5,48,0.0 +13057,60,34,12,0.0 +13057,57,19.5,31,0.0 +13057,43,46,6,0.0 +13057,44,19.45,1,0.0 +13057,75,7.75,10,0.0 +13057,18,62.5,6,0.0 +13057,10,31,50,0.0 +13057,61,28.5,4,0.0 +13057,23,9,12,0.0 +13057,12,38,7,0.0 +13057,3,10,10,0.0 +13057,19,9.2,20,0.0 +13057,7,30,13,0.0 +13057,64,33.25,47,0.0 +13057,45,9.5,11,0.0 +13057,2,19,24,0.0 +13057,50,16.25,45,0.0 +13057,66,17,49,0.0 +13057,37,26,23,0.0 +13057,31,12.5,22,0.0 +13057,41,9.65,47,0.0 +13057,39,18,37,0.0 +13057,65,21.05,44,0.0 +13057,35,18,20,0.0 +13057,68,12.5,36,0.0 +13057,36,19,13,0.0 +13057,47,9.5,16,0.0 +13057,4,22,6,0.0 +13057,40,18.4,30,0.0 +13057,32,32,4,0.0 +13057,27,43.9,12,0.0 +13057,76,18,23,0.0 +13057,13,6,34,0.0 +13057,16,17.45,10,0.0 +13057,21,10,5,0.0 +13057,55,24,34,0.0 +13057,29,123.79,11,0.0 +13057,58,13.25,33,0.0 +13057,20,81,19,0.0 +13057,67,14,36,0.0 +13057,52,7,38,0.0 +13057,73,15,48,0.0 +13057,26,31.23,20,0.0 +13057,34,14,47,0.0 +13057,69,36,48,0.0 +13057,59,55,26,0.0 +13057,11,21,27,0.0 +13057,17,39,22,0.0 +13057,53,32.8,2,0.0 +13057,8,40,9,0.0 +13057,77,13,42,0.0 +13057,74,10,17,0.0 +13057,51,53,29,0.0 +13057,38,263.5,34,0.0 +13057,30,25.89,12,0.0 +13058,58,13.25,27,0.0 +13058,2,19,15,0.0 +13058,40,18.4,12,0.0 +13058,19,9.2,9,0.0 +13058,36,19,18,0.0 +13058,33,2.5,41,0.0 +13058,39,18,33,0.0 +13058,18,62.5,22,0.0 +13058,68,12.5,18,0.0 +13058,70,15,17,0.0 +13058,27,43.9,12,0.0 +13059,58,13.25,19,0.0 +13059,54,7.45,33,0.0 +13059,4,22,21,0.0 +13059,27,43.9,47,0.0 +13059,2,19,34,0.0 +13059,40,18.4,46,0.0 +13059,18,62.5,13,0.0 +13059,72,34.8,13,0.0 +13059,68,12.5,47,0.0 +13059,23,9,28,0.0 +13059,64,33.25,28,0.0 +13059,70,15,36,0.0 +13059,74,10,34,0.0 +13060,74,10,42,0.0 +13060,2,19,8,0.0 +13060,75,7.75,22,0.0 +13060,9,97,42,0.0 +13060,60,34,41,0.0 +13060,67,14,27,0.0 +13060,29,123.79,47,0.0 +13060,19,9.2,48,0.0 +13060,45,9.5,17,0.0 +13060,51,53,16,0.0 +13060,48,12.75,43,0.0 +13060,65,21.05,33,0.0 +13060,59,55,38,0.0 +13060,6,25,43,0.0 +13060,41,9.65,37,0.0 +13060,71,21.5,40,0.0 +13060,12,38,32,0.0 +13060,54,7.45,19,0.0 +13060,26,31.23,11,0.0 +13060,61,28.5,46,0.0 +13060,31,12.5,34,0.0 +13060,55,24,14,0.0 +13060,7,30,49,0.0 +13060,34,14,27,0.0 +13060,16,17.45,2,0.0 +13060,56,38,15,0.0 +13060,73,15,35,0.0 +13060,1,18,47,0.0 +13060,44,19.45,43,0.0 +13060,20,81,5,0.0 +13060,5,21.35,7,0.0 +13060,17,39,4,0.0 +13060,14,23.25,24,0.0 +13060,49,20,36,0.0 +13060,33,2.5,28,0.0 +13060,58,13.25,18,0.0 +13060,50,16.25,32,0.0 +13061,65,21.05,21,0.0 +13061,3,10,17,0.0 +13061,43,46,48,0.0 +13061,38,263.5,22,0.0 +13061,7,30,49,0.0 +13061,56,38,33,0.0 +13061,50,16.25,31,0.0 +13061,47,9.5,43,0.0 +13061,44,19.45,26,0.0 +13061,61,28.5,6,0.0 +13061,66,17,10,0.0 +13061,23,9,12,0.0 +13061,28,45.6,35,0.0 +13061,29,123.79,35,0.0 +13061,31,12.5,46,0.0 +13061,70,15,3,0.0 +13061,39,18,38,0.0 +13061,73,15,12,0.0 +13061,25,14,21,0.0 +13061,63,43.9,6,0.0 +13061,17,39,34,0.0 +13061,75,7.75,3,0.0 +13061,60,34,26,0.0 +13061,58,13.25,21,0.0 +13061,42,14,37,0.0 +13061,72,34.8,48,0.0 +13061,57,19.5,35,0.0 +13061,62,49.3,24,0.0 +13061,48,12.75,25,0.0 +13061,1,18,8,0.0 +13061,67,14,47,0.0 +13061,32,32,46,0.0 +13061,26,31.23,11,0.0 +13061,52,7,47,0.0 +13061,53,32.8,20,0.0 +13061,27,43.9,49,0.0 +13061,55,24,16,0.0 +13061,40,18.4,46,0.0 +13061,9,97,20,0.0 +13061,8,40,48,0.0 +13061,69,36,33,0.0 +13061,11,21,2,0.0 +13061,21,10,19,0.0 +13061,13,6,9,0.0 +13061,71,21.5,46,0.0 +13061,24,4.5,14,0.0 +13061,36,19,4,0.0 +13061,10,31,33,0.0 +13061,22,21,48,0.0 +13061,18,62.5,15,0.0 +13061,46,12,1,0.0 +13061,59,55,26,0.0 +13061,33,2.5,28,0.0 +13061,30,25.89,25,0.0 +13061,12,38,12,0.0 +13061,6,25,6,0.0 +13061,68,12.5,38,0.0 +13061,15,15.5,10,0.0 +13061,37,26,19,0.0 +13061,74,10,19,0.0 +13061,51,53,8,0.0 +13061,45,9.5,17,0.0 +13061,5,21.35,46,0.0 +13062,76,18,4,0.0 +13062,75,7.75,22,0.0 +13062,17,39,50,0.0 +13062,3,10,50,0.0 +13062,49,20,28,0.0 +13062,41,9.65,22,0.0 +13062,57,19.5,36,0.0 +13062,44,19.45,25,0.0 +13062,37,26,5,0.0 +13062,61,28.5,32,0.0 +13062,39,18,12,0.0 +13062,38,263.5,20,0.0 +13062,52,7,34,0.0 +13062,24,4.5,15,0.0 +13062,14,23.25,25,0.0 +13062,5,21.35,42,0.0 +13062,21,10,11,0.0 +13062,47,9.5,7,0.0 +13062,18,62.5,15,0.0 +13062,19,9.2,14,0.0 +13062,62,49.3,22,0.0 +13062,25,14,37,0.0 +13062,60,34,9,0.0 +13062,45,9.5,36,0.0 +13062,59,55,15,0.0 +13062,53,32.8,2,0.0 +13062,20,81,38,0.0 +13062,28,45.6,2,0.0 +13062,54,7.45,45,0.0 +13062,22,21,47,0.0 +13062,51,53,18,0.0 +13062,40,18.4,13,0.0 +13062,1,18,22,0.0 +13063,38,263.5,48,0.0 +13063,16,17.45,43,0.0 +13063,65,21.05,20,0.0 +13063,63,43.9,6,0.0 +13063,68,12.5,10,0.0 +13063,40,18.4,45,0.0 +13063,59,55,33,0.0 +13063,57,19.5,9,0.0 +13063,56,38,32,0.0 +13063,45,9.5,4,0.0 +13063,69,36,46,0.0 +13063,35,18,30,0.0 +13063,14,23.25,49,0.0 +13063,10,31,21,0.0 +13063,23,9,29,0.0 +13063,34,14,18,0.0 +13063,4,22,44,0.0 +13063,64,33.25,5,0.0 +13063,28,45.6,36,0.0 +13063,7,30,44,0.0 +13063,73,15,22,0.0 +13063,74,10,6,0.0 +13063,47,9.5,28,0.0 +13063,5,21.35,43,0.0 +13063,12,38,7,0.0 +13063,44,19.45,10,0.0 +13063,60,34,3,0.0 +13063,49,20,36,0.0 +13063,25,14,21,0.0 +13063,52,7,29,0.0 +13063,24,4.5,16,0.0 +13063,48,12.75,32,0.0 +13063,51,53,26,0.0 +13063,31,12.5,7,0.0 +13063,46,12,32,0.0 +13063,26,31.23,34,0.0 +13063,70,15,18,0.0 +13063,1,18,7,0.0 +13063,27,43.9,35,0.0 +13063,8,40,30,0.0 +13063,13,6,24,0.0 +13063,50,16.25,18,0.0 +13063,11,21,49,0.0 +13063,77,13,8,0.0 +13063,39,18,30,0.0 +13063,53,32.8,20,0.0 +13063,61,28.5,17,0.0 +13063,22,21,17,0.0 +13063,20,81,4,0.0 +13063,42,14,34,0.0 +13063,72,34.8,32,0.0 +13063,76,18,30,0.0 +13063,9,97,45,0.0 +13063,67,14,40,0.0 +13063,30,25.89,16,0.0 +13063,29,123.79,11,0.0 +13063,55,24,46,0.0 +13063,62,49.3,12,0.0 +13063,36,19,17,0.0 +13063,37,26,2,0.0 +13063,71,21.5,32,0.0 +13063,33,2.5,43,0.0 +13063,18,62.5,35,0.0 +13063,66,17,7,0.0 +13063,6,25,19,0.0 +13063,2,19,49,0.0 +13063,41,9.65,23,0.0 +13063,19,9.2,6,0.0 +13063,75,7.75,29,0.0 +13063,3,10,1,0.0 +13063,58,13.25,23,0.0 +13063,32,32,35,0.0 +13063,17,39,47,0.0 +13063,21,10,20,0.0 +13063,15,15.5,2,0.0 +13063,43,46,48,0.0 +13064,21,10,48,0.0 +13064,18,62.5,15,0.0 +13064,49,20,3,0.0 +13064,58,13.25,11,0.0 +13064,42,14,33,0.0 +13064,31,12.5,1,0.0 +13064,2,19,22,0.0 +13064,66,17,41,0.0 +13064,65,21.05,43,0.0 +13064,57,19.5,38,0.0 +13064,64,33.25,36,0.0 +13064,39,18,48,0.0 +13064,8,40,17,0.0 +13064,19,9.2,45,0.0 +13064,30,25.89,23,0.0 +13064,46,12,13,0.0 +13064,16,17.45,36,0.0 +13064,73,15,3,0.0 +13064,70,15,39,0.0 +13064,51,53,25,0.0 +13064,74,10,3,0.0 +13064,5,21.35,42,0.0 +13064,9,97,32,0.0 +13064,72,34.8,22,0.0 +13064,60,34,31,0.0 +13064,4,22,8,0.0 +13064,6,25,36,0.0 +13064,55,24,29,0.0 +13064,45,9.5,26,0.0 +13064,69,36,37,0.0 +13064,68,12.5,20,0.0 +13064,32,32,41,0.0 +13064,56,38,50,0.0 +13064,10,31,32,0.0 +13064,12,38,47,0.0 +13064,35,18,23,0.0 +13064,41,9.65,37,0.0 +13064,27,43.9,4,0.0 +13064,61,28.5,16,0.0 +13064,48,12.75,36,0.0 +13064,38,263.5,21,0.0 +13064,53,32.8,46,0.0 +13064,59,55,43,0.0 +13064,52,7,30,0.0 +13064,23,9,37,0.0 +13064,13,6,9,0.0 +13064,76,18,50,0.0 +13064,67,14,13,0.0 +13064,29,123.79,14,0.0 +13064,22,21,38,0.0 +13064,63,43.9,10,0.0 +13064,34,14,31,0.0 +13064,62,49.3,23,0.0 +13064,24,4.5,38,0.0 +13064,40,18.4,10,0.0 +13064,11,21,46,0.0 +13064,1,18,47,0.0 +13064,28,45.6,6,0.0 +13064,36,19,4,0.0 +13064,71,21.5,32,0.0 +13064,3,10,43,0.0 +13064,44,19.45,40,0.0 +13064,54,7.45,45,0.0 +13064,17,39,1,0.0 +13064,14,23.25,34,0.0 +13064,37,26,45,0.0 +13064,77,13,50,0.0 +13064,7,30,2,0.0 +13064,47,9.5,12,0.0 +13064,43,46,12,0.0 +13064,15,15.5,29,0.0 +13064,25,14,15,0.0 +13065,43,46,24,0.0 +13065,59,55,41,0.0 +13065,47,9.5,35,0.0 +13065,29,123.79,16,0.0 +13065,55,24,2,0.0 +13065,16,17.45,1,0.0 +13065,51,53,26,0.0 +13065,6,25,24,0.0 +13065,20,81,3,0.0 +13065,61,28.5,1,0.0 +13065,12,38,26,0.0 +13065,44,19.45,19,0.0 +13065,36,19,41,0.0 +13065,21,10,2,0.0 +13065,24,4.5,7,0.0 +13065,68,12.5,37,0.0 +13065,34,14,13,0.0 +13065,30,25.89,41,0.0 +13065,54,7.45,6,0.0 +13065,3,10,7,0.0 +13065,67,14,16,0.0 +13065,72,34.8,25,0.0 +13065,46,12,49,0.0 +13065,63,43.9,30,0.0 +13065,64,33.25,5,0.0 +13065,62,49.3,49,0.0 +13065,69,36,39,0.0 +13065,53,32.8,43,0.0 +13065,56,38,2,0.0 +13065,45,9.5,2,0.0 +13065,37,26,36,0.0 +13065,33,2.5,32,0.0 +13065,9,97,32,0.0 +13065,27,43.9,19,0.0 +13065,70,15,34,0.0 +13065,19,9.2,1,0.0 +13065,4,22,11,0.0 +13065,22,21,36,0.0 +13065,50,16.25,1,0.0 +13065,15,15.5,2,0.0 +13065,49,20,22,0.0 +13065,38,263.5,30,0.0 +13065,76,18,12,0.0 +13065,25,14,49,0.0 +13065,73,15,22,0.0 +13065,41,9.65,26,0.0 +13065,26,31.23,16,0.0 +13066,42,14,29,0.0 +13066,20,81,25,0.0 +13066,9,97,9,0.0 +13066,2,19,37,0.0 +13066,51,53,36,0.0 +13066,16,17.45,18,0.0 +13066,57,19.5,50,0.0 +13066,56,38,26,0.0 +13066,55,24,17,0.0 +13066,29,123.79,39,0.0 +13066,50,16.25,9,0.0 +13066,7,30,6,0.0 +13066,60,34,40,0.0 +13066,17,39,32,0.0 +13066,49,20,27,0.0 +13066,59,55,29,0.0 +13066,30,25.89,4,0.0 +13066,73,15,15,0.0 +13066,25,14,17,0.0 +13066,40,18.4,38,0.0 +13066,1,18,22,0.0 +13066,6,25,28,0.0 +13066,22,21,33,0.0 +13066,3,10,47,0.0 +13066,41,9.65,25,0.0 +13066,31,12.5,3,0.0 +13066,44,19.45,29,0.0 +13066,43,46,12,0.0 +13066,19,9.2,27,0.0 +13066,76,18,40,0.0 +13066,21,10,5,0.0 +13066,11,21,31,0.0 +13066,75,7.75,43,0.0 +13066,15,15.5,31,0.0 +13066,45,9.5,40,0.0 +13066,38,263.5,44,0.0 +13066,67,14,32,0.0 +13066,32,32,28,0.0 +13066,48,12.75,9,0.0 +13066,39,18,28,0.0 +13066,34,14,25,0.0 +13066,62,49.3,17,0.0 +13066,36,19,36,0.0 +13066,13,6,14,0.0 +13066,28,45.6,48,0.0 +13067,24,4.5,28,0.0 +13067,14,23.25,11,0.0 +13067,72,34.8,5,0.0 +13067,7,30,14,0.0 +13067,29,123.79,28,0.0 +13067,49,20,7,0.0 +13067,8,40,10,0.0 +13067,11,21,19,0.0 +13067,26,31.23,39,0.0 +13067,23,9,40,0.0 +13067,58,13.25,2,0.0 +13067,19,9.2,48,0.0 +13067,73,15,25,0.0 +13067,13,6,24,0.0 +13067,60,34,40,0.0 +13067,35,18,1,0.0 +13067,15,15.5,17,0.0 +13067,22,21,45,0.0 +13067,65,21.05,30,0.0 +13067,31,12.5,19,0.0 +13067,17,39,42,0.0 +13067,42,14,25,0.0 +13067,68,12.5,38,0.0 +13067,62,49.3,31,0.0 +13067,69,36,45,0.0 +13067,51,53,19,0.0 +13067,64,33.25,23,0.0 +13067,57,19.5,27,0.0 +13067,76,18,40,0.0 +13067,20,81,8,0.0 +13067,56,38,38,0.0 +13067,6,25,47,0.0 +13067,71,21.5,5,0.0 +13067,3,10,11,0.0 +13067,47,9.5,27,0.0 +13067,77,13,43,0.0 +13067,66,17,44,0.0 +13067,37,26,20,0.0 +13067,43,46,8,0.0 +13067,9,97,23,0.0 +13067,18,62.5,49,0.0 +13067,27,43.9,8,0.0 +13067,59,55,23,0.0 +13067,28,45.6,21,0.0 +13067,2,19,28,0.0 +13067,52,7,46,0.0 +13067,67,14,13,0.0 +13067,5,21.35,35,0.0 +13067,32,32,33,0.0 +13067,70,15,1,0.0 +13067,16,17.45,11,0.0 +13067,10,31,19,0.0 +13067,33,2.5,2,0.0 +13067,55,24,34,0.0 +13067,12,38,2,0.0 +13067,48,12.75,29,0.0 +13067,30,25.89,15,0.0 +13067,39,18,9,0.0 +13067,44,19.45,26,0.0 +13067,34,14,32,0.0 +13067,45,9.5,33,0.0 +13067,21,10,32,0.0 +13067,41,9.65,13,0.0 +13067,74,10,3,0.0 +13067,36,19,11,0.0 +13067,46,12,9,0.0 +13067,1,18,11,0.0 +13067,25,14,34,0.0 +13067,38,263.5,27,0.0 +13067,50,16.25,42,0.0 +13067,53,32.8,19,0.0 +13068,34,14,19,0.0 +13068,70,15,43,0.0 +13068,39,18,12,0.0 +13068,41,9.65,46,0.0 +13068,62,49.3,7,0.0 +13068,54,7.45,48,0.0 +13068,38,263.5,14,0.0 +13068,23,9,21,0.0 +13068,3,10,16,0.0 +13068,33,2.5,27,0.0 +13068,2,19,13,0.0 +13068,76,18,25,0.0 +13068,72,34.8,15,0.0 +13068,47,9.5,49,0.0 +13068,32,32,43,0.0 +13068,18,62.5,25,0.0 +13068,25,14,44,0.0 +13068,60,34,47,0.0 +13068,64,33.25,32,0.0 +13068,5,21.35,7,0.0 +13068,7,30,44,0.0 +13068,28,45.6,1,0.0 +13068,21,10,10,0.0 +13068,19,9.2,23,0.0 +13068,37,26,41,0.0 +13068,52,7,41,0.0 +13068,17,39,14,0.0 +13068,48,12.75,37,0.0 +13068,11,21,16,0.0 +13068,71,21.5,42,0.0 +13068,65,21.05,6,0.0 +13068,22,21,9,0.0 +13068,8,40,31,0.0 +13068,61,28.5,11,0.0 +13068,50,16.25,29,0.0 +13068,15,15.5,2,0.0 +13068,26,31.23,20,0.0 +13068,1,18,16,0.0 +13068,4,22,12,0.0 +13068,66,17,13,0.0 +13068,75,7.75,6,0.0 +13068,24,4.5,11,0.0 +13068,9,97,15,0.0 +13068,42,14,3,0.0 +13068,35,18,24,0.0 +13068,36,19,18,0.0 +13068,73,15,26,0.0 +13068,31,12.5,2,0.0 +13068,58,13.25,16,0.0 +13068,13,6,24,0.0 +13069,29,123.79,38,0.0 +13069,47,9.5,31,0.0 +13069,31,12.5,17,0.0 +13069,25,14,32,0.0 +13069,14,23.25,20,0.0 +13069,75,7.75,12,0.0 +13069,56,38,42,0.0 +13069,12,38,27,0.0 +13069,60,34,29,0.0 +13069,58,13.25,22,0.0 +13069,22,21,6,0.0 +13069,39,18,23,0.0 +13069,2,19,28,0.0 +13069,4,22,8,0.0 +13069,64,33.25,27,0.0 +13069,72,34.8,29,0.0 +13069,8,40,6,0.0 +13069,66,17,19,0.0 +13069,19,9.2,20,0.0 +13069,28,45.6,10,0.0 +13069,7,30,33,0.0 +13069,35,18,31,0.0 +13069,46,12,35,0.0 +13069,38,263.5,15,0.0 +13069,24,4.5,39,0.0 +13069,59,55,41,0.0 +13069,51,53,9,0.0 +13069,63,43.9,11,0.0 +13069,67,14,30,0.0 +13069,30,25.89,33,0.0 +13069,52,7,35,0.0 +13069,13,6,12,0.0 +13069,70,15,14,0.0 +13069,5,21.35,12,0.0 +13069,10,31,14,0.0 +13069,74,10,46,0.0 +13069,57,19.5,48,0.0 +13069,20,81,37,0.0 +13069,69,36,11,0.0 +13069,9,97,24,0.0 +13069,26,31.23,42,0.0 +13069,16,17.45,34,0.0 +13069,15,15.5,30,0.0 +13069,65,21.05,1,0.0 +13069,53,32.8,26,0.0 +13069,77,13,20,0.0 +13069,17,39,13,0.0 +13069,21,10,49,0.0 +13069,62,49.3,40,0.0 +13069,40,18.4,7,0.0 +13069,73,15,15,0.0 +13069,54,7.45,43,0.0 +13069,55,24,27,0.0 +13069,44,19.45,35,0.0 +13069,43,46,33,0.0 +13069,76,18,44,0.0 +13069,49,20,2,0.0 +13069,32,32,12,0.0 +13069,18,62.5,27,0.0 +13069,11,21,16,0.0 +13069,1,18,23,0.0 +13069,36,19,4,0.0 +13069,42,14,13,0.0 +13070,70,15,17,0.0 +13070,58,13.25,1,0.0 +13070,30,25.89,4,0.0 +13070,10,31,25,0.0 +13070,47,9.5,28,0.0 +13070,6,25,27,0.0 +13070,17,39,45,0.0 +13070,55,24,17,0.0 +13070,3,10,18,0.0 +13070,74,10,2,0.0 +13070,2,19,37,0.0 +13070,59,55,23,0.0 +13070,69,36,9,0.0 +13070,31,12.5,5,0.0 +13070,64,33.25,29,0.0 +13070,1,18,3,0.0 +13070,12,38,25,0.0 +13070,68,12.5,13,0.0 +13070,42,14,31,0.0 +13070,45,9.5,24,0.0 +13070,9,97,47,0.0 +13070,14,23.25,42,0.0 +13070,49,20,48,0.0 +13070,23,9,36,0.0 +13070,27,43.9,20,0.0 +13070,76,18,26,0.0 +13070,75,7.75,7,0.0 +13070,7,30,38,0.0 +13070,39,18,40,0.0 +13070,52,7,49,0.0 +13070,41,9.65,28,0.0 +13070,24,4.5,48,0.0 +13070,8,40,42,0.0 +13070,37,26,2,0.0 +13070,15,15.5,28,0.0 +13070,67,14,45,0.0 +13070,57,19.5,9,0.0 +13070,72,34.8,42,0.0 +13070,34,14,34,0.0 +13070,53,32.8,43,0.0 +13070,16,17.45,40,0.0 +13070,33,2.5,27,0.0 +13070,56,38,31,0.0 +13070,62,49.3,49,0.0 +13070,43,46,46,0.0 +13070,5,21.35,44,0.0 +13070,48,12.75,4,0.0 +13070,61,28.5,13,0.0 +13070,19,9.2,32,0.0 +13070,60,34,29,0.0 +13070,20,81,3,0.0 +13070,46,12,20,0.0 +13070,51,53,10,0.0 +13070,50,16.25,36,0.0 +13071,48,12.75,49,0.0 +13071,35,18,38,0.0 +13071,66,17,47,0.0 +13071,8,40,23,0.0 +13071,41,9.65,27,0.0 +13071,60,34,36,0.0 +13071,16,17.45,5,0.0 +13071,61,28.5,33,0.0 +13071,74,10,16,0.0 +13071,2,19,12,0.0 +13071,19,9.2,7,0.0 +13071,1,18,4,0.0 +13071,33,2.5,47,0.0 +13071,75,7.75,18,0.0 +13071,55,24,30,0.0 +13071,26,31.23,40,0.0 +13071,71,21.5,30,0.0 +13071,13,6,43,0.0 +13071,11,21,44,0.0 +13071,32,32,42,0.0 +13071,46,12,30,0.0 +13071,6,25,4,0.0 +13071,57,19.5,26,0.0 +13071,31,12.5,44,0.0 +13071,24,4.5,2,0.0 +13071,20,81,17,0.0 +13071,40,18.4,15,0.0 +13071,30,25.89,50,0.0 +13071,22,21,23,0.0 +13071,53,32.8,45,0.0 +13071,29,123.79,15,0.0 +13071,43,46,17,0.0 +13071,47,9.5,10,0.0 +13071,51,53,36,0.0 +13071,39,18,6,0.0 +13071,49,20,1,0.0 +13071,62,49.3,8,0.0 +13072,70,15,14,0.0 +13072,49,20,24,0.0 +13072,47,9.5,13,0.0 +13072,30,25.89,36,0.0 +13072,59,55,26,0.0 +13072,7,30,25,0.0 +13072,23,9,22,0.0 +13072,25,14,31,0.0 +13072,36,19,45,0.0 +13072,1,18,46,0.0 +13072,63,43.9,22,0.0 +13072,73,15,21,0.0 +13072,41,9.65,41,0.0 +13072,9,97,43,0.0 +13072,8,40,31,0.0 +13072,2,19,39,0.0 +13072,58,13.25,39,0.0 +13072,24,4.5,36,0.0 +13072,50,16.25,14,0.0 +13072,62,49.3,22,0.0 +13072,77,13,19,0.0 +13072,39,18,49,0.0 +13072,51,53,25,0.0 +13072,37,26,8,0.0 +13072,26,31.23,35,0.0 +13072,6,25,31,0.0 +13072,57,19.5,48,0.0 +13072,75,7.75,36,0.0 +13072,32,32,34,0.0 +13072,38,263.5,41,0.0 +13072,21,10,44,0.0 +13072,28,45.6,4,0.0 +13072,17,39,36,0.0 +13072,33,2.5,40,0.0 +13072,15,15.5,31,0.0 +13072,72,34.8,1,0.0 +13072,45,9.5,19,0.0 +13073,13,6,7,0.0 +13073,42,14,33,0.0 +13073,56,38,14,0.0 +13073,45,9.5,46,0.0 +13073,76,18,23,0.0 +13073,14,23.25,7,0.0 +13073,70,15,50,0.0 +13073,28,45.6,45,0.0 +13073,72,34.8,20,0.0 +13073,66,17,36,0.0 +13073,1,18,43,0.0 +13073,7,30,12,0.0 +13073,16,17.45,18,0.0 +13073,68,12.5,36,0.0 +13073,57,19.5,2,0.0 +13073,6,25,14,0.0 +13073,12,38,28,0.0 +13073,77,13,12,0.0 +13073,65,21.05,9,0.0 +13073,38,263.5,19,0.0 +13073,50,16.25,34,0.0 +13073,75,7.75,40,0.0 +13073,43,46,49,0.0 +13073,21,10,21,0.0 +13073,71,21.5,3,0.0 +13073,9,97,3,0.0 +13073,23,9,13,0.0 +13073,25,14,6,0.0 +13073,33,2.5,2,0.0 +13073,31,12.5,21,0.0 +13073,3,10,9,0.0 +13073,62,49.3,21,0.0 +13073,29,123.79,46,0.0 +13073,37,26,6,0.0 +13073,32,32,31,0.0 +13073,64,33.25,46,0.0 +13074,50,16.25,13,0.0 +13074,21,10,1,0.0 +13074,72,34.8,36,0.0 +13074,9,97,19,0.0 +13074,7,30,25,0.0 +13074,10,31,26,0.0 +13074,51,53,16,0.0 +13074,32,32,13,0.0 +13074,73,15,12,0.0 +13074,16,17.45,29,0.0 +13074,20,81,47,0.0 +13075,19,9.2,45,0.0 +13075,8,40,22,0.0 +13075,1,18,48,0.0 +13075,3,10,5,0.0 +13075,42,14,1,0.0 +13075,73,15,37,0.0 +13075,59,55,27,0.0 +13075,49,20,40,0.0 +13075,76,18,29,0.0 +13075,61,28.5,6,0.0 +13075,38,263.5,17,0.0 +13075,13,6,40,0.0 +13075,70,15,28,0.0 +13075,37,26,27,0.0 +13075,60,34,11,0.0 +13075,16,17.45,29,0.0 +13075,27,43.9,28,0.0 +13075,57,19.5,23,0.0 +13075,5,21.35,15,0.0 +13075,41,9.65,8,0.0 +13075,29,123.79,24,0.0 +13075,25,14,33,0.0 +13075,56,38,1,0.0 +13075,46,12,41,0.0 +13075,51,53,47,0.0 +13075,44,19.45,17,0.0 +13075,36,19,40,0.0 +13075,43,46,45,0.0 +13075,11,21,1,0.0 +13075,24,4.5,22,0.0 +13075,12,38,36,0.0 +13075,33,2.5,15,0.0 +13075,14,23.25,33,0.0 +13075,75,7.75,32,0.0 +13075,23,9,44,0.0 +13075,64,33.25,25,0.0 +13075,66,17,21,0.0 +13075,21,10,30,0.0 +13075,32,32,15,0.0 +13075,10,31,28,0.0 +13075,58,13.25,24,0.0 +13075,71,21.5,48,0.0 +13075,74,10,35,0.0 +13075,6,25,5,0.0 +13075,28,45.6,27,0.0 +13075,20,81,45,0.0 +13075,31,12.5,42,0.0 +13075,48,12.75,30,0.0 +13075,45,9.5,17,0.0 +13075,68,12.5,39,0.0 +13075,39,18,8,0.0 +13075,69,36,33,0.0 +13075,72,34.8,1,0.0 +13075,15,15.5,46,0.0 +13075,55,24,12,0.0 +13075,7,30,13,0.0 +13076,74,10,6,0.0 +13076,10,31,6,0.0 +13076,72,34.8,42,0.0 +13076,63,43.9,44,0.0 +13077,14,23.25,7,0.0 +13077,41,9.65,20,0.0 +13077,15,15.5,48,0.0 +13077,33,2.5,50,0.0 +13077,77,13,17,0.0 +13077,68,12.5,38,0.0 +13077,52,7,1,0.0 +13077,67,14,34,0.0 +13077,75,7.75,20,0.0 +13077,30,25.89,30,0.0 +13077,27,43.9,33,0.0 +13077,53,32.8,9,0.0 +13077,55,24,25,0.0 +13078,20,81,34,0.0 +13078,58,13.25,30,0.0 +13078,21,10,3,0.0 +13078,34,14,12,0.0 +13078,64,33.25,28,0.0 +13079,12,38,42,0.0 +13079,10,31,11,0.0 +13079,23,9,30,0.0 +13079,42,14,41,0.0 +13079,20,81,19,0.0 +13079,27,43.9,2,0.0 +13079,69,36,35,0.0 +13079,44,19.45,14,0.0 +13079,8,40,6,0.0 +13079,50,16.25,30,0.0 +13079,33,2.5,4,0.0 +13079,19,9.2,9,0.0 +13079,1,18,43,0.0 +13079,29,123.79,25,0.0 +13079,61,28.5,14,0.0 +13079,17,39,36,0.0 +13079,32,32,46,0.0 +13079,6,25,12,0.0 +13079,47,9.5,32,0.0 +13079,73,15,24,0.0 +13079,57,19.5,14,0.0 +13079,46,12,11,0.0 +13079,49,20,18,0.0 +13079,63,43.9,2,0.0 +13079,18,62.5,23,0.0 +13079,36,19,19,0.0 +13079,26,31.23,44,0.0 +13079,45,9.5,8,0.0 +13079,28,45.6,31,0.0 +13079,74,10,24,0.0 +13079,48,12.75,31,0.0 +13079,67,14,44,0.0 +13079,7,30,50,0.0 +13079,22,21,33,0.0 +13079,52,7,3,0.0 +13079,72,34.8,3,0.0 +13079,16,17.45,49,0.0 +13079,41,9.65,17,0.0 +13079,40,18.4,18,0.0 +13079,68,12.5,47,0.0 +13079,31,12.5,14,0.0 +13079,53,32.8,24,0.0 +13079,54,7.45,1,0.0 +13079,66,17,13,0.0 +13079,38,263.5,16,0.0 +13079,60,34,2,0.0 +13079,51,53,27,0.0 +13079,77,13,25,0.0 +13079,21,10,39,0.0 +13079,71,21.5,34,0.0 +13079,70,15,2,0.0 +13079,25,14,15,0.0 +13079,24,4.5,31,0.0 +13079,35,18,43,0.0 +13079,76,18,38,0.0 +13079,9,97,38,0.0 +13079,2,19,47,0.0 +13079,39,18,15,0.0 +13079,43,46,35,0.0 +13079,30,25.89,42,0.0 +13079,58,13.25,32,0.0 +13079,62,49.3,37,0.0 +13079,55,24,29,0.0 +13079,59,55,26,0.0 +13079,13,6,14,0.0 +13079,14,23.25,24,0.0 +13079,37,26,22,0.0 +13079,56,38,7,0.0 +13080,61,28.5,6,0.0 +13080,12,38,43,0.0 +13080,27,43.9,6,0.0 +13080,24,4.5,14,0.0 +13080,38,263.5,29,0.0 +13080,40,18.4,1,0.0 +13080,46,12,4,0.0 +13080,13,6,44,0.0 +13080,59,55,37,0.0 +13080,19,9.2,6,0.0 +13080,33,2.5,43,0.0 +13080,28,45.6,26,0.0 +13080,3,10,24,0.0 +13080,55,24,23,0.0 +13080,43,46,31,0.0 +13080,60,34,27,0.0 +13080,21,10,43,0.0 +13080,32,32,37,0.0 +13080,47,9.5,25,0.0 +13080,69,36,16,0.0 +13080,66,17,36,0.0 +13080,65,21.05,39,0.0 +13080,50,16.25,38,0.0 +13080,51,53,34,0.0 +13080,45,9.5,16,0.0 +13080,26,31.23,9,0.0 +13080,68,12.5,10,0.0 +13080,41,9.65,45,0.0 +13080,73,15,8,0.0 +13080,10,31,31,0.0 +13080,6,25,19,0.0 +13080,58,13.25,31,0.0 +13080,39,18,20,0.0 +13080,64,33.25,4,0.0 +13080,49,20,7,0.0 +13080,2,19,40,0.0 +13080,42,14,11,0.0 +13080,34,14,19,0.0 +13080,36,19,10,0.0 +13080,62,49.3,25,0.0 +13080,35,18,10,0.0 +13080,30,25.89,12,0.0 +13080,71,21.5,44,0.0 +13080,5,21.35,21,0.0 +13080,31,12.5,41,0.0 +13080,48,12.75,16,0.0 +13080,74,10,6,0.0 +13080,56,38,33,0.0 +13080,14,23.25,48,0.0 +13080,15,15.5,6,0.0 +13080,18,62.5,23,0.0 +13080,9,97,3,0.0 +13080,1,18,44,0.0 +13080,52,7,38,0.0 +13080,77,13,20,0.0 +13080,11,21,24,0.0 +13080,29,123.79,32,0.0 +13080,8,40,6,0.0 +13080,63,43.9,30,0.0 +13080,57,19.5,10,0.0 +13080,54,7.45,38,0.0 +13080,44,19.45,32,0.0 +13080,25,14,4,0.0 +13080,4,22,28,0.0 +13080,70,15,24,0.0 +13080,23,9,37,0.0 +13080,16,17.45,40,0.0 +13081,49,20,13,0.0 +13081,40,18.4,37,0.0 +13081,44,19.45,39,0.0 +13081,13,6,19,0.0 +13081,14,23.25,36,0.0 +13081,51,53,4,0.0 +13081,7,30,37,0.0 +13081,6,25,6,0.0 +13082,50,16.25,26,0.0 +13082,52,7,40,0.0 +13082,68,12.5,21,0.0 +13082,21,10,12,0.0 +13082,7,30,46,0.0 +13082,75,7.75,20,0.0 +13082,48,12.75,33,0.0 +13082,3,10,49,0.0 +13082,74,10,30,0.0 +13082,54,7.45,25,0.0 +13082,6,25,32,0.0 +13082,27,43.9,45,0.0 +13082,69,36,26,0.0 +13082,8,40,8,0.0 +13082,53,32.8,26,0.0 +13082,1,18,15,0.0 +13082,9,97,30,0.0 +13082,76,18,27,0.0 +13082,66,17,4,0.0 +13082,56,38,1,0.0 +13082,19,9.2,34,0.0 +13082,28,45.6,13,0.0 +13082,70,15,3,0.0 +13082,45,9.5,37,0.0 +13082,4,22,4,0.0 +13082,26,31.23,30,0.0 +13082,33,2.5,50,0.0 +13082,60,34,17,0.0 +13082,11,21,13,0.0 +13083,6,25,2,0.0 +13083,19,9.2,39,0.0 +13083,25,14,16,0.0 +13083,49,20,34,0.0 +13083,70,15,39,0.0 +13083,11,21,24,0.0 +13083,41,9.65,46,0.0 +13083,71,21.5,42,0.0 +13083,12,38,8,0.0 +13083,9,97,49,0.0 +13083,39,18,16,0.0 +13083,55,24,24,0.0 +13083,77,13,1,0.0 +13083,64,33.25,43,0.0 +13083,76,18,14,0.0 +13083,35,18,10,0.0 +13083,50,16.25,13,0.0 +13083,61,28.5,32,0.0 +13083,37,26,50,0.0 +13083,72,34.8,43,0.0 +13083,32,32,13,0.0 +13083,1,18,16,0.0 +13083,52,7,18,0.0 +13083,34,14,45,0.0 +13083,17,39,41,0.0 +13083,38,263.5,47,0.0 +13083,22,21,43,0.0 +13083,27,43.9,4,0.0 +13083,53,32.8,2,0.0 +13083,18,62.5,3,0.0 +13083,13,6,33,0.0 +13083,54,7.45,37,0.0 +13083,24,4.5,14,0.0 +13083,47,9.5,44,0.0 +13083,4,22,45,0.0 +13083,31,12.5,41,0.0 +13083,73,15,21,0.0 +13083,46,12,9,0.0 +13084,32,32,24,0.0 +13084,25,14,35,0.0 +13084,30,25.89,15,0.0 +13084,4,22,14,0.0 +13084,59,55,37,0.0 +13084,12,38,9,0.0 +13084,53,32.8,28,0.0 +13084,42,14,33,0.0 +13084,35,18,47,0.0 +13084,48,12.75,41,0.0 +13084,38,263.5,46,0.0 +13084,2,19,19,0.0 +13084,16,17.45,19,0.0 +13084,11,21,20,0.0 +13084,29,123.79,31,0.0 +13084,63,43.9,46,0.0 +13084,46,12,23,0.0 +13084,6,25,16,0.0 +13084,24,4.5,31,0.0 +13084,45,9.5,18,0.0 +13084,77,13,33,0.0 +13084,15,15.5,19,0.0 +13084,55,24,37,0.0 +13084,75,7.75,30,0.0 +13084,36,19,36,0.0 +13084,22,21,24,0.0 +13084,13,6,33,0.0 +13084,33,2.5,2,0.0 +13084,62,49.3,45,0.0 +13084,39,18,44,0.0 +13084,69,36,31,0.0 +13084,5,21.35,42,0.0 +13084,44,19.45,6,0.0 +13084,52,7,5,0.0 +13084,61,28.5,17,0.0 +13084,28,45.6,8,0.0 +13084,47,9.5,5,0.0 +13084,57,19.5,12,0.0 +13084,76,18,49,0.0 +13084,71,21.5,24,0.0 +13084,8,40,46,0.0 +13084,66,17,49,0.0 +13084,7,30,50,0.0 +13084,3,10,44,0.0 +13084,20,81,15,0.0 +13084,56,38,33,0.0 +13084,17,39,17,0.0 +13084,9,97,44,0.0 +13084,49,20,10,0.0 +13085,9,97,37,0.0 +13085,44,19.45,1,0.0 +13085,54,7.45,24,0.0 +13085,47,9.5,41,0.0 +13085,69,36,27,0.0 +13085,70,15,22,0.0 +13085,29,123.79,23,0.0 +13085,12,38,31,0.0 +13085,55,24,21,0.0 +13085,48,12.75,41,0.0 +13085,71,21.5,35,0.0 +13085,43,46,35,0.0 +13085,11,21,25,0.0 +13086,11,21,5,0.0 +13086,30,25.89,47,0.0 +13086,20,81,25,0.0 +13086,22,21,38,0.0 +13086,47,9.5,2,0.0 +13086,56,38,15,0.0 +13086,4,22,32,0.0 +13086,12,38,6,0.0 +13086,9,97,13,0.0 +13086,19,9.2,32,0.0 +13086,17,39,29,0.0 +13086,50,16.25,19,0.0 +13086,36,19,25,0.0 +13086,41,9.65,32,0.0 +13086,18,62.5,30,0.0 +13086,66,17,42,0.0 +13086,5,21.35,11,0.0 +13086,70,15,28,0.0 +13086,3,10,17,0.0 +13086,64,33.25,32,0.0 +13086,42,14,15,0.0 +13086,29,123.79,12,0.0 +13086,35,18,6,0.0 +13086,13,6,36,0.0 +13086,40,18.4,9,0.0 +13086,51,53,4,0.0 +13086,68,12.5,10,0.0 +13086,49,20,4,0.0 +13086,62,49.3,33,0.0 +13086,23,9,37,0.0 +13086,55,24,30,0.0 +13086,44,19.45,27,0.0 +13086,39,18,14,0.0 +13086,2,19,4,0.0 +13086,45,9.5,11,0.0 +13086,52,7,39,0.0 +13086,59,55,50,0.0 +13086,26,31.23,27,0.0 +13086,58,13.25,24,0.0 +13086,73,15,6,0.0 +13086,69,36,14,0.0 +13086,31,12.5,21,0.0 +13086,7,30,38,0.0 +13086,61,28.5,25,0.0 +13086,46,12,36,0.0 +13086,76,18,49,0.0 +13086,1,18,50,0.0 +13086,71,21.5,29,0.0 +13086,25,14,40,0.0 +13086,16,17.45,24,0.0 +13086,24,4.5,27,0.0 +13086,8,40,11,0.0 +13086,37,26,21,0.0 +13086,32,32,26,0.0 +13086,6,25,30,0.0 +13086,63,43.9,23,0.0 +13086,33,2.5,11,0.0 +13086,21,10,16,0.0 +13086,15,15.5,3,0.0 +13086,54,7.45,22,0.0 +13086,74,10,19,0.0 +13086,67,14,30,0.0 +13086,48,12.75,15,0.0 +13086,77,13,13,0.0 +13086,14,23.25,39,0.0 +13086,75,7.75,40,0.0 +13086,38,263.5,19,0.0 +13086,65,21.05,24,0.0 +13087,16,17.45,37,0.0 +13087,60,34,8,0.0 +13087,27,43.9,25,0.0 +13087,36,19,20,0.0 +13087,73,15,28,0.0 +13087,74,10,10,0.0 +13087,71,21.5,33,0.0 +13087,70,15,44,0.0 +13087,34,14,38,0.0 +13087,12,38,30,0.0 +13087,51,53,7,0.0 +13087,41,9.65,19,0.0 +13087,7,30,19,0.0 +13087,31,12.5,26,0.0 +13087,15,15.5,44,0.0 +13087,40,18.4,48,0.0 +13087,23,9,12,0.0 +13087,37,26,42,0.0 +13087,62,49.3,37,0.0 +13087,75,7.75,24,0.0 +13087,35,18,31,0.0 +13087,18,62.5,44,0.0 +13087,39,18,3,0.0 +13087,11,21,33,0.0 +13087,14,23.25,6,0.0 +13087,9,97,44,0.0 +13087,45,9.5,41,0.0 +13087,56,38,48,0.0 +13087,30,25.89,26,0.0 +13087,17,39,33,0.0 +13087,29,123.79,4,0.0 +13087,24,4.5,32,0.0 +13087,66,17,13,0.0 +13087,53,32.8,38,0.0 +13087,64,33.25,22,0.0 +13087,47,9.5,46,0.0 +13087,44,19.45,6,0.0 +13087,77,13,16,0.0 +13087,50,16.25,12,0.0 +13087,4,22,12,0.0 +13087,76,18,15,0.0 +13087,49,20,29,0.0 +13087,55,24,15,0.0 +13087,1,18,27,0.0 +13087,22,21,24,0.0 +13087,10,31,24,0.0 +13087,63,43.9,34,0.0 +13087,65,21.05,48,0.0 +13087,38,263.5,31,0.0 +13087,59,55,2,0.0 +13087,67,14,27,0.0 +13087,25,14,40,0.0 +13087,69,36,38,0.0 +13088,14,23.25,27,0.0 +13088,67,14,16,0.0 +13088,11,21,22,0.0 +13088,57,19.5,2,0.0 +13089,14,23.25,12,0.0 +13089,5,21.35,24,0.0 +13089,36,19,6,0.0 +13089,32,32,13,0.0 +13089,75,7.75,33,0.0 +13089,7,30,34,0.0 +13089,29,123.79,33,0.0 +13089,74,10,47,0.0 +13089,59,55,9,0.0 +13089,2,19,48,0.0 +13089,54,7.45,6,0.0 +13089,58,13.25,41,0.0 +13089,42,14,34,0.0 +13089,23,9,9,0.0 +13089,48,12.75,25,0.0 +13089,62,49.3,44,0.0 +13089,25,14,5,0.0 +13089,70,15,2,0.0 +13089,20,81,25,0.0 +13089,71,21.5,23,0.0 +13089,4,22,28,0.0 +13089,30,25.89,5,0.0 +13089,68,12.5,25,0.0 +13089,16,17.45,42,0.0 +13089,39,18,31,0.0 +13089,50,16.25,6,0.0 +13089,15,15.5,46,0.0 +13089,34,14,37,0.0 +13089,55,24,32,0.0 +13089,6,25,11,0.0 +13089,41,9.65,42,0.0 +13089,56,38,28,0.0 +13089,27,43.9,25,0.0 +13089,33,2.5,19,0.0 +13089,44,19.45,30,0.0 +13089,17,39,45,0.0 +13089,76,18,16,0.0 +13090,45,9.5,40,0.0 +13090,76,18,48,0.0 +13090,39,18,12,0.0 +13090,23,9,12,0.0 +13090,67,14,30,0.0 +13090,4,22,36,0.0 +13090,53,32.8,35,0.0 +13090,25,14,29,0.0 +13090,41,9.65,19,0.0 +13090,52,7,27,0.0 +13090,16,17.45,48,0.0 +13090,11,21,41,0.0 +13090,37,26,19,0.0 +13090,62,49.3,43,0.0 +13090,63,43.9,8,0.0 +13090,77,13,13,0.0 +13090,70,15,46,0.0 +13090,47,9.5,35,0.0 +13090,49,20,31,0.0 +13090,65,21.05,5,0.0 +13090,38,263.5,15,0.0 +13090,74,10,19,0.0 +13090,18,62.5,23,0.0 +13090,58,13.25,25,0.0 +13090,2,19,24,0.0 +13090,35,18,22,0.0 +13090,5,21.35,44,0.0 +13090,36,19,41,0.0 +13090,21,10,38,0.0 +13090,24,4.5,28,0.0 +13090,73,15,40,0.0 +13090,54,7.45,4,0.0 +13090,40,18.4,31,0.0 +13090,55,24,1,0.0 +13090,71,21.5,6,0.0 +13090,22,21,15,0.0 +13090,64,33.25,50,0.0 +13090,56,38,29,0.0 +13090,20,81,50,0.0 +13090,68,12.5,44,0.0 +13090,59,55,42,0.0 +13090,33,2.5,9,0.0 +13090,10,31,38,0.0 +13090,32,32,22,0.0 +13090,69,36,11,0.0 +13090,6,25,21,0.0 +13090,46,12,18,0.0 +13090,29,123.79,12,0.0 +13090,27,43.9,46,0.0 +13090,17,39,3,0.0 +13090,50,16.25,15,0.0 +13090,31,12.5,36,0.0 +13090,3,10,34,0.0 +13090,44,19.45,44,0.0 +13090,42,14,27,0.0 +13090,14,23.25,40,0.0 +13090,60,34,8,0.0 +13090,34,14,29,0.0 +13090,43,46,11,0.0 +13090,26,31.23,39,0.0 +13090,61,28.5,20,0.0 +13090,28,45.6,31,0.0 +13090,13,6,34,0.0 +13090,51,53,17,0.0 +13090,30,25.89,8,0.0 +13090,12,38,45,0.0 +13090,72,34.8,13,0.0 +13090,15,15.5,20,0.0 +13090,57,19.5,50,0.0 +13090,66,17,7,0.0 +13090,75,7.75,32,0.0 +13090,7,30,30,0.0 +13090,48,12.75,40,0.0 +13090,1,18,18,0.0 +13091,45,9.5,6,0.0 +13091,21,10,23,0.0 +13091,63,43.9,42,0.0 +13091,22,21,18,0.0 +13091,49,20,25,0.0 +13091,4,22,48,0.0 +13091,10,31,6,0.0 +13091,25,14,33,0.0 +13091,31,12.5,12,0.0 +13091,59,55,36,0.0 +13091,44,19.45,40,0.0 +13091,58,13.25,17,0.0 +13091,1,18,49,0.0 +13091,3,10,46,0.0 +13091,55,24,10,0.0 +13091,48,12.75,14,0.0 +13091,56,38,25,0.0 +13091,36,19,38,0.0 +13091,39,18,26,0.0 +13091,71,21.5,45,0.0 +13091,37,26,46,0.0 +13091,75,7.75,37,0.0 +13091,67,14,12,0.0 +13091,24,4.5,44,0.0 +13091,34,14,23,0.0 +13091,66,17,47,0.0 +13091,12,38,9,0.0 +13091,54,7.45,40,0.0 +13091,7,30,49,0.0 +13091,38,263.5,5,0.0 +13091,52,7,12,0.0 +13091,69,36,49,0.0 +13091,16,17.45,33,0.0 +13091,32,32,27,0.0 +13091,29,123.79,13,0.0 +13091,40,18.4,30,0.0 +13091,11,21,36,0.0 +13091,62,49.3,36,0.0 +13091,5,21.35,46,0.0 +13091,64,33.25,44,0.0 +13091,42,14,32,0.0 +13091,26,31.23,38,0.0 +13091,15,15.5,24,0.0 +13091,6,25,23,0.0 +13091,13,6,3,0.0 +13091,68,12.5,31,0.0 +13091,35,18,5,0.0 +13092,8,40,36,0.0 +13092,33,2.5,19,0.0 +13092,62,49.3,39,0.0 +13092,1,18,12,0.0 +13092,30,25.89,38,0.0 +13092,64,33.25,31,0.0 +13092,61,28.5,8,0.0 +13092,2,19,50,0.0 +13092,41,9.65,11,0.0 +13092,34,14,26,0.0 +13092,18,62.5,27,0.0 +13092,9,97,35,0.0 +13092,23,9,41,0.0 +13092,19,9.2,28,0.0 +13092,53,32.8,1,0.0 +13092,7,30,19,0.0 +13092,76,18,32,0.0 +13092,35,18,2,0.0 +13092,5,21.35,19,0.0 +13092,22,21,1,0.0 +13092,52,7,4,0.0 +13092,49,20,19,0.0 +13092,39,18,20,0.0 +13092,56,38,41,0.0 +13092,38,263.5,13,0.0 +13092,15,15.5,25,0.0 +13092,10,31,3,0.0 +13092,54,7.45,1,0.0 +13092,42,14,16,0.0 +13092,29,123.79,32,0.0 +13092,32,32,46,0.0 +13092,14,23.25,6,0.0 +13092,13,6,29,0.0 +13092,43,46,35,0.0 +13092,24,4.5,2,0.0 +13092,21,10,12,0.0 +13092,37,26,40,0.0 +13092,27,43.9,26,0.0 +13092,73,15,3,0.0 +13092,74,10,19,0.0 +13092,71,21.5,33,0.0 +13092,50,16.25,5,0.0 +13092,55,24,7,0.0 +13092,69,36,8,0.0 +13092,72,34.8,45,0.0 +13092,16,17.45,8,0.0 +13092,17,39,43,0.0 +13092,3,10,17,0.0 +13092,45,9.5,7,0.0 +13092,59,55,29,0.0 +13092,57,19.5,14,0.0 +13092,20,81,36,0.0 +13092,77,13,42,0.0 +13092,12,38,9,0.0 +13092,48,12.75,42,0.0 +13092,60,34,26,0.0 +13092,68,12.5,6,0.0 +13092,36,19,2,0.0 +13092,70,15,41,0.0 +13092,46,12,40,0.0 +13092,26,31.23,14,0.0 +13092,65,21.05,9,0.0 +13092,25,14,38,0.0 +13092,4,22,7,0.0 +13092,6,25,47,0.0 +13092,28,45.6,38,0.0 +13092,44,19.45,31,0.0 +13092,66,17,27,0.0 +13092,58,13.25,50,0.0 +13092,11,21,3,0.0 +13093,10,31,40,0.0 +13093,5,21.35,18,0.0 +13093,61,28.5,31,0.0 +13093,77,13,4,0.0 +13093,7,30,41,0.0 +13093,72,34.8,13,0.0 +13093,63,43.9,3,0.0 +13093,32,32,2,0.0 +13093,6,25,13,0.0 +13093,40,18.4,6,0.0 +13093,20,81,24,0.0 +13093,19,9.2,18,0.0 +13093,57,19.5,34,0.0 +13093,12,38,31,0.0 +13093,66,17,35,0.0 +13093,4,22,17,0.0 +13093,76,18,34,0.0 +13093,60,34,40,0.0 +13093,36,19,24,0.0 +13093,65,21.05,45,0.0 +13093,25,14,43,0.0 +13094,74,10,1,0.0 +13094,55,24,4,0.0 +13094,8,40,44,0.0 +13094,59,55,39,0.0 +13094,69,36,48,0.0 +13094,1,18,18,0.0 +13094,77,13,21,0.0 +13094,13,6,18,0.0 +13094,19,9.2,38,0.0 +13094,68,12.5,17,0.0 +13094,54,7.45,47,0.0 +13094,27,43.9,50,0.0 +13094,67,14,5,0.0 +13094,36,19,49,0.0 +13094,50,16.25,42,0.0 +13094,5,21.35,25,0.0 +13094,71,21.5,46,0.0 +13094,76,18,4,0.0 +13094,10,31,11,0.0 +13094,72,34.8,23,0.0 +13094,62,49.3,30,0.0 +13094,51,53,26,0.0 +13094,53,32.8,46,0.0 +13094,22,21,27,0.0 +13094,6,25,38,0.0 +13094,32,32,21,0.0 +13094,14,23.25,14,0.0 +13094,73,15,3,0.0 +13094,57,19.5,24,0.0 +13094,75,7.75,3,0.0 +13094,65,21.05,48,0.0 +13094,43,46,21,0.0 +13094,34,14,33,0.0 +13094,31,12.5,18,0.0 +13094,9,97,12,0.0 +13094,15,15.5,47,0.0 +13094,18,62.5,22,0.0 +13094,44,19.45,45,0.0 +13094,45,9.5,7,0.0 +13094,33,2.5,10,0.0 +13094,21,10,34,0.0 +13094,61,28.5,37,0.0 +13094,29,123.79,7,0.0 +13094,52,7,41,0.0 +13094,64,33.25,30,0.0 +13094,23,9,22,0.0 +13094,4,22,21,0.0 +13094,47,9.5,10,0.0 +13094,66,17,11,0.0 +13094,46,12,32,0.0 +13094,17,39,33,0.0 +13094,35,18,36,0.0 +13094,37,26,9,0.0 +13094,49,20,9,0.0 +13094,26,31.23,20,0.0 +13094,60,34,8,0.0 +13094,20,81,2,0.0 +13094,48,12.75,24,0.0 +13094,70,15,4,0.0 +13094,41,9.65,27,0.0 +13094,38,263.5,41,0.0 +13094,16,17.45,42,0.0 +13094,42,14,11,0.0 +13094,2,19,6,0.0 +13094,58,13.25,5,0.0 +13094,24,4.5,1,0.0 +13094,12,38,36,0.0 +13094,39,18,31,0.0 +13095,58,13.25,15,0.0 +13095,30,25.89,11,0.0 +13095,36,19,39,0.0 +13095,16,17.45,29,0.0 +13095,59,55,1,0.0 +13095,67,14,31,0.0 +13095,44,19.45,44,0.0 +13095,50,16.25,12,0.0 +13095,46,12,41,0.0 +13095,43,46,15,0.0 +13095,74,10,50,0.0 +13095,10,31,33,0.0 +13095,64,33.25,29,0.0 +13095,19,9.2,34,0.0 +13095,31,12.5,26,0.0 +13095,4,22,5,0.0 +13095,34,14,20,0.0 +13095,73,15,13,0.0 +13095,55,24,22,0.0 +13095,29,123.79,25,0.0 +13095,9,97,22,0.0 +13095,20,81,34,0.0 +13095,66,17,5,0.0 +13095,53,32.8,39,0.0 +13095,61,28.5,20,0.0 +13095,17,39,28,0.0 +13095,45,9.5,40,0.0 +13095,13,6,36,0.0 +13095,49,20,17,0.0 +13095,63,43.9,9,0.0 +13095,35,18,6,0.0 +13095,5,21.35,16,0.0 +13095,62,49.3,28,0.0 +13095,70,15,25,0.0 +13095,7,30,20,0.0 +13095,33,2.5,45,0.0 +13095,77,13,23,0.0 +13095,8,40,4,0.0 +13095,54,7.45,49,0.0 +13095,42,14,17,0.0 +13095,68,12.5,45,0.0 +13095,39,18,15,0.0 +13095,72,34.8,47,0.0 +13095,56,38,2,0.0 +13095,37,26,32,0.0 +13095,28,45.6,18,0.0 +13095,26,31.23,41,0.0 +13095,11,21,34,0.0 +13095,41,9.65,27,0.0 +13095,52,7,39,0.0 +13095,21,10,50,0.0 +13095,23,9,19,0.0 +13095,57,19.5,47,0.0 +13095,25,14,1,0.0 +13095,15,15.5,10,0.0 +13095,22,21,20,0.0 +13095,51,53,18,0.0 +13095,6,25,23,0.0 +13095,40,18.4,12,0.0 +13095,47,9.5,12,0.0 +13095,71,21.5,6,0.0 +13095,12,38,19,0.0 +13095,60,34,19,0.0 +13095,3,10,14,0.0 +13095,48,12.75,30,0.0 +13095,1,18,44,0.0 +13095,38,263.5,4,0.0 +13095,27,43.9,16,0.0 +13095,75,7.75,42,0.0 +13095,69,36,3,0.0 +13095,76,18,26,0.0 +13095,32,32,6,0.0 +13095,2,19,24,0.0 +13095,14,23.25,6,0.0 +13095,18,62.5,17,0.0 +13096,54,7.45,8,0.0 +13096,15,15.5,43,0.0 +13096,62,49.3,11,0.0 +13096,69,36,43,0.0 +13096,14,23.25,45,0.0 +13096,73,15,26,0.0 +13096,28,45.6,5,0.0 +13096,34,14,46,0.0 +13096,49,20,18,0.0 +13096,6,25,20,0.0 +13096,53,32.8,47,0.0 +13096,76,18,46,0.0 +13096,57,19.5,1,0.0 +13096,36,19,36,0.0 +13096,71,21.5,20,0.0 +13096,47,9.5,24,0.0 +13096,41,9.65,48,0.0 +13096,43,46,18,0.0 +13096,13,6,2,0.0 +13096,63,43.9,48,0.0 +13096,31,12.5,17,0.0 +13096,32,32,4,0.0 +13096,39,18,25,0.0 +13096,66,17,15,0.0 +13096,1,18,15,0.0 +13096,5,21.35,39,0.0 +13096,74,10,28,0.0 +13096,25,14,21,0.0 +13096,55,24,24,0.0 +13096,17,39,23,0.0 +13096,24,4.5,33,0.0 +13096,61,28.5,45,0.0 +13096,68,12.5,22,0.0 +13096,40,18.4,23,0.0 +13096,38,263.5,28,0.0 +13096,26,31.23,39,0.0 +13096,59,55,21,0.0 +13097,77,13,29,0.0 +13097,52,7,30,0.0 +13097,26,31.23,6,0.0 +13097,39,18,13,0.0 +13097,54,7.45,28,0.0 +13097,56,38,50,0.0 +13097,64,33.25,46,0.0 +13097,76,18,23,0.0 +13097,53,32.8,46,0.0 +13097,15,15.5,23,0.0 +13097,5,21.35,42,0.0 +13097,27,43.9,35,0.0 +13097,55,24,6,0.0 +13097,58,13.25,50,0.0 +13097,42,14,34,0.0 +13097,20,81,35,0.0 +13097,34,14,15,0.0 +13097,29,123.79,7,0.0 +13097,41,9.65,11,0.0 +13097,2,19,14,0.0 +13097,44,19.45,5,0.0 +13097,43,46,22,0.0 +13097,19,9.2,18,0.0 +13097,11,21,48,0.0 +13097,16,17.45,26,0.0 +13097,22,21,5,0.0 +13097,36,19,17,0.0 +13097,3,10,8,0.0 +13097,28,45.6,11,0.0 +13097,38,263.5,7,0.0 +13097,35,18,14,0.0 +13097,24,4.5,15,0.0 +13098,59,55,47,0.0 +13098,68,12.5,31,0.0 +13098,15,15.5,30,0.0 +13098,44,19.45,50,0.0 +13098,33,2.5,2,0.0 +13098,10,31,46,0.0 +13098,4,22,8,0.0 +13098,74,10,15,0.0 +13098,39,18,5,0.0 +13098,67,14,23,0.0 +13098,76,18,46,0.0 +13098,65,21.05,26,0.0 +13098,72,34.8,7,0.0 +13098,19,9.2,26,0.0 +13098,51,53,43,0.0 +13098,35,18,45,0.0 +13098,61,28.5,26,0.0 +13098,25,14,14,0.0 +13098,69,36,8,0.0 +13098,73,15,30,0.0 +13098,24,4.5,18,0.0 +13098,52,7,23,0.0 +13098,1,18,39,0.0 +13098,47,9.5,30,0.0 +13098,34,14,9,0.0 +13098,2,19,3,0.0 +13098,18,62.5,8,0.0 +13098,6,25,29,0.0 +13098,62,49.3,1,0.0 +13098,30,25.89,4,0.0 +13098,14,23.25,17,0.0 +13098,57,19.5,47,0.0 +13098,53,32.8,41,0.0 +13098,45,9.5,13,0.0 +13098,31,12.5,46,0.0 +13098,12,38,4,0.0 +13098,41,9.65,12,0.0 +13098,9,97,37,0.0 +13098,20,81,30,0.0 +13098,60,34,8,0.0 +13099,47,9.5,21,0.0 +13099,69,36,40,0.0 +13099,54,7.45,20,0.0 +13099,49,20,11,0.0 +13099,9,97,15,0.0 +13099,36,19,36,0.0 +13099,7,30,49,0.0 +13099,77,13,5,0.0 +13099,71,21.5,40,0.0 +13099,65,21.05,13,0.0 +13099,19,9.2,24,0.0 +13099,66,17,21,0.0 +13099,53,32.8,15,0.0 +13099,1,18,28,0.0 +13099,18,62.5,42,0.0 +13099,48,12.75,36,0.0 +13099,13,6,7,0.0 +13099,45,9.5,15,0.0 +13099,62,49.3,42,0.0 +13099,42,14,25,0.0 +13099,59,55,16,0.0 +13099,26,31.23,25,0.0 +13099,16,17.45,28,0.0 +13099,37,26,44,0.0 +13099,27,43.9,39,0.0 +13099,23,9,36,0.0 +13099,5,21.35,4,0.0 +13099,28,45.6,40,0.0 +13099,68,12.5,21,0.0 +13099,32,32,26,0.0 +13099,20,81,12,0.0 +13099,41,9.65,32,0.0 +13099,25,14,32,0.0 +13099,29,123.79,47,0.0 +13099,61,28.5,26,0.0 +13099,76,18,41,0.0 +13099,8,40,18,0.0 +13099,22,21,42,0.0 +13100,23,9,26,0.0 +13100,77,13,25,0.0 +13100,48,12.75,5,0.0 +13100,69,36,31,0.0 +13100,26,31.23,22,0.0 +13100,62,49.3,9,0.0 +13100,25,14,35,0.0 +13100,11,21,48,0.0 +13100,61,28.5,3,0.0 +13100,7,30,27,0.0 +13100,73,15,7,0.0 +13100,8,40,37,0.0 +13100,76,18,23,0.0 +13100,3,10,42,0.0 +13100,55,24,30,0.0 +13100,66,17,13,0.0 +13100,19,9.2,36,0.0 +13100,51,53,12,0.0 +13100,13,6,40,0.0 +13100,40,18.4,11,0.0 +13100,49,20,6,0.0 +13100,59,55,14,0.0 +13100,60,34,5,0.0 +13100,18,62.5,23,0.0 +13100,32,32,4,0.0 +13100,42,14,22,0.0 +13100,5,21.35,4,0.0 +13100,43,46,25,0.0 +13100,35,18,31,0.0 +13100,75,7.75,9,0.0 +13100,21,10,2,0.0 +13100,15,15.5,36,0.0 +13100,45,9.5,28,0.0 +13100,22,21,4,0.0 +13100,29,123.79,25,0.0 +13100,16,17.45,8,0.0 +13100,30,25.89,42,0.0 +13100,54,7.45,34,0.0 +13100,46,12,24,0.0 +13100,38,263.5,21,0.0 +13100,34,14,38,0.0 +13100,36,19,47,0.0 +13100,20,81,13,0.0 +13100,72,34.8,20,0.0 +13100,47,9.5,34,0.0 +13100,12,38,15,0.0 +13100,58,13.25,15,0.0 +13100,39,18,4,0.0 +13100,65,21.05,21,0.0 +13100,57,19.5,9,0.0 +13100,24,4.5,1,0.0 +13101,21,10,3,0.0 +13101,26,31.23,5,0.0 +13101,43,46,18,0.0 +13101,36,19,5,0.0 +13101,24,4.5,32,0.0 +13101,27,43.9,13,0.0 +13101,17,39,49,0.0 +13101,70,15,37,0.0 +13101,69,36,9,0.0 +13101,15,15.5,35,0.0 +13101,54,7.45,9,0.0 +13101,37,26,22,0.0 +13101,38,263.5,24,0.0 +13101,23,9,41,0.0 +13101,8,40,34,0.0 +13101,5,21.35,41,0.0 +13101,13,6,27,0.0 +13101,72,34.8,16,0.0 +13101,29,123.79,23,0.0 +13101,49,20,7,0.0 +13101,1,18,47,0.0 +13101,32,32,42,0.0 +13101,14,23.25,48,0.0 +13101,55,24,27,0.0 +13101,46,12,36,0.0 +13101,31,12.5,36,0.0 +13101,73,15,13,0.0 +13101,41,9.65,10,0.0 +13101,39,18,38,0.0 +13101,47,9.5,7,0.0 +13101,68,12.5,3,0.0 +13101,61,28.5,18,0.0 +13101,59,55,6,0.0 +13101,28,45.6,32,0.0 +13101,20,81,20,0.0 +13101,67,14,20,0.0 +13101,19,9.2,22,0.0 +13101,58,13.25,24,0.0 +13101,25,14,4,0.0 +13101,74,10,34,0.0 +13101,45,9.5,46,0.0 +13101,22,21,39,0.0 +13101,3,10,24,0.0 +13101,57,19.5,40,0.0 +13101,33,2.5,15,0.0 +13101,6,25,21,0.0 +13101,65,21.05,13,0.0 +13101,7,30,33,0.0 +13101,44,19.45,3,0.0 +13101,50,16.25,50,0.0 +13101,35,18,39,0.0 +13102,16,17.45,16,0.0 +13102,75,7.75,45,0.0 +13102,64,33.25,25,0.0 +13102,11,21,8,0.0 +13102,45,9.5,8,0.0 +13102,46,12,36,0.0 +13102,47,9.5,2,0.0 +13102,18,62.5,36,0.0 +13102,30,25.89,46,0.0 +13102,24,4.5,47,0.0 +13102,27,43.9,30,0.0 +13102,7,30,44,0.0 +13102,21,10,44,0.0 +13102,58,13.25,27,0.0 +13102,52,7,33,0.0 +13102,15,15.5,35,0.0 +13102,61,28.5,18,0.0 +13102,66,17,21,0.0 +13102,54,7.45,36,0.0 +13102,76,18,5,0.0 +13102,71,21.5,13,0.0 +13102,74,10,47,0.0 +13102,62,49.3,10,0.0 +13102,59,55,32,0.0 +13102,72,34.8,35,0.0 +13102,77,13,46,0.0 +13102,19,9.2,24,0.0 +13102,9,97,41,0.0 +13102,41,9.65,37,0.0 +13102,39,18,2,0.0 +13102,67,14,14,0.0 +13102,43,46,38,0.0 +13102,44,19.45,14,0.0 +13102,38,263.5,45,0.0 +13102,33,2.5,36,0.0 +13102,32,32,2,0.0 +13102,31,12.5,17,0.0 +13102,6,25,40,0.0 +13102,13,6,2,0.0 +13102,26,31.23,23,0.0 +13102,63,43.9,9,0.0 +13102,23,9,27,0.0 +13102,42,14,14,0.0 +13102,14,23.25,48,0.0 +13102,36,19,34,0.0 +13102,28,45.6,30,0.0 +13102,53,32.8,13,0.0 +13102,3,10,10,0.0 +13102,8,40,26,0.0 +13102,70,15,23,0.0 +13102,50,16.25,18,0.0 +13102,17,39,43,0.0 +13102,2,19,20,0.0 +13102,56,38,4,0.0 +13102,57,19.5,24,0.0 +13102,37,26,40,0.0 +13102,20,81,16,0.0 +13102,1,18,31,0.0 +13103,44,19.45,50,0.0 +13103,52,7,15,0.0 +13103,51,53,24,0.0 +13103,75,7.75,45,0.0 +13103,40,18.4,9,0.0 +13103,55,24,4,0.0 +13103,63,43.9,27,0.0 +13103,69,36,16,0.0 +13103,43,46,11,0.0 +13103,73,15,33,0.0 +13103,53,32.8,9,0.0 +13103,12,38,30,0.0 +13103,64,33.25,7,0.0 +13103,38,263.5,44,0.0 +13103,17,39,44,0.0 +13103,58,13.25,17,0.0 +13104,45,9.5,40,0.0 +13104,73,15,30,0.0 +13104,66,17,1,0.0 +13104,65,21.05,39,0.0 +13104,64,33.25,28,0.0 +13104,26,31.23,36,0.0 +13104,29,123.79,7,0.0 +13104,43,46,47,0.0 +13104,62,49.3,27,0.0 +13104,41,9.65,48,0.0 +13104,53,32.8,2,0.0 +13104,75,7.75,25,0.0 +13104,40,18.4,6,0.0 +13104,67,14,12,0.0 +13104,68,12.5,33,0.0 +13104,39,18,45,0.0 +13104,15,15.5,10,0.0 +13104,69,36,29,0.0 +13104,25,14,8,0.0 +13104,18,62.5,5,0.0 +13104,6,25,30,0.0 +13104,42,14,8,0.0 +13104,4,22,18,0.0 +13104,36,19,8,0.0 +13104,5,21.35,30,0.0 +13104,49,20,23,0.0 +13104,60,34,50,0.0 +13104,71,21.5,38,0.0 +13104,37,26,47,0.0 +13104,27,43.9,41,0.0 +13104,12,38,3,0.0 +13104,61,28.5,37,0.0 +13104,13,6,12,0.0 +13104,11,21,20,0.0 +13104,56,38,16,0.0 +13104,21,10,16,0.0 +13104,70,15,33,0.0 +13104,77,13,2,0.0 +13104,16,17.45,27,0.0 +13104,57,19.5,24,0.0 +13104,63,43.9,29,0.0 +13104,22,21,35,0.0 +13104,17,39,7,0.0 +13104,10,31,19,0.0 +13104,33,2.5,47,0.0 +13104,54,7.45,23,0.0 +13104,23,9,35,0.0 +13104,47,9.5,36,0.0 +13104,58,13.25,50,0.0 +13104,46,12,13,0.0 +13104,7,30,31,0.0 +13104,20,81,37,0.0 +13104,44,19.45,3,0.0 +13104,72,34.8,4,0.0 +13104,28,45.6,26,0.0 +13104,8,40,7,0.0 +13104,52,7,17,0.0 +13104,59,55,12,0.0 +13104,35,18,9,0.0 +13104,19,9.2,18,0.0 +13104,34,14,1,0.0 +13104,3,10,29,0.0 +13104,51,53,26,0.0 +13104,14,23.25,23,0.0 +13104,55,24,14,0.0 +13104,50,16.25,29,0.0 +13104,9,97,17,0.0 +13104,76,18,21,0.0 +13104,74,10,15,0.0 +13104,32,32,6,0.0 +13104,1,18,49,0.0 +13104,38,263.5,42,0.0 +13104,48,12.75,20,0.0 +13104,2,19,6,0.0 +13105,55,24,16,0.0 +13105,68,12.5,41,0.0 +13105,11,21,16,0.0 +13105,28,45.6,11,0.0 +13105,42,14,1,0.0 +13105,20,81,11,0.0 +13105,26,31.23,7,0.0 +13105,35,18,15,0.0 +13105,49,20,24,0.0 +13105,1,18,10,0.0 +13105,15,15.5,38,0.0 +13105,25,14,20,0.0 +13105,44,19.45,25,0.0 +13105,16,17.45,18,0.0 +13105,27,43.9,7,0.0 +13105,60,34,17,0.0 +13105,17,39,44,0.0 +13105,75,7.75,18,0.0 +13105,45,9.5,29,0.0 +13105,8,40,47,0.0 +13105,70,15,34,0.0 +13105,74,10,36,0.0 +13105,47,9.5,47,0.0 +13105,43,46,6,0.0 +13105,36,19,44,0.0 +13105,29,123.79,39,0.0 +13105,7,30,10,0.0 +13105,54,7.45,16,0.0 +13105,31,12.5,1,0.0 +13106,66,17,33,0.0 +13106,16,17.45,26,0.0 +13106,42,14,41,0.0 +13106,5,21.35,50,0.0 +13106,6,25,3,0.0 +13106,39,18,7,0.0 +13106,48,12.75,39,0.0 +13106,60,34,14,0.0 +13106,36,19,28,0.0 +13106,63,43.9,46,0.0 +13106,37,26,5,0.0 +13106,11,21,12,0.0 +13106,71,21.5,40,0.0 +13106,1,18,36,0.0 +13106,25,14,1,0.0 +13106,10,31,43,0.0 +13106,74,10,15,0.0 +13106,58,13.25,4,0.0 +13106,3,10,37,0.0 +13106,44,19.45,10,0.0 +13106,46,12,5,0.0 +13106,62,49.3,18,0.0 +13106,35,18,17,0.0 +13106,18,62.5,14,0.0 +13106,29,123.79,11,0.0 +13106,13,6,44,0.0 +13106,28,45.6,30,0.0 +13106,33,2.5,10,0.0 +13106,23,9,25,0.0 +13106,49,20,24,0.0 +13106,30,25.89,32,0.0 +13106,68,12.5,37,0.0 +13106,26,31.23,33,0.0 +13106,67,14,11,0.0 +13106,57,19.5,25,0.0 +13106,17,39,29,0.0 +13106,31,12.5,32,0.0 +13106,54,7.45,7,0.0 +13106,27,43.9,9,0.0 +13106,41,9.65,4,0.0 +13106,22,21,19,0.0 +13106,56,38,33,0.0 +13106,19,9.2,34,0.0 +13106,2,19,36,0.0 +13106,15,15.5,6,0.0 +13106,64,33.25,50,0.0 +13106,47,9.5,45,0.0 +13106,20,81,50,0.0 +13106,53,32.8,47,0.0 +13106,75,7.75,11,0.0 +13106,9,97,27,0.0 +13106,21,10,34,0.0 +13106,70,15,11,0.0 +13106,43,46,28,0.0 +13106,59,55,13,0.0 +13106,45,9.5,34,0.0 +13106,69,36,49,0.0 +13106,77,13,18,0.0 +13106,72,34.8,22,0.0 +13106,24,4.5,45,0.0 +13106,61,28.5,9,0.0 +13106,65,21.05,15,0.0 +13106,40,18.4,45,0.0 +13106,50,16.25,28,0.0 +13106,4,22,10,0.0 +13106,8,40,41,0.0 +13106,7,30,29,0.0 +13106,14,23.25,12,0.0 +13106,73,15,24,0.0 +13106,52,7,20,0.0 +13106,51,53,5,0.0 +13106,38,263.5,10,0.0 +13106,76,18,50,0.0 +13107,16,17.45,10,0.0 +13107,52,7,1,0.0 +13107,30,25.89,34,0.0 +13107,44,19.45,45,0.0 +13107,43,46,3,0.0 +13107,6,25,19,0.0 +13107,77,13,20,0.0 +13107,36,19,43,0.0 +13107,51,53,6,0.0 +13107,55,24,37,0.0 +13107,15,15.5,6,0.0 +13107,4,22,32,0.0 +13107,7,30,6,0.0 +13107,62,49.3,6,0.0 +13107,8,40,46,0.0 +13107,34,14,21,0.0 +13107,22,21,46,0.0 +13107,48,12.75,20,0.0 +13107,67,14,40,0.0 +13107,17,39,1,0.0 +13107,69,36,43,0.0 +13107,29,123.79,22,0.0 +13107,25,14,33,0.0 +13107,65,21.05,2,0.0 +13107,73,15,33,0.0 +13107,18,62.5,37,0.0 +13107,12,38,38,0.0 +13107,19,9.2,4,0.0 +13107,38,263.5,31,0.0 +13107,57,19.5,24,0.0 +13107,42,14,19,0.0 +13107,66,17,11,0.0 +13107,46,12,22,0.0 +13107,2,19,20,0.0 +13107,47,9.5,7,0.0 +13107,76,18,50,0.0 +13107,10,31,31,0.0 +13107,74,10,45,0.0 +13107,23,9,45,0.0 +13107,61,28.5,45,0.0 +13107,9,97,39,0.0 +13107,63,43.9,23,0.0 +13107,37,26,34,0.0 +13107,71,21.5,19,0.0 +13107,27,43.9,7,0.0 +13107,3,10,12,0.0 +13107,56,38,44,0.0 +13107,13,6,21,0.0 +13107,31,12.5,7,0.0 +13107,11,21,21,0.0 +13107,72,34.8,15,0.0 +13107,32,32,7,0.0 +13107,20,81,20,0.0 +13107,33,2.5,38,0.0 +13108,56,38,4,0.0 +13108,52,7,46,0.0 +13108,61,28.5,35,0.0 +13108,4,22,18,0.0 +13108,44,19.45,27,0.0 +13108,9,97,11,0.0 +13108,19,9.2,45,0.0 +13108,13,6,44,0.0 +13108,53,32.8,38,0.0 +13108,59,55,33,0.0 +13108,64,33.25,27,0.0 +13108,7,30,24,0.0 +13108,32,32,38,0.0 +13108,49,20,45,0.0 +13108,68,12.5,4,0.0 +13108,50,16.25,1,0.0 +13108,25,14,30,0.0 +13108,36,19,26,0.0 +13108,63,43.9,31,0.0 +13108,8,40,33,0.0 +13108,15,15.5,48,0.0 +13108,42,14,16,0.0 +13108,2,19,16,0.0 +13108,6,25,26,0.0 +13108,45,9.5,14,0.0 +13108,54,7.45,17,0.0 +13108,21,10,14,0.0 +13108,71,21.5,23,0.0 +13108,5,21.35,14,0.0 +13108,55,24,10,0.0 +13108,39,18,7,0.0 +13108,40,18.4,9,0.0 +13108,17,39,35,0.0 +13108,58,13.25,46,0.0 +13108,37,26,40,0.0 +13108,10,31,5,0.0 +13108,69,36,26,0.0 +13108,35,18,50,0.0 +13108,1,18,32,0.0 +13108,38,263.5,10,0.0 +13108,18,62.5,3,0.0 +13108,67,14,23,0.0 +13108,16,17.45,40,0.0 +13108,20,81,16,0.0 +13108,33,2.5,14,0.0 +13108,43,46,44,0.0 +13108,30,25.89,46,0.0 +13108,74,10,1,0.0 +13108,57,19.5,11,0.0 +13108,75,7.75,3,0.0 +13108,60,34,25,0.0 +13108,41,9.65,48,0.0 +13108,46,12,45,0.0 +13108,62,49.3,41,0.0 +13108,26,31.23,26,0.0 +13108,23,9,19,0.0 +13108,77,13,32,0.0 +13108,51,53,8,0.0 +13108,73,15,30,0.0 +13108,47,9.5,48,0.0 +13108,31,12.5,21,0.0 +13108,24,4.5,42,0.0 +13108,48,12.75,25,0.0 +13108,70,15,14,0.0 +13108,65,21.05,26,0.0 +13108,28,45.6,10,0.0 +13108,14,23.25,30,0.0 +13108,12,38,18,0.0 +13108,72,34.8,30,0.0 +13108,22,21,39,0.0 +13109,35,18,9,0.0 +13109,72,34.8,30,0.0 +13109,36,19,21,0.0 +13109,2,19,32,0.0 +13109,76,18,50,0.0 +13109,55,24,29,0.0 +13109,19,9.2,20,0.0 +13109,58,13.25,45,0.0 +13109,27,43.9,31,0.0 +13109,66,17,1,0.0 +13109,63,43.9,26,0.0 +13109,34,14,33,0.0 +13109,7,30,30,0.0 +13109,42,14,33,0.0 +13109,12,38,38,0.0 +13109,33,2.5,8,0.0 +13109,48,12.75,3,0.0 +13109,10,31,37,0.0 +13109,61,28.5,35,0.0 +13109,46,12,31,0.0 +13109,67,14,33,0.0 +13109,37,26,17,0.0 +13109,56,38,31,0.0 +13109,32,32,32,0.0 +13109,74,10,48,0.0 +13109,4,22,45,0.0 +13109,38,263.5,20,0.0 +13109,21,10,34,0.0 +13109,50,16.25,41,0.0 +13109,57,19.5,2,0.0 +13109,65,21.05,14,0.0 +13109,52,7,49,0.0 +13109,22,21,34,0.0 +13109,13,6,39,0.0 +13109,49,20,24,0.0 +13109,20,81,14,0.0 +13109,25,14,6,0.0 +13109,26,31.23,2,0.0 +13109,24,4.5,1,0.0 +13109,45,9.5,39,0.0 +13109,71,21.5,23,0.0 +13109,28,45.6,14,0.0 +13109,3,10,9,0.0 +13109,31,12.5,18,0.0 +13109,14,23.25,9,0.0 +13109,8,40,2,0.0 +13110,16,17.45,5,0.0 +13110,13,6,37,0.0 +13110,64,33.25,3,0.0 +13110,53,32.8,15,0.0 +13110,33,2.5,12,0.0 +13110,40,18.4,18,0.0 +13110,47,9.5,15,0.0 +13110,59,55,4,0.0 +13110,37,26,26,0.0 +13110,35,18,38,0.0 +13110,15,15.5,38,0.0 +13110,32,32,4,0.0 +13110,11,21,42,0.0 +13110,44,19.45,28,0.0 +13110,34,14,16,0.0 +13110,43,46,16,0.0 +13110,54,7.45,25,0.0 +13110,36,19,47,0.0 +13110,30,25.89,43,0.0 +13110,22,21,35,0.0 +13110,23,9,11,0.0 +13110,70,15,2,0.0 +13110,21,10,21,0.0 +13110,68,12.5,22,0.0 +13110,58,13.25,40,0.0 +13110,3,10,39,0.0 +13110,67,14,4,0.0 +13110,39,18,28,0.0 +13110,20,81,41,0.0 +13110,46,12,33,0.0 +13110,77,13,10,0.0 +13110,52,7,11,0.0 +13110,19,9.2,13,0.0 +13110,66,17,26,0.0 +13110,26,31.23,19,0.0 +13110,63,43.9,34,0.0 +13110,62,49.3,15,0.0 +13110,60,34,30,0.0 +13110,28,45.6,8,0.0 +13110,38,263.5,16,0.0 +13110,61,28.5,32,0.0 +13110,74,10,5,0.0 +13110,72,34.8,14,0.0 +13110,75,7.75,27,0.0 +13110,42,14,29,0.0 +13110,5,21.35,8,0.0 +13110,7,30,33,0.0 +13110,31,12.5,31,0.0 +13110,18,62.5,33,0.0 +13110,10,31,25,0.0 +13110,14,23.25,43,0.0 +13110,56,38,35,0.0 +13110,9,97,7,0.0 +13110,8,40,7,0.0 +13110,29,123.79,37,0.0 +13110,65,21.05,6,0.0 +13111,37,26,24,0.0 +13111,10,31,37,0.0 +13111,48,12.75,10,0.0 +13111,18,62.5,42,0.0 +13111,69,36,3,0.0 +13111,63,43.9,26,0.0 +13111,38,263.5,22,0.0 +13111,47,9.5,14,0.0 +13111,52,7,41,0.0 +13111,7,30,8,0.0 +13111,3,10,39,0.0 +13111,66,17,35,0.0 +13111,68,12.5,22,0.0 +13111,23,9,8,0.0 +13111,51,53,41,0.0 +13111,49,20,30,0.0 +13111,14,23.25,32,0.0 +13111,61,28.5,9,0.0 +13111,46,12,29,0.0 +13111,77,13,46,0.0 +13111,39,18,8,0.0 +13111,9,97,31,0.0 +13111,54,7.45,29,0.0 +13111,45,9.5,42,0.0 +13111,58,13.25,15,0.0 +13111,15,15.5,9,0.0 +13111,41,9.65,42,0.0 +13111,32,32,34,0.0 +13111,62,49.3,37,0.0 +13111,43,46,26,0.0 +13111,71,21.5,18,0.0 +13111,36,19,33,0.0 +13111,5,21.35,27,0.0 +13111,40,18.4,17,0.0 +13111,13,6,21,0.0 +13111,16,17.45,30,0.0 +13111,67,14,29,0.0 +13111,20,81,49,0.0 +13111,73,15,21,0.0 +13111,27,43.9,3,0.0 +13111,65,21.05,3,0.0 +13111,11,21,24,0.0 +13111,64,33.25,1,0.0 +13111,25,14,45,0.0 +13111,70,15,22,0.0 +13111,4,22,40,0.0 +13111,22,21,49,0.0 +13111,33,2.5,33,0.0 +13111,17,39,27,0.0 +13111,35,18,6,0.0 +13111,6,25,9,0.0 +13111,75,7.75,4,0.0 +13111,26,31.23,17,0.0 +13111,42,14,42,0.0 +13111,59,55,8,0.0 +13111,31,12.5,23,0.0 +13111,19,9.2,16,0.0 +13111,28,45.6,17,0.0 +13111,60,34,37,0.0 +13111,57,19.5,7,0.0 +13111,56,38,34,0.0 +13111,2,19,1,0.0 +13111,34,14,6,0.0 +13111,55,24,5,0.0 +13111,1,18,48,0.0 +13111,44,19.45,7,0.0 +13111,72,34.8,48,0.0 +13111,24,4.5,44,0.0 +13111,30,25.89,36,0.0 +13111,50,16.25,4,0.0 +13112,39,18,29,0.0 +13112,51,53,23,0.0 +13112,21,10,9,0.0 +13112,66,17,30,0.0 +13112,61,28.5,7,0.0 +13112,34,14,27,0.0 +13112,24,4.5,36,0.0 +13112,70,15,24,0.0 +13112,27,43.9,47,0.0 +13112,4,22,19,0.0 +13112,40,18.4,33,0.0 +13112,30,25.89,3,0.0 +13112,60,34,15,0.0 +13112,56,38,26,0.0 +13112,71,21.5,45,0.0 +13113,53,32.8,41,0.0 +13113,11,21,27,0.0 +13113,34,14,25,0.0 +13113,19,9.2,8,0.0 +13113,5,21.35,26,0.0 +13113,7,30,12,0.0 +13113,18,62.5,41,0.0 +13113,58,13.25,18,0.0 +13113,42,14,49,0.0 +13113,6,25,38,0.0 +13113,22,21,42,0.0 +13113,32,32,20,0.0 +13113,21,10,46,0.0 +13113,52,7,41,0.0 +13113,33,2.5,47,0.0 +13113,74,10,45,0.0 +13113,28,45.6,23,0.0 +13113,9,97,17,0.0 +13113,14,23.25,41,0.0 +13113,60,34,34,0.0 +13113,54,7.45,40,0.0 +13113,27,43.9,39,0.0 +13113,1,18,42,0.0 +13113,50,16.25,27,0.0 +13113,76,18,36,0.0 +13113,64,33.25,21,0.0 +13113,57,19.5,30,0.0 +13113,26,31.23,20,0.0 +13113,61,28.5,1,0.0 +13113,2,19,33,0.0 +13113,77,13,21,0.0 +13113,70,15,15,0.0 +13113,20,81,11,0.0 +13113,51,53,22,0.0 +13113,48,12.75,12,0.0 +13113,10,31,50,0.0 +13113,45,9.5,26,0.0 +13113,12,38,35,0.0 +13113,73,15,9,0.0 +13113,40,18.4,2,0.0 +13114,19,9.2,50,0.0 +13114,31,12.5,22,0.0 +13114,28,45.6,39,0.0 +13114,76,18,12,0.0 +13114,16,17.45,21,0.0 +13114,27,43.9,42,0.0 +13114,36,19,20,0.0 +13114,11,21,20,0.0 +13114,48,12.75,37,0.0 +13114,44,19.45,16,0.0 +13114,39,18,39,0.0 +13114,37,26,29,0.0 +13114,69,36,12,0.0 +13114,8,40,16,0.0 +13114,64,33.25,45,0.0 +13114,55,24,19,0.0 +13114,57,19.5,40,0.0 +13114,42,14,1,0.0 +13114,41,9.65,49,0.0 +13114,26,31.23,15,0.0 +13114,23,9,42,0.0 +13114,4,22,49,0.0 +13114,46,12,27,0.0 +13114,68,12.5,14,0.0 +13114,20,81,4,0.0 +13114,58,13.25,22,0.0 +13114,66,17,3,0.0 +13114,65,21.05,47,0.0 +13114,74,10,7,0.0 +13114,53,32.8,3,0.0 +13114,49,20,3,0.0 +13114,73,15,25,0.0 +13114,61,28.5,11,0.0 +13114,63,43.9,30,0.0 +13114,40,18.4,46,0.0 +13114,38,263.5,34,0.0 +13114,43,46,28,0.0 +13114,3,10,13,0.0 +13114,70,15,49,0.0 +13114,33,2.5,18,0.0 +13114,45,9.5,18,0.0 +13114,25,14,48,0.0 +13114,7,30,37,0.0 +13114,15,15.5,1,0.0 +13114,54,7.45,38,0.0 +13114,72,34.8,6,0.0 +13114,14,23.25,31,0.0 +13114,59,55,12,0.0 +13114,32,32,26,0.0 +13114,50,16.25,49,0.0 +13114,29,123.79,38,0.0 +13114,21,10,50,0.0 +13114,10,31,29,0.0 +13114,30,25.89,22,0.0 +13114,52,7,3,0.0 +13114,51,53,50,0.0 +13114,77,13,33,0.0 +13114,2,19,32,0.0 +13114,5,21.35,21,0.0 +13114,60,34,26,0.0 +13114,17,39,12,0.0 +13114,22,21,34,0.0 +13114,56,38,2,0.0 +13114,24,4.5,39,0.0 +13114,35,18,32,0.0 +13114,1,18,24,0.0 +13114,75,7.75,4,0.0 +13114,71,21.5,47,0.0 +13114,9,97,8,0.0 +13114,6,25,45,0.0 +13114,62,49.3,44,0.0 +13114,18,62.5,9,0.0 +13115,14,23.25,19,0.0 +13115,74,10,40,0.0 +13115,61,28.5,24,0.0 +13115,65,21.05,7,0.0 +13115,57,19.5,9,0.0 +13115,44,19.45,14,0.0 +13115,31,12.5,12,0.0 +13115,36,19,20,0.0 +13115,75,7.75,34,0.0 +13115,60,34,15,0.0 +13115,68,12.5,29,0.0 +13115,52,7,21,0.0 +13115,2,19,2,0.0 +13115,16,17.45,5,0.0 +13115,13,6,11,0.0 +13115,22,21,9,0.0 +13115,28,45.6,48,0.0 +13115,43,46,12,0.0 +13115,6,25,37,0.0 +13115,38,263.5,28,0.0 +13115,49,20,46,0.0 +13115,48,12.75,10,0.0 +13115,46,12,34,0.0 +13115,4,22,42,0.0 +13115,71,21.5,23,0.0 +13115,1,18,2,0.0 +13115,9,97,14,0.0 +13115,21,10,31,0.0 +13115,54,7.45,46,0.0 +13115,67,14,15,0.0 +13115,72,34.8,13,0.0 +13115,40,18.4,28,0.0 +13115,77,13,1,0.0 +13115,23,9,38,0.0 +13115,18,62.5,32,0.0 +13115,37,26,35,0.0 +13115,7,30,46,0.0 +13115,24,4.5,42,0.0 +13115,59,55,44,0.0 +13115,63,43.9,5,0.0 +13115,19,9.2,20,0.0 +13115,11,21,11,0.0 +13115,41,9.65,41,0.0 +13115,30,25.89,33,0.0 +13115,58,13.25,48,0.0 +13115,73,15,21,0.0 +13115,25,14,8,0.0 +13115,47,9.5,39,0.0 +13115,15,15.5,10,0.0 +13115,45,9.5,13,0.0 +13115,55,24,32,0.0 +13115,32,32,7,0.0 +13115,29,123.79,27,0.0 +13115,42,14,15,0.0 +13115,51,53,18,0.0 +13115,8,40,10,0.0 +13115,12,38,39,0.0 +13115,70,15,33,0.0 +13115,39,18,42,0.0 +13115,26,31.23,47,0.0 +13115,20,81,36,0.0 +13115,17,39,30,0.0 +13115,76,18,19,0.0 +13115,69,36,23,0.0 +13115,50,16.25,13,0.0 +13115,33,2.5,33,0.0 +13115,53,32.8,29,0.0 +13115,5,21.35,42,0.0 +13115,3,10,25,0.0 +13116,10,31,3,0.0 +13116,6,25,47,0.0 +13116,33,2.5,6,0.0 +13116,63,43.9,8,0.0 +13116,59,55,26,0.0 +13116,73,15,48,0.0 +13116,32,32,30,0.0 +13116,52,7,46,0.0 +13116,56,38,24,0.0 +13116,23,9,2,0.0 +13116,24,4.5,11,0.0 +13116,20,81,36,0.0 +13116,77,13,19,0.0 +13116,57,19.5,40,0.0 +13116,17,39,20,0.0 +13116,36,19,15,0.0 +13116,69,36,30,0.0 +13116,28,45.6,15,0.0 +13116,7,30,5,0.0 +13116,46,12,13,0.0 +13116,21,10,26,0.0 +13116,61,28.5,1,0.0 +13116,44,19.45,18,0.0 +13116,67,14,13,0.0 +13116,3,10,15,0.0 +13116,11,21,40,0.0 +13116,19,9.2,44,0.0 +13116,74,10,15,0.0 +13116,31,12.5,24,0.0 +13116,8,40,38,0.0 +13116,30,25.89,48,0.0 +13116,13,6,25,0.0 +13116,12,38,4,0.0 +13116,54,7.45,34,0.0 +13116,1,18,5,0.0 +13116,5,21.35,40,0.0 +13116,72,34.8,18,0.0 +13116,58,13.25,34,0.0 +13116,76,18,5,0.0 +13116,75,7.75,1,0.0 +13116,18,62.5,17,0.0 +13116,9,97,1,0.0 +13116,64,33.25,46,0.0 +13116,22,21,42,0.0 +13116,39,18,50,0.0 +13116,65,21.05,12,0.0 +13116,68,12.5,15,0.0 +13116,71,21.5,50,0.0 +13116,49,20,24,0.0 +13116,34,14,24,0.0 +13116,25,14,33,0.0 +13116,16,17.45,4,0.0 +13116,42,14,14,0.0 +13116,53,32.8,10,0.0 +13117,70,15,16,0.0 +13117,25,14,48,0.0 +13117,32,32,7,0.0 +13117,45,9.5,40,0.0 +13117,29,123.79,23,0.0 +13117,44,19.45,25,0.0 +13117,73,15,2,0.0 +13117,26,31.23,6,0.0 +13117,6,25,34,0.0 +13117,68,12.5,38,0.0 +13117,14,23.25,39,0.0 +13117,16,17.45,28,0.0 +13117,51,53,27,0.0 +13117,37,26,41,0.0 +13117,22,21,23,0.0 +13117,21,10,49,0.0 +13117,38,263.5,13,0.0 +13117,12,38,46,0.0 +13117,61,28.5,34,0.0 +13117,8,40,27,0.0 +13117,7,30,40,0.0 +13117,49,20,23,0.0 +13117,28,45.6,34,0.0 +13117,65,21.05,6,0.0 +13117,66,17,2,0.0 +13117,58,13.25,36,0.0 +13117,36,19,27,0.0 +13117,55,24,9,0.0 +13117,60,34,13,0.0 +13117,27,43.9,3,0.0 +13117,43,46,36,0.0 +13117,67,14,25,0.0 +13117,64,33.25,48,0.0 +13117,19,9.2,17,0.0 +13117,62,49.3,18,0.0 +13117,20,81,47,0.0 +13117,33,2.5,26,0.0 +13117,52,7,2,0.0 +13117,5,21.35,2,0.0 +13117,75,7.75,3,0.0 +13117,74,10,2,0.0 +13117,9,97,14,0.0 +13117,24,4.5,7,0.0 +13117,15,15.5,37,0.0 +13117,39,18,29,0.0 +13117,3,10,12,0.0 +13117,40,18.4,23,0.0 +13117,71,21.5,2,0.0 +13117,42,14,12,0.0 +13117,63,43.9,20,0.0 +13117,54,7.45,29,0.0 +13117,10,31,36,0.0 +13117,59,55,46,0.0 +13117,77,13,39,0.0 +13117,4,22,39,0.0 +13117,53,32.8,37,0.0 +13117,2,19,27,0.0 +13117,35,18,4,0.0 +13117,56,38,32,0.0 +13117,18,62.5,38,0.0 +13117,48,12.75,16,0.0 +13117,46,12,50,0.0 +13117,30,25.89,11,0.0 +13117,69,36,6,0.0 +13117,50,16.25,45,0.0 +13117,41,9.65,16,0.0 +13117,47,9.5,33,0.0 +13117,23,9,10,0.0 +13117,76,18,49,0.0 +13117,34,14,3,0.0 +13117,13,6,21,0.0 +13117,72,34.8,9,0.0 +13117,31,12.5,32,0.0 +13118,11,21,12,0.0 +13118,20,81,36,0.0 +13118,26,31.23,45,0.0 +13118,13,6,48,0.0 +13118,32,32,11,0.0 +13118,68,12.5,14,0.0 +13118,55,24,19,0.0 +13118,8,40,6,0.0 +13118,53,32.8,27,0.0 +13118,75,7.75,41,0.0 +13118,30,25.89,12,0.0 +13118,28,45.6,4,0.0 +13118,4,22,30,0.0 +13118,33,2.5,19,0.0 +13118,71,21.5,27,0.0 +13118,65,21.05,23,0.0 +13118,17,39,9,0.0 +13118,69,36,10,0.0 +13118,76,18,33,0.0 +13118,49,20,19,0.0 +13118,19,9.2,31,0.0 +13118,10,31,3,0.0 +13119,11,21,37,0.0 +13119,70,15,47,0.0 +13119,43,46,30,0.0 +13119,54,7.45,9,0.0 +13119,34,14,49,0.0 +13119,18,62.5,49,0.0 +13119,49,20,46,0.0 +13119,77,13,31,0.0 +13119,71,21.5,49,0.0 +13119,20,81,25,0.0 +13119,50,16.25,18,0.0 +13119,9,97,26,0.0 +13119,30,25.89,5,0.0 +13119,40,18.4,32,0.0 +13119,73,15,40,0.0 +13119,22,21,37,0.0 +13119,42,14,37,0.0 +13119,23,9,36,0.0 +13119,36,19,4,0.0 +13119,41,9.65,15,0.0 +13120,56,38,30,0.0 +13120,16,17.45,6,0.0 +13120,17,39,11,0.0 +13120,2,19,22,0.0 +13120,76,18,30,0.0 +13120,37,26,46,0.0 +13120,8,40,46,0.0 +13120,68,12.5,41,0.0 +13120,77,13,34,0.0 +13120,54,7.45,16,0.0 +13120,72,34.8,9,0.0 +13120,75,7.75,23,0.0 +13120,58,13.25,39,0.0 +13120,26,31.23,10,0.0 +13120,64,33.25,49,0.0 +13120,52,7,12,0.0 +13120,48,12.75,1,0.0 +13120,14,23.25,27,0.0 +13120,62,49.3,1,0.0 +13120,60,34,36,0.0 +13120,11,21,38,0.0 +13120,30,25.89,47,0.0 +13120,45,9.5,41,0.0 +13120,51,53,11,0.0 +13120,55,24,9,0.0 +13120,27,43.9,10,0.0 +13120,65,21.05,30,0.0 +13120,3,10,17,0.0 +13120,7,30,48,0.0 +13120,46,12,27,0.0 +13120,4,22,4,0.0 +13120,13,6,11,0.0 +13120,20,81,13,0.0 +13120,36,19,8,0.0 +13120,25,14,41,0.0 +13120,32,32,22,0.0 +13120,31,12.5,28,0.0 +13120,15,15.5,15,0.0 +13120,10,31,24,0.0 +13120,42,14,18,0.0 +13120,41,9.65,41,0.0 +13120,43,46,20,0.0 +13120,67,14,49,0.0 +13120,35,18,46,0.0 +13120,6,25,26,0.0 +13120,28,45.6,49,0.0 +13120,57,19.5,9,0.0 +13120,61,28.5,5,0.0 +13120,12,38,8,0.0 +13120,70,15,29,0.0 +13120,50,16.25,16,0.0 +13121,29,123.79,17,0.0 +13121,8,40,41,0.0 +13121,42,14,16,0.0 +13121,40,18.4,31,0.0 +13121,22,21,49,0.0 +13121,38,263.5,35,0.0 +13121,50,16.25,44,0.0 +13121,72,34.8,4,0.0 +13121,24,4.5,5,0.0 +13121,43,46,39,0.0 +13121,1,18,37,0.0 +13121,77,13,5,0.0 +13121,37,26,50,0.0 +13121,53,32.8,22,0.0 +13121,55,24,10,0.0 +13121,69,36,1,0.0 +13121,67,14,36,0.0 +13121,49,20,10,0.0 +13121,33,2.5,32,0.0 +13121,10,31,45,0.0 +13121,58,13.25,15,0.0 +13121,2,19,46,0.0 +13121,64,33.25,40,0.0 +13121,54,7.45,6,0.0 +13121,59,55,24,0.0 +13121,23,9,34,0.0 +13121,13,6,18,0.0 +13121,5,21.35,45,0.0 +13121,75,7.75,15,0.0 +13121,26,31.23,18,0.0 +13121,56,38,13,0.0 +13121,7,30,12,0.0 +13121,73,15,47,0.0 +13121,74,10,26,0.0 +13121,17,39,40,0.0 +13121,16,17.45,28,0.0 +13121,12,38,5,0.0 +13121,48,12.75,24,0.0 +13121,36,19,3,0.0 +13121,66,17,44,0.0 +13121,18,62.5,12,0.0 +13121,41,9.65,26,0.0 +13121,51,53,2,0.0 +13121,45,9.5,44,0.0 +13121,35,18,4,0.0 +13122,73,15,6,0.0 +13122,39,18,46,0.0 +13122,18,62.5,22,0.0 +13122,34,14,20,0.0 +13122,37,26,35,0.0 +13122,11,21,8,0.0 +13122,19,9.2,35,0.0 +13122,54,7.45,30,0.0 +13122,55,24,19,0.0 +13122,45,9.5,6,0.0 +13122,16,17.45,8,0.0 +13122,41,9.65,19,0.0 +13122,58,13.25,2,0.0 +13122,43,46,17,0.0 +13122,57,19.5,38,0.0 +13123,18,62.5,15,0.0 +13123,7,30,25,0.0 +13123,21,10,3,0.0 +13123,24,4.5,28,0.0 +13123,13,6,28,0.0 +13124,46,12,7,0.0 +13124,77,13,11,0.0 +13124,37,26,16,0.0 +13124,33,2.5,20,0.0 +13124,42,14,7,0.0 +13124,71,21.5,28,0.0 +13124,47,9.5,23,0.0 +13124,65,21.05,29,0.0 +13124,20,81,41,0.0 +13124,29,123.79,13,0.0 +13124,31,12.5,42,0.0 +13124,11,21,7,0.0 +13124,30,25.89,23,0.0 +13124,66,17,17,0.0 +13124,56,38,30,0.0 +13124,28,45.6,15,0.0 +13124,75,7.75,21,0.0 +13124,54,7.45,27,0.0 +13124,5,21.35,7,0.0 +13124,27,43.9,10,0.0 +13124,59,55,15,0.0 +13124,49,20,15,0.0 +13124,32,32,41,0.0 +13124,4,22,49,0.0 +13124,43,46,34,0.0 +13124,64,33.25,20,0.0 +13124,74,10,26,0.0 +13124,70,15,43,0.0 +13124,3,10,40,0.0 +13124,6,25,18,0.0 +13124,61,28.5,35,0.0 +13124,55,24,46,0.0 +13124,44,19.45,23,0.0 +13124,36,19,31,0.0 +13124,23,9,36,0.0 +13124,26,31.23,7,0.0 +13124,17,39,6,0.0 +13124,21,10,20,0.0 +13124,62,49.3,34,0.0 +13124,10,31,47,0.0 +13124,16,17.45,42,0.0 +13124,2,19,19,0.0 +13124,35,18,24,0.0 +13124,38,263.5,28,0.0 +13124,18,62.5,7,0.0 +13124,40,18.4,10,0.0 +13124,9,97,23,0.0 +13124,34,14,20,0.0 +13124,72,34.8,37,0.0 +13124,24,4.5,38,0.0 +13124,41,9.65,4,0.0 +13124,12,38,23,0.0 +13124,13,6,30,0.0 +13124,53,32.8,27,0.0 +13124,8,40,7,0.0 +13124,57,19.5,42,0.0 +13124,76,18,8,0.0 +13125,48,12.75,22,0.0 +13125,13,6,22,0.0 +13125,71,21.5,19,0.0 +13125,12,38,16,0.0 +13125,24,4.5,9,0.0 +13125,26,31.23,27,0.0 +13125,50,16.25,11,0.0 +13125,42,14,28,0.0 +13125,19,9.2,24,0.0 +13125,8,40,43,0.0 +13125,30,25.89,3,0.0 +13125,77,13,6,0.0 +13125,16,17.45,27,0.0 +13125,33,2.5,27,0.0 +13125,74,10,16,0.0 +13125,28,45.6,6,0.0 +13125,62,49.3,41,0.0 +13125,20,81,4,0.0 +13125,67,14,2,0.0 +13125,52,7,36,0.0 +13125,4,22,38,0.0 +13125,32,32,13,0.0 +13125,59,55,15,0.0 +13125,22,21,4,0.0 +13125,36,19,14,0.0 +13125,56,38,25,0.0 +13125,9,97,4,0.0 +13125,40,18.4,26,0.0 +13125,25,14,14,0.0 +13125,10,31,39,0.0 +13125,7,30,4,0.0 +13125,51,53,1,0.0 +13125,1,18,41,0.0 +13125,2,19,6,0.0 +13125,76,18,24,0.0 +13125,73,15,45,0.0 +13125,64,33.25,9,0.0 +13125,38,263.5,14,0.0 +13125,46,12,14,0.0 +13125,27,43.9,22,0.0 +13125,29,123.79,6,0.0 +13125,72,34.8,48,0.0 +13125,43,46,38,0.0 +13125,37,26,7,0.0 +13125,5,21.35,1,0.0 +13125,41,9.65,41,0.0 +13125,17,39,18,0.0 +13125,34,14,12,0.0 +13125,70,15,41,0.0 +13125,65,21.05,37,0.0 +13125,49,20,46,0.0 +13125,3,10,28,0.0 +13125,15,15.5,22,0.0 +13125,18,62.5,47,0.0 +13125,61,28.5,18,0.0 +13125,69,36,29,0.0 +13125,44,19.45,49,0.0 +13125,68,12.5,44,0.0 +13125,60,34,2,0.0 +13125,66,17,20,0.0 +13125,63,43.9,26,0.0 +13125,47,9.5,3,0.0 +13125,45,9.5,14,0.0 +13125,55,24,1,0.0 +13125,23,9,12,0.0 +13125,57,19.5,38,0.0 +13125,54,7.45,31,0.0 +13125,6,25,50,0.0 +13125,75,7.75,3,0.0 +13125,35,18,14,0.0 +13125,14,23.25,46,0.0 +13125,58,13.25,6,0.0 +13126,67,14,46,0.0 +13126,19,9.2,37,0.0 +13126,5,21.35,14,0.0 +13126,31,12.5,10,0.0 +13126,68,12.5,6,0.0 +13126,4,22,37,0.0 +13126,48,12.75,33,0.0 +13126,76,18,36,0.0 +13126,64,33.25,47,0.0 +13126,26,31.23,39,0.0 +13126,52,7,44,0.0 +13126,7,30,50,0.0 +13126,58,13.25,1,0.0 +13126,18,62.5,50,0.0 +13126,55,24,26,0.0 +13126,50,16.25,48,0.0 +13126,56,38,40,0.0 +13126,14,23.25,49,0.0 +13126,17,39,4,0.0 +13126,22,21,8,0.0 +13126,69,36,7,0.0 +13126,37,26,8,0.0 +13126,66,17,3,0.0 +13126,35,18,13,0.0 +13126,53,32.8,35,0.0 +13126,13,6,5,0.0 +13126,10,31,40,0.0 +13126,47,9.5,8,0.0 +13126,57,19.5,1,0.0 +13126,1,18,16,0.0 +13126,63,43.9,26,0.0 +13126,71,21.5,49,0.0 +13126,15,15.5,30,0.0 +13126,34,14,9,0.0 +13126,3,10,49,0.0 +13126,30,25.89,32,0.0 +13126,33,2.5,6,0.0 +13126,75,7.75,6,0.0 +13126,20,81,11,0.0 +13126,25,14,30,0.0 +13126,36,19,15,0.0 +13126,21,10,10,0.0 +13126,38,263.5,21,0.0 +13126,39,18,28,0.0 +13126,60,34,19,0.0 +13126,77,13,1,0.0 +13126,32,32,46,0.0 +13126,12,38,33,0.0 +13126,44,19.45,34,0.0 +13126,2,19,13,0.0 +13126,40,18.4,36,0.0 +13126,28,45.6,34,0.0 +13126,9,97,21,0.0 +13126,51,53,7,0.0 +13126,41,9.65,19,0.0 +13126,23,9,9,0.0 +13126,74,10,14,0.0 +13126,45,9.5,33,0.0 +13126,43,46,36,0.0 +13126,72,34.8,43,0.0 +13126,59,55,7,0.0 +13126,70,15,29,0.0 +13126,24,4.5,33,0.0 +13126,46,12,17,0.0 +13126,29,123.79,24,0.0 +13126,8,40,12,0.0 +13126,6,25,49,0.0 +13126,42,14,19,0.0 +13126,54,7.45,26,0.0 +13126,27,43.9,40,0.0 +13126,62,49.3,31,0.0 +13126,16,17.45,3,0.0 +13126,61,28.5,47,0.0 +13126,49,20,28,0.0 +13127,59,55,13,0.0 +13127,1,18,3,0.0 +13127,51,53,3,0.0 +13127,42,14,13,0.0 +13127,71,21.5,41,0.0 +13127,47,9.5,8,0.0 +13127,18,62.5,24,0.0 +13127,58,13.25,9,0.0 +13127,65,21.05,4,0.0 +13127,14,23.25,10,0.0 +13127,19,9.2,6,0.0 +13127,39,18,44,0.0 +13127,24,4.5,10,0.0 +13127,33,2.5,3,0.0 +13127,45,9.5,39,0.0 +13127,43,46,4,0.0 +13127,62,49.3,4,0.0 +13127,31,12.5,32,0.0 +13127,15,15.5,13,0.0 +13127,52,7,30,0.0 +13127,22,21,41,0.0 +13127,30,25.89,26,0.0 +13127,66,17,2,0.0 +13127,67,14,9,0.0 +13127,29,123.79,8,0.0 +13127,49,20,9,0.0 +13127,73,15,4,0.0 +13127,34,14,30,0.0 +13127,2,19,34,0.0 +13127,20,81,14,0.0 +13127,74,10,29,0.0 +13127,77,13,39,0.0 +13127,25,14,5,0.0 +13127,7,30,48,0.0 +13127,27,43.9,5,0.0 +13127,5,21.35,17,0.0 +13127,69,36,35,0.0 +13127,75,7.75,11,0.0 +13127,26,31.23,23,0.0 +13127,64,33.25,50,0.0 +13127,6,25,23,0.0 +13127,76,18,6,0.0 +13127,37,26,35,0.0 +13127,23,9,24,0.0 +13127,40,18.4,49,0.0 +13127,56,38,9,0.0 +13127,4,22,6,0.0 +13127,3,10,25,0.0 +13127,13,6,9,0.0 +13127,8,40,48,0.0 +13127,41,9.65,8,0.0 +13127,72,34.8,50,0.0 +13127,9,97,3,0.0 +13127,32,32,47,0.0 +13127,17,39,48,0.0 +13127,60,34,20,0.0 +13127,54,7.45,16,0.0 +13127,53,32.8,35,0.0 +13127,50,16.25,4,0.0 +13127,10,31,22,0.0 +13127,57,19.5,18,0.0 +13127,35,18,27,0.0 +13127,38,263.5,45,0.0 +13127,11,21,9,0.0 +13127,61,28.5,5,0.0 +13128,12,38,47,0.0 +13128,3,10,18,0.0 +13128,60,34,1,0.0 +13128,6,25,12,0.0 +13128,69,36,22,0.0 +13128,52,7,26,0.0 +13128,2,19,20,0.0 +13128,29,123.79,49,0.0 +13128,55,24,8,0.0 +13128,1,18,48,0.0 +13128,24,4.5,13,0.0 +13128,9,97,23,0.0 +13128,38,263.5,31,0.0 +13128,65,21.05,30,0.0 +13128,11,21,9,0.0 +13128,46,12,39,0.0 +13128,75,7.75,16,0.0 +13128,74,10,4,0.0 +13128,44,19.45,26,0.0 +13128,72,34.8,48,0.0 +13128,59,55,22,0.0 +13128,36,19,18,0.0 +13128,43,46,7,0.0 +13128,23,9,38,0.0 +13128,19,9.2,3,0.0 +13128,66,17,4,0.0 +13128,22,21,2,0.0 +13128,10,31,47,0.0 +13128,13,6,13,0.0 +13128,58,13.25,44,0.0 +13128,70,15,23,0.0 +13128,25,14,41,0.0 +13128,56,38,38,0.0 +13128,54,7.45,7,0.0 +13128,51,53,2,0.0 +13128,28,45.6,43,0.0 +13128,41,9.65,2,0.0 +13128,35,18,35,0.0 +13128,33,2.5,5,0.0 +13128,32,32,2,0.0 +13128,77,13,25,0.0 +13128,47,9.5,19,0.0 +13128,76,18,30,0.0 +13128,15,15.5,35,0.0 +13128,8,40,28,0.0 +13128,31,12.5,22,0.0 +13128,7,30,11,0.0 +13128,67,14,18,0.0 +13128,45,9.5,8,0.0 +13128,14,23.25,18,0.0 +13128,30,25.89,15,0.0 +13128,16,17.45,45,0.0 +13128,50,16.25,12,0.0 +13128,61,28.5,38,0.0 +13128,63,43.9,1,0.0 +13128,49,20,26,0.0 +13128,4,22,21,0.0 +13129,5,21.35,13,0.0 +13129,74,10,11,0.0 +13129,58,13.25,32,0.0 +13129,36,19,50,0.0 +13129,7,30,34,0.0 +13129,24,4.5,18,0.0 +13129,38,263.5,21,0.0 +13129,28,45.6,37,0.0 +13129,41,9.65,30,0.0 +13129,69,36,43,0.0 +13129,19,9.2,44,0.0 +13129,71,21.5,20,0.0 +13129,11,21,22,0.0 +13129,6,25,14,0.0 +13129,16,17.45,13,0.0 +13129,18,62.5,15,0.0 +13129,3,10,45,0.0 +13129,49,20,39,0.0 +13129,15,15.5,32,0.0 +13129,60,34,40,0.0 +13129,23,9,14,0.0 +13129,9,97,43,0.0 +13129,13,6,50,0.0 +13129,72,34.8,50,0.0 +13129,52,7,38,0.0 +13129,63,43.9,48,0.0 +13129,34,14,14,0.0 +13129,73,15,18,0.0 +13129,47,9.5,45,0.0 +13129,42,14,31,0.0 +13129,48,12.75,41,0.0 +13129,21,10,27,0.0 +13129,40,18.4,26,0.0 +13129,27,43.9,29,0.0 +13129,64,33.25,5,0.0 +13129,30,25.89,37,0.0 +13129,39,18,24,0.0 +13129,54,7.45,19,0.0 +13129,2,19,11,0.0 +13129,70,15,28,0.0 +13129,59,55,30,0.0 +13129,35,18,44,0.0 +13129,75,7.75,32,0.0 +13129,57,19.5,37,0.0 +13129,32,32,7,0.0 +13129,44,19.45,23,0.0 +13129,53,32.8,26,0.0 +13129,50,16.25,6,0.0 +13130,25,14,1,0.0 +13130,57,19.5,9,0.0 +13130,49,20,23,0.0 +13130,42,14,9,0.0 +13130,18,62.5,35,0.0 +13130,6,25,46,0.0 +13130,65,21.05,40,0.0 +13130,58,13.25,19,0.0 +13130,31,12.5,47,0.0 +13130,12,38,48,0.0 +13130,54,7.45,19,0.0 +13130,19,9.2,9,0.0 +13130,48,12.75,18,0.0 +13130,29,123.79,4,0.0 +13130,59,55,20,0.0 +13130,73,15,2,0.0 +13130,26,31.23,42,0.0 +13130,14,23.25,9,0.0 +13130,76,18,30,0.0 +13130,11,21,26,0.0 +13130,43,46,43,0.0 +13130,20,81,26,0.0 +13130,70,15,21,0.0 +13130,3,10,43,0.0 +13130,56,38,33,0.0 +13130,10,31,9,0.0 +13130,62,49.3,20,0.0 +13130,37,26,45,0.0 +13130,32,32,23,0.0 +13130,13,6,46,0.0 +13130,74,10,25,0.0 +13131,49,20,33,0.0 +13131,20,81,33,0.0 +13131,1,18,34,0.0 +13131,68,12.5,8,0.0 +13131,7,30,38,0.0 +13131,73,15,32,0.0 +13131,39,18,14,0.0 +13131,10,31,8,0.0 +13131,11,21,35,0.0 +13131,67,14,8,0.0 +13131,42,14,39,0.0 +13131,2,19,36,0.0 +13131,69,36,38,0.0 +13131,32,32,42,0.0 +13132,53,32.8,31,0.0 +13132,70,15,47,0.0 +13132,35,18,35,0.0 +13132,36,19,4,0.0 +13132,1,18,21,0.0 +13132,49,20,9,0.0 +13132,34,14,39,0.0 +13132,28,45.6,36,0.0 +13132,22,21,3,0.0 +13132,69,36,15,0.0 +13132,8,40,5,0.0 +13132,44,19.45,26,0.0 +13132,65,21.05,42,0.0 +13132,6,25,42,0.0 +13132,54,7.45,31,0.0 +13133,23,9,39,0.0 +13133,56,38,15,0.0 +13133,38,263.5,2,0.0 +13133,63,43.9,25,0.0 +13133,1,18,19,0.0 +13133,31,12.5,46,0.0 +13133,9,97,42,0.0 +13133,48,12.75,33,0.0 +13133,13,6,8,0.0 +13133,41,9.65,42,0.0 +13133,51,53,13,0.0 +13133,29,123.79,37,0.0 +13133,77,13,37,0.0 +13133,20,81,9,0.0 +13133,28,45.6,1,0.0 +13133,16,17.45,5,0.0 +13133,2,19,10,0.0 +13133,64,33.25,28,0.0 +13133,27,43.9,26,0.0 +13133,46,12,30,0.0 +13133,3,10,22,0.0 +13133,6,25,39,0.0 +13133,74,10,22,0.0 +13133,53,32.8,26,0.0 +13133,14,23.25,14,0.0 +13133,15,15.5,29,0.0 +13134,7,30,25,0.0 +13134,32,32,21,0.0 +13134,25,14,33,0.0 +13134,67,14,26,0.0 +13134,72,34.8,1,0.0 +13134,76,18,26,0.0 +13134,2,19,42,0.0 +13134,30,25.89,48,0.0 +13134,63,43.9,2,0.0 +13134,22,21,46,0.0 +13134,62,49.3,6,0.0 +13134,21,10,11,0.0 +13134,36,19,28,0.0 +13134,19,9.2,1,0.0 +13134,49,20,5,0.0 +13134,41,9.65,13,0.0 +13134,6,25,35,0.0 +13134,12,38,17,0.0 +13134,8,40,39,0.0 +13134,34,14,27,0.0 +13135,61,28.5,31,0.0 +13135,68,12.5,40,0.0 +13135,52,7,47,0.0 +13135,59,55,28,0.0 +13135,50,16.25,33,0.0 +13135,27,43.9,32,0.0 +13135,60,34,33,0.0 +13135,43,46,25,0.0 +13135,18,62.5,7,0.0 +13135,21,10,40,0.0 +13136,5,21.35,28,0.0 +13136,18,62.5,28,0.0 +13136,17,39,26,0.0 +13136,3,10,24,0.0 +13136,54,7.45,20,0.0 +13136,20,81,47,0.0 +13136,66,17,43,0.0 +13136,69,36,15,0.0 +13136,16,17.45,8,0.0 +13136,11,21,3,0.0 +13136,64,33.25,28,0.0 +13136,38,263.5,9,0.0 +13136,51,53,35,0.0 +13136,42,14,2,0.0 +13136,55,24,29,0.0 +13136,35,18,28,0.0 +13136,74,10,22,0.0 +13136,52,7,35,0.0 +13136,15,15.5,26,0.0 +13136,4,22,30,0.0 +13136,30,25.89,28,0.0 +13136,65,21.05,49,0.0 +13136,2,19,50,0.0 +13136,22,21,40,0.0 +13136,59,55,2,0.0 +13136,70,15,50,0.0 +13136,36,19,10,0.0 +13136,23,9,13,0.0 +13136,68,12.5,41,0.0 +13136,26,31.23,39,0.0 +13136,1,18,49,0.0 +13136,7,30,17,0.0 +13136,61,28.5,37,0.0 +13136,14,23.25,19,0.0 +13136,28,45.6,9,0.0 +13136,76,18,20,0.0 +13136,53,32.8,2,0.0 +13136,56,38,5,0.0 +13136,8,40,22,0.0 +13136,6,25,40,0.0 +13136,37,26,34,0.0 +13136,77,13,1,0.0 +13136,27,43.9,30,0.0 +13136,58,13.25,47,0.0 +13136,40,18.4,27,0.0 +13136,44,19.45,35,0.0 +13136,48,12.75,30,0.0 +13136,43,46,37,0.0 +13136,67,14,1,0.0 +13136,32,32,24,0.0 +13136,33,2.5,45,0.0 +13136,13,6,24,0.0 +13137,61,28.5,41,0.0 +13137,73,15,35,0.0 +13137,40,18.4,12,0.0 +13137,39,18,4,0.0 +13137,54,7.45,24,0.0 +13137,32,32,23,0.0 +13137,64,33.25,29,0.0 +13137,34,14,17,0.0 +13137,28,45.6,3,0.0 +13137,19,9.2,50,0.0 +13137,20,81,49,0.0 +13137,57,19.5,3,0.0 +13137,68,12.5,39,0.0 +13137,75,7.75,23,0.0 +13137,53,32.8,47,0.0 +13137,24,4.5,11,0.0 +13137,3,10,46,0.0 +13137,74,10,44,0.0 +13137,11,21,1,0.0 +13137,77,13,10,0.0 +13137,48,12.75,17,0.0 +13137,50,16.25,42,0.0 +13137,45,9.5,5,0.0 +13137,14,23.25,29,0.0 +13137,65,21.05,24,0.0 +13137,55,24,4,0.0 +13137,16,17.45,13,0.0 +13137,44,19.45,47,0.0 +13137,9,97,37,0.0 +13137,58,13.25,35,0.0 +13137,4,22,11,0.0 +13137,35,18,30,0.0 +13137,31,12.5,35,0.0 +13137,42,14,50,0.0 +13137,62,49.3,37,0.0 +13137,52,7,45,0.0 +13137,6,25,21,0.0 +13137,10,31,38,0.0 +13137,47,9.5,34,0.0 +13137,46,12,11,0.0 +13138,11,21,46,0.0 +13138,64,33.25,25,0.0 +13138,29,123.79,38,0.0 +13138,25,14,29,0.0 +13138,62,49.3,30,0.0 +13138,17,39,6,0.0 +13138,5,21.35,19,0.0 +13138,19,9.2,20,0.0 +13138,52,7,37,0.0 +13138,37,26,46,0.0 +13138,21,10,7,0.0 +13138,74,10,50,0.0 +13138,15,15.5,34,0.0 +13138,45,9.5,18,0.0 +13139,49,20,14,0.0 +13139,41,9.65,29,0.0 +13139,75,7.75,19,0.0 +13139,28,45.6,49,0.0 +13139,31,12.5,32,0.0 +13139,46,12,44,0.0 +13139,48,12.75,10,0.0 +13139,39,18,33,0.0 +13139,15,15.5,14,0.0 +13139,5,21.35,22,0.0 +13139,64,33.25,30,0.0 +13139,12,38,14,0.0 +13139,22,21,38,0.0 +13139,65,21.05,48,0.0 +13139,33,2.5,11,0.0 +13139,77,13,26,0.0 +13139,29,123.79,15,0.0 +13139,72,34.8,7,0.0 +13139,76,18,14,0.0 +13139,3,10,48,0.0 +13139,21,10,33,0.0 +13139,30,25.89,8,0.0 +13139,20,81,20,0.0 +13139,43,46,6,0.0 +13139,55,24,13,0.0 +13139,52,7,17,0.0 +13139,19,9.2,43,0.0 +13139,14,23.25,12,0.0 +13139,6,25,12,0.0 +13139,26,31.23,20,0.0 +13139,63,43.9,25,0.0 +13139,13,6,5,0.0 +13139,7,30,3,0.0 +13139,57,19.5,30,0.0 +13139,18,62.5,22,0.0 +13139,4,22,13,0.0 +13139,74,10,4,0.0 +13139,27,43.9,31,0.0 +13139,40,18.4,19,0.0 +13139,10,31,18,0.0 +13140,15,15.5,32,0.0 +13140,63,43.9,1,0.0 +13140,42,14,31,0.0 +13140,57,19.5,22,0.0 +13140,51,53,50,0.0 +13140,61,28.5,28,0.0 +13140,75,7.75,31,0.0 +13140,25,14,34,0.0 +13140,64,33.25,20,0.0 +13140,21,10,18,0.0 +13140,69,36,21,0.0 +13140,2,19,7,0.0 +13140,13,6,5,0.0 +13141,9,97,42,0.0 +13141,17,39,1,0.0 +13141,66,17,2,0.0 +13141,65,21.05,17,0.0 +13141,58,13.25,15,0.0 +13141,18,62.5,34,0.0 +13141,26,31.23,2,0.0 +13141,57,19.5,6,0.0 +13141,2,19,13,0.0 +13141,21,10,22,0.0 +13141,37,26,39,0.0 +13141,67,14,13,0.0 +13141,35,18,7,0.0 +13141,49,20,31,0.0 +13141,28,45.6,44,0.0 +13141,60,34,6,0.0 +13141,63,43.9,22,0.0 +13141,13,6,20,0.0 +13141,46,12,29,0.0 +13141,8,40,19,0.0 +13141,68,12.5,49,0.0 +13142,2,19,27,0.0 +13142,43,46,45,0.0 +13142,4,22,8,0.0 +13142,34,14,9,0.0 +13142,50,16.25,29,0.0 +13142,31,12.5,30,0.0 +13142,11,21,7,0.0 +13142,1,18,39,0.0 +13142,26,31.23,44,0.0 +13142,15,15.5,6,0.0 +13142,42,14,47,0.0 +13142,55,24,44,0.0 +13142,25,14,14,0.0 +13142,38,263.5,36,0.0 +13142,47,9.5,46,0.0 +13142,23,9,36,0.0 +13142,49,20,8,0.0 +13142,18,62.5,21,0.0 +13142,65,21.05,10,0.0 +13142,33,2.5,31,0.0 +13142,27,43.9,41,0.0 +13142,48,12.75,7,0.0 +13142,58,13.25,20,0.0 +13142,71,21.5,42,0.0 +13142,61,28.5,39,0.0 +13142,3,10,24,0.0 +13142,19,9.2,42,0.0 +13142,6,25,7,0.0 +13142,22,21,4,0.0 +13142,46,12,10,0.0 +13142,12,38,8,0.0 +13142,73,15,27,0.0 +13142,9,97,27,0.0 +13142,68,12.5,3,0.0 +13142,8,40,31,0.0 +13142,59,55,13,0.0 +13143,44,19.45,16,0.0 +13143,14,23.25,3,0.0 +13143,38,263.5,17,0.0 +13143,49,20,28,0.0 +13143,4,22,18,0.0 +13143,61,28.5,3,0.0 +13143,75,7.75,25,0.0 +13143,59,55,11,0.0 +13143,21,10,14,0.0 +13144,69,36,41,0.0 +13144,57,19.5,11,0.0 +13144,20,81,17,0.0 +13144,6,25,10,0.0 +13144,34,14,48,0.0 +13144,24,4.5,31,0.0 +13144,51,53,36,0.0 +13144,77,13,20,0.0 +13144,44,19.45,5,0.0 +13144,22,21,23,0.0 +13144,39,18,13,0.0 +13144,36,19,39,0.0 +13144,31,12.5,13,0.0 +13144,68,12.5,4,0.0 +13145,20,81,16,0.0 +13145,56,38,36,0.0 +13145,3,10,8,0.0 +13145,53,32.8,4,0.0 +13145,61,28.5,39,0.0 +13145,29,123.79,23,0.0 +13145,7,30,16,0.0 +13145,19,9.2,44,0.0 +13145,64,33.25,23,0.0 +13145,22,21,27,0.0 +13145,14,23.25,7,0.0 +13145,44,19.45,19,0.0 +13145,75,7.75,50,0.0 +13145,70,15,29,0.0 +13145,49,20,8,0.0 +13145,12,38,31,0.0 +13145,35,18,25,0.0 +13145,46,12,15,0.0 +13145,24,4.5,15,0.0 +13145,6,25,35,0.0 +13145,32,32,3,0.0 +13145,39,18,5,0.0 +13145,54,7.45,6,0.0 +13145,1,18,10,0.0 +13145,41,9.65,19,0.0 +13145,34,14,18,0.0 +13145,26,31.23,50,0.0 +13145,21,10,27,0.0 +13145,76,18,11,0.0 +13145,18,62.5,13,0.0 +13145,58,13.25,14,0.0 +13145,48,12.75,28,0.0 +13145,9,97,33,0.0 +13145,42,14,19,0.0 +13145,8,40,44,0.0 +13145,30,25.89,34,0.0 +13145,57,19.5,35,0.0 +13145,43,46,6,0.0 +13145,67,14,30,0.0 +13145,38,263.5,36,0.0 +13145,62,49.3,23,0.0 +13145,11,21,39,0.0 +13145,69,36,12,0.0 +13145,5,21.35,1,0.0 +13145,25,14,47,0.0 +13145,73,15,45,0.0 +13145,51,53,30,0.0 +13145,31,12.5,4,0.0 +13145,71,21.5,28,0.0 +13145,68,12.5,36,0.0 +13145,77,13,36,0.0 +13145,55,24,48,0.0 +13145,50,16.25,25,0.0 +13145,47,9.5,18,0.0 +13145,33,2.5,31,0.0 +13145,45,9.5,24,0.0 +13145,59,55,15,0.0 +13145,74,10,25,0.0 +13145,36,19,33,0.0 +13145,10,31,16,0.0 +13145,23,9,24,0.0 +13145,63,43.9,30,0.0 +13145,28,45.6,33,0.0 +13145,65,21.05,22,0.0 +13145,15,15.5,31,0.0 +13145,4,22,5,0.0 +13145,16,17.45,42,0.0 +13145,2,19,8,0.0 +13145,66,17,46,0.0 +13145,60,34,46,0.0 +13145,27,43.9,13,0.0 +13145,17,39,36,0.0 +13145,52,7,1,0.0 +13145,72,34.8,40,0.0 +13146,22,21,21,0.0 +13146,41,9.65,17,0.0 +13146,40,18.4,7,0.0 +13146,13,6,28,0.0 +13146,71,21.5,1,0.0 +13146,69,36,31,0.0 +13146,36,19,3,0.0 +13146,12,38,49,0.0 +13146,77,13,41,0.0 +13146,67,14,26,0.0 +13146,62,49.3,37,0.0 +13146,59,55,27,0.0 +13146,55,24,24,0.0 +13146,65,21.05,1,0.0 +13146,9,97,22,0.0 +13146,6,25,2,0.0 +13146,72,34.8,16,0.0 +13146,34,14,7,0.0 +13146,43,46,44,0.0 +13146,37,26,15,0.0 +13146,38,263.5,32,0.0 +13146,68,12.5,2,0.0 +13146,70,15,2,0.0 +13146,46,12,25,0.0 +13146,64,33.25,49,0.0 +13146,16,17.45,49,0.0 +13146,11,21,45,0.0 +13146,47,9.5,17,0.0 +13146,51,53,33,0.0 +13146,8,40,5,0.0 +13146,32,32,33,0.0 +13146,29,123.79,48,0.0 +13146,39,18,1,0.0 +13146,7,30,2,0.0 +13146,27,43.9,42,0.0 +13146,2,19,6,0.0 +13146,48,12.75,49,0.0 +13146,52,7,8,0.0 +13146,61,28.5,35,0.0 +13146,20,81,24,0.0 +13146,66,17,5,0.0 +13146,3,10,21,0.0 +13146,26,31.23,49,0.0 +13146,49,20,34,0.0 +13146,63,43.9,5,0.0 +13146,53,32.8,10,0.0 +13146,28,45.6,40,0.0 +13146,54,7.45,34,0.0 +13146,19,9.2,34,0.0 +13146,17,39,4,0.0 +13146,5,21.35,27,0.0 +13146,76,18,2,0.0 +13146,57,19.5,9,0.0 +13146,42,14,48,0.0 +13146,33,2.5,8,0.0 +13146,35,18,32,0.0 +13146,14,23.25,39,0.0 +13146,58,13.25,18,0.0 +13146,50,16.25,4,0.0 +13146,30,25.89,7,0.0 +13146,75,7.75,20,0.0 +13146,60,34,15,0.0 +13146,44,19.45,35,0.0 +13146,4,22,36,0.0 +13146,10,31,17,0.0 +13146,45,9.5,29,0.0 +13146,56,38,15,0.0 +13146,24,4.5,48,0.0 +13146,15,15.5,44,0.0 +13146,31,12.5,27,0.0 +13146,18,62.5,38,0.0 +13146,23,9,47,0.0 +13146,73,15,46,0.0 +13146,21,10,23,0.0 +13146,1,18,6,0.0 +13146,74,10,14,0.0 +13146,25,14,45,0.0 +13147,19,9.2,21,0.0 +13147,27,43.9,12,0.0 +13147,42,14,43,0.0 +13147,75,7.75,50,0.0 +13147,3,10,50,0.0 +13147,69,36,1,0.0 +13147,57,19.5,48,0.0 +13147,64,33.25,25,0.0 +13147,61,28.5,30,0.0 +13147,73,15,34,0.0 +13147,39,18,40,0.0 +13147,5,21.35,6,0.0 +13147,51,53,15,0.0 +13147,38,263.5,48,0.0 +13147,32,32,23,0.0 +13147,63,43.9,1,0.0 +13147,31,12.5,34,0.0 +13147,49,20,24,0.0 +13147,54,7.45,2,0.0 +13147,45,9.5,31,0.0 +13147,59,55,13,0.0 +13147,71,21.5,20,0.0 +13147,13,6,22,0.0 +13147,4,22,13,0.0 +13147,30,25.89,19,0.0 +13147,1,18,22,0.0 +13147,12,38,35,0.0 +13147,2,19,31,0.0 +13147,65,21.05,30,0.0 +13147,21,10,49,0.0 +13147,7,30,38,0.0 +13147,72,34.8,42,0.0 +13147,47,9.5,36,0.0 +13147,17,39,17,0.0 +13147,14,23.25,13,0.0 +13147,6,25,11,0.0 +13148,44,19.45,44,0.0 +13148,47,9.5,34,0.0 +13148,54,7.45,21,0.0 +13148,16,17.45,44,0.0 +13148,5,21.35,35,0.0 +13148,50,16.25,34,0.0 +13148,14,23.25,21,0.0 +13148,33,2.5,40,0.0 +13148,61,28.5,14,0.0 +13148,39,18,6,0.0 +13148,11,21,48,0.0 +13148,1,18,36,0.0 +13148,67,14,28,0.0 +13148,35,18,46,0.0 +13148,59,55,20,0.0 +13148,42,14,47,0.0 +13148,46,12,22,0.0 +13148,53,32.8,27,0.0 +13148,3,10,25,0.0 +13148,71,21.5,29,0.0 +13148,73,15,12,0.0 +13148,48,12.75,46,0.0 +13148,70,15,6,0.0 +13148,2,19,50,0.0 +13148,31,12.5,1,0.0 +13148,52,7,21,0.0 +13149,32,32,41,0.0 +13149,37,26,5,0.0 +13149,6,25,47,0.0 +13149,2,19,34,0.0 +13149,48,12.75,49,0.0 +13149,56,38,44,0.0 +13149,5,21.35,10,0.0 +13149,3,10,42,0.0 +13149,26,31.23,44,0.0 +13149,76,18,4,0.0 +13149,61,28.5,39,0.0 +13149,46,12,15,0.0 +13149,25,14,5,0.0 +13149,16,17.45,18,0.0 +13149,29,123.79,24,0.0 +13150,7,30,1,0.0 +13150,62,49.3,47,0.0 +13150,1,18,40,0.0 +13150,2,19,10,0.0 +13150,33,2.5,28,0.0 +13150,45,9.5,2,0.0 +13150,60,34,49,0.0 +13150,5,21.35,21,0.0 +13150,30,25.89,41,0.0 +13150,38,263.5,42,0.0 +13150,46,12,44,0.0 +13150,14,23.25,23,0.0 +13150,3,10,23,0.0 +13150,15,15.5,25,0.0 +13150,47,9.5,32,0.0 +13150,34,14,39,0.0 +13150,52,7,46,0.0 +13150,24,4.5,21,0.0 +13150,16,17.45,23,0.0 +13150,48,12.75,44,0.0 +13150,76,18,36,0.0 +13150,67,14,45,0.0 +13150,8,40,49,0.0 +13150,4,22,2,0.0 +13150,21,10,11,0.0 +13150,66,17,40,0.0 +13150,70,15,31,0.0 +13150,51,53,44,0.0 +13150,36,19,24,0.0 +13150,72,34.8,28,0.0 +13150,65,21.05,14,0.0 +13150,19,9.2,37,0.0 +13150,18,62.5,47,0.0 +13150,42,14,13,0.0 +13150,77,13,47,0.0 +13150,58,13.25,22,0.0 +13150,54,7.45,11,0.0 +13150,61,28.5,26,0.0 +13150,69,36,21,0.0 +13150,50,16.25,45,0.0 +13150,71,21.5,40,0.0 +13150,35,18,27,0.0 +13150,59,55,11,0.0 +13150,29,123.79,2,0.0 +13150,25,14,39,0.0 +13150,9,97,8,0.0 +13150,17,39,49,0.0 +13150,26,31.23,31,0.0 +13150,6,25,28,0.0 +13150,10,31,23,0.0 +13150,27,43.9,18,0.0 +13150,56,38,10,0.0 +13150,63,43.9,28,0.0 +13150,55,24,19,0.0 +13150,49,20,28,0.0 +13150,40,18.4,5,0.0 +13150,73,15,21,0.0 +13150,64,33.25,13,0.0 +13151,71,21.5,3,0.0 +13151,74,10,28,0.0 +13151,30,25.89,43,0.0 +13151,67,14,7,0.0 +13151,43,46,48,0.0 +13151,62,49.3,47,0.0 +13151,73,15,12,0.0 +13151,31,12.5,33,0.0 +13151,17,39,43,0.0 +13151,39,18,22,0.0 +13151,70,15,41,0.0 +13151,51,53,39,0.0 +13151,16,17.45,21,0.0 +13151,36,19,40,0.0 +13151,5,21.35,17,0.0 +13151,14,23.25,1,0.0 +13151,45,9.5,13,0.0 +13151,35,18,7,0.0 +13151,52,7,50,0.0 +13151,54,7.45,22,0.0 +13151,48,12.75,48,0.0 +13151,24,4.5,34,0.0 +13151,33,2.5,3,0.0 +13151,37,26,16,0.0 +13151,4,22,5,0.0 +13151,56,38,50,0.0 +13151,65,21.05,34,0.0 +13151,13,6,35,0.0 +13151,77,13,48,0.0 +13151,26,31.23,14,0.0 +13151,44,19.45,24,0.0 +13151,29,123.79,27,0.0 +13151,22,21,9,0.0 +13151,42,14,19,0.0 +13151,1,18,40,0.0 +13151,75,7.75,38,0.0 +13151,21,10,32,0.0 +13151,32,32,6,0.0 +13151,49,20,43,0.0 +13151,28,45.6,48,0.0 +13151,53,32.8,21,0.0 +13151,20,81,14,0.0 +13151,61,28.5,2,0.0 +13151,69,36,23,0.0 +13151,3,10,3,0.0 +13151,40,18.4,15,0.0 +13151,58,13.25,13,0.0 +13151,2,19,34,0.0 +13151,15,15.5,39,0.0 +13151,64,33.25,20,0.0 +13151,50,16.25,3,0.0 +13151,41,9.65,19,0.0 +13151,19,9.2,49,0.0 +13151,6,25,3,0.0 +13151,66,17,11,0.0 +13151,11,21,41,0.0 +13151,46,12,47,0.0 +13151,8,40,5,0.0 +13151,68,12.5,12,0.0 +13151,9,97,39,0.0 +13151,12,38,17,0.0 +13151,63,43.9,27,0.0 +13151,72,34.8,1,0.0 +13151,34,14,26,0.0 +13151,57,19.5,40,0.0 +13151,47,9.5,5,0.0 +13151,76,18,8,0.0 +13151,55,24,6,0.0 +13151,27,43.9,19,0.0 +13151,23,9,2,0.0 +13151,10,31,16,0.0 +13151,25,14,47,0.0 +13151,7,30,28,0.0 +13151,60,34,41,0.0 +13152,17,39,45,0.0 +13152,63,43.9,28,0.0 +13152,65,21.05,6,0.0 +13152,47,9.5,45,0.0 +13152,57,19.5,12,0.0 +13152,24,4.5,50,0.0 +13152,77,13,34,0.0 +13152,58,13.25,43,0.0 +13152,66,17,47,0.0 +13152,19,9.2,29,0.0 +13152,20,81,33,0.0 +13152,56,38,40,0.0 +13152,22,21,47,0.0 +13152,76,18,3,0.0 +13152,69,36,35,0.0 +13153,2,19,33,0.0 +13153,32,32,8,0.0 +13153,62,49.3,14,0.0 +13153,48,12.75,24,0.0 +13153,65,21.05,33,0.0 +13153,57,19.5,22,0.0 +13153,36,19,44,0.0 +13153,1,18,17,0.0 +13153,72,34.8,1,0.0 +13153,33,2.5,8,0.0 +13153,61,28.5,37,0.0 +13153,45,9.5,46,0.0 +13153,23,9,19,0.0 +13153,66,17,32,0.0 +13153,26,31.23,33,0.0 +13153,37,26,29,0.0 +13154,3,10,45,0.0 +13154,11,21,25,0.0 +13154,4,22,17,0.0 +13154,32,32,22,0.0 +13154,9,97,43,0.0 +13154,18,62.5,38,0.0 +13154,72,34.8,21,0.0 +13154,75,7.75,34,0.0 +13154,12,38,36,0.0 +13154,65,21.05,24,0.0 +13154,27,43.9,47,0.0 +13154,50,16.25,16,0.0 +13154,67,14,28,0.0 +13154,43,46,27,0.0 +13154,73,15,39,0.0 +13154,30,25.89,5,0.0 +13154,7,30,23,0.0 +13154,35,18,19,0.0 +13154,57,19.5,10,0.0 +13154,52,7,38,0.0 +13154,8,40,11,0.0 +13154,46,12,19,0.0 +13154,53,32.8,19,0.0 +13154,19,9.2,39,0.0 +13154,20,81,42,0.0 +13154,51,53,28,0.0 +13154,64,33.25,22,0.0 +13154,10,31,9,0.0 +13154,55,24,39,0.0 +13154,21,10,31,0.0 +13154,25,14,21,0.0 +13154,48,12.75,15,0.0 +13154,22,21,1,0.0 +13154,16,17.45,46,0.0 +13154,58,13.25,11,0.0 +13154,56,38,13,0.0 +13154,60,34,49,0.0 +13154,47,9.5,28,0.0 +13154,41,9.65,19,0.0 +13154,5,21.35,22,0.0 +13154,24,4.5,40,0.0 +13154,63,43.9,10,0.0 +13154,70,15,49,0.0 +13154,49,20,17,0.0 +13154,26,31.23,32,0.0 +13154,45,9.5,1,0.0 +13154,13,6,23,0.0 +13154,71,21.5,29,0.0 +13154,69,36,45,0.0 +13154,31,12.5,39,0.0 +13154,40,18.4,20,0.0 +13154,39,18,25,0.0 +13154,28,45.6,4,0.0 +13154,29,123.79,9,0.0 +13154,61,28.5,42,0.0 +13154,62,49.3,5,0.0 +13154,38,263.5,9,0.0 +13154,15,15.5,22,0.0 +13154,14,23.25,10,0.0 +13154,6,25,21,0.0 +13154,36,19,10,0.0 +13154,66,17,32,0.0 +13154,74,10,4,0.0 +13154,1,18,49,0.0 +13154,37,26,6,0.0 +13154,68,12.5,45,0.0 +13154,44,19.45,31,0.0 +13154,2,19,47,0.0 +13154,17,39,12,0.0 +13155,20,81,46,0.0 +13155,34,14,46,0.0 +13155,59,55,6,0.0 +13155,75,7.75,25,0.0 +13155,58,13.25,18,0.0 +13155,36,19,19,0.0 +13155,14,23.25,29,0.0 +13155,26,31.23,30,0.0 +13155,35,18,37,0.0 +13155,1,18,37,0.0 +13155,16,17.45,38,0.0 +13155,71,21.5,29,0.0 +13155,8,40,40,0.0 +13155,52,7,2,0.0 +13155,62,49.3,49,0.0 +13155,45,9.5,35,0.0 +13155,15,15.5,39,0.0 +13155,2,19,10,0.0 +13155,7,30,45,0.0 +13155,28,45.6,29,0.0 +13155,37,26,30,0.0 +13155,38,263.5,42,0.0 +13155,42,14,14,0.0 +13155,47,9.5,17,0.0 +13155,11,21,29,0.0 +13155,76,18,25,0.0 +13155,3,10,35,0.0 +13155,31,12.5,34,0.0 +13155,32,32,17,0.0 +13155,69,36,6,0.0 +13155,5,21.35,31,0.0 +13155,9,97,28,0.0 +13155,49,20,3,0.0 +13155,73,15,31,0.0 +13155,64,33.25,27,0.0 +13155,55,24,4,0.0 +13155,22,21,43,0.0 +13155,25,14,18,0.0 +13155,19,9.2,13,0.0 +13155,24,4.5,38,0.0 +13155,40,18.4,13,0.0 +13155,29,123.79,38,0.0 +13155,21,10,41,0.0 +13155,6,25,17,0.0 +13155,46,12,27,0.0 +13155,43,46,9,0.0 +13155,13,6,2,0.0 +13155,72,34.8,24,0.0 +13155,18,62.5,50,0.0 +13155,30,25.89,10,0.0 +13155,44,19.45,39,0.0 +13155,4,22,7,0.0 +13155,54,7.45,39,0.0 +13155,51,53,35,0.0 +13155,66,17,35,0.0 +13155,63,43.9,14,0.0 +13155,67,14,7,0.0 +13155,61,28.5,45,0.0 +13155,57,19.5,11,0.0 +13155,74,10,48,0.0 +13155,27,43.9,45,0.0 +13155,70,15,12,0.0 +13155,23,9,45,0.0 +13155,77,13,26,0.0 +13156,1,18,37,0.0 +13156,73,15,38,0.0 +13156,46,12,4,0.0 +13156,42,14,33,0.0 +13156,13,6,11,0.0 +13156,34,14,23,0.0 +13156,61,28.5,43,0.0 +13156,58,13.25,5,0.0 +13156,65,21.05,28,0.0 +13156,60,34,39,0.0 +13156,37,26,31,0.0 +13156,66,17,27,0.0 +13156,62,49.3,37,0.0 +13156,27,43.9,29,0.0 +13156,6,25,49,0.0 +13156,55,24,9,0.0 +13156,64,33.25,50,0.0 +13156,48,12.75,42,0.0 +13156,68,12.5,8,0.0 +13156,72,34.8,36,0.0 +13156,32,32,25,0.0 +13156,33,2.5,20,0.0 +13156,16,17.45,4,0.0 +13156,19,9.2,30,0.0 +13156,49,20,23,0.0 +13156,21,10,6,0.0 +13156,71,21.5,23,0.0 +13156,70,15,21,0.0 +13156,35,18,33,0.0 +13156,38,263.5,26,0.0 +13156,43,46,6,0.0 +13156,23,9,36,0.0 +13156,7,30,19,0.0 +13156,14,23.25,15,0.0 +13156,52,7,45,0.0 +13156,15,15.5,1,0.0 +13156,67,14,20,0.0 +13156,29,123.79,43,0.0 +13156,3,10,31,0.0 +13156,40,18.4,44,0.0 +13156,51,53,14,0.0 +13156,2,19,46,0.0 +13156,9,97,17,0.0 +13156,63,43.9,18,0.0 +13156,12,38,3,0.0 +13156,30,25.89,38,0.0 +13156,45,9.5,8,0.0 +13156,22,21,45,0.0 +13156,57,19.5,10,0.0 +13156,50,16.25,39,0.0 +13156,17,39,47,0.0 +13156,76,18,37,0.0 +13156,47,9.5,32,0.0 +13156,4,22,27,0.0 +13156,8,40,49,0.0 +13156,74,10,47,0.0 +13156,24,4.5,4,0.0 +13156,44,19.45,26,0.0 +13156,56,38,15,0.0 +13156,75,7.75,21,0.0 +13156,11,21,48,0.0 +13156,18,62.5,36,0.0 +13156,5,21.35,47,0.0 +13156,59,55,40,0.0 +13156,25,14,35,0.0 +13156,41,9.65,42,0.0 +13156,36,19,15,0.0 +13156,53,32.8,12,0.0 +13156,69,36,45,0.0 +13156,26,31.23,39,0.0 +13156,20,81,47,0.0 +13156,28,45.6,8,0.0 +13157,22,21,22,0.0 +13157,4,22,9,0.0 +13157,16,17.45,25,0.0 +13157,54,7.45,19,0.0 +13157,63,43.9,33,0.0 +13157,26,31.23,10,0.0 +13157,74,10,16,0.0 +13157,65,21.05,28,0.0 +13157,18,62.5,33,0.0 +13157,25,14,35,0.0 +13157,38,263.5,32,0.0 +13157,49,20,25,0.0 +13157,9,97,23,0.0 +13157,11,21,3,0.0 +13157,59,55,21,0.0 +13157,56,38,31,0.0 +13157,14,23.25,4,0.0 +13157,34,14,22,0.0 +13157,62,49.3,26,0.0 +13158,74,10,44,0.0 +13158,50,16.25,31,0.0 +13158,16,17.45,11,0.0 +13158,42,14,43,0.0 +13158,1,18,7,0.0 +13158,5,21.35,3,0.0 +13158,47,9.5,32,0.0 +13158,30,25.89,26,0.0 +13158,13,6,1,0.0 +13158,48,12.75,13,0.0 +13158,21,10,20,0.0 +13158,6,25,44,0.0 +13158,10,31,17,0.0 +13158,12,38,38,0.0 +13158,19,9.2,21,0.0 +13158,32,32,24,0.0 +13158,2,19,8,0.0 +13158,73,15,2,0.0 +13158,20,81,11,0.0 +13158,68,12.5,14,0.0 +13158,17,39,43,0.0 +13158,41,9.65,12,0.0 +13158,57,19.5,5,0.0 +13158,54,7.45,9,0.0 +13158,72,34.8,34,0.0 +13158,66,17,42,0.0 +13158,22,21,28,0.0 +13158,11,21,18,0.0 +13158,75,7.75,19,0.0 +13158,38,263.5,49,0.0 +13158,23,9,47,0.0 +13158,76,18,5,0.0 +13158,39,18,25,0.0 +13158,34,14,37,0.0 +13158,51,53,6,0.0 +13158,29,123.79,26,0.0 +13158,28,45.6,32,0.0 +13158,71,21.5,48,0.0 +13158,60,34,23,0.0 +13158,69,36,7,0.0 +13158,67,14,28,0.0 +13158,59,55,1,0.0 +13158,45,9.5,21,0.0 +13158,26,31.23,17,0.0 +13158,37,26,12,0.0 +13158,64,33.25,35,0.0 +13159,14,23.25,38,0.0 +13159,54,7.45,25,0.0 +13159,72,34.8,46,0.0 +13159,16,17.45,15,0.0 +13159,32,32,47,0.0 +13159,61,28.5,17,0.0 +13159,62,49.3,13,0.0 +13159,17,39,36,0.0 +13159,49,20,15,0.0 +13159,46,12,21,0.0 +13159,5,21.35,11,0.0 +13159,1,18,10,0.0 +13159,41,9.65,3,0.0 +13159,15,15.5,19,0.0 +13159,25,14,20,0.0 +13159,70,15,33,0.0 +13159,27,43.9,23,0.0 +13159,75,7.75,2,0.0 +13159,7,30,15,0.0 +13159,74,10,18,0.0 +13159,71,21.5,5,0.0 +13159,77,13,18,0.0 +13159,69,36,2,0.0 +13159,68,12.5,47,0.0 +13159,12,38,27,0.0 +13159,44,19.45,7,0.0 +13159,65,21.05,30,0.0 +13159,22,21,26,0.0 +13159,55,24,32,0.0 +13159,60,34,21,0.0 +13159,24,4.5,7,0.0 +13159,13,6,10,0.0 +13160,6,25,48,0.0 +13160,55,24,32,0.0 +13160,13,6,10,0.0 +13160,53,32.8,3,0.0 +13160,46,12,37,0.0 +13160,34,14,8,0.0 +13160,45,9.5,48,0.0 +13160,16,17.45,34,0.0 +13160,76,18,26,0.0 +13160,7,30,26,0.0 +13160,39,18,5,0.0 +13160,37,26,32,0.0 +13160,74,10,7,0.0 +13160,60,34,39,0.0 +13160,3,10,34,0.0 +13160,65,21.05,23,0.0 +13160,2,19,12,0.0 +13160,44,19.45,45,0.0 +13160,63,43.9,20,0.0 +13160,69,36,6,0.0 +13160,1,18,31,0.0 +13160,50,16.25,10,0.0 +13160,64,33.25,38,0.0 +13160,5,21.35,30,0.0 +13160,42,14,46,0.0 +13160,70,15,21,0.0 +13160,32,32,46,0.0 +13160,56,38,33,0.0 +13160,14,23.25,13,0.0 +13160,47,9.5,50,0.0 +13160,62,49.3,6,0.0 +13160,57,19.5,34,0.0 +13160,77,13,16,0.0 +13160,61,28.5,11,0.0 +13160,52,7,44,0.0 +13160,20,81,13,0.0 +13160,29,123.79,1,0.0 +13160,4,22,45,0.0 +13160,58,13.25,5,0.0 +13160,54,7.45,12,0.0 +13160,49,20,45,0.0 +13160,23,9,28,0.0 +13160,10,31,27,0.0 +13160,18,62.5,27,0.0 +13160,30,25.89,26,0.0 +13160,19,9.2,13,0.0 +13160,38,263.5,14,0.0 +13161,46,12,19,0.0 +13161,45,9.5,20,0.0 +13161,56,38,6,0.0 +13161,6,25,3,0.0 +13161,76,18,40,0.0 +13161,33,2.5,11,0.0 +13161,9,97,44,0.0 +13161,4,22,19,0.0 +13161,37,26,46,0.0 +13161,49,20,21,0.0 +13161,34,14,40,0.0 +13161,16,17.45,43,0.0 +13161,57,19.5,39,0.0 +13161,22,21,8,0.0 +13161,71,21.5,18,0.0 +13162,38,263.5,43,0.0 +13162,19,9.2,1,0.0 +13162,46,12,3,0.0 +13162,73,15,32,0.0 +13162,1,18,18,0.0 +13162,63,43.9,40,0.0 +13162,60,34,2,0.0 +13162,61,28.5,8,0.0 +13162,23,9,18,0.0 +13162,21,10,35,0.0 +13162,29,123.79,20,0.0 +13162,74,10,34,0.0 +13162,11,21,11,0.0 +13162,12,38,36,0.0 +13162,28,45.6,29,0.0 +13162,33,2.5,17,0.0 +13162,7,30,32,0.0 +13162,36,19,31,0.0 +13162,76,18,33,0.0 +13162,52,7,44,0.0 +13162,25,14,19,0.0 +13162,40,18.4,35,0.0 +13162,15,15.5,12,0.0 +13162,37,26,41,0.0 +13162,58,13.25,25,0.0 +13162,16,17.45,48,0.0 +13162,2,19,41,0.0 +13162,71,21.5,41,0.0 +13162,49,20,19,0.0 +13162,39,18,47,0.0 +13162,14,23.25,10,0.0 +13162,51,53,42,0.0 +13162,48,12.75,50,0.0 +13162,43,46,43,0.0 +13162,13,6,48,0.0 +13162,24,4.5,14,0.0 +13162,22,21,40,0.0 +13162,54,7.45,38,0.0 +13162,75,7.75,49,0.0 +13162,9,97,14,0.0 +13163,18,62.5,19,0.0 +13163,19,9.2,6,0.0 +13163,71,21.5,16,0.0 +13163,57,19.5,22,0.0 +13163,48,12.75,1,0.0 +13163,60,34,14,0.0 +13163,58,13.25,2,0.0 +13163,54,7.45,26,0.0 +13163,9,97,16,0.0 +13163,13,6,13,0.0 +13163,59,55,27,0.0 +13163,2,19,27,0.0 +13163,30,25.89,36,0.0 +13163,32,32,47,0.0 +13163,34,14,3,0.0 +13163,8,40,20,0.0 +13163,41,9.65,27,0.0 +13163,53,32.8,7,0.0 +13163,15,15.5,38,0.0 +13163,39,18,40,0.0 +13163,38,263.5,31,0.0 +13163,12,38,24,0.0 +13163,75,7.75,45,0.0 +13163,63,43.9,2,0.0 +13163,77,13,10,0.0 +13163,43,46,28,0.0 +13164,75,7.75,41,0.0 +13164,28,45.6,42,0.0 +13164,48,12.75,20,0.0 +13164,15,15.5,16,0.0 +13164,5,21.35,26,0.0 +13164,49,20,44,0.0 +13164,18,62.5,30,0.0 +13164,74,10,44,0.0 +13164,52,7,42,0.0 +13164,23,9,38,0.0 +13164,25,14,45,0.0 +13164,7,30,6,0.0 +13164,61,28.5,10,0.0 +13164,42,14,24,0.0 +13164,20,81,13,0.0 +13164,27,43.9,46,0.0 +13164,19,9.2,49,0.0 +13164,11,21,50,0.0 +13164,12,38,50,0.0 +13164,73,15,6,0.0 +13164,57,19.5,25,0.0 +13164,37,26,23,0.0 +13164,67,14,9,0.0 +13164,33,2.5,44,0.0 +13164,17,39,20,0.0 +13164,59,55,46,0.0 +13164,65,21.05,20,0.0 +13164,1,18,26,0.0 +13165,8,40,6,0.0 +13165,33,2.5,47,0.0 +13165,19,9.2,34,0.0 +13165,59,55,10,0.0 +13165,13,6,5,0.0 +13165,53,32.8,24,0.0 +13165,70,15,41,0.0 +13165,37,26,39,0.0 +13165,3,10,38,0.0 +13165,58,13.25,4,0.0 +13165,64,33.25,30,0.0 +13165,7,30,27,0.0 +13165,6,25,26,0.0 +13165,12,38,9,0.0 +13165,44,19.45,10,0.0 +13165,18,62.5,49,0.0 +13165,17,39,27,0.0 +13165,31,12.5,20,0.0 +13165,9,97,45,0.0 +13165,41,9.65,45,0.0 +13165,47,9.5,11,0.0 +13165,26,31.23,26,0.0 +13165,60,34,49,0.0 +13166,63,43.9,3,0.0 +13166,37,26,50,0.0 +13166,13,6,18,0.0 +13166,73,15,47,0.0 +13166,17,39,47,0.0 +13166,32,32,44,0.0 +13166,72,34.8,21,0.0 +13166,45,9.5,50,0.0 +13166,36,19,19,0.0 +13166,19,9.2,30,0.0 +13166,58,13.25,24,0.0 +13166,14,23.25,46,0.0 +13166,27,43.9,34,0.0 +13166,23,9,37,0.0 +13166,24,4.5,18,0.0 +13166,40,18.4,19,0.0 +13166,77,13,3,0.0 +13166,12,38,32,0.0 +13166,25,14,2,0.0 +13166,74,10,2,0.0 +13166,62,49.3,26,0.0 +13166,59,55,36,0.0 +13166,67,14,39,0.0 +13166,26,31.23,1,0.0 +13166,50,16.25,8,0.0 +13166,51,53,33,0.0 +13166,3,10,33,0.0 +13166,4,22,8,0.0 +13167,7,30,40,0.0 +13167,3,10,10,0.0 +13167,19,9.2,8,0.0 +13167,33,2.5,40,0.0 +13167,5,21.35,49,0.0 +13167,32,32,37,0.0 +13167,35,18,17,0.0 +13167,46,12,24,0.0 +13167,41,9.65,43,0.0 +13167,51,53,24,0.0 +13167,9,97,23,0.0 +13167,1,18,18,0.0 +13167,42,14,1,0.0 +13167,20,81,42,0.0 +13167,26,31.23,23,0.0 +13167,66,17,32,0.0 +13167,70,15,46,0.0 +13167,6,25,24,0.0 +13167,62,49.3,20,0.0 +13167,65,21.05,16,0.0 +13167,57,19.5,5,0.0 +13167,39,18,46,0.0 +13167,60,34,45,0.0 +13167,16,17.45,35,0.0 +13167,71,21.5,33,0.0 +13167,52,7,28,0.0 +13167,69,36,30,0.0 +13167,24,4.5,17,0.0 +13167,28,45.6,25,0.0 +13167,76,18,15,0.0 +13167,22,21,4,0.0 +13167,56,38,7,0.0 +13167,43,46,30,0.0 +13167,17,39,47,0.0 +13167,21,10,41,0.0 +13167,63,43.9,28,0.0 +13167,27,43.9,19,0.0 +13167,73,15,13,0.0 +13167,45,9.5,24,0.0 +13167,38,263.5,39,0.0 +13167,54,7.45,17,0.0 +13167,12,38,15,0.0 +13167,8,40,46,0.0 +13167,25,14,5,0.0 +13167,30,25.89,10,0.0 +13167,44,19.45,31,0.0 +13167,49,20,47,0.0 +13167,47,9.5,28,0.0 +13167,77,13,2,0.0 +13167,72,34.8,37,0.0 +13167,31,12.5,27,0.0 +13167,10,31,11,0.0 +13167,29,123.79,4,0.0 +13167,23,9,50,0.0 +13167,4,22,27,0.0 +13167,50,16.25,24,0.0 +13167,15,15.5,38,0.0 +13167,55,24,21,0.0 +13167,2,19,24,0.0 +13167,14,23.25,4,0.0 +13167,53,32.8,6,0.0 +13167,59,55,31,0.0 +13168,54,7.45,39,0.0 +13168,7,30,36,0.0 +13168,47,9.5,6,0.0 +13168,38,263.5,12,0.0 +13168,59,55,4,0.0 +13168,8,40,14,0.0 +13168,26,31.23,19,0.0 +13168,32,32,23,0.0 +13168,1,18,39,0.0 +13168,18,62.5,32,0.0 +13168,56,38,9,0.0 +13168,34,14,19,0.0 +13168,46,12,25,0.0 +13168,74,10,45,0.0 +13168,51,53,37,0.0 +13168,71,21.5,5,0.0 +13168,9,97,29,0.0 +13168,35,18,19,0.0 +13168,14,23.25,30,0.0 +13168,4,22,31,0.0 +13168,20,81,22,0.0 +13168,55,24,18,0.0 +13168,70,15,40,0.0 +13168,72,34.8,36,0.0 +13168,77,13,22,0.0 +13168,19,9.2,48,0.0 +13168,73,15,47,0.0 +13168,50,16.25,3,0.0 +13168,30,25.89,2,0.0 +13168,16,17.45,2,0.0 +13168,76,18,1,0.0 +13168,28,45.6,27,0.0 +13168,75,7.75,29,0.0 +13168,44,19.45,2,0.0 +13168,21,10,47,0.0 +13168,68,12.5,2,0.0 +13168,33,2.5,11,0.0 +13168,61,28.5,47,0.0 +13168,52,7,14,0.0 +13168,39,18,10,0.0 +13168,63,43.9,10,0.0 +13168,58,13.25,13,0.0 +13168,40,18.4,46,0.0 +13168,10,31,9,0.0 +13168,12,38,13,0.0 +13168,67,14,9,0.0 +13168,57,19.5,36,0.0 +13168,53,32.8,6,0.0 +13168,17,39,31,0.0 +13168,41,9.65,13,0.0 +13168,69,36,9,0.0 +13168,23,9,5,0.0 +13169,46,12,47,0.0 +13169,12,38,46,0.0 +13169,69,36,36,0.0 +13169,75,7.75,32,0.0 +13169,54,7.45,29,0.0 +13169,57,19.5,41,0.0 +13169,39,18,1,0.0 +13169,10,31,21,0.0 +13169,21,10,3,0.0 +13169,29,123.79,34,0.0 +13169,7,30,13,0.0 +13169,48,12.75,10,0.0 +13170,31,12.5,24,0.0 +13170,7,30,34,0.0 +13170,53,32.8,17,0.0 +13170,28,45.6,17,0.0 +13170,2,19,34,0.0 +13170,30,25.89,50,0.0 +13170,15,15.5,7,0.0 +13170,40,18.4,31,0.0 +13170,49,20,46,0.0 +13170,42,14,14,0.0 +13170,50,16.25,16,0.0 +13170,8,40,32,0.0 +13170,55,24,4,0.0 +13170,19,9.2,23,0.0 +13170,3,10,28,0.0 +13170,22,21,9,0.0 +13170,67,14,44,0.0 +13170,16,17.45,16,0.0 +13170,76,18,16,0.0 +13170,71,21.5,31,0.0 +13170,14,23.25,20,0.0 +13170,26,31.23,28,0.0 +13170,46,12,4,0.0 +13170,4,22,17,0.0 +13170,17,39,26,0.0 +13170,24,4.5,10,0.0 +13170,10,31,30,0.0 +13170,39,18,25,0.0 +13170,33,2.5,7,0.0 +13170,23,9,28,0.0 +13170,41,9.65,45,0.0 +13170,56,38,30,0.0 +13170,43,46,1,0.0 +13170,32,32,7,0.0 +13170,9,97,40,0.0 +13170,11,21,9,0.0 +13170,27,43.9,46,0.0 +13170,59,55,11,0.0 +13170,69,36,16,0.0 +13170,36,19,43,0.0 +13170,35,18,36,0.0 +13170,37,26,35,0.0 +13170,52,7,20,0.0 +13170,51,53,6,0.0 +13170,60,34,23,0.0 +13170,20,81,1,0.0 +13170,75,7.75,40,0.0 +13170,18,62.5,1,0.0 +13170,70,15,12,0.0 +13170,5,21.35,45,0.0 +13170,45,9.5,42,0.0 +13170,44,19.45,6,0.0 +13170,58,13.25,17,0.0 +13170,65,21.05,28,0.0 +13170,73,15,42,0.0 +13170,66,17,30,0.0 +13170,63,43.9,29,0.0 +13170,34,14,27,0.0 +13170,77,13,39,0.0 +13170,62,49.3,11,0.0 +13170,61,28.5,30,0.0 +13170,29,123.79,7,0.0 +13170,1,18,22,0.0 +13170,74,10,38,0.0 +13170,64,33.25,12,0.0 +13170,12,38,46,0.0 +13170,54,7.45,24,0.0 +13170,6,25,46,0.0 +13170,72,34.8,7,0.0 +13170,68,12.5,33,0.0 +13170,47,9.5,38,0.0 +13170,48,12.75,26,0.0 +13170,25,14,23,0.0 +13170,57,19.5,34,0.0 +13170,13,6,30,0.0 +13170,21,10,28,0.0 +13171,44,19.45,25,0.0 +13171,59,55,6,0.0 +13171,7,30,12,0.0 +13171,9,97,47,0.0 +13171,28,45.6,4,0.0 +13171,63,43.9,5,0.0 +13171,42,14,35,0.0 +13171,41,9.65,36,0.0 +13171,20,81,40,0.0 +13171,46,12,33,0.0 +13171,57,19.5,11,0.0 +13171,52,7,13,0.0 +13171,43,46,43,0.0 +13171,22,21,30,0.0 +13171,72,34.8,29,0.0 +13171,35,18,19,0.0 +13172,66,17,38,0.0 +13172,42,14,39,0.0 +13172,17,39,2,0.0 +13172,15,15.5,43,0.0 +13172,45,9.5,41,0.0 +13172,76,18,20,0.0 +13172,62,49.3,38,0.0 +13172,27,43.9,50,0.0 +13172,60,34,5,0.0 +13172,40,18.4,25,0.0 +13172,73,15,13,0.0 +13172,72,34.8,34,0.0 +13172,75,7.75,45,0.0 +13172,22,21,12,0.0 +13172,35,18,7,0.0 +13172,21,10,10,0.0 +13173,67,14,23,0.0 +13173,24,4.5,40,0.0 +13173,23,9,50,0.0 +13173,47,9.5,40,0.0 +13173,69,36,7,0.0 +13173,50,16.25,39,0.0 +13173,48,12.75,13,0.0 +13173,3,10,33,0.0 +13173,76,18,2,0.0 +13173,54,7.45,4,0.0 +13173,74,10,13,0.0 +13173,70,15,8,0.0 +13173,29,123.79,45,0.0 +13173,45,9.5,39,0.0 +13173,17,39,32,0.0 +13173,46,12,45,0.0 +13173,61,28.5,25,0.0 +13173,53,32.8,11,0.0 +13173,7,30,13,0.0 +13173,28,45.6,33,0.0 +13173,6,25,45,0.0 +13173,37,26,47,0.0 +13173,26,31.23,29,0.0 +13173,33,2.5,3,0.0 +13173,5,21.35,11,0.0 +13173,14,23.25,25,0.0 +13173,51,53,36,0.0 +13173,68,12.5,34,0.0 +13173,9,97,12,0.0 +13173,15,15.5,38,0.0 +13173,38,263.5,46,0.0 +13173,27,43.9,37,0.0 +13173,55,24,28,0.0 +13173,32,32,32,0.0 +13173,8,40,9,0.0 +13173,71,21.5,20,0.0 +13173,34,14,1,0.0 +13173,31,12.5,28,0.0 +13173,10,31,32,0.0 +13173,41,9.65,1,0.0 +13173,63,43.9,12,0.0 +13173,49,20,32,0.0 +13173,62,49.3,40,0.0 +13173,65,21.05,38,0.0 +13173,52,7,44,0.0 +13173,21,10,5,0.0 +13173,73,15,48,0.0 +13173,20,81,12,0.0 +13173,13,6,16,0.0 +13173,40,18.4,34,0.0 +13173,75,7.75,39,0.0 +13173,16,17.45,2,0.0 +13173,18,62.5,25,0.0 +13173,44,19.45,31,0.0 +13173,19,9.2,5,0.0 +13173,11,21,11,0.0 +13173,39,18,1,0.0 +13173,43,46,3,0.0 +13173,1,18,23,0.0 +13173,4,22,17,0.0 +13173,22,21,34,0.0 +13173,25,14,4,0.0 +13173,30,25.89,8,0.0 +13173,12,38,22,0.0 +13173,77,13,36,0.0 +13173,66,17,10,0.0 +13173,60,34,47,0.0 +13173,35,18,37,0.0 +13174,55,24,16,0.0 +13174,19,9.2,44,0.0 +13174,57,19.5,10,0.0 +13174,52,7,47,0.0 +13174,12,38,2,0.0 +13174,74,10,47,0.0 +13174,33,2.5,39,0.0 +13174,65,21.05,4,0.0 +13174,18,62.5,26,0.0 +13174,6,25,31,0.0 +13174,28,45.6,35,0.0 +13174,77,13,13,0.0 +13174,20,81,11,0.0 +13174,34,14,30,0.0 +13174,63,43.9,14,0.0 +13174,60,34,34,0.0 +13174,71,21.5,13,0.0 +13174,53,32.8,43,0.0 +13174,36,19,22,0.0 +13174,45,9.5,22,0.0 +13174,72,34.8,7,0.0 +13174,32,32,18,0.0 +13174,67,14,16,0.0 +13174,42,14,27,0.0 +13174,11,21,9,0.0 +13174,23,9,19,0.0 +13174,30,25.89,46,0.0 +13174,24,4.5,40,0.0 +13174,59,55,44,0.0 +13174,47,9.5,43,0.0 +13174,14,23.25,35,0.0 +13174,44,19.45,4,0.0 +13174,49,20,1,0.0 +13174,41,9.65,11,0.0 +13174,51,53,9,0.0 +13174,69,36,45,0.0 +13174,56,38,49,0.0 +13174,1,18,38,0.0 +13174,10,31,18,0.0 +13174,58,13.25,28,0.0 +13174,8,40,34,0.0 +13174,26,31.23,50,0.0 +13174,64,33.25,50,0.0 +13174,75,7.75,3,0.0 +13174,22,21,13,0.0 +13174,68,12.5,14,0.0 +13174,73,15,30,0.0 +13174,70,15,7,0.0 +13174,62,49.3,46,0.0 +13174,43,46,14,0.0 +13174,37,26,11,0.0 +13174,35,18,12,0.0 +13174,3,10,50,0.0 +13174,66,17,14,0.0 +13174,31,12.5,3,0.0 +13174,76,18,17,0.0 +13174,40,18.4,12,0.0 +13174,27,43.9,46,0.0 +13174,61,28.5,7,0.0 +13174,4,22,25,0.0 +13174,9,97,17,0.0 +13174,16,17.45,12,0.0 +13174,13,6,48,0.0 +13174,5,21.35,46,0.0 +13174,48,12.75,13,0.0 +13174,38,263.5,3,0.0 +13174,25,14,23,0.0 +13174,50,16.25,45,0.0 +13174,17,39,47,0.0 +13174,39,18,27,0.0 +13174,21,10,5,0.0 +13174,46,12,32,0.0 +13175,57,19.5,26,0.0 +13175,49,20,37,0.0 +13175,67,14,29,0.0 +13175,36,19,7,0.0 +13175,6,25,12,0.0 +13175,63,43.9,6,0.0 +13175,54,7.45,2,0.0 +13175,3,10,1,0.0 +13175,42,14,12,0.0 +13175,69,36,27,0.0 +13175,72,34.8,29,0.0 +13175,76,18,49,0.0 +13175,21,10,35,0.0 +13175,66,17,44,0.0 +13175,11,21,8,0.0 +13175,37,26,48,0.0 +13175,8,40,48,0.0 +13175,62,49.3,39,0.0 +13175,31,12.5,10,0.0 +13175,68,12.5,15,0.0 +13175,48,12.75,50,0.0 +13175,30,25.89,29,0.0 +13175,47,9.5,46,0.0 +13175,2,19,18,0.0 +13175,45,9.5,37,0.0 +13175,27,43.9,27,0.0 +13175,16,17.45,7,0.0 +13175,58,13.25,11,0.0 +13175,4,22,11,0.0 +13175,74,10,30,0.0 +13175,15,15.5,40,0.0 +13175,9,97,23,0.0 +13175,24,4.5,17,0.0 +13175,52,7,22,0.0 +13175,35,18,24,0.0 +13175,61,28.5,47,0.0 +13175,71,21.5,28,0.0 +13175,20,81,26,0.0 +13175,12,38,11,0.0 +13175,19,9.2,27,0.0 +13175,64,33.25,39,0.0 +13175,32,32,41,0.0 +13175,59,55,17,0.0 +13175,51,53,41,0.0 +13175,55,24,17,0.0 +13175,25,14,11,0.0 +13175,22,21,3,0.0 +13175,43,46,24,0.0 +13175,53,32.8,37,0.0 +13175,50,16.25,16,0.0 +13175,1,18,39,0.0 +13175,46,12,50,0.0 +13175,28,45.6,24,0.0 +13175,38,263.5,11,0.0 +13175,7,30,46,0.0 +13175,14,23.25,29,0.0 +13175,23,9,49,0.0 +13175,56,38,37,0.0 +13175,39,18,38,0.0 +13175,33,2.5,4,0.0 +13175,75,7.75,12,0.0 +13175,5,21.35,13,0.0 +13175,18,62.5,21,0.0 +13175,13,6,38,0.0 +13175,40,18.4,6,0.0 +13175,65,21.05,21,0.0 +13175,29,123.79,40,0.0 +13175,17,39,32,0.0 +13175,60,34,35,0.0 +13175,44,19.45,1,0.0 +13175,77,13,4,0.0 +13175,34,14,19,0.0 +13175,26,31.23,23,0.0 +13176,50,16.25,22,0.0 +13176,16,17.45,32,0.0 +13176,65,21.05,10,0.0 +13176,19,9.2,23,0.0 +13176,73,15,49,0.0 +13176,2,19,46,0.0 +13176,37,26,36,0.0 +13176,57,19.5,6,0.0 +13176,23,9,18,0.0 +13176,3,10,1,0.0 +13176,26,31.23,10,0.0 +13176,32,32,9,0.0 +13176,40,18.4,32,0.0 +13176,47,9.5,33,0.0 +13176,71,21.5,47,0.0 +13176,76,18,12,0.0 +13176,10,31,16,0.0 +13176,34,14,28,0.0 +13176,43,46,11,0.0 +13176,29,123.79,17,0.0 +13176,4,22,30,0.0 +13176,6,25,49,0.0 +13176,59,55,17,0.0 +13176,28,45.6,42,0.0 +13176,64,33.25,48,0.0 +13176,63,43.9,44,0.0 +13176,27,43.9,10,0.0 +13176,46,12,26,0.0 +13176,39,18,23,0.0 +13176,62,49.3,41,0.0 +13176,35,18,13,0.0 +13176,70,15,48,0.0 +13176,58,13.25,41,0.0 +13176,12,38,9,0.0 +13176,36,19,16,0.0 +13176,52,7,32,0.0 +13176,49,20,8,0.0 +13176,41,9.65,28,0.0 +13176,21,10,32,0.0 +13176,31,12.5,20,0.0 +13176,20,81,27,0.0 +13176,45,9.5,1,0.0 +13176,53,32.8,12,0.0 +13176,30,25.89,18,0.0 +13176,72,34.8,4,0.0 +13176,15,15.5,40,0.0 +13176,61,28.5,16,0.0 +13176,1,18,41,0.0 +13176,69,36,19,0.0 +13176,56,38,41,0.0 +13176,42,14,50,0.0 +13176,17,39,3,0.0 +13176,24,4.5,10,0.0 +13176,7,30,40,0.0 +13176,9,97,17,0.0 +13176,54,7.45,33,0.0 +13176,75,7.75,23,0.0 +13176,14,23.25,25,0.0 +13177,3,10,46,0.0 +13177,63,43.9,40,0.0 +13177,40,18.4,13,0.0 +13177,28,45.6,30,0.0 +13178,18,62.5,38,0.0 +13178,49,20,17,0.0 +13178,71,21.5,31,0.0 +13178,20,81,32,0.0 +13178,38,263.5,31,0.0 +13178,51,53,5,0.0 +13178,70,15,33,0.0 +13178,45,9.5,48,0.0 +13178,58,13.25,48,0.0 +13178,27,43.9,37,0.0 +13178,5,21.35,24,0.0 +13178,6,25,32,0.0 +13178,62,49.3,29,0.0 +13178,2,19,10,0.0 +13178,36,19,7,0.0 +13178,9,97,32,0.0 +13178,57,19.5,33,0.0 +13178,40,18.4,7,0.0 +13178,31,12.5,50,0.0 +13178,74,10,38,0.0 +13178,56,38,18,0.0 +13178,66,17,11,0.0 +13178,28,45.6,10,0.0 +13178,33,2.5,47,0.0 +13178,8,40,38,0.0 +13178,22,21,42,0.0 +13178,4,22,27,0.0 +13178,17,39,29,0.0 +13178,77,13,25,0.0 +13178,25,14,16,0.0 +13178,35,18,18,0.0 +13178,14,23.25,37,0.0 +13178,29,123.79,5,0.0 +13178,55,24,2,0.0 +13178,42,14,39,0.0 +13178,44,19.45,30,0.0 +13178,21,10,4,0.0 +13178,54,7.45,22,0.0 +13178,61,28.5,5,0.0 +13178,3,10,30,0.0 +13178,41,9.65,34,0.0 +13178,64,33.25,14,0.0 +13178,53,32.8,35,0.0 +13178,34,14,41,0.0 +13178,76,18,38,0.0 +13178,60,34,13,0.0 +13178,46,12,50,0.0 +13178,12,38,27,0.0 +13178,15,15.5,15,0.0 +13178,24,4.5,1,0.0 +13178,63,43.9,26,0.0 +13178,32,32,18,0.0 +13178,69,36,3,0.0 +13178,73,15,43,0.0 +13178,23,9,47,0.0 +13178,65,21.05,37,0.0 +13178,72,34.8,1,0.0 +13178,26,31.23,14,0.0 +13178,16,17.45,5,0.0 +13178,48,12.75,46,0.0 +13178,13,6,37,0.0 +13178,75,7.75,30,0.0 +13178,67,14,21,0.0 +13178,11,21,9,0.0 +13178,39,18,5,0.0 +13178,43,46,1,0.0 +13178,50,16.25,4,0.0 +13178,59,55,43,0.0 +13179,76,18,37,0.0 +13179,3,10,13,0.0 +13179,2,19,47,0.0 +13179,39,18,41,0.0 +13179,64,33.25,26,0.0 +13179,20,81,22,0.0 +13179,58,13.25,43,0.0 +13179,24,4.5,24,0.0 +13179,10,31,20,0.0 +13179,36,19,50,0.0 +13179,53,32.8,46,0.0 +13179,23,9,37,0.0 +13179,45,9.5,48,0.0 +13179,70,15,25,0.0 +13179,47,9.5,42,0.0 +13179,42,14,40,0.0 +13179,8,40,48,0.0 +13179,7,30,27,0.0 +13179,31,12.5,36,0.0 +13179,48,12.75,21,0.0 +13179,17,39,19,0.0 +13179,52,7,17,0.0 +13179,13,6,9,0.0 +13179,25,14,23,0.0 +13180,1,18,5,0.0 +13180,49,20,31,0.0 +13180,10,31,11,0.0 +13180,2,19,6,0.0 +13180,51,53,39,0.0 +13180,72,34.8,27,0.0 +13180,69,36,23,0.0 +13180,77,13,45,0.0 +13180,61,28.5,18,0.0 +13180,6,25,13,0.0 +13180,14,23.25,3,0.0 +13180,39,18,19,0.0 +13180,32,32,39,0.0 +13180,9,97,31,0.0 +13180,74,10,4,0.0 +13180,21,10,47,0.0 +13180,28,45.6,7,0.0 +13180,25,14,41,0.0 +13180,55,24,40,0.0 +13180,52,7,20,0.0 +13180,5,21.35,32,0.0 +13180,15,15.5,10,0.0 +13180,75,7.75,10,0.0 +13180,16,17.45,27,0.0 +13180,62,49.3,34,0.0 +13180,13,6,27,0.0 +13180,43,46,40,0.0 +13180,35,18,29,0.0 +13180,57,19.5,27,0.0 +13180,48,12.75,25,0.0 +13180,46,12,19,0.0 +13180,56,38,7,0.0 +13180,23,9,23,0.0 +13180,17,39,45,0.0 +13180,42,14,11,0.0 +13180,60,34,38,0.0 +13180,33,2.5,18,0.0 +13180,59,55,25,0.0 +13180,63,43.9,10,0.0 +13180,70,15,14,0.0 +13180,24,4.5,23,0.0 +13180,67,14,8,0.0 +13180,44,19.45,34,0.0 +13180,76,18,20,0.0 +13180,64,33.25,49,0.0 +13180,31,12.5,29,0.0 +13180,65,21.05,40,0.0 +13180,36,19,37,0.0 +13180,34,14,36,0.0 +13180,71,21.5,46,0.0 +13180,37,26,34,0.0 +13180,11,21,30,0.0 +13180,58,13.25,35,0.0 +13180,50,16.25,1,0.0 +13180,68,12.5,25,0.0 +13180,19,9.2,9,0.0 +13180,4,22,17,0.0 +13180,20,81,29,0.0 +13180,27,43.9,50,0.0 +13180,22,21,18,0.0 +13180,7,30,48,0.0 +13180,12,38,19,0.0 +13180,41,9.65,6,0.0 +13180,40,18.4,13,0.0 +13180,30,25.89,18,0.0 +13180,8,40,40,0.0 +13180,73,15,19,0.0 +13180,26,31.23,35,0.0 +13180,54,7.45,1,0.0 +13180,47,9.5,5,0.0 +13180,66,17,14,0.0 +13180,45,9.5,6,0.0 +13180,3,10,47,0.0 +13181,50,16.25,23,0.0 +13181,12,38,24,0.0 +13181,71,21.5,3,0.0 +13181,19,9.2,34,0.0 +13181,31,12.5,15,0.0 +13181,16,17.45,15,0.0 +13181,62,49.3,33,0.0 +13181,44,19.45,20,0.0 +13181,20,81,47,0.0 +13181,28,45.6,18,0.0 +13181,4,22,25,0.0 +13181,76,18,48,0.0 +13181,48,12.75,25,0.0 +13181,45,9.5,5,0.0 +13181,2,19,48,0.0 +13181,41,9.65,16,0.0 +13181,32,32,14,0.0 +13181,14,23.25,10,0.0 +13181,46,12,26,0.0 +13181,34,14,21,0.0 +13181,1,18,13,0.0 +13181,53,32.8,27,0.0 +13181,64,33.25,19,0.0 +13181,36,19,15,0.0 +13181,24,4.5,25,0.0 +13181,39,18,6,0.0 +13181,35,18,25,0.0 +13181,57,19.5,1,0.0 +13181,59,55,11,0.0 +13181,29,123.79,1,0.0 +13181,13,6,29,0.0 +13181,3,10,35,0.0 +13181,65,21.05,26,0.0 +13181,15,15.5,31,0.0 +13181,7,30,31,0.0 +13181,61,28.5,48,0.0 +13181,67,14,28,0.0 +13181,25,14,39,0.0 +13181,26,31.23,42,0.0 +13181,8,40,8,0.0 +13181,37,26,9,0.0 +13181,58,13.25,43,0.0 +13181,54,7.45,50,0.0 +13181,40,18.4,16,0.0 +13181,11,21,30,0.0 +13181,70,15,47,0.0 +13181,63,43.9,23,0.0 +13181,30,25.89,16,0.0 +13181,66,17,12,0.0 +13181,75,7.75,24,0.0 +13181,52,7,17,0.0 +13181,10,31,27,0.0 +13181,43,46,6,0.0 +13181,27,43.9,14,0.0 +13181,77,13,27,0.0 +13181,38,263.5,35,0.0 +13181,5,21.35,8,0.0 +13181,23,9,37,0.0 +13181,49,20,34,0.0 +13181,17,39,35,0.0 +13181,60,34,16,0.0 +13181,9,97,32,0.0 +13181,21,10,38,0.0 +13181,22,21,46,0.0 +13181,74,10,6,0.0 +13181,69,36,5,0.0 +13181,47,9.5,3,0.0 +13181,55,24,29,0.0 +13181,33,2.5,29,0.0 +13181,18,62.5,8,0.0 +13181,6,25,41,0.0 +13181,72,34.8,15,0.0 +13182,71,21.5,2,0.0 +13182,38,263.5,47,0.0 +13182,5,21.35,14,0.0 +13182,8,40,33,0.0 +13182,41,9.65,27,0.0 +13182,2,19,6,0.0 +13182,65,21.05,15,0.0 +13182,32,32,23,0.0 +13182,59,55,13,0.0 +13182,72,34.8,3,0.0 +13182,23,9,3,0.0 +13182,36,19,2,0.0 +13182,60,34,17,0.0 +13182,37,26,4,0.0 +13182,18,62.5,18,0.0 +13182,44,19.45,6,0.0 +13182,3,10,43,0.0 +13182,27,43.9,44,0.0 +13182,73,15,12,0.0 +13182,11,21,15,0.0 +13182,19,9.2,37,0.0 +13182,10,31,48,0.0 +13182,12,38,23,0.0 +13182,28,45.6,37,0.0 +13182,25,14,37,0.0 +13182,57,19.5,40,0.0 +13182,22,21,30,0.0 +13182,43,46,40,0.0 +13182,42,14,47,0.0 +13182,52,7,27,0.0 +13182,29,123.79,25,0.0 +13182,46,12,50,0.0 +13182,21,10,13,0.0 +13182,50,16.25,25,0.0 +13182,17,39,33,0.0 +13182,70,15,50,0.0 +13182,77,13,47,0.0 +13183,59,55,9,0.0 +13184,40,18.4,12,0.0 +13184,9,97,42,0.0 +13184,71,21.5,31,0.0 +13184,35,18,38,0.0 +13184,60,34,32,0.0 +13184,22,21,18,0.0 +13184,44,19.45,8,0.0 +13184,46,12,7,0.0 +13184,62,49.3,48,0.0 +13184,67,14,34,0.0 +13184,24,4.5,26,0.0 +13184,1,18,16,0.0 +13184,68,12.5,39,0.0 +13184,26,31.23,28,0.0 +13184,31,12.5,18,0.0 +13184,69,36,50,0.0 +13184,10,31,41,0.0 +13184,38,263.5,49,0.0 +13184,8,40,38,0.0 +13184,15,15.5,39,0.0 +13184,41,9.65,9,0.0 +13184,37,26,13,0.0 +13184,21,10,33,0.0 +13184,39,18,38,0.0 +13184,55,24,44,0.0 +13184,16,17.45,21,0.0 +13184,76,18,45,0.0 +13184,59,55,30,0.0 +13184,6,25,16,0.0 +13184,74,10,19,0.0 +13184,73,15,18,0.0 +13184,34,14,43,0.0 +13184,58,13.25,21,0.0 +13184,20,81,44,0.0 +13184,77,13,11,0.0 +13184,18,62.5,14,0.0 +13184,17,39,23,0.0 +13184,13,6,24,0.0 +13184,70,15,22,0.0 +13184,53,32.8,42,0.0 +13184,47,9.5,20,0.0 +13184,25,14,29,0.0 +13184,45,9.5,4,0.0 +13184,43,46,14,0.0 +13184,56,38,46,0.0 +13184,64,33.25,24,0.0 +13184,61,28.5,28,0.0 +13184,2,19,11,0.0 +13184,65,21.05,46,0.0 +13184,75,7.75,22,0.0 +13184,12,38,15,0.0 +13185,5,21.35,11,0.0 +13185,10,31,47,0.0 +13185,57,19.5,13,0.0 +13185,52,7,29,0.0 +13185,26,31.23,2,0.0 +13185,30,25.89,18,0.0 +13185,42,14,43,0.0 +13185,77,13,21,0.0 +13185,58,13.25,36,0.0 +13185,6,25,16,0.0 +13185,47,9.5,27,0.0 +13185,13,6,44,0.0 +13185,71,21.5,6,0.0 +13185,65,21.05,35,0.0 +13185,60,34,4,0.0 +13185,19,9.2,45,0.0 +13185,43,46,41,0.0 +13185,37,26,35,0.0 +13185,31,12.5,24,0.0 +13185,21,10,18,0.0 +13185,61,28.5,36,0.0 +13185,39,18,12,0.0 +13185,44,19.45,20,0.0 +13185,22,21,4,0.0 +13185,73,15,9,0.0 +13185,8,40,22,0.0 +13185,46,12,50,0.0 +13185,48,12.75,3,0.0 +13185,40,18.4,34,0.0 +13185,35,18,33,0.0 +13185,4,22,22,0.0 +13185,41,9.65,26,0.0 +13185,27,43.9,33,0.0 +13185,20,81,22,0.0 +13185,29,123.79,7,0.0 +13185,50,16.25,30,0.0 +13185,74,10,47,0.0 +13185,56,38,2,0.0 +13185,69,36,40,0.0 +13185,34,14,43,0.0 +13185,53,32.8,29,0.0 +13185,68,12.5,16,0.0 +13185,33,2.5,50,0.0 +13185,14,23.25,15,0.0 +13185,24,4.5,42,0.0 +13185,66,17,43,0.0 +13185,51,53,19,0.0 +13185,1,18,39,0.0 +13185,25,14,10,0.0 +13185,9,97,27,0.0 +13185,72,34.8,3,0.0 +13185,75,7.75,17,0.0 +13185,12,38,19,0.0 +13185,64,33.25,29,0.0 +13185,45,9.5,37,0.0 +13185,2,19,33,0.0 +13185,49,20,25,0.0 +13185,7,30,35,0.0 +13185,54,7.45,4,0.0 +13185,70,15,43,0.0 +13185,38,263.5,43,0.0 +13185,62,49.3,14,0.0 +13185,17,39,2,0.0 +13185,23,9,18,0.0 +13185,67,14,40,0.0 +13185,55,24,24,0.0 +13185,59,55,15,0.0 +13185,36,19,37,0.0 +13185,28,45.6,20,0.0 +13185,32,32,5,0.0 +13185,76,18,45,0.0 +13185,15,15.5,18,0.0 +13185,18,62.5,49,0.0 +13185,16,17.45,1,0.0 +13185,11,21,22,0.0 +13185,3,10,27,0.0 +13186,50,16.25,16,0.0 +13186,22,21,6,0.0 +13186,56,38,19,0.0 +13186,19,9.2,43,0.0 +13186,20,81,43,0.0 +13186,74,10,11,0.0 +13186,7,30,28,0.0 +13186,12,38,20,0.0 +13186,70,15,7,0.0 +13186,6,25,14,0.0 +13186,27,43.9,8,0.0 +13186,72,34.8,49,0.0 +13186,43,46,40,0.0 +13186,61,28.5,5,0.0 +13186,14,23.25,32,0.0 +13186,46,12,15,0.0 +13186,38,263.5,39,0.0 +13186,51,53,21,0.0 +13186,45,9.5,35,0.0 +13186,16,17.45,50,0.0 +13186,37,26,31,0.0 +13186,1,18,3,0.0 +13186,10,31,13,0.0 +13186,34,14,19,0.0 +13186,49,20,14,0.0 +13186,58,13.25,23,0.0 +13186,17,39,22,0.0 +13186,33,2.5,48,0.0 +13186,77,13,16,0.0 +13186,36,19,50,0.0 +13186,24,4.5,16,0.0 +13186,54,7.45,2,0.0 +13186,28,45.6,2,0.0 +13186,44,19.45,32,0.0 +13186,5,21.35,16,0.0 +13186,35,18,14,0.0 +13186,59,55,26,0.0 +13186,11,21,42,0.0 +13186,71,21.5,30,0.0 +13186,52,7,1,0.0 +13186,4,22,35,0.0 +13186,62,49.3,28,0.0 +13186,55,24,18,0.0 +13186,48,12.75,43,0.0 +13186,68,12.5,30,0.0 +13186,66,17,11,0.0 +13186,53,32.8,30,0.0 +13186,64,33.25,40,0.0 +13186,69,36,10,0.0 +13186,25,14,42,0.0 +13186,13,6,25,0.0 +13186,29,123.79,46,0.0 +13186,63,43.9,24,0.0 +13186,9,97,13,0.0 +13186,65,21.05,27,0.0 +13186,75,7.75,30,0.0 +13186,76,18,11,0.0 +13186,42,14,5,0.0 +13186,57,19.5,2,0.0 +13186,26,31.23,42,0.0 +13186,2,19,23,0.0 +13186,67,14,29,0.0 +13186,41,9.65,9,0.0 +13186,21,10,28,0.0 +13186,31,12.5,44,0.0 +13186,15,15.5,42,0.0 +13186,18,62.5,37,0.0 +13186,40,18.4,37,0.0 +13186,30,25.89,20,0.0 +13186,60,34,35,0.0 +13186,47,9.5,35,0.0 +13186,73,15,32,0.0 +13186,23,9,32,0.0 +13186,3,10,49,0.0 +13186,39,18,24,0.0 +13186,8,40,37,0.0 +13186,32,32,8,0.0 +13187,51,53,24,0.0 +13187,7,30,32,0.0 +13187,25,14,9,0.0 +13187,5,21.35,22,0.0 +13187,72,34.8,40,0.0 +13187,50,16.25,47,0.0 +13187,22,21,47,0.0 +13187,23,9,21,0.0 +13187,9,97,35,0.0 +13187,70,15,5,0.0 +13187,60,34,7,0.0 +13187,17,39,43,0.0 +13187,11,21,13,0.0 +13187,28,45.6,50,0.0 +13187,38,263.5,33,0.0 +13187,73,15,37,0.0 +13187,21,10,30,0.0 +13187,19,9.2,16,0.0 +13187,26,31.23,23,0.0 +13187,8,40,27,0.0 +13187,33,2.5,21,0.0 +13187,32,32,19,0.0 +13187,12,38,16,0.0 +13187,14,23.25,12,0.0 +13187,3,10,8,0.0 +13187,35,18,42,0.0 +13187,64,33.25,8,0.0 +13187,29,123.79,8,0.0 +13187,48,12.75,4,0.0 +13187,13,6,50,0.0 +13187,55,24,28,0.0 +13187,63,43.9,33,0.0 +13187,52,7,12,0.0 +13187,24,4.5,20,0.0 +13187,44,19.45,49,0.0 +13187,46,12,15,0.0 +13187,42,14,15,0.0 +13187,76,18,15,0.0 +13187,49,20,50,0.0 +13187,2,19,32,0.0 +13187,57,19.5,50,0.0 +13187,54,7.45,9,0.0 +13187,68,12.5,16,0.0 +13187,77,13,21,0.0 +13187,66,17,23,0.0 +13187,36,19,46,0.0 +13187,10,31,4,0.0 +13187,62,49.3,29,0.0 +13187,18,62.5,2,0.0 +13187,67,14,10,0.0 +13187,20,81,48,0.0 +13187,74,10,47,0.0 +13187,15,15.5,7,0.0 +13187,6,25,30,0.0 +13187,40,18.4,47,0.0 +13187,43,46,8,0.0 +13187,34,14,39,0.0 +13187,45,9.5,47,0.0 +13187,65,21.05,34,0.0 +13187,53,32.8,20,0.0 +13187,75,7.75,44,0.0 +13187,39,18,39,0.0 +13187,58,13.25,8,0.0 +13187,30,25.89,34,0.0 +13187,69,36,4,0.0 +13187,1,18,31,0.0 +13188,20,81,16,0.0 +13188,47,9.5,7,0.0 +13188,62,49.3,25,0.0 +13188,14,23.25,10,0.0 +13188,68,12.5,27,0.0 +13188,52,7,19,0.0 +13188,9,97,7,0.0 +13188,34,14,42,0.0 +13188,2,19,11,0.0 +13188,7,30,15,0.0 +13188,76,18,47,0.0 +13188,4,22,12,0.0 +13188,71,21.5,36,0.0 +13188,41,9.65,8,0.0 +13188,51,53,42,0.0 +13188,69,36,6,0.0 +13188,37,26,27,0.0 +13188,17,39,32,0.0 +13189,52,7,28,0.0 +13189,54,7.45,45,0.0 +13189,48,12.75,13,0.0 +13189,76,18,42,0.0 +13189,59,55,33,0.0 +13189,70,15,4,0.0 +13189,74,10,2,0.0 +13189,12,38,38,0.0 +13189,19,9.2,13,0.0 +13190,23,9,36,0.0 +13190,76,18,14,0.0 +13190,64,33.25,48,0.0 +13190,12,38,20,0.0 +13190,1,18,46,0.0 +13190,77,13,12,0.0 +13190,56,38,1,0.0 +13190,50,16.25,2,0.0 +13190,10,31,25,0.0 +13190,27,43.9,46,0.0 +13190,57,19.5,24,0.0 +13190,14,23.25,49,0.0 +13190,49,20,28,0.0 +13190,55,24,14,0.0 +13190,28,45.6,10,0.0 +13190,16,17.45,20,0.0 +13190,39,18,41,0.0 +13190,44,19.45,40,0.0 +13190,33,2.5,29,0.0 +13190,17,39,33,0.0 +13190,72,34.8,48,0.0 +13190,74,10,29,0.0 +13190,53,32.8,16,0.0 +13190,36,19,3,0.0 +13190,22,21,32,0.0 +13190,2,19,16,0.0 +13190,45,9.5,27,0.0 +13190,11,21,50,0.0 +13190,70,15,1,0.0 +13190,65,21.05,28,0.0 +13190,54,7.45,26,0.0 +13190,38,263.5,45,0.0 +13190,9,97,13,0.0 +13190,4,22,8,0.0 +13190,6,25,40,0.0 +13190,25,14,15,0.0 +13191,54,7.45,9,0.0 +13191,14,23.25,17,0.0 +13191,68,12.5,8,0.0 +13191,26,31.23,47,0.0 +13191,43,46,15,0.0 +13191,38,263.5,50,0.0 +13191,76,18,8,0.0 +13191,6,25,23,0.0 +13191,41,9.65,48,0.0 +13191,9,97,15,0.0 +13191,70,15,2,0.0 +13191,69,36,48,0.0 +13191,22,21,17,0.0 +13191,18,62.5,48,0.0 +13191,33,2.5,16,0.0 +13191,31,12.5,24,0.0 +13191,21,10,38,0.0 +13191,64,33.25,27,0.0 +13191,46,12,19,0.0 +13191,37,26,11,0.0 +13191,48,12.75,21,0.0 +13191,25,14,13,0.0 +13191,72,34.8,6,0.0 +13191,77,13,34,0.0 +13191,28,45.6,25,0.0 +13191,7,30,28,0.0 +13191,63,43.9,27,0.0 +13191,15,15.5,10,0.0 +13191,42,14,4,0.0 +13191,32,32,40,0.0 +13191,51,53,48,0.0 +13191,74,10,20,0.0 +13191,40,18.4,23,0.0 +13191,35,18,5,0.0 +13191,23,9,42,0.0 +13191,24,4.5,48,0.0 +13191,62,49.3,30,0.0 +13191,10,31,20,0.0 +13191,57,19.5,13,0.0 +13191,13,6,21,0.0 +13191,30,25.89,36,0.0 +13191,75,7.75,47,0.0 +13191,4,22,44,0.0 +13191,65,21.05,7,0.0 +13191,50,16.25,42,0.0 +13191,29,123.79,34,0.0 +13191,47,9.5,31,0.0 +13191,36,19,7,0.0 +13191,71,21.5,1,0.0 +13191,19,9.2,45,0.0 +13191,55,24,10,0.0 +13191,39,18,37,0.0 +13191,2,19,6,0.0 +13191,67,14,41,0.0 +13191,58,13.25,14,0.0 +13191,49,20,16,0.0 +13191,53,32.8,24,0.0 +13191,16,17.45,36,0.0 +13191,34,14,21,0.0 +13191,61,28.5,47,0.0 +13191,44,19.45,34,0.0 +13191,5,21.35,47,0.0 +13191,45,9.5,31,0.0 +13191,17,39,21,0.0 +13191,12,38,25,0.0 +13191,27,43.9,24,0.0 +13191,1,18,49,0.0 +13191,73,15,31,0.0 +13191,3,10,26,0.0 +13192,60,34,43,0.0 +13192,51,53,24,0.0 +13192,2,19,5,0.0 +13192,8,40,25,0.0 +13192,73,15,46,0.0 +13192,59,55,14,0.0 +13192,15,15.5,50,0.0 +13192,74,10,24,0.0 +13192,45,9.5,3,0.0 +13192,47,9.5,35,0.0 +13192,66,17,5,0.0 +13192,75,7.75,33,0.0 +13192,20,81,39,0.0 +13192,53,32.8,35,0.0 +13192,27,43.9,43,0.0 +13192,42,14,20,0.0 +13192,10,31,12,0.0 +13192,76,18,17,0.0 +13192,52,7,16,0.0 +13192,57,19.5,11,0.0 +13192,68,12.5,35,0.0 +13192,67,14,21,0.0 +13192,5,21.35,49,0.0 +13192,9,97,17,0.0 +13193,51,53,14,0.0 +13193,74,10,10,0.0 +13193,32,32,23,0.0 +13193,23,9,16,0.0 +13193,49,20,8,0.0 +13193,5,21.35,10,0.0 +13193,57,19.5,42,0.0 +13193,76,18,25,0.0 +13193,28,45.6,16,0.0 +13193,25,14,49,0.0 +13193,58,13.25,4,0.0 +13193,45,9.5,1,0.0 +13193,55,24,18,0.0 +13193,46,12,39,0.0 +13193,71,21.5,43,0.0 +13193,6,25,1,0.0 +13193,10,31,24,0.0 +13193,14,23.25,38,0.0 +13193,75,7.75,15,0.0 +13193,30,25.89,12,0.0 +13193,33,2.5,32,0.0 +13193,63,43.9,8,0.0 +13193,22,21,5,0.0 +13193,70,15,10,0.0 +13193,54,7.45,13,0.0 +13193,18,62.5,25,0.0 +13193,13,6,18,0.0 +13193,37,26,48,0.0 +13193,42,14,45,0.0 +13193,8,40,13,0.0 +13193,43,46,16,0.0 +13193,65,21.05,26,0.0 +13193,77,13,46,0.0 +13193,66,17,26,0.0 +13193,20,81,8,0.0 +13193,4,22,4,0.0 +13193,40,18.4,44,0.0 +13193,36,19,13,0.0 +13193,7,30,6,0.0 +13193,62,49.3,40,0.0 +13193,16,17.45,30,0.0 +13193,17,39,47,0.0 +13193,59,55,39,0.0 +13194,45,9.5,6,0.0 +13194,3,10,10,0.0 +13194,18,62.5,47,0.0 +13194,14,23.25,24,0.0 +13194,34,14,39,0.0 +13194,20,81,36,0.0 +13194,62,49.3,26,0.0 +13194,58,13.25,46,0.0 +13194,46,12,30,0.0 +13194,13,6,7,0.0 +13194,50,16.25,31,0.0 +13194,33,2.5,16,0.0 +13194,31,12.5,39,0.0 +13194,43,46,36,0.0 +13194,5,21.35,19,0.0 +13194,59,55,6,0.0 +13194,53,32.8,19,0.0 +13194,61,28.5,45,0.0 +13194,28,45.6,49,0.0 +13194,60,34,14,0.0 +13194,41,9.65,31,0.0 +13194,44,19.45,45,0.0 +13194,69,36,33,0.0 +13194,12,38,14,0.0 +13194,48,12.75,4,0.0 +13194,4,22,19,0.0 +13194,63,43.9,16,0.0 +13194,19,9.2,7,0.0 +13194,22,21,48,0.0 +13194,37,26,16,0.0 +13194,11,21,41,0.0 +13194,51,53,38,0.0 +13195,26,31.23,24,0.0 +13195,47,9.5,29,0.0 +13195,71,21.5,39,0.0 +13195,17,39,34,0.0 +13195,74,10,4,0.0 +13195,59,55,32,0.0 +13195,40,18.4,43,0.0 +13195,27,43.9,1,0.0 +13195,61,28.5,46,0.0 +13195,18,62.5,27,0.0 +13195,67,14,28,0.0 +13195,42,14,18,0.0 +13195,29,123.79,2,0.0 +13195,31,12.5,19,0.0 +13195,33,2.5,31,0.0 +13195,36,19,11,0.0 +13195,49,20,46,0.0 +13195,8,40,24,0.0 +13195,77,13,1,0.0 +13195,56,38,40,0.0 +13195,63,43.9,26,0.0 +13195,9,97,6,0.0 +13195,20,81,9,0.0 +13195,53,32.8,12,0.0 +13195,24,4.5,10,0.0 +13195,7,30,22,0.0 +13195,75,7.75,47,0.0 +13195,48,12.75,24,0.0 +13195,22,21,25,0.0 +13195,65,21.05,23,0.0 +13195,12,38,2,0.0 +13195,43,46,12,0.0 +13195,6,25,22,0.0 +13195,60,34,13,0.0 +13195,44,19.45,16,0.0 +13195,23,9,7,0.0 +13195,5,21.35,26,0.0 +13195,4,22,8,0.0 +13195,66,17,41,0.0 +13195,39,18,6,0.0 +13195,11,21,3,0.0 +13195,62,49.3,50,0.0 +13195,28,45.6,16,0.0 +13195,3,10,26,0.0 +13195,16,17.45,42,0.0 +13196,50,16.25,8,0.0 +13196,3,10,10,0.0 +13196,66,17,36,0.0 +13196,42,14,37,0.0 +13196,24,4.5,28,0.0 +13196,59,55,18,0.0 +13196,43,46,21,0.0 +13196,34,14,23,0.0 +13196,5,21.35,27,0.0 +13196,55,24,49,0.0 +13196,48,12.75,18,0.0 +13196,17,39,48,0.0 +13196,22,21,5,0.0 +13196,31,12.5,7,0.0 +13196,36,19,10,0.0 +13196,75,7.75,4,0.0 +13196,38,263.5,4,0.0 +13196,39,18,32,0.0 +13196,26,31.23,31,0.0 +13196,53,32.8,18,0.0 +13196,74,10,32,0.0 +13196,25,14,1,0.0 +13196,7,30,4,0.0 +13196,49,20,7,0.0 +13196,71,21.5,27,0.0 +13196,10,31,24,0.0 +13196,37,26,34,0.0 +13196,30,25.89,22,0.0 +13196,11,21,24,0.0 +13196,52,7,41,0.0 +13196,18,62.5,15,0.0 +13196,20,81,6,0.0 +13196,9,97,45,0.0 +13196,68,12.5,18,0.0 +13196,12,38,6,0.0 +13196,29,123.79,29,0.0 +13196,4,22,38,0.0 +13196,76,18,34,0.0 +13196,23,9,12,0.0 +13197,76,18,20,0.0 +13197,51,53,27,0.0 +13197,54,7.45,8,0.0 +13197,44,19.45,6,0.0 +13197,25,14,50,0.0 +13197,36,19,19,0.0 +13197,77,13,34,0.0 +13197,33,2.5,46,0.0 +13197,35,18,33,0.0 +13197,45,9.5,39,0.0 +13197,63,43.9,47,0.0 +13197,6,25,25,0.0 +13197,28,45.6,10,0.0 +13197,2,19,36,0.0 +13197,26,31.23,5,0.0 +13197,4,22,43,0.0 +13197,12,38,49,0.0 +13197,19,9.2,2,0.0 +13197,8,40,48,0.0 +13198,31,12.5,16,0.0 +13198,6,25,20,0.0 +13198,59,55,18,0.0 +13198,47,9.5,36,0.0 +13198,7,30,42,0.0 +13198,50,16.25,18,0.0 +13198,76,18,14,0.0 +13198,77,13,7,0.0 +13198,66,17,8,0.0 +13198,11,21,50,0.0 +13198,17,39,18,0.0 +13198,29,123.79,25,0.0 +13198,13,6,14,0.0 +13198,21,10,3,0.0 +13198,32,32,16,0.0 +13198,42,14,16,0.0 +13198,67,14,6,0.0 +13198,74,10,4,0.0 +13198,41,9.65,39,0.0 +13198,60,34,14,0.0 +13198,51,53,3,0.0 +13198,70,15,23,0.0 +13198,39,18,19,0.0 +13198,8,40,44,0.0 +13198,27,43.9,35,0.0 +13198,75,7.75,45,0.0 +13198,63,43.9,32,0.0 +13198,38,263.5,36,0.0 +13198,56,38,24,0.0 +13198,1,18,48,0.0 +13198,69,36,7,0.0 +13198,30,25.89,23,0.0 +13198,2,19,30,0.0 +13198,44,19.45,18,0.0 +13198,26,31.23,16,0.0 +13198,12,38,9,0.0 +13198,15,15.5,37,0.0 +13198,33,2.5,7,0.0 +13198,62,49.3,19,0.0 +13198,16,17.45,34,0.0 +13199,66,17,2,0.0 +13199,38,263.5,15,0.0 +13199,64,33.25,17,0.0 +13199,60,34,45,0.0 +13199,77,13,2,0.0 +13199,14,23.25,6,0.0 +13199,28,45.6,10,0.0 +13199,35,18,13,0.0 +13199,1,18,41,0.0 +13199,34,14,43,0.0 +13199,73,15,45,0.0 +13199,15,15.5,18,0.0 +13199,45,9.5,42,0.0 +13199,56,38,41,0.0 +13199,39,18,45,0.0 +13199,69,36,16,0.0 +13199,17,39,42,0.0 +13199,5,21.35,39,0.0 +13199,20,81,42,0.0 +13199,27,43.9,27,0.0 +13199,7,30,37,0.0 +13199,16,17.45,31,0.0 +13199,10,31,39,0.0 +13199,6,25,40,0.0 +13200,19,9.2,28,0.0 +13200,1,18,17,0.0 +13200,30,25.89,35,0.0 +13200,72,34.8,1,0.0 +13200,76,18,12,0.0 +13200,75,7.75,2,0.0 +13200,35,18,34,0.0 +13200,13,6,2,0.0 +13200,22,21,5,0.0 +13200,17,39,36,0.0 +13200,34,14,39,0.0 +13200,63,43.9,50,0.0 +13200,69,36,8,0.0 +13200,48,12.75,16,0.0 +13200,31,12.5,6,0.0 +13200,41,9.65,41,0.0 +13200,28,45.6,35,0.0 +13200,42,14,1,0.0 +13200,5,21.35,21,0.0 +13200,71,21.5,34,0.0 +13200,14,23.25,20,0.0 +13200,66,17,13,0.0 +13200,57,19.5,18,0.0 +13200,51,53,29,0.0 +13200,21,10,5,0.0 +13200,16,17.45,47,0.0 +13200,10,31,39,0.0 +13200,59,55,49,0.0 +13200,61,28.5,20,0.0 +13200,11,21,30,0.0 +13200,6,25,19,0.0 +13200,62,49.3,27,0.0 +13200,37,26,22,0.0 +13200,7,30,19,0.0 +13200,23,9,1,0.0 +13200,12,38,20,0.0 +13200,46,12,3,0.0 +13200,4,22,23,0.0 +13200,55,24,35,0.0 +13200,65,21.05,13,0.0 +13200,74,10,22,0.0 +13200,26,31.23,34,0.0 +13200,40,18.4,32,0.0 +13200,36,19,31,0.0 +13200,70,15,18,0.0 +13200,24,4.5,28,0.0 +13200,9,97,26,0.0 +13200,73,15,46,0.0 +13200,52,7,34,0.0 +13200,15,15.5,20,0.0 +13200,54,7.45,28,0.0 +13200,27,43.9,19,0.0 +13200,45,9.5,24,0.0 +13200,44,19.45,19,0.0 +13200,50,16.25,34,0.0 +13200,60,34,7,0.0 +13200,68,12.5,46,0.0 +13200,67,14,37,0.0 +13200,18,62.5,48,0.0 +13200,38,263.5,35,0.0 +13200,47,9.5,49,0.0 +13200,2,19,19,0.0 +13200,20,81,35,0.0 +13200,3,10,39,0.0 +13200,56,38,4,0.0 +13200,64,33.25,50,0.0 +13200,29,123.79,41,0.0 +13200,39,18,29,0.0 +13200,77,13,36,0.0 +13200,32,32,46,0.0 +13200,33,2.5,43,0.0 +13200,49,20,35,0.0 +13200,58,13.25,11,0.0 +13200,25,14,46,0.0 +13200,43,46,9,0.0 +13201,2,19,42,0.0 +13201,77,13,19,0.0 +13201,3,10,23,0.0 +13201,27,43.9,44,0.0 +13201,74,10,49,0.0 +13201,16,17.45,38,0.0 +13201,35,18,35,0.0 +13201,32,32,36,0.0 +13201,73,15,49,0.0 +13201,75,7.75,23,0.0 +13201,13,6,45,0.0 +13201,19,9.2,29,0.0 +13201,48,12.75,47,0.0 +13201,28,45.6,5,0.0 +13201,9,97,10,0.0 +13201,29,123.79,17,0.0 +13201,63,43.9,42,0.0 +13201,25,14,21,0.0 +13201,44,19.45,20,0.0 +13201,7,30,14,0.0 +13201,60,34,33,0.0 +13201,40,18.4,25,0.0 +13201,31,12.5,36,0.0 +13201,57,19.5,10,0.0 +13201,72,34.8,34,0.0 +13201,59,55,40,0.0 +13201,68,12.5,16,0.0 +13201,37,26,32,0.0 +13201,42,14,13,0.0 +13201,34,14,5,0.0 +13201,15,15.5,19,0.0 +13201,10,31,37,0.0 +13201,49,20,32,0.0 +13201,6,25,28,0.0 +13201,46,12,1,0.0 +13201,66,17,25,0.0 +13201,1,18,8,0.0 +13201,71,21.5,27,0.0 +13201,33,2.5,49,0.0 +13201,67,14,17,0.0 +13201,11,21,46,0.0 +13201,64,33.25,8,0.0 +13201,50,16.25,26,0.0 +13201,45,9.5,9,0.0 +13201,14,23.25,12,0.0 +13201,12,38,19,0.0 +13201,55,24,38,0.0 +13201,5,21.35,38,0.0 +13201,54,7.45,38,0.0 +13201,22,21,31,0.0 +13201,17,39,11,0.0 +13201,69,36,37,0.0 +13201,38,263.5,3,0.0 +13201,36,19,3,0.0 +13201,47,9.5,43,0.0 +13201,70,15,14,0.0 +13201,76,18,50,0.0 +13201,52,7,6,0.0 +13201,58,13.25,27,0.0 +13201,23,9,3,0.0 +13201,51,53,4,0.0 +13201,4,22,5,0.0 +13202,23,9,28,0.0 +13202,64,33.25,3,0.0 +13202,40,18.4,23,0.0 +13202,7,30,29,0.0 +13202,76,18,28,0.0 +13202,44,19.45,7,0.0 +13202,56,38,9,0.0 +13202,26,31.23,36,0.0 +13202,3,10,3,0.0 +13202,22,21,27,0.0 +13202,12,38,48,0.0 +13202,63,43.9,36,0.0 +13202,25,14,7,0.0 +13202,9,97,49,0.0 +13202,47,9.5,41,0.0 +13202,50,16.25,2,0.0 +13202,61,28.5,45,0.0 +13203,22,21,14,0.0 +13203,46,12,9,0.0 +13203,73,15,48,0.0 +13203,32,32,20,0.0 +13204,47,9.5,23,0.0 +13204,75,7.75,7,0.0 +13204,32,32,35,0.0 +13204,62,49.3,12,0.0 +13204,10,31,15,0.0 +13204,50,16.25,39,0.0 +13204,74,10,25,0.0 +13204,5,21.35,17,0.0 +13204,22,21,4,0.0 +13204,23,9,14,0.0 +13204,28,45.6,42,0.0 +13204,42,14,34,0.0 +13204,2,19,48,0.0 +13204,9,97,37,0.0 +13204,33,2.5,10,0.0 +13204,55,24,16,0.0 +13204,34,14,13,0.0 +13204,6,25,10,0.0 +13204,43,46,50,0.0 +13204,16,17.45,30,0.0 +13204,66,17,49,0.0 +13204,36,19,25,0.0 +13204,8,40,30,0.0 +13204,61,28.5,32,0.0 +13204,4,22,15,0.0 +13204,29,123.79,31,0.0 +13204,35,18,48,0.0 +13204,53,32.8,21,0.0 +13204,51,53,17,0.0 +13204,17,39,2,0.0 +13204,58,13.25,9,0.0 +13204,11,21,44,0.0 +13204,70,15,8,0.0 +13204,39,18,47,0.0 +13204,60,34,36,0.0 +13204,59,55,12,0.0 +13204,20,81,42,0.0 +13204,72,34.8,40,0.0 +13204,13,6,33,0.0 +13204,24,4.5,35,0.0 +13204,48,12.75,8,0.0 +13204,25,14,21,0.0 +13204,38,263.5,14,0.0 +13205,35,18,34,0.0 +13205,38,263.5,36,0.0 +13205,46,12,23,0.0 +13205,41,9.65,50,0.0 +13205,10,31,17,0.0 +13205,68,12.5,30,0.0 +13205,70,15,20,0.0 +13205,64,33.25,26,0.0 +13205,45,9.5,22,0.0 +13205,17,39,17,0.0 +13205,37,26,1,0.0 +13205,62,49.3,42,0.0 +13205,11,21,38,0.0 +13205,49,20,49,0.0 +13205,8,40,21,0.0 +13205,2,19,15,0.0 +13205,15,15.5,46,0.0 +13205,13,6,22,0.0 +13205,69,36,38,0.0 +13205,22,21,50,0.0 +13205,40,18.4,16,0.0 +13205,14,23.25,43,0.0 +13205,72,34.8,1,0.0 +13205,29,123.79,7,0.0 +13205,28,45.6,18,0.0 +13205,12,38,50,0.0 +13205,18,62.5,42,0.0 +13205,52,7,5,0.0 +13205,44,19.45,16,0.0 +13205,57,19.5,7,0.0 +13205,25,14,12,0.0 +13205,7,30,41,0.0 +13205,51,53,19,0.0 +13205,31,12.5,2,0.0 +13205,39,18,36,0.0 +13205,6,25,13,0.0 +13205,56,38,44,0.0 +13205,47,9.5,12,0.0 +13205,33,2.5,20,0.0 +13205,74,10,9,0.0 +13205,75,7.75,11,0.0 +13205,3,10,14,0.0 +13205,5,21.35,8,0.0 +13205,76,18,46,0.0 +13205,1,18,10,0.0 +13205,60,34,35,0.0 +13205,16,17.45,10,0.0 +13205,24,4.5,21,0.0 +13205,32,32,1,0.0 +13205,4,22,30,0.0 +13205,73,15,30,0.0 +13205,54,7.45,9,0.0 +13205,43,46,27,0.0 +13205,71,21.5,25,0.0 +13205,42,14,4,0.0 +13205,19,9.2,5,0.0 +13205,26,31.23,47,0.0 +13205,55,24,13,0.0 +13205,36,19,4,0.0 +13205,34,14,17,0.0 +13205,20,81,15,0.0 +13205,59,55,11,0.0 +13205,21,10,38,0.0 +13206,1,18,47,0.0 +13206,62,49.3,20,0.0 +13206,15,15.5,3,0.0 +13206,27,43.9,37,0.0 +13206,75,7.75,18,0.0 +13206,49,20,10,0.0 +13206,56,38,4,0.0 +13206,48,12.75,6,0.0 +13207,54,7.45,28,0.0 +13207,20,81,13,0.0 +13207,57,19.5,16,0.0 +13207,70,15,19,0.0 +13207,64,33.25,30,0.0 +13207,12,38,28,0.0 +13207,16,17.45,23,0.0 +13207,37,26,45,0.0 +13207,72,34.8,23,0.0 +13207,69,36,42,0.0 +13207,29,123.79,23,0.0 +13207,2,19,39,0.0 +13207,56,38,24,0.0 +13207,74,10,37,0.0 +13207,23,9,30,0.0 +13207,55,24,33,0.0 +13207,63,43.9,25,0.0 +13207,60,34,43,0.0 +13207,75,7.75,46,0.0 +13207,36,19,3,0.0 +13207,51,53,22,0.0 +13207,11,21,23,0.0 +13207,49,20,9,0.0 +13207,8,40,24,0.0 +13207,50,16.25,33,0.0 +13207,65,21.05,38,0.0 +13207,26,31.23,10,0.0 +13207,46,12,6,0.0 +13207,40,18.4,28,0.0 +13207,59,55,27,0.0 +13207,13,6,49,0.0 +13207,33,2.5,32,0.0 +13207,61,28.5,10,0.0 +13207,67,14,42,0.0 +13207,27,43.9,43,0.0 +13207,38,263.5,9,0.0 +13207,62,49.3,28,0.0 +13207,19,9.2,10,0.0 +13207,21,10,49,0.0 +13207,43,46,38,0.0 +13207,34,14,26,0.0 +13207,42,14,38,0.0 +13207,30,25.89,29,0.0 +13207,9,97,2,0.0 +13207,68,12.5,15,0.0 +13207,73,15,12,0.0 +13207,18,62.5,1,0.0 +13207,10,31,34,0.0 +13207,58,13.25,38,0.0 +13207,4,22,36,0.0 +13208,22,21,10,0.0 +13208,18,62.5,26,0.0 +13208,69,36,49,0.0 +13208,53,32.8,50,0.0 +13208,54,7.45,18,0.0 +13208,49,20,4,0.0 +13208,52,7,19,0.0 +13208,64,33.25,44,0.0 +13208,65,21.05,34,0.0 +13208,9,97,8,0.0 +13208,37,26,28,0.0 +13208,63,43.9,14,0.0 +13208,4,22,40,0.0 +13208,16,17.45,6,0.0 +13208,66,17,38,0.0 +13208,5,21.35,12,0.0 +13208,74,10,1,0.0 +13208,28,45.6,31,0.0 +13208,17,39,35,0.0 +13208,24,4.5,13,0.0 +13208,70,15,22,0.0 +13208,58,13.25,31,0.0 +13208,76,18,39,0.0 +13208,3,10,15,0.0 +13208,12,38,30,0.0 +13208,75,7.75,49,0.0 +13208,71,21.5,31,0.0 +13208,14,23.25,13,0.0 +13208,43,46,26,0.0 +13208,2,19,5,0.0 +13208,27,43.9,40,0.0 +13208,67,14,8,0.0 +13208,61,28.5,22,0.0 +13208,6,25,37,0.0 +13208,20,81,21,0.0 +13208,42,14,47,0.0 +13208,10,31,2,0.0 +13208,39,18,6,0.0 +13208,34,14,36,0.0 +13208,41,9.65,38,0.0 +13208,68,12.5,36,0.0 +13208,47,9.5,8,0.0 +13208,50,16.25,14,0.0 +13208,73,15,41,0.0 +13208,31,12.5,42,0.0 +13208,11,21,34,0.0 +13208,72,34.8,1,0.0 +13208,19,9.2,5,0.0 +13208,15,15.5,26,0.0 +13208,26,31.23,12,0.0 +13208,29,123.79,15,0.0 +13208,38,263.5,25,0.0 +13208,36,19,49,0.0 +13208,55,24,31,0.0 +13208,57,19.5,2,0.0 +13208,32,32,19,0.0 +13208,45,9.5,41,0.0 +13208,44,19.45,37,0.0 +13208,56,38,1,0.0 +13208,59,55,50,0.0 +13208,7,30,45,0.0 +13208,30,25.89,5,0.0 +13208,1,18,2,0.0 +13208,48,12.75,10,0.0 +13208,46,12,8,0.0 +13208,62,49.3,39,0.0 +13208,21,10,2,0.0 +13208,33,2.5,42,0.0 +13208,77,13,41,0.0 +13208,35,18,41,0.0 +13208,51,53,21,0.0 +13208,60,34,18,0.0 +13208,13,6,36,0.0 +13208,8,40,42,0.0 +13209,14,23.25,42,0.0 +13209,13,6,34,0.0 +13209,6,25,6,0.0 +13209,49,20,7,0.0 +13209,17,39,4,0.0 +13209,51,53,39,0.0 +13209,12,38,27,0.0 +13209,62,49.3,27,0.0 +13209,70,15,41,0.0 +13209,43,46,18,0.0 +13209,9,97,18,0.0 +13209,20,81,25,0.0 +13209,5,21.35,46,0.0 +13209,34,14,15,0.0 +13209,46,12,46,0.0 +13209,53,32.8,19,0.0 +13209,33,2.5,3,0.0 +13209,65,21.05,16,0.0 +13209,61,28.5,35,0.0 +13209,38,263.5,12,0.0 +13209,59,55,24,0.0 +13209,71,21.5,48,0.0 +13209,4,22,47,0.0 +13209,28,45.6,16,0.0 +13209,73,15,4,0.0 +13209,76,18,15,0.0 +13209,16,17.45,32,0.0 +13209,68,12.5,33,0.0 +13209,22,21,46,0.0 +13209,2,19,50,0.0 +13209,19,9.2,39,0.0 +13209,26,31.23,31,0.0 +13209,77,13,42,0.0 +13209,42,14,17,0.0 +13209,75,7.75,37,0.0 +13209,10,31,38,0.0 +13210,6,25,34,0.0 +13210,15,15.5,24,0.0 +13210,47,9.5,16,0.0 +13210,45,9.5,46,0.0 +13210,53,32.8,19,0.0 +13210,12,38,41,0.0 +13210,9,97,21,0.0 +13210,55,24,1,0.0 +13210,61,28.5,3,0.0 +13210,58,13.25,42,0.0 +13210,1,18,27,0.0 +13210,8,40,33,0.0 +13210,57,19.5,25,0.0 +13210,48,12.75,23,0.0 +13210,7,30,28,0.0 +13210,44,19.45,31,0.0 +13210,39,18,44,0.0 +13210,30,25.89,23,0.0 +13210,62,49.3,2,0.0 +13210,68,12.5,14,0.0 +13210,11,21,13,0.0 +13210,10,31,22,0.0 +13210,5,21.35,6,0.0 +13210,35,18,41,0.0 +13210,29,123.79,14,0.0 +13210,54,7.45,40,0.0 +13210,74,10,41,0.0 +13210,70,15,5,0.0 +13210,77,13,30,0.0 +13210,75,7.75,28,0.0 +13210,14,23.25,39,0.0 +13210,41,9.65,41,0.0 +13210,31,12.5,30,0.0 +13210,28,45.6,48,0.0 +13210,66,17,22,0.0 +13210,37,26,20,0.0 +13210,26,31.23,28,0.0 +13210,4,22,17,0.0 +13210,59,55,19,0.0 +13210,49,20,4,0.0 +13210,17,39,37,0.0 +13210,60,34,17,0.0 +13210,24,4.5,37,0.0 +13210,21,10,33,0.0 +13210,73,15,28,0.0 +13210,23,9,15,0.0 +13210,20,81,11,0.0 +13210,3,10,19,0.0 +13210,18,62.5,18,0.0 +13210,36,19,5,0.0 +13210,22,21,22,0.0 +13210,65,21.05,44,0.0 +13210,40,18.4,35,0.0 +13210,2,19,20,0.0 +13210,13,6,19,0.0 +13210,38,263.5,50,0.0 +13210,16,17.45,27,0.0 +13210,50,16.25,21,0.0 +13210,52,7,10,0.0 +13210,63,43.9,24,0.0 +13210,34,14,42,0.0 +13210,72,34.8,14,0.0 +13211,26,31.23,23,0.0 +13211,76,18,16,0.0 +13211,12,38,34,0.0 +13211,3,10,23,0.0 +13211,32,32,32,0.0 +13211,23,9,26,0.0 +13211,10,31,19,0.0 +13211,11,21,18,0.0 +13211,63,43.9,49,0.0 +13211,45,9.5,22,0.0 +13211,19,9.2,36,0.0 +13211,75,7.75,45,0.0 +13211,1,18,20,0.0 +13211,31,12.5,47,0.0 +13211,67,14,45,0.0 +13211,7,30,19,0.0 +13211,8,40,34,0.0 +13211,35,18,50,0.0 +13211,15,15.5,46,0.0 +13211,18,62.5,14,0.0 +13211,34,14,14,0.0 +13211,27,43.9,49,0.0 +13211,29,123.79,24,0.0 +13211,17,39,17,0.0 +13211,42,14,43,0.0 +13211,46,12,8,0.0 +13211,16,17.45,37,0.0 +13211,74,10,12,0.0 +13211,59,55,33,0.0 +13211,54,7.45,36,0.0 +13211,70,15,25,0.0 +13211,49,20,7,0.0 +13211,65,21.05,40,0.0 +13211,22,21,42,0.0 +13211,14,23.25,15,0.0 +13211,41,9.65,25,0.0 +13211,66,17,15,0.0 +13211,52,7,50,0.0 +13211,39,18,33,0.0 +13211,4,22,29,0.0 +13211,60,34,6,0.0 +13211,5,21.35,34,0.0 +13211,77,13,23,0.0 +13211,73,15,15,0.0 +13211,21,10,5,0.0 +13211,61,28.5,46,0.0 +13211,24,4.5,49,0.0 +13211,48,12.75,49,0.0 +13211,51,53,17,0.0 +13211,25,14,6,0.0 +13211,44,19.45,25,0.0 +13211,40,18.4,40,0.0 +13211,28,45.6,40,0.0 +13211,72,34.8,5,0.0 +13211,9,97,47,0.0 +13211,62,49.3,48,0.0 +13211,13,6,39,0.0 +13212,46,12,40,0.0 +13212,2,19,25,0.0 +13212,24,4.5,28,0.0 +13212,54,7.45,13,0.0 +13212,56,38,21,0.0 +13212,73,15,31,0.0 +13212,45,9.5,47,0.0 +13212,7,30,4,0.0 +13212,18,62.5,6,0.0 +13212,12,38,1,0.0 +13212,17,39,24,0.0 +13212,42,14,34,0.0 +13212,50,16.25,39,0.0 +13212,67,14,15,0.0 +13212,15,15.5,33,0.0 +13212,63,43.9,22,0.0 +13212,49,20,3,0.0 +13212,47,9.5,29,0.0 +13212,39,18,38,0.0 +13212,57,19.5,40,0.0 +13212,36,19,27,0.0 +13212,1,18,49,0.0 +13212,74,10,8,0.0 +13212,69,36,49,0.0 +13212,51,53,40,0.0 +13212,22,21,36,0.0 +13212,23,9,32,0.0 +13212,68,12.5,49,0.0 +13212,72,34.8,46,0.0 +13212,11,21,12,0.0 +13212,27,43.9,12,0.0 +13212,16,17.45,50,0.0 +13212,40,18.4,29,0.0 +13212,29,123.79,36,0.0 +13213,39,18,38,0.0 +13213,73,15,30,0.0 +13213,44,19.45,13,0.0 +13213,76,18,15,0.0 +13213,38,263.5,43,0.0 +13213,15,15.5,7,0.0 +13213,22,21,30,0.0 +13213,77,13,16,0.0 +13213,70,15,48,0.0 +13213,65,21.05,14,0.0 +13213,63,43.9,47,0.0 +13213,58,13.25,23,0.0 +13213,37,26,44,0.0 +13213,68,12.5,42,0.0 +13214,75,7.75,11,0.0 +13214,71,21.5,27,0.0 +13214,77,13,28,0.0 +13214,56,38,2,0.0 +13214,38,263.5,40,0.0 +13214,67,14,39,0.0 +13214,23,9,46,0.0 +13214,29,123.79,48,0.0 +13214,35,18,30,0.0 +13214,3,10,30,0.0 +13214,14,23.25,18,0.0 +13214,48,12.75,14,0.0 +13214,40,18.4,34,0.0 +13214,43,46,42,0.0 +13214,15,15.5,27,0.0 +13214,13,6,34,0.0 +13214,1,18,23,0.0 +13214,36,19,40,0.0 +13214,31,12.5,13,0.0 +13214,34,14,20,0.0 +13214,58,13.25,27,0.0 +13214,74,10,30,0.0 +13214,72,34.8,12,0.0 +13214,26,31.23,46,0.0 +13214,8,40,10,0.0 +13214,41,9.65,17,0.0 +13214,64,33.25,17,0.0 +13214,45,9.5,33,0.0 +13214,20,81,25,0.0 +13214,62,49.3,19,0.0 +13214,73,15,24,0.0 +13214,28,45.6,40,0.0 +13214,60,34,45,0.0 +13214,54,7.45,18,0.0 +13214,32,32,38,0.0 +13214,24,4.5,12,0.0 +13214,6,25,8,0.0 +13214,27,43.9,37,0.0 +13214,76,18,21,0.0 +13214,52,7,14,0.0 +13214,17,39,20,0.0 +13214,68,12.5,10,0.0 +13214,19,9.2,15,0.0 +13214,42,14,43,0.0 +13214,7,30,3,0.0 +13214,46,12,10,0.0 +13214,4,22,48,0.0 +13214,61,28.5,28,0.0 +13214,59,55,28,0.0 +13214,33,2.5,34,0.0 +13214,25,14,42,0.0 +13214,22,21,48,0.0 +13214,50,16.25,31,0.0 +13214,21,10,12,0.0 +13214,39,18,3,0.0 +13214,12,38,8,0.0 +13214,37,26,16,0.0 +13214,5,21.35,38,0.0 +13214,30,25.89,46,0.0 +13214,49,20,16,0.0 +13214,44,19.45,25,0.0 +13214,11,21,20,0.0 +13214,16,17.45,30,0.0 +13214,69,36,11,0.0 +13214,65,21.05,6,0.0 +13214,70,15,35,0.0 +13214,55,24,23,0.0 +13215,27,43.9,30,0.0 +13215,74,10,25,0.0 +13215,60,34,4,0.0 +13215,7,30,19,0.0 +13215,13,6,3,0.0 +13215,47,9.5,2,0.0 +13215,39,18,13,0.0 +13215,62,49.3,39,0.0 +13215,69,36,6,0.0 +13215,44,19.45,5,0.0 +13215,14,23.25,50,0.0 +13215,58,13.25,47,0.0 +13215,21,10,26,0.0 +13215,19,9.2,10,0.0 +13215,64,33.25,2,0.0 +13215,76,18,22,0.0 +13215,3,10,23,0.0 +13215,67,14,40,0.0 +13215,33,2.5,11,0.0 +13215,12,38,47,0.0 +13215,46,12,44,0.0 +13215,36,19,32,0.0 +13215,53,32.8,10,0.0 +13215,63,43.9,17,0.0 +13215,52,7,24,0.0 +13215,2,19,44,0.0 +13215,26,31.23,23,0.0 +13215,1,18,5,0.0 +13215,75,7.75,2,0.0 +13215,28,45.6,26,0.0 +13215,23,9,33,0.0 +13215,50,16.25,25,0.0 +13215,6,25,10,0.0 +13215,49,20,46,0.0 +13215,9,97,13,0.0 +13215,25,14,7,0.0 +13215,42,14,24,0.0 +13215,17,39,16,0.0 +13215,40,18.4,24,0.0 +13215,16,17.45,5,0.0 +13215,59,55,22,0.0 +13215,68,12.5,22,0.0 +13215,66,17,32,0.0 +13215,54,7.45,49,0.0 +13215,32,32,39,0.0 +13215,30,25.89,11,0.0 +13215,48,12.75,12,0.0 +13215,10,31,47,0.0 +13215,18,62.5,24,0.0 +13215,11,21,14,0.0 +13215,29,123.79,25,0.0 +13215,61,28.5,46,0.0 +13215,45,9.5,14,0.0 +13215,55,24,10,0.0 +13215,22,21,17,0.0 +13215,43,46,35,0.0 +13215,15,15.5,39,0.0 +13215,37,26,7,0.0 +13215,41,9.65,10,0.0 +13215,5,21.35,33,0.0 +13215,24,4.5,34,0.0 +13215,71,21.5,36,0.0 +13215,73,15,38,0.0 +13215,51,53,49,0.0 +13215,4,22,39,0.0 +13215,35,18,38,0.0 +13215,38,263.5,44,0.0 +13215,34,14,45,0.0 +13216,9,97,3,0.0 +13216,49,20,35,0.0 +13216,26,31.23,34,0.0 +13216,58,13.25,9,0.0 +13216,36,19,1,0.0 +13216,46,12,46,0.0 +13216,10,31,8,0.0 +13216,31,12.5,45,0.0 +13216,44,19.45,40,0.0 +13216,74,10,41,0.0 +13216,75,7.75,25,0.0 +13216,47,9.5,2,0.0 +13216,23,9,16,0.0 +13216,4,22,2,0.0 +13216,57,19.5,26,0.0 +13216,65,21.05,29,0.0 +13216,66,17,36,0.0 +13216,37,26,41,0.0 +13216,55,24,50,0.0 +13216,27,43.9,8,0.0 +13216,41,9.65,21,0.0 +13216,48,12.75,29,0.0 +13216,18,62.5,26,0.0 +13216,61,28.5,13,0.0 +13216,6,25,29,0.0 +13216,12,38,48,0.0 +13216,1,18,32,0.0 +13216,34,14,34,0.0 +13216,35,18,26,0.0 +13216,64,33.25,7,0.0 +13216,32,32,22,0.0 +13216,20,81,50,0.0 +13216,33,2.5,37,0.0 +13216,73,15,21,0.0 +13216,19,9.2,10,0.0 +13216,63,43.9,9,0.0 +13216,21,10,9,0.0 +13216,13,6,19,0.0 +13216,56,38,44,0.0 +13216,14,23.25,47,0.0 +13216,3,10,24,0.0 +13216,22,21,34,0.0 +13216,11,21,14,0.0 +13216,68,12.5,46,0.0 +13216,51,53,25,0.0 +13216,5,21.35,8,0.0 +13216,53,32.8,49,0.0 +13216,52,7,25,0.0 +13216,7,30,22,0.0 +13216,69,36,14,0.0 +13216,2,19,47,0.0 +13216,29,123.79,19,0.0 +13216,39,18,34,0.0 +13216,43,46,23,0.0 +13217,71,21.5,27,0.0 +13217,49,20,12,0.0 +13217,57,19.5,41,0.0 +13217,29,123.79,29,0.0 +13217,36,19,37,0.0 +13217,61,28.5,43,0.0 +13217,66,17,27,0.0 +13217,18,62.5,13,0.0 +13217,37,26,42,0.0 +13217,21,10,34,0.0 +13217,34,14,46,0.0 +13217,16,17.45,18,0.0 +13217,11,21,43,0.0 +13217,52,7,47,0.0 +13217,2,19,46,0.0 +13217,7,30,31,0.0 +13217,6,25,50,0.0 +13217,14,23.25,3,0.0 +13218,22,21,4,0.0 +13218,53,32.8,5,0.0 +13218,10,31,16,0.0 +13218,74,10,30,0.0 +13218,16,17.45,41,0.0 +13218,26,31.23,27,0.0 +13218,21,10,16,0.0 +13218,28,45.6,44,0.0 +13218,62,49.3,39,0.0 +13218,71,21.5,7,0.0 +13218,36,19,18,0.0 +13218,45,9.5,42,0.0 +13218,33,2.5,47,0.0 +13218,40,18.4,27,0.0 +13218,41,9.65,19,0.0 +13218,20,81,2,0.0 +13218,48,12.75,14,0.0 +13218,3,10,19,0.0 +13218,42,14,46,0.0 +13218,50,16.25,46,0.0 +13218,76,18,50,0.0 +13218,72,34.8,22,0.0 +13218,49,20,37,0.0 +13218,56,38,30,0.0 +13218,77,13,38,0.0 +13219,74,10,35,0.0 +13219,58,13.25,13,0.0 +13219,67,14,24,0.0 +13219,59,55,33,0.0 +13219,60,34,46,0.0 +13219,72,34.8,2,0.0 +13219,15,15.5,28,0.0 +13219,8,40,15,0.0 +13219,5,21.35,23,0.0 +13219,20,81,16,0.0 +13220,17,39,35,0.0 +13220,46,12,5,0.0 +13220,70,15,17,0.0 +13221,56,38,1,0.0 +13221,13,6,1,0.0 +13221,62,49.3,16,0.0 +13221,52,7,19,0.0 +13221,43,46,32,0.0 +13221,32,32,38,0.0 +13221,9,97,50,0.0 +13221,50,16.25,17,0.0 +13221,70,15,2,0.0 +13221,23,9,24,0.0 +13221,33,2.5,12,0.0 +13221,6,25,23,0.0 +13221,1,18,25,0.0 +13221,16,17.45,35,0.0 +13222,56,38,18,0.0 +13222,47,9.5,40,0.0 +13222,42,14,27,0.0 +13222,51,53,23,0.0 +13222,4,22,25,0.0 +13222,66,17,42,0.0 +13222,34,14,32,0.0 +13222,37,26,2,0.0 +13222,40,18.4,36,0.0 +13222,49,20,8,0.0 +13222,53,32.8,41,0.0 +13222,23,9,48,0.0 +13222,19,9.2,33,0.0 +13222,76,18,39,0.0 +13222,59,55,32,0.0 +13222,16,17.45,26,0.0 +13222,60,34,49,0.0 +13222,30,25.89,19,0.0 +13222,10,31,25,0.0 +13222,71,21.5,26,0.0 +13222,29,123.79,11,0.0 +13222,72,34.8,10,0.0 +13222,9,97,50,0.0 +13222,13,6,47,0.0 +13222,36,19,6,0.0 +13222,52,7,47,0.0 +13222,27,43.9,15,0.0 +13222,17,39,21,0.0 +13222,61,28.5,17,0.0 +13222,8,40,40,0.0 +13222,67,14,14,0.0 +13222,75,7.75,47,0.0 +13222,57,19.5,12,0.0 +13222,26,31.23,12,0.0 +13222,35,18,12,0.0 +13222,21,10,37,0.0 +13222,12,38,49,0.0 +13222,1,18,16,0.0 +13222,22,21,44,0.0 +13222,32,32,30,0.0 +13223,54,7.45,9,0.0 +13223,73,15,50,0.0 +13223,56,38,27,0.0 +13223,74,10,26,0.0 +13223,51,53,18,0.0 +13223,23,9,30,0.0 +13223,22,21,36,0.0 +13223,37,26,12,0.0 +13223,43,46,30,0.0 +13224,66,17,38,0.0 +13224,54,7.45,45,0.0 +13224,27,43.9,16,0.0 +13224,28,45.6,37,0.0 +13224,62,49.3,35,0.0 +13224,31,12.5,17,0.0 +13224,5,21.35,24,0.0 +13224,10,31,27,0.0 +13224,24,4.5,44,0.0 +13224,72,34.8,4,0.0 +13224,69,36,31,0.0 +13224,15,15.5,19,0.0 +13224,8,40,36,0.0 +13224,61,28.5,28,0.0 +13224,1,18,16,0.0 +13224,34,14,22,0.0 +13224,77,13,35,0.0 +13224,49,20,30,0.0 +13224,75,7.75,19,0.0 +13224,48,12.75,49,0.0 +13224,50,16.25,21,0.0 +13224,21,10,2,0.0 +13224,12,38,25,0.0 +13224,65,21.05,29,0.0 +13224,20,81,4,0.0 +13224,40,18.4,47,0.0 +13224,2,19,49,0.0 +13224,35,18,26,0.0 +13224,56,38,17,0.0 +13224,55,24,27,0.0 +13224,70,15,29,0.0 +13224,33,2.5,44,0.0 +13224,41,9.65,2,0.0 +13224,64,33.25,7,0.0 +13224,45,9.5,42,0.0 +13224,37,26,5,0.0 +13224,32,32,37,0.0 +13224,46,12,37,0.0 +13224,74,10,49,0.0 +13224,68,12.5,49,0.0 +13224,4,22,12,0.0 +13224,9,97,11,0.0 +13224,18,62.5,38,0.0 +13224,47,9.5,49,0.0 +13224,26,31.23,31,0.0 +13224,57,19.5,39,0.0 +13224,38,263.5,40,0.0 +13224,11,21,16,0.0 +13224,53,32.8,35,0.0 +13224,23,9,11,0.0 +13224,42,14,3,0.0 +13224,58,13.25,50,0.0 +13224,7,30,10,0.0 +13224,43,46,17,0.0 +13224,60,34,15,0.0 +13224,6,25,42,0.0 +13224,39,18,7,0.0 +13224,44,19.45,49,0.0 +13224,14,23.25,22,0.0 +13224,36,19,27,0.0 +13224,76,18,24,0.0 +13224,73,15,24,0.0 +13224,67,14,37,0.0 +13224,16,17.45,13,0.0 +13224,13,6,8,0.0 +13224,22,21,15,0.0 +13224,17,39,9,0.0 +13225,66,17,49,0.0 +13225,41,9.65,45,0.0 +13225,68,12.5,45,0.0 +13225,42,14,50,0.0 +13225,63,43.9,13,0.0 +13225,56,38,42,0.0 +13225,60,34,48,0.0 +13225,48,12.75,44,0.0 +13225,17,39,29,0.0 +13225,43,46,32,0.0 +13225,65,21.05,1,0.0 +13225,58,13.25,33,0.0 +13225,55,24,26,0.0 +13225,8,40,15,0.0 +13225,38,263.5,31,0.0 +13225,14,23.25,22,0.0 +13225,18,62.5,46,0.0 +13225,72,34.8,30,0.0 +13225,62,49.3,33,0.0 +13225,31,12.5,32,0.0 +13225,37,26,25,0.0 +13225,30,25.89,32,0.0 +13225,27,43.9,34,0.0 +13225,76,18,1,0.0 +13225,50,16.25,2,0.0 +13226,63,43.9,27,0.0 +13226,12,38,19,0.0 +13226,66,17,35,0.0 +13226,3,10,14,0.0 +13226,28,45.6,39,0.0 +13226,71,21.5,42,0.0 +13226,11,21,20,0.0 +13226,58,13.25,33,0.0 +13226,51,53,40,0.0 +13226,77,13,41,0.0 +13226,47,9.5,46,0.0 +13226,64,33.25,48,0.0 +13226,55,24,48,0.0 +13226,21,10,5,0.0 +13226,1,18,2,0.0 +13226,15,15.5,13,0.0 +13226,16,17.45,20,0.0 +13226,31,12.5,20,0.0 +13226,6,25,18,0.0 +13226,27,43.9,15,0.0 +13226,65,21.05,35,0.0 +13226,5,21.35,39,0.0 +13226,56,38,17,0.0 +13226,48,12.75,15,0.0 +13226,33,2.5,31,0.0 +13226,20,81,41,0.0 +13226,4,22,34,0.0 +13226,61,28.5,40,0.0 +13226,75,7.75,1,0.0 +13226,42,14,23,0.0 +13226,34,14,4,0.0 +13226,62,49.3,13,0.0 +13226,76,18,2,0.0 +13226,32,32,22,0.0 +13226,44,19.45,11,0.0 +13226,46,12,13,0.0 +13226,36,19,19,0.0 +13226,29,123.79,44,0.0 +13226,60,34,44,0.0 +13226,30,25.89,6,0.0 +13226,7,30,21,0.0 +13226,49,20,24,0.0 +13226,13,6,17,0.0 +13226,22,21,9,0.0 +13226,52,7,45,0.0 +13226,45,9.5,3,0.0 +13226,17,39,30,0.0 +13226,25,14,2,0.0 +13227,27,43.9,33,0.0 +13227,60,34,4,0.0 +13227,58,13.25,32,0.0 +13227,64,33.25,8,0.0 +13227,61,28.5,35,0.0 +13227,20,81,2,0.0 +13228,1,18,29,0.0 +13228,19,9.2,7,0.0 +13228,68,12.5,6,0.0 +13228,39,18,2,0.0 +13228,71,21.5,1,0.0 +13228,24,4.5,16,0.0 +13228,66,17,10,0.0 +13228,9,97,33,0.0 +13228,17,39,47,0.0 +13228,11,21,41,0.0 +13228,45,9.5,41,0.0 +13228,57,19.5,40,0.0 +13228,13,6,21,0.0 +13228,41,9.65,47,0.0 +13228,2,19,6,0.0 +13228,10,31,22,0.0 +13228,16,17.45,41,0.0 +13228,51,53,38,0.0 +13228,52,7,3,0.0 +13228,62,49.3,15,0.0 +13228,42,14,23,0.0 +13228,35,18,26,0.0 +13228,77,13,4,0.0 +13228,21,10,2,0.0 +13228,32,32,20,0.0 +13228,23,9,20,0.0 +13228,73,15,21,0.0 +13228,12,38,19,0.0 +13228,4,22,44,0.0 +13228,34,14,15,0.0 +13228,46,12,21,0.0 +13228,25,14,28,0.0 +13228,40,18.4,20,0.0 +13228,8,40,30,0.0 +13228,20,81,13,0.0 +13228,22,21,26,0.0 +13228,3,10,2,0.0 +13228,55,24,43,0.0 +13228,7,30,42,0.0 +13228,5,21.35,31,0.0 +13228,15,15.5,29,0.0 +13228,72,34.8,14,0.0 +13228,67,14,40,0.0 +13228,44,19.45,50,0.0 +13228,74,10,41,0.0 +13228,31,12.5,17,0.0 +13228,6,25,22,0.0 +13228,27,43.9,19,0.0 +13228,64,33.25,5,0.0 +13228,75,7.75,22,0.0 +13228,26,31.23,7,0.0 +13228,54,7.45,44,0.0 +13228,61,28.5,35,0.0 +13228,29,123.79,18,0.0 +13229,68,12.5,19,0.0 +13229,18,62.5,27,0.0 +13229,51,53,30,0.0 +13229,1,18,31,0.0 +13229,6,25,12,0.0 +13229,60,34,13,0.0 +13229,61,28.5,3,0.0 +13229,54,7.45,8,0.0 +13229,56,38,2,0.0 +13229,37,26,24,0.0 +13229,2,19,38,0.0 +13229,55,24,43,0.0 +13229,19,9.2,18,0.0 +13229,23,9,7,0.0 +13229,12,38,22,0.0 +13229,59,55,9,0.0 +13229,74,10,42,0.0 +13229,10,31,5,0.0 +13229,64,33.25,2,0.0 +13229,39,18,9,0.0 +13229,47,9.5,50,0.0 +13229,7,30,48,0.0 +13229,49,20,30,0.0 +13229,41,9.65,1,0.0 +13229,67,14,14,0.0 +13229,46,12,47,0.0 +13229,42,14,1,0.0 +13229,8,40,38,0.0 +13229,9,97,14,0.0 +13229,22,21,35,0.0 +13229,63,43.9,32,0.0 +13229,48,12.75,25,0.0 +13229,31,12.5,19,0.0 +13229,5,21.35,31,0.0 +13229,50,16.25,32,0.0 +13229,66,17,4,0.0 +13229,40,18.4,35,0.0 +13229,73,15,50,0.0 +13229,16,17.45,3,0.0 +13229,65,21.05,32,0.0 +13229,32,32,11,0.0 +13229,11,21,41,0.0 +13229,30,25.89,10,0.0 +13229,77,13,6,0.0 +13229,57,19.5,20,0.0 +13229,69,36,35,0.0 +13229,70,15,47,0.0 +13229,43,46,48,0.0 +13229,4,22,22,0.0 +13229,52,7,5,0.0 +13229,38,263.5,32,0.0 +13229,53,32.8,35,0.0 +13229,26,31.23,31,0.0 +13229,44,19.45,32,0.0 +13229,24,4.5,41,0.0 +13229,33,2.5,32,0.0 +13229,25,14,4,0.0 +13229,75,7.75,8,0.0 +13229,36,19,26,0.0 +13229,29,123.79,29,0.0 +13229,72,34.8,1,0.0 +13229,14,23.25,25,0.0 +13229,20,81,42,0.0 +13229,62,49.3,12,0.0 +13229,21,10,36,0.0 +13229,27,43.9,27,0.0 +13229,58,13.25,42,0.0 +13229,34,14,15,0.0 +13229,15,15.5,39,0.0 +13229,71,21.5,19,0.0 +13229,45,9.5,10,0.0 +13229,17,39,5,0.0 +13229,3,10,31,0.0 +13229,35,18,42,0.0 +13229,76,18,11,0.0 +13229,28,45.6,14,0.0 +13230,17,39,45,0.0 +13230,1,18,28,0.0 +13230,31,12.5,29,0.0 +13230,71,21.5,8,0.0 +13230,27,43.9,15,0.0 +13230,6,25,26,0.0 +13230,19,9.2,1,0.0 +13230,58,13.25,22,0.0 +13230,49,20,9,0.0 +13230,43,46,42,0.0 +13230,10,31,27,0.0 +13230,29,123.79,9,0.0 +13230,37,26,3,0.0 +13230,26,31.23,12,0.0 +13230,42,14,6,0.0 +13230,39,18,33,0.0 +13231,68,12.5,9,0.0 +13231,67,14,28,0.0 +13231,18,62.5,16,0.0 +13231,75,7.75,24,0.0 +13231,7,30,9,0.0 +13231,69,36,11,0.0 +13231,9,97,35,0.0 +13231,64,33.25,18,0.0 +13231,66,17,37,0.0 +13231,76,18,26,0.0 +13231,50,16.25,47,0.0 +13231,33,2.5,45,0.0 +13231,39,18,43,0.0 +13231,36,19,16,0.0 +13231,26,31.23,31,0.0 +13231,45,9.5,5,0.0 +13231,46,12,27,0.0 +13231,3,10,28,0.0 +13231,37,26,15,0.0 +13231,21,10,15,0.0 +13231,20,81,50,0.0 +13231,42,14,32,0.0 +13232,29,123.79,7,0.0 +13232,68,12.5,37,0.0 +13232,62,49.3,8,0.0 +13232,41,9.65,13,0.0 +13232,38,263.5,19,0.0 +13232,1,18,9,0.0 +13232,69,36,34,0.0 +13232,59,55,47,0.0 +13232,5,21.35,46,0.0 +13232,33,2.5,21,0.0 +13232,75,7.75,17,0.0 +13232,67,14,14,0.0 +13232,26,31.23,38,0.0 +13232,49,20,39,0.0 +13232,34,14,2,0.0 +13232,13,6,27,0.0 +13232,14,23.25,4,0.0 +13232,61,28.5,25,0.0 +13232,22,21,36,0.0 +13232,6,25,21,0.0 +13233,37,26,9,0.0 +13233,48,12.75,30,0.0 +13233,25,14,16,0.0 +13233,44,19.45,44,0.0 +13233,2,19,4,0.0 +13233,20,81,42,0.0 +13233,40,18.4,31,0.0 +13233,69,36,8,0.0 +13233,65,21.05,11,0.0 +13233,8,40,43,0.0 +13233,1,18,48,0.0 +13233,30,25.89,49,0.0 +13233,19,9.2,32,0.0 +13233,47,9.5,28,0.0 +13233,21,10,33,0.0 +13233,7,30,44,0.0 +13233,41,9.65,9,0.0 +13233,75,7.75,15,0.0 +13233,13,6,50,0.0 +13233,66,17,34,0.0 +13233,43,46,8,0.0 +13233,17,39,4,0.0 +13233,58,13.25,47,0.0 +13233,49,20,23,0.0 +13233,36,19,38,0.0 +13233,55,24,28,0.0 +13234,37,26,48,0.0 +13234,17,39,13,0.0 +13234,50,16.25,20,0.0 +13234,23,9,43,0.0 +13234,68,12.5,39,0.0 +13234,24,4.5,10,0.0 +13234,58,13.25,35,0.0 +13234,76,18,24,0.0 +13234,22,21,48,0.0 +13234,14,23.25,48,0.0 +13234,5,21.35,44,0.0 +13234,20,81,16,0.0 +13234,9,97,44,0.0 +13234,43,46,37,0.0 +13234,26,31.23,30,0.0 +13234,65,21.05,29,0.0 +13234,21,10,48,0.0 +13234,28,45.6,44,0.0 +13234,29,123.79,4,0.0 +13234,40,18.4,18,0.0 +13234,18,62.5,40,0.0 +13234,33,2.5,9,0.0 +13234,63,43.9,28,0.0 +13234,1,18,38,0.0 +13234,57,19.5,28,0.0 +13234,55,24,32,0.0 +13234,41,9.65,7,0.0 +13234,69,36,12,0.0 +13234,72,34.8,27,0.0 +13234,56,38,13,0.0 +13234,61,28.5,39,0.0 +13234,19,9.2,38,0.0 +13234,34,14,31,0.0 +13234,73,15,38,0.0 +13234,7,30,49,0.0 +13234,4,22,10,0.0 +13234,31,12.5,30,0.0 +13234,66,17,39,0.0 +13235,30,25.89,20,0.0 +13235,49,20,50,0.0 +13235,65,21.05,24,0.0 +13235,39,18,50,0.0 +13235,54,7.45,30,0.0 +13235,9,97,40,0.0 +13235,33,2.5,40,0.0 +13235,13,6,17,0.0 +13235,16,17.45,2,0.0 +13235,72,34.8,48,0.0 +13235,57,19.5,1,0.0 +13235,31,12.5,29,0.0 +13235,7,30,40,0.0 +13235,46,12,12,0.0 +13235,58,13.25,31,0.0 +13235,28,45.6,9,0.0 +13235,6,25,13,0.0 +13235,21,10,15,0.0 +13235,18,62.5,36,0.0 +13235,48,12.75,45,0.0 +13235,2,19,38,0.0 +13235,38,263.5,20,0.0 +13235,3,10,22,0.0 +13235,41,9.65,4,0.0 +13235,5,21.35,8,0.0 +13235,51,53,12,0.0 +13235,19,9.2,8,0.0 +13235,1,18,22,0.0 +13235,10,31,42,0.0 +13235,36,19,9,0.0 +13235,25,14,26,0.0 +13235,52,7,3,0.0 +13235,42,14,50,0.0 +13235,37,26,30,0.0 +13235,8,40,30,0.0 +13235,17,39,38,0.0 +13235,35,18,46,0.0 +13235,59,55,12,0.0 +13235,34,14,21,0.0 +13235,76,18,21,0.0 +13235,73,15,31,0.0 +13235,60,34,43,0.0 +13235,22,21,15,0.0 +13235,4,22,14,0.0 +13235,63,43.9,48,0.0 +13235,66,17,42,0.0 +13235,45,9.5,6,0.0 +13235,47,9.5,27,0.0 +13235,43,46,27,0.0 +13235,29,123.79,37,0.0 +13235,62,49.3,33,0.0 +13235,26,31.23,44,0.0 +13235,69,36,16,0.0 +13235,24,4.5,28,0.0 +13235,55,24,41,0.0 +13235,68,12.5,27,0.0 +13235,56,38,10,0.0 +13235,23,9,48,0.0 +13235,15,15.5,29,0.0 +13235,11,21,14,0.0 +13235,67,14,31,0.0 +13235,64,33.25,35,0.0 +13235,27,43.9,1,0.0 +13235,50,16.25,3,0.0 +13236,39,18,22,0.0 +13236,73,15,43,0.0 +13236,9,97,29,0.0 +13236,29,123.79,17,0.0 +13236,47,9.5,8,0.0 +13236,57,19.5,3,0.0 +13236,51,53,50,0.0 +13236,77,13,48,0.0 +13236,21,10,18,0.0 +13236,72,34.8,43,0.0 +13236,27,43.9,22,0.0 +13236,56,38,32,0.0 +13236,68,12.5,10,0.0 +13236,23,9,32,0.0 +13236,43,46,35,0.0 +13236,44,19.45,45,0.0 +13236,45,9.5,38,0.0 +13236,34,14,44,0.0 +13236,75,7.75,17,0.0 +13236,31,12.5,25,0.0 +13236,64,33.25,4,0.0 +13236,48,12.75,4,0.0 +13236,3,10,5,0.0 +13237,42,14,14,0.0 +13237,7,30,18,0.0 +13237,11,21,14,0.0 +13237,16,17.45,17,0.0 +13237,23,9,38,0.0 +13237,75,7.75,31,0.0 +13237,25,14,34,0.0 +13237,37,26,13,0.0 +13237,51,53,8,0.0 +13237,29,123.79,42,0.0 +13237,70,15,15,0.0 +13237,34,14,30,0.0 +13237,64,33.25,5,0.0 +13237,45,9.5,17,0.0 +13237,58,13.25,19,0.0 +13237,56,38,45,0.0 +13237,44,19.45,21,0.0 +13237,57,19.5,10,0.0 +13237,35,18,38,0.0 +13237,5,21.35,8,0.0 +13237,9,97,30,0.0 +13237,24,4.5,22,0.0 +13237,60,34,6,0.0 +13237,63,43.9,47,0.0 +13237,66,17,27,0.0 +13237,73,15,22,0.0 +13237,76,18,28,0.0 +13237,4,22,36,0.0 +13237,74,10,26,0.0 +13237,22,21,7,0.0 +13237,2,19,20,0.0 +13237,52,7,7,0.0 +13237,10,31,25,0.0 +13237,40,18.4,12,0.0 +13237,8,40,25,0.0 +13237,38,263.5,19,0.0 +13238,25,14,16,0.0 +13238,22,21,45,0.0 +13238,44,19.45,45,0.0 +13238,64,33.25,27,0.0 +13238,31,12.5,47,0.0 +13238,46,12,29,0.0 +13238,23,9,48,0.0 +13238,65,21.05,12,0.0 +13238,36,19,8,0.0 +13238,17,39,43,0.0 +13238,29,123.79,5,0.0 +13238,55,24,2,0.0 +13238,34,14,19,0.0 +13238,7,30,8,0.0 +13238,9,97,11,0.0 +13238,63,43.9,9,0.0 +13238,70,15,37,0.0 +13238,15,15.5,46,0.0 +13238,12,38,2,0.0 +13238,45,9.5,37,0.0 +13238,50,16.25,45,0.0 +13238,28,45.6,34,0.0 +13238,67,14,26,0.0 +13238,69,36,21,0.0 +13238,76,18,20,0.0 +13238,5,21.35,16,0.0 +13238,14,23.25,46,0.0 +13238,71,21.5,29,0.0 +13238,52,7,1,0.0 +13238,49,20,37,0.0 +13238,4,22,33,0.0 +13238,43,46,9,0.0 +13238,8,40,27,0.0 +13238,26,31.23,39,0.0 +13238,19,9.2,7,0.0 +13238,77,13,23,0.0 +13238,18,62.5,6,0.0 +13238,40,18.4,41,0.0 +13238,38,263.5,19,0.0 +13238,72,34.8,48,0.0 +13238,2,19,47,0.0 +13238,21,10,36,0.0 +13238,75,7.75,35,0.0 +13238,33,2.5,25,0.0 +13238,16,17.45,38,0.0 +13238,24,4.5,16,0.0 +13238,35,18,42,0.0 +13238,51,53,40,0.0 +13238,62,49.3,15,0.0 +13238,74,10,26,0.0 +13238,48,12.75,23,0.0 +13238,58,13.25,18,0.0 +13238,6,25,45,0.0 +13239,59,55,9,0.0 +13239,77,13,18,0.0 +13239,37,26,32,0.0 +13239,57,19.5,41,0.0 +13239,55,24,49,0.0 +13239,47,9.5,42,0.0 +13239,39,18,40,0.0 +13239,17,39,12,0.0 +13239,13,6,2,0.0 +13239,43,46,18,0.0 +13239,29,123.79,31,0.0 +13239,44,19.45,38,0.0 +13239,56,38,4,0.0 +13239,9,97,21,0.0 +13239,76,18,35,0.0 +13239,31,12.5,19,0.0 +13239,15,15.5,14,0.0 +13239,73,15,22,0.0 +13239,8,40,18,0.0 +13239,12,38,37,0.0 +13239,72,34.8,17,0.0 +13239,24,4.5,44,0.0 +13239,20,81,18,0.0 +13239,75,7.75,32,0.0 +13239,25,14,6,0.0 +13239,22,21,17,0.0 +13239,1,18,44,0.0 +13239,32,32,22,0.0 +13239,65,21.05,14,0.0 +13239,10,31,27,0.0 +13239,66,17,7,0.0 +13239,14,23.25,19,0.0 +13239,48,12.75,27,0.0 +13239,41,9.65,29,0.0 +13239,6,25,48,0.0 +13239,51,53,6,0.0 +13239,38,263.5,43,0.0 +13239,71,21.5,36,0.0 +13239,60,34,32,0.0 +13239,23,9,10,0.0 +13239,30,25.89,33,0.0 +13239,34,14,37,0.0 +13239,63,43.9,33,0.0 +13239,4,22,17,0.0 +13239,18,62.5,39,0.0 +13239,67,14,34,0.0 +13239,70,15,16,0.0 +13239,54,7.45,2,0.0 +13239,50,16.25,18,0.0 +13239,74,10,43,0.0 +13239,62,49.3,31,0.0 +13239,27,43.9,46,0.0 +13239,52,7,41,0.0 +13240,51,53,23,0.0 +13240,76,18,19,0.0 +13240,35,18,13,0.0 +13240,16,17.45,40,0.0 +13240,21,10,20,0.0 +13240,59,55,16,0.0 +13240,25,14,16,0.0 +13240,53,32.8,3,0.0 +13240,30,25.89,12,0.0 +13240,57,19.5,44,0.0 +13240,34,14,45,0.0 +13241,31,12.5,41,0.0 +13241,10,31,19,0.0 +13241,69,36,4,0.0 +13241,55,24,4,0.0 +13241,70,15,1,0.0 +13241,39,18,33,0.0 +13241,32,32,35,0.0 +13241,61,28.5,17,0.0 +13241,60,34,34,0.0 +13241,67,14,29,0.0 +13241,13,6,5,0.0 +13241,72,34.8,24,0.0 +13241,68,12.5,45,0.0 +13241,3,10,23,0.0 +13241,4,22,6,0.0 +13241,45,9.5,9,0.0 +13241,25,14,27,0.0 +13241,59,55,48,0.0 +13241,7,30,19,0.0 +13241,38,263.5,9,0.0 +13241,23,9,34,0.0 +13241,71,21.5,35,0.0 +13242,18,62.5,30,0.0 +13242,15,15.5,3,0.0 +13242,77,13,28,0.0 +13242,7,30,38,0.0 +13242,31,12.5,26,0.0 +13242,74,10,14,0.0 +13242,28,45.6,46,0.0 +13242,52,7,31,0.0 +13242,45,9.5,14,0.0 +13243,52,7,3,0.0 +13243,33,2.5,16,0.0 +13243,24,4.5,35,0.0 +13243,59,55,38,0.0 +13243,11,21,1,0.0 +13243,36,19,43,0.0 +13243,77,13,27,0.0 +13243,37,26,30,0.0 +13243,7,30,36,0.0 +13243,12,38,41,0.0 +13243,46,12,36,0.0 +13243,73,15,15,0.0 +13243,68,12.5,36,0.0 +13243,9,97,27,0.0 +13244,46,12,31,0.0 +13244,69,36,33,0.0 +13244,39,18,20,0.0 +13244,20,81,41,0.0 +13244,51,53,29,0.0 +13244,67,14,26,0.0 +13244,42,14,14,0.0 +13244,66,17,45,0.0 +13244,13,6,17,0.0 +13244,75,7.75,42,0.0 +13244,60,34,10,0.0 +13244,59,55,10,0.0 +13244,38,263.5,25,0.0 +13244,22,21,28,0.0 +13244,2,19,20,0.0 +13244,17,39,34,0.0 +13244,54,7.45,44,0.0 +13244,41,9.65,32,0.0 +13244,47,9.5,14,0.0 +13244,1,18,28,0.0 +13244,8,40,21,0.0 +13244,26,31.23,3,0.0 +13244,35,18,19,0.0 +13244,43,46,25,0.0 +13244,28,45.6,22,0.0 +13244,52,7,25,0.0 +13244,56,38,31,0.0 +13244,31,12.5,41,0.0 +13244,77,13,42,0.0 +13244,36,19,45,0.0 +13244,25,14,50,0.0 +13244,15,15.5,2,0.0 +13244,33,2.5,21,0.0 +13244,11,21,41,0.0 +13244,68,12.5,20,0.0 +13244,63,43.9,8,0.0 +13244,10,31,10,0.0 +13244,7,30,3,0.0 +13244,62,49.3,18,0.0 +13244,16,17.45,9,0.0 +13244,70,15,7,0.0 +13244,18,62.5,27,0.0 +13244,61,28.5,36,0.0 +13244,74,10,23,0.0 +13244,23,9,30,0.0 +13244,29,123.79,19,0.0 +13244,32,32,6,0.0 +13244,49,20,21,0.0 +13244,45,9.5,15,0.0 +13244,9,97,31,0.0 +13244,71,21.5,20,0.0 +13245,36,19,43,0.0 +13245,46,12,3,0.0 +13245,43,46,36,0.0 +13245,69,36,43,0.0 +13245,76,18,1,0.0 +13245,60,34,26,0.0 +13245,72,34.8,34,0.0 +13245,53,32.8,19,0.0 +13245,58,13.25,41,0.0 +13245,66,17,16,0.0 +13245,77,13,29,0.0 +13245,63,43.9,13,0.0 +13245,57,19.5,24,0.0 +13245,10,31,3,0.0 +13245,50,16.25,23,0.0 +13245,70,15,23,0.0 +13245,2,19,32,0.0 +13245,18,62.5,17,0.0 +13245,49,20,26,0.0 +13245,64,33.25,47,0.0 +13245,24,4.5,21,0.0 +13245,19,9.2,16,0.0 +13245,47,9.5,29,0.0 +13245,32,32,18,0.0 +13245,33,2.5,32,0.0 +13245,37,26,26,0.0 +13245,23,9,37,0.0 +13245,8,40,26,0.0 +13245,54,7.45,49,0.0 +13246,60,34,15,0.0 +13246,11,21,33,0.0 +13246,23,9,15,0.0 +13246,33,2.5,32,0.0 +13246,68,12.5,44,0.0 +13246,2,19,36,0.0 +13246,72,34.8,17,0.0 +13246,17,39,41,0.0 +13246,25,14,11,0.0 +13246,19,9.2,32,0.0 +13246,39,18,39,0.0 +13246,43,46,48,0.0 +13246,37,26,43,0.0 +13246,65,21.05,20,0.0 +13246,8,40,43,0.0 +13246,50,16.25,46,0.0 +13246,40,18.4,7,0.0 +13246,76,18,37,0.0 +13246,35,18,6,0.0 +13246,45,9.5,2,0.0 +13246,6,25,43,0.0 +13246,28,45.6,30,0.0 +13246,15,15.5,32,0.0 +13246,1,18,43,0.0 +13246,46,12,7,0.0 +13246,31,12.5,26,0.0 +13246,32,32,35,0.0 +13246,74,10,15,0.0 +13246,56,38,48,0.0 +13246,21,10,27,0.0 +13246,26,31.23,7,0.0 +13246,61,28.5,30,0.0 +13246,14,23.25,29,0.0 +13246,59,55,46,0.0 +13247,49,20,47,0.0 +13247,1,18,23,0.0 +13247,43,46,13,0.0 +13247,8,40,27,0.0 +13247,23,9,39,0.0 +13247,15,15.5,49,0.0 +13247,7,30,15,0.0 +13247,42,14,16,0.0 +13247,77,13,3,0.0 +13247,13,6,37,0.0 +13247,14,23.25,3,0.0 +13247,25,14,12,0.0 +13247,11,21,10,0.0 +13247,71,21.5,38,0.0 +13247,28,45.6,23,0.0 +13247,24,4.5,31,0.0 +13247,12,38,30,0.0 +13247,26,31.23,26,0.0 +13247,29,123.79,30,0.0 +13247,21,10,27,0.0 +13247,56,38,29,0.0 +13247,65,21.05,36,0.0 +13247,67,14,42,0.0 +13247,27,43.9,38,0.0 +13247,39,18,10,0.0 +13247,44,19.45,38,0.0 +13247,70,15,40,0.0 +13247,37,26,10,0.0 +13247,57,19.5,41,0.0 +13247,32,32,7,0.0 +13247,53,32.8,47,0.0 +13247,74,10,14,0.0 +13247,35,18,22,0.0 +13247,69,36,16,0.0 +13247,10,31,17,0.0 +13247,22,21,45,0.0 +13247,17,39,8,0.0 +13247,19,9.2,32,0.0 +13247,20,81,9,0.0 +13247,62,49.3,16,0.0 +13247,73,15,30,0.0 +13247,48,12.75,27,0.0 +13247,9,97,31,0.0 +13247,2,19,46,0.0 +13247,36,19,37,0.0 +13247,34,14,9,0.0 +13248,32,32,40,0.0 +13248,8,40,45,0.0 +13248,75,7.75,49,0.0 +13248,60,34,16,0.0 +13248,9,97,37,0.0 +13248,47,9.5,25,0.0 +13248,31,12.5,17,0.0 +13248,27,43.9,46,0.0 +13248,35,18,21,0.0 +13248,25,14,32,0.0 +13248,63,43.9,49,0.0 +13248,12,38,21,0.0 +13248,23,9,41,0.0 +13248,24,4.5,45,0.0 +13248,29,123.79,20,0.0 +13248,66,17,15,0.0 +13248,54,7.45,30,0.0 +13248,46,12,20,0.0 +13248,43,46,30,0.0 +13248,30,25.89,4,0.0 +13248,69,36,5,0.0 +13248,22,21,16,0.0 +13248,65,21.05,23,0.0 +13248,5,21.35,42,0.0 +13248,45,9.5,45,0.0 +13248,10,31,48,0.0 +13248,56,38,26,0.0 +13248,39,18,28,0.0 +13248,28,45.6,25,0.0 +13248,6,25,13,0.0 +13249,6,25,38,0.0 +13249,3,10,18,0.0 +13249,25,14,12,0.0 +13249,50,16.25,44,0.0 +13249,66,17,35,0.0 +13249,40,18.4,41,0.0 +13249,55,24,31,0.0 +13249,58,13.25,6,0.0 +13249,33,2.5,28,0.0 +13249,36,19,40,0.0 +13249,37,26,15,0.0 +13249,60,34,34,0.0 +13249,17,39,8,0.0 +13249,39,18,24,0.0 +13249,18,62.5,15,0.0 +13249,9,97,24,0.0 +13249,53,32.8,36,0.0 +13249,4,22,13,0.0 +13249,16,17.45,10,0.0 +13249,41,9.65,36,0.0 +13249,35,18,38,0.0 +13249,48,12.75,27,0.0 +13249,38,263.5,19,0.0 +13249,77,13,1,0.0 +13249,21,10,28,0.0 +13249,10,31,38,0.0 +13249,70,15,38,0.0 +13249,65,21.05,3,0.0 +13249,69,36,9,0.0 +13249,5,21.35,19,0.0 +13249,11,21,26,0.0 +13249,49,20,45,0.0 +13249,43,46,27,0.0 +13249,20,81,9,0.0 +13249,68,12.5,47,0.0 +13249,71,21.5,30,0.0 +13249,15,15.5,22,0.0 +13249,19,9.2,35,0.0 +13249,1,18,47,0.0 +13249,31,12.5,35,0.0 +13249,29,123.79,13,0.0 +13249,72,34.8,50,0.0 +13249,51,53,3,0.0 +13249,74,10,43,0.0 +13249,76,18,7,0.0 +13249,47,9.5,29,0.0 +13250,74,10,26,0.0 +13250,62,49.3,6,0.0 +13250,64,33.25,7,0.0 +13250,22,21,24,0.0 +13250,5,21.35,15,0.0 +13250,49,20,49,0.0 +13250,60,34,41,0.0 +13250,7,30,36,0.0 +13250,47,9.5,39,0.0 +13250,48,12.75,8,0.0 +13250,20,81,39,0.0 +13250,8,40,48,0.0 +13250,43,46,31,0.0 +13250,58,13.25,28,0.0 +13250,27,43.9,48,0.0 +13250,28,45.6,11,0.0 +13250,6,25,2,0.0 +13250,23,9,3,0.0 +13250,61,28.5,9,0.0 +13250,9,97,26,0.0 +13250,53,32.8,40,0.0 +13250,1,18,24,0.0 +13250,11,21,1,0.0 +13250,44,19.45,22,0.0 +13250,37,26,17,0.0 +13250,67,14,4,0.0 +13250,2,19,1,0.0 +13250,51,53,3,0.0 +13250,31,12.5,34,0.0 +13250,66,17,8,0.0 +13250,16,17.45,30,0.0 +13250,50,16.25,29,0.0 +13250,76,18,28,0.0 +13250,59,55,32,0.0 +13250,25,14,29,0.0 +13250,12,38,47,0.0 +13250,14,23.25,3,0.0 +13250,10,31,47,0.0 +13250,55,24,34,0.0 +13250,33,2.5,41,0.0 +13250,34,14,27,0.0 +13250,36,19,12,0.0 +13250,30,25.89,23,0.0 +13250,46,12,19,0.0 +13250,41,9.65,39,0.0 +13250,70,15,12,0.0 +13250,17,39,34,0.0 +13250,3,10,14,0.0 +13250,42,14,10,0.0 +13250,19,9.2,44,0.0 +13250,29,123.79,12,0.0 +13250,4,22,42,0.0 +13250,24,4.5,29,0.0 +13250,13,6,16,0.0 +13250,77,13,29,0.0 +13250,63,43.9,4,0.0 +13250,26,31.23,22,0.0 +13250,73,15,7,0.0 +13250,18,62.5,30,0.0 +13250,75,7.75,47,0.0 +13250,72,34.8,48,0.0 +13250,68,12.5,37,0.0 +13251,55,24,41,0.0 +13251,61,28.5,5,0.0 +13251,19,9.2,2,0.0 +13251,39,18,12,0.0 +13251,5,21.35,13,0.0 +13251,7,30,31,0.0 +13251,13,6,41,0.0 +13251,77,13,11,0.0 +13251,11,21,50,0.0 +13251,25,14,47,0.0 +13251,67,14,17,0.0 +13251,17,39,31,0.0 +13251,63,43.9,25,0.0 +13251,28,45.6,43,0.0 +13251,68,12.5,25,0.0 +13251,59,55,9,0.0 +13251,74,10,2,0.0 +13251,47,9.5,17,0.0 +13251,51,53,4,0.0 +13251,62,49.3,23,0.0 +13251,44,19.45,45,0.0 +13251,26,31.23,33,0.0 +13251,45,9.5,31,0.0 +13251,71,21.5,7,0.0 +13251,16,17.45,13,0.0 +13251,54,7.45,40,0.0 +13251,46,12,5,0.0 +13251,31,12.5,38,0.0 +13251,73,15,31,0.0 +13251,23,9,14,0.0 +13251,33,2.5,32,0.0 +13251,34,14,38,0.0 +13251,72,34.8,12,0.0 +13251,20,81,23,0.0 +13251,58,13.25,47,0.0 +13251,76,18,37,0.0 +13251,53,32.8,34,0.0 +13251,9,97,5,0.0 +13251,12,38,27,0.0 +13251,75,7.75,1,0.0 +13251,29,123.79,23,0.0 +13251,2,19,27,0.0 +13251,43,46,28,0.0 +13251,41,9.65,1,0.0 +13251,66,17,27,0.0 +13251,50,16.25,8,0.0 +13251,65,21.05,39,0.0 +13251,69,36,8,0.0 +13251,1,18,48,0.0 +13251,70,15,13,0.0 +13251,48,12.75,5,0.0 +13251,6,25,15,0.0 +13252,23,9,26,0.0 +13252,28,45.6,40,0.0 +13252,4,22,26,0.0 +13252,68,12.5,17,0.0 +13252,51,53,35,0.0 +13252,2,19,1,0.0 +13253,8,40,23,0.0 +13253,66,17,36,0.0 +13253,2,19,37,0.0 +13254,6,25,20,0.0 +13254,76,18,29,0.0 +13254,65,21.05,5,0.0 +13254,61,28.5,50,0.0 +13254,62,49.3,42,0.0 +13255,59,55,42,0.0 +13255,9,97,27,0.0 +13255,24,4.5,46,0.0 +13255,10,31,41,0.0 +13255,22,21,45,0.0 +13255,28,45.6,6,0.0 +13255,67,14,36,0.0 +13255,26,31.23,25,0.0 +13255,7,30,19,0.0 +13255,49,20,12,0.0 +13255,17,39,4,0.0 +13255,12,38,28,0.0 +13255,72,34.8,22,0.0 +13255,35,18,11,0.0 +13255,74,10,49,0.0 +13255,2,19,25,0.0 +13255,43,46,41,0.0 +13255,36,19,6,0.0 +13255,6,25,1,0.0 +13255,32,32,50,0.0 +13256,19,9.2,3,0.0 +13256,30,25.89,19,0.0 +13256,46,12,47,0.0 +13256,8,40,38,0.0 +13256,71,21.5,22,0.0 +13256,63,43.9,30,0.0 +13256,29,123.79,9,0.0 +13256,53,32.8,1,0.0 +13256,48,12.75,3,0.0 +13256,25,14,45,0.0 +13256,12,38,37,0.0 +13256,59,55,32,0.0 +13256,1,18,32,0.0 +13256,39,18,27,0.0 +13256,54,7.45,5,0.0 +13256,20,81,30,0.0 +13256,10,31,49,0.0 +13256,16,17.45,33,0.0 +13256,74,10,35,0.0 +13256,34,14,1,0.0 +13256,65,21.05,38,0.0 +13256,64,33.25,4,0.0 +13256,66,17,15,0.0 +13256,47,9.5,22,0.0 +13256,37,26,41,0.0 +13256,38,263.5,8,0.0 +13256,24,4.5,13,0.0 +13256,49,20,12,0.0 +13256,69,36,36,0.0 +13256,61,28.5,13,0.0 +13256,4,22,4,0.0 +13256,35,18,50,0.0 +13256,40,18.4,33,0.0 +13256,11,21,20,0.0 +13256,43,46,48,0.0 +13256,6,25,29,0.0 +13256,56,38,7,0.0 +13256,45,9.5,33,0.0 +13256,27,43.9,22,0.0 +13256,5,21.35,9,0.0 +13256,73,15,16,0.0 +13256,50,16.25,49,0.0 +13256,2,19,25,0.0 +13256,52,7,48,0.0 +13256,23,9,5,0.0 +13256,28,45.6,3,0.0 +13256,60,34,27,0.0 +13256,44,19.45,41,0.0 +13256,26,31.23,11,0.0 +13256,72,34.8,37,0.0 +13256,17,39,33,0.0 +13256,68,12.5,17,0.0 +13256,77,13,41,0.0 +13256,42,14,43,0.0 +13256,70,15,11,0.0 +13256,32,32,2,0.0 +13256,3,10,36,0.0 +13256,15,15.5,20,0.0 +13256,33,2.5,13,0.0 +13256,22,21,32,0.0 +13256,41,9.65,23,0.0 +13256,18,62.5,5,0.0 +13256,75,7.75,35,0.0 +13256,31,12.5,43,0.0 +13256,67,14,40,0.0 +13256,7,30,27,0.0 +13256,62,49.3,29,0.0 +13256,51,53,31,0.0 +13256,76,18,1,0.0 +13256,14,23.25,38,0.0 +13257,77,13,20,0.0 +13257,33,2.5,33,0.0 +13257,70,15,34,0.0 +13257,27,43.9,48,0.0 +13257,14,23.25,45,0.0 +13257,60,34,43,0.0 +13257,15,15.5,18,0.0 +13257,52,7,37,0.0 +13257,68,12.5,12,0.0 +13258,8,40,17,0.0 +13258,45,9.5,27,0.0 +13258,54,7.45,42,0.0 +13258,37,26,8,0.0 +13258,49,20,30,0.0 +13258,53,32.8,40,0.0 +13258,71,21.5,4,0.0 +13258,75,7.75,46,0.0 +13258,59,55,31,0.0 +13258,51,53,16,0.0 +13258,32,32,43,0.0 +13258,24,4.5,18,0.0 +13258,13,6,1,0.0 +13258,26,31.23,25,0.0 +13258,23,9,34,0.0 +13258,56,38,29,0.0 +13258,9,97,11,0.0 +13258,61,28.5,50,0.0 +13258,52,7,34,0.0 +13258,2,19,26,0.0 +13258,65,21.05,35,0.0 +13258,25,14,46,0.0 +13258,39,18,45,0.0 +13258,70,15,39,0.0 +13258,72,34.8,38,0.0 +13258,18,62.5,32,0.0 +13258,27,43.9,13,0.0 +13258,47,9.5,47,0.0 +13258,34,14,45,0.0 +13258,31,12.5,38,0.0 +13258,38,263.5,32,0.0 +13258,68,12.5,45,0.0 +13258,5,21.35,24,0.0 +13259,4,22,12,0.0 +13259,50,16.25,50,0.0 +13259,34,14,23,0.0 +13259,53,32.8,48,0.0 +13259,51,53,14,0.0 +13259,16,17.45,32,0.0 +13259,72,34.8,37,0.0 +13259,40,18.4,48,0.0 +13259,71,21.5,10,0.0 +13259,44,19.45,48,0.0 +13259,6,25,12,0.0 +13259,24,4.5,26,0.0 +13259,58,13.25,36,0.0 +13259,65,21.05,39,0.0 +13259,11,21,9,0.0 +13259,43,46,8,0.0 +13259,5,21.35,44,0.0 +13259,20,81,32,0.0 +13259,22,21,25,0.0 +13259,77,13,43,0.0 +13259,54,7.45,18,0.0 +13259,26,31.23,13,0.0 +13259,7,30,29,0.0 +13259,41,9.65,48,0.0 +13259,15,15.5,24,0.0 +13259,21,10,17,0.0 +13259,45,9.5,28,0.0 +13259,63,43.9,35,0.0 +13259,33,2.5,39,0.0 +13259,67,14,19,0.0 +13259,14,23.25,50,0.0 +13259,23,9,20,0.0 +13259,75,7.75,27,0.0 +13259,10,31,32,0.0 +13259,39,18,5,0.0 +13259,38,263.5,9,0.0 +13259,17,39,44,0.0 +13259,57,19.5,5,0.0 +13259,47,9.5,46,0.0 +13259,55,24,3,0.0 +13259,46,12,22,0.0 +13259,70,15,41,0.0 +13259,56,38,22,0.0 +13259,37,26,11,0.0 +13259,76,18,47,0.0 +13259,48,12.75,14,0.0 +13259,68,12.5,32,0.0 +13259,9,97,27,0.0 +13259,2,19,44,0.0 +13259,35,18,36,0.0 +13259,8,40,10,0.0 +13259,28,45.6,50,0.0 +13259,36,19,45,0.0 +13259,29,123.79,32,0.0 +13259,69,36,15,0.0 +13259,64,33.25,50,0.0 +13259,32,32,9,0.0 +13259,60,34,42,0.0 +13260,52,7,19,0.0 +13260,65,21.05,38,0.0 +13260,63,43.9,19,0.0 +13260,31,12.5,21,0.0 +13260,68,12.5,13,0.0 +13260,72,34.8,44,0.0 +13260,30,25.89,44,0.0 +13260,5,21.35,35,0.0 +13260,76,18,26,0.0 +13260,75,7.75,26,0.0 +13260,54,7.45,28,0.0 +13260,28,45.6,12,0.0 +13260,3,10,41,0.0 +13260,10,31,31,0.0 +13260,46,12,7,0.0 +13260,58,13.25,10,0.0 +13260,71,21.5,13,0.0 +13260,67,14,4,0.0 +13260,2,19,8,0.0 +13260,25,14,46,0.0 +13260,17,39,33,0.0 +13260,18,62.5,17,0.0 +13260,69,36,29,0.0 +13260,48,12.75,21,0.0 +13260,16,17.45,2,0.0 +13260,21,10,23,0.0 +13260,6,25,11,0.0 +13260,13,6,45,0.0 +13260,59,55,42,0.0 +13260,35,18,19,0.0 +13260,73,15,48,0.0 +13260,53,32.8,15,0.0 +13260,64,33.25,38,0.0 +13260,34,14,41,0.0 +13260,61,28.5,1,0.0 +13260,45,9.5,16,0.0 +13260,14,23.25,2,0.0 +13260,29,123.79,50,0.0 +13260,47,9.5,49,0.0 +13260,66,17,8,0.0 +13260,36,19,16,0.0 +13260,50,16.25,40,0.0 +13260,22,21,49,0.0 +13260,1,18,3,0.0 +13260,23,9,5,0.0 +13260,20,81,22,0.0 +13260,11,21,48,0.0 +13260,37,26,9,0.0 +13260,51,53,50,0.0 +13260,15,15.5,17,0.0 +13260,32,32,11,0.0 +13260,8,40,22,0.0 +13260,49,20,6,0.0 +13260,60,34,42,0.0 +13260,43,46,20,0.0 +13260,56,38,29,0.0 +13260,62,49.3,40,0.0 +13260,74,10,13,0.0 +13260,19,9.2,12,0.0 +13260,7,30,11,0.0 +13260,27,43.9,46,0.0 +13260,40,18.4,21,0.0 +13260,24,4.5,26,0.0 +13260,77,13,31,0.0 +13260,12,38,17,0.0 +13260,9,97,41,0.0 +13261,48,12.75,18,0.0 +13261,11,21,9,0.0 +13261,6,25,8,0.0 +13261,64,33.25,31,0.0 +13261,46,12,45,0.0 +13261,74,10,25,0.0 +13261,57,19.5,26,0.0 +13261,22,21,27,0.0 +13261,33,2.5,15,0.0 +13261,31,12.5,41,0.0 +13261,36,19,37,0.0 +13261,32,32,4,0.0 +13261,10,31,36,0.0 +13261,15,15.5,49,0.0 +13261,65,21.05,5,0.0 +13261,62,49.3,16,0.0 +13261,13,6,43,0.0 +13261,35,18,39,0.0 +13261,66,17,44,0.0 +13261,47,9.5,29,0.0 +13261,17,39,16,0.0 +13261,2,19,21,0.0 +13261,4,22,28,0.0 +13261,20,81,24,0.0 +13261,76,18,19,0.0 +13261,60,34,45,0.0 +13261,30,25.89,10,0.0 +13261,41,9.65,1,0.0 +13261,56,38,10,0.0 +13261,61,28.5,23,0.0 +13261,69,36,36,0.0 +13261,52,7,16,0.0 +13261,5,21.35,14,0.0 +13261,67,14,37,0.0 +13261,68,12.5,19,0.0 +13261,16,17.45,3,0.0 +13261,29,123.79,26,0.0 +13261,3,10,12,0.0 +13261,51,53,42,0.0 +13261,28,45.6,18,0.0 +13261,63,43.9,34,0.0 +13261,25,14,28,0.0 +13261,54,7.45,34,0.0 +13262,41,9.65,35,0.0 +13262,24,4.5,1,0.0 +13262,49,20,30,0.0 +13262,44,19.45,23,0.0 +13262,38,263.5,21,0.0 +13262,70,15,37,0.0 +13262,26,31.23,45,0.0 +13262,53,32.8,3,0.0 +13262,19,9.2,43,0.0 +13262,3,10,22,0.0 +13262,57,19.5,21,0.0 +13262,65,21.05,18,0.0 +13262,43,46,4,0.0 +13262,23,9,14,0.0 +13262,36,19,33,0.0 +13262,25,14,34,0.0 +13262,39,18,26,0.0 +13262,28,45.6,42,0.0 +13262,29,123.79,38,0.0 +13262,20,81,8,0.0 +13262,8,40,45,0.0 +13262,11,21,24,0.0 +13262,48,12.75,43,0.0 +13262,35,18,11,0.0 +13262,73,15,31,0.0 +13263,1,18,16,0.0 +13263,50,16.25,31,0.0 +13263,48,12.75,29,0.0 +13263,37,26,39,0.0 +13263,76,18,31,0.0 +13263,74,10,30,0.0 +13263,56,38,15,0.0 +13263,67,14,22,0.0 +13263,7,30,25,0.0 +13263,25,14,49,0.0 +13263,42,14,48,0.0 +13263,43,46,40,0.0 +13263,54,7.45,34,0.0 +13263,36,19,6,0.0 +13263,61,28.5,31,0.0 +13263,20,81,34,0.0 +13263,40,18.4,48,0.0 +13263,45,9.5,26,0.0 +13263,23,9,33,0.0 +13263,17,39,3,0.0 +13263,28,45.6,12,0.0 +13263,66,17,6,0.0 +13263,53,32.8,2,0.0 +13263,3,10,16,0.0 +13264,48,12.75,40,0.0 +13264,1,18,37,0.0 +13264,5,21.35,1,0.0 +13264,51,53,47,0.0 +13264,36,19,27,0.0 +13264,62,49.3,15,0.0 +13264,13,6,28,0.0 +13264,24,4.5,27,0.0 +13264,69,36,47,0.0 +13264,27,43.9,47,0.0 +13264,19,9.2,23,0.0 +13264,37,26,39,0.0 +13264,7,30,45,0.0 +13264,14,23.25,24,0.0 +13264,56,38,48,0.0 +13264,45,9.5,8,0.0 +13264,53,32.8,50,0.0 +13264,31,12.5,49,0.0 +13264,50,16.25,13,0.0 +13264,17,39,30,0.0 +13264,73,15,21,0.0 +13264,4,22,36,0.0 +13264,29,123.79,9,0.0 +13264,54,7.45,47,0.0 +13264,43,46,38,0.0 +13264,67,14,3,0.0 +13264,65,21.05,15,0.0 +13264,49,20,47,0.0 +13264,60,34,27,0.0 +13264,9,97,23,0.0 +13264,35,18,17,0.0 +13264,12,38,11,0.0 +13264,33,2.5,34,0.0 +13264,28,45.6,13,0.0 +13264,42,14,33,0.0 +13264,76,18,25,0.0 +13264,10,31,16,0.0 +13264,2,19,20,0.0 +13264,72,34.8,38,0.0 +13264,46,12,32,0.0 +13264,61,28.5,28,0.0 +13264,41,9.65,4,0.0 +13264,11,21,1,0.0 +13264,20,81,5,0.0 +13264,6,25,14,0.0 +13264,71,21.5,28,0.0 +13264,44,19.45,28,0.0 +13265,73,15,44,0.0 +13265,47,9.5,19,0.0 +13265,59,55,6,0.0 +13265,29,123.79,14,0.0 +13265,5,21.35,24,0.0 +13265,32,32,8,0.0 +13265,27,43.9,38,0.0 +13265,56,38,43,0.0 +13265,30,25.89,25,0.0 +13265,28,45.6,6,0.0 +13265,74,10,38,0.0 +13265,51,53,2,0.0 +13265,11,21,7,0.0 +13265,75,7.75,29,0.0 +13265,18,62.5,29,0.0 +13265,3,10,43,0.0 +13265,64,33.25,17,0.0 +13265,16,17.45,2,0.0 +13265,35,18,29,0.0 +13265,10,31,7,0.0 +13265,34,14,29,0.0 +13265,22,21,49,0.0 +13265,21,10,16,0.0 +13265,48,12.75,37,0.0 +13265,46,12,47,0.0 +13265,9,97,50,0.0 +13265,72,34.8,46,0.0 +13265,57,19.5,8,0.0 +13265,45,9.5,50,0.0 +13265,58,13.25,9,0.0 +13265,1,18,3,0.0 +13265,26,31.23,23,0.0 +13265,65,21.05,5,0.0 +13265,69,36,25,0.0 +13265,54,7.45,40,0.0 +13265,42,14,9,0.0 +13265,13,6,23,0.0 +13265,68,12.5,15,0.0 +13265,7,30,26,0.0 +13265,50,16.25,16,0.0 +13265,23,9,4,0.0 +13265,77,13,20,0.0 +13265,4,22,11,0.0 +13265,60,34,25,0.0 +13265,52,7,45,0.0 +13265,67,14,42,0.0 +13265,33,2.5,5,0.0 +13265,31,12.5,42,0.0 +13265,24,4.5,47,0.0 +13265,43,46,13,0.0 +13265,44,19.45,11,0.0 +13265,15,15.5,25,0.0 +13265,63,43.9,22,0.0 +13265,40,18.4,3,0.0 +13265,37,26,15,0.0 +13265,25,14,15,0.0 +13265,6,25,13,0.0 +13265,8,40,22,0.0 +13265,19,9.2,31,0.0 +13266,48,12.75,10,0.0 +13266,31,12.5,5,0.0 +13266,65,21.05,17,0.0 +13266,53,32.8,33,0.0 +13266,57,19.5,37,0.0 +13266,19,9.2,39,0.0 +13266,26,31.23,43,0.0 +13266,3,10,42,0.0 +13266,36,19,23,0.0 +13266,29,123.79,50,0.0 +13266,27,43.9,6,0.0 +13266,60,34,25,0.0 +13266,32,32,13,0.0 +13266,67,14,35,0.0 +13266,34,14,13,0.0 +13267,45,9.5,25,0.0 +13267,30,25.89,2,0.0 +13267,5,21.35,25,0.0 +13267,60,34,17,0.0 +13267,63,43.9,4,0.0 +13267,46,12,34,0.0 +13267,53,32.8,19,0.0 +13267,67,14,17,0.0 +13267,61,28.5,35,0.0 +13267,33,2.5,5,0.0 +13267,36,19,4,0.0 +13267,75,7.75,21,0.0 +13267,24,4.5,22,0.0 +13267,50,16.25,34,0.0 +13267,52,7,33,0.0 +13267,9,97,14,0.0 +13267,32,32,13,0.0 +13267,2,19,41,0.0 +13267,23,9,7,0.0 +13267,34,14,8,0.0 +13267,1,18,3,0.0 +13267,74,10,29,0.0 +13267,3,10,36,0.0 +13267,47,9.5,13,0.0 +13267,4,22,14,0.0 +13267,37,26,39,0.0 +13267,56,38,23,0.0 +13267,14,23.25,15,0.0 +13267,54,7.45,23,0.0 +13267,59,55,46,0.0 +13267,76,18,10,0.0 +13267,15,15.5,22,0.0 +13267,55,24,48,0.0 +13267,8,40,6,0.0 +13267,77,13,47,0.0 +13267,70,15,2,0.0 +13267,16,17.45,33,0.0 +13267,41,9.65,14,0.0 +13267,18,62.5,18,0.0 +13267,17,39,50,0.0 +13267,62,49.3,34,0.0 +13267,26,31.23,41,0.0 +13267,10,31,49,0.0 +13267,12,38,30,0.0 +13267,42,14,13,0.0 +13268,23,9,5,0.0 +13268,32,32,2,0.0 +13269,23,9,17,0.0 +13269,69,36,8,0.0 +13269,54,7.45,21,0.0 +13269,50,16.25,39,0.0 +13269,51,53,1,0.0 +13269,9,97,17,0.0 +13269,67,14,26,0.0 +13269,76,18,45,0.0 +13269,44,19.45,17,0.0 +13269,68,12.5,40,0.0 +13269,36,19,31,0.0 +13269,35,18,32,0.0 +13269,34,14,25,0.0 +13269,75,7.75,37,0.0 +13269,63,43.9,13,0.0 +13269,55,24,2,0.0 +13269,26,31.23,44,0.0 +13269,45,9.5,5,0.0 +13269,77,13,18,0.0 +13269,66,17,27,0.0 +13269,19,9.2,46,0.0 +13269,73,15,46,0.0 +13269,18,62.5,17,0.0 +13269,57,19.5,24,0.0 +13269,5,21.35,17,0.0 +13269,2,19,22,0.0 +13269,49,20,49,0.0 +13269,24,4.5,8,0.0 +13269,30,25.89,14,0.0 +13269,32,32,19,0.0 +13269,22,21,50,0.0 +13269,56,38,26,0.0 +13269,8,40,29,0.0 +13269,15,15.5,4,0.0 +13269,12,38,29,0.0 +13269,40,18.4,49,0.0 +13269,39,18,32,0.0 +13269,70,15,18,0.0 +13269,74,10,32,0.0 +13269,13,6,40,0.0 +13269,14,23.25,50,0.0 +13269,1,18,24,0.0 +13269,71,21.5,44,0.0 +13269,48,12.75,7,0.0 +13269,72,34.8,15,0.0 +13269,7,30,2,0.0 +13269,58,13.25,16,0.0 +13269,41,9.65,21,0.0 +13269,43,46,24,0.0 +13269,17,39,40,0.0 +13270,58,13.25,14,0.0 +13270,9,97,10,0.0 +13270,42,14,35,0.0 +13270,34,14,5,0.0 +13270,33,2.5,31,0.0 +13270,2,19,38,0.0 +13270,45,9.5,49,0.0 +13270,37,26,42,0.0 +13270,66,17,3,0.0 +13270,53,32.8,34,0.0 +13270,22,21,44,0.0 +13270,24,4.5,26,0.0 +13270,13,6,10,0.0 +13270,31,12.5,19,0.0 +13270,26,31.23,6,0.0 +13270,1,18,5,0.0 +13270,43,46,39,0.0 +13271,55,24,18,0.0 +13271,5,21.35,27,0.0 +13271,49,20,37,0.0 +13271,14,23.25,9,0.0 +13271,62,49.3,6,0.0 +13271,68,12.5,50,0.0 +13271,75,7.75,24,0.0 +13271,19,9.2,29,0.0 +13271,11,21,22,0.0 +13271,31,12.5,12,0.0 +13271,35,18,42,0.0 +13271,38,263.5,27,0.0 +13271,43,46,4,0.0 +13271,33,2.5,25,0.0 +13271,9,97,3,0.0 +13271,3,10,12,0.0 +13271,76,18,39,0.0 +13271,17,39,27,0.0 +13271,2,19,39,0.0 +13271,40,18.4,30,0.0 +13271,30,25.89,44,0.0 +13271,16,17.45,23,0.0 +13271,27,43.9,22,0.0 +13271,65,21.05,35,0.0 +13271,45,9.5,39,0.0 +13271,1,18,46,0.0 +13271,20,81,24,0.0 +13271,61,28.5,26,0.0 +13271,44,19.45,35,0.0 +13271,8,40,23,0.0 +13271,22,21,32,0.0 +13271,36,19,38,0.0 +13271,74,10,30,0.0 +13271,41,9.65,26,0.0 +13271,73,15,6,0.0 +13271,67,14,34,0.0 +13271,48,12.75,47,0.0 +13271,18,62.5,50,0.0 +13271,57,19.5,42,0.0 +13271,63,43.9,37,0.0 +13271,56,38,1,0.0 +13271,51,53,11,0.0 +13271,59,55,43,0.0 +13271,24,4.5,34,0.0 +13271,29,123.79,48,0.0 +13271,70,15,48,0.0 +13271,71,21.5,21,0.0 +13271,25,14,50,0.0 +13271,42,14,33,0.0 +13271,15,15.5,20,0.0 +13271,34,14,10,0.0 +13271,7,30,22,0.0 +13271,13,6,35,0.0 +13271,72,34.8,17,0.0 +13271,6,25,12,0.0 +13271,21,10,47,0.0 +13271,23,9,1,0.0 +13271,12,38,33,0.0 +13271,53,32.8,16,0.0 +13271,47,9.5,14,0.0 +13271,46,12,32,0.0 +13271,52,7,37,0.0 +13271,58,13.25,12,0.0 +13271,66,17,10,0.0 +13271,26,31.23,19,0.0 +13271,32,32,38,0.0 +13272,6,25,16,0.0 +13272,31,12.5,2,0.0 +13272,41,9.65,26,0.0 +13272,33,2.5,17,0.0 +13272,55,24,8,0.0 +13272,58,13.25,40,0.0 +13272,47,9.5,45,0.0 +13272,27,43.9,49,0.0 +13272,21,10,31,0.0 +13272,39,18,48,0.0 +13272,50,16.25,34,0.0 +13272,57,19.5,4,0.0 +13272,45,9.5,37,0.0 +13272,17,39,21,0.0 +13272,12,38,25,0.0 +13272,16,17.45,13,0.0 +13272,43,46,26,0.0 +13272,72,34.8,27,0.0 +13272,10,31,28,0.0 +13272,5,21.35,32,0.0 +13272,4,22,34,0.0 +13272,52,7,39,0.0 +13272,40,18.4,25,0.0 +13272,36,19,23,0.0 +13272,59,55,17,0.0 +13272,1,18,13,0.0 +13272,56,38,36,0.0 +13272,74,10,15,0.0 +13272,9,97,42,0.0 +13272,19,9.2,24,0.0 +13272,25,14,32,0.0 +13272,38,263.5,38,0.0 +13272,24,4.5,28,0.0 +13272,62,49.3,17,0.0 +13272,75,7.75,32,0.0 +13272,65,21.05,17,0.0 +13272,37,26,44,0.0 +13272,77,13,5,0.0 +13272,64,33.25,37,0.0 +13272,2,19,43,0.0 +13272,3,10,11,0.0 +13272,26,31.23,30,0.0 +13272,53,32.8,36,0.0 +13272,34,14,14,0.0 +13272,13,6,45,0.0 +13272,35,18,28,0.0 +13272,60,34,7,0.0 +13272,42,14,15,0.0 +13272,68,12.5,2,0.0 +13272,15,15.5,32,0.0 +13272,71,21.5,14,0.0 +13272,66,17,48,0.0 +13272,48,12.75,34,0.0 +13272,11,21,50,0.0 +13272,28,45.6,2,0.0 +13272,44,19.45,40,0.0 +13273,50,16.25,34,0.0 +13273,47,9.5,43,0.0 +13273,8,40,13,0.0 +13273,71,21.5,32,0.0 +13273,13,6,35,0.0 +13273,15,15.5,10,0.0 +13273,70,15,48,0.0 +13273,23,9,35,0.0 +13273,58,13.25,22,0.0 +13273,1,18,24,0.0 +13273,76,18,42,0.0 +13273,38,263.5,34,0.0 +13273,61,28.5,22,0.0 +13273,18,62.5,13,0.0 +13273,22,21,31,0.0 +13273,5,21.35,16,0.0 +13273,45,9.5,50,0.0 +13273,32,32,4,0.0 +13273,63,43.9,15,0.0 +13273,4,22,41,0.0 +13273,55,24,24,0.0 +13273,64,33.25,43,0.0 +13273,75,7.75,17,0.0 +13273,72,34.8,9,0.0 +13273,24,4.5,14,0.0 +13273,36,19,26,0.0 +13273,43,46,45,0.0 +13273,53,32.8,41,0.0 +13273,26,31.23,42,0.0 +13273,56,38,31,0.0 +13273,54,7.45,29,0.0 +13273,59,55,17,0.0 +13273,20,81,38,0.0 +13273,77,13,15,0.0 +13273,16,17.45,33,0.0 +13273,3,10,26,0.0 +13273,52,7,50,0.0 +13273,10,31,1,0.0 +13273,57,19.5,10,0.0 +13273,7,30,28,0.0 +13273,73,15,9,0.0 +13273,44,19.45,31,0.0 +13273,46,12,22,0.0 +13273,34,14,50,0.0 +13273,14,23.25,29,0.0 +13273,33,2.5,27,0.0 +13273,67,14,39,0.0 +13273,60,34,28,0.0 +13273,12,38,18,0.0 +13273,30,25.89,28,0.0 +13273,68,12.5,28,0.0 +13273,9,97,30,0.0 +13273,21,10,9,0.0 +13273,6,25,50,0.0 +13273,37,26,44,0.0 +13273,31,12.5,5,0.0 +13273,11,21,48,0.0 +13273,27,43.9,12,0.0 +13273,39,18,26,0.0 +13273,19,9.2,31,0.0 +13273,28,45.6,48,0.0 +13273,29,123.79,13,0.0 +13273,40,18.4,32,0.0 +13273,62,49.3,38,0.0 +13273,35,18,12,0.0 +13273,69,36,12,0.0 +13273,2,19,36,0.0 +13273,25,14,26,0.0 +13273,42,14,14,0.0 +13273,65,21.05,12,0.0 +13273,74,10,43,0.0 +13274,56,38,2,0.0 +13274,69,36,22,0.0 +13274,10,31,23,0.0 +13274,51,53,16,0.0 +13274,6,25,37,0.0 +13274,4,22,22,0.0 +13274,19,9.2,44,0.0 +13274,29,123.79,5,0.0 +13274,31,12.5,9,0.0 +13274,60,34,41,0.0 +13274,2,19,50,0.0 +13274,48,12.75,34,0.0 +13274,53,32.8,3,0.0 +13274,8,40,28,0.0 +13274,30,25.89,36,0.0 +13274,71,21.5,38,0.0 +13274,74,10,24,0.0 +13274,67,14,47,0.0 +13274,45,9.5,21,0.0 +13274,57,19.5,3,0.0 +13274,15,15.5,25,0.0 +13274,44,19.45,26,0.0 +13274,61,28.5,32,0.0 +13274,52,7,48,0.0 +13274,47,9.5,38,0.0 +13274,43,46,37,0.0 +13274,66,17,27,0.0 +13274,26,31.23,39,0.0 +13274,32,32,47,0.0 +13274,27,43.9,49,0.0 +13274,59,55,10,0.0 +13274,22,21,12,0.0 +13274,65,21.05,5,0.0 +13274,41,9.65,17,0.0 +13274,20,81,21,0.0 +13274,11,21,25,0.0 +13274,54,7.45,43,0.0 +13274,18,62.5,34,0.0 +13274,36,19,22,0.0 +13274,25,14,3,0.0 +13274,39,18,30,0.0 +13274,7,30,29,0.0 +13274,46,12,28,0.0 +13274,33,2.5,46,0.0 +13274,17,39,45,0.0 +13274,28,45.6,40,0.0 +13274,64,33.25,20,0.0 +13274,35,18,48,0.0 +13274,72,34.8,48,0.0 +13274,38,263.5,3,0.0 +13274,76,18,10,0.0 +13274,23,9,36,0.0 +13274,5,21.35,41,0.0 +13274,40,18.4,47,0.0 +13274,9,97,8,0.0 +13274,12,38,30,0.0 +13274,63,43.9,38,0.0 +13274,34,14,1,0.0 +13274,3,10,24,0.0 +13274,13,6,49,0.0 +13274,55,24,23,0.0 +13274,49,20,32,0.0 +13274,58,13.25,41,0.0 +13274,16,17.45,25,0.0 +13274,37,26,15,0.0 +13274,14,23.25,36,0.0 +13274,50,16.25,22,0.0 +13274,62,49.3,3,0.0 +13274,77,13,11,0.0 +13274,70,15,26,0.0 +13274,73,15,23,0.0 +13274,68,12.5,30,0.0 +13274,24,4.5,50,0.0 +13274,75,7.75,46,0.0 +13274,21,10,17,0.0 +13275,11,21,50,0.0 +13275,29,123.79,12,0.0 +13275,52,7,17,0.0 +13275,61,28.5,10,0.0 +13275,42,14,44,0.0 +13275,40,18.4,48,0.0 +13275,17,39,35,0.0 +13275,15,15.5,10,0.0 +13275,73,15,18,0.0 +13275,1,18,16,0.0 +13275,54,7.45,44,0.0 +13275,57,19.5,36,0.0 +13275,14,23.25,44,0.0 +13275,9,97,46,0.0 +13275,75,7.75,49,0.0 +13275,48,12.75,26,0.0 +13275,4,22,35,0.0 +13275,13,6,7,0.0 +13275,60,34,31,0.0 +13275,27,43.9,20,0.0 +13275,67,14,8,0.0 +13275,64,33.25,15,0.0 +13275,25,14,25,0.0 +13275,35,18,15,0.0 +13275,20,81,18,0.0 +13275,49,20,15,0.0 +13275,8,40,15,0.0 +13275,51,53,46,0.0 +13275,46,12,48,0.0 +13275,16,17.45,26,0.0 +13275,6,25,10,0.0 +13276,70,15,5,0.0 +13276,10,31,2,0.0 +13276,76,18,32,0.0 +13276,41,9.65,24,0.0 +13276,32,32,20,0.0 +13276,38,263.5,9,0.0 +13276,47,9.5,46,0.0 +13276,22,21,7,0.0 +13276,5,21.35,50,0.0 +13276,73,15,3,0.0 +13276,20,81,9,0.0 +13276,37,26,21,0.0 +13276,35,18,45,0.0 +13276,42,14,49,0.0 +13276,27,43.9,46,0.0 +13276,57,19.5,17,0.0 +13276,21,10,18,0.0 +13276,68,12.5,33,0.0 +13276,16,17.45,22,0.0 +13276,77,13,15,0.0 +13276,18,62.5,10,0.0 +13276,1,18,15,0.0 +13276,9,97,50,0.0 +13276,46,12,17,0.0 +13276,36,19,45,0.0 +13276,2,19,45,0.0 +13276,60,34,10,0.0 +13276,50,16.25,39,0.0 +13276,43,46,45,0.0 +13276,19,9.2,1,0.0 +13276,6,25,13,0.0 +13276,74,10,14,0.0 +13276,3,10,8,0.0 +13276,66,17,35,0.0 +13276,11,21,16,0.0 +13276,40,18.4,27,0.0 +13276,48,12.75,36,0.0 +13276,7,30,4,0.0 +13276,8,40,44,0.0 +13276,39,18,19,0.0 +13276,31,12.5,27,0.0 +13276,29,123.79,13,0.0 +13276,14,23.25,45,0.0 +13276,64,33.25,46,0.0 +13276,62,49.3,26,0.0 +13276,67,14,21,0.0 +13276,26,31.23,45,0.0 +13276,30,25.89,5,0.0 +13276,58,13.25,13,0.0 +13276,33,2.5,24,0.0 +13276,44,19.45,18,0.0 +13276,49,20,8,0.0 +13276,51,53,19,0.0 +13276,34,14,5,0.0 +13276,12,38,8,0.0 +13276,24,4.5,34,0.0 +13276,45,9.5,29,0.0 +13276,15,15.5,44,0.0 +13277,5,21.35,34,0.0 +13277,18,62.5,10,0.0 +13277,25,14,46,0.0 +13277,73,15,41,0.0 +13277,47,9.5,30,0.0 +13277,55,24,42,0.0 +13277,74,10,11,0.0 +13277,21,10,42,0.0 +13277,76,18,43,0.0 +13277,71,21.5,7,0.0 +13277,46,12,4,0.0 +13277,9,97,42,0.0 +13277,36,19,14,0.0 +13277,41,9.65,27,0.0 +13277,17,39,18,0.0 +13277,27,43.9,45,0.0 +13277,52,7,39,0.0 +13277,51,53,33,0.0 +13277,68,12.5,9,0.0 +13277,67,14,4,0.0 +13277,31,12.5,12,0.0 +13277,13,6,29,0.0 +13277,32,32,45,0.0 +13277,45,9.5,25,0.0 +13277,38,263.5,20,0.0 +13277,7,30,9,0.0 +13277,56,38,2,0.0 +13277,72,34.8,42,0.0 +13277,33,2.5,9,0.0 +13277,60,34,11,0.0 +13277,28,45.6,39,0.0 +13278,69,36,19,0.0 +13278,39,18,27,0.0 +13278,12,38,28,0.0 +13278,19,9.2,39,0.0 +13278,75,7.75,38,0.0 +13278,3,10,20,0.0 +13278,17,39,33,0.0 +13278,63,43.9,14,0.0 +13278,71,21.5,5,0.0 +13278,53,32.8,13,0.0 +13278,72,34.8,18,0.0 +13278,13,6,43,0.0 +13278,14,23.25,47,0.0 +13278,32,32,49,0.0 +13278,36,19,23,0.0 +13278,46,12,43,0.0 +13278,9,97,48,0.0 +13278,51,53,41,0.0 +13278,10,31,16,0.0 +13278,50,16.25,40,0.0 +13278,49,20,39,0.0 +13278,21,10,6,0.0 +13278,45,9.5,14,0.0 +13278,29,123.79,48,0.0 +13278,34,14,9,0.0 +13278,30,25.89,21,0.0 +13278,38,263.5,40,0.0 +13278,54,7.45,15,0.0 +13278,2,19,26,0.0 +13278,76,18,14,0.0 +13278,60,34,12,0.0 +13278,74,10,40,0.0 +13278,61,28.5,40,0.0 +13278,57,19.5,32,0.0 +13278,22,21,10,0.0 +13278,24,4.5,2,0.0 +13278,65,21.05,16,0.0 +13278,11,21,39,0.0 +13278,67,14,43,0.0 +13278,44,19.45,31,0.0 +13278,59,55,6,0.0 +13278,26,31.23,45,0.0 +13278,8,40,46,0.0 +13278,41,9.65,23,0.0 +13278,28,45.6,17,0.0 +13278,56,38,28,0.0 +13278,16,17.45,46,0.0 +13278,48,12.75,1,0.0 +13278,43,46,44,0.0 +13278,5,21.35,8,0.0 +13278,20,81,35,0.0 +13278,70,15,36,0.0 +13278,68,12.5,14,0.0 +13278,33,2.5,20,0.0 +13278,7,30,30,0.0 +13278,18,62.5,20,0.0 +13278,15,15.5,27,0.0 +13279,22,21,18,0.0 +13279,69,36,33,0.0 +13279,57,19.5,37,0.0 +13279,62,49.3,29,0.0 +13279,54,7.45,46,0.0 +13279,60,34,12,0.0 +13279,71,21.5,22,0.0 +13279,48,12.75,4,0.0 +13279,31,12.5,44,0.0 +13279,12,38,50,0.0 +13279,75,7.75,1,0.0 +13279,25,14,10,0.0 +13279,61,28.5,10,0.0 +13279,55,24,35,0.0 +13279,1,18,30,0.0 +13279,16,17.45,18,0.0 +13279,10,31,22,0.0 +13279,30,25.89,47,0.0 +13279,32,32,35,0.0 +13279,46,12,27,0.0 +13279,29,123.79,43,0.0 +13279,23,9,22,0.0 +13279,74,10,28,0.0 +13279,17,39,32,0.0 +13279,65,21.05,17,0.0 +13279,41,9.65,11,0.0 +13279,18,62.5,8,0.0 +13279,77,13,14,0.0 +13279,72,34.8,6,0.0 +13279,44,19.45,50,0.0 +13279,7,30,45,0.0 +13279,58,13.25,25,0.0 +13279,38,263.5,2,0.0 +13279,52,7,38,0.0 +13279,73,15,34,0.0 +13279,43,46,27,0.0 +13279,33,2.5,47,0.0 +13279,50,16.25,23,0.0 +13279,6,25,33,0.0 +13279,53,32.8,23,0.0 +13279,49,20,27,0.0 +13279,3,10,11,0.0 +13279,70,15,33,0.0 +13279,8,40,11,0.0 +13279,56,38,11,0.0 +13279,26,31.23,45,0.0 +13279,28,45.6,44,0.0 +13279,68,12.5,38,0.0 +13279,36,19,17,0.0 +13279,45,9.5,30,0.0 +13279,67,14,6,0.0 +13279,66,17,1,0.0 +13279,2,19,35,0.0 +13279,11,21,44,0.0 +13279,19,9.2,49,0.0 +13279,37,26,20,0.0 +13279,14,23.25,30,0.0 +13279,27,43.9,12,0.0 +13279,35,18,48,0.0 +13279,59,55,3,0.0 +13279,39,18,25,0.0 +13279,4,22,43,0.0 +13279,42,14,3,0.0 +13280,57,19.5,4,0.0 +13280,18,62.5,44,0.0 +13280,20,81,46,0.0 +13280,51,53,13,0.0 +13280,48,12.75,27,0.0 +13280,31,12.5,45,0.0 +13280,68,12.5,30,0.0 +13280,22,21,25,0.0 +13280,34,14,11,0.0 +13280,24,4.5,2,0.0 +13280,72,34.8,50,0.0 +13280,11,21,6,0.0 +13280,26,31.23,1,0.0 +13280,73,15,42,0.0 +13280,25,14,21,0.0 +13280,41,9.65,10,0.0 +13280,19,9.2,32,0.0 +13280,17,39,20,0.0 +13280,8,40,2,0.0 +13280,9,97,50,0.0 +13280,5,21.35,15,0.0 +13280,49,20,47,0.0 +13281,75,7.75,3,0.0 +13281,34,14,1,0.0 +13281,58,13.25,13,0.0 +13281,54,7.45,29,0.0 +13281,3,10,46,0.0 +13281,6,25,38,0.0 +13281,14,23.25,47,0.0 +13281,18,62.5,44,0.0 +13281,8,40,43,0.0 +13281,66,17,20,0.0 +13281,16,17.45,10,0.0 +13281,47,9.5,35,0.0 +13281,11,21,30,0.0 +13281,59,55,46,0.0 +13281,64,33.25,4,0.0 +13281,41,9.65,3,0.0 +13282,56,38,22,0.0 +13282,38,263.5,3,0.0 +13282,66,17,22,0.0 +13282,40,18.4,20,0.0 +13282,34,14,6,0.0 +13282,59,55,23,0.0 +13282,1,18,38,0.0 +13282,58,13.25,14,0.0 +13282,31,12.5,35,0.0 +13282,19,9.2,43,0.0 +13282,7,30,32,0.0 +13282,49,20,9,0.0 +13282,74,10,4,0.0 +13282,52,7,19,0.0 +13282,15,15.5,4,0.0 +13282,11,21,6,0.0 +13282,54,7.45,19,0.0 +13282,24,4.5,4,0.0 +13282,48,12.75,22,0.0 +13282,39,18,43,0.0 +13282,62,49.3,26,0.0 +13282,57,19.5,20,0.0 +13282,22,21,2,0.0 +13282,8,40,30,0.0 +13282,63,43.9,36,0.0 +13282,50,16.25,42,0.0 +13282,64,33.25,33,0.0 +13282,70,15,49,0.0 +13282,33,2.5,26,0.0 +13282,26,31.23,6,0.0 +13282,65,21.05,48,0.0 +13282,41,9.65,48,0.0 +13282,20,81,39,0.0 +13282,61,28.5,38,0.0 +13282,21,10,46,0.0 +13282,6,25,44,0.0 +13282,32,32,23,0.0 +13282,51,53,37,0.0 +13282,25,14,9,0.0 +13282,69,36,30,0.0 +13282,53,32.8,11,0.0 +13282,35,18,4,0.0 +13282,2,19,26,0.0 +13282,30,25.89,40,0.0 +13282,3,10,43,0.0 +13282,73,15,5,0.0 +13282,76,18,46,0.0 +13282,44,19.45,8,0.0 +13282,75,7.75,6,0.0 +13282,77,13,12,0.0 +13283,35,18,7,0.0 +13283,23,9,22,0.0 +13283,16,17.45,42,0.0 +13283,2,19,42,0.0 +13283,27,43.9,27,0.0 +13283,20,81,50,0.0 +13283,69,36,32,0.0 +13283,62,49.3,44,0.0 +13283,33,2.5,46,0.0 +13283,68,12.5,36,0.0 +13283,38,263.5,22,0.0 +13283,71,21.5,15,0.0 +13283,53,32.8,10,0.0 +13283,50,16.25,38,0.0 +13283,36,19,32,0.0 +13283,12,38,28,0.0 +13283,26,31.23,20,0.0 +13283,44,19.45,25,0.0 +13283,18,62.5,45,0.0 +13283,51,53,4,0.0 +13283,30,25.89,4,0.0 +13283,60,34,48,0.0 +13283,47,9.5,2,0.0 +13283,46,12,37,0.0 +13283,72,34.8,35,0.0 +13283,22,21,28,0.0 +13283,40,18.4,32,0.0 +13283,75,7.75,19,0.0 +13283,4,22,39,0.0 +13283,11,21,48,0.0 +13283,61,28.5,2,0.0 +13283,37,26,32,0.0 +13283,77,13,12,0.0 +13283,56,38,26,0.0 +13283,65,21.05,28,0.0 +13283,59,55,30,0.0 +13283,43,46,11,0.0 +13283,54,7.45,2,0.0 +13283,8,40,50,0.0 +13283,19,9.2,7,0.0 +13283,49,20,38,0.0 +13283,29,123.79,32,0.0 +13283,55,24,16,0.0 +13283,5,21.35,5,0.0 +13283,21,10,16,0.0 +13283,70,15,24,0.0 +13283,34,14,21,0.0 +13283,74,10,19,0.0 +13283,3,10,2,0.0 +13283,57,19.5,47,0.0 +13283,9,97,7,0.0 +13283,1,18,44,0.0 +13283,63,43.9,20,0.0 +13283,42,14,40,0.0 +13283,13,6,48,0.0 +13283,31,12.5,18,0.0 +13283,45,9.5,12,0.0 +13283,14,23.25,2,0.0 +13283,28,45.6,43,0.0 +13283,76,18,6,0.0 +13283,66,17,7,0.0 +13283,7,30,32,0.0 +13283,67,14,10,0.0 +13283,6,25,42,0.0 +13283,15,15.5,42,0.0 +13283,58,13.25,26,0.0 +13283,25,14,33,0.0 +13283,41,9.65,28,0.0 +13283,64,33.25,50,0.0 +13283,39,18,13,0.0 +13283,52,7,48,0.0 +13284,8,40,12,0.0 +13284,9,97,49,0.0 +13284,35,18,18,0.0 +13284,62,49.3,43,0.0 +13284,12,38,19,0.0 +13284,18,62.5,7,0.0 +13284,10,31,50,0.0 +13284,13,6,13,0.0 +13284,11,21,19,0.0 +13284,45,9.5,48,0.0 +13284,54,7.45,4,0.0 +13284,15,15.5,7,0.0 +13284,26,31.23,44,0.0 +13284,55,24,44,0.0 +13285,53,32.8,48,0.0 +13285,27,43.9,2,0.0 +13285,28,45.6,35,0.0 +13285,4,22,11,0.0 +13285,10,31,21,0.0 +13285,75,7.75,4,0.0 +13285,74,10,49,0.0 +13285,20,81,12,0.0 +13285,73,15,25,0.0 +13285,55,24,24,0.0 +13285,22,21,2,0.0 +13285,26,31.23,43,0.0 +13285,14,23.25,11,0.0 +13285,3,10,19,0.0 +13285,35,18,5,0.0 +13285,77,13,47,0.0 +13285,70,15,22,0.0 +13285,7,30,35,0.0 +13285,33,2.5,23,0.0 +13285,9,97,37,0.0 +13285,19,9.2,50,0.0 +13285,40,18.4,26,0.0 +13285,12,38,18,0.0 +13285,8,40,42,0.0 +13285,17,39,23,0.0 +13285,23,9,30,0.0 +13285,68,12.5,26,0.0 +13285,48,12.75,39,0.0 +13285,45,9.5,45,0.0 +13285,16,17.45,34,0.0 +13285,38,263.5,19,0.0 +13285,51,53,1,0.0 +13285,66,17,19,0.0 +13285,50,16.25,4,0.0 +13285,76,18,35,0.0 +13285,37,26,39,0.0 +13285,72,34.8,16,0.0 +13285,49,20,24,0.0 +13285,29,123.79,33,0.0 +13285,36,19,6,0.0 +13285,1,18,18,0.0 +13285,43,46,45,0.0 +13285,41,9.65,10,0.0 +13285,30,25.89,2,0.0 +13285,18,62.5,28,0.0 +13285,69,36,31,0.0 +13285,39,18,24,0.0 +13285,42,14,40,0.0 +13285,65,21.05,31,0.0 +13285,58,13.25,17,0.0 +13285,61,28.5,39,0.0 +13286,24,4.5,14,0.0 +13286,31,12.5,23,0.0 +13286,49,20,23,0.0 +13286,18,62.5,27,0.0 +13286,29,123.79,7,0.0 +13286,57,19.5,31,0.0 +13286,14,23.25,29,0.0 +13286,50,16.25,8,0.0 +13286,15,15.5,17,0.0 +13286,55,24,31,0.0 +13286,53,32.8,1,0.0 +13286,58,13.25,34,0.0 +13286,39,18,35,0.0 +13286,5,21.35,13,0.0 +13286,28,45.6,27,0.0 +13286,43,46,20,0.0 +13286,48,12.75,32,0.0 +13286,22,21,14,0.0 +13286,63,43.9,35,0.0 +13286,23,9,37,0.0 +13286,41,9.65,30,0.0 +13286,6,25,5,0.0 +13286,30,25.89,39,0.0 +13286,20,81,40,0.0 +13286,34,14,46,0.0 +13286,62,49.3,8,0.0 +13286,17,39,46,0.0 +13286,71,21.5,2,0.0 +13286,67,14,42,0.0 +13286,45,9.5,15,0.0 +13286,8,40,21,0.0 +13286,65,21.05,9,0.0 +13286,54,7.45,39,0.0 +13286,60,34,8,0.0 +13286,51,53,21,0.0 +13286,77,13,3,0.0 +13286,12,38,30,0.0 +13286,75,7.75,7,0.0 +13286,61,28.5,38,0.0 +13286,19,9.2,19,0.0 +13286,38,263.5,36,0.0 +13286,68,12.5,48,0.0 +13286,66,17,39,0.0 +13286,10,31,11,0.0 +13286,1,18,32,0.0 +13286,64,33.25,17,0.0 +13286,56,38,50,0.0 +13286,40,18.4,14,0.0 +13286,46,12,30,0.0 +13286,37,26,10,0.0 +13286,36,19,24,0.0 +13286,33,2.5,38,0.0 +13286,32,32,41,0.0 +13286,70,15,41,0.0 +13286,44,19.45,25,0.0 +13286,72,34.8,24,0.0 +13286,11,21,18,0.0 +13286,35,18,20,0.0 +13286,2,19,12,0.0 +13287,37,26,40,0.0 +13287,17,39,33,0.0 +13287,10,31,8,0.0 +13287,50,16.25,45,0.0 +13287,51,53,26,0.0 +13287,38,263.5,31,0.0 +13287,44,19.45,24,0.0 +13287,29,123.79,16,0.0 +13287,15,15.5,38,0.0 +13287,35,18,35,0.0 +13287,22,21,1,0.0 +13287,36,19,34,0.0 +13287,40,18.4,31,0.0 +13287,57,19.5,1,0.0 +13287,75,7.75,1,0.0 +13287,70,15,32,0.0 +13287,71,21.5,15,0.0 +13287,34,14,17,0.0 +13287,39,18,20,0.0 +13287,69,36,35,0.0 +13287,62,49.3,11,0.0 +13287,56,38,5,0.0 +13287,48,12.75,48,0.0 +13287,13,6,35,0.0 +13287,8,40,33,0.0 +13287,11,21,13,0.0 +13287,27,43.9,10,0.0 +13287,12,38,35,0.0 +13287,65,21.05,43,0.0 +13287,74,10,32,0.0 +13287,20,81,33,0.0 +13287,24,4.5,19,0.0 +13288,45,9.5,43,0.0 +13288,58,13.25,26,0.0 +13288,5,21.35,45,0.0 +13288,35,18,35,0.0 +13288,21,10,2,0.0 +13288,31,12.5,25,0.0 +13288,2,19,41,0.0 +13288,40,18.4,11,0.0 +13288,62,49.3,23,0.0 +13288,75,7.75,8,0.0 +13288,55,24,3,0.0 +13288,29,123.79,8,0.0 +13288,39,18,25,0.0 +13288,64,33.25,42,0.0 +13288,13,6,28,0.0 +13288,4,22,43,0.0 +13288,77,13,22,0.0 +13288,74,10,14,0.0 +13288,27,43.9,21,0.0 +13288,9,97,33,0.0 +13288,33,2.5,14,0.0 +13288,72,34.8,33,0.0 +13288,59,55,17,0.0 +13288,60,34,16,0.0 +13288,7,30,27,0.0 +13288,14,23.25,49,0.0 +13288,61,28.5,18,0.0 +13288,22,21,21,0.0 +13288,23,9,32,0.0 +13288,15,15.5,32,0.0 +13288,8,40,14,0.0 +13288,69,36,41,0.0 +13288,51,53,38,0.0 +13288,42,14,2,0.0 +13288,76,18,15,0.0 +13288,18,62.5,24,0.0 +13288,41,9.65,30,0.0 +13288,50,16.25,37,0.0 +13288,66,17,16,0.0 +13288,54,7.45,45,0.0 +13288,28,45.6,15,0.0 +13288,56,38,29,0.0 +13288,12,38,44,0.0 +13288,32,32,22,0.0 +13288,26,31.23,47,0.0 +13288,20,81,39,0.0 +13288,70,15,39,0.0 +13288,73,15,3,0.0 +13288,47,9.5,13,0.0 +13288,19,9.2,26,0.0 +13288,10,31,13,0.0 +13288,16,17.45,49,0.0 +13288,68,12.5,47,0.0 +13288,49,20,33,0.0 +13288,63,43.9,43,0.0 +13288,34,14,12,0.0 +13288,43,46,17,0.0 +13288,1,18,46,0.0 +13288,44,19.45,47,0.0 +13288,65,21.05,25,0.0 +13288,38,263.5,36,0.0 +13288,57,19.5,43,0.0 +13288,48,12.75,20,0.0 +13288,36,19,47,0.0 +13288,6,25,1,0.0 +13288,71,21.5,14,0.0 +13289,41,9.65,34,0.0 +13289,23,9,8,0.0 +13289,67,14,29,0.0 +13289,21,10,29,0.0 +13289,49,20,31,0.0 +13289,51,53,12,0.0 +13289,66,17,13,0.0 +13289,9,97,12,0.0 +13289,20,81,14,0.0 +13289,72,34.8,33,0.0 +13289,44,19.45,19,0.0 +13289,54,7.45,6,0.0 +13289,63,43.9,43,0.0 +13289,8,40,16,0.0 +13289,52,7,46,0.0 +13289,18,62.5,39,0.0 +13289,3,10,45,0.0 +13289,5,21.35,3,0.0 +13289,56,38,13,0.0 +13289,11,21,23,0.0 +13289,15,15.5,5,0.0 +13289,70,15,28,0.0 +13289,53,32.8,15,0.0 +13289,24,4.5,19,0.0 +13289,19,9.2,20,0.0 +13289,12,38,23,0.0 +13289,6,25,31,0.0 +13289,32,32,6,0.0 +13289,68,12.5,22,0.0 +13289,10,31,13,0.0 +13289,58,13.25,12,0.0 +13289,69,36,33,0.0 +13289,61,28.5,41,0.0 +13289,14,23.25,37,0.0 +13289,22,21,8,0.0 +13289,73,15,8,0.0 +13289,1,18,14,0.0 +13289,62,49.3,24,0.0 +13289,33,2.5,13,0.0 +13289,4,22,16,0.0 +13289,29,123.79,18,0.0 +13289,27,43.9,35,0.0 +13289,46,12,11,0.0 +13289,36,19,10,0.0 +13289,17,39,16,0.0 +13289,77,13,9,0.0 +13289,16,17.45,42,0.0 +13289,47,9.5,43,0.0 +13289,7,30,29,0.0 +13289,37,26,7,0.0 +13289,28,45.6,9,0.0 +13289,60,34,34,0.0 +13289,39,18,37,0.0 +13289,65,21.05,34,0.0 +13289,35,18,32,0.0 +13289,64,33.25,48,0.0 +13289,50,16.25,37,0.0 +13289,13,6,15,0.0 +13289,45,9.5,29,0.0 +13289,2,19,9,0.0 +13289,31,12.5,36,0.0 +13289,40,18.4,35,0.0 +13289,48,12.75,19,0.0 +13289,74,10,7,0.0 +13289,26,31.23,42,0.0 +13289,30,25.89,31,0.0 +13289,55,24,26,0.0 +13289,57,19.5,45,0.0 +13289,75,7.75,40,0.0 +13289,34,14,32,0.0 +13290,13,6,37,0.0 +13290,48,12.75,5,0.0 +13290,40,18.4,16,0.0 +13290,44,19.45,38,0.0 +13290,2,19,42,0.0 +13290,35,18,43,0.0 +13290,49,20,36,0.0 +13290,10,31,45,0.0 +13290,59,55,25,0.0 +13290,51,53,6,0.0 +13290,75,7.75,44,0.0 +13290,73,15,5,0.0 +13290,77,13,29,0.0 +13290,60,34,37,0.0 +13290,47,9.5,15,0.0 +13290,65,21.05,31,0.0 +13290,45,9.5,25,0.0 +13290,22,21,9,0.0 +13290,21,10,14,0.0 +13290,27,43.9,29,0.0 +13290,46,12,28,0.0 +13290,61,28.5,9,0.0 +13290,17,39,27,0.0 +13290,11,21,27,0.0 +13290,43,46,9,0.0 +13290,68,12.5,37,0.0 +13290,4,22,20,0.0 +13290,38,263.5,46,0.0 +13290,66,17,39,0.0 +13290,26,31.23,22,0.0 +13290,50,16.25,42,0.0 +13290,9,97,19,0.0 +13290,69,36,10,0.0 +13290,31,12.5,30,0.0 +13290,70,15,17,0.0 +13290,63,43.9,37,0.0 +13290,53,32.8,44,0.0 +13290,14,23.25,49,0.0 +13290,16,17.45,8,0.0 +13291,49,20,5,0.0 +13291,46,12,35,0.0 +13291,57,19.5,4,0.0 +13291,68,12.5,44,0.0 +13291,35,18,27,0.0 +13291,16,17.45,49,0.0 +13291,27,43.9,16,0.0 +13291,40,18.4,17,0.0 +13291,13,6,9,0.0 +13291,53,32.8,41,0.0 +13291,18,62.5,10,0.0 +13291,63,43.9,43,0.0 +13291,48,12.75,14,0.0 +13291,62,49.3,26,0.0 +13291,19,9.2,33,0.0 +13291,29,123.79,8,0.0 +13291,21,10,34,0.0 +13291,7,30,16,0.0 +13291,69,36,45,0.0 +13291,10,31,6,0.0 +13291,66,17,34,0.0 +13291,15,15.5,2,0.0 +13291,65,21.05,9,0.0 +13291,73,15,34,0.0 +13291,11,21,9,0.0 +13291,34,14,24,0.0 +13291,71,21.5,34,0.0 +13291,28,45.6,22,0.0 +13291,30,25.89,8,0.0 +13291,70,15,37,0.0 +13291,59,55,1,0.0 +13291,54,7.45,23,0.0 +13291,6,25,19,0.0 +13291,23,9,28,0.0 +13291,44,19.45,31,0.0 +13291,12,38,26,0.0 +13291,55,24,45,0.0 +13291,36,19,37,0.0 +13291,47,9.5,32,0.0 +13291,38,263.5,8,0.0 +13291,75,7.75,25,0.0 +13291,1,18,35,0.0 +13291,76,18,10,0.0 +13292,73,15,23,0.0 +13293,14,23.25,37,0.0 +13293,20,81,46,0.0 +13293,1,18,28,0.0 +13293,73,15,36,0.0 +13293,60,34,40,0.0 +13293,63,43.9,2,0.0 +13293,33,2.5,26,0.0 +13293,72,34.8,50,0.0 +13293,8,40,46,0.0 +13293,2,19,1,0.0 +13293,54,7.45,6,0.0 +13293,39,18,6,0.0 +13293,41,9.65,36,0.0 +13293,28,45.6,46,0.0 +13293,49,20,23,0.0 +13293,59,55,33,0.0 +13293,45,9.5,16,0.0 +13293,9,97,23,0.0 +13293,23,9,31,0.0 +13293,6,25,39,0.0 +13293,40,18.4,41,0.0 +13293,5,21.35,35,0.0 +13293,16,17.45,1,0.0 +13293,22,21,50,0.0 +13293,15,15.5,11,0.0 +13293,52,7,15,0.0 +13293,31,12.5,29,0.0 +13293,38,263.5,48,0.0 +13293,35,18,29,0.0 +13293,30,25.89,46,0.0 +13293,76,18,7,0.0 +13293,53,32.8,42,0.0 +13293,67,14,10,0.0 +13293,70,15,45,0.0 +13293,65,21.05,28,0.0 +13293,68,12.5,43,0.0 +13293,51,53,26,0.0 +13293,77,13,31,0.0 +13293,43,46,44,0.0 +13293,21,10,42,0.0 +13293,26,31.23,5,0.0 +13293,4,22,36,0.0 +13293,36,19,33,0.0 +13293,37,26,40,0.0 +13293,66,17,37,0.0 +13293,3,10,24,0.0 +13293,47,9.5,16,0.0 +13293,44,19.45,20,0.0 +13293,46,12,5,0.0 +13293,61,28.5,48,0.0 +13293,58,13.25,14,0.0 +13293,27,43.9,23,0.0 +13293,34,14,24,0.0 +13293,18,62.5,27,0.0 +13293,17,39,49,0.0 +13293,19,9.2,26,0.0 +13293,42,14,20,0.0 +13293,69,36,9,0.0 +13293,12,38,4,0.0 +13293,75,7.75,35,0.0 +13293,56,38,26,0.0 +13293,62,49.3,19,0.0 +13293,57,19.5,41,0.0 +13293,24,4.5,45,0.0 +13294,36,19,41,0.0 +13294,22,21,4,0.0 +13294,21,10,36,0.0 +13294,32,32,34,0.0 +13294,5,21.35,37,0.0 +13294,74,10,2,0.0 +13295,31,12.5,32,0.0 +13295,17,39,20,0.0 +13295,12,38,9,0.0 +13295,3,10,50,0.0 +13295,62,49.3,22,0.0 +13295,36,19,36,0.0 +13295,21,10,16,0.0 +13295,59,55,22,0.0 +13295,23,9,28,0.0 +13295,70,15,44,0.0 +13295,42,14,5,0.0 +13295,67,14,34,0.0 +13295,40,18.4,44,0.0 +13295,61,28.5,15,0.0 +13295,10,31,15,0.0 +13295,56,38,23,0.0 +13295,8,40,28,0.0 +13295,19,9.2,19,0.0 +13295,72,34.8,37,0.0 +13295,14,23.25,36,0.0 +13295,76,18,17,0.0 +13295,74,10,30,0.0 +13295,41,9.65,26,0.0 +13295,4,22,8,0.0 +13295,33,2.5,11,0.0 +13295,57,19.5,48,0.0 +13295,7,30,5,0.0 +13295,48,12.75,16,0.0 +13295,27,43.9,28,0.0 +13295,54,7.45,10,0.0 +13295,38,263.5,23,0.0 +13295,6,25,18,0.0 +13295,18,62.5,30,0.0 +13295,2,19,40,0.0 +13295,13,6,24,0.0 +13295,77,13,35,0.0 +13295,35,18,37,0.0 +13295,52,7,2,0.0 +13295,68,12.5,10,0.0 +13295,26,31.23,32,0.0 +13295,30,25.89,26,0.0 +13295,69,36,42,0.0 +13295,64,33.25,37,0.0 +13295,29,123.79,48,0.0 +13295,75,7.75,45,0.0 +13295,43,46,27,0.0 +13295,44,19.45,17,0.0 +13295,53,32.8,26,0.0 +13295,60,34,5,0.0 +13295,71,21.5,14,0.0 +13295,63,43.9,42,0.0 +13295,51,53,26,0.0 +13295,9,97,8,0.0 +13295,20,81,50,0.0 +13295,55,24,40,0.0 +13295,34,14,26,0.0 +13295,25,14,40,0.0 +13295,32,32,30,0.0 +13295,11,21,44,0.0 +13295,5,21.35,43,0.0 +13295,45,9.5,40,0.0 +13295,22,21,38,0.0 +13295,15,15.5,28,0.0 +13295,37,26,19,0.0 +13295,16,17.45,48,0.0 +13295,65,21.05,28,0.0 +13295,50,16.25,50,0.0 +13295,46,12,22,0.0 +13295,49,20,16,0.0 +13295,47,9.5,39,0.0 +13295,66,17,36,0.0 +13295,1,18,48,0.0 +13295,73,15,35,0.0 +13295,58,13.25,38,0.0 +13295,39,18,15,0.0 +13295,28,45.6,24,0.0 +13296,75,7.75,37,0.0 +13296,40,18.4,11,0.0 +13296,38,263.5,44,0.0 +13296,59,55,15,0.0 +13296,43,46,37,0.0 +13296,34,14,16,0.0 +13296,24,4.5,41,0.0 +13296,55,24,28,0.0 +13296,16,17.45,15,0.0 +13296,65,21.05,27,0.0 +13296,22,21,27,0.0 +13296,25,14,24,0.0 +13296,28,45.6,36,0.0 +13296,72,34.8,6,0.0 +13296,2,19,19,0.0 +13296,50,16.25,22,0.0 +13296,8,40,8,0.0 +13296,35,18,47,0.0 +13296,69,36,11,0.0 +13296,58,13.25,13,0.0 +13296,74,10,6,0.0 +13296,11,21,33,0.0 +13296,64,33.25,8,0.0 +13296,61,28.5,39,0.0 +13296,68,12.5,4,0.0 +13296,52,7,3,0.0 +13296,70,15,47,0.0 +13296,73,15,7,0.0 +13296,18,62.5,25,0.0 +13296,15,15.5,40,0.0 +13296,17,39,28,0.0 +13296,31,12.5,12,0.0 +13296,20,81,36,0.0 +13296,30,25.89,28,0.0 +13296,1,18,49,0.0 +13296,13,6,15,0.0 +13296,66,17,2,0.0 +13296,37,26,39,0.0 +13296,60,34,33,0.0 +13296,63,43.9,12,0.0 +13296,3,10,17,0.0 +13296,23,9,30,0.0 +13296,32,32,4,0.0 +13296,67,14,12,0.0 +13296,71,21.5,32,0.0 +13296,21,10,6,0.0 +13296,44,19.45,36,0.0 +13296,76,18,17,0.0 +13296,10,31,22,0.0 +13296,62,49.3,13,0.0 +13296,12,38,6,0.0 +13296,36,19,47,0.0 +13296,6,25,41,0.0 +13296,51,53,43,0.0 +13296,49,20,2,0.0 +13296,7,30,47,0.0 +13296,29,123.79,48,0.0 +13296,77,13,43,0.0 +13296,19,9.2,29,0.0 +13296,53,32.8,11,0.0 +13296,4,22,22,0.0 +13296,33,2.5,7,0.0 +13296,46,12,35,0.0 +13296,54,7.45,15,0.0 +13296,47,9.5,19,0.0 +13296,14,23.25,3,0.0 +13296,26,31.23,18,0.0 +13296,39,18,42,0.0 +13296,27,43.9,23,0.0 +13296,41,9.65,18,0.0 +13297,23,9,26,0.0 +13297,55,24,45,0.0 +13297,62,49.3,11,0.0 +13297,63,43.9,33,0.0 +13297,14,23.25,33,0.0 +13297,42,14,38,0.0 +13297,41,9.65,42,0.0 +13297,45,9.5,13,0.0 +13297,25,14,38,0.0 +13297,61,28.5,21,0.0 +13297,4,22,10,0.0 +13297,22,21,2,0.0 +13297,65,21.05,23,0.0 +13297,2,19,14,0.0 +13297,74,10,25,0.0 +13297,11,21,50,0.0 +13297,60,34,9,0.0 +13297,32,32,46,0.0 +13297,53,32.8,8,0.0 +13297,16,17.45,40,0.0 +13297,13,6,19,0.0 +13297,50,16.25,39,0.0 +13297,33,2.5,8,0.0 +13297,73,15,11,0.0 +13297,30,25.89,14,0.0 +13297,31,12.5,12,0.0 +13297,3,10,1,0.0 +13297,29,123.79,40,0.0 +13297,39,18,13,0.0 +13297,15,15.5,28,0.0 +13297,20,81,24,0.0 +13297,75,7.75,13,0.0 +13297,70,15,24,0.0 +13297,49,20,2,0.0 +13297,18,62.5,5,0.0 +13297,64,33.25,6,0.0 +13297,46,12,44,0.0 +13297,37,26,5,0.0 +13297,48,12.75,1,0.0 +13297,5,21.35,26,0.0 +13297,17,39,32,0.0 +13297,71,21.5,16,0.0 +13297,9,97,3,0.0 +13297,77,13,10,0.0 +13297,7,30,48,0.0 +13297,72,34.8,1,0.0 +13297,52,7,49,0.0 +13297,56,38,37,0.0 +13298,35,18,37,0.0 +13298,42,14,33,0.0 +13298,48,12.75,21,0.0 +13298,14,23.25,39,0.0 +13298,29,123.79,19,0.0 +13298,21,10,4,0.0 +13298,8,40,34,0.0 +13298,36,19,25,0.0 +13298,9,97,37,0.0 +13298,58,13.25,34,0.0 +13298,53,32.8,34,0.0 +13298,33,2.5,33,0.0 +13298,70,15,26,0.0 +13298,34,14,43,0.0 +13298,54,7.45,46,0.0 +13298,28,45.6,33,0.0 +13298,49,20,49,0.0 +13299,24,4.5,37,0.0 +13299,40,18.4,11,0.0 +13299,64,33.25,9,0.0 +13299,61,28.5,30,0.0 +13299,27,43.9,40,0.0 +13299,52,7,10,0.0 +13299,11,21,45,0.0 +13299,48,12.75,14,0.0 +13299,35,18,49,0.0 +13299,59,55,5,0.0 +13299,19,9.2,22,0.0 +13299,62,49.3,3,0.0 +13299,43,46,12,0.0 +13299,49,20,37,0.0 +13299,3,10,40,0.0 +13299,9,97,8,0.0 +13299,10,31,12,0.0 +13299,75,7.75,28,0.0 +13300,14,23.25,22,0.0 +13300,46,12,7,0.0 +13300,58,13.25,8,0.0 +13300,55,24,18,0.0 +13300,22,21,42,0.0 +13300,19,9.2,34,0.0 +13300,41,9.65,24,0.0 +13300,12,38,34,0.0 +13300,21,10,44,0.0 +13300,63,43.9,42,0.0 +13300,66,17,12,0.0 +13300,7,30,18,0.0 +13300,40,18.4,23,0.0 +13300,17,39,32,0.0 +13300,62,49.3,19,0.0 +13300,60,34,9,0.0 +13300,64,33.25,40,0.0 +13300,68,12.5,22,0.0 +13300,10,31,28,0.0 +13300,61,28.5,36,0.0 +13300,56,38,38,0.0 +13300,57,19.5,31,0.0 +13301,6,25,26,0.0 +13301,26,31.23,20,0.0 +13301,8,40,24,0.0 +13301,57,19.5,44,0.0 +13301,17,39,30,0.0 +13301,21,10,11,0.0 +13301,41,9.65,34,0.0 +13301,9,97,14,0.0 +13301,44,19.45,47,0.0 +13301,27,43.9,48,0.0 +13301,71,21.5,15,0.0 +13301,10,31,50,0.0 +13301,75,7.75,38,0.0 +13301,69,36,38,0.0 +13301,50,16.25,39,0.0 +13301,31,12.5,29,0.0 +13301,58,13.25,16,0.0 +13301,12,38,50,0.0 +13301,42,14,50,0.0 +13301,49,20,46,0.0 +13301,37,26,21,0.0 +13301,60,34,19,0.0 +13301,54,7.45,41,0.0 +13301,48,12.75,40,0.0 +13301,62,49.3,40,0.0 +13301,43,46,40,0.0 +13301,13,6,36,0.0 +13301,70,15,50,0.0 +13301,5,21.35,13,0.0 +13301,51,53,23,0.0 +13301,32,32,27,0.0 +13301,18,62.5,27,0.0 +13301,55,24,32,0.0 +13301,23,9,22,0.0 +13301,1,18,8,0.0 +13301,3,10,41,0.0 +13301,67,14,14,0.0 +13301,11,21,6,0.0 +13301,53,32.8,6,0.0 +13301,7,30,45,0.0 +13301,20,81,22,0.0 +13301,39,18,17,0.0 +13301,73,15,14,0.0 +13301,61,28.5,45,0.0 +13301,29,123.79,21,0.0 +13301,24,4.5,2,0.0 +13301,59,55,42,0.0 +13301,40,18.4,25,0.0 +13301,2,19,36,0.0 +13301,45,9.5,48,0.0 +13301,15,15.5,17,0.0 +13301,77,13,2,0.0 +13301,74,10,22,0.0 +13301,30,25.89,13,0.0 +13301,19,9.2,9,0.0 +13301,72,34.8,4,0.0 +13301,76,18,38,0.0 +13301,35,18,38,0.0 +13301,36,19,1,0.0 +13301,38,263.5,46,0.0 +13301,64,33.25,41,0.0 +13301,63,43.9,18,0.0 +13301,66,17,29,0.0 +13301,28,45.6,28,0.0 +13301,68,12.5,23,0.0 +13301,22,21,18,0.0 +13302,45,9.5,47,0.0 +13302,23,9,27,0.0 +13302,76,18,33,0.0 +13302,58,13.25,24,0.0 +13302,70,15,10,0.0 +13302,42,14,39,0.0 +13302,9,97,43,0.0 +13302,44,19.45,38,0.0 +13302,52,7,50,0.0 +13302,47,9.5,8,0.0 +13302,41,9.65,11,0.0 +13302,56,38,33,0.0 +13302,10,31,21,0.0 +13302,13,6,7,0.0 +13302,34,14,23,0.0 +13302,20,81,26,0.0 +13302,22,21,10,0.0 +13302,63,43.9,29,0.0 +13302,36,19,39,0.0 +13302,60,34,2,0.0 +13302,19,9.2,22,0.0 +13302,21,10,11,0.0 +13302,32,32,26,0.0 +13302,12,38,22,0.0 +13302,25,14,4,0.0 +13302,37,26,24,0.0 +13302,39,18,39,0.0 +13302,54,7.45,31,0.0 +13302,68,12.5,24,0.0 +13302,7,30,39,0.0 +13302,74,10,34,0.0 +13302,18,62.5,32,0.0 +13302,71,21.5,23,0.0 +13302,14,23.25,30,0.0 +13302,73,15,33,0.0 +13303,48,12.75,23,0.0 +13303,63,43.9,16,0.0 +13303,40,18.4,34,0.0 +13303,26,31.23,45,0.0 +13303,8,40,8,0.0 +13303,51,53,5,0.0 +13303,1,18,19,0.0 +13303,24,4.5,39,0.0 +13303,12,38,41,0.0 +13303,17,39,1,0.0 +13303,36,19,21,0.0 +13303,20,81,6,0.0 +13303,67,14,21,0.0 +13303,65,21.05,10,0.0 +13303,32,32,42,0.0 +13303,37,26,50,0.0 +13303,71,21.5,20,0.0 +13303,28,45.6,49,0.0 +13304,10,31,30,0.0 +13304,48,12.75,36,0.0 +13304,64,33.25,5,0.0 +13304,13,6,30,0.0 +13304,43,46,1,0.0 +13304,21,10,49,0.0 +13304,77,13,24,0.0 +13304,60,34,29,0.0 +13304,49,20,25,0.0 +13304,65,21.05,36,0.0 +13304,40,18.4,24,0.0 +13304,70,15,2,0.0 +13304,11,21,49,0.0 +13304,19,9.2,31,0.0 +13304,22,21,49,0.0 +13304,41,9.65,13,0.0 +13304,67,14,8,0.0 +13304,9,97,35,0.0 +13304,53,32.8,9,0.0 +13304,8,40,2,0.0 +13304,36,19,4,0.0 +13304,33,2.5,47,0.0 +13304,25,14,9,0.0 +13304,15,15.5,4,0.0 +13304,66,17,25,0.0 +13304,37,26,2,0.0 +13304,59,55,32,0.0 +13304,38,263.5,16,0.0 +13304,56,38,6,0.0 +13304,34,14,31,0.0 +13304,51,53,47,0.0 +13304,27,43.9,38,0.0 +13304,16,17.45,49,0.0 +13304,44,19.45,22,0.0 +13304,46,12,2,0.0 +13304,24,4.5,13,0.0 +13304,1,18,24,0.0 +13304,12,38,11,0.0 +13304,71,21.5,34,0.0 +13304,76,18,13,0.0 +13304,35,18,9,0.0 +13304,29,123.79,43,0.0 +13304,75,7.75,15,0.0 +13305,75,7.75,34,0.0 +13305,33,2.5,14,0.0 +13305,64,33.25,15,0.0 +13305,11,21,39,0.0 +13305,34,14,44,0.0 +13305,48,12.75,40,0.0 +13305,71,21.5,37,0.0 +13305,50,16.25,3,0.0 +13305,72,34.8,49,0.0 +13305,16,17.45,49,0.0 +13305,38,263.5,38,0.0 +13305,8,40,24,0.0 +13305,23,9,42,0.0 +13305,3,10,37,0.0 +13305,35,18,19,0.0 +13305,42,14,17,0.0 +13305,58,13.25,27,0.0 +13305,39,18,9,0.0 +13305,9,97,1,0.0 +13305,21,10,30,0.0 +13305,28,45.6,41,0.0 +13305,14,23.25,45,0.0 +13305,26,31.23,24,0.0 +13305,32,32,22,0.0 +13305,37,26,12,0.0 +13305,24,4.5,15,0.0 +13305,22,21,24,0.0 +13305,13,6,32,0.0 +13305,60,34,1,0.0 +13305,52,7,32,0.0 +13305,40,18.4,21,0.0 +13305,49,20,17,0.0 +13305,55,24,27,0.0 +13305,70,15,38,0.0 +13305,18,62.5,37,0.0 +13305,36,19,1,0.0 +13305,73,15,10,0.0 +13305,29,123.79,38,0.0 +13305,56,38,29,0.0 +13305,68,12.5,49,0.0 +13305,76,18,33,0.0 +13305,51,53,24,0.0 +13306,33,2.5,10,0.0 +13306,57,19.5,19,0.0 +13307,74,10,32,0.0 +13307,43,46,14,0.0 +13307,16,17.45,27,0.0 +13307,15,15.5,11,0.0 +13307,32,32,3,0.0 +13307,40,18.4,10,0.0 +13307,75,7.75,36,0.0 +13307,24,4.5,35,0.0 +13307,55,24,41,0.0 +13307,41,9.65,21,0.0 +13307,19,9.2,49,0.0 +13307,38,263.5,47,0.0 +13307,58,13.25,20,0.0 +13307,53,32.8,19,0.0 +13307,69,36,28,0.0 +13307,72,34.8,41,0.0 +13307,25,14,32,0.0 +13307,5,21.35,27,0.0 +13307,73,15,29,0.0 +13307,47,9.5,2,0.0 +13307,48,12.75,18,0.0 +13307,10,31,41,0.0 +13307,60,34,4,0.0 +13307,33,2.5,30,0.0 +13307,14,23.25,11,0.0 +13307,23,9,49,0.0 +13307,42,14,4,0.0 +13307,34,14,22,0.0 +13307,36,19,14,0.0 +13307,46,12,25,0.0 +13307,17,39,12,0.0 +13307,22,21,32,0.0 +13307,70,15,37,0.0 +13307,51,53,48,0.0 +13307,3,10,28,0.0 +13307,7,30,28,0.0 +13307,8,40,49,0.0 +13307,50,16.25,33,0.0 +13307,62,49.3,2,0.0 +13307,21,10,3,0.0 +13307,35,18,27,0.0 +13307,13,6,50,0.0 +13307,65,21.05,21,0.0 +13307,27,43.9,32,0.0 +13307,37,26,8,0.0 +13307,39,18,32,0.0 +13307,31,12.5,47,0.0 +13307,59,55,33,0.0 +13307,57,19.5,33,0.0 +13307,56,38,16,0.0 +13307,6,25,7,0.0 +13308,48,12.75,25,0.0 +13308,30,25.89,48,0.0 +13308,55,24,37,0.0 +13308,59,55,3,0.0 +13308,56,38,27,0.0 +13308,45,9.5,20,0.0 +13308,67,14,46,0.0 +13308,68,12.5,47,0.0 +13308,13,6,17,0.0 +13308,58,13.25,31,0.0 +13308,65,21.05,6,0.0 +13308,31,12.5,3,0.0 +13308,15,15.5,44,0.0 +13308,43,46,29,0.0 +13308,26,31.23,13,0.0 +13308,44,19.45,9,0.0 +13308,46,12,28,0.0 +13308,63,43.9,42,0.0 +13308,29,123.79,5,0.0 +13308,27,43.9,3,0.0 +13308,12,38,43,0.0 +13308,10,31,49,0.0 +13308,36,19,46,0.0 +13309,40,18.4,11,0.0 +13309,61,28.5,49,0.0 +13309,8,40,5,0.0 +13309,16,17.45,39,0.0 +13309,54,7.45,18,0.0 +13309,12,38,35,0.0 +13309,34,14,25,0.0 +13309,46,12,25,0.0 +13309,25,14,15,0.0 +13309,15,15.5,10,0.0 +13309,11,21,46,0.0 +13309,74,10,42,0.0 +13309,23,9,20,0.0 +13309,31,12.5,16,0.0 +13309,6,25,32,0.0 +13309,7,30,27,0.0 +13309,36,19,39,0.0 +13309,47,9.5,19,0.0 +13309,62,49.3,45,0.0 +13309,49,20,45,0.0 +13309,22,21,2,0.0 +13309,51,53,6,0.0 +13309,63,43.9,26,0.0 +13309,29,123.79,32,0.0 +13309,50,16.25,27,0.0 +13309,26,31.23,45,0.0 +13309,57,19.5,45,0.0 +13309,65,21.05,5,0.0 +13309,4,22,45,0.0 +13309,38,263.5,2,0.0 +13309,19,9.2,19,0.0 +13309,48,12.75,30,0.0 +13309,76,18,47,0.0 +13309,21,10,10,0.0 +13309,70,15,15,0.0 +13309,71,21.5,22,0.0 +13309,43,46,30,0.0 +13309,10,31,36,0.0 +13309,59,55,41,0.0 +13309,52,7,10,0.0 +13309,13,6,2,0.0 +13309,58,13.25,49,0.0 +13309,73,15,37,0.0 +13309,20,81,1,0.0 +13309,14,23.25,42,0.0 +13309,75,7.75,47,0.0 +13309,35,18,21,0.0 +13309,45,9.5,31,0.0 +13309,32,32,21,0.0 +13309,30,25.89,40,0.0 +13309,9,97,49,0.0 +13309,33,2.5,36,0.0 +13309,68,12.5,13,0.0 +13309,24,4.5,46,0.0 +13309,66,17,12,0.0 +13309,56,38,45,0.0 +13309,1,18,34,0.0 +13309,72,34.8,34,0.0 +13309,64,33.25,39,0.0 +13309,39,18,50,0.0 +13309,27,43.9,18,0.0 +13309,5,21.35,11,0.0 +13309,18,62.5,14,0.0 +13309,3,10,35,0.0 +13309,2,19,44,0.0 +13309,55,24,43,0.0 +13310,77,13,50,0.0 +13310,30,25.89,43,0.0 +13310,10,31,9,0.0 +13310,54,7.45,2,0.0 +13310,41,9.65,1,0.0 +13310,48,12.75,5,0.0 +13310,69,36,3,0.0 +13310,66,17,15,0.0 +13310,29,123.79,7,0.0 +13310,32,32,33,0.0 +13310,40,18.4,48,0.0 +13310,68,12.5,20,0.0 +13310,58,13.25,36,0.0 +13310,24,4.5,29,0.0 +13310,57,19.5,44,0.0 +13310,60,34,13,0.0 +13310,13,6,26,0.0 +13310,3,10,27,0.0 +13310,56,38,29,0.0 +13310,67,14,29,0.0 +13310,51,53,33,0.0 +13310,62,49.3,9,0.0 +13310,50,16.25,24,0.0 +13310,31,12.5,39,0.0 +13310,8,40,25,0.0 +13310,7,30,19,0.0 +13310,23,9,10,0.0 +13310,59,55,31,0.0 +13310,63,43.9,23,0.0 +13310,45,9.5,11,0.0 +13310,76,18,11,0.0 +13310,19,9.2,10,0.0 +13310,53,32.8,13,0.0 +13310,25,14,23,0.0 +13310,64,33.25,50,0.0 +13310,28,45.6,22,0.0 +13310,26,31.23,7,0.0 +13310,47,9.5,6,0.0 +13310,75,7.75,28,0.0 +13310,39,18,2,0.0 +13310,11,21,48,0.0 +13310,2,19,4,0.0 +13310,4,22,27,0.0 +13310,16,17.45,33,0.0 +13310,65,21.05,33,0.0 +13310,33,2.5,10,0.0 +13310,22,21,2,0.0 +13310,1,18,27,0.0 +13310,38,263.5,44,0.0 +13310,43,46,3,0.0 +13310,44,19.45,22,0.0 +13310,73,15,8,0.0 +13310,21,10,31,0.0 +13310,55,24,15,0.0 +13310,15,15.5,38,0.0 +13310,20,81,20,0.0 +13310,14,23.25,19,0.0 +13310,71,21.5,27,0.0 +13310,46,12,31,0.0 +13310,72,34.8,18,0.0 +13310,36,19,7,0.0 +13310,12,38,21,0.0 +13310,9,97,11,0.0 +13310,70,15,12,0.0 +13310,17,39,8,0.0 +13310,35,18,16,0.0 +13310,6,25,30,0.0 +13310,52,7,27,0.0 +13310,74,10,3,0.0 +13310,5,21.35,24,0.0 +13310,61,28.5,43,0.0 +13310,42,14,2,0.0 +13310,37,26,38,0.0 +13310,49,20,5,0.0 +13310,27,43.9,14,0.0 +13310,18,62.5,41,0.0 +13310,34,14,45,0.0 +13311,22,21,39,0.0 +13311,62,49.3,19,0.0 +13311,14,23.25,20,0.0 +13311,63,43.9,12,0.0 +13311,20,81,26,0.0 +13311,26,31.23,41,0.0 +13311,58,13.25,38,0.0 +13311,74,10,42,0.0 +13311,66,17,1,0.0 +13311,42,14,34,0.0 +13311,27,43.9,42,0.0 +13311,12,38,19,0.0 +13311,33,2.5,29,0.0 +13311,19,9.2,39,0.0 +13311,34,14,6,0.0 +13311,32,32,30,0.0 +13311,61,28.5,25,0.0 +13311,8,40,31,0.0 +13311,37,26,1,0.0 +13311,5,21.35,22,0.0 +13311,49,20,18,0.0 +13311,2,19,27,0.0 +13311,60,34,18,0.0 +13311,31,12.5,24,0.0 +13311,17,39,1,0.0 +13311,4,22,38,0.0 +13311,56,38,19,0.0 +13311,11,21,44,0.0 +13311,38,263.5,38,0.0 +13311,71,21.5,33,0.0 +13311,48,12.75,5,0.0 +13311,73,15,42,0.0 +13311,46,12,29,0.0 +13311,6,25,10,0.0 +13311,9,97,30,0.0 +13311,70,15,26,0.0 +13311,57,19.5,38,0.0 +13311,44,19.45,42,0.0 +13311,36,19,23,0.0 +13311,35,18,9,0.0 +13311,75,7.75,31,0.0 +13311,77,13,26,0.0 +13311,50,16.25,5,0.0 +13311,16,17.45,29,0.0 +13311,23,9,45,0.0 +13311,3,10,46,0.0 +13311,13,6,8,0.0 +13311,39,18,11,0.0 +13311,67,14,14,0.0 +13311,40,18.4,3,0.0 +13311,15,15.5,13,0.0 +13311,51,53,36,0.0 +13311,64,33.25,35,0.0 +13311,28,45.6,14,0.0 +13311,10,31,47,0.0 +13311,69,36,21,0.0 +13311,52,7,47,0.0 +13311,47,9.5,9,0.0 +13311,53,32.8,26,0.0 +13311,43,46,42,0.0 +13311,68,12.5,30,0.0 +13311,45,9.5,16,0.0 +13311,65,21.05,45,0.0 +13311,25,14,50,0.0 +13311,41,9.65,46,0.0 +13312,9,97,26,0.0 +13312,56,38,11,0.0 +13312,17,39,27,0.0 +13312,51,53,27,0.0 +13312,33,2.5,34,0.0 +13312,62,49.3,1,0.0 +13312,32,32,40,0.0 +13312,59,55,3,0.0 +13312,6,25,28,0.0 +13312,39,18,49,0.0 +13312,21,10,25,0.0 +13312,10,31,50,0.0 +13312,1,18,47,0.0 +13312,71,21.5,20,0.0 +13312,65,21.05,43,0.0 +13312,45,9.5,8,0.0 +13312,49,20,10,0.0 +13312,61,28.5,8,0.0 +13312,75,7.75,11,0.0 +13312,12,38,17,0.0 +13312,11,21,27,0.0 +13312,41,9.65,23,0.0 +13312,22,21,42,0.0 +13312,18,62.5,18,0.0 +13312,68,12.5,1,0.0 +13312,55,24,21,0.0 +13312,31,12.5,1,0.0 +13312,70,15,4,0.0 +13312,19,9.2,7,0.0 +13312,63,43.9,21,0.0 +13313,60,34,29,0.0 +13313,29,123.79,10,0.0 +13313,34,14,5,0.0 +13313,73,15,29,0.0 +13313,70,15,14,0.0 +13313,65,21.05,44,0.0 +13314,28,45.6,15,0.0 +13314,48,12.75,48,0.0 +13314,65,21.05,20,0.0 +13314,72,34.8,30,0.0 +13314,3,10,14,0.0 +13314,43,46,14,0.0 +13314,26,31.23,48,0.0 +13314,42,14,46,0.0 +13314,19,9.2,10,0.0 +13314,67,14,8,0.0 +13314,61,28.5,23,0.0 +13314,56,38,24,0.0 +13314,23,9,24,0.0 +13314,20,81,19,0.0 +13314,46,12,10,0.0 +13314,16,17.45,32,0.0 +13314,10,31,17,0.0 +13314,66,17,25,0.0 +13314,68,12.5,44,0.0 +13314,76,18,36,0.0 +13314,35,18,45,0.0 +13314,50,16.25,26,0.0 +13314,36,19,28,0.0 +13314,44,19.45,15,0.0 +13314,15,15.5,23,0.0 +13314,1,18,47,0.0 +13314,49,20,3,0.0 +13314,73,15,48,0.0 +13314,39,18,35,0.0 +13314,34,14,40,0.0 +13314,60,34,19,0.0 +13314,5,21.35,30,0.0 +13314,71,21.5,23,0.0 +13314,62,49.3,4,0.0 +13314,64,33.25,32,0.0 +13314,53,32.8,41,0.0 +13314,22,21,26,0.0 +13314,4,22,44,0.0 +13314,31,12.5,48,0.0 +13314,8,40,7,0.0 +13314,38,263.5,24,0.0 +13314,30,25.89,49,0.0 +13314,18,62.5,40,0.0 +13314,14,23.25,21,0.0 +13314,24,4.5,29,0.0 +13314,12,38,28,0.0 +13314,29,123.79,25,0.0 +13314,47,9.5,6,0.0 +13314,51,53,5,0.0 +13314,9,97,16,0.0 +13314,25,14,12,0.0 +13314,69,36,40,0.0 +13314,17,39,29,0.0 +13314,58,13.25,19,0.0 +13314,13,6,27,0.0 +13314,32,32,1,0.0 +13314,59,55,30,0.0 +13314,6,25,21,0.0 +13315,33,2.5,1,0.0 +13315,24,4.5,36,0.0 +13315,34,14,25,0.0 +13315,7,30,1,0.0 +13315,63,43.9,43,0.0 +13315,50,16.25,16,0.0 +13315,6,25,4,0.0 +13315,22,21,43,0.0 +13315,66,17,38,0.0 +13315,31,12.5,32,0.0 +13315,51,53,25,0.0 +13315,17,39,39,0.0 +13315,8,40,29,0.0 +13315,27,43.9,21,0.0 +13315,21,10,1,0.0 +13315,13,6,26,0.0 +13315,45,9.5,22,0.0 +13315,32,32,49,0.0 +13315,53,32.8,2,0.0 +13315,59,55,11,0.0 +13315,40,18.4,45,0.0 +13315,3,10,10,0.0 +13315,4,22,20,0.0 +13315,26,31.23,21,0.0 +13315,46,12,26,0.0 +13315,67,14,12,0.0 +13315,28,45.6,16,0.0 +13315,10,31,5,0.0 +13315,52,7,25,0.0 +13315,20,81,17,0.0 +13315,42,14,6,0.0 +13315,62,49.3,18,0.0 +13315,49,20,46,0.0 +13315,71,21.5,10,0.0 +13315,1,18,10,0.0 +13315,76,18,15,0.0 +13315,55,24,45,0.0 +13315,12,38,10,0.0 +13315,15,15.5,28,0.0 +13315,58,13.25,49,0.0 +13315,75,7.75,40,0.0 +13315,72,34.8,19,0.0 +13315,65,21.05,42,0.0 +13315,29,123.79,28,0.0 +13315,9,97,44,0.0 +13315,14,23.25,23,0.0 +13315,69,36,5,0.0 +13315,47,9.5,41,0.0 +13315,44,19.45,37,0.0 +13315,43,46,32,0.0 +13315,73,15,17,0.0 +13315,68,12.5,16,0.0 +13315,57,19.5,39,0.0 +13315,61,28.5,23,0.0 +13315,25,14,24,0.0 +13315,41,9.65,21,0.0 +13315,35,18,17,0.0 +13315,60,34,30,0.0 +13315,77,13,13,0.0 +13315,5,21.35,11,0.0 +13315,56,38,50,0.0 +13315,48,12.75,34,0.0 +13315,19,9.2,11,0.0 +13315,37,26,43,0.0 +13315,38,263.5,31,0.0 +13315,23,9,32,0.0 +13315,16,17.45,15,0.0 +13315,54,7.45,48,0.0 +13315,74,10,24,0.0 +13315,30,25.89,15,0.0 +13315,70,15,30,0.0 +13315,64,33.25,29,0.0 +13315,18,62.5,9,0.0 +13315,2,19,40,0.0 +13315,36,19,25,0.0 +13315,11,21,29,0.0 +13315,39,18,43,0.0 +13316,14,23.25,31,0.0 +13316,72,34.8,23,0.0 +13316,2,19,50,0.0 +13316,58,13.25,23,0.0 +13316,59,55,39,0.0 +13316,57,19.5,5,0.0 +13316,54,7.45,49,0.0 +13316,60,34,48,0.0 +13316,42,14,32,0.0 +13316,48,12.75,24,0.0 +13316,53,32.8,15,0.0 +13316,23,9,9,0.0 +13316,38,263.5,48,0.0 +13316,33,2.5,5,0.0 +13316,75,7.75,4,0.0 +13316,51,53,10,0.0 +13316,41,9.65,25,0.0 +13316,50,16.25,4,0.0 +13316,35,18,43,0.0 +13316,61,28.5,32,0.0 +13316,64,33.25,30,0.0 +13316,28,45.6,11,0.0 +13316,20,81,16,0.0 +13316,67,14,48,0.0 +13316,74,10,24,0.0 +13316,37,26,37,0.0 +13316,71,21.5,15,0.0 +13316,30,25.89,16,0.0 +13316,27,43.9,21,0.0 +13316,36,19,18,0.0 +13316,66,17,10,0.0 +13316,40,18.4,3,0.0 +13316,18,62.5,22,0.0 +13316,52,7,8,0.0 +13316,13,6,21,0.0 +13316,32,32,33,0.0 +13316,69,36,7,0.0 +13316,76,18,13,0.0 +13316,21,10,44,0.0 +13316,6,25,41,0.0 +13316,5,21.35,8,0.0 +13316,19,9.2,49,0.0 +13316,10,31,29,0.0 +13316,49,20,46,0.0 +13316,68,12.5,36,0.0 +13316,63,43.9,16,0.0 +13316,77,13,5,0.0 +13316,4,22,47,0.0 +13316,25,14,36,0.0 +13316,24,4.5,44,0.0 +13316,31,12.5,31,0.0 +13316,15,15.5,11,0.0 +13316,8,40,15,0.0 +13316,62,49.3,26,0.0 +13316,9,97,50,0.0 +13316,12,38,27,0.0 +13316,55,24,6,0.0 +13316,3,10,8,0.0 +13316,16,17.45,24,0.0 +13316,11,21,11,0.0 +13316,22,21,14,0.0 +13316,26,31.23,4,0.0 +13316,56,38,33,0.0 +13316,34,14,38,0.0 +13316,46,12,6,0.0 +13316,47,9.5,1,0.0 +13317,72,34.8,8,0.0 +13317,60,34,32,0.0 +13317,8,40,1,0.0 +13317,67,14,26,0.0 +13317,21,10,10,0.0 +13317,47,9.5,36,0.0 +13317,17,39,32,0.0 +13317,63,43.9,17,0.0 +13317,16,17.45,4,0.0 +13317,2,19,12,0.0 +13317,48,12.75,4,0.0 +13317,43,46,25,0.0 +13317,73,15,48,0.0 +13317,61,28.5,38,0.0 +13317,46,12,31,0.0 +13317,64,33.25,41,0.0 +13317,14,23.25,30,0.0 +13317,26,31.23,32,0.0 +13317,34,14,48,0.0 +13318,48,12.75,21,0.0 +13318,61,28.5,10,0.0 +13318,47,9.5,41,0.0 +13318,4,22,47,0.0 +13318,5,21.35,26,0.0 +13318,70,15,25,0.0 +13318,40,18.4,9,0.0 +13318,15,15.5,13,0.0 +13318,57,19.5,26,0.0 +13318,75,7.75,48,0.0 +13318,31,12.5,15,0.0 +13318,76,18,24,0.0 +13318,51,53,11,0.0 +13318,41,9.65,43,0.0 +13318,42,14,22,0.0 +13318,20,81,1,0.0 +13318,52,7,25,0.0 +13318,13,6,22,0.0 +13318,35,18,36,0.0 +13318,19,9.2,33,0.0 +13318,45,9.5,38,0.0 +13318,62,49.3,37,0.0 +13318,24,4.5,28,0.0 +13318,77,13,14,0.0 +13318,37,26,42,0.0 +13318,34,14,26,0.0 +13318,26,31.23,32,0.0 +13319,56,38,17,0.0 +13319,54,7.45,36,0.0 +13319,4,22,15,0.0 +13319,75,7.75,25,0.0 +13319,52,7,37,0.0 +13319,69,36,47,0.0 +13319,11,21,4,0.0 +13319,16,17.45,31,0.0 +13319,8,40,36,0.0 +13319,22,21,21,0.0 +13319,58,13.25,7,0.0 +13319,63,43.9,42,0.0 +13319,42,14,21,0.0 +13319,70,15,38,0.0 +13319,17,39,5,0.0 +13319,15,15.5,45,0.0 +13319,19,9.2,49,0.0 +13319,55,24,26,0.0 +13319,44,19.45,29,0.0 +13319,71,21.5,15,0.0 +13319,23,9,50,0.0 +13319,40,18.4,47,0.0 +13319,43,46,42,0.0 +13320,32,32,15,0.0 +13320,66,17,34,0.0 +13320,58,13.25,28,0.0 +13320,75,7.75,47,0.0 +13320,16,17.45,24,0.0 +13320,74,10,16,0.0 +13320,70,15,45,0.0 +13320,31,12.5,28,0.0 +13320,54,7.45,15,0.0 +13320,30,25.89,35,0.0 +13320,64,33.25,22,0.0 +13320,73,15,30,0.0 +13320,62,49.3,3,0.0 +13320,17,39,10,0.0 +13320,4,22,26,0.0 +13320,29,123.79,17,0.0 +13320,53,32.8,18,0.0 +13320,71,21.5,18,0.0 +13320,52,7,24,0.0 +13320,23,9,22,0.0 +13320,44,19.45,20,0.0 +13320,14,23.25,39,0.0 +13320,2,19,23,0.0 +13320,37,26,40,0.0 +13320,26,31.23,8,0.0 +13321,12,38,1,0.0 +13321,47,9.5,4,0.0 +13321,63,43.9,26,0.0 +13321,42,14,47,0.0 +13321,2,19,35,0.0 +13321,26,31.23,12,0.0 +13321,11,21,9,0.0 +13321,54,7.45,39,0.0 +13321,14,23.25,22,0.0 +13321,22,21,37,0.0 +13321,16,17.45,24,0.0 +13321,77,13,20,0.0 +13321,3,10,5,0.0 +13321,8,40,31,0.0 +13321,33,2.5,20,0.0 +13321,73,15,41,0.0 +13321,23,9,38,0.0 +13321,66,17,17,0.0 +13321,52,7,28,0.0 +13321,72,34.8,21,0.0 +13321,9,97,25,0.0 +13321,44,19.45,49,0.0 +13321,17,39,11,0.0 +13321,49,20,18,0.0 +13321,69,36,7,0.0 +13321,10,31,23,0.0 +13321,7,30,40,0.0 +13321,24,4.5,44,0.0 +13321,31,12.5,16,0.0 +13321,57,19.5,21,0.0 +13321,38,263.5,6,0.0 +13321,75,7.75,27,0.0 +13321,5,21.35,15,0.0 +13321,39,18,50,0.0 +13321,55,24,39,0.0 +13321,34,14,5,0.0 +13321,37,26,44,0.0 +13321,74,10,2,0.0 +13321,21,10,33,0.0 +13321,40,18.4,22,0.0 +13321,35,18,21,0.0 +13321,45,9.5,48,0.0 +13321,58,13.25,14,0.0 +13321,18,62.5,11,0.0 +13321,76,18,33,0.0 +13321,13,6,49,0.0 +13321,27,43.9,41,0.0 +13321,51,53,29,0.0 +13322,56,38,3,0.0 +13322,38,263.5,16,0.0 +13322,42,14,47,0.0 +13322,13,6,20,0.0 +13322,43,46,39,0.0 +13322,71,21.5,2,0.0 +13322,55,24,7,0.0 +13322,17,39,36,0.0 +13322,1,18,48,0.0 +13322,15,15.5,21,0.0 +13322,33,2.5,44,0.0 +13322,36,19,16,0.0 +13322,12,38,2,0.0 +13322,22,21,47,0.0 +13322,16,17.45,13,0.0 +13322,30,25.89,7,0.0 +13322,49,20,12,0.0 +13322,18,62.5,50,0.0 +13322,41,9.65,43,0.0 +13322,6,25,42,0.0 +13322,73,15,36,0.0 +13322,25,14,49,0.0 +13322,64,33.25,14,0.0 +13322,29,123.79,47,0.0 +13322,67,14,7,0.0 +13322,31,12.5,24,0.0 +13322,62,49.3,19,0.0 +13322,40,18.4,48,0.0 +13322,11,21,33,0.0 +13322,57,19.5,31,0.0 +13322,19,9.2,44,0.0 +13322,44,19.45,10,0.0 +13322,10,31,47,0.0 +13322,3,10,5,0.0 +13322,32,32,31,0.0 +13322,48,12.75,17,0.0 +13322,27,43.9,47,0.0 +13322,72,34.8,21,0.0 +13322,35,18,37,0.0 +13322,21,10,40,0.0 +13322,54,7.45,44,0.0 +13322,61,28.5,4,0.0 +13322,23,9,43,0.0 +13322,69,36,39,0.0 +13322,75,7.75,15,0.0 +13322,20,81,12,0.0 +13322,70,15,17,0.0 +13322,46,12,42,0.0 +13322,60,34,42,0.0 +13322,14,23.25,19,0.0 +13322,50,16.25,33,0.0 +13322,66,17,26,0.0 +13323,43,46,35,0.0 +13323,53,32.8,30,0.0 +13323,15,15.5,34,0.0 +13323,13,6,49,0.0 +13323,37,26,49,0.0 +13323,29,123.79,40,0.0 +13323,3,10,37,0.0 +13323,59,55,24,0.0 +13323,23,9,23,0.0 +13323,12,38,17,0.0 +13323,30,25.89,24,0.0 +13323,66,17,38,0.0 +13323,62,49.3,39,0.0 +13323,1,18,26,0.0 +13323,36,19,8,0.0 +13323,26,31.23,17,0.0 +13323,21,10,20,0.0 +13323,63,43.9,43,0.0 +13323,40,18.4,39,0.0 +13323,49,20,5,0.0 +13323,16,17.45,18,0.0 +13323,60,34,15,0.0 +13323,39,18,40,0.0 +13323,55,24,7,0.0 +13323,69,36,18,0.0 +13323,7,30,50,0.0 +13323,24,4.5,47,0.0 +13323,67,14,27,0.0 +13323,32,32,42,0.0 +13323,10,31,44,0.0 +13323,74,10,22,0.0 +13323,64,33.25,4,0.0 +13323,2,19,12,0.0 +13323,42,14,8,0.0 +13323,61,28.5,11,0.0 +13323,11,21,20,0.0 +13323,51,53,30,0.0 +13323,4,22,40,0.0 +13323,77,13,43,0.0 +13323,73,15,48,0.0 +13323,47,9.5,27,0.0 +13323,14,23.25,43,0.0 +13323,56,38,37,0.0 +13323,52,7,19,0.0 +13323,76,18,49,0.0 +13323,41,9.65,28,0.0 +13323,20,81,13,0.0 +13323,33,2.5,2,0.0 +13323,25,14,23,0.0 +13323,57,19.5,24,0.0 +13323,50,16.25,41,0.0 +13323,35,18,6,0.0 +13323,18,62.5,19,0.0 +13323,8,40,38,0.0 +13323,71,21.5,34,0.0 +13323,46,12,44,0.0 +13323,72,34.8,13,0.0 +13323,31,12.5,7,0.0 +13323,75,7.75,15,0.0 +13323,19,9.2,21,0.0 +13323,5,21.35,15,0.0 +13323,22,21,6,0.0 +13323,65,21.05,24,0.0 +13323,17,39,34,0.0 +13323,70,15,46,0.0 +13323,54,7.45,1,0.0 +13324,77,13,16,0.0 +13324,25,14,48,0.0 +13324,76,18,15,0.0 +13324,13,6,8,0.0 +13324,59,55,13,0.0 +13324,62,49.3,4,0.0 +13324,20,81,47,0.0 +13324,37,26,32,0.0 +13324,23,9,50,0.0 +13324,61,28.5,28,0.0 +13324,18,62.5,14,0.0 +13324,63,43.9,36,0.0 +13324,44,19.45,19,0.0 +13324,71,21.5,37,0.0 +13324,14,23.25,19,0.0 +13324,22,21,20,0.0 +13324,43,46,35,0.0 +13324,28,45.6,7,0.0 +13324,17,39,20,0.0 +13324,10,31,49,0.0 +13324,53,32.8,50,0.0 +13324,42,14,20,0.0 +13324,15,15.5,31,0.0 +13324,27,43.9,31,0.0 +13324,4,22,29,0.0 +13324,12,38,17,0.0 +13324,52,7,29,0.0 +13324,35,18,30,0.0 +13324,68,12.5,40,0.0 +13324,67,14,12,0.0 +13324,75,7.75,35,0.0 +13324,65,21.05,15,0.0 +13324,2,19,26,0.0 +13324,55,24,13,0.0 +13325,31,12.5,47,0.0 +13325,12,38,44,0.0 +13325,42,14,7,0.0 +13325,6,25,24,0.0 +13325,21,10,8,0.0 +13325,9,97,28,0.0 +13325,59,55,5,0.0 +13325,51,53,30,0.0 +13325,55,24,50,0.0 +13325,22,21,47,0.0 +13325,53,32.8,19,0.0 +13325,64,33.25,46,0.0 +13325,47,9.5,9,0.0 +13325,13,6,32,0.0 +13325,19,9.2,22,0.0 +13325,38,263.5,45,0.0 +13325,48,12.75,44,0.0 +13325,71,21.5,28,0.0 +13325,10,31,17,0.0 +13325,41,9.65,41,0.0 +13325,1,18,38,0.0 +13325,43,46,22,0.0 +13325,58,13.25,46,0.0 +13325,27,43.9,45,0.0 +13326,39,18,5,0.0 +13326,12,38,33,0.0 +13326,48,12.75,27,0.0 +13326,64,33.25,46,0.0 +13326,57,19.5,24,0.0 +13326,30,25.89,45,0.0 +13326,19,9.2,8,0.0 +13326,42,14,12,0.0 +13326,4,22,25,0.0 +13326,41,9.65,18,0.0 +13326,77,13,20,0.0 +13326,70,15,25,0.0 +13326,31,12.5,9,0.0 +13326,21,10,9,0.0 +13326,74,10,18,0.0 +13326,35,18,4,0.0 +13326,54,7.45,9,0.0 +13326,17,39,25,0.0 +13326,55,24,6,0.0 +13326,52,7,15,0.0 +13326,40,18.4,9,0.0 +13326,20,81,41,0.0 +13326,8,40,35,0.0 +13326,45,9.5,27,0.0 +13326,62,49.3,8,0.0 +13326,14,23.25,38,0.0 +13326,53,32.8,9,0.0 +13326,24,4.5,48,0.0 +13326,38,263.5,34,0.0 +13326,34,14,9,0.0 +13326,47,9.5,3,0.0 +13326,51,53,22,0.0 +13326,32,32,19,0.0 +13326,27,43.9,30,0.0 +13326,29,123.79,17,0.0 +13326,61,28.5,38,0.0 +13326,26,31.23,21,0.0 +13326,71,21.5,36,0.0 +13326,28,45.6,41,0.0 +13326,25,14,8,0.0 +13326,69,36,28,0.0 +13326,68,12.5,2,0.0 +13326,63,43.9,1,0.0 +13326,2,19,15,0.0 +13326,59,55,10,0.0 +13326,75,7.75,18,0.0 +13326,9,97,15,0.0 +13326,76,18,44,0.0 +13326,37,26,9,0.0 +13326,22,21,43,0.0 +13326,50,16.25,9,0.0 +13326,67,14,26,0.0 +13326,3,10,1,0.0 +13326,23,9,48,0.0 +13326,16,17.45,26,0.0 +13326,15,15.5,24,0.0 +13326,33,2.5,34,0.0 +13326,6,25,31,0.0 +13326,44,19.45,5,0.0 +13326,73,15,34,0.0 +13326,1,18,49,0.0 +13326,49,20,39,0.0 +13326,43,46,38,0.0 +13326,72,34.8,46,0.0 +13326,58,13.25,26,0.0 +13326,18,62.5,13,0.0 +13326,36,19,25,0.0 +13326,13,6,34,0.0 +13326,46,12,19,0.0 +13326,5,21.35,29,0.0 +13326,10,31,41,0.0 +13327,5,21.35,36,0.0 +13327,55,24,24,0.0 +13327,23,9,20,0.0 +13327,49,20,45,0.0 +13327,10,31,11,0.0 +13327,48,12.75,27,0.0 +13327,17,39,14,0.0 +13327,60,34,31,0.0 +13327,29,123.79,7,0.0 +13327,44,19.45,8,0.0 +13327,76,18,28,0.0 +13327,65,21.05,23,0.0 +13327,57,19.5,14,0.0 +13327,35,18,18,0.0 +13327,6,25,18,0.0 +13327,20,81,20,0.0 +13327,3,10,48,0.0 +13327,50,16.25,50,0.0 +13328,16,17.45,22,0.0 +13328,4,22,31,0.0 +13328,70,15,43,0.0 +13328,60,34,33,0.0 +13328,28,45.6,23,0.0 +13328,47,9.5,28,0.0 +13328,64,33.25,14,0.0 +13328,8,40,30,0.0 +13328,19,9.2,39,0.0 +13328,26,31.23,12,0.0 +13328,2,19,37,0.0 +13328,11,21,31,0.0 +13328,35,18,12,0.0 +13328,17,39,36,0.0 +13328,3,10,24,0.0 +13328,29,123.79,33,0.0 +13328,49,20,39,0.0 +13328,25,14,11,0.0 +13328,51,53,42,0.0 +13328,48,12.75,7,0.0 +13328,12,38,22,0.0 +13328,6,25,22,0.0 +13328,24,4.5,47,0.0 +13328,32,32,39,0.0 +13328,59,55,43,0.0 +13328,69,36,22,0.0 +13328,66,17,40,0.0 +13328,61,28.5,33,0.0 +13328,15,15.5,11,0.0 +13328,41,9.65,20,0.0 +13328,21,10,41,0.0 +13328,63,43.9,7,0.0 +13328,77,13,49,0.0 +13328,31,12.5,19,0.0 +13328,14,23.25,13,0.0 +13328,68,12.5,32,0.0 +13328,9,97,11,0.0 +13328,5,21.35,24,0.0 +13328,34,14,12,0.0 +13328,71,21.5,47,0.0 +13328,33,2.5,26,0.0 +13328,73,15,20,0.0 +13328,36,19,45,0.0 +13328,52,7,49,0.0 +13328,40,18.4,21,0.0 +13328,57,19.5,25,0.0 +13328,37,26,17,0.0 +13328,43,46,31,0.0 +13328,46,12,18,0.0 +13328,22,21,49,0.0 +13328,53,32.8,6,0.0 +13328,10,31,13,0.0 +13328,20,81,13,0.0 +13328,27,43.9,1,0.0 +13328,58,13.25,49,0.0 +13328,62,49.3,23,0.0 +13328,65,21.05,6,0.0 +13328,23,9,26,0.0 +13328,55,24,6,0.0 +13328,54,7.45,39,0.0 +13328,67,14,3,0.0 +13328,50,16.25,7,0.0 +13328,38,263.5,22,0.0 +13328,7,30,34,0.0 +13328,56,38,47,0.0 +13328,44,19.45,39,0.0 +13328,30,25.89,10,0.0 +13329,9,97,12,0.0 +13329,76,18,3,0.0 +13329,8,40,5,0.0 +13329,39,18,23,0.0 +13329,53,32.8,31,0.0 +13329,73,15,7,0.0 +13329,35,18,48,0.0 +13329,2,19,8,0.0 +13329,33,2.5,9,0.0 +13329,22,21,26,0.0 +13329,74,10,1,0.0 +13329,5,21.35,10,0.0 +13329,23,9,6,0.0 +13329,38,263.5,39,0.0 +13329,31,12.5,17,0.0 +13329,19,9.2,33,0.0 +13329,43,46,39,0.0 +13329,15,15.5,11,0.0 +13329,59,55,45,0.0 +13329,20,81,22,0.0 +13329,12,38,49,0.0 +13329,60,34,15,0.0 +13329,46,12,37,0.0 +13329,62,49.3,11,0.0 +13329,36,19,28,0.0 +13329,71,21.5,6,0.0 +13329,40,18.4,2,0.0 +13329,34,14,27,0.0 +13329,45,9.5,9,0.0 +13329,41,9.65,13,0.0 +13329,65,21.05,38,0.0 +13329,7,30,37,0.0 +13329,70,15,16,0.0 +13329,14,23.25,20,0.0 +13329,16,17.45,13,0.0 +13329,1,18,20,0.0 +13329,21,10,11,0.0 +13329,24,4.5,27,0.0 +13329,77,13,38,0.0 +13329,3,10,4,0.0 +13329,49,20,38,0.0 +13329,48,12.75,24,0.0 +13329,26,31.23,13,0.0 +13329,52,7,26,0.0 +13329,29,123.79,43,0.0 +13329,64,33.25,48,0.0 +13329,50,16.25,22,0.0 +13329,57,19.5,12,0.0 +13329,11,21,14,0.0 +13329,6,25,26,0.0 +13329,32,32,22,0.0 +13329,61,28.5,50,0.0 +13329,47,9.5,47,0.0 +13329,69,36,41,0.0 +13329,42,14,42,0.0 +13329,30,25.89,12,0.0 +13329,10,31,10,0.0 +13329,54,7.45,47,0.0 +13329,18,62.5,48,0.0 +13329,27,43.9,29,0.0 +13329,13,6,34,0.0 +13329,58,13.25,40,0.0 +13329,68,12.5,32,0.0 +13329,28,45.6,27,0.0 +13329,56,38,33,0.0 +13329,63,43.9,46,0.0 +13329,25,14,28,0.0 +13329,37,26,40,0.0 +13329,75,7.75,3,0.0 +13329,4,22,28,0.0 +13329,67,14,7,0.0 +13330,15,15.5,19,0.0 +13330,51,53,28,0.0 +13330,5,21.35,5,0.0 +13330,18,62.5,23,0.0 +13330,33,2.5,34,0.0 +13330,76,18,42,0.0 +13330,67,14,16,0.0 +13330,54,7.45,49,0.0 +13330,29,123.79,24,0.0 +13330,77,13,15,0.0 +13330,21,10,42,0.0 +13330,24,4.5,15,0.0 +13330,40,18.4,14,0.0 +13330,64,33.25,1,0.0 +13330,66,17,33,0.0 +13330,57,19.5,41,0.0 +13330,50,16.25,40,0.0 +13330,8,40,48,0.0 +13330,38,263.5,34,0.0 +13330,47,9.5,23,0.0 +13330,74,10,11,0.0 +13330,1,18,11,0.0 +13330,32,32,8,0.0 +13330,46,12,28,0.0 +13330,17,39,22,0.0 +13330,6,25,34,0.0 +13330,73,15,38,0.0 +13330,16,17.45,13,0.0 +13330,27,43.9,42,0.0 +13330,45,9.5,19,0.0 +13330,4,22,38,0.0 +13330,61,28.5,5,0.0 +13330,34,14,50,0.0 +13330,44,19.45,39,0.0 +13330,75,7.75,28,0.0 +13330,31,12.5,33,0.0 +13330,23,9,42,0.0 +13331,33,2.5,49,0.0 +13331,17,39,1,0.0 +13331,67,14,49,0.0 +13331,14,23.25,31,0.0 +13331,19,9.2,23,0.0 +13331,18,62.5,47,0.0 +13331,69,36,23,0.0 +13331,21,10,47,0.0 +13331,47,9.5,15,0.0 +13331,43,46,46,0.0 +13331,61,28.5,28,0.0 +13331,53,32.8,11,0.0 +13331,11,21,44,0.0 +13331,42,14,12,0.0 +13331,64,33.25,1,0.0 +13331,29,123.79,2,0.0 +13331,38,263.5,32,0.0 +13331,44,19.45,45,0.0 +13331,4,22,30,0.0 +13331,45,9.5,24,0.0 +13331,9,97,23,0.0 +13331,23,9,31,0.0 +13331,74,10,3,0.0 +13331,5,21.35,17,0.0 +13331,77,13,34,0.0 +13331,15,15.5,8,0.0 +13332,20,81,26,0.0 +13332,24,4.5,11,0.0 +13332,32,32,1,0.0 +13332,61,28.5,10,0.0 +13332,35,18,44,0.0 +13332,72,34.8,26,0.0 +13332,50,16.25,18,0.0 +13332,33,2.5,39,0.0 +13332,13,6,35,0.0 +13332,31,12.5,9,0.0 +13332,42,14,41,0.0 +13333,50,16.25,4,0.0 +13333,68,12.5,4,0.0 +13333,37,26,38,0.0 +13333,14,23.25,47,0.0 +13333,43,46,3,0.0 +13333,48,12.75,22,0.0 +13333,36,19,39,0.0 +13333,65,21.05,48,0.0 +13333,63,43.9,1,0.0 +13333,38,263.5,21,0.0 +13333,54,7.45,30,0.0 +13333,24,4.5,5,0.0 +13333,39,18,26,0.0 +13333,33,2.5,43,0.0 +13333,74,10,22,0.0 +13333,42,14,43,0.0 +13333,11,21,18,0.0 +13333,21,10,35,0.0 +13333,22,21,16,0.0 +13333,66,17,46,0.0 +13333,5,21.35,26,0.0 +13333,27,43.9,30,0.0 +13333,53,32.8,30,0.0 +13333,31,12.5,33,0.0 +13333,16,17.45,2,0.0 +13333,41,9.65,29,0.0 +13333,10,31,42,0.0 +13333,69,36,41,0.0 +13333,46,12,33,0.0 +13333,70,15,18,0.0 +13333,18,62.5,23,0.0 +13333,57,19.5,2,0.0 +13333,23,9,18,0.0 +13334,2,19,32,0.0 +13334,21,10,47,0.0 +13334,40,18.4,19,0.0 +13334,61,28.5,14,0.0 +13334,63,43.9,33,0.0 +13334,17,39,7,0.0 +13334,36,19,46,0.0 +13334,28,45.6,43,0.0 +13334,53,32.8,33,0.0 +13334,49,20,23,0.0 +13334,59,55,29,0.0 +13334,14,23.25,31,0.0 +13334,25,14,18,0.0 +13334,48,12.75,50,0.0 +13334,3,10,30,0.0 +13334,5,21.35,16,0.0 +13334,20,81,14,0.0 +13334,13,6,2,0.0 +13334,47,9.5,11,0.0 +13334,69,36,41,0.0 +13334,39,18,33,0.0 +13334,44,19.45,11,0.0 +13334,41,9.65,29,0.0 +13334,35,18,26,0.0 +13334,27,43.9,36,0.0 +13334,12,38,24,0.0 +13334,18,62.5,33,0.0 +13334,38,263.5,48,0.0 +13334,43,46,23,0.0 +13334,33,2.5,12,0.0 +13334,23,9,20,0.0 +13334,54,7.45,27,0.0 +13334,9,97,5,0.0 +13334,45,9.5,19,0.0 +13334,62,49.3,49,0.0 +13334,42,14,15,0.0 +13334,1,18,4,0.0 +13334,19,9.2,28,0.0 +13334,15,15.5,46,0.0 +13334,10,31,7,0.0 +13334,32,32,20,0.0 +13334,72,34.8,12,0.0 +13334,7,30,5,0.0 +13334,66,17,47,0.0 +13334,11,21,4,0.0 +13334,55,24,7,0.0 +13334,52,7,21,0.0 +13334,37,26,10,0.0 +13334,65,21.05,29,0.0 +13334,16,17.45,46,0.0 +13334,30,25.89,38,0.0 +13334,24,4.5,10,0.0 +13334,68,12.5,32,0.0 +13334,58,13.25,28,0.0 +13335,25,14,14,0.0 +13335,75,7.75,16,0.0 +13335,47,9.5,31,0.0 +13335,16,17.45,47,0.0 +13335,53,32.8,5,0.0 +13335,63,43.9,9,0.0 +13335,51,53,45,0.0 +13335,18,62.5,23,0.0 +13335,32,32,28,0.0 +13335,8,40,30,0.0 +13335,17,39,20,0.0 +13335,1,18,29,0.0 +13335,41,9.65,37,0.0 +13335,29,123.79,32,0.0 +13335,5,21.35,45,0.0 +13335,19,9.2,20,0.0 +13335,9,97,35,0.0 +13335,22,21,33,0.0 +13335,74,10,26,0.0 +13335,52,7,3,0.0 +13335,49,20,12,0.0 +13335,64,33.25,20,0.0 +13335,70,15,47,0.0 +13335,59,55,22,0.0 +13335,7,30,22,0.0 +13335,72,34.8,12,0.0 +13335,2,19,40,0.0 +13335,42,14,38,0.0 +13335,27,43.9,40,0.0 +13335,30,25.89,49,0.0 +13335,50,16.25,30,0.0 +13335,65,21.05,36,0.0 +13335,73,15,5,0.0 +13335,38,263.5,25,0.0 +13335,61,28.5,28,0.0 +13335,34,14,41,0.0 +13335,26,31.23,18,0.0 +13335,39,18,32,0.0 +13335,57,19.5,42,0.0 +13335,33,2.5,11,0.0 +13335,24,4.5,23,0.0 +13335,66,17,34,0.0 +13335,20,81,40,0.0 +13335,44,19.45,29,0.0 +13335,60,34,1,0.0 +13335,55,24,19,0.0 +13335,56,38,34,0.0 +13335,14,23.25,31,0.0 +13335,35,18,11,0.0 +13335,6,25,15,0.0 +13335,68,12.5,22,0.0 +13335,36,19,12,0.0 +13335,48,12.75,38,0.0 +13335,77,13,47,0.0 +13335,37,26,44,0.0 +13335,40,18.4,36,0.0 +13335,12,38,15,0.0 +13335,21,10,29,0.0 +13335,76,18,36,0.0 +13335,15,15.5,33,0.0 +13335,45,9.5,4,0.0 +13335,28,45.6,37,0.0 +13335,23,9,2,0.0 +13335,67,14,15,0.0 +13335,3,10,36,0.0 +13335,10,31,46,0.0 +13335,46,12,41,0.0 +13335,58,13.25,47,0.0 +13335,62,49.3,37,0.0 +13335,11,21,2,0.0 +13335,54,7.45,10,0.0 +13335,43,46,39,0.0 +13335,71,21.5,41,0.0 +13336,44,19.45,31,0.0 +13336,65,21.05,41,0.0 +13336,40,18.4,40,0.0 +13336,21,10,21,0.0 +13336,52,7,49,0.0 +13336,20,81,45,0.0 +13336,62,49.3,47,0.0 +13336,15,15.5,26,0.0 +13336,51,53,42,0.0 +13336,25,14,33,0.0 +13336,29,123.79,33,0.0 +13336,10,31,49,0.0 +13336,70,15,48,0.0 +13336,38,263.5,20,0.0 +13336,53,32.8,44,0.0 +13336,55,24,10,0.0 +13336,42,14,28,0.0 +13336,4,22,1,0.0 +13336,3,10,7,0.0 +13336,28,45.6,50,0.0 +13336,47,9.5,13,0.0 +13336,6,25,36,0.0 +13336,11,21,41,0.0 +13336,16,17.45,8,0.0 +13336,63,43.9,9,0.0 +13336,75,7.75,13,0.0 +13336,23,9,12,0.0 +13336,45,9.5,19,0.0 +13336,32,32,21,0.0 +13336,1,18,34,0.0 +13336,68,12.5,3,0.0 +13336,77,13,12,0.0 +13336,64,33.25,30,0.0 +13336,59,55,9,0.0 +13336,26,31.23,17,0.0 +13336,58,13.25,25,0.0 +13336,37,26,11,0.0 +13336,48,12.75,29,0.0 +13336,74,10,12,0.0 +13336,12,38,16,0.0 +13336,46,12,38,0.0 +13336,31,12.5,14,0.0 +13336,39,18,16,0.0 +13336,19,9.2,1,0.0 +13336,2,19,36,0.0 +13336,22,21,25,0.0 +13336,5,21.35,28,0.0 +13336,17,39,28,0.0 +13336,34,14,22,0.0 +13336,71,21.5,2,0.0 +13336,41,9.65,11,0.0 +13336,14,23.25,25,0.0 +13336,57,19.5,9,0.0 +13336,61,28.5,13,0.0 +13336,69,36,2,0.0 +13336,49,20,7,0.0 +13336,27,43.9,30,0.0 +13336,35,18,25,0.0 +13336,50,16.25,29,0.0 +13336,18,62.5,44,0.0 +13336,73,15,14,0.0 +13336,9,97,12,0.0 +13336,33,2.5,20,0.0 +13336,30,25.89,35,0.0 +13336,56,38,4,0.0 +13336,66,17,29,0.0 +13336,60,34,14,0.0 +13336,67,14,48,0.0 +13337,62,49.3,20,0.0 +13337,4,22,26,0.0 +13337,68,12.5,24,0.0 +13337,76,18,46,0.0 +13337,75,7.75,46,0.0 +13337,35,18,27,0.0 +13337,77,13,34,0.0 +13337,59,55,50,0.0 +13337,48,12.75,6,0.0 +13337,49,20,34,0.0 +13337,1,18,30,0.0 +13337,61,28.5,31,0.0 +13337,10,31,32,0.0 +13337,43,46,21,0.0 +13337,45,9.5,28,0.0 +13337,8,40,33,0.0 +13337,26,31.23,22,0.0 +13337,11,21,24,0.0 +13337,12,38,38,0.0 +13337,2,19,4,0.0 +13337,51,53,22,0.0 +13337,71,21.5,27,0.0 +13337,3,10,7,0.0 +13337,20,81,35,0.0 +13337,36,19,41,0.0 +13337,15,15.5,33,0.0 +13337,70,15,15,0.0 +13337,16,17.45,39,0.0 +13337,31,12.5,23,0.0 +13337,9,97,29,0.0 +13337,66,17,25,0.0 +13337,29,123.79,33,0.0 +13337,63,43.9,43,0.0 +13337,19,9.2,12,0.0 +13337,57,19.5,43,0.0 +13337,37,26,6,0.0 +13337,39,18,15,0.0 +13337,41,9.65,16,0.0 +13337,58,13.25,17,0.0 +13337,23,9,43,0.0 +13337,40,18.4,39,0.0 +13337,74,10,18,0.0 +13337,42,14,36,0.0 +13337,32,32,7,0.0 +13337,14,23.25,42,0.0 +13337,50,16.25,15,0.0 +13337,60,34,4,0.0 +13337,54,7.45,47,0.0 +13337,69,36,42,0.0 +13337,24,4.5,41,0.0 +13337,33,2.5,6,0.0 +13337,55,24,38,0.0 +13337,22,21,12,0.0 +13337,64,33.25,27,0.0 +13337,44,19.45,11,0.0 +13337,46,12,30,0.0 +13337,25,14,13,0.0 +13337,56,38,19,0.0 +13337,72,34.8,4,0.0 +13337,21,10,21,0.0 +13337,27,43.9,27,0.0 +13337,5,21.35,1,0.0 +13337,13,6,38,0.0 +13337,6,25,5,0.0 +13337,73,15,49,0.0 +13338,67,14,46,0.0 +13338,40,18.4,14,0.0 +13338,73,15,29,0.0 +13338,19,9.2,15,0.0 +13338,58,13.25,47,0.0 +13338,65,21.05,40,0.0 +13338,50,16.25,44,0.0 +13339,36,19,48,0.0 +13339,37,26,7,0.0 +13339,73,15,32,0.0 +13339,74,10,44,0.0 +13339,72,34.8,25,0.0 +13339,54,7.45,22,0.0 +13339,24,4.5,20,0.0 +13339,31,12.5,14,0.0 +13339,67,14,42,0.0 +13339,69,36,17,0.0 +13339,55,24,3,0.0 +13339,58,13.25,48,0.0 +13340,32,32,13,0.0 +13340,30,25.89,3,0.0 +13340,6,25,15,0.0 +13340,55,24,29,0.0 +13340,13,6,8,0.0 +13340,74,10,23,0.0 +13340,5,21.35,39,0.0 +13340,72,34.8,12,0.0 +13340,3,10,12,0.0 +13340,64,33.25,27,0.0 +13340,47,9.5,8,0.0 +13340,48,12.75,24,0.0 +13340,8,40,11,0.0 +13340,62,49.3,30,0.0 +13340,42,14,7,0.0 +13340,70,15,42,0.0 +13340,45,9.5,1,0.0 +13340,75,7.75,8,0.0 +13340,26,31.23,23,0.0 +13340,66,17,26,0.0 +13340,57,19.5,37,0.0 +13340,7,30,7,0.0 +13340,12,38,43,0.0 +13340,4,22,16,0.0 +13340,9,97,46,0.0 +13340,38,263.5,42,0.0 +13340,54,7.45,12,0.0 +13340,60,34,5,0.0 +13340,15,15.5,50,0.0 +13340,25,14,1,0.0 +13340,46,12,5,0.0 +13340,18,62.5,46,0.0 +13340,27,43.9,31,0.0 +13340,59,55,26,0.0 +13340,34,14,30,0.0 +13340,20,81,49,0.0 +13340,21,10,41,0.0 +13340,36,19,48,0.0 +13340,43,46,13,0.0 +13340,56,38,12,0.0 +13340,24,4.5,30,0.0 +13340,19,9.2,50,0.0 +13340,69,36,11,0.0 +13340,58,13.25,29,0.0 +13340,28,45.6,31,0.0 +13340,11,21,49,0.0 +13340,40,18.4,35,0.0 +13340,51,53,35,0.0 +13340,33,2.5,10,0.0 +13340,41,9.65,41,0.0 +13340,61,28.5,20,0.0 +13340,77,13,41,0.0 +13340,73,15,50,0.0 +13340,37,26,26,0.0 +13340,23,9,28,0.0 +13340,35,18,19,0.0 +13340,31,12.5,20,0.0 +13340,53,32.8,1,0.0 +13340,49,20,12,0.0 +13340,10,31,26,0.0 +13340,67,14,41,0.0 +13340,63,43.9,18,0.0 +13340,76,18,42,0.0 +13340,29,123.79,24,0.0 +13340,17,39,42,0.0 +13340,39,18,42,0.0 +13340,71,21.5,44,0.0 +13340,14,23.25,50,0.0 +13340,52,7,18,0.0 +13340,44,19.45,18,0.0 +13340,65,21.05,3,0.0 +13340,16,17.45,40,0.0 +13340,1,18,20,0.0 +13340,22,21,7,0.0 +13340,68,12.5,15,0.0 +13340,50,16.25,10,0.0 +13340,2,19,37,0.0 +13341,72,34.8,24,0.0 +13341,76,18,48,0.0 +13341,38,263.5,20,0.0 +13341,56,38,46,0.0 +13341,53,32.8,1,0.0 +13341,42,14,8,0.0 +13341,63,43.9,35,0.0 +13341,57,19.5,17,0.0 +13341,48,12.75,34,0.0 +13341,5,21.35,8,0.0 +13341,12,38,17,0.0 +13341,61,28.5,7,0.0 +13341,40,18.4,49,0.0 +13341,36,19,35,0.0 +13341,39,18,5,0.0 +13341,14,23.25,1,0.0 +13341,3,10,38,0.0 +13341,4,22,16,0.0 +13341,2,19,40,0.0 +13341,37,26,14,0.0 +13341,33,2.5,31,0.0 +13341,23,9,50,0.0 +13341,21,10,13,0.0 +13341,9,97,18,0.0 +13341,49,20,32,0.0 +13341,67,14,11,0.0 +13341,28,45.6,11,0.0 +13341,70,15,48,0.0 +13341,69,36,46,0.0 +13341,45,9.5,11,0.0 +13341,7,30,18,0.0 +13341,75,7.75,21,0.0 +13341,20,81,33,0.0 +13341,47,9.5,46,0.0 +13341,55,24,24,0.0 +13341,54,7.45,29,0.0 +13341,30,25.89,46,0.0 +13341,58,13.25,37,0.0 +13341,24,4.5,13,0.0 +13341,27,43.9,24,0.0 +13341,29,123.79,26,0.0 +13341,66,17,50,0.0 +13341,77,13,27,0.0 +13341,62,49.3,41,0.0 +13341,17,39,38,0.0 +13341,13,6,13,0.0 +13341,15,15.5,32,0.0 +13341,32,32,50,0.0 +13341,35,18,22,0.0 +13341,1,18,13,0.0 +13342,21,10,45,0.0 +13342,49,20,25,0.0 +13342,17,39,11,0.0 +13342,20,81,21,0.0 +13342,76,18,5,0.0 +13342,16,17.45,48,0.0 +13342,75,7.75,32,0.0 +13342,48,12.75,7,0.0 +13342,36,19,41,0.0 +13342,46,12,35,0.0 +13342,5,21.35,14,0.0 +13342,47,9.5,45,0.0 +13342,65,21.05,5,0.0 +13342,44,19.45,1,0.0 +13342,43,46,14,0.0 +13342,29,123.79,12,0.0 +13342,63,43.9,22,0.0 +13342,33,2.5,29,0.0 +13342,62,49.3,9,0.0 +13342,35,18,13,0.0 +13342,40,18.4,14,0.0 +13342,55,24,2,0.0 +13342,60,34,10,0.0 +13342,4,22,1,0.0 +13342,37,26,14,0.0 +13342,22,21,1,0.0 +13342,71,21.5,10,0.0 +13342,31,12.5,36,0.0 +13343,65,21.05,29,0.0 +13343,21,10,39,0.0 +13343,62,49.3,40,0.0 +13343,4,22,47,0.0 +13343,26,31.23,24,0.0 +13343,63,43.9,20,0.0 +13343,61,28.5,36,0.0 +13343,49,20,35,0.0 +13343,52,7,20,0.0 +13343,48,12.75,19,0.0 +13343,50,16.25,4,0.0 +13343,36,19,18,0.0 +13343,47,9.5,7,0.0 +13343,70,15,37,0.0 +13343,29,123.79,45,0.0 +13343,17,39,11,0.0 +13343,27,43.9,45,0.0 +13343,60,34,46,0.0 +13343,72,34.8,39,0.0 +13343,66,17,33,0.0 +13343,31,12.5,12,0.0 +13343,38,263.5,4,0.0 +13343,43,46,39,0.0 +13343,67,14,48,0.0 +13343,59,55,40,0.0 +13343,64,33.25,31,0.0 +13343,41,9.65,41,0.0 +13343,58,13.25,48,0.0 +13343,25,14,26,0.0 +13343,22,21,41,0.0 +13343,73,15,5,0.0 +13343,57,19.5,45,0.0 +13343,5,21.35,22,0.0 +13343,6,25,22,0.0 +13343,69,36,35,0.0 +13343,45,9.5,10,0.0 +13343,7,30,10,0.0 +13343,56,38,11,0.0 +13343,11,21,40,0.0 +13343,24,4.5,38,0.0 +13343,13,6,17,0.0 +13343,74,10,9,0.0 +13343,28,45.6,9,0.0 +13343,23,9,27,0.0 +13343,39,18,27,0.0 +13343,15,15.5,24,0.0 +13343,3,10,43,0.0 +13343,37,26,6,0.0 +13343,33,2.5,9,0.0 +13343,20,81,23,0.0 +13343,30,25.89,30,0.0 +13343,44,19.45,23,0.0 +13343,12,38,6,0.0 +13343,46,12,42,0.0 +13343,8,40,44,0.0 +13343,18,62.5,46,0.0 +13343,51,53,19,0.0 +13343,77,13,3,0.0 +13343,40,18.4,44,0.0 +13344,32,32,26,0.0 +13344,51,53,17,0.0 +13344,60,34,13,0.0 +13344,71,21.5,44,0.0 +13344,40,18.4,14,0.0 +13344,63,43.9,33,0.0 +13344,15,15.5,48,0.0 +13344,37,26,11,0.0 +13344,28,45.6,48,0.0 +13344,61,28.5,3,0.0 +13344,57,19.5,48,0.0 +13344,54,7.45,46,0.0 +13344,20,81,49,0.0 +13344,38,263.5,7,0.0 +13344,42,14,5,0.0 +13344,1,18,17,0.0 +13344,70,15,13,0.0 +13344,26,31.23,16,0.0 +13344,46,12,16,0.0 +13344,48,12.75,7,0.0 +13344,53,32.8,5,0.0 +13344,45,9.5,10,0.0 +13344,77,13,14,0.0 +13344,67,14,6,0.0 +13345,73,15,7,0.0 +13345,12,38,31,0.0 +13345,52,7,19,0.0 +13345,74,10,33,0.0 +13345,65,21.05,19,0.0 +13345,75,7.75,26,0.0 +13345,63,43.9,29,0.0 +13346,31,12.5,42,0.0 +13346,22,21,11,0.0 +13346,5,21.35,48,0.0 +13346,9,97,8,0.0 +13346,69,36,37,0.0 +13346,16,17.45,35,0.0 +13346,61,28.5,13,0.0 +13346,43,46,6,0.0 +13346,37,26,12,0.0 +13346,45,9.5,22,0.0 +13346,35,18,37,0.0 +13346,64,33.25,47,0.0 +13346,51,53,37,0.0 +13346,30,25.89,33,0.0 +13346,11,21,15,0.0 +13346,71,21.5,31,0.0 +13346,73,15,11,0.0 +13346,32,32,19,0.0 +13346,70,15,22,0.0 +13346,15,15.5,11,0.0 +13346,65,21.05,24,0.0 +13346,25,14,3,0.0 +13346,68,12.5,44,0.0 +13346,63,43.9,29,0.0 +13346,14,23.25,22,0.0 +13346,53,32.8,43,0.0 +13346,39,18,9,0.0 +13346,41,9.65,39,0.0 +13346,4,22,33,0.0 +13346,24,4.5,45,0.0 +13346,13,6,36,0.0 +13346,60,34,33,0.0 +13346,8,40,17,0.0 +13346,17,39,30,0.0 +13346,21,10,31,0.0 +13346,75,7.75,18,0.0 +13346,12,38,26,0.0 +13346,28,45.6,16,0.0 +13346,6,25,20,0.0 +13346,44,19.45,24,0.0 +13346,62,49.3,34,0.0 +13346,76,18,24,0.0 +13346,40,18.4,6,0.0 +13346,46,12,44,0.0 +13346,42,14,10,0.0 +13346,33,2.5,16,0.0 +13346,49,20,25,0.0 +13346,57,19.5,36,0.0 +13346,74,10,46,0.0 +13346,59,55,13,0.0 +13346,36,19,6,0.0 +13346,34,14,28,0.0 +13346,27,43.9,25,0.0 +13346,1,18,21,0.0 +13346,18,62.5,18,0.0 +13346,10,31,28,0.0 +13346,50,16.25,32,0.0 +13346,67,14,21,0.0 +13346,52,7,23,0.0 +13346,3,10,33,0.0 +13346,7,30,3,0.0 +13346,66,17,28,0.0 +13346,56,38,23,0.0 +13346,55,24,7,0.0 +13346,23,9,3,0.0 +13346,54,7.45,6,0.0 +13346,47,9.5,41,0.0 +13346,58,13.25,42,0.0 +13346,20,81,22,0.0 +13346,48,12.75,45,0.0 +13346,38,263.5,31,0.0 +13346,77,13,20,0.0 +13346,19,9.2,10,0.0 +13347,37,26,24,0.0 +13347,26,31.23,36,0.0 +13347,59,55,11,0.0 +13347,2,19,40,0.0 +13347,6,25,9,0.0 +13347,57,19.5,20,0.0 +13347,13,6,36,0.0 +13347,77,13,44,0.0 +13347,75,7.75,23,0.0 +13347,31,12.5,40,0.0 +13347,66,17,1,0.0 +13347,41,9.65,5,0.0 +13347,60,34,40,0.0 +13347,36,19,18,0.0 +13347,14,23.25,10,0.0 +13347,51,53,1,0.0 +13347,29,123.79,35,0.0 +13347,35,18,41,0.0 +13347,45,9.5,39,0.0 +13347,17,39,12,0.0 +13347,40,18.4,49,0.0 +13347,32,32,15,0.0 +13347,54,7.45,4,0.0 +13347,15,15.5,3,0.0 +13347,64,33.25,33,0.0 +13347,4,22,36,0.0 +13347,53,32.8,19,0.0 +13347,74,10,19,0.0 +13347,11,21,33,0.0 +13347,52,7,27,0.0 +13347,25,14,37,0.0 +13347,76,18,34,0.0 +13347,49,20,6,0.0 +13347,50,16.25,26,0.0 +13347,18,62.5,8,0.0 +13347,28,45.6,45,0.0 +13347,67,14,44,0.0 +13347,69,36,18,0.0 +13347,58,13.25,40,0.0 +13347,20,81,41,0.0 +13347,16,17.45,17,0.0 +13347,43,46,26,0.0 +13347,10,31,47,0.0 +13347,34,14,41,0.0 +13347,47,9.5,2,0.0 +13347,71,21.5,8,0.0 +13347,61,28.5,37,0.0 +13347,38,263.5,11,0.0 +13347,19,9.2,35,0.0 +13347,39,18,40,0.0 +13347,63,43.9,31,0.0 +13347,70,15,38,0.0 +13347,44,19.45,27,0.0 +13347,24,4.5,3,0.0 +13347,46,12,2,0.0 +13347,21,10,40,0.0 +13347,68,12.5,15,0.0 +13347,42,14,7,0.0 +13347,22,21,33,0.0 +13347,9,97,37,0.0 +13347,3,10,43,0.0 +13347,1,18,32,0.0 +13347,56,38,21,0.0 +13347,7,30,26,0.0 +13347,65,21.05,14,0.0 +13347,72,34.8,2,0.0 +13347,73,15,46,0.0 +13347,48,12.75,37,0.0 +13347,5,21.35,20,0.0 +13347,62,49.3,16,0.0 +13347,8,40,46,0.0 +13347,55,24,1,0.0 +13348,53,32.8,50,0.0 +13348,33,2.5,39,0.0 +13348,69,36,28,0.0 +13348,18,62.5,9,0.0 +13348,10,31,20,0.0 +13348,48,12.75,45,0.0 +13348,50,16.25,28,0.0 +13348,61,28.5,28,0.0 +13348,12,38,29,0.0 +13348,5,21.35,18,0.0 +13348,4,22,50,0.0 +13348,41,9.65,37,0.0 +13348,6,25,15,0.0 +13348,35,18,19,0.0 +13348,8,40,12,0.0 +13348,58,13.25,33,0.0 +13348,49,20,17,0.0 +13348,51,53,6,0.0 +13348,3,10,27,0.0 +13348,67,14,25,0.0 +13348,2,19,33,0.0 +13348,24,4.5,16,0.0 +13348,75,7.75,33,0.0 +13348,76,18,21,0.0 +13348,39,18,23,0.0 +13349,4,22,21,0.0 +13349,36,19,20,0.0 +13349,46,12,47,0.0 +13349,39,18,25,0.0 +13349,11,21,17,0.0 +13349,34,14,29,0.0 +13349,48,12.75,41,0.0 +13349,6,25,31,0.0 +13349,10,31,3,0.0 +13349,12,38,13,0.0 +13349,40,18.4,17,0.0 +13349,43,46,19,0.0 +13349,9,97,19,0.0 +13349,25,14,43,0.0 +13349,64,33.25,44,0.0 +13349,71,21.5,10,0.0 +13349,30,25.89,50,0.0 +13349,20,81,12,0.0 +13349,33,2.5,12,0.0 +13349,61,28.5,36,0.0 +13349,67,14,19,0.0 +13349,74,10,30,0.0 +13349,27,43.9,18,0.0 +13349,75,7.75,7,0.0 +13349,47,9.5,32,0.0 +13350,59,55,7,0.0 +13350,35,18,28,0.0 +13350,55,24,35,0.0 +13350,31,12.5,48,0.0 +13350,33,2.5,21,0.0 +13350,62,49.3,24,0.0 +13350,5,21.35,19,0.0 +13350,30,25.89,37,0.0 +13350,13,6,30,0.0 +13350,58,13.25,16,0.0 +13350,20,81,50,0.0 +13350,53,32.8,1,0.0 +13351,65,21.05,26,0.0 +13351,4,22,18,0.0 +13351,47,9.5,28,0.0 +13351,72,34.8,6,0.0 +13351,56,38,11,0.0 +13351,22,21,10,0.0 +13351,29,123.79,30,0.0 +13351,38,263.5,36,0.0 +13351,21,10,20,0.0 +13351,57,19.5,36,0.0 +13351,24,4.5,13,0.0 +13351,19,9.2,45,0.0 +13351,34,14,44,0.0 +13351,51,53,42,0.0 +13351,40,18.4,2,0.0 +13351,25,14,10,0.0 +13351,48,12.75,36,0.0 +13351,66,17,35,0.0 +13351,41,9.65,3,0.0 +13351,54,7.45,26,0.0 +13351,45,9.5,30,0.0 +13351,62,49.3,11,0.0 +13351,36,19,2,0.0 +13351,9,97,25,0.0 +13351,70,15,6,0.0 +13351,33,2.5,11,0.0 +13351,58,13.25,28,0.0 +13351,23,9,24,0.0 +13351,6,25,40,0.0 +13351,26,31.23,6,0.0 +13351,39,18,24,0.0 +13351,43,46,49,0.0 +13351,61,28.5,1,0.0 +13351,49,20,27,0.0 +13351,75,7.75,48,0.0 +13351,7,30,26,0.0 +13352,75,7.75,42,0.0 +13352,17,39,8,0.0 +13352,23,9,21,0.0 +13352,37,26,30,0.0 +13352,14,23.25,8,0.0 +13352,51,53,28,0.0 +13352,7,30,12,0.0 +13352,36,19,50,0.0 +13352,43,46,11,0.0 +13352,50,16.25,29,0.0 +13352,66,17,20,0.0 +13352,26,31.23,13,0.0 +13352,33,2.5,34,0.0 +13352,12,38,33,0.0 +13353,63,43.9,22,0.0 +13353,1,18,34,0.0 +13353,66,17,46,0.0 +13353,62,49.3,26,0.0 +13353,14,23.25,44,0.0 +13353,65,21.05,35,0.0 +13353,24,4.5,6,0.0 +13353,75,7.75,3,0.0 +13353,40,18.4,5,0.0 +13353,53,32.8,25,0.0 +13353,50,16.25,40,0.0 +13353,55,24,44,0.0 +13353,34,14,34,0.0 +13353,27,43.9,11,0.0 +13353,54,7.45,14,0.0 +13353,73,15,41,0.0 +13353,57,19.5,6,0.0 +13353,74,10,35,0.0 +13353,4,22,42,0.0 +13353,11,21,11,0.0 +13353,3,10,10,0.0 +13353,68,12.5,20,0.0 +13353,52,7,22,0.0 +13353,31,12.5,8,0.0 +13353,61,28.5,23,0.0 +13353,41,9.65,45,0.0 +13353,20,81,1,0.0 +13353,49,20,1,0.0 +13353,6,25,38,0.0 +13354,77,13,11,0.0 +13354,24,4.5,27,0.0 +13354,22,21,37,0.0 +13354,12,38,40,0.0 +13354,9,97,19,0.0 +13354,33,2.5,4,0.0 +13354,8,40,47,0.0 +13354,75,7.75,32,0.0 +13354,37,26,12,0.0 +13354,38,263.5,6,0.0 +13354,44,19.45,7,0.0 +13354,40,18.4,41,0.0 +13354,74,10,16,0.0 +13354,26,31.23,39,0.0 +13354,13,6,39,0.0 +13354,69,36,7,0.0 +13354,72,34.8,42,0.0 +13354,30,25.89,44,0.0 +13354,15,15.5,28,0.0 +13354,21,10,13,0.0 +13354,41,9.65,2,0.0 +13354,67,14,26,0.0 +13354,70,15,46,0.0 +13354,18,62.5,11,0.0 +13354,62,49.3,31,0.0 +13354,66,17,29,0.0 +13354,63,43.9,13,0.0 +13354,58,13.25,44,0.0 +13354,19,9.2,6,0.0 +13354,76,18,46,0.0 +13354,73,15,16,0.0 +13354,48,12.75,24,0.0 +13355,18,62.5,36,0.0 +13355,16,17.45,21,0.0 +13355,76,18,24,0.0 +13355,54,7.45,27,0.0 +13355,32,32,33,0.0 +13355,52,7,37,0.0 +13355,46,12,20,0.0 +13355,65,21.05,25,0.0 +13355,3,10,31,0.0 +13355,74,10,14,0.0 +13355,42,14,2,0.0 +13355,40,18.4,50,0.0 +13355,61,28.5,9,0.0 +13355,5,21.35,36,0.0 +13355,47,9.5,36,0.0 +13355,63,43.9,26,0.0 +13355,30,25.89,46,0.0 +13355,8,40,42,0.0 +13355,33,2.5,32,0.0 +13355,44,19.45,39,0.0 +13355,20,81,13,0.0 +13355,43,46,28,0.0 +13355,1,18,20,0.0 +13355,39,18,7,0.0 +13355,62,49.3,12,0.0 +13355,10,31,33,0.0 +13355,50,16.25,13,0.0 +13355,67,14,22,0.0 +13355,55,24,3,0.0 +13355,26,31.23,18,0.0 +13355,48,12.75,26,0.0 +13355,21,10,13,0.0 +13356,53,32.8,41,0.0 +13357,24,4.5,47,0.0 +13357,59,55,45,0.0 +13357,63,43.9,13,0.0 +13357,32,32,17,0.0 +13357,60,34,8,0.0 +13357,37,26,27,0.0 +13357,16,17.45,7,0.0 +13357,44,19.45,36,0.0 +13357,49,20,37,0.0 +13357,57,19.5,20,0.0 +13357,25,14,8,0.0 +13357,18,62.5,6,0.0 +13357,9,97,26,0.0 +13357,47,9.5,46,0.0 +13357,7,30,29,0.0 +13357,15,15.5,6,0.0 +13357,3,10,43,0.0 +13357,62,49.3,34,0.0 +13357,76,18,12,0.0 +13357,45,9.5,18,0.0 +13357,73,15,4,0.0 +13357,5,21.35,38,0.0 +13357,17,39,4,0.0 +13357,23,9,10,0.0 +13357,4,22,17,0.0 +13357,20,81,6,0.0 +13357,13,6,19,0.0 +13357,34,14,16,0.0 +13357,8,40,50,0.0 +13357,50,16.25,44,0.0 +13357,6,25,11,0.0 +13357,75,7.75,41,0.0 +13357,40,18.4,8,0.0 +13357,14,23.25,48,0.0 +13357,42,14,10,0.0 +13357,1,18,45,0.0 +13357,43,46,46,0.0 +13357,29,123.79,18,0.0 +13357,2,19,45,0.0 +13357,31,12.5,44,0.0 +13357,12,38,13,0.0 +13357,41,9.65,45,0.0 +13357,68,12.5,20,0.0 +13357,66,17,48,0.0 +13357,72,34.8,49,0.0 +13357,30,25.89,14,0.0 +13357,52,7,13,0.0 +13357,58,13.25,43,0.0 +13358,24,4.5,31,0.0 +13358,58,13.25,39,0.0 +13358,1,18,19,0.0 +13358,56,38,16,0.0 +13358,18,62.5,45,0.0 +13358,28,45.6,12,0.0 +13358,76,18,22,0.0 +13358,29,123.79,9,0.0 +13358,19,9.2,13,0.0 +13358,17,39,12,0.0 +13358,36,19,31,0.0 +13358,44,19.45,2,0.0 +13358,46,12,7,0.0 +13358,75,7.75,40,0.0 +13358,77,13,29,0.0 +13358,68,12.5,20,0.0 +13358,45,9.5,37,0.0 +13358,9,97,42,0.0 +13358,35,18,17,0.0 +13358,7,30,25,0.0 +13358,60,34,49,0.0 +13358,31,12.5,17,0.0 +13358,8,40,40,0.0 +13358,32,32,8,0.0 +13358,27,43.9,16,0.0 +13358,72,34.8,27,0.0 +13358,15,15.5,49,0.0 +13358,66,17,38,0.0 +13358,55,24,27,0.0 +13358,5,21.35,29,0.0 +13358,37,26,20,0.0 +13358,59,55,33,0.0 +13358,30,25.89,22,0.0 +13358,70,15,4,0.0 +13358,65,21.05,14,0.0 +13358,63,43.9,39,0.0 +13358,57,19.5,6,0.0 +13358,4,22,21,0.0 +13358,10,31,16,0.0 +13358,12,38,26,0.0 +13358,2,19,17,0.0 +13358,62,49.3,10,0.0 +13358,3,10,32,0.0 +13358,50,16.25,22,0.0 +13358,6,25,48,0.0 +13359,15,15.5,30,0.0 +13359,64,33.25,42,0.0 +13359,42,14,1,0.0 +13359,13,6,41,0.0 +13359,62,49.3,48,0.0 +13359,24,4.5,26,0.0 +13359,55,24,49,0.0 +13359,20,81,27,0.0 +13359,70,15,9,0.0 +13359,44,19.45,38,0.0 +13359,36,19,15,0.0 +13359,59,55,44,0.0 +13359,31,12.5,45,0.0 +13359,23,9,19,0.0 +13359,37,26,18,0.0 +13359,72,34.8,38,0.0 +13359,18,62.5,44,0.0 +13359,43,46,38,0.0 +13359,49,20,33,0.0 +13359,38,263.5,41,0.0 +13359,6,25,21,0.0 +13359,73,15,23,0.0 +13359,28,45.6,26,0.0 +13359,54,7.45,33,0.0 +13359,76,18,1,0.0 +13359,4,22,24,0.0 +13359,71,21.5,38,0.0 +13359,14,23.25,32,0.0 +13359,11,21,44,0.0 +13359,77,13,12,0.0 +13359,5,21.35,5,0.0 +13359,25,14,40,0.0 +13359,50,16.25,49,0.0 +13359,53,32.8,34,0.0 +13359,46,12,20,0.0 +13359,27,43.9,43,0.0 +13359,35,18,41,0.0 +13360,40,18.4,40,0.0 +13360,1,18,35,0.0 +13360,66,17,10,0.0 +13360,23,9,5,0.0 +13360,48,12.75,5,0.0 +13360,13,6,9,0.0 +13360,72,34.8,14,0.0 +13360,15,15.5,15,0.0 +13360,30,25.89,8,0.0 +13360,69,36,30,0.0 +13360,12,38,39,0.0 +13360,43,46,32,0.0 +13360,29,123.79,25,0.0 +13360,52,7,33,0.0 +13360,5,21.35,29,0.0 +13360,20,81,7,0.0 +13360,41,9.65,10,0.0 +13360,51,53,14,0.0 +13360,4,22,22,0.0 +13360,58,13.25,1,0.0 +13360,26,31.23,36,0.0 +13360,44,19.45,41,0.0 +13360,64,33.25,41,0.0 +13360,33,2.5,25,0.0 +13360,18,62.5,18,0.0 +13360,11,21,6,0.0 +13360,35,18,23,0.0 +13360,57,19.5,13,0.0 +13360,74,10,6,0.0 +13360,9,97,29,0.0 +13360,76,18,48,0.0 +13360,59,55,19,0.0 +13360,22,21,18,0.0 +13360,53,32.8,35,0.0 +13360,50,16.25,35,0.0 +13361,3,10,9,0.0 +13361,72,34.8,50,0.0 +13361,35,18,15,0.0 +13361,67,14,1,0.0 +13361,64,33.25,46,0.0 +13361,70,15,32,0.0 +13361,9,97,23,0.0 +13361,15,15.5,46,0.0 +13361,52,7,44,0.0 +13361,39,18,39,0.0 +13361,77,13,6,0.0 +13361,55,24,44,0.0 +13361,47,9.5,34,0.0 +13361,51,53,12,0.0 +13361,43,46,23,0.0 +13361,33,2.5,19,0.0 +13361,63,43.9,40,0.0 +13361,29,123.79,45,0.0 +13361,7,30,39,0.0 +13361,5,21.35,43,0.0 +13361,54,7.45,9,0.0 +13361,58,13.25,22,0.0 +13361,8,40,8,0.0 +13361,20,81,27,0.0 +13361,22,21,11,0.0 +13361,38,263.5,6,0.0 +13361,60,34,49,0.0 +13361,61,28.5,19,0.0 +13361,69,36,19,0.0 +13361,41,9.65,6,0.0 +13361,49,20,29,0.0 +13361,23,9,23,0.0 +13361,14,23.25,27,0.0 +13361,71,21.5,28,0.0 +13362,61,28.5,43,0.0 +13362,23,9,45,0.0 +13362,13,6,29,0.0 +13362,65,21.05,36,0.0 +13362,2,19,38,0.0 +13362,58,13.25,11,0.0 +13362,59,55,20,0.0 +13362,21,10,27,0.0 +13362,10,31,11,0.0 +13362,53,32.8,47,0.0 +13362,28,45.6,36,0.0 +13362,48,12.75,1,0.0 +13362,75,7.75,4,0.0 +13362,40,18.4,7,0.0 +13362,15,15.5,26,0.0 +13362,38,263.5,39,0.0 +13362,5,21.35,1,0.0 +13362,51,53,38,0.0 +13362,35,18,8,0.0 +13362,18,62.5,36,0.0 +13362,70,15,5,0.0 +13362,20,81,18,0.0 +13362,44,19.45,42,0.0 +13362,6,25,8,0.0 +13362,43,46,7,0.0 +13362,3,10,50,0.0 +13362,66,17,48,0.0 +13362,12,38,24,0.0 +13362,14,23.25,16,0.0 +13362,26,31.23,8,0.0 +13362,77,13,7,0.0 +13362,25,14,36,0.0 +13362,1,18,41,0.0 +13363,39,18,37,0.0 +13363,28,45.6,37,0.0 +13363,22,21,46,0.0 +13363,47,9.5,13,0.0 +13363,36,19,29,0.0 +13363,51,53,50,0.0 +13363,58,13.25,42,0.0 +13363,35,18,40,0.0 +13363,30,25.89,32,0.0 +13363,40,18.4,43,0.0 +13363,17,39,21,0.0 +13363,70,15,42,0.0 +13363,29,123.79,14,0.0 +13363,38,263.5,25,0.0 +13363,77,13,34,0.0 +13363,14,23.25,44,0.0 +13363,63,43.9,23,0.0 +13363,55,24,21,0.0 +13363,64,33.25,6,0.0 +13363,69,36,33,0.0 +13363,2,19,5,0.0 +13363,42,14,21,0.0 +13363,33,2.5,39,0.0 +13363,43,46,42,0.0 +13363,5,21.35,20,0.0 +13363,45,9.5,8,0.0 +13363,73,15,31,0.0 +13363,1,18,8,0.0 +13363,21,10,32,0.0 +13363,26,31.23,3,0.0 +13363,31,12.5,37,0.0 +13363,68,12.5,3,0.0 +13363,7,30,1,0.0 +13363,25,14,12,0.0 +13363,13,6,37,0.0 +13363,8,40,33,0.0 +13363,61,28.5,12,0.0 +13363,59,55,30,0.0 +13363,11,21,29,0.0 +13363,9,97,16,0.0 +13363,12,38,46,0.0 +13364,59,55,26,0.0 +13364,53,32.8,18,0.0 +13364,39,18,2,0.0 +13364,16,17.45,14,0.0 +13364,34,14,42,0.0 +13364,21,10,45,0.0 +13364,11,21,25,0.0 +13364,56,38,17,0.0 +13364,52,7,25,0.0 +13364,7,30,33,0.0 +13364,20,81,11,0.0 +13364,3,10,49,0.0 +13364,49,20,27,0.0 +13364,24,4.5,5,0.0 +13364,6,25,13,0.0 +13364,18,62.5,2,0.0 +13364,74,10,10,0.0 +13364,22,21,9,0.0 +13364,46,12,36,0.0 +13364,27,43.9,38,0.0 +13364,71,21.5,47,0.0 +13364,45,9.5,27,0.0 +13364,9,97,32,0.0 +13364,41,9.65,37,0.0 +13364,29,123.79,1,0.0 +13364,68,12.5,9,0.0 +13364,26,31.23,12,0.0 +13364,43,46,24,0.0 +13364,14,23.25,16,0.0 +13364,47,9.5,13,0.0 +13364,70,15,39,0.0 +13364,65,21.05,4,0.0 +13364,54,7.45,42,0.0 +13364,60,34,21,0.0 +13364,72,34.8,47,0.0 +13364,36,19,39,0.0 +13364,42,14,20,0.0 +13364,44,19.45,13,0.0 +13364,58,13.25,13,0.0 +13364,62,49.3,3,0.0 +13364,66,17,45,0.0 +13364,40,18.4,2,0.0 +13364,75,7.75,33,0.0 +13364,30,25.89,31,0.0 +13364,15,15.5,38,0.0 +13364,19,9.2,4,0.0 +13364,13,6,43,0.0 +13364,37,26,22,0.0 +13364,50,16.25,12,0.0 +13364,33,2.5,35,0.0 +13364,12,38,24,0.0 +13364,32,32,30,0.0 +13364,48,12.75,42,0.0 +13364,61,28.5,38,0.0 +13365,4,22,7,0.0 +13365,66,17,27,0.0 +13365,37,26,1,0.0 +13365,40,18.4,1,0.0 +13365,70,15,34,0.0 +13365,69,36,2,0.0 +13365,54,7.45,10,0.0 +13365,62,49.3,10,0.0 +13365,39,18,26,0.0 +13365,5,21.35,2,0.0 +13365,38,263.5,7,0.0 +13365,31,12.5,30,0.0 +13365,1,18,45,0.0 +13365,76,18,9,0.0 +13365,67,14,40,0.0 +13365,51,53,4,0.0 +13365,19,9.2,9,0.0 +13365,10,31,29,0.0 +13365,71,21.5,9,0.0 +13365,43,46,14,0.0 +13365,27,43.9,47,0.0 +13365,73,15,12,0.0 +13365,42,14,43,0.0 +13365,21,10,23,0.0 +13365,9,97,23,0.0 +13365,41,9.65,28,0.0 +13365,45,9.5,10,0.0 +13365,14,23.25,13,0.0 +13365,48,12.75,3,0.0 +13365,20,81,3,0.0 +13365,30,25.89,31,0.0 +13365,7,30,39,0.0 +13365,55,24,16,0.0 +13365,77,13,10,0.0 +13365,47,9.5,5,0.0 +13365,6,25,13,0.0 +13365,2,19,33,0.0 +13365,13,6,44,0.0 +13365,8,40,10,0.0 +13365,52,7,37,0.0 +13365,25,14,19,0.0 +13365,17,39,43,0.0 +13365,12,38,34,0.0 +13365,18,62.5,3,0.0 +13365,16,17.45,8,0.0 +13365,32,32,16,0.0 +13365,74,10,44,0.0 +13365,44,19.45,2,0.0 +13365,56,38,24,0.0 +13365,24,4.5,12,0.0 +13365,53,32.8,9,0.0 +13365,64,33.25,2,0.0 +13365,46,12,50,0.0 +13365,33,2.5,20,0.0 +13365,75,7.75,37,0.0 +13365,68,12.5,33,0.0 +13365,15,15.5,34,0.0 +13365,59,55,9,0.0 +13365,36,19,34,0.0 +13365,22,21,43,0.0 +13365,26,31.23,44,0.0 +13365,50,16.25,47,0.0 +13365,23,9,29,0.0 +13365,61,28.5,14,0.0 +13365,63,43.9,38,0.0 +13365,58,13.25,48,0.0 +13365,34,14,4,0.0 +13365,28,45.6,31,0.0 +13366,9,97,47,0.0 +13366,25,14,38,0.0 +13366,11,21,39,0.0 +13366,50,16.25,9,0.0 +13366,48,12.75,23,0.0 +13366,16,17.45,35,0.0 +13366,37,26,7,0.0 +13366,41,9.65,6,0.0 +13366,23,9,31,0.0 +13366,74,10,43,0.0 +13366,2,19,20,0.0 +13366,24,4.5,14,0.0 +13366,17,39,46,0.0 +13366,28,45.6,41,0.0 +13366,13,6,16,0.0 +13366,40,18.4,38,0.0 +13366,21,10,5,0.0 +13366,18,62.5,4,0.0 +13366,54,7.45,11,0.0 +13366,55,24,7,0.0 +13366,77,13,19,0.0 +13366,62,49.3,18,0.0 +13366,47,9.5,40,0.0 +13366,30,25.89,28,0.0 +13366,1,18,17,0.0 +13366,15,15.5,24,0.0 +13366,64,33.25,2,0.0 +13366,29,123.79,18,0.0 +13366,22,21,15,0.0 +13366,58,13.25,24,0.0 +13366,5,21.35,20,0.0 +13366,44,19.45,22,0.0 +13366,4,22,1,0.0 +13366,72,34.8,32,0.0 +13366,33,2.5,19,0.0 +13366,67,14,3,0.0 +13366,6,25,41,0.0 +13366,52,7,30,0.0 +13366,35,18,41,0.0 +13366,8,40,20,0.0 +13366,51,53,35,0.0 +13367,64,33.25,20,0.0 +13367,37,26,34,0.0 +13367,24,4.5,48,0.0 +13367,7,30,46,0.0 +13367,23,9,13,0.0 +13367,38,263.5,11,0.0 +13367,52,7,43,0.0 +13367,72,34.8,3,0.0 +13367,4,22,38,0.0 +13367,3,10,37,0.0 +13367,42,14,40,0.0 +13367,58,13.25,43,0.0 +13367,48,12.75,50,0.0 +13367,9,97,41,0.0 +13367,8,40,11,0.0 +13367,76,18,6,0.0 +13367,68,12.5,8,0.0 +13367,73,15,17,0.0 +13367,27,43.9,29,0.0 +13367,12,38,28,0.0 +13367,25,14,49,0.0 +13367,67,14,21,0.0 +13367,41,9.65,3,0.0 +13367,31,12.5,2,0.0 +13367,49,20,38,0.0 +13367,53,32.8,37,0.0 +13367,44,19.45,32,0.0 +13367,11,21,28,0.0 +13367,55,24,21,0.0 +13367,10,31,41,0.0 +13367,50,16.25,1,0.0 +13367,5,21.35,11,0.0 +13367,47,9.5,26,0.0 +13367,71,21.5,1,0.0 +13367,61,28.5,4,0.0 +13367,75,7.75,10,0.0 +13367,19,9.2,10,0.0 +13367,29,123.79,1,0.0 +13367,74,10,3,0.0 +13367,14,23.25,9,0.0 +13367,56,38,27,0.0 +13367,6,25,6,0.0 +13367,32,32,44,0.0 +13367,77,13,19,0.0 +13367,43,46,36,0.0 +13367,59,55,39,0.0 +13367,69,36,14,0.0 +13367,36,19,49,0.0 +13367,46,12,17,0.0 +13367,45,9.5,50,0.0 +13367,33,2.5,4,0.0 +13367,63,43.9,31,0.0 +13367,2,19,28,0.0 +13367,65,21.05,18,0.0 +13367,28,45.6,41,0.0 +13368,55,24,6,0.0 +13368,46,12,30,0.0 +13368,10,31,9,0.0 +13368,36,19,13,0.0 +13368,50,16.25,6,0.0 +13368,68,12.5,44,0.0 +13368,1,18,20,0.0 +13368,31,12.5,18,0.0 +13368,26,31.23,49,0.0 +13368,52,7,42,0.0 +13368,19,9.2,18,0.0 +13368,39,18,48,0.0 +13368,23,9,36,0.0 +13368,3,10,47,0.0 +13368,37,26,6,0.0 +13368,60,34,50,0.0 +13368,22,21,11,0.0 +13368,29,123.79,40,0.0 +13368,32,32,4,0.0 +13368,14,23.25,36,0.0 +13368,21,10,38,0.0 +13368,16,17.45,20,0.0 +13368,59,55,42,0.0 +13368,2,19,23,0.0 +13368,13,6,1,0.0 +13368,38,263.5,9,0.0 +13368,30,25.89,38,0.0 +13369,26,31.23,34,0.0 +13369,11,21,38,0.0 +13369,30,25.89,43,0.0 +13369,63,43.9,12,0.0 +13369,36,19,34,0.0 +13369,55,24,11,0.0 +13369,17,39,9,0.0 +13369,49,20,18,0.0 +13369,67,14,46,0.0 +13369,14,23.25,15,0.0 +13369,39,18,3,0.0 +13370,62,49.3,39,0.0 +13370,63,43.9,11,0.0 +13370,21,10,45,0.0 +13370,7,30,46,0.0 +13370,39,18,47,0.0 +13370,71,21.5,16,0.0 +13370,77,13,41,0.0 +13370,56,38,44,0.0 +13370,42,14,33,0.0 +13370,26,31.23,5,0.0 +13370,72,34.8,5,0.0 +13370,48,12.75,41,0.0 +13370,27,43.9,13,0.0 +13370,51,53,29,0.0 +13370,32,32,13,0.0 +13370,3,10,32,0.0 +13370,73,15,46,0.0 +13370,65,21.05,4,0.0 +13370,16,17.45,50,0.0 +13370,68,12.5,43,0.0 +13370,35,18,20,0.0 +13370,75,7.75,31,0.0 +13370,64,33.25,44,0.0 +13370,4,22,20,0.0 +13370,19,9.2,41,0.0 +13370,49,20,43,0.0 +13370,46,12,16,0.0 +13370,57,19.5,14,0.0 +13370,30,25.89,4,0.0 +13370,43,46,28,0.0 +13370,24,4.5,48,0.0 +13370,52,7,31,0.0 +13370,69,36,28,0.0 +13370,13,6,25,0.0 +13370,59,55,47,0.0 +13370,70,15,12,0.0 +13370,10,31,9,0.0 +13370,9,97,39,0.0 +13370,55,24,22,0.0 +13370,38,263.5,37,0.0 +13370,23,9,8,0.0 +13370,47,9.5,41,0.0 +13370,22,21,31,0.0 +13370,28,45.6,22,0.0 +13370,25,14,29,0.0 +13370,76,18,50,0.0 +13370,60,34,12,0.0 +13370,33,2.5,43,0.0 +13370,20,81,39,0.0 +13370,61,28.5,16,0.0 +13370,15,15.5,37,0.0 +13370,12,38,23,0.0 +13370,29,123.79,20,0.0 +13370,66,17,14,0.0 +13370,2,19,11,0.0 +13370,58,13.25,31,0.0 +13370,34,14,15,0.0 +13370,41,9.65,46,0.0 +13370,50,16.25,14,0.0 +13370,5,21.35,24,0.0 +13370,44,19.45,16,0.0 +13370,40,18.4,16,0.0 +13370,1,18,50,0.0 +13370,54,7.45,12,0.0 +13370,31,12.5,7,0.0 +13370,14,23.25,49,0.0 +13370,17,39,5,0.0 +13370,37,26,2,0.0 +13370,45,9.5,45,0.0 +13370,67,14,40,0.0 +13370,36,19,10,0.0 +13370,74,10,48,0.0 +13370,11,21,1,0.0 +13370,53,32.8,31,0.0 +13371,29,123.79,2,0.0 +13371,43,46,47,0.0 +13371,74,10,23,0.0 +13371,70,15,27,0.0 +13371,64,33.25,47,0.0 +13371,8,40,42,0.0 +13371,4,22,41,0.0 +13371,20,81,40,0.0 +13371,65,21.05,38,0.0 +13371,19,9.2,24,0.0 +13371,40,18.4,30,0.0 +13371,26,31.23,36,0.0 +13371,6,25,37,0.0 +13371,66,17,28,0.0 +13371,21,10,43,0.0 +13371,51,53,34,0.0 +13371,36,19,49,0.0 +13371,72,34.8,39,0.0 +13371,77,13,39,0.0 +13371,24,4.5,39,0.0 +13371,73,15,37,0.0 +13371,23,9,34,0.0 +13371,16,17.45,43,0.0 +13371,2,19,42,0.0 +13371,42,14,22,0.0 +13371,56,38,23,0.0 +13371,35,18,40,0.0 +13371,58,13.25,10,0.0 +13371,55,24,3,0.0 +13371,67,14,50,0.0 +13371,1,18,39,0.0 +13371,39,18,31,0.0 +13371,34,14,41,0.0 +13371,13,6,21,0.0 +13371,62,49.3,24,0.0 +13371,76,18,45,0.0 +13371,53,32.8,30,0.0 +13371,41,9.65,8,0.0 +13371,27,43.9,35,0.0 +13371,28,45.6,5,0.0 +13371,5,21.35,32,0.0 +13371,22,21,29,0.0 +13371,30,25.89,26,0.0 +13371,3,10,16,0.0 +13371,50,16.25,2,0.0 +13371,57,19.5,4,0.0 +13371,46,12,11,0.0 +13372,72,34.8,31,0.0 +13372,21,10,42,0.0 +13372,56,38,47,0.0 +13372,15,15.5,8,0.0 +13372,10,31,26,0.0 +13372,30,25.89,27,0.0 +13372,76,18,50,0.0 +13372,54,7.45,13,0.0 +13372,66,17,26,0.0 +13372,43,46,11,0.0 +13372,32,32,40,0.0 +13372,9,97,48,0.0 +13372,31,12.5,16,0.0 +13372,1,18,49,0.0 +13372,60,34,12,0.0 +13372,46,12,26,0.0 +13372,73,15,49,0.0 +13372,71,21.5,35,0.0 +13372,19,9.2,8,0.0 +13372,12,38,49,0.0 +13372,25,14,33,0.0 +13372,18,62.5,21,0.0 +13372,77,13,37,0.0 +13372,48,12.75,15,0.0 +13372,64,33.25,33,0.0 +13372,29,123.79,19,0.0 +13372,13,6,41,0.0 +13372,41,9.65,39,0.0 +13372,38,263.5,39,0.0 +13372,44,19.45,9,0.0 +13372,74,10,46,0.0 +13372,49,20,14,0.0 +13372,34,14,50,0.0 +13372,17,39,49,0.0 +13372,70,15,46,0.0 +13372,58,13.25,35,0.0 +13372,37,26,2,0.0 +13372,42,14,16,0.0 +13372,14,23.25,37,0.0 +13372,40,18.4,31,0.0 +13372,62,49.3,35,0.0 +13372,61,28.5,24,0.0 +13372,11,21,6,0.0 +13372,6,25,21,0.0 +13372,24,4.5,28,0.0 +13372,50,16.25,48,0.0 +13372,36,19,8,0.0 +13372,28,45.6,19,0.0 +13372,16,17.45,9,0.0 +13372,8,40,26,0.0 +13372,7,30,30,0.0 +13372,3,10,45,0.0 +13372,68,12.5,3,0.0 +13372,23,9,50,0.0 +13372,45,9.5,11,0.0 +13372,26,31.23,35,0.0 +13372,22,21,43,0.0 +13372,57,19.5,46,0.0 +13372,27,43.9,27,0.0 +13372,65,21.05,30,0.0 +13372,75,7.75,44,0.0 +13372,35,18,43,0.0 +13372,2,19,41,0.0 +13372,5,21.35,43,0.0 +13372,67,14,6,0.0 +13372,53,32.8,47,0.0 +13372,52,7,26,0.0 +13372,47,9.5,29,0.0 +13372,69,36,23,0.0 +13372,33,2.5,45,0.0 +13372,55,24,9,0.0 +13372,39,18,27,0.0 +13372,20,81,10,0.0 +13372,59,55,50,0.0 +13372,51,53,4,0.0 +13372,4,22,42,0.0 +13373,63,43.9,4,0.0 +13373,70,15,45,0.0 +13373,31,12.5,15,0.0 +13373,76,18,18,0.0 +13373,53,32.8,47,0.0 +13373,37,26,7,0.0 +13373,43,46,41,0.0 +13373,65,21.05,30,0.0 +13374,16,17.45,24,0.0 +13375,65,21.05,37,0.0 +13375,76,18,27,0.0 +13375,46,12,3,0.0 +13375,32,32,25,0.0 +13375,8,40,27,0.0 +13375,16,17.45,10,0.0 +13375,22,21,25,0.0 +13375,73,15,19,0.0 +13375,6,25,2,0.0 +13375,24,4.5,44,0.0 +13375,77,13,5,0.0 +13375,68,12.5,27,0.0 +13375,48,12.75,39,0.0 +13375,59,55,40,0.0 +13375,10,31,23,0.0 +13375,45,9.5,25,0.0 +13375,15,15.5,9,0.0 +13375,25,14,43,0.0 +13375,42,14,14,0.0 +13375,57,19.5,6,0.0 +13375,35,18,20,0.0 +13375,18,62.5,5,0.0 +13375,41,9.65,38,0.0 +13375,44,19.45,40,0.0 +13375,40,18.4,28,0.0 +13375,23,9,46,0.0 +13375,71,21.5,31,0.0 +13375,31,12.5,24,0.0 +13375,54,7.45,46,0.0 +13375,4,22,10,0.0 +13375,50,16.25,5,0.0 +13375,1,18,35,0.0 +13375,56,38,22,0.0 +13375,37,26,4,0.0 +13375,67,14,40,0.0 +13375,55,24,20,0.0 +13375,2,19,10,0.0 +13375,74,10,24,0.0 +13375,52,7,11,0.0 +13375,43,46,2,0.0 +13375,64,33.25,16,0.0 +13376,20,81,22,0.0 +13376,38,263.5,34,0.0 +13376,7,30,36,0.0 +13376,56,38,30,0.0 +13376,59,55,35,0.0 +13376,28,45.6,46,0.0 +13376,61,28.5,11,0.0 +13376,71,21.5,33,0.0 +13376,75,7.75,33,0.0 +13376,25,14,34,0.0 +13376,65,21.05,16,0.0 +13376,69,36,44,0.0 +13376,36,19,40,0.0 +13376,50,16.25,14,0.0 +13376,14,23.25,50,0.0 +13376,2,19,11,0.0 +13376,6,25,28,0.0 +13376,74,10,35,0.0 +13376,40,18.4,11,0.0 +13376,21,10,34,0.0 +13376,76,18,12,0.0 +13376,37,26,15,0.0 +13376,5,21.35,32,0.0 +13376,55,24,1,0.0 +13376,34,14,33,0.0 +13376,62,49.3,10,0.0 +13376,51,53,9,0.0 +13376,22,21,35,0.0 +13376,24,4.5,44,0.0 +13376,42,14,47,0.0 +13376,64,33.25,17,0.0 +13376,60,34,20,0.0 +13376,41,9.65,14,0.0 +13376,57,19.5,21,0.0 +13376,29,123.79,48,0.0 +13376,46,12,4,0.0 +13376,10,31,49,0.0 +13376,27,43.9,12,0.0 +13376,9,97,7,0.0 +13376,66,17,27,0.0 +13376,58,13.25,7,0.0 +13376,1,18,5,0.0 +13376,15,15.5,29,0.0 +13376,18,62.5,10,0.0 +13376,72,34.8,4,0.0 +13376,26,31.23,11,0.0 +13376,45,9.5,39,0.0 +13376,11,21,49,0.0 +13376,77,13,38,0.0 +13376,73,15,30,0.0 +13376,32,32,9,0.0 +13376,48,12.75,3,0.0 +13376,63,43.9,26,0.0 +13376,12,38,40,0.0 +13376,39,18,33,0.0 +13376,67,14,32,0.0 +13376,70,15,28,0.0 +13377,6,25,24,0.0 +13377,47,9.5,1,0.0 +13377,74,10,26,0.0 +13377,70,15,44,0.0 +13377,46,12,9,0.0 +13377,54,7.45,24,0.0 +13377,77,13,42,0.0 +13377,39,18,27,0.0 +13377,63,43.9,35,0.0 +13377,40,18.4,34,0.0 +13377,30,25.89,9,0.0 +13377,72,34.8,43,0.0 +13377,28,45.6,16,0.0 +13377,25,14,35,0.0 +13377,49,20,36,0.0 +13377,23,9,10,0.0 +13377,75,7.75,10,0.0 +13377,13,6,5,0.0 +13377,50,16.25,16,0.0 +13377,35,18,32,0.0 +13377,73,15,5,0.0 +13377,36,19,15,0.0 +13377,29,123.79,45,0.0 +13377,34,14,45,0.0 +13377,7,30,41,0.0 +13377,26,31.23,16,0.0 +13377,48,12.75,41,0.0 +13377,45,9.5,49,0.0 +13377,15,15.5,37,0.0 +13377,55,24,43,0.0 +13377,60,34,8,0.0 +13377,37,26,46,0.0 +13377,65,21.05,28,0.0 +13377,8,40,47,0.0 +13377,21,10,19,0.0 +13377,58,13.25,49,0.0 +13377,32,32,26,0.0 +13377,59,55,3,0.0 +13377,12,38,33,0.0 +13377,53,32.8,14,0.0 +13377,68,12.5,17,0.0 +13377,22,21,23,0.0 +13377,31,12.5,22,0.0 +13377,10,31,18,0.0 +13377,9,97,41,0.0 +13377,11,21,41,0.0 +13377,44,19.45,48,0.0 +13377,38,263.5,2,0.0 +13377,20,81,19,0.0 +13377,64,33.25,19,0.0 +13377,57,19.5,49,0.0 +13377,69,36,22,0.0 +13377,66,17,23,0.0 +13377,16,17.45,22,0.0 +13377,62,49.3,6,0.0 +13377,42,14,46,0.0 +13377,17,39,15,0.0 +13377,43,46,33,0.0 +13377,1,18,4,0.0 +13377,5,21.35,15,0.0 +13377,27,43.9,22,0.0 +13377,56,38,33,0.0 +13377,71,21.5,12,0.0 +13377,2,19,11,0.0 +13377,76,18,14,0.0 +13377,3,10,29,0.0 +13377,18,62.5,40,0.0 +13377,52,7,20,0.0 +13378,18,62.5,5,0.0 +13378,46,12,49,0.0 +13378,64,33.25,10,0.0 +13378,50,16.25,26,0.0 +13378,49,20,41,0.0 +13378,39,18,44,0.0 +13378,59,55,7,0.0 +13378,2,19,34,0.0 +13378,56,38,4,0.0 +13378,1,18,45,0.0 +13378,23,9,31,0.0 +13378,62,49.3,3,0.0 +13378,65,21.05,36,0.0 +13378,45,9.5,3,0.0 +13378,15,15.5,32,0.0 +13378,13,6,3,0.0 +13378,77,13,10,0.0 +13378,68,12.5,22,0.0 +13378,71,21.5,30,0.0 +13378,55,24,2,0.0 +13378,16,17.45,11,0.0 +13378,53,32.8,49,0.0 +13378,3,10,50,0.0 +13378,58,13.25,27,0.0 +13378,35,18,47,0.0 +13378,29,123.79,18,0.0 +13378,43,46,42,0.0 +13378,51,53,20,0.0 +13378,37,26,34,0.0 +13378,34,14,1,0.0 +13378,42,14,28,0.0 +13378,52,7,13,0.0 +13378,47,9.5,6,0.0 +13378,32,32,16,0.0 +13378,8,40,16,0.0 +13378,40,18.4,32,0.0 +13378,20,81,48,0.0 +13378,22,21,5,0.0 +13378,69,36,36,0.0 +13378,28,45.6,46,0.0 +13378,14,23.25,46,0.0 +13378,19,9.2,44,0.0 +13378,73,15,40,0.0 +13378,76,18,6,0.0 +13378,30,25.89,39,0.0 +13378,72,34.8,9,0.0 +13378,6,25,40,0.0 +13378,36,19,49,0.0 +13378,41,9.65,6,0.0 +13378,11,21,33,0.0 +13378,60,34,12,0.0 +13378,10,31,46,0.0 +13378,21,10,49,0.0 +13378,17,39,33,0.0 +13378,67,14,40,0.0 +13378,75,7.75,47,0.0 +13378,4,22,40,0.0 +13378,63,43.9,44,0.0 +13378,24,4.5,29,0.0 +13378,7,30,39,0.0 +13378,27,43.9,33,0.0 +13378,74,10,43,0.0 +13379,38,263.5,42,0.0 +13379,76,18,9,0.0 +13379,52,7,34,0.0 +13379,32,32,48,0.0 +13379,20,81,40,0.0 +13379,67,14,30,0.0 +13379,73,15,36,0.0 +13379,21,10,14,0.0 +13379,30,25.89,27,0.0 +13379,56,38,40,0.0 +13380,55,24,11,0.0 +13380,69,36,12,0.0 +13380,14,23.25,45,0.0 +13380,20,81,24,0.0 +13380,17,39,38,0.0 +13380,8,40,2,0.0 +13381,37,26,3,0.0 +13381,43,46,8,0.0 +13381,72,34.8,40,0.0 +13381,23,9,32,0.0 +13382,67,14,31,0.0 +13382,50,16.25,33,0.0 +13382,8,40,32,0.0 +13382,39,18,24,0.0 +13382,38,263.5,32,0.0 +13382,7,30,39,0.0 +13382,49,20,17,0.0 +13382,22,21,47,0.0 +13382,20,81,34,0.0 +13382,61,28.5,43,0.0 +13382,33,2.5,36,0.0 +13382,32,32,8,0.0 +13382,27,43.9,9,0.0 +13382,24,4.5,20,0.0 +13382,30,25.89,7,0.0 +13382,60,34,21,0.0 +13382,35,18,33,0.0 +13382,52,7,11,0.0 +13382,29,123.79,39,0.0 +13382,6,25,41,0.0 +13382,45,9.5,27,0.0 +13383,18,62.5,35,0.0 +13383,77,13,50,0.0 +13383,12,38,13,0.0 +13383,71,21.5,10,0.0 +13383,68,12.5,34,0.0 +13383,70,15,2,0.0 +13383,29,123.79,19,0.0 +13383,20,81,21,0.0 +13383,2,19,10,0.0 +13383,60,34,18,0.0 +13383,26,31.23,8,0.0 +13383,63,43.9,20,0.0 +13383,72,34.8,37,0.0 +13383,36,19,42,0.0 +13383,33,2.5,46,0.0 +13383,59,55,19,0.0 +13383,30,25.89,32,0.0 +13383,16,17.45,13,0.0 +13383,21,10,39,0.0 +13383,28,45.6,40,0.0 +13383,61,28.5,30,0.0 +13383,32,32,18,0.0 +13383,47,9.5,21,0.0 +13383,34,14,32,0.0 +13383,25,14,30,0.0 +13383,49,20,4,0.0 +13383,41,9.65,40,0.0 +13383,13,6,4,0.0 +13383,7,30,41,0.0 +13383,8,40,48,0.0 +13383,74,10,31,0.0 +13383,1,18,38,0.0 +13383,4,22,20,0.0 +13383,58,13.25,16,0.0 +13383,54,7.45,41,0.0 +13383,62,49.3,27,0.0 +13383,23,9,25,0.0 +13383,27,43.9,38,0.0 +13383,50,16.25,1,0.0 +13383,11,21,20,0.0 +13383,53,32.8,40,0.0 +13383,22,21,15,0.0 +13383,10,31,1,0.0 +13383,17,39,19,0.0 +13383,76,18,38,0.0 +13383,56,38,5,0.0 +13383,42,14,41,0.0 +13383,64,33.25,1,0.0 +13383,9,97,48,0.0 +13383,39,18,28,0.0 +13383,43,46,11,0.0 +13383,48,12.75,16,0.0 +13383,67,14,3,0.0 +13384,10,31,7,0.0 +13384,41,9.65,32,0.0 +13384,34,14,5,0.0 +13384,77,13,17,0.0 +13384,64,33.25,10,0.0 +13384,4,22,41,0.0 +13384,71,21.5,20,0.0 +13384,27,43.9,14,0.0 +13384,20,81,19,0.0 +13384,21,10,21,0.0 +13384,30,25.89,25,0.0 +13384,33,2.5,34,0.0 +13384,67,14,48,0.0 +13384,55,24,40,0.0 +13384,59,55,23,0.0 +13384,50,16.25,16,0.0 +13384,66,17,7,0.0 +13384,8,40,47,0.0 +13384,13,6,12,0.0 +13384,32,32,44,0.0 +13384,75,7.75,46,0.0 +13384,23,9,27,0.0 +13384,6,25,3,0.0 +13384,62,49.3,38,0.0 +13384,31,12.5,16,0.0 +13384,28,45.6,30,0.0 +13384,29,123.79,29,0.0 +13384,17,39,8,0.0 +13384,47,9.5,4,0.0 +13384,54,7.45,40,0.0 +13384,39,18,48,0.0 +13384,43,46,32,0.0 +13384,18,62.5,40,0.0 +13384,7,30,35,0.0 +13384,51,53,25,0.0 +13384,53,32.8,19,0.0 +13384,74,10,9,0.0 +13384,70,15,10,0.0 +13384,49,20,10,0.0 +13384,44,19.45,16,0.0 +13384,19,9.2,48,0.0 +13384,9,97,43,0.0 +13384,24,4.5,29,0.0 +13384,40,18.4,11,0.0 +13384,69,36,13,0.0 +13384,22,21,45,0.0 +13384,73,15,9,0.0 +13384,76,18,34,0.0 +13384,25,14,40,0.0 +13384,46,12,46,0.0 +13384,37,26,3,0.0 +13384,14,23.25,50,0.0 +13384,57,19.5,29,0.0 +13384,2,19,49,0.0 +13384,56,38,1,0.0 +13384,72,34.8,37,0.0 +13384,26,31.23,12,0.0 +13384,68,12.5,50,0.0 +13384,58,13.25,19,0.0 +13384,12,38,31,0.0 +13384,42,14,13,0.0 +13384,5,21.35,43,0.0 +13384,38,263.5,2,0.0 +13384,63,43.9,7,0.0 +13384,36,19,26,0.0 +13384,60,34,39,0.0 +13384,61,28.5,22,0.0 +13384,35,18,25,0.0 +13385,46,12,47,0.0 +13385,13,6,43,0.0 +13385,20,81,5,0.0 +13385,5,21.35,25,0.0 +13385,74,10,30,0.0 +13385,49,20,15,0.0 +13385,63,43.9,26,0.0 +13385,70,15,48,0.0 +13385,4,22,9,0.0 +13385,36,19,49,0.0 +13385,12,38,37,0.0 +13385,26,31.23,40,0.0 +13385,59,55,11,0.0 +13385,55,24,13,0.0 +13385,39,18,39,0.0 +13386,25,14,37,0.0 +13386,17,39,13,0.0 +13386,56,38,10,0.0 +13386,57,19.5,20,0.0 +13386,76,18,48,0.0 +13386,46,12,6,0.0 +13386,32,32,24,0.0 +13386,51,53,9,0.0 +13386,35,18,30,0.0 +13386,67,14,23,0.0 +13386,22,21,47,0.0 +13386,12,38,29,0.0 +13386,47,9.5,47,0.0 +13386,27,43.9,5,0.0 +13386,1,18,35,0.0 +13386,66,17,26,0.0 +13386,3,10,22,0.0 +13386,20,81,9,0.0 +13386,58,13.25,29,0.0 +13386,2,19,41,0.0 +13386,9,97,37,0.0 +13386,77,13,36,0.0 +13386,8,40,37,0.0 +13386,37,26,32,0.0 +13386,11,21,11,0.0 +13386,36,19,24,0.0 +13386,68,12.5,9,0.0 +13386,59,55,15,0.0 +13386,15,15.5,32,0.0 +13386,33,2.5,31,0.0 +13386,55,24,25,0.0 +13386,30,25.89,36,0.0 +13386,60,34,8,0.0 +13386,5,21.35,40,0.0 +13386,49,20,11,0.0 +13386,41,9.65,18,0.0 +13386,61,28.5,13,0.0 +13386,54,7.45,1,0.0 +13386,29,123.79,10,0.0 +13386,7,30,34,0.0 +13386,73,15,3,0.0 +13386,53,32.8,5,0.0 +13386,45,9.5,6,0.0 +13386,16,17.45,39,0.0 +13386,70,15,10,0.0 +13386,31,12.5,43,0.0 +13386,72,34.8,43,0.0 +13386,71,21.5,47,0.0 +13386,62,49.3,38,0.0 +13386,38,263.5,5,0.0 +13386,39,18,16,0.0 +13386,18,62.5,34,0.0 +13386,65,21.05,1,0.0 +13386,13,6,20,0.0 +13387,52,7,38,0.0 +13387,63,43.9,42,0.0 +13387,55,24,9,0.0 +13387,29,123.79,25,0.0 +13387,46,12,8,0.0 +13387,58,13.25,49,0.0 +13387,50,16.25,41,0.0 +13387,35,18,6,0.0 +13387,12,38,15,0.0 +13387,39,18,33,0.0 +13387,60,34,34,0.0 +13387,4,22,14,0.0 +13387,13,6,41,0.0 +13387,65,21.05,43,0.0 +13387,36,19,3,0.0 +13387,28,45.6,5,0.0 +13387,32,32,43,0.0 +13387,54,7.45,3,0.0 +13387,16,17.45,13,0.0 +13387,70,15,28,0.0 +13387,21,10,21,0.0 +13387,27,43.9,15,0.0 +13387,45,9.5,25,0.0 +13387,26,31.23,16,0.0 +13387,37,26,42,0.0 +13387,15,15.5,14,0.0 +13388,61,28.5,4,0.0 +13388,66,17,22,0.0 +13388,52,7,21,0.0 +13388,33,2.5,41,0.0 +13388,2,19,24,0.0 +13388,42,14,34,0.0 +13388,17,39,15,0.0 +13388,43,46,27,0.0 +13388,54,7.45,24,0.0 +13388,4,22,45,0.0 +13388,57,19.5,16,0.0 +13388,77,13,19,0.0 +13388,56,38,38,0.0 +13388,50,16.25,3,0.0 +13388,25,14,46,0.0 +13388,30,25.89,44,0.0 +13388,63,43.9,50,0.0 +13388,10,31,44,0.0 +13388,68,12.5,12,0.0 +13388,21,10,7,0.0 +13388,58,13.25,22,0.0 +13388,3,10,35,0.0 +13388,76,18,36,0.0 +13388,1,18,22,0.0 +13388,36,19,35,0.0 +13388,70,15,12,0.0 +13388,8,40,2,0.0 +13388,37,26,45,0.0 +13389,42,14,14,0.0 +13389,36,19,48,0.0 +13389,19,9.2,38,0.0 +13389,45,9.5,3,0.0 +13389,9,97,14,0.0 +13389,20,81,3,0.0 +13389,72,34.8,7,0.0 +13389,60,34,25,0.0 +13389,32,32,45,0.0 +13389,5,21.35,2,0.0 +13389,30,25.89,38,0.0 +13389,2,19,26,0.0 +13389,65,21.05,20,0.0 +13389,13,6,22,0.0 +13389,17,39,26,0.0 +13389,47,9.5,22,0.0 +13389,75,7.75,39,0.0 +13389,37,26,48,0.0 +13389,11,21,33,0.0 +13389,46,12,18,0.0 +13389,57,19.5,7,0.0 +13389,51,53,22,0.0 +13389,12,38,47,0.0 +13389,49,20,20,0.0 +13389,34,14,45,0.0 +13390,48,12.75,32,0.0 +13390,10,31,23,0.0 +13390,38,263.5,17,0.0 +13390,14,23.25,12,0.0 +13390,64,33.25,49,0.0 +13391,53,32.8,9,0.0 +13391,49,20,47,0.0 +13391,20,81,32,0.0 +13391,1,18,32,0.0 +13391,21,10,15,0.0 +13391,59,55,45,0.0 +13391,40,18.4,28,0.0 +13391,56,38,36,0.0 +13391,72,34.8,37,0.0 +13392,1,18,42,0.0 +13392,37,26,37,0.0 +13392,60,34,30,0.0 +13392,17,39,1,0.0 +13392,28,45.6,39,0.0 +13392,35,18,4,0.0 +13392,36,19,34,0.0 +13392,56,38,26,0.0 +13392,14,23.25,43,0.0 +13392,62,49.3,10,0.0 +13392,7,30,37,0.0 +13392,6,25,34,0.0 +13392,9,97,38,0.0 +13392,23,9,17,0.0 +13392,40,18.4,18,0.0 +13392,44,19.45,45,0.0 +13392,70,15,5,0.0 +13392,4,22,36,0.0 +13392,31,12.5,8,0.0 +13392,64,33.25,44,0.0 +13392,73,15,37,0.0 +13392,24,4.5,29,0.0 +13392,18,62.5,24,0.0 +13392,52,7,37,0.0 +13392,77,13,19,0.0 +13392,55,24,16,0.0 +13392,61,28.5,14,0.0 +13392,15,15.5,14,0.0 +13392,25,14,14,0.0 +13392,21,10,36,0.0 +13392,58,13.25,47,0.0 +13392,33,2.5,13,0.0 +13392,67,14,23,0.0 +13392,48,12.75,29,0.0 +13392,66,17,24,0.0 +13392,69,36,18,0.0 +13392,32,32,2,0.0 +13392,11,21,31,0.0 +13392,39,18,47,0.0 +13392,30,25.89,47,0.0 +13392,76,18,46,0.0 +13392,3,10,3,0.0 +13392,34,14,12,0.0 +13392,71,21.5,18,0.0 +13392,8,40,19,0.0 +13392,65,21.05,40,0.0 +13392,29,123.79,31,0.0 +13392,75,7.75,34,0.0 +13392,53,32.8,17,0.0 +13392,10,31,31,0.0 +13392,47,9.5,45,0.0 +13392,26,31.23,49,0.0 +13392,2,19,1,0.0 +13392,59,55,20,0.0 +13392,49,20,38,0.0 +13392,72,34.8,31,0.0 +13392,19,9.2,14,0.0 +13392,20,81,33,0.0 +13392,22,21,18,0.0 +13392,13,6,6,0.0 +13392,27,43.9,7,0.0 +13392,74,10,42,0.0 +13392,5,21.35,4,0.0 +13392,50,16.25,32,0.0 +13392,57,19.5,40,0.0 +13392,43,46,12,0.0 +13392,68,12.5,23,0.0 +13392,63,43.9,31,0.0 +13392,42,14,19,0.0 +13392,41,9.65,49,0.0 +13392,45,9.5,39,0.0 +13392,51,53,21,0.0 +13392,46,12,50,0.0 +13392,38,263.5,40,0.0 +13392,12,38,37,0.0 +13392,16,17.45,30,0.0 +13392,54,7.45,46,0.0 +13393,8,40,18,0.0 +13393,58,13.25,37,0.0 +13393,62,49.3,39,0.0 +13393,76,18,31,0.0 +13393,10,31,49,0.0 +13393,33,2.5,28,0.0 +13393,29,123.79,15,0.0 +13393,26,31.23,1,0.0 +13393,63,43.9,19,0.0 +13393,69,36,42,0.0 +13393,27,43.9,18,0.0 +13393,34,14,24,0.0 +13393,75,7.75,49,0.0 +13393,2,19,30,0.0 +13393,14,23.25,37,0.0 +13393,43,46,4,0.0 +13393,71,21.5,17,0.0 +13393,60,34,16,0.0 +13393,52,7,29,0.0 +13393,57,19.5,15,0.0 +13393,44,19.45,5,0.0 +13393,41,9.65,6,0.0 +13393,61,28.5,16,0.0 +13393,56,38,21,0.0 +13393,51,53,43,0.0 +13393,36,19,49,0.0 +13393,5,21.35,36,0.0 +13393,77,13,19,0.0 +13393,1,18,18,0.0 +13393,53,32.8,20,0.0 +13393,40,18.4,39,0.0 +13393,24,4.5,5,0.0 +13393,66,17,18,0.0 +13393,49,20,1,0.0 +13393,68,12.5,6,0.0 +13393,23,9,20,0.0 +13393,32,32,33,0.0 +13393,50,16.25,40,0.0 +13393,28,45.6,49,0.0 +13393,72,34.8,50,0.0 +13393,7,30,39,0.0 +13393,19,9.2,36,0.0 +13393,20,81,47,0.0 +13393,6,25,20,0.0 +13393,65,21.05,41,0.0 +13393,17,39,3,0.0 +13393,16,17.45,24,0.0 +13393,21,10,16,0.0 +13393,45,9.5,46,0.0 +13393,73,15,42,0.0 +13393,38,263.5,29,0.0 +13393,64,33.25,23,0.0 +13393,30,25.89,18,0.0 +13393,11,21,17,0.0 +13393,13,6,1,0.0 +13393,18,62.5,21,0.0 +13393,48,12.75,37,0.0 +13393,74,10,32,0.0 +13393,55,24,14,0.0 +13393,42,14,1,0.0 +13393,70,15,19,0.0 +13393,31,12.5,44,0.0 +13393,9,97,23,0.0 +13393,12,38,9,0.0 +13393,22,21,24,0.0 +13393,47,9.5,32,0.0 +13393,39,18,39,0.0 +13393,67,14,19,0.0 +13393,54,7.45,39,0.0 +13393,15,15.5,19,0.0 +13393,3,10,28,0.0 +13393,25,14,15,0.0 +13393,59,55,1,0.0 +13394,2,19,42,0.0 +13394,51,53,49,0.0 +13394,12,38,45,0.0 +13394,58,13.25,25,0.0 +13394,15,15.5,37,0.0 +13394,16,17.45,27,0.0 +13394,34,14,18,0.0 +13394,68,12.5,15,0.0 +13394,56,38,43,0.0 +13394,47,9.5,42,0.0 +13394,54,7.45,39,0.0 +13394,30,25.89,46,0.0 +13394,29,123.79,17,0.0 +13394,3,10,44,0.0 +13394,77,13,1,0.0 +13394,20,81,9,0.0 +13394,67,14,35,0.0 +13394,42,14,13,0.0 +13394,33,2.5,4,0.0 +13394,7,30,15,0.0 +13394,52,7,12,0.0 +13394,39,18,29,0.0 +13394,5,21.35,24,0.0 +13394,48,12.75,15,0.0 +13394,21,10,44,0.0 +13394,11,21,5,0.0 +13394,18,62.5,9,0.0 +13395,52,7,47,0.0 +13395,49,20,48,0.0 +13395,41,9.65,40,0.0 +13395,56,38,6,0.0 +13395,77,13,45,0.0 +13395,69,36,34,0.0 +13395,65,21.05,7,0.0 +13395,50,16.25,26,0.0 +13395,31,12.5,23,0.0 +13395,39,18,33,0.0 +13395,8,40,20,0.0 +13395,35,18,22,0.0 +13395,43,46,15,0.0 +13395,26,31.23,32,0.0 +13395,19,9.2,5,0.0 +13395,12,38,49,0.0 +13395,47,9.5,22,0.0 +13395,7,30,15,0.0 +13395,54,7.45,22,0.0 +13395,23,9,49,0.0 +13395,58,13.25,38,0.0 +13395,1,18,33,0.0 +13395,18,62.5,3,0.0 +13395,17,39,9,0.0 +13395,62,49.3,17,0.0 +13395,6,25,25,0.0 +13395,13,6,31,0.0 +13395,20,81,32,0.0 +13395,11,21,5,0.0 +13395,32,32,7,0.0 +13395,72,34.8,35,0.0 +13395,55,24,39,0.0 +13395,64,33.25,17,0.0 +13395,29,123.79,46,0.0 +13395,53,32.8,35,0.0 +13395,44,19.45,13,0.0 +13395,63,43.9,17,0.0 +13395,22,21,44,0.0 +13395,34,14,28,0.0 +13395,66,17,23,0.0 +13395,73,15,28,0.0 +13395,75,7.75,26,0.0 +13395,25,14,28,0.0 +13395,48,12.75,15,0.0 +13395,51,53,46,0.0 +13395,37,26,48,0.0 +13395,76,18,46,0.0 +13395,4,22,14,0.0 +13395,33,2.5,24,0.0 +13395,42,14,1,0.0 +13395,71,21.5,38,0.0 +13395,40,18.4,7,0.0 +13395,2,19,16,0.0 +13395,10,31,15,0.0 +13395,16,17.45,42,0.0 +13395,67,14,19,0.0 +13395,45,9.5,41,0.0 +13395,9,97,9,0.0 +13395,38,263.5,29,0.0 +13395,46,12,2,0.0 +13395,24,4.5,14,0.0 +13395,57,19.5,30,0.0 +13395,14,23.25,1,0.0 +13395,68,12.5,37,0.0 +13395,70,15,13,0.0 +13395,27,43.9,26,0.0 +13395,61,28.5,9,0.0 +13395,74,10,20,0.0 +13395,60,34,50,0.0 +13395,59,55,42,0.0 +13396,1,18,36,0.0 +13396,26,31.23,24,0.0 +13396,51,53,11,0.0 +13396,6,25,4,0.0 +13396,55,24,19,0.0 +13396,48,12.75,27,0.0 +13396,10,31,8,0.0 +13396,76,18,23,0.0 +13396,46,12,20,0.0 +13396,50,16.25,39,0.0 +13396,40,18.4,39,0.0 +13396,77,13,47,0.0 +13396,32,32,44,0.0 +13396,57,19.5,36,0.0 +13396,71,21.5,33,0.0 +13396,21,10,37,0.0 +13396,24,4.5,17,0.0 +13396,19,9.2,32,0.0 +13396,28,45.6,34,0.0 +13396,66,17,14,0.0 +13396,65,21.05,22,0.0 +13396,11,21,47,0.0 +13396,52,7,46,0.0 +13397,75,7.75,41,0.0 +13397,40,18.4,13,0.0 +13397,65,21.05,29,0.0 +13397,39,18,4,0.0 +13397,21,10,19,0.0 +13397,57,19.5,28,0.0 +13397,44,19.45,10,0.0 +13397,9,97,15,0.0 +13397,55,24,16,0.0 +13397,31,12.5,29,0.0 +13397,7,30,37,0.0 +13397,10,31,45,0.0 +13397,29,123.79,4,0.0 +13397,25,14,43,0.0 +13398,49,20,5,0.0 +13398,28,45.6,50,0.0 +13398,35,18,33,0.0 +13398,30,25.89,49,0.0 +13398,26,31.23,12,0.0 +13398,36,19,43,0.0 +13398,15,15.5,21,0.0 +13398,22,21,26,0.0 +13398,11,21,28,0.0 +13398,48,12.75,34,0.0 +13398,10,31,25,0.0 +13398,19,9.2,41,0.0 +13398,47,9.5,32,0.0 +13398,59,55,34,0.0 +13398,76,18,40,0.0 +13398,9,97,9,0.0 +13398,40,18.4,34,0.0 +13398,65,21.05,47,0.0 +13398,42,14,9,0.0 +13398,14,23.25,44,0.0 +13398,53,32.8,24,0.0 +13398,12,38,28,0.0 +13398,63,43.9,39,0.0 +13398,56,38,47,0.0 +13398,70,15,1,0.0 +13398,4,22,17,0.0 +13398,29,123.79,48,0.0 +13398,61,28.5,44,0.0 +13398,67,14,27,0.0 +13398,45,9.5,40,0.0 +13398,16,17.45,33,0.0 +13398,25,14,5,0.0 +13398,13,6,2,0.0 +13398,43,46,49,0.0 +13398,68,12.5,8,0.0 +13398,24,4.5,41,0.0 +13398,54,7.45,40,0.0 +13398,38,263.5,34,0.0 +13398,72,34.8,39,0.0 +13398,7,30,4,0.0 +13398,50,16.25,43,0.0 +13398,21,10,40,0.0 +13399,48,12.75,36,0.0 +13399,29,123.79,13,0.0 +13399,74,10,30,0.0 +13399,43,46,49,0.0 +13399,71,21.5,26,0.0 +13399,72,34.8,26,0.0 +13399,49,20,13,0.0 +13399,73,15,6,0.0 +13399,21,10,18,0.0 +13399,27,43.9,30,0.0 +13399,45,9.5,25,0.0 +13399,69,36,28,0.0 +13399,61,28.5,45,0.0 +13399,14,23.25,45,0.0 +13399,47,9.5,7,0.0 +13399,19,9.2,35,0.0 +13399,68,12.5,36,0.0 +13399,40,18.4,26,0.0 +13399,24,4.5,32,0.0 +13399,13,6,47,0.0 +13399,20,81,14,0.0 +13399,1,18,16,0.0 +13399,59,55,28,0.0 +13399,67,14,5,0.0 +13399,75,7.75,22,0.0 +13399,28,45.6,28,0.0 +13399,2,19,40,0.0 +13399,3,10,39,0.0 +13399,50,16.25,34,0.0 +13399,54,7.45,16,0.0 +13399,41,9.65,9,0.0 +13399,4,22,40,0.0 +13399,56,38,31,0.0 +13399,62,49.3,50,0.0 +13399,23,9,17,0.0 +13399,44,19.45,28,0.0 +13399,25,14,44,0.0 +13399,39,18,9,0.0 +13399,37,26,5,0.0 +13399,63,43.9,35,0.0 +13399,6,25,38,0.0 +13399,32,32,6,0.0 +13399,17,39,47,0.0 +13399,53,32.8,3,0.0 +13399,7,30,20,0.0 +13399,26,31.23,26,0.0 +13399,57,19.5,11,0.0 +13399,31,12.5,34,0.0 +13399,5,21.35,24,0.0 +13399,76,18,33,0.0 +13399,18,62.5,48,0.0 +13399,70,15,29,0.0 +13399,22,21,45,0.0 +13399,52,7,28,0.0 +13399,8,40,18,0.0 +13399,51,53,21,0.0 +13399,34,14,43,0.0 +13399,46,12,46,0.0 +13399,33,2.5,31,0.0 +13399,77,13,40,0.0 +13399,16,17.45,18,0.0 +13399,38,263.5,5,0.0 +13399,35,18,49,0.0 +13399,12,38,29,0.0 +13400,41,9.65,46,0.0 +13400,62,49.3,45,0.0 +13400,61,28.5,26,0.0 +13400,5,21.35,35,0.0 +13400,22,21,23,0.0 +13400,72,34.8,49,0.0 +13400,46,12,12,0.0 +13400,36,19,48,0.0 +13400,59,55,23,0.0 +13400,10,31,45,0.0 +13400,25,14,49,0.0 +13400,6,25,28,0.0 +13400,65,21.05,49,0.0 +13400,13,6,7,0.0 +13400,57,19.5,35,0.0 +13400,14,23.25,33,0.0 +13400,76,18,47,0.0 +13400,58,13.25,11,0.0 +13400,48,12.75,40,0.0 +13400,43,46,9,0.0 +13400,73,15,28,0.0 +13400,44,19.45,37,0.0 +13400,39,18,20,0.0 +13400,50,16.25,11,0.0 +13400,1,18,34,0.0 +13400,24,4.5,15,0.0 +13400,52,7,24,0.0 +13400,69,36,14,0.0 +13400,12,38,13,0.0 +13400,28,45.6,23,0.0 +13400,55,24,33,0.0 +13400,27,43.9,40,0.0 +13400,18,62.5,44,0.0 +13400,75,7.75,1,0.0 +13400,45,9.5,23,0.0 +13400,2,19,26,0.0 +13400,9,97,5,0.0 +13400,32,32,30,0.0 +13400,19,9.2,35,0.0 +13400,71,21.5,46,0.0 +13400,8,40,21,0.0 +13400,16,17.45,14,0.0 +13400,70,15,1,0.0 +13400,53,32.8,22,0.0 +13400,23,9,3,0.0 +13400,56,38,3,0.0 +13400,7,30,31,0.0 +13400,37,26,50,0.0 +13400,3,10,20,0.0 +13400,31,12.5,29,0.0 +13400,20,81,20,0.0 +13400,4,22,14,0.0 +13400,49,20,30,0.0 +13400,77,13,15,0.0 +13400,38,263.5,32,0.0 +13400,15,15.5,4,0.0 +13400,63,43.9,43,0.0 +13400,42,14,18,0.0 +13400,51,53,21,0.0 +13400,40,18.4,23,0.0 +13400,74,10,24,0.0 +13400,60,34,35,0.0 +13400,54,7.45,7,0.0 +13400,47,9.5,31,0.0 +13400,35,18,23,0.0 +13400,67,14,40,0.0 +13400,17,39,21,0.0 +13400,30,25.89,39,0.0 +13400,34,14,28,0.0 +13400,64,33.25,34,0.0 +13400,29,123.79,41,0.0 +13400,26,31.23,32,0.0 +13400,11,21,44,0.0 +13400,68,12.5,29,0.0 +13401,11,21,21,0.0 +13401,75,7.75,12,0.0 +13401,50,16.25,39,0.0 +13401,70,15,21,0.0 +13401,16,17.45,48,0.0 +13401,35,18,6,0.0 +13401,5,21.35,21,0.0 +13401,18,62.5,43,0.0 +13401,10,31,36,0.0 +13401,77,13,4,0.0 +13401,52,7,50,0.0 +13401,26,31.23,25,0.0 +13401,58,13.25,27,0.0 +13401,48,12.75,42,0.0 +13401,61,28.5,8,0.0 +13401,49,20,21,0.0 +13401,24,4.5,26,0.0 +13401,31,12.5,21,0.0 +13401,41,9.65,39,0.0 +13401,33,2.5,46,0.0 +13401,59,55,8,0.0 +13401,45,9.5,25,0.0 +13401,1,18,9,0.0 +13401,63,43.9,38,0.0 +13401,22,21,35,0.0 +13401,30,25.89,40,0.0 +13401,76,18,20,0.0 +13401,53,32.8,15,0.0 +13401,56,38,34,0.0 +13401,13,6,6,0.0 +13401,32,32,32,0.0 +13401,17,39,26,0.0 +13401,34,14,5,0.0 +13401,43,46,7,0.0 +13401,47,9.5,23,0.0 +13401,74,10,13,0.0 +13401,64,33.25,34,0.0 +13401,60,34,17,0.0 +13401,3,10,50,0.0 +13402,22,21,30,0.0 +13402,40,18.4,23,0.0 +13402,38,263.5,50,0.0 +13402,69,36,4,0.0 +13402,26,31.23,26,0.0 +13402,58,13.25,10,0.0 +13402,52,7,23,0.0 +13402,3,10,27,0.0 +13402,67,14,9,0.0 +13403,53,32.8,44,0.0 +13403,7,30,14,0.0 +13403,35,18,27,0.0 +13403,58,13.25,43,0.0 +13403,11,21,1,0.0 +13403,54,7.45,48,0.0 +13403,62,49.3,11,0.0 +13403,8,40,47,0.0 +13403,61,28.5,46,0.0 +13403,65,21.05,3,0.0 +13403,40,18.4,11,0.0 +13403,12,38,6,0.0 +13403,37,26,32,0.0 +13403,23,9,15,0.0 +13403,34,14,39,0.0 +13403,10,31,38,0.0 +13403,17,39,27,0.0 +13403,52,7,46,0.0 +13403,43,46,18,0.0 +13403,67,14,21,0.0 +13403,73,15,26,0.0 +13403,28,45.6,11,0.0 +13403,44,19.45,44,0.0 +13403,26,31.23,10,0.0 +13403,59,55,2,0.0 +13403,39,18,1,0.0 +13403,4,22,33,0.0 +13403,41,9.65,31,0.0 +13403,74,10,26,0.0 +13403,18,62.5,41,0.0 +13403,50,16.25,47,0.0 +13403,15,15.5,16,0.0 +13403,3,10,25,0.0 +13403,63,43.9,6,0.0 +13403,30,25.89,15,0.0 +13403,24,4.5,48,0.0 +13403,55,24,42,0.0 +13403,76,18,30,0.0 +13403,33,2.5,44,0.0 +13403,75,7.75,17,0.0 +13403,36,19,40,0.0 +13403,48,12.75,47,0.0 +13403,1,18,40,0.0 +13403,25,14,34,0.0 +13403,46,12,21,0.0 +13403,57,19.5,48,0.0 +13403,66,17,1,0.0 +13403,45,9.5,45,0.0 +13403,21,10,16,0.0 +13403,60,34,35,0.0 +13403,47,9.5,38,0.0 +13403,22,21,25,0.0 +13403,42,14,3,0.0 +13403,71,21.5,23,0.0 +13403,29,123.79,28,0.0 +13403,6,25,35,0.0 +13403,16,17.45,29,0.0 +13403,77,13,3,0.0 +13403,64,33.25,1,0.0 +13403,56,38,25,0.0 +13403,69,36,30,0.0 +13403,9,97,6,0.0 +13403,72,34.8,14,0.0 +13403,70,15,11,0.0 +13403,14,23.25,39,0.0 +13403,49,20,19,0.0 +13403,27,43.9,8,0.0 +13403,32,32,6,0.0 +13403,51,53,14,0.0 +13403,5,21.35,24,0.0 +13403,38,263.5,43,0.0 +13403,13,6,8,0.0 +13403,68,12.5,44,0.0 +13404,68,12.5,46,0.0 +13404,26,31.23,7,0.0 +13404,12,38,28,0.0 +13404,24,4.5,2,0.0 +13404,69,36,14,0.0 +13404,74,10,14,0.0 +13404,58,13.25,21,0.0 +13404,4,22,27,0.0 +13404,31,12.5,39,0.0 +13404,45,9.5,45,0.0 +13404,21,10,39,0.0 +13404,46,12,40,0.0 +13404,28,45.6,31,0.0 +13404,47,9.5,42,0.0 +13404,71,21.5,29,0.0 +13404,25,14,36,0.0 +13404,23,9,14,0.0 +13404,51,53,35,0.0 +13404,15,15.5,47,0.0 +13404,61,28.5,12,0.0 +13404,48,12.75,49,0.0 +13404,66,17,46,0.0 +13404,41,9.65,50,0.0 +13404,11,21,30,0.0 +13404,36,19,34,0.0 +13404,6,25,4,0.0 +13404,59,55,49,0.0 +13404,18,62.5,30,0.0 +13404,7,30,27,0.0 +13404,40,18.4,35,0.0 +13404,63,43.9,34,0.0 +13404,34,14,35,0.0 +13404,73,15,50,0.0 +13404,72,34.8,36,0.0 +13404,44,19.45,14,0.0 +13404,38,263.5,26,0.0 +13404,49,20,16,0.0 +13404,8,40,41,0.0 +13404,19,9.2,46,0.0 +13404,14,23.25,39,0.0 +13404,52,7,2,0.0 +13404,55,24,12,0.0 +13404,56,38,35,0.0 +13404,62,49.3,44,0.0 +13404,43,46,23,0.0 +13404,53,32.8,9,0.0 +13404,57,19.5,17,0.0 +13404,27,43.9,28,0.0 +13404,17,39,8,0.0 +13404,42,14,27,0.0 +13404,30,25.89,33,0.0 +13404,75,7.75,33,0.0 +13405,42,14,16,0.0 +13405,50,16.25,4,0.0 +13405,12,38,31,0.0 +13405,67,14,9,0.0 +13405,6,25,26,0.0 +13405,58,13.25,8,0.0 +13405,64,33.25,50,0.0 +13405,38,263.5,27,0.0 +13405,32,32,34,0.0 +13405,52,7,46,0.0 +13405,57,19.5,20,0.0 +13405,77,13,46,0.0 +13405,70,15,16,0.0 +13405,31,12.5,18,0.0 +13405,41,9.65,49,0.0 +13405,22,21,9,0.0 +13405,8,40,28,0.0 +13405,66,17,48,0.0 +13405,36,19,20,0.0 +13405,69,36,8,0.0 +13405,47,9.5,29,0.0 +13405,17,39,31,0.0 +13405,29,123.79,12,0.0 +13405,54,7.45,39,0.0 +13405,68,12.5,46,0.0 +13405,1,18,6,0.0 +13405,62,49.3,41,0.0 +13405,51,53,38,0.0 +13405,27,43.9,37,0.0 +13405,14,23.25,32,0.0 +13405,30,25.89,42,0.0 +13405,39,18,19,0.0 +13405,71,21.5,9,0.0 +13405,60,34,46,0.0 +13405,49,20,45,0.0 +13405,19,9.2,46,0.0 +13405,72,34.8,39,0.0 +13405,45,9.5,30,0.0 +13405,18,62.5,6,0.0 +13405,7,30,50,0.0 +13405,33,2.5,39,0.0 +13405,28,45.6,42,0.0 +13405,23,9,17,0.0 +13405,37,26,13,0.0 +13405,53,32.8,34,0.0 +13405,13,6,48,0.0 +13405,43,46,26,0.0 +13405,21,10,29,0.0 +13405,65,21.05,21,0.0 +13405,35,18,38,0.0 +13405,24,4.5,5,0.0 +13405,44,19.45,12,0.0 +13405,56,38,6,0.0 +13405,55,24,20,0.0 +13405,15,15.5,36,0.0 +13405,75,7.75,23,0.0 +13405,20,81,47,0.0 +13405,4,22,34,0.0 +13405,2,19,24,0.0 +13405,73,15,6,0.0 +13405,63,43.9,22,0.0 +13405,34,14,10,0.0 +13405,11,21,42,0.0 +13405,25,14,14,0.0 +13405,46,12,26,0.0 +13405,48,12.75,9,0.0 +13405,61,28.5,33,0.0 +13405,74,10,35,0.0 +13405,10,31,34,0.0 +13405,3,10,24,0.0 +13405,40,18.4,12,0.0 +13405,5,21.35,22,0.0 +13405,76,18,24,0.0 +13406,19,9.2,9,0.0 +13406,77,13,49,0.0 +13406,35,18,50,0.0 +13406,15,15.5,4,0.0 +13406,16,17.45,41,0.0 +13406,73,15,18,0.0 +13406,60,34,44,0.0 +13406,6,25,7,0.0 +13406,9,97,24,0.0 +13406,11,21,28,0.0 +13406,45,9.5,17,0.0 +13406,76,18,49,0.0 +13406,56,38,49,0.0 +13406,38,263.5,29,0.0 +13406,31,12.5,45,0.0 +13406,58,13.25,13,0.0 +13406,74,10,26,0.0 +13406,13,6,1,0.0 +13406,36,19,33,0.0 +13406,28,45.6,17,0.0 +13406,48,12.75,28,0.0 +13406,70,15,22,0.0 +13406,42,14,19,0.0 +13406,14,23.25,6,0.0 +13406,55,24,16,0.0 +13406,8,40,20,0.0 +13406,27,43.9,49,0.0 +13406,69,36,16,0.0 +13406,37,26,39,0.0 +13406,72,34.8,31,0.0 +13406,63,43.9,4,0.0 +13406,4,22,48,0.0 +13406,25,14,49,0.0 +13406,68,12.5,34,0.0 +13406,17,39,37,0.0 +13406,52,7,46,0.0 +13406,24,4.5,19,0.0 +13406,54,7.45,5,0.0 +13406,1,18,22,0.0 +13406,3,10,47,0.0 +13406,64,33.25,23,0.0 +13406,32,32,8,0.0 +13406,53,32.8,19,0.0 +13406,47,9.5,40,0.0 +13406,59,55,47,0.0 +13406,30,25.89,48,0.0 +13406,5,21.35,39,0.0 +13406,26,31.23,42,0.0 +13406,18,62.5,50,0.0 +13406,50,16.25,6,0.0 +13406,23,9,6,0.0 +13406,46,12,6,0.0 +13406,41,9.65,7,0.0 +13406,75,7.75,4,0.0 +13406,12,38,22,0.0 +13406,44,19.45,5,0.0 +13406,57,19.5,6,0.0 +13406,49,20,2,0.0 +13407,61,28.5,24,0.0 +13407,17,39,33,0.0 +13407,63,43.9,17,0.0 +13407,76,18,24,0.0 +13407,39,18,40,0.0 +13407,59,55,7,0.0 +13407,8,40,45,0.0 +13407,32,32,38,0.0 +13407,64,33.25,21,0.0 +13407,50,16.25,43,0.0 +13407,7,30,10,0.0 +13407,23,9,18,0.0 +13407,13,6,39,0.0 +13407,20,81,12,0.0 +13407,73,15,43,0.0 +13407,58,13.25,10,0.0 +13407,6,25,27,0.0 +13407,52,7,50,0.0 +13407,75,7.75,22,0.0 +13407,46,12,18,0.0 +13407,28,45.6,25,0.0 +13407,40,18.4,13,0.0 +13407,22,21,35,0.0 +13407,25,14,11,0.0 +13407,38,263.5,20,0.0 +13407,65,21.05,26,0.0 +13407,9,97,21,0.0 +13407,70,15,25,0.0 +13407,3,10,43,0.0 +13407,57,19.5,33,0.0 +13407,66,17,44,0.0 +13407,16,17.45,42,0.0 +13407,4,22,31,0.0 +13407,53,32.8,10,0.0 +13407,5,21.35,22,0.0 +13407,54,7.45,9,0.0 +13407,47,9.5,35,0.0 +13407,77,13,47,0.0 +13407,71,21.5,38,0.0 +13407,29,123.79,24,0.0 +13407,1,18,41,0.0 +13407,35,18,47,0.0 +13407,30,25.89,19,0.0 +13407,33,2.5,8,0.0 +13407,42,14,36,0.0 +13407,18,62.5,40,0.0 +13407,72,34.8,32,0.0 +13407,36,19,13,0.0 +13407,69,36,5,0.0 +13407,74,10,34,0.0 +13407,51,53,28,0.0 +13407,12,38,22,0.0 +13407,44,19.45,46,0.0 +13407,21,10,24,0.0 +13407,14,23.25,23,0.0 +13407,60,34,27,0.0 +13407,49,20,31,0.0 +13407,43,46,49,0.0 +13407,37,26,25,0.0 +13407,41,9.65,9,0.0 +13407,15,15.5,45,0.0 +13407,10,31,24,0.0 +13407,24,4.5,23,0.0 +13407,62,49.3,32,0.0 +13407,26,31.23,43,0.0 +13407,45,9.5,2,0.0 +13407,34,14,30,0.0 +13407,31,12.5,36,0.0 +13407,11,21,43,0.0 +13407,19,9.2,45,0.0 +13407,56,38,34,0.0 +13407,27,43.9,35,0.0 +13408,58,13.25,8,0.0 +13408,5,21.35,34,0.0 +13408,12,38,36,0.0 +13408,61,28.5,26,0.0 +13408,42,14,19,0.0 +13408,37,26,33,0.0 +13408,43,46,15,0.0 +13408,29,123.79,4,0.0 +13408,27,43.9,37,0.0 +13408,41,9.65,16,0.0 +13408,7,30,24,0.0 +13408,39,18,30,0.0 +13408,68,12.5,50,0.0 +13408,6,25,47,0.0 +13408,22,21,25,0.0 +13408,15,15.5,38,0.0 +13408,56,38,18,0.0 +13408,65,21.05,16,0.0 +13408,1,18,17,0.0 +13408,10,31,18,0.0 +13408,48,12.75,42,0.0 +13408,16,17.45,4,0.0 +13408,64,33.25,26,0.0 +13408,24,4.5,38,0.0 +13408,46,12,31,0.0 +13408,54,7.45,33,0.0 +13408,30,25.89,33,0.0 +13408,69,36,28,0.0 +13408,76,18,23,0.0 +13408,49,20,38,0.0 +13408,18,62.5,23,0.0 +13408,50,16.25,34,0.0 +13408,52,7,5,0.0 +13408,2,19,41,0.0 +13408,74,10,30,0.0 +13408,72,34.8,20,0.0 +13408,13,6,40,0.0 +13408,44,19.45,5,0.0 +13408,14,23.25,49,0.0 +13408,66,17,38,0.0 +13408,33,2.5,20,0.0 +13408,77,13,47,0.0 +13408,53,32.8,24,0.0 +13408,4,22,22,0.0 +13408,71,21.5,9,0.0 +13408,26,31.23,35,0.0 +13408,8,40,31,0.0 +13408,75,7.75,40,0.0 +13408,38,263.5,28,0.0 +13408,32,32,17,0.0 +13408,19,9.2,32,0.0 +13408,63,43.9,41,0.0 +13408,35,18,33,0.0 +13408,62,49.3,5,0.0 +13408,23,9,41,0.0 +13409,54,7.45,30,0.0 +13409,39,18,27,0.0 +13409,49,20,38,0.0 +13409,64,33.25,46,0.0 +13409,77,13,44,0.0 +13409,35,18,14,0.0 +13409,14,23.25,31,0.0 +13409,67,14,6,0.0 +13409,37,26,49,0.0 +13409,55,24,1,0.0 +13409,72,34.8,14,0.0 +13409,10,31,25,0.0 +13409,44,19.45,21,0.0 +13409,76,18,28,0.0 +13409,47,9.5,13,0.0 +13409,16,17.45,24,0.0 +13409,21,10,47,0.0 +13409,50,16.25,31,0.0 +13409,6,25,11,0.0 +13409,38,263.5,25,0.0 +13409,46,12,42,0.0 +13409,25,14,39,0.0 +13409,28,45.6,43,0.0 +13409,36,19,40,0.0 +13409,27,43.9,13,0.0 +13409,2,19,32,0.0 +13409,63,43.9,39,0.0 +13409,34,14,22,0.0 +13409,60,34,7,0.0 +13409,66,17,15,0.0 +13409,26,31.23,12,0.0 +13409,57,19.5,17,0.0 +13409,56,38,38,0.0 +13409,20,81,28,0.0 +13409,12,38,15,0.0 +13409,31,12.5,33,0.0 +13409,41,9.65,36,0.0 +13409,59,55,31,0.0 +13409,32,32,35,0.0 +13409,40,18.4,48,0.0 +13409,65,21.05,25,0.0 +13409,52,7,31,0.0 +13409,23,9,33,0.0 +13409,45,9.5,25,0.0 +13409,43,46,33,0.0 +13410,50,16.25,6,0.0 +13410,72,34.8,2,0.0 +13410,69,36,3,0.0 +13410,77,13,43,0.0 +13410,25,14,39,0.0 +13410,12,38,12,0.0 +13410,8,40,25,0.0 +13410,29,123.79,29,0.0 +13410,22,21,35,0.0 +13410,60,34,37,0.0 +13410,13,6,42,0.0 +13410,53,32.8,50,0.0 +13410,27,43.9,13,0.0 +13410,65,21.05,18,0.0 +13410,33,2.5,7,0.0 +13410,26,31.23,42,0.0 +13410,44,19.45,8,0.0 +13410,74,10,18,0.0 +13410,14,23.25,7,0.0 +13410,71,21.5,39,0.0 +13410,9,97,43,0.0 +13410,68,12.5,30,0.0 +13410,40,18.4,42,0.0 +13410,15,15.5,14,0.0 +13410,52,7,8,0.0 +13410,41,9.65,14,0.0 +13410,54,7.45,24,0.0 +13410,58,13.25,42,0.0 +13410,67,14,31,0.0 +13410,46,12,20,0.0 +13410,30,25.89,4,0.0 +13410,75,7.75,24,0.0 +13410,10,31,43,0.0 +13410,48,12.75,9,0.0 +13410,57,19.5,35,0.0 +13410,2,19,16,0.0 +13410,38,263.5,42,0.0 +13410,36,19,15,0.0 +13410,45,9.5,9,0.0 +13411,18,62.5,20,0.0 +13411,74,10,5,0.0 +13411,55,24,2,0.0 +13411,40,18.4,24,0.0 +13411,77,13,8,0.0 +13411,66,17,36,0.0 +13411,75,7.75,12,0.0 +13411,54,7.45,50,0.0 +13411,24,4.5,18,0.0 +13411,32,32,21,0.0 +13411,43,46,27,0.0 +13411,57,19.5,12,0.0 +13411,46,12,1,0.0 +13411,33,2.5,45,0.0 +13411,23,9,4,0.0 +13411,14,23.25,3,0.0 +13411,11,21,23,0.0 +13411,61,28.5,33,0.0 +13411,5,21.35,15,0.0 +13411,34,14,41,0.0 +13411,27,43.9,15,0.0 +13411,16,17.45,48,0.0 +13411,35,18,11,0.0 +13411,15,15.5,10,0.0 +13411,38,263.5,26,0.0 +13411,1,18,26,0.0 +13411,2,19,27,0.0 +13411,10,31,15,0.0 +13411,42,14,15,0.0 +13411,68,12.5,32,0.0 +13411,58,13.25,36,0.0 +13411,20,81,20,0.0 +13411,49,20,12,0.0 +13411,70,15,11,0.0 +13411,52,7,41,0.0 +13411,44,19.45,48,0.0 +13411,60,34,32,0.0 +13411,50,16.25,20,0.0 +13411,36,19,45,0.0 +13411,47,9.5,33,0.0 +13411,19,9.2,40,0.0 +13411,31,12.5,24,0.0 +13411,8,40,12,0.0 +13411,51,53,21,0.0 +13411,56,38,33,0.0 +13411,3,10,17,0.0 +13411,13,6,15,0.0 +13411,28,45.6,2,0.0 +13411,71,21.5,47,0.0 +13411,22,21,27,0.0 +13411,21,10,14,0.0 +13412,64,33.25,48,0.0 +13412,56,38,38,0.0 +13412,6,25,9,0.0 +13412,28,45.6,18,0.0 +13412,63,43.9,22,0.0 +13412,36,19,22,0.0 +13412,19,9.2,10,0.0 +13412,4,22,13,0.0 +13412,12,38,9,0.0 +13412,8,40,4,0.0 +13412,14,23.25,22,0.0 +13412,49,20,43,0.0 +13412,57,19.5,9,0.0 +13412,62,49.3,8,0.0 +13412,44,19.45,20,0.0 +13412,68,12.5,46,0.0 +13412,70,15,38,0.0 +13412,54,7.45,27,0.0 +13412,59,55,28,0.0 +13412,17,39,24,0.0 +13412,11,21,2,0.0 +13412,5,21.35,8,0.0 +13412,61,28.5,14,0.0 +13412,39,18,14,0.0 +13412,66,17,18,0.0 +13412,55,24,40,0.0 +13412,77,13,16,0.0 +13412,42,14,47,0.0 +13412,67,14,41,0.0 +13412,29,123.79,46,0.0 +13412,46,12,34,0.0 +13412,16,17.45,6,0.0 +13412,22,21,47,0.0 +13412,10,31,18,0.0 +13412,31,12.5,19,0.0 +13412,73,15,42,0.0 +13412,37,26,17,0.0 +13412,43,46,36,0.0 +13412,33,2.5,39,0.0 +13412,60,34,25,0.0 +13412,38,263.5,21,0.0 +13412,21,10,28,0.0 +13412,76,18,48,0.0 +13412,34,14,36,0.0 +13412,23,9,41,0.0 +13412,32,32,39,0.0 +13412,58,13.25,42,0.0 +13412,69,36,21,0.0 +13412,52,7,19,0.0 +13412,72,34.8,44,0.0 +13412,40,18.4,18,0.0 +13412,7,30,40,0.0 +13412,15,15.5,21,0.0 +13412,35,18,1,0.0 +13412,71,21.5,1,0.0 +13412,25,14,36,0.0 +13412,2,19,24,0.0 +13412,1,18,22,0.0 +13412,45,9.5,19,0.0 +13412,48,12.75,20,0.0 +13412,75,7.75,13,0.0 +13412,24,4.5,7,0.0 +13412,50,16.25,6,0.0 +13412,3,10,28,0.0 +13412,9,97,3,0.0 +13412,41,9.65,40,0.0 +13412,30,25.89,32,0.0 +13412,27,43.9,42,0.0 +13412,13,6,8,0.0 +13412,74,10,11,0.0 +13412,20,81,32,0.0 +13412,65,21.05,23,0.0 +13412,53,32.8,23,0.0 +13412,51,53,3,0.0 +13413,40,18.4,6,0.0 +13413,30,25.89,31,0.0 +13413,74,10,19,0.0 +13413,66,17,12,0.0 +13413,70,15,43,0.0 +13413,23,9,48,0.0 +13413,51,53,31,0.0 +13413,67,14,18,0.0 +13413,32,32,25,0.0 +13413,12,38,19,0.0 +13413,4,22,27,0.0 +13413,45,9.5,13,0.0 +13413,49,20,46,0.0 +13413,15,15.5,3,0.0 +13413,72,34.8,8,0.0 +13413,64,33.25,7,0.0 +13413,10,31,46,0.0 +13413,43,46,3,0.0 +13413,33,2.5,7,0.0 +13413,34,14,47,0.0 +13413,76,18,19,0.0 +13413,57,19.5,15,0.0 +13413,37,26,39,0.0 +13413,47,9.5,47,0.0 +13413,39,18,17,0.0 +13413,6,25,26,0.0 +13414,47,9.5,45,0.0 +13414,25,14,20,0.0 +13414,51,53,2,0.0 +13414,3,10,35,0.0 +13414,70,15,34,0.0 +13414,69,36,3,0.0 +13414,58,13.25,43,0.0 +13414,29,123.79,46,0.0 +13414,59,55,36,0.0 +13414,72,34.8,36,0.0 +13414,53,32.8,29,0.0 +13414,55,24,37,0.0 +13414,43,46,22,0.0 +13414,42,14,33,0.0 +13414,4,22,34,0.0 +13414,45,9.5,26,0.0 +13414,35,18,23,0.0 +13414,66,17,21,0.0 +13414,46,12,24,0.0 +13414,23,9,20,0.0 +13414,76,18,32,0.0 +13414,61,28.5,15,0.0 +13414,60,34,16,0.0 +13414,77,13,6,0.0 +13414,19,9.2,18,0.0 +13414,13,6,44,0.0 +13414,16,17.45,37,0.0 +13414,30,25.89,15,0.0 +13414,1,18,25,0.0 +13414,24,4.5,10,0.0 +13414,11,21,14,0.0 +13414,14,23.25,36,0.0 +13414,48,12.75,40,0.0 +13414,8,40,39,0.0 +13414,5,21.35,45,0.0 +13414,56,38,8,0.0 +13414,18,62.5,44,0.0 +13414,74,10,27,0.0 +13414,75,7.75,29,0.0 +13414,31,12.5,38,0.0 +13414,27,43.9,14,0.0 +13414,28,45.6,27,0.0 +13414,33,2.5,23,0.0 +13414,37,26,1,0.0 +13414,71,21.5,21,0.0 +13414,49,20,38,0.0 +13414,63,43.9,21,0.0 +13414,73,15,39,0.0 +13414,20,81,15,0.0 +13414,17,39,27,0.0 +13415,72,34.8,43,0.0 +13415,21,10,20,0.0 +13415,43,46,31,0.0 +13415,54,7.45,45,0.0 +13415,14,23.25,39,0.0 +13415,26,31.23,7,0.0 +13415,3,10,30,0.0 +13415,60,34,9,0.0 +13415,49,20,43,0.0 +13415,62,49.3,39,0.0 +13415,4,22,49,0.0 +13415,17,39,11,0.0 +13415,37,26,47,0.0 +13415,39,18,23,0.0 +13415,61,28.5,30,0.0 +13415,5,21.35,34,0.0 +13416,3,10,49,0.0 +13416,17,39,34,0.0 +13416,2,19,39,0.0 +13416,46,12,17,0.0 +13416,64,33.25,21,0.0 +13416,62,49.3,47,0.0 +13416,45,9.5,3,0.0 +13416,37,26,7,0.0 +13416,40,18.4,14,0.0 +13416,75,7.75,6,0.0 +13416,4,22,15,0.0 +13416,53,32.8,49,0.0 +13416,36,19,23,0.0 +13416,41,9.65,48,0.0 +13416,38,263.5,41,0.0 +13416,7,30,4,0.0 +13416,34,14,28,0.0 +13416,65,21.05,37,0.0 +13416,11,21,11,0.0 +13416,54,7.45,21,0.0 +13416,60,34,20,0.0 +13416,55,24,38,0.0 +13416,8,40,21,0.0 +13416,58,13.25,40,0.0 +13416,19,9.2,39,0.0 +13416,13,6,19,0.0 +13416,51,53,9,0.0 +13416,56,38,35,0.0 +13416,43,46,47,0.0 +13416,32,32,8,0.0 +13416,42,14,49,0.0 +13416,27,43.9,14,0.0 +13416,16,17.45,46,0.0 +13416,33,2.5,46,0.0 +13416,28,45.6,17,0.0 +13416,66,17,45,0.0 +13416,9,97,31,0.0 +13416,21,10,40,0.0 +13416,72,34.8,47,0.0 +13416,52,7,18,0.0 +13416,5,21.35,31,0.0 +13416,15,15.5,36,0.0 +13416,14,23.25,23,0.0 +13416,18,62.5,31,0.0 +13416,61,28.5,34,0.0 +13416,44,19.45,23,0.0 +13416,50,16.25,16,0.0 +13416,26,31.23,30,0.0 +13416,69,36,11,0.0 +13416,70,15,47,0.0 +13416,59,55,29,0.0 +13416,49,20,23,0.0 +13416,29,123.79,50,0.0 +13416,67,14,30,0.0 +13417,18,62.5,6,0.0 +13417,44,19.45,32,0.0 +13417,32,32,4,0.0 +13417,58,13.25,37,0.0 +13417,15,15.5,9,0.0 +13417,22,21,34,0.0 +13417,53,32.8,2,0.0 +13417,30,25.89,15,0.0 +13417,56,38,10,0.0 +13417,77,13,7,0.0 +13417,16,17.45,25,0.0 +13417,51,53,7,0.0 +13417,14,23.25,29,0.0 +13417,24,4.5,28,0.0 +13417,36,19,10,0.0 +13417,65,21.05,16,0.0 +13417,41,9.65,33,0.0 +13417,73,15,20,0.0 +13417,75,7.75,19,0.0 +13417,50,16.25,7,0.0 +13417,27,43.9,34,0.0 +13417,48,12.75,11,0.0 +13417,70,15,16,0.0 +13417,29,123.79,40,0.0 +13417,34,14,41,0.0 +13417,54,7.45,40,0.0 +13417,19,9.2,11,0.0 +13417,10,31,22,0.0 +13417,69,36,8,0.0 +13417,26,31.23,2,0.0 +13417,8,40,34,0.0 +13417,57,19.5,30,0.0 +13417,4,22,29,0.0 +13417,23,9,3,0.0 +13417,49,20,18,0.0 +13417,33,2.5,28,0.0 +13417,35,18,33,0.0 +13417,11,21,37,0.0 +13417,59,55,30,0.0 +13417,67,14,34,0.0 +13417,20,81,36,0.0 +13417,62,49.3,5,0.0 +13417,63,43.9,26,0.0 +13417,38,263.5,36,0.0 +13417,47,9.5,30,0.0 +13417,37,26,49,0.0 +13417,74,10,12,0.0 +13417,61,28.5,14,0.0 +13417,68,12.5,41,0.0 +13417,3,10,25,0.0 +13417,66,17,32,0.0 +13417,64,33.25,22,0.0 +13417,71,21.5,32,0.0 +13418,48,12.75,1,0.0 +13418,51,53,12,0.0 +13418,50,16.25,24,0.0 +13418,56,38,36,0.0 +13418,29,123.79,34,0.0 +13419,11,21,35,0.0 +13419,1,18,26,0.0 +13419,74,10,38,0.0 +13419,20,81,37,0.0 +13419,8,40,17,0.0 +13419,55,24,21,0.0 +13419,10,31,33,0.0 +13419,40,18.4,11,0.0 +13419,28,45.6,12,0.0 +13419,6,25,8,0.0 +13419,66,17,2,0.0 +13419,9,97,26,0.0 +13419,19,9.2,19,0.0 +13419,46,12,11,0.0 +13419,68,12.5,13,0.0 +13419,12,38,3,0.0 +13419,52,7,16,0.0 +13419,41,9.65,20,0.0 +13419,51,53,21,0.0 +13419,15,15.5,32,0.0 +13419,56,38,15,0.0 +13419,2,19,35,0.0 +13419,47,9.5,49,0.0 +13419,67,14,23,0.0 +13419,32,32,47,0.0 +13419,5,21.35,49,0.0 +13419,29,123.79,7,0.0 +13419,69,36,4,0.0 +13419,62,49.3,42,0.0 +13419,49,20,10,0.0 +13419,26,31.23,13,0.0 +13419,13,6,33,0.0 +13419,54,7.45,45,0.0 +13419,65,21.05,29,0.0 +13419,3,10,24,0.0 +13419,75,7.75,42,0.0 +13419,44,19.45,47,0.0 +13419,43,46,24,0.0 +13419,60,34,39,0.0 +13419,73,15,34,0.0 +13419,24,4.5,16,0.0 +13419,36,19,29,0.0 +13419,37,26,18,0.0 +13419,25,14,26,0.0 +13419,34,14,10,0.0 +13419,14,23.25,10,0.0 +13419,4,22,5,0.0 +13419,61,28.5,25,0.0 +13419,76,18,1,0.0 +13419,77,13,50,0.0 +13419,48,12.75,14,0.0 +13419,45,9.5,1,0.0 +13419,72,34.8,42,0.0 +13419,64,33.25,30,0.0 +13419,38,263.5,16,0.0 +13419,63,43.9,18,0.0 +13419,23,9,45,0.0 +13419,59,55,36,0.0 +13419,7,30,29,0.0 +13419,70,15,14,0.0 +13419,57,19.5,10,0.0 +13419,53,32.8,15,0.0 +13419,42,14,49,0.0 +13419,39,18,36,0.0 +13419,16,17.45,8,0.0 +13419,71,21.5,22,0.0 +13419,21,10,29,0.0 +13419,50,16.25,40,0.0 +13420,52,7,36,0.0 +13420,55,24,34,0.0 +13420,44,19.45,24,0.0 +13420,17,39,46,0.0 +13420,14,23.25,5,0.0 +13420,62,49.3,30,0.0 +13420,24,4.5,17,0.0 +13420,40,18.4,28,0.0 +13420,26,31.23,31,0.0 +13420,66,17,6,0.0 +13420,30,25.89,2,0.0 +13420,58,13.25,43,0.0 +13420,53,32.8,41,0.0 +13420,28,45.6,48,0.0 +13420,57,19.5,12,0.0 +13420,29,123.79,25,0.0 +13420,10,31,19,0.0 +13420,71,21.5,6,0.0 +13420,33,2.5,2,0.0 +13420,65,21.05,3,0.0 +13420,39,18,4,0.0 +13420,56,38,40,0.0 +13420,60,34,48,0.0 +13420,9,97,40,0.0 +13420,54,7.45,43,0.0 +13420,1,18,19,0.0 +13420,48,12.75,16,0.0 +13420,23,9,32,0.0 +13420,73,15,1,0.0 +13420,7,30,29,0.0 +13420,64,33.25,16,0.0 +13420,59,55,43,0.0 +13420,21,10,29,0.0 +13420,68,12.5,45,0.0 +13420,2,19,22,0.0 +13420,50,16.25,24,0.0 +13420,19,9.2,50,0.0 +13420,4,22,19,0.0 +13420,27,43.9,16,0.0 +13420,38,263.5,49,0.0 +13420,5,21.35,17,0.0 +13420,37,26,10,0.0 +13420,6,25,9,0.0 +13420,51,53,19,0.0 +13420,31,12.5,12,0.0 +13420,15,15.5,30,0.0 +13420,35,18,6,0.0 +13420,36,19,46,0.0 +13420,8,40,15,0.0 +13420,42,14,18,0.0 +13420,18,62.5,34,0.0 +13420,67,14,28,0.0 +13420,32,32,12,0.0 +13420,63,43.9,10,0.0 +13420,77,13,43,0.0 +13420,16,17.45,41,0.0 +13420,75,7.75,50,0.0 +13420,45,9.5,17,0.0 +13420,25,14,25,0.0 +13420,61,28.5,49,0.0 +13420,76,18,7,0.0 +13421,19,9.2,17,0.0 +13421,76,18,15,0.0 +13421,51,53,16,0.0 +13421,44,19.45,7,0.0 +13421,21,10,13,0.0 +13421,69,36,45,0.0 +13421,72,34.8,19,0.0 +13421,70,15,18,0.0 +13421,5,21.35,31,0.0 +13421,77,13,18,0.0 +13421,34,14,13,0.0 +13421,45,9.5,23,0.0 +13421,54,7.45,36,0.0 +13421,43,46,28,0.0 +13421,20,81,3,0.0 +13421,31,12.5,16,0.0 +13421,22,21,23,0.0 +13421,33,2.5,28,0.0 +13421,4,22,45,0.0 +13421,60,34,45,0.0 +13421,68,12.5,24,0.0 +13422,74,10,4,0.0 +13422,34,14,1,0.0 +13422,18,62.5,47,0.0 +13422,54,7.45,46,0.0 +13422,25,14,29,0.0 +13422,56,38,30,0.0 +13422,24,4.5,36,0.0 +13422,36,19,43,0.0 +13422,60,34,29,0.0 +13422,61,28.5,33,0.0 +13422,59,55,32,0.0 +13422,31,12.5,14,0.0 +13422,37,26,15,0.0 +13422,2,19,28,0.0 +13422,7,30,4,0.0 +13422,22,21,39,0.0 +13422,41,9.65,7,0.0 +13422,28,45.6,19,0.0 +13422,52,7,31,0.0 +13422,49,20,24,0.0 +13422,42,14,39,0.0 +13422,50,16.25,17,0.0 +13422,30,25.89,14,0.0 +13422,8,40,32,0.0 +13422,27,43.9,4,0.0 +13422,35,18,19,0.0 +13422,77,13,29,0.0 +13422,1,18,15,0.0 +13422,40,18.4,47,0.0 +13422,33,2.5,31,0.0 +13422,66,17,39,0.0 +13422,58,13.25,21,0.0 +13422,20,81,28,0.0 +13422,10,31,18,0.0 +13422,32,32,1,0.0 +13423,18,62.5,43,0.0 +13423,57,19.5,43,0.0 +13423,3,10,23,0.0 +13423,76,18,30,0.0 +13423,22,21,38,0.0 +13423,6,25,7,0.0 +13423,15,15.5,13,0.0 +13423,1,18,33,0.0 +13423,50,16.25,49,0.0 +13423,62,49.3,19,0.0 +13423,32,32,40,0.0 +13423,41,9.65,30,0.0 +13423,63,43.9,44,0.0 +13423,46,12,19,0.0 +13423,16,17.45,30,0.0 +13423,13,6,45,0.0 +13423,8,40,1,0.0 +13423,42,14,21,0.0 +13423,33,2.5,44,0.0 +13423,55,24,17,0.0 +13423,48,12.75,13,0.0 +13423,40,18.4,35,0.0 +13423,75,7.75,9,0.0 +13423,59,55,20,0.0 +13423,20,81,25,0.0 +13423,29,123.79,40,0.0 +13423,72,34.8,34,0.0 +13423,60,34,31,0.0 +13423,77,13,28,0.0 +13423,39,18,23,0.0 +13423,37,26,15,0.0 +13423,19,9.2,38,0.0 +13423,70,15,48,0.0 +13423,7,30,7,0.0 +13423,9,97,38,0.0 +13423,44,19.45,50,0.0 +13423,45,9.5,20,0.0 +13423,52,7,10,0.0 +13423,69,36,7,0.0 +13423,26,31.23,33,0.0 +13423,5,21.35,41,0.0 +13423,49,20,33,0.0 +13423,12,38,45,0.0 +13423,14,23.25,46,0.0 +13423,10,31,30,0.0 +13423,66,17,5,0.0 +13423,65,21.05,28,0.0 +13423,36,19,2,0.0 +13423,35,18,44,0.0 +13423,38,263.5,50,0.0 +13423,47,9.5,22,0.0 +13423,43,46,11,0.0 +13423,54,7.45,32,0.0 +13423,28,45.6,43,0.0 +13423,2,19,35,0.0 +13423,25,14,31,0.0 +13423,34,14,43,0.0 +13423,51,53,45,0.0 +13423,17,39,21,0.0 +13423,4,22,47,0.0 +13423,67,14,16,0.0 +13423,61,28.5,14,0.0 +13423,11,21,4,0.0 +13423,71,21.5,20,0.0 +13423,23,9,49,0.0 +13423,27,43.9,25,0.0 +13423,58,13.25,14,0.0 +13423,30,25.89,14,0.0 +13423,31,12.5,17,0.0 +13423,68,12.5,21,0.0 +13423,24,4.5,23,0.0 +13423,64,33.25,31,0.0 +13423,56,38,2,0.0 +13424,21,10,42,0.0 +13424,76,18,6,0.0 +13424,63,43.9,21,0.0 +13424,74,10,6,0.0 +13424,33,2.5,46,0.0 +13424,40,18.4,42,0.0 +13424,22,21,18,0.0 +13424,50,16.25,50,0.0 +13424,34,14,29,0.0 +13424,24,4.5,24,0.0 +13424,62,49.3,21,0.0 +13424,67,14,26,0.0 +13424,20,81,24,0.0 +13424,18,62.5,29,0.0 +13424,39,18,49,0.0 +13424,26,31.23,14,0.0 +13424,14,23.25,17,0.0 +13424,31,12.5,3,0.0 +13424,61,28.5,46,0.0 +13424,30,25.89,35,0.0 +13424,53,32.8,4,0.0 +13424,4,22,31,0.0 +13424,6,25,22,0.0 +13424,58,13.25,35,0.0 +13424,41,9.65,28,0.0 +13424,19,9.2,50,0.0 +13424,28,45.6,19,0.0 +13424,44,19.45,42,0.0 +13424,17,39,11,0.0 +13424,68,12.5,10,0.0 +13424,5,21.35,33,0.0 +13425,44,19.45,31,0.0 +13425,72,34.8,13,0.0 +13425,39,18,26,0.0 +13425,62,49.3,26,0.0 +13425,27,43.9,28,0.0 +13425,24,4.5,13,0.0 +13425,74,10,8,0.0 +13425,50,16.25,48,0.0 +13425,51,53,5,0.0 +13425,45,9.5,4,0.0 +13425,66,17,41,0.0 +13425,37,26,28,0.0 +13425,77,13,28,0.0 +13425,70,15,7,0.0 +13425,29,123.79,13,0.0 +13425,63,43.9,23,0.0 +13425,25,14,39,0.0 +13425,48,12.75,17,0.0 +13425,18,62.5,9,0.0 +13425,69,36,8,0.0 +13425,11,21,30,0.0 +13425,46,12,3,0.0 +13425,9,97,33,0.0 +13425,16,17.45,44,0.0 +13425,6,25,5,0.0 +13425,34,14,46,0.0 +13425,8,40,48,0.0 +13425,2,19,30,0.0 +13426,60,34,38,0.0 +13426,33,2.5,33,0.0 +13426,13,6,37,0.0 +13426,57,19.5,19,0.0 +13426,70,15,35,0.0 +13426,39,18,14,0.0 +13426,23,9,20,0.0 +13426,43,46,38,0.0 +13426,72,34.8,46,0.0 +13426,5,21.35,11,0.0 +13427,70,15,24,0.0 +13427,28,45.6,3,0.0 +13427,29,123.79,46,0.0 +13427,32,32,18,0.0 +13427,45,9.5,39,0.0 +13427,71,21.5,3,0.0 +13427,21,10,8,0.0 +13427,73,15,31,0.0 +13427,36,19,39,0.0 +13427,74,10,47,0.0 +13427,57,19.5,41,0.0 +13427,61,28.5,15,0.0 +13427,52,7,23,0.0 +13427,6,25,27,0.0 +13427,63,43.9,45,0.0 +13427,33,2.5,31,0.0 +13427,55,24,22,0.0 +13427,43,46,23,0.0 +13427,24,4.5,9,0.0 +13427,17,39,3,0.0 +13427,72,34.8,9,0.0 +13427,12,38,17,0.0 +13427,1,18,50,0.0 +13427,67,14,7,0.0 +13427,8,40,24,0.0 +13427,76,18,49,0.0 +13427,31,12.5,24,0.0 +13427,60,34,6,0.0 +13427,10,31,20,0.0 +13427,41,9.65,33,0.0 +13427,53,32.8,45,0.0 +13427,42,14,39,0.0 +13427,20,81,2,0.0 +13427,39,18,30,0.0 +13427,75,7.75,3,0.0 +13427,69,36,7,0.0 +13427,68,12.5,34,0.0 +13427,2,19,15,0.0 +13427,5,21.35,47,0.0 +13427,16,17.45,44,0.0 +13427,65,21.05,11,0.0 +13427,30,25.89,42,0.0 +13427,56,38,17,0.0 +13427,13,6,10,0.0 +13427,11,21,27,0.0 +13427,62,49.3,24,0.0 +13428,45,9.5,26,0.0 +13428,10,31,31,0.0 +13428,71,21.5,46,0.0 +13428,4,22,38,0.0 +13428,1,18,35,0.0 +13428,51,53,10,0.0 +13428,46,12,34,0.0 +13428,60,34,44,0.0 +13428,26,31.23,30,0.0 +13428,52,7,48,0.0 +13428,67,14,14,0.0 +13428,25,14,32,0.0 +13428,64,33.25,49,0.0 +13428,32,32,46,0.0 +13428,17,39,21,0.0 +13428,49,20,12,0.0 +13428,16,17.45,4,0.0 +13428,43,46,49,0.0 +13428,35,18,32,0.0 +13428,20,81,46,0.0 +13428,13,6,38,0.0 +13428,30,25.89,14,0.0 +13428,55,24,5,0.0 +13428,7,30,22,0.0 +13428,66,17,43,0.0 +13428,33,2.5,10,0.0 +13428,65,21.05,8,0.0 +13428,69,36,23,0.0 +13428,75,7.75,15,0.0 +13428,3,10,35,0.0 +13428,37,26,37,0.0 +13428,56,38,9,0.0 +13428,27,43.9,42,0.0 +13428,74,10,21,0.0 +13428,73,15,8,0.0 +13429,49,20,13,0.0 +13429,15,15.5,17,0.0 +13429,38,263.5,36,0.0 +13429,66,17,3,0.0 +13429,75,7.75,6,0.0 +13429,17,39,28,0.0 +13429,36,19,44,0.0 +13429,43,46,48,0.0 +13429,21,10,37,0.0 +13429,39,18,42,0.0 +13429,56,38,13,0.0 +13429,44,19.45,8,0.0 +13429,55,24,12,0.0 +13429,51,53,1,0.0 +13429,71,21.5,36,0.0 +13429,54,7.45,36,0.0 +13429,23,9,33,0.0 +13429,42,14,13,0.0 +13429,7,30,18,0.0 +13429,48,12.75,25,0.0 +13429,30,25.89,20,0.0 +13430,17,39,31,0.0 +13430,69,36,33,0.0 +13430,64,33.25,5,0.0 +13430,11,21,13,0.0 +13430,19,9.2,16,0.0 +13430,33,2.5,47,0.0 +13430,12,38,47,0.0 +13430,48,12.75,43,0.0 +13430,29,123.79,27,0.0 +13430,28,45.6,16,0.0 +13430,6,25,49,0.0 +13430,35,18,37,0.0 +13430,44,19.45,1,0.0 +13430,76,18,44,0.0 +13430,74,10,12,0.0 +13430,73,15,38,0.0 +13430,62,49.3,26,0.0 +13430,43,46,30,0.0 +13430,36,19,2,0.0 +13430,55,24,38,0.0 +13430,30,25.89,40,0.0 +13430,37,26,50,0.0 +13430,57,19.5,31,0.0 +13430,42,14,1,0.0 +13430,24,4.5,32,0.0 +13430,50,16.25,10,0.0 +13430,54,7.45,31,0.0 +13430,1,18,14,0.0 +13430,4,22,27,0.0 +13430,60,34,37,0.0 +13430,77,13,48,0.0 +13430,67,14,23,0.0 +13430,31,12.5,41,0.0 +13430,32,32,19,0.0 +13430,34,14,7,0.0 +13430,13,6,35,0.0 +13430,49,20,37,0.0 +13430,68,12.5,26,0.0 +13430,52,7,50,0.0 +13430,20,81,11,0.0 +13430,59,55,12,0.0 +13430,75,7.75,12,0.0 +13430,23,9,8,0.0 +13430,40,18.4,47,0.0 +13430,10,31,49,0.0 +13430,16,17.45,18,0.0 +13430,41,9.65,16,0.0 +13430,51,53,49,0.0 +13430,58,13.25,32,0.0 +13430,15,15.5,44,0.0 +13430,65,21.05,1,0.0 +13430,21,10,29,0.0 +13430,3,10,14,0.0 +13430,5,21.35,45,0.0 +13430,45,9.5,9,0.0 +13430,26,31.23,43,0.0 +13430,25,14,20,0.0 +13430,70,15,27,0.0 +13430,9,97,38,0.0 +13430,27,43.9,17,0.0 +13430,47,9.5,20,0.0 +13430,72,34.8,42,0.0 +13430,46,12,12,0.0 +13430,2,19,17,0.0 +13430,53,32.8,5,0.0 +13430,7,30,5,0.0 +13430,71,21.5,38,0.0 +13430,22,21,10,0.0 +13430,14,23.25,7,0.0 +13430,8,40,21,0.0 +13430,61,28.5,12,0.0 +13431,50,16.25,5,0.0 +13431,36,19,14,0.0 +13431,48,12.75,47,0.0 +13431,45,9.5,26,0.0 +13431,13,6,15,0.0 +13431,62,49.3,39,0.0 +13431,75,7.75,12,0.0 +13431,39,18,6,0.0 +13431,72,34.8,27,0.0 +13431,14,23.25,11,0.0 +13431,20,81,4,0.0 +13431,69,36,49,0.0 +13431,73,15,12,0.0 +13431,4,22,46,0.0 +13431,15,15.5,22,0.0 +13431,32,32,25,0.0 +13431,54,7.45,35,0.0 +13431,57,19.5,25,0.0 +13431,16,17.45,45,0.0 +13431,1,18,35,0.0 +13431,24,4.5,43,0.0 +13431,35,18,8,0.0 +13431,46,12,41,0.0 +13431,52,7,1,0.0 +13431,29,123.79,29,0.0 +13431,64,33.25,29,0.0 +13431,23,9,39,0.0 +13431,70,15,19,0.0 +13431,66,17,19,0.0 +13431,38,263.5,30,0.0 +13431,68,12.5,48,0.0 +13431,25,14,47,0.0 +13431,11,21,35,0.0 +13431,10,31,36,0.0 +13431,6,25,9,0.0 +13431,60,34,28,0.0 +13431,22,21,31,0.0 +13431,59,55,4,0.0 +13431,7,30,36,0.0 +13431,30,25.89,24,0.0 +13431,77,13,49,0.0 +13431,12,38,43,0.0 +13431,74,10,48,0.0 +13431,55,24,13,0.0 +13432,3,10,6,0.0 +13432,30,25.89,2,0.0 +13432,54,7.45,42,0.0 +13432,66,17,10,0.0 +13432,64,33.25,14,0.0 +13432,31,12.5,14,0.0 +13432,67,14,36,0.0 +13432,32,32,15,0.0 +13432,22,21,34,0.0 +13432,19,9.2,10,0.0 +13432,8,40,45,0.0 +13432,47,9.5,33,0.0 +13432,49,20,44,0.0 +13432,7,30,31,0.0 +13432,13,6,41,0.0 +13432,21,10,5,0.0 +13432,46,12,47,0.0 +13432,72,34.8,3,0.0 +13432,12,38,3,0.0 +13432,24,4.5,1,0.0 +13432,20,81,4,0.0 +13432,5,21.35,35,0.0 +13432,48,12.75,4,0.0 +13432,39,18,9,0.0 +13432,15,15.5,22,0.0 +13432,38,263.5,50,0.0 +13432,9,97,13,0.0 +13432,16,17.45,46,0.0 +13432,14,23.25,9,0.0 +13432,53,32.8,40,0.0 +13432,4,22,23,0.0 +13432,6,25,35,0.0 +13432,69,36,42,0.0 +13432,68,12.5,8,0.0 +13432,44,19.45,43,0.0 +13433,2,19,5,0.0 +13433,41,9.65,38,0.0 +13433,38,263.5,43,0.0 +13433,21,10,33,0.0 +13433,16,17.45,3,0.0 +13433,69,36,15,0.0 +13433,57,19.5,44,0.0 +13433,8,40,40,0.0 +13433,33,2.5,14,0.0 +13433,39,18,50,0.0 +13433,37,26,5,0.0 +13433,61,28.5,44,0.0 +13433,4,22,38,0.0 +13433,35,18,32,0.0 +13433,32,32,23,0.0 +13433,53,32.8,2,0.0 +13434,56,38,47,0.0 +13434,22,21,30,0.0 +13434,65,21.05,40,0.0 +13434,55,24,5,0.0 +13434,63,43.9,48,0.0 +13434,12,38,14,0.0 +13434,75,7.75,8,0.0 +13434,70,15,1,0.0 +13434,27,43.9,37,0.0 +13434,13,6,43,0.0 +13434,66,17,33,0.0 +13434,26,31.23,30,0.0 +13434,46,12,47,0.0 +13434,72,34.8,9,0.0 +13434,3,10,34,0.0 +13434,11,21,47,0.0 +13434,54,7.45,16,0.0 +13434,69,36,45,0.0 +13434,44,19.45,5,0.0 +13434,29,123.79,17,0.0 +13434,76,18,30,0.0 +13434,68,12.5,10,0.0 +13435,56,38,41,0.0 +13435,77,13,20,0.0 +13435,15,15.5,25,0.0 +13435,70,15,32,0.0 +13435,25,14,40,0.0 +13435,46,12,49,0.0 +13435,40,18.4,32,0.0 +13435,43,46,16,0.0 +13435,64,33.25,3,0.0 +13435,27,43.9,20,0.0 +13435,8,40,30,0.0 +13435,18,62.5,4,0.0 +13435,45,9.5,31,0.0 +13435,17,39,22,0.0 +13435,44,19.45,25,0.0 +13435,48,12.75,11,0.0 +13435,65,21.05,3,0.0 +13435,35,18,24,0.0 +13435,59,55,32,0.0 +13435,19,9.2,18,0.0 +13435,66,17,45,0.0 +13435,34,14,45,0.0 +13435,41,9.65,29,0.0 +13435,24,4.5,44,0.0 +13435,55,24,13,0.0 +13435,72,34.8,20,0.0 +13435,39,18,16,0.0 +13435,37,26,16,0.0 +13435,26,31.23,23,0.0 +13435,1,18,46,0.0 +13435,10,31,1,0.0 +13436,51,53,6,0.0 +13436,2,19,15,0.0 +13436,61,28.5,15,0.0 +13436,49,20,23,0.0 +13436,38,263.5,15,0.0 +13436,16,17.45,12,0.0 +13436,28,45.6,40,0.0 +13436,37,26,45,0.0 +13436,5,21.35,2,0.0 +13436,45,9.5,20,0.0 +13436,44,19.45,38,0.0 +13436,33,2.5,25,0.0 +13436,54,7.45,25,0.0 +13436,10,31,3,0.0 +13436,69,36,2,0.0 +13436,64,33.25,33,0.0 +13436,58,13.25,6,0.0 +13436,41,9.65,10,0.0 +13436,21,10,13,0.0 +13436,32,32,6,0.0 +13436,25,14,27,0.0 +13436,30,25.89,10,0.0 +13436,4,22,48,0.0 +13436,26,31.23,25,0.0 +13436,13,6,34,0.0 +13436,17,39,37,0.0 +13436,31,12.5,25,0.0 +13436,43,46,45,0.0 +13436,9,97,10,0.0 +13436,29,123.79,1,0.0 +13436,27,43.9,7,0.0 +13436,68,12.5,22,0.0 +13436,18,62.5,6,0.0 +13436,47,9.5,5,0.0 +13436,12,38,26,0.0 +13436,70,15,32,0.0 +13436,24,4.5,34,0.0 +13436,40,18.4,30,0.0 +13436,75,7.75,13,0.0 +13436,1,18,36,0.0 +13436,14,23.25,14,0.0 +13436,22,21,6,0.0 +13436,3,10,49,0.0 +13436,50,16.25,35,0.0 +13436,57,19.5,20,0.0 +13436,55,24,28,0.0 +13436,60,34,36,0.0 +13436,48,12.75,13,0.0 +13436,66,17,29,0.0 +13436,42,14,50,0.0 +13436,11,21,36,0.0 +13436,77,13,7,0.0 +13436,74,10,41,0.0 +13436,53,32.8,13,0.0 +13436,76,18,21,0.0 +13436,62,49.3,44,0.0 +13436,15,15.5,5,0.0 +13436,52,7,3,0.0 +13436,67,14,5,0.0 +13436,20,81,12,0.0 +13436,23,9,5,0.0 +13436,63,43.9,48,0.0 +13436,8,40,37,0.0 +13437,16,17.45,48,0.0 +13437,57,19.5,10,0.0 +13437,34,14,36,0.0 +13437,31,12.5,15,0.0 +13437,71,21.5,30,0.0 +13437,38,263.5,25,0.0 +13437,28,45.6,1,0.0 +13437,58,13.25,48,0.0 +13437,43,46,41,0.0 +13437,25,14,35,0.0 +13437,54,7.45,44,0.0 +13437,48,12.75,18,0.0 +13437,23,9,32,0.0 +13437,66,17,9,0.0 +13437,65,21.05,48,0.0 +13437,39,18,8,0.0 +13437,76,18,40,0.0 +13437,75,7.75,32,0.0 +13437,2,19,17,0.0 +13437,73,15,42,0.0 +13437,72,34.8,40,0.0 +13437,9,97,6,0.0 +13437,61,28.5,44,0.0 +13437,68,12.5,25,0.0 +13437,32,32,12,0.0 +13437,77,13,34,0.0 +13437,33,2.5,39,0.0 +13437,20,81,8,0.0 +13437,45,9.5,37,0.0 +13437,15,15.5,3,0.0 +13437,10,31,21,0.0 +13437,60,34,13,0.0 +13437,19,9.2,48,0.0 +13438,32,32,14,0.0 +13438,51,53,40,0.0 +13438,49,20,23,0.0 +13438,35,18,44,0.0 +13438,75,7.75,22,0.0 +13438,36,19,46,0.0 +13438,2,19,49,0.0 +13438,69,36,14,0.0 +13438,9,97,11,0.0 +13438,77,13,42,0.0 +13438,61,28.5,10,0.0 +13438,60,34,36,0.0 +13438,44,19.45,34,0.0 +13438,15,15.5,2,0.0 +13438,22,21,2,0.0 +13438,40,18.4,13,0.0 +13438,48,12.75,16,0.0 +13438,31,12.5,34,0.0 +13438,72,34.8,46,0.0 +13438,12,38,21,0.0 +13438,57,19.5,10,0.0 +13438,53,32.8,5,0.0 +13438,1,18,43,0.0 +13438,41,9.65,15,0.0 +13438,67,14,41,0.0 +13438,63,43.9,49,0.0 +13438,59,55,34,0.0 +13438,27,43.9,3,0.0 +13438,26,31.23,42,0.0 +13438,42,14,1,0.0 +13438,5,21.35,28,0.0 +13438,38,263.5,15,0.0 +13438,16,17.45,20,0.0 +13438,70,15,37,0.0 +13438,11,21,9,0.0 +13438,33,2.5,47,0.0 +13438,37,26,22,0.0 +13438,30,25.89,13,0.0 +13438,52,7,1,0.0 +13438,21,10,47,0.0 +13438,10,31,8,0.0 +13438,74,10,38,0.0 +13438,71,21.5,2,0.0 +13438,18,62.5,39,0.0 +13438,58,13.25,17,0.0 +13438,47,9.5,36,0.0 +13438,8,40,25,0.0 +13438,76,18,25,0.0 +13438,68,12.5,38,0.0 +13438,46,12,21,0.0 +13438,7,30,6,0.0 +13438,4,22,45,0.0 +13438,73,15,37,0.0 +13438,55,24,16,0.0 +13438,17,39,42,0.0 +13438,54,7.45,18,0.0 +13438,56,38,31,0.0 +13438,25,14,48,0.0 +13438,62,49.3,27,0.0 +13438,23,9,32,0.0 +13438,64,33.25,36,0.0 +13438,39,18,27,0.0 +13438,45,9.5,45,0.0 +13438,19,9.2,13,0.0 +13438,43,46,25,0.0 +13438,66,17,4,0.0 +13438,20,81,33,0.0 +13438,6,25,28,0.0 +13438,50,16.25,46,0.0 +13438,14,23.25,31,0.0 +13438,13,6,42,0.0 +13438,65,21.05,2,0.0 +13438,29,123.79,8,0.0 +13438,34,14,21,0.0 +13439,27,43.9,46,0.0 +13439,73,15,4,0.0 +13439,28,45.6,17,0.0 +13439,48,12.75,33,0.0 +13439,46,12,36,0.0 +13439,34,14,7,0.0 +13439,19,9.2,20,0.0 +13439,66,17,21,0.0 +13439,33,2.5,47,0.0 +13439,2,19,45,0.0 +13439,7,30,20,0.0 +13439,6,25,3,0.0 +13439,62,49.3,6,0.0 +13439,42,14,17,0.0 +13439,8,40,23,0.0 +13439,12,38,17,0.0 +13439,14,23.25,38,0.0 +13439,22,21,41,0.0 +13439,25,14,37,0.0 +13439,45,9.5,3,0.0 +13439,41,9.65,20,0.0 +13439,23,9,18,0.0 +13439,76,18,40,0.0 +13439,47,9.5,14,0.0 +13439,13,6,13,0.0 +13439,54,7.45,18,0.0 +13439,77,13,41,0.0 +13439,30,25.89,26,0.0 +13439,29,123.79,31,0.0 +13439,57,19.5,39,0.0 +13439,4,22,23,0.0 +13439,58,13.25,23,0.0 +13439,35,18,6,0.0 +13439,53,32.8,18,0.0 +13439,65,21.05,28,0.0 +13439,32,32,9,0.0 +13439,60,34,32,0.0 +13439,3,10,18,0.0 +13439,69,36,39,0.0 +13439,5,21.35,1,0.0 +13439,39,18,24,0.0 +13439,18,62.5,20,0.0 +13439,49,20,17,0.0 +13439,15,15.5,17,0.0 +13439,61,28.5,40,0.0 +13439,74,10,30,0.0 +13439,40,18.4,48,0.0 +13439,63,43.9,29,0.0 +13439,64,33.25,24,0.0 +13439,26,31.23,35,0.0 +13439,43,46,45,0.0 +13439,17,39,15,0.0 +13440,8,40,17,0.0 +13440,1,18,10,0.0 +13440,51,53,46,0.0 +13440,52,7,41,0.0 +13440,54,7.45,7,0.0 +13440,43,46,13,0.0 +13440,24,4.5,30,0.0 +13440,73,15,17,0.0 +13440,29,123.79,46,0.0 +13440,64,33.25,41,0.0 +13440,33,2.5,45,0.0 +13440,31,12.5,23,0.0 +13440,36,19,49,0.0 +13440,6,25,11,0.0 +13440,17,39,6,0.0 +13440,46,12,21,0.0 +13440,49,20,7,0.0 +13440,28,45.6,13,0.0 +13440,12,38,42,0.0 +13440,32,32,17,0.0 +13440,66,17,11,0.0 +13440,69,36,33,0.0 +13440,45,9.5,43,0.0 +13440,30,25.89,29,0.0 +13440,25,14,47,0.0 +13440,71,21.5,37,0.0 +13440,4,22,17,0.0 +13440,38,263.5,37,0.0 +13440,37,26,34,0.0 +13440,75,7.75,48,0.0 +13440,63,43.9,26,0.0 +13440,76,18,15,0.0 +13440,40,18.4,20,0.0 +13440,44,19.45,16,0.0 +13440,50,16.25,13,0.0 +13440,34,14,50,0.0 +13440,70,15,33,0.0 +13440,74,10,32,0.0 +13440,22,21,32,0.0 +13440,20,81,9,0.0 +13440,11,21,1,0.0 +13440,60,34,43,0.0 +13440,15,15.5,18,0.0 +13440,2,19,38,0.0 +13440,67,14,29,0.0 +13440,18,62.5,15,0.0 +13440,14,23.25,6,0.0 +13440,53,32.8,42,0.0 +13440,23,9,11,0.0 +13440,58,13.25,27,0.0 +13440,19,9.2,24,0.0 +13440,61,28.5,40,0.0 +13440,41,9.65,30,0.0 +13440,10,31,13,0.0 +13440,56,38,38,0.0 +13440,59,55,34,0.0 +13440,7,30,33,0.0 +13440,77,13,49,0.0 +13440,57,19.5,13,0.0 +13440,27,43.9,49,0.0 +13440,26,31.23,24,0.0 +13441,16,17.45,20,0.0 +13441,22,21,32,0.0 +13441,15,15.5,20,0.0 +13441,54,7.45,25,0.0 +13441,8,40,11,0.0 +13441,45,9.5,41,0.0 +13441,66,17,2,0.0 +13441,61,28.5,28,0.0 +13441,14,23.25,21,0.0 +13441,6,25,41,0.0 +13441,29,123.79,37,0.0 +13441,13,6,32,0.0 +13441,11,21,17,0.0 +13441,48,12.75,7,0.0 +13441,5,21.35,43,0.0 +13441,51,53,27,0.0 +13441,52,7,2,0.0 +13441,25,14,30,0.0 +13441,33,2.5,35,0.0 +13441,67,14,35,0.0 +13441,68,12.5,16,0.0 +13441,18,62.5,5,0.0 +13441,41,9.65,29,0.0 +13441,73,15,35,0.0 +13441,77,13,25,0.0 +13441,23,9,13,0.0 +13441,65,21.05,33,0.0 +13441,57,19.5,7,0.0 +13441,20,81,27,0.0 +13441,40,18.4,2,0.0 +13441,4,22,28,0.0 +13441,10,31,40,0.0 +13441,58,13.25,47,0.0 +13441,76,18,27,0.0 +13441,72,34.8,46,0.0 +13441,38,263.5,2,0.0 +13441,71,21.5,38,0.0 +13441,74,10,3,0.0 +13441,69,36,32,0.0 +13441,49,20,9,0.0 +13441,64,33.25,4,0.0 +13441,56,38,14,0.0 +13441,21,10,48,0.0 +13441,50,16.25,2,0.0 +13441,59,55,27,0.0 +13441,9,97,14,0.0 +13441,42,14,18,0.0 +13441,28,45.6,1,0.0 +13441,75,7.75,5,0.0 +13441,31,12.5,27,0.0 +13441,30,25.89,9,0.0 +13441,27,43.9,32,0.0 +13441,19,9.2,28,0.0 +13441,47,9.5,27,0.0 +13441,32,32,27,0.0 +13441,55,24,14,0.0 +13441,24,4.5,46,0.0 +13441,44,19.45,18,0.0 +13441,1,18,11,0.0 +13441,35,18,12,0.0 +13441,26,31.23,19,0.0 +13441,3,10,14,0.0 +13441,12,38,48,0.0 +13441,63,43.9,9,0.0 +13442,24,4.5,26,0.0 +13442,49,20,8,0.0 +13442,47,9.5,26,0.0 +13442,30,25.89,30,0.0 +13442,31,12.5,45,0.0 +13442,5,21.35,11,0.0 +13442,3,10,36,0.0 +13442,17,39,29,0.0 +13442,16,17.45,19,0.0 +13442,12,38,30,0.0 +13442,4,22,24,0.0 +13442,58,13.25,14,0.0 +13442,25,14,39,0.0 +13442,1,18,5,0.0 +13442,41,9.65,1,0.0 +13442,54,7.45,26,0.0 +13442,44,19.45,30,0.0 +13442,70,15,21,0.0 +13442,71,21.5,19,0.0 +13442,76,18,8,0.0 +13442,74,10,43,0.0 +13442,62,49.3,27,0.0 +13442,9,97,35,0.0 +13442,28,45.6,41,0.0 +13442,29,123.79,39,0.0 +13442,36,19,38,0.0 +13442,75,7.75,41,0.0 +13442,7,30,34,0.0 +13442,45,9.5,26,0.0 +13442,67,14,15,0.0 +13442,63,43.9,7,0.0 +13442,2,19,24,0.0 +13442,42,14,23,0.0 +13442,64,33.25,45,0.0 +13442,26,31.23,36,0.0 +13442,48,12.75,29,0.0 +13442,27,43.9,15,0.0 +13442,52,7,36,0.0 +13442,65,21.05,17,0.0 +13442,21,10,43,0.0 +13442,13,6,20,0.0 +13442,46,12,13,0.0 +13442,19,9.2,34,0.0 +13442,69,36,50,0.0 +13442,11,21,9,0.0 +13442,10,31,36,0.0 +13442,50,16.25,45,0.0 +13442,77,13,22,0.0 +13442,34,14,6,0.0 +13442,68,12.5,48,0.0 +13442,73,15,28,0.0 +13442,18,62.5,4,0.0 +13442,66,17,30,0.0 +13442,6,25,10,0.0 +13442,38,263.5,6,0.0 +13442,55,24,50,0.0 +13442,61,28.5,33,0.0 +13442,32,32,27,0.0 +13442,22,21,21,0.0 +13442,15,15.5,4,0.0 +13442,59,55,24,0.0 +13442,20,81,38,0.0 +13442,14,23.25,15,0.0 +13442,53,32.8,26,0.0 +13442,33,2.5,12,0.0 +13442,56,38,15,0.0 +13442,51,53,33,0.0 +13442,35,18,31,0.0 +13442,8,40,42,0.0 +13442,57,19.5,1,0.0 +13442,40,18.4,11,0.0 +13442,37,26,25,0.0 +13442,43,46,17,0.0 +13443,43,46,29,0.0 +13443,26,31.23,17,0.0 +13443,72,34.8,31,0.0 +13443,62,49.3,21,0.0 +13443,42,14,2,0.0 +13443,47,9.5,47,0.0 +13443,51,53,9,0.0 +13443,34,14,33,0.0 +13443,29,123.79,32,0.0 +13443,2,19,22,0.0 +13443,37,26,7,0.0 +13443,4,22,9,0.0 +13443,76,18,35,0.0 +13443,45,9.5,22,0.0 +13443,31,12.5,28,0.0 +13443,20,81,30,0.0 +13443,52,7,35,0.0 +13443,12,38,8,0.0 +13443,33,2.5,31,0.0 +13443,15,15.5,48,0.0 +13443,73,15,27,0.0 +13443,8,40,5,0.0 +13443,7,30,31,0.0 +13443,48,12.75,11,0.0 +13443,18,62.5,29,0.0 +13443,70,15,4,0.0 +13443,77,13,50,0.0 +13443,11,21,6,0.0 +13443,59,55,32,0.0 +13443,57,19.5,12,0.0 +13443,50,16.25,32,0.0 +13443,27,43.9,27,0.0 +13443,55,24,7,0.0 +13443,28,45.6,4,0.0 +13443,69,36,11,0.0 +13443,61,28.5,13,0.0 +13443,65,21.05,34,0.0 +13443,46,12,4,0.0 +13443,49,20,39,0.0 +13443,58,13.25,12,0.0 +13443,16,17.45,34,0.0 +13443,30,25.89,44,0.0 +13443,5,21.35,22,0.0 +13443,13,6,25,0.0 +13443,32,32,29,0.0 +13443,68,12.5,18,0.0 +13443,54,7.45,2,0.0 +13443,35,18,35,0.0 +13443,39,18,2,0.0 +13443,3,10,5,0.0 +13443,60,34,9,0.0 +13443,17,39,28,0.0 +13443,38,263.5,50,0.0 +13443,25,14,32,0.0 +13443,9,97,17,0.0 +13443,66,17,2,0.0 +13443,19,9.2,7,0.0 +13443,56,38,6,0.0 +13443,67,14,26,0.0 +13443,23,9,21,0.0 +13444,41,9.65,26,0.0 +13444,66,17,6,0.0 +13444,25,14,46,0.0 +13444,16,17.45,10,0.0 +13444,59,55,15,0.0 +13444,3,10,11,0.0 +13445,31,12.5,3,0.0 +13445,50,16.25,25,0.0 +13445,68,12.5,33,0.0 +13445,7,30,47,0.0 +13445,61,28.5,22,0.0 +13445,6,25,50,0.0 +13445,73,15,8,0.0 +13445,39,18,1,0.0 +13445,24,4.5,27,0.0 +13445,27,43.9,28,0.0 +13445,52,7,12,0.0 +13445,12,38,13,0.0 +13445,43,46,1,0.0 +13445,72,34.8,15,0.0 +13445,37,26,16,0.0 +13445,10,31,44,0.0 +13445,36,19,18,0.0 +13445,26,31.23,41,0.0 +13445,5,21.35,26,0.0 +13445,21,10,22,0.0 +13445,40,18.4,4,0.0 +13445,55,24,36,0.0 +13445,18,62.5,22,0.0 +13445,64,33.25,10,0.0 +13445,4,22,45,0.0 +13445,76,18,21,0.0 +13445,29,123.79,41,0.0 +13445,58,13.25,41,0.0 +13445,34,14,43,0.0 +13445,41,9.65,35,0.0 +13445,9,97,49,0.0 +13445,56,38,20,0.0 +13445,77,13,17,0.0 +13445,67,14,9,0.0 +13445,38,263.5,19,0.0 +13445,44,19.45,32,0.0 +13445,13,6,39,0.0 +13445,22,21,47,0.0 +13445,3,10,6,0.0 +13445,15,15.5,26,0.0 +13445,45,9.5,38,0.0 +13445,8,40,29,0.0 +13445,69,36,39,0.0 +13445,71,21.5,2,0.0 +13445,32,32,40,0.0 +13445,49,20,3,0.0 +13445,63,43.9,34,0.0 +13445,23,9,46,0.0 +13445,62,49.3,35,0.0 +13445,30,25.89,31,0.0 +13445,65,21.05,26,0.0 +13445,14,23.25,17,0.0 +13445,54,7.45,1,0.0 +13445,20,81,49,0.0 +13445,70,15,20,0.0 +13445,11,21,38,0.0 +13445,19,9.2,34,0.0 +13445,42,14,15,0.0 +13445,53,32.8,31,0.0 +13445,59,55,8,0.0 +13445,51,53,15,0.0 +13445,66,17,11,0.0 +13445,1,18,38,0.0 +13445,75,7.75,49,0.0 +13445,35,18,37,0.0 +13445,60,34,49,0.0 +13445,57,19.5,44,0.0 +13445,74,10,18,0.0 +13445,47,9.5,14,0.0 +13445,28,45.6,34,0.0 +13445,16,17.45,9,0.0 +13445,25,14,46,0.0 +13446,22,21,10,0.0 +13446,31,12.5,5,0.0 +13446,39,18,13,0.0 +13446,54,7.45,48,0.0 +13446,46,12,21,0.0 +13446,2,19,45,0.0 +13446,25,14,28,0.0 +13446,37,26,2,0.0 +13446,5,21.35,34,0.0 +13446,73,15,20,0.0 +13446,68,12.5,8,0.0 +13446,21,10,37,0.0 +13446,11,21,34,0.0 +13446,4,22,19,0.0 +13446,77,13,4,0.0 +13446,30,25.89,14,0.0 +13446,16,17.45,47,0.0 +13446,32,32,22,0.0 +13446,52,7,32,0.0 +13446,24,4.5,23,0.0 +13446,65,21.05,4,0.0 +13446,60,34,18,0.0 +13446,71,21.5,16,0.0 +13446,75,7.75,36,0.0 +13446,61,28.5,24,0.0 +13446,53,32.8,25,0.0 +13447,76,18,13,0.0 +13447,47,9.5,21,0.0 +13447,41,9.65,40,0.0 +13447,11,21,33,0.0 +13447,20,81,48,0.0 +13447,17,39,11,0.0 +13447,49,20,6,0.0 +13447,50,16.25,50,0.0 +13447,13,6,3,0.0 +13447,36,19,4,0.0 +13447,18,62.5,12,0.0 +13447,29,123.79,30,0.0 +13447,5,21.35,20,0.0 +13447,66,17,18,0.0 +13447,34,14,1,0.0 +13447,55,24,24,0.0 +13447,16,17.45,21,0.0 +13447,48,12.75,7,0.0 +13447,25,14,26,0.0 +13447,24,4.5,1,0.0 +13447,64,33.25,28,0.0 +13447,14,23.25,10,0.0 +13447,63,43.9,20,0.0 +13447,54,7.45,15,0.0 +13447,1,18,36,0.0 +13447,45,9.5,25,0.0 +13447,23,9,9,0.0 +13447,60,34,8,0.0 +13447,26,31.23,24,0.0 +13447,22,21,2,0.0 +13447,71,21.5,14,0.0 +13447,21,10,29,0.0 +13447,74,10,17,0.0 +13447,65,21.05,19,0.0 +13447,8,40,36,0.0 +13447,12,38,24,0.0 +13448,8,40,13,0.0 +13448,28,45.6,39,0.0 +13448,11,21,42,0.0 +13448,18,62.5,40,0.0 +13448,32,32,24,0.0 +13448,9,97,3,0.0 +13448,61,28.5,16,0.0 +13448,56,38,48,0.0 +13448,36,19,3,0.0 +13448,6,25,12,0.0 +13448,5,21.35,34,0.0 +13448,47,9.5,19,0.0 +13448,44,19.45,35,0.0 +13448,72,34.8,13,0.0 +13448,15,15.5,44,0.0 +13448,68,12.5,25,0.0 +13448,70,15,50,0.0 +13448,3,10,2,0.0 +13448,67,14,19,0.0 +13448,25,14,32,0.0 +13448,51,53,49,0.0 +13448,50,16.25,3,0.0 +13448,19,9.2,27,0.0 +13448,65,21.05,24,0.0 +13448,40,18.4,26,0.0 +13448,76,18,1,0.0 +13448,35,18,13,0.0 +13448,16,17.45,3,0.0 +13448,60,34,44,0.0 +13448,20,81,17,0.0 +13449,29,123.79,32,0.0 +13449,70,15,46,0.0 +13449,6,25,31,0.0 +13449,54,7.45,2,0.0 +13449,73,15,17,0.0 +13449,22,21,40,0.0 +13449,23,9,20,0.0 +13449,41,9.65,44,0.0 +13449,68,12.5,11,0.0 +13449,39,18,44,0.0 +13449,48,12.75,44,0.0 +13449,18,62.5,29,0.0 +13449,34,14,44,0.0 +13449,9,97,25,0.0 +13449,77,13,23,0.0 +13449,72,34.8,4,0.0 +13449,40,18.4,21,0.0 +13449,1,18,49,0.0 +13449,56,38,12,0.0 +13449,33,2.5,27,0.0 +13449,60,34,17,0.0 +13449,74,10,15,0.0 +13449,21,10,27,0.0 +13449,67,14,49,0.0 +13449,51,53,34,0.0 +13449,52,7,25,0.0 +13449,3,10,26,0.0 +13449,10,31,15,0.0 +13449,12,38,12,0.0 +13449,71,21.5,25,0.0 +13449,17,39,7,0.0 +13449,4,22,47,0.0 +13449,76,18,3,0.0 +13449,63,43.9,4,0.0 +13449,24,4.5,38,0.0 +13449,69,36,47,0.0 +13449,42,14,34,0.0 +13449,66,17,31,0.0 +13449,46,12,23,0.0 +13449,27,43.9,35,0.0 +13449,36,19,42,0.0 +13449,26,31.23,17,0.0 +13449,58,13.25,32,0.0 +13449,30,25.89,29,0.0 +13449,38,263.5,45,0.0 +13449,75,7.75,44,0.0 +13449,14,23.25,22,0.0 +13449,32,32,50,0.0 +13449,50,16.25,36,0.0 +13449,31,12.5,5,0.0 +13449,11,21,28,0.0 +13449,53,32.8,2,0.0 +13449,13,6,1,0.0 +13449,43,46,17,0.0 +13449,8,40,38,0.0 +13449,61,28.5,42,0.0 +13449,15,15.5,36,0.0 +13449,44,19.45,44,0.0 +13449,16,17.45,15,0.0 +13449,47,9.5,30,0.0 +13449,57,19.5,29,0.0 +13449,65,21.05,29,0.0 +13449,37,26,37,0.0 +13449,64,33.25,13,0.0 +13449,19,9.2,26,0.0 +13449,55,24,28,0.0 +13449,7,30,3,0.0 +13449,45,9.5,32,0.0 +13449,35,18,35,0.0 +13449,49,20,36,0.0 +13449,25,14,20,0.0 +13450,56,38,24,0.0 +13450,52,7,49,0.0 +13450,33,2.5,48,0.0 +13450,23,9,36,0.0 +13450,60,34,11,0.0 +13450,43,46,46,0.0 +13450,32,32,25,0.0 +13450,22,21,33,0.0 +13450,71,21.5,6,0.0 +13450,10,31,26,0.0 +13450,18,62.5,8,0.0 +13450,74,10,39,0.0 +13450,8,40,13,0.0 +13450,65,21.05,4,0.0 +13450,49,20,15,0.0 +13450,73,15,44,0.0 +13450,50,16.25,22,0.0 +13450,40,18.4,3,0.0 +13450,12,38,42,0.0 +13450,54,7.45,48,0.0 +13450,6,25,27,0.0 +13450,70,15,3,0.0 +13450,3,10,31,0.0 +13450,45,9.5,40,0.0 +13450,66,17,48,0.0 +13450,20,81,9,0.0 +13450,61,28.5,45,0.0 +13450,2,19,42,0.0 +13450,64,33.25,1,0.0 +13450,16,17.45,48,0.0 +13450,31,12.5,32,0.0 +13450,35,18,34,0.0 +13450,1,18,46,0.0 +13450,48,12.75,10,0.0 +13450,15,15.5,25,0.0 +13450,37,26,20,0.0 +13450,7,30,31,0.0 +13450,26,31.23,43,0.0 +13450,14,23.25,47,0.0 +13450,68,12.5,10,0.0 +13450,39,18,42,0.0 +13450,17,39,1,0.0 +13450,5,21.35,31,0.0 +13450,34,14,17,0.0 +13450,77,13,34,0.0 +13450,27,43.9,21,0.0 +13450,38,263.5,34,0.0 +13450,55,24,44,0.0 +13450,28,45.6,27,0.0 +13450,58,13.25,20,0.0 +13450,4,22,49,0.0 +13450,67,14,46,0.0 +13450,44,19.45,4,0.0 +13450,30,25.89,10,0.0 +13450,59,55,28,0.0 +13450,25,14,5,0.0 +13450,51,53,26,0.0 +13450,69,36,14,0.0 +13450,21,10,39,0.0 +13450,75,7.75,3,0.0 +13450,36,19,35,0.0 +13450,11,21,28,0.0 +13450,57,19.5,44,0.0 +13450,24,4.5,23,0.0 +13450,42,14,48,0.0 +13450,29,123.79,22,0.0 +13450,46,12,8,0.0 +13450,19,9.2,24,0.0 +13450,41,9.65,49,0.0 +13450,72,34.8,37,0.0 +13450,62,49.3,41,0.0 +13450,63,43.9,44,0.0 +13450,47,9.5,23,0.0 +13450,13,6,40,0.0 +13450,53,32.8,10,0.0 +13450,76,18,24,0.0 +13450,9,97,34,0.0 +13451,43,46,32,0.0 +13451,16,17.45,28,0.0 +13451,66,17,11,0.0 +13451,34,14,21,0.0 +13451,57,19.5,17,0.0 +13451,60,34,31,0.0 +13451,11,21,6,0.0 +13451,73,15,25,0.0 +13451,77,13,34,0.0 +13451,21,10,34,0.0 +13451,31,12.5,44,0.0 +13451,50,16.25,22,0.0 +13451,59,55,4,0.0 +13451,46,12,33,0.0 +13451,32,32,44,0.0 +13451,55,24,44,0.0 +13451,54,7.45,43,0.0 +13451,49,20,5,0.0 +13451,68,12.5,24,0.0 +13451,10,31,30,0.0 +13451,22,21,49,0.0 +13451,20,81,5,0.0 +13451,8,40,9,0.0 +13451,44,19.45,3,0.0 +13451,69,36,24,0.0 +13451,62,49.3,29,0.0 +13451,28,45.6,34,0.0 +13451,64,33.25,25,0.0 +13451,19,9.2,4,0.0 +13451,76,18,49,0.0 +13451,63,43.9,5,0.0 +13451,56,38,23,0.0 +13451,67,14,21,0.0 +13451,3,10,29,0.0 +13451,72,34.8,36,0.0 +13451,9,97,34,0.0 +13451,41,9.65,44,0.0 +13451,30,25.89,37,0.0 +13451,25,14,32,0.0 +13451,42,14,8,0.0 +13451,2,19,33,0.0 +13451,74,10,11,0.0 +13451,45,9.5,33,0.0 +13451,27,43.9,3,0.0 +13451,47,9.5,26,0.0 +13451,58,13.25,17,0.0 +13451,65,21.05,35,0.0 +13451,37,26,36,0.0 +13451,52,7,46,0.0 +13451,29,123.79,45,0.0 +13451,6,25,27,0.0 +13451,4,22,33,0.0 +13451,23,9,22,0.0 +13451,15,15.5,30,0.0 +13451,13,6,2,0.0 +13451,14,23.25,44,0.0 +13451,39,18,4,0.0 +13451,1,18,48,0.0 +13451,5,21.35,29,0.0 +13451,48,12.75,5,0.0 +13451,70,15,18,0.0 +13451,71,21.5,21,0.0 +13451,53,32.8,36,0.0 +13451,40,18.4,42,0.0 +13451,7,30,47,0.0 +13451,61,28.5,31,0.0 +13451,17,39,19,0.0 +13451,36,19,27,0.0 +13451,24,4.5,7,0.0 +13451,51,53,5,0.0 +13451,75,7.75,34,0.0 +13451,26,31.23,4,0.0 +13451,12,38,26,0.0 +13451,18,62.5,50,0.0 +13451,33,2.5,9,0.0 +13452,7,30,26,0.0 +13452,49,20,44,0.0 +13452,22,21,22,0.0 +13452,5,21.35,19,0.0 +13452,47,9.5,42,0.0 +13452,63,43.9,19,0.0 +13452,34,14,18,0.0 +13452,19,9.2,23,0.0 +13452,39,18,20,0.0 +13452,41,9.65,15,0.0 +13452,50,16.25,7,0.0 +13452,54,7.45,16,0.0 +13452,55,24,50,0.0 +13452,25,14,16,0.0 +13452,12,38,45,0.0 +13452,43,46,27,0.0 +13452,30,25.89,29,0.0 +13452,10,31,16,0.0 +13452,38,263.5,35,0.0 +13452,14,23.25,48,0.0 +13452,23,9,35,0.0 +13452,16,17.45,39,0.0 +13452,28,45.6,7,0.0 +13452,11,21,9,0.0 +13452,69,36,50,0.0 +13452,52,7,2,0.0 +13452,9,97,44,0.0 +13452,27,43.9,40,0.0 +13452,29,123.79,37,0.0 +13452,67,14,26,0.0 +13452,77,13,43,0.0 +13452,37,26,47,0.0 +13452,76,18,19,0.0 +13452,53,32.8,15,0.0 +13452,4,22,5,0.0 +13452,62,49.3,17,0.0 +13452,40,18.4,29,0.0 +13452,59,55,4,0.0 +13452,6,25,21,0.0 +13452,13,6,49,0.0 +13452,70,15,32,0.0 +13452,24,4.5,47,0.0 +13452,33,2.5,23,0.0 +13452,44,19.45,38,0.0 +13452,26,31.23,37,0.0 +13452,75,7.75,36,0.0 +13452,20,81,50,0.0 +13452,8,40,20,0.0 +13452,66,17,27,0.0 +13452,46,12,39,0.0 +13452,36,19,33,0.0 +13452,18,62.5,20,0.0 +13452,73,15,40,0.0 +13452,72,34.8,33,0.0 +13452,15,15.5,42,0.0 +13452,68,12.5,30,0.0 +13453,57,19.5,28,0.0 +13453,65,21.05,6,0.0 +13453,24,4.5,28,0.0 +13453,48,12.75,5,0.0 +13453,16,17.45,50,0.0 +13454,9,97,16,0.0 +13454,2,19,46,0.0 +13454,50,16.25,42,0.0 +13454,69,36,37,0.0 +13454,26,31.23,42,0.0 +13454,55,24,4,0.0 +13454,5,21.35,8,0.0 +13454,6,25,50,0.0 +13454,22,21,1,0.0 +13454,42,14,18,0.0 +13454,25,14,5,0.0 +13454,20,81,30,0.0 +13454,1,18,5,0.0 +13454,43,46,22,0.0 +13454,48,12.75,26,0.0 +13454,74,10,28,0.0 +13454,56,38,36,0.0 +13454,39,18,30,0.0 +13454,59,55,13,0.0 +13454,53,32.8,47,0.0 +13454,37,26,30,0.0 +13454,15,15.5,39,0.0 +13454,63,43.9,29,0.0 +13454,68,12.5,22,0.0 +13454,65,21.05,50,0.0 +13454,60,34,13,0.0 +13454,72,34.8,13,0.0 +13454,64,33.25,11,0.0 +13454,76,18,13,0.0 +13454,57,19.5,13,0.0 +13454,27,43.9,2,0.0 +13454,17,39,6,0.0 +13454,23,9,22,0.0 +13454,24,4.5,25,0.0 +13454,61,28.5,13,0.0 +13454,49,20,15,0.0 +13454,62,49.3,17,0.0 +13454,30,25.89,24,0.0 +13454,47,9.5,24,0.0 +13454,32,32,47,0.0 +13454,52,7,11,0.0 +13454,28,45.6,1,0.0 +13454,7,30,18,0.0 +13454,71,21.5,49,0.0 +13454,13,6,39,0.0 +13454,44,19.45,4,0.0 +13454,11,21,29,0.0 +13454,29,123.79,20,0.0 +13455,25,14,13,0.0 +13455,55,24,4,0.0 +13455,54,7.45,27,0.0 +13455,60,34,27,0.0 +13455,46,12,18,0.0 +13455,4,22,37,0.0 +13455,62,49.3,2,0.0 +13455,32,32,5,0.0 +13455,39,18,25,0.0 +13455,48,12.75,7,0.0 +13455,7,30,48,0.0 +13455,50,16.25,16,0.0 +13455,76,18,41,0.0 +13455,19,9.2,41,0.0 +13455,27,43.9,17,0.0 +13455,35,18,18,0.0 +13455,24,4.5,35,0.0 +13455,20,81,1,0.0 +13455,75,7.75,31,0.0 +13455,14,23.25,48,0.0 +13455,47,9.5,47,0.0 +13455,38,263.5,27,0.0 +13455,33,2.5,15,0.0 +13455,70,15,8,0.0 +13455,64,33.25,14,0.0 +13455,17,39,15,0.0 +13455,29,123.79,12,0.0 +13455,59,55,3,0.0 +13455,52,7,29,0.0 +13455,42,14,18,0.0 +13455,21,10,21,0.0 +13455,61,28.5,48,0.0 +13455,8,40,16,0.0 +13455,22,21,49,0.0 +13455,11,21,29,0.0 +13455,40,18.4,40,0.0 +13455,74,10,49,0.0 +13455,34,14,23,0.0 +13455,23,9,23,0.0 +13455,69,36,4,0.0 +13455,44,19.45,8,0.0 +13455,37,26,20,0.0 +13455,41,9.65,36,0.0 +13455,31,12.5,26,0.0 +13455,1,18,26,0.0 +13455,15,15.5,41,0.0 +13455,43,46,9,0.0 +13455,13,6,39,0.0 +13455,3,10,1,0.0 +13455,57,19.5,34,0.0 +13455,45,9.5,2,0.0 +13455,53,32.8,6,0.0 +13455,63,43.9,10,0.0 +13455,5,21.35,29,0.0 +13455,6,25,48,0.0 +13455,30,25.89,20,0.0 +13455,67,14,7,0.0 +13455,36,19,24,0.0 +13455,12,38,48,0.0 +13455,9,97,41,0.0 +13455,2,19,5,0.0 +13455,16,17.45,4,0.0 +13455,68,12.5,36,0.0 +13455,72,34.8,22,0.0 +13456,64,33.25,13,0.0 +13456,42,14,33,0.0 +13456,76,18,15,0.0 +13456,21,10,15,0.0 +13456,7,30,26,0.0 +13456,49,20,15,0.0 +13456,29,123.79,3,0.0 +13456,31,12.5,5,0.0 +13456,3,10,17,0.0 +13456,69,36,28,0.0 +13456,23,9,36,0.0 +13456,60,34,29,0.0 +13456,2,19,36,0.0 +13457,14,23.25,25,0.0 +13457,31,12.5,19,0.0 +13457,70,15,30,0.0 +13457,20,81,42,0.0 +13457,66,17,2,0.0 +13457,32,32,23,0.0 +13457,77,13,22,0.0 +13457,19,9.2,24,0.0 +13457,41,9.65,4,0.0 +13457,29,123.79,22,0.0 +13457,3,10,36,0.0 +13457,27,43.9,26,0.0 +13457,49,20,41,0.0 +13457,25,14,41,0.0 +13457,44,19.45,44,0.0 +13457,36,19,50,0.0 +13457,62,49.3,43,0.0 +13457,74,10,38,0.0 +13457,40,18.4,32,0.0 +13457,12,38,29,0.0 +13457,22,21,39,0.0 +13457,11,21,27,0.0 +13458,57,19.5,39,0.0 +13458,50,16.25,38,0.0 +13458,38,263.5,11,0.0 +13458,75,7.75,37,0.0 +13458,62,49.3,12,0.0 +13458,36,19,50,0.0 +13458,27,43.9,25,0.0 +13458,37,26,26,0.0 +13458,1,18,8,0.0 +13458,35,18,13,0.0 +13458,3,10,10,0.0 +13458,60,34,18,0.0 +13458,77,13,45,0.0 +13458,14,23.25,14,0.0 +13458,61,28.5,5,0.0 +13458,32,32,7,0.0 +13458,4,22,17,0.0 +13458,64,33.25,6,0.0 +13458,66,17,4,0.0 +13458,20,81,6,0.0 +13458,16,17.45,40,0.0 +13458,74,10,24,0.0 +13458,15,15.5,35,0.0 +13458,67,14,40,0.0 +13458,34,14,34,0.0 +13458,58,13.25,12,0.0 +13458,49,20,39,0.0 +13458,29,123.79,27,0.0 +13458,52,7,29,0.0 +13458,48,12.75,22,0.0 +13458,2,19,17,0.0 +13458,47,9.5,50,0.0 +13458,17,39,7,0.0 +13458,28,45.6,37,0.0 +13458,9,97,50,0.0 +13458,51,53,35,0.0 +13458,46,12,20,0.0 +13458,55,24,45,0.0 +13458,22,21,42,0.0 +13458,23,9,23,0.0 +13458,39,18,3,0.0 +13458,25,14,40,0.0 +13458,53,32.8,45,0.0 +13458,44,19.45,36,0.0 +13458,8,40,17,0.0 +13458,5,21.35,1,0.0 +13458,73,15,4,0.0 +13458,6,25,10,0.0 +13458,18,62.5,7,0.0 +13458,7,30,50,0.0 +13458,70,15,6,0.0 +13458,76,18,45,0.0 +13458,24,4.5,36,0.0 +13458,33,2.5,37,0.0 +13458,59,55,11,0.0 +13458,71,21.5,11,0.0 +13458,72,34.8,43,0.0 +13458,30,25.89,27,0.0 +13458,19,9.2,32,0.0 +13458,13,6,7,0.0 +13458,21,10,11,0.0 +13458,12,38,45,0.0 +13458,41,9.65,49,0.0 +13458,56,38,22,0.0 +13458,68,12.5,39,0.0 +13458,10,31,43,0.0 +13458,43,46,48,0.0 +13458,65,21.05,34,0.0 +13458,11,21,10,0.0 +13458,42,14,41,0.0 +13458,63,43.9,16,0.0 +13458,69,36,21,0.0 +13458,31,12.5,32,0.0 +13459,72,34.8,17,0.0 +13459,19,9.2,34,0.0 +13459,6,25,27,0.0 +13459,56,38,39,0.0 +13459,11,21,5,0.0 +13459,23,9,1,0.0 +13459,31,12.5,45,0.0 +13459,17,39,27,0.0 +13459,3,10,39,0.0 +13459,4,22,7,0.0 +13459,27,43.9,30,0.0 +13459,29,123.79,23,0.0 +13459,24,4.5,6,0.0 +13459,41,9.65,37,0.0 +13459,45,9.5,29,0.0 +13459,53,32.8,39,0.0 +13459,58,13.25,49,0.0 +13459,74,10,17,0.0 +13459,66,17,7,0.0 +13459,67,14,37,0.0 +13459,20,81,16,0.0 +13459,46,12,7,0.0 +13459,63,43.9,41,0.0 +13459,60,34,22,0.0 +13459,15,15.5,34,0.0 +13459,40,18.4,32,0.0 +13459,52,7,13,0.0 +13459,37,26,43,0.0 +13459,55,24,6,0.0 +13459,38,263.5,37,0.0 +13459,12,38,24,0.0 +13459,2,19,2,0.0 +13459,47,9.5,19,0.0 +13459,21,10,43,0.0 +13459,68,12.5,16,0.0 +13459,32,32,35,0.0 +13459,50,16.25,14,0.0 +13459,22,21,23,0.0 +13459,76,18,47,0.0 +13459,28,45.6,11,0.0 +13459,5,21.35,25,0.0 +13459,62,49.3,37,0.0 +13459,9,97,21,0.0 +13459,54,7.45,8,0.0 +13459,8,40,19,0.0 +13459,70,15,9,0.0 +13459,1,18,27,0.0 +13459,48,12.75,50,0.0 +13459,7,30,36,0.0 +13459,42,14,26,0.0 +13459,73,15,21,0.0 +13460,46,12,40,0.0 +13460,36,19,45,0.0 +13460,59,55,18,0.0 +13460,7,30,24,0.0 +13460,14,23.25,3,0.0 +13460,37,26,49,0.0 +13460,70,15,39,0.0 +13460,29,123.79,31,0.0 +13460,64,33.25,49,0.0 +13460,56,38,23,0.0 +13460,48,12.75,32,0.0 +13460,28,45.6,49,0.0 +13460,51,53,31,0.0 +13460,11,21,20,0.0 +13460,43,46,24,0.0 +13460,54,7.45,33,0.0 +13460,9,97,25,0.0 +13460,57,19.5,26,0.0 +13460,17,39,50,0.0 +13460,25,14,36,0.0 +13460,30,25.89,22,0.0 +13460,15,15.5,23,0.0 +13460,10,31,21,0.0 +13460,71,21.5,49,0.0 +13460,49,20,36,0.0 +13460,26,31.23,25,0.0 +13460,76,18,7,0.0 +13460,24,4.5,25,0.0 +13460,40,18.4,42,0.0 +13460,58,13.25,43,0.0 +13460,2,19,47,0.0 +13460,21,10,43,0.0 +13460,62,49.3,49,0.0 +13460,33,2.5,2,0.0 +13460,34,14,5,0.0 +13460,16,17.45,42,0.0 +13460,75,7.75,25,0.0 +13460,31,12.5,20,0.0 +13460,73,15,49,0.0 +13460,41,9.65,42,0.0 +13460,42,14,48,0.0 +13460,60,34,17,0.0 +13460,65,21.05,31,0.0 +13460,74,10,9,0.0 +13460,68,12.5,37,0.0 +13460,20,81,35,0.0 +13460,53,32.8,31,0.0 +13460,19,9.2,44,0.0 +13460,1,18,38,0.0 +13460,18,62.5,46,0.0 +13460,67,14,40,0.0 +13460,47,9.5,9,0.0 +13460,4,22,33,0.0 +13460,8,40,47,0.0 +13460,45,9.5,30,0.0 +13460,77,13,29,0.0 +13460,5,21.35,31,0.0 +13460,66,17,23,0.0 +13460,23,9,6,0.0 +13460,44,19.45,40,0.0 +13460,6,25,20,0.0 +13460,55,24,6,0.0 +13460,38,263.5,50,0.0 +13460,12,38,8,0.0 +13460,13,6,46,0.0 +13460,39,18,42,0.0 +13460,22,21,43,0.0 +13460,35,18,9,0.0 +13460,52,7,17,0.0 +13460,32,32,24,0.0 +13460,69,36,36,0.0 +13460,50,16.25,23,0.0 +13460,72,34.8,25,0.0 +13460,63,43.9,48,0.0 +13460,27,43.9,23,0.0 +13461,45,9.5,12,0.0 +13461,57,19.5,14,0.0 +13461,11,21,5,0.0 +13461,58,13.25,36,0.0 +13461,30,25.89,20,0.0 +13461,44,19.45,36,0.0 +13461,35,18,32,0.0 +13461,73,15,36,0.0 +13461,37,26,6,0.0 +13461,48,12.75,43,0.0 +13461,51,53,28,0.0 +13461,2,19,38,0.0 +13461,47,9.5,46,0.0 +13461,55,24,34,0.0 +13461,29,123.79,19,0.0 +13461,17,39,24,0.0 +13461,67,14,39,0.0 +13461,28,45.6,16,0.0 +13461,18,62.5,3,0.0 +13461,12,38,18,0.0 +13461,77,13,33,0.0 +13461,13,6,35,0.0 +13461,70,15,24,0.0 +13461,62,49.3,34,0.0 +13461,39,18,40,0.0 +13461,36,19,10,0.0 +13461,49,20,36,0.0 +13461,19,9.2,20,0.0 +13461,56,38,36,0.0 +13461,16,17.45,6,0.0 +13461,38,263.5,7,0.0 +13461,52,7,15,0.0 +13461,26,31.23,20,0.0 +13461,4,22,20,0.0 +13461,76,18,22,0.0 +13461,21,10,42,0.0 +13461,61,28.5,36,0.0 +13461,6,25,18,0.0 +13461,50,16.25,34,0.0 +13461,66,17,7,0.0 +13461,32,32,26,0.0 +13461,34,14,24,0.0 +13461,64,33.25,5,0.0 +13461,53,32.8,45,0.0 +13461,8,40,10,0.0 +13461,74,10,40,0.0 +13461,69,36,22,0.0 +13461,9,97,2,0.0 +13461,31,12.5,24,0.0 +13461,5,21.35,48,0.0 +13461,60,34,10,0.0 +13461,43,46,41,0.0 +13461,68,12.5,10,0.0 +13461,75,7.75,44,0.0 +13461,23,9,22,0.0 +13461,41,9.65,45,0.0 +13461,10,31,18,0.0 +13461,27,43.9,24,0.0 +13461,65,21.05,9,0.0 +13461,7,30,33,0.0 +13461,71,21.5,35,0.0 +13461,15,15.5,41,0.0 +13461,46,12,31,0.0 +13461,72,34.8,15,0.0 +13461,24,4.5,8,0.0 +13461,63,43.9,46,0.0 +13461,42,14,18,0.0 +13461,25,14,40,0.0 +13461,59,55,42,0.0 +13461,40,18.4,19,0.0 +13461,3,10,25,0.0 +13461,54,7.45,2,0.0 +13461,1,18,42,0.0 +13461,14,23.25,10,0.0 +13462,38,263.5,9,0.0 +13462,17,39,47,0.0 +13462,70,15,17,0.0 +13462,43,46,43,0.0 +13462,16,17.45,44,0.0 +13462,61,28.5,24,0.0 +13462,7,30,15,0.0 +13462,25,14,33,0.0 +13462,29,123.79,28,0.0 +13462,21,10,1,0.0 +13462,12,38,48,0.0 +13462,6,25,5,0.0 +13463,21,10,28,0.0 +13463,12,38,48,0.0 +13463,68,12.5,34,0.0 +13463,43,46,17,0.0 +13463,35,18,30,0.0 +13463,14,23.25,3,0.0 +13463,69,36,10,0.0 +13463,63,43.9,41,0.0 +13463,67,14,22,0.0 +13463,10,31,38,0.0 +13463,42,14,43,0.0 +13463,76,18,25,0.0 +13463,55,24,39,0.0 +13463,1,18,14,0.0 +13463,33,2.5,7,0.0 +13463,17,39,6,0.0 +13463,54,7.45,39,0.0 +13463,75,7.75,37,0.0 +13463,65,21.05,25,0.0 +13463,53,32.8,25,0.0 +13463,19,9.2,9,0.0 +13463,23,9,32,0.0 +13463,58,13.25,38,0.0 +13463,27,43.9,49,0.0 +13463,2,19,16,0.0 +13463,57,19.5,2,0.0 +13463,28,45.6,3,0.0 +13463,60,34,46,0.0 +13463,44,19.45,26,0.0 +13463,45,9.5,40,0.0 +13463,48,12.75,6,0.0 +13463,41,9.65,10,0.0 +13463,73,15,34,0.0 +13463,9,97,18,0.0 +13463,64,33.25,31,0.0 +13463,30,25.89,11,0.0 +13463,72,34.8,32,0.0 +13463,4,22,15,0.0 +13463,36,19,33,0.0 +13463,37,26,4,0.0 +13463,31,12.5,19,0.0 +13463,32,32,49,0.0 +13463,70,15,3,0.0 +13463,34,14,23,0.0 +13463,18,62.5,47,0.0 +13463,74,10,47,0.0 +13463,56,38,15,0.0 +13463,3,10,48,0.0 +13463,38,263.5,38,0.0 +13463,29,123.79,28,0.0 +13463,7,30,16,0.0 +13463,25,14,9,0.0 +13463,46,12,34,0.0 +13463,20,81,46,0.0 +13463,24,4.5,19,0.0 +13463,52,7,43,0.0 +13463,11,21,24,0.0 +13463,61,28.5,19,0.0 +13463,51,53,42,0.0 +13463,16,17.45,22,0.0 +13463,77,13,39,0.0 +13463,39,18,35,0.0 +13463,8,40,8,0.0 +13463,50,16.25,21,0.0 +13463,13,6,29,0.0 +13463,66,17,38,0.0 +13463,6,25,17,0.0 +13463,71,21.5,28,0.0 +13464,3,10,8,0.0 +13464,27,43.9,46,0.0 +13464,16,17.45,3,0.0 +13464,20,81,17,0.0 +13464,4,22,24,0.0 +13464,42,14,40,0.0 +13464,60,34,22,0.0 +13464,52,7,36,0.0 +13464,25,14,44,0.0 +13464,45,9.5,40,0.0 +13464,55,24,50,0.0 +13464,67,14,24,0.0 +13464,31,12.5,4,0.0 +13464,75,7.75,4,0.0 +13464,32,32,40,0.0 +13464,15,15.5,3,0.0 +13464,6,25,33,0.0 +13464,64,33.25,29,0.0 +13464,5,21.35,16,0.0 +13464,53,32.8,28,0.0 +13464,44,19.45,11,0.0 +13464,8,40,44,0.0 +13464,65,21.05,20,0.0 +13464,50,16.25,26,0.0 +13464,14,23.25,40,0.0 +13464,34,14,41,0.0 +13464,58,13.25,29,0.0 +13464,74,10,49,0.0 +13464,54,7.45,47,0.0 +13465,10,31,15,0.0 +13465,33,2.5,30,0.0 +13465,11,21,33,0.0 +13465,39,18,5,0.0 +13465,34,14,35,0.0 +13465,67,14,11,0.0 +13465,2,19,44,0.0 +13465,71,21.5,5,0.0 +13465,73,15,39,0.0 +13465,37,26,23,0.0 +13465,28,45.6,46,0.0 +13465,5,21.35,4,0.0 +13465,64,33.25,2,0.0 +13465,24,4.5,28,0.0 +13465,76,18,14,0.0 +13465,46,12,47,0.0 +13465,47,9.5,2,0.0 +13465,42,14,11,0.0 +13465,69,36,11,0.0 +13465,16,17.45,11,0.0 +13465,3,10,47,0.0 +13465,7,30,28,0.0 +13465,25,14,37,0.0 +13465,62,49.3,9,0.0 +13465,51,53,25,0.0 +13465,50,16.25,22,0.0 +13465,74,10,27,0.0 +13465,49,20,25,0.0 +13465,26,31.23,9,0.0 +13465,45,9.5,37,0.0 +13465,61,28.5,24,0.0 +13465,31,12.5,9,0.0 +13465,59,55,19,0.0 +13465,63,43.9,32,0.0 +13465,23,9,28,0.0 +13465,65,21.05,13,0.0 +13465,54,7.45,33,0.0 +13465,36,19,40,0.0 +13465,9,97,36,0.0 +13465,19,9.2,47,0.0 +13465,18,62.5,32,0.0 +13465,44,19.45,21,0.0 +13465,29,123.79,15,0.0 +13465,40,18.4,33,0.0 +13465,58,13.25,49,0.0 +13465,14,23.25,18,0.0 +13465,38,263.5,2,0.0 +13465,48,12.75,41,0.0 +13465,12,38,31,0.0 +13465,43,46,26,0.0 +13465,66,17,9,0.0 +13465,52,7,38,0.0 +13465,56,38,44,0.0 +13465,70,15,3,0.0 +13465,77,13,47,0.0 +13465,57,19.5,36,0.0 +13465,6,25,26,0.0 +13465,53,32.8,16,0.0 +13466,76,18,17,0.0 +13466,29,123.79,35,0.0 +13466,64,33.25,22,0.0 +13466,16,17.45,29,0.0 +13466,59,55,18,0.0 +13466,33,2.5,34,0.0 +13466,24,4.5,45,0.0 +13466,71,21.5,50,0.0 +13466,6,25,16,0.0 +13466,10,31,35,0.0 +13466,48,12.75,32,0.0 +13466,34,14,8,0.0 +13466,51,53,46,0.0 +13466,32,32,29,0.0 +13466,60,34,14,0.0 +13466,12,38,34,0.0 +13466,25,14,36,0.0 +13466,35,18,41,0.0 +13466,2,19,43,0.0 +13466,68,12.5,25,0.0 +13466,5,21.35,7,0.0 +13466,63,43.9,34,0.0 +13466,50,16.25,25,0.0 +13466,7,30,30,0.0 +13466,75,7.75,18,0.0 +13466,21,10,43,0.0 +13466,72,34.8,36,0.0 +13466,20,81,35,0.0 +13466,19,9.2,20,0.0 +13466,69,36,3,0.0 +13466,27,43.9,44,0.0 +13466,31,12.5,48,0.0 +13466,8,40,7,0.0 +13466,14,23.25,42,0.0 +13466,40,18.4,11,0.0 +13466,41,9.65,39,0.0 +13466,49,20,19,0.0 +13466,43,46,32,0.0 +13466,73,15,31,0.0 +13466,30,25.89,40,0.0 +13466,28,45.6,34,0.0 +13466,4,22,11,0.0 +13466,74,10,47,0.0 +13466,53,32.8,27,0.0 +13466,45,9.5,24,0.0 +13466,39,18,27,0.0 +13466,13,6,39,0.0 +13466,26,31.23,10,0.0 +13466,44,19.45,11,0.0 +13466,67,14,45,0.0 +13466,17,39,46,0.0 +13466,15,15.5,47,0.0 +13466,36,19,16,0.0 +13466,23,9,31,0.0 +13466,42,14,5,0.0 +13466,11,21,25,0.0 +13466,54,7.45,37,0.0 +13466,77,13,29,0.0 +13466,66,17,44,0.0 +13466,46,12,27,0.0 +13466,55,24,23,0.0 +13466,47,9.5,41,0.0 +13466,37,26,2,0.0 +13466,65,21.05,8,0.0 +13466,56,38,9,0.0 +13466,52,7,42,0.0 +13466,18,62.5,30,0.0 +13466,9,97,43,0.0 +13466,38,263.5,18,0.0 +13466,3,10,27,0.0 +13466,57,19.5,39,0.0 +13466,1,18,8,0.0 +13466,70,15,50,0.0 +13466,61,28.5,15,0.0 +13466,62,49.3,50,0.0 +13466,22,21,44,0.0 +13466,58,13.25,29,0.0 +13467,10,31,27,0.0 +13467,64,33.25,40,0.0 +13467,33,2.5,44,0.0 +13467,49,20,7,0.0 +13467,73,15,35,0.0 +13467,17,39,44,0.0 +13467,45,9.5,35,0.0 +13467,42,14,36,0.0 +13467,12,38,4,0.0 +13467,44,19.45,37,0.0 +13467,51,53,30,0.0 +13467,22,21,50,0.0 +13467,4,22,25,0.0 +13467,48,12.75,32,0.0 +13467,69,36,16,0.0 +13467,56,38,27,0.0 +13467,3,10,37,0.0 +13467,37,26,49,0.0 +13467,57,19.5,40,0.0 +13467,16,17.45,2,0.0 +13467,72,34.8,47,0.0 +13467,46,12,22,0.0 +13467,66,17,36,0.0 +13467,43,46,36,0.0 +13467,28,45.6,10,0.0 +13468,62,49.3,21,0.0 +13468,52,7,37,0.0 +13468,43,46,41,0.0 +13468,41,9.65,43,0.0 +13468,56,38,38,0.0 +13468,59,55,7,0.0 +13468,42,14,45,0.0 +13468,8,40,24,0.0 +13468,26,31.23,39,0.0 +13468,15,15.5,2,0.0 +13468,77,13,11,0.0 +13468,39,18,20,0.0 +13469,59,55,29,0.0 +13469,16,17.45,34,0.0 +13469,20,81,16,0.0 +13469,31,12.5,38,0.0 +13469,55,24,12,0.0 +13469,21,10,9,0.0 +13469,32,32,22,0.0 +13469,62,49.3,7,0.0 +13469,76,18,7,0.0 +13469,39,18,14,0.0 +13469,17,39,13,0.0 +13469,1,18,31,0.0 +13469,51,53,45,0.0 +13469,2,19,9,0.0 +13469,77,13,27,0.0 +13469,27,43.9,34,0.0 +13469,48,12.75,11,0.0 +13469,35,18,17,0.0 +13469,57,19.5,27,0.0 +13469,44,19.45,24,0.0 +13469,34,14,12,0.0 +13469,40,18.4,33,0.0 +13469,67,14,2,0.0 +13469,30,25.89,9,0.0 +13469,25,14,35,0.0 +13469,65,21.05,11,0.0 +13469,71,21.5,47,0.0 +13469,66,17,24,0.0 +13469,53,32.8,37,0.0 +13469,22,21,7,0.0 +13469,38,263.5,44,0.0 +13469,4,22,17,0.0 +13469,56,38,50,0.0 +13469,8,40,30,0.0 +13469,60,34,2,0.0 +13469,26,31.23,11,0.0 +13469,64,33.25,10,0.0 +13469,63,43.9,14,0.0 +13469,3,10,19,0.0 +13469,23,9,38,0.0 +13470,76,18,22,0.0 +13470,74,10,40,0.0 +13470,73,15,36,0.0 +13471,76,18,49,0.0 +13471,66,17,14,0.0 +13471,14,23.25,38,0.0 +13471,46,12,48,0.0 +13471,71,21.5,1,0.0 +13471,49,20,28,0.0 +13471,69,36,17,0.0 +13471,57,19.5,6,0.0 +13471,8,40,37,0.0 +13471,34,14,32,0.0 +13471,67,14,44,0.0 +13471,75,7.75,21,0.0 +13471,35,18,39,0.0 +13471,19,9.2,50,0.0 +13471,25,14,3,0.0 +13471,21,10,32,0.0 +13471,20,81,28,0.0 +13471,54,7.45,8,0.0 +13471,40,18.4,37,0.0 +13471,31,12.5,22,0.0 +13471,68,12.5,41,0.0 +13471,44,19.45,15,0.0 +13471,48,12.75,23,0.0 +13471,61,28.5,18,0.0 +13471,23,9,4,0.0 +13471,45,9.5,15,0.0 +13471,73,15,5,0.0 +13471,58,13.25,25,0.0 +13472,14,23.25,4,0.0 +13472,31,12.5,43,0.0 +13472,24,4.5,25,0.0 +13472,30,25.89,50,0.0 +13472,68,12.5,44,0.0 +13472,56,38,29,0.0 +13472,38,263.5,44,0.0 +13472,70,15,13,0.0 +13472,54,7.45,24,0.0 +13472,10,31,14,0.0 +13472,11,21,15,0.0 +13472,61,28.5,45,0.0 +13472,65,21.05,16,0.0 +13472,35,18,43,0.0 +13472,75,7.75,14,0.0 +13472,4,22,45,0.0 +13472,3,10,36,0.0 +13472,77,13,26,0.0 +13472,59,55,6,0.0 +13472,42,14,44,0.0 +13472,36,19,20,0.0 +13472,73,15,34,0.0 +13472,25,14,18,0.0 +13472,66,17,9,0.0 +13472,18,62.5,6,0.0 +13472,16,17.45,33,0.0 +13472,13,6,10,0.0 +13472,49,20,3,0.0 +13472,15,15.5,46,0.0 +13472,33,2.5,16,0.0 +13473,67,14,31,0.0 +13473,55,24,1,0.0 +13473,32,32,7,0.0 +13473,60,34,28,0.0 +13473,9,97,50,0.0 +13473,29,123.79,12,0.0 +13473,28,45.6,48,0.0 +13473,73,15,28,0.0 +13473,56,38,36,0.0 +13473,77,13,10,0.0 +13473,54,7.45,11,0.0 +13473,57,19.5,41,0.0 +13473,37,26,35,0.0 +13473,51,53,23,0.0 +13473,18,62.5,29,0.0 +13473,23,9,22,0.0 +13473,36,19,44,0.0 +13473,76,18,26,0.0 +13473,11,21,6,0.0 +13473,65,21.05,33,0.0 +13473,22,21,4,0.0 +13473,63,43.9,37,0.0 +13473,58,13.25,25,0.0 +13473,6,25,22,0.0 +13473,20,81,16,0.0 +13473,13,6,47,0.0 +13473,33,2.5,10,0.0 +13473,66,17,39,0.0 +13473,26,31.23,12,0.0 +13473,75,7.75,21,0.0 +13473,3,10,31,0.0 +13473,1,18,43,0.0 +13473,72,34.8,43,0.0 +13473,7,30,47,0.0 +13473,50,16.25,32,0.0 +13473,49,20,39,0.0 +13473,5,21.35,23,0.0 +13473,24,4.5,6,0.0 +13473,48,12.75,32,0.0 +13473,47,9.5,1,0.0 +13473,64,33.25,9,0.0 +13473,27,43.9,37,0.0 +13473,38,263.5,26,0.0 +13473,30,25.89,44,0.0 +13473,71,21.5,12,0.0 +13473,19,9.2,47,0.0 +13473,53,32.8,20,0.0 +13473,41,9.65,43,0.0 +13473,4,22,20,0.0 +13473,61,28.5,25,0.0 +13473,8,40,21,0.0 +13473,21,10,5,0.0 +13473,74,10,43,0.0 +13473,10,31,1,0.0 +13473,34,14,43,0.0 +13473,46,12,2,0.0 +13473,40,18.4,44,0.0 +13473,62,49.3,41,0.0 +13473,59,55,8,0.0 +13473,15,15.5,43,0.0 +13473,2,19,21,0.0 +13473,12,38,39,0.0 +13473,43,46,37,0.0 +13473,45,9.5,34,0.0 +13473,52,7,11,0.0 +13473,25,14,2,0.0 +13473,16,17.45,23,0.0 +13474,27,43.9,34,0.0 +13474,75,7.75,23,0.0 +13475,4,22,47,0.0 +13475,23,9,24,0.0 +13475,65,21.05,33,0.0 +13475,12,38,41,0.0 +13475,38,263.5,49,0.0 +13475,2,19,42,0.0 +13475,58,13.25,50,0.0 +13475,26,31.23,34,0.0 +13475,62,49.3,43,0.0 +13475,31,12.5,23,0.0 +13475,74,10,41,0.0 +13475,43,46,36,0.0 +13475,63,43.9,34,0.0 +13475,8,40,6,0.0 +13475,44,19.45,8,0.0 +13476,28,45.6,12,0.0 +13476,61,28.5,6,0.0 +13476,45,9.5,1,0.0 +13476,51,53,24,0.0 +13476,9,97,30,0.0 +13476,25,14,34,0.0 +13476,75,7.75,9,0.0 +13476,4,22,3,0.0 +13476,64,33.25,3,0.0 +13476,29,123.79,38,0.0 +13476,40,18.4,32,0.0 +13476,60,34,23,0.0 +13476,54,7.45,35,0.0 +13476,76,18,49,0.0 +13476,74,10,43,0.0 +13476,50,16.25,2,0.0 +13476,55,24,1,0.0 +13476,23,9,13,0.0 +13476,31,12.5,41,0.0 +13476,48,12.75,39,0.0 +13476,17,39,43,0.0 +13476,18,62.5,25,0.0 +13476,72,34.8,15,0.0 +13476,1,18,12,0.0 +13476,5,21.35,5,0.0 +13476,30,25.89,42,0.0 +13476,70,15,31,0.0 +13476,15,15.5,30,0.0 +13476,26,31.23,16,0.0 +13476,24,4.5,18,0.0 +13476,27,43.9,39,0.0 +13476,11,21,2,0.0 +13476,41,9.65,37,0.0 +13476,46,12,32,0.0 +13476,47,9.5,42,0.0 +13476,8,40,41,0.0 +13476,71,21.5,34,0.0 +13476,14,23.25,42,0.0 +13476,77,13,27,0.0 +13476,32,32,19,0.0 +13476,69,36,39,0.0 +13476,36,19,29,0.0 +13476,56,38,37,0.0 +13476,33,2.5,2,0.0 +13476,2,19,32,0.0 +13476,42,14,46,0.0 +13476,58,13.25,13,0.0 +13476,53,32.8,48,0.0 +13476,10,31,21,0.0 +13476,20,81,30,0.0 +13476,52,7,1,0.0 +13476,6,25,14,0.0 +13476,44,19.45,42,0.0 +13477,41,9.65,11,0.0 +13477,20,81,48,0.0 +13477,52,7,18,0.0 +13477,77,13,48,0.0 +13477,36,19,49,0.0 +13477,48,12.75,4,0.0 +13477,7,30,37,0.0 +13477,73,15,47,0.0 +13477,58,13.25,20,0.0 +13477,26,31.23,26,0.0 +13477,53,32.8,13,0.0 +13477,5,21.35,42,0.0 +13477,51,53,48,0.0 +13477,3,10,22,0.0 +13477,66,17,40,0.0 +13477,61,28.5,23,0.0 +13477,45,9.5,27,0.0 +13477,74,10,5,0.0 +13477,15,15.5,41,0.0 +13477,37,26,25,0.0 +13477,18,62.5,21,0.0 +13477,1,18,29,0.0 +13477,16,17.45,10,0.0 +13477,33,2.5,6,0.0 +13477,29,123.79,25,0.0 +13477,59,55,18,0.0 +13477,46,12,8,0.0 +13477,34,14,23,0.0 +13477,50,16.25,25,0.0 +13477,14,23.25,33,0.0 +13477,67,14,8,0.0 +13477,68,12.5,27,0.0 +13477,71,21.5,13,0.0 +13477,60,34,4,0.0 +13477,62,49.3,9,0.0 +13477,17,39,23,0.0 +13477,8,40,17,0.0 +13477,40,18.4,12,0.0 +13477,72,34.8,8,0.0 +13477,64,33.25,49,0.0 +13477,49,20,39,0.0 +13477,2,19,32,0.0 +13477,65,21.05,50,0.0 +13477,63,43.9,38,0.0 +13477,21,10,4,0.0 +13477,39,18,25,0.0 +13477,38,263.5,24,0.0 +13477,31,12.5,46,0.0 +13477,23,9,43,0.0 +13477,27,43.9,34,0.0 +13477,11,21,33,0.0 +13478,28,45.6,10,0.0 +13478,64,33.25,45,0.0 +13478,23,9,38,0.0 +13478,75,7.75,22,0.0 +13478,19,9.2,1,0.0 +13478,44,19.45,8,0.0 +13478,13,6,19,0.0 +13478,67,14,38,0.0 +13478,35,18,39,0.0 +13478,58,13.25,39,0.0 +13478,57,19.5,34,0.0 +13478,54,7.45,27,0.0 +13478,51,53,35,0.0 +13478,63,43.9,24,0.0 +13478,18,62.5,44,0.0 +13478,50,16.25,43,0.0 +13478,34,14,17,0.0 +13478,6,25,9,0.0 +13478,29,123.79,7,0.0 +13478,55,24,44,0.0 +13478,62,49.3,38,0.0 +13478,26,31.23,8,0.0 +13478,76,18,24,0.0 +13478,52,7,1,0.0 +13478,41,9.65,22,0.0 +13478,7,30,27,0.0 +13478,61,28.5,5,0.0 +13478,77,13,36,0.0 +13478,9,97,11,0.0 +13479,23,9,50,0.0 +13479,9,97,15,0.0 +13479,5,21.35,19,0.0 +13479,38,263.5,7,0.0 +13479,18,62.5,30,0.0 +13479,43,46,15,0.0 +13479,16,17.45,33,0.0 +13479,47,9.5,2,0.0 +13479,34,14,49,0.0 +13479,54,7.45,5,0.0 +13479,74,10,40,0.0 +13479,6,25,14,0.0 +13479,35,18,15,0.0 +13479,67,14,50,0.0 +13479,15,15.5,9,0.0 +13479,76,18,43,0.0 +13479,50,16.25,40,0.0 +13479,70,15,42,0.0 +13479,75,7.75,11,0.0 +13479,72,34.8,17,0.0 +13479,63,43.9,19,0.0 +13479,56,38,23,0.0 +13479,68,12.5,13,0.0 +13479,59,55,50,0.0 +13479,65,21.05,14,0.0 +13479,39,18,27,0.0 +13479,8,40,48,0.0 +13479,24,4.5,27,0.0 +13479,62,49.3,6,0.0 +13479,53,32.8,11,0.0 +13479,52,7,30,0.0 +13479,44,19.45,35,0.0 +13479,73,15,35,0.0 +13479,20,81,21,0.0 +13479,21,10,10,0.0 +13479,46,12,47,0.0 +13479,64,33.25,47,0.0 +13479,57,19.5,47,0.0 +13479,3,10,28,0.0 +13479,58,13.25,46,0.0 +13479,11,21,50,0.0 +13479,51,53,14,0.0 +13479,61,28.5,29,0.0 +13479,7,30,36,0.0 +13479,10,31,47,0.0 +13479,69,36,25,0.0 +13479,49,20,39,0.0 +13479,2,19,48,0.0 +13479,48,12.75,20,0.0 +13479,12,38,29,0.0 +13479,33,2.5,21,0.0 +13479,77,13,29,0.0 +13479,26,31.23,27,0.0 +13479,29,123.79,48,0.0 +13479,25,14,37,0.0 +13479,45,9.5,22,0.0 +13479,55,24,37,0.0 +13479,1,18,35,0.0 +13479,22,21,19,0.0 +13479,19,9.2,6,0.0 +13479,14,23.25,47,0.0 +13479,42,14,20,0.0 +13479,32,32,34,0.0 +13479,60,34,2,0.0 +13479,4,22,12,0.0 +13479,36,19,34,0.0 +13479,66,17,12,0.0 +13479,30,25.89,21,0.0 +13479,41,9.65,18,0.0 +13479,37,26,38,0.0 +13479,27,43.9,39,0.0 +13479,17,39,3,0.0 +13479,71,21.5,40,0.0 +13480,48,12.75,10,0.0 +13480,6,25,49,0.0 +13480,18,62.5,37,0.0 +13480,28,45.6,24,0.0 +13480,66,17,19,0.0 +13480,60,34,36,0.0 +13480,76,18,19,0.0 +13480,37,26,12,0.0 +13480,23,9,36,0.0 +13480,27,43.9,5,0.0 +13480,65,21.05,19,0.0 +13480,43,46,30,0.0 +13480,62,49.3,16,0.0 +13480,57,19.5,18,0.0 +13480,51,53,48,0.0 +13480,8,40,35,0.0 +13480,68,12.5,38,0.0 +13480,59,55,50,0.0 +13480,38,263.5,36,0.0 +13480,26,31.23,33,0.0 +13480,41,9.65,19,0.0 +13480,19,9.2,42,0.0 +13480,75,7.75,41,0.0 +13480,69,36,3,0.0 +13481,77,13,45,0.0 +13482,16,17.45,37,0.0 +13482,12,38,31,0.0 +13482,66,17,7,0.0 +13482,68,12.5,33,0.0 +13482,25,14,10,0.0 +13482,22,21,20,0.0 +13482,74,10,7,0.0 +13482,20,81,1,0.0 +13482,77,13,5,0.0 +13482,37,26,24,0.0 +13482,17,39,36,0.0 +13482,47,9.5,42,0.0 +13482,62,49.3,48,0.0 +13482,52,7,8,0.0 +13482,21,10,8,0.0 +13482,42,14,32,0.0 +13482,40,18.4,13,0.0 +13482,38,263.5,40,0.0 +13482,63,43.9,11,0.0 +13482,24,4.5,45,0.0 +13482,76,18,27,0.0 +13482,36,19,34,0.0 +13482,28,45.6,33,0.0 +13482,3,10,43,0.0 +13482,48,12.75,35,0.0 +13482,1,18,15,0.0 +13482,72,34.8,37,0.0 +13482,18,62.5,24,0.0 +13482,49,20,23,0.0 +13482,6,25,9,0.0 +13482,43,46,5,0.0 +13482,67,14,13,0.0 +13482,13,6,50,0.0 +13482,60,34,7,0.0 +13482,29,123.79,49,0.0 +13482,8,40,18,0.0 +13482,26,31.23,7,0.0 +13482,7,30,33,0.0 +13482,46,12,31,0.0 +13482,15,15.5,7,0.0 +13482,45,9.5,3,0.0 +13482,39,18,34,0.0 +13482,73,15,35,0.0 +13482,51,53,29,0.0 +13482,54,7.45,8,0.0 +13482,31,12.5,47,0.0 +13482,32,32,36,0.0 +13482,53,32.8,25,0.0 +13482,19,9.2,22,0.0 +13482,27,43.9,47,0.0 +13482,33,2.5,42,0.0 +13482,44,19.45,7,0.0 +13482,11,21,17,0.0 +13482,9,97,36,0.0 +13482,35,18,30,0.0 +13482,75,7.75,40,0.0 +13482,55,24,34,0.0 +13482,23,9,36,0.0 +13482,64,33.25,1,0.0 +13482,30,25.89,16,0.0 +13482,65,21.05,23,0.0 +13482,58,13.25,39,0.0 +13482,34,14,49,0.0 +13482,56,38,37,0.0 +13482,10,31,21,0.0 +13482,14,23.25,39,0.0 +13482,61,28.5,41,0.0 +13482,69,36,50,0.0 +13482,4,22,46,0.0 +13482,70,15,37,0.0 +13482,2,19,20,0.0 +13482,71,21.5,41,0.0 +13483,61,28.5,1,0.0 +13483,26,31.23,46,0.0 +13483,72,34.8,20,0.0 +13483,1,18,8,0.0 +13483,66,17,50,0.0 +13483,19,9.2,31,0.0 +13483,35,18,5,0.0 +13483,71,21.5,8,0.0 +13483,10,31,12,0.0 +13483,50,16.25,40,0.0 +13483,20,81,5,0.0 +13483,67,14,49,0.0 +13483,74,10,24,0.0 +13483,17,39,16,0.0 +13483,32,32,18,0.0 +13483,65,21.05,25,0.0 +13483,22,21,26,0.0 +13483,8,40,24,0.0 +13483,54,7.45,4,0.0 +13483,62,49.3,10,0.0 +13484,72,34.8,44,0.0 +13484,20,81,35,0.0 +13484,47,9.5,33,0.0 +13484,42,14,4,0.0 +13484,37,26,13,0.0 +13484,43,46,47,0.0 +13484,28,45.6,27,0.0 +13484,9,97,47,0.0 +13484,45,9.5,16,0.0 +13484,57,19.5,6,0.0 +13484,30,25.89,6,0.0 +13484,70,15,7,0.0 +13484,34,14,8,0.0 +13484,7,30,21,0.0 +13484,22,21,47,0.0 +13484,67,14,45,0.0 +13484,24,4.5,23,0.0 +13484,76,18,31,0.0 +13484,32,32,41,0.0 +13484,10,31,16,0.0 +13484,5,21.35,20,0.0 +13484,65,21.05,1,0.0 +13484,54,7.45,19,0.0 +13484,38,263.5,9,0.0 +13484,46,12,37,0.0 +13484,69,36,27,0.0 +13484,12,38,22,0.0 +13484,52,7,10,0.0 +13484,8,40,50,0.0 +13484,51,53,46,0.0 +13484,39,18,28,0.0 +13484,48,12.75,30,0.0 +13484,3,10,26,0.0 +13484,13,6,17,0.0 +13484,2,19,22,0.0 +13484,53,32.8,49,0.0 +13484,41,9.65,7,0.0 +13484,68,12.5,4,0.0 +13484,6,25,31,0.0 +13484,21,10,21,0.0 +13484,23,9,24,0.0 +13484,31,12.5,26,0.0 +13484,29,123.79,30,0.0 +13484,61,28.5,31,0.0 +13484,63,43.9,8,0.0 +13484,11,21,43,0.0 +13484,26,31.23,50,0.0 +13485,48,12.75,45,0.0 +13485,64,33.25,24,0.0 +13485,17,39,9,0.0 +13485,46,12,18,0.0 +13485,36,19,3,0.0 +13485,68,12.5,27,0.0 +13485,31,12.5,4,0.0 +13485,9,97,1,0.0 +13485,40,18.4,47,0.0 +13485,44,19.45,22,0.0 +13485,26,31.23,27,0.0 +13485,35,18,10,0.0 +13485,65,21.05,37,0.0 +13485,25,14,42,0.0 +13485,12,38,46,0.0 +13485,43,46,16,0.0 +13485,45,9.5,10,0.0 +13485,15,15.5,10,0.0 +13485,11,21,7,0.0 +13485,42,14,10,0.0 +13485,2,19,42,0.0 +13485,58,13.25,18,0.0 +13485,61,28.5,12,0.0 +13485,34,14,11,0.0 +13485,63,43.9,42,0.0 +13485,47,9.5,48,0.0 +13485,6,25,7,0.0 +13485,21,10,23,0.0 +13485,18,62.5,20,0.0 +13485,39,18,1,0.0 +13485,41,9.65,25,0.0 +13485,19,9.2,42,0.0 +13485,22,21,50,0.0 +13485,30,25.89,14,0.0 +13485,1,18,33,0.0 +13485,10,31,17,0.0 +13485,37,26,10,0.0 +13485,69,36,37,0.0 +13485,5,21.35,39,0.0 +13485,52,7,49,0.0 +13485,32,32,3,0.0 +13485,8,40,14,0.0 +13485,4,22,44,0.0 +13485,13,6,10,0.0 +13485,74,10,23,0.0 +13485,3,10,17,0.0 +13485,29,123.79,35,0.0 +13485,49,20,9,0.0 +13485,50,16.25,15,0.0 +13485,53,32.8,30,0.0 +13485,7,30,11,0.0 +13485,67,14,7,0.0 +13485,33,2.5,1,0.0 +13485,54,7.45,16,0.0 +13485,57,19.5,5,0.0 +13485,60,34,9,0.0 +13485,23,9,28,0.0 +13485,38,263.5,21,0.0 +13485,56,38,37,0.0 +13485,77,13,15,0.0 +13485,72,34.8,34,0.0 +13485,24,4.5,7,0.0 +13485,75,7.75,46,0.0 +13485,27,43.9,7,0.0 +13485,59,55,40,0.0 +13486,65,21.05,45,0.0 +13486,42,14,10,0.0 +13486,55,24,3,0.0 +13486,73,15,34,0.0 +13486,59,55,1,0.0 +13486,63,43.9,41,0.0 +13486,67,14,23,0.0 +13486,32,32,23,0.0 +13486,31,12.5,43,0.0 +13486,44,19.45,31,0.0 +13486,48,12.75,9,0.0 +13486,2,19,48,0.0 +13486,33,2.5,41,0.0 +13486,75,7.75,15,0.0 +13486,20,81,46,0.0 +13486,46,12,16,0.0 +13486,30,25.89,12,0.0 +13486,8,40,40,0.0 +13486,4,22,3,0.0 +13486,70,15,2,0.0 +13486,6,25,12,0.0 +13486,41,9.65,41,0.0 +13486,69,36,18,0.0 +13486,22,21,47,0.0 +13486,40,18.4,7,0.0 +13486,60,34,18,0.0 +13486,68,12.5,26,0.0 +13486,24,4.5,49,0.0 +13486,51,53,27,0.0 +13486,66,17,38,0.0 +13486,53,32.8,33,0.0 +13486,14,23.25,48,0.0 +13486,19,9.2,13,0.0 +13486,37,26,26,0.0 +13486,26,31.23,2,0.0 +13486,72,34.8,21,0.0 +13486,47,9.5,6,0.0 +13486,3,10,25,0.0 +13486,76,18,26,0.0 +13486,54,7.45,1,0.0 +13486,71,21.5,29,0.0 +13486,34,14,13,0.0 +13486,50,16.25,25,0.0 +13486,17,39,7,0.0 +13486,25,14,19,0.0 +13486,35,18,16,0.0 +13486,15,15.5,15,0.0 +13486,13,6,43,0.0 +13486,49,20,48,0.0 +13486,58,13.25,46,0.0 +13486,56,38,28,0.0 +13486,57,19.5,13,0.0 +13486,27,43.9,38,0.0 +13486,7,30,14,0.0 +13487,20,81,36,0.0 +13487,35,18,10,0.0 +13487,77,13,35,0.0 +13487,43,46,33,0.0 +13487,60,34,43,0.0 +13487,1,18,31,0.0 +13487,6,25,31,0.0 +13487,47,9.5,21,0.0 +13487,63,43.9,8,0.0 +13487,73,15,49,0.0 +13487,52,7,10,0.0 +13487,11,21,4,0.0 +13487,29,123.79,46,0.0 +13487,28,45.6,16,0.0 +13487,25,14,41,0.0 +13487,38,263.5,31,0.0 +13487,69,36,14,0.0 +13488,77,13,34,0.0 +13489,1,18,21,0.0 +13489,28,45.6,32,0.0 +13489,62,49.3,25,0.0 +13489,6,25,11,0.0 +13489,24,4.5,40,0.0 +13489,46,12,28,0.0 +13489,32,32,20,0.0 +13489,44,19.45,17,0.0 +13489,4,22,35,0.0 +13489,69,36,5,0.0 +13489,47,9.5,4,0.0 +13489,54,7.45,39,0.0 +13489,27,43.9,33,0.0 +13489,16,17.45,16,0.0 +13489,41,9.65,43,0.0 +13489,75,7.75,4,0.0 +13489,12,38,25,0.0 +13489,21,10,30,0.0 +13489,2,19,23,0.0 +13489,76,18,44,0.0 +13489,10,31,31,0.0 +13489,77,13,15,0.0 +13489,26,31.23,19,0.0 +13489,35,18,4,0.0 +13489,42,14,25,0.0 +13489,7,30,32,0.0 +13489,18,62.5,25,0.0 +13489,60,34,4,0.0 +13489,11,21,39,0.0 +13489,73,15,18,0.0 +13489,64,33.25,38,0.0 +13489,53,32.8,3,0.0 +13489,65,21.05,11,0.0 +13489,52,7,21,0.0 +13489,43,46,43,0.0 +13489,22,21,17,0.0 +13489,59,55,12,0.0 +13489,14,23.25,39,0.0 +13489,37,26,45,0.0 +13489,55,24,42,0.0 +13489,8,40,34,0.0 +13489,29,123.79,47,0.0 +13489,71,21.5,14,0.0 +13489,36,19,29,0.0 +13489,66,17,44,0.0 +13489,57,19.5,18,0.0 +13489,33,2.5,30,0.0 +13489,9,97,27,0.0 +13489,34,14,46,0.0 +13489,74,10,35,0.0 +13489,63,43.9,45,0.0 +13489,72,34.8,31,0.0 +13489,38,263.5,26,0.0 +13489,15,15.5,18,0.0 +13489,49,20,37,0.0 +13489,61,28.5,19,0.0 +13489,67,14,8,0.0 +13489,20,81,18,0.0 +13489,13,6,38,0.0 +13489,45,9.5,44,0.0 +13489,70,15,4,0.0 +13489,19,9.2,15,0.0 +13489,5,21.35,41,0.0 +13489,50,16.25,49,0.0 +13489,17,39,10,0.0 +13490,26,31.23,5,0.0 +13491,40,18.4,45,0.0 +13491,46,12,37,0.0 +13491,38,263.5,44,0.0 +13491,36,19,28,0.0 +13491,69,36,45,0.0 +13491,67,14,8,0.0 +13491,28,45.6,15,0.0 +13491,33,2.5,18,0.0 +13491,29,123.79,20,0.0 +13491,19,9.2,43,0.0 +13491,61,28.5,48,0.0 +13491,52,7,26,0.0 +13491,63,43.9,27,0.0 +13491,53,32.8,10,0.0 +13491,21,10,17,0.0 +13491,47,9.5,24,0.0 +13491,1,18,21,0.0 +13491,39,18,21,0.0 +13491,5,21.35,31,0.0 +13491,9,97,41,0.0 +13491,13,6,30,0.0 +13491,59,55,42,0.0 +13491,35,18,36,0.0 +13491,12,38,46,0.0 +13491,44,19.45,30,0.0 +13491,66,17,22,0.0 +13491,77,13,5,0.0 +13491,15,15.5,37,0.0 +13491,54,7.45,10,0.0 +13491,62,49.3,44,0.0 +13491,27,43.9,43,0.0 +13491,48,12.75,45,0.0 +13491,25,14,11,0.0 +13491,45,9.5,37,0.0 +13491,11,21,30,0.0 +13491,71,21.5,42,0.0 +13491,17,39,43,0.0 +13491,64,33.25,17,0.0 +13491,32,32,22,0.0 +13491,41,9.65,27,0.0 +13491,76,18,20,0.0 +13491,56,38,43,0.0 +13491,49,20,38,0.0 +13491,72,34.8,33,0.0 +13491,4,22,12,0.0 +13491,18,62.5,34,0.0 +13491,22,21,21,0.0 +13491,57,19.5,1,0.0 +13491,16,17.45,39,0.0 +13491,14,23.25,14,0.0 +13491,58,13.25,21,0.0 +13491,8,40,36,0.0 +13491,37,26,25,0.0 +13491,60,34,49,0.0 +13491,70,15,13,0.0 +13491,26,31.23,6,0.0 +13491,42,14,29,0.0 +13491,74,10,10,0.0 +13491,51,53,28,0.0 +13491,23,9,17,0.0 +13491,30,25.89,19,0.0 +13491,73,15,22,0.0 +13491,50,16.25,35,0.0 +13491,31,12.5,28,0.0 +13491,6,25,28,0.0 +13491,75,7.75,10,0.0 +13491,43,46,11,0.0 +13491,34,14,48,0.0 +13492,76,18,44,0.0 +13492,69,36,33,0.0 +13492,37,26,32,0.0 +13492,21,10,50,0.0 +13492,66,17,22,0.0 +13492,2,19,37,0.0 +13492,39,18,10,0.0 +13492,77,13,11,0.0 +13492,40,18.4,49,0.0 +13492,57,19.5,13,0.0 +13492,72,34.8,4,0.0 +13492,32,32,18,0.0 +13492,64,33.25,4,0.0 +13492,52,7,13,0.0 +13492,51,53,48,0.0 +13492,56,38,15,0.0 +13492,25,14,26,0.0 +13492,6,25,8,0.0 +13492,45,9.5,3,0.0 +13492,8,40,32,0.0 +13492,30,25.89,38,0.0 +13492,67,14,23,0.0 +13492,26,31.23,38,0.0 +13492,59,55,26,0.0 +13492,62,49.3,37,0.0 +13492,61,28.5,3,0.0 +13492,44,19.45,13,0.0 +13492,33,2.5,1,0.0 +13492,58,13.25,44,0.0 +13492,68,12.5,23,0.0 +13492,71,21.5,3,0.0 +13492,49,20,50,0.0 +13492,14,23.25,15,0.0 +13492,23,9,47,0.0 +13492,13,6,5,0.0 +13492,18,62.5,27,0.0 +13492,28,45.6,24,0.0 +13492,31,12.5,5,0.0 +13492,70,15,38,0.0 +13492,41,9.65,32,0.0 +13492,27,43.9,42,0.0 +13492,1,18,47,0.0 +13493,55,24,47,0.0 +13493,66,17,18,0.0 +13493,6,25,3,0.0 +13493,23,9,10,0.0 +13493,70,15,5,0.0 +13493,44,19.45,25,0.0 +13493,49,20,26,0.0 +13493,25,14,35,0.0 +13493,35,18,44,0.0 +13493,39,18,19,0.0 +13493,59,55,3,0.0 +13493,34,14,34,0.0 +13493,3,10,29,0.0 +13493,22,21,43,0.0 +13493,53,32.8,9,0.0 +13493,18,62.5,28,0.0 +13493,51,53,48,0.0 +13493,71,21.5,20,0.0 +13493,24,4.5,40,0.0 +13493,27,43.9,28,0.0 +13493,10,31,13,0.0 +13493,11,21,17,0.0 +13493,30,25.89,23,0.0 +13493,2,19,49,0.0 +13493,32,32,13,0.0 +13493,77,13,10,0.0 +13493,26,31.23,18,0.0 +13493,13,6,33,0.0 +13493,61,28.5,1,0.0 +13493,67,14,39,0.0 +13493,8,40,40,0.0 +13493,20,81,28,0.0 +13493,5,21.35,14,0.0 +13493,50,16.25,32,0.0 +13493,48,12.75,35,0.0 +13493,69,36,49,0.0 +13493,62,49.3,50,0.0 +13493,65,21.05,27,0.0 +13493,64,33.25,43,0.0 +13493,76,18,7,0.0 +13493,45,9.5,49,0.0 +13493,72,34.8,39,0.0 +13493,68,12.5,32,0.0 +13493,12,38,14,0.0 +13493,29,123.79,6,0.0 +13493,73,15,18,0.0 +13493,9,97,6,0.0 +13493,47,9.5,26,0.0 +13493,15,15.5,45,0.0 +13493,52,7,21,0.0 +13493,19,9.2,49,0.0 +13493,28,45.6,6,0.0 +13493,31,12.5,35,0.0 +13493,63,43.9,13,0.0 +13493,36,19,18,0.0 +13493,37,26,45,0.0 +13493,58,13.25,43,0.0 +13493,4,22,32,0.0 +13493,41,9.65,20,0.0 +13493,40,18.4,9,0.0 +13493,16,17.45,35,0.0 +13493,46,12,13,0.0 +13493,21,10,42,0.0 +13493,75,7.75,10,0.0 +13493,17,39,26,0.0 +13493,38,263.5,8,0.0 +13493,7,30,42,0.0 +13493,33,2.5,8,0.0 +13494,63,43.9,30,0.0 +13494,30,25.89,39,0.0 +13494,28,45.6,39,0.0 +13494,46,12,24,0.0 +13494,16,17.45,12,0.0 +13494,62,49.3,16,0.0 +13495,59,55,7,0.0 +13495,50,16.25,34,0.0 +13495,22,21,26,0.0 +13495,17,39,8,0.0 +13495,72,34.8,50,0.0 +13495,69,36,42,0.0 +13495,52,7,17,0.0 +13495,64,33.25,6,0.0 +13495,49,20,11,0.0 +13495,12,38,34,0.0 +13495,7,30,11,0.0 +13495,44,19.45,3,0.0 +13495,70,15,31,0.0 +13495,20,81,14,0.0 +13495,21,10,27,0.0 +13495,43,46,34,0.0 +13495,66,17,16,0.0 +13495,25,14,21,0.0 +13495,10,31,3,0.0 +13495,39,18,2,0.0 +13495,55,24,16,0.0 +13496,30,25.89,34,0.0 +13496,61,28.5,50,0.0 +13496,22,21,13,0.0 +13496,54,7.45,37,0.0 +13496,31,12.5,28,0.0 +13496,33,2.5,21,0.0 +13496,8,40,4,0.0 +13496,45,9.5,49,0.0 +13496,62,49.3,39,0.0 +13496,67,14,27,0.0 +13496,75,7.75,5,0.0 +13496,57,19.5,8,0.0 +13496,20,81,9,0.0 +13496,55,24,8,0.0 +13496,52,7,9,0.0 +13496,36,19,22,0.0 +13496,58,13.25,13,0.0 +13496,7,30,43,0.0 +13496,23,9,15,0.0 +13496,56,38,28,0.0 +13496,46,12,39,0.0 +13496,28,45.6,28,0.0 +13496,65,21.05,46,0.0 +13496,40,18.4,4,0.0 +13496,6,25,25,0.0 +13496,1,18,33,0.0 +13496,12,38,3,0.0 +13496,44,19.45,7,0.0 +13496,72,34.8,5,0.0 +13496,38,263.5,24,0.0 +13496,13,6,36,0.0 +13496,10,31,25,0.0 +13496,73,15,7,0.0 +13496,76,18,37,0.0 +13496,42,14,24,0.0 +13496,19,9.2,18,0.0 +13496,47,9.5,49,0.0 +13496,27,43.9,47,0.0 +13496,14,23.25,33,0.0 +13496,50,16.25,5,0.0 +13496,74,10,11,0.0 +13496,48,12.75,13,0.0 +13496,53,32.8,36,0.0 +13496,16,17.45,35,0.0 +13496,59,55,33,0.0 +13496,18,62.5,31,0.0 +13496,2,19,5,0.0 +13496,68,12.5,32,0.0 +13496,26,31.23,46,0.0 +13496,71,21.5,22,0.0 +13496,41,9.65,31,0.0 +13496,34,14,42,0.0 +13496,60,34,42,0.0 +13496,3,10,34,0.0 +13496,11,21,9,0.0 +13496,15,15.5,2,0.0 +13496,63,43.9,23,0.0 +13496,49,20,50,0.0 +13496,35,18,41,0.0 +13496,21,10,24,0.0 +13496,37,26,40,0.0 +13496,70,15,27,0.0 +13496,17,39,2,0.0 +13496,66,17,25,0.0 +13496,29,123.79,22,0.0 +13496,5,21.35,42,0.0 +13496,43,46,17,0.0 +13496,69,36,17,0.0 +13497,62,49.3,1,0.0 +13497,27,43.9,28,0.0 +13497,51,53,13,0.0 +13497,11,21,12,0.0 +13497,24,4.5,19,0.0 +13497,60,34,33,0.0 +13497,71,21.5,36,0.0 +13497,32,32,33,0.0 +13497,33,2.5,47,0.0 +13497,56,38,20,0.0 +13497,66,17,46,0.0 +13497,76,18,19,0.0 +13497,3,10,10,0.0 +13497,44,19.45,42,0.0 +13497,64,33.25,19,0.0 +13497,15,15.5,4,0.0 +13497,57,19.5,6,0.0 +13497,50,16.25,5,0.0 +13497,53,32.8,30,0.0 +13497,8,40,34,0.0 +13497,20,81,9,0.0 +13497,58,13.25,17,0.0 +13497,48,12.75,12,0.0 +13497,6,25,8,0.0 +13497,36,19,34,0.0 +13497,54,7.45,24,0.0 +13497,34,14,46,0.0 +13497,42,14,36,0.0 +13497,65,21.05,16,0.0 +13497,46,12,45,0.0 +13497,14,23.25,19,0.0 +13497,68,12.5,26,0.0 +13497,72,34.8,6,0.0 +13497,22,21,35,0.0 +13497,30,25.89,15,0.0 +13497,31,12.5,14,0.0 +13497,4,22,17,0.0 +13497,59,55,26,0.0 +13497,16,17.45,37,0.0 +13497,5,21.35,42,0.0 +13497,63,43.9,42,0.0 +13497,29,123.79,40,0.0 +13497,2,19,27,0.0 +13497,26,31.23,4,0.0 +13497,77,13,36,0.0 +13497,18,62.5,30,0.0 +13497,40,18.4,10,0.0 +13497,41,9.65,27,0.0 +13497,37,26,24,0.0 +13497,9,97,7,0.0 +13497,13,6,40,0.0 +13497,1,18,3,0.0 +13497,25,14,2,0.0 +13497,49,20,46,0.0 +13497,47,9.5,48,0.0 +13497,61,28.5,33,0.0 +13497,67,14,26,0.0 +13497,21,10,21,0.0 +13497,43,46,32,0.0 +13497,23,9,38,0.0 +13497,55,24,35,0.0 +13497,70,15,32,0.0 +13498,12,38,48,0.0 +13498,60,34,36,0.0 +13498,40,18.4,27,0.0 +13498,35,18,8,0.0 +13498,68,12.5,43,0.0 +13498,41,9.65,46,0.0 +13498,2,19,42,0.0 +13498,43,46,27,0.0 +13498,53,32.8,24,0.0 +13498,23,9,17,0.0 +13498,51,53,45,0.0 +13498,30,25.89,5,0.0 +13498,57,19.5,5,0.0 +13498,75,7.75,36,0.0 +13498,25,14,2,0.0 +13498,64,33.25,5,0.0 +13498,13,6,47,0.0 +13498,48,12.75,45,0.0 +13498,50,16.25,50,0.0 +13498,26,31.23,4,0.0 +13498,16,17.45,36,0.0 +13498,4,22,11,0.0 +13498,72,34.8,13,0.0 +13498,61,28.5,2,0.0 +13498,71,21.5,4,0.0 +13498,18,62.5,46,0.0 +13498,74,10,12,0.0 +13498,67,14,12,0.0 +13498,15,15.5,49,0.0 +13498,73,15,25,0.0 +13498,1,18,38,0.0 +13498,7,30,49,0.0 +13498,22,21,46,0.0 +13498,32,32,37,0.0 +13498,27,43.9,4,0.0 +13498,5,21.35,15,0.0 +13498,58,13.25,12,0.0 +13498,63,43.9,20,0.0 +13498,55,24,7,0.0 +13498,65,21.05,1,0.0 +13498,31,12.5,43,0.0 +13498,10,31,6,0.0 +13498,17,39,40,0.0 +13499,65,21.05,38,0.0 +13499,21,10,18,0.0 +13499,39,18,34,0.0 +13499,27,43.9,5,0.0 +13499,23,9,32,0.0 +13499,48,12.75,5,0.0 +13499,4,22,24,0.0 +13499,37,26,12,0.0 +13499,32,32,23,0.0 +13499,3,10,38,0.0 +13499,49,20,36,0.0 +13499,12,38,3,0.0 +13499,46,12,10,0.0 +13499,76,18,16,0.0 +13499,11,21,50,0.0 +13499,75,7.75,9,0.0 +13499,6,25,37,0.0 +13499,56,38,9,0.0 +13499,28,45.6,20,0.0 +13499,8,40,11,0.0 +13499,54,7.45,19,0.0 +13499,52,7,33,0.0 +13499,14,23.25,45,0.0 +13499,34,14,15,0.0 +13499,1,18,42,0.0 +13499,73,15,6,0.0 +13499,26,31.23,36,0.0 +13499,57,19.5,42,0.0 +13499,33,2.5,47,0.0 +13499,53,32.8,22,0.0 +13499,63,43.9,18,0.0 +13499,62,49.3,50,0.0 +13499,41,9.65,42,0.0 +13500,35,18,50,0.0 +13500,15,15.5,18,0.0 +13500,9,97,39,0.0 +13500,63,43.9,49,0.0 +13500,57,19.5,25,0.0 +13500,19,9.2,23,0.0 +13500,76,18,11,0.0 +13500,5,21.35,26,0.0 +13500,54,7.45,42,0.0 +13500,36,19,2,0.0 +13500,59,55,40,0.0 +13500,16,17.45,14,0.0 +13500,33,2.5,29,0.0 +13500,75,7.75,28,0.0 +13500,69,36,1,0.0 +13500,65,21.05,4,0.0 +13500,10,31,22,0.0 +13500,53,32.8,3,0.0 +13500,24,4.5,30,0.0 +13500,26,31.23,48,0.0 +13500,12,38,17,0.0 +13500,30,25.89,6,0.0 +13501,70,15,36,0.0 +13501,67,14,21,0.0 +13501,22,21,4,0.0 +13501,64,33.25,25,0.0 +13501,1,18,18,0.0 +13501,35,18,12,0.0 +13501,62,49.3,2,0.0 +13501,33,2.5,44,0.0 +13501,68,12.5,27,0.0 +13501,55,24,8,0.0 +13501,28,45.6,11,0.0 +13501,74,10,11,0.0 +13501,27,43.9,48,0.0 +13501,23,9,34,0.0 +13501,7,30,12,0.0 +13501,65,21.05,42,0.0 +13501,69,36,11,0.0 +13501,26,31.23,22,0.0 +13501,58,13.25,25,0.0 +13501,2,19,4,0.0 +13502,72,34.8,45,0.0 +13502,70,15,45,0.0 +13502,34,14,7,0.0 +13502,55,24,2,0.0 +13502,59,55,6,0.0 +13502,73,15,8,0.0 +13502,1,18,37,0.0 +13502,76,18,38,0.0 +13502,32,32,26,0.0 +13502,27,43.9,40,0.0 +13502,20,81,46,0.0 +13502,45,9.5,11,0.0 +13502,21,10,18,0.0 +13502,2,19,50,0.0 +13502,41,9.65,28,0.0 +13502,33,2.5,4,0.0 +13502,29,123.79,42,0.0 +13502,11,21,37,0.0 +13502,25,14,12,0.0 +13502,53,32.8,38,0.0 +13502,54,7.45,37,0.0 +13502,12,38,12,0.0 +13502,68,12.5,47,0.0 +13502,46,12,44,0.0 +13502,56,38,14,0.0 +13502,30,25.89,44,0.0 +13502,60,34,10,0.0 +13502,19,9.2,40,0.0 +13502,51,53,44,0.0 +13502,31,12.5,4,0.0 +13502,44,19.45,1,0.0 +13502,10,31,43,0.0 +13502,37,26,40,0.0 +13502,35,18,33,0.0 +13502,77,13,48,0.0 +13502,23,9,25,0.0 +13502,28,45.6,1,0.0 +13502,17,39,8,0.0 +13502,67,14,40,0.0 +13502,43,46,10,0.0 +13502,65,21.05,37,0.0 +13502,71,21.5,39,0.0 +13502,18,62.5,47,0.0 +13502,75,7.75,2,0.0 +13502,13,6,41,0.0 +13502,26,31.23,28,0.0 +13502,9,97,34,0.0 +13502,6,25,24,0.0 +13502,8,40,38,0.0 +13502,42,14,19,0.0 +13502,58,13.25,20,0.0 +13502,4,22,30,0.0 +13502,63,43.9,36,0.0 +13502,74,10,43,0.0 +13502,22,21,17,0.0 +13502,15,15.5,37,0.0 +13502,3,10,23,0.0 +13502,38,263.5,42,0.0 +13502,36,19,7,0.0 +13502,14,23.25,42,0.0 +13502,66,17,47,0.0 +13502,5,21.35,25,0.0 +13502,47,9.5,35,0.0 +13502,57,19.5,13,0.0 +13502,49,20,22,0.0 +13502,50,16.25,44,0.0 +13502,61,28.5,21,0.0 +13502,7,30,8,0.0 +13502,64,33.25,39,0.0 +13502,39,18,5,0.0 +13502,48,12.75,7,0.0 +13502,24,4.5,9,0.0 +13502,52,7,4,0.0 +13502,69,36,17,0.0 +13502,62,49.3,42,0.0 +13503,2,19,21,0.0 +13503,6,25,41,0.0 +13503,53,32.8,31,0.0 +13503,55,24,18,0.0 +13503,31,12.5,32,0.0 +13503,75,7.75,9,0.0 +13503,18,62.5,37,0.0 +13503,50,16.25,12,0.0 +13503,43,46,1,0.0 +13503,39,18,9,0.0 +13503,47,9.5,35,0.0 +13503,32,32,35,0.0 +13503,17,39,14,0.0 +13503,48,12.75,26,0.0 +13503,14,23.25,11,0.0 +13503,73,15,18,0.0 +13503,41,9.65,9,0.0 +13503,70,15,11,0.0 +13503,23,9,8,0.0 +13503,22,21,49,0.0 +13503,38,263.5,19,0.0 +13503,1,18,17,0.0 +13503,68,12.5,17,0.0 +13503,60,34,41,0.0 +13503,30,25.89,9,0.0 +13503,69,36,10,0.0 +13503,24,4.5,12,0.0 +13503,9,97,12,0.0 +13503,74,10,41,0.0 +13503,19,9.2,29,0.0 +13503,35,18,20,0.0 +13503,37,26,31,0.0 +13503,12,38,28,0.0 +13503,29,123.79,38,0.0 +13503,61,28.5,1,0.0 +13503,8,40,17,0.0 +13503,45,9.5,19,0.0 +13503,26,31.23,20,0.0 +13503,33,2.5,1,0.0 +13504,14,23.25,33,0.0 +13504,16,17.45,40,0.0 +13504,45,9.5,6,0.0 +13504,33,2.5,21,0.0 +13504,2,19,9,0.0 +13504,40,18.4,47,0.0 +13505,41,9.65,19,0.0 +13505,42,14,35,0.0 +13505,72,34.8,36,0.0 +13505,57,19.5,49,0.0 +13505,62,49.3,47,0.0 +13505,12,38,48,0.0 +13505,59,55,10,0.0 +13505,6,25,4,0.0 +13505,76,18,23,0.0 +13505,50,16.25,22,0.0 +13505,22,21,26,0.0 +13505,31,12.5,36,0.0 +13505,35,18,19,0.0 +13505,20,81,33,0.0 +13505,47,9.5,39,0.0 +13505,53,32.8,6,0.0 +13505,67,14,23,0.0 +13505,52,7,37,0.0 +13505,44,19.45,23,0.0 +13505,5,21.35,2,0.0 +13505,58,13.25,4,0.0 +13505,39,18,5,0.0 +13505,70,15,20,0.0 +13505,77,13,36,0.0 +13505,10,31,20,0.0 +13505,49,20,33,0.0 +13505,14,23.25,13,0.0 +13505,69,36,45,0.0 +13505,19,9.2,22,0.0 +13505,46,12,35,0.0 +13505,38,263.5,30,0.0 +13505,25,14,46,0.0 +13505,43,46,30,0.0 +13505,24,4.5,31,0.0 +13505,28,45.6,26,0.0 +13505,11,21,47,0.0 +13505,32,32,13,0.0 +13505,40,18.4,27,0.0 +13505,74,10,34,0.0 +13505,17,39,44,0.0 +13505,18,62.5,42,0.0 +13505,21,10,36,0.0 +13505,3,10,15,0.0 +13505,54,7.45,5,0.0 +13505,60,34,46,0.0 +13505,1,18,35,0.0 +13505,75,7.75,30,0.0 +13505,26,31.23,40,0.0 +13505,30,25.89,36,0.0 +13505,48,12.75,43,0.0 +13505,51,53,10,0.0 +13505,27,43.9,28,0.0 +13505,56,38,33,0.0 +13505,34,14,7,0.0 +13505,55,24,42,0.0 +13505,13,6,8,0.0 +13505,23,9,19,0.0 +13505,73,15,33,0.0 +13505,71,21.5,4,0.0 +13505,2,19,20,0.0 +13505,66,17,29,0.0 +13505,33,2.5,9,0.0 +13505,36,19,4,0.0 +13505,8,40,37,0.0 +13505,16,17.45,33,0.0 +13506,75,7.75,42,0.0 +13507,72,34.8,26,0.0 +13507,35,18,11,0.0 +13508,69,36,8,0.0 +13508,43,46,8,0.0 +13508,4,22,4,0.0 +13508,41,9.65,21,0.0 +13508,14,23.25,25,0.0 +13508,49,20,1,0.0 +13508,36,19,28,0.0 +13508,21,10,20,0.0 +13508,55,24,22,0.0 +13508,8,40,26,0.0 +13508,74,10,32,0.0 +13508,58,13.25,28,0.0 +13508,33,2.5,8,0.0 +13508,28,45.6,24,0.0 +13508,42,14,29,0.0 +13508,27,43.9,11,0.0 +13508,56,38,33,0.0 +13508,47,9.5,1,0.0 +13508,39,18,42,0.0 +13508,68,12.5,14,0.0 +13508,18,62.5,26,0.0 +13508,7,30,23,0.0 +13508,63,43.9,29,0.0 +13508,45,9.5,50,0.0 +13508,70,15,6,0.0 +13508,10,31,34,0.0 +13508,50,16.25,30,0.0 +13508,30,25.89,37,0.0 +13508,32,32,39,0.0 +13508,1,18,3,0.0 +13508,38,263.5,26,0.0 +13508,13,6,12,0.0 +13508,11,21,44,0.0 +13508,65,21.05,22,0.0 +13508,19,9.2,24,0.0 +13508,62,49.3,27,0.0 +13508,34,14,32,0.0 +13508,6,25,20,0.0 +13508,77,13,3,0.0 +13508,40,18.4,10,0.0 +13508,66,17,10,0.0 +13508,76,18,23,0.0 +13508,35,18,43,0.0 +13508,57,19.5,26,0.0 +13508,64,33.25,50,0.0 +13509,4,22,26,0.0 +13509,31,12.5,12,0.0 +13509,71,21.5,25,0.0 +13509,37,26,44,0.0 +13509,7,30,16,0.0 +13509,13,6,3,0.0 +13509,44,19.45,19,0.0 +13509,36,19,49,0.0 +13509,22,21,15,0.0 +13509,53,32.8,44,0.0 +13509,40,18.4,46,0.0 +13509,65,21.05,5,0.0 +13509,60,34,2,0.0 +13509,25,14,27,0.0 +13509,19,9.2,44,0.0 +13509,27,43.9,29,0.0 +13509,68,12.5,44,0.0 +13509,75,7.75,11,0.0 +13509,74,10,25,0.0 +13509,1,18,25,0.0 +13509,10,31,29,0.0 +13509,52,7,48,0.0 +13509,55,24,28,0.0 +13509,72,34.8,25,0.0 +13509,33,2.5,46,0.0 +13509,32,32,43,0.0 +13509,34,14,27,0.0 +13509,61,28.5,15,0.0 +13509,39,18,38,0.0 +13509,70,15,46,0.0 +13509,9,97,48,0.0 +13509,30,25.89,5,0.0 +13509,69,36,49,0.0 +13509,14,23.25,30,0.0 +13509,58,13.25,9,0.0 +13509,47,9.5,46,0.0 +13509,50,16.25,41,0.0 +13509,6,25,25,0.0 +13509,42,14,2,0.0 +13509,43,46,27,0.0 +13509,51,53,21,0.0 +13509,41,9.65,48,0.0 +13509,18,62.5,33,0.0 +13509,54,7.45,30,0.0 +13509,11,21,49,0.0 +13509,21,10,4,0.0 +13509,49,20,45,0.0 +13509,38,263.5,29,0.0 +13509,29,123.79,24,0.0 +13509,3,10,8,0.0 +13509,59,55,28,0.0 +13509,76,18,39,0.0 +13509,24,4.5,15,0.0 +13509,23,9,19,0.0 +13510,55,24,39,0.0 +13510,65,21.05,27,0.0 +13510,44,19.45,24,0.0 +13510,3,10,1,0.0 +13510,29,123.79,11,0.0 +13510,69,36,24,0.0 +13510,43,46,29,0.0 +13511,1,18,47,0.0 +13511,59,55,25,0.0 +13511,50,16.25,34,0.0 +13511,73,15,8,0.0 +13511,72,34.8,21,0.0 +13511,22,21,29,0.0 +13512,57,19.5,9,0.0 +13512,26,31.23,28,0.0 +13512,32,32,20,0.0 +13512,61,28.5,47,0.0 +13512,13,6,28,0.0 +13512,12,38,13,0.0 +13512,49,20,38,0.0 +13512,23,9,29,0.0 +13512,44,19.45,38,0.0 +13512,67,14,27,0.0 +13512,52,7,32,0.0 +13512,63,43.9,46,0.0 +13512,14,23.25,42,0.0 +13512,35,18,29,0.0 +13512,9,97,19,0.0 +13512,4,22,42,0.0 +13512,3,10,7,0.0 +13512,22,21,38,0.0 +13512,77,13,1,0.0 +13512,53,32.8,4,0.0 +13512,45,9.5,25,0.0 +13512,11,21,46,0.0 +13512,68,12.5,46,0.0 +13512,71,21.5,30,0.0 +13512,37,26,9,0.0 +13512,50,16.25,12,0.0 +13512,18,62.5,4,0.0 +13512,75,7.75,4,0.0 +13512,28,45.6,18,0.0 +13512,42,14,41,0.0 +13512,66,17,5,0.0 +13512,55,24,38,0.0 +13512,51,53,2,0.0 +13512,59,55,27,0.0 +13512,10,31,29,0.0 +13512,76,18,44,0.0 +13512,65,21.05,36,0.0 +13512,54,7.45,33,0.0 +13512,29,123.79,44,0.0 +13512,15,15.5,33,0.0 +13512,46,12,17,0.0 +13512,38,263.5,13,0.0 +13512,43,46,39,0.0 +13512,47,9.5,20,0.0 +13512,30,25.89,35,0.0 +13512,20,81,8,0.0 +13512,48,12.75,25,0.0 +13512,8,40,18,0.0 +13512,5,21.35,49,0.0 +13512,56,38,19,0.0 +13512,62,49.3,18,0.0 +13512,1,18,29,0.0 +13512,73,15,29,0.0 +13512,64,33.25,43,0.0 +13512,34,14,16,0.0 +13512,60,34,47,0.0 +13512,58,13.25,39,0.0 +13512,31,12.5,47,0.0 +13512,16,17.45,32,0.0 +13512,72,34.8,30,0.0 +13512,2,19,35,0.0 +13512,40,18.4,27,0.0 +13512,41,9.65,18,0.0 +13512,27,43.9,49,0.0 +13512,25,14,22,0.0 +13512,19,9.2,48,0.0 +13512,74,10,6,0.0 +13512,70,15,29,0.0 +13512,7,30,47,0.0 +13512,17,39,36,0.0 +13512,21,10,40,0.0 +13512,69,36,22,0.0 +13512,33,2.5,45,0.0 +13512,6,25,25,0.0 +13512,39,18,14,0.0 +13512,36,19,18,0.0 +13512,24,4.5,12,0.0 +13513,26,31.23,35,0.0 +13513,5,21.35,31,0.0 +13513,56,38,9,0.0 +13513,20,81,47,0.0 +13513,19,9.2,44,0.0 +13513,1,18,29,0.0 +13513,36,19,24,0.0 +13513,12,38,35,0.0 +13513,68,12.5,12,0.0 +13513,34,14,27,0.0 +13513,33,2.5,39,0.0 +13513,55,24,46,0.0 +13513,22,21,38,0.0 +13513,53,32.8,1,0.0 +13513,30,25.89,49,0.0 +13513,52,7,23,0.0 +13513,65,21.05,18,0.0 +13513,37,26,47,0.0 +13513,66,17,16,0.0 +13513,44,19.45,28,0.0 +13513,58,13.25,41,0.0 +13513,29,123.79,32,0.0 +13513,13,6,30,0.0 +13513,73,15,19,0.0 +13513,76,18,25,0.0 +13514,74,10,10,0.0 +13514,45,9.5,6,0.0 +13514,34,14,46,0.0 +13514,75,7.75,22,0.0 +13514,60,34,24,0.0 +13514,21,10,44,0.0 +13514,59,55,31,0.0 +13514,4,22,7,0.0 +13514,22,21,4,0.0 +13514,62,49.3,18,0.0 +13514,38,263.5,48,0.0 +13514,48,12.75,8,0.0 +13514,36,19,32,0.0 +13514,25,14,1,0.0 +13514,9,97,38,0.0 +13514,64,33.25,7,0.0 +13514,57,19.5,46,0.0 +13514,42,14,9,0.0 +13514,61,28.5,17,0.0 +13514,20,81,7,0.0 +13514,11,21,22,0.0 +13514,24,4.5,12,0.0 +13514,7,30,31,0.0 +13514,8,40,40,0.0 +13514,50,16.25,11,0.0 +13514,53,32.8,24,0.0 +13514,72,34.8,44,0.0 +13514,13,6,24,0.0 +13514,67,14,8,0.0 +13514,47,9.5,21,0.0 +13514,55,24,48,0.0 +13514,37,26,2,0.0 +13515,32,32,11,0.0 +13515,7,30,39,0.0 +13515,5,21.35,30,0.0 +13515,17,39,29,0.0 +13515,25,14,49,0.0 +13515,9,97,44,0.0 +13515,10,31,25,0.0 +13515,76,18,35,0.0 +13515,33,2.5,48,0.0 +13515,59,55,4,0.0 +13515,61,28.5,4,0.0 +13515,16,17.45,48,0.0 +13515,13,6,20,0.0 +13515,14,23.25,4,0.0 +13515,34,14,29,0.0 +13515,56,38,18,0.0 +13515,41,9.65,42,0.0 +13515,72,34.8,48,0.0 +13515,35,18,7,0.0 +13515,18,62.5,27,0.0 +13515,77,13,2,0.0 +13515,66,17,10,0.0 +13515,51,53,38,0.0 +13515,68,12.5,23,0.0 +13515,22,21,39,0.0 +13515,20,81,50,0.0 +13515,73,15,7,0.0 +13515,1,18,37,0.0 +13516,35,18,33,0.0 +13516,70,15,39,0.0 +13516,6,25,44,0.0 +13516,24,4.5,10,0.0 +13516,71,21.5,13,0.0 +13516,34,14,44,0.0 +13516,13,6,4,0.0 +13516,28,45.6,18,0.0 +13516,11,21,3,0.0 +13516,40,18.4,14,0.0 +13516,19,9.2,36,0.0 +13516,57,19.5,46,0.0 +13516,29,123.79,17,0.0 +13516,14,23.25,50,0.0 +13516,52,7,49,0.0 +13516,15,15.5,26,0.0 +13516,7,30,35,0.0 +13516,10,31,44,0.0 +13516,45,9.5,28,0.0 +13516,59,55,33,0.0 +13516,69,36,42,0.0 +13516,61,28.5,48,0.0 +13516,27,43.9,50,0.0 +13516,63,43.9,20,0.0 +13516,33,2.5,32,0.0 +13516,12,38,28,0.0 +13516,72,34.8,21,0.0 +13516,56,38,1,0.0 +13516,39,18,49,0.0 +13516,16,17.45,8,0.0 +13516,9,97,44,0.0 +13516,41,9.65,45,0.0 +13516,64,33.25,24,0.0 +13516,67,14,26,0.0 +13516,77,13,9,0.0 +13516,54,7.45,18,0.0 +13516,47,9.5,36,0.0 +13516,8,40,35,0.0 +13516,4,22,26,0.0 +13516,5,21.35,30,0.0 +13516,36,19,18,0.0 +13516,53,32.8,33,0.0 +13516,20,81,28,0.0 +13516,50,16.25,44,0.0 +13516,1,18,13,0.0 +13516,60,34,39,0.0 +13516,49,20,30,0.0 +13516,30,25.89,3,0.0 +13516,66,17,31,0.0 +13516,42,14,47,0.0 +13516,48,12.75,1,0.0 +13516,75,7.75,22,0.0 +13516,43,46,20,0.0 +13516,51,53,16,0.0 +13516,62,49.3,41,0.0 +13516,73,15,2,0.0 +13516,37,26,22,0.0 +13516,76,18,1,0.0 +13516,68,12.5,5,0.0 +13516,65,21.05,21,0.0 +13516,58,13.25,14,0.0 +13516,38,263.5,46,0.0 +13517,31,12.5,21,0.0 +13517,58,13.25,24,0.0 +13517,5,21.35,10,0.0 +13517,43,46,4,0.0 +13517,41,9.65,15,0.0 +13517,74,10,47,0.0 +13517,63,43.9,35,0.0 +13517,47,9.5,31,0.0 +13517,53,32.8,5,0.0 +13517,56,38,17,0.0 +13517,15,15.5,40,0.0 +13517,77,13,33,0.0 +13517,29,123.79,43,0.0 +13517,37,26,38,0.0 +13517,36,19,15,0.0 +13517,65,21.05,9,0.0 +13517,6,25,40,0.0 +13517,59,55,30,0.0 +13517,32,32,20,0.0 +13517,42,14,22,0.0 +13517,46,12,23,0.0 +13517,71,21.5,41,0.0 +13517,17,39,18,0.0 +13517,49,20,23,0.0 +13517,51,53,44,0.0 +13517,33,2.5,8,0.0 +13517,18,62.5,49,0.0 +13517,16,17.45,39,0.0 +13517,61,28.5,43,0.0 +13517,23,9,6,0.0 +13517,38,263.5,15,0.0 +13517,2,19,32,0.0 +13517,76,18,4,0.0 +13517,1,18,45,0.0 +13517,35,18,42,0.0 +13517,7,30,1,0.0 +13517,52,7,6,0.0 +13517,62,49.3,12,0.0 +13517,21,10,33,0.0 +13517,3,10,17,0.0 +13517,50,16.25,9,0.0 +13517,25,14,2,0.0 +13517,34,14,39,0.0 +13517,64,33.25,38,0.0 +13517,67,14,10,0.0 +13517,66,17,32,0.0 +13517,44,19.45,2,0.0 +13517,40,18.4,26,0.0 +13517,73,15,31,0.0 +13517,13,6,35,0.0 +13517,39,18,23,0.0 +13517,57,19.5,14,0.0 +13517,11,21,48,0.0 +13517,22,21,7,0.0 +13517,8,40,18,0.0 +13517,20,81,38,0.0 +13517,68,12.5,7,0.0 +13517,12,38,8,0.0 +13517,75,7.75,49,0.0 +13517,70,15,32,0.0 +13517,19,9.2,15,0.0 +13517,30,25.89,10,0.0 +13517,4,22,28,0.0 +13517,14,23.25,44,0.0 +13517,9,97,17,0.0 +13517,54,7.45,6,0.0 +13517,60,34,33,0.0 +13517,48,12.75,33,0.0 +13517,45,9.5,32,0.0 +13517,28,45.6,23,0.0 +13517,55,24,40,0.0 +13517,10,31,45,0.0 +13517,24,4.5,46,0.0 +13517,72,34.8,16,0.0 +13517,26,31.23,28,0.0 +13517,69,36,2,0.0 +13517,27,43.9,20,0.0 +13518,51,53,6,0.0 +13518,9,97,43,0.0 +13518,20,81,17,0.0 +13518,61,28.5,35,0.0 +13518,29,123.79,46,0.0 +13518,41,9.65,39,0.0 +13518,40,18.4,48,0.0 +13518,55,24,30,0.0 +13518,7,30,44,0.0 +13518,30,25.89,16,0.0 +13518,65,21.05,36,0.0 +13518,6,25,28,0.0 +13518,31,12.5,35,0.0 +13518,39,18,3,0.0 +13518,64,33.25,43,0.0 +13518,72,34.8,16,0.0 +13518,38,263.5,25,0.0 +13518,62,49.3,9,0.0 +13518,50,16.25,18,0.0 +13518,21,10,1,0.0 +13518,70,15,22,0.0 +13518,68,12.5,10,0.0 +13518,10,31,37,0.0 +13518,67,14,31,0.0 +13518,16,17.45,23,0.0 +13518,60,34,6,0.0 +13518,56,38,39,0.0 +13518,8,40,30,0.0 +13518,44,19.45,9,0.0 +13518,76,18,1,0.0 +13518,63,43.9,9,0.0 +13518,2,19,27,0.0 +13518,52,7,32,0.0 +13518,34,14,26,0.0 +13518,45,9.5,22,0.0 +13518,73,15,6,0.0 +13518,71,21.5,23,0.0 +13518,4,22,3,0.0 +13518,69,36,47,0.0 +13518,5,21.35,34,0.0 +13518,43,46,21,0.0 +13518,74,10,29,0.0 +13518,32,32,28,0.0 +13518,46,12,32,0.0 +13518,22,21,1,0.0 +13518,66,17,50,0.0 +13518,12,38,49,0.0 +13518,24,4.5,1,0.0 +13518,27,43.9,13,0.0 +13518,3,10,1,0.0 +13518,28,45.6,7,0.0 +13518,23,9,50,0.0 +13518,48,12.75,11,0.0 +13518,47,9.5,48,0.0 +13518,15,15.5,11,0.0 +13518,75,7.75,27,0.0 +13518,53,32.8,49,0.0 +13518,37,26,17,0.0 +13518,59,55,1,0.0 +13518,57,19.5,21,0.0 +13518,77,13,22,0.0 +13518,36,19,38,0.0 +13518,13,6,27,0.0 +13518,58,13.25,5,0.0 +13518,1,18,15,0.0 +13518,14,23.25,32,0.0 +13518,35,18,33,0.0 +13518,25,14,44,0.0 +13518,33,2.5,39,0.0 +13518,26,31.23,34,0.0 +13518,49,20,42,0.0 +13518,17,39,4,0.0 +13519,12,38,5,0.0 +13519,71,21.5,2,0.0 +13519,4,22,19,0.0 +13519,57,19.5,23,0.0 +13519,58,13.25,39,0.0 +13519,69,36,41,0.0 +13519,59,55,35,0.0 +13519,55,24,41,0.0 +13519,23,9,29,0.0 +13519,50,16.25,40,0.0 +13519,42,14,1,0.0 +13519,70,15,47,0.0 +13519,21,10,11,0.0 +13519,20,81,47,0.0 +13519,10,31,40,0.0 +13519,15,15.5,50,0.0 +13519,1,18,9,0.0 +13519,48,12.75,6,0.0 +13519,66,17,20,0.0 +13519,41,9.65,14,0.0 +13519,40,18.4,1,0.0 +13519,61,28.5,35,0.0 +13519,2,19,3,0.0 +13519,74,10,29,0.0 +13519,16,17.45,7,0.0 +13519,56,38,36,0.0 +13519,14,23.25,14,0.0 +13519,64,33.25,45,0.0 +13519,18,62.5,9,0.0 +13519,8,40,49,0.0 +13519,38,263.5,31,0.0 +13519,7,30,9,0.0 +13519,52,7,20,0.0 +13519,77,13,24,0.0 +13519,63,43.9,9,0.0 +13519,73,15,9,0.0 +13519,34,14,25,0.0 +13519,68,12.5,2,0.0 +13519,65,21.05,28,0.0 +13519,17,39,28,0.0 +13519,22,21,50,0.0 +13519,67,14,34,0.0 +13519,28,45.6,27,0.0 +13519,45,9.5,37,0.0 +13519,46,12,15,0.0 +13519,25,14,23,0.0 +13519,44,19.45,46,0.0 +13519,75,7.75,34,0.0 +13519,47,9.5,42,0.0 +13519,26,31.23,16,0.0 +13519,11,21,38,0.0 +13519,19,9.2,35,0.0 +13519,37,26,32,0.0 +13519,53,32.8,26,0.0 +13519,29,123.79,16,0.0 +13519,32,32,41,0.0 +13519,36,19,4,0.0 +13519,5,21.35,21,0.0 +13519,49,20,20,0.0 +13519,54,7.45,21,0.0 +13519,33,2.5,24,0.0 +13519,30,25.89,42,0.0 +13519,60,34,38,0.0 +13519,3,10,24,0.0 +13519,39,18,8,0.0 +13519,76,18,6,0.0 +13519,13,6,45,0.0 +13519,6,25,1,0.0 +13519,24,4.5,8,0.0 +13519,31,12.5,49,0.0 +13519,72,34.8,15,0.0 +13519,51,53,32,0.0 +13519,27,43.9,18,0.0 +13519,62,49.3,36,0.0 +13519,43,46,48,0.0 +13519,9,97,48,0.0 +13519,35,18,13,0.0 +13520,66,17,45,0.0 +13520,34,14,31,0.0 +13520,25,14,19,0.0 +13520,35,18,16,0.0 +13520,71,21.5,33,0.0 +13520,67,14,32,0.0 +13520,18,62.5,34,0.0 +13520,63,43.9,28,0.0 +13520,42,14,48,0.0 +13520,56,38,47,0.0 +13520,23,9,34,0.0 +13520,59,55,9,0.0 +13520,15,15.5,9,0.0 +13520,33,2.5,47,0.0 +13520,44,19.45,37,0.0 +13520,5,21.35,17,0.0 +13520,52,7,23,0.0 +13520,68,12.5,44,0.0 +13520,28,45.6,39,0.0 +13520,54,7.45,31,0.0 +13520,7,30,23,0.0 +13520,6,25,35,0.0 +13520,9,97,26,0.0 +13520,40,18.4,46,0.0 +13520,1,18,21,0.0 +13520,43,46,18,0.0 +13521,20,81,42,0.0 +13521,62,49.3,18,0.0 +13521,63,43.9,33,0.0 +13521,23,9,48,0.0 +13521,48,12.75,24,0.0 +13521,5,21.35,14,0.0 +13521,42,14,49,0.0 +13521,49,20,19,0.0 +13521,1,18,9,0.0 +13521,33,2.5,5,0.0 +13521,77,13,37,0.0 +13521,37,26,22,0.0 +13521,57,19.5,20,0.0 +13521,67,14,47,0.0 +13521,47,9.5,27,0.0 +13521,17,39,47,0.0 +13521,28,45.6,35,0.0 +13521,40,18.4,31,0.0 +13521,58,13.25,45,0.0 +13521,18,62.5,20,0.0 +13521,64,33.25,10,0.0 +13521,26,31.23,38,0.0 +13521,2,19,4,0.0 +13521,11,21,26,0.0 +13521,30,25.89,43,0.0 +13521,8,40,1,0.0 +13521,13,6,46,0.0 +13521,39,18,10,0.0 +13521,52,7,31,0.0 +13521,70,15,29,0.0 +13521,45,9.5,21,0.0 +13522,48,12.75,41,0.0 +13522,56,38,34,0.0 +13522,44,19.45,46,0.0 +13522,74,10,21,0.0 +13522,13,6,32,0.0 +13522,17,39,49,0.0 +13522,69,36,40,0.0 +13522,26,31.23,15,0.0 +13522,41,9.65,7,0.0 +13522,6,25,29,0.0 +13522,71,21.5,27,0.0 +13522,40,18.4,35,0.0 +13522,60,34,46,0.0 +13522,1,18,26,0.0 +13522,54,7.45,25,0.0 +13522,14,23.25,6,0.0 +13522,58,13.25,41,0.0 +13522,66,17,37,0.0 +13522,61,28.5,48,0.0 +13522,19,9.2,35,0.0 +13522,57,19.5,5,0.0 +13522,51,53,3,0.0 +13522,50,16.25,47,0.0 +13522,77,13,33,0.0 +13522,35,18,21,0.0 +13522,8,40,26,0.0 +13522,9,97,8,0.0 +13522,49,20,44,0.0 +13522,3,10,32,0.0 +13522,45,9.5,9,0.0 +13522,16,17.45,29,0.0 +13522,20,81,50,0.0 +13522,67,14,28,0.0 +13522,32,32,25,0.0 +13522,39,18,44,0.0 +13522,23,9,38,0.0 +13522,25,14,45,0.0 +13522,31,12.5,19,0.0 +13522,5,21.35,45,0.0 +13522,12,38,17,0.0 +13522,33,2.5,50,0.0 +13522,10,31,29,0.0 +13522,55,24,26,0.0 +13522,65,21.05,20,0.0 +13522,52,7,45,0.0 +13522,62,49.3,13,0.0 +13522,29,123.79,4,0.0 +13522,73,15,41,0.0 +13522,24,4.5,3,0.0 +13523,60,34,27,0.0 +13523,50,16.25,11,0.0 +13523,70,15,29,0.0 +13523,1,18,40,0.0 +13523,19,9.2,37,0.0 +13523,5,21.35,44,0.0 +13523,64,33.25,38,0.0 +13523,34,14,37,0.0 +13523,76,18,50,0.0 +13523,4,22,28,0.0 +13523,13,6,49,0.0 +13523,65,21.05,16,0.0 +13523,23,9,25,0.0 +13523,28,45.6,21,0.0 +13523,49,20,31,0.0 +13523,71,21.5,21,0.0 +13523,10,31,48,0.0 +13523,25,14,39,0.0 +13524,25,14,30,0.0 +13524,49,20,45,0.0 +13524,38,263.5,2,0.0 +13524,31,12.5,38,0.0 +13524,11,21,42,0.0 +13524,68,12.5,16,0.0 +13524,43,46,47,0.0 +13524,24,4.5,44,0.0 +13524,51,53,5,0.0 +13524,2,19,40,0.0 +13524,62,49.3,15,0.0 +13524,8,40,12,0.0 +13524,77,13,28,0.0 +13524,12,38,36,0.0 +13524,33,2.5,27,0.0 +13524,75,7.75,18,0.0 +13524,45,9.5,43,0.0 +13524,69,36,32,0.0 +13524,46,12,38,0.0 +13524,57,19.5,3,0.0 +13524,70,15,48,0.0 +13524,50,16.25,3,0.0 +13524,26,31.23,21,0.0 +13524,64,33.25,35,0.0 +13524,19,9.2,25,0.0 +13524,58,13.25,19,0.0 +13524,14,23.25,3,0.0 +13524,17,39,18,0.0 +13524,10,31,33,0.0 +13524,34,14,11,0.0 +13524,36,19,38,0.0 +13524,13,6,42,0.0 +13524,74,10,50,0.0 +13524,32,32,18,0.0 +13524,16,17.45,50,0.0 +13524,48,12.75,48,0.0 +13524,54,7.45,4,0.0 +13524,47,9.5,48,0.0 +13524,21,10,1,0.0 +13524,39,18,36,0.0 +13524,9,97,14,0.0 +13524,67,14,1,0.0 +13524,53,32.8,11,0.0 +13524,42,14,20,0.0 +13524,35,18,10,0.0 +13524,73,15,1,0.0 +13524,56,38,14,0.0 +13524,3,10,3,0.0 +13524,20,81,19,0.0 +13524,27,43.9,29,0.0 +13524,18,62.5,4,0.0 +13524,22,21,5,0.0 +13524,1,18,4,0.0 +13524,37,26,36,0.0 +13524,29,123.79,21,0.0 +13524,59,55,22,0.0 +13524,15,15.5,48,0.0 +13524,4,22,45,0.0 +13524,30,25.89,36,0.0 +13524,61,28.5,35,0.0 +13524,6,25,40,0.0 +13524,60,34,16,0.0 +13524,71,21.5,7,0.0 +13524,52,7,17,0.0 +13524,66,17,8,0.0 +13525,60,34,20,0.0 +13525,64,33.25,16,0.0 +13525,33,2.5,18,0.0 +13525,46,12,42,0.0 +13525,48,12.75,40,0.0 +13525,59,55,28,0.0 +13525,50,16.25,41,0.0 +13525,21,10,47,0.0 +13525,39,18,35,0.0 +13525,31,12.5,1,0.0 +13525,6,25,38,0.0 +13525,40,18.4,19,0.0 +13525,37,26,20,0.0 +13525,5,21.35,19,0.0 +13525,54,7.45,35,0.0 +13525,56,38,26,0.0 +13525,10,31,17,0.0 +13525,29,123.79,13,0.0 +13525,65,21.05,44,0.0 +13525,44,19.45,38,0.0 +13525,62,49.3,20,0.0 +13525,69,36,44,0.0 +13525,49,20,26,0.0 +13525,13,6,18,0.0 +13525,30,25.89,27,0.0 +13525,75,7.75,35,0.0 +13525,32,32,6,0.0 +13525,14,23.25,46,0.0 +13525,22,21,9,0.0 +13525,72,34.8,45,0.0 +13525,26,31.23,35,0.0 +13525,36,19,11,0.0 +13525,7,30,50,0.0 +13525,53,32.8,19,0.0 +13525,9,97,29,0.0 +13525,41,9.65,35,0.0 +13525,66,17,22,0.0 +13526,35,18,6,0.0 +13526,23,9,20,0.0 +13526,59,55,22,0.0 +13526,29,123.79,41,0.0 +13526,5,21.35,48,0.0 +13526,74,10,33,0.0 +13526,20,81,18,0.0 +13526,49,20,47,0.0 +13526,4,22,36,0.0 +13526,66,17,46,0.0 +13526,26,31.23,22,0.0 +13526,40,18.4,11,0.0 +13526,19,9.2,35,0.0 +13526,12,38,44,0.0 +13526,18,62.5,13,0.0 +13526,44,19.45,32,0.0 +13526,32,32,32,0.0 +13526,75,7.75,7,0.0 +13526,72,34.8,2,0.0 +13526,63,43.9,15,0.0 +13526,30,25.89,38,0.0 +13527,37,26,1,0.0 +13527,57,19.5,7,0.0 +13528,40,18.4,5,0.0 +13528,75,7.75,30,0.0 +13528,60,34,10,0.0 +13528,22,21,12,0.0 +13528,27,43.9,43,0.0 +13528,5,21.35,39,0.0 +13528,11,21,50,0.0 +13528,63,43.9,48,0.0 +13528,9,97,25,0.0 +13528,34,14,11,0.0 +13528,37,26,32,0.0 +13528,66,17,14,0.0 +13528,50,16.25,22,0.0 +13528,59,55,5,0.0 +13528,33,2.5,28,0.0 +13528,61,28.5,3,0.0 +13528,67,14,46,0.0 +13528,52,7,30,0.0 +13528,19,9.2,44,0.0 +13528,46,12,13,0.0 +13528,42,14,19,0.0 +13528,18,62.5,35,0.0 +13528,26,31.23,26,0.0 +13528,39,18,4,0.0 +13528,41,9.65,16,0.0 +13528,51,53,23,0.0 +13528,62,49.3,17,0.0 +13528,45,9.5,4,0.0 +13528,54,7.45,7,0.0 +13528,38,263.5,28,0.0 +13528,31,12.5,14,0.0 +13528,17,39,18,0.0 +13528,36,19,9,0.0 +13528,48,12.75,25,0.0 +13528,30,25.89,19,0.0 +13528,20,81,14,0.0 +13528,73,15,34,0.0 +13528,21,10,44,0.0 +13528,43,46,1,0.0 +13528,24,4.5,37,0.0 +13528,72,34.8,38,0.0 +13528,69,36,41,0.0 +13528,70,15,45,0.0 +13528,77,13,33,0.0 +13528,13,6,36,0.0 +13528,64,33.25,48,0.0 +13528,71,21.5,8,0.0 +13528,35,18,31,0.0 +13528,16,17.45,5,0.0 +13528,28,45.6,16,0.0 +13528,25,14,31,0.0 +13528,44,19.45,20,0.0 +13528,47,9.5,11,0.0 +13528,1,18,15,0.0 +13528,56,38,38,0.0 +13528,53,32.8,6,0.0 +13528,3,10,42,0.0 +13528,32,32,20,0.0 +13528,58,13.25,36,0.0 +13528,23,9,22,0.0 +13528,76,18,32,0.0 +13528,7,30,44,0.0 +13528,10,31,11,0.0 +13528,15,15.5,42,0.0 +13528,14,23.25,4,0.0 +13528,12,38,21,0.0 +13528,68,12.5,33,0.0 +13528,74,10,21,0.0 +13528,6,25,33,0.0 +13528,2,19,24,0.0 +13528,49,20,1,0.0 +13528,8,40,27,0.0 +13529,77,13,50,0.0 +13529,44,19.45,48,0.0 +13529,31,12.5,14,0.0 +13529,68,12.5,15,0.0 +13529,26,31.23,42,0.0 +13529,50,16.25,8,0.0 +13529,25,14,2,0.0 +13529,20,81,48,0.0 +13529,56,38,50,0.0 +13529,4,22,30,0.0 +13529,2,19,33,0.0 +13529,14,23.25,30,0.0 +13529,52,7,37,0.0 +13529,38,263.5,2,0.0 +13529,55,24,30,0.0 +13529,60,34,5,0.0 +13529,5,21.35,47,0.0 +13529,1,18,22,0.0 +13529,15,15.5,12,0.0 +13529,13,6,17,0.0 +13529,64,33.25,13,0.0 +13529,75,7.75,18,0.0 +13529,18,62.5,35,0.0 +13529,73,15,24,0.0 +13529,34,14,48,0.0 +13529,41,9.65,50,0.0 +13529,23,9,22,0.0 +13529,35,18,40,0.0 +13529,51,53,1,0.0 +13529,59,55,45,0.0 +13529,66,17,6,0.0 +13529,8,40,1,0.0 +13529,6,25,15,0.0 +13529,40,18.4,6,0.0 +13529,62,49.3,20,0.0 +13529,48,12.75,30,0.0 +13529,11,21,12,0.0 +13529,45,9.5,23,0.0 +13529,16,17.45,24,0.0 +13529,72,34.8,35,0.0 +13529,27,43.9,41,0.0 +13529,43,46,9,0.0 +13529,19,9.2,7,0.0 +13529,76,18,49,0.0 +13529,3,10,41,0.0 +13529,70,15,10,0.0 +13530,19,9.2,15,0.0 +13530,32,32,4,0.0 +13530,70,15,2,0.0 +13530,47,9.5,18,0.0 +13530,58,13.25,21,0.0 +13530,72,34.8,1,0.0 +13530,28,45.6,42,0.0 +13530,42,14,30,0.0 +13530,9,97,18,0.0 +13530,31,12.5,50,0.0 +13530,57,19.5,28,0.0 +13530,56,38,43,0.0 +13530,64,33.25,5,0.0 +13530,16,17.45,2,0.0 +13530,63,43.9,23,0.0 +13530,46,12,31,0.0 +13530,20,81,33,0.0 +13530,12,38,13,0.0 +13530,73,15,13,0.0 +13530,11,21,9,0.0 +13530,53,32.8,18,0.0 +13530,50,16.25,11,0.0 +13530,66,17,23,0.0 +13530,2,19,46,0.0 +13530,39,18,33,0.0 +13530,68,12.5,36,0.0 +13530,29,123.79,15,0.0 +13530,1,18,9,0.0 +13530,21,10,19,0.0 +13530,33,2.5,32,0.0 +13530,17,39,49,0.0 +13530,25,14,21,0.0 +13530,67,14,40,0.0 +13530,76,18,21,0.0 +13530,59,55,34,0.0 +13530,62,49.3,1,0.0 +13530,18,62.5,26,0.0 +13530,7,30,19,0.0 +13530,34,14,18,0.0 +13530,3,10,48,0.0 +13530,60,34,14,0.0 +13530,8,40,20,0.0 +13530,23,9,5,0.0 +13530,27,43.9,7,0.0 +13530,37,26,10,0.0 +13530,77,13,24,0.0 +13530,14,23.25,15,0.0 +13530,4,22,19,0.0 +13530,36,19,39,0.0 +13530,55,24,7,0.0 +13530,65,21.05,38,0.0 +13530,45,9.5,30,0.0 +13530,48,12.75,1,0.0 +13530,49,20,32,0.0 +13530,26,31.23,50,0.0 +13530,43,46,6,0.0 +13530,51,53,22,0.0 +13530,54,7.45,28,0.0 +13530,52,7,5,0.0 +13530,38,263.5,14,0.0 +13530,13,6,43,0.0 +13530,24,4.5,18,0.0 +13530,30,25.89,12,0.0 +13530,71,21.5,24,0.0 +13530,75,7.75,49,0.0 +13530,35,18,36,0.0 +13531,37,26,32,0.0 +13531,23,9,36,0.0 +13531,69,36,13,0.0 +13531,31,12.5,31,0.0 +13531,13,6,19,0.0 +13531,43,46,8,0.0 +13531,74,10,44,0.0 +13531,49,20,28,0.0 +13531,39,18,38,0.0 +13531,24,4.5,2,0.0 +13531,70,15,24,0.0 +13531,4,22,1,0.0 +13531,40,18.4,45,0.0 +13531,45,9.5,14,0.0 +13532,74,10,35,0.0 +13532,26,31.23,34,0.0 +13532,43,46,20,0.0 +13532,15,15.5,6,0.0 +13532,63,43.9,29,0.0 +13532,53,32.8,5,0.0 +13532,48,12.75,46,0.0 +13532,38,263.5,37,0.0 +13532,73,15,16,0.0 +13532,34,14,29,0.0 +13532,60,34,26,0.0 +13532,58,13.25,30,0.0 +13532,64,33.25,12,0.0 +13532,52,7,33,0.0 +13532,25,14,9,0.0 +13532,39,18,30,0.0 +13532,13,6,19,0.0 +13532,21,10,17,0.0 +13532,62,49.3,1,0.0 +13532,71,21.5,3,0.0 +13532,65,21.05,1,0.0 +13532,76,18,32,0.0 +13532,51,53,4,0.0 +13532,45,9.5,44,0.0 +13532,75,7.75,24,0.0 +13532,6,25,39,0.0 +13532,50,16.25,29,0.0 +13532,7,30,40,0.0 +13532,14,23.25,19,0.0 +13532,17,39,10,0.0 +13532,35,18,31,0.0 +13532,72,34.8,40,0.0 +13532,20,81,4,0.0 +13532,29,123.79,49,0.0 +13532,3,10,22,0.0 +13532,67,14,30,0.0 +13532,55,24,10,0.0 +13532,9,97,13,0.0 +13532,32,32,40,0.0 +13532,16,17.45,36,0.0 +13532,46,12,22,0.0 +13532,77,13,20,0.0 +13532,4,22,48,0.0 +13532,57,19.5,11,0.0 +13532,70,15,3,0.0 +13532,12,38,42,0.0 +13532,33,2.5,39,0.0 +13532,68,12.5,4,0.0 +13533,39,18,44,0.0 +13533,29,123.79,43,0.0 +13533,17,39,49,0.0 +13533,34,14,33,0.0 +13533,70,15,44,0.0 +13533,16,17.45,38,0.0 +13533,41,9.65,27,0.0 +13533,33,2.5,29,0.0 +13534,37,26,9,0.0 +13534,25,14,16,0.0 +13534,53,32.8,11,0.0 +13534,10,31,25,0.0 +13534,28,45.6,13,0.0 +13534,15,15.5,14,0.0 +13534,45,9.5,40,0.0 +13534,66,17,13,0.0 +13534,42,14,39,0.0 +13534,3,10,10,0.0 +13534,75,7.75,3,0.0 +13534,70,15,42,0.0 +13534,12,38,10,0.0 +13534,49,20,43,0.0 +13534,50,16.25,8,0.0 +13534,29,123.79,26,0.0 +13534,39,18,7,0.0 +13534,54,7.45,35,0.0 +13534,2,19,15,0.0 +13534,32,32,49,0.0 +13534,61,28.5,14,0.0 +13534,46,12,13,0.0 +13534,17,39,50,0.0 +13534,71,21.5,24,0.0 +13534,21,10,21,0.0 +13534,60,34,47,0.0 +13534,74,10,23,0.0 +13534,34,14,19,0.0 +13534,68,12.5,11,0.0 +13534,38,263.5,24,0.0 +13534,30,25.89,50,0.0 +13534,8,40,11,0.0 +13534,43,46,9,0.0 +13534,22,21,48,0.0 +13534,33,2.5,16,0.0 +13534,13,6,45,0.0 +13534,14,23.25,12,0.0 +13534,52,7,14,0.0 +13534,31,12.5,33,0.0 +13534,4,22,39,0.0 +13534,63,43.9,49,0.0 +13534,67,14,44,0.0 +13535,17,39,33,0.0 +13535,33,2.5,22,0.0 +13535,27,43.9,3,0.0 +13535,37,26,15,0.0 +13535,42,14,20,0.0 +13535,65,21.05,19,0.0 +13535,60,34,35,0.0 +13535,77,13,26,0.0 +13535,2,19,26,0.0 +13535,50,16.25,41,0.0 +13535,5,21.35,8,0.0 +13535,1,18,14,0.0 +13535,64,33.25,24,0.0 +13535,47,9.5,12,0.0 +13535,21,10,37,0.0 +13535,29,123.79,37,0.0 +13535,25,14,2,0.0 +13535,9,97,14,0.0 +13535,7,30,33,0.0 +13535,20,81,11,0.0 +13535,28,45.6,44,0.0 +13535,16,17.45,38,0.0 +13535,4,22,12,0.0 +13535,3,10,38,0.0 +13535,54,7.45,35,0.0 +13535,49,20,45,0.0 +13535,51,53,24,0.0 +13535,68,12.5,26,0.0 +13535,24,4.5,17,0.0 +13535,71,21.5,39,0.0 +13535,34,14,13,0.0 +13535,70,15,34,0.0 +13535,19,9.2,24,0.0 +13535,14,23.25,16,0.0 +13535,61,28.5,45,0.0 +13535,31,12.5,5,0.0 +13535,59,55,22,0.0 +13535,63,43.9,36,0.0 +13535,11,21,15,0.0 +13535,48,12.75,47,0.0 +13535,56,38,35,0.0 +13535,32,32,26,0.0 +13535,30,25.89,45,0.0 +13535,43,46,11,0.0 +13535,57,19.5,5,0.0 +13535,36,19,1,0.0 +13535,39,18,38,0.0 +13535,66,17,20,0.0 +13535,8,40,34,0.0 +13535,44,19.45,4,0.0 +13535,53,32.8,7,0.0 +13535,38,263.5,26,0.0 +13535,58,13.25,32,0.0 +13535,52,7,20,0.0 +13535,62,49.3,39,0.0 +13535,69,36,32,0.0 +13535,73,15,39,0.0 +13535,41,9.65,6,0.0 +13535,22,21,34,0.0 +13535,26,31.23,18,0.0 +13535,35,18,39,0.0 +13535,23,9,14,0.0 +13535,72,34.8,36,0.0 +13535,45,9.5,38,0.0 +13535,75,7.75,27,0.0 +13535,55,24,21,0.0 +13536,76,18,15,0.0 +13536,46,12,41,0.0 +13536,63,43.9,2,0.0 +13536,29,123.79,14,0.0 +13536,25,14,43,0.0 +13536,39,18,38,0.0 +13536,7,30,25,0.0 +13536,64,33.25,21,0.0 +13536,56,38,17,0.0 +13536,5,21.35,35,0.0 +13536,4,22,9,0.0 +13536,34,14,16,0.0 +13536,8,40,26,0.0 +13536,23,9,17,0.0 +13536,30,25.89,2,0.0 +13536,48,12.75,28,0.0 +13536,74,10,24,0.0 +13536,14,23.25,10,0.0 +13536,70,15,32,0.0 +13536,15,15.5,10,0.0 +13536,10,31,49,0.0 +13536,53,32.8,22,0.0 +13536,75,7.75,14,0.0 +13536,16,17.45,50,0.0 +13536,3,10,13,0.0 +13536,40,18.4,48,0.0 +13536,45,9.5,2,0.0 +13536,18,62.5,5,0.0 +13536,61,28.5,38,0.0 +13536,11,21,32,0.0 +13536,2,19,21,0.0 +13536,26,31.23,37,0.0 +13536,12,38,19,0.0 +13536,31,12.5,34,0.0 +13536,37,26,34,0.0 +13536,65,21.05,15,0.0 +13536,28,45.6,30,0.0 +13536,20,81,49,0.0 +13536,27,43.9,41,0.0 +13536,72,34.8,21,0.0 +13536,62,49.3,50,0.0 +13536,71,21.5,9,0.0 +13536,59,55,42,0.0 +13536,17,39,17,0.0 +13536,43,46,11,0.0 +13536,33,2.5,10,0.0 +13536,67,14,23,0.0 +13536,55,24,38,0.0 +13536,52,7,48,0.0 +13536,36,19,44,0.0 +13536,21,10,24,0.0 +13536,44,19.45,19,0.0 +13536,57,19.5,27,0.0 +13536,22,21,3,0.0 +13536,6,25,23,0.0 +13536,66,17,18,0.0 +13536,77,13,12,0.0 +13536,1,18,37,0.0 +13536,9,97,37,0.0 +13536,41,9.65,45,0.0 +13536,50,16.25,28,0.0 +13536,24,4.5,40,0.0 +13536,38,263.5,18,0.0 +13536,47,9.5,40,0.0 +13537,14,23.25,26,0.0 +13537,49,20,36,0.0 +13537,22,21,7,0.0 +13537,73,15,27,0.0 +13537,67,14,28,0.0 +13537,33,2.5,27,0.0 +13537,61,28.5,38,0.0 +13537,25,14,40,0.0 +13537,29,123.79,6,0.0 +13537,52,7,38,0.0 +13537,30,25.89,36,0.0 +13537,65,21.05,38,0.0 +13537,44,19.45,37,0.0 +13537,60,34,36,0.0 +13537,42,14,20,0.0 +13537,17,39,28,0.0 +13537,7,30,49,0.0 +13537,21,10,48,0.0 +13537,38,263.5,24,0.0 +13537,6,25,2,0.0 +13537,35,18,21,0.0 +13537,43,46,29,0.0 +13537,68,12.5,4,0.0 +13537,64,33.25,2,0.0 +13537,39,18,44,0.0 +13537,4,22,13,0.0 +13537,46,12,46,0.0 +13537,10,31,5,0.0 +13537,50,16.25,31,0.0 +13538,66,17,23,0.0 +13538,33,2.5,12,0.0 +13538,7,30,5,0.0 +13538,36,19,14,0.0 +13538,63,43.9,35,0.0 +13538,20,81,26,0.0 +13538,65,21.05,49,0.0 +13538,23,9,1,0.0 +13538,59,55,4,0.0 +13538,14,23.25,19,0.0 +13538,16,17.45,32,0.0 +13538,70,15,5,0.0 +13538,44,19.45,8,0.0 +13538,5,21.35,26,0.0 +13538,10,31,33,0.0 +13538,46,12,20,0.0 +13538,2,19,36,0.0 +13538,45,9.5,8,0.0 +13538,8,40,26,0.0 +13538,74,10,36,0.0 +13538,73,15,49,0.0 +13538,69,36,42,0.0 +13538,47,9.5,13,0.0 +13538,54,7.45,13,0.0 +13538,30,25.89,28,0.0 +13538,13,6,27,0.0 +13538,58,13.25,45,0.0 +13538,12,38,40,0.0 +13538,37,26,42,0.0 +13538,53,32.8,12,0.0 +13539,40,18.4,46,0.0 +13539,27,43.9,8,0.0 +13539,32,32,35,0.0 +13539,18,62.5,6,0.0 +13539,15,15.5,16,0.0 +13539,10,31,46,0.0 +13539,66,17,26,0.0 +13539,64,33.25,18,0.0 +13539,5,21.35,38,0.0 +13539,60,34,13,0.0 +13539,72,34.8,25,0.0 +13539,37,26,18,0.0 +13539,52,7,35,0.0 +13539,42,14,20,0.0 +13539,23,9,16,0.0 +13539,70,15,1,0.0 +13539,46,12,47,0.0 +13539,71,21.5,45,0.0 +13539,41,9.65,48,0.0 +13539,56,38,30,0.0 +13539,16,17.45,41,0.0 +13539,30,25.89,6,0.0 +13539,67,14,32,0.0 +13539,21,10,21,0.0 +13539,1,18,18,0.0 +13540,54,7.45,19,0.0 +13540,34,14,40,0.0 +13540,43,46,34,0.0 +13540,49,20,25,0.0 +13540,29,123.79,12,0.0 +13540,6,25,6,0.0 +13540,32,32,4,0.0 +13540,56,38,37,0.0 +13540,23,9,37,0.0 +13540,47,9.5,45,0.0 +13540,75,7.75,10,0.0 +13540,19,9.2,4,0.0 +13540,28,45.6,6,0.0 +13540,71,21.5,36,0.0 +13540,8,40,38,0.0 +13540,5,21.35,43,0.0 +13540,77,13,50,0.0 +13540,62,49.3,43,0.0 +13540,37,26,45,0.0 +13540,73,15,30,0.0 +13540,16,17.45,36,0.0 +13540,45,9.5,43,0.0 +13540,21,10,43,0.0 +13540,58,13.25,31,0.0 +13540,26,31.23,15,0.0 +13540,65,21.05,15,0.0 +13540,11,21,42,0.0 +13540,7,30,42,0.0 +13540,42,14,15,0.0 +13540,51,53,28,0.0 +13540,53,32.8,13,0.0 +13540,52,7,11,0.0 +13540,44,19.45,17,0.0 +13540,2,19,44,0.0 +13540,57,19.5,34,0.0 +13540,13,6,43,0.0 +13540,63,43.9,2,0.0 +13540,22,21,46,0.0 +13540,39,18,18,0.0 +13540,36,19,9,0.0 +13540,25,14,7,0.0 +13540,59,55,8,0.0 +13540,12,38,44,0.0 +13540,17,39,44,0.0 +13540,38,263.5,31,0.0 +13540,70,15,37,0.0 +13540,68,12.5,12,0.0 +13540,41,9.65,36,0.0 +13540,27,43.9,35,0.0 +13540,18,62.5,4,0.0 +13540,24,4.5,33,0.0 +13540,31,12.5,45,0.0 +13540,10,31,30,0.0 +13540,33,2.5,30,0.0 +13540,14,23.25,47,0.0 +13540,1,18,30,0.0 +13540,35,18,46,0.0 +13540,3,10,23,0.0 +13540,64,33.25,2,0.0 +13540,74,10,15,0.0 +13540,4,22,49,0.0 +13540,67,14,45,0.0 +13540,60,34,13,0.0 +13540,40,18.4,9,0.0 +13540,30,25.89,33,0.0 +13540,50,16.25,30,0.0 +13541,56,38,22,0.0 +13541,60,34,16,0.0 +13541,62,49.3,8,0.0 +13541,76,18,7,0.0 +13541,54,7.45,22,0.0 +13541,1,18,18,0.0 +13541,27,43.9,24,0.0 +13541,5,21.35,34,0.0 +13541,53,32.8,25,0.0 +13541,10,31,20,0.0 +13541,13,6,16,0.0 +13541,12,38,37,0.0 +13541,65,21.05,10,0.0 +13541,4,22,44,0.0 +13541,69,36,13,0.0 +13541,61,28.5,12,0.0 +13541,20,81,32,0.0 +13541,38,263.5,38,0.0 +13541,9,97,41,0.0 +13541,25,14,37,0.0 +13541,52,7,38,0.0 +13541,46,12,4,0.0 +13541,11,21,9,0.0 +13541,49,20,1,0.0 +13541,50,16.25,24,0.0 +13541,43,46,18,0.0 +13541,26,31.23,2,0.0 +13541,77,13,23,0.0 +13541,47,9.5,27,0.0 +13541,14,23.25,4,0.0 +13541,37,26,24,0.0 +13541,15,15.5,29,0.0 +13541,7,30,41,0.0 +13541,8,40,43,0.0 +13541,58,13.25,36,0.0 +13541,66,17,35,0.0 +13541,36,19,36,0.0 +13541,16,17.45,14,0.0 +13541,18,62.5,9,0.0 +13541,75,7.75,18,0.0 +13541,24,4.5,30,0.0 +13541,68,12.5,42,0.0 +13541,71,21.5,35,0.0 +13541,23,9,18,0.0 +13541,40,18.4,32,0.0 +13541,21,10,11,0.0 +13541,45,9.5,18,0.0 +13541,34,14,2,0.0 +13541,31,12.5,40,0.0 +13541,3,10,42,0.0 +13541,70,15,44,0.0 +13541,55,24,31,0.0 +13541,33,2.5,48,0.0 +13541,19,9.2,49,0.0 +13541,39,18,12,0.0 +13541,73,15,16,0.0 +13541,28,45.6,25,0.0 +13541,30,25.89,23,0.0 +13541,51,53,16,0.0 +13541,63,43.9,5,0.0 +13541,74,10,19,0.0 +13541,17,39,14,0.0 +13541,35,18,3,0.0 +13541,57,19.5,38,0.0 +13541,67,14,40,0.0 +13542,45,9.5,20,0.0 +13542,11,21,29,0.0 +13542,7,30,13,0.0 +13542,65,21.05,46,0.0 +13542,57,19.5,26,0.0 +13542,68,12.5,41,0.0 +13542,23,9,44,0.0 +13542,64,33.25,37,0.0 +13542,55,24,41,0.0 +13542,42,14,1,0.0 +13542,46,12,6,0.0 +13542,15,15.5,34,0.0 +13542,41,9.65,40,0.0 +13542,52,7,37,0.0 +13542,67,14,29,0.0 +13542,25,14,43,0.0 +13542,16,17.45,30,0.0 +13542,37,26,1,0.0 +13542,77,13,16,0.0 +13542,48,12.75,16,0.0 +13542,50,16.25,46,0.0 +13542,5,21.35,35,0.0 +13542,12,38,13,0.0 +13542,19,9.2,3,0.0 +13542,44,19.45,11,0.0 +13542,10,31,31,0.0 +13542,73,15,9,0.0 +13542,29,123.79,49,0.0 +13542,21,10,6,0.0 +13542,60,34,8,0.0 +13542,30,25.89,15,0.0 +13542,38,263.5,37,0.0 +13542,74,10,1,0.0 +13542,24,4.5,23,0.0 +13542,34,14,2,0.0 +13542,8,40,41,0.0 +13542,31,12.5,50,0.0 +13542,53,32.8,5,0.0 +13542,20,81,46,0.0 +13542,13,6,31,0.0 +13542,28,45.6,16,0.0 +13542,47,9.5,48,0.0 +13542,9,97,19,0.0 +13543,75,7.75,30,0.0 +13543,21,10,2,0.0 +13543,66,17,29,0.0 +13543,58,13.25,44,0.0 +13543,15,15.5,17,0.0 +13543,8,40,44,0.0 +13543,10,31,18,0.0 +13543,77,13,20,0.0 +13543,70,15,45,0.0 +13543,19,9.2,38,0.0 +13543,42,14,6,0.0 +13543,29,123.79,40,0.0 +13543,33,2.5,5,0.0 +13543,64,33.25,21,0.0 +13543,60,34,39,0.0 +13543,7,30,48,0.0 +13543,43,46,28,0.0 +13544,21,10,5,0.0 +13544,36,19,33,0.0 +13544,41,9.65,43,0.0 +13544,17,39,16,0.0 +13544,25,14,8,0.0 +13544,54,7.45,9,0.0 +13544,55,24,9,0.0 +13544,51,53,6,0.0 +13544,67,14,15,0.0 +13544,77,13,41,0.0 +13544,35,18,39,0.0 +13544,42,14,5,0.0 +13544,45,9.5,37,0.0 +13544,59,55,2,0.0 +13544,43,46,22,0.0 +13544,27,43.9,27,0.0 +13544,24,4.5,19,0.0 +13544,33,2.5,25,0.0 +13544,32,32,34,0.0 +13544,1,18,41,0.0 +13544,71,21.5,23,0.0 +13544,52,7,19,0.0 +13545,41,9.65,27,0.0 +13545,62,49.3,50,0.0 +13545,55,24,3,0.0 +13545,77,13,40,0.0 +13545,67,14,41,0.0 +13545,44,19.45,47,0.0 +13545,9,97,3,0.0 +13545,45,9.5,4,0.0 +13545,28,45.6,49,0.0 +13545,61,28.5,45,0.0 +13545,59,55,46,0.0 +13545,17,39,10,0.0 +13545,34,14,33,0.0 +13545,18,62.5,49,0.0 +13545,14,23.25,5,0.0 +13545,38,263.5,21,0.0 +13545,31,12.5,19,0.0 +13545,64,33.25,3,0.0 +13545,21,10,2,0.0 +13545,25,14,34,0.0 +13545,5,21.35,9,0.0 +13545,51,53,26,0.0 +13545,20,81,3,0.0 +13545,47,9.5,34,0.0 +13546,42,14,30,0.0 +13546,8,40,3,0.0 +13546,62,49.3,47,0.0 +13546,32,32,23,0.0 +13546,2,19,35,0.0 +13546,56,38,8,0.0 +13546,40,18.4,25,0.0 +13546,72,34.8,30,0.0 +13546,27,43.9,3,0.0 +13546,70,15,27,0.0 +13546,47,9.5,49,0.0 +13546,52,7,7,0.0 +13546,19,9.2,24,0.0 +13546,21,10,21,0.0 +13546,68,12.5,25,0.0 +13546,3,10,39,0.0 +13546,14,23.25,41,0.0 +13546,54,7.45,26,0.0 +13546,55,24,34,0.0 +13546,58,13.25,39,0.0 +13546,35,18,42,0.0 +13546,1,18,8,0.0 +13546,24,4.5,37,0.0 +13546,41,9.65,17,0.0 +13546,74,10,12,0.0 +13546,7,30,18,0.0 +13546,77,13,29,0.0 +13546,23,9,1,0.0 +13546,30,25.89,48,0.0 +13546,31,12.5,50,0.0 +13546,28,45.6,16,0.0 +13546,10,31,13,0.0 +13546,4,22,13,0.0 +13546,50,16.25,32,0.0 +13546,44,19.45,35,0.0 +13546,59,55,29,0.0 +13546,11,21,16,0.0 +13546,60,34,33,0.0 +13546,43,46,48,0.0 +13546,18,62.5,31,0.0 +13546,57,19.5,10,0.0 +13546,53,32.8,43,0.0 +13546,15,15.5,1,0.0 +13546,49,20,35,0.0 +13546,33,2.5,15,0.0 +13546,75,7.75,26,0.0 +13546,5,21.35,15,0.0 +13546,51,53,35,0.0 +13546,63,43.9,46,0.0 +13546,36,19,35,0.0 +13546,38,263.5,31,0.0 +13546,39,18,22,0.0 +13546,45,9.5,50,0.0 +13546,12,38,7,0.0 +13546,46,12,18,0.0 +13546,48,12.75,32,0.0 +13546,61,28.5,43,0.0 +13546,29,123.79,8,0.0 +13546,73,15,13,0.0 +13546,76,18,14,0.0 +13547,33,2.5,32,0.0 +13547,70,15,50,0.0 +13547,41,9.65,44,0.0 +13547,7,30,5,0.0 +13547,56,38,45,0.0 +13547,64,33.25,20,0.0 +13547,53,32.8,43,0.0 +13547,25,14,11,0.0 +13547,4,22,42,0.0 +13547,39,18,34,0.0 +13547,35,18,46,0.0 +13547,32,32,43,0.0 +13547,24,4.5,43,0.0 +13547,16,17.45,46,0.0 +13547,31,12.5,29,0.0 +13547,6,25,18,0.0 +13547,37,26,35,0.0 +13547,13,6,23,0.0 +13547,22,21,23,0.0 +13547,54,7.45,5,0.0 +13547,34,14,48,0.0 +13547,67,14,26,0.0 +13547,21,10,20,0.0 +13547,8,40,6,0.0 +13547,44,19.45,8,0.0 +13547,52,7,49,0.0 +13547,2,19,12,0.0 +13547,73,15,7,0.0 +13547,47,9.5,49,0.0 +13547,49,20,38,0.0 +13547,72,34.8,45,0.0 +13547,62,49.3,3,0.0 +13547,28,45.6,30,0.0 +13547,55,24,48,0.0 +13547,76,18,30,0.0 +13547,27,43.9,42,0.0 +13547,50,16.25,33,0.0 +13547,40,18.4,45,0.0 +13547,11,21,49,0.0 +13547,14,23.25,27,0.0 +13547,69,36,2,0.0 +13547,42,14,45,0.0 +13547,74,10,39,0.0 +13547,9,97,21,0.0 +13547,12,38,10,0.0 +13547,60,34,32,0.0 +13547,43,46,4,0.0 +13547,20,81,28,0.0 +13548,6,25,42,0.0 +13548,62,49.3,41,0.0 +13548,59,55,6,0.0 +13548,4,22,43,0.0 +13548,46,12,22,0.0 +13549,51,53,22,0.0 +13549,54,7.45,9,0.0 +13549,48,12.75,43,0.0 +13549,13,6,26,0.0 +13549,59,55,1,0.0 +13549,39,18,46,0.0 +13549,62,49.3,31,0.0 +13549,65,21.05,24,0.0 +13549,21,10,38,0.0 +13549,4,22,35,0.0 +13549,47,9.5,40,0.0 +13549,2,19,35,0.0 +13549,24,4.5,7,0.0 +13549,72,34.8,30,0.0 +13549,5,21.35,22,0.0 +13549,35,18,23,0.0 +13549,7,30,34,0.0 +13549,52,7,21,0.0 +13549,9,97,35,0.0 +13549,63,43.9,19,0.0 +13549,17,39,3,0.0 +13549,71,21.5,9,0.0 +13549,30,25.89,24,0.0 +13549,57,19.5,28,0.0 +13549,61,28.5,25,0.0 +13549,69,36,11,0.0 +13549,36,19,42,0.0 +13549,31,12.5,16,0.0 +13549,60,34,41,0.0 +13549,20,81,10,0.0 +13549,58,13.25,24,0.0 +13549,10,31,14,0.0 +13549,29,123.79,24,0.0 +13549,18,62.5,25,0.0 +13549,55,24,40,0.0 +13549,70,15,35,0.0 +13549,64,33.25,1,0.0 +13549,76,18,36,0.0 +13549,15,15.5,12,0.0 +13549,33,2.5,35,0.0 +13549,34,14,15,0.0 +13549,49,20,23,0.0 +13549,74,10,46,0.0 +13549,28,45.6,2,0.0 +13549,6,25,15,0.0 +13549,56,38,48,0.0 +13549,12,38,39,0.0 +13549,46,12,36,0.0 +13549,66,17,20,0.0 +13549,37,26,7,0.0 +13549,26,31.23,16,0.0 +13549,38,263.5,17,0.0 +13549,42,14,45,0.0 +13550,47,9.5,7,0.0 +13550,33,2.5,3,0.0 +13550,52,7,15,0.0 +13550,29,123.79,18,0.0 +13550,22,21,31,0.0 +13550,7,30,38,0.0 +13550,5,21.35,46,0.0 +13550,1,18,35,0.0 +13550,8,40,17,0.0 +13550,2,19,20,0.0 +13550,60,34,38,0.0 +13550,16,17.45,39,0.0 +13550,36,19,18,0.0 +13550,3,10,39,0.0 +13550,14,23.25,42,0.0 +13550,18,62.5,42,0.0 +13550,20,81,22,0.0 +13550,35,18,47,0.0 +13550,75,7.75,3,0.0 +13550,19,9.2,6,0.0 +13550,17,39,11,0.0 +13550,43,46,16,0.0 +13550,77,13,46,0.0 +13550,66,17,37,0.0 +13550,58,13.25,29,0.0 +13550,53,32.8,4,0.0 +13550,6,25,21,0.0 +13550,57,19.5,17,0.0 +13550,39,18,14,0.0 +13550,72,34.8,50,0.0 +13550,65,21.05,8,0.0 +13550,24,4.5,29,0.0 +13550,26,31.23,1,0.0 +13550,56,38,16,0.0 +13550,25,14,49,0.0 +13550,44,19.45,36,0.0 +13550,50,16.25,31,0.0 +13550,21,10,29,0.0 +13550,48,12.75,11,0.0 +13550,69,36,2,0.0 +13550,45,9.5,23,0.0 +13551,46,12,7,0.0 +13551,1,18,24,0.0 +13551,9,97,46,0.0 +13551,18,62.5,17,0.0 +13551,56,38,7,0.0 +13551,13,6,2,0.0 +13551,59,55,45,0.0 +13551,70,15,26,0.0 +13551,33,2.5,18,0.0 +13551,27,43.9,35,0.0 +13551,45,9.5,37,0.0 +13551,67,14,13,0.0 +13551,41,9.65,25,0.0 +13551,68,12.5,29,0.0 +13551,5,21.35,26,0.0 +13551,71,21.5,5,0.0 +13551,21,10,13,0.0 +13551,20,81,48,0.0 +13551,35,18,8,0.0 +13551,15,15.5,45,0.0 +13551,73,15,21,0.0 +13551,57,19.5,34,0.0 +13551,38,263.5,33,0.0 +13551,6,25,12,0.0 +13551,17,39,28,0.0 +13551,14,23.25,30,0.0 +13551,69,36,36,0.0 +13551,11,21,49,0.0 +13551,29,123.79,25,0.0 +13551,26,31.23,3,0.0 +13551,43,46,2,0.0 +13551,40,18.4,12,0.0 +13551,28,45.6,25,0.0 +13551,63,43.9,47,0.0 +13551,76,18,23,0.0 +13551,65,21.05,17,0.0 +13551,49,20,48,0.0 +13551,77,13,35,0.0 +13551,64,33.25,45,0.0 +13551,31,12.5,21,0.0 +13551,8,40,12,0.0 +13551,48,12.75,20,0.0 +13551,50,16.25,31,0.0 +13551,51,53,15,0.0 +13551,74,10,8,0.0 +13551,58,13.25,15,0.0 +13551,12,38,23,0.0 +13551,3,10,50,0.0 +13551,54,7.45,13,0.0 +13551,24,4.5,6,0.0 +13551,19,9.2,46,0.0 +13551,36,19,40,0.0 +13551,75,7.75,17,0.0 +13551,25,14,19,0.0 +13551,66,17,39,0.0 +13551,53,32.8,31,0.0 +13551,32,32,11,0.0 +13551,60,34,35,0.0 +13551,30,25.89,42,0.0 +13551,16,17.45,44,0.0 +13551,2,19,8,0.0 +13551,72,34.8,37,0.0 +13551,23,9,34,0.0 +13551,55,24,47,0.0 +13551,62,49.3,8,0.0 +13551,42,14,9,0.0 +13551,37,26,25,0.0 +13551,34,14,43,0.0 +13551,44,19.45,25,0.0 +13551,7,30,41,0.0 +13551,4,22,3,0.0 +13551,47,9.5,46,0.0 +13551,52,7,14,0.0 +13552,35,18,11,0.0 +13552,23,9,32,0.0 +13552,33,2.5,12,0.0 +13552,55,24,22,0.0 +13552,15,15.5,12,0.0 +13552,18,62.5,19,0.0 +13552,74,10,47,0.0 +13552,4,22,11,0.0 +13552,75,7.75,8,0.0 +13552,8,40,8,0.0 +13552,40,18.4,29,0.0 +13552,68,12.5,24,0.0 +13552,25,14,16,0.0 +13552,42,14,46,0.0 +13552,12,38,7,0.0 +13552,30,25.89,45,0.0 +13552,56,38,4,0.0 +13552,11,21,43,0.0 +13552,41,9.65,16,0.0 +13552,22,21,1,0.0 +13552,65,21.05,33,0.0 +13552,32,32,46,0.0 +13552,9,97,44,0.0 +13552,36,19,34,0.0 +13552,53,32.8,4,0.0 +13552,34,14,12,0.0 +13552,66,17,48,0.0 +13552,51,53,21,0.0 +13552,27,43.9,28,0.0 +13552,47,9.5,44,0.0 +13553,47,9.5,45,0.0 +13553,30,25.89,23,0.0 +13553,48,12.75,34,0.0 +13553,9,97,32,0.0 +13553,17,39,15,0.0 +13553,32,32,7,0.0 +13553,21,10,26,0.0 +13553,8,40,43,0.0 +13553,10,31,8,0.0 +13553,67,14,35,0.0 +13553,38,263.5,47,0.0 +13553,39,18,38,0.0 +13553,15,15.5,26,0.0 +13553,74,10,43,0.0 +13553,5,21.35,9,0.0 +13553,63,43.9,45,0.0 +13553,40,18.4,32,0.0 +13553,69,36,18,0.0 +13553,42,14,45,0.0 +13553,50,16.25,47,0.0 +13553,35,18,45,0.0 +13553,45,9.5,47,0.0 +13553,31,12.5,13,0.0 +13553,1,18,28,0.0 +13553,53,32.8,4,0.0 +13553,18,62.5,19,0.0 +13553,22,21,50,0.0 +13553,46,12,41,0.0 +13553,52,7,42,0.0 +13553,43,46,38,0.0 +13553,65,21.05,35,0.0 +13553,49,20,26,0.0 +13553,60,34,22,0.0 +13553,25,14,39,0.0 +13553,6,25,18,0.0 +13553,71,21.5,41,0.0 +13553,61,28.5,13,0.0 +13553,28,45.6,40,0.0 +13554,70,15,24,0.0 +13554,73,15,48,0.0 +13554,21,10,28,0.0 +13554,59,55,9,0.0 +13554,13,6,33,0.0 +13554,43,46,16,0.0 +13554,47,9.5,20,0.0 +13554,76,18,2,0.0 +13554,9,97,48,0.0 +13554,63,43.9,38,0.0 +13554,35,18,16,0.0 +13554,75,7.75,37,0.0 +13554,54,7.45,15,0.0 +13554,60,34,36,0.0 +13554,8,40,18,0.0 +13554,22,21,48,0.0 +13554,42,14,10,0.0 +13554,58,13.25,8,0.0 +13554,28,45.6,8,0.0 +13554,40,18.4,27,0.0 +13554,31,12.5,38,0.0 +13555,7,30,10,0.0 +13555,22,21,22,0.0 +13555,18,62.5,6,0.0 +13555,19,9.2,32,0.0 +13555,48,12.75,10,0.0 +13555,68,12.5,49,0.0 +13555,30,25.89,22,0.0 +13555,74,10,12,0.0 +13555,49,20,30,0.0 +13555,69,36,29,0.0 +13555,62,49.3,6,0.0 +13555,57,19.5,34,0.0 +13555,60,34,31,0.0 +13555,47,9.5,33,0.0 +13555,17,39,42,0.0 +13555,46,12,29,0.0 +13555,21,10,40,0.0 +13555,1,18,28,0.0 +13555,5,21.35,10,0.0 +13555,43,46,43,0.0 +13555,67,14,8,0.0 +13555,44,19.45,15,0.0 +13555,12,38,34,0.0 +13555,66,17,7,0.0 +13555,58,13.25,8,0.0 +13555,71,21.5,33,0.0 +13555,54,7.45,4,0.0 +13555,36,19,44,0.0 +13555,50,16.25,36,0.0 +13555,2,19,15,0.0 +13555,8,40,25,0.0 +13555,13,6,40,0.0 +13555,11,21,50,0.0 +13555,31,12.5,10,0.0 +13555,75,7.75,8,0.0 +13555,14,23.25,1,0.0 +13555,59,55,20,0.0 +13555,42,14,46,0.0 +13555,23,9,12,0.0 +13555,32,32,20,0.0 +13555,6,25,34,0.0 +13555,63,43.9,43,0.0 +13555,34,14,9,0.0 +13555,39,18,19,0.0 +13555,20,81,40,0.0 +13555,61,28.5,44,0.0 +13555,73,15,35,0.0 +13555,55,24,8,0.0 +13555,3,10,42,0.0 +13555,38,263.5,23,0.0 +13555,35,18,37,0.0 +13555,72,34.8,24,0.0 +13555,52,7,35,0.0 +13555,4,22,41,0.0 +13555,41,9.65,22,0.0 +13555,27,43.9,15,0.0 +13555,26,31.23,6,0.0 +13555,25,14,6,0.0 +13555,16,17.45,50,0.0 +13556,69,36,2,0.0 +13556,72,34.8,33,0.0 +13556,16,17.45,24,0.0 +13556,42,14,48,0.0 +13556,76,18,12,0.0 +13556,9,97,46,0.0 +13556,60,34,28,0.0 +13556,41,9.65,35,0.0 +13556,10,31,2,0.0 +13556,2,19,42,0.0 +13556,46,12,27,0.0 +13556,3,10,39,0.0 +13556,55,24,42,0.0 +13556,30,25.89,13,0.0 +13556,8,40,10,0.0 +13556,6,25,23,0.0 +13556,70,15,28,0.0 +13556,17,39,37,0.0 +13556,7,30,3,0.0 +13556,71,21.5,36,0.0 +13556,57,19.5,23,0.0 +13556,39,18,33,0.0 +13556,66,17,49,0.0 +13556,36,19,41,0.0 +13556,12,38,33,0.0 +13556,40,18.4,30,0.0 +13556,14,23.25,48,0.0 +13556,11,21,29,0.0 +13556,20,81,6,0.0 +13556,37,26,34,0.0 +13556,47,9.5,46,0.0 +13556,32,32,6,0.0 +13556,49,20,43,0.0 +13556,31,12.5,48,0.0 +13556,64,33.25,20,0.0 +13556,28,45.6,19,0.0 +13556,77,13,9,0.0 +13556,48,12.75,46,0.0 +13556,5,21.35,15,0.0 +13556,22,21,16,0.0 +13556,58,13.25,18,0.0 +13556,73,15,48,0.0 +13556,45,9.5,17,0.0 +13556,15,15.5,39,0.0 +13556,52,7,1,0.0 +13556,74,10,48,0.0 +13556,53,32.8,10,0.0 +13556,29,123.79,40,0.0 +13556,18,62.5,37,0.0 +13556,44,19.45,48,0.0 +13556,21,10,18,0.0 +13556,68,12.5,22,0.0 +13556,26,31.23,47,0.0 +13556,1,18,36,0.0 +13557,66,17,35,0.0 +13557,28,45.6,13,0.0 +13557,4,22,38,0.0 +13557,44,19.45,5,0.0 +13557,38,263.5,23,0.0 +13557,21,10,4,0.0 +13557,3,10,40,0.0 +13557,34,14,26,0.0 +13557,55,24,2,0.0 +13557,31,12.5,50,0.0 +13557,20,81,43,0.0 +13557,71,21.5,8,0.0 +13557,75,7.75,11,0.0 +13557,18,62.5,44,0.0 +13557,62,49.3,18,0.0 +13557,72,34.8,7,0.0 +13557,77,13,21,0.0 +13557,49,20,16,0.0 +13557,50,16.25,14,0.0 +13557,1,18,50,0.0 +13557,65,21.05,40,0.0 +13557,26,31.23,45,0.0 +13557,40,18.4,20,0.0 +13557,48,12.75,38,0.0 +13557,29,123.79,5,0.0 +13557,16,17.45,12,0.0 +13557,46,12,26,0.0 +13557,56,38,8,0.0 +13557,2,19,34,0.0 +13557,10,31,4,0.0 +13557,63,43.9,45,0.0 +13557,76,18,20,0.0 +13557,53,32.8,9,0.0 +13557,39,18,41,0.0 +13557,9,97,13,0.0 +13557,19,9.2,23,0.0 +13557,52,7,1,0.0 +13557,69,36,13,0.0 +13557,13,6,32,0.0 +13557,12,38,50,0.0 +13557,42,14,16,0.0 +13557,8,40,35,0.0 +13557,57,19.5,5,0.0 +13557,41,9.65,43,0.0 +13557,60,34,48,0.0 +13557,73,15,38,0.0 +13557,17,39,46,0.0 +13557,22,21,32,0.0 +13557,32,32,43,0.0 +13557,14,23.25,21,0.0 +13557,54,7.45,46,0.0 +13557,61,28.5,11,0.0 +13557,24,4.5,28,0.0 +13557,47,9.5,2,0.0 +13557,11,21,45,0.0 +13557,67,14,26,0.0 +13557,43,46,11,0.0 +13557,25,14,36,0.0 +13557,70,15,13,0.0 +13557,37,26,22,0.0 +13557,30,25.89,2,0.0 +13557,51,53,37,0.0 +13557,5,21.35,44,0.0 +13557,64,33.25,31,0.0 +13557,59,55,2,0.0 +13557,45,9.5,10,0.0 +13557,15,15.5,18,0.0 +13557,35,18,23,0.0 +13558,50,16.25,14,0.0 +13558,32,32,29,0.0 +13558,62,49.3,7,0.0 +13558,30,25.89,25,0.0 +13558,15,15.5,46,0.0 +13558,18,62.5,17,0.0 +13558,74,10,14,0.0 +13558,69,36,7,0.0 +13558,77,13,38,0.0 +13558,73,15,39,0.0 +13558,31,12.5,15,0.0 +13558,42,14,32,0.0 +13558,72,34.8,19,0.0 +13558,1,18,39,0.0 +13558,26,31.23,1,0.0 +13558,9,97,36,0.0 +13558,63,43.9,8,0.0 +13558,33,2.5,4,0.0 +13558,55,24,17,0.0 +13558,17,39,4,0.0 +13558,28,45.6,50,0.0 +13558,24,4.5,45,0.0 +13558,64,33.25,41,0.0 +13558,27,43.9,42,0.0 +13558,49,20,9,0.0 +13558,36,19,3,0.0 +13558,58,13.25,19,0.0 +13558,22,21,35,0.0 +13558,34,14,26,0.0 +13558,20,81,27,0.0 +13558,10,31,29,0.0 +13558,23,9,32,0.0 +13558,44,19.45,18,0.0 +13559,24,4.5,21,0.0 +13559,5,21.35,27,0.0 +13559,37,26,24,0.0 +13559,46,12,32,0.0 +13559,38,263.5,1,0.0 +13559,30,25.89,14,0.0 +13559,10,31,3,0.0 +13559,60,34,7,0.0 +13559,2,19,32,0.0 +13559,11,21,29,0.0 +13559,50,16.25,16,0.0 +13559,12,38,34,0.0 +13559,76,18,37,0.0 +13559,73,15,40,0.0 +13559,49,20,22,0.0 +13559,61,28.5,3,0.0 +13559,51,53,7,0.0 +13559,44,19.45,11,0.0 +13559,32,32,32,0.0 +13559,34,14,28,0.0 +13559,8,40,11,0.0 +13559,47,9.5,21,0.0 +13559,67,14,48,0.0 +13559,72,34.8,24,0.0 +13559,1,18,43,0.0 +13559,6,25,44,0.0 +13559,63,43.9,50,0.0 +13559,27,43.9,22,0.0 +13559,25,14,20,0.0 +13559,4,22,39,0.0 +13559,3,10,21,0.0 +13559,45,9.5,42,0.0 +13559,20,81,43,0.0 +13559,28,45.6,43,0.0 +13559,17,39,32,0.0 +13559,22,21,32,0.0 +13559,62,49.3,2,0.0 +13559,68,12.5,24,0.0 +13559,35,18,49,0.0 +13559,39,18,1,0.0 +13559,77,13,13,0.0 +13559,23,9,25,0.0 +13559,57,19.5,50,0.0 +13559,18,62.5,22,0.0 +13559,54,7.45,16,0.0 +13559,48,12.75,47,0.0 +13559,55,24,1,0.0 +13559,13,6,18,0.0 +13559,71,21.5,34,0.0 +13559,59,55,4,0.0 +13559,15,15.5,41,0.0 +13559,75,7.75,32,0.0 +13559,21,10,4,0.0 +13559,74,10,45,0.0 +13559,36,19,14,0.0 +13559,40,18.4,21,0.0 +13559,52,7,14,0.0 +13559,33,2.5,4,0.0 +13559,9,97,9,0.0 +13559,43,46,41,0.0 +13559,7,30,48,0.0 +13559,58,13.25,14,0.0 +13559,66,17,42,0.0 +13559,41,9.65,42,0.0 +13559,31,12.5,14,0.0 +13559,70,15,6,0.0 +13559,42,14,21,0.0 +13559,56,38,28,0.0 +13559,29,123.79,46,0.0 +13560,60,34,27,0.0 +13560,35,18,13,0.0 +13560,74,10,38,0.0 +13560,77,13,39,0.0 +13560,32,32,14,0.0 +13560,39,18,10,0.0 +13560,43,46,32,0.0 +13560,38,263.5,7,0.0 +13560,11,21,20,0.0 +13560,55,24,15,0.0 +13560,40,18.4,12,0.0 +13560,20,81,26,0.0 +13560,9,97,33,0.0 +13560,62,49.3,36,0.0 +13560,45,9.5,27,0.0 +13560,37,26,23,0.0 +13560,72,34.8,2,0.0 +13560,59,55,23,0.0 +13560,17,39,32,0.0 +13560,19,9.2,48,0.0 +13560,56,38,35,0.0 +13560,67,14,22,0.0 +13560,10,31,26,0.0 +13560,63,43.9,32,0.0 +13560,47,9.5,7,0.0 +13560,7,30,2,0.0 +13560,64,33.25,6,0.0 +13560,65,21.05,32,0.0 +13560,5,21.35,7,0.0 +13560,52,7,7,0.0 +13560,36,19,18,0.0 +13561,15,15.5,24,0.0 +13561,40,18.4,16,0.0 +13561,52,7,46,0.0 +13561,20,81,22,0.0 +13561,23,9,39,0.0 +13561,31,12.5,33,0.0 +13561,29,123.79,29,0.0 +13561,49,20,13,0.0 +13561,43,46,13,0.0 +13561,1,18,10,0.0 +13561,39,18,42,0.0 +13561,2,19,20,0.0 +13561,18,62.5,13,0.0 +13561,58,13.25,4,0.0 +13561,53,32.8,38,0.0 +13561,37,26,50,0.0 +13561,33,2.5,40,0.0 +13561,25,14,6,0.0 +13561,68,12.5,15,0.0 +13561,67,14,37,0.0 +13561,5,21.35,39,0.0 +13561,47,9.5,25,0.0 +13561,60,34,35,0.0 +13561,34,14,38,0.0 +13562,16,17.45,32,0.0 +13562,73,15,9,0.0 +13562,7,30,18,0.0 +13562,4,22,24,0.0 +13562,11,21,40,0.0 +13562,5,21.35,19,0.0 +13562,30,25.89,13,0.0 +13562,19,9.2,22,0.0 +13562,58,13.25,41,0.0 +13562,68,12.5,2,0.0 +13562,2,19,18,0.0 +13562,3,10,7,0.0 +13562,77,13,44,0.0 +13562,54,7.45,20,0.0 +13562,67,14,46,0.0 +13562,47,9.5,37,0.0 +13562,24,4.5,40,0.0 +13562,14,23.25,29,0.0 +13562,72,34.8,28,0.0 +13562,63,43.9,26,0.0 +13562,57,19.5,18,0.0 +13562,52,7,5,0.0 +13562,43,46,23,0.0 +13562,8,40,31,0.0 +13562,48,12.75,14,0.0 +13562,62,49.3,13,0.0 +13562,46,12,16,0.0 +13562,6,25,28,0.0 +13562,9,97,44,0.0 +13562,65,21.05,1,0.0 +13562,44,19.45,14,0.0 +13562,23,9,20,0.0 +13562,10,31,37,0.0 +13562,27,43.9,31,0.0 +13562,18,62.5,34,0.0 +13562,66,17,20,0.0 +13562,40,18.4,35,0.0 +13562,71,21.5,11,0.0 +13562,29,123.79,41,0.0 +13562,32,32,26,0.0 +13562,53,32.8,50,0.0 +13562,69,36,8,0.0 +13562,26,31.23,34,0.0 +13562,56,38,21,0.0 +13562,51,53,31,0.0 +13562,38,263.5,48,0.0 +13562,1,18,22,0.0 +13562,45,9.5,47,0.0 +13562,13,6,49,0.0 +13562,49,20,28,0.0 +13562,55,24,31,0.0 +13562,20,81,41,0.0 +13562,17,39,16,0.0 +13562,42,14,14,0.0 +13562,60,34,47,0.0 +13562,15,15.5,23,0.0 +13562,36,19,48,0.0 +13562,76,18,30,0.0 +13563,55,24,24,0.0 +13563,32,32,40,0.0 +13563,71,21.5,43,0.0 +13563,54,7.45,32,0.0 +13563,34,14,43,0.0 +13563,17,39,8,0.0 +13563,58,13.25,14,0.0 +13563,46,12,10,0.0 +13563,44,19.45,42,0.0 +13563,16,17.45,10,0.0 +13563,48,12.75,2,0.0 +13563,29,123.79,17,0.0 +13564,41,9.65,37,0.0 +13564,52,7,14,0.0 +13564,75,7.75,23,0.0 +13564,71,21.5,42,0.0 +13564,45,9.5,47,0.0 +13564,1,18,16,0.0 +13564,28,45.6,34,0.0 +13564,51,53,2,0.0 +13564,64,33.25,6,0.0 +13564,58,13.25,12,0.0 +13564,3,10,4,0.0 +13564,48,12.75,28,0.0 +13564,43,46,35,0.0 +13564,2,19,16,0.0 +13564,5,21.35,47,0.0 +13564,49,20,22,0.0 +13564,17,39,27,0.0 +13564,30,25.89,10,0.0 +13564,55,24,29,0.0 +13564,19,9.2,35,0.0 +13565,16,17.45,8,0.0 +13565,38,263.5,45,0.0 +13565,1,18,20,0.0 +13565,37,26,5,0.0 +13565,15,15.5,12,0.0 +13565,31,12.5,47,0.0 +13565,71,21.5,45,0.0 +13565,33,2.5,35,0.0 +13565,3,10,46,0.0 +13565,48,12.75,12,0.0 +13565,72,34.8,14,0.0 +13565,68,12.5,44,0.0 +13565,40,18.4,17,0.0 +13565,29,123.79,2,0.0 +13565,22,21,8,0.0 +13565,26,31.23,7,0.0 +13565,35,18,22,0.0 +13565,53,32.8,20,0.0 +13565,39,18,11,0.0 +13565,32,32,42,0.0 +13565,13,6,2,0.0 +13565,10,31,31,0.0 +13565,6,25,19,0.0 +13565,5,21.35,26,0.0 +13566,8,40,46,0.0 +13566,20,81,45,0.0 +13566,11,21,12,0.0 +13566,48,12.75,13,0.0 +13566,36,19,5,0.0 +13566,33,2.5,9,0.0 +13566,65,21.05,33,0.0 +13566,26,31.23,28,0.0 +13566,56,38,6,0.0 +13566,51,53,35,0.0 +13566,50,16.25,19,0.0 +13566,10,31,46,0.0 +13566,5,21.35,14,0.0 +13566,28,45.6,37,0.0 +13566,63,43.9,27,0.0 +13566,62,49.3,27,0.0 +13566,19,9.2,33,0.0 +13566,7,30,8,0.0 +13566,71,21.5,29,0.0 +13566,2,19,23,0.0 +13566,67,14,31,0.0 +13566,74,10,18,0.0 +13566,6,25,28,0.0 +13566,75,7.75,31,0.0 +13566,27,43.9,39,0.0 +13566,58,13.25,48,0.0 +13566,66,17,31,0.0 +13566,57,19.5,13,0.0 +13566,61,28.5,35,0.0 +13566,68,12.5,6,0.0 +13566,41,9.65,4,0.0 +13566,23,9,10,0.0 +13566,3,10,29,0.0 +13566,60,34,17,0.0 +13566,70,15,41,0.0 +13566,35,18,41,0.0 +13566,25,14,9,0.0 +13566,45,9.5,26,0.0 +13566,53,32.8,33,0.0 +13566,1,18,12,0.0 +13566,14,23.25,22,0.0 +13566,46,12,20,0.0 +13566,22,21,14,0.0 +13566,31,12.5,17,0.0 +13566,16,17.45,18,0.0 +13566,69,36,33,0.0 +13566,59,55,13,0.0 +13566,49,20,7,0.0 +13566,37,26,22,0.0 +13566,52,7,16,0.0 +13566,64,33.25,24,0.0 +13566,13,6,16,0.0 +13566,4,22,28,0.0 +13566,17,39,15,0.0 +13566,43,46,35,0.0 +13566,24,4.5,36,0.0 +13566,39,18,6,0.0 +13566,40,18.4,12,0.0 +13566,44,19.45,48,0.0 +13566,47,9.5,21,0.0 +13566,18,62.5,33,0.0 +13566,54,7.45,32,0.0 +13566,32,32,33,0.0 +13566,38,263.5,41,0.0 +13566,12,38,3,0.0 +13566,21,10,32,0.0 +13566,9,97,24,0.0 +13566,73,15,18,0.0 +13566,15,15.5,30,0.0 +13566,29,123.79,36,0.0 +13566,55,24,34,0.0 +13566,72,34.8,47,0.0 +13566,34,14,2,0.0 +13566,30,25.89,23,0.0 +13566,76,18,48,0.0 +13566,42,14,26,0.0 +13566,77,13,45,0.0 +13567,66,17,31,0.0 +13567,57,19.5,49,0.0 +13567,48,12.75,11,0.0 +13567,13,6,35,0.0 +13567,37,26,23,0.0 +13567,47,9.5,11,0.0 +13567,43,46,41,0.0 +13567,20,81,29,0.0 +13567,15,15.5,10,0.0 +13567,2,19,19,0.0 +13567,36,19,49,0.0 +13567,38,263.5,9,0.0 +13567,5,21.35,35,0.0 +13567,69,36,26,0.0 +13567,45,9.5,40,0.0 +13567,60,34,15,0.0 +13567,11,21,9,0.0 +13567,22,21,21,0.0 +13567,29,123.79,27,0.0 +13567,63,43.9,28,0.0 +13567,55,24,24,0.0 +13567,3,10,14,0.0 +13568,42,14,38,0.0 +13568,53,32.8,16,0.0 +13568,2,19,10,0.0 +13568,36,19,9,0.0 +13568,12,38,42,0.0 +13568,24,4.5,15,0.0 +13568,39,18,25,0.0 +13568,46,12,16,0.0 +13568,66,17,38,0.0 +13568,11,21,42,0.0 +13568,25,14,44,0.0 +13568,23,9,42,0.0 +13568,77,13,9,0.0 +13568,7,30,12,0.0 +13568,18,62.5,19,0.0 +13568,65,21.05,15,0.0 +13568,15,15.5,49,0.0 +13568,37,26,33,0.0 +13568,64,33.25,35,0.0 +13568,59,55,17,0.0 +13568,50,16.25,35,0.0 +13568,69,36,41,0.0 +13568,4,22,43,0.0 +13568,60,34,37,0.0 +13568,13,6,10,0.0 +13569,36,19,2,0.0 +13570,75,7.75,17,0.0 +13570,58,13.25,2,0.0 +13570,62,49.3,22,0.0 +13570,15,15.5,39,0.0 +13570,70,15,47,0.0 +13570,60,34,18,0.0 +13570,31,12.5,32,0.0 +13570,21,10,46,0.0 +13570,10,31,18,0.0 +13570,18,62.5,15,0.0 +13570,45,9.5,49,0.0 +13570,25,14,4,0.0 +13570,50,16.25,41,0.0 +13570,35,18,21,0.0 +13570,3,10,35,0.0 +13570,30,25.89,15,0.0 +13570,2,19,40,0.0 +13570,33,2.5,29,0.0 +13570,37,26,41,0.0 +13570,41,9.65,7,0.0 +13570,65,21.05,43,0.0 +13570,63,43.9,49,0.0 +13570,57,19.5,15,0.0 +13570,47,9.5,47,0.0 +13570,24,4.5,47,0.0 +13570,12,38,24,0.0 +13570,61,28.5,14,0.0 +13570,7,30,40,0.0 +13570,53,32.8,33,0.0 +13570,43,46,48,0.0 +13570,55,24,36,0.0 +13570,13,6,39,0.0 +13570,1,18,20,0.0 +13570,4,22,41,0.0 +13571,66,17,12,0.0 +13571,35,18,8,0.0 +13571,10,31,24,0.0 +13571,68,12.5,11,0.0 +13571,67,14,16,0.0 +13571,44,19.45,31,0.0 +13571,62,49.3,8,0.0 +13571,22,21,10,0.0 +13571,34,14,15,0.0 +13571,42,14,26,0.0 +13571,3,10,16,0.0 +13571,52,7,16,0.0 +13571,20,81,46,0.0 +13571,11,21,7,0.0 +13571,46,12,29,0.0 +13571,55,24,1,0.0 +13571,72,34.8,1,0.0 +13571,61,28.5,17,0.0 +13571,16,17.45,27,0.0 +13571,43,46,17,0.0 +13571,8,40,42,0.0 +13571,60,34,14,0.0 +13571,50,16.25,7,0.0 +13571,7,30,4,0.0 +13571,31,12.5,22,0.0 +13571,30,25.89,16,0.0 +13571,13,6,4,0.0 +13571,63,43.9,43,0.0 +13571,4,22,13,0.0 +13571,17,39,25,0.0 +13571,73,15,12,0.0 +13571,53,32.8,5,0.0 +13571,29,123.79,24,0.0 +13571,37,26,9,0.0 +13571,19,9.2,46,0.0 +13571,77,13,27,0.0 +13571,12,38,45,0.0 +13571,57,19.5,31,0.0 +13571,25,14,35,0.0 +13571,9,97,21,0.0 +13571,54,7.45,7,0.0 +13571,36,19,24,0.0 +13571,75,7.75,26,0.0 +13571,18,62.5,30,0.0 +13571,23,9,35,0.0 +13571,58,13.25,22,0.0 +13571,51,53,25,0.0 +13571,70,15,24,0.0 +13571,27,43.9,12,0.0 +13571,15,15.5,32,0.0 +13571,2,19,48,0.0 +13572,10,31,20,0.0 +13572,67,14,41,0.0 +13572,76,18,4,0.0 +13572,27,43.9,37,0.0 +13572,19,9.2,42,0.0 +13572,34,14,28,0.0 +13572,4,22,37,0.0 +13572,56,38,3,0.0 +13572,41,9.65,12,0.0 +13572,3,10,50,0.0 +13572,70,15,40,0.0 +13572,26,31.23,26,0.0 +13572,75,7.75,49,0.0 +13572,47,9.5,23,0.0 +13573,14,23.25,6,0.0 +13573,35,18,15,0.0 +13573,47,9.5,43,0.0 +13573,50,16.25,39,0.0 +13573,33,2.5,36,0.0 +13573,42,14,22,0.0 +13573,65,21.05,32,0.0 +13573,6,25,11,0.0 +13573,2,19,31,0.0 +13573,57,19.5,40,0.0 +13573,76,18,13,0.0 +13574,31,12.5,44,0.0 +13574,10,31,8,0.0 +13574,40,18.4,35,0.0 +13574,35,18,17,0.0 +13574,62,49.3,24,0.0 +13574,52,7,34,0.0 +13574,13,6,45,0.0 +13574,24,4.5,22,0.0 +13574,61,28.5,37,0.0 +13575,35,18,35,0.0 +13575,28,45.6,15,0.0 +13575,29,123.79,47,0.0 +13575,31,12.5,38,0.0 +13575,4,22,23,0.0 +13575,41,9.65,39,0.0 +13575,63,43.9,27,0.0 +13575,5,21.35,30,0.0 +13575,48,12.75,27,0.0 +13575,46,12,37,0.0 +13575,74,10,8,0.0 +13575,55,24,35,0.0 +13575,70,15,18,0.0 +13575,24,4.5,18,0.0 +13575,3,10,8,0.0 +13575,69,36,18,0.0 +13575,45,9.5,4,0.0 +13575,8,40,27,0.0 +13575,60,34,13,0.0 +13575,40,18.4,11,0.0 +13575,57,19.5,16,0.0 +13575,76,18,47,0.0 +13575,39,18,37,0.0 +13575,66,17,42,0.0 +13575,50,16.25,37,0.0 +13575,20,81,6,0.0 +13575,30,25.89,36,0.0 +13575,47,9.5,21,0.0 +13575,73,15,5,0.0 +13575,52,7,17,0.0 +13575,6,25,37,0.0 +13575,67,14,25,0.0 +13575,37,26,30,0.0 +13575,18,62.5,7,0.0 +13575,72,34.8,24,0.0 +13575,2,19,30,0.0 +13575,33,2.5,4,0.0 +13575,62,49.3,15,0.0 +13575,27,43.9,19,0.0 +13575,43,46,37,0.0 +13575,25,14,14,0.0 +13575,61,28.5,17,0.0 +13575,38,263.5,16,0.0 +13575,42,14,40,0.0 +13575,23,9,44,0.0 +13575,26,31.23,23,0.0 +13575,7,30,28,0.0 +13575,19,9.2,17,0.0 +13575,15,15.5,20,0.0 +13575,51,53,6,0.0 +13575,56,38,47,0.0 +13575,77,13,28,0.0 +13575,21,10,18,0.0 +13575,11,21,41,0.0 +13575,58,13.25,11,0.0 +13575,12,38,23,0.0 +13575,14,23.25,37,0.0 +13575,9,97,44,0.0 +13575,34,14,50,0.0 +13576,30,25.89,12,0.0 +13576,15,15.5,25,0.0 +13576,69,36,21,0.0 +13576,32,32,12,0.0 +13576,56,38,35,0.0 +13576,72,34.8,20,0.0 +13576,47,9.5,30,0.0 +13576,39,18,30,0.0 +13576,4,22,11,0.0 +13576,26,31.23,41,0.0 +13576,23,9,49,0.0 +13576,31,12.5,25,0.0 +13576,48,12.75,26,0.0 +13576,60,34,49,0.0 +13576,36,19,41,0.0 +13576,10,31,9,0.0 +13576,55,24,42,0.0 +13576,73,15,2,0.0 +13576,51,53,4,0.0 +13576,28,45.6,5,0.0 +13576,70,15,45,0.0 +13576,58,13.25,40,0.0 +13576,20,81,23,0.0 +13576,38,263.5,42,0.0 +13576,7,30,33,0.0 +13576,71,21.5,33,0.0 +13576,66,17,13,0.0 +13576,68,12.5,1,0.0 +13576,75,7.75,26,0.0 +13576,18,62.5,15,0.0 +13576,76,18,6,0.0 +13576,27,43.9,16,0.0 +13576,1,18,18,0.0 +13576,53,32.8,11,0.0 +13576,13,6,28,0.0 +13576,12,38,14,0.0 +13576,40,18.4,20,0.0 +13576,5,21.35,40,0.0 +13577,40,18.4,27,0.0 +13577,56,38,6,0.0 +13577,43,46,50,0.0 +13577,20,81,16,0.0 +13577,37,26,50,0.0 +13577,12,38,18,0.0 +13577,13,6,37,0.0 +13577,5,21.35,5,0.0 +13577,33,2.5,5,0.0 +13577,73,15,5,0.0 +13577,2,19,50,0.0 +13577,74,10,37,0.0 +13577,4,22,4,0.0 +13577,66,17,37,0.0 +13577,77,13,27,0.0 +13577,41,9.65,50,0.0 +13577,11,21,42,0.0 +13577,27,43.9,3,0.0 +13577,63,43.9,6,0.0 +13577,44,19.45,46,0.0 +13577,23,9,48,0.0 +13577,32,32,2,0.0 +13577,36,19,33,0.0 +13577,10,31,4,0.0 +13577,50,16.25,37,0.0 +13577,60,34,27,0.0 +13577,72,34.8,49,0.0 +13577,48,12.75,2,0.0 +13577,34,14,12,0.0 +13577,51,53,16,0.0 +13577,70,15,13,0.0 +13577,17,39,14,0.0 +13577,22,21,4,0.0 +13577,18,62.5,2,0.0 +13577,58,13.25,14,0.0 +13577,76,18,41,0.0 +13577,46,12,27,0.0 +13577,7,30,42,0.0 +13577,71,21.5,43,0.0 +13577,75,7.75,3,0.0 +13577,6,25,38,0.0 +13577,35,18,32,0.0 +13577,9,97,20,0.0 +13577,28,45.6,7,0.0 +13577,55,24,24,0.0 +13577,62,49.3,17,0.0 +13577,26,31.23,45,0.0 +13577,53,32.8,33,0.0 +13577,69,36,46,0.0 +13577,68,12.5,6,0.0 +13577,30,25.89,10,0.0 +13577,16,17.45,42,0.0 +13577,54,7.45,6,0.0 +13577,38,263.5,24,0.0 +13577,1,18,22,0.0 +13577,8,40,48,0.0 +13577,25,14,21,0.0 +13577,67,14,7,0.0 +13577,24,4.5,17,0.0 +13577,39,18,7,0.0 +13577,21,10,9,0.0 +13577,3,10,5,0.0 +13578,33,2.5,25,0.0 +13578,47,9.5,9,0.0 +13578,54,7.45,34,0.0 +13578,37,26,19,0.0 +13578,69,36,33,0.0 +13578,50,16.25,27,0.0 +13578,48,12.75,24,0.0 +13578,74,10,12,0.0 +13578,57,19.5,24,0.0 +13578,49,20,35,0.0 +13578,27,43.9,11,0.0 +13578,24,4.5,36,0.0 +13578,4,22,15,0.0 +13578,52,7,47,0.0 +13578,51,53,15,0.0 +13578,13,6,4,0.0 +13578,39,18,14,0.0 +13578,66,17,25,0.0 +13578,20,81,22,0.0 +13578,5,21.35,15,0.0 +13578,23,9,23,0.0 +13578,38,263.5,16,0.0 +13578,67,14,26,0.0 +13578,70,15,36,0.0 +13578,3,10,29,0.0 +13578,15,15.5,39,0.0 +13578,44,19.45,33,0.0 +13578,26,31.23,45,0.0 +13578,7,30,36,0.0 +13578,45,9.5,6,0.0 +13578,42,14,47,0.0 +13578,10,31,10,0.0 +13578,11,21,15,0.0 +13578,22,21,29,0.0 +13578,75,7.75,19,0.0 +13578,56,38,2,0.0 +13578,63,43.9,37,0.0 +13578,46,12,28,0.0 +13578,25,14,27,0.0 +13578,64,33.25,13,0.0 +13578,40,18.4,36,0.0 +13578,18,62.5,38,0.0 +13578,73,15,30,0.0 +13578,6,25,12,0.0 +13578,29,123.79,7,0.0 +13579,64,33.25,30,0.0 +13579,5,21.35,38,0.0 +13579,59,55,19,0.0 +13579,67,14,37,0.0 +13579,20,81,17,0.0 +13579,16,17.45,43,0.0 +13579,27,43.9,23,0.0 +13579,40,18.4,18,0.0 +13579,17,39,21,0.0 +13579,74,10,27,0.0 +13579,66,17,3,0.0 +13579,1,18,4,0.0 +13579,55,24,38,0.0 +13579,62,49.3,13,0.0 +13579,6,25,38,0.0 +13579,71,21.5,14,0.0 +13579,39,18,3,0.0 +13579,4,22,21,0.0 +13579,22,21,32,0.0 +13579,25,14,17,0.0 +13579,76,18,28,0.0 +13579,56,38,40,0.0 +13579,45,9.5,1,0.0 +13579,2,19,41,0.0 +13579,49,20,33,0.0 +13579,58,13.25,15,0.0 +13579,46,12,21,0.0 +13579,30,25.89,33,0.0 +13579,3,10,50,0.0 +13579,60,34,39,0.0 +13579,73,15,50,0.0 +13579,24,4.5,25,0.0 +13579,38,263.5,28,0.0 +13579,54,7.45,2,0.0 +13579,53,32.8,32,0.0 +13580,9,97,44,0.0 +13580,27,43.9,41,0.0 +13580,26,31.23,31,0.0 +13580,32,32,47,0.0 +13580,24,4.5,41,0.0 +13580,56,38,44,0.0 +13580,64,33.25,50,0.0 +13580,50,16.25,15,0.0 +13580,61,28.5,16,0.0 +13580,28,45.6,17,0.0 +13580,2,19,35,0.0 +13580,42,14,9,0.0 +13580,70,15,46,0.0 +13580,31,12.5,25,0.0 +13580,23,9,22,0.0 +13580,16,17.45,45,0.0 +13580,11,21,3,0.0 +13580,68,12.5,13,0.0 +13580,77,13,7,0.0 +13580,39,18,16,0.0 +13580,43,46,7,0.0 +13580,35,18,23,0.0 +13580,22,21,10,0.0 +13580,74,10,13,0.0 +13580,37,26,19,0.0 +13580,71,21.5,15,0.0 +13580,46,12,41,0.0 +13581,58,13.25,13,0.0 +13581,50,16.25,9,0.0 +13581,75,7.75,49,0.0 +13581,17,39,7,0.0 +13581,13,6,22,0.0 +13581,16,17.45,30,0.0 +13581,29,123.79,26,0.0 +13581,4,22,2,0.0 +13581,57,19.5,18,0.0 +13581,5,21.35,1,0.0 +13581,35,18,37,0.0 +13581,27,43.9,2,0.0 +13581,70,15,44,0.0 +13581,22,21,46,0.0 +13582,40,18.4,43,0.0 +13582,41,9.65,26,0.0 +13582,39,18,9,0.0 +13582,5,21.35,35,0.0 +13582,77,13,2,0.0 +13582,7,30,39,0.0 +13582,26,31.23,6,0.0 +13582,6,25,43,0.0 +13582,66,17,42,0.0 +13582,62,49.3,9,0.0 +13582,54,7.45,10,0.0 +13582,32,32,2,0.0 +13582,74,10,3,0.0 +13582,14,23.25,19,0.0 +13582,16,17.45,38,0.0 +13582,46,12,34,0.0 +13582,73,15,7,0.0 +13582,49,20,7,0.0 +13582,65,21.05,13,0.0 +13582,25,14,48,0.0 +13582,35,18,48,0.0 +13582,52,7,33,0.0 +13582,59,55,21,0.0 +13582,9,97,48,0.0 +13582,20,81,44,0.0 +13582,8,40,21,0.0 +13582,3,10,28,0.0 +13582,17,39,25,0.0 +13582,70,15,2,0.0 +13582,53,32.8,50,0.0 +13582,18,62.5,2,0.0 +13582,55,24,21,0.0 +13582,24,4.5,8,0.0 +13582,44,19.45,50,0.0 +13582,51,53,38,0.0 +13582,22,21,37,0.0 +13582,45,9.5,32,0.0 +13582,76,18,22,0.0 +13582,48,12.75,37,0.0 +13582,29,123.79,28,0.0 +13582,11,21,7,0.0 +13582,71,21.5,1,0.0 +13582,63,43.9,50,0.0 +13582,60,34,13,0.0 +13582,57,19.5,41,0.0 +13582,2,19,20,0.0 +13582,1,18,43,0.0 +13582,15,15.5,34,0.0 +13582,37,26,44,0.0 +13582,68,12.5,13,0.0 +13582,33,2.5,40,0.0 +13582,50,16.25,33,0.0 +13582,12,38,5,0.0 +13582,31,12.5,12,0.0 +13582,64,33.25,2,0.0 +13582,61,28.5,36,0.0 +13582,30,25.89,30,0.0 +13582,42,14,40,0.0 +13582,10,31,8,0.0 +13582,28,45.6,30,0.0 +13582,34,14,33,0.0 +13582,23,9,33,0.0 +13582,27,43.9,45,0.0 +13582,13,6,27,0.0 +13582,67,14,7,0.0 +13582,75,7.75,7,0.0 +13582,4,22,19,0.0 +13582,72,34.8,21,0.0 +13582,21,10,4,0.0 +13582,36,19,19,0.0 +13582,56,38,14,0.0 +13582,38,263.5,17,0.0 +13582,69,36,26,0.0 +13582,58,13.25,12,0.0 +13582,43,46,8,0.0 +13582,19,9.2,44,0.0 +13583,39,18,21,0.0 +13583,13,6,39,0.0 +13583,2,19,40,0.0 +13583,30,25.89,1,0.0 +13583,31,12.5,42,0.0 +13583,20,81,29,0.0 +13583,67,14,47,0.0 +13583,52,7,4,0.0 +13583,23,9,34,0.0 +13583,50,16.25,48,0.0 +13583,55,24,39,0.0 +13583,59,55,42,0.0 +13583,24,4.5,17,0.0 +13583,57,19.5,30,0.0 +13583,75,7.75,22,0.0 +13583,21,10,30,0.0 +13583,16,17.45,4,0.0 +13583,28,45.6,13,0.0 +13583,58,13.25,43,0.0 +13583,43,46,9,0.0 +13583,1,18,44,0.0 +13583,76,18,13,0.0 +13583,40,18.4,20,0.0 +13583,19,9.2,19,0.0 +13583,33,2.5,25,0.0 +13583,73,15,33,0.0 +13583,60,34,26,0.0 +13583,8,40,28,0.0 +13583,64,33.25,26,0.0 +13583,48,12.75,41,0.0 +13583,7,30,7,0.0 +13583,15,15.5,26,0.0 +13583,49,20,5,0.0 +13583,45,9.5,23,0.0 +13583,29,123.79,20,0.0 +13583,38,263.5,38,0.0 +13583,68,12.5,35,0.0 +13583,18,62.5,37,0.0 +13583,11,21,3,0.0 +13583,34,14,47,0.0 +13583,27,43.9,8,0.0 +13583,17,39,40,0.0 +13583,26,31.23,3,0.0 +13583,10,31,20,0.0 +13583,66,17,12,0.0 +13583,25,14,46,0.0 +13583,46,12,48,0.0 +13583,32,32,34,0.0 +13583,4,22,36,0.0 +13583,9,97,25,0.0 +13583,44,19.45,21,0.0 +13583,71,21.5,34,0.0 +13583,37,26,12,0.0 +13583,14,23.25,19,0.0 +13584,48,12.75,49,0.0 +13584,62,49.3,23,0.0 +13584,9,97,9,0.0 +13584,7,30,38,0.0 +13584,56,38,44,0.0 +13585,34,14,28,0.0 +13585,51,53,11,0.0 +13585,71,21.5,1,0.0 +13585,66,17,50,0.0 +13585,44,19.45,31,0.0 +13585,37,26,36,0.0 +13585,59,55,33,0.0 +13585,62,49.3,43,0.0 +13585,48,12.75,32,0.0 +13585,14,23.25,19,0.0 +13585,75,7.75,13,0.0 +13585,63,43.9,40,0.0 +13585,20,81,4,0.0 +13585,5,21.35,7,0.0 +13585,40,18.4,11,0.0 +13585,6,25,37,0.0 +13585,47,9.5,20,0.0 +13585,18,62.5,23,0.0 +13585,69,36,30,0.0 +13585,23,9,38,0.0 +13585,38,263.5,45,0.0 +13585,3,10,10,0.0 +13585,50,16.25,27,0.0 +13585,39,18,26,0.0 +13585,32,32,5,0.0 +13585,67,14,36,0.0 +13585,25,14,3,0.0 +13585,52,7,2,0.0 +13585,72,34.8,22,0.0 +13585,43,46,38,0.0 +13585,8,40,11,0.0 +13585,26,31.23,16,0.0 +13585,7,30,6,0.0 +13585,53,32.8,23,0.0 +13585,2,19,3,0.0 +13585,22,21,12,0.0 +13585,70,15,48,0.0 +13585,33,2.5,38,0.0 +13585,49,20,38,0.0 +13585,42,14,23,0.0 +13585,56,38,43,0.0 +13585,10,31,21,0.0 +13586,31,12.5,21,0.0 +13586,47,9.5,11,0.0 +13586,18,62.5,4,0.0 +13586,33,2.5,35,0.0 +13586,1,18,9,0.0 +13586,40,18.4,32,0.0 +13586,38,263.5,23,0.0 +13586,69,36,31,0.0 +13586,58,13.25,13,0.0 +13586,52,7,29,0.0 +13586,71,21.5,29,0.0 +13586,3,10,34,0.0 +13586,53,32.8,29,0.0 +13586,75,7.75,42,0.0 +13586,13,6,40,0.0 +13586,66,17,46,0.0 +13586,8,40,2,0.0 +13586,11,21,44,0.0 +13587,55,24,4,0.0 +13587,51,53,19,0.0 +13587,43,46,27,0.0 +13587,32,32,35,0.0 +13587,1,18,42,0.0 +13587,76,18,29,0.0 +13587,77,13,14,0.0 +13587,21,10,40,0.0 +13587,38,263.5,37,0.0 +13587,3,10,43,0.0 +13587,25,14,12,0.0 +13587,2,19,3,0.0 +13587,69,36,40,0.0 +13587,72,34.8,41,0.0 +13587,6,25,37,0.0 +13587,56,38,12,0.0 +13587,10,31,26,0.0 +13587,9,97,40,0.0 +13587,8,40,4,0.0 +13587,17,39,34,0.0 +13587,58,13.25,7,0.0 +13587,7,30,36,0.0 +13587,60,34,40,0.0 +13587,24,4.5,12,0.0 +13587,5,21.35,7,0.0 +13587,22,21,46,0.0 +13588,53,32.8,4,0.0 +13588,38,263.5,17,0.0 +13588,70,15,30,0.0 +13588,36,19,27,0.0 +13588,27,43.9,46,0.0 +13588,58,13.25,9,0.0 +13588,32,32,42,0.0 +13588,10,31,11,0.0 +13588,33,2.5,47,0.0 +13588,62,49.3,23,0.0 +13588,41,9.65,4,0.0 +13588,14,23.25,15,0.0 +13588,61,28.5,20,0.0 +13588,26,31.23,6,0.0 +13588,9,97,20,0.0 +13588,49,20,47,0.0 +13588,77,13,39,0.0 +13588,21,10,22,0.0 +13588,51,53,23,0.0 +13588,69,36,32,0.0 +13588,75,7.75,4,0.0 +13588,29,123.79,47,0.0 +13588,22,21,38,0.0 +13588,5,21.35,6,0.0 +13588,6,25,45,0.0 +13588,46,12,18,0.0 +13588,28,45.6,29,0.0 +13588,52,7,44,0.0 +13588,2,19,20,0.0 +13588,73,15,46,0.0 +13588,19,9.2,42,0.0 +13588,45,9.5,19,0.0 +13588,18,62.5,14,0.0 +13588,71,21.5,44,0.0 +13588,60,34,4,0.0 +13588,30,25.89,43,0.0 +13588,56,38,17,0.0 +13588,43,46,18,0.0 +13588,11,21,29,0.0 +13588,39,18,50,0.0 +13588,1,18,13,0.0 +13588,13,6,40,0.0 +13588,44,19.45,20,0.0 +13588,68,12.5,33,0.0 +13588,54,7.45,16,0.0 +13588,76,18,8,0.0 +13588,66,17,46,0.0 +13588,12,38,10,0.0 +13588,74,10,44,0.0 +13588,42,14,38,0.0 +13588,72,34.8,6,0.0 +13588,20,81,8,0.0 +13588,50,16.25,45,0.0 +13588,55,24,11,0.0 +13588,25,14,45,0.0 +13588,65,21.05,27,0.0 +13588,57,19.5,8,0.0 +13588,8,40,4,0.0 +13588,48,12.75,10,0.0 +13588,7,30,27,0.0 +13588,24,4.5,34,0.0 +13588,40,18.4,39,0.0 +13588,4,22,44,0.0 +13588,23,9,46,0.0 +13588,47,9.5,29,0.0 +13588,35,18,44,0.0 +13588,63,43.9,15,0.0 +13588,31,12.5,26,0.0 +13589,23,9,2,0.0 +13589,35,18,32,0.0 +13589,34,14,12,0.0 +13590,7,30,41,0.0 +13590,35,18,41,0.0 +13590,38,263.5,26,0.0 +13590,69,36,48,0.0 +13590,50,16.25,27,0.0 +13590,75,7.75,3,0.0 +13590,42,14,6,0.0 +13590,13,6,49,0.0 +13590,8,40,17,0.0 +13590,16,17.45,26,0.0 +13590,74,10,50,0.0 +13590,44,19.45,45,0.0 +13590,45,9.5,33,0.0 +13590,21,10,1,0.0 +13590,41,9.65,41,0.0 +13590,52,7,32,0.0 +13590,4,22,48,0.0 +13590,12,38,14,0.0 +13590,23,9,44,0.0 +13590,63,43.9,9,0.0 +13590,61,28.5,30,0.0 +13590,15,15.5,36,0.0 +13591,46,12,28,0.0 +13591,34,14,30,0.0 +13591,39,18,20,0.0 +13591,22,21,41,0.0 +13591,61,28.5,34,0.0 +13591,66,17,46,0.0 +13591,56,38,40,0.0 +13591,5,21.35,4,0.0 +13591,74,10,23,0.0 +13591,6,25,14,0.0 +13591,16,17.45,38,0.0 +13591,59,55,18,0.0 +13591,10,31,2,0.0 +13591,44,19.45,13,0.0 +13591,21,10,7,0.0 +13591,48,12.75,35,0.0 +13591,38,263.5,34,0.0 +13591,60,34,39,0.0 +13591,7,30,4,0.0 +13591,73,15,16,0.0 +13591,67,14,24,0.0 +13591,52,7,38,0.0 +13591,15,15.5,35,0.0 +13591,32,32,23,0.0 +13591,36,19,2,0.0 +13591,14,23.25,30,0.0 +13591,70,15,47,0.0 +13591,26,31.23,6,0.0 +13591,64,33.25,25,0.0 +13591,37,26,11,0.0 +13591,50,16.25,4,0.0 +13591,20,81,35,0.0 +13591,19,9.2,14,0.0 +13591,55,24,4,0.0 +13591,33,2.5,9,0.0 +13591,62,49.3,48,0.0 +13591,1,18,26,0.0 +13591,17,39,5,0.0 +13591,69,36,33,0.0 +13591,25,14,16,0.0 +13591,23,9,9,0.0 +13591,45,9.5,15,0.0 +13591,31,12.5,4,0.0 +13591,28,45.6,7,0.0 +13591,2,19,42,0.0 +13591,71,21.5,33,0.0 +13591,9,97,10,0.0 +13591,30,25.89,39,0.0 +13591,18,62.5,32,0.0 +13591,75,7.75,34,0.0 +13591,68,12.5,47,0.0 +13591,63,43.9,15,0.0 +13591,27,43.9,23,0.0 +13591,43,46,14,0.0 +13591,11,21,23,0.0 +13591,58,13.25,44,0.0 +13591,3,10,7,0.0 +13591,49,20,28,0.0 +13592,6,25,34,0.0 +13592,57,19.5,40,0.0 +13592,75,7.75,2,0.0 +13592,36,19,7,0.0 +13592,74,10,9,0.0 +13592,25,14,36,0.0 +13592,33,2.5,32,0.0 +13592,14,23.25,3,0.0 +13592,72,34.8,18,0.0 +13592,77,13,28,0.0 +13592,66,17,1,0.0 +13592,60,34,32,0.0 +13592,5,21.35,30,0.0 +13592,69,36,49,0.0 +13592,48,12.75,35,0.0 +13592,17,39,29,0.0 +13592,46,12,48,0.0 +13592,22,21,2,0.0 +13592,35,18,23,0.0 +13592,71,21.5,7,0.0 +13592,15,15.5,27,0.0 +13592,23,9,45,0.0 +13592,8,40,12,0.0 +13592,3,10,23,0.0 +13592,47,9.5,20,0.0 +13592,56,38,35,0.0 +13592,73,15,20,0.0 +13592,1,18,6,0.0 +13592,41,9.65,25,0.0 +13592,40,18.4,16,0.0 +13593,48,12.75,19,0.0 +13593,46,12,31,0.0 +13593,20,81,10,0.0 +13593,47,9.5,15,0.0 +13593,38,263.5,49,0.0 +13593,17,39,1,0.0 +13593,62,49.3,20,0.0 +13593,54,7.45,31,0.0 +13593,55,24,19,0.0 +13593,19,9.2,14,0.0 +13593,75,7.75,7,0.0 +13593,53,32.8,20,0.0 +13593,71,21.5,14,0.0 +13593,12,38,29,0.0 +13593,18,62.5,5,0.0 +13593,69,36,2,0.0 +13593,35,18,15,0.0 +13593,58,13.25,12,0.0 +13593,8,40,40,0.0 +13593,36,19,24,0.0 +13593,25,14,9,0.0 +13593,15,15.5,21,0.0 +13593,34,14,9,0.0 +13593,43,46,43,0.0 +13593,63,43.9,3,0.0 +13593,68,12.5,32,0.0 +13593,33,2.5,22,0.0 +13593,16,17.45,44,0.0 +13593,22,21,39,0.0 +13593,56,38,7,0.0 +13593,7,30,19,0.0 +13593,45,9.5,25,0.0 +13593,50,16.25,29,0.0 +13593,77,13,29,0.0 +13594,38,263.5,37,0.0 +13594,40,18.4,37,0.0 +13594,34,14,44,0.0 +13594,67,14,24,0.0 +13594,45,9.5,44,0.0 +13594,53,32.8,15,0.0 +13594,71,21.5,26,0.0 +13594,14,23.25,43,0.0 +13594,3,10,37,0.0 +13594,59,55,49,0.0 +13594,24,4.5,28,0.0 +13594,27,43.9,15,0.0 +13594,66,17,46,0.0 +13594,31,12.5,7,0.0 +13594,37,26,35,0.0 +13594,72,34.8,5,0.0 +13594,1,18,43,0.0 +13594,54,7.45,49,0.0 +13594,46,12,43,0.0 +13594,41,9.65,31,0.0 +13594,56,38,47,0.0 +13594,12,38,28,0.0 +13594,68,12.5,3,0.0 +13594,16,17.45,11,0.0 +13594,51,53,46,0.0 +13594,52,7,8,0.0 +13594,36,19,7,0.0 +13594,15,15.5,7,0.0 +13594,77,13,5,0.0 +13594,61,28.5,50,0.0 +13594,19,9.2,3,0.0 +13594,2,19,41,0.0 +13594,28,45.6,48,0.0 +13594,22,21,37,0.0 +13594,39,18,47,0.0 +13594,73,15,15,0.0 +13594,5,21.35,30,0.0 +13594,64,33.25,11,0.0 +13594,58,13.25,12,0.0 +13594,47,9.5,40,0.0 +13594,33,2.5,22,0.0 +13594,48,12.75,41,0.0 +13594,30,25.89,5,0.0 +13594,21,10,35,0.0 +13594,10,31,45,0.0 +13594,6,25,14,0.0 +13594,23,9,6,0.0 +13594,44,19.45,7,0.0 +13594,4,22,49,0.0 +13595,75,7.75,44,0.0 +13595,70,15,26,0.0 +13595,60,34,13,0.0 +13595,36,19,9,0.0 +13595,4,22,3,0.0 +13595,32,32,30,0.0 +13595,56,38,35,0.0 +13595,69,36,36,0.0 +13595,25,14,37,0.0 +13595,39,18,40,0.0 +13595,26,31.23,32,0.0 +13595,27,43.9,4,0.0 +13595,63,43.9,35,0.0 +13595,8,40,10,0.0 +13595,23,9,45,0.0 +13595,18,62.5,27,0.0 +13595,61,28.5,49,0.0 +13595,7,30,32,0.0 +13595,66,17,47,0.0 +13595,12,38,42,0.0 +13595,24,4.5,3,0.0 +13595,11,21,43,0.0 +13595,15,15.5,4,0.0 +13595,46,12,9,0.0 +13595,3,10,33,0.0 +13595,57,19.5,20,0.0 +13595,9,97,9,0.0 +13596,53,32.8,43,0.0 +13596,40,18.4,20,0.0 +13596,51,53,48,0.0 +13596,24,4.5,39,0.0 +13596,8,40,8,0.0 +13596,72,34.8,15,0.0 +13596,44,19.45,26,0.0 +13596,23,9,11,0.0 +13596,46,12,50,0.0 +13596,35,18,31,0.0 +13596,59,55,36,0.0 +13596,48,12.75,8,0.0 +13596,50,16.25,21,0.0 +13596,37,26,9,0.0 +13596,65,21.05,35,0.0 +13596,19,9.2,49,0.0 +13596,73,15,45,0.0 +13596,54,7.45,47,0.0 +13596,18,62.5,29,0.0 +13596,52,7,29,0.0 +13596,57,19.5,35,0.0 +13596,58,13.25,7,0.0 +13596,13,6,32,0.0 +13596,43,46,34,0.0 +13596,42,14,19,0.0 +13596,9,97,7,0.0 +13596,49,20,8,0.0 +13596,77,13,9,0.0 +13596,69,36,11,0.0 +13596,56,38,46,0.0 +13596,45,9.5,24,0.0 +13596,11,21,26,0.0 +13596,15,15.5,17,0.0 +13596,36,19,34,0.0 +13596,25,14,10,0.0 +13596,55,24,24,0.0 +13596,1,18,44,0.0 +13596,34,14,47,0.0 +13596,7,30,9,0.0 +13596,10,31,31,0.0 +13596,5,21.35,32,0.0 +13596,17,39,27,0.0 +13596,28,45.6,45,0.0 +13596,76,18,14,0.0 +13597,48,12.75,9,0.0 +13597,53,32.8,39,0.0 +13597,76,18,47,0.0 +13597,70,15,11,0.0 +13597,57,19.5,24,0.0 +13597,52,7,4,0.0 +13597,75,7.75,36,0.0 +13597,43,46,10,0.0 +13597,73,15,43,0.0 +13597,29,123.79,6,0.0 +13597,74,10,10,0.0 +13597,13,6,48,0.0 +13597,50,16.25,27,0.0 +13597,67,14,39,0.0 +13597,11,21,26,0.0 +13597,3,10,31,0.0 +13597,63,43.9,25,0.0 +13597,9,97,48,0.0 +13597,5,21.35,44,0.0 +13597,6,25,19,0.0 +13597,21,10,24,0.0 +13597,7,30,37,0.0 +13597,65,21.05,9,0.0 +13597,14,23.25,33,0.0 +13597,25,14,13,0.0 +13597,44,19.45,16,0.0 +13597,23,9,10,0.0 +13597,64,33.25,18,0.0 +13597,17,39,37,0.0 +13597,36,19,47,0.0 +13597,4,22,33,0.0 +13597,22,21,40,0.0 +13597,45,9.5,9,0.0 +13597,40,18.4,31,0.0 +13597,19,9.2,14,0.0 +13597,39,18,11,0.0 +13597,24,4.5,40,0.0 +13597,2,19,29,0.0 +13597,66,17,48,0.0 +13597,26,31.23,28,0.0 +13597,28,45.6,2,0.0 +13597,51,53,40,0.0 +13597,77,13,30,0.0 +13598,36,19,5,0.0 +13598,31,12.5,44,0.0 +13598,29,123.79,11,0.0 +13598,6,25,47,0.0 +13598,35,18,21,0.0 +13598,48,12.75,25,0.0 +13598,63,43.9,24,0.0 +13598,30,25.89,25,0.0 +13598,32,32,5,0.0 +13598,59,55,18,0.0 +13598,8,40,17,0.0 +13598,16,17.45,25,0.0 +13598,61,28.5,47,0.0 +13598,1,18,2,0.0 +13598,41,9.65,7,0.0 +13598,39,18,24,0.0 +13598,12,38,19,0.0 +13598,75,7.75,13,0.0 +13598,37,26,22,0.0 +13598,55,24,49,0.0 +13598,76,18,36,0.0 +13598,18,62.5,40,0.0 +13598,52,7,25,0.0 +13598,67,14,29,0.0 +13598,47,9.5,49,0.0 +13598,73,15,41,0.0 +13598,26,31.23,20,0.0 +13598,46,12,50,0.0 +13598,65,21.05,48,0.0 +13598,60,34,27,0.0 +13598,17,39,22,0.0 +13598,58,13.25,37,0.0 +13599,75,7.75,7,0.0 +13599,65,21.05,19,0.0 +13599,46,12,12,0.0 +13599,13,6,31,0.0 +13599,63,43.9,31,0.0 +13599,66,17,22,0.0 +13599,41,9.65,36,0.0 +13599,27,43.9,43,0.0 +13599,1,18,47,0.0 +13599,77,13,9,0.0 +13599,3,10,38,0.0 +13599,32,32,2,0.0 +13599,33,2.5,20,0.0 +13599,48,12.75,11,0.0 +13599,28,45.6,41,0.0 +13599,50,16.25,5,0.0 +13599,12,38,10,0.0 +13599,19,9.2,47,0.0 +13599,57,19.5,37,0.0 +13599,8,40,20,0.0 +13599,31,12.5,28,0.0 +13599,74,10,49,0.0 +13599,4,22,11,0.0 +13600,25,14,48,0.0 +13600,1,18,22,0.0 +13600,16,17.45,11,0.0 +13600,10,31,41,0.0 +13600,42,14,20,0.0 +13600,26,31.23,11,0.0 +13600,58,13.25,4,0.0 +13600,19,9.2,11,0.0 +13600,13,6,48,0.0 +13600,41,9.65,48,0.0 +13600,28,45.6,17,0.0 +13600,32,32,21,0.0 +13600,49,20,3,0.0 +13600,34,14,30,0.0 +13600,77,13,50,0.0 +13600,62,49.3,49,0.0 +13600,48,12.75,6,0.0 +13600,56,38,6,0.0 +13600,20,81,37,0.0 +13600,18,62.5,31,0.0 +13600,36,19,4,0.0 +13600,52,7,36,0.0 +13600,43,46,13,0.0 +13600,9,97,13,0.0 +13600,12,38,21,0.0 +13600,76,18,19,0.0 +13600,73,15,8,0.0 +13600,70,15,37,0.0 +13600,72,34.8,12,0.0 +13600,35,18,12,0.0 +13600,66,17,28,0.0 +13600,39,18,48,0.0 +13600,53,32.8,16,0.0 +13600,60,34,31,0.0 +13600,61,28.5,12,0.0 +13600,55,24,27,0.0 +13600,24,4.5,48,0.0 +13600,54,7.45,8,0.0 +13600,15,15.5,34,0.0 +13600,51,53,10,0.0 +13600,46,12,22,0.0 +13600,75,7.75,49,0.0 +13600,57,19.5,32,0.0 +13600,37,26,37,0.0 +13600,3,10,5,0.0 +13600,38,263.5,3,0.0 +13600,29,123.79,29,0.0 +13600,64,33.25,42,0.0 +13600,33,2.5,4,0.0 +13600,5,21.35,2,0.0 +13600,47,9.5,48,0.0 +13600,6,25,27,0.0 +13600,74,10,9,0.0 +13600,50,16.25,36,0.0 +13600,11,21,3,0.0 +13600,63,43.9,37,0.0 +13600,31,12.5,32,0.0 +13601,29,123.79,31,0.0 +13601,18,62.5,9,0.0 +13601,5,21.35,27,0.0 +13601,38,263.5,29,0.0 +13601,45,9.5,7,0.0 +13601,41,9.65,7,0.0 +13601,69,36,33,0.0 +13601,6,25,30,0.0 +13601,73,15,16,0.0 +13601,63,43.9,15,0.0 +13601,75,7.75,32,0.0 +13601,54,7.45,39,0.0 +13601,71,21.5,29,0.0 +13601,13,6,49,0.0 +13601,25,14,12,0.0 +13601,40,18.4,1,0.0 +13601,53,32.8,6,0.0 +13601,50,16.25,14,0.0 +13601,23,9,16,0.0 +13601,1,18,2,0.0 +13601,39,18,14,0.0 +13601,76,18,23,0.0 +13601,44,19.45,40,0.0 +13601,61,28.5,4,0.0 +13601,51,53,11,0.0 +13601,47,9.5,45,0.0 +13601,26,31.23,1,0.0 +13601,37,26,40,0.0 +13601,30,25.89,41,0.0 +13601,32,32,1,0.0 +13601,2,19,31,0.0 +13601,35,18,4,0.0 +13601,11,21,17,0.0 +13601,9,97,8,0.0 +13601,65,21.05,38,0.0 +13601,48,12.75,12,0.0 +13601,24,4.5,34,0.0 +13601,74,10,8,0.0 +13601,42,14,33,0.0 +13601,77,13,38,0.0 +13601,64,33.25,12,0.0 +13601,21,10,20,0.0 +13601,28,45.6,40,0.0 +13601,20,81,17,0.0 +13601,7,30,12,0.0 +13601,60,34,37,0.0 +13601,72,34.8,17,0.0 +13601,27,43.9,43,0.0 +13601,58,13.25,9,0.0 +13601,36,19,44,0.0 +13601,56,38,19,0.0 +13601,31,12.5,4,0.0 +13601,17,39,1,0.0 +13601,70,15,42,0.0 +13601,49,20,22,0.0 +13601,3,10,36,0.0 +13601,59,55,34,0.0 +13601,4,22,36,0.0 +13602,67,14,3,0.0 +13602,23,9,29,0.0 +13602,4,22,40,0.0 +13602,77,13,47,0.0 +13602,76,18,36,0.0 +13602,2,19,37,0.0 +13602,66,17,15,0.0 +13602,56,38,6,0.0 +13602,51,53,41,0.0 +13602,68,12.5,11,0.0 +13602,53,32.8,12,0.0 +13602,47,9.5,32,0.0 +13602,64,33.25,25,0.0 +13602,3,10,38,0.0 +13602,38,263.5,5,0.0 +13602,72,34.8,7,0.0 +13602,75,7.75,10,0.0 +13602,9,97,40,0.0 +13602,55,24,48,0.0 +13602,16,17.45,42,0.0 +13602,7,30,48,0.0 +13602,32,32,37,0.0 +13602,45,9.5,17,0.0 +13602,22,21,21,0.0 +13602,44,19.45,38,0.0 +13602,54,7.45,24,0.0 +13602,8,40,2,0.0 +13602,35,18,34,0.0 +13602,59,55,24,0.0 +13602,21,10,47,0.0 +13602,70,15,37,0.0 +13602,62,49.3,32,0.0 +13602,60,34,31,0.0 +13602,6,25,35,0.0 +13602,43,46,1,0.0 +13602,52,7,43,0.0 +13602,13,6,11,0.0 +13602,15,15.5,2,0.0 +13603,23,9,13,0.0 +13603,8,40,8,0.0 +13603,24,4.5,43,0.0 +13603,45,9.5,49,0.0 +13603,1,18,41,0.0 +13603,19,9.2,8,0.0 +13603,65,21.05,20,0.0 +13603,33,2.5,49,0.0 +13603,25,14,32,0.0 +13603,29,123.79,36,0.0 +13603,32,32,45,0.0 +13603,15,15.5,37,0.0 +13603,17,39,43,0.0 +13603,71,21.5,13,0.0 +13603,6,25,6,0.0 +13603,77,13,29,0.0 +13603,60,34,26,0.0 +13603,14,23.25,29,0.0 +13603,58,13.25,4,0.0 +13603,12,38,19,0.0 +13603,4,22,47,0.0 +13603,51,53,4,0.0 +13603,62,49.3,2,0.0 +13603,69,36,19,0.0 +13603,30,25.89,16,0.0 +13603,74,10,10,0.0 +13603,44,19.45,7,0.0 +13603,38,263.5,10,0.0 +13603,13,6,42,0.0 +13603,47,9.5,33,0.0 +13603,10,31,50,0.0 +13603,75,7.75,26,0.0 +13603,11,21,43,0.0 +13603,3,10,39,0.0 +13603,70,15,15,0.0 +13603,39,18,22,0.0 +13603,43,46,39,0.0 +13603,56,38,14,0.0 +13603,63,43.9,28,0.0 +13603,34,14,41,0.0 +13603,66,17,13,0.0 +13603,16,17.45,19,0.0 +13603,35,18,29,0.0 +13603,61,28.5,9,0.0 +13603,48,12.75,16,0.0 +13603,53,32.8,49,0.0 +13603,2,19,22,0.0 +13603,68,12.5,50,0.0 +13603,27,43.9,10,0.0 +13603,72,34.8,38,0.0 +13603,73,15,8,0.0 +13603,64,33.25,43,0.0 +13603,41,9.65,34,0.0 +13603,22,21,31,0.0 +13603,31,12.5,27,0.0 +13603,46,12,31,0.0 +13603,36,19,25,0.0 +13603,26,31.23,33,0.0 +13603,59,55,16,0.0 +13603,18,62.5,22,0.0 +13603,54,7.45,13,0.0 +13603,40,18.4,40,0.0 +13603,76,18,25,0.0 +13603,50,16.25,24,0.0 +13603,57,19.5,14,0.0 +13603,21,10,40,0.0 +13603,55,24,14,0.0 +13603,42,14,9,0.0 +13603,37,26,20,0.0 +13603,52,7,12,0.0 +13603,28,45.6,23,0.0 +13603,7,30,31,0.0 +13604,25,14,8,0.0 +13604,8,40,26,0.0 +13604,50,16.25,21,0.0 +13604,38,263.5,30,0.0 +13604,61,28.5,16,0.0 +13604,56,38,50,0.0 +13604,73,15,25,0.0 +13604,40,18.4,50,0.0 +13604,7,30,39,0.0 +13604,75,7.75,13,0.0 +13604,58,13.25,9,0.0 +13604,74,10,26,0.0 +13604,49,20,36,0.0 +13604,55,24,28,0.0 +13604,47,9.5,18,0.0 +13604,72,34.8,38,0.0 +13604,41,9.65,13,0.0 +13604,42,14,20,0.0 +13604,6,25,37,0.0 +13604,13,6,44,0.0 +13604,66,17,31,0.0 +13604,52,7,47,0.0 +13604,45,9.5,25,0.0 +13604,17,39,37,0.0 +13604,18,62.5,6,0.0 +13604,68,12.5,50,0.0 +13604,24,4.5,1,0.0 +13604,21,10,7,0.0 +13604,51,53,8,0.0 +13604,33,2.5,3,0.0 +13604,26,31.23,3,0.0 +13604,48,12.75,46,0.0 +13604,65,21.05,41,0.0 +13604,44,19.45,1,0.0 +13604,62,49.3,47,0.0 +13604,16,17.45,7,0.0 +13604,32,32,49,0.0 +13604,12,38,50,0.0 +13604,31,12.5,6,0.0 +13604,59,55,24,0.0 +13604,77,13,47,0.0 +13604,30,25.89,20,0.0 +13604,15,15.5,26,0.0 +13604,54,7.45,3,0.0 +13604,37,26,22,0.0 +13604,36,19,43,0.0 +13604,64,33.25,45,0.0 +13604,19,9.2,14,0.0 +13604,63,43.9,40,0.0 +13604,4,22,18,0.0 +13604,2,19,18,0.0 +13604,27,43.9,29,0.0 +13604,76,18,14,0.0 +13604,10,31,34,0.0 +13604,60,34,30,0.0 +13604,71,21.5,49,0.0 +13604,43,46,19,0.0 +13604,35,18,9,0.0 +13605,60,34,30,0.0 +13605,29,123.79,4,0.0 +13605,36,19,22,0.0 +13605,68,12.5,16,0.0 +13605,42,14,20,0.0 +13605,15,15.5,26,0.0 +13605,40,18.4,38,0.0 +13605,76,18,43,0.0 +13606,36,19,15,0.0 +13606,37,26,23,0.0 +13606,40,18.4,7,0.0 +13606,55,24,13,0.0 +13606,7,30,37,0.0 +13606,46,12,15,0.0 +13606,77,13,29,0.0 +13606,5,21.35,40,0.0 +13606,62,49.3,25,0.0 +13606,58,13.25,22,0.0 +13606,72,34.8,40,0.0 +13606,33,2.5,3,0.0 +13606,74,10,38,0.0 +13606,3,10,9,0.0 +13606,59,55,36,0.0 +13606,14,23.25,42,0.0 +13606,70,15,5,0.0 +13606,42,14,47,0.0 +13606,56,38,38,0.0 +13606,9,97,39,0.0 +13606,76,18,49,0.0 +13606,61,28.5,28,0.0 +13606,4,22,23,0.0 +13606,11,21,35,0.0 +13606,16,17.45,24,0.0 +13606,43,46,43,0.0 +13606,6,25,23,0.0 +13606,60,34,1,0.0 +13606,44,19.45,37,0.0 +13606,39,18,47,0.0 +13606,1,18,10,0.0 +13606,17,39,22,0.0 +13606,48,12.75,44,0.0 +13606,15,15.5,43,0.0 +13606,22,21,1,0.0 +13606,63,43.9,46,0.0 +13606,23,9,24,0.0 +13606,53,32.8,26,0.0 +13606,18,62.5,19,0.0 +13606,45,9.5,13,0.0 +13606,52,7,5,0.0 +13606,30,25.89,19,0.0 +13607,58,13.25,19,0.0 +13607,75,7.75,46,0.0 +13607,65,21.05,42,0.0 +13607,69,36,3,0.0 +13607,10,31,38,0.0 +13607,23,9,37,0.0 +13607,28,45.6,19,0.0 +13607,57,19.5,44,0.0 +13607,51,53,9,0.0 +13607,24,4.5,34,0.0 +13607,18,62.5,15,0.0 +13607,45,9.5,40,0.0 +13607,13,6,41,0.0 +13607,70,15,18,0.0 +13607,48,12.75,40,0.0 +13607,8,40,2,0.0 +13607,6,25,23,0.0 +13607,30,25.89,21,0.0 +13607,40,18.4,17,0.0 +13607,71,21.5,14,0.0 +13607,4,22,36,0.0 +13607,16,17.45,28,0.0 +13607,36,19,19,0.0 +13608,7,30,15,0.0 +13608,46,12,9,0.0 +13608,15,15.5,39,0.0 +13608,76,18,49,0.0 +13608,6,25,37,0.0 +13608,50,16.25,8,0.0 +13608,5,21.35,4,0.0 +13608,18,62.5,36,0.0 +13608,35,18,40,0.0 +13608,58,13.25,49,0.0 +13608,3,10,24,0.0 +13608,42,14,37,0.0 +13608,55,24,28,0.0 +13608,67,14,12,0.0 +13608,57,19.5,4,0.0 +13608,11,21,11,0.0 +13608,70,15,16,0.0 +13608,56,38,18,0.0 +13608,45,9.5,18,0.0 +13608,48,12.75,47,0.0 +13608,17,39,37,0.0 +13608,23,9,25,0.0 +13608,47,9.5,36,0.0 +13608,36,19,28,0.0 +13608,62,49.3,20,0.0 +13608,66,17,24,0.0 +13608,64,33.25,30,0.0 +13608,24,4.5,10,0.0 +13608,54,7.45,46,0.0 +13608,71,21.5,19,0.0 +13608,59,55,14,0.0 +13608,33,2.5,7,0.0 +13608,61,28.5,20,0.0 +13608,37,26,28,0.0 +13608,38,263.5,47,0.0 +13608,31,12.5,22,0.0 +13608,16,17.45,49,0.0 +13608,20,81,45,0.0 +13608,60,34,2,0.0 +13608,10,31,5,0.0 +13608,49,20,28,0.0 +13608,26,31.23,25,0.0 +13608,14,23.25,49,0.0 +13608,77,13,27,0.0 +13609,52,7,12,0.0 +13609,43,46,40,0.0 +13609,60,34,44,0.0 +13609,32,32,16,0.0 +13609,18,62.5,9,0.0 +13609,19,9.2,9,0.0 +13609,35,18,14,0.0 +13609,61,28.5,33,0.0 +13609,40,18.4,23,0.0 +13609,56,38,46,0.0 +13609,66,17,6,0.0 +13609,53,32.8,1,0.0 +13609,74,10,19,0.0 +13609,48,12.75,38,0.0 +13609,5,21.35,36,0.0 +13609,41,9.65,31,0.0 +13609,42,14,15,0.0 +13609,64,33.25,35,0.0 +13609,15,15.5,31,0.0 +13609,22,21,48,0.0 +13609,76,18,3,0.0 +13610,8,40,39,0.0 +13610,42,14,2,0.0 +13610,21,10,37,0.0 +13610,69,36,13,0.0 +13610,16,17.45,24,0.0 +13610,3,10,36,0.0 +13610,19,9.2,46,0.0 +13610,53,32.8,22,0.0 +13610,29,123.79,24,0.0 +13610,17,39,25,0.0 +13610,18,62.5,48,0.0 +13610,5,21.35,3,0.0 +13610,77,13,37,0.0 +13610,39,18,32,0.0 +13610,4,22,21,0.0 +13610,60,34,43,0.0 +13610,43,46,6,0.0 +13610,34,14,42,0.0 +13610,31,12.5,25,0.0 +13610,36,19,32,0.0 +13610,68,12.5,29,0.0 +13610,64,33.25,7,0.0 +13610,28,45.6,41,0.0 +13610,25,14,7,0.0 +13610,47,9.5,37,0.0 +13610,71,21.5,14,0.0 +13610,70,15,11,0.0 +13610,10,31,43,0.0 +13610,72,34.8,2,0.0 +13610,20,81,50,0.0 +13610,75,7.75,45,0.0 +13610,35,18,3,0.0 +13610,22,21,6,0.0 +13610,65,21.05,10,0.0 +13610,48,12.75,3,0.0 +13610,44,19.45,33,0.0 +13610,49,20,29,0.0 +13610,11,21,3,0.0 +13610,30,25.89,13,0.0 +13610,52,7,50,0.0 +13610,58,13.25,47,0.0 +13610,46,12,49,0.0 +13610,2,19,21,0.0 +13610,9,97,43,0.0 +13610,33,2.5,25,0.0 +13610,62,49.3,14,0.0 +13610,66,17,10,0.0 +13610,41,9.65,5,0.0 +13610,1,18,2,0.0 +13610,32,32,34,0.0 +13610,6,25,3,0.0 +13610,13,6,24,0.0 +13610,7,30,32,0.0 +13610,63,43.9,19,0.0 +13611,54,7.45,16,0.0 +13611,28,45.6,22,0.0 +13611,33,2.5,34,0.0 +13611,2,19,6,0.0 +13611,14,23.25,48,0.0 +13611,15,15.5,14,0.0 +13611,17,39,17,0.0 +13612,28,45.6,38,0.0 +13612,68,12.5,11,0.0 +13612,29,123.79,2,0.0 +13613,34,14,45,0.0 +13613,2,19,34,0.0 +13613,54,7.45,20,0.0 +13613,16,17.45,37,0.0 +13613,8,40,21,0.0 +13613,69,36,1,0.0 +13613,63,43.9,48,0.0 +13613,10,31,27,0.0 +13613,59,55,39,0.0 +13613,18,62.5,26,0.0 +13613,74,10,5,0.0 +13613,52,7,14,0.0 +13613,23,9,1,0.0 +13613,76,18,43,0.0 +13613,12,38,17,0.0 +13613,13,6,37,0.0 +13613,21,10,43,0.0 +13613,20,81,4,0.0 +13613,55,24,38,0.0 +13613,75,7.75,45,0.0 +13613,43,46,11,0.0 +13613,6,25,1,0.0 +13613,71,21.5,17,0.0 +13613,47,9.5,1,0.0 +13614,57,19.5,48,0.0 +13614,72,34.8,31,0.0 +13614,49,20,50,0.0 +13614,31,12.5,4,0.0 +13614,74,10,42,0.0 +13614,38,263.5,29,0.0 +13614,1,18,38,0.0 +13614,37,26,28,0.0 +13614,59,55,44,0.0 +13614,67,14,23,0.0 +13614,73,15,1,0.0 +13614,19,9.2,26,0.0 +13614,36,19,18,0.0 +13614,27,43.9,5,0.0 +13614,28,45.6,46,0.0 +13614,18,62.5,30,0.0 +13614,7,30,42,0.0 +13614,20,81,26,0.0 +13614,5,21.35,27,0.0 +13614,50,16.25,41,0.0 +13614,47,9.5,43,0.0 +13614,16,17.45,36,0.0 +13614,76,18,27,0.0 +13614,13,6,12,0.0 +13615,67,14,6,0.0 +13615,72,34.8,10,0.0 +13615,36,19,33,0.0 +13615,1,18,12,0.0 +13615,53,32.8,5,0.0 +13615,52,7,44,0.0 +13615,30,25.89,11,0.0 +13615,22,21,46,0.0 +13615,62,49.3,23,0.0 +13615,73,15,28,0.0 +13615,46,12,45,0.0 +13615,24,4.5,8,0.0 +13615,20,81,29,0.0 +13615,42,14,33,0.0 +13615,60,34,34,0.0 +13615,23,9,28,0.0 +13615,9,97,18,0.0 +13615,37,26,9,0.0 +13615,12,38,46,0.0 +13615,50,16.25,14,0.0 +13615,77,13,37,0.0 +13615,34,14,39,0.0 +13615,66,17,24,0.0 +13615,17,39,18,0.0 +13615,49,20,21,0.0 +13615,58,13.25,3,0.0 +13615,44,19.45,16,0.0 +13615,26,31.23,4,0.0 +13615,29,123.79,5,0.0 +13615,7,30,20,0.0 +13615,63,43.9,8,0.0 +13615,11,21,24,0.0 +13615,54,7.45,2,0.0 +13615,38,263.5,48,0.0 +13615,19,9.2,48,0.0 +13615,68,12.5,45,0.0 +13615,41,9.65,49,0.0 +13615,32,32,13,0.0 +13615,61,28.5,42,0.0 +13615,31,12.5,42,0.0 +13615,18,62.5,19,0.0 +13615,27,43.9,38,0.0 +13615,4,22,47,0.0 +13615,3,10,37,0.0 +13615,28,45.6,42,0.0 +13615,16,17.45,27,0.0 +13615,25,14,40,0.0 +13615,59,55,37,0.0 +13615,48,12.75,17,0.0 +13615,33,2.5,34,0.0 +13615,71,21.5,37,0.0 +13615,47,9.5,34,0.0 +13615,43,46,29,0.0 +13615,5,21.35,23,0.0 +13615,65,21.05,30,0.0 +13615,56,38,36,0.0 +13615,6,25,43,0.0 +13615,21,10,33,0.0 +13615,39,18,40,0.0 +13615,40,18.4,18,0.0 +13615,69,36,44,0.0 +13615,10,31,13,0.0 +13615,76,18,25,0.0 +13615,74,10,2,0.0 +13615,15,15.5,32,0.0 +13615,55,24,30,0.0 +13615,8,40,34,0.0 +13615,75,7.75,7,0.0 +13615,35,18,33,0.0 +13615,57,19.5,37,0.0 +13615,64,33.25,8,0.0 +13615,70,15,40,0.0 +13616,65,21.05,46,0.0 +13616,25,14,22,0.0 +13616,71,21.5,44,0.0 +13616,15,15.5,41,0.0 +13616,55,24,1,0.0 +13616,36,19,43,0.0 +13616,18,62.5,25,0.0 +13616,4,22,1,0.0 +13616,54,7.45,50,0.0 +13616,67,14,50,0.0 +13616,6,25,45,0.0 +13616,75,7.75,40,0.0 +13616,64,33.25,28,0.0 +13616,39,18,13,0.0 +13616,24,4.5,6,0.0 +13616,77,13,2,0.0 +13616,2,19,19,0.0 +13616,23,9,7,0.0 +13616,22,21,4,0.0 +13616,20,81,34,0.0 +13616,33,2.5,15,0.0 +13616,27,43.9,47,0.0 +13616,69,36,42,0.0 +13616,8,40,46,0.0 +13616,43,46,25,0.0 +13616,14,23.25,28,0.0 +13616,29,123.79,32,0.0 +13616,72,34.8,28,0.0 +13616,5,21.35,8,0.0 +13616,74,10,11,0.0 +13616,17,39,28,0.0 +13616,37,26,41,0.0 +13616,19,9.2,14,0.0 +13616,3,10,17,0.0 +13616,70,15,10,0.0 +13617,21,10,8,0.0 +13617,64,33.25,49,0.0 +13618,31,12.5,6,0.0 +13618,9,97,2,0.0 +13618,11,21,25,0.0 +13618,35,18,20,0.0 +13618,74,10,25,0.0 +13618,18,62.5,37,0.0 +13618,63,43.9,9,0.0 +13618,57,19.5,27,0.0 +13618,67,14,18,0.0 +13618,68,12.5,30,0.0 +13618,69,36,3,0.0 +13618,76,18,2,0.0 +13618,56,38,47,0.0 +13618,4,22,15,0.0 +13618,53,32.8,11,0.0 +13618,70,15,1,0.0 +13618,51,53,30,0.0 +13618,29,123.79,50,0.0 +13618,46,12,49,0.0 +13618,44,19.45,45,0.0 +13618,22,21,37,0.0 +13618,26,31.23,26,0.0 +13618,28,45.6,44,0.0 +13618,33,2.5,50,0.0 +13618,36,19,17,0.0 +13618,7,30,41,0.0 +13618,39,18,4,0.0 +13618,42,14,37,0.0 +13618,41,9.65,44,0.0 +13618,13,6,15,0.0 +13618,19,9.2,29,0.0 +13618,24,4.5,19,0.0 +13618,10,31,36,0.0 +13618,38,263.5,11,0.0 +13618,72,34.8,19,0.0 +13618,52,7,29,0.0 +13618,61,28.5,17,0.0 +13618,25,14,6,0.0 +13618,23,9,14,0.0 +13618,64,33.25,15,0.0 +13618,6,25,22,0.0 +13618,21,10,38,0.0 +13618,55,24,50,0.0 +13618,59,55,30,0.0 +13618,49,20,24,0.0 +13618,37,26,13,0.0 +13618,47,9.5,10,0.0 +13618,30,25.89,37,0.0 +13618,66,17,25,0.0 +13618,60,34,5,0.0 +13618,65,21.05,8,0.0 +13618,77,13,42,0.0 +13619,74,10,6,0.0 +13619,58,13.25,8,0.0 +13619,71,21.5,50,0.0 +13619,29,123.79,4,0.0 +13619,7,30,43,0.0 +13619,30,25.89,13,0.0 +13619,45,9.5,3,0.0 +13619,26,31.23,39,0.0 +13619,43,46,21,0.0 +13619,31,12.5,22,0.0 +13619,65,21.05,48,0.0 +13619,25,14,17,0.0 +13619,28,45.6,6,0.0 +13619,66,17,38,0.0 +13619,9,97,33,0.0 +13619,76,18,23,0.0 +13619,14,23.25,44,0.0 +13619,61,28.5,14,0.0 +13619,54,7.45,39,0.0 +13619,38,263.5,43,0.0 +13619,12,38,19,0.0 +13619,36,19,30,0.0 +13619,67,14,47,0.0 +13619,2,19,23,0.0 +13619,33,2.5,9,0.0 +13619,72,34.8,20,0.0 +13619,16,17.45,48,0.0 +13619,17,39,9,0.0 +13619,53,32.8,35,0.0 +13619,52,7,3,0.0 +13619,6,25,9,0.0 +13619,19,9.2,7,0.0 +13619,62,49.3,33,0.0 +13619,10,31,19,0.0 +13619,51,53,30,0.0 +13619,44,19.45,6,0.0 +13619,42,14,37,0.0 +13619,21,10,14,0.0 +13619,13,6,8,0.0 +13619,3,10,49,0.0 +13619,35,18,47,0.0 +13619,27,43.9,42,0.0 +13619,34,14,19,0.0 +13619,55,24,34,0.0 +13619,5,21.35,4,0.0 +13619,24,4.5,37,0.0 +13619,40,18.4,25,0.0 +13619,18,62.5,6,0.0 +13619,4,22,5,0.0 +13619,63,43.9,36,0.0 +13619,22,21,16,0.0 +13619,15,15.5,40,0.0 +13619,11,21,12,0.0 +13619,1,18,1,0.0 +13619,20,81,14,0.0 +13619,57,19.5,45,0.0 +13619,73,15,22,0.0 +13619,50,16.25,10,0.0 +13619,39,18,35,0.0 +13619,49,20,27,0.0 +13619,23,9,2,0.0 +13619,59,55,36,0.0 +13619,48,12.75,29,0.0 +13619,8,40,8,0.0 +13619,70,15,26,0.0 +13620,26,31.23,19,0.0 +13620,1,18,30,0.0 +13620,74,10,27,0.0 +13620,34,14,13,0.0 +13620,35,18,44,0.0 +13620,68,12.5,12,0.0 +13620,20,81,39,0.0 +13620,38,263.5,22,0.0 +13620,8,40,50,0.0 +13620,21,10,5,0.0 +13620,75,7.75,45,0.0 +13620,36,19,45,0.0 +13620,19,9.2,3,0.0 +13620,14,23.25,1,0.0 +13620,77,13,35,0.0 +13620,50,16.25,11,0.0 +13620,24,4.5,16,0.0 +13620,70,15,7,0.0 +13620,67,14,1,0.0 +13620,12,38,38,0.0 +13620,51,53,2,0.0 +13620,49,20,20,0.0 +13620,47,9.5,3,0.0 +13620,25,14,23,0.0 +13620,2,19,14,0.0 +13620,15,15.5,13,0.0 +13620,33,2.5,4,0.0 +13620,69,36,17,0.0 +13620,65,21.05,45,0.0 +13620,53,32.8,20,0.0 +13620,64,33.25,20,0.0 +13620,40,18.4,34,0.0 +13620,23,9,26,0.0 +13620,61,28.5,36,0.0 +13620,54,7.45,33,0.0 +13620,29,123.79,39,0.0 +13620,76,18,5,0.0 +13620,28,45.6,42,0.0 +13620,71,21.5,32,0.0 +13620,6,25,41,0.0 +13620,52,7,22,0.0 +13620,72,34.8,20,0.0 +13620,63,43.9,10,0.0 +13620,57,19.5,36,0.0 +13620,56,38,1,0.0 +13620,22,21,10,0.0 +13620,45,9.5,16,0.0 +13620,4,22,39,0.0 +13620,11,21,20,0.0 +13620,73,15,21,0.0 +13620,60,34,42,0.0 +13620,30,25.89,49,0.0 +13620,55,24,20,0.0 +13620,31,12.5,40,0.0 +13620,13,6,19,0.0 +13620,18,62.5,7,0.0 +13620,3,10,24,0.0 +13620,32,32,4,0.0 +13620,27,43.9,23,0.0 +13621,76,18,49,0.0 +13621,2,19,41,0.0 +13621,7,30,37,0.0 +13621,64,33.25,30,0.0 +13621,1,18,15,0.0 +13621,35,18,29,0.0 +13621,31,12.5,39,0.0 +13621,15,15.5,8,0.0 +13621,65,21.05,38,0.0 +13621,32,32,42,0.0 +13621,75,7.75,12,0.0 +13621,9,97,22,0.0 +13621,25,14,50,0.0 +13621,22,21,44,0.0 +13621,16,17.45,46,0.0 +13621,59,55,1,0.0 +13621,58,13.25,21,0.0 +13621,50,16.25,11,0.0 +13621,48,12.75,48,0.0 +13621,63,43.9,18,0.0 +13621,52,7,42,0.0 +13621,54,7.45,31,0.0 +13621,57,19.5,36,0.0 +13621,72,34.8,12,0.0 +13621,45,9.5,48,0.0 +13621,3,10,13,0.0 +13621,14,23.25,1,0.0 +13621,10,31,20,0.0 +13621,53,32.8,38,0.0 +13621,67,14,14,0.0 +13621,5,21.35,15,0.0 +13621,4,22,4,0.0 +13621,68,12.5,49,0.0 +13621,12,38,10,0.0 +13621,30,25.89,13,0.0 +13621,21,10,26,0.0 +13621,46,12,10,0.0 +13621,56,38,14,0.0 +13621,17,39,3,0.0 +13621,71,21.5,8,0.0 +13621,43,46,47,0.0 +13621,29,123.79,23,0.0 +13621,11,21,34,0.0 +13621,62,49.3,13,0.0 +13621,60,34,24,0.0 +13621,27,43.9,45,0.0 +13621,23,9,11,0.0 +13621,49,20,38,0.0 +13621,20,81,12,0.0 +13621,28,45.6,28,0.0 +13621,77,13,22,0.0 +13621,38,263.5,11,0.0 +13621,24,4.5,17,0.0 +13621,70,15,47,0.0 +13621,41,9.65,27,0.0 +13621,47,9.5,48,0.0 +13621,55,24,44,0.0 +13621,34,14,21,0.0 +13621,44,19.45,8,0.0 +13621,69,36,3,0.0 +13621,26,31.23,4,0.0 +13621,18,62.5,21,0.0 +13621,66,17,42,0.0 +13621,6,25,31,0.0 +13622,61,28.5,34,0.0 +13622,49,20,45,0.0 +13622,18,62.5,29,0.0 +13622,16,17.45,47,0.0 +13622,23,9,40,0.0 +13622,54,7.45,24,0.0 +13622,68,12.5,36,0.0 +13622,28,45.6,12,0.0 +13622,48,12.75,42,0.0 +13622,12,38,30,0.0 +13622,43,46,35,0.0 +13622,19,9.2,46,0.0 +13622,35,18,8,0.0 +13622,69,36,28,0.0 +13622,52,7,18,0.0 +13622,20,81,19,0.0 +13622,30,25.89,50,0.0 +13622,24,4.5,39,0.0 +13622,62,49.3,46,0.0 +13622,11,21,48,0.0 +13622,42,14,9,0.0 +13622,72,34.8,36,0.0 +13622,59,55,35,0.0 +13622,70,15,22,0.0 +13622,3,10,37,0.0 +13622,5,21.35,43,0.0 +13622,60,34,29,0.0 +13622,15,15.5,20,0.0 +13622,21,10,42,0.0 +13622,47,9.5,34,0.0 +13622,4,22,24,0.0 +13622,2,19,42,0.0 +13622,50,16.25,6,0.0 +13622,27,43.9,7,0.0 +13622,10,31,7,0.0 +13622,9,97,23,0.0 +13622,71,21.5,4,0.0 +13622,64,33.25,44,0.0 +13622,29,123.79,38,0.0 +13622,37,26,31,0.0 +13622,7,30,4,0.0 +13622,26,31.23,13,0.0 +13622,73,15,42,0.0 +13622,31,12.5,13,0.0 +13622,6,25,41,0.0 +13622,58,13.25,16,0.0 +13622,45,9.5,47,0.0 +13622,46,12,38,0.0 +13622,33,2.5,36,0.0 +13622,41,9.65,2,0.0 +13622,17,39,31,0.0 +13622,55,24,37,0.0 +13622,57,19.5,1,0.0 +13622,74,10,22,0.0 +13622,65,21.05,48,0.0 +13622,75,7.75,31,0.0 +13622,76,18,15,0.0 +13622,38,263.5,49,0.0 +13622,14,23.25,27,0.0 +13622,39,18,7,0.0 +13622,34,14,13,0.0 +13622,53,32.8,12,0.0 +13622,1,18,36,0.0 +13622,32,32,33,0.0 +13622,13,6,41,0.0 +13622,25,14,42,0.0 +13622,8,40,25,0.0 +13622,67,14,30,0.0 +13622,77,13,46,0.0 +13622,36,19,42,0.0 +13622,44,19.45,34,0.0 +13623,13,6,44,0.0 +13623,21,10,40,0.0 +13623,71,21.5,19,0.0 +13623,12,38,15,0.0 +13623,64,33.25,25,0.0 +13623,63,43.9,46,0.0 +13623,76,18,35,0.0 +13623,9,97,4,0.0 +13623,50,16.25,35,0.0 +13623,65,21.05,15,0.0 +13623,8,40,7,0.0 +13623,15,15.5,38,0.0 +13623,42,14,16,0.0 +13623,66,17,19,0.0 +13623,27,43.9,48,0.0 +13623,57,19.5,34,0.0 +13623,49,20,44,0.0 +13623,55,24,24,0.0 +13623,35,18,33,0.0 +13623,47,9.5,41,0.0 +13623,46,12,2,0.0 +13623,48,12.75,44,0.0 +13623,10,31,3,0.0 +13623,38,263.5,1,0.0 +13623,67,14,23,0.0 +13623,62,49.3,24,0.0 +13623,34,14,11,0.0 +13623,75,7.75,42,0.0 +13623,61,28.5,6,0.0 +13623,26,31.23,9,0.0 +13623,23,9,7,0.0 +13623,22,21,38,0.0 +13623,3,10,25,0.0 +13623,5,21.35,48,0.0 +13623,60,34,34,0.0 +13623,2,19,15,0.0 +13623,36,19,28,0.0 +13623,56,38,36,0.0 +13623,14,23.25,9,0.0 +13623,17,39,5,0.0 +13623,19,9.2,23,0.0 +13623,40,18.4,27,0.0 +13623,45,9.5,40,0.0 +13623,32,32,30,0.0 +13623,24,4.5,5,0.0 +13623,51,53,5,0.0 +13623,77,13,30,0.0 +13623,68,12.5,20,0.0 +13623,52,7,10,0.0 +13623,69,36,7,0.0 +13623,53,32.8,47,0.0 +13623,73,15,40,0.0 +13623,74,10,23,0.0 +13623,6,25,33,0.0 +13623,20,81,28,0.0 +13623,18,62.5,5,0.0 +13623,28,45.6,50,0.0 +13623,11,21,31,0.0 +13623,37,26,24,0.0 +13623,43,46,35,0.0 +13623,70,15,32,0.0 +13623,72,34.8,13,0.0 +13623,44,19.45,14,0.0 +13623,29,123.79,6,0.0 +13623,7,30,49,0.0 +13623,39,18,6,0.0 +13623,54,7.45,24,0.0 +13623,31,12.5,43,0.0 +13623,1,18,46,0.0 +13623,59,55,36,0.0 +13623,33,2.5,33,0.0 +13623,58,13.25,17,0.0 +13623,25,14,17,0.0 +13623,4,22,36,0.0 +13623,30,25.89,1,0.0 +13623,41,9.65,45,0.0 +13624,74,10,24,0.0 +13624,38,263.5,5,0.0 +13624,41,9.65,17,0.0 +13624,3,10,25,0.0 +13624,24,4.5,45,0.0 +13624,45,9.5,50,0.0 +13624,12,38,43,0.0 +13624,15,15.5,32,0.0 +13624,1,18,5,0.0 +13624,56,38,9,0.0 +13624,27,43.9,12,0.0 +13624,73,15,27,0.0 +13624,30,25.89,48,0.0 +13624,4,22,8,0.0 +13624,52,7,20,0.0 +13624,58,13.25,5,0.0 +13624,36,19,48,0.0 +13624,61,28.5,31,0.0 +13624,46,12,4,0.0 +13624,10,31,33,0.0 +13624,70,15,8,0.0 +13624,66,17,47,0.0 +13624,7,30,9,0.0 +13624,68,12.5,23,0.0 +13624,67,14,38,0.0 +13624,43,46,3,0.0 +13624,75,7.75,38,0.0 +13624,71,21.5,1,0.0 +13624,13,6,15,0.0 +13624,20,81,14,0.0 +13624,47,9.5,7,0.0 +13624,59,55,31,0.0 +13624,54,7.45,3,0.0 +13624,53,32.8,3,0.0 +13624,50,16.25,12,0.0 +13624,16,17.45,26,0.0 +13624,29,123.79,20,0.0 +13624,25,14,47,0.0 +13624,26,31.23,26,0.0 +13624,14,23.25,37,0.0 +13624,39,18,4,0.0 +13624,69,36,25,0.0 +13624,33,2.5,47,0.0 +13625,67,14,3,0.0 +13625,24,4.5,47,0.0 +13625,46,12,49,0.0 +13626,32,32,30,0.0 +13626,29,123.79,43,0.0 +13626,45,9.5,25,0.0 +13627,59,55,11,0.0 +13627,16,17.45,3,0.0 +13627,56,38,15,0.0 +13627,58,13.25,46,0.0 +13627,48,12.75,37,0.0 +13627,43,46,46,0.0 +13627,60,34,31,0.0 +13627,74,10,16,0.0 +13627,41,9.65,21,0.0 +13627,52,7,26,0.0 +13627,40,18.4,34,0.0 +13627,65,21.05,20,0.0 +13627,64,33.25,46,0.0 +13627,57,19.5,46,0.0 +13627,26,31.23,36,0.0 +13627,38,263.5,40,0.0 +13627,33,2.5,13,0.0 +13627,61,28.5,27,0.0 +13627,67,14,4,0.0 +13627,32,32,15,0.0 +13627,19,9.2,5,0.0 +13627,3,10,15,0.0 +13627,37,26,23,0.0 +13627,36,19,5,0.0 +13627,30,25.89,5,0.0 +13627,11,21,2,0.0 +13627,24,4.5,12,0.0 +13627,29,123.79,30,0.0 +13627,76,18,25,0.0 +13627,4,22,5,0.0 +13627,42,14,50,0.0 +13627,51,53,12,0.0 +13627,22,21,33,0.0 +13627,46,12,3,0.0 +13627,18,62.5,41,0.0 +13627,55,24,37,0.0 +13627,44,19.45,28,0.0 +13627,71,21.5,30,0.0 +13627,62,49.3,23,0.0 +13627,50,16.25,5,0.0 +13627,15,15.5,31,0.0 +13627,47,9.5,49,0.0 +13627,45,9.5,30,0.0 +13627,28,45.6,17,0.0 +13627,49,20,40,0.0 +13627,53,32.8,38,0.0 +13627,66,17,39,0.0 +13627,70,15,3,0.0 +13627,7,30,7,0.0 +13627,20,81,37,0.0 +13627,31,12.5,20,0.0 +13627,25,14,39,0.0 +13627,54,7.45,34,0.0 +13627,63,43.9,9,0.0 +13627,75,7.75,49,0.0 +13627,6,25,13,0.0 +13627,21,10,36,0.0 +13627,17,39,45,0.0 +13627,72,34.8,38,0.0 +13628,76,18,13,0.0 +13628,23,9,21,0.0 +13628,72,34.8,49,0.0 +13628,32,32,13,0.0 +13628,61,28.5,2,0.0 +13628,20,81,15,0.0 +13628,38,263.5,48,0.0 +13628,14,23.25,46,0.0 +13628,27,43.9,6,0.0 +13628,77,13,48,0.0 +13628,10,31,33,0.0 +13628,29,123.79,1,0.0 +13628,44,19.45,6,0.0 +13628,43,46,1,0.0 +13628,24,4.5,44,0.0 +13628,62,49.3,50,0.0 +13628,36,19,44,0.0 +13628,17,39,11,0.0 +13628,74,10,2,0.0 +13628,55,24,25,0.0 +13628,69,36,46,0.0 +13628,2,19,8,0.0 +13628,25,14,38,0.0 +13628,46,12,28,0.0 +13628,35,18,26,0.0 +13628,4,22,12,0.0 +13628,16,17.45,41,0.0 +13628,6,25,31,0.0 +13628,31,12.5,17,0.0 +13628,39,18,16,0.0 +13628,12,38,31,0.0 +13628,50,16.25,29,0.0 +13628,75,7.75,10,0.0 +13628,45,9.5,4,0.0 +13628,5,21.35,22,0.0 +13628,47,9.5,18,0.0 +13628,59,55,49,0.0 +13628,8,40,21,0.0 +13628,57,19.5,10,0.0 +13628,19,9.2,15,0.0 +13628,7,30,48,0.0 +13628,30,25.89,29,0.0 +13628,21,10,1,0.0 +13628,70,15,13,0.0 +13628,48,12.75,17,0.0 +13628,68,12.5,31,0.0 +13628,60,34,17,0.0 +13628,41,9.65,25,0.0 +13628,34,14,30,0.0 +13628,22,21,34,0.0 +13628,63,43.9,50,0.0 +13628,54,7.45,44,0.0 +13628,66,17,37,0.0 +13628,73,15,28,0.0 +13628,49,20,12,0.0 +13628,15,15.5,26,0.0 +13628,3,10,31,0.0 +13628,37,26,44,0.0 +13628,56,38,35,0.0 +13628,51,53,21,0.0 +13628,33,2.5,32,0.0 +13628,65,21.05,41,0.0 +13628,40,18.4,37,0.0 +13628,9,97,29,0.0 +13628,58,13.25,4,0.0 +13628,71,21.5,38,0.0 +13629,51,53,37,0.0 +13629,71,21.5,22,0.0 +13629,49,20,24,0.0 +13629,9,97,20,0.0 +13629,68,12.5,46,0.0 +13629,26,31.23,10,0.0 +13629,40,18.4,3,0.0 +13629,35,18,26,0.0 +13629,2,19,43,0.0 +13629,29,123.79,24,0.0 +13629,32,32,49,0.0 +13629,65,21.05,3,0.0 +13629,69,36,19,0.0 +13629,13,6,29,0.0 +13629,37,26,16,0.0 +13629,75,7.75,15,0.0 +13629,25,14,23,0.0 +13629,3,10,14,0.0 +13629,10,31,32,0.0 +13629,66,17,46,0.0 +13629,21,10,49,0.0 +13629,72,34.8,37,0.0 +13629,23,9,34,0.0 +13629,67,14,39,0.0 +13629,42,14,34,0.0 +13629,63,43.9,15,0.0 +13629,5,21.35,24,0.0 +13629,19,9.2,11,0.0 +13629,50,16.25,35,0.0 +13629,12,38,21,0.0 +13629,61,28.5,16,0.0 +13629,47,9.5,19,0.0 +13629,45,9.5,7,0.0 +13629,73,15,2,0.0 +13629,48,12.75,41,0.0 +13629,57,19.5,13,0.0 +13629,39,18,48,0.0 +13629,77,13,31,0.0 +13629,8,40,30,0.0 +13629,20,81,50,0.0 +13629,17,39,45,0.0 +13629,30,25.89,50,0.0 +13629,59,55,17,0.0 +13629,7,30,33,0.0 +13629,76,18,27,0.0 +13629,56,38,32,0.0 +13629,4,22,22,0.0 +13629,1,18,27,0.0 +13629,54,7.45,29,0.0 +13629,41,9.65,11,0.0 +13629,64,33.25,31,0.0 +13629,6,25,7,0.0 +13629,74,10,23,0.0 +13629,31,12.5,30,0.0 +13629,46,12,20,0.0 +13629,60,34,25,0.0 +13629,18,62.5,33,0.0 +13629,24,4.5,23,0.0 +13629,38,263.5,17,0.0 +13629,58,13.25,2,0.0 +13629,53,32.8,35,0.0 +13629,70,15,44,0.0 +13629,44,19.45,18,0.0 +13629,43,46,23,0.0 +13629,62,49.3,15,0.0 +13629,34,14,32,0.0 +13629,16,17.45,48,0.0 +13629,33,2.5,42,0.0 +13629,14,23.25,23,0.0 +13630,70,15,8,0.0 +13630,25,14,37,0.0 +13630,41,9.65,36,0.0 +13630,69,36,12,0.0 +13630,35,18,29,0.0 +13630,9,97,46,0.0 +13630,40,18.4,28,0.0 +13630,52,7,26,0.0 +13630,53,32.8,29,0.0 +13630,60,34,22,0.0 +13630,17,39,50,0.0 +13630,3,10,41,0.0 +13630,23,9,1,0.0 +13630,26,31.23,9,0.0 +13630,37,26,8,0.0 +13630,39,18,26,0.0 +13630,62,49.3,48,0.0 +13630,51,53,17,0.0 +13630,6,25,4,0.0 +13630,24,4.5,23,0.0 +13630,14,23.25,20,0.0 +13630,44,19.45,44,0.0 +13630,46,12,46,0.0 +13630,12,38,2,0.0 +13630,61,28.5,14,0.0 +13630,49,20,7,0.0 +13630,63,43.9,21,0.0 +13630,13,6,27,0.0 +13630,43,46,14,0.0 +13630,22,21,27,0.0 +13630,54,7.45,1,0.0 +13630,15,15.5,29,0.0 +13630,29,123.79,11,0.0 +13630,36,19,23,0.0 +13630,10,31,24,0.0 +13631,60,34,40,0.0 +13631,59,55,42,0.0 +13631,62,49.3,14,0.0 +13631,34,14,22,0.0 +13631,8,40,39,0.0 +13631,36,19,37,0.0 +13631,22,21,50,0.0 +13631,53,32.8,23,0.0 +13631,13,6,19,0.0 +13631,54,7.45,44,0.0 +13631,16,17.45,11,0.0 +13631,10,31,26,0.0 +13631,50,16.25,42,0.0 +13631,77,13,19,0.0 +13631,30,25.89,14,0.0 +13631,56,38,36,0.0 +13631,43,46,21,0.0 +13631,70,15,36,0.0 +13631,72,34.8,26,0.0 +13631,21,10,47,0.0 +13631,4,22,1,0.0 +13631,2,19,48,0.0 +13631,25,14,10,0.0 +13631,3,10,6,0.0 +13631,9,97,9,0.0 +13631,51,53,25,0.0 +13631,71,21.5,16,0.0 +13631,75,7.75,43,0.0 +13631,66,17,20,0.0 +13631,44,19.45,5,0.0 +13631,64,33.25,47,0.0 +13632,33,2.5,45,0.0 +13632,23,9,47,0.0 +13632,26,31.23,14,0.0 +13632,19,9.2,43,0.0 +13632,67,14,25,0.0 +13632,70,15,43,0.0 +13632,39,18,24,0.0 +13632,37,26,21,0.0 +13632,68,12.5,19,0.0 +13632,30,25.89,26,0.0 +13632,21,10,4,0.0 +13632,69,36,15,0.0 +13632,41,9.65,31,0.0 +13632,14,23.25,39,0.0 +13632,51,53,27,0.0 +13632,10,31,41,0.0 +13632,77,13,47,0.0 +13632,48,12.75,19,0.0 +13632,5,21.35,42,0.0 +13632,54,7.45,17,0.0 +13632,42,14,12,0.0 +13632,15,15.5,33,0.0 +13632,38,263.5,22,0.0 +13632,44,19.45,1,0.0 +13632,71,21.5,29,0.0 +13632,1,18,24,0.0 +13632,65,21.05,35,0.0 +13632,45,9.5,30,0.0 +13632,72,34.8,37,0.0 +13632,11,21,48,0.0 +13632,47,9.5,47,0.0 +13632,55,24,25,0.0 +13632,64,33.25,2,0.0 +13632,73,15,15,0.0 +13632,4,22,49,0.0 +13632,24,4.5,12,0.0 +13632,28,45.6,24,0.0 +13632,52,7,21,0.0 +13632,31,12.5,42,0.0 +13632,6,25,27,0.0 +13632,36,19,46,0.0 +13632,20,81,12,0.0 +13632,3,10,10,0.0 +13632,74,10,33,0.0 +13632,57,19.5,6,0.0 +13632,25,14,24,0.0 +13632,35,18,34,0.0 +13632,53,32.8,21,0.0 +13632,27,43.9,20,0.0 +13632,12,38,26,0.0 +13632,7,30,27,0.0 +13632,60,34,29,0.0 +13632,17,39,9,0.0 +13632,63,43.9,10,0.0 +13632,16,17.45,7,0.0 +13632,2,19,10,0.0 +13632,8,40,8,0.0 +13632,13,6,30,0.0 +13632,62,49.3,25,0.0 +13632,61,28.5,6,0.0 +13632,32,32,1,0.0 +13632,50,16.25,11,0.0 +13632,46,12,21,0.0 +13632,75,7.75,18,0.0 +13633,18,62.5,23,0.0 +13633,28,45.6,26,0.0 +13633,3,10,11,0.0 +13633,53,32.8,32,0.0 +13633,66,17,45,0.0 +13633,15,15.5,14,0.0 +13633,52,7,9,0.0 +13633,42,14,17,0.0 +13633,27,43.9,9,0.0 +13633,63,43.9,37,0.0 +13633,2,19,28,0.0 +13633,67,14,5,0.0 +13633,5,21.35,50,0.0 +13633,30,25.89,48,0.0 +13633,65,21.05,2,0.0 +13633,61,28.5,49,0.0 +13633,68,12.5,6,0.0 +13633,1,18,33,0.0 +13633,72,34.8,4,0.0 +13633,46,12,37,0.0 +13633,33,2.5,22,0.0 +13633,50,16.25,30,0.0 +13633,71,21.5,12,0.0 +13633,16,17.45,38,0.0 +13633,23,9,38,0.0 +13633,31,12.5,35,0.0 +13633,21,10,31,0.0 +13633,35,18,33,0.0 +13633,29,123.79,27,0.0 +13633,24,4.5,8,0.0 +13633,10,31,13,0.0 +13634,72,34.8,27,0.0 +13634,3,10,44,0.0 +13634,28,45.6,39,0.0 +13634,52,7,36,0.0 +13634,10,31,7,0.0 +13634,16,17.45,32,0.0 +13634,14,23.25,50,0.0 +13634,11,21,10,0.0 +13634,8,40,1,0.0 +13634,15,15.5,38,0.0 +13634,26,31.23,26,0.0 +13634,46,12,25,0.0 +13634,27,43.9,46,0.0 +13634,29,123.79,16,0.0 +13634,48,12.75,2,0.0 +13634,53,32.8,38,0.0 +13634,20,81,40,0.0 +13634,64,33.25,2,0.0 +13634,68,12.5,17,0.0 +13634,63,43.9,50,0.0 +13634,33,2.5,14,0.0 +13634,47,9.5,17,0.0 +13634,31,12.5,11,0.0 +13634,62,49.3,45,0.0 +13634,24,4.5,5,0.0 +13634,2,19,41,0.0 +13634,67,14,22,0.0 +13634,21,10,21,0.0 +13634,76,18,40,0.0 +13634,66,17,50,0.0 +13634,70,15,10,0.0 +13634,50,16.25,16,0.0 +13634,30,25.89,40,0.0 +13634,23,9,8,0.0 +13634,58,13.25,8,0.0 +13634,65,21.05,14,0.0 +13634,54,7.45,26,0.0 +13634,19,9.2,47,0.0 +13634,13,6,3,0.0 +13634,38,263.5,30,0.0 +13634,69,36,25,0.0 +13634,37,26,12,0.0 +13634,45,9.5,39,0.0 +13634,36,19,48,0.0 +13634,43,46,21,0.0 +13634,51,53,19,0.0 +13634,32,32,27,0.0 +13634,61,28.5,3,0.0 +13634,71,21.5,3,0.0 +13634,41,9.65,33,0.0 +13634,17,39,31,0.0 +13634,39,18,3,0.0 +13634,40,18.4,1,0.0 +13634,7,30,46,0.0 +13634,12,38,35,0.0 +13634,18,62.5,39,0.0 +13634,56,38,30,0.0 +13634,44,19.45,3,0.0 +13634,5,21.35,45,0.0 +13634,22,21,47,0.0 +13634,77,13,10,0.0 +13634,73,15,1,0.0 +13634,42,14,41,0.0 +13634,34,14,23,0.0 +13634,1,18,7,0.0 +13634,6,25,38,0.0 +13634,57,19.5,31,0.0 +13634,74,10,36,0.0 +13634,9,97,39,0.0 +13634,25,14,48,0.0 +13634,35,18,14,0.0 +13635,70,15,7,0.0 +13635,66,17,41,0.0 +13635,28,45.6,12,0.0 +13635,57,19.5,25,0.0 +13635,36,19,40,0.0 +13635,37,26,11,0.0 +13635,41,9.65,4,0.0 +13635,60,34,26,0.0 +13635,64,33.25,16,0.0 +13635,7,30,25,0.0 +13635,59,55,11,0.0 +13635,42,14,41,0.0 +13635,22,21,27,0.0 +13635,34,14,44,0.0 +13635,23,9,11,0.0 +13635,44,19.45,34,0.0 +13635,12,38,8,0.0 +13635,13,6,2,0.0 +13635,6,25,27,0.0 +13635,33,2.5,9,0.0 +13635,48,12.75,44,0.0 +13635,52,7,13,0.0 +13635,3,10,5,0.0 +13635,67,14,11,0.0 +13635,18,62.5,15,0.0 +13635,53,32.8,27,0.0 +13635,68,12.5,32,0.0 +13635,49,20,37,0.0 +13635,51,53,50,0.0 +13635,9,97,34,0.0 +13635,16,17.45,24,0.0 +13635,63,43.9,30,0.0 +13635,26,31.23,28,0.0 +13635,62,49.3,31,0.0 +13635,20,81,41,0.0 +13635,14,23.25,3,0.0 +13635,40,18.4,24,0.0 +13635,74,10,24,0.0 +13635,39,18,20,0.0 +13635,4,22,42,0.0 +13635,19,9.2,33,0.0 +13635,54,7.45,16,0.0 +13635,77,13,1,0.0 +13635,50,16.25,5,0.0 +13635,24,4.5,36,0.0 +13635,55,24,9,0.0 +13635,38,263.5,50,0.0 +13635,73,15,5,0.0 +13635,2,19,10,0.0 +13635,56,38,18,0.0 +13635,58,13.25,35,0.0 +13635,61,28.5,33,0.0 +13635,11,21,22,0.0 +13635,8,40,26,0.0 +13635,30,25.89,50,0.0 +13635,32,32,40,0.0 +13635,45,9.5,8,0.0 +13635,76,18,39,0.0 +13635,65,21.05,25,0.0 +13635,27,43.9,24,0.0 +13635,71,21.5,8,0.0 +13635,21,10,30,0.0 +13635,10,31,40,0.0 +13635,5,21.35,14,0.0 +13635,25,14,4,0.0 +13635,75,7.75,37,0.0 +13635,46,12,1,0.0 +13635,43,46,34,0.0 +13635,29,123.79,15,0.0 +13635,31,12.5,18,0.0 +13635,72,34.8,42,0.0 +13635,17,39,50,0.0 +13635,47,9.5,16,0.0 +13636,59,55,15,0.0 +13636,39,18,17,0.0 +13636,1,18,45,0.0 +13636,69,36,13,0.0 +13636,29,123.79,44,0.0 +13636,68,12.5,12,0.0 +13636,7,30,7,0.0 +13636,4,22,23,0.0 +13636,16,17.45,9,0.0 +13636,65,21.05,5,0.0 +13636,48,12.75,28,0.0 +13636,2,19,9,0.0 +13636,32,32,24,0.0 +13636,57,19.5,36,0.0 +13636,66,17,24,0.0 +13636,62,49.3,10,0.0 +13636,74,10,4,0.0 +13636,53,32.8,18,0.0 +13636,49,20,43,0.0 +13636,17,39,19,0.0 +13636,41,9.65,25,0.0 +13636,42,14,35,0.0 +13636,30,25.89,9,0.0 +13636,58,13.25,9,0.0 +13636,71,21.5,37,0.0 +13636,31,12.5,45,0.0 +13636,15,15.5,44,0.0 +13636,26,31.23,3,0.0 +13636,51,53,44,0.0 +13636,70,15,13,0.0 +13636,73,15,39,0.0 +13636,27,43.9,39,0.0 +13636,44,19.45,44,0.0 +13636,38,263.5,38,0.0 +13636,45,9.5,23,0.0 +13636,52,7,33,0.0 +13636,5,21.35,11,0.0 +13636,25,14,4,0.0 +13637,20,81,32,0.0 +13637,41,9.65,49,0.0 +13637,26,31.23,20,0.0 +13637,73,15,32,0.0 +13637,15,15.5,39,0.0 +13637,7,30,12,0.0 +13637,13,6,32,0.0 +13637,48,12.75,41,0.0 +13637,2,19,47,0.0 +13637,54,7.45,11,0.0 +13637,53,32.8,1,0.0 +13637,67,14,44,0.0 +13637,17,39,12,0.0 +13637,33,2.5,3,0.0 +13637,21,10,37,0.0 +13637,68,12.5,44,0.0 +13637,37,26,2,0.0 +13637,55,24,50,0.0 +13637,62,49.3,20,0.0 +13637,43,46,10,0.0 +13637,35,18,11,0.0 +13637,59,55,28,0.0 +13637,28,45.6,19,0.0 +13637,5,21.35,43,0.0 +13637,12,38,13,0.0 +13637,18,62.5,38,0.0 +13637,60,34,15,0.0 +13637,1,18,50,0.0 +13637,34,14,7,0.0 +13637,65,21.05,39,0.0 +13637,36,19,29,0.0 +13637,77,13,39,0.0 +13638,69,36,11,0.0 +13638,42,14,49,0.0 +13638,39,18,16,0.0 +13638,60,34,35,0.0 +13638,15,15.5,7,0.0 +13638,70,15,20,0.0 +13638,40,18.4,20,0.0 +13638,52,7,6,0.0 +13638,30,25.89,11,0.0 +13638,58,13.25,6,0.0 +13638,35,18,3,0.0 +13638,53,32.8,23,0.0 +13638,26,31.23,2,0.0 +13638,76,18,50,0.0 +13638,1,18,23,0.0 +13638,43,46,40,0.0 +13638,47,9.5,27,0.0 +13638,64,33.25,31,0.0 +13638,28,45.6,30,0.0 +13638,4,22,16,0.0 +13638,63,43.9,38,0.0 +13638,51,53,25,0.0 +13638,72,34.8,27,0.0 +13639,24,4.5,25,0.0 +13639,31,12.5,21,0.0 +13639,3,10,23,0.0 +13640,1,18,6,0.0 +13640,58,13.25,46,0.0 +13640,70,15,46,0.0 +13640,17,39,42,0.0 +13640,3,10,38,0.0 +13640,72,34.8,48,0.0 +13640,60,34,35,0.0 +13640,66,17,48,0.0 +13640,63,43.9,24,0.0 +13640,34,14,35,0.0 +13640,67,14,2,0.0 +13640,30,25.89,1,0.0 +13640,43,46,15,0.0 +13640,45,9.5,35,0.0 +13640,5,21.35,43,0.0 +13640,8,40,15,0.0 +13640,62,49.3,19,0.0 +13640,69,36,34,0.0 +13640,28,45.6,11,0.0 +13641,20,81,34,0.0 +13641,61,28.5,18,0.0 +13641,59,55,44,0.0 +13641,42,14,33,0.0 +13641,38,263.5,8,0.0 +13641,14,23.25,16,0.0 +13641,53,32.8,2,0.0 +13641,70,15,8,0.0 +13641,16,17.45,27,0.0 +13641,21,10,39,0.0 +13641,56,38,47,0.0 +13641,12,38,49,0.0 +13641,24,4.5,2,0.0 +13641,29,123.79,39,0.0 +13641,28,45.6,33,0.0 +13641,71,21.5,39,0.0 +13641,58,13.25,30,0.0 +13641,26,31.23,14,0.0 +13641,74,10,46,0.0 +13641,60,34,16,0.0 +13641,46,12,42,0.0 +13641,13,6,35,0.0 +13641,37,26,3,0.0 +13642,23,9,3,0.0 +13642,45,9.5,4,0.0 +13642,66,17,26,0.0 +13642,50,16.25,34,0.0 +13642,74,10,48,0.0 +13642,63,43.9,49,0.0 +13642,33,2.5,29,0.0 +13642,21,10,14,0.0 +13642,30,25.89,6,0.0 +13642,70,15,29,0.0 +13642,72,34.8,32,0.0 +13642,11,21,14,0.0 +13642,24,4.5,14,0.0 +13642,51,53,24,0.0 +13642,44,19.45,13,0.0 +13642,49,20,15,0.0 +13642,38,263.5,50,0.0 +13642,4,22,50,0.0 +13642,35,18,18,0.0 +13642,13,6,47,0.0 +13642,47,9.5,14,0.0 +13642,57,19.5,40,0.0 +13642,73,15,19,0.0 +13642,26,31.23,12,0.0 +13642,14,23.25,28,0.0 +13642,34,14,50,0.0 +13642,5,21.35,15,0.0 +13642,20,81,38,0.0 +13642,22,21,22,0.0 +13642,52,7,28,0.0 +13642,39,18,16,0.0 +13642,58,13.25,4,0.0 +13642,6,25,28,0.0 +13642,17,39,24,0.0 +13642,62,49.3,32,0.0 +13642,9,97,14,0.0 +13642,10,31,32,0.0 +13642,3,10,34,0.0 +13642,65,21.05,14,0.0 +13642,59,55,27,0.0 +13642,40,18.4,41,0.0 +13642,75,7.75,36,0.0 +13642,36,19,7,0.0 +13642,60,34,15,0.0 +13642,68,12.5,31,0.0 +13642,77,13,9,0.0 +13642,54,7.45,40,0.0 +13642,7,30,26,0.0 +13642,16,17.45,3,0.0 +13642,8,40,2,0.0 +13642,71,21.5,32,0.0 +13642,31,12.5,31,0.0 +13642,28,45.6,17,0.0 +13642,32,32,26,0.0 +13642,19,9.2,3,0.0 +13642,1,18,5,0.0 +13642,46,12,31,0.0 +13642,2,19,35,0.0 +13642,27,43.9,15,0.0 +13642,15,15.5,20,0.0 +13642,55,24,45,0.0 +13642,18,62.5,43,0.0 +13642,48,12.75,41,0.0 +13642,67,14,46,0.0 +13642,43,46,43,0.0 +13643,2,19,22,0.0 +13643,63,43.9,30,0.0 +13643,69,36,35,0.0 +13643,61,28.5,14,0.0 +13643,8,40,44,0.0 +13643,39,18,30,0.0 +13643,32,32,14,0.0 +13643,55,24,47,0.0 +13643,3,10,36,0.0 +13643,6,25,15,0.0 +13643,21,10,19,0.0 +13643,66,17,34,0.0 +13643,33,2.5,28,0.0 +13643,45,9.5,28,0.0 +13643,37,26,38,0.0 +13643,50,16.25,26,0.0 +13643,58,13.25,37,0.0 +13643,56,38,44,0.0 +13644,2,19,35,0.0 +13644,73,15,46,0.0 +13644,42,14,42,0.0 +13644,32,32,10,0.0 +13644,76,18,7,0.0 +13645,36,19,35,0.0 +13645,76,18,15,0.0 +13645,8,40,9,0.0 +13645,21,10,38,0.0 +13645,54,7.45,24,0.0 +13645,30,25.89,18,0.0 +13645,23,9,10,0.0 +13645,69,36,27,0.0 +13645,47,9.5,24,0.0 +13645,56,38,41,0.0 +13645,25,14,14,0.0 +13645,52,7,9,0.0 +13645,2,19,41,0.0 +13645,58,13.25,21,0.0 +13645,1,18,41,0.0 +13645,10,31,40,0.0 +13645,4,22,30,0.0 +13645,65,21.05,30,0.0 +13645,18,62.5,34,0.0 +13645,7,30,3,0.0 +13645,46,12,41,0.0 +13645,16,17.45,22,0.0 +13645,68,12.5,19,0.0 +13645,62,49.3,50,0.0 +13645,5,21.35,12,0.0 +13645,66,17,10,0.0 +13645,15,15.5,37,0.0 +13645,11,21,10,0.0 +13645,64,33.25,21,0.0 +13645,70,15,23,0.0 +13645,24,4.5,3,0.0 +13645,41,9.65,17,0.0 +13645,63,43.9,25,0.0 +13645,44,19.45,6,0.0 +13645,53,32.8,43,0.0 +13645,27,43.9,31,0.0 +13645,29,123.79,21,0.0 +13645,42,14,7,0.0 +13645,14,23.25,34,0.0 +13645,77,13,40,0.0 +13645,28,45.6,49,0.0 +13645,19,9.2,25,0.0 +13645,59,55,2,0.0 +13645,9,97,21,0.0 +13645,22,21,48,0.0 +13645,39,18,20,0.0 +13645,55,24,30,0.0 +13645,61,28.5,31,0.0 +13645,74,10,4,0.0 +13645,43,46,34,0.0 +13645,67,14,46,0.0 +13645,20,81,35,0.0 +13645,26,31.23,42,0.0 +13645,6,25,46,0.0 +13645,32,32,43,0.0 +13645,72,34.8,27,0.0 +13645,73,15,39,0.0 +13645,48,12.75,19,0.0 +13645,38,263.5,23,0.0 +13645,40,18.4,18,0.0 +13645,33,2.5,38,0.0 +13645,57,19.5,30,0.0 +13645,71,21.5,3,0.0 +13646,12,38,16,0.0 +13646,31,12.5,7,0.0 +13646,38,263.5,13,0.0 +13646,56,38,10,0.0 +13646,59,55,43,0.0 +13646,40,18.4,38,0.0 +13646,18,62.5,21,0.0 +13646,28,45.6,19,0.0 +13646,66,17,21,0.0 +13646,57,19.5,15,0.0 +13646,74,10,46,0.0 +13646,29,123.79,44,0.0 +13646,23,9,32,0.0 +13646,64,33.25,24,0.0 +13646,25,14,35,0.0 +13646,16,17.45,38,0.0 +13646,71,21.5,43,0.0 +13646,5,21.35,5,0.0 +13646,11,21,20,0.0 +13646,9,97,14,0.0 +13646,6,25,3,0.0 +13646,37,26,11,0.0 +13646,39,18,22,0.0 +13646,2,19,5,0.0 +13646,41,9.65,10,0.0 +13646,52,7,37,0.0 +13646,75,7.75,22,0.0 +13646,53,32.8,25,0.0 +13646,62,49.3,33,0.0 +13646,68,12.5,4,0.0 +13646,10,31,19,0.0 +13646,55,24,24,0.0 +13646,65,21.05,33,0.0 +13646,48,12.75,16,0.0 +13646,19,9.2,20,0.0 +13646,26,31.23,2,0.0 +13646,30,25.89,14,0.0 +13646,76,18,14,0.0 +13646,43,46,5,0.0 +13646,47,9.5,21,0.0 +13646,27,43.9,13,0.0 +13646,17,39,33,0.0 +13646,3,10,38,0.0 +13646,70,15,43,0.0 +13646,67,14,16,0.0 +13646,1,18,37,0.0 +13646,61,28.5,37,0.0 +13646,22,21,43,0.0 +13646,13,6,37,0.0 +13646,33,2.5,20,0.0 +13646,8,40,6,0.0 +13646,72,34.8,32,0.0 +13646,58,13.25,31,0.0 +13646,45,9.5,4,0.0 +13646,24,4.5,12,0.0 +13646,20,81,10,0.0 +13646,21,10,20,0.0 +13646,34,14,42,0.0 +13646,4,22,11,0.0 +13646,32,32,25,0.0 +13646,7,30,46,0.0 +13646,54,7.45,26,0.0 +13646,46,12,44,0.0 +13646,14,23.25,18,0.0 +13646,36,19,35,0.0 +13646,50,16.25,39,0.0 +13646,77,13,34,0.0 +13646,44,19.45,40,0.0 +13647,61,28.5,37,0.0 +13647,28,45.6,32,0.0 +13647,7,30,18,0.0 +13647,50,16.25,38,0.0 +13647,39,18,37,0.0 +13647,31,12.5,32,0.0 +13647,27,43.9,20,0.0 +13647,11,21,28,0.0 +13647,74,10,19,0.0 +13647,75,7.75,18,0.0 +13647,15,15.5,16,0.0 +13647,25,14,18,0.0 +13647,34,14,35,0.0 +13647,38,263.5,15,0.0 +13647,20,81,27,0.0 +13647,12,38,9,0.0 +13647,51,53,49,0.0 +13647,60,34,5,0.0 +13647,23,9,31,0.0 +13647,55,24,35,0.0 +13647,21,10,17,0.0 +13647,2,19,18,0.0 +13647,54,7.45,34,0.0 +13647,66,17,43,0.0 +13647,58,13.25,42,0.0 +13647,56,38,3,0.0 +13647,59,55,2,0.0 +13647,68,12.5,48,0.0 +13647,44,19.45,10,0.0 +13647,47,9.5,34,0.0 +13647,53,32.8,28,0.0 +13647,69,36,4,0.0 +13647,4,22,3,0.0 +13647,18,62.5,32,0.0 +13647,65,21.05,38,0.0 +13647,45,9.5,29,0.0 +13647,33,2.5,24,0.0 +13647,62,49.3,44,0.0 +13647,35,18,48,0.0 +13647,14,23.25,33,0.0 +13647,64,33.25,35,0.0 +13647,22,21,11,0.0 +13647,13,6,2,0.0 +13647,3,10,47,0.0 +13647,32,32,30,0.0 +13647,71,21.5,47,0.0 +13647,10,31,15,0.0 +13647,72,34.8,26,0.0 +13647,26,31.23,11,0.0 +13647,67,14,42,0.0 +13647,37,26,29,0.0 +13647,77,13,40,0.0 +13647,57,19.5,48,0.0 +13647,52,7,2,0.0 +13647,76,18,25,0.0 +13647,43,46,4,0.0 +13647,36,19,44,0.0 +13647,63,43.9,42,0.0 +13647,42,14,50,0.0 +13647,41,9.65,28,0.0 +13647,8,40,28,0.0 +13647,30,25.89,35,0.0 +13647,9,97,30,0.0 +13647,16,17.45,11,0.0 +13647,49,20,28,0.0 +13647,40,18.4,23,0.0 +13647,70,15,15,0.0 +13647,29,123.79,25,0.0 +13647,73,15,19,0.0 +13647,48,12.75,20,0.0 +13647,24,4.5,47,0.0 +13647,19,9.2,40,0.0 +13648,47,9.5,26,0.0 +13648,62,49.3,39,0.0 +13649,36,19,36,0.0 +13649,66,17,14,0.0 +13649,31,12.5,10,0.0 +13649,23,9,3,0.0 +13649,58,13.25,19,0.0 +13649,28,45.6,29,0.0 +13649,52,7,15,0.0 +13649,53,32.8,21,0.0 +13649,4,22,20,0.0 +13649,24,4.5,7,0.0 +13649,14,23.25,17,0.0 +13649,35,18,41,0.0 +13649,5,21.35,5,0.0 +13649,26,31.23,49,0.0 +13649,3,10,3,0.0 +13649,22,21,34,0.0 +13649,54,7.45,18,0.0 +13649,42,14,10,0.0 +13649,62,49.3,49,0.0 +13649,75,7.75,2,0.0 +13649,32,32,50,0.0 +13649,30,25.89,21,0.0 +13649,57,19.5,27,0.0 +13649,10,31,36,0.0 +13649,45,9.5,38,0.0 +13649,34,14,23,0.0 +13649,43,46,48,0.0 +13649,13,6,14,0.0 +13649,41,9.65,10,0.0 +13649,47,9.5,19,0.0 +13649,17,39,21,0.0 +13649,21,10,30,0.0 +13649,50,16.25,5,0.0 +13649,6,25,42,0.0 +13649,9,97,35,0.0 +13649,37,26,45,0.0 +13649,33,2.5,33,0.0 +13650,55,24,9,0.0 +13650,47,9.5,23,0.0 +13650,35,18,45,0.0 +13650,63,43.9,14,0.0 +13650,62,49.3,13,0.0 +13650,22,21,31,0.0 +13650,45,9.5,41,0.0 +13650,23,9,13,0.0 +13650,25,14,9,0.0 +13650,51,53,43,0.0 +13650,76,18,42,0.0 +13650,30,25.89,43,0.0 +13650,42,14,24,0.0 +13650,70,15,29,0.0 +13650,29,123.79,19,0.0 +13650,12,38,43,0.0 +13650,68,12.5,25,0.0 +13650,5,21.35,46,0.0 +13650,6,25,15,0.0 +13650,54,7.45,37,0.0 +13650,38,263.5,45,0.0 +13650,72,34.8,42,0.0 +13650,33,2.5,12,0.0 +13650,44,19.45,2,0.0 +13650,2,19,33,0.0 +13650,13,6,14,0.0 +13650,36,19,11,0.0 +13650,18,62.5,30,0.0 +13650,66,17,19,0.0 +13650,53,32.8,22,0.0 +13650,20,81,49,0.0 +13650,48,12.75,20,0.0 +13650,75,7.75,47,0.0 +13650,24,4.5,36,0.0 +13650,17,39,7,0.0 +13650,4,22,34,0.0 +13650,49,20,48,0.0 +13650,8,40,19,0.0 +13650,1,18,25,0.0 +13650,74,10,32,0.0 +13650,39,18,20,0.0 +13650,27,43.9,40,0.0 +13650,10,31,18,0.0 +13650,56,38,33,0.0 +13650,60,34,27,0.0 +13650,77,13,32,0.0 +13650,31,12.5,50,0.0 +13650,14,23.25,5,0.0 +13650,16,17.45,6,0.0 +13650,71,21.5,31,0.0 +13650,69,36,45,0.0 +13650,57,19.5,13,0.0 +13650,43,46,25,0.0 +13650,65,21.05,48,0.0 +13650,58,13.25,4,0.0 +13650,52,7,16,0.0 +13650,19,9.2,8,0.0 +13650,3,10,21,0.0 +13650,73,15,9,0.0 +13650,59,55,46,0.0 +13650,61,28.5,1,0.0 +13650,21,10,50,0.0 +13650,7,30,46,0.0 +13650,41,9.65,20,0.0 +13650,64,33.25,29,0.0 +13650,40,18.4,17,0.0 +13650,11,21,5,0.0 +13650,34,14,50,0.0 +13650,37,26,40,0.0 +13650,15,15.5,23,0.0 +13650,67,14,16,0.0 +13650,28,45.6,9,0.0 +13651,48,12.75,25,0.0 +13651,10,31,9,0.0 +13651,12,38,26,0.0 +13651,4,22,3,0.0 +13651,30,25.89,18,0.0 +13651,73,15,12,0.0 +13651,3,10,48,0.0 +13651,70,15,30,0.0 +13651,77,13,23,0.0 +13651,24,4.5,16,0.0 +13651,1,18,36,0.0 +13652,35,18,40,0.0 +13652,58,13.25,48,0.0 +13652,50,16.25,24,0.0 +13652,37,26,27,0.0 +13652,15,15.5,45,0.0 +13652,6,25,11,0.0 +13652,11,21,14,0.0 +13652,24,4.5,32,0.0 +13652,47,9.5,19,0.0 +13652,59,55,20,0.0 +13652,34,14,37,0.0 +13652,51,53,23,0.0 +13652,9,97,7,0.0 +13652,31,12.5,26,0.0 +13652,65,21.05,34,0.0 +13652,40,18.4,15,0.0 +13652,18,62.5,20,0.0 +13652,39,18,26,0.0 +13652,57,19.5,49,0.0 +13652,13,6,28,0.0 +13652,41,9.65,21,0.0 +13652,10,31,31,0.0 +13652,77,13,36,0.0 +13652,17,39,28,0.0 +13652,61,28.5,6,0.0 +13652,28,45.6,40,0.0 +13652,67,14,18,0.0 +13652,63,43.9,46,0.0 +13652,70,15,48,0.0 +13652,71,21.5,17,0.0 +13652,25,14,18,0.0 +13652,36,19,24,0.0 +13652,62,49.3,49,0.0 +13652,60,34,8,0.0 +13652,4,22,31,0.0 +13652,69,36,40,0.0 +13652,72,34.8,6,0.0 +13652,30,25.89,18,0.0 +13652,38,263.5,18,0.0 +13652,64,33.25,12,0.0 +13652,1,18,8,0.0 +13652,12,38,32,0.0 +13652,75,7.75,24,0.0 +13652,45,9.5,37,0.0 +13652,46,12,31,0.0 +13652,49,20,46,0.0 +13652,7,30,4,0.0 +13652,54,7.45,15,0.0 +13653,21,10,31,0.0 +13653,75,7.75,10,0.0 +13653,70,15,17,0.0 +13653,42,14,28,0.0 +13653,22,21,44,0.0 +13653,69,36,6,0.0 +13653,5,21.35,32,0.0 +13653,67,14,19,0.0 +13653,33,2.5,27,0.0 +13653,74,10,49,0.0 +13653,7,30,49,0.0 +13653,4,22,5,0.0 +13653,64,33.25,12,0.0 +13653,76,18,43,0.0 +13653,57,19.5,34,0.0 +13653,26,31.23,47,0.0 +13653,25,14,40,0.0 +13653,55,24,12,0.0 +13653,63,43.9,42,0.0 +13653,13,6,22,0.0 +13653,72,34.8,47,0.0 +13653,20,81,13,0.0 +13654,50,16.25,24,0.0 +13654,11,21,33,0.0 +13654,10,31,27,0.0 +13654,68,12.5,40,0.0 +13655,37,26,7,0.0 +13655,11,21,42,0.0 +13655,47,9.5,27,0.0 +13655,33,2.5,30,0.0 +13655,66,17,34,0.0 +13655,36,19,29,0.0 +13655,40,18.4,9,0.0 +13655,21,10,41,0.0 +13655,14,23.25,20,0.0 +13655,75,7.75,32,0.0 +13655,19,9.2,50,0.0 +13655,23,9,47,0.0 +13655,50,16.25,45,0.0 +13655,77,13,36,0.0 +13655,64,33.25,15,0.0 +13655,72,34.8,6,0.0 +13655,73,15,45,0.0 +13655,59,55,32,0.0 +13655,49,20,17,0.0 +13655,65,21.05,24,0.0 +13655,5,21.35,46,0.0 +13655,25,14,23,0.0 +13655,76,18,47,0.0 +13655,43,46,39,0.0 +13655,8,40,9,0.0 +13655,54,7.45,20,0.0 +13655,30,25.89,15,0.0 +13655,63,43.9,16,0.0 +13655,56,38,21,0.0 +13655,15,15.5,32,0.0 +13655,26,31.23,31,0.0 +13655,34,14,28,0.0 +13655,51,53,3,0.0 +13655,45,9.5,20,0.0 +13655,22,21,39,0.0 +13655,17,39,13,0.0 +13655,31,12.5,9,0.0 +13655,35,18,13,0.0 +13655,60,34,32,0.0 +13655,61,28.5,2,0.0 +13655,52,7,25,0.0 +13655,13,6,40,0.0 +13655,57,19.5,33,0.0 +13655,29,123.79,7,0.0 +13655,39,18,4,0.0 +13655,74,10,9,0.0 +13655,12,38,41,0.0 +13655,44,19.45,39,0.0 +13655,32,32,38,0.0 +13655,70,15,43,0.0 +13655,6,25,24,0.0 +13655,20,81,2,0.0 +13655,46,12,33,0.0 +13655,68,12.5,26,0.0 +13655,28,45.6,36,0.0 +13655,71,21.5,30,0.0 +13655,48,12.75,13,0.0 +13655,7,30,45,0.0 +13655,42,14,22,0.0 +13655,27,43.9,25,0.0 +13655,10,31,37,0.0 +13655,18,62.5,49,0.0 +13655,24,4.5,43,0.0 +13655,41,9.65,10,0.0 +13655,16,17.45,31,0.0 +13655,67,14,15,0.0 +13655,4,22,21,0.0 +13655,58,13.25,16,0.0 +13655,9,97,45,0.0 +13655,55,24,38,0.0 +13655,1,18,2,0.0 +13655,3,10,37,0.0 +13655,38,263.5,23,0.0 +13655,2,19,31,0.0 +13656,75,7.75,40,0.0 +13656,60,34,23,0.0 +13656,58,13.25,49,0.0 +13656,3,10,45,0.0 +13656,62,49.3,21,0.0 +13656,40,18.4,20,0.0 +13656,2,19,27,0.0 +13656,54,7.45,29,0.0 +13656,42,14,42,0.0 +13656,1,18,18,0.0 +13656,8,40,31,0.0 +13656,20,81,50,0.0 +13656,57,19.5,29,0.0 +13656,69,36,3,0.0 +13656,74,10,36,0.0 +13656,15,15.5,41,0.0 +13656,38,263.5,38,0.0 +13656,35,18,36,0.0 +13656,61,28.5,32,0.0 +13656,29,123.79,29,0.0 +13656,6,25,44,0.0 +13656,43,46,20,0.0 +13656,52,7,8,0.0 +13656,56,38,12,0.0 +13656,59,55,2,0.0 +13656,11,21,45,0.0 +13656,10,31,23,0.0 +13656,53,32.8,8,0.0 +13656,36,19,13,0.0 +13656,48,12.75,33,0.0 +13656,67,14,1,0.0 +13656,30,25.89,45,0.0 +13656,68,12.5,41,0.0 +13656,77,13,46,0.0 +13656,46,12,28,0.0 +13656,26,31.23,43,0.0 +13656,16,17.45,16,0.0 +13656,14,23.25,16,0.0 +13656,12,38,37,0.0 +13656,71,21.5,26,0.0 +13656,5,21.35,29,0.0 +13656,70,15,32,0.0 +13656,13,6,13,0.0 +13656,4,22,37,0.0 +13656,44,19.45,16,0.0 +13656,9,97,25,0.0 +13656,49,20,5,0.0 +13656,21,10,39,0.0 +13656,50,16.25,49,0.0 +13656,47,9.5,38,0.0 +13656,45,9.5,14,0.0 +13656,28,45.6,3,0.0 +13656,51,53,27,0.0 +13656,17,39,17,0.0 +13656,55,24,39,0.0 +13656,22,21,31,0.0 +13656,25,14,46,0.0 +13656,24,4.5,40,0.0 +13656,23,9,23,0.0 +13656,72,34.8,3,0.0 +13656,63,43.9,50,0.0 +13656,34,14,40,0.0 +13656,37,26,46,0.0 +13656,73,15,45,0.0 +13656,64,33.25,28,0.0 +13656,31,12.5,50,0.0 +13656,39,18,31,0.0 +13656,66,17,8,0.0 +13656,76,18,22,0.0 +13656,41,9.65,22,0.0 +13656,19,9.2,25,0.0 +13656,27,43.9,19,0.0 +13656,7,30,28,0.0 +13656,33,2.5,9,0.0 +13656,65,21.05,19,0.0 +13657,24,4.5,8,0.0 +13657,49,20,38,0.0 +13657,44,19.45,24,0.0 +13657,9,97,35,0.0 +13657,58,13.25,39,0.0 +13657,65,21.05,32,0.0 +13657,69,36,42,0.0 +13657,68,12.5,36,0.0 +13657,54,7.45,38,0.0 +13657,7,30,11,0.0 +13657,20,81,8,0.0 +13657,53,32.8,21,0.0 +13657,36,19,48,0.0 +13657,33,2.5,23,0.0 +13657,28,45.6,9,0.0 +13657,19,9.2,7,0.0 +13657,70,15,38,0.0 +13657,67,14,46,0.0 +13657,18,62.5,37,0.0 +13657,4,22,49,0.0 +13657,5,21.35,33,0.0 +13657,45,9.5,38,0.0 +13657,10,31,7,0.0 +13657,8,40,23,0.0 +13657,29,123.79,8,0.0 +13657,40,18.4,44,0.0 +13657,77,13,37,0.0 +13657,52,7,10,0.0 +13657,1,18,48,0.0 +13658,16,17.45,10,0.0 +13658,60,34,8,0.0 +13658,66,17,31,0.0 +13658,3,10,29,0.0 +13658,76,18,39,0.0 +13658,19,9.2,31,0.0 +13658,57,19.5,49,0.0 +13658,74,10,47,0.0 +13658,64,33.25,20,0.0 +13658,6,25,44,0.0 +13658,36,19,43,0.0 +13658,45,9.5,10,0.0 +13658,55,24,31,0.0 +13658,42,14,42,0.0 +13658,75,7.75,2,0.0 +13658,30,25.89,29,0.0 +13658,43,46,38,0.0 +13658,32,32,44,0.0 +13658,7,30,41,0.0 +13658,21,10,33,0.0 +13658,62,49.3,40,0.0 +13659,24,4.5,1,0.0 +13659,36,19,23,0.0 +13659,74,10,38,0.0 +13659,62,49.3,42,0.0 +13659,39,18,41,0.0 +13659,19,9.2,21,0.0 +13659,55,24,19,0.0 +13659,10,31,48,0.0 +13659,53,32.8,11,0.0 +13659,6,25,17,0.0 +13659,37,26,40,0.0 +13659,22,21,38,0.0 +13659,34,14,37,0.0 +13659,35,18,23,0.0 +13659,51,53,15,0.0 +13659,30,25.89,24,0.0 +13659,7,30,9,0.0 +13659,75,7.75,20,0.0 +13659,12,38,32,0.0 +13659,18,62.5,23,0.0 +13659,13,6,29,0.0 +13659,11,21,40,0.0 +13659,5,21.35,45,0.0 +13659,56,38,12,0.0 +13659,59,55,43,0.0 +13659,8,40,48,0.0 +13659,57,19.5,35,0.0 +13659,67,14,19,0.0 +13659,64,33.25,10,0.0 +13659,47,9.5,39,0.0 +13659,70,15,27,0.0 +13659,16,17.45,49,0.0 +13659,38,263.5,16,0.0 +13659,25,14,21,0.0 +13659,23,9,6,0.0 +13659,14,23.25,39,0.0 +13659,32,32,38,0.0 +13659,50,16.25,21,0.0 +13659,21,10,18,0.0 +13659,2,19,8,0.0 +13659,69,36,14,0.0 +13659,33,2.5,39,0.0 +13659,65,21.05,34,0.0 +13659,3,10,37,0.0 +13659,58,13.25,45,0.0 +13659,73,15,24,0.0 +13659,48,12.75,27,0.0 +13659,43,46,43,0.0 +13660,55,24,38,0.0 +13660,14,23.25,3,0.0 +13660,42,14,34,0.0 +13660,35,18,25,0.0 +13660,3,10,28,0.0 +13660,54,7.45,27,0.0 +13660,43,46,18,0.0 +13660,46,12,5,0.0 +13660,44,19.45,31,0.0 +13660,65,21.05,9,0.0 +13660,61,28.5,39,0.0 +13660,37,26,9,0.0 +13660,58,13.25,17,0.0 +13660,27,43.9,46,0.0 +13660,34,14,13,0.0 +13660,9,97,6,0.0 +13660,16,17.45,47,0.0 +13660,71,21.5,45,0.0 +13660,2,19,34,0.0 +13660,59,55,15,0.0 +13660,17,39,30,0.0 +13660,33,2.5,11,0.0 +13660,28,45.6,50,0.0 +13660,72,34.8,34,0.0 +13660,50,16.25,1,0.0 +13660,30,25.89,27,0.0 +13660,56,38,43,0.0 +13660,21,10,23,0.0 +13660,69,36,47,0.0 +13660,11,21,13,0.0 +13661,57,19.5,9,0.0 +13661,55,24,3,0.0 +13661,26,31.23,38,0.0 +13661,30,25.89,42,0.0 +13661,71,21.5,10,0.0 +13661,45,9.5,42,0.0 +13661,49,20,18,0.0 +13661,75,7.75,37,0.0 +13661,11,21,14,0.0 +13661,35,18,20,0.0 +13661,72,34.8,19,0.0 +13661,62,49.3,26,0.0 +13661,8,40,6,0.0 +13661,52,7,10,0.0 +13661,69,36,35,0.0 +13661,37,26,1,0.0 +13661,42,14,33,0.0 +13661,20,81,15,0.0 +13661,48,12.75,20,0.0 +13661,60,34,26,0.0 +13661,43,46,19,0.0 +13661,67,14,24,0.0 +13661,19,9.2,19,0.0 +13662,32,32,8,0.0 +13662,75,7.75,8,0.0 +13662,11,21,2,0.0 +13662,13,6,18,0.0 +13662,30,25.89,38,0.0 +13662,8,40,37,0.0 +13662,21,10,18,0.0 +13662,10,31,42,0.0 +13662,6,25,32,0.0 +13662,38,263.5,34,0.0 +13662,64,33.25,4,0.0 +13662,45,9.5,17,0.0 +13662,40,18.4,48,0.0 +13662,9,97,2,0.0 +13662,7,30,31,0.0 +13662,22,21,24,0.0 +13662,20,81,12,0.0 +13662,2,19,12,0.0 +13662,60,34,5,0.0 +13662,14,23.25,11,0.0 +13662,53,32.8,22,0.0 +13662,55,24,41,0.0 +13662,61,28.5,13,0.0 +13662,25,14,16,0.0 +13662,62,49.3,24,0.0 +13662,74,10,50,0.0 +13662,36,19,8,0.0 +13662,66,17,18,0.0 +13662,71,21.5,6,0.0 +13662,28,45.6,19,0.0 +13662,77,13,50,0.0 +13662,34,14,35,0.0 +13662,72,34.8,44,0.0 +13662,39,18,13,0.0 +13662,29,123.79,44,0.0 +13662,3,10,3,0.0 +13662,41,9.65,47,0.0 +13662,57,19.5,28,0.0 +13662,27,43.9,47,0.0 +13662,52,7,40,0.0 +13662,1,18,2,0.0 +13662,16,17.45,33,0.0 +13662,73,15,30,0.0 +13662,24,4.5,16,0.0 +13663,49,20,25,0.0 +13663,67,14,35,0.0 +13663,6,25,47,0.0 +13663,50,16.25,16,0.0 +13663,29,123.79,16,0.0 +13663,63,43.9,33,0.0 +13663,21,10,34,0.0 +13663,41,9.65,44,0.0 +13663,44,19.45,1,0.0 +13663,68,12.5,30,0.0 +13663,64,33.25,46,0.0 +13663,25,14,6,0.0 +13663,46,12,19,0.0 +13663,54,7.45,49,0.0 +13663,12,38,14,0.0 +13663,11,21,27,0.0 +13663,30,25.89,46,0.0 +13663,32,32,19,0.0 +13663,65,21.05,37,0.0 +13663,28,45.6,47,0.0 +13663,76,18,38,0.0 +13663,73,15,9,0.0 +13663,23,9,3,0.0 +13663,40,18.4,22,0.0 +13663,10,31,36,0.0 +13663,14,23.25,28,0.0 +13663,59,55,12,0.0 +13663,52,7,2,0.0 +13663,9,97,41,0.0 +13663,13,6,6,0.0 +13663,16,17.45,24,0.0 +13663,33,2.5,14,0.0 +13663,26,31.23,46,0.0 +13663,74,10,8,0.0 +13663,36,19,21,0.0 +13663,62,49.3,9,0.0 +13663,19,9.2,8,0.0 +13663,5,21.35,41,0.0 +13663,27,43.9,44,0.0 +13663,35,18,6,0.0 +13663,72,34.8,17,0.0 +13663,58,13.25,46,0.0 +13663,22,21,34,0.0 +13664,36,19,24,0.0 +13664,11,21,8,0.0 +13664,8,40,48,0.0 +13664,25,14,8,0.0 +13664,73,15,42,0.0 +13664,27,43.9,50,0.0 +13664,6,25,48,0.0 +13664,26,31.23,3,0.0 +13664,4,22,29,0.0 +13664,5,21.35,5,0.0 +13664,63,43.9,41,0.0 +13664,42,14,42,0.0 +13664,76,18,10,0.0 +13664,49,20,39,0.0 +13664,14,23.25,11,0.0 +13664,32,32,8,0.0 +13664,58,13.25,12,0.0 +13664,18,62.5,33,0.0 +13664,54,7.45,27,0.0 +13664,43,46,11,0.0 +13664,52,7,4,0.0 +13664,50,16.25,20,0.0 +13664,53,32.8,27,0.0 +13664,59,55,19,0.0 +13664,51,53,27,0.0 +13664,7,30,20,0.0 +13664,3,10,11,0.0 +13664,2,19,3,0.0 +13664,28,45.6,16,0.0 +13664,61,28.5,29,0.0 +13664,19,9.2,9,0.0 +13664,29,123.79,14,0.0 +13664,24,4.5,13,0.0 +13664,9,97,31,0.0 +13664,57,19.5,27,0.0 +13664,66,17,10,0.0 +13664,74,10,21,0.0 +13665,5,21.35,7,0.0 +13665,70,15,21,0.0 +13665,11,21,46,0.0 +13665,51,53,21,0.0 +13665,65,21.05,33,0.0 +13665,8,40,4,0.0 +13665,36,19,46,0.0 +13665,53,32.8,46,0.0 +13665,19,9.2,36,0.0 +13665,22,21,47,0.0 +13665,25,14,50,0.0 +13665,16,17.45,7,0.0 +13665,60,34,45,0.0 +13665,23,9,26,0.0 +13665,40,18.4,10,0.0 +13665,52,7,39,0.0 +13665,75,7.75,44,0.0 +13665,14,23.25,20,0.0 +13665,10,31,26,0.0 +13665,30,25.89,38,0.0 +13665,48,12.75,30,0.0 +13665,20,81,42,0.0 +13665,31,12.5,39,0.0 +13665,45,9.5,2,0.0 +13665,62,49.3,22,0.0 +13665,3,10,10,0.0 +13665,1,18,8,0.0 +13665,72,34.8,23,0.0 +13665,57,19.5,8,0.0 +13665,27,43.9,31,0.0 +13665,35,18,49,0.0 +13665,28,45.6,45,0.0 +13665,74,10,42,0.0 +13665,59,55,12,0.0 +13665,44,19.45,39,0.0 +13665,67,14,26,0.0 +13665,43,46,20,0.0 +13665,26,31.23,5,0.0 +13665,76,18,34,0.0 +13665,6,25,6,0.0 +13665,68,12.5,46,0.0 +13665,7,30,17,0.0 +13665,77,13,5,0.0 +13665,21,10,11,0.0 +13665,56,38,9,0.0 +13665,18,62.5,23,0.0 +13665,13,6,47,0.0 +13665,66,17,44,0.0 +13665,29,123.79,43,0.0 +13665,4,22,50,0.0 +13665,15,15.5,16,0.0 +13665,50,16.25,33,0.0 +13665,61,28.5,19,0.0 +13665,41,9.65,28,0.0 +13665,9,97,45,0.0 +13665,47,9.5,19,0.0 +13665,64,33.25,30,0.0 +13666,6,25,2,0.0 +13666,55,24,14,0.0 +13666,47,9.5,49,0.0 +13666,28,45.6,44,0.0 +13666,61,28.5,20,0.0 +13666,39,18,41,0.0 +13666,60,34,41,0.0 +13666,37,26,38,0.0 +13666,24,4.5,2,0.0 +13666,20,81,23,0.0 +13666,2,19,41,0.0 +13666,74,10,34,0.0 +13666,34,14,26,0.0 +13666,18,62.5,45,0.0 +13666,68,12.5,48,0.0 +13666,43,46,48,0.0 +13666,49,20,6,0.0 +13666,33,2.5,19,0.0 +13666,75,7.75,31,0.0 +13666,64,33.25,48,0.0 +13666,35,18,2,0.0 +13666,7,30,20,0.0 +13666,65,21.05,38,0.0 +13666,48,12.75,22,0.0 +13666,62,49.3,24,0.0 +13666,27,43.9,21,0.0 +13666,9,97,41,0.0 +13666,53,32.8,11,0.0 +13666,52,7,12,0.0 +13666,30,25.89,41,0.0 +13666,42,14,29,0.0 +13666,66,17,22,0.0 +13666,8,40,28,0.0 +13666,3,10,32,0.0 +13666,50,16.25,6,0.0 +13666,22,21,6,0.0 +13666,21,10,28,0.0 +13666,45,9.5,39,0.0 +13666,31,12.5,26,0.0 +13666,26,31.23,34,0.0 +13666,63,43.9,16,0.0 +13666,16,17.45,49,0.0 +13666,46,12,8,0.0 +13666,54,7.45,40,0.0 +13666,58,13.25,16,0.0 +13666,10,31,32,0.0 +13666,56,38,3,0.0 +13667,56,38,15,0.0 +13667,48,12.75,14,0.0 +13667,34,14,3,0.0 +13667,5,21.35,2,0.0 +13667,42,14,10,0.0 +13667,2,19,30,0.0 +13667,58,13.25,3,0.0 +13667,53,32.8,49,0.0 +13667,17,39,18,0.0 +13667,44,19.45,5,0.0 +13667,7,30,18,0.0 +13667,11,21,24,0.0 +13667,47,9.5,11,0.0 +13667,74,10,21,0.0 +13667,20,81,8,0.0 +13667,35,18,10,0.0 +13667,63,43.9,26,0.0 +13667,8,40,49,0.0 +13667,36,19,29,0.0 +13667,64,33.25,44,0.0 +13667,33,2.5,11,0.0 +13667,72,34.8,18,0.0 +13667,57,19.5,28,0.0 +13667,29,123.79,26,0.0 +13667,38,263.5,37,0.0 +13667,4,22,50,0.0 +13667,62,49.3,1,0.0 +13667,70,15,21,0.0 +13667,51,53,26,0.0 +13667,37,26,35,0.0 +13667,65,21.05,10,0.0 +13667,77,13,37,0.0 +13667,60,34,9,0.0 +13667,16,17.45,1,0.0 +13667,66,17,2,0.0 +13667,12,38,30,0.0 +13667,3,10,35,0.0 +13668,48,12.75,31,0.0 +13668,63,43.9,48,0.0 +13668,5,21.35,3,0.0 +13668,33,2.5,26,0.0 +13668,17,39,12,0.0 +13668,28,45.6,44,0.0 +13669,31,12.5,13,0.0 +13669,19,9.2,29,0.0 +13669,37,26,8,0.0 +13669,1,18,5,0.0 +13669,26,31.23,5,0.0 +13669,9,97,28,0.0 +13669,24,4.5,18,0.0 +13669,53,32.8,25,0.0 +13669,54,7.45,32,0.0 +13669,64,33.25,10,0.0 +13669,57,19.5,40,0.0 +13669,42,14,48,0.0 +13669,2,19,20,0.0 +13669,10,31,15,0.0 +13669,41,9.65,45,0.0 +13669,59,55,31,0.0 +13669,56,38,46,0.0 +13669,12,38,18,0.0 +13669,21,10,48,0.0 +13669,47,9.5,5,0.0 +13669,30,25.89,15,0.0 +13669,49,20,11,0.0 +13669,63,43.9,44,0.0 +13669,6,25,46,0.0 +13669,14,23.25,7,0.0 +13669,46,12,9,0.0 +13669,4,22,6,0.0 +13669,38,263.5,14,0.0 +13669,44,19.45,13,0.0 +13669,62,49.3,35,0.0 +13669,76,18,8,0.0 +13669,32,32,2,0.0 +13669,58,13.25,38,0.0 +13669,67,14,18,0.0 +13669,55,24,6,0.0 +13669,16,17.45,32,0.0 +13669,39,18,9,0.0 +13669,72,34.8,10,0.0 +13669,22,21,1,0.0 +13669,52,7,6,0.0 +13669,7,30,24,0.0 +13669,70,15,35,0.0 +13669,61,28.5,30,0.0 +13669,27,43.9,34,0.0 +13670,32,32,48,0.0 +13670,17,39,7,0.0 +13670,27,43.9,23,0.0 +13670,37,26,4,0.0 +13670,41,9.65,29,0.0 +13670,67,14,49,0.0 +13670,14,23.25,20,0.0 +13670,46,12,34,0.0 +13670,47,9.5,45,0.0 +13670,57,19.5,27,0.0 +13670,75,7.75,16,0.0 +13670,71,21.5,3,0.0 +13670,53,32.8,12,0.0 +13670,70,15,41,0.0 +13670,69,36,30,0.0 +13670,2,19,40,0.0 +13670,54,7.45,3,0.0 +13670,30,25.89,41,0.0 +13670,3,10,47,0.0 +13670,61,28.5,44,0.0 +13670,25,14,20,0.0 +13670,50,16.25,20,0.0 +13670,60,34,39,0.0 +13670,48,12.75,14,0.0 +13670,16,17.45,47,0.0 +13670,73,15,4,0.0 +13670,38,263.5,3,0.0 +13670,35,18,31,0.0 +13670,13,6,39,0.0 +13670,76,18,13,0.0 +13670,56,38,1,0.0 +13670,10,31,12,0.0 +13670,5,21.35,7,0.0 +13670,22,21,18,0.0 +13670,26,31.23,2,0.0 +13670,11,21,27,0.0 +13670,77,13,28,0.0 +13670,62,49.3,35,0.0 +13670,52,7,1,0.0 +13670,34,14,37,0.0 +13670,9,97,39,0.0 +13670,40,18.4,3,0.0 +13670,44,19.45,29,0.0 +13670,64,33.25,2,0.0 +13670,23,9,4,0.0 +13670,20,81,49,0.0 +13670,74,10,17,0.0 +13670,72,34.8,43,0.0 +13670,65,21.05,34,0.0 +13670,1,18,12,0.0 +13670,15,15.5,27,0.0 +13670,4,22,8,0.0 +13670,66,17,41,0.0 +13670,33,2.5,1,0.0 +13670,8,40,21,0.0 +13670,21,10,26,0.0 +13670,42,14,18,0.0 +13670,68,12.5,8,0.0 +13670,59,55,10,0.0 +13670,28,45.6,19,0.0 +13670,63,43.9,25,0.0 +13670,39,18,14,0.0 +13670,49,20,35,0.0 +13670,55,24,21,0.0 +13670,24,4.5,32,0.0 +13670,19,9.2,7,0.0 +13670,45,9.5,16,0.0 +13670,18,62.5,32,0.0 +13670,31,12.5,25,0.0 +13670,43,46,49,0.0 +13670,7,30,33,0.0 +13670,6,25,50,0.0 +13670,51,53,15,0.0 +13671,49,20,2,0.0 +13671,55,24,47,0.0 +13671,43,46,38,0.0 +13671,16,17.45,13,0.0 +13671,64,33.25,8,0.0 +13671,6,25,8,0.0 +13671,65,21.05,24,0.0 +13671,7,30,24,0.0 +13671,72,34.8,4,0.0 +13671,45,9.5,49,0.0 +13671,62,49.3,11,0.0 +13671,48,12.75,44,0.0 +13671,14,23.25,2,0.0 +13671,52,7,18,0.0 +13671,32,32,50,0.0 +13671,35,18,16,0.0 +13671,40,18.4,46,0.0 +13671,18,62.5,15,0.0 +13671,29,123.79,26,0.0 +13671,53,32.8,29,0.0 +13671,69,36,21,0.0 +13671,9,97,33,0.0 +13671,37,26,36,0.0 +13671,1,18,28,0.0 +13671,68,12.5,13,0.0 +13671,50,16.25,19,0.0 +13671,73,15,2,0.0 +13671,4,22,37,0.0 +13671,20,81,31,0.0 +13671,59,55,20,0.0 +13671,21,10,8,0.0 +13671,2,19,24,0.0 +13671,10,31,26,0.0 +13671,24,4.5,17,0.0 +13671,11,21,41,0.0 +13671,71,21.5,27,0.0 +13671,57,19.5,11,0.0 +13671,75,7.75,34,0.0 +13671,51,53,18,0.0 +13671,31,12.5,5,0.0 +13671,34,14,1,0.0 +13671,70,15,16,0.0 +13671,58,13.25,3,0.0 +13671,74,10,24,0.0 +13671,28,45.6,31,0.0 +13671,36,19,33,0.0 +13671,56,38,14,0.0 +13671,60,34,33,0.0 +13671,38,263.5,13,0.0 +13671,5,21.35,20,0.0 +13671,67,14,34,0.0 +13671,44,19.45,35,0.0 +13671,27,43.9,47,0.0 +13671,46,12,36,0.0 +13671,13,6,24,0.0 +13671,76,18,2,0.0 +13671,33,2.5,31,0.0 +13671,19,9.2,37,0.0 +13671,42,14,30,0.0 +13671,17,39,39,0.0 +13671,15,15.5,22,0.0 +13671,12,38,20,0.0 +13671,41,9.65,17,0.0 +13671,8,40,19,0.0 +13671,63,43.9,18,0.0 +13671,22,21,42,0.0 +13671,26,31.23,38,0.0 +13671,54,7.45,20,0.0 +13671,3,10,13,0.0 +13671,23,9,50,0.0 +13672,18,62.5,20,0.0 +13672,74,10,27,0.0 +13672,49,20,26,0.0 +13672,13,6,17,0.0 +13672,39,18,5,0.0 +13672,67,14,2,0.0 +13672,47,9.5,5,0.0 +13672,27,43.9,15,0.0 +13672,14,23.25,23,0.0 +13672,50,16.25,42,0.0 +13672,48,12.75,30,0.0 +13672,58,13.25,6,0.0 +13672,51,53,45,0.0 +13672,9,97,39,0.0 +13672,45,9.5,40,0.0 +13672,42,14,14,0.0 +13672,8,40,24,0.0 +13672,26,31.23,39,0.0 +13672,2,19,20,0.0 +13672,28,45.6,24,0.0 +13672,30,25.89,31,0.0 +13672,34,14,39,0.0 +13672,53,32.8,6,0.0 +13672,19,9.2,42,0.0 +13672,62,49.3,37,0.0 +13672,12,38,19,0.0 +13672,29,123.79,20,0.0 +13672,7,30,38,0.0 +13672,57,19.5,43,0.0 +13672,46,12,4,0.0 +13672,22,21,1,0.0 +13672,17,39,5,0.0 +13672,33,2.5,38,0.0 +13672,35,18,9,0.0 +13672,61,28.5,21,0.0 +13672,24,4.5,8,0.0 +13672,37,26,44,0.0 +13672,6,25,36,0.0 +13672,32,32,36,0.0 +13673,37,26,37,0.0 +13673,65,21.05,48,0.0 +13673,74,10,22,0.0 +13673,66,17,18,0.0 +13673,32,32,50,0.0 +13673,53,32.8,30,0.0 +13673,17,39,38,0.0 +13673,18,62.5,15,0.0 +13673,68,12.5,38,0.0 +13673,19,9.2,2,0.0 +13673,63,43.9,17,0.0 +13673,4,22,16,0.0 +13673,20,81,37,0.0 +13673,45,9.5,12,0.0 +13673,59,55,42,0.0 +13673,28,45.6,19,0.0 +13673,50,16.25,23,0.0 +13673,42,14,18,0.0 +13673,41,9.65,19,0.0 +13673,22,21,26,0.0 +13673,30,25.89,31,0.0 +13673,6,25,24,0.0 +13673,64,33.25,25,0.0 +13673,46,12,47,0.0 +13673,15,15.5,31,0.0 +13673,35,18,1,0.0 +13673,2,19,12,0.0 +13673,24,4.5,13,0.0 +13673,44,19.45,4,0.0 +13673,16,17.45,15,0.0 +13673,14,23.25,5,0.0 +13673,9,97,5,0.0 +13673,60,34,34,0.0 +13673,72,34.8,11,0.0 +13673,38,263.5,48,0.0 +13673,10,31,7,0.0 +13673,25,14,35,0.0 +13673,34,14,32,0.0 +13673,73,15,44,0.0 +13673,26,31.23,11,0.0 +13673,49,20,18,0.0 +13673,39,18,37,0.0 +13673,21,10,17,0.0 +13673,3,10,9,0.0 +13673,52,7,19,0.0 +13673,55,24,39,0.0 +13673,7,30,41,0.0 +13673,56,38,21,0.0 +13673,77,13,39,0.0 +13673,51,53,30,0.0 +13673,48,12.75,6,0.0 +13673,29,123.79,41,0.0 +13673,31,12.5,37,0.0 +13673,57,19.5,15,0.0 +13673,40,18.4,37,0.0 +13673,71,21.5,38,0.0 +13673,11,21,48,0.0 +13673,62,49.3,42,0.0 +13673,67,14,43,0.0 +13673,5,21.35,9,0.0 +13673,33,2.5,11,0.0 +13673,54,7.45,14,0.0 +13673,61,28.5,29,0.0 +13673,23,9,5,0.0 +13673,36,19,33,0.0 +13674,55,24,6,0.0 +13674,66,17,43,0.0 +13674,64,33.25,3,0.0 +13674,25,14,22,0.0 +13674,33,2.5,35,0.0 +13674,29,123.79,10,0.0 +13674,16,17.45,15,0.0 +13674,4,22,27,0.0 +13674,75,7.75,1,0.0 +13674,52,7,29,0.0 +13674,27,43.9,23,0.0 +13674,17,39,32,0.0 +13674,60,34,34,0.0 +13674,72,34.8,5,0.0 +13674,36,19,26,0.0 +13674,24,4.5,32,0.0 +13674,45,9.5,11,0.0 +13674,77,13,13,0.0 +13674,54,7.45,40,0.0 +13674,31,12.5,33,0.0 +13674,38,263.5,12,0.0 +13674,9,97,12,0.0 +13674,37,26,38,0.0 +13674,20,81,24,0.0 +13674,26,31.23,2,0.0 +13674,76,18,12,0.0 +13674,12,38,50,0.0 +13674,14,23.25,3,0.0 +13674,3,10,44,0.0 +13674,42,14,29,0.0 +13674,13,6,10,0.0 +13674,53,32.8,36,0.0 +13674,23,9,27,0.0 +13674,28,45.6,22,0.0 +13675,30,25.89,44,0.0 +13675,61,28.5,39,0.0 +13675,68,12.5,21,0.0 +13675,65,21.05,43,0.0 +13675,67,14,3,0.0 +13675,37,26,46,0.0 +13675,24,4.5,42,0.0 +13675,52,7,21,0.0 +13675,35,18,5,0.0 +13675,21,10,38,0.0 +13675,2,19,50,0.0 +13675,55,24,20,0.0 +13675,27,43.9,28,0.0 +13675,31,12.5,6,0.0 +13675,42,14,49,0.0 +13675,12,38,25,0.0 +13675,9,97,13,0.0 +13675,54,7.45,33,0.0 +13675,73,15,5,0.0 +13675,62,49.3,1,0.0 +13675,13,6,2,0.0 +13675,69,36,19,0.0 +13675,66,17,48,0.0 +13675,63,43.9,29,0.0 +13675,74,10,43,0.0 +13675,32,32,36,0.0 +13675,44,19.45,14,0.0 +13675,20,81,49,0.0 +13675,38,263.5,5,0.0 +13675,5,21.35,5,0.0 +13675,50,16.25,36,0.0 +13675,75,7.75,8,0.0 +13675,45,9.5,16,0.0 +13675,43,46,14,0.0 +13675,10,31,5,0.0 +13675,1,18,12,0.0 +13675,39,18,10,0.0 +13675,6,25,29,0.0 +13675,18,62.5,36,0.0 +13675,23,9,3,0.0 +13675,64,33.25,10,0.0 +13675,51,53,42,0.0 +13676,29,123.79,32,0.0 +13676,62,49.3,5,0.0 +13676,43,46,10,0.0 +13676,41,9.65,1,0.0 +13676,31,12.5,9,0.0 +13676,35,18,28,0.0 +13676,24,4.5,4,0.0 +13676,64,33.25,35,0.0 +13676,75,7.75,21,0.0 +13676,72,34.8,46,0.0 +13676,30,25.89,50,0.0 +13676,58,13.25,27,0.0 +13676,50,16.25,48,0.0 +13676,5,21.35,15,0.0 +13676,13,6,41,0.0 +13676,69,36,31,0.0 +13676,8,40,45,0.0 +13676,23,9,20,0.0 +13676,51,53,8,0.0 +13676,7,30,10,0.0 +13676,74,10,7,0.0 +13676,36,19,41,0.0 +13676,70,15,29,0.0 +13676,55,24,32,0.0 +13676,3,10,44,0.0 +13676,54,7.45,40,0.0 +13676,47,9.5,34,0.0 +13676,26,31.23,46,0.0 +13676,18,62.5,3,0.0 +13676,19,9.2,38,0.0 +13676,14,23.25,2,0.0 +13676,61,28.5,27,0.0 +13676,28,45.6,21,0.0 +13676,38,263.5,31,0.0 +13676,53,32.8,40,0.0 +13676,48,12.75,15,0.0 +13676,4,22,50,0.0 +13676,44,19.45,21,0.0 +13676,68,12.5,32,0.0 +13676,16,17.45,5,0.0 +13676,20,81,41,0.0 +13676,59,55,10,0.0 +13676,39,18,27,0.0 +13676,65,21.05,3,0.0 +13676,25,14,3,0.0 +13676,42,14,38,0.0 +13676,52,7,39,0.0 +13676,9,97,9,0.0 +13676,10,31,1,0.0 +13676,57,19.5,8,0.0 +13676,12,38,42,0.0 +13676,56,38,49,0.0 +13676,2,19,50,0.0 +13677,39,18,13,0.0 +13677,31,12.5,29,0.0 +13677,62,49.3,30,0.0 +13677,30,25.89,50,0.0 +13677,61,28.5,40,0.0 +13677,56,38,33,0.0 +13677,73,15,1,0.0 +13677,41,9.65,48,0.0 +13677,65,21.05,36,0.0 +13677,50,16.25,25,0.0 +13677,15,15.5,9,0.0 +13677,1,18,9,0.0 +13677,28,45.6,41,0.0 +13677,76,18,27,0.0 +13678,46,12,50,0.0 +13678,51,53,12,0.0 +13678,33,2.5,36,0.0 +13678,12,38,13,0.0 +13678,5,21.35,15,0.0 +13678,24,4.5,41,0.0 +13678,57,19.5,11,0.0 +13678,31,12.5,30,0.0 +13678,68,12.5,18,0.0 +13678,74,10,47,0.0 +13678,15,15.5,10,0.0 +13678,30,25.89,12,0.0 +13678,60,34,11,0.0 +13678,35,18,45,0.0 +13678,49,20,50,0.0 +13678,2,19,49,0.0 +13678,11,21,1,0.0 +13678,67,14,25,0.0 +13678,40,18.4,50,0.0 +13678,16,17.45,3,0.0 +13678,72,34.8,32,0.0 +13678,27,43.9,39,0.0 +13678,21,10,41,0.0 +13678,9,97,48,0.0 +13678,32,32,28,0.0 +13678,66,17,16,0.0 +13678,19,9.2,37,0.0 +13678,73,15,22,0.0 +13678,52,7,7,0.0 +13678,71,21.5,38,0.0 +13678,37,26,16,0.0 +13678,47,9.5,3,0.0 +13678,25,14,36,0.0 +13678,44,19.45,31,0.0 +13678,55,24,34,0.0 +13678,48,12.75,5,0.0 +13678,10,31,24,0.0 +13678,18,62.5,41,0.0 +13678,14,23.25,44,0.0 +13678,6,25,8,0.0 +13678,39,18,44,0.0 +13679,31,12.5,2,0.0 +13679,2,19,24,0.0 +13680,35,18,33,0.0 +13680,22,21,3,0.0 +13680,17,39,35,0.0 +13680,11,21,27,0.0 +13680,53,32.8,19,0.0 +13680,59,55,38,0.0 +13680,63,43.9,35,0.0 +13680,33,2.5,35,0.0 +13680,39,18,14,0.0 +13680,72,34.8,36,0.0 +13680,8,40,40,0.0 +13680,23,9,33,0.0 +13680,14,23.25,37,0.0 +13680,26,31.23,26,0.0 +13680,71,21.5,7,0.0 +13680,44,19.45,3,0.0 +13680,73,15,20,0.0 +13680,48,12.75,46,0.0 +13680,65,21.05,46,0.0 +13680,45,9.5,17,0.0 +13680,58,13.25,40,0.0 +13680,75,7.75,1,0.0 +13680,52,7,16,0.0 +13680,2,19,41,0.0 +13680,68,12.5,11,0.0 +13680,42,14,49,0.0 +13680,5,21.35,30,0.0 +13681,45,9.5,11,0.0 +13681,1,18,1,0.0 +13681,11,21,9,0.0 +13681,4,22,14,0.0 +13681,37,26,26,0.0 +13681,52,7,41,0.0 +13681,17,39,35,0.0 +13681,56,38,8,0.0 +13681,22,21,23,0.0 +13681,19,9.2,33,0.0 +13681,14,23.25,43,0.0 +13681,40,18.4,27,0.0 +13681,62,49.3,34,0.0 +13681,3,10,27,0.0 +13681,49,20,1,0.0 +13681,76,18,34,0.0 +13681,21,10,33,0.0 +13681,71,21.5,25,0.0 +13681,7,30,20,0.0 +13681,69,36,35,0.0 +13681,12,38,6,0.0 +13681,27,43.9,3,0.0 +13681,26,31.23,30,0.0 +13681,61,28.5,12,0.0 +13681,31,12.5,2,0.0 +13681,72,34.8,4,0.0 +13681,60,34,22,0.0 +13681,8,40,31,0.0 +13681,16,17.45,25,0.0 +13681,67,14,40,0.0 +13681,32,32,12,0.0 +13681,59,55,31,0.0 +13681,54,7.45,1,0.0 +13681,6,25,31,0.0 +13681,24,4.5,5,0.0 +13681,30,25.89,26,0.0 +13681,47,9.5,23,0.0 +13681,75,7.75,49,0.0 +13681,15,15.5,42,0.0 +13681,10,31,39,0.0 +13681,53,32.8,45,0.0 +13681,44,19.45,36,0.0 +13681,65,21.05,48,0.0 +13681,35,18,20,0.0 +13681,39,18,3,0.0 +13681,66,17,15,0.0 +13681,29,123.79,5,0.0 +13681,58,13.25,8,0.0 +13681,68,12.5,17,0.0 +13681,18,62.5,20,0.0 +13681,2,19,10,0.0 +13681,36,19,3,0.0 +13681,41,9.65,15,0.0 +13681,50,16.25,48,0.0 +13681,34,14,13,0.0 +13681,20,81,25,0.0 +13681,63,43.9,37,0.0 +13681,77,13,25,0.0 +13681,33,2.5,48,0.0 +13681,28,45.6,19,0.0 +13681,57,19.5,39,0.0 +13681,5,21.35,32,0.0 +13681,48,12.75,42,0.0 +13681,38,263.5,41,0.0 +13681,42,14,24,0.0 +13681,46,12,25,0.0 +13681,25,14,5,0.0 +13681,23,9,12,0.0 +13681,51,53,34,0.0 +13681,70,15,8,0.0 +13681,13,6,1,0.0 +13681,43,46,12,0.0 +13681,9,97,6,0.0 +13681,55,24,28,0.0 +13681,73,15,36,0.0 +13682,54,7.45,18,0.0 +13682,61,28.5,41,0.0 +13682,32,32,4,0.0 +13682,39,18,10,0.0 +13682,53,32.8,49,0.0 +13682,52,7,34,0.0 +13682,62,49.3,43,0.0 +13682,20,81,28,0.0 +13682,21,10,12,0.0 +13682,8,40,27,0.0 +13682,55,24,22,0.0 +13682,59,55,35,0.0 +13682,31,12.5,21,0.0 +13682,17,39,43,0.0 +13682,36,19,16,0.0 +13682,76,18,11,0.0 +13682,40,18.4,18,0.0 +13682,3,10,1,0.0 +13682,45,9.5,46,0.0 +13682,38,263.5,47,0.0 +13682,47,9.5,42,0.0 +13682,7,30,21,0.0 +13682,42,14,1,0.0 +13682,67,14,38,0.0 +13682,72,34.8,31,0.0 +13682,25,14,43,0.0 +13682,35,18,20,0.0 +13682,12,38,31,0.0 +13682,73,15,17,0.0 +13682,24,4.5,12,0.0 +13682,5,21.35,36,0.0 +13682,56,38,35,0.0 +13682,41,9.65,15,0.0 +13682,26,31.23,46,0.0 +13682,69,36,46,0.0 +13682,70,15,15,0.0 +13682,29,123.79,5,0.0 +13682,74,10,47,0.0 +13682,22,21,30,0.0 +13682,64,33.25,46,0.0 +13682,23,9,4,0.0 +13682,71,21.5,9,0.0 +13682,43,46,39,0.0 +13682,15,15.5,6,0.0 +13682,4,22,46,0.0 +13682,49,20,14,0.0 +13682,57,19.5,1,0.0 +13682,50,16.25,31,0.0 +13682,77,13,19,0.0 +13682,27,43.9,9,0.0 +13682,18,62.5,5,0.0 +13682,2,19,30,0.0 +13682,63,43.9,41,0.0 +13682,48,12.75,8,0.0 +13682,16,17.45,31,0.0 +13682,30,25.89,17,0.0 +13682,28,45.6,47,0.0 +13682,75,7.75,17,0.0 +13682,13,6,12,0.0 +13682,19,9.2,30,0.0 +13682,44,19.45,46,0.0 +13682,37,26,47,0.0 +13682,9,97,35,0.0 +13682,68,12.5,10,0.0 +13682,65,21.05,8,0.0 +13682,6,25,3,0.0 +13682,14,23.25,41,0.0 +13682,1,18,16,0.0 +13682,33,2.5,23,0.0 +13683,2,19,41,0.0 +13683,13,6,10,0.0 +13683,75,7.75,24,0.0 +13683,25,14,10,0.0 +13683,58,13.25,38,0.0 +13683,31,12.5,43,0.0 +13683,24,4.5,7,0.0 +13683,68,12.5,31,0.0 +13683,47,9.5,36,0.0 +13683,50,16.25,2,0.0 +13683,42,14,49,0.0 +13683,34,14,15,0.0 +13683,3,10,35,0.0 +13683,51,53,28,0.0 +13683,59,55,21,0.0 +13683,1,18,42,0.0 +13683,70,15,23,0.0 +13683,65,21.05,29,0.0 +13683,18,62.5,33,0.0 +13683,21,10,39,0.0 +13683,6,25,24,0.0 +13683,67,14,48,0.0 +13683,69,36,48,0.0 +13683,60,34,43,0.0 +13684,29,123.79,15,0.0 +13684,8,40,41,0.0 +13684,7,30,9,0.0 +13684,56,38,15,0.0 +13684,1,18,12,0.0 +13684,53,32.8,29,0.0 +13684,61,28.5,25,0.0 +13684,36,19,43,0.0 +13684,46,12,12,0.0 +13684,68,12.5,2,0.0 +13684,15,15.5,5,0.0 +13684,75,7.75,24,0.0 +13684,45,9.5,33,0.0 +13684,49,20,50,0.0 +13684,13,6,45,0.0 +13684,50,16.25,2,0.0 +13684,62,49.3,30,0.0 +13684,9,97,50,0.0 +13684,71,21.5,19,0.0 +13684,28,45.6,8,0.0 +13684,67,14,28,0.0 +13684,22,21,21,0.0 +13684,66,17,8,0.0 +13684,77,13,22,0.0 +13684,72,34.8,14,0.0 +13684,74,10,46,0.0 +13684,3,10,26,0.0 +13684,41,9.65,21,0.0 +13684,63,43.9,34,0.0 +13684,11,21,3,0.0 +13684,70,15,11,0.0 +13684,30,25.89,30,0.0 +13684,35,18,32,0.0 +13684,76,18,14,0.0 +13684,64,33.25,47,0.0 +13684,23,9,13,0.0 +13684,4,22,47,0.0 +13684,51,53,11,0.0 +13684,69,36,6,0.0 +13684,27,43.9,23,0.0 +13684,37,26,11,0.0 +13684,16,17.45,49,0.0 +13685,1,18,29,0.0 +13685,67,14,50,0.0 +13685,63,43.9,3,0.0 +13685,70,15,18,0.0 +13685,23,9,31,0.0 +13685,56,38,11,0.0 +13685,21,10,5,0.0 +13685,48,12.75,44,0.0 +13685,65,21.05,28,0.0 +13685,43,46,25,0.0 +13685,18,62.5,40,0.0 +13686,1,18,49,0.0 +13686,76,18,47,0.0 +13686,5,21.35,3,0.0 +13686,36,19,25,0.0 +13686,45,9.5,18,0.0 +13686,61,28.5,3,0.0 +13686,25,14,46,0.0 +13686,43,46,28,0.0 +13686,42,14,47,0.0 +13686,8,40,43,0.0 +13686,46,12,3,0.0 +13686,77,13,33,0.0 +13686,71,21.5,15,0.0 +13686,39,18,15,0.0 +13686,41,9.65,37,0.0 +13686,30,25.89,19,0.0 +13686,33,2.5,50,0.0 +13686,6,25,40,0.0 +13686,28,45.6,18,0.0 +13686,75,7.75,49,0.0 +13686,49,20,44,0.0 +13686,4,22,13,0.0 +13686,22,21,49,0.0 +13687,53,32.8,3,0.0 +13687,35,18,30,0.0 +13687,11,21,23,0.0 +13687,60,34,8,0.0 +13687,69,36,44,0.0 +13687,40,18.4,22,0.0 +13687,59,55,37,0.0 +13687,38,263.5,16,0.0 +13687,49,20,16,0.0 +13687,21,10,4,0.0 +13687,36,19,10,0.0 +13687,7,30,13,0.0 +13687,63,43.9,13,0.0 +13687,34,14,2,0.0 +13687,23,9,6,0.0 +13687,17,39,23,0.0 +13687,29,123.79,9,0.0 +13687,13,6,16,0.0 +13687,47,9.5,26,0.0 +13687,52,7,21,0.0 +13687,68,12.5,11,0.0 +13687,14,23.25,27,0.0 +13687,22,21,2,0.0 +13687,73,15,23,0.0 +13687,56,38,24,0.0 +13687,30,25.89,50,0.0 +13687,65,21.05,26,0.0 +13687,75,7.75,1,0.0 +13687,6,25,3,0.0 +13687,33,2.5,20,0.0 +13687,9,97,32,0.0 +13687,72,34.8,3,0.0 +13687,62,49.3,33,0.0 +13687,5,21.35,44,0.0 +13687,54,7.45,6,0.0 +13687,19,9.2,35,0.0 +13688,32,32,14,0.0 +13688,16,17.45,33,0.0 +13688,1,18,24,0.0 +13688,50,16.25,13,0.0 +13688,43,46,34,0.0 +13688,45,9.5,28,0.0 +13688,69,36,24,0.0 +13688,65,21.05,35,0.0 +13688,14,23.25,39,0.0 +13688,6,25,48,0.0 +13688,21,10,36,0.0 +13688,25,14,8,0.0 +13688,24,4.5,8,0.0 +13688,31,12.5,43,0.0 +13688,72,34.8,4,0.0 +13688,15,15.5,12,0.0 +13688,20,81,37,0.0 +13688,39,18,12,0.0 +13688,37,26,37,0.0 +13688,3,10,3,0.0 +13688,9,97,15,0.0 +13688,66,17,20,0.0 +13688,46,12,40,0.0 +13688,33,2.5,9,0.0 +13688,57,19.5,33,0.0 +13688,7,30,22,0.0 +13688,12,38,44,0.0 +13688,51,53,2,0.0 +13688,19,9.2,6,0.0 +13688,18,62.5,10,0.0 +13688,28,45.6,26,0.0 +13688,76,18,17,0.0 +13688,59,55,43,0.0 +13689,17,39,32,0.0 +13689,28,45.6,39,0.0 +13689,4,22,18,0.0 +13689,18,62.5,18,0.0 +13689,34,14,17,0.0 +13689,48,12.75,34,0.0 +13689,37,26,31,0.0 +13689,59,55,44,0.0 +13689,47,9.5,1,0.0 +13689,46,12,50,0.0 +13689,53,32.8,40,0.0 +13689,40,18.4,49,0.0 +13689,52,7,11,0.0 +13689,7,30,28,0.0 +13689,65,21.05,16,0.0 +13689,3,10,31,0.0 +13689,44,19.45,15,0.0 +13689,19,9.2,35,0.0 +13689,45,9.5,17,0.0 +13689,23,9,44,0.0 +13689,60,34,18,0.0 +13689,8,40,8,0.0 +13689,64,33.25,4,0.0 +13689,58,13.25,45,0.0 +13689,30,25.89,10,0.0 +13689,14,23.25,43,0.0 +13689,42,14,42,0.0 +13689,50,16.25,14,0.0 +13689,68,12.5,14,0.0 +13689,16,17.45,27,0.0 +13689,6,25,26,0.0 +13689,33,2.5,10,0.0 +13689,43,46,47,0.0 +13689,67,14,43,0.0 +13689,21,10,15,0.0 +13689,55,24,39,0.0 +13689,71,21.5,1,0.0 +13689,32,32,46,0.0 +13689,54,7.45,28,0.0 +13689,36,19,41,0.0 +13689,75,7.75,15,0.0 +13689,22,21,19,0.0 +13689,38,263.5,34,0.0 +13689,27,43.9,5,0.0 +13689,49,20,18,0.0 +13689,25,14,48,0.0 +13689,15,15.5,46,0.0 +13689,10,31,25,0.0 +13689,73,15,21,0.0 +13689,1,18,11,0.0 +13689,62,49.3,30,0.0 +13689,31,12.5,40,0.0 +13689,39,18,44,0.0 +13689,2,19,3,0.0 +13689,61,28.5,3,0.0 +13689,12,38,10,0.0 +13689,26,31.23,22,0.0 +13690,15,15.5,9,0.0 +13690,67,14,20,0.0 +13690,29,123.79,31,0.0 +13690,40,18.4,34,0.0 +13690,4,22,45,0.0 +13690,41,9.65,47,0.0 +13691,5,21.35,5,0.0 +13691,37,26,34,0.0 +13691,41,9.65,10,0.0 +13691,29,123.79,47,0.0 +13691,8,40,21,0.0 +13691,67,14,29,0.0 +13691,39,18,48,0.0 +13691,59,55,27,0.0 +13691,15,15.5,50,0.0 +13691,32,32,39,0.0 +13691,44,19.45,3,0.0 +13691,65,21.05,34,0.0 +13691,21,10,11,0.0 +13691,36,19,34,0.0 +13691,49,20,1,0.0 +13691,16,17.45,21,0.0 +13691,34,14,12,0.0 +13691,3,10,35,0.0 +13691,28,45.6,43,0.0 +13691,4,22,16,0.0 +13691,77,13,46,0.0 +13691,51,53,10,0.0 +13691,75,7.75,16,0.0 +13691,35,18,9,0.0 +13691,63,43.9,31,0.0 +13691,7,30,15,0.0 +13691,38,263.5,10,0.0 +13691,6,25,46,0.0 +13691,56,38,6,0.0 +13691,22,21,24,0.0 +13691,31,12.5,13,0.0 +13691,2,19,19,0.0 +13691,61,28.5,17,0.0 +13691,42,14,49,0.0 +13691,9,97,18,0.0 +13691,19,9.2,21,0.0 +13691,46,12,34,0.0 +13691,76,18,1,0.0 +13691,74,10,32,0.0 +13691,11,21,29,0.0 +13691,70,15,39,0.0 +13691,1,18,48,0.0 +13691,40,18.4,36,0.0 +13691,47,9.5,4,0.0 +13691,30,25.89,39,0.0 +13691,54,7.45,38,0.0 +13691,58,13.25,11,0.0 +13691,50,16.25,32,0.0 +13691,17,39,22,0.0 +13692,23,9,36,0.0 +13692,32,32,37,0.0 +13692,3,10,1,0.0 +13692,26,31.23,38,0.0 +13692,15,15.5,15,0.0 +13692,64,33.25,50,0.0 +13692,62,49.3,21,0.0 +13692,7,30,15,0.0 +13692,29,123.79,47,0.0 +13692,13,6,13,0.0 +13692,17,39,41,0.0 +13692,66,17,49,0.0 +13692,10,31,9,0.0 +13692,30,25.89,20,0.0 +13692,5,21.35,36,0.0 +13692,57,19.5,37,0.0 +13692,46,12,13,0.0 +13692,24,4.5,22,0.0 +13692,22,21,17,0.0 +13692,40,18.4,25,0.0 +13692,71,21.5,50,0.0 +13692,70,15,32,0.0 +13692,18,62.5,35,0.0 +13692,35,18,8,0.0 +13692,53,32.8,38,0.0 +13692,49,20,49,0.0 +13692,34,14,50,0.0 +13692,20,81,1,0.0 +13692,52,7,43,0.0 +13692,41,9.65,26,0.0 +13692,39,18,7,0.0 +13692,31,12.5,18,0.0 +13693,32,32,48,0.0 +13693,48,12.75,30,0.0 +13693,74,10,6,0.0 +13693,14,23.25,7,0.0 +13693,42,14,46,0.0 +13693,27,43.9,27,0.0 +13693,52,7,38,0.0 +13693,7,30,38,0.0 +13693,61,28.5,20,0.0 +13693,3,10,25,0.0 +13693,25,14,34,0.0 +13693,22,21,15,0.0 +13693,43,46,21,0.0 +13693,65,21.05,10,0.0 +13693,4,22,37,0.0 +13693,56,38,22,0.0 +13694,49,20,19,0.0 +13694,62,49.3,41,0.0 +13694,35,18,2,0.0 +13694,53,32.8,11,0.0 +13694,34,14,8,0.0 +13694,57,19.5,46,0.0 +13694,2,19,22,0.0 +13694,48,12.75,28,0.0 +13694,41,9.65,6,0.0 +13694,58,13.25,8,0.0 +13694,43,46,36,0.0 +13694,65,21.05,37,0.0 +13694,17,39,42,0.0 +13694,56,38,47,0.0 +13694,32,32,29,0.0 +13694,16,17.45,38,0.0 +13694,77,13,41,0.0 +13694,70,15,22,0.0 +13695,7,30,4,0.0 +13695,53,32.8,10,0.0 +13695,68,12.5,49,0.0 +13695,22,21,25,0.0 +13695,25,14,42,0.0 +13695,61,28.5,23,0.0 +13695,37,26,9,0.0 +13695,49,20,25,0.0 +13695,54,7.45,47,0.0 +13695,62,49.3,30,0.0 +13695,69,36,7,0.0 +13695,12,38,23,0.0 +13695,58,13.25,9,0.0 +13695,38,263.5,49,0.0 +13695,60,34,16,0.0 +13695,3,10,21,0.0 +13695,56,38,19,0.0 +13695,8,40,47,0.0 +13695,46,12,46,0.0 +13695,34,14,36,0.0 +13695,48,12.75,34,0.0 +13695,15,15.5,6,0.0 +13695,30,25.89,7,0.0 +13695,73,15,42,0.0 +13695,52,7,32,0.0 +13695,59,55,28,0.0 +13695,45,9.5,16,0.0 +13695,75,7.75,7,0.0 +13695,66,17,49,0.0 +13695,70,15,41,0.0 +13695,43,46,25,0.0 +13695,67,14,3,0.0 +13695,35,18,26,0.0 +13695,20,81,14,0.0 +13695,65,21.05,34,0.0 +13695,55,24,31,0.0 +13695,5,21.35,8,0.0 +13695,40,18.4,4,0.0 +13696,59,55,13,0.0 +13696,44,19.45,9,0.0 +13696,20,81,47,0.0 +13696,60,34,9,0.0 +13696,63,43.9,24,0.0 +13696,53,32.8,22,0.0 +13696,27,43.9,44,0.0 +13696,17,39,8,0.0 +13696,70,15,16,0.0 +13696,72,34.8,8,0.0 +13696,66,17,12,0.0 +13696,48,12.75,32,0.0 +13696,26,31.23,27,0.0 +13696,23,9,20,0.0 +13696,15,15.5,43,0.0 +13696,65,21.05,40,0.0 +13696,35,18,19,0.0 +13696,61,28.5,41,0.0 +13696,6,25,15,0.0 +13696,64,33.25,2,0.0 +13696,77,13,15,0.0 +13696,52,7,26,0.0 +13696,38,263.5,37,0.0 +13696,3,10,35,0.0 +13696,75,7.75,12,0.0 +13696,7,30,39,0.0 +13696,39,18,38,0.0 +13696,19,9.2,39,0.0 +13696,36,19,35,0.0 +13696,54,7.45,39,0.0 +13696,29,123.79,37,0.0 +13696,30,25.89,17,0.0 +13696,21,10,26,0.0 +13697,62,49.3,26,0.0 +13697,50,16.25,49,0.0 +13697,14,23.25,44,0.0 +13697,41,9.65,43,0.0 +13697,11,21,5,0.0 +13697,73,15,26,0.0 +13697,4,22,40,0.0 +13697,19,9.2,6,0.0 +13697,65,21.05,29,0.0 +13697,61,28.5,30,0.0 +13697,12,38,7,0.0 +13697,56,38,19,0.0 +13697,34,14,16,0.0 +13697,2,19,39,0.0 +13697,15,15.5,48,0.0 +13697,25,14,43,0.0 +13697,22,21,10,0.0 +13697,20,81,23,0.0 +13697,38,263.5,29,0.0 +13697,52,7,15,0.0 +13697,64,33.25,37,0.0 +13697,3,10,42,0.0 +13697,60,34,23,0.0 +13697,51,53,20,0.0 +13697,58,13.25,40,0.0 +13697,42,14,18,0.0 +13697,36,19,49,0.0 +13697,21,10,40,0.0 +13697,67,14,46,0.0 +13697,77,13,50,0.0 +13697,31,12.5,37,0.0 +13697,69,36,9,0.0 +13697,63,43.9,50,0.0 +13697,5,21.35,35,0.0 +13697,28,45.6,15,0.0 +13698,38,263.5,26,0.0 +13698,8,40,43,0.0 +13698,18,62.5,14,0.0 +13698,29,123.79,34,0.0 +13698,12,38,6,0.0 +13698,14,23.25,36,0.0 +13698,64,33.25,5,0.0 +13698,49,20,49,0.0 +13698,45,9.5,28,0.0 +13698,21,10,43,0.0 +13698,75,7.75,14,0.0 +13698,71,21.5,41,0.0 +13698,60,34,23,0.0 +13698,43,46,23,0.0 +13698,62,49.3,38,0.0 +13698,34,14,34,0.0 +13698,68,12.5,19,0.0 +13698,28,45.6,43,0.0 +13698,3,10,7,0.0 +13698,44,19.45,28,0.0 +13698,70,15,15,0.0 +13698,56,38,26,0.0 +13698,4,22,36,0.0 +13698,2,19,24,0.0 +13698,55,24,11,0.0 +13698,54,7.45,45,0.0 +13698,41,9.65,29,0.0 +13698,77,13,43,0.0 +13698,66,17,30,0.0 +13698,35,18,31,0.0 +13698,39,18,19,0.0 +13698,52,7,28,0.0 +13698,27,43.9,38,0.0 +13698,33,2.5,41,0.0 +13698,31,12.5,31,0.0 +13698,15,15.5,27,0.0 +13698,61,28.5,38,0.0 +13698,58,13.25,42,0.0 +13698,23,9,41,0.0 +13698,5,21.35,46,0.0 +13698,7,30,11,0.0 +13698,40,18.4,13,0.0 +13698,19,9.2,28,0.0 +13698,36,19,6,0.0 +13698,65,21.05,46,0.0 +13698,1,18,9,0.0 +13698,16,17.45,20,0.0 +13698,50,16.25,30,0.0 +13698,25,14,33,0.0 +13698,63,43.9,2,0.0 +13698,73,15,31,0.0 +13698,57,19.5,49,0.0 +13698,76,18,34,0.0 +13698,37,26,10,0.0 +13698,42,14,43,0.0 +13698,32,32,18,0.0 +13698,72,34.8,1,0.0 +13698,69,36,6,0.0 +13698,53,32.8,42,0.0 +13698,48,12.75,18,0.0 +13698,46,12,48,0.0 +13698,17,39,25,0.0 +13698,10,31,44,0.0 +13698,59,55,29,0.0 +13698,47,9.5,14,0.0 +13698,74,10,44,0.0 +13698,22,21,35,0.0 +13698,30,25.89,21,0.0 +13698,6,25,6,0.0 +13699,39,18,2,0.0 +13699,77,13,29,0.0 +13699,20,81,28,0.0 +13699,14,23.25,26,0.0 +13699,42,14,43,0.0 +13699,37,26,20,0.0 +13699,70,15,2,0.0 +13699,27,43.9,24,0.0 +13699,23,9,2,0.0 +13699,40,18.4,36,0.0 +13700,68,12.5,18,0.0 +13700,54,7.45,16,0.0 +13700,43,46,5,0.0 +13700,74,10,25,0.0 +13700,56,38,42,0.0 +13700,52,7,26,0.0 +13700,38,263.5,2,0.0 +13700,29,123.79,23,0.0 +13700,76,18,18,0.0 +13700,48,12.75,16,0.0 +13700,66,17,18,0.0 +13700,77,13,14,0.0 +13700,72,34.8,33,0.0 +13700,13,6,44,0.0 +13700,73,15,4,0.0 +13700,16,17.45,6,0.0 +13700,75,7.75,24,0.0 +13700,17,39,45,0.0 +13700,59,55,39,0.0 +13700,61,28.5,19,0.0 +13700,19,9.2,31,0.0 +13700,23,9,26,0.0 +13700,20,81,34,0.0 +13700,7,30,49,0.0 +13700,31,12.5,8,0.0 +13700,60,34,47,0.0 +13700,1,18,18,0.0 +13700,36,19,46,0.0 +13700,40,18.4,11,0.0 +13700,9,97,10,0.0 +13700,53,32.8,41,0.0 +13700,12,38,8,0.0 +13700,2,19,27,0.0 +13700,28,45.6,16,0.0 +13700,32,32,29,0.0 +13700,26,31.23,27,0.0 +13700,55,24,6,0.0 +13700,39,18,32,0.0 +13700,35,18,38,0.0 +13700,49,20,48,0.0 +13700,62,49.3,49,0.0 +13700,64,33.25,31,0.0 +13701,69,36,44,0.0 +13701,19,9.2,18,0.0 +13701,59,55,30,0.0 +13701,18,62.5,18,0.0 +13701,27,43.9,19,0.0 +13701,14,23.25,6,0.0 +13701,51,53,42,0.0 +13701,24,4.5,35,0.0 +13701,36,19,22,0.0 +13701,32,32,30,0.0 +13701,65,21.05,15,0.0 +13701,57,19.5,9,0.0 +13701,1,18,23,0.0 +13701,31,12.5,10,0.0 +13701,67,14,49,0.0 +13701,39,18,47,0.0 +13701,71,21.5,22,0.0 +13701,10,31,39,0.0 +13701,13,6,33,0.0 +13701,68,12.5,49,0.0 +13701,34,14,35,0.0 +13701,56,38,43,0.0 +13701,26,31.23,46,0.0 +13702,57,19.5,11,0.0 +13702,44,19.45,24,0.0 +13702,58,13.25,12,0.0 +13702,61,28.5,40,0.0 +13702,66,17,49,0.0 +13702,16,17.45,10,0.0 +13702,77,13,40,0.0 +13702,43,46,20,0.0 +13702,72,34.8,22,0.0 +13702,24,4.5,14,0.0 +13702,7,30,38,0.0 +13702,40,18.4,41,0.0 +13702,5,21.35,14,0.0 +13702,15,15.5,5,0.0 +13702,65,21.05,39,0.0 +13703,45,9.5,6,0.0 +13703,12,38,15,0.0 +13703,67,14,26,0.0 +13703,41,9.65,8,0.0 +13703,2,19,29,0.0 +13703,44,19.45,2,0.0 +13703,60,34,46,0.0 +13703,5,21.35,42,0.0 +13703,24,4.5,6,0.0 +13703,28,45.6,20,0.0 +13703,14,23.25,9,0.0 +13703,34,14,13,0.0 +13703,21,10,4,0.0 +13703,30,25.89,33,0.0 +13703,25,14,37,0.0 +13703,9,97,17,0.0 +13703,73,15,20,0.0 +13703,49,20,4,0.0 +13703,3,10,15,0.0 +13703,22,21,38,0.0 +13703,4,22,12,0.0 +13703,75,7.75,32,0.0 +13703,1,18,26,0.0 +13703,77,13,37,0.0 +13703,8,40,23,0.0 +13703,59,55,10,0.0 +13703,55,24,16,0.0 +13703,11,21,8,0.0 +13703,66,17,20,0.0 +13703,32,32,42,0.0 +13703,31,12.5,23,0.0 +13703,13,6,43,0.0 +13703,10,31,8,0.0 +13703,17,39,25,0.0 +13703,68,12.5,25,0.0 +13703,72,34.8,11,0.0 +13703,19,9.2,4,0.0 +13703,61,28.5,37,0.0 +13703,26,31.23,18,0.0 +13703,64,33.25,6,0.0 +13703,47,9.5,6,0.0 +13703,29,123.79,31,0.0 +13703,27,43.9,34,0.0 +13703,48,12.75,27,0.0 +13703,74,10,33,0.0 +13703,56,38,47,0.0 +13703,43,46,9,0.0 +13703,71,21.5,30,0.0 +13703,38,263.5,24,0.0 +13703,33,2.5,1,0.0 +13703,16,17.45,50,0.0 +13703,40,18.4,26,0.0 +13703,39,18,40,0.0 +13703,42,14,25,0.0 +13703,15,15.5,6,0.0 +13703,46,12,46,0.0 +13703,36,19,15,0.0 +13703,76,18,48,0.0 +13703,50,16.25,31,0.0 +13703,63,43.9,24,0.0 +13703,37,26,4,0.0 +13703,70,15,35,0.0 +13703,58,13.25,24,0.0 +13704,55,24,25,0.0 +13704,56,38,4,0.0 +13704,61,28.5,17,0.0 +13704,33,2.5,42,0.0 +13704,67,14,47,0.0 +13704,45,9.5,42,0.0 +13704,36,19,41,0.0 +13704,7,30,28,0.0 +13704,17,39,18,0.0 +13704,43,46,4,0.0 +13704,31,12.5,13,0.0 +13704,54,7.45,1,0.0 +13704,11,21,13,0.0 +13704,9,97,20,0.0 +13704,68,12.5,38,0.0 +13704,22,21,6,0.0 +13704,15,15.5,25,0.0 +13704,57,19.5,40,0.0 +13704,27,43.9,7,0.0 +13704,25,14,16,0.0 +13704,51,53,21,0.0 +13705,63,43.9,27,0.0 +13705,7,30,46,0.0 +13705,60,34,47,0.0 +13705,11,21,9,0.0 +13705,37,26,20,0.0 +13705,25,14,7,0.0 +13705,59,55,27,0.0 +13705,65,21.05,7,0.0 +13705,56,38,50,0.0 +13705,30,25.89,19,0.0 +13705,39,18,13,0.0 +13705,28,45.6,46,0.0 +13705,26,31.23,25,0.0 +13705,70,15,47,0.0 +13705,31,12.5,22,0.0 +13705,47,9.5,31,0.0 +13705,18,62.5,24,0.0 +13705,6,25,38,0.0 +13705,35,18,47,0.0 +13705,74,10,45,0.0 +13705,20,81,45,0.0 +13705,16,17.45,48,0.0 +13705,52,7,2,0.0 +13705,34,14,43,0.0 +13705,12,38,2,0.0 +13705,69,36,25,0.0 +13705,38,263.5,13,0.0 +13705,15,15.5,14,0.0 +13705,71,21.5,1,0.0 +13705,19,9.2,45,0.0 +13705,42,14,7,0.0 +13705,4,22,14,0.0 +13705,58,13.25,2,0.0 +13705,33,2.5,29,0.0 +13705,32,32,39,0.0 +13705,2,19,17,0.0 +13705,36,19,32,0.0 +13705,21,10,11,0.0 +13705,48,12.75,36,0.0 +13705,3,10,37,0.0 +13705,29,123.79,7,0.0 +13705,13,6,18,0.0 +13705,45,9.5,23,0.0 +13705,64,33.25,35,0.0 +13705,67,14,23,0.0 +13705,5,21.35,3,0.0 +13705,66,17,9,0.0 +13705,49,20,27,0.0 +13705,10,31,3,0.0 +13705,23,9,15,0.0 +13705,68,12.5,19,0.0 +13705,22,21,14,0.0 +13705,51,53,2,0.0 +13705,40,18.4,3,0.0 +13705,41,9.65,40,0.0 +13705,76,18,16,0.0 +13705,9,97,32,0.0 +13705,27,43.9,35,0.0 +13705,43,46,43,0.0 +13705,54,7.45,25,0.0 +13705,57,19.5,43,0.0 +13705,46,12,35,0.0 +13705,14,23.25,27,0.0 +13706,11,21,1,0.0 +13706,70,15,14,0.0 +13706,28,45.6,29,0.0 +13706,9,97,29,0.0 +13706,10,31,41,0.0 +13706,32,32,36,0.0 +13706,3,10,4,0.0 +13706,55,24,30,0.0 +13706,8,40,27,0.0 +13706,1,18,5,0.0 +13706,47,9.5,34,0.0 +13706,37,26,23,0.0 +13706,6,25,1,0.0 +13706,58,13.25,27,0.0 +13706,30,25.89,21,0.0 +13706,73,15,24,0.0 +13706,13,6,19,0.0 +13706,49,20,25,0.0 +13706,46,12,11,0.0 +13706,76,18,41,0.0 +13706,25,14,34,0.0 +13706,67,14,36,0.0 +13706,18,62.5,13,0.0 +13706,50,16.25,39,0.0 +13706,17,39,14,0.0 +13706,33,2.5,38,0.0 +13706,69,36,46,0.0 +13706,23,9,17,0.0 +13706,24,4.5,31,0.0 +13706,53,32.8,48,0.0 +13706,52,7,31,0.0 +13706,72,34.8,46,0.0 +13706,43,46,29,0.0 +13706,5,21.35,14,0.0 +13706,38,263.5,27,0.0 +13706,16,17.45,1,0.0 +13706,20,81,39,0.0 +13706,77,13,18,0.0 +13706,26,31.23,33,0.0 +13706,19,9.2,39,0.0 +13706,21,10,19,0.0 +13707,62,49.3,31,0.0 +13707,58,13.25,21,0.0 +13707,29,123.79,32,0.0 +13707,2,19,18,0.0 +13707,33,2.5,38,0.0 +13707,22,21,36,0.0 +13707,48,12.75,25,0.0 +13707,20,81,25,0.0 +13707,75,7.75,50,0.0 +13707,46,12,30,0.0 +13707,30,25.89,31,0.0 +13707,72,34.8,42,0.0 +13707,41,9.65,43,0.0 +13707,10,31,4,0.0 +13707,14,23.25,31,0.0 +13707,28,45.6,12,0.0 +13707,69,36,33,0.0 +13707,65,21.05,44,0.0 +13707,18,62.5,31,0.0 +13707,51,53,5,0.0 +13707,17,39,18,0.0 +13707,32,32,9,0.0 +13707,67,14,6,0.0 +13708,2,19,25,0.0 +13708,56,38,9,0.0 +13708,67,14,7,0.0 +13708,76,18,9,0.0 +13708,72,34.8,50,0.0 +13708,71,21.5,1,0.0 +13708,47,9.5,19,0.0 +13708,65,21.05,49,0.0 +13708,58,13.25,8,0.0 +13708,18,62.5,50,0.0 +13708,25,14,40,0.0 +13708,35,18,4,0.0 +13708,57,19.5,45,0.0 +13709,77,13,8,0.0 +13709,19,9.2,40,0.0 +13709,43,46,17,0.0 +13709,65,21.05,43,0.0 +13709,11,21,5,0.0 +13709,72,34.8,29,0.0 +13709,21,10,36,0.0 +13709,75,7.75,38,0.0 +13709,67,14,5,0.0 +13709,32,32,31,0.0 +13709,18,62.5,23,0.0 +13709,47,9.5,12,0.0 +13709,40,18.4,4,0.0 +13709,13,6,22,0.0 +13709,27,43.9,17,0.0 +13709,68,12.5,14,0.0 +13709,71,21.5,29,0.0 +13709,38,263.5,23,0.0 +13709,6,25,39,0.0 +13709,7,30,26,0.0 +13710,51,53,1,0.0 +13710,49,20,6,0.0 +13710,61,28.5,29,0.0 +13710,12,38,30,0.0 +13710,71,21.5,2,0.0 +13710,14,23.25,38,0.0 +13710,50,16.25,20,0.0 +13710,16,17.45,48,0.0 +13710,2,19,1,0.0 +13710,25,14,44,0.0 +13710,32,32,1,0.0 +13710,10,31,10,0.0 +13710,42,14,16,0.0 +13710,75,7.75,49,0.0 +13710,17,39,28,0.0 +13710,11,21,46,0.0 +13710,19,9.2,33,0.0 +13710,24,4.5,31,0.0 +13710,33,2.5,8,0.0 +13710,76,18,36,0.0 +13710,31,12.5,44,0.0 +13710,48,12.75,16,0.0 +13710,47,9.5,39,0.0 +13710,43,46,11,0.0 +13710,9,97,18,0.0 +13710,60,34,11,0.0 +13710,5,21.35,47,0.0 +13710,30,25.89,43,0.0 +13710,18,62.5,26,0.0 +13710,44,19.45,21,0.0 +13710,45,9.5,49,0.0 +13710,52,7,42,0.0 +13710,62,49.3,43,0.0 +13710,3,10,35,0.0 +13710,63,43.9,31,0.0 +13710,15,15.5,43,0.0 +13710,67,14,26,0.0 +13710,68,12.5,22,0.0 +13710,58,13.25,33,0.0 +13710,70,15,23,0.0 +13710,66,17,45,0.0 +13710,13,6,13,0.0 +13710,57,19.5,31,0.0 +13710,27,43.9,47,0.0 +13710,20,81,23,0.0 +13710,59,55,44,0.0 +13710,22,21,7,0.0 +13710,72,34.8,8,0.0 +13710,23,9,22,0.0 +13710,6,25,28,0.0 +13711,77,13,13,0.0 +13711,39,18,25,0.0 +13711,76,18,14,0.0 +13711,72,34.8,46,0.0 +13711,38,263.5,30,0.0 +13711,45,9.5,12,0.0 +13711,25,14,2,0.0 +13711,44,19.45,6,0.0 +13711,75,7.75,12,0.0 +13711,50,16.25,7,0.0 +13711,19,9.2,50,0.0 +13711,58,13.25,43,0.0 +13711,35,18,33,0.0 +13711,69,36,32,0.0 +13711,41,9.65,1,0.0 +13711,65,21.05,25,0.0 +13711,63,43.9,39,0.0 +13711,53,32.8,17,0.0 +13711,47,9.5,25,0.0 +13711,10,31,1,0.0 +13711,7,30,25,0.0 +13711,17,39,47,0.0 +13711,74,10,15,0.0 +13711,43,46,41,0.0 +13711,48,12.75,11,0.0 +13711,3,10,12,0.0 +13711,59,55,36,0.0 +13711,26,31.23,7,0.0 +13711,8,40,41,0.0 +13711,14,23.25,33,0.0 +13711,64,33.25,32,0.0 +13711,15,15.5,29,0.0 +13711,55,24,36,0.0 +13711,2,19,17,0.0 +13711,62,49.3,3,0.0 +13711,49,20,20,0.0 +13711,13,6,26,0.0 +13711,30,25.89,9,0.0 +13711,46,12,9,0.0 +13711,23,9,6,0.0 +13711,51,53,20,0.0 +13711,68,12.5,40,0.0 +13711,28,45.6,39,0.0 +13711,54,7.45,13,0.0 +13711,29,123.79,37,0.0 +13711,9,97,25,0.0 +13711,42,14,10,0.0 +13711,70,15,17,0.0 +13711,33,2.5,26,0.0 +13711,24,4.5,12,0.0 +13711,40,18.4,44,0.0 +13711,71,21.5,3,0.0 +13711,73,15,5,0.0 +13711,56,38,32,0.0 +13711,66,17,1,0.0 +13711,34,14,7,0.0 +13711,61,28.5,34,0.0 +13711,52,7,26,0.0 +13712,2,19,19,0.0 +13712,47,9.5,20,0.0 +13712,32,32,38,0.0 +13712,29,123.79,5,0.0 +13712,50,16.25,27,0.0 +13712,63,43.9,34,0.0 +13712,33,2.5,25,0.0 +13712,73,15,49,0.0 +13712,15,15.5,49,0.0 +13712,28,45.6,2,0.0 +13712,38,263.5,47,0.0 +13712,59,55,22,0.0 +13712,64,33.25,40,0.0 +13712,45,9.5,21,0.0 +13712,19,9.2,15,0.0 +13712,48,12.75,3,0.0 +13712,61,28.5,16,0.0 +13712,40,18.4,15,0.0 +13712,77,13,15,0.0 +13712,14,23.25,27,0.0 +13712,49,20,30,0.0 +13712,76,18,10,0.0 +13712,52,7,35,0.0 +13712,60,34,45,0.0 +13712,23,9,33,0.0 +13712,7,30,33,0.0 +13712,16,17.45,14,0.0 +13712,3,10,2,0.0 +13712,12,38,44,0.0 +13712,54,7.45,25,0.0 +13712,1,18,50,0.0 +13712,37,26,18,0.0 +13712,71,21.5,39,0.0 +13712,8,40,8,0.0 +13712,65,21.05,20,0.0 +13712,18,62.5,39,0.0 +13712,75,7.75,38,0.0 +13712,55,24,25,0.0 +13712,67,14,38,0.0 +13712,34,14,50,0.0 +13712,27,43.9,43,0.0 +13712,13,6,47,0.0 +13712,5,21.35,11,0.0 +13712,66,17,27,0.0 +13712,24,4.5,17,0.0 +13712,26,31.23,45,0.0 +13712,35,18,14,0.0 +13712,21,10,2,0.0 +13712,62,49.3,36,0.0 +13712,22,21,20,0.0 +13712,74,10,11,0.0 +13712,58,13.25,23,0.0 +13712,30,25.89,27,0.0 +13712,39,18,44,0.0 +13712,51,53,30,0.0 +13712,10,31,33,0.0 +13712,6,25,41,0.0 +13712,11,21,44,0.0 +13712,46,12,36,0.0 +13712,4,22,18,0.0 +13712,53,32.8,24,0.0 +13712,20,81,28,0.0 +13712,43,46,38,0.0 +13712,44,19.45,50,0.0 +13712,31,12.5,38,0.0 +13712,41,9.65,16,0.0 +13712,69,36,26,0.0 +13712,56,38,38,0.0 +13712,42,14,37,0.0 +13712,68,12.5,17,0.0 +13713,63,43.9,19,0.0 +13713,13,6,46,0.0 +13713,66,17,7,0.0 +13713,50,16.25,48,0.0 +13713,6,25,30,0.0 +13713,52,7,35,0.0 +13713,40,18.4,30,0.0 +13713,33,2.5,38,0.0 +13713,74,10,3,0.0 +13713,30,25.89,23,0.0 +13713,70,15,23,0.0 +13713,25,14,49,0.0 +13713,48,12.75,31,0.0 +13713,59,55,48,0.0 +13713,65,21.05,50,0.0 +13713,14,23.25,6,0.0 +13713,32,32,24,0.0 +13713,67,14,37,0.0 +13713,28,45.6,37,0.0 +13713,41,9.65,34,0.0 +13713,31,12.5,11,0.0 +13713,77,13,9,0.0 +13713,69,36,17,0.0 +13713,68,12.5,10,0.0 +13713,57,19.5,33,0.0 +13713,60,34,49,0.0 +13713,61,28.5,45,0.0 +13713,76,18,29,0.0 +13713,58,13.25,12,0.0 +13713,7,30,12,0.0 +13713,56,38,43,0.0 +13713,23,9,44,0.0 +13713,21,10,44,0.0 +13713,49,20,36,0.0 +13713,26,31.23,29,0.0 +13713,47,9.5,4,0.0 +13713,36,19,4,0.0 +13713,39,18,48,0.0 +13713,24,4.5,10,0.0 +13713,71,21.5,10,0.0 +13713,16,17.45,45,0.0 +13713,10,31,39,0.0 +13713,3,10,14,0.0 +13713,2,19,21,0.0 +13713,37,26,22,0.0 +13713,45,9.5,41,0.0 +13713,53,32.8,32,0.0 +13713,51,53,6,0.0 +13713,5,21.35,24,0.0 +13713,20,81,22,0.0 +13713,75,7.75,23,0.0 +13713,18,62.5,10,0.0 +13713,64,33.25,11,0.0 +13713,4,22,38,0.0 +13713,1,18,46,0.0 +13713,62,49.3,48,0.0 +13713,73,15,36,0.0 +13713,46,12,27,0.0 +13713,11,21,23,0.0 +13713,15,15.5,4,0.0 +13713,55,24,16,0.0 +13713,54,7.45,49,0.0 +13713,44,19.45,12,0.0 +13713,19,9.2,23,0.0 +13714,16,17.45,46,0.0 +13714,9,97,46,0.0 +13714,35,18,45,0.0 +13714,32,32,33,0.0 +13714,21,10,6,0.0 +13714,59,55,7,0.0 +13714,40,18.4,20,0.0 +13714,20,81,9,0.0 +13714,48,12.75,37,0.0 +13714,72,34.8,48,0.0 +13714,30,25.89,6,0.0 +13714,19,9.2,6,0.0 +13714,45,9.5,25,0.0 +13714,52,7,7,0.0 +13714,17,39,37,0.0 +13714,12,38,2,0.0 +13714,23,9,19,0.0 +13714,47,9.5,15,0.0 +13714,54,7.45,22,0.0 +13714,1,18,15,0.0 +13714,41,9.65,29,0.0 +13714,58,13.25,46,0.0 +13714,69,36,37,0.0 +13714,44,19.45,32,0.0 +13714,6,25,44,0.0 +13714,67,14,10,0.0 +13714,73,15,30,0.0 +13714,4,22,23,0.0 +13714,18,62.5,7,0.0 +13714,46,12,40,0.0 +13714,75,7.75,38,0.0 +13714,42,14,35,0.0 +13714,60,34,19,0.0 +13714,36,19,10,0.0 +13714,77,13,34,0.0 +13714,55,24,46,0.0 +13714,68,12.5,49,0.0 +13714,38,263.5,19,0.0 +13714,26,31.23,33,0.0 +13714,56,38,37,0.0 +13714,22,21,31,0.0 +13714,43,46,35,0.0 +13714,70,15,32,0.0 +13714,37,26,41,0.0 +13714,53,32.8,32,0.0 +13714,8,40,16,0.0 +13714,29,123.79,8,0.0 +13714,64,33.25,12,0.0 +13714,61,28.5,33,0.0 +13714,15,15.5,25,0.0 +13714,49,20,26,0.0 +13714,3,10,42,0.0 +13714,76,18,36,0.0 +13714,5,21.35,24,0.0 +13714,74,10,49,0.0 +13714,28,45.6,10,0.0 +13714,71,21.5,36,0.0 +13714,10,31,19,0.0 +13714,50,16.25,3,0.0 +13714,62,49.3,26,0.0 +13715,25,14,17,0.0 +13715,45,9.5,17,0.0 +13715,20,81,48,0.0 +13715,60,34,24,0.0 +13715,56,38,4,0.0 +13715,55,24,5,0.0 +13715,24,4.5,45,0.0 +13715,19,9.2,3,0.0 +13715,31,12.5,11,0.0 +13715,32,32,47,0.0 +13715,6,25,2,0.0 +13716,66,17,44,0.0 +13716,34,14,31,0.0 +13716,64,33.25,42,0.0 +13716,19,9.2,48,0.0 +13716,46,12,23,0.0 +13716,60,34,31,0.0 +13716,12,38,27,0.0 +13716,20,81,47,0.0 +13716,49,20,5,0.0 +13716,70,15,5,0.0 +13716,23,9,1,0.0 +13716,41,9.65,30,0.0 +13716,18,62.5,47,0.0 +13716,61,28.5,41,0.0 +13716,26,31.23,3,0.0 +13716,52,7,34,0.0 +13716,25,14,23,0.0 +13716,62,49.3,34,0.0 +13716,50,16.25,21,0.0 +13716,54,7.45,46,0.0 +13716,32,32,48,0.0 +13716,35,18,39,0.0 +13716,6,25,45,0.0 +13716,7,30,8,0.0 +13716,45,9.5,22,0.0 +13716,72,34.8,35,0.0 +13716,16,17.45,10,0.0 +13716,30,25.89,29,0.0 +13716,28,45.6,45,0.0 +13716,10,31,7,0.0 +13716,15,15.5,22,0.0 +13716,56,38,21,0.0 +13716,27,43.9,30,0.0 +13716,39,18,37,0.0 +13716,9,97,39,0.0 +13716,43,46,36,0.0 +13716,42,14,35,0.0 +13716,71,21.5,12,0.0 +13716,59,55,15,0.0 +13716,3,10,33,0.0 +13716,77,13,4,0.0 +13716,63,43.9,10,0.0 +13716,11,21,50,0.0 +13716,36,19,27,0.0 +13716,8,40,32,0.0 +13716,74,10,2,0.0 +13716,48,12.75,12,0.0 +13716,33,2.5,42,0.0 +13716,37,26,4,0.0 +13716,2,19,6,0.0 +13716,38,263.5,4,0.0 +13716,14,23.25,41,0.0 +13716,22,21,14,0.0 +13716,24,4.5,50,0.0 +13716,21,10,17,0.0 +13716,44,19.45,15,0.0 +13716,40,18.4,35,0.0 +13716,65,21.05,11,0.0 +13716,4,22,11,0.0 +13716,55,24,28,0.0 +13716,58,13.25,20,0.0 +13716,31,12.5,22,0.0 +13716,5,21.35,31,0.0 +13716,53,32.8,24,0.0 +13716,75,7.75,18,0.0 +13716,17,39,7,0.0 +13716,13,6,40,0.0 +13716,69,36,9,0.0 +13716,76,18,8,0.0 +13716,1,18,14,0.0 +13717,9,97,36,0.0 +13717,71,21.5,43,0.0 +13717,24,4.5,20,0.0 +13717,46,12,7,0.0 +13717,22,21,31,0.0 +13717,43,46,13,0.0 +13717,25,14,20,0.0 +13717,16,17.45,18,0.0 +13717,14,23.25,50,0.0 +13717,17,39,12,0.0 +13717,2,19,7,0.0 +13717,3,10,25,0.0 +13717,41,9.65,27,0.0 +13717,28,45.6,47,0.0 +13717,13,6,16,0.0 +13717,12,38,25,0.0 +13717,8,40,37,0.0 +13717,56,38,49,0.0 +13717,21,10,23,0.0 +13717,30,25.89,10,0.0 +13717,23,9,37,0.0 +13717,7,30,26,0.0 +13717,72,34.8,27,0.0 +13717,69,36,42,0.0 +13717,32,32,32,0.0 +13717,35,18,1,0.0 +13717,11,21,28,0.0 +13717,66,17,31,0.0 +13717,54,7.45,32,0.0 +13717,33,2.5,50,0.0 +13717,19,9.2,33,0.0 +13717,18,62.5,12,0.0 +13717,65,21.05,9,0.0 +13717,76,18,11,0.0 +13717,44,19.45,24,0.0 +13717,6,25,30,0.0 +13717,73,15,4,0.0 +13717,10,31,37,0.0 +13717,55,24,21,0.0 +13717,1,18,11,0.0 +13717,59,55,50,0.0 +13717,38,263.5,47,0.0 +13717,68,12.5,13,0.0 +13717,74,10,12,0.0 +13717,20,81,17,0.0 +13717,50,16.25,13,0.0 +13717,36,19,39,0.0 +13717,27,43.9,32,0.0 +13717,45,9.5,44,0.0 +13717,42,14,2,0.0 +13717,58,13.25,25,0.0 +13717,39,18,33,0.0 +13717,29,123.79,33,0.0 +13717,61,28.5,29,0.0 +13717,48,12.75,50,0.0 +13717,51,53,16,0.0 +13717,49,20,41,0.0 +13717,57,19.5,45,0.0 +13717,70,15,21,0.0 +13718,46,12,39,0.0 +13718,19,9.2,16,0.0 +13718,51,53,11,0.0 +13718,52,7,43,0.0 +13718,15,15.5,43,0.0 +13718,17,39,22,0.0 +13718,36,19,15,0.0 +13718,45,9.5,13,0.0 +13718,10,31,36,0.0 +13718,24,4.5,17,0.0 +13718,63,43.9,20,0.0 +13718,8,40,42,0.0 +13718,48,12.75,28,0.0 +13718,75,7.75,22,0.0 +13718,68,12.5,36,0.0 +13718,23,9,7,0.0 +13718,72,34.8,36,0.0 +13718,16,17.45,34,0.0 +13718,64,33.25,13,0.0 +13718,31,12.5,9,0.0 +13718,20,81,46,0.0 +13718,61,28.5,10,0.0 +13718,73,15,22,0.0 +13718,14,23.25,8,0.0 +13718,30,25.89,21,0.0 +13718,12,38,12,0.0 +13718,34,14,17,0.0 +13718,11,21,1,0.0 +13718,54,7.45,27,0.0 +13718,38,263.5,2,0.0 +13718,77,13,1,0.0 +13718,39,18,21,0.0 +13719,4,22,31,0.0 +13719,10,31,27,0.0 +13719,69,36,31,0.0 +13719,48,12.75,9,0.0 +13719,40,18.4,47,0.0 +13719,2,19,3,0.0 +13719,55,24,22,0.0 +13719,36,19,27,0.0 +13719,62,49.3,44,0.0 +13719,9,97,27,0.0 +13719,21,10,17,0.0 +13719,18,62.5,9,0.0 +13719,56,38,26,0.0 +13719,20,81,17,0.0 +13719,38,263.5,28,0.0 +13719,14,23.25,15,0.0 +13719,31,12.5,22,0.0 +13719,17,39,29,0.0 +13719,51,53,14,0.0 +13720,61,28.5,17,0.0 +13720,35,18,29,0.0 +13720,2,19,7,0.0 +13720,28,45.6,2,0.0 +13720,31,12.5,50,0.0 +13720,39,18,22,0.0 +13720,25,14,27,0.0 +13720,24,4.5,41,0.0 +13720,62,49.3,11,0.0 +13720,41,9.65,43,0.0 +13720,16,17.45,12,0.0 +13720,68,12.5,45,0.0 +13720,21,10,10,0.0 +13720,29,123.79,27,0.0 +13720,3,10,18,0.0 +13720,67,14,16,0.0 +13720,65,21.05,31,0.0 +13720,55,24,19,0.0 +13720,59,55,36,0.0 +13720,23,9,24,0.0 +13720,27,43.9,29,0.0 +13720,66,17,7,0.0 +13720,10,31,16,0.0 +13720,77,13,45,0.0 +13720,32,32,3,0.0 +13720,40,18.4,46,0.0 +13720,74,10,31,0.0 +13720,19,9.2,23,0.0 +13720,50,16.25,5,0.0 +13720,58,13.25,25,0.0 +13720,54,7.45,28,0.0 +13720,56,38,9,0.0 +13720,37,26,30,0.0 +13720,13,6,50,0.0 +13720,63,43.9,49,0.0 +13720,49,20,20,0.0 +13720,51,53,23,0.0 +13720,57,19.5,34,0.0 +13720,45,9.5,45,0.0 +13720,22,21,2,0.0 +13720,30,25.89,8,0.0 +13720,8,40,39,0.0 +13720,43,46,20,0.0 +13720,14,23.25,38,0.0 +13720,4,22,46,0.0 +13720,11,21,48,0.0 +13720,5,21.35,19,0.0 +13720,38,263.5,16,0.0 +13720,46,12,28,0.0 +13720,34,14,15,0.0 +13720,7,30,8,0.0 +13720,53,32.8,34,0.0 +13720,15,15.5,9,0.0 +13720,71,21.5,17,0.0 +13721,35,18,44,0.0 +13721,44,19.45,1,0.0 +13721,43,46,43,0.0 +13721,5,21.35,10,0.0 +13721,36,19,11,0.0 +13721,6,25,10,0.0 +13721,40,18.4,14,0.0 +13722,57,19.5,23,0.0 +13722,19,9.2,48,0.0 +13722,7,30,35,0.0 +13722,26,31.23,23,0.0 +13722,71,21.5,16,0.0 +13722,72,34.8,12,0.0 +13722,2,19,41,0.0 +13722,9,97,35,0.0 +13722,12,38,8,0.0 +13722,58,13.25,11,0.0 +13722,15,15.5,47,0.0 +13722,73,15,34,0.0 +13722,64,33.25,15,0.0 +13722,36,19,24,0.0 +13722,41,9.65,4,0.0 +13722,5,21.35,16,0.0 +13722,40,18.4,29,0.0 +13722,30,25.89,7,0.0 +13722,61,28.5,38,0.0 +13722,32,32,11,0.0 +13722,48,12.75,29,0.0 +13722,34,14,9,0.0 +13722,6,25,2,0.0 +13722,35,18,19,0.0 +13722,1,18,36,0.0 +13722,49,20,38,0.0 +13722,33,2.5,36,0.0 +13722,20,81,48,0.0 +13722,42,14,14,0.0 +13722,53,32.8,25,0.0 +13722,60,34,46,0.0 +13722,59,55,1,0.0 +13722,67,14,49,0.0 +13722,44,19.45,31,0.0 +13722,51,53,8,0.0 +13722,37,26,42,0.0 +13722,23,9,14,0.0 +13722,31,12.5,13,0.0 +13722,13,6,35,0.0 +13722,29,123.79,36,0.0 +13722,10,31,17,0.0 +13722,45,9.5,21,0.0 +13722,65,21.05,39,0.0 +13722,14,23.25,33,0.0 +13722,54,7.45,36,0.0 +13722,77,13,46,0.0 +13722,46,12,32,0.0 +13723,34,14,19,0.0 +13723,40,18.4,13,0.0 +13723,37,26,15,0.0 +13723,14,23.25,10,0.0 +13723,42,14,33,0.0 +13723,61,28.5,37,0.0 +13723,52,7,44,0.0 +13723,24,4.5,15,0.0 +13724,13,6,17,0.0 +13724,69,36,14,0.0 +13724,29,123.79,6,0.0 +13724,67,14,50,0.0 +13724,28,45.6,20,0.0 +13724,7,30,50,0.0 +13724,37,26,19,0.0 +13724,21,10,15,0.0 +13724,4,22,17,0.0 +13724,15,15.5,39,0.0 +13724,40,18.4,46,0.0 +13724,42,14,23,0.0 +13724,35,18,6,0.0 +13724,62,49.3,23,0.0 +13724,59,55,13,0.0 +13724,49,20,48,0.0 +13724,38,263.5,3,0.0 +13725,72,34.8,3,0.0 +13725,40,18.4,38,0.0 +13725,16,17.45,33,0.0 +13725,33,2.5,7,0.0 +13725,68,12.5,42,0.0 +13725,2,19,21,0.0 +13725,39,18,26,0.0 +13725,20,81,37,0.0 +13725,42,14,18,0.0 +13725,8,40,15,0.0 +13725,58,13.25,42,0.0 +13725,44,19.45,15,0.0 +13725,60,34,32,0.0 +13725,9,97,1,0.0 +13725,55,24,38,0.0 +13725,19,9.2,18,0.0 +13725,12,38,26,0.0 +13725,47,9.5,11,0.0 +13725,50,16.25,5,0.0 +13725,18,62.5,4,0.0 +13725,69,36,48,0.0 +13725,76,18,7,0.0 +13725,52,7,15,0.0 +13725,23,9,48,0.0 +13725,34,14,48,0.0 +13725,74,10,24,0.0 +13725,53,32.8,26,0.0 +13725,77,13,6,0.0 +13725,46,12,50,0.0 +13725,71,21.5,41,0.0 +13725,49,20,32,0.0 +13725,70,15,26,0.0 +13725,4,22,33,0.0 +13725,41,9.65,40,0.0 +13725,57,19.5,50,0.0 +13725,37,26,30,0.0 +13725,62,49.3,13,0.0 +13725,48,12.75,17,0.0 +13725,54,7.45,1,0.0 +13725,7,30,1,0.0 +13725,10,31,25,0.0 +13725,21,10,38,0.0 +13725,32,32,31,0.0 +13725,66,17,43,0.0 +13725,56,38,13,0.0 +13725,14,23.25,30,0.0 +13725,59,55,39,0.0 +13725,25,14,8,0.0 +13725,38,263.5,13,0.0 +13725,63,43.9,39,0.0 +13725,31,12.5,32,0.0 +13725,15,15.5,16,0.0 +13725,36,19,14,0.0 +13725,61,28.5,9,0.0 +13725,11,21,39,0.0 +13725,35,18,33,0.0 +13725,1,18,22,0.0 +13725,43,46,15,0.0 +13725,26,31.23,10,0.0 +13725,45,9.5,6,0.0 +13725,6,25,8,0.0 +13725,29,123.79,24,0.0 +13725,28,45.6,25,0.0 +13725,73,15,49,0.0 +13725,27,43.9,24,0.0 +13726,17,39,40,0.0 +13726,42,14,32,0.0 +13726,18,62.5,24,0.0 +13726,7,30,16,0.0 +13726,16,17.45,19,0.0 +13726,60,34,44,0.0 +13726,51,53,11,0.0 +13726,34,14,28,0.0 +13726,55,24,32,0.0 +13726,62,49.3,37,0.0 +13726,68,12.5,9,0.0 +13726,72,34.8,45,0.0 +13726,24,4.5,38,0.0 +13726,28,45.6,32,0.0 +13726,61,28.5,6,0.0 +13726,66,17,3,0.0 +13726,39,18,42,0.0 +13726,67,14,1,0.0 +13726,41,9.65,9,0.0 +13726,38,263.5,4,0.0 +13726,20,81,35,0.0 +13726,13,6,44,0.0 +13726,40,18.4,46,0.0 +13726,69,36,50,0.0 +13726,46,12,24,0.0 +13726,23,9,12,0.0 +13726,19,9.2,43,0.0 +13726,48,12.75,14,0.0 +13726,32,32,12,0.0 +13726,10,31,19,0.0 +13726,14,23.25,27,0.0 +13726,75,7.75,34,0.0 +13726,36,19,40,0.0 +13726,21,10,34,0.0 +13726,50,16.25,23,0.0 +13726,8,40,25,0.0 +13726,5,21.35,44,0.0 +13726,26,31.23,30,0.0 +13726,6,25,3,0.0 +13726,37,26,1,0.0 +13726,77,13,5,0.0 +13726,22,21,34,0.0 +13726,58,13.25,23,0.0 +13727,1,18,34,0.0 +13727,3,10,13,0.0 +13727,36,19,13,0.0 +13727,7,30,33,0.0 +13727,71,21.5,4,0.0 +13727,67,14,33,0.0 +13727,20,81,17,0.0 +13727,72,34.8,19,0.0 +13727,29,123.79,32,0.0 +13727,30,25.89,12,0.0 +13727,28,45.6,43,0.0 +13727,10,31,3,0.0 +13727,64,33.25,9,0.0 +13727,51,53,6,0.0 +13727,21,10,17,0.0 +13727,59,55,15,0.0 +13727,19,9.2,40,0.0 +13727,18,62.5,5,0.0 +13727,42,14,6,0.0 +13727,32,32,6,0.0 +13727,48,12.75,48,0.0 +13727,50,16.25,8,0.0 +13727,54,7.45,50,0.0 +13727,27,43.9,48,0.0 +13727,74,10,1,0.0 +13727,12,38,14,0.0 +13727,47,9.5,25,0.0 +13727,11,21,40,0.0 +13727,69,36,27,0.0 +13727,43,46,19,0.0 +13727,31,12.5,30,0.0 +13727,38,263.5,2,0.0 +13727,45,9.5,37,0.0 +13728,38,263.5,16,0.0 +13728,20,81,37,0.0 +13728,70,15,34,0.0 +13728,42,14,50,0.0 +13728,45,9.5,31,0.0 +13728,37,26,4,0.0 +13728,76,18,43,0.0 +13728,39,18,8,0.0 +13728,58,13.25,2,0.0 +13728,56,38,35,0.0 +13728,18,62.5,12,0.0 +13728,72,34.8,33,0.0 +13728,64,33.25,36,0.0 +13728,30,25.89,4,0.0 +13728,65,21.05,2,0.0 +13728,46,12,25,0.0 +13728,12,38,6,0.0 +13728,61,28.5,46,0.0 +13728,5,21.35,10,0.0 +13728,62,49.3,25,0.0 +13728,34,14,17,0.0 +13728,13,6,14,0.0 +13728,8,40,22,0.0 +13728,53,32.8,14,0.0 +13728,47,9.5,14,0.0 +13728,59,55,11,0.0 +13728,6,25,4,0.0 +13728,23,9,28,0.0 +13728,49,20,6,0.0 +13728,21,10,12,0.0 +13728,16,17.45,41,0.0 +13728,36,19,43,0.0 +13728,48,12.75,10,0.0 +13728,1,18,44,0.0 +13728,41,9.65,44,0.0 +13728,4,22,15,0.0 +13728,7,30,15,0.0 +13728,77,13,32,0.0 +13728,63,43.9,28,0.0 +13728,14,23.25,3,0.0 +13728,31,12.5,21,0.0 +13728,27,43.9,14,0.0 +13728,15,15.5,19,0.0 +13728,9,97,10,0.0 +13728,25,14,50,0.0 +13728,11,21,29,0.0 +13728,44,19.45,32,0.0 +13728,33,2.5,13,0.0 +13728,55,24,15,0.0 +13728,69,36,37,0.0 +13728,73,15,26,0.0 +13728,74,10,29,0.0 +13728,26,31.23,36,0.0 +13728,2,19,23,0.0 +13728,75,7.75,1,0.0 +13728,3,10,18,0.0 +13728,51,53,37,0.0 +13728,29,123.79,1,0.0 +13728,40,18.4,45,0.0 +13728,35,18,25,0.0 +13729,16,17.45,45,0.0 +13729,74,10,8,0.0 +13729,28,45.6,15,0.0 +13729,55,24,29,0.0 +13729,38,263.5,11,0.0 +13729,13,6,29,0.0 +13729,19,9.2,35,0.0 +13729,41,9.65,27,0.0 +13729,2,19,31,0.0 +13729,31,12.5,37,0.0 +13730,20,81,49,0.0 +13730,76,18,3,0.0 +13730,56,38,28,0.0 +13730,74,10,5,0.0 +13730,41,9.65,39,0.0 +13730,65,21.05,34,0.0 +13730,22,21,3,0.0 +13730,1,18,47,0.0 +13730,13,6,14,0.0 +13730,16,17.45,22,0.0 +13730,33,2.5,30,0.0 +13730,40,18.4,5,0.0 +13730,19,9.2,18,0.0 +13730,53,32.8,7,0.0 +13730,4,22,13,0.0 +13730,66,17,6,0.0 +13730,9,97,24,0.0 +13730,12,38,12,0.0 +13730,34,14,34,0.0 +13730,26,31.23,30,0.0 +13730,63,43.9,27,0.0 +13730,57,19.5,50,0.0 +13730,24,4.5,41,0.0 +13730,77,13,33,0.0 +13730,46,12,49,0.0 +13730,17,39,27,0.0 +13730,45,9.5,3,0.0 +13730,71,21.5,6,0.0 +13730,14,23.25,7,0.0 +13730,58,13.25,4,0.0 +13730,51,53,16,0.0 +13730,3,10,19,0.0 +13730,55,24,36,0.0 +13731,61,28.5,18,0.0 +13731,58,13.25,14,0.0 +13731,3,10,22,0.0 +13731,71,21.5,26,0.0 +13731,69,36,38,0.0 +13731,2,19,12,0.0 +13731,66,17,44,0.0 +13731,72,34.8,48,0.0 +13731,48,12.75,28,0.0 +13731,73,15,48,0.0 +13731,75,7.75,35,0.0 +13731,24,4.5,41,0.0 +13731,11,21,2,0.0 +13731,43,46,42,0.0 +13731,70,15,44,0.0 +13731,7,30,37,0.0 +13731,15,15.5,21,0.0 +13731,63,43.9,15,0.0 +13731,49,20,47,0.0 +13731,6,25,37,0.0 +13731,55,24,29,0.0 +13731,62,49.3,6,0.0 +13731,46,12,22,0.0 +13731,65,21.05,33,0.0 +13731,47,9.5,26,0.0 +13731,21,10,12,0.0 +13731,19,9.2,33,0.0 +13731,53,32.8,34,0.0 +13731,16,17.45,22,0.0 +13731,10,31,42,0.0 +13731,28,45.6,21,0.0 +13731,51,53,11,0.0 +13731,30,25.89,4,0.0 +13731,22,21,5,0.0 +13731,4,22,26,0.0 +13731,39,18,21,0.0 +13731,26,31.23,27,0.0 +13731,64,33.25,19,0.0 +13731,38,263.5,31,0.0 +13731,60,34,19,0.0 +13731,13,6,44,0.0 +13731,35,18,36,0.0 +13731,77,13,47,0.0 +13732,59,55,18,0.0 +13732,18,62.5,36,0.0 +13732,33,2.5,9,0.0 +13732,67,14,8,0.0 +13732,61,28.5,6,0.0 +13732,19,9.2,37,0.0 +13732,40,18.4,42,0.0 +13732,6,25,42,0.0 +13732,76,18,40,0.0 +13732,25,14,44,0.0 +13732,41,9.65,20,0.0 +13732,55,24,12,0.0 +13732,47,9.5,37,0.0 +13732,2,19,41,0.0 +13732,64,33.25,15,0.0 +13732,58,13.25,48,0.0 +13732,31,12.5,2,0.0 +13733,13,6,4,0.0 +13733,4,22,11,0.0 +13733,64,33.25,21,0.0 +13733,61,28.5,17,0.0 +13733,54,7.45,21,0.0 +13733,5,21.35,3,0.0 +13733,55,24,31,0.0 +13733,19,9.2,18,0.0 +13733,31,12.5,1,0.0 +13733,52,7,50,0.0 +13733,71,21.5,5,0.0 +13733,29,123.79,18,0.0 +13733,73,15,35,0.0 +13733,65,21.05,1,0.0 +13733,72,34.8,22,0.0 +13733,62,49.3,30,0.0 +13733,58,13.25,49,0.0 +13733,24,4.5,31,0.0 +13733,46,12,15,0.0 +13733,8,40,3,0.0 +13733,69,36,22,0.0 +13733,10,31,10,0.0 +13733,21,10,22,0.0 +13733,6,25,7,0.0 +13733,12,38,12,0.0 +13733,47,9.5,44,0.0 +13733,26,31.23,44,0.0 +13733,63,43.9,13,0.0 +13733,56,38,2,0.0 +13733,66,17,23,0.0 +13733,76,18,6,0.0 +13733,36,19,20,0.0 +13733,68,12.5,44,0.0 +13733,32,32,4,0.0 +13733,9,97,31,0.0 +13733,11,21,33,0.0 +13733,39,18,43,0.0 +13733,37,26,21,0.0 +13733,60,34,42,0.0 +13733,40,18.4,23,0.0 +13733,67,14,42,0.0 +13733,27,43.9,31,0.0 +13733,7,30,45,0.0 +13733,45,9.5,12,0.0 +13733,42,14,32,0.0 +13733,50,16.25,41,0.0 +13733,53,32.8,29,0.0 +13733,16,17.45,46,0.0 +13733,51,53,46,0.0 +13733,18,62.5,48,0.0 +13733,38,263.5,6,0.0 +13733,17,39,25,0.0 +13733,44,19.45,21,0.0 +13733,25,14,40,0.0 +13733,70,15,46,0.0 +13733,43,46,34,0.0 +13733,1,18,14,0.0 +13733,75,7.75,18,0.0 +13733,33,2.5,40,0.0 +13734,39,18,15,0.0 +13734,55,24,34,0.0 +13734,52,7,28,0.0 +13734,33,2.5,1,0.0 +13734,15,15.5,15,0.0 +13734,76,18,11,0.0 +13734,28,45.6,43,0.0 +13734,48,12.75,13,0.0 +13734,50,16.25,6,0.0 +13734,7,30,8,0.0 +13734,24,4.5,15,0.0 +13734,27,43.9,26,0.0 +13734,8,40,49,0.0 +13734,34,14,38,0.0 +13734,41,9.65,16,0.0 +13734,60,34,30,0.0 +13734,1,18,19,0.0 +13734,10,31,8,0.0 +13734,19,9.2,15,0.0 +13734,43,46,46,0.0 +13734,73,15,17,0.0 +13734,75,7.75,24,0.0 +13734,9,97,34,0.0 +13734,61,28.5,39,0.0 +13734,72,34.8,43,0.0 +13734,51,53,46,0.0 +13734,47,9.5,8,0.0 +13734,3,10,26,0.0 +13734,57,19.5,39,0.0 +13734,13,6,42,0.0 +13734,6,25,24,0.0 +13734,53,32.8,22,0.0 +13734,77,13,12,0.0 +13734,62,49.3,50,0.0 +13734,18,62.5,10,0.0 +13734,20,81,16,0.0 +13734,32,32,9,0.0 +13734,38,263.5,3,0.0 +13734,26,31.23,11,0.0 +13734,35,18,31,0.0 +13734,40,18.4,48,0.0 +13734,42,14,10,0.0 +13734,14,23.25,1,0.0 +13734,65,21.05,4,0.0 +13734,54,7.45,29,0.0 +13734,44,19.45,40,0.0 +13734,45,9.5,7,0.0 +13734,49,20,50,0.0 +13734,17,39,16,0.0 +13734,74,10,12,0.0 +13735,62,49.3,29,0.0 +13735,31,12.5,31,0.0 +13735,70,15,38,0.0 +13735,55,24,38,0.0 +13735,33,2.5,6,0.0 +13735,9,97,11,0.0 +13735,60,34,25,0.0 +13735,2,19,41,0.0 +13735,12,38,23,0.0 +13735,76,18,43,0.0 +13735,18,62.5,2,0.0 +13735,23,9,13,0.0 +13735,4,22,27,0.0 +13735,22,21,9,0.0 +13735,34,14,44,0.0 +13735,67,14,48,0.0 +13735,35,18,37,0.0 +13735,44,19.45,19,0.0 +13735,64,33.25,46,0.0 +13735,63,43.9,12,0.0 +13735,16,17.45,6,0.0 +13735,51,53,39,0.0 +13735,59,55,19,0.0 +13735,54,7.45,11,0.0 +13735,8,40,25,0.0 +13735,15,15.5,21,0.0 +13735,24,4.5,40,0.0 +13735,21,10,34,0.0 +13735,40,18.4,1,0.0 +13735,45,9.5,37,0.0 +13735,7,30,39,0.0 +13735,58,13.25,14,0.0 +13735,10,31,48,0.0 +13735,5,21.35,2,0.0 +13735,75,7.75,26,0.0 +13735,19,9.2,39,0.0 +13735,74,10,3,0.0 +13735,3,10,23,0.0 +13735,69,36,3,0.0 +13735,53,32.8,38,0.0 +13735,37,26,16,0.0 +13735,28,45.6,8,0.0 +13735,71,21.5,24,0.0 +13735,1,18,43,0.0 +13735,73,15,24,0.0 +13735,14,23.25,29,0.0 +13735,41,9.65,49,0.0 +13735,39,18,42,0.0 +13735,56,38,18,0.0 +13735,13,6,26,0.0 +13735,36,19,4,0.0 +13735,47,9.5,11,0.0 +13735,30,25.89,45,0.0 +13735,17,39,25,0.0 +13735,26,31.23,11,0.0 +13735,20,81,42,0.0 +13735,48,12.75,50,0.0 +13735,25,14,40,0.0 +13735,11,21,47,0.0 +13735,46,12,13,0.0 +13735,6,25,10,0.0 +13735,50,16.25,10,0.0 +13735,29,123.79,12,0.0 +13735,65,21.05,8,0.0 +13735,72,34.8,22,0.0 +13735,38,263.5,10,0.0 +13735,49,20,35,0.0 +13735,32,32,44,0.0 +13735,68,12.5,32,0.0 +13736,19,9.2,40,0.0 +13736,21,10,48,0.0 +13736,55,24,16,0.0 +13736,68,12.5,2,0.0 +13736,33,2.5,3,0.0 +13736,41,9.65,19,0.0 +13736,70,15,25,0.0 +13736,2,19,27,0.0 +13736,71,21.5,18,0.0 +13736,14,23.25,44,0.0 +13736,5,21.35,8,0.0 +13736,32,32,13,0.0 +13736,43,46,29,0.0 +13736,54,7.45,36,0.0 +13736,18,62.5,24,0.0 +13736,46,12,21,0.0 +13736,22,21,9,0.0 +13736,58,13.25,46,0.0 +13736,17,39,14,0.0 +13736,11,21,33,0.0 +13736,63,43.9,17,0.0 +13736,75,7.75,36,0.0 +13736,76,18,30,0.0 +13736,6,25,35,0.0 +13736,24,4.5,31,0.0 +13737,47,9.5,7,0.0 +13737,27,43.9,17,0.0 +13737,72,34.8,25,0.0 +13737,50,16.25,31,0.0 +13737,51,53,49,0.0 +13737,10,31,46,0.0 +13737,8,40,45,0.0 +13737,26,31.23,17,0.0 +13737,65,21.05,10,0.0 +13737,67,14,7,0.0 +13737,16,17.45,13,0.0 +13737,63,43.9,1,0.0 +13737,75,7.75,22,0.0 +13737,43,46,26,0.0 +13737,23,9,40,0.0 +13737,25,14,8,0.0 +13737,59,55,20,0.0 +13737,15,15.5,44,0.0 +13737,1,18,17,0.0 +13737,31,12.5,27,0.0 +13737,71,21.5,15,0.0 +13737,76,18,13,0.0 +13737,64,33.25,4,0.0 +13737,4,22,48,0.0 +13737,54,7.45,7,0.0 +13737,17,39,10,0.0 +13737,45,9.5,8,0.0 +13737,57,19.5,47,0.0 +13737,36,19,40,0.0 +13737,40,18.4,1,0.0 +13737,12,38,9,0.0 +13737,28,45.6,40,0.0 +13737,46,12,18,0.0 +13737,24,4.5,24,0.0 +13737,38,263.5,32,0.0 +13737,9,97,40,0.0 +13738,62,49.3,44,0.0 +13738,71,21.5,13,0.0 +13738,4,22,16,0.0 +13738,33,2.5,1,0.0 +13738,1,18,27,0.0 +13738,69,36,32,0.0 +13738,35,18,48,0.0 +13738,23,9,34,0.0 +13738,76,18,23,0.0 +13738,17,39,4,0.0 +13738,44,19.45,2,0.0 +13738,6,25,39,0.0 +13738,7,30,16,0.0 +13738,73,15,22,0.0 +13738,31,12.5,22,0.0 +13738,38,263.5,23,0.0 +13738,30,25.89,31,0.0 +13738,3,10,44,0.0 +13738,60,34,12,0.0 +13738,54,7.45,46,0.0 +13738,43,46,28,0.0 +13738,37,26,50,0.0 +13738,63,43.9,3,0.0 +13738,45,9.5,40,0.0 +13738,16,17.45,17,0.0 +13738,2,19,14,0.0 +13738,21,10,34,0.0 +13738,67,14,12,0.0 +13738,5,21.35,44,0.0 +13738,10,31,38,0.0 +13738,51,53,32,0.0 +13738,64,33.25,14,0.0 +13738,26,31.23,35,0.0 +13738,13,6,42,0.0 +13738,18,62.5,3,0.0 +13739,11,21,3,0.0 +13739,38,263.5,42,0.0 +13739,41,9.65,22,0.0 +13739,23,9,20,0.0 +13739,66,17,9,0.0 +13739,40,18.4,46,0.0 +13739,34,14,24,0.0 +13739,71,21.5,19,0.0 +13739,49,20,46,0.0 +13739,27,43.9,27,0.0 +13739,62,49.3,31,0.0 +13739,12,38,24,0.0 +13739,51,53,32,0.0 +13739,14,23.25,44,0.0 +13739,19,9.2,7,0.0 +13739,13,6,31,0.0 +13739,16,17.45,10,0.0 +13739,18,62.5,22,0.0 +13739,35,18,23,0.0 +13739,44,19.45,44,0.0 +13739,43,46,31,0.0 +13739,58,13.25,15,0.0 +13739,25,14,28,0.0 +13739,36,19,21,0.0 +13739,22,21,22,0.0 +13739,24,4.5,29,0.0 +13739,33,2.5,38,0.0 +13739,9,97,4,0.0 +13739,64,33.25,23,0.0 +13739,39,18,38,0.0 +13739,70,15,18,0.0 +13739,42,14,15,0.0 +13739,57,19.5,28,0.0 +13739,17,39,48,0.0 +13739,72,34.8,27,0.0 +13739,76,18,35,0.0 +13739,55,24,13,0.0 +13739,65,21.05,47,0.0 +13740,52,7,30,0.0 +13740,25,14,10,0.0 +13740,30,25.89,41,0.0 +13740,17,39,32,0.0 +13740,73,15,28,0.0 +13740,3,10,47,0.0 +13740,9,97,31,0.0 +13740,1,18,35,0.0 +13740,5,21.35,46,0.0 +13740,11,21,35,0.0 +13740,45,9.5,45,0.0 +13740,21,10,14,0.0 +13740,24,4.5,17,0.0 +13740,68,12.5,40,0.0 +13740,29,123.79,20,0.0 +13740,4,22,15,0.0 +13740,72,34.8,40,0.0 +13740,58,13.25,21,0.0 +13740,75,7.75,1,0.0 +13740,44,19.45,39,0.0 +13740,40,18.4,41,0.0 +13740,7,30,42,0.0 +13740,10,31,11,0.0 +13740,39,18,19,0.0 +13740,27,43.9,3,0.0 +13740,18,62.5,33,0.0 +13740,38,263.5,23,0.0 +13740,74,10,39,0.0 +13740,22,21,7,0.0 +13740,20,81,45,0.0 +13740,16,17.45,50,0.0 +13740,62,49.3,7,0.0 +13740,36,19,33,0.0 +13740,64,33.25,18,0.0 +13740,77,13,50,0.0 +13740,54,7.45,45,0.0 +13740,67,14,17,0.0 +13740,28,45.6,4,0.0 +13740,32,32,5,0.0 +13740,34,14,36,0.0 +13740,70,15,11,0.0 +13740,23,9,30,0.0 +13740,6,25,2,0.0 +13740,76,18,11,0.0 +13740,19,9.2,13,0.0 +13740,71,21.5,6,0.0 +13740,37,26,43,0.0 +13741,42,14,43,0.0 +13741,36,19,29,0.0 +13741,55,24,11,0.0 +13741,56,38,29,0.0 +13741,73,15,26,0.0 +13741,45,9.5,8,0.0 +13741,5,21.35,13,0.0 +13741,58,13.25,20,0.0 +13741,63,43.9,27,0.0 +13741,26,31.23,35,0.0 +13741,72,34.8,45,0.0 +13741,13,6,50,0.0 +13741,21,10,43,0.0 +13741,49,20,3,0.0 +13741,32,32,16,0.0 +13741,39,18,29,0.0 +13741,14,23.25,22,0.0 +13741,54,7.45,14,0.0 +13741,44,19.45,21,0.0 +13741,65,21.05,48,0.0 +13741,43,46,48,0.0 +13741,8,40,32,0.0 +13741,1,18,13,0.0 +13741,24,4.5,47,0.0 +13741,68,12.5,32,0.0 +13741,22,21,16,0.0 +13741,51,53,13,0.0 +13741,59,55,40,0.0 +13741,33,2.5,12,0.0 +13741,47,9.5,13,0.0 +13741,29,123.79,8,0.0 +13741,60,34,33,0.0 +13741,67,14,46,0.0 +13741,50,16.25,15,0.0 +13741,31,12.5,11,0.0 +13741,77,13,33,0.0 +13741,76,18,3,0.0 +13741,34,14,17,0.0 +13741,69,36,16,0.0 +13741,70,15,36,0.0 +13741,66,17,36,0.0 +13741,62,49.3,15,0.0 +13741,40,18.4,1,0.0 +13741,15,15.5,10,0.0 +13741,75,7.75,11,0.0 +13741,48,12.75,33,0.0 +13742,70,15,1,0.0 +13742,25,14,14,0.0 +13742,50,16.25,30,0.0 +13742,22,21,41,0.0 +13742,40,18.4,41,0.0 +13742,53,32.8,28,0.0 +13742,10,31,34,0.0 +13742,43,46,1,0.0 +13742,14,23.25,36,0.0 +13742,62,49.3,31,0.0 +13742,71,21.5,24,0.0 +13742,15,15.5,19,0.0 +13742,42,14,39,0.0 +13742,5,21.35,27,0.0 +13742,38,263.5,11,0.0 +13742,46,12,50,0.0 +13742,64,33.25,44,0.0 +13742,23,9,33,0.0 +13742,29,123.79,32,0.0 +13742,52,7,4,0.0 +13742,60,34,27,0.0 +13742,58,13.25,10,0.0 +13742,17,39,50,0.0 +13742,18,62.5,33,0.0 +13742,56,38,47,0.0 +13742,36,19,39,0.0 +13742,37,26,21,0.0 +13742,57,19.5,23,0.0 +13742,59,55,36,0.0 +13742,24,4.5,39,0.0 +13742,61,28.5,35,0.0 +13742,34,14,24,0.0 +13742,9,97,38,0.0 +13742,27,43.9,30,0.0 +13742,7,30,9,0.0 +13742,2,19,7,0.0 +13742,39,18,24,0.0 +13742,47,9.5,4,0.0 +13742,54,7.45,37,0.0 +13742,69,36,42,0.0 +13742,75,7.75,18,0.0 +13742,76,18,37,0.0 +13742,49,20,30,0.0 +13742,8,40,44,0.0 +13742,67,14,9,0.0 +13742,48,12.75,7,0.0 +13742,28,45.6,32,0.0 +13742,16,17.45,44,0.0 +13743,12,38,33,0.0 +13743,30,25.89,41,0.0 +13743,15,15.5,31,0.0 +13743,46,12,4,0.0 +13743,61,28.5,2,0.0 +13743,70,15,23,0.0 +13743,6,25,1,0.0 +13743,35,18,49,0.0 +13743,44,19.45,47,0.0 +13744,52,7,46,0.0 +13744,19,9.2,12,0.0 +13744,11,21,2,0.0 +13744,24,4.5,3,0.0 +13744,43,46,29,0.0 +13744,57,19.5,46,0.0 +13744,71,21.5,45,0.0 +13744,54,7.45,12,0.0 +13744,29,123.79,17,0.0 +13744,51,53,23,0.0 +13744,31,12.5,49,0.0 +13744,2,19,4,0.0 +13744,6,25,31,0.0 +13744,30,25.89,30,0.0 +13744,27,43.9,41,0.0 +13744,65,21.05,29,0.0 +13744,45,9.5,2,0.0 +13744,76,18,31,0.0 +13744,56,38,19,0.0 +13744,12,38,16,0.0 +13744,38,263.5,48,0.0 +13744,1,18,37,0.0 +13744,26,31.23,26,0.0 +13744,23,9,43,0.0 +13744,77,13,8,0.0 +13744,5,21.35,27,0.0 +13744,13,6,42,0.0 +13744,14,23.25,22,0.0 +13744,40,18.4,35,0.0 +13744,46,12,42,0.0 +13744,4,22,27,0.0 +13744,44,19.45,5,0.0 +13744,73,15,33,0.0 +13744,15,15.5,22,0.0 +13744,58,13.25,36,0.0 +13744,9,97,28,0.0 +13744,8,40,12,0.0 +13744,63,43.9,32,0.0 +13744,28,45.6,32,0.0 +13744,49,20,14,0.0 +13744,47,9.5,19,0.0 +13744,42,14,27,0.0 +13744,39,18,40,0.0 +13744,53,32.8,22,0.0 +13744,50,16.25,46,0.0 +13744,62,49.3,50,0.0 +13744,10,31,15,0.0 +13744,41,9.65,9,0.0 +13744,25,14,25,0.0 +13744,48,12.75,30,0.0 +13745,9,97,26,0.0 +13745,16,17.45,41,0.0 +13745,11,21,21,0.0 +13745,69,36,42,0.0 +13745,30,25.89,2,0.0 +13745,35,18,2,0.0 +13745,43,46,6,0.0 +13745,48,12.75,35,0.0 +13745,29,123.79,12,0.0 +13745,55,24,22,0.0 +13745,31,12.5,4,0.0 +13745,59,55,9,0.0 +13745,24,4.5,34,0.0 +13745,72,34.8,41,0.0 +13745,25,14,32,0.0 +13745,27,43.9,32,0.0 +13745,14,23.25,38,0.0 +13745,33,2.5,31,0.0 +13745,56,38,35,0.0 +13745,53,32.8,17,0.0 +13745,62,49.3,15,0.0 +13745,28,45.6,22,0.0 +13745,65,21.05,45,0.0 +13745,74,10,47,0.0 +13745,19,9.2,12,0.0 +13745,17,39,16,0.0 +13745,61,28.5,24,0.0 +13745,40,18.4,25,0.0 +13745,54,7.45,19,0.0 +13745,77,13,10,0.0 +13745,34,14,22,0.0 +13745,8,40,42,0.0 +13745,57,19.5,27,0.0 +13745,68,12.5,29,0.0 +13745,21,10,23,0.0 +13745,18,62.5,44,0.0 +13745,49,20,4,0.0 +13745,46,12,44,0.0 +13745,3,10,21,0.0 +13745,60,34,5,0.0 +13745,39,18,31,0.0 +13745,47,9.5,28,0.0 +13745,67,14,3,0.0 +13745,76,18,29,0.0 +13745,41,9.65,48,0.0 +13745,5,21.35,37,0.0 +13745,63,43.9,43,0.0 +13745,64,33.25,19,0.0 +13745,51,53,19,0.0 +13745,36,19,48,0.0 +13745,45,9.5,50,0.0 +13745,1,18,43,0.0 +13745,22,21,42,0.0 +13745,13,6,14,0.0 +13745,73,15,12,0.0 +13745,15,15.5,26,0.0 +13745,66,17,50,0.0 +13745,12,38,13,0.0 +13745,52,7,27,0.0 +13745,44,19.45,29,0.0 +13745,32,32,43,0.0 +13745,2,19,7,0.0 +13745,70,15,27,0.0 +13745,7,30,21,0.0 +13745,10,31,47,0.0 +13745,26,31.23,23,0.0 +13745,23,9,24,0.0 +13745,20,81,10,0.0 +13745,6,25,31,0.0 +13745,50,16.25,14,0.0 +13745,4,22,30,0.0 +13746,56,38,11,0.0 +13746,55,24,10,0.0 +13746,64,33.25,27,0.0 +13746,43,46,34,0.0 +13746,24,4.5,36,0.0 +13746,72,34.8,20,0.0 +13746,28,45.6,9,0.0 +13746,27,43.9,42,0.0 +13746,35,18,13,0.0 +13746,5,21.35,28,0.0 +13746,42,14,43,0.0 +13746,21,10,9,0.0 +13746,10,31,6,0.0 +13746,69,36,41,0.0 +13746,77,13,5,0.0 +13746,1,18,1,0.0 +13746,6,25,25,0.0 +13746,4,22,15,0.0 +13746,49,20,48,0.0 +13746,74,10,46,0.0 +13746,12,38,44,0.0 +13746,7,30,27,0.0 +13746,66,17,4,0.0 +13746,3,10,29,0.0 +13746,71,21.5,20,0.0 +13746,31,12.5,27,0.0 +13746,60,34,35,0.0 +13746,76,18,43,0.0 +13746,36,19,40,0.0 +13746,23,9,20,0.0 +13746,51,53,26,0.0 +13746,73,15,26,0.0 +13746,58,13.25,1,0.0 +13746,18,62.5,6,0.0 +13746,20,81,4,0.0 +13746,11,21,40,0.0 +13746,50,16.25,20,0.0 +13746,46,12,45,0.0 +13746,16,17.45,18,0.0 +13746,65,21.05,15,0.0 +13746,2,19,33,0.0 +13746,25,14,37,0.0 +13746,37,26,6,0.0 +13746,44,19.45,23,0.0 +13746,70,15,4,0.0 +13746,15,15.5,45,0.0 +13746,32,32,31,0.0 +13746,62,49.3,4,0.0 +13746,19,9.2,49,0.0 +13746,54,7.45,21,0.0 +13746,75,7.75,43,0.0 +13746,41,9.65,32,0.0 +13746,34,14,13,0.0 +13746,29,123.79,18,0.0 +13746,40,18.4,20,0.0 +13747,8,40,45,0.0 +13747,44,19.45,22,0.0 +13747,56,38,40,0.0 +13747,50,16.25,7,0.0 +13747,36,19,16,0.0 +13747,30,25.89,4,0.0 +13747,74,10,16,0.0 +13747,42,14,17,0.0 +13747,7,30,8,0.0 +13747,22,21,32,0.0 +13748,14,23.25,12,0.0 +13748,58,13.25,34,0.0 +13748,40,18.4,43,0.0 +13748,4,22,47,0.0 +13748,17,39,23,0.0 +13748,1,18,12,0.0 +13748,37,26,18,0.0 +13748,65,21.05,20,0.0 +13748,46,12,21,0.0 +13748,76,18,41,0.0 +13748,16,17.45,6,0.0 +13748,9,97,32,0.0 +13748,31,12.5,18,0.0 +13749,44,19.45,43,0.0 +13749,30,25.89,16,0.0 +13749,10,31,46,0.0 +13749,22,21,10,0.0 +13749,60,34,39,0.0 +13749,4,22,24,0.0 +13749,41,9.65,5,0.0 +13749,25,14,35,0.0 +13749,1,18,22,0.0 +13749,36,19,33,0.0 +13749,61,28.5,31,0.0 +13749,56,38,14,0.0 +13749,2,19,25,0.0 +13749,39,18,24,0.0 +13749,42,14,45,0.0 +13749,49,20,10,0.0 +13749,71,21.5,16,0.0 +13749,17,39,2,0.0 +13749,34,14,31,0.0 +13749,21,10,26,0.0 +13749,45,9.5,23,0.0 +13749,65,21.05,11,0.0 +13749,6,25,10,0.0 +13749,58,13.25,33,0.0 +13749,43,46,38,0.0 +13749,54,7.45,18,0.0 +13749,26,31.23,7,0.0 +13749,20,81,4,0.0 +13749,7,30,3,0.0 +13749,50,16.25,16,0.0 +13749,32,32,30,0.0 +13749,63,43.9,7,0.0 +13749,16,17.45,28,0.0 +13749,11,21,21,0.0 +13749,72,34.8,14,0.0 +13749,55,24,43,0.0 +13749,18,62.5,43,0.0 +13749,64,33.25,7,0.0 +13749,77,13,36,0.0 +13749,76,18,35,0.0 +13749,8,40,26,0.0 +13749,51,53,47,0.0 +13749,52,7,21,0.0 +13749,74,10,47,0.0 +13749,53,32.8,33,0.0 +13749,62,49.3,7,0.0 +13749,24,4.5,22,0.0 +13749,33,2.5,5,0.0 +13749,9,97,26,0.0 +13749,47,9.5,4,0.0 +13749,46,12,39,0.0 +13749,68,12.5,42,0.0 +13749,57,19.5,46,0.0 +13749,14,23.25,24,0.0 +13749,38,263.5,49,0.0 +13749,28,45.6,14,0.0 +13749,67,14,13,0.0 +13749,5,21.35,39,0.0 +13749,19,9.2,37,0.0 +13749,27,43.9,16,0.0 +13749,48,12.75,43,0.0 +13749,13,6,27,0.0 +13749,69,36,36,0.0 +13750,23,9,13,0.0 +13750,66,17,20,0.0 +13750,33,2.5,21,0.0 +13750,69,36,11,0.0 +13750,22,21,34,0.0 +13750,55,24,39,0.0 +13750,49,20,19,0.0 +13750,5,21.35,3,0.0 +13750,74,10,41,0.0 +13750,57,19.5,34,0.0 +13750,67,14,5,0.0 +13750,19,9.2,38,0.0 +13750,76,18,29,0.0 +13750,21,10,37,0.0 +13750,17,39,34,0.0 +13750,4,22,6,0.0 +13750,70,15,49,0.0 +13750,45,9.5,35,0.0 +13750,64,33.25,25,0.0 +13750,51,53,8,0.0 +13750,16,17.45,2,0.0 +13750,9,97,29,0.0 +13750,42,14,33,0.0 +13750,47,9.5,39,0.0 +13750,29,123.79,48,0.0 +13750,18,62.5,34,0.0 +13750,58,13.25,5,0.0 +13750,72,34.8,46,0.0 +13750,35,18,36,0.0 +13750,40,18.4,42,0.0 +13750,8,40,47,0.0 +13750,53,32.8,26,0.0 +13750,52,7,46,0.0 +13750,25,14,3,0.0 +13750,36,19,33,0.0 +13750,48,12.75,45,0.0 +13750,39,18,40,0.0 +13750,54,7.45,29,0.0 +13750,44,19.45,47,0.0 +13750,46,12,38,0.0 +13750,62,49.3,17,0.0 +13750,11,21,13,0.0 +13750,71,21.5,5,0.0 +13750,31,12.5,2,0.0 +13750,15,15.5,15,0.0 +13750,7,30,26,0.0 +13750,26,31.23,37,0.0 +13750,73,15,21,0.0 +13750,10,31,11,0.0 +13750,37,26,15,0.0 +13750,34,14,50,0.0 +13751,5,21.35,35,0.0 +13751,7,30,9,0.0 +13751,70,15,24,0.0 +13751,10,31,7,0.0 +13751,61,28.5,47,0.0 +13751,76,18,34,0.0 +13751,15,15.5,5,0.0 +13751,38,263.5,6,0.0 +13751,18,62.5,3,0.0 +13751,32,32,20,0.0 +13751,29,123.79,5,0.0 +13751,23,9,21,0.0 +13751,17,39,7,0.0 +13751,53,32.8,42,0.0 +13751,74,10,38,0.0 +13752,20,81,15,0.0 +13752,56,38,50,0.0 +13752,6,25,14,0.0 +13752,5,21.35,31,0.0 +13752,75,7.75,37,0.0 +13752,47,9.5,46,0.0 +13752,17,39,26,0.0 +13752,57,19.5,50,0.0 +13752,58,13.25,50,0.0 +13752,61,28.5,39,0.0 +13752,25,14,11,0.0 +13752,27,43.9,25,0.0 +13752,65,21.05,19,0.0 +13752,44,19.45,18,0.0 +13752,40,18.4,1,0.0 +13752,26,31.23,11,0.0 +13752,59,55,10,0.0 +13752,9,97,18,0.0 +13752,10,31,33,0.0 +13752,35,18,1,0.0 +13752,13,6,48,0.0 +13752,39,18,39,0.0 +13752,21,10,36,0.0 +13752,68,12.5,4,0.0 +13752,50,16.25,2,0.0 +13752,72,34.8,10,0.0 +13752,4,22,21,0.0 +13752,12,38,4,0.0 +13752,43,46,4,0.0 +13752,23,9,20,0.0 +13752,15,15.5,29,0.0 +13752,22,21,11,0.0 +13752,69,36,1,0.0 +13752,48,12.75,38,0.0 +13752,3,10,24,0.0 +13752,55,24,43,0.0 +13752,45,9.5,40,0.0 +13752,29,123.79,36,0.0 +13752,42,14,14,0.0 +13752,77,13,18,0.0 +13752,70,15,47,0.0 +13752,30,25.89,32,0.0 +13753,51,53,44,0.0 +13753,30,25.89,28,0.0 +13753,45,9.5,16,0.0 +13753,33,2.5,45,0.0 +13753,54,7.45,4,0.0 +13753,10,31,29,0.0 +13753,28,45.6,25,0.0 +13753,38,263.5,8,0.0 +13753,50,16.25,40,0.0 +13753,61,28.5,7,0.0 +13753,55,24,32,0.0 +13753,40,18.4,47,0.0 +13753,52,7,34,0.0 +13753,41,9.65,15,0.0 +13753,66,17,49,0.0 +13753,16,17.45,38,0.0 +13753,46,12,24,0.0 +13753,58,13.25,18,0.0 +13753,62,49.3,15,0.0 +13753,53,32.8,49,0.0 +13753,29,123.79,36,0.0 +13753,69,36,4,0.0 +13753,36,19,9,0.0 +13753,67,14,11,0.0 +13753,72,34.8,10,0.0 +13753,34,14,44,0.0 +13753,31,12.5,18,0.0 +13753,37,26,41,0.0 +13753,2,19,2,0.0 +13753,20,81,31,0.0 +13753,6,25,49,0.0 +13753,64,33.25,41,0.0 +13753,22,21,18,0.0 +13753,23,9,38,0.0 +13753,27,43.9,36,0.0 +13753,42,14,9,0.0 +13753,47,9.5,11,0.0 +13753,44,19.45,25,0.0 +13753,12,38,35,0.0 +13753,26,31.23,24,0.0 +13753,65,21.05,2,0.0 +13753,32,32,22,0.0 +13753,35,18,7,0.0 +13753,63,43.9,9,0.0 +13753,3,10,34,0.0 +13753,21,10,16,0.0 +13753,5,21.35,32,0.0 +13753,74,10,26,0.0 +13753,48,12.75,2,0.0 +13753,71,21.5,42,0.0 +13753,57,19.5,6,0.0 +13753,8,40,16,0.0 +13753,15,15.5,20,0.0 +13753,76,18,15,0.0 +13753,4,22,38,0.0 +13753,59,55,4,0.0 +13753,70,15,49,0.0 +13753,13,6,37,0.0 +13753,18,62.5,30,0.0 +13753,75,7.75,6,0.0 +13753,24,4.5,47,0.0 +13753,60,34,1,0.0 +13753,9,97,50,0.0 +13753,77,13,3,0.0 +13753,25,14,18,0.0 +13753,39,18,11,0.0 +13753,14,23.25,27,0.0 +13753,43,46,33,0.0 +13754,11,21,40,0.0 +13754,14,23.25,42,0.0 +13755,9,97,10,0.0 +13755,11,21,39,0.0 +13755,4,22,31,0.0 +13755,23,9,35,0.0 +13755,15,15.5,20,0.0 +13755,32,32,43,0.0 +13755,52,7,37,0.0 +13755,6,25,29,0.0 +13755,63,43.9,25,0.0 +13755,42,14,7,0.0 +13755,25,14,45,0.0 +13755,35,18,25,0.0 +13755,17,39,7,0.0 +13755,28,45.6,7,0.0 +13755,21,10,37,0.0 +13755,31,12.5,4,0.0 +13755,33,2.5,44,0.0 +13755,14,23.25,33,0.0 +13755,49,20,30,0.0 +13755,77,13,34,0.0 +13755,69,36,40,0.0 +13755,19,9.2,24,0.0 +13755,67,14,26,0.0 +13755,22,21,7,0.0 +13755,30,25.89,45,0.0 +13755,40,18.4,15,0.0 +13755,20,81,12,0.0 +13755,76,18,44,0.0 +13755,41,9.65,43,0.0 +13755,47,9.5,9,0.0 +13755,8,40,13,0.0 +13755,74,10,28,0.0 +13755,57,19.5,47,0.0 +13755,44,19.45,49,0.0 +13755,59,55,34,0.0 +13756,56,38,8,0.0 +13756,52,7,44,0.0 +13756,24,4.5,27,0.0 +13756,21,10,42,0.0 +13756,42,14,5,0.0 +13756,29,123.79,41,0.0 +13756,37,26,20,0.0 +13756,16,17.45,11,0.0 +13756,28,45.6,7,0.0 +13756,33,2.5,33,0.0 +13757,26,31.23,34,0.0 +13757,24,4.5,2,0.0 +13757,45,9.5,25,0.0 +13757,6,25,44,0.0 +13757,33,2.5,33,0.0 +13757,2,19,44,0.0 +13757,31,12.5,32,0.0 +13757,53,32.8,46,0.0 +13757,41,9.65,5,0.0 +13757,68,12.5,39,0.0 +13757,70,15,39,0.0 +13757,27,43.9,30,0.0 +13757,57,19.5,18,0.0 +13757,5,21.35,28,0.0 +13757,12,38,10,0.0 +13757,61,28.5,36,0.0 +13757,32,32,33,0.0 +13757,30,25.89,45,0.0 +13757,75,7.75,18,0.0 +13757,47,9.5,8,0.0 +13757,14,23.25,50,0.0 +13757,49,20,18,0.0 +13757,29,123.79,24,0.0 +13757,10,31,45,0.0 +13757,9,97,2,0.0 +13757,76,18,48,0.0 +13757,69,36,37,0.0 +13757,16,17.45,11,0.0 +13757,74,10,19,0.0 +13757,51,53,31,0.0 +13757,54,7.45,31,0.0 +13757,65,21.05,39,0.0 +13757,36,19,14,0.0 +13757,43,46,23,0.0 +13757,34,14,17,0.0 +13757,46,12,37,0.0 +13757,15,15.5,42,0.0 +13757,62,49.3,19,0.0 +13757,73,15,9,0.0 +13757,58,13.25,21,0.0 +13757,50,16.25,48,0.0 +13757,56,38,50,0.0 +13757,37,26,18,0.0 +13757,22,21,34,0.0 +13757,8,40,16,0.0 +13757,40,18.4,36,0.0 +13757,21,10,6,0.0 +13757,72,34.8,34,0.0 +13757,11,21,35,0.0 +13757,71,21.5,1,0.0 +13757,28,45.6,8,0.0 +13757,4,22,17,0.0 +13757,77,13,21,0.0 +13757,20,81,41,0.0 +13757,63,43.9,37,0.0 +13757,39,18,38,0.0 +13757,66,17,29,0.0 +13757,1,18,29,0.0 +13757,60,34,13,0.0 +13757,64,33.25,44,0.0 +13757,42,14,8,0.0 +13757,48,12.75,23,0.0 +13757,35,18,27,0.0 +13757,25,14,16,0.0 +13757,59,55,31,0.0 +13758,19,9.2,4,0.0 +13758,16,17.45,23,0.0 +13758,33,2.5,22,0.0 +13758,25,14,18,0.0 +13758,45,9.5,37,0.0 +13758,71,21.5,35,0.0 +13758,12,38,13,0.0 +13758,8,40,13,0.0 +13758,49,20,14,0.0 +13758,4,22,29,0.0 +13758,10,31,28,0.0 +13758,40,18.4,29,0.0 +13758,57,19.5,45,0.0 +13758,73,15,8,0.0 +13758,5,21.35,30,0.0 +13758,64,33.25,3,0.0 +13758,39,18,47,0.0 +13758,28,45.6,5,0.0 +13758,70,15,44,0.0 +13758,74,10,8,0.0 +13758,18,62.5,2,0.0 +13758,68,12.5,26,0.0 +13758,23,9,24,0.0 +13758,14,23.25,43,0.0 +13758,22,21,24,0.0 +13758,7,30,32,0.0 +13758,13,6,50,0.0 +13758,11,21,21,0.0 +13758,60,34,27,0.0 +13758,36,19,46,0.0 +13758,77,13,16,0.0 +13758,32,32,50,0.0 +13758,27,43.9,37,0.0 +13758,69,36,13,0.0 +13758,50,16.25,37,0.0 +13758,61,28.5,39,0.0 +13758,26,31.23,21,0.0 +13758,62,49.3,2,0.0 +13758,42,14,37,0.0 +13758,2,19,33,0.0 +13758,56,38,28,0.0 +13758,76,18,38,0.0 +13758,47,9.5,49,0.0 +13758,6,25,47,0.0 +13758,51,53,20,0.0 +13758,9,97,39,0.0 +13758,41,9.65,7,0.0 +13758,66,17,38,0.0 +13758,21,10,11,0.0 +13758,48,12.75,30,0.0 +13758,59,55,16,0.0 +13758,54,7.45,22,0.0 +13758,75,7.75,16,0.0 +13758,35,18,47,0.0 +13758,58,13.25,6,0.0 +13758,46,12,3,0.0 +13758,29,123.79,35,0.0 +13758,31,12.5,28,0.0 +13758,72,34.8,22,0.0 +13758,52,7,22,0.0 +13758,63,43.9,1,0.0 +13758,55,24,23,0.0 +13758,38,263.5,37,0.0 +13758,3,10,42,0.0 +13758,17,39,14,0.0 +13758,34,14,47,0.0 +13758,44,19.45,48,0.0 +13758,67,14,43,0.0 +13759,57,19.5,38,0.0 +13759,55,24,42,0.0 +13759,16,17.45,23,0.0 +13759,29,123.79,47,0.0 +13759,6,25,16,0.0 +13759,28,45.6,23,0.0 +13759,49,20,49,0.0 +13759,34,14,31,0.0 +13759,4,22,45,0.0 +13759,15,15.5,34,0.0 +13759,1,18,7,0.0 +13759,58,13.25,31,0.0 +13759,36,19,23,0.0 +13759,25,14,43,0.0 +13759,67,14,9,0.0 +13759,51,53,31,0.0 +13759,72,34.8,46,0.0 +13759,54,7.45,27,0.0 +13759,27,43.9,7,0.0 +13759,24,4.5,45,0.0 +13759,19,9.2,32,0.0 +13759,14,23.25,40,0.0 +13759,20,81,42,0.0 +13759,60,34,3,0.0 +13759,74,10,11,0.0 +13759,50,16.25,4,0.0 +13759,47,9.5,41,0.0 +13759,44,19.45,27,0.0 +13759,48,12.75,23,0.0 +13759,63,43.9,8,0.0 +13759,8,40,20,0.0 +13759,3,10,46,0.0 +13759,75,7.75,44,0.0 +13759,18,62.5,39,0.0 +13759,73,15,44,0.0 +13759,40,18.4,10,0.0 +13759,33,2.5,46,0.0 +13759,5,21.35,18,0.0 +13759,52,7,39,0.0 +13759,41,9.65,29,0.0 +13759,39,18,28,0.0 +13760,65,21.05,25,0.0 +13760,32,32,50,0.0 +13760,11,21,32,0.0 +13760,27,43.9,47,0.0 +13760,7,30,12,0.0 +13761,43,46,15,0.0 +13761,49,20,14,0.0 +13761,72,34.8,46,0.0 +13761,1,18,23,0.0 +13761,51,53,45,0.0 +13761,13,6,24,0.0 +13761,21,10,24,0.0 +13761,25,14,24,0.0 +13761,76,18,24,0.0 +13761,71,21.5,25,0.0 +13761,5,21.35,4,0.0 +13761,15,15.5,27,0.0 +13761,42,14,30,0.0 +13761,39,18,29,0.0 +13761,54,7.45,41,0.0 +13761,3,10,48,0.0 +13761,20,81,2,0.0 +13761,34,14,29,0.0 +13761,32,32,27,0.0 +13761,62,49.3,12,0.0 +13761,28,45.6,6,0.0 +13761,16,17.45,3,0.0 +13761,61,28.5,5,0.0 +13761,65,21.05,18,0.0 +13761,30,25.89,8,0.0 +13761,41,9.65,7,0.0 +13761,14,23.25,32,0.0 +13761,2,19,4,0.0 +13761,6,25,19,0.0 +13761,11,21,46,0.0 +13761,73,15,50,0.0 +13761,26,31.23,14,0.0 +13761,63,43.9,6,0.0 +13761,77,13,8,0.0 +13761,70,15,14,0.0 +13761,47,9.5,14,0.0 +13761,69,36,4,0.0 +13761,53,32.8,21,0.0 +13761,17,39,32,0.0 +13761,33,2.5,3,0.0 +13761,7,30,27,0.0 +13761,44,19.45,31,0.0 +13761,48,12.75,33,0.0 +13761,68,12.5,48,0.0 +13761,64,33.25,40,0.0 +13761,52,7,9,0.0 +13761,22,21,22,0.0 +13761,27,43.9,1,0.0 +13761,24,4.5,50,0.0 +13761,29,123.79,38,0.0 +13761,18,62.5,30,0.0 +13761,67,14,47,0.0 +13761,66,17,46,0.0 +13761,10,31,50,0.0 +13761,19,9.2,35,0.0 +13761,50,16.25,44,0.0 +13761,56,38,35,0.0 +13761,38,263.5,3,0.0 +13761,37,26,10,0.0 +13761,46,12,28,0.0 +13761,23,9,41,0.0 +13761,45,9.5,18,0.0 +13761,55,24,9,0.0 +13761,31,12.5,8,0.0 +13761,12,38,6,0.0 +13761,58,13.25,2,0.0 +13761,74,10,40,0.0 +13761,40,18.4,11,0.0 +13761,75,7.75,1,0.0 +13761,36,19,36,0.0 +13761,35,18,34,0.0 +13761,60,34,13,0.0 +13761,57,19.5,36,0.0 +13761,4,22,10,0.0 +13761,9,97,41,0.0 +13761,8,40,16,0.0 +13762,15,15.5,34,0.0 +13762,66,17,6,0.0 +13762,30,25.89,2,0.0 +13762,31,12.5,40,0.0 +13762,32,32,31,0.0 +13762,52,7,42,0.0 +13762,57,19.5,48,0.0 +13762,53,32.8,39,0.0 +13762,6,25,37,0.0 +13762,7,30,24,0.0 +13762,38,263.5,28,0.0 +13762,39,18,47,0.0 +13762,14,23.25,49,0.0 +13762,77,13,19,0.0 +13762,33,2.5,5,0.0 +13762,35,18,9,0.0 +13762,74,10,16,0.0 +13762,44,19.45,35,0.0 +13762,29,123.79,33,0.0 +13762,51,53,12,0.0 +13762,42,14,3,0.0 +13762,13,6,38,0.0 +13762,71,21.5,46,0.0 +13762,62,49.3,18,0.0 +13762,70,15,42,0.0 +13762,5,21.35,30,0.0 +13762,46,12,23,0.0 +13763,53,32.8,43,0.0 +13763,61,28.5,18,0.0 +13763,25,14,40,0.0 +13763,75,7.75,26,0.0 +13763,72,34.8,27,0.0 +13763,39,18,21,0.0 +13763,63,43.9,28,0.0 +13763,34,14,23,0.0 +13763,74,10,14,0.0 +13763,48,12.75,40,0.0 +13763,28,45.6,3,0.0 +13763,76,18,6,0.0 +13763,10,31,29,0.0 +13763,18,62.5,1,0.0 +13763,20,81,15,0.0 +13763,49,20,23,0.0 +13763,6,25,41,0.0 +13763,16,17.45,40,0.0 +13763,32,32,24,0.0 +13763,7,30,44,0.0 +13763,15,15.5,34,0.0 +13763,26,31.23,5,0.0 +13763,21,10,32,0.0 +13763,54,7.45,16,0.0 +13763,66,17,22,0.0 +13763,40,18.4,45,0.0 +13763,5,21.35,49,0.0 +13763,22,21,3,0.0 +13763,73,15,36,0.0 +13763,60,34,31,0.0 +13763,56,38,22,0.0 +13763,31,12.5,9,0.0 +13763,42,14,48,0.0 +13763,58,13.25,15,0.0 +13763,43,46,2,0.0 +13763,41,9.65,41,0.0 +13763,9,97,2,0.0 +13763,70,15,48,0.0 +13763,50,16.25,9,0.0 +13763,37,26,31,0.0 +13763,2,19,15,0.0 +13763,47,9.5,35,0.0 +13763,30,25.89,4,0.0 +13763,8,40,50,0.0 +13763,23,9,6,0.0 +13763,12,38,7,0.0 +13763,14,23.25,8,0.0 +13763,46,12,4,0.0 +13763,57,19.5,31,0.0 +13763,62,49.3,8,0.0 +13763,24,4.5,15,0.0 +13763,65,21.05,27,0.0 +13763,38,263.5,12,0.0 +13763,19,9.2,8,0.0 +13763,71,21.5,45,0.0 +13763,69,36,29,0.0 +13763,77,13,41,0.0 +13763,64,33.25,16,0.0 +13763,11,21,13,0.0 +13763,35,18,45,0.0 +13764,67,14,6,0.0 +13764,58,13.25,23,0.0 +13764,65,21.05,35,0.0 +13764,71,21.5,24,0.0 +13764,12,38,1,0.0 +13764,19,9.2,47,0.0 +13764,57,19.5,45,0.0 +13764,28,45.6,14,0.0 +13764,3,10,42,0.0 +13764,63,43.9,33,0.0 +13764,75,7.75,22,0.0 +13764,64,33.25,7,0.0 +13764,39,18,23,0.0 +13764,53,32.8,47,0.0 +13764,35,18,31,0.0 +13764,55,24,7,0.0 +13764,24,4.5,36,0.0 +13764,40,18.4,43,0.0 +13764,34,14,15,0.0 +13764,70,15,18,0.0 +13764,4,22,8,0.0 +13764,26,31.23,6,0.0 +13764,15,15.5,4,0.0 +13764,61,28.5,46,0.0 +13764,38,263.5,6,0.0 +13764,41,9.65,37,0.0 +13764,51,53,38,0.0 +13764,11,21,39,0.0 +13764,49,20,20,0.0 +13764,23,9,39,0.0 +13764,73,15,29,0.0 +13764,59,55,5,0.0 +13764,50,16.25,36,0.0 +13764,33,2.5,31,0.0 +13764,29,123.79,28,0.0 +13764,76,18,26,0.0 +13764,22,21,26,0.0 +13764,14,23.25,5,0.0 +13764,54,7.45,10,0.0 +13764,21,10,34,0.0 +13764,45,9.5,45,0.0 +13764,17,39,43,0.0 +13764,60,34,21,0.0 +13764,5,21.35,37,0.0 +13764,42,14,11,0.0 +13764,69,36,4,0.0 +13764,37,26,30,0.0 +13764,13,6,32,0.0 +13764,52,7,11,0.0 +13764,2,19,9,0.0 +13764,74,10,46,0.0 +13764,36,19,23,0.0 +13764,18,62.5,3,0.0 +13764,10,31,47,0.0 +13764,44,19.45,19,0.0 +13764,20,81,2,0.0 +13764,66,17,35,0.0 +13764,77,13,47,0.0 +13764,1,18,10,0.0 +13764,62,49.3,27,0.0 +13764,46,12,27,0.0 +13764,30,25.89,20,0.0 +13764,32,32,17,0.0 +13764,8,40,11,0.0 +13764,47,9.5,28,0.0 +13764,7,30,49,0.0 +13764,48,12.75,28,0.0 +13764,6,25,42,0.0 +13764,25,14,11,0.0 +13764,43,46,3,0.0 +13764,68,12.5,10,0.0 +13765,34,14,21,0.0 +13765,76,18,35,0.0 +13765,35,18,46,0.0 +13765,72,34.8,25,0.0 +13765,24,4.5,39,0.0 +13765,3,10,1,0.0 +13765,49,20,2,0.0 +13765,6,25,15,0.0 +13765,77,13,20,0.0 +13765,65,21.05,39,0.0 +13765,64,33.25,26,0.0 +13765,47,9.5,29,0.0 +13765,56,38,10,0.0 +13765,7,30,38,0.0 +13765,4,22,33,0.0 +13765,61,28.5,35,0.0 +13765,53,32.8,48,0.0 +13765,38,263.5,39,0.0 +13765,21,10,9,0.0 +13765,55,24,36,0.0 +13765,15,15.5,25,0.0 +13766,77,13,44,0.0 +13766,67,14,43,0.0 +13766,51,53,49,0.0 +13766,71,21.5,20,0.0 +13766,22,21,30,0.0 +13766,34,14,5,0.0 +13766,49,20,6,0.0 +13766,20,81,28,0.0 +13766,43,46,34,0.0 +13766,74,10,43,0.0 +13766,13,6,14,0.0 +13766,12,38,36,0.0 +13766,60,34,12,0.0 +13766,17,39,19,0.0 +13766,39,18,5,0.0 +13766,57,19.5,33,0.0 +13766,36,19,14,0.0 +13766,70,15,1,0.0 +13766,3,10,38,0.0 +13766,59,55,25,0.0 +13766,38,263.5,16,0.0 +13767,60,34,7,0.0 +13767,4,22,2,0.0 +13767,69,36,24,0.0 +13767,35,18,41,0.0 +13767,67,14,44,0.0 +13767,16,17.45,48,0.0 +13767,54,7.45,6,0.0 +13767,64,33.25,32,0.0 +13767,72,34.8,36,0.0 +13767,70,15,49,0.0 +13767,36,19,29,0.0 +13767,50,16.25,18,0.0 +13767,1,18,50,0.0 +13767,21,10,15,0.0 +13767,77,13,24,0.0 +13767,57,19.5,13,0.0 +13767,45,9.5,5,0.0 +13767,25,14,16,0.0 +13767,9,97,2,0.0 +13767,75,7.75,49,0.0 +13767,23,9,43,0.0 +13767,14,23.25,27,0.0 +13768,32,32,14,0.0 +13768,43,46,9,0.0 +13768,41,9.65,36,0.0 +13768,50,16.25,11,0.0 +13768,22,21,49,0.0 +13768,20,81,43,0.0 +13768,63,43.9,30,0.0 +13768,37,26,36,0.0 +13768,38,263.5,2,0.0 +13768,24,4.5,19,0.0 +13768,48,12.75,19,0.0 +13768,62,49.3,45,0.0 +13768,7,30,18,0.0 +13768,44,19.45,13,0.0 +13768,71,21.5,27,0.0 +13768,75,7.75,31,0.0 +13768,66,17,11,0.0 +13768,61,28.5,1,0.0 +13768,36,19,18,0.0 +13768,9,97,18,0.0 +13768,65,21.05,49,0.0 +13768,5,21.35,36,0.0 +13768,35,18,13,0.0 +13768,31,12.5,13,0.0 +13768,40,18.4,31,0.0 +13768,46,12,36,0.0 +13768,77,13,49,0.0 +13768,54,7.45,12,0.0 +13768,26,31.23,46,0.0 +13768,27,43.9,49,0.0 +13768,45,9.5,31,0.0 +13768,73,15,28,0.0 +13768,51,53,22,0.0 +13768,33,2.5,18,0.0 +13768,28,45.6,42,0.0 +13768,70,15,5,0.0 +13768,25,14,31,0.0 +13768,56,38,5,0.0 +13768,72,34.8,48,0.0 +13768,47,9.5,32,0.0 +13768,68,12.5,7,0.0 +13768,52,7,49,0.0 +13768,67,14,4,0.0 +13768,64,33.25,38,0.0 +13768,60,34,48,0.0 +13768,16,17.45,39,0.0 +13768,21,10,32,0.0 +13768,15,15.5,8,0.0 +13768,4,22,33,0.0 +13768,12,38,9,0.0 +13768,76,18,16,0.0 +13768,19,9.2,29,0.0 +13768,59,55,22,0.0 +13768,2,19,24,0.0 +13768,39,18,23,0.0 +13768,13,6,5,0.0 +13768,49,20,24,0.0 +13768,30,25.89,9,0.0 +13768,10,31,37,0.0 +13768,34,14,15,0.0 +13768,29,123.79,40,0.0 +13768,14,23.25,33,0.0 +13768,57,19.5,22,0.0 +13768,74,10,5,0.0 +13768,6,25,13,0.0 +13768,42,14,20,0.0 +13768,18,62.5,30,0.0 +13768,53,32.8,29,0.0 +13768,17,39,19,0.0 +13768,55,24,34,0.0 +13768,8,40,12,0.0 +13768,1,18,20,0.0 +13768,11,21,25,0.0 +13769,59,55,30,0.0 +13769,9,97,9,0.0 +13769,31,12.5,50,0.0 +13769,58,13.25,19,0.0 +13769,69,36,22,0.0 +13769,57,19.5,23,0.0 +13769,45,9.5,32,0.0 +13769,12,38,32,0.0 +13769,32,32,39,0.0 +13769,29,123.79,2,0.0 +13769,65,21.05,11,0.0 +13769,19,9.2,15,0.0 +13769,2,19,29,0.0 +13769,30,25.89,6,0.0 +13769,60,34,29,0.0 +13769,54,7.45,20,0.0 +13769,42,14,43,0.0 +13769,47,9.5,45,0.0 +13769,63,43.9,6,0.0 +13769,17,39,26,0.0 +13769,7,30,6,0.0 +13769,35,18,48,0.0 +13769,74,10,38,0.0 +13769,6,25,28,0.0 +13770,75,7.75,37,0.0 +13770,60,34,32,0.0 +13770,43,46,14,0.0 +13770,71,21.5,28,0.0 +13770,48,12.75,14,0.0 +13770,17,39,14,0.0 +13770,28,45.6,25,0.0 +13770,2,19,15,0.0 +13770,52,7,10,0.0 +13770,8,40,12,0.0 +13770,20,81,15,0.0 +13770,12,38,24,0.0 +13770,38,263.5,6,0.0 +13770,11,21,29,0.0 +13770,25,14,43,0.0 +13770,29,123.79,11,0.0 +13770,45,9.5,44,0.0 +13770,73,15,45,0.0 +13770,40,18.4,13,0.0 +13770,72,34.8,23,0.0 +13770,44,19.45,41,0.0 +13770,7,30,14,0.0 +13770,5,21.35,41,0.0 +13770,51,53,15,0.0 +13770,15,15.5,44,0.0 +13770,6,25,18,0.0 +13770,13,6,12,0.0 +13770,42,14,18,0.0 +13770,55,24,28,0.0 +13770,46,12,28,0.0 +13770,27,43.9,41,0.0 +13770,65,21.05,15,0.0 +13770,41,9.65,14,0.0 +13770,3,10,21,0.0 +13770,22,21,9,0.0 +13770,62,49.3,43,0.0 +13770,14,23.25,25,0.0 +13770,61,28.5,34,0.0 +13770,56,38,47,0.0 +13770,35,18,1,0.0 +13770,10,31,43,0.0 +13770,19,9.2,25,0.0 +13770,67,14,10,0.0 +13770,68,12.5,28,0.0 +13770,76,18,15,0.0 +13770,50,16.25,18,0.0 +13770,58,13.25,49,0.0 +13770,18,62.5,36,0.0 +13770,26,31.23,20,0.0 +13770,33,2.5,39,0.0 +13770,30,25.89,37,0.0 +13770,32,32,27,0.0 +13770,16,17.45,40,0.0 +13770,59,55,16,0.0 +13770,74,10,38,0.0 +13770,53,32.8,48,0.0 +13770,47,9.5,12,0.0 +13770,1,18,25,0.0 +13770,36,19,49,0.0 +13770,24,4.5,10,0.0 +13770,66,17,23,0.0 +13770,49,20,36,0.0 +13770,70,15,32,0.0 +13771,59,55,4,0.0 +13771,1,18,49,0.0 +13771,76,18,41,0.0 +13771,42,14,4,0.0 +13771,37,26,30,0.0 +13771,71,21.5,29,0.0 +13771,29,123.79,16,0.0 +13771,57,19.5,4,0.0 +13771,19,9.2,46,0.0 +13771,73,15,12,0.0 +13771,45,9.5,19,0.0 +13771,56,38,48,0.0 +13771,40,18.4,18,0.0 +13771,18,62.5,50,0.0 +13771,70,15,24,0.0 +13771,4,22,22,0.0 +13771,39,18,18,0.0 +13771,23,9,33,0.0 +13771,10,31,17,0.0 +13771,46,12,20,0.0 +13771,27,43.9,41,0.0 +13771,13,6,16,0.0 +13771,61,28.5,13,0.0 +13771,33,2.5,29,0.0 +13771,9,97,47,0.0 +13771,3,10,22,0.0 +13771,65,21.05,45,0.0 +13771,11,21,49,0.0 +13771,2,19,48,0.0 +13771,74,10,24,0.0 +13771,43,46,16,0.0 +13771,60,34,4,0.0 +13771,38,263.5,31,0.0 +13771,12,38,13,0.0 +13771,67,14,37,0.0 +13771,24,4.5,23,0.0 +13771,30,25.89,13,0.0 +13771,15,15.5,33,0.0 +13771,31,12.5,10,0.0 +13771,50,16.25,47,0.0 +13771,64,33.25,24,0.0 +13771,21,10,35,0.0 +13771,66,17,44,0.0 +13771,35,18,42,0.0 +13771,7,30,36,0.0 +13771,75,7.75,38,0.0 +13771,52,7,1,0.0 +13771,6,25,49,0.0 +13771,53,32.8,6,0.0 +13771,54,7.45,15,0.0 +13771,16,17.45,18,0.0 +13771,32,32,20,0.0 +13771,41,9.65,39,0.0 +13771,20,81,50,0.0 +13771,63,43.9,22,0.0 +13771,62,49.3,36,0.0 +13771,34,14,7,0.0 +13771,47,9.5,4,0.0 +13771,22,21,34,0.0 +13771,25,14,22,0.0 +13771,51,53,3,0.0 +13772,32,32,26,0.0 +13772,40,18.4,49,0.0 +13772,19,9.2,35,0.0 +13772,41,9.65,9,0.0 +13772,37,26,44,0.0 +13772,2,19,30,0.0 +13772,58,13.25,23,0.0 +13772,62,49.3,32,0.0 +13772,55,24,33,0.0 +13772,28,45.6,47,0.0 +13772,1,18,11,0.0 +13772,51,53,36,0.0 +13772,67,14,3,0.0 +13772,25,14,5,0.0 +13772,38,263.5,30,0.0 +13772,46,12,47,0.0 +13772,36,19,10,0.0 +13772,13,6,8,0.0 +13772,47,9.5,18,0.0 +13772,29,123.79,30,0.0 +13772,60,34,29,0.0 +13772,49,20,18,0.0 +13772,24,4.5,48,0.0 +13772,76,18,24,0.0 +13772,4,22,23,0.0 +13773,12,38,24,0.0 +13773,69,36,20,0.0 +13773,50,16.25,20,0.0 +13773,3,10,32,0.0 +13773,68,12.5,27,0.0 +13773,35,18,42,0.0 +13773,71,21.5,22,0.0 +13773,55,24,33,0.0 +13773,14,23.25,23,0.0 +13773,1,18,44,0.0 +13773,6,25,49,0.0 +13773,65,21.05,31,0.0 +13773,64,33.25,40,0.0 +13773,24,4.5,49,0.0 +13773,32,32,35,0.0 +13773,18,62.5,43,0.0 +13773,43,46,45,0.0 +13773,61,28.5,47,0.0 +13773,47,9.5,16,0.0 +13773,66,17,8,0.0 +13773,29,123.79,9,0.0 +13773,56,38,43,0.0 +13773,57,19.5,26,0.0 +13773,42,14,10,0.0 +13773,53,32.8,32,0.0 +13773,44,19.45,7,0.0 +13773,38,263.5,31,0.0 +13773,34,14,28,0.0 +13773,40,18.4,50,0.0 +13773,11,21,15,0.0 +13773,72,34.8,28,0.0 +13773,20,81,8,0.0 +13773,10,31,5,0.0 +13773,22,21,50,0.0 +13773,21,10,47,0.0 +13773,17,39,17,0.0 +13773,16,17.45,44,0.0 +13773,74,10,50,0.0 +13773,45,9.5,11,0.0 +13773,49,20,12,0.0 +13773,5,21.35,36,0.0 +13773,70,15,38,0.0 +13773,27,43.9,3,0.0 +13773,60,34,47,0.0 +13773,77,13,50,0.0 +13773,23,9,13,0.0 +13773,54,7.45,42,0.0 +13773,9,97,15,0.0 +13773,33,2.5,17,0.0 +13773,75,7.75,13,0.0 +13773,31,12.5,37,0.0 +13773,28,45.6,36,0.0 +13773,19,9.2,20,0.0 +13773,7,30,47,0.0 +13773,63,43.9,26,0.0 +13773,26,31.23,43,0.0 +13773,15,15.5,48,0.0 +13773,4,22,35,0.0 +13773,2,19,8,0.0 +13773,13,6,38,0.0 +13774,19,9.2,42,0.0 +13774,72,34.8,13,0.0 +13774,17,39,9,0.0 +13774,71,21.5,26,0.0 +13774,63,43.9,48,0.0 +13774,52,7,35,0.0 +13774,34,14,15,0.0 +13774,39,18,40,0.0 +13774,7,30,28,0.0 +13774,41,9.65,9,0.0 +13774,64,33.25,44,0.0 +13774,42,14,5,0.0 +13774,24,4.5,50,0.0 +13774,22,21,45,0.0 +13774,15,15.5,15,0.0 +13774,77,13,8,0.0 +13774,66,17,7,0.0 +13774,69,36,7,0.0 +13774,54,7.45,38,0.0 +13774,6,25,3,0.0 +13774,20,81,17,0.0 +13774,1,18,39,0.0 +13774,67,14,43,0.0 +13774,58,13.25,40,0.0 +13774,62,49.3,29,0.0 +13774,60,34,28,0.0 +13774,21,10,3,0.0 +13774,10,31,16,0.0 +13774,40,18.4,7,0.0 +13774,55,24,1,0.0 +13774,51,53,30,0.0 +13774,12,38,25,0.0 +13774,9,97,45,0.0 +13774,47,9.5,13,0.0 +13774,70,15,29,0.0 +13774,38,263.5,2,0.0 +13774,73,15,4,0.0 +13775,46,12,39,0.0 +13775,44,19.45,45,0.0 +13775,5,21.35,39,0.0 +13775,39,18,3,0.0 +13775,52,7,2,0.0 +13775,54,7.45,41,0.0 +13775,73,15,5,0.0 +13776,54,7.45,30,0.0 +13776,7,30,36,0.0 +13776,77,13,29,0.0 +13776,21,10,9,0.0 +13776,16,17.45,12,0.0 +13776,31,12.5,5,0.0 +13776,19,9.2,25,0.0 +13776,11,21,22,0.0 +13776,72,34.8,49,0.0 +13776,48,12.75,12,0.0 +13776,36,19,18,0.0 +13776,70,15,49,0.0 +13776,30,25.89,8,0.0 +13776,6,25,1,0.0 +13776,17,39,29,0.0 +13776,62,49.3,7,0.0 +13776,47,9.5,28,0.0 +13776,55,24,41,0.0 +13776,73,15,20,0.0 +13776,46,12,12,0.0 +13776,65,21.05,20,0.0 +13776,76,18,47,0.0 +13776,33,2.5,50,0.0 +13776,64,33.25,20,0.0 +13776,18,62.5,29,0.0 +13776,68,12.5,22,0.0 +13776,61,28.5,40,0.0 +13776,22,21,11,0.0 +13776,42,14,4,0.0 +13776,49,20,28,0.0 +13776,13,6,16,0.0 +13776,44,19.45,29,0.0 +13776,53,32.8,12,0.0 +13776,56,38,21,0.0 +13776,5,21.35,43,0.0 +13776,41,9.65,23,0.0 +13776,38,263.5,26,0.0 +13776,4,22,15,0.0 +13776,40,18.4,34,0.0 +13776,10,31,12,0.0 +13776,37,26,27,0.0 +13776,58,13.25,41,0.0 +13776,26,31.23,26,0.0 +13776,43,46,17,0.0 +13776,3,10,35,0.0 +13776,52,7,12,0.0 +13777,1,18,48,0.0 +13777,59,55,42,0.0 +13777,16,17.45,31,0.0 +13777,73,15,17,0.0 +13777,12,38,27,0.0 +13777,40,18.4,37,0.0 +13777,8,40,41,0.0 +13777,51,53,36,0.0 +13777,9,97,31,0.0 +13777,18,62.5,2,0.0 +13777,74,10,49,0.0 +13777,21,10,10,0.0 +13777,30,25.89,47,0.0 +13777,56,38,22,0.0 +13777,15,15.5,12,0.0 +13777,10,31,42,0.0 +13777,50,16.25,26,0.0 +13777,61,28.5,50,0.0 +13777,71,21.5,44,0.0 +13777,23,9,40,0.0 +13777,37,26,16,0.0 +13777,60,34,15,0.0 +13777,49,20,1,0.0 +13777,13,6,25,0.0 +13777,48,12.75,49,0.0 +13777,69,36,1,0.0 +13777,76,18,6,0.0 +13777,3,10,11,0.0 +13777,67,14,34,0.0 +13777,66,17,15,0.0 +13777,26,31.23,3,0.0 +13777,42,14,35,0.0 +13777,35,18,44,0.0 +13777,7,30,14,0.0 +13777,34,14,18,0.0 +13777,70,15,13,0.0 +13777,36,19,37,0.0 +13777,46,12,32,0.0 +13777,62,49.3,24,0.0 +13777,64,33.25,21,0.0 +13777,31,12.5,17,0.0 +13777,22,21,31,0.0 +13777,77,13,36,0.0 +13777,5,21.35,24,0.0 +13777,39,18,3,0.0 +13777,24,4.5,15,0.0 +13778,28,45.6,11,0.0 +13778,64,33.25,44,0.0 +13778,70,15,26,0.0 +13778,33,2.5,5,0.0 +13778,63,43.9,19,0.0 +13778,49,20,2,0.0 +13778,61,28.5,18,0.0 +13778,11,21,10,0.0 +13778,57,19.5,25,0.0 +13778,23,9,5,0.0 +13778,66,17,26,0.0 +13778,21,10,21,0.0 +13778,1,18,9,0.0 +13778,56,38,45,0.0 +13778,40,18.4,24,0.0 +13778,72,34.8,48,0.0 +13778,25,14,5,0.0 +13778,41,9.65,17,0.0 +13778,53,32.8,45,0.0 +13778,46,12,30,0.0 +13778,6,25,41,0.0 +13778,4,22,47,0.0 +13778,10,31,8,0.0 +13778,35,18,6,0.0 +13778,22,21,21,0.0 +13778,32,32,28,0.0 +13778,20,81,2,0.0 +13778,15,15.5,27,0.0 +13778,24,4.5,42,0.0 +13778,75,7.75,19,0.0 +13778,48,12.75,39,0.0 +13778,5,21.35,22,0.0 +13778,30,25.89,12,0.0 +13778,31,12.5,2,0.0 +13778,29,123.79,15,0.0 +13778,36,19,3,0.0 +13778,77,13,14,0.0 +13778,47,9.5,27,0.0 +13778,34,14,12,0.0 +13778,51,53,32,0.0 +13778,16,17.45,17,0.0 +13778,39,18,22,0.0 +13778,8,40,45,0.0 +13778,12,38,29,0.0 +13778,69,36,12,0.0 +13778,9,97,37,0.0 +13778,52,7,19,0.0 +13778,43,46,49,0.0 +13778,73,15,10,0.0 +13778,18,62.5,29,0.0 +13778,62,49.3,4,0.0 +13778,45,9.5,32,0.0 +13778,76,18,25,0.0 +13778,7,30,40,0.0 +13778,55,24,34,0.0 +13778,3,10,48,0.0 +13778,14,23.25,28,0.0 +13778,68,12.5,32,0.0 +13778,71,21.5,48,0.0 +13778,37,26,36,0.0 +13778,50,16.25,38,0.0 +13778,58,13.25,32,0.0 +13778,67,14,14,0.0 +13778,2,19,38,0.0 +13778,44,19.45,26,0.0 +13778,26,31.23,19,0.0 +13778,74,10,7,0.0 +13778,42,14,15,0.0 +13778,54,7.45,6,0.0 +13778,17,39,34,0.0 +13778,19,9.2,17,0.0 +13778,27,43.9,40,0.0 +13779,32,32,31,0.0 +13779,13,6,1,0.0 +13779,8,40,50,0.0 +13779,37,26,21,0.0 +13779,63,43.9,20,0.0 +13779,51,53,17,0.0 +13779,64,33.25,19,0.0 +13779,14,23.25,38,0.0 +13779,12,38,41,0.0 +13779,21,10,32,0.0 +13779,50,16.25,6,0.0 +13779,39,18,25,0.0 +13779,70,15,13,0.0 +13779,67,14,12,0.0 +13779,35,18,11,0.0 +13779,5,21.35,10,0.0 +13779,66,17,21,0.0 +13779,17,39,3,0.0 +13779,55,24,35,0.0 +13779,73,15,25,0.0 +13779,76,18,7,0.0 +13779,10,31,22,0.0 +13779,22,21,13,0.0 +13779,44,19.45,1,0.0 +13779,59,55,39,0.0 +13779,28,45.6,29,0.0 +13779,46,12,43,0.0 +13779,58,13.25,48,0.0 +13779,71,21.5,22,0.0 +13779,27,43.9,32,0.0 +13779,19,9.2,21,0.0 +13779,1,18,7,0.0 +13779,42,14,35,0.0 +13779,54,7.45,13,0.0 +13779,61,28.5,5,0.0 +13779,41,9.65,17,0.0 +13779,68,12.5,22,0.0 +13779,49,20,18,0.0 +13779,4,22,20,0.0 +13779,3,10,14,0.0 +13779,56,38,18,0.0 +13779,48,12.75,37,0.0 +13779,57,19.5,1,0.0 +13779,16,17.45,37,0.0 +13779,36,19,18,0.0 +13779,11,21,26,0.0 +13779,45,9.5,12,0.0 +13779,60,34,20,0.0 +13779,33,2.5,2,0.0 +13779,34,14,10,0.0 +13779,24,4.5,45,0.0 +13779,7,30,49,0.0 +13779,62,49.3,2,0.0 +13779,74,10,39,0.0 +13779,65,21.05,14,0.0 +13779,77,13,2,0.0 +13779,20,81,12,0.0 +13779,47,9.5,46,0.0 +13779,18,62.5,39,0.0 +13779,6,25,14,0.0 +13779,2,19,32,0.0 +13779,40,18.4,39,0.0 +13780,44,19.45,46,0.0 +13780,22,21,41,0.0 +13780,62,49.3,10,0.0 +13780,15,15.5,15,0.0 +13780,14,23.25,49,0.0 +13780,31,12.5,5,0.0 +13780,6,25,3,0.0 +13780,41,9.65,30,0.0 +13780,27,43.9,6,0.0 +13780,69,36,35,0.0 +13780,37,26,25,0.0 +13780,25,14,38,0.0 +13780,2,19,49,0.0 +13780,49,20,24,0.0 +13780,55,24,15,0.0 +13780,38,263.5,34,0.0 +13780,3,10,39,0.0 +13780,52,7,19,0.0 +13780,8,40,21,0.0 +13780,23,9,20,0.0 +13780,73,15,40,0.0 +13780,36,19,20,0.0 +13780,48,12.75,29,0.0 +13780,60,34,1,0.0 +13780,76,18,43,0.0 +13780,9,97,26,0.0 +13780,33,2.5,6,0.0 +13780,40,18.4,37,0.0 +13780,43,46,35,0.0 +13780,71,21.5,19,0.0 +13780,16,17.45,19,0.0 +13780,56,38,15,0.0 +13780,70,15,50,0.0 +13780,1,18,48,0.0 +13780,32,32,16,0.0 +13780,5,21.35,29,0.0 +13780,42,14,34,0.0 +13780,7,30,32,0.0 +13780,77,13,13,0.0 +13780,50,16.25,42,0.0 +13780,61,28.5,48,0.0 +13780,10,31,18,0.0 +13780,72,34.8,18,0.0 +13780,46,12,20,0.0 +13780,47,9.5,40,0.0 +13780,17,39,49,0.0 +13780,54,7.45,22,0.0 +13780,34,14,31,0.0 +13780,58,13.25,4,0.0 +13780,20,81,44,0.0 +13780,66,17,10,0.0 +13780,64,33.25,24,0.0 +13780,45,9.5,1,0.0 +13780,19,9.2,22,0.0 +13780,13,6,35,0.0 +13780,24,4.5,37,0.0 +13780,75,7.75,45,0.0 +13780,4,22,43,0.0 +13780,30,25.89,47,0.0 +13780,74,10,17,0.0 +13780,35,18,42,0.0 +13780,68,12.5,34,0.0 +13780,29,123.79,48,0.0 +13780,65,21.05,16,0.0 +13781,61,28.5,45,0.0 +13781,6,25,39,0.0 +13781,38,263.5,48,0.0 +13781,22,21,1,0.0 +13781,58,13.25,39,0.0 +13781,63,43.9,31,0.0 +13781,18,62.5,15,0.0 +13781,33,2.5,33,0.0 +13781,31,12.5,17,0.0 +13781,48,12.75,10,0.0 +13781,50,16.25,28,0.0 +13781,10,31,4,0.0 +13781,9,97,8,0.0 +13781,20,81,38,0.0 +13781,43,46,32,0.0 +13781,39,18,26,0.0 +13781,41,9.65,38,0.0 +13781,3,10,6,0.0 +13781,37,26,30,0.0 +13781,28,45.6,22,0.0 +13781,68,12.5,17,0.0 +13781,51,53,46,0.0 +13781,70,15,23,0.0 +13781,36,19,20,0.0 +13781,19,9.2,33,0.0 +13781,32,32,3,0.0 +13781,2,19,42,0.0 +13781,74,10,4,0.0 +13781,75,7.75,34,0.0 +13781,13,6,41,0.0 +13781,14,23.25,18,0.0 +13781,57,19.5,43,0.0 +13781,65,21.05,8,0.0 +13781,7,30,7,0.0 +13781,56,38,18,0.0 +13781,64,33.25,39,0.0 +13781,4,22,35,0.0 +13781,34,14,26,0.0 +13781,42,14,21,0.0 +13781,77,13,49,0.0 +13781,15,15.5,15,0.0 +13781,72,34.8,14,0.0 +13781,55,24,29,0.0 +13781,11,21,34,0.0 +13781,17,39,3,0.0 +13781,54,7.45,13,0.0 +13781,12,38,33,0.0 +13781,44,19.45,37,0.0 +13781,5,21.35,36,0.0 +13781,8,40,32,0.0 +13781,27,43.9,5,0.0 +13781,73,15,27,0.0 +13781,76,18,49,0.0 +13781,29,123.79,21,0.0 +13782,4,22,17,0.0 +13782,21,10,19,0.0 +13782,72,34.8,39,0.0 +13782,37,26,37,0.0 +13782,41,9.65,44,0.0 +13782,12,38,44,0.0 +13782,33,2.5,21,0.0 +13782,63,43.9,43,0.0 +13782,38,263.5,17,0.0 +13782,49,20,2,0.0 +13782,55,24,18,0.0 +13782,71,21.5,1,0.0 +13782,45,9.5,19,0.0 +13782,7,30,9,0.0 +13782,47,9.5,50,0.0 +13782,31,12.5,8,0.0 +13782,54,7.45,3,0.0 +13782,34,14,1,0.0 +13782,18,62.5,39,0.0 +13782,52,7,23,0.0 +13782,77,13,5,0.0 +13782,23,9,11,0.0 +13782,14,23.25,22,0.0 +13782,43,46,31,0.0 +13782,22,21,4,0.0 +13782,69,36,8,0.0 +13782,53,32.8,50,0.0 +13782,46,12,27,0.0 +13782,40,18.4,16,0.0 +13782,75,7.75,32,0.0 +13782,29,123.79,48,0.0 +13782,26,31.23,35,0.0 +13782,13,6,16,0.0 +13782,50,16.25,50,0.0 +13782,15,15.5,8,0.0 +13782,20,81,3,0.0 +13782,66,17,20,0.0 +13782,74,10,47,0.0 +13782,28,45.6,36,0.0 +13782,8,40,22,0.0 +13782,25,14,50,0.0 +13782,56,38,41,0.0 +13782,3,10,46,0.0 +13782,35,18,37,0.0 +13782,32,32,41,0.0 +13782,70,15,50,0.0 +13782,58,13.25,20,0.0 +13782,67,14,13,0.0 +13782,39,18,40,0.0 +13782,6,25,32,0.0 +13782,17,39,27,0.0 +13782,73,15,47,0.0 +13782,5,21.35,47,0.0 +13782,36,19,3,0.0 +13782,64,33.25,40,0.0 +13782,16,17.45,39,0.0 +13782,27,43.9,10,0.0 +13782,44,19.45,47,0.0 +13782,61,28.5,1,0.0 +13782,1,18,12,0.0 +13782,2,19,16,0.0 +13782,48,12.75,15,0.0 +13782,68,12.5,37,0.0 +13782,59,55,38,0.0 +13782,51,53,46,0.0 +13782,42,14,4,0.0 +13782,9,97,31,0.0 +13782,10,31,16,0.0 +13782,62,49.3,19,0.0 +13782,76,18,36,0.0 +13783,60,34,12,0.0 +13783,71,21.5,16,0.0 +13783,18,62.5,6,0.0 +13783,51,53,23,0.0 +13783,61,28.5,14,0.0 +13783,2,19,29,0.0 +13783,25,14,29,0.0 +13783,34,14,42,0.0 +13783,16,17.45,20,0.0 +13783,59,55,7,0.0 +13783,38,263.5,3,0.0 +13783,32,32,40,0.0 +13783,53,32.8,17,0.0 +13783,13,6,6,0.0 +13783,43,46,23,0.0 +13783,14,23.25,34,0.0 +13783,54,7.45,28,0.0 +13783,67,14,2,0.0 +13783,64,33.25,31,0.0 +13783,77,13,16,0.0 +13783,11,21,10,0.0 +13783,12,38,23,0.0 +13783,68,12.5,34,0.0 +13783,36,19,3,0.0 +13783,15,15.5,10,0.0 +13783,52,7,15,0.0 +13783,39,18,27,0.0 +13783,26,31.23,47,0.0 +13783,28,45.6,1,0.0 +13783,19,9.2,16,0.0 +13783,63,43.9,29,0.0 +13783,49,20,8,0.0 +13783,30,25.89,43,0.0 +13783,50,16.25,47,0.0 +13783,44,19.45,7,0.0 +13783,8,40,9,0.0 +13783,48,12.75,4,0.0 +13783,17,39,32,0.0 +13783,20,81,33,0.0 +13783,9,97,39,0.0 +13783,46,12,24,0.0 +13783,35,18,30,0.0 +13783,6,25,28,0.0 +13784,40,18.4,29,0.0 +13784,37,26,46,0.0 +13784,77,13,24,0.0 +13784,15,15.5,18,0.0 +13784,68,12.5,17,0.0 +13784,24,4.5,37,0.0 +13784,36,19,38,0.0 +13784,22,21,38,0.0 +13784,65,21.05,27,0.0 +13784,16,17.45,34,0.0 +13784,71,21.5,4,0.0 +13784,61,28.5,7,0.0 +13784,23,9,24,0.0 +13784,63,43.9,13,0.0 +13784,51,53,39,0.0 +13784,39,18,9,0.0 +13784,56,38,23,0.0 +13784,46,12,47,0.0 +13784,53,32.8,48,0.0 +13784,41,9.65,8,0.0 +13784,33,2.5,17,0.0 +13784,54,7.45,14,0.0 +13784,72,34.8,27,0.0 +13784,21,10,49,0.0 +13784,13,6,17,0.0 +13784,30,25.89,33,0.0 +13784,55,24,1,0.0 +13784,69,36,30,0.0 +13784,10,31,2,0.0 +13784,12,38,36,0.0 +13784,28,45.6,21,0.0 +13784,7,30,26,0.0 +13784,20,81,3,0.0 +13784,1,18,42,0.0 +13784,67,14,6,0.0 +13784,66,17,1,0.0 +13784,47,9.5,36,0.0 +13784,26,31.23,38,0.0 +13784,45,9.5,10,0.0 +13784,29,123.79,30,0.0 +13784,49,20,26,0.0 +13784,73,15,35,0.0 +13784,76,18,42,0.0 +13784,35,18,10,0.0 +13784,34,14,40,0.0 +13784,31,12.5,42,0.0 +13784,18,62.5,9,0.0 +13785,72,34.8,17,0.0 +13785,47,9.5,38,0.0 +13785,50,16.25,19,0.0 +13785,51,53,15,0.0 +13785,34,14,3,0.0 +13785,7,30,28,0.0 +13785,76,18,9,0.0 +13785,58,13.25,45,0.0 +13785,20,81,1,0.0 +13785,15,15.5,30,0.0 +13785,2,19,29,0.0 +13785,53,32.8,35,0.0 +13785,73,15,24,0.0 +13785,40,18.4,19,0.0 +13785,28,45.6,8,0.0 +13785,27,43.9,24,0.0 +13785,8,40,8,0.0 +13785,63,43.9,50,0.0 +13785,61,28.5,15,0.0 +13785,57,19.5,23,0.0 +13785,74,10,45,0.0 +13785,10,31,48,0.0 +13785,32,32,21,0.0 +13785,65,21.05,30,0.0 +13785,62,49.3,46,0.0 +13785,60,34,39,0.0 +13785,71,21.5,9,0.0 +13785,21,10,12,0.0 +13786,72,34.8,20,0.0 +13786,69,36,27,0.0 +13786,55,24,25,0.0 +13786,58,13.25,10,0.0 +13786,13,6,9,0.0 +13786,59,55,16,0.0 +13786,68,12.5,16,0.0 +13786,44,19.45,37,0.0 +13786,35,18,10,0.0 +13786,5,21.35,17,0.0 +13786,26,31.23,35,0.0 +13786,31,12.5,21,0.0 +13786,36,19,35,0.0 +13786,52,7,19,0.0 +13786,46,12,49,0.0 +13786,34,14,47,0.0 +13786,4,22,15,0.0 +13786,37,26,9,0.0 +13786,6,25,23,0.0 +13786,2,19,40,0.0 +13786,10,31,29,0.0 +13786,7,30,34,0.0 +13786,29,123.79,26,0.0 +13786,8,40,26,0.0 +13786,66,17,40,0.0 +13786,41,9.65,10,0.0 +13786,51,53,8,0.0 +13786,28,45.6,39,0.0 +13786,9,97,20,0.0 +13786,62,49.3,27,0.0 +13786,33,2.5,26,0.0 +13786,53,32.8,26,0.0 +13786,38,263.5,32,0.0 +13786,23,9,49,0.0 +13786,48,12.75,23,0.0 +13786,3,10,38,0.0 +13786,56,38,7,0.0 +13787,25,14,44,0.0 +13787,48,12.75,8,0.0 +13787,53,32.8,44,0.0 +13787,69,36,42,0.0 +13787,13,6,49,0.0 +13787,3,10,5,0.0 +13787,57,19.5,40,0.0 +13787,11,21,40,0.0 +13787,40,18.4,22,0.0 +13787,61,28.5,20,0.0 +13787,73,15,23,0.0 +13787,37,26,14,0.0 +13787,15,15.5,43,0.0 +13787,41,9.65,28,0.0 +13787,42,14,50,0.0 +13787,59,55,5,0.0 +13787,77,13,45,0.0 +13787,50,16.25,23,0.0 +13787,2,19,11,0.0 +13787,47,9.5,16,0.0 +13787,21,10,9,0.0 +13787,1,18,24,0.0 +13787,32,32,46,0.0 +13787,38,263.5,36,0.0 +13787,27,43.9,23,0.0 +13787,49,20,27,0.0 +13787,60,34,47,0.0 +13787,35,18,24,0.0 +13787,8,40,40,0.0 +13787,64,33.25,17,0.0 +13787,6,25,38,0.0 +13787,16,17.45,26,0.0 +13787,54,7.45,23,0.0 +13787,67,14,35,0.0 +13787,75,7.75,34,0.0 +13787,5,21.35,47,0.0 +13787,30,25.89,11,0.0 +13787,33,2.5,27,0.0 +13787,29,123.79,20,0.0 +13787,9,97,27,0.0 +13787,68,12.5,18,0.0 +13787,31,12.5,36,0.0 +13787,63,43.9,31,0.0 +13787,10,31,23,0.0 +13787,28,45.6,8,0.0 +13787,56,38,25,0.0 +13787,45,9.5,47,0.0 +13787,14,23.25,41,0.0 +13787,36,19,49,0.0 +13787,24,4.5,18,0.0 +13787,17,39,24,0.0 +13787,4,22,4,0.0 +13787,65,21.05,26,0.0 +13788,15,15.5,35,0.0 +13788,43,46,8,0.0 +13788,40,18.4,42,0.0 +13788,26,31.23,22,0.0 +13788,10,31,28,0.0 +13788,38,263.5,40,0.0 +13788,45,9.5,3,0.0 +13789,39,18,28,0.0 +13789,31,12.5,26,0.0 +13789,33,2.5,42,0.0 +13789,65,21.05,49,0.0 +13789,62,49.3,22,0.0 +13789,18,62.5,1,0.0 +13789,12,38,13,0.0 +13789,7,30,43,0.0 +13789,77,13,9,0.0 +13789,61,28.5,50,0.0 +13789,46,12,45,0.0 +13789,54,7.45,48,0.0 +13789,58,13.25,22,0.0 +13789,43,46,46,0.0 +13789,5,21.35,3,0.0 +13789,14,23.25,30,0.0 +13789,42,14,9,0.0 +13789,29,123.79,45,0.0 +13789,27,43.9,48,0.0 +13789,32,32,41,0.0 +13789,70,15,3,0.0 +13789,38,263.5,32,0.0 +13789,47,9.5,23,0.0 +13789,1,18,25,0.0 +13789,45,9.5,15,0.0 +13789,6,25,9,0.0 +13789,76,18,13,0.0 +13789,50,16.25,15,0.0 +13789,17,39,6,0.0 +13789,64,33.25,7,0.0 +13789,3,10,3,0.0 +13789,68,12.5,34,0.0 +13789,19,9.2,9,0.0 +13789,60,34,8,0.0 +13789,35,18,13,0.0 +13789,24,4.5,42,0.0 +13789,26,31.23,11,0.0 +13789,49,20,40,0.0 +13789,72,34.8,2,0.0 +13789,44,19.45,17,0.0 +13789,41,9.65,46,0.0 +13789,9,97,40,0.0 +13789,56,38,50,0.0 +13789,74,10,44,0.0 +13789,66,17,19,0.0 +13789,36,19,44,0.0 +13789,75,7.75,23,0.0 +13789,55,24,44,0.0 +13789,67,14,29,0.0 +13789,21,10,45,0.0 +13789,73,15,34,0.0 +13789,13,6,8,0.0 +13789,11,21,1,0.0 +13789,10,31,10,0.0 +13789,40,18.4,13,0.0 +13789,57,19.5,38,0.0 +13789,20,81,14,0.0 +13789,23,9,11,0.0 +13789,48,12.75,6,0.0 +13789,34,14,34,0.0 +13789,8,40,44,0.0 +13789,71,21.5,36,0.0 +13789,2,19,12,0.0 +13789,16,17.45,1,0.0 +13789,51,53,41,0.0 +13790,22,21,8,0.0 +13790,48,12.75,2,0.0 +13790,61,28.5,37,0.0 +13790,77,13,24,0.0 +13790,18,62.5,18,0.0 +13790,60,34,1,0.0 +13790,71,21.5,50,0.0 +13790,74,10,15,0.0 +13790,26,31.23,28,0.0 +13790,47,9.5,8,0.0 +13790,6,25,41,0.0 +13790,67,14,18,0.0 +13790,49,20,1,0.0 +13790,72,34.8,30,0.0 +13790,9,97,32,0.0 +13790,34,14,1,0.0 +13790,13,6,39,0.0 +13790,12,38,48,0.0 +13790,57,19.5,36,0.0 +13790,63,43.9,21,0.0 +13790,52,7,19,0.0 +13790,17,39,40,0.0 +13790,32,32,11,0.0 +13790,5,21.35,43,0.0 +13790,53,32.8,17,0.0 +13790,37,26,30,0.0 +13791,65,21.05,48,0.0 +13791,13,6,18,0.0 +13791,50,16.25,20,0.0 +13791,57,19.5,43,0.0 +13791,56,38,10,0.0 +13791,2,19,27,0.0 +13791,64,33.25,24,0.0 +13791,31,12.5,47,0.0 +13791,42,14,24,0.0 +13791,69,36,4,0.0 +13791,59,55,42,0.0 +13791,49,20,40,0.0 +13791,70,15,3,0.0 +13791,47,9.5,4,0.0 +13791,26,31.23,14,0.0 +13791,61,28.5,49,0.0 +13791,8,40,2,0.0 +13791,52,7,46,0.0 +13791,22,21,47,0.0 +13791,20,81,32,0.0 +13791,68,12.5,27,0.0 +13791,55,24,50,0.0 +13791,77,13,42,0.0 +13791,25,14,10,0.0 +13791,33,2.5,34,0.0 +13791,28,45.6,16,0.0 +13791,18,62.5,47,0.0 +13791,48,12.75,12,0.0 +13791,71,21.5,2,0.0 +13791,73,15,24,0.0 +13791,46,12,21,0.0 +13791,41,9.65,31,0.0 +13791,53,32.8,46,0.0 +13791,24,4.5,44,0.0 +13791,12,38,18,0.0 +13791,21,10,43,0.0 +13791,54,7.45,22,0.0 +13791,17,39,26,0.0 +13791,11,21,26,0.0 +13791,15,15.5,11,0.0 +13791,66,17,42,0.0 +13791,23,9,15,0.0 +13791,14,23.25,40,0.0 +13791,40,18.4,29,0.0 +13791,30,25.89,33,0.0 +13791,4,22,9,0.0 +13791,38,263.5,23,0.0 +13791,1,18,21,0.0 +13791,3,10,50,0.0 +13791,9,97,10,0.0 +13791,62,49.3,28,0.0 +13791,67,14,19,0.0 +13791,44,19.45,19,0.0 +13791,76,18,43,0.0 +13791,27,43.9,24,0.0 +13792,35,18,15,0.0 +13792,47,9.5,17,0.0 +13792,10,31,28,0.0 +13792,72,34.8,31,0.0 +13792,50,16.25,31,0.0 +13792,20,81,3,0.0 +13792,70,15,40,0.0 +13792,11,21,35,0.0 +13792,18,62.5,48,0.0 +13792,25,14,22,0.0 +13792,62,49.3,25,0.0 +13792,64,33.25,42,0.0 +13792,3,10,38,0.0 +13792,33,2.5,5,0.0 +13792,55,24,26,0.0 +13792,45,9.5,44,0.0 +13792,68,12.5,4,0.0 +13792,22,21,19,0.0 +13792,19,9.2,21,0.0 +13792,61,28.5,9,0.0 +13792,59,55,32,0.0 +13792,38,263.5,50,0.0 +13792,32,32,24,0.0 +13792,39,18,50,0.0 +13792,23,9,49,0.0 +13792,65,21.05,35,0.0 +13792,51,53,24,0.0 +13792,16,17.45,22,0.0 +13792,6,25,4,0.0 +13792,76,18,33,0.0 +13792,46,12,14,0.0 +13792,41,9.65,21,0.0 +13792,2,19,3,0.0 +13792,1,18,6,0.0 +13792,36,19,21,0.0 +13792,13,6,21,0.0 +13792,44,19.45,20,0.0 +13792,14,23.25,12,0.0 +13792,56,38,6,0.0 +13792,58,13.25,27,0.0 +13792,67,14,2,0.0 +13792,24,4.5,44,0.0 +13792,17,39,10,0.0 +13792,66,17,10,0.0 +13792,40,18.4,1,0.0 +13792,57,19.5,41,0.0 +13792,48,12.75,24,0.0 +13792,60,34,47,0.0 +13792,29,123.79,29,0.0 +13792,42,14,7,0.0 +13792,53,32.8,3,0.0 +13792,37,26,21,0.0 +13792,21,10,23,0.0 +13792,15,15.5,16,0.0 +13792,49,20,5,0.0 +13792,7,30,28,0.0 +13792,28,45.6,44,0.0 +13792,71,21.5,13,0.0 +13792,8,40,22,0.0 +13792,5,21.35,23,0.0 +13792,75,7.75,7,0.0 +13792,12,38,29,0.0 +13792,69,36,18,0.0 +13792,63,43.9,15,0.0 +13792,26,31.23,34,0.0 +13792,31,12.5,17,0.0 +13792,74,10,37,0.0 +13792,34,14,21,0.0 +13792,77,13,9,0.0 +13792,4,22,39,0.0 +13792,30,25.89,39,0.0 +13792,27,43.9,50,0.0 +13792,54,7.45,48,0.0 +13792,43,46,39,0.0 +13792,52,7,17,0.0 +13792,9,97,4,0.0 +13792,73,15,9,0.0 +13793,4,22,4,0.0 +13793,56,38,29,0.0 +13793,75,7.75,27,0.0 +13793,14,23.25,38,0.0 +13793,7,30,16,0.0 +13793,6,25,50,0.0 +13793,26,31.23,23,0.0 +13793,10,31,1,0.0 +13793,11,21,19,0.0 +13793,43,46,39,0.0 +13793,38,263.5,31,0.0 +13793,24,4.5,7,0.0 +13793,65,21.05,2,0.0 +13794,49,20,43,0.0 +13794,62,49.3,22,0.0 +13794,28,45.6,12,0.0 +13794,47,9.5,8,0.0 +13794,1,18,1,0.0 +13794,8,40,50,0.0 +13794,41,9.65,46,0.0 +13795,63,43.9,20,0.0 +13795,6,25,3,0.0 +13795,1,18,1,0.0 +13795,73,15,9,0.0 +13795,40,18.4,50,0.0 +13795,48,12.75,48,0.0 +13795,35,18,49,0.0 +13795,18,62.5,20,0.0 +13795,17,39,1,0.0 +13795,77,13,23,0.0 +13795,72,34.8,20,0.0 +13795,50,16.25,38,0.0 +13795,43,46,50,0.0 +13795,52,7,17,0.0 +13795,62,49.3,23,0.0 +13795,47,9.5,49,0.0 +13795,3,10,4,0.0 +13795,39,18,26,0.0 +13795,33,2.5,11,0.0 +13795,28,45.6,26,0.0 +13795,54,7.45,28,0.0 +13795,69,36,38,0.0 +13795,56,38,19,0.0 +13795,26,31.23,12,0.0 +13796,18,62.5,42,0.0 +13796,40,18.4,47,0.0 +13796,36,19,17,0.0 +13796,71,21.5,26,0.0 +13796,34,14,36,0.0 +13796,51,53,46,0.0 +13796,60,34,49,0.0 +13796,27,43.9,11,0.0 +13796,50,16.25,24,0.0 +13796,61,28.5,4,0.0 +13796,38,263.5,22,0.0 +13796,70,15,15,0.0 +13796,53,32.8,37,0.0 +13796,44,19.45,43,0.0 +13796,48,12.75,37,0.0 +13796,5,21.35,6,0.0 +13796,2,19,43,0.0 +13796,47,9.5,20,0.0 +13796,37,26,13,0.0 +13796,6,25,1,0.0 +13796,56,38,12,0.0 +13796,52,7,24,0.0 +13796,59,55,17,0.0 +13796,30,25.89,33,0.0 +13796,32,32,33,0.0 +13796,66,17,40,0.0 +13796,77,13,21,0.0 +13796,33,2.5,44,0.0 +13796,73,15,37,0.0 +13796,64,33.25,33,0.0 +13796,74,10,36,0.0 +13796,55,24,5,0.0 +13796,21,10,23,0.0 +13796,26,31.23,23,0.0 +13796,65,21.05,41,0.0 +13796,13,6,4,0.0 +13796,54,7.45,2,0.0 +13796,25,14,30,0.0 +13796,15,15.5,48,0.0 +13796,39,18,41,0.0 +13796,75,7.75,2,0.0 +13796,49,20,49,0.0 +13796,1,18,47,0.0 +13796,69,36,40,0.0 +13796,63,43.9,35,0.0 +13796,62,49.3,39,0.0 +13796,31,12.5,34,0.0 +13796,16,17.45,41,0.0 +13796,43,46,22,0.0 +13796,23,9,1,0.0 +13796,7,30,35,0.0 +13796,10,31,31,0.0 +13796,41,9.65,13,0.0 +13796,14,23.25,35,0.0 +13796,12,38,5,0.0 +13796,8,40,34,0.0 +13796,20,81,3,0.0 +13796,68,12.5,40,0.0 +13796,67,14,27,0.0 +13796,3,10,13,0.0 +13796,9,97,27,0.0 +13796,29,123.79,25,0.0 +13796,42,14,3,0.0 +13796,22,21,10,0.0 +13796,72,34.8,40,0.0 +13796,58,13.25,39,0.0 +13796,45,9.5,30,0.0 +13796,19,9.2,19,0.0 +13796,17,39,10,0.0 +13796,4,22,9,0.0 +13796,57,19.5,9,0.0 +13796,35,18,50,0.0 +13796,11,21,5,0.0 +13796,46,12,23,0.0 +13797,52,7,33,0.0 +13797,38,263.5,1,0.0 +13797,51,53,25,0.0 +13797,68,12.5,10,0.0 +13797,46,12,37,0.0 +13797,30,25.89,16,0.0 +13797,4,22,50,0.0 +13797,70,15,37,0.0 +13797,9,97,10,0.0 +13797,35,18,16,0.0 +13797,54,7.45,46,0.0 +13797,75,7.75,30,0.0 +13797,22,21,39,0.0 +13797,40,18.4,22,0.0 +13797,27,43.9,49,0.0 +13797,3,10,10,0.0 +13797,29,123.79,38,0.0 +13797,67,14,30,0.0 +13797,20,81,4,0.0 +13797,69,36,44,0.0 +13797,28,45.6,39,0.0 +13797,7,30,36,0.0 +13797,31,12.5,10,0.0 +13797,23,9,11,0.0 +13797,34,14,7,0.0 +13797,17,39,40,0.0 +13797,15,15.5,45,0.0 +13797,21,10,17,0.0 +13797,63,43.9,43,0.0 +13797,74,10,10,0.0 +13797,2,19,10,0.0 +13797,42,14,9,0.0 +13797,14,23.25,5,0.0 +13797,37,26,37,0.0 +13797,12,38,41,0.0 +13797,5,21.35,15,0.0 +13797,49,20,13,0.0 +13797,58,13.25,38,0.0 +13797,11,21,32,0.0 +13798,12,38,10,0.0 +13798,8,40,39,0.0 +13798,59,55,45,0.0 +13798,5,21.35,48,0.0 +13798,49,20,14,0.0 +13798,20,81,50,0.0 +13798,17,39,19,0.0 +13798,14,23.25,45,0.0 +13798,52,7,32,0.0 +13798,46,12,20,0.0 +13798,29,123.79,8,0.0 +13798,36,19,6,0.0 +13798,34,14,27,0.0 +13798,23,9,35,0.0 +13798,45,9.5,35,0.0 +13798,61,28.5,50,0.0 +13798,18,62.5,44,0.0 +13798,6,25,19,0.0 +13798,9,97,40,0.0 +13798,69,36,8,0.0 +13798,3,10,4,0.0 +13798,37,26,14,0.0 +13798,43,46,49,0.0 +13798,42,14,46,0.0 +13798,65,21.05,8,0.0 +13798,15,15.5,50,0.0 +13798,57,19.5,36,0.0 +13798,51,53,6,0.0 +13798,31,12.5,18,0.0 +13798,41,9.65,47,0.0 +13798,27,43.9,14,0.0 +13798,35,18,50,0.0 +13798,28,45.6,42,0.0 +13798,73,15,9,0.0 +13798,72,34.8,7,0.0 +13798,1,18,6,0.0 +13798,48,12.75,24,0.0 +13798,33,2.5,37,0.0 +13798,68,12.5,14,0.0 +13798,10,31,1,0.0 +13798,11,21,44,0.0 +13798,75,7.75,45,0.0 +13798,70,15,20,0.0 +13798,60,34,2,0.0 +13798,25,14,10,0.0 +13798,74,10,17,0.0 +13798,71,21.5,3,0.0 +13798,30,25.89,19,0.0 +13798,67,14,45,0.0 +13798,66,17,50,0.0 +13798,26,31.23,24,0.0 +13798,53,32.8,49,0.0 +13798,44,19.45,1,0.0 +13798,4,22,4,0.0 +13798,76,18,38,0.0 +13799,28,45.6,20,0.0 +13799,4,22,14,0.0 +13799,10,31,27,0.0 +13799,19,9.2,5,0.0 +13799,41,9.65,13,0.0 +13799,22,21,32,0.0 +13799,59,55,17,0.0 +13799,27,43.9,35,0.0 +13799,64,33.25,44,0.0 +13799,61,28.5,20,0.0 +13799,24,4.5,45,0.0 +13799,62,49.3,50,0.0 +13799,13,6,8,0.0 +13799,43,46,38,0.0 +13799,3,10,12,0.0 +13799,35,18,42,0.0 +13799,11,21,25,0.0 +13799,23,9,31,0.0 +13799,5,21.35,8,0.0 +13799,72,34.8,24,0.0 +13799,69,36,30,0.0 +13799,73,15,19,0.0 +13799,58,13.25,25,0.0 +13799,32,32,9,0.0 +13799,46,12,45,0.0 +13799,57,19.5,38,0.0 +13799,48,12.75,18,0.0 +13799,12,38,18,0.0 +13799,7,30,43,0.0 +13799,17,39,46,0.0 +13799,71,21.5,19,0.0 +13799,50,16.25,6,0.0 +13799,20,81,14,0.0 +13799,38,263.5,42,0.0 +13799,40,18.4,5,0.0 +13799,51,53,49,0.0 +13799,68,12.5,32,0.0 +13799,65,21.05,5,0.0 +13799,55,24,45,0.0 +13799,54,7.45,45,0.0 +13799,15,15.5,14,0.0 +13799,25,14,38,0.0 +13799,60,34,34,0.0 +13799,53,32.8,40,0.0 +13799,74,10,49,0.0 +13799,1,18,13,0.0 +13799,34,14,37,0.0 +13799,36,19,44,0.0 +13799,63,43.9,11,0.0 +13799,37,26,4,0.0 +13799,39,18,49,0.0 +13799,67,14,44,0.0 +13799,31,12.5,5,0.0 +13799,49,20,45,0.0 +13799,45,9.5,7,0.0 +13799,44,19.45,36,0.0 +13799,70,15,5,0.0 +13799,42,14,27,0.0 +13799,77,13,17,0.0 +13799,16,17.45,23,0.0 +13799,9,97,43,0.0 +13800,7,30,4,0.0 +13800,65,21.05,29,0.0 +13800,18,62.5,22,0.0 +13800,19,9.2,20,0.0 +13800,64,33.25,17,0.0 +13800,67,14,20,0.0 +13800,31,12.5,42,0.0 +13800,35,18,5,0.0 +13800,32,32,14,0.0 +13800,8,40,41,0.0 +13800,62,49.3,40,0.0 +13800,76,18,44,0.0 +13800,46,12,26,0.0 +13800,42,14,16,0.0 +13800,55,24,12,0.0 +13800,52,7,16,0.0 +13800,41,9.65,23,0.0 +13800,21,10,44,0.0 +13800,20,81,16,0.0 +13800,71,21.5,4,0.0 +13800,69,36,2,0.0 +13800,6,25,10,0.0 +13800,70,15,33,0.0 +13800,14,23.25,24,0.0 +13800,29,123.79,5,0.0 +13801,34,14,50,0.0 +13801,58,13.25,32,0.0 +13801,10,31,43,0.0 +13801,23,9,36,0.0 +13801,39,18,8,0.0 +13801,65,21.05,50,0.0 +13801,61,28.5,21,0.0 +13801,56,38,6,0.0 +13801,7,30,17,0.0 +13801,25,14,37,0.0 +13801,14,23.25,13,0.0 +13801,21,10,33,0.0 +13801,44,19.45,42,0.0 +13801,18,62.5,28,0.0 +13801,62,49.3,41,0.0 +13801,29,123.79,39,0.0 +13801,73,15,24,0.0 +13801,77,13,25,0.0 +13801,68,12.5,9,0.0 +13801,19,9.2,2,0.0 +13801,75,7.75,33,0.0 +13801,15,15.5,27,0.0 +13801,60,34,20,0.0 +13801,32,32,40,0.0 +13801,54,7.45,17,0.0 +13801,69,36,46,0.0 +13801,8,40,49,0.0 +13801,31,12.5,27,0.0 +13801,11,21,17,0.0 +13801,30,25.89,9,0.0 +13801,33,2.5,27,0.0 +13801,38,263.5,40,0.0 +13801,12,38,43,0.0 +13801,66,17,20,0.0 +13801,9,97,18,0.0 +13801,45,9.5,44,0.0 +13801,26,31.23,49,0.0 +13801,70,15,5,0.0 +13801,6,25,46,0.0 +13801,3,10,42,0.0 +13801,41,9.65,50,0.0 +13801,36,19,18,0.0 +13801,57,19.5,37,0.0 +13801,51,53,21,0.0 +13801,40,18.4,40,0.0 +13801,52,7,25,0.0 +13801,24,4.5,31,0.0 +13801,37,26,28,0.0 +13801,55,24,33,0.0 +13801,28,45.6,43,0.0 +13801,13,6,46,0.0 +13801,5,21.35,32,0.0 +13801,49,20,27,0.0 +13801,4,22,48,0.0 +13802,23,9,32,0.0 +13802,28,45.6,4,0.0 +13802,26,31.23,26,0.0 +13802,62,49.3,34,0.0 +13802,19,9.2,6,0.0 +13802,53,32.8,43,0.0 +13802,60,34,7,0.0 +13802,3,10,36,0.0 +13802,5,21.35,12,0.0 +13802,73,15,42,0.0 +13802,75,7.75,15,0.0 +13802,61,28.5,25,0.0 +13802,69,36,48,0.0 +13802,34,14,7,0.0 +13802,44,19.45,47,0.0 +13802,40,18.4,42,0.0 +13802,55,24,9,0.0 +13802,72,34.8,8,0.0 +13802,33,2.5,31,0.0 +13802,57,19.5,46,0.0 +13802,22,21,25,0.0 +13802,41,9.65,28,0.0 +13802,30,25.89,30,0.0 +13802,1,18,2,0.0 +13802,66,17,19,0.0 +13802,49,20,12,0.0 +13802,18,62.5,50,0.0 +13802,74,10,9,0.0 +13802,21,10,22,0.0 +13802,51,53,11,0.0 +13802,31,12.5,27,0.0 +13802,76,18,50,0.0 +13802,24,4.5,15,0.0 +13802,25,14,25,0.0 +13802,43,46,8,0.0 +13802,8,40,33,0.0 +13802,45,9.5,7,0.0 +13802,2,19,8,0.0 +13802,36,19,17,0.0 +13802,6,25,18,0.0 +13802,7,30,13,0.0 +13802,48,12.75,38,0.0 +13802,71,21.5,31,0.0 +13802,59,55,4,0.0 +13802,56,38,4,0.0 +13802,39,18,30,0.0 +13802,67,14,27,0.0 +13802,50,16.25,10,0.0 +13802,52,7,20,0.0 +13802,10,31,12,0.0 +13802,4,22,37,0.0 +13802,15,15.5,2,0.0 +13802,58,13.25,33,0.0 +13802,64,33.25,22,0.0 +13802,35,18,39,0.0 +13803,29,123.79,40,0.0 +13803,19,9.2,7,0.0 +13803,32,32,32,0.0 +13803,17,39,10,0.0 +13803,7,30,9,0.0 +13803,27,43.9,35,0.0 +13803,43,46,29,0.0 +13803,54,7.45,28,0.0 +13803,39,18,28,0.0 +13803,2,19,8,0.0 +13803,37,26,25,0.0 +13803,60,34,39,0.0 +13803,61,28.5,14,0.0 +13803,20,81,12,0.0 +13803,3,10,11,0.0 +13803,15,15.5,15,0.0 +13803,14,23.25,31,0.0 +13803,38,263.5,45,0.0 +13803,53,32.8,20,0.0 +13803,75,7.75,5,0.0 +13803,65,21.05,48,0.0 +13803,52,7,22,0.0 +13803,31,12.5,42,0.0 +13803,77,13,36,0.0 +13803,11,21,24,0.0 +13803,13,6,11,0.0 +13803,71,21.5,32,0.0 +13803,44,19.45,25,0.0 +13803,51,53,15,0.0 +13803,74,10,38,0.0 +13803,21,10,37,0.0 +13803,1,18,33,0.0 +13803,36,19,40,0.0 +13803,72,34.8,26,0.0 +13803,48,12.75,4,0.0 +13803,10,31,12,0.0 +13803,68,12.5,50,0.0 +13803,26,31.23,48,0.0 +13803,63,43.9,23,0.0 +13803,55,24,30,0.0 +13803,67,14,12,0.0 +13803,49,20,21,0.0 +13803,9,97,1,0.0 +13803,70,15,11,0.0 +13803,41,9.65,36,0.0 +13803,23,9,10,0.0 +13803,47,9.5,46,0.0 +13803,69,36,17,0.0 +13803,18,62.5,25,0.0 +13803,33,2.5,25,0.0 +13803,35,18,11,0.0 +13803,16,17.45,21,0.0 +13803,59,55,41,0.0 +13803,5,21.35,18,0.0 +13803,58,13.25,1,0.0 +13803,50,16.25,13,0.0 +13803,28,45.6,16,0.0 +13803,12,38,44,0.0 +13804,15,15.5,9,0.0 +13804,54,7.45,30,0.0 +13804,39,18,6,0.0 +13804,35,18,28,0.0 +13804,26,31.23,22,0.0 +13804,1,18,27,0.0 +13804,65,21.05,32,0.0 +13804,6,25,11,0.0 +13804,2,19,38,0.0 +13804,44,19.45,13,0.0 +13804,75,7.75,49,0.0 +13804,45,9.5,11,0.0 +13804,77,13,10,0.0 +13804,63,43.9,17,0.0 +13804,32,32,5,0.0 +13804,37,26,27,0.0 +13804,30,25.89,49,0.0 +13804,62,49.3,3,0.0 +13804,59,55,32,0.0 +13804,31,12.5,29,0.0 +13804,71,21.5,46,0.0 +13804,20,81,36,0.0 +13804,14,23.25,31,0.0 +13804,28,45.6,7,0.0 +13804,55,24,17,0.0 +13804,49,20,15,0.0 +13804,64,33.25,42,0.0 +13804,19,9.2,49,0.0 +13804,4,22,47,0.0 +13804,22,21,6,0.0 +13804,60,34,37,0.0 +13804,52,7,4,0.0 +13804,46,12,31,0.0 +13804,34,14,40,0.0 +13804,40,18.4,10,0.0 +13804,48,12.75,3,0.0 +13804,16,17.45,16,0.0 +13804,27,43.9,36,0.0 +13804,3,10,23,0.0 +13804,33,2.5,49,0.0 +13804,38,263.5,18,0.0 +13804,72,34.8,47,0.0 +13804,61,28.5,37,0.0 +13804,67,14,13,0.0 +13804,29,123.79,15,0.0 +13804,23,9,30,0.0 +13804,10,31,5,0.0 +13804,51,53,27,0.0 +13804,69,36,15,0.0 +13804,8,40,2,0.0 +13804,68,12.5,26,0.0 +13804,36,19,41,0.0 +13804,12,38,31,0.0 +13804,18,62.5,25,0.0 +13804,70,15,7,0.0 +13804,56,38,29,0.0 +13804,74,10,24,0.0 +13804,47,9.5,3,0.0 +13804,5,21.35,50,0.0 +13804,58,13.25,19,0.0 +13804,42,14,44,0.0 +13804,24,4.5,46,0.0 +13804,57,19.5,36,0.0 +13804,66,17,28,0.0 +13804,43,46,1,0.0 +13804,17,39,35,0.0 +13804,73,15,30,0.0 +13804,53,32.8,24,0.0 +13804,76,18,41,0.0 +13805,16,17.45,9,0.0 +13805,35,18,38,0.0 +13805,50,16.25,18,0.0 +13805,39,18,45,0.0 +13805,18,62.5,30,0.0 +13805,26,31.23,11,0.0 +13805,13,6,40,0.0 +13805,43,46,4,0.0 +13805,42,14,33,0.0 +13805,71,21.5,3,0.0 +13805,31,12.5,22,0.0 +13805,33,2.5,35,0.0 +13805,52,7,45,0.0 +13805,67,14,8,0.0 +13805,15,15.5,38,0.0 +13805,54,7.45,12,0.0 +13805,73,15,25,0.0 +13805,45,9.5,39,0.0 +13805,24,4.5,49,0.0 +13805,62,49.3,38,0.0 +13805,55,24,12,0.0 +13805,74,10,40,0.0 +13805,57,19.5,30,0.0 +13805,69,36,42,0.0 +13805,60,34,21,0.0 +13805,1,18,28,0.0 +13805,58,13.25,4,0.0 +13805,65,21.05,36,0.0 +13805,6,25,36,0.0 +13805,77,13,4,0.0 +13805,66,17,15,0.0 +13805,20,81,33,0.0 +13805,4,22,6,0.0 +13805,56,38,26,0.0 +13805,34,14,47,0.0 +13805,17,39,10,0.0 +13805,44,19.45,50,0.0 +13805,49,20,7,0.0 +13805,30,25.89,49,0.0 +13805,12,38,17,0.0 +13805,63,43.9,28,0.0 +13805,37,26,10,0.0 +13805,32,32,32,0.0 +13805,40,18.4,11,0.0 +13805,48,12.75,15,0.0 +13805,5,21.35,7,0.0 +13805,19,9.2,10,0.0 +13805,68,12.5,17,0.0 +13806,48,12.75,36,0.0 +13806,71,21.5,32,0.0 +13806,44,19.45,15,0.0 +13806,3,10,30,0.0 +13806,69,36,14,0.0 +13806,32,32,43,0.0 +13806,37,26,50,0.0 +13806,60,34,48,0.0 +13806,23,9,24,0.0 +13806,41,9.65,19,0.0 +13806,61,28.5,41,0.0 +13806,46,12,3,0.0 +13806,76,18,8,0.0 +13806,58,13.25,49,0.0 +13806,70,15,2,0.0 +13806,19,9.2,48,0.0 +13806,10,31,38,0.0 +13806,39,18,34,0.0 +13806,31,12.5,44,0.0 +13806,6,25,47,0.0 +13806,21,10,4,0.0 +13806,20,81,18,0.0 +13806,8,40,5,0.0 +13806,50,16.25,6,0.0 +13806,54,7.45,43,0.0 +13806,34,14,2,0.0 +13806,29,123.79,1,0.0 +13806,62,49.3,3,0.0 +13806,15,15.5,26,0.0 +13806,55,24,34,0.0 +13806,45,9.5,17,0.0 +13806,16,17.45,33,0.0 +13806,4,22,30,0.0 +13806,42,14,10,0.0 +13806,25,14,14,0.0 +13806,28,45.6,5,0.0 +13807,1,18,19,0.0 +13807,50,16.25,12,0.0 +13807,67,14,28,0.0 +13807,4,22,8,0.0 +13807,17,39,9,0.0 +13807,48,12.75,2,0.0 +13807,6,25,18,0.0 +13807,75,7.75,14,0.0 +13807,61,28.5,50,0.0 +13807,58,13.25,23,0.0 +13807,35,18,35,0.0 +13807,32,32,37,0.0 +13807,25,14,38,0.0 +13807,66,17,24,0.0 +13807,74,10,11,0.0 +13807,9,97,45,0.0 +13807,21,10,25,0.0 +13807,41,9.65,21,0.0 +13807,65,21.05,19,0.0 +13807,77,13,39,0.0 +13807,60,34,35,0.0 +13807,23,9,10,0.0 +13807,52,7,35,0.0 +13807,45,9.5,7,0.0 +13807,33,2.5,25,0.0 +13807,49,20,33,0.0 +13807,64,33.25,17,0.0 +13807,51,53,6,0.0 +13807,37,26,34,0.0 +13807,34,14,35,0.0 +13807,30,25.89,3,0.0 +13807,31,12.5,33,0.0 +13807,26,31.23,42,0.0 +13807,5,21.35,49,0.0 +13807,59,55,18,0.0 +13807,20,81,4,0.0 +13807,46,12,44,0.0 +13807,40,18.4,14,0.0 +13807,28,45.6,5,0.0 +13807,47,9.5,27,0.0 +13807,29,123.79,42,0.0 +13807,36,19,28,0.0 +13807,22,21,12,0.0 +13807,44,19.45,22,0.0 +13807,13,6,17,0.0 +13807,68,12.5,37,0.0 +13807,76,18,16,0.0 +13807,42,14,42,0.0 +13808,8,40,11,0.0 +13808,55,24,48,0.0 +13808,24,4.5,6,0.0 +13808,70,15,30,0.0 +13808,14,23.25,28,0.0 +13808,4,22,32,0.0 +13808,11,21,11,0.0 +13808,72,34.8,22,0.0 +13808,15,15.5,28,0.0 +13808,44,19.45,19,0.0 +13808,51,53,13,0.0 +13808,64,33.25,31,0.0 +13808,63,43.9,17,0.0 +13808,25,14,39,0.0 +13808,18,62.5,6,0.0 +13808,77,13,26,0.0 +13808,69,36,17,0.0 +13808,21,10,50,0.0 +13808,57,19.5,1,0.0 +13808,59,55,45,0.0 +13808,42,14,12,0.0 +13808,54,7.45,10,0.0 +13808,61,28.5,30,0.0 +13808,10,31,23,0.0 +13808,71,21.5,43,0.0 +13808,28,45.6,2,0.0 +13808,73,15,50,0.0 +13808,6,25,48,0.0 +13809,5,21.35,10,0.0 +13809,36,19,42,0.0 +13809,71,21.5,44,0.0 +13809,61,28.5,30,0.0 +13809,35,18,46,0.0 +13809,60,34,1,0.0 +13809,17,39,37,0.0 +13809,11,21,48,0.0 +13809,20,81,14,0.0 +13809,56,38,41,0.0 +13809,68,12.5,33,0.0 +13809,46,12,27,0.0 +13809,2,19,37,0.0 +13809,28,45.6,15,0.0 +13809,41,9.65,37,0.0 +13809,18,62.5,32,0.0 +13809,59,55,35,0.0 +13809,7,30,14,0.0 +13809,12,38,4,0.0 +13809,3,10,47,0.0 +13809,25,14,15,0.0 +13809,21,10,26,0.0 +13809,45,9.5,39,0.0 +13809,38,263.5,16,0.0 +13809,77,13,17,0.0 +13809,42,14,9,0.0 +13809,40,18.4,2,0.0 +13809,73,15,42,0.0 +13809,55,24,34,0.0 +13809,30,25.89,45,0.0 +13809,53,32.8,14,0.0 +13809,76,18,47,0.0 +13809,24,4.5,47,0.0 +13809,29,123.79,46,0.0 +13809,39,18,32,0.0 +13809,19,9.2,31,0.0 +13809,51,53,50,0.0 +13809,66,17,33,0.0 +13809,43,46,36,0.0 +13809,32,32,37,0.0 +13809,64,33.25,38,0.0 +13809,8,40,14,0.0 +13809,6,25,4,0.0 +13809,34,14,30,0.0 +13809,75,7.75,23,0.0 +13809,52,7,32,0.0 +13809,33,2.5,34,0.0 +13809,37,26,13,0.0 +13809,62,49.3,3,0.0 +13809,13,6,39,0.0 +13809,16,17.45,6,0.0 +13809,10,31,27,0.0 +13809,22,21,11,0.0 +13810,76,18,14,0.0 +13810,74,10,5,0.0 +13810,43,46,7,0.0 +13810,47,9.5,2,0.0 +13810,36,19,5,0.0 +13810,56,38,2,0.0 +13810,55,24,48,0.0 +13810,61,28.5,15,0.0 +13810,29,123.79,42,0.0 +13810,28,45.6,30,0.0 +13810,63,43.9,17,0.0 +13810,9,97,36,0.0 +13810,58,13.25,16,0.0 +13810,52,7,40,0.0 +13810,21,10,30,0.0 +13810,44,19.45,50,0.0 +13810,51,53,24,0.0 +13810,66,17,46,0.0 +13810,34,14,11,0.0 +13810,42,14,35,0.0 +13810,54,7.45,27,0.0 +13810,10,31,4,0.0 +13810,20,81,19,0.0 +13810,40,18.4,18,0.0 +13810,11,21,35,0.0 +13810,3,10,9,0.0 +13810,77,13,38,0.0 +13810,33,2.5,23,0.0 +13810,67,14,36,0.0 +13810,49,20,39,0.0 +13810,60,34,45,0.0 +13810,14,23.25,36,0.0 +13810,46,12,1,0.0 +13810,70,15,27,0.0 +13810,59,55,17,0.0 +13810,39,18,39,0.0 +13810,19,9.2,16,0.0 +13810,5,21.35,37,0.0 +13810,41,9.65,27,0.0 +13810,50,16.25,27,0.0 +13810,7,30,50,0.0 +13810,4,22,46,0.0 +13810,6,25,23,0.0 +13810,18,62.5,16,0.0 +13810,38,263.5,29,0.0 +13810,37,26,9,0.0 +13810,57,19.5,48,0.0 +13810,17,39,8,0.0 +13810,1,18,41,0.0 +13810,30,25.89,5,0.0 +13810,35,18,33,0.0 +13810,53,32.8,29,0.0 +13810,22,21,43,0.0 +13811,4,22,24,0.0 +13811,71,21.5,13,0.0 +13811,42,14,43,0.0 +13811,59,55,9,0.0 +13811,32,32,41,0.0 +13811,64,33.25,32,0.0 +13811,54,7.45,45,0.0 +13811,49,20,6,0.0 +13811,21,10,36,0.0 +13811,62,49.3,45,0.0 +13811,22,21,37,0.0 +13811,43,46,25,0.0 +13811,77,13,3,0.0 +13811,31,12.5,1,0.0 +13811,60,34,9,0.0 +13812,17,39,41,0.0 +13812,33,2.5,19,0.0 +13812,43,46,39,0.0 +13812,22,21,2,0.0 +13812,37,26,23,0.0 +13812,54,7.45,49,0.0 +13812,56,38,7,0.0 +13812,46,12,12,0.0 +13812,63,43.9,35,0.0 +13812,76,18,41,0.0 +13812,72,34.8,27,0.0 +13812,69,36,27,0.0 +13812,68,12.5,2,0.0 +13812,47,9.5,12,0.0 +13812,57,19.5,32,0.0 +13812,21,10,39,0.0 +13812,12,38,3,0.0 +13812,59,55,47,0.0 +13812,7,30,6,0.0 +13812,13,6,43,0.0 +13812,70,15,42,0.0 +13812,61,28.5,23,0.0 +13812,1,18,14,0.0 +13812,74,10,8,0.0 +13812,27,43.9,10,0.0 +13812,28,45.6,18,0.0 +13812,77,13,41,0.0 +13812,73,15,16,0.0 +13812,10,31,5,0.0 +13812,55,24,30,0.0 +13812,48,12.75,34,0.0 +13812,23,9,1,0.0 +13812,31,12.5,8,0.0 +13812,49,20,49,0.0 +13812,62,49.3,17,0.0 +13812,38,263.5,22,0.0 +13812,66,17,34,0.0 +13812,75,7.75,17,0.0 +13812,41,9.65,40,0.0 +13812,45,9.5,12,0.0 +13812,29,123.79,43,0.0 +13812,15,15.5,22,0.0 +13812,25,14,11,0.0 +13812,24,4.5,7,0.0 +13812,34,14,6,0.0 +13812,16,17.45,38,0.0 +13812,11,21,1,0.0 +13812,19,9.2,30,0.0 +13812,2,19,29,0.0 +13812,44,19.45,12,0.0 +13812,51,53,42,0.0 +13812,42,14,29,0.0 +13812,8,40,28,0.0 +13813,19,9.2,12,0.0 +13813,32,32,49,0.0 +13813,44,19.45,49,0.0 +13813,21,10,48,0.0 +13813,47,9.5,38,0.0 +13813,18,62.5,45,0.0 +13813,48,12.75,11,0.0 +13813,26,31.23,50,0.0 +13813,9,97,14,0.0 +13813,31,12.5,41,0.0 +13813,75,7.75,19,0.0 +13813,41,9.65,47,0.0 +13813,49,20,15,0.0 +13813,35,18,5,0.0 +13813,57,19.5,45,0.0 +13813,10,31,8,0.0 +13813,51,53,6,0.0 +13813,54,7.45,12,0.0 +13813,46,12,36,0.0 +13813,56,38,26,0.0 +13813,66,17,5,0.0 +13813,23,9,22,0.0 +13813,16,17.45,3,0.0 +13813,33,2.5,14,0.0 +13813,3,10,25,0.0 +13813,30,25.89,28,0.0 +13813,43,46,47,0.0 +13813,1,18,35,0.0 +13813,24,4.5,48,0.0 +13813,67,14,10,0.0 +13813,76,18,49,0.0 +13813,72,34.8,18,0.0 +13813,13,6,33,0.0 +13813,59,55,9,0.0 +13813,74,10,3,0.0 +13813,2,19,25,0.0 +13813,6,25,26,0.0 +13813,5,21.35,14,0.0 +13813,71,21.5,34,0.0 +13813,68,12.5,26,0.0 +13813,22,21,5,0.0 +13813,45,9.5,18,0.0 +13813,65,21.05,43,0.0 +13813,14,23.25,36,0.0 +13813,39,18,40,0.0 +13813,28,45.6,2,0.0 +13813,60,34,16,0.0 +13813,11,21,17,0.0 +13813,34,14,9,0.0 +13813,36,19,5,0.0 +13813,42,14,18,0.0 +13813,7,30,33,0.0 +13813,70,15,28,0.0 +13813,37,26,37,0.0 +13813,52,7,4,0.0 +13813,25,14,49,0.0 +13813,17,39,49,0.0 +13813,12,38,33,0.0 +13814,76,18,45,0.0 +13814,33,2.5,16,0.0 +13814,34,14,10,0.0 +13814,44,19.45,39,0.0 +13814,12,38,23,0.0 +13815,65,21.05,2,0.0 +13815,63,43.9,18,0.0 +13815,41,9.65,32,0.0 +13815,15,15.5,44,0.0 +13815,16,17.45,23,0.0 +13815,27,43.9,7,0.0 +13815,72,34.8,6,0.0 +13815,52,7,29,0.0 +13815,35,18,34,0.0 +13815,33,2.5,1,0.0 +13815,7,30,20,0.0 +13815,10,31,27,0.0 +13815,21,10,25,0.0 +13815,66,17,2,0.0 +13815,1,18,31,0.0 +13815,14,23.25,50,0.0 +13815,3,10,4,0.0 +13815,12,38,15,0.0 +13815,11,21,11,0.0 +13815,8,40,17,0.0 +13815,56,38,9,0.0 +13815,67,14,36,0.0 +13815,39,18,22,0.0 +13815,36,19,12,0.0 +13816,8,40,15,0.0 +13816,70,15,16,0.0 +13816,3,10,27,0.0 +13816,10,31,12,0.0 +13816,31,12.5,22,0.0 +13816,24,4.5,32,0.0 +13816,77,13,38,0.0 +13816,4,22,47,0.0 +13816,66,17,13,0.0 +13816,16,17.45,13,0.0 +13817,18,62.5,18,0.0 +13817,61,28.5,33,0.0 +13817,29,123.79,6,0.0 +13817,9,97,31,0.0 +13817,71,21.5,37,0.0 +13817,33,2.5,17,0.0 +13817,52,7,47,0.0 +13817,63,43.9,9,0.0 +13817,43,46,33,0.0 +13817,46,12,35,0.0 +13817,76,18,30,0.0 +13817,14,23.25,6,0.0 +13817,58,13.25,16,0.0 +13817,66,17,4,0.0 +13817,1,18,2,0.0 +13817,2,19,46,0.0 +13818,12,38,37,0.0 +13818,56,38,7,0.0 +13818,46,12,30,0.0 +13818,65,21.05,31,0.0 +13818,51,53,8,0.0 +13818,19,9.2,46,0.0 +13818,61,28.5,12,0.0 +13818,34,14,42,0.0 +13818,43,46,38,0.0 +13818,37,26,9,0.0 +13818,42,14,46,0.0 +13818,58,13.25,19,0.0 +13818,76,18,45,0.0 +13818,53,32.8,6,0.0 +13818,72,34.8,8,0.0 +13818,31,12.5,25,0.0 +13818,28,45.6,33,0.0 +13818,33,2.5,27,0.0 +13818,40,18.4,10,0.0 +13818,67,14,26,0.0 +13818,26,31.23,32,0.0 +13818,30,25.89,33,0.0 +13818,9,97,4,0.0 +13818,41,9.65,6,0.0 +13818,22,21,42,0.0 +13818,73,15,22,0.0 +13818,47,9.5,7,0.0 +13819,32,32,48,0.0 +13819,16,17.45,35,0.0 +13819,23,9,45,0.0 +13819,5,21.35,11,0.0 +13819,60,34,32,0.0 +13819,71,21.5,42,0.0 +13819,51,53,1,0.0 +13819,67,14,26,0.0 +13819,61,28.5,39,0.0 +13820,48,12.75,6,0.0 +13820,1,18,15,0.0 +13820,51,53,37,0.0 +13820,63,43.9,34,0.0 +13820,12,38,32,0.0 +13820,33,2.5,9,0.0 +13820,8,40,43,0.0 +13820,10,31,25,0.0 +13820,72,34.8,10,0.0 +13820,22,21,15,0.0 +13820,59,55,30,0.0 +13820,24,4.5,11,0.0 +13820,29,123.79,41,0.0 +13820,25,14,32,0.0 +13820,61,28.5,14,0.0 +13820,71,21.5,38,0.0 +13820,41,9.65,37,0.0 +13820,31,12.5,43,0.0 +13820,3,10,5,0.0 +13820,20,81,44,0.0 +13820,37,26,15,0.0 +13820,60,34,26,0.0 +13820,57,19.5,10,0.0 +13820,11,21,36,0.0 +13820,27,43.9,26,0.0 +13820,68,12.5,47,0.0 +13820,23,9,24,0.0 +13820,35,18,7,0.0 +13820,30,25.89,5,0.0 +13820,17,39,38,0.0 +13820,14,23.25,16,0.0 +13820,16,17.45,12,0.0 +13820,75,7.75,13,0.0 +13820,18,62.5,5,0.0 +13820,2,19,50,0.0 +13820,6,25,46,0.0 +13820,55,24,5,0.0 +13820,54,7.45,44,0.0 +13820,19,9.2,39,0.0 +13820,62,49.3,9,0.0 +13820,36,19,39,0.0 +13820,7,30,1,0.0 +13820,45,9.5,45,0.0 +13821,12,38,17,0.0 +13821,30,25.89,14,0.0 +13821,13,6,6,0.0 +13821,43,46,19,0.0 +13821,45,9.5,2,0.0 +13821,44,19.45,44,0.0 +13821,76,18,20,0.0 +13821,7,30,37,0.0 +13821,5,21.35,7,0.0 +13821,77,13,29,0.0 +13821,27,43.9,9,0.0 +13821,32,32,21,0.0 +13821,63,43.9,42,0.0 +13821,70,15,45,0.0 +13821,22,21,4,0.0 +13821,35,18,6,0.0 +13821,14,23.25,33,0.0 +13821,50,16.25,34,0.0 +13821,29,123.79,48,0.0 +13821,34,14,32,0.0 +13821,65,21.05,9,0.0 +13821,57,19.5,8,0.0 +13821,64,33.25,7,0.0 +13821,17,39,48,0.0 +13821,66,17,13,0.0 +13821,38,263.5,32,0.0 +13821,56,38,28,0.0 +13821,74,10,4,0.0 +13821,21,10,7,0.0 +13821,68,12.5,15,0.0 +13821,49,20,31,0.0 +13821,72,34.8,33,0.0 +13821,62,49.3,12,0.0 +13821,52,7,20,0.0 +13821,25,14,5,0.0 +13821,54,7.45,10,0.0 +13821,24,4.5,6,0.0 +13821,8,40,4,0.0 +13821,37,26,40,0.0 +13821,36,19,2,0.0 +13821,46,12,5,0.0 +13821,40,18.4,27,0.0 +13821,48,12.75,34,0.0 +13821,15,15.5,39,0.0 +13821,59,55,7,0.0 +13821,2,19,23,0.0 +13821,6,25,6,0.0 +13821,10,31,25,0.0 +13821,20,81,42,0.0 +13821,11,21,46,0.0 +13821,33,2.5,48,0.0 +13821,58,13.25,18,0.0 +13821,39,18,37,0.0 +13821,51,53,47,0.0 +13821,55,24,41,0.0 +13821,19,9.2,39,0.0 +13822,24,4.5,27,0.0 +13822,21,10,7,0.0 +13822,26,31.23,49,0.0 +13822,67,14,17,0.0 +13822,49,20,34,0.0 +13822,42,14,49,0.0 +13822,71,21.5,28,0.0 +13822,54,7.45,3,0.0 +13822,12,38,24,0.0 +13822,39,18,19,0.0 +13822,70,15,16,0.0 +13822,25,14,50,0.0 +13822,66,17,6,0.0 +13822,30,25.89,21,0.0 +13822,69,36,43,0.0 +13822,34,14,33,0.0 +13822,19,9.2,4,0.0 +13822,17,39,14,0.0 +13822,76,18,45,0.0 +13822,1,18,4,0.0 +13822,72,34.8,15,0.0 +13822,65,21.05,26,0.0 +13822,37,26,30,0.0 +13822,6,25,21,0.0 +13822,50,16.25,38,0.0 +13822,38,263.5,46,0.0 +13822,57,19.5,12,0.0 +13822,43,46,36,0.0 +13822,18,62.5,35,0.0 +13822,62,49.3,22,0.0 +13822,15,15.5,6,0.0 +13822,63,43.9,46,0.0 +13822,52,7,23,0.0 +13822,7,30,16,0.0 +13822,61,28.5,42,0.0 +13822,41,9.65,34,0.0 +13822,58,13.25,35,0.0 +13822,51,53,47,0.0 +13822,4,22,19,0.0 +13822,59,55,35,0.0 +13822,35,18,38,0.0 +13822,33,2.5,1,0.0 +13822,27,43.9,33,0.0 +13822,31,12.5,44,0.0 +13823,71,21.5,40,0.0 +13823,70,15,4,0.0 +13823,48,12.75,24,0.0 +13823,47,9.5,20,0.0 +13823,17,39,23,0.0 +13823,42,14,44,0.0 +13823,44,19.45,43,0.0 +13823,60,34,35,0.0 +13823,69,36,32,0.0 +13823,14,23.25,10,0.0 +13823,29,123.79,30,0.0 +13823,36,19,18,0.0 +13823,53,32.8,32,0.0 +13823,11,21,4,0.0 +13823,24,4.5,15,0.0 +13823,4,22,28,0.0 +13823,28,45.6,22,0.0 +13823,57,19.5,41,0.0 +13823,22,21,5,0.0 +13823,43,46,50,0.0 +13823,58,13.25,48,0.0 +13823,62,49.3,5,0.0 +13823,18,62.5,45,0.0 +13823,52,7,48,0.0 +13823,15,15.5,6,0.0 +13823,6,25,31,0.0 +13823,56,38,39,0.0 +13823,8,40,39,0.0 +13823,74,10,4,0.0 +13823,32,32,8,0.0 +13823,65,21.05,42,0.0 +13823,34,14,46,0.0 +13823,31,12.5,34,0.0 +13823,41,9.65,26,0.0 +13823,9,97,6,0.0 +13823,63,43.9,20,0.0 +13823,61,28.5,10,0.0 +13823,35,18,4,0.0 +13823,33,2.5,3,0.0 +13823,64,33.25,42,0.0 +13823,38,263.5,28,0.0 +13823,59,55,34,0.0 +13823,37,26,23,0.0 +13823,30,25.89,1,0.0 +13823,23,9,12,0.0 +13823,67,14,26,0.0 +13823,45,9.5,16,0.0 +13823,51,53,3,0.0 +13823,10,31,12,0.0 +13824,36,19,17,0.0 +13824,61,28.5,24,0.0 +13824,1,18,41,0.0 +13824,37,26,11,0.0 +13824,32,32,10,0.0 +13824,49,20,23,0.0 +13824,16,17.45,26,0.0 +13824,60,34,13,0.0 +13824,24,4.5,37,0.0 +13824,52,7,50,0.0 +13824,57,19.5,5,0.0 +13824,21,10,36,0.0 +13824,28,45.6,41,0.0 +13824,58,13.25,40,0.0 +13824,10,31,43,0.0 +13824,75,7.75,33,0.0 +13824,38,263.5,37,0.0 +13824,26,31.23,25,0.0 +13824,41,9.65,32,0.0 +13824,31,12.5,43,0.0 +13824,50,16.25,27,0.0 +13824,66,17,12,0.0 +13824,65,21.05,15,0.0 +13824,73,15,2,0.0 +13824,8,40,27,0.0 +13824,48,12.75,13,0.0 +13824,51,53,7,0.0 +13824,25,14,43,0.0 +13824,64,33.25,11,0.0 +13824,15,15.5,19,0.0 +13824,54,7.45,45,0.0 +13824,35,18,6,0.0 +13824,18,62.5,27,0.0 +13824,56,38,16,0.0 +13824,45,9.5,26,0.0 +13824,13,6,5,0.0 +13824,7,30,12,0.0 +13824,22,21,35,0.0 +13824,19,9.2,30,0.0 +13824,3,10,50,0.0 +13824,39,18,50,0.0 +13824,29,123.79,31,0.0 +13824,77,13,24,0.0 +13824,62,49.3,23,0.0 +13824,40,18.4,22,0.0 +13824,27,43.9,33,0.0 +13824,2,19,5,0.0 +13824,46,12,45,0.0 +13824,11,21,22,0.0 +13824,72,34.8,12,0.0 +13824,67,14,31,0.0 +13824,44,19.45,9,0.0 +13824,76,18,35,0.0 +13824,14,23.25,4,0.0 +13824,20,81,48,0.0 +13824,5,21.35,48,0.0 +13824,59,55,34,0.0 +13824,12,38,17,0.0 +13824,43,46,40,0.0 +13824,53,32.8,46,0.0 +13824,6,25,32,0.0 +13824,63,43.9,34,0.0 +13824,33,2.5,23,0.0 +13824,55,24,37,0.0 +13824,34,14,31,0.0 +13824,9,97,34,0.0 +13824,71,21.5,28,0.0 +13824,70,15,40,0.0 +13824,74,10,12,0.0 +13824,69,36,7,0.0 +13824,30,25.89,40,0.0 +13825,58,13.25,23,0.0 +13825,72,34.8,30,0.0 +13825,46,12,34,0.0 +13825,47,9.5,34,0.0 +13825,23,9,15,0.0 +13825,16,17.45,19,0.0 +13825,42,14,23,0.0 +13825,8,40,4,0.0 +13825,60,34,37,0.0 +13825,30,25.89,10,0.0 +13825,40,18.4,11,0.0 +13825,49,20,50,0.0 +13825,45,9.5,45,0.0 +13825,26,31.23,48,0.0 +13825,4,22,27,0.0 +13825,35,18,38,0.0 +13825,27,43.9,39,0.0 +13825,66,17,35,0.0 +13825,70,15,36,0.0 +13825,54,7.45,40,0.0 +13825,32,32,45,0.0 +13825,11,21,48,0.0 +13825,41,9.65,35,0.0 +13825,51,53,4,0.0 +13825,68,12.5,49,0.0 +13825,34,14,35,0.0 +13825,48,12.75,24,0.0 +13825,14,23.25,48,0.0 +13825,7,30,7,0.0 +13825,65,21.05,22,0.0 +13825,43,46,41,0.0 +13825,33,2.5,14,0.0 +13825,53,32.8,19,0.0 +13825,61,28.5,35,0.0 +13825,62,49.3,29,0.0 +13825,12,38,12,0.0 +13825,71,21.5,9,0.0 +13825,25,14,15,0.0 +13825,77,13,9,0.0 +13825,64,33.25,10,0.0 +13825,15,15.5,49,0.0 +13825,20,81,13,0.0 +13825,69,36,24,0.0 +13825,28,45.6,35,0.0 +13825,21,10,33,0.0 +13825,75,7.75,25,0.0 +13825,22,21,13,0.0 +13825,29,123.79,7,0.0 +13825,63,43.9,39,0.0 +13825,76,18,40,0.0 +13825,59,55,38,0.0 +13825,18,62.5,46,0.0 +13825,5,21.35,9,0.0 +13825,31,12.5,2,0.0 +13825,55,24,22,0.0 +13825,2,19,47,0.0 +13825,10,31,33,0.0 +13825,67,14,46,0.0 +13825,17,39,47,0.0 +13825,74,10,24,0.0 +13825,56,38,13,0.0 +13825,38,263.5,39,0.0 +13825,3,10,46,0.0 +13825,50,16.25,33,0.0 +13825,19,9.2,28,0.0 +13825,52,7,34,0.0 +13825,6,25,45,0.0 +13825,36,19,34,0.0 +13825,39,18,9,0.0 +13825,24,4.5,27,0.0 +13825,9,97,17,0.0 +13825,44,19.45,12,0.0 +13826,60,34,21,0.0 +13826,62,49.3,34,0.0 +13826,57,19.5,43,0.0 +13826,9,97,20,0.0 +13826,75,7.75,49,0.0 +13826,72,34.8,43,0.0 +13826,5,21.35,48,0.0 +13826,36,19,4,0.0 +13826,69,36,43,0.0 +13826,47,9.5,33,0.0 +13826,45,9.5,20,0.0 +13826,63,43.9,5,0.0 +13826,20,81,26,0.0 +13826,56,38,11,0.0 +13826,52,7,24,0.0 +13826,41,9.65,4,0.0 +13826,74,10,5,0.0 +13826,76,18,6,0.0 +13826,21,10,3,0.0 +13826,35,18,20,0.0 +13826,32,32,12,0.0 +13826,27,43.9,49,0.0 +13826,46,12,43,0.0 +13826,66,17,20,0.0 +13826,77,13,18,0.0 +13826,34,14,13,0.0 +13826,73,15,22,0.0 +13826,17,39,33,0.0 +13826,71,21.5,48,0.0 +13826,24,4.5,2,0.0 +13826,53,32.8,9,0.0 +13826,28,45.6,50,0.0 +13826,50,16.25,43,0.0 +13826,23,9,27,0.0 +13826,68,12.5,13,0.0 +13826,29,123.79,28,0.0 +13826,43,46,30,0.0 +13826,19,9.2,26,0.0 +13826,38,263.5,20,0.0 +13826,39,18,18,0.0 +13826,67,14,31,0.0 +13826,30,25.89,32,0.0 +13826,1,18,7,0.0 +13826,37,26,3,0.0 +13826,13,6,22,0.0 +13826,48,12.75,34,0.0 +13826,18,62.5,21,0.0 +13826,4,22,29,0.0 +13826,7,30,37,0.0 +13826,65,21.05,48,0.0 +13826,49,20,2,0.0 +13826,22,21,18,0.0 +13826,12,38,33,0.0 +13826,26,31.23,21,0.0 +13826,33,2.5,46,0.0 +13826,54,7.45,7,0.0 +13826,70,15,28,0.0 +13826,40,18.4,48,0.0 +13826,2,19,3,0.0 +13826,55,24,25,0.0 +13826,44,19.45,27,0.0 +13826,31,12.5,18,0.0 +13826,16,17.45,48,0.0 +13826,59,55,7,0.0 +13826,15,15.5,9,0.0 +13826,14,23.25,27,0.0 +13826,8,40,8,0.0 +13826,25,14,17,0.0 +13827,8,40,46,0.0 +13827,45,9.5,48,0.0 +13827,30,25.89,3,0.0 +13827,71,21.5,43,0.0 +13827,54,7.45,42,0.0 +13827,15,15.5,50,0.0 +13827,65,21.05,11,0.0 +13827,29,123.79,3,0.0 +13827,77,13,28,0.0 +13827,31,12.5,16,0.0 +13827,76,18,38,0.0 +13827,49,20,23,0.0 +13827,21,10,21,0.0 +13827,22,21,10,0.0 +13827,13,6,11,0.0 +13827,10,31,12,0.0 +13827,72,34.8,11,0.0 +13827,67,14,8,0.0 +13827,1,18,42,0.0 +13827,34,14,4,0.0 +13827,35,18,20,0.0 +13827,57,19.5,33,0.0 +13827,60,34,12,0.0 +13827,33,2.5,31,0.0 +13827,74,10,33,0.0 +13827,75,7.75,16,0.0 +13827,3,10,17,0.0 +13827,44,19.45,21,0.0 +13827,37,26,44,0.0 +13827,61,28.5,47,0.0 +13827,41,9.65,12,0.0 +13827,38,263.5,29,0.0 +13827,62,49.3,7,0.0 +13827,47,9.5,39,0.0 +13827,6,25,50,0.0 +13827,42,14,37,0.0 +13827,27,43.9,8,0.0 +13827,64,33.25,44,0.0 +13827,23,9,6,0.0 +13827,28,45.6,31,0.0 +13827,9,97,31,0.0 +13827,11,21,43,0.0 +13827,19,9.2,16,0.0 +13827,43,46,21,0.0 +13827,56,38,43,0.0 +13827,18,62.5,35,0.0 +13827,5,21.35,10,0.0 +13827,46,12,16,0.0 +13827,63,43.9,49,0.0 +13827,25,14,10,0.0 +13827,4,22,2,0.0 +13827,32,32,40,0.0 +13827,24,4.5,45,0.0 +13827,58,13.25,36,0.0 +13827,20,81,24,0.0 +13827,70,15,29,0.0 +13827,68,12.5,43,0.0 +13827,36,19,47,0.0 +13827,17,39,26,0.0 +13827,69,36,12,0.0 +13827,7,30,41,0.0 +13827,2,19,31,0.0 +13827,52,7,32,0.0 +13827,55,24,16,0.0 +13827,48,12.75,3,0.0 +13827,59,55,20,0.0 +13827,66,17,41,0.0 +13827,39,18,25,0.0 +13827,16,17.45,13,0.0 +13827,73,15,50,0.0 +13827,53,32.8,5,0.0 +13827,12,38,11,0.0 +13827,50,16.25,38,0.0 +13828,14,23.25,28,0.0 +13828,76,18,14,0.0 +13828,69,36,35,0.0 +13828,77,13,36,0.0 +13828,41,9.65,4,0.0 +13828,18,62.5,8,0.0 +13828,32,32,12,0.0 +13828,51,53,20,0.0 +13828,58,13.25,33,0.0 +13828,25,14,2,0.0 +13828,15,15.5,36,0.0 +13828,75,7.75,8,0.0 +13828,26,31.23,24,0.0 +13828,57,19.5,44,0.0 +13828,37,26,8,0.0 +13828,27,43.9,34,0.0 +13828,3,10,16,0.0 +13828,10,31,2,0.0 +13828,54,7.45,21,0.0 +13828,35,18,50,0.0 +13828,38,263.5,32,0.0 +13828,34,14,3,0.0 +13828,19,9.2,17,0.0 +13828,16,17.45,46,0.0 +13828,6,25,16,0.0 +13828,45,9.5,43,0.0 +13828,66,17,12,0.0 +13828,22,21,1,0.0 +13828,17,39,48,0.0 +13828,21,10,35,0.0 +13828,63,43.9,16,0.0 +13828,31,12.5,43,0.0 +13828,39,18,33,0.0 +13828,49,20,24,0.0 +13828,2,19,2,0.0 +13828,50,16.25,48,0.0 +13828,68,12.5,45,0.0 +13828,64,33.25,28,0.0 +13828,44,19.45,47,0.0 +13828,1,18,45,0.0 +13828,55,24,23,0.0 +13828,30,25.89,4,0.0 +13828,42,14,19,0.0 +13828,60,34,21,0.0 +13828,52,7,13,0.0 +13828,33,2.5,2,0.0 +13828,20,81,5,0.0 +13828,72,34.8,16,0.0 +13828,4,22,31,0.0 +13828,23,9,35,0.0 +13828,7,30,12,0.0 +13828,43,46,2,0.0 +13828,13,6,33,0.0 +13828,47,9.5,30,0.0 +13828,12,38,10,0.0 +13828,28,45.6,24,0.0 +13828,46,12,47,0.0 +13828,9,97,12,0.0 +13828,29,123.79,6,0.0 +13828,74,10,22,0.0 +13828,67,14,36,0.0 +13828,40,18.4,38,0.0 +13829,77,13,9,0.0 +13829,39,18,3,0.0 +13829,28,45.6,7,0.0 +13829,17,39,25,0.0 +13829,70,15,26,0.0 +13829,58,13.25,10,0.0 +13829,7,30,2,0.0 +13829,37,26,38,0.0 +13829,34,14,7,0.0 +13829,25,14,18,0.0 +13829,12,38,46,0.0 +13829,43,46,3,0.0 +13829,1,18,6,0.0 +13829,72,34.8,11,0.0 +13829,16,17.45,41,0.0 +13829,54,7.45,46,0.0 +13829,52,7,13,0.0 +13829,6,25,12,0.0 +13829,4,22,46,0.0 +13829,56,38,8,0.0 +13829,51,53,15,0.0 +13829,19,9.2,27,0.0 +13829,32,32,1,0.0 +13829,67,14,41,0.0 +13829,62,49.3,45,0.0 +13829,10,31,20,0.0 +13829,33,2.5,26,0.0 +13829,22,21,30,0.0 +13829,53,32.8,40,0.0 +13829,59,55,5,0.0 +13829,75,7.75,40,0.0 +13829,46,12,14,0.0 +13829,49,20,35,0.0 +13829,73,15,2,0.0 +13829,44,19.45,23,0.0 +13829,23,9,10,0.0 +13829,64,33.25,40,0.0 +13830,45,9.5,48,0.0 +13830,12,38,17,0.0 +13830,64,33.25,11,0.0 +13830,67,14,30,0.0 +13830,19,9.2,25,0.0 +13830,2,19,47,0.0 +13830,36,19,48,0.0 +13830,13,6,7,0.0 +13830,28,45.6,43,0.0 +13830,18,62.5,25,0.0 +13830,60,34,34,0.0 +13830,66,17,35,0.0 +13830,24,4.5,14,0.0 +13830,61,28.5,35,0.0 +13830,25,14,1,0.0 +13830,40,18.4,50,0.0 +13830,65,21.05,35,0.0 +13830,71,21.5,42,0.0 +13830,31,12.5,34,0.0 +13830,35,18,2,0.0 +13830,46,12,36,0.0 +13830,27,43.9,30,0.0 +13830,5,21.35,32,0.0 +13830,29,123.79,24,0.0 +13830,7,30,50,0.0 +13830,37,26,16,0.0 +13830,68,12.5,26,0.0 +13831,7,30,16,0.0 +13831,29,123.79,4,0.0 +13831,45,9.5,23,0.0 +13831,25,14,12,0.0 +13831,21,10,9,0.0 +13831,54,7.45,42,0.0 +13831,6,25,20,0.0 +13831,5,21.35,34,0.0 +13831,16,17.45,26,0.0 +13831,64,33.25,20,0.0 +13831,57,19.5,1,0.0 +13831,4,22,1,0.0 +13831,23,9,46,0.0 +13831,46,12,47,0.0 +13831,68,12.5,15,0.0 +13831,69,36,22,0.0 +13831,36,19,26,0.0 +13831,37,26,33,0.0 +13831,27,43.9,20,0.0 +13831,61,28.5,8,0.0 +13831,18,62.5,9,0.0 +13831,34,14,14,0.0 +13831,31,12.5,27,0.0 +13831,26,31.23,44,0.0 +13831,60,34,30,0.0 +13831,24,4.5,24,0.0 +13831,63,43.9,13,0.0 +13831,28,45.6,5,0.0 +13831,47,9.5,6,0.0 +13831,12,38,30,0.0 +13831,44,19.45,31,0.0 +13831,32,32,44,0.0 +13831,67,14,45,0.0 +13831,49,20,50,0.0 +13831,39,18,39,0.0 +13831,74,10,20,0.0 +13831,51,53,50,0.0 +13831,71,21.5,39,0.0 +13831,20,81,24,0.0 +13831,41,9.65,25,0.0 +13831,11,21,5,0.0 +13831,22,21,10,0.0 +13831,65,21.05,35,0.0 +13831,3,10,10,0.0 +13831,33,2.5,20,0.0 +13831,73,15,39,0.0 +13831,38,263.5,19,0.0 +13831,58,13.25,36,0.0 +13831,43,46,17,0.0 +13831,35,18,5,0.0 +13831,48,12.75,31,0.0 +13831,15,15.5,9,0.0 +13831,1,18,6,0.0 +13831,55,24,49,0.0 +13831,62,49.3,16,0.0 +13831,59,55,27,0.0 +13831,76,18,46,0.0 +13831,14,23.25,35,0.0 +13831,2,19,1,0.0 +13831,13,6,11,0.0 +13831,70,15,16,0.0 +13831,66,17,4,0.0 +13831,42,14,21,0.0 +13831,56,38,37,0.0 +13831,52,7,19,0.0 +13831,30,25.89,1,0.0 +13831,9,97,23,0.0 +13831,75,7.75,8,0.0 +13831,50,16.25,38,0.0 +13831,72,34.8,13,0.0 +13831,8,40,4,0.0 +13832,29,123.79,13,0.0 +13832,57,19.5,6,0.0 +13832,33,2.5,30,0.0 +13832,52,7,5,0.0 +13832,63,43.9,6,0.0 +13832,64,33.25,40,0.0 +13832,66,17,6,0.0 +13832,2,19,20,0.0 +13832,6,25,23,0.0 +13832,58,13.25,43,0.0 +13832,30,25.89,20,0.0 +13832,77,13,33,0.0 +13832,41,9.65,39,0.0 +13832,51,53,26,0.0 +13832,62,49.3,22,0.0 +13832,16,17.45,40,0.0 +13832,21,10,45,0.0 +13832,40,18.4,21,0.0 +13832,48,12.75,27,0.0 +13832,22,21,3,0.0 +13832,5,21.35,15,0.0 +13832,27,43.9,45,0.0 +13832,73,15,33,0.0 +13832,65,21.05,23,0.0 +13832,75,7.75,26,0.0 +13832,26,31.23,14,0.0 +13832,45,9.5,47,0.0 +13832,43,46,17,0.0 +13832,39,18,5,0.0 +13833,22,21,27,0.0 +13833,44,19.45,22,0.0 +13833,54,7.45,7,0.0 +13833,40,18.4,14,0.0 +13833,14,23.25,5,0.0 +13833,38,263.5,33,0.0 +13833,11,21,8,0.0 +13833,16,17.45,6,0.0 +13833,37,26,25,0.0 +13833,18,62.5,18,0.0 +13833,52,7,24,0.0 +13833,21,10,29,0.0 +13833,60,34,41,0.0 +13833,20,81,38,0.0 +13833,71,21.5,21,0.0 +13833,70,15,24,0.0 +13833,1,18,14,0.0 +13833,43,46,25,0.0 +13833,33,2.5,27,0.0 +13833,34,14,29,0.0 +13833,66,17,14,0.0 +13833,28,45.6,41,0.0 +13834,63,43.9,18,0.0 +13834,34,14,13,0.0 +13834,56,38,49,0.0 +13834,69,36,40,0.0 +13834,60,34,32,0.0 +13834,26,31.23,15,0.0 +13834,2,19,15,0.0 +13834,30,25.89,4,0.0 +13834,32,32,28,0.0 +13834,33,2.5,17,0.0 +13834,65,21.05,37,0.0 +13834,70,15,48,0.0 +13834,38,263.5,41,0.0 +13834,39,18,12,0.0 +13834,52,7,39,0.0 +13834,25,14,23,0.0 +13834,28,45.6,18,0.0 +13834,42,14,38,0.0 +13834,20,81,6,0.0 +13834,66,17,18,0.0 +13834,19,9.2,2,0.0 +13834,40,18.4,27,0.0 +13834,55,24,3,0.0 +13834,4,22,23,0.0 +13834,15,15.5,38,0.0 +13834,23,9,5,0.0 +13834,49,20,4,0.0 +13834,62,49.3,9,0.0 +13834,36,19,22,0.0 +13834,72,34.8,25,0.0 +13834,67,14,35,0.0 +13834,54,7.45,43,0.0 +13834,24,4.5,22,0.0 +13834,6,25,37,0.0 +13834,14,23.25,18,0.0 +13834,71,21.5,3,0.0 +13834,45,9.5,9,0.0 +13834,68,12.5,17,0.0 +13834,7,30,44,0.0 +13834,64,33.25,15,0.0 +13834,12,38,45,0.0 +13834,16,17.45,36,0.0 +13834,21,10,27,0.0 +13834,3,10,30,0.0 +13834,76,18,50,0.0 +13834,35,18,39,0.0 +13834,47,9.5,18,0.0 +13834,59,55,37,0.0 +13834,75,7.75,47,0.0 +13834,8,40,24,0.0 +13834,1,18,13,0.0 +13834,13,6,43,0.0 +13834,51,53,36,0.0 +13834,29,123.79,38,0.0 +13834,43,46,50,0.0 +13834,50,16.25,3,0.0 +13834,5,21.35,50,0.0 +13834,77,13,20,0.0 +13834,46,12,18,0.0 +13834,74,10,27,0.0 +13834,22,21,25,0.0 +13834,10,31,27,0.0 +13834,31,12.5,2,0.0 +13834,27,43.9,6,0.0 +13834,58,13.25,12,0.0 +13834,9,97,43,0.0 +13834,53,32.8,31,0.0 +13834,73,15,46,0.0 +13834,18,62.5,33,0.0 +13834,57,19.5,8,0.0 +13834,61,28.5,42,0.0 +13834,44,19.45,48,0.0 +13834,17,39,34,0.0 +13834,48,12.75,8,0.0 +13835,8,40,9,0.0 +13835,60,34,23,0.0 +13835,65,21.05,16,0.0 +13835,21,10,5,0.0 +13835,16,17.45,19,0.0 +13835,1,18,12,0.0 +13835,31,12.5,6,0.0 +13835,39,18,9,0.0 +13835,53,32.8,46,0.0 +13835,36,19,36,0.0 +13835,59,55,17,0.0 +13835,2,19,29,0.0 +13835,45,9.5,43,0.0 +13835,25,14,49,0.0 +13835,63,43.9,2,0.0 +13835,49,20,30,0.0 +13835,29,123.79,50,0.0 +13835,30,25.89,45,0.0 +13835,6,25,30,0.0 +13835,19,9.2,36,0.0 +13835,22,21,4,0.0 +13835,48,12.75,41,0.0 +13835,9,97,47,0.0 +13835,41,9.65,6,0.0 +13835,44,19.45,22,0.0 +13835,33,2.5,18,0.0 +13835,51,53,5,0.0 +13835,46,12,3,0.0 +13835,52,7,41,0.0 +13835,7,30,7,0.0 +13835,58,13.25,46,0.0 +13835,72,34.8,25,0.0 +13835,71,21.5,27,0.0 +13835,4,22,36,0.0 +13835,24,4.5,22,0.0 +13835,27,43.9,24,0.0 +13835,77,13,43,0.0 +13835,74,10,37,0.0 +13835,76,18,26,0.0 +13835,38,263.5,25,0.0 +13835,35,18,11,0.0 +13836,19,9.2,21,0.0 +13836,48,12.75,41,0.0 +13836,65,21.05,38,0.0 +13836,10,31,34,0.0 +13836,31,12.5,40,0.0 +13836,13,6,23,0.0 +13836,6,25,16,0.0 +13836,29,123.79,25,0.0 +13836,8,40,43,0.0 +13836,44,19.45,49,0.0 +13836,61,28.5,5,0.0 +13836,46,12,3,0.0 +13836,53,32.8,8,0.0 +13836,37,26,4,0.0 +13836,58,13.25,11,0.0 +13836,14,23.25,41,0.0 +13836,16,17.45,18,0.0 +13836,15,15.5,30,0.0 +13836,77,13,39,0.0 +13836,38,263.5,29,0.0 +13836,34,14,43,0.0 +13836,24,4.5,15,0.0 +13836,70,15,27,0.0 +13836,39,18,27,0.0 +13836,25,14,15,0.0 +13836,12,38,17,0.0 +13836,5,21.35,20,0.0 +13836,36,19,14,0.0 +13836,62,49.3,2,0.0 +13836,32,32,39,0.0 +13836,67,14,1,0.0 +13836,73,15,21,0.0 +13836,68,12.5,4,0.0 +13836,76,18,18,0.0 +13836,55,24,16,0.0 +13836,63,43.9,2,0.0 +13836,4,22,29,0.0 +13836,45,9.5,43,0.0 +13836,74,10,11,0.0 +13836,28,45.6,2,0.0 +13836,18,62.5,25,0.0 +13836,42,14,5,0.0 +13836,49,20,19,0.0 +13836,35,18,19,0.0 +13836,60,34,38,0.0 +13836,1,18,23,0.0 +13836,52,7,17,0.0 +13836,23,9,50,0.0 +13836,64,33.25,34,0.0 +13836,3,10,39,0.0 +13836,66,17,28,0.0 +13836,41,9.65,30,0.0 +13836,22,21,4,0.0 +13836,27,43.9,3,0.0 +13836,59,55,26,0.0 +13837,46,12,15,0.0 +13837,44,19.45,49,0.0 +13837,23,9,7,0.0 +13837,39,18,41,0.0 +13837,54,7.45,38,0.0 +13837,43,46,30,0.0 +13837,31,12.5,48,0.0 +13837,58,13.25,35,0.0 +13837,73,15,46,0.0 +13837,50,16.25,43,0.0 +13837,33,2.5,16,0.0 +13837,18,62.5,2,0.0 +13837,9,97,35,0.0 +13837,6,25,2,0.0 +13837,70,15,27,0.0 +13837,47,9.5,18,0.0 +13837,52,7,27,0.0 +13837,15,15.5,14,0.0 +13837,45,9.5,3,0.0 +13837,5,21.35,15,0.0 +13837,30,25.89,35,0.0 +13837,21,10,23,0.0 +13837,11,21,47,0.0 +13837,20,81,38,0.0 +13837,74,10,45,0.0 +13838,16,17.45,4,0.0 +13838,23,9,22,0.0 +13838,6,25,24,0.0 +13838,31,12.5,4,0.0 +13838,63,43.9,14,0.0 +13838,22,21,27,0.0 +13838,41,9.65,22,0.0 +13838,46,12,8,0.0 +13838,72,34.8,8,0.0 +13838,3,10,50,0.0 +13838,30,25.89,37,0.0 +13838,8,40,44,0.0 +13838,47,9.5,13,0.0 +13838,21,10,15,0.0 +13838,10,31,20,0.0 +13838,15,15.5,14,0.0 +13838,58,13.25,20,0.0 +13838,54,7.45,29,0.0 +13838,18,62.5,48,0.0 +13838,7,30,16,0.0 +13838,60,34,14,0.0 +13838,51,53,30,0.0 +13838,53,32.8,36,0.0 +13838,27,43.9,20,0.0 +13838,40,18.4,50,0.0 +13838,66,17,42,0.0 +13838,37,26,39,0.0 +13838,25,14,42,0.0 +13838,36,19,32,0.0 +13838,68,12.5,44,0.0 +13838,65,21.05,25,0.0 +13838,43,46,33,0.0 +13838,45,9.5,22,0.0 +13838,13,6,20,0.0 +13838,62,49.3,16,0.0 +13838,57,19.5,12,0.0 +13838,71,21.5,19,0.0 +13838,52,7,19,0.0 +13839,53,32.8,34,0.0 +13839,46,12,41,0.0 +13839,60,34,36,0.0 +13839,36,19,5,0.0 +13839,62,49.3,31,0.0 +13839,58,13.25,45,0.0 +13839,14,23.25,9,0.0 +13839,51,53,1,0.0 +13839,39,18,41,0.0 +13839,6,25,42,0.0 +13839,10,31,27,0.0 +13839,72,34.8,24,0.0 +13839,28,45.6,43,0.0 +13839,54,7.45,31,0.0 +13839,38,263.5,43,0.0 +13839,44,19.45,14,0.0 +13839,69,36,41,0.0 +13839,76,18,28,0.0 +13839,7,30,8,0.0 +13839,64,33.25,13,0.0 +13839,70,15,20,0.0 +13839,49,20,45,0.0 +13839,2,19,28,0.0 +13839,22,21,15,0.0 +13839,35,18,7,0.0 +13839,17,39,48,0.0 +13840,13,6,19,0.0 +13840,12,38,16,0.0 +13840,62,49.3,12,0.0 +13840,33,2.5,46,0.0 +13840,35,18,25,0.0 +13840,28,45.6,39,0.0 +13840,42,14,20,0.0 +13840,76,18,18,0.0 +13840,46,12,6,0.0 +13840,37,26,7,0.0 +13840,63,43.9,8,0.0 +13840,36,19,25,0.0 +13840,54,7.45,19,0.0 +13840,73,15,40,0.0 +13840,9,97,15,0.0 +13840,67,14,39,0.0 +13840,55,24,47,0.0 +13840,22,21,6,0.0 +13840,30,25.89,46,0.0 +13840,44,19.45,32,0.0 +13840,6,25,28,0.0 +13840,52,7,31,0.0 +13840,43,46,34,0.0 +13840,45,9.5,41,0.0 +13840,10,31,50,0.0 +13840,71,21.5,22,0.0 +13840,38,263.5,50,0.0 +13840,56,38,49,0.0 +13840,17,39,31,0.0 +13840,66,17,27,0.0 +13840,24,4.5,31,0.0 +13840,25,14,5,0.0 +13840,18,62.5,24,0.0 +13840,20,81,32,0.0 +13840,16,17.45,13,0.0 +13840,1,18,25,0.0 +13840,32,32,41,0.0 +13840,75,7.75,42,0.0 +13840,49,20,25,0.0 +13840,72,34.8,39,0.0 +13840,70,15,27,0.0 +13840,57,19.5,23,0.0 +13840,61,28.5,2,0.0 +13840,59,55,30,0.0 +13840,11,21,31,0.0 +13840,26,31.23,7,0.0 +13841,53,32.8,21,0.0 +13841,16,17.45,43,0.0 +13841,2,19,36,0.0 +13841,45,9.5,44,0.0 +13841,35,18,11,0.0 +13842,73,15,44,0.0 +13842,38,263.5,37,0.0 +13842,24,4.5,25,0.0 +13842,69,36,14,0.0 +13842,57,19.5,42,0.0 +13842,17,39,41,0.0 +13842,11,21,8,0.0 +13842,13,6,38,0.0 +13842,63,43.9,18,0.0 +13842,50,16.25,49,0.0 +13842,32,32,29,0.0 +13842,54,7.45,40,0.0 +13842,61,28.5,2,0.0 +13842,68,12.5,8,0.0 +13842,9,97,39,0.0 +13842,7,30,50,0.0 +13842,52,7,26,0.0 +13842,37,26,17,0.0 +13842,51,53,11,0.0 +13842,33,2.5,24,0.0 +13842,65,21.05,27,0.0 +13842,49,20,3,0.0 +13842,76,18,11,0.0 +13842,15,15.5,38,0.0 +13843,75,7.75,25,0.0 +13843,16,17.45,38,0.0 +13843,27,43.9,27,0.0 +13843,70,15,17,0.0 +13843,47,9.5,28,0.0 +13843,58,13.25,50,0.0 +13843,62,49.3,25,0.0 +13843,23,9,11,0.0 +13844,26,31.23,4,0.0 +13844,3,10,38,0.0 +13844,62,49.3,18,0.0 +13844,58,13.25,17,0.0 +13844,45,9.5,36,0.0 +13844,14,23.25,16,0.0 +13844,6,25,22,0.0 +13844,37,26,25,0.0 +13844,43,46,1,0.0 +13844,71,21.5,29,0.0 +13844,22,21,35,0.0 +13844,18,62.5,37,0.0 +13844,9,97,33,0.0 +13844,16,17.45,50,0.0 +13844,30,25.89,11,0.0 +13844,60,34,21,0.0 +13844,70,15,23,0.0 +13844,52,7,21,0.0 +13844,56,38,23,0.0 +13844,33,2.5,17,0.0 +13844,42,14,21,0.0 +13844,46,12,4,0.0 +13844,77,13,20,0.0 +13844,49,20,35,0.0 +13844,55,24,31,0.0 +13844,24,4.5,27,0.0 +13844,63,43.9,38,0.0 +13844,74,10,37,0.0 +13844,73,15,27,0.0 +13844,12,38,27,0.0 +13844,50,16.25,28,0.0 +13844,29,123.79,19,0.0 +13844,15,15.5,40,0.0 +13844,4,22,19,0.0 +13844,34,14,26,0.0 +13844,36,19,30,0.0 +13844,64,33.25,23,0.0 +13844,19,9.2,47,0.0 +13844,51,53,47,0.0 +13844,61,28.5,34,0.0 +13844,5,21.35,4,0.0 +13844,17,39,28,0.0 +13844,57,19.5,38,0.0 +13844,13,6,30,0.0 +13844,38,263.5,15,0.0 +13844,8,40,14,0.0 +13844,32,32,15,0.0 +13844,1,18,38,0.0 +13844,67,14,50,0.0 +13844,25,14,37,0.0 +13844,35,18,14,0.0 +13844,59,55,48,0.0 +13844,39,18,43,0.0 +13844,27,43.9,1,0.0 +13844,53,32.8,3,0.0 +13844,44,19.45,47,0.0 +13844,54,7.45,48,0.0 +13844,76,18,21,0.0 +13844,31,12.5,44,0.0 +13844,10,31,50,0.0 +13844,41,9.65,23,0.0 +13844,75,7.75,35,0.0 +13844,66,17,6,0.0 +13844,2,19,14,0.0 +13844,72,34.8,44,0.0 +13844,11,21,36,0.0 +13844,28,45.6,42,0.0 +13845,7,30,4,0.0 +13845,46,12,15,0.0 +13845,54,7.45,5,0.0 +13845,20,81,3,0.0 +13845,63,43.9,39,0.0 +13845,76,18,11,0.0 +13845,24,4.5,32,0.0 +13845,68,12.5,27,0.0 +13845,57,19.5,16,0.0 +13845,72,34.8,4,0.0 +13845,28,45.6,30,0.0 +13845,67,14,35,0.0 +13845,70,15,13,0.0 +13845,58,13.25,31,0.0 +13845,73,15,12,0.0 +13845,77,13,18,0.0 +13845,43,46,17,0.0 +13845,26,31.23,20,0.0 +13845,51,53,11,0.0 +13845,6,25,7,0.0 +13845,15,15.5,23,0.0 +13845,49,20,48,0.0 +13845,44,19.45,17,0.0 +13845,41,9.65,10,0.0 +13845,29,123.79,31,0.0 +13845,30,25.89,5,0.0 +13845,21,10,48,0.0 +13845,33,2.5,25,0.0 +13845,34,14,15,0.0 +13845,17,39,49,0.0 +13845,64,33.25,31,0.0 +13845,8,40,47,0.0 +13845,4,22,32,0.0 +13845,36,19,35,0.0 +13845,14,23.25,46,0.0 +13845,48,12.75,27,0.0 +13845,56,38,15,0.0 +13845,22,21,18,0.0 +13845,13,6,44,0.0 +13845,16,17.45,42,0.0 +13845,25,14,48,0.0 +13845,52,7,6,0.0 +13845,61,28.5,42,0.0 +13845,10,31,6,0.0 +13845,65,21.05,34,0.0 +13845,69,36,33,0.0 +13845,35,18,1,0.0 +13845,47,9.5,24,0.0 +13845,19,9.2,44,0.0 +13845,53,32.8,3,0.0 +13845,11,21,35,0.0 +13845,18,62.5,4,0.0 +13845,60,34,27,0.0 +13845,5,21.35,31,0.0 +13845,55,24,15,0.0 +13845,71,21.5,26,0.0 +13845,27,43.9,14,0.0 +13845,74,10,49,0.0 +13845,75,7.75,22,0.0 +13845,32,32,41,0.0 +13845,3,10,21,0.0 +13845,66,17,27,0.0 +13845,38,263.5,40,0.0 +13845,31,12.5,12,0.0 +13845,1,18,31,0.0 +13845,37,26,13,0.0 +13846,42,14,12,0.0 +13846,41,9.65,18,0.0 +13846,24,4.5,40,0.0 +13846,13,6,4,0.0 +13846,9,97,47,0.0 +13846,21,10,1,0.0 +13846,43,46,29,0.0 +13846,63,43.9,37,0.0 +13846,40,18.4,9,0.0 +13846,31,12.5,27,0.0 +13846,56,38,12,0.0 +13846,30,25.89,36,0.0 +13846,65,21.05,28,0.0 +13846,77,13,15,0.0 +13846,72,34.8,40,0.0 +13846,26,31.23,17,0.0 +13846,49,20,24,0.0 +13846,64,33.25,39,0.0 +13846,32,32,20,0.0 +13846,60,34,32,0.0 +13846,57,19.5,22,0.0 +13846,62,49.3,10,0.0 +13846,61,28.5,3,0.0 +13846,28,45.6,47,0.0 +13846,11,21,32,0.0 +13846,75,7.75,48,0.0 +13846,25,14,16,0.0 +13846,7,30,10,0.0 +13846,55,24,5,0.0 +13846,76,18,7,0.0 +13846,20,81,41,0.0 +13846,50,16.25,36,0.0 +13846,69,36,28,0.0 +13846,66,17,14,0.0 +13846,44,19.45,6,0.0 +13846,36,19,37,0.0 +13846,19,9.2,48,0.0 +13846,10,31,50,0.0 +13846,29,123.79,20,0.0 +13846,54,7.45,45,0.0 +13846,59,55,33,0.0 +13846,39,18,13,0.0 +13846,15,15.5,13,0.0 +13846,37,26,13,0.0 +13846,18,62.5,47,0.0 +13846,71,21.5,24,0.0 +13846,8,40,45,0.0 +13846,33,2.5,49,0.0 +13846,68,12.5,5,0.0 +13846,17,39,27,0.0 +13846,58,13.25,31,0.0 +13846,27,43.9,11,0.0 +13846,47,9.5,16,0.0 +13846,38,263.5,40,0.0 +13846,5,21.35,9,0.0 +13846,73,15,44,0.0 +13846,2,19,26,0.0 +13846,22,21,11,0.0 +13846,45,9.5,40,0.0 +13846,34,14,23,0.0 +13846,16,17.45,11,0.0 +13846,4,22,29,0.0 +13846,53,32.8,3,0.0 +13846,23,9,19,0.0 +13846,51,53,11,0.0 +13846,52,7,2,0.0 +13846,35,18,5,0.0 +13847,47,9.5,4,0.0 +13847,41,9.65,32,0.0 +13847,61,28.5,19,0.0 +13847,17,39,31,0.0 +13847,40,18.4,3,0.0 +13847,64,33.25,31,0.0 +13847,46,12,25,0.0 +13847,16,17.45,20,0.0 +13847,39,18,38,0.0 +13847,22,21,46,0.0 +13847,69,36,47,0.0 +13847,57,19.5,47,0.0 +13847,74,10,38,0.0 +13847,59,55,6,0.0 +13847,12,38,42,0.0 +13847,34,14,24,0.0 +13847,4,22,46,0.0 +13847,10,31,12,0.0 +13847,51,53,50,0.0 +13847,19,9.2,47,0.0 +13847,42,14,1,0.0 +13847,11,21,25,0.0 +13847,25,14,14,0.0 +13847,58,13.25,21,0.0 +13847,24,4.5,18,0.0 +13847,32,32,3,0.0 +13847,71,21.5,26,0.0 +13847,13,6,41,0.0 +13847,76,18,13,0.0 +13847,18,62.5,49,0.0 +13847,21,10,28,0.0 +13847,26,31.23,7,0.0 +13848,52,7,42,0.0 +13848,69,36,42,0.0 +13848,61,28.5,21,0.0 +13848,24,4.5,44,0.0 +13848,62,49.3,43,0.0 +13848,7,30,11,0.0 +13848,55,24,33,0.0 +13848,72,34.8,10,0.0 +13848,2,19,19,0.0 +13848,60,34,24,0.0 +13848,20,81,11,0.0 +13848,22,21,15,0.0 +13848,65,21.05,31,0.0 +13848,48,12.75,21,0.0 +13848,49,20,47,0.0 +13848,70,15,22,0.0 +13848,73,15,35,0.0 +13848,15,15.5,20,0.0 +13848,47,9.5,12,0.0 +13848,4,22,1,0.0 +13848,16,17.45,25,0.0 +13848,64,33.25,27,0.0 +13848,39,18,49,0.0 +13848,33,2.5,34,0.0 +13848,35,18,1,0.0 +13848,6,25,30,0.0 +13848,71,21.5,48,0.0 +13848,3,10,22,0.0 +13848,74,10,16,0.0 +13848,59,55,12,0.0 +13848,32,32,17,0.0 +13848,31,12.5,11,0.0 +13848,19,9.2,20,0.0 +13848,38,263.5,25,0.0 +13849,67,14,50,0.0 +13849,33,2.5,38,0.0 +13849,7,30,26,0.0 +13849,13,6,45,0.0 +13849,19,9.2,21,0.0 +13849,61,28.5,14,0.0 +13849,11,21,14,0.0 +13849,38,263.5,38,0.0 +13849,4,22,39,0.0 +13849,51,53,22,0.0 +13849,32,32,4,0.0 +13849,12,38,16,0.0 +13849,24,4.5,20,0.0 +13849,25,14,32,0.0 +13849,3,10,27,0.0 +13849,71,21.5,48,0.0 +13849,20,81,34,0.0 +13849,16,17.45,16,0.0 +13849,29,123.79,26,0.0 +13849,44,19.45,44,0.0 +13849,58,13.25,18,0.0 +13849,10,31,49,0.0 +13849,21,10,2,0.0 +13849,41,9.65,4,0.0 +13849,23,9,29,0.0 +13849,49,20,4,0.0 +13849,45,9.5,1,0.0 +13849,27,43.9,36,0.0 +13849,60,34,25,0.0 +13849,56,38,14,0.0 +13850,65,21.05,41,0.0 +13850,64,33.25,40,0.0 +13850,53,32.8,41,0.0 +13850,43,46,43,0.0 +13850,63,43.9,47,0.0 +13850,19,9.2,10,0.0 +13850,28,45.6,31,0.0 +13850,33,2.5,30,0.0 +13850,12,38,50,0.0 +13850,16,17.45,17,0.0 +13850,51,53,5,0.0 +13850,55,24,16,0.0 +13850,6,25,42,0.0 +13850,71,21.5,50,0.0 +13850,9,97,38,0.0 +13850,54,7.45,5,0.0 +13850,25,14,18,0.0 +13850,57,19.5,27,0.0 +13850,23,9,15,0.0 +13850,13,6,5,0.0 +13850,52,7,2,0.0 +13850,50,16.25,39,0.0 +13850,66,17,46,0.0 +13850,74,10,40,0.0 +13850,70,15,5,0.0 +13850,67,14,11,0.0 +13850,5,21.35,3,0.0 +13850,41,9.65,32,0.0 +13850,32,32,10,0.0 +13850,60,34,50,0.0 +13850,27,43.9,2,0.0 +13850,24,4.5,7,0.0 +13850,56,38,38,0.0 +13850,48,12.75,22,0.0 +13850,44,19.45,18,0.0 +13850,37,26,36,0.0 +13850,26,31.23,32,0.0 +13850,1,18,7,0.0 +13850,30,25.89,14,0.0 +13850,72,34.8,8,0.0 +13850,58,13.25,12,0.0 +13850,29,123.79,41,0.0 +13850,10,31,21,0.0 +13850,73,15,38,0.0 +13850,69,36,43,0.0 +13850,3,10,6,0.0 +13850,11,21,28,0.0 +13850,36,19,49,0.0 +13850,2,19,15,0.0 +13850,39,18,30,0.0 +13850,35,18,44,0.0 +13850,46,12,43,0.0 +13850,40,18.4,26,0.0 +13850,49,20,43,0.0 +13850,31,12.5,24,0.0 +13850,14,23.25,24,0.0 +13850,17,39,11,0.0 +13850,47,9.5,16,0.0 +13850,77,13,19,0.0 +13850,38,263.5,17,0.0 +13850,20,81,8,0.0 +13850,68,12.5,22,0.0 +13850,45,9.5,28,0.0 +13850,34,14,2,0.0 +13850,59,55,14,0.0 +13850,76,18,20,0.0 +13850,22,21,38,0.0 +13850,61,28.5,43,0.0 +13850,4,22,30,0.0 +13850,62,49.3,24,0.0 +13850,8,40,43,0.0 +13850,15,15.5,18,0.0 +13850,75,7.75,16,0.0 +13851,22,21,23,0.0 +13851,6,25,6,0.0 +13851,28,45.6,35,0.0 +13851,14,23.25,45,0.0 +13851,60,34,48,0.0 +13851,3,10,13,0.0 +13851,40,18.4,30,0.0 +13851,54,7.45,43,0.0 +13851,41,9.65,24,0.0 +13851,56,38,5,0.0 +13851,24,4.5,36,0.0 +13851,34,14,33,0.0 +13851,1,18,48,0.0 +13851,27,43.9,23,0.0 +13851,17,39,17,0.0 +13851,62,49.3,6,0.0 +13851,58,13.25,40,0.0 +13851,30,25.89,24,0.0 +13851,39,18,49,0.0 +13851,69,36,43,0.0 +13851,11,21,26,0.0 +13851,5,21.35,15,0.0 +13851,26,31.23,41,0.0 +13851,7,30,1,0.0 +13852,46,12,47,0.0 +13852,9,97,5,0.0 +13852,58,13.25,15,0.0 +13852,17,39,49,0.0 +13852,42,14,7,0.0 +13852,60,34,42,0.0 +13852,61,28.5,5,0.0 +13852,67,14,24,0.0 +13852,3,10,3,0.0 +13852,8,40,16,0.0 +13852,70,15,31,0.0 +13852,11,21,28,0.0 +13852,20,81,28,0.0 +13852,37,26,28,0.0 +13853,69,36,18,0.0 +13853,7,30,28,0.0 +13853,27,43.9,39,0.0 +13853,12,38,33,0.0 +13853,76,18,15,0.0 +13853,37,26,6,0.0 +13853,68,12.5,25,0.0 +13853,35,18,42,0.0 +13853,8,40,13,0.0 +13853,15,15.5,25,0.0 +13853,54,7.45,22,0.0 +13853,74,10,12,0.0 +13853,40,18.4,18,0.0 +13853,3,10,25,0.0 +13853,58,13.25,30,0.0 +13853,14,23.25,46,0.0 +13853,42,14,24,0.0 +13853,73,15,42,0.0 +13853,71,21.5,7,0.0 +13853,55,24,45,0.0 +13853,25,14,14,0.0 +13853,41,9.65,42,0.0 +13854,69,36,8,0.0 +13854,64,33.25,41,0.0 +13854,18,62.5,47,0.0 +13854,51,53,2,0.0 +13854,67,14,29,0.0 +13854,28,45.6,36,0.0 +13854,23,9,31,0.0 +13854,5,21.35,24,0.0 +13854,49,20,33,0.0 +13854,31,12.5,12,0.0 +13854,76,18,36,0.0 +13854,15,15.5,4,0.0 +13854,39,18,28,0.0 +13854,26,31.23,24,0.0 +13854,63,43.9,18,0.0 +13854,73,15,45,0.0 +13854,7,30,8,0.0 +13854,14,23.25,5,0.0 +13854,24,4.5,22,0.0 +13854,62,49.3,10,0.0 +13854,48,12.75,42,0.0 +13854,70,15,11,0.0 +13854,12,38,50,0.0 +13854,75,7.75,48,0.0 +13854,43,46,22,0.0 +13854,52,7,31,0.0 +13854,71,21.5,14,0.0 +13854,20,81,16,0.0 +13854,4,22,28,0.0 +13854,59,55,45,0.0 +13854,41,9.65,32,0.0 +13854,58,13.25,39,0.0 +13854,54,7.45,28,0.0 +13854,34,14,50,0.0 +13854,6,25,38,0.0 +13854,38,263.5,39,0.0 +13854,17,39,28,0.0 +13854,8,40,34,0.0 +13854,61,28.5,29,0.0 +13854,9,97,35,0.0 +13854,60,34,15,0.0 +13854,55,24,2,0.0 +13854,72,34.8,48,0.0 +13854,50,16.25,18,0.0 +13854,74,10,13,0.0 +13854,16,17.45,8,0.0 +13854,65,21.05,20,0.0 +13854,42,14,30,0.0 +13854,27,43.9,42,0.0 +13854,45,9.5,2,0.0 +13854,36,19,25,0.0 +13854,40,18.4,20,0.0 +13854,44,19.45,9,0.0 +13854,53,32.8,50,0.0 +13854,56,38,23,0.0 +13854,1,18,26,0.0 +13854,57,19.5,21,0.0 +13854,35,18,38,0.0 +13854,3,10,20,0.0 +13854,22,21,7,0.0 +13854,68,12.5,40,0.0 +13854,47,9.5,23,0.0 +13854,25,14,40,0.0 +13854,30,25.89,42,0.0 +13854,2,19,30,0.0 +13854,66,17,43,0.0 +13854,77,13,12,0.0 +13854,29,123.79,27,0.0 +13854,46,12,3,0.0 +13854,33,2.5,39,0.0 +13855,34,14,50,0.0 +13855,60,34,36,0.0 +13855,18,62.5,45,0.0 +13855,70,15,18,0.0 +13855,42,14,27,0.0 +13855,23,9,21,0.0 +13855,9,97,19,0.0 +13855,3,10,40,0.0 +13855,58,13.25,27,0.0 +13855,12,38,5,0.0 +13855,7,30,21,0.0 +13855,29,123.79,31,0.0 +13855,6,25,26,0.0 +13855,38,263.5,50,0.0 +13855,73,15,38,0.0 +13855,76,18,44,0.0 +13855,67,14,25,0.0 +13855,64,33.25,30,0.0 +13855,37,26,19,0.0 +13855,17,39,31,0.0 +13855,74,10,28,0.0 +13855,19,9.2,43,0.0 +13855,21,10,2,0.0 +13855,47,9.5,12,0.0 +13855,28,45.6,27,0.0 +13855,41,9.65,32,0.0 +13855,62,49.3,49,0.0 +13855,69,36,1,0.0 +13855,49,20,41,0.0 +13855,10,31,41,0.0 +13855,44,19.45,43,0.0 +13855,52,7,35,0.0 +13855,35,18,42,0.0 +13855,56,38,30,0.0 +13855,53,32.8,5,0.0 +13855,27,43.9,3,0.0 +13855,50,16.25,13,0.0 +13855,59,55,1,0.0 +13855,24,4.5,40,0.0 +13855,45,9.5,33,0.0 +13855,5,21.35,11,0.0 +13855,46,12,25,0.0 +13855,39,18,27,0.0 +13855,48,12.75,22,0.0 +13855,26,31.23,48,0.0 +13855,31,12.5,22,0.0 +13855,57,19.5,23,0.0 +13855,16,17.45,27,0.0 +13856,2,19,12,0.0 +13856,27,43.9,41,0.0 +13856,47,9.5,30,0.0 +13856,77,13,30,0.0 +13856,42,14,11,0.0 +13856,11,21,42,0.0 +13856,13,6,15,0.0 +13856,49,20,3,0.0 +13856,3,10,21,0.0 +13856,12,38,10,0.0 +13857,1,18,30,0.0 +13857,3,10,24,0.0 +13857,20,81,34,0.0 +13857,53,32.8,6,0.0 +13857,27,43.9,33,0.0 +13857,66,17,28,0.0 +13857,26,31.23,16,0.0 +13857,6,25,43,0.0 +13857,57,19.5,40,0.0 +13857,40,18.4,15,0.0 +13857,75,7.75,35,0.0 +13857,41,9.65,49,0.0 +13857,42,14,20,0.0 +13857,34,14,23,0.0 +13857,18,62.5,44,0.0 +13858,37,26,27,0.0 +13858,45,9.5,6,0.0 +13858,65,21.05,19,0.0 +13858,27,43.9,49,0.0 +13858,44,19.45,35,0.0 +13858,68,12.5,49,0.0 +13858,26,31.23,9,0.0 +13858,76,18,45,0.0 +13858,13,6,2,0.0 +13858,52,7,5,0.0 +13858,38,263.5,23,0.0 +13859,31,12.5,21,0.0 +13859,26,31.23,3,0.0 +13859,28,45.6,16,0.0 +13859,69,36,20,0.0 +13859,17,39,8,0.0 +13859,77,13,2,0.0 +13859,34,14,46,0.0 +13859,5,21.35,38,0.0 +13859,22,21,35,0.0 +13859,45,9.5,2,0.0 +13859,74,10,34,0.0 +13859,7,30,24,0.0 +13859,71,21.5,30,0.0 +13859,62,49.3,37,0.0 +13859,54,7.45,45,0.0 +13859,20,81,46,0.0 +13859,43,46,24,0.0 +13859,19,9.2,20,0.0 +13859,59,55,3,0.0 +13859,52,7,9,0.0 +13859,29,123.79,29,0.0 +13859,47,9.5,5,0.0 +13859,15,15.5,14,0.0 +13859,21,10,20,0.0 +13859,13,6,10,0.0 +13859,30,25.89,46,0.0 +13859,46,12,5,0.0 +13859,53,32.8,21,0.0 +13859,65,21.05,29,0.0 +13859,25,14,23,0.0 +13859,56,38,1,0.0 +13859,14,23.25,14,0.0 +13859,76,18,49,0.0 +13860,76,18,28,0.0 +13860,11,21,5,0.0 +13860,49,20,46,0.0 +13860,71,21.5,49,0.0 +13860,42,14,40,0.0 +13860,31,12.5,41,0.0 +13860,5,21.35,1,0.0 +13860,29,123.79,40,0.0 +13860,39,18,36,0.0 +13860,54,7.45,33,0.0 +13860,63,43.9,45,0.0 +13860,23,9,14,0.0 +13860,28,45.6,5,0.0 +13860,67,14,8,0.0 +13860,55,24,29,0.0 +13860,65,21.05,50,0.0 +13860,46,12,21,0.0 +13860,24,4.5,6,0.0 +13860,2,19,7,0.0 +13860,25,14,28,0.0 +13860,58,13.25,20,0.0 +13860,26,31.23,30,0.0 +13860,56,38,33,0.0 +13860,9,97,13,0.0 +13860,66,17,46,0.0 +13860,36,19,36,0.0 +13860,75,7.75,21,0.0 +13860,7,30,43,0.0 +13860,22,21,28,0.0 +13860,27,43.9,34,0.0 +13860,51,53,33,0.0 +13860,72,34.8,20,0.0 +13860,59,55,34,0.0 +13860,52,7,34,0.0 +13860,40,18.4,19,0.0 +13860,35,18,14,0.0 +13860,13,6,27,0.0 +13860,15,15.5,43,0.0 +13860,16,17.45,15,0.0 +13860,10,31,42,0.0 +13860,1,18,35,0.0 +13860,62,49.3,23,0.0 +13860,47,9.5,35,0.0 +13860,38,263.5,32,0.0 +13860,69,36,8,0.0 +13860,48,12.75,23,0.0 +13860,43,46,49,0.0 +13860,73,15,4,0.0 +13860,6,25,44,0.0 +13860,4,22,35,0.0 +13860,33,2.5,36,0.0 +13860,37,26,23,0.0 +13860,8,40,20,0.0 +13860,60,34,4,0.0 +13860,64,33.25,31,0.0 +13860,19,9.2,21,0.0 +13860,20,81,24,0.0 +13860,50,16.25,28,0.0 +13860,57,19.5,21,0.0 +13860,12,38,4,0.0 +13860,21,10,49,0.0 +13860,74,10,25,0.0 +13860,17,39,2,0.0 +13860,70,15,41,0.0 +13860,53,32.8,32,0.0 +13860,44,19.45,45,0.0 +13860,61,28.5,35,0.0 +13860,68,12.5,11,0.0 +13860,32,32,42,0.0 +13861,42,14,3,0.0 +13861,1,18,26,0.0 +13861,54,7.45,37,0.0 +13861,6,25,14,0.0 +13861,70,15,7,0.0 +13861,65,21.05,33,0.0 +13861,43,46,22,0.0 +13861,31,12.5,26,0.0 +13861,40,18.4,25,0.0 +13861,39,18,28,0.0 +13861,25,14,7,0.0 +13861,57,19.5,26,0.0 +13861,19,9.2,39,0.0 +13861,45,9.5,2,0.0 +13861,2,19,17,0.0 +13861,64,33.25,9,0.0 +13861,27,43.9,34,0.0 +13861,74,10,45,0.0 +13861,15,15.5,3,0.0 +13861,41,9.65,39,0.0 +13861,77,13,26,0.0 +13861,46,12,35,0.0 +13861,56,38,41,0.0 +13861,66,17,7,0.0 +13861,38,263.5,37,0.0 +13861,7,30,12,0.0 +13861,51,53,7,0.0 +13861,67,14,30,0.0 +13861,5,21.35,13,0.0 +13861,23,9,41,0.0 +13861,28,45.6,25,0.0 +13861,76,18,6,0.0 +13861,12,38,41,0.0 +13861,34,14,45,0.0 +13861,20,81,18,0.0 +13861,35,18,23,0.0 +13861,30,25.89,18,0.0 +13861,62,49.3,36,0.0 +13861,11,21,32,0.0 +13861,26,31.23,17,0.0 +13861,47,9.5,6,0.0 +13861,4,22,17,0.0 +13861,73,15,37,0.0 +13861,3,10,40,0.0 +13862,63,43.9,42,0.0 +13862,2,19,33,0.0 +13862,11,21,14,0.0 +13862,16,17.45,35,0.0 +13862,6,25,8,0.0 +13862,34,14,5,0.0 +13862,10,31,24,0.0 +13862,55,24,43,0.0 +13862,64,33.25,26,0.0 +13862,44,19.45,13,0.0 +13862,18,62.5,35,0.0 +13862,4,22,21,0.0 +13862,46,12,3,0.0 +13862,41,9.65,24,0.0 +13862,42,14,17,0.0 +13862,3,10,2,0.0 +13862,20,81,30,0.0 +13862,65,21.05,36,0.0 +13862,14,23.25,23,0.0 +13862,26,31.23,46,0.0 +13862,24,4.5,49,0.0 +13862,39,18,44,0.0 +13862,71,21.5,22,0.0 +13862,75,7.75,46,0.0 +13862,32,32,43,0.0 +13862,50,16.25,18,0.0 +13862,51,53,48,0.0 +13862,15,15.5,36,0.0 +13862,61,28.5,23,0.0 +13862,49,20,2,0.0 +13862,35,18,4,0.0 +13862,60,34,11,0.0 +13862,74,10,10,0.0 +13862,36,19,15,0.0 +13862,30,25.89,7,0.0 +13862,72,34.8,3,0.0 +13862,21,10,20,0.0 +13862,23,9,32,0.0 +13862,43,46,43,0.0 +13862,25,14,19,0.0 +13862,56,38,22,0.0 +13862,29,123.79,34,0.0 +13862,62,49.3,1,0.0 +13862,8,40,50,0.0 +13862,69,36,44,0.0 +13862,76,18,46,0.0 +13862,57,19.5,49,0.0 +13862,66,17,28,0.0 +13862,1,18,28,0.0 +13862,9,97,21,0.0 +13862,37,26,21,0.0 +13862,67,14,17,0.0 +13862,52,7,26,0.0 +13862,13,6,24,0.0 +13862,70,15,5,0.0 +13862,68,12.5,35,0.0 +13862,31,12.5,13,0.0 +13862,19,9.2,18,0.0 +13862,48,12.75,43,0.0 +13862,28,45.6,9,0.0 +13862,77,13,7,0.0 +13862,73,15,17,0.0 +13862,45,9.5,7,0.0 +13862,27,43.9,24,0.0 +13862,38,263.5,32,0.0 +13862,22,21,22,0.0 +13862,33,2.5,3,0.0 +13862,47,9.5,14,0.0 +13862,5,21.35,18,0.0 +13862,7,30,28,0.0 +13862,40,18.4,27,0.0 +13862,12,38,26,0.0 +13862,58,13.25,47,0.0 +13863,45,9.5,29,0.0 +13863,41,9.65,25,0.0 +13863,63,43.9,1,0.0 +13863,12,38,40,0.0 +13863,52,7,28,0.0 +13863,54,7.45,30,0.0 +13863,11,21,31,0.0 +13863,51,53,13,0.0 +13863,59,55,31,0.0 +13863,18,62.5,12,0.0 +13863,6,25,18,0.0 +13863,40,18.4,10,0.0 +13863,23,9,12,0.0 +13863,14,23.25,23,0.0 +13863,36,19,26,0.0 +13863,20,81,26,0.0 +13863,35,18,1,0.0 +13863,65,21.05,6,0.0 +13863,48,12.75,44,0.0 +13863,64,33.25,12,0.0 +13863,4,22,47,0.0 +13863,25,14,10,0.0 +13863,9,97,36,0.0 +13863,7,30,14,0.0 +13863,10,31,13,0.0 +13863,67,14,46,0.0 +13863,46,12,32,0.0 +13863,50,16.25,2,0.0 +13863,58,13.25,34,0.0 +13863,47,9.5,46,0.0 +13863,19,9.2,48,0.0 +13863,60,34,28,0.0 +13863,32,32,11,0.0 +13863,22,21,29,0.0 +13863,17,39,10,0.0 +13863,76,18,25,0.0 +13863,44,19.45,32,0.0 +13863,5,21.35,13,0.0 +13863,53,32.8,47,0.0 +13863,1,18,20,0.0 +13864,38,263.5,25,0.0 +13864,25,14,28,0.0 +13864,33,2.5,8,0.0 +13864,27,43.9,20,0.0 +13864,42,14,4,0.0 +13864,45,9.5,46,0.0 +13864,41,9.65,29,0.0 +13864,63,43.9,31,0.0 +13864,35,18,24,0.0 +13864,43,46,8,0.0 +13864,67,14,10,0.0 +13864,11,21,46,0.0 +13864,29,123.79,13,0.0 +13864,56,38,26,0.0 +13864,3,10,16,0.0 +13864,46,12,2,0.0 +13864,60,34,20,0.0 +13864,72,34.8,13,0.0 +13864,18,62.5,34,0.0 +13864,7,30,19,0.0 +13864,5,21.35,34,0.0 +13864,62,49.3,29,0.0 +13864,34,14,17,0.0 +13864,70,15,23,0.0 +13864,47,9.5,44,0.0 +13864,17,39,42,0.0 +13864,24,4.5,6,0.0 +13864,40,18.4,45,0.0 +13864,55,24,41,0.0 +13864,9,97,37,0.0 +13864,66,17,16,0.0 +13864,54,7.45,15,0.0 +13864,58,13.25,28,0.0 +13864,64,33.25,39,0.0 +13864,4,22,6,0.0 +13864,50,16.25,31,0.0 +13864,23,9,33,0.0 +13864,10,31,47,0.0 +13864,75,7.75,23,0.0 +13864,69,36,5,0.0 +13864,14,23.25,34,0.0 +13864,73,15,19,0.0 +13864,53,32.8,47,0.0 +13864,74,10,13,0.0 +13864,77,13,40,0.0 +13864,6,25,46,0.0 +13864,19,9.2,46,0.0 +13864,52,7,22,0.0 +13864,49,20,22,0.0 +13864,22,21,46,0.0 +13864,61,28.5,34,0.0 +13864,28,45.6,40,0.0 +13864,31,12.5,45,0.0 +13864,13,6,46,0.0 +13864,39,18,25,0.0 +13864,32,32,49,0.0 +13864,59,55,38,0.0 +13864,37,26,50,0.0 +13864,57,19.5,29,0.0 +13864,20,81,18,0.0 +13864,15,15.5,36,0.0 +13864,44,19.45,16,0.0 +13864,68,12.5,17,0.0 +13864,51,53,49,0.0 +13864,26,31.23,45,0.0 +13864,65,21.05,34,0.0 +13864,1,18,27,0.0 +13865,26,31.23,20,0.0 +13865,20,81,49,0.0 +13865,25,14,46,0.0 +13865,37,26,43,0.0 +13865,9,97,44,0.0 +13865,17,39,2,0.0 +13865,19,9.2,44,0.0 +13865,14,23.25,6,0.0 +13865,1,18,33,0.0 +13865,13,6,19,0.0 +13865,47,9.5,44,0.0 +13865,57,19.5,45,0.0 +13865,40,18.4,40,0.0 +13865,50,16.25,17,0.0 +13865,59,55,29,0.0 +13865,73,15,10,0.0 +13865,23,9,48,0.0 +13865,5,21.35,13,0.0 +13865,71,21.5,19,0.0 +13865,2,19,43,0.0 +13865,76,18,20,0.0 +13865,62,49.3,13,0.0 +13865,11,21,38,0.0 +13865,4,22,25,0.0 +13865,30,25.89,20,0.0 +13865,56,38,43,0.0 +13865,39,18,5,0.0 +13865,33,2.5,45,0.0 +13865,52,7,44,0.0 +13865,18,62.5,36,0.0 +13865,69,36,26,0.0 +13865,10,31,42,0.0 +13865,75,7.75,6,0.0 +13865,38,263.5,33,0.0 +13865,49,20,2,0.0 +13866,33,2.5,33,0.0 +13866,48,12.75,35,0.0 +13866,4,22,39,0.0 +13866,76,18,38,0.0 +13866,5,21.35,36,0.0 +13866,22,21,20,0.0 +13866,34,14,25,0.0 +13866,24,4.5,15,0.0 +13866,50,16.25,38,0.0 +13866,73,15,32,0.0 +13866,36,19,37,0.0 +13866,10,31,21,0.0 +13866,74,10,34,0.0 +13866,72,34.8,40,0.0 +13867,26,31.23,16,0.0 +13867,3,10,23,0.0 +13867,60,34,24,0.0 +13867,24,4.5,14,0.0 +13867,7,30,12,0.0 +13867,15,15.5,13,0.0 +13867,13,6,20,0.0 +13867,8,40,20,0.0 +13867,43,46,46,0.0 +13867,52,7,15,0.0 +13867,53,32.8,29,0.0 +13867,14,23.25,44,0.0 +13867,11,21,45,0.0 +13867,36,19,35,0.0 +13867,74,10,37,0.0 +13867,33,2.5,28,0.0 +13867,29,123.79,7,0.0 +13867,67,14,43,0.0 +13867,71,21.5,43,0.0 +13867,55,24,1,0.0 +13867,23,9,21,0.0 +13867,35,18,45,0.0 +13867,17,39,38,0.0 +13867,76,18,43,0.0 +13867,5,21.35,32,0.0 +13867,54,7.45,19,0.0 +13867,1,18,29,0.0 +13867,22,21,13,0.0 +13867,27,43.9,12,0.0 +13867,69,36,43,0.0 +13867,9,97,30,0.0 +13867,50,16.25,25,0.0 +13867,56,38,28,0.0 +13867,75,7.75,29,0.0 +13867,77,13,40,0.0 +13867,44,19.45,12,0.0 +13867,39,18,49,0.0 +13867,63,43.9,8,0.0 +13867,72,34.8,30,0.0 +13867,19,9.2,8,0.0 +13867,20,81,48,0.0 +13867,32,32,20,0.0 +13867,48,12.75,22,0.0 +13867,46,12,45,0.0 +13867,4,22,46,0.0 +13867,73,15,45,0.0 +13867,30,25.89,37,0.0 +13867,40,18.4,42,0.0 +13867,47,9.5,36,0.0 +13867,45,9.5,39,0.0 +13867,21,10,49,0.0 +13867,61,28.5,8,0.0 +13867,25,14,5,0.0 +13868,6,25,8,0.0 +13868,54,7.45,10,0.0 +13868,34,14,46,0.0 +13868,62,49.3,44,0.0 +13868,49,20,17,0.0 +13868,13,6,35,0.0 +13868,75,7.75,18,0.0 +13868,27,43.9,34,0.0 +13868,25,14,16,0.0 +13868,56,38,19,0.0 +13868,60,34,39,0.0 +13868,77,13,10,0.0 +13868,21,10,41,0.0 +13868,36,19,28,0.0 +13868,8,40,1,0.0 +13868,38,263.5,14,0.0 +13868,24,4.5,7,0.0 +13868,20,81,6,0.0 +13868,40,18.4,19,0.0 +13868,23,9,44,0.0 +13868,47,9.5,34,0.0 +13868,15,15.5,22,0.0 +13868,43,46,26,0.0 +13868,71,21.5,15,0.0 +13868,67,14,35,0.0 +13868,52,7,38,0.0 +13868,16,17.45,50,0.0 +13868,29,123.79,25,0.0 +13868,73,15,40,0.0 +13868,63,43.9,14,0.0 +13868,39,18,18,0.0 +13868,22,21,45,0.0 +13868,41,9.65,11,0.0 +13868,10,31,9,0.0 +13868,12,38,46,0.0 +13868,2,19,16,0.0 +13868,74,10,31,0.0 +13868,28,45.6,43,0.0 +13868,9,97,25,0.0 +13868,44,19.45,26,0.0 +13868,59,55,31,0.0 +13868,18,62.5,49,0.0 +13868,64,33.25,47,0.0 +13868,35,18,33,0.0 +13868,76,18,17,0.0 +13868,4,22,4,0.0 +13868,42,14,27,0.0 +13868,26,31.23,12,0.0 +13868,14,23.25,9,0.0 +13868,66,17,18,0.0 +13868,53,32.8,17,0.0 +13868,48,12.75,41,0.0 +13868,31,12.5,24,0.0 +13868,33,2.5,25,0.0 +13868,32,32,13,0.0 +13868,17,39,13,0.0 +13868,55,24,27,0.0 +13868,61,28.5,34,0.0 +13868,30,25.89,31,0.0 +13868,37,26,14,0.0 +13868,70,15,16,0.0 +13868,19,9.2,25,0.0 +13868,3,10,47,0.0 +13868,1,18,25,0.0 +13868,69,36,19,0.0 +13868,7,30,27,0.0 +13868,57,19.5,50,0.0 +13868,51,53,31,0.0 +13868,50,16.25,11,0.0 +13868,11,21,42,0.0 +13868,58,13.25,16,0.0 +13868,46,12,36,0.0 +13868,72,34.8,5,0.0 +13868,5,21.35,32,0.0 +13868,68,12.5,35,0.0 +13868,65,21.05,29,0.0 +13869,31,12.5,13,0.0 +13869,21,10,5,0.0 +13869,39,18,41,0.0 +13869,27,43.9,18,0.0 +13869,54,7.45,33,0.0 +13869,23,9,17,0.0 +13869,16,17.45,22,0.0 +13869,65,21.05,31,0.0 +13869,55,24,2,0.0 +13869,29,123.79,29,0.0 +13869,24,4.5,40,0.0 +13869,18,62.5,34,0.0 +13869,13,6,45,0.0 +13869,11,21,41,0.0 +13869,37,26,37,0.0 +13869,72,34.8,16,0.0 +13869,74,10,3,0.0 +13869,42,14,23,0.0 +13869,17,39,39,0.0 +13869,52,7,16,0.0 +13869,69,36,30,0.0 +13869,1,18,3,0.0 +13869,44,19.45,28,0.0 +13869,58,13.25,49,0.0 +13869,10,31,6,0.0 +13869,76,18,26,0.0 +13869,41,9.65,32,0.0 +13869,7,30,50,0.0 +13869,30,25.89,3,0.0 +13869,56,38,35,0.0 +13869,6,25,23,0.0 +13869,63,43.9,10,0.0 +13869,70,15,44,0.0 +13869,67,14,24,0.0 +13869,25,14,16,0.0 +13869,22,21,1,0.0 +13869,15,15.5,24,0.0 +13869,46,12,10,0.0 +13869,62,49.3,14,0.0 +13869,20,81,11,0.0 +13869,32,32,31,0.0 +13869,12,38,12,0.0 +13870,53,32.8,49,0.0 +13870,40,18.4,40,0.0 +13870,63,43.9,11,0.0 +13870,17,39,38,0.0 +13870,62,49.3,36,0.0 +13870,47,9.5,25,0.0 +13870,48,12.75,4,0.0 +13870,4,22,30,0.0 +13870,69,36,16,0.0 +13870,73,15,18,0.0 +13870,30,25.89,13,0.0 +13870,16,17.45,1,0.0 +13870,34,14,3,0.0 +13870,49,20,32,0.0 +13870,71,21.5,34,0.0 +13870,38,263.5,43,0.0 +13870,22,21,16,0.0 +13870,56,38,43,0.0 +13870,25,14,15,0.0 +13870,64,33.25,6,0.0 +13870,3,10,29,0.0 +13870,20,81,44,0.0 +13870,36,19,24,0.0 +13870,59,55,28,0.0 +13870,27,43.9,1,0.0 +13870,68,12.5,47,0.0 +13870,21,10,50,0.0 +13870,39,18,14,0.0 +13870,18,62.5,19,0.0 +13870,5,21.35,38,0.0 +13870,41,9.65,42,0.0 +13870,72,34.8,22,0.0 +13870,14,23.25,16,0.0 +13870,60,34,42,0.0 +13870,70,15,16,0.0 +13870,6,25,32,0.0 +13870,1,18,35,0.0 +13870,13,6,10,0.0 +13870,15,15.5,40,0.0 +13870,24,4.5,11,0.0 +13870,29,123.79,35,0.0 +13870,37,26,50,0.0 +13870,10,31,48,0.0 +13870,9,97,45,0.0 +13870,65,21.05,37,0.0 +13870,52,7,20,0.0 +13870,67,14,24,0.0 +13870,11,21,27,0.0 +13870,28,45.6,18,0.0 +13870,50,16.25,24,0.0 +13870,66,17,22,0.0 +13870,45,9.5,9,0.0 +13870,44,19.45,31,0.0 +13870,77,13,30,0.0 +13870,26,31.23,39,0.0 +13870,57,19.5,42,0.0 +13870,74,10,15,0.0 +13870,31,12.5,43,0.0 +13870,76,18,29,0.0 +13870,51,53,29,0.0 +13870,2,19,49,0.0 +13870,8,40,40,0.0 +13870,61,28.5,32,0.0 +13870,54,7.45,47,0.0 +13870,75,7.75,1,0.0 +13870,35,18,11,0.0 +13870,42,14,42,0.0 +13870,55,24,34,0.0 +13870,32,32,9,0.0 +13870,33,2.5,24,0.0 +13870,19,9.2,50,0.0 +13870,7,30,40,0.0 +13871,2,19,1,0.0 +13871,6,25,41,0.0 +13871,38,263.5,13,0.0 +13871,44,19.45,22,0.0 +13871,45,9.5,18,0.0 +13871,19,9.2,44,0.0 +13871,25,14,48,0.0 +13871,8,40,3,0.0 +13871,22,21,19,0.0 +13871,74,10,43,0.0 +13871,3,10,11,0.0 +13871,75,7.75,34,0.0 +13871,21,10,42,0.0 +13871,54,7.45,13,0.0 +13871,27,43.9,43,0.0 +13871,13,6,4,0.0 +13871,66,17,49,0.0 +13871,15,15.5,36,0.0 +13872,20,81,10,0.0 +13872,23,9,19,0.0 +13872,34,14,17,0.0 +13872,57,19.5,43,0.0 +13872,31,12.5,33,0.0 +13872,33,2.5,21,0.0 +13872,21,10,48,0.0 +13872,25,14,48,0.0 +13872,64,33.25,24,0.0 +13872,50,16.25,38,0.0 +13872,1,18,24,0.0 +13872,49,20,2,0.0 +13872,9,97,25,0.0 +13872,65,21.05,24,0.0 +13872,75,7.75,26,0.0 +13872,67,14,7,0.0 +13872,59,55,27,0.0 +13872,11,21,11,0.0 +13872,24,4.5,33,0.0 +13872,38,263.5,34,0.0 +13872,63,43.9,45,0.0 +13872,43,46,28,0.0 +13872,36,19,36,0.0 +13872,70,15,21,0.0 +13872,6,25,32,0.0 +13872,40,18.4,16,0.0 +13873,71,21.5,22,0.0 +13873,14,23.25,50,0.0 +13873,66,17,19,0.0 +13873,32,32,39,0.0 +13873,68,12.5,8,0.0 +13873,33,2.5,25,0.0 +13873,5,21.35,29,0.0 +13873,72,34.8,15,0.0 +13873,63,43.9,48,0.0 +13873,52,7,46,0.0 +13873,41,9.65,3,0.0 +13873,56,38,29,0.0 +13873,13,6,50,0.0 +13873,4,22,30,0.0 +13873,59,55,50,0.0 +13873,3,10,39,0.0 +13873,8,40,27,0.0 +13873,75,7.75,44,0.0 +13873,43,46,7,0.0 +13873,38,263.5,50,0.0 +13873,53,32.8,6,0.0 +13873,17,39,48,0.0 +13873,24,4.5,18,0.0 +13873,29,123.79,48,0.0 +13873,42,14,1,0.0 +13873,44,19.45,2,0.0 +13873,6,25,19,0.0 +13873,70,15,24,0.0 +13873,34,14,32,0.0 +13873,60,34,3,0.0 +13873,58,13.25,43,0.0 +13873,12,38,43,0.0 +13873,74,10,48,0.0 +13873,19,9.2,28,0.0 +13873,77,13,43,0.0 +13873,22,21,12,0.0 +13873,20,81,7,0.0 +13873,47,9.5,28,0.0 +13873,7,30,39,0.0 +13873,37,26,38,0.0 +13873,69,36,21,0.0 +13873,28,45.6,37,0.0 +13873,45,9.5,31,0.0 +13873,51,53,36,0.0 +13873,40,18.4,31,0.0 +13873,2,19,40,0.0 +13873,50,16.25,19,0.0 +13874,47,9.5,7,0.0 +13874,55,24,15,0.0 +13874,40,18.4,46,0.0 +13874,20,81,50,0.0 +13874,74,10,48,0.0 +13874,58,13.25,36,0.0 +13874,5,21.35,31,0.0 +13874,37,26,20,0.0 +13874,65,21.05,35,0.0 +13874,68,12.5,27,0.0 +13874,22,21,2,0.0 +13874,49,20,24,0.0 +13874,38,263.5,20,0.0 +13874,21,10,29,0.0 +13874,76,18,7,0.0 +13874,23,9,16,0.0 +13874,7,30,10,0.0 +13874,42,14,27,0.0 +13874,33,2.5,35,0.0 +13874,63,43.9,27,0.0 +13874,77,13,32,0.0 +13874,66,17,2,0.0 +13874,59,55,41,0.0 +13874,19,9.2,33,0.0 +13874,31,12.5,8,0.0 +13874,24,4.5,20,0.0 +13874,48,12.75,45,0.0 +13874,12,38,19,0.0 +13874,6,25,18,0.0 +13874,72,34.8,20,0.0 +13874,14,23.25,32,0.0 +13874,28,45.6,23,0.0 +13874,13,6,14,0.0 +13874,62,49.3,43,0.0 +13874,18,62.5,5,0.0 +13874,70,15,36,0.0 +13874,26,31.23,10,0.0 +13874,61,28.5,42,0.0 +13874,16,17.45,48,0.0 +13874,25,14,13,0.0 +13874,17,39,23,0.0 +13874,27,43.9,28,0.0 +13874,64,33.25,14,0.0 +13874,11,21,13,0.0 +13874,51,53,12,0.0 +13874,53,32.8,18,0.0 +13874,29,123.79,23,0.0 +13874,2,19,48,0.0 +13874,73,15,30,0.0 +13874,52,7,35,0.0 +13874,15,15.5,39,0.0 +13874,39,18,13,0.0 +13874,30,25.89,19,0.0 +13874,71,21.5,30,0.0 +13874,34,14,11,0.0 +13874,1,18,44,0.0 +13874,44,19.45,12,0.0 +13874,50,16.25,40,0.0 +13874,35,18,35,0.0 +13874,36,19,11,0.0 +13874,3,10,8,0.0 +13874,69,36,35,0.0 +13874,60,34,45,0.0 +13874,8,40,44,0.0 +13874,46,12,24,0.0 +13874,57,19.5,32,0.0 +13875,29,123.79,28,0.0 +13875,35,18,3,0.0 +13875,18,62.5,46,0.0 +13875,14,23.25,23,0.0 +13875,73,15,21,0.0 +13875,60,34,12,0.0 +13875,62,49.3,21,0.0 +13875,11,21,31,0.0 +13875,57,19.5,11,0.0 +13875,27,43.9,2,0.0 +13875,9,97,32,0.0 +13875,71,21.5,12,0.0 +13875,54,7.45,41,0.0 +13875,63,43.9,42,0.0 +13875,45,9.5,33,0.0 +13875,15,15.5,40,0.0 +13875,65,21.05,12,0.0 +13876,9,97,47,0.0 +13876,3,10,21,0.0 +13876,7,30,22,0.0 +13876,58,13.25,30,0.0 +13876,66,17,33,0.0 +13876,43,46,39,0.0 +13876,54,7.45,32,0.0 +13876,36,19,1,0.0 +13876,32,32,7,0.0 +13876,17,39,50,0.0 +13876,50,16.25,32,0.0 +13876,76,18,15,0.0 +13876,75,7.75,3,0.0 +13876,1,18,8,0.0 +13876,46,12,48,0.0 +13876,59,55,27,0.0 +13876,39,18,12,0.0 +13876,40,18.4,39,0.0 +13876,22,21,13,0.0 +13876,13,6,37,0.0 +13876,48,12.75,21,0.0 +13876,8,40,14,0.0 +13876,33,2.5,35,0.0 +13876,69,36,26,0.0 +13876,41,9.65,13,0.0 +13876,19,9.2,12,0.0 +13876,24,4.5,49,0.0 +13876,49,20,39,0.0 +13876,56,38,40,0.0 +13876,28,45.6,1,0.0 +13876,51,53,31,0.0 +13876,5,21.35,44,0.0 +13877,29,123.79,40,0.0 +13877,4,22,38,0.0 +13877,75,7.75,40,0.0 +13877,21,10,10,0.0 +13877,54,7.45,27,0.0 +13877,22,21,47,0.0 +13877,1,18,19,0.0 +13877,57,19.5,17,0.0 +13877,42,14,9,0.0 +13877,32,32,4,0.0 +13877,71,21.5,14,0.0 +13877,37,26,33,0.0 +13877,66,17,33,0.0 +13877,23,9,43,0.0 +13877,38,263.5,29,0.0 +13878,44,19.45,21,0.0 +13878,24,4.5,31,0.0 +13878,20,81,26,0.0 +13878,74,10,27,0.0 +13878,25,14,30,0.0 +13878,42,14,21,0.0 +13878,73,15,26,0.0 +13878,39,18,23,0.0 +13878,59,55,47,0.0 +13878,69,36,3,0.0 +13878,8,40,1,0.0 +13878,66,17,5,0.0 +13878,65,21.05,32,0.0 +13878,46,12,44,0.0 +13878,1,18,43,0.0 +13878,7,30,45,0.0 +13878,47,9.5,24,0.0 +13878,38,263.5,37,0.0 +13878,75,7.75,31,0.0 +13878,55,24,41,0.0 +13878,30,25.89,31,0.0 +13878,34,14,43,0.0 +13878,52,7,35,0.0 +13878,31,12.5,20,0.0 +13878,4,22,9,0.0 +13878,45,9.5,33,0.0 +13878,13,6,4,0.0 +13878,35,18,29,0.0 +13878,51,53,26,0.0 +13878,67,14,11,0.0 +13878,26,31.23,11,0.0 +13878,37,26,10,0.0 +13878,18,62.5,39,0.0 +13878,58,13.25,8,0.0 +13878,12,38,14,0.0 +13878,48,12.75,8,0.0 +13878,70,15,27,0.0 +13878,41,9.65,37,0.0 +13878,68,12.5,2,0.0 +13878,54,7.45,8,0.0 +13878,32,32,37,0.0 +13878,36,19,46,0.0 +13878,28,45.6,44,0.0 +13878,9,97,40,0.0 +13878,77,13,27,0.0 +13878,43,46,46,0.0 +13878,33,2.5,39,0.0 +13878,63,43.9,16,0.0 +13878,40,18.4,13,0.0 +13878,50,16.25,25,0.0 +13878,10,31,20,0.0 +13878,29,123.79,9,0.0 +13878,72,34.8,39,0.0 +13878,71,21.5,1,0.0 +13878,6,25,12,0.0 +13878,21,10,13,0.0 +13878,49,20,13,0.0 +13878,23,9,38,0.0 +13878,11,21,41,0.0 +13878,62,49.3,18,0.0 +13878,2,19,35,0.0 +13878,17,39,11,0.0 +13878,53,32.8,19,0.0 +13878,22,21,24,0.0 +13878,27,43.9,40,0.0 +13878,64,33.25,21,0.0 +13878,5,21.35,49,0.0 +13878,19,9.2,28,0.0 +13879,34,14,40,0.0 +13879,61,28.5,49,0.0 +13879,8,40,22,0.0 +13879,72,34.8,43,0.0 +13879,39,18,31,0.0 +13879,24,4.5,14,0.0 +13879,75,7.75,1,0.0 +13879,44,19.45,21,0.0 +13879,63,43.9,41,0.0 +13879,40,18.4,26,0.0 +13879,20,81,7,0.0 +13879,14,23.25,9,0.0 +13879,11,21,20,0.0 +13879,77,13,9,0.0 +13879,19,9.2,31,0.0 +13879,38,263.5,19,0.0 +13879,7,30,44,0.0 +13879,26,31.23,15,0.0 +13879,62,49.3,33,0.0 +13879,2,19,18,0.0 +13879,18,62.5,46,0.0 +13879,4,22,28,0.0 +13879,59,55,39,0.0 +13879,16,17.45,26,0.0 +13879,33,2.5,50,0.0 +13879,32,32,36,0.0 +13879,64,33.25,24,0.0 +13879,9,97,36,0.0 +13879,35,18,34,0.0 +13879,76,18,32,0.0 +13879,56,38,33,0.0 +13879,31,12.5,3,0.0 +13879,74,10,28,0.0 +13879,69,36,33,0.0 +13879,23,9,47,0.0 +13879,42,14,16,0.0 +13879,6,25,9,0.0 +13879,70,15,30,0.0 +13879,60,34,23,0.0 +13879,48,12.75,1,0.0 +13879,55,24,6,0.0 +13879,43,46,9,0.0 +13879,73,15,30,0.0 +13879,15,15.5,44,0.0 +13879,28,45.6,1,0.0 +13879,21,10,35,0.0 +13879,65,21.05,30,0.0 +13879,10,31,7,0.0 +13879,17,39,18,0.0 +13879,46,12,16,0.0 +13879,12,38,41,0.0 +13879,57,19.5,38,0.0 +13879,5,21.35,25,0.0 +13879,1,18,28,0.0 +13879,50,16.25,49,0.0 +13879,3,10,1,0.0 +13879,71,21.5,21,0.0 +13879,29,123.79,13,0.0 +13879,58,13.25,3,0.0 +13880,50,16.25,40,0.0 +13880,63,43.9,32,0.0 +13880,35,18,8,0.0 +13880,27,43.9,4,0.0 +13880,48,12.75,6,0.0 +13880,25,14,48,0.0 +13880,76,18,5,0.0 +13880,6,25,48,0.0 +13880,24,4.5,21,0.0 +13880,19,9.2,48,0.0 +13880,44,19.45,39,0.0 +13880,70,15,9,0.0 +13881,32,32,14,0.0 +13881,12,38,50,0.0 +13881,10,31,44,0.0 +13881,35,18,46,0.0 +13881,2,19,40,0.0 +13881,59,55,35,0.0 +13881,25,14,13,0.0 +13881,26,31.23,21,0.0 +13881,45,9.5,36,0.0 +13881,24,4.5,11,0.0 +13881,52,7,28,0.0 +13881,3,10,9,0.0 +13881,71,21.5,34,0.0 +13881,53,32.8,11,0.0 +13881,54,7.45,6,0.0 +13881,61,28.5,50,0.0 +13881,70,15,43,0.0 +13881,14,23.25,28,0.0 +13881,56,38,31,0.0 +13881,16,17.45,38,0.0 +13882,42,14,10,0.0 +13882,30,25.89,39,0.0 +13882,68,12.5,37,0.0 +13882,76,18,44,0.0 +13882,29,123.79,24,0.0 +13882,1,18,33,0.0 +13882,24,4.5,17,0.0 +13882,27,43.9,15,0.0 +13882,72,34.8,37,0.0 +13882,10,31,16,0.0 +13882,62,49.3,37,0.0 +13882,38,263.5,32,0.0 +13882,40,18.4,44,0.0 +13882,43,46,6,0.0 +13883,10,31,31,0.0 +13883,19,9.2,12,0.0 +13883,62,49.3,42,0.0 +13883,60,34,42,0.0 +13883,9,97,1,0.0 +13883,23,9,14,0.0 +13883,47,9.5,20,0.0 +13883,43,46,10,0.0 +13883,29,123.79,5,0.0 +13883,6,25,27,0.0 +13883,44,19.45,44,0.0 +13883,33,2.5,48,0.0 +13883,36,19,45,0.0 +13883,48,12.75,29,0.0 +13883,55,24,6,0.0 +13883,46,12,24,0.0 +13883,64,33.25,34,0.0 +13883,12,38,12,0.0 +13883,37,26,33,0.0 +13883,22,21,42,0.0 +13883,7,30,11,0.0 +13883,27,43.9,13,0.0 +13883,53,32.8,5,0.0 +13883,34,14,37,0.0 +13883,56,38,24,0.0 +13883,63,43.9,47,0.0 +13883,14,23.25,32,0.0 +13883,45,9.5,8,0.0 +13883,30,25.89,10,0.0 +13883,74,10,12,0.0 +13883,5,21.35,47,0.0 +13883,2,19,12,0.0 +13883,26,31.23,12,0.0 +13883,77,13,28,0.0 +13883,73,15,7,0.0 +13884,22,21,28,0.0 +13884,53,32.8,27,0.0 +13884,28,45.6,36,0.0 +13884,17,39,31,0.0 +13884,45,9.5,35,0.0 +13884,6,25,17,0.0 +13884,76,18,42,0.0 +13884,74,10,6,0.0 +13884,24,4.5,42,0.0 +13884,7,30,29,0.0 +13884,32,32,41,0.0 +13884,11,21,11,0.0 +13884,63,43.9,29,0.0 +13884,72,34.8,18,0.0 +13884,75,7.75,28,0.0 +13884,39,18,35,0.0 +13884,49,20,31,0.0 +13884,50,16.25,38,0.0 +13884,4,22,16,0.0 +13884,30,25.89,48,0.0 +13884,46,12,2,0.0 +13884,31,12.5,1,0.0 +13884,42,14,37,0.0 +13884,35,18,11,0.0 +13884,70,15,46,0.0 +13884,64,33.25,42,0.0 +13884,14,23.25,5,0.0 +13884,71,21.5,3,0.0 +13884,67,14,13,0.0 +13884,37,26,50,0.0 +13884,20,81,45,0.0 +13884,12,38,37,0.0 +13884,62,49.3,21,0.0 +13884,5,21.35,4,0.0 +13884,77,13,25,0.0 +13884,8,40,8,0.0 +13884,66,17,29,0.0 +13884,65,21.05,13,0.0 +13884,48,12.75,46,0.0 +13884,2,19,41,0.0 +13884,52,7,35,0.0 +13884,13,6,45,0.0 +13884,26,31.23,18,0.0 +13884,23,9,20,0.0 +13884,27,43.9,44,0.0 +13884,25,14,25,0.0 +13884,36,19,13,0.0 +13884,43,46,10,0.0 +13884,29,123.79,18,0.0 +13884,47,9.5,42,0.0 +13884,21,10,7,0.0 +13884,19,9.2,3,0.0 +13884,1,18,32,0.0 +13884,60,34,50,0.0 +13884,68,12.5,30,0.0 +13885,56,38,45,0.0 +13885,2,19,6,0.0 +13885,57,19.5,31,0.0 +13885,7,30,7,0.0 +13885,60,34,41,0.0 +13885,43,46,21,0.0 +13885,14,23.25,11,0.0 +13885,31,12.5,33,0.0 +13885,29,123.79,9,0.0 +13885,19,9.2,46,0.0 +13885,47,9.5,18,0.0 +13885,51,53,40,0.0 +13885,18,62.5,32,0.0 +13885,71,21.5,43,0.0 +13885,59,55,1,0.0 +13885,39,18,10,0.0 +13886,2,19,49,0.0 +13886,72,34.8,49,0.0 +13886,51,53,48,0.0 +13886,44,19.45,38,0.0 +13886,24,4.5,26,0.0 +13886,30,25.89,11,0.0 +13886,19,9.2,50,0.0 +13886,25,14,46,0.0 +13886,28,45.6,21,0.0 +13886,60,34,18,0.0 +13886,32,32,20,0.0 +13886,73,15,18,0.0 +13886,56,38,42,0.0 +13886,10,31,6,0.0 +13886,49,20,47,0.0 +13886,15,15.5,29,0.0 +13886,36,19,28,0.0 +13886,52,7,40,0.0 +13886,13,6,50,0.0 +13886,37,26,18,0.0 +13886,40,18.4,20,0.0 +13886,59,55,32,0.0 +13886,66,17,36,0.0 +13886,21,10,8,0.0 +13886,18,62.5,28,0.0 +13886,62,49.3,2,0.0 +13886,39,18,32,0.0 +13886,17,39,37,0.0 +13886,63,43.9,36,0.0 +13886,58,13.25,39,0.0 +13886,27,43.9,11,0.0 +13886,26,31.23,35,0.0 +13886,3,10,50,0.0 +13886,6,25,17,0.0 +13886,1,18,9,0.0 +13886,77,13,10,0.0 +13886,20,81,20,0.0 +13886,64,33.25,23,0.0 +13886,41,9.65,1,0.0 +13886,50,16.25,27,0.0 +13886,31,12.5,44,0.0 +13886,74,10,32,0.0 +13886,14,23.25,3,0.0 +13886,46,12,43,0.0 +13886,70,15,26,0.0 +13886,22,21,11,0.0 +13886,61,28.5,13,0.0 +13886,45,9.5,42,0.0 +13886,75,7.75,31,0.0 +13886,48,12.75,26,0.0 +13886,8,40,3,0.0 +13886,55,24,21,0.0 +13886,34,14,18,0.0 +13886,54,7.45,31,0.0 +13886,42,14,26,0.0 +13886,53,32.8,2,0.0 +13886,67,14,22,0.0 +13886,29,123.79,11,0.0 +13886,33,2.5,45,0.0 +13886,76,18,20,0.0 +13886,23,9,13,0.0 +13886,43,46,20,0.0 +13886,4,22,24,0.0 +13886,5,21.35,44,0.0 +13886,38,263.5,4,0.0 +13886,9,97,27,0.0 +13886,68,12.5,20,0.0 +13886,65,21.05,18,0.0 +13886,47,9.5,16,0.0 +13886,35,18,29,0.0 +13886,69,36,8,0.0 +13886,71,21.5,42,0.0 +13887,50,16.25,5,0.0 +13887,51,53,13,0.0 +13887,35,18,33,0.0 +13887,15,15.5,21,0.0 +13887,13,6,12,0.0 +13887,48,12.75,20,0.0 +13887,52,7,1,0.0 +13887,25,14,42,0.0 +13887,36,19,22,0.0 +13887,19,9.2,49,0.0 +13887,65,21.05,13,0.0 +13887,10,31,8,0.0 +13887,32,32,9,0.0 +13887,55,24,41,0.0 +13887,2,19,33,0.0 +13887,33,2.5,9,0.0 +13887,49,20,12,0.0 +13887,11,21,22,0.0 +13887,73,15,12,0.0 +13887,3,10,21,0.0 +13887,21,10,43,0.0 +13887,64,33.25,11,0.0 +13887,8,40,39,0.0 +13887,29,123.79,3,0.0 +13887,72,34.8,50,0.0 +13887,28,45.6,21,0.0 +13887,26,31.23,4,0.0 +13887,40,18.4,12,0.0 +13887,14,23.25,13,0.0 +13887,1,18,40,0.0 +13887,67,14,26,0.0 +13887,20,81,16,0.0 +13887,34,14,36,0.0 +13887,47,9.5,46,0.0 +13887,77,13,6,0.0 +13887,7,30,11,0.0 +13887,63,43.9,7,0.0 +13887,60,34,24,0.0 +13887,44,19.45,39,0.0 +13887,37,26,30,0.0 +13887,61,28.5,15,0.0 +13887,68,12.5,6,0.0 +13887,70,15,44,0.0 +13887,42,14,46,0.0 +13887,58,13.25,23,0.0 +13887,53,32.8,33,0.0 +13887,18,62.5,17,0.0 +13887,74,10,13,0.0 +13887,76,18,5,0.0 +13887,24,4.5,44,0.0 +13887,57,19.5,41,0.0 +13887,39,18,40,0.0 +13887,71,21.5,37,0.0 +13887,30,25.89,28,0.0 +13887,16,17.45,13,0.0 +13888,45,9.5,31,0.0 +13888,8,40,1,0.0 +13888,56,38,5,0.0 +13888,68,12.5,33,0.0 +13888,39,18,19,0.0 +13888,54,7.45,2,0.0 +13888,77,13,50,0.0 +13888,22,21,10,0.0 +13888,67,14,32,0.0 +13888,73,15,40,0.0 +13888,37,26,25,0.0 +13888,25,14,33,0.0 +13888,27,43.9,30,0.0 +13888,55,24,5,0.0 +13889,58,13.25,36,0.0 +13889,76,18,37,0.0 +13889,33,2.5,44,0.0 +13889,26,31.23,11,0.0 +13889,52,7,37,0.0 +13889,51,53,27,0.0 +13889,67,14,19,0.0 +13889,69,36,6,0.0 +13889,39,18,38,0.0 +13889,16,17.45,19,0.0 +13889,62,49.3,22,0.0 +13889,72,34.8,8,0.0 +13889,74,10,4,0.0 +13889,44,19.45,18,0.0 +13889,17,39,15,0.0 +13889,73,15,45,0.0 +13889,61,28.5,33,0.0 +13889,50,16.25,41,0.0 +13889,45,9.5,5,0.0 +13889,77,13,37,0.0 +13889,9,97,11,0.0 +13889,68,12.5,12,0.0 +13889,64,33.25,30,0.0 +13889,70,15,20,0.0 +13889,42,14,34,0.0 +13889,8,40,46,0.0 +13889,28,45.6,42,0.0 +13889,4,22,47,0.0 +13889,71,21.5,41,0.0 +13890,66,17,36,0.0 +13890,61,28.5,33,0.0 +13891,6,25,35,0.0 +13891,32,32,43,0.0 +13891,48,12.75,24,0.0 +13892,64,33.25,47,0.0 +13892,31,12.5,24,0.0 +13892,15,15.5,37,0.0 +13892,61,28.5,14,0.0 +13892,76,18,33,0.0 +13892,27,43.9,21,0.0 +13892,11,21,34,0.0 +13892,18,62.5,10,0.0 +13892,37,26,18,0.0 +13892,8,40,28,0.0 +13892,36,19,46,0.0 +13892,24,4.5,50,0.0 +13892,74,10,34,0.0 +13892,48,12.75,38,0.0 +13892,20,81,35,0.0 +13892,16,17.45,22,0.0 +13892,53,32.8,14,0.0 +13892,66,17,44,0.0 +13892,72,34.8,6,0.0 +13892,26,31.23,6,0.0 +13892,2,19,27,0.0 +13892,59,55,31,0.0 +13892,40,18.4,10,0.0 +13892,75,7.75,27,0.0 +13892,1,18,16,0.0 +13892,42,14,2,0.0 +13892,47,9.5,8,0.0 +13892,10,31,41,0.0 +13892,17,39,21,0.0 +13892,25,14,31,0.0 +13892,44,19.45,8,0.0 +13892,4,22,1,0.0 +13892,54,7.45,46,0.0 +13892,62,49.3,15,0.0 +13892,68,12.5,10,0.0 +13892,13,6,14,0.0 +13892,28,45.6,29,0.0 +13892,67,14,37,0.0 +13892,69,36,3,0.0 +13892,12,38,25,0.0 +13892,35,18,40,0.0 +13892,43,46,11,0.0 +13893,51,53,39,0.0 +13893,19,9.2,25,0.0 +13893,17,39,15,0.0 +13893,20,81,44,0.0 +13893,5,21.35,6,0.0 +13893,56,38,4,0.0 +13893,50,16.25,48,0.0 +13893,43,46,22,0.0 +13893,62,49.3,12,0.0 +13893,35,18,28,0.0 +13893,15,15.5,9,0.0 +13893,70,15,14,0.0 +13893,36,19,35,0.0 +13893,11,21,1,0.0 +13893,67,14,3,0.0 +13893,69,36,15,0.0 +13893,68,12.5,28,0.0 +13893,37,26,40,0.0 +13893,2,19,4,0.0 +13893,40,18.4,35,0.0 +13893,13,6,24,0.0 +13893,49,20,5,0.0 +13893,21,10,50,0.0 +13893,23,9,26,0.0 +13893,73,15,35,0.0 +13893,54,7.45,14,0.0 +13893,4,22,41,0.0 +13893,16,17.45,8,0.0 +13893,18,62.5,38,0.0 +13893,6,25,50,0.0 +13893,55,24,18,0.0 +13893,47,9.5,37,0.0 +13893,45,9.5,19,0.0 +13893,76,18,22,0.0 +13893,32,32,36,0.0 +13893,1,18,46,0.0 +13893,10,31,3,0.0 +13893,14,23.25,8,0.0 +13893,26,31.23,47,0.0 +13893,44,19.45,50,0.0 +13893,63,43.9,20,0.0 +13893,61,28.5,31,0.0 +13893,59,55,45,0.0 +13893,72,34.8,18,0.0 +13893,52,7,19,0.0 +13893,12,38,31,0.0 +13893,58,13.25,4,0.0 +13893,57,19.5,4,0.0 +13893,7,30,42,0.0 +13893,75,7.75,18,0.0 +13893,27,43.9,43,0.0 +13893,28,45.6,16,0.0 +13893,8,40,9,0.0 +13893,48,12.75,5,0.0 +13893,34,14,21,0.0 +13893,22,21,25,0.0 +13894,73,15,1,0.0 +13894,28,45.6,2,0.0 +13894,38,263.5,45,0.0 +13894,52,7,43,0.0 +13894,66,17,23,0.0 +13894,54,7.45,34,0.0 +13894,6,25,5,0.0 +13894,26,31.23,29,0.0 +13894,24,4.5,30,0.0 +13894,65,21.05,15,0.0 +13894,41,9.65,32,0.0 +13894,45,9.5,22,0.0 +13894,15,15.5,49,0.0 +13894,5,21.35,42,0.0 +13894,36,19,37,0.0 +13894,57,19.5,40,0.0 +13894,14,23.25,43,0.0 +13894,7,30,29,0.0 +13894,76,18,32,0.0 +13894,72,34.8,10,0.0 +13894,1,18,48,0.0 +13894,18,62.5,26,0.0 +13894,55,24,17,0.0 +13894,68,12.5,45,0.0 +13894,39,18,40,0.0 +13894,46,12,25,0.0 +13894,29,123.79,42,0.0 +13894,33,2.5,48,0.0 +13894,75,7.75,21,0.0 +13894,56,38,23,0.0 +13894,69,36,31,0.0 +13894,20,81,37,0.0 +13894,48,12.75,39,0.0 +13894,51,53,1,0.0 +13894,2,19,33,0.0 +13894,16,17.45,50,0.0 +13894,8,40,41,0.0 +13894,53,32.8,30,0.0 +13894,47,9.5,6,0.0 +13894,22,21,10,0.0 +13894,50,16.25,3,0.0 +13894,10,31,21,0.0 +13894,70,15,40,0.0 +13894,27,43.9,39,0.0 +13894,43,46,46,0.0 +13894,58,13.25,19,0.0 +13894,34,14,9,0.0 +13894,49,20,12,0.0 +13894,61,28.5,29,0.0 +13894,40,18.4,4,0.0 +13894,64,33.25,9,0.0 +13894,30,25.89,28,0.0 +13894,67,14,22,0.0 +13894,37,26,50,0.0 +13894,63,43.9,31,0.0 +13894,77,13,46,0.0 +13894,71,21.5,36,0.0 +13894,19,9.2,42,0.0 +13895,51,53,14,0.0 +13895,30,25.89,37,0.0 +13895,63,43.9,22,0.0 +13895,64,33.25,19,0.0 +13895,31,12.5,23,0.0 +13895,72,34.8,29,0.0 +13895,11,21,10,0.0 +13895,68,12.5,35,0.0 +13895,38,263.5,48,0.0 +13895,6,25,9,0.0 +13895,28,45.6,36,0.0 +13895,47,9.5,3,0.0 +13895,5,21.35,48,0.0 +13895,12,38,23,0.0 +13895,35,18,8,0.0 +13895,29,123.79,27,0.0 +13895,42,14,30,0.0 +13895,60,34,18,0.0 +13895,19,9.2,47,0.0 +13895,58,13.25,12,0.0 +13895,57,19.5,8,0.0 +13895,59,55,41,0.0 +13895,76,18,34,0.0 +13895,44,19.45,19,0.0 +13895,74,10,16,0.0 +13895,45,9.5,42,0.0 +13895,15,15.5,42,0.0 +13895,54,7.45,11,0.0 +13895,36,19,22,0.0 +13895,1,18,36,0.0 +13895,14,23.25,3,0.0 +13895,3,10,39,0.0 +13895,21,10,11,0.0 +13895,2,19,46,0.0 +13895,69,36,43,0.0 +13895,18,62.5,36,0.0 +13895,34,14,10,0.0 +13895,46,12,45,0.0 +13895,40,18.4,17,0.0 +13895,55,24,46,0.0 +13895,32,32,24,0.0 +13895,52,7,23,0.0 +13895,24,4.5,10,0.0 +13895,56,38,48,0.0 +13895,8,40,27,0.0 +13895,50,16.25,18,0.0 +13895,71,21.5,15,0.0 +13895,10,31,46,0.0 +13895,43,46,42,0.0 +13895,22,21,16,0.0 +13895,27,43.9,48,0.0 +13895,9,97,11,0.0 +13895,67,14,8,0.0 +13895,25,14,36,0.0 +13895,65,21.05,20,0.0 +13895,62,49.3,34,0.0 +13895,77,13,14,0.0 +13895,26,31.23,31,0.0 +13895,61,28.5,14,0.0 +13895,7,30,44,0.0 +13895,49,20,26,0.0 +13895,75,7.75,37,0.0 +13895,16,17.45,13,0.0 +13895,23,9,14,0.0 +13895,73,15,20,0.0 +13895,66,17,46,0.0 +13895,17,39,43,0.0 +13895,53,32.8,46,0.0 +13895,70,15,24,0.0 +13895,41,9.65,12,0.0 +13895,20,81,3,0.0 +13895,39,18,33,0.0 +13895,48,12.75,11,0.0 +13895,33,2.5,45,0.0 +13895,13,6,9,0.0 +13895,4,22,26,0.0 +13896,7,30,22,0.0 +13896,61,28.5,7,0.0 +13896,28,45.6,26,0.0 +13896,35,18,7,0.0 +13896,22,21,28,0.0 +13896,38,263.5,42,0.0 +13896,59,55,31,0.0 +13896,34,14,36,0.0 +13896,52,7,6,0.0 +13896,43,46,36,0.0 +13896,30,25.89,37,0.0 +13896,62,49.3,29,0.0 +13896,36,19,31,0.0 +13896,60,34,10,0.0 +13896,75,7.75,4,0.0 +13896,3,10,5,0.0 +13896,8,40,19,0.0 +13896,29,123.79,41,0.0 +13896,58,13.25,45,0.0 +13896,45,9.5,11,0.0 +13896,21,10,18,0.0 +13896,32,32,23,0.0 +13896,68,12.5,16,0.0 +13896,25,14,48,0.0 +13896,63,43.9,39,0.0 +13896,10,31,29,0.0 +13896,13,6,11,0.0 +13896,42,14,39,0.0 +13896,70,15,9,0.0 +13896,33,2.5,45,0.0 +13896,65,21.05,1,0.0 +13896,50,16.25,19,0.0 +13896,55,24,24,0.0 +13896,17,39,44,0.0 +13896,18,62.5,21,0.0 +13896,27,43.9,26,0.0 +13896,76,18,5,0.0 +13896,40,18.4,36,0.0 +13896,19,9.2,43,0.0 +13896,57,19.5,48,0.0 +13896,53,32.8,28,0.0 +13896,69,36,41,0.0 +13896,77,13,23,0.0 +13896,23,9,50,0.0 +13896,31,12.5,10,0.0 +13896,64,33.25,35,0.0 +13896,5,21.35,42,0.0 +13896,44,19.45,31,0.0 +13896,39,18,22,0.0 +13896,24,4.5,12,0.0 +13896,48,12.75,1,0.0 +13896,67,14,14,0.0 +13896,4,22,39,0.0 +13896,51,53,35,0.0 +13896,1,18,34,0.0 +13896,11,21,27,0.0 +13897,48,12.75,11,0.0 +13897,59,55,17,0.0 +13897,44,19.45,4,0.0 +13897,39,18,24,0.0 +13897,21,10,48,0.0 +13897,19,9.2,39,0.0 +13897,54,7.45,50,0.0 +13897,10,31,35,0.0 +13897,26,31.23,14,0.0 +13897,24,4.5,17,0.0 +13897,66,17,7,0.0 +13897,55,24,5,0.0 +13897,71,21.5,47,0.0 +13897,76,18,48,0.0 +13897,13,6,8,0.0 +13897,28,45.6,13,0.0 +13897,69,36,20,0.0 +13897,9,97,6,0.0 +13897,2,19,50,0.0 +13897,63,43.9,2,0.0 +13897,50,16.25,37,0.0 +13897,32,32,2,0.0 +13897,43,46,34,0.0 +13897,52,7,27,0.0 +13897,15,15.5,49,0.0 +13897,62,49.3,1,0.0 +13897,23,9,49,0.0 +13897,65,21.05,34,0.0 +13897,4,22,1,0.0 +13897,57,19.5,39,0.0 +13897,18,62.5,25,0.0 +13897,51,53,43,0.0 +13897,56,38,3,0.0 +13897,72,34.8,42,0.0 +13897,34,14,47,0.0 +13897,73,15,26,0.0 +13897,36,19,46,0.0 +13897,61,28.5,9,0.0 +13897,49,20,36,0.0 +13897,20,81,12,0.0 +13897,38,263.5,31,0.0 +13897,3,10,5,0.0 +13897,16,17.45,32,0.0 +13897,42,14,42,0.0 +13897,25,14,21,0.0 +13897,53,32.8,11,0.0 +13897,40,18.4,4,0.0 +13897,29,123.79,38,0.0 +13897,46,12,41,0.0 +13897,5,21.35,16,0.0 +13897,31,12.5,33,0.0 +13897,64,33.25,1,0.0 +13897,58,13.25,15,0.0 +13897,27,43.9,29,0.0 +13897,17,39,20,0.0 +13897,45,9.5,39,0.0 +13897,41,9.65,1,0.0 +13897,12,38,46,0.0 +13897,77,13,34,0.0 +13897,14,23.25,25,0.0 +13897,70,15,28,0.0 +13897,1,18,4,0.0 +13897,47,9.5,26,0.0 +13897,60,34,17,0.0 +13897,67,14,4,0.0 +13897,68,12.5,12,0.0 +13897,74,10,13,0.0 +13897,75,7.75,20,0.0 +13897,22,21,23,0.0 +13897,30,25.89,45,0.0 +13897,11,21,39,0.0 +13897,6,25,1,0.0 +13898,10,31,4,0.0 +13898,42,14,1,0.0 +13898,28,45.6,28,0.0 +13898,64,33.25,5,0.0 +13898,41,9.65,3,0.0 +13898,23,9,17,0.0 +13898,12,38,50,0.0 +13898,15,15.5,16,0.0 +13898,7,30,36,0.0 +13898,27,43.9,43,0.0 +13898,32,32,4,0.0 +13898,2,19,43,0.0 +13898,1,18,27,0.0 +13898,58,13.25,40,0.0 +13898,73,15,25,0.0 +13898,50,16.25,26,0.0 +13898,34,14,49,0.0 +13899,28,45.6,37,0.0 +13899,5,21.35,35,0.0 +13899,10,31,31,0.0 +13899,70,15,42,0.0 +13899,32,32,11,0.0 +13899,47,9.5,18,0.0 +13899,73,15,16,0.0 +13899,12,38,1,0.0 +13899,54,7.45,29,0.0 +13899,35,18,11,0.0 +13899,19,9.2,41,0.0 +13899,20,81,23,0.0 +13899,74,10,19,0.0 +13899,69,36,45,0.0 +13899,16,17.45,1,0.0 +13899,29,123.79,23,0.0 +13899,63,43.9,7,0.0 +13899,8,40,43,0.0 +13899,9,97,13,0.0 +13899,4,22,9,0.0 +13899,49,20,7,0.0 +13899,3,10,20,0.0 +13899,38,263.5,37,0.0 +13899,25,14,25,0.0 +13899,34,14,22,0.0 +13899,15,15.5,14,0.0 +13899,21,10,35,0.0 +13899,30,25.89,15,0.0 +13899,52,7,24,0.0 +13899,60,34,23,0.0 +13899,48,12.75,6,0.0 +13899,45,9.5,45,0.0 +13899,44,19.45,39,0.0 +13899,31,12.5,33,0.0 +13899,67,14,43,0.0 +13899,41,9.65,8,0.0 +13899,75,7.75,14,0.0 +13899,53,32.8,6,0.0 +13899,18,62.5,48,0.0 +13899,66,17,4,0.0 +13899,71,21.5,8,0.0 +13899,62,49.3,22,0.0 +13899,22,21,16,0.0 +13899,2,19,30,0.0 +13899,57,19.5,20,0.0 +13899,72,34.8,38,0.0 +13899,17,39,50,0.0 +13899,58,13.25,29,0.0 +13899,76,18,50,0.0 +13900,8,40,6,0.0 +13900,20,81,6,0.0 +13900,43,46,40,0.0 +13900,70,15,33,0.0 +13900,32,32,48,0.0 +13900,52,7,13,0.0 +13900,56,38,10,0.0 +13900,76,18,8,0.0 +13900,55,24,16,0.0 +13900,6,25,25,0.0 +13900,36,19,24,0.0 +13900,64,33.25,47,0.0 +13900,54,7.45,23,0.0 +13900,9,97,40,0.0 +13900,29,123.79,27,0.0 +13900,73,15,9,0.0 +13900,23,9,31,0.0 +13900,60,34,3,0.0 +13900,16,17.45,30,0.0 +13900,3,10,22,0.0 +13900,59,55,24,0.0 +13900,40,18.4,30,0.0 +13900,5,21.35,6,0.0 +13900,65,21.05,26,0.0 +13900,46,12,23,0.0 +13900,63,43.9,46,0.0 +13900,33,2.5,13,0.0 +13900,18,62.5,8,0.0 +13900,74,10,44,0.0 +13900,49,20,11,0.0 +13900,21,10,18,0.0 +13900,27,43.9,45,0.0 +13900,61,28.5,6,0.0 +13900,67,14,11,0.0 +13900,72,34.8,17,0.0 +13900,34,14,14,0.0 +13900,48,12.75,47,0.0 +13900,4,22,12,0.0 +13900,25,14,31,0.0 +13900,58,13.25,2,0.0 +13900,22,21,10,0.0 +13900,1,18,16,0.0 +13900,51,53,6,0.0 +13900,7,30,27,0.0 +13900,47,9.5,32,0.0 +13900,37,26,22,0.0 +13900,41,9.65,6,0.0 +13900,53,32.8,31,0.0 +13900,57,19.5,13,0.0 +13900,50,16.25,10,0.0 +13900,2,19,19,0.0 +13900,12,38,18,0.0 +13900,77,13,36,0.0 +13900,69,36,16,0.0 +13900,31,12.5,36,0.0 +13901,24,4.5,50,0.0 +13901,65,21.05,35,0.0 +13901,52,7,29,0.0 +13901,13,6,5,0.0 +13901,50,16.25,43,0.0 +13901,74,10,12,0.0 +13901,19,9.2,15,0.0 +13901,12,38,31,0.0 +13901,15,15.5,20,0.0 +13901,70,15,14,0.0 +13901,16,17.45,32,0.0 +13901,72,34.8,32,0.0 +13901,28,45.6,27,0.0 +13901,68,12.5,49,0.0 +13901,2,19,33,0.0 +13901,45,9.5,44,0.0 +13901,25,14,39,0.0 +13901,31,12.5,10,0.0 +13901,3,10,25,0.0 +13901,32,32,44,0.0 +13901,38,263.5,28,0.0 +13901,40,18.4,22,0.0 +13901,27,43.9,40,0.0 +13901,33,2.5,19,0.0 +13901,6,25,27,0.0 +13901,42,14,4,0.0 +13901,61,28.5,17,0.0 +13901,26,31.23,20,0.0 +13901,57,19.5,27,0.0 +13901,36,19,7,0.0 +13901,51,53,43,0.0 +13901,11,21,38,0.0 +13901,10,31,33,0.0 +13901,37,26,31,0.0 +13901,58,13.25,5,0.0 +13901,43,46,20,0.0 +13901,1,18,28,0.0 +13901,41,9.65,22,0.0 +13901,44,19.45,10,0.0 +13901,17,39,34,0.0 +13901,18,62.5,7,0.0 +13901,63,43.9,19,0.0 +13901,23,9,6,0.0 +13901,76,18,15,0.0 +13901,56,38,3,0.0 +13901,22,21,42,0.0 +13901,20,81,31,0.0 +13901,67,14,26,0.0 +13901,8,40,8,0.0 +13901,77,13,31,0.0 +13901,62,49.3,2,0.0 +13901,29,123.79,34,0.0 +13901,59,55,50,0.0 +13901,4,22,46,0.0 +13901,35,18,16,0.0 +13901,66,17,34,0.0 +13901,7,30,21,0.0 +13901,14,23.25,47,0.0 +13901,55,24,48,0.0 +13901,64,33.25,27,0.0 +13901,46,12,17,0.0 +13902,23,9,34,0.0 +13902,69,36,22,0.0 +13902,50,16.25,21,0.0 +13902,56,38,30,0.0 +13902,9,97,48,0.0 +13902,51,53,11,0.0 +13902,46,12,37,0.0 +13902,48,12.75,43,0.0 +13902,19,9.2,42,0.0 +13902,10,31,47,0.0 +13902,62,49.3,2,0.0 +13902,3,10,45,0.0 +13902,44,19.45,42,0.0 +13902,77,13,45,0.0 +13902,33,2.5,31,0.0 +13902,12,38,11,0.0 +13902,39,18,4,0.0 +13902,2,19,30,0.0 +13902,11,21,38,0.0 +13902,41,9.65,48,0.0 +13902,52,7,16,0.0 +13902,65,21.05,3,0.0 +13902,6,25,28,0.0 +13902,24,4.5,6,0.0 +13902,55,24,35,0.0 +13902,63,43.9,3,0.0 +13902,40,18.4,49,0.0 +13902,71,21.5,23,0.0 +13902,73,15,27,0.0 +13902,37,26,6,0.0 +13902,74,10,12,0.0 +13902,7,30,21,0.0 +13902,58,13.25,3,0.0 +13902,35,18,2,0.0 +13902,30,25.89,17,0.0 +13902,57,19.5,47,0.0 +13902,54,7.45,33,0.0 +13902,16,17.45,8,0.0 +13902,8,40,20,0.0 +13902,22,21,28,0.0 +13902,25,14,14,0.0 +13902,43,46,13,0.0 +13902,64,33.25,17,0.0 +13902,67,14,17,0.0 +13902,66,17,41,0.0 +13902,17,39,13,0.0 +13902,21,10,13,0.0 +13902,38,263.5,1,0.0 +13902,13,6,20,0.0 +13902,45,9.5,31,0.0 +13902,18,62.5,43,0.0 +13902,68,12.5,2,0.0 +13903,43,46,44,0.0 +13903,75,7.75,14,0.0 +13903,63,43.9,10,0.0 +13903,30,25.89,30,0.0 +13903,34,14,31,0.0 +13903,49,20,49,0.0 +13903,73,15,16,0.0 +13903,59,55,9,0.0 +13903,62,49.3,1,0.0 +13903,54,7.45,15,0.0 +13903,56,38,10,0.0 +13903,69,36,5,0.0 +13903,71,21.5,34,0.0 +13903,8,40,44,0.0 +13903,16,17.45,1,0.0 +13903,76,18,39,0.0 +13903,64,33.25,24,0.0 +13903,24,4.5,49,0.0 +13903,25,14,4,0.0 +13903,52,7,20,0.0 +13903,60,34,7,0.0 +13903,58,13.25,28,0.0 +13903,77,13,8,0.0 +13903,6,25,29,0.0 +13903,55,24,38,0.0 +13903,31,12.5,31,0.0 +13903,33,2.5,5,0.0 +13903,27,43.9,44,0.0 +13903,11,21,13,0.0 +13903,7,30,40,0.0 +13903,14,23.25,29,0.0 +13903,57,19.5,13,0.0 +13903,20,81,31,0.0 +13903,5,21.35,30,0.0 +13903,66,17,27,0.0 +13903,70,15,39,0.0 +13903,72,34.8,4,0.0 +13903,68,12.5,39,0.0 +13903,67,14,44,0.0 +13903,10,31,34,0.0 +13903,50,16.25,41,0.0 +13903,44,19.45,7,0.0 +13903,45,9.5,7,0.0 +13903,53,32.8,27,0.0 +13903,61,28.5,21,0.0 +13903,36,19,42,0.0 +13903,18,62.5,5,0.0 +13903,40,18.4,38,0.0 +13903,65,21.05,28,0.0 +13903,74,10,46,0.0 +13903,2,19,15,0.0 +13903,48,12.75,8,0.0 +13903,39,18,46,0.0 +13903,28,45.6,2,0.0 +13903,17,39,25,0.0 +13903,19,9.2,11,0.0 +13903,32,32,34,0.0 +13903,29,123.79,3,0.0 +13903,46,12,36,0.0 +13903,1,18,23,0.0 +13903,51,53,42,0.0 +13903,13,6,6,0.0 +13903,23,9,7,0.0 +13903,26,31.23,36,0.0 +13903,35,18,7,0.0 +13903,15,15.5,13,0.0 +13903,3,10,44,0.0 +13903,41,9.65,43,0.0 +13903,37,26,46,0.0 +13903,9,97,33,0.0 +13904,14,23.25,41,0.0 +13904,73,15,9,0.0 +13904,4,22,20,0.0 +13904,22,21,15,0.0 +13904,68,12.5,5,0.0 +13904,30,25.89,10,0.0 +13904,46,12,4,0.0 +13905,64,33.25,20,0.0 +13905,63,43.9,6,0.0 +13905,23,9,38,0.0 +13905,50,16.25,31,0.0 +13905,32,32,4,0.0 +13905,71,21.5,1,0.0 +13905,45,9.5,50,0.0 +13905,27,43.9,20,0.0 +13905,3,10,33,0.0 +13905,52,7,42,0.0 +13905,19,9.2,3,0.0 +13905,41,9.65,39,0.0 +13905,30,25.89,47,0.0 +13905,29,123.79,10,0.0 +13905,55,24,24,0.0 +13905,6,25,30,0.0 +13905,75,7.75,29,0.0 +13905,48,12.75,20,0.0 +13905,13,6,42,0.0 +13905,18,62.5,42,0.0 +13905,69,36,35,0.0 +13905,57,19.5,6,0.0 +13905,49,20,38,0.0 +13905,77,13,34,0.0 +13905,66,17,17,0.0 +13905,1,18,12,0.0 +13905,33,2.5,45,0.0 +13905,2,19,5,0.0 +13905,4,22,36,0.0 +13905,15,15.5,2,0.0 +13905,42,14,6,0.0 +13905,53,32.8,42,0.0 +13905,16,17.45,19,0.0 +13905,68,12.5,39,0.0 +13905,73,15,2,0.0 +13905,46,12,15,0.0 +13905,11,21,11,0.0 +13905,65,21.05,5,0.0 +13905,47,9.5,29,0.0 +13905,14,23.25,30,0.0 +13905,72,34.8,15,0.0 +13905,61,28.5,33,0.0 +13905,54,7.45,42,0.0 +13905,70,15,10,0.0 +13905,74,10,15,0.0 +13905,31,12.5,13,0.0 +13905,67,14,22,0.0 +13905,38,263.5,38,0.0 +13906,30,25.89,14,0.0 +13906,48,12.75,43,0.0 +13906,9,97,34,0.0 +13906,46,12,31,0.0 +13906,39,18,39,0.0 +13906,69,36,19,0.0 +13906,7,30,37,0.0 +13906,58,13.25,25,0.0 +13906,72,34.8,6,0.0 +13906,43,46,32,0.0 +13906,36,19,23,0.0 +13906,47,9.5,8,0.0 +13906,76,18,11,0.0 +13906,3,10,32,0.0 +13906,45,9.5,4,0.0 +13906,50,16.25,12,0.0 +13906,34,14,17,0.0 +13906,61,28.5,22,0.0 +13906,22,21,7,0.0 +13906,4,22,27,0.0 +13906,53,32.8,4,0.0 +13906,35,18,7,0.0 +13906,59,55,38,0.0 +13906,16,17.45,3,0.0 +13906,73,15,35,0.0 +13906,1,18,11,0.0 +13906,33,2.5,7,0.0 +13906,10,31,20,0.0 +13906,65,21.05,34,0.0 +13906,56,38,39,0.0 +13906,2,19,26,0.0 +13906,67,14,7,0.0 +13906,62,49.3,4,0.0 +13906,40,18.4,5,0.0 +13906,70,15,49,0.0 +13906,24,4.5,46,0.0 +13906,11,21,39,0.0 +13906,6,25,45,0.0 +13906,54,7.45,44,0.0 +13906,66,17,19,0.0 +13906,29,123.79,26,0.0 +13906,12,38,42,0.0 +13906,20,81,12,0.0 +13906,60,34,6,0.0 +13906,26,31.23,36,0.0 +13906,23,9,35,0.0 +13906,49,20,14,0.0 +13906,31,12.5,12,0.0 +13906,28,45.6,4,0.0 +13906,32,32,5,0.0 +13906,5,21.35,25,0.0 +13906,19,9.2,14,0.0 +13906,41,9.65,12,0.0 +13906,27,43.9,10,0.0 +13906,68,12.5,35,0.0 +13906,38,263.5,20,0.0 +13906,74,10,34,0.0 +13906,44,19.45,29,0.0 +13906,42,14,29,0.0 +13906,64,33.25,36,0.0 +13906,13,6,23,0.0 +13906,51,53,47,0.0 +13906,17,39,22,0.0 +13907,37,26,43,0.0 +13907,51,53,45,0.0 +13907,39,18,9,0.0 +13907,53,32.8,11,0.0 +13907,22,21,22,0.0 +13907,8,40,11,0.0 +13907,70,15,38,0.0 +13907,13,6,9,0.0 +13907,66,17,49,0.0 +13907,28,45.6,40,0.0 +13907,42,14,13,0.0 +13907,69,36,29,0.0 +13907,20,81,39,0.0 +13907,40,18.4,48,0.0 +13907,3,10,39,0.0 +13907,54,7.45,34,0.0 +13907,16,17.45,34,0.0 +13907,63,43.9,17,0.0 +13907,49,20,32,0.0 +13907,44,19.45,8,0.0 +13907,4,22,21,0.0 +13907,18,62.5,10,0.0 +13907,26,31.23,18,0.0 +13907,60,34,34,0.0 +13907,59,55,13,0.0 +13907,31,12.5,6,0.0 +13907,68,12.5,5,0.0 +13907,56,38,20,0.0 +13907,48,12.75,26,0.0 +13907,35,18,46,0.0 +13907,72,34.8,37,0.0 +13907,1,18,47,0.0 +13907,12,38,16,0.0 +13907,27,43.9,11,0.0 +13907,41,9.65,28,0.0 +13907,67,14,13,0.0 +13907,64,33.25,47,0.0 +13907,61,28.5,12,0.0 +13907,11,21,36,0.0 +13907,32,32,42,0.0 +13907,23,9,38,0.0 +13907,5,21.35,4,0.0 +13907,24,4.5,14,0.0 +13907,25,14,41,0.0 +13907,65,21.05,3,0.0 +13907,9,97,26,0.0 +13907,14,23.25,37,0.0 +13907,33,2.5,34,0.0 +13907,29,123.79,10,0.0 +13907,50,16.25,25,0.0 +13907,21,10,8,0.0 +13907,7,30,35,0.0 +13907,52,7,3,0.0 +13907,34,14,44,0.0 +13907,55,24,35,0.0 +13907,47,9.5,48,0.0 +13907,17,39,11,0.0 +13908,53,32.8,1,0.0 +13908,54,7.45,2,0.0 +13908,59,55,13,0.0 +13908,69,36,2,0.0 +13908,35,18,20,0.0 +13908,31,12.5,17,0.0 +13908,58,13.25,1,0.0 +13908,9,97,36,0.0 +13908,34,14,35,0.0 +13908,75,7.75,20,0.0 +13908,67,14,47,0.0 +13908,21,10,15,0.0 +13908,11,21,14,0.0 +13908,44,19.45,13,0.0 +13908,65,21.05,37,0.0 +13908,66,17,8,0.0 +13908,38,263.5,41,0.0 +13908,48,12.75,2,0.0 +13908,39,18,3,0.0 +13908,73,15,35,0.0 +13908,62,49.3,41,0.0 +13908,3,10,7,0.0 +13908,10,31,6,0.0 +13908,70,15,38,0.0 +13908,14,23.25,2,0.0 +13908,29,123.79,15,0.0 +13908,55,24,20,0.0 +13908,74,10,21,0.0 +13908,12,38,7,0.0 +13908,18,62.5,46,0.0 +13908,5,21.35,13,0.0 +13908,50,16.25,10,0.0 +13908,45,9.5,4,0.0 +13908,2,19,47,0.0 +13908,30,25.89,42,0.0 +13908,27,43.9,18,0.0 +13908,6,25,1,0.0 +13908,15,15.5,4,0.0 +13908,20,81,18,0.0 +13908,57,19.5,19,0.0 +13908,43,46,49,0.0 +13908,77,13,38,0.0 +13908,32,32,23,0.0 +13908,24,4.5,13,0.0 +13908,36,19,21,0.0 +13908,51,53,42,0.0 +13908,1,18,14,0.0 +13908,25,14,50,0.0 +13908,7,30,33,0.0 +13908,63,43.9,13,0.0 +13908,42,14,19,0.0 +13908,41,9.65,23,0.0 +13908,37,26,47,0.0 +13908,17,39,1,0.0 +13908,13,6,47,0.0 +13908,47,9.5,29,0.0 +13908,76,18,10,0.0 +13908,19,9.2,27,0.0 +13908,40,18.4,50,0.0 +13908,28,45.6,33,0.0 +13908,52,7,27,0.0 +13908,60,34,26,0.0 +13908,16,17.45,38,0.0 +13908,23,9,6,0.0 +13908,56,38,40,0.0 +13908,33,2.5,14,0.0 +13908,26,31.23,43,0.0 +13908,4,22,27,0.0 +13908,49,20,25,0.0 +13908,61,28.5,40,0.0 +13908,22,21,17,0.0 +13908,71,21.5,33,0.0 +13908,68,12.5,9,0.0 +13908,72,34.8,24,0.0 +13908,8,40,38,0.0 +13909,4,22,45,0.0 +13909,22,21,15,0.0 +13909,36,19,31,0.0 +13909,60,34,8,0.0 +13909,61,28.5,5,0.0 +13909,20,81,38,0.0 +13909,25,14,13,0.0 +13909,17,39,15,0.0 +13909,57,19.5,39,0.0 +13909,37,26,37,0.0 +13909,15,15.5,49,0.0 +13909,68,12.5,17,0.0 +13909,24,4.5,31,0.0 +13909,62,49.3,25,0.0 +13909,66,17,18,0.0 +13909,63,43.9,14,0.0 +13909,44,19.45,33,0.0 +13909,47,9.5,39,0.0 +13909,45,9.5,7,0.0 +13909,41,9.65,50,0.0 +13909,7,30,8,0.0 +13909,16,17.45,34,0.0 +13909,50,16.25,50,0.0 +13909,12,38,6,0.0 +13909,71,21.5,31,0.0 +13910,70,15,24,0.0 +13910,74,10,46,0.0 +13910,18,62.5,2,0.0 +13910,29,123.79,7,0.0 +13910,50,16.25,34,0.0 +13910,54,7.45,36,0.0 +13910,75,7.75,16,0.0 +13910,1,18,43,0.0 +13910,72,34.8,16,0.0 +13910,2,19,31,0.0 +13910,65,21.05,49,0.0 +13910,21,10,49,0.0 +13910,49,20,46,0.0 +13910,9,97,4,0.0 +13910,55,24,4,0.0 +13910,52,7,2,0.0 +13910,66,17,39,0.0 +13910,45,9.5,47,0.0 +13910,71,21.5,28,0.0 +13910,27,43.9,3,0.0 +13910,76,18,29,0.0 +13910,30,25.89,29,0.0 +13910,64,33.25,43,0.0 +13910,32,32,30,0.0 +13910,60,34,11,0.0 +13910,46,12,36,0.0 +13910,38,263.5,19,0.0 +13910,14,23.25,33,0.0 +13910,22,21,18,0.0 +13910,24,4.5,47,0.0 +13910,6,25,12,0.0 +13910,25,14,41,0.0 +13910,57,19.5,35,0.0 +13910,68,12.5,20,0.0 +13910,15,15.5,23,0.0 +13910,8,40,50,0.0 +13911,74,10,20,0.0 +13911,41,9.65,37,0.0 +13911,38,263.5,29,0.0 +13911,21,10,25,0.0 +13911,39,18,3,0.0 +13911,54,7.45,26,0.0 +13911,50,16.25,8,0.0 +13911,69,36,35,0.0 +13911,7,30,7,0.0 +13911,4,22,29,0.0 +13911,23,9,20,0.0 +13911,72,34.8,38,0.0 +13911,10,31,47,0.0 +13911,19,9.2,50,0.0 +13911,77,13,19,0.0 +13911,45,9.5,44,0.0 +13911,42,14,32,0.0 +13911,35,18,46,0.0 +13911,6,25,25,0.0 +13911,18,62.5,25,0.0 +13911,57,19.5,47,0.0 +13911,71,21.5,23,0.0 +13911,40,18.4,1,0.0 +13911,64,33.25,48,0.0 +13911,25,14,5,0.0 +13911,49,20,12,0.0 +13911,70,15,46,0.0 +13911,5,21.35,7,0.0 +13911,48,12.75,45,0.0 +13911,63,43.9,30,0.0 +13911,60,34,48,0.0 +13911,12,38,43,0.0 +13911,44,19.45,27,0.0 +13911,30,25.89,28,0.0 +13911,3,10,41,0.0 +13911,2,19,40,0.0 +13911,32,32,26,0.0 +13911,13,6,11,0.0 +13911,24,4.5,29,0.0 +13911,16,17.45,17,0.0 +13911,22,21,45,0.0 +13911,62,49.3,2,0.0 +13912,7,30,13,0.0 +13912,1,18,49,0.0 +13912,20,81,30,0.0 +13912,36,19,5,0.0 +13912,56,38,6,0.0 +13912,2,19,7,0.0 +13912,73,15,23,0.0 +13912,26,31.23,15,0.0 +13912,48,12.75,43,0.0 +13912,45,9.5,5,0.0 +13912,69,36,8,0.0 +13912,18,62.5,50,0.0 +13912,27,43.9,35,0.0 +13912,30,25.89,32,0.0 +13912,42,14,41,0.0 +13912,19,9.2,41,0.0 +13912,58,13.25,9,0.0 +13912,24,4.5,32,0.0 +13912,15,15.5,25,0.0 +13912,38,263.5,15,0.0 +13912,22,21,3,0.0 +13912,17,39,43,0.0 +13912,21,10,29,0.0 +13912,49,20,8,0.0 +13912,46,12,14,0.0 +13912,9,97,10,0.0 +13912,70,15,37,0.0 +13912,31,12.5,41,0.0 +13912,4,22,2,0.0 +13912,57,19.5,18,0.0 +13912,25,14,3,0.0 +13912,13,6,2,0.0 +13912,53,32.8,32,0.0 +13912,55,24,6,0.0 +13912,40,18.4,17,0.0 +13912,32,32,15,0.0 +13912,29,123.79,45,0.0 +13912,64,33.25,40,0.0 +13912,8,40,45,0.0 +13912,5,21.35,45,0.0 +13912,63,43.9,10,0.0 +13912,10,31,34,0.0 +13912,71,21.5,42,0.0 +13912,47,9.5,32,0.0 +13912,76,18,45,0.0 +13912,11,21,23,0.0 +13912,75,7.75,12,0.0 +13912,67,14,48,0.0 +13912,37,26,26,0.0 +13912,77,13,34,0.0 +13912,51,53,22,0.0 +13912,60,34,5,0.0 +13912,52,7,50,0.0 +13912,14,23.25,2,0.0 +13912,41,9.65,10,0.0 +13912,72,34.8,29,0.0 +13912,23,9,10,0.0 +13912,16,17.45,50,0.0 +13912,34,14,2,0.0 +13912,68,12.5,13,0.0 +13912,33,2.5,36,0.0 +13912,65,21.05,35,0.0 +13912,54,7.45,45,0.0 +13912,28,45.6,9,0.0 +13912,6,25,10,0.0 +13912,59,55,5,0.0 +13912,50,16.25,12,0.0 +13912,39,18,19,0.0 +13912,61,28.5,48,0.0 +13912,44,19.45,26,0.0 +13912,35,18,26,0.0 +13912,74,10,10,0.0 +13912,43,46,38,0.0 +13912,12,38,5,0.0 +13912,66,17,11,0.0 +13913,41,9.65,39,0.0 +13913,56,38,33,0.0 +13913,3,10,35,0.0 +13913,38,263.5,31,0.0 +13913,21,10,35,0.0 +13913,15,15.5,43,0.0 +13913,42,14,47,0.0 +13913,31,12.5,9,0.0 +13913,67,14,25,0.0 +13913,73,15,21,0.0 +13913,19,9.2,13,0.0 +13913,1,18,19,0.0 +13913,33,2.5,18,0.0 +13913,70,15,20,0.0 +13913,76,18,3,0.0 +13913,20,81,3,0.0 +13913,35,18,18,0.0 +13913,50,16.25,6,0.0 +13913,61,28.5,27,0.0 +13913,5,21.35,47,0.0 +13913,18,62.5,48,0.0 +13913,72,34.8,16,0.0 +13913,57,19.5,35,0.0 +13913,69,36,49,0.0 +13913,53,32.8,36,0.0 +13913,27,43.9,27,0.0 +13913,29,123.79,50,0.0 +13913,59,55,19,0.0 +13913,37,26,9,0.0 +13913,58,13.25,36,0.0 +13913,25,14,33,0.0 +13913,43,46,16,0.0 +13913,71,21.5,20,0.0 +13913,2,19,46,0.0 +13913,45,9.5,36,0.0 +13913,36,19,50,0.0 +13913,75,7.75,37,0.0 +13913,46,12,36,0.0 +13913,68,12.5,25,0.0 +13913,22,21,13,0.0 +13913,13,6,37,0.0 +13913,28,45.6,38,0.0 +13913,10,31,7,0.0 +13913,34,14,48,0.0 +13913,77,13,29,0.0 +13914,63,43.9,36,0.0 +13914,48,12.75,11,0.0 +13914,33,2.5,12,0.0 +13914,7,30,34,0.0 +13914,53,32.8,36,0.0 +13914,58,13.25,33,0.0 +13914,73,15,12,0.0 +13914,29,123.79,15,0.0 +13914,62,49.3,39,0.0 +13914,3,10,2,0.0 +13914,65,21.05,45,0.0 +13914,43,46,3,0.0 +13914,69,36,19,0.0 +13914,46,12,2,0.0 +13914,55,24,37,0.0 +13914,17,39,14,0.0 +13914,21,10,7,0.0 +13914,51,53,28,0.0 +13914,6,25,10,0.0 +13914,20,81,11,0.0 +13914,49,20,15,0.0 +13914,22,21,5,0.0 +13914,47,9.5,12,0.0 +13914,64,33.25,17,0.0 +13914,61,28.5,34,0.0 +13914,77,13,36,0.0 +13914,25,14,2,0.0 +13914,70,15,37,0.0 +13914,30,25.89,9,0.0 +13914,76,18,31,0.0 +13914,10,31,27,0.0 +13914,44,19.45,15,0.0 +13914,13,6,19,0.0 +13914,74,10,49,0.0 +13914,38,263.5,47,0.0 +13914,32,32,15,0.0 +13914,59,55,19,0.0 +13914,50,16.25,9,0.0 +13914,67,14,30,0.0 +13914,39,18,34,0.0 +13914,66,17,50,0.0 +13914,56,38,36,0.0 +13914,71,21.5,15,0.0 +13914,2,19,49,0.0 +13914,12,38,38,0.0 +13914,23,9,3,0.0 +13914,75,7.75,9,0.0 +13914,37,26,31,0.0 +13914,8,40,13,0.0 +13914,68,12.5,38,0.0 +13914,54,7.45,33,0.0 +13914,45,9.5,31,0.0 +13914,26,31.23,32,0.0 +13914,41,9.65,29,0.0 +13914,11,21,2,0.0 +13914,42,14,19,0.0 +13914,34,14,19,0.0 +13914,5,21.35,10,0.0 +13914,60,34,19,0.0 +13914,72,34.8,20,0.0 +13914,1,18,17,0.0 +13914,19,9.2,30,0.0 +13914,14,23.25,10,0.0 +13914,40,18.4,7,0.0 +13915,57,19.5,38,0.0 +13915,58,13.25,29,0.0 +13915,46,12,35,0.0 +13915,34,14,31,0.0 +13915,38,263.5,44,0.0 +13915,3,10,27,0.0 +13915,1,18,46,0.0 +13915,64,33.25,29,0.0 +13915,20,81,14,0.0 +13915,33,2.5,15,0.0 +13915,26,31.23,34,0.0 +13915,75,7.75,49,0.0 +13915,32,32,44,0.0 +13915,14,23.25,6,0.0 +13915,60,34,36,0.0 +13915,15,15.5,50,0.0 +13915,54,7.45,34,0.0 +13915,43,46,48,0.0 +13915,55,24,14,0.0 +13915,74,10,23,0.0 +13915,7,30,30,0.0 +13915,11,21,50,0.0 +13915,62,49.3,7,0.0 +13915,17,39,39,0.0 +13915,73,15,39,0.0 +13915,18,62.5,11,0.0 +13915,35,18,46,0.0 +13915,69,36,3,0.0 +13915,66,17,50,0.0 +13915,5,21.35,44,0.0 +13915,44,19.45,28,0.0 +13915,63,43.9,16,0.0 +13915,25,14,3,0.0 +13915,47,9.5,50,0.0 +13915,61,28.5,34,0.0 +13915,50,16.25,50,0.0 +13915,52,7,20,0.0 +13915,23,9,26,0.0 +13915,21,10,16,0.0 +13915,2,19,35,0.0 +13915,67,14,8,0.0 +13915,30,25.89,13,0.0 +13915,10,31,16,0.0 +13915,71,21.5,28,0.0 +13915,9,97,3,0.0 +13915,42,14,40,0.0 +13915,41,9.65,19,0.0 +13915,4,22,17,0.0 +13916,51,53,50,0.0 +13916,50,16.25,6,0.0 +13916,30,25.89,21,0.0 +13916,57,19.5,3,0.0 +13916,58,13.25,45,0.0 +13916,20,81,10,0.0 +13916,16,17.45,40,0.0 +13916,77,13,14,0.0 +13916,72,34.8,42,0.0 +13916,67,14,49,0.0 +13916,46,12,30,0.0 +13916,75,7.75,9,0.0 +13916,61,28.5,45,0.0 +13916,71,21.5,6,0.0 +13916,9,97,42,0.0 +13916,59,55,45,0.0 +13916,7,30,48,0.0 +13917,54,7.45,24,0.0 +13917,42,14,45,0.0 +13917,45,9.5,43,0.0 +13917,62,49.3,18,0.0 +13917,30,25.89,22,0.0 +13917,70,15,3,0.0 +13917,39,18,49,0.0 +13917,75,7.75,10,0.0 +13917,35,18,20,0.0 +13917,76,18,11,0.0 +13917,34,14,9,0.0 +13917,24,4.5,31,0.0 +13917,64,33.25,9,0.0 +13917,28,45.6,9,0.0 +13917,48,12.75,23,0.0 +13917,33,2.5,1,0.0 +13917,11,21,38,0.0 +13917,66,17,15,0.0 +13917,4,22,13,0.0 +13917,21,10,42,0.0 +13917,19,9.2,12,0.0 +13917,2,19,49,0.0 +13917,57,19.5,35,0.0 +13917,49,20,34,0.0 +13917,46,12,1,0.0 +13917,29,123.79,38,0.0 +13917,10,31,18,0.0 +13917,16,17.45,9,0.0 +13917,8,40,5,0.0 +13917,9,97,7,0.0 +13917,52,7,1,0.0 +13917,25,14,43,0.0 +13917,77,13,1,0.0 +13917,74,10,21,0.0 +13917,68,12.5,29,0.0 +13917,32,32,40,0.0 +13917,5,21.35,35,0.0 +13917,3,10,21,0.0 +13917,53,32.8,46,0.0 +13917,50,16.25,24,0.0 +13917,14,23.25,3,0.0 +13917,69,36,26,0.0 +13917,59,55,10,0.0 +13917,58,13.25,7,0.0 +13917,73,15,37,0.0 +13917,7,30,26,0.0 +13917,18,62.5,16,0.0 +13917,23,9,40,0.0 +13917,60,34,24,0.0 +13917,47,9.5,35,0.0 +13917,65,21.05,16,0.0 +13917,12,38,11,0.0 +13917,43,46,28,0.0 +13917,61,28.5,17,0.0 +13917,56,38,11,0.0 +13917,31,12.5,33,0.0 +13917,17,39,41,0.0 +13917,15,15.5,50,0.0 +13917,41,9.65,12,0.0 +13917,38,263.5,12,0.0 +13917,37,26,39,0.0 +13917,72,34.8,27,0.0 +13917,20,81,39,0.0 +13917,51,53,16,0.0 +13917,71,21.5,19,0.0 +13917,6,25,46,0.0 +13917,13,6,47,0.0 +13917,22,21,45,0.0 +13917,1,18,4,0.0 +13917,27,43.9,18,0.0 +13917,44,19.45,49,0.0 +13918,31,12.5,21,0.0 +13918,64,33.25,17,0.0 +13918,17,39,4,0.0 +13918,37,26,12,0.0 +13918,59,55,29,0.0 +13918,20,81,41,0.0 +13918,68,12.5,37,0.0 +13918,55,24,22,0.0 +13919,26,31.23,10,0.0 +13919,70,15,46,0.0 +13919,12,38,50,0.0 +13919,67,14,23,0.0 +13919,13,6,24,0.0 +13919,28,45.6,29,0.0 +13919,21,10,46,0.0 +13919,1,18,4,0.0 +13919,55,24,43,0.0 +13919,56,38,16,0.0 +13919,75,7.75,31,0.0 +13919,61,28.5,24,0.0 +13919,41,9.65,12,0.0 +13919,73,15,24,0.0 +13919,24,4.5,45,0.0 +13919,62,49.3,32,0.0 +13919,49,20,30,0.0 +13919,43,46,3,0.0 +13919,19,9.2,29,0.0 +13919,60,34,45,0.0 +13919,32,32,18,0.0 +13919,52,7,6,0.0 +13919,22,21,8,0.0 +13919,2,19,38,0.0 +13919,34,14,25,0.0 +13919,9,97,42,0.0 +13919,77,13,27,0.0 +13919,63,43.9,40,0.0 +13919,76,18,21,0.0 +13919,35,18,24,0.0 +13919,30,25.89,40,0.0 +13919,57,19.5,29,0.0 +13919,17,39,22,0.0 +13919,58,13.25,29,0.0 +13919,72,34.8,13,0.0 +13919,53,32.8,47,0.0 +13919,38,263.5,12,0.0 +13919,69,36,23,0.0 +13919,71,21.5,7,0.0 +13919,37,26,2,0.0 +13919,48,12.75,17,0.0 +13919,4,22,22,0.0 +13919,31,12.5,45,0.0 +13919,7,30,6,0.0 +13919,15,15.5,30,0.0 +13919,40,18.4,28,0.0 +13919,64,33.25,15,0.0 +13919,59,55,50,0.0 +13919,65,21.05,48,0.0 +13919,11,21,41,0.0 +13920,16,17.45,38,0.0 +13920,72,34.8,44,0.0 +13920,29,123.79,28,0.0 +13920,47,9.5,8,0.0 +13920,34,14,8,0.0 +13920,7,30,13,0.0 +13920,12,38,47,0.0 +13920,4,22,18,0.0 +13920,30,25.89,2,0.0 +13920,52,7,16,0.0 +13920,38,263.5,2,0.0 +13920,49,20,4,0.0 +13920,71,21.5,6,0.0 +13920,15,15.5,1,0.0 +13920,53,32.8,21,0.0 +13921,73,15,1,0.0 +13921,29,123.79,42,0.0 +13921,46,12,6,0.0 +13922,77,13,22,0.0 +13922,18,62.5,43,0.0 +13922,3,10,2,0.0 +13922,63,43.9,41,0.0 +13922,52,7,2,0.0 +13922,34,14,25,0.0 +13922,50,16.25,12,0.0 +13922,33,2.5,34,0.0 +13922,44,19.45,14,0.0 +13922,75,7.75,23,0.0 +13922,69,36,20,0.0 +13922,22,21,6,0.0 +13922,35,18,44,0.0 +13922,10,31,24,0.0 +13922,32,32,28,0.0 +13922,71,21.5,19,0.0 +13922,59,55,32,0.0 +13922,58,13.25,32,0.0 +13922,40,18.4,49,0.0 +13922,23,9,31,0.0 +13922,73,15,17,0.0 +13922,55,24,11,0.0 +13922,43,46,25,0.0 +13922,51,53,49,0.0 +13922,39,18,7,0.0 +13922,56,38,2,0.0 +13922,65,21.05,38,0.0 +13922,31,12.5,18,0.0 +13922,37,26,19,0.0 +13922,15,15.5,6,0.0 +13922,26,31.23,7,0.0 +13922,53,32.8,34,0.0 +13922,27,43.9,22,0.0 +13922,64,33.25,32,0.0 +13922,20,81,22,0.0 +13922,5,21.35,1,0.0 +13922,45,9.5,44,0.0 +13922,11,21,15,0.0 +13922,46,12,35,0.0 +13922,7,30,47,0.0 +13922,4,22,17,0.0 +13922,1,18,13,0.0 +13922,70,15,13,0.0 +13922,49,20,36,0.0 +13922,25,14,20,0.0 +13922,24,4.5,10,0.0 +13922,57,19.5,21,0.0 +13922,47,9.5,13,0.0 +13922,72,34.8,14,0.0 +13922,76,18,26,0.0 +13922,74,10,29,0.0 +13922,61,28.5,39,0.0 +13922,16,17.45,26,0.0 +13922,9,97,27,0.0 +13922,41,9.65,49,0.0 +13922,12,38,27,0.0 +13922,66,17,41,0.0 +13922,6,25,35,0.0 +13922,54,7.45,25,0.0 +13922,8,40,36,0.0 +13922,38,263.5,2,0.0 +13922,17,39,32,0.0 +13922,48,12.75,22,0.0 +13922,62,49.3,35,0.0 +13922,36,19,40,0.0 +13922,21,10,39,0.0 +13922,67,14,10,0.0 +13922,13,6,10,0.0 +13922,68,12.5,30,0.0 +13922,29,123.79,7,0.0 +13922,42,14,45,0.0 +13922,2,19,16,0.0 +13922,28,45.6,42,0.0 +13922,14,23.25,20,0.0 +13922,19,9.2,22,0.0 +13923,24,4.5,20,0.0 +13923,33,2.5,3,0.0 +13923,11,21,47,0.0 +13923,45,9.5,49,0.0 +13923,36,19,8,0.0 +13923,55,24,41,0.0 +13923,13,6,2,0.0 +13923,59,55,11,0.0 +13923,3,10,32,0.0 +13923,47,9.5,26,0.0 +13923,32,32,11,0.0 +13923,8,40,37,0.0 +13924,60,34,31,0.0 +13924,63,43.9,43,0.0 +13924,52,7,32,0.0 +13924,62,49.3,37,0.0 +13924,9,97,47,0.0 +13924,31,12.5,17,0.0 +13924,33,2.5,21,0.0 +13924,43,46,7,0.0 +13924,22,21,16,0.0 +13924,59,55,25,0.0 +13924,7,30,20,0.0 +13924,37,26,20,0.0 +13924,40,18.4,20,0.0 +13924,15,15.5,11,0.0 +13924,38,263.5,41,0.0 +13924,19,9.2,9,0.0 +13924,53,32.8,28,0.0 +13924,35,18,23,0.0 +13924,8,40,39,0.0 +13924,41,9.65,14,0.0 +13924,27,43.9,46,0.0 +13924,12,38,41,0.0 +13924,13,6,20,0.0 +13924,58,13.25,11,0.0 +13924,55,24,13,0.0 +13924,70,15,30,0.0 +13924,66,17,47,0.0 +13924,25,14,1,0.0 +13924,11,21,16,0.0 +13924,77,13,5,0.0 +13924,23,9,8,0.0 +13925,34,14,31,0.0 +13925,67,14,32,0.0 +13925,54,7.45,12,0.0 +13925,64,33.25,1,0.0 +13925,32,32,26,0.0 +13925,10,31,2,0.0 +13925,75,7.75,11,0.0 +13925,25,14,42,0.0 +13925,23,9,42,0.0 +13925,74,10,9,0.0 +13925,36,19,26,0.0 +13925,60,34,40,0.0 +13925,59,55,18,0.0 +13925,41,9.65,3,0.0 +13925,21,10,7,0.0 +13925,44,19.45,40,0.0 +13925,24,4.5,31,0.0 +13925,53,32.8,18,0.0 +13925,38,263.5,27,0.0 +13925,7,30,21,0.0 +13925,26,31.23,49,0.0 +13925,45,9.5,46,0.0 +13925,9,97,9,0.0 +13925,58,13.25,41,0.0 +13925,43,46,42,0.0 +13925,6,25,23,0.0 +13925,28,45.6,4,0.0 +13925,8,40,43,0.0 +13925,33,2.5,41,0.0 +13925,77,13,31,0.0 +13925,12,38,17,0.0 +13925,71,21.5,39,0.0 +13925,27,43.9,5,0.0 +13925,39,18,28,0.0 +13925,11,21,38,0.0 +13925,72,34.8,36,0.0 +13925,19,9.2,43,0.0 +13925,62,49.3,17,0.0 +13925,16,17.45,47,0.0 +13925,46,12,26,0.0 +13925,48,12.75,26,0.0 +13925,22,21,38,0.0 +13925,37,26,50,0.0 +13925,35,18,5,0.0 +13925,30,25.89,32,0.0 +13925,17,39,10,0.0 +13925,57,19.5,43,0.0 +13926,43,46,3,0.0 +13926,65,21.05,34,0.0 +13927,13,6,29,0.0 +13927,60,34,44,0.0 +13927,19,9.2,42,0.0 +13927,52,7,45,0.0 +13927,74,10,8,0.0 +13927,41,9.65,1,0.0 +13927,22,21,5,0.0 +13927,40,18.4,45,0.0 +13927,37,26,16,0.0 +13927,59,55,42,0.0 +13927,56,38,36,0.0 +13927,14,23.25,30,0.0 +13927,55,24,2,0.0 +13927,9,97,4,0.0 +13927,63,43.9,12,0.0 +13927,27,43.9,26,0.0 +13927,62,49.3,28,0.0 +13927,39,18,23,0.0 +13927,18,62.5,49,0.0 +13927,69,36,33,0.0 +13927,32,32,11,0.0 +13927,12,38,43,0.0 +13927,33,2.5,11,0.0 +13927,45,9.5,21,0.0 +13927,17,39,17,0.0 +13927,72,34.8,32,0.0 +13927,57,19.5,2,0.0 +13927,53,32.8,7,0.0 +13927,47,9.5,33,0.0 +13927,24,4.5,50,0.0 +13927,10,31,22,0.0 +13927,77,13,46,0.0 +13927,73,15,49,0.0 +13927,28,45.6,45,0.0 +13927,58,13.25,4,0.0 +13927,21,10,2,0.0 +13927,75,7.75,34,0.0 +13927,43,46,2,0.0 +13927,23,9,21,0.0 +13927,3,10,14,0.0 +13927,44,19.45,43,0.0 +13927,26,31.23,27,0.0 +13927,29,123.79,40,0.0 +13927,70,15,24,0.0 +13927,66,17,29,0.0 +13927,2,19,43,0.0 +13927,34,14,18,0.0 +13927,20,81,30,0.0 +13927,68,12.5,47,0.0 +13927,25,14,11,0.0 +13927,67,14,37,0.0 +13927,30,25.89,20,0.0 +13927,31,12.5,38,0.0 +13927,48,12.75,13,0.0 +13927,51,53,41,0.0 +13927,71,21.5,35,0.0 +13927,35,18,35,0.0 +13927,61,28.5,28,0.0 +13928,44,19.45,18,0.0 +13928,14,23.25,21,0.0 +13928,76,18,30,0.0 +13928,7,30,50,0.0 +13928,71,21.5,20,0.0 +13928,38,263.5,12,0.0 +13928,43,46,39,0.0 +13928,28,45.6,2,0.0 +13928,34,14,21,0.0 +13928,73,15,13,0.0 +13928,53,32.8,11,0.0 +13928,40,18.4,5,0.0 +13928,74,10,7,0.0 +13928,22,21,31,0.0 +13928,9,97,21,0.0 +13928,52,7,48,0.0 +13928,3,10,10,0.0 +13928,69,36,7,0.0 +13928,63,43.9,1,0.0 +13928,47,9.5,4,0.0 +13928,6,25,30,0.0 +13928,12,38,43,0.0 +13928,65,21.05,30,0.0 +13928,33,2.5,4,0.0 +13928,15,15.5,46,0.0 +13928,59,55,39,0.0 +13928,42,14,42,0.0 +13928,51,53,7,0.0 +13928,21,10,31,0.0 +13928,10,31,43,0.0 +13928,75,7.75,8,0.0 +13928,8,40,48,0.0 +13928,61,28.5,10,0.0 +13928,11,21,8,0.0 +13928,20,81,41,0.0 +13928,56,38,23,0.0 +13928,19,9.2,30,0.0 +13928,35,18,40,0.0 +13928,41,9.65,35,0.0 +13928,4,22,12,0.0 +13928,29,123.79,46,0.0 +13928,39,18,40,0.0 +13928,26,31.23,35,0.0 +13928,49,20,40,0.0 +13928,2,19,14,0.0 +13928,57,19.5,48,0.0 +13928,72,34.8,47,0.0 +13928,27,43.9,5,0.0 +13928,64,33.25,3,0.0 +13928,24,4.5,20,0.0 +13928,50,16.25,27,0.0 +13928,31,12.5,12,0.0 +13928,58,13.25,24,0.0 +13928,25,14,24,0.0 +13928,66,17,2,0.0 +13928,55,24,10,0.0 +13928,45,9.5,34,0.0 +13928,48,12.75,13,0.0 +13928,1,18,24,0.0 +13928,18,62.5,14,0.0 +13928,30,25.89,12,0.0 +13928,60,34,24,0.0 +13928,36,19,15,0.0 +13928,13,6,24,0.0 +13928,54,7.45,15,0.0 +13928,37,26,42,0.0 +13928,68,12.5,17,0.0 +13928,16,17.45,27,0.0 +13928,77,13,39,0.0 +13928,17,39,50,0.0 +13928,67,14,3,0.0 +13928,70,15,23,0.0 +13928,5,21.35,25,0.0 +13928,46,12,19,0.0 +13928,62,49.3,42,0.0 +13928,32,32,24,0.0 +13929,64,33.25,41,0.0 +13929,53,32.8,38,0.0 +13929,36,19,22,0.0 +13929,22,21,13,0.0 +13929,31,12.5,50,0.0 +13929,37,26,42,0.0 +13929,10,31,4,0.0 +13929,33,2.5,13,0.0 +13929,18,62.5,17,0.0 +13929,72,34.8,38,0.0 +13929,77,13,13,0.0 +13929,21,10,2,0.0 +13929,7,30,41,0.0 +13929,2,19,1,0.0 +13929,40,18.4,28,0.0 +13929,39,18,42,0.0 +13929,42,14,45,0.0 +13929,54,7.45,42,0.0 +13929,74,10,7,0.0 +13929,19,9.2,40,0.0 +13929,32,32,25,0.0 +13930,41,9.65,37,0.0 +13930,30,25.89,37,0.0 +13930,58,13.25,48,0.0 +13930,56,38,17,0.0 +13930,49,20,37,0.0 +13930,8,40,7,0.0 +13930,71,21.5,49,0.0 +13930,9,97,7,0.0 +13930,52,7,34,0.0 +13930,22,21,13,0.0 +13930,13,6,34,0.0 +13930,16,17.45,3,0.0 +13930,33,2.5,24,0.0 +13930,64,33.25,13,0.0 +13930,51,53,16,0.0 +13930,40,18.4,12,0.0 +13930,31,12.5,46,0.0 +13930,46,12,36,0.0 +13930,23,9,34,0.0 +13930,60,34,13,0.0 +13930,53,32.8,17,0.0 +13930,19,9.2,38,0.0 +13930,17,39,26,0.0 +13930,44,19.45,1,0.0 +13930,34,14,6,0.0 +13930,32,32,23,0.0 +13930,36,19,3,0.0 +13930,66,17,47,0.0 +13930,59,55,33,0.0 +13930,45,9.5,41,0.0 +13930,75,7.75,1,0.0 +13930,12,38,27,0.0 +13930,43,46,21,0.0 +13930,57,19.5,36,0.0 +13930,21,10,26,0.0 +13930,42,14,3,0.0 +13930,4,22,17,0.0 +13930,26,31.23,10,0.0 +13930,65,21.05,22,0.0 +13930,69,36,4,0.0 +13930,15,15.5,40,0.0 +13930,63,43.9,15,0.0 +13930,37,26,4,0.0 +13930,7,30,46,0.0 +13930,6,25,18,0.0 +13930,2,19,1,0.0 +13930,25,14,42,0.0 +13930,35,18,11,0.0 +13930,10,31,12,0.0 +13930,28,45.6,34,0.0 +13930,62,49.3,7,0.0 +13930,39,18,13,0.0 +13930,24,4.5,37,0.0 +13930,27,43.9,22,0.0 +13930,67,14,17,0.0 +13930,1,18,35,0.0 +13930,5,21.35,38,0.0 +13930,29,123.79,20,0.0 +13930,74,10,34,0.0 +13930,61,28.5,31,0.0 +13930,14,23.25,36,0.0 +13930,72,34.8,15,0.0 +13930,48,12.75,15,0.0 +13930,76,18,25,0.0 +13930,70,15,16,0.0 +13930,18,62.5,9,0.0 +13930,77,13,17,0.0 +13930,68,12.5,34,0.0 +13930,73,15,4,0.0 +13930,54,7.45,10,0.0 +13930,3,10,17,0.0 +13930,20,81,37,0.0 +13930,47,9.5,18,0.0 +13931,1,18,4,0.0 +13931,4,22,26,0.0 +13931,9,97,36,0.0 +13931,30,25.89,46,0.0 +13931,63,43.9,27,0.0 +13931,67,14,40,0.0 +13931,13,6,46,0.0 +13931,70,15,27,0.0 +13931,49,20,5,0.0 +13931,31,12.5,29,0.0 +13931,77,13,4,0.0 +13931,58,13.25,16,0.0 +13931,32,32,1,0.0 +13931,37,26,50,0.0 +13931,15,15.5,20,0.0 +13931,55,24,2,0.0 +13932,15,15.5,29,0.0 +13932,8,40,21,0.0 +13932,71,21.5,50,0.0 +13932,77,13,24,0.0 +13932,69,36,38,0.0 +13932,29,123.79,40,0.0 +13932,65,21.05,26,0.0 +13932,22,21,20,0.0 +13932,47,9.5,31,0.0 +13932,9,97,35,0.0 +13933,49,20,9,0.0 +13933,65,21.05,10,0.0 +13933,18,62.5,10,0.0 +13933,32,32,12,0.0 +13933,75,7.75,50,0.0 +13933,39,18,9,0.0 +13933,55,24,4,0.0 +13933,36,19,33,0.0 +13933,5,21.35,12,0.0 +13933,38,263.5,44,0.0 +13933,45,9.5,30,0.0 +13933,2,19,27,0.0 +13933,31,12.5,5,0.0 +13933,52,7,23,0.0 +13933,20,81,18,0.0 +13933,29,123.79,35,0.0 +13933,10,31,27,0.0 +13933,24,4.5,20,0.0 +13933,44,19.45,25,0.0 +13933,69,36,33,0.0 +13933,77,13,48,0.0 +13933,1,18,21,0.0 +13933,12,38,46,0.0 +13933,51,53,21,0.0 +13933,66,17,17,0.0 +13933,76,18,19,0.0 +13933,4,22,48,0.0 +13933,16,17.45,2,0.0 +13933,72,34.8,44,0.0 +13933,53,32.8,40,0.0 +13933,41,9.65,7,0.0 +13933,60,34,35,0.0 +13933,22,21,41,0.0 +13933,68,12.5,24,0.0 +13933,40,18.4,7,0.0 +13933,15,15.5,7,0.0 +13933,43,46,22,0.0 +13933,59,55,41,0.0 +13933,37,26,14,0.0 +13933,61,28.5,36,0.0 +13933,13,6,4,0.0 +13933,14,23.25,18,0.0 +13933,67,14,44,0.0 +13933,47,9.5,5,0.0 +13933,63,43.9,26,0.0 +13933,19,9.2,17,0.0 +13933,46,12,44,0.0 +13933,11,21,23,0.0 +13933,48,12.75,28,0.0 +13933,70,15,11,0.0 +13933,7,30,12,0.0 +13933,25,14,50,0.0 +13933,28,45.6,16,0.0 +13933,33,2.5,50,0.0 +13933,64,33.25,39,0.0 +13933,23,9,48,0.0 +13933,50,16.25,42,0.0 +13933,21,10,29,0.0 +13933,27,43.9,20,0.0 +13933,17,39,35,0.0 +13933,35,18,49,0.0 +13933,8,40,47,0.0 +13933,54,7.45,5,0.0 +13933,42,14,22,0.0 +13933,30,25.89,28,0.0 +13933,56,38,49,0.0 +13933,9,97,49,0.0 +13933,26,31.23,22,0.0 +13933,62,49.3,15,0.0 +13933,73,15,49,0.0 +13933,58,13.25,42,0.0 +13934,5,21.35,46,0.0 +13934,40,18.4,32,0.0 +13934,70,15,20,0.0 +13934,31,12.5,3,0.0 +13934,45,9.5,12,0.0 +13934,24,4.5,5,0.0 +13934,44,19.45,11,0.0 +13934,32,32,22,0.0 +13934,54,7.45,29,0.0 +13934,76,18,41,0.0 +13934,41,9.65,17,0.0 +13934,15,15.5,4,0.0 +13934,61,28.5,37,0.0 +13934,46,12,41,0.0 +13934,20,81,47,0.0 +13934,1,18,10,0.0 +13934,7,30,37,0.0 +13934,67,14,10,0.0 +13934,12,38,5,0.0 +13934,9,97,39,0.0 +13934,38,263.5,6,0.0 +13934,3,10,2,0.0 +13934,56,38,47,0.0 +13934,47,9.5,44,0.0 +13934,72,34.8,49,0.0 +13934,69,36,24,0.0 +13934,26,31.23,25,0.0 +13934,51,53,3,0.0 +13934,23,9,41,0.0 +13934,59,55,14,0.0 +13934,58,13.25,4,0.0 +13934,29,123.79,18,0.0 +13934,30,25.89,36,0.0 +13934,35,18,10,0.0 +13934,42,14,37,0.0 +13934,14,23.25,40,0.0 +13934,17,39,32,0.0 +13934,60,34,31,0.0 +13934,13,6,41,0.0 +13934,21,10,7,0.0 +13934,64,33.25,11,0.0 +13934,75,7.75,40,0.0 +13934,73,15,14,0.0 +13934,52,7,6,0.0 +13934,53,32.8,44,0.0 +13934,71,21.5,33,0.0 +13934,36,19,11,0.0 +13934,4,22,5,0.0 +13934,57,19.5,34,0.0 +13934,37,26,7,0.0 +13934,2,19,30,0.0 +13934,65,21.05,26,0.0 +13934,50,16.25,35,0.0 +13934,39,18,47,0.0 +13934,74,10,33,0.0 +13934,22,21,12,0.0 +13934,28,45.6,8,0.0 +13934,10,31,15,0.0 +13934,68,12.5,9,0.0 +13934,11,21,46,0.0 +13934,49,20,14,0.0 +13935,37,26,50,0.0 +13935,24,4.5,17,0.0 +13935,64,33.25,22,0.0 +13935,20,81,30,0.0 +13935,35,18,19,0.0 +13935,75,7.75,16,0.0 +13935,36,19,1,0.0 +13935,70,15,29,0.0 +13935,1,18,30,0.0 +13935,26,31.23,46,0.0 +13935,43,46,33,0.0 +13935,54,7.45,17,0.0 +13935,4,22,22,0.0 +13935,13,6,38,0.0 +13935,27,43.9,47,0.0 +13935,22,21,34,0.0 +13935,7,30,22,0.0 +13935,67,14,25,0.0 +13935,44,19.45,20,0.0 +13935,12,38,41,0.0 +13935,3,10,12,0.0 +13935,8,40,46,0.0 +13935,63,43.9,7,0.0 +13935,77,13,16,0.0 +13935,30,25.89,46,0.0 +13935,38,263.5,23,0.0 +13935,29,123.79,32,0.0 +13935,19,9.2,26,0.0 +13935,23,9,48,0.0 +13935,56,38,37,0.0 +13935,60,34,3,0.0 +13935,31,12.5,36,0.0 +13935,68,12.5,16,0.0 +13935,39,18,21,0.0 +13935,28,45.6,24,0.0 +13935,55,24,46,0.0 +13935,21,10,30,0.0 +13935,18,62.5,20,0.0 +13935,74,10,5,0.0 +13935,16,17.45,4,0.0 +13935,73,15,50,0.0 +13935,50,16.25,37,0.0 +13935,34,14,5,0.0 +13935,53,32.8,10,0.0 +13935,17,39,8,0.0 +13935,66,17,14,0.0 +13935,52,7,28,0.0 +13935,11,21,22,0.0 +13935,61,28.5,1,0.0 +13935,2,19,10,0.0 +13935,57,19.5,14,0.0 +13935,76,18,45,0.0 +13935,15,15.5,42,0.0 +13935,47,9.5,5,0.0 +13935,6,25,45,0.0 +13935,10,31,39,0.0 +13935,58,13.25,29,0.0 +13935,51,53,36,0.0 +13935,41,9.65,11,0.0 +13935,59,55,26,0.0 +13935,65,21.05,10,0.0 +13935,48,12.75,21,0.0 +13935,32,32,17,0.0 +13935,42,14,25,0.0 +13935,71,21.5,48,0.0 +13935,5,21.35,29,0.0 +13935,40,18.4,25,0.0 +13935,46,12,5,0.0 +13935,45,9.5,27,0.0 +13935,9,97,21,0.0 +13935,72,34.8,12,0.0 +13935,49,20,5,0.0 +13935,25,14,28,0.0 +13935,33,2.5,19,0.0 +13935,62,49.3,22,0.0 +13935,14,23.25,25,0.0 +13936,47,9.5,19,0.0 +13936,21,10,37,0.0 +13936,64,33.25,7,0.0 +13936,23,9,7,0.0 +13936,67,14,34,0.0 +13936,60,34,6,0.0 +13936,56,38,23,0.0 +13936,32,32,16,0.0 +13936,37,26,32,0.0 +13936,72,34.8,14,0.0 +13936,40,18.4,36,0.0 +13936,62,49.3,33,0.0 +13936,39,18,49,0.0 +13936,22,21,10,0.0 +13936,4,22,34,0.0 +13936,34,14,24,0.0 +13936,9,97,7,0.0 +13936,10,31,40,0.0 +13936,25,14,50,0.0 +13936,43,46,16,0.0 +13936,75,7.75,3,0.0 +13936,41,9.65,2,0.0 +13936,66,17,46,0.0 +13936,16,17.45,48,0.0 +13936,57,19.5,31,0.0 +13936,15,15.5,22,0.0 +13936,17,39,47,0.0 +13936,63,43.9,49,0.0 +13936,69,36,39,0.0 +13936,77,13,7,0.0 +13936,55,24,35,0.0 +13936,53,32.8,43,0.0 +13936,61,28.5,41,0.0 +13936,50,16.25,38,0.0 +13936,44,19.45,34,0.0 +13936,11,21,39,0.0 +13936,42,14,7,0.0 +13936,48,12.75,20,0.0 +13936,5,21.35,46,0.0 +13936,6,25,23,0.0 +13936,35,18,26,0.0 +13936,19,9.2,40,0.0 +13936,46,12,18,0.0 +13936,73,15,45,0.0 +13936,12,38,1,0.0 +13936,71,21.5,39,0.0 +13936,51,53,34,0.0 +13936,8,40,25,0.0 +13936,68,12.5,8,0.0 +13936,14,23.25,20,0.0 +13936,49,20,39,0.0 +13936,76,18,35,0.0 +13937,23,9,29,0.0 +13937,66,17,16,0.0 +13937,58,13.25,30,0.0 +13937,29,123.79,2,0.0 +13937,10,31,48,0.0 +13937,70,15,46,0.0 +13937,4,22,36,0.0 +13937,54,7.45,16,0.0 +13937,41,9.65,26,0.0 +13937,50,16.25,19,0.0 +13937,68,12.5,8,0.0 +13937,15,15.5,11,0.0 +13937,48,12.75,49,0.0 +13937,28,45.6,42,0.0 +13937,27,43.9,30,0.0 +13937,60,34,40,0.0 +13938,38,263.5,8,0.0 +13938,4,22,23,0.0 +13938,77,13,34,0.0 +13938,16,17.45,12,0.0 +13938,53,32.8,34,0.0 +13938,26,31.23,2,0.0 +13938,71,21.5,25,0.0 +13938,43,46,28,0.0 +13938,14,23.25,12,0.0 +13938,8,40,3,0.0 +13938,50,16.25,16,0.0 +13938,73,15,21,0.0 +13938,31,12.5,9,0.0 +13938,51,53,9,0.0 +13938,9,97,23,0.0 +13938,33,2.5,24,0.0 +13938,67,14,14,0.0 +13938,7,30,47,0.0 +13938,41,9.65,38,0.0 +13938,13,6,18,0.0 +13938,47,9.5,36,0.0 +13939,16,17.45,25,0.0 +13939,49,20,3,0.0 +13939,24,4.5,14,0.0 +13939,45,9.5,48,0.0 +13939,69,36,46,0.0 +13939,77,13,3,0.0 +13939,31,12.5,29,0.0 +13939,51,53,32,0.0 +13939,30,25.89,46,0.0 +13939,12,38,46,0.0 +13939,68,12.5,47,0.0 +13939,58,13.25,47,0.0 +13939,32,32,9,0.0 +13939,27,43.9,37,0.0 +13939,10,31,30,0.0 +13939,15,15.5,16,0.0 +13939,34,14,8,0.0 +13939,42,14,19,0.0 +13939,19,9.2,26,0.0 +13939,71,21.5,12,0.0 +13939,76,18,5,0.0 +13939,39,18,46,0.0 +13939,53,32.8,3,0.0 +13939,66,17,32,0.0 +13939,56,38,44,0.0 +13939,62,49.3,43,0.0 +13939,48,12.75,34,0.0 +13939,21,10,12,0.0 +13939,33,2.5,17,0.0 +13939,73,15,22,0.0 +13939,20,81,14,0.0 +13939,44,19.45,23,0.0 +13939,6,25,25,0.0 +13939,59,55,8,0.0 +13939,52,7,32,0.0 +13939,38,263.5,12,0.0 +13939,65,21.05,45,0.0 +13939,43,46,34,0.0 +13939,50,16.25,29,0.0 +13939,72,34.8,27,0.0 +13939,46,12,43,0.0 +13939,26,31.23,46,0.0 +13939,37,26,28,0.0 +13939,28,45.6,25,0.0 +13939,18,62.5,25,0.0 +13939,23,9,40,0.0 +13939,75,7.75,32,0.0 +13940,8,40,43,0.0 +13940,54,7.45,11,0.0 +13940,21,10,21,0.0 +13940,32,32,2,0.0 +13940,53,32.8,36,0.0 +13940,69,36,22,0.0 +13940,72,34.8,27,0.0 +13940,75,7.75,27,0.0 +13940,49,20,42,0.0 +13940,52,7,37,0.0 +13940,74,10,29,0.0 +13940,57,19.5,11,0.0 +13940,1,18,37,0.0 +13940,67,14,14,0.0 +13940,15,15.5,44,0.0 +13940,7,30,24,0.0 +13940,18,62.5,50,0.0 +13940,26,31.23,28,0.0 +13940,56,38,36,0.0 +13940,12,38,50,0.0 +13940,65,21.05,49,0.0 +13940,34,14,1,0.0 +13941,18,62.5,17,0.0 +13941,68,12.5,33,0.0 +13941,35,18,35,0.0 +13941,36,19,9,0.0 +13941,5,21.35,21,0.0 +13941,24,4.5,35,0.0 +13941,17,39,30,0.0 +13941,38,263.5,40,0.0 +13941,32,32,46,0.0 +13941,10,31,1,0.0 +13941,55,24,37,0.0 +13941,4,22,3,0.0 +13941,57,19.5,11,0.0 +13941,56,38,24,0.0 +13941,30,25.89,35,0.0 +13941,29,123.79,16,0.0 +13941,26,31.23,40,0.0 +13941,43,46,16,0.0 +13941,12,38,44,0.0 +13941,28,45.6,8,0.0 +13941,69,36,38,0.0 +13941,63,43.9,33,0.0 +13941,21,10,22,0.0 +13941,74,10,40,0.0 +13941,6,25,6,0.0 +13941,65,21.05,17,0.0 +13941,3,10,11,0.0 +13941,52,7,28,0.0 +13941,45,9.5,21,0.0 +13941,53,32.8,25,0.0 +13941,49,20,3,0.0 +13941,48,12.75,8,0.0 +13941,72,34.8,32,0.0 +13941,54,7.45,18,0.0 +13941,47,9.5,33,0.0 +13941,73,15,2,0.0 +13941,31,12.5,3,0.0 +13941,9,97,8,0.0 +13941,2,19,20,0.0 +13941,19,9.2,24,0.0 +13941,34,14,34,0.0 +13941,37,26,23,0.0 +13941,7,30,6,0.0 +13941,23,9,47,0.0 +13941,62,49.3,14,0.0 +13941,75,7.75,44,0.0 +13941,61,28.5,38,0.0 +13941,11,21,20,0.0 +13941,46,12,30,0.0 +13941,13,6,12,0.0 +13941,44,19.45,7,0.0 +13941,20,81,29,0.0 +13941,51,53,34,0.0 +13941,1,18,36,0.0 +13941,41,9.65,21,0.0 +13941,14,23.25,45,0.0 +13941,16,17.45,12,0.0 +13941,60,34,20,0.0 +13941,76,18,18,0.0 +13941,22,21,18,0.0 +13941,77,13,29,0.0 +13941,42,14,39,0.0 +13941,33,2.5,41,0.0 +13941,71,21.5,4,0.0 +13941,64,33.25,34,0.0 +13941,50,16.25,28,0.0 +13941,58,13.25,46,0.0 +13941,27,43.9,7,0.0 +13941,8,40,48,0.0 +13941,15,15.5,40,0.0 +13941,67,14,26,0.0 +13941,59,55,23,0.0 +13941,25,14,33,0.0 +13941,39,18,22,0.0 +13941,40,18.4,31,0.0 +13942,61,28.5,41,0.0 +13942,46,12,36,0.0 +13942,21,10,39,0.0 +13942,17,39,21,0.0 +13942,27,43.9,44,0.0 +13942,67,14,3,0.0 +13942,62,49.3,35,0.0 +13942,38,263.5,48,0.0 +13942,73,15,36,0.0 +13942,37,26,21,0.0 +13942,32,32,1,0.0 +13942,48,12.75,43,0.0 +13942,4,22,14,0.0 +13942,3,10,25,0.0 +13942,63,43.9,43,0.0 +13942,51,53,17,0.0 +13942,31,12.5,14,0.0 +13942,20,81,24,0.0 +13943,64,33.25,39,0.0 +13943,35,18,27,0.0 +13943,22,21,47,0.0 +13943,57,19.5,41,0.0 +13943,70,15,45,0.0 +13943,7,30,13,0.0 +13943,43,46,46,0.0 +13943,5,21.35,44,0.0 +13943,8,40,36,0.0 +13943,55,24,26,0.0 +13943,31,12.5,3,0.0 +13943,16,17.45,6,0.0 +13943,54,7.45,28,0.0 +13943,65,21.05,26,0.0 +13943,68,12.5,8,0.0 +13943,26,31.23,33,0.0 +13943,29,123.79,21,0.0 +13943,12,38,34,0.0 +13943,48,12.75,2,0.0 +13943,24,4.5,2,0.0 +13943,60,34,46,0.0 +13943,20,81,1,0.0 +13943,17,39,2,0.0 +13943,28,45.6,19,0.0 +13943,19,9.2,19,0.0 +13943,33,2.5,49,0.0 +13943,44,19.45,14,0.0 +13943,45,9.5,31,0.0 +13943,61,28.5,7,0.0 +13943,15,15.5,48,0.0 +13943,59,55,22,0.0 +13943,46,12,36,0.0 +13943,72,34.8,15,0.0 +13943,32,32,37,0.0 +13943,34,14,17,0.0 +13943,6,25,37,0.0 +13943,52,7,14,0.0 +13943,13,6,27,0.0 +13943,76,18,20,0.0 +13943,27,43.9,22,0.0 +13943,41,9.65,26,0.0 +13943,42,14,49,0.0 +13943,1,18,8,0.0 +13943,69,36,16,0.0 +13943,25,14,48,0.0 +13943,11,21,48,0.0 +13943,4,22,33,0.0 +13943,47,9.5,4,0.0 +13943,30,25.89,49,0.0 +13943,50,16.25,10,0.0 +13943,75,7.75,15,0.0 +13943,71,21.5,25,0.0 +13943,14,23.25,18,0.0 +13943,67,14,32,0.0 +13943,66,17,49,0.0 +13943,40,18.4,25,0.0 +13943,23,9,14,0.0 +13943,10,31,34,0.0 +13943,3,10,9,0.0 +13944,25,14,8,0.0 +13944,53,32.8,17,0.0 +13944,7,30,1,0.0 +13944,42,14,20,0.0 +13944,44,19.45,48,0.0 +13944,29,123.79,48,0.0 +13944,15,15.5,19,0.0 +13944,1,18,13,0.0 +13944,51,53,43,0.0 +13944,55,24,43,0.0 +13944,57,19.5,39,0.0 +13944,34,14,44,0.0 +13944,52,7,37,0.0 +13944,71,21.5,9,0.0 +13944,37,26,1,0.0 +13944,32,32,18,0.0 +13944,33,2.5,29,0.0 +13944,40,18.4,3,0.0 +13944,30,25.89,37,0.0 +13944,75,7.75,1,0.0 +13944,41,9.65,49,0.0 +13944,16,17.45,12,0.0 +13944,72,34.8,7,0.0 +13944,60,34,11,0.0 +13944,54,7.45,4,0.0 +13944,74,10,40,0.0 +13944,22,21,34,0.0 +13944,23,9,31,0.0 +13944,14,23.25,38,0.0 +13944,43,46,46,0.0 +13944,26,31.23,34,0.0 +13944,8,40,27,0.0 +13944,63,43.9,11,0.0 +13944,35,18,32,0.0 +13944,11,21,45,0.0 +13944,31,12.5,40,0.0 +13944,27,43.9,19,0.0 +13944,6,25,14,0.0 +13944,59,55,43,0.0 +13944,9,97,48,0.0 +13944,28,45.6,45,0.0 +13944,24,4.5,30,0.0 +13944,68,12.5,16,0.0 +13944,67,14,3,0.0 +13944,62,49.3,6,0.0 +13944,13,6,21,0.0 +13944,48,12.75,28,0.0 +13944,4,22,31,0.0 +13944,76,18,40,0.0 +13944,21,10,44,0.0 +13944,10,31,41,0.0 +13944,39,18,4,0.0 +13944,50,16.25,48,0.0 +13944,45,9.5,11,0.0 +13944,36,19,31,0.0 +13944,66,17,15,0.0 +13944,77,13,7,0.0 +13944,20,81,29,0.0 +13944,58,13.25,46,0.0 +13944,49,20,8,0.0 +13944,70,15,12,0.0 +13944,38,263.5,5,0.0 +13944,61,28.5,42,0.0 +13944,18,62.5,8,0.0 +13945,76,18,45,0.0 +13945,31,12.5,5,0.0 +13945,69,36,17,0.0 +13945,33,2.5,48,0.0 +13945,51,53,37,0.0 +13945,70,15,19,0.0 +13946,7,30,17,0.0 +13946,30,25.89,23,0.0 +13946,9,97,13,0.0 +13946,35,18,46,0.0 +13946,73,15,45,0.0 +13946,23,9,25,0.0 +13946,69,36,27,0.0 +13946,36,19,30,0.0 +13946,5,21.35,12,0.0 +13946,17,39,12,0.0 +13946,66,17,20,0.0 +13946,11,21,31,0.0 +13946,57,19.5,10,0.0 +13946,62,49.3,46,0.0 +13946,63,43.9,40,0.0 +13946,31,12.5,45,0.0 +13946,42,14,11,0.0 +13946,32,32,42,0.0 +13946,53,32.8,23,0.0 +13946,41,9.65,28,0.0 +13946,34,14,48,0.0 +13946,19,9.2,12,0.0 +13946,6,25,15,0.0 +13946,50,16.25,41,0.0 +13946,1,18,23,0.0 +13946,52,7,20,0.0 +13946,22,21,36,0.0 +13946,8,40,45,0.0 +13946,65,21.05,9,0.0 +13946,18,62.5,15,0.0 +13946,26,31.23,18,0.0 +13946,13,6,16,0.0 +13946,21,10,37,0.0 +13946,75,7.75,9,0.0 +13946,44,19.45,7,0.0 +13946,47,9.5,47,0.0 +13946,45,9.5,36,0.0 +13946,15,15.5,40,0.0 +13946,2,19,48,0.0 +13946,48,12.75,1,0.0 +13946,16,17.45,24,0.0 +13946,38,263.5,20,0.0 +13946,77,13,46,0.0 +13946,61,28.5,36,0.0 +13946,43,46,50,0.0 +13946,14,23.25,17,0.0 +13946,20,81,48,0.0 +13946,25,14,6,0.0 +13946,54,7.45,10,0.0 +13946,56,38,30,0.0 +13946,46,12,40,0.0 +13946,28,45.6,38,0.0 +13946,64,33.25,47,0.0 +13946,72,34.8,36,0.0 +13946,55,24,22,0.0 +13946,39,18,1,0.0 +13946,60,34,10,0.0 +13946,58,13.25,48,0.0 +13946,4,22,42,0.0 +13946,74,10,6,0.0 +13947,70,15,12,0.0 +13947,63,43.9,25,0.0 +13947,43,46,44,0.0 +13947,26,31.23,28,0.0 +13947,64,33.25,17,0.0 +13947,29,123.79,49,0.0 +13947,36,19,18,0.0 +13947,38,263.5,11,0.0 +13947,23,9,33,0.0 +13947,44,19.45,46,0.0 +13947,33,2.5,23,0.0 +13947,8,40,21,0.0 +13947,13,6,42,0.0 +13947,56,38,2,0.0 +13947,16,17.45,26,0.0 +13947,74,10,45,0.0 +13947,2,19,50,0.0 +13947,67,14,33,0.0 +13947,22,21,42,0.0 +13947,35,18,43,0.0 +13947,52,7,42,0.0 +13947,19,9.2,26,0.0 +13947,25,14,31,0.0 +13947,5,21.35,22,0.0 +13947,21,10,26,0.0 +13947,50,16.25,49,0.0 +13947,54,7.45,14,0.0 +13947,27,43.9,30,0.0 +13947,32,32,46,0.0 +13947,49,20,9,0.0 +13947,73,15,20,0.0 +13948,39,18,48,0.0 +13948,26,31.23,50,0.0 +13948,74,10,8,0.0 +13948,29,123.79,49,0.0 +13948,75,7.75,36,0.0 +13948,5,21.35,34,0.0 +13948,9,97,50,0.0 +13948,4,22,6,0.0 +13948,60,34,35,0.0 +13948,69,36,21,0.0 +13948,55,24,45,0.0 +13948,25,14,22,0.0 +13948,38,263.5,40,0.0 +13948,22,21,11,0.0 +13948,19,9.2,8,0.0 +13948,1,18,16,0.0 +13948,30,25.89,50,0.0 +13948,76,18,47,0.0 +13948,14,23.25,21,0.0 +13948,54,7.45,2,0.0 +13948,49,20,10,0.0 +13948,13,6,7,0.0 +13948,6,25,9,0.0 +13948,45,9.5,43,0.0 +13948,28,45.6,41,0.0 +13948,11,21,13,0.0 +13948,44,19.45,39,0.0 +13948,40,18.4,16,0.0 +13948,18,62.5,11,0.0 +13948,59,55,3,0.0 +13948,17,39,36,0.0 +13948,31,12.5,21,0.0 +13948,62,49.3,44,0.0 +13948,32,32,11,0.0 +13948,67,14,12,0.0 +13948,72,34.8,12,0.0 +13948,61,28.5,32,0.0 +13948,33,2.5,43,0.0 +13948,43,46,6,0.0 +13948,52,7,36,0.0 +13948,7,30,38,0.0 +13948,24,4.5,35,0.0 +13948,23,9,30,0.0 +13948,66,17,19,0.0 +13948,36,19,9,0.0 +13948,57,19.5,41,0.0 +13948,70,15,4,0.0 +13948,50,16.25,25,0.0 +13948,71,21.5,5,0.0 +13948,56,38,33,0.0 +13948,21,10,4,0.0 +13948,53,32.8,3,0.0 +13948,35,18,16,0.0 +13948,77,13,7,0.0 +13948,34,14,41,0.0 +13948,2,19,4,0.0 +13948,16,17.45,25,0.0 +13948,42,14,3,0.0 +13948,47,9.5,47,0.0 +13948,73,15,27,0.0 +13948,51,53,8,0.0 +13948,27,43.9,12,0.0 +13948,46,12,32,0.0 +13948,63,43.9,9,0.0 +13948,15,15.5,46,0.0 +13948,10,31,49,0.0 +13948,64,33.25,16,0.0 +13948,8,40,15,0.0 +13948,68,12.5,43,0.0 +13948,65,21.05,31,0.0 +13948,12,38,2,0.0 +13948,20,81,46,0.0 +13948,48,12.75,31,0.0 +13948,3,10,5,0.0 +13948,37,26,33,0.0 +13949,70,15,18,0.0 +13949,57,19.5,13,0.0 +13949,72,34.8,13,0.0 +13950,59,55,5,0.0 +13950,65,21.05,16,0.0 +13950,13,6,12,0.0 +13950,71,21.5,7,0.0 +13950,28,45.6,7,0.0 +13950,68,12.5,25,0.0 +13950,29,123.79,23,0.0 +13950,38,263.5,45,0.0 +13950,18,62.5,13,0.0 +13950,7,30,5,0.0 +13950,37,26,24,0.0 +13950,60,34,1,0.0 +13950,20,81,5,0.0 +13950,9,97,20,0.0 +13950,12,38,24,0.0 +13950,5,21.35,44,0.0 +13950,2,19,34,0.0 +13950,21,10,8,0.0 +13950,6,25,38,0.0 +13950,58,13.25,7,0.0 +13950,57,19.5,43,0.0 +13950,1,18,8,0.0 +13950,11,21,1,0.0 +13950,51,53,41,0.0 +13950,15,15.5,31,0.0 +13950,70,15,28,0.0 +13950,26,31.23,20,0.0 +13950,76,18,47,0.0 +13950,32,32,31,0.0 +13950,47,9.5,32,0.0 +13950,35,18,34,0.0 +13950,53,32.8,12,0.0 +13950,34,14,50,0.0 +13950,4,22,27,0.0 +13950,52,7,49,0.0 +13950,66,17,13,0.0 +13950,61,28.5,50,0.0 +13950,75,7.75,37,0.0 +13950,17,39,49,0.0 +13950,3,10,39,0.0 +13950,10,31,35,0.0 +13950,25,14,7,0.0 +13950,56,38,35,0.0 +13950,49,20,21,0.0 +13950,27,43.9,12,0.0 +13950,64,33.25,27,0.0 +13950,42,14,22,0.0 +13950,69,36,16,0.0 +13950,54,7.45,3,0.0 +13951,3,10,13,0.0 +13951,67,14,9,0.0 +13951,37,26,14,0.0 +13951,59,55,7,0.0 +13951,47,9.5,46,0.0 +13951,20,81,24,0.0 +13951,27,43.9,26,0.0 +13951,7,30,22,0.0 +13951,52,7,18,0.0 +13951,31,12.5,10,0.0 +13951,4,22,9,0.0 +13951,51,53,13,0.0 +13951,53,32.8,40,0.0 +13951,15,15.5,40,0.0 +13951,49,20,45,0.0 +13951,50,16.25,20,0.0 +13951,46,12,42,0.0 +13951,2,19,40,0.0 +13951,42,14,38,0.0 +13951,72,34.8,8,0.0 +13951,5,21.35,2,0.0 +13951,39,18,41,0.0 +13951,30,25.89,21,0.0 +13951,57,19.5,5,0.0 +13951,26,31.23,21,0.0 +13951,58,13.25,4,0.0 +13951,8,40,9,0.0 +13951,36,19,30,0.0 +13951,9,97,22,0.0 +13951,45,9.5,29,0.0 +13951,14,23.25,13,0.0 +13951,69,36,22,0.0 +13951,21,10,7,0.0 +13951,38,263.5,37,0.0 +13951,48,12.75,39,0.0 +13951,23,9,25,0.0 +13951,34,14,43,0.0 +13951,62,49.3,34,0.0 +13951,75,7.75,46,0.0 +13951,65,21.05,18,0.0 +13951,73,15,40,0.0 +13951,61,28.5,45,0.0 +13951,68,12.5,25,0.0 +13951,43,46,20,0.0 +13951,6,25,37,0.0 +13951,11,21,34,0.0 +13951,19,9.2,15,0.0 +13951,10,31,25,0.0 +13951,44,19.45,16,0.0 +13951,66,17,9,0.0 +13951,56,38,39,0.0 +13951,24,4.5,36,0.0 +13951,33,2.5,5,0.0 +13951,32,32,45,0.0 +13951,74,10,12,0.0 +13951,55,24,24,0.0 +13951,41,9.65,4,0.0 +13951,16,17.45,21,0.0 +13951,35,18,22,0.0 +13951,25,14,16,0.0 +13951,71,21.5,10,0.0 +13951,18,62.5,46,0.0 +13951,29,123.79,17,0.0 +13951,60,34,25,0.0 +13951,40,18.4,25,0.0 +13951,77,13,28,0.0 +13951,70,15,33,0.0 +13951,54,7.45,5,0.0 +13951,12,38,5,0.0 +13951,28,45.6,15,0.0 +13951,76,18,12,0.0 +13951,63,43.9,9,0.0 +13951,22,21,46,0.0 +13952,59,55,14,0.0 +13952,12,38,36,0.0 +13952,67,14,20,0.0 +13952,30,25.89,9,0.0 +13952,76,18,2,0.0 +13952,42,14,42,0.0 +13952,45,9.5,28,0.0 +13952,72,34.8,8,0.0 +13952,20,81,31,0.0 +13952,57,19.5,50,0.0 +13952,36,19,47,0.0 +13952,58,13.25,39,0.0 +13952,62,49.3,5,0.0 +13952,18,62.5,28,0.0 +13952,9,97,47,0.0 +13952,19,9.2,28,0.0 +13952,39,18,23,0.0 +13952,73,15,17,0.0 +13952,7,30,11,0.0 +13952,52,7,10,0.0 +13952,66,17,49,0.0 +13952,60,34,4,0.0 +13952,10,31,35,0.0 +13952,29,123.79,5,0.0 +13953,70,15,38,0.0 +13953,52,7,1,0.0 +13953,17,39,6,0.0 +13953,60,34,14,0.0 +13953,6,25,25,0.0 +13953,75,7.75,26,0.0 +13953,25,14,44,0.0 +13953,73,15,2,0.0 +13953,9,97,37,0.0 +13953,64,33.25,38,0.0 +13953,77,13,43,0.0 +13953,43,46,30,0.0 +13953,29,123.79,21,0.0 +13953,69,36,47,0.0 +13953,58,13.25,8,0.0 +13953,44,19.45,28,0.0 +13953,67,14,24,0.0 +13953,45,9.5,14,0.0 +13953,27,43.9,47,0.0 +13954,44,19.45,19,0.0 +13954,36,19,24,0.0 +13954,66,17,49,0.0 +13954,19,9.2,48,0.0 +13954,60,34,20,0.0 +13954,71,21.5,48,0.0 +13954,5,21.35,50,0.0 +13954,33,2.5,24,0.0 +13954,69,36,14,0.0 +13954,53,32.8,29,0.0 +13954,37,26,16,0.0 +13954,67,14,5,0.0 +13954,20,81,7,0.0 +13954,57,19.5,31,0.0 +13954,42,14,20,0.0 +13954,18,62.5,17,0.0 +13954,16,17.45,31,0.0 +13954,29,123.79,8,0.0 +13954,38,263.5,16,0.0 +13954,17,39,49,0.0 +13954,6,25,19,0.0 +13954,3,10,19,0.0 +13954,52,7,40,0.0 +13954,74,10,10,0.0 +13954,49,20,31,0.0 +13954,23,9,28,0.0 +13954,28,45.6,7,0.0 +13954,30,25.89,44,0.0 +13954,56,38,12,0.0 +13954,70,15,50,0.0 +13954,12,38,41,0.0 +13954,34,14,27,0.0 +13954,2,19,45,0.0 +13954,43,46,40,0.0 +13954,55,24,31,0.0 +13954,73,15,42,0.0 +13954,45,9.5,32,0.0 +13954,21,10,21,0.0 +13954,77,13,19,0.0 +13954,11,21,2,0.0 +13954,39,18,10,0.0 +13954,50,16.25,15,0.0 +13954,35,18,34,0.0 +13954,27,43.9,30,0.0 +13954,41,9.65,2,0.0 +13954,7,30,32,0.0 +13954,15,15.5,48,0.0 +13954,75,7.75,21,0.0 +13954,68,12.5,37,0.0 +13954,46,12,21,0.0 +13954,13,6,22,0.0 +13954,63,43.9,35,0.0 +13954,26,31.23,17,0.0 +13954,24,4.5,29,0.0 +13954,4,22,25,0.0 +13954,22,21,8,0.0 +13954,31,12.5,48,0.0 +13954,58,13.25,44,0.0 +13955,75,7.75,20,0.0 +13955,17,39,29,0.0 +13955,24,4.5,21,0.0 +13955,27,43.9,28,0.0 +13955,46,12,3,0.0 +13955,47,9.5,4,0.0 +13955,49,20,48,0.0 +13955,2,19,39,0.0 +13955,43,46,36,0.0 +13955,76,18,45,0.0 +13955,65,21.05,41,0.0 +13955,50,16.25,23,0.0 +13955,38,263.5,50,0.0 +13955,74,10,5,0.0 +13955,36,19,36,0.0 +13955,54,7.45,11,0.0 +13955,12,38,49,0.0 +13955,10,31,33,0.0 +13955,51,53,36,0.0 +13955,45,9.5,49,0.0 +13955,56,38,48,0.0 +13955,71,21.5,25,0.0 +13955,34,14,24,0.0 +13955,3,10,21,0.0 +13955,52,7,14,0.0 +13956,28,45.6,49,0.0 +13956,69,36,15,0.0 +13956,17,39,5,0.0 +13956,55,24,8,0.0 +13956,60,34,26,0.0 +13956,16,17.45,21,0.0 +13956,40,18.4,11,0.0 +13956,76,18,9,0.0 +13956,77,13,16,0.0 +13956,33,2.5,13,0.0 +13957,62,49.3,16,0.0 +13957,38,263.5,19,0.0 +13957,63,43.9,40,0.0 +13957,67,14,38,0.0 +13957,47,9.5,31,0.0 +13957,73,15,35,0.0 +13957,64,33.25,40,0.0 +13957,10,31,22,0.0 +13957,37,26,2,0.0 +13957,20,81,8,0.0 +13957,52,7,31,0.0 +13957,24,4.5,1,0.0 +13957,77,13,17,0.0 +13957,45,9.5,8,0.0 +13957,6,25,20,0.0 +13957,68,12.5,7,0.0 +13957,44,19.45,42,0.0 +13957,30,25.89,21,0.0 +13957,15,15.5,34,0.0 +13957,14,23.25,19,0.0 +13957,72,34.8,17,0.0 +13957,69,36,47,0.0 +13957,28,45.6,48,0.0 +13957,12,38,14,0.0 +13957,49,20,28,0.0 +13957,32,32,19,0.0 +13957,61,28.5,46,0.0 +13957,11,21,11,0.0 +13957,39,18,32,0.0 +13957,53,32.8,49,0.0 +13957,40,18.4,46,0.0 +13957,18,62.5,43,0.0 +13957,33,2.5,36,0.0 +13957,13,6,50,0.0 +13957,31,12.5,14,0.0 +13957,46,12,18,0.0 +13957,75,7.75,2,0.0 +13957,71,21.5,26,0.0 +13957,21,10,30,0.0 +13957,16,17.45,30,0.0 +13957,36,19,16,0.0 +13957,58,13.25,1,0.0 +13957,70,15,32,0.0 +13957,57,19.5,36,0.0 +13957,56,38,6,0.0 +13957,1,18,1,0.0 +13957,4,22,16,0.0 +13957,48,12.75,39,0.0 +13957,2,19,15,0.0 +13957,29,123.79,45,0.0 +13957,60,34,16,0.0 +13957,8,40,7,0.0 +13957,25,14,33,0.0 +13957,34,14,45,0.0 +13957,51,53,5,0.0 +13957,66,17,43,0.0 +13957,3,10,11,0.0 +13957,65,21.05,4,0.0 +13957,43,46,48,0.0 +13957,19,9.2,29,0.0 +13957,55,24,13,0.0 +13957,7,30,2,0.0 +13957,54,7.45,36,0.0 +13957,42,14,43,0.0 +13957,26,31.23,33,0.0 +13958,28,45.6,23,0.0 +13958,53,32.8,16,0.0 +13958,45,9.5,43,0.0 +13958,71,21.5,43,0.0 +13958,13,6,6,0.0 +13958,61,28.5,9,0.0 +13958,18,62.5,29,0.0 +13958,56,38,8,0.0 +13958,69,36,12,0.0 +13958,31,12.5,46,0.0 +13958,74,10,7,0.0 +13958,49,20,22,0.0 +13958,36,19,13,0.0 +13958,1,18,18,0.0 +13958,48,12.75,8,0.0 +13958,24,4.5,7,0.0 +13958,30,25.89,32,0.0 +13958,73,15,39,0.0 +13958,68,12.5,30,0.0 +13958,12,38,44,0.0 +13958,59,55,42,0.0 +13958,77,13,42,0.0 +13958,64,33.25,25,0.0 +13958,55,24,45,0.0 +13958,20,81,13,0.0 +13958,40,18.4,21,0.0 +13958,44,19.45,21,0.0 +13958,32,32,10,0.0 +13958,46,12,7,0.0 +13958,9,97,27,0.0 +13958,26,31.23,37,0.0 +13958,14,23.25,14,0.0 +13958,10,31,38,0.0 +13958,29,123.79,33,0.0 +13958,15,15.5,22,0.0 +13958,34,14,19,0.0 +13958,43,46,32,0.0 +13958,6,25,28,0.0 +13958,5,21.35,36,0.0 +13958,67,14,38,0.0 +13958,22,21,29,0.0 +13958,3,10,4,0.0 +13958,54,7.45,5,0.0 +13958,62,49.3,17,0.0 +13958,38,263.5,29,0.0 +13958,65,21.05,40,0.0 +13958,70,15,9,0.0 +13958,75,7.75,28,0.0 +13958,52,7,28,0.0 +13958,8,40,32,0.0 +13958,21,10,13,0.0 +13958,7,30,7,0.0 +13958,37,26,23,0.0 +13958,16,17.45,5,0.0 +13958,27,43.9,6,0.0 +13958,57,19.5,23,0.0 +13958,50,16.25,8,0.0 +13958,63,43.9,2,0.0 +13958,25,14,42,0.0 +13958,72,34.8,45,0.0 +13958,58,13.25,38,0.0 +13958,76,18,12,0.0 +13958,66,17,36,0.0 +13958,17,39,34,0.0 +13958,33,2.5,22,0.0 +13958,4,22,8,0.0 +13958,42,14,36,0.0 +13958,2,19,2,0.0 +13958,35,18,19,0.0 +13958,41,9.65,20,0.0 +13958,47,9.5,47,0.0 +13958,11,21,30,0.0 +13958,19,9.2,49,0.0 +13958,23,9,8,0.0 +13959,38,263.5,3,0.0 +13959,39,18,26,0.0 +13959,46,12,26,0.0 +13959,68,12.5,4,0.0 +13959,52,7,49,0.0 +13959,25,14,18,0.0 +13959,2,19,42,0.0 +13959,20,81,35,0.0 +13959,36,19,34,0.0 +13959,29,123.79,8,0.0 +13959,33,2.5,20,0.0 +13959,27,43.9,45,0.0 +13959,43,46,8,0.0 +13959,70,15,4,0.0 +13959,4,22,37,0.0 +13959,14,23.25,35,0.0 +13959,65,21.05,16,0.0 +13959,71,21.5,12,0.0 +13959,49,20,38,0.0 +13959,8,40,14,0.0 +13959,54,7.45,10,0.0 +13959,51,53,46,0.0 +13959,59,55,42,0.0 +13959,30,25.89,15,0.0 +13959,31,12.5,30,0.0 +13959,47,9.5,30,0.0 +13959,1,18,30,0.0 +13959,41,9.65,1,0.0 +13959,48,12.75,2,0.0 +13959,37,26,5,0.0 +13959,64,33.25,35,0.0 +13959,24,4.5,43,0.0 +13959,26,31.23,17,0.0 +13959,3,10,46,0.0 +13959,12,38,12,0.0 +13959,56,38,19,0.0 +13959,22,21,9,0.0 +13959,19,9.2,3,0.0 +13959,9,97,24,0.0 +13959,63,43.9,19,0.0 +13959,13,6,23,0.0 +13959,42,14,5,0.0 +13959,58,13.25,38,0.0 +13959,55,24,30,0.0 +13959,23,9,22,0.0 +13959,73,15,38,0.0 +13959,40,18.4,1,0.0 +13959,57,19.5,37,0.0 +13959,21,10,43,0.0 +13959,15,15.5,8,0.0 +13959,75,7.75,25,0.0 +13959,72,34.8,10,0.0 +13959,77,13,8,0.0 +13959,5,21.35,37,0.0 +13959,50,16.25,22,0.0 +13959,10,31,19,0.0 +13959,67,14,21,0.0 +13959,11,21,45,0.0 +13959,18,62.5,38,0.0 +13959,7,30,47,0.0 +13960,11,21,43,0.0 +13960,66,17,41,0.0 +13960,13,6,23,0.0 +13960,57,19.5,27,0.0 +13960,16,17.45,44,0.0 +13960,23,9,47,0.0 +13960,17,39,31,0.0 +13960,69,36,18,0.0 +13960,10,31,28,0.0 +13960,42,14,31,0.0 +13960,9,97,31,0.0 +13960,53,32.8,18,0.0 +13960,61,28.5,36,0.0 +13960,59,55,32,0.0 +13960,58,13.25,46,0.0 +13960,71,21.5,34,0.0 +13960,50,16.25,39,0.0 +13960,21,10,46,0.0 +13960,25,14,24,0.0 +13961,73,15,27,0.0 +13961,20,81,33,0.0 +13961,48,12.75,1,0.0 +13961,65,21.05,29,0.0 +13961,50,16.25,8,0.0 +13961,38,263.5,13,0.0 +13961,67,14,5,0.0 +13961,62,49.3,15,0.0 +13961,72,34.8,13,0.0 +13961,26,31.23,14,0.0 +13961,24,4.5,8,0.0 +13961,22,21,16,0.0 +13961,40,18.4,33,0.0 +13961,51,53,29,0.0 +13961,5,21.35,34,0.0 +13961,61,28.5,6,0.0 +13961,14,23.25,40,0.0 +13961,10,31,22,0.0 +13961,1,18,46,0.0 +13961,75,7.75,14,0.0 +13961,21,10,6,0.0 +13961,68,12.5,45,0.0 +13961,70,15,4,0.0 +13961,39,18,40,0.0 +13961,19,9.2,40,0.0 +13961,25,14,27,0.0 +13961,58,13.25,37,0.0 +13961,29,123.79,7,0.0 +13961,6,25,15,0.0 +13961,3,10,41,0.0 +13961,52,7,9,0.0 +13961,34,14,8,0.0 +13961,49,20,12,0.0 +13961,66,17,19,0.0 +13961,13,6,13,0.0 +13961,33,2.5,1,0.0 +13961,60,34,24,0.0 +13961,17,39,35,0.0 +13961,23,9,33,0.0 +13961,63,43.9,43,0.0 +13961,27,43.9,2,0.0 +13961,56,38,34,0.0 +13961,9,97,19,0.0 +13961,53,32.8,12,0.0 +13962,67,14,15,0.0 +13962,65,21.05,26,0.0 +13962,44,19.45,11,0.0 +13962,39,18,48,0.0 +13962,16,17.45,26,0.0 +13962,27,43.9,18,0.0 +13962,68,12.5,46,0.0 +13962,51,53,4,0.0 +13962,56,38,35,0.0 +13962,9,97,27,0.0 +13962,42,14,10,0.0 +13962,6,25,45,0.0 +13962,31,12.5,10,0.0 +13962,19,9.2,30,0.0 +13962,30,25.89,29,0.0 +13962,77,13,11,0.0 +13962,63,43.9,8,0.0 +13962,62,49.3,26,0.0 +13962,47,9.5,24,0.0 +13962,52,7,6,0.0 +13962,70,15,16,0.0 +13962,21,10,45,0.0 +13962,18,62.5,28,0.0 +13962,5,21.35,48,0.0 +13962,36,19,21,0.0 +13962,22,21,48,0.0 +13962,10,31,43,0.0 +13962,55,24,8,0.0 +13962,58,13.25,22,0.0 +13962,66,17,23,0.0 +13962,38,263.5,4,0.0 +13962,69,36,41,0.0 +13962,76,18,12,0.0 +13962,61,28.5,1,0.0 +13962,20,81,42,0.0 +13962,54,7.45,14,0.0 +13962,46,12,12,0.0 +13962,14,23.25,43,0.0 +13962,8,40,12,0.0 +13962,26,31.23,41,0.0 +13962,29,123.79,10,0.0 +13962,24,4.5,25,0.0 +13962,15,15.5,25,0.0 +13962,37,26,30,0.0 +13962,7,30,23,0.0 +13962,49,20,43,0.0 +13962,34,14,2,0.0 +13962,13,6,20,0.0 +13962,72,34.8,35,0.0 +13962,64,33.25,47,0.0 +13962,60,34,39,0.0 +13962,50,16.25,50,0.0 +13963,31,12.5,3,0.0 +13963,61,28.5,37,0.0 +13963,15,15.5,1,0.0 +13963,67,14,26,0.0 +13963,39,18,46,0.0 +13963,35,18,50,0.0 +13963,9,97,44,0.0 +13963,44,19.45,3,0.0 +13963,4,22,4,0.0 +13963,74,10,24,0.0 +13963,38,263.5,43,0.0 +13963,57,19.5,30,0.0 +13963,28,45.6,24,0.0 +13963,53,32.8,29,0.0 +13963,32,32,31,0.0 +13963,55,24,1,0.0 +13963,17,39,17,0.0 +13963,45,9.5,45,0.0 +13963,24,4.5,17,0.0 +13963,46,12,20,0.0 +13963,16,17.45,36,0.0 +13963,12,38,5,0.0 +13963,71,21.5,37,0.0 +13963,26,31.23,23,0.0 +13963,54,7.45,30,0.0 +13963,60,34,10,0.0 +13963,64,33.25,13,0.0 +13963,20,81,27,0.0 +13963,33,2.5,50,0.0 +13964,50,16.25,13,0.0 +13964,51,53,1,0.0 +13964,66,17,16,0.0 +13964,27,43.9,50,0.0 +13964,23,9,1,0.0 +13964,3,10,28,0.0 +13964,4,22,40,0.0 +13964,61,28.5,41,0.0 +13964,40,18.4,5,0.0 +13964,18,62.5,43,0.0 +13964,5,21.35,18,0.0 +13964,38,263.5,43,0.0 +13964,52,7,8,0.0 +13964,10,31,30,0.0 +13964,19,9.2,9,0.0 +13964,14,23.25,36,0.0 +13964,20,81,38,0.0 +13964,28,45.6,15,0.0 +13964,71,21.5,10,0.0 +13964,37,26,31,0.0 +13964,47,9.5,23,0.0 +13964,34,14,33,0.0 +13964,56,38,26,0.0 +13964,49,20,43,0.0 +13964,29,123.79,13,0.0 +13964,12,38,14,0.0 +13964,54,7.45,11,0.0 +13964,21,10,37,0.0 +13964,77,13,12,0.0 +13964,45,9.5,6,0.0 +13964,15,15.5,37,0.0 +13964,63,43.9,38,0.0 +13964,62,49.3,32,0.0 +13964,46,12,47,0.0 +13964,22,21,44,0.0 +13964,6,25,47,0.0 +13964,25,14,40,0.0 +13964,39,18,10,0.0 +13964,43,46,43,0.0 +13964,2,19,9,0.0 +13964,64,33.25,17,0.0 +13964,36,19,10,0.0 +13964,35,18,36,0.0 +13964,41,9.65,30,0.0 +13964,33,2.5,40,0.0 +13965,65,21.05,31,0.0 +13965,4,22,32,0.0 +13965,5,21.35,37,0.0 +13966,16,17.45,42,0.0 +13966,10,31,41,0.0 +13966,5,21.35,2,0.0 +13966,49,20,33,0.0 +13966,72,34.8,4,0.0 +13966,55,24,40,0.0 +13966,76,18,22,0.0 +13966,1,18,38,0.0 +13966,13,6,7,0.0 +13966,24,4.5,15,0.0 +13966,25,14,10,0.0 +13966,51,53,37,0.0 +13966,8,40,41,0.0 +13966,26,31.23,42,0.0 +13966,69,36,36,0.0 +13966,2,19,50,0.0 +13966,47,9.5,24,0.0 +13966,27,43.9,35,0.0 +13966,58,13.25,33,0.0 +13966,42,14,42,0.0 +13966,44,19.45,33,0.0 +13966,11,21,37,0.0 +13967,32,32,17,0.0 +13967,44,19.45,10,0.0 +13967,69,36,32,0.0 +13967,31,12.5,32,0.0 +13967,47,9.5,42,0.0 +13967,59,55,17,0.0 +13967,70,15,18,0.0 +13967,60,34,29,0.0 +13967,41,9.65,9,0.0 +13967,42,14,49,0.0 +13967,58,13.25,24,0.0 +13967,64,33.25,14,0.0 +13967,3,10,37,0.0 +13967,9,97,50,0.0 +13967,25,14,1,0.0 +13967,16,17.45,11,0.0 +13967,2,19,27,0.0 +13967,65,21.05,44,0.0 +13967,8,40,47,0.0 +13967,74,10,48,0.0 +13967,52,7,12,0.0 +13967,55,24,28,0.0 +13967,71,21.5,30,0.0 +13967,28,45.6,18,0.0 +13967,19,9.2,20,0.0 +13967,45,9.5,29,0.0 +13968,23,9,8,0.0 +13968,53,32.8,3,0.0 +13968,59,55,27,0.0 +13968,60,34,44,0.0 +13968,42,14,30,0.0 +13968,51,53,49,0.0 +13968,47,9.5,26,0.0 +13968,44,19.45,49,0.0 +13968,14,23.25,13,0.0 +13968,3,10,42,0.0 +13968,32,32,41,0.0 +13968,57,19.5,10,0.0 +13968,69,36,25,0.0 +13968,6,25,2,0.0 +13968,15,15.5,24,0.0 +13968,66,17,28,0.0 +13968,4,22,47,0.0 +13968,49,20,30,0.0 +13968,76,18,15,0.0 +13968,2,19,26,0.0 +13968,52,7,12,0.0 +13968,74,10,48,0.0 +13968,56,38,37,0.0 +13968,72,34.8,40,0.0 +13968,54,7.45,3,0.0 +13968,31,12.5,11,0.0 +13968,40,18.4,15,0.0 +13968,10,31,2,0.0 +13968,68,12.5,28,0.0 +13968,1,18,34,0.0 +13968,30,25.89,35,0.0 +13968,62,49.3,48,0.0 +13968,55,24,43,0.0 +13968,35,18,14,0.0 +13968,48,12.75,14,0.0 +13968,61,28.5,46,0.0 +13968,17,39,42,0.0 +13968,39,18,20,0.0 +13968,71,21.5,8,0.0 +13968,36,19,2,0.0 +13968,9,97,16,0.0 +13968,25,14,20,0.0 +13968,26,31.23,36,0.0 +13968,16,17.45,11,0.0 +13968,67,14,37,0.0 +13968,20,81,43,0.0 +13968,21,10,26,0.0 +13968,28,45.6,42,0.0 +13968,45,9.5,32,0.0 +13968,22,21,11,0.0 +13968,50,16.25,19,0.0 +13968,11,21,10,0.0 +13968,46,12,2,0.0 +13968,12,38,34,0.0 +13968,64,33.25,30,0.0 +13968,73,15,48,0.0 +13968,38,263.5,39,0.0 +13968,29,123.79,46,0.0 +13968,77,13,20,0.0 +13968,18,62.5,19,0.0 +13968,33,2.5,7,0.0 +13968,27,43.9,48,0.0 +13968,37,26,43,0.0 +13968,13,6,16,0.0 +13968,41,9.65,6,0.0 +13968,8,40,14,0.0 +13968,58,13.25,41,0.0 +13968,43,46,42,0.0 +13968,75,7.75,8,0.0 +13968,7,30,45,0.0 +13968,5,21.35,31,0.0 +13968,70,15,28,0.0 +13968,24,4.5,16,0.0 +13968,65,21.05,40,0.0 +13969,47,9.5,19,0.0 +13969,35,18,49,0.0 +13969,53,32.8,9,0.0 +13969,32,32,12,0.0 +13969,9,97,45,0.0 +13969,25,14,43,0.0 +13969,54,7.45,41,0.0 +13969,65,21.05,12,0.0 +13969,30,25.89,36,0.0 +13969,43,46,43,0.0 +13969,20,81,17,0.0 +13969,70,15,29,0.0 +13969,36,19,50,0.0 +13969,66,17,30,0.0 +13969,69,36,40,0.0 +13969,13,6,26,0.0 +13969,33,2.5,48,0.0 +13969,7,30,31,0.0 +13969,18,62.5,47,0.0 +13969,56,38,9,0.0 +13969,76,18,49,0.0 +13969,4,22,15,0.0 +13969,26,31.23,11,0.0 +13970,16,17.45,1,0.0 +13970,46,12,33,0.0 +13970,73,15,12,0.0 +13970,53,32.8,40,0.0 +13970,43,46,30,0.0 +13970,30,25.89,22,0.0 +13970,68,12.5,26,0.0 +13970,27,43.9,42,0.0 +13970,20,81,8,0.0 +13970,28,45.6,3,0.0 +13970,65,21.05,33,0.0 +13970,10,31,18,0.0 +13970,4,22,4,0.0 +13970,62,49.3,35,0.0 +13970,42,14,31,0.0 +13970,77,13,38,0.0 +13970,74,10,15,0.0 +13970,55,24,44,0.0 +13970,18,62.5,1,0.0 +13970,26,31.23,47,0.0 +13970,29,123.79,19,0.0 +13970,19,9.2,26,0.0 +13970,3,10,9,0.0 +13970,34,14,39,0.0 +13970,70,15,50,0.0 +13970,22,21,20,0.0 +13970,64,33.25,39,0.0 +13970,51,53,32,0.0 +13970,57,19.5,36,0.0 +13970,32,32,18,0.0 +13970,9,97,45,0.0 +13970,61,28.5,25,0.0 +13970,66,17,46,0.0 +13970,35,18,25,0.0 +13970,50,16.25,6,0.0 +13970,7,30,17,0.0 +13970,47,9.5,47,0.0 +13970,1,18,24,0.0 +13970,12,38,49,0.0 +13970,5,21.35,16,0.0 +13970,72,34.8,29,0.0 +13970,60,34,46,0.0 +13970,17,39,26,0.0 +13970,48,12.75,43,0.0 +13970,44,19.45,22,0.0 +13970,76,18,27,0.0 +13970,59,55,13,0.0 +13970,33,2.5,40,0.0 +13970,15,15.5,26,0.0 +13971,75,7.75,38,0.0 +13971,61,28.5,25,0.0 +13971,63,43.9,23,0.0 +13971,41,9.65,42,0.0 +13971,45,9.5,30,0.0 +13971,53,32.8,47,0.0 +13971,72,34.8,38,0.0 +13971,39,18,43,0.0 +13971,14,23.25,26,0.0 +13971,58,13.25,23,0.0 +13971,44,19.45,14,0.0 +13971,51,53,36,0.0 +13971,5,21.35,14,0.0 +13971,25,14,43,0.0 +13971,68,12.5,17,0.0 +13971,3,10,1,0.0 +13971,47,9.5,14,0.0 +13971,19,9.2,27,0.0 +13971,32,32,20,0.0 +13971,7,30,32,0.0 +13971,1,18,21,0.0 +13971,37,26,26,0.0 +13971,40,18.4,21,0.0 +13971,30,25.89,25,0.0 +13971,70,15,46,0.0 +13971,27,43.9,34,0.0 +13971,76,18,2,0.0 +13971,8,40,4,0.0 +13971,60,34,49,0.0 +13971,48,12.75,6,0.0 +13972,28,45.6,17,0.0 +13972,53,32.8,2,0.0 +13972,30,25.89,15,0.0 +13972,6,25,33,0.0 +13972,55,24,14,0.0 +13972,40,18.4,43,0.0 +13972,2,19,6,0.0 +13972,71,21.5,3,0.0 +13972,48,12.75,46,0.0 +13972,57,19.5,45,0.0 +13972,74,10,43,0.0 +13972,15,15.5,31,0.0 +13972,7,30,42,0.0 +13972,36,19,25,0.0 +13972,38,263.5,35,0.0 +13972,76,18,22,0.0 +13972,11,21,10,0.0 +13972,68,12.5,47,0.0 +13972,8,40,23,0.0 +13972,77,13,47,0.0 +13972,75,7.75,24,0.0 +13972,29,123.79,2,0.0 +13972,65,21.05,9,0.0 +13972,69,36,33,0.0 +13972,49,20,5,0.0 +13972,1,18,9,0.0 +13972,54,7.45,14,0.0 +13972,32,32,7,0.0 +13972,64,33.25,47,0.0 +13972,56,38,21,0.0 +13972,10,31,37,0.0 +13972,13,6,7,0.0 +13972,19,9.2,50,0.0 +13972,4,22,7,0.0 +13972,17,39,11,0.0 +13972,63,43.9,50,0.0 +13972,12,38,33,0.0 +13972,66,17,42,0.0 +13972,60,34,22,0.0 +13972,37,26,42,0.0 +13972,46,12,28,0.0 +13972,5,21.35,31,0.0 +13972,50,16.25,47,0.0 +13972,51,53,3,0.0 +13972,27,43.9,27,0.0 +13972,41,9.65,35,0.0 +13972,43,46,26,0.0 +13972,70,15,25,0.0 +13972,18,62.5,6,0.0 +13972,47,9.5,18,0.0 +13972,73,15,46,0.0 +13972,24,4.5,2,0.0 +13972,61,28.5,17,0.0 +13972,3,10,20,0.0 +13972,52,7,29,0.0 +13972,44,19.45,10,0.0 +13972,23,9,14,0.0 +13972,14,23.25,17,0.0 +13972,25,14,18,0.0 +13972,42,14,34,0.0 +13972,33,2.5,24,0.0 +13972,26,31.23,46,0.0 +13972,39,18,22,0.0 +13972,22,21,49,0.0 +13972,62,49.3,34,0.0 +13972,72,34.8,40,0.0 +13972,31,12.5,28,0.0 +13972,59,55,5,0.0 +13972,58,13.25,40,0.0 +13972,45,9.5,30,0.0 +13972,21,10,45,0.0 +13972,20,81,25,0.0 +13972,67,14,6,0.0 +13973,53,32.8,48,0.0 +13973,68,12.5,23,0.0 +13973,63,43.9,11,0.0 +13973,17,39,46,0.0 +13973,32,32,46,0.0 +13973,5,21.35,25,0.0 +13973,69,36,14,0.0 +13973,14,23.25,49,0.0 +13973,21,10,14,0.0 +13973,55,24,19,0.0 +13973,38,263.5,44,0.0 +13973,42,14,35,0.0 +13973,50,16.25,34,0.0 +13973,6,25,9,0.0 +13973,51,53,32,0.0 +13973,9,97,44,0.0 +13973,54,7.45,47,0.0 +13973,8,40,44,0.0 +13973,77,13,20,0.0 +13973,2,19,12,0.0 +13973,16,17.45,30,0.0 +13973,70,15,13,0.0 +13973,18,62.5,48,0.0 +13973,59,55,8,0.0 +13973,15,15.5,4,0.0 +13973,41,9.65,31,0.0 +13973,22,21,13,0.0 +13973,31,12.5,21,0.0 +13973,52,7,15,0.0 +13973,12,38,29,0.0 +13973,10,31,21,0.0 +13973,37,26,27,0.0 +13973,64,33.25,16,0.0 +13973,23,9,39,0.0 +13973,27,43.9,23,0.0 +13973,61,28.5,40,0.0 +13973,11,21,15,0.0 +13973,44,19.45,39,0.0 +13973,58,13.25,11,0.0 +13973,75,7.75,48,0.0 +13973,35,18,50,0.0 +13973,26,31.23,26,0.0 +13973,39,18,3,0.0 +13973,72,34.8,29,0.0 +13973,57,19.5,34,0.0 +13973,48,12.75,14,0.0 +13973,47,9.5,13,0.0 +13973,13,6,35,0.0 +13973,34,14,2,0.0 +13973,29,123.79,10,0.0 +13973,33,2.5,17,0.0 +13973,65,21.05,41,0.0 +13973,67,14,19,0.0 +13973,19,9.2,1,0.0 +13973,28,45.6,5,0.0 +13974,47,9.5,41,0.0 +13974,49,20,5,0.0 +13974,68,12.5,30,0.0 +13974,44,19.45,14,0.0 +13974,27,43.9,27,0.0 +13974,36,19,21,0.0 +13974,21,10,31,0.0 +13974,77,13,3,0.0 +13974,40,18.4,8,0.0 +13974,32,32,36,0.0 +13974,5,21.35,46,0.0 +13974,52,7,6,0.0 +13974,25,14,16,0.0 +13974,65,21.05,10,0.0 +13974,60,34,21,0.0 +13974,75,7.75,42,0.0 +13974,37,26,32,0.0 +13974,7,30,10,0.0 +13974,56,38,39,0.0 +13974,64,33.25,27,0.0 +13974,29,123.79,29,0.0 +13974,71,21.5,14,0.0 +13974,55,24,49,0.0 +13974,9,97,10,0.0 +13974,57,19.5,46,0.0 +13974,45,9.5,9,0.0 +13974,19,9.2,37,0.0 +13974,39,18,7,0.0 +13974,15,15.5,34,0.0 +13974,61,28.5,47,0.0 +13974,58,13.25,8,0.0 +13974,51,53,6,0.0 +13974,41,9.65,35,0.0 +13974,48,12.75,7,0.0 +13974,13,6,14,0.0 +13974,28,45.6,38,0.0 +13974,74,10,22,0.0 +13974,46,12,2,0.0 +13974,3,10,33,0.0 +13974,16,17.45,11,0.0 +13974,73,15,12,0.0 +13974,8,40,27,0.0 +13974,66,17,11,0.0 +13974,72,34.8,19,0.0 +13974,62,49.3,4,0.0 +13974,35,18,32,0.0 +13974,18,62.5,26,0.0 +13974,26,31.23,19,0.0 +13974,42,14,9,0.0 +13974,6,25,4,0.0 +13974,31,12.5,26,0.0 +13974,54,7.45,33,0.0 +13974,67,14,43,0.0 +13974,30,25.89,28,0.0 +13974,70,15,42,0.0 +13974,1,18,11,0.0 +13975,68,12.5,49,0.0 +13975,70,15,24,0.0 +13975,3,10,48,0.0 +13975,41,9.65,15,0.0 +13975,29,123.79,28,0.0 +13975,52,7,35,0.0 +13975,14,23.25,8,0.0 +13975,63,43.9,41,0.0 +13975,59,55,6,0.0 +13976,73,15,41,0.0 +13976,62,49.3,27,0.0 +13976,76,18,31,0.0 +13976,70,15,23,0.0 +13976,72,34.8,15,0.0 +13976,63,43.9,43,0.0 +13976,24,4.5,49,0.0 +13976,58,13.25,8,0.0 +13976,47,9.5,9,0.0 +13976,37,26,4,0.0 +13976,31,12.5,46,0.0 +13976,51,53,26,0.0 +13976,27,43.9,18,0.0 +13976,55,24,10,0.0 +13976,20,81,13,0.0 +13976,50,16.25,19,0.0 +13976,40,18.4,9,0.0 +13976,66,17,8,0.0 +13976,74,10,42,0.0 +13976,23,9,26,0.0 +13976,46,12,21,0.0 +13976,6,25,1,0.0 +13976,18,62.5,25,0.0 +13976,16,17.45,18,0.0 +13976,77,13,3,0.0 +13976,39,18,46,0.0 +13976,69,36,24,0.0 +13976,41,9.65,25,0.0 +13976,10,31,43,0.0 +13976,71,21.5,1,0.0 +13976,15,15.5,22,0.0 +13976,29,123.79,24,0.0 +13976,13,6,39,0.0 +13976,49,20,27,0.0 +13976,5,21.35,27,0.0 +13976,8,40,15,0.0 +13976,32,32,45,0.0 +13976,7,30,50,0.0 +13976,48,12.75,42,0.0 +13976,1,18,22,0.0 +13976,30,25.89,46,0.0 +13976,61,28.5,18,0.0 +13976,59,55,33,0.0 +13976,35,18,37,0.0 +13976,14,23.25,32,0.0 +13976,43,46,3,0.0 +13976,25,14,39,0.0 +13976,42,14,42,0.0 +13976,65,21.05,27,0.0 +13976,60,34,7,0.0 +13976,17,39,37,0.0 +13976,4,22,6,0.0 +13976,21,10,34,0.0 +13976,12,38,43,0.0 +13976,68,12.5,39,0.0 +13976,28,45.6,46,0.0 +13976,75,7.75,44,0.0 +13976,54,7.45,40,0.0 +13976,2,19,47,0.0 +13976,64,33.25,48,0.0 +13976,19,9.2,27,0.0 +13976,53,32.8,5,0.0 +13976,26,31.23,31,0.0 +13976,57,19.5,18,0.0 +13976,45,9.5,41,0.0 +13976,3,10,26,0.0 +13976,56,38,41,0.0 +13976,44,19.45,29,0.0 +13976,9,97,20,0.0 +13976,34,14,4,0.0 +13977,71,21.5,37,0.0 +13977,35,18,48,0.0 +13977,55,24,23,0.0 +13977,47,9.5,39,0.0 +13977,48,12.75,20,0.0 +13977,42,14,45,0.0 +13977,74,10,31,0.0 +13977,52,7,36,0.0 +13977,18,62.5,49,0.0 +13977,4,22,23,0.0 +13977,8,40,19,0.0 +13977,21,10,34,0.0 +13977,46,12,31,0.0 +13977,2,19,19,0.0 +13977,31,12.5,35,0.0 +13977,25,14,13,0.0 +13977,17,39,14,0.0 +13977,14,23.25,31,0.0 +13977,26,31.23,30,0.0 +13977,39,18,7,0.0 +13977,67,14,13,0.0 +13977,13,6,6,0.0 +13977,54,7.45,45,0.0 +13977,30,25.89,18,0.0 +13977,5,21.35,14,0.0 +13977,58,13.25,40,0.0 +13978,16,17.45,5,0.0 +13978,62,49.3,38,0.0 +13978,59,55,40,0.0 +13978,58,13.25,45,0.0 +13978,17,39,27,0.0 +13978,48,12.75,26,0.0 +13978,71,21.5,9,0.0 +13978,43,46,27,0.0 +13978,12,38,21,0.0 +13978,68,12.5,25,0.0 +13978,15,15.5,36,0.0 +13978,44,19.45,39,0.0 +13978,61,28.5,20,0.0 +13978,77,13,25,0.0 +13978,25,14,17,0.0 +13978,73,15,20,0.0 +13978,65,21.05,42,0.0 +13978,60,34,27,0.0 +13978,23,9,46,0.0 +13978,34,14,7,0.0 +13978,31,12.5,10,0.0 +13978,37,26,45,0.0 +13978,64,33.25,6,0.0 +13978,13,6,41,0.0 +13978,40,18.4,13,0.0 +13978,18,62.5,2,0.0 +13978,24,4.5,10,0.0 +13978,22,21,3,0.0 +13978,29,123.79,23,0.0 +13978,3,10,38,0.0 +13978,8,40,7,0.0 +13978,42,14,20,0.0 +13978,19,9.2,21,0.0 +13978,70,15,2,0.0 +13978,38,263.5,1,0.0 +13978,55,24,48,0.0 +13978,66,17,41,0.0 +13978,69,36,21,0.0 +13978,9,97,46,0.0 +13978,30,25.89,18,0.0 +13978,57,19.5,21,0.0 +13978,7,30,38,0.0 +13978,75,7.75,15,0.0 +13978,20,81,32,0.0 +13978,5,21.35,9,0.0 +13978,63,43.9,21,0.0 +13978,56,38,6,0.0 +13979,4,22,45,0.0 +13979,19,9.2,15,0.0 +13979,51,53,49,0.0 +13979,33,2.5,40,0.0 +13979,10,31,4,0.0 +13979,69,36,18,0.0 +13979,44,19.45,34,0.0 +13979,12,38,49,0.0 +13979,24,4.5,5,0.0 +13979,30,25.89,42,0.0 +13979,36,19,8,0.0 +13979,3,10,41,0.0 +13979,2,19,32,0.0 +13979,35,18,2,0.0 +13979,68,12.5,20,0.0 +13979,63,43.9,33,0.0 +13979,13,6,39,0.0 +13979,43,46,11,0.0 +13979,26,31.23,37,0.0 +13979,1,18,15,0.0 +13979,76,18,44,0.0 +13979,74,10,10,0.0 +13979,46,12,18,0.0 +13979,28,45.6,22,0.0 +13979,71,21.5,41,0.0 +13979,5,21.35,3,0.0 +13979,77,13,37,0.0 +13979,53,32.8,33,0.0 +13979,9,97,30,0.0 +13979,29,123.79,47,0.0 +13979,40,18.4,35,0.0 +13979,49,20,33,0.0 +13979,64,33.25,36,0.0 +13979,7,30,32,0.0 +13979,61,28.5,4,0.0 +13979,37,26,25,0.0 +13979,60,34,47,0.0 +13979,70,15,30,0.0 +13979,75,7.75,49,0.0 +13979,52,7,44,0.0 +13979,65,21.05,5,0.0 +13979,39,18,40,0.0 +13979,50,16.25,34,0.0 +13979,25,14,42,0.0 +13979,20,81,40,0.0 +13979,15,15.5,2,0.0 +13979,41,9.65,10,0.0 +13979,72,34.8,34,0.0 +13979,57,19.5,31,0.0 +13979,55,24,11,0.0 +13979,67,14,46,0.0 +13979,66,17,29,0.0 +13979,45,9.5,15,0.0 +13979,47,9.5,33,0.0 +13979,62,49.3,47,0.0 +13979,23,9,39,0.0 +13979,31,12.5,24,0.0 +13979,16,17.45,39,0.0 +13979,11,21,11,0.0 +13979,8,40,17,0.0 +13979,21,10,49,0.0 +13979,48,12.75,36,0.0 +13979,22,21,5,0.0 +13979,59,55,40,0.0 +13979,54,7.45,20,0.0 +13979,6,25,7,0.0 +13979,42,14,6,0.0 +13979,56,38,24,0.0 +13979,73,15,25,0.0 +13979,32,32,43,0.0 +13979,27,43.9,3,0.0 +13979,38,263.5,34,0.0 +13980,2,19,32,0.0 +13980,68,12.5,42,0.0 +13980,71,21.5,6,0.0 +13980,51,53,46,0.0 +13980,40,18.4,41,0.0 +13980,37,26,16,0.0 +13980,32,32,19,0.0 +13980,34,14,31,0.0 +13980,67,14,27,0.0 +13980,25,14,39,0.0 +13980,21,10,46,0.0 +13980,59,55,47,0.0 +13980,31,12.5,48,0.0 +13980,73,15,5,0.0 +13980,65,21.05,32,0.0 +13980,49,20,23,0.0 +13980,52,7,16,0.0 +13980,76,18,30,0.0 +13980,74,10,49,0.0 +13980,33,2.5,4,0.0 +13980,62,49.3,34,0.0 +13980,26,31.23,42,0.0 +13980,64,33.25,29,0.0 +13980,5,21.35,4,0.0 +13980,77,13,43,0.0 +13980,19,9.2,21,0.0 +13980,22,21,50,0.0 +13981,73,15,11,0.0 +13981,9,97,7,0.0 +13981,41,9.65,18,0.0 +13981,2,19,47,0.0 +13981,44,19.45,33,0.0 +13981,17,39,35,0.0 +13981,60,34,36,0.0 +13981,5,21.35,38,0.0 +13981,3,10,3,0.0 +13981,53,32.8,15,0.0 +13981,56,38,39,0.0 +13981,7,30,47,0.0 +13981,30,25.89,10,0.0 +13981,12,38,15,0.0 +13981,38,263.5,35,0.0 +13981,71,21.5,48,0.0 +13981,43,46,44,0.0 +13981,22,21,6,0.0 +13981,59,55,18,0.0 +13981,75,7.75,47,0.0 +13981,27,43.9,33,0.0 +13981,50,16.25,38,0.0 +13981,62,49.3,33,0.0 +13981,49,20,5,0.0 +13981,46,12,50,0.0 +13981,11,21,29,0.0 +13981,48,12.75,27,0.0 +13981,70,15,10,0.0 +13981,67,14,35,0.0 +13981,52,7,32,0.0 +13981,31,12.5,33,0.0 +13981,15,15.5,45,0.0 +13981,23,9,7,0.0 +13981,58,13.25,24,0.0 +13981,68,12.5,21,0.0 +13981,42,14,35,0.0 +13981,37,26,5,0.0 +13981,4,22,25,0.0 +13981,51,53,15,0.0 +13981,29,123.79,47,0.0 +13981,16,17.45,43,0.0 +13981,24,4.5,48,0.0 +13981,6,25,30,0.0 +13981,45,9.5,47,0.0 +13981,77,13,1,0.0 +13981,36,19,42,0.0 +13981,28,45.6,49,0.0 +13981,63,43.9,41,0.0 +13982,59,55,10,0.0 +13982,51,53,48,0.0 +13982,28,45.6,18,0.0 +13982,62,49.3,32,0.0 +13982,31,12.5,33,0.0 +13982,21,10,49,0.0 +13982,11,21,18,0.0 +13982,71,21.5,6,0.0 +13982,60,34,28,0.0 +13982,53,32.8,9,0.0 +13982,23,9,1,0.0 +13982,30,25.89,34,0.0 +13982,29,123.79,2,0.0 +13982,48,12.75,23,0.0 +13982,14,23.25,23,0.0 +13982,10,31,30,0.0 +13982,66,17,4,0.0 +13982,70,15,21,0.0 +13982,19,9.2,48,0.0 +13982,74,10,19,0.0 +13982,68,12.5,17,0.0 +13982,41,9.65,7,0.0 +13982,44,19.45,24,0.0 +13982,47,9.5,10,0.0 +13982,13,6,5,0.0 +13982,76,18,4,0.0 +13982,57,19.5,16,0.0 +13982,58,13.25,19,0.0 +13982,5,21.35,9,0.0 +13982,18,62.5,13,0.0 +13982,49,20,11,0.0 +13982,69,36,6,0.0 +13982,33,2.5,45,0.0 +13982,40,18.4,32,0.0 +13982,7,30,19,0.0 +13982,75,7.75,50,0.0 +13982,64,33.25,29,0.0 +13982,1,18,16,0.0 +13982,56,38,19,0.0 +13982,9,97,30,0.0 +13982,67,14,3,0.0 +13982,50,16.25,29,0.0 +13982,77,13,36,0.0 +13982,73,15,16,0.0 +13982,38,263.5,44,0.0 +13982,16,17.45,9,0.0 +13982,39,18,18,0.0 +13982,25,14,34,0.0 +13982,63,43.9,44,0.0 +13982,6,25,44,0.0 +13983,63,43.9,5,0.0 +13983,15,15.5,34,0.0 +13983,40,18.4,2,0.0 +13983,43,46,45,0.0 +13983,58,13.25,22,0.0 +13983,46,12,12,0.0 +13983,32,32,10,0.0 +13983,64,33.25,45,0.0 +13983,50,16.25,22,0.0 +13983,70,15,45,0.0 +13983,33,2.5,37,0.0 +13983,49,20,48,0.0 +13983,61,28.5,22,0.0 +13983,2,19,39,0.0 +13983,48,12.75,44,0.0 +13983,11,21,44,0.0 +13983,4,22,28,0.0 +13983,56,38,30,0.0 +13983,13,6,15,0.0 +13983,54,7.45,12,0.0 +13983,9,97,32,0.0 +13983,12,38,11,0.0 +13983,26,31.23,31,0.0 +13983,74,10,43,0.0 +13983,59,55,7,0.0 +13983,57,19.5,9,0.0 +13983,47,9.5,4,0.0 +13983,65,21.05,22,0.0 +13983,8,40,8,0.0 +13983,60,34,14,0.0 +13983,55,24,33,0.0 +13983,67,14,50,0.0 +13983,29,123.79,5,0.0 +13983,1,18,3,0.0 +13983,45,9.5,16,0.0 +13983,68,12.5,43,0.0 +13983,16,17.45,34,0.0 +13983,35,18,29,0.0 +13983,3,10,31,0.0 +13983,73,15,2,0.0 +13983,20,81,27,0.0 +13983,37,26,30,0.0 +13983,21,10,48,0.0 +13983,28,45.6,34,0.0 +13983,18,62.5,15,0.0 +13984,61,28.5,47,0.0 +13984,27,43.9,50,0.0 +13984,30,25.89,19,0.0 +13984,72,34.8,19,0.0 +13984,50,16.25,29,0.0 +13984,19,9.2,14,0.0 +13984,21,10,35,0.0 +13984,47,9.5,7,0.0 +13984,11,21,21,0.0 +13984,7,30,22,0.0 +13984,6,25,8,0.0 +13984,20,81,10,0.0 +13984,17,39,9,0.0 +13984,33,2.5,22,0.0 +13984,71,21.5,38,0.0 +13984,44,19.45,8,0.0 +13984,65,21.05,33,0.0 +13984,24,4.5,48,0.0 +13984,42,14,44,0.0 +13984,58,13.25,34,0.0 +13984,4,22,14,0.0 +13984,46,12,48,0.0 +13984,13,6,13,0.0 +13984,31,12.5,27,0.0 +13984,18,62.5,4,0.0 +13984,73,15,21,0.0 +13984,3,10,26,0.0 +13984,59,55,47,0.0 +13984,37,26,37,0.0 +13984,74,10,28,0.0 +13984,77,13,40,0.0 +13984,2,19,26,0.0 +13984,76,18,17,0.0 +13984,52,7,3,0.0 +13984,62,49.3,41,0.0 +13984,56,38,50,0.0 +13984,53,32.8,20,0.0 +13984,68,12.5,10,0.0 +13984,5,21.35,9,0.0 +13984,41,9.65,38,0.0 +13984,66,17,2,0.0 +13984,39,18,25,0.0 +13984,57,19.5,3,0.0 +13984,55,24,49,0.0 +13984,60,34,32,0.0 +13984,36,19,36,0.0 +13984,28,45.6,9,0.0 +13984,49,20,3,0.0 +13984,10,31,25,0.0 +13984,48,12.75,12,0.0 +13984,51,53,3,0.0 +13984,29,123.79,41,0.0 +13984,35,18,23,0.0 +13984,25,14,41,0.0 +13984,23,9,19,0.0 +13984,12,38,41,0.0 +13984,8,40,13,0.0 +13984,63,43.9,47,0.0 +13984,9,97,16,0.0 +13984,38,263.5,28,0.0 +13984,22,21,50,0.0 +13984,26,31.23,1,0.0 +13984,70,15,45,0.0 +13984,40,18.4,46,0.0 +13984,15,15.5,8,0.0 +13984,54,7.45,9,0.0 +13984,67,14,9,0.0 +13984,16,17.45,39,0.0 +13984,45,9.5,13,0.0 +13984,1,18,12,0.0 +13984,34,14,39,0.0 +13984,64,33.25,31,0.0 +13984,75,7.75,1,0.0 +13985,55,24,4,0.0 +13985,21,10,1,0.0 +13985,6,25,31,0.0 +13985,32,32,44,0.0 +13985,13,6,34,0.0 +13985,36,19,30,0.0 +13985,33,2.5,5,0.0 +13985,72,34.8,23,0.0 +13985,58,13.25,43,0.0 +13985,14,23.25,1,0.0 +13985,48,12.75,8,0.0 +13985,27,43.9,45,0.0 +13985,73,15,39,0.0 +13985,30,25.89,1,0.0 +13985,5,21.35,42,0.0 +13985,7,30,40,0.0 +13985,38,263.5,39,0.0 +13985,20,81,39,0.0 +13985,51,53,20,0.0 +13985,76,18,40,0.0 +13985,9,97,25,0.0 +13985,66,17,37,0.0 +13985,41,9.65,37,0.0 +13985,64,33.25,49,0.0 +13985,75,7.75,18,0.0 +13985,63,43.9,6,0.0 +13985,4,22,7,0.0 +13985,1,18,42,0.0 +13985,67,14,16,0.0 +13985,28,45.6,20,0.0 +13985,24,4.5,43,0.0 +13985,3,10,17,0.0 +13985,22,21,35,0.0 +13985,39,18,23,0.0 +13985,47,9.5,20,0.0 +13985,25,14,43,0.0 +13985,45,9.5,22,0.0 +13985,69,36,35,0.0 +13985,53,32.8,13,0.0 +13985,12,38,12,0.0 +13985,19,9.2,31,0.0 +13985,40,18.4,21,0.0 +13985,31,12.5,11,0.0 +13985,61,28.5,15,0.0 +13985,8,40,26,0.0 +13985,2,19,20,0.0 +13985,26,31.23,15,0.0 +13985,44,19.45,23,0.0 +13986,39,18,16,0.0 +13986,30,25.89,18,0.0 +13986,27,43.9,6,0.0 +13986,75,7.75,43,0.0 +13986,46,12,46,0.0 +13986,24,4.5,40,0.0 +13986,33,2.5,47,0.0 +13986,28,45.6,18,0.0 +13986,40,18.4,36,0.0 +13986,43,46,21,0.0 +13986,67,14,32,0.0 +13986,63,43.9,49,0.0 +13986,2,19,46,0.0 +13986,73,15,14,0.0 +13986,35,18,44,0.0 +13986,66,17,43,0.0 +13986,57,19.5,12,0.0 +13986,52,7,1,0.0 +13986,16,17.45,15,0.0 +13986,76,18,37,0.0 +13986,44,19.45,16,0.0 +13986,53,32.8,23,0.0 +13986,31,12.5,39,0.0 +13986,50,16.25,45,0.0 +13986,21,10,42,0.0 +13986,18,62.5,5,0.0 +13986,72,34.8,28,0.0 +13986,22,21,9,0.0 +13986,62,49.3,46,0.0 +13986,41,9.65,26,0.0 +13986,48,12.75,19,0.0 +13986,8,40,17,0.0 +13986,47,9.5,40,0.0 +13986,6,25,32,0.0 +13986,54,7.45,15,0.0 +13986,36,19,19,0.0 +13986,20,81,31,0.0 +13986,60,34,49,0.0 +13986,70,15,13,0.0 +13986,13,6,28,0.0 +13986,64,33.25,19,0.0 +13986,69,36,35,0.0 +13986,71,21.5,11,0.0 +13986,42,14,32,0.0 +13986,3,10,37,0.0 +13986,9,97,32,0.0 +13986,26,31.23,38,0.0 +13986,38,263.5,25,0.0 +13986,77,13,8,0.0 +13986,17,39,10,0.0 +13986,58,13.25,18,0.0 +13986,55,24,3,0.0 +13986,34,14,34,0.0 +13986,74,10,30,0.0 +13986,19,9.2,45,0.0 +13986,25,14,35,0.0 +13986,23,9,17,0.0 +13986,68,12.5,3,0.0 +13986,10,31,40,0.0 +13986,4,22,12,0.0 +13986,51,53,45,0.0 +13986,32,32,11,0.0 +13986,37,26,41,0.0 +13986,14,23.25,48,0.0 +13986,65,21.05,14,0.0 +13986,61,28.5,27,0.0 +13986,5,21.35,25,0.0 +13986,12,38,21,0.0 +13986,59,55,33,0.0 +13986,15,15.5,35,0.0 +13986,7,30,12,0.0 +13986,49,20,19,0.0 +13986,56,38,1,0.0 +13987,30,25.89,43,0.0 +13987,38,263.5,43,0.0 +13987,37,26,2,0.0 +13987,19,9.2,35,0.0 +13987,72,34.8,11,0.0 +13987,43,46,6,0.0 +13987,47,9.5,6,0.0 +13987,25,14,12,0.0 +13987,4,22,11,0.0 +13987,63,43.9,42,0.0 +13987,23,9,26,0.0 +13987,69,36,49,0.0 +13987,20,81,36,0.0 +13987,29,123.79,18,0.0 +13987,14,23.25,47,0.0 +13987,7,30,42,0.0 +13987,44,19.45,43,0.0 +13987,46,12,14,0.0 +13987,16,17.45,31,0.0 +13987,71,21.5,17,0.0 +13987,62,49.3,8,0.0 +13987,42,14,29,0.0 +13987,26,31.23,33,0.0 +13987,68,12.5,35,0.0 +13987,22,21,13,0.0 +13987,40,18.4,10,0.0 +13987,57,19.5,42,0.0 +13987,39,18,8,0.0 +13987,1,18,14,0.0 +13987,2,19,22,0.0 +13987,74,10,4,0.0 +13987,27,43.9,49,0.0 +13987,8,40,3,0.0 +13987,70,15,37,0.0 +13987,41,9.65,25,0.0 +13987,45,9.5,12,0.0 +13987,75,7.75,19,0.0 +13987,67,14,48,0.0 +13987,13,6,15,0.0 +13987,24,4.5,43,0.0 +13987,52,7,40,0.0 +13987,61,28.5,6,0.0 +13987,32,32,8,0.0 +13987,31,12.5,24,0.0 +13987,34,14,29,0.0 +13988,16,17.45,47,0.0 +13988,19,9.2,8,0.0 +13988,50,16.25,8,0.0 +13989,73,15,33,0.0 +13989,72,34.8,31,0.0 +13989,47,9.5,17,0.0 +13989,8,40,27,0.0 +13989,22,21,37,0.0 +13989,69,36,6,0.0 +13989,45,9.5,41,0.0 +13989,46,12,44,0.0 +13989,2,19,34,0.0 +13989,30,25.89,23,0.0 +13989,17,39,48,0.0 +13989,43,46,32,0.0 +13989,21,10,23,0.0 +13989,19,9.2,44,0.0 +13989,58,13.25,5,0.0 +13989,9,97,23,0.0 +13989,51,53,30,0.0 +13989,68,12.5,18,0.0 +13989,67,14,42,0.0 +13989,18,62.5,16,0.0 +13989,66,17,36,0.0 +13989,63,43.9,32,0.0 +13989,70,15,48,0.0 +13989,40,18.4,19,0.0 +13989,14,23.25,39,0.0 +13989,76,18,20,0.0 +13989,49,20,46,0.0 +13989,41,9.65,27,0.0 +13989,24,4.5,9,0.0 +13989,34,14,11,0.0 +13989,64,33.25,47,0.0 +13990,29,123.79,23,0.0 +13990,55,24,11,0.0 +13990,6,25,14,0.0 +13990,39,18,13,0.0 +13990,2,19,3,0.0 +13990,73,15,28,0.0 +13990,4,22,49,0.0 +13990,40,18.4,36,0.0 +13990,31,12.5,3,0.0 +13990,72,34.8,45,0.0 +13990,44,19.45,14,0.0 +13990,63,43.9,7,0.0 +13990,26,31.23,28,0.0 +13990,43,46,30,0.0 +13990,11,21,19,0.0 +13990,10,31,48,0.0 +13990,14,23.25,33,0.0 +13990,46,12,22,0.0 +13990,22,21,5,0.0 +13990,16,17.45,43,0.0 +13990,59,55,26,0.0 +13990,51,53,18,0.0 +13990,42,14,50,0.0 +13990,32,32,3,0.0 +13990,74,10,28,0.0 +13990,68,12.5,11,0.0 +13990,5,21.35,34,0.0 +13990,38,263.5,37,0.0 +13990,71,21.5,3,0.0 +13990,76,18,32,0.0 +13990,41,9.65,3,0.0 +13990,60,34,34,0.0 +13990,54,7.45,13,0.0 +13990,12,38,6,0.0 +13990,1,18,3,0.0 +13990,65,21.05,20,0.0 +13990,47,9.5,23,0.0 +13990,27,43.9,3,0.0 +13990,28,45.6,40,0.0 +13990,9,97,37,0.0 +13990,18,62.5,48,0.0 +13990,24,4.5,7,0.0 +13990,77,13,46,0.0 +13990,33,2.5,39,0.0 +13990,8,40,13,0.0 +13990,19,9.2,24,0.0 +13990,13,6,50,0.0 +13990,21,10,41,0.0 +13990,35,18,30,0.0 +13990,50,16.25,34,0.0 +13990,49,20,24,0.0 +13990,23,9,8,0.0 +13990,70,15,8,0.0 +13990,48,12.75,16,0.0 +13990,69,36,36,0.0 +13990,15,15.5,28,0.0 +13990,20,81,32,0.0 +13990,17,39,22,0.0 +13990,34,14,47,0.0 +13990,53,32.8,3,0.0 +13990,37,26,47,0.0 +13990,7,30,43,0.0 +13990,64,33.25,12,0.0 +13990,25,14,48,0.0 +13990,67,14,42,0.0 +13991,22,21,35,0.0 +13991,49,20,12,0.0 +13991,61,28.5,22,0.0 +13991,66,17,48,0.0 +13991,24,4.5,36,0.0 +13991,46,12,29,0.0 +13991,32,32,39,0.0 +13991,67,14,28,0.0 +13991,7,30,38,0.0 +13991,23,9,26,0.0 +13991,48,12.75,27,0.0 +13991,6,25,39,0.0 +13991,5,21.35,9,0.0 +13991,65,21.05,23,0.0 +13991,26,31.23,38,0.0 +13991,53,32.8,21,0.0 +13991,28,45.6,41,0.0 +13991,35,18,40,0.0 +13991,1,18,37,0.0 +13991,77,13,48,0.0 +13991,25,14,5,0.0 +13991,39,18,48,0.0 +13991,31,12.5,29,0.0 +13991,62,49.3,16,0.0 +13991,9,97,34,0.0 +13991,21,10,30,0.0 +13991,4,22,42,0.0 +13991,14,23.25,3,0.0 +13991,27,43.9,20,0.0 +13991,58,13.25,35,0.0 +13991,19,9.2,41,0.0 +13991,42,14,46,0.0 +13991,10,31,4,0.0 +13991,12,38,41,0.0 +13991,29,123.79,41,0.0 +13991,37,26,22,0.0 +13991,52,7,19,0.0 +13991,3,10,6,0.0 +13991,15,15.5,28,0.0 +13991,43,46,3,0.0 +13991,71,21.5,48,0.0 +13991,17,39,21,0.0 +13991,38,263.5,7,0.0 +13991,64,33.25,19,0.0 +13991,13,6,9,0.0 +13991,51,53,24,0.0 +13991,59,55,8,0.0 +13991,54,7.45,47,0.0 +13991,63,43.9,27,0.0 +13991,40,18.4,11,0.0 +13991,74,10,30,0.0 +13991,2,19,46,0.0 +13991,36,19,34,0.0 +13991,20,81,37,0.0 +13991,47,9.5,31,0.0 +13991,60,34,41,0.0 +13992,18,62.5,23,0.0 +13992,13,6,11,0.0 +13992,7,30,15,0.0 +13992,61,28.5,47,0.0 +13992,28,45.6,17,0.0 +13992,60,34,11,0.0 +13992,30,25.89,29,0.0 +13992,11,21,34,0.0 +13992,24,4.5,22,0.0 +13992,76,18,45,0.0 +13992,59,55,50,0.0 +13992,27,43.9,37,0.0 +13992,19,9.2,44,0.0 +13992,17,39,36,0.0 +13992,70,15,29,0.0 +13992,43,46,23,0.0 +13992,36,19,11,0.0 +13992,47,9.5,48,0.0 +13992,39,18,48,0.0 +13992,8,40,1,0.0 +13992,32,32,3,0.0 +13992,20,81,41,0.0 +13992,73,15,31,0.0 +13992,21,10,6,0.0 +13992,37,26,30,0.0 +13992,4,22,14,0.0 +13992,66,17,7,0.0 +13992,31,12.5,12,0.0 +13992,3,10,37,0.0 +13992,51,53,12,0.0 +13992,75,7.75,38,0.0 +13992,22,21,48,0.0 +13992,6,25,39,0.0 +13992,35,18,27,0.0 +13992,33,2.5,5,0.0 +13992,2,19,47,0.0 +13992,14,23.25,38,0.0 +13992,57,19.5,35,0.0 +13992,40,18.4,24,0.0 +13992,71,21.5,2,0.0 +13992,74,10,39,0.0 +13992,68,12.5,34,0.0 +13992,42,14,33,0.0 +13992,72,34.8,38,0.0 +13992,63,43.9,20,0.0 +13992,1,18,20,0.0 +13992,29,123.79,40,0.0 +13992,16,17.45,46,0.0 +13992,69,36,26,0.0 +13992,9,97,30,0.0 +13992,65,21.05,34,0.0 +13992,12,38,48,0.0 +13992,54,7.45,10,0.0 +13992,53,32.8,49,0.0 +13992,45,9.5,50,0.0 +13992,58,13.25,12,0.0 +13992,64,33.25,15,0.0 +13992,5,21.35,11,0.0 +13992,52,7,45,0.0 +13992,67,14,12,0.0 +13992,48,12.75,22,0.0 +13992,10,31,32,0.0 +13992,55,24,1,0.0 +13992,49,20,38,0.0 +13992,77,13,36,0.0 +13992,41,9.65,20,0.0 +13993,1,18,40,0.0 +13993,50,16.25,40,0.0 +13993,60,34,16,0.0 +13993,48,12.75,6,0.0 +13993,74,10,23,0.0 +13993,25,14,19,0.0 +13993,4,22,26,0.0 +13993,33,2.5,18,0.0 +13993,26,31.23,28,0.0 +13993,67,14,41,0.0 +13993,16,17.45,34,0.0 +13993,28,45.6,39,0.0 +13993,55,24,17,0.0 +13993,8,40,30,0.0 +13993,18,62.5,1,0.0 +13993,6,25,14,0.0 +13993,54,7.45,25,0.0 +13993,65,21.05,10,0.0 +13993,69,36,3,0.0 +13993,38,263.5,48,0.0 +13993,47,9.5,4,0.0 +13993,61,28.5,41,0.0 +13993,12,38,38,0.0 +13993,40,18.4,37,0.0 +13993,41,9.65,13,0.0 +13993,76,18,5,0.0 +13993,7,30,29,0.0 +13993,27,43.9,40,0.0 +13993,15,15.5,7,0.0 +13993,9,97,6,0.0 +13993,66,17,5,0.0 +13993,31,12.5,49,0.0 +13993,57,19.5,2,0.0 +13993,22,21,14,0.0 +13993,45,9.5,47,0.0 +13993,73,15,14,0.0 +13993,42,14,33,0.0 +13993,44,19.45,19,0.0 +13993,32,32,2,0.0 +13993,58,13.25,20,0.0 +13993,29,123.79,15,0.0 +13993,71,21.5,30,0.0 +13993,10,31,4,0.0 +13993,23,9,50,0.0 +13993,20,81,45,0.0 +13993,70,15,50,0.0 +13993,51,53,35,0.0 +13993,24,4.5,35,0.0 +13993,62,49.3,44,0.0 +13993,36,19,42,0.0 +13993,30,25.89,37,0.0 +13993,3,10,41,0.0 +13993,64,33.25,18,0.0 +13993,21,10,40,0.0 +13993,39,18,24,0.0 +13993,52,7,23,0.0 +13993,14,23.25,6,0.0 +13993,72,34.8,30,0.0 +13993,13,6,37,0.0 +13993,53,32.8,4,0.0 +13993,49,20,49,0.0 +13993,46,12,47,0.0 +13994,18,62.5,3,0.0 +13994,57,19.5,49,0.0 +13994,75,7.75,36,0.0 +13994,49,20,9,0.0 +13994,58,13.25,35,0.0 +13994,9,97,38,0.0 +13994,40,18.4,26,0.0 +13994,30,25.89,3,0.0 +13994,46,12,41,0.0 +13994,77,13,32,0.0 +13994,10,31,17,0.0 +13994,16,17.45,43,0.0 +13994,69,36,46,0.0 +13994,31,12.5,15,0.0 +13994,39,18,7,0.0 +13994,4,22,40,0.0 +13994,11,21,34,0.0 +13994,44,19.45,28,0.0 +13994,41,9.65,48,0.0 +13994,50,16.25,5,0.0 +13994,62,49.3,35,0.0 +13994,19,9.2,27,0.0 +13994,63,43.9,14,0.0 +13994,43,46,19,0.0 +13994,70,15,7,0.0 +13994,38,263.5,42,0.0 +13994,29,123.79,9,0.0 +13994,55,24,31,0.0 +13994,20,81,35,0.0 +13994,6,25,35,0.0 +13994,66,17,47,0.0 +13994,27,43.9,42,0.0 +13994,54,7.45,48,0.0 +13994,28,45.6,45,0.0 +13994,25,14,42,0.0 +13994,15,15.5,20,0.0 +13994,45,9.5,25,0.0 +13994,14,23.25,42,0.0 +13994,53,32.8,28,0.0 +13994,21,10,36,0.0 +13994,59,55,3,0.0 +13994,24,4.5,35,0.0 +13994,68,12.5,6,0.0 +13994,1,18,34,0.0 +13995,19,9.2,9,0.0 +13995,42,14,26,0.0 +13995,35,18,21,0.0 +13995,46,12,18,0.0 +13995,72,34.8,10,0.0 +13995,51,53,15,0.0 +13995,6,25,39,0.0 +13995,22,21,5,0.0 +13995,5,21.35,4,0.0 +13995,63,43.9,47,0.0 +13995,30,25.89,50,0.0 +13995,58,13.25,1,0.0 +13995,40,18.4,27,0.0 +13995,52,7,47,0.0 +13995,25,14,40,0.0 +13995,55,24,42,0.0 +13995,21,10,6,0.0 +13995,45,9.5,13,0.0 +13995,67,14,40,0.0 +13995,27,43.9,25,0.0 +13995,13,6,20,0.0 +13996,13,6,9,0.0 +13996,40,18.4,1,0.0 +13996,39,18,17,0.0 +13996,20,81,19,0.0 +13996,45,9.5,2,0.0 +13996,37,26,39,0.0 +13996,27,43.9,44,0.0 +13996,68,12.5,25,0.0 +13996,43,46,7,0.0 +13996,77,13,27,0.0 +13996,21,10,50,0.0 +13996,30,25.89,12,0.0 +13996,70,15,21,0.0 +13996,63,43.9,26,0.0 +13996,3,10,9,0.0 +13996,69,36,2,0.0 +13996,67,14,10,0.0 +13996,53,32.8,22,0.0 +13996,74,10,14,0.0 +13996,33,2.5,3,0.0 +13996,49,20,25,0.0 +13996,51,53,5,0.0 +13996,41,9.65,25,0.0 +13996,52,7,17,0.0 +13996,7,30,15,0.0 +13996,35,18,47,0.0 +13996,2,19,26,0.0 +13996,76,18,33,0.0 +13996,44,19.45,6,0.0 +13996,22,21,27,0.0 +13996,61,28.5,18,0.0 +13996,50,16.25,12,0.0 +13996,59,55,47,0.0 +13996,58,13.25,39,0.0 +13996,65,21.05,8,0.0 +13996,55,24,35,0.0 +13996,56,38,25,0.0 +13997,28,45.6,43,0.0 +13997,55,24,17,0.0 +13998,54,7.45,40,0.0 +13998,47,9.5,20,0.0 +13998,58,13.25,17,0.0 +13998,74,10,41,0.0 +13998,64,33.25,24,0.0 +13998,69,36,16,0.0 +13998,31,12.5,12,0.0 +13998,48,12.75,19,0.0 +13998,37,26,22,0.0 +13998,32,32,47,0.0 +13999,8,40,44,0.0 +13999,24,4.5,30,0.0 +13999,12,38,9,0.0 +13999,42,14,32,0.0 +13999,57,19.5,12,0.0 +13999,59,55,15,0.0 +13999,73,15,15,0.0 +13999,53,32.8,28,0.0 +13999,64,33.25,47,0.0 +13999,71,21.5,26,0.0 +13999,66,17,41,0.0 +13999,35,18,38,0.0 +13999,22,21,33,0.0 +13999,67,14,20,0.0 +13999,62,49.3,48,0.0 +13999,5,21.35,43,0.0 +13999,38,263.5,47,0.0 +13999,19,9.2,43,0.0 +13999,2,19,14,0.0 +13999,15,15.5,4,0.0 +13999,27,43.9,6,0.0 +13999,61,28.5,15,0.0 +13999,37,26,28,0.0 +13999,26,31.23,11,0.0 +13999,14,23.25,48,0.0 +13999,76,18,17,0.0 +13999,50,16.25,40,0.0 +13999,49,20,40,0.0 +13999,56,38,14,0.0 +13999,18,62.5,23,0.0 +13999,75,7.75,2,0.0 +13999,21,10,41,0.0 +13999,20,81,12,0.0 +13999,69,36,40,0.0 +13999,51,53,2,0.0 +13999,6,25,33,0.0 +13999,3,10,21,0.0 +13999,23,9,50,0.0 +13999,47,9.5,35,0.0 +13999,25,14,40,0.0 +13999,74,10,32,0.0 +13999,72,34.8,37,0.0 +13999,43,46,7,0.0 +13999,39,18,9,0.0 +13999,28,45.6,24,0.0 +13999,40,18.4,10,0.0 +13999,32,32,10,0.0 +13999,4,22,10,0.0 +13999,17,39,39,0.0 +13999,63,43.9,28,0.0 +13999,54,7.45,20,0.0 +13999,48,12.75,34,0.0 +13999,41,9.65,43,0.0 +13999,10,31,4,0.0 +13999,29,123.79,5,0.0 +13999,7,30,24,0.0 +13999,31,12.5,15,0.0 +13999,30,25.89,18,0.0 +13999,13,6,19,0.0 +13999,58,13.25,36,0.0 +13999,46,12,34,0.0 +14000,49,20,15,0.0 +14000,5,21.35,10,0.0 +14000,63,43.9,8,0.0 +14000,46,12,47,0.0 +14000,65,21.05,18,0.0 +14000,4,22,33,0.0 +14000,64,33.25,29,0.0 +14000,33,2.5,5,0.0 +14000,27,43.9,35,0.0 +14000,61,28.5,3,0.0 +14000,25,14,10,0.0 +14000,76,18,25,0.0 +14000,8,40,3,0.0 +14000,68,12.5,35,0.0 +14000,43,46,2,0.0 +14000,15,15.5,2,0.0 +14000,47,9.5,50,0.0 +14000,67,14,39,0.0 +14000,45,9.5,28,0.0 +14000,72,34.8,11,0.0 +14001,32,32,50,0.0 +14001,18,62.5,50,0.0 +14001,34,14,28,0.0 +14001,31,12.5,16,0.0 +14001,55,24,2,0.0 +14001,37,26,34,0.0 +14001,51,53,38,0.0 +14001,15,15.5,48,0.0 +14001,13,6,5,0.0 +14001,29,123.79,37,0.0 +14001,72,34.8,24,0.0 +14001,71,21.5,28,0.0 +14001,26,31.23,30,0.0 +14001,43,46,39,0.0 +14001,63,43.9,36,0.0 +14001,17,39,6,0.0 +14001,23,9,26,0.0 +14001,42,14,14,0.0 +14001,50,16.25,46,0.0 +14001,47,9.5,45,0.0 +14001,53,32.8,9,0.0 +14001,8,40,29,0.0 +14001,10,31,42,0.0 +14001,68,12.5,36,0.0 +14001,61,28.5,9,0.0 +14001,33,2.5,29,0.0 +14001,27,43.9,3,0.0 +14001,39,18,17,0.0 +14001,64,33.25,31,0.0 +14001,4,22,35,0.0 +14001,6,25,10,0.0 +14001,35,18,9,0.0 +14001,76,18,41,0.0 +14001,19,9.2,19,0.0 +14001,30,25.89,3,0.0 +14001,5,21.35,38,0.0 +14001,75,7.75,48,0.0 +14001,52,7,1,0.0 +14001,24,4.5,45,0.0 +14001,28,45.6,47,0.0 +14001,58,13.25,11,0.0 +14001,7,30,12,0.0 +14001,21,10,25,0.0 +14001,22,21,1,0.0 +14001,11,21,16,0.0 +14001,65,21.05,50,0.0 +14001,45,9.5,12,0.0 +14001,67,14,37,0.0 +14001,44,19.45,16,0.0 +14001,12,38,36,0.0 +14001,41,9.65,2,0.0 +14001,73,15,9,0.0 +14001,74,10,44,0.0 +14001,48,12.75,7,0.0 +14001,3,10,2,0.0 +14001,40,18.4,38,0.0 +14001,60,34,21,0.0 +14001,2,19,23,0.0 +14001,9,97,18,0.0 +14001,25,14,1,0.0 +14001,77,13,9,0.0 +14001,20,81,38,0.0 +14001,36,19,15,0.0 +14001,16,17.45,2,0.0 +14001,56,38,29,0.0 +14001,62,49.3,42,0.0 +14001,49,20,32,0.0 +14001,1,18,50,0.0 +14001,57,19.5,43,0.0 +14001,14,23.25,13,0.0 +14001,46,12,5,0.0 +14001,70,15,15,0.0 +14001,54,7.45,42,0.0 +14001,69,36,44,0.0 +14002,32,32,44,0.0 +14002,30,25.89,34,0.0 +14002,71,21.5,45,0.0 +14002,2,19,18,0.0 +14002,56,38,25,0.0 +14002,46,12,36,0.0 +14002,35,18,34,0.0 +14002,67,14,49,0.0 +14002,64,33.25,43,0.0 +14002,39,18,22,0.0 +14002,47,9.5,36,0.0 +14002,72,34.8,47,0.0 +14002,55,24,5,0.0 +14002,73,15,47,0.0 +14002,13,6,26,0.0 +14002,52,7,37,0.0 +14002,33,2.5,26,0.0 +14002,9,97,11,0.0 +14002,6,25,6,0.0 +14002,57,19.5,12,0.0 +14002,24,4.5,10,0.0 +14002,27,43.9,26,0.0 +14003,37,26,45,0.0 +14003,43,46,23,0.0 +14003,16,17.45,6,0.0 +14003,36,19,24,0.0 +14003,52,7,38,0.0 +14003,64,33.25,49,0.0 +14003,60,34,38,0.0 +14003,62,49.3,39,0.0 +14003,44,19.45,15,0.0 +14003,76,18,37,0.0 +14003,74,10,18,0.0 +14003,27,43.9,42,0.0 +14003,61,28.5,5,0.0 +14004,13,6,34,0.0 +14005,50,16.25,32,0.0 +14005,59,55,14,0.0 +14005,12,38,21,0.0 +14005,30,25.89,38,0.0 +14006,55,24,32,0.0 +14006,24,4.5,44,0.0 +14006,8,40,34,0.0 +14006,70,15,10,0.0 +14006,26,31.23,19,0.0 +14006,45,9.5,1,0.0 +14006,14,23.25,37,0.0 +14006,58,13.25,46,0.0 +14006,34,14,26,0.0 +14006,52,7,24,0.0 +14006,30,25.89,40,0.0 +14006,4,22,45,0.0 +14006,61,28.5,45,0.0 +14006,39,18,4,0.0 +14006,22,21,33,0.0 +14006,76,18,28,0.0 +14006,9,97,11,0.0 +14006,69,36,50,0.0 +14006,48,12.75,12,0.0 +14006,51,53,41,0.0 +14006,41,9.65,35,0.0 +14006,68,12.5,19,0.0 +14006,27,43.9,13,0.0 +14006,17,39,22,0.0 +14006,1,18,1,0.0 +14006,46,12,45,0.0 +14006,42,14,34,0.0 +14006,43,46,17,0.0 +14006,16,17.45,4,0.0 +14006,31,12.5,38,0.0 +14006,21,10,46,0.0 +14006,72,34.8,28,0.0 +14006,62,49.3,25,0.0 +14006,57,19.5,29,0.0 +14006,12,38,33,0.0 +14006,35,18,4,0.0 +14006,19,9.2,24,0.0 +14006,75,7.75,28,0.0 +14006,65,21.05,12,0.0 +14006,71,21.5,39,0.0 +14006,6,25,14,0.0 +14006,13,6,21,0.0 +14006,74,10,19,0.0 +14006,18,62.5,16,0.0 +14006,54,7.45,48,0.0 +14006,28,45.6,18,0.0 +14006,47,9.5,36,0.0 +14006,50,16.25,45,0.0 +14006,36,19,18,0.0 +14006,10,31,24,0.0 +14006,15,15.5,41,0.0 +14006,3,10,33,0.0 +14006,53,32.8,36,0.0 +14006,59,55,24,0.0 +14006,33,2.5,11,0.0 +14006,60,34,2,0.0 +14006,49,20,25,0.0 +14006,11,21,46,0.0 +14006,37,26,24,0.0 +14006,73,15,42,0.0 +14006,56,38,33,0.0 +14006,77,13,2,0.0 +14006,66,17,45,0.0 +14007,49,20,31,0.0 +14007,39,18,20,0.0 +14007,33,2.5,32,0.0 +14008,74,10,47,0.0 +14008,5,21.35,10,0.0 +14008,56,38,34,0.0 +14008,35,18,5,0.0 +14008,49,20,9,0.0 +14008,10,31,14,0.0 +14008,25,14,34,0.0 +14008,20,81,26,0.0 +14008,28,45.6,47,0.0 +14008,17,39,24,0.0 +14008,66,17,30,0.0 +14008,55,24,29,0.0 +14008,13,6,12,0.0 +14008,52,7,30,0.0 +14008,14,23.25,10,0.0 +14008,23,9,22,0.0 +14008,45,9.5,4,0.0 +14008,61,28.5,11,0.0 +14008,70,15,28,0.0 +14008,76,18,46,0.0 +14008,16,17.45,11,0.0 +14008,21,10,10,0.0 +14008,67,14,6,0.0 +14008,65,21.05,24,0.0 +14008,64,33.25,22,0.0 +14008,71,21.5,30,0.0 +14008,48,12.75,29,0.0 +14008,57,19.5,27,0.0 +14008,32,32,50,0.0 +14008,60,34,40,0.0 +14008,69,36,8,0.0 +14009,33,2.5,49,0.0 +14009,67,14,36,0.0 +14009,4,22,46,0.0 +14009,49,20,8,0.0 +14009,15,15.5,38,0.0 +14009,30,25.89,11,0.0 +14009,73,15,41,0.0 +14009,41,9.65,20,0.0 +14009,46,12,41,0.0 +14009,58,13.25,5,0.0 +14009,36,19,41,0.0 +14009,12,38,48,0.0 +14009,16,17.45,15,0.0 +14009,61,28.5,13,0.0 +14009,62,49.3,43,0.0 +14009,6,25,36,0.0 +14009,74,10,38,0.0 +14009,50,16.25,29,0.0 +14009,25,14,42,0.0 +14009,31,12.5,20,0.0 +14009,55,24,5,0.0 +14009,8,40,6,0.0 +14009,53,32.8,49,0.0 +14010,34,14,36,0.0 +14010,60,34,24,0.0 +14010,76,18,26,0.0 +14010,49,20,50,0.0 +14010,51,53,7,0.0 +14010,7,30,15,0.0 +14010,35,18,42,0.0 +14010,42,14,2,0.0 +14010,33,2.5,37,0.0 +14010,41,9.65,24,0.0 +14010,56,38,20,0.0 +14010,1,18,13,0.0 +14010,28,45.6,27,0.0 +14010,30,25.89,26,0.0 +14010,6,25,34,0.0 +14010,45,9.5,19,0.0 +14010,32,32,31,0.0 +14010,46,12,36,0.0 +14010,52,7,11,0.0 +14010,59,55,44,0.0 +14010,29,123.79,41,0.0 +14010,77,13,34,0.0 +14010,40,18.4,32,0.0 +14010,15,15.5,12,0.0 +14010,21,10,15,0.0 +14010,72,34.8,5,0.0 +14010,11,21,25,0.0 +14010,73,15,38,0.0 +14010,68,12.5,25,0.0 +14010,75,7.75,19,0.0 +14011,41,9.65,23,0.0 +14011,38,263.5,42,0.0 +14011,49,20,26,0.0 +14011,74,10,49,0.0 +14011,34,14,20,0.0 +14011,47,9.5,34,0.0 +14011,29,123.79,37,0.0 +14011,9,97,36,0.0 +14011,68,12.5,9,0.0 +14011,36,19,9,0.0 +14011,2,19,26,0.0 +14011,45,9.5,9,0.0 +14011,21,10,40,0.0 +14011,54,7.45,46,0.0 +14011,65,21.05,8,0.0 +14011,23,9,21,0.0 +14011,73,15,46,0.0 +14011,10,31,34,0.0 +14011,37,26,7,0.0 +14011,76,18,31,0.0 +14011,14,23.25,28,0.0 +14011,44,19.45,12,0.0 +14011,72,34.8,47,0.0 +14011,17,39,22,0.0 +14012,2,19,15,0.0 +14012,33,2.5,4,0.0 +14012,51,53,49,0.0 +14012,72,34.8,7,0.0 +14012,31,12.5,27,0.0 +14012,74,10,33,0.0 +14012,26,31.23,5,0.0 +14012,66,17,27,0.0 +14012,29,123.79,18,0.0 +14012,10,31,23,0.0 +14012,9,97,33,0.0 +14012,58,13.25,1,0.0 +14012,34,14,12,0.0 +14012,16,17.45,10,0.0 +14012,62,49.3,17,0.0 +14013,40,18.4,21,0.0 +14013,22,21,2,0.0 +14013,39,18,44,0.0 +14013,60,34,16,0.0 +14013,10,31,49,0.0 +14013,73,15,35,0.0 +14013,64,33.25,10,0.0 +14013,27,43.9,24,0.0 +14013,20,81,7,0.0 +14013,58,13.25,18,0.0 +14013,1,18,49,0.0 +14013,24,4.5,38,0.0 +14013,4,22,38,0.0 +14013,31,12.5,19,0.0 +14013,74,10,15,0.0 +14013,19,9.2,31,0.0 +14013,18,62.5,44,0.0 +14013,35,18,18,0.0 +14013,37,26,6,0.0 +14013,66,17,30,0.0 +14013,67,14,12,0.0 +14013,5,21.35,17,0.0 +14013,23,9,4,0.0 +14013,6,25,32,0.0 +14013,30,25.89,32,0.0 +14013,48,12.75,49,0.0 +14013,33,2.5,38,0.0 +14013,77,13,39,0.0 +14013,16,17.45,7,0.0 +14013,25,14,41,0.0 +14013,56,38,37,0.0 +14013,42,14,21,0.0 +14013,55,24,15,0.0 +14013,34,14,12,0.0 +14013,14,23.25,34,0.0 +14013,9,97,47,0.0 +14013,71,21.5,33,0.0 +14013,15,15.5,16,0.0 +14013,45,9.5,16,0.0 +14013,65,21.05,35,0.0 +14013,11,21,44,0.0 +14013,69,36,26,0.0 +14013,68,12.5,40,0.0 +14013,76,18,26,0.0 +14013,70,15,44,0.0 +14013,2,19,45,0.0 +14013,63,43.9,40,0.0 +14013,62,49.3,32,0.0 +14013,32,32,44,0.0 +14013,46,12,36,0.0 +14013,53,32.8,22,0.0 +14013,36,19,39,0.0 +14013,61,28.5,13,0.0 +14013,72,34.8,39,0.0 +14013,29,123.79,3,0.0 +14013,3,10,3,0.0 +14013,49,20,1,0.0 +14013,52,7,37,0.0 +14013,57,19.5,37,0.0 +14013,8,40,41,0.0 +14013,54,7.45,12,0.0 +14013,44,19.45,18,0.0 +14013,28,45.6,23,0.0 +14013,17,39,43,0.0 +14013,59,55,33,0.0 +14013,51,53,4,0.0 +14013,13,6,46,0.0 +14013,26,31.23,11,0.0 +14013,47,9.5,12,0.0 +14013,41,9.65,10,0.0 +14013,75,7.75,46,0.0 +14013,7,30,38,0.0 +14013,50,16.25,32,0.0 +14013,21,10,39,0.0 +14013,38,263.5,23,0.0 +14013,43,46,5,0.0 +14014,62,49.3,38,0.0 +14014,68,12.5,35,0.0 +14014,58,13.25,50,0.0 +14014,67,14,27,0.0 +14014,47,9.5,43,0.0 +14014,26,31.23,31,0.0 +14014,27,43.9,40,0.0 +14014,19,9.2,44,0.0 +14014,31,12.5,35,0.0 +14014,60,34,16,0.0 +14014,41,9.65,48,0.0 +14014,22,21,7,0.0 +14014,29,123.79,37,0.0 +14014,37,26,23,0.0 +14014,46,12,14,0.0 +14014,57,19.5,31,0.0 +14014,30,25.89,10,0.0 +14014,3,10,13,0.0 +14015,46,12,49,0.0 +14015,49,20,46,0.0 +14015,37,26,35,0.0 +14015,59,55,31,0.0 +14015,18,62.5,10,0.0 +14015,40,18.4,18,0.0 +14015,14,23.25,35,0.0 +14015,73,15,41,0.0 +14015,3,10,48,0.0 +14015,6,25,47,0.0 +14015,7,30,21,0.0 +14015,29,123.79,6,0.0 +14015,69,36,47,0.0 +14015,8,40,27,0.0 +14015,60,34,9,0.0 +14015,28,45.6,31,0.0 +14015,53,32.8,44,0.0 +14015,27,43.9,47,0.0 +14015,41,9.65,43,0.0 +14015,33,2.5,19,0.0 +14015,48,12.75,47,0.0 +14015,56,38,6,0.0 +14015,64,33.25,32,0.0 +14015,2,19,34,0.0 +14015,30,25.89,26,0.0 +14015,75,7.75,6,0.0 +14015,50,16.25,49,0.0 +14015,13,6,13,0.0 +14015,9,97,36,0.0 +14015,11,21,38,0.0 +14015,24,4.5,8,0.0 +14015,42,14,3,0.0 +14015,4,22,36,0.0 +14015,72,34.8,50,0.0 +14015,1,18,32,0.0 +14015,19,9.2,38,0.0 +14015,68,12.5,2,0.0 +14015,22,21,26,0.0 +14016,71,21.5,9,0.0 +14016,74,10,37,0.0 +14016,63,43.9,41,0.0 +14016,59,55,46,0.0 +14016,22,21,8,0.0 +14016,32,32,5,0.0 +14016,38,263.5,50,0.0 +14016,67,14,34,0.0 +14016,56,38,6,0.0 +14016,73,15,22,0.0 +14016,64,33.25,45,0.0 +14016,31,12.5,16,0.0 +14016,43,46,25,0.0 +14016,25,14,4,0.0 +14016,76,18,11,0.0 +14016,50,16.25,31,0.0 +14016,34,14,40,0.0 +14016,41,9.65,12,0.0 +14016,61,28.5,41,0.0 +14016,54,7.45,39,0.0 +14016,40,18.4,47,0.0 +14016,46,12,16,0.0 +14016,29,123.79,49,0.0 +14016,4,22,36,0.0 +14016,48,12.75,23,0.0 +14016,37,26,13,0.0 +14016,68,12.5,15,0.0 +14016,24,4.5,11,0.0 +14016,44,19.45,35,0.0 +14016,7,30,43,0.0 +14016,5,21.35,43,0.0 +14016,1,18,38,0.0 +14016,77,13,8,0.0 +14017,8,40,8,0.0 +14017,52,7,9,0.0 +14017,33,2.5,37,0.0 +14017,76,18,22,0.0 +14017,10,31,2,0.0 +14017,43,46,45,0.0 +14017,6,25,42,0.0 +14017,5,21.35,4,0.0 +14017,16,17.45,16,0.0 +14017,28,45.6,48,0.0 +14017,47,9.5,38,0.0 +14017,4,22,48,0.0 +14017,7,30,10,0.0 +14017,3,10,13,0.0 +14017,59,55,15,0.0 +14017,68,12.5,24,0.0 +14017,25,14,32,0.0 +14017,41,9.65,11,0.0 +14017,51,53,5,0.0 +14017,20,81,50,0.0 +14017,72,34.8,18,0.0 +14017,48,12.75,11,0.0 +14017,46,12,19,0.0 +14017,75,7.75,45,0.0 +14017,62,49.3,8,0.0 +14017,37,26,43,0.0 +14017,23,9,23,0.0 +14017,77,13,46,0.0 +14017,58,13.25,40,0.0 +14017,22,21,24,0.0 +14017,21,10,9,0.0 +14017,66,17,17,0.0 +14017,63,43.9,8,0.0 +14017,71,21.5,10,0.0 +14017,45,9.5,18,0.0 +14017,64,33.25,14,0.0 +14017,55,24,28,0.0 +14017,17,39,6,0.0 +14017,29,123.79,19,0.0 +14017,44,19.45,7,0.0 +14017,60,34,24,0.0 +14017,26,31.23,20,0.0 +14017,73,15,20,0.0 +14017,54,7.45,40,0.0 +14017,14,23.25,31,0.0 +14017,42,14,21,0.0 +14017,61,28.5,48,0.0 +14017,34,14,28,0.0 +14017,2,19,47,0.0 +14017,18,62.5,19,0.0 +14017,9,97,15,0.0 +14017,24,4.5,44,0.0 +14017,36,19,45,0.0 +14018,58,13.25,38,0.0 +14018,32,32,38,0.0 +14018,9,97,33,0.0 +14018,27,43.9,34,0.0 +14018,75,7.75,43,0.0 +14018,24,4.5,12,0.0 +14018,63,43.9,36,0.0 +14018,60,34,1,0.0 +14018,22,21,48,0.0 +14018,71,21.5,45,0.0 +14018,76,18,12,0.0 +14018,12,38,14,0.0 +14018,4,22,30,0.0 +14018,1,18,36,0.0 +14018,2,19,1,0.0 +14018,6,25,46,0.0 +14018,54,7.45,31,0.0 +14018,49,20,44,0.0 +14018,8,40,34,0.0 +14018,36,19,27,0.0 +14018,59,55,20,0.0 +14018,62,49.3,17,0.0 +14018,26,31.23,32,0.0 +14018,25,14,10,0.0 +14018,66,17,3,0.0 +14018,3,10,30,0.0 +14018,10,31,43,0.0 +14018,45,9.5,42,0.0 +14018,14,23.25,26,0.0 +14018,72,34.8,49,0.0 +14018,17,39,1,0.0 +14018,55,24,41,0.0 +14018,77,13,39,0.0 +14018,28,45.6,43,0.0 +14018,69,36,5,0.0 +14018,48,12.75,34,0.0 +14018,15,15.5,38,0.0 +14018,61,28.5,5,0.0 +14018,53,32.8,39,0.0 +14018,34,14,36,0.0 +14018,33,2.5,41,0.0 +14018,29,123.79,4,0.0 +14018,35,18,46,0.0 +14018,20,81,50,0.0 +14019,33,2.5,12,0.0 +14019,31,12.5,32,0.0 +14019,36,19,16,0.0 +14019,45,9.5,44,0.0 +14019,13,6,43,0.0 +14019,17,39,16,0.0 +14019,68,12.5,47,0.0 +14019,30,25.89,25,0.0 +14020,57,19.5,30,0.0 +14020,25,14,48,0.0 +14020,47,9.5,43,0.0 +14020,16,17.45,25,0.0 +14020,41,9.65,19,0.0 +14020,30,25.89,19,0.0 +14020,63,43.9,35,0.0 +14020,26,31.23,15,0.0 +14020,15,15.5,12,0.0 +14020,62,49.3,7,0.0 +14020,32,32,34,0.0 +14020,71,21.5,41,0.0 +14020,54,7.45,18,0.0 +14020,9,97,20,0.0 +14020,5,21.35,39,0.0 +14020,56,38,23,0.0 +14020,53,32.8,34,0.0 +14020,37,26,28,0.0 +14020,77,13,16,0.0 +14020,36,19,11,0.0 +14020,52,7,25,0.0 +14020,70,15,2,0.0 +14020,33,2.5,23,0.0 +14020,59,55,46,0.0 +14020,10,31,27,0.0 +14020,50,16.25,27,0.0 +14020,31,12.5,38,0.0 +14020,55,24,41,0.0 +14020,35,18,43,0.0 +14020,14,23.25,36,0.0 +14020,39,18,38,0.0 +14020,3,10,25,0.0 +14020,61,28.5,19,0.0 +14020,75,7.75,49,0.0 +14020,38,263.5,40,0.0 +14020,68,12.5,18,0.0 +14020,42,14,17,0.0 +14020,2,19,37,0.0 +14020,18,62.5,41,0.0 +14020,48,12.75,5,0.0 +14020,12,38,23,0.0 +14020,60,34,43,0.0 +14020,27,43.9,11,0.0 +14020,72,34.8,18,0.0 +14020,51,53,39,0.0 +14020,21,10,4,0.0 +14020,11,21,19,0.0 +14020,1,18,6,0.0 +14020,45,9.5,11,0.0 +14020,73,15,46,0.0 +14020,17,39,4,0.0 +14020,67,14,30,0.0 +14020,58,13.25,27,0.0 +14020,6,25,21,0.0 +14020,28,45.6,17,0.0 +14020,76,18,44,0.0 +14020,65,21.05,25,0.0 +14020,34,14,50,0.0 +14021,17,39,2,0.0 +14021,42,14,43,0.0 +14021,56,38,41,0.0 +14021,10,31,35,0.0 +14021,6,25,13,0.0 +14021,57,19.5,30,0.0 +14021,54,7.45,47,0.0 +14021,4,22,20,0.0 +14021,2,19,35,0.0 +14021,50,16.25,5,0.0 +14021,11,21,44,0.0 +14021,71,21.5,19,0.0 +14021,46,12,22,0.0 +14021,63,43.9,6,0.0 +14021,5,21.35,28,0.0 +14021,29,123.79,20,0.0 +14021,16,17.45,27,0.0 +14021,39,18,31,0.0 +14021,20,81,41,0.0 +14021,47,9.5,22,0.0 +14021,73,15,20,0.0 +14021,64,33.25,46,0.0 +14021,75,7.75,42,0.0 +14021,69,36,22,0.0 +14021,59,55,8,0.0 +14021,12,38,50,0.0 +14021,14,23.25,30,0.0 +14021,26,31.23,49,0.0 +14021,72,34.8,31,0.0 +14021,13,6,37,0.0 +14021,21,10,39,0.0 +14021,27,43.9,23,0.0 +14021,34,14,29,0.0 +14021,58,13.25,38,0.0 +14021,9,97,29,0.0 +14021,49,20,46,0.0 +14021,19,9.2,24,0.0 +14022,15,15.5,12,0.0 +14022,18,62.5,21,0.0 +14022,13,6,2,0.0 +14022,22,21,29,0.0 +14023,11,21,6,0.0 +14023,39,18,28,0.0 +14023,76,18,12,0.0 +14023,61,28.5,46,0.0 +14023,51,53,35,0.0 +14023,36,19,43,0.0 +14023,49,20,28,0.0 +14023,32,32,4,0.0 +14023,17,39,1,0.0 +14023,60,34,44,0.0 +14023,10,31,23,0.0 +14023,46,12,26,0.0 +14023,13,6,38,0.0 +14023,74,10,35,0.0 +14023,42,14,30,0.0 +14023,54,7.45,9,0.0 +14023,75,7.75,14,0.0 +14023,62,49.3,1,0.0 +14023,48,12.75,11,0.0 +14023,68,12.5,35,0.0 +14023,16,17.45,3,0.0 +14023,50,16.25,27,0.0 +14023,63,43.9,31,0.0 +14023,59,55,10,0.0 +14023,52,7,30,0.0 +14023,43,46,41,0.0 +14023,31,12.5,4,0.0 +14023,9,97,11,0.0 +14023,25,14,15,0.0 +14023,20,81,36,0.0 +14023,53,32.8,15,0.0 +14023,35,18,1,0.0 +14023,29,123.79,41,0.0 +14024,25,14,2,0.0 +14024,11,21,31,0.0 +14024,17,39,49,0.0 +14024,34,14,47,0.0 +14024,28,45.6,30,0.0 +14024,31,12.5,4,0.0 +14024,33,2.5,13,0.0 +14024,40,18.4,20,0.0 +14024,23,9,11,0.0 +14024,15,15.5,46,0.0 +14024,13,6,38,0.0 +14024,62,49.3,48,0.0 +14024,4,22,23,0.0 +14024,46,12,33,0.0 +14024,1,18,24,0.0 +14024,29,123.79,43,0.0 +14024,61,28.5,16,0.0 +14024,12,38,43,0.0 +14024,47,9.5,32,0.0 +14024,21,10,42,0.0 +14024,9,97,4,0.0 +14024,14,23.25,48,0.0 +14024,55,24,27,0.0 +14024,71,21.5,12,0.0 +14024,50,16.25,41,0.0 +14024,65,21.05,20,0.0 +14024,73,15,3,0.0 +14024,54,7.45,9,0.0 +14024,68,12.5,30,0.0 +14025,21,10,43,0.0 +14025,42,14,9,0.0 +14025,44,19.45,19,0.0 +14025,71,21.5,46,0.0 +14025,1,18,19,0.0 +14025,63,43.9,42,0.0 +14025,53,32.8,46,0.0 +14025,4,22,37,0.0 +14025,76,18,12,0.0 +14025,37,26,21,0.0 +14025,66,17,31,0.0 +14025,77,13,50,0.0 +14025,19,9.2,15,0.0 +14025,30,25.89,43,0.0 +14025,12,38,13,0.0 +14025,2,19,3,0.0 +14025,67,14,40,0.0 +14025,70,15,7,0.0 +14025,75,7.75,41,0.0 +14025,38,263.5,32,0.0 +14025,32,32,8,0.0 +14025,62,49.3,39,0.0 +14025,7,30,30,0.0 +14025,51,53,15,0.0 +14025,68,12.5,49,0.0 +14025,24,4.5,29,0.0 +14025,58,13.25,50,0.0 +14025,22,21,43,0.0 +14025,41,9.65,10,0.0 +14025,35,18,9,0.0 +14025,15,15.5,35,0.0 +14025,18,62.5,18,0.0 +14025,49,20,42,0.0 +14025,43,46,18,0.0 +14025,48,12.75,9,0.0 +14025,16,17.45,19,0.0 +14025,69,36,20,0.0 +14026,22,21,45,0.0 +14026,53,32.8,1,0.0 +14026,59,55,12,0.0 +14026,11,21,41,0.0 +14026,45,9.5,32,0.0 +14026,4,22,7,0.0 +14026,66,17,49,0.0 +14026,29,123.79,1,0.0 +14026,25,14,34,0.0 +14026,48,12.75,41,0.0 +14026,18,62.5,43,0.0 +14026,23,9,9,0.0 +14026,24,4.5,34,0.0 +14026,16,17.45,1,0.0 +14026,35,18,3,0.0 +14026,50,16.25,45,0.0 +14026,8,40,12,0.0 +14026,10,31,50,0.0 +14026,30,25.89,20,0.0 +14026,13,6,41,0.0 +14026,20,81,14,0.0 +14026,52,7,44,0.0 +14026,26,31.23,18,0.0 +14026,46,12,39,0.0 +14026,1,18,31,0.0 +14026,71,21.5,21,0.0 +14026,43,46,36,0.0 +14026,74,10,10,0.0 +14026,27,43.9,38,0.0 +14026,2,19,29,0.0 +14026,73,15,21,0.0 +14026,14,23.25,18,0.0 +14026,76,18,38,0.0 +14026,64,33.25,44,0.0 +14026,36,19,21,0.0 +14026,63,43.9,30,0.0 +14026,51,53,44,0.0 +14026,19,9.2,30,0.0 +14026,28,45.6,49,0.0 +14026,5,21.35,19,0.0 +14026,3,10,22,0.0 +14026,32,32,29,0.0 +14026,77,13,35,0.0 +14026,68,12.5,12,0.0 +14026,49,20,36,0.0 +14026,70,15,44,0.0 +14026,9,97,10,0.0 +14026,15,15.5,34,0.0 +14026,33,2.5,8,0.0 +14026,61,28.5,4,0.0 +14026,65,21.05,50,0.0 +14026,69,36,27,0.0 +14026,39,18,36,0.0 +14026,38,263.5,33,0.0 +14026,40,18.4,2,0.0 +14026,44,19.45,47,0.0 +14026,6,25,28,0.0 +14026,17,39,45,0.0 +14026,62,49.3,11,0.0 +14026,12,38,13,0.0 +14026,41,9.65,16,0.0 +14026,67,14,7,0.0 +14026,58,13.25,47,0.0 +14026,75,7.75,36,0.0 +14027,42,14,26,0.0 +14027,70,15,5,0.0 +14027,23,9,26,0.0 +14027,31,12.5,36,0.0 +14027,14,23.25,48,0.0 +14027,26,31.23,27,0.0 +14027,46,12,46,0.0 +14027,24,4.5,37,0.0 +14027,59,55,46,0.0 +14027,18,62.5,7,0.0 +14027,34,14,38,0.0 +14027,21,10,7,0.0 +14027,75,7.75,9,0.0 +14028,13,6,32,0.0 +14028,76,18,36,0.0 +14028,30,25.89,18,0.0 +14028,60,34,24,0.0 +14028,19,9.2,25,0.0 +14028,22,21,19,0.0 +14028,51,53,21,0.0 +14028,35,18,39,0.0 +14028,46,12,12,0.0 +14028,44,19.45,17,0.0 +14028,48,12.75,13,0.0 +14028,23,9,28,0.0 +14028,33,2.5,7,0.0 +14028,8,40,38,0.0 +14028,41,9.65,22,0.0 +14028,77,13,44,0.0 +14028,43,46,16,0.0 +14028,24,4.5,8,0.0 +14028,57,19.5,44,0.0 +14028,49,20,47,0.0 +14028,67,14,50,0.0 +14028,1,18,13,0.0 +14028,25,14,48,0.0 +14028,17,39,34,0.0 +14028,74,10,20,0.0 +14028,27,43.9,47,0.0 +14028,42,14,22,0.0 +14028,36,19,1,0.0 +14028,53,32.8,48,0.0 +14028,28,45.6,8,0.0 +14028,6,25,49,0.0 +14028,64,33.25,21,0.0 +14028,4,22,16,0.0 +14028,29,123.79,30,0.0 +14028,16,17.45,16,0.0 +14028,69,36,14,0.0 +14028,70,15,25,0.0 +14028,5,21.35,35,0.0 +14028,50,16.25,19,0.0 +14028,11,21,33,0.0 +14028,45,9.5,48,0.0 +14028,21,10,22,0.0 +14028,71,21.5,17,0.0 +14028,31,12.5,4,0.0 +14028,55,24,25,0.0 +14028,39,18,14,0.0 +14028,58,13.25,19,0.0 +14028,52,7,13,0.0 +14028,7,30,31,0.0 +14028,59,55,40,0.0 +14028,65,21.05,31,0.0 +14028,68,12.5,19,0.0 +14028,61,28.5,29,0.0 +14029,29,123.79,44,0.0 +14029,12,38,36,0.0 +14029,75,7.75,46,0.0 +14029,50,16.25,15,0.0 +14029,52,7,50,0.0 +14029,66,17,24,0.0 +14029,11,21,15,0.0 +14030,32,32,18,0.0 +14030,74,10,7,0.0 +14030,48,12.75,28,0.0 +14030,41,9.65,49,0.0 +14030,63,43.9,31,0.0 +14030,27,43.9,47,0.0 +14030,16,17.45,6,0.0 +14030,65,21.05,48,0.0 +14030,42,14,22,0.0 +14030,55,24,44,0.0 +14030,51,53,7,0.0 +14030,71,21.5,34,0.0 +14030,53,32.8,13,0.0 +14030,1,18,22,0.0 +14030,35,18,45,0.0 +14030,62,49.3,8,0.0 +14030,73,15,6,0.0 +14030,50,16.25,49,0.0 +14030,37,26,13,0.0 +14030,25,14,18,0.0 +14030,52,7,25,0.0 +14030,22,21,18,0.0 +14030,69,36,44,0.0 +14030,29,123.79,3,0.0 +14030,3,10,38,0.0 +14030,45,9.5,12,0.0 +14030,36,19,10,0.0 +14030,18,62.5,50,0.0 +14030,14,23.25,49,0.0 +14030,31,12.5,41,0.0 +14030,40,18.4,2,0.0 +14030,43,46,1,0.0 +14030,28,45.6,23,0.0 +14030,34,14,28,0.0 +14030,19,9.2,15,0.0 +14030,76,18,47,0.0 +14030,2,19,15,0.0 +14030,38,263.5,11,0.0 +14030,20,81,50,0.0 +14030,33,2.5,29,0.0 +14030,67,14,17,0.0 +14030,49,20,11,0.0 +14030,46,12,34,0.0 +14030,59,55,43,0.0 +14030,77,13,40,0.0 +14030,58,13.25,8,0.0 +14030,17,39,12,0.0 +14030,44,19.45,24,0.0 +14030,54,7.45,16,0.0 +14030,6,25,24,0.0 +14030,10,31,16,0.0 +14030,70,15,19,0.0 +14030,9,97,31,0.0 +14030,72,34.8,4,0.0 +14030,57,19.5,34,0.0 +14030,4,22,4,0.0 +14030,61,28.5,19,0.0 +14030,23,9,2,0.0 +14030,11,21,3,0.0 +14030,5,21.35,44,0.0 +14031,10,31,37,0.0 +14031,40,18.4,43,0.0 +14031,26,31.23,5,0.0 +14031,45,9.5,11,0.0 +14031,1,18,25,0.0 +14031,61,28.5,25,0.0 +14031,70,15,1,0.0 +14031,21,10,18,0.0 +14031,30,25.89,48,0.0 +14031,75,7.75,34,0.0 +14031,23,9,39,0.0 +14031,36,19,32,0.0 +14031,46,12,49,0.0 +14031,47,9.5,6,0.0 +14031,63,43.9,9,0.0 +14031,66,17,42,0.0 +14031,33,2.5,25,0.0 +14031,8,40,30,0.0 +14031,41,9.65,2,0.0 +14031,16,17.45,19,0.0 +14031,68,12.5,46,0.0 +14031,27,43.9,32,0.0 +14031,17,39,3,0.0 +14031,32,32,39,0.0 +14031,54,7.45,10,0.0 +14031,44,19.45,15,0.0 +14031,76,18,40,0.0 +14031,57,19.5,10,0.0 +14031,74,10,44,0.0 +14031,59,55,28,0.0 +14031,71,21.5,5,0.0 +14031,15,15.5,26,0.0 +14031,58,13.25,35,0.0 +14031,49,20,26,0.0 +14031,60,34,2,0.0 +14031,67,14,22,0.0 +14031,52,7,33,0.0 +14031,14,23.25,29,0.0 +14031,65,21.05,1,0.0 +14031,6,25,24,0.0 +14031,62,49.3,24,0.0 +14031,48,12.75,15,0.0 +14031,12,38,19,0.0 +14031,43,46,6,0.0 +14031,31,12.5,15,0.0 +14031,73,15,22,0.0 +14031,20,81,17,0.0 +14031,64,33.25,49,0.0 +14031,55,24,31,0.0 +14031,11,21,41,0.0 +14031,7,30,14,0.0 +14031,38,263.5,45,0.0 +14031,53,32.8,8,0.0 +14031,35,18,21,0.0 +14031,22,21,30,0.0 +14031,3,10,44,0.0 +14031,18,62.5,2,0.0 +14031,42,14,42,0.0 +14031,4,22,8,0.0 +14031,24,4.5,10,0.0 +14031,72,34.8,27,0.0 +14031,77,13,12,0.0 +14031,37,26,28,0.0 +14031,5,21.35,34,0.0 +14031,29,123.79,5,0.0 +14031,25,14,46,0.0 +14031,39,18,22,0.0 +14031,69,36,42,0.0 +14031,34,14,34,0.0 +14031,19,9.2,5,0.0 +14031,2,19,40,0.0 +14031,13,6,47,0.0 +14031,50,16.25,40,0.0 +14031,9,97,33,0.0 +14031,51,53,8,0.0 +14031,28,45.6,23,0.0 +14031,56,38,23,0.0 +14032,18,62.5,29,0.0 +14032,11,21,19,0.0 +14032,38,263.5,16,0.0 +14032,74,10,42,0.0 +14032,57,19.5,47,0.0 +14032,13,6,38,0.0 +14032,20,81,26,0.0 +14032,34,14,50,0.0 +14032,67,14,30,0.0 +14032,71,21.5,31,0.0 +14032,68,12.5,27,0.0 +14032,73,15,1,0.0 +14032,49,20,17,0.0 +14032,35,18,31,0.0 +14032,28,45.6,31,0.0 +14032,10,31,19,0.0 +14032,58,13.25,43,0.0 +14032,8,40,30,0.0 +14032,3,10,48,0.0 +14032,36,19,27,0.0 +14032,55,24,2,0.0 +14032,64,33.25,31,0.0 +14032,33,2.5,41,0.0 +14032,29,123.79,39,0.0 +14032,12,38,14,0.0 +14032,39,18,27,0.0 +14032,63,43.9,19,0.0 +14032,54,7.45,36,0.0 +14032,17,39,6,0.0 +14032,70,15,38,0.0 +14032,59,55,1,0.0 +14032,61,28.5,45,0.0 +14032,77,13,49,0.0 +14032,50,16.25,9,0.0 +14032,2,19,30,0.0 +14032,24,4.5,48,0.0 +14032,22,21,47,0.0 +14032,16,17.45,25,0.0 +14032,27,43.9,22,0.0 +14032,19,9.2,38,0.0 +14032,76,18,36,0.0 +14032,1,18,1,0.0 +14032,60,34,12,0.0 +14032,75,7.75,36,0.0 +14032,14,23.25,31,0.0 +14032,43,46,13,0.0 +14032,65,21.05,36,0.0 +14032,46,12,46,0.0 +14032,5,21.35,23,0.0 +14032,62,49.3,40,0.0 +14032,66,17,2,0.0 +14032,69,36,28,0.0 +14032,47,9.5,3,0.0 +14033,21,10,46,0.0 +14033,54,7.45,1,0.0 +14033,8,40,45,0.0 +14033,50,16.25,37,0.0 +14033,62,49.3,23,0.0 +14033,11,21,46,0.0 +14033,70,15,7,0.0 +14033,22,21,33,0.0 +14033,1,18,47,0.0 +14033,7,30,8,0.0 +14033,20,81,45,0.0 +14033,35,18,21,0.0 +14033,30,25.89,47,0.0 +14033,12,38,32,0.0 +14033,71,21.5,47,0.0 +14033,19,9.2,4,0.0 +14033,32,32,9,0.0 +14033,55,24,13,0.0 +14033,49,20,36,0.0 +14033,57,19.5,26,0.0 +14033,17,39,43,0.0 +14033,44,19.45,9,0.0 +14033,4,22,43,0.0 +14033,16,17.45,18,0.0 +14033,75,7.75,4,0.0 +14033,3,10,34,0.0 +14033,6,25,48,0.0 +14033,64,33.25,35,0.0 +14033,69,36,41,0.0 +14033,34,14,8,0.0 +14033,65,21.05,17,0.0 +14033,10,31,44,0.0 +14033,74,10,6,0.0 +14033,77,13,12,0.0 +14033,72,34.8,41,0.0 +14033,61,28.5,47,0.0 +14033,59,55,45,0.0 +14033,67,14,7,0.0 +14033,25,14,37,0.0 +14033,60,34,21,0.0 +14033,51,53,2,0.0 +14033,27,43.9,43,0.0 +14033,48,12.75,26,0.0 +14033,63,43.9,10,0.0 +14033,46,12,50,0.0 +14033,18,62.5,30,0.0 +14033,13,6,21,0.0 +14033,52,7,32,0.0 +14033,40,18.4,14,0.0 +14033,38,263.5,39,0.0 +14033,5,21.35,39,0.0 +14033,15,15.5,18,0.0 +14033,33,2.5,44,0.0 +14033,42,14,39,0.0 +14033,68,12.5,29,0.0 +14033,76,18,47,0.0 +14033,58,13.25,39,0.0 +14033,29,123.79,8,0.0 +14033,66,17,44,0.0 +14033,36,19,2,0.0 +14033,26,31.23,46,0.0 +14033,73,15,2,0.0 +14033,14,23.25,35,0.0 +14033,37,26,49,0.0 +14033,28,45.6,22,0.0 +14033,41,9.65,21,0.0 +14033,45,9.5,21,0.0 +14033,23,9,38,0.0 +14033,43,46,9,0.0 +14034,15,15.5,20,0.0 +14034,4,22,46,0.0 +14034,76,18,11,0.0 +14034,74,10,21,0.0 +14035,34,14,15,0.0 +14035,64,33.25,34,0.0 +14035,28,45.6,39,0.0 +14035,26,31.23,3,0.0 +14035,6,25,33,0.0 +14035,9,97,37,0.0 +14035,11,21,20,0.0 +14035,69,36,36,0.0 +14035,62,49.3,35,0.0 +14035,50,16.25,12,0.0 +14035,67,14,43,0.0 +14035,40,18.4,4,0.0 +14035,4,22,44,0.0 +14035,3,10,17,0.0 +14035,14,23.25,44,0.0 +14035,38,263.5,3,0.0 +14035,63,43.9,13,0.0 +14035,22,21,9,0.0 +14035,57,19.5,46,0.0 +14035,15,15.5,24,0.0 +14035,19,9.2,48,0.0 +14035,65,21.05,26,0.0 +14035,68,12.5,36,0.0 +14035,52,7,25,0.0 +14035,56,38,7,0.0 +14035,73,15,14,0.0 +14035,77,13,24,0.0 +14035,76,18,43,0.0 +14035,1,18,2,0.0 +14035,17,39,28,0.0 +14035,12,38,26,0.0 +14035,47,9.5,18,0.0 +14035,45,9.5,34,0.0 +14035,71,21.5,14,0.0 +14035,13,6,36,0.0 +14035,35,18,36,0.0 +14035,75,7.75,36,0.0 +14035,39,18,13,0.0 +14035,7,30,19,0.0 +14035,23,9,15,0.0 +14035,33,2.5,40,0.0 +14035,44,19.45,33,0.0 +14035,58,13.25,9,0.0 +14035,55,24,42,0.0 +14035,2,19,29,0.0 +14035,61,28.5,12,0.0 +14035,66,17,49,0.0 +14035,27,43.9,10,0.0 +14035,21,10,21,0.0 +14035,8,40,41,0.0 +14035,49,20,32,0.0 +14035,41,9.65,39,0.0 +14035,10,31,25,0.0 +14035,36,19,48,0.0 +14035,70,15,10,0.0 +14035,53,32.8,36,0.0 +14035,24,4.5,30,0.0 +14035,74,10,8,0.0 +14035,59,55,34,0.0 +14035,48,12.75,41,0.0 +14035,37,26,50,0.0 +14035,46,12,19,0.0 +14036,66,17,29,0.0 +14036,34,14,14,0.0 +14036,37,26,18,0.0 +14036,57,19.5,28,0.0 +14036,46,12,36,0.0 +14036,52,7,40,0.0 +14036,44,19.45,12,0.0 +14036,45,9.5,17,0.0 +14036,1,18,45,0.0 +14036,31,12.5,3,0.0 +14036,73,15,19,0.0 +14036,29,123.79,5,0.0 +14036,23,9,42,0.0 +14036,74,10,46,0.0 +14036,51,53,25,0.0 +14036,40,18.4,19,0.0 +14036,38,263.5,27,0.0 +14036,64,33.25,33,0.0 +14036,4,22,5,0.0 +14036,53,32.8,45,0.0 +14036,10,31,47,0.0 +14036,21,10,5,0.0 +14036,55,24,40,0.0 +14036,76,18,34,0.0 +14036,42,14,21,0.0 +14036,68,12.5,42,0.0 +14036,26,31.23,5,0.0 +14036,11,21,20,0.0 +14036,75,7.75,47,0.0 +14036,41,9.65,39,0.0 +14036,69,36,9,0.0 +14036,22,21,13,0.0 +14036,32,32,40,0.0 +14036,47,9.5,16,0.0 +14036,20,81,27,0.0 +14036,3,10,20,0.0 +14036,63,43.9,47,0.0 +14036,7,30,16,0.0 +14036,2,19,48,0.0 +14036,24,4.5,35,0.0 +14036,67,14,23,0.0 +14036,71,21.5,15,0.0 +14037,16,17.45,29,0.0 +14037,44,19.45,7,0.0 +14037,24,4.5,10,0.0 +14037,66,17,18,0.0 +14037,29,123.79,26,0.0 +14037,72,34.8,44,0.0 +14037,33,2.5,50,0.0 +14037,35,18,16,0.0 +14037,47,9.5,12,0.0 +14037,76,18,41,0.0 +14037,40,18.4,45,0.0 +14037,11,21,46,0.0 +14037,46,12,38,0.0 +14037,74,10,32,0.0 +14037,22,21,48,0.0 +14037,26,31.23,8,0.0 +14037,54,7.45,37,0.0 +14037,53,32.8,8,0.0 +14037,13,6,10,0.0 +14037,73,15,48,0.0 +14037,49,20,43,0.0 +14037,57,19.5,10,0.0 +14037,31,12.5,31,0.0 +14037,62,49.3,44,0.0 +14037,51,53,3,0.0 +14037,5,21.35,19,0.0 +14037,7,30,50,0.0 +14037,67,14,38,0.0 +14037,3,10,16,0.0 +14037,45,9.5,32,0.0 +14037,28,45.6,11,0.0 +14037,52,7,28,0.0 +14037,1,18,18,0.0 +14037,23,9,39,0.0 +14037,56,38,23,0.0 +14037,59,55,9,0.0 +14037,25,14,13,0.0 +14037,4,22,33,0.0 +14037,48,12.75,25,0.0 +14037,71,21.5,23,0.0 +14037,65,21.05,15,0.0 +14037,30,25.89,12,0.0 +14037,34,14,31,0.0 +14037,8,40,32,0.0 +14037,69,36,41,0.0 +14037,55,24,38,0.0 +14037,42,14,33,0.0 +14037,20,81,30,0.0 +14037,17,39,21,0.0 +14037,75,7.75,33,0.0 +14037,14,23.25,20,0.0 +14037,50,16.25,23,0.0 +14037,15,15.5,48,0.0 +14037,36,19,38,0.0 +14037,41,9.65,26,0.0 +14037,10,31,42,0.0 +14037,12,38,10,0.0 +14037,63,43.9,6,0.0 +14037,39,18,3,0.0 +14037,77,13,21,0.0 +14037,58,13.25,13,0.0 +14037,68,12.5,47,0.0 +14037,21,10,6,0.0 +14037,27,43.9,47,0.0 +14037,6,25,17,0.0 +14037,38,263.5,17,0.0 +14037,37,26,23,0.0 +14037,18,62.5,12,0.0 +14037,19,9.2,30,0.0 +14037,70,15,43,0.0 +14037,61,28.5,25,0.0 +14037,2,19,32,0.0 +14037,60,34,49,0.0 +14037,9,97,13,0.0 +14038,1,18,28,0.0 +14038,18,62.5,27,0.0 +14038,2,19,24,0.0 +14038,6,25,13,0.0 +14038,49,20,1,0.0 +14038,40,18.4,50,0.0 +14038,60,34,31,0.0 +14038,76,18,24,0.0 +14038,29,123.79,41,0.0 +14038,48,12.75,45,0.0 +14038,69,36,39,0.0 +14038,7,30,4,0.0 +14038,14,23.25,25,0.0 +14038,51,53,13,0.0 +14038,68,12.5,26,0.0 +14038,4,22,23,0.0 +14038,55,24,23,0.0 +14038,43,46,5,0.0 +14038,11,21,39,0.0 +14038,28,45.6,3,0.0 +14038,44,19.45,28,0.0 +14038,17,39,22,0.0 +14038,32,32,47,0.0 +14038,9,97,5,0.0 +14038,39,18,33,0.0 +14038,21,10,21,0.0 +14038,65,21.05,42,0.0 +14038,62,49.3,44,0.0 +14038,34,14,7,0.0 +14038,31,12.5,34,0.0 +14038,66,17,39,0.0 +14038,73,15,4,0.0 +14038,47,9.5,2,0.0 +14038,74,10,49,0.0 +14038,16,17.45,42,0.0 +14038,10,31,12,0.0 +14038,50,16.25,20,0.0 +14038,3,10,8,0.0 +14038,71,21.5,1,0.0 +14038,53,32.8,7,0.0 +14038,35,18,11,0.0 +14038,36,19,15,0.0 +14038,19,9.2,16,0.0 +14038,67,14,36,0.0 +14039,66,17,16,0.0 +14039,63,43.9,4,0.0 +14039,69,36,18,0.0 +14039,44,19.45,26,0.0 +14039,62,49.3,36,0.0 +14039,56,38,36,0.0 +14039,18,62.5,50,0.0 +14039,21,10,5,0.0 +14039,43,46,37,0.0 +14039,10,31,10,0.0 +14039,59,55,21,0.0 +14040,55,24,30,0.0 +14040,27,43.9,25,0.0 +14040,32,32,8,0.0 +14040,75,7.75,28,0.0 +14040,59,55,40,0.0 +14040,15,15.5,10,0.0 +14040,3,10,43,0.0 +14040,26,31.23,30,0.0 +14040,74,10,34,0.0 +14040,30,25.89,27,0.0 +14040,48,12.75,45,0.0 +14040,8,40,1,0.0 +14040,33,2.5,13,0.0 +14040,57,19.5,2,0.0 +14040,31,12.5,9,0.0 +14040,62,49.3,32,0.0 +14040,23,9,42,0.0 +14040,40,18.4,42,0.0 +14040,2,19,15,0.0 +14040,36,19,11,0.0 +14040,67,14,8,0.0 +14040,72,34.8,9,0.0 +14040,73,15,25,0.0 +14040,56,38,1,0.0 +14040,17,39,48,0.0 +14040,37,26,22,0.0 +14040,76,18,47,0.0 +14040,46,12,50,0.0 +14040,42,14,38,0.0 +14040,64,33.25,12,0.0 +14040,20,81,16,0.0 +14040,77,13,35,0.0 +14040,5,21.35,17,0.0 +14040,38,263.5,43,0.0 +14040,49,20,13,0.0 +14040,29,123.79,40,0.0 +14040,51,53,31,0.0 +14040,44,19.45,13,0.0 +14040,65,21.05,30,0.0 +14040,43,46,19,0.0 +14040,7,30,15,0.0 +14040,19,9.2,40,0.0 +14040,13,6,20,0.0 +14040,6,25,25,0.0 +14040,28,45.6,31,0.0 +14041,45,9.5,38,0.0 +14041,75,7.75,8,0.0 +14041,37,26,12,0.0 +14041,72,34.8,23,0.0 +14041,38,263.5,31,0.0 +14041,52,7,25,0.0 +14041,2,19,18,0.0 +14041,25,14,11,0.0 +14041,18,62.5,10,0.0 +14041,30,25.89,29,0.0 +14041,50,16.25,30,0.0 +14041,48,12.75,16,0.0 +14041,47,9.5,34,0.0 +14041,55,24,18,0.0 +14041,40,18.4,35,0.0 +14041,60,34,48,0.0 +14041,14,23.25,27,0.0 +14041,68,12.5,4,0.0 +14041,21,10,25,0.0 +14041,3,10,28,0.0 +14041,59,55,26,0.0 +14042,75,7.75,11,0.0 +14042,63,43.9,36,0.0 +14042,25,14,14,0.0 +14042,51,53,10,0.0 +14042,1,18,49,0.0 +14042,29,123.79,33,0.0 +14042,40,18.4,31,0.0 +14042,2,19,17,0.0 +14042,59,55,45,0.0 +14042,39,18,20,0.0 +14042,46,12,26,0.0 +14042,42,14,22,0.0 +14042,19,9.2,17,0.0 +14042,13,6,27,0.0 +14042,48,12.75,30,0.0 +14042,18,62.5,5,0.0 +14042,72,34.8,17,0.0 +14042,47,9.5,12,0.0 +14042,5,21.35,6,0.0 +14042,64,33.25,17,0.0 +14042,65,21.05,17,0.0 +14042,69,36,23,0.0 +14042,56,38,17,0.0 +14042,27,43.9,36,0.0 +14042,57,19.5,42,0.0 +14042,66,17,33,0.0 +14042,58,13.25,11,0.0 +14042,50,16.25,28,0.0 +14042,71,21.5,43,0.0 +14042,49,20,3,0.0 +14042,37,26,11,0.0 +14042,31,12.5,7,0.0 +14042,76,18,25,0.0 +14042,52,7,45,0.0 +14042,54,7.45,30,0.0 +14042,11,21,33,0.0 +14042,23,9,15,0.0 +14042,74,10,4,0.0 +14042,68,12.5,44,0.0 +14042,70,15,26,0.0 +14042,8,40,15,0.0 +14042,36,19,1,0.0 +14042,24,4.5,27,0.0 +14043,7,30,9,0.0 +14043,40,18.4,10,0.0 +14043,4,22,20,0.0 +14043,13,6,26,0.0 +14043,67,14,48,0.0 +14043,65,21.05,7,0.0 +14043,10,31,14,0.0 +14043,76,18,46,0.0 +14043,59,55,34,0.0 +14043,11,21,24,0.0 +14043,5,21.35,24,0.0 +14043,17,39,41,0.0 +14043,23,9,31,0.0 +14043,32,32,34,0.0 +14043,63,43.9,19,0.0 +14043,56,38,18,0.0 +14043,62,49.3,29,0.0 +14043,60,34,41,0.0 +14043,64,33.25,18,0.0 +14043,57,19.5,23,0.0 +14043,12,38,42,0.0 +14043,22,21,49,0.0 +14043,16,17.45,47,0.0 +14043,36,19,39,0.0 +14043,58,13.25,32,0.0 +14043,53,32.8,27,0.0 +14043,37,26,10,0.0 +14043,29,123.79,26,0.0 +14043,9,97,23,0.0 +14043,21,10,31,0.0 +14043,2,19,1,0.0 +14043,74,10,42,0.0 +14043,50,16.25,34,0.0 +14043,47,9.5,45,0.0 +14043,31,12.5,29,0.0 +14043,54,7.45,34,0.0 +14043,18,62.5,41,0.0 +14043,19,9.2,26,0.0 +14043,71,21.5,40,0.0 +14043,73,15,45,0.0 +14043,69,36,26,0.0 +14043,28,45.6,32,0.0 +14043,48,12.75,27,0.0 +14043,8,40,43,0.0 +14043,66,17,46,0.0 +14043,3,10,38,0.0 +14043,15,15.5,9,0.0 +14043,39,18,24,0.0 +14043,75,7.75,49,0.0 +14043,55,24,47,0.0 +14043,77,13,7,0.0 +14044,52,7,16,0.0 +14044,51,53,17,0.0 +14044,18,62.5,30,0.0 +14044,36,19,7,0.0 +14044,2,19,22,0.0 +14044,12,38,50,0.0 +14044,73,15,8,0.0 +14044,61,28.5,31,0.0 +14044,76,18,2,0.0 +14044,10,31,28,0.0 +14044,42,14,21,0.0 +14044,27,43.9,6,0.0 +14044,30,25.89,24,0.0 +14044,66,17,48,0.0 +14044,64,33.25,12,0.0 +14044,68,12.5,18,0.0 +14044,65,21.05,24,0.0 +14044,1,18,8,0.0 +14044,70,15,5,0.0 +14044,8,40,30,0.0 +14044,25,14,5,0.0 +14044,7,30,42,0.0 +14044,58,13.25,50,0.0 +14044,17,39,45,0.0 +14044,46,12,29,0.0 +14044,23,9,7,0.0 +14044,37,26,1,0.0 +14044,67,14,26,0.0 +14044,26,31.23,41,0.0 +14044,13,6,29,0.0 +14044,47,9.5,14,0.0 +14044,71,21.5,33,0.0 +14044,44,19.45,24,0.0 +14044,55,24,5,0.0 +14044,63,43.9,3,0.0 +14044,19,9.2,15,0.0 +14044,16,17.45,4,0.0 +14044,50,16.25,12,0.0 +14044,59,55,28,0.0 +14044,40,18.4,35,0.0 +14044,21,10,11,0.0 +14044,75,7.75,23,0.0 +14044,22,21,17,0.0 +14044,24,4.5,28,0.0 +14044,53,32.8,27,0.0 +14044,54,7.45,28,0.0 +14044,3,10,41,0.0 +14044,56,38,1,0.0 +14044,15,15.5,32,0.0 +14044,34,14,31,0.0 +14044,60,34,8,0.0 +14044,45,9.5,22,0.0 +14044,11,21,11,0.0 +14044,48,12.75,7,0.0 +14044,43,46,44,0.0 +14044,29,123.79,6,0.0 +14044,5,21.35,42,0.0 +14044,9,97,42,0.0 +14044,14,23.25,2,0.0 +14044,62,49.3,19,0.0 +14044,38,263.5,41,0.0 +14044,6,25,18,0.0 +14044,74,10,34,0.0 +14044,49,20,25,0.0 +14044,39,18,10,0.0 +14044,72,34.8,29,0.0 +14044,35,18,27,0.0 +14044,57,19.5,23,0.0 +14044,41,9.65,17,0.0 +14045,10,31,18,0.0 +14045,1,18,42,0.0 +14045,74,10,30,0.0 +14045,27,43.9,21,0.0 +14045,50,16.25,47,0.0 +14045,16,17.45,5,0.0 +14045,72,34.8,11,0.0 +14045,35,18,26,0.0 +14045,42,14,40,0.0 +14045,2,19,20,0.0 +14045,31,12.5,35,0.0 +14045,75,7.75,10,0.0 +14045,8,40,36,0.0 +14045,33,2.5,10,0.0 +14045,69,36,22,0.0 +14045,48,12.75,32,0.0 +14045,56,38,20,0.0 +14045,12,38,38,0.0 +14045,18,62.5,2,0.0 +14045,52,7,3,0.0 +14045,7,30,35,0.0 +14045,64,33.25,42,0.0 +14045,60,34,6,0.0 +14045,73,15,43,0.0 +14045,3,10,48,0.0 +14045,61,28.5,24,0.0 +14045,19,9.2,32,0.0 +14045,65,21.05,24,0.0 +14045,47,9.5,45,0.0 +14045,43,46,46,0.0 +14045,68,12.5,46,0.0 +14045,59,55,30,0.0 +14045,46,12,24,0.0 +14046,12,38,24,0.0 +14046,40,18.4,35,0.0 +14046,66,17,41,0.0 +14046,60,34,48,0.0 +14046,23,9,24,0.0 +14046,15,15.5,5,0.0 +14046,1,18,32,0.0 +14046,5,21.35,32,0.0 +14046,4,22,1,0.0 +14046,35,18,40,0.0 +14046,31,12.5,2,0.0 +14046,76,18,31,0.0 +14046,9,97,42,0.0 +14046,74,10,38,0.0 +14046,46,12,41,0.0 +14046,56,38,49,0.0 +14047,70,15,34,0.0 +14047,1,18,32,0.0 +14047,59,55,30,0.0 +14047,55,24,31,0.0 +14047,32,32,26,0.0 +14047,53,32.8,40,0.0 +14047,21,10,36,0.0 +14047,8,40,40,0.0 +14047,26,31.23,15,0.0 +14047,30,25.89,2,0.0 +14047,60,34,47,0.0 +14047,17,39,44,0.0 +14047,43,46,22,0.0 +14047,69,36,2,0.0 +14047,48,12.75,5,0.0 +14047,50,16.25,1,0.0 +14047,27,43.9,32,0.0 +14047,36,19,49,0.0 +14047,19,9.2,11,0.0 +14047,65,21.05,47,0.0 +14047,75,7.75,50,0.0 +14047,24,4.5,5,0.0 +14047,62,49.3,47,0.0 +14047,2,19,33,0.0 +14047,68,12.5,3,0.0 +14048,26,31.23,2,0.0 +14048,45,9.5,36,0.0 +14048,10,31,10,0.0 +14048,36,19,25,0.0 +14048,74,10,44,0.0 +14048,7,30,42,0.0 +14048,64,33.25,24,0.0 +14048,4,22,6,0.0 +14048,47,9.5,24,0.0 +14048,58,13.25,13,0.0 +14048,40,18.4,14,0.0 +14048,12,38,30,0.0 +14048,71,21.5,46,0.0 +14048,19,9.2,12,0.0 +14048,63,43.9,33,0.0 +14048,41,9.65,44,0.0 +14048,15,15.5,50,0.0 +14048,43,46,4,0.0 +14048,21,10,39,0.0 +14048,52,7,23,0.0 +14048,55,24,47,0.0 +14048,23,9,3,0.0 +14048,57,19.5,26,0.0 +14048,44,19.45,31,0.0 +14048,22,21,44,0.0 +14048,70,15,50,0.0 +14048,73,15,45,0.0 +14048,28,45.6,20,0.0 +14048,3,10,44,0.0 +14048,18,62.5,25,0.0 +14048,56,38,49,0.0 +14048,30,25.89,47,0.0 +14048,32,32,38,0.0 +14048,20,81,10,0.0 +14048,50,16.25,35,0.0 +14048,39,18,35,0.0 +14048,34,14,17,0.0 +14048,33,2.5,48,0.0 +14048,9,97,35,0.0 +14049,45,9.5,28,0.0 +14049,12,38,49,0.0 +14049,36,19,38,0.0 +14049,27,43.9,18,0.0 +14049,3,10,3,0.0 +14049,50,16.25,41,0.0 +14049,33,2.5,37,0.0 +14049,46,12,28,0.0 +14049,19,9.2,1,0.0 +14049,75,7.75,5,0.0 +14049,5,21.35,34,0.0 +14049,38,263.5,44,0.0 +14049,77,13,49,0.0 +14049,70,15,16,0.0 +14049,76,18,13,0.0 +14049,18,62.5,32,0.0 +14049,1,18,15,0.0 +14049,66,17,38,0.0 +14049,14,23.25,46,0.0 +14049,43,46,49,0.0 +14049,8,40,4,0.0 +14049,44,19.45,47,0.0 +14049,28,45.6,30,0.0 +14049,47,9.5,47,0.0 +14049,31,12.5,4,0.0 +14049,56,38,29,0.0 +14049,7,30,15,0.0 +14049,4,22,41,0.0 +14049,64,33.25,14,0.0 +14049,42,14,14,0.0 +14049,71,21.5,24,0.0 +14049,30,25.89,21,0.0 +14049,13,6,6,0.0 +14049,53,32.8,9,0.0 +14049,10,31,3,0.0 +14049,17,39,9,0.0 +14050,54,7.45,10,0.0 +14050,65,21.05,45,0.0 +14050,66,17,41,0.0 +14051,41,9.65,20,0.0 +14051,34,14,39,0.0 +14051,77,13,26,0.0 +14051,46,12,13,0.0 +14051,27,43.9,8,0.0 +14051,50,16.25,38,0.0 +14051,55,24,8,0.0 +14051,21,10,39,0.0 +14051,22,21,18,0.0 +14051,75,7.75,28,0.0 +14051,9,97,19,0.0 +14051,52,7,38,0.0 +14051,63,43.9,23,0.0 +14051,19,9.2,48,0.0 +14051,72,34.8,10,0.0 +14051,14,23.25,33,0.0 +14051,8,40,17,0.0 +14051,66,17,43,0.0 +14051,62,49.3,24,0.0 +14051,64,33.25,39,0.0 +14051,43,46,10,0.0 +14051,25,14,22,0.0 +14051,58,13.25,32,0.0 +14051,70,15,7,0.0 +14051,65,21.05,44,0.0 +14051,10,31,47,0.0 +14051,45,9.5,31,0.0 +14051,7,30,18,0.0 +14051,28,45.6,15,0.0 +14051,68,12.5,11,0.0 +14051,39,18,26,0.0 +14051,12,38,43,0.0 +14051,31,12.5,35,0.0 +14051,42,14,3,0.0 +14051,40,18.4,32,0.0 +14051,18,62.5,34,0.0 +14051,74,10,40,0.0 +14051,49,20,44,0.0 +14051,6,25,16,0.0 +14051,57,19.5,30,0.0 +14051,47,9.5,27,0.0 +14051,73,15,24,0.0 +14051,60,34,3,0.0 +14051,53,32.8,3,0.0 +14051,4,22,34,0.0 +14051,30,25.89,11,0.0 +14051,2,19,16,0.0 +14051,48,12.75,14,0.0 +14051,69,36,22,0.0 +14051,5,21.35,47,0.0 +14051,20,81,48,0.0 +14051,16,17.45,48,0.0 +14051,17,39,9,0.0 +14051,54,7.45,3,0.0 +14051,38,263.5,20,0.0 +14051,33,2.5,50,0.0 +14051,56,38,33,0.0 +14051,1,18,26,0.0 +14051,61,28.5,22,0.0 +14051,67,14,45,0.0 +14051,76,18,15,0.0 +14051,44,19.45,27,0.0 +14051,3,10,15,0.0 +14051,23,9,10,0.0 +14051,36,19,21,0.0 +14051,32,32,41,0.0 +14051,51,53,40,0.0 +14052,70,15,33,0.0 +14052,35,18,31,0.0 +14052,10,31,8,0.0 +14052,57,19.5,22,0.0 +14052,14,23.25,16,0.0 +14052,69,36,14,0.0 +14053,2,19,21,0.0 +14053,57,19.5,18,0.0 +14053,56,38,15,0.0 +14053,45,9.5,24,0.0 +14053,23,9,16,0.0 +14053,40,18.4,49,0.0 +14053,25,14,41,0.0 +14053,29,123.79,48,0.0 +14053,10,31,27,0.0 +14053,75,7.75,8,0.0 +14054,71,21.5,25,0.0 +14054,60,34,3,0.0 +14054,63,43.9,16,0.0 +14054,53,32.8,19,0.0 +14054,37,26,45,0.0 +14054,46,12,43,0.0 +14054,42,14,40,0.0 +14054,49,20,33,0.0 +14054,24,4.5,14,0.0 +14054,66,17,14,0.0 +14054,12,38,26,0.0 +14054,75,7.75,21,0.0 +14054,34,14,22,0.0 +14054,72,34.8,9,0.0 +14054,58,13.25,6,0.0 +14054,59,55,12,0.0 +14054,50,16.25,44,0.0 +14054,29,123.79,30,0.0 +14054,51,53,46,0.0 +14054,62,49.3,35,0.0 +14054,21,10,18,0.0 +14054,18,62.5,19,0.0 +14054,64,33.25,32,0.0 +14054,39,18,16,0.0 +14054,28,45.6,47,0.0 +14054,48,12.75,46,0.0 +14054,33,2.5,32,0.0 +14054,47,9.5,28,0.0 +14054,68,12.5,37,0.0 +14054,8,40,12,0.0 +14054,3,10,29,0.0 +14054,20,81,7,0.0 +14054,26,31.23,9,0.0 +14054,7,30,39,0.0 +14054,67,14,1,0.0 +14054,55,24,45,0.0 +14054,10,31,37,0.0 +14054,41,9.65,11,0.0 +14054,52,7,23,0.0 +14054,73,15,16,0.0 +14054,6,25,47,0.0 +14054,65,21.05,30,0.0 +14054,61,28.5,18,0.0 +14054,1,18,29,0.0 +14054,15,15.5,14,0.0 +14054,19,9.2,20,0.0 +14054,5,21.35,32,0.0 +14054,77,13,1,0.0 +14055,13,6,39,0.0 +14055,7,30,13,0.0 +14055,60,34,19,0.0 +14055,59,55,43,0.0 +14055,74,10,1,0.0 +14055,66,17,30,0.0 +14055,62,49.3,29,0.0 +14055,23,9,41,0.0 +14055,27,43.9,18,0.0 +14055,1,18,3,0.0 +14055,37,26,49,0.0 +14055,58,13.25,28,0.0 +14055,6,25,32,0.0 +14055,77,13,1,0.0 +14055,49,20,11,0.0 +14055,18,62.5,1,0.0 +14055,17,39,36,0.0 +14055,10,31,21,0.0 +14055,31,12.5,49,0.0 +14055,53,32.8,24,0.0 +14055,12,38,31,0.0 +14055,40,18.4,7,0.0 +14055,41,9.65,5,0.0 +14055,73,15,34,0.0 +14055,61,28.5,32,0.0 +14055,48,12.75,8,0.0 +14055,69,36,1,0.0 +14055,51,53,17,0.0 +14055,26,31.23,2,0.0 +14055,25,14,9,0.0 +14055,38,263.5,25,0.0 +14055,11,21,30,0.0 +14055,16,17.45,9,0.0 +14055,30,25.89,27,0.0 +14055,2,19,35,0.0 +14055,36,19,32,0.0 +14055,72,34.8,21,0.0 +14055,21,10,33,0.0 +14055,9,97,19,0.0 +14055,20,81,32,0.0 +14055,39,18,6,0.0 +14055,63,43.9,16,0.0 +14055,57,19.5,9,0.0 +14055,55,24,32,0.0 +14055,15,15.5,40,0.0 +14055,54,7.45,14,0.0 +14055,3,10,44,0.0 +14055,46,12,50,0.0 +14055,70,15,22,0.0 +14055,47,9.5,15,0.0 +14055,35,18,50,0.0 +14055,75,7.75,42,0.0 +14055,42,14,29,0.0 +14055,33,2.5,9,0.0 +14055,28,45.6,34,0.0 +14055,68,12.5,23,0.0 +14055,56,38,3,0.0 +14055,19,9.2,18,0.0 +14055,34,14,18,0.0 +14055,45,9.5,47,0.0 +14055,71,21.5,11,0.0 +14055,65,21.05,31,0.0 +14055,5,21.35,24,0.0 +14055,8,40,41,0.0 +14055,14,23.25,12,0.0 +14055,76,18,17,0.0 +14055,22,21,3,0.0 +14055,50,16.25,10,0.0 +14055,67,14,50,0.0 +14055,44,19.45,19,0.0 +14055,32,32,22,0.0 +14055,24,4.5,23,0.0 +14056,5,21.35,3,0.0 +14056,39,18,17,0.0 +14056,70,15,36,0.0 +14056,34,14,10,0.0 +14056,13,6,24,0.0 +14056,77,13,33,0.0 +14056,9,97,43,0.0 +14056,30,25.89,29,0.0 +14056,41,9.65,49,0.0 +14056,64,33.25,11,0.0 +14056,36,19,47,0.0 +14056,21,10,22,0.0 +14056,23,9,18,0.0 +14056,14,23.25,34,0.0 +14056,31,12.5,20,0.0 +14056,17,39,29,0.0 +14056,33,2.5,12,0.0 +14056,40,18.4,7,0.0 +14056,73,15,28,0.0 +14056,56,38,37,0.0 +14056,19,9.2,18,0.0 +14056,43,46,1,0.0 +14056,60,34,49,0.0 +14056,62,49.3,41,0.0 +14056,46,12,32,0.0 +14056,49,20,19,0.0 +14056,53,32.8,32,0.0 +14056,50,16.25,40,0.0 +14056,2,19,15,0.0 +14056,63,43.9,14,0.0 +14056,28,45.6,13,0.0 +14056,69,36,34,0.0 +14056,65,21.05,12,0.0 +14056,57,19.5,32,0.0 +14056,59,55,35,0.0 +14056,55,24,26,0.0 +14056,61,28.5,1,0.0 +14056,10,31,10,0.0 +14056,26,31.23,50,0.0 +14056,20,81,44,0.0 +14056,11,21,48,0.0 +14056,3,10,49,0.0 +14056,15,15.5,35,0.0 +14056,29,123.79,35,0.0 +14056,76,18,45,0.0 +14056,44,19.45,16,0.0 +14056,42,14,11,0.0 +14056,8,40,35,0.0 +14056,58,13.25,7,0.0 +14056,12,38,33,0.0 +14056,7,30,17,0.0 +14056,25,14,29,0.0 +14056,52,7,37,0.0 +14056,75,7.75,5,0.0 +14057,59,55,4,0.0 +14057,51,53,50,0.0 +14057,8,40,10,0.0 +14057,18,62.5,5,0.0 +14057,65,21.05,49,0.0 +14057,4,22,13,0.0 +14057,73,15,17,0.0 +14057,20,81,16,0.0 +14057,24,4.5,43,0.0 +14057,63,43.9,46,0.0 +14057,37,26,34,0.0 +14057,6,25,8,0.0 +14058,1,18,21,0.0 +14058,77,13,11,0.0 +14058,19,9.2,2,0.0 +14058,18,62.5,35,0.0 +14058,30,25.89,50,0.0 +14058,3,10,28,0.0 +14058,23,9,14,0.0 +14058,26,31.23,3,0.0 +14058,67,14,24,0.0 +14058,4,22,11,0.0 +14058,44,19.45,20,0.0 +14058,43,46,9,0.0 +14058,12,38,24,0.0 +14058,69,36,33,0.0 +14058,68,12.5,17,0.0 +14058,2,19,8,0.0 +14058,13,6,34,0.0 +14058,47,9.5,42,0.0 +14058,50,16.25,40,0.0 +14058,10,31,3,0.0 +14058,20,81,20,0.0 +14058,66,17,34,0.0 +14058,29,123.79,3,0.0 +14058,65,21.05,35,0.0 +14058,39,18,47,0.0 +14058,53,32.8,46,0.0 +14058,9,97,1,0.0 +14058,8,40,43,0.0 +14058,28,45.6,22,0.0 +14058,51,53,12,0.0 +14058,38,263.5,32,0.0 +14058,46,12,33,0.0 +14058,63,43.9,50,0.0 +14058,45,9.5,22,0.0 +14058,11,21,3,0.0 +14058,17,39,25,0.0 +14058,42,14,46,0.0 +14058,22,21,31,0.0 +14058,6,25,33,0.0 +14058,7,30,38,0.0 +14058,58,13.25,38,0.0 +14058,74,10,39,0.0 +14058,25,14,37,0.0 +14058,61,28.5,12,0.0 +14058,35,18,29,0.0 +14058,48,12.75,19,0.0 +14058,72,34.8,47,0.0 +14058,34,14,36,0.0 +14058,52,7,9,0.0 +14059,24,4.5,31,0.0 +14059,38,263.5,9,0.0 +14059,49,20,8,0.0 +14059,12,38,19,0.0 +14059,44,19.45,16,0.0 +14059,1,18,8,0.0 +14059,22,21,37,0.0 +14059,58,13.25,14,0.0 +14059,25,14,28,0.0 +14059,70,15,11,0.0 +14059,2,19,38,0.0 +14059,72,34.8,11,0.0 +14059,68,12.5,30,0.0 +14059,7,30,34,0.0 +14059,51,53,24,0.0 +14059,13,6,5,0.0 +14060,42,14,31,0.0 +14060,69,36,36,0.0 +14060,58,13.25,32,0.0 +14060,70,15,11,0.0 +14060,39,18,4,0.0 +14060,60,34,23,0.0 +14060,5,21.35,24,0.0 +14060,18,62.5,47,0.0 +14060,65,21.05,6,0.0 +14060,63,43.9,23,0.0 +14060,23,9,13,0.0 +14060,52,7,18,0.0 +14060,53,32.8,41,0.0 +14060,75,7.75,39,0.0 +14060,77,13,20,0.0 +14060,21,10,44,0.0 +14060,68,12.5,13,0.0 +14060,6,25,36,0.0 +14060,73,15,21,0.0 +14060,61,28.5,50,0.0 +14060,72,34.8,10,0.0 +14060,37,26,14,0.0 +14060,27,43.9,16,0.0 +14060,26,31.23,11,0.0 +14060,43,46,20,0.0 +14060,67,14,14,0.0 +14060,12,38,20,0.0 +14060,36,19,44,0.0 +14060,66,17,11,0.0 +14060,55,24,22,0.0 +14060,76,18,21,0.0 +14060,49,20,18,0.0 +14060,64,33.25,48,0.0 +14060,71,21.5,49,0.0 +14060,54,7.45,27,0.0 +14060,32,32,18,0.0 +14060,13,6,20,0.0 +14060,56,38,2,0.0 +14060,24,4.5,48,0.0 +14060,11,21,21,0.0 +14060,17,39,30,0.0 +14060,30,25.89,36,0.0 +14060,50,16.25,29,0.0 +14060,9,97,29,0.0 +14060,35,18,24,0.0 +14060,28,45.6,37,0.0 +14060,46,12,21,0.0 +14060,15,15.5,10,0.0 +14060,41,9.65,1,0.0 +14060,20,81,49,0.0 +14060,57,19.5,36,0.0 +14060,33,2.5,7,0.0 +14060,62,49.3,38,0.0 +14060,44,19.45,35,0.0 +14060,16,17.45,47,0.0 +14061,47,9.5,36,0.0 +14061,17,39,32,0.0 +14061,61,28.5,23,0.0 +14061,10,31,49,0.0 +14061,67,14,3,0.0 +14061,42,14,14,0.0 +14061,65,21.05,11,0.0 +14061,59,55,50,0.0 +14061,30,25.89,4,0.0 +14061,14,23.25,44,0.0 +14061,69,36,37,0.0 +14061,76,18,43,0.0 +14061,62,49.3,17,0.0 +14061,2,19,49,0.0 +14061,29,123.79,14,0.0 +14061,70,15,29,0.0 +14061,1,18,25,0.0 +14061,37,26,13,0.0 +14061,13,6,20,0.0 +14061,22,21,17,0.0 +14061,48,12.75,18,0.0 +14061,68,12.5,5,0.0 +14061,16,17.45,49,0.0 +14061,18,62.5,11,0.0 +14061,63,43.9,12,0.0 +14061,40,18.4,25,0.0 +14061,26,31.23,5,0.0 +14061,12,38,31,0.0 +14061,7,30,33,0.0 +14061,25,14,35,0.0 +14061,73,15,17,0.0 +14061,54,7.45,24,0.0 +14061,11,21,18,0.0 +14061,66,17,12,0.0 +14061,49,20,50,0.0 +14061,60,34,47,0.0 +14061,27,43.9,22,0.0 +14061,58,13.25,25,0.0 +14061,51,53,18,0.0 +14061,21,10,39,0.0 +14061,64,33.25,49,0.0 +14061,71,21.5,30,0.0 +14061,3,10,23,0.0 +14061,31,12.5,20,0.0 +14061,36,19,4,0.0 +14061,35,18,27,0.0 +14061,72,34.8,33,0.0 +14061,23,9,20,0.0 +14061,50,16.25,50,0.0 +14061,33,2.5,37,0.0 +14061,39,18,25,0.0 +14061,55,24,20,0.0 +14061,8,40,21,0.0 +14061,45,9.5,21,0.0 +14061,24,4.5,33,0.0 +14061,75,7.75,44,0.0 +14061,56,38,32,0.0 +14061,9,97,1,0.0 +14061,32,32,10,0.0 +14061,57,19.5,13,0.0 +14061,6,25,5,0.0 +14061,52,7,46,0.0 +14061,28,45.6,41,0.0 +14061,74,10,1,0.0 +14061,53,32.8,44,0.0 +14061,41,9.65,26,0.0 +14061,77,13,15,0.0 +14061,5,21.35,6,0.0 +14061,43,46,15,0.0 +14061,20,81,13,0.0 +14061,4,22,36,0.0 +14061,38,263.5,16,0.0 +14061,19,9.2,20,0.0 +14061,15,15.5,37,0.0 +14061,34,14,8,0.0 +14061,46,12,44,0.0 +14061,44,19.45,31,0.0 +14062,41,9.65,2,0.0 +14062,12,38,43,0.0 +14062,58,13.25,43,0.0 +14062,13,6,10,0.0 +14062,74,10,7,0.0 +14062,62,49.3,31,0.0 +14062,29,123.79,23,0.0 +14062,10,31,10,0.0 +14062,24,4.5,4,0.0 +14062,73,15,30,0.0 +14062,38,263.5,8,0.0 +14062,21,10,10,0.0 +14062,65,21.05,13,0.0 +14062,57,19.5,2,0.0 +14062,27,43.9,46,0.0 +14062,72,34.8,23,0.0 +14062,22,21,50,0.0 +14062,47,9.5,45,0.0 +14062,30,25.89,30,0.0 +14062,23,9,5,0.0 +14062,8,40,5,0.0 +14062,44,19.45,22,0.0 +14062,46,12,14,0.0 +14062,49,20,37,0.0 +14062,35,18,34,0.0 +14062,67,14,9,0.0 +14062,56,38,38,0.0 +14062,25,14,4,0.0 +14062,32,32,19,0.0 +14062,20,81,5,0.0 +14062,76,18,5,0.0 +14062,63,43.9,31,0.0 +14062,43,46,37,0.0 +14062,45,9.5,46,0.0 +14062,42,14,37,0.0 +14062,19,9.2,29,0.0 +14062,40,18.4,38,0.0 +14062,39,18,46,0.0 +14062,17,39,3,0.0 +14062,59,55,3,0.0 +14062,71,21.5,50,0.0 +14062,28,45.6,43,0.0 +14062,37,26,40,0.0 +14062,11,21,43,0.0 +14062,3,10,14,0.0 +14062,1,18,45,0.0 +14062,60,34,38,0.0 +14063,12,38,38,0.0 +14063,43,46,24,0.0 +14063,13,6,4,0.0 +14063,28,45.6,42,0.0 +14063,6,25,41,0.0 +14063,44,19.45,10,0.0 +14063,25,14,15,0.0 +14064,75,7.75,41,0.0 +14064,62,49.3,45,0.0 +14064,48,12.75,36,0.0 +14064,24,4.5,23,0.0 +14064,5,21.35,29,0.0 +14064,30,25.89,39,0.0 +14064,71,21.5,28,0.0 +14064,6,25,16,0.0 +14064,50,16.25,46,0.0 +14064,39,18,22,0.0 +14064,34,14,24,0.0 +14064,61,28.5,38,0.0 +14064,28,45.6,36,0.0 +14064,10,31,18,0.0 +14064,2,19,6,0.0 +14064,7,30,25,0.0 +14064,55,24,16,0.0 +14064,27,43.9,6,0.0 +14064,73,15,45,0.0 +14064,22,21,1,0.0 +14064,37,26,44,0.0 +14064,74,10,43,0.0 +14064,53,32.8,21,0.0 +14064,36,19,47,0.0 +14064,70,15,28,0.0 +14064,38,263.5,37,0.0 +14064,14,23.25,47,0.0 +14064,20,81,40,0.0 +14064,77,13,20,0.0 +14064,33,2.5,21,0.0 +14064,15,15.5,39,0.0 +14064,64,33.25,14,0.0 +14064,49,20,20,0.0 +14064,51,53,34,0.0 +14064,16,17.45,3,0.0 +14064,4,22,25,0.0 +14064,11,21,40,0.0 +14064,41,9.65,18,0.0 +14064,46,12,20,0.0 +14064,68,12.5,36,0.0 +14064,17,39,48,0.0 +14064,47,9.5,22,0.0 +14064,21,10,23,0.0 +14064,72,34.8,12,0.0 +14064,65,21.05,18,0.0 +14064,3,10,43,0.0 +14064,52,7,3,0.0 +14064,29,123.79,11,0.0 +14064,45,9.5,31,0.0 +14064,40,18.4,30,0.0 +14064,44,19.45,17,0.0 +14064,67,14,2,0.0 +14064,35,18,4,0.0 +14064,23,9,47,0.0 +14064,32,32,3,0.0 +14064,56,38,19,0.0 +14064,13,6,18,0.0 +14064,69,36,35,0.0 +14065,24,4.5,10,0.0 +14065,77,13,13,0.0 +14065,53,32.8,26,0.0 +14065,47,9.5,35,0.0 +14065,14,23.25,34,0.0 +14065,22,21,42,0.0 +14065,5,21.35,26,0.0 +14065,31,12.5,32,0.0 +14065,73,15,5,0.0 +14065,28,45.6,47,0.0 +14065,26,31.23,23,0.0 +14065,7,30,48,0.0 +14065,72,34.8,14,0.0 +14065,41,9.65,4,0.0 +14065,13,6,38,0.0 +14065,63,43.9,39,0.0 +14065,64,33.25,10,0.0 +14065,38,263.5,45,0.0 +14066,63,43.9,37,0.0 +14066,76,18,38,0.0 +14066,18,62.5,35,0.0 +14066,42,14,22,0.0 +14066,58,13.25,21,0.0 +14066,75,7.75,4,0.0 +14066,31,12.5,31,0.0 +14066,4,22,45,0.0 +14066,52,7,34,0.0 +14066,14,23.25,48,0.0 +14066,20,81,20,0.0 +14066,67,14,20,0.0 +14066,51,53,11,0.0 +14066,57,19.5,40,0.0 +14066,21,10,5,0.0 +14066,2,19,38,0.0 +14066,35,18,19,0.0 +14066,72,34.8,41,0.0 +14066,27,43.9,42,0.0 +14066,9,97,34,0.0 +14066,56,38,20,0.0 +14066,17,39,29,0.0 +14066,61,28.5,18,0.0 +14066,59,55,36,0.0 +14066,73,15,27,0.0 +14066,13,6,5,0.0 +14066,19,9.2,8,0.0 +14066,33,2.5,19,0.0 +14066,34,14,48,0.0 +14066,38,263.5,18,0.0 +14066,69,36,32,0.0 +14066,50,16.25,21,0.0 +14066,5,21.35,25,0.0 +14066,25,14,41,0.0 +14066,55,24,36,0.0 +14066,24,4.5,45,0.0 +14066,60,34,12,0.0 +14066,40,18.4,11,0.0 +14066,16,17.45,14,0.0 +14066,71,21.5,28,0.0 +14066,77,13,21,0.0 +14066,23,9,4,0.0 +14066,66,17,25,0.0 +14066,12,38,34,0.0 +14066,36,19,18,0.0 +14066,6,25,12,0.0 +14066,74,10,9,0.0 +14066,3,10,3,0.0 +14066,54,7.45,22,0.0 +14066,48,12.75,15,0.0 +14066,62,49.3,14,0.0 +14066,47,9.5,40,0.0 +14066,26,31.23,8,0.0 +14066,30,25.89,17,0.0 +14066,7,30,37,0.0 +14066,32,32,50,0.0 +14066,49,20,40,0.0 +14066,53,32.8,16,0.0 +14066,43,46,49,0.0 +14066,37,26,29,0.0 +14066,39,18,37,0.0 +14066,45,9.5,42,0.0 +14066,65,21.05,14,0.0 +14066,15,15.5,14,0.0 +14066,22,21,48,0.0 +14066,29,123.79,49,0.0 +14066,46,12,35,0.0 +14066,70,15,40,0.0 +14066,10,31,12,0.0 +14066,44,19.45,32,0.0 +14066,1,18,5,0.0 +14067,27,43.9,24,0.0 +14067,25,14,8,0.0 +14067,65,21.05,16,0.0 +14067,54,7.45,9,0.0 +14067,69,36,36,0.0 +14067,40,18.4,26,0.0 +14067,49,20,20,0.0 +14067,30,25.89,1,0.0 +14067,7,30,41,0.0 +14067,18,62.5,20,0.0 +14067,23,9,11,0.0 +14067,2,19,2,0.0 +14067,34,14,1,0.0 +14067,35,18,48,0.0 +14067,75,7.75,5,0.0 +14067,47,9.5,46,0.0 +14067,38,263.5,28,0.0 +14067,57,19.5,23,0.0 +14067,74,10,31,0.0 +14067,4,22,47,0.0 +14067,55,24,18,0.0 +14067,52,7,22,0.0 +14067,73,15,3,0.0 +14067,46,12,31,0.0 +14067,71,21.5,27,0.0 +14067,41,9.65,39,0.0 +14067,77,13,24,0.0 +14067,67,14,38,0.0 +14067,13,6,5,0.0 +14067,36,19,29,0.0 +14067,70,15,27,0.0 +14067,48,12.75,20,0.0 +14067,61,28.5,33,0.0 +14067,3,10,32,0.0 +14067,59,55,41,0.0 +14067,10,31,28,0.0 +14067,11,21,8,0.0 +14067,60,34,45,0.0 +14067,66,17,23,0.0 +14067,63,43.9,29,0.0 +14067,76,18,39,0.0 +14067,6,25,6,0.0 +14067,16,17.45,13,0.0 +14067,51,53,47,0.0 +14067,58,13.25,32,0.0 +14067,45,9.5,35,0.0 +14067,33,2.5,46,0.0 +14067,32,32,42,0.0 +14067,56,38,26,0.0 +14067,64,33.25,50,0.0 +14067,26,31.23,10,0.0 +14067,20,81,19,0.0 +14067,19,9.2,36,0.0 +14068,65,21.05,49,0.0 +14068,16,17.45,29,0.0 +14068,42,14,26,0.0 +14068,13,6,20,0.0 +14068,41,9.65,22,0.0 +14068,57,19.5,47,0.0 +14068,6,25,22,0.0 +14068,72,34.8,1,0.0 +14068,3,10,47,0.0 +14068,67,14,17,0.0 +14068,14,23.25,38,0.0 +14068,74,10,1,0.0 +14068,17,39,15,0.0 +14068,12,38,6,0.0 +14068,11,21,31,0.0 +14068,34,14,29,0.0 +14068,21,10,1,0.0 +14068,75,7.75,29,0.0 +14068,9,97,32,0.0 +14068,4,22,31,0.0 +14068,33,2.5,42,0.0 +14068,71,21.5,7,0.0 +14068,54,7.45,42,0.0 +14068,60,34,22,0.0 +14068,77,13,41,0.0 +14068,50,16.25,7,0.0 +14068,27,43.9,31,0.0 +14068,15,15.5,35,0.0 +14068,55,24,37,0.0 +14068,30,25.89,17,0.0 +14068,20,81,7,0.0 +14068,29,123.79,7,0.0 +14068,64,33.25,10,0.0 +14068,37,26,27,0.0 +14068,7,30,44,0.0 +14068,66,17,18,0.0 +14068,22,21,5,0.0 +14068,69,36,45,0.0 +14068,52,7,7,0.0 +14068,53,32.8,22,0.0 +14068,62,49.3,10,0.0 +14068,49,20,27,0.0 +14068,68,12.5,17,0.0 +14068,32,32,33,0.0 +14068,36,19,10,0.0 +14068,46,12,20,0.0 +14068,47,9.5,43,0.0 +14068,59,55,35,0.0 +14068,2,19,8,0.0 +14068,23,9,4,0.0 +14068,61,28.5,44,0.0 +14068,40,18.4,29,0.0 +14068,44,19.45,12,0.0 +14068,76,18,35,0.0 +14068,63,43.9,19,0.0 +14068,38,263.5,17,0.0 +14068,28,45.6,50,0.0 +14068,31,12.5,33,0.0 +14069,9,97,44,0.0 +14069,65,21.05,27,0.0 +14069,22,21,43,0.0 +14069,54,7.45,1,0.0 +14069,3,10,21,0.0 +14069,33,2.5,29,0.0 +14069,28,45.6,22,0.0 +14069,23,9,8,0.0 +14069,39,18,17,0.0 +14069,25,14,42,0.0 +14069,5,21.35,31,0.0 +14069,55,24,9,0.0 +14069,64,33.25,33,0.0 +14069,21,10,50,0.0 +14069,2,19,30,0.0 +14069,50,16.25,48,0.0 +14069,18,62.5,3,0.0 +14069,38,263.5,45,0.0 +14069,6,25,20,0.0 +14069,35,18,5,0.0 +14069,34,14,16,0.0 +14069,44,19.45,28,0.0 +14069,10,31,17,0.0 +14069,17,39,19,0.0 +14069,67,14,36,0.0 +14069,36,19,47,0.0 +14069,69,36,37,0.0 +14069,11,21,9,0.0 +14069,48,12.75,15,0.0 +14069,63,43.9,38,0.0 +14069,27,43.9,5,0.0 +14069,46,12,21,0.0 +14069,26,31.23,19,0.0 +14069,57,19.5,21,0.0 +14069,74,10,21,0.0 +14069,71,21.5,18,0.0 +14069,40,18.4,23,0.0 +14069,12,38,50,0.0 +14069,31,12.5,50,0.0 +14069,62,49.3,18,0.0 +14069,60,34,40,0.0 +14069,13,6,47,0.0 +14069,68,12.5,39,0.0 +14069,56,38,8,0.0 +14069,58,13.25,30,0.0 +14069,1,18,33,0.0 +14069,42,14,24,0.0 +14069,72,34.8,4,0.0 +14069,19,9.2,37,0.0 +14069,29,123.79,27,0.0 +14069,24,4.5,49,0.0 +14069,41,9.65,11,0.0 +14069,53,32.8,26,0.0 +14069,30,25.89,3,0.0 +14069,45,9.5,45,0.0 +14069,7,30,6,0.0 +14069,16,17.45,25,0.0 +14069,52,7,43,0.0 +14069,15,15.5,8,0.0 +14069,8,40,19,0.0 +14069,14,23.25,29,0.0 +14069,76,18,21,0.0 +14069,20,81,8,0.0 +14069,32,32,14,0.0 +14069,77,13,35,0.0 +14069,66,17,26,0.0 +14069,73,15,39,0.0 +14070,46,12,45,0.0 +14071,38,263.5,18,0.0 +14071,36,19,1,0.0 +14071,65,21.05,13,0.0 +14071,72,34.8,5,0.0 +14071,20,81,8,0.0 +14071,46,12,27,0.0 +14071,5,21.35,14,0.0 +14071,69,36,28,0.0 +14071,13,6,28,0.0 +14071,57,19.5,48,0.0 +14071,52,7,23,0.0 +14071,32,32,46,0.0 +14071,68,12.5,3,0.0 +14071,51,53,46,0.0 +14071,3,10,36,0.0 +14071,34,14,15,0.0 +14071,18,62.5,20,0.0 +14071,29,123.79,26,0.0 +14071,28,45.6,42,0.0 +14071,21,10,8,0.0 +14071,31,12.5,36,0.0 +14071,43,46,15,0.0 +14071,42,14,21,0.0 +14071,64,33.25,18,0.0 +14071,40,18.4,10,0.0 +14071,27,43.9,8,0.0 +14071,22,21,9,0.0 +14071,75,7.75,1,0.0 +14071,23,9,43,0.0 +14071,61,28.5,15,0.0 +14071,54,7.45,3,0.0 +14071,67,14,21,0.0 +14071,10,31,40,0.0 +14071,53,32.8,1,0.0 +14071,74,10,23,0.0 +14071,25,14,31,0.0 +14071,7,30,35,0.0 +14071,17,39,41,0.0 +14071,14,23.25,23,0.0 +14071,30,25.89,3,0.0 +14071,60,34,38,0.0 +14071,9,97,3,0.0 +14071,45,9.5,23,0.0 +14071,15,15.5,28,0.0 +14071,56,38,20,0.0 +14071,12,38,44,0.0 +14071,73,15,29,0.0 +14071,6,25,35,0.0 +14071,24,4.5,2,0.0 +14071,39,18,37,0.0 +14071,8,40,32,0.0 +14071,44,19.45,26,0.0 +14071,26,31.23,46,0.0 +14071,47,9.5,13,0.0 +14071,16,17.45,49,0.0 +14071,37,26,6,0.0 +14071,49,20,33,0.0 +14071,70,15,5,0.0 +14072,6,25,31,0.0 +14072,73,15,14,0.0 +14072,20,81,50,0.0 +14072,68,12.5,37,0.0 +14072,49,20,22,0.0 +14072,19,9.2,3,0.0 +14072,71,21.5,3,0.0 +14072,59,55,18,0.0 +14072,2,19,34,0.0 +14072,70,15,47,0.0 +14072,23,9,21,0.0 +14072,51,53,4,0.0 +14072,61,28.5,39,0.0 +14072,46,12,27,0.0 +14072,21,10,13,0.0 +14072,11,21,8,0.0 +14072,1,18,8,0.0 +14072,48,12.75,45,0.0 +14072,40,18.4,6,0.0 +14072,66,17,31,0.0 +14072,35,18,50,0.0 +14072,38,263.5,2,0.0 +14072,47,9.5,31,0.0 +14072,10,31,7,0.0 +14072,7,30,20,0.0 +14072,75,7.75,39,0.0 +14072,33,2.5,40,0.0 +14072,9,97,40,0.0 +14072,16,17.45,44,0.0 +14072,32,32,6,0.0 +14072,58,13.25,24,0.0 +14072,22,21,19,0.0 +14072,63,43.9,30,0.0 +14072,56,38,20,0.0 +14072,34,14,20,0.0 +14072,65,21.05,19,0.0 +14072,24,4.5,41,0.0 +14072,55,24,34,0.0 +14072,74,10,26,0.0 +14073,29,123.79,48,0.0 +14073,10,31,3,0.0 +14073,45,9.5,43,0.0 +14073,48,12.75,47,0.0 +14073,20,81,32,0.0 +14073,34,14,11,0.0 +14073,68,12.5,30,0.0 +14073,7,30,10,0.0 +14073,54,7.45,39,0.0 +14073,57,19.5,50,0.0 +14073,46,12,27,0.0 +14073,61,28.5,40,0.0 +14073,47,9.5,9,0.0 +14073,35,18,10,0.0 +14073,5,21.35,34,0.0 +14073,67,14,28,0.0 +14073,77,13,17,0.0 +14073,71,21.5,13,0.0 +14073,2,19,15,0.0 +14073,26,31.23,47,0.0 +14073,21,10,13,0.0 +14073,60,34,50,0.0 +14073,72,34.8,19,0.0 +14073,44,19.45,49,0.0 +14073,40,18.4,7,0.0 +14073,55,24,10,0.0 +14073,8,40,30,0.0 +14073,3,10,22,0.0 +14073,22,21,39,0.0 +14073,66,17,35,0.0 +14073,58,13.25,44,0.0 +14073,59,55,28,0.0 +14073,36,19,11,0.0 +14073,43,46,27,0.0 +14073,52,7,22,0.0 +14073,76,18,29,0.0 +14073,62,49.3,5,0.0 +14073,14,23.25,7,0.0 +14073,49,20,11,0.0 +14073,15,15.5,19,0.0 +14073,50,16.25,23,0.0 +14073,41,9.65,8,0.0 +14073,1,18,43,0.0 +14073,9,97,40,0.0 +14073,56,38,14,0.0 +14073,37,26,32,0.0 +14073,19,9.2,18,0.0 +14073,12,38,46,0.0 +14073,18,62.5,21,0.0 +14073,74,10,32,0.0 +14073,33,2.5,24,0.0 +14073,13,6,36,0.0 +14073,31,12.5,25,0.0 +14073,42,14,20,0.0 +14073,53,32.8,23,0.0 +14073,30,25.89,12,0.0 +14073,64,33.25,10,0.0 +14073,23,9,4,0.0 +14073,51,53,24,0.0 +14073,32,32,45,0.0 +14073,25,14,1,0.0 +14073,65,21.05,41,0.0 +14073,11,21,19,0.0 +14073,28,45.6,40,0.0 +14073,24,4.5,17,0.0 +14073,69,36,29,0.0 +14073,27,43.9,5,0.0 +14074,48,12.75,34,0.0 +14074,22,21,14,0.0 +14074,10,31,21,0.0 +14074,34,14,37,0.0 +14074,18,62.5,48,0.0 +14074,27,43.9,14,0.0 +14074,55,24,18,0.0 +14074,19,9.2,3,0.0 +14074,1,18,9,0.0 +14074,35,18,33,0.0 +14074,37,26,22,0.0 +14074,58,13.25,3,0.0 +14074,33,2.5,17,0.0 +14074,42,14,13,0.0 +14074,8,40,31,0.0 +14074,14,23.25,17,0.0 +14074,64,33.25,2,0.0 +14074,75,7.75,48,0.0 +14074,44,19.45,48,0.0 +14074,40,18.4,15,0.0 +14074,45,9.5,9,0.0 +14074,17,39,25,0.0 +14074,56,38,43,0.0 +14074,41,9.65,37,0.0 +14074,13,6,11,0.0 +14074,6,25,48,0.0 +14074,51,53,21,0.0 +14074,76,18,34,0.0 +14074,20,81,46,0.0 +14074,59,55,32,0.0 +14074,4,22,38,0.0 +14074,23,9,15,0.0 +14074,66,17,45,0.0 +14074,72,34.8,50,0.0 +14074,57,19.5,3,0.0 +14074,62,49.3,35,0.0 +14074,52,7,19,0.0 +14074,46,12,8,0.0 +14074,77,13,38,0.0 +14074,60,34,47,0.0 +14074,73,15,41,0.0 +14074,74,10,42,0.0 +14074,39,18,27,0.0 +14074,2,19,31,0.0 +14074,68,12.5,50,0.0 +14074,70,15,39,0.0 +14074,36,19,23,0.0 +14074,43,46,49,0.0 +14074,24,4.5,12,0.0 +14074,71,21.5,31,0.0 +14074,67,14,26,0.0 +14074,9,97,44,0.0 +14074,63,43.9,30,0.0 +14074,32,32,29,0.0 +14074,15,15.5,5,0.0 +14074,26,31.23,20,0.0 +14074,25,14,14,0.0 +14074,7,30,34,0.0 +14074,29,123.79,29,0.0 +14074,16,17.45,49,0.0 +14074,21,10,6,0.0 +14074,61,28.5,28,0.0 +14074,3,10,37,0.0 +14074,49,20,49,0.0 +14074,47,9.5,4,0.0 +14074,31,12.5,21,0.0 +14074,5,21.35,24,0.0 +14075,37,26,7,0.0 +14075,72,34.8,45,0.0 +14075,76,18,28,0.0 +14075,5,21.35,15,0.0 +14075,47,9.5,15,0.0 +14075,30,25.89,15,0.0 +14075,36,19,12,0.0 +14075,3,10,14,0.0 +14075,74,10,22,0.0 +14075,65,21.05,19,0.0 +14075,54,7.45,19,0.0 +14075,44,19.45,19,0.0 +14075,34,14,20,0.0 +14075,66,17,9,0.0 +14075,20,81,32,0.0 +14075,4,22,42,0.0 +14075,51,53,38,0.0 +14075,38,263.5,7,0.0 +14075,45,9.5,30,0.0 +14075,60,34,39,0.0 +14075,43,46,37,0.0 +14075,16,17.45,23,0.0 +14075,68,12.5,14,0.0 +14075,35,18,2,0.0 +14075,27,43.9,3,0.0 +14075,32,32,43,0.0 +14075,64,33.25,36,0.0 +14075,24,4.5,32,0.0 +14075,77,13,50,0.0 +14075,9,97,22,0.0 +14075,26,31.23,19,0.0 +14075,56,38,42,0.0 +14075,13,6,26,0.0 +14075,8,40,23,0.0 +14075,57,19.5,23,0.0 +14075,42,14,48,0.0 +14075,28,45.6,39,0.0 +14075,73,15,6,0.0 +14075,18,62.5,5,0.0 +14075,70,15,16,0.0 +14075,58,13.25,38,0.0 +14075,19,9.2,14,0.0 +14075,25,14,29,0.0 +14075,48,12.75,39,0.0 +14075,11,21,49,0.0 +14075,71,21.5,38,0.0 +14076,58,13.25,26,0.0 +14076,55,24,22,0.0 +14076,37,26,10,0.0 +14076,32,32,32,0.0 +14076,63,43.9,43,0.0 +14076,22,21,2,0.0 +14076,31,12.5,13,0.0 +14076,5,21.35,10,0.0 +14076,25,14,40,0.0 +14076,74,10,31,0.0 +14076,14,23.25,40,0.0 +14076,47,9.5,17,0.0 +14076,30,25.89,2,0.0 +14076,54,7.45,8,0.0 +14076,73,15,30,0.0 +14076,70,15,46,0.0 +14076,52,7,39,0.0 +14076,59,55,18,0.0 +14076,42,14,2,0.0 +14076,15,15.5,29,0.0 +14076,68,12.5,16,0.0 +14076,44,19.45,7,0.0 +14076,24,4.5,30,0.0 +14076,2,19,18,0.0 +14076,35,18,23,0.0 +14076,17,39,40,0.0 +14076,50,16.25,27,0.0 +14076,51,53,45,0.0 +14076,29,123.79,42,0.0 +14076,13,6,25,0.0 +14076,19,9.2,17,0.0 +14076,53,32.8,49,0.0 +14076,4,22,23,0.0 +14076,16,17.45,30,0.0 +14076,61,28.5,12,0.0 +14076,48,12.75,42,0.0 +14076,39,18,11,0.0 +14076,56,38,15,0.0 +14076,27,43.9,4,0.0 +14076,7,30,6,0.0 +14076,65,21.05,40,0.0 +14076,20,81,35,0.0 +14076,77,13,1,0.0 +14076,66,17,46,0.0 +14076,43,46,43,0.0 +14076,69,36,25,0.0 +14076,26,31.23,30,0.0 +14076,21,10,9,0.0 +14076,10,31,50,0.0 +14076,33,2.5,39,0.0 +14076,57,19.5,28,0.0 +14076,62,49.3,4,0.0 +14076,28,45.6,28,0.0 +14076,36,19,48,0.0 +14076,45,9.5,3,0.0 +14076,34,14,11,0.0 +14076,6,25,28,0.0 +14076,1,18,19,0.0 +14076,71,21.5,8,0.0 +14076,12,38,24,0.0 +14076,23,9,39,0.0 +14076,75,7.75,35,0.0 +14076,8,40,18,0.0 +14076,60,34,24,0.0 +14076,11,21,43,0.0 +14076,64,33.25,5,0.0 +14076,76,18,39,0.0 +14076,40,18.4,43,0.0 +14076,67,14,39,0.0 +14076,49,20,28,0.0 +14076,3,10,39,0.0 +14076,9,97,2,0.0 +14077,7,30,22,0.0 +14077,3,10,32,0.0 +14077,54,7.45,3,0.0 +14077,31,12.5,36,0.0 +14077,32,32,4,0.0 +14077,6,25,10,0.0 +14077,48,12.75,7,0.0 +14077,12,38,46,0.0 +14077,37,26,3,0.0 +14077,73,15,23,0.0 +14077,2,19,43,0.0 +14077,55,24,32,0.0 +14077,46,12,25,0.0 +14077,51,53,21,0.0 +14077,66,17,17,0.0 +14077,21,10,11,0.0 +14077,23,9,28,0.0 +14077,9,97,33,0.0 +14077,20,81,32,0.0 +14077,61,28.5,43,0.0 +14077,5,21.35,16,0.0 +14077,47,9.5,28,0.0 +14077,30,25.89,15,0.0 +14077,59,55,5,0.0 +14077,62,49.3,45,0.0 +14077,29,123.79,48,0.0 +14077,41,9.65,44,0.0 +14077,63,43.9,3,0.0 +14077,69,36,2,0.0 +14077,14,23.25,32,0.0 +14077,13,6,50,0.0 +14077,58,13.25,40,0.0 +14077,16,17.45,29,0.0 +14077,67,14,44,0.0 +14077,17,39,40,0.0 +14077,70,15,49,0.0 +14077,49,20,4,0.0 +14077,65,21.05,33,0.0 +14077,8,40,35,0.0 +14077,56,38,10,0.0 +14077,25,14,6,0.0 +14077,71,21.5,13,0.0 +14077,22,21,37,0.0 +14077,45,9.5,20,0.0 +14077,1,18,28,0.0 +14077,44,19.45,44,0.0 +14077,39,18,6,0.0 +14078,29,123.79,40,0.0 +14078,70,15,3,0.0 +14078,17,39,27,0.0 +14078,52,7,28,0.0 +14078,42,14,33,0.0 +14078,37,26,46,0.0 +14078,74,10,28,0.0 +14078,35,18,10,0.0 +14078,26,31.23,44,0.0 +14078,76,18,24,0.0 +14078,31,12.5,25,0.0 +14078,51,53,11,0.0 +14078,4,22,31,0.0 +14078,53,32.8,47,0.0 +14078,32,32,50,0.0 +14078,63,43.9,48,0.0 +14078,48,12.75,24,0.0 +14078,20,81,49,0.0 +14078,25,14,46,0.0 +14078,9,97,38,0.0 +14078,1,18,40,0.0 +14078,75,7.75,4,0.0 +14079,31,12.5,25,0.0 +14079,24,4.5,36,0.0 +14079,1,18,27,0.0 +14079,58,13.25,6,0.0 +14079,23,9,48,0.0 +14079,5,21.35,42,0.0 +14079,22,21,46,0.0 +14079,68,12.5,24,0.0 +14079,45,9.5,12,0.0 +14079,2,19,8,0.0 +14079,63,43.9,12,0.0 +14079,19,9.2,50,0.0 +14079,7,30,39,0.0 +14079,44,19.45,46,0.0 +14079,29,123.79,2,0.0 +14079,9,97,44,0.0 +14079,21,10,46,0.0 +14079,4,22,4,0.0 +14079,65,21.05,49,0.0 +14079,30,25.89,33,0.0 +14079,32,32,26,0.0 +14079,56,38,2,0.0 +14079,18,62.5,11,0.0 +14079,75,7.75,5,0.0 +14079,27,43.9,11,0.0 +14079,49,20,28,0.0 +14080,59,55,33,0.0 +14080,9,97,38,0.0 +14080,7,30,38,0.0 +14080,29,123.79,45,0.0 +14080,31,12.5,25,0.0 +14080,72,34.8,41,0.0 +14080,54,7.45,32,0.0 +14080,38,263.5,35,0.0 +14080,8,40,39,0.0 +14080,47,9.5,28,0.0 +14080,53,32.8,11,0.0 +14080,35,18,9,0.0 +14080,2,19,50,0.0 +14080,70,15,44,0.0 +14080,50,16.25,22,0.0 +14080,13,6,35,0.0 +14080,14,23.25,4,0.0 +14080,32,32,24,0.0 +14080,28,45.6,47,0.0 +14080,75,7.75,25,0.0 +14080,66,17,10,0.0 +14080,61,28.5,16,0.0 +14080,51,53,8,0.0 +14080,62,49.3,21,0.0 +14080,68,12.5,23,0.0 +14080,26,31.23,27,0.0 +14080,55,24,17,0.0 +14080,76,18,23,0.0 +14080,64,33.25,29,0.0 +14080,60,34,37,0.0 +14080,41,9.65,23,0.0 +14080,45,9.5,28,0.0 +14080,58,13.25,3,0.0 +14080,46,12,23,0.0 +14080,57,19.5,48,0.0 +14080,18,62.5,31,0.0 +14080,48,12.75,33,0.0 +14080,21,10,7,0.0 +14080,77,13,13,0.0 +14080,27,43.9,1,0.0 +14080,74,10,28,0.0 +14080,24,4.5,21,0.0 +14080,33,2.5,48,0.0 +14080,5,21.35,48,0.0 +14080,39,18,27,0.0 +14080,40,18.4,30,0.0 +14080,16,17.45,32,0.0 +14080,11,21,13,0.0 +14080,30,25.89,5,0.0 +14080,10,31,2,0.0 +14080,19,9.2,49,0.0 +14080,36,19,3,0.0 +14080,44,19.45,6,0.0 +14080,52,7,40,0.0 +14080,71,21.5,31,0.0 +14080,15,15.5,36,0.0 +14080,69,36,31,0.0 +14080,22,21,48,0.0 +14081,26,31.23,13,0.0 +14081,54,7.45,29,0.0 +14081,24,4.5,37,0.0 +14081,1,18,41,0.0 +14081,77,13,18,0.0 +14081,66,17,36,0.0 +14081,7,30,23,0.0 +14081,8,40,47,0.0 +14081,61,28.5,15,0.0 +14081,37,26,49,0.0 +14081,76,18,8,0.0 +14081,39,18,14,0.0 +14081,29,123.79,7,0.0 +14081,45,9.5,13,0.0 +14081,25,14,23,0.0 +14081,5,21.35,39,0.0 +14081,35,18,16,0.0 +14081,60,34,24,0.0 +14081,69,36,23,0.0 +14081,4,22,5,0.0 +14081,68,12.5,20,0.0 +14081,56,38,20,0.0 +14081,36,19,12,0.0 +14081,62,49.3,21,0.0 +14081,59,55,5,0.0 +14081,50,16.25,45,0.0 +14081,55,24,19,0.0 +14081,17,39,38,0.0 +14081,47,9.5,13,0.0 +14081,57,19.5,36,0.0 +14081,19,9.2,14,0.0 +14081,72,34.8,21,0.0 +14081,20,81,27,0.0 +14081,14,23.25,2,0.0 +14081,70,15,44,0.0 +14081,63,43.9,37,0.0 +14081,33,2.5,42,0.0 +14081,15,15.5,15,0.0 +14081,30,25.89,8,0.0 +14081,40,18.4,23,0.0 +14081,65,21.05,19,0.0 +14081,51,53,14,0.0 +14081,18,62.5,25,0.0 +14081,32,32,1,0.0 +14081,21,10,26,0.0 +14081,42,14,25,0.0 +14081,43,46,42,0.0 +14081,28,45.6,9,0.0 +14081,58,13.25,32,0.0 +14081,64,33.25,4,0.0 +14081,16,17.45,15,0.0 +14081,44,19.45,30,0.0 +14081,22,21,49,0.0 +14081,31,12.5,16,0.0 +14081,3,10,29,0.0 +14081,9,97,4,0.0 +14081,48,12.75,37,0.0 +14081,12,38,42,0.0 +14081,41,9.65,40,0.0 +14081,10,31,21,0.0 +14081,53,32.8,48,0.0 +14081,67,14,46,0.0 +14081,73,15,34,0.0 +14081,2,19,39,0.0 +14081,11,21,32,0.0 +14081,71,21.5,8,0.0 +14081,34,14,42,0.0 +14081,23,9,39,0.0 +14081,75,7.75,37,0.0 +14081,27,43.9,39,0.0 +14081,6,25,25,0.0 +14081,52,7,46,0.0 +14081,49,20,36,0.0 +14081,74,10,3,0.0 +14081,13,6,9,0.0 +14082,64,33.25,19,0.0 +14082,16,17.45,17,0.0 +14082,39,18,38,0.0 +14082,29,123.79,48,0.0 +14082,35,18,13,0.0 +14082,9,97,10,0.0 +14082,70,15,40,0.0 +14082,57,19.5,32,0.0 +14082,46,12,7,0.0 +14082,1,18,30,0.0 +14082,66,17,44,0.0 +14082,13,6,34,0.0 +14082,12,38,8,0.0 +14082,20,81,14,0.0 +14082,55,24,5,0.0 +14082,5,21.35,7,0.0 +14082,73,15,11,0.0 +14082,27,43.9,6,0.0 +14082,11,21,46,0.0 +14082,31,12.5,26,0.0 +14082,40,18.4,6,0.0 +14082,2,19,41,0.0 +14082,18,62.5,24,0.0 +14082,59,55,39,0.0 +14082,22,21,12,0.0 +14082,48,12.75,33,0.0 +14082,60,34,45,0.0 +14082,42,14,16,0.0 +14082,53,32.8,18,0.0 +14082,23,9,44,0.0 +14082,72,34.8,41,0.0 +14082,50,16.25,37,0.0 +14082,45,9.5,13,0.0 +14082,71,21.5,5,0.0 +14082,8,40,3,0.0 +14082,54,7.45,28,0.0 +14082,10,31,24,0.0 +14082,14,23.25,1,0.0 +14082,36,19,25,0.0 +14082,69,36,1,0.0 +14082,34,14,1,0.0 +14082,49,20,17,0.0 +14082,58,13.25,4,0.0 +14082,30,25.89,44,0.0 +14082,74,10,43,0.0 +14082,3,10,20,0.0 +14082,44,19.45,30,0.0 +14082,63,43.9,9,0.0 +14082,19,9.2,40,0.0 +14082,32,32,18,0.0 +14082,51,53,31,0.0 +14082,67,14,20,0.0 +14082,7,30,38,0.0 +14082,21,10,27,0.0 +14082,33,2.5,7,0.0 +14082,25,14,19,0.0 +14082,77,13,49,0.0 +14082,28,45.6,22,0.0 +14083,51,53,34,0.0 +14083,47,9.5,9,0.0 +14083,64,33.25,43,0.0 +14083,39,18,37,0.0 +14083,29,123.79,41,0.0 +14083,19,9.2,32,0.0 +14083,5,21.35,38,0.0 +14083,6,25,5,0.0 +14083,27,43.9,50,0.0 +14083,71,21.5,21,0.0 +14083,70,15,35,0.0 +14083,66,17,36,0.0 +14083,31,12.5,34,0.0 +14083,34,14,30,0.0 +14083,59,55,15,0.0 +14083,18,62.5,22,0.0 +14083,65,21.05,24,0.0 +14083,58,13.25,17,0.0 +14083,55,24,25,0.0 +14083,60,34,1,0.0 +14083,61,28.5,7,0.0 +14083,1,18,37,0.0 +14083,33,2.5,28,0.0 +14083,3,10,40,0.0 +14083,35,18,48,0.0 +14083,15,15.5,14,0.0 +14083,10,31,39,0.0 +14083,9,97,14,0.0 +14083,24,4.5,42,0.0 +14083,32,32,26,0.0 +14083,77,13,11,0.0 +14083,25,14,30,0.0 +14083,72,34.8,34,0.0 +14083,52,7,14,0.0 +14083,17,39,37,0.0 +14083,68,12.5,19,0.0 +14083,76,18,23,0.0 +14083,16,17.45,6,0.0 +14083,75,7.75,36,0.0 +14083,42,14,27,0.0 +14083,26,31.23,50,0.0 +14083,21,10,18,0.0 +14083,12,38,31,0.0 +14083,41,9.65,10,0.0 +14083,44,19.45,18,0.0 +14083,37,26,19,0.0 +14083,4,22,1,0.0 +14083,48,12.75,17,0.0 +14083,46,12,31,0.0 +14084,57,19.5,27,0.0 +14084,72,34.8,40,0.0 +14084,3,10,25,0.0 +14084,17,39,15,0.0 +14084,35,18,40,0.0 +14084,24,4.5,6,0.0 +14084,30,25.89,26,0.0 +14084,7,30,28,0.0 +14084,52,7,42,0.0 +14084,62,49.3,50,0.0 +14084,58,13.25,41,0.0 +14084,31,12.5,4,0.0 +14084,59,55,20,0.0 +14084,42,14,11,0.0 +14084,73,15,36,0.0 +14084,36,19,38,0.0 +14084,40,18.4,49,0.0 +14084,11,21,2,0.0 +14084,22,21,1,0.0 +14084,64,33.25,30,0.0 +14084,76,18,11,0.0 +14084,71,21.5,24,0.0 +14084,46,12,16,0.0 +14084,33,2.5,24,0.0 +14084,67,14,19,0.0 +14084,15,15.5,9,0.0 +14084,51,53,9,0.0 +14084,12,38,19,0.0 +14084,50,16.25,37,0.0 +14084,61,28.5,17,0.0 +14084,63,43.9,18,0.0 +14084,1,18,38,0.0 +14084,45,9.5,14,0.0 +14084,39,18,46,0.0 +14084,70,15,46,0.0 +14084,60,34,32,0.0 +14084,5,21.35,50,0.0 +14084,37,26,40,0.0 +14084,74,10,2,0.0 +14084,13,6,47,0.0 +14084,20,81,26,0.0 +14084,21,10,10,0.0 +14084,53,32.8,47,0.0 +14084,65,21.05,27,0.0 +14084,25,14,25,0.0 +14084,18,62.5,12,0.0 +14084,48,12.75,42,0.0 +14084,19,9.2,15,0.0 +14084,26,31.23,12,0.0 +14084,9,97,32,0.0 +14084,54,7.45,43,0.0 +14084,4,22,49,0.0 +14084,8,40,17,0.0 +14084,2,19,41,0.0 +14084,34,14,34,0.0 +14085,20,81,31,0.0 +14085,50,16.25,10,0.0 +14085,17,39,36,0.0 +14085,2,19,28,0.0 +14085,14,23.25,36,0.0 +14085,15,15.5,9,0.0 +14085,52,7,4,0.0 +14085,63,43.9,10,0.0 +14085,12,38,22,0.0 +14085,68,12.5,41,0.0 +14085,35,18,48,0.0 +14085,13,6,25,0.0 +14085,76,18,42,0.0 +14085,74,10,39,0.0 +14085,51,53,23,0.0 +14085,34,14,19,0.0 +14085,4,22,10,0.0 +14085,18,62.5,23,0.0 +14085,58,13.25,24,0.0 +14085,41,9.65,10,0.0 +14085,27,43.9,11,0.0 +14085,53,32.8,30,0.0 +14085,72,34.8,41,0.0 +14085,3,10,4,0.0 +14085,5,21.35,14,0.0 +14085,26,31.23,8,0.0 +14085,62,49.3,41,0.0 +14085,45,9.5,6,0.0 +14085,8,40,33,0.0 +14085,69,36,29,0.0 +14085,38,263.5,44,0.0 +14085,77,13,14,0.0 +14085,29,123.79,2,0.0 +14085,64,33.25,28,0.0 +14085,71,21.5,12,0.0 +14085,60,34,3,0.0 +14085,42,14,8,0.0 +14085,36,19,28,0.0 +14085,11,21,13,0.0 +14085,33,2.5,39,0.0 +14085,40,18.4,5,0.0 +14085,37,26,46,0.0 +14085,47,9.5,24,0.0 +14085,7,30,29,0.0 +14085,21,10,4,0.0 +14085,56,38,47,0.0 +14085,70,15,39,0.0 +14085,44,19.45,25,0.0 +14085,54,7.45,27,0.0 +14085,25,14,13,0.0 +14085,55,24,36,0.0 +14085,48,12.75,18,0.0 +14085,31,12.5,3,0.0 +14085,32,32,39,0.0 +14085,75,7.75,25,0.0 +14085,67,14,31,0.0 +14085,66,17,35,0.0 +14085,49,20,18,0.0 +14086,74,10,35,0.0 +14086,34,14,45,0.0 +14086,37,26,33,0.0 +14086,77,13,35,0.0 +14086,33,2.5,19,0.0 +14086,16,17.45,16,0.0 +14086,38,263.5,44,0.0 +14086,31,12.5,23,0.0 +14086,28,45.6,45,0.0 +14086,50,16.25,20,0.0 +14086,17,39,46,0.0 +14086,53,32.8,22,0.0 +14086,59,55,20,0.0 +14086,27,43.9,27,0.0 +14086,40,18.4,21,0.0 +14086,35,18,20,0.0 +14086,54,7.45,24,0.0 +14086,66,17,35,0.0 +14086,43,46,15,0.0 +14086,12,38,11,0.0 +14086,49,20,33,0.0 +14086,45,9.5,33,0.0 +14086,48,12.75,46,0.0 +14086,30,25.89,27,0.0 +14086,23,9,5,0.0 +14086,13,6,22,0.0 +14086,63,43.9,50,0.0 +14086,51,53,22,0.0 +14086,32,32,13,0.0 +14086,2,19,22,0.0 +14086,72,34.8,48,0.0 +14086,42,14,11,0.0 +14086,4,22,14,0.0 +14086,25,14,14,0.0 +14086,65,21.05,15,0.0 +14086,75,7.75,25,0.0 +14086,62,49.3,29,0.0 +14086,70,15,4,0.0 +14086,18,62.5,19,0.0 +14086,8,40,11,0.0 +14086,6,25,42,0.0 +14086,55,24,27,0.0 +14086,36,19,35,0.0 +14086,22,21,15,0.0 +14086,46,12,17,0.0 +14086,39,18,12,0.0 +14086,56,38,15,0.0 +14087,75,7.75,42,0.0 +14087,63,43.9,33,0.0 +14087,24,4.5,26,0.0 +14087,53,32.8,4,0.0 +14087,64,33.25,9,0.0 +14087,20,81,18,0.0 +14087,76,18,34,0.0 +14087,51,53,24,0.0 +14087,34,14,27,0.0 +14087,23,9,22,0.0 +14087,7,30,27,0.0 +14087,72,34.8,48,0.0 +14087,69,36,41,0.0 +14087,45,9.5,36,0.0 +14087,67,14,27,0.0 +14087,25,14,7,0.0 +14087,9,97,42,0.0 +14087,57,19.5,33,0.0 +14087,11,21,24,0.0 +14087,19,9.2,24,0.0 +14087,1,18,19,0.0 +14087,17,39,14,0.0 +14087,12,38,45,0.0 +14087,73,15,46,0.0 +14087,37,26,47,0.0 +14088,54,7.45,31,0.0 +14088,38,263.5,28,0.0 +14088,3,10,15,0.0 +14088,18,62.5,3,0.0 +14088,50,16.25,7,0.0 +14088,62,49.3,45,0.0 +14088,22,21,3,0.0 +14088,6,25,22,0.0 +14088,15,15.5,46,0.0 +14088,7,30,31,0.0 +14088,33,2.5,33,0.0 +14088,37,26,38,0.0 +14088,43,46,44,0.0 +14088,20,81,42,0.0 +14088,31,12.5,32,0.0 +14088,12,38,25,0.0 +14088,71,21.5,42,0.0 +14088,59,55,26,0.0 +14088,1,18,38,0.0 +14088,46,12,31,0.0 +14088,76,18,32,0.0 +14088,48,12.75,1,0.0 +14088,60,34,38,0.0 +14088,42,14,36,0.0 +14088,11,21,27,0.0 +14088,75,7.75,24,0.0 +14088,45,9.5,16,0.0 +14088,24,4.5,37,0.0 +14088,68,12.5,7,0.0 +14088,72,34.8,14,0.0 +14088,34,14,26,0.0 +14088,10,31,27,0.0 +14088,55,24,35,0.0 +14088,5,21.35,22,0.0 +14088,64,33.25,21,0.0 +14088,21,10,28,0.0 +14088,66,17,29,0.0 +14088,8,40,8,0.0 +14088,9,97,35,0.0 +14088,36,19,4,0.0 +14088,61,28.5,28,0.0 +14088,17,39,9,0.0 +14088,70,15,13,0.0 +14088,35,18,29,0.0 +14088,39,18,35,0.0 +14088,30,25.89,10,0.0 +14088,73,15,17,0.0 +14088,25,14,26,0.0 +14088,56,38,42,0.0 +14088,4,22,42,0.0 +14088,63,43.9,47,0.0 +14088,41,9.65,46,0.0 +14088,44,19.45,48,0.0 +14088,65,21.05,5,0.0 +14088,57,19.5,34,0.0 +14088,26,31.23,42,0.0 +14088,23,9,49,0.0 +14088,74,10,24,0.0 +14088,67,14,3,0.0 +14088,28,45.6,42,0.0 +14088,16,17.45,19,0.0 +14088,29,123.79,35,0.0 +14088,51,53,24,0.0 +14089,8,40,46,0.0 +14089,38,263.5,42,0.0 +14089,10,31,15,0.0 +14089,12,38,3,0.0 +14089,41,9.65,39,0.0 +14089,50,16.25,25,0.0 +14089,18,62.5,29,0.0 +14089,45,9.5,49,0.0 +14089,48,12.75,38,0.0 +14089,23,9,40,0.0 +14089,28,45.6,29,0.0 +14089,33,2.5,13,0.0 +14089,62,49.3,21,0.0 +14089,44,19.45,12,0.0 +14089,13,6,45,0.0 +14089,63,43.9,34,0.0 +14089,67,14,32,0.0 +14089,61,28.5,40,0.0 +14089,49,20,32,0.0 +14089,56,38,33,0.0 +14089,60,34,48,0.0 +14089,57,19.5,45,0.0 +14089,24,4.5,29,0.0 +14089,14,23.25,23,0.0 +14089,5,21.35,45,0.0 +14089,9,97,39,0.0 +14089,26,31.23,22,0.0 +14089,22,21,42,0.0 +14089,51,53,26,0.0 +14089,69,36,14,0.0 +14089,71,21.5,37,0.0 +14089,55,24,46,0.0 +14089,30,25.89,31,0.0 +14089,58,13.25,37,0.0 +14089,29,123.79,16,0.0 +14089,6,25,40,0.0 +14089,53,32.8,47,0.0 +14089,42,14,32,0.0 +14089,16,17.45,3,0.0 +14089,66,17,48,0.0 +14089,64,33.25,7,0.0 +14089,2,19,33,0.0 +14089,25,14,24,0.0 +14089,36,19,17,0.0 +14089,59,55,39,0.0 +14089,31,12.5,16,0.0 +14089,7,30,38,0.0 +14089,35,18,2,0.0 +14089,21,10,45,0.0 +14089,39,18,37,0.0 +14089,73,15,29,0.0 +14089,75,7.75,41,0.0 +14089,65,21.05,48,0.0 +14089,46,12,11,0.0 +14089,27,43.9,9,0.0 +14089,47,9.5,15,0.0 +14089,3,10,24,0.0 +14089,1,18,29,0.0 +14089,74,10,50,0.0 +14089,68,12.5,3,0.0 +14089,15,15.5,14,0.0 +14089,52,7,46,0.0 +14089,40,18.4,33,0.0 +14089,77,13,47,0.0 +14089,4,22,44,0.0 +14089,11,21,29,0.0 +14089,34,14,38,0.0 +14089,76,18,7,0.0 +14089,32,32,35,0.0 +14089,20,81,13,0.0 +14089,19,9.2,1,0.0 +14089,54,7.45,10,0.0 +14089,37,26,2,0.0 +14090,41,9.65,41,0.0 +14090,30,25.89,11,0.0 +14090,59,55,32,0.0 +14090,40,18.4,30,0.0 +14090,36,19,27,0.0 +14090,75,7.75,27,0.0 +14090,13,6,18,0.0 +14090,28,45.6,47,0.0 +14090,38,263.5,17,0.0 +14090,32,32,15,0.0 +14090,23,9,32,0.0 +14091,51,53,38,0.0 +14091,63,43.9,17,0.0 +14091,13,6,18,0.0 +14091,1,18,33,0.0 +14091,31,12.5,15,0.0 +14091,28,45.6,4,0.0 +14091,26,31.23,32,0.0 +14091,33,2.5,13,0.0 +14091,77,13,35,0.0 +14091,72,34.8,49,0.0 +14091,39,18,30,0.0 +14091,68,12.5,34,0.0 +14091,32,32,9,0.0 +14091,59,55,33,0.0 +14091,2,19,46,0.0 +14091,22,21,6,0.0 +14091,3,10,49,0.0 +14091,75,7.75,23,0.0 +14091,18,62.5,12,0.0 +14091,49,20,49,0.0 +14091,69,36,42,0.0 +14091,56,38,6,0.0 +14091,23,9,1,0.0 +14091,30,25.89,27,0.0 +14091,40,18.4,32,0.0 +14091,16,17.45,18,0.0 +14091,44,19.45,17,0.0 +14091,25,14,38,0.0 +14091,19,9.2,4,0.0 +14091,15,15.5,40,0.0 +14091,64,33.25,38,0.0 +14091,62,49.3,37,0.0 +14092,77,13,33,0.0 +14092,31,12.5,47,0.0 +14092,72,34.8,26,0.0 +14092,12,38,34,0.0 +14092,28,45.6,32,0.0 +14092,46,12,44,0.0 +14092,66,17,38,0.0 +14092,33,2.5,41,0.0 +14092,10,31,11,0.0 +14092,17,39,4,0.0 +14092,15,15.5,26,0.0 +14092,22,21,32,0.0 +14092,44,19.45,19,0.0 +14092,64,33.25,23,0.0 +14092,5,21.35,21,0.0 +14092,60,34,48,0.0 +14092,8,40,25,0.0 +14092,27,43.9,4,0.0 +14092,67,14,42,0.0 +14092,49,20,33,0.0 +14092,14,23.25,2,0.0 +14092,48,12.75,12,0.0 +14092,65,21.05,24,0.0 +14092,68,12.5,6,0.0 +14092,23,9,40,0.0 +14092,26,31.23,10,0.0 +14092,38,263.5,27,0.0 +14092,37,26,26,0.0 +14092,1,18,4,0.0 +14092,32,32,31,0.0 +14092,73,15,30,0.0 +14092,35,18,18,0.0 +14092,53,32.8,30,0.0 +14092,59,55,28,0.0 +14092,42,14,21,0.0 +14092,55,24,1,0.0 +14092,4,22,36,0.0 +14092,61,28.5,42,0.0 +14092,75,7.75,2,0.0 +14092,20,81,12,0.0 +14092,21,10,11,0.0 +14092,29,123.79,42,0.0 +14092,56,38,16,0.0 +14092,39,18,9,0.0 +14092,2,19,33,0.0 +14092,45,9.5,15,0.0 +14092,13,6,28,0.0 +14092,50,16.25,30,0.0 +14092,30,25.89,47,0.0 +14092,9,97,24,0.0 +14092,16,17.45,3,0.0 +14092,3,10,8,0.0 +14092,11,21,20,0.0 +14092,6,25,12,0.0 +14092,74,10,41,0.0 +14092,69,36,32,0.0 +14092,24,4.5,34,0.0 +14092,58,13.25,10,0.0 +14092,76,18,11,0.0 +14093,41,9.65,5,0.0 +14093,38,263.5,37,0.0 +14093,47,9.5,5,0.0 +14093,22,21,4,0.0 +14093,3,10,12,0.0 +14093,63,43.9,6,0.0 +14093,33,2.5,47,0.0 +14093,23,9,43,0.0 +14093,8,40,45,0.0 +14093,67,14,21,0.0 +14093,28,45.6,27,0.0 +14093,42,14,48,0.0 +14093,61,28.5,38,0.0 +14093,10,31,40,0.0 +14093,75,7.75,29,0.0 +14093,1,18,30,0.0 +14093,43,46,35,0.0 +14093,21,10,28,0.0 +14093,45,9.5,50,0.0 +14093,40,18.4,46,0.0 +14093,5,21.35,36,0.0 +14093,12,38,17,0.0 +14093,70,15,45,0.0 +14093,74,10,35,0.0 +14093,76,18,14,0.0 +14093,48,12.75,46,0.0 +14093,65,21.05,7,0.0 +14093,25,14,3,0.0 +14093,7,30,10,0.0 +14093,11,21,28,0.0 +14093,73,15,6,0.0 +14093,27,43.9,24,0.0 +14093,54,7.45,25,0.0 +14093,50,16.25,33,0.0 +14093,64,33.25,21,0.0 +14093,18,62.5,39,0.0 +14093,62,49.3,45,0.0 +14093,19,9.2,25,0.0 +14093,39,18,16,0.0 +14093,15,15.5,5,0.0 +14093,77,13,40,0.0 +14093,56,38,7,0.0 +14093,44,19.45,13,0.0 +14093,69,36,24,0.0 +14093,34,14,33,0.0 +14093,16,17.45,28,0.0 +14093,53,32.8,18,0.0 +14093,58,13.25,14,0.0 +14093,36,19,29,0.0 +14093,30,25.89,47,0.0 +14093,32,32,35,0.0 +14093,72,34.8,35,0.0 +14093,60,34,34,0.0 +14093,13,6,21,0.0 +14093,2,19,9,0.0 +14093,35,18,16,0.0 +14093,55,24,6,0.0 +14094,52,7,44,0.0 +14094,11,21,10,0.0 +14094,51,53,15,0.0 +14094,26,31.23,46,0.0 +14094,40,18.4,2,0.0 +14094,66,17,22,0.0 +14094,2,19,19,0.0 +14094,69,36,7,0.0 +14094,9,97,21,0.0 +14094,30,25.89,12,0.0 +14094,3,10,4,0.0 +14094,16,17.45,49,0.0 +14094,48,12.75,43,0.0 +14094,45,9.5,24,0.0 +14094,42,14,13,0.0 +14094,55,24,20,0.0 +14094,64,33.25,2,0.0 +14094,27,43.9,18,0.0 +14094,18,62.5,49,0.0 +14094,73,15,14,0.0 +14094,57,19.5,30,0.0 +14094,13,6,22,0.0 +14094,33,2.5,16,0.0 +14094,14,23.25,12,0.0 +14094,21,10,3,0.0 +14094,47,9.5,44,0.0 +14094,38,263.5,35,0.0 +14094,43,46,39,0.0 +14094,25,14,20,0.0 +14094,62,49.3,48,0.0 +14094,28,45.6,46,0.0 +14094,41,9.65,20,0.0 +14094,37,26,45,0.0 +14094,74,10,44,0.0 +14094,71,21.5,2,0.0 +14094,46,12,47,0.0 +14094,39,18,29,0.0 +14094,6,25,13,0.0 +14094,7,30,42,0.0 +14094,1,18,15,0.0 +14094,44,19.45,37,0.0 +14094,34,14,46,0.0 +14094,4,22,50,0.0 +14094,53,32.8,48,0.0 +14094,67,14,45,0.0 +14094,31,12.5,3,0.0 +14094,35,18,6,0.0 +14094,49,20,18,0.0 +14094,19,9.2,43,0.0 +14094,50,16.25,36,0.0 +14094,63,43.9,11,0.0 +14094,12,38,21,0.0 +14094,70,15,9,0.0 +14094,29,123.79,42,0.0 +14094,32,32,4,0.0 +14094,22,21,7,0.0 +14094,59,55,19,0.0 +14094,68,12.5,26,0.0 +14094,65,21.05,11,0.0 +14094,75,7.75,13,0.0 +14094,58,13.25,38,0.0 +14094,60,34,15,0.0 +14094,24,4.5,36,0.0 +14094,77,13,4,0.0 +14094,76,18,5,0.0 +14094,20,81,27,0.0 +14094,36,19,45,0.0 +14094,17,39,38,0.0 +14095,17,39,48,0.0 +14095,53,32.8,50,0.0 +14095,46,12,43,0.0 +14095,2,19,34,0.0 +14095,64,33.25,29,0.0 +14095,15,15.5,7,0.0 +14095,55,24,11,0.0 +14095,44,19.45,14,0.0 +14095,21,10,45,0.0 +14095,47,9.5,47,0.0 +14095,66,17,47,0.0 +14095,29,123.79,27,0.0 +14095,58,13.25,18,0.0 +14095,14,23.25,40,0.0 +14095,33,2.5,39,0.0 +14095,16,17.45,26,0.0 +14095,56,38,43,0.0 +14095,37,26,11,0.0 +14095,23,9,33,0.0 +14095,68,12.5,3,0.0 +14095,57,19.5,43,0.0 +14095,76,18,40,0.0 +14095,5,21.35,8,0.0 +14095,77,13,42,0.0 +14095,60,34,30,0.0 +14095,36,19,6,0.0 +14095,73,15,45,0.0 +14095,39,18,10,0.0 +14095,31,12.5,35,0.0 +14095,32,32,39,0.0 +14095,26,31.23,22,0.0 +14095,63,43.9,42,0.0 +14095,67,14,23,0.0 +14095,43,46,7,0.0 +14095,10,31,1,0.0 +14095,41,9.65,39,0.0 +14095,25,14,44,0.0 +14095,8,40,32,0.0 +14095,6,25,33,0.0 +14095,13,6,30,0.0 +14095,20,81,20,0.0 +14095,7,30,8,0.0 +14095,4,22,44,0.0 +14095,50,16.25,43,0.0 +14095,62,49.3,21,0.0 +14095,59,55,24,0.0 +14095,69,36,23,0.0 +14095,54,7.45,6,0.0 +14095,42,14,10,0.0 +14095,28,45.6,8,0.0 +14095,74,10,36,0.0 +14095,34,14,20,0.0 +14095,24,4.5,19,0.0 +14095,19,9.2,3,0.0 +14095,51,53,8,0.0 +14095,61,28.5,11,0.0 +14095,1,18,44,0.0 +14095,35,18,17,0.0 +14095,70,15,2,0.0 +14095,71,21.5,39,0.0 +14095,65,21.05,32,0.0 +14095,52,7,9,0.0 +14095,72,34.8,5,0.0 +14095,12,38,28,0.0 +14095,45,9.5,47,0.0 +14095,18,62.5,16,0.0 +14095,48,12.75,12,0.0 +14095,11,21,28,0.0 +14095,3,10,29,0.0 +14095,38,263.5,24,0.0 +14095,22,21,41,0.0 +14096,7,30,5,0.0 +14096,30,25.89,17,0.0 +14096,49,20,26,0.0 +14096,47,9.5,4,0.0 +14096,60,34,48,0.0 +14096,1,18,1,0.0 +14096,39,18,43,0.0 +14096,77,13,50,0.0 +14096,72,34.8,41,0.0 +14096,48,12.75,21,0.0 +14096,26,31.23,8,0.0 +14096,57,19.5,1,0.0 +14096,73,15,2,0.0 +14096,20,81,48,0.0 +14096,65,21.05,36,0.0 +14096,71,21.5,16,0.0 +14096,62,49.3,41,0.0 +14096,27,43.9,35,0.0 +14096,12,38,31,0.0 +14096,16,17.45,7,0.0 +14096,43,46,19,0.0 +14096,41,9.65,16,0.0 +14096,5,21.35,31,0.0 +14096,53,32.8,14,0.0 +14096,44,19.45,25,0.0 +14096,22,21,15,0.0 +14096,13,6,5,0.0 +14096,32,32,16,0.0 +14096,6,25,11,0.0 +14096,23,9,12,0.0 +14096,18,62.5,18,0.0 +14096,9,97,11,0.0 +14096,24,4.5,35,0.0 +14096,37,26,45,0.0 +14096,58,13.25,21,0.0 +14096,28,45.6,35,0.0 +14096,75,7.75,29,0.0 +14096,8,40,36,0.0 +14097,26,31.23,28,0.0 +14097,39,18,43,0.0 +14097,27,43.9,18,0.0 +14097,6,25,32,0.0 +14097,28,45.6,36,0.0 +14097,8,40,29,0.0 +14097,14,23.25,31,0.0 +14097,62,49.3,38,0.0 +14097,76,18,38,0.0 +14097,41,9.65,1,0.0 +14097,68,12.5,34,0.0 +14097,67,14,1,0.0 +14097,25,14,32,0.0 +14097,57,19.5,48,0.0 +14097,5,21.35,46,0.0 +14097,65,21.05,37,0.0 +14097,40,18.4,10,0.0 +14097,7,30,39,0.0 +14097,59,55,7,0.0 +14097,46,12,40,0.0 +14097,51,53,5,0.0 +14097,12,38,7,0.0 +14097,17,39,8,0.0 +14097,71,21.5,6,0.0 +14097,55,24,14,0.0 +14097,9,97,27,0.0 +14097,22,21,49,0.0 +14097,63,43.9,18,0.0 +14097,11,21,24,0.0 +14097,42,14,48,0.0 +14097,37,26,38,0.0 +14097,1,18,8,0.0 +14097,48,12.75,23,0.0 +14098,67,14,21,0.0 +14098,6,25,35,0.0 +14098,33,2.5,36,0.0 +14098,22,21,28,0.0 +14098,48,12.75,27,0.0 +14098,73,15,50,0.0 +14098,3,10,36,0.0 +14098,61,28.5,10,0.0 +14098,71,21.5,20,0.0 +14098,13,6,34,0.0 +14098,39,18,4,0.0 +14098,30,25.89,41,0.0 +14098,36,19,5,0.0 +14098,4,22,7,0.0 +14098,54,7.45,41,0.0 +14098,41,9.65,15,0.0 +14098,50,16.25,40,0.0 +14098,1,18,5,0.0 +14098,25,14,22,0.0 +14098,2,19,46,0.0 +14098,40,18.4,1,0.0 +14098,46,12,31,0.0 +14098,52,7,18,0.0 +14098,63,43.9,17,0.0 +14098,56,38,20,0.0 +14098,29,123.79,43,0.0 +14098,31,12.5,1,0.0 +14098,15,15.5,4,0.0 +14098,18,62.5,18,0.0 +14098,14,23.25,1,0.0 +14098,28,45.6,14,0.0 +14098,35,18,47,0.0 +14098,5,21.35,7,0.0 +14098,26,31.23,32,0.0 +14098,34,14,8,0.0 +14098,8,40,16,0.0 +14098,16,17.45,33,0.0 +14098,53,32.8,38,0.0 +14098,59,55,5,0.0 +14098,60,34,27,0.0 +14098,65,21.05,47,0.0 +14098,32,32,9,0.0 +14098,76,18,8,0.0 +14098,11,21,35,0.0 +14098,9,97,48,0.0 +14098,10,31,29,0.0 +14098,42,14,10,0.0 +14098,24,4.5,29,0.0 +14098,27,43.9,23,0.0 +14098,20,81,22,0.0 +14098,55,24,11,0.0 +14098,49,20,17,0.0 +14098,12,38,25,0.0 +14098,7,30,39,0.0 +14098,57,19.5,12,0.0 +14098,62,49.3,1,0.0 +14098,43,46,12,0.0 +14098,66,17,2,0.0 +14098,72,34.8,43,0.0 +14098,58,13.25,28,0.0 +14098,75,7.75,12,0.0 +14098,19,9.2,45,0.0 +14098,45,9.5,38,0.0 +14098,44,19.45,41,0.0 +14098,69,36,33,0.0 +14098,77,13,44,0.0 +14099,7,30,33,0.0 +14099,29,123.79,31,0.0 +14099,61,28.5,6,0.0 +14099,46,12,41,0.0 +14099,5,21.35,40,0.0 +14099,26,31.23,46,0.0 +14099,52,7,2,0.0 +14099,21,10,22,0.0 +14099,20,81,16,0.0 +14099,10,31,14,0.0 +14099,17,39,13,0.0 +14099,55,24,43,0.0 +14099,34,14,15,0.0 +14099,67,14,21,0.0 +14099,3,10,49,0.0 +14099,59,55,21,0.0 +14099,45,9.5,10,0.0 +14099,56,38,5,0.0 +14099,38,263.5,12,0.0 +14099,50,16.25,13,0.0 +14099,35,18,34,0.0 +14099,22,21,29,0.0 +14099,63,43.9,3,0.0 +14099,65,21.05,42,0.0 +14099,30,25.89,10,0.0 +14099,19,9.2,16,0.0 +14099,54,7.45,50,0.0 +14099,53,32.8,44,0.0 +14099,4,22,13,0.0 +14099,39,18,34,0.0 +14099,47,9.5,15,0.0 +14099,70,15,14,0.0 +14099,48,12.75,19,0.0 +14099,64,33.25,1,0.0 +14100,8,40,15,0.0 +14100,37,26,25,0.0 +14100,61,28.5,46,0.0 +14100,31,12.5,24,0.0 +14100,77,13,20,0.0 +14100,52,7,2,0.0 +14100,46,12,33,0.0 +14100,56,38,12,0.0 +14100,19,9.2,48,0.0 +14100,1,18,12,0.0 +14101,25,14,17,0.0 +14102,48,12.75,19,0.0 +14102,49,20,10,0.0 +14102,68,12.5,50,0.0 +14102,7,30,33,0.0 +14102,74,10,6,0.0 +14102,41,9.65,50,0.0 +14102,69,36,49,0.0 +14102,34,14,43,0.0 +14102,37,26,8,0.0 +14102,12,38,7,0.0 +14102,14,23.25,35,0.0 +14102,70,15,42,0.0 +14102,55,24,9,0.0 +14102,65,21.05,45,0.0 +14102,52,7,8,0.0 +14102,1,18,12,0.0 +14102,8,40,34,0.0 +14102,22,21,29,0.0 +14102,36,19,6,0.0 +14102,38,263.5,15,0.0 +14102,58,13.25,39,0.0 +14102,9,97,28,0.0 +14102,42,14,32,0.0 +14102,67,14,31,0.0 +14102,62,49.3,32,0.0 +14102,47,9.5,49,0.0 +14102,3,10,48,0.0 +14102,30,25.89,22,0.0 +14102,15,15.5,37,0.0 +14102,46,12,5,0.0 +14102,73,15,27,0.0 +14102,31,12.5,15,0.0 +14102,11,21,21,0.0 +14102,26,31.23,30,0.0 +14102,56,38,50,0.0 +14102,51,53,33,0.0 +14102,20,81,31,0.0 +14102,75,7.75,17,0.0 +14102,24,4.5,26,0.0 +14102,5,21.35,43,0.0 +14102,16,17.45,28,0.0 +14102,2,19,36,0.0 +14102,76,18,34,0.0 +14102,29,123.79,7,0.0 +14102,39,18,12,0.0 +14102,18,62.5,18,0.0 +14103,18,62.5,30,0.0 +14103,7,30,42,0.0 +14103,26,31.23,9,0.0 +14103,67,14,15,0.0 +14103,6,25,11,0.0 +14103,73,15,44,0.0 +14103,66,17,14,0.0 +14103,16,17.45,12,0.0 +14103,70,15,26,0.0 +14103,71,21.5,22,0.0 +14103,25,14,37,0.0 +14103,54,7.45,14,0.0 +14103,9,97,37,0.0 +14103,68,12.5,37,0.0 +14103,76,18,14,0.0 +14103,72,34.8,45,0.0 +14103,5,21.35,28,0.0 +14103,35,18,16,0.0 +14103,12,38,41,0.0 +14103,34,14,12,0.0 +14103,65,21.05,42,0.0 +14103,52,7,37,0.0 +14103,33,2.5,30,0.0 +14103,22,21,33,0.0 +14103,27,43.9,33,0.0 +14103,48,12.75,16,0.0 +14103,17,39,39,0.0 +14103,32,32,1,0.0 +14103,64,33.25,42,0.0 +14103,28,45.6,45,0.0 +14103,29,123.79,2,0.0 +14103,40,18.4,21,0.0 +14103,36,19,39,0.0 +14103,58,13.25,44,0.0 +14103,57,19.5,16,0.0 +14103,38,263.5,34,0.0 +14103,1,18,25,0.0 +14103,21,10,22,0.0 +14103,49,20,43,0.0 +14103,45,9.5,19,0.0 +14103,59,55,7,0.0 +14103,19,9.2,41,0.0 +14103,63,43.9,23,0.0 +14103,44,19.45,6,0.0 +14103,43,46,13,0.0 +14103,3,10,36,0.0 +14103,8,40,19,0.0 +14103,24,4.5,29,0.0 +14103,30,25.89,17,0.0 +14103,37,26,23,0.0 +14103,11,21,22,0.0 +14103,61,28.5,40,0.0 +14103,47,9.5,32,0.0 +14103,46,12,45,0.0 +14103,23,9,21,0.0 +14103,77,13,32,0.0 +14103,74,10,7,0.0 +14103,51,53,28,0.0 +14103,39,18,37,0.0 +14103,60,34,21,0.0 +14103,69,36,8,0.0 +14104,63,43.9,44,0.0 +14104,23,9,1,0.0 +14104,25,14,31,0.0 +14104,75,7.75,30,0.0 +14104,76,18,4,0.0 +14104,14,23.25,29,0.0 +14104,50,16.25,32,0.0 +14104,53,32.8,24,0.0 +14104,8,40,35,0.0 +14104,47,9.5,4,0.0 +14104,43,46,4,0.0 +14104,30,25.89,26,0.0 +14104,68,12.5,4,0.0 +14104,7,30,14,0.0 +14104,71,21.5,14,0.0 +14104,60,34,19,0.0 +14104,66,17,5,0.0 +14104,61,28.5,3,0.0 +14104,67,14,15,0.0 +14104,18,62.5,25,0.0 +14104,37,26,41,0.0 +14104,36,19,16,0.0 +14104,21,10,44,0.0 +14104,51,53,45,0.0 +14104,49,20,1,0.0 +14104,26,31.23,13,0.0 +14104,20,81,21,0.0 +14104,42,14,45,0.0 +14104,65,21.05,27,0.0 +14104,64,33.25,3,0.0 +14104,40,18.4,13,0.0 +14104,41,9.65,39,0.0 +14104,77,13,5,0.0 +14104,16,17.45,21,0.0 +14104,1,18,45,0.0 +14104,57,19.5,47,0.0 +14104,32,32,3,0.0 +14104,35,18,20,0.0 +14104,48,12.75,34,0.0 +14104,69,36,9,0.0 +14104,73,15,1,0.0 +14104,19,9.2,36,0.0 +14104,72,34.8,11,0.0 +14104,17,39,34,0.0 +14104,39,18,23,0.0 +14104,45,9.5,45,0.0 +14104,6,25,35,0.0 +14104,38,263.5,16,0.0 +14104,28,45.6,42,0.0 +14104,22,21,16,0.0 +14104,11,21,30,0.0 +14104,58,13.25,32,0.0 +14105,18,62.5,1,0.0 +14105,74,10,20,0.0 +14105,38,263.5,10,0.0 +14105,40,18.4,48,0.0 +14105,70,15,10,0.0 +14105,56,38,28,0.0 +14105,60,34,34,0.0 +14105,46,12,33,0.0 +14105,57,19.5,27,0.0 +14105,55,24,27,0.0 +14105,20,81,33,0.0 +14105,32,32,27,0.0 +14105,72,34.8,45,0.0 +14105,25,14,47,0.0 +14105,75,7.75,39,0.0 +14106,54,7.45,3,0.0 +14106,33,2.5,44,0.0 +14107,38,263.5,49,0.0 +14107,75,7.75,4,0.0 +14107,54,7.45,37,0.0 +14107,20,81,40,0.0 +14107,44,19.45,20,0.0 +14107,12,38,35,0.0 +14107,41,9.65,49,0.0 +14107,42,14,50,0.0 +14107,69,36,17,0.0 +14107,46,12,48,0.0 +14107,13,6,21,0.0 +14107,76,18,44,0.0 +14107,60,34,32,0.0 +14107,17,39,27,0.0 +14107,6,25,45,0.0 +14107,47,9.5,49,0.0 +14107,35,18,50,0.0 +14107,11,21,2,0.0 +14107,15,15.5,11,0.0 +14107,50,16.25,40,0.0 +14107,72,34.8,16,0.0 +14107,40,18.4,15,0.0 +14107,27,43.9,27,0.0 +14107,71,21.5,6,0.0 +14107,58,13.25,23,0.0 +14107,73,15,15,0.0 +14107,59,55,32,0.0 +14107,43,46,22,0.0 +14107,66,17,8,0.0 +14107,28,45.6,6,0.0 +14107,25,14,11,0.0 +14107,53,32.8,38,0.0 +14107,23,9,4,0.0 +14107,30,25.89,19,0.0 +14107,19,9.2,10,0.0 +14107,61,28.5,42,0.0 +14107,62,49.3,37,0.0 +14107,67,14,15,0.0 +14108,31,12.5,40,0.0 +14108,60,34,5,0.0 +14108,52,7,16,0.0 +14108,58,13.25,14,0.0 +14108,32,32,23,0.0 +14108,30,25.89,35,0.0 +14108,46,12,20,0.0 +14108,13,6,11,0.0 +14108,34,14,28,0.0 +14108,55,24,18,0.0 +14108,53,32.8,45,0.0 +14108,73,15,8,0.0 +14108,18,62.5,25,0.0 +14108,66,17,6,0.0 +14108,47,9.5,31,0.0 +14108,56,38,3,0.0 +14108,59,55,38,0.0 +14108,69,36,46,0.0 +14108,1,18,9,0.0 +14108,49,20,28,0.0 +14108,17,39,5,0.0 +14108,38,263.5,49,0.0 +14108,16,17.45,22,0.0 +14108,19,9.2,9,0.0 +14108,21,10,19,0.0 +14108,41,9.65,46,0.0 +14108,77,13,30,0.0 +14108,64,33.25,46,0.0 +14108,44,19.45,44,0.0 +14108,3,10,30,0.0 +14108,24,4.5,35,0.0 +14108,72,34.8,41,0.0 +14108,39,18,12,0.0 +14108,63,43.9,34,0.0 +14108,62,49.3,42,0.0 +14108,25,14,2,0.0 +14108,40,18.4,6,0.0 +14108,33,2.5,38,0.0 +14108,67,14,7,0.0 +14108,42,14,47,0.0 +14108,43,46,31,0.0 +14108,9,97,8,0.0 +14108,6,25,4,0.0 +14108,27,43.9,36,0.0 +14108,50,16.25,48,0.0 +14108,26,31.23,47,0.0 +14108,10,31,42,0.0 +14108,12,38,30,0.0 +14108,61,28.5,31,0.0 +14108,7,30,24,0.0 +14108,37,26,21,0.0 +14108,35,18,35,0.0 +14108,11,21,48,0.0 +14108,22,21,6,0.0 +14108,20,81,43,0.0 +14108,5,21.35,6,0.0 +14108,8,40,50,0.0 +14108,28,45.6,8,0.0 +14108,74,10,21,0.0 +14108,76,18,11,0.0 +14108,23,9,41,0.0 +14108,57,19.5,31,0.0 +14108,15,15.5,13,0.0 +14108,51,53,27,0.0 +14108,4,22,16,0.0 +14108,54,7.45,3,0.0 +14108,68,12.5,27,0.0 +14108,65,21.05,49,0.0 +14108,70,15,39,0.0 +14108,29,123.79,44,0.0 +14108,75,7.75,22,0.0 +14108,45,9.5,22,0.0 +14108,48,12.75,40,0.0 +14108,36,19,45,0.0 +14108,2,19,2,0.0 +14108,71,21.5,36,0.0 +14108,14,23.25,7,0.0 +14109,66,17,34,0.0 +14109,23,9,45,0.0 +14109,55,24,48,0.0 +14109,29,123.79,45,0.0 +14109,43,46,30,0.0 +14109,73,15,43,0.0 +14109,25,14,50,0.0 +14109,60,34,38,0.0 +14109,71,21.5,27,0.0 +14109,22,21,38,0.0 +14109,68,12.5,34,0.0 +14109,17,39,8,0.0 +14109,21,10,26,0.0 +14109,3,10,22,0.0 +14109,8,40,46,0.0 +14109,31,12.5,34,0.0 +14109,45,9.5,33,0.0 +14109,42,14,5,0.0 +14109,62,49.3,15,0.0 +14109,51,53,25,0.0 +14109,65,21.05,50,0.0 +14109,19,9.2,34,0.0 +14109,54,7.45,39,0.0 +14109,49,20,30,0.0 +14109,32,32,18,0.0 +14109,36,19,30,0.0 +14109,4,22,9,0.0 +14109,44,19.45,39,0.0 +14109,41,9.65,8,0.0 +14109,74,10,9,0.0 +14109,70,15,42,0.0 +14109,63,43.9,32,0.0 +14109,77,13,25,0.0 +14109,35,18,34,0.0 +14109,56,38,5,0.0 +14109,48,12.75,9,0.0 +14109,27,43.9,5,0.0 +14109,75,7.75,42,0.0 +14109,72,34.8,36,0.0 +14109,53,32.8,39,0.0 +14109,16,17.45,35,0.0 +14109,69,36,9,0.0 +14109,38,263.5,30,0.0 +14109,50,16.25,48,0.0 +14109,28,45.6,6,0.0 +14109,33,2.5,42,0.0 +14109,20,81,35,0.0 +14109,58,13.25,1,0.0 +14109,67,14,27,0.0 +14109,40,18.4,42,0.0 +14109,9,97,11,0.0 +14109,64,33.25,27,0.0 +14109,6,25,3,0.0 +14109,10,31,7,0.0 +14109,52,7,2,0.0 +14109,5,21.35,11,0.0 +14109,2,19,39,0.0 +14109,18,62.5,20,0.0 +14109,7,30,48,0.0 +14109,61,28.5,30,0.0 +14109,15,15.5,44,0.0 +14110,2,19,25,0.0 +14110,22,21,44,0.0 +14110,73,15,3,0.0 +14110,76,18,35,0.0 +14110,74,10,5,0.0 +14110,39,18,32,0.0 +14110,32,32,27,0.0 +14110,16,17.45,42,0.0 +14110,23,9,10,0.0 +14110,17,39,39,0.0 +14110,9,97,25,0.0 +14110,5,21.35,13,0.0 +14110,36,19,17,0.0 +14110,6,25,20,0.0 +14110,19,9.2,17,0.0 +14110,24,4.5,15,0.0 +14110,7,30,28,0.0 +14110,25,14,33,0.0 +14110,46,12,14,0.0 +14110,55,24,47,0.0 +14110,62,49.3,18,0.0 +14110,29,123.79,12,0.0 +14110,45,9.5,5,0.0 +14110,58,13.25,29,0.0 +14110,49,20,18,0.0 +14110,44,19.45,42,0.0 +14110,35,18,42,0.0 +14110,21,10,5,0.0 +14110,42,14,25,0.0 +14110,20,81,21,0.0 +14110,33,2.5,41,0.0 +14110,11,21,37,0.0 +14110,57,19.5,38,0.0 +14110,56,38,5,0.0 +14110,67,14,31,0.0 +14110,69,36,46,0.0 +14110,52,7,18,0.0 +14110,28,45.6,28,0.0 +14110,30,25.89,28,0.0 +14110,18,62.5,10,0.0 +14110,65,21.05,32,0.0 +14110,12,38,28,0.0 +14111,30,25.89,22,0.0 +14111,57,19.5,43,0.0 +14111,64,33.25,19,0.0 +14111,20,81,13,0.0 +14111,11,21,19,0.0 +14111,17,39,6,0.0 +14111,23,9,43,0.0 +14111,40,18.4,14,0.0 +14111,7,30,1,0.0 +14111,46,12,39,0.0 +14111,9,97,23,0.0 +14111,35,18,25,0.0 +14111,4,22,49,0.0 +14111,18,62.5,46,0.0 +14111,62,49.3,34,0.0 +14111,77,13,33,0.0 +14111,28,45.6,36,0.0 +14111,10,31,36,0.0 +14111,34,14,7,0.0 +14111,56,38,38,0.0 +14111,42,14,6,0.0 +14111,43,46,14,0.0 +14111,59,55,39,0.0 +14111,33,2.5,8,0.0 +14111,76,18,31,0.0 +14111,29,123.79,5,0.0 +14111,73,15,14,0.0 +14111,2,19,19,0.0 +14111,53,32.8,43,0.0 +14111,15,15.5,13,0.0 +14111,51,53,41,0.0 +14111,69,36,12,0.0 +14111,16,17.45,17,0.0 +14111,39,18,5,0.0 +14111,44,19.45,32,0.0 +14111,36,19,48,0.0 +14111,14,23.25,8,0.0 +14111,71,21.5,10,0.0 +14111,66,17,5,0.0 +14111,24,4.5,36,0.0 +14111,31,12.5,12,0.0 +14111,47,9.5,33,0.0 +14111,45,9.5,44,0.0 +14112,66,17,33,0.0 +14112,34,14,50,0.0 +14112,17,39,44,0.0 +14112,3,10,31,0.0 +14112,73,15,42,0.0 +14112,55,24,46,0.0 +14112,16,17.45,43,0.0 +14112,64,33.25,1,0.0 +14112,22,21,50,0.0 +14112,57,19.5,30,0.0 +14112,63,43.9,39,0.0 +14112,48,12.75,45,0.0 +14112,43,46,20,0.0 +14112,70,15,44,0.0 +14112,38,263.5,8,0.0 +14112,27,43.9,33,0.0 +14112,15,15.5,45,0.0 +14112,60,34,16,0.0 +14112,7,30,1,0.0 +14112,58,13.25,24,0.0 +14112,62,49.3,38,0.0 +14112,41,9.65,19,0.0 +14112,40,18.4,36,0.0 +14112,69,36,15,0.0 +14112,59,55,48,0.0 +14112,11,21,50,0.0 +14112,26,31.23,27,0.0 +14112,46,12,17,0.0 +14112,72,34.8,19,0.0 +14112,29,123.79,4,0.0 +14112,18,62.5,40,0.0 +14112,4,22,15,0.0 +14112,61,28.5,26,0.0 +14112,76,18,3,0.0 +14112,71,21.5,28,0.0 +14112,37,26,13,0.0 +14112,6,25,44,0.0 +14112,31,12.5,34,0.0 +14112,36,19,26,0.0 +14112,8,40,22,0.0 +14112,12,38,22,0.0 +14112,54,7.45,3,0.0 +14112,2,19,50,0.0 +14112,51,53,32,0.0 +14112,74,10,8,0.0 +14112,65,21.05,22,0.0 +14112,53,32.8,48,0.0 +14112,21,10,27,0.0 +14112,20,81,20,0.0 +14113,54,7.45,19,0.0 +14113,49,20,4,0.0 +14113,55,24,20,0.0 +14113,63,43.9,31,0.0 +14113,64,33.25,41,0.0 +14113,22,21,7,0.0 +14113,17,39,50,0.0 +14113,12,38,27,0.0 +14113,32,32,5,0.0 +14113,56,38,4,0.0 +14113,21,10,46,0.0 +14113,67,14,14,0.0 +14113,20,81,15,0.0 +14113,53,32.8,21,0.0 +14113,25,14,18,0.0 +14113,5,21.35,17,0.0 +14113,68,12.5,20,0.0 +14113,24,4.5,23,0.0 +14113,31,12.5,38,0.0 +14113,46,12,47,0.0 +14113,33,2.5,32,0.0 +14113,52,7,16,0.0 +14113,48,12.75,24,0.0 +14113,58,13.25,50,0.0 +14113,70,15,1,0.0 +14113,35,18,25,0.0 +14113,74,10,37,0.0 +14113,18,62.5,35,0.0 +14113,47,9.5,1,0.0 +14113,77,13,37,0.0 +14113,38,263.5,27,0.0 +14113,13,6,23,0.0 +14113,16,17.45,30,0.0 +14113,76,18,17,0.0 +14113,2,19,50,0.0 +14113,10,31,5,0.0 +14113,75,7.75,16,0.0 +14113,3,10,46,0.0 +14113,15,15.5,45,0.0 +14113,39,18,18,0.0 +14113,4,22,35,0.0 +14113,30,25.89,31,0.0 +14113,23,9,35,0.0 +14113,61,28.5,33,0.0 +14113,72,34.8,1,0.0 +14113,27,43.9,43,0.0 +14113,1,18,22,0.0 +14113,6,25,25,0.0 +14113,7,30,49,0.0 +14113,28,45.6,33,0.0 +14113,73,15,18,0.0 +14113,37,26,21,0.0 +14113,8,40,48,0.0 +14113,40,18.4,10,0.0 +14113,11,21,37,0.0 +14113,69,36,39,0.0 +14113,42,14,38,0.0 +14113,65,21.05,3,0.0 +14113,50,16.25,48,0.0 +14113,51,53,36,0.0 +14113,19,9.2,41,0.0 +14113,62,49.3,4,0.0 +14113,71,21.5,31,0.0 +14113,41,9.65,1,0.0 +14113,29,123.79,39,0.0 +14113,43,46,50,0.0 +14113,66,17,10,0.0 +14113,44,19.45,5,0.0 +14113,57,19.5,2,0.0 +14113,36,19,10,0.0 +14113,9,97,29,0.0 +14113,34,14,31,0.0 +14113,26,31.23,22,0.0 +14113,59,55,10,0.0 +14113,45,9.5,24,0.0 +14113,60,34,34,0.0 +14114,59,55,23,0.0 +14114,12,38,9,0.0 +14114,49,20,32,0.0 +14114,30,25.89,41,0.0 +14114,42,14,12,0.0 +14114,48,12.75,7,0.0 +14114,43,46,42,0.0 +14114,73,15,15,0.0 +14114,1,18,15,0.0 +14114,47,9.5,34,0.0 +14114,51,53,18,0.0 +14114,45,9.5,36,0.0 +14114,19,9.2,13,0.0 +14114,65,21.05,47,0.0 +14114,55,24,47,0.0 +14114,14,23.25,47,0.0 +14114,60,34,43,0.0 +14114,57,19.5,31,0.0 +14114,23,9,33,0.0 +14114,40,18.4,19,0.0 +14114,28,45.6,41,0.0 +14114,70,15,19,0.0 +14114,76,18,10,0.0 +14114,21,10,5,0.0 +14114,29,123.79,32,0.0 +14114,68,12.5,4,0.0 +14114,77,13,37,0.0 +14114,46,12,18,0.0 +14114,34,14,8,0.0 +14114,24,4.5,21,0.0 +14114,52,7,38,0.0 +14114,53,32.8,15,0.0 +14114,50,16.25,11,0.0 +14114,35,18,32,0.0 +14114,75,7.75,16,0.0 +14114,16,17.45,24,0.0 +14114,56,38,46,0.0 +14115,2,19,25,0.0 +14115,65,21.05,42,0.0 +14115,18,62.5,34,0.0 +14115,40,18.4,10,0.0 +14115,37,26,14,0.0 +14115,71,21.5,30,0.0 +14115,34,14,37,0.0 +14115,77,13,1,0.0 +14115,63,43.9,41,0.0 +14115,49,20,42,0.0 +14116,70,15,37,0.0 +14116,18,62.5,3,0.0 +14116,11,21,44,0.0 +14116,63,43.9,50,0.0 +14116,69,36,40,0.0 +14116,22,21,47,0.0 +14116,76,18,18,0.0 +14116,34,14,8,0.0 +14116,6,25,22,0.0 +14116,53,32.8,21,0.0 +14116,2,19,22,0.0 +14116,4,22,24,0.0 +14116,67,14,50,0.0 +14116,9,97,44,0.0 +14116,3,10,8,0.0 +14116,68,12.5,13,0.0 +14116,45,9.5,36,0.0 +14116,5,21.35,49,0.0 +14116,50,16.25,45,0.0 +14117,59,55,25,0.0 +14117,26,31.23,46,0.0 +14117,24,4.5,6,0.0 +14117,17,39,31,0.0 +14117,62,49.3,8,0.0 +14117,45,9.5,36,0.0 +14117,51,53,5,0.0 +14117,55,24,16,0.0 +14117,52,7,50,0.0 +14117,68,12.5,5,0.0 +14117,42,14,4,0.0 +14117,3,10,20,0.0 +14117,71,21.5,42,0.0 +14117,70,15,27,0.0 +14117,54,7.45,46,0.0 +14117,67,14,26,0.0 +14117,63,43.9,6,0.0 +14117,31,12.5,33,0.0 +14117,75,7.75,28,0.0 +14117,58,13.25,7,0.0 +14117,41,9.65,32,0.0 +14117,28,45.6,49,0.0 +14117,12,38,40,0.0 +14117,15,15.5,19,0.0 +14117,36,19,9,0.0 +14117,74,10,41,0.0 +14117,14,23.25,8,0.0 +14117,33,2.5,31,0.0 +14117,50,16.25,5,0.0 +14117,44,19.45,34,0.0 +14117,18,62.5,35,0.0 +14117,66,17,33,0.0 +14117,57,19.5,20,0.0 +14117,13,6,35,0.0 +14117,47,9.5,48,0.0 +14117,19,9.2,18,0.0 +14117,56,38,5,0.0 +14117,43,46,3,0.0 +14117,20,81,37,0.0 +14117,25,14,22,0.0 +14117,49,20,26,0.0 +14117,60,34,22,0.0 +14117,6,25,2,0.0 +14117,27,43.9,38,0.0 +14117,69,36,42,0.0 +14117,7,30,32,0.0 +14117,46,12,33,0.0 +14117,23,9,48,0.0 +14117,65,21.05,12,0.0 +14117,8,40,10,0.0 +14117,10,31,30,0.0 +14117,39,18,39,0.0 +14117,53,32.8,44,0.0 +14117,11,21,45,0.0 +14117,2,19,7,0.0 +14117,1,18,43,0.0 +14117,4,22,24,0.0 +14117,48,12.75,50,0.0 +14117,30,25.89,1,0.0 +14117,35,18,15,0.0 +14117,73,15,31,0.0 +14117,61,28.5,49,0.0 +14118,37,26,50,0.0 +14118,3,10,1,0.0 +14118,74,10,46,0.0 +14118,68,12.5,25,0.0 +14118,29,123.79,48,0.0 +14118,4,22,49,0.0 +14118,5,21.35,45,0.0 +14118,38,263.5,4,0.0 +14118,63,43.9,50,0.0 +14118,6,25,2,0.0 +14118,11,21,10,0.0 +14118,72,34.8,3,0.0 +14118,71,21.5,29,0.0 +14118,31,12.5,12,0.0 +14118,64,33.25,20,0.0 +14118,26,31.23,10,0.0 +14118,76,18,4,0.0 +14118,12,38,10,0.0 +14118,73,15,20,0.0 +14118,58,13.25,19,0.0 +14118,8,40,45,0.0 +14118,24,4.5,6,0.0 +14118,66,17,31,0.0 +14118,33,2.5,23,0.0 +14118,10,31,24,0.0 +14118,75,7.75,3,0.0 +14118,19,9.2,24,0.0 +14118,9,97,37,0.0 +14118,57,19.5,30,0.0 +14118,48,12.75,48,0.0 +14118,43,46,11,0.0 +14118,61,28.5,25,0.0 +14118,51,53,21,0.0 +14118,67,14,22,0.0 +14118,65,21.05,27,0.0 +14118,56,38,45,0.0 +14118,77,13,47,0.0 +14118,21,10,44,0.0 +14118,27,43.9,50,0.0 +14118,2,19,11,0.0 +14118,45,9.5,45,0.0 +14118,32,32,31,0.0 +14118,44,19.45,8,0.0 +14118,13,6,14,0.0 +14118,70,15,3,0.0 +14118,53,32.8,14,0.0 +14118,36,19,2,0.0 +14118,20,81,49,0.0 +14118,1,18,38,0.0 +14118,60,34,18,0.0 +14118,7,30,29,0.0 +14118,23,9,32,0.0 +14118,40,18.4,33,0.0 +14118,18,62.5,28,0.0 +14118,46,12,40,0.0 +14118,22,21,16,0.0 +14118,35,18,30,0.0 +14118,59,55,15,0.0 +14118,14,23.25,48,0.0 +14118,30,25.89,30,0.0 +14118,55,24,45,0.0 +14118,17,39,46,0.0 +14118,41,9.65,17,0.0 +14118,54,7.45,50,0.0 +14118,49,20,47,0.0 +14118,39,18,38,0.0 +14119,17,39,18,0.0 +14119,1,18,46,0.0 +14119,42,14,28,0.0 +14119,56,38,1,0.0 +14119,34,14,45,0.0 +14119,2,19,46,0.0 +14119,55,24,43,0.0 +14119,26,31.23,22,0.0 +14119,46,12,5,0.0 +14119,3,10,26,0.0 +14119,54,7.45,32,0.0 +14119,45,9.5,9,0.0 +14119,33,2.5,1,0.0 +14119,23,9,50,0.0 +14120,27,43.9,38,0.0 +14120,65,21.05,18,0.0 +14120,22,21,1,0.0 +14120,9,97,41,0.0 +14120,61,28.5,18,0.0 +14120,24,4.5,8,0.0 +14120,38,263.5,12,0.0 +14120,51,53,48,0.0 +14120,20,81,32,0.0 +14120,63,43.9,27,0.0 +14120,54,7.45,50,0.0 +14120,71,21.5,43,0.0 +14120,74,10,40,0.0 +14120,18,62.5,26,0.0 +14120,59,55,32,0.0 +14120,31,12.5,24,0.0 +14120,25,14,23,0.0 +14121,14,23.25,39,0.0 +14121,26,31.23,28,0.0 +14121,3,10,36,0.0 +14121,25,14,26,0.0 +14121,8,40,1,0.0 +14121,32,32,10,0.0 +14121,50,16.25,38,0.0 +14121,48,12.75,48,0.0 +14121,36,19,7,0.0 +14121,23,9,41,0.0 +14121,30,25.89,6,0.0 +14121,39,18,4,0.0 +14121,77,13,38,0.0 +14121,2,19,49,0.0 +14121,40,18.4,31,0.0 +14121,49,20,43,0.0 +14121,31,12.5,27,0.0 +14121,27,43.9,21,0.0 +14121,16,17.45,20,0.0 +14121,65,21.05,29,0.0 +14121,38,263.5,3,0.0 +14121,45,9.5,10,0.0 +14121,74,10,43,0.0 +14121,47,9.5,24,0.0 +14121,7,30,49,0.0 +14121,57,19.5,42,0.0 +14121,51,53,45,0.0 +14121,29,123.79,19,0.0 +14122,24,4.5,17,0.0 +14122,29,123.79,18,0.0 +14122,55,24,2,0.0 +14122,38,263.5,8,0.0 +14122,25,14,32,0.0 +14122,17,39,39,0.0 +14122,43,46,33,0.0 +14122,47,9.5,37,0.0 +14122,75,7.75,42,0.0 +14122,59,55,7,0.0 +14122,14,23.25,10,0.0 +14122,73,15,7,0.0 +14122,35,18,10,0.0 +14122,28,45.6,5,0.0 +14122,62,49.3,8,0.0 +14122,40,18.4,42,0.0 +14122,66,17,23,0.0 +14122,20,81,34,0.0 +14122,67,14,28,0.0 +14122,26,31.23,48,0.0 +14122,31,12.5,50,0.0 +14122,45,9.5,20,0.0 +14122,4,22,30,0.0 +14122,10,31,38,0.0 +14122,15,15.5,45,0.0 +14122,8,40,32,0.0 +14122,44,19.45,48,0.0 +14122,34,14,43,0.0 +14122,7,30,41,0.0 +14122,18,62.5,23,0.0 +14122,50,16.25,26,0.0 +14122,77,13,23,0.0 +14122,64,33.25,36,0.0 +14122,12,38,32,0.0 +14122,22,21,11,0.0 +14122,68,12.5,12,0.0 +14122,69,36,32,0.0 +14122,32,32,45,0.0 +14122,49,20,10,0.0 +14122,13,6,29,0.0 +14122,65,21.05,41,0.0 +14122,27,43.9,45,0.0 +14122,52,7,34,0.0 +14122,76,18,44,0.0 +14122,11,21,46,0.0 +14122,57,19.5,12,0.0 +14122,21,10,15,0.0 +14122,60,34,24,0.0 +14122,5,21.35,37,0.0 +14122,39,18,28,0.0 +14122,74,10,14,0.0 +14122,51,53,7,0.0 +14122,30,25.89,38,0.0 +14122,53,32.8,49,0.0 +14122,37,26,6,0.0 +14122,48,12.75,16,0.0 +14122,46,12,35,0.0 +14122,3,10,19,0.0 +14122,61,28.5,32,0.0 +14122,23,9,19,0.0 +14122,19,9.2,31,0.0 +14122,41,9.65,26,0.0 +14122,58,13.25,37,0.0 +14122,9,97,23,0.0 +14122,33,2.5,18,0.0 +14122,56,38,47,0.0 +14122,36,19,26,0.0 +14123,28,45.6,20,0.0 +14123,20,81,43,0.0 +14123,63,43.9,21,0.0 +14123,32,32,22,0.0 +14123,1,18,40,0.0 +14123,31,12.5,25,0.0 +14123,58,13.25,40,0.0 +14123,18,62.5,14,0.0 +14123,45,9.5,11,0.0 +14123,21,10,20,0.0 +14123,35,18,41,0.0 +14123,43,46,34,0.0 +14123,41,9.65,14,0.0 +14123,68,12.5,15,0.0 +14123,71,21.5,18,0.0 +14123,46,12,8,0.0 +14123,25,14,17,0.0 +14123,62,49.3,26,0.0 +14123,13,6,1,0.0 +14123,34,14,7,0.0 +14123,36,19,21,0.0 +14123,49,20,33,0.0 +14123,12,38,18,0.0 +14123,66,17,11,0.0 +14123,5,21.35,28,0.0 +14123,55,24,17,0.0 +14123,73,15,36,0.0 +14123,30,25.89,38,0.0 +14123,48,12.75,38,0.0 +14123,37,26,12,0.0 +14123,59,55,47,0.0 +14123,23,9,38,0.0 +14123,40,18.4,38,0.0 +14123,10,31,48,0.0 +14123,24,4.5,50,0.0 +14123,42,14,30,0.0 +14123,54,7.45,23,0.0 +14123,53,32.8,45,0.0 +14123,3,10,44,0.0 +14123,33,2.5,25,0.0 +14123,57,19.5,34,0.0 +14123,70,15,7,0.0 +14123,61,28.5,7,0.0 +14123,19,9.2,33,0.0 +14123,69,36,5,0.0 +14123,44,19.45,39,0.0 +14123,65,21.05,20,0.0 +14123,64,33.25,27,0.0 +14123,72,34.8,43,0.0 +14123,56,38,2,0.0 +14123,77,13,20,0.0 +14123,11,21,48,0.0 +14123,7,30,8,0.0 +14123,6,25,28,0.0 +14123,8,40,14,0.0 +14123,52,7,48,0.0 +14123,29,123.79,23,0.0 +14123,2,19,35,0.0 +14123,22,21,13,0.0 +14123,38,263.5,31,0.0 +14123,9,97,24,0.0 +14123,75,7.75,27,0.0 +14123,60,34,46,0.0 +14123,47,9.5,20,0.0 +14123,74,10,37,0.0 +14123,16,17.45,19,0.0 +14123,67,14,15,0.0 +14123,14,23.25,37,0.0 +14123,4,22,28,0.0 +14123,39,18,21,0.0 +14123,76,18,42,0.0 +14123,27,43.9,2,0.0 +14123,51,53,43,0.0 +14123,26,31.23,11,0.0 +14123,50,16.25,37,0.0 +14123,17,39,39,0.0 +14124,23,9,38,0.0 +14124,21,10,16,0.0 +14124,71,21.5,21,0.0 +14124,32,32,23,0.0 +14124,35,18,7,0.0 +14124,68,12.5,13,0.0 +14124,25,14,36,0.0 +14124,41,9.65,6,0.0 +14124,54,7.45,18,0.0 +14124,64,33.25,24,0.0 +14124,65,21.05,50,0.0 +14124,37,26,48,0.0 +14124,72,34.8,4,0.0 +14124,27,43.9,28,0.0 +14124,6,25,28,0.0 +14124,42,14,11,0.0 +14124,51,53,25,0.0 +14125,40,18.4,5,0.0 +14125,38,263.5,34,0.0 +14125,71,21.5,17,0.0 +14125,35,18,39,0.0 +14125,12,38,45,0.0 +14125,59,55,46,0.0 +14125,53,32.8,17,0.0 +14125,46,12,30,0.0 +14125,13,6,41,0.0 +14125,20,81,13,0.0 +14125,4,22,14,0.0 +14125,54,7.45,5,0.0 +14125,16,17.45,29,0.0 +14125,30,25.89,19,0.0 +14125,66,17,27,0.0 +14125,17,39,25,0.0 +14125,21,10,6,0.0 +14125,50,16.25,18,0.0 +14125,36,19,50,0.0 +14125,57,19.5,11,0.0 +14125,32,32,50,0.0 +14125,47,9.5,28,0.0 +14125,77,13,22,0.0 +14125,56,38,9,0.0 +14125,76,18,29,0.0 +14125,61,28.5,33,0.0 +14125,6,25,37,0.0 +14125,28,45.6,14,0.0 +14125,5,21.35,30,0.0 +14125,73,15,44,0.0 +14125,44,19.45,9,0.0 +14125,2,19,15,0.0 +14125,29,123.79,33,0.0 +14125,15,15.5,30,0.0 +14125,68,12.5,18,0.0 +14125,3,10,25,0.0 +14125,43,46,44,0.0 +14125,9,97,11,0.0 +14125,31,12.5,19,0.0 +14125,19,9.2,19,0.0 +14125,7,30,24,0.0 +14125,37,26,27,0.0 +14125,48,12.75,17,0.0 +14126,4,22,10,0.0 +14126,46,12,25,0.0 +14126,15,15.5,18,0.0 +14126,71,21.5,33,0.0 +14126,41,9.65,31,0.0 +14126,25,14,9,0.0 +14126,17,39,3,0.0 +14126,14,23.25,17,0.0 +14126,45,9.5,41,0.0 +14126,43,46,29,0.0 +14126,65,21.05,14,0.0 +14126,5,21.35,28,0.0 +14126,63,43.9,17,0.0 +14126,30,25.89,42,0.0 +14126,53,32.8,36,0.0 +14126,23,9,9,0.0 +14126,61,28.5,11,0.0 +14126,21,10,8,0.0 +14126,67,14,3,0.0 +14126,55,24,7,0.0 +14126,16,17.45,26,0.0 +14126,75,7.75,33,0.0 +14126,56,38,19,0.0 +14126,10,31,8,0.0 +14126,48,12.75,4,0.0 +14126,6,25,44,0.0 +14126,18,62.5,35,0.0 +14126,33,2.5,33,0.0 +14126,58,13.25,18,0.0 +14126,19,9.2,22,0.0 +14126,24,4.5,12,0.0 +14126,42,14,44,0.0 +14126,22,21,7,0.0 +14126,2,19,1,0.0 +14126,50,16.25,34,0.0 +14126,49,20,30,0.0 +14126,59,55,3,0.0 +14126,52,7,21,0.0 +14126,37,26,45,0.0 +14126,77,13,22,0.0 +14126,64,33.25,34,0.0 +14126,54,7.45,24,0.0 +14126,3,10,10,0.0 +14126,35,18,45,0.0 +14126,66,17,12,0.0 +14126,72,34.8,14,0.0 +14126,70,15,10,0.0 +14126,73,15,48,0.0 +14126,51,53,3,0.0 +14126,34,14,30,0.0 +14126,39,18,33,0.0 +14126,68,12.5,17,0.0 +14126,20,81,30,0.0 +14126,40,18.4,5,0.0 +14126,32,32,31,0.0 +14126,12,38,40,0.0 +14126,11,21,48,0.0 +14126,29,123.79,28,0.0 +14126,38,263.5,40,0.0 +14126,47,9.5,10,0.0 +14126,27,43.9,3,0.0 +14126,9,97,39,0.0 +14126,7,30,40,0.0 +14126,76,18,34,0.0 +14127,41,9.65,31,0.0 +14127,59,55,8,0.0 +14127,34,14,10,0.0 +14128,20,81,35,0.0 +14128,61,28.5,41,0.0 +14128,33,2.5,9,0.0 +14128,55,24,43,0.0 +14128,56,38,32,0.0 +14128,48,12.75,9,0.0 +14128,41,9.65,41,0.0 +14128,67,14,4,0.0 +14128,46,12,25,0.0 +14128,28,45.6,45,0.0 +14128,18,62.5,3,0.0 +14128,17,39,48,0.0 +14128,75,7.75,35,0.0 +14128,51,53,43,0.0 +14128,44,19.45,39,0.0 +14128,66,17,10,0.0 +14128,34,14,20,0.0 +14128,13,6,44,0.0 +14128,63,43.9,24,0.0 +14128,70,15,49,0.0 +14128,26,31.23,45,0.0 +14128,52,7,31,0.0 +14128,23,9,36,0.0 +14128,4,22,17,0.0 +14128,73,15,22,0.0 +14128,62,49.3,2,0.0 +14128,16,17.45,19,0.0 +14128,32,32,10,0.0 +14128,21,10,50,0.0 +14128,2,19,13,0.0 +14128,11,21,8,0.0 +14128,59,55,26,0.0 +14128,74,10,46,0.0 +14128,30,25.89,15,0.0 +14128,8,40,40,0.0 +14128,1,18,2,0.0 +14128,35,18,26,0.0 +14128,36,19,20,0.0 +14128,15,15.5,29,0.0 +14128,60,34,32,0.0 +14128,40,18.4,5,0.0 +14128,50,16.25,28,0.0 +14128,72,34.8,38,0.0 +14128,12,38,23,0.0 +14128,77,13,3,0.0 +14128,54,7.45,46,0.0 +14128,6,25,13,0.0 +14128,7,30,35,0.0 +14128,14,23.25,37,0.0 +14128,65,21.05,29,0.0 +14128,22,21,6,0.0 +14128,31,12.5,25,0.0 +14128,39,18,17,0.0 +14128,45,9.5,36,0.0 +14128,76,18,5,0.0 +14128,49,20,49,0.0 +14128,25,14,21,0.0 +14128,37,26,15,0.0 +14128,27,43.9,16,0.0 +14128,5,21.35,30,0.0 +14128,43,46,41,0.0 +14128,69,36,23,0.0 +14128,38,263.5,40,0.0 +14128,47,9.5,29,0.0 +14128,58,13.25,23,0.0 +14128,29,123.79,5,0.0 +14128,9,97,40,0.0 +14129,20,81,32,0.0 +14129,42,14,26,0.0 +14129,49,20,4,0.0 +14129,76,18,9,0.0 +14129,5,21.35,30,0.0 +14129,52,7,46,0.0 +14129,61,28.5,20,0.0 +14129,64,33.25,45,0.0 +14129,16,17.45,44,0.0 +14129,56,38,15,0.0 +14129,33,2.5,19,0.0 +14129,62,49.3,18,0.0 +14129,60,34,27,0.0 +14129,25,14,22,0.0 +14129,39,18,23,0.0 +14129,11,21,2,0.0 +14129,26,31.23,33,0.0 +14129,65,21.05,33,0.0 +14129,3,10,11,0.0 +14129,31,12.5,38,0.0 +14129,73,15,22,0.0 +14129,55,24,36,0.0 +14129,37,26,7,0.0 +14129,22,21,19,0.0 +14129,1,18,8,0.0 +14130,4,22,5,0.0 +14130,72,34.8,36,0.0 +14130,26,31.23,46,0.0 +14130,38,263.5,26,0.0 +14130,42,14,1,0.0 +14130,65,21.05,37,0.0 +14130,47,9.5,8,0.0 +14130,10,31,39,0.0 +14130,11,21,27,0.0 +14130,23,9,24,0.0 +14130,34,14,26,0.0 +14130,43,46,9,0.0 +14130,37,26,19,0.0 +14130,70,15,23,0.0 +14130,57,19.5,45,0.0 +14130,6,25,27,0.0 +14130,53,32.8,6,0.0 +14130,35,18,28,0.0 +14130,71,21.5,6,0.0 +14130,2,19,7,0.0 +14130,62,49.3,20,0.0 +14130,7,30,31,0.0 +14130,27,43.9,49,0.0 +14130,56,38,45,0.0 +14130,74,10,40,0.0 +14130,77,13,36,0.0 +14130,21,10,38,0.0 +14130,39,18,30,0.0 +14130,49,20,4,0.0 +14130,76,18,3,0.0 +14130,5,21.35,47,0.0 +14130,14,23.25,46,0.0 +14130,60,34,7,0.0 +14130,64,33.25,22,0.0 +14130,18,62.5,3,0.0 +14130,20,81,28,0.0 +14130,73,15,49,0.0 +14130,3,10,34,0.0 +14130,19,9.2,30,0.0 +14130,45,9.5,36,0.0 +14131,75,7.75,10,0.0 +14131,49,20,19,0.0 +14131,71,21.5,29,0.0 +14131,34,14,9,0.0 +14131,45,9.5,48,0.0 +14131,23,9,3,0.0 +14131,10,31,25,0.0 +14131,43,46,24,0.0 +14131,12,38,41,0.0 +14131,14,23.25,17,0.0 +14131,44,19.45,22,0.0 +14131,27,43.9,5,0.0 +14131,68,12.5,47,0.0 +14131,13,6,13,0.0 +14131,55,24,40,0.0 +14131,57,19.5,12,0.0 +14131,73,15,29,0.0 +14131,5,21.35,12,0.0 +14132,39,18,25,0.0 +14132,75,7.75,46,0.0 +14132,44,19.45,32,0.0 +14132,41,9.65,43,0.0 +14132,69,36,28,0.0 +14132,20,81,25,0.0 +14132,66,17,10,0.0 +14132,13,6,28,0.0 +14132,16,17.45,27,0.0 +14132,6,25,44,0.0 +14132,56,38,21,0.0 +14132,48,12.75,2,0.0 +14132,42,14,6,0.0 +14132,46,12,30,0.0 +14132,29,123.79,49,0.0 +14132,58,13.25,37,0.0 +14132,23,9,29,0.0 +14132,5,21.35,46,0.0 +14132,4,22,1,0.0 +14132,24,4.5,3,0.0 +14132,31,12.5,10,0.0 +14132,9,97,29,0.0 +14133,35,18,36,0.0 +14133,48,12.75,32,0.0 +14133,23,9,9,0.0 +14133,14,23.25,15,0.0 +14133,68,12.5,16,0.0 +14133,30,25.89,19,0.0 +14133,55,24,39,0.0 +14133,40,18.4,28,0.0 +14133,39,18,9,0.0 +14133,12,38,34,0.0 +14133,17,39,38,0.0 +14133,51,53,17,0.0 +14133,33,2.5,49,0.0 +14133,1,18,23,0.0 +14133,8,40,31,0.0 +14133,61,28.5,21,0.0 +14133,20,81,43,0.0 +14133,46,12,43,0.0 +14133,41,9.65,35,0.0 +14133,34,14,46,0.0 +14133,32,32,22,0.0 +14133,11,21,50,0.0 +14133,13,6,28,0.0 +14133,74,10,26,0.0 +14133,27,43.9,37,0.0 +14133,6,25,31,0.0 +14133,59,55,2,0.0 +14133,47,9.5,40,0.0 +14133,54,7.45,12,0.0 +14133,2,19,3,0.0 +14133,10,31,24,0.0 +14133,56,38,34,0.0 +14133,26,31.23,42,0.0 +14133,76,18,50,0.0 +14133,77,13,28,0.0 +14133,50,16.25,41,0.0 +14133,52,7,30,0.0 +14133,62,49.3,8,0.0 +14133,22,21,41,0.0 +14133,19,9.2,22,0.0 +14133,5,21.35,32,0.0 +14133,28,45.6,49,0.0 +14133,60,34,16,0.0 +14133,70,15,2,0.0 +14133,3,10,19,0.0 +14133,43,46,39,0.0 +14133,67,14,18,0.0 +14133,21,10,15,0.0 +14133,66,17,43,0.0 +14133,29,123.79,30,0.0 +14133,57,19.5,14,0.0 +14133,73,15,32,0.0 +14133,63,43.9,47,0.0 +14133,69,36,43,0.0 +14133,45,9.5,45,0.0 +14133,7,30,38,0.0 +14133,49,20,41,0.0 +14133,16,17.45,44,0.0 +14133,24,4.5,1,0.0 +14133,25,14,19,0.0 +14133,42,14,47,0.0 +14133,36,19,14,0.0 +14133,31,12.5,33,0.0 +14133,44,19.45,17,0.0 +14133,15,15.5,45,0.0 +14133,38,263.5,3,0.0 +14134,11,21,34,0.0 +14134,25,14,5,0.0 +14134,21,10,38,0.0 +14134,56,38,49,0.0 +14134,72,34.8,21,0.0 +14134,4,22,31,0.0 +14134,75,7.75,10,0.0 +14134,17,39,5,0.0 +14134,59,55,44,0.0 +14134,28,45.6,3,0.0 +14134,42,14,42,0.0 +14134,51,53,20,0.0 +14134,8,40,24,0.0 +14134,37,26,44,0.0 +14134,16,17.45,19,0.0 +14134,66,17,33,0.0 +14134,43,46,18,0.0 +14134,26,31.23,1,0.0 +14134,46,12,32,0.0 +14134,39,18,25,0.0 +14134,32,32,37,0.0 +14134,48,12.75,24,0.0 +14134,47,9.5,12,0.0 +14134,45,9.5,46,0.0 +14134,29,123.79,3,0.0 +14134,52,7,2,0.0 +14134,65,21.05,32,0.0 +14134,57,19.5,14,0.0 +14134,10,31,33,0.0 +14134,23,9,17,0.0 +14134,9,97,6,0.0 +14134,69,36,12,0.0 +14134,77,13,23,0.0 +14134,27,43.9,40,0.0 +14134,68,12.5,34,0.0 +14134,49,20,35,0.0 +14134,55,24,29,0.0 +14134,54,7.45,47,0.0 +14134,63,43.9,40,0.0 +14134,34,14,29,0.0 +14134,73,15,6,0.0 +14134,6,25,50,0.0 +14134,2,19,43,0.0 +14134,74,10,13,0.0 +14134,36,19,2,0.0 +14134,71,21.5,14,0.0 +14135,50,16.25,47,0.0 +14135,28,45.6,7,0.0 +14135,44,19.45,46,0.0 +14135,62,49.3,20,0.0 +14135,74,10,26,0.0 +14135,20,81,42,0.0 +14135,25,14,3,0.0 +14136,69,36,28,0.0 +14136,61,28.5,46,0.0 +14136,11,21,42,0.0 +14136,55,24,43,0.0 +14136,22,21,18,0.0 +14136,19,9.2,46,0.0 +14136,38,263.5,3,0.0 +14136,24,4.5,14,0.0 +14136,75,7.75,6,0.0 +14136,71,21.5,33,0.0 +14136,35,18,21,0.0 +14136,9,97,32,0.0 +14136,25,14,43,0.0 +14136,17,39,24,0.0 +14136,45,9.5,23,0.0 +14136,59,55,3,0.0 +14136,48,12.75,35,0.0 +14136,18,62.5,24,0.0 +14136,63,43.9,25,0.0 +14136,6,25,37,0.0 +14136,14,23.25,28,0.0 +14136,36,19,41,0.0 +14136,57,19.5,22,0.0 +14137,27,43.9,30,0.0 +14137,38,263.5,11,0.0 +14137,53,32.8,9,0.0 +14137,43,46,19,0.0 +14137,63,43.9,2,0.0 +14137,74,10,48,0.0 +14137,15,15.5,47,0.0 +14137,65,21.05,5,0.0 +14137,25,14,36,0.0 +14137,18,62.5,44,0.0 +14137,71,21.5,28,0.0 +14137,30,25.89,39,0.0 +14137,76,18,4,0.0 +14137,36,19,29,0.0 +14137,52,7,11,0.0 +14137,75,7.75,2,0.0 +14137,37,26,50,0.0 +14137,10,31,36,0.0 +14137,7,30,45,0.0 +14137,40,18.4,33,0.0 +14137,47,9.5,23,0.0 +14137,9,97,19,0.0 +14137,6,25,37,0.0 +14137,2,19,20,0.0 +14137,1,18,24,0.0 +14137,56,38,29,0.0 +14137,61,28.5,2,0.0 +14137,31,12.5,6,0.0 +14137,44,19.45,46,0.0 +14137,58,13.25,1,0.0 +14137,4,22,8,0.0 +14137,57,19.5,20,0.0 +14137,49,20,46,0.0 +14137,41,9.65,3,0.0 +14137,69,36,21,0.0 +14137,51,53,49,0.0 +14137,23,9,2,0.0 +14137,72,34.8,14,0.0 +14137,29,123.79,2,0.0 +14137,32,32,27,0.0 +14137,8,40,22,0.0 +14137,16,17.45,42,0.0 +14137,39,18,38,0.0 +14137,11,21,22,0.0 +14137,68,12.5,4,0.0 +14137,42,14,10,0.0 +14138,38,263.5,34,0.0 +14138,40,18.4,16,0.0 +14138,73,15,2,0.0 +14138,39,18,44,0.0 +14138,36,19,6,0.0 +14138,32,32,20,0.0 +14138,5,21.35,31,0.0 +14138,51,53,49,0.0 +14138,75,7.75,7,0.0 +14138,66,17,42,0.0 +14138,41,9.65,44,0.0 +14138,18,62.5,16,0.0 +14138,4,22,3,0.0 +14138,56,38,23,0.0 +14138,31,12.5,23,0.0 +14138,26,31.23,48,0.0 +14138,17,39,8,0.0 +14138,59,55,11,0.0 +14138,7,30,12,0.0 +14138,55,24,25,0.0 +14138,8,40,50,0.0 +14138,71,21.5,34,0.0 +14138,77,13,17,0.0 +14138,30,25.89,13,0.0 +14138,72,34.8,42,0.0 +14138,24,4.5,8,0.0 +14138,34,14,30,0.0 +14138,58,13.25,21,0.0 +14138,3,10,43,0.0 +14138,37,26,41,0.0 +14138,67,14,39,0.0 +14138,16,17.45,30,0.0 +14138,70,15,11,0.0 +14138,19,9.2,7,0.0 +14138,76,18,5,0.0 +14138,13,6,40,0.0 +14138,11,21,38,0.0 +14138,69,36,25,0.0 +14138,21,10,40,0.0 +14138,6,25,1,0.0 +14138,25,14,45,0.0 +14138,45,9.5,43,0.0 +14138,65,21.05,47,0.0 +14138,9,97,37,0.0 +14138,22,21,33,0.0 +14138,60,34,24,0.0 +14138,20,81,34,0.0 +14138,61,28.5,7,0.0 +14138,1,18,18,0.0 +14138,2,19,10,0.0 +14138,62,49.3,24,0.0 +14138,57,19.5,24,0.0 +14138,23,9,4,0.0 +14138,47,9.5,17,0.0 +14138,14,23.25,43,0.0 +14138,44,19.45,24,0.0 +14138,33,2.5,8,0.0 +14138,49,20,13,0.0 +14139,51,53,28,0.0 +14139,1,18,46,0.0 +14139,77,13,37,0.0 +14139,42,14,25,0.0 +14139,55,24,41,0.0 +14139,46,12,36,0.0 +14139,63,43.9,27,0.0 +14139,3,10,19,0.0 +14139,17,39,4,0.0 +14139,25,14,21,0.0 +14139,62,49.3,12,0.0 +14139,53,32.8,3,0.0 +14139,9,97,28,0.0 +14139,75,7.75,50,0.0 +14139,18,62.5,43,0.0 +14139,52,7,7,0.0 +14139,73,15,17,0.0 +14139,71,21.5,30,0.0 +14139,57,19.5,40,0.0 +14139,65,21.05,25,0.0 +14140,2,19,15,0.0 +14140,9,97,5,0.0 +14140,51,53,1,0.0 +14140,62,49.3,34,0.0 +14140,39,18,6,0.0 +14140,64,33.25,4,0.0 +14140,25,14,24,0.0 +14140,22,21,45,0.0 +14140,57,19.5,48,0.0 +14140,29,123.79,27,0.0 +14140,71,21.5,16,0.0 +14140,23,9,24,0.0 +14140,26,31.23,41,0.0 +14140,46,12,36,0.0 +14140,61,28.5,8,0.0 +14140,11,21,8,0.0 +14140,18,62.5,15,0.0 +14140,30,25.89,14,0.0 +14140,66,17,36,0.0 +14140,43,46,8,0.0 +14140,40,18.4,40,0.0 +14140,52,7,34,0.0 +14140,12,38,4,0.0 +14140,32,32,10,0.0 +14140,44,19.45,3,0.0 +14140,6,25,43,0.0 +14140,7,30,11,0.0 +14140,69,36,5,0.0 +14140,24,4.5,2,0.0 +14140,19,9.2,31,0.0 +14140,13,6,13,0.0 +14140,65,21.05,38,0.0 +14140,14,23.25,26,0.0 +14140,4,22,48,0.0 +14140,33,2.5,24,0.0 +14140,27,43.9,18,0.0 +14140,38,263.5,9,0.0 +14140,63,43.9,28,0.0 +14140,20,81,17,0.0 +14140,74,10,30,0.0 +14140,70,15,43,0.0 +14140,72,34.8,38,0.0 +14140,50,16.25,14,0.0 +14140,67,14,40,0.0 +14140,76,18,37,0.0 +14140,60,34,23,0.0 +14140,77,13,27,0.0 +14140,55,24,17,0.0 +14140,53,32.8,12,0.0 +14140,47,9.5,50,0.0 +14140,28,45.6,32,0.0 +14140,8,40,21,0.0 +14140,35,18,42,0.0 +14140,15,15.5,21,0.0 +14140,17,39,35,0.0 +14140,75,7.75,9,0.0 +14140,21,10,10,0.0 +14140,3,10,45,0.0 +14141,7,30,24,0.0 +14141,68,12.5,20,0.0 +14141,9,97,30,0.0 +14141,33,2.5,37,0.0 +14141,76,18,50,0.0 +14141,64,33.25,29,0.0 +14141,47,9.5,10,0.0 +14141,30,25.89,29,0.0 +14141,26,31.23,24,0.0 +14141,25,14,12,0.0 +14141,20,81,42,0.0 +14141,67,14,42,0.0 +14141,28,45.6,14,0.0 +14141,24,4.5,37,0.0 +14141,41,9.65,34,0.0 +14141,15,15.5,19,0.0 +14141,16,17.45,10,0.0 +14141,54,7.45,21,0.0 +14141,32,32,8,0.0 +14141,1,18,48,0.0 +14141,77,13,44,0.0 +14141,74,10,14,0.0 +14141,22,21,43,0.0 +14141,73,15,49,0.0 +14141,50,16.25,50,0.0 +14141,46,12,18,0.0 +14141,38,263.5,20,0.0 +14141,44,19.45,5,0.0 +14141,11,21,50,0.0 +14141,39,18,46,0.0 +14141,69,36,7,0.0 +14141,51,53,22,0.0 +14141,45,9.5,21,0.0 +14141,70,15,13,0.0 +14141,34,14,38,0.0 +14141,60,34,25,0.0 +14141,43,46,8,0.0 +14141,3,10,41,0.0 +14141,37,26,37,0.0 +14141,53,32.8,42,0.0 +14141,49,20,11,0.0 +14141,29,123.79,37,0.0 +14141,40,18.4,47,0.0 +14142,9,97,17,0.0 +14142,53,32.8,49,0.0 +14142,16,17.45,39,0.0 +14142,77,13,7,0.0 +14142,71,21.5,29,0.0 +14142,6,25,47,0.0 +14142,1,18,15,0.0 +14142,18,62.5,40,0.0 +14142,29,123.79,3,0.0 +14142,13,6,14,0.0 +14142,33,2.5,1,0.0 +14142,62,49.3,11,0.0 +14142,58,13.25,5,0.0 +14142,19,9.2,17,0.0 +14142,21,10,20,0.0 +14142,46,12,27,0.0 +14142,52,7,7,0.0 +14142,49,20,50,0.0 +14142,48,12.75,10,0.0 +14142,47,9.5,23,0.0 +14142,10,31,3,0.0 +14142,17,39,7,0.0 +14142,61,28.5,22,0.0 +14142,38,263.5,21,0.0 +14142,22,21,48,0.0 +14142,50,16.25,41,0.0 +14142,73,15,49,0.0 +14142,72,34.8,13,0.0 +14142,40,18.4,2,0.0 +14142,3,10,24,0.0 +14142,68,12.5,47,0.0 +14142,30,25.89,21,0.0 +14142,26,31.23,35,0.0 +14142,34,14,19,0.0 +14142,28,45.6,40,0.0 +14142,8,40,43,0.0 +14142,41,9.65,2,0.0 +14142,23,9,49,0.0 +14142,35,18,49,0.0 +14142,32,32,27,0.0 +14142,45,9.5,19,0.0 +14142,12,38,17,0.0 +14142,44,19.45,24,0.0 +14142,54,7.45,20,0.0 +14142,56,38,42,0.0 +14142,24,4.5,4,0.0 +14142,7,30,50,0.0 +14142,55,24,17,0.0 +14142,43,46,49,0.0 +14142,20,81,45,0.0 +14142,64,33.25,34,0.0 +14142,25,14,4,0.0 +14142,4,22,5,0.0 +14142,11,21,7,0.0 +14142,14,23.25,9,0.0 +14142,51,53,48,0.0 +14142,69,36,4,0.0 +14142,76,18,38,0.0 +14142,27,43.9,32,0.0 +14142,75,7.75,16,0.0 +14142,39,18,20,0.0 +14142,70,15,40,0.0 +14142,15,15.5,27,0.0 +14142,36,19,11,0.0 +14142,42,14,49,0.0 +14142,59,55,26,0.0 +14143,41,9.65,27,0.0 +14143,66,17,36,0.0 +14143,22,21,11,0.0 +14143,42,14,35,0.0 +14143,49,20,39,0.0 +14143,31,12.5,23,0.0 +14143,4,22,21,0.0 +14143,67,14,30,0.0 +14143,47,9.5,43,0.0 +14143,54,7.45,24,0.0 +14143,35,18,16,0.0 +14143,63,43.9,3,0.0 +14143,15,15.5,9,0.0 +14143,70,15,3,0.0 +14143,11,21,3,0.0 +14143,73,15,29,0.0 +14143,68,12.5,49,0.0 +14143,14,23.25,4,0.0 +14143,5,21.35,3,0.0 +14143,57,19.5,26,0.0 +14143,60,34,24,0.0 +14143,53,32.8,12,0.0 +14143,33,2.5,9,0.0 +14143,52,7,49,0.0 +14143,12,38,46,0.0 +14143,36,19,23,0.0 +14143,26,31.23,30,0.0 +14143,6,25,37,0.0 +14143,19,9.2,27,0.0 +14143,27,43.9,37,0.0 +14143,28,45.6,44,0.0 +14143,74,10,50,0.0 +14143,50,16.25,22,0.0 +14143,17,39,22,0.0 +14143,39,18,40,0.0 +14143,3,10,24,0.0 +14143,2,19,22,0.0 +14143,71,21.5,29,0.0 +14143,48,12.75,22,0.0 +14143,65,21.05,14,0.0 +14143,62,49.3,32,0.0 +14143,64,33.25,38,0.0 +14143,61,28.5,31,0.0 +14143,75,7.75,15,0.0 +14143,45,9.5,50,0.0 +14143,18,62.5,31,0.0 +14144,22,21,21,0.0 +14144,6,25,9,0.0 +14144,65,21.05,48,0.0 +14144,28,45.6,23,0.0 +14144,42,14,36,0.0 +14144,71,21.5,5,0.0 +14144,19,9.2,19,0.0 +14144,38,263.5,21,0.0 +14144,69,36,6,0.0 +14144,35,18,17,0.0 +14144,21,10,33,0.0 +14144,51,53,29,0.0 +14144,77,13,34,0.0 +14144,56,38,11,0.0 +14144,67,14,42,0.0 +14144,47,9.5,37,0.0 +14144,62,49.3,20,0.0 +14144,75,7.75,36,0.0 +14144,44,19.45,9,0.0 +14144,63,43.9,38,0.0 +14144,11,21,27,0.0 +14144,55,24,30,0.0 +14144,2,19,18,0.0 +14144,20,81,48,0.0 +14144,40,18.4,15,0.0 +14144,73,15,28,0.0 +14144,50,16.25,47,0.0 +14144,34,14,3,0.0 +14144,23,9,28,0.0 +14144,36,19,26,0.0 +14144,18,62.5,38,0.0 +14144,37,26,21,0.0 +14144,25,14,50,0.0 +14144,7,30,49,0.0 +14144,33,2.5,14,0.0 +14144,14,23.25,30,0.0 +14144,46,12,49,0.0 +14145,58,13.25,35,0.0 +14145,33,2.5,1,0.0 +14145,21,10,25,0.0 +14145,30,25.89,49,0.0 +14145,42,14,8,0.0 +14145,1,18,35,0.0 +14145,39,18,49,0.0 +14146,3,10,32,0.0 +14146,43,46,31,0.0 +14146,11,21,49,0.0 +14147,7,30,29,0.0 +14147,59,55,13,0.0 +14147,60,34,19,0.0 +14147,47,9.5,34,0.0 +14147,54,7.45,35,0.0 +14147,29,123.79,18,0.0 +14147,64,33.25,9,0.0 +14147,41,9.65,13,0.0 +14147,66,17,24,0.0 +14147,69,36,37,0.0 +14147,12,38,11,0.0 +14147,28,45.6,3,0.0 +14147,76,18,35,0.0 +14147,26,31.23,18,0.0 +14148,35,18,22,0.0 +14148,1,18,13,0.0 +14148,62,49.3,46,0.0 +14148,16,17.45,37,0.0 +14148,55,24,10,0.0 +14148,45,9.5,2,0.0 +14148,52,7,5,0.0 +14148,54,7.45,4,0.0 +14148,61,28.5,12,0.0 +14148,48,12.75,42,0.0 +14148,71,21.5,13,0.0 +14148,46,12,48,0.0 +14148,69,36,17,0.0 +14148,77,13,45,0.0 +14148,51,53,35,0.0 +14148,22,21,25,0.0 +14148,9,97,6,0.0 +14148,49,20,34,0.0 +14148,42,14,43,0.0 +14148,40,18.4,47,0.0 +14148,26,31.23,41,0.0 +14148,7,30,26,0.0 +14148,23,9,46,0.0 +14148,33,2.5,6,0.0 +14148,2,19,22,0.0 +14148,28,45.6,40,0.0 +14148,30,25.89,28,0.0 +14149,15,15.5,46,0.0 +14149,28,45.6,19,0.0 +14149,41,9.65,1,0.0 +14149,57,19.5,11,0.0 +14149,59,55,34,0.0 +14149,25,14,1,0.0 +14149,72,34.8,26,0.0 +14149,62,49.3,11,0.0 +14149,32,32,45,0.0 +14149,76,18,31,0.0 +14149,56,38,19,0.0 +14149,9,97,39,0.0 +14149,53,32.8,13,0.0 +14149,58,13.25,4,0.0 +14149,43,46,46,0.0 +14149,46,12,48,0.0 +14149,19,9.2,9,0.0 +14149,31,12.5,46,0.0 +14149,61,28.5,38,0.0 +14149,17,39,34,0.0 +14149,44,19.45,43,0.0 +14149,24,4.5,26,0.0 +14149,16,17.45,23,0.0 +14149,3,10,5,0.0 +14149,4,22,49,0.0 +14149,67,14,42,0.0 +14149,63,43.9,31,0.0 +14149,34,14,43,0.0 +14149,35,18,10,0.0 +14149,47,9.5,26,0.0 +14149,45,9.5,49,0.0 +14149,75,7.75,47,0.0 +14149,2,19,46,0.0 +14149,42,14,26,0.0 +14149,22,21,24,0.0 +14149,8,40,24,0.0 +14149,37,26,14,0.0 +14149,48,12.75,26,0.0 +14149,52,7,48,0.0 +14149,73,15,35,0.0 +14149,77,13,24,0.0 +14149,49,20,13,0.0 +14149,30,25.89,11,0.0 +14149,23,9,34,0.0 +14149,55,24,41,0.0 +14149,40,18.4,39,0.0 +14149,11,21,33,0.0 +14149,51,53,50,0.0 +14149,50,16.25,38,0.0 +14149,54,7.45,16,0.0 +14149,39,18,25,0.0 +14149,1,18,35,0.0 +14149,12,38,17,0.0 +14149,5,21.35,5,0.0 +14149,65,21.05,22,0.0 +14149,74,10,15,0.0 +14149,38,263.5,10,0.0 +14149,21,10,21,0.0 +14149,60,34,11,0.0 +14149,6,25,18,0.0 +14149,36,19,35,0.0 +14149,64,33.25,26,0.0 +14149,10,31,29,0.0 +14149,66,17,46,0.0 +14149,27,43.9,26,0.0 +14149,18,62.5,50,0.0 +14149,33,2.5,28,0.0 +14149,29,123.79,20,0.0 +14149,68,12.5,18,0.0 +14149,70,15,39,0.0 +14150,35,18,5,0.0 +14150,76,18,29,0.0 +14150,44,19.45,38,0.0 +14150,45,9.5,1,0.0 +14150,54,7.45,13,0.0 +14150,31,12.5,40,0.0 +14150,66,17,1,0.0 +14150,62,49.3,42,0.0 +14150,57,19.5,26,0.0 +14150,3,10,37,0.0 +14150,26,31.23,16,0.0 +14150,10,31,12,0.0 +14150,20,81,33,0.0 +14150,1,18,16,0.0 +14150,30,25.89,25,0.0 +14150,40,18.4,37,0.0 +14150,29,123.79,16,0.0 +14150,34,14,17,0.0 +14150,69,36,43,0.0 +14150,65,21.05,28,0.0 +14150,21,10,30,0.0 +14150,38,263.5,3,0.0 +14150,51,53,22,0.0 +14150,8,40,37,0.0 +14150,11,21,31,0.0 +14150,48,12.75,44,0.0 +14150,2,19,2,0.0 +14150,77,13,18,0.0 +14150,63,43.9,19,0.0 +14150,52,7,32,0.0 +14150,32,32,47,0.0 +14150,27,43.9,48,0.0 +14150,61,28.5,9,0.0 +14150,16,17.45,20,0.0 +14150,60,34,25,0.0 +14150,49,20,44,0.0 +14150,19,9.2,5,0.0 +14150,53,32.8,19,0.0 +14150,42,14,42,0.0 +14150,58,13.25,44,0.0 +14150,14,23.25,25,0.0 +14150,9,97,1,0.0 +14150,59,55,47,0.0 +14150,13,6,6,0.0 +14150,50,16.25,8,0.0 +14150,68,12.5,15,0.0 +14150,46,12,29,0.0 +14150,39,18,14,0.0 +14150,18,62.5,49,0.0 +14150,73,15,12,0.0 +14150,74,10,14,0.0 +14150,37,26,30,0.0 +14150,71,21.5,7,0.0 +14150,33,2.5,49,0.0 +14150,22,21,19,0.0 +14150,75,7.75,7,0.0 +14150,25,14,36,0.0 +14150,41,9.65,38,0.0 +14150,5,21.35,30,0.0 +14150,7,30,29,0.0 +14150,6,25,47,0.0 +14150,36,19,33,0.0 +14150,23,9,44,0.0 +14150,47,9.5,2,0.0 +14150,56,38,48,0.0 +14150,70,15,44,0.0 +14150,28,45.6,47,0.0 +14150,4,22,17,0.0 +14151,57,19.5,30,0.0 +14151,65,21.05,20,0.0 +14151,35,18,34,0.0 +14151,46,12,21,0.0 +14151,31,12.5,47,0.0 +14151,9,97,4,0.0 +14151,61,28.5,42,0.0 +14151,44,19.45,13,0.0 +14151,75,7.75,50,0.0 +14151,13,6,40,0.0 +14151,36,19,28,0.0 +14151,5,21.35,3,0.0 +14151,25,14,17,0.0 +14151,38,263.5,23,0.0 +14151,19,9.2,13,0.0 +14151,54,7.45,24,0.0 +14151,2,19,22,0.0 +14151,67,14,1,0.0 +14151,77,13,38,0.0 +14151,33,2.5,34,0.0 +14151,59,55,23,0.0 +14151,8,40,21,0.0 +14151,47,9.5,21,0.0 +14151,34,14,27,0.0 +14152,23,9,12,0.0 +14152,62,49.3,1,0.0 +14152,54,7.45,21,0.0 +14152,61,28.5,49,0.0 +14152,57,19.5,30,0.0 +14152,42,14,29,0.0 +14152,8,40,19,0.0 +14152,66,17,37,0.0 +14152,68,12.5,38,0.0 +14152,50,16.25,18,0.0 +14152,1,18,27,0.0 +14152,36,19,27,0.0 +14152,76,18,2,0.0 +14152,39,18,11,0.0 +14152,14,23.25,18,0.0 +14152,48,12.75,42,0.0 +14152,7,30,2,0.0 +14152,35,18,36,0.0 +14152,38,263.5,39,0.0 +14152,60,34,40,0.0 +14152,16,17.45,34,0.0 +14152,17,39,34,0.0 +14152,77,13,45,0.0 +14152,28,45.6,10,0.0 +14152,12,38,15,0.0 +14152,44,19.45,19,0.0 +14152,72,34.8,40,0.0 +14152,22,21,23,0.0 +14152,37,26,18,0.0 +14152,15,15.5,30,0.0 +14152,49,20,47,0.0 +14152,58,13.25,17,0.0 +14152,32,32,39,0.0 +14152,64,33.25,42,0.0 +14152,43,46,8,0.0 +14152,26,31.23,35,0.0 +14152,52,7,1,0.0 +14152,73,15,40,0.0 +14152,4,22,43,0.0 +14152,33,2.5,25,0.0 +14152,25,14,15,0.0 +14152,46,12,17,0.0 +14152,31,12.5,30,0.0 +14152,11,21,18,0.0 +14152,56,38,25,0.0 +14152,29,123.79,9,0.0 +14152,75,7.75,33,0.0 +14152,19,9.2,22,0.0 +14152,30,25.89,37,0.0 +14152,70,15,29,0.0 +14152,59,55,36,0.0 +14152,5,21.35,5,0.0 +14152,18,62.5,9,0.0 +14152,63,43.9,10,0.0 +14152,53,32.8,20,0.0 +14152,67,14,11,0.0 +14152,55,24,31,0.0 +14152,2,19,41,0.0 +14152,13,6,47,0.0 +14152,27,43.9,32,0.0 +14152,6,25,31,0.0 +14152,9,97,22,0.0 +14152,47,9.5,13,0.0 +14152,65,21.05,28,0.0 +14152,74,10,42,0.0 +14152,21,10,37,0.0 +14152,34,14,22,0.0 +14152,45,9.5,12,0.0 +14152,20,81,43,0.0 +14152,69,36,39,0.0 +14152,51,53,25,0.0 +14152,71,21.5,41,0.0 +14153,76,18,27,0.0 +14153,53,32.8,38,0.0 +14153,66,17,35,0.0 +14153,46,12,39,0.0 +14153,2,19,32,0.0 +14153,64,33.25,13,0.0 +14153,50,16.25,34,0.0 +14153,4,22,45,0.0 +14153,7,30,42,0.0 +14153,32,32,20,0.0 +14153,31,12.5,11,0.0 +14153,77,13,12,0.0 +14153,45,9.5,34,0.0 +14153,58,13.25,38,0.0 +14153,75,7.75,5,0.0 +14153,6,25,30,0.0 +14153,12,38,1,0.0 +14153,60,34,10,0.0 +14153,16,17.45,29,0.0 +14153,41,9.65,21,0.0 +14153,73,15,9,0.0 +14153,13,6,43,0.0 +14153,9,97,18,0.0 +14153,54,7.45,42,0.0 +14153,23,9,46,0.0 +14153,36,19,31,0.0 +14153,69,36,5,0.0 +14153,57,19.5,13,0.0 +14154,29,123.79,15,0.0 +14154,60,34,21,0.0 +14154,47,9.5,48,0.0 +14154,14,23.25,25,0.0 +14154,71,21.5,36,0.0 +14154,77,13,13,0.0 +14154,11,21,35,0.0 +14154,30,25.89,3,0.0 +14154,6,25,31,0.0 +14154,73,15,17,0.0 +14154,59,55,25,0.0 +14154,65,21.05,34,0.0 +14154,7,30,15,0.0 +14154,53,32.8,48,0.0 +14154,16,17.45,26,0.0 +14154,20,81,5,0.0 +14154,13,6,24,0.0 +14154,4,22,20,0.0 +14154,31,12.5,15,0.0 +14154,62,49.3,22,0.0 +14154,58,13.25,1,0.0 +14154,17,39,25,0.0 +14154,76,18,17,0.0 +14154,19,9.2,10,0.0 +14154,1,18,48,0.0 +14154,28,45.6,3,0.0 +14154,3,10,13,0.0 +14154,41,9.65,9,0.0 +14154,74,10,16,0.0 +14154,55,24,27,0.0 +14154,69,36,5,0.0 +14154,50,16.25,33,0.0 +14154,45,9.5,23,0.0 +14154,34,14,41,0.0 +14154,10,31,33,0.0 +14154,27,43.9,19,0.0 +14154,37,26,38,0.0 +14154,75,7.75,13,0.0 +14154,5,21.35,32,0.0 +14154,22,21,5,0.0 +14154,56,38,23,0.0 +14154,23,9,9,0.0 +14154,21,10,8,0.0 +14154,18,62.5,41,0.0 +14154,25,14,17,0.0 +14154,46,12,2,0.0 +14154,72,34.8,15,0.0 +14154,51,53,30,0.0 +14154,33,2.5,35,0.0 +14154,26,31.23,3,0.0 +14154,52,7,40,0.0 +14154,57,19.5,7,0.0 +14154,35,18,13,0.0 +14154,2,19,10,0.0 +14154,12,38,28,0.0 +14154,39,18,23,0.0 +14154,66,17,43,0.0 +14154,40,18.4,27,0.0 +14154,70,15,24,0.0 +14154,44,19.45,18,0.0 +14155,8,40,29,0.0 +14155,18,62.5,31,0.0 +14156,48,12.75,28,0.0 +14156,72,34.8,43,0.0 +14156,57,19.5,3,0.0 +14156,55,24,30,0.0 +14156,50,16.25,11,0.0 +14156,9,97,32,0.0 +14156,34,14,42,0.0 +14156,2,19,5,0.0 +14156,75,7.75,26,0.0 +14156,19,9.2,37,0.0 +14157,26,31.23,1,0.0 +14157,8,40,32,0.0 +14157,2,19,42,0.0 +14157,57,19.5,32,0.0 +14157,54,7.45,35,0.0 +14157,9,97,37,0.0 +14157,5,21.35,38,0.0 +14157,13,6,9,0.0 +14157,52,7,21,0.0 +14157,17,39,49,0.0 +14157,20,81,39,0.0 +14157,42,14,49,0.0 +14157,15,15.5,44,0.0 +14157,68,12.5,17,0.0 +14157,59,55,35,0.0 +14157,75,7.75,4,0.0 +14157,74,10,49,0.0 +14157,43,46,22,0.0 +14157,63,43.9,43,0.0 +14157,19,9.2,44,0.0 +14157,56,38,37,0.0 +14157,22,21,29,0.0 +14157,28,45.6,26,0.0 +14157,10,31,44,0.0 +14157,6,25,40,0.0 +14157,11,21,22,0.0 +14157,23,9,42,0.0 +14157,73,15,37,0.0 +14157,36,19,18,0.0 +14157,24,4.5,9,0.0 +14157,58,13.25,33,0.0 +14157,55,24,23,0.0 +14157,37,26,41,0.0 +14157,49,20,35,0.0 +14157,32,32,42,0.0 +14157,70,15,41,0.0 +14157,35,18,27,0.0 +14157,60,34,42,0.0 +14157,45,9.5,16,0.0 +14157,33,2.5,7,0.0 +14157,21,10,25,0.0 +14157,61,28.5,47,0.0 +14157,71,21.5,14,0.0 +14157,69,36,16,0.0 +14157,41,9.65,17,0.0 +14157,66,17,40,0.0 +14157,51,53,18,0.0 +14157,64,33.25,4,0.0 +14157,1,18,4,0.0 +14157,67,14,12,0.0 +14157,62,49.3,5,0.0 +14157,3,10,7,0.0 +14157,76,18,10,0.0 +14157,31,12.5,31,0.0 +14157,46,12,20,0.0 +14157,53,32.8,33,0.0 +14157,72,34.8,23,0.0 +14157,12,38,21,0.0 +14157,77,13,36,0.0 +14157,40,18.4,50,0.0 +14158,61,28.5,9,0.0 +14158,47,9.5,13,0.0 +14158,64,33.25,33,0.0 +14158,39,18,23,0.0 +14158,22,21,19,0.0 +14158,50,16.25,40,0.0 +14158,25,14,2,0.0 +14158,6,25,47,0.0 +14158,46,12,35,0.0 +14158,17,39,1,0.0 +14158,76,18,25,0.0 +14158,58,13.25,19,0.0 +14158,32,32,11,0.0 +14158,26,31.23,6,0.0 +14158,12,38,15,0.0 +14158,28,45.6,48,0.0 +14158,59,55,43,0.0 +14159,10,31,44,0.0 +14159,51,53,29,0.0 +14159,20,81,45,0.0 +14159,41,9.65,35,0.0 +14159,2,19,34,0.0 +14159,1,18,48,0.0 +14159,72,34.8,30,0.0 +14159,15,15.5,21,0.0 +14159,39,18,8,0.0 +14159,25,14,40,0.0 +14159,16,17.45,3,0.0 +14159,50,16.25,28,0.0 +14159,75,7.75,37,0.0 +14159,23,9,47,0.0 +14159,56,38,7,0.0 +14159,44,19.45,2,0.0 +14159,24,4.5,8,0.0 +14159,43,46,4,0.0 +14159,59,55,33,0.0 +14159,4,22,46,0.0 +14159,47,9.5,18,0.0 +14159,76,18,13,0.0 +14159,12,38,13,0.0 +14159,3,10,50,0.0 +14159,66,17,34,0.0 +14159,30,25.89,17,0.0 +14159,14,23.25,33,0.0 +14159,21,10,34,0.0 +14159,62,49.3,44,0.0 +14159,6,25,4,0.0 +14159,36,19,40,0.0 +14159,69,36,30,0.0 +14159,77,13,39,0.0 +14159,26,31.23,39,0.0 +14159,40,18.4,47,0.0 +14160,31,12.5,13,0.0 +14160,38,263.5,1,0.0 +14160,32,32,19,0.0 +14160,65,21.05,12,0.0 +14160,70,15,40,0.0 +14160,72,34.8,3,0.0 +14160,27,43.9,23,0.0 +14160,44,19.45,35,0.0 +14160,24,4.5,43,0.0 +14160,13,6,12,0.0 +14160,11,21,15,0.0 +14160,3,10,48,0.0 +14160,61,28.5,9,0.0 +14160,20,81,1,0.0 +14160,12,38,9,0.0 +14160,14,23.25,26,0.0 +14160,52,7,19,0.0 +14160,8,40,20,0.0 +14160,34,14,37,0.0 +14160,74,10,25,0.0 +14160,62,49.3,12,0.0 +14160,37,26,47,0.0 +14160,55,24,17,0.0 +14160,50,16.25,5,0.0 +14160,17,39,40,0.0 +14160,28,45.6,20,0.0 +14160,42,14,45,0.0 +14160,10,31,30,0.0 +14160,67,14,1,0.0 +14160,41,9.65,2,0.0 +14160,1,18,44,0.0 +14160,47,9.5,16,0.0 +14160,33,2.5,10,0.0 +14160,45,9.5,15,0.0 +14160,18,62.5,3,0.0 +14160,39,18,1,0.0 +14160,19,9.2,34,0.0 +14160,60,34,42,0.0 +14160,71,21.5,31,0.0 +14160,77,13,3,0.0 +14160,36,19,17,0.0 +14160,69,36,49,0.0 +14160,30,25.89,19,0.0 +14160,9,97,6,0.0 +14161,70,15,28,0.0 +14161,68,12.5,20,0.0 +14161,3,10,25,0.0 +14161,30,25.89,3,0.0 +14161,63,43.9,1,0.0 +14161,74,10,18,0.0 +14161,41,9.65,4,0.0 +14161,17,39,26,0.0 +14161,25,14,33,0.0 +14161,2,19,2,0.0 +14161,42,14,27,0.0 +14161,8,40,12,0.0 +14161,72,34.8,13,0.0 +14161,38,263.5,7,0.0 +14161,64,33.25,14,0.0 +14161,47,9.5,27,0.0 +14161,77,13,4,0.0 +14161,62,49.3,13,0.0 +14161,53,32.8,19,0.0 +14161,58,13.25,6,0.0 +14161,46,12,39,0.0 +14161,44,19.45,30,0.0 +14161,50,16.25,50,0.0 +14161,52,7,48,0.0 +14161,18,62.5,27,0.0 +14161,36,19,28,0.0 +14161,33,2.5,34,0.0 +14161,22,21,24,0.0 +14161,65,21.05,47,0.0 +14161,7,30,49,0.0 +14161,51,53,7,0.0 +14161,69,36,48,0.0 +14161,26,31.23,1,0.0 +14161,39,18,36,0.0 +14161,15,15.5,22,0.0 +14161,67,14,5,0.0 +14161,28,45.6,33,0.0 +14161,11,21,37,0.0 +14161,60,34,24,0.0 +14162,58,13.25,15,0.0 +14162,70,15,33,0.0 +14162,55,24,4,0.0 +14162,33,2.5,25,0.0 +14162,1,18,11,0.0 +14162,36,19,45,0.0 +14162,42,14,28,0.0 +14162,43,46,3,0.0 +14162,16,17.45,2,0.0 +14162,51,53,1,0.0 +14162,14,23.25,5,0.0 +14162,27,43.9,44,0.0 +14162,34,14,15,0.0 +14162,12,38,35,0.0 +14162,21,10,49,0.0 +14162,28,45.6,50,0.0 +14162,29,123.79,22,0.0 +14162,38,263.5,32,0.0 +14162,9,97,44,0.0 +14162,6,25,48,0.0 +14162,60,34,10,0.0 +14162,37,26,38,0.0 +14162,61,28.5,22,0.0 +14162,47,9.5,43,0.0 +14162,54,7.45,43,0.0 +14162,10,31,39,0.0 +14162,64,33.25,3,0.0 +14162,57,19.5,45,0.0 +14162,18,62.5,12,0.0 +14162,72,34.8,49,0.0 +14163,2,19,11,0.0 +14163,13,6,2,0.0 +14163,50,16.25,43,0.0 +14163,53,32.8,10,0.0 +14163,43,46,15,0.0 +14163,9,97,25,0.0 +14163,18,62.5,10,0.0 +14163,23,9,19,0.0 +14163,30,25.89,20,0.0 +14163,39,18,24,0.0 +14163,16,17.45,10,0.0 +14163,35,18,1,0.0 +14163,38,263.5,22,0.0 +14163,62,49.3,22,0.0 +14163,60,34,8,0.0 +14163,66,17,32,0.0 +14163,1,18,12,0.0 +14163,41,9.65,44,0.0 +14163,40,18.4,36,0.0 +14163,32,32,43,0.0 +14163,29,123.79,4,0.0 +14163,12,38,14,0.0 +14163,15,15.5,33,0.0 +14163,77,13,11,0.0 +14163,58,13.25,25,0.0 +14163,11,21,15,0.0 +14163,65,21.05,16,0.0 +14163,71,21.5,33,0.0 +14163,70,15,24,0.0 +14164,58,13.25,3,0.0 +14164,9,97,44,0.0 +14164,29,123.79,7,0.0 +14164,66,17,33,0.0 +14164,35,18,45,0.0 +14164,17,39,38,0.0 +14164,41,9.65,35,0.0 +14164,34,14,13,0.0 +14164,74,10,46,0.0 +14164,61,28.5,11,0.0 +14164,70,15,41,0.0 +14164,13,6,7,0.0 +14164,1,18,40,0.0 +14164,73,15,41,0.0 +14164,51,53,2,0.0 +14164,14,23.25,32,0.0 +14164,53,32.8,24,0.0 +14164,45,9.5,49,0.0 +14164,36,19,8,0.0 +14164,39,18,17,0.0 +14164,8,40,50,0.0 +14164,10,31,36,0.0 +14164,50,16.25,12,0.0 +14164,57,19.5,36,0.0 +14164,48,12.75,4,0.0 +14164,54,7.45,25,0.0 +14164,24,4.5,7,0.0 +14164,19,9.2,24,0.0 +14164,71,21.5,11,0.0 +14164,68,12.5,29,0.0 +14164,44,19.45,48,0.0 +14164,27,43.9,35,0.0 +14164,67,14,13,0.0 +14164,32,32,41,0.0 +14164,64,33.25,39,0.0 +14164,28,45.6,21,0.0 +14164,25,14,11,0.0 +14164,12,38,33,0.0 +14164,75,7.75,41,0.0 +14164,42,14,1,0.0 +14164,40,18.4,43,0.0 +14164,16,17.45,50,0.0 +14164,31,12.5,43,0.0 +14164,37,26,39,0.0 +14164,15,15.5,49,0.0 +14164,60,34,29,0.0 +14164,5,21.35,45,0.0 +14164,23,9,30,0.0 +14164,56,38,25,0.0 +14164,43,46,34,0.0 +14164,65,21.05,34,0.0 +14164,30,25.89,3,0.0 +14165,50,16.25,47,0.0 +14165,1,18,11,0.0 +14165,19,9.2,27,0.0 +14166,11,21,4,0.0 +14166,26,31.23,10,0.0 +14166,28,45.6,4,0.0 +14166,36,19,18,0.0 +14166,71,21.5,24,0.0 +14166,66,17,21,0.0 +14166,40,18.4,11,0.0 +14166,18,62.5,21,0.0 +14166,69,36,7,0.0 +14167,58,13.25,2,0.0 +14167,67,14,26,0.0 +14167,47,9.5,2,0.0 +14167,11,21,46,0.0 +14167,8,40,29,0.0 +14167,71,21.5,42,0.0 +14167,50,16.25,37,0.0 +14167,2,19,31,0.0 +14167,12,38,38,0.0 +14167,26,31.23,30,0.0 +14167,45,9.5,6,0.0 +14167,59,55,42,0.0 +14167,22,21,21,0.0 +14167,63,43.9,7,0.0 +14167,23,9,30,0.0 +14167,41,9.65,9,0.0 +14167,42,14,7,0.0 +14167,77,13,50,0.0 +14167,54,7.45,23,0.0 +14167,29,123.79,41,0.0 +14167,18,62.5,21,0.0 +14168,47,9.5,28,0.0 +14168,1,18,38,0.0 +14168,23,9,12,0.0 +14168,11,21,38,0.0 +14168,35,18,43,0.0 +14168,59,55,20,0.0 +14168,28,45.6,1,0.0 +14168,8,40,8,0.0 +14168,73,15,49,0.0 +14168,20,81,17,0.0 +14168,51,53,33,0.0 +14168,64,33.25,30,0.0 +14168,56,38,48,0.0 +14168,60,34,31,0.0 +14168,71,21.5,46,0.0 +14168,25,14,14,0.0 +14168,54,7.45,27,0.0 +14168,5,21.35,27,0.0 +14168,58,13.25,1,0.0 +14168,4,22,49,0.0 +14168,43,46,46,0.0 +14168,18,62.5,50,0.0 +14168,61,28.5,22,0.0 +14168,19,9.2,37,0.0 +14168,3,10,33,0.0 +14168,53,32.8,8,0.0 +14168,65,21.05,48,0.0 +14168,13,6,15,0.0 +14168,22,21,7,0.0 +14168,32,32,43,0.0 +14168,9,97,21,0.0 +14168,29,123.79,21,0.0 +14168,52,7,33,0.0 +14168,37,26,29,0.0 +14168,77,13,36,0.0 +14168,16,17.45,44,0.0 +14168,57,19.5,34,0.0 +14168,66,17,32,0.0 +14168,27,43.9,35,0.0 +14168,69,36,22,0.0 +14168,7,30,20,0.0 +14169,76,18,23,0.0 +14169,43,46,24,0.0 +14169,77,13,9,0.0 +14169,36,19,14,0.0 +14169,57,19.5,43,0.0 +14169,25,14,9,0.0 +14169,49,20,38,0.0 +14169,20,81,39,0.0 +14169,45,9.5,35,0.0 +14169,13,6,2,0.0 +14169,37,26,16,0.0 +14169,51,53,25,0.0 +14169,15,15.5,15,0.0 +14169,11,21,20,0.0 +14169,9,97,8,0.0 +14169,7,30,44,0.0 +14169,18,62.5,22,0.0 +14169,62,49.3,13,0.0 +14169,65,21.05,20,0.0 +14169,59,55,19,0.0 +14169,33,2.5,34,0.0 +14169,52,7,50,0.0 +14169,27,43.9,43,0.0 +14169,14,23.25,2,0.0 +14169,64,33.25,20,0.0 +14169,39,18,14,0.0 +14169,60,34,44,0.0 +14169,22,21,35,0.0 +14169,38,263.5,3,0.0 +14169,50,16.25,17,0.0 +14169,28,45.6,18,0.0 +14169,70,15,26,0.0 +14169,2,19,14,0.0 +14169,66,17,31,0.0 +14169,54,7.45,34,0.0 +14170,61,28.5,42,0.0 +14170,47,9.5,46,0.0 +14170,23,9,30,0.0 +14170,14,23.25,49,0.0 +14170,38,263.5,38,0.0 +14170,18,62.5,3,0.0 +14170,57,19.5,42,0.0 +14170,50,16.25,28,0.0 +14170,2,19,47,0.0 +14170,67,14,4,0.0 +14170,15,15.5,32,0.0 +14171,14,23.25,14,0.0 +14171,67,14,21,0.0 +14171,62,49.3,4,0.0 +14171,20,81,19,0.0 +14171,18,62.5,13,0.0 +14171,23,9,24,0.0 +14171,73,15,50,0.0 +14171,41,9.65,15,0.0 +14171,17,39,32,0.0 +14172,29,123.79,27,0.0 +14172,77,13,32,0.0 +14172,20,81,8,0.0 +14172,10,31,8,0.0 +14172,41,9.65,20,0.0 +14172,28,45.6,38,0.0 +14172,46,12,3,0.0 +14172,42,14,42,0.0 +14172,31,12.5,28,0.0 +14172,60,34,31,0.0 +14172,3,10,1,0.0 +14172,44,19.45,2,0.0 +14172,72,34.8,2,0.0 +14172,47,9.5,41,0.0 +14172,37,26,32,0.0 +14172,75,7.75,15,0.0 +14172,73,15,48,0.0 +14172,74,10,44,0.0 +14172,26,31.23,40,0.0 +14172,69,36,12,0.0 +14172,27,43.9,9,0.0 +14172,48,12.75,28,0.0 +14172,52,7,21,0.0 +14172,68,12.5,29,0.0 +14172,49,20,49,0.0 +14172,40,18.4,2,0.0 +14172,17,39,34,0.0 +14172,16,17.45,13,0.0 +14172,58,13.25,11,0.0 +14172,1,18,47,0.0 +14172,21,10,22,0.0 +14172,57,19.5,50,0.0 +14172,18,62.5,48,0.0 +14172,35,18,24,0.0 +14172,15,15.5,39,0.0 +14172,54,7.45,4,0.0 +14172,61,28.5,33,0.0 +14172,71,21.5,44,0.0 +14172,59,55,15,0.0 +14172,50,16.25,32,0.0 +14172,38,263.5,40,0.0 +14172,55,24,18,0.0 +14172,9,97,33,0.0 +14172,13,6,17,0.0 +14172,11,21,3,0.0 +14172,65,21.05,9,0.0 +14172,30,25.89,14,0.0 +14172,66,17,40,0.0 +14172,70,15,43,0.0 +14173,45,9.5,21,0.0 +14173,57,19.5,26,0.0 +14173,77,13,23,0.0 +14173,69,36,22,0.0 +14173,49,20,19,0.0 +14173,17,39,16,0.0 +14173,64,33.25,22,0.0 +14173,75,7.75,12,0.0 +14173,42,14,40,0.0 +14173,1,18,23,0.0 +14173,65,21.05,22,0.0 +14173,6,25,5,0.0 +14173,52,7,47,0.0 +14173,54,7.45,23,0.0 +14173,33,2.5,35,0.0 +14173,63,43.9,32,0.0 +14173,28,45.6,21,0.0 +14173,3,10,11,0.0 +14173,2,19,45,0.0 +14173,23,9,46,0.0 +14173,39,18,38,0.0 +14173,21,10,19,0.0 +14173,36,19,31,0.0 +14173,11,21,38,0.0 +14173,4,22,31,0.0 +14173,62,49.3,33,0.0 +14173,19,9.2,2,0.0 +14173,32,32,45,0.0 +14173,47,9.5,19,0.0 +14173,9,97,50,0.0 +14173,71,21.5,15,0.0 +14173,43,46,35,0.0 +14173,72,34.8,42,0.0 +14173,14,23.25,30,0.0 +14173,53,32.8,30,0.0 +14173,37,26,17,0.0 +14173,46,12,22,0.0 +14173,60,34,28,0.0 +14173,55,24,25,0.0 +14173,59,55,6,0.0 +14173,48,12.75,5,0.0 +14173,40,18.4,19,0.0 +14173,26,31.23,11,0.0 +14173,12,38,12,0.0 +14173,76,18,8,0.0 +14173,38,263.5,31,0.0 +14173,67,14,21,0.0 +14173,66,17,12,0.0 +14173,51,53,8,0.0 +14173,34,14,20,0.0 +14173,5,21.35,37,0.0 +14173,13,6,5,0.0 +14173,68,12.5,29,0.0 +14173,27,43.9,11,0.0 +14173,31,12.5,29,0.0 +14173,7,30,41,0.0 +14173,25,14,3,0.0 +14173,20,81,42,0.0 +14173,24,4.5,41,0.0 +14173,44,19.45,5,0.0 +14173,16,17.45,7,0.0 +14173,50,16.25,10,0.0 +14173,61,28.5,8,0.0 +14173,41,9.65,5,0.0 +14173,15,15.5,20,0.0 +14173,56,38,28,0.0 +14173,29,123.79,6,0.0 +14173,10,31,10,0.0 +14173,8,40,49,0.0 +14173,70,15,44,0.0 +14173,35,18,49,0.0 +14173,58,13.25,33,0.0 +14174,8,40,18,0.0 +14174,69,36,40,0.0 +14174,35,18,48,0.0 +14174,13,6,49,0.0 +14174,55,24,31,0.0 +14174,42,14,36,0.0 +14174,53,32.8,42,0.0 +14174,54,7.45,11,0.0 +14174,36,19,41,0.0 +14174,18,62.5,48,0.0 +14174,9,97,25,0.0 +14174,14,23.25,39,0.0 +14174,5,21.35,2,0.0 +14174,60,34,36,0.0 +14174,50,16.25,37,0.0 +14174,49,20,17,0.0 +14174,12,38,18,0.0 +14174,41,9.65,4,0.0 +14174,44,19.45,6,0.0 +14174,68,12.5,46,0.0 +14174,56,38,38,0.0 +14174,31,12.5,17,0.0 +14174,1,18,11,0.0 +14174,70,15,39,0.0 +14174,27,43.9,22,0.0 +14174,37,26,14,0.0 +14174,75,7.75,7,0.0 +14174,6,25,39,0.0 +14174,23,9,24,0.0 +14174,51,53,29,0.0 +14174,17,39,27,0.0 +14174,25,14,39,0.0 +14174,2,19,31,0.0 +14174,77,13,4,0.0 +14174,38,263.5,50,0.0 +14174,74,10,26,0.0 +14174,61,28.5,5,0.0 +14174,3,10,17,0.0 +14174,33,2.5,11,0.0 +14174,20,81,17,0.0 +14174,76,18,25,0.0 +14174,57,19.5,20,0.0 +14174,45,9.5,11,0.0 +14174,46,12,38,0.0 +14174,66,17,45,0.0 +14174,32,32,49,0.0 +14174,11,21,1,0.0 +14174,67,14,28,0.0 +14174,52,7,27,0.0 +14174,16,17.45,15,0.0 +14174,73,15,9,0.0 +14174,19,9.2,37,0.0 +14174,39,18,14,0.0 +14174,40,18.4,18,0.0 +14174,43,46,50,0.0 +14174,64,33.25,24,0.0 +14174,4,22,32,0.0 +14174,24,4.5,29,0.0 +14175,65,21.05,47,0.0 +14175,46,12,24,0.0 +14175,60,34,28,0.0 +14175,25,14,17,0.0 +14175,24,4.5,33,0.0 +14175,75,7.75,3,0.0 +14175,22,21,18,0.0 +14175,12,38,31,0.0 +14175,64,33.25,7,0.0 +14175,36,19,17,0.0 +14175,2,19,17,0.0 +14175,77,13,23,0.0 +14175,18,62.5,49,0.0 +14175,23,9,21,0.0 +14175,67,14,35,0.0 +14175,47,9.5,18,0.0 +14175,71,21.5,12,0.0 +14175,26,31.23,33,0.0 +14175,45,9.5,44,0.0 +14175,58,13.25,25,0.0 +14175,49,20,34,0.0 +14175,14,23.25,14,0.0 +14175,19,9.2,35,0.0 +14175,33,2.5,28,0.0 +14175,6,25,26,0.0 +14175,20,81,46,0.0 +14175,54,7.45,11,0.0 +14175,34,14,32,0.0 +14175,73,15,27,0.0 +14175,61,28.5,47,0.0 +14175,39,18,14,0.0 +14175,27,43.9,17,0.0 +14175,37,26,46,0.0 +14175,5,21.35,38,0.0 +14175,3,10,45,0.0 +14175,17,39,31,0.0 +14175,72,34.8,38,0.0 +14175,51,53,2,0.0 +14175,10,31,34,0.0 +14175,63,43.9,6,0.0 +14175,48,12.75,16,0.0 +14175,50,16.25,8,0.0 +14175,9,97,12,0.0 +14175,11,21,36,0.0 +14175,52,7,24,0.0 +14175,16,17.45,21,0.0 +14175,13,6,8,0.0 +14175,41,9.65,38,0.0 +14175,32,32,50,0.0 +14175,70,15,48,0.0 +14175,62,49.3,43,0.0 +14175,15,15.5,45,0.0 +14175,38,263.5,36,0.0 +14175,42,14,30,0.0 +14175,7,30,21,0.0 +14175,31,12.5,48,0.0 +14175,21,10,4,0.0 +14175,30,25.89,1,0.0 +14175,28,45.6,27,0.0 +14175,68,12.5,40,0.0 +14175,8,40,1,0.0 +14175,59,55,5,0.0 +14175,55,24,18,0.0 +14175,69,36,4,0.0 +14175,43,46,38,0.0 +14175,74,10,50,0.0 +14175,29,123.79,31,0.0 +14175,35,18,47,0.0 +14175,53,32.8,37,0.0 +14175,40,18.4,1,0.0 +14175,4,22,3,0.0 +14175,44,19.45,15,0.0 +14175,66,17,34,0.0 +14176,19,9.2,44,0.0 +14176,24,4.5,49,0.0 +14176,8,40,16,0.0 +14176,59,55,49,0.0 +14176,52,7,25,0.0 +14176,72,34.8,48,0.0 +14176,75,7.75,34,0.0 +14176,12,38,9,0.0 +14176,51,53,41,0.0 +14176,11,21,25,0.0 +14176,66,17,30,0.0 +14176,30,25.89,49,0.0 +14176,63,43.9,23,0.0 +14176,25,14,30,0.0 +14176,76,18,29,0.0 +14176,71,21.5,37,0.0 +14176,73,15,31,0.0 +14176,37,26,43,0.0 +14176,65,21.05,14,0.0 +14176,15,15.5,40,0.0 +14176,53,32.8,4,0.0 +14176,23,9,19,0.0 +14176,7,30,7,0.0 +14176,32,32,9,0.0 +14176,1,18,29,0.0 +14176,33,2.5,27,0.0 +14176,70,15,10,0.0 +14176,26,31.23,1,0.0 +14176,77,13,2,0.0 +14176,10,31,2,0.0 +14176,21,10,37,0.0 +14176,14,23.25,21,0.0 +14176,74,10,22,0.0 +14176,39,18,37,0.0 +14176,68,12.5,43,0.0 +14176,45,9.5,41,0.0 +14176,49,20,6,0.0 +14176,17,39,13,0.0 +14176,41,9.65,11,0.0 +14176,54,7.45,36,0.0 +14176,13,6,50,0.0 +14176,50,16.25,22,0.0 +14176,69,36,48,0.0 +14176,2,19,26,0.0 +14176,46,12,28,0.0 +14176,16,17.45,31,0.0 +14176,47,9.5,6,0.0 +14176,31,12.5,24,0.0 +14176,6,25,36,0.0 +14176,18,62.5,15,0.0 +14176,28,45.6,8,0.0 +14176,61,28.5,18,0.0 +14176,3,10,31,0.0 +14176,20,81,13,0.0 +14176,60,34,49,0.0 +14176,58,13.25,33,0.0 +14176,22,21,42,0.0 +14176,67,14,33,0.0 +14176,35,18,21,0.0 +14176,55,24,36,0.0 +14177,77,13,17,0.0 +14177,16,17.45,32,0.0 +14177,21,10,27,0.0 +14177,63,43.9,3,0.0 +14177,30,25.89,25,0.0 +14177,2,19,16,0.0 +14177,54,7.45,33,0.0 +14177,19,9.2,10,0.0 +14177,61,28.5,39,0.0 +14177,58,13.25,11,0.0 +14177,75,7.75,21,0.0 +14177,23,9,16,0.0 +14177,70,15,33,0.0 +14177,11,21,32,0.0 +14177,8,40,32,0.0 +14177,45,9.5,29,0.0 +14177,62,49.3,3,0.0 +14177,15,15.5,16,0.0 +14177,52,7,44,0.0 +14177,29,123.79,7,0.0 +14177,38,263.5,22,0.0 +14177,34,14,37,0.0 +14177,6,25,23,0.0 +14177,35,18,36,0.0 +14177,33,2.5,28,0.0 +14177,66,17,3,0.0 +14177,17,39,47,0.0 +14177,5,21.35,36,0.0 +14177,22,21,47,0.0 +14177,76,18,11,0.0 +14177,12,38,50,0.0 +14177,55,24,16,0.0 +14177,42,14,27,0.0 +14177,74,10,21,0.0 +14177,1,18,46,0.0 +14177,41,9.65,4,0.0 +14177,36,19,8,0.0 +14177,47,9.5,26,0.0 +14177,3,10,36,0.0 +14177,50,16.25,7,0.0 +14177,64,33.25,3,0.0 +14177,67,14,25,0.0 +14177,20,81,17,0.0 +14177,48,12.75,29,0.0 +14177,39,18,40,0.0 +14177,65,21.05,45,0.0 +14177,72,34.8,33,0.0 +14177,69,36,42,0.0 +14177,57,19.5,4,0.0 +14178,54,7.45,21,0.0 +14178,47,9.5,14,0.0 +14178,32,32,20,0.0 +14178,18,62.5,14,0.0 +14178,50,16.25,50,0.0 +14178,19,9.2,49,0.0 +14178,61,28.5,25,0.0 +14178,74,10,4,0.0 +14178,21,10,16,0.0 +14178,29,123.79,38,0.0 +14178,35,18,30,0.0 +14178,48,12.75,11,0.0 +14178,33,2.5,6,0.0 +14178,70,15,27,0.0 +14178,9,97,40,0.0 +14178,64,33.25,37,0.0 +14178,65,21.05,8,0.0 +14178,13,6,49,0.0 +14178,8,40,12,0.0 +14178,28,45.6,14,0.0 +14178,24,4.5,17,0.0 +14178,16,17.45,10,0.0 +14178,77,13,50,0.0 +14178,51,53,27,0.0 +14178,2,19,35,0.0 +14178,31,12.5,17,0.0 +14178,41,9.65,23,0.0 +14178,44,19.45,13,0.0 +14179,23,9,1,0.0 +14179,10,31,12,0.0 +14179,32,32,23,0.0 +14179,17,39,6,0.0 +14179,51,53,28,0.0 +14179,11,21,43,0.0 +14179,40,18.4,24,0.0 +14179,63,43.9,19,0.0 +14179,16,17.45,7,0.0 +14179,15,15.5,31,0.0 +14179,19,9.2,35,0.0 +14179,25,14,20,0.0 +14179,36,19,20,0.0 +14179,68,12.5,38,0.0 +14179,21,10,2,0.0 +14179,30,25.89,19,0.0 +14179,67,14,11,0.0 +14179,37,26,27,0.0 +14179,70,15,16,0.0 +14179,42,14,50,0.0 +14179,66,17,29,0.0 +14179,47,9.5,39,0.0 +14179,38,263.5,14,0.0 +14179,61,28.5,18,0.0 +14179,60,34,5,0.0 +14179,27,43.9,42,0.0 +14179,65,21.05,37,0.0 +14179,56,38,42,0.0 +14179,74,10,7,0.0 +14179,41,9.65,18,0.0 +14179,26,31.23,42,0.0 +14179,64,33.25,6,0.0 +14179,77,13,42,0.0 +14179,52,7,32,0.0 +14179,1,18,44,0.0 +14179,53,32.8,49,0.0 +14179,44,19.45,28,0.0 +14179,75,7.75,9,0.0 +14179,33,2.5,21,0.0 +14179,55,24,22,0.0 +14179,43,46,29,0.0 +14179,57,19.5,2,0.0 +14179,3,10,6,0.0 +14179,13,6,45,0.0 +14179,6,25,29,0.0 +14179,4,22,2,0.0 +14179,59,55,16,0.0 +14180,68,12.5,21,0.0 +14180,1,18,34,0.0 +14180,51,53,42,0.0 +14180,36,19,14,0.0 +14180,48,12.75,3,0.0 +14180,9,97,40,0.0 +14180,5,21.35,27,0.0 +14180,56,38,31,0.0 +14180,22,21,16,0.0 +14180,31,12.5,15,0.0 +14180,49,20,37,0.0 +14180,37,26,10,0.0 +14180,16,17.45,26,0.0 +14180,12,38,10,0.0 +14180,55,24,30,0.0 +14180,77,13,7,0.0 +14180,42,14,24,0.0 +14180,76,18,6,0.0 +14180,18,62.5,7,0.0 +14180,43,46,50,0.0 +14180,73,15,8,0.0 +14180,54,7.45,33,0.0 +14180,53,32.8,19,0.0 +14180,29,123.79,19,0.0 +14180,25,14,48,0.0 +14180,69,36,17,0.0 +14180,17,39,13,0.0 +14180,2,19,48,0.0 +14180,50,16.25,23,0.0 +14180,13,6,37,0.0 +14180,35,18,23,0.0 +14180,40,18.4,22,0.0 +14180,30,25.89,37,0.0 +14180,59,55,28,0.0 +14180,58,13.25,16,0.0 +14180,39,18,23,0.0 +14180,65,21.05,10,0.0 +14180,28,45.6,9,0.0 +14180,23,9,27,0.0 +14180,24,4.5,43,0.0 +14180,41,9.65,22,0.0 +14180,47,9.5,12,0.0 +14180,63,43.9,42,0.0 +14180,10,31,41,0.0 +14180,45,9.5,21,0.0 +14180,15,15.5,17,0.0 +14180,26,31.23,10,0.0 +14180,44,19.45,5,0.0 +14180,64,33.25,20,0.0 +14180,6,25,8,0.0 +14180,33,2.5,20,0.0 +14180,19,9.2,41,0.0 +14180,20,81,12,0.0 +14180,57,19.5,13,0.0 +14180,32,32,41,0.0 +14180,4,22,46,0.0 +14180,66,17,40,0.0 +14180,8,40,28,0.0 +14180,21,10,11,0.0 +14180,72,34.8,19,0.0 +14180,74,10,18,0.0 +14180,34,14,24,0.0 +14180,3,10,22,0.0 +14180,11,21,5,0.0 +14180,60,34,26,0.0 +14180,62,49.3,46,0.0 +14180,71,21.5,30,0.0 +14180,38,263.5,6,0.0 +14180,75,7.75,9,0.0 +14180,61,28.5,19,0.0 +14180,70,15,32,0.0 +14180,67,14,13,0.0 +14180,14,23.25,25,0.0 +14180,46,12,50,0.0 +14181,23,9,3,0.0 +14181,46,12,1,0.0 +14181,20,81,29,0.0 +14181,19,9.2,30,0.0 +14181,61,28.5,36,0.0 +14181,28,45.6,23,0.0 +14181,7,30,40,0.0 +14181,69,36,19,0.0 +14181,74,10,9,0.0 +14181,29,123.79,17,0.0 +14181,77,13,4,0.0 +14181,34,14,13,0.0 +14181,30,25.89,45,0.0 +14181,55,24,44,0.0 +14181,42,14,6,0.0 +14181,45,9.5,33,0.0 +14181,68,12.5,19,0.0 +14181,47,9.5,11,0.0 +14181,67,14,3,0.0 +14181,41,9.65,11,0.0 +14181,12,38,47,0.0 +14181,22,21,31,0.0 +14181,25,14,5,0.0 +14181,43,46,7,0.0 +14181,72,34.8,14,0.0 +14181,5,21.35,38,0.0 +14181,71,21.5,6,0.0 +14181,21,10,28,0.0 +14181,18,62.5,5,0.0 +14181,65,21.05,19,0.0 +14181,10,31,12,0.0 +14181,16,17.45,27,0.0 +14181,75,7.75,29,0.0 +14181,44,19.45,35,0.0 +14181,15,15.5,41,0.0 +14181,9,97,1,0.0 +14181,6,25,47,0.0 +14181,33,2.5,40,0.0 +14181,73,15,6,0.0 +14181,13,6,11,0.0 +14181,3,10,25,0.0 +14181,56,38,35,0.0 +14181,52,7,2,0.0 +14181,76,18,19,0.0 +14181,53,32.8,46,0.0 +14182,6,25,10,0.0 +14182,76,18,16,0.0 +14182,44,19.45,48,0.0 +14182,22,21,19,0.0 +14182,67,14,31,0.0 +14182,3,10,33,0.0 +14182,36,19,13,0.0 +14182,35,18,17,0.0 +14182,62,49.3,9,0.0 +14182,33,2.5,16,0.0 +14182,15,15.5,19,0.0 +14182,73,15,29,0.0 +14182,5,21.35,30,0.0 +14182,1,18,45,0.0 +14182,9,97,34,0.0 +14182,74,10,9,0.0 +14182,52,7,46,0.0 +14182,11,21,21,0.0 +14182,7,30,48,0.0 +14182,32,32,34,0.0 +14182,39,18,41,0.0 +14182,50,16.25,27,0.0 +14182,24,4.5,50,0.0 +14182,51,53,17,0.0 +14182,60,34,22,0.0 +14182,23,9,47,0.0 +14182,46,12,17,0.0 +14182,40,18.4,16,0.0 +14182,28,45.6,50,0.0 +14182,4,22,14,0.0 +14183,33,2.5,48,0.0 +14183,39,18,1,0.0 +14183,58,13.25,2,0.0 +14183,50,16.25,14,0.0 +14183,26,31.23,17,0.0 +14183,51,53,4,0.0 +14183,23,9,7,0.0 +14183,20,81,35,0.0 +14183,66,17,49,0.0 +14183,71,21.5,49,0.0 +14183,74,10,4,0.0 +14183,11,21,3,0.0 +14183,4,22,22,0.0 +14183,7,30,10,0.0 +14183,14,23.25,50,0.0 +14183,10,31,1,0.0 +14183,69,36,22,0.0 +14183,29,123.79,17,0.0 +14183,21,10,2,0.0 +14183,44,19.45,50,0.0 +14183,53,32.8,20,0.0 +14183,41,9.65,23,0.0 +14183,5,21.35,25,0.0 +14183,16,17.45,29,0.0 +14183,73,15,18,0.0 +14183,27,43.9,22,0.0 +14183,54,7.45,21,0.0 +14183,65,21.05,23,0.0 +14183,55,24,20,0.0 +14183,31,12.5,45,0.0 +14183,60,34,7,0.0 +14183,70,15,9,0.0 +14183,47,9.5,25,0.0 +14183,64,33.25,38,0.0 +14183,2,19,26,0.0 +14183,45,9.5,22,0.0 +14183,67,14,19,0.0 +14183,17,39,22,0.0 +14183,18,62.5,14,0.0 +14183,63,43.9,17,0.0 +14183,49,20,5,0.0 +14183,37,26,36,0.0 +14183,13,6,7,0.0 +14183,38,263.5,49,0.0 +14183,77,13,9,0.0 +14183,75,7.75,11,0.0 +14183,61,28.5,49,0.0 +14183,52,7,27,0.0 +14183,43,46,27,0.0 +14183,24,4.5,1,0.0 +14183,25,14,10,0.0 +14183,36,19,34,0.0 +14183,6,25,17,0.0 +14183,40,18.4,36,0.0 +14183,57,19.5,5,0.0 +14183,34,14,23,0.0 +14183,32,32,30,0.0 +14183,3,10,38,0.0 +14183,9,97,43,0.0 +14183,30,25.89,20,0.0 +14183,76,18,15,0.0 +14183,12,38,6,0.0 +14183,68,12.5,34,0.0 +14183,59,55,45,0.0 +14183,28,45.6,23,0.0 +14183,46,12,50,0.0 +14183,22,21,40,0.0 +14183,15,15.5,11,0.0 +14183,1,18,30,0.0 +14183,62,49.3,44,0.0 +14183,72,34.8,18,0.0 +14183,35,18,24,0.0 +14184,27,43.9,15,0.0 +14184,59,55,46,0.0 +14184,13,6,41,0.0 +14184,38,263.5,35,0.0 +14184,30,25.89,15,0.0 +14184,68,12.5,8,0.0 +14184,75,7.75,17,0.0 +14184,41,9.65,6,0.0 +14184,6,25,39,0.0 +14184,29,123.79,32,0.0 +14184,33,2.5,11,0.0 +14184,23,9,7,0.0 +14184,7,30,35,0.0 +14184,69,36,19,0.0 +14184,2,19,5,0.0 +14184,44,19.45,35,0.0 +14184,46,12,3,0.0 +14184,63,43.9,46,0.0 +14184,47,9.5,10,0.0 +14184,42,14,50,0.0 +14184,76,18,29,0.0 +14184,31,12.5,37,0.0 +14184,65,21.05,23,0.0 +14184,19,9.2,44,0.0 +14184,57,19.5,44,0.0 +14184,28,45.6,40,0.0 +14184,55,24,12,0.0 +14184,77,13,30,0.0 +14184,48,12.75,22,0.0 +14184,14,23.25,48,0.0 +14184,51,53,8,0.0 +14184,70,15,7,0.0 +14185,23,9,17,0.0 +14185,72,34.8,6,0.0 +14185,29,123.79,11,0.0 +14185,71,21.5,37,0.0 +14185,69,36,30,0.0 +14185,4,22,42,0.0 +14185,63,43.9,17,0.0 +14185,56,38,22,0.0 +14185,35,18,26,0.0 +14185,27,43.9,41,0.0 +14185,14,23.25,15,0.0 +14185,59,55,40,0.0 +14185,47,9.5,3,0.0 +14185,58,13.25,49,0.0 +14185,43,46,46,0.0 +14185,77,13,44,0.0 +14185,57,19.5,9,0.0 +14185,24,4.5,21,0.0 +14185,11,21,49,0.0 +14185,73,15,44,0.0 +14185,9,97,2,0.0 +14185,55,24,2,0.0 +14185,15,15.5,21,0.0 +14185,8,40,37,0.0 +14185,25,14,40,0.0 +14185,60,34,49,0.0 +14185,16,17.45,36,0.0 +14185,32,32,3,0.0 +14185,10,31,9,0.0 +14185,36,19,6,0.0 +14185,51,53,42,0.0 +14185,26,31.23,20,0.0 +14185,37,26,50,0.0 +14185,42,14,47,0.0 +14185,52,7,12,0.0 +14185,39,18,35,0.0 +14185,41,9.65,8,0.0 +14185,75,7.75,8,0.0 +14185,49,20,11,0.0 +14185,66,17,16,0.0 +14185,33,2.5,18,0.0 +14185,5,21.35,35,0.0 +14185,20,81,50,0.0 +14185,6,25,8,0.0 +14185,12,38,30,0.0 +14185,50,16.25,33,0.0 +14185,13,6,48,0.0 +14185,65,21.05,22,0.0 +14185,30,25.89,25,0.0 +14185,45,9.5,5,0.0 +14185,18,62.5,19,0.0 +14185,1,18,31,0.0 +14185,28,45.6,4,0.0 +14185,34,14,28,0.0 +14185,38,263.5,29,0.0 +14185,3,10,10,0.0 +14185,68,12.5,34,0.0 +14185,64,33.25,33,0.0 +14185,53,32.8,33,0.0 +14185,70,15,9,0.0 +14185,7,30,31,0.0 +14185,46,12,10,0.0 +14185,21,10,43,0.0 +14185,2,19,1,0.0 +14185,22,21,6,0.0 +14186,48,12.75,8,0.0 +14186,41,9.65,42,0.0 +14186,62,49.3,45,0.0 +14186,36,19,5,0.0 +14186,34,14,15,0.0 +14186,38,263.5,1,0.0 +14186,7,30,48,0.0 +14186,53,32.8,1,0.0 +14186,72,34.8,3,0.0 +14186,11,21,35,0.0 +14186,21,10,12,0.0 +14186,16,17.45,30,0.0 +14186,27,43.9,45,0.0 +14186,50,16.25,46,0.0 +14186,42,14,30,0.0 +14186,18,62.5,45,0.0 +14186,40,18.4,20,0.0 +14186,63,43.9,24,0.0 +14186,65,21.05,12,0.0 +14186,55,24,22,0.0 +14186,73,15,29,0.0 +14186,54,7.45,28,0.0 +14186,30,25.89,20,0.0 +14186,60,34,39,0.0 +14186,22,21,23,0.0 +14186,25,14,35,0.0 +14186,49,20,46,0.0 +14186,12,38,31,0.0 +14186,35,18,16,0.0 +14186,71,21.5,28,0.0 +14186,66,17,10,0.0 +14187,15,15.5,10,0.0 +14187,7,30,26,0.0 +14187,34,14,22,0.0 +14187,25,14,21,0.0 +14187,57,19.5,9,0.0 +14187,13,6,37,0.0 +14187,10,31,21,0.0 +14187,16,17.45,10,0.0 +14187,17,39,47,0.0 +14187,46,12,7,0.0 +14187,30,25.89,48,0.0 +14187,48,12.75,12,0.0 +14187,42,14,28,0.0 +14187,24,4.5,17,0.0 +14187,52,7,30,0.0 +14187,53,32.8,1,0.0 +14187,77,13,47,0.0 +14187,44,19.45,4,0.0 +14187,74,10,24,0.0 +14187,20,81,29,0.0 +14187,73,15,27,0.0 +14187,76,18,23,0.0 +14187,35,18,40,0.0 +14187,12,38,32,0.0 +14187,2,19,8,0.0 +14187,49,20,44,0.0 +14187,62,49.3,8,0.0 +14187,9,97,45,0.0 +14187,59,55,7,0.0 +14187,4,22,47,0.0 +14187,21,10,26,0.0 +14187,64,33.25,29,0.0 +14187,66,17,46,0.0 +14187,27,43.9,28,0.0 +14187,69,36,36,0.0 +14187,45,9.5,8,0.0 +14187,32,32,30,0.0 +14187,22,21,43,0.0 +14187,26,31.23,45,0.0 +14187,65,21.05,8,0.0 +14187,19,9.2,6,0.0 +14187,51,53,12,0.0 +14187,37,26,16,0.0 +14187,72,34.8,8,0.0 +14187,63,43.9,28,0.0 +14187,18,62.5,43,0.0 +14187,54,7.45,39,0.0 +14187,14,23.25,8,0.0 +14187,3,10,1,0.0 +14187,56,38,2,0.0 +14187,40,18.4,22,0.0 +14187,47,9.5,50,0.0 +14187,39,18,16,0.0 +14187,29,123.79,8,0.0 +14187,11,21,16,0.0 +14187,5,21.35,50,0.0 +14187,31,12.5,45,0.0 +14187,58,13.25,45,0.0 +14187,28,45.6,1,0.0 +14187,70,15,49,0.0 +14187,60,34,47,0.0 +14187,33,2.5,36,0.0 +14187,43,46,40,0.0 +14187,67,14,45,0.0 +14187,50,16.25,11,0.0 +14187,1,18,32,0.0 +14187,6,25,45,0.0 +14188,28,45.6,47,0.0 +14188,40,18.4,37,0.0 +14188,63,43.9,39,0.0 +14188,21,10,16,0.0 +14188,24,4.5,26,0.0 +14188,41,9.65,4,0.0 +14188,56,38,13,0.0 +14188,67,14,17,0.0 +14188,42,14,45,0.0 +14188,47,9.5,24,0.0 +14188,23,9,12,0.0 +14188,51,53,48,0.0 +14188,26,31.23,25,0.0 +14188,6,25,15,0.0 +14188,46,12,11,0.0 +14188,31,12.5,24,0.0 +14188,74,10,29,0.0 +14188,61,28.5,10,0.0 +14188,3,10,39,0.0 +14188,76,18,8,0.0 +14189,10,31,8,0.0 +14189,2,19,32,0.0 +14189,39,18,40,0.0 +14189,31,12.5,33,0.0 +14189,18,62.5,8,0.0 +14189,32,32,4,0.0 +14189,28,45.6,36,0.0 +14189,50,16.25,40,0.0 +14189,76,18,14,0.0 +14189,24,4.5,35,0.0 +14190,32,32,32,0.0 +14190,19,9.2,41,0.0 +14190,65,21.05,22,0.0 +14190,37,26,48,0.0 +14190,5,21.35,40,0.0 +14190,26,31.23,14,0.0 +14190,34,14,46,0.0 +14190,59,55,31,0.0 +14190,50,16.25,13,0.0 +14190,30,25.89,21,0.0 +14190,8,40,41,0.0 +14190,16,17.45,14,0.0 +14190,12,38,1,0.0 +14190,47,9.5,22,0.0 +14190,58,13.25,33,0.0 +14190,18,62.5,31,0.0 +14190,22,21,22,0.0 +14190,31,12.5,14,0.0 +14190,44,19.45,27,0.0 +14190,64,33.25,31,0.0 +14190,24,4.5,1,0.0 +14190,42,14,36,0.0 +14190,6,25,22,0.0 +14190,52,7,38,0.0 +14190,38,263.5,39,0.0 +14190,63,43.9,21,0.0 +14190,56,38,42,0.0 +14190,39,18,26,0.0 +14190,69,36,48,0.0 +14190,70,15,26,0.0 +14190,20,81,25,0.0 +14190,76,18,40,0.0 +14190,15,15.5,14,0.0 +14190,25,14,30,0.0 +14190,45,9.5,7,0.0 +14190,66,17,46,0.0 +14190,10,31,16,0.0 +14190,11,21,12,0.0 +14190,61,28.5,36,0.0 +14191,45,9.5,49,0.0 +14191,41,9.65,31,0.0 +14191,7,30,3,0.0 +14191,22,21,44,0.0 +14191,42,14,15,0.0 +14191,21,10,50,0.0 +14191,49,20,11,0.0 +14191,34,14,37,0.0 +14191,74,10,1,0.0 +14191,30,25.89,30,0.0 +14191,64,33.25,47,0.0 +14191,69,36,25,0.0 +14191,60,34,14,0.0 +14191,4,22,25,0.0 +14191,2,19,44,0.0 +14191,50,16.25,1,0.0 +14191,35,18,32,0.0 +14191,47,9.5,7,0.0 +14191,13,6,8,0.0 +14191,36,19,40,0.0 +14191,51,53,23,0.0 +14191,48,12.75,35,0.0 +14191,16,17.45,37,0.0 +14191,18,62.5,1,0.0 +14192,62,49.3,50,0.0 +14192,66,17,19,0.0 +14192,32,32,35,0.0 +14192,54,7.45,43,0.0 +14192,2,19,40,0.0 +14192,73,15,23,0.0 +14192,26,31.23,11,0.0 +14192,31,12.5,3,0.0 +14192,23,9,42,0.0 +14192,76,18,40,0.0 +14192,14,23.25,18,0.0 +14192,58,13.25,24,0.0 +14193,20,81,46,0.0 +14193,52,7,44,0.0 +14193,26,31.23,44,0.0 +14193,18,62.5,23,0.0 +14193,50,16.25,28,0.0 +14194,26,31.23,16,0.0 +14194,64,33.25,30,0.0 +14194,13,6,28,0.0 +14194,41,9.65,21,0.0 +14194,45,9.5,24,0.0 +14194,35,18,19,0.0 +14194,48,12.75,2,0.0 +14194,62,49.3,23,0.0 +14194,36,19,40,0.0 +14194,4,22,15,0.0 +14194,67,14,24,0.0 +14194,47,9.5,47,0.0 +14194,69,36,22,0.0 +14194,8,40,19,0.0 +14194,28,45.6,29,0.0 +14194,51,53,15,0.0 +14194,18,62.5,6,0.0 +14194,65,21.05,32,0.0 +14194,76,18,20,0.0 +14194,20,81,27,0.0 +14194,11,21,50,0.0 +14194,38,263.5,44,0.0 +14194,50,16.25,17,0.0 +14194,29,123.79,46,0.0 +14194,23,9,34,0.0 +14194,14,23.25,23,0.0 +14194,56,38,7,0.0 +14194,33,2.5,5,0.0 +14194,1,18,42,0.0 +14194,30,25.89,17,0.0 +14194,9,97,6,0.0 +14194,68,12.5,20,0.0 +14194,17,39,42,0.0 +14194,58,13.25,35,0.0 +14194,12,38,21,0.0 +14194,37,26,38,0.0 +14194,15,15.5,41,0.0 +14194,34,14,14,0.0 +14194,54,7.45,10,0.0 +14194,43,46,46,0.0 +14194,27,43.9,8,0.0 +14194,49,20,15,0.0 +14194,3,10,22,0.0 +14194,7,30,27,0.0 +14194,66,17,30,0.0 +14194,25,14,43,0.0 +14194,75,7.75,7,0.0 +14194,72,34.8,25,0.0 +14194,32,32,10,0.0 +14194,21,10,10,0.0 +14194,24,4.5,33,0.0 +14194,70,15,10,0.0 +14194,61,28.5,21,0.0 +14194,19,9.2,12,0.0 +14194,71,21.5,48,0.0 +14194,6,25,24,0.0 +14194,59,55,39,0.0 +14194,40,18.4,10,0.0 +14194,22,21,26,0.0 +14194,31,12.5,9,0.0 +14194,52,7,37,0.0 +14194,77,13,14,0.0 +14194,55,24,49,0.0 +14194,42,14,9,0.0 +14194,44,19.45,38,0.0 +14194,10,31,5,0.0 +14194,53,32.8,36,0.0 +14194,74,10,19,0.0 +14194,63,43.9,31,0.0 +14194,46,12,38,0.0 +14194,60,34,6,0.0 +14194,73,15,5,0.0 +14194,2,19,35,0.0 +14194,39,18,23,0.0 +14194,16,17.45,48,0.0 +14195,70,15,14,0.0 +14195,57,19.5,33,0.0 +14195,58,13.25,10,0.0 +14195,72,34.8,44,0.0 +14195,61,28.5,18,0.0 +14195,65,21.05,1,0.0 +14195,75,7.75,30,0.0 +14195,7,30,39,0.0 +14195,42,14,28,0.0 +14195,17,39,45,0.0 +14195,32,32,48,0.0 +14195,11,21,2,0.0 +14195,15,15.5,4,0.0 +14195,38,263.5,39,0.0 +14195,69,36,49,0.0 +14195,49,20,27,0.0 +14195,71,21.5,46,0.0 +14195,14,23.25,45,0.0 +14195,51,53,38,0.0 +14195,25,14,17,0.0 +14195,13,6,33,0.0 +14195,8,40,23,0.0 +14195,10,31,50,0.0 +14195,48,12.75,12,0.0 +14195,21,10,32,0.0 +14195,18,62.5,12,0.0 +14195,24,4.5,12,0.0 +14195,63,43.9,20,0.0 +14195,47,9.5,6,0.0 +14195,27,43.9,31,0.0 +14195,30,25.89,42,0.0 +14195,54,7.45,33,0.0 +14195,20,81,50,0.0 +14195,64,33.25,35,0.0 +14195,46,12,50,0.0 +14195,28,45.6,49,0.0 +14195,45,9.5,16,0.0 +14195,74,10,7,0.0 +14195,55,24,2,0.0 +14195,43,46,18,0.0 +14195,37,26,41,0.0 +14195,36,19,38,0.0 +14195,2,19,8,0.0 +14195,6,25,29,0.0 +14195,62,49.3,41,0.0 +14195,34,14,33,0.0 +14195,23,9,7,0.0 +14195,29,123.79,26,0.0 +14195,5,21.35,17,0.0 +14195,39,18,46,0.0 +14195,33,2.5,33,0.0 +14195,77,13,23,0.0 +14195,9,97,43,0.0 +14195,16,17.45,38,0.0 +14195,26,31.23,50,0.0 +14195,35,18,34,0.0 +14195,19,9.2,41,0.0 +14195,68,12.5,46,0.0 +14195,67,14,5,0.0 +14195,40,18.4,10,0.0 +14195,50,16.25,18,0.0 +14195,60,34,37,0.0 +14195,76,18,18,0.0 +14195,31,12.5,27,0.0 +14195,66,17,40,0.0 +14195,53,32.8,42,0.0 +14195,44,19.45,23,0.0 +14195,56,38,2,0.0 +14195,1,18,44,0.0 +14195,52,7,32,0.0 +14196,26,31.23,7,0.0 +14196,31,12.5,37,0.0 +14196,2,19,39,0.0 +14196,46,12,41,0.0 +14196,33,2.5,47,0.0 +14196,42,14,16,0.0 +14196,71,21.5,18,0.0 +14196,34,14,40,0.0 +14196,29,123.79,40,0.0 +14196,12,38,27,0.0 +14196,7,30,15,0.0 +14196,50,16.25,36,0.0 +14196,41,9.65,47,0.0 +14197,23,9,38,0.0 +14197,62,49.3,3,0.0 +14197,33,2.5,31,0.0 +14197,27,43.9,19,0.0 +14197,75,7.75,6,0.0 +14197,14,23.25,48,0.0 +14197,65,21.05,14,0.0 +14197,32,32,10,0.0 +14197,52,7,41,0.0 +14197,35,18,1,0.0 +14197,5,21.35,25,0.0 +14197,28,45.6,13,0.0 +14197,68,12.5,10,0.0 +14197,64,33.25,6,0.0 +14197,60,34,30,0.0 +14197,34,14,45,0.0 +14197,25,14,50,0.0 +14197,56,38,41,0.0 +14197,61,28.5,50,0.0 +14197,48,12.75,46,0.0 +14197,50,16.25,26,0.0 +14197,31,12.5,19,0.0 +14197,3,10,48,0.0 +14197,11,21,30,0.0 +14197,66,17,43,0.0 +14197,44,19.45,45,0.0 +14197,8,40,8,0.0 +14197,15,15.5,37,0.0 +14197,24,4.5,24,0.0 +14197,9,97,32,0.0 +14197,22,21,14,0.0 +14197,37,26,37,0.0 +14197,58,13.25,27,0.0 +14197,16,17.45,7,0.0 +14197,18,62.5,27,0.0 +14197,54,7.45,49,0.0 +14197,12,38,41,0.0 +14197,6,25,50,0.0 +14197,55,24,9,0.0 +14197,69,36,49,0.0 +14197,43,46,44,0.0 +14197,49,20,14,0.0 +14197,53,32.8,21,0.0 +14197,38,263.5,11,0.0 +14198,34,14,35,0.0 +14198,27,43.9,42,0.0 +14198,11,21,44,0.0 +14198,36,19,18,0.0 +14198,40,18.4,46,0.0 +14198,30,25.89,38,0.0 +14198,6,25,29,0.0 +14198,56,38,30,0.0 +14198,44,19.45,46,0.0 +14198,5,21.35,37,0.0 +14198,75,7.75,43,0.0 +14198,63,43.9,20,0.0 +14198,4,22,38,0.0 +14198,2,19,24,0.0 +14198,69,36,11,0.0 +14198,15,15.5,31,0.0 +14198,35,18,47,0.0 +14198,57,19.5,34,0.0 +14198,22,21,8,0.0 +14199,40,18.4,47,0.0 +14199,46,12,37,0.0 +14199,47,9.5,20,0.0 +14199,38,263.5,3,0.0 +14199,55,24,31,0.0 +14199,6,25,2,0.0 +14199,5,21.35,40,0.0 +14199,37,26,33,0.0 +14199,62,49.3,28,0.0 +14199,70,15,15,0.0 +14199,8,40,30,0.0 +14199,54,7.45,13,0.0 +14199,59,55,4,0.0 +14199,60,34,12,0.0 +14199,21,10,22,0.0 +14199,64,33.25,14,0.0 +14199,17,39,50,0.0 +14199,3,10,35,0.0 +14199,30,25.89,40,0.0 +14199,24,4.5,21,0.0 +14200,14,23.25,25,0.0 +14200,34,14,24,0.0 +14200,71,21.5,7,0.0 +14200,44,19.45,46,0.0 +14200,2,19,34,0.0 +14200,43,46,22,0.0 +14200,47,9.5,19,0.0 +14200,12,38,12,0.0 +14200,36,19,31,0.0 +14200,30,25.89,40,0.0 +14200,56,38,36,0.0 +14200,13,6,42,0.0 +14200,40,18.4,29,0.0 +14200,49,20,23,0.0 +14200,45,9.5,46,0.0 +14200,64,33.25,25,0.0 +14200,1,18,30,0.0 +14200,65,21.05,14,0.0 +14200,48,12.75,41,0.0 +14200,11,21,13,0.0 +14200,46,12,19,0.0 +14200,75,7.75,9,0.0 +14200,41,9.65,24,0.0 +14200,60,34,36,0.0 +14200,67,14,41,0.0 +14200,53,32.8,1,0.0 +14200,38,263.5,34,0.0 +14200,33,2.5,16,0.0 +14200,26,31.23,12,0.0 +14200,16,17.45,45,0.0 +14200,23,9,1,0.0 +14200,59,55,4,0.0 +14200,21,10,1,0.0 +14200,37,26,29,0.0 +14200,4,22,23,0.0 +14200,8,40,33,0.0 +14200,32,32,23,0.0 +14200,63,43.9,19,0.0 +14200,77,13,7,0.0 +14200,31,12.5,39,0.0 +14200,76,18,29,0.0 +14200,66,17,9,0.0 +14200,3,10,20,0.0 +14200,62,49.3,18,0.0 +14200,22,21,34,0.0 +14200,28,45.6,2,0.0 +14201,57,19.5,46,0.0 +14201,20,81,37,0.0 +14201,45,9.5,39,0.0 +14201,58,13.25,7,0.0 +14201,34,14,5,0.0 +14201,44,19.45,33,0.0 +14201,6,25,24,0.0 +14201,38,263.5,18,0.0 +14201,16,17.45,38,0.0 +14201,40,18.4,7,0.0 +14201,4,22,17,0.0 +14201,14,23.25,15,0.0 +14201,31,12.5,32,0.0 +14201,55,24,36,0.0 +14201,54,7.45,10,0.0 +14201,49,20,39,0.0 +14201,2,19,42,0.0 +14201,71,21.5,7,0.0 +14201,41,9.65,38,0.0 +14201,5,21.35,31,0.0 +14201,77,13,33,0.0 +14201,25,14,10,0.0 +14201,76,18,22,0.0 +14202,70,15,3,0.0 +14202,71,21.5,41,0.0 +14202,41,9.65,36,0.0 +14202,7,30,50,0.0 +14202,40,18.4,42,0.0 +14202,3,10,17,0.0 +14202,4,22,32,0.0 +14203,72,34.8,17,0.0 +14203,13,6,10,0.0 +14203,32,32,47,0.0 +14203,40,18.4,25,0.0 +14203,26,31.23,25,0.0 +14203,14,23.25,37,0.0 +14203,10,31,43,0.0 +14203,30,25.89,7,0.0 +14203,54,7.45,25,0.0 +14203,9,97,28,0.0 +14203,69,36,21,0.0 +14203,17,39,48,0.0 +14203,41,9.65,38,0.0 +14203,28,45.6,34,0.0 +14203,11,21,25,0.0 +14203,35,18,5,0.0 +14203,71,21.5,37,0.0 +14204,49,20,34,0.0 +14204,59,55,2,0.0 +14204,37,26,9,0.0 +14204,30,25.89,3,0.0 +14204,29,123.79,5,0.0 +14204,8,40,35,0.0 +14204,24,4.5,42,0.0 +14204,38,263.5,7,0.0 +14204,72,34.8,21,0.0 +14204,5,21.35,42,0.0 +14204,51,53,48,0.0 +14204,4,22,48,0.0 +14204,75,7.75,22,0.0 +14204,42,14,29,0.0 +14204,74,10,29,0.0 +14204,2,19,44,0.0 +14204,36,19,11,0.0 +14204,66,17,48,0.0 +14204,70,15,42,0.0 +14204,52,7,15,0.0 +14204,64,33.25,2,0.0 +14204,44,19.45,46,0.0 +14204,10,31,48,0.0 +14204,77,13,20,0.0 +14204,19,9.2,28,0.0 +14204,1,18,34,0.0 +14204,6,25,28,0.0 +14204,43,46,37,0.0 +14204,65,21.05,29,0.0 +14204,68,12.5,36,0.0 +14204,63,43.9,25,0.0 +14204,45,9.5,46,0.0 +14204,35,18,46,0.0 +14204,14,23.25,40,0.0 +14204,23,9,47,0.0 +14204,76,18,32,0.0 +14204,40,18.4,21,0.0 +14204,58,13.25,15,0.0 +14204,60,34,13,0.0 +14204,50,16.25,14,0.0 +14204,33,2.5,44,0.0 +14204,47,9.5,34,0.0 +14204,20,81,2,0.0 +14204,28,45.6,25,0.0 +14204,57,19.5,24,0.0 +14204,9,97,23,0.0 +14204,25,14,49,0.0 +14204,16,17.45,17,0.0 +14204,34,14,50,0.0 +14204,69,36,24,0.0 +14204,17,39,38,0.0 +14204,3,10,5,0.0 +14204,39,18,41,0.0 +14204,22,21,2,0.0 +14204,32,32,32,0.0 +14204,18,62.5,17,0.0 +14204,48,12.75,22,0.0 +14204,61,28.5,46,0.0 +14204,13,6,31,0.0 +14204,12,38,16,0.0 +14205,73,15,49,0.0 +14205,75,7.75,29,0.0 +14205,64,33.25,16,0.0 +14205,56,38,32,0.0 +14205,24,4.5,37,0.0 +14205,57,19.5,16,0.0 +14205,38,263.5,9,0.0 +14205,44,19.45,20,0.0 +14205,21,10,28,0.0 +14205,72,34.8,25,0.0 +14205,53,32.8,22,0.0 +14205,77,13,23,0.0 +14205,25,14,7,0.0 +14205,41,9.65,6,0.0 +14205,9,97,43,0.0 +14205,35,18,2,0.0 +14205,63,43.9,43,0.0 +14205,71,21.5,21,0.0 +14205,32,32,26,0.0 +14205,18,62.5,24,0.0 +14205,16,17.45,21,0.0 +14205,31,12.5,2,0.0 +14205,26,31.23,40,0.0 +14205,8,40,1,0.0 +14205,69,36,39,0.0 +14205,2,19,32,0.0 +14205,46,12,50,0.0 +14205,5,21.35,44,0.0 +14205,58,13.25,20,0.0 +14205,65,21.05,24,0.0 +14205,68,12.5,35,0.0 +14205,33,2.5,32,0.0 +14206,9,97,33,0.0 +14206,15,15.5,49,0.0 +14206,5,21.35,12,0.0 +14206,4,22,46,0.0 +14206,22,21,1,0.0 +14206,52,7,35,0.0 +14206,77,13,8,0.0 +14206,50,16.25,10,0.0 +14206,17,39,26,0.0 +14206,58,13.25,15,0.0 +14206,54,7.45,32,0.0 +14206,26,31.23,50,0.0 +14206,43,46,37,0.0 +14206,40,18.4,25,0.0 +14206,72,34.8,14,0.0 +14206,25,14,38,0.0 +14206,21,10,14,0.0 +14206,34,14,11,0.0 +14206,68,12.5,10,0.0 +14207,55,24,35,0.0 +14207,31,12.5,20,0.0 +14207,3,10,32,0.0 +14207,67,14,47,0.0 +14207,19,9.2,44,0.0 +14207,29,123.79,15,0.0 +14207,7,30,38,0.0 +14207,9,97,2,0.0 +14207,44,19.45,42,0.0 +14207,42,14,39,0.0 +14207,48,12.75,20,0.0 +14207,47,9.5,11,0.0 +14207,72,34.8,14,0.0 +14207,23,9,7,0.0 +14207,40,18.4,17,0.0 +14207,17,39,33,0.0 +14207,77,13,36,0.0 +14207,10,31,38,0.0 +14207,62,49.3,4,0.0 +14208,65,21.05,7,0.0 +14208,72,34.8,36,0.0 +14208,8,40,46,0.0 +14208,31,12.5,39,0.0 +14208,40,18.4,13,0.0 +14208,14,23.25,20,0.0 +14208,77,13,46,0.0 +14208,37,26,36,0.0 +14208,36,19,26,0.0 +14208,18,62.5,36,0.0 +14208,66,17,30,0.0 +14208,35,18,37,0.0 +14208,69,36,36,0.0 +14208,3,10,41,0.0 +14208,2,19,25,0.0 +14208,56,38,1,0.0 +14208,25,14,28,0.0 +14208,75,7.75,17,0.0 +14208,32,32,29,0.0 +14208,22,21,27,0.0 +14208,11,21,12,0.0 +14208,76,18,15,0.0 +14208,62,49.3,11,0.0 +14208,34,14,44,0.0 +14208,6,25,28,0.0 +14208,50,16.25,39,0.0 +14208,27,43.9,6,0.0 +14208,63,43.9,9,0.0 +14208,1,18,20,0.0 +14208,45,9.5,41,0.0 +14208,61,28.5,33,0.0 +14208,9,97,28,0.0 +14208,54,7.45,33,0.0 +14208,48,12.75,29,0.0 +14208,47,9.5,50,0.0 +14208,42,14,3,0.0 +14208,44,19.45,24,0.0 +14208,21,10,35,0.0 +14208,28,45.6,11,0.0 +14208,13,6,43,0.0 +14208,70,15,38,0.0 +14208,41,9.65,21,0.0 +14208,60,34,33,0.0 +14208,4,22,48,0.0 +14208,30,25.89,22,0.0 +14208,43,46,21,0.0 +14208,29,123.79,13,0.0 +14208,67,14,49,0.0 +14208,71,21.5,6,0.0 +14208,68,12.5,47,0.0 +14208,52,7,16,0.0 +14208,17,39,24,0.0 +14208,20,81,11,0.0 +14208,49,20,18,0.0 +14208,39,18,18,0.0 +14208,73,15,18,0.0 +14208,33,2.5,6,0.0 +14208,16,17.45,9,0.0 +14209,56,38,21,0.0 +14209,23,9,27,0.0 +14209,49,20,25,0.0 +14209,20,81,21,0.0 +14209,42,14,22,0.0 +14209,33,2.5,14,0.0 +14209,9,97,7,0.0 +14209,19,9.2,22,0.0 +14209,25,14,20,0.0 +14209,71,21.5,20,0.0 +14209,70,15,41,0.0 +14209,66,17,2,0.0 +14209,17,39,26,0.0 +14209,14,23.25,47,0.0 +14209,54,7.45,50,0.0 +14209,57,19.5,9,0.0 +14209,27,43.9,5,0.0 +14209,40,18.4,27,0.0 +14209,22,21,44,0.0 +14209,16,17.45,48,0.0 +14209,76,18,41,0.0 +14209,52,7,2,0.0 +14209,73,15,2,0.0 +14209,32,32,43,0.0 +14209,13,6,19,0.0 +14209,74,10,38,0.0 +14209,10,31,50,0.0 +14209,50,16.25,13,0.0 +14209,2,19,11,0.0 +14209,29,123.79,14,0.0 +14209,26,31.23,19,0.0 +14209,12,38,25,0.0 +14209,28,45.6,39,0.0 +14209,47,9.5,11,0.0 +14209,21,10,39,0.0 +14209,69,36,17,0.0 +14209,4,22,21,0.0 +14209,31,12.5,6,0.0 +14209,39,18,4,0.0 +14209,15,15.5,48,0.0 +14209,65,21.05,6,0.0 +14209,60,34,6,0.0 +14209,58,13.25,5,0.0 +14209,62,49.3,48,0.0 +14209,59,55,15,0.0 +14209,51,53,9,0.0 +14209,34,14,32,0.0 +14209,6,25,23,0.0 +14209,7,30,6,0.0 +14210,6,25,37,0.0 +14210,26,31.23,21,0.0 +14210,50,16.25,31,0.0 +14210,27,43.9,32,0.0 +14210,71,21.5,41,0.0 +14210,28,45.6,42,0.0 +14210,36,19,24,0.0 +14210,13,6,38,0.0 +14210,31,12.5,42,0.0 +14210,66,17,8,0.0 +14210,32,32,3,0.0 +14210,34,14,34,0.0 +14210,49,20,12,0.0 +14210,15,15.5,17,0.0 +14210,18,62.5,36,0.0 +14210,73,15,47,0.0 +14210,70,15,6,0.0 +14211,52,7,4,0.0 +14211,14,23.25,46,0.0 +14211,9,97,26,0.0 +14211,75,7.75,40,0.0 +14211,49,20,28,0.0 +14211,60,34,29,0.0 +14211,23,9,33,0.0 +14211,28,45.6,17,0.0 +14211,44,19.45,20,0.0 +14211,33,2.5,47,0.0 +14211,67,14,47,0.0 +14211,15,15.5,47,0.0 +14211,34,14,20,0.0 +14211,58,13.25,32,0.0 +14211,32,32,47,0.0 +14211,47,9.5,21,0.0 +14211,42,14,4,0.0 +14211,66,17,15,0.0 +14211,24,4.5,5,0.0 +14211,13,6,41,0.0 +14211,5,21.35,19,0.0 +14211,65,21.05,20,0.0 +14211,45,9.5,12,0.0 +14211,71,21.5,44,0.0 +14211,76,18,12,0.0 +14211,57,19.5,34,0.0 +14212,67,14,18,0.0 +14212,25,14,28,0.0 +14212,15,15.5,38,0.0 +14212,14,23.25,48,0.0 +14212,45,9.5,42,0.0 +14212,9,97,22,0.0 +14212,63,43.9,14,0.0 +14212,17,39,50,0.0 +14212,20,81,24,0.0 +14212,39,18,12,0.0 +14212,61,28.5,39,0.0 +14212,55,24,47,0.0 +14212,49,20,24,0.0 +14212,12,38,49,0.0 +14212,60,34,24,0.0 +14212,71,21.5,36,0.0 +14212,77,13,34,0.0 +14212,29,123.79,26,0.0 +14212,4,22,14,0.0 +14212,18,62.5,9,0.0 +14212,68,12.5,31,0.0 +14212,41,9.65,38,0.0 +14212,73,15,42,0.0 +14212,31,12.5,2,0.0 +14212,64,33.25,47,0.0 +14212,56,38,38,0.0 +14212,43,46,47,0.0 +14212,11,21,39,0.0 +14212,36,19,45,0.0 +14212,50,16.25,23,0.0 +14212,32,32,25,0.0 +14212,66,17,11,0.0 +14212,57,19.5,17,0.0 +14212,26,31.23,22,0.0 +14212,23,9,42,0.0 +14212,74,10,37,0.0 +14212,40,18.4,18,0.0 +14213,49,20,17,0.0 +14213,76,18,27,0.0 +14213,33,2.5,18,0.0 +14214,48,12.75,25,0.0 +14214,23,9,22,0.0 +14214,59,55,18,0.0 +14214,20,81,6,0.0 +14214,34,14,33,0.0 +14214,28,45.6,15,0.0 +14214,4,22,33,0.0 +14214,65,21.05,8,0.0 +14214,51,53,27,0.0 +14214,32,32,36,0.0 +14214,36,19,37,0.0 +14214,33,2.5,28,0.0 +14214,58,13.25,25,0.0 +14214,64,33.25,10,0.0 +14214,39,18,4,0.0 +14214,2,19,9,0.0 +14215,73,15,3,0.0 +14215,15,15.5,14,0.0 +14215,19,9.2,28,0.0 +14215,38,263.5,1,0.0 +14215,23,9,13,0.0 +14215,59,55,35,0.0 +14215,64,33.25,36,0.0 +14215,3,10,30,0.0 +14215,74,10,5,0.0 +14215,48,12.75,13,0.0 +14215,6,25,5,0.0 +14215,33,2.5,23,0.0 +14215,13,6,38,0.0 +14215,57,19.5,27,0.0 +14215,34,14,12,0.0 +14215,8,40,1,0.0 +14215,51,53,33,0.0 +14215,30,25.89,36,0.0 +14215,1,18,34,0.0 +14215,62,49.3,15,0.0 +14215,43,46,20,0.0 +14215,26,31.23,16,0.0 +14215,22,21,40,0.0 +14215,40,18.4,35,0.0 +14215,11,21,4,0.0 +14215,41,9.65,6,0.0 +14215,52,7,40,0.0 +14215,14,23.25,26,0.0 +14215,7,30,38,0.0 +14215,77,13,4,0.0 +14215,28,45.6,10,0.0 +14215,29,123.79,7,0.0 +14215,35,18,17,0.0 +14215,58,13.25,4,0.0 +14215,46,12,45,0.0 +14215,10,31,29,0.0 +14215,24,4.5,47,0.0 +14215,47,9.5,26,0.0 +14215,44,19.45,3,0.0 +14215,68,12.5,27,0.0 +14215,63,43.9,1,0.0 +14215,54,7.45,6,0.0 +14215,66,17,36,0.0 +14215,56,38,50,0.0 +14215,76,18,46,0.0 +14215,42,14,1,0.0 +14215,67,14,16,0.0 +14215,5,21.35,24,0.0 +14215,18,62.5,47,0.0 +14215,37,26,20,0.0 +14215,20,81,42,0.0 +14216,22,21,41,0.0 +14216,39,18,38,0.0 +14216,30,25.89,38,0.0 +14216,5,21.35,13,0.0 +14216,9,97,12,0.0 +14216,63,43.9,23,0.0 +14216,11,21,24,0.0 +14216,49,20,38,0.0 +14216,6,25,2,0.0 +14216,62,49.3,4,0.0 +14216,54,7.45,34,0.0 +14216,40,18.4,24,0.0 +14216,13,6,31,0.0 +14216,29,123.79,40,0.0 +14216,68,12.5,32,0.0 +14216,66,17,10,0.0 +14216,52,7,50,0.0 +14216,56,38,19,0.0 +14216,23,9,32,0.0 +14216,64,33.25,34,0.0 +14216,77,13,8,0.0 +14216,1,18,28,0.0 +14216,28,45.6,17,0.0 +14216,42,14,35,0.0 +14216,33,2.5,40,0.0 +14216,48,12.75,5,0.0 +14216,74,10,4,0.0 +14216,7,30,7,0.0 +14216,25,14,49,0.0 +14216,24,4.5,36,0.0 +14216,46,12,8,0.0 +14216,34,14,26,0.0 +14216,19,9.2,35,0.0 +14216,58,13.25,31,0.0 +14216,43,46,9,0.0 +14216,59,55,36,0.0 +14216,17,39,50,0.0 +14216,71,21.5,9,0.0 +14216,31,12.5,47,0.0 +14216,65,21.05,6,0.0 +14216,73,15,38,0.0 +14216,61,28.5,2,0.0 +14216,75,7.75,24,0.0 +14216,60,34,40,0.0 +14216,45,9.5,33,0.0 +14216,57,19.5,16,0.0 +14216,27,43.9,44,0.0 +14216,15,15.5,19,0.0 +14216,36,19,46,0.0 +14216,50,16.25,23,0.0 +14216,3,10,36,0.0 +14216,2,19,28,0.0 +14216,55,24,50,0.0 +14216,12,38,33,0.0 +14216,38,263.5,3,0.0 +14216,20,81,37,0.0 +14216,70,15,6,0.0 +14216,8,40,49,0.0 +14216,10,31,29,0.0 +14216,72,34.8,29,0.0 +14216,18,62.5,16,0.0 +14216,44,19.45,23,0.0 +14216,26,31.23,3,0.0 +14216,16,17.45,27,0.0 +14216,51,53,45,0.0 +14216,47,9.5,48,0.0 +14217,9,97,41,0.0 +14217,76,18,28,0.0 +14217,57,19.5,37,0.0 +14217,1,18,35,0.0 +14217,69,36,29,0.0 +14217,16,17.45,11,0.0 +14217,10,31,29,0.0 +14217,37,26,48,0.0 +14217,63,43.9,12,0.0 +14217,42,14,28,0.0 +14217,54,7.45,26,0.0 +14217,8,40,17,0.0 +14217,25,14,15,0.0 +14217,6,25,32,0.0 +14217,7,30,38,0.0 +14217,65,21.05,8,0.0 +14217,3,10,15,0.0 +14217,21,10,45,0.0 +14217,29,123.79,42,0.0 +14217,27,43.9,37,0.0 +14217,74,10,9,0.0 +14217,70,15,13,0.0 +14217,51,53,36,0.0 +14217,47,9.5,34,0.0 +14217,49,20,47,0.0 +14217,60,34,31,0.0 +14217,59,55,45,0.0 +14217,68,12.5,28,0.0 +14217,32,32,34,0.0 +14217,52,7,35,0.0 +14217,64,33.25,4,0.0 +14217,5,21.35,38,0.0 +14217,75,7.75,13,0.0 +14217,4,22,36,0.0 +14217,15,15.5,21,0.0 +14217,23,9,10,0.0 +14217,40,18.4,19,0.0 +14217,61,28.5,1,0.0 +14217,30,25.89,13,0.0 +14217,33,2.5,42,0.0 +14217,35,18,32,0.0 +14217,41,9.65,30,0.0 +14217,22,21,19,0.0 +14217,19,9.2,4,0.0 +14217,45,9.5,21,0.0 +14217,26,31.23,27,0.0 +14217,2,19,27,0.0 +14218,59,55,12,0.0 +14218,64,33.25,46,0.0 +14218,8,40,1,0.0 +14218,9,97,48,0.0 +14218,2,19,10,0.0 +14218,11,21,1,0.0 +14218,55,24,37,0.0 +14218,46,12,2,0.0 +14218,31,12.5,49,0.0 +14218,19,9.2,34,0.0 +14219,3,10,25,0.0 +14219,39,18,21,0.0 +14219,38,263.5,34,0.0 +14219,43,46,19,0.0 +14219,14,23.25,50,0.0 +14219,20,81,20,0.0 +14219,44,19.45,18,0.0 +14219,54,7.45,42,0.0 +14219,48,12.75,13,0.0 +14219,40,18.4,1,0.0 +14219,76,18,39,0.0 +14219,41,9.65,41,0.0 +14219,46,12,26,0.0 +14219,67,14,9,0.0 +14219,26,31.23,40,0.0 +14219,71,21.5,42,0.0 +14219,28,45.6,23,0.0 +14219,34,14,47,0.0 +14219,53,32.8,50,0.0 +14219,36,19,40,0.0 +14219,74,10,21,0.0 +14219,63,43.9,41,0.0 +14220,3,10,13,0.0 +14220,33,2.5,34,0.0 +14220,55,24,48,0.0 +14220,64,33.25,11,0.0 +14220,48,12.75,12,0.0 +14220,58,13.25,9,0.0 +14220,26,31.23,27,0.0 +14220,30,25.89,34,0.0 +14220,57,19.5,22,0.0 +14220,47,9.5,18,0.0 +14220,50,16.25,21,0.0 +14220,25,14,17,0.0 +14220,28,45.6,24,0.0 +14220,36,19,45,0.0 +14220,8,40,10,0.0 +14220,14,23.25,31,0.0 +14221,28,45.6,23,0.0 +14221,41,9.65,46,0.0 +14221,39,18,27,0.0 +14221,23,9,48,0.0 +14221,74,10,2,0.0 +14221,14,23.25,3,0.0 +14221,30,25.89,47,0.0 +14221,58,13.25,16,0.0 +14221,76,18,47,0.0 +14221,8,40,22,0.0 +14221,44,19.45,14,0.0 +14221,18,62.5,50,0.0 +14221,52,7,21,0.0 +14221,38,263.5,27,0.0 +14221,15,15.5,13,0.0 +14221,37,26,38,0.0 +14221,61,28.5,18,0.0 +14221,20,81,42,0.0 +14221,73,15,41,0.0 +14221,46,12,44,0.0 +14221,72,34.8,24,0.0 +14221,21,10,7,0.0 +14221,35,18,12,0.0 +14221,12,38,29,0.0 +14221,11,21,47,0.0 +14222,67,14,22,0.0 +14222,70,15,44,0.0 +14222,72,34.8,26,0.0 +14222,4,22,12,0.0 +14222,16,17.45,28,0.0 +14222,56,38,46,0.0 +14222,21,10,3,0.0 +14222,32,32,1,0.0 +14222,49,20,36,0.0 +14222,35,18,8,0.0 +14222,27,43.9,3,0.0 +14222,6,25,14,0.0 +14222,58,13.25,19,0.0 +14222,38,263.5,17,0.0 +14222,47,9.5,43,0.0 +14222,60,34,1,0.0 +14222,13,6,40,0.0 +14223,26,31.23,10,0.0 +14223,60,34,37,0.0 +14223,19,9.2,43,0.0 +14223,67,14,27,0.0 +14223,61,28.5,37,0.0 +14223,24,4.5,47,0.0 +14223,55,24,39,0.0 +14223,11,21,37,0.0 +14223,45,9.5,30,0.0 +14223,30,25.89,36,0.0 +14223,25,14,22,0.0 +14223,13,6,26,0.0 +14223,6,25,10,0.0 +14223,57,19.5,26,0.0 +14223,4,22,47,0.0 +14223,23,9,49,0.0 +14223,46,12,42,0.0 +14223,1,18,41,0.0 +14223,36,19,17,0.0 +14223,70,15,20,0.0 +14223,42,14,49,0.0 +14223,71,21.5,47,0.0 +14223,59,55,45,0.0 +14223,28,45.6,8,0.0 +14223,39,18,42,0.0 +14223,21,10,50,0.0 +14223,16,17.45,27,0.0 +14224,18,62.5,30,0.0 +14224,47,9.5,16,0.0 +14224,16,17.45,37,0.0 +14224,21,10,16,0.0 +14224,64,33.25,34,0.0 +14224,43,46,16,0.0 +14224,30,25.89,20,0.0 +14224,11,21,27,0.0 +14224,60,34,18,0.0 +14224,36,19,30,0.0 +14224,35,18,37,0.0 +14224,22,21,37,0.0 +14224,65,21.05,36,0.0 +14224,77,13,4,0.0 +14224,71,21.5,21,0.0 +14224,28,45.6,2,0.0 +14224,4,22,9,0.0 +14224,41,9.65,49,0.0 +14224,59,55,11,0.0 +14224,1,18,46,0.0 +14224,15,15.5,16,0.0 +14224,19,9.2,19,0.0 +14224,53,32.8,7,0.0 +14224,69,36,23,0.0 +14224,55,24,13,0.0 +14224,31,12.5,21,0.0 +14224,74,10,34,0.0 +14224,29,123.79,43,0.0 +14224,76,18,10,0.0 +14224,7,30,1,0.0 +14224,34,14,43,0.0 +14224,52,7,41,0.0 +14224,63,43.9,32,0.0 +14224,62,49.3,18,0.0 +14224,13,6,48,0.0 +14224,24,4.5,42,0.0 +14224,58,13.25,20,0.0 +14224,26,31.23,1,0.0 +14224,38,263.5,32,0.0 +14224,9,97,20,0.0 +14224,72,34.8,11,0.0 +14224,12,38,35,0.0 +14224,25,14,38,0.0 +14224,40,18.4,49,0.0 +14224,23,9,46,0.0 +14224,42,14,44,0.0 +14224,20,81,19,0.0 +14224,56,38,50,0.0 +14224,33,2.5,9,0.0 +14224,14,23.25,19,0.0 +14224,73,15,2,0.0 +14224,44,19.45,38,0.0 +14224,66,17,24,0.0 +14224,70,15,4,0.0 +14224,51,53,3,0.0 +14224,6,25,36,0.0 +14224,50,16.25,19,0.0 +14224,48,12.75,12,0.0 +14224,57,19.5,46,0.0 +14224,75,7.75,45,0.0 +14224,68,12.5,36,0.0 +14224,46,12,48,0.0 +14224,54,7.45,6,0.0 +14224,3,10,11,0.0 +14224,39,18,5,0.0 +14224,45,9.5,50,0.0 +14224,67,14,6,0.0 +14224,49,20,13,0.0 +14224,27,43.9,7,0.0 +14224,17,39,18,0.0 +14225,69,36,38,0.0 +14225,58,13.25,44,0.0 +14225,66,17,4,0.0 +14225,16,17.45,25,0.0 +14225,73,15,1,0.0 +14225,30,25.89,5,0.0 +14225,25,14,49,0.0 +14225,41,9.65,34,0.0 +14225,38,263.5,46,0.0 +14225,32,32,28,0.0 +14225,55,24,34,0.0 +14225,37,26,37,0.0 +14225,20,81,7,0.0 +14225,18,62.5,44,0.0 +14225,3,10,37,0.0 +14225,65,21.05,9,0.0 +14225,19,9.2,20,0.0 +14225,43,46,38,0.0 +14225,76,18,26,0.0 +14225,71,21.5,50,0.0 +14225,74,10,7,0.0 +14225,49,20,33,0.0 +14225,61,28.5,20,0.0 +14225,68,12.5,1,0.0 +14225,40,18.4,13,0.0 +14225,7,30,11,0.0 +14225,9,97,16,0.0 +14225,17,39,5,0.0 +14225,52,7,27,0.0 +14225,29,123.79,10,0.0 +14225,56,38,29,0.0 +14225,12,38,34,0.0 +14225,23,9,9,0.0 +14225,53,32.8,12,0.0 +14225,21,10,15,0.0 +14225,6,25,15,0.0 +14225,51,53,8,0.0 +14225,34,14,20,0.0 +14225,8,40,34,0.0 +14225,31,12.5,36,0.0 +14225,46,12,8,0.0 +14225,45,9.5,14,0.0 +14225,62,49.3,26,0.0 +14225,15,15.5,1,0.0 +14225,44,19.45,14,0.0 +14225,22,21,25,0.0 +14225,1,18,3,0.0 +14225,47,9.5,8,0.0 +14225,10,31,7,0.0 +14225,5,21.35,47,0.0 +14225,33,2.5,39,0.0 +14225,72,34.8,9,0.0 +14225,75,7.75,20,0.0 +14225,26,31.23,21,0.0 +14225,70,15,30,0.0 +14225,54,7.45,24,0.0 +14225,11,21,50,0.0 +14225,63,43.9,50,0.0 +14225,67,14,34,0.0 +14225,77,13,24,0.0 +14225,4,22,50,0.0 +14226,1,18,33,0.0 +14226,63,43.9,38,0.0 +14226,46,12,28,0.0 +14226,40,18.4,34,0.0 +14226,39,18,36,0.0 +14226,68,12.5,33,0.0 +14226,33,2.5,24,0.0 +14226,10,31,9,0.0 +14226,28,45.6,32,0.0 +14226,26,31.23,17,0.0 +14226,34,14,30,0.0 +14226,52,7,28,0.0 +14226,69,36,27,0.0 +14226,3,10,28,0.0 +14226,44,19.45,34,0.0 +14226,17,39,15,0.0 +14226,72,34.8,21,0.0 +14226,27,43.9,31,0.0 +14226,23,9,22,0.0 +14226,30,25.89,9,0.0 +14226,77,13,38,0.0 +14226,42,14,45,0.0 +14226,14,23.25,6,0.0 +14226,20,81,5,0.0 +14226,54,7.45,39,0.0 +14226,71,21.5,40,0.0 +14226,56,38,37,0.0 +14226,8,40,15,0.0 +14226,48,12.75,16,0.0 +14226,47,9.5,29,0.0 +14226,7,30,22,0.0 +14226,5,21.35,40,0.0 +14226,24,4.5,24,0.0 +14226,25,14,14,0.0 +14226,57,19.5,40,0.0 +14227,34,14,35,0.0 +14228,42,14,42,0.0 +14228,37,26,29,0.0 +14228,75,7.75,9,0.0 +14228,24,4.5,30,0.0 +14228,74,10,48,0.0 +14228,28,45.6,40,0.0 +14228,76,18,26,0.0 +14228,2,19,46,0.0 +14228,62,49.3,3,0.0 +14229,32,32,43,0.0 +14229,20,81,34,0.0 +14229,1,18,45,0.0 +14229,56,38,18,0.0 +14229,6,25,25,0.0 +14229,40,18.4,38,0.0 +14229,24,4.5,18,0.0 +14229,48,12.75,10,0.0 +14229,74,10,23,0.0 +14229,36,19,15,0.0 +14229,61,28.5,26,0.0 +14229,4,22,31,0.0 +14229,52,7,47,0.0 +14229,47,9.5,27,0.0 +14229,12,38,43,0.0 +14229,77,13,15,0.0 +14229,76,18,36,0.0 +14229,69,36,48,0.0 +14229,66,17,20,0.0 +14229,17,39,4,0.0 +14229,49,20,8,0.0 +14229,5,21.35,10,0.0 +14229,38,263.5,50,0.0 +14229,23,9,28,0.0 +14229,70,15,36,0.0 +14229,31,12.5,21,0.0 +14229,30,25.89,46,0.0 +14229,55,24,43,0.0 +14229,64,33.25,48,0.0 +14229,3,10,19,0.0 +14229,35,18,39,0.0 +14229,58,13.25,8,0.0 +14229,68,12.5,7,0.0 +14229,60,34,34,0.0 +14229,33,2.5,30,0.0 +14230,17,39,30,0.0 +14230,72,34.8,45,0.0 +14230,24,4.5,37,0.0 +14230,44,19.45,30,0.0 +14230,59,55,33,0.0 +14230,53,32.8,19,0.0 +14230,34,14,15,0.0 +14230,27,43.9,4,0.0 +14230,67,14,14,0.0 +14230,65,21.05,7,0.0 +14230,77,13,25,0.0 +14230,71,21.5,10,0.0 +14230,32,32,30,0.0 +14230,39,18,15,0.0 +14230,13,6,24,0.0 +14230,20,81,3,0.0 +14230,76,18,7,0.0 +14230,6,25,14,0.0 +14230,74,10,48,0.0 +14230,50,16.25,39,0.0 +14230,23,9,41,0.0 +14230,61,28.5,5,0.0 +14230,22,21,35,0.0 +14230,40,18.4,9,0.0 +14230,55,24,49,0.0 +14230,4,22,23,0.0 +14230,21,10,45,0.0 +14230,19,9.2,34,0.0 +14230,70,15,46,0.0 +14230,15,15.5,38,0.0 +14230,46,12,11,0.0 +14230,5,21.35,4,0.0 +14230,1,18,22,0.0 +14230,9,97,12,0.0 +14230,38,263.5,25,0.0 +14230,16,17.45,45,0.0 +14230,30,25.89,12,0.0 +14230,75,7.75,26,0.0 +14230,25,14,43,0.0 +14230,10,31,22,0.0 +14230,31,12.5,48,0.0 +14230,52,7,22,0.0 +14230,14,23.25,29,0.0 +14230,12,38,26,0.0 +14230,69,36,13,0.0 +14230,51,53,25,0.0 +14231,44,19.45,5,0.0 +14231,39,18,42,0.0 +14231,42,14,5,0.0 +14231,21,10,14,0.0 +14231,7,30,45,0.0 +14231,8,40,20,0.0 +14231,20,81,11,0.0 +14231,48,12.75,39,0.0 +14231,75,7.75,19,0.0 +14231,5,21.35,13,0.0 +14231,45,9.5,8,0.0 +14231,26,31.23,45,0.0 +14231,14,23.25,42,0.0 +14231,27,43.9,44,0.0 +14231,35,18,38,0.0 +14231,10,31,33,0.0 +14231,16,17.45,15,0.0 +14231,29,123.79,50,0.0 +14231,4,22,19,0.0 +14231,69,36,21,0.0 +14231,36,19,31,0.0 +14231,63,43.9,21,0.0 +14231,59,55,5,0.0 +14231,57,19.5,4,0.0 +14231,68,12.5,1,0.0 +14231,55,24,14,0.0 +14231,30,25.89,39,0.0 +14231,43,46,26,0.0 +14231,50,16.25,12,0.0 +14231,71,21.5,12,0.0 +14231,19,9.2,46,0.0 +14231,9,97,22,0.0 +14231,61,28.5,15,0.0 +14231,66,17,25,0.0 +14231,51,53,34,0.0 +14231,13,6,36,0.0 +14231,49,20,19,0.0 +14231,6,25,29,0.0 +14231,2,19,3,0.0 +14231,46,12,30,0.0 +14231,77,13,22,0.0 +14231,60,34,45,0.0 +14231,52,7,49,0.0 +14231,64,33.25,10,0.0 +14231,58,13.25,20,0.0 +14231,31,12.5,6,0.0 +14232,21,10,41,0.0 +14232,13,6,1,0.0 +14232,49,20,26,0.0 +14232,75,7.75,27,0.0 +14232,52,7,11,0.0 +14232,44,19.45,36,0.0 +14232,43,46,15,0.0 +14232,42,14,21,0.0 +14232,20,81,45,0.0 +14232,63,43.9,31,0.0 +14232,6,25,39,0.0 +14232,48,12.75,47,0.0 +14232,67,14,49,0.0 +14232,61,28.5,43,0.0 +14232,72,34.8,7,0.0 +14232,74,10,46,0.0 +14232,70,15,48,0.0 +14232,3,10,39,0.0 +14232,66,17,14,0.0 +14232,25,14,50,0.0 +14232,17,39,34,0.0 +14232,14,23.25,36,0.0 +14232,23,9,37,0.0 +14232,38,263.5,35,0.0 +14232,68,12.5,38,0.0 +14232,37,26,22,0.0 +14232,71,21.5,32,0.0 +14232,73,15,43,0.0 +14232,57,19.5,14,0.0 +14232,40,18.4,2,0.0 +14232,39,18,18,0.0 +14232,45,9.5,17,0.0 +14232,62,49.3,20,0.0 +14232,16,17.45,3,0.0 +14232,24,4.5,34,0.0 +14232,32,32,46,0.0 +14232,46,12,2,0.0 +14232,56,38,9,0.0 +14232,51,53,30,0.0 +14232,7,30,25,0.0 +14232,58,13.25,34,0.0 +14232,19,9.2,20,0.0 +14232,30,25.89,38,0.0 +14232,55,24,1,0.0 +14232,35,18,42,0.0 +14232,29,123.79,15,0.0 +14232,59,55,12,0.0 +14232,64,33.25,29,0.0 +14232,15,15.5,22,0.0 +14232,34,14,24,0.0 +14232,18,62.5,14,0.0 +14232,69,36,14,0.0 +14232,50,16.25,19,0.0 +14232,31,12.5,11,0.0 +14232,8,40,5,0.0 +14232,5,21.35,15,0.0 +14232,60,34,29,0.0 +14232,27,43.9,12,0.0 +14232,76,18,45,0.0 +14232,65,21.05,8,0.0 +14232,77,13,34,0.0 +14232,10,31,32,0.0 +14232,9,97,15,0.0 +14232,54,7.45,37,0.0 +14232,53,32.8,8,0.0 +14232,4,22,13,0.0 +14232,12,38,20,0.0 +14232,1,18,18,0.0 +14233,27,43.9,42,0.0 +14233,21,10,42,0.0 +14233,55,24,45,0.0 +14233,43,46,44,0.0 +14233,12,38,49,0.0 +14233,28,45.6,30,0.0 +14233,54,7.45,42,0.0 +14233,52,7,35,0.0 +14233,60,34,12,0.0 +14233,75,7.75,8,0.0 +14233,63,43.9,13,0.0 +14233,33,2.5,23,0.0 +14233,5,21.35,49,0.0 +14233,15,15.5,27,0.0 +14233,13,6,46,0.0 +14233,19,9.2,46,0.0 +14233,22,21,5,0.0 +14233,14,23.25,17,0.0 +14233,45,9.5,26,0.0 +14233,6,25,22,0.0 +14233,30,25.89,3,0.0 +14233,8,40,29,0.0 +14233,32,32,12,0.0 +14234,61,28.5,32,0.0 +14234,35,18,5,0.0 +14234,20,81,48,0.0 +14234,60,34,1,0.0 +14234,37,26,20,0.0 +14234,65,21.05,7,0.0 +14234,39,18,38,0.0 +14234,40,18.4,20,0.0 +14234,2,19,29,0.0 +14234,33,2.5,5,0.0 +14234,76,18,32,0.0 +14234,62,49.3,20,0.0 +14234,12,38,47,0.0 +14234,38,263.5,22,0.0 +14234,9,97,9,0.0 +14234,3,10,2,0.0 +14234,73,15,36,0.0 +14234,17,39,23,0.0 +14234,54,7.45,22,0.0 +14234,8,40,16,0.0 +14234,75,7.75,32,0.0 +14234,58,13.25,26,0.0 +14234,18,62.5,3,0.0 +14234,49,20,42,0.0 +14234,66,17,13,0.0 +14234,70,15,24,0.0 +14235,64,33.25,14,0.0 +14236,21,10,35,0.0 +14236,33,2.5,41,0.0 +14236,7,30,43,0.0 +14236,11,21,1,0.0 +14236,51,53,12,0.0 +14236,63,43.9,28,0.0 +14236,38,263.5,45,0.0 +14236,29,123.79,49,0.0 +14236,72,34.8,13,0.0 +14236,74,10,6,0.0 +14236,67,14,18,0.0 +14236,42,14,48,0.0 +14236,66,17,50,0.0 +14236,50,16.25,6,0.0 +14236,68,12.5,2,0.0 +14236,36,19,5,0.0 +14236,34,14,23,0.0 +14236,59,55,13,0.0 +14236,18,62.5,44,0.0 +14236,52,7,39,0.0 +14236,47,9.5,2,0.0 +14236,60,34,16,0.0 +14236,71,21.5,11,0.0 +14236,62,49.3,30,0.0 +14237,16,17.45,30,0.0 +14237,74,10,2,0.0 +14237,31,12.5,41,0.0 +14237,43,46,38,0.0 +14237,42,14,47,0.0 +14237,65,21.05,16,0.0 +14237,41,9.65,8,0.0 +14237,48,12.75,40,0.0 +14237,30,25.89,32,0.0 +14237,62,49.3,15,0.0 +14237,76,18,13,0.0 +14237,15,15.5,16,0.0 +14237,9,97,43,0.0 +14237,22,21,18,0.0 +14237,8,40,19,0.0 +14237,54,7.45,5,0.0 +14237,18,62.5,44,0.0 +14237,34,14,32,0.0 +14237,50,16.25,40,0.0 +14237,33,2.5,9,0.0 +14237,35,18,41,0.0 +14237,77,13,18,0.0 +14237,32,32,12,0.0 +14237,7,30,41,0.0 +14237,38,263.5,8,0.0 +14237,28,45.6,20,0.0 +14238,75,7.75,25,0.0 +14238,39,18,43,0.0 +14238,9,97,34,0.0 +14238,38,263.5,1,0.0 +14238,23,9,33,0.0 +14238,72,34.8,15,0.0 +14238,73,15,25,0.0 +14238,69,36,31,0.0 +14238,59,55,33,0.0 +14238,51,53,19,0.0 +14238,37,26,24,0.0 +14238,53,32.8,17,0.0 +14238,41,9.65,10,0.0 +14238,46,12,24,0.0 +14238,42,14,49,0.0 +14238,20,81,45,0.0 +14238,31,12.5,46,0.0 +14238,18,62.5,39,0.0 +14238,17,39,42,0.0 +14238,52,7,42,0.0 +14238,77,13,10,0.0 +14238,70,15,43,0.0 +14238,4,22,47,0.0 +14238,15,15.5,38,0.0 +14238,58,13.25,21,0.0 +14238,34,14,20,0.0 +14238,12,38,37,0.0 +14238,76,18,10,0.0 +14238,5,21.35,30,0.0 +14238,27,43.9,6,0.0 +14238,74,10,35,0.0 +14238,13,6,22,0.0 +14238,8,40,19,0.0 +14238,2,19,22,0.0 +14238,21,10,44,0.0 +14238,32,32,24,0.0 +14238,64,33.25,2,0.0 +14238,7,30,46,0.0 +14238,63,43.9,3,0.0 +14238,19,9.2,4,0.0 +14238,36,19,45,0.0 +14238,48,12.75,12,0.0 +14238,22,21,22,0.0 +14238,66,17,38,0.0 +14238,40,18.4,17,0.0 +14238,30,25.89,23,0.0 +14238,10,31,40,0.0 +14238,71,21.5,26,0.0 +14238,62,49.3,45,0.0 +14238,45,9.5,6,0.0 +14239,53,32.8,8,0.0 +14239,7,30,34,0.0 +14239,35,18,35,0.0 +14239,70,15,3,0.0 +14239,36,19,26,0.0 +14239,67,14,34,0.0 +14239,33,2.5,39,0.0 +14239,32,32,30,0.0 +14239,20,81,50,0.0 +14239,26,31.23,43,0.0 +14239,9,97,37,0.0 +14239,13,6,8,0.0 +14239,45,9.5,22,0.0 +14239,46,12,4,0.0 +14239,75,7.75,43,0.0 +14239,54,7.45,8,0.0 +14239,2,19,20,0.0 +14239,16,17.45,42,0.0 +14239,42,14,41,0.0 +14239,38,263.5,6,0.0 +14239,68,12.5,1,0.0 +14239,56,38,48,0.0 +14239,8,40,9,0.0 +14240,49,20,4,0.0 +14240,38,263.5,20,0.0 +14240,32,32,2,0.0 +14240,6,25,28,0.0 +14240,40,18.4,50,0.0 +14240,7,30,16,0.0 +14240,34,14,14,0.0 +14240,47,9.5,19,0.0 +14240,37,26,43,0.0 +14240,62,49.3,22,0.0 +14240,14,23.25,38,0.0 +14240,16,17.45,47,0.0 +14240,53,32.8,10,0.0 +14240,67,14,41,0.0 +14240,11,21,32,0.0 +14240,20,81,33,0.0 +14240,42,14,15,0.0 +14240,15,15.5,10,0.0 +14240,65,21.05,24,0.0 +14240,48,12.75,22,0.0 +14240,75,7.75,21,0.0 +14240,19,9.2,6,0.0 +14240,58,13.25,25,0.0 +14240,22,21,27,0.0 +14240,55,24,15,0.0 +14240,43,46,17,0.0 +14240,35,18,13,0.0 +14240,9,97,26,0.0 +14240,74,10,11,0.0 +14240,21,10,28,0.0 +14240,39,18,17,0.0 +14240,59,55,17,0.0 +14240,23,9,21,0.0 +14240,68,12.5,44,0.0 +14240,29,123.79,18,0.0 +14240,51,53,4,0.0 +14240,17,39,49,0.0 +14240,8,40,41,0.0 +14240,30,25.89,20,0.0 +14240,33,2.5,22,0.0 +14240,77,13,28,0.0 +14240,46,12,23,0.0 +14240,70,15,40,0.0 +14240,4,22,3,0.0 +14240,18,62.5,16,0.0 +14240,54,7.45,17,0.0 +14240,73,15,9,0.0 +14240,36,19,35,0.0 +14240,12,38,30,0.0 +14240,5,21.35,3,0.0 +14240,1,18,41,0.0 +14240,63,43.9,48,0.0 +14241,43,46,9,0.0 +14241,27,43.9,18,0.0 +14241,33,2.5,10,0.0 +14241,16,17.45,46,0.0 +14241,39,18,6,0.0 +14241,55,24,1,0.0 +14241,66,17,40,0.0 +14241,14,23.25,20,0.0 +14241,10,31,5,0.0 +14241,49,20,38,0.0 +14241,75,7.75,17,0.0 +14241,13,6,25,0.0 +14241,63,43.9,38,0.0 +14241,65,21.05,17,0.0 +14241,18,62.5,48,0.0 +14241,53,32.8,46,0.0 +14241,54,7.45,42,0.0 +14241,9,97,12,0.0 +14241,17,39,37,0.0 +14241,12,38,47,0.0 +14241,15,15.5,32,0.0 +14241,19,9.2,11,0.0 +14241,32,32,25,0.0 +14241,2,19,49,0.0 +14241,59,55,25,0.0 +14241,5,21.35,2,0.0 +14241,37,26,20,0.0 +14241,69,36,32,0.0 +14241,25,14,34,0.0 +14241,28,45.6,27,0.0 +14241,71,21.5,6,0.0 +14241,67,14,40,0.0 +14241,47,9.5,22,0.0 +14241,1,18,45,0.0 +14241,64,33.25,25,0.0 +14241,50,16.25,29,0.0 +14241,26,31.23,2,0.0 +14241,6,25,12,0.0 +14241,74,10,2,0.0 +14241,29,123.79,38,0.0 +14241,46,12,40,0.0 +14241,7,30,26,0.0 +14241,4,22,28,0.0 +14241,57,19.5,24,0.0 +14241,40,18.4,4,0.0 +14241,73,15,43,0.0 +14241,45,9.5,42,0.0 +14241,21,10,30,0.0 +14241,31,12.5,49,0.0 +14241,42,14,14,0.0 +14241,24,4.5,14,0.0 +14241,77,13,2,0.0 +14241,52,7,24,0.0 +14241,51,53,28,0.0 +14241,72,34.8,5,0.0 +14241,41,9.65,8,0.0 +14241,58,13.25,47,0.0 +14241,11,21,28,0.0 +14241,48,12.75,31,0.0 +14241,30,25.89,10,0.0 +14241,38,263.5,46,0.0 +14241,76,18,50,0.0 +14241,20,81,10,0.0 +14241,56,38,41,0.0 +14241,62,49.3,30,0.0 +14241,22,21,12,0.0 +14241,34,14,38,0.0 +14241,60,34,43,0.0 +14241,36,19,42,0.0 +14241,70,15,12,0.0 +14241,68,12.5,21,0.0 +14242,13,6,44,0.0 +14242,70,15,20,0.0 +14242,42,14,18,0.0 +14242,24,4.5,16,0.0 +14242,49,20,6,0.0 +14242,14,23.25,3,0.0 +14242,23,9,7,0.0 +14242,46,12,26,0.0 +14242,76,18,15,0.0 +14242,36,19,18,0.0 +14242,1,18,43,0.0 +14242,18,62.5,37,0.0 +14242,15,15.5,42,0.0 +14242,19,9.2,33,0.0 +14242,7,30,32,0.0 +14242,65,21.05,50,0.0 +14242,66,17,18,0.0 +14242,25,14,18,0.0 +14242,29,123.79,8,0.0 +14242,62,49.3,34,0.0 +14242,74,10,48,0.0 +14242,45,9.5,32,0.0 +14242,51,53,35,0.0 +14242,64,33.25,30,0.0 +14242,6,25,18,0.0 +14242,77,13,17,0.0 +14242,17,39,47,0.0 +14242,43,46,8,0.0 +14242,34,14,40,0.0 +14242,56,38,2,0.0 +14242,61,28.5,21,0.0 +14243,47,9.5,20,0.0 +14243,40,18.4,9,0.0 +14243,74,10,25,0.0 +14243,15,15.5,16,0.0 +14243,14,23.25,34,0.0 +14243,69,36,6,0.0 +14243,55,24,40,0.0 +14243,34,14,9,0.0 +14243,49,20,31,0.0 +14243,32,32,35,0.0 +14243,76,18,10,0.0 +14243,27,43.9,5,0.0 +14243,20,81,24,0.0 +14243,44,19.45,4,0.0 +14243,60,34,25,0.0 +14243,35,18,7,0.0 +14243,46,12,48,0.0 +14243,3,10,14,0.0 +14243,42,14,18,0.0 +14243,33,2.5,27,0.0 +14243,50,16.25,23,0.0 +14243,28,45.6,26,0.0 +14243,73,15,15,0.0 +14243,6,25,10,0.0 +14243,48,12.75,26,0.0 +14243,53,32.8,37,0.0 +14243,11,21,49,0.0 +14243,13,6,32,0.0 +14243,43,46,44,0.0 +14243,18,62.5,13,0.0 +14243,68,12.5,16,0.0 +14243,10,31,36,0.0 +14243,56,38,33,0.0 +14243,7,30,13,0.0 +14243,63,43.9,23,0.0 +14243,75,7.75,28,0.0 +14243,21,10,26,0.0 +14243,23,9,38,0.0 +14243,57,19.5,14,0.0 +14243,22,21,47,0.0 +14243,16,17.45,18,0.0 +14243,52,7,44,0.0 +14243,12,38,24,0.0 +14243,65,21.05,44,0.0 +14243,71,21.5,17,0.0 +14243,2,19,22,0.0 +14243,72,34.8,35,0.0 +14243,24,4.5,42,0.0 +14243,45,9.5,46,0.0 +14243,39,18,9,0.0 +14243,70,15,1,0.0 +14243,1,18,48,0.0 +14243,51,53,47,0.0 +14243,9,97,4,0.0 +14243,37,26,24,0.0 +14243,59,55,33,0.0 +14243,67,14,34,0.0 +14243,54,7.45,18,0.0 +14243,62,49.3,45,0.0 +14243,61,28.5,15,0.0 +14243,36,19,32,0.0 +14243,26,31.23,2,0.0 +14243,41,9.65,2,0.0 +14243,19,9.2,4,0.0 +14243,64,33.25,28,0.0 +14243,4,22,7,0.0 +14243,30,25.89,6,0.0 +14243,17,39,31,0.0 +14243,58,13.25,47,0.0 +14243,5,21.35,36,0.0 +14243,29,123.79,11,0.0 +14244,40,18.4,16,0.0 +14244,10,31,25,0.0 +14244,59,55,27,0.0 +14244,27,43.9,44,0.0 +14244,23,9,22,0.0 +14244,50,16.25,21,0.0 +14244,52,7,8,0.0 +14244,12,38,46,0.0 +14244,72,34.8,18,0.0 +14244,63,43.9,39,0.0 +14244,46,12,9,0.0 +14244,14,23.25,7,0.0 +14244,24,4.5,9,0.0 +14244,58,13.25,38,0.0 +14244,41,9.65,47,0.0 +14244,76,18,46,0.0 +14244,38,263.5,9,0.0 +14244,8,40,32,0.0 +14244,75,7.75,34,0.0 +14244,66,17,25,0.0 +14244,31,12.5,39,0.0 +14244,2,19,2,0.0 +14244,4,22,50,0.0 +14244,55,24,31,0.0 +14244,34,14,18,0.0 +14244,9,97,37,0.0 +14244,26,31.23,22,0.0 +14244,61,28.5,17,0.0 +14244,68,12.5,31,0.0 +14244,43,46,36,0.0 +14244,20,81,38,0.0 +14244,30,25.89,29,0.0 +14244,33,2.5,6,0.0 +14244,17,39,21,0.0 +14244,35,18,14,0.0 +14244,74,10,35,0.0 +14244,3,10,17,0.0 +14244,67,14,47,0.0 +14244,70,15,8,0.0 +14244,29,123.79,42,0.0 +14244,49,20,6,0.0 +14244,62,49.3,20,0.0 +14244,51,53,33,0.0 +14244,45,9.5,5,0.0 +14244,73,15,49,0.0 +14244,69,36,37,0.0 +14244,60,34,26,0.0 +14244,37,26,24,0.0 +14244,47,9.5,28,0.0 +14244,71,21.5,46,0.0 +14244,22,21,3,0.0 +14244,11,21,44,0.0 +14244,13,6,20,0.0 +14244,15,15.5,13,0.0 +14244,39,18,29,0.0 +14244,7,30,7,0.0 +14244,44,19.45,50,0.0 +14244,64,33.25,1,0.0 +14244,53,32.8,7,0.0 +14244,1,18,4,0.0 +14244,36,19,5,0.0 +14244,25,14,42,0.0 +14244,28,45.6,15,0.0 +14244,65,21.05,12,0.0 +14244,77,13,15,0.0 +14244,6,25,6,0.0 +14244,21,10,41,0.0 +14244,57,19.5,36,0.0 +14245,10,31,2,0.0 +14245,64,33.25,28,0.0 +14245,42,14,2,0.0 +14245,11,21,16,0.0 +14245,22,21,45,0.0 +14245,55,24,7,0.0 +14245,27,43.9,40,0.0 +14245,39,18,21,0.0 +14245,51,53,43,0.0 +14245,48,12.75,5,0.0 +14245,56,38,3,0.0 +14245,18,62.5,9,0.0 +14245,67,14,13,0.0 +14245,31,12.5,23,0.0 +14245,40,18.4,21,0.0 +14245,29,123.79,46,0.0 +14245,4,22,13,0.0 +14245,15,15.5,16,0.0 +14245,1,18,37,0.0 +14245,74,10,12,0.0 +14245,57,19.5,6,0.0 +14245,19,9.2,3,0.0 +14245,65,21.05,42,0.0 +14245,75,7.75,14,0.0 +14245,38,263.5,44,0.0 +14245,9,97,20,0.0 +14245,32,32,13,0.0 +14245,16,17.45,11,0.0 +14245,62,49.3,30,0.0 +14245,44,19.45,10,0.0 +14245,69,36,43,0.0 +14245,71,21.5,49,0.0 +14245,7,30,13,0.0 +14245,63,43.9,23,0.0 +14245,61,28.5,33,0.0 +14245,52,7,48,0.0 +14245,8,40,20,0.0 +14245,6,25,25,0.0 +14245,23,9,37,0.0 +14245,77,13,11,0.0 +14245,36,19,26,0.0 +14245,21,10,35,0.0 +14245,14,23.25,23,0.0 +14245,13,6,15,0.0 +14245,12,38,24,0.0 +14245,33,2.5,43,0.0 +14245,58,13.25,45,0.0 +14245,30,25.89,38,0.0 +14245,60,34,34,0.0 +14245,26,31.23,20,0.0 +14245,37,26,20,0.0 +14245,34,14,46,0.0 +14245,54,7.45,27,0.0 +14245,46,12,3,0.0 +14245,28,45.6,16,0.0 +14245,45,9.5,31,0.0 +14245,3,10,20,0.0 +14245,72,34.8,46,0.0 +14245,5,21.35,13,0.0 +14246,49,20,48,0.0 +14246,33,2.5,41,0.0 +14246,37,26,43,0.0 +14246,25,14,43,0.0 +14246,44,19.45,49,0.0 +14246,55,24,30,0.0 +14246,58,13.25,26,0.0 +14246,39,18,15,0.0 +14246,42,14,22,0.0 +14246,43,46,33,0.0 +14246,29,123.79,22,0.0 +14246,14,23.25,44,0.0 +14246,15,15.5,24,0.0 +14246,22,21,17,0.0 +14246,19,9.2,17,0.0 +14246,72,34.8,3,0.0 +14246,24,4.5,47,0.0 +14246,69,36,1,0.0 +14246,57,19.5,14,0.0 +14246,21,10,36,0.0 +14246,31,12.5,21,0.0 +14246,74,10,27,0.0 +14246,51,53,10,0.0 +14246,9,97,20,0.0 +14246,1,18,6,0.0 +14246,77,13,34,0.0 +14246,5,21.35,9,0.0 +14246,67,14,37,0.0 +14246,47,9.5,39,0.0 +14246,2,19,6,0.0 +14246,50,16.25,7,0.0 +14246,12,38,18,0.0 +14246,65,21.05,48,0.0 +14246,10,31,35,0.0 +14246,4,22,49,0.0 +14246,20,81,30,0.0 +14246,61,28.5,13,0.0 +14246,18,62.5,40,0.0 +14246,64,33.25,9,0.0 +14246,27,43.9,44,0.0 +14246,28,45.6,3,0.0 +14246,71,21.5,23,0.0 +14246,30,25.89,6,0.0 +14246,8,40,25,0.0 +14246,13,6,9,0.0 +14246,62,49.3,24,0.0 +14246,52,7,28,0.0 +14246,26,31.23,9,0.0 +14246,60,34,17,0.0 +14246,75,7.75,47,0.0 +14246,35,18,3,0.0 +14246,32,32,15,0.0 +14246,41,9.65,48,0.0 +14246,6,25,46,0.0 +14246,73,15,50,0.0 +14246,59,55,37,0.0 +14246,63,43.9,18,0.0 +14246,23,9,2,0.0 +14246,40,18.4,32,0.0 +14246,53,32.8,50,0.0 +14246,34,14,5,0.0 +14246,45,9.5,36,0.0 +14246,70,15,5,0.0 +14246,3,10,5,0.0 +14246,56,38,22,0.0 +14247,34,14,18,0.0 +14247,41,9.65,13,0.0 +14247,19,9.2,13,0.0 +14247,35,18,29,0.0 +14247,69,36,45,0.0 +14247,48,12.75,11,0.0 +14248,68,12.5,23,0.0 +14248,21,10,37,0.0 +14248,50,16.25,20,0.0 +14248,19,9.2,15,0.0 +14248,11,21,15,0.0 +14248,37,26,36,0.0 +14248,6,25,18,0.0 +14248,25,14,6,0.0 +14248,23,9,18,0.0 +14248,24,4.5,44,0.0 +14248,7,30,6,0.0 +14248,15,15.5,41,0.0 +14248,27,43.9,19,0.0 +14248,8,40,18,0.0 +14248,54,7.45,27,0.0 +14248,35,18,3,0.0 +14248,67,14,15,0.0 +14248,9,97,48,0.0 +14248,53,32.8,31,0.0 +14248,4,22,25,0.0 +14248,72,34.8,45,0.0 +14248,10,31,43,0.0 +14248,31,12.5,32,0.0 +14248,32,32,19,0.0 +14248,34,14,34,0.0 +14248,20,81,30,0.0 +14248,45,9.5,44,0.0 +14248,3,10,30,0.0 +14248,1,18,28,0.0 +14248,47,9.5,47,0.0 +14248,18,62.5,5,0.0 +14248,16,17.45,44,0.0 +14248,17,39,33,0.0 +14248,77,13,9,0.0 +14248,40,18.4,32,0.0 +14248,26,31.23,45,0.0 +14248,76,18,26,0.0 +14248,62,49.3,2,0.0 +14248,56,38,7,0.0 +14248,49,20,25,0.0 +14248,39,18,10,0.0 +14248,42,14,17,0.0 +14248,46,12,15,0.0 +14248,36,19,14,0.0 +14248,71,21.5,35,0.0 +14248,69,36,31,0.0 +14248,51,53,21,0.0 +14248,66,17,12,0.0 +14248,70,15,33,0.0 +14249,3,10,35,0.0 +14249,7,30,38,0.0 +14249,18,62.5,36,0.0 +14249,20,81,11,0.0 +14249,68,12.5,6,0.0 +14249,17,39,38,0.0 +14249,30,25.89,42,0.0 +14249,13,6,43,0.0 +14249,16,17.45,45,0.0 +14249,1,18,26,0.0 +14249,24,4.5,32,0.0 +14249,69,36,31,0.0 +14249,60,34,40,0.0 +14249,25,14,16,0.0 +14249,36,19,40,0.0 +14249,76,18,46,0.0 +14249,43,46,37,0.0 +14249,49,20,34,0.0 +14249,41,9.65,17,0.0 +14249,53,32.8,32,0.0 +14249,40,18.4,4,0.0 +14250,39,18,28,0.0 +14250,59,55,48,0.0 +14250,36,19,38,0.0 +14250,51,53,25,0.0 +14250,27,43.9,39,0.0 +14250,58,13.25,18,0.0 +14250,66,17,37,0.0 +14250,24,4.5,6,0.0 +14250,68,12.5,45,0.0 +14250,54,7.45,22,0.0 +14250,4,22,20,0.0 +14250,53,32.8,33,0.0 +14250,40,18.4,22,0.0 +14250,10,31,5,0.0 +14250,17,39,46,0.0 +14250,8,40,49,0.0 +14250,42,14,23,0.0 +14250,5,21.35,14,0.0 +14250,55,24,16,0.0 +14250,48,12.75,24,0.0 +14250,18,62.5,3,0.0 +14250,46,12,34,0.0 +14250,61,28.5,9,0.0 +14250,44,19.45,17,0.0 +14250,6,25,17,0.0 +14250,74,10,47,0.0 +14250,64,33.25,3,0.0 +14250,14,23.25,41,0.0 +14250,72,34.8,9,0.0 +14250,31,12.5,9,0.0 +14250,43,46,48,0.0 +14250,33,2.5,41,0.0 +14250,63,43.9,5,0.0 +14250,3,10,1,0.0 +14250,32,32,46,0.0 +14250,50,16.25,25,0.0 +14250,47,9.5,48,0.0 +14250,45,9.5,15,0.0 +14250,30,25.89,41,0.0 +14250,70,15,9,0.0 +14250,57,19.5,43,0.0 +14250,23,9,29,0.0 +14250,1,18,15,0.0 +14250,77,13,42,0.0 +14250,41,9.65,7,0.0 +14250,19,9.2,41,0.0 +14250,65,21.05,11,0.0 +14250,16,17.45,28,0.0 +14250,76,18,8,0.0 +14250,62,49.3,45,0.0 +14250,35,18,37,0.0 +14250,60,34,6,0.0 +14250,52,7,17,0.0 +14251,76,18,5,0.0 +14251,30,25.89,16,0.0 +14251,2,19,42,0.0 +14251,40,18.4,32,0.0 +14251,20,81,40,0.0 +14251,72,34.8,17,0.0 +14251,7,30,43,0.0 +14251,6,25,4,0.0 +14251,50,16.25,41,0.0 +14251,64,33.25,1,0.0 +14251,36,19,15,0.0 +14251,77,13,50,0.0 +14251,44,19.45,1,0.0 +14251,28,45.6,36,0.0 +14251,41,9.65,40,0.0 +14251,11,21,16,0.0 +14251,23,9,26,0.0 +14251,15,15.5,32,0.0 +14252,20,81,11,0.0 +14252,27,43.9,40,0.0 +14252,22,21,9,0.0 +14252,36,19,9,0.0 +14252,54,7.45,49,0.0 +14252,14,23.25,23,0.0 +14252,56,38,50,0.0 +14252,58,13.25,45,0.0 +14252,61,28.5,46,0.0 +14252,2,19,28,0.0 +14252,42,14,36,0.0 +14252,17,39,1,0.0 +14252,70,15,27,0.0 +14252,35,18,11,0.0 +14252,38,263.5,46,0.0 +14252,5,21.35,43,0.0 +14252,26,31.23,32,0.0 +14252,18,62.5,18,0.0 +14252,71,21.5,36,0.0 +14252,69,36,6,0.0 +14252,19,9.2,32,0.0 +14252,62,49.3,50,0.0 +14252,12,38,18,0.0 +14252,10,31,23,0.0 +14252,13,6,39,0.0 +14252,31,12.5,31,0.0 +14252,24,4.5,26,0.0 +14252,33,2.5,42,0.0 +14252,53,32.8,8,0.0 +14252,57,19.5,7,0.0 +14252,72,34.8,13,0.0 +14252,77,13,9,0.0 +14252,3,10,20,0.0 +14252,64,33.25,46,0.0 +14252,76,18,4,0.0 +14252,25,14,44,0.0 +14252,40,18.4,40,0.0 +14252,4,22,17,0.0 +14252,59,55,37,0.0 +14252,39,18,43,0.0 +14252,65,21.05,11,0.0 +14252,60,34,17,0.0 +14252,52,7,37,0.0 +14252,37,26,8,0.0 +14252,34,14,41,0.0 +14252,7,30,6,0.0 +14252,28,45.6,22,0.0 +14252,23,9,18,0.0 +14252,66,17,35,0.0 +14252,15,15.5,21,0.0 +14252,67,14,2,0.0 +14252,50,16.25,47,0.0 +14252,75,7.75,41,0.0 +14252,63,43.9,42,0.0 +14252,45,9.5,18,0.0 +14252,46,12,23,0.0 +14252,32,32,28,0.0 +14252,51,53,48,0.0 +14252,43,46,49,0.0 +14252,47,9.5,8,0.0 +14252,49,20,49,0.0 +14252,44,19.45,5,0.0 +14252,68,12.5,37,0.0 +14252,11,21,3,0.0 +14252,30,25.89,44,0.0 +14252,16,17.45,25,0.0 +14252,21,10,29,0.0 +14252,1,18,43,0.0 +14252,8,40,11,0.0 +14252,41,9.65,25,0.0 +14252,48,12.75,17,0.0 +14252,6,25,21,0.0 +14252,74,10,35,0.0 +14252,55,24,36,0.0 +14253,16,17.45,35,0.0 +14253,59,55,4,0.0 +14253,65,21.05,35,0.0 +14253,58,13.25,21,0.0 +14253,67,14,44,0.0 +14253,48,12.75,32,0.0 +14253,25,14,10,0.0 +14253,28,45.6,22,0.0 +14253,2,19,7,0.0 +14253,61,28.5,7,0.0 +14253,8,40,28,0.0 +14253,17,39,26,0.0 +14253,20,81,18,0.0 +14253,10,31,36,0.0 +14253,69,36,7,0.0 +14253,31,12.5,31,0.0 +14253,75,7.75,9,0.0 +14253,39,18,17,0.0 +14253,7,30,45,0.0 +14253,53,32.8,12,0.0 +14253,24,4.5,2,0.0 +14253,18,62.5,1,0.0 +14253,74,10,36,0.0 +14253,62,49.3,49,0.0 +14253,43,46,26,0.0 +14253,23,9,4,0.0 +14253,51,53,16,0.0 +14253,52,7,20,0.0 +14253,3,10,41,0.0 +14253,35,18,50,0.0 +14253,49,20,42,0.0 +14253,36,19,40,0.0 +14253,34,14,33,0.0 +14253,70,15,49,0.0 +14253,63,43.9,38,0.0 +14253,9,97,39,0.0 +14253,29,123.79,23,0.0 +14253,77,13,18,0.0 +14253,37,26,50,0.0 +14253,42,14,38,0.0 +14253,26,31.23,39,0.0 +14253,21,10,37,0.0 +14253,46,12,6,0.0 +14253,6,25,33,0.0 +14253,72,34.8,19,0.0 +14253,4,22,10,0.0 +14253,27,43.9,3,0.0 +14253,41,9.65,8,0.0 +14253,38,263.5,4,0.0 +14253,45,9.5,33,0.0 +14253,12,38,13,0.0 +14253,76,18,46,0.0 +14253,13,6,31,0.0 +14253,40,18.4,21,0.0 +14253,73,15,11,0.0 +14253,60,34,25,0.0 +14253,30,25.89,44,0.0 +14253,32,32,29,0.0 +14253,1,18,13,0.0 +14253,68,12.5,18,0.0 +14253,22,21,13,0.0 +14253,57,19.5,48,0.0 +14253,71,21.5,23,0.0 +14253,47,9.5,2,0.0 +14253,14,23.25,24,0.0 +14253,64,33.25,13,0.0 +14253,19,9.2,4,0.0 +14253,11,21,40,0.0 +14253,66,17,14,0.0 +14253,55,24,19,0.0 +14253,56,38,2,0.0 +14253,44,19.45,47,0.0 +14253,33,2.5,4,0.0 +14253,54,7.45,32,0.0 +14253,15,15.5,16,0.0 +14253,50,16.25,23,0.0 +14253,5,21.35,30,0.0 +14254,42,14,47,0.0 +14254,2,19,3,0.0 +14254,45,9.5,30,0.0 +14254,49,20,25,0.0 +14254,23,9,50,0.0 +14254,57,19.5,35,0.0 +14254,71,21.5,36,0.0 +14254,18,62.5,40,0.0 +14254,77,13,33,0.0 +14254,38,263.5,15,0.0 +14255,50,16.25,34,0.0 +14255,53,32.8,29,0.0 +14255,48,12.75,15,0.0 +14255,29,123.79,48,0.0 +14255,47,9.5,6,0.0 +14255,9,97,33,0.0 +14255,4,22,44,0.0 +14255,22,21,23,0.0 +14255,60,34,17,0.0 +14255,71,21.5,21,0.0 +14255,30,25.89,18,0.0 +14255,36,19,37,0.0 +14255,63,43.9,3,0.0 +14255,69,36,13,0.0 +14255,5,21.35,23,0.0 +14255,44,19.45,30,0.0 +14255,23,9,13,0.0 +14255,68,12.5,24,0.0 +14255,28,45.6,19,0.0 +14255,40,18.4,31,0.0 +14255,64,33.25,25,0.0 +14255,24,4.5,14,0.0 +14255,58,13.25,17,0.0 +14255,55,24,11,0.0 +14255,3,10,24,0.0 +14255,38,263.5,19,0.0 +14255,57,19.5,10,0.0 +14255,76,18,4,0.0 +14255,70,15,22,0.0 +14255,6,25,9,0.0 +14255,74,10,9,0.0 +14255,31,12.5,42,0.0 +14255,73,15,20,0.0 +14255,66,17,9,0.0 +14255,75,7.75,26,0.0 +14255,1,18,26,0.0 +14255,62,49.3,36,0.0 +14255,11,21,8,0.0 +14255,2,19,12,0.0 +14255,33,2.5,25,0.0 +14255,52,7,17,0.0 +14255,42,14,17,0.0 +14255,37,26,33,0.0 +14255,59,55,18,0.0 +14255,7,30,5,0.0 +14255,65,21.05,27,0.0 +14255,35,18,45,0.0 +14255,14,23.25,36,0.0 +14255,18,62.5,42,0.0 +14255,61,28.5,6,0.0 +14255,41,9.65,17,0.0 +14255,46,12,46,0.0 +14255,19,9.2,9,0.0 +14255,56,38,36,0.0 +14255,49,20,17,0.0 +14255,54,7.45,15,0.0 +14255,13,6,19,0.0 +14255,25,14,20,0.0 +14255,16,17.45,14,0.0 +14255,26,31.23,6,0.0 +14255,39,18,33,0.0 +14255,17,39,8,0.0 +14255,10,31,32,0.0 +14255,45,9.5,1,0.0 +14255,67,14,14,0.0 +14255,72,34.8,1,0.0 +14256,25,14,34,0.0 +14256,5,21.35,48,0.0 +14256,38,263.5,48,0.0 +14256,40,18.4,15,0.0 +14256,17,39,21,0.0 +14256,14,23.25,17,0.0 +14256,47,9.5,43,0.0 +14256,77,13,37,0.0 +14256,53,32.8,13,0.0 +14256,16,17.45,26,0.0 +14256,42,14,27,0.0 +14256,46,12,10,0.0 +14256,67,14,9,0.0 +14256,10,31,44,0.0 +14256,73,15,20,0.0 +14256,69,36,28,0.0 +14256,71,21.5,25,0.0 +14256,64,33.25,26,0.0 +14256,66,17,5,0.0 +14256,70,15,31,0.0 +14256,43,46,1,0.0 +14256,50,16.25,10,0.0 +14256,61,28.5,14,0.0 +14256,52,7,14,0.0 +14256,33,2.5,16,0.0 +14256,1,18,37,0.0 +14256,56,38,47,0.0 +14256,15,15.5,44,0.0 +14256,19,9.2,50,0.0 +14257,25,14,13,0.0 +14257,9,97,28,0.0 +14257,47,9.5,42,0.0 +14257,71,21.5,46,0.0 +14257,35,18,40,0.0 +14257,74,10,35,0.0 +14257,45,9.5,11,0.0 +14257,1,18,47,0.0 +14257,49,20,43,0.0 +14257,8,40,47,0.0 +14257,59,55,48,0.0 +14257,72,34.8,40,0.0 +14257,27,43.9,24,0.0 +14257,6,25,32,0.0 +14257,44,19.45,7,0.0 +14257,7,30,33,0.0 +14257,12,38,20,0.0 +14257,66,17,6,0.0 +14257,62,49.3,30,0.0 +14257,42,14,33,0.0 +14257,18,62.5,18,0.0 +14257,36,19,30,0.0 +14257,61,28.5,28,0.0 +14257,54,7.45,25,0.0 +14257,14,23.25,18,0.0 +14257,55,24,23,0.0 +14257,13,6,25,0.0 +14257,17,39,5,0.0 +14257,50,16.25,16,0.0 +14257,33,2.5,50,0.0 +14257,34,14,21,0.0 +14257,51,53,16,0.0 +14257,52,7,8,0.0 +14258,11,21,11,0.0 +14258,71,21.5,33,0.0 +14258,50,16.25,19,0.0 +14258,58,13.25,18,0.0 +14258,33,2.5,39,0.0 +14258,55,24,44,0.0 +14258,61,28.5,3,0.0 +14258,19,9.2,31,0.0 +14258,62,49.3,42,0.0 +14258,44,19.45,11,0.0 +14258,18,62.5,26,0.0 +14258,60,34,26,0.0 +14259,53,32.8,44,0.0 +14259,20,81,38,0.0 +14259,57,19.5,28,0.0 +14259,23,9,40,0.0 +14259,34,14,12,0.0 +14259,66,17,1,0.0 +14259,43,46,27,0.0 +14259,67,14,10,0.0 +14259,47,9.5,35,0.0 +14259,45,9.5,46,0.0 +14259,32,32,12,0.0 +14259,5,21.35,34,0.0 +14259,74,10,36,0.0 +14260,75,7.75,11,0.0 +14260,3,10,18,0.0 +14260,25,14,3,0.0 +14260,43,46,31,0.0 +14260,48,12.75,13,0.0 +14260,1,18,39,0.0 +14260,54,7.45,6,0.0 +14260,77,13,36,0.0 +14260,41,9.65,30,0.0 +14260,30,25.89,36,0.0 +14260,9,97,26,0.0 +14260,19,9.2,8,0.0 +14260,55,24,33,0.0 +14260,26,31.23,34,0.0 +14260,76,18,22,0.0 +14260,22,21,46,0.0 +14260,23,9,21,0.0 +14260,56,38,47,0.0 +14260,15,15.5,9,0.0 +14260,45,9.5,26,0.0 +14260,16,17.45,21,0.0 +14260,44,19.45,1,0.0 +14260,17,39,10,0.0 +14260,74,10,36,0.0 +14260,39,18,25,0.0 +14260,47,9.5,27,0.0 +14260,50,16.25,48,0.0 +14260,36,19,35,0.0 +14260,11,21,45,0.0 +14260,8,40,33,0.0 +14260,28,45.6,15,0.0 +14260,13,6,8,0.0 +14260,53,32.8,39,0.0 +14260,6,25,28,0.0 +14260,34,14,29,0.0 +14260,66,17,26,0.0 +14260,38,263.5,50,0.0 +14260,20,81,9,0.0 +14260,71,21.5,43,0.0 +14260,10,31,33,0.0 +14260,37,26,19,0.0 +14260,32,32,37,0.0 +14260,61,28.5,35,0.0 +14260,52,7,5,0.0 +14260,57,19.5,48,0.0 +14260,40,18.4,10,0.0 +14260,68,12.5,23,0.0 +14260,69,36,29,0.0 +14260,42,14,21,0.0 +14260,12,38,33,0.0 +14260,27,43.9,37,0.0 +14260,65,21.05,47,0.0 +14260,35,18,40,0.0 +14260,72,34.8,18,0.0 +14260,49,20,10,0.0 +14260,51,53,43,0.0 +14261,13,6,30,0.0 +14261,75,7.75,1,0.0 +14261,8,40,40,0.0 +14261,37,26,4,0.0 +14261,28,45.6,11,0.0 +14261,70,15,40,0.0 +14261,19,9.2,49,0.0 +14261,35,18,21,0.0 +14261,36,19,44,0.0 +14261,47,9.5,6,0.0 +14261,73,15,2,0.0 +14261,24,4.5,42,0.0 +14261,38,263.5,26,0.0 +14261,45,9.5,43,0.0 +14261,50,16.25,43,0.0 +14261,12,38,24,0.0 +14261,54,7.45,9,0.0 +14261,77,13,7,0.0 +14261,51,53,1,0.0 +14261,21,10,36,0.0 +14261,22,21,9,0.0 +14261,31,12.5,20,0.0 +14261,66,17,19,0.0 +14261,39,18,19,0.0 +14261,74,10,34,0.0 +14261,68,12.5,33,0.0 +14261,10,31,34,0.0 +14261,76,18,42,0.0 +14261,56,38,47,0.0 +14261,27,43.9,44,0.0 +14261,30,25.89,18,0.0 +14261,41,9.65,40,0.0 +14261,71,21.5,1,0.0 +14261,15,15.5,24,0.0 +14261,59,55,32,0.0 +14261,43,46,42,0.0 +14261,25,14,3,0.0 +14261,65,21.05,22,0.0 +14261,46,12,28,0.0 +14261,11,21,11,0.0 +14261,20,81,13,0.0 +14261,2,19,26,0.0 +14261,55,24,26,0.0 +14261,23,9,3,0.0 +14261,29,123.79,13,0.0 +14262,7,30,16,0.0 +14262,25,14,11,0.0 +14262,42,14,32,0.0 +14262,56,38,26,0.0 +14262,52,7,36,0.0 +14262,23,9,50,0.0 +14262,46,12,10,0.0 +14262,69,36,49,0.0 +14262,30,25.89,16,0.0 +14262,18,62.5,3,0.0 +14262,59,55,14,0.0 +14262,75,7.75,49,0.0 +14262,72,34.8,35,0.0 +14262,58,13.25,4,0.0 +14262,31,12.5,3,0.0 +14262,47,9.5,12,0.0 +14262,28,45.6,5,0.0 +14262,74,10,18,0.0 +14262,38,263.5,24,0.0 +14262,19,9.2,1,0.0 +14262,64,33.25,25,0.0 +14262,16,17.45,36,0.0 +14262,14,23.25,16,0.0 +14262,63,43.9,33,0.0 +14262,8,40,37,0.0 +14262,57,19.5,14,0.0 +14262,41,9.65,47,0.0 +14262,39,18,35,0.0 +14262,3,10,8,0.0 +14262,34,14,30,0.0 +14262,71,21.5,24,0.0 +14262,32,32,29,0.0 +14262,61,28.5,19,0.0 +14262,54,7.45,35,0.0 +14262,49,20,50,0.0 +14262,62,49.3,16,0.0 +14262,45,9.5,15,0.0 +14262,77,13,11,0.0 +14262,22,21,36,0.0 +14262,15,15.5,1,0.0 +14262,9,97,31,0.0 +14262,29,123.79,27,0.0 +14262,66,17,40,0.0 +14262,33,2.5,12,0.0 +14262,5,21.35,10,0.0 +14262,4,22,8,0.0 +14262,26,31.23,2,0.0 +14262,10,31,31,0.0 +14262,70,15,24,0.0 +14262,73,15,15,0.0 +14262,37,26,25,0.0 +14262,35,18,11,0.0 +14262,6,25,48,0.0 +14262,36,19,24,0.0 +14262,50,16.25,10,0.0 +14262,68,12.5,9,0.0 +14262,27,43.9,48,0.0 +14262,11,21,22,0.0 +14262,51,53,31,0.0 +14262,53,32.8,28,0.0 +14262,60,34,38,0.0 +14262,12,38,39,0.0 +14262,44,19.45,49,0.0 +14262,13,6,46,0.0 +14263,18,62.5,20,0.0 +14263,26,31.23,34,0.0 +14263,6,25,13,0.0 +14263,48,12.75,28,0.0 +14263,62,49.3,10,0.0 +14263,27,43.9,15,0.0 +14263,4,22,8,0.0 +14263,9,97,32,0.0 +14263,35,18,39,0.0 +14263,53,32.8,5,0.0 +14263,15,15.5,16,0.0 +14263,45,9.5,24,0.0 +14263,43,46,1,0.0 +14263,63,43.9,45,0.0 +14263,34,14,5,0.0 +14263,21,10,28,0.0 +14263,14,23.25,44,0.0 +14263,25,14,7,0.0 +14263,30,25.89,43,0.0 +14263,50,16.25,39,0.0 +14263,44,19.45,18,0.0 +14263,32,32,44,0.0 +14263,73,15,30,0.0 +14263,24,4.5,38,0.0 +14263,40,18.4,11,0.0 +14263,55,24,24,0.0 +14263,11,21,25,0.0 +14263,61,28.5,5,0.0 +14263,49,20,44,0.0 +14263,2,19,34,0.0 +14263,60,34,31,0.0 +14263,12,38,48,0.0 +14263,22,21,35,0.0 +14263,38,263.5,16,0.0 +14263,41,9.65,25,0.0 +14263,36,19,14,0.0 +14263,68,12.5,39,0.0 +14263,71,21.5,45,0.0 +14263,1,18,32,0.0 +14263,7,30,27,0.0 +14263,76,18,12,0.0 +14263,19,9.2,36,0.0 +14263,20,81,40,0.0 +14263,33,2.5,49,0.0 +14263,64,33.25,35,0.0 +14263,13,6,35,0.0 +14263,51,53,29,0.0 +14263,17,39,5,0.0 +14263,77,13,29,0.0 +14263,29,123.79,40,0.0 +14263,52,7,25,0.0 +14263,59,55,36,0.0 +14263,42,14,24,0.0 +14263,10,31,47,0.0 +14263,57,19.5,22,0.0 +14263,67,14,19,0.0 +14263,5,21.35,48,0.0 +14263,37,26,26,0.0 +14264,32,32,23,0.0 +14264,71,21.5,7,0.0 +14264,50,16.25,2,0.0 +14264,61,28.5,36,0.0 +14264,73,15,44,0.0 +14264,30,25.89,16,0.0 +14264,48,12.75,50,0.0 +14264,18,62.5,34,0.0 +14264,54,7.45,32,0.0 +14264,40,18.4,50,0.0 +14264,51,53,25,0.0 +14264,21,10,44,0.0 +14264,72,34.8,42,0.0 +14264,7,30,39,0.0 +14265,22,21,14,0.0 +14265,25,14,35,0.0 +14265,8,40,38,0.0 +14265,40,18.4,13,0.0 +14265,27,43.9,50,0.0 +14265,17,39,19,0.0 +14265,29,123.79,1,0.0 +14265,12,38,50,0.0 +14265,74,10,20,0.0 +14265,32,32,31,0.0 +14265,42,14,4,0.0 +14265,6,25,4,0.0 +14265,28,45.6,6,0.0 +14265,66,17,17,0.0 +14265,38,263.5,34,0.0 +14265,39,18,12,0.0 +14265,35,18,44,0.0 +14265,77,13,22,0.0 +14265,62,49.3,45,0.0 +14265,20,81,42,0.0 +14265,59,55,3,0.0 +14265,71,21.5,4,0.0 +14265,5,21.35,48,0.0 +14265,19,9.2,3,0.0 +14265,54,7.45,33,0.0 +14265,61,28.5,6,0.0 +14265,2,19,35,0.0 +14265,49,20,16,0.0 +14265,73,15,38,0.0 +14265,33,2.5,35,0.0 +14265,50,16.25,28,0.0 +14265,18,62.5,28,0.0 +14265,37,26,29,0.0 +14265,26,31.23,49,0.0 +14265,65,21.05,30,0.0 +14265,76,18,44,0.0 +14265,52,7,19,0.0 +14265,63,43.9,12,0.0 +14265,14,23.25,12,0.0 +14265,36,19,35,0.0 +14265,75,7.75,3,0.0 +14265,11,21,32,0.0 +14265,16,17.45,41,0.0 +14265,67,14,9,0.0 +14265,31,12.5,37,0.0 +14265,51,53,8,0.0 +14266,29,123.79,18,0.0 +14266,12,38,43,0.0 +14266,57,19.5,15,0.0 +14266,67,14,12,0.0 +14266,4,22,15,0.0 +14266,44,19.45,13,0.0 +14266,16,17.45,41,0.0 +14266,65,21.05,14,0.0 +14266,56,38,17,0.0 +14266,60,34,26,0.0 +14266,40,18.4,27,0.0 +14266,68,12.5,39,0.0 +14266,74,10,31,0.0 +14266,33,2.5,50,0.0 +14266,64,33.25,28,0.0 +14266,10,31,13,0.0 +14266,32,32,43,0.0 +14266,54,7.45,44,0.0 +14266,75,7.75,4,0.0 +14266,66,17,50,0.0 +14266,49,20,46,0.0 +14266,18,62.5,32,0.0 +14266,28,45.6,38,0.0 +14267,65,21.05,18,0.0 +14267,76,18,11,0.0 +14267,72,34.8,23,0.0 +14267,43,46,40,0.0 +14267,36,19,24,0.0 +14267,55,24,4,0.0 +14267,22,21,43,0.0 +14267,62,49.3,24,0.0 +14267,61,28.5,13,0.0 +14267,19,9.2,30,0.0 +14267,13,6,44,0.0 +14267,38,263.5,33,0.0 +14267,8,40,19,0.0 +14267,45,9.5,27,0.0 +14267,25,14,16,0.0 +14267,64,33.25,46,0.0 +14267,4,22,43,0.0 +14267,3,10,1,0.0 +14267,17,39,34,0.0 +14267,11,21,5,0.0 +14267,2,19,11,0.0 +14267,32,32,6,0.0 +14267,74,10,4,0.0 +14267,46,12,33,0.0 +14267,42,14,48,0.0 +14267,1,18,49,0.0 +14267,59,55,4,0.0 +14268,52,7,47,0.0 +14268,13,6,36,0.0 +14268,66,17,42,0.0 +14268,25,14,12,0.0 +14268,38,263.5,26,0.0 +14268,74,10,30,0.0 +14268,6,25,22,0.0 +14268,50,16.25,21,0.0 +14268,41,9.65,21,0.0 +14268,75,7.75,14,0.0 +14268,1,18,49,0.0 +14268,34,14,5,0.0 +14268,15,15.5,5,0.0 +14268,57,19.5,25,0.0 +14268,62,49.3,19,0.0 +14268,64,33.25,4,0.0 +14268,72,34.8,50,0.0 +14268,51,53,50,0.0 +14268,11,21,26,0.0 +14268,24,4.5,23,0.0 +14268,70,15,25,0.0 +14268,68,12.5,1,0.0 +14269,34,14,38,0.0 +14269,1,18,47,0.0 +14269,16,17.45,21,0.0 +14269,46,12,6,0.0 +14269,30,25.89,36,0.0 +14269,59,55,20,0.0 +14269,24,4.5,44,0.0 +14269,12,38,9,0.0 +14269,55,24,4,0.0 +14269,29,123.79,19,0.0 +14269,37,26,20,0.0 +14269,35,18,25,0.0 +14269,27,43.9,29,0.0 +14269,67,14,13,0.0 +14269,19,9.2,14,0.0 +14269,41,9.65,15,0.0 +14269,22,21,31,0.0 +14269,11,21,22,0.0 +14269,68,12.5,12,0.0 +14269,44,19.45,46,0.0 +14269,60,34,21,0.0 +14269,3,10,48,0.0 +14269,64,33.25,36,0.0 +14269,7,30,12,0.0 +14269,58,13.25,26,0.0 +14269,45,9.5,25,0.0 +14269,20,81,20,0.0 +14269,49,20,33,0.0 +14269,39,18,45,0.0 +14269,48,12.75,15,0.0 +14269,18,62.5,9,0.0 +14269,25,14,22,0.0 +14269,56,38,18,0.0 +14269,69,36,26,0.0 +14269,51,53,42,0.0 +14269,77,13,12,0.0 +14269,65,21.05,14,0.0 +14269,4,22,17,0.0 +14269,42,14,21,0.0 +14269,17,39,27,0.0 +14269,50,16.25,27,0.0 +14269,2,19,22,0.0 +14269,66,17,17,0.0 +14269,8,40,3,0.0 +14270,54,7.45,32,0.0 +14270,8,40,20,0.0 +14270,55,24,45,0.0 +14270,13,6,18,0.0 +14270,27,43.9,20,0.0 +14270,28,45.6,37,0.0 +14270,14,23.25,37,0.0 +14270,77,13,18,0.0 +14270,23,9,32,0.0 +14270,26,31.23,48,0.0 +14270,45,9.5,38,0.0 +14270,5,21.35,13,0.0 +14270,30,25.89,3,0.0 +14270,52,7,16,0.0 +14270,36,19,44,0.0 +14270,17,39,39,0.0 +14270,51,53,22,0.0 +14270,33,2.5,30,0.0 +14270,46,12,32,0.0 +14270,43,46,34,0.0 +14270,53,32.8,4,0.0 +14270,21,10,49,0.0 +14270,60,34,49,0.0 +14270,37,26,48,0.0 +14271,14,23.25,33,0.0 +14271,75,7.75,10,0.0 +14271,43,46,18,0.0 +14271,45,9.5,13,0.0 +14271,70,15,16,0.0 +14271,26,31.23,43,0.0 +14271,67,14,30,0.0 +14271,23,9,7,0.0 +14271,35,18,21,0.0 +14271,30,25.89,9,0.0 +14271,32,32,13,0.0 +14271,15,15.5,3,0.0 +14272,58,13.25,33,0.0 +14272,34,14,34,0.0 +14272,15,15.5,30,0.0 +14272,73,15,34,0.0 +14272,12,38,2,0.0 +14272,33,2.5,1,0.0 +14272,49,20,2,0.0 +14272,52,7,30,0.0 +14272,7,30,7,0.0 +14272,60,34,30,0.0 +14272,50,16.25,49,0.0 +14272,23,9,24,0.0 +14272,13,6,13,0.0 +14272,2,19,35,0.0 +14272,32,32,37,0.0 +14272,9,97,49,0.0 +14272,59,55,30,0.0 +14272,75,7.75,2,0.0 +14272,3,10,34,0.0 +14272,66,17,33,0.0 +14272,68,12.5,23,0.0 +14272,10,31,33,0.0 +14272,25,14,13,0.0 +14272,51,53,4,0.0 +14272,43,46,7,0.0 +14272,38,263.5,20,0.0 +14272,62,49.3,50,0.0 +14272,64,33.25,22,0.0 +14272,57,19.5,3,0.0 +14272,37,26,43,0.0 +14272,21,10,29,0.0 +14272,27,43.9,46,0.0 +14272,18,62.5,3,0.0 +14272,56,38,29,0.0 +14272,67,14,39,0.0 +14272,24,4.5,47,0.0 +14272,72,34.8,5,0.0 +14272,54,7.45,2,0.0 +14272,8,40,4,0.0 +14272,31,12.5,23,0.0 +14272,30,25.89,29,0.0 +14272,77,13,48,0.0 +14272,26,31.23,18,0.0 +14272,55,24,9,0.0 +14272,65,21.05,14,0.0 +14272,29,123.79,37,0.0 +14272,1,18,50,0.0 +14272,53,32.8,13,0.0 +14272,5,21.35,17,0.0 +14272,17,39,33,0.0 +14272,69,36,36,0.0 +14272,19,9.2,21,0.0 +14272,6,25,42,0.0 +14272,45,9.5,50,0.0 +14272,22,21,48,0.0 +14272,42,14,33,0.0 +14272,14,23.25,47,0.0 +14272,76,18,15,0.0 +14272,70,15,41,0.0 +14272,48,12.75,10,0.0 +14272,39,18,43,0.0 +14272,61,28.5,35,0.0 +14273,6,25,26,0.0 +14273,68,12.5,43,0.0 +14273,27,43.9,7,0.0 +14273,48,12.75,16,0.0 +14273,62,49.3,42,0.0 +14273,58,13.25,12,0.0 +14273,22,21,32,0.0 +14273,26,31.23,12,0.0 +14273,51,53,20,0.0 +14273,11,21,15,0.0 +14273,18,62.5,48,0.0 +14273,31,12.5,35,0.0 +14273,13,6,16,0.0 +14273,57,19.5,43,0.0 +14273,45,9.5,23,0.0 +14273,39,18,35,0.0 +14273,42,14,11,0.0 +14273,21,10,1,0.0 +14273,36,19,27,0.0 +14273,72,34.8,33,0.0 +14273,3,10,48,0.0 +14273,16,17.45,3,0.0 +14273,67,14,27,0.0 +14273,15,15.5,20,0.0 +14273,43,46,31,0.0 +14273,63,43.9,48,0.0 +14273,12,38,8,0.0 +14273,64,33.25,29,0.0 +14273,44,19.45,22,0.0 +14273,37,26,29,0.0 +14273,34,14,3,0.0 +14273,65,21.05,14,0.0 +14273,9,97,40,0.0 +14273,66,17,34,0.0 +14273,1,18,17,0.0 +14273,55,24,22,0.0 +14273,73,15,16,0.0 +14273,24,4.5,3,0.0 +14273,46,12,8,0.0 +14273,40,18.4,3,0.0 +14273,75,7.75,13,0.0 +14273,30,25.89,26,0.0 +14273,71,21.5,29,0.0 +14273,49,20,33,0.0 +14273,23,9,48,0.0 +14273,70,15,38,0.0 +14273,8,40,48,0.0 +14273,7,30,10,0.0 +14273,17,39,27,0.0 +14273,29,123.79,27,0.0 +14273,74,10,24,0.0 +14273,2,19,15,0.0 +14273,14,23.25,41,0.0 +14273,33,2.5,1,0.0 +14273,53,32.8,41,0.0 +14273,4,22,1,0.0 +14273,69,36,21,0.0 +14273,25,14,44,0.0 +14273,20,81,45,0.0 +14273,47,9.5,22,0.0 +14273,19,9.2,42,0.0 +14273,54,7.45,4,0.0 +14273,5,21.35,40,0.0 +14273,56,38,15,0.0 +14273,28,45.6,27,0.0 +14273,76,18,50,0.0 +14273,38,263.5,27,0.0 +14273,59,55,1,0.0 +14274,26,31.23,30,0.0 +14274,54,7.45,40,0.0 +14274,39,18,19,0.0 +14274,36,19,17,0.0 +14274,42,14,40,0.0 +14274,49,20,28,0.0 +14274,64,33.25,18,0.0 +14274,58,13.25,7,0.0 +14274,67,14,17,0.0 +14274,28,45.6,25,0.0 +14274,56,38,37,0.0 +14274,10,31,27,0.0 +14274,47,9.5,37,0.0 +14274,11,21,22,0.0 +14274,44,19.45,37,0.0 +14274,23,9,1,0.0 +14274,4,22,29,0.0 +14274,2,19,14,0.0 +14274,53,32.8,26,0.0 +14274,66,17,27,0.0 +14274,55,24,30,0.0 +14274,13,6,18,0.0 +14274,73,15,46,0.0 +14275,34,14,9,0.0 +14275,53,32.8,45,0.0 +14276,7,30,20,0.0 +14276,32,32,10,0.0 +14276,23,9,17,0.0 +14276,56,38,22,0.0 +14276,19,9.2,33,0.0 +14276,12,38,6,0.0 +14276,28,45.6,48,0.0 +14276,22,21,18,0.0 +14276,39,18,16,0.0 +14276,64,33.25,33,0.0 +14276,4,22,4,0.0 +14276,21,10,23,0.0 +14276,35,18,43,0.0 +14276,41,9.65,6,0.0 +14276,37,26,39,0.0 +14276,50,16.25,15,0.0 +14276,26,31.23,18,0.0 +14276,55,24,16,0.0 +14277,44,19.45,29,0.0 +14277,16,17.45,9,0.0 +14277,34,14,26,0.0 +14277,68,12.5,30,0.0 +14277,45,9.5,41,0.0 +14277,66,17,23,0.0 +14278,14,23.25,49,0.0 +14278,28,45.6,40,0.0 +14278,51,53,41,0.0 +14278,61,28.5,38,0.0 +14278,40,18.4,30,0.0 +14278,19,9.2,29,0.0 +14278,46,12,37,0.0 +14278,13,6,2,0.0 +14278,76,18,5,0.0 +14278,71,21.5,5,0.0 +14278,45,9.5,28,0.0 +14278,11,21,21,0.0 +14278,35,18,13,0.0 +14278,1,18,48,0.0 +14278,20,81,37,0.0 +14278,12,38,18,0.0 +14278,15,15.5,47,0.0 +14279,77,13,10,0.0 +14279,16,17.45,39,0.0 +14279,72,34.8,46,0.0 +14279,12,38,50,0.0 +14279,47,9.5,4,0.0 +14279,61,28.5,26,0.0 +14279,55,24,14,0.0 +14279,62,49.3,50,0.0 +14279,57,19.5,46,0.0 +14279,30,25.89,25,0.0 +14279,33,2.5,36,0.0 +14279,74,10,13,0.0 +14279,26,31.23,14,0.0 +14279,39,18,38,0.0 +14279,63,43.9,50,0.0 +14279,53,32.8,20,0.0 +14279,45,9.5,40,0.0 +14279,70,15,48,0.0 +14279,19,9.2,8,0.0 +14279,59,55,16,0.0 +14279,37,26,8,0.0 +14279,7,30,39,0.0 +14279,48,12.75,47,0.0 +14279,27,43.9,37,0.0 +14279,49,20,30,0.0 +14279,5,21.35,41,0.0 +14279,75,7.75,37,0.0 +14279,52,7,15,0.0 +14279,3,10,10,0.0 +14279,51,53,36,0.0 +14279,64,33.25,34,0.0 +14279,69,36,7,0.0 +14279,18,62.5,32,0.0 +14279,23,9,8,0.0 +14279,1,18,48,0.0 +14279,10,31,34,0.0 +14279,6,25,17,0.0 +14279,65,21.05,15,0.0 +14279,46,12,50,0.0 +14279,38,263.5,33,0.0 +14279,76,18,47,0.0 +14279,14,23.25,34,0.0 +14279,24,4.5,30,0.0 +14279,67,14,28,0.0 +14279,42,14,28,0.0 +14279,68,12.5,50,0.0 +14279,28,45.6,37,0.0 +14279,2,19,3,0.0 +14279,11,21,45,0.0 +14279,71,21.5,7,0.0 +14279,25,14,35,0.0 +14279,50,16.25,48,0.0 +14279,44,19.45,1,0.0 +14279,4,22,42,0.0 +14279,36,19,30,0.0 +14279,29,123.79,17,0.0 +14279,73,15,1,0.0 +14279,31,12.5,33,0.0 +14279,21,10,7,0.0 +14280,25,14,1,0.0 +14280,3,10,9,0.0 +14280,65,21.05,27,0.0 +14280,67,14,18,0.0 +14280,13,6,50,0.0 +14280,2,19,45,0.0 +14280,37,26,32,0.0 +14280,34,14,37,0.0 +14280,59,55,50,0.0 +14280,48,12.75,4,0.0 +14280,52,7,45,0.0 +14280,12,38,32,0.0 +14280,73,15,35,0.0 +14280,54,7.45,50,0.0 +14280,57,19.5,29,0.0 +14280,75,7.75,3,0.0 +14280,72,34.8,30,0.0 +14280,15,15.5,37,0.0 +14280,46,12,44,0.0 +14280,23,9,19,0.0 +14280,69,36,31,0.0 +14280,71,21.5,12,0.0 +14280,56,38,18,0.0 +14280,6,25,36,0.0 +14280,28,45.6,18,0.0 +14280,29,123.79,45,0.0 +14280,17,39,14,0.0 +14280,26,31.23,24,0.0 +14280,5,21.35,27,0.0 +14280,18,62.5,7,0.0 +14280,43,46,18,0.0 +14280,45,9.5,44,0.0 +14280,49,20,28,0.0 +14280,53,32.8,48,0.0 +14280,33,2.5,18,0.0 +14280,76,18,46,0.0 +14280,27,43.9,18,0.0 +14280,58,13.25,13,0.0 +14280,32,32,3,0.0 +14281,10,31,30,0.0 +14281,61,28.5,41,0.0 +14281,63,43.9,46,0.0 +14281,75,7.75,31,0.0 +14281,39,18,43,0.0 +14282,73,15,8,0.0 +14282,35,18,21,0.0 +14282,29,123.79,27,0.0 +14282,57,19.5,8,0.0 +14282,26,31.23,46,0.0 +14282,50,16.25,30,0.0 +14282,23,9,18,0.0 +14282,43,46,5,0.0 +14282,6,25,43,0.0 +14282,15,15.5,16,0.0 +14282,60,34,49,0.0 +14282,5,21.35,4,0.0 +14282,40,18.4,7,0.0 +14282,11,21,22,0.0 +14282,9,97,29,0.0 +14282,28,45.6,24,0.0 +14282,8,40,50,0.0 +14282,44,19.45,48,0.0 +14282,45,9.5,30,0.0 +14282,63,43.9,39,0.0 +14282,20,81,23,0.0 +14282,76,18,37,0.0 +14282,61,28.5,32,0.0 +14282,77,13,10,0.0 +14282,41,9.65,35,0.0 +14282,21,10,29,0.0 +14282,62,49.3,29,0.0 +14282,47,9.5,16,0.0 +14282,24,4.5,22,0.0 +14282,30,25.89,8,0.0 +14282,69,36,45,0.0 +14282,2,19,22,0.0 +14282,53,32.8,32,0.0 +14282,17,39,49,0.0 +14282,65,21.05,16,0.0 +14282,31,12.5,6,0.0 +14282,52,7,11,0.0 +14282,3,10,50,0.0 +14282,74,10,32,0.0 +14283,42,14,12,0.0 +14283,76,18,25,0.0 +14283,41,9.65,38,0.0 +14283,11,21,6,0.0 +14283,61,28.5,42,0.0 +14283,49,20,50,0.0 +14283,53,32.8,8,0.0 +14283,16,17.45,1,0.0 +14283,58,13.25,49,0.0 +14283,44,19.45,28,0.0 +14283,23,9,35,0.0 +14283,40,18.4,7,0.0 +14283,65,21.05,39,0.0 +14283,68,12.5,21,0.0 +14283,72,34.8,27,0.0 +14283,4,22,23,0.0 +14283,48,12.75,7,0.0 +14283,54,7.45,6,0.0 +14283,32,32,18,0.0 +14283,13,6,48,0.0 +14283,50,16.25,3,0.0 +14283,6,25,14,0.0 +14283,15,15.5,25,0.0 +14283,35,18,2,0.0 +14283,17,39,10,0.0 +14283,9,97,43,0.0 +14283,70,15,49,0.0 +14283,64,33.25,32,0.0 +14283,62,49.3,12,0.0 +14283,46,12,38,0.0 +14283,69,36,40,0.0 +14283,56,38,17,0.0 +14283,74,10,22,0.0 +14283,47,9.5,24,0.0 +14283,22,21,20,0.0 +14283,19,9.2,8,0.0 +14283,10,31,43,0.0 +14283,45,9.5,9,0.0 +14283,3,10,10,0.0 +14283,7,30,47,0.0 +14283,28,45.6,17,0.0 +14283,36,19,31,0.0 +14283,66,17,28,0.0 +14283,18,62.5,50,0.0 +14283,38,263.5,32,0.0 +14283,29,123.79,46,0.0 +14283,5,21.35,4,0.0 +14283,12,38,45,0.0 +14283,14,23.25,12,0.0 +14283,20,81,1,0.0 +14283,75,7.75,40,0.0 +14283,63,43.9,6,0.0 +14283,30,25.89,38,0.0 +14283,43,46,32,0.0 +14283,37,26,18,0.0 +14283,59,55,3,0.0 +14283,51,53,43,0.0 +14283,77,13,13,0.0 +14283,1,18,3,0.0 +14283,67,14,21,0.0 +14283,71,21.5,1,0.0 +14283,2,19,2,0.0 +14283,25,14,4,0.0 +14283,21,10,50,0.0 +14283,27,43.9,20,0.0 +14283,57,19.5,39,0.0 +14283,31,12.5,7,0.0 +14283,24,4.5,38,0.0 +14283,26,31.23,7,0.0 +14283,52,7,40,0.0 +14283,60,34,22,0.0 +14283,39,18,37,0.0 +14284,7,30,8,0.0 +14284,42,14,21,0.0 +14284,48,12.75,42,0.0 +14284,69,36,12,0.0 +14284,12,38,9,0.0 +14284,36,19,36,0.0 +14284,70,15,19,0.0 +14284,3,10,42,0.0 +14284,16,17.45,50,0.0 +14284,9,97,30,0.0 +14284,32,32,14,0.0 +14284,20,81,12,0.0 +14284,52,7,8,0.0 +14284,76,18,31,0.0 +14284,37,26,41,0.0 +14284,46,12,5,0.0 +14284,28,45.6,3,0.0 +14284,77,13,41,0.0 +14284,43,46,17,0.0 +14284,22,21,11,0.0 +14284,72,34.8,5,0.0 +14284,73,15,27,0.0 +14284,50,16.25,23,0.0 +14284,57,19.5,25,0.0 +14284,58,13.25,36,0.0 +14284,62,49.3,7,0.0 +14284,2,19,25,0.0 +14284,67,14,42,0.0 +14284,61,28.5,45,0.0 +14284,38,263.5,11,0.0 +14284,18,62.5,10,0.0 +14284,68,12.5,19,0.0 +14284,15,15.5,36,0.0 +14284,35,18,42,0.0 +14284,64,33.25,28,0.0 +14284,24,4.5,12,0.0 +14284,23,9,34,0.0 +14284,10,31,47,0.0 +14284,21,10,43,0.0 +14284,19,9.2,45,0.0 +14284,33,2.5,4,0.0 +14284,25,14,9,0.0 +14284,63,43.9,26,0.0 +14284,54,7.45,34,0.0 +14284,66,17,5,0.0 +14284,53,32.8,31,0.0 +14284,71,21.5,50,0.0 +14284,14,23.25,34,0.0 +14284,75,7.75,38,0.0 +14284,44,19.45,16,0.0 +14285,56,38,42,0.0 +14285,3,10,33,0.0 +14285,34,14,26,0.0 +14285,68,12.5,2,0.0 +14285,9,97,14,0.0 +14285,22,21,5,0.0 +14285,38,263.5,32,0.0 +14285,10,31,31,0.0 +14285,27,43.9,26,0.0 +14285,26,31.23,4,0.0 +14285,69,36,12,0.0 +14285,18,62.5,10,0.0 +14285,2,19,28,0.0 +14285,45,9.5,11,0.0 +14285,28,45.6,49,0.0 +14285,25,14,24,0.0 +14285,32,32,30,0.0 +14285,43,46,35,0.0 +14285,14,23.25,39,0.0 +14285,57,19.5,19,0.0 +14285,1,18,3,0.0 +14285,24,4.5,30,0.0 +14285,50,16.25,49,0.0 +14285,16,17.45,35,0.0 +14285,7,30,13,0.0 +14285,66,17,28,0.0 +14285,31,12.5,47,0.0 +14285,15,15.5,17,0.0 +14285,74,10,21,0.0 +14285,4,22,38,0.0 +14285,35,18,7,0.0 +14285,51,53,7,0.0 +14285,61,28.5,19,0.0 +14285,41,9.65,22,0.0 +14285,23,9,21,0.0 +14285,30,25.89,27,0.0 +14285,47,9.5,32,0.0 +14285,29,123.79,40,0.0 +14285,19,9.2,31,0.0 +14285,75,7.75,30,0.0 +14285,33,2.5,16,0.0 +14285,13,6,4,0.0 +14285,71,21.5,24,0.0 +14285,72,34.8,6,0.0 +14285,5,21.35,21,0.0 +14285,53,32.8,37,0.0 +14285,42,14,6,0.0 +14285,8,40,7,0.0 +14285,63,43.9,21,0.0 +14285,70,15,19,0.0 +14285,37,26,12,0.0 +14285,58,13.25,36,0.0 +14285,55,24,8,0.0 +14285,64,33.25,2,0.0 +14285,11,21,6,0.0 +14285,48,12.75,15,0.0 +14285,73,15,9,0.0 +14285,12,38,33,0.0 +14285,77,13,24,0.0 +14285,17,39,6,0.0 +14285,46,12,49,0.0 +14285,54,7.45,31,0.0 +14285,76,18,24,0.0 +14286,70,15,49,0.0 +14286,17,39,39,0.0 +14286,33,2.5,18,0.0 +14286,55,24,10,0.0 +14286,59,55,31,0.0 +14286,52,7,2,0.0 +14286,28,45.6,48,0.0 +14286,14,23.25,41,0.0 +14286,76,18,28,0.0 +14286,65,21.05,24,0.0 +14286,23,9,10,0.0 +14286,66,17,22,0.0 +14286,58,13.25,23,0.0 +14286,42,14,23,0.0 +14286,67,14,31,0.0 +14286,31,12.5,44,0.0 +14286,68,12.5,31,0.0 +14286,47,9.5,32,0.0 +14286,44,19.45,33,0.0 +14286,16,17.45,49,0.0 +14286,26,31.23,22,0.0 +14286,39,18,20,0.0 +14286,71,21.5,32,0.0 +14286,27,43.9,36,0.0 +14286,60,34,38,0.0 +14286,37,26,31,0.0 +14286,18,62.5,6,0.0 +14286,13,6,23,0.0 +14286,45,9.5,10,0.0 +14286,36,19,36,0.0 +14286,8,40,40,0.0 +14286,75,7.75,44,0.0 +14286,30,25.89,42,0.0 +14286,73,15,22,0.0 +14286,56,38,2,0.0 +14286,53,32.8,33,0.0 +14286,15,15.5,35,0.0 +14286,19,9.2,5,0.0 +14286,32,32,45,0.0 +14286,3,10,16,0.0 +14286,69,36,1,0.0 +14286,57,19.5,26,0.0 +14286,21,10,17,0.0 +14286,1,18,27,0.0 +14286,48,12.75,43,0.0 +14286,77,13,20,0.0 +14287,35,18,14,0.0 +14287,36,19,21,0.0 +14287,46,12,40,0.0 +14287,33,2.5,47,0.0 +14287,20,81,28,0.0 +14287,55,24,14,0.0 +14287,52,7,34,0.0 +14287,25,14,40,0.0 +14287,65,21.05,30,0.0 +14287,77,13,9,0.0 +14287,69,36,7,0.0 +14287,10,31,7,0.0 +14288,58,13.25,10,0.0 +14288,55,24,45,0.0 +14288,34,14,4,0.0 +14288,52,7,34,0.0 +14288,30,25.89,26,0.0 +14288,66,17,48,0.0 +14288,31,12.5,46,0.0 +14288,64,33.25,43,0.0 +14288,40,18.4,37,0.0 +14288,2,19,33,0.0 +14288,65,21.05,37,0.0 +14288,26,31.23,26,0.0 +14288,20,81,34,0.0 +14288,61,28.5,30,0.0 +14288,59,55,10,0.0 +14288,1,18,38,0.0 +14288,25,14,20,0.0 +14288,5,21.35,8,0.0 +14288,3,10,11,0.0 +14288,63,43.9,26,0.0 +14288,69,36,6,0.0 +14288,48,12.75,3,0.0 +14288,39,18,44,0.0 +14288,67,14,3,0.0 +14288,42,14,39,0.0 +14288,32,32,48,0.0 +14288,17,39,39,0.0 +14288,36,19,16,0.0 +14288,16,17.45,24,0.0 +14288,76,18,10,0.0 +14288,43,46,8,0.0 +14288,19,9.2,1,0.0 +14288,28,45.6,49,0.0 +14288,38,263.5,17,0.0 +14288,29,123.79,10,0.0 +14288,35,18,20,0.0 +14288,74,10,38,0.0 +14288,45,9.5,36,0.0 +14288,23,9,45,0.0 +14288,70,15,15,0.0 +14288,44,19.45,49,0.0 +14288,10,31,20,0.0 +14288,51,53,22,0.0 +14288,72,34.8,3,0.0 +14288,60,34,26,0.0 +14288,15,15.5,44,0.0 +14288,37,26,9,0.0 +14288,46,12,32,0.0 +14288,53,32.8,41,0.0 +14288,14,23.25,4,0.0 +14289,72,34.8,25,0.0 +14289,55,24,19,0.0 +14289,22,21,18,0.0 +14289,70,15,38,0.0 +14289,75,7.75,6,0.0 +14289,27,43.9,38,0.0 +14289,68,12.5,10,0.0 +14289,8,40,37,0.0 +14289,21,10,3,0.0 +14289,23,9,49,0.0 +14289,1,18,34,0.0 +14289,5,21.35,29,0.0 +14289,46,12,42,0.0 +14289,54,7.45,13,0.0 +14289,53,32.8,18,0.0 +14289,20,81,43,0.0 +14289,66,17,19,0.0 +14289,7,30,9,0.0 +14289,10,31,29,0.0 +14289,35,18,16,0.0 +14289,6,25,1,0.0 +14289,67,14,19,0.0 +14289,17,39,32,0.0 +14289,15,15.5,49,0.0 +14289,48,12.75,23,0.0 +14290,16,17.45,8,0.0 +14290,22,21,44,0.0 +14290,18,62.5,17,0.0 +14290,7,30,50,0.0 +14290,5,21.35,8,0.0 +14290,25,14,48,0.0 +14290,44,19.45,6,0.0 +14290,50,16.25,13,0.0 +14290,47,9.5,13,0.0 +14290,31,12.5,33,0.0 +14290,77,13,2,0.0 +14290,33,2.5,1,0.0 +14290,34,14,41,0.0 +14290,52,7,32,0.0 +14290,67,14,23,0.0 +14290,60,34,24,0.0 +14290,57,19.5,49,0.0 +14290,2,19,17,0.0 +14290,11,21,29,0.0 +14290,69,36,1,0.0 +14290,54,7.45,20,0.0 +14290,3,10,13,0.0 +14290,30,25.89,40,0.0 +14290,41,9.65,44,0.0 +14290,28,45.6,22,0.0 +14290,10,31,29,0.0 +14290,40,18.4,1,0.0 +14290,21,10,36,0.0 +14290,70,15,17,0.0 +14290,17,39,27,0.0 +14290,75,7.75,28,0.0 +14290,35,18,3,0.0 +14290,61,28.5,28,0.0 +14290,48,12.75,45,0.0 +14290,74,10,22,0.0 +14290,6,25,45,0.0 +14290,62,49.3,28,0.0 +14290,14,23.25,47,0.0 +14290,51,53,28,0.0 +14290,63,43.9,38,0.0 +14290,26,31.23,4,0.0 +14290,37,26,5,0.0 +14290,15,15.5,2,0.0 +14290,9,97,16,0.0 +14290,1,18,12,0.0 +14290,45,9.5,25,0.0 +14290,49,20,7,0.0 +14290,38,263.5,28,0.0 +14290,46,12,22,0.0 +14290,55,24,31,0.0 +14290,73,15,12,0.0 +14290,19,9.2,37,0.0 +14290,4,22,24,0.0 +14290,29,123.79,34,0.0 +14290,23,9,4,0.0 +14290,24,4.5,30,0.0 +14290,43,46,23,0.0 +14290,58,13.25,18,0.0 +14290,66,17,14,0.0 +14290,59,55,4,0.0 +14290,68,12.5,48,0.0 +14290,64,33.25,5,0.0 +14290,36,19,15,0.0 +14290,27,43.9,15,0.0 +14290,72,34.8,4,0.0 +14290,76,18,47,0.0 +14290,42,14,5,0.0 +14290,65,21.05,10,0.0 +14290,20,81,33,0.0 +14291,55,24,42,0.0 +14292,20,81,23,0.0 +14292,54,7.45,31,0.0 +14292,73,15,14,0.0 +14292,3,10,47,0.0 +14292,38,263.5,39,0.0 +14292,1,18,47,0.0 +14292,42,14,23,0.0 +14292,8,40,10,0.0 +14292,26,31.23,26,0.0 +14292,52,7,37,0.0 +14292,49,20,25,0.0 +14292,29,123.79,50,0.0 +14292,59,55,8,0.0 +14292,69,36,28,0.0 +14292,30,25.89,24,0.0 +14292,34,14,2,0.0 +14292,67,14,8,0.0 +14292,48,12.75,27,0.0 +14292,77,13,5,0.0 +14292,19,9.2,28,0.0 +14292,24,4.5,41,0.0 +14293,60,34,40,0.0 +14293,65,21.05,45,0.0 +14293,41,9.65,30,0.0 +14293,8,40,28,0.0 +14293,19,9.2,45,0.0 +14294,9,97,32,0.0 +14294,60,34,15,0.0 +14294,44,19.45,12,0.0 +14294,20,81,46,0.0 +14294,12,38,35,0.0 +14294,7,30,18,0.0 +14294,59,55,5,0.0 +14294,66,17,16,0.0 +14294,68,12.5,47,0.0 +14294,75,7.75,34,0.0 +14294,48,12.75,10,0.0 +14294,10,31,50,0.0 +14294,67,14,39,0.0 +14294,11,21,38,0.0 +14294,4,22,47,0.0 +14294,73,15,23,0.0 +14294,28,45.6,47,0.0 +14294,34,14,18,0.0 +14294,62,49.3,40,0.0 +14294,72,34.8,26,0.0 +14294,31,12.5,11,0.0 +14294,29,123.79,7,0.0 +14294,43,46,39,0.0 +14294,57,19.5,1,0.0 +14294,16,17.45,33,0.0 +14294,26,31.23,26,0.0 +14294,35,18,11,0.0 +14294,15,15.5,18,0.0 +14294,42,14,8,0.0 +14294,64,33.25,40,0.0 +14294,69,36,34,0.0 +14294,71,21.5,2,0.0 +14294,41,9.65,4,0.0 +14294,56,38,21,0.0 +14294,8,40,36,0.0 +14294,74,10,41,0.0 +14294,65,21.05,5,0.0 +14294,18,62.5,30,0.0 +14294,6,25,2,0.0 +14294,24,4.5,25,0.0 +14294,38,263.5,24,0.0 +14294,52,7,39,0.0 +14294,5,21.35,17,0.0 +14294,25,14,42,0.0 +14294,54,7.45,35,0.0 +14294,1,18,48,0.0 +14294,36,19,33,0.0 +14294,47,9.5,46,0.0 +14294,45,9.5,30,0.0 +14294,61,28.5,34,0.0 +14294,70,15,17,0.0 +14294,2,19,41,0.0 +14294,13,6,35,0.0 +14294,58,13.25,15,0.0 +14294,46,12,30,0.0 +14294,27,43.9,16,0.0 +14294,63,43.9,6,0.0 +14294,23,9,25,0.0 +14294,37,26,5,0.0 +14294,49,20,44,0.0 +14294,33,2.5,12,0.0 +14294,51,53,39,0.0 +14294,40,18.4,24,0.0 +14295,65,21.05,41,0.0 +14295,29,123.79,37,0.0 +14295,37,26,43,0.0 +14295,31,12.5,38,0.0 +14295,48,12.75,44,0.0 +14295,3,10,17,0.0 +14295,38,263.5,36,0.0 +14295,34,14,13,0.0 +14295,24,4.5,49,0.0 +14295,63,43.9,44,0.0 +14295,9,97,25,0.0 +14295,59,55,5,0.0 +14295,1,18,33,0.0 +14295,17,39,22,0.0 +14295,23,9,16,0.0 +14295,2,19,14,0.0 +14295,56,38,26,0.0 +14295,61,28.5,48,0.0 +14295,35,18,26,0.0 +14295,25,14,27,0.0 +14295,55,24,41,0.0 +14295,45,9.5,48,0.0 +14295,68,12.5,9,0.0 +14295,67,14,30,0.0 +14295,77,13,27,0.0 +14295,39,18,10,0.0 +14296,65,21.05,18,0.0 +14296,19,9.2,12,0.0 +14296,67,14,49,0.0 +14296,47,9.5,31,0.0 +14296,5,21.35,19,0.0 +14296,44,19.45,29,0.0 +14296,64,33.25,36,0.0 +14296,18,62.5,31,0.0 +14296,46,12,50,0.0 +14296,63,43.9,26,0.0 +14296,55,24,41,0.0 +14296,60,34,37,0.0 +14296,23,9,43,0.0 +14296,15,15.5,26,0.0 +14296,59,55,45,0.0 +14296,37,26,6,0.0 +14296,24,4.5,27,0.0 +14296,1,18,9,0.0 +14296,39,18,44,0.0 +14296,25,14,18,0.0 +14296,73,15,8,0.0 +14296,17,39,11,0.0 +14296,52,7,26,0.0 +14296,35,18,6,0.0 +14296,16,17.45,39,0.0 +14296,22,21,33,0.0 +14296,4,22,30,0.0 +14296,30,25.89,37,0.0 +14296,41,9.65,40,0.0 +14296,72,34.8,13,0.0 +14296,42,14,22,0.0 +14296,62,49.3,25,0.0 +14296,75,7.75,46,0.0 +14296,3,10,27,0.0 +14296,14,23.25,14,0.0 +14296,11,21,12,0.0 +14296,49,20,16,0.0 +14296,77,13,19,0.0 +14296,34,14,17,0.0 +14296,61,28.5,40,0.0 +14296,6,25,12,0.0 +14296,54,7.45,19,0.0 +14296,32,32,31,0.0 +14296,21,10,10,0.0 +14296,48,12.75,15,0.0 +14296,45,9.5,29,0.0 +14296,74,10,22,0.0 +14296,10,31,38,0.0 +14296,51,53,43,0.0 +14296,12,38,48,0.0 +14296,7,30,13,0.0 +14296,69,36,33,0.0 +14296,13,6,30,0.0 +14296,33,2.5,7,0.0 +14296,66,17,11,0.0 +14296,36,19,16,0.0 +14296,26,31.23,34,0.0 +14296,2,19,20,0.0 +14296,50,16.25,4,0.0 +14296,43,46,29,0.0 +14296,70,15,3,0.0 +14296,8,40,37,0.0 +14296,71,21.5,22,0.0 +14296,57,19.5,39,0.0 +14296,76,18,39,0.0 +14296,28,45.6,36,0.0 +14296,27,43.9,25,0.0 +14296,68,12.5,23,0.0 +14296,9,97,20,0.0 +14296,56,38,41,0.0 +14296,53,32.8,31,0.0 +14296,58,13.25,38,0.0 +14296,40,18.4,32,0.0 +14296,20,81,43,0.0 +14296,31,12.5,38,0.0 +14296,29,123.79,25,0.0 +14296,38,263.5,4,0.0 +14297,34,14,16,0.0 +14297,16,17.45,36,0.0 +14297,73,15,17,0.0 +14297,29,123.79,33,0.0 +14297,14,23.25,24,0.0 +14297,41,9.65,3,0.0 +14297,6,25,39,0.0 +14297,60,34,4,0.0 +14297,23,9,18,0.0 +14297,50,16.25,22,0.0 +14297,27,43.9,41,0.0 +14297,67,14,27,0.0 +14297,64,33.25,16,0.0 +14297,48,12.75,48,0.0 +14297,63,43.9,39,0.0 +14297,43,46,14,0.0 +14297,20,81,15,0.0 +14297,37,26,49,0.0 +14297,4,22,35,0.0 +14297,66,17,26,0.0 +14297,58,13.25,50,0.0 +14297,26,31.23,12,0.0 +14297,54,7.45,24,0.0 +14297,8,40,6,0.0 +14297,55,24,15,0.0 +14297,61,28.5,25,0.0 +14297,77,13,6,0.0 +14297,40,18.4,47,0.0 +14297,71,21.5,49,0.0 +14297,74,10,49,0.0 +14297,31,12.5,39,0.0 +14297,2,19,1,0.0 +14297,13,6,41,0.0 +14297,19,9.2,10,0.0 +14297,76,18,12,0.0 +14297,24,4.5,50,0.0 +14297,30,25.89,39,0.0 +14297,70,15,4,0.0 +14297,72,34.8,49,0.0 +14297,68,12.5,40,0.0 +14297,28,45.6,27,0.0 +14297,45,9.5,44,0.0 +14297,11,21,27,0.0 +14297,35,18,41,0.0 +14297,44,19.45,50,0.0 +14297,33,2.5,49,0.0 +14297,39,18,7,0.0 +14297,69,36,27,0.0 +14297,52,7,41,0.0 +14297,12,38,50,0.0 +14297,5,21.35,45,0.0 +14297,47,9.5,5,0.0 +14297,18,62.5,38,0.0 +14297,10,31,16,0.0 +14297,49,20,19,0.0 +14297,46,12,33,0.0 +14297,17,39,34,0.0 +14297,22,21,5,0.0 +14297,56,38,2,0.0 +14297,38,263.5,17,0.0 +14297,59,55,33,0.0 +14297,42,14,21,0.0 +14297,9,97,46,0.0 +14297,62,49.3,25,0.0 +14297,1,18,28,0.0 +14297,57,19.5,38,0.0 +14297,32,32,49,0.0 +14297,15,15.5,5,0.0 +14297,36,19,20,0.0 +14297,51,53,12,0.0 +14298,67,14,30,0.0 +14298,52,7,32,0.0 +14298,44,19.45,45,0.0 +14298,77,13,16,0.0 +14298,49,20,27,0.0 +14298,37,26,17,0.0 +14298,23,9,50,0.0 +14298,60,34,28,0.0 +14298,74,10,50,0.0 +14298,16,17.45,40,0.0 +14298,66,17,38,0.0 +14298,73,15,20,0.0 +14298,47,9.5,28,0.0 +14298,5,21.35,44,0.0 +14298,22,21,2,0.0 +14298,65,21.05,4,0.0 +14298,29,123.79,7,0.0 +14298,9,97,22,0.0 +14298,20,81,14,0.0 +14299,19,9.2,13,0.0 +14299,72,34.8,2,0.0 +14299,59,55,32,0.0 +14299,24,4.5,25,0.0 +14299,16,17.45,24,0.0 +14299,69,36,31,0.0 +14299,48,12.75,28,0.0 +14299,65,21.05,38,0.0 +14299,52,7,30,0.0 +14299,57,19.5,4,0.0 +14299,45,9.5,47,0.0 +14299,1,18,30,0.0 +14299,37,26,20,0.0 +14299,44,19.45,3,0.0 +14299,25,14,41,0.0 +14299,15,15.5,4,0.0 +14299,34,14,25,0.0 +14299,17,39,40,0.0 +14299,2,19,21,0.0 +14299,68,12.5,39,0.0 +14299,61,28.5,46,0.0 +14299,5,21.35,24,0.0 +14299,4,22,3,0.0 +14299,3,10,40,0.0 +14299,41,9.65,21,0.0 +14299,13,6,10,0.0 +14299,8,40,3,0.0 +14299,42,14,21,0.0 +14299,33,2.5,6,0.0 +14299,58,13.25,11,0.0 +14299,73,15,15,0.0 +14299,36,19,31,0.0 +14299,23,9,23,0.0 +14299,27,43.9,48,0.0 +14299,70,15,23,0.0 +14299,46,12,47,0.0 +14299,76,18,45,0.0 +14299,51,53,16,0.0 +14299,71,21.5,14,0.0 +14299,60,34,8,0.0 +14299,6,25,27,0.0 +14300,49,20,40,0.0 +14300,55,24,22,0.0 +14300,62,49.3,1,0.0 +14300,68,12.5,11,0.0 +14300,50,16.25,43,0.0 +14300,14,23.25,12,0.0 +14300,72,34.8,11,0.0 +14300,36,19,33,0.0 +14300,27,43.9,32,0.0 +14300,8,40,26,0.0 +14300,57,19.5,13,0.0 +14300,39,18,11,0.0 +14300,61,28.5,15,0.0 +14300,2,19,42,0.0 +14300,52,7,21,0.0 +14300,6,25,35,0.0 +14300,28,45.6,33,0.0 +14300,67,14,21,0.0 +14300,20,81,50,0.0 +14300,46,12,32,0.0 +14300,73,15,16,0.0 +14300,21,10,25,0.0 +14300,76,18,21,0.0 +14300,13,6,33,0.0 +14300,3,10,34,0.0 +14300,47,9.5,42,0.0 +14300,54,7.45,4,0.0 +14300,48,12.75,22,0.0 +14300,33,2.5,10,0.0 +14300,7,30,33,0.0 +14300,59,55,20,0.0 +14300,75,7.75,4,0.0 +14300,69,36,7,0.0 +14300,58,13.25,21,0.0 +14300,40,18.4,36,0.0 +14300,51,53,16,0.0 +14300,53,32.8,30,0.0 +14300,23,9,15,0.0 +14300,12,38,11,0.0 +14300,5,21.35,44,0.0 +14300,31,12.5,50,0.0 +14300,45,9.5,24,0.0 +14300,26,31.23,13,0.0 +14300,18,62.5,6,0.0 +14300,42,14,33,0.0 +14300,9,97,7,0.0 +14300,24,4.5,42,0.0 +14300,38,263.5,44,0.0 +14300,64,33.25,23,0.0 +14300,34,14,31,0.0 +14300,1,18,29,0.0 +14300,32,32,6,0.0 +14300,74,10,13,0.0 +14300,19,9.2,13,0.0 +14300,29,123.79,45,0.0 +14300,11,21,8,0.0 +14300,30,25.89,43,0.0 +14300,22,21,28,0.0 +14300,43,46,13,0.0 +14300,77,13,23,0.0 +14300,60,34,31,0.0 +14300,17,39,43,0.0 +14300,44,19.45,15,0.0 +14300,66,17,38,0.0 +14300,71,21.5,46,0.0 +14300,41,9.65,50,0.0 +14300,63,43.9,15,0.0 +14300,35,18,39,0.0 +14300,70,15,43,0.0 +14300,16,17.45,13,0.0 +14300,25,14,19,0.0 +14300,37,26,19,0.0 +14300,15,15.5,12,0.0 +14300,65,21.05,9,0.0 +14300,4,22,41,0.0 +14301,16,17.45,28,0.0 +14301,11,21,48,0.0 +14301,43,46,23,0.0 +14301,64,33.25,48,0.0 +14301,5,21.35,40,0.0 +14301,12,38,36,0.0 +14301,58,13.25,22,0.0 +14301,62,49.3,44,0.0 +14301,46,12,22,0.0 +14301,34,14,10,0.0 +14301,19,9.2,6,0.0 +14301,13,6,18,0.0 +14301,15,15.5,30,0.0 +14301,66,17,50,0.0 +14301,10,31,49,0.0 +14301,57,19.5,33,0.0 +14301,3,10,40,0.0 +14301,73,15,45,0.0 +14301,21,10,47,0.0 +14301,69,36,25,0.0 +14301,47,9.5,31,0.0 +14301,6,25,19,0.0 +14301,14,23.25,32,0.0 +14301,59,55,47,0.0 +14301,22,21,42,0.0 +14301,52,7,10,0.0 +14301,4,22,9,0.0 +14301,68,12.5,50,0.0 +14301,35,18,34,0.0 +14301,63,43.9,7,0.0 +14301,37,26,43,0.0 +14301,38,263.5,28,0.0 +14301,50,16.25,33,0.0 +14301,26,31.23,20,0.0 +14301,48,12.75,17,0.0 +14301,23,9,15,0.0 +14301,33,2.5,6,0.0 +14301,76,18,1,0.0 +14301,53,32.8,4,0.0 +14301,60,34,50,0.0 +14301,18,62.5,44,0.0 +14301,41,9.65,19,0.0 +14301,42,14,41,0.0 +14301,8,40,22,0.0 +14301,65,21.05,15,0.0 +14301,72,34.8,42,0.0 +14301,55,24,33,0.0 +14301,9,97,43,0.0 +14301,61,28.5,12,0.0 +14301,1,18,38,0.0 +14301,54,7.45,4,0.0 +14301,36,19,46,0.0 +14301,2,19,22,0.0 +14301,75,7.75,19,0.0 +14301,56,38,16,0.0 +14302,46,12,18,0.0 +14302,49,20,11,0.0 +14302,19,9.2,27,0.0 +14302,53,32.8,40,0.0 +14302,72,34.8,36,0.0 +14302,8,40,19,0.0 +14302,40,18.4,8,0.0 +14302,77,13,36,0.0 +14302,11,21,49,0.0 +14302,45,9.5,39,0.0 +14302,23,9,15,0.0 +14302,60,34,48,0.0 +14302,50,16.25,2,0.0 +14302,41,9.65,35,0.0 +14302,18,62.5,32,0.0 +14302,57,19.5,8,0.0 +14302,17,39,35,0.0 +14302,67,14,39,0.0 +14302,4,22,7,0.0 +14302,66,17,16,0.0 +14302,14,23.25,1,0.0 +14302,22,21,15,0.0 +14302,21,10,18,0.0 +14302,36,19,37,0.0 +14302,58,13.25,26,0.0 +14302,47,9.5,43,0.0 +14302,71,21.5,12,0.0 +14302,31,12.5,6,0.0 +14302,9,97,28,0.0 +14302,44,19.45,12,0.0 +14302,56,38,33,0.0 +14302,73,15,18,0.0 +14302,15,15.5,1,0.0 +14302,7,30,49,0.0 +14302,64,33.25,12,0.0 +14302,20,81,9,0.0 +14302,12,38,24,0.0 +14302,65,21.05,30,0.0 +14302,43,46,29,0.0 +14302,30,25.89,43,0.0 +14302,13,6,13,0.0 +14302,25,14,4,0.0 +14302,51,53,38,0.0 +14302,38,263.5,2,0.0 +14302,26,31.23,42,0.0 +14302,33,2.5,34,0.0 +14302,39,18,8,0.0 +14302,32,32,33,0.0 +14302,6,25,49,0.0 +14302,52,7,46,0.0 +14302,74,10,30,0.0 +14302,75,7.75,10,0.0 +14302,35,18,39,0.0 +14303,55,24,5,0.0 +14303,15,15.5,32,0.0 +14303,37,26,48,0.0 +14303,59,55,8,0.0 +14303,11,21,29,0.0 +14303,6,25,34,0.0 +14303,43,46,30,0.0 +14303,34,14,44,0.0 +14303,49,20,17,0.0 +14303,58,13.25,37,0.0 +14303,32,32,6,0.0 +14303,77,13,26,0.0 +14303,76,18,21,0.0 +14303,22,21,23,0.0 +14303,70,15,10,0.0 +14303,45,9.5,17,0.0 +14303,40,18.4,50,0.0 +14303,47,9.5,17,0.0 +14303,17,39,4,0.0 +14303,66,17,10,0.0 +14303,9,97,49,0.0 +14303,52,7,39,0.0 +14303,2,19,16,0.0 +14303,33,2.5,46,0.0 +14303,18,62.5,14,0.0 +14304,38,263.5,22,0.0 +14304,16,17.45,34,0.0 +14304,21,10,33,0.0 +14304,76,18,21,0.0 +14304,14,23.25,33,0.0 +14304,65,21.05,42,0.0 +14304,9,97,29,0.0 +14304,15,15.5,21,0.0 +14304,3,10,36,0.0 +14304,75,7.75,15,0.0 +14304,26,31.23,30,0.0 +14304,54,7.45,18,0.0 +14304,68,12.5,47,0.0 +14304,41,9.65,14,0.0 +14304,37,26,32,0.0 +14304,51,53,25,0.0 +14304,7,30,36,0.0 +14304,33,2.5,32,0.0 +14304,42,14,4,0.0 +14304,48,12.75,28,0.0 +14304,13,6,44,0.0 +14304,40,18.4,8,0.0 +14304,64,33.25,29,0.0 +14304,24,4.5,1,0.0 +14304,57,19.5,24,0.0 +14304,60,34,44,0.0 +14304,27,43.9,5,0.0 +14304,47,9.5,20,0.0 +14304,30,25.89,43,0.0 +14304,45,9.5,39,0.0 +14304,70,15,3,0.0 +14304,63,43.9,40,0.0 +14304,69,36,19,0.0 +14304,67,14,44,0.0 +14304,23,9,44,0.0 +14304,74,10,7,0.0 +14304,71,21.5,30,0.0 +14304,32,32,42,0.0 +14304,62,49.3,44,0.0 +14304,46,12,46,0.0 +14304,8,40,8,0.0 +14304,25,14,36,0.0 +14304,59,55,11,0.0 +14304,10,31,24,0.0 +14304,6,25,8,0.0 +14304,2,19,31,0.0 +14304,72,34.8,6,0.0 +14305,61,28.5,31,0.0 +14305,6,25,19,0.0 +14305,50,16.25,48,0.0 +14305,70,15,13,0.0 +14305,74,10,26,0.0 +14305,17,39,12,0.0 +14305,64,33.25,23,0.0 +14305,20,81,33,0.0 +14305,72,34.8,9,0.0 +14305,68,12.5,39,0.0 +14305,1,18,48,0.0 +14305,36,19,46,0.0 +14305,24,4.5,8,0.0 +14305,7,30,50,0.0 +14305,13,6,44,0.0 +14305,77,13,26,0.0 +14305,51,53,43,0.0 +14305,4,22,50,0.0 +14306,41,9.65,32,0.0 +14306,70,15,29,0.0 +14306,53,32.8,23,0.0 +14306,28,45.6,9,0.0 +14306,19,9.2,36,0.0 +14306,25,14,15,0.0 +14306,58,13.25,4,0.0 +14306,34,14,46,0.0 +14306,16,17.45,24,0.0 +14306,22,21,38,0.0 +14306,64,33.25,50,0.0 +14307,42,14,7,0.0 +14307,9,97,13,0.0 +14307,15,15.5,47,0.0 +14307,7,30,6,0.0 +14307,64,33.25,42,0.0 +14307,55,24,25,0.0 +14307,16,17.45,12,0.0 +14307,59,55,18,0.0 +14307,67,14,23,0.0 +14307,62,49.3,24,0.0 +14307,29,123.79,17,0.0 +14307,41,9.65,41,0.0 +14307,5,21.35,18,0.0 +14307,33,2.5,45,0.0 +14307,1,18,28,0.0 +14307,12,38,23,0.0 +14307,30,25.89,1,0.0 +14307,27,43.9,28,0.0 +14307,45,9.5,7,0.0 +14307,66,17,40,0.0 +14307,23,9,18,0.0 +14307,18,62.5,9,0.0 +14307,76,18,21,0.0 +14307,44,19.45,39,0.0 +14307,70,15,43,0.0 +14307,63,43.9,14,0.0 +14307,25,14,48,0.0 +14307,61,28.5,4,0.0 +14307,53,32.8,45,0.0 +14307,2,19,37,0.0 +14307,51,53,11,0.0 +14307,57,19.5,27,0.0 +14308,56,38,5,0.0 +14308,53,32.8,32,0.0 +14308,47,9.5,47,0.0 +14308,60,34,1,0.0 +14308,40,18.4,1,0.0 +14308,50,16.25,9,0.0 +14308,9,97,24,0.0 +14308,57,19.5,34,0.0 +14308,23,9,6,0.0 +14308,41,9.65,9,0.0 +14308,31,12.5,13,0.0 +14308,64,33.25,14,0.0 +14308,24,4.5,14,0.0 +14308,20,81,35,0.0 +14308,68,12.5,10,0.0 +14308,55,24,50,0.0 +14308,14,23.25,3,0.0 +14308,13,6,13,0.0 +14308,28,45.6,24,0.0 +14308,52,7,20,0.0 +14308,49,20,22,0.0 +14308,38,263.5,40,0.0 +14308,3,10,4,0.0 +14308,12,38,33,0.0 +14308,30,25.89,13,0.0 +14308,51,53,44,0.0 +14308,5,21.35,22,0.0 +14308,65,21.05,24,0.0 +14309,10,31,38,0.0 +14309,41,9.65,11,0.0 +14309,27,43.9,8,0.0 +14309,19,9.2,2,0.0 +14309,13,6,50,0.0 +14309,44,19.45,8,0.0 +14309,77,13,31,0.0 +14309,3,10,3,0.0 +14309,36,19,15,0.0 +14309,43,46,22,0.0 +14309,63,43.9,44,0.0 +14309,7,30,20,0.0 +14309,31,12.5,41,0.0 +14309,30,25.89,14,0.0 +14309,57,19.5,21,0.0 +14309,47,9.5,10,0.0 +14309,25,14,46,0.0 +14309,59,55,28,0.0 +14309,50,16.25,47,0.0 +14309,74,10,35,0.0 +14309,8,40,23,0.0 +14310,71,21.5,32,0.0 +14310,72,34.8,39,0.0 +14310,50,16.25,15,0.0 +14310,52,7,18,0.0 +14310,4,22,43,0.0 +14310,39,18,29,0.0 +14310,27,43.9,8,0.0 +14310,19,9.2,45,0.0 +14310,58,13.25,42,0.0 +14310,41,9.65,28,0.0 +14310,9,97,5,0.0 +14310,29,123.79,28,0.0 +14310,31,12.5,23,0.0 +14310,34,14,32,0.0 +14310,44,19.45,20,0.0 +14310,51,53,14,0.0 +14310,66,17,48,0.0 +14310,67,14,25,0.0 +14310,69,36,28,0.0 +14310,57,19.5,28,0.0 +14310,10,31,20,0.0 +14310,7,30,14,0.0 +14310,5,21.35,26,0.0 +14310,35,18,26,0.0 +14310,60,34,29,0.0 +14310,8,40,30,0.0 +14310,73,15,40,0.0 +14310,42,14,7,0.0 +14310,48,12.75,31,0.0 +14310,13,6,5,0.0 +14310,1,18,47,0.0 +14310,70,15,46,0.0 +14310,17,39,33,0.0 +14310,40,18.4,16,0.0 +14310,54,7.45,26,0.0 +14310,38,263.5,35,0.0 +14310,61,28.5,21,0.0 +14310,11,21,35,0.0 +14310,15,15.5,19,0.0 +14310,25,14,36,0.0 +14310,77,13,6,0.0 +14310,63,43.9,33,0.0 +14310,16,17.45,45,0.0 +14311,16,17.45,28,0.0 +14311,50,16.25,14,0.0 +14311,18,62.5,32,0.0 +14311,43,46,6,0.0 +14311,26,31.23,22,0.0 +14311,68,12.5,19,0.0 +14311,76,18,48,0.0 +14311,25,14,24,0.0 +14311,72,34.8,38,0.0 +14311,31,12.5,31,0.0 +14311,14,23.25,11,0.0 +14311,3,10,2,0.0 +14311,27,43.9,24,0.0 +14311,15,15.5,15,0.0 +14311,41,9.65,10,0.0 +14311,57,19.5,47,0.0 +14311,45,9.5,41,0.0 +14311,37,26,37,0.0 +14311,64,33.25,35,0.0 +14311,61,28.5,41,0.0 +14311,75,7.75,35,0.0 +14311,73,15,38,0.0 +14311,47,9.5,47,0.0 +14311,19,9.2,28,0.0 +14311,51,53,3,0.0 +14311,49,20,49,0.0 +14311,5,21.35,25,0.0 +14311,55,24,3,0.0 +14311,23,9,7,0.0 +14311,13,6,38,0.0 +14311,62,49.3,34,0.0 +14311,46,12,35,0.0 +14311,30,25.89,21,0.0 +14312,52,7,21,0.0 +14312,8,40,36,0.0 +14312,76,18,18,0.0 +14312,18,62.5,14,0.0 +14312,3,10,28,0.0 +14312,71,21.5,40,0.0 +14312,25,14,10,0.0 +14312,19,9.2,50,0.0 +14312,44,19.45,25,0.0 +14312,45,9.5,25,0.0 +14312,24,4.5,1,0.0 +14312,72,34.8,29,0.0 +14312,77,13,3,0.0 +14312,2,19,20,0.0 +14312,61,28.5,23,0.0 +14312,60,34,47,0.0 +14312,22,21,7,0.0 +14312,74,10,47,0.0 +14312,65,21.05,48,0.0 +14312,27,43.9,36,0.0 +14312,11,21,44,0.0 +14312,33,2.5,49,0.0 +14312,40,18.4,8,0.0 +14312,41,9.65,36,0.0 +14312,10,31,11,0.0 +14312,54,7.45,35,0.0 +14312,9,97,36,0.0 +14312,58,13.25,1,0.0 +14312,55,24,30,0.0 +14312,47,9.5,40,0.0 +14312,69,36,40,0.0 +14312,73,15,47,0.0 +14312,23,9,24,0.0 +14312,53,32.8,8,0.0 +14312,66,17,22,0.0 +14312,14,23.25,2,0.0 +14312,17,39,43,0.0 +14312,32,32,6,0.0 +14312,56,38,6,0.0 +14312,4,22,31,0.0 +14312,34,14,48,0.0 +14312,5,21.35,10,0.0 +14312,48,12.75,47,0.0 +14312,68,12.5,26,0.0 +14312,21,10,15,0.0 +14312,16,17.45,5,0.0 +14312,36,19,7,0.0 +14312,38,263.5,17,0.0 +14312,59,55,30,0.0 +14312,67,14,4,0.0 +14312,50,16.25,40,0.0 +14312,1,18,7,0.0 +14312,7,30,12,0.0 +14312,28,45.6,40,0.0 +14312,43,46,1,0.0 +14312,46,12,31,0.0 +14312,12,38,29,0.0 +14312,31,12.5,22,0.0 +14312,29,123.79,41,0.0 +14312,57,19.5,21,0.0 +14312,37,26,20,0.0 +14312,6,25,10,0.0 +14312,42,14,18,0.0 +14312,30,25.89,25,0.0 +14312,39,18,22,0.0 +14312,20,81,34,0.0 +14312,62,49.3,28,0.0 +14312,35,18,41,0.0 +14312,26,31.23,11,0.0 +14312,13,6,9,0.0 +14312,75,7.75,46,0.0 +14312,63,43.9,31,0.0 +14312,51,53,10,0.0 +14312,49,20,41,0.0 +14312,70,15,43,0.0 +14312,15,15.5,49,0.0 +14312,64,33.25,27,0.0 +14313,6,25,49,0.0 +14313,76,18,34,0.0 +14313,11,21,22,0.0 +14313,47,9.5,36,0.0 +14313,70,15,30,0.0 +14313,62,49.3,28,0.0 +14313,19,9.2,28,0.0 +14313,75,7.75,17,0.0 +14313,56,38,16,0.0 +14313,57,19.5,44,0.0 +14313,67,14,31,0.0 +14313,71,21.5,49,0.0 +14313,44,19.45,28,0.0 +14313,7,30,17,0.0 +14313,13,6,9,0.0 +14313,77,13,29,0.0 +14313,12,38,13,0.0 +14313,72,34.8,1,0.0 +14313,30,25.89,36,0.0 +14313,34,14,36,0.0 +14313,32,32,30,0.0 +14313,8,40,24,0.0 +14313,49,20,37,0.0 +14313,23,9,17,0.0 +14313,53,32.8,7,0.0 +14313,48,12.75,15,0.0 +14313,51,53,2,0.0 +14313,18,62.5,50,0.0 +14313,43,46,9,0.0 +14313,74,10,31,0.0 +14313,40,18.4,1,0.0 +14313,37,26,49,0.0 +14313,38,263.5,1,0.0 +14313,26,31.23,15,0.0 +14313,69,36,3,0.0 +14313,66,17,24,0.0 +14313,27,43.9,3,0.0 +14313,31,12.5,39,0.0 +14313,2,19,10,0.0 +14313,64,33.25,7,0.0 +14313,60,34,24,0.0 +14313,50,16.25,27,0.0 +14313,14,23.25,40,0.0 +14313,39,18,37,0.0 +14313,20,81,40,0.0 +14313,28,45.6,26,0.0 +14313,3,10,38,0.0 +14313,68,12.5,49,0.0 +14313,61,28.5,17,0.0 +14313,55,24,35,0.0 +14313,59,55,6,0.0 +14313,35,18,20,0.0 +14313,36,19,49,0.0 +14313,21,10,38,0.0 +14313,22,21,13,0.0 +14313,42,14,7,0.0 +14313,58,13.25,34,0.0 +14313,17,39,17,0.0 +14313,16,17.45,6,0.0 +14313,54,7.45,27,0.0 +14313,45,9.5,38,0.0 +14313,15,15.5,43,0.0 +14313,65,21.05,3,0.0 +14313,5,21.35,48,0.0 +14313,41,9.65,22,0.0 +14313,24,4.5,9,0.0 +14313,29,123.79,21,0.0 +14313,63,43.9,17,0.0 +14313,33,2.5,47,0.0 +14313,73,15,34,0.0 +14313,46,12,17,0.0 +14313,52,7,45,0.0 +14313,25,14,18,0.0 +14313,9,97,35,0.0 +14313,1,18,1,0.0 +14313,10,31,3,0.0 +14313,4,22,23,0.0 +14314,32,32,22,0.0 +14314,28,45.6,48,0.0 +14314,75,7.75,11,0.0 +14314,11,21,44,0.0 +14314,31,12.5,13,0.0 +14314,66,17,7,0.0 +14314,7,30,27,0.0 +14314,10,31,21,0.0 +14314,65,21.05,44,0.0 +14314,42,14,24,0.0 +14314,76,18,50,0.0 +14314,19,9.2,27,0.0 +14314,39,18,44,0.0 +14314,67,14,49,0.0 +14314,13,6,21,0.0 +14314,58,13.25,41,0.0 +14314,2,19,11,0.0 +14314,53,32.8,50,0.0 +14314,72,34.8,4,0.0 +14314,15,15.5,31,0.0 +14314,68,12.5,28,0.0 +14314,27,43.9,16,0.0 +14314,9,97,6,0.0 +14314,43,46,46,0.0 +14314,59,55,6,0.0 +14314,73,15,5,0.0 +14314,62,49.3,17,0.0 +14314,56,38,43,0.0 +14314,50,16.25,6,0.0 +14314,17,39,39,0.0 +14314,26,31.23,35,0.0 +14314,22,21,12,0.0 +14314,20,81,22,0.0 +14314,24,4.5,44,0.0 +14314,6,25,16,0.0 +14315,51,53,42,0.0 +14315,34,14,30,0.0 +14315,38,263.5,11,0.0 +14315,63,43.9,17,0.0 +14315,15,15.5,18,0.0 +14315,53,32.8,50,0.0 +14315,66,17,15,0.0 +14315,30,25.89,28,0.0 +14315,65,21.05,43,0.0 +14315,73,15,2,0.0 +14315,52,7,23,0.0 +14315,12,38,19,0.0 +14315,1,18,19,0.0 +14315,3,10,14,0.0 +14315,33,2.5,45,0.0 +14315,55,24,16,0.0 +14315,68,12.5,42,0.0 +14315,36,19,21,0.0 +14315,72,34.8,24,0.0 +14315,27,43.9,2,0.0 +14315,67,14,22,0.0 +14315,7,30,1,0.0 +14315,50,16.25,8,0.0 +14315,77,13,20,0.0 +14315,19,9.2,24,0.0 +14315,58,13.25,20,0.0 +14315,61,28.5,38,0.0 +14315,23,9,7,0.0 +14315,74,10,41,0.0 +14315,40,18.4,6,0.0 +14315,10,31,31,0.0 +14315,45,9.5,38,0.0 +14315,28,45.6,35,0.0 +14315,57,19.5,35,0.0 +14316,75,7.75,8,0.0 +14316,1,18,49,0.0 +14316,35,18,31,0.0 +14316,54,7.45,16,0.0 +14316,61,28.5,42,0.0 +14316,15,15.5,19,0.0 +14316,36,19,9,0.0 +14316,57,19.5,24,0.0 +14316,66,17,15,0.0 +14316,24,4.5,35,0.0 +14316,76,18,11,0.0 +14316,67,14,49,0.0 +14316,8,40,2,0.0 +14316,48,12.75,24,0.0 +14316,32,32,44,0.0 +14316,69,36,9,0.0 +14317,12,38,23,0.0 +14317,5,21.35,42,0.0 +14317,31,12.5,6,0.0 +14317,20,81,11,0.0 +14317,75,7.75,43,0.0 +14317,57,19.5,12,0.0 +14317,39,18,48,0.0 +14317,73,15,32,0.0 +14317,37,26,5,0.0 +14317,34,14,28,0.0 +14317,62,49.3,7,0.0 +14317,53,32.8,36,0.0 +14317,72,34.8,46,0.0 +14317,18,62.5,9,0.0 +14318,60,34,42,0.0 +14318,50,16.25,45,0.0 +14318,40,18.4,18,0.0 +14318,75,7.75,47,0.0 +14318,61,28.5,9,0.0 +14318,24,4.5,32,0.0 +14318,20,81,37,0.0 +14318,72,34.8,1,0.0 +14318,14,23.25,49,0.0 +14318,38,263.5,14,0.0 +14318,26,31.23,49,0.0 +14318,73,15,13,0.0 +14318,23,9,48,0.0 +14318,19,9.2,40,0.0 +14318,11,21,16,0.0 +14318,15,15.5,37,0.0 +14318,68,12.5,13,0.0 +14318,53,32.8,25,0.0 +14318,51,53,39,0.0 +14318,59,55,44,0.0 +14318,28,45.6,41,0.0 +14318,9,97,16,0.0 +14318,56,38,29,0.0 +14318,47,9.5,2,0.0 +14318,44,19.45,33,0.0 +14318,1,18,49,0.0 +14318,8,40,42,0.0 +14318,42,14,48,0.0 +14318,58,13.25,24,0.0 +14318,13,6,20,0.0 +14318,43,46,6,0.0 +14318,63,43.9,39,0.0 +14318,34,14,24,0.0 +14318,37,26,46,0.0 +14318,29,123.79,48,0.0 +14318,45,9.5,14,0.0 +14318,62,49.3,11,0.0 +14318,48,12.75,27,0.0 +14318,4,22,37,0.0 +14318,18,62.5,45,0.0 +14318,27,43.9,43,0.0 +14318,49,20,22,0.0 +14318,31,12.5,40,0.0 +14318,77,13,3,0.0 +14318,3,10,23,0.0 +14318,21,10,46,0.0 +14318,71,21.5,39,0.0 +14318,39,18,49,0.0 +14318,57,19.5,30,0.0 +14318,5,21.35,41,0.0 +14318,35,18,39,0.0 +14318,10,31,15,0.0 +14318,67,14,34,0.0 +14318,69,36,15,0.0 +14318,54,7.45,43,0.0 +14319,38,263.5,7,0.0 +14319,10,31,10,0.0 +14319,58,13.25,37,0.0 +14320,9,97,21,0.0 +14320,53,32.8,20,0.0 +14320,71,21.5,36,0.0 +14320,52,7,50,0.0 +14320,55,24,49,0.0 +14320,37,26,8,0.0 +14320,77,13,22,0.0 +14320,65,21.05,40,0.0 +14320,35,18,7,0.0 +14320,59,55,46,0.0 +14320,43,46,15,0.0 +14320,61,28.5,26,0.0 +14320,50,16.25,4,0.0 +14320,26,31.23,48,0.0 +14320,57,19.5,30,0.0 +14320,41,9.65,11,0.0 +14320,17,39,32,0.0 +14320,64,33.25,1,0.0 +14320,51,53,38,0.0 +14320,2,19,48,0.0 +14320,20,81,10,0.0 +14320,27,43.9,43,0.0 +14320,48,12.75,7,0.0 +14320,58,13.25,46,0.0 +14320,4,22,43,0.0 +14320,5,21.35,20,0.0 +14320,3,10,1,0.0 +14320,47,9.5,25,0.0 +14320,13,6,50,0.0 +14320,68,12.5,24,0.0 +14320,19,9.2,17,0.0 +14320,72,34.8,33,0.0 +14320,7,30,9,0.0 +14320,67,14,10,0.0 +14320,33,2.5,33,0.0 +14320,1,18,44,0.0 +14320,30,25.89,31,0.0 +14320,32,32,13,0.0 +14320,40,18.4,46,0.0 +14320,36,19,14,0.0 +14320,10,31,6,0.0 +14320,21,10,50,0.0 +14320,66,17,37,0.0 +14320,11,21,6,0.0 +14320,31,12.5,22,0.0 +14320,62,49.3,12,0.0 +14320,49,20,3,0.0 +14320,15,15.5,23,0.0 +14320,6,25,27,0.0 +14320,25,14,2,0.0 +14320,18,62.5,48,0.0 +14320,69,36,14,0.0 +14320,73,15,11,0.0 +14320,28,45.6,31,0.0 +14320,75,7.75,48,0.0 +14321,73,15,7,0.0 +14321,30,25.89,46,0.0 +14321,72,34.8,20,0.0 +14321,49,20,34,0.0 +14322,26,31.23,32,0.0 +14322,12,38,9,0.0 +14322,19,9.2,31,0.0 +14322,31,12.5,28,0.0 +14322,76,18,22,0.0 +14322,13,6,7,0.0 +14322,77,13,36,0.0 +14322,66,17,26,0.0 +14322,48,12.75,38,0.0 +14322,53,32.8,46,0.0 +14322,23,9,26,0.0 +14322,52,7,7,0.0 +14322,27,43.9,23,0.0 +14322,2,19,41,0.0 +14322,28,45.6,45,0.0 +14322,4,22,22,0.0 +14322,22,21,37,0.0 +14322,36,19,13,0.0 +14322,54,7.45,40,0.0 +14322,16,17.45,50,0.0 +14322,45,9.5,20,0.0 +14322,50,16.25,33,0.0 +14322,61,28.5,28,0.0 +14322,35,18,4,0.0 +14322,21,10,6,0.0 +14322,64,33.25,14,0.0 +14322,60,34,37,0.0 +14322,25,14,15,0.0 +14322,42,14,11,0.0 +14322,49,20,27,0.0 +14322,7,30,44,0.0 +14322,56,38,3,0.0 +14322,62,49.3,22,0.0 +14322,10,31,43,0.0 +14322,65,21.05,16,0.0 +14323,32,32,22,0.0 +14323,50,16.25,10,0.0 +14323,35,18,40,0.0 +14323,69,36,25,0.0 +14323,72,34.8,2,0.0 +14323,29,123.79,48,0.0 +14323,41,9.65,2,0.0 +14323,55,24,45,0.0 +14323,77,13,36,0.0 +14323,22,21,47,0.0 +14323,8,40,23,0.0 +14323,14,23.25,20,0.0 +14323,28,45.6,43,0.0 +14323,48,12.75,7,0.0 +14323,26,31.23,1,0.0 +14323,73,15,37,0.0 +14323,43,46,10,0.0 +14323,71,21.5,3,0.0 +14323,31,12.5,36,0.0 +14323,15,15.5,2,0.0 +14323,25,14,6,0.0 +14323,65,21.05,22,0.0 +14323,33,2.5,8,0.0 +14323,6,25,7,0.0 +14323,9,97,18,0.0 +14323,63,43.9,33,0.0 +14323,37,26,3,0.0 +14323,24,4.5,20,0.0 +14323,46,12,41,0.0 +14323,39,18,25,0.0 +14323,5,21.35,39,0.0 +14323,1,18,34,0.0 +14323,19,9.2,34,0.0 +14324,1,18,25,0.0 +14324,61,28.5,38,0.0 +14324,12,38,11,0.0 +14324,33,2.5,39,0.0 +14324,71,21.5,10,0.0 +14324,18,62.5,49,0.0 +14324,5,21.35,37,0.0 +14324,73,15,29,0.0 +14324,55,24,32,0.0 +14324,40,18.4,48,0.0 +14324,8,40,10,0.0 +14324,76,18,19,0.0 +14324,54,7.45,30,0.0 +14324,38,263.5,7,0.0 +14324,51,53,16,0.0 +14324,50,16.25,4,0.0 +14324,14,23.25,48,0.0 +14324,46,12,35,0.0 +14324,32,32,4,0.0 +14324,59,55,2,0.0 +14324,24,4.5,20,0.0 +14324,74,10,1,0.0 +14324,9,97,15,0.0 +14324,25,14,24,0.0 +14324,64,33.25,11,0.0 +14324,65,21.05,30,0.0 +14324,26,31.23,45,0.0 +14324,2,19,4,0.0 +14324,39,18,9,0.0 +14324,11,21,44,0.0 +14324,21,10,33,0.0 +14324,56,38,10,0.0 +14324,36,19,34,0.0 +14324,72,34.8,28,0.0 +14324,67,14,38,0.0 +14324,15,15.5,5,0.0 +14324,41,9.65,8,0.0 +14324,37,26,17,0.0 +14324,22,21,16,0.0 +14324,42,14,30,0.0 +14324,57,19.5,26,0.0 +14324,62,49.3,39,0.0 +14324,63,43.9,38,0.0 +14324,20,81,44,0.0 +14324,30,25.89,34,0.0 +14324,45,9.5,16,0.0 +14324,44,19.45,18,0.0 +14324,43,46,17,0.0 +14324,10,31,43,0.0 +14324,75,7.75,45,0.0 +14324,13,6,33,0.0 +14324,68,12.5,26,0.0 +14324,19,9.2,17,0.0 +14324,60,34,20,0.0 +14324,3,10,44,0.0 +14324,6,25,40,0.0 +14324,66,17,28,0.0 +14324,49,20,50,0.0 +14324,16,17.45,11,0.0 +14324,29,123.79,49,0.0 +14324,34,14,27,0.0 +14324,27,43.9,50,0.0 +14324,4,22,40,0.0 +14324,23,9,38,0.0 +14324,58,13.25,18,0.0 +14324,48,12.75,50,0.0 +14324,28,45.6,9,0.0 +14324,70,15,23,0.0 +14324,47,9.5,18,0.0 +14324,69,36,45,0.0 +14324,17,39,9,0.0 +14324,77,13,8,0.0 +14324,7,30,27,0.0 +14324,31,12.5,7,0.0 +14324,35,18,6,0.0 +14324,53,32.8,45,0.0 +14325,13,6,50,0.0 +14325,36,19,21,0.0 +14325,2,19,19,0.0 +14325,14,23.25,1,0.0 +14325,18,62.5,29,0.0 +14325,32,32,45,0.0 +14325,8,40,44,0.0 +14325,16,17.45,9,0.0 +14325,67,14,30,0.0 +14325,39,18,3,0.0 +14325,42,14,1,0.0 +14325,6,25,29,0.0 +14325,50,16.25,46,0.0 +14325,15,15.5,7,0.0 +14325,19,9.2,28,0.0 +14325,59,55,23,0.0 +14325,24,4.5,38,0.0 +14325,7,30,14,0.0 +14325,72,34.8,49,0.0 +14325,66,17,27,0.0 +14325,41,9.65,10,0.0 +14325,5,21.35,24,0.0 +14325,33,2.5,12,0.0 +14325,44,19.45,47,0.0 +14325,61,28.5,39,0.0 +14325,71,21.5,25,0.0 +14325,17,39,12,0.0 +14325,1,18,16,0.0 +14326,61,28.5,12,0.0 +14326,76,18,7,0.0 +14326,6,25,6,0.0 +14326,45,9.5,2,0.0 +14326,17,39,31,0.0 +14326,54,7.45,41,0.0 +14326,64,33.25,22,0.0 +14326,67,14,36,0.0 +14326,21,10,26,0.0 +14326,38,263.5,36,0.0 +14326,24,4.5,8,0.0 +14326,31,12.5,4,0.0 +14326,70,15,47,0.0 +14326,71,21.5,6,0.0 +14326,28,45.6,49,0.0 +14326,18,62.5,24,0.0 +14326,74,10,35,0.0 +14326,36,19,38,0.0 +14326,42,14,46,0.0 +14326,22,21,2,0.0 +14326,50,16.25,12,0.0 +14326,59,55,38,0.0 +14326,56,38,7,0.0 +14326,40,18.4,37,0.0 +14326,12,38,41,0.0 +14326,32,32,2,0.0 +14326,44,19.45,22,0.0 +14326,41,9.65,31,0.0 +14326,53,32.8,5,0.0 +14326,49,20,6,0.0 +14326,46,12,48,0.0 +14326,1,18,43,0.0 +14326,77,13,40,0.0 +14326,26,31.23,44,0.0 +14326,11,21,11,0.0 +14326,43,46,5,0.0 +14326,7,30,14,0.0 +14326,5,21.35,46,0.0 +14326,39,18,36,0.0 +14326,3,10,9,0.0 +14326,25,14,24,0.0 +14326,66,17,21,0.0 +14326,52,7,23,0.0 +14326,16,17.45,2,0.0 +14326,15,15.5,28,0.0 +14326,30,25.89,24,0.0 +14326,20,81,35,0.0 +14326,2,19,20,0.0 +14326,48,12.75,32,0.0 +14326,73,15,4,0.0 +14326,72,34.8,33,0.0 +14326,35,18,31,0.0 +14326,62,49.3,23,0.0 +14326,29,123.79,39,0.0 +14326,14,23.25,50,0.0 +14326,19,9.2,7,0.0 +14326,69,36,24,0.0 +14326,23,9,30,0.0 +14326,37,26,28,0.0 +14326,68,12.5,33,0.0 +14326,75,7.75,31,0.0 +14326,8,40,47,0.0 +14326,58,13.25,7,0.0 +14326,63,43.9,10,0.0 +14326,55,24,38,0.0 +14326,47,9.5,15,0.0 +14326,13,6,31,0.0 +14326,27,43.9,33,0.0 +14326,65,21.05,8,0.0 +14326,34,14,10,0.0 +14327,12,38,34,0.0 +14327,57,19.5,13,0.0 +14327,9,97,20,0.0 +14327,6,25,28,0.0 +14327,61,28.5,50,0.0 +14327,24,4.5,49,0.0 +14327,3,10,49,0.0 +14327,29,123.79,10,0.0 +14327,51,53,41,0.0 +14327,34,14,8,0.0 +14327,37,26,9,0.0 +14327,1,18,34,0.0 +14327,36,19,45,0.0 +14327,65,21.05,7,0.0 +14327,14,23.25,47,0.0 +14327,43,46,8,0.0 +14327,10,31,26,0.0 +14327,59,55,1,0.0 +14327,49,20,11,0.0 +14327,71,21.5,50,0.0 +14327,5,21.35,23,0.0 +14327,77,13,10,0.0 +14327,63,43.9,9,0.0 +14327,56,38,44,0.0 +14327,38,263.5,15,0.0 +14327,41,9.65,25,0.0 +14327,64,33.25,13,0.0 +14327,72,34.8,42,0.0 +14327,22,21,36,0.0 +14327,13,6,32,0.0 +14327,23,9,11,0.0 +14327,20,81,28,0.0 +14327,40,18.4,40,0.0 +14327,19,9.2,34,0.0 +14327,32,32,23,0.0 +14327,46,12,14,0.0 +14327,54,7.45,38,0.0 +14327,4,22,43,0.0 +14327,45,9.5,14,0.0 +14327,21,10,41,0.0 +14327,27,43.9,17,0.0 +14327,7,30,19,0.0 +14327,33,2.5,21,0.0 +14327,18,62.5,6,0.0 +14327,74,10,39,0.0 +14327,8,40,1,0.0 +14327,58,13.25,4,0.0 +14327,50,16.25,37,0.0 +14327,48,12.75,13,0.0 +14327,47,9.5,16,0.0 +14327,60,34,43,0.0 +14327,62,49.3,50,0.0 +14327,2,19,20,0.0 +14327,26,31.23,39,0.0 +14327,52,7,31,0.0 +14327,31,12.5,36,0.0 +14327,16,17.45,29,0.0 +14327,35,18,39,0.0 +14327,70,15,15,0.0 +14327,66,17,2,0.0 +14327,28,45.6,30,0.0 +14327,69,36,17,0.0 +14327,42,14,14,0.0 +14327,53,32.8,36,0.0 +14328,59,55,36,0.0 +14328,41,9.65,44,0.0 +14328,34,14,26,0.0 +14328,6,25,50,0.0 +14328,77,13,18,0.0 +14328,37,26,21,0.0 +14328,7,30,4,0.0 +14328,24,4.5,34,0.0 +14328,11,21,16,0.0 +14328,76,18,21,0.0 +14328,26,31.23,12,0.0 +14328,50,16.25,36,0.0 +14328,1,18,17,0.0 +14328,27,43.9,46,0.0 +14328,36,19,3,0.0 +14328,44,19.45,45,0.0 +14328,28,45.6,6,0.0 +14328,66,17,36,0.0 +14328,8,40,20,0.0 +14328,49,20,11,0.0 +14328,32,32,36,0.0 +14328,10,31,30,0.0 +14328,63,43.9,14,0.0 +14328,21,10,3,0.0 +14328,23,9,31,0.0 +14328,29,123.79,37,0.0 +14328,74,10,11,0.0 +14328,55,24,36,0.0 +14328,30,25.89,12,0.0 +14328,2,19,47,0.0 +14328,62,49.3,48,0.0 +14328,3,10,29,0.0 +14328,17,39,9,0.0 +14328,53,32.8,24,0.0 +14328,14,23.25,12,0.0 +14328,57,19.5,46,0.0 +14328,35,18,25,0.0 +14328,68,12.5,13,0.0 +14328,72,34.8,2,0.0 +14328,56,38,4,0.0 +14328,54,7.45,19,0.0 +14328,5,21.35,19,0.0 +14328,38,263.5,10,0.0 +14328,70,15,24,0.0 +14328,18,62.5,18,0.0 +14328,64,33.25,30,0.0 +14328,33,2.5,19,0.0 +14328,43,46,11,0.0 +14328,15,15.5,33,0.0 +14328,47,9.5,19,0.0 +14328,20,81,49,0.0 +14328,16,17.45,34,0.0 +14328,51,53,42,0.0 +14328,39,18,49,0.0 +14328,58,13.25,44,0.0 +14328,13,6,34,0.0 +14328,46,12,4,0.0 +14328,45,9.5,27,0.0 +14328,52,7,37,0.0 +14329,75,7.75,15,0.0 +14329,7,30,21,0.0 +14329,18,62.5,16,0.0 +14329,71,21.5,42,0.0 +14329,50,16.25,40,0.0 +14329,6,25,31,0.0 +14329,19,9.2,45,0.0 +14329,29,123.79,37,0.0 +14329,74,10,28,0.0 +14329,14,23.25,33,0.0 +14329,15,15.5,48,0.0 +14329,16,17.45,36,0.0 +14329,24,4.5,24,0.0 +14329,60,34,25,0.0 +14329,39,18,32,0.0 +14329,49,20,42,0.0 +14329,41,9.65,11,0.0 +14329,45,9.5,21,0.0 +14329,52,7,49,0.0 +14329,57,19.5,36,0.0 +14329,64,33.25,46,0.0 +14329,66,17,13,0.0 +14329,30,25.89,11,0.0 +14330,3,10,8,0.0 +14330,73,15,32,0.0 +14330,53,32.8,15,0.0 +14330,40,18.4,44,0.0 +14330,10,31,23,0.0 +14330,31,12.5,2,0.0 +14330,71,21.5,34,0.0 +14330,55,24,24,0.0 +14330,11,21,6,0.0 +14330,32,32,18,0.0 +14330,52,7,19,0.0 +14330,49,20,34,0.0 +14330,5,21.35,47,0.0 +14330,23,9,17,0.0 +14330,20,81,7,0.0 +14330,15,15.5,23,0.0 +14330,2,19,7,0.0 +14330,36,19,39,0.0 +14330,51,53,24,0.0 +14330,34,14,13,0.0 +14330,14,23.25,16,0.0 +14330,62,49.3,25,0.0 +14330,63,43.9,14,0.0 +14330,38,263.5,11,0.0 +14330,58,13.25,19,0.0 +14330,19,9.2,43,0.0 +14330,35,18,23,0.0 +14330,44,19.45,37,0.0 +14330,9,97,24,0.0 +14330,65,21.05,40,0.0 +14330,6,25,34,0.0 +14330,72,34.8,19,0.0 +14330,30,25.89,48,0.0 +14330,74,10,12,0.0 +14330,54,7.45,37,0.0 +14330,69,36,32,0.0 +14330,41,9.65,37,0.0 +14330,25,14,26,0.0 +14330,27,43.9,2,0.0 +14330,4,22,46,0.0 +14330,76,18,6,0.0 +14330,47,9.5,46,0.0 +14330,59,55,16,0.0 +14330,48,12.75,44,0.0 +14330,45,9.5,23,0.0 +14330,12,38,21,0.0 +14330,42,14,34,0.0 +14330,77,13,37,0.0 +14330,64,33.25,1,0.0 +14331,26,31.23,39,0.0 +14331,31,12.5,19,0.0 +14331,77,13,8,0.0 +14331,46,12,11,0.0 +14331,43,46,30,0.0 +14331,58,13.25,22,0.0 +14331,37,26,36,0.0 +14331,48,12.75,2,0.0 +14331,33,2.5,10,0.0 +14331,74,10,32,0.0 +14331,27,43.9,29,0.0 +14331,23,9,29,0.0 +14331,9,97,20,0.0 +14331,6,25,45,0.0 +14331,54,7.45,25,0.0 +14331,44,19.45,32,0.0 +14331,30,25.89,31,0.0 +14331,1,18,3,0.0 +14331,66,17,35,0.0 +14331,73,15,19,0.0 +14331,28,45.6,19,0.0 +14331,3,10,4,0.0 +14331,16,17.45,45,0.0 +14331,59,55,46,0.0 +14331,18,62.5,13,0.0 +14331,42,14,34,0.0 +14331,13,6,35,0.0 +14331,34,14,1,0.0 +14331,56,38,2,0.0 +14331,63,43.9,46,0.0 +14331,51,53,44,0.0 +14331,52,7,20,0.0 +14331,4,22,47,0.0 +14331,21,10,4,0.0 +14331,40,18.4,40,0.0 +14331,19,9.2,47,0.0 +14331,72,34.8,27,0.0 +14331,24,4.5,36,0.0 +14331,68,12.5,25,0.0 +14331,36,19,41,0.0 +14331,67,14,27,0.0 +14331,50,16.25,11,0.0 +14331,20,81,25,0.0 +14331,15,15.5,27,0.0 +14331,38,263.5,5,0.0 +14331,41,9.65,3,0.0 +14331,5,21.35,32,0.0 +14331,69,36,23,0.0 +14331,25,14,11,0.0 +14331,14,23.25,49,0.0 +14331,53,32.8,15,0.0 +14331,47,9.5,9,0.0 +14331,22,21,9,0.0 +14331,45,9.5,30,0.0 +14331,76,18,46,0.0 +14331,17,39,23,0.0 +14331,64,33.25,39,0.0 +14331,75,7.75,28,0.0 +14331,62,49.3,35,0.0 +14331,71,21.5,39,0.0 +14331,61,28.5,43,0.0 +14331,57,19.5,32,0.0 +14331,12,38,40,0.0 +14331,29,123.79,33,0.0 +14331,55,24,34,0.0 +14331,70,15,31,0.0 +14331,60,34,18,0.0 +14331,32,32,29,0.0 +14331,8,40,13,0.0 +14331,10,31,34,0.0 +14331,7,30,19,0.0 +14331,11,21,47,0.0 +14331,39,18,17,0.0 +14331,49,20,32,0.0 +14332,17,39,46,0.0 +14332,15,15.5,42,0.0 +14332,20,81,34,0.0 +14332,34,14,5,0.0 +14332,12,38,9,0.0 +14332,3,10,40,0.0 +14332,14,23.25,32,0.0 +14332,23,9,3,0.0 +14332,18,62.5,13,0.0 +14332,1,18,14,0.0 +14332,47,9.5,39,0.0 +14332,74,10,39,0.0 +14332,16,17.45,15,0.0 +14332,55,24,37,0.0 +14332,31,12.5,8,0.0 +14332,29,123.79,7,0.0 +14332,71,21.5,43,0.0 +14332,10,31,5,0.0 +14332,6,25,30,0.0 +14332,66,17,46,0.0 +14332,36,19,33,0.0 +14332,37,26,26,0.0 +14332,24,4.5,20,0.0 +14332,38,263.5,6,0.0 +14332,53,32.8,12,0.0 +14332,39,18,8,0.0 +14332,72,34.8,40,0.0 +14332,65,21.05,47,0.0 +14332,56,38,30,0.0 +14332,4,22,50,0.0 +14332,64,33.25,37,0.0 +14332,67,14,42,0.0 +14332,40,18.4,14,0.0 +14332,63,43.9,38,0.0 +14332,51,53,6,0.0 +14332,61,28.5,21,0.0 +14332,5,21.35,45,0.0 +14332,50,16.25,45,0.0 +14332,57,19.5,2,0.0 +14332,25,14,9,0.0 +14332,45,9.5,39,0.0 +14332,22,21,35,0.0 +14332,13,6,18,0.0 +14332,77,13,9,0.0 +14332,28,45.6,42,0.0 +14332,7,30,14,0.0 +14332,68,12.5,25,0.0 +14332,73,15,18,0.0 +14332,26,31.23,30,0.0 +14332,42,14,46,0.0 +14332,8,40,48,0.0 +14332,54,7.45,13,0.0 +14332,62,49.3,13,0.0 +14332,27,43.9,40,0.0 +14332,75,7.75,5,0.0 +14332,52,7,24,0.0 +14332,33,2.5,22,0.0 +14332,46,12,48,0.0 +14332,59,55,8,0.0 +14332,32,32,36,0.0 +14332,2,19,47,0.0 +14332,19,9.2,48,0.0 +14332,48,12.75,5,0.0 +14332,9,97,44,0.0 +14332,30,25.89,49,0.0 +14332,49,20,6,0.0 +14332,60,34,49,0.0 +14332,69,36,41,0.0 +14332,35,18,32,0.0 +14332,11,21,33,0.0 +14332,43,46,14,0.0 +14332,76,18,31,0.0 +14332,58,13.25,5,0.0 +14333,16,17.45,21,0.0 +14333,68,12.5,36,0.0 +14333,72,34.8,30,0.0 +14333,32,32,16,0.0 +14333,59,55,28,0.0 +14333,36,19,5,0.0 +14333,13,6,31,0.0 +14333,1,18,16,0.0 +14333,37,26,37,0.0 +14333,8,40,48,0.0 +14333,9,97,39,0.0 +14333,7,30,13,0.0 +14333,10,31,11,0.0 +14333,60,34,26,0.0 +14333,73,15,38,0.0 +14333,57,19.5,30,0.0 +14333,62,49.3,4,0.0 +14333,69,36,40,0.0 +14333,31,12.5,26,0.0 +14333,14,23.25,19,0.0 +14333,12,38,25,0.0 +14333,35,18,22,0.0 +14333,18,62.5,32,0.0 +14333,65,21.05,14,0.0 +14333,41,9.65,9,0.0 +14333,64,33.25,49,0.0 +14333,40,18.4,17,0.0 +14333,48,12.75,26,0.0 +14333,5,21.35,33,0.0 +14333,50,16.25,1,0.0 +14333,39,18,16,0.0 +14333,67,14,33,0.0 +14333,6,25,13,0.0 +14333,51,53,19,0.0 +14333,56,38,33,0.0 +14333,2,19,35,0.0 +14333,77,13,40,0.0 +14333,42,14,13,0.0 +14333,58,13.25,39,0.0 +14333,20,81,42,0.0 +14333,28,45.6,42,0.0 +14333,29,123.79,16,0.0 +14333,4,22,21,0.0 +14333,49,20,12,0.0 +14334,35,18,37,0.0 +14334,15,15.5,3,0.0 +14334,48,12.75,3,0.0 +14334,11,21,7,0.0 +14334,13,6,34,0.0 +14334,71,21.5,19,0.0 +14334,22,21,50,0.0 +14334,33,2.5,2,0.0 +14334,39,18,37,0.0 +14334,9,97,25,0.0 +14334,72,34.8,4,0.0 +14334,70,15,50,0.0 +14334,44,19.45,18,0.0 +14334,51,53,35,0.0 +14334,20,81,37,0.0 +14334,43,46,47,0.0 +14334,18,62.5,35,0.0 +14334,37,26,21,0.0 +14334,74,10,46,0.0 +14334,14,23.25,26,0.0 +14334,65,21.05,42,0.0 +14334,1,18,41,0.0 +14334,31,12.5,22,0.0 +14334,50,16.25,11,0.0 +14334,58,13.25,43,0.0 +14334,24,4.5,20,0.0 +14334,21,10,2,0.0 +14334,27,43.9,39,0.0 +14334,66,17,41,0.0 +14334,60,34,13,0.0 +14334,26,31.23,6,0.0 +14334,77,13,8,0.0 +14334,30,25.89,22,0.0 +14334,41,9.65,9,0.0 +14334,12,38,36,0.0 +14334,6,25,17,0.0 +14334,34,14,13,0.0 +14334,75,7.75,43,0.0 +14334,55,24,48,0.0 +14334,36,19,36,0.0 +14334,61,28.5,4,0.0 +14334,32,32,39,0.0 +14334,3,10,16,0.0 +14334,8,40,26,0.0 +14334,10,31,4,0.0 +14334,16,17.45,24,0.0 +14334,64,33.25,49,0.0 +14334,59,55,13,0.0 +14334,52,7,36,0.0 +14334,19,9.2,2,0.0 +14334,62,49.3,50,0.0 +14334,29,123.79,11,0.0 +14334,28,45.6,28,0.0 +14334,23,9,22,0.0 +14335,49,20,27,0.0 +14335,9,97,17,0.0 +14335,51,53,38,0.0 +14335,3,10,31,0.0 +14335,25,14,44,0.0 +14335,69,36,25,0.0 +14335,50,16.25,23,0.0 +14335,29,123.79,11,0.0 +14335,52,7,41,0.0 +14335,10,31,5,0.0 +14335,14,23.25,42,0.0 +14335,67,14,18,0.0 +14335,59,55,20,0.0 +14335,62,49.3,17,0.0 +14335,46,12,24,0.0 +14335,5,21.35,30,0.0 +14335,15,15.5,13,0.0 +14335,33,2.5,49,0.0 +14335,68,12.5,28,0.0 +14335,24,4.5,36,0.0 +14335,8,40,27,0.0 +14335,17,39,5,0.0 +14335,45,9.5,43,0.0 +14335,19,9.2,12,0.0 +14335,42,14,34,0.0 +14335,6,25,50,0.0 +14335,22,21,24,0.0 +14335,56,38,25,0.0 +14335,38,263.5,29,0.0 +14335,71,21.5,50,0.0 +14335,36,19,8,0.0 +14335,61,28.5,5,0.0 +14335,64,33.25,34,0.0 +14335,54,7.45,27,0.0 +14335,2,19,23,0.0 +14335,23,9,28,0.0 +14335,13,6,1,0.0 +14335,77,13,35,0.0 +14335,28,45.6,34,0.0 +14335,73,15,11,0.0 +14335,58,13.25,48,0.0 +14335,63,43.9,16,0.0 +14335,55,24,26,0.0 +14335,30,25.89,4,0.0 +14335,74,10,24,0.0 +14335,21,10,8,0.0 +14335,75,7.75,17,0.0 +14335,32,32,9,0.0 +14335,41,9.65,13,0.0 +14335,12,38,39,0.0 +14335,60,34,44,0.0 +14335,34,14,41,0.0 +14335,18,62.5,35,0.0 +14335,44,19.45,18,0.0 +14335,4,22,39,0.0 +14335,40,18.4,39,0.0 +14335,70,15,23,0.0 +14335,27,43.9,17,0.0 +14335,1,18,44,0.0 +14335,31,12.5,28,0.0 +14335,65,21.05,21,0.0 +14335,39,18,18,0.0 +14335,57,19.5,6,0.0 +14335,66,17,7,0.0 +14335,48,12.75,7,0.0 +14335,76,18,32,0.0 +14335,53,32.8,19,0.0 +14335,43,46,25,0.0 +14335,11,21,28,0.0 +14336,9,97,39,0.0 +14336,45,9.5,2,0.0 +14336,4,22,18,0.0 +14336,22,21,12,0.0 +14336,31,12.5,30,0.0 +14336,51,53,24,0.0 +14336,50,16.25,5,0.0 +14336,5,21.35,42,0.0 +14336,21,10,41,0.0 +14336,14,23.25,11,0.0 +14336,57,19.5,11,0.0 +14336,74,10,21,0.0 +14336,19,9.2,21,0.0 +14336,33,2.5,48,0.0 +14336,13,6,42,0.0 +14336,62,49.3,13,0.0 +14336,15,15.5,4,0.0 +14336,25,14,8,0.0 +14336,7,30,23,0.0 +14336,55,24,5,0.0 +14336,26,31.23,13,0.0 +14336,56,38,31,0.0 +14337,39,18,21,0.0 +14337,22,21,3,0.0 +14337,77,13,10,0.0 +14337,67,14,44,0.0 +14337,53,32.8,44,0.0 +14337,13,6,16,0.0 +14337,27,43.9,25,0.0 +14337,73,15,11,0.0 +14337,25,14,27,0.0 +14337,15,15.5,34,0.0 +14337,59,55,36,0.0 +14337,56,38,9,0.0 +14337,10,31,14,0.0 +14337,11,21,30,0.0 +14337,17,39,10,0.0 +14337,28,45.6,48,0.0 +14337,74,10,18,0.0 +14337,70,15,2,0.0 +14337,68,12.5,22,0.0 +14337,61,28.5,40,0.0 +14337,48,12.75,2,0.0 +14337,5,21.35,40,0.0 +14337,46,12,18,0.0 +14338,20,81,22,0.0 +14338,66,17,40,0.0 +14338,52,7,38,0.0 +14338,71,21.5,41,0.0 +14338,7,30,33,0.0 +14338,6,25,41,0.0 +14338,42,14,6,0.0 +14338,9,97,15,0.0 +14338,22,21,13,0.0 +14338,30,25.89,23,0.0 +14338,38,263.5,48,0.0 +14338,32,32,10,0.0 +14338,35,18,50,0.0 +14338,12,38,2,0.0 +14338,48,12.75,45,0.0 +14338,1,18,49,0.0 +14338,24,4.5,3,0.0 +14338,3,10,19,0.0 +14338,14,23.25,33,0.0 +14338,76,18,8,0.0 +14338,27,43.9,15,0.0 +14338,36,19,5,0.0 +14338,28,45.6,6,0.0 +14338,62,49.3,1,0.0 +14338,13,6,13,0.0 +14338,67,14,47,0.0 +14338,39,18,3,0.0 +14338,72,34.8,32,0.0 +14338,77,13,36,0.0 +14338,37,26,18,0.0 +14338,11,21,28,0.0 +14338,19,9.2,26,0.0 +14338,17,39,15,0.0 +14338,31,12.5,25,0.0 +14338,51,53,43,0.0 +14338,65,21.05,21,0.0 +14338,34,14,25,0.0 +14338,64,33.25,28,0.0 +14338,55,24,6,0.0 +14338,59,55,40,0.0 +14338,68,12.5,1,0.0 +14338,60,34,29,0.0 +14338,47,9.5,27,0.0 +14338,18,62.5,29,0.0 +14338,45,9.5,27,0.0 +14338,15,15.5,3,0.0 +14338,4,22,46,0.0 +14338,56,38,16,0.0 +14338,61,28.5,26,0.0 +14338,73,15,9,0.0 +14338,40,18.4,5,0.0 +14338,2,19,2,0.0 +14338,33,2.5,38,0.0 +14338,5,21.35,35,0.0 +14338,46,12,16,0.0 +14338,63,43.9,6,0.0 +14338,50,16.25,5,0.0 +14338,29,123.79,21,0.0 +14338,44,19.45,20,0.0 +14338,25,14,48,0.0 +14338,23,9,19,0.0 +14338,10,31,10,0.0 +14339,77,13,23,0.0 +14339,19,9.2,39,0.0 +14339,58,13.25,45,0.0 +14339,9,97,17,0.0 +14339,65,21.05,1,0.0 +14339,50,16.25,23,0.0 +14339,24,4.5,40,0.0 +14339,20,81,16,0.0 +14339,33,2.5,2,0.0 +14339,52,7,36,0.0 +14339,45,9.5,37,0.0 +14340,26,31.23,19,0.0 +14340,6,25,44,0.0 +14340,31,12.5,35,0.0 +14340,1,18,20,0.0 +14340,4,22,34,0.0 +14340,55,24,34,0.0 +14340,41,9.65,45,0.0 +14340,5,21.35,48,0.0 +14340,25,14,28,0.0 +14340,65,21.05,19,0.0 +14340,13,6,16,0.0 +14340,63,43.9,47,0.0 +14340,75,7.75,36,0.0 +14340,22,21,2,0.0 +14340,14,23.25,40,0.0 +14340,34,14,47,0.0 +14340,70,15,11,0.0 +14340,71,21.5,34,0.0 +14340,23,9,2,0.0 +14340,42,14,19,0.0 +14340,54,7.45,22,0.0 +14340,62,49.3,15,0.0 +14340,52,7,31,0.0 +14340,56,38,16,0.0 +14340,12,38,5,0.0 +14340,28,45.6,29,0.0 +14340,3,10,18,0.0 +14340,43,46,31,0.0 +14340,38,263.5,39,0.0 +14340,8,40,40,0.0 +14340,58,13.25,7,0.0 +14340,69,36,9,0.0 +14340,74,10,6,0.0 +14340,46,12,7,0.0 +14340,20,81,10,0.0 +14340,68,12.5,14,0.0 +14340,49,20,42,0.0 +14340,60,34,41,0.0 +14340,51,53,14,0.0 +14340,45,9.5,6,0.0 +14340,73,15,11,0.0 +14340,64,33.25,7,0.0 +14340,10,31,42,0.0 +14340,61,28.5,3,0.0 +14340,30,25.89,31,0.0 +14340,72,34.8,37,0.0 +14340,57,19.5,3,0.0 +14340,29,123.79,40,0.0 +14340,17,39,36,0.0 +14340,11,21,20,0.0 +14340,18,62.5,35,0.0 +14340,15,15.5,5,0.0 +14340,27,43.9,50,0.0 +14340,48,12.75,1,0.0 +14340,50,16.25,3,0.0 +14340,47,9.5,13,0.0 +14340,19,9.2,31,0.0 +14340,67,14,35,0.0 +14340,39,18,30,0.0 +14340,35,18,17,0.0 +14340,9,97,48,0.0 +14340,16,17.45,14,0.0 +14341,64,33.25,12,0.0 +14341,23,9,43,0.0 +14341,60,34,24,0.0 +14341,19,9.2,16,0.0 +14341,4,22,48,0.0 +14341,74,10,8,0.0 +14341,39,18,3,0.0 +14341,52,7,5,0.0 +14341,11,21,28,0.0 +14341,61,28.5,16,0.0 +14341,32,32,49,0.0 +14341,15,15.5,41,0.0 +14341,27,43.9,15,0.0 +14341,68,12.5,46,0.0 +14341,42,14,6,0.0 +14341,58,13.25,21,0.0 +14341,47,9.5,20,0.0 +14341,75,7.75,32,0.0 +14341,69,36,27,0.0 +14341,59,55,13,0.0 +14341,21,10,35,0.0 +14341,62,49.3,47,0.0 +14341,48,12.75,21,0.0 +14341,53,32.8,21,0.0 +14341,65,21.05,10,0.0 +14341,24,4.5,8,0.0 +14341,63,43.9,1,0.0 +14341,3,10,3,0.0 +14341,49,20,11,0.0 +14341,28,45.6,36,0.0 +14341,8,40,26,0.0 +14341,9,97,16,0.0 +14341,26,31.23,4,0.0 +14341,6,25,23,0.0 +14341,31,12.5,45,0.0 +14341,14,23.25,30,0.0 +14341,30,25.89,17,0.0 +14341,7,30,5,0.0 +14341,29,123.79,35,0.0 +14341,41,9.65,46,0.0 +14342,65,21.05,39,0.0 +14342,30,25.89,14,0.0 +14342,29,123.79,13,0.0 +14342,75,7.75,11,0.0 +14342,67,14,46,0.0 +14342,24,4.5,33,0.0 +14342,34,14,4,0.0 +14342,47,9.5,30,0.0 +14342,3,10,42,0.0 +14342,55,24,4,0.0 +14342,36,19,39,0.0 +14342,35,18,31,0.0 +14342,72,34.8,16,0.0 +14343,30,25.89,15,0.0 +14343,20,81,4,0.0 +14343,48,12.75,9,0.0 +14343,54,7.45,5,0.0 +14343,36,19,43,0.0 +14343,68,12.5,36,0.0 +14343,22,21,12,0.0 +14343,77,13,38,0.0 +14343,71,21.5,6,0.0 +14343,14,23.25,26,0.0 +14343,21,10,49,0.0 +14343,53,32.8,26,0.0 +14343,24,4.5,28,0.0 +14343,64,33.25,32,0.0 +14343,63,43.9,19,0.0 +14343,65,21.05,47,0.0 +14343,43,46,49,0.0 +14343,59,55,45,0.0 +14343,50,16.25,47,0.0 +14343,6,25,29,0.0 +14343,1,18,28,0.0 +14343,72,34.8,15,0.0 +14343,67,14,8,0.0 +14343,51,53,13,0.0 +14343,57,19.5,31,0.0 +14343,2,19,5,0.0 +14343,58,13.25,18,0.0 +14343,29,123.79,7,0.0 +14343,47,9.5,11,0.0 +14343,76,18,41,0.0 +14343,25,14,16,0.0 +14343,32,32,20,0.0 +14343,12,38,26,0.0 +14343,34,14,50,0.0 +14344,4,22,9,0.0 +14344,72,34.8,42,0.0 +14344,15,15.5,7,0.0 +14344,18,62.5,9,0.0 +14344,13,6,18,0.0 +14345,49,20,1,0.0 +14345,66,17,46,0.0 +14345,21,10,13,0.0 +14345,38,263.5,40,0.0 +14345,6,25,45,0.0 +14345,4,22,7,0.0 +14345,39,18,34,0.0 +14345,10,31,23,0.0 +14345,52,7,43,0.0 +14345,56,38,21,0.0 +14345,1,18,34,0.0 +14345,35,18,30,0.0 +14345,36,19,9,0.0 +14345,13,6,24,0.0 +14345,9,97,6,0.0 +14345,43,46,41,0.0 +14345,28,45.6,42,0.0 +14345,61,28.5,21,0.0 +14345,24,4.5,18,0.0 +14345,73,15,7,0.0 +14345,77,13,18,0.0 +14345,17,39,8,0.0 +14345,70,15,48,0.0 +14345,31,12.5,21,0.0 +14345,46,12,5,0.0 +14345,57,19.5,31,0.0 +14345,47,9.5,27,0.0 +14345,37,26,35,0.0 +14345,20,81,25,0.0 +14345,8,40,9,0.0 +14345,14,23.25,47,0.0 +14345,2,19,40,0.0 +14345,25,14,37,0.0 +14346,65,21.05,48,0.0 +14346,60,34,28,0.0 +14346,29,123.79,25,0.0 +14346,1,18,4,0.0 +14346,55,24,11,0.0 +14346,5,21.35,15,0.0 +14346,32,32,22,0.0 +14346,51,53,29,0.0 +14346,49,20,45,0.0 +14346,64,33.25,9,0.0 +14346,25,14,37,0.0 +14346,57,19.5,40,0.0 +14346,36,19,18,0.0 +14346,15,15.5,41,0.0 +14346,39,18,47,0.0 +14346,11,21,30,0.0 +14346,38,263.5,41,0.0 +14346,24,4.5,29,0.0 +14346,28,45.6,8,0.0 +14346,62,49.3,7,0.0 +14346,12,38,45,0.0 +14347,77,13,43,0.0 +14347,27,43.9,28,0.0 +14347,23,9,49,0.0 +14347,3,10,30,0.0 +14347,30,25.89,4,0.0 +14347,10,31,31,0.0 +14347,7,30,29,0.0 +14347,71,21.5,33,0.0 +14347,20,81,50,0.0 +14347,54,7.45,6,0.0 +14347,40,18.4,42,0.0 +14347,13,6,6,0.0 +14347,52,7,18,0.0 +14347,17,39,42,0.0 +14347,58,13.25,40,0.0 +14347,62,49.3,33,0.0 +14347,32,32,35,0.0 +14347,68,12.5,35,0.0 +14347,55,24,19,0.0 +14347,25,14,7,0.0 +14347,38,263.5,29,0.0 +14347,75,7.75,35,0.0 +14347,36,19,30,0.0 +14347,70,15,18,0.0 +14347,28,45.6,19,0.0 +14347,15,15.5,7,0.0 +14347,37,26,49,0.0 +14347,26,31.23,32,0.0 +14347,66,17,5,0.0 +14347,51,53,27,0.0 +14347,76,18,46,0.0 +14347,53,32.8,18,0.0 +14347,59,55,12,0.0 +14347,64,33.25,8,0.0 +14347,41,9.65,9,0.0 +14347,74,10,14,0.0 +14347,67,14,18,0.0 +14347,14,23.25,23,0.0 +14347,46,12,17,0.0 +14347,63,43.9,19,0.0 +14347,57,19.5,10,0.0 +14347,21,10,34,0.0 +14347,69,36,28,0.0 +14347,34,14,8,0.0 +14347,39,18,15,0.0 +14347,56,38,9,0.0 +14347,44,19.45,37,0.0 +14347,8,40,32,0.0 +14347,29,123.79,47,0.0 +14347,2,19,11,0.0 +14347,61,28.5,17,0.0 +14347,73,15,22,0.0 +14347,9,97,26,0.0 +14347,45,9.5,1,0.0 +14347,24,4.5,31,0.0 +14347,22,21,24,0.0 +14347,48,12.75,47,0.0 +14347,4,22,39,0.0 +14347,16,17.45,43,0.0 +14347,72,34.8,50,0.0 +14347,49,20,44,0.0 +14347,42,14,21,0.0 +14347,33,2.5,11,0.0 +14347,6,25,27,0.0 +14347,1,18,43,0.0 +14347,35,18,22,0.0 +14347,47,9.5,1,0.0 +14347,11,21,35,0.0 +14347,5,21.35,43,0.0 +14347,12,38,38,0.0 +14347,65,21.05,14,0.0 +14347,50,16.25,35,0.0 +14347,18,62.5,34,0.0 +14347,60,34,38,0.0 +14347,43,46,30,0.0 +14347,19,9.2,16,0.0 +14348,62,49.3,22,0.0 +14348,58,13.25,32,0.0 +14348,70,15,21,0.0 +14348,66,17,16,0.0 +14348,50,16.25,36,0.0 +14348,32,32,23,0.0 +14348,11,21,21,0.0 +14348,6,25,37,0.0 +14348,31,12.5,12,0.0 +14348,40,18.4,49,0.0 +14348,77,13,35,0.0 +14348,13,6,1,0.0 +14348,9,97,47,0.0 +14348,57,19.5,34,0.0 +14348,43,46,34,0.0 +14348,67,14,30,0.0 +14348,41,9.65,40,0.0 +14348,25,14,43,0.0 +14348,61,28.5,27,0.0 +14348,21,10,42,0.0 +14348,29,123.79,29,0.0 +14348,44,19.45,17,0.0 +14348,16,17.45,3,0.0 +14348,68,12.5,35,0.0 +14348,18,62.5,44,0.0 +14348,55,24,5,0.0 +14348,34,14,46,0.0 +14348,10,31,35,0.0 +14348,65,21.05,31,0.0 +14348,30,25.89,27,0.0 +14348,36,19,21,0.0 +14348,33,2.5,19,0.0 +14348,23,9,48,0.0 +14348,20,81,15,0.0 +14348,42,14,30,0.0 +14348,75,7.75,44,0.0 +14348,49,20,32,0.0 +14348,24,4.5,16,0.0 +14348,74,10,9,0.0 +14348,27,43.9,30,0.0 +14348,38,263.5,5,0.0 +14348,28,45.6,42,0.0 +14348,71,21.5,41,0.0 +14348,73,15,11,0.0 +14348,48,12.75,18,0.0 +14348,19,9.2,27,0.0 +14348,72,34.8,49,0.0 +14348,64,33.25,32,0.0 +14348,47,9.5,47,0.0 +14348,51,53,8,0.0 +14348,59,55,33,0.0 +14348,52,7,44,0.0 +14348,2,19,17,0.0 +14348,8,40,11,0.0 +14348,15,15.5,30,0.0 +14348,37,26,50,0.0 +14348,45,9.5,18,0.0 +14348,1,18,45,0.0 +14348,5,21.35,12,0.0 +14348,22,21,32,0.0 +14348,56,38,16,0.0 +14348,69,36,42,0.0 +14348,60,34,32,0.0 +14349,16,17.45,18,0.0 +14349,1,18,41,0.0 +14349,34,14,31,0.0 +14349,68,12.5,5,0.0 +14349,9,97,34,0.0 +14349,76,18,27,0.0 +14349,60,34,6,0.0 +14349,24,4.5,9,0.0 +14349,62,49.3,34,0.0 +14349,63,43.9,31,0.0 +14349,52,7,49,0.0 +14349,29,123.79,18,0.0 +14349,19,9.2,27,0.0 +14349,57,19.5,13,0.0 +14349,3,10,16,0.0 +14349,39,18,10,0.0 +14349,55,24,41,0.0 +14349,77,13,5,0.0 +14349,37,26,8,0.0 +14349,67,14,43,0.0 +14349,40,18.4,47,0.0 +14349,35,18,47,0.0 +14350,11,21,18,0.0 +14350,55,24,31,0.0 +14350,33,2.5,31,0.0 +14350,72,34.8,12,0.0 +14350,1,18,19,0.0 +14350,34,14,43,0.0 +14350,44,19.45,12,0.0 +14350,75,7.75,43,0.0 +14350,63,43.9,50,0.0 +14350,68,12.5,7,0.0 +14350,41,9.65,9,0.0 +14350,56,38,27,0.0 +14351,19,9.2,31,0.0 +14351,42,14,22,0.0 +14351,21,10,22,0.0 +14351,23,9,45,0.0 +14351,58,13.25,14,0.0 +14351,43,46,17,0.0 +14351,55,24,38,0.0 +14351,76,18,6,0.0 +14351,26,31.23,49,0.0 +14351,11,21,17,0.0 +14351,37,26,5,0.0 +14351,61,28.5,14,0.0 +14351,22,21,49,0.0 +14351,57,19.5,28,0.0 +14351,6,25,2,0.0 +14351,48,12.75,1,0.0 +14351,56,38,49,0.0 +14351,13,6,25,0.0 +14351,75,7.75,18,0.0 +14351,53,32.8,12,0.0 +14351,29,123.79,9,0.0 +14351,51,53,26,0.0 +14351,2,19,38,0.0 +14351,18,62.5,16,0.0 +14351,47,9.5,48,0.0 +14351,71,21.5,22,0.0 +14351,65,21.05,5,0.0 +14351,63,43.9,29,0.0 +14351,3,10,22,0.0 +14351,60,34,10,0.0 +14351,67,14,47,0.0 +14351,77,13,19,0.0 +14351,52,7,28,0.0 +14351,38,263.5,15,0.0 +14351,41,9.65,29,0.0 +14351,72,34.8,14,0.0 +14351,36,19,49,0.0 +14351,17,39,21,0.0 +14351,20,81,43,0.0 +14351,74,10,26,0.0 +14351,40,18.4,28,0.0 +14351,33,2.5,3,0.0 +14351,5,21.35,11,0.0 +14351,68,12.5,3,0.0 +14351,49,20,12,0.0 +14351,25,14,26,0.0 +14351,4,22,42,0.0 +14351,59,55,30,0.0 +14351,9,97,19,0.0 +14352,38,263.5,3,0.0 +14352,77,13,20,0.0 +14352,49,20,18,0.0 +14352,41,9.65,34,0.0 +14352,31,12.5,1,0.0 +14352,1,18,49,0.0 +14352,43,46,45,0.0 +14352,67,14,49,0.0 +14352,73,15,46,0.0 +14352,19,9.2,39,0.0 +14352,50,16.25,14,0.0 +14352,46,12,15,0.0 +14352,8,40,8,0.0 +14352,12,38,34,0.0 +14352,5,21.35,17,0.0 +14352,60,34,47,0.0 +14353,21,10,33,0.0 +14353,33,2.5,15,0.0 +14353,10,31,43,0.0 +14353,3,10,21,0.0 +14353,68,12.5,3,0.0 +14353,2,19,9,0.0 +14353,30,25.89,13,0.0 +14353,38,263.5,2,0.0 +14353,6,25,7,0.0 +14353,71,21.5,47,0.0 +14353,64,33.25,38,0.0 +14353,66,17,11,0.0 +14353,67,14,8,0.0 +14353,60,34,31,0.0 +14353,4,22,1,0.0 +14353,41,9.65,47,0.0 +14353,70,15,13,0.0 +14353,46,12,1,0.0 +14353,74,10,36,0.0 +14353,27,43.9,22,0.0 +14353,11,21,6,0.0 +14353,69,36,16,0.0 +14353,43,46,1,0.0 +14353,63,43.9,32,0.0 +14353,22,21,48,0.0 +14353,16,17.45,37,0.0 +14353,31,12.5,19,0.0 +14353,50,16.25,1,0.0 +14353,54,7.45,42,0.0 +14353,56,38,13,0.0 +14353,23,9,26,0.0 +14353,28,45.6,45,0.0 +14353,35,18,30,0.0 +14353,45,9.5,30,0.0 +14353,52,7,34,0.0 +14353,9,97,13,0.0 +14353,1,18,50,0.0 +14353,15,15.5,26,0.0 +14353,55,24,36,0.0 +14354,24,4.5,32,0.0 +14354,55,24,28,0.0 +14354,21,10,2,0.0 +14354,6,25,18,0.0 +14354,53,32.8,8,0.0 +14354,60,34,5,0.0 +14354,9,97,29,0.0 +14354,67,14,15,0.0 +14354,75,7.75,41,0.0 +14354,20,81,43,0.0 +14354,16,17.45,45,0.0 +14354,31,12.5,22,0.0 +14354,51,53,19,0.0 +14354,14,23.25,21,0.0 +14354,72,34.8,35,0.0 +14355,3,10,10,0.0 +14355,70,15,14,0.0 +14355,32,32,43,0.0 +14355,49,20,5,0.0 +14355,13,6,24,0.0 +14355,1,18,11,0.0 +14355,57,19.5,48,0.0 +14355,18,62.5,26,0.0 +14355,17,39,32,0.0 +14355,67,14,20,0.0 +14355,11,21,29,0.0 +14355,37,26,10,0.0 +14355,21,10,23,0.0 +14355,38,263.5,22,0.0 +14355,66,17,13,0.0 +14355,45,9.5,19,0.0 +14355,53,32.8,44,0.0 +14355,74,10,39,0.0 +14355,33,2.5,29,0.0 +14355,31,12.5,22,0.0 +14355,55,24,14,0.0 +14355,47,9.5,39,0.0 +14355,27,43.9,31,0.0 +14355,64,33.25,18,0.0 +14355,50,16.25,48,0.0 +14355,43,46,47,0.0 +14355,29,123.79,2,0.0 +14355,35,18,5,0.0 +14355,22,21,19,0.0 +14355,28,45.6,9,0.0 +14355,41,9.65,3,0.0 +14355,65,21.05,35,0.0 +14355,62,49.3,38,0.0 +14355,76,18,28,0.0 +14355,5,21.35,45,0.0 +14356,67,14,38,0.0 +14356,77,13,34,0.0 +14356,26,31.23,50,0.0 +14356,38,263.5,12,0.0 +14356,68,12.5,21,0.0 +14356,57,19.5,3,0.0 +14356,25,14,24,0.0 +14356,35,18,7,0.0 +14356,49,20,12,0.0 +14356,22,21,32,0.0 +14356,5,21.35,5,0.0 +14356,74,10,45,0.0 +14356,19,9.2,49,0.0 +14356,60,34,40,0.0 +14356,36,19,35,0.0 +14356,59,55,21,0.0 +14356,69,36,30,0.0 +14356,70,15,48,0.0 +14356,52,7,7,0.0 +14356,32,32,27,0.0 +14356,17,39,35,0.0 +14356,11,21,45,0.0 +14356,24,4.5,16,0.0 +14356,43,46,7,0.0 +14356,40,18.4,16,0.0 +14356,2,19,42,0.0 +14357,47,9.5,41,0.0 +14357,16,17.45,11,0.0 +14357,36,19,36,0.0 +14358,22,21,20,0.0 +14358,3,10,21,0.0 +14358,25,14,34,0.0 +14358,55,24,2,0.0 +14358,66,17,10,0.0 +14358,20,81,11,0.0 +14358,38,263.5,12,0.0 +14358,36,19,34,0.0 +14358,59,55,30,0.0 +14358,67,14,48,0.0 +14359,46,12,11,0.0 +14359,14,23.25,50,0.0 +14359,15,15.5,42,0.0 +14359,52,7,36,0.0 +14359,49,20,50,0.0 +14359,62,49.3,1,0.0 +14359,59,55,6,0.0 +14359,43,46,19,0.0 +14359,74,10,47,0.0 +14359,56,38,8,0.0 +14359,34,14,19,0.0 +14359,77,13,48,0.0 +14359,25,14,48,0.0 +14359,54,7.45,23,0.0 +14359,11,21,14,0.0 +14359,8,40,28,0.0 +14359,67,14,10,0.0 +14359,1,18,28,0.0 +14359,72,34.8,17,0.0 +14359,57,19.5,45,0.0 +14359,61,28.5,7,0.0 +14359,48,12.75,33,0.0 +14359,20,81,9,0.0 +14359,71,21.5,45,0.0 +14359,26,31.23,47,0.0 +14359,2,19,46,0.0 +14359,66,17,48,0.0 +14359,65,21.05,37,0.0 +14359,27,43.9,35,0.0 +14359,53,32.8,47,0.0 +14360,1,18,42,0.0 +14360,25,14,18,0.0 +14360,36,19,3,0.0 +14360,50,16.25,23,0.0 +14360,65,21.05,38,0.0 +14360,64,33.25,28,0.0 +14360,77,13,15,0.0 +14360,10,31,20,0.0 +14360,35,18,25,0.0 +14360,48,12.75,47,0.0 +14360,4,22,6,0.0 +14360,66,17,6,0.0 +14360,12,38,29,0.0 +14360,52,7,29,0.0 +14360,53,32.8,41,0.0 +14360,43,46,17,0.0 +14360,16,17.45,41,0.0 +14360,60,34,21,0.0 +14360,34,14,28,0.0 +14360,2,19,14,0.0 +14360,68,12.5,12,0.0 +14360,45,9.5,24,0.0 +14360,47,9.5,46,0.0 +14360,69,36,4,0.0 +14360,46,12,24,0.0 +14360,44,19.45,28,0.0 +14360,23,9,6,0.0 +14360,22,21,6,0.0 +14360,49,20,18,0.0 +14360,9,97,30,0.0 +14360,61,28.5,13,0.0 +14360,19,9.2,41,0.0 +14360,70,15,30,0.0 +14360,62,49.3,45,0.0 +14360,56,38,5,0.0 +14360,18,62.5,9,0.0 +14360,76,18,47,0.0 +14360,74,10,18,0.0 +14360,57,19.5,20,0.0 +14360,7,30,20,0.0 +14360,27,43.9,37,0.0 +14360,20,81,44,0.0 +14360,55,24,26,0.0 +14360,42,14,15,0.0 +14360,41,9.65,29,0.0 +14360,14,23.25,28,0.0 +14360,29,123.79,45,0.0 +14360,17,39,26,0.0 +14360,73,15,49,0.0 +14360,51,53,35,0.0 +14360,28,45.6,49,0.0 +14360,71,21.5,48,0.0 +14360,58,13.25,29,0.0 +14360,63,43.9,38,0.0 +14360,13,6,21,0.0 +14360,33,2.5,47,0.0 +14360,26,31.23,6,0.0 +14360,32,32,30,0.0 +14360,39,18,41,0.0 +14360,30,25.89,38,0.0 +14360,31,12.5,27,0.0 +14360,6,25,40,0.0 +14360,67,14,23,0.0 +14360,72,34.8,4,0.0 +14360,37,26,39,0.0 +14360,21,10,10,0.0 +14360,59,55,9,0.0 +14360,38,263.5,3,0.0 +14360,54,7.45,19,0.0 +14360,24,4.5,4,0.0 +14360,40,18.4,36,0.0 +14360,15,15.5,2,0.0 +14360,5,21.35,46,0.0 +14360,8,40,31,0.0 +14360,3,10,3,0.0 +14361,44,19.45,35,0.0 +14361,28,45.6,16,0.0 +14361,23,9,49,0.0 +14361,15,15.5,33,0.0 +14361,61,28.5,42,0.0 +14361,74,10,45,0.0 +14361,1,18,24,0.0 +14361,5,21.35,16,0.0 +14361,21,10,13,0.0 +14361,9,97,30,0.0 +14361,31,12.5,39,0.0 +14361,45,9.5,47,0.0 +14361,6,25,2,0.0 +14361,70,15,9,0.0 +14361,7,30,27,0.0 +14361,32,32,36,0.0 +14361,37,26,26,0.0 +14361,34,14,37,0.0 +14361,73,15,2,0.0 +14361,68,12.5,48,0.0 +14361,29,123.79,10,0.0 +14361,25,14,28,0.0 +14361,12,38,38,0.0 +14361,47,9.5,41,0.0 +14361,58,13.25,3,0.0 +14361,8,40,49,0.0 +14361,27,43.9,15,0.0 +14361,20,81,24,0.0 +14361,18,62.5,9,0.0 +14361,49,20,24,0.0 +14361,67,14,1,0.0 +14361,62,49.3,23,0.0 +14361,17,39,18,0.0 +14361,22,21,48,0.0 +14361,53,32.8,36,0.0 +14361,60,34,20,0.0 +14361,35,18,37,0.0 +14361,33,2.5,3,0.0 +14361,30,25.89,5,0.0 +14361,46,12,44,0.0 +14361,75,7.75,47,0.0 +14361,36,19,14,0.0 +14361,26,31.23,7,0.0 +14361,69,36,50,0.0 +14361,41,9.65,16,0.0 +14361,3,10,46,0.0 +14361,39,18,28,0.0 +14361,56,38,13,0.0 +14361,10,31,13,0.0 +14361,4,22,26,0.0 +14361,71,21.5,44,0.0 +14362,8,40,4,0.0 +14362,74,10,4,0.0 +14362,73,15,46,0.0 +14362,36,19,10,0.0 +14362,33,2.5,42,0.0 +14362,22,21,14,0.0 +14362,26,31.23,4,0.0 +14362,64,33.25,48,0.0 +14362,43,46,38,0.0 +14362,19,9.2,23,0.0 +14362,39,18,39,0.0 +14362,63,43.9,35,0.0 +14362,25,14,25,0.0 +14362,75,7.75,3,0.0 +14362,42,14,37,0.0 +14362,51,53,1,0.0 +14362,32,32,14,0.0 +14363,40,18.4,14,0.0 +14363,5,21.35,13,0.0 +14363,33,2.5,24,0.0 +14363,58,13.25,12,0.0 +14363,69,36,17,0.0 +14363,43,46,21,0.0 +14363,22,21,5,0.0 +14363,3,10,20,0.0 +14363,76,18,14,0.0 +14363,54,7.45,35,0.0 +14363,23,9,34,0.0 +14363,74,10,19,0.0 +14363,42,14,36,0.0 +14363,52,7,49,0.0 +14363,60,34,47,0.0 +14363,24,4.5,42,0.0 +14363,26,31.23,21,0.0 +14363,18,62.5,49,0.0 +14363,39,18,43,0.0 +14363,50,16.25,24,0.0 +14363,73,15,39,0.0 +14363,15,15.5,16,0.0 +14363,47,9.5,38,0.0 +14363,32,32,36,0.0 +14363,8,40,41,0.0 +14363,48,12.75,1,0.0 +14363,72,34.8,16,0.0 +14363,25,14,46,0.0 +14363,36,19,20,0.0 +14363,10,31,47,0.0 +14363,6,25,21,0.0 +14363,59,55,32,0.0 +14363,4,22,17,0.0 +14363,12,38,22,0.0 +14363,1,18,30,0.0 +14363,13,6,42,0.0 +14363,9,97,37,0.0 +14363,67,14,22,0.0 +14363,16,17.45,11,0.0 +14363,35,18,33,0.0 +14363,66,17,6,0.0 +14363,28,45.6,23,0.0 +14363,21,10,32,0.0 +14363,51,53,18,0.0 +14363,19,9.2,43,0.0 +14363,53,32.8,14,0.0 +14363,14,23.25,28,0.0 +14363,30,25.89,25,0.0 +14363,70,15,31,0.0 +14363,17,39,42,0.0 +14363,29,123.79,44,0.0 +14363,34,14,38,0.0 +14363,45,9.5,17,0.0 +14363,65,21.05,7,0.0 +14363,56,38,26,0.0 +14363,55,24,49,0.0 +14363,63,43.9,42,0.0 +14363,75,7.75,49,0.0 +14363,64,33.25,33,0.0 +14363,61,28.5,43,0.0 +14363,11,21,37,0.0 +14363,20,81,5,0.0 +14363,37,26,24,0.0 +14363,68,12.5,7,0.0 +14363,62,49.3,7,0.0 +14363,77,13,28,0.0 +14363,71,21.5,46,0.0 +14363,7,30,13,0.0 +14364,28,45.6,16,0.0 +14364,40,18.4,1,0.0 +14364,64,33.25,19,0.0 +14364,50,16.25,24,0.0 +14364,37,26,8,0.0 +14364,75,7.75,12,0.0 +14364,16,17.45,7,0.0 +14364,66,17,38,0.0 +14364,6,25,40,0.0 +14364,18,62.5,21,0.0 +14364,67,14,41,0.0 +14364,74,10,33,0.0 +14364,47,9.5,18,0.0 +14364,10,31,47,0.0 +14364,53,32.8,28,0.0 +14364,29,123.79,22,0.0 +14364,9,97,17,0.0 +14364,46,12,7,0.0 +14364,24,4.5,37,0.0 +14364,57,19.5,20,0.0 +14364,52,7,7,0.0 +14364,31,12.5,50,0.0 +14364,17,39,45,0.0 +14364,36,19,20,0.0 +14364,76,18,9,0.0 +14364,61,28.5,3,0.0 +14364,2,19,24,0.0 +14364,54,7.45,49,0.0 +14364,65,21.05,10,0.0 +14364,77,13,16,0.0 +14364,4,22,42,0.0 +14364,32,32,7,0.0 +14364,12,38,37,0.0 +14365,59,55,47,0.0 +14365,19,9.2,27,0.0 +14365,73,15,3,0.0 +14365,77,13,19,0.0 +14365,26,31.23,41,0.0 +14365,41,9.65,49,0.0 +14365,25,14,17,0.0 +14365,56,38,49,0.0 +14365,7,30,26,0.0 +14365,24,4.5,12,0.0 +14365,72,34.8,33,0.0 +14365,14,23.25,45,0.0 +14365,33,2.5,26,0.0 +14365,42,14,44,0.0 +14365,6,25,49,0.0 +14365,37,26,13,0.0 +14365,65,21.05,12,0.0 +14365,44,19.45,22,0.0 +14365,10,31,39,0.0 +14365,29,123.79,12,0.0 +14365,45,9.5,2,0.0 +14365,43,46,42,0.0 +14365,58,13.25,32,0.0 +14365,31,12.5,12,0.0 +14365,23,9,42,0.0 +14365,70,15,2,0.0 +14365,2,19,23,0.0 +14365,15,15.5,19,0.0 +14365,66,17,46,0.0 +14365,8,40,35,0.0 +14365,47,9.5,41,0.0 +14365,34,14,50,0.0 +14365,20,81,48,0.0 +14365,11,21,26,0.0 +14365,22,21,38,0.0 +14365,36,19,28,0.0 +14365,54,7.45,49,0.0 +14365,1,18,38,0.0 +14366,73,15,29,0.0 +14366,57,19.5,21,0.0 +14366,48,12.75,19,0.0 +14366,8,40,37,0.0 +14366,22,21,47,0.0 +14366,1,18,45,0.0 +14366,27,43.9,47,0.0 +14366,50,16.25,18,0.0 +14366,26,31.23,23,0.0 +14366,33,2.5,28,0.0 +14366,12,38,2,0.0 +14366,31,12.5,24,0.0 +14366,18,62.5,42,0.0 +14366,74,10,21,0.0 +14366,14,23.25,20,0.0 +14366,38,263.5,15,0.0 +14366,61,28.5,18,0.0 +14366,70,15,15,0.0 +14366,44,19.45,33,0.0 +14366,71,21.5,35,0.0 +14366,19,9.2,49,0.0 +14366,47,9.5,26,0.0 +14366,28,45.6,47,0.0 +14366,30,25.89,27,0.0 +14366,11,21,18,0.0 +14366,64,33.25,39,0.0 +14366,39,18,6,0.0 +14366,35,18,18,0.0 +14366,69,36,46,0.0 +14366,41,9.65,14,0.0 +14366,21,10,26,0.0 +14366,40,18.4,26,0.0 +14366,25,14,6,0.0 +14366,45,9.5,21,0.0 +14366,54,7.45,30,0.0 +14366,72,34.8,49,0.0 +14366,68,12.5,20,0.0 +14366,77,13,30,0.0 +14366,65,21.05,22,0.0 +14366,17,39,8,0.0 +14366,24,4.5,31,0.0 +14366,3,10,32,0.0 +14366,15,15.5,48,0.0 +14366,63,43.9,37,0.0 +14366,53,32.8,3,0.0 +14366,43,46,25,0.0 +14366,20,81,44,0.0 +14366,16,17.45,10,0.0 +14366,52,7,16,0.0 +14366,46,12,2,0.0 +14366,29,123.79,2,0.0 +14366,32,32,47,0.0 +14366,55,24,30,0.0 +14366,49,20,14,0.0 +14366,34,14,50,0.0 +14366,4,22,36,0.0 +14367,28,45.6,45,0.0 +14367,9,97,6,0.0 +14367,61,28.5,37,0.0 +14367,52,7,10,0.0 +14367,53,32.8,9,0.0 +14367,32,32,21,0.0 +14367,62,49.3,13,0.0 +14367,25,14,39,0.0 +14367,59,55,13,0.0 +14367,37,26,20,0.0 +14367,74,10,34,0.0 +14367,6,25,31,0.0 +14367,71,21.5,20,0.0 +14367,24,4.5,26,0.0 +14367,73,15,49,0.0 +14367,72,34.8,16,0.0 +14367,8,40,8,0.0 +14367,14,23.25,26,0.0 +14367,22,21,36,0.0 +14367,19,9.2,18,0.0 +14367,12,38,43,0.0 +14367,18,62.5,1,0.0 +14367,20,81,4,0.0 +14367,5,21.35,35,0.0 +14367,55,24,48,0.0 +14367,36,19,1,0.0 +14367,49,20,41,0.0 +14367,63,43.9,48,0.0 +14367,27,43.9,43,0.0 +14367,11,21,43,0.0 +14367,75,7.75,47,0.0 +14367,4,22,26,0.0 +14367,69,36,18,0.0 +14367,46,12,14,0.0 +14367,16,17.45,31,0.0 +14367,10,31,28,0.0 +14367,17,39,43,0.0 +14367,38,263.5,39,0.0 +14367,41,9.65,48,0.0 +14367,60,34,50,0.0 +14367,2,19,42,0.0 +14367,57,19.5,5,0.0 +14367,54,7.45,7,0.0 +14367,30,25.89,14,0.0 +14367,1,18,30,0.0 +14368,71,21.5,36,0.0 +14368,30,25.89,19,0.0 +14368,3,10,44,0.0 +14368,11,21,36,0.0 +14368,74,10,18,0.0 +14368,45,9.5,28,0.0 +14368,69,36,14,0.0 +14368,39,18,48,0.0 +14368,64,33.25,18,0.0 +14368,1,18,14,0.0 +14368,23,9,6,0.0 +14368,75,7.75,8,0.0 +14368,37,26,28,0.0 +14368,59,55,17,0.0 +14368,62,49.3,28,0.0 +14368,14,23.25,12,0.0 +14368,27,43.9,9,0.0 +14368,76,18,49,0.0 +14368,49,20,29,0.0 +14368,70,15,1,0.0 +14368,56,38,31,0.0 +14368,31,12.5,31,0.0 +14368,2,19,9,0.0 +14368,72,34.8,7,0.0 +14368,38,263.5,34,0.0 +14368,13,6,13,0.0 +14368,25,14,40,0.0 +14368,8,40,6,0.0 +14368,58,13.25,31,0.0 +14368,40,18.4,31,0.0 +14368,54,7.45,8,0.0 +14368,77,13,15,0.0 +14368,21,10,2,0.0 +14368,48,12.75,41,0.0 +14368,22,21,31,0.0 +14368,66,17,36,0.0 +14368,43,46,47,0.0 +14368,57,19.5,48,0.0 +14368,41,9.65,19,0.0 +14368,73,15,41,0.0 +14368,4,22,14,0.0 +14368,61,28.5,33,0.0 +14369,43,46,8,0.0 +14369,64,33.25,46,0.0 +14369,39,18,47,0.0 +14369,32,32,50,0.0 +14369,3,10,37,0.0 +14369,28,45.6,39,0.0 +14369,5,21.35,36,0.0 +14369,7,30,41,0.0 +14369,33,2.5,37,0.0 +14369,20,81,4,0.0 +14369,4,22,12,0.0 +14369,10,31,34,0.0 +14369,12,38,37,0.0 +14369,34,14,39,0.0 +14369,2,19,6,0.0 +14369,15,15.5,8,0.0 +14369,17,39,32,0.0 +14369,27,43.9,17,0.0 +14369,67,14,6,0.0 +14369,66,17,2,0.0 +14369,70,15,43,0.0 +14369,53,32.8,27,0.0 +14369,63,43.9,31,0.0 +14369,14,23.25,9,0.0 +14369,6,25,17,0.0 +14369,46,12,40,0.0 +14369,59,55,4,0.0 +14369,31,12.5,42,0.0 +14369,76,18,44,0.0 +14369,50,16.25,29,0.0 +14369,49,20,1,0.0 +14369,71,21.5,15,0.0 +14369,47,9.5,4,0.0 +14369,25,14,31,0.0 +14369,73,15,32,0.0 +14369,29,123.79,10,0.0 +14369,41,9.65,1,0.0 +14369,26,31.23,3,0.0 +14369,19,9.2,18,0.0 +14369,54,7.45,46,0.0 +14369,65,21.05,13,0.0 +14369,42,14,24,0.0 +14369,22,21,21,0.0 +14369,51,53,34,0.0 +14369,58,13.25,11,0.0 +14369,1,18,44,0.0 +14370,23,9,16,0.0 +14370,50,16.25,4,0.0 +14370,51,53,27,0.0 +14370,17,39,33,0.0 +14370,62,49.3,38,0.0 +14370,22,21,18,0.0 +14370,10,31,38,0.0 +14370,32,32,47,0.0 +14370,60,34,35,0.0 +14370,34,14,44,0.0 +14370,13,6,30,0.0 +14370,14,23.25,23,0.0 +14370,76,18,45,0.0 +14370,16,17.45,50,0.0 +14370,3,10,43,0.0 +14370,43,46,47,0.0 +14370,52,7,34,0.0 +14370,26,31.23,4,0.0 +14370,1,18,29,0.0 +14370,65,21.05,32,0.0 +14370,31,12.5,47,0.0 +14370,30,25.89,29,0.0 +14370,28,45.6,46,0.0 +14370,63,43.9,26,0.0 +14370,71,21.5,19,0.0 +14370,24,4.5,11,0.0 +14370,69,36,32,0.0 +14370,18,62.5,31,0.0 +14370,67,14,5,0.0 +14370,72,34.8,21,0.0 +14370,4,22,21,0.0 +14370,53,32.8,9,0.0 +14370,70,15,27,0.0 +14370,8,40,19,0.0 +14370,66,17,5,0.0 +14370,35,18,46,0.0 +14370,25,14,37,0.0 +14371,28,45.6,29,0.0 +14371,32,32,9,0.0 +14371,34,14,29,0.0 +14371,18,62.5,23,0.0 +14371,35,18,33,0.0 +14371,37,26,37,0.0 +14371,52,7,1,0.0 +14371,58,13.25,6,0.0 +14371,27,43.9,40,0.0 +14371,2,19,15,0.0 +14371,53,32.8,29,0.0 +14371,6,25,14,0.0 +14371,44,19.45,38,0.0 +14371,43,46,43,0.0 +14371,17,39,37,0.0 +14371,74,10,30,0.0 +14371,56,38,50,0.0 +14371,1,18,34,0.0 +14371,76,18,9,0.0 +14371,4,22,2,0.0 +14371,63,43.9,22,0.0 +14371,15,15.5,45,0.0 +14371,20,81,43,0.0 +14371,62,49.3,24,0.0 +14371,77,13,23,0.0 +14371,73,15,49,0.0 +14371,75,7.75,24,0.0 +14371,23,9,11,0.0 +14371,72,34.8,40,0.0 +14371,26,31.23,16,0.0 +14371,45,9.5,18,0.0 +14371,65,21.05,39,0.0 +14371,64,33.25,10,0.0 +14371,7,30,12,0.0 +14371,55,24,42,0.0 +14371,8,40,20,0.0 +14371,30,25.89,24,0.0 +14371,40,18.4,15,0.0 +14371,33,2.5,26,0.0 +14371,70,15,21,0.0 +14371,60,34,32,0.0 +14371,39,18,30,0.0 +14371,68,12.5,14,0.0 +14371,59,55,29,0.0 +14372,49,20,12,0.0 +14372,71,21.5,49,0.0 +14372,69,36,24,0.0 +14372,61,28.5,23,0.0 +14372,17,39,35,0.0 +14372,26,31.23,21,0.0 +14372,39,18,1,0.0 +14372,42,14,30,0.0 +14372,6,25,2,0.0 +14372,25,14,23,0.0 +14372,43,46,10,0.0 +14372,70,15,12,0.0 +14372,60,34,36,0.0 +14372,5,21.35,17,0.0 +14372,40,18.4,46,0.0 +14372,33,2.5,10,0.0 +14372,29,123.79,19,0.0 +14372,18,62.5,12,0.0 +14372,44,19.45,7,0.0 +14372,31,12.5,25,0.0 +14372,67,14,27,0.0 +14372,77,13,37,0.0 +14372,2,19,49,0.0 +14372,16,17.45,33,0.0 +14372,19,9.2,21,0.0 +14372,73,15,9,0.0 +14372,75,7.75,47,0.0 +14372,54,7.45,42,0.0 +14372,50,16.25,35,0.0 +14372,15,15.5,21,0.0 +14372,27,43.9,2,0.0 +14372,32,32,21,0.0 +14372,52,7,2,0.0 +14372,30,25.89,50,0.0 +14372,1,18,5,0.0 +14372,21,10,40,0.0 +14372,56,38,35,0.0 +14372,59,55,30,0.0 +14372,24,4.5,9,0.0 +14372,53,32.8,35,0.0 +14372,48,12.75,14,0.0 +14372,74,10,18,0.0 +14372,10,31,3,0.0 +14373,62,49.3,49,0.0 +14373,15,15.5,10,0.0 +14373,59,55,27,0.0 +14373,45,9.5,38,0.0 +14373,36,19,36,0.0 +14373,24,4.5,27,0.0 +14373,55,24,3,0.0 +14373,44,19.45,21,0.0 +14373,12,38,17,0.0 +14373,71,21.5,3,0.0 +14373,16,17.45,21,0.0 +14373,74,10,10,0.0 +14373,5,21.35,16,0.0 +14373,72,34.8,23,0.0 +14373,54,7.45,30,0.0 +14373,37,26,21,0.0 +14373,46,12,25,0.0 +14373,47,9.5,50,0.0 +14373,53,32.8,49,0.0 +14373,63,43.9,48,0.0 +14373,17,39,37,0.0 +14373,77,13,7,0.0 +14373,10,31,28,0.0 +14373,32,32,14,0.0 +14374,14,23.25,42,0.0 +14374,76,18,13,0.0 +14374,75,7.75,39,0.0 +14374,73,15,30,0.0 +14374,10,31,22,0.0 +14374,69,36,9,0.0 +14374,33,2.5,26,0.0 +14374,22,21,41,0.0 +14374,46,12,2,0.0 +14374,56,38,23,0.0 +14374,19,9.2,38,0.0 +14374,15,15.5,23,0.0 +14374,71,21.5,6,0.0 +14374,74,10,7,0.0 +14374,37,26,32,0.0 +14374,58,13.25,40,0.0 +14374,57,19.5,2,0.0 +14374,34,14,48,0.0 +14374,24,4.5,24,0.0 +14374,41,9.65,48,0.0 +14374,53,32.8,14,0.0 +14374,45,9.5,36,0.0 +14374,54,7.45,3,0.0 +14374,31,12.5,32,0.0 +14374,72,34.8,19,0.0 +14374,47,9.5,1,0.0 +14374,67,14,37,0.0 +14374,23,9,31,0.0 +14374,36,19,13,0.0 +14374,3,10,8,0.0 +14374,26,31.23,36,0.0 +14374,1,18,18,0.0 +14374,42,14,8,0.0 +14374,4,22,45,0.0 +14374,27,43.9,6,0.0 +14374,44,19.45,33,0.0 +14374,62,49.3,29,0.0 +14374,5,21.35,11,0.0 +14374,9,97,30,0.0 +14374,29,123.79,16,0.0 +14374,38,263.5,6,0.0 +14374,61,28.5,27,0.0 +14374,40,18.4,49,0.0 +14374,35,18,19,0.0 +14374,59,55,17,0.0 +14374,28,45.6,45,0.0 +14374,52,7,17,0.0 +14374,2,19,29,0.0 +14374,49,20,42,0.0 +14374,7,30,7,0.0 +14374,39,18,38,0.0 +14375,3,10,42,0.0 +14375,48,12.75,35,0.0 +14375,27,43.9,33,0.0 +14375,77,13,9,0.0 +14375,12,38,25,0.0 +14375,63,43.9,28,0.0 +14375,46,12,41,0.0 +14375,23,9,10,0.0 +14375,41,9.65,15,0.0 +14375,31,12.5,23,0.0 +14375,7,30,12,0.0 +14375,22,21,19,0.0 +14375,8,40,38,0.0 +14375,57,19.5,33,0.0 +14375,66,17,16,0.0 +14375,5,21.35,1,0.0 +14375,24,4.5,5,0.0 +14375,34,14,31,0.0 +14375,61,28.5,12,0.0 +14375,35,18,34,0.0 +14375,14,23.25,14,0.0 +14375,1,18,36,0.0 +14375,13,6,41,0.0 +14375,33,2.5,10,0.0 +14375,32,32,18,0.0 +14375,68,12.5,13,0.0 +14375,47,9.5,16,0.0 +14375,75,7.75,48,0.0 +14375,54,7.45,16,0.0 +14375,55,24,5,0.0 +14375,42,14,2,0.0 +14375,26,31.23,10,0.0 +14375,6,25,5,0.0 +14375,49,20,32,0.0 +14375,58,13.25,26,0.0 +14375,19,9.2,14,0.0 +14375,50,16.25,15,0.0 +14375,69,36,12,0.0 +14375,71,21.5,50,0.0 +14375,59,55,15,0.0 +14375,30,25.89,36,0.0 +14375,28,45.6,7,0.0 +14375,73,15,26,0.0 +14375,39,18,21,0.0 +14375,36,19,28,0.0 +14375,56,38,2,0.0 +14375,21,10,32,0.0 +14375,45,9.5,47,0.0 +14375,17,39,27,0.0 +14375,10,31,36,0.0 +14375,74,10,28,0.0 +14375,29,123.79,28,0.0 +14375,40,18.4,9,0.0 +14375,51,53,30,0.0 +14375,76,18,24,0.0 +14375,64,33.25,16,0.0 +14375,37,26,15,0.0 +14376,27,43.9,2,0.0 +14376,35,18,37,0.0 +14376,65,21.05,22,0.0 +14376,24,4.5,23,0.0 +14376,7,30,13,0.0 +14376,17,39,12,0.0 +14376,4,22,4,0.0 +14376,53,32.8,42,0.0 +14376,14,23.25,14,0.0 +14376,49,20,11,0.0 +14376,72,34.8,6,0.0 +14376,47,9.5,18,0.0 +14376,28,45.6,21,0.0 +14376,60,34,45,0.0 +14376,25,14,28,0.0 +14376,39,18,45,0.0 +14376,44,19.45,8,0.0 +14376,71,21.5,6,0.0 +14376,30,25.89,30,0.0 +14376,54,7.45,15,0.0 +14376,6,25,6,0.0 +14376,8,40,5,0.0 +14376,34,14,49,0.0 +14376,9,97,1,0.0 +14376,33,2.5,48,0.0 +14376,19,9.2,2,0.0 +14376,41,9.65,11,0.0 +14376,40,18.4,10,0.0 +14376,37,26,6,0.0 +14376,66,17,33,0.0 +14376,21,10,27,0.0 +14376,59,55,31,0.0 +14376,38,263.5,1,0.0 +14376,22,21,33,0.0 +14376,77,13,25,0.0 +14376,31,12.5,50,0.0 +14376,76,18,25,0.0 +14376,61,28.5,28,0.0 +14376,29,123.79,47,0.0 +14376,36,19,3,0.0 +14376,64,33.25,19,0.0 +14376,11,21,15,0.0 +14376,51,53,24,0.0 +14377,14,23.25,3,0.0 +14377,29,123.79,19,0.0 +14377,69,36,30,0.0 +14377,68,12.5,19,0.0 +14377,16,17.45,23,0.0 +14377,73,15,41,0.0 +14377,32,32,13,0.0 +14377,76,18,37,0.0 +14378,10,31,28,0.0 +14378,40,18.4,18,0.0 +14379,48,12.75,3,0.0 +14379,61,28.5,26,0.0 +14379,68,12.5,43,0.0 +14379,21,10,19,0.0 +14379,26,31.23,20,0.0 +14379,14,23.25,17,0.0 +14379,4,22,26,0.0 +14379,47,9.5,5,0.0 +14379,25,14,34,0.0 +14379,76,18,37,0.0 +14379,31,12.5,4,0.0 +14379,46,12,41,0.0 +14379,70,15,10,0.0 +14379,23,9,47,0.0 +14379,75,7.75,29,0.0 +14379,37,26,23,0.0 +14379,42,14,22,0.0 +14379,57,19.5,31,0.0 +14379,41,9.65,39,0.0 +14379,30,25.89,49,0.0 +14379,27,43.9,17,0.0 +14379,8,40,24,0.0 +14379,3,10,6,0.0 +14379,1,18,18,0.0 +14379,39,18,42,0.0 +14379,71,21.5,44,0.0 +14379,32,32,37,0.0 +14379,77,13,11,0.0 +14379,10,31,32,0.0 +14379,45,9.5,31,0.0 +14379,12,38,26,0.0 +14380,55,24,14,0.0 +14380,12,38,33,0.0 +14380,25,14,1,0.0 +14380,31,12.5,35,0.0 +14380,59,55,16,0.0 +14380,22,21,20,0.0 +14380,29,123.79,37,0.0 +14381,19,9.2,28,0.0 +14381,37,26,13,0.0 +14381,8,40,25,0.0 +14381,53,32.8,19,0.0 +14381,54,7.45,4,0.0 +14381,52,7,24,0.0 +14381,55,24,45,0.0 +14381,46,12,8,0.0 +14381,67,14,20,0.0 +14381,68,12.5,10,0.0 +14381,22,21,28,0.0 +14381,40,18.4,39,0.0 +14381,56,38,28,0.0 +14381,66,17,21,0.0 +14381,21,10,30,0.0 +14381,63,43.9,17,0.0 +14381,65,21.05,33,0.0 +14381,12,38,13,0.0 +14381,29,123.79,10,0.0 +14381,32,32,13,0.0 +14381,35,18,4,0.0 +14381,75,7.75,49,0.0 +14381,1,18,16,0.0 +14381,24,4.5,2,0.0 +14381,77,13,40,0.0 +14381,45,9.5,19,0.0 +14381,76,18,15,0.0 +14381,16,17.45,40,0.0 +14381,73,15,36,0.0 +14381,14,23.25,28,0.0 +14381,20,81,8,0.0 +14381,10,31,23,0.0 +14381,3,10,24,0.0 +14381,51,53,45,0.0 +14381,59,55,31,0.0 +14381,48,12.75,31,0.0 +14381,74,10,45,0.0 +14381,2,19,45,0.0 +14381,43,46,33,0.0 +14381,58,13.25,15,0.0 +14381,18,62.5,48,0.0 +14381,38,263.5,35,0.0 +14381,6,25,39,0.0 +14381,31,12.5,38,0.0 +14381,11,21,48,0.0 +14381,61,28.5,23,0.0 +14381,69,36,15,0.0 +14381,15,15.5,35,0.0 +14381,30,25.89,40,0.0 +14381,25,14,26,0.0 +14381,17,39,32,0.0 +14381,41,9.65,36,0.0 +14381,7,30,47,0.0 +14381,42,14,39,0.0 +14381,57,19.5,41,0.0 +14382,58,13.25,9,0.0 +14382,34,14,4,0.0 +14382,48,12.75,26,0.0 +14382,2,19,12,0.0 +14382,11,21,18,0.0 +14382,39,18,49,0.0 +14382,60,34,12,0.0 +14382,70,15,33,0.0 +14382,37,26,11,0.0 +14382,7,30,46,0.0 +14383,68,12.5,24,0.0 +14383,43,46,48,0.0 +14383,52,7,8,0.0 +14383,66,17,49,0.0 +14383,57,19.5,26,0.0 +14383,11,21,21,0.0 +14383,7,30,35,0.0 +14383,4,22,40,0.0 +14383,63,43.9,42,0.0 +14383,3,10,26,0.0 +14383,23,9,22,0.0 +14383,48,12.75,41,0.0 +14383,16,17.45,33,0.0 +14383,14,23.25,41,0.0 +14383,20,81,16,0.0 +14383,6,25,46,0.0 +14383,62,49.3,21,0.0 +14383,2,19,22,0.0 +14383,73,15,35,0.0 +14383,44,19.45,30,0.0 +14383,30,25.89,46,0.0 +14383,24,4.5,45,0.0 +14383,54,7.45,14,0.0 +14383,28,45.6,12,0.0 +14383,18,62.5,3,0.0 +14383,71,21.5,5,0.0 +14383,41,9.65,22,0.0 +14383,37,26,45,0.0 +14383,38,263.5,32,0.0 +14383,51,53,41,0.0 +14383,25,14,24,0.0 +14383,46,12,27,0.0 +14383,22,21,1,0.0 +14383,72,34.8,20,0.0 +14383,77,13,18,0.0 +14383,35,18,9,0.0 +14383,60,34,2,0.0 +14383,45,9.5,1,0.0 +14383,15,15.5,13,0.0 +14383,55,24,13,0.0 +14383,59,55,1,0.0 +14383,61,28.5,1,0.0 +14383,12,38,22,0.0 +14383,26,31.23,19,0.0 +14383,36,19,28,0.0 +14383,49,20,29,0.0 +14383,10,31,4,0.0 +14383,47,9.5,44,0.0 +14383,40,18.4,13,0.0 +14383,42,14,38,0.0 +14383,27,43.9,36,0.0 +14383,33,2.5,4,0.0 +14383,58,13.25,18,0.0 +14383,9,97,47,0.0 +14383,39,18,28,0.0 +14383,5,21.35,17,0.0 +14383,69,36,7,0.0 +14383,34,14,48,0.0 +14383,31,12.5,21,0.0 +14383,8,40,13,0.0 +14383,64,33.25,29,0.0 +14383,65,21.05,42,0.0 +14383,74,10,44,0.0 +14383,75,7.75,7,0.0 +14383,17,39,7,0.0 +14383,76,18,13,0.0 +14383,1,18,2,0.0 +14383,70,15,25,0.0 +14383,67,14,9,0.0 +14383,19,9.2,19,0.0 +14383,13,6,1,0.0 +14383,56,38,21,0.0 +14384,1,18,23,0.0 +14384,75,7.75,25,0.0 +14384,20,81,31,0.0 +14384,25,14,7,0.0 +14384,50,16.25,9,0.0 +14384,69,36,18,0.0 +14384,54,7.45,19,0.0 +14384,11,21,16,0.0 +14384,18,62.5,45,0.0 +14384,41,9.65,7,0.0 +14384,6,25,4,0.0 +14384,46,12,8,0.0 +14384,43,46,2,0.0 +14384,27,43.9,5,0.0 +14384,28,45.6,19,0.0 +14384,51,53,4,0.0 +14384,66,17,31,0.0 +14384,35,18,32,0.0 +14384,36,19,48,0.0 +14384,34,14,27,0.0 +14384,45,9.5,31,0.0 +14384,62,49.3,25,0.0 +14384,40,18.4,3,0.0 +14384,12,38,47,0.0 +14384,29,123.79,20,0.0 +14384,48,12.75,34,0.0 +14384,33,2.5,41,0.0 +14384,47,9.5,3,0.0 +14384,23,9,49,0.0 +14384,59,55,18,0.0 +14384,65,21.05,38,0.0 +14384,77,13,23,0.0 +14384,13,6,49,0.0 +14384,10,31,4,0.0 +14384,67,14,8,0.0 +14384,73,15,35,0.0 +14384,39,18,21,0.0 +14384,30,25.89,16,0.0 +14384,55,24,48,0.0 +14384,74,10,48,0.0 +14384,9,97,33,0.0 +14384,64,33.25,38,0.0 +14384,19,9.2,13,0.0 +14384,72,34.8,22,0.0 +14384,70,15,28,0.0 +14384,68,12.5,12,0.0 +14384,32,32,22,0.0 +14384,49,20,22,0.0 +14384,60,34,25,0.0 +14384,21,10,5,0.0 +14384,63,43.9,48,0.0 +14384,42,14,20,0.0 +14384,56,38,9,0.0 +14384,5,21.35,28,0.0 +14385,18,62.5,41,0.0 +14385,26,31.23,47,0.0 +14385,14,23.25,32,0.0 +14385,51,53,26,0.0 +14385,1,18,25,0.0 +14385,59,55,45,0.0 +14385,45,9.5,33,0.0 +14385,44,19.45,2,0.0 +14385,21,10,45,0.0 +14385,32,32,3,0.0 +14385,6,25,38,0.0 +14385,35,18,24,0.0 +14385,68,12.5,1,0.0 +14385,47,9.5,26,0.0 +14385,72,34.8,41,0.0 +14385,20,81,45,0.0 +14385,52,7,18,0.0 +14385,37,26,46,0.0 +14385,10,31,7,0.0 +14385,71,21.5,35,0.0 +14385,19,9.2,47,0.0 +14385,40,18.4,24,0.0 +14385,70,15,28,0.0 +14385,41,9.65,44,0.0 +14385,16,17.45,12,0.0 +14385,13,6,3,0.0 +14385,73,15,33,0.0 +14385,9,97,33,0.0 +14385,53,32.8,24,0.0 +14385,43,46,4,0.0 +14385,34,14,37,0.0 +14385,24,4.5,44,0.0 +14385,77,13,45,0.0 +14385,29,123.79,17,0.0 +14385,61,28.5,11,0.0 +14385,57,19.5,26,0.0 +14385,55,24,3,0.0 +14385,62,49.3,33,0.0 +14385,48,12.75,27,0.0 +14385,22,21,39,0.0 +14385,49,20,44,0.0 +14385,42,14,32,0.0 +14385,58,13.25,37,0.0 +14385,75,7.75,47,0.0 +14385,54,7.45,24,0.0 +14385,66,17,17,0.0 +14385,74,10,38,0.0 +14385,23,9,15,0.0 +14385,12,38,26,0.0 +14385,3,10,28,0.0 +14385,8,40,26,0.0 +14385,2,19,7,0.0 +14385,27,43.9,23,0.0 +14385,60,34,3,0.0 +14385,30,25.89,14,0.0 +14385,7,30,8,0.0 +14385,31,12.5,47,0.0 +14385,46,12,26,0.0 +14385,25,14,45,0.0 +14385,39,18,47,0.0 +14385,67,14,50,0.0 +14385,17,39,4,0.0 +14385,63,43.9,9,0.0 +14385,15,15.5,7,0.0 +14385,65,21.05,24,0.0 +14385,36,19,49,0.0 +14385,56,38,47,0.0 +14385,11,21,9,0.0 +14385,4,22,9,0.0 +14385,5,21.35,25,0.0 +14385,50,16.25,6,0.0 +14385,69,36,13,0.0 +14385,38,263.5,50,0.0 +14385,64,33.25,32,0.0 +14386,25,14,7,0.0 +14386,43,46,12,0.0 +14386,64,33.25,42,0.0 +14386,61,28.5,41,0.0 +14386,59,55,37,0.0 +14386,62,49.3,24,0.0 +14386,44,19.45,23,0.0 +14386,67,14,5,0.0 +14386,23,9,13,0.0 +14386,75,7.75,7,0.0 +14386,31,12.5,27,0.0 +14386,26,31.23,43,0.0 +14386,71,21.5,7,0.0 +14386,29,123.79,18,0.0 +14386,45,9.5,36,0.0 +14386,19,9.2,46,0.0 +14386,53,32.8,5,0.0 +14386,36,19,41,0.0 +14386,49,20,50,0.0 +14386,72,34.8,26,0.0 +14386,66,17,21,0.0 +14386,3,10,5,0.0 +14386,32,32,50,0.0 +14386,35,18,38,0.0 +14386,15,15.5,5,0.0 +14386,76,18,13,0.0 +14386,74,10,9,0.0 +14386,46,12,27,0.0 +14386,24,4.5,38,0.0 +14386,7,30,44,0.0 +14386,12,38,4,0.0 +14386,57,19.5,14,0.0 +14386,20,81,28,0.0 +14386,37,26,7,0.0 +14386,38,263.5,40,0.0 +14386,30,25.89,43,0.0 +14386,17,39,39,0.0 +14386,33,2.5,22,0.0 +14386,13,6,22,0.0 +14386,65,21.05,1,0.0 +14386,63,43.9,20,0.0 +14386,10,31,11,0.0 +14386,41,9.65,22,0.0 +14387,37,26,49,0.0 +14387,56,38,41,0.0 +14387,63,43.9,22,0.0 +14387,41,9.65,37,0.0 +14387,53,32.8,1,0.0 +14387,8,40,2,0.0 +14387,25,14,2,0.0 +14387,31,12.5,25,0.0 +14387,54,7.45,41,0.0 +14387,69,36,20,0.0 +14387,24,4.5,23,0.0 +14387,73,15,10,0.0 +14387,39,18,16,0.0 +14387,23,9,6,0.0 +14387,12,38,39,0.0 +14387,77,13,44,0.0 +14387,64,33.25,46,0.0 +14387,71,21.5,38,0.0 +14387,66,17,20,0.0 +14387,43,46,23,0.0 +14387,57,19.5,11,0.0 +14387,29,123.79,1,0.0 +14387,62,49.3,34,0.0 +14387,28,45.6,40,0.0 +14387,48,12.75,28,0.0 +14387,70,15,32,0.0 +14387,19,9.2,38,0.0 +14387,14,23.25,26,0.0 +14387,59,55,50,0.0 +14387,50,16.25,19,0.0 +14387,47,9.5,21,0.0 +14387,67,14,8,0.0 +14387,15,15.5,24,0.0 +14387,76,18,36,0.0 +14387,2,19,39,0.0 +14387,58,13.25,13,0.0 +14387,13,6,14,0.0 +14387,45,9.5,43,0.0 +14387,10,31,32,0.0 +14387,42,14,37,0.0 +14387,16,17.45,9,0.0 +14387,52,7,21,0.0 +14387,35,18,29,0.0 +14387,27,43.9,43,0.0 +14387,44,19.45,36,0.0 +14387,7,30,22,0.0 +14387,49,20,3,0.0 +14387,72,34.8,13,0.0 +14387,46,12,48,0.0 +14387,20,81,23,0.0 +14387,9,97,13,0.0 +14387,40,18.4,17,0.0 +14387,55,24,38,0.0 +14387,26,31.23,39,0.0 +14387,32,32,3,0.0 +14387,6,25,17,0.0 +14388,31,12.5,41,0.0 +14388,72,34.8,29,0.0 +14388,3,10,29,0.0 +14388,10,31,27,0.0 +14388,4,22,31,0.0 +14388,1,18,2,0.0 +14389,70,15,37,0.0 +14389,58,13.25,49,0.0 +14389,24,4.5,20,0.0 +14389,71,21.5,19,0.0 +14389,13,6,13,0.0 +14389,46,12,5,0.0 +14389,33,2.5,44,0.0 +14389,23,9,44,0.0 +14389,3,10,49,0.0 +14389,72,34.8,19,0.0 +14389,42,14,37,0.0 +14389,25,14,14,0.0 +14389,22,21,33,0.0 +14389,60,34,8,0.0 +14389,27,43.9,45,0.0 +14389,20,81,32,0.0 +14389,19,9.2,21,0.0 +14389,36,19,36,0.0 +14389,64,33.25,44,0.0 +14389,65,21.05,23,0.0 +14389,11,21,35,0.0 +14389,63,43.9,50,0.0 +14389,2,19,32,0.0 +14389,45,9.5,42,0.0 +14389,12,38,44,0.0 +14389,74,10,17,0.0 +14389,39,18,47,0.0 +14389,31,12.5,21,0.0 +14389,47,9.5,41,0.0 +14389,52,7,28,0.0 +14389,6,25,34,0.0 +14389,30,25.89,19,0.0 +14389,59,55,18,0.0 +14389,35,18,27,0.0 +14389,66,17,5,0.0 +14389,18,62.5,14,0.0 +14389,14,23.25,50,0.0 +14389,4,22,36,0.0 +14389,57,19.5,8,0.0 +14389,43,46,9,0.0 +14389,62,49.3,21,0.0 +14389,68,12.5,25,0.0 +14389,10,31,47,0.0 +14389,26,31.23,47,0.0 +14389,75,7.75,15,0.0 +14389,61,28.5,43,0.0 +14389,9,97,38,0.0 +14389,34,14,49,0.0 +14389,44,19.45,38,0.0 +14389,51,53,11,0.0 +14389,77,13,2,0.0 +14389,69,36,13,0.0 +14389,1,18,5,0.0 +14389,32,32,1,0.0 +14389,38,263.5,28,0.0 +14389,28,45.6,30,0.0 +14389,50,16.25,7,0.0 +14389,48,12.75,22,0.0 +14389,8,40,34,0.0 +14389,76,18,31,0.0 +14389,54,7.45,28,0.0 +14389,7,30,24,0.0 +14389,53,32.8,7,0.0 +14389,16,17.45,30,0.0 +14389,37,26,27,0.0 +14389,55,24,6,0.0 +14389,40,18.4,18,0.0 +14389,5,21.35,2,0.0 +14389,41,9.65,42,0.0 +14389,15,15.5,8,0.0 +14389,17,39,21,0.0 +14389,29,123.79,15,0.0 +14389,21,10,6,0.0 +14389,73,15,47,0.0 +14390,5,21.35,5,0.0 +14390,1,18,10,0.0 +14390,73,15,15,0.0 +14390,15,15.5,48,0.0 +14390,77,13,40,0.0 +14390,69,36,34,0.0 +14390,49,20,21,0.0 +14390,64,33.25,8,0.0 +14390,48,12.75,36,0.0 +14390,32,32,2,0.0 +14390,74,10,30,0.0 +14390,45,9.5,21,0.0 +14390,72,34.8,32,0.0 +14390,27,43.9,35,0.0 +14390,18,62.5,10,0.0 +14390,52,7,9,0.0 +14390,6,25,5,0.0 +14390,40,18.4,32,0.0 +14390,55,24,19,0.0 +14390,30,25.89,41,0.0 +14390,46,12,6,0.0 +14390,34,14,44,0.0 +14390,25,14,19,0.0 +14390,75,7.75,25,0.0 +14390,3,10,49,0.0 +14390,58,13.25,45,0.0 +14390,71,21.5,7,0.0 +14390,62,49.3,24,0.0 +14390,20,81,8,0.0 +14390,13,6,16,0.0 +14390,31,12.5,43,0.0 +14390,44,19.45,46,0.0 +14390,51,53,41,0.0 +14390,60,34,12,0.0 +14390,66,17,26,0.0 +14390,8,40,24,0.0 +14390,14,23.25,15,0.0 +14390,28,45.6,11,0.0 +14390,22,21,23,0.0 +14390,43,46,29,0.0 +14390,36,19,6,0.0 +14390,12,38,29,0.0 +14390,2,19,16,0.0 +14390,23,9,31,0.0 +14390,39,18,19,0.0 +14390,9,97,8,0.0 +14390,42,14,38,0.0 +14390,16,17.45,2,0.0 +14390,63,43.9,6,0.0 +14391,60,34,49,0.0 +14391,11,21,32,0.0 +14391,69,36,37,0.0 +14391,71,21.5,22,0.0 +14391,74,10,44,0.0 +14391,21,10,7,0.0 +14391,15,15.5,18,0.0 +14391,52,7,38,0.0 +14391,32,32,32,0.0 +14391,16,17.45,33,0.0 +14391,56,38,8,0.0 +14391,1,18,20,0.0 +14391,7,30,43,0.0 +14391,13,6,38,0.0 +14391,41,9.65,1,0.0 +14391,58,13.25,16,0.0 +14391,31,12.5,29,0.0 +14391,27,43.9,12,0.0 +14391,76,18,40,0.0 +14391,55,24,21,0.0 +14391,10,31,20,0.0 +14391,30,25.89,44,0.0 +14391,61,28.5,15,0.0 +14391,49,20,22,0.0 +14391,45,9.5,14,0.0 +14391,17,39,28,0.0 +14391,62,49.3,49,0.0 +14391,53,32.8,33,0.0 +14391,70,15,6,0.0 +14391,43,46,29,0.0 +14391,22,21,45,0.0 +14391,72,34.8,48,0.0 +14391,23,9,12,0.0 +14391,3,10,33,0.0 +14391,44,19.45,32,0.0 +14391,68,12.5,3,0.0 +14391,29,123.79,38,0.0 +14391,36,19,7,0.0 +14391,77,13,31,0.0 +14391,14,23.25,22,0.0 +14391,42,14,27,0.0 +14391,4,22,1,0.0 +14391,40,18.4,43,0.0 +14391,18,62.5,7,0.0 +14391,37,26,48,0.0 +14391,47,9.5,21,0.0 +14391,26,31.23,21,0.0 +14391,35,18,47,0.0 +14391,5,21.35,25,0.0 +14391,65,21.05,48,0.0 +14391,48,12.75,35,0.0 +14391,9,97,35,0.0 +14392,25,14,15,0.0 +14392,34,14,42,0.0 +14392,19,9.2,7,0.0 +14392,62,49.3,16,0.0 +14392,54,7.45,1,0.0 +14392,31,12.5,32,0.0 +14392,33,2.5,30,0.0 +14392,36,19,7,0.0 +14392,32,32,35,0.0 +14392,67,14,25,0.0 +14392,4,22,1,0.0 +14392,10,31,33,0.0 +14392,15,15.5,44,0.0 +14392,48,12.75,48,0.0 +14392,60,34,2,0.0 +14392,57,19.5,22,0.0 +14392,59,55,1,0.0 +14392,3,10,23,0.0 +14392,14,23.25,48,0.0 +14392,73,15,44,0.0 +14392,44,19.45,45,0.0 +14392,45,9.5,14,0.0 +14392,43,46,11,0.0 +14392,39,18,27,0.0 +14392,75,7.75,45,0.0 +14392,65,21.05,25,0.0 +14392,29,123.79,47,0.0 +14392,64,33.25,17,0.0 +14392,77,13,50,0.0 +14392,5,21.35,16,0.0 +14392,37,26,23,0.0 +14392,23,9,33,0.0 +14392,46,12,36,0.0 +14392,71,21.5,11,0.0 +14392,70,15,38,0.0 +14392,53,32.8,1,0.0 +14392,58,13.25,12,0.0 +14392,66,17,28,0.0 +14392,30,25.89,4,0.0 +14392,9,97,41,0.0 +14392,24,4.5,50,0.0 +14392,26,31.23,17,0.0 +14392,56,38,8,0.0 +14392,74,10,36,0.0 +14393,55,24,43,0.0 +14393,18,62.5,7,0.0 +14393,59,55,35,0.0 +14393,40,18.4,7,0.0 +14393,54,7.45,37,0.0 +14393,66,17,8,0.0 +14393,50,16.25,18,0.0 +14393,76,18,6,0.0 +14393,32,32,46,0.0 +14393,58,13.25,34,0.0 +14393,23,9,11,0.0 +14393,30,25.89,14,0.0 +14393,45,9.5,42,0.0 +14393,28,45.6,25,0.0 +14393,44,19.45,28,0.0 +14393,62,49.3,33,0.0 +14393,3,10,18,0.0 +14393,36,19,44,0.0 +14393,57,19.5,26,0.0 +14393,4,22,35,0.0 +14393,77,13,44,0.0 +14393,41,9.65,15,0.0 +14393,7,30,29,0.0 +14393,27,43.9,19,0.0 +14393,69,36,28,0.0 +14393,26,31.23,42,0.0 +14393,6,25,40,0.0 +14393,60,34,33,0.0 +14393,2,19,27,0.0 +14393,12,38,45,0.0 +14393,51,53,49,0.0 +14393,63,43.9,32,0.0 +14393,24,4.5,5,0.0 +14393,15,15.5,21,0.0 +14393,42,14,24,0.0 +14393,37,26,4,0.0 +14393,21,10,46,0.0 +14393,16,17.45,5,0.0 +14393,73,15,3,0.0 +14393,61,28.5,10,0.0 +14393,68,12.5,48,0.0 +14393,34,14,28,0.0 +14393,56,38,31,0.0 +14393,25,14,33,0.0 +14393,14,23.25,40,0.0 +14393,74,10,50,0.0 +14393,1,18,50,0.0 +14393,64,33.25,16,0.0 +14393,53,32.8,31,0.0 +14393,75,7.75,33,0.0 +14393,39,18,17,0.0 +14393,20,81,34,0.0 +14393,22,21,11,0.0 +14393,33,2.5,28,0.0 +14393,48,12.75,23,0.0 +14393,43,46,43,0.0 +14393,11,21,14,0.0 +14393,5,21.35,48,0.0 +14393,8,40,38,0.0 +14393,35,18,44,0.0 +14393,71,21.5,12,0.0 +14393,10,31,12,0.0 +14393,46,12,42,0.0 +14393,70,15,33,0.0 +14393,67,14,24,0.0 +14393,29,123.79,16,0.0 +14393,52,7,42,0.0 +14393,13,6,40,0.0 +14393,38,263.5,25,0.0 +14393,9,97,15,0.0 +14393,72,34.8,36,0.0 +14393,65,21.05,14,0.0 +14393,31,12.5,3,0.0 +14393,17,39,25,0.0 +14393,49,20,42,0.0 +14394,63,43.9,40,0.0 +14394,65,21.05,27,0.0 +14394,31,12.5,2,0.0 +14394,5,21.35,4,0.0 +14394,28,45.6,27,0.0 +14394,20,81,48,0.0 +14394,24,4.5,41,0.0 +14394,71,21.5,46,0.0 +14394,53,32.8,17,0.0 +14394,75,7.75,16,0.0 +14394,72,34.8,49,0.0 +14394,10,31,24,0.0 +14394,38,263.5,2,0.0 +14394,4,22,15,0.0 +14394,13,6,48,0.0 +14394,55,24,26,0.0 +14394,76,18,23,0.0 +14394,54,7.45,29,0.0 +14394,48,12.75,37,0.0 +14394,77,13,14,0.0 +14394,23,9,29,0.0 +14394,12,38,9,0.0 +14394,68,12.5,1,0.0 +14394,73,15,4,0.0 +14394,56,38,1,0.0 +14394,52,7,33,0.0 +14394,59,55,5,0.0 +14394,51,53,6,0.0 +14394,7,30,31,0.0 +14394,32,32,42,0.0 +14394,40,18.4,42,0.0 +14394,9,97,10,0.0 +14394,46,12,45,0.0 +14394,36,19,17,0.0 +14394,3,10,20,0.0 +14394,21,10,40,0.0 +14394,70,15,32,0.0 +14394,45,9.5,38,0.0 +14394,2,19,26,0.0 +14394,58,13.25,16,0.0 +14394,61,28.5,37,0.0 +14394,34,14,39,0.0 +14394,22,21,40,0.0 +14394,69,36,38,0.0 +14394,11,21,26,0.0 +14394,57,19.5,33,0.0 +14394,15,15.5,24,0.0 +14394,1,18,26,0.0 +14394,42,14,3,0.0 +14394,17,39,24,0.0 +14394,37,26,35,0.0 +14394,66,17,41,0.0 +14394,8,40,46,0.0 +14394,6,25,35,0.0 +14394,26,31.23,16,0.0 +14394,43,46,12,0.0 +14394,74,10,39,0.0 +14394,39,18,3,0.0 +14394,47,9.5,46,0.0 +14394,62,49.3,25,0.0 +14394,25,14,36,0.0 +14394,33,2.5,14,0.0 +14394,35,18,17,0.0 +14394,18,62.5,26,0.0 +14394,19,9.2,15,0.0 +14394,27,43.9,24,0.0 +14394,64,33.25,37,0.0 +14395,22,21,16,0.0 +14395,53,32.8,38,0.0 +14395,16,17.45,15,0.0 +14395,18,62.5,6,0.0 +14395,1,18,5,0.0 +14395,36,19,32,0.0 +14395,64,33.25,36,0.0 +14395,33,2.5,10,0.0 +14395,38,263.5,4,0.0 +14395,57,19.5,48,0.0 +14395,46,12,33,0.0 +14395,74,10,13,0.0 +14395,49,20,6,0.0 +14395,7,30,33,0.0 +14395,26,31.23,17,0.0 +14395,56,38,37,0.0 +14395,37,26,10,0.0 +14395,21,10,1,0.0 +14396,18,62.5,10,0.0 +14396,52,7,34,0.0 +14396,7,30,19,0.0 +14396,25,14,45,0.0 +14396,26,31.23,41,0.0 +14396,47,9.5,15,0.0 +14396,36,19,12,0.0 +14396,60,34,34,0.0 +14396,21,10,35,0.0 +14396,50,16.25,1,0.0 +14396,51,53,7,0.0 +14396,55,24,9,0.0 +14396,66,17,39,0.0 +14396,53,32.8,7,0.0 +14396,17,39,26,0.0 +14396,31,12.5,30,0.0 +14396,24,4.5,44,0.0 +14396,48,12.75,34,0.0 +14396,42,14,23,0.0 +14396,3,10,41,0.0 +14396,64,33.25,1,0.0 +14396,1,18,10,0.0 +14396,34,14,20,0.0 +14396,67,14,20,0.0 +14396,6,25,42,0.0 +14396,10,31,33,0.0 +14396,45,9.5,2,0.0 +14396,4,22,16,0.0 +14396,13,6,46,0.0 +14396,5,21.35,9,0.0 +14396,46,12,23,0.0 +14396,62,49.3,12,0.0 +14396,73,15,30,0.0 +14396,23,9,1,0.0 +14396,74,10,27,0.0 +14396,33,2.5,27,0.0 +14396,75,7.75,30,0.0 +14396,70,15,15,0.0 +14396,44,19.45,7,0.0 +14396,38,263.5,11,0.0 +14396,49,20,42,0.0 +14396,32,32,36,0.0 +14396,30,25.89,29,0.0 +14396,11,21,26,0.0 +14396,16,17.45,27,0.0 +14396,57,19.5,40,0.0 +14396,19,9.2,28,0.0 +14396,14,23.25,50,0.0 +14396,35,18,33,0.0 +14396,76,18,5,0.0 +14396,20,81,41,0.0 +14396,54,7.45,39,0.0 +14396,65,21.05,31,0.0 +14396,8,40,21,0.0 +14396,72,34.8,33,0.0 +14396,61,28.5,24,0.0 +14396,22,21,13,0.0 +14396,63,43.9,50,0.0 +14396,56,38,28,0.0 +14396,43,46,45,0.0 +14396,27,43.9,32,0.0 +14396,77,13,43,0.0 +14396,37,26,33,0.0 +14396,29,123.79,37,0.0 +14396,68,12.5,34,0.0 +14396,2,19,22,0.0 +14396,39,18,16,0.0 +14396,71,21.5,16,0.0 +14396,15,15.5,4,0.0 +14396,12,38,27,0.0 +14397,13,6,25,0.0 +14397,56,38,26,0.0 +14397,70,15,3,0.0 +14397,10,31,21,0.0 +14397,46,12,23,0.0 +14397,24,4.5,40,0.0 +14397,37,26,27,0.0 +14397,40,18.4,15,0.0 +14397,51,53,13,0.0 +14397,17,39,4,0.0 +14397,72,34.8,5,0.0 +14397,57,19.5,16,0.0 +14397,35,18,21,0.0 +14397,29,123.79,47,0.0 +14397,34,14,46,0.0 +14397,61,28.5,39,0.0 +14398,41,9.65,32,0.0 +14398,32,32,3,0.0 +14398,61,28.5,45,0.0 +14398,21,10,10,0.0 +14398,57,19.5,5,0.0 +14398,33,2.5,35,0.0 +14398,45,9.5,32,0.0 +14398,50,16.25,33,0.0 +14398,58,13.25,10,0.0 +14398,15,15.5,11,0.0 +14398,4,22,3,0.0 +14398,44,19.45,34,0.0 +14398,40,18.4,13,0.0 +14398,13,6,9,0.0 +14398,52,7,35,0.0 +14398,23,9,5,0.0 +14398,51,53,47,0.0 +14398,10,31,49,0.0 +14398,14,23.25,13,0.0 +14398,37,26,20,0.0 +14398,76,18,23,0.0 +14398,11,21,39,0.0 +14398,42,14,48,0.0 +14398,71,21.5,12,0.0 +14398,3,10,48,0.0 +14398,65,21.05,21,0.0 +14398,38,263.5,14,0.0 +14398,28,45.6,31,0.0 +14398,46,12,5,0.0 +14398,25,14,11,0.0 +14398,48,12.75,48,0.0 +14398,49,20,31,0.0 +14398,59,55,36,0.0 +14398,24,4.5,23,0.0 +14398,6,25,37,0.0 +14399,57,19.5,5,0.0 +14399,15,15.5,22,0.0 +14399,51,53,28,0.0 +14399,49,20,40,0.0 +14399,37,26,41,0.0 +14399,10,31,22,0.0 +14399,74,10,42,0.0 +14399,62,49.3,3,0.0 +14399,58,13.25,42,0.0 +14399,24,4.5,40,0.0 +14399,30,25.89,19,0.0 +14399,53,32.8,11,0.0 +14399,3,10,47,0.0 +14399,1,18,9,0.0 +14399,77,13,36,0.0 +14399,54,7.45,38,0.0 +14399,18,62.5,37,0.0 +14399,59,55,34,0.0 +14399,7,30,7,0.0 +14399,20,81,4,0.0 +14399,45,9.5,50,0.0 +14399,11,21,14,0.0 +14399,2,19,12,0.0 +14399,43,46,12,0.0 +14399,36,19,40,0.0 +14399,68,12.5,41,0.0 +14400,3,10,47,0.0 +14400,8,40,49,0.0 +14400,35,18,50,0.0 +14400,17,39,50,0.0 +14400,54,7.45,17,0.0 +14400,62,49.3,37,0.0 +14400,73,15,30,0.0 +14400,5,21.35,32,0.0 +14400,27,43.9,50,0.0 +14400,10,31,6,0.0 +14400,52,7,13,0.0 +14400,13,6,4,0.0 +14400,29,123.79,13,0.0 +14400,40,18.4,50,0.0 +14400,14,23.25,31,0.0 +14400,20,81,12,0.0 +14400,76,18,25,0.0 +14400,60,34,10,0.0 +14400,72,34.8,18,0.0 +14401,63,43.9,44,0.0 +14401,19,9.2,29,0.0 +14401,58,13.25,17,0.0 +14401,33,2.5,8,0.0 +14401,71,21.5,44,0.0 +14401,39,18,27,0.0 +14401,53,32.8,34,0.0 +14401,20,81,18,0.0 +14401,36,19,45,0.0 +14401,35,18,10,0.0 +14401,55,24,44,0.0 +14401,2,19,23,0.0 +14401,76,18,20,0.0 +14401,67,14,46,0.0 +14401,52,7,28,0.0 +14401,31,12.5,23,0.0 +14401,26,31.23,11,0.0 +14401,29,123.79,37,0.0 +14401,21,10,35,0.0 +14401,56,38,7,0.0 +14401,40,18.4,39,0.0 +14401,34,14,39,0.0 +14401,68,12.5,7,0.0 +14401,9,97,2,0.0 +14401,22,21,20,0.0 +14401,43,46,23,0.0 +14401,73,15,4,0.0 +14401,72,34.8,21,0.0 +14401,65,21.05,29,0.0 +14401,24,4.5,38,0.0 +14401,64,33.25,4,0.0 +14401,6,25,40,0.0 +14401,4,22,1,0.0 +14401,62,49.3,41,0.0 +14401,60,34,13,0.0 +14401,70,15,33,0.0 +14401,13,6,27,0.0 +14401,38,263.5,11,0.0 +14401,54,7.45,31,0.0 +14401,69,36,6,0.0 +14401,77,13,31,0.0 +14401,15,15.5,37,0.0 +14401,1,18,43,0.0 +14401,57,19.5,20,0.0 +14401,74,10,46,0.0 +14401,47,9.5,45,0.0 +14401,37,26,33,0.0 +14402,26,31.23,26,0.0 +14402,3,10,30,0.0 +14402,73,15,3,0.0 +14402,39,18,29,0.0 +14402,67,14,31,0.0 +14402,33,2.5,10,0.0 +14402,70,15,5,0.0 +14402,49,20,37,0.0 +14402,59,55,13,0.0 +14402,30,25.89,42,0.0 +14402,28,45.6,48,0.0 +14402,32,32,40,0.0 +14402,50,16.25,45,0.0 +14402,9,97,50,0.0 +14402,36,19,32,0.0 +14402,6,25,22,0.0 +14402,15,15.5,29,0.0 +14402,56,38,3,0.0 +14402,17,39,21,0.0 +14402,53,32.8,42,0.0 +14402,12,38,43,0.0 +14402,47,9.5,5,0.0 +14402,34,14,47,0.0 +14402,51,53,8,0.0 +14402,18,62.5,10,0.0 +14402,22,21,15,0.0 +14402,68,12.5,19,0.0 +14402,25,14,33,0.0 +14402,45,9.5,13,0.0 +14402,16,17.45,6,0.0 +14402,5,21.35,11,0.0 +14402,44,19.45,9,0.0 +14402,41,9.65,43,0.0 +14402,46,12,27,0.0 +14402,64,33.25,24,0.0 +14402,11,21,8,0.0 +14402,76,18,45,0.0 +14402,48,12.75,33,0.0 +14402,62,49.3,35,0.0 +14402,31,12.5,20,0.0 +14403,10,31,21,0.0 +14403,54,7.45,10,0.0 +14403,15,15.5,18,0.0 +14404,60,34,4,0.0 +14404,50,16.25,1,0.0 +14404,27,43.9,22,0.0 +14404,52,7,20,0.0 +14404,46,12,32,0.0 +14404,37,26,49,0.0 +14404,29,123.79,19,0.0 +14404,69,36,6,0.0 +14404,62,49.3,24,0.0 +14404,59,55,50,0.0 +14404,51,53,21,0.0 +14404,42,14,29,0.0 +14404,36,19,6,0.0 +14404,40,18.4,31,0.0 +14404,10,31,7,0.0 +14404,68,12.5,30,0.0 +14404,2,19,6,0.0 +14404,63,43.9,8,0.0 +14404,70,15,44,0.0 +14404,74,10,27,0.0 +14404,19,9.2,45,0.0 +14404,23,9,24,0.0 +14404,22,21,30,0.0 +14404,6,25,49,0.0 +14404,4,22,31,0.0 +14404,49,20,47,0.0 +14404,1,18,29,0.0 +14404,64,33.25,22,0.0 +14404,35,18,14,0.0 +14404,48,12.75,25,0.0 +14404,47,9.5,30,0.0 +14404,33,2.5,50,0.0 +14404,3,10,39,0.0 +14404,73,15,4,0.0 +14404,57,19.5,49,0.0 +14404,54,7.45,1,0.0 +14404,18,62.5,13,0.0 +14404,32,32,31,0.0 +14404,72,34.8,50,0.0 +14404,31,12.5,41,0.0 +14404,25,14,8,0.0 +14404,77,13,5,0.0 +14404,11,21,34,0.0 +14404,53,32.8,27,0.0 +14404,30,25.89,32,0.0 +14404,20,81,38,0.0 +14404,58,13.25,1,0.0 +14404,16,17.45,14,0.0 +14404,34,14,41,0.0 +14404,76,18,45,0.0 +14404,43,46,8,0.0 +14404,13,6,5,0.0 +14405,20,81,8,0.0 +14405,35,18,46,0.0 +14405,61,28.5,22,0.0 +14405,75,7.75,13,0.0 +14405,71,21.5,34,0.0 +14405,36,19,49,0.0 +14405,43,46,22,0.0 +14405,48,12.75,47,0.0 +14405,47,9.5,50,0.0 +14405,73,15,24,0.0 +14405,52,7,22,0.0 +14405,77,13,5,0.0 +14406,77,13,38,0.0 +14406,6,25,35,0.0 +14406,60,34,7,0.0 +14406,23,9,41,0.0 +14406,66,17,45,0.0 +14406,46,12,24,0.0 +14406,2,19,48,0.0 +14406,12,38,35,0.0 +14406,44,19.45,18,0.0 +14406,45,9.5,17,0.0 +14406,37,26,21,0.0 +14406,39,18,16,0.0 +14406,70,15,6,0.0 +14406,34,14,28,0.0 +14406,26,31.23,23,0.0 +14406,73,15,37,0.0 +14406,53,32.8,50,0.0 +14406,25,14,23,0.0 +14406,72,34.8,46,0.0 +14406,65,21.05,7,0.0 +14406,74,10,39,0.0 +14406,5,21.35,36,0.0 +14406,21,10,15,0.0 +14406,48,12.75,8,0.0 +14406,57,19.5,36,0.0 +14406,43,46,38,0.0 +14406,68,12.5,34,0.0 +14406,19,9.2,7,0.0 +14406,17,39,39,0.0 +14406,4,22,8,0.0 +14406,59,55,27,0.0 +14406,55,24,10,0.0 +14406,29,123.79,29,0.0 +14406,52,7,19,0.0 +14406,15,15.5,5,0.0 +14406,50,16.25,41,0.0 +14406,7,30,27,0.0 +14406,54,7.45,20,0.0 +14406,22,21,45,0.0 +14406,11,21,35,0.0 +14406,76,18,5,0.0 +14406,9,97,14,0.0 +14406,61,28.5,33,0.0 +14406,47,9.5,36,0.0 +14406,56,38,43,0.0 +14406,18,62.5,27,0.0 +14407,40,18.4,43,0.0 +14407,7,30,39,0.0 +14407,8,40,2,0.0 +14407,65,21.05,22,0.0 +14407,73,15,16,0.0 +14407,30,25.89,13,0.0 +14407,21,10,8,0.0 +14407,47,9.5,50,0.0 +14407,53,32.8,12,0.0 +14407,54,7.45,4,0.0 +14407,63,43.9,33,0.0 +14407,45,9.5,28,0.0 +14407,34,14,38,0.0 +14407,66,17,37,0.0 +14407,41,9.65,39,0.0 +14407,62,49.3,40,0.0 +14407,60,34,38,0.0 +14407,58,13.25,38,0.0 +14407,42,14,19,0.0 +14407,38,263.5,23,0.0 +14407,25,14,15,0.0 +14407,56,38,16,0.0 +14407,43,46,23,0.0 +14407,67,14,33,0.0 +14407,77,13,40,0.0 +14407,17,39,37,0.0 +14407,48,12.75,5,0.0 +14407,46,12,28,0.0 +14407,75,7.75,17,0.0 +14407,52,7,37,0.0 +14407,26,31.23,49,0.0 +14407,1,18,38,0.0 +14407,68,12.5,22,0.0 +14407,18,62.5,37,0.0 +14407,51,53,8,0.0 +14407,71,21.5,23,0.0 +14407,28,45.6,16,0.0 +14407,14,23.25,6,0.0 +14408,2,19,35,0.0 +14408,16,17.45,49,0.0 +14408,65,21.05,18,0.0 +14408,66,17,13,0.0 +14408,77,13,20,0.0 +14408,3,10,4,0.0 +14408,71,21.5,33,0.0 +14408,17,39,25,0.0 +14408,61,28.5,46,0.0 +14408,15,15.5,16,0.0 +14408,75,7.75,29,0.0 +14408,33,2.5,34,0.0 +14408,20,81,30,0.0 +14408,36,19,24,0.0 +14408,34,14,16,0.0 +14408,12,38,32,0.0 +14408,54,7.45,42,0.0 +14408,28,45.6,7,0.0 +14408,22,21,37,0.0 +14408,70,15,38,0.0 +14408,30,25.89,45,0.0 +14408,39,18,35,0.0 +14408,4,22,50,0.0 +14408,49,20,44,0.0 +14408,74,10,8,0.0 +14408,10,31,20,0.0 +14408,72,34.8,43,0.0 +14408,55,24,25,0.0 +14408,5,21.35,40,0.0 +14408,59,55,18,0.0 +14408,13,6,49,0.0 +14408,14,23.25,18,0.0 +14408,48,12.75,17,0.0 +14408,40,18.4,13,0.0 +14408,69,36,37,0.0 +14408,9,97,13,0.0 +14408,44,19.45,35,0.0 +14408,43,46,20,0.0 +14408,58,13.25,36,0.0 +14408,46,12,43,0.0 +14408,11,21,13,0.0 +14408,60,34,21,0.0 +14408,73,15,7,0.0 +14408,63,43.9,21,0.0 +14408,29,123.79,6,0.0 +14408,47,9.5,13,0.0 +14408,6,25,6,0.0 +14408,53,32.8,30,0.0 +14408,64,33.25,19,0.0 +14408,23,9,8,0.0 +14408,19,9.2,12,0.0 +14408,7,30,38,0.0 +14408,41,9.65,38,0.0 +14408,21,10,16,0.0 +14408,45,9.5,22,0.0 +14408,37,26,41,0.0 +14408,57,19.5,24,0.0 +14408,67,14,30,0.0 +14408,56,38,31,0.0 +14408,52,7,3,0.0 +14408,76,18,4,0.0 +14409,43,46,6,0.0 +14409,73,15,3,0.0 +14409,45,9.5,50,0.0 +14409,72,34.8,48,0.0 +14409,37,26,40,0.0 +14409,29,123.79,2,0.0 +14409,13,6,16,0.0 +14409,4,22,44,0.0 +14409,53,32.8,38,0.0 +14409,41,9.65,5,0.0 +14409,56,38,46,0.0 +14409,42,14,20,0.0 +14409,15,15.5,37,0.0 +14409,20,81,14,0.0 +14409,39,18,38,0.0 +14409,16,17.45,49,0.0 +14409,66,17,18,0.0 +14409,64,33.25,22,0.0 +14409,11,21,15,0.0 +14409,60,34,21,0.0 +14409,24,4.5,45,0.0 +14409,27,43.9,46,0.0 +14409,70,15,29,0.0 +14409,61,28.5,35,0.0 +14409,74,10,46,0.0 +14409,21,10,19,0.0 +14409,2,19,11,0.0 +14409,19,9.2,45,0.0 +14409,1,18,2,0.0 +14409,6,25,29,0.0 +14409,58,13.25,47,0.0 +14409,67,14,49,0.0 +14409,7,30,19,0.0 +14409,77,13,50,0.0 +14409,3,10,46,0.0 +14409,5,21.35,41,0.0 +14409,48,12.75,2,0.0 +14409,14,23.25,35,0.0 +14409,8,40,29,0.0 +14409,71,21.5,8,0.0 +14409,65,21.05,39,0.0 +14409,25,14,22,0.0 +14409,35,18,22,0.0 +14409,17,39,25,0.0 +14409,49,20,22,0.0 +14409,26,31.23,23,0.0 +14409,75,7.75,18,0.0 +14409,68,12.5,23,0.0 +14409,59,55,4,0.0 +14409,51,53,14,0.0 +14409,31,12.5,20,0.0 +14409,18,62.5,39,0.0 +14409,46,12,1,0.0 +14409,22,21,27,0.0 +14409,12,38,9,0.0 +14409,30,25.89,48,0.0 +14409,76,18,27,0.0 +14409,55,24,29,0.0 +14409,69,36,36,0.0 +14409,9,97,1,0.0 +14409,44,19.45,26,0.0 +14409,36,19,37,0.0 +14409,10,31,29,0.0 +14409,50,16.25,11,0.0 +14409,28,45.6,4,0.0 +14409,57,19.5,5,0.0 +14409,62,49.3,24,0.0 +14409,33,2.5,21,0.0 +14409,52,7,18,0.0 +14410,63,43.9,39,0.0 +14410,75,7.75,31,0.0 +14410,26,31.23,21,0.0 +14410,69,36,8,0.0 +14410,53,32.8,36,0.0 +14410,49,20,45,0.0 +14410,33,2.5,10,0.0 +14410,43,46,47,0.0 +14410,20,81,9,0.0 +14410,31,12.5,34,0.0 +14410,27,43.9,21,0.0 +14410,7,30,4,0.0 +14410,17,39,41,0.0 +14410,76,18,26,0.0 +14410,77,13,22,0.0 +14410,2,19,33,0.0 +14410,74,10,7,0.0 +14410,72,34.8,8,0.0 +14410,57,19.5,7,0.0 +14410,11,21,37,0.0 +14410,5,21.35,7,0.0 +14410,60,34,31,0.0 +14410,23,9,2,0.0 +14410,19,9.2,31,0.0 +14410,44,19.45,6,0.0 +14410,42,14,13,0.0 +14410,67,14,4,0.0 +14410,3,10,30,0.0 +14410,71,21.5,28,0.0 +14410,50,16.25,18,0.0 +14410,34,14,7,0.0 +14410,35,18,18,0.0 +14410,64,33.25,21,0.0 +14410,9,97,17,0.0 +14410,14,23.25,17,0.0 +14410,29,123.79,2,0.0 +14410,66,17,50,0.0 +14410,40,18.4,43,0.0 +14410,16,17.45,45,0.0 +14410,13,6,40,0.0 +14410,21,10,46,0.0 +14410,41,9.65,35,0.0 +14410,68,12.5,36,0.0 +14410,18,62.5,24,0.0 +14410,4,22,13,0.0 +14410,38,263.5,11,0.0 +14410,24,4.5,35,0.0 +14410,48,12.75,42,0.0 +14410,73,15,25,0.0 +14410,12,38,10,0.0 +14410,22,21,22,0.0 +14410,10,31,35,0.0 +14410,65,21.05,37,0.0 +14410,59,55,34,0.0 +14410,45,9.5,1,0.0 +14410,36,19,25,0.0 +14410,62,49.3,23,0.0 +14411,51,53,16,0.0 +14411,38,263.5,11,0.0 +14411,76,18,8,0.0 +14411,24,4.5,43,0.0 +14411,17,39,11,0.0 +14411,5,21.35,50,0.0 +14411,66,17,44,0.0 +14411,72,34.8,46,0.0 +14411,54,7.45,8,0.0 +14411,55,24,23,0.0 +14412,48,12.75,16,0.0 +14412,39,18,25,0.0 +14412,17,39,3,0.0 +14412,5,21.35,17,0.0 +14412,67,14,31,0.0 +14412,31,12.5,32,0.0 +14412,63,43.9,42,0.0 +14412,62,49.3,25,0.0 +14412,15,15.5,35,0.0 +14412,33,2.5,14,0.0 +14412,1,18,31,0.0 +14412,69,36,36,0.0 +14412,52,7,38,0.0 +14412,75,7.75,20,0.0 +14412,57,19.5,26,0.0 +14412,12,38,42,0.0 +14412,36,19,17,0.0 +14412,41,9.65,2,0.0 +14412,53,32.8,22,0.0 +14412,29,123.79,45,0.0 +14412,7,30,49,0.0 +14412,2,19,41,0.0 +14412,23,9,40,0.0 +14412,26,31.23,33,0.0 +14412,37,26,32,0.0 +14412,65,21.05,34,0.0 +14412,27,43.9,40,0.0 +14412,25,14,38,0.0 +14412,45,9.5,41,0.0 +14412,9,97,19,0.0 +14412,50,16.25,21,0.0 +14412,11,21,31,0.0 +14412,21,10,26,0.0 +14412,14,23.25,42,0.0 +14412,70,15,50,0.0 +14412,60,34,23,0.0 +14412,34,14,34,0.0 +14412,55,24,6,0.0 +14412,66,17,4,0.0 +14412,59,55,5,0.0 +14412,74,10,14,0.0 +14412,19,9.2,3,0.0 +14412,38,263.5,47,0.0 +14412,73,15,7,0.0 +14412,76,18,5,0.0 +14412,54,7.45,43,0.0 +14412,43,46,28,0.0 +14412,42,14,46,0.0 +14412,24,4.5,46,0.0 +14412,32,32,39,0.0 +14412,49,20,13,0.0 +14412,18,62.5,13,0.0 +14412,20,81,4,0.0 +14412,72,34.8,13,0.0 +14412,46,12,31,0.0 +14412,3,10,32,0.0 +14412,61,28.5,12,0.0 +14412,28,45.6,3,0.0 +14412,77,13,45,0.0 +14412,10,31,34,0.0 +14412,4,22,10,0.0 +14413,62,49.3,27,0.0 +14413,22,21,35,0.0 +14413,41,9.65,40,0.0 +14413,72,34.8,12,0.0 +14413,8,40,28,0.0 +14413,37,26,18,0.0 +14413,15,15.5,32,0.0 +14413,53,32.8,46,0.0 +14413,2,19,24,0.0 +14413,59,55,40,0.0 +14413,31,12.5,18,0.0 +14413,77,13,7,0.0 +14413,32,32,38,0.0 +14413,38,263.5,10,0.0 +14413,57,19.5,6,0.0 +14413,14,23.25,45,0.0 +14413,64,33.25,36,0.0 +14413,46,12,31,0.0 +14413,70,15,25,0.0 +14413,56,38,30,0.0 +14414,47,9.5,21,0.0 +14414,28,45.6,44,0.0 +14414,65,21.05,15,0.0 +14414,22,21,27,0.0 +14414,31,12.5,50,0.0 +14414,30,25.89,26,0.0 +14414,46,12,22,0.0 +14414,18,62.5,46,0.0 +14414,26,31.23,10,0.0 +14415,38,263.5,3,0.0 +14415,17,39,37,0.0 +14415,58,13.25,12,0.0 +14415,48,12.75,30,0.0 +14415,70,15,46,0.0 +14415,61,28.5,33,0.0 +14415,18,62.5,43,0.0 +14415,74,10,11,0.0 +14415,56,38,45,0.0 +14415,1,18,21,0.0 +14415,28,45.6,46,0.0 +14415,53,32.8,36,0.0 +14415,62,49.3,26,0.0 +14415,4,22,14,0.0 +14415,71,21.5,29,0.0 +14415,54,7.45,18,0.0 +14415,47,9.5,16,0.0 +14415,20,81,8,0.0 +14415,24,4.5,43,0.0 +14415,67,14,39,0.0 +14415,23,9,38,0.0 +14415,29,123.79,1,0.0 +14415,10,31,17,0.0 +14415,30,25.89,11,0.0 +14415,27,43.9,10,0.0 +14415,50,16.25,2,0.0 +14415,77,13,1,0.0 +14415,2,19,48,0.0 +14415,35,18,14,0.0 +14415,63,43.9,5,0.0 +14415,73,15,4,0.0 +14415,22,21,20,0.0 +14415,68,12.5,34,0.0 +14415,45,9.5,42,0.0 +14415,44,19.45,3,0.0 +14415,11,21,1,0.0 +14415,39,18,41,0.0 +14415,12,38,36,0.0 +14415,13,6,19,0.0 +14415,49,20,19,0.0 +14415,40,18.4,17,0.0 +14415,21,10,13,0.0 +14415,19,9.2,24,0.0 +14415,51,53,13,0.0 +14415,34,14,19,0.0 +14415,3,10,35,0.0 +14415,52,7,21,0.0 +14415,26,31.23,10,0.0 +14415,57,19.5,30,0.0 +14415,37,26,9,0.0 +14415,25,14,7,0.0 +14415,64,33.25,13,0.0 +14415,8,40,28,0.0 +14415,60,34,13,0.0 +14415,31,12.5,26,0.0 +14415,16,17.45,14,0.0 +14415,36,19,3,0.0 +14415,69,36,3,0.0 +14415,55,24,31,0.0 +14415,72,34.8,38,0.0 +14415,42,14,40,0.0 +14415,5,21.35,41,0.0 +14415,15,15.5,26,0.0 +14415,76,18,18,0.0 +14415,75,7.75,1,0.0 +14415,66,17,17,0.0 +14415,59,55,42,0.0 +14416,35,18,38,0.0 +14416,8,40,49,0.0 +14416,34,14,2,0.0 +14416,18,62.5,44,0.0 +14416,27,43.9,3,0.0 +14416,77,13,32,0.0 +14416,11,21,36,0.0 +14416,42,14,31,0.0 +14416,39,18,43,0.0 +14416,17,39,28,0.0 +14416,65,21.05,42,0.0 +14416,45,9.5,22,0.0 +14416,5,21.35,32,0.0 +14416,22,21,6,0.0 +14416,44,19.45,46,0.0 +14416,58,13.25,37,0.0 +14416,16,17.45,30,0.0 +14416,36,19,1,0.0 +14416,49,20,7,0.0 +14416,67,14,17,0.0 +14416,3,10,41,0.0 +14416,19,9.2,41,0.0 +14416,24,4.5,37,0.0 +14416,23,9,17,0.0 +14416,10,31,43,0.0 +14416,62,49.3,4,0.0 +14416,25,14,42,0.0 +14416,6,25,32,0.0 +14416,38,263.5,1,0.0 +14416,46,12,15,0.0 +14416,74,10,21,0.0 +14416,1,18,15,0.0 +14416,13,6,43,0.0 +14416,33,2.5,8,0.0 +14416,40,18.4,24,0.0 +14416,57,19.5,47,0.0 +14416,66,17,11,0.0 +14416,31,12.5,34,0.0 +14416,47,9.5,33,0.0 +14416,28,45.6,4,0.0 +14416,43,46,6,0.0 +14416,69,36,23,0.0 +14416,15,15.5,45,0.0 +14416,7,30,23,0.0 +14416,60,34,32,0.0 +14416,14,23.25,22,0.0 +14416,20,81,49,0.0 +14417,7,30,22,0.0 +14417,59,55,27,0.0 +14417,61,28.5,37,0.0 +14417,34,14,46,0.0 +14417,50,16.25,40,0.0 +14417,76,18,35,0.0 +14417,6,25,47,0.0 +14417,5,21.35,23,0.0 +14417,47,9.5,5,0.0 +14417,28,45.6,44,0.0 +14417,65,21.05,47,0.0 +14417,27,43.9,19,0.0 +14417,69,36,45,0.0 +14417,43,46,26,0.0 +14417,17,39,46,0.0 +14417,14,23.25,3,0.0 +14417,16,17.45,37,0.0 +14417,24,4.5,35,0.0 +14417,21,10,42,0.0 +14417,12,38,11,0.0 +14417,42,14,8,0.0 +14417,33,2.5,6,0.0 +14417,32,32,30,0.0 +14417,10,31,13,0.0 +14417,1,18,35,0.0 +14417,66,17,11,0.0 +14417,22,21,29,0.0 +14417,70,15,11,0.0 +14417,44,19.45,2,0.0 +14417,54,7.45,39,0.0 +14417,52,7,26,0.0 +14417,57,19.5,34,0.0 +14417,39,18,42,0.0 +14417,4,22,38,0.0 +14417,51,53,17,0.0 +14417,48,12.75,30,0.0 +14417,37,26,25,0.0 +14417,15,15.5,43,0.0 +14417,46,12,46,0.0 +14417,71,21.5,34,0.0 +14417,20,81,49,0.0 +14417,8,40,18,0.0 +14417,31,12.5,5,0.0 +14417,73,15,6,0.0 +14417,11,21,40,0.0 +14417,64,33.25,40,0.0 +14417,30,25.89,27,0.0 +14417,72,34.8,48,0.0 +14417,60,34,17,0.0 +14417,18,62.5,44,0.0 +14417,3,10,49,0.0 +14417,23,9,27,0.0 +14417,55,24,44,0.0 +14417,35,18,11,0.0 +14417,13,6,6,0.0 +14417,29,123.79,2,0.0 +14417,77,13,44,0.0 +14417,26,31.23,45,0.0 +14417,41,9.65,6,0.0 +14417,68,12.5,31,0.0 +14417,38,263.5,17,0.0 +14417,62,49.3,21,0.0 +14417,36,19,48,0.0 +14417,40,18.4,38,0.0 +14417,53,32.8,36,0.0 +14417,74,10,32,0.0 +14417,67,14,45,0.0 +14417,75,7.75,33,0.0 +14418,34,14,45,0.0 +14418,39,18,47,0.0 +14418,75,7.75,13,0.0 +14418,31,12.5,40,0.0 +14418,57,19.5,4,0.0 +14418,9,97,15,0.0 +14418,2,19,42,0.0 +14418,23,9,18,0.0 +14418,47,9.5,23,0.0 +14418,16,17.45,24,0.0 +14418,74,10,28,0.0 +14418,3,10,44,0.0 +14418,8,40,31,0.0 +14418,46,12,11,0.0 +14418,6,25,29,0.0 +14418,65,21.05,26,0.0 +14418,37,26,50,0.0 +14418,62,49.3,33,0.0 +14418,35,18,7,0.0 +14418,33,2.5,38,0.0 +14418,45,9.5,16,0.0 +14418,29,123.79,29,0.0 +14418,27,43.9,44,0.0 +14418,61,28.5,39,0.0 +14418,13,6,49,0.0 +14418,66,17,28,0.0 +14418,24,4.5,27,0.0 +14418,69,36,25,0.0 +14418,38,263.5,23,0.0 +14418,51,53,16,0.0 +14418,77,13,13,0.0 +14419,37,26,40,0.0 +14419,59,55,1,0.0 +14419,39,18,32,0.0 +14419,40,18.4,9,0.0 +14419,68,12.5,15,0.0 +14419,43,46,13,0.0 +14419,63,43.9,13,0.0 +14419,71,21.5,35,0.0 +14419,52,7,1,0.0 +14419,11,21,12,0.0 +14419,30,25.89,10,0.0 +14419,57,19.5,11,0.0 +14419,58,13.25,22,0.0 +14419,24,4.5,36,0.0 +14419,69,36,40,0.0 +14420,39,18,47,0.0 +14420,51,53,43,0.0 +14420,75,7.75,12,0.0 +14420,26,31.23,38,0.0 +14420,27,43.9,21,0.0 +14420,42,14,23,0.0 +14420,56,38,11,0.0 +14420,9,97,40,0.0 +14420,54,7.45,10,0.0 +14420,13,6,45,0.0 +14420,74,10,18,0.0 +14420,34,14,38,0.0 +14420,2,19,21,0.0 +14420,48,12.75,23,0.0 +14420,31,12.5,2,0.0 +14420,44,19.45,30,0.0 +14420,5,21.35,6,0.0 +14420,60,34,8,0.0 +14420,62,49.3,14,0.0 +14420,64,33.25,22,0.0 +14420,70,15,6,0.0 +14420,46,12,46,0.0 +14420,11,21,42,0.0 +14420,63,43.9,32,0.0 +14420,15,15.5,4,0.0 +14420,29,123.79,38,0.0 +14420,6,25,22,0.0 +14420,37,26,33,0.0 +14420,50,16.25,9,0.0 +14420,53,32.8,33,0.0 +14420,14,23.25,18,0.0 +14420,28,45.6,6,0.0 +14420,55,24,19,0.0 +14420,45,9.5,4,0.0 +14420,30,25.89,43,0.0 +14420,25,14,24,0.0 +14420,68,12.5,41,0.0 +14420,73,15,31,0.0 +14420,20,81,32,0.0 +14420,32,32,39,0.0 +14420,40,18.4,3,0.0 +14420,21,10,38,0.0 +14420,24,4.5,49,0.0 +14420,12,38,19,0.0 +14420,8,40,23,0.0 +14420,58,13.25,43,0.0 +14420,36,19,5,0.0 +14420,23,9,32,0.0 +14420,47,9.5,18,0.0 +14420,67,14,17,0.0 +14420,19,9.2,21,0.0 +14420,65,21.05,33,0.0 +14420,7,30,27,0.0 +14420,18,62.5,35,0.0 +14420,43,46,35,0.0 +14420,71,21.5,7,0.0 +14420,66,17,15,0.0 +14420,72,34.8,41,0.0 +14420,17,39,12,0.0 +14420,57,19.5,50,0.0 +14420,10,31,20,0.0 +14420,49,20,37,0.0 +14420,76,18,7,0.0 +14420,1,18,22,0.0 +14420,16,17.45,22,0.0 +14420,69,36,33,0.0 +14420,33,2.5,12,0.0 +14420,22,21,37,0.0 +14420,59,55,15,0.0 +14420,35,18,13,0.0 +14420,4,22,16,0.0 +14420,52,7,22,0.0 +14420,3,10,39,0.0 +14421,65,21.05,15,0.0 +14421,5,21.35,10,0.0 +14421,55,24,13,0.0 +14421,68,12.5,26,0.0 +14421,4,22,16,0.0 +14421,72,34.8,6,0.0 +14421,51,53,46,0.0 +14421,47,9.5,14,0.0 +14421,35,18,12,0.0 +14421,57,19.5,49,0.0 +14421,41,9.65,20,0.0 +14421,22,21,2,0.0 +14421,18,62.5,35,0.0 +14421,13,6,18,0.0 +14421,48,12.75,22,0.0 +14421,6,25,31,0.0 +14421,11,21,34,0.0 +14422,51,53,47,0.0 +14422,71,21.5,50,0.0 +14422,13,6,2,0.0 +14422,65,21.05,41,0.0 +14422,75,7.75,25,0.0 +14422,54,7.45,45,0.0 +14422,10,31,46,0.0 +14422,24,4.5,33,0.0 +14422,22,21,13,0.0 +14422,50,16.25,45,0.0 +14422,21,10,9,0.0 +14422,77,13,45,0.0 +14422,26,31.23,38,0.0 +14422,6,25,1,0.0 +14422,56,38,47,0.0 +14422,68,12.5,31,0.0 +14422,69,36,13,0.0 +14422,73,15,8,0.0 +14422,1,18,5,0.0 +14422,32,32,8,0.0 +14422,11,21,15,0.0 +14422,41,9.65,1,0.0 +14422,8,40,3,0.0 +14422,7,30,47,0.0 +14422,61,28.5,28,0.0 +14422,36,19,50,0.0 +14422,33,2.5,6,0.0 +14422,25,14,2,0.0 +14422,5,21.35,24,0.0 +14422,52,7,42,0.0 +14422,19,9.2,13,0.0 +14422,57,19.5,47,0.0 +14422,40,18.4,29,0.0 +14422,55,24,10,0.0 +14422,29,123.79,25,0.0 +14422,47,9.5,19,0.0 +14422,35,18,7,0.0 +14422,2,19,10,0.0 +14422,66,17,49,0.0 +14422,20,81,18,0.0 +14422,59,55,11,0.0 +14422,44,19.45,26,0.0 +14422,76,18,32,0.0 +14422,60,34,47,0.0 +14422,3,10,10,0.0 +14422,23,9,29,0.0 +14422,67,14,38,0.0 +14422,48,12.75,27,0.0 +14422,31,12.5,42,0.0 +14422,27,43.9,33,0.0 +14422,30,25.89,29,0.0 +14422,28,45.6,41,0.0 +14422,16,17.45,33,0.0 +14422,34,14,20,0.0 +14422,14,23.25,42,0.0 +14422,72,34.8,7,0.0 +14422,9,97,39,0.0 +14422,58,13.25,33,0.0 +14422,15,15.5,9,0.0 +14423,28,45.6,2,0.0 +14423,45,9.5,27,0.0 +14423,60,34,48,0.0 +14423,36,19,36,0.0 +14423,1,18,14,0.0 +14423,44,19.45,43,0.0 +14423,14,23.25,16,0.0 +14423,71,21.5,26,0.0 +14423,5,21.35,30,0.0 +14423,17,39,12,0.0 +14423,77,13,30,0.0 +14423,39,18,25,0.0 +14423,76,18,47,0.0 +14423,11,21,26,0.0 +14424,40,18.4,36,0.0 +14424,37,26,6,0.0 +14424,38,263.5,46,0.0 +14424,66,17,49,0.0 +14424,43,46,31,0.0 +14424,17,39,35,0.0 +14424,77,13,50,0.0 +14424,25,14,7,0.0 +14424,51,53,41,0.0 +14424,68,12.5,4,0.0 +14424,9,97,14,0.0 +14424,28,45.6,27,0.0 +14424,47,9.5,40,0.0 +14424,5,21.35,34,0.0 +14424,35,18,1,0.0 +14424,55,24,47,0.0 +14424,63,43.9,25,0.0 +14424,13,6,40,0.0 +14424,50,16.25,18,0.0 +14424,3,10,26,0.0 +14424,1,18,2,0.0 +14424,30,25.89,14,0.0 +14424,22,21,13,0.0 +14424,26,31.23,41,0.0 +14424,16,17.45,6,0.0 +14424,46,12,13,0.0 +14424,21,10,9,0.0 +14424,12,38,42,0.0 +14424,6,25,22,0.0 +14424,69,36,31,0.0 +14424,15,15.5,30,0.0 +14424,11,21,2,0.0 +14424,29,123.79,27,0.0 +14424,41,9.65,1,0.0 +14424,48,12.75,22,0.0 +14424,74,10,20,0.0 +14424,24,4.5,5,0.0 +14424,53,32.8,40,0.0 +14424,57,19.5,40,0.0 +14424,27,43.9,36,0.0 +14424,18,62.5,36,0.0 +14424,71,21.5,16,0.0 +14424,7,30,48,0.0 +14424,4,22,50,0.0 +14424,8,40,3,0.0 +14424,14,23.25,10,0.0 +14424,70,15,6,0.0 +14424,73,15,27,0.0 +14424,39,18,9,0.0 +14424,49,20,44,0.0 +14424,52,7,1,0.0 +14424,31,12.5,25,0.0 +14424,64,33.25,45,0.0 +14424,58,13.25,24,0.0 +14424,76,18,17,0.0 +14424,36,19,25,0.0 +14424,42,14,26,0.0 +14424,65,21.05,14,0.0 +14424,2,19,24,0.0 +14424,59,55,42,0.0 +14424,32,32,33,0.0 +14424,75,7.75,16,0.0 +14424,62,49.3,2,0.0 +14424,23,9,47,0.0 +14424,72,34.8,46,0.0 +14424,56,38,23,0.0 +14424,60,34,33,0.0 +14424,44,19.45,40,0.0 +14424,34,14,11,0.0 +14424,61,28.5,45,0.0 +14425,53,32.8,15,0.0 +14425,17,39,27,0.0 +14425,56,38,45,0.0 +14425,8,40,50,0.0 +14425,77,13,46,0.0 +14425,31,12.5,25,0.0 +14425,42,14,30,0.0 +14425,22,21,44,0.0 +14425,12,38,25,0.0 +14425,65,21.05,40,0.0 +14425,58,13.25,43,0.0 +14425,72,34.8,27,0.0 +14425,18,62.5,42,0.0 +14425,57,19.5,45,0.0 +14425,9,97,11,0.0 +14425,20,81,47,0.0 +14425,46,12,12,0.0 +14425,52,7,2,0.0 +14425,26,31.23,34,0.0 +14425,2,19,13,0.0 +14425,38,263.5,50,0.0 +14425,5,21.35,34,0.0 +14425,15,15.5,3,0.0 +14425,19,9.2,23,0.0 +14425,40,18.4,17,0.0 +14425,48,12.75,30,0.0 +14425,16,17.45,11,0.0 +14425,55,24,25,0.0 +14425,68,12.5,14,0.0 +14425,10,31,30,0.0 +14425,60,34,19,0.0 +14425,27,43.9,29,0.0 +14425,69,36,45,0.0 +14425,73,15,8,0.0 +14425,36,19,4,0.0 +14425,62,49.3,7,0.0 +14425,4,22,13,0.0 +14425,11,21,8,0.0 +14425,64,33.25,29,0.0 +14425,1,18,37,0.0 +14425,67,14,3,0.0 +14425,76,18,44,0.0 +14425,7,30,29,0.0 +14425,63,43.9,16,0.0 +14425,50,16.25,22,0.0 +14425,3,10,13,0.0 +14425,32,32,24,0.0 +14425,70,15,44,0.0 +14425,21,10,22,0.0 +14425,47,9.5,9,0.0 +14425,28,45.6,25,0.0 +14425,14,23.25,17,0.0 +14425,54,7.45,9,0.0 +14425,59,55,35,0.0 +14425,6,25,30,0.0 +14425,25,14,32,0.0 +14425,44,19.45,17,0.0 +14425,35,18,30,0.0 +14425,74,10,11,0.0 +14425,43,46,15,0.0 +14425,39,18,20,0.0 +14425,30,25.89,25,0.0 +14425,75,7.75,24,0.0 +14425,34,14,45,0.0 +14425,49,20,41,0.0 +14425,23,9,19,0.0 +14425,29,123.79,48,0.0 +14425,37,26,43,0.0 +14425,71,21.5,37,0.0 +14425,51,53,44,0.0 +14425,41,9.65,34,0.0 +14425,45,9.5,42,0.0 +14425,13,6,6,0.0 +14425,24,4.5,19,0.0 +14425,33,2.5,45,0.0 +14425,61,28.5,28,0.0 +14426,50,16.25,5,0.0 +14426,72,34.8,45,0.0 +14426,68,12.5,44,0.0 +14426,63,43.9,29,0.0 +14426,49,20,13,0.0 +14426,30,25.89,37,0.0 +14426,64,33.25,37,0.0 +14426,66,17,41,0.0 +14426,6,25,2,0.0 +14426,69,36,33,0.0 +14426,32,32,30,0.0 +14426,3,10,13,0.0 +14426,62,49.3,33,0.0 +14426,17,39,15,0.0 +14426,13,6,13,0.0 +14426,15,15.5,15,0.0 +14426,34,14,44,0.0 +14426,40,18.4,34,0.0 +14426,44,19.45,33,0.0 +14426,59,55,39,0.0 +14426,70,15,18,0.0 +14426,36,19,3,0.0 +14426,67,14,24,0.0 +14426,4,22,33,0.0 +14426,53,32.8,3,0.0 +14427,51,53,41,0.0 +14427,5,21.35,37,0.0 +14427,13,6,49,0.0 +14427,30,25.89,29,0.0 +14427,26,31.23,47,0.0 +14427,21,10,8,0.0 +14427,6,25,33,0.0 +14427,77,13,20,0.0 +14427,44,19.45,2,0.0 +14427,59,55,41,0.0 +14427,7,30,38,0.0 +14427,8,40,26,0.0 +14427,42,14,25,0.0 +14427,39,18,17,0.0 +14427,9,97,28,0.0 +14427,41,9.65,22,0.0 +14427,28,45.6,43,0.0 +14427,73,15,49,0.0 +14427,19,9.2,4,0.0 +14427,52,7,4,0.0 +14427,54,7.45,2,0.0 +14427,37,26,50,0.0 +14427,25,14,40,0.0 +14427,69,36,20,0.0 +14427,38,263.5,20,0.0 +14427,68,12.5,25,0.0 +14427,63,43.9,48,0.0 +14427,22,21,15,0.0 +14427,11,21,30,0.0 +14427,24,4.5,8,0.0 +14427,10,31,21,0.0 +14427,36,19,14,0.0 +14427,16,17.45,44,0.0 +14427,3,10,37,0.0 +14427,67,14,15,0.0 +14427,56,38,40,0.0 +14427,20,81,29,0.0 +14427,65,21.05,4,0.0 +14427,50,16.25,23,0.0 +14427,76,18,27,0.0 +14427,2,19,2,0.0 +14427,17,39,45,0.0 +14427,43,46,13,0.0 +14427,15,15.5,37,0.0 +14427,40,18.4,18,0.0 +14427,66,17,20,0.0 +14427,32,32,40,0.0 +14427,70,15,24,0.0 +14427,4,22,11,0.0 +14427,23,9,20,0.0 +14427,60,34,12,0.0 +14427,53,32.8,17,0.0 +14427,61,28.5,43,0.0 +14427,45,9.5,27,0.0 +14427,46,12,10,0.0 +14427,71,21.5,1,0.0 +14427,14,23.25,32,0.0 +14427,75,7.75,13,0.0 +14427,58,13.25,36,0.0 +14427,18,62.5,19,0.0 +14428,18,62.5,31,0.0 +14428,60,34,13,0.0 +14428,57,19.5,21,0.0 +14428,61,28.5,15,0.0 +14428,38,263.5,35,0.0 +14428,73,15,2,0.0 +14429,45,9.5,16,0.0 +14429,32,32,29,0.0 +14429,73,15,36,0.0 +14429,60,34,35,0.0 +14429,7,30,29,0.0 +14429,47,9.5,43,0.0 +14429,66,17,26,0.0 +14429,72,34.8,17,0.0 +14429,61,28.5,45,0.0 +14429,46,12,43,0.0 +14429,54,7.45,26,0.0 +14429,71,21.5,13,0.0 +14429,20,81,12,0.0 +14429,70,15,45,0.0 +14429,41,9.65,29,0.0 +14429,15,15.5,14,0.0 +14429,5,21.35,50,0.0 +14429,30,25.89,8,0.0 +14429,76,18,37,0.0 +14429,26,31.23,40,0.0 +14429,67,14,3,0.0 +14429,62,49.3,28,0.0 +14429,75,7.75,2,0.0 +14429,23,9,16,0.0 +14429,1,18,40,0.0 +14429,63,43.9,26,0.0 +14429,6,25,30,0.0 +14429,64,33.25,16,0.0 +14429,2,19,3,0.0 +14429,19,9.2,37,0.0 +14429,12,38,34,0.0 +14429,39,18,5,0.0 +14429,13,6,38,0.0 +14429,52,7,27,0.0 +14430,22,21,31,0.0 +14430,56,38,25,0.0 +14430,6,25,7,0.0 +14430,76,18,6,0.0 +14430,53,32.8,45,0.0 +14430,58,13.25,40,0.0 +14430,8,40,40,0.0 +14430,34,14,15,0.0 +14430,52,7,44,0.0 +14430,70,15,27,0.0 +14430,15,15.5,6,0.0 +14430,74,10,37,0.0 +14430,5,21.35,28,0.0 +14430,41,9.65,50,0.0 +14430,23,9,32,0.0 +14430,68,12.5,49,0.0 +14430,36,19,30,0.0 +14430,9,97,8,0.0 +14430,12,38,27,0.0 +14430,4,22,21,0.0 +14430,25,14,48,0.0 +14430,73,15,25,0.0 +14430,49,20,37,0.0 +14430,39,18,45,0.0 +14430,42,14,47,0.0 +14430,26,31.23,49,0.0 +14430,50,16.25,4,0.0 +14430,19,9.2,30,0.0 +14430,72,34.8,44,0.0 +14430,69,36,23,0.0 +14430,7,30,6,0.0 +14430,35,18,18,0.0 +14430,38,263.5,49,0.0 +14430,65,21.05,6,0.0 +14430,21,10,16,0.0 +14430,17,39,13,0.0 +14430,24,4.5,6,0.0 +14430,2,19,6,0.0 +14430,45,9.5,23,0.0 +14430,3,10,23,0.0 +14431,14,23.25,16,0.0 +14431,36,19,34,0.0 +14431,57,19.5,26,0.0 +14431,76,18,24,0.0 +14431,6,25,3,0.0 +14431,12,38,39,0.0 +14431,56,38,23,0.0 +14431,9,97,43,0.0 +14431,35,18,5,0.0 +14431,41,9.65,15,0.0 +14431,75,7.75,39,0.0 +14431,38,263.5,16,0.0 +14431,20,81,26,0.0 +14431,66,17,1,0.0 +14431,42,14,9,0.0 +14431,4,22,42,0.0 +14431,8,40,39,0.0 +14431,43,46,1,0.0 +14431,55,24,18,0.0 +14431,39,18,43,0.0 +14431,40,18.4,20,0.0 +14431,15,15.5,40,0.0 +14431,2,19,28,0.0 +14431,18,62.5,17,0.0 +14431,27,43.9,49,0.0 +14431,71,21.5,43,0.0 +14431,69,36,25,0.0 +14431,28,45.6,32,0.0 +14431,59,55,32,0.0 +14431,70,15,1,0.0 +14431,68,12.5,6,0.0 +14431,33,2.5,14,0.0 +14431,1,18,19,0.0 +14432,60,34,9,0.0 +14432,24,4.5,9,0.0 +14432,13,6,24,0.0 +14432,39,18,9,0.0 +14432,46,12,26,0.0 +14432,74,10,1,0.0 +14432,64,33.25,22,0.0 +14432,58,13.25,39,0.0 +14432,14,23.25,31,0.0 +14432,8,40,47,0.0 +14432,61,28.5,36,0.0 +14432,12,38,21,0.0 +14432,32,32,2,0.0 +14432,10,31,13,0.0 +14432,59,55,28,0.0 +14432,40,18.4,42,0.0 +14432,16,17.45,35,0.0 +14432,27,43.9,39,0.0 +14432,51,53,13,0.0 +14432,21,10,28,0.0 +14432,41,9.65,47,0.0 +14432,6,25,45,0.0 +14432,23,9,46,0.0 +14432,19,9.2,14,0.0 +14432,54,7.45,22,0.0 +14432,11,21,29,0.0 +14432,17,39,22,0.0 +14432,42,14,3,0.0 +14432,37,26,11,0.0 +14432,26,31.23,22,0.0 +14432,49,20,40,0.0 +14432,52,7,42,0.0 +14432,44,19.45,27,0.0 +14432,76,18,3,0.0 +14432,15,15.5,24,0.0 +14432,22,21,27,0.0 +14432,4,22,22,0.0 +14432,29,123.79,33,0.0 +14432,50,16.25,39,0.0 +14432,43,46,32,0.0 +14432,57,19.5,12,0.0 +14432,1,18,29,0.0 +14432,70,15,18,0.0 +14432,69,36,17,0.0 +14432,56,38,29,0.0 +14432,66,17,18,0.0 +14432,47,9.5,35,0.0 +14432,3,10,27,0.0 +14432,7,30,35,0.0 +14432,65,21.05,21,0.0 +14432,2,19,3,0.0 +14432,28,45.6,6,0.0 +14432,75,7.75,36,0.0 +14432,72,34.8,41,0.0 +14432,67,14,31,0.0 +14432,33,2.5,37,0.0 +14432,5,21.35,42,0.0 +14432,77,13,14,0.0 +14432,63,43.9,25,0.0 +14432,38,263.5,29,0.0 +14432,53,32.8,33,0.0 +14432,71,21.5,15,0.0 +14433,43,46,39,0.0 +14433,25,14,22,0.0 +14433,35,18,44,0.0 +14433,53,32.8,13,0.0 +14433,38,263.5,19,0.0 +14433,66,17,27,0.0 +14433,11,21,48,0.0 +14433,30,25.89,5,0.0 +14433,7,30,23,0.0 +14433,1,18,18,0.0 +14433,28,45.6,25,0.0 +14433,75,7.75,24,0.0 +14433,10,31,37,0.0 +14433,61,28.5,23,0.0 +14433,65,21.05,26,0.0 +14433,12,38,10,0.0 +14433,49,20,29,0.0 +14433,68,12.5,42,0.0 +14433,55,24,46,0.0 +14433,24,4.5,18,0.0 +14433,2,19,24,0.0 +14433,74,10,40,0.0 +14433,70,15,27,0.0 +14433,17,39,38,0.0 +14433,60,34,42,0.0 +14433,69,36,7,0.0 +14433,32,32,43,0.0 +14433,40,18.4,38,0.0 +14433,19,9.2,46,0.0 +14433,8,40,24,0.0 +14433,36,19,29,0.0 +14433,77,13,7,0.0 +14433,29,123.79,36,0.0 +14433,56,38,16,0.0 +14433,48,12.75,16,0.0 +14433,67,14,7,0.0 +14433,63,43.9,16,0.0 +14433,59,55,14,0.0 +14433,45,9.5,2,0.0 +14433,46,12,15,0.0 +14433,27,43.9,38,0.0 +14433,54,7.45,35,0.0 +14433,14,23.25,27,0.0 +14433,16,17.45,5,0.0 +14433,23,9,15,0.0 +14433,6,25,9,0.0 +14433,41,9.65,9,0.0 +14433,3,10,32,0.0 +14433,73,15,18,0.0 +14433,64,33.25,44,0.0 +14434,32,32,21,0.0 +14434,62,49.3,19,0.0 +14434,39,18,27,0.0 +14434,31,12.5,33,0.0 +14434,33,2.5,4,0.0 +14434,67,14,8,0.0 +14434,7,30,31,0.0 +14434,50,16.25,40,0.0 +14434,24,4.5,38,0.0 +14434,6,25,38,0.0 +14434,21,10,33,0.0 +14434,59,55,34,0.0 +14435,6,25,32,0.0 +14435,13,6,14,0.0 +14435,18,62.5,43,0.0 +14435,34,14,39,0.0 +14435,14,23.25,8,0.0 +14435,2,19,36,0.0 +14435,7,30,42,0.0 +14435,49,20,45,0.0 +14435,43,46,36,0.0 +14435,5,21.35,22,0.0 +14435,16,17.45,33,0.0 +14435,29,123.79,28,0.0 +14435,50,16.25,6,0.0 +14435,35,18,19,0.0 +14435,41,9.65,29,0.0 +14435,44,19.45,33,0.0 +14436,48,12.75,46,0.0 +14436,6,25,12,0.0 +14436,3,10,42,0.0 +14436,44,19.45,36,0.0 +14436,41,9.65,36,0.0 +14436,40,18.4,26,0.0 +14436,49,20,43,0.0 +14436,69,36,29,0.0 +14436,16,17.45,43,0.0 +14436,14,23.25,11,0.0 +14436,51,53,50,0.0 +14436,77,13,29,0.0 +14436,1,18,28,0.0 +14436,71,21.5,46,0.0 +14436,67,14,8,0.0 +14436,19,9.2,23,0.0 +14436,27,43.9,36,0.0 +14436,50,16.25,48,0.0 +14436,31,12.5,38,0.0 +14436,36,19,42,0.0 +14436,38,263.5,26,0.0 +14436,21,10,41,0.0 +14436,13,6,2,0.0 +14436,2,19,42,0.0 +14436,66,17,24,0.0 +14436,61,28.5,29,0.0 +14436,17,39,13,0.0 +14436,53,32.8,42,0.0 +14436,58,13.25,25,0.0 +14436,74,10,37,0.0 +14436,37,26,28,0.0 +14436,42,14,21,0.0 +14437,61,28.5,9,0.0 +14437,13,6,15,0.0 +14437,70,15,21,0.0 +14437,28,45.6,33,0.0 +14438,73,15,10,0.0 +14438,41,9.65,23,0.0 +14438,26,31.23,29,0.0 +14438,28,45.6,36,0.0 +14438,71,21.5,7,0.0 +14438,42,14,5,0.0 +14438,27,43.9,47,0.0 +14438,46,12,15,0.0 +14438,49,20,27,0.0 +14438,30,25.89,41,0.0 +14438,61,28.5,28,0.0 +14438,35,18,36,0.0 +14438,12,38,46,0.0 +14438,32,32,34,0.0 +14438,67,14,17,0.0 +14438,52,7,39,0.0 +14438,24,4.5,11,0.0 +14438,51,53,9,0.0 +14438,29,123.79,4,0.0 +14438,47,9.5,46,0.0 +14438,8,40,20,0.0 +14438,60,34,1,0.0 +14438,54,7.45,18,0.0 +14438,36,19,1,0.0 +14438,4,22,9,0.0 +14438,40,18.4,25,0.0 +14438,58,13.25,10,0.0 +14438,65,21.05,21,0.0 +14438,19,9.2,33,0.0 +14438,63,43.9,12,0.0 +14438,72,34.8,4,0.0 +14438,70,15,4,0.0 +14438,64,33.25,15,0.0 +14438,20,81,18,0.0 +14438,11,21,34,0.0 +14438,31,12.5,46,0.0 +14438,17,39,33,0.0 +14438,68,12.5,43,0.0 +14438,18,62.5,31,0.0 +14438,75,7.75,2,0.0 +14438,15,15.5,13,0.0 +14438,66,17,12,0.0 +14438,33,2.5,4,0.0 +14438,74,10,49,0.0 +14438,76,18,36,0.0 +14438,37,26,21,0.0 +14438,1,18,20,0.0 +14438,9,97,37,0.0 +14438,55,24,7,0.0 +14438,50,16.25,30,0.0 +14438,77,13,49,0.0 +14438,7,30,43,0.0 +14438,39,18,36,0.0 +14438,16,17.45,18,0.0 +14438,62,49.3,21,0.0 +14438,34,14,16,0.0 +14438,57,19.5,18,0.0 +14438,25,14,44,0.0 +14438,2,19,32,0.0 +14439,71,21.5,13,0.0 +14439,77,13,35,0.0 +14439,47,9.5,22,0.0 +14439,22,21,8,0.0 +14439,73,15,49,0.0 +14439,2,19,33,0.0 +14439,61,28.5,8,0.0 +14439,29,123.79,33,0.0 +14439,18,62.5,7,0.0 +14439,8,40,48,0.0 +14439,51,53,20,0.0 +14439,36,19,47,0.0 +14439,48,12.75,36,0.0 +14439,16,17.45,6,0.0 +14439,41,9.65,23,0.0 +14439,4,22,31,0.0 +14439,37,26,18,0.0 +14439,9,97,33,0.0 +14439,66,17,41,0.0 +14439,30,25.89,10,0.0 +14439,27,43.9,28,0.0 +14439,40,18.4,14,0.0 +14439,58,13.25,7,0.0 +14439,39,18,2,0.0 +14439,56,38,43,0.0 +14439,67,14,24,0.0 +14439,74,10,20,0.0 +14439,52,7,9,0.0 +14439,32,32,16,0.0 +14439,5,21.35,41,0.0 +14439,49,20,42,0.0 +14439,59,55,36,0.0 +14439,63,43.9,45,0.0 +14439,44,19.45,46,0.0 +14439,31,12.5,19,0.0 +14439,72,34.8,13,0.0 +14439,7,30,8,0.0 +14439,70,15,5,0.0 +14439,33,2.5,37,0.0 +14439,42,14,7,0.0 +14439,53,32.8,49,0.0 +14439,12,38,38,0.0 +14439,64,33.25,7,0.0 +14439,38,263.5,32,0.0 +14439,28,45.6,33,0.0 +14439,26,31.23,18,0.0 +14439,14,23.25,7,0.0 +14439,65,21.05,35,0.0 +14439,11,21,26,0.0 +14439,17,39,37,0.0 +14439,35,18,35,0.0 +14439,23,9,28,0.0 +14439,62,49.3,43,0.0 +14440,53,32.8,5,0.0 +14440,28,45.6,42,0.0 +14440,17,39,2,0.0 +14440,56,38,33,0.0 +14440,60,34,32,0.0 +14440,31,12.5,7,0.0 +14440,37,26,49,0.0 +14440,20,81,39,0.0 +14440,44,19.45,46,0.0 +14440,42,14,32,0.0 +14440,50,16.25,23,0.0 +14440,70,15,17,0.0 +14440,2,19,18,0.0 +14440,29,123.79,15,0.0 +14440,32,32,11,0.0 +14440,73,15,16,0.0 +14440,6,25,23,0.0 +14440,12,38,43,0.0 +14440,58,13.25,34,0.0 +14440,65,21.05,17,0.0 +14441,47,9.5,18,0.0 +14441,45,9.5,23,0.0 +14441,56,38,17,0.0 +14441,23,9,8,0.0 +14441,74,10,17,0.0 +14441,43,46,15,0.0 +14441,7,30,26,0.0 +14441,41,9.65,15,0.0 +14441,12,38,29,0.0 +14441,32,32,44,0.0 +14442,24,4.5,19,0.0 +14442,49,20,17,0.0 +14442,9,97,9,0.0 +14442,28,45.6,21,0.0 +14442,59,55,19,0.0 +14442,73,15,5,0.0 +14442,11,21,27,0.0 +14442,20,81,21,0.0 +14442,64,33.25,13,0.0 +14442,77,13,7,0.0 +14442,31,12.5,11,0.0 +14442,30,25.89,38,0.0 +14442,8,40,30,0.0 +14442,66,17,35,0.0 +14442,76,18,23,0.0 +14442,55,24,46,0.0 +14442,15,15.5,44,0.0 +14442,74,10,31,0.0 +14442,33,2.5,49,0.0 +14442,32,32,41,0.0 +14442,45,9.5,17,0.0 +14442,40,18.4,32,0.0 +14442,71,21.5,9,0.0 +14442,19,9.2,23,0.0 +14442,56,38,12,0.0 +14442,36,19,4,0.0 +14442,62,49.3,29,0.0 +14442,63,43.9,29,0.0 +14442,5,21.35,15,0.0 +14442,25,14,40,0.0 +14442,53,32.8,5,0.0 +14442,51,53,30,0.0 +14442,16,17.45,26,0.0 +14442,1,18,10,0.0 +14442,48,12.75,30,0.0 +14442,68,12.5,39,0.0 +14442,58,13.25,50,0.0 +14442,50,16.25,18,0.0 +14442,23,9,1,0.0 +14442,6,25,4,0.0 +14442,75,7.75,1,0.0 +14442,34,14,16,0.0 +14442,27,43.9,43,0.0 +14442,39,18,50,0.0 +14442,22,21,4,0.0 +14442,69,36,6,0.0 +14442,13,6,11,0.0 +14442,2,19,4,0.0 +14442,57,19.5,2,0.0 +14442,17,39,31,0.0 +14442,18,62.5,50,0.0 +14442,12,38,48,0.0 +14442,43,46,14,0.0 +14442,14,23.25,31,0.0 +14442,42,14,42,0.0 +14442,60,34,20,0.0 +14442,67,14,11,0.0 +14442,7,30,39,0.0 +14442,44,19.45,36,0.0 +14442,10,31,34,0.0 +14442,21,10,18,0.0 +14442,3,10,5,0.0 +14442,35,18,2,0.0 +14442,52,7,40,0.0 +14442,61,28.5,13,0.0 +14442,65,21.05,13,0.0 +14442,37,26,44,0.0 +14442,29,123.79,13,0.0 +14442,54,7.45,6,0.0 +14442,70,15,48,0.0 +14443,77,13,25,0.0 +14443,14,23.25,4,0.0 +14443,7,30,47,0.0 +14443,10,31,3,0.0 +14443,32,32,22,0.0 +14443,6,25,15,0.0 +14443,48,12.75,44,0.0 +14443,54,7.45,40,0.0 +14443,20,81,17,0.0 +14443,73,15,48,0.0 +14443,25,14,20,0.0 +14443,61,28.5,12,0.0 +14443,51,53,44,0.0 +14443,72,34.8,36,0.0 +14443,4,22,2,0.0 +14443,36,19,22,0.0 +14443,43,46,28,0.0 +14443,60,34,1,0.0 +14443,33,2.5,48,0.0 +14443,9,97,26,0.0 +14443,39,18,42,0.0 +14443,17,39,47,0.0 +14443,55,24,28,0.0 +14443,11,21,20,0.0 +14443,47,9.5,1,0.0 +14444,33,2.5,15,0.0 +14444,30,25.89,15,0.0 +14444,64,33.25,34,0.0 +14444,26,31.23,44,0.0 +14444,9,97,1,0.0 +14444,60,34,17,0.0 +14444,41,9.65,13,0.0 +14444,2,19,30,0.0 +14444,13,6,34,0.0 +14444,55,24,2,0.0 +14444,58,13.25,31,0.0 +14444,3,10,39,0.0 +14444,46,12,45,0.0 +14444,63,43.9,43,0.0 +14444,39,18,15,0.0 +14444,65,21.05,12,0.0 +14444,40,18.4,8,0.0 +14444,18,62.5,34,0.0 +14444,29,123.79,30,0.0 +14444,47,9.5,11,0.0 +14444,59,55,22,0.0 +14444,28,45.6,6,0.0 +14444,72,34.8,45,0.0 +14444,36,19,19,0.0 +14444,4,22,15,0.0 +14444,51,53,17,0.0 +14444,62,49.3,49,0.0 +14444,44,19.45,22,0.0 +14444,16,17.45,11,0.0 +14444,68,12.5,2,0.0 +14444,57,19.5,26,0.0 +14444,49,20,11,0.0 +14444,6,25,28,0.0 +14444,67,14,1,0.0 +14444,32,32,29,0.0 +14444,22,21,37,0.0 +14444,1,18,16,0.0 +14444,50,16.25,33,0.0 +14444,25,14,3,0.0 +14444,7,30,12,0.0 +14444,54,7.45,5,0.0 +14444,37,26,10,0.0 +14444,52,7,47,0.0 +14444,24,4.5,15,0.0 +14444,70,15,13,0.0 +14444,43,46,40,0.0 +14444,74,10,41,0.0 +14444,10,31,39,0.0 +14444,75,7.75,26,0.0 +14444,15,15.5,2,0.0 +14444,5,21.35,42,0.0 +14444,19,9.2,11,0.0 +14444,8,40,18,0.0 +14444,17,39,31,0.0 +14444,12,38,46,0.0 +14444,48,12.75,31,0.0 +14444,11,21,9,0.0 +14444,34,14,32,0.0 +14444,42,14,7,0.0 +14444,35,18,9,0.0 +14444,73,15,35,0.0 +14444,69,36,4,0.0 +14444,31,12.5,30,0.0 +14444,56,38,43,0.0 +14444,27,43.9,15,0.0 +14444,20,81,11,0.0 +14444,53,32.8,48,0.0 +14444,14,23.25,30,0.0 +14444,66,17,2,0.0 +14444,61,28.5,14,0.0 +14444,23,9,2,0.0 +14444,45,9.5,40,0.0 +14445,19,9.2,6,0.0 +14445,73,15,7,0.0 +14445,33,2.5,36,0.0 +14445,70,15,37,0.0 +14445,36,19,11,0.0 +14445,18,62.5,25,0.0 +14445,43,46,25,0.0 +14445,45,9.5,3,0.0 +14445,1,18,8,0.0 +14445,62,49.3,39,0.0 +14445,15,15.5,36,0.0 +14445,2,19,1,0.0 +14445,4,22,7,0.0 +14445,37,26,31,0.0 +14446,44,19.45,38,0.0 +14446,24,4.5,3,0.0 +14446,58,13.25,14,0.0 +14446,60,34,23,0.0 +14446,67,14,25,0.0 +14446,5,21.35,12,0.0 +14446,42,14,12,0.0 +14446,19,9.2,49,0.0 +14446,10,31,5,0.0 +14447,47,9.5,25,0.0 +14447,40,18.4,44,0.0 +14447,37,26,44,0.0 +14447,68,12.5,48,0.0 +14447,16,17.45,47,0.0 +14447,59,55,14,0.0 +14447,56,38,14,0.0 +14447,67,14,1,0.0 +14447,3,10,36,0.0 +14447,48,12.75,29,0.0 +14447,45,9.5,14,0.0 +14447,1,18,43,0.0 +14447,5,21.35,25,0.0 +14447,31,12.5,25,0.0 +14447,52,7,6,0.0 +14447,19,9.2,2,0.0 +14447,18,62.5,20,0.0 +14447,8,40,1,0.0 +14447,20,81,50,0.0 +14447,75,7.75,34,0.0 +14447,54,7.45,10,0.0 +14447,76,18,5,0.0 +14447,15,15.5,25,0.0 +14447,10,31,13,0.0 +14447,29,123.79,20,0.0 +14447,26,31.23,28,0.0 +14447,38,263.5,34,0.0 +14447,58,13.25,21,0.0 +14447,33,2.5,13,0.0 +14447,62,49.3,14,0.0 +14447,28,45.6,37,0.0 +14447,63,43.9,16,0.0 +14447,49,20,43,0.0 +14447,72,34.8,17,0.0 +14447,46,12,14,0.0 +14447,77,13,24,0.0 +14447,71,21.5,46,0.0 +14447,23,9,12,0.0 +14447,66,17,49,0.0 +14447,34,14,26,0.0 +14447,6,25,50,0.0 +14447,41,9.65,47,0.0 +14447,27,43.9,27,0.0 +14447,9,97,2,0.0 +14447,42,14,25,0.0 +14447,36,19,26,0.0 +14447,69,36,8,0.0 +14447,30,25.89,27,0.0 +14447,43,46,20,0.0 +14447,74,10,26,0.0 +14447,70,15,19,0.0 +14447,60,34,42,0.0 +14447,65,21.05,15,0.0 +14447,35,18,49,0.0 +14447,14,23.25,8,0.0 +14447,24,4.5,35,0.0 +14447,11,21,22,0.0 +14447,25,14,9,0.0 +14447,22,21,28,0.0 +14447,64,33.25,14,0.0 +14447,2,19,32,0.0 +14447,17,39,17,0.0 +14447,55,24,29,0.0 +14447,32,32,4,0.0 +14447,51,53,41,0.0 +14447,57,19.5,8,0.0 +14447,44,19.45,41,0.0 +14447,21,10,40,0.0 +14447,4,22,2,0.0 +14447,53,32.8,5,0.0 +14447,61,28.5,39,0.0 +14447,73,15,49,0.0 +14447,7,30,41,0.0 +14447,39,18,41,0.0 +14447,12,38,8,0.0 +14448,46,12,9,0.0 +14448,68,12.5,47,0.0 +14448,53,32.8,15,0.0 +14448,29,123.79,6,0.0 +14448,67,14,4,0.0 +14448,6,25,12,0.0 +14448,33,2.5,45,0.0 +14448,52,7,39,0.0 +14448,4,22,49,0.0 +14448,1,18,36,0.0 +14448,66,17,2,0.0 +14448,56,38,6,0.0 +14448,59,55,42,0.0 +14448,69,36,2,0.0 +14448,73,15,50,0.0 +14448,28,45.6,25,0.0 +14448,26,31.23,22,0.0 +14449,62,49.3,34,0.0 +14450,57,19.5,28,0.0 +14450,35,18,14,0.0 +14450,15,15.5,2,0.0 +14450,45,9.5,44,0.0 +14450,62,49.3,5,0.0 +14450,13,6,23,0.0 +14450,60,34,26,0.0 +14450,69,36,27,0.0 +14450,47,9.5,9,0.0 +14450,19,9.2,35,0.0 +14450,8,40,48,0.0 +14450,63,43.9,45,0.0 +14450,70,15,24,0.0 +14450,76,18,42,0.0 +14450,48,12.75,37,0.0 +14450,39,18,38,0.0 +14450,11,21,50,0.0 +14450,21,10,22,0.0 +14450,49,20,48,0.0 +14450,5,21.35,11,0.0 +14450,54,7.45,33,0.0 +14450,65,21.05,12,0.0 +14450,12,38,42,0.0 +14450,22,21,17,0.0 +14450,32,32,49,0.0 +14450,68,12.5,14,0.0 +14450,34,14,18,0.0 +14450,27,43.9,18,0.0 +14450,4,22,17,0.0 +14450,50,16.25,13,0.0 +14450,10,31,17,0.0 +14450,43,46,12,0.0 +14450,75,7.75,9,0.0 +14450,61,28.5,43,0.0 +14450,28,45.6,40,0.0 +14450,38,263.5,28,0.0 +14450,6,25,32,0.0 +14450,17,39,24,0.0 +14450,74,10,40,0.0 +14450,71,21.5,3,0.0 +14450,30,25.89,1,0.0 +14450,24,4.5,40,0.0 +14450,58,13.25,33,0.0 +14450,3,10,34,0.0 +14450,9,97,35,0.0 +14450,44,19.45,35,0.0 +14450,51,53,29,0.0 +14450,41,9.65,45,0.0 +14450,1,18,32,0.0 +14450,59,55,32,0.0 +14450,67,14,35,0.0 +14450,46,12,28,0.0 +14450,36,19,15,0.0 +14450,29,123.79,2,0.0 +14450,42,14,28,0.0 +14450,14,23.25,4,0.0 +14450,77,13,13,0.0 +14450,40,18.4,39,0.0 +14450,55,24,19,0.0 +14450,2,19,31,0.0 +14450,64,33.25,14,0.0 +14450,33,2.5,15,0.0 +14450,23,9,10,0.0 +14450,26,31.23,49,0.0 +14450,7,30,19,0.0 +14451,34,14,40,0.0 +14451,46,12,6,0.0 +14451,4,22,45,0.0 +14451,40,18.4,27,0.0 +14451,13,6,35,0.0 +14451,69,36,13,0.0 +14451,62,49.3,47,0.0 +14451,1,18,23,0.0 +14451,75,7.75,27,0.0 +14451,21,10,27,0.0 +14451,63,43.9,23,0.0 +14451,65,21.05,46,0.0 +14452,44,19.45,40,0.0 +14452,23,9,33,0.0 +14452,25,14,31,0.0 +14452,56,38,17,0.0 +14452,32,32,3,0.0 +14452,40,18.4,42,0.0 +14452,64,33.25,49,0.0 +14452,77,13,46,0.0 +14452,67,14,31,0.0 +14452,66,17,43,0.0 +14452,41,9.65,38,0.0 +14452,48,12.75,33,0.0 +14452,9,97,40,0.0 +14452,58,13.25,31,0.0 +14452,28,45.6,14,0.0 +14452,35,18,3,0.0 +14452,7,30,36,0.0 +14452,57,19.5,37,0.0 +14452,22,21,6,0.0 +14452,17,39,22,0.0 +14452,5,21.35,20,0.0 +14452,15,15.5,15,0.0 +14452,18,62.5,27,0.0 +14452,10,31,6,0.0 +14452,69,36,22,0.0 +14452,72,34.8,11,0.0 +14452,49,20,3,0.0 +14452,29,123.79,17,0.0 +14452,30,25.89,49,0.0 +14452,27,43.9,1,0.0 +14452,24,4.5,19,0.0 +14452,73,15,40,0.0 +14452,38,263.5,50,0.0 +14452,3,10,15,0.0 +14452,16,17.45,3,0.0 +14452,42,14,47,0.0 +14452,52,7,29,0.0 +14452,65,21.05,44,0.0 +14452,76,18,43,0.0 +14452,26,31.23,26,0.0 +14452,51,53,35,0.0 +14452,12,38,37,0.0 +14452,50,16.25,16,0.0 +14452,60,34,42,0.0 +14452,45,9.5,8,0.0 +14452,61,28.5,16,0.0 +14452,71,21.5,14,0.0 +14452,47,9.5,20,0.0 +14452,21,10,43,0.0 +14452,19,9.2,42,0.0 +14452,20,81,7,0.0 +14452,63,43.9,41,0.0 +14452,54,7.45,42,0.0 +14452,8,40,2,0.0 +14452,2,19,23,0.0 +14452,6,25,6,0.0 +14452,43,46,45,0.0 +14452,59,55,38,0.0 +14452,33,2.5,50,0.0 +14452,55,24,41,0.0 +14452,68,12.5,7,0.0 +14452,75,7.75,6,0.0 +14452,37,26,21,0.0 +14452,11,21,24,0.0 +14452,74,10,35,0.0 +14452,36,19,40,0.0 +14452,70,15,19,0.0 +14452,13,6,8,0.0 +14452,39,18,3,0.0 +14452,46,12,10,0.0 +14452,34,14,44,0.0 +14452,1,18,33,0.0 +14453,68,12.5,40,0.0 +14453,15,15.5,25,0.0 +14453,44,19.45,31,0.0 +14453,66,17,32,0.0 +14453,61,28.5,17,0.0 +14453,21,10,27,0.0 +14453,31,12.5,34,0.0 +14453,34,14,44,0.0 +14453,30,25.89,15,0.0 +14453,39,18,38,0.0 +14453,10,31,29,0.0 +14453,29,123.79,22,0.0 +14453,18,62.5,32,0.0 +14453,37,26,40,0.0 +14453,54,7.45,21,0.0 +14453,67,14,13,0.0 +14453,52,7,48,0.0 +14453,47,9.5,49,0.0 +14453,26,31.23,15,0.0 +14453,25,14,43,0.0 +14453,49,20,10,0.0 +14453,20,81,15,0.0 +14453,45,9.5,31,0.0 +14453,75,7.75,25,0.0 +14453,14,23.25,39,0.0 +14453,60,34,31,0.0 +14453,40,18.4,34,0.0 +14453,72,34.8,48,0.0 +14453,58,13.25,1,0.0 +14453,23,9,11,0.0 +14453,76,18,45,0.0 +14453,12,38,49,0.0 +14453,28,45.6,17,0.0 +14453,77,13,38,0.0 +14453,22,21,21,0.0 +14453,71,21.5,38,0.0 +14453,7,30,41,0.0 +14453,57,19.5,40,0.0 +14453,6,25,38,0.0 +14453,24,4.5,15,0.0 +14453,62,49.3,10,0.0 +14453,48,12.75,47,0.0 +14453,41,9.65,39,0.0 +14453,43,46,9,0.0 +14453,73,15,9,0.0 +14453,50,16.25,16,0.0 +14453,32,32,44,0.0 +14453,55,24,20,0.0 +14453,46,12,39,0.0 +14453,63,43.9,29,0.0 +14453,74,10,37,0.0 +14453,9,97,46,0.0 +14453,13,6,4,0.0 +14453,35,18,44,0.0 +14453,65,21.05,43,0.0 +14453,38,263.5,46,0.0 +14453,59,55,20,0.0 +14453,53,32.8,39,0.0 +14453,70,15,34,0.0 +14453,56,38,6,0.0 +14453,19,9.2,43,0.0 +14453,11,21,28,0.0 +14453,2,19,34,0.0 +14453,5,21.35,17,0.0 +14453,16,17.45,26,0.0 +14454,70,15,10,0.0 +14454,22,21,30,0.0 +14454,43,46,42,0.0 +14454,60,34,26,0.0 +14454,12,38,40,0.0 +14454,66,17,27,0.0 +14454,53,32.8,34,0.0 +14454,39,18,40,0.0 +14454,76,18,19,0.0 +14454,75,7.75,2,0.0 +14454,33,2.5,37,0.0 +14454,27,43.9,19,0.0 +14454,23,9,34,0.0 +14454,42,14,39,0.0 +14454,8,40,25,0.0 +14454,57,19.5,4,0.0 +14454,24,4.5,33,0.0 +14454,55,24,43,0.0 +14454,61,28.5,19,0.0 +14454,65,21.05,9,0.0 +14454,37,26,49,0.0 +14454,51,53,17,0.0 +14454,47,9.5,40,0.0 +14454,67,14,3,0.0 +14454,74,10,34,0.0 +14454,50,16.25,21,0.0 +14454,17,39,45,0.0 +14454,15,15.5,2,0.0 +14454,2,19,36,0.0 +14454,25,14,33,0.0 +14454,1,18,13,0.0 +14454,71,21.5,49,0.0 +14454,56,38,9,0.0 +14454,29,123.79,14,0.0 +14454,59,55,8,0.0 +14454,44,19.45,22,0.0 +14454,49,20,23,0.0 +14454,16,17.45,9,0.0 +14454,13,6,43,0.0 +14454,48,12.75,18,0.0 +14455,26,31.23,10,0.0 +14455,69,36,2,0.0 +14455,2,19,29,0.0 +14455,49,20,23,0.0 +14455,48,12.75,43,0.0 +14455,70,15,9,0.0 +14455,77,13,36,0.0 +14455,64,33.25,7,0.0 +14455,4,22,5,0.0 +14455,55,24,36,0.0 +14455,21,10,12,0.0 +14455,24,4.5,1,0.0 +14455,13,6,1,0.0 +14455,73,15,25,0.0 +14455,32,32,34,0.0 +14455,51,53,18,0.0 +14455,29,123.79,11,0.0 +14455,61,28.5,48,0.0 +14455,50,16.25,36,0.0 +14455,22,21,26,0.0 +14455,40,18.4,25,0.0 +14455,71,21.5,27,0.0 +14455,45,9.5,14,0.0 +14455,58,13.25,43,0.0 +14455,11,21,39,0.0 +14455,30,25.89,33,0.0 +14455,57,19.5,25,0.0 +14455,3,10,8,0.0 +14455,76,18,25,0.0 +14455,36,19,46,0.0 +14455,47,9.5,46,0.0 +14455,28,45.6,8,0.0 +14455,44,19.45,36,0.0 +14455,14,23.25,10,0.0 +14455,74,10,28,0.0 +14455,9,97,47,0.0 +14455,52,7,13,0.0 +14455,42,14,35,0.0 +14455,31,12.5,18,0.0 +14455,23,9,11,0.0 +14455,34,14,23,0.0 +14455,66,17,49,0.0 +14455,54,7.45,18,0.0 +14455,33,2.5,29,0.0 +14455,63,43.9,27,0.0 +14455,62,49.3,45,0.0 +14455,72,34.8,11,0.0 +14455,39,18,1,0.0 +14455,15,15.5,45,0.0 +14455,18,62.5,36,0.0 +14455,27,43.9,11,0.0 +14455,37,26,28,0.0 +14455,38,263.5,36,0.0 +14455,6,25,5,0.0 +14455,5,21.35,28,0.0 +14455,17,39,24,0.0 +14455,68,12.5,42,0.0 +14455,56,38,49,0.0 +14456,36,19,9,0.0 +14456,7,30,11,0.0 +14456,62,49.3,32,0.0 +14456,31,12.5,10,0.0 +14456,1,18,38,0.0 +14456,35,18,39,0.0 +14456,63,43.9,43,0.0 +14456,12,38,44,0.0 +14456,21,10,48,0.0 +14456,60,34,30,0.0 +14456,45,9.5,20,0.0 +14456,23,9,12,0.0 +14456,18,62.5,20,0.0 +14456,30,25.89,45,0.0 +14456,58,13.25,5,0.0 +14456,68,12.5,32,0.0 +14456,66,17,35,0.0 +14456,20,81,24,0.0 +14456,54,7.45,15,0.0 +14456,64,33.25,11,0.0 +14456,2,19,17,0.0 +14456,76,18,33,0.0 +14456,3,10,9,0.0 +14456,27,43.9,34,0.0 +14456,39,18,40,0.0 +14456,33,2.5,32,0.0 +14456,72,34.8,41,0.0 +14456,56,38,28,0.0 +14456,15,15.5,7,0.0 +14456,4,22,15,0.0 +14456,74,10,48,0.0 +14456,70,15,34,0.0 +14456,75,7.75,48,0.0 +14456,8,40,6,0.0 +14456,41,9.65,35,0.0 +14456,6,25,29,0.0 +14456,51,53,3,0.0 +14456,61,28.5,21,0.0 +14456,25,14,20,0.0 +14456,52,7,36,0.0 +14456,67,14,43,0.0 +14456,17,39,48,0.0 +14456,28,45.6,38,0.0 +14456,49,20,23,0.0 +14456,47,9.5,25,0.0 +14456,11,21,16,0.0 +14456,16,17.45,16,0.0 +14456,37,26,32,0.0 +14456,40,18.4,10,0.0 +14456,53,32.8,42,0.0 +14456,29,123.79,29,0.0 +14456,65,21.05,14,0.0 +14456,26,31.23,19,0.0 +14456,22,21,10,0.0 +14456,14,23.25,17,0.0 +14456,55,24,1,0.0 +14456,42,14,17,0.0 +14456,19,9.2,43,0.0 +14456,46,12,13,0.0 +14456,57,19.5,13,0.0 +14456,59,55,29,0.0 +14456,9,97,2,0.0 +14456,44,19.45,4,0.0 +14456,48,12.75,3,0.0 +14456,69,36,30,0.0 +14456,43,46,46,0.0 +14456,10,31,49,0.0 +14457,43,46,8,0.0 +14457,64,33.25,7,0.0 +14457,3,10,50,0.0 +14457,46,12,47,0.0 +14457,35,18,31,0.0 +14457,24,4.5,37,0.0 +14457,67,14,21,0.0 +14457,44,19.45,6,0.0 +14457,68,12.5,32,0.0 +14457,45,9.5,1,0.0 +14457,38,263.5,45,0.0 +14457,27,43.9,14,0.0 +14457,11,21,32,0.0 +14457,65,21.05,18,0.0 +14457,12,38,1,0.0 +14457,22,21,34,0.0 +14457,50,16.25,34,0.0 +14457,9,97,7,0.0 +14457,1,18,30,0.0 +14457,10,31,34,0.0 +14457,66,17,28,0.0 +14457,17,39,2,0.0 +14457,19,9.2,42,0.0 +14457,39,18,22,0.0 +14457,73,15,46,0.0 +14457,55,24,42,0.0 +14458,7,30,27,0.0 +14458,36,19,4,0.0 +14458,57,19.5,35,0.0 +14458,26,31.23,46,0.0 +14458,24,4.5,50,0.0 +14458,54,7.45,12,0.0 +14458,45,9.5,46,0.0 +14458,49,20,17,0.0 +14458,63,43.9,46,0.0 +14458,68,12.5,10,0.0 +14458,10,31,49,0.0 +14458,5,21.35,4,0.0 +14458,39,18,29,0.0 +14458,62,49.3,1,0.0 +14458,17,39,44,0.0 +14458,56,38,11,0.0 +14458,34,14,29,0.0 +14458,77,13,16,0.0 +14458,29,123.79,22,0.0 +14458,76,18,2,0.0 +14458,31,12.5,25,0.0 +14458,1,18,19,0.0 +14458,41,9.65,20,0.0 +14458,37,26,48,0.0 +14459,14,23.25,15,0.0 +14459,42,14,25,0.0 +14459,33,2.5,6,0.0 +14459,60,34,19,0.0 +14459,68,12.5,4,0.0 +14459,26,31.23,34,0.0 +14459,52,7,50,0.0 +14459,72,34.8,19,0.0 +14459,51,53,15,0.0 +14459,4,22,8,0.0 +14459,45,9.5,7,0.0 +14459,13,6,23,0.0 +14459,40,18.4,26,0.0 +14459,58,13.25,49,0.0 +14459,66,17,33,0.0 +14459,44,19.45,4,0.0 +14459,43,46,18,0.0 +14459,76,18,38,0.0 +14459,57,19.5,2,0.0 +14459,22,21,5,0.0 +14459,65,21.05,9,0.0 +14459,56,38,9,0.0 +14459,2,19,10,0.0 +14459,9,97,44,0.0 +14459,71,21.5,49,0.0 +14459,41,9.65,38,0.0 +14459,59,55,10,0.0 +14459,36,19,4,0.0 +14459,20,81,44,0.0 +14459,39,18,12,0.0 +14459,74,10,9,0.0 +14459,8,40,50,0.0 +14459,34,14,16,0.0 +14459,70,15,43,0.0 +14459,35,18,49,0.0 +14459,5,21.35,31,0.0 +14459,15,15.5,39,0.0 +14459,3,10,13,0.0 +14459,25,14,13,0.0 +14459,32,32,37,0.0 +14459,17,39,26,0.0 +14459,75,7.75,17,0.0 +14459,27,43.9,38,0.0 +14459,63,43.9,49,0.0 +14459,24,4.5,41,0.0 +14459,64,33.25,2,0.0 +14459,61,28.5,20,0.0 +14459,18,62.5,2,0.0 +14459,10,31,11,0.0 +14459,77,13,40,0.0 +14459,29,123.79,15,0.0 +14459,50,16.25,39,0.0 +14459,11,21,45,0.0 +14459,21,10,33,0.0 +14459,12,38,7,0.0 +14459,46,12,31,0.0 +14459,49,20,43,0.0 +14459,54,7.45,17,0.0 +14459,1,18,42,0.0 +14459,6,25,21,0.0 +14459,30,25.89,30,0.0 +14459,37,26,2,0.0 +14459,7,30,38,0.0 +14459,31,12.5,30,0.0 +14459,67,14,47,0.0 +14459,73,15,6,0.0 +14459,48,12.75,18,0.0 +14459,38,263.5,38,0.0 +14459,19,9.2,30,0.0 +14459,55,24,36,0.0 +14459,53,32.8,17,0.0 +14459,62,49.3,25,0.0 +14459,28,45.6,46,0.0 +14459,69,36,47,0.0 +14460,5,21.35,42,0.0 +14460,11,21,17,0.0 +14460,73,15,2,0.0 +14460,46,12,45,0.0 +14460,37,26,22,0.0 +14460,52,7,41,0.0 +14460,7,30,45,0.0 +14460,58,13.25,31,0.0 +14460,56,38,10,0.0 +14460,21,10,25,0.0 +14460,71,21.5,37,0.0 +14460,59,55,38,0.0 +14460,33,2.5,37,0.0 +14460,9,97,13,0.0 +14460,51,53,30,0.0 +14460,36,19,1,0.0 +14460,26,31.23,24,0.0 +14460,32,32,2,0.0 +14460,6,25,14,0.0 +14460,74,10,12,0.0 +14461,21,10,30,0.0 +14461,74,10,29,0.0 +14461,73,15,41,0.0 +14461,24,4.5,43,0.0 +14461,61,28.5,36,0.0 +14461,49,20,48,0.0 +14461,6,25,46,0.0 +14461,58,13.25,39,0.0 +14462,27,43.9,18,0.0 +14462,4,22,35,0.0 +14462,58,13.25,22,0.0 +14462,56,38,14,0.0 +14462,16,17.45,1,0.0 +14462,70,15,25,0.0 +14462,49,20,24,0.0 +14462,35,18,15,0.0 +14462,77,13,16,0.0 +14462,57,19.5,37,0.0 +14462,22,21,7,0.0 +14462,39,18,13,0.0 +14462,47,9.5,50,0.0 +14462,29,123.79,25,0.0 +14462,31,12.5,6,0.0 +14462,45,9.5,1,0.0 +14462,10,31,49,0.0 +14462,7,30,16,0.0 +14462,28,45.6,49,0.0 +14462,32,32,15,0.0 +14462,25,14,2,0.0 +14462,66,17,43,0.0 +14462,40,18.4,49,0.0 +14462,8,40,30,0.0 +14462,42,14,41,0.0 +14462,12,38,47,0.0 +14462,17,39,43,0.0 +14462,5,21.35,44,0.0 +14462,15,15.5,7,0.0 +14462,43,46,46,0.0 +14462,34,14,26,0.0 +14462,71,21.5,27,0.0 +14462,65,21.05,45,0.0 +14462,64,33.25,38,0.0 +14462,48,12.75,49,0.0 +14462,9,97,43,0.0 +14462,52,7,43,0.0 +14462,14,23.25,10,0.0 +14462,62,49.3,48,0.0 +14462,72,34.8,11,0.0 +14462,11,21,3,0.0 +14462,59,55,26,0.0 +14462,53,32.8,7,0.0 +14462,69,36,19,0.0 +14462,23,9,33,0.0 +14462,73,15,39,0.0 +14462,13,6,5,0.0 +14462,68,12.5,26,0.0 +14462,3,10,45,0.0 +14462,61,28.5,24,0.0 +14462,37,26,9,0.0 +14462,60,34,26,0.0 +14462,46,12,5,0.0 +14462,67,14,19,0.0 +14462,2,19,8,0.0 +14462,6,25,9,0.0 +14462,55,24,23,0.0 +14462,21,10,35,0.0 +14462,20,81,11,0.0 +14462,33,2.5,44,0.0 +14462,38,263.5,33,0.0 +14462,75,7.75,8,0.0 +14462,1,18,29,0.0 +14462,41,9.65,50,0.0 +14462,36,19,12,0.0 +14462,44,19.45,30,0.0 +14462,18,62.5,14,0.0 +14462,63,43.9,28,0.0 +14462,76,18,42,0.0 +14463,47,9.5,6,0.0 +14463,22,21,28,0.0 +14463,30,25.89,1,0.0 +14463,6,25,41,0.0 +14463,59,55,19,0.0 +14463,66,17,3,0.0 +14463,46,12,1,0.0 +14463,18,62.5,39,0.0 +14463,48,12.75,1,0.0 +14463,64,33.25,27,0.0 +14463,3,10,32,0.0 +14463,49,20,15,0.0 +14463,32,32,46,0.0 +14463,77,13,9,0.0 +14463,25,14,50,0.0 +14463,56,38,29,0.0 +14463,58,13.25,46,0.0 +14463,62,49.3,48,0.0 +14463,54,7.45,32,0.0 +14463,21,10,1,0.0 +14463,70,15,41,0.0 +14463,35,18,6,0.0 +14463,14,23.25,31,0.0 +14463,43,46,48,0.0 +14463,26,31.23,10,0.0 +14463,71,21.5,38,0.0 +14463,31,12.5,46,0.0 +14463,76,18,23,0.0 +14463,63,43.9,17,0.0 +14463,11,21,49,0.0 +14463,36,19,27,0.0 +14463,73,15,3,0.0 +14464,8,40,46,0.0 +14464,25,14,9,0.0 +14464,72,34.8,11,0.0 +14464,45,9.5,27,0.0 +14464,16,17.45,20,0.0 +14464,71,21.5,22,0.0 +14464,26,31.23,31,0.0 +14464,58,13.25,22,0.0 +14464,3,10,25,0.0 +14464,24,4.5,38,0.0 +14464,18,62.5,26,0.0 +14464,36,19,43,0.0 +14464,9,97,49,0.0 +14464,23,9,1,0.0 +14464,57,19.5,17,0.0 +14464,75,7.75,15,0.0 +14464,61,28.5,30,0.0 +14464,77,13,35,0.0 +14464,66,17,31,0.0 +14464,67,14,25,0.0 +14464,40,18.4,29,0.0 +14464,62,49.3,35,0.0 +14464,68,12.5,22,0.0 +14464,44,19.45,3,0.0 +14464,47,9.5,5,0.0 +14464,5,21.35,39,0.0 +14464,34,14,10,0.0 +14464,70,15,22,0.0 +14464,74,10,11,0.0 +14464,32,32,10,0.0 +14464,14,23.25,20,0.0 +14464,53,32.8,1,0.0 +14465,15,15.5,47,0.0 +14465,27,43.9,13,0.0 +14465,24,4.5,7,0.0 +14465,22,21,31,0.0 +14465,2,19,31,0.0 +14465,28,45.6,27,0.0 +14465,73,15,35,0.0 +14465,43,46,20,0.0 +14465,36,19,32,0.0 +14465,76,18,50,0.0 +14465,59,55,42,0.0 +14465,37,26,16,0.0 +14465,35,18,29,0.0 +14465,55,24,10,0.0 +14465,42,14,23,0.0 +14465,50,16.25,50,0.0 +14465,19,9.2,27,0.0 +14465,72,34.8,34,0.0 +14465,20,81,32,0.0 +14465,68,12.5,25,0.0 +14465,67,14,26,0.0 +14465,45,9.5,47,0.0 +14465,4,22,31,0.0 +14466,65,21.05,13,0.0 +14466,32,32,2,0.0 +14466,42,14,40,0.0 +14466,35,18,46,0.0 +14466,7,30,45,0.0 +14466,60,34,6,0.0 +14466,76,18,31,0.0 +14466,41,9.65,39,0.0 +14466,46,12,47,0.0 +14466,40,18.4,15,0.0 +14466,28,45.6,32,0.0 +14466,3,10,37,0.0 +14466,59,55,23,0.0 +14466,73,15,29,0.0 +14466,13,6,45,0.0 +14466,63,43.9,23,0.0 +14466,68,12.5,13,0.0 +14466,64,33.25,46,0.0 +14466,52,7,12,0.0 +14466,24,4.5,4,0.0 +14466,38,263.5,5,0.0 +14466,18,62.5,19,0.0 +14466,33,2.5,34,0.0 +14466,70,15,38,0.0 +14466,22,21,8,0.0 +14466,45,9.5,45,0.0 +14466,69,36,26,0.0 +14466,66,17,12,0.0 +14466,26,31.23,20,0.0 +14466,16,17.45,33,0.0 +14466,36,19,26,0.0 +14466,15,15.5,48,0.0 +14466,19,9.2,7,0.0 +14466,44,19.45,13,0.0 +14466,54,7.45,37,0.0 +14466,71,21.5,29,0.0 +14466,29,123.79,16,0.0 +14466,57,19.5,47,0.0 +14466,30,25.89,35,0.0 +14466,21,10,28,0.0 +14466,11,21,38,0.0 +14466,43,46,20,0.0 +14466,25,14,40,0.0 +14466,1,18,2,0.0 +14466,48,12.75,29,0.0 +14466,27,43.9,16,0.0 +14466,12,38,6,0.0 +14466,50,16.25,6,0.0 +14466,47,9.5,5,0.0 +14466,51,53,36,0.0 +14466,9,97,3,0.0 +14466,72,34.8,2,0.0 +14466,56,38,6,0.0 +14466,23,9,2,0.0 +14466,10,31,28,0.0 +14466,14,23.25,21,0.0 +14466,55,24,18,0.0 +14466,49,20,49,0.0 +14466,6,25,50,0.0 +14466,75,7.75,45,0.0 +14466,31,12.5,9,0.0 +14466,74,10,3,0.0 +14466,8,40,2,0.0 +14466,39,18,31,0.0 +14466,4,22,20,0.0 +14466,37,26,48,0.0 +14466,53,32.8,27,0.0 +14466,5,21.35,12,0.0 +14466,34,14,49,0.0 +14466,58,13.25,9,0.0 +14466,20,81,10,0.0 +14466,77,13,12,0.0 +14466,61,28.5,4,0.0 +14466,67,14,48,0.0 +14466,62,49.3,31,0.0 +14466,2,19,24,0.0 +14467,35,18,17,0.0 +14467,2,19,45,0.0 +14467,38,263.5,46,0.0 +14467,74,10,49,0.0 +14467,45,9.5,15,0.0 +14467,4,22,47,0.0 +14467,50,16.25,49,0.0 +14467,49,20,43,0.0 +14467,18,62.5,43,0.0 +14467,6,25,15,0.0 +14467,75,7.75,48,0.0 +14467,61,28.5,12,0.0 +14467,12,38,41,0.0 +14467,70,15,34,0.0 +14467,52,7,17,0.0 +14467,72,34.8,31,0.0 +14467,26,31.23,22,0.0 +14467,27,43.9,20,0.0 +14467,46,12,28,0.0 +14467,17,39,16,0.0 +14467,21,10,43,0.0 +14467,59,55,7,0.0 +14467,67,14,46,0.0 +14467,40,18.4,18,0.0 +14467,9,97,37,0.0 +14467,23,9,3,0.0 +14467,5,21.35,15,0.0 +14467,47,9.5,8,0.0 +14467,53,32.8,30,0.0 +14467,42,14,38,0.0 +14467,54,7.45,34,0.0 +14467,13,6,43,0.0 +14467,20,81,13,0.0 +14467,76,18,45,0.0 +14467,22,21,22,0.0 +14467,64,33.25,9,0.0 +14467,10,31,31,0.0 +14467,37,26,21,0.0 +14467,65,21.05,20,0.0 +14467,14,23.25,30,0.0 +14467,16,17.45,36,0.0 +14467,60,34,36,0.0 +14467,39,18,17,0.0 +14467,63,43.9,30,0.0 +14467,34,14,7,0.0 +14467,1,18,3,0.0 +14467,73,15,9,0.0 +14467,68,12.5,11,0.0 +14467,62,49.3,44,0.0 +14467,58,13.25,11,0.0 +14467,29,123.79,50,0.0 +14468,28,45.6,18,0.0 +14468,51,53,2,0.0 +14468,36,19,2,0.0 +14468,41,9.65,48,0.0 +14468,38,263.5,35,0.0 +14468,20,81,7,0.0 +14468,3,10,37,0.0 +14468,54,7.45,4,0.0 +14468,7,30,32,0.0 +14468,53,32.8,49,0.0 +14468,50,16.25,29,0.0 +14468,12,38,8,0.0 +14468,75,7.75,13,0.0 +14468,15,15.5,12,0.0 +14468,63,43.9,12,0.0 +14468,25,14,35,0.0 +14468,24,4.5,46,0.0 +14468,68,12.5,19,0.0 +14468,46,12,11,0.0 +14468,55,24,32,0.0 +14468,58,13.25,9,0.0 +14468,44,19.45,26,0.0 +14468,60,34,29,0.0 +14468,61,28.5,27,0.0 +14468,8,40,20,0.0 +14468,64,33.25,33,0.0 +14468,23,9,26,0.0 +14469,28,45.6,43,0.0 +14469,34,14,15,0.0 +14469,77,13,33,0.0 +14469,72,34.8,41,0.0 +14469,76,18,14,0.0 +14469,15,15.5,46,0.0 +14469,64,33.25,3,0.0 +14469,42,14,27,0.0 +14469,1,18,19,0.0 +14469,49,20,29,0.0 +14469,67,14,46,0.0 +14469,48,12.75,46,0.0 +14469,25,14,14,0.0 +14469,52,7,41,0.0 +14469,65,21.05,50,0.0 +14469,60,34,9,0.0 +14469,32,32,12,0.0 +14469,24,4.5,12,0.0 +14469,36,19,9,0.0 +14469,62,49.3,50,0.0 +14469,16,17.45,11,0.0 +14469,39,18,22,0.0 +14469,27,43.9,20,0.0 +14469,11,21,46,0.0 +14469,26,31.23,8,0.0 +14469,47,9.5,46,0.0 +14469,51,53,11,0.0 +14469,8,40,24,0.0 +14469,13,6,25,0.0 +14469,9,97,4,0.0 +14469,38,263.5,29,0.0 +14469,74,10,17,0.0 +14469,53,32.8,11,0.0 +14469,19,9.2,20,0.0 +14469,18,62.5,21,0.0 +14469,70,15,49,0.0 +14469,56,38,2,0.0 +14469,7,30,9,0.0 +14469,4,22,35,0.0 +14469,10,31,36,0.0 +14469,58,13.25,23,0.0 +14470,9,97,37,0.0 +14470,54,7.45,48,0.0 +14470,73,15,32,0.0 +14470,1,18,10,0.0 +14470,51,53,9,0.0 +14470,39,18,9,0.0 +14470,50,16.25,13,0.0 +14470,33,2.5,45,0.0 +14470,46,12,44,0.0 +14470,22,21,49,0.0 +14470,67,14,32,0.0 +14470,60,34,42,0.0 +14470,61,28.5,13,0.0 +14470,21,10,25,0.0 +14470,56,38,24,0.0 +14470,71,21.5,8,0.0 +14470,64,33.25,48,0.0 +14470,13,6,32,0.0 +14470,15,15.5,12,0.0 +14470,58,13.25,17,0.0 +14470,3,10,24,0.0 +14470,12,38,24,0.0 +14470,47,9.5,25,0.0 +14470,19,9.2,36,0.0 +14470,29,123.79,10,0.0 +14470,34,14,19,0.0 +14470,55,24,20,0.0 +14470,76,18,46,0.0 +14470,2,19,4,0.0 +14470,77,13,29,0.0 +14470,17,39,30,0.0 +14470,16,17.45,50,0.0 +14470,37,26,48,0.0 +14470,26,31.23,44,0.0 +14470,57,19.5,47,0.0 +14470,59,55,48,0.0 +14470,53,32.8,50,0.0 +14470,14,23.25,12,0.0 +14470,7,30,27,0.0 +14470,27,43.9,39,0.0 +14470,43,46,28,0.0 +14470,70,15,24,0.0 +14470,5,21.35,27,0.0 +14470,48,12.75,37,0.0 +14470,6,25,43,0.0 +14470,65,21.05,15,0.0 +14470,32,32,19,0.0 +14470,45,9.5,1,0.0 +14470,42,14,38,0.0 +14470,10,31,11,0.0 +14470,68,12.5,28,0.0 +14470,40,18.4,31,0.0 +14470,20,81,16,0.0 +14470,52,7,2,0.0 +14470,30,25.89,11,0.0 +14470,72,34.8,19,0.0 +14470,24,4.5,37,0.0 +14470,28,45.6,7,0.0 +14470,18,62.5,13,0.0 +14470,69,36,22,0.0 +14471,75,7.75,32,0.0 +14471,76,18,50,0.0 +14471,18,62.5,10,0.0 +14471,60,34,35,0.0 +14471,47,9.5,13,0.0 +14471,6,25,43,0.0 +14471,50,16.25,9,0.0 +14471,69,36,7,0.0 +14471,25,14,12,0.0 +14471,68,12.5,12,0.0 +14471,42,14,43,0.0 +14471,8,40,47,0.0 +14471,38,263.5,30,0.0 +14471,2,19,10,0.0 +14471,65,21.05,49,0.0 +14471,5,21.35,35,0.0 +14471,73,15,30,0.0 +14471,16,17.45,45,0.0 +14471,70,15,46,0.0 +14471,71,21.5,14,0.0 +14471,1,18,32,0.0 +14471,53,32.8,27,0.0 +14471,40,18.4,38,0.0 +14471,3,10,26,0.0 +14471,12,38,43,0.0 +14471,41,9.65,6,0.0 +14471,55,24,19,0.0 +14471,36,19,50,0.0 +14471,4,22,49,0.0 +14471,63,43.9,43,0.0 +14471,11,21,40,0.0 +14471,77,13,27,0.0 +14471,66,17,14,0.0 +14471,15,15.5,5,0.0 +14471,32,32,32,0.0 +14471,22,21,3,0.0 +14471,59,55,42,0.0 +14471,44,19.45,40,0.0 +14471,29,123.79,5,0.0 +14471,45,9.5,23,0.0 +14471,10,31,4,0.0 +14471,43,46,2,0.0 +14471,24,4.5,43,0.0 +14471,34,14,45,0.0 +14471,54,7.45,15,0.0 +14471,13,6,29,0.0 +14471,21,10,31,0.0 +14471,46,12,15,0.0 +14471,39,18,14,0.0 +14471,72,34.8,27,0.0 +14472,39,18,49,0.0 +14472,8,40,14,0.0 +14472,9,97,42,0.0 +14472,34,14,19,0.0 +14472,73,15,43,0.0 +14472,6,25,10,0.0 +14472,11,21,13,0.0 +14472,27,43.9,21,0.0 +14472,4,22,22,0.0 +14472,35,18,18,0.0 +14472,61,28.5,43,0.0 +14472,25,14,9,0.0 +14472,48,12.75,45,0.0 +14472,65,21.05,39,0.0 +14472,58,13.25,25,0.0 +14472,52,7,25,0.0 +14472,62,49.3,25,0.0 +14472,24,4.5,43,0.0 +14472,60,34,20,0.0 +14472,16,17.45,2,0.0 +14472,77,13,7,0.0 +14472,30,25.89,46,0.0 +14472,31,12.5,36,0.0 +14472,51,53,36,0.0 +14472,3,10,28,0.0 +14472,55,24,40,0.0 +14472,41,9.65,22,0.0 +14472,14,23.25,31,0.0 +14472,57,19.5,23,0.0 +14472,67,14,10,0.0 +14472,10,31,9,0.0 +14472,47,9.5,35,0.0 +14472,5,21.35,14,0.0 +14472,15,15.5,49,0.0 +14472,29,123.79,36,0.0 +14472,42,14,50,0.0 +14472,46,12,46,0.0 +14472,63,43.9,26,0.0 +14472,40,18.4,7,0.0 +14472,44,19.45,32,0.0 +14472,49,20,13,0.0 +14472,56,38,25,0.0 +14472,23,9,26,0.0 +14472,19,9.2,42,0.0 +14472,72,34.8,22,0.0 +14472,64,33.25,10,0.0 +14472,59,55,13,0.0 +14472,54,7.45,24,0.0 +14472,22,21,17,0.0 +14472,7,30,41,0.0 +14472,66,17,44,0.0 +14472,74,10,18,0.0 +14472,28,45.6,8,0.0 +14472,33,2.5,12,0.0 +14472,32,32,50,0.0 +14472,70,15,14,0.0 +14472,76,18,47,0.0 +14472,18,62.5,44,0.0 +14473,17,39,33,0.0 +14473,29,123.79,48,0.0 +14473,72,34.8,40,0.0 +14473,34,14,46,0.0 +14473,58,13.25,50,0.0 +14473,3,10,19,0.0 +14473,56,38,38,0.0 +14473,67,14,47,0.0 +14473,50,16.25,10,0.0 +14473,38,263.5,44,0.0 +14473,15,15.5,3,0.0 +14473,63,43.9,8,0.0 +14473,26,31.23,42,0.0 +14473,10,31,28,0.0 +14473,8,40,50,0.0 +14473,7,30,1,0.0 +14473,68,12.5,26,0.0 +14473,44,19.45,35,0.0 +14473,75,7.75,38,0.0 +14473,74,10,18,0.0 +14473,76,18,17,0.0 +14473,39,18,25,0.0 +14473,25,14,19,0.0 +14473,21,10,15,0.0 +14473,31,12.5,32,0.0 +14473,4,22,44,0.0 +14473,18,62.5,5,0.0 +14473,35,18,12,0.0 +14473,51,53,46,0.0 +14473,48,12.75,22,0.0 +14473,22,21,8,0.0 +14473,12,38,32,0.0 +14473,14,23.25,37,0.0 +14474,36,19,43,0.0 +14474,39,18,9,0.0 +14474,12,38,45,0.0 +14474,11,21,46,0.0 +14474,63,43.9,15,0.0 +14474,70,15,18,0.0 +14474,18,62.5,13,0.0 +14474,43,46,46,0.0 +14474,9,97,19,0.0 +14474,53,32.8,10,0.0 +14474,19,9.2,25,0.0 +14474,8,40,41,0.0 +14474,23,9,20,0.0 +14474,24,4.5,21,0.0 +14474,66,17,24,0.0 +14474,33,2.5,16,0.0 +14474,55,24,29,0.0 +14474,61,28.5,1,0.0 +14474,27,43.9,40,0.0 +14474,21,10,20,0.0 +14474,15,15.5,43,0.0 +14474,34,14,12,0.0 +14474,17,39,14,0.0 +14474,7,30,44,0.0 +14474,60,34,14,0.0 +14474,59,55,8,0.0 +14474,64,33.25,33,0.0 +14474,1,18,40,0.0 +14474,48,12.75,24,0.0 +14474,20,81,13,0.0 +14474,14,23.25,1,0.0 +14474,6,25,32,0.0 +14474,51,53,22,0.0 +14474,46,12,45,0.0 +14475,6,25,6,0.0 +14475,41,9.65,31,0.0 +14475,59,55,14,0.0 +14475,50,16.25,44,0.0 +14475,10,31,35,0.0 +14475,70,15,16,0.0 +14475,68,12.5,11,0.0 +14475,26,31.23,45,0.0 +14475,40,18.4,30,0.0 +14475,51,53,7,0.0 +14475,71,21.5,27,0.0 +14475,57,19.5,11,0.0 +14475,7,30,30,0.0 +14475,53,32.8,25,0.0 +14475,16,17.45,28,0.0 +14475,38,263.5,34,0.0 +14475,15,15.5,39,0.0 +14475,43,46,10,0.0 +14475,33,2.5,12,0.0 +14475,67,14,11,0.0 +14475,14,23.25,10,0.0 +14475,55,24,48,0.0 +14475,65,21.05,40,0.0 +14475,34,14,2,0.0 +14475,13,6,47,0.0 +14475,56,38,13,0.0 +14475,39,18,9,0.0 +14475,19,9.2,49,0.0 +14475,5,21.35,34,0.0 +14475,28,45.6,42,0.0 +14475,23,9,9,0.0 +14475,61,28.5,33,0.0 +14475,44,19.45,29,0.0 +14475,3,10,18,0.0 +14475,24,4.5,16,0.0 +14475,63,43.9,45,0.0 +14475,48,12.75,46,0.0 +14475,11,21,1,0.0 +14475,4,22,11,0.0 +14475,9,97,36,0.0 +14475,32,32,19,0.0 +14475,30,25.89,22,0.0 +14475,69,36,33,0.0 +14475,60,34,10,0.0 +14475,66,17,3,0.0 +14475,72,34.8,49,0.0 +14475,35,18,15,0.0 +14475,45,9.5,18,0.0 +14475,37,26,29,0.0 +14475,52,7,20,0.0 +14475,49,20,41,0.0 +14475,64,33.25,36,0.0 +14475,75,7.75,26,0.0 +14475,17,39,26,0.0 +14475,21,10,6,0.0 +14475,47,9.5,16,0.0 +14475,54,7.45,10,0.0 +14475,1,18,27,0.0 +14475,22,21,35,0.0 +14475,25,14,48,0.0 +14475,62,49.3,23,0.0 +14475,46,12,7,0.0 +14475,12,38,41,0.0 +14475,76,18,35,0.0 +14475,27,43.9,28,0.0 +14475,74,10,20,0.0 +14475,77,13,15,0.0 +14475,36,19,30,0.0 +14475,42,14,24,0.0 +14475,31,12.5,12,0.0 +14475,20,81,44,0.0 +14475,73,15,24,0.0 +14475,58,13.25,49,0.0 +14476,39,18,38,0.0 +14476,67,14,26,0.0 +14476,4,22,9,0.0 +14476,41,9.65,21,0.0 +14476,23,9,37,0.0 +14476,60,34,28,0.0 +14476,26,31.23,6,0.0 +14476,46,12,44,0.0 +14476,13,6,32,0.0 +14476,45,9.5,2,0.0 +14476,30,25.89,8,0.0 +14476,71,21.5,39,0.0 +14476,22,21,19,0.0 +14476,38,263.5,25,0.0 +14476,61,28.5,8,0.0 +14476,9,97,4,0.0 +14476,54,7.45,30,0.0 +14476,42,14,50,0.0 +14476,18,62.5,17,0.0 +14476,2,19,9,0.0 +14476,36,19,34,0.0 +14476,65,21.05,21,0.0 +14476,33,2.5,26,0.0 +14476,72,34.8,9,0.0 +14476,31,12.5,48,0.0 +14476,58,13.25,39,0.0 +14476,5,21.35,18,0.0 +14476,25,14,26,0.0 +14477,10,31,10,0.0 +14477,5,21.35,8,0.0 +14477,69,36,2,0.0 +14477,39,18,10,0.0 +14477,19,9.2,33,0.0 +14477,70,15,15,0.0 +14477,24,4.5,29,0.0 +14477,45,9.5,41,0.0 +14477,53,32.8,46,0.0 +14477,42,14,24,0.0 +14477,75,7.75,43,0.0 +14477,60,34,30,0.0 +14477,64,33.25,50,0.0 +14477,71,21.5,12,0.0 +14477,11,21,34,0.0 +14477,7,30,33,0.0 +14477,57,19.5,43,0.0 +14477,4,22,42,0.0 +14477,63,43.9,13,0.0 +14477,22,21,12,0.0 +14477,51,53,39,0.0 +14477,58,13.25,31,0.0 +14477,18,62.5,15,0.0 +14477,3,10,45,0.0 +14477,50,16.25,9,0.0 +14477,65,21.05,25,0.0 +14477,73,15,43,0.0 +14478,59,55,12,0.0 +14478,44,19.45,2,0.0 +14478,74,10,26,0.0 +14478,9,97,33,0.0 +14478,48,12.75,32,0.0 +14478,3,10,24,0.0 +14478,69,36,43,0.0 +14478,47,9.5,5,0.0 +14478,33,2.5,39,0.0 +14478,45,9.5,13,0.0 +14478,46,12,31,0.0 +14478,63,43.9,25,0.0 +14478,54,7.45,5,0.0 +14479,64,33.25,19,0.0 +14479,52,7,1,0.0 +14479,25,14,38,0.0 +14479,27,43.9,8,0.0 +14479,7,30,10,0.0 +14479,39,18,18,0.0 +14479,34,14,10,0.0 +14479,69,36,15,0.0 +14479,1,18,43,0.0 +14479,55,24,38,0.0 +14479,23,9,5,0.0 +14479,8,40,16,0.0 +14479,12,38,19,0.0 +14479,36,19,36,0.0 +14479,29,123.79,20,0.0 +14480,34,14,13,0.0 +14480,57,19.5,16,0.0 +14480,47,9.5,47,0.0 +14480,62,49.3,29,0.0 +14480,13,6,33,0.0 +14480,61,28.5,30,0.0 +14480,35,18,1,0.0 +14480,6,25,39,0.0 +14480,71,21.5,25,0.0 +14480,17,39,40,0.0 +14480,30,25.89,10,0.0 +14480,19,9.2,49,0.0 +14480,18,62.5,46,0.0 +14480,45,9.5,18,0.0 +14480,77,13,28,0.0 +14480,49,20,23,0.0 +14480,43,46,38,0.0 +14480,12,38,50,0.0 +14480,32,32,33,0.0 +14480,48,12.75,40,0.0 +14480,58,13.25,38,0.0 +14480,14,23.25,44,0.0 +14480,73,15,25,0.0 +14480,70,15,23,0.0 +14480,63,43.9,25,0.0 +14480,21,10,9,0.0 +14480,27,43.9,22,0.0 +14480,46,12,19,0.0 +14480,31,12.5,7,0.0 +14480,44,19.45,3,0.0 +14480,2,19,25,0.0 +14480,65,21.05,41,0.0 +14480,7,30,31,0.0 +14480,74,10,9,0.0 +14480,39,18,42,0.0 +14480,38,263.5,39,0.0 +14480,10,31,34,0.0 +14480,1,18,23,0.0 +14480,42,14,32,0.0 +14480,59,55,34,0.0 +14480,66,17,37,0.0 +14480,60,34,24,0.0 +14480,67,14,6,0.0 +14480,40,18.4,31,0.0 +14480,54,7.45,23,0.0 +14480,76,18,5,0.0 +14480,55,24,33,0.0 +14480,28,45.6,2,0.0 +14480,16,17.45,50,0.0 +14480,68,12.5,23,0.0 +14480,52,7,48,0.0 +14480,24,4.5,5,0.0 +14480,26,31.23,18,0.0 +14480,5,21.35,15,0.0 +14480,8,40,29,0.0 +14480,25,14,22,0.0 +14480,69,36,26,0.0 +14480,37,26,8,0.0 +14480,75,7.75,9,0.0 +14480,29,123.79,12,0.0 +14480,53,32.8,11,0.0 +14480,64,33.25,39,0.0 +14480,3,10,9,0.0 +14480,33,2.5,41,0.0 +14480,22,21,7,0.0 +14480,36,19,34,0.0 +14480,11,21,15,0.0 +14480,72,34.8,29,0.0 +14480,20,81,11,0.0 +14480,50,16.25,2,0.0 +14481,48,12.75,23,0.0 +14481,12,38,5,0.0 +14481,77,13,46,0.0 +14481,71,21.5,35,0.0 +14481,26,31.23,40,0.0 +14481,69,36,11,0.0 +14481,33,2.5,29,0.0 +14481,66,17,29,0.0 +14481,39,18,22,0.0 +14481,46,12,37,0.0 +14481,16,17.45,49,0.0 +14481,21,10,21,0.0 +14481,47,9.5,9,0.0 +14481,74,10,12,0.0 +14481,64,33.25,37,0.0 +14481,57,19.5,31,0.0 +14481,34,14,10,0.0 +14481,40,18.4,46,0.0 +14481,24,4.5,16,0.0 +14481,22,21,46,0.0 +14481,42,14,20,0.0 +14481,51,53,17,0.0 +14481,5,21.35,46,0.0 +14481,11,21,30,0.0 +14481,36,19,21,0.0 +14481,23,9,3,0.0 +14481,73,15,38,0.0 +14481,45,9.5,2,0.0 +14481,17,39,12,0.0 +14481,59,55,20,0.0 +14481,62,49.3,47,0.0 +14481,10,31,49,0.0 +14481,70,15,25,0.0 +14481,15,15.5,2,0.0 +14481,41,9.65,12,0.0 +14481,72,34.8,7,0.0 +14481,18,62.5,6,0.0 +14481,50,16.25,27,0.0 +14481,30,25.89,45,0.0 +14481,52,7,40,0.0 +14481,3,10,16,0.0 +14481,25,14,43,0.0 +14481,75,7.75,11,0.0 +14481,19,9.2,34,0.0 +14481,65,21.05,13,0.0 +14481,53,32.8,37,0.0 +14481,63,43.9,29,0.0 +14481,31,12.5,17,0.0 +14481,68,12.5,17,0.0 +14481,76,18,13,0.0 +14481,4,22,47,0.0 +14481,67,14,48,0.0 +14481,14,23.25,41,0.0 +14481,27,43.9,49,0.0 +14481,43,46,47,0.0 +14481,60,34,26,0.0 +14481,13,6,23,0.0 +14481,1,18,50,0.0 +14481,56,38,4,0.0 +14481,9,97,47,0.0 +14481,2,19,50,0.0 +14481,49,20,30,0.0 +14481,61,28.5,22,0.0 +14481,29,123.79,22,0.0 +14481,8,40,7,0.0 +14481,38,263.5,46,0.0 +14481,28,45.6,45,0.0 +14481,7,30,24,0.0 +14481,55,24,18,0.0 +14481,58,13.25,2,0.0 +14481,35,18,48,0.0 +14482,18,62.5,7,0.0 +14482,37,26,5,0.0 +14482,55,24,1,0.0 +14482,52,7,5,0.0 +14482,49,20,36,0.0 +14482,9,97,33,0.0 +14482,8,40,16,0.0 +14482,25,14,40,0.0 +14482,67,14,11,0.0 +14482,29,123.79,26,0.0 +14482,72,34.8,3,0.0 +14482,59,55,32,0.0 +14482,47,9.5,29,0.0 +14482,43,46,20,0.0 +14482,70,15,40,0.0 +14482,54,7.45,44,0.0 +14482,40,18.4,17,0.0 +14482,20,81,14,0.0 +14482,38,263.5,36,0.0 +14482,27,43.9,26,0.0 +14482,69,36,32,0.0 +14482,21,10,23,0.0 +14482,10,31,1,0.0 +14482,19,9.2,16,0.0 +14482,23,9,18,0.0 +14482,46,12,32,0.0 +14482,13,6,2,0.0 +14482,24,4.5,30,0.0 +14482,75,7.75,4,0.0 +14482,65,21.05,13,0.0 +14482,71,21.5,10,0.0 +14482,12,38,11,0.0 +14482,58,13.25,34,0.0 +14482,77,13,28,0.0 +14482,1,18,34,0.0 +14482,34,14,27,0.0 +14482,42,14,16,0.0 +14482,60,34,47,0.0 +14482,66,17,49,0.0 +14483,26,31.23,45,0.0 +14483,66,17,22,0.0 +14483,8,40,42,0.0 +14483,65,21.05,22,0.0 +14483,9,97,37,0.0 +14483,23,9,47,0.0 +14483,5,21.35,36,0.0 +14483,69,36,21,0.0 +14483,59,55,4,0.0 +14483,40,18.4,27,0.0 +14483,45,9.5,17,0.0 +14483,56,38,47,0.0 +14483,75,7.75,17,0.0 +14483,50,16.25,33,0.0 +14483,58,13.25,13,0.0 +14483,60,34,25,0.0 +14483,62,49.3,20,0.0 +14483,28,45.6,26,0.0 +14483,77,13,7,0.0 +14483,14,23.25,11,0.0 +14483,63,43.9,12,0.0 +14483,39,18,50,0.0 +14483,70,15,1,0.0 +14483,64,33.25,19,0.0 +14483,4,22,22,0.0 +14483,7,30,20,0.0 +14483,61,28.5,46,0.0 +14483,37,26,35,0.0 +14483,11,21,3,0.0 +14483,31,12.5,30,0.0 +14483,19,9.2,16,0.0 +14483,3,10,7,0.0 +14483,30,25.89,2,0.0 +14483,74,10,47,0.0 +14483,17,39,16,0.0 +14483,16,17.45,11,0.0 +14483,71,21.5,22,0.0 +14483,10,31,2,0.0 +14483,68,12.5,1,0.0 +14483,44,19.45,48,0.0 +14483,57,19.5,5,0.0 +14483,21,10,3,0.0 +14483,51,53,1,0.0 +14483,27,43.9,18,0.0 +14483,35,18,13,0.0 +14483,32,32,16,0.0 +14483,52,7,11,0.0 +14483,46,12,15,0.0 +14483,13,6,13,0.0 +14483,55,24,47,0.0 +14483,1,18,22,0.0 +14483,47,9.5,29,0.0 +14483,41,9.65,11,0.0 +14483,20,81,40,0.0 +14483,33,2.5,42,0.0 +14483,18,62.5,39,0.0 +14483,2,19,47,0.0 +14483,54,7.45,47,0.0 +14483,49,20,38,0.0 +14483,72,34.8,48,0.0 +14483,76,18,6,0.0 +14484,25,14,28,0.0 +14484,17,39,19,0.0 +14484,56,38,13,0.0 +14484,4,22,14,0.0 +14484,69,36,2,0.0 +14484,49,20,7,0.0 +14484,1,18,22,0.0 +14484,63,43.9,23,0.0 +14484,41,9.65,22,0.0 +14484,33,2.5,15,0.0 +14484,73,15,26,0.0 +14484,46,12,44,0.0 +14484,45,9.5,42,0.0 +14484,74,10,4,0.0 +14484,9,97,44,0.0 +14484,27,43.9,33,0.0 +14484,15,15.5,42,0.0 +14484,34,14,45,0.0 +14484,55,24,20,0.0 +14484,23,9,34,0.0 +14484,51,53,48,0.0 +14484,35,18,6,0.0 +14484,2,19,18,0.0 +14484,11,21,22,0.0 +14484,28,45.6,2,0.0 +14484,36,19,29,0.0 +14484,39,18,14,0.0 +14484,71,21.5,27,0.0 +14484,67,14,25,0.0 +14484,43,46,15,0.0 +14484,32,32,1,0.0 +14484,13,6,28,0.0 +14484,44,19.45,30,0.0 +14484,65,21.05,23,0.0 +14485,57,19.5,38,0.0 +14485,23,9,45,0.0 +14485,30,25.89,18,0.0 +14485,55,24,15,0.0 +14485,26,31.23,33,0.0 +14485,73,15,49,0.0 +14486,32,32,46,0.0 +14486,20,81,36,0.0 +14486,49,20,38,0.0 +14486,39,18,16,0.0 +14486,15,15.5,47,0.0 +14486,60,34,9,0.0 +14486,23,9,2,0.0 +14486,2,19,49,0.0 +14486,63,43.9,29,0.0 +14486,68,12.5,28,0.0 +14486,34,14,36,0.0 +14486,25,14,38,0.0 +14486,10,31,28,0.0 +14486,77,13,16,0.0 +14486,54,7.45,7,0.0 +14487,53,32.8,10,0.0 +14487,9,97,8,0.0 +14487,56,38,38,0.0 +14487,65,21.05,44,0.0 +14487,30,25.89,38,0.0 +14487,55,24,39,0.0 +14487,51,53,28,0.0 +14487,63,43.9,29,0.0 +14487,67,14,49,0.0 +14487,29,123.79,48,0.0 +14487,28,45.6,36,0.0 +14487,70,15,8,0.0 +14487,7,30,30,0.0 +14487,43,46,5,0.0 +14487,23,9,16,0.0 +14487,40,18.4,26,0.0 +14487,52,7,4,0.0 +14487,8,40,1,0.0 +14487,62,49.3,12,0.0 +14487,69,36,5,0.0 +14487,42,14,48,0.0 +14487,35,18,47,0.0 +14487,50,16.25,35,0.0 +14488,76,18,49,0.0 +14488,1,18,11,0.0 +14488,18,62.5,23,0.0 +14488,6,25,8,0.0 +14488,37,26,36,0.0 +14488,62,49.3,34,0.0 +14488,48,12.75,9,0.0 +14488,13,6,28,0.0 +14488,26,31.23,38,0.0 +14488,49,20,6,0.0 +14488,59,55,40,0.0 +14488,35,18,21,0.0 +14488,17,39,33,0.0 +14488,3,10,47,0.0 +14488,56,38,48,0.0 +14488,66,17,26,0.0 +14488,11,21,29,0.0 +14488,52,7,42,0.0 +14488,58,13.25,18,0.0 +14488,70,15,23,0.0 +14488,39,18,16,0.0 +14488,55,24,21,0.0 +14488,65,21.05,8,0.0 +14488,31,12.5,30,0.0 +14488,30,25.89,7,0.0 +14488,44,19.45,30,0.0 +14488,25,14,10,0.0 +14488,73,15,15,0.0 +14488,5,21.35,45,0.0 +14488,51,53,6,0.0 +14488,7,30,49,0.0 +14488,12,38,34,0.0 +14488,75,7.75,10,0.0 +14488,46,12,7,0.0 +14488,22,21,42,0.0 +14488,41,9.65,40,0.0 +14488,24,4.5,49,0.0 +14488,64,33.25,18,0.0 +14488,9,97,25,0.0 +14488,40,18.4,29,0.0 +14488,33,2.5,45,0.0 +14488,10,31,37,0.0 +14488,71,21.5,10,0.0 +14488,27,43.9,28,0.0 +14488,77,13,39,0.0 +14488,20,81,10,0.0 +14488,28,45.6,36,0.0 +14488,53,32.8,38,0.0 +14488,68,12.5,42,0.0 +14488,74,10,4,0.0 +14488,47,9.5,40,0.0 +14488,32,32,28,0.0 +14488,23,9,39,0.0 +14488,45,9.5,45,0.0 +14488,19,9.2,45,0.0 +14488,14,23.25,15,0.0 +14488,2,19,10,0.0 +14488,61,28.5,21,0.0 +14488,43,46,47,0.0 +14488,36,19,2,0.0 +14488,4,22,43,0.0 +14488,50,16.25,5,0.0 +14488,69,36,9,0.0 +14488,29,123.79,1,0.0 +14488,63,43.9,20,0.0 +14488,54,7.45,7,0.0 +14488,38,263.5,4,0.0 +14488,34,14,35,0.0 +14488,16,17.45,48,0.0 +14488,8,40,9,0.0 +14488,57,19.5,33,0.0 +14488,67,14,9,0.0 +14488,15,15.5,17,0.0 +14488,60,34,24,0.0 +14488,72,34.8,33,0.0 +14488,21,10,17,0.0 +14488,42,14,3,0.0 +14489,14,23.25,25,0.0 +14489,53,32.8,43,0.0 +14489,39,18,4,0.0 +14489,77,13,50,0.0 +14489,36,19,49,0.0 +14489,28,45.6,42,0.0 +14489,18,62.5,50,0.0 +14489,38,263.5,9,0.0 +14489,60,34,50,0.0 +14489,58,13.25,14,0.0 +14489,9,97,5,0.0 +14489,73,15,23,0.0 +14489,13,6,14,0.0 +14489,29,123.79,37,0.0 +14489,17,39,27,0.0 +14489,46,12,12,0.0 +14489,69,36,19,0.0 +14489,50,16.25,6,0.0 +14489,71,21.5,43,0.0 +14489,1,18,46,0.0 +14489,63,43.9,17,0.0 +14489,24,4.5,39,0.0 +14489,33,2.5,26,0.0 +14489,57,19.5,25,0.0 +14489,26,31.23,39,0.0 +14489,56,38,17,0.0 +14489,55,24,17,0.0 +14489,47,9.5,19,0.0 +14489,45,9.5,26,0.0 +14489,62,49.3,42,0.0 +14489,20,81,25,0.0 +14489,25,14,9,0.0 +14489,21,10,47,0.0 +14489,75,7.75,32,0.0 +14489,67,14,6,0.0 +14489,35,18,12,0.0 +14489,59,55,11,0.0 +14489,19,9.2,46,0.0 +14489,15,15.5,28,0.0 +14489,42,14,12,0.0 +14489,8,40,43,0.0 +14489,74,10,13,0.0 +14489,11,21,44,0.0 +14489,7,30,5,0.0 +14489,2,19,22,0.0 +14489,37,26,29,0.0 +14489,22,21,36,0.0 +14489,41,9.65,18,0.0 +14489,64,33.25,22,0.0 +14489,52,7,33,0.0 +14489,4,22,33,0.0 +14489,34,14,14,0.0 +14489,72,34.8,5,0.0 +14489,5,21.35,10,0.0 +14489,70,15,50,0.0 +14489,27,43.9,17,0.0 +14489,51,53,13,0.0 +14489,16,17.45,37,0.0 +14489,30,25.89,46,0.0 +14489,66,17,11,0.0 +14489,40,18.4,8,0.0 +14489,12,38,8,0.0 +14489,6,25,17,0.0 +14489,3,10,42,0.0 +14489,32,32,49,0.0 +14489,48,12.75,45,0.0 +14489,31,12.5,44,0.0 +14489,49,20,27,0.0 +14489,54,7.45,7,0.0 +14489,10,31,39,0.0 +14489,76,18,33,0.0 +14489,68,12.5,33,0.0 +14489,44,19.45,1,0.0 +14489,61,28.5,25,0.0 +14490,73,15,46,0.0 +14490,29,123.79,2,0.0 +14490,18,62.5,46,0.0 +14490,19,9.2,33,0.0 +14490,45,9.5,20,0.0 +14490,11,21,8,0.0 +14490,65,21.05,8,0.0 +14490,77,13,37,0.0 +14490,22,21,2,0.0 +14490,4,22,49,0.0 +14490,14,23.25,44,0.0 +14490,10,31,24,0.0 +14490,63,43.9,50,0.0 +14490,67,14,16,0.0 +14490,7,30,31,0.0 +14490,74,10,2,0.0 +14490,42,14,46,0.0 +14490,9,97,41,0.0 +14490,5,21.35,49,0.0 +14490,66,17,18,0.0 +14490,20,81,20,0.0 +14490,59,55,29,0.0 +14490,17,39,4,0.0 +14490,3,10,4,0.0 +14490,44,19.45,49,0.0 +14490,70,15,46,0.0 +14490,25,14,4,0.0 +14490,8,40,40,0.0 +14490,21,10,9,0.0 +14490,2,19,41,0.0 +14490,6,25,49,0.0 +14490,76,18,35,0.0 +14490,52,7,38,0.0 +14490,34,14,31,0.0 +14490,64,33.25,22,0.0 +14490,51,53,32,0.0 +14490,39,18,36,0.0 +14490,37,26,25,0.0 +14490,46,12,12,0.0 +14490,24,4.5,43,0.0 +14491,19,9.2,42,0.0 +14491,2,19,25,0.0 +14491,21,10,40,0.0 +14491,3,10,20,0.0 +14491,39,18,39,0.0 +14491,47,9.5,18,0.0 +14491,75,7.75,25,0.0 +14491,29,123.79,21,0.0 +14491,64,33.25,30,0.0 +14491,61,28.5,32,0.0 +14491,12,38,50,0.0 +14491,57,19.5,35,0.0 +14491,9,97,36,0.0 +14491,1,18,4,0.0 +14491,56,38,50,0.0 +14491,32,32,27,0.0 +14491,5,21.35,31,0.0 +14491,53,32.8,18,0.0 +14491,34,14,30,0.0 +14491,27,43.9,50,0.0 +14491,71,21.5,44,0.0 +14491,14,23.25,48,0.0 +14491,70,15,4,0.0 +14491,48,12.75,25,0.0 +14491,60,34,46,0.0 +14491,10,31,29,0.0 +14491,16,17.45,29,0.0 +14491,49,20,37,0.0 +14492,47,9.5,41,0.0 +14492,16,17.45,37,0.0 +14492,4,22,42,0.0 +14492,65,21.05,42,0.0 +14492,15,15.5,27,0.0 +14492,56,38,5,0.0 +14492,29,123.79,20,0.0 +14492,44,19.45,24,0.0 +14492,46,12,34,0.0 +14492,20,81,30,0.0 +14492,73,15,11,0.0 +14492,42,14,14,0.0 +14492,25,14,19,0.0 +14492,51,53,5,0.0 +14492,58,13.25,29,0.0 +14492,9,97,12,0.0 +14492,72,34.8,9,0.0 +14492,13,6,25,0.0 +14492,24,4.5,23,0.0 +14492,6,25,34,0.0 +14492,17,39,42,0.0 +14492,60,34,3,0.0 +14492,3,10,15,0.0 +14492,12,38,15,0.0 +14492,1,18,45,0.0 +14492,66,17,49,0.0 +14492,39,18,42,0.0 +14492,50,16.25,7,0.0 +14492,49,20,17,0.0 +14492,36,19,35,0.0 +14492,67,14,22,0.0 +14492,62,49.3,17,0.0 +14492,40,18.4,48,0.0 +14492,64,33.25,3,0.0 +14492,22,21,26,0.0 +14493,28,45.6,19,0.0 +14493,44,19.45,7,0.0 +14493,13,6,49,0.0 +14493,48,12.75,8,0.0 +14493,59,55,16,0.0 +14493,37,26,5,0.0 +14493,54,7.45,11,0.0 +14493,56,38,15,0.0 +14493,76,18,6,0.0 +14493,1,18,22,0.0 +14493,68,12.5,17,0.0 +14493,35,18,36,0.0 +14493,22,21,35,0.0 +14493,72,34.8,31,0.0 +14493,47,9.5,34,0.0 +14493,66,17,40,0.0 +14493,63,43.9,48,0.0 +14493,31,12.5,49,0.0 +14493,77,13,35,0.0 +14493,36,19,31,0.0 +14493,34,14,29,0.0 +14494,47,9.5,19,0.0 +14494,74,10,6,0.0 +14494,19,9.2,42,0.0 +14494,4,22,5,0.0 +14494,31,12.5,2,0.0 +14494,37,26,28,0.0 +14494,12,38,29,0.0 +14494,25,14,20,0.0 +14494,3,10,2,0.0 +14494,6,25,45,0.0 +14494,11,21,47,0.0 +14494,35,18,38,0.0 +14494,38,263.5,10,0.0 +14494,45,9.5,39,0.0 +14494,44,19.45,8,0.0 +14494,36,19,48,0.0 +14494,53,32.8,17,0.0 +14494,76,18,8,0.0 +14494,7,30,9,0.0 +14494,61,28.5,16,0.0 +14494,73,15,19,0.0 +14494,14,23.25,47,0.0 +14494,56,38,1,0.0 +14494,28,45.6,20,0.0 +14495,64,33.25,26,0.0 +14495,19,9.2,30,0.0 +14495,30,25.89,45,0.0 +14495,23,9,1,0.0 +14495,51,53,32,0.0 +14495,3,10,11,0.0 +14495,42,14,45,0.0 +14495,74,10,21,0.0 +14495,77,13,47,0.0 +14495,40,18.4,28,0.0 +14495,70,15,48,0.0 +14495,8,40,14,0.0 +14495,61,28.5,49,0.0 +14495,15,15.5,44,0.0 +14495,33,2.5,41,0.0 +14495,52,7,34,0.0 +14495,46,12,15,0.0 +14495,27,43.9,19,0.0 +14495,44,19.45,45,0.0 +14495,67,14,48,0.0 +14495,18,62.5,34,0.0 +14495,11,21,39,0.0 +14495,65,21.05,4,0.0 +14495,75,7.75,18,0.0 +14495,1,18,18,0.0 +14495,9,97,26,0.0 +14495,45,9.5,43,0.0 +14495,21,10,24,0.0 +14495,34,14,8,0.0 +14495,4,22,36,0.0 +14495,71,21.5,48,0.0 +14495,43,46,38,0.0 +14495,56,38,5,0.0 +14495,59,55,44,0.0 +14495,47,9.5,40,0.0 +14495,7,30,2,0.0 +14495,57,19.5,14,0.0 +14495,41,9.65,27,0.0 +14495,26,31.23,12,0.0 +14495,55,24,37,0.0 +14495,20,81,15,0.0 +14495,25,14,37,0.0 +14495,32,32,38,0.0 +14495,73,15,41,0.0 +14495,14,23.25,9,0.0 +14495,16,17.45,47,0.0 +14495,36,19,14,0.0 +14495,49,20,36,0.0 +14495,54,7.45,33,0.0 +14495,50,16.25,9,0.0 +14495,62,49.3,33,0.0 +14495,68,12.5,26,0.0 +14495,35,18,20,0.0 +14495,10,31,48,0.0 +14495,28,45.6,41,0.0 +14495,66,17,37,0.0 +14495,31,12.5,3,0.0 +14496,76,18,23,0.0 +14496,1,18,45,0.0 +14496,67,14,47,0.0 +14496,38,263.5,30,0.0 +14496,9,97,50,0.0 +14496,39,18,50,0.0 +14496,34,14,38,0.0 +14496,58,13.25,28,0.0 +14496,13,6,34,0.0 +14496,31,12.5,21,0.0 +14496,59,55,35,0.0 +14496,37,26,13,0.0 +14496,8,40,2,0.0 +14496,11,21,30,0.0 +14496,29,123.79,16,0.0 +14496,5,21.35,42,0.0 +14496,23,9,21,0.0 +14496,65,21.05,9,0.0 +14496,21,10,43,0.0 +14496,14,23.25,15,0.0 +14496,44,19.45,24,0.0 +14496,53,32.8,46,0.0 +14496,4,22,37,0.0 +14496,36,19,31,0.0 +14496,77,13,27,0.0 +14496,2,19,45,0.0 +14496,45,9.5,12,0.0 +14496,10,31,15,0.0 +14496,50,16.25,17,0.0 +14496,17,39,17,0.0 +14496,55,24,5,0.0 +14496,71,21.5,6,0.0 +14496,30,25.89,26,0.0 +14496,19,9.2,17,0.0 +14496,51,53,22,0.0 +14496,20,81,20,0.0 +14496,57,19.5,29,0.0 +14497,29,123.79,44,0.0 +14497,41,9.65,1,0.0 +14497,56,38,8,0.0 +14497,63,43.9,24,0.0 +14497,52,7,38,0.0 +14497,35,18,30,0.0 +14497,60,34,7,0.0 +14497,33,2.5,38,0.0 +14497,77,13,36,0.0 +14497,72,34.8,17,0.0 +14497,76,18,24,0.0 +14497,21,10,24,0.0 +14497,39,18,15,0.0 +14497,42,14,28,0.0 +14497,68,12.5,33,0.0 +14497,37,26,32,0.0 +14497,14,23.25,40,0.0 +14497,46,12,12,0.0 +14497,51,53,39,0.0 +14497,8,40,34,0.0 +14497,9,97,35,0.0 +14497,48,12.75,42,0.0 +14497,57,19.5,3,0.0 +14497,61,28.5,1,0.0 +14497,67,14,49,0.0 +14497,22,21,24,0.0 +14497,12,38,33,0.0 +14497,65,21.05,11,0.0 +14497,44,19.45,11,0.0 +14497,17,39,38,0.0 +14497,5,21.35,15,0.0 +14497,47,9.5,16,0.0 +14497,49,20,31,0.0 +14497,50,16.25,11,0.0 +14497,25,14,4,0.0 +14497,10,31,30,0.0 +14497,2,19,23,0.0 +14497,7,30,1,0.0 +14498,28,45.6,16,0.0 +14498,66,17,7,0.0 +14498,74,10,6,0.0 +14498,22,21,3,0.0 +14498,2,19,26,0.0 +14498,4,22,33,0.0 +14498,51,53,39,0.0 +14498,44,19.45,25,0.0 +14498,8,40,11,0.0 +14498,35,18,25,0.0 +14498,7,30,19,0.0 +14498,67,14,2,0.0 +14498,26,31.23,17,0.0 +14498,30,25.89,5,0.0 +14498,48,12.75,41,0.0 +14498,11,21,23,0.0 +14498,32,32,24,0.0 +14499,22,21,1,0.0 +14499,66,17,29,0.0 +14499,28,45.6,50,0.0 +14499,52,7,26,0.0 +14499,65,21.05,40,0.0 +14499,55,24,5,0.0 +14499,59,55,40,0.0 +14499,1,18,48,0.0 +14499,9,97,2,0.0 +14499,73,15,20,0.0 +14499,53,32.8,11,0.0 +14499,44,19.45,50,0.0 +14499,69,36,11,0.0 +14499,34,14,5,0.0 +14499,26,31.23,6,0.0 +14499,13,6,15,0.0 +14499,29,123.79,35,0.0 +14499,25,14,34,0.0 +14499,64,33.25,3,0.0 +14499,63,43.9,47,0.0 +14499,20,81,42,0.0 +14499,19,9.2,48,0.0 +14499,57,19.5,50,0.0 +14499,35,18,36,0.0 +14499,42,14,44,0.0 +14499,31,12.5,26,0.0 +14499,75,7.75,47,0.0 +14499,58,13.25,28,0.0 +14499,68,12.5,3,0.0 +14499,43,46,20,0.0 +14499,24,4.5,11,0.0 +14499,77,13,21,0.0 +14499,71,21.5,47,0.0 +14499,70,15,37,0.0 +14499,30,25.89,33,0.0 +14499,74,10,23,0.0 +14499,76,18,44,0.0 +14500,54,7.45,35,0.0 +14500,17,39,50,0.0 +14500,19,9.2,34,0.0 +14500,14,23.25,15,0.0 +14500,76,18,40,0.0 +14500,43,46,43,0.0 +14500,5,21.35,17,0.0 +14500,4,22,44,0.0 +14500,45,9.5,35,0.0 +14500,66,17,38,0.0 +14500,13,6,6,0.0 +14500,63,43.9,3,0.0 +14500,10,31,7,0.0 +14500,36,19,2,0.0 +14500,71,21.5,30,0.0 +14500,58,13.25,10,0.0 +14500,56,38,35,0.0 +14500,70,15,38,0.0 +14500,65,21.05,33,0.0 +14500,39,18,18,0.0 +14500,32,32,3,0.0 +14500,18,62.5,27,0.0 +14500,51,53,1,0.0 +14500,52,7,41,0.0 +14500,12,38,22,0.0 +14500,72,34.8,20,0.0 +14500,11,21,14,0.0 +14500,27,43.9,27,0.0 +14500,61,28.5,10,0.0 +14500,73,15,47,0.0 +14500,74,10,36,0.0 +14500,2,19,41,0.0 +14500,28,45.6,29,0.0 +14500,23,9,27,0.0 +14500,37,26,17,0.0 +14500,38,263.5,45,0.0 +14500,34,14,47,0.0 +14500,3,10,18,0.0 +14500,48,12.75,24,0.0 +14500,8,40,13,0.0 +14500,57,19.5,50,0.0 +14500,59,55,7,0.0 +14500,21,10,19,0.0 +14500,49,20,23,0.0 +14500,41,9.65,42,0.0 +14500,1,18,5,0.0 +14500,9,97,34,0.0 +14500,26,31.23,34,0.0 +14500,50,16.25,8,0.0 +14500,75,7.75,19,0.0 +14500,62,49.3,16,0.0 +14500,22,21,5,0.0 +14501,75,7.75,12,0.0 +14501,45,9.5,29,0.0 +14501,40,18.4,33,0.0 +14501,43,46,23,0.0 +14501,53,32.8,50,0.0 +14501,15,15.5,15,0.0 +14501,26,31.23,24,0.0 +14501,57,19.5,44,0.0 +14501,30,25.89,6,0.0 +14501,28,45.6,34,0.0 +14501,47,9.5,28,0.0 +14501,25,14,49,0.0 +14501,34,14,30,0.0 +14501,37,26,20,0.0 +14501,4,22,37,0.0 +14501,16,17.45,7,0.0 +14501,3,10,31,0.0 +14501,5,21.35,38,0.0 +14501,59,55,2,0.0 +14501,72,34.8,48,0.0 +14501,8,40,44,0.0 +14501,33,2.5,41,0.0 +14501,54,7.45,45,0.0 +14501,18,62.5,28,0.0 +14501,2,19,8,0.0 +14501,13,6,25,0.0 +14502,26,31.23,26,0.0 +14502,66,17,6,0.0 +14503,7,30,31,0.0 +14503,66,17,9,0.0 +14503,69,36,41,0.0 +14503,21,10,34,0.0 +14503,29,123.79,28,0.0 +14503,3,10,18,0.0 +14503,8,40,33,0.0 +14503,18,62.5,33,0.0 +14503,12,38,31,0.0 +14503,45,9.5,45,0.0 +14503,38,263.5,26,0.0 +14503,54,7.45,40,0.0 +14503,24,4.5,5,0.0 +14503,52,7,48,0.0 +14503,16,17.45,25,0.0 +14503,56,38,13,0.0 +14503,39,18,15,0.0 +14503,28,45.6,10,0.0 +14503,20,81,1,0.0 +14503,31,12.5,46,0.0 +14503,2,19,21,0.0 +14503,36,19,28,0.0 +14503,53,32.8,8,0.0 +14503,33,2.5,35,0.0 +14503,75,7.75,20,0.0 +14503,51,53,17,0.0 +14503,35,18,46,0.0 +14503,17,39,44,0.0 +14503,19,9.2,21,0.0 +14503,5,21.35,32,0.0 +14503,65,21.05,4,0.0 +14503,63,43.9,29,0.0 +14503,41,9.65,41,0.0 +14503,1,18,10,0.0 +14503,46,12,21,0.0 +14503,47,9.5,17,0.0 +14503,27,43.9,10,0.0 +14503,50,16.25,2,0.0 +14503,32,32,28,0.0 +14503,30,25.89,32,0.0 +14503,73,15,36,0.0 +14503,71,21.5,6,0.0 +14503,43,46,16,0.0 +14503,72,34.8,45,0.0 +14503,6,25,19,0.0 +14503,58,13.25,47,0.0 +14503,48,12.75,19,0.0 +14503,13,6,33,0.0 +14503,67,14,37,0.0 +14503,4,22,12,0.0 +14503,40,18.4,37,0.0 +14503,37,26,21,0.0 +14503,62,49.3,23,0.0 +14503,44,19.45,39,0.0 +14503,64,33.25,36,0.0 +14503,68,12.5,6,0.0 +14503,57,19.5,50,0.0 +14503,49,20,12,0.0 +14503,42,14,18,0.0 +14503,11,21,3,0.0 +14503,10,31,49,0.0 +14503,23,9,4,0.0 +14503,59,55,48,0.0 +14503,77,13,47,0.0 +14503,26,31.23,24,0.0 +14503,61,28.5,10,0.0 +14503,22,21,12,0.0 +14503,14,23.25,37,0.0 +14504,57,19.5,38,0.0 +14504,20,81,17,0.0 +14504,49,20,13,0.0 +14504,70,15,21,0.0 +14504,36,19,23,0.0 +14504,34,14,6,0.0 +14504,26,31.23,27,0.0 +14504,6,25,41,0.0 +14504,24,4.5,19,0.0 +14504,73,15,10,0.0 +14504,3,10,32,0.0 +14504,2,19,26,0.0 +14504,13,6,38,0.0 +14504,9,97,17,0.0 +14504,77,13,1,0.0 +14504,69,36,10,0.0 +14504,46,12,50,0.0 +14504,25,14,10,0.0 +14504,56,38,43,0.0 +14504,40,18.4,29,0.0 +14504,32,32,49,0.0 +14504,33,2.5,17,0.0 +14504,17,39,28,0.0 +14504,5,21.35,19,0.0 +14504,37,26,43,0.0 +14504,62,49.3,29,0.0 +14504,44,19.45,24,0.0 +14504,11,21,1,0.0 +14504,27,43.9,50,0.0 +14504,60,34,31,0.0 +14504,14,23.25,39,0.0 +14504,8,40,43,0.0 +14504,22,21,24,0.0 +14504,52,7,3,0.0 +14504,48,12.75,11,0.0 +14504,68,12.5,40,0.0 +14504,51,53,49,0.0 +14504,59,55,48,0.0 +14504,65,21.05,16,0.0 +14505,72,34.8,12,0.0 +14505,50,16.25,33,0.0 +14505,38,263.5,34,0.0 +14505,36,19,5,0.0 +14505,51,53,48,0.0 +14505,55,24,3,0.0 +14505,22,21,36,0.0 +14505,3,10,20,0.0 +14505,53,32.8,11,0.0 +14505,69,36,16,0.0 +14505,21,10,33,0.0 +14505,16,17.45,36,0.0 +14505,25,14,4,0.0 +14505,28,45.6,18,0.0 +14505,7,30,17,0.0 +14505,34,14,3,0.0 +14505,54,7.45,25,0.0 +14505,76,18,5,0.0 +14505,67,14,24,0.0 +14505,74,10,34,0.0 +14505,70,15,28,0.0 +14505,43,46,22,0.0 +14505,44,19.45,9,0.0 +14505,29,123.79,5,0.0 +14505,2,19,33,0.0 +14505,30,25.89,37,0.0 +14505,15,15.5,1,0.0 +14505,65,21.05,31,0.0 +14505,77,13,44,0.0 +14505,17,39,12,0.0 +14505,5,21.35,46,0.0 +14505,45,9.5,34,0.0 +14505,59,55,20,0.0 +14506,23,9,19,0.0 +14506,35,18,16,0.0 +14506,19,9.2,41,0.0 +14506,46,12,2,0.0 +14506,39,18,37,0.0 +14506,9,97,18,0.0 +14506,73,15,26,0.0 +14506,12,38,49,0.0 +14506,16,17.45,11,0.0 +14506,49,20,15,0.0 +14506,75,7.75,45,0.0 +14506,38,263.5,42,0.0 +14506,53,32.8,42,0.0 +14506,61,28.5,16,0.0 +14506,41,9.65,27,0.0 +14506,72,34.8,39,0.0 +14506,70,15,37,0.0 +14506,22,21,10,0.0 +14506,45,9.5,23,0.0 +14506,47,9.5,3,0.0 +14506,50,16.25,10,0.0 +14506,30,25.89,12,0.0 +14506,40,18.4,36,0.0 +14506,74,10,27,0.0 +14506,8,40,45,0.0 +14507,3,10,20,0.0 +14507,6,25,38,0.0 +14507,41,9.65,2,0.0 +14507,68,12.5,12,0.0 +14507,58,13.25,15,0.0 +14507,71,21.5,14,0.0 +14507,74,10,40,0.0 +14507,11,21,7,0.0 +14507,12,38,2,0.0 +14507,49,20,26,0.0 +14507,14,23.25,49,0.0 +14507,30,25.89,7,0.0 +14507,39,18,9,0.0 +14507,18,62.5,48,0.0 +14507,51,53,14,0.0 +14507,15,15.5,12,0.0 +14507,57,19.5,7,0.0 +14507,36,19,8,0.0 +14507,22,21,5,0.0 +14507,9,97,21,0.0 +14507,10,31,16,0.0 +14507,43,46,23,0.0 +14507,55,24,44,0.0 +14507,47,9.5,19,0.0 +14507,28,45.6,15,0.0 +14507,5,21.35,5,0.0 +14507,46,12,17,0.0 +14507,24,4.5,42,0.0 +14507,59,55,45,0.0 +14507,66,17,35,0.0 +14507,31,12.5,19,0.0 +14507,50,16.25,6,0.0 +14507,48,12.75,29,0.0 +14507,61,28.5,26,0.0 +14507,17,39,38,0.0 +14507,45,9.5,49,0.0 +14507,19,9.2,50,0.0 +14507,56,38,50,0.0 +14507,54,7.45,25,0.0 +14507,52,7,14,0.0 +14507,38,263.5,25,0.0 +14507,69,36,14,0.0 +14507,8,40,5,0.0 +14507,16,17.45,27,0.0 +14507,73,15,6,0.0 +14507,42,14,42,0.0 +14507,2,19,39,0.0 +14507,53,32.8,19,0.0 +14507,27,43.9,31,0.0 +14507,40,18.4,47,0.0 +14507,4,22,7,0.0 +14507,35,18,29,0.0 +14508,30,25.89,37,0.0 +14508,29,123.79,9,0.0 +14508,54,7.45,8,0.0 +14508,28,45.6,21,0.0 +14508,22,21,1,0.0 +14508,40,18.4,13,0.0 +14508,43,46,45,0.0 +14508,8,40,16,0.0 +14508,72,34.8,44,0.0 +14508,70,15,13,0.0 +14508,62,49.3,2,0.0 +14508,75,7.75,32,0.0 +14508,12,38,29,0.0 +14508,69,36,29,0.0 +14508,15,15.5,42,0.0 +14508,34,14,25,0.0 +14508,5,21.35,50,0.0 +14508,56,38,48,0.0 +14508,58,13.25,47,0.0 +14508,27,43.9,35,0.0 +14508,17,39,9,0.0 +14508,7,30,14,0.0 +14508,76,18,10,0.0 +14508,53,32.8,39,0.0 +14508,13,6,14,0.0 +14509,45,9.5,48,0.0 +14509,56,38,26,0.0 +14509,20,81,17,0.0 +14509,63,43.9,40,0.0 +14509,21,10,7,0.0 +14509,61,28.5,47,0.0 +14509,30,25.89,36,0.0 +14509,16,17.45,15,0.0 +14509,53,32.8,15,0.0 +14509,9,97,19,0.0 +14509,73,15,49,0.0 +14509,65,21.05,39,0.0 +14509,35,18,14,0.0 +14509,26,31.23,3,0.0 +14509,37,26,33,0.0 +14509,28,45.6,24,0.0 +14509,7,30,16,0.0 +14509,43,46,11,0.0 +14509,22,21,29,0.0 +14509,46,12,50,0.0 +14509,54,7.45,38,0.0 +14510,58,13.25,15,0.0 +14510,33,2.5,2,0.0 +14510,38,263.5,11,0.0 +14510,36,19,19,0.0 +14510,64,33.25,35,0.0 +14510,34,14,9,0.0 +14510,12,38,10,0.0 +14510,66,17,18,0.0 +14510,49,20,8,0.0 +14510,9,97,43,0.0 +14510,26,31.23,27,0.0 +14510,28,45.6,47,0.0 +14510,3,10,22,0.0 +14510,54,7.45,25,0.0 +14510,29,123.79,36,0.0 +14511,74,10,11,0.0 +14511,76,18,30,0.0 +14511,22,21,3,0.0 +14511,37,26,47,0.0 +14511,15,15.5,23,0.0 +14511,55,24,17,0.0 +14511,49,20,49,0.0 +14511,16,17.45,11,0.0 +14511,77,13,31,0.0 +14511,63,43.9,47,0.0 +14511,58,13.25,32,0.0 +14511,61,28.5,21,0.0 +14511,5,21.35,5,0.0 +14511,56,38,4,0.0 +14511,57,19.5,9,0.0 +14511,46,12,41,0.0 +14511,44,19.45,50,0.0 +14511,48,12.75,9,0.0 +14511,31,12.5,49,0.0 +14511,39,18,19,0.0 +14511,47,9.5,11,0.0 +14511,73,15,44,0.0 +14511,4,22,31,0.0 +14511,17,39,5,0.0 +14511,29,123.79,15,0.0 +14511,40,18.4,31,0.0 +14511,21,10,10,0.0 +14511,52,7,33,0.0 +14511,51,53,12,0.0 +14511,71,21.5,20,0.0 +14511,66,17,38,0.0 +14511,45,9.5,14,0.0 +14511,25,14,38,0.0 +14511,36,19,49,0.0 +14511,3,10,48,0.0 +14511,1,18,35,0.0 +14511,10,31,14,0.0 +14511,62,49.3,4,0.0 +14511,11,21,40,0.0 +14511,23,9,35,0.0 +14511,33,2.5,32,0.0 +14511,72,34.8,20,0.0 +14511,30,25.89,49,0.0 +14511,42,14,47,0.0 +14511,34,14,35,0.0 +14511,59,55,32,0.0 +14511,32,32,2,0.0 +14511,41,9.65,27,0.0 +14511,65,21.05,50,0.0 +14511,8,40,34,0.0 +14511,2,19,14,0.0 +14511,19,9.2,13,0.0 +14511,64,33.25,38,0.0 +14511,27,43.9,44,0.0 +14511,70,15,24,0.0 +14511,54,7.45,46,0.0 +14511,75,7.75,29,0.0 +14511,14,23.25,29,0.0 +14511,28,45.6,48,0.0 +14511,38,263.5,43,0.0 +14511,43,46,24,0.0 +14511,35,18,39,0.0 +14511,18,62.5,14,0.0 +14511,26,31.23,25,0.0 +14512,46,12,17,0.0 +14512,2,19,34,0.0 +14512,45,9.5,38,0.0 +14512,14,23.25,3,0.0 +14512,68,12.5,40,0.0 +14512,25,14,4,0.0 +14512,36,19,12,0.0 +14512,40,18.4,2,0.0 +14512,43,46,48,0.0 +14512,37,26,49,0.0 +14512,59,55,29,0.0 +14512,23,9,14,0.0 +14512,35,18,9,0.0 +14512,65,21.05,49,0.0 +14512,3,10,50,0.0 +14512,62,49.3,19,0.0 +14512,4,22,4,0.0 +14512,47,9.5,23,0.0 +14512,30,25.89,31,0.0 +14512,72,34.8,30,0.0 +14512,12,38,35,0.0 +14512,18,62.5,19,0.0 +14512,29,123.79,25,0.0 +14512,58,13.25,20,0.0 +14512,52,7,33,0.0 +14512,66,17,44,0.0 +14512,13,6,5,0.0 +14512,34,14,31,0.0 +14512,69,36,16,0.0 +14512,67,14,24,0.0 +14512,17,39,16,0.0 +14512,32,32,6,0.0 +14512,55,24,45,0.0 +14512,38,263.5,11,0.0 +14512,9,97,34,0.0 +14512,77,13,5,0.0 +14512,26,31.23,7,0.0 +14512,22,21,25,0.0 +14512,71,21.5,25,0.0 +14512,51,53,12,0.0 +14512,73,15,12,0.0 +14512,24,4.5,45,0.0 +14512,28,45.6,1,0.0 +14512,75,7.75,30,0.0 +14512,70,15,3,0.0 +14512,33,2.5,42,0.0 +14512,64,33.25,22,0.0 +14512,7,30,30,0.0 +14512,53,32.8,4,0.0 +14512,49,20,44,0.0 +14512,11,21,14,0.0 +14512,19,9.2,12,0.0 +14512,20,81,46,0.0 +14512,15,15.5,11,0.0 +14512,48,12.75,20,0.0 +14512,8,40,39,0.0 +14512,63,43.9,12,0.0 +14513,60,34,47,0.0 +14513,19,9.2,46,0.0 +14513,23,9,9,0.0 +14514,63,43.9,33,0.0 +14514,48,12.75,20,0.0 +14514,71,21.5,19,0.0 +14514,70,15,22,0.0 +14514,64,33.25,7,0.0 +14514,29,123.79,20,0.0 +14514,25,14,44,0.0 +14514,36,19,27,0.0 +14514,30,25.89,6,0.0 +14514,19,9.2,21,0.0 +14514,65,21.05,17,0.0 +14514,58,13.25,28,0.0 +14514,68,12.5,4,0.0 +14514,69,36,13,0.0 +14514,44,19.45,49,0.0 +14514,62,49.3,16,0.0 +14514,59,55,27,0.0 +14514,47,9.5,50,0.0 +14514,1,18,37,0.0 +14514,17,39,34,0.0 +14514,6,25,48,0.0 +14514,34,14,14,0.0 +14514,22,21,36,0.0 +14514,40,18.4,40,0.0 +14514,28,45.6,23,0.0 +14514,66,17,37,0.0 +14514,51,53,30,0.0 +14514,54,7.45,44,0.0 +14514,15,15.5,48,0.0 +14514,27,43.9,7,0.0 +14514,5,21.35,14,0.0 +14514,3,10,40,0.0 +14514,8,40,20,0.0 +14514,24,4.5,50,0.0 +14514,13,6,2,0.0 +14514,74,10,46,0.0 +14514,61,28.5,3,0.0 +14514,2,19,28,0.0 +14514,4,22,41,0.0 +14514,60,34,22,0.0 +14514,75,7.75,26,0.0 +14514,50,16.25,3,0.0 +14515,30,25.89,35,0.0 +14515,57,19.5,4,0.0 +14515,20,81,12,0.0 +14515,24,4.5,49,0.0 +14515,51,53,25,0.0 +14515,27,43.9,41,0.0 +14515,65,21.05,49,0.0 +14515,48,12.75,47,0.0 +14515,15,15.5,18,0.0 +14515,70,15,41,0.0 +14515,9,97,9,0.0 +14515,28,45.6,45,0.0 +14515,62,49.3,14,0.0 +14516,51,53,32,0.0 +14516,63,43.9,41,0.0 +14516,76,18,7,0.0 +14516,77,13,42,0.0 +14516,11,21,42,0.0 +14516,69,36,35,0.0 +14516,20,81,28,0.0 +14516,4,22,38,0.0 +14516,24,4.5,5,0.0 +14516,55,24,44,0.0 +14516,75,7.75,16,0.0 +14516,1,18,27,0.0 +14516,2,19,40,0.0 +14516,15,15.5,26,0.0 +14516,40,18.4,36,0.0 +14516,52,7,41,0.0 +14516,17,39,34,0.0 +14516,41,9.65,14,0.0 +14516,66,17,21,0.0 +14516,33,2.5,6,0.0 +14516,9,97,35,0.0 +14516,73,15,17,0.0 +14516,26,31.23,21,0.0 +14516,6,25,9,0.0 +14517,43,46,25,0.0 +14517,52,7,47,0.0 +14517,56,38,16,0.0 +14517,40,18.4,24,0.0 +14517,65,21.05,24,0.0 +14517,37,26,25,0.0 +14517,5,21.35,28,0.0 +14517,12,38,24,0.0 +14517,36,19,11,0.0 +14517,11,21,39,0.0 +14517,73,15,22,0.0 +14517,28,45.6,33,0.0 +14517,2,19,4,0.0 +14517,68,12.5,20,0.0 +14517,71,21.5,15,0.0 +14517,69,36,5,0.0 +14517,48,12.75,30,0.0 +14517,35,18,49,0.0 +14517,25,14,5,0.0 +14517,29,123.79,9,0.0 +14517,38,263.5,41,0.0 +14517,17,39,47,0.0 +14517,9,97,7,0.0 +14517,50,16.25,22,0.0 +14517,6,25,34,0.0 +14517,61,28.5,22,0.0 +14517,77,13,34,0.0 +14517,22,21,14,0.0 +14517,19,9.2,33,0.0 +14517,47,9.5,26,0.0 +14517,14,23.25,39,0.0 +14517,55,24,39,0.0 +14517,74,10,18,0.0 +14517,45,9.5,50,0.0 +14517,7,30,22,0.0 +14517,3,10,43,0.0 +14517,33,2.5,21,0.0 +14517,59,55,50,0.0 +14517,39,18,16,0.0 +14517,70,15,18,0.0 +14517,49,20,5,0.0 +14517,16,17.45,11,0.0 +14517,72,34.8,33,0.0 +14517,34,14,44,0.0 +14517,62,49.3,16,0.0 +14517,27,43.9,40,0.0 +14517,57,19.5,39,0.0 +14517,75,7.75,10,0.0 +14517,24,4.5,6,0.0 +14517,76,18,18,0.0 +14517,54,7.45,30,0.0 +14517,15,15.5,49,0.0 +14517,63,43.9,11,0.0 +14517,1,18,11,0.0 +14517,18,62.5,13,0.0 +14517,60,34,47,0.0 +14517,20,81,15,0.0 +14517,32,32,3,0.0 +14517,67,14,22,0.0 +14517,53,32.8,22,0.0 +14517,23,9,35,0.0 +14517,51,53,43,0.0 +14517,13,6,48,0.0 +14517,4,22,5,0.0 +14517,30,25.89,34,0.0 +14517,46,12,38,0.0 +14517,21,10,17,0.0 +14517,42,14,21,0.0 +14518,30,25.89,46,0.0 +14518,69,36,11,0.0 +14518,77,13,30,0.0 +14518,13,6,48,0.0 +14518,73,15,33,0.0 +14518,8,40,18,0.0 +14518,28,45.6,20,0.0 +14518,72,34.8,50,0.0 +14518,32,32,1,0.0 +14518,16,17.45,16,0.0 +14518,12,38,39,0.0 +14518,40,18.4,28,0.0 +14518,66,17,32,0.0 +14518,18,62.5,33,0.0 +14518,17,39,10,0.0 +14518,1,18,15,0.0 +14518,15,15.5,2,0.0 +14518,50,16.25,5,0.0 +14518,10,31,48,0.0 +14518,2,19,32,0.0 +14518,64,33.25,40,0.0 +14518,7,30,48,0.0 +14518,61,28.5,6,0.0 +14518,6,25,12,0.0 +14518,33,2.5,48,0.0 +14518,67,14,33,0.0 +14518,24,4.5,26,0.0 +14518,45,9.5,14,0.0 +14518,47,9.5,22,0.0 +14518,37,26,10,0.0 +14519,69,36,48,0.0 +14519,57,19.5,33,0.0 +14519,37,26,15,0.0 +14519,75,7.75,47,0.0 +14519,46,12,34,0.0 +14519,10,31,21,0.0 +14519,44,19.45,21,0.0 +14519,55,24,48,0.0 +14519,21,10,4,0.0 +14519,32,32,13,0.0 +14519,23,9,39,0.0 +14519,66,17,40,0.0 +14519,29,123.79,48,0.0 +14519,38,263.5,36,0.0 +14519,61,28.5,43,0.0 +14519,76,18,13,0.0 +14519,35,18,42,0.0 +14520,24,4.5,11,0.0 +14520,34,14,50,0.0 +14520,66,17,18,0.0 +14520,42,14,11,0.0 +14520,17,39,13,0.0 +14520,45,9.5,7,0.0 +14520,7,30,2,0.0 +14520,67,14,6,0.0 +14520,28,45.6,2,0.0 +14520,25,14,28,0.0 +14520,46,12,32,0.0 +14520,26,31.23,48,0.0 +14520,49,20,13,0.0 +14520,68,12.5,5,0.0 +14520,69,36,24,0.0 +14520,4,22,2,0.0 +14520,71,21.5,17,0.0 +14520,50,16.25,15,0.0 +14520,15,15.5,16,0.0 +14520,74,10,35,0.0 +14520,70,15,2,0.0 +14520,2,19,17,0.0 +14520,14,23.25,29,0.0 +14520,10,31,11,0.0 +14520,30,25.89,47,0.0 +14520,61,28.5,50,0.0 +14520,75,7.75,32,0.0 +14520,40,18.4,16,0.0 +14520,36,19,14,0.0 +14520,73,15,46,0.0 +14520,60,34,48,0.0 +14520,19,9.2,31,0.0 +14520,43,46,13,0.0 +14520,65,21.05,23,0.0 +14520,21,10,23,0.0 +14520,48,12.75,36,0.0 +14520,8,40,8,0.0 +14520,76,18,39,0.0 +14520,77,13,48,0.0 +14520,57,19.5,44,0.0 +14520,58,13.25,28,0.0 +14520,27,43.9,29,0.0 +14520,6,25,45,0.0 +14520,56,38,11,0.0 +14520,22,21,35,0.0 +14520,55,24,8,0.0 +14520,23,9,2,0.0 +14520,11,21,2,0.0 +14520,54,7.45,18,0.0 +14520,5,21.35,35,0.0 +14520,12,38,40,0.0 +14520,52,7,19,0.0 +14520,9,97,22,0.0 +14520,51,53,24,0.0 +14520,35,18,20,0.0 +14520,1,18,28,0.0 +14520,13,6,45,0.0 +14520,18,62.5,42,0.0 +14520,16,17.45,37,0.0 +14520,41,9.65,40,0.0 +14520,47,9.5,5,0.0 +14520,20,81,35,0.0 +14520,38,263.5,20,0.0 +14520,62,49.3,4,0.0 +14520,72,34.8,23,0.0 +14520,39,18,15,0.0 +14520,53,32.8,30,0.0 +14520,59,55,28,0.0 +14520,29,123.79,2,0.0 +14520,3,10,4,0.0 +14521,19,9.2,13,0.0 +14521,1,18,20,0.0 +14521,20,81,6,0.0 +14521,64,33.25,12,0.0 +14521,5,21.35,49,0.0 +14521,30,25.89,2,0.0 +14521,60,34,1,0.0 +14521,4,22,23,0.0 +14521,59,55,40,0.0 +14521,53,32.8,47,0.0 +14521,52,7,23,0.0 +14521,34,14,41,0.0 +14521,29,123.79,46,0.0 +14521,56,38,28,0.0 +14521,39,18,37,0.0 +14521,45,9.5,7,0.0 +14521,66,17,46,0.0 +14521,26,31.23,41,0.0 +14521,51,53,9,0.0 +14521,72,34.8,8,0.0 +14521,67,14,3,0.0 +14521,25,14,48,0.0 +14521,11,21,19,0.0 +14521,43,46,44,0.0 +14521,73,15,16,0.0 +14521,31,12.5,35,0.0 +14521,50,16.25,28,0.0 +14521,54,7.45,3,0.0 +14521,77,13,9,0.0 +14521,76,18,24,0.0 +14521,33,2.5,34,0.0 +14521,28,45.6,6,0.0 +14521,37,26,12,0.0 +14521,9,97,21,0.0 +14521,42,14,31,0.0 +14521,27,43.9,12,0.0 +14521,7,30,8,0.0 +14521,70,15,37,0.0 +14521,10,31,32,0.0 +14521,48,12.75,36,0.0 +14521,61,28.5,38,0.0 +14521,23,9,1,0.0 +14521,8,40,30,0.0 +14521,3,10,41,0.0 +14521,17,39,41,0.0 +14521,36,19,17,0.0 +14521,40,18.4,7,0.0 +14521,6,25,12,0.0 +14521,15,15.5,30,0.0 +14521,2,19,24,0.0 +14521,38,263.5,47,0.0 +14521,47,9.5,27,0.0 +14521,65,21.05,44,0.0 +14521,16,17.45,38,0.0 +14521,24,4.5,48,0.0 +14521,18,62.5,16,0.0 +14521,71,21.5,17,0.0 +14521,14,23.25,24,0.0 +14521,32,32,35,0.0 +14521,69,36,17,0.0 +14521,55,24,28,0.0 +14521,75,7.75,28,0.0 +14521,62,49.3,20,0.0 +14521,63,43.9,45,0.0 +14521,13,6,44,0.0 +14521,57,19.5,22,0.0 +14521,35,18,10,0.0 +14521,58,13.25,49,0.0 +14521,22,21,22,0.0 +14521,21,10,49,0.0 +14521,49,20,29,0.0 +14521,41,9.65,41,0.0 +14521,44,19.45,47,0.0 +14521,74,10,3,0.0 +14521,46,12,33,0.0 +14521,68,12.5,2,0.0 +14521,12,38,32,0.0 +14522,12,38,5,0.0 +14522,51,53,26,0.0 +14522,18,62.5,19,0.0 +14522,13,6,13,0.0 +14522,3,10,11,0.0 +14522,75,7.75,36,0.0 +14522,55,24,35,0.0 +14522,6,25,26,0.0 +14522,8,40,28,0.0 +14522,34,14,14,0.0 +14522,24,4.5,37,0.0 +14522,29,123.79,5,0.0 +14522,53,32.8,33,0.0 +14522,23,9,2,0.0 +14522,58,13.25,13,0.0 +14522,30,25.89,3,0.0 +14522,76,18,15,0.0 +14522,14,23.25,9,0.0 +14522,57,19.5,27,0.0 +14522,73,15,17,0.0 +14522,54,7.45,36,0.0 +14522,39,18,3,0.0 +14522,42,14,12,0.0 +14522,21,10,12,0.0 +14522,72,34.8,50,0.0 +14522,50,16.25,49,0.0 +14522,69,36,20,0.0 +14522,26,31.23,33,0.0 +14522,19,9.2,29,0.0 +14522,16,17.45,23,0.0 +14522,33,2.5,38,0.0 +14522,22,21,30,0.0 +14522,62,49.3,30,0.0 +14522,5,21.35,11,0.0 +14522,11,21,28,0.0 +14522,45,9.5,48,0.0 +14522,60,34,29,0.0 +14522,37,26,24,0.0 +14522,49,20,7,0.0 +14522,66,17,41,0.0 +14522,48,12.75,47,0.0 +14522,44,19.45,38,0.0 +14522,35,18,20,0.0 +14522,17,39,34,0.0 +14522,65,21.05,44,0.0 +14522,10,31,7,0.0 +14522,9,97,42,0.0 +14522,68,12.5,45,0.0 +14522,61,28.5,40,0.0 +14522,36,19,47,0.0 +14523,50,16.25,3,0.0 +14523,39,18,16,0.0 +14523,59,55,4,0.0 +14523,47,9.5,46,0.0 +14523,49,20,41,0.0 +14523,54,7.45,12,0.0 +14523,12,38,18,0.0 +14523,38,263.5,10,0.0 +14523,69,36,41,0.0 +14523,9,97,34,0.0 +14523,24,4.5,34,0.0 +14523,67,14,17,0.0 +14523,71,21.5,4,0.0 +14523,57,19.5,32,0.0 +14523,42,14,49,0.0 +14523,41,9.65,48,0.0 +14523,68,12.5,45,0.0 +14523,77,13,17,0.0 +14523,74,10,30,0.0 +14523,31,12.5,14,0.0 +14523,8,40,22,0.0 +14523,64,33.25,16,0.0 +14523,19,9.2,22,0.0 +14523,14,23.25,6,0.0 +14523,18,62.5,50,0.0 +14523,34,14,8,0.0 +14523,21,10,34,0.0 +14523,43,46,9,0.0 +14523,76,18,36,0.0 +14523,75,7.75,49,0.0 +14524,6,25,24,0.0 +14524,25,14,10,0.0 +14524,34,14,1,0.0 +14524,31,12.5,12,0.0 +14524,26,31.23,29,0.0 +14524,42,14,12,0.0 +14524,60,34,39,0.0 +14524,8,40,36,0.0 +14524,57,19.5,3,0.0 +14524,48,12.75,29,0.0 +14524,27,43.9,45,0.0 +14524,70,15,37,0.0 +14524,7,30,43,0.0 +14524,13,6,41,0.0 +14524,53,32.8,1,0.0 +14524,19,9.2,9,0.0 +14524,65,21.05,6,0.0 +14524,43,46,17,0.0 +14524,45,9.5,4,0.0 +14524,28,45.6,24,0.0 +14524,17,39,13,0.0 +14524,67,14,27,0.0 +14524,15,15.5,27,0.0 +14524,32,32,30,0.0 +14524,16,17.45,31,0.0 +14524,54,7.45,33,0.0 +14524,52,7,14,0.0 +14524,10,31,31,0.0 +14524,66,17,35,0.0 +14524,4,22,25,0.0 +14524,75,7.75,8,0.0 +14524,22,21,7,0.0 +14524,24,4.5,20,0.0 +14524,71,21.5,34,0.0 +14524,2,19,41,0.0 +14525,50,16.25,36,0.0 +14525,63,43.9,29,0.0 +14525,4,22,32,0.0 +14525,47,9.5,23,0.0 +14525,20,81,3,0.0 +14525,33,2.5,7,0.0 +14525,34,14,35,0.0 +14525,38,263.5,47,0.0 +14525,54,7.45,23,0.0 +14525,45,9.5,39,0.0 +14525,26,31.23,6,0.0 +14525,71,21.5,47,0.0 +14525,48,12.75,19,0.0 +14525,74,10,6,0.0 +14525,55,24,22,0.0 +14525,49,20,23,0.0 +14525,15,15.5,22,0.0 +14525,5,21.35,42,0.0 +14525,29,123.79,33,0.0 +14525,28,45.6,44,0.0 +14525,12,38,8,0.0 +14525,60,34,37,0.0 +14525,56,38,2,0.0 +14525,75,7.75,15,0.0 +14525,13,6,36,0.0 +14525,24,4.5,31,0.0 +14525,11,21,46,0.0 +14525,25,14,16,0.0 +14525,70,15,3,0.0 +14525,61,28.5,6,0.0 +14525,59,55,15,0.0 +14525,62,49.3,18,0.0 +14525,67,14,29,0.0 +14525,57,19.5,36,0.0 +14525,9,97,19,0.0 +14525,52,7,8,0.0 +14525,36,19,42,0.0 +14525,2,19,36,0.0 +14525,31,12.5,44,0.0 +14525,58,13.25,23,0.0 +14525,43,46,22,0.0 +14525,44,19.45,40,0.0 +14525,39,18,11,0.0 +14525,18,62.5,19,0.0 +14525,66,17,12,0.0 +14525,72,34.8,37,0.0 +14525,46,12,5,0.0 +14525,69,36,20,0.0 +14525,23,9,43,0.0 +14525,6,25,27,0.0 +14525,51,53,9,0.0 +14525,73,15,30,0.0 +14526,48,12.75,9,0.0 +14527,59,55,41,0.0 +14527,23,9,34,0.0 +14527,43,46,43,0.0 +14527,28,45.6,5,0.0 +14527,66,17,16,0.0 +14527,1,18,1,0.0 +14527,65,21.05,25,0.0 +14527,4,22,27,0.0 +14527,71,21.5,22,0.0 +14527,47,9.5,23,0.0 +14527,8,40,17,0.0 +14527,34,14,40,0.0 +14527,75,7.75,47,0.0 +14527,48,12.75,9,0.0 +14527,12,38,23,0.0 +14527,76,18,12,0.0 +14527,31,12.5,43,0.0 +14527,60,34,18,0.0 +14527,5,21.35,13,0.0 +14527,49,20,2,0.0 +14527,11,21,3,0.0 +14527,24,4.5,50,0.0 +14527,69,36,37,0.0 +14527,21,10,22,0.0 +14527,36,19,24,0.0 +14527,17,39,32,0.0 +14527,2,19,29,0.0 +14527,9,97,19,0.0 +14527,73,15,28,0.0 +14527,53,32.8,36,0.0 +14527,14,23.25,4,0.0 +14527,33,2.5,12,0.0 +14527,77,13,3,0.0 +14527,57,19.5,42,0.0 +14527,45,9.5,8,0.0 +14527,3,10,32,0.0 +14527,22,21,11,0.0 +14527,15,15.5,9,0.0 +14527,58,13.25,35,0.0 +14527,25,14,46,0.0 +14527,20,81,6,0.0 +14527,63,43.9,39,0.0 +14528,77,13,44,0.0 +14528,52,7,4,0.0 +14528,5,21.35,1,0.0 +14528,63,43.9,27,0.0 +14528,11,21,8,0.0 +14528,38,263.5,32,0.0 +14528,44,19.45,4,0.0 +14528,22,21,29,0.0 +14528,20,81,5,0.0 +14528,46,12,34,0.0 +14528,32,32,44,0.0 +14528,24,4.5,48,0.0 +14528,29,123.79,9,0.0 +14528,73,15,45,0.0 +14528,69,36,33,0.0 +14528,8,40,49,0.0 +14528,65,21.05,42,0.0 +14528,67,14,2,0.0 +14528,41,9.65,17,0.0 +14528,57,19.5,15,0.0 +14528,9,97,49,0.0 +14528,64,33.25,42,0.0 +14528,70,15,31,0.0 +14528,23,9,48,0.0 +14528,6,25,29,0.0 +14528,74,10,8,0.0 +14528,45,9.5,6,0.0 +14528,21,10,33,0.0 +14528,55,24,25,0.0 +14528,75,7.75,28,0.0 +14528,19,9.2,11,0.0 +14529,71,21.5,23,0.0 +14529,12,38,41,0.0 +14529,13,6,22,0.0 +14529,51,53,34,0.0 +14529,34,14,21,0.0 +14529,36,19,49,0.0 +14529,10,31,46,0.0 +14529,28,45.6,29,0.0 +14529,26,31.23,23,0.0 +14529,59,55,1,0.0 +14529,43,46,46,0.0 +14529,62,49.3,47,0.0 +14529,53,32.8,33,0.0 +14529,8,40,29,0.0 +14529,57,19.5,18,0.0 +14529,23,9,34,0.0 +14529,21,10,28,0.0 +14529,69,36,31,0.0 +14529,55,24,7,0.0 +14529,73,15,6,0.0 +14529,30,25.89,33,0.0 +14529,60,34,28,0.0 +14529,6,25,7,0.0 +14529,7,30,33,0.0 +14529,22,21,13,0.0 +14529,11,21,44,0.0 +14529,70,15,10,0.0 +14529,68,12.5,27,0.0 +14529,65,21.05,5,0.0 +14529,40,18.4,36,0.0 +14529,33,2.5,42,0.0 +14529,17,39,49,0.0 +14529,47,9.5,4,0.0 +14529,31,12.5,16,0.0 +14529,64,33.25,38,0.0 +14529,76,18,45,0.0 +14529,25,14,39,0.0 +14529,58,13.25,25,0.0 +14529,20,81,19,0.0 +14529,32,32,19,0.0 +14529,19,9.2,8,0.0 +14529,56,38,28,0.0 +14529,44,19.45,10,0.0 +14529,72,34.8,23,0.0 +14529,45,9.5,14,0.0 +14529,38,263.5,20,0.0 +14529,3,10,6,0.0 +14529,27,43.9,49,0.0 +14529,2,19,35,0.0 +14529,18,62.5,35,0.0 +14529,29,123.79,15,0.0 +14529,46,12,20,0.0 +14529,37,26,41,0.0 +14529,48,12.75,4,0.0 +14529,9,97,18,0.0 +14529,61,28.5,6,0.0 +14529,16,17.45,23,0.0 +14529,49,20,19,0.0 +14529,5,21.35,12,0.0 +14529,1,18,37,0.0 +14530,36,19,40,0.0 +14530,1,18,3,0.0 +14530,51,53,21,0.0 +14530,9,97,12,0.0 +14530,43,46,42,0.0 +14530,54,7.45,11,0.0 +14530,7,30,30,0.0 +14530,24,4.5,28,0.0 +14530,70,15,44,0.0 +14530,15,15.5,15,0.0 +14530,55,24,47,0.0 +14530,56,38,7,0.0 +14530,64,33.25,11,0.0 +14530,67,14,31,0.0 +14530,12,38,50,0.0 +14530,74,10,47,0.0 +14530,73,15,23,0.0 +14530,21,10,18,0.0 +14530,23,9,36,0.0 +14530,68,12.5,49,0.0 +14530,20,81,4,0.0 +14530,47,9.5,31,0.0 +14530,60,34,11,0.0 +14530,2,19,4,0.0 +14530,45,9.5,47,0.0 +14530,46,12,14,0.0 +14530,44,19.45,22,0.0 +14530,16,17.45,24,0.0 +14530,42,14,36,0.0 +14530,11,21,32,0.0 +14530,48,12.75,11,0.0 +14530,29,123.79,3,0.0 +14530,72,34.8,10,0.0 +14530,10,31,22,0.0 +14530,49,20,33,0.0 +14530,22,21,47,0.0 +14530,58,13.25,11,0.0 +14530,40,18.4,44,0.0 +14530,3,10,38,0.0 +14530,34,14,23,0.0 +14531,8,40,14,0.0 +14531,1,18,26,0.0 +14531,48,12.75,50,0.0 +14531,11,21,15,0.0 +14531,74,10,33,0.0 +14531,61,28.5,2,0.0 +14531,76,18,46,0.0 +14531,40,18.4,32,0.0 +14531,46,12,24,0.0 +14531,6,25,13,0.0 +14531,5,21.35,23,0.0 +14531,32,32,4,0.0 +14531,43,46,18,0.0 +14531,49,20,36,0.0 +14531,18,62.5,17,0.0 +14531,7,30,43,0.0 +14531,67,14,21,0.0 +14531,56,38,25,0.0 +14531,31,12.5,22,0.0 +14531,72,34.8,24,0.0 +14531,25,14,16,0.0 +14531,57,19.5,48,0.0 +14531,36,19,29,0.0 +14531,75,7.75,4,0.0 +14531,20,81,33,0.0 +14531,19,9.2,23,0.0 +14531,10,31,1,0.0 +14531,33,2.5,28,0.0 +14531,65,21.05,27,0.0 +14531,21,10,26,0.0 +14531,59,55,7,0.0 +14531,34,14,38,0.0 +14531,62,49.3,29,0.0 +14531,27,43.9,16,0.0 +14532,68,12.5,21,0.0 +14532,54,7.45,22,0.0 +14532,53,32.8,41,0.0 +14532,57,19.5,42,0.0 +14532,20,81,7,0.0 +14532,22,21,9,0.0 +14532,58,13.25,50,0.0 +14532,56,38,50,0.0 +14532,38,263.5,11,0.0 +14532,52,7,25,0.0 +14532,28,45.6,31,0.0 +14532,77,13,31,0.0 +14532,8,40,20,0.0 +14532,1,18,21,0.0 +14532,47,9.5,42,0.0 +14532,67,14,40,0.0 +14532,30,25.89,26,0.0 +14532,10,31,19,0.0 +14532,65,21.05,50,0.0 +14532,41,9.65,35,0.0 +14532,6,25,8,0.0 +14532,60,34,33,0.0 +14532,45,9.5,7,0.0 +14532,17,39,37,0.0 +14532,33,2.5,6,0.0 +14532,14,23.25,22,0.0 +14532,3,10,31,0.0 +14532,61,28.5,36,0.0 +14532,31,12.5,3,0.0 +14532,15,15.5,50,0.0 +14532,59,55,42,0.0 +14532,21,10,21,0.0 +14532,51,53,44,0.0 +14532,27,43.9,14,0.0 +14532,36,19,41,0.0 +14533,17,39,17,0.0 +14533,44,19.45,31,0.0 +14533,26,31.23,8,0.0 +14533,31,12.5,12,0.0 +14533,70,15,49,0.0 +14533,50,16.25,40,0.0 +14533,30,25.89,50,0.0 +14533,61,28.5,25,0.0 +14533,39,18,3,0.0 +14533,9,97,45,0.0 +14533,8,40,13,0.0 +14533,11,21,3,0.0 +14533,72,34.8,28,0.0 +14533,54,7.45,45,0.0 +14533,49,20,1,0.0 +14533,27,43.9,10,0.0 +14533,53,32.8,18,0.0 +14533,38,263.5,46,0.0 +14533,75,7.75,43,0.0 +14533,65,21.05,1,0.0 +14533,37,26,21,0.0 +14534,18,62.5,38,0.0 +14534,35,18,43,0.0 +14534,76,18,9,0.0 +14534,77,13,49,0.0 +14534,24,4.5,4,0.0 +14534,74,10,17,0.0 +14534,33,2.5,1,0.0 +14534,49,20,24,0.0 +14534,75,7.75,45,0.0 +14534,59,55,7,0.0 +14534,34,14,41,0.0 +14534,32,32,4,0.0 +14534,71,21.5,36,0.0 +14534,27,43.9,23,0.0 +14534,39,18,38,0.0 +14534,42,14,3,0.0 +14534,45,9.5,27,0.0 +14534,50,16.25,28,0.0 +14534,38,263.5,34,0.0 +14534,31,12.5,34,0.0 +14534,20,81,35,0.0 +14534,29,123.79,50,0.0 +14535,71,21.5,45,0.0 +14535,20,81,23,0.0 +14535,8,40,19,0.0 +14535,43,46,17,0.0 +14535,40,18.4,13,0.0 +14535,23,9,49,0.0 +14535,3,10,50,0.0 +14535,16,17.45,19,0.0 +14535,54,7.45,20,0.0 +14535,2,19,10,0.0 +14535,47,9.5,25,0.0 +14535,12,38,44,0.0 +14535,41,9.65,34,0.0 +14535,29,123.79,14,0.0 +14535,48,12.75,28,0.0 +14535,72,34.8,8,0.0 +14535,46,12,4,0.0 +14535,24,4.5,40,0.0 +14535,4,22,5,0.0 +14535,59,55,38,0.0 +14535,55,24,24,0.0 +14535,75,7.75,30,0.0 +14536,76,18,20,0.0 +14536,35,18,43,0.0 +14536,11,21,20,0.0 +14536,69,36,5,0.0 +14536,72,34.8,32,0.0 +14536,39,18,5,0.0 +14536,8,40,21,0.0 +14536,47,9.5,18,0.0 +14536,12,38,32,0.0 +14536,27,43.9,30,0.0 +14536,32,32,48,0.0 +14536,16,17.45,5,0.0 +14536,44,19.45,46,0.0 +14536,42,14,28,0.0 +14536,43,46,25,0.0 +14536,19,9.2,45,0.0 +14536,18,62.5,43,0.0 +14536,17,39,48,0.0 +14536,13,6,29,0.0 +14536,7,30,25,0.0 +14536,73,15,24,0.0 +14536,33,2.5,27,0.0 +14536,5,21.35,17,0.0 +14536,34,14,49,0.0 +14536,29,123.79,15,0.0 +14536,2,19,21,0.0 +14536,20,81,21,0.0 +14536,3,10,37,0.0 +14536,66,17,5,0.0 +14536,54,7.45,41,0.0 +14536,45,9.5,45,0.0 +14536,50,16.25,5,0.0 +14536,21,10,3,0.0 +14536,65,21.05,24,0.0 +14536,60,34,35,0.0 +14536,31,12.5,24,0.0 +14536,58,13.25,31,0.0 +14536,62,49.3,34,0.0 +14536,9,97,6,0.0 +14536,70,15,42,0.0 +14536,38,263.5,14,0.0 +14536,61,28.5,39,0.0 +14536,75,7.75,28,0.0 +14536,41,9.65,13,0.0 +14536,59,55,39,0.0 +14536,48,12.75,45,0.0 +14536,14,23.25,31,0.0 +14536,64,33.25,30,0.0 +14536,52,7,38,0.0 +14536,49,20,30,0.0 +14536,67,14,18,0.0 +14536,37,26,32,0.0 +14536,28,45.6,25,0.0 +14536,10,31,6,0.0 +14536,71,21.5,13,0.0 +14536,25,14,47,0.0 +14536,36,19,12,0.0 +14537,6,25,17,0.0 +14537,75,7.75,44,0.0 +14537,77,13,2,0.0 +14537,4,22,46,0.0 +14537,53,32.8,13,0.0 +14537,60,34,6,0.0 +14537,14,23.25,20,0.0 +14537,32,32,48,0.0 +14537,8,40,42,0.0 +14537,7,30,18,0.0 +14537,55,24,4,0.0 +14537,52,7,9,0.0 +14537,68,12.5,41,0.0 +14537,29,123.79,24,0.0 +14537,18,62.5,26,0.0 +14537,22,21,35,0.0 +14537,56,38,8,0.0 +14537,74,10,48,0.0 +14537,26,31.23,37,0.0 +14537,17,39,22,0.0 +14538,25,14,47,0.0 +14538,28,45.6,8,0.0 +14538,57,19.5,45,0.0 +14538,46,12,9,0.0 +14538,77,13,33,0.0 +14538,6,25,25,0.0 +14538,47,9.5,24,0.0 +14538,21,10,33,0.0 +14538,44,19.45,33,0.0 +14538,36,19,11,0.0 +14538,76,18,16,0.0 +14538,2,19,23,0.0 +14538,40,18.4,28,0.0 +14538,75,7.75,32,0.0 +14538,33,2.5,48,0.0 +14538,68,12.5,8,0.0 +14538,13,6,47,0.0 +14538,34,14,36,0.0 +14538,14,23.25,50,0.0 +14538,19,9.2,42,0.0 +14538,23,9,7,0.0 +14538,11,21,31,0.0 +14538,54,7.45,41,0.0 +14538,24,4.5,16,0.0 +14538,45,9.5,41,0.0 +14538,71,21.5,41,0.0 +14538,10,31,26,0.0 +14538,42,14,13,0.0 +14538,48,12.75,50,0.0 +14538,39,18,36,0.0 +14538,43,46,29,0.0 +14538,3,10,27,0.0 +14538,72,34.8,40,0.0 +14538,50,16.25,43,0.0 +14538,58,13.25,30,0.0 +14538,38,263.5,27,0.0 +14539,41,9.65,48,0.0 +14539,65,21.05,48,0.0 +14539,63,43.9,12,0.0 +14539,26,31.23,32,0.0 +14539,68,12.5,15,0.0 +14540,56,38,18,0.0 +14540,42,14,39,0.0 +14540,40,18.4,20,0.0 +14540,4,22,17,0.0 +14540,59,55,50,0.0 +14540,46,12,46,0.0 +14540,1,18,45,0.0 +14540,16,17.45,45,0.0 +14540,24,4.5,11,0.0 +14540,37,26,37,0.0 +14540,38,263.5,33,0.0 +14540,65,21.05,17,0.0 +14540,64,33.25,50,0.0 +14540,8,40,49,0.0 +14540,71,21.5,34,0.0 +14540,66,17,44,0.0 +14540,62,49.3,48,0.0 +14540,51,53,18,0.0 +14540,44,19.45,39,0.0 +14540,25,14,44,0.0 +14540,58,13.25,39,0.0 +14540,11,21,23,0.0 +14540,28,45.6,21,0.0 +14540,22,21,8,0.0 +14540,63,43.9,46,0.0 +14540,15,15.5,42,0.0 +14540,27,43.9,4,0.0 +14540,9,97,3,0.0 +14540,3,10,25,0.0 +14540,72,34.8,4,0.0 +14540,47,9.5,36,0.0 +14540,68,12.5,45,0.0 +14540,60,34,40,0.0 +14540,69,36,48,0.0 +14540,31,12.5,12,0.0 +14540,43,46,2,0.0 +14540,20,81,38,0.0 +14540,67,14,19,0.0 +14540,48,12.75,8,0.0 +14540,76,18,14,0.0 +14540,13,6,19,0.0 +14540,33,2.5,24,0.0 +14541,35,18,49,0.0 +14541,18,62.5,5,0.0 +14541,52,7,43,0.0 +14541,44,19.45,46,0.0 +14541,48,12.75,17,0.0 +14541,17,39,13,0.0 +14541,37,26,28,0.0 +14541,76,18,3,0.0 +14541,69,36,39,0.0 +14541,19,9.2,28,0.0 +14541,32,32,7,0.0 +14541,25,14,30,0.0 +14541,72,34.8,24,0.0 +14541,9,97,14,0.0 +14541,38,263.5,41,0.0 +14541,63,43.9,7,0.0 +14541,58,13.25,37,0.0 +14541,20,81,46,0.0 +14541,53,32.8,16,0.0 +14541,64,33.25,22,0.0 +14541,74,10,10,0.0 +14541,67,14,45,0.0 +14541,45,9.5,9,0.0 +14541,49,20,42,0.0 +14541,66,17,46,0.0 +14541,8,40,26,0.0 +14541,7,30,8,0.0 +14541,22,21,32,0.0 +14541,77,13,2,0.0 +14541,1,18,24,0.0 +14541,26,31.23,34,0.0 +14541,30,25.89,36,0.0 +14541,21,10,3,0.0 +14542,69,36,16,0.0 +14542,13,6,20,0.0 +14542,77,13,46,0.0 +14542,38,263.5,43,0.0 +14542,76,18,41,0.0 +14542,42,14,1,0.0 +14542,56,38,1,0.0 +14542,47,9.5,11,0.0 +14542,23,9,43,0.0 +14542,15,15.5,27,0.0 +14542,26,31.23,30,0.0 +14542,67,14,18,0.0 +14542,48,12.75,33,0.0 +14542,68,12.5,14,0.0 +14542,32,32,44,0.0 +14542,51,53,17,0.0 +14542,29,123.79,35,0.0 +14542,6,25,42,0.0 +14542,4,22,43,0.0 +14542,70,15,11,0.0 +14542,74,10,27,0.0 +14542,12,38,22,0.0 +14542,18,62.5,16,0.0 +14543,49,20,26,0.0 +14543,59,55,29,0.0 +14543,28,45.6,27,0.0 +14543,76,18,6,0.0 +14543,21,10,47,0.0 +14543,2,19,3,0.0 +14543,65,21.05,47,0.0 +14543,8,40,39,0.0 +14543,13,6,33,0.0 +14543,14,23.25,31,0.0 +14543,5,21.35,39,0.0 +14543,40,18.4,45,0.0 +14543,71,21.5,43,0.0 +14543,62,49.3,16,0.0 +14543,47,9.5,27,0.0 +14543,6,25,46,0.0 +14543,44,19.45,32,0.0 +14543,66,17,45,0.0 +14543,24,4.5,24,0.0 +14543,63,43.9,1,0.0 +14543,22,21,49,0.0 +14543,34,14,18,0.0 +14543,10,31,3,0.0 +14543,55,24,1,0.0 +14543,56,38,31,0.0 +14543,32,32,42,0.0 +14543,72,34.8,39,0.0 +14543,50,16.25,31,0.0 +14543,42,14,44,0.0 +14543,57,19.5,19,0.0 +14543,18,62.5,30,0.0 +14543,64,33.25,47,0.0 +14543,17,39,8,0.0 +14543,68,12.5,29,0.0 +14543,38,263.5,35,0.0 +14543,60,34,13,0.0 +14543,25,14,36,0.0 +14543,46,12,10,0.0 +14543,1,18,18,0.0 +14543,58,13.25,13,0.0 +14543,30,25.89,24,0.0 +14543,48,12.75,24,0.0 +14543,61,28.5,13,0.0 +14543,43,46,1,0.0 +14543,20,81,23,0.0 +14543,39,18,47,0.0 +14543,41,9.65,49,0.0 +14543,12,38,34,0.0 +14543,3,10,22,0.0 +14543,4,22,48,0.0 +14543,37,26,47,0.0 +14543,36,19,24,0.0 +14543,11,21,19,0.0 +14544,44,19.45,15,0.0 +14544,73,15,38,0.0 +14544,64,33.25,14,0.0 +14544,71,21.5,5,0.0 +14544,17,39,13,0.0 +14544,63,43.9,12,0.0 +14544,1,18,29,0.0 +14544,43,46,20,0.0 +14544,34,14,34,0.0 +14544,29,123.79,40,0.0 +14544,46,12,49,0.0 +14544,14,23.25,11,0.0 +14544,51,53,11,0.0 +14544,30,25.89,43,0.0 +14544,7,30,39,0.0 +14544,74,10,27,0.0 +14544,49,20,48,0.0 +14544,60,34,27,0.0 +14544,22,21,4,0.0 +14544,12,38,26,0.0 +14544,41,9.65,25,0.0 +14544,23,9,45,0.0 +14544,36,19,25,0.0 +14544,20,81,16,0.0 +14544,6,25,45,0.0 +14544,75,7.75,33,0.0 +14544,62,49.3,17,0.0 +14544,24,4.5,25,0.0 +14544,70,15,47,0.0 +14544,21,10,44,0.0 +14544,48,12.75,40,0.0 +14544,35,18,19,0.0 +14544,55,24,21,0.0 +14544,10,31,21,0.0 +14544,13,6,10,0.0 +14544,31,12.5,26,0.0 +14544,53,32.8,22,0.0 +14544,72,34.8,27,0.0 +14544,56,38,6,0.0 +14544,8,40,19,0.0 +14544,39,18,25,0.0 +14544,59,55,22,0.0 +14544,45,9.5,19,0.0 +14544,2,19,8,0.0 +14544,47,9.5,29,0.0 +14544,16,17.45,26,0.0 +14544,52,7,8,0.0 +14544,65,21.05,48,0.0 +14544,28,45.6,42,0.0 +14544,5,21.35,31,0.0 +14544,19,9.2,1,0.0 +14544,68,12.5,29,0.0 +14544,50,16.25,6,0.0 +14544,26,31.23,19,0.0 +14544,38,263.5,17,0.0 +14544,15,15.5,28,0.0 +14545,7,30,8,0.0 +14545,26,31.23,12,0.0 +14545,47,9.5,36,0.0 +14545,53,32.8,13,0.0 +14545,59,55,24,0.0 +14545,49,20,37,0.0 +14545,43,46,30,0.0 +14545,52,7,4,0.0 +14545,17,39,5,0.0 +14545,62,49.3,12,0.0 +14545,9,97,15,0.0 +14545,25,14,19,0.0 +14545,27,43.9,2,0.0 +14545,72,34.8,1,0.0 +14545,41,9.65,22,0.0 +14545,50,16.25,41,0.0 +14545,76,18,42,0.0 +14545,44,19.45,23,0.0 +14545,37,26,6,0.0 +14545,63,43.9,49,0.0 +14545,66,17,30,0.0 +14545,19,9.2,17,0.0 +14545,61,28.5,5,0.0 +14545,56,38,7,0.0 +14545,33,2.5,50,0.0 +14545,3,10,47,0.0 +14545,15,15.5,34,0.0 +14545,38,263.5,3,0.0 +14545,45,9.5,48,0.0 +14545,71,21.5,8,0.0 +14545,55,24,32,0.0 +14545,1,18,14,0.0 +14545,29,123.79,5,0.0 +14545,69,36,50,0.0 +14546,36,19,7,0.0 +14546,70,15,44,0.0 +14546,14,23.25,33,0.0 +14546,62,49.3,41,0.0 +14546,38,263.5,15,0.0 +14546,22,21,6,0.0 +14546,5,21.35,8,0.0 +14546,17,39,12,0.0 +14546,4,22,3,0.0 +14546,42,14,25,0.0 +14546,64,33.25,32,0.0 +14546,16,17.45,47,0.0 +14546,50,16.25,6,0.0 +14546,75,7.75,22,0.0 +14546,9,97,36,0.0 +14546,41,9.65,22,0.0 +14546,29,123.79,23,0.0 +14546,61,28.5,18,0.0 +14546,74,10,30,0.0 +14546,47,9.5,26,0.0 +14546,20,81,5,0.0 +14546,10,31,18,0.0 +14546,8,40,48,0.0 +14546,30,25.89,12,0.0 +14547,13,6,44,0.0 +14547,67,14,50,0.0 +14547,39,18,42,0.0 +14547,59,55,50,0.0 +14547,26,31.23,2,0.0 +14547,19,9.2,20,0.0 +14547,44,19.45,10,0.0 +14547,61,28.5,13,0.0 +14547,3,10,9,0.0 +14547,33,2.5,32,0.0 +14547,69,36,23,0.0 +14547,10,31,25,0.0 +14547,48,12.75,6,0.0 +14547,54,7.45,22,0.0 +14547,58,13.25,7,0.0 +14547,72,34.8,28,0.0 +14547,55,24,44,0.0 +14547,47,9.5,12,0.0 +14547,23,9,49,0.0 +14547,74,10,40,0.0 +14547,75,7.75,38,0.0 +14547,51,53,47,0.0 +14547,9,97,20,0.0 +14547,22,21,10,0.0 +14547,66,17,47,0.0 +14547,21,10,29,0.0 +14547,18,62.5,8,0.0 +14547,37,26,25,0.0 +14547,65,21.05,18,0.0 +14548,36,19,28,0.0 +14548,6,25,22,0.0 +14548,63,43.9,47,0.0 +14548,32,32,14,0.0 +14548,50,16.25,47,0.0 +14548,69,36,3,0.0 +14548,57,19.5,21,0.0 +14548,20,81,48,0.0 +14548,42,14,14,0.0 +14548,10,31,8,0.0 +14548,72,34.8,26,0.0 +14548,39,18,27,0.0 +14548,66,17,37,0.0 +14548,75,7.75,1,0.0 +14548,35,18,29,0.0 +14548,74,10,45,0.0 +14548,5,21.35,5,0.0 +14548,33,2.5,7,0.0 +14548,15,15.5,42,0.0 +14548,23,9,44,0.0 +14548,47,9.5,7,0.0 +14548,17,39,16,0.0 +14548,46,12,22,0.0 +14548,9,97,13,0.0 +14549,11,21,18,0.0 +14549,42,14,37,0.0 +14549,41,9.65,15,0.0 +14549,58,13.25,39,0.0 +14549,75,7.75,22,0.0 +14549,62,49.3,1,0.0 +14549,13,6,22,0.0 +14549,66,17,49,0.0 +14549,22,21,5,0.0 +14549,39,18,44,0.0 +14549,49,20,18,0.0 +14549,10,31,15,0.0 +14549,29,123.79,20,0.0 +14549,2,19,23,0.0 +14549,59,55,24,0.0 +14549,26,31.23,18,0.0 +14549,31,12.5,47,0.0 +14549,72,34.8,30,0.0 +14549,14,23.25,38,0.0 +14549,38,263.5,26,0.0 +14549,1,18,4,0.0 +14549,50,16.25,12,0.0 +14549,8,40,37,0.0 +14549,33,2.5,34,0.0 +14549,68,12.5,9,0.0 +14549,18,62.5,33,0.0 +14549,51,53,48,0.0 +14549,28,45.6,9,0.0 +14549,67,14,37,0.0 +14549,63,43.9,29,0.0 +14549,12,38,49,0.0 +14549,23,9,17,0.0 +14549,32,32,2,0.0 +14549,54,7.45,25,0.0 +14549,37,26,11,0.0 +14549,5,21.35,24,0.0 +14549,53,32.8,27,0.0 +14549,71,21.5,37,0.0 +14549,43,46,28,0.0 +14549,61,28.5,41,0.0 +14549,34,14,34,0.0 +14549,56,38,30,0.0 +14549,25,14,41,0.0 +14549,9,97,45,0.0 +14549,35,18,8,0.0 +14549,15,15.5,12,0.0 +14549,55,24,28,0.0 +14550,69,36,30,0.0 +14550,19,9.2,4,0.0 +14550,23,9,44,0.0 +14550,22,21,30,0.0 +14550,33,2.5,47,0.0 +14550,25,14,13,0.0 +14550,65,21.05,24,0.0 +14550,13,6,41,0.0 +14550,48,12.75,12,0.0 +14550,63,43.9,9,0.0 +14550,42,14,2,0.0 +14550,56,38,20,0.0 +14550,41,9.65,10,0.0 +14551,52,7,6,0.0 +14551,43,46,23,0.0 +14551,11,21,20,0.0 +14551,1,18,2,0.0 +14551,47,9.5,41,0.0 +14551,45,9.5,39,0.0 +14551,71,21.5,10,0.0 +14551,28,45.6,16,0.0 +14551,67,14,6,0.0 +14551,26,31.23,11,0.0 +14551,8,40,29,0.0 +14551,34,14,25,0.0 +14551,4,22,20,0.0 +14551,64,33.25,12,0.0 +14551,41,9.65,24,0.0 +14551,32,32,25,0.0 +14551,36,19,43,0.0 +14551,59,55,47,0.0 +14551,60,34,14,0.0 +14551,23,9,20,0.0 +14551,51,53,16,0.0 +14551,61,28.5,45,0.0 +14551,30,25.89,36,0.0 +14551,10,31,12,0.0 +14551,75,7.75,21,0.0 +14551,16,17.45,48,0.0 +14551,12,38,17,0.0 +14551,40,18.4,13,0.0 +14551,5,21.35,6,0.0 +14551,19,9.2,33,0.0 +14551,76,18,38,0.0 +14551,24,4.5,23,0.0 +14551,21,10,18,0.0 +14551,14,23.25,3,0.0 +14551,15,15.5,20,0.0 +14551,66,17,34,0.0 +14551,55,24,33,0.0 +14552,20,81,47,0.0 +14552,21,10,23,0.0 +14552,62,49.3,32,0.0 +14552,15,15.5,46,0.0 +14552,24,4.5,41,0.0 +14552,12,38,33,0.0 +14552,35,18,14,0.0 +14552,51,53,21,0.0 +14552,57,19.5,45,0.0 +14552,28,45.6,30,0.0 +14552,63,43.9,15,0.0 +14552,9,97,44,0.0 +14552,36,19,23,0.0 +14552,56,38,30,0.0 +14552,54,7.45,25,0.0 +14552,32,32,28,0.0 +14552,8,40,47,0.0 +14552,60,34,17,0.0 +14552,46,12,21,0.0 +14552,66,17,1,0.0 +14552,25,14,4,0.0 +14552,45,9.5,41,0.0 +14552,1,18,25,0.0 +14552,69,36,48,0.0 +14553,52,7,9,0.0 +14553,19,9.2,33,0.0 +14553,12,38,24,0.0 +14553,26,31.23,32,0.0 +14553,30,25.89,5,0.0 +14553,21,10,20,0.0 +14553,29,123.79,44,0.0 +14553,37,26,42,0.0 +14553,27,43.9,20,0.0 +14553,32,32,2,0.0 +14553,75,7.75,2,0.0 +14553,62,49.3,47,0.0 +14553,43,46,5,0.0 +14553,18,62.5,49,0.0 +14553,65,21.05,7,0.0 +14553,17,39,47,0.0 +14553,48,12.75,14,0.0 +14553,59,55,19,0.0 +14553,16,17.45,29,0.0 +14553,64,33.25,2,0.0 +14553,10,31,7,0.0 +14553,8,40,29,0.0 +14553,24,4.5,18,0.0 +14553,54,7.45,30,0.0 +14553,72,34.8,36,0.0 +14553,61,28.5,35,0.0 +14553,77,13,2,0.0 +14553,22,21,40,0.0 +14554,23,9,16,0.0 +14554,27,43.9,32,0.0 +14554,7,30,25,0.0 +14554,68,12.5,31,0.0 +14554,55,24,12,0.0 +14554,30,25.89,28,0.0 +14555,2,19,38,0.0 +14555,6,25,21,0.0 +14555,39,18,1,0.0 +14555,30,25.89,6,0.0 +14555,38,263.5,28,0.0 +14555,56,38,24,0.0 +14555,28,45.6,22,0.0 +14555,11,21,44,0.0 +14555,50,16.25,32,0.0 +14555,35,18,15,0.0 +14555,74,10,25,0.0 +14555,25,14,24,0.0 +14555,52,7,22,0.0 +14555,63,43.9,50,0.0 +14555,55,24,28,0.0 +14556,44,19.45,8,0.0 +14556,66,17,44,0.0 +14556,9,97,28,0.0 +14556,38,263.5,16,0.0 +14557,72,34.8,32,0.0 +14557,68,12.5,12,0.0 +14557,25,14,4,0.0 +14557,29,123.79,24,0.0 +14557,48,12.75,30,0.0 +14557,59,55,49,0.0 +14557,66,17,1,0.0 +14557,74,10,5,0.0 +14557,75,7.75,33,0.0 +14557,11,21,36,0.0 +14557,36,19,5,0.0 +14557,39,18,3,0.0 +14557,67,14,14,0.0 +14557,30,25.89,36,0.0 +14557,52,7,44,0.0 +14557,49,20,48,0.0 +14557,61,28.5,3,0.0 +14557,37,26,14,0.0 +14557,51,53,36,0.0 +14557,57,19.5,45,0.0 +14557,16,17.45,33,0.0 +14557,55,24,29,0.0 +14557,8,40,31,0.0 +14557,44,19.45,17,0.0 +14557,56,38,41,0.0 +14557,31,12.5,14,0.0 +14557,41,9.65,7,0.0 +14557,35,18,34,0.0 +14557,40,18.4,33,0.0 +14557,10,31,44,0.0 +14557,76,18,1,0.0 +14557,19,9.2,38,0.0 +14557,1,18,21,0.0 +14557,20,81,27,0.0 +14557,54,7.45,22,0.0 +14557,27,43.9,24,0.0 +14557,38,263.5,38,0.0 +14557,4,22,35,0.0 +14557,60,34,10,0.0 +14557,12,38,17,0.0 +14557,7,30,19,0.0 +14557,63,43.9,32,0.0 +14557,43,46,24,0.0 +14557,71,21.5,14,0.0 +14557,77,13,49,0.0 +14557,6,25,2,0.0 +14557,32,32,43,0.0 +14557,33,2.5,5,0.0 +14557,13,6,9,0.0 +14557,58,13.25,47,0.0 +14557,9,97,42,0.0 +14557,45,9.5,44,0.0 +14557,23,9,3,0.0 +14557,22,21,5,0.0 +14557,24,4.5,41,0.0 +14557,15,15.5,36,0.0 +14557,3,10,15,0.0 +14557,42,14,12,0.0 +14557,65,21.05,6,0.0 +14557,53,32.8,50,0.0 +14557,69,36,41,0.0 +14557,62,49.3,47,0.0 +14557,14,23.25,39,0.0 +14557,18,62.5,31,0.0 +14557,21,10,21,0.0 +14557,70,15,11,0.0 +14557,46,12,19,0.0 +14557,26,31.23,8,0.0 +14557,2,19,43,0.0 +14557,34,14,18,0.0 +14557,50,16.25,8,0.0 +14558,32,32,5,0.0 +14558,31,12.5,15,0.0 +14558,34,14,25,0.0 +14558,70,15,26,0.0 +14558,40,18.4,15,0.0 +14558,10,31,41,0.0 +14558,8,40,36,0.0 +14558,73,15,5,0.0 +14558,62,49.3,14,0.0 +14558,22,21,47,0.0 +14558,12,38,8,0.0 +14558,54,7.45,48,0.0 +14558,17,39,18,0.0 +14558,43,46,19,0.0 +14559,76,18,23,0.0 +14559,72,34.8,22,0.0 +14559,44,19.45,14,0.0 +14559,63,43.9,48,0.0 +14559,69,36,5,0.0 +14559,42,14,24,0.0 +14559,49,20,2,0.0 +14559,66,17,26,0.0 +14559,41,9.65,38,0.0 +14559,34,14,14,0.0 +14559,46,12,15,0.0 +14559,30,25.89,17,0.0 +14559,12,38,13,0.0 +14559,13,6,45,0.0 +14559,77,13,6,0.0 +14559,54,7.45,16,0.0 +14559,26,31.23,49,0.0 +14559,9,97,24,0.0 +14559,57,19.5,9,0.0 +14559,36,19,40,0.0 +14559,4,22,31,0.0 +14559,43,46,30,0.0 +14560,30,25.89,22,0.0 +14560,75,7.75,46,0.0 +14560,3,10,1,0.0 +14560,74,10,25,0.0 +14560,57,19.5,7,0.0 +14560,40,18.4,44,0.0 +14560,67,14,48,0.0 +14560,1,18,10,0.0 +14560,4,22,6,0.0 +14560,17,39,28,0.0 +14560,47,9.5,44,0.0 +14560,5,21.35,12,0.0 +14560,11,21,19,0.0 +14560,76,18,45,0.0 +14560,70,15,44,0.0 +14560,18,62.5,3,0.0 +14560,33,2.5,49,0.0 +14560,13,6,30,0.0 +14560,36,19,5,0.0 +14560,41,9.65,25,0.0 +14560,37,26,41,0.0 +14560,71,21.5,34,0.0 +14560,2,19,28,0.0 +14560,55,24,39,0.0 +14560,7,30,29,0.0 +14560,69,36,31,0.0 +14560,14,23.25,9,0.0 +14560,44,19.45,7,0.0 +14560,60,34,42,0.0 +14560,39,18,7,0.0 +14560,27,43.9,34,0.0 +14560,9,97,50,0.0 +14560,29,123.79,43,0.0 +14560,15,15.5,39,0.0 +14560,43,46,30,0.0 +14560,61,28.5,15,0.0 +14561,66,17,25,0.0 +14561,56,38,39,0.0 +14561,71,21.5,39,0.0 +14561,60,34,6,0.0 +14561,37,26,41,0.0 +14561,29,123.79,50,0.0 +14561,38,263.5,19,0.0 +14561,1,18,40,0.0 +14561,25,14,35,0.0 +14561,64,33.25,43,0.0 +14561,55,24,19,0.0 +14561,75,7.75,20,0.0 +14561,52,7,3,0.0 +14561,32,32,19,0.0 +14561,30,25.89,7,0.0 +14561,12,38,37,0.0 +14561,23,9,34,0.0 +14561,68,12.5,27,0.0 +14561,9,97,15,0.0 +14561,50,16.25,15,0.0 +14561,17,39,32,0.0 +14561,26,31.23,15,0.0 +14561,44,19.45,44,0.0 +14561,2,19,10,0.0 +14561,59,55,22,0.0 +14561,15,15.5,31,0.0 +14561,5,21.35,41,0.0 +14561,18,62.5,16,0.0 +14561,41,9.65,44,0.0 +14562,7,30,20,0.0 +14562,8,40,28,0.0 +14562,35,18,16,0.0 +14562,77,13,45,0.0 +14562,52,7,38,0.0 +14562,54,7.45,33,0.0 +14562,25,14,9,0.0 +14562,75,7.75,20,0.0 +14562,10,31,24,0.0 +14562,20,81,31,0.0 +14562,58,13.25,20,0.0 +14562,45,9.5,13,0.0 +14562,22,21,18,0.0 +14562,70,15,19,0.0 +14562,12,38,23,0.0 +14562,26,31.23,34,0.0 +14562,48,12.75,34,0.0 +14562,23,9,23,0.0 +14562,30,25.89,21,0.0 +14562,27,43.9,31,0.0 +14562,69,36,11,0.0 +14562,5,21.35,31,0.0 +14562,36,19,15,0.0 +14562,62,49.3,5,0.0 +14562,18,62.5,35,0.0 +14562,72,34.8,32,0.0 +14562,63,43.9,11,0.0 +14562,76,18,13,0.0 +14562,11,21,50,0.0 +14562,6,25,45,0.0 +14562,16,17.45,18,0.0 +14562,43,46,6,0.0 +14562,61,28.5,27,0.0 +14562,67,14,17,0.0 +14562,47,9.5,24,0.0 +14562,4,22,43,0.0 +14562,34,14,19,0.0 +14562,64,33.25,46,0.0 +14562,53,32.8,45,0.0 +14562,55,24,41,0.0 +14562,50,16.25,4,0.0 +14562,65,21.05,50,0.0 +14562,24,4.5,14,0.0 +14562,49,20,8,0.0 +14562,51,53,50,0.0 +14562,66,17,30,0.0 +14562,15,15.5,4,0.0 +14562,73,15,14,0.0 +14562,40,18.4,33,0.0 +14562,46,12,16,0.0 +14562,57,19.5,39,0.0 +14562,31,12.5,44,0.0 +14562,44,19.45,30,0.0 +14562,21,10,17,0.0 +14562,42,14,38,0.0 +14562,2,19,33,0.0 +14562,14,23.25,39,0.0 +14562,38,263.5,13,0.0 +14562,37,26,32,0.0 +14562,74,10,40,0.0 +14562,71,21.5,27,0.0 +14562,59,55,24,0.0 +14562,13,6,17,0.0 +14562,60,34,33,0.0 +14562,17,39,2,0.0 +14562,29,123.79,2,0.0 +14562,19,9.2,18,0.0 +14562,32,32,7,0.0 +14562,33,2.5,33,0.0 +14562,56,38,6,0.0 +14563,41,9.65,16,0.0 +14563,43,46,35,0.0 +14563,35,18,36,0.0 +14563,32,32,49,0.0 +14563,29,123.79,30,0.0 +14563,28,45.6,18,0.0 +14563,24,4.5,46,0.0 +14563,17,39,46,0.0 +14563,59,55,5,0.0 +14563,6,25,42,0.0 +14563,47,9.5,47,0.0 +14563,37,26,14,0.0 +14563,49,20,50,0.0 +14563,10,31,48,0.0 +14563,3,10,36,0.0 +14563,55,24,45,0.0 +14563,76,18,2,0.0 +14563,57,19.5,32,0.0 +14563,75,7.75,15,0.0 +14563,45,9.5,42,0.0 +14563,4,22,41,0.0 +14563,34,14,4,0.0 +14563,11,21,9,0.0 +14563,68,12.5,27,0.0 +14563,56,38,41,0.0 +14563,9,97,48,0.0 +14563,66,17,16,0.0 +14563,23,9,47,0.0 +14563,69,36,12,0.0 +14563,73,15,49,0.0 +14563,38,263.5,18,0.0 +14563,44,19.45,40,0.0 +14563,2,19,6,0.0 +14563,25,14,46,0.0 +14563,70,15,11,0.0 +14563,40,18.4,50,0.0 +14563,65,21.05,5,0.0 +14563,20,81,33,0.0 +14563,51,53,22,0.0 +14563,77,13,17,0.0 +14563,54,7.45,44,0.0 +14563,18,62.5,46,0.0 +14563,16,17.45,22,0.0 +14563,39,18,3,0.0 +14563,12,38,41,0.0 +14563,46,12,1,0.0 +14563,53,32.8,7,0.0 +14563,33,2.5,44,0.0 +14563,30,25.89,10,0.0 +14563,14,23.25,20,0.0 +14563,21,10,7,0.0 +14563,8,40,13,0.0 +14563,64,33.25,25,0.0 +14563,67,14,50,0.0 +14563,36,19,41,0.0 +14563,50,16.25,36,0.0 +14563,1,18,40,0.0 +14563,74,10,47,0.0 +14563,7,30,1,0.0 +14563,13,6,2,0.0 +14563,42,14,21,0.0 +14563,63,43.9,3,0.0 +14563,31,12.5,1,0.0 +14563,27,43.9,26,0.0 +14563,60,34,38,0.0 +14563,72,34.8,36,0.0 +14564,63,43.9,6,0.0 +14564,13,6,46,0.0 +14564,29,123.79,22,0.0 +14564,57,19.5,47,0.0 +14564,60,34,40,0.0 +14564,34,14,27,0.0 +14564,55,24,6,0.0 +14564,58,13.25,36,0.0 +14564,22,21,7,0.0 +14564,48,12.75,45,0.0 +14564,67,14,45,0.0 +14564,68,12.5,46,0.0 +14564,69,36,4,0.0 +14564,72,34.8,50,0.0 +14565,14,23.25,36,0.0 +14565,55,24,32,0.0 +14565,70,15,34,0.0 +14565,3,10,36,0.0 +14565,39,18,42,0.0 +14565,49,20,47,0.0 +14565,46,12,35,0.0 +14565,76,18,16,0.0 +14565,53,32.8,12,0.0 +14565,12,38,33,0.0 +14565,65,21.05,41,0.0 +14565,52,7,26,0.0 +14565,19,9.2,15,0.0 +14565,31,12.5,41,0.0 +14565,41,9.65,34,0.0 +14565,75,7.75,19,0.0 +14565,64,33.25,25,0.0 +14565,60,34,23,0.0 +14565,25,14,2,0.0 +14565,74,10,7,0.0 +14565,40,18.4,37,0.0 +14565,44,19.45,35,0.0 +14565,29,123.79,23,0.0 +14565,77,13,31,0.0 +14565,50,16.25,27,0.0 +14565,2,19,20,0.0 +14565,1,18,23,0.0 +14565,6,25,32,0.0 +14565,57,19.5,11,0.0 +14565,24,4.5,15,0.0 +14565,11,21,30,0.0 +14565,4,22,28,0.0 +14565,22,21,41,0.0 +14565,9,97,48,0.0 +14565,23,9,20,0.0 +14565,54,7.45,29,0.0 +14565,69,36,34,0.0 +14565,7,30,1,0.0 +14565,42,14,48,0.0 +14565,17,39,19,0.0 +14565,62,49.3,44,0.0 +14565,43,46,34,0.0 +14565,48,12.75,25,0.0 +14565,56,38,48,0.0 +14565,5,21.35,32,0.0 +14565,59,55,16,0.0 +14565,72,34.8,19,0.0 +14565,30,25.89,46,0.0 +14565,37,26,34,0.0 +14565,38,263.5,21,0.0 +14565,26,31.23,6,0.0 +14565,28,45.6,14,0.0 +14565,15,15.5,50,0.0 +14565,34,14,14,0.0 +14565,61,28.5,37,0.0 +14565,16,17.45,50,0.0 +14565,51,53,8,0.0 +14565,10,31,25,0.0 +14565,71,21.5,44,0.0 +14565,63,43.9,16,0.0 +14565,67,14,10,0.0 +14565,68,12.5,47,0.0 +14565,66,17,47,0.0 +14565,35,18,9,0.0 +14565,13,6,32,0.0 +14565,58,13.25,5,0.0 +14565,27,43.9,43,0.0 +14565,21,10,11,0.0 +14566,23,9,4,0.0 +14566,14,23.25,23,0.0 +14566,31,12.5,1,0.0 +14566,67,14,42,0.0 +14566,12,38,8,0.0 +14566,74,10,29,0.0 +14566,45,9.5,43,0.0 +14566,35,18,7,0.0 +14566,33,2.5,19,0.0 +14566,18,62.5,12,0.0 +14566,51,53,17,0.0 +14566,28,45.6,31,0.0 +14566,43,46,8,0.0 +14566,55,24,18,0.0 +14566,16,17.45,23,0.0 +14566,62,49.3,33,0.0 +14566,5,21.35,25,0.0 +14566,32,32,30,0.0 +14566,48,12.75,34,0.0 +14566,36,19,45,0.0 +14566,17,39,2,0.0 +14566,21,10,39,0.0 +14566,61,28.5,36,0.0 +14566,10,31,9,0.0 +14566,4,22,3,0.0 +14566,22,21,50,0.0 +14566,57,19.5,31,0.0 +14566,77,13,27,0.0 +14566,39,18,4,0.0 +14566,6,25,5,0.0 +14566,24,4.5,41,0.0 +14566,47,9.5,20,0.0 +14566,70,15,11,0.0 +14566,26,31.23,19,0.0 +14566,20,81,42,0.0 +14566,41,9.65,27,0.0 +14566,13,6,41,0.0 +14566,73,15,12,0.0 +14566,44,19.45,14,0.0 +14566,29,123.79,47,0.0 +14566,59,55,46,0.0 +14566,63,43.9,11,0.0 +14566,15,15.5,24,0.0 +14566,30,25.89,1,0.0 +14567,3,10,10,0.0 +14567,57,19.5,22,0.0 +14567,49,20,38,0.0 +14568,65,21.05,17,0.0 +14568,54,7.45,7,0.0 +14568,72,34.8,49,0.0 +14568,46,12,33,0.0 +14568,12,38,40,0.0 +14568,1,18,4,0.0 +14568,28,45.6,34,0.0 +14568,64,33.25,19,0.0 +14568,6,25,36,0.0 +14568,34,14,28,0.0 +14568,27,43.9,50,0.0 +14568,3,10,2,0.0 +14568,60,34,27,0.0 +14568,49,20,44,0.0 +14568,43,46,7,0.0 +14568,13,6,25,0.0 +14568,59,55,49,0.0 +14568,77,13,31,0.0 +14568,26,31.23,19,0.0 +14568,41,9.65,44,0.0 +14568,25,14,43,0.0 +14568,29,123.79,26,0.0 +14568,69,36,23,0.0 +14568,5,21.35,3,0.0 +14568,31,12.5,20,0.0 +14568,36,19,46,0.0 +14568,11,21,27,0.0 +14568,15,15.5,32,0.0 +14568,70,15,10,0.0 +14568,24,4.5,11,0.0 +14568,17,39,20,0.0 +14568,21,10,31,0.0 +14568,20,81,7,0.0 +14568,40,18.4,1,0.0 +14568,32,32,14,0.0 +14568,62,49.3,5,0.0 +14568,9,97,11,0.0 +14568,71,21.5,41,0.0 +14568,18,62.5,2,0.0 +14568,68,12.5,43,0.0 +14569,10,31,21,0.0 +14569,12,38,28,0.0 +14569,69,36,9,0.0 +14569,31,12.5,12,0.0 +14569,47,9.5,42,0.0 +14569,39,18,16,0.0 +14569,67,14,40,0.0 +14569,66,17,31,0.0 +14569,68,12.5,2,0.0 +14569,46,12,34,0.0 +14569,18,62.5,14,0.0 +14569,61,28.5,7,0.0 +14569,57,19.5,7,0.0 +14569,40,18.4,37,0.0 +14569,59,55,7,0.0 +14569,48,12.75,49,0.0 +14569,5,21.35,14,0.0 +14569,55,24,49,0.0 +14569,63,43.9,30,0.0 +14569,16,17.45,7,0.0 +14569,25,14,24,0.0 +14569,51,53,40,0.0 +14569,44,19.45,46,0.0 +14569,1,18,23,0.0 +14569,73,15,17,0.0 +14569,13,6,19,0.0 +14569,3,10,31,0.0 +14569,29,123.79,19,0.0 +14569,52,7,41,0.0 +14569,22,21,18,0.0 +14569,33,2.5,19,0.0 +14569,15,15.5,33,0.0 +14570,19,9.2,24,0.0 +14570,36,19,19,0.0 +14570,38,263.5,13,0.0 +14570,45,9.5,45,0.0 +14570,17,39,38,0.0 +14570,12,38,39,0.0 +14570,37,26,14,0.0 +14570,4,22,2,0.0 +14570,11,21,1,0.0 +14570,74,10,24,0.0 +14570,26,31.23,39,0.0 +14570,52,7,6,0.0 +14570,66,17,33,0.0 +14570,39,18,34,0.0 +14570,63,43.9,48,0.0 +14570,77,13,38,0.0 +14570,29,123.79,15,0.0 +14570,6,25,32,0.0 +14570,55,24,43,0.0 +14570,68,12.5,6,0.0 +14570,73,15,35,0.0 +14570,33,2.5,3,0.0 +14570,27,43.9,11,0.0 +14570,24,4.5,23,0.0 +14570,30,25.89,22,0.0 +14570,54,7.45,13,0.0 +14570,28,45.6,40,0.0 +14570,20,81,21,0.0 +14570,65,21.05,18,0.0 +14570,60,34,6,0.0 +14570,43,46,39,0.0 +14570,64,33.25,7,0.0 +14570,56,38,27,0.0 +14570,44,19.45,12,0.0 +14570,21,10,14,0.0 +14570,18,62.5,28,0.0 +14570,2,19,11,0.0 +14570,14,23.25,30,0.0 +14570,76,18,19,0.0 +14570,9,97,25,0.0 +14570,40,18.4,4,0.0 +14570,8,40,45,0.0 +14570,46,12,21,0.0 +14570,7,30,35,0.0 +14570,23,9,34,0.0 +14570,62,49.3,47,0.0 +14570,71,21.5,13,0.0 +14570,48,12.75,42,0.0 +14570,72,34.8,30,0.0 +14570,41,9.65,3,0.0 +14570,35,18,13,0.0 +14570,25,14,49,0.0 +14570,47,9.5,12,0.0 +14570,59,55,25,0.0 +14570,53,32.8,19,0.0 +14570,31,12.5,30,0.0 +14570,22,21,3,0.0 +14570,10,31,42,0.0 +14570,34,14,15,0.0 +14571,63,43.9,29,0.0 +14571,76,18,17,0.0 +14571,24,4.5,18,0.0 +14571,74,10,50,0.0 +14571,53,32.8,46,0.0 +14571,44,19.45,1,0.0 +14571,3,10,42,0.0 +14571,47,9.5,11,0.0 +14571,59,55,13,0.0 +14571,25,14,33,0.0 +14571,6,25,29,0.0 +14571,7,30,30,0.0 +14571,39,18,31,0.0 +14571,58,13.25,35,0.0 +14571,8,40,38,0.0 +14571,65,21.05,48,0.0 +14571,15,15.5,39,0.0 +14571,55,24,30,0.0 +14571,11,21,37,0.0 +14571,48,12.75,40,0.0 +14571,23,9,42,0.0 +14571,33,2.5,18,0.0 +14571,31,12.5,29,0.0 +14572,49,20,10,0.0 +14572,40,18.4,31,0.0 +14572,61,28.5,41,0.0 +14572,1,18,42,0.0 +14572,20,81,40,0.0 +14572,29,123.79,39,0.0 +14572,12,38,14,0.0 +14572,10,31,9,0.0 +14572,13,6,20,0.0 +14572,22,21,42,0.0 +14572,14,23.25,15,0.0 +14572,21,10,7,0.0 +14572,51,53,34,0.0 +14572,71,21.5,36,0.0 +14572,41,9.65,43,0.0 +14572,77,13,50,0.0 +14572,30,25.89,32,0.0 +14572,23,9,2,0.0 +14572,59,55,21,0.0 +14572,37,26,19,0.0 +14572,5,21.35,45,0.0 +14572,11,21,45,0.0 +14572,47,9.5,47,0.0 +14572,42,14,22,0.0 +14572,66,17,27,0.0 +14572,34,14,5,0.0 +14572,74,10,42,0.0 +14572,24,4.5,44,0.0 +14572,54,7.45,33,0.0 +14572,69,36,11,0.0 +14572,68,12.5,3,0.0 +14572,3,10,14,0.0 +14572,26,31.23,32,0.0 +14572,17,39,10,0.0 +14572,60,34,43,0.0 +14572,25,14,34,0.0 +14572,19,9.2,8,0.0 +14572,53,32.8,6,0.0 +14572,15,15.5,9,0.0 +14572,76,18,34,0.0 +14572,8,40,22,0.0 +14572,16,17.45,33,0.0 +14572,18,62.5,20,0.0 +14572,56,38,39,0.0 +14572,65,21.05,31,0.0 +14572,4,22,21,0.0 +14572,6,25,23,0.0 +14572,50,16.25,43,0.0 +14572,63,43.9,11,0.0 +14572,7,30,15,0.0 +14572,64,33.25,1,0.0 +14572,75,7.75,26,0.0 +14572,44,19.45,2,0.0 +14572,67,14,25,0.0 +14572,62,49.3,26,0.0 +14572,52,7,38,0.0 +14572,58,13.25,35,0.0 +14572,2,19,4,0.0 +14572,38,263.5,25,0.0 +14573,40,18.4,30,0.0 +14573,9,97,40,0.0 +14573,11,21,50,0.0 +14573,75,7.75,23,0.0 +14573,22,21,14,0.0 +14573,73,15,47,0.0 +14573,65,21.05,35,0.0 +14573,31,12.5,21,0.0 +14573,59,55,14,0.0 +14573,37,26,48,0.0 +14573,10,31,48,0.0 +14573,21,10,47,0.0 +14573,8,40,11,0.0 +14573,66,17,50,0.0 +14573,72,34.8,5,0.0 +14573,14,23.25,41,0.0 +14573,55,24,18,0.0 +14573,71,21.5,25,0.0 +14573,20,81,12,0.0 +14574,66,17,27,0.0 +14574,37,26,1,0.0 +14574,27,43.9,29,0.0 +14574,24,4.5,20,0.0 +14574,48,12.75,32,0.0 +14574,40,18.4,44,0.0 +14574,14,23.25,19,0.0 +14574,58,13.25,10,0.0 +14574,74,10,23,0.0 +14574,16,17.45,18,0.0 +14574,64,33.25,35,0.0 +14574,7,30,29,0.0 +14574,22,21,16,0.0 +14574,50,16.25,39,0.0 +14574,57,19.5,22,0.0 +14574,56,38,44,0.0 +14574,44,19.45,5,0.0 +14574,52,7,33,0.0 +14574,31,12.5,32,0.0 +14574,68,12.5,29,0.0 +14574,60,34,29,0.0 +14574,49,20,15,0.0 +14574,12,38,50,0.0 +14574,2,19,28,0.0 +14574,65,21.05,27,0.0 +14574,41,9.65,30,0.0 +14574,36,19,40,0.0 +14574,35,18,30,0.0 +14574,67,14,11,0.0 +14574,19,9.2,33,0.0 +14574,4,22,45,0.0 +14574,51,53,26,0.0 +14574,17,39,33,0.0 +14574,59,55,44,0.0 +14574,46,12,47,0.0 +14574,54,7.45,33,0.0 +14574,70,15,32,0.0 +14574,63,43.9,45,0.0 +14574,28,45.6,38,0.0 +14574,62,49.3,36,0.0 +14574,29,123.79,22,0.0 +14574,23,9,6,0.0 +14574,33,2.5,19,0.0 +14574,18,62.5,9,0.0 +14574,20,81,17,0.0 +14574,45,9.5,44,0.0 +14574,53,32.8,48,0.0 +14574,6,25,43,0.0 +14574,21,10,23,0.0 +14574,13,6,47,0.0 +14574,8,40,39,0.0 +14574,38,263.5,37,0.0 +14574,11,21,35,0.0 +14574,32,32,13,0.0 +14574,61,28.5,49,0.0 +14574,9,97,4,0.0 +14574,25,14,36,0.0 +14574,71,21.5,11,0.0 +14574,55,24,37,0.0 +14574,5,21.35,40,0.0 +14574,43,46,35,0.0 +14574,3,10,16,0.0 +14574,77,13,25,0.0 +14574,42,14,1,0.0 +14574,72,34.8,2,0.0 +14574,73,15,30,0.0 +14574,30,25.89,30,0.0 +14574,76,18,47,0.0 +14574,47,9.5,28,0.0 +14574,34,14,46,0.0 +14574,26,31.23,47,0.0 +14574,39,18,4,0.0 +14574,75,7.75,10,0.0 +14575,51,53,49,0.0 +14575,55,24,39,0.0 +14575,1,18,1,0.0 +14575,42,14,7,0.0 +14575,31,12.5,8,0.0 +14575,44,19.45,13,0.0 +14575,17,39,36,0.0 +14575,22,21,2,0.0 +14575,21,10,29,0.0 +14575,70,15,12,0.0 +14575,3,10,30,0.0 +14575,34,14,7,0.0 +14575,4,22,3,0.0 +14575,58,13.25,9,0.0 +14575,32,32,21,0.0 +14575,50,16.25,1,0.0 +14575,26,31.23,21,0.0 +14575,8,40,23,0.0 +14575,57,19.5,3,0.0 +14575,65,21.05,31,0.0 +14575,59,55,17,0.0 +14575,38,263.5,22,0.0 +14575,25,14,9,0.0 +14575,43,46,32,0.0 +14575,41,9.65,37,0.0 +14575,53,32.8,9,0.0 +14575,9,97,29,0.0 +14575,16,17.45,8,0.0 +14575,15,15.5,29,0.0 +14575,7,30,33,0.0 +14575,66,17,13,0.0 +14575,47,9.5,36,0.0 +14575,60,34,44,0.0 +14575,68,12.5,32,0.0 +14575,13,6,22,0.0 +14575,10,31,27,0.0 +14575,69,36,10,0.0 +14575,11,21,45,0.0 +14575,54,7.45,26,0.0 +14575,36,19,41,0.0 +14575,76,18,27,0.0 +14575,12,38,31,0.0 +14575,18,62.5,45,0.0 +14575,2,19,39,0.0 +14575,6,25,50,0.0 +14575,24,4.5,42,0.0 +14575,46,12,37,0.0 +14575,20,81,27,0.0 +14575,48,12.75,8,0.0 +14575,14,23.25,25,0.0 +14575,40,18.4,40,0.0 +14575,37,26,8,0.0 +14575,23,9,34,0.0 +14575,61,28.5,6,0.0 +14575,63,43.9,9,0.0 +14575,28,45.6,11,0.0 +14575,56,38,37,0.0 +14575,77,13,49,0.0 +14575,33,2.5,30,0.0 +14575,67,14,33,0.0 +14575,35,18,22,0.0 +14575,27,43.9,23,0.0 +14575,62,49.3,7,0.0 +14575,30,25.89,14,0.0 +14575,71,21.5,9,0.0 +14575,74,10,45,0.0 +14575,75,7.75,35,0.0 +14575,52,7,46,0.0 +14575,49,20,20,0.0 +14576,48,12.75,10,0.0 +14576,20,81,2,0.0 +14576,4,22,3,0.0 +14576,32,32,45,0.0 +14576,13,6,2,0.0 +14576,34,14,10,0.0 +14576,56,38,14,0.0 +14576,33,2.5,47,0.0 +14576,42,14,23,0.0 +14576,6,25,25,0.0 +14576,29,123.79,45,0.0 +14576,10,31,18,0.0 +14576,69,36,37,0.0 +14576,54,7.45,30,0.0 +14576,19,9.2,20,0.0 +14576,75,7.75,32,0.0 +14576,1,18,20,0.0 +14576,3,10,4,0.0 +14576,67,14,34,0.0 +14576,2,19,19,0.0 +14576,25,14,33,0.0 +14576,24,4.5,34,0.0 +14576,7,30,29,0.0 +14576,9,97,32,0.0 +14576,64,33.25,39,0.0 +14576,39,18,44,0.0 +14576,43,46,2,0.0 +14576,16,17.45,25,0.0 +14576,59,55,25,0.0 +14576,73,15,49,0.0 +14576,47,9.5,14,0.0 +14576,5,21.35,24,0.0 +14576,53,32.8,17,0.0 +14576,12,38,15,0.0 +14576,26,31.23,23,0.0 +14576,51,53,15,0.0 +14577,57,19.5,48,0.0 +14577,8,40,45,0.0 +14577,32,32,40,0.0 +14577,13,6,37,0.0 +14577,39,18,9,0.0 +14577,34,14,27,0.0 +14577,58,13.25,27,0.0 +14577,6,25,11,0.0 +14577,49,20,46,0.0 +14577,74,10,42,0.0 +14577,56,38,1,0.0 +14577,62,49.3,4,0.0 +14578,54,7.45,45,0.0 +14578,40,18.4,2,0.0 +14578,9,97,26,0.0 +14578,3,10,6,0.0 +14578,24,4.5,33,0.0 +14578,67,14,15,0.0 +14578,59,55,49,0.0 +14578,55,24,2,0.0 +14578,22,21,36,0.0 +14578,42,14,15,0.0 +14578,34,14,22,0.0 +14578,64,33.25,28,0.0 +14578,69,36,15,0.0 +14578,66,17,2,0.0 +14578,5,21.35,45,0.0 +14578,21,10,50,0.0 +14578,71,21.5,42,0.0 +14578,14,23.25,43,0.0 +14578,53,32.8,50,0.0 +14578,6,25,37,0.0 +14578,57,19.5,19,0.0 +14578,31,12.5,3,0.0 +14578,50,16.25,22,0.0 +14578,30,25.89,30,0.0 +14578,37,26,37,0.0 +14578,27,43.9,20,0.0 +14578,77,13,20,0.0 +14578,38,263.5,49,0.0 +14578,15,15.5,14,0.0 +14578,68,12.5,23,0.0 +14579,41,9.65,14,0.0 +14579,55,24,33,0.0 +14579,13,6,1,0.0 +14579,18,62.5,26,0.0 +14579,7,30,4,0.0 +14579,36,19,34,0.0 +14579,15,15.5,25,0.0 +14579,49,20,35,0.0 +14579,53,32.8,17,0.0 +14579,16,17.45,20,0.0 +14579,60,34,35,0.0 +14579,58,13.25,32,0.0 +14579,26,31.23,31,0.0 +14579,68,12.5,42,0.0 +14579,70,15,30,0.0 +14579,64,33.25,4,0.0 +14579,54,7.45,27,0.0 +14579,12,38,48,0.0 +14579,27,43.9,45,0.0 +14579,62,49.3,6,0.0 +14579,14,23.25,14,0.0 +14579,74,10,3,0.0 +14579,4,22,32,0.0 +14579,38,263.5,40,0.0 +14579,21,10,10,0.0 +14579,61,28.5,26,0.0 +14579,25,14,11,0.0 +14579,76,18,2,0.0 +14579,20,81,21,0.0 +14579,42,14,47,0.0 +14579,63,43.9,9,0.0 +14579,52,7,19,0.0 +14579,3,10,40,0.0 +14579,72,34.8,43,0.0 +14579,40,18.4,27,0.0 +14580,7,30,39,0.0 +14580,76,18,30,0.0 +14580,8,40,39,0.0 +14580,49,20,33,0.0 +14580,40,18.4,15,0.0 +14580,73,15,3,0.0 +14580,18,62.5,33,0.0 +14580,24,4.5,10,0.0 +14580,4,22,34,0.0 +14580,32,32,48,0.0 +14580,13,6,46,0.0 +14580,33,2.5,10,0.0 +14580,16,17.45,38,0.0 +14580,77,13,44,0.0 +14580,52,7,48,0.0 +14581,4,22,3,0.0 +14581,51,53,47,0.0 +14581,45,9.5,8,0.0 +14581,27,43.9,4,0.0 +14581,37,26,41,0.0 +14581,53,32.8,38,0.0 +14581,1,18,33,0.0 +14581,9,97,21,0.0 +14581,77,13,9,0.0 +14581,8,40,25,0.0 +14581,44,19.45,3,0.0 +14581,74,10,2,0.0 +14581,5,21.35,49,0.0 +14581,59,55,34,0.0 +14581,64,33.25,21,0.0 +14581,25,14,50,0.0 +14581,63,43.9,44,0.0 +14581,55,24,19,0.0 +14581,32,32,21,0.0 +14581,50,16.25,30,0.0 +14581,14,23.25,41,0.0 +14581,16,17.45,30,0.0 +14581,75,7.75,3,0.0 +14581,33,2.5,36,0.0 +14581,2,19,4,0.0 +14581,61,28.5,19,0.0 +14581,70,15,32,0.0 +14581,62,49.3,50,0.0 +14581,76,18,21,0.0 +14581,71,21.5,32,0.0 +14581,22,21,45,0.0 +14581,49,20,20,0.0 +14581,29,123.79,49,0.0 +14581,36,19,1,0.0 +14581,28,45.6,6,0.0 +14581,17,39,42,0.0 +14581,58,13.25,25,0.0 +14581,35,18,19,0.0 +14581,57,19.5,34,0.0 +14581,12,38,40,0.0 +14581,6,25,4,0.0 +14581,31,12.5,6,0.0 +14581,30,25.89,46,0.0 +14581,69,36,42,0.0 +14581,73,15,9,0.0 +14581,26,31.23,11,0.0 +14581,10,31,11,0.0 +14581,54,7.45,44,0.0 +14581,7,30,29,0.0 +14581,18,62.5,48,0.0 +14581,48,12.75,40,0.0 +14581,39,18,42,0.0 +14581,23,9,35,0.0 +14581,20,81,11,0.0 +14581,15,15.5,1,0.0 +14581,72,34.8,21,0.0 +14581,67,14,50,0.0 +14581,41,9.65,8,0.0 +14581,60,34,33,0.0 +14581,46,12,36,0.0 +14581,65,21.05,31,0.0 +14581,21,10,18,0.0 +14581,24,4.5,19,0.0 +14581,38,263.5,12,0.0 +14581,40,18.4,29,0.0 +14581,68,12.5,49,0.0 +14581,34,14,22,0.0 +14581,11,21,26,0.0 +14582,32,32,11,0.0 +14582,31,12.5,35,0.0 +14582,4,22,12,0.0 +14582,43,46,14,0.0 +14582,54,7.45,40,0.0 +14582,17,39,23,0.0 +14582,61,28.5,34,0.0 +14582,30,25.89,32,0.0 +14582,13,6,13,0.0 +14582,35,18,43,0.0 +14582,59,55,30,0.0 +14582,65,21.05,50,0.0 +14582,21,10,6,0.0 +14582,33,2.5,18,0.0 +14582,5,21.35,32,0.0 +14582,76,18,4,0.0 +14582,27,43.9,46,0.0 +14582,3,10,48,0.0 +14582,6,25,45,0.0 +14582,25,14,38,0.0 +14582,22,21,42,0.0 +14582,36,19,33,0.0 +14582,74,10,20,0.0 +14582,62,49.3,50,0.0 +14582,56,38,30,0.0 +14582,73,15,25,0.0 +14582,50,16.25,9,0.0 +14582,53,32.8,5,0.0 +14582,18,62.5,50,0.0 +14582,2,19,14,0.0 +14582,57,19.5,15,0.0 +14582,67,14,31,0.0 +14582,51,53,11,0.0 +14582,23,9,25,0.0 +14582,1,18,39,0.0 +14582,48,12.75,48,0.0 +14582,41,9.65,16,0.0 +14582,28,45.6,36,0.0 +14582,16,17.45,2,0.0 +14582,77,13,43,0.0 +14582,39,18,21,0.0 +14582,60,34,42,0.0 +14582,29,123.79,19,0.0 +14582,66,17,34,0.0 +14582,19,9.2,31,0.0 +14582,55,24,35,0.0 +14582,72,34.8,39,0.0 +14583,22,21,22,0.0 +14583,20,81,21,0.0 +14583,74,10,28,0.0 +14583,11,21,24,0.0 +14583,21,10,26,0.0 +14583,41,9.65,19,0.0 +14583,15,15.5,7,0.0 +14583,6,25,5,0.0 +14584,12,38,48,0.0 +14584,24,4.5,9,0.0 +14584,26,31.23,30,0.0 +14584,65,21.05,15,0.0 +14584,33,2.5,35,0.0 +14584,75,7.75,47,0.0 +14584,55,24,38,0.0 +14584,64,33.25,7,0.0 +14584,36,19,35,0.0 +14584,34,14,40,0.0 +14584,44,19.45,34,0.0 +14584,9,97,25,0.0 +14584,45,9.5,8,0.0 +14584,22,21,36,0.0 +14585,31,12.5,6,0.0 +14585,49,20,19,0.0 +14585,13,6,4,0.0 +14585,44,19.45,38,0.0 +14585,18,62.5,11,0.0 +14585,59,55,20,0.0 +14585,30,25.89,13,0.0 +14585,3,10,45,0.0 +14585,4,22,41,0.0 +14585,41,9.65,11,0.0 +14585,46,12,39,0.0 +14585,38,263.5,43,0.0 +14585,56,38,1,0.0 +14585,76,18,17,0.0 +14585,52,7,41,0.0 +14585,69,36,4,0.0 +14585,63,43.9,4,0.0 +14585,2,19,21,0.0 +14585,29,123.79,17,0.0 +14585,50,16.25,4,0.0 +14585,64,33.25,29,0.0 +14585,77,13,17,0.0 +14585,19,9.2,8,0.0 +14585,9,97,3,0.0 +14585,67,14,20,0.0 +14585,68,12.5,33,0.0 +14585,14,23.25,24,0.0 +14585,51,53,46,0.0 +14585,45,9.5,22,0.0 +14585,37,26,10,0.0 +14585,55,24,33,0.0 +14585,36,19,30,0.0 +14585,72,34.8,27,0.0 +14585,40,18.4,16,0.0 +14585,20,81,32,0.0 +14585,28,45.6,19,0.0 +14585,42,14,30,0.0 +14585,35,18,17,0.0 +14585,33,2.5,40,0.0 +14585,47,9.5,18,0.0 +14585,34,14,44,0.0 +14585,23,9,44,0.0 +14585,43,46,32,0.0 +14585,12,38,41,0.0 +14585,62,49.3,5,0.0 +14585,32,32,48,0.0 +14585,57,19.5,10,0.0 +14585,54,7.45,29,0.0 +14585,15,15.5,26,0.0 +14585,65,21.05,35,0.0 +14585,61,28.5,13,0.0 +14585,74,10,46,0.0 +14585,16,17.45,50,0.0 +14585,66,17,6,0.0 +14585,21,10,31,0.0 +14585,8,40,35,0.0 +14585,71,21.5,43,0.0 +14585,11,21,2,0.0 +14585,22,21,5,0.0 +14585,58,13.25,50,0.0 +14585,7,30,48,0.0 +14585,60,34,1,0.0 +14585,27,43.9,25,0.0 +14585,26,31.23,43,0.0 +14585,53,32.8,4,0.0 +14585,48,12.75,46,0.0 +14585,6,25,50,0.0 +14585,1,18,20,0.0 +14585,75,7.75,37,0.0 +14585,25,14,40,0.0 +14585,24,4.5,9,0.0 +14585,10,31,17,0.0 +14586,49,20,48,0.0 +14586,21,10,14,0.0 +14586,45,9.5,43,0.0 +14586,77,13,32,0.0 +14586,36,19,36,0.0 +14586,31,12.5,31,0.0 +14586,41,9.65,3,0.0 +14586,23,9,26,0.0 +14586,17,39,45,0.0 +14586,66,17,3,0.0 +14586,33,2.5,6,0.0 +14586,50,16.25,5,0.0 +14586,47,9.5,46,0.0 +14586,54,7.45,35,0.0 +14586,26,31.23,17,0.0 +14586,16,17.45,28,0.0 +14586,43,46,36,0.0 +14586,4,22,4,0.0 +14586,48,12.75,16,0.0 +14586,20,81,3,0.0 +14586,22,21,19,0.0 +14586,1,18,2,0.0 +14586,72,34.8,26,0.0 +14586,56,38,24,0.0 +14586,64,33.25,27,0.0 +14586,61,28.5,29,0.0 +14586,14,23.25,40,0.0 +14586,58,13.25,43,0.0 +14586,42,14,8,0.0 +14586,60,34,14,0.0 +14586,38,263.5,25,0.0 +14586,67,14,20,0.0 +14586,15,15.5,9,0.0 +14586,55,24,23,0.0 +14586,76,18,32,0.0 +14586,28,45.6,32,0.0 +14586,11,21,37,0.0 +14586,7,30,39,0.0 +14586,57,19.5,22,0.0 +14586,8,40,39,0.0 +14586,68,12.5,12,0.0 +14586,5,21.35,8,0.0 +14586,52,7,25,0.0 +14586,73,15,33,0.0 +14586,40,18.4,32,0.0 +14586,10,31,1,0.0 +14586,70,15,46,0.0 +14586,25,14,42,0.0 +14586,19,9.2,47,0.0 +14586,75,7.75,32,0.0 +14586,71,21.5,39,0.0 +14586,29,123.79,17,0.0 +14586,9,97,6,0.0 +14586,62,49.3,37,0.0 +14586,39,18,20,0.0 +14586,74,10,6,0.0 +14586,44,19.45,10,0.0 +14586,18,62.5,30,0.0 +14586,59,55,36,0.0 +14586,24,4.5,47,0.0 +14586,6,25,7,0.0 +14586,34,14,7,0.0 +14586,2,19,20,0.0 +14586,65,21.05,14,0.0 +14586,37,26,12,0.0 +14586,51,53,18,0.0 +14586,27,43.9,8,0.0 +14586,3,10,9,0.0 +14586,69,36,15,0.0 +14587,31,12.5,48,0.0 +14587,14,23.25,18,0.0 +14587,1,18,46,0.0 +14587,35,18,46,0.0 +14587,37,26,37,0.0 +14587,62,49.3,26,0.0 +14587,68,12.5,1,0.0 +14587,67,14,25,0.0 +14587,44,19.45,17,0.0 +14587,22,21,41,0.0 +14587,49,20,50,0.0 +14587,19,9.2,3,0.0 +14587,30,25.89,3,0.0 +14587,20,81,28,0.0 +14587,24,4.5,34,0.0 +14587,77,13,40,0.0 +14587,13,6,17,0.0 +14587,61,28.5,49,0.0 +14587,18,62.5,35,0.0 +14587,52,7,41,0.0 +14587,38,263.5,37,0.0 +14587,26,31.23,30,0.0 +14587,43,46,20,0.0 +14587,33,2.5,50,0.0 +14587,56,38,2,0.0 +14587,12,38,4,0.0 +14587,4,22,22,0.0 +14587,16,17.45,9,0.0 +14587,70,15,4,0.0 +14587,51,53,12,0.0 +14587,58,13.25,43,0.0 +14587,23,9,13,0.0 +14587,34,14,29,0.0 +14587,55,24,8,0.0 +14587,27,43.9,2,0.0 +14587,36,19,12,0.0 +14588,25,14,11,0.0 +14588,36,19,41,0.0 +14588,55,24,28,0.0 +14588,2,19,12,0.0 +14588,70,15,41,0.0 +14588,27,43.9,17,0.0 +14588,53,32.8,33,0.0 +14588,16,17.45,36,0.0 +14588,52,7,30,0.0 +14588,30,25.89,3,0.0 +14588,60,34,10,0.0 +14588,22,21,12,0.0 +14588,38,263.5,38,0.0 +14588,61,28.5,43,0.0 +14588,24,4.5,18,0.0 +14588,10,31,26,0.0 +14588,48,12.75,4,0.0 +14588,8,40,45,0.0 +14588,26,31.23,47,0.0 +14588,75,7.75,46,0.0 +14588,37,26,10,0.0 +14588,35,18,45,0.0 +14588,11,21,19,0.0 +14588,59,55,39,0.0 +14588,58,13.25,8,0.0 +14588,49,20,4,0.0 +14588,66,17,20,0.0 +14588,15,15.5,3,0.0 +14588,18,62.5,34,0.0 +14588,7,30,14,0.0 +14588,64,33.25,26,0.0 +14588,3,10,17,0.0 +14588,42,14,4,0.0 +14588,23,9,11,0.0 +14588,65,21.05,4,0.0 +14588,13,6,39,0.0 +14588,43,46,15,0.0 +14588,33,2.5,44,0.0 +14588,20,81,5,0.0 +14588,76,18,35,0.0 +14588,67,14,7,0.0 +14588,4,22,4,0.0 +14588,73,15,32,0.0 +14588,31,12.5,33,0.0 +14588,44,19.45,44,0.0 +14588,12,38,21,0.0 +14588,77,13,23,0.0 +14589,8,40,42,0.0 +14589,49,20,22,0.0 +14589,21,10,19,0.0 +14589,58,13.25,36,0.0 +14589,29,123.79,14,0.0 +14589,66,17,27,0.0 +14589,61,28.5,34,0.0 +14589,59,55,26,0.0 +14589,39,18,24,0.0 +14589,38,263.5,7,0.0 +14589,18,62.5,24,0.0 +14589,4,22,29,0.0 +14589,35,18,29,0.0 +14589,46,12,16,0.0 +14589,27,43.9,19,0.0 +14589,63,43.9,1,0.0 +14589,55,24,40,0.0 +14589,14,23.25,8,0.0 +14589,15,15.5,27,0.0 +14589,12,38,41,0.0 +14589,77,13,16,0.0 +14589,60,34,5,0.0 +14589,19,9.2,34,0.0 +14589,53,32.8,47,0.0 +14589,7,30,4,0.0 +14589,67,14,8,0.0 +14589,74,10,18,0.0 +14589,17,39,35,0.0 +14589,5,21.35,2,0.0 +14589,13,6,10,0.0 +14589,44,19.45,43,0.0 +14589,37,26,5,0.0 +14589,52,7,29,0.0 +14589,76,18,41,0.0 +14589,25,14,35,0.0 +14589,40,18.4,22,0.0 +14589,9,97,15,0.0 +14589,31,12.5,41,0.0 +14589,41,9.65,45,0.0 +14589,6,25,3,0.0 +14589,30,25.89,41,0.0 +14589,47,9.5,42,0.0 +14589,75,7.75,14,0.0 +14589,26,31.23,28,0.0 +14589,28,45.6,14,0.0 +14589,2,19,36,0.0 +14589,20,81,50,0.0 +14589,50,16.25,13,0.0 +14589,32,32,3,0.0 +14589,48,12.75,20,0.0 +14589,51,53,48,0.0 +14589,33,2.5,50,0.0 +14589,16,17.45,49,0.0 +14589,72,34.8,39,0.0 +14589,10,31,31,0.0 +14589,62,49.3,7,0.0 +14589,70,15,28,0.0 +14589,3,10,3,0.0 +14589,36,19,15,0.0 +14589,42,14,47,0.0 +14589,73,15,33,0.0 +14589,22,21,43,0.0 +14589,57,19.5,50,0.0 +14589,45,9.5,12,0.0 +14590,45,9.5,32,0.0 +14590,58,13.25,16,0.0 +14590,13,6,32,0.0 +14590,63,43.9,9,0.0 +14590,51,53,45,0.0 +14590,36,19,11,0.0 +14590,25,14,5,0.0 +14590,69,36,12,0.0 +14590,49,20,49,0.0 +14590,33,2.5,2,0.0 +14590,15,15.5,37,0.0 +14590,74,10,50,0.0 +14590,48,12.75,6,0.0 +14590,24,4.5,48,0.0 +14590,72,34.8,35,0.0 +14590,50,16.25,6,0.0 +14590,59,55,49,0.0 +14590,56,38,41,0.0 +14590,41,9.65,38,0.0 +14590,21,10,42,0.0 +14590,35,18,36,0.0 +14590,1,18,20,0.0 +14590,66,17,27,0.0 +14590,29,123.79,18,0.0 +14590,8,40,7,0.0 +14590,57,19.5,37,0.0 +14590,23,9,48,0.0 +14590,77,13,41,0.0 +14590,17,39,15,0.0 +14590,28,45.6,34,0.0 +14590,34,14,11,0.0 +14590,4,22,18,0.0 +14591,65,21.05,15,0.0 +14591,21,10,30,0.0 +14591,74,10,50,0.0 +14591,60,34,48,0.0 +14591,24,4.5,41,0.0 +14591,8,40,15,0.0 +14591,51,53,9,0.0 +14591,36,19,11,0.0 +14591,23,9,14,0.0 +14591,12,38,17,0.0 +14591,15,15.5,36,0.0 +14591,75,7.75,4,0.0 +14591,43,46,29,0.0 +14591,4,22,36,0.0 +14591,19,9.2,28,0.0 +14591,3,10,47,0.0 +14591,18,62.5,35,0.0 +14591,47,9.5,40,0.0 +14591,10,31,7,0.0 +14591,35,18,42,0.0 +14591,13,6,45,0.0 +14591,44,19.45,18,0.0 +14591,29,123.79,35,0.0 +14591,28,45.6,19,0.0 +14591,67,14,33,0.0 +14591,42,14,13,0.0 +14591,64,33.25,50,0.0 +14591,63,43.9,41,0.0 +14591,70,15,2,0.0 +14591,1,18,29,0.0 +14591,62,49.3,37,0.0 +14591,9,97,47,0.0 +14591,26,31.23,44,0.0 +14591,76,18,19,0.0 +14591,31,12.5,7,0.0 +14591,39,18,44,0.0 +14591,25,14,27,0.0 +14591,37,26,37,0.0 +14591,7,30,32,0.0 +14591,58,13.25,2,0.0 +14591,54,7.45,32,0.0 +14591,69,36,20,0.0 +14591,77,13,42,0.0 +14591,61,28.5,17,0.0 +14591,52,7,15,0.0 +14591,59,55,49,0.0 +14592,45,9.5,23,0.0 +14592,35,18,46,0.0 +14592,14,23.25,11,0.0 +14592,70,15,39,0.0 +14592,2,19,18,0.0 +14592,40,18.4,16,0.0 +14592,61,28.5,24,0.0 +14592,25,14,50,0.0 +14592,59,55,9,0.0 +14592,71,21.5,45,0.0 +14592,12,38,49,0.0 +14592,65,21.05,12,0.0 +14592,20,81,25,0.0 +14592,43,46,3,0.0 +14592,31,12.5,21,0.0 +14592,75,7.75,21,0.0 +14592,34,14,7,0.0 +14592,55,24,14,0.0 +14592,49,20,15,0.0 +14592,73,15,39,0.0 +14593,47,9.5,7,0.0 +14593,64,33.25,43,0.0 +14593,76,18,29,0.0 +14593,52,7,29,0.0 +14593,19,9.2,29,0.0 +14593,67,14,45,0.0 +14593,75,7.75,40,0.0 +14593,37,26,29,0.0 +14593,63,43.9,10,0.0 +14593,5,21.35,16,0.0 +14593,72,34.8,3,0.0 +14593,17,39,16,0.0 +14593,28,45.6,12,0.0 +14593,70,15,2,0.0 +14593,3,10,50,0.0 +14593,54,7.45,8,0.0 +14593,46,12,26,0.0 +14593,6,25,45,0.0 +14593,56,38,42,0.0 +14593,74,10,41,0.0 +14593,18,62.5,25,0.0 +14593,45,9.5,18,0.0 +14593,26,31.23,4,0.0 +14593,31,12.5,12,0.0 +14593,21,10,17,0.0 +14593,13,6,38,0.0 +14593,9,97,32,0.0 +14593,77,13,5,0.0 +14593,73,15,44,0.0 +14593,24,4.5,5,0.0 +14593,40,18.4,24,0.0 +14593,48,12.75,23,0.0 +14593,1,18,39,0.0 +14593,50,16.25,10,0.0 +14593,23,9,16,0.0 +14593,30,25.89,48,0.0 +14593,7,30,12,0.0 +14593,65,21.05,41,0.0 +14593,12,38,36,0.0 +14593,14,23.25,19,0.0 +14593,44,19.45,4,0.0 +14593,62,49.3,24,0.0 +14593,57,19.5,3,0.0 +14593,68,12.5,37,0.0 +14593,43,46,11,0.0 +14593,38,263.5,38,0.0 +14593,55,24,6,0.0 +14593,10,31,24,0.0 +14593,36,19,14,0.0 +14593,15,15.5,44,0.0 +14593,66,17,6,0.0 +14593,8,40,16,0.0 +14593,27,43.9,43,0.0 +14593,39,18,36,0.0 +14593,11,21,15,0.0 +14593,34,14,45,0.0 +14593,60,34,15,0.0 +14593,71,21.5,34,0.0 +14593,16,17.45,9,0.0 +14593,4,22,42,0.0 +14593,32,32,8,0.0 +14593,41,9.65,49,0.0 +14593,59,55,38,0.0 +14593,20,81,7,0.0 +14593,22,21,39,0.0 +14593,51,53,36,0.0 +14593,29,123.79,34,0.0 +14593,2,19,14,0.0 +14593,42,14,34,0.0 +14593,53,32.8,28,0.0 +14593,49,20,6,0.0 +14594,46,12,28,0.0 +14594,72,34.8,17,0.0 +14594,59,55,36,0.0 +14594,15,15.5,43,0.0 +14594,38,263.5,19,0.0 +14594,73,15,15,0.0 +14594,61,28.5,2,0.0 +14594,28,45.6,23,0.0 +14594,1,18,38,0.0 +14594,12,38,2,0.0 +14594,49,20,12,0.0 +14594,75,7.75,45,0.0 +14594,54,7.45,42,0.0 +14594,23,9,4,0.0 +14594,14,23.25,2,0.0 +14594,67,14,11,0.0 +14594,3,10,4,0.0 +14594,7,30,48,0.0 +14594,31,12.5,44,0.0 +14594,10,31,34,0.0 +14594,33,2.5,5,0.0 +14594,16,17.45,11,0.0 +14594,19,9.2,45,0.0 +14595,44,19.45,19,0.0 +14595,11,21,19,0.0 +14595,8,40,43,0.0 +14595,52,7,36,0.0 +14595,62,49.3,50,0.0 +14595,17,39,28,0.0 +14595,48,12.75,4,0.0 +14595,58,13.25,30,0.0 +14595,59,55,2,0.0 +14595,37,26,49,0.0 +14595,34,14,1,0.0 +14595,50,16.25,15,0.0 +14595,63,43.9,39,0.0 +14595,22,21,21,0.0 +14595,15,15.5,7,0.0 +14595,49,20,7,0.0 +14595,1,18,6,0.0 +14595,25,14,22,0.0 +14595,71,21.5,22,0.0 +14595,32,32,29,0.0 +14595,47,9.5,25,0.0 +14595,31,12.5,19,0.0 +14595,24,4.5,6,0.0 +14595,2,19,9,0.0 +14595,16,17.45,25,0.0 +14595,73,15,12,0.0 +14595,72,34.8,5,0.0 +14595,5,21.35,21,0.0 +14595,66,17,47,0.0 +14595,75,7.75,42,0.0 +14595,46,12,12,0.0 +14595,12,38,45,0.0 +14595,67,14,13,0.0 +14595,74,10,50,0.0 +14595,43,46,39,0.0 +14595,4,22,48,0.0 +14595,14,23.25,13,0.0 +14595,70,15,33,0.0 +14595,10,31,30,0.0 +14595,30,25.89,1,0.0 +14595,40,18.4,41,0.0 +14595,7,30,19,0.0 +14595,41,9.65,2,0.0 +14595,35,18,31,0.0 +14595,19,9.2,13,0.0 +14595,21,10,29,0.0 +14595,53,32.8,17,0.0 +14595,45,9.5,24,0.0 +14595,55,24,21,0.0 +14595,69,36,33,0.0 +14595,65,21.05,44,0.0 +14595,42,14,38,0.0 +14595,9,97,27,0.0 +14595,6,25,41,0.0 +14596,53,32.8,14,0.0 +14596,71,21.5,48,0.0 +14596,21,10,15,0.0 +14596,10,31,14,0.0 +14596,57,19.5,27,0.0 +14596,36,19,6,0.0 +14596,2,19,19,0.0 +14596,75,7.75,3,0.0 +14596,5,21.35,27,0.0 +14596,34,14,32,0.0 +14596,74,10,17,0.0 +14596,35,18,11,0.0 +14596,41,9.65,50,0.0 +14596,42,14,32,0.0 +14596,76,18,36,0.0 +14596,20,81,31,0.0 +14596,27,43.9,46,0.0 +14596,65,21.05,15,0.0 +14596,61,28.5,49,0.0 +14596,32,32,22,0.0 +14596,14,23.25,17,0.0 +14596,60,34,17,0.0 +14596,68,12.5,6,0.0 +14596,15,15.5,2,0.0 +14596,38,263.5,43,0.0 +14596,18,62.5,8,0.0 +14597,8,40,35,0.0 +14597,18,62.5,49,0.0 +14597,66,17,3,0.0 +14597,57,19.5,4,0.0 +14597,36,19,18,0.0 +14597,42,14,9,0.0 +14597,73,15,28,0.0 +14597,2,19,18,0.0 +14597,50,16.25,36,0.0 +14597,25,14,50,0.0 +14597,5,21.35,35,0.0 +14597,74,10,7,0.0 +14597,55,24,48,0.0 +14597,7,30,18,0.0 +14597,54,7.45,40,0.0 +14597,76,18,47,0.0 +14597,41,9.65,36,0.0 +14597,33,2.5,42,0.0 +14597,13,6,50,0.0 +14597,60,34,41,0.0 +14597,30,25.89,4,0.0 +14597,10,31,45,0.0 +14597,62,49.3,19,0.0 +14597,1,18,14,0.0 +14597,67,14,14,0.0 +14597,47,9.5,25,0.0 +14597,39,18,40,0.0 +14597,58,13.25,4,0.0 +14597,3,10,12,0.0 +14597,26,31.23,28,0.0 +14597,22,21,24,0.0 +14597,37,26,40,0.0 +14597,75,7.75,17,0.0 +14597,51,53,50,0.0 +14597,14,23.25,18,0.0 +14597,64,33.25,29,0.0 +14597,20,81,4,0.0 +14597,72,34.8,23,0.0 +14597,69,36,34,0.0 +14597,6,25,27,0.0 +14597,49,20,39,0.0 +14598,23,9,26,0.0 +14598,52,7,20,0.0 +14598,77,13,41,0.0 +14598,62,49.3,10,0.0 +14599,50,16.25,32,0.0 +14600,35,18,37,0.0 +14600,21,10,23,0.0 +14600,47,9.5,26,0.0 +14600,58,13.25,6,0.0 +14600,64,33.25,17,0.0 +14600,53,32.8,28,0.0 +14600,48,12.75,42,0.0 +14600,2,19,41,0.0 +14600,61,28.5,49,0.0 +14600,4,22,21,0.0 +14600,8,40,15,0.0 +14600,27,43.9,29,0.0 +14600,9,97,1,0.0 +14600,3,10,8,0.0 +14600,17,39,23,0.0 +14600,66,17,9,0.0 +14600,42,14,50,0.0 +14600,22,21,20,0.0 +14600,50,16.25,8,0.0 +14600,45,9.5,36,0.0 +14600,30,25.89,17,0.0 +14600,14,23.25,44,0.0 +14600,70,15,30,0.0 +14600,49,20,31,0.0 +14600,55,24,30,0.0 +14600,11,21,20,0.0 +14600,12,38,1,0.0 +14600,16,17.45,50,0.0 +14600,59,55,30,0.0 +14600,29,123.79,6,0.0 +14600,6,25,14,0.0 +14600,60,34,23,0.0 +14600,28,45.6,48,0.0 +14600,24,4.5,32,0.0 +14600,56,38,37,0.0 +14600,65,21.05,43,0.0 +14600,44,19.45,48,0.0 +14600,10,31,46,0.0 +14600,5,21.35,21,0.0 +14600,20,81,36,0.0 +14600,36,19,38,0.0 +14600,18,62.5,23,0.0 +14600,39,18,29,0.0 +14600,76,18,27,0.0 +14600,77,13,37,0.0 +14600,68,12.5,15,0.0 +14600,23,9,25,0.0 +14600,40,18.4,14,0.0 +14600,46,12,49,0.0 +14600,54,7.45,13,0.0 +14600,72,34.8,33,0.0 +14601,63,43.9,24,0.0 +14601,35,18,43,0.0 +14601,72,34.8,22,0.0 +14601,49,20,43,0.0 +14601,53,32.8,38,0.0 +14601,71,21.5,11,0.0 +14601,32,32,10,0.0 +14601,19,9.2,18,0.0 +14601,9,97,8,0.0 +14601,61,28.5,23,0.0 +14601,58,13.25,23,0.0 +14601,42,14,13,0.0 +14601,48,12.75,32,0.0 +14601,60,34,24,0.0 +14601,5,21.35,4,0.0 +14601,46,12,27,0.0 +14601,25,14,6,0.0 +14601,75,7.75,9,0.0 +14601,34,14,1,0.0 +14601,69,36,29,0.0 +14601,23,9,37,0.0 +14601,2,19,35,0.0 +14601,33,2.5,44,0.0 +14601,17,39,15,0.0 +14601,12,38,45,0.0 +14601,37,26,19,0.0 +14601,3,10,39,0.0 +14601,41,9.65,46,0.0 +14601,56,38,17,0.0 +14601,10,31,19,0.0 +14601,28,45.6,30,0.0 +14601,22,21,46,0.0 +14601,36,19,14,0.0 +14601,38,263.5,33,0.0 +14601,7,30,41,0.0 +14601,15,15.5,12,0.0 +14601,64,33.25,35,0.0 +14601,4,22,24,0.0 +14601,40,18.4,19,0.0 +14601,31,12.5,33,0.0 +14601,57,19.5,50,0.0 +14601,51,53,30,0.0 +14601,70,15,49,0.0 +14601,24,4.5,46,0.0 +14601,43,46,32,0.0 +14601,27,43.9,35,0.0 +14601,21,10,14,0.0 +14602,34,14,47,0.0 +14602,53,32.8,14,0.0 +14602,72,34.8,28,0.0 +14602,71,21.5,15,0.0 +14602,13,6,27,0.0 +14602,37,26,33,0.0 +14602,25,14,26,0.0 +14602,39,18,5,0.0 +14602,6,25,3,0.0 +14602,19,9.2,40,0.0 +14602,26,31.23,10,0.0 +14602,36,19,50,0.0 +14602,75,7.75,42,0.0 +14602,15,15.5,44,0.0 +14602,65,21.05,33,0.0 +14602,17,39,29,0.0 +14602,64,33.25,11,0.0 +14602,23,9,20,0.0 +14602,56,38,9,0.0 +14602,9,97,26,0.0 +14602,35,18,2,0.0 +14602,68,12.5,27,0.0 +14602,66,17,10,0.0 +14602,59,55,15,0.0 +14602,10,31,21,0.0 +14602,73,15,40,0.0 +14602,44,19.45,15,0.0 +14602,3,10,25,0.0 +14602,74,10,37,0.0 +14602,61,28.5,22,0.0 +14602,22,21,22,0.0 +14602,38,263.5,20,0.0 +14602,28,45.6,16,0.0 +14602,4,22,49,0.0 +14602,30,25.89,29,0.0 +14602,1,18,14,0.0 +14602,70,15,18,0.0 +14602,16,17.45,48,0.0 +14602,51,53,16,0.0 +14602,7,30,5,0.0 +14602,21,10,27,0.0 +14602,12,38,42,0.0 +14602,11,21,42,0.0 +14602,42,14,40,0.0 +14602,49,20,4,0.0 +14602,18,62.5,1,0.0 +14602,54,7.45,7,0.0 +14602,31,12.5,49,0.0 +14602,20,81,49,0.0 +14602,40,18.4,1,0.0 +14602,41,9.65,50,0.0 +14602,48,12.75,2,0.0 +14602,77,13,42,0.0 +14602,43,46,49,0.0 +14602,45,9.5,18,0.0 +14602,46,12,40,0.0 +14602,62,49.3,17,0.0 +14602,29,123.79,19,0.0 +14602,63,43.9,14,0.0 +14602,47,9.5,43,0.0 +14602,14,23.25,3,0.0 +14602,58,13.25,13,0.0 +14602,67,14,50,0.0 +14602,69,36,9,0.0 +14603,24,4.5,35,0.0 +14603,53,32.8,38,0.0 +14603,5,21.35,16,0.0 +14603,75,7.75,16,0.0 +14603,51,53,49,0.0 +14603,8,40,4,0.0 +14603,19,9.2,30,0.0 +14603,57,19.5,42,0.0 +14603,59,55,47,0.0 +14603,30,25.89,30,0.0 +14603,6,25,36,0.0 +14603,55,24,41,0.0 +14603,3,10,25,0.0 +14603,73,15,40,0.0 +14603,27,43.9,8,0.0 +14603,49,20,45,0.0 +14603,11,21,20,0.0 +14603,42,14,39,0.0 +14603,22,21,4,0.0 +14603,37,26,17,0.0 +14603,56,38,22,0.0 +14603,7,30,48,0.0 +14603,40,18.4,19,0.0 +14603,16,17.45,23,0.0 +14603,47,9.5,19,0.0 +14603,13,6,36,0.0 +14603,1,18,9,0.0 +14603,46,12,29,0.0 +14603,9,97,34,0.0 +14603,34,14,34,0.0 +14603,48,12.75,23,0.0 +14603,52,7,3,0.0 +14603,65,21.05,21,0.0 +14603,33,2.5,49,0.0 +14603,77,13,8,0.0 +14603,41,9.65,24,0.0 +14603,69,36,32,0.0 +14603,2,19,14,0.0 +14603,67,14,44,0.0 +14603,10,31,47,0.0 +14603,15,15.5,13,0.0 +14603,70,15,29,0.0 +14603,21,10,8,0.0 +14604,64,33.25,35,0.0 +14604,29,123.79,39,0.0 +14604,76,18,19,0.0 +14604,52,7,9,0.0 +14604,35,18,40,0.0 +14604,53,32.8,44,0.0 +14604,48,12.75,47,0.0 +14604,26,31.23,22,0.0 +14604,44,19.45,19,0.0 +14604,71,21.5,42,0.0 +14604,19,9.2,16,0.0 +14604,43,46,15,0.0 +14604,36,19,47,0.0 +14604,30,25.89,18,0.0 +14604,66,17,11,0.0 +14604,59,55,2,0.0 +14604,28,45.6,4,0.0 +14604,17,39,38,0.0 +14604,40,18.4,6,0.0 +14604,11,21,22,0.0 +14604,5,21.35,20,0.0 +14604,33,2.5,49,0.0 +14604,63,43.9,46,0.0 +14604,25,14,37,0.0 +14604,73,15,30,0.0 +14604,18,62.5,34,0.0 +14604,6,25,19,0.0 +14604,31,12.5,34,0.0 +14604,24,4.5,46,0.0 +14604,7,30,12,0.0 +14604,15,15.5,26,0.0 +14604,62,49.3,9,0.0 +14604,50,16.25,34,0.0 +14605,62,49.3,33,0.0 +14605,69,36,1,0.0 +14605,26,31.23,9,0.0 +14605,10,31,46,0.0 +14605,14,23.25,31,0.0 +14605,56,38,42,0.0 +14605,61,28.5,49,0.0 +14605,19,9.2,46,0.0 +14605,70,15,33,0.0 +14605,44,19.45,43,0.0 +14605,24,4.5,48,0.0 +14605,22,21,10,0.0 +14605,1,18,18,0.0 +14605,8,40,25,0.0 +14605,29,123.79,21,0.0 +14605,71,21.5,36,0.0 +14605,50,16.25,46,0.0 +14605,2,19,18,0.0 +14605,57,19.5,39,0.0 +14605,27,43.9,41,0.0 +14605,52,7,20,0.0 +14605,60,34,49,0.0 +14605,35,18,2,0.0 +14605,31,12.5,39,0.0 +14605,21,10,15,0.0 +14605,13,6,33,0.0 +14605,12,38,40,0.0 +14605,5,21.35,49,0.0 +14605,7,30,13,0.0 +14605,49,20,30,0.0 +14605,63,43.9,24,0.0 +14605,42,14,46,0.0 +14605,53,32.8,11,0.0 +14605,45,9.5,38,0.0 +14605,20,81,5,0.0 +14605,72,34.8,15,0.0 +14606,31,12.5,29,0.0 +14606,17,39,17,0.0 +14606,1,18,10,0.0 +14606,63,43.9,29,0.0 +14606,70,15,39,0.0 +14606,54,7.45,35,0.0 +14606,48,12.75,27,0.0 +14606,15,15.5,15,0.0 +14606,11,21,10,0.0 +14606,4,22,13,0.0 +14606,72,34.8,44,0.0 +14606,14,23.25,31,0.0 +14606,73,15,10,0.0 +14606,50,16.25,20,0.0 +14606,65,21.05,32,0.0 +14606,43,46,3,0.0 +14606,12,38,33,0.0 +14606,22,21,26,0.0 +14606,57,19.5,17,0.0 +14606,28,45.6,32,0.0 +14606,19,9.2,44,0.0 +14606,34,14,47,0.0 +14606,33,2.5,28,0.0 +14606,40,18.4,33,0.0 +14606,59,55,39,0.0 +14606,58,13.25,38,0.0 +14606,49,20,49,0.0 +14606,10,31,18,0.0 +14606,53,32.8,33,0.0 +14606,60,34,17,0.0 +14606,44,19.45,21,0.0 +14606,29,123.79,37,0.0 +14606,66,17,18,0.0 +14606,64,33.25,21,0.0 +14606,77,13,17,0.0 +14606,20,81,25,0.0 +14606,13,6,27,0.0 +14606,23,9,13,0.0 +14606,27,43.9,29,0.0 +14606,9,97,49,0.0 +14606,76,18,46,0.0 +14606,6,25,49,0.0 +14606,35,18,12,0.0 +14606,36,19,15,0.0 +14606,8,40,16,0.0 +14606,52,7,49,0.0 +14606,25,14,20,0.0 +14606,56,38,12,0.0 +14606,62,49.3,34,0.0 +14606,37,26,38,0.0 +14606,75,7.75,28,0.0 +14606,38,263.5,29,0.0 +14606,2,19,4,0.0 +14606,16,17.45,26,0.0 +14606,41,9.65,7,0.0 +14606,51,53,43,0.0 +14606,26,31.23,46,0.0 +14606,55,24,1,0.0 +14606,61,28.5,37,0.0 +14606,21,10,27,0.0 +14606,7,30,12,0.0 +14606,69,36,46,0.0 +14606,46,12,21,0.0 +14606,39,18,10,0.0 +14606,18,62.5,41,0.0 +14606,5,21.35,25,0.0 +14606,3,10,8,0.0 +14606,74,10,26,0.0 +14606,32,32,24,0.0 +14606,47,9.5,24,0.0 +14606,68,12.5,33,0.0 +14606,45,9.5,8,0.0 +14607,30,25.89,17,0.0 +14607,3,10,1,0.0 +14607,21,10,41,0.0 +14607,10,31,15,0.0 +14607,17,39,50,0.0 +14607,16,17.45,39,0.0 +14607,72,34.8,8,0.0 +14607,56,38,37,0.0 +14607,63,43.9,2,0.0 +14607,68,12.5,31,0.0 +14607,55,24,14,0.0 +14607,4,22,12,0.0 +14607,44,19.45,15,0.0 +14607,70,15,16,0.0 +14607,54,7.45,3,0.0 +14607,45,9.5,26,0.0 +14607,37,26,11,0.0 +14607,67,14,38,0.0 +14607,50,16.25,35,0.0 +14607,41,9.65,6,0.0 +14607,23,9,41,0.0 +14607,25,14,34,0.0 +14607,8,40,4,0.0 +14607,59,55,21,0.0 +14607,40,18.4,24,0.0 +14607,20,81,28,0.0 +14607,34,14,1,0.0 +14607,43,46,13,0.0 +14607,35,18,27,0.0 +14607,36,19,9,0.0 +14607,73,15,26,0.0 +14607,6,25,2,0.0 +14607,38,263.5,7,0.0 +14607,42,14,45,0.0 +14607,11,21,21,0.0 +14607,71,21.5,33,0.0 +14607,39,18,44,0.0 +14607,14,23.25,33,0.0 +14607,15,15.5,44,0.0 +14607,1,18,34,0.0 +14608,73,15,45,0.0 +14608,35,18,34,0.0 +14608,32,32,29,0.0 +14608,18,62.5,9,0.0 +14608,40,18.4,2,0.0 +14608,49,20,4,0.0 +14608,55,24,26,0.0 +14608,9,97,24,0.0 +14608,51,53,35,0.0 +14608,34,14,33,0.0 +14608,10,31,41,0.0 +14608,67,14,5,0.0 +14608,60,34,35,0.0 +14609,61,28.5,50,0.0 +14609,20,81,5,0.0 +14609,75,7.75,18,0.0 +14609,73,15,2,0.0 +14609,74,10,50,0.0 +14609,8,40,1,0.0 +14609,22,21,23,0.0 +14609,47,9.5,8,0.0 +14609,34,14,19,0.0 +14609,27,43.9,11,0.0 +14609,45,9.5,18,0.0 +14609,50,16.25,22,0.0 +14609,76,18,40,0.0 +14609,26,31.23,25,0.0 +14609,60,34,50,0.0 +14609,65,21.05,20,0.0 +14609,18,62.5,40,0.0 +14609,70,15,23,0.0 +14609,36,19,48,0.0 +14609,15,15.5,16,0.0 +14610,42,14,35,0.0 +14610,55,24,11,0.0 +14610,24,4.5,32,0.0 +14610,60,34,19,0.0 +14610,28,45.6,39,0.0 +14610,16,17.45,10,0.0 +14610,73,15,19,0.0 +14610,67,14,10,0.0 +14610,6,25,23,0.0 +14610,53,32.8,42,0.0 +14610,57,19.5,7,0.0 +14610,19,9.2,31,0.0 +14610,75,7.75,6,0.0 +14610,22,21,15,0.0 +14610,8,40,26,0.0 +14610,35,18,2,0.0 +14610,76,18,36,0.0 +14610,64,33.25,41,0.0 +14610,37,26,38,0.0 +14610,31,12.5,44,0.0 +14610,4,22,30,0.0 +14610,39,18,19,0.0 +14610,18,62.5,26,0.0 +14610,5,21.35,26,0.0 +14610,43,46,32,0.0 +14610,45,9.5,24,0.0 +14610,26,31.23,5,0.0 +14610,7,30,16,0.0 +14610,61,28.5,7,0.0 +14610,77,13,2,0.0 +14610,41,9.65,28,0.0 +14610,9,97,30,0.0 +14610,49,20,2,0.0 +14610,27,43.9,10,0.0 +14610,12,38,24,0.0 +14610,51,53,25,0.0 +14610,17,39,16,0.0 +14610,32,32,17,0.0 +14610,59,55,3,0.0 +14610,38,263.5,27,0.0 +14610,66,17,39,0.0 +14610,30,25.89,20,0.0 +14610,68,12.5,5,0.0 +14610,14,23.25,47,0.0 +14610,72,34.8,5,0.0 +14610,1,18,31,0.0 +14610,52,7,28,0.0 +14610,47,9.5,13,0.0 +14610,74,10,28,0.0 +14610,62,49.3,6,0.0 +14610,70,15,18,0.0 +14610,69,36,16,0.0 +14610,10,31,8,0.0 +14610,54,7.45,6,0.0 +14610,21,10,16,0.0 +14610,65,21.05,37,0.0 +14610,33,2.5,8,0.0 +14610,25,14,42,0.0 +14610,2,19,4,0.0 +14610,36,19,39,0.0 +14610,56,38,49,0.0 +14610,44,19.45,47,0.0 +14610,71,21.5,31,0.0 +14610,40,18.4,32,0.0 +14610,58,13.25,8,0.0 +14610,34,14,21,0.0 +14610,48,12.75,3,0.0 +14610,20,81,31,0.0 +14610,29,123.79,37,0.0 +14610,63,43.9,33,0.0 +14610,23,9,5,0.0 +14611,70,15,38,0.0 +14611,34,14,26,0.0 +14611,69,36,4,0.0 +14611,32,32,19,0.0 +14611,10,31,2,0.0 +14611,27,43.9,12,0.0 +14611,48,12.75,43,0.0 +14612,15,15.5,20,0.0 +14612,32,32,41,0.0 +14612,57,19.5,5,0.0 +14612,35,18,46,0.0 +14612,45,9.5,43,0.0 +14612,67,14,31,0.0 +14612,23,9,20,0.0 +14612,63,43.9,23,0.0 +14612,27,43.9,24,0.0 +14612,53,32.8,50,0.0 +14612,11,21,40,0.0 +14612,38,263.5,5,0.0 +14612,6,25,45,0.0 +14612,75,7.75,21,0.0 +14612,56,38,49,0.0 +14612,68,12.5,33,0.0 +14612,9,97,11,0.0 +14612,2,19,45,0.0 +14612,55,24,3,0.0 +14612,8,40,1,0.0 +14612,16,17.45,13,0.0 +14612,64,33.25,45,0.0 +14612,31,12.5,8,0.0 +14612,22,21,43,0.0 +14612,69,36,43,0.0 +14612,17,39,30,0.0 +14612,73,15,21,0.0 +14612,37,26,23,0.0 +14612,5,21.35,34,0.0 +14612,20,81,44,0.0 +14612,50,16.25,16,0.0 +14612,26,31.23,47,0.0 +14612,54,7.45,40,0.0 +14612,28,45.6,3,0.0 +14612,58,13.25,46,0.0 +14612,13,6,21,0.0 +14612,47,9.5,33,0.0 +14612,33,2.5,45,0.0 +14612,44,19.45,10,0.0 +14612,76,18,22,0.0 +14612,70,15,26,0.0 +14612,59,55,36,0.0 +14612,7,30,44,0.0 +14612,41,9.65,27,0.0 +14612,77,13,44,0.0 +14613,37,26,4,0.0 +14613,12,38,22,0.0 +14613,70,15,26,0.0 +14613,13,6,20,0.0 +14613,34,14,41,0.0 +14613,50,16.25,9,0.0 +14613,30,25.89,14,0.0 +14613,69,36,3,0.0 +14613,27,43.9,40,0.0 +14613,55,24,23,0.0 +14613,62,49.3,24,0.0 +14613,76,18,30,0.0 +14613,52,7,7,0.0 +14613,31,12.5,39,0.0 +14613,9,97,14,0.0 +14613,74,10,49,0.0 +14613,51,53,43,0.0 +14613,2,19,33,0.0 +14613,58,13.25,10,0.0 +14613,45,9.5,48,0.0 +14613,75,7.75,7,0.0 +14613,42,14,50,0.0 +14613,47,9.5,35,0.0 +14613,4,22,41,0.0 +14613,11,21,9,0.0 +14613,26,31.23,28,0.0 +14613,16,17.45,30,0.0 +14613,6,25,46,0.0 +14613,73,15,36,0.0 +14613,8,40,19,0.0 +14613,49,20,34,0.0 +14613,72,34.8,21,0.0 +14613,3,10,25,0.0 +14613,71,21.5,31,0.0 +14613,33,2.5,50,0.0 +14613,18,62.5,33,0.0 +14613,20,81,33,0.0 +14613,53,32.8,23,0.0 +14613,35,18,3,0.0 +14613,29,123.79,40,0.0 +14613,7,30,22,0.0 +14613,36,19,7,0.0 +14613,22,21,2,0.0 +14613,5,21.35,44,0.0 +14613,64,33.25,17,0.0 +14613,17,39,40,0.0 +14613,21,10,9,0.0 +14614,70,15,6,0.0 +14614,8,40,35,0.0 +14614,73,15,29,0.0 +14614,26,31.23,26,0.0 +14614,12,38,20,0.0 +14614,63,43.9,10,0.0 +14614,76,18,50,0.0 +14614,11,21,21,0.0 +14614,36,19,45,0.0 +14614,68,12.5,38,0.0 +14614,15,15.5,16,0.0 +14614,43,46,14,0.0 +14614,24,4.5,48,0.0 +14614,46,12,29,0.0 +14614,56,38,46,0.0 +14614,64,33.25,27,0.0 +14614,2,19,11,0.0 +14614,32,32,24,0.0 +14614,22,21,11,0.0 +14614,4,22,19,0.0 +14614,48,12.75,30,0.0 +14614,28,45.6,25,0.0 +14614,19,9.2,17,0.0 +14614,30,25.89,5,0.0 +14614,72,34.8,12,0.0 +14614,74,10,44,0.0 +14614,16,17.45,50,0.0 +14614,13,6,30,0.0 +14614,38,263.5,28,0.0 +14614,77,13,7,0.0 +14614,21,10,8,0.0 +14614,49,20,19,0.0 +14614,67,14,19,0.0 +14614,39,18,3,0.0 +14614,27,43.9,33,0.0 +14614,29,123.79,25,0.0 +14614,17,39,3,0.0 +14614,55,24,9,0.0 +14614,1,18,29,0.0 +14614,45,9.5,38,0.0 +14614,18,62.5,40,0.0 +14614,65,21.05,8,0.0 +14614,7,30,25,0.0 +14614,35,18,14,0.0 +14614,25,14,11,0.0 +14614,66,17,9,0.0 +14614,71,21.5,25,0.0 +14614,61,28.5,8,0.0 +14614,57,19.5,4,0.0 +14614,58,13.25,3,0.0 +14614,50,16.25,8,0.0 +14614,69,36,11,0.0 +14614,42,14,41,0.0 +14614,41,9.65,15,0.0 +14614,9,97,44,0.0 +14614,53,32.8,27,0.0 +14614,31,12.5,9,0.0 +14614,62,49.3,26,0.0 +14614,33,2.5,36,0.0 +14614,14,23.25,37,0.0 +14614,34,14,18,0.0 +14614,6,25,5,0.0 +14614,10,31,33,0.0 +14614,23,9,37,0.0 +14614,3,10,41,0.0 +14614,59,55,14,0.0 +14614,52,7,43,0.0 +14614,51,53,28,0.0 +14614,5,21.35,22,0.0 +14615,6,25,46,0.0 +14615,45,9.5,23,0.0 +14615,67,14,18,0.0 +14615,27,43.9,20,0.0 +14615,63,43.9,12,0.0 +14615,72,34.8,5,0.0 +14615,57,19.5,6,0.0 +14615,52,7,38,0.0 +14615,39,18,45,0.0 +14615,70,15,35,0.0 +14615,7,30,40,0.0 +14615,34,14,13,0.0 +14615,51,53,47,0.0 +14615,40,18.4,32,0.0 +14615,28,45.6,37,0.0 +14615,35,18,15,0.0 +14615,18,62.5,37,0.0 +14615,62,49.3,50,0.0 +14615,59,55,11,0.0 +14615,71,21.5,33,0.0 +14615,61,28.5,29,0.0 +14615,8,40,14,0.0 +14615,48,12.75,23,0.0 +14615,56,38,5,0.0 +14615,3,10,35,0.0 +14615,73,15,24,0.0 +14615,44,19.45,22,0.0 +14615,76,18,3,0.0 +14615,43,46,46,0.0 +14615,15,15.5,17,0.0 +14615,49,20,32,0.0 +14615,77,13,46,0.0 +14615,2,19,48,0.0 +14615,31,12.5,2,0.0 +14615,69,36,38,0.0 +14615,65,21.05,48,0.0 +14615,50,16.25,22,0.0 +14615,9,97,1,0.0 +14615,4,22,32,0.0 +14615,13,6,3,0.0 +14615,10,31,30,0.0 +14615,37,26,36,0.0 +14615,33,2.5,14,0.0 +14615,26,31.23,42,0.0 +14615,42,14,47,0.0 +14615,68,12.5,32,0.0 +14615,19,9.2,19,0.0 +14615,16,17.45,26,0.0 +14615,41,9.65,34,0.0 +14615,23,9,33,0.0 +14615,36,19,17,0.0 +14615,60,34,23,0.0 +14615,46,12,5,0.0 +14615,17,39,38,0.0 +14616,41,9.65,33,0.0 +14616,74,10,42,0.0 +14616,44,19.45,24,0.0 +14616,59,55,26,0.0 +14616,16,17.45,2,0.0 +14616,28,45.6,21,0.0 +14616,48,12.75,28,0.0 +14616,42,14,42,0.0 +14616,19,9.2,28,0.0 +14616,75,7.75,16,0.0 +14616,26,31.23,50,0.0 +14616,3,10,27,0.0 +14616,58,13.25,18,0.0 +14616,20,81,35,0.0 +14616,72,34.8,8,0.0 +14616,64,33.25,30,0.0 +14616,49,20,1,0.0 +14616,45,9.5,37,0.0 +14616,40,18.4,34,0.0 +14616,15,15.5,11,0.0 +14616,34,14,13,0.0 +14616,55,24,4,0.0 +14616,70,15,3,0.0 +14616,69,36,34,0.0 +14616,18,62.5,42,0.0 +14616,8,40,44,0.0 +14616,63,43.9,47,0.0 +14616,53,32.8,32,0.0 +14616,4,22,2,0.0 +14616,38,263.5,35,0.0 +14616,35,18,15,0.0 +14616,6,25,7,0.0 +14616,77,13,33,0.0 +14616,14,23.25,13,0.0 +14616,73,15,21,0.0 +14616,17,39,22,0.0 +14616,13,6,1,0.0 +14616,76,18,43,0.0 +14616,51,53,9,0.0 +14616,23,9,27,0.0 +14616,1,18,6,0.0 +14616,68,12.5,40,0.0 +14616,36,19,47,0.0 +14616,31,12.5,32,0.0 +14616,25,14,50,0.0 +14616,46,12,3,0.0 +14616,10,31,50,0.0 +14616,33,2.5,28,0.0 +14616,52,7,14,0.0 +14616,62,49.3,50,0.0 +14616,11,21,42,0.0 +14616,54,7.45,11,0.0 +14616,22,21,20,0.0 +14616,47,9.5,33,0.0 +14616,67,14,6,0.0 +14616,50,16.25,24,0.0 +14616,71,21.5,38,0.0 +14616,5,21.35,3,0.0 +14616,30,25.89,5,0.0 +14616,37,26,15,0.0 +14616,39,18,13,0.0 +14616,9,97,31,0.0 +14616,32,32,24,0.0 +14616,65,21.05,31,0.0 +14616,61,28.5,45,0.0 +14616,27,43.9,46,0.0 +14616,57,19.5,19,0.0 +14616,56,38,23,0.0 +14617,22,21,27,0.0 +14617,5,21.35,31,0.0 +14617,11,21,17,0.0 +14617,70,15,33,0.0 +14617,39,18,47,0.0 +14617,23,9,23,0.0 +14617,66,17,46,0.0 +14617,9,97,13,0.0 +14617,31,12.5,5,0.0 +14617,41,9.65,22,0.0 +14617,61,28.5,25,0.0 +14617,37,26,31,0.0 +14617,59,55,3,0.0 +14617,2,19,1,0.0 +14617,43,46,40,0.0 +14617,25,14,46,0.0 +14617,52,7,33,0.0 +14617,51,53,17,0.0 +14617,40,18.4,17,0.0 +14617,73,15,50,0.0 +14617,60,34,43,0.0 +14617,56,38,25,0.0 +14617,32,32,12,0.0 +14617,38,263.5,47,0.0 +14617,50,16.25,10,0.0 +14617,57,19.5,23,0.0 +14617,12,38,39,0.0 +14617,15,15.5,16,0.0 +14617,34,14,12,0.0 +14617,44,19.45,26,0.0 +14617,76,18,40,0.0 +14617,3,10,4,0.0 +14617,19,9.2,26,0.0 +14617,6,25,30,0.0 +14617,10,31,6,0.0 +14618,41,9.65,31,0.0 +14618,51,53,33,0.0 +14618,3,10,15,0.0 +14618,69,36,7,0.0 +14618,17,39,31,0.0 +14618,18,62.5,28,0.0 +14618,29,123.79,25,0.0 +14618,28,45.6,11,0.0 +14618,63,43.9,42,0.0 +14618,20,81,31,0.0 +14618,34,14,12,0.0 +14618,64,33.25,7,0.0 +14618,4,22,2,0.0 +14618,71,21.5,33,0.0 +14618,73,15,8,0.0 +14618,53,32.8,38,0.0 +14618,2,19,21,0.0 +14618,44,19.45,42,0.0 +14618,50,16.25,49,0.0 +14618,70,15,2,0.0 +14618,7,30,29,0.0 +14618,31,12.5,39,0.0 +14618,38,263.5,27,0.0 +14618,66,17,41,0.0 +14618,32,32,1,0.0 +14618,56,38,37,0.0 +14618,72,34.8,7,0.0 +14618,14,23.25,43,0.0 +14618,21,10,45,0.0 +14618,22,21,8,0.0 +14618,6,25,15,0.0 +14618,61,28.5,23,0.0 +14618,16,17.45,28,0.0 +14618,11,21,46,0.0 +14618,26,31.23,28,0.0 +14618,55,24,35,0.0 +14618,13,6,16,0.0 +14618,23,9,11,0.0 +14618,45,9.5,33,0.0 +14618,54,7.45,47,0.0 +14618,57,19.5,36,0.0 +14618,15,15.5,5,0.0 +14618,65,21.05,40,0.0 +14618,49,20,29,0.0 +14618,42,14,16,0.0 +14618,40,18.4,36,0.0 +14618,74,10,40,0.0 +14618,33,2.5,11,0.0 +14618,75,7.75,32,0.0 +14618,25,14,28,0.0 +14618,62,49.3,7,0.0 +14618,43,46,20,0.0 +14618,30,25.89,32,0.0 +14618,10,31,19,0.0 +14618,19,9.2,22,0.0 +14618,5,21.35,23,0.0 +14618,39,18,50,0.0 +14618,68,12.5,22,0.0 +14618,67,14,17,0.0 +14618,60,34,9,0.0 +14618,27,43.9,6,0.0 +14618,37,26,33,0.0 +14618,77,13,28,0.0 +14618,76,18,22,0.0 +14618,9,97,47,0.0 +14618,12,38,48,0.0 +14618,48,12.75,47,0.0 +14618,35,18,10,0.0 +14618,52,7,15,0.0 +14618,46,12,18,0.0 +14618,47,9.5,28,0.0 +14619,54,7.45,4,0.0 +14619,33,2.5,42,0.0 +14619,46,12,44,0.0 +14619,40,18.4,43,0.0 +14619,75,7.75,40,0.0 +14619,9,97,15,0.0 +14619,77,13,48,0.0 +14619,48,12.75,43,0.0 +14619,67,14,49,0.0 +14619,63,43.9,10,0.0 +14619,32,32,11,0.0 +14619,26,31.23,35,0.0 +14619,41,9.65,19,0.0 +14619,29,123.79,24,0.0 +14619,8,40,27,0.0 +14619,3,10,10,0.0 +14619,28,45.6,47,0.0 +14619,14,23.25,45,0.0 +14619,27,43.9,26,0.0 +14619,76,18,33,0.0 +14619,25,14,20,0.0 +14620,19,9.2,9,0.0 +14620,3,10,12,0.0 +14620,62,49.3,35,0.0 +14620,40,18.4,9,0.0 +14620,60,34,47,0.0 +14620,71,21.5,10,0.0 +14620,31,12.5,17,0.0 +14620,24,4.5,49,0.0 +14620,1,18,26,0.0 +14620,25,14,7,0.0 +14620,22,21,23,0.0 +14620,11,21,46,0.0 +14620,30,25.89,8,0.0 +14620,70,15,36,0.0 +14620,57,19.5,36,0.0 +14620,12,38,1,0.0 +14620,14,23.25,2,0.0 +14620,6,25,47,0.0 +14620,50,16.25,47,0.0 +14620,48,12.75,19,0.0 +14620,26,31.23,3,0.0 +14620,20,81,39,0.0 +14620,56,38,10,0.0 +14620,38,263.5,3,0.0 +14620,34,14,26,0.0 +14620,32,32,34,0.0 +14620,15,15.5,10,0.0 +14620,64,33.25,19,0.0 +14620,13,6,3,0.0 +14621,12,38,29,0.0 +14621,63,43.9,49,0.0 +14621,5,21.35,42,0.0 +14621,13,6,50,0.0 +14621,71,21.5,36,0.0 +14621,33,2.5,48,0.0 +14621,68,12.5,31,0.0 +14621,57,19.5,8,0.0 +14621,14,23.25,4,0.0 +14621,65,21.05,12,0.0 +14621,28,45.6,1,0.0 +14621,29,123.79,13,0.0 +14621,10,31,35,0.0 +14621,76,18,31,0.0 +14621,67,14,42,0.0 +14621,30,25.89,31,0.0 +14621,7,30,49,0.0 +14621,70,15,10,0.0 +14621,39,18,42,0.0 +14621,32,32,36,0.0 +14621,19,9.2,13,0.0 +14621,49,20,44,0.0 +14621,52,7,47,0.0 +14621,6,25,39,0.0 +14621,55,24,16,0.0 +14621,73,15,47,0.0 +14621,53,32.8,45,0.0 +14621,75,7.75,19,0.0 +14621,20,81,21,0.0 +14621,77,13,11,0.0 +14621,2,19,41,0.0 +14621,1,18,12,0.0 +14621,25,14,19,0.0 +14621,31,12.5,5,0.0 +14621,44,19.45,16,0.0 +14621,56,38,2,0.0 +14621,43,46,38,0.0 +14621,48,12.75,40,0.0 +14621,40,18.4,31,0.0 +14621,59,55,18,0.0 +14621,72,34.8,19,0.0 +14621,42,14,45,0.0 +14621,17,39,22,0.0 +14621,61,28.5,28,0.0 +14621,51,53,36,0.0 +14621,54,7.45,27,0.0 +14621,21,10,18,0.0 +14621,62,49.3,4,0.0 +14621,60,34,41,0.0 +14621,35,18,19,0.0 +14621,4,22,11,0.0 +14621,36,19,42,0.0 +14621,15,15.5,4,0.0 +14621,16,17.45,25,0.0 +14621,27,43.9,50,0.0 +14621,8,40,44,0.0 +14621,38,263.5,16,0.0 +14621,11,21,24,0.0 +14621,24,4.5,3,0.0 +14621,74,10,14,0.0 +14621,66,17,15,0.0 +14621,34,14,31,0.0 +14621,26,31.23,30,0.0 +14622,45,9.5,29,0.0 +14622,4,22,24,0.0 +14622,48,12.75,47,0.0 +14622,53,32.8,47,0.0 +14622,69,36,32,0.0 +14623,69,36,44,0.0 +14623,31,12.5,26,0.0 +14623,44,19.45,12,0.0 +14623,72,34.8,24,0.0 +14623,64,33.25,20,0.0 +14623,60,34,19,0.0 +14623,22,21,39,0.0 +14623,9,97,48,0.0 +14623,33,2.5,5,0.0 +14623,49,20,50,0.0 +14623,52,7,12,0.0 +14623,39,18,5,0.0 +14623,57,19.5,13,0.0 +14623,3,10,47,0.0 +14623,65,21.05,8,0.0 +14623,4,22,46,0.0 +14623,16,17.45,27,0.0 +14623,47,9.5,27,0.0 +14623,11,21,12,0.0 +14623,43,46,48,0.0 +14623,19,9.2,13,0.0 +14623,20,81,26,0.0 +14623,17,39,48,0.0 +14623,8,40,17,0.0 +14623,18,62.5,7,0.0 +14623,56,38,26,0.0 +14623,58,13.25,2,0.0 +14623,10,31,50,0.0 +14623,55,24,28,0.0 +14623,74,10,15,0.0 +14623,68,12.5,17,0.0 +14623,59,55,37,0.0 +14623,32,32,13,0.0 +14623,76,18,36,0.0 +14623,5,21.35,43,0.0 +14623,1,18,24,0.0 +14623,46,12,40,0.0 +14623,12,38,31,0.0 +14623,37,26,1,0.0 +14623,41,9.65,50,0.0 +14623,42,14,1,0.0 +14623,34,14,11,0.0 +14623,25,14,40,0.0 +14623,26,31.23,49,0.0 +14623,2,19,43,0.0 +14623,45,9.5,22,0.0 +14623,50,16.25,16,0.0 +14623,6,25,25,0.0 +14623,62,49.3,50,0.0 +14623,24,4.5,17,0.0 +14623,36,19,47,0.0 +14623,38,263.5,19,0.0 +14623,71,21.5,11,0.0 +14623,23,9,27,0.0 +14623,29,123.79,4,0.0 +14623,70,15,18,0.0 +14623,63,43.9,50,0.0 +14623,66,17,27,0.0 +14623,54,7.45,24,0.0 +14623,13,6,24,0.0 +14623,15,15.5,17,0.0 +14623,67,14,45,0.0 +14624,22,21,37,0.0 +14624,25,14,5,0.0 +14624,50,16.25,38,0.0 +14624,14,23.25,39,0.0 +14624,15,15.5,47,0.0 +14624,5,21.35,38,0.0 +14624,32,32,10,0.0 +14624,73,15,19,0.0 +14624,64,33.25,44,0.0 +14624,1,18,16,0.0 +14624,26,31.23,33,0.0 +14624,11,21,48,0.0 +14624,2,19,42,0.0 +14624,71,21.5,12,0.0 +14624,3,10,21,0.0 +14624,39,18,16,0.0 +14624,46,12,44,0.0 +14624,45,9.5,41,0.0 +14624,69,36,46,0.0 +14624,56,38,33,0.0 +14624,67,14,4,0.0 +14624,53,32.8,6,0.0 +14624,58,13.25,8,0.0 +14624,17,39,34,0.0 +14624,52,7,44,0.0 +14624,21,10,8,0.0 +14624,37,26,35,0.0 +14624,65,21.05,39,0.0 +14624,49,20,48,0.0 +14624,47,9.5,47,0.0 +14624,9,97,1,0.0 +14624,28,45.6,2,0.0 +14624,61,28.5,19,0.0 +14624,43,46,3,0.0 +14624,57,19.5,25,0.0 +14624,27,43.9,19,0.0 +14624,23,9,42,0.0 +14624,66,17,32,0.0 +14624,62,49.3,6,0.0 +14624,13,6,23,0.0 +14624,54,7.45,26,0.0 +14624,34,14,15,0.0 +14624,20,81,45,0.0 +14624,55,24,14,0.0 +14624,18,62.5,26,0.0 +14624,68,12.5,10,0.0 +14624,30,25.89,5,0.0 +14624,31,12.5,11,0.0 +14624,63,43.9,42,0.0 +14624,75,7.75,31,0.0 +14624,70,15,16,0.0 +14624,76,18,35,0.0 +14624,38,263.5,12,0.0 +14624,35,18,25,0.0 +14624,7,30,15,0.0 +14624,51,53,14,0.0 +14624,60,34,49,0.0 +14624,33,2.5,21,0.0 +14624,4,22,19,0.0 +14624,72,34.8,10,0.0 +14624,41,9.65,50,0.0 +14624,77,13,34,0.0 +14624,10,31,43,0.0 +14625,30,25.89,5,0.0 +14625,8,40,47,0.0 +14625,23,9,19,0.0 +14625,67,14,22,0.0 +14625,59,55,5,0.0 +14625,40,18.4,19,0.0 +14625,55,24,8,0.0 +14625,57,19.5,44,0.0 +14625,77,13,44,0.0 +14625,37,26,36,0.0 +14626,58,13.25,34,0.0 +14626,64,33.25,35,0.0 +14626,35,18,44,0.0 +14626,5,21.35,41,0.0 +14626,70,15,4,0.0 +14626,55,24,5,0.0 +14626,65,21.05,41,0.0 +14626,38,263.5,10,0.0 +14626,69,36,8,0.0 +14627,42,14,38,0.0 +14627,51,53,26,0.0 +14627,3,10,47,0.0 +14627,60,34,41,0.0 +14627,59,55,22,0.0 +14627,34,14,9,0.0 +14627,21,10,38,0.0 +14627,1,18,49,0.0 +14627,54,7.45,46,0.0 +14627,58,13.25,3,0.0 +14627,13,6,3,0.0 +14627,44,19.45,25,0.0 +14627,26,31.23,9,0.0 +14627,70,15,43,0.0 +14627,5,21.35,27,0.0 +14627,16,17.45,43,0.0 +14627,40,18.4,30,0.0 +14627,76,18,49,0.0 +14627,62,49.3,44,0.0 +14627,10,31,47,0.0 +14627,15,15.5,27,0.0 +14627,61,28.5,40,0.0 +14627,27,43.9,14,0.0 +14627,48,12.75,25,0.0 +14627,19,9.2,20,0.0 +14627,12,38,44,0.0 +14627,36,19,41,0.0 +14627,77,13,27,0.0 +14627,14,23.25,16,0.0 +14627,20,81,13,0.0 +14627,24,4.5,22,0.0 +14627,39,18,27,0.0 +14628,14,23.25,39,0.0 +14628,45,9.5,12,0.0 +14628,46,12,2,0.0 +14628,40,18.4,15,0.0 +14628,39,18,49,0.0 +14628,8,40,17,0.0 +14628,7,30,24,0.0 +14628,42,14,45,0.0 +14628,32,32,43,0.0 +14628,47,9.5,14,0.0 +14628,71,21.5,34,0.0 +14628,29,123.79,31,0.0 +14628,60,34,48,0.0 +14628,64,33.25,18,0.0 +14628,53,32.8,32,0.0 +14628,28,45.6,13,0.0 +14628,76,18,50,0.0 +14628,11,21,1,0.0 +14628,70,15,30,0.0 +14628,5,21.35,18,0.0 +14628,17,39,39,0.0 +14628,12,38,28,0.0 +14628,56,38,22,0.0 +14628,62,49.3,40,0.0 +14628,55,24,32,0.0 +14628,61,28.5,38,0.0 +14628,36,19,44,0.0 +14628,59,55,47,0.0 +14628,69,36,7,0.0 +14628,66,17,17,0.0 +14628,4,22,19,0.0 +14628,51,53,32,0.0 +14628,74,10,32,0.0 +14628,31,12.5,2,0.0 +14628,18,62.5,24,0.0 +14628,43,46,35,0.0 +14628,37,26,18,0.0 +14628,73,15,30,0.0 +14628,50,16.25,16,0.0 +14628,77,13,49,0.0 +14628,15,15.5,25,0.0 +14628,63,43.9,38,0.0 +14628,16,17.45,29,0.0 +14628,3,10,15,0.0 +14628,58,13.25,3,0.0 +14628,54,7.45,48,0.0 +14628,33,2.5,10,0.0 +14628,34,14,3,0.0 +14628,23,9,15,0.0 +14628,1,18,26,0.0 +14628,67,14,7,0.0 +14628,25,14,16,0.0 +14629,15,15.5,37,0.0 +14629,66,17,40,0.0 +14629,69,36,20,0.0 +14629,24,4.5,14,0.0 +14629,8,40,2,0.0 +14629,32,32,26,0.0 +14629,71,21.5,41,0.0 +14629,20,81,36,0.0 +14629,14,23.25,31,0.0 +14629,45,9.5,12,0.0 +14629,1,18,24,0.0 +14629,10,31,40,0.0 +14629,35,18,1,0.0 +14629,75,7.75,7,0.0 +14629,36,19,28,0.0 +14629,42,14,47,0.0 +14629,16,17.45,38,0.0 +14629,48,12.75,35,0.0 +14629,52,7,29,0.0 +14629,27,43.9,50,0.0 +14629,41,9.65,45,0.0 +14629,65,21.05,16,0.0 +14629,62,49.3,30,0.0 +14629,43,46,21,0.0 +14629,31,12.5,12,0.0 +14629,26,31.23,35,0.0 +14629,59,55,24,0.0 +14629,30,25.89,34,0.0 +14629,68,12.5,42,0.0 +14629,39,18,5,0.0 +14629,74,10,32,0.0 +14629,38,263.5,26,0.0 +14629,57,19.5,20,0.0 +14629,76,18,50,0.0 +14629,44,19.45,25,0.0 +14629,53,32.8,48,0.0 +14629,23,9,20,0.0 +14629,25,14,15,0.0 +14629,63,43.9,37,0.0 +14629,61,28.5,48,0.0 +14629,9,97,11,0.0 +14629,72,34.8,16,0.0 +14629,56,38,38,0.0 +14629,73,15,18,0.0 +14629,50,16.25,31,0.0 +14629,17,39,26,0.0 +14629,29,123.79,18,0.0 +14629,4,22,7,0.0 +14629,64,33.25,32,0.0 +14629,28,45.6,14,0.0 +14629,21,10,47,0.0 +14629,19,9.2,44,0.0 +14629,70,15,41,0.0 +14629,46,12,38,0.0 +14629,54,7.45,23,0.0 +14629,34,14,26,0.0 +14629,22,21,11,0.0 +14629,3,10,12,0.0 +14629,7,30,44,0.0 +14629,58,13.25,7,0.0 +14629,37,26,2,0.0 +14629,47,9.5,17,0.0 +14629,51,53,48,0.0 +14629,13,6,37,0.0 +14629,6,25,35,0.0 +14629,5,21.35,22,0.0 +14629,18,62.5,49,0.0 +14629,11,21,29,0.0 +14630,43,46,49,0.0 +14630,28,45.6,31,0.0 +14630,50,16.25,5,0.0 +14630,58,13.25,31,0.0 +14630,71,21.5,48,0.0 +14630,72,34.8,8,0.0 +14630,53,32.8,2,0.0 +14630,65,21.05,24,0.0 +14630,31,12.5,5,0.0 +14630,42,14,12,0.0 +14630,3,10,27,0.0 +14630,24,4.5,9,0.0 +14630,52,7,16,0.0 +14630,56,38,6,0.0 +14630,36,19,23,0.0 +14630,1,18,9,0.0 +14630,63,43.9,39,0.0 +14630,19,9.2,47,0.0 +14630,51,53,2,0.0 +14630,27,43.9,16,0.0 +14630,66,17,7,0.0 +14630,40,18.4,42,0.0 +14630,59,55,11,0.0 +14630,35,18,37,0.0 +14630,74,10,6,0.0 +14630,13,6,34,0.0 +14630,60,34,50,0.0 +14630,69,36,13,0.0 +14630,44,19.45,23,0.0 +14630,5,21.35,35,0.0 +14630,41,9.65,35,0.0 +14630,16,17.45,35,0.0 +14630,47,9.5,5,0.0 +14630,11,21,44,0.0 +14630,18,62.5,27,0.0 +14630,46,12,5,0.0 +14630,14,23.25,1,0.0 +14630,75,7.75,44,0.0 +14630,77,13,50,0.0 +14630,76,18,21,0.0 +14630,62,49.3,24,0.0 +14630,73,15,12,0.0 +14630,12,38,36,0.0 +14630,49,20,25,0.0 +14630,68,12.5,40,0.0 +14630,21,10,47,0.0 +14630,70,15,30,0.0 +14630,64,33.25,46,0.0 +14630,48,12.75,32,0.0 +14630,30,25.89,39,0.0 +14630,4,22,29,0.0 +14630,55,24,43,0.0 +14630,23,9,26,0.0 +14630,22,21,22,0.0 +14630,39,18,29,0.0 +14630,29,123.79,31,0.0 +14630,67,14,12,0.0 +14630,9,97,3,0.0 +14630,6,25,38,0.0 +14630,32,32,32,0.0 +14630,34,14,6,0.0 +14630,54,7.45,11,0.0 +14630,20,81,36,0.0 +14631,16,17.45,21,0.0 +14631,51,53,26,0.0 +14631,43,46,17,0.0 +14631,69,36,31,0.0 +14631,50,16.25,21,0.0 +14631,59,55,39,0.0 +14631,12,38,50,0.0 +14631,53,32.8,34,0.0 +14631,48,12.75,49,0.0 +14631,70,15,7,0.0 +14631,39,18,25,0.0 +14631,28,45.6,42,0.0 +14631,60,34,19,0.0 +14631,10,31,41,0.0 +14631,65,21.05,42,0.0 +14631,14,23.25,24,0.0 +14631,34,14,2,0.0 +14631,77,13,39,0.0 +14631,30,25.89,46,0.0 +14631,40,18.4,41,0.0 +14631,49,20,8,0.0 +14631,62,49.3,38,0.0 +14631,35,18,38,0.0 +14631,8,40,27,0.0 +14631,20,81,5,0.0 +14631,56,38,41,0.0 +14631,55,24,22,0.0 +14631,68,12.5,46,0.0 +14631,9,97,32,0.0 +14631,42,14,2,0.0 +14631,54,7.45,8,0.0 +14631,74,10,32,0.0 +14631,23,9,28,0.0 +14631,66,17,19,0.0 +14631,6,25,50,0.0 +14631,22,21,49,0.0 +14631,57,19.5,19,0.0 +14631,72,34.8,24,0.0 +14631,17,39,26,0.0 +14631,1,18,18,0.0 +14631,75,7.75,35,0.0 +14631,26,31.23,41,0.0 +14631,36,19,48,0.0 +14631,37,26,41,0.0 +14631,61,28.5,2,0.0 +14631,7,30,23,0.0 +14631,18,62.5,47,0.0 +14631,64,33.25,29,0.0 +14631,52,7,5,0.0 +14631,31,12.5,25,0.0 +14631,2,19,21,0.0 +14631,11,21,43,0.0 +14631,13,6,19,0.0 +14631,24,4.5,41,0.0 +14631,19,9.2,19,0.0 +14631,44,19.45,21,0.0 +14631,27,43.9,42,0.0 +14631,45,9.5,23,0.0 +14631,33,2.5,38,0.0 +14632,45,9.5,2,0.0 +14632,46,12,4,0.0 +14632,3,10,4,0.0 +14632,9,97,41,0.0 +14632,35,18,46,0.0 +14632,41,9.65,15,0.0 +14632,22,21,38,0.0 +14632,7,30,14,0.0 +14632,38,263.5,44,0.0 +14632,65,21.05,11,0.0 +14632,50,16.25,18,0.0 +14633,24,4.5,45,0.0 +14633,26,31.23,37,0.0 +14633,61,28.5,6,0.0 +14633,36,19,48,0.0 +14633,16,17.45,37,0.0 +14633,11,21,32,0.0 +14633,33,2.5,20,0.0 +14633,75,7.75,27,0.0 +14633,44,19.45,27,0.0 +14633,48,12.75,13,0.0 +14633,41,9.65,35,0.0 +14633,8,40,9,0.0 +14633,22,21,25,0.0 +14633,51,53,49,0.0 +14633,49,20,17,0.0 +14633,64,33.25,42,0.0 +14633,62,49.3,42,0.0 +14633,19,9.2,36,0.0 +14633,32,32,15,0.0 +14633,46,12,14,0.0 +14633,20,81,49,0.0 +14633,54,7.45,41,0.0 +14633,40,18.4,46,0.0 +14633,12,38,19,0.0 +14633,71,21.5,29,0.0 +14633,4,22,8,0.0 +14633,57,19.5,13,0.0 +14633,18,62.5,13,0.0 +14633,25,14,40,0.0 +14633,5,21.35,28,0.0 +14634,64,33.25,12,0.0 +14634,50,16.25,30,0.0 +14634,70,15,3,0.0 +14634,34,14,45,0.0 +14634,53,32.8,20,0.0 +14634,40,18.4,2,0.0 +14634,7,30,23,0.0 +14634,43,46,49,0.0 +14634,47,9.5,22,0.0 +14634,60,34,40,0.0 +14634,42,14,43,0.0 +14634,3,10,26,0.0 +14634,72,34.8,35,0.0 +14634,45,9.5,10,0.0 +14634,59,55,35,0.0 +14634,35,18,22,0.0 +14634,2,19,35,0.0 +14634,71,21.5,22,0.0 +14634,74,10,32,0.0 +14634,63,43.9,46,0.0 +14634,17,39,47,0.0 +14634,14,23.25,50,0.0 +14634,28,45.6,26,0.0 +14634,33,2.5,24,0.0 +14634,65,21.05,24,0.0 +14634,19,9.2,20,0.0 +14634,52,7,19,0.0 +14634,66,17,30,0.0 +14634,75,7.75,38,0.0 +14634,27,43.9,12,0.0 +14634,32,32,43,0.0 +14634,30,25.89,7,0.0 +14634,31,12.5,40,0.0 +14634,26,31.23,15,0.0 +14634,77,13,32,0.0 +14634,8,40,27,0.0 +14634,58,13.25,8,0.0 +14634,56,38,43,0.0 +14634,49,20,43,0.0 +14634,29,123.79,46,0.0 +14634,76,18,16,0.0 +14634,24,4.5,42,0.0 +14634,55,24,6,0.0 +14634,69,36,20,0.0 +14634,4,22,20,0.0 +14634,46,12,16,0.0 +14634,39,18,47,0.0 +14634,36,19,30,0.0 +14634,1,18,44,0.0 +14634,48,12.75,3,0.0 +14634,9,97,38,0.0 +14634,25,14,11,0.0 +14634,67,14,46,0.0 +14634,6,25,24,0.0 +14634,20,81,30,0.0 +14634,12,38,27,0.0 +14634,11,21,43,0.0 +14634,5,21.35,42,0.0 +14634,57,19.5,32,0.0 +14634,61,28.5,31,0.0 +14634,21,10,30,0.0 +14634,62,49.3,2,0.0 +14634,51,53,33,0.0 +14634,44,19.45,36,0.0 +14634,13,6,37,0.0 +14634,54,7.45,45,0.0 +14634,15,15.5,43,0.0 +14634,22,21,27,0.0 +14634,18,62.5,35,0.0 +14634,68,12.5,48,0.0 +14634,10,31,45,0.0 +14634,37,26,22,0.0 +14634,16,17.45,10,0.0 +14634,38,263.5,17,0.0 +14634,73,15,43,0.0 +14635,1,18,29,0.0 +14635,10,31,9,0.0 +14635,45,9.5,10,0.0 +14635,17,39,39,0.0 +14635,48,12.75,6,0.0 +14635,4,22,10,0.0 +14635,29,123.79,15,0.0 +14635,59,55,45,0.0 +14635,39,18,2,0.0 +14635,49,20,27,0.0 +14635,52,7,48,0.0 +14635,68,12.5,46,0.0 +14635,21,10,46,0.0 +14635,47,9.5,17,0.0 +14635,15,15.5,2,0.0 +14635,16,17.45,35,0.0 +14635,57,19.5,26,0.0 +14635,53,32.8,31,0.0 +14635,7,30,29,0.0 +14635,27,43.9,24,0.0 +14635,41,9.65,5,0.0 +14635,62,49.3,8,0.0 +14635,70,15,17,0.0 +14635,31,12.5,2,0.0 +14635,43,46,25,0.0 +14635,3,10,47,0.0 +14635,42,14,47,0.0 +14635,13,6,15,0.0 +14635,33,2.5,24,0.0 +14635,44,19.45,2,0.0 +14635,35,18,34,0.0 +14635,54,7.45,17,0.0 +14635,69,36,26,0.0 +14635,50,16.25,44,0.0 +14635,6,25,49,0.0 +14635,5,21.35,26,0.0 +14635,56,38,16,0.0 +14635,19,9.2,37,0.0 +14635,58,13.25,28,0.0 +14635,28,45.6,49,0.0 +14635,2,19,21,0.0 +14635,26,31.23,8,0.0 +14635,63,43.9,25,0.0 +14635,55,24,40,0.0 +14635,12,38,14,0.0 +14635,60,34,4,0.0 +14635,37,26,27,0.0 +14635,32,32,37,0.0 +14635,65,21.05,33,0.0 +14635,34,14,1,0.0 +14635,22,21,33,0.0 +14635,38,263.5,13,0.0 +14635,25,14,7,0.0 +14635,18,62.5,23,0.0 +14636,30,25.89,42,0.0 +14636,69,36,2,0.0 +14636,76,18,47,0.0 +14636,17,39,32,0.0 +14636,27,43.9,49,0.0 +14636,19,9.2,47,0.0 +14636,5,21.35,30,0.0 +14636,70,15,20,0.0 +14636,60,34,23,0.0 +14636,67,14,14,0.0 +14636,64,33.25,37,0.0 +14636,4,22,5,0.0 +14636,43,46,39,0.0 +14636,26,31.23,48,0.0 +14636,58,13.25,40,0.0 +14637,75,7.75,8,0.0 +14637,2,19,10,0.0 +14637,58,13.25,42,0.0 +14637,23,9,50,0.0 +14637,37,26,32,0.0 +14637,27,43.9,1,0.0 +14637,11,21,22,0.0 +14637,62,49.3,2,0.0 +14637,48,12.75,26,0.0 +14637,16,17.45,34,0.0 +14637,46,12,12,0.0 +14637,66,17,16,0.0 +14637,34,14,46,0.0 +14637,74,10,41,0.0 +14637,61,28.5,44,0.0 +14637,57,19.5,30,0.0 +14637,56,38,1,0.0 +14637,12,38,19,0.0 +14637,20,81,47,0.0 +14637,25,14,39,0.0 +14637,64,33.25,27,0.0 +14637,77,13,49,0.0 +14637,35,18,20,0.0 +14637,38,263.5,8,0.0 +14637,43,46,20,0.0 +14637,1,18,38,0.0 +14637,69,36,49,0.0 +14637,53,32.8,30,0.0 +14637,33,2.5,38,0.0 +14637,72,34.8,2,0.0 +14637,45,9.5,19,0.0 +14637,73,15,32,0.0 +14637,3,10,36,0.0 +14637,22,21,1,0.0 +14637,6,25,25,0.0 +14637,26,31.23,33,0.0 +14637,24,4.5,33,0.0 +14637,32,32,20,0.0 +14638,15,15.5,20,0.0 +14638,75,7.75,48,0.0 +14638,22,21,34,0.0 +14638,39,18,4,0.0 +14638,3,10,23,0.0 +14638,1,18,21,0.0 +14638,12,38,39,0.0 +14638,14,23.25,47,0.0 +14638,61,28.5,15,0.0 +14638,65,21.05,34,0.0 +14638,20,81,34,0.0 +14638,13,6,18,0.0 +14638,73,15,23,0.0 +14638,31,12.5,39,0.0 +14638,4,22,38,0.0 +14638,57,19.5,12,0.0 +14638,69,36,9,0.0 +14638,10,31,14,0.0 +14638,54,7.45,1,0.0 +14638,43,46,27,0.0 +14638,24,4.5,10,0.0 +14638,60,34,17,0.0 +14638,6,25,15,0.0 +14638,53,32.8,42,0.0 +14638,67,14,38,0.0 +14639,29,123.79,13,0.0 +14639,63,43.9,49,0.0 +14639,69,36,25,0.0 +14639,9,97,5,0.0 +14639,54,7.45,8,0.0 +14639,60,34,24,0.0 +14639,28,45.6,50,0.0 +14639,5,21.35,46,0.0 +14639,23,9,47,0.0 +14639,58,13.25,3,0.0 +14639,27,43.9,49,0.0 +14639,30,25.89,29,0.0 +14639,42,14,46,0.0 +14639,10,31,38,0.0 +14639,71,21.5,10,0.0 +14639,59,55,48,0.0 +14639,39,18,30,0.0 +14639,51,53,33,0.0 +14639,33,2.5,30,0.0 +14639,32,32,4,0.0 +14639,66,17,31,0.0 +14639,43,46,35,0.0 +14640,38,263.5,34,0.0 +14640,64,33.25,1,0.0 +14640,13,6,15,0.0 +14640,60,34,12,0.0 +14640,6,25,43,0.0 +14640,4,22,9,0.0 +14640,65,21.05,47,0.0 +14640,58,13.25,46,0.0 +14640,29,123.79,39,0.0 +14640,20,81,29,0.0 +14640,17,39,24,0.0 +14640,44,19.45,14,0.0 +14640,48,12.75,21,0.0 +14640,12,38,19,0.0 +14640,45,9.5,27,0.0 +14640,56,38,6,0.0 +14640,69,36,41,0.0 +14640,14,23.25,21,0.0 +14640,32,32,49,0.0 +14640,74,10,9,0.0 +14640,15,15.5,39,0.0 +14640,8,40,47,0.0 +14640,22,21,29,0.0 +14640,76,18,9,0.0 +14640,75,7.75,6,0.0 +14640,1,18,44,0.0 +14640,19,9.2,48,0.0 +14640,37,26,2,0.0 +14640,55,24,17,0.0 +14640,10,31,5,0.0 +14640,51,53,11,0.0 +14640,5,21.35,34,0.0 +14640,77,13,42,0.0 +14640,57,19.5,8,0.0 +14640,27,43.9,39,0.0 +14640,53,32.8,10,0.0 +14640,67,14,45,0.0 +14640,9,97,10,0.0 +14640,63,43.9,1,0.0 +14640,47,9.5,48,0.0 +14640,61,28.5,15,0.0 +14640,59,55,17,0.0 +14640,43,46,7,0.0 +14640,36,19,50,0.0 +14640,72,34.8,28,0.0 +14640,2,19,9,0.0 +14640,70,15,19,0.0 +14640,41,9.65,44,0.0 +14640,28,45.6,9,0.0 +14640,3,10,29,0.0 +14640,11,21,19,0.0 +14640,21,10,29,0.0 +14640,16,17.45,40,0.0 +14640,18,62.5,41,0.0 +14640,25,14,40,0.0 +14640,39,18,6,0.0 +14640,46,12,45,0.0 +14640,71,21.5,41,0.0 +14640,7,30,8,0.0 +14640,33,2.5,29,0.0 +14640,42,14,16,0.0 +14640,68,12.5,28,0.0 +14640,34,14,48,0.0 +14640,50,16.25,23,0.0 +14640,23,9,29,0.0 +14640,31,12.5,2,0.0 +14641,28,45.6,15,0.0 +14641,42,14,49,0.0 +14641,4,22,28,0.0 +14641,58,13.25,39,0.0 +14641,7,30,46,0.0 +14641,20,81,19,0.0 +14641,26,31.23,45,0.0 +14641,43,46,35,0.0 +14641,25,14,19,0.0 +14641,2,19,31,0.0 +14641,47,9.5,5,0.0 +14641,76,18,42,0.0 +14641,44,19.45,15,0.0 +14641,31,12.5,4,0.0 +14641,12,38,35,0.0 +14641,65,21.05,25,0.0 +14641,17,39,32,0.0 +14641,13,6,14,0.0 +14642,41,9.65,25,0.0 +14642,9,97,14,0.0 +14642,44,19.45,36,0.0 +14642,71,21.5,25,0.0 +14642,12,38,3,0.0 +14642,53,32.8,43,0.0 +14642,54,7.45,34,0.0 +14642,34,14,25,0.0 +14642,32,32,16,0.0 +14642,67,14,14,0.0 +14642,55,24,36,0.0 +14642,64,33.25,12,0.0 +14642,18,62.5,15,0.0 +14642,4,22,50,0.0 +14642,24,4.5,8,0.0 +14642,51,53,37,0.0 +14642,46,12,24,0.0 +14642,20,81,18,0.0 +14642,75,7.75,23,0.0 +14642,77,13,18,0.0 +14642,22,21,25,0.0 +14642,29,123.79,32,0.0 +14642,14,23.25,12,0.0 +14642,36,19,27,0.0 +14642,23,9,49,0.0 +14642,74,10,27,0.0 +14642,47,9.5,18,0.0 +14642,8,40,11,0.0 +14642,62,49.3,1,0.0 +14642,5,21.35,12,0.0 +14642,61,28.5,47,0.0 +14642,15,15.5,46,0.0 +14642,39,18,40,0.0 +14642,59,55,35,0.0 +14642,65,21.05,50,0.0 +14642,76,18,16,0.0 +14642,2,19,34,0.0 +14642,52,7,33,0.0 +14642,63,43.9,14,0.0 +14642,27,43.9,25,0.0 +14642,73,15,28,0.0 +14642,60,34,33,0.0 +14642,50,16.25,20,0.0 +14642,48,12.75,24,0.0 +14642,1,18,47,0.0 +14642,21,10,48,0.0 +14642,19,9.2,47,0.0 +14642,17,39,39,0.0 +14642,30,25.89,37,0.0 +14642,31,12.5,11,0.0 +14642,40,18.4,44,0.0 +14643,32,32,21,0.0 +14643,63,43.9,8,0.0 +14643,10,31,1,0.0 +14643,49,20,4,0.0 +14643,65,21.05,6,0.0 +14643,73,15,5,0.0 +14643,13,6,20,0.0 +14643,69,36,2,0.0 +14643,67,14,47,0.0 +14643,52,7,3,0.0 +14643,26,31.23,29,0.0 +14643,23,9,31,0.0 +14643,17,39,41,0.0 +14644,7,30,26,0.0 +14644,64,33.25,3,0.0 +14644,15,15.5,18,0.0 +14644,22,21,32,0.0 +14644,31,12.5,32,0.0 +14644,59,55,32,0.0 +14644,19,9.2,36,0.0 +14644,10,31,3,0.0 +14644,6,25,29,0.0 +14644,18,62.5,41,0.0 +14644,57,19.5,27,0.0 +14644,40,18.4,15,0.0 +14644,12,38,1,0.0 +14644,4,22,38,0.0 +14644,48,12.75,43,0.0 +14644,52,7,36,0.0 +14644,58,13.25,43,0.0 +14644,39,18,11,0.0 +14644,65,21.05,20,0.0 +14644,53,32.8,12,0.0 +14644,14,23.25,23,0.0 +14644,17,39,39,0.0 +14644,13,6,45,0.0 +14644,3,10,42,0.0 +14644,46,12,13,0.0 +14644,49,20,24,0.0 +14644,9,97,14,0.0 +14644,63,43.9,12,0.0 +14644,74,10,8,0.0 +14644,62,49.3,12,0.0 +14644,38,263.5,9,0.0 +14644,26,31.23,3,0.0 +14644,75,7.75,48,0.0 +14644,30,25.89,13,0.0 +14644,20,81,27,0.0 +14644,25,14,45,0.0 +14644,33,2.5,17,0.0 +14644,27,43.9,26,0.0 +14644,54,7.45,18,0.0 +14644,44,19.45,19,0.0 +14644,37,26,8,0.0 +14644,5,21.35,8,0.0 +14644,71,21.5,17,0.0 +14644,61,28.5,14,0.0 +14644,50,16.25,2,0.0 +14644,8,40,40,0.0 +14644,29,123.79,40,0.0 +14644,1,18,50,0.0 +14644,70,15,9,0.0 +14644,41,9.65,42,0.0 +14644,11,21,16,0.0 +14644,16,17.45,47,0.0 +14644,45,9.5,15,0.0 +14644,47,9.5,36,0.0 +14644,67,14,8,0.0 +14644,32,32,30,0.0 +14644,73,15,49,0.0 +14644,34,14,44,0.0 +14644,72,34.8,10,0.0 +14644,43,46,20,0.0 +14644,56,38,42,0.0 +14644,66,17,24,0.0 +14644,76,18,10,0.0 +14644,21,10,49,0.0 +14644,35,18,38,0.0 +14644,36,19,35,0.0 +14645,6,25,37,0.0 +14645,36,19,38,0.0 +14645,72,34.8,15,0.0 +14645,68,12.5,34,0.0 +14645,13,6,43,0.0 +14645,58,13.25,45,0.0 +14645,52,7,32,0.0 +14645,64,33.25,13,0.0 +14645,38,263.5,42,0.0 +14645,7,30,16,0.0 +14645,31,12.5,50,0.0 +14645,45,9.5,40,0.0 +14645,57,19.5,19,0.0 +14645,21,10,32,0.0 +14645,62,49.3,23,0.0 +14645,56,38,32,0.0 +14645,9,97,16,0.0 +14645,15,15.5,16,0.0 +14645,16,17.45,6,0.0 +14645,32,32,14,0.0 +14645,55,24,47,0.0 +14645,3,10,50,0.0 +14645,29,123.79,3,0.0 +14645,22,21,33,0.0 +14645,17,39,2,0.0 +14646,33,2.5,40,0.0 +14646,16,17.45,7,0.0 +14646,44,19.45,44,0.0 +14646,77,13,49,0.0 +14646,67,14,38,0.0 +14646,71,21.5,45,0.0 +14646,17,39,39,0.0 +14646,5,21.35,14,0.0 +14646,22,21,42,0.0 +14646,8,40,46,0.0 +14646,18,62.5,18,0.0 +14646,20,81,43,0.0 +14646,37,26,7,0.0 +14646,27,43.9,5,0.0 +14646,74,10,42,0.0 +14646,43,46,49,0.0 +14646,26,31.23,22,0.0 +14646,72,34.8,42,0.0 +14646,38,263.5,14,0.0 +14646,12,38,12,0.0 +14646,53,32.8,33,0.0 +14646,1,18,4,0.0 +14646,42,14,9,0.0 +14646,35,18,47,0.0 +14646,29,123.79,21,0.0 +14646,55,24,1,0.0 +14646,41,9.65,44,0.0 +14646,54,7.45,4,0.0 +14646,57,19.5,34,0.0 +14646,70,15,13,0.0 +14647,62,49.3,42,0.0 +14647,68,12.5,22,0.0 +14647,50,16.25,25,0.0 +14647,36,19,22,0.0 +14647,17,39,37,0.0 +14647,12,38,23,0.0 +14647,9,97,30,0.0 +14647,22,21,35,0.0 +14647,32,32,20,0.0 +14647,24,4.5,28,0.0 +14647,66,17,19,0.0 +14647,51,53,20,0.0 +14647,3,10,26,0.0 +14647,57,19.5,2,0.0 +14647,54,7.45,19,0.0 +14647,30,25.89,40,0.0 +14647,39,18,47,0.0 +14647,64,33.25,48,0.0 +14647,47,9.5,6,0.0 +14647,43,46,49,0.0 +14647,73,15,46,0.0 +14647,20,81,22,0.0 +14647,42,14,38,0.0 +14647,14,23.25,18,0.0 +14647,49,20,27,0.0 +14647,6,25,9,0.0 +14647,2,19,13,0.0 +14647,60,34,35,0.0 +14647,34,14,29,0.0 +14647,67,14,31,0.0 +14647,33,2.5,17,0.0 +14647,75,7.75,40,0.0 +14647,69,36,3,0.0 +14647,53,32.8,4,0.0 +14647,46,12,31,0.0 +14647,59,55,19,0.0 +14647,31,12.5,9,0.0 +14647,19,9.2,46,0.0 +14647,29,123.79,45,0.0 +14647,35,18,19,0.0 +14647,4,22,8,0.0 +14648,64,33.25,43,0.0 +14648,18,62.5,39,0.0 +14648,26,31.23,19,0.0 +14648,48,12.75,49,0.0 +14648,23,9,22,0.0 +14648,44,19.45,37,0.0 +14648,4,22,3,0.0 +14648,39,18,29,0.0 +14648,33,2.5,40,0.0 +14648,12,38,5,0.0 +14648,29,123.79,32,0.0 +14648,9,97,23,0.0 +14648,14,23.25,2,0.0 +14648,27,43.9,33,0.0 +14648,52,7,30,0.0 +14648,58,13.25,46,0.0 +14648,57,19.5,26,0.0 +14648,40,18.4,23,0.0 +14648,73,15,49,0.0 +14648,70,15,15,0.0 +14648,55,24,49,0.0 +14648,24,4.5,43,0.0 +14648,66,17,44,0.0 +14648,1,18,2,0.0 +14648,61,28.5,16,0.0 +14648,59,55,35,0.0 +14648,20,81,7,0.0 +14648,19,9.2,13,0.0 +14648,47,9.5,36,0.0 +14648,72,34.8,32,0.0 +14648,6,25,23,0.0 +14648,3,10,39,0.0 +14648,37,26,29,0.0 +14648,35,18,9,0.0 +14648,5,21.35,19,0.0 +14648,45,9.5,47,0.0 +14648,17,39,22,0.0 +14649,22,21,35,0.0 +14649,46,12,9,0.0 +14649,70,15,12,0.0 +14649,26,31.23,14,0.0 +14649,10,31,46,0.0 +14649,60,34,20,0.0 +14649,19,9.2,21,0.0 +14649,43,46,41,0.0 +14649,62,49.3,29,0.0 +14649,39,18,1,0.0 +14649,40,18.4,50,0.0 +14649,57,19.5,9,0.0 +14649,5,21.35,5,0.0 +14649,20,81,11,0.0 +14649,15,15.5,27,0.0 +14649,37,26,20,0.0 +14649,52,7,35,0.0 +14649,27,43.9,50,0.0 +14649,32,32,13,0.0 +14649,17,39,8,0.0 +14649,66,17,43,0.0 +14649,54,7.45,11,0.0 +14649,63,43.9,35,0.0 +14649,67,14,15,0.0 +14649,65,21.05,8,0.0 +14649,49,20,34,0.0 +14649,45,9.5,20,0.0 +14649,8,40,3,0.0 +14649,35,18,3,0.0 +14649,11,21,36,0.0 +14649,13,6,15,0.0 +14649,61,28.5,20,0.0 +14649,34,14,36,0.0 +14649,75,7.75,38,0.0 +14649,31,12.5,7,0.0 +14649,16,17.45,33,0.0 +14649,77,13,3,0.0 +14649,30,25.89,39,0.0 +14649,73,15,9,0.0 +14649,3,10,42,0.0 +14649,74,10,3,0.0 +14649,72,34.8,32,0.0 +14649,12,38,7,0.0 +14649,6,25,6,0.0 +14649,38,263.5,6,0.0 +14649,51,53,43,0.0 +14649,55,24,18,0.0 +14649,21,10,14,0.0 +14649,4,22,38,0.0 +14649,69,36,45,0.0 +14649,36,19,13,0.0 +14649,14,23.25,25,0.0 +14649,24,4.5,46,0.0 +14649,68,12.5,49,0.0 +14649,47,9.5,11,0.0 +14649,29,123.79,10,0.0 +14650,26,31.23,37,0.0 +14650,69,36,10,0.0 +14650,17,39,13,0.0 +14650,72,34.8,31,0.0 +14650,51,53,15,0.0 +14650,70,15,43,0.0 +14650,61,28.5,17,0.0 +14650,15,15.5,20,0.0 +14650,71,21.5,7,0.0 +14650,60,34,21,0.0 +14650,32,32,30,0.0 +14650,52,7,40,0.0 +14650,44,19.45,15,0.0 +14650,3,10,35,0.0 +14650,20,81,10,0.0 +14650,73,15,33,0.0 +14650,64,33.25,4,0.0 +14650,49,20,4,0.0 +14650,30,25.89,42,0.0 +14650,1,18,31,0.0 +14650,24,4.5,43,0.0 +14650,63,43.9,45,0.0 +14650,8,40,50,0.0 +14650,41,9.65,50,0.0 +14650,12,38,13,0.0 +14650,37,26,12,0.0 +14650,2,19,48,0.0 +14650,19,9.2,15,0.0 +14650,56,38,3,0.0 +14650,66,17,43,0.0 +14650,65,21.05,29,0.0 +14650,25,14,3,0.0 +14650,10,31,2,0.0 +14650,31,12.5,39,0.0 +14650,14,23.25,16,0.0 +14650,74,10,11,0.0 +14650,35,18,25,0.0 +14650,34,14,39,0.0 +14650,62,49.3,46,0.0 +14650,59,55,1,0.0 +14651,46,12,32,0.0 +14651,74,10,2,0.0 +14651,22,21,5,0.0 +14651,42,14,49,0.0 +14651,18,62.5,20,0.0 +14651,76,18,8,0.0 +14651,8,40,49,0.0 +14651,44,19.45,31,0.0 +14651,32,32,35,0.0 +14651,34,14,21,0.0 +14651,25,14,14,0.0 +14651,31,12.5,23,0.0 +14651,57,19.5,25,0.0 +14651,37,26,28,0.0 +14651,35,18,43,0.0 +14651,38,263.5,21,0.0 +14651,60,34,43,0.0 +14651,23,9,46,0.0 +14651,56,38,33,0.0 +14651,12,38,3,0.0 +14651,71,21.5,1,0.0 +14651,77,13,9,0.0 +14651,15,15.5,7,0.0 +14651,17,39,37,0.0 +14651,10,31,36,0.0 +14651,49,20,34,0.0 +14651,16,17.45,19,0.0 +14651,40,18.4,30,0.0 +14651,36,19,8,0.0 +14651,45,9.5,31,0.0 +14651,63,43.9,32,0.0 +14651,43,46,41,0.0 +14651,67,14,2,0.0 +14651,5,21.35,6,0.0 +14651,52,7,29,0.0 +14651,3,10,50,0.0 +14651,11,21,49,0.0 +14651,69,36,26,0.0 +14651,55,24,43,0.0 +14651,28,45.6,46,0.0 +14651,33,2.5,7,0.0 +14651,21,10,13,0.0 +14651,4,22,30,0.0 +14651,24,4.5,1,0.0 +14651,27,43.9,24,0.0 +14651,66,17,35,0.0 +14651,20,81,50,0.0 +14651,61,28.5,18,0.0 +14651,9,97,35,0.0 +14651,58,13.25,33,0.0 +14651,7,30,32,0.0 +14651,2,19,45,0.0 +14651,59,55,24,0.0 +14651,51,53,13,0.0 +14651,65,21.05,35,0.0 +14651,70,15,29,0.0 +14651,19,9.2,38,0.0 +14651,54,7.45,21,0.0 +14651,26,31.23,5,0.0 +14651,73,15,30,0.0 +14651,53,32.8,7,0.0 +14651,39,18,34,0.0 +14651,47,9.5,9,0.0 +14651,72,34.8,23,0.0 +14651,29,123.79,41,0.0 +14652,49,20,47,0.0 +14652,4,22,50,0.0 +14652,74,10,37,0.0 +14652,2,19,15,0.0 +14652,34,14,33,0.0 +14652,42,14,30,0.0 +14652,71,21.5,32,0.0 +14652,76,18,27,0.0 +14652,3,10,39,0.0 +14652,63,43.9,31,0.0 +14652,38,263.5,47,0.0 +14652,48,12.75,35,0.0 +14652,41,9.65,1,0.0 +14652,53,32.8,43,0.0 +14652,44,19.45,38,0.0 +14652,61,28.5,50,0.0 +14652,6,25,37,0.0 +14652,28,45.6,10,0.0 +14652,36,19,4,0.0 +14652,27,43.9,13,0.0 +14652,43,46,36,0.0 +14652,19,9.2,20,0.0 +14652,8,40,47,0.0 +14652,18,62.5,43,0.0 +14653,58,13.25,23,0.0 +14653,31,12.5,43,0.0 +14653,50,16.25,28,0.0 +14653,59,55,50,0.0 +14653,11,21,25,0.0 +14653,10,31,33,0.0 +14653,67,14,5,0.0 +14653,64,33.25,21,0.0 +14653,70,15,10,0.0 +14653,35,18,26,0.0 +14653,6,25,47,0.0 +14653,27,43.9,15,0.0 +14653,52,7,11,0.0 +14653,63,43.9,32,0.0 +14653,69,36,42,0.0 +14654,25,14,47,0.0 +14654,34,14,42,0.0 +14654,68,12.5,12,0.0 +14654,73,15,10,0.0 +14654,20,81,50,0.0 +14654,14,23.25,31,0.0 +14654,28,45.6,16,0.0 +14654,33,2.5,2,0.0 +14654,11,21,37,0.0 +14654,57,19.5,11,0.0 +14654,70,15,48,0.0 +14654,18,62.5,18,0.0 +14654,7,30,3,0.0 +14654,27,43.9,40,0.0 +14654,67,14,41,0.0 +14654,42,14,32,0.0 +14654,35,18,40,0.0 +14654,9,97,29,0.0 +14654,63,43.9,35,0.0 +14654,15,15.5,27,0.0 +14654,75,7.75,6,0.0 +14654,29,123.79,2,0.0 +14654,39,18,42,0.0 +14654,45,9.5,27,0.0 +14654,8,40,13,0.0 +14654,16,17.45,45,0.0 +14654,76,18,42,0.0 +14654,26,31.23,46,0.0 +14654,59,55,37,0.0 +14654,3,10,19,0.0 +14654,55,24,33,0.0 +14654,10,31,38,0.0 +14654,37,26,27,0.0 +14654,53,32.8,21,0.0 +14654,74,10,22,0.0 +14654,56,38,41,0.0 +14654,50,16.25,35,0.0 +14654,64,33.25,45,0.0 +14654,48,12.75,12,0.0 +14654,24,4.5,40,0.0 +14654,23,9,3,0.0 +14654,13,6,44,0.0 +14654,43,46,39,0.0 +14654,12,38,12,0.0 +14654,21,10,42,0.0 +14654,19,9.2,43,0.0 +14654,41,9.65,24,0.0 +14654,71,21.5,7,0.0 +14654,4,22,8,0.0 +14654,30,25.89,8,0.0 +14654,31,12.5,23,0.0 +14654,47,9.5,26,0.0 +14654,36,19,25,0.0 +14654,1,18,16,0.0 +14654,40,18.4,50,0.0 +14654,62,49.3,11,0.0 +14654,22,21,1,0.0 +14654,58,13.25,35,0.0 +14654,54,7.45,43,0.0 +14654,77,13,13,0.0 +14654,61,28.5,15,0.0 +14654,49,20,27,0.0 +14654,44,19.45,40,0.0 +14654,51,53,12,0.0 +14654,38,263.5,36,0.0 +14654,65,21.05,48,0.0 +14654,6,25,9,0.0 +14654,46,12,17,0.0 +14654,2,19,8,0.0 +14654,72,34.8,10,0.0 +14654,32,32,22,0.0 +14655,42,14,4,0.0 +14655,65,21.05,18,0.0 +14655,1,18,7,0.0 +14655,22,21,5,0.0 +14655,5,21.35,23,0.0 +14655,27,43.9,43,0.0 +14655,70,15,8,0.0 +14655,62,49.3,35,0.0 +14655,64,33.25,16,0.0 +14655,11,21,15,0.0 +14655,48,12.75,35,0.0 +14655,7,30,38,0.0 +14655,67,14,9,0.0 +14655,16,17.45,46,0.0 +14655,60,34,49,0.0 +14655,24,4.5,46,0.0 +14655,28,45.6,38,0.0 +14655,10,31,7,0.0 +14655,54,7.45,31,0.0 +14655,36,19,13,0.0 +14655,20,81,13,0.0 +14655,51,53,2,0.0 +14655,41,9.65,35,0.0 +14655,34,14,48,0.0 +14655,2,19,4,0.0 +14655,58,13.25,24,0.0 +14655,17,39,43,0.0 +14655,21,10,23,0.0 +14655,8,40,29,0.0 +14655,44,19.45,50,0.0 +14655,59,55,26,0.0 +14655,72,34.8,24,0.0 +14655,38,263.5,28,0.0 +14655,69,36,5,0.0 +14655,32,32,48,0.0 +14655,14,23.25,9,0.0 +14655,29,123.79,47,0.0 +14655,12,38,18,0.0 +14655,45,9.5,18,0.0 +14655,33,2.5,1,0.0 +14655,74,10,40,0.0 +14655,46,12,25,0.0 +14655,13,6,12,0.0 +14655,4,22,24,0.0 +14655,55,24,18,0.0 +14655,47,9.5,6,0.0 +14655,56,38,3,0.0 +14655,19,9.2,31,0.0 +14655,49,20,16,0.0 +14655,50,16.25,2,0.0 +14655,63,43.9,6,0.0 +14655,31,12.5,26,0.0 +14655,40,18.4,25,0.0 +14655,73,15,33,0.0 +14655,9,97,9,0.0 +14655,23,9,8,0.0 +14655,30,25.89,32,0.0 +14655,77,13,35,0.0 +14655,3,10,18,0.0 +14655,39,18,13,0.0 +14655,53,32.8,30,0.0 +14655,18,62.5,25,0.0 +14655,68,12.5,13,0.0 +14655,25,14,1,0.0 +14655,35,18,41,0.0 +14655,43,46,35,0.0 +14655,57,19.5,2,0.0 +14656,26,31.23,35,0.0 +14656,64,33.25,7,0.0 +14656,70,15,26,0.0 +14656,47,9.5,46,0.0 +14656,25,14,27,0.0 +14656,73,15,49,0.0 +14656,29,123.79,26,0.0 +14656,72,34.8,44,0.0 +14656,77,13,40,0.0 +14656,14,23.25,34,0.0 +14656,48,12.75,16,0.0 +14656,15,15.5,22,0.0 +14656,46,12,42,0.0 +14656,24,4.5,32,0.0 +14656,30,25.89,15,0.0 +14656,69,36,37,0.0 +14656,22,21,11,0.0 +14656,3,10,30,0.0 +14656,61,28.5,21,0.0 +14656,41,9.65,40,0.0 +14656,44,19.45,48,0.0 +14656,71,21.5,30,0.0 +14656,65,21.05,37,0.0 +14656,39,18,26,0.0 +14656,45,9.5,42,0.0 +14656,40,18.4,10,0.0 +14656,34,14,48,0.0 +14657,63,43.9,7,0.0 +14657,6,25,4,0.0 +14657,30,25.89,19,0.0 +14657,57,19.5,23,0.0 +14657,65,21.05,21,0.0 +14657,39,18,49,0.0 +14657,2,19,42,0.0 +14657,38,263.5,47,0.0 +14657,3,10,45,0.0 +14657,73,15,25,0.0 +14657,50,16.25,24,0.0 +14657,18,62.5,42,0.0 +14657,32,32,5,0.0 +14657,28,45.6,25,0.0 +14657,43,46,13,0.0 +14657,22,21,4,0.0 +14657,40,18.4,18,0.0 +14657,48,12.75,27,0.0 +14657,10,31,33,0.0 +14657,53,32.8,45,0.0 +14657,13,6,23,0.0 +14657,56,38,14,0.0 +14657,54,7.45,28,0.0 +14657,51,53,24,0.0 +14657,37,26,27,0.0 +14657,75,7.75,47,0.0 +14657,8,40,8,0.0 +14657,25,14,28,0.0 +14657,7,30,16,0.0 +14657,5,21.35,50,0.0 +14657,24,4.5,19,0.0 +14657,71,21.5,47,0.0 +14657,55,24,12,0.0 +14657,70,15,24,0.0 +14657,47,9.5,14,0.0 +14657,45,9.5,45,0.0 +14657,62,49.3,4,0.0 +14657,68,12.5,36,0.0 +14657,61,28.5,37,0.0 +14657,36,19,13,0.0 +14657,23,9,27,0.0 +14657,29,123.79,19,0.0 +14657,74,10,12,0.0 +14657,42,14,21,0.0 +14657,20,81,36,0.0 +14657,34,14,29,0.0 +14657,72,34.8,44,0.0 +14658,34,14,5,0.0 +14658,19,9.2,49,0.0 +14658,53,32.8,21,0.0 +14658,29,123.79,36,0.0 +14658,35,18,44,0.0 +14658,69,36,19,0.0 +14658,42,14,21,0.0 +14658,28,45.6,36,0.0 +14658,10,31,49,0.0 +14658,38,263.5,2,0.0 +14658,12,38,27,0.0 +14658,72,34.8,39,0.0 +14658,67,14,18,0.0 +14658,55,24,50,0.0 +14658,37,26,23,0.0 +14658,60,34,23,0.0 +14658,33,2.5,18,0.0 +14658,49,20,44,0.0 +14658,36,19,10,0.0 +14658,18,62.5,25,0.0 +14658,25,14,26,0.0 +14658,41,9.65,30,0.0 +14658,14,23.25,49,0.0 +14658,26,31.23,4,0.0 +14658,24,4.5,49,0.0 +14658,17,39,20,0.0 +14658,71,21.5,8,0.0 +14658,3,10,2,0.0 +14658,54,7.45,7,0.0 +14658,63,43.9,42,0.0 +14658,77,13,14,0.0 +14658,45,9.5,41,0.0 +14658,73,15,2,0.0 +14658,66,17,11,0.0 +14658,57,19.5,12,0.0 +14658,30,25.89,41,0.0 +14658,9,97,45,0.0 +14658,75,7.75,18,0.0 +14658,6,25,29,0.0 +14658,68,12.5,50,0.0 +14658,1,18,18,0.0 +14658,58,13.25,3,0.0 +14658,48,12.75,39,0.0 +14658,61,28.5,16,0.0 +14658,65,21.05,2,0.0 +14658,27,43.9,43,0.0 +14658,64,33.25,49,0.0 +14658,47,9.5,47,0.0 +14658,46,12,4,0.0 +14658,51,53,25,0.0 +14658,70,15,47,0.0 +14658,59,55,30,0.0 +14658,39,18,44,0.0 +14658,62,49.3,5,0.0 +14658,43,46,40,0.0 +14658,8,40,28,0.0 +14658,20,81,8,0.0 +14658,7,30,44,0.0 +14658,74,10,33,0.0 +14658,13,6,12,0.0 +14658,40,18.4,40,0.0 +14658,56,38,21,0.0 +14658,2,19,24,0.0 +14658,16,17.45,11,0.0 +14658,52,7,33,0.0 +14658,50,16.25,28,0.0 +14658,23,9,9,0.0 +14658,4,22,49,0.0 +14659,14,23.25,48,0.0 +14659,69,36,39,0.0 +14659,58,13.25,24,0.0 +14659,5,21.35,9,0.0 +14659,27,43.9,2,0.0 +14659,37,26,30,0.0 +14659,2,19,26,0.0 +14659,72,34.8,45,0.0 +14659,6,25,6,0.0 +14659,62,49.3,5,0.0 +14659,61,28.5,50,0.0 +14659,71,21.5,43,0.0 +14659,20,81,6,0.0 +14659,70,15,2,0.0 +14659,30,25.89,14,0.0 +14659,39,18,13,0.0 +14659,9,97,5,0.0 +14659,59,55,32,0.0 +14660,45,9.5,38,0.0 +14660,71,21.5,47,0.0 +14660,31,12.5,14,0.0 +14660,57,19.5,30,0.0 +14660,27,43.9,8,0.0 +14660,53,32.8,39,0.0 +14660,7,30,8,0.0 +14660,52,7,3,0.0 +14660,17,39,47,0.0 +14660,63,43.9,33,0.0 +14660,60,34,42,0.0 +14660,9,97,44,0.0 +14660,29,123.79,7,0.0 +14660,65,21.05,35,0.0 +14660,62,49.3,9,0.0 +14660,64,33.25,18,0.0 +14660,16,17.45,41,0.0 +14660,75,7.75,13,0.0 +14660,36,19,27,0.0 +14660,50,16.25,30,0.0 +14660,77,13,6,0.0 +14660,39,18,27,0.0 +14660,37,26,35,0.0 +14660,18,62.5,41,0.0 +14660,68,12.5,25,0.0 +14660,42,14,15,0.0 +14660,12,38,22,0.0 +14660,34,14,28,0.0 +14660,48,12.75,48,0.0 +14660,35,18,3,0.0 +14660,58,13.25,22,0.0 +14660,59,55,6,0.0 +14660,51,53,7,0.0 +14660,72,34.8,37,0.0 +14660,32,32,12,0.0 +14660,70,15,15,0.0 +14660,25,14,49,0.0 +14660,38,263.5,14,0.0 +14660,73,15,8,0.0 +14660,69,36,16,0.0 +14660,76,18,4,0.0 +14660,56,38,34,0.0 +14660,66,17,16,0.0 +14660,19,9.2,37,0.0 +14660,6,25,38,0.0 +14660,47,9.5,49,0.0 +14660,43,46,6,0.0 +14660,21,10,19,0.0 +14660,67,14,11,0.0 +14660,41,9.65,1,0.0 +14660,33,2.5,11,0.0 +14661,24,4.5,43,0.0 +14661,15,15.5,39,0.0 +14661,36,19,12,0.0 +14661,2,19,41,0.0 +14661,71,21.5,30,0.0 +14661,66,17,1,0.0 +14661,54,7.45,6,0.0 +14661,69,36,17,0.0 +14661,61,28.5,24,0.0 +14661,20,81,23,0.0 +14661,70,15,50,0.0 +14661,19,9.2,24,0.0 +14661,48,12.75,13,0.0 +14661,56,38,8,0.0 +14661,17,39,29,0.0 +14661,42,14,4,0.0 +14661,25,14,6,0.0 +14661,58,13.25,28,0.0 +14661,64,33.25,12,0.0 +14661,62,49.3,26,0.0 +14661,21,10,37,0.0 +14661,68,12.5,41,0.0 +14661,16,17.45,9,0.0 +14661,34,14,34,0.0 +14661,45,9.5,7,0.0 +14661,75,7.75,14,0.0 +14661,9,97,21,0.0 +14661,59,55,37,0.0 +14661,1,18,10,0.0 +14661,12,38,29,0.0 +14661,74,10,7,0.0 +14662,25,14,3,0.0 +14662,60,34,4,0.0 +14662,46,12,43,0.0 +14662,16,17.45,17,0.0 +14662,69,36,5,0.0 +14662,17,39,44,0.0 +14662,21,10,24,0.0 +14662,19,9.2,4,0.0 +14662,26,31.23,48,0.0 +14662,43,46,42,0.0 +14662,62,49.3,31,0.0 +14662,38,263.5,33,0.0 +14662,14,23.25,30,0.0 +14662,68,12.5,48,0.0 +14662,55,24,34,0.0 +14662,45,9.5,39,0.0 +14662,53,32.8,32,0.0 +14662,5,21.35,15,0.0 +14663,6,25,12,0.0 +14663,15,15.5,29,0.0 +14663,77,13,24,0.0 +14663,27,43.9,50,0.0 +14663,12,38,43,0.0 +14663,29,123.79,19,0.0 +14663,25,14,19,0.0 +14663,37,26,25,0.0 +14663,56,38,6,0.0 +14663,57,19.5,6,0.0 +14663,69,36,2,0.0 +14663,64,33.25,12,0.0 +14663,50,16.25,4,0.0 +14663,14,23.25,42,0.0 +14663,19,9.2,11,0.0 +14663,13,6,16,0.0 +14663,67,14,26,0.0 +14663,51,53,43,0.0 +14663,7,30,32,0.0 +14663,10,31,33,0.0 +14663,1,18,12,0.0 +14663,30,25.89,36,0.0 +14663,43,46,39,0.0 +14663,54,7.45,48,0.0 +14663,55,24,18,0.0 +14663,48,12.75,31,0.0 +14663,18,62.5,30,0.0 +14663,39,18,16,0.0 +14663,32,32,46,0.0 +14663,45,9.5,1,0.0 +14663,60,34,23,0.0 +14663,61,28.5,26,0.0 +14663,53,32.8,46,0.0 +14663,71,21.5,1,0.0 +14663,41,9.65,26,0.0 +14663,2,19,15,0.0 +14663,59,55,28,0.0 +14663,70,15,36,0.0 +14663,26,31.23,42,0.0 +14663,68,12.5,2,0.0 +14663,24,4.5,27,0.0 +14663,42,14,34,0.0 +14663,58,13.25,20,0.0 +14663,5,21.35,37,0.0 +14663,72,34.8,28,0.0 +14663,76,18,18,0.0 +14663,36,19,12,0.0 +14663,4,22,13,0.0 +14663,20,81,7,0.0 +14663,23,9,45,0.0 +14663,73,15,4,0.0 +14663,21,10,31,0.0 +14663,16,17.45,36,0.0 +14663,65,21.05,31,0.0 +14663,31,12.5,44,0.0 +14663,35,18,37,0.0 +14663,75,7.75,49,0.0 +14663,66,17,6,0.0 +14663,74,10,18,0.0 +14663,47,9.5,25,0.0 +14663,62,49.3,3,0.0 +14663,33,2.5,5,0.0 +14663,11,21,1,0.0 +14663,46,12,24,0.0 +14663,63,43.9,32,0.0 +14663,49,20,45,0.0 +14663,8,40,20,0.0 +14663,9,97,12,0.0 +14663,3,10,38,0.0 +14663,38,263.5,2,0.0 +14663,44,19.45,34,0.0 +14663,22,21,23,0.0 +14663,40,18.4,33,0.0 +14663,52,7,50,0.0 +14663,17,39,39,0.0 +14663,34,14,34,0.0 +14664,34,14,49,0.0 +14664,33,2.5,50,0.0 +14664,30,25.89,31,0.0 +14664,12,38,20,0.0 +14664,26,31.23,6,0.0 +14664,16,17.45,7,0.0 +14664,49,20,42,0.0 +14664,46,12,9,0.0 +14664,36,19,33,0.0 +14664,66,17,6,0.0 +14664,67,14,19,0.0 +14664,69,36,22,0.0 +14664,25,14,9,0.0 +14664,2,19,47,0.0 +14664,15,15.5,12,0.0 +14664,76,18,49,0.0 +14665,31,12.5,36,0.0 +14665,75,7.75,4,0.0 +14665,63,43.9,47,0.0 +14665,61,28.5,43,0.0 +14665,47,9.5,45,0.0 +14665,9,97,18,0.0 +14665,42,14,35,0.0 +14665,52,7,14,0.0 +14665,8,40,21,0.0 +14665,51,53,31,0.0 +14665,20,81,18,0.0 +14665,30,25.89,45,0.0 +14665,38,263.5,6,0.0 +14665,15,15.5,27,0.0 +14665,53,32.8,37,0.0 +14665,18,62.5,15,0.0 +14665,22,21,45,0.0 +14665,54,7.45,23,0.0 +14665,70,15,27,0.0 +14665,33,2.5,11,0.0 +14665,58,13.25,27,0.0 +14665,5,21.35,10,0.0 +14665,40,18.4,20,0.0 +14665,1,18,8,0.0 +14665,29,123.79,40,0.0 +14665,74,10,34,0.0 +14665,6,25,41,0.0 +14665,64,33.25,5,0.0 +14665,37,26,18,0.0 +14665,26,31.23,25,0.0 +14665,4,22,40,0.0 +14665,66,17,19,0.0 +14665,2,19,40,0.0 +14665,3,10,40,0.0 +14665,60,34,8,0.0 +14665,69,36,44,0.0 +14665,67,14,28,0.0 +14665,39,18,23,0.0 +14665,49,20,31,0.0 +14665,73,15,16,0.0 +14665,48,12.75,47,0.0 +14665,72,34.8,45,0.0 +14665,14,23.25,46,0.0 +14665,71,21.5,6,0.0 +14665,19,9.2,49,0.0 +14665,17,39,31,0.0 +14665,57,19.5,1,0.0 +14665,10,31,21,0.0 +14665,35,18,37,0.0 +14665,36,19,32,0.0 +14665,24,4.5,11,0.0 +14665,65,21.05,19,0.0 +14665,13,6,34,0.0 +14665,59,55,15,0.0 +14665,12,38,36,0.0 +14665,7,30,39,0.0 +14665,16,17.45,4,0.0 +14665,11,21,5,0.0 +14665,43,46,12,0.0 +14665,56,38,2,0.0 +14665,68,12.5,25,0.0 +14665,50,16.25,28,0.0 +14665,45,9.5,5,0.0 +14665,21,10,26,0.0 +14665,77,13,47,0.0 +14666,38,263.5,8,0.0 +14666,68,12.5,15,0.0 +14666,45,9.5,43,0.0 +14666,31,12.5,10,0.0 +14666,64,33.25,50,0.0 +14666,34,14,21,0.0 +14666,49,20,19,0.0 +14667,5,21.35,21,0.0 +14667,3,10,35,0.0 +14667,37,26,10,0.0 +14667,58,13.25,47,0.0 +14667,39,18,46,0.0 +14667,16,17.45,38,0.0 +14667,7,30,31,0.0 +14667,71,21.5,16,0.0 +14667,6,25,19,0.0 +14667,72,34.8,37,0.0 +14667,26,31.23,7,0.0 +14667,23,9,27,0.0 +14667,11,21,35,0.0 +14667,33,2.5,24,0.0 +14667,41,9.65,11,0.0 +14667,52,7,35,0.0 +14667,46,12,36,0.0 +14667,29,123.79,17,0.0 +14667,20,81,48,0.0 +14667,74,10,21,0.0 +14667,9,97,48,0.0 +14667,21,10,8,0.0 +14667,10,31,5,0.0 +14667,65,21.05,44,0.0 +14667,49,20,42,0.0 +14667,25,14,14,0.0 +14667,1,18,12,0.0 +14667,14,23.25,26,0.0 +14667,69,36,32,0.0 +14667,40,18.4,8,0.0 +14667,17,39,41,0.0 +14667,35,18,49,0.0 +14667,56,38,30,0.0 +14667,59,55,43,0.0 +14667,48,12.75,7,0.0 +14667,55,24,8,0.0 +14667,24,4.5,36,0.0 +14667,53,32.8,11,0.0 +14667,38,263.5,18,0.0 +14667,44,19.45,20,0.0 +14667,61,28.5,42,0.0 +14667,12,38,6,0.0 +14667,13,6,41,0.0 +14667,68,12.5,5,0.0 +14667,73,15,9,0.0 +14667,51,53,14,0.0 +14667,62,49.3,18,0.0 +14667,22,21,30,0.0 +14667,63,43.9,37,0.0 +14667,19,9.2,2,0.0 +14667,64,33.25,9,0.0 +14668,73,15,19,0.0 +14668,12,38,34,0.0 +14668,61,28.5,33,0.0 +14668,6,25,34,0.0 +14668,66,17,35,0.0 +14668,29,123.79,13,0.0 +14668,7,30,23,0.0 +14668,35,18,17,0.0 +14668,15,15.5,9,0.0 +14668,8,40,3,0.0 +14668,25,14,29,0.0 +14668,18,62.5,44,0.0 +14668,9,97,2,0.0 +14668,5,21.35,25,0.0 +14668,4,22,6,0.0 +14668,28,45.6,49,0.0 +14668,34,14,23,0.0 +14668,56,38,16,0.0 +14668,47,9.5,29,0.0 +14668,48,12.75,33,0.0 +14668,69,36,46,0.0 +14668,40,18.4,11,0.0 +14668,70,15,37,0.0 +14668,10,31,10,0.0 +14668,62,49.3,41,0.0 +14668,16,17.45,10,0.0 +14668,71,21.5,36,0.0 +14668,57,19.5,35,0.0 +14668,58,13.25,5,0.0 +14668,76,18,48,0.0 +14668,36,19,34,0.0 +14668,26,31.23,34,0.0 +14668,49,20,5,0.0 +14668,3,10,1,0.0 +14668,17,39,45,0.0 +14668,65,21.05,6,0.0 +14668,68,12.5,25,0.0 +14668,72,34.8,13,0.0 +14668,50,16.25,3,0.0 +14668,39,18,25,0.0 +14668,46,12,10,0.0 +14668,43,46,48,0.0 +14668,23,9,6,0.0 +14668,53,32.8,34,0.0 +14668,20,81,48,0.0 +14668,31,12.5,46,0.0 +14668,41,9.65,8,0.0 +14668,59,55,41,0.0 +14668,52,7,41,0.0 +14668,21,10,5,0.0 +14668,13,6,20,0.0 +14668,64,33.25,48,0.0 +14668,37,26,44,0.0 +14668,30,25.89,21,0.0 +14668,75,7.75,23,0.0 +14669,9,97,5,0.0 +14669,4,22,39,0.0 +14669,58,13.25,21,0.0 +14669,10,31,20,0.0 +14669,62,49.3,5,0.0 +14669,17,39,35,0.0 +14669,48,12.75,21,0.0 +14669,70,15,5,0.0 +14669,64,33.25,34,0.0 +14669,50,16.25,44,0.0 +14669,41,9.65,33,0.0 +14669,27,43.9,9,0.0 +14669,14,23.25,42,0.0 +14669,22,21,23,0.0 +14669,38,263.5,40,0.0 +14669,60,34,4,0.0 +14669,52,7,19,0.0 +14669,11,21,24,0.0 +14669,34,14,22,0.0 +14669,15,15.5,49,0.0 +14669,3,10,40,0.0 +14669,12,38,18,0.0 +14669,76,18,30,0.0 +14669,44,19.45,21,0.0 +14669,68,12.5,42,0.0 +14669,26,31.23,21,0.0 +14669,69,36,14,0.0 +14669,67,14,13,0.0 +14669,39,18,47,0.0 +14669,43,46,40,0.0 +14669,66,17,10,0.0 +14669,53,32.8,40,0.0 +14669,77,13,44,0.0 +14669,31,12.5,22,0.0 +14669,75,7.75,18,0.0 +14669,25,14,30,0.0 +14669,65,21.05,48,0.0 +14669,32,32,12,0.0 +14669,29,123.79,44,0.0 +14669,28,45.6,2,0.0 +14669,46,12,6,0.0 +14669,23,9,13,0.0 +14669,19,9.2,34,0.0 +14669,74,10,31,0.0 +14669,49,20,41,0.0 +14669,16,17.45,2,0.0 +14669,54,7.45,31,0.0 +14669,8,40,35,0.0 +14669,13,6,41,0.0 +14669,36,19,3,0.0 +14669,72,34.8,43,0.0 +14669,57,19.5,29,0.0 +14669,73,15,37,0.0 +14669,59,55,7,0.0 +14669,37,26,44,0.0 +14669,35,18,29,0.0 +14669,40,18.4,14,0.0 +14669,42,14,19,0.0 +14669,18,62.5,5,0.0 +14669,7,30,33,0.0 +14669,30,25.89,18,0.0 +14669,56,38,21,0.0 +14669,47,9.5,7,0.0 +14669,61,28.5,35,0.0 +14669,6,25,6,0.0 +14670,56,38,12,0.0 +14670,17,39,27,0.0 +14670,20,81,9,0.0 +14670,66,17,43,0.0 +14670,31,12.5,47,0.0 +14670,70,15,47,0.0 +14670,38,263.5,27,0.0 +14670,51,53,29,0.0 +14670,26,31.23,29,0.0 +14670,46,12,35,0.0 +14670,9,97,15,0.0 +14670,12,38,50,0.0 +14670,42,14,5,0.0 +14670,25,14,20,0.0 +14670,47,9.5,23,0.0 +14670,14,23.25,29,0.0 +14670,21,10,40,0.0 +14670,61,28.5,27,0.0 +14670,19,9.2,27,0.0 +14670,62,49.3,8,0.0 +14670,13,6,19,0.0 +14670,35,18,16,0.0 +14670,55,24,7,0.0 +14670,37,26,27,0.0 +14670,34,14,15,0.0 +14670,15,15.5,1,0.0 +14670,36,19,6,0.0 +14670,32,32,49,0.0 +14670,58,13.25,38,0.0 +14670,40,18.4,15,0.0 +14670,71,21.5,48,0.0 +14670,1,18,17,0.0 +14670,22,21,46,0.0 +14670,27,43.9,42,0.0 +14670,3,10,13,0.0 +14670,2,19,34,0.0 +14670,65,21.05,27,0.0 +14670,4,22,16,0.0 +14670,29,123.79,4,0.0 +14670,10,31,46,0.0 +14670,16,17.45,22,0.0 +14670,43,46,22,0.0 +14670,59,55,12,0.0 +14670,52,7,13,0.0 +14670,30,25.89,39,0.0 +14671,53,32.8,26,0.0 +14671,62,49.3,35,0.0 +14671,52,7,47,0.0 +14671,63,43.9,7,0.0 +14671,43,46,29,0.0 +14671,41,9.65,40,0.0 +14671,31,12.5,31,0.0 +14671,16,17.45,40,0.0 +14671,24,4.5,50,0.0 +14671,20,81,50,0.0 +14671,11,21,3,0.0 +14671,42,14,47,0.0 +14671,2,19,5,0.0 +14671,12,38,18,0.0 +14671,38,263.5,14,0.0 +14671,8,40,22,0.0 +14671,59,55,41,0.0 +14671,13,6,16,0.0 +14671,4,22,44,0.0 +14671,71,21.5,43,0.0 +14671,34,14,17,0.0 +14671,65,21.05,28,0.0 +14671,58,13.25,36,0.0 +14671,30,25.89,19,0.0 +14671,55,24,15,0.0 +14672,16,17.45,21,0.0 +14672,55,24,21,0.0 +14672,12,38,8,0.0 +14672,52,7,21,0.0 +14672,73,15,13,0.0 +14672,17,39,14,0.0 +14672,33,2.5,16,0.0 +14672,20,81,31,0.0 +14672,62,49.3,34,0.0 +14672,1,18,27,0.0 +14672,35,18,28,0.0 +14672,48,12.75,42,0.0 +14672,37,26,39,0.0 +14672,23,9,44,0.0 +14672,40,18.4,48,0.0 +14672,63,43.9,48,0.0 +14672,51,53,39,0.0 +14672,19,9.2,19,0.0 +14673,6,25,9,0.0 +14673,45,9.5,32,0.0 +14673,62,49.3,38,0.0 +14673,27,43.9,18,0.0 +14673,38,263.5,44,0.0 +14673,57,19.5,28,0.0 +14673,21,10,17,0.0 +14673,10,31,13,0.0 +14673,25,14,45,0.0 +14673,46,12,25,0.0 +14673,37,26,3,0.0 +14673,60,34,22,0.0 +14673,67,14,23,0.0 +14673,54,7.45,3,0.0 +14673,58,13.25,7,0.0 +14673,1,18,30,0.0 +14673,41,9.65,23,0.0 +14673,65,21.05,12,0.0 +14673,34,14,45,0.0 +14673,18,62.5,44,0.0 +14673,29,123.79,43,0.0 +14673,71,21.5,36,0.0 +14673,75,7.75,16,0.0 +14673,26,31.23,17,0.0 +14673,4,22,50,0.0 +14673,69,36,23,0.0 +14673,49,20,25,0.0 +14673,56,38,34,0.0 +14673,51,53,7,0.0 +14673,52,7,45,0.0 +14673,15,15.5,42,0.0 +14673,22,21,27,0.0 +14673,17,39,17,0.0 +14673,36,19,44,0.0 +14673,35,18,44,0.0 +14673,44,19.45,35,0.0 +14673,23,9,7,0.0 +14673,30,25.89,42,0.0 +14673,24,4.5,28,0.0 +14673,68,12.5,29,0.0 +14673,42,14,33,0.0 +14673,39,18,30,0.0 +14673,48,12.75,18,0.0 +14673,2,19,44,0.0 +14673,32,32,22,0.0 +14673,77,13,12,0.0 +14673,50,16.25,14,0.0 +14673,28,45.6,8,0.0 +14673,66,17,13,0.0 +14673,33,2.5,16,0.0 +14673,7,30,24,0.0 +14673,13,6,23,0.0 +14673,12,38,42,0.0 +14673,16,17.45,15,0.0 +14673,9,97,27,0.0 +14673,70,15,39,0.0 +14673,19,9.2,10,0.0 +14673,53,32.8,3,0.0 +14673,31,12.5,19,0.0 +14673,40,18.4,5,0.0 +14673,55,24,40,0.0 +14674,65,21.05,14,0.0 +14674,45,9.5,25,0.0 +14674,52,7,26,0.0 +14674,13,6,2,0.0 +14674,77,13,48,0.0 +14674,23,9,2,0.0 +14674,42,14,13,0.0 +14674,76,18,36,0.0 +14674,51,53,49,0.0 +14674,12,38,20,0.0 +14674,29,123.79,39,0.0 +14674,46,12,40,0.0 +14674,50,16.25,23,0.0 +14674,16,17.45,48,0.0 +14674,64,33.25,25,0.0 +14674,26,31.23,41,0.0 +14674,59,55,47,0.0 +14674,61,28.5,24,0.0 +14674,72,34.8,47,0.0 +14674,21,10,24,0.0 +14674,66,17,23,0.0 +14674,48,12.75,24,0.0 +14674,4,22,42,0.0 +14674,11,21,19,0.0 +14674,35,18,39,0.0 +14674,58,13.25,35,0.0 +14674,60,34,29,0.0 +14674,18,62.5,18,0.0 +14674,62,49.3,35,0.0 +14674,19,9.2,12,0.0 +14674,25,14,29,0.0 +14674,39,18,18,0.0 +14674,54,7.45,37,0.0 +14674,44,19.45,29,0.0 +14674,8,40,32,0.0 +14674,40,18.4,21,0.0 +14674,33,2.5,19,0.0 +14674,43,46,46,0.0 +14674,22,21,50,0.0 +14674,70,15,2,0.0 +14674,20,81,7,0.0 +14674,3,10,32,0.0 +14674,36,19,24,0.0 +14674,71,21.5,48,0.0 +14674,53,32.8,37,0.0 +14674,24,4.5,28,0.0 +14674,34,14,44,0.0 +14674,75,7.75,5,0.0 +14674,6,25,15,0.0 +14674,32,32,47,0.0 +14674,68,12.5,23,0.0 +14674,38,263.5,50,0.0 +14674,15,15.5,19,0.0 +14674,5,21.35,31,0.0 +14674,73,15,44,0.0 +14674,10,31,38,0.0 +14674,1,18,32,0.0 +14674,37,26,48,0.0 +14674,57,19.5,43,0.0 +14674,28,45.6,16,0.0 +14674,67,14,12,0.0 +14674,7,30,27,0.0 +14674,14,23.25,9,0.0 +14674,31,12.5,20,0.0 +14674,41,9.65,26,0.0 +14674,63,43.9,48,0.0 +14674,69,36,19,0.0 +14675,9,97,21,0.0 +14675,49,20,24,0.0 +14675,22,21,49,0.0 +14675,46,12,41,0.0 +14675,23,9,18,0.0 +14675,55,24,34,0.0 +14675,47,9.5,11,0.0 +14675,76,18,46,0.0 +14675,15,15.5,48,0.0 +14676,69,36,48,0.0 +14676,8,40,45,0.0 +14676,44,19.45,21,0.0 +14676,23,9,47,0.0 +14676,35,18,21,0.0 +14676,76,18,14,0.0 +14676,24,4.5,6,0.0 +14676,53,32.8,35,0.0 +14676,39,18,19,0.0 +14676,25,14,24,0.0 +14676,22,21,31,0.0 +14676,63,43.9,17,0.0 +14676,15,15.5,1,0.0 +14676,11,21,12,0.0 +14676,33,2.5,19,0.0 +14676,70,15,32,0.0 +14676,43,46,38,0.0 +14676,71,21.5,19,0.0 +14676,16,17.45,44,0.0 +14676,49,20,19,0.0 +14676,75,7.75,7,0.0 +14676,4,22,18,0.0 +14676,14,23.25,31,0.0 +14676,62,49.3,48,0.0 +14676,57,19.5,25,0.0 +14676,30,25.89,3,0.0 +14676,29,123.79,50,0.0 +14676,18,62.5,12,0.0 +14676,28,45.6,10,0.0 +14676,5,21.35,39,0.0 +14676,31,12.5,11,0.0 +14676,27,43.9,21,0.0 +14676,56,38,34,0.0 +14676,77,13,10,0.0 +14676,74,10,48,0.0 +14676,41,9.65,36,0.0 +14676,17,39,28,0.0 +14676,10,31,30,0.0 +14676,19,9.2,11,0.0 +14677,15,15.5,33,0.0 +14677,21,10,2,0.0 +14677,30,25.89,23,0.0 +14677,72,34.8,13,0.0 +14677,42,14,49,0.0 +14677,17,39,49,0.0 +14677,75,7.75,50,0.0 +14677,60,34,49,0.0 +14677,4,22,3,0.0 +14677,32,32,37,0.0 +14677,5,21.35,1,0.0 +14677,52,7,13,0.0 +14677,23,9,33,0.0 +14677,53,32.8,36,0.0 +14677,76,18,21,0.0 +14677,16,17.45,33,0.0 +14677,8,40,10,0.0 +14677,69,36,49,0.0 +14677,55,24,43,0.0 +14677,31,12.5,2,0.0 +14678,77,13,26,0.0 +14678,3,10,20,0.0 +14678,47,9.5,48,0.0 +14678,54,7.45,40,0.0 +14678,34,14,13,0.0 +14679,58,13.25,44,0.0 +14679,30,25.89,2,0.0 +14679,14,23.25,41,0.0 +14679,12,38,41,0.0 +14679,13,6,32,0.0 +14679,39,18,24,0.0 +14679,48,12.75,49,0.0 +14679,70,15,10,0.0 +14679,6,25,13,0.0 +14679,73,15,9,0.0 +14679,7,30,22,0.0 +14679,69,36,36,0.0 +14679,67,14,29,0.0 +14679,28,45.6,6,0.0 +14679,55,24,2,0.0 +14679,35,18,50,0.0 +14679,22,21,38,0.0 +14679,41,9.65,39,0.0 +14679,37,26,18,0.0 +14679,15,15.5,19,0.0 +14679,54,7.45,16,0.0 +14679,56,38,45,0.0 +14679,68,12.5,3,0.0 +14679,33,2.5,48,0.0 +14679,50,16.25,4,0.0 +14679,42,14,18,0.0 +14679,47,9.5,2,0.0 +14679,3,10,12,0.0 +14679,64,33.25,14,0.0 +14679,10,31,6,0.0 +14679,23,9,24,0.0 +14679,26,31.23,50,0.0 +14679,4,22,37,0.0 +14679,32,32,31,0.0 +14679,43,46,38,0.0 +14679,2,19,25,0.0 +14679,19,9.2,20,0.0 +14679,46,12,9,0.0 +14679,17,39,2,0.0 +14679,5,21.35,29,0.0 +14679,44,19.45,22,0.0 +14679,27,43.9,36,0.0 +14679,59,55,28,0.0 +14679,16,17.45,14,0.0 +14679,63,43.9,22,0.0 +14679,62,49.3,44,0.0 +14679,45,9.5,15,0.0 +14680,70,15,50,0.0 +14680,71,21.5,31,0.0 +14680,9,97,7,0.0 +14680,55,24,39,0.0 +14680,8,40,8,0.0 +14680,54,7.45,26,0.0 +14680,39,18,9,0.0 +14680,35,18,28,0.0 +14680,18,62.5,48,0.0 +14680,2,19,45,0.0 +14680,37,26,28,0.0 +14680,27,43.9,50,0.0 +14680,17,39,42,0.0 +14680,42,14,11,0.0 +14680,74,10,28,0.0 +14680,30,25.89,9,0.0 +14680,4,22,14,0.0 +14680,52,7,44,0.0 +14680,13,6,43,0.0 +14680,61,28.5,28,0.0 +14680,23,9,4,0.0 +14680,28,45.6,23,0.0 +14680,65,21.05,38,0.0 +14680,31,12.5,10,0.0 +14680,20,81,28,0.0 +14680,24,4.5,5,0.0 +14680,73,15,36,0.0 +14680,46,12,26,0.0 +14680,16,17.45,20,0.0 +14680,6,25,19,0.0 +14680,69,36,28,0.0 +14680,72,34.8,27,0.0 +14680,63,43.9,12,0.0 +14680,25,14,3,0.0 +14680,38,263.5,35,0.0 +14680,57,19.5,48,0.0 +14680,14,23.25,44,0.0 +14680,44,19.45,2,0.0 +14681,71,21.5,24,0.0 +14681,25,14,45,0.0 +14681,32,32,27,0.0 +14681,13,6,2,0.0 +14681,11,21,31,0.0 +14681,56,38,41,0.0 +14681,47,9.5,13,0.0 +14681,73,15,25,0.0 +14681,15,15.5,33,0.0 +14681,66,17,14,0.0 +14681,77,13,20,0.0 +14681,7,30,45,0.0 +14681,52,7,21,0.0 +14681,46,12,11,0.0 +14681,10,31,44,0.0 +14681,9,97,43,0.0 +14681,37,26,29,0.0 +14681,60,34,48,0.0 +14681,72,34.8,22,0.0 +14681,54,7.45,22,0.0 +14681,8,40,6,0.0 +14681,4,22,10,0.0 +14681,36,19,41,0.0 +14681,45,9.5,13,0.0 +14681,29,123.79,8,0.0 +14681,58,13.25,7,0.0 +14681,31,12.5,29,0.0 +14681,28,45.6,18,0.0 +14681,12,38,19,0.0 +14681,67,14,7,0.0 +14681,62,49.3,41,0.0 +14681,1,18,19,0.0 +14681,16,17.45,40,0.0 +14681,40,18.4,18,0.0 +14681,20,81,14,0.0 +14681,14,23.25,31,0.0 +14681,70,15,50,0.0 +14681,21,10,4,0.0 +14681,18,62.5,27,0.0 +14681,30,25.89,41,0.0 +14681,69,36,33,0.0 +14681,44,19.45,36,0.0 +14681,38,263.5,26,0.0 +14681,48,12.75,24,0.0 +14681,64,33.25,29,0.0 +14681,26,31.23,1,0.0 +14681,75,7.75,16,0.0 +14681,55,24,9,0.0 +14681,27,43.9,46,0.0 +14681,51,53,11,0.0 +14681,43,46,14,0.0 +14681,22,21,7,0.0 +14681,74,10,3,0.0 +14681,42,14,18,0.0 +14681,17,39,33,0.0 +14681,6,25,21,0.0 +14681,65,21.05,8,0.0 +14681,41,9.65,30,0.0 +14681,53,32.8,34,0.0 +14681,19,9.2,39,0.0 +14681,68,12.5,33,0.0 +14681,50,16.25,27,0.0 +14681,39,18,15,0.0 +14681,2,19,49,0.0 +14681,33,2.5,15,0.0 +14681,5,21.35,31,0.0 +14681,24,4.5,37,0.0 +14681,23,9,49,0.0 +14681,76,18,9,0.0 +14681,35,18,28,0.0 +14681,59,55,4,0.0 +14681,34,14,31,0.0 +14681,49,20,32,0.0 +14681,61,28.5,17,0.0 +14681,3,10,3,0.0 +14681,63,43.9,13,0.0 +14681,57,19.5,35,0.0 +14682,62,49.3,19,0.0 +14682,29,123.79,11,0.0 +14682,45,9.5,38,0.0 +14682,24,4.5,41,0.0 +14682,13,6,11,0.0 +14682,40,18.4,19,0.0 +14682,25,14,1,0.0 +14682,31,12.5,6,0.0 +14682,67,14,7,0.0 +14682,4,22,8,0.0 +14682,43,46,15,0.0 +14682,52,7,50,0.0 +14682,10,31,29,0.0 +14682,54,7.45,33,0.0 +14682,64,33.25,41,0.0 +14682,6,25,25,0.0 +14682,46,12,38,0.0 +14682,44,19.45,19,0.0 +14682,32,32,39,0.0 +14682,28,45.6,50,0.0 +14682,72,34.8,9,0.0 +14682,2,19,48,0.0 +14682,8,40,39,0.0 +14682,18,62.5,40,0.0 +14682,61,28.5,16,0.0 +14682,16,17.45,8,0.0 +14682,21,10,35,0.0 +14682,56,38,10,0.0 +14682,68,12.5,5,0.0 +14682,36,19,49,0.0 +14682,48,12.75,4,0.0 +14682,75,7.75,10,0.0 +14682,77,13,26,0.0 +14682,39,18,3,0.0 +14682,50,16.25,16,0.0 +14682,34,14,30,0.0 +14682,57,19.5,19,0.0 +14682,41,9.65,44,0.0 +14682,26,31.23,39,0.0 +14682,70,15,22,0.0 +14682,69,36,47,0.0 +14682,37,26,4,0.0 +14682,60,34,46,0.0 +14682,42,14,12,0.0 +14682,35,18,23,0.0 +14683,65,21.05,24,0.0 +14683,43,46,5,0.0 +14683,56,38,28,0.0 +14683,12,38,22,0.0 +14683,13,6,39,0.0 +14683,10,31,8,0.0 +14683,2,19,47,0.0 +14683,39,18,16,0.0 +14683,75,7.75,36,0.0 +14683,29,123.79,7,0.0 +14683,28,45.6,19,0.0 +14683,59,55,11,0.0 +14683,55,24,23,0.0 +14683,23,9,30,0.0 +14683,9,97,33,0.0 +14683,41,9.65,20,0.0 +14684,24,4.5,42,0.0 +14684,61,28.5,6,0.0 +14684,42,14,4,0.0 +14684,68,12.5,27,0.0 +14684,51,53,24,0.0 +14684,45,9.5,32,0.0 +14684,5,21.35,29,0.0 +14684,49,20,44,0.0 +14684,43,46,49,0.0 +14684,18,62.5,46,0.0 +14684,58,13.25,38,0.0 +14684,15,15.5,13,0.0 +14684,73,15,20,0.0 +14684,19,9.2,10,0.0 +14684,72,34.8,36,0.0 +14684,57,19.5,40,0.0 +14684,62,49.3,38,0.0 +14684,46,12,17,0.0 +14684,33,2.5,30,0.0 +14684,50,16.25,7,0.0 +14684,3,10,40,0.0 +14684,13,6,40,0.0 +14684,17,39,39,0.0 +14684,70,15,25,0.0 +14684,27,43.9,10,0.0 +14684,25,14,20,0.0 +14684,1,18,4,0.0 +14684,77,13,25,0.0 +14684,48,12.75,6,0.0 +14684,37,26,38,0.0 +14684,69,36,1,0.0 +14684,22,21,32,0.0 +14684,44,19.45,41,0.0 +14684,20,81,38,0.0 +14684,63,43.9,36,0.0 +14684,31,12.5,41,0.0 +14684,41,9.65,1,0.0 +14684,54,7.45,27,0.0 +14684,7,30,47,0.0 +14684,65,21.05,38,0.0 +14684,38,263.5,4,0.0 +14684,56,38,11,0.0 +14684,8,40,27,0.0 +14684,6,25,3,0.0 +14684,2,19,34,0.0 +14684,28,45.6,40,0.0 +14684,60,34,9,0.0 +14684,40,18.4,41,0.0 +14684,35,18,46,0.0 +14684,9,97,35,0.0 +14684,34,14,11,0.0 +14684,16,17.45,29,0.0 +14684,23,9,14,0.0 +14684,74,10,41,0.0 +14684,12,38,47,0.0 +14684,55,24,28,0.0 +14685,35,18,16,0.0 +14685,62,49.3,26,0.0 +14685,25,14,29,0.0 +14685,9,97,17,0.0 +14685,26,31.23,11,0.0 +14685,18,62.5,34,0.0 +14685,17,39,3,0.0 +14685,76,18,37,0.0 +14685,36,19,45,0.0 +14686,45,9.5,41,0.0 +14686,53,32.8,24,0.0 +14686,59,55,35,0.0 +14686,57,19.5,23,0.0 +14686,11,21,14,0.0 +14686,22,21,35,0.0 +14686,14,23.25,26,0.0 +14686,56,38,10,0.0 +14686,51,53,32,0.0 +14686,73,15,18,0.0 +14686,31,12.5,6,0.0 +14686,62,49.3,43,0.0 +14686,38,263.5,17,0.0 +14686,33,2.5,13,0.0 +14686,27,43.9,1,0.0 +14686,6,25,32,0.0 +14686,26,31.23,6,0.0 +14686,50,16.25,22,0.0 +14686,52,7,26,0.0 +14686,8,40,38,0.0 +14686,58,13.25,50,0.0 +14686,63,43.9,11,0.0 +14686,66,17,49,0.0 +14686,2,19,42,0.0 +14686,10,31,43,0.0 +14686,61,28.5,39,0.0 +14686,65,21.05,22,0.0 +14686,25,14,21,0.0 +14686,12,38,41,0.0 +14686,46,12,20,0.0 +14686,30,25.89,6,0.0 +14686,7,30,6,0.0 +14686,4,22,40,0.0 +14686,32,32,34,0.0 +14686,72,34.8,41,0.0 +14686,71,21.5,21,0.0 +14686,77,13,5,0.0 +14686,18,62.5,46,0.0 +14686,5,21.35,31,0.0 +14686,21,10,25,0.0 +14686,1,18,25,0.0 +14686,16,17.45,45,0.0 +14686,44,19.45,10,0.0 +14686,42,14,37,0.0 +14686,23,9,48,0.0 +14686,36,19,3,0.0 +14686,34,14,42,0.0 +14686,54,7.45,16,0.0 +14686,3,10,47,0.0 +14686,69,36,1,0.0 +14686,19,9.2,35,0.0 +14686,76,18,43,0.0 +14686,29,123.79,15,0.0 +14686,13,6,20,0.0 +14686,60,34,16,0.0 +14686,64,33.25,17,0.0 +14686,17,39,9,0.0 +14686,37,26,24,0.0 +14686,55,24,5,0.0 +14686,67,14,13,0.0 +14686,9,97,15,0.0 +14686,75,7.75,12,0.0 +14686,15,15.5,36,0.0 +14686,70,15,29,0.0 +14686,35,18,22,0.0 +14686,28,45.6,36,0.0 +14686,39,18,48,0.0 +14686,24,4.5,7,0.0 +14686,40,18.4,41,0.0 +14686,49,20,21,0.0 +14686,41,9.65,10,0.0 +14686,20,81,29,0.0 +14686,68,12.5,15,0.0 +14686,43,46,14,0.0 +14686,48,12.75,3,0.0 +14686,74,10,11,0.0 +14686,47,9.5,27,0.0 +14687,55,24,48,0.0 +14687,29,123.79,13,0.0 +14687,51,53,37,0.0 +14687,76,18,18,0.0 +14687,9,97,37,0.0 +14687,42,14,16,0.0 +14687,23,9,28,0.0 +14687,65,21.05,35,0.0 +14687,24,4.5,1,0.0 +14687,69,36,43,0.0 +14687,45,9.5,1,0.0 +14687,56,38,1,0.0 +14687,27,43.9,45,0.0 +14687,37,26,15,0.0 +14687,32,32,25,0.0 +14687,17,39,25,0.0 +14687,40,18.4,45,0.0 +14687,33,2.5,11,0.0 +14687,18,62.5,21,0.0 +14687,11,21,24,0.0 +14687,31,12.5,31,0.0 +14687,74,10,24,0.0 +14687,58,13.25,35,0.0 +14687,44,19.45,34,0.0 +14687,63,43.9,32,0.0 +14687,8,40,7,0.0 +14687,2,19,7,0.0 +14687,5,21.35,14,0.0 +14687,64,33.25,10,0.0 +14687,50,16.25,9,0.0 +14687,38,263.5,41,0.0 +14687,62,49.3,44,0.0 +14687,75,7.75,33,0.0 +14687,25,14,11,0.0 +14687,46,12,37,0.0 +14687,14,23.25,6,0.0 +14687,34,14,27,0.0 +14687,28,45.6,33,0.0 +14687,53,32.8,22,0.0 +14687,26,31.23,28,0.0 +14687,1,18,22,0.0 +14687,60,34,8,0.0 +14687,61,28.5,42,0.0 +14687,73,15,46,0.0 +14687,41,9.65,13,0.0 +14687,13,6,4,0.0 +14687,70,15,12,0.0 +14687,30,25.89,11,0.0 +14687,68,12.5,41,0.0 +14687,35,18,11,0.0 +14687,19,9.2,44,0.0 +14687,72,34.8,30,0.0 +14687,57,19.5,6,0.0 +14687,48,12.75,23,0.0 +14687,6,25,48,0.0 +14687,15,15.5,48,0.0 +14687,66,17,27,0.0 +14687,49,20,34,0.0 +14687,52,7,49,0.0 +14687,39,18,20,0.0 +14688,23,9,1,0.0 +14688,52,7,18,0.0 +14688,47,9.5,31,0.0 +14688,77,13,41,0.0 +14688,58,13.25,6,0.0 +14688,75,7.75,25,0.0 +14689,51,53,26,0.0 +14689,49,20,19,0.0 +14689,39,18,31,0.0 +14689,70,15,6,0.0 +14689,61,28.5,18,0.0 +14689,71,21.5,28,0.0 +14689,72,34.8,4,0.0 +14689,45,9.5,47,0.0 +14689,55,24,29,0.0 +14689,60,34,34,0.0 +14689,66,17,37,0.0 +14689,7,30,22,0.0 +14689,56,38,24,0.0 +14689,11,21,10,0.0 +14689,73,15,42,0.0 +14689,1,18,28,0.0 +14689,76,18,5,0.0 +14689,5,21.35,24,0.0 +14689,74,10,45,0.0 +14689,3,10,21,0.0 +14689,68,12.5,23,0.0 +14689,54,7.45,32,0.0 +14689,65,21.05,36,0.0 +14689,8,40,19,0.0 +14689,40,18.4,32,0.0 +14689,9,97,12,0.0 +14689,13,6,27,0.0 +14689,38,263.5,15,0.0 +14689,22,21,15,0.0 +14689,31,12.5,36,0.0 +14689,4,22,47,0.0 +14689,50,16.25,40,0.0 +14689,57,19.5,33,0.0 +14689,36,19,8,0.0 +14689,15,15.5,45,0.0 +14689,34,14,16,0.0 +14689,6,25,4,0.0 +14689,19,9.2,49,0.0 +14689,58,13.25,31,0.0 +14689,16,17.45,15,0.0 +14689,17,39,3,0.0 +14689,64,33.25,1,0.0 +14689,24,4.5,29,0.0 +14689,63,43.9,25,0.0 +14689,44,19.45,4,0.0 +14689,69,36,39,0.0 +14689,28,45.6,13,0.0 +14689,33,2.5,7,0.0 +14689,53,32.8,34,0.0 +14689,14,23.25,50,0.0 +14689,2,19,49,0.0 +14690,20,81,33,0.0 +14690,63,43.9,45,0.0 +14690,53,32.8,32,0.0 +14690,76,18,12,0.0 +14690,64,33.25,50,0.0 +14690,56,38,9,0.0 +14690,67,14,27,0.0 +14690,48,12.75,7,0.0 +14690,70,15,19,0.0 +14690,36,19,33,0.0 +14690,57,19.5,31,0.0 +14690,19,9.2,7,0.0 +14690,46,12,17,0.0 +14690,44,19.45,28,0.0 +14691,29,123.79,22,0.0 +14691,52,7,27,0.0 +14691,60,34,17,0.0 +14691,69,36,9,0.0 +14691,36,19,6,0.0 +14691,55,24,24,0.0 +14691,45,9.5,12,0.0 +14691,49,20,7,0.0 +14691,31,12.5,2,0.0 +14691,15,15.5,16,0.0 +14691,19,9.2,13,0.0 +14691,23,9,43,0.0 +14691,56,38,26,0.0 +14691,54,7.45,36,0.0 +14691,12,38,42,0.0 +14691,68,12.5,42,0.0 +14691,6,25,47,0.0 +14691,61,28.5,44,0.0 +14691,3,10,39,0.0 +14691,46,12,27,0.0 +14691,74,10,2,0.0 +14691,37,26,35,0.0 +14691,2,19,16,0.0 +14691,63,43.9,36,0.0 +14691,35,18,31,0.0 +14691,17,39,11,0.0 +14691,65,21.05,46,0.0 +14691,33,2.5,2,0.0 +14691,76,18,28,0.0 +14691,47,9.5,34,0.0 +14691,14,23.25,43,0.0 +14691,66,17,17,0.0 +14691,51,53,7,0.0 +14691,50,16.25,36,0.0 +14691,28,45.6,34,0.0 +14691,13,6,18,0.0 +14691,42,14,50,0.0 +14691,72,34.8,14,0.0 +14691,40,18.4,49,0.0 +14691,64,33.25,25,0.0 +14691,48,12.75,47,0.0 +14691,77,13,42,0.0 +14691,24,4.5,41,0.0 +14691,22,21,15,0.0 +14691,71,21.5,15,0.0 +14691,20,81,20,0.0 +14691,34,14,16,0.0 +14691,53,32.8,31,0.0 +14691,16,17.45,33,0.0 +14691,44,19.45,15,0.0 +14691,18,62.5,5,0.0 +14691,30,25.89,16,0.0 +14691,41,9.65,10,0.0 +14692,32,32,39,0.0 +14692,65,21.05,11,0.0 +14692,64,33.25,24,0.0 +14692,69,36,2,0.0 +14692,13,6,34,0.0 +14692,62,49.3,5,0.0 +14692,55,24,22,0.0 +14692,14,23.25,16,0.0 +14692,15,15.5,33,0.0 +14692,33,2.5,32,0.0 +14692,18,62.5,45,0.0 +14692,24,4.5,4,0.0 +14692,40,18.4,40,0.0 +14692,74,10,27,0.0 +14692,21,10,3,0.0 +14692,56,38,20,0.0 +14692,29,123.79,32,0.0 +14692,59,55,41,0.0 +14692,61,28.5,11,0.0 +14692,45,9.5,49,0.0 +14692,67,14,33,0.0 +14692,72,34.8,33,0.0 +14692,3,10,45,0.0 +14692,6,25,41,0.0 +14692,22,21,18,0.0 +14692,12,38,31,0.0 +14692,52,7,20,0.0 +14692,5,21.35,6,0.0 +14692,71,21.5,16,0.0 +14692,46,12,14,0.0 +14692,60,34,32,0.0 +14692,16,17.45,39,0.0 +14692,77,13,20,0.0 +14692,34,14,14,0.0 +14692,4,22,40,0.0 +14692,9,97,25,0.0 +14692,20,81,46,0.0 +14692,38,263.5,17,0.0 +14692,49,20,41,0.0 +14692,76,18,13,0.0 +14692,75,7.75,12,0.0 +14692,58,13.25,7,0.0 +14692,7,30,5,0.0 +14692,8,40,36,0.0 +14692,54,7.45,14,0.0 +14692,57,19.5,46,0.0 +14692,44,19.45,15,0.0 +14692,42,14,33,0.0 +14692,27,43.9,39,0.0 +14692,47,9.5,4,0.0 +14692,26,31.23,43,0.0 +14692,11,21,20,0.0 +14692,73,15,18,0.0 +14692,28,45.6,42,0.0 +14693,51,53,42,0.0 +14693,31,12.5,8,0.0 +14693,70,15,45,0.0 +14693,53,32.8,17,0.0 +14693,64,33.25,46,0.0 +14693,3,10,11,0.0 +14693,40,18.4,33,0.0 +14693,24,4.5,15,0.0 +14693,62,49.3,40,0.0 +14693,47,9.5,17,0.0 +14693,38,263.5,19,0.0 +14693,10,31,30,0.0 +14693,13,6,40,0.0 +14693,26,31.23,23,0.0 +14693,6,25,45,0.0 +14693,34,14,29,0.0 +14693,35,18,31,0.0 +14694,57,19.5,11,0.0 +14694,72,34.8,49,0.0 +14694,56,38,1,0.0 +14694,27,43.9,16,0.0 +14695,63,43.9,18,0.0 +14695,30,25.89,45,0.0 +14695,77,13,27,0.0 +14695,62,49.3,44,0.0 +14696,16,17.45,34,0.0 +14696,72,34.8,3,0.0 +14696,52,7,40,0.0 +14696,9,97,14,0.0 +14696,7,30,34,0.0 +14696,63,43.9,40,0.0 +14696,22,21,2,0.0 +14696,58,13.25,26,0.0 +14696,14,23.25,35,0.0 +14696,60,34,27,0.0 +14696,74,10,26,0.0 +14696,23,9,18,0.0 +14696,55,24,40,0.0 +14696,46,12,50,0.0 +14696,1,18,12,0.0 +14696,45,9.5,9,0.0 +14696,57,19.5,19,0.0 +14696,2,19,22,0.0 +14696,20,81,46,0.0 +14696,44,19.45,9,0.0 +14696,19,9.2,11,0.0 +14696,13,6,16,0.0 +14696,50,16.25,3,0.0 +14696,75,7.75,17,0.0 +14696,54,7.45,4,0.0 +14696,24,4.5,23,0.0 +14696,51,53,3,0.0 +14696,6,25,16,0.0 +14696,32,32,6,0.0 +14696,5,21.35,28,0.0 +14696,61,28.5,3,0.0 +14696,21,10,27,0.0 +14696,43,46,37,0.0 +14696,70,15,40,0.0 +14696,48,12.75,29,0.0 +14696,71,21.5,19,0.0 +14696,18,62.5,2,0.0 +14696,36,19,7,0.0 +14696,27,43.9,43,0.0 +14696,39,18,20,0.0 +14696,62,49.3,37,0.0 +14696,59,55,23,0.0 +14696,10,31,32,0.0 +14696,41,9.65,33,0.0 +14696,17,39,3,0.0 +14696,66,17,19,0.0 +14696,47,9.5,9,0.0 +14696,25,14,39,0.0 +14696,69,36,45,0.0 +14696,76,18,8,0.0 +14696,77,13,25,0.0 +14696,15,15.5,31,0.0 +14696,30,25.89,35,0.0 +14696,67,14,44,0.0 +14696,28,45.6,9,0.0 +14696,12,38,13,0.0 +14696,40,18.4,44,0.0 +14696,8,40,34,0.0 +14696,64,33.25,30,0.0 +14696,42,14,48,0.0 +14696,38,263.5,18,0.0 +14696,56,38,13,0.0 +14696,65,21.05,20,0.0 +14696,37,26,7,0.0 +14696,49,20,30,0.0 +14697,48,12.75,1,0.0 +14697,22,21,6,0.0 +14697,39,18,18,0.0 +14697,29,123.79,20,0.0 +14697,77,13,24,0.0 +14697,54,7.45,18,0.0 +14697,66,17,25,0.0 +14697,26,31.23,49,0.0 +14697,45,9.5,40,0.0 +14697,47,9.5,17,0.0 +14697,69,36,14,0.0 +14697,28,45.6,24,0.0 +14697,61,28.5,18,0.0 +14697,21,10,48,0.0 +14697,56,38,37,0.0 +14697,36,19,9,0.0 +14697,17,39,19,0.0 +14697,19,9.2,42,0.0 +14697,9,97,33,0.0 +14697,57,19.5,50,0.0 +14697,20,81,16,0.0 +14697,55,24,28,0.0 +14697,43,46,9,0.0 +14697,7,30,11,0.0 +14697,27,43.9,32,0.0 +14697,74,10,49,0.0 +14697,65,21.05,17,0.0 +14697,51,53,24,0.0 +14697,13,6,28,0.0 +14697,63,43.9,39,0.0 +14697,11,21,10,0.0 +14697,71,21.5,12,0.0 +14697,35,18,16,0.0 +14697,49,20,3,0.0 +14697,15,15.5,18,0.0 +14697,46,12,21,0.0 +14697,38,263.5,4,0.0 +14697,59,55,45,0.0 +14697,70,15,37,0.0 +14697,58,13.25,28,0.0 +14697,60,34,32,0.0 +14697,10,31,47,0.0 +14697,72,34.8,38,0.0 +14697,2,19,14,0.0 +14697,5,21.35,17,0.0 +14697,40,18.4,48,0.0 +14697,34,14,18,0.0 +14697,37,26,23,0.0 +14697,32,32,9,0.0 +14697,8,40,15,0.0 +14697,41,9.65,22,0.0 +14697,12,38,9,0.0 +14697,4,22,46,0.0 +14697,6,25,9,0.0 +14697,52,7,3,0.0 +14697,1,18,32,0.0 +14697,33,2.5,42,0.0 +14697,62,49.3,50,0.0 +14697,3,10,14,0.0 +14697,73,15,41,0.0 +14697,25,14,8,0.0 +14697,18,62.5,27,0.0 +14697,67,14,17,0.0 +14697,31,12.5,47,0.0 +14697,42,14,49,0.0 +14697,16,17.45,48,0.0 +14698,72,34.8,2,0.0 +14698,28,45.6,40,0.0 +14698,51,53,10,0.0 +14698,64,33.25,9,0.0 +14698,6,25,43,0.0 +14698,20,81,19,0.0 +14698,5,21.35,31,0.0 +14698,4,22,11,0.0 +14698,9,97,12,0.0 +14698,8,40,40,0.0 +14698,36,19,24,0.0 +14698,58,13.25,48,0.0 +14698,41,9.65,5,0.0 +14698,52,7,41,0.0 +14698,12,38,21,0.0 +14698,73,15,28,0.0 +14698,27,43.9,25,0.0 +14698,33,2.5,25,0.0 +14698,13,6,11,0.0 +14698,62,49.3,7,0.0 +14699,59,55,5,0.0 +14699,28,45.6,9,0.0 +14699,53,32.8,19,0.0 +14699,64,33.25,43,0.0 +14699,38,263.5,42,0.0 +14699,54,7.45,48,0.0 +14699,11,21,50,0.0 +14699,6,25,45,0.0 +14699,30,25.89,26,0.0 +14699,52,7,8,0.0 +14699,25,14,5,0.0 +14699,4,22,41,0.0 +14699,45,9.5,32,0.0 +14699,63,43.9,47,0.0 +14699,3,10,31,0.0 +14699,58,13.25,17,0.0 +14699,22,21,44,0.0 +14699,8,40,22,0.0 +14699,13,6,49,0.0 +14699,67,14,32,0.0 +14699,35,18,29,0.0 +14699,51,53,10,0.0 +14699,36,19,41,0.0 +14699,15,15.5,3,0.0 +14699,2,19,12,0.0 +14699,49,20,9,0.0 +14699,72,34.8,2,0.0 +14699,34,14,1,0.0 +14699,40,18.4,44,0.0 +14699,70,15,37,0.0 +14699,76,18,43,0.0 +14699,47,9.5,13,0.0 +14699,74,10,6,0.0 +14699,44,19.45,20,0.0 +14699,65,21.05,5,0.0 +14699,16,17.45,4,0.0 +14699,23,9,16,0.0 +14699,5,21.35,27,0.0 +14699,56,38,15,0.0 +14699,43,46,29,0.0 +14699,32,32,15,0.0 +14699,42,14,44,0.0 +14699,46,12,29,0.0 +14699,7,30,43,0.0 +14699,55,24,39,0.0 +14699,41,9.65,22,0.0 +14700,16,17.45,38,0.0 +14700,44,19.45,16,0.0 +14700,38,263.5,33,0.0 +14700,69,36,39,0.0 +14700,68,12.5,48,0.0 +14700,2,19,13,0.0 +14700,49,20,11,0.0 +14700,7,30,5,0.0 +14700,56,38,31,0.0 +14700,36,19,20,0.0 +14700,45,9.5,49,0.0 +14700,39,18,13,0.0 +14700,26,31.23,39,0.0 +14700,28,45.6,19,0.0 +14700,70,15,10,0.0 +14701,44,19.45,33,0.0 +14701,62,49.3,9,0.0 +14701,19,9.2,13,0.0 +14702,14,23.25,23,0.0 +14702,67,14,1,0.0 +14702,39,18,19,0.0 +14702,30,25.89,39,0.0 +14702,4,22,21,0.0 +14702,47,9.5,19,0.0 +14702,51,53,13,0.0 +14702,42,14,18,0.0 +14702,38,263.5,28,0.0 +14702,72,34.8,22,0.0 +14702,59,55,43,0.0 +14702,6,25,5,0.0 +14702,18,62.5,35,0.0 +14702,63,43.9,48,0.0 +14702,28,45.6,3,0.0 +14702,32,32,18,0.0 +14702,45,9.5,7,0.0 +14702,34,14,35,0.0 +14702,3,10,17,0.0 +14702,57,19.5,40,0.0 +14702,71,21.5,12,0.0 +14702,66,17,50,0.0 +14702,1,18,15,0.0 +14702,15,15.5,24,0.0 +14702,2,19,6,0.0 +14702,64,33.25,5,0.0 +14702,27,43.9,44,0.0 +14702,33,2.5,10,0.0 +14702,19,9.2,21,0.0 +14702,55,24,49,0.0 +14702,36,19,12,0.0 +14702,20,81,24,0.0 +14702,12,38,31,0.0 +14702,5,21.35,20,0.0 +14702,49,20,12,0.0 +14702,23,9,25,0.0 +14702,44,19.45,12,0.0 +14702,48,12.75,44,0.0 +14702,37,26,13,0.0 +14703,42,14,6,0.0 +14703,40,18.4,43,0.0 +14703,39,18,46,0.0 +14703,73,15,50,0.0 +14703,69,36,9,0.0 +14703,67,14,1,0.0 +14703,60,34,39,0.0 +14703,9,97,43,0.0 +14703,4,22,1,0.0 +14703,36,19,1,0.0 +14703,37,26,35,0.0 +14703,29,123.79,6,0.0 +14703,27,43.9,21,0.0 +14703,26,31.23,14,0.0 +14703,75,7.75,17,0.0 +14703,15,15.5,49,0.0 +14703,18,62.5,28,0.0 +14703,1,18,18,0.0 +14703,22,21,38,0.0 +14703,77,13,6,0.0 +14703,12,38,5,0.0 +14703,28,45.6,31,0.0 +14703,68,12.5,42,0.0 +14703,41,9.65,41,0.0 +14703,56,38,49,0.0 +14703,63,43.9,4,0.0 +14703,23,9,27,0.0 +14703,2,19,45,0.0 +14703,55,24,30,0.0 +14703,52,7,4,0.0 +14703,61,28.5,14,0.0 +14703,20,81,37,0.0 +14703,32,32,33,0.0 +14703,21,10,4,0.0 +14703,7,30,11,0.0 +14703,30,25.89,25,0.0 +14703,76,18,5,0.0 +14703,44,19.45,12,0.0 +14703,34,14,21,0.0 +14703,62,49.3,1,0.0 +14703,53,32.8,42,0.0 +14703,71,21.5,25,0.0 +14703,74,10,29,0.0 +14703,31,12.5,46,0.0 +14703,24,4.5,38,0.0 +14703,46,12,25,0.0 +14703,45,9.5,43,0.0 +14703,66,17,12,0.0 +14703,43,46,28,0.0 +14703,48,12.75,7,0.0 +14703,64,33.25,42,0.0 +14703,47,9.5,47,0.0 +14703,3,10,46,0.0 +14703,50,16.25,21,0.0 +14703,11,21,6,0.0 +14704,64,33.25,1,0.0 +14704,22,21,43,0.0 +14704,13,6,6,0.0 +14704,6,25,6,0.0 +14704,49,20,26,0.0 +14704,3,10,2,0.0 +14704,65,21.05,9,0.0 +14704,19,9.2,36,0.0 +14704,12,38,6,0.0 +14704,38,263.5,21,0.0 +14704,61,28.5,20,0.0 +14704,37,26,17,0.0 +14704,2,19,39,0.0 +14704,32,32,6,0.0 +14704,31,12.5,45,0.0 +14704,72,34.8,39,0.0 +14704,36,19,29,0.0 +14704,51,53,8,0.0 +14704,39,18,28,0.0 +14704,27,43.9,18,0.0 +14704,14,23.25,10,0.0 +14704,8,40,22,0.0 +14704,67,14,44,0.0 +14704,54,7.45,16,0.0 +14704,77,13,29,0.0 +14704,5,21.35,17,0.0 +14704,50,16.25,15,0.0 +14704,63,43.9,23,0.0 +14704,4,22,18,0.0 +14704,25,14,6,0.0 +14704,42,14,6,0.0 +14704,58,13.25,27,0.0 +14704,44,19.45,5,0.0 +14704,48,12.75,31,0.0 +14704,15,15.5,37,0.0 +14704,41,9.65,49,0.0 +14704,16,17.45,35,0.0 +14704,21,10,28,0.0 +14704,57,19.5,18,0.0 +14705,20,81,9,0.0 +14705,42,14,39,0.0 +14705,33,2.5,29,0.0 +14705,53,32.8,14,0.0 +14705,40,18.4,26,0.0 +14705,12,38,21,0.0 +14705,1,18,34,0.0 +14705,10,31,39,0.0 +14705,69,36,36,0.0 +14705,16,17.45,9,0.0 +14705,27,43.9,50,0.0 +14705,41,9.65,34,0.0 +14705,14,23.25,18,0.0 +14705,48,12.75,47,0.0 +14705,7,30,20,0.0 +14705,3,10,38,0.0 +14705,5,21.35,24,0.0 +14705,9,97,12,0.0 +14705,37,26,9,0.0 +14705,36,19,17,0.0 +14705,31,12.5,34,0.0 +14705,22,21,30,0.0 +14705,39,18,25,0.0 +14705,59,55,32,0.0 +14705,74,10,4,0.0 +14705,26,31.23,25,0.0 +14705,23,9,45,0.0 +14705,21,10,23,0.0 +14705,72,34.8,48,0.0 +14705,32,32,33,0.0 +14705,8,40,22,0.0 +14705,44,19.45,7,0.0 +14705,18,62.5,38,0.0 +14705,6,25,15,0.0 +14705,35,18,47,0.0 +14705,34,14,9,0.0 +14706,65,21.05,33,0.0 +14706,74,10,43,0.0 +14706,37,26,31,0.0 +14706,3,10,45,0.0 +14707,77,13,2,0.0 +14707,59,55,35,0.0 +14707,25,14,18,0.0 +14707,60,34,8,0.0 +14707,50,16.25,44,0.0 +14707,12,38,49,0.0 +14707,38,263.5,7,0.0 +14707,72,34.8,42,0.0 +14707,53,32.8,9,0.0 +14707,46,12,23,0.0 +14707,74,10,31,0.0 +14707,52,7,14,0.0 +14707,27,43.9,24,0.0 +14707,10,31,47,0.0 +14707,58,13.25,25,0.0 +14707,7,30,33,0.0 +14707,8,40,34,0.0 +14707,21,10,29,0.0 +14707,24,4.5,42,0.0 +14707,26,31.23,10,0.0 +14707,43,46,34,0.0 +14707,68,12.5,44,0.0 +14707,48,12.75,3,0.0 +14707,17,39,3,0.0 +14707,13,6,40,0.0 +14707,19,9.2,18,0.0 +14707,47,9.5,46,0.0 +14707,34,14,29,0.0 +14707,11,21,26,0.0 +14707,31,12.5,6,0.0 +14707,70,15,37,0.0 +14707,66,17,47,0.0 +14707,18,62.5,21,0.0 +14707,33,2.5,11,0.0 +14707,1,18,31,0.0 +14707,32,32,44,0.0 +14707,23,9,24,0.0 +14707,14,23.25,12,0.0 +14707,42,14,5,0.0 +14707,28,45.6,12,0.0 +14707,30,25.89,9,0.0 +14707,35,18,50,0.0 +14707,49,20,34,0.0 +14707,29,123.79,26,0.0 +14707,57,19.5,39,0.0 +14707,65,21.05,50,0.0 +14707,67,14,16,0.0 +14707,75,7.75,9,0.0 +14707,55,24,29,0.0 +14707,45,9.5,26,0.0 +14707,62,49.3,48,0.0 +14707,22,21,4,0.0 +14707,3,10,44,0.0 +14707,16,17.45,18,0.0 +14707,76,18,37,0.0 +14707,51,53,7,0.0 +14707,15,15.5,22,0.0 +14707,63,43.9,25,0.0 +14707,69,36,39,0.0 +14707,41,9.65,49,0.0 +14707,2,19,6,0.0 +14707,9,97,39,0.0 +14707,40,18.4,22,0.0 +14707,54,7.45,33,0.0 +14707,73,15,5,0.0 +14707,56,38,49,0.0 +14707,39,18,34,0.0 +14707,4,22,4,0.0 +14707,20,81,38,0.0 +14707,37,26,25,0.0 +14707,36,19,15,0.0 +14707,6,25,9,0.0 +14708,71,21.5,28,0.0 +14708,7,30,27,0.0 +14708,13,6,8,0.0 +14708,42,14,21,0.0 +14709,65,21.05,11,0.0 +14709,55,24,43,0.0 +14709,56,38,14,0.0 +14709,73,15,41,0.0 +14709,12,38,9,0.0 +14709,25,14,49,0.0 +14709,42,14,10,0.0 +14709,51,53,6,0.0 +14709,32,32,3,0.0 +14709,60,34,13,0.0 +14709,41,9.65,34,0.0 +14709,62,49.3,29,0.0 +14709,72,34.8,9,0.0 +14709,76,18,18,0.0 +14709,68,12.5,7,0.0 +14709,54,7.45,7,0.0 +14709,59,55,23,0.0 +14709,53,32.8,18,0.0 +14709,4,22,41,0.0 +14709,64,33.25,3,0.0 +14709,2,19,19,0.0 +14709,11,21,43,0.0 +14709,57,19.5,17,0.0 +14709,9,97,1,0.0 +14709,18,62.5,18,0.0 +14709,16,17.45,44,0.0 +14709,20,81,27,0.0 +14709,31,12.5,1,0.0 +14709,38,263.5,7,0.0 +14709,27,43.9,32,0.0 +14709,13,6,4,0.0 +14709,8,40,21,0.0 +14709,43,46,21,0.0 +14709,45,9.5,29,0.0 +14709,14,23.25,36,0.0 +14709,23,9,28,0.0 +14709,6,25,25,0.0 +14709,61,28.5,9,0.0 +14709,58,13.25,33,0.0 +14709,21,10,7,0.0 +14709,66,17,19,0.0 +14709,28,45.6,11,0.0 +14709,39,18,39,0.0 +14709,10,31,15,0.0 +14709,34,14,43,0.0 +14709,63,43.9,34,0.0 +14709,19,9.2,25,0.0 +14709,35,18,45,0.0 +14709,69,36,1,0.0 +14709,26,31.23,14,0.0 +14709,74,10,3,0.0 +14709,7,30,37,0.0 +14709,29,123.79,40,0.0 +14709,47,9.5,43,0.0 +14709,5,21.35,30,0.0 +14709,77,13,48,0.0 +14709,33,2.5,9,0.0 +14710,53,32.8,23,0.0 +14710,49,20,41,0.0 +14710,21,10,38,0.0 +14710,77,13,45,0.0 +14710,52,7,50,0.0 +14710,55,24,32,0.0 +14710,57,19.5,12,0.0 +14710,1,18,20,0.0 +14710,41,9.65,8,0.0 +14710,65,21.05,26,0.0 +14710,76,18,38,0.0 +14710,4,22,25,0.0 +14710,5,21.35,10,0.0 +14710,13,6,7,0.0 +14710,64,33.25,20,0.0 +14711,64,33.25,33,0.0 +14711,17,39,49,0.0 +14711,59,55,12,0.0 +14711,51,53,6,0.0 +14711,57,19.5,24,0.0 +14711,23,9,10,0.0 +14711,37,26,20,0.0 +14711,61,28.5,17,0.0 +14711,66,17,19,0.0 +14711,16,17.45,5,0.0 +14711,55,24,49,0.0 +14711,41,9.65,15,0.0 +14711,53,32.8,42,0.0 +14711,21,10,18,0.0 +14711,56,38,9,0.0 +14711,11,21,19,0.0 +14711,18,62.5,30,0.0 +14711,60,34,47,0.0 +14711,54,7.45,16,0.0 +14711,35,18,17,0.0 +14711,7,30,42,0.0 +14711,71,21.5,17,0.0 +14711,74,10,48,0.0 +14711,12,38,32,0.0 +14711,42,14,36,0.0 +14711,69,36,31,0.0 +14711,52,7,48,0.0 +14711,34,14,11,0.0 +14711,27,43.9,36,0.0 +14711,47,9.5,19,0.0 +14711,19,9.2,19,0.0 +14711,44,19.45,30,0.0 +14711,63,43.9,13,0.0 +14711,65,21.05,19,0.0 +14711,6,25,11,0.0 +14711,49,20,9,0.0 +14711,5,21.35,24,0.0 +14711,33,2.5,12,0.0 +14711,29,123.79,22,0.0 +14711,67,14,30,0.0 +14711,20,81,26,0.0 +14711,62,49.3,12,0.0 +14711,25,14,42,0.0 +14711,8,40,44,0.0 +14711,15,15.5,8,0.0 +14711,43,46,12,0.0 +14711,58,13.25,33,0.0 +14711,40,18.4,44,0.0 +14711,70,15,20,0.0 +14711,77,13,12,0.0 +14711,28,45.6,37,0.0 +14712,77,13,17,0.0 +14712,22,21,11,0.0 +14712,25,14,10,0.0 +14712,70,15,34,0.0 +14712,50,16.25,44,0.0 +14712,37,26,47,0.0 +14712,19,9.2,26,0.0 +14712,43,46,19,0.0 +14712,3,10,2,0.0 +14712,63,43.9,50,0.0 +14712,69,36,29,0.0 +14712,59,55,37,0.0 +14712,20,81,6,0.0 +14712,45,9.5,12,0.0 +14712,57,19.5,42,0.0 +14712,24,4.5,23,0.0 +14712,23,9,34,0.0 +14713,19,9.2,21,0.0 +14713,39,18,16,0.0 +14713,48,12.75,20,0.0 +14713,8,40,29,0.0 +14713,56,38,34,0.0 +14713,3,10,13,0.0 +14713,51,53,25,0.0 +14713,76,18,2,0.0 +14713,69,36,37,0.0 +14713,63,43.9,17,0.0 +14713,33,2.5,39,0.0 +14713,57,19.5,38,0.0 +14713,11,21,45,0.0 +14713,72,34.8,8,0.0 +14713,13,6,35,0.0 +14713,55,24,36,0.0 +14713,41,9.65,26,0.0 +14713,31,12.5,30,0.0 +14713,15,15.5,20,0.0 +14713,5,21.35,23,0.0 +14713,74,10,2,0.0 +14713,16,17.45,48,0.0 +14713,18,62.5,13,0.0 +14713,44,19.45,2,0.0 +14713,59,55,11,0.0 +14713,68,12.5,42,0.0 +14713,67,14,40,0.0 +14713,12,38,34,0.0 +14713,26,31.23,8,0.0 +14713,9,97,29,0.0 +14713,35,18,37,0.0 +14713,45,9.5,24,0.0 +14713,43,46,19,0.0 +14713,73,15,29,0.0 +14714,52,7,20,0.0 +14714,19,9.2,4,0.0 +14714,74,10,35,0.0 +14714,15,15.5,17,0.0 +14714,53,32.8,10,0.0 +14714,45,9.5,39,0.0 +14714,5,21.35,48,0.0 +14714,20,81,47,0.0 +14714,77,13,40,0.0 +14714,65,21.05,27,0.0 +14714,58,13.25,18,0.0 +14714,70,15,35,0.0 +14714,46,12,20,0.0 +14714,73,15,17,0.0 +14714,7,30,45,0.0 +14714,50,16.25,21,0.0 +14714,36,19,12,0.0 +14714,26,31.23,49,0.0 +14714,61,28.5,12,0.0 +14714,76,18,49,0.0 +14714,21,10,45,0.0 +14714,63,43.9,37,0.0 +14714,55,24,33,0.0 +14714,34,14,14,0.0 +14714,44,19.45,30,0.0 +14714,72,34.8,7,0.0 +14714,43,46,12,0.0 +14714,66,17,32,0.0 +14714,28,45.6,26,0.0 +14714,3,10,49,0.0 +14714,8,40,37,0.0 +14714,62,49.3,9,0.0 +14714,57,19.5,9,0.0 +14714,41,9.65,33,0.0 +14714,22,21,3,0.0 +14714,68,12.5,31,0.0 +14714,1,18,26,0.0 +14714,11,21,8,0.0 +14714,9,97,30,0.0 +14714,51,53,8,0.0 +14714,10,31,33,0.0 +14714,69,36,15,0.0 +14714,75,7.75,15,0.0 +14714,60,34,31,0.0 +14714,49,20,31,0.0 +14714,27,43.9,5,0.0 +14714,23,9,30,0.0 +14714,37,26,9,0.0 +14714,67,14,38,0.0 +14714,14,23.25,6,0.0 +14714,54,7.45,46,0.0 +14714,71,21.5,27,0.0 +14714,30,25.89,27,0.0 +14714,18,62.5,45,0.0 +14714,6,25,23,0.0 +14714,40,18.4,17,0.0 +14714,16,17.45,42,0.0 +14714,25,14,20,0.0 +14714,4,22,36,0.0 +14714,47,9.5,48,0.0 +14714,32,32,37,0.0 +14714,13,6,26,0.0 +14714,56,38,37,0.0 +14714,48,12.75,40,0.0 +14714,31,12.5,7,0.0 +14714,39,18,22,0.0 +14714,38,263.5,42,0.0 +14714,42,14,3,0.0 +14714,59,55,17,0.0 +14714,35,18,22,0.0 +14714,12,38,10,0.0 +14715,71,21.5,46,0.0 +14715,6,25,20,0.0 +14715,73,15,44,0.0 +14715,63,43.9,15,0.0 +14715,22,21,22,0.0 +14715,74,10,3,0.0 +14715,10,31,13,0.0 +14715,3,10,50,0.0 +14715,5,21.35,30,0.0 +14715,65,21.05,40,0.0 +14715,37,26,4,0.0 +14715,9,97,20,0.0 +14715,54,7.45,41,0.0 +14715,2,19,9,0.0 +14715,59,55,17,0.0 +14715,62,49.3,13,0.0 +14715,29,123.79,25,0.0 +14715,69,36,47,0.0 +14715,24,4.5,16,0.0 +14715,20,81,2,0.0 +14715,43,46,37,0.0 +14715,21,10,17,0.0 +14715,48,12.75,15,0.0 +14715,75,7.75,35,0.0 +14715,23,9,45,0.0 +14715,36,19,14,0.0 +14715,16,17.45,8,0.0 +14715,1,18,20,0.0 +14715,44,19.45,50,0.0 +14715,12,38,19,0.0 +14715,53,32.8,13,0.0 +14715,51,53,50,0.0 +14715,72,34.8,20,0.0 +14715,56,38,17,0.0 +14715,67,14,26,0.0 +14715,60,34,16,0.0 +14715,11,21,10,0.0 +14715,66,17,47,0.0 +14715,57,19.5,15,0.0 +14715,27,43.9,31,0.0 +14715,30,25.89,20,0.0 +14715,61,28.5,46,0.0 +14715,45,9.5,5,0.0 +14715,55,24,38,0.0 +14715,26,31.23,39,0.0 +14715,50,16.25,6,0.0 +14715,52,7,10,0.0 +14715,32,32,39,0.0 +14715,8,40,45,0.0 +14715,34,14,26,0.0 +14715,31,12.5,8,0.0 +14715,41,9.65,9,0.0 +14715,13,6,45,0.0 +14715,49,20,3,0.0 +14715,7,30,42,0.0 +14715,14,23.25,38,0.0 +14715,64,33.25,19,0.0 +14715,4,22,46,0.0 +14715,46,12,30,0.0 +14715,40,18.4,25,0.0 +14715,42,14,8,0.0 +14715,38,263.5,34,0.0 +14716,33,2.5,47,0.0 +14716,62,49.3,28,0.0 +14716,34,14,28,0.0 +14716,6,25,34,0.0 +14716,77,13,17,0.0 +14716,21,10,39,0.0 +14716,41,9.65,23,0.0 +14716,40,18.4,25,0.0 +14716,27,43.9,5,0.0 +14716,22,21,28,0.0 +14716,37,26,15,0.0 +14716,76,18,26,0.0 +14716,50,16.25,41,0.0 +14716,17,39,23,0.0 +14716,29,123.79,24,0.0 +14716,32,32,30,0.0 +14716,1,18,32,0.0 +14716,4,22,18,0.0 +14716,16,17.45,10,0.0 +14716,18,62.5,49,0.0 +14716,39,18,17,0.0 +14716,64,33.25,24,0.0 +14716,20,81,16,0.0 +14716,36,19,41,0.0 +14716,61,28.5,25,0.0 +14716,67,14,42,0.0 +14716,53,32.8,7,0.0 +14716,24,4.5,15,0.0 +14716,72,34.8,42,0.0 +14716,45,9.5,8,0.0 +14716,44,19.45,8,0.0 +14717,43,46,44,0.0 +14717,24,4.5,18,0.0 +14717,33,2.5,17,0.0 +14717,52,7,48,0.0 +14717,30,25.89,2,0.0 +14717,7,30,39,0.0 +14717,38,263.5,22,0.0 +14717,45,9.5,42,0.0 +14717,9,97,31,0.0 +14717,13,6,3,0.0 +14717,22,21,18,0.0 +14717,77,13,48,0.0 +14717,76,18,37,0.0 +14717,57,19.5,47,0.0 +14717,67,14,34,0.0 +14717,59,55,26,0.0 +14717,68,12.5,36,0.0 +14717,28,45.6,18,0.0 +14717,58,13.25,31,0.0 +14718,16,17.45,3,0.0 +14718,60,34,4,0.0 +14718,57,19.5,48,0.0 +14718,27,43.9,17,0.0 +14718,18,62.5,49,0.0 +14718,65,21.05,40,0.0 +14718,62,49.3,31,0.0 +14718,56,38,27,0.0 +14718,8,40,43,0.0 +14718,75,7.75,42,0.0 +14718,36,19,27,0.0 +14718,37,26,12,0.0 +14718,59,55,14,0.0 +14718,26,31.23,37,0.0 +14718,64,33.25,8,0.0 +14718,46,12,5,0.0 +14718,24,4.5,3,0.0 +14718,58,13.25,37,0.0 +14718,9,97,25,0.0 +14718,5,21.35,12,0.0 +14718,33,2.5,1,0.0 +14718,72,34.8,12,0.0 +14718,67,14,31,0.0 +14718,49,20,42,0.0 +14718,70,15,15,0.0 +14718,39,18,27,0.0 +14718,35,18,30,0.0 +14718,20,81,9,0.0 +14718,69,36,49,0.0 +14718,7,30,31,0.0 +14718,63,43.9,14,0.0 +14718,48,12.75,27,0.0 +14718,4,22,37,0.0 +14718,43,46,40,0.0 +14718,50,16.25,41,0.0 +14718,73,15,13,0.0 +14718,54,7.45,8,0.0 +14718,1,18,45,0.0 +14718,22,21,9,0.0 +14718,28,45.6,4,0.0 +14718,53,32.8,39,0.0 +14718,14,23.25,31,0.0 +14718,11,21,30,0.0 +14718,23,9,30,0.0 +14718,74,10,20,0.0 +14718,76,18,35,0.0 +14718,2,19,43,0.0 +14718,61,28.5,43,0.0 +14718,68,12.5,34,0.0 +14718,40,18.4,31,0.0 +14718,52,7,26,0.0 +14718,3,10,47,0.0 +14718,6,25,31,0.0 +14718,19,9.2,21,0.0 +14718,29,123.79,14,0.0 +14718,42,14,14,0.0 +14718,10,31,40,0.0 +14718,41,9.65,15,0.0 +14718,13,6,18,0.0 +14718,77,13,13,0.0 +14718,12,38,24,0.0 +14718,25,14,5,0.0 +14718,66,17,30,0.0 +14718,15,15.5,35,0.0 +14718,47,9.5,31,0.0 +14718,51,53,48,0.0 +14718,55,24,13,0.0 +14719,3,10,9,0.0 +14719,77,13,22,0.0 +14719,24,4.5,27,0.0 +14719,67,14,49,0.0 +14719,59,55,27,0.0 +14719,71,21.5,2,0.0 +14719,35,18,32,0.0 +14719,23,9,5,0.0 +14719,36,19,5,0.0 +14719,57,19.5,13,0.0 +14719,45,9.5,18,0.0 +14719,34,14,40,0.0 +14719,9,97,8,0.0 +14719,66,17,8,0.0 +14719,48,12.75,46,0.0 +14720,44,19.45,24,0.0 +14720,71,21.5,39,0.0 +14720,40,18.4,37,0.0 +14720,62,49.3,21,0.0 +14720,26,31.23,30,0.0 +14720,18,62.5,10,0.0 +14720,49,20,26,0.0 +14720,76,18,19,0.0 +14720,39,18,33,0.0 +14720,66,17,24,0.0 +14720,8,40,24,0.0 +14720,72,34.8,4,0.0 +14720,13,6,34,0.0 +14720,6,25,31,0.0 +14720,5,21.35,21,0.0 +14720,58,13.25,49,0.0 +14720,29,123.79,17,0.0 +14720,61,28.5,8,0.0 +14720,20,81,5,0.0 +14720,60,34,11,0.0 +14720,24,4.5,34,0.0 +14720,11,21,6,0.0 +14720,22,21,48,0.0 +14720,54,7.45,17,0.0 +14720,4,22,26,0.0 +14720,16,17.45,27,0.0 +14720,12,38,8,0.0 +14720,34,14,47,0.0 +14720,47,9.5,16,0.0 +14721,76,18,1,0.0 +14721,5,21.35,6,0.0 +14721,6,25,16,0.0 +14721,19,9.2,11,0.0 +14721,71,21.5,11,0.0 +14721,37,26,48,0.0 +14721,72,34.8,17,0.0 +14721,68,12.5,8,0.0 +14721,30,25.89,40,0.0 +14721,8,40,15,0.0 +14721,15,15.5,5,0.0 +14721,59,55,18,0.0 +14721,22,21,41,0.0 +14721,24,4.5,7,0.0 +14721,62,49.3,28,0.0 +14721,38,263.5,27,0.0 +14721,75,7.75,27,0.0 +14721,74,10,13,0.0 +14721,55,24,22,0.0 +14721,58,13.25,19,0.0 +14721,73,15,19,0.0 +14721,56,38,50,0.0 +14721,21,10,11,0.0 +14721,13,6,18,0.0 +14721,65,21.05,2,0.0 +14721,39,18,16,0.0 +14721,17,39,34,0.0 +14721,36,19,26,0.0 +14721,66,17,23,0.0 +14721,45,9.5,41,0.0 +14721,26,31.23,24,0.0 +14721,54,7.45,4,0.0 +14721,4,22,1,0.0 +14721,67,14,6,0.0 +14721,35,18,5,0.0 +14721,1,18,40,0.0 +14721,61,28.5,26,0.0 +14721,27,43.9,4,0.0 +14721,3,10,21,0.0 +14721,42,14,41,0.0 +14721,70,15,31,0.0 +14721,9,97,3,0.0 +14721,69,36,16,0.0 +14721,34,14,4,0.0 +14721,43,46,9,0.0 +14721,50,16.25,23,0.0 +14721,28,45.6,39,0.0 +14721,63,43.9,25,0.0 +14721,77,13,12,0.0 +14721,12,38,15,0.0 +14721,31,12.5,46,0.0 +14721,11,21,28,0.0 +14721,32,32,48,0.0 +14722,37,26,50,0.0 +14722,34,14,21,0.0 +14722,73,15,48,0.0 +14722,41,9.65,28,0.0 +14722,21,10,20,0.0 +14722,30,25.89,23,0.0 +14722,5,21.35,41,0.0 +14722,58,13.25,7,0.0 +14722,28,45.6,35,0.0 +14722,76,18,48,0.0 +14722,55,24,11,0.0 +14722,61,28.5,45,0.0 +14722,9,97,37,0.0 +14722,72,34.8,44,0.0 +14722,31,12.5,38,0.0 +14723,59,55,26,0.0 +14723,37,26,39,0.0 +14723,20,81,11,0.0 +14723,39,18,9,0.0 +14723,45,9.5,50,0.0 +14723,35,18,11,0.0 +14723,10,31,25,0.0 +14723,69,36,5,0.0 +14723,3,10,8,0.0 +14723,4,22,4,0.0 +14723,63,43.9,35,0.0 +14723,70,15,27,0.0 +14723,57,19.5,40,0.0 +14723,12,38,49,0.0 +14723,15,15.5,15,0.0 +14723,49,20,11,0.0 +14723,55,24,7,0.0 +14723,46,12,18,0.0 +14723,71,21.5,20,0.0 +14723,31,12.5,14,0.0 +14723,47,9.5,25,0.0 +14723,34,14,18,0.0 +14723,1,18,34,0.0 +14723,16,17.45,16,0.0 +14723,23,9,5,0.0 +14723,7,30,20,0.0 +14723,5,21.35,2,0.0 +14723,33,2.5,40,0.0 +14723,48,12.75,31,0.0 +14723,24,4.5,33,0.0 +14723,14,23.25,10,0.0 +14723,54,7.45,48,0.0 +14723,11,21,29,0.0 +14723,17,39,50,0.0 +14723,8,40,13,0.0 +14723,61,28.5,20,0.0 +14723,60,34,32,0.0 +14723,2,19,21,0.0 +14723,56,38,22,0.0 +14723,73,15,38,0.0 +14723,21,10,37,0.0 +14723,51,53,1,0.0 +14723,53,32.8,22,0.0 +14724,72,34.8,42,0.0 +14724,14,23.25,9,0.0 +14724,19,9.2,36,0.0 +14724,55,24,12,0.0 +14724,18,62.5,31,0.0 +14724,6,25,40,0.0 +14724,28,45.6,29,0.0 +14724,15,15.5,43,0.0 +14724,63,43.9,35,0.0 +14724,1,18,29,0.0 +14724,38,263.5,33,0.0 +14724,23,9,16,0.0 +14724,48,12.75,21,0.0 +14724,70,15,38,0.0 +14724,58,13.25,8,0.0 +14724,46,12,33,0.0 +14724,5,21.35,9,0.0 +14724,53,32.8,17,0.0 +14724,2,19,50,0.0 +14724,33,2.5,43,0.0 +14724,51,53,33,0.0 +14724,30,25.89,36,0.0 +14724,47,9.5,26,0.0 +14724,54,7.45,22,0.0 +14724,44,19.45,44,0.0 +14724,26,31.23,43,0.0 +14724,9,97,41,0.0 +14724,13,6,32,0.0 +14724,22,21,22,0.0 +14724,68,12.5,49,0.0 +14724,21,10,49,0.0 +14724,10,31,31,0.0 +14724,37,26,39,0.0 +14724,35,18,33,0.0 +14724,50,16.25,7,0.0 +14724,57,19.5,19,0.0 +14724,59,55,43,0.0 +14724,45,9.5,34,0.0 +14724,3,10,45,0.0 +14724,61,28.5,19,0.0 +14724,77,13,21,0.0 +14724,7,30,24,0.0 +14724,25,14,1,0.0 +14724,40,18.4,40,0.0 +14724,71,21.5,15,0.0 +14724,64,33.25,45,0.0 +14724,49,20,18,0.0 +14724,16,17.45,2,0.0 +14724,11,21,48,0.0 +14724,43,46,50,0.0 +14724,34,14,11,0.0 +14724,41,9.65,17,0.0 +14724,8,40,49,0.0 +14724,56,38,37,0.0 +14724,36,19,22,0.0 +14724,27,43.9,42,0.0 +14724,31,12.5,50,0.0 +14724,65,21.05,35,0.0 +14724,39,18,32,0.0 +14724,17,39,25,0.0 +14724,20,81,26,0.0 +14724,66,17,28,0.0 +14724,60,34,41,0.0 +14724,42,14,24,0.0 +14724,75,7.75,41,0.0 +14724,74,10,39,0.0 +14724,32,32,44,0.0 +14724,67,14,20,0.0 +14724,29,123.79,1,0.0 +14724,24,4.5,13,0.0 +14724,62,49.3,38,0.0 +14724,12,38,18,0.0 +14724,76,18,30,0.0 +14725,24,4.5,8,0.0 +14725,34,14,14,0.0 +14725,21,10,22,0.0 +14725,11,21,36,0.0 +14725,27,43.9,11,0.0 +14725,50,16.25,33,0.0 +14725,13,6,25,0.0 +14725,2,19,1,0.0 +14725,54,7.45,18,0.0 +14725,26,31.23,39,0.0 +14725,29,123.79,7,0.0 +14725,55,24,5,0.0 +14725,62,49.3,37,0.0 +14725,15,15.5,46,0.0 +14725,40,18.4,26,0.0 +14725,5,21.35,29,0.0 +14725,3,10,15,0.0 +14725,74,10,20,0.0 +14725,48,12.75,39,0.0 +14725,45,9.5,12,0.0 +14725,17,39,26,0.0 +14725,39,18,38,0.0 +14725,22,21,15,0.0 +14725,25,14,50,0.0 +14725,38,263.5,47,0.0 +14725,69,36,23,0.0 +14725,16,17.45,46,0.0 +14725,67,14,27,0.0 +14725,4,22,7,0.0 +14725,41,9.65,31,0.0 +14725,66,17,18,0.0 +14725,73,15,5,0.0 +14725,12,38,14,0.0 +14725,37,26,21,0.0 +14725,49,20,9,0.0 +14725,30,25.89,3,0.0 +14725,18,62.5,20,0.0 +14725,14,23.25,12,0.0 +14725,33,2.5,38,0.0 +14725,64,33.25,35,0.0 +14725,59,55,41,0.0 +14725,1,18,9,0.0 +14725,35,18,27,0.0 +14725,72,34.8,19,0.0 +14725,42,14,49,0.0 +14725,57,19.5,10,0.0 +14725,44,19.45,19,0.0 +14725,70,15,24,0.0 +14725,47,9.5,22,0.0 +14725,46,12,28,0.0 +14725,60,34,39,0.0 +14725,71,21.5,19,0.0 +14725,76,18,7,0.0 +14725,75,7.75,32,0.0 +14725,43,46,9,0.0 +14725,58,13.25,37,0.0 +14725,7,30,17,0.0 +14725,19,9.2,1,0.0 +14725,53,32.8,21,0.0 +14725,23,9,20,0.0 +14725,6,25,19,0.0 +14725,32,32,14,0.0 +14725,36,19,10,0.0 +14725,77,13,2,0.0 +14725,65,21.05,11,0.0 +14725,9,97,11,0.0 +14725,52,7,32,0.0 +14726,67,14,8,0.0 +14726,34,14,32,0.0 +14726,3,10,34,0.0 +14726,73,15,9,0.0 +14726,39,18,12,0.0 +14726,17,39,20,0.0 +14726,54,7.45,36,0.0 +14726,76,18,23,0.0 +14726,53,32.8,36,0.0 +14726,20,81,31,0.0 +14726,11,21,40,0.0 +14726,45,9.5,50,0.0 +14727,38,263.5,17,0.0 +14727,26,31.23,6,0.0 +14727,47,9.5,25,0.0 +14727,70,15,47,0.0 +14727,22,21,30,0.0 +14727,32,32,36,0.0 +14727,17,39,50,0.0 +14727,63,43.9,9,0.0 +14727,19,9.2,19,0.0 +14727,62,49.3,38,0.0 +14727,34,14,35,0.0 +14727,77,13,30,0.0 +14727,45,9.5,9,0.0 +14727,30,25.89,18,0.0 +14727,14,23.25,14,0.0 +14727,67,14,49,0.0 +14727,23,9,40,0.0 +14727,50,16.25,42,0.0 +14727,51,53,34,0.0 +14727,1,18,30,0.0 +14727,31,12.5,31,0.0 +14727,43,46,30,0.0 +14727,39,18,4,0.0 +14727,42,14,45,0.0 +14727,15,15.5,23,0.0 +14727,68,12.5,30,0.0 +14727,12,38,46,0.0 +14727,72,34.8,4,0.0 +14727,2,19,16,0.0 +14727,52,7,8,0.0 +14727,59,55,31,0.0 +14727,54,7.45,38,0.0 +14727,75,7.75,20,0.0 +14727,4,22,45,0.0 +14727,3,10,13,0.0 +14727,37,26,11,0.0 +14727,10,31,14,0.0 +14727,48,12.75,35,0.0 +14727,28,45.6,43,0.0 +14727,35,18,28,0.0 +14727,25,14,50,0.0 +14727,73,15,13,0.0 +14727,56,38,27,0.0 +14727,41,9.65,11,0.0 +14727,60,34,10,0.0 +14727,74,10,29,0.0 +14727,57,19.5,34,0.0 +14727,5,21.35,44,0.0 +14727,71,21.5,34,0.0 +14727,7,30,18,0.0 +14727,66,17,21,0.0 +14727,21,10,25,0.0 +14727,40,18.4,2,0.0 +14727,24,4.5,28,0.0 +14727,13,6,39,0.0 +14727,64,33.25,44,0.0 +14728,57,19.5,20,0.0 +14728,74,10,46,0.0 +14728,20,81,19,0.0 +14728,59,55,21,0.0 +14728,62,49.3,8,0.0 +14728,27,43.9,37,0.0 +14728,45,9.5,50,0.0 +14728,29,123.79,15,0.0 +14728,41,9.65,3,0.0 +14728,66,17,30,0.0 +14728,16,17.45,44,0.0 +14728,51,53,8,0.0 +14728,54,7.45,46,0.0 +14728,17,39,44,0.0 +14728,38,263.5,14,0.0 +14728,3,10,1,0.0 +14728,31,12.5,6,0.0 +14728,28,45.6,44,0.0 +14728,58,13.25,7,0.0 +14728,5,21.35,29,0.0 +14728,37,26,12,0.0 +14728,36,19,46,0.0 +14728,43,46,39,0.0 +14728,67,14,46,0.0 +14728,24,4.5,35,0.0 +14728,55,24,32,0.0 +14728,13,6,25,0.0 +14728,40,18.4,19,0.0 +14728,18,62.5,25,0.0 +14728,8,40,47,0.0 +14728,6,25,40,0.0 +14728,19,9.2,7,0.0 +14728,15,15.5,46,0.0 +14728,42,14,41,0.0 +14728,60,34,10,0.0 +14728,53,32.8,24,0.0 +14728,33,2.5,20,0.0 +14728,47,9.5,4,0.0 +14728,14,23.25,8,0.0 +14728,10,31,20,0.0 +14728,70,15,45,0.0 +14728,21,10,48,0.0 +14728,1,18,39,0.0 +14728,75,7.75,34,0.0 +14728,56,38,50,0.0 +14728,22,21,28,0.0 +14728,69,36,14,0.0 +14728,9,97,33,0.0 +14728,77,13,18,0.0 +14728,46,12,21,0.0 +14728,76,18,40,0.0 +14728,61,28.5,28,0.0 +14728,7,30,40,0.0 +14728,65,21.05,29,0.0 +14728,49,20,38,0.0 +14728,52,7,40,0.0 +14728,32,32,21,0.0 +14728,44,19.45,35,0.0 +14728,12,38,2,0.0 +14728,11,21,45,0.0 +14728,64,33.25,48,0.0 +14728,35,18,38,0.0 +14728,50,16.25,16,0.0 +14728,26,31.23,38,0.0 +14728,34,14,29,0.0 +14728,68,12.5,10,0.0 +14728,71,21.5,34,0.0 +14728,30,25.89,11,0.0 +14728,48,12.75,15,0.0 +14728,23,9,10,0.0 +14728,2,19,38,0.0 +14728,4,22,48,0.0 +14728,25,14,24,0.0 +14728,73,15,40,0.0 +14728,63,43.9,40,0.0 +14728,39,18,9,0.0 +14729,66,17,27,0.0 +14729,6,25,20,0.0 +14729,48,12.75,1,0.0 +14729,8,40,17,0.0 +14729,29,123.79,17,0.0 +14729,70,15,37,0.0 +14729,27,43.9,36,0.0 +14729,50,16.25,17,0.0 +14729,28,45.6,46,0.0 +14729,7,30,15,0.0 +14729,4,22,41,0.0 +14729,72,34.8,27,0.0 +14729,42,14,2,0.0 +14729,22,21,6,0.0 +14729,30,25.89,40,0.0 +14729,64,33.25,11,0.0 +14730,23,9,2,0.0 +14730,8,40,44,0.0 +14730,69,36,5,0.0 +14730,49,20,22,0.0 +14730,43,46,3,0.0 +14730,55,24,15,0.0 +14730,13,6,28,0.0 +14730,3,10,47,0.0 +14730,10,31,33,0.0 +14730,19,9.2,11,0.0 +14730,18,62.5,32,0.0 +14730,4,22,12,0.0 +14730,72,34.8,13,0.0 +14730,30,25.89,9,0.0 +14730,42,14,13,0.0 +14730,51,53,16,0.0 +14730,21,10,31,0.0 +14730,66,17,20,0.0 +14730,5,21.35,22,0.0 +14730,40,18.4,7,0.0 +14730,75,7.75,31,0.0 +14730,6,25,24,0.0 +14730,20,81,11,0.0 +14730,76,18,35,0.0 +14730,15,15.5,21,0.0 +14730,61,28.5,16,0.0 +14730,24,4.5,43,0.0 +14730,67,14,28,0.0 +14730,9,97,9,0.0 +14730,33,2.5,2,0.0 +14730,32,32,48,0.0 +14730,29,123.79,48,0.0 +14730,77,13,23,0.0 +14730,31,12.5,18,0.0 +14730,65,21.05,47,0.0 +14730,22,21,17,0.0 +14730,17,39,41,0.0 +14730,73,15,31,0.0 +14730,47,9.5,39,0.0 +14730,25,14,29,0.0 +14731,75,7.75,24,0.0 +14731,36,19,12,0.0 +14731,52,7,45,0.0 +14731,73,15,44,0.0 +14731,24,4.5,12,0.0 +14731,16,17.45,17,0.0 +14731,57,19.5,22,0.0 +14731,62,49.3,19,0.0 +14731,48,12.75,17,0.0 +14731,27,43.9,49,0.0 +14731,25,14,4,0.0 +14731,26,31.23,13,0.0 +14731,42,14,16,0.0 +14731,40,18.4,13,0.0 +14731,8,40,11,0.0 +14731,55,24,40,0.0 +14731,23,9,36,0.0 +14731,39,18,27,0.0 +14731,76,18,35,0.0 +14731,22,21,2,0.0 +14731,59,55,47,0.0 +14731,37,26,47,0.0 +14731,68,12.5,49,0.0 +14731,67,14,9,0.0 +14731,66,17,40,0.0 +14731,14,23.25,38,0.0 +14731,2,19,3,0.0 +14731,63,43.9,10,0.0 +14731,77,13,48,0.0 +14731,17,39,14,0.0 +14731,19,9.2,16,0.0 +14731,11,21,13,0.0 +14731,10,31,43,0.0 +14731,45,9.5,9,0.0 +14731,50,16.25,44,0.0 +14731,4,22,45,0.0 +14731,54,7.45,31,0.0 +14731,43,46,20,0.0 +14731,13,6,28,0.0 +14731,64,33.25,7,0.0 +14731,38,263.5,19,0.0 +14731,65,21.05,12,0.0 +14732,70,15,32,0.0 +14732,17,39,20,0.0 +14732,61,28.5,12,0.0 +14732,39,18,42,0.0 +14732,29,123.79,47,0.0 +14732,58,13.25,9,0.0 +14732,48,12.75,11,0.0 +14732,51,53,42,0.0 +14732,76,18,3,0.0 +14732,9,97,36,0.0 +14732,55,24,38,0.0 +14732,35,18,33,0.0 +14732,1,18,48,0.0 +14732,56,38,38,0.0 +14732,64,33.25,16,0.0 +14732,4,22,1,0.0 +14732,54,7.45,41,0.0 +14732,36,19,29,0.0 +14732,32,32,11,0.0 +14732,75,7.75,23,0.0 +14732,50,16.25,33,0.0 +14732,3,10,1,0.0 +14732,19,9.2,4,0.0 +14732,20,81,46,0.0 +14732,65,21.05,11,0.0 +14732,57,19.5,32,0.0 +14732,6,25,10,0.0 +14732,38,263.5,12,0.0 +14732,26,31.23,10,0.0 +14732,22,21,20,0.0 +14732,40,18.4,39,0.0 +14732,45,9.5,21,0.0 +14732,8,40,20,0.0 +14732,77,13,27,0.0 +14732,14,23.25,16,0.0 +14733,8,40,50,0.0 +14733,27,43.9,24,0.0 +14733,5,21.35,16,0.0 +14733,33,2.5,30,0.0 +14733,23,9,47,0.0 +14733,37,26,49,0.0 +14734,12,38,35,0.0 +14734,68,12.5,49,0.0 +14734,11,21,15,0.0 +14734,33,2.5,4,0.0 +14734,72,34.8,10,0.0 +14734,71,21.5,45,0.0 +14734,39,18,15,0.0 +14734,7,30,33,0.0 +14734,46,12,46,0.0 +14734,56,38,14,0.0 +14734,48,12.75,14,0.0 +14734,43,46,11,0.0 +14734,55,24,10,0.0 +14735,62,49.3,31,0.0 +14736,5,21.35,8,0.0 +14736,71,21.5,34,0.0 +14736,29,123.79,1,0.0 +14736,56,38,29,0.0 +14736,41,9.65,3,0.0 +14736,55,24,33,0.0 +14736,2,19,5,0.0 +14736,53,32.8,44,0.0 +14736,23,9,3,0.0 +14736,11,21,15,0.0 +14736,43,46,26,0.0 +14736,25,14,7,0.0 +14736,67,14,19,0.0 +14736,72,34.8,29,0.0 +14736,74,10,37,0.0 +14736,21,10,44,0.0 +14736,38,263.5,41,0.0 +14736,45,9.5,44,0.0 +14736,14,23.25,27,0.0 +14736,65,21.05,44,0.0 +14736,52,7,34,0.0 +14736,28,45.6,42,0.0 +14736,16,17.45,1,0.0 +14736,39,18,17,0.0 +14736,20,81,3,0.0 +14736,27,43.9,2,0.0 +14736,60,34,30,0.0 +14736,31,12.5,20,0.0 +14736,1,18,36,0.0 +14736,59,55,29,0.0 +14736,64,33.25,48,0.0 +14736,26,31.23,49,0.0 +14736,33,2.5,18,0.0 +14736,66,17,14,0.0 +14736,54,7.45,44,0.0 +14736,75,7.75,37,0.0 +14736,37,26,7,0.0 +14736,48,12.75,29,0.0 +14736,13,6,31,0.0 +14736,50,16.25,17,0.0 +14736,40,18.4,6,0.0 +14736,57,19.5,19,0.0 +14736,49,20,26,0.0 +14736,15,15.5,12,0.0 +14736,76,18,33,0.0 +14736,63,43.9,40,0.0 +14736,22,21,25,0.0 +14736,8,40,24,0.0 +14736,62,49.3,2,0.0 +14736,77,13,29,0.0 +14736,70,15,36,0.0 +14737,21,10,12,0.0 +14737,67,14,35,0.0 +14737,23,9,50,0.0 +14737,52,7,28,0.0 +14737,6,25,35,0.0 +14737,66,17,47,0.0 +14737,73,15,8,0.0 +14737,4,22,29,0.0 +14737,34,14,10,0.0 +14737,29,123.79,17,0.0 +14737,10,31,33,0.0 +14737,71,21.5,11,0.0 +14737,19,9.2,31,0.0 +14737,13,6,33,0.0 +14737,70,15,46,0.0 +14737,31,12.5,37,0.0 +14737,20,81,26,0.0 +14737,45,9.5,5,0.0 +14737,76,18,20,0.0 +14737,12,38,2,0.0 +14737,14,23.25,18,0.0 +14737,47,9.5,36,0.0 +14737,55,24,12,0.0 +14737,27,43.9,4,0.0 +14737,53,32.8,10,0.0 +14737,49,20,8,0.0 +14737,40,18.4,17,0.0 +14737,9,97,29,0.0 +14737,69,36,26,0.0 +14737,25,14,30,0.0 +14737,68,12.5,29,0.0 +14737,63,43.9,3,0.0 +14737,8,40,23,0.0 +14737,5,21.35,18,0.0 +14737,51,53,43,0.0 +14737,54,7.45,5,0.0 +14737,24,4.5,19,0.0 +14737,3,10,34,0.0 +14737,65,21.05,24,0.0 +14737,30,25.89,43,0.0 +14737,50,16.25,28,0.0 +14737,16,17.45,49,0.0 +14737,38,263.5,15,0.0 +14737,46,12,6,0.0 +14737,48,12.75,5,0.0 +14737,44,19.45,34,0.0 +14737,60,34,1,0.0 +14737,7,30,39,0.0 +14737,43,46,20,0.0 +14737,42,14,7,0.0 +14737,22,21,42,0.0 +14737,77,13,14,0.0 +14737,11,21,26,0.0 +14737,62,49.3,34,0.0 +14737,1,18,42,0.0 +14737,56,38,21,0.0 +14737,28,45.6,6,0.0 +14737,15,15.5,12,0.0 +14737,61,28.5,21,0.0 +14737,39,18,39,0.0 +14737,41,9.65,24,0.0 +14737,35,18,1,0.0 +14737,2,19,12,0.0 +14737,74,10,28,0.0 +14737,58,13.25,49,0.0 +14737,33,2.5,33,0.0 +14737,59,55,16,0.0 +14737,37,26,15,0.0 +14737,64,33.25,46,0.0 +14737,75,7.75,38,0.0 +14737,72,34.8,29,0.0 +14738,65,21.05,46,0.0 +14738,60,34,35,0.0 +14738,62,49.3,25,0.0 +14738,14,23.25,7,0.0 +14738,19,9.2,9,0.0 +14738,46,12,23,0.0 +14738,40,18.4,42,0.0 +14738,71,21.5,21,0.0 +14738,36,19,50,0.0 +14738,53,32.8,38,0.0 +14738,16,17.45,13,0.0 +14738,13,6,29,0.0 +14738,6,25,30,0.0 +14738,47,9.5,3,0.0 +14738,2,19,28,0.0 +14738,10,31,21,0.0 +14738,8,40,18,0.0 +14738,75,7.75,39,0.0 +14738,64,33.25,42,0.0 +14738,7,30,2,0.0 +14738,66,17,50,0.0 +14738,20,81,8,0.0 +14738,15,15.5,28,0.0 +14738,34,14,13,0.0 +14738,26,31.23,34,0.0 +14738,28,45.6,36,0.0 +14738,50,16.25,12,0.0 +14738,27,43.9,2,0.0 +14738,4,22,44,0.0 +14738,59,55,7,0.0 +14738,1,18,17,0.0 +14738,45,9.5,18,0.0 +14738,29,123.79,21,0.0 +14738,67,14,50,0.0 +14738,31,12.5,49,0.0 +14738,73,15,37,0.0 +14738,25,14,10,0.0 +14738,18,62.5,42,0.0 +14738,74,10,34,0.0 +14738,22,21,1,0.0 +14738,33,2.5,8,0.0 +14738,56,38,37,0.0 +14738,11,21,38,0.0 +14738,61,28.5,26,0.0 +14738,35,18,18,0.0 +14738,39,18,45,0.0 +14738,21,10,7,0.0 +14738,41,9.65,1,0.0 +14738,63,43.9,18,0.0 +14738,58,13.25,7,0.0 +14739,13,6,9,0.0 +14739,62,49.3,43,0.0 +14739,76,18,4,0.0 +14739,21,10,37,0.0 +14739,72,34.8,40,0.0 +14739,68,12.5,23,0.0 +14739,60,34,18,0.0 +14739,74,10,17,0.0 +14739,67,14,22,0.0 +14739,77,13,16,0.0 +14739,4,22,7,0.0 +14739,28,45.6,21,0.0 +14739,53,32.8,7,0.0 +14740,38,263.5,3,0.0 +14740,9,97,50,0.0 +14740,25,14,5,0.0 +14740,20,81,22,0.0 +14740,57,19.5,3,0.0 +14740,75,7.75,23,0.0 +14740,39,18,39,0.0 +14740,55,24,47,0.0 +14740,76,18,21,0.0 +14740,40,18.4,12,0.0 +14740,64,33.25,28,0.0 +14740,41,9.65,20,0.0 +14740,12,38,5,0.0 +14740,30,25.89,33,0.0 +14740,53,32.8,36,0.0 +14740,63,43.9,4,0.0 +14741,19,9.2,49,0.0 +14741,32,32,38,0.0 +14741,21,10,45,0.0 +14741,54,7.45,29,0.0 +14741,24,4.5,40,0.0 +14741,15,15.5,9,0.0 +14741,11,21,28,0.0 +14741,26,31.23,24,0.0 +14741,43,46,24,0.0 +14741,67,14,35,0.0 +14741,61,28.5,25,0.0 +14741,1,18,37,0.0 +14741,42,14,29,0.0 +14741,77,13,12,0.0 +14741,72,34.8,10,0.0 +14741,17,39,13,0.0 +14741,2,19,3,0.0 +14741,73,15,34,0.0 +14741,69,36,27,0.0 +14741,39,18,2,0.0 +14741,28,45.6,4,0.0 +14741,25,14,49,0.0 +14741,4,22,28,0.0 +14741,70,15,27,0.0 +14741,46,12,43,0.0 +14741,36,19,47,0.0 +14741,13,6,34,0.0 +14741,31,12.5,41,0.0 +14741,16,17.45,2,0.0 +14741,3,10,31,0.0 +14741,76,18,24,0.0 +14741,27,43.9,36,0.0 +14741,53,32.8,24,0.0 +14741,51,53,15,0.0 +14741,62,49.3,11,0.0 +14741,63,43.9,16,0.0 +14741,38,263.5,31,0.0 +14741,71,21.5,3,0.0 +14741,57,19.5,9,0.0 +14741,68,12.5,25,0.0 +14741,6,25,31,0.0 +14741,8,40,44,0.0 +14741,30,25.89,27,0.0 +14741,56,38,9,0.0 +14741,37,26,46,0.0 +14741,48,12.75,37,0.0 +14741,35,18,42,0.0 +14741,55,24,22,0.0 +14741,33,2.5,17,0.0 +14741,58,13.25,7,0.0 +14741,45,9.5,15,0.0 +14741,64,33.25,11,0.0 +14741,49,20,9,0.0 +14741,20,81,46,0.0 +14741,41,9.65,34,0.0 +14741,75,7.75,33,0.0 +14741,22,21,22,0.0 +14741,44,19.45,7,0.0 +14741,29,123.79,46,0.0 +14741,7,30,22,0.0 +14741,23,9,33,0.0 +14741,18,62.5,1,0.0 +14742,61,28.5,50,0.0 +14742,16,17.45,1,0.0 +14742,50,16.25,9,0.0 +14742,44,19.45,11,0.0 +14742,48,12.75,2,0.0 +14742,11,21,34,0.0 +14742,12,38,20,0.0 +14742,62,49.3,50,0.0 +14742,71,21.5,26,0.0 +14742,68,12.5,8,0.0 +14742,63,43.9,31,0.0 +14742,43,46,38,0.0 +14742,74,10,30,0.0 +14742,46,12,16,0.0 +14742,34,14,8,0.0 +14742,57,19.5,11,0.0 +14742,24,4.5,5,0.0 +14742,53,32.8,31,0.0 +14742,26,31.23,39,0.0 +14742,31,12.5,42,0.0 +14742,25,14,12,0.0 +14742,13,6,36,0.0 +14742,32,32,29,0.0 +14742,21,10,6,0.0 +14742,36,19,7,0.0 +14742,72,34.8,18,0.0 +14742,77,13,28,0.0 +14742,27,43.9,38,0.0 +14742,7,30,45,0.0 +14742,58,13.25,18,0.0 +14742,14,23.25,28,0.0 +14742,69,36,41,0.0 +14742,5,21.35,48,0.0 +14742,40,18.4,28,0.0 +14742,6,25,30,0.0 +14742,9,97,26,0.0 +14742,37,26,34,0.0 +14742,33,2.5,25,0.0 +14742,70,15,35,0.0 +14742,51,53,7,0.0 +14742,45,9.5,20,0.0 +14742,41,9.65,6,0.0 +14743,5,21.35,45,0.0 +14743,73,15,36,0.0 +14743,47,9.5,28,0.0 +14743,24,4.5,6,0.0 +14743,69,36,27,0.0 +14743,10,31,37,0.0 +14743,33,2.5,19,0.0 +14743,14,23.25,36,0.0 +14743,75,7.75,37,0.0 +14743,39,18,28,0.0 +14743,34,14,8,0.0 +14743,32,32,25,0.0 +14743,22,21,16,0.0 +14743,27,43.9,7,0.0 +14743,64,33.25,48,0.0 +14743,49,20,6,0.0 +14743,37,26,28,0.0 +14743,53,32.8,2,0.0 +14743,56,38,49,0.0 +14743,8,40,29,0.0 +14743,52,7,17,0.0 +14743,77,13,35,0.0 +14743,26,31.23,37,0.0 +14743,25,14,23,0.0 +14743,36,19,44,0.0 +14743,71,21.5,12,0.0 +14743,66,17,5,0.0 +14743,20,81,49,0.0 +14743,54,7.45,6,0.0 +14743,65,21.05,14,0.0 +14743,45,9.5,17,0.0 +14743,11,21,18,0.0 +14743,70,15,30,0.0 +14743,40,18.4,6,0.0 +14743,18,62.5,5,0.0 +14743,58,13.25,14,0.0 +14743,15,15.5,34,0.0 +14743,55,24,14,0.0 +14743,38,263.5,14,0.0 +14743,59,55,38,0.0 +14743,13,6,17,0.0 +14743,9,97,25,0.0 +14743,30,25.89,9,0.0 +14743,7,30,48,0.0 +14743,43,46,25,0.0 +14743,46,12,18,0.0 +14743,50,16.25,17,0.0 +14743,3,10,39,0.0 +14743,31,12.5,37,0.0 +14743,17,39,20,0.0 +14743,4,22,44,0.0 +14743,29,123.79,38,0.0 +14743,16,17.45,6,0.0 +14743,63,43.9,11,0.0 +14743,61,28.5,14,0.0 +14743,19,9.2,37,0.0 +14743,35,18,42,0.0 +14743,76,18,12,0.0 +14743,68,12.5,46,0.0 +14743,2,19,26,0.0 +14743,12,38,48,0.0 +14743,72,34.8,41,0.0 +14743,28,45.6,49,0.0 +14743,41,9.65,20,0.0 +14743,51,53,27,0.0 +14743,6,25,22,0.0 +14743,60,34,12,0.0 +14743,67,14,21,0.0 +14743,62,49.3,20,0.0 +14743,21,10,32,0.0 +14743,23,9,27,0.0 +14743,74,10,24,0.0 +14743,48,12.75,10,0.0 +14743,42,14,36,0.0 +14744,11,21,35,0.0 +14744,19,9.2,25,0.0 +14744,1,18,40,0.0 +14744,51,53,43,0.0 +14744,77,13,2,0.0 +14744,9,97,20,0.0 +14744,76,18,36,0.0 +14744,7,30,18,0.0 +14744,65,21.05,44,0.0 +14744,60,34,12,0.0 +14744,39,18,13,0.0 +14744,41,9.65,18,0.0 +14744,44,19.45,16,0.0 +14744,38,263.5,43,0.0 +14744,20,81,36,0.0 +14744,43,46,40,0.0 +14744,22,21,19,0.0 +14744,6,25,32,0.0 +14744,42,14,18,0.0 +14744,29,123.79,10,0.0 +14744,72,34.8,49,0.0 +14744,54,7.45,15,0.0 +14744,71,21.5,24,0.0 +14744,48,12.75,24,0.0 +14744,49,20,24,0.0 +14744,18,62.5,18,0.0 +14744,66,17,39,0.0 +14744,25,14,44,0.0 +14744,47,9.5,41,0.0 +14744,27,43.9,9,0.0 +14744,55,24,29,0.0 +14744,40,18.4,46,0.0 +14744,56,38,38,0.0 +14744,36,19,9,0.0 +14744,12,38,49,0.0 +14744,46,12,3,0.0 +14744,75,7.75,11,0.0 +14744,59,55,43,0.0 +14744,16,17.45,46,0.0 +14744,53,32.8,6,0.0 +14744,37,26,38,0.0 +14744,61,28.5,19,0.0 +14744,33,2.5,48,0.0 +14744,10,31,30,0.0 +14744,30,25.89,13,0.0 +14744,64,33.25,38,0.0 +14744,21,10,24,0.0 +14744,13,6,25,0.0 +14744,34,14,16,0.0 +14744,17,39,25,0.0 +14744,50,16.25,27,0.0 +14744,3,10,6,0.0 +14745,57,19.5,38,0.0 +14745,75,7.75,2,0.0 +14745,70,15,38,0.0 +14745,14,23.25,36,0.0 +14745,71,21.5,40,0.0 +14745,41,9.65,32,0.0 +14745,10,31,32,0.0 +14745,1,18,25,0.0 +14745,42,14,12,0.0 +14745,7,30,23,0.0 +14745,60,34,2,0.0 +14745,26,31.23,14,0.0 +14745,44,19.45,28,0.0 +14745,30,25.89,23,0.0 +14745,58,13.25,16,0.0 +14745,22,21,27,0.0 +14745,16,17.45,5,0.0 +14745,61,28.5,47,0.0 +14745,32,32,3,0.0 +14745,69,36,9,0.0 +14745,5,21.35,15,0.0 +14745,31,12.5,23,0.0 +14745,43,46,8,0.0 +14745,15,15.5,29,0.0 +14745,39,18,5,0.0 +14745,29,123.79,9,0.0 +14745,18,62.5,49,0.0 +14745,72,34.8,41,0.0 +14745,49,20,43,0.0 +14745,9,97,34,0.0 +14745,36,19,23,0.0 +14745,34,14,30,0.0 +14745,68,12.5,44,0.0 +14745,67,14,18,0.0 +14745,19,9.2,7,0.0 +14745,76,18,41,0.0 +14745,27,43.9,33,0.0 +14745,20,81,9,0.0 +14745,40,18.4,16,0.0 +14745,51,53,13,0.0 +14745,12,38,20,0.0 +14745,23,9,4,0.0 +14745,64,33.25,18,0.0 +14745,24,4.5,7,0.0 +14745,55,24,14,0.0 +14745,37,26,41,0.0 +14745,28,45.6,49,0.0 +14745,21,10,29,0.0 +14745,53,32.8,47,0.0 +14745,66,17,38,0.0 +14745,6,25,19,0.0 +14745,48,12.75,16,0.0 +14745,56,38,48,0.0 +14745,59,55,28,0.0 +14745,13,6,17,0.0 +14745,50,16.25,19,0.0 +14745,45,9.5,1,0.0 +14746,36,19,38,0.0 +14746,70,15,43,0.0 +14746,18,62.5,28,0.0 +14746,57,19.5,8,0.0 +14746,65,21.05,11,0.0 +14746,31,12.5,40,0.0 +14746,20,81,15,0.0 +14746,61,28.5,50,0.0 +14746,13,6,27,0.0 +14746,44,19.45,24,0.0 +14746,52,7,12,0.0 +14746,3,10,35,0.0 +14746,19,9.2,10,0.0 +14746,7,30,9,0.0 +14746,39,18,27,0.0 +14746,76,18,32,0.0 +14746,72,34.8,46,0.0 +14746,21,10,36,0.0 +14746,71,21.5,15,0.0 +14746,6,25,10,0.0 +14746,55,24,24,0.0 +14746,23,9,8,0.0 +14746,63,43.9,29,0.0 +14746,30,25.89,33,0.0 +14746,38,263.5,4,0.0 +14746,75,7.75,12,0.0 +14746,69,36,9,0.0 +14746,11,21,10,0.0 +14747,34,14,48,0.0 +14747,12,38,14,0.0 +14747,10,31,7,0.0 +14747,20,81,27,0.0 +14747,49,20,42,0.0 +14747,5,21.35,25,0.0 +14747,53,32.8,20,0.0 +14747,15,15.5,18,0.0 +14747,44,19.45,50,0.0 +14747,13,6,36,0.0 +14747,31,12.5,40,0.0 +14747,66,17,34,0.0 +14747,68,12.5,50,0.0 +14747,14,23.25,43,0.0 +14747,33,2.5,2,0.0 +14747,40,18.4,34,0.0 +14747,59,55,6,0.0 +14747,6,25,19,0.0 +14747,48,12.75,20,0.0 +14747,17,39,42,0.0 +14748,12,38,35,0.0 +14748,65,21.05,19,0.0 +14748,64,33.25,23,0.0 +14748,39,18,36,0.0 +14748,75,7.75,31,0.0 +14748,44,19.45,3,0.0 +14748,58,13.25,40,0.0 +14748,19,9.2,6,0.0 +14748,24,4.5,23,0.0 +14748,51,53,31,0.0 +14748,8,40,39,0.0 +14748,73,15,10,0.0 +14748,52,7,29,0.0 +14748,16,17.45,41,0.0 +14748,48,12.75,4,0.0 +14748,25,14,42,0.0 +14748,6,25,9,0.0 +14748,63,43.9,47,0.0 +14748,17,39,6,0.0 +14748,35,18,1,0.0 +14748,71,21.5,13,0.0 +14748,30,25.89,42,0.0 +14748,14,23.25,44,0.0 +14748,42,14,46,0.0 +14748,69,36,29,0.0 +14748,13,6,20,0.0 +14748,47,9.5,11,0.0 +14748,60,34,7,0.0 +14748,1,18,49,0.0 +14748,29,123.79,38,0.0 +14748,4,22,3,0.0 +14748,77,13,36,0.0 +14748,62,49.3,6,0.0 +14748,31,12.5,46,0.0 +14748,32,32,20,0.0 +14748,33,2.5,38,0.0 +14748,67,14,50,0.0 +14748,61,28.5,23,0.0 +14748,57,19.5,50,0.0 +14748,9,97,31,0.0 +14748,34,14,29,0.0 +14748,70,15,4,0.0 +14748,54,7.45,27,0.0 +14748,53,32.8,33,0.0 +14748,28,45.6,29,0.0 +14748,50,16.25,47,0.0 +14748,40,18.4,39,0.0 +14748,45,9.5,32,0.0 +14748,76,18,28,0.0 +14749,76,18,24,0.0 +14749,2,19,34,0.0 +14749,42,14,1,0.0 +14749,37,26,2,0.0 +14749,57,19.5,17,0.0 +14749,8,40,45,0.0 +14749,26,31.23,10,0.0 +14749,36,19,8,0.0 +14749,1,18,13,0.0 +14749,54,7.45,41,0.0 +14749,38,263.5,14,0.0 +14749,3,10,21,0.0 +14749,41,9.65,4,0.0 +14749,25,14,24,0.0 +14749,19,9.2,25,0.0 +14749,73,15,50,0.0 +14749,52,7,6,0.0 +14749,66,17,47,0.0 +14749,58,13.25,7,0.0 +14749,55,24,46,0.0 +14749,59,55,8,0.0 +14749,69,36,9,0.0 +14749,24,4.5,31,0.0 +14749,63,43.9,39,0.0 +14749,11,21,28,0.0 +14749,6,25,23,0.0 +14749,50,16.25,39,0.0 +14749,53,32.8,31,0.0 +14749,71,21.5,32,0.0 +14749,74,10,32,0.0 +14749,75,7.75,47,0.0 +14749,44,19.45,12,0.0 +14749,5,21.35,13,0.0 +14749,61,28.5,14,0.0 +14749,56,38,32,0.0 +14749,27,43.9,23,0.0 +14749,18,62.5,46,0.0 +14749,7,30,19,0.0 +14749,67,14,16,0.0 +14749,23,9,38,0.0 +14749,14,23.25,3,0.0 +14749,33,2.5,33,0.0 +14749,15,15.5,16,0.0 +14749,64,33.25,30,0.0 +14749,28,45.6,26,0.0 +14749,16,17.45,50,0.0 +14749,10,31,29,0.0 +14749,46,12,39,0.0 +14749,13,6,1,0.0 +14750,71,21.5,40,0.0 +14750,72,34.8,15,0.0 +14750,68,12.5,42,0.0 +14750,20,81,29,0.0 +14750,16,17.45,15,0.0 +14750,11,21,3,0.0 +14750,73,15,47,0.0 +14750,55,24,39,0.0 +14750,74,10,24,0.0 +14750,29,123.79,1,0.0 +14750,49,20,7,0.0 +14750,6,25,18,0.0 +14750,36,19,18,0.0 +14750,65,21.05,4,0.0 +14750,58,13.25,47,0.0 +14750,70,15,42,0.0 +14750,64,33.25,36,0.0 +14750,59,55,1,0.0 +14750,45,9.5,36,0.0 +14750,7,30,10,0.0 +14750,31,12.5,49,0.0 +14750,67,14,5,0.0 +14750,15,15.5,21,0.0 +14750,3,10,29,0.0 +14750,13,6,44,0.0 +14750,61,28.5,45,0.0 +14750,76,18,50,0.0 +14750,60,34,47,0.0 +14750,5,21.35,7,0.0 +14750,4,22,38,0.0 +14750,41,9.65,12,0.0 +14750,38,263.5,24,0.0 +14750,47,9.5,42,0.0 +14750,32,32,10,0.0 +14750,62,49.3,14,0.0 +14750,56,38,47,0.0 +14750,34,14,49,0.0 +14750,27,43.9,8,0.0 +14750,39,18,36,0.0 +14750,2,19,5,0.0 +14750,57,19.5,40,0.0 +14750,1,18,30,0.0 +14750,37,26,17,0.0 +14750,23,9,17,0.0 +14750,52,7,11,0.0 +14750,50,16.25,2,0.0 +14750,30,25.89,37,0.0 +14750,21,10,21,0.0 +14750,42,14,1,0.0 +14750,40,18.4,22,0.0 +14750,33,2.5,9,0.0 +14750,26,31.23,11,0.0 +14750,25,14,40,0.0 +14750,48,12.75,28,0.0 +14750,53,32.8,11,0.0 +14750,12,38,35,0.0 +14750,10,31,25,0.0 +14750,43,46,6,0.0 +14750,35,18,33,0.0 +14750,28,45.6,1,0.0 +14750,24,4.5,14,0.0 +14750,22,21,14,0.0 +14750,75,7.75,31,0.0 +14750,8,40,48,0.0 +14750,14,23.25,32,0.0 +14750,44,19.45,34,0.0 +14750,63,43.9,35,0.0 +14750,69,36,1,0.0 +14750,17,39,44,0.0 +14750,51,53,43,0.0 +14751,62,49.3,28,0.0 +14751,54,7.45,48,0.0 +14751,76,18,21,0.0 +14751,28,45.6,26,0.0 +14751,55,24,15,0.0 +14751,71,21.5,48,0.0 +14751,36,19,37,0.0 +14751,46,12,42,0.0 +14751,19,9.2,47,0.0 +14751,16,17.45,29,0.0 +14751,61,28.5,43,0.0 +14751,41,9.65,21,0.0 +14751,42,14,23,0.0 +14751,48,12.75,24,0.0 +14751,56,38,47,0.0 +14751,69,36,10,0.0 +14751,74,10,16,0.0 +14751,23,9,43,0.0 +14751,32,32,37,0.0 +14751,50,16.25,32,0.0 +14751,22,21,7,0.0 +14751,20,81,45,0.0 +14751,7,30,19,0.0 +14751,4,22,5,0.0 +14751,44,19.45,18,0.0 +14751,65,21.05,42,0.0 +14751,66,17,45,0.0 +14751,33,2.5,25,0.0 +14751,26,31.23,9,0.0 +14751,8,40,12,0.0 +14751,37,26,29,0.0 +14751,47,9.5,12,0.0 +14751,67,14,15,0.0 +14751,64,33.25,5,0.0 +14751,63,43.9,46,0.0 +14751,12,38,8,0.0 +14751,10,31,1,0.0 +14751,30,25.89,3,0.0 +14751,29,123.79,46,0.0 +14751,6,25,33,0.0 +14751,1,18,31,0.0 +14751,31,12.5,8,0.0 +14751,73,15,31,0.0 +14751,11,21,7,0.0 +14751,38,263.5,13,0.0 +14751,49,20,50,0.0 +14751,40,18.4,2,0.0 +14751,21,10,5,0.0 +14751,24,4.5,2,0.0 +14751,34,14,10,0.0 +14751,59,55,1,0.0 +14751,70,15,35,0.0 +14751,39,18,27,0.0 +14751,43,46,23,0.0 +14751,14,23.25,16,0.0 +14751,35,18,37,0.0 +14751,18,62.5,3,0.0 +14751,13,6,11,0.0 +14751,17,39,21,0.0 +14751,72,34.8,25,0.0 +14751,60,34,45,0.0 +14751,77,13,24,0.0 +14751,3,10,26,0.0 +14751,57,19.5,3,0.0 +14751,53,32.8,4,0.0 +14751,27,43.9,34,0.0 +14751,9,97,35,0.0 +14751,75,7.75,39,0.0 +14751,68,12.5,44,0.0 +14751,52,7,33,0.0 +14752,35,18,5,0.0 +14752,49,20,50,0.0 +14752,75,7.75,34,0.0 +14752,74,10,46,0.0 +14752,41,9.65,40,0.0 +14752,44,19.45,46,0.0 +14752,43,46,18,0.0 +14752,62,49.3,17,0.0 +14752,48,12.75,41,0.0 +14752,67,14,30,0.0 +14753,6,25,48,0.0 +14753,72,34.8,20,0.0 +14753,48,12.75,38,0.0 +14753,24,4.5,17,0.0 +14753,75,7.75,43,0.0 +14753,14,23.25,27,0.0 +14753,69,36,2,0.0 +14753,32,32,21,0.0 +14753,34,14,20,0.0 +14753,50,16.25,16,0.0 +14753,67,14,47,0.0 +14754,28,45.6,14,0.0 +14754,1,18,5,0.0 +14754,25,14,49,0.0 +14754,6,25,5,0.0 +14754,9,97,23,0.0 +14754,26,31.23,8,0.0 +14754,27,43.9,34,0.0 +14754,17,39,17,0.0 +14754,62,49.3,5,0.0 +14754,77,13,24,0.0 +14754,55,24,15,0.0 +14754,49,20,27,0.0 +14754,37,26,38,0.0 +14754,4,22,23,0.0 +14754,23,9,30,0.0 +14754,41,9.65,26,0.0 +14754,5,21.35,17,0.0 +14754,59,55,45,0.0 +14754,53,32.8,39,0.0 +14754,12,38,32,0.0 +14754,69,36,6,0.0 +14754,61,28.5,26,0.0 +14754,43,46,24,0.0 +14754,42,14,18,0.0 +14754,16,17.45,24,0.0 +14754,45,9.5,13,0.0 +14754,70,15,3,0.0 +14754,65,21.05,28,0.0 +14754,39,18,21,0.0 +14754,54,7.45,17,0.0 +14754,18,62.5,33,0.0 +14754,10,31,7,0.0 +14754,22,21,1,0.0 +14754,11,21,29,0.0 +14754,60,34,33,0.0 +14754,68,12.5,44,0.0 +14754,48,12.75,11,0.0 +14754,32,32,27,0.0 +14754,76,18,16,0.0 +14754,74,10,25,0.0 +14754,19,9.2,50,0.0 +14755,5,21.35,39,0.0 +14755,33,2.5,10,0.0 +14755,60,34,17,0.0 +14755,59,55,36,0.0 +14755,62,49.3,9,0.0 +14755,11,21,28,0.0 +14755,27,43.9,36,0.0 +14755,49,20,22,0.0 +14755,20,81,17,0.0 +14755,42,14,5,0.0 +14755,38,263.5,32,0.0 +14755,18,62.5,49,0.0 +14755,77,13,39,0.0 +14755,25,14,19,0.0 +14755,41,9.65,16,0.0 +14755,34,14,49,0.0 +14755,63,43.9,29,0.0 +14755,24,4.5,42,0.0 +14755,23,9,37,0.0 +14755,46,12,5,0.0 +14755,73,15,42,0.0 +14755,32,32,33,0.0 +14755,56,38,4,0.0 +14755,66,17,12,0.0 +14755,40,18.4,17,0.0 +14755,16,17.45,27,0.0 +14755,8,40,37,0.0 +14755,9,97,43,0.0 +14755,6,25,14,0.0 +14755,75,7.75,23,0.0 +14755,29,123.79,38,0.0 +14755,57,19.5,2,0.0 +14755,3,10,12,0.0 +14755,48,12.75,11,0.0 +14755,4,22,28,0.0 +14755,52,7,12,0.0 +14755,1,18,40,0.0 +14755,55,24,12,0.0 +14755,13,6,25,0.0 +14755,26,31.23,46,0.0 +14755,61,28.5,47,0.0 +14755,22,21,30,0.0 +14755,69,36,41,0.0 +14755,74,10,33,0.0 +14755,2,19,25,0.0 +14755,21,10,39,0.0 +14755,71,21.5,50,0.0 +14755,14,23.25,41,0.0 +14755,15,15.5,1,0.0 +14755,70,15,35,0.0 +14755,43,46,15,0.0 +14755,36,19,5,0.0 +14755,17,39,4,0.0 +14755,72,34.8,8,0.0 +14755,45,9.5,45,0.0 +14755,12,38,18,0.0 +14756,10,31,14,0.0 +14756,51,53,37,0.0 +14756,47,9.5,50,0.0 +14756,12,38,27,0.0 +14756,32,32,15,0.0 +14756,62,49.3,31,0.0 +14756,54,7.45,28,0.0 +14756,37,26,29,0.0 +14756,22,21,9,0.0 +14756,39,18,5,0.0 +14756,42,14,9,0.0 +14756,66,17,12,0.0 +14756,63,43.9,29,0.0 +14756,64,33.25,40,0.0 +14756,72,34.8,36,0.0 +14756,24,4.5,16,0.0 +14756,14,23.25,12,0.0 +14756,76,18,18,0.0 +14756,19,9.2,34,0.0 +14756,49,20,7,0.0 +14756,2,19,48,0.0 +14756,6,25,3,0.0 +14756,15,15.5,13,0.0 +14756,52,7,1,0.0 +14756,65,21.05,18,0.0 +14756,11,21,28,0.0 +14756,18,62.5,35,0.0 +14756,40,18.4,8,0.0 +14756,43,46,10,0.0 +14756,20,81,3,0.0 +14756,60,34,41,0.0 +14756,5,21.35,4,0.0 +14756,44,19.45,31,0.0 +14756,17,39,29,0.0 +14756,55,24,28,0.0 +14756,36,19,14,0.0 +14756,1,18,34,0.0 +14756,31,12.5,3,0.0 +14756,59,55,17,0.0 +14756,45,9.5,42,0.0 +14756,48,12.75,30,0.0 +14756,61,28.5,25,0.0 +14756,70,15,44,0.0 +14756,8,40,35,0.0 +14756,69,36,27,0.0 +14756,67,14,44,0.0 +14756,34,14,46,0.0 +14756,58,13.25,49,0.0 +14756,41,9.65,36,0.0 +14756,7,30,11,0.0 +14756,75,7.75,37,0.0 +14756,13,6,2,0.0 +14756,30,25.89,7,0.0 +14756,23,9,1,0.0 +14756,77,13,30,0.0 +14757,55,24,50,0.0 +14757,63,43.9,32,0.0 +14757,7,30,21,0.0 +14757,43,46,47,0.0 +14757,66,17,20,0.0 +14757,45,9.5,45,0.0 +14757,1,18,1,0.0 +14757,47,9.5,12,0.0 +14757,27,43.9,34,0.0 +14757,20,81,8,0.0 +14757,41,9.65,12,0.0 +14757,38,263.5,12,0.0 +14757,17,39,8,0.0 +14757,52,7,16,0.0 +14757,74,10,47,0.0 +14757,72,34.8,14,0.0 +14757,58,13.25,8,0.0 +14757,44,19.45,17,0.0 +14757,16,17.45,30,0.0 +14757,4,22,8,0.0 +14757,5,21.35,44,0.0 +14757,6,25,49,0.0 +14757,33,2.5,43,0.0 +14757,24,4.5,25,0.0 +14757,73,15,15,0.0 +14757,34,14,24,0.0 +14757,57,19.5,5,0.0 +14757,2,19,20,0.0 +14757,36,19,21,0.0 +14757,3,10,39,0.0 +14757,59,55,41,0.0 +14757,14,23.25,23,0.0 +14757,39,18,28,0.0 +14757,65,21.05,14,0.0 +14757,28,45.6,13,0.0 +14757,70,15,34,0.0 +14757,10,31,20,0.0 +14757,31,12.5,1,0.0 +14757,51,53,3,0.0 +14757,69,36,5,0.0 +14757,13,6,2,0.0 +14757,29,123.79,20,0.0 +14757,62,49.3,39,0.0 +14757,23,9,24,0.0 +14757,61,28.5,34,0.0 +14757,40,18.4,14,0.0 +14757,50,16.25,19,0.0 +14757,18,62.5,38,0.0 +14757,71,21.5,31,0.0 +14757,64,33.25,3,0.0 +14757,75,7.75,44,0.0 +14757,8,40,1,0.0 +14757,37,26,34,0.0 +14757,46,12,5,0.0 +14757,11,21,44,0.0 +14757,32,32,44,0.0 +14757,15,15.5,45,0.0 +14757,48,12.75,3,0.0 +14757,26,31.23,43,0.0 +14757,53,32.8,31,0.0 +14758,4,22,36,0.0 +14758,53,32.8,16,0.0 +14758,9,97,13,0.0 +14758,24,4.5,38,0.0 +14758,29,123.79,1,0.0 +14758,11,21,26,0.0 +14758,32,32,37,0.0 +14758,51,53,33,0.0 +14758,58,13.25,48,0.0 +14758,33,2.5,50,0.0 +14758,59,55,2,0.0 +14758,62,49.3,35,0.0 +14758,27,43.9,24,0.0 +14758,17,39,32,0.0 +14758,3,10,35,0.0 +14758,12,38,46,0.0 +14758,70,15,15,0.0 +14758,16,17.45,44,0.0 +14758,49,20,15,0.0 +14758,47,9.5,40,0.0 +14758,38,263.5,49,0.0 +14758,74,10,9,0.0 +14758,31,12.5,17,0.0 +14758,42,14,32,0.0 +14758,25,14,29,0.0 +14758,14,23.25,10,0.0 +14758,72,34.8,49,0.0 +14758,64,33.25,33,0.0 +14758,40,18.4,24,0.0 +14758,39,18,11,0.0 +14758,19,9.2,46,0.0 +14758,61,28.5,24,0.0 +14758,63,43.9,50,0.0 +14758,37,26,23,0.0 +14758,54,7.45,30,0.0 +14758,18,62.5,39,0.0 +14758,22,21,26,0.0 +14758,65,21.05,26,0.0 +14758,50,16.25,27,0.0 +14758,55,24,41,0.0 +14758,5,21.35,7,0.0 +14758,45,9.5,22,0.0 +14758,21,10,22,0.0 +14758,57,19.5,20,0.0 +14758,8,40,3,0.0 +14758,69,36,33,0.0 +14758,35,18,28,0.0 +14758,30,25.89,10,0.0 +14758,7,30,45,0.0 +14758,23,9,34,0.0 +14758,67,14,28,0.0 +14758,68,12.5,11,0.0 +14758,26,31.23,44,0.0 +14758,13,6,1,0.0 +14758,1,18,11,0.0 +14758,41,9.65,7,0.0 +14758,43,46,29,0.0 +14758,28,45.6,35,0.0 +14758,66,17,47,0.0 +14758,76,18,17,0.0 +14758,60,34,24,0.0 +14758,52,7,44,0.0 +14758,34,14,13,0.0 +14758,6,25,26,0.0 +14758,10,31,29,0.0 +14758,71,21.5,34,0.0 +14758,56,38,37,0.0 +14758,2,19,11,0.0 +14758,48,12.75,28,0.0 +14758,77,13,49,0.0 +14758,44,19.45,17,0.0 +14758,15,15.5,41,0.0 +14758,75,7.75,50,0.0 +14758,36,19,5,0.0 +14758,73,15,41,0.0 +14758,20,81,33,0.0 +14759,16,17.45,30,0.0 +14759,59,55,50,0.0 +14759,68,12.5,22,0.0 +14759,41,9.65,41,0.0 +14759,73,15,1,0.0 +14759,65,21.05,35,0.0 +14759,14,23.25,41,0.0 +14759,2,19,26,0.0 +14759,19,9.2,50,0.0 +14759,66,17,18,0.0 +14759,57,19.5,30,0.0 +14759,32,32,38,0.0 +14759,67,14,24,0.0 +14759,39,18,13,0.0 +14759,64,33.25,10,0.0 +14759,42,14,18,0.0 +14759,6,25,19,0.0 +14759,55,24,25,0.0 +14759,54,7.45,41,0.0 +14759,76,18,43,0.0 +14759,5,21.35,42,0.0 +14759,1,18,31,0.0 +14759,27,43.9,13,0.0 +14759,9,97,29,0.0 +14759,72,34.8,34,0.0 +14759,21,10,14,0.0 +14759,50,16.25,11,0.0 +14759,3,10,6,0.0 +14759,49,20,4,0.0 +14759,53,32.8,31,0.0 +14759,38,263.5,12,0.0 +14759,70,15,17,0.0 +14759,26,31.23,11,0.0 +14759,40,18.4,23,0.0 +14759,36,19,12,0.0 +14759,77,13,41,0.0 +14759,61,28.5,43,0.0 +14759,33,2.5,19,0.0 +14760,72,34.8,21,0.0 +14760,17,39,6,0.0 +14760,29,123.79,38,0.0 +14760,39,18,37,0.0 +14760,75,7.75,25,0.0 +14760,70,15,47,0.0 +14760,49,20,28,0.0 +14760,10,31,4,0.0 +14760,53,32.8,35,0.0 +14760,3,10,7,0.0 +14760,13,6,17,0.0 +14760,76,18,6,0.0 +14760,66,17,1,0.0 +14760,36,19,21,0.0 +14760,30,25.89,29,0.0 +14760,11,21,46,0.0 +14760,40,18.4,38,0.0 +14760,50,16.25,22,0.0 +14760,48,12.75,29,0.0 +14760,21,10,7,0.0 +14760,64,33.25,19,0.0 +14760,27,43.9,23,0.0 +14760,14,23.25,30,0.0 +14760,33,2.5,30,0.0 +14760,9,97,21,0.0 +14760,4,22,7,0.0 +14760,59,55,9,0.0 +14760,47,9.5,17,0.0 +14760,38,263.5,36,0.0 +14760,6,25,23,0.0 +14760,58,13.25,4,0.0 +14760,60,34,28,0.0 +14760,18,62.5,42,0.0 +14760,15,15.5,13,0.0 +14760,28,45.6,14,0.0 +14760,73,15,29,0.0 +14760,55,24,9,0.0 +14760,68,12.5,33,0.0 +14760,54,7.45,16,0.0 +14760,45,9.5,40,0.0 +14760,52,7,36,0.0 +14760,41,9.65,33,0.0 +14760,31,12.5,31,0.0 +14761,20,81,14,0.0 +14761,42,14,42,0.0 +14761,15,15.5,47,0.0 +14761,75,7.75,39,0.0 +14761,62,49.3,11,0.0 +14761,60,34,7,0.0 +14761,56,38,8,0.0 +14761,74,10,19,0.0 +14761,49,20,48,0.0 +14761,41,9.65,41,0.0 +14761,8,40,46,0.0 +14761,76,18,44,0.0 +14761,48,12.75,32,0.0 +14761,7,30,8,0.0 +14761,10,31,16,0.0 +14761,16,17.45,18,0.0 +14761,36,19,24,0.0 +14761,12,38,35,0.0 +14761,24,4.5,10,0.0 +14761,73,15,3,0.0 +14761,14,23.25,20,0.0 +14761,33,2.5,29,0.0 +14761,69,36,17,0.0 +14761,28,45.6,20,0.0 +14761,71,21.5,11,0.0 +14761,22,21,47,0.0 +14761,38,263.5,14,0.0 +14761,30,25.89,49,0.0 +14761,19,9.2,24,0.0 +14761,5,21.35,32,0.0 +14761,18,62.5,46,0.0 +14761,4,22,46,0.0 +14761,45,9.5,35,0.0 +14761,44,19.45,50,0.0 +14761,23,9,15,0.0 +14761,55,24,11,0.0 +14761,39,18,5,0.0 +14761,37,26,20,0.0 +14761,34,14,38,0.0 +14761,25,14,2,0.0 +14761,27,43.9,27,0.0 +14761,43,46,8,0.0 +14761,50,16.25,30,0.0 +14761,57,19.5,5,0.0 +14761,1,18,9,0.0 +14761,17,39,48,0.0 +14761,9,97,18,0.0 +14761,77,13,17,0.0 +14761,11,21,23,0.0 +14761,47,9.5,19,0.0 +14761,67,14,19,0.0 +14761,35,18,41,0.0 +14761,31,12.5,21,0.0 +14761,58,13.25,44,0.0 +14761,32,32,17,0.0 +14761,51,53,42,0.0 +14761,21,10,6,0.0 +14761,3,10,6,0.0 +14762,60,34,19,0.0 +14762,35,18,34,0.0 +14762,22,21,36,0.0 +14762,33,2.5,2,0.0 +14762,41,9.65,17,0.0 +14762,38,263.5,46,0.0 +14762,31,12.5,20,0.0 +14762,59,55,38,0.0 +14762,14,23.25,50,0.0 +14762,17,39,49,0.0 +14762,54,7.45,40,0.0 +14762,64,33.25,38,0.0 +14762,8,40,13,0.0 +14762,40,18.4,16,0.0 +14762,65,21.05,18,0.0 +14762,18,62.5,43,0.0 +14762,9,97,45,0.0 +14762,43,46,3,0.0 +14762,55,24,29,0.0 +14762,75,7.75,47,0.0 +14762,25,14,2,0.0 +14762,36,19,16,0.0 +14762,26,31.23,24,0.0 +14762,53,32.8,3,0.0 +14762,56,38,13,0.0 +14762,77,13,43,0.0 +14762,44,19.45,43,0.0 +14762,34,14,39,0.0 +14762,51,53,17,0.0 +14762,63,43.9,31,0.0 +14762,32,32,24,0.0 +14762,49,20,14,0.0 +14762,48,12.75,10,0.0 +14762,76,18,32,0.0 +14762,23,9,16,0.0 +14762,11,21,8,0.0 +14762,27,43.9,21,0.0 +14762,16,17.45,21,0.0 +14762,62,49.3,32,0.0 +14762,74,10,34,0.0 +14762,42,14,11,0.0 +14762,5,21.35,6,0.0 +14762,46,12,19,0.0 +14763,51,53,7,0.0 +14763,28,45.6,4,0.0 +14763,75,7.75,38,0.0 +14763,20,81,16,0.0 +14763,44,19.45,27,0.0 +14763,9,97,36,0.0 +14763,49,20,32,0.0 +14763,30,25.89,34,0.0 +14763,37,26,35,0.0 +14763,11,21,34,0.0 +14763,6,25,45,0.0 +14763,43,46,25,0.0 +14763,27,43.9,39,0.0 +14763,71,21.5,49,0.0 +14763,70,15,45,0.0 +14763,40,18.4,32,0.0 +14763,35,18,46,0.0 +14763,1,18,22,0.0 +14763,72,34.8,16,0.0 +14763,54,7.45,27,0.0 +14763,22,21,49,0.0 +14763,74,10,31,0.0 +14763,63,43.9,14,0.0 +14763,3,10,15,0.0 +14763,68,12.5,25,0.0 +14763,25,14,14,0.0 +14763,18,62.5,50,0.0 +14763,48,12.75,39,0.0 +14763,67,14,28,0.0 +14763,39,18,49,0.0 +14763,33,2.5,47,0.0 +14763,50,16.25,40,0.0 +14763,61,28.5,50,0.0 +14763,29,123.79,29,0.0 +14763,65,21.05,41,0.0 +14763,38,263.5,47,0.0 +14763,62,49.3,42,0.0 +14763,23,9,29,0.0 +14763,69,36,24,0.0 +14763,26,31.23,12,0.0 +14763,10,31,38,0.0 +14763,46,12,17,0.0 +14763,41,9.65,22,0.0 +14763,42,14,25,0.0 +14763,15,15.5,25,0.0 +14763,13,6,17,0.0 +14763,57,19.5,26,0.0 +14763,52,7,10,0.0 +14763,7,30,25,0.0 +14763,19,9.2,41,0.0 +14763,60,34,9,0.0 +14763,4,22,49,0.0 +14763,55,24,39,0.0 +14763,32,32,12,0.0 +14763,53,32.8,38,0.0 +14763,21,10,25,0.0 +14763,66,17,27,0.0 +14764,50,16.25,48,0.0 +14764,5,21.35,32,0.0 +14764,16,17.45,3,0.0 +14764,62,49.3,27,0.0 +14764,22,21,38,0.0 +14764,25,14,49,0.0 +14764,21,10,6,0.0 +14764,26,31.23,39,0.0 +14764,32,32,23,0.0 +14764,57,19.5,35,0.0 +14764,39,18,30,0.0 +14764,11,21,38,0.0 +14764,20,81,35,0.0 +14764,66,17,12,0.0 +14764,6,25,37,0.0 +14764,4,22,46,0.0 +14764,3,10,49,0.0 +14764,40,18.4,43,0.0 +14764,36,19,47,0.0 +14764,68,12.5,31,0.0 +14764,8,40,41,0.0 +14764,7,30,10,0.0 +14764,42,14,43,0.0 +14764,17,39,43,0.0 +14764,47,9.5,48,0.0 +14764,60,34,12,0.0 +14764,45,9.5,13,0.0 +14764,49,20,37,0.0 +14764,63,43.9,23,0.0 +14764,48,12.75,46,0.0 +14764,51,53,21,0.0 +14764,58,13.25,21,0.0 +14764,71,21.5,22,0.0 +14764,10,31,44,0.0 +14764,2,19,36,0.0 +14764,74,10,44,0.0 +14764,77,13,9,0.0 +14764,53,32.8,38,0.0 +14764,72,34.8,33,0.0 +14764,30,25.89,41,0.0 +14764,43,46,47,0.0 +14764,1,18,8,0.0 +14764,31,12.5,20,0.0 +14764,76,18,24,0.0 +14764,12,38,13,0.0 +14764,46,12,25,0.0 +14764,52,7,14,0.0 +14764,27,43.9,4,0.0 +14764,19,9.2,11,0.0 +14764,33,2.5,21,0.0 +14764,75,7.75,32,0.0 +14764,61,28.5,28,0.0 +14764,14,23.25,17,0.0 +14764,35,18,11,0.0 +14765,11,21,12,0.0 +14765,66,17,5,0.0 +14765,76,18,41,0.0 +14765,50,16.25,49,0.0 +14765,59,55,42,0.0 +14765,10,31,13,0.0 +14765,74,10,29,0.0 +14765,41,9.65,40,0.0 +14765,53,32.8,48,0.0 +14765,73,15,1,0.0 +14765,1,18,49,0.0 +14765,14,23.25,21,0.0 +14765,39,18,10,0.0 +14765,27,43.9,21,0.0 +14765,25,14,48,0.0 +14765,45,9.5,14,0.0 +14765,3,10,22,0.0 +14765,71,21.5,33,0.0 +14765,48,12.75,28,0.0 +14765,64,33.25,29,0.0 +14765,35,18,29,0.0 +14765,12,38,1,0.0 +14765,33,2.5,11,0.0 +14765,61,28.5,7,0.0 +14765,51,53,17,0.0 +14765,40,18.4,31,0.0 +14765,36,19,27,0.0 +14765,70,15,17,0.0 +14765,31,12.5,14,0.0 +14765,63,43.9,31,0.0 +14765,23,9,10,0.0 +14765,13,6,30,0.0 +14765,49,20,21,0.0 +14765,37,26,17,0.0 +14765,2,19,29,0.0 +14765,69,36,16,0.0 +14765,55,24,23,0.0 +14765,6,25,33,0.0 +14765,72,34.8,3,0.0 +14765,8,40,20,0.0 +14765,68,12.5,24,0.0 +14765,62,49.3,12,0.0 +14765,15,15.5,9,0.0 +14765,65,21.05,36,0.0 +14765,54,7.45,35,0.0 +14765,60,34,50,0.0 +14765,32,32,48,0.0 +14765,38,263.5,18,0.0 +14765,26,31.23,49,0.0 +14766,44,19.45,43,0.0 +14766,14,23.25,1,0.0 +14766,70,15,39,0.0 +14766,32,32,7,0.0 +14766,48,12.75,16,0.0 +14766,15,15.5,24,0.0 +14766,38,263.5,22,0.0 +14767,28,45.6,28,0.0 +14767,1,18,39,0.0 +14767,11,21,4,0.0 +14767,8,40,5,0.0 +14767,14,23.25,49,0.0 +14767,5,21.35,36,0.0 +14767,24,4.5,43,0.0 +14767,60,34,5,0.0 +14767,46,12,37,0.0 +14767,18,62.5,41,0.0 +14767,44,19.45,2,0.0 +14767,55,24,23,0.0 +14767,37,26,23,0.0 +14767,49,20,34,0.0 +14767,13,6,30,0.0 +14767,17,39,42,0.0 +14767,12,38,12,0.0 +14767,23,9,43,0.0 +14767,32,32,1,0.0 +14767,36,19,29,0.0 +14767,61,28.5,17,0.0 +14767,57,19.5,50,0.0 +14767,26,31.23,21,0.0 +14767,9,97,13,0.0 +14767,25,14,25,0.0 +14767,47,9.5,30,0.0 +14767,38,263.5,8,0.0 +14767,76,18,17,0.0 +14767,67,14,50,0.0 +14767,72,34.8,14,0.0 +14767,7,30,44,0.0 +14767,34,14,23,0.0 +14767,59,55,20,0.0 +14767,50,16.25,38,0.0 +14767,39,18,8,0.0 +14767,77,13,41,0.0 +14767,31,12.5,20,0.0 +14767,74,10,21,0.0 +14767,65,21.05,19,0.0 +14767,70,15,25,0.0 +14767,10,31,44,0.0 +14767,3,10,15,0.0 +14767,66,17,1,0.0 +14767,73,15,30,0.0 +14767,51,53,41,0.0 +14767,20,81,15,0.0 +14767,53,32.8,48,0.0 +14767,64,33.25,1,0.0 +14767,16,17.45,24,0.0 +14767,21,10,44,0.0 +14767,22,21,10,0.0 +14767,45,9.5,19,0.0 +14767,75,7.75,23,0.0 +14767,62,49.3,11,0.0 +14767,2,19,47,0.0 +14767,19,9.2,20,0.0 +14767,71,21.5,31,0.0 +14767,41,9.65,18,0.0 +14767,58,13.25,40,0.0 +14767,42,14,3,0.0 +14767,15,15.5,20,0.0 +14767,4,22,28,0.0 +14767,30,25.89,30,0.0 +14767,63,43.9,47,0.0 +14767,27,43.9,8,0.0 +14767,40,18.4,37,0.0 +14767,33,2.5,44,0.0 +14767,43,46,45,0.0 +14767,54,7.45,9,0.0 +14767,29,123.79,44,0.0 +14767,48,12.75,22,0.0 +14768,11,21,25,0.0 +14768,57,19.5,27,0.0 +14768,39,18,46,0.0 +14768,73,15,27,0.0 +14768,8,40,48,0.0 +14768,68,12.5,33,0.0 +14768,54,7.45,12,0.0 +14768,34,14,16,0.0 +14768,55,24,12,0.0 +14768,7,30,38,0.0 +14768,77,13,31,0.0 +14768,74,10,22,0.0 +14768,66,17,28,0.0 +14768,47,9.5,16,0.0 +14768,28,45.6,41,0.0 +14768,27,43.9,24,0.0 +14768,72,34.8,49,0.0 +14768,21,10,50,0.0 +14768,40,18.4,29,0.0 +14768,22,21,14,0.0 +14768,35,18,17,0.0 +14768,29,123.79,43,0.0 +14768,17,39,20,0.0 +14768,13,6,12,0.0 +14768,45,9.5,24,0.0 +14768,4,22,17,0.0 +14768,50,16.25,47,0.0 +14768,6,25,26,0.0 +14768,15,15.5,36,0.0 +14768,18,62.5,43,0.0 +14768,75,7.75,25,0.0 +14768,49,20,21,0.0 +14768,46,12,2,0.0 +14768,65,21.05,4,0.0 +14768,60,34,22,0.0 +14768,25,14,32,0.0 +14768,63,43.9,35,0.0 +14768,32,32,18,0.0 +14768,31,12.5,8,0.0 +14768,52,7,33,0.0 +14768,23,9,21,0.0 +14768,53,32.8,10,0.0 +14768,2,19,29,0.0 +14768,42,14,16,0.0 +14768,59,55,6,0.0 +14768,12,38,23,0.0 +14768,62,49.3,49,0.0 +14768,24,4.5,50,0.0 +14768,41,9.65,32,0.0 +14768,43,46,18,0.0 +14768,76,18,48,0.0 +14768,26,31.23,38,0.0 +14768,38,263.5,25,0.0 +14768,14,23.25,34,0.0 +14769,13,6,24,0.0 +14769,47,9.5,32,0.0 +14769,52,7,8,0.0 +14769,46,12,46,0.0 +14769,62,49.3,41,0.0 +14769,17,39,15,0.0 +14769,41,9.65,39,0.0 +14769,65,21.05,28,0.0 +14769,11,21,42,0.0 +14769,58,13.25,8,0.0 +14769,67,14,21,0.0 +14769,55,24,7,0.0 +14769,57,19.5,17,0.0 +14769,77,13,14,0.0 +14769,56,38,36,0.0 +14769,70,15,42,0.0 +14769,36,19,6,0.0 +14769,10,31,16,0.0 +14769,50,16.25,18,0.0 +14769,21,10,5,0.0 +14769,76,18,28,0.0 +14769,38,263.5,34,0.0 +14769,34,14,33,0.0 +14769,23,9,27,0.0 +14769,64,33.25,5,0.0 +14769,45,9.5,22,0.0 +14769,19,9.2,33,0.0 +14769,53,32.8,25,0.0 +14769,25,14,1,0.0 +14769,63,43.9,47,0.0 +14769,2,19,12,0.0 +14769,75,7.75,38,0.0 +14769,59,55,44,0.0 +14769,40,18.4,19,0.0 +14769,43,46,37,0.0 +14769,31,12.5,43,0.0 +14769,20,81,31,0.0 +14769,9,97,38,0.0 +14769,44,19.45,17,0.0 +14769,69,36,32,0.0 +14769,15,15.5,38,0.0 +14769,30,25.89,42,0.0 +14769,3,10,18,0.0 +14769,4,22,5,0.0 +14769,37,26,7,0.0 +14769,26,31.23,11,0.0 +14769,28,45.6,39,0.0 +14769,61,28.5,31,0.0 +14769,5,21.35,39,0.0 +14769,68,12.5,8,0.0 +14769,1,18,9,0.0 +14769,71,21.5,22,0.0 +14769,51,53,25,0.0 +14769,12,38,31,0.0 +14769,27,43.9,29,0.0 +14769,39,18,15,0.0 +14769,6,25,45,0.0 +14769,29,123.79,29,0.0 +14769,60,34,17,0.0 +14769,33,2.5,48,0.0 +14769,35,18,24,0.0 +14769,14,23.25,30,0.0 +14769,8,40,24,0.0 +14769,49,20,24,0.0 +14769,66,17,32,0.0 +14769,42,14,15,0.0 +14769,22,21,20,0.0 +14769,32,32,19,0.0 +14769,54,7.45,15,0.0 +14770,7,30,10,0.0 +14770,58,13.25,32,0.0 +14770,24,4.5,27,0.0 +14770,22,21,19,0.0 +14770,46,12,3,0.0 +14770,61,28.5,48,0.0 +14770,71,21.5,46,0.0 +14770,28,45.6,49,0.0 +14770,18,62.5,37,0.0 +14770,70,15,31,0.0 +14770,59,55,34,0.0 +14770,69,36,6,0.0 +14770,36,19,49,0.0 +14770,49,20,9,0.0 +14770,64,33.25,18,0.0 +14770,14,23.25,23,0.0 +14770,77,13,48,0.0 +14770,20,81,50,0.0 +14770,1,18,26,0.0 +14770,75,7.75,18,0.0 +14770,62,49.3,22,0.0 +14770,72,34.8,4,0.0 +14770,31,12.5,22,0.0 +14770,40,18.4,12,0.0 +14770,45,9.5,34,0.0 +14770,67,14,9,0.0 +14770,29,123.79,5,0.0 +14770,2,19,21,0.0 +14770,35,18,20,0.0 +14770,21,10,46,0.0 +14770,26,31.23,28,0.0 +14770,10,31,2,0.0 +14770,27,43.9,9,0.0 +14770,12,38,39,0.0 +14770,74,10,45,0.0 +14770,11,21,1,0.0 +14770,42,14,45,0.0 +14770,5,21.35,23,0.0 +14771,1,18,30,0.0 +14771,32,32,45,0.0 +14771,22,21,28,0.0 +14771,17,39,5,0.0 +14771,24,4.5,32,0.0 +14771,37,26,37,0.0 +14771,46,12,45,0.0 +14771,41,9.65,48,0.0 +14771,68,12.5,26,0.0 +14771,43,46,26,0.0 +14771,35,18,15,0.0 +14771,16,17.45,14,0.0 +14771,38,263.5,38,0.0 +14771,25,14,25,0.0 +14771,45,9.5,39,0.0 +14771,33,2.5,26,0.0 +14771,48,12.75,39,0.0 +14771,42,14,6,0.0 +14771,58,13.25,39,0.0 +14771,69,36,3,0.0 +14771,66,17,41,0.0 +14771,71,21.5,40,0.0 +14772,73,15,3,0.0 +14772,2,19,28,0.0 +14772,58,13.25,31,0.0 +14772,17,39,49,0.0 +14772,77,13,13,0.0 +14772,13,6,21,0.0 +14772,26,31.23,7,0.0 +14772,6,25,38,0.0 +14772,63,43.9,4,0.0 +14772,51,53,46,0.0 +14772,16,17.45,50,0.0 +14772,46,12,14,0.0 +14772,44,19.45,47,0.0 +14772,52,7,49,0.0 +14772,72,34.8,30,0.0 +14772,59,55,1,0.0 +14772,40,18.4,44,0.0 +14772,61,28.5,20,0.0 +14772,74,10,8,0.0 +14772,45,9.5,22,0.0 +14772,25,14,18,0.0 +14772,41,9.65,31,0.0 +14772,20,81,15,0.0 +14772,37,26,7,0.0 +14772,5,21.35,30,0.0 +14772,30,25.89,39,0.0 +14772,43,46,27,0.0 +14772,12,38,40,0.0 +14772,23,9,43,0.0 +14772,31,12.5,1,0.0 +14772,11,21,50,0.0 +14772,35,18,9,0.0 +14772,3,10,24,0.0 +14772,67,14,34,0.0 +14772,47,9.5,29,0.0 +14772,75,7.75,4,0.0 +14772,70,15,1,0.0 +14772,33,2.5,9,0.0 +14772,7,30,8,0.0 +14772,27,43.9,15,0.0 +14772,34,14,17,0.0 +14772,54,7.45,29,0.0 +14772,9,97,40,0.0 +14772,19,9.2,28,0.0 +14772,18,62.5,16,0.0 +14772,10,31,11,0.0 +14772,38,263.5,42,0.0 +14773,73,15,19,0.0 +14773,44,19.45,46,0.0 +14773,55,24,42,0.0 +14773,65,21.05,48,0.0 +14773,11,21,47,0.0 +14773,12,38,38,0.0 +14773,36,19,30,0.0 +14773,27,43.9,29,0.0 +14773,71,21.5,50,0.0 +14773,14,23.25,10,0.0 +14773,7,30,34,0.0 +14773,29,123.79,36,0.0 +14773,22,21,22,0.0 +14773,64,33.25,29,0.0 +14773,24,4.5,14,0.0 +14773,35,18,41,0.0 +14773,15,15.5,2,0.0 +14773,2,19,26,0.0 +14773,25,14,3,0.0 +14773,23,9,49,0.0 +14773,48,12.75,33,0.0 +14773,63,43.9,43,0.0 +14773,67,14,50,0.0 +14774,50,16.25,23,0.0 +14774,40,18.4,14,0.0 +14774,77,13,38,0.0 +14774,52,7,6,0.0 +14774,56,38,6,0.0 +14774,44,19.45,26,0.0 +14774,59,55,39,0.0 +14774,51,53,7,0.0 +14774,58,13.25,4,0.0 +14774,28,45.6,10,0.0 +14774,47,9.5,16,0.0 +14774,61,28.5,45,0.0 +14774,71,21.5,36,0.0 +14774,68,12.5,32,0.0 +14774,48,12.75,35,0.0 +14774,18,62.5,29,0.0 +14774,8,40,10,0.0 +14774,53,32.8,27,0.0 +14774,45,9.5,17,0.0 +14774,37,26,11,0.0 +14774,39,18,47,0.0 +14774,69,36,41,0.0 +14774,3,10,2,0.0 +14774,55,24,34,0.0 +14774,32,32,18,0.0 +14774,9,97,49,0.0 +14774,14,23.25,27,0.0 +14774,72,34.8,25,0.0 +14774,54,7.45,34,0.0 +14775,12,38,30,0.0 +14775,3,10,1,0.0 +14775,37,26,7,0.0 +14775,49,20,38,0.0 +14775,77,13,30,0.0 +14775,50,16.25,26,0.0 +14775,42,14,15,0.0 +14775,35,18,50,0.0 +14775,15,15.5,50,0.0 +14775,11,21,26,0.0 +14775,17,39,8,0.0 +14775,61,28.5,32,0.0 +14775,36,19,33,0.0 +14775,65,21.05,45,0.0 +14775,55,24,17,0.0 +14775,46,12,41,0.0 +14775,27,43.9,34,0.0 +14775,2,19,28,0.0 +14775,58,13.25,8,0.0 +14775,48,12.75,1,0.0 +14775,25,14,49,0.0 +14775,26,31.23,29,0.0 +14775,45,9.5,5,0.0 +14775,9,97,49,0.0 +14775,22,21,23,0.0 +14775,31,12.5,39,0.0 +14775,14,23.25,11,0.0 +14775,52,7,45,0.0 +14775,63,43.9,13,0.0 +14775,66,17,26,0.0 +14775,32,32,24,0.0 +14775,40,18.4,11,0.0 +14775,23,9,48,0.0 +14775,72,34.8,3,0.0 +14775,30,25.89,34,0.0 +14775,68,12.5,49,0.0 +14775,38,263.5,6,0.0 +14775,13,6,26,0.0 +14775,59,55,37,0.0 +14775,16,17.45,48,0.0 +14775,24,4.5,3,0.0 +14775,8,40,10,0.0 +14775,4,22,2,0.0 +14775,54,7.45,8,0.0 +14775,29,123.79,34,0.0 +14775,60,34,2,0.0 +14776,59,55,16,0.0 +14776,55,24,6,0.0 +14776,76,18,44,0.0 +14776,31,12.5,39,0.0 +14776,13,6,44,0.0 +14776,7,30,23,0.0 +14776,67,14,27,0.0 +14776,39,18,37,0.0 +14776,8,40,34,0.0 +14776,35,18,4,0.0 +14777,32,32,5,0.0 +14777,57,19.5,17,0.0 +14777,18,62.5,47,0.0 +14777,43,46,6,0.0 +14777,72,34.8,13,0.0 +14777,66,17,26,0.0 +14777,27,43.9,35,0.0 +14777,49,20,27,0.0 +14777,28,45.6,35,0.0 +14777,76,18,30,0.0 +14777,71,21.5,25,0.0 +14777,31,12.5,49,0.0 +14777,68,12.5,22,0.0 +14777,21,10,29,0.0 +14777,14,23.25,9,0.0 +14777,65,21.05,4,0.0 +14777,42,14,28,0.0 +14777,23,9,47,0.0 +14777,69,36,50,0.0 +14777,24,4.5,2,0.0 +14777,19,9.2,18,0.0 +14777,50,16.25,34,0.0 +14777,56,38,40,0.0 +14777,74,10,27,0.0 +14777,45,9.5,14,0.0 +14777,55,24,47,0.0 +14777,5,21.35,14,0.0 +14778,17,39,39,0.0 +14778,41,9.65,26,0.0 +14778,34,14,23,0.0 +14778,5,21.35,8,0.0 +14778,2,19,7,0.0 +14778,28,45.6,24,0.0 +14778,68,12.5,11,0.0 +14778,10,31,41,0.0 +14778,33,2.5,28,0.0 +14778,16,17.45,34,0.0 +14778,55,24,16,0.0 +14778,56,38,26,0.0 +14778,6,25,14,0.0 +14778,66,17,8,0.0 +14778,64,33.25,25,0.0 +14778,73,15,27,0.0 +14778,54,7.45,42,0.0 +14778,69,36,10,0.0 +14778,25,14,28,0.0 +14778,74,10,15,0.0 +14778,72,34.8,2,0.0 +14778,15,15.5,10,0.0 +14778,20,81,49,0.0 +14778,46,12,43,0.0 +14778,52,7,34,0.0 +14778,27,43.9,19,0.0 +14778,57,19.5,45,0.0 +14778,45,9.5,24,0.0 +14778,60,34,32,0.0 +14778,77,13,4,0.0 +14778,70,15,16,0.0 +14778,19,9.2,11,0.0 +14778,31,12.5,36,0.0 +14778,21,10,31,0.0 +14778,1,18,43,0.0 +14778,61,28.5,35,0.0 +14778,14,23.25,44,0.0 +14778,23,9,40,0.0 +14778,53,32.8,41,0.0 +14778,71,21.5,20,0.0 +14779,61,28.5,37,0.0 +14779,51,53,14,0.0 +14779,24,4.5,15,0.0 +14779,52,7,30,0.0 +14779,7,30,24,0.0 +14779,77,13,45,0.0 +14779,28,45.6,46,0.0 +14779,64,33.25,32,0.0 +14779,19,9.2,28,0.0 +14779,37,26,29,0.0 +14779,32,32,28,0.0 +14779,38,263.5,25,0.0 +14779,36,19,43,0.0 +14779,58,13.25,22,0.0 +14779,43,46,25,0.0 +14779,29,123.79,4,0.0 +14779,57,19.5,47,0.0 +14779,74,10,45,0.0 +14779,15,15.5,16,0.0 +14779,6,25,48,0.0 +14779,42,14,24,0.0 +14779,31,12.5,21,0.0 +14779,33,2.5,17,0.0 +14779,50,16.25,45,0.0 +14779,12,38,40,0.0 +14779,46,12,38,0.0 +14779,65,21.05,14,0.0 +14779,53,32.8,14,0.0 +14779,23,9,41,0.0 +14779,18,62.5,42,0.0 +14779,66,17,47,0.0 +14779,47,9.5,41,0.0 +14779,63,43.9,9,0.0 +14779,56,38,49,0.0 +14779,11,21,46,0.0 +14779,48,12.75,49,0.0 +14779,70,15,37,0.0 +14779,30,25.89,15,0.0 +14779,8,40,46,0.0 +14779,34,14,40,0.0 +14779,3,10,37,0.0 +14779,60,34,48,0.0 +14779,17,39,3,0.0 +14779,76,18,25,0.0 +14779,73,15,6,0.0 +14779,40,18.4,13,0.0 +14779,55,24,8,0.0 +14779,59,55,33,0.0 +14779,67,14,5,0.0 +14779,2,19,17,0.0 +14779,16,17.45,36,0.0 +14779,14,23.25,28,0.0 +14779,20,81,6,0.0 +14779,9,97,16,0.0 +14779,41,9.65,15,0.0 +14779,39,18,4,0.0 +14779,13,6,41,0.0 +14779,69,36,5,0.0 +14779,72,34.8,26,0.0 +14779,22,21,10,0.0 +14779,62,49.3,47,0.0 +14779,25,14,35,0.0 +14779,35,18,15,0.0 +14779,45,9.5,22,0.0 +14779,54,7.45,38,0.0 +14779,44,19.45,46,0.0 +14779,5,21.35,11,0.0 +14779,21,10,45,0.0 +14779,4,22,8,0.0 +14780,44,19.45,44,0.0 +14780,16,17.45,32,0.0 +14780,39,18,9,0.0 +14780,69,36,30,0.0 +14780,50,16.25,45,0.0 +14780,35,18,40,0.0 +14780,9,97,46,0.0 +14780,25,14,27,0.0 +14780,24,4.5,7,0.0 +14780,12,38,26,0.0 +14780,4,22,1,0.0 +14780,2,19,30,0.0 +14780,64,33.25,34,0.0 +14780,15,15.5,12,0.0 +14780,5,21.35,32,0.0 +14780,56,38,39,0.0 +14780,37,26,13,0.0 +14780,27,43.9,18,0.0 +14780,14,23.25,48,0.0 +14780,32,32,9,0.0 +14780,20,81,38,0.0 +14781,76,18,16,0.0 +14781,12,38,31,0.0 +14781,32,32,46,0.0 +14781,7,30,23,0.0 +14781,65,21.05,13,0.0 +14781,16,17.45,32,0.0 +14782,66,17,8,0.0 +14782,15,15.5,36,0.0 +14782,8,40,25,0.0 +14782,52,7,3,0.0 +14782,43,46,1,0.0 +14782,76,18,49,0.0 +14782,37,26,21,0.0 +14782,18,62.5,3,0.0 +14782,4,22,13,0.0 +14782,12,38,42,0.0 +14782,58,13.25,4,0.0 +14782,68,12.5,18,0.0 +14782,46,12,47,0.0 +14782,24,4.5,14,0.0 +14782,60,34,28,0.0 +14782,16,17.45,10,0.0 +14782,9,97,49,0.0 +14782,41,9.65,23,0.0 +14782,73,15,30,0.0 +14782,36,19,22,0.0 +14782,70,15,12,0.0 +14782,34,14,3,0.0 +14782,50,16.25,16,0.0 +14782,40,18.4,45,0.0 +14782,7,30,36,0.0 +14782,26,31.23,21,0.0 +14782,45,9.5,28,0.0 +14782,25,14,17,0.0 +14782,22,21,12,0.0 +14782,49,20,43,0.0 +14782,31,12.5,9,0.0 +14782,55,24,35,0.0 +14782,51,53,12,0.0 +14782,6,25,16,0.0 +14782,56,38,24,0.0 +14782,29,123.79,27,0.0 +14782,1,18,36,0.0 +14782,75,7.75,20,0.0 +14782,13,6,13,0.0 +14783,48,12.75,7,0.0 +14783,42,14,21,0.0 +14783,47,9.5,35,0.0 +14783,30,25.89,24,0.0 +14783,14,23.25,24,0.0 +14783,10,31,2,0.0 +14783,23,9,7,0.0 +14783,21,10,29,0.0 +14783,64,33.25,40,0.0 +14783,24,4.5,42,0.0 +14783,67,14,18,0.0 +14783,16,17.45,43,0.0 +14783,62,49.3,42,0.0 +14783,45,9.5,41,0.0 +14783,11,21,44,0.0 +14783,63,43.9,24,0.0 +14783,35,18,35,0.0 +14783,70,15,13,0.0 +14783,49,20,36,0.0 +14783,61,28.5,6,0.0 +14783,39,18,44,0.0 +14784,65,21.05,35,0.0 +14785,39,18,45,0.0 +14785,49,20,13,0.0 +14785,51,53,47,0.0 +14785,35,18,8,0.0 +14785,30,25.89,13,0.0 +14785,27,43.9,39,0.0 +14785,22,21,31,0.0 +14785,28,45.6,46,0.0 +14785,43,46,18,0.0 +14785,1,18,32,0.0 +14785,77,13,7,0.0 +14785,56,38,19,0.0 +14785,55,24,48,0.0 +14785,57,19.5,34,0.0 +14785,26,31.23,1,0.0 +14785,54,7.45,5,0.0 +14785,37,26,17,0.0 +14785,36,19,35,0.0 +14786,73,15,6,0.0 +14786,50,16.25,25,0.0 +14786,64,33.25,41,0.0 +14786,31,12.5,22,0.0 +14786,36,19,1,0.0 +14786,30,25.89,20,0.0 +14786,48,12.75,31,0.0 +14786,66,17,35,0.0 +14786,24,4.5,1,0.0 +14786,40,18.4,14,0.0 +14786,63,43.9,16,0.0 +14786,69,36,40,0.0 +14786,67,14,15,0.0 +14786,15,15.5,13,0.0 +14786,43,46,17,0.0 +14786,17,39,45,0.0 +14786,27,43.9,44,0.0 +14786,49,20,29,0.0 +14786,22,21,14,0.0 +14786,51,53,17,0.0 +14786,60,34,46,0.0 +14786,25,14,7,0.0 +14786,75,7.75,6,0.0 +14786,8,40,29,0.0 +14786,72,34.8,31,0.0 +14786,47,9.5,43,0.0 +14786,28,45.6,41,0.0 +14786,44,19.45,26,0.0 +14786,55,24,1,0.0 +14786,7,30,8,0.0 +14786,65,21.05,11,0.0 +14786,26,31.23,23,0.0 +14786,57,19.5,44,0.0 +14786,77,13,27,0.0 +14786,61,28.5,11,0.0 +14786,29,123.79,37,0.0 +14786,12,38,5,0.0 +14786,21,10,47,0.0 +14786,11,21,2,0.0 +14786,33,2.5,22,0.0 +14786,4,22,35,0.0 +14786,3,10,38,0.0 +14786,71,21.5,30,0.0 +14786,1,18,40,0.0 +14786,41,9.65,23,0.0 +14786,45,9.5,28,0.0 +14786,39,18,27,0.0 +14786,18,62.5,43,0.0 +14786,53,32.8,2,0.0 +14786,14,23.25,34,0.0 +14786,19,9.2,11,0.0 +14786,6,25,21,0.0 +14786,76,18,40,0.0 +14786,32,32,13,0.0 +14786,62,49.3,45,0.0 +14786,59,55,5,0.0 +14786,42,14,26,0.0 +14787,66,17,33,0.0 +14787,47,9.5,39,0.0 +14787,65,21.05,41,0.0 +14787,68,12.5,28,0.0 +14787,25,14,9,0.0 +14787,8,40,22,0.0 +14787,22,21,9,0.0 +14787,67,14,47,0.0 +14787,18,62.5,28,0.0 +14787,42,14,17,0.0 +14787,40,18.4,38,0.0 +14787,26,31.23,20,0.0 +14787,48,12.75,12,0.0 +14787,77,13,4,0.0 +14787,54,7.45,48,0.0 +14787,45,9.5,29,0.0 +14787,10,31,50,0.0 +14787,61,28.5,21,0.0 +14787,34,14,15,0.0 +14787,15,15.5,21,0.0 +14787,38,263.5,33,0.0 +14787,4,22,47,0.0 +14787,36,19,40,0.0 +14787,41,9.65,38,0.0 +14787,74,10,47,0.0 +14787,5,21.35,5,0.0 +14787,39,18,4,0.0 +14788,18,62.5,1,0.0 +14788,2,19,38,0.0 +14788,56,38,36,0.0 +14788,64,33.25,11,0.0 +14788,20,81,6,0.0 +14788,29,123.79,16,0.0 +14788,45,9.5,37,0.0 +14788,72,34.8,6,0.0 +14788,61,28.5,47,0.0 +14788,67,14,46,0.0 +14788,54,7.45,38,0.0 +14788,50,16.25,49,0.0 +14788,7,30,17,0.0 +14788,43,46,43,0.0 +14788,63,43.9,1,0.0 +14788,73,15,3,0.0 +14788,9,97,7,0.0 +14788,52,7,9,0.0 +14788,59,55,16,0.0 +14788,41,9.65,36,0.0 +14788,65,21.05,47,0.0 +14788,30,25.89,29,0.0 +14788,33,2.5,3,0.0 +14788,55,24,8,0.0 +14788,21,10,41,0.0 +14788,40,18.4,38,0.0 +14788,25,14,40,0.0 +14788,23,9,9,0.0 +14788,53,32.8,25,0.0 +14788,35,18,18,0.0 +14788,69,36,36,0.0 +14788,66,17,36,0.0 +14788,68,12.5,34,0.0 +14788,6,25,2,0.0 +14788,13,6,24,0.0 +14788,14,23.25,50,0.0 +14788,15,15.5,3,0.0 +14788,17,39,13,0.0 +14788,1,18,15,0.0 +14788,37,26,43,0.0 +14788,70,15,5,0.0 +14788,48,12.75,49,0.0 +14788,36,19,45,0.0 +14788,75,7.75,35,0.0 +14788,57,19.5,18,0.0 +14788,46,12,36,0.0 +14788,51,53,39,0.0 +14788,39,18,50,0.0 +14788,77,13,35,0.0 +14788,42,14,2,0.0 +14788,31,12.5,22,0.0 +14788,8,40,8,0.0 +14788,19,9.2,42,0.0 +14788,34,14,44,0.0 +14788,44,19.45,11,0.0 +14788,58,13.25,5,0.0 +14788,22,21,39,0.0 +14788,4,22,39,0.0 +14788,10,31,9,0.0 +14788,62,49.3,26,0.0 +14788,60,34,44,0.0 +14788,76,18,16,0.0 +14788,26,31.23,40,0.0 +14788,28,45.6,48,0.0 +14788,11,21,23,0.0 +14788,74,10,35,0.0 +14788,27,43.9,48,0.0 +14788,16,17.45,28,0.0 +14788,38,263.5,41,0.0 +14788,32,32,5,0.0 +14788,5,21.35,27,0.0 +14788,47,9.5,18,0.0 +14788,24,4.5,8,0.0 +14788,12,38,11,0.0 +14788,3,10,6,0.0 +14789,24,4.5,40,0.0 +14789,22,21,13,0.0 +14789,43,46,34,0.0 +14789,49,20,39,0.0 +14789,39,18,15,0.0 +14789,51,53,36,0.0 +14789,30,25.89,5,0.0 +14789,6,25,27,0.0 +14789,71,21.5,27,0.0 +14789,18,62.5,13,0.0 +14789,52,7,42,0.0 +14789,27,43.9,24,0.0 +14789,13,6,3,0.0 +14789,48,12.75,25,0.0 +14789,10,31,31,0.0 +14789,74,10,8,0.0 +14789,16,17.45,43,0.0 +14789,58,13.25,33,0.0 +14789,38,263.5,45,0.0 +14789,20,81,47,0.0 +14789,65,21.05,34,0.0 +14789,46,12,34,0.0 +14789,67,14,26,0.0 +14789,47,9.5,18,0.0 +14789,77,13,37,0.0 +14789,60,34,45,0.0 +14789,37,26,40,0.0 +14789,11,21,26,0.0 +14789,34,14,40,0.0 +14789,19,9.2,11,0.0 +14789,44,19.45,15,0.0 +14789,2,19,34,0.0 +14789,9,97,35,0.0 +14789,23,9,50,0.0 +14789,15,15.5,19,0.0 +14789,4,22,22,0.0 +14789,31,12.5,6,0.0 +14789,26,31.23,32,0.0 +14789,70,15,6,0.0 +14790,21,10,32,0.0 +14790,11,21,37,0.0 +14790,4,22,1,0.0 +14790,13,6,47,0.0 +14790,42,14,27,0.0 +14791,21,10,19,0.0 +14791,25,14,46,0.0 +14791,47,9.5,4,0.0 +14791,19,9.2,50,0.0 +14791,40,18.4,50,0.0 +14791,67,14,4,0.0 +14791,57,19.5,7,0.0 +14791,68,12.5,33,0.0 +14791,50,16.25,35,0.0 +14791,76,18,3,0.0 +14791,72,34.8,28,0.0 +14791,65,21.05,2,0.0 +14791,4,22,32,0.0 +14791,20,81,17,0.0 +14791,60,34,30,0.0 +14791,12,38,48,0.0 +14791,1,18,45,0.0 +14791,28,45.6,25,0.0 +14791,8,40,17,0.0 +14791,22,21,49,0.0 +14791,18,62.5,27,0.0 +14791,48,12.75,47,0.0 +14792,61,28.5,1,0.0 +14792,30,25.89,15,0.0 +14792,49,20,19,0.0 +14792,33,2.5,8,0.0 +14792,39,18,22,0.0 +14792,77,13,31,0.0 +14792,24,4.5,10,0.0 +14792,23,9,10,0.0 +14792,51,53,42,0.0 +14792,40,18.4,26,0.0 +14792,21,10,3,0.0 +14792,67,14,32,0.0 +14792,31,12.5,6,0.0 +14792,48,12.75,45,0.0 +14792,35,18,21,0.0 +14792,27,43.9,12,0.0 +14792,52,7,32,0.0 +14792,34,14,11,0.0 +14792,56,38,31,0.0 +14792,62,49.3,18,0.0 +14792,57,19.5,47,0.0 +14792,63,43.9,22,0.0 +14792,46,12,14,0.0 +14792,11,21,15,0.0 +14792,7,30,39,0.0 +14792,29,123.79,11,0.0 +14792,71,21.5,46,0.0 +14792,44,19.45,27,0.0 +14792,4,22,40,0.0 +14792,76,18,42,0.0 +14792,12,38,30,0.0 +14792,64,33.25,11,0.0 +14793,14,23.25,30,0.0 +14793,35,18,42,0.0 +14793,18,62.5,26,0.0 +14793,25,14,20,0.0 +14793,51,53,26,0.0 +14793,19,9.2,9,0.0 +14793,36,19,15,0.0 +14793,52,7,44,0.0 +14793,71,21.5,32,0.0 +14793,23,9,27,0.0 +14793,65,21.05,35,0.0 +14793,21,10,7,0.0 +14793,47,9.5,45,0.0 +14793,27,43.9,13,0.0 +14793,44,19.45,40,0.0 +14793,76,18,23,0.0 +14793,43,46,17,0.0 +14793,7,30,19,0.0 +14793,12,38,50,0.0 +14793,61,28.5,17,0.0 +14793,58,13.25,29,0.0 +14793,32,32,6,0.0 +14793,20,81,21,0.0 +14793,48,12.75,28,0.0 +14793,77,13,18,0.0 +14793,4,22,8,0.0 +14793,75,7.75,17,0.0 +14793,63,43.9,19,0.0 +14793,2,19,3,0.0 +14793,68,12.5,4,0.0 +14793,74,10,27,0.0 +14793,56,38,31,0.0 +14793,28,45.6,19,0.0 +14793,1,18,2,0.0 +14793,11,21,47,0.0 +14793,72,34.8,46,0.0 +14793,29,123.79,48,0.0 +14793,41,9.65,16,0.0 +14793,33,2.5,31,0.0 +14793,54,7.45,8,0.0 +14793,34,14,19,0.0 +14793,3,10,40,0.0 +14793,70,15,29,0.0 +14793,45,9.5,45,0.0 +14793,62,49.3,2,0.0 +14793,22,21,26,0.0 +14793,24,4.5,14,0.0 +14793,37,26,19,0.0 +14793,64,33.25,22,0.0 +14793,73,15,23,0.0 +14793,5,21.35,14,0.0 +14793,31,12.5,22,0.0 +14793,53,32.8,45,0.0 +14793,59,55,29,0.0 +14793,40,18.4,40,0.0 +14793,39,18,48,0.0 +14793,15,15.5,9,0.0 +14793,30,25.89,45,0.0 +14793,49,20,19,0.0 +14793,66,17,33,0.0 +14793,38,263.5,11,0.0 +14793,10,31,13,0.0 +14793,46,12,17,0.0 +14794,31,12.5,10,0.0 +14794,17,39,47,0.0 +14794,68,12.5,18,0.0 +14794,69,36,3,0.0 +14794,37,26,37,0.0 +14795,70,15,33,0.0 +14795,73,15,14,0.0 +14796,11,21,42,0.0 +14796,3,10,13,0.0 +14796,51,53,8,0.0 +14796,18,62.5,13,0.0 +14796,37,26,48,0.0 +14796,31,12.5,35,0.0 +14796,9,97,19,0.0 +14796,28,45.6,1,0.0 +14796,1,18,41,0.0 +14796,56,38,45,0.0 +14796,46,12,45,0.0 +14796,45,9.5,3,0.0 +14796,13,6,7,0.0 +14796,72,34.8,43,0.0 +14796,34,14,24,0.0 +14796,41,9.65,43,0.0 +14796,67,14,37,0.0 +14796,23,9,35,0.0 +14796,74,10,15,0.0 +14796,36,19,36,0.0 +14796,4,22,18,0.0 +14796,59,55,38,0.0 +14796,27,43.9,38,0.0 +14796,47,9.5,31,0.0 +14796,21,10,48,0.0 +14796,40,18.4,18,0.0 +14796,77,13,28,0.0 +14797,21,10,2,0.0 +14797,29,123.79,22,0.0 +14797,12,38,13,0.0 +14797,8,40,10,0.0 +14797,18,62.5,37,0.0 +14798,29,123.79,44,0.0 +14798,60,34,20,0.0 +14798,42,14,19,0.0 +14798,74,10,41,0.0 +14798,54,7.45,39,0.0 +14798,19,9.2,16,0.0 +14798,5,21.35,18,0.0 +14798,21,10,19,0.0 +14798,44,19.45,45,0.0 +14798,70,15,50,0.0 +14798,62,49.3,32,0.0 +14798,34,14,28,0.0 +14798,68,12.5,47,0.0 +14798,20,81,21,0.0 +14798,23,9,50,0.0 +14798,50,16.25,15,0.0 +14798,10,31,31,0.0 +14798,4,22,3,0.0 +14798,24,4.5,26,0.0 +14798,31,12.5,6,0.0 +14798,12,38,17,0.0 +14798,15,15.5,39,0.0 +14798,76,18,37,0.0 +14798,49,20,42,0.0 +14798,26,31.23,11,0.0 +14798,14,23.25,13,0.0 +14798,65,21.05,28,0.0 +14798,17,39,43,0.0 +14798,28,45.6,42,0.0 +14798,63,43.9,41,0.0 +14798,39,18,45,0.0 +14798,22,21,23,0.0 +14798,27,43.9,15,0.0 +14799,47,9.5,17,0.0 +14799,38,263.5,44,0.0 +14799,74,10,31,0.0 +14799,53,32.8,28,0.0 +14799,37,26,41,0.0 +14799,28,45.6,15,0.0 +14799,58,13.25,1,0.0 +14799,3,10,19,0.0 +14799,7,30,34,0.0 +14799,21,10,13,0.0 +14799,64,33.25,43,0.0 +14799,72,34.8,24,0.0 +14799,77,13,28,0.0 +14799,10,31,32,0.0 +14799,33,2.5,21,0.0 +14799,31,12.5,35,0.0 +14799,2,19,14,0.0 +14799,59,55,50,0.0 +14799,24,4.5,10,0.0 +14799,40,18.4,22,0.0 +14799,60,34,19,0.0 +14799,25,14,36,0.0 +14799,16,17.45,11,0.0 +14799,49,20,36,0.0 +14799,62,49.3,8,0.0 +14799,30,25.89,33,0.0 +14799,12,38,4,0.0 +14799,55,24,19,0.0 +14799,75,7.75,33,0.0 +14799,9,97,1,0.0 +14799,65,21.05,35,0.0 +14799,18,62.5,17,0.0 +14799,73,15,40,0.0 +14800,16,17.45,3,0.0 +14800,7,30,33,0.0 +14800,14,23.25,8,0.0 +14800,43,46,43,0.0 +14800,57,19.5,28,0.0 +14800,29,123.79,33,0.0 +14800,10,31,40,0.0 +14800,1,18,50,0.0 +14800,55,24,3,0.0 +14800,62,49.3,12,0.0 +14800,32,32,25,0.0 +14800,30,25.89,40,0.0 +14800,36,19,20,0.0 +14800,42,14,15,0.0 +14800,52,7,33,0.0 +14800,46,12,26,0.0 +14800,64,33.25,20,0.0 +14800,26,31.23,17,0.0 +14800,56,38,19,0.0 +14800,8,40,39,0.0 +14800,59,55,49,0.0 +14800,33,2.5,21,0.0 +14800,19,9.2,6,0.0 +14800,73,15,29,0.0 +14800,49,20,44,0.0 +14800,58,13.25,43,0.0 +14801,1,18,34,0.0 +14801,70,15,22,0.0 +14801,68,12.5,30,0.0 +14801,58,13.25,46,0.0 +14801,32,32,25,0.0 +14801,20,81,21,0.0 +14801,28,45.6,26,0.0 +14801,12,38,29,0.0 +14801,30,25.89,5,0.0 +14801,51,53,6,0.0 +14801,43,46,10,0.0 +14801,29,123.79,6,0.0 +14801,35,18,35,0.0 +14801,31,12.5,49,0.0 +14801,19,9.2,22,0.0 +14801,18,62.5,50,0.0 +14801,63,43.9,32,0.0 +14801,62,49.3,8,0.0 +14801,71,21.5,50,0.0 +14801,73,15,43,0.0 +14801,42,14,22,0.0 +14801,47,9.5,14,0.0 +14801,37,26,21,0.0 +14801,39,18,46,0.0 +14801,33,2.5,10,0.0 +14801,61,28.5,40,0.0 +14801,9,97,26,0.0 +14801,67,14,15,0.0 +14801,38,263.5,48,0.0 +14801,7,30,4,0.0 +14801,26,31.23,44,0.0 +14801,65,21.05,29,0.0 +14801,72,34.8,16,0.0 +14801,10,31,35,0.0 +14801,41,9.65,40,0.0 +14802,36,19,17,0.0 +14803,35,18,38,0.0 +14804,66,17,13,0.0 +14804,57,19.5,14,0.0 +14804,14,23.25,42,0.0 +14804,15,15.5,50,0.0 +14804,11,21,47,0.0 +14804,52,7,3,0.0 +14804,45,9.5,19,0.0 +14804,58,13.25,42,0.0 +14804,56,38,25,0.0 +14804,20,81,45,0.0 +14804,37,26,43,0.0 +14804,32,32,23,0.0 +14804,65,21.05,39,0.0 +14804,27,43.9,26,0.0 +14804,60,34,14,0.0 +14804,36,19,35,0.0 +14804,44,19.45,35,0.0 +14804,25,14,33,0.0 +14804,1,18,45,0.0 +14804,7,30,14,0.0 +14804,28,45.6,5,0.0 +14804,24,4.5,6,0.0 +14804,51,53,2,0.0 +14804,47,9.5,34,0.0 +14804,70,15,35,0.0 +14804,41,9.65,44,0.0 +14804,75,7.75,17,0.0 +14804,10,31,17,0.0 +14804,12,38,5,0.0 +14804,77,13,6,0.0 +14804,16,17.45,18,0.0 +14804,30,25.89,40,0.0 +14804,18,62.5,48,0.0 +14804,63,43.9,40,0.0 +14804,5,21.35,33,0.0 +14804,61,28.5,47,0.0 +14804,43,46,21,0.0 +14804,13,6,29,0.0 +14804,21,10,12,0.0 +14804,17,39,30,0.0 +14804,72,34.8,36,0.0 +14804,64,33.25,34,0.0 +14804,50,16.25,31,0.0 +14804,34,14,11,0.0 +14804,42,14,49,0.0 +14804,69,36,38,0.0 +14804,22,21,17,0.0 +14804,40,18.4,24,0.0 +14804,38,263.5,4,0.0 +14804,73,15,35,0.0 +14804,33,2.5,8,0.0 +14804,55,24,50,0.0 +14804,9,97,45,0.0 +14804,29,123.79,31,0.0 +14804,74,10,1,0.0 +14804,46,12,10,0.0 +14804,23,9,41,0.0 +14804,62,49.3,8,0.0 +14804,26,31.23,3,0.0 +14804,8,40,26,0.0 +14804,3,10,43,0.0 +14804,48,12.75,23,0.0 +14804,4,22,28,0.0 +14804,2,19,20,0.0 +14804,59,55,25,0.0 +14804,71,21.5,46,0.0 +14804,35,18,19,0.0 +14804,68,12.5,39,0.0 +14804,76,18,41,0.0 +14804,49,20,24,0.0 +14805,51,53,45,0.0 +14805,70,15,11,0.0 +14805,13,6,23,0.0 +14805,20,81,38,0.0 +14805,37,26,14,0.0 +14805,29,123.79,41,0.0 +14805,73,15,11,0.0 +14805,48,12.75,15,0.0 +14805,54,7.45,44,0.0 +14805,19,9.2,19,0.0 +14805,77,13,19,0.0 +14805,23,9,48,0.0 +14805,17,39,27,0.0 +14805,44,19.45,25,0.0 +14805,60,34,41,0.0 +14805,65,21.05,33,0.0 +14805,38,263.5,50,0.0 +14805,32,32,45,0.0 +14805,42,14,35,0.0 +14805,26,31.23,37,0.0 +14805,49,20,22,0.0 +14805,14,23.25,15,0.0 +14805,12,38,11,0.0 +14805,53,32.8,32,0.0 +14805,58,13.25,16,0.0 +14805,30,25.89,21,0.0 +14805,28,45.6,31,0.0 +14805,62,49.3,26,0.0 +14805,72,34.8,23,0.0 +14805,10,31,31,0.0 +14805,43,46,26,0.0 +14805,36,19,24,0.0 +14805,18,62.5,44,0.0 +14805,67,14,45,0.0 +14805,27,43.9,25,0.0 +14805,41,9.65,21,0.0 +14805,1,18,28,0.0 +14805,5,21.35,2,0.0 +14805,8,40,17,0.0 +14806,48,12.75,36,0.0 +14806,49,20,31,0.0 +14806,71,21.5,5,0.0 +14807,36,19,28,0.0 +14807,55,24,23,0.0 +14807,65,21.05,21,0.0 +14807,22,21,36,0.0 +14807,33,2.5,30,0.0 +14807,52,7,41,0.0 +14807,25,14,4,0.0 +14807,51,53,2,0.0 +14807,45,9.5,3,0.0 +14807,60,34,5,0.0 +14807,1,18,10,0.0 +14807,58,13.25,33,0.0 +14807,13,6,37,0.0 +14807,50,16.25,20,0.0 +14807,59,55,36,0.0 +14807,20,81,7,0.0 +14807,48,12.75,46,0.0 +14807,30,25.89,35,0.0 +14807,12,38,42,0.0 +14807,76,18,29,0.0 +14807,72,34.8,13,0.0 +14807,21,10,15,0.0 +14807,73,15,25,0.0 +14807,24,4.5,34,0.0 +14807,27,43.9,3,0.0 +14807,63,43.9,35,0.0 +14807,62,49.3,3,0.0 +14807,2,19,30,0.0 +14807,34,14,8,0.0 +14807,68,12.5,48,0.0 +14807,41,9.65,22,0.0 +14807,18,62.5,32,0.0 +14807,32,32,12,0.0 +14807,26,31.23,39,0.0 +14807,64,33.25,24,0.0 +14807,66,17,48,0.0 +14807,49,20,13,0.0 +14807,75,7.75,30,0.0 +14807,15,15.5,11,0.0 +14807,17,39,2,0.0 +14807,40,18.4,22,0.0 +14807,54,7.45,9,0.0 +14807,28,45.6,44,0.0 +14807,14,23.25,24,0.0 +14807,31,12.5,2,0.0 +14807,39,18,1,0.0 +14807,46,12,37,0.0 +14807,74,10,17,0.0 +14807,70,15,3,0.0 +14807,11,21,5,0.0 +14807,7,30,13,0.0 +14807,69,36,33,0.0 +14807,47,9.5,41,0.0 +14807,43,46,20,0.0 +14807,37,26,43,0.0 +14807,42,14,43,0.0 +14807,77,13,41,0.0 +14807,61,28.5,49,0.0 +14807,71,21.5,26,0.0 +14807,10,31,23,0.0 +14807,44,19.45,26,0.0 +14807,4,22,21,0.0 +14807,56,38,20,0.0 +14807,8,40,15,0.0 +14807,29,123.79,48,0.0 +14807,23,9,4,0.0 +14808,22,21,47,0.0 +14808,9,97,20,0.0 +14808,19,9.2,15,0.0 +14808,25,14,16,0.0 +14808,54,7.45,24,0.0 +14808,39,18,45,0.0 +14808,8,40,14,0.0 +14808,59,55,47,0.0 +14808,70,15,36,0.0 +14808,7,30,8,0.0 +14808,2,19,17,0.0 +14808,34,14,27,0.0 +14808,55,24,34,0.0 +14808,20,81,32,0.0 +14808,6,25,17,0.0 +14808,52,7,1,0.0 +14808,71,21.5,35,0.0 +14808,1,18,2,0.0 +14808,5,21.35,18,0.0 +14808,77,13,16,0.0 +14808,44,19.45,6,0.0 +14808,73,15,26,0.0 +14808,74,10,11,0.0 +14808,18,62.5,10,0.0 +14808,17,39,40,0.0 +14808,51,53,31,0.0 +14808,46,12,26,0.0 +14808,43,46,3,0.0 +14808,50,16.25,25,0.0 +14808,45,9.5,11,0.0 +14808,12,38,16,0.0 +14808,21,10,44,0.0 +14808,68,12.5,28,0.0 +14808,31,12.5,15,0.0 +14808,61,28.5,43,0.0 +14808,53,32.8,19,0.0 +14808,67,14,39,0.0 +14808,58,13.25,12,0.0 +14808,64,33.25,28,0.0 +14808,29,123.79,30,0.0 +14808,66,17,16,0.0 +14808,75,7.75,18,0.0 +14808,76,18,11,0.0 +14808,48,12.75,48,0.0 +14808,60,34,12,0.0 +14808,36,19,8,0.0 +14808,4,22,23,0.0 +14808,28,45.6,1,0.0 +14808,56,38,9,0.0 +14808,26,31.23,38,0.0 +14808,33,2.5,5,0.0 +14808,30,25.89,49,0.0 +14808,63,43.9,11,0.0 +14808,42,14,46,0.0 +14808,23,9,13,0.0 +14808,24,4.5,42,0.0 +14808,15,15.5,28,0.0 +14808,40,18.4,9,0.0 +14808,11,21,1,0.0 +14808,10,31,11,0.0 +14808,32,32,20,0.0 +14808,69,36,44,0.0 +14808,14,23.25,5,0.0 +14808,35,18,16,0.0 +14808,41,9.65,25,0.0 +14808,72,34.8,35,0.0 +14808,3,10,12,0.0 +14808,27,43.9,7,0.0 +14808,47,9.5,19,0.0 +14808,65,21.05,42,0.0 +14808,37,26,43,0.0 +14808,49,20,48,0.0 +14809,76,18,31,0.0 +14809,51,53,13,0.0 +14809,65,21.05,34,0.0 +14809,53,32.8,26,0.0 +14809,62,49.3,16,0.0 +14809,50,16.25,23,0.0 +14809,48,12.75,48,0.0 +14809,70,15,44,0.0 +14809,61,28.5,36,0.0 +14809,16,17.45,30,0.0 +14809,6,25,9,0.0 +14809,33,2.5,10,0.0 +14809,40,18.4,49,0.0 +14809,4,22,7,0.0 +14809,60,34,23,0.0 +14809,9,97,34,0.0 +14809,3,10,6,0.0 +14810,12,38,48,0.0 +14810,45,9.5,42,0.0 +14810,32,32,31,0.0 +14810,20,81,35,0.0 +14810,58,13.25,32,0.0 +14810,76,18,41,0.0 +14810,53,32.8,19,0.0 +14810,13,6,40,0.0 +14810,1,18,13,0.0 +14810,54,7.45,40,0.0 +14810,74,10,27,0.0 +14810,72,34.8,49,0.0 +14810,26,31.23,23,0.0 +14810,48,12.75,21,0.0 +14810,39,18,26,0.0 +14810,34,14,17,0.0 +14810,3,10,46,0.0 +14810,24,4.5,3,0.0 +14810,21,10,2,0.0 +14810,69,36,39,0.0 +14810,66,17,20,0.0 +14810,65,21.05,48,0.0 +14810,9,97,16,0.0 +14810,4,22,44,0.0 +14810,51,53,31,0.0 +14810,8,40,20,0.0 +14810,38,263.5,48,0.0 +14810,23,9,26,0.0 +14810,31,12.5,27,0.0 +14810,10,31,36,0.0 +14810,25,14,10,0.0 +14810,47,9.5,42,0.0 +14810,63,43.9,38,0.0 +14810,27,43.9,39,0.0 +14810,18,62.5,15,0.0 +14810,41,9.65,9,0.0 +14810,11,21,48,0.0 +14810,16,17.45,13,0.0 +14810,5,21.35,1,0.0 +14810,49,20,4,0.0 +14810,60,34,45,0.0 +14810,73,15,24,0.0 +14810,29,123.79,18,0.0 +14810,68,12.5,3,0.0 +14810,2,19,21,0.0 +14810,61,28.5,3,0.0 +14810,71,21.5,6,0.0 +14810,30,25.89,41,0.0 +14810,22,21,30,0.0 +14810,46,12,32,0.0 +14810,67,14,42,0.0 +14810,7,30,23,0.0 +14810,52,7,10,0.0 +14810,56,38,32,0.0 +14810,42,14,13,0.0 +14810,70,15,27,0.0 +14810,75,7.75,2,0.0 +14810,35,18,4,0.0 +14810,15,15.5,6,0.0 +14810,17,39,49,0.0 +14810,14,23.25,40,0.0 +14810,33,2.5,19,0.0 +14810,37,26,45,0.0 +14810,40,18.4,47,0.0 +14810,62,49.3,40,0.0 +14810,43,46,34,0.0 +14810,59,55,12,0.0 +14810,6,25,5,0.0 +14810,77,13,26,0.0 +14810,50,16.25,39,0.0 +14810,44,19.45,31,0.0 +14810,57,19.5,28,0.0 +14810,64,33.25,34,0.0 +14810,55,24,18,0.0 +14810,28,45.6,25,0.0 +14810,19,9.2,10,0.0 +14810,36,19,8,0.0 +14811,27,43.9,46,0.0 +14811,44,19.45,3,0.0 +14811,5,21.35,28,0.0 +14811,22,21,32,0.0 +14811,10,31,6,0.0 +14811,46,12,6,0.0 +14811,3,10,14,0.0 +14811,11,21,36,0.0 +14811,75,7.75,2,0.0 +14811,40,18.4,32,0.0 +14811,53,32.8,22,0.0 +14811,9,97,15,0.0 +14811,25,14,20,0.0 +14811,76,18,26,0.0 +14811,59,55,1,0.0 +14811,14,23.25,37,0.0 +14811,77,13,45,0.0 +14811,17,39,39,0.0 +14811,72,34.8,47,0.0 +14811,38,263.5,26,0.0 +14811,48,12.75,43,0.0 +14811,6,25,36,0.0 +14811,73,15,39,0.0 +14811,19,9.2,39,0.0 +14811,1,18,4,0.0 +14811,54,7.45,29,0.0 +14811,13,6,26,0.0 +14811,8,40,46,0.0 +14811,60,34,50,0.0 +14811,41,9.65,31,0.0 +14811,47,9.5,48,0.0 +14811,63,43.9,49,0.0 +14811,50,16.25,37,0.0 +14811,12,38,2,0.0 +14811,23,9,30,0.0 +14811,49,20,16,0.0 +14811,35,18,26,0.0 +14811,43,46,13,0.0 +14811,29,123.79,12,0.0 +14811,69,36,47,0.0 +14811,28,45.6,12,0.0 +14811,16,17.45,30,0.0 +14811,58,13.25,2,0.0 +14811,24,4.5,48,0.0 +14811,7,30,44,0.0 +14811,52,7,12,0.0 +14811,15,15.5,32,0.0 +14811,21,10,9,0.0 +14811,66,17,2,0.0 +14811,37,26,23,0.0 +14811,34,14,4,0.0 +14812,13,6,22,0.0 +14812,77,13,3,0.0 +14812,29,123.79,45,0.0 +14812,2,19,31,0.0 +14812,36,19,45,0.0 +14812,55,24,34,0.0 +14812,40,18.4,40,0.0 +14812,11,21,17,0.0 +14812,54,7.45,5,0.0 +14812,65,21.05,10,0.0 +14812,16,17.45,25,0.0 +14812,39,18,46,0.0 +14812,74,10,33,0.0 +14812,71,21.5,22,0.0 +14812,69,36,2,0.0 +14812,22,21,43,0.0 +14812,41,9.65,42,0.0 +14812,18,62.5,26,0.0 +14812,51,53,44,0.0 +14812,72,34.8,4,0.0 +14812,43,46,6,0.0 +14812,60,34,22,0.0 +14812,64,33.25,26,0.0 +14812,42,14,38,0.0 +14812,1,18,49,0.0 +14812,50,16.25,42,0.0 +14812,9,97,20,0.0 +14812,53,32.8,26,0.0 +14812,49,20,47,0.0 +14812,46,12,25,0.0 +14812,73,15,39,0.0 +14812,70,15,41,0.0 +14812,68,12.5,5,0.0 +14812,48,12.75,38,0.0 +14812,57,19.5,33,0.0 +14812,21,10,35,0.0 +14812,14,23.25,49,0.0 +14812,8,40,30,0.0 +14812,19,9.2,45,0.0 +14812,6,25,1,0.0 +14812,62,49.3,44,0.0 +14812,76,18,19,0.0 +14812,58,13.25,23,0.0 +14812,52,7,30,0.0 +14812,37,26,32,0.0 +14812,27,43.9,32,0.0 +14812,66,17,34,0.0 +14812,4,22,32,0.0 +14812,61,28.5,43,0.0 +14812,28,45.6,15,0.0 +14812,47,9.5,22,0.0 +14812,7,30,30,0.0 +14812,34,14,45,0.0 +14813,22,21,39,0.0 +14813,10,31,21,0.0 +14813,23,9,23,0.0 +14813,12,38,6,0.0 +14813,3,10,23,0.0 +14813,49,20,2,0.0 +14813,56,38,37,0.0 +14813,11,21,7,0.0 +14813,9,97,24,0.0 +14813,46,12,12,0.0 +14813,34,14,37,0.0 +14813,32,32,16,0.0 +14813,18,62.5,8,0.0 +14813,69,36,20,0.0 +14814,68,12.5,24,0.0 +14814,62,49.3,13,0.0 +14814,74,10,15,0.0 +14814,42,14,7,0.0 +14814,21,10,10,0.0 +14814,57,19.5,22,0.0 +14814,29,123.79,1,0.0 +14814,43,46,17,0.0 +14814,2,19,10,0.0 +14814,47,9.5,13,0.0 +14814,50,16.25,5,0.0 +14814,31,12.5,48,0.0 +14814,69,36,36,0.0 +14814,3,10,6,0.0 +14814,27,43.9,11,0.0 +14814,35,18,46,0.0 +14814,39,18,30,0.0 +14814,41,9.65,17,0.0 +14814,34,14,10,0.0 +14814,56,38,42,0.0 +14814,46,12,35,0.0 +14814,51,53,16,0.0 +14814,44,19.45,44,0.0 +14814,28,45.6,24,0.0 +14814,63,43.9,19,0.0 +14814,65,21.05,35,0.0 +14814,11,21,8,0.0 +14814,55,24,48,0.0 +14814,1,18,41,0.0 +14814,75,7.75,5,0.0 +14814,8,40,24,0.0 +14814,26,31.23,20,0.0 +14814,12,38,40,0.0 +14814,38,263.5,32,0.0 +14814,53,32.8,39,0.0 +14814,10,31,11,0.0 +14814,49,20,6,0.0 +14814,40,18.4,3,0.0 +14814,19,9.2,28,0.0 +14814,72,34.8,34,0.0 +14814,23,9,9,0.0 +14814,52,7,25,0.0 +14814,60,34,5,0.0 +14814,36,19,3,0.0 +14814,64,33.25,2,0.0 +14814,24,4.5,17,0.0 +14814,14,23.25,29,0.0 +14814,58,13.25,1,0.0 +14814,77,13,4,0.0 +14814,7,30,10,0.0 +14815,25,14,32,0.0 +14815,43,46,34,0.0 +14815,51,53,24,0.0 +14815,61,28.5,13,0.0 +14815,62,49.3,6,0.0 +14815,16,17.45,30,0.0 +14815,27,43.9,2,0.0 +14815,63,43.9,16,0.0 +14815,13,6,6,0.0 +14815,42,14,22,0.0 +14815,57,19.5,16,0.0 +14815,66,17,39,0.0 +14815,23,9,4,0.0 +14815,37,26,12,0.0 +14815,5,21.35,28,0.0 +14815,56,38,21,0.0 +14815,69,36,9,0.0 +14815,33,2.5,48,0.0 +14815,15,15.5,40,0.0 +14815,8,40,43,0.0 +14815,1,18,11,0.0 +14815,53,32.8,18,0.0 +14815,60,34,23,0.0 +14815,36,19,20,0.0 +14815,77,13,36,0.0 +14815,59,55,27,0.0 +14815,74,10,45,0.0 +14815,44,19.45,35,0.0 +14815,34,14,29,0.0 +14815,45,9.5,17,0.0 +14815,71,21.5,14,0.0 +14815,30,25.89,17,0.0 +14815,2,19,42,0.0 +14815,64,33.25,40,0.0 +14815,47,9.5,1,0.0 +14815,54,7.45,19,0.0 +14815,52,7,22,0.0 +14815,65,21.05,35,0.0 +14815,29,123.79,25,0.0 +14815,10,31,19,0.0 +14815,6,25,41,0.0 +14815,68,12.5,31,0.0 +14815,73,15,26,0.0 +14815,3,10,32,0.0 +14815,38,263.5,45,0.0 +14815,67,14,37,0.0 +14815,18,62.5,35,0.0 +14815,40,18.4,35,0.0 +14815,50,16.25,48,0.0 +14815,17,39,2,0.0 +14815,28,45.6,48,0.0 +14815,19,9.2,18,0.0 +14815,75,7.75,19,0.0 +14815,9,97,17,0.0 +14815,49,20,46,0.0 +14815,48,12.75,12,0.0 +14815,4,22,9,0.0 +14815,26,31.23,13,0.0 +14815,41,9.65,24,0.0 +14816,63,43.9,41,0.0 +14816,51,53,13,0.0 +14816,6,25,45,0.0 +14816,70,15,47,0.0 +14816,16,17.45,21,0.0 +14816,74,10,24,0.0 +14816,42,14,34,0.0 +14816,40,18.4,31,0.0 +14816,24,4.5,41,0.0 +14816,72,34.8,49,0.0 +14816,4,22,13,0.0 +14816,44,19.45,47,0.0 +14816,8,40,11,0.0 +14816,28,45.6,31,0.0 +14816,64,33.25,7,0.0 +14816,36,19,16,0.0 +14816,76,18,24,0.0 +14816,48,12.75,41,0.0 +14816,13,6,25,0.0 +14816,46,12,19,0.0 +14816,33,2.5,42,0.0 +14816,67,14,44,0.0 +14816,32,32,47,0.0 +14816,60,34,9,0.0 +14816,61,28.5,13,0.0 +14816,7,30,48,0.0 +14816,14,23.25,34,0.0 +14816,47,9.5,6,0.0 +14816,21,10,3,0.0 +14816,38,263.5,9,0.0 +14816,11,21,12,0.0 +14816,9,97,40,0.0 +14816,22,21,34,0.0 +14816,12,38,21,0.0 +14816,58,13.25,22,0.0 +14816,5,21.35,24,0.0 +14816,37,26,42,0.0 +14816,27,43.9,14,0.0 +14816,50,16.25,47,0.0 +14816,18,62.5,28,0.0 +14816,68,12.5,39,0.0 +14816,53,32.8,29,0.0 +14816,26,31.23,3,0.0 +14816,62,49.3,49,0.0 +14816,31,12.5,9,0.0 +14816,55,24,12,0.0 +14816,34,14,3,0.0 +14816,57,19.5,48,0.0 +14816,43,46,23,0.0 +14816,69,36,20,0.0 +14816,66,17,30,0.0 +14816,19,9.2,21,0.0 +14816,49,20,36,0.0 +14816,71,21.5,6,0.0 +14816,56,38,34,0.0 +14816,45,9.5,32,0.0 +14816,52,7,49,0.0 +14816,10,31,30,0.0 +14816,25,14,26,0.0 +14817,57,19.5,25,0.0 +14817,30,25.89,2,0.0 +14817,42,14,25,0.0 +14817,67,14,3,0.0 +14817,73,15,45,0.0 +14817,45,9.5,13,0.0 +14817,5,21.35,14,0.0 +14817,35,18,29,0.0 +14817,75,7.75,2,0.0 +14817,41,9.65,18,0.0 +14817,15,15.5,30,0.0 +14817,27,43.9,5,0.0 +14817,62,49.3,3,0.0 +14817,72,34.8,21,0.0 +14817,65,21.05,30,0.0 +14817,26,31.23,25,0.0 +14817,76,18,22,0.0 +14817,18,62.5,39,0.0 +14817,4,22,41,0.0 +14817,59,55,28,0.0 +14817,53,32.8,24,0.0 +14817,60,34,17,0.0 +14817,39,18,37,0.0 +14817,40,18.4,15,0.0 +14817,22,21,29,0.0 +14817,31,12.5,25,0.0 +14817,1,18,13,0.0 +14817,7,30,26,0.0 +14817,17,39,34,0.0 +14817,56,38,46,0.0 +14817,3,10,24,0.0 +14817,61,28.5,17,0.0 +14817,13,6,39,0.0 +14817,77,13,32,0.0 +14817,2,19,48,0.0 +14817,19,9.2,18,0.0 +14817,47,9.5,32,0.0 +14817,58,13.25,22,0.0 +14817,44,19.45,10,0.0 +14817,66,17,10,0.0 +14817,14,23.25,34,0.0 +14817,12,38,27,0.0 +14817,55,24,31,0.0 +14817,32,32,1,0.0 +14817,68,12.5,41,0.0 +14817,46,12,43,0.0 +14817,8,40,13,0.0 +14817,38,263.5,7,0.0 +14817,70,15,13,0.0 +14817,69,36,35,0.0 +14817,51,53,35,0.0 +14817,43,46,12,0.0 +14817,36,19,21,0.0 +14817,34,14,15,0.0 +14817,21,10,40,0.0 +14817,54,7.45,44,0.0 +14817,16,17.45,4,0.0 +14817,23,9,47,0.0 +14817,64,33.25,38,0.0 +14817,20,81,15,0.0 +14817,37,26,13,0.0 +14817,6,25,1,0.0 +14817,71,21.5,4,0.0 +14817,9,97,48,0.0 +14817,33,2.5,34,0.0 +14817,10,31,18,0.0 +14817,29,123.79,10,0.0 +14817,24,4.5,19,0.0 +14817,28,45.6,7,0.0 +14817,50,16.25,25,0.0 +14817,25,14,44,0.0 +14817,52,7,9,0.0 +14817,11,21,31,0.0 +14817,74,10,39,0.0 +14818,5,21.35,48,0.0 +14818,54,7.45,20,0.0 +14818,65,21.05,24,0.0 +14818,68,12.5,3,0.0 +14818,39,18,3,0.0 +14818,59,55,21,0.0 +14819,30,25.89,23,0.0 +14819,49,20,33,0.0 +14819,65,21.05,47,0.0 +14819,27,43.9,13,0.0 +14819,5,21.35,19,0.0 +14819,39,18,41,0.0 +14820,24,4.5,37,0.0 +14820,26,31.23,21,0.0 +14820,35,18,4,0.0 +14820,65,21.05,11,0.0 +14820,57,19.5,43,0.0 +14820,41,9.65,32,0.0 +14820,2,19,35,0.0 +14820,34,14,32,0.0 +14820,60,34,2,0.0 +14820,69,36,32,0.0 +14820,13,6,24,0.0 +14820,14,23.25,27,0.0 +14820,31,12.5,6,0.0 +14820,15,15.5,11,0.0 +14820,29,123.79,37,0.0 +14820,77,13,31,0.0 +14820,62,49.3,45,0.0 +14820,8,40,16,0.0 +14820,76,18,15,0.0 +14820,21,10,41,0.0 +14820,46,12,7,0.0 +14820,50,16.25,6,0.0 +14820,16,17.45,18,0.0 +14820,39,18,28,0.0 +14820,18,62.5,15,0.0 +14820,17,39,48,0.0 +14820,61,28.5,1,0.0 +14820,54,7.45,45,0.0 +14820,9,97,3,0.0 +14820,3,10,7,0.0 +14820,36,19,17,0.0 +14820,23,9,47,0.0 +14820,74,10,8,0.0 +14820,11,21,3,0.0 +14820,28,45.6,7,0.0 +14820,56,38,4,0.0 +14820,38,263.5,29,0.0 +14820,66,17,19,0.0 +14820,42,14,2,0.0 +14820,43,46,41,0.0 +14820,59,55,29,0.0 +14820,72,34.8,19,0.0 +14821,24,4.5,13,0.0 +14821,61,28.5,27,0.0 +14821,77,13,7,0.0 +14821,34,14,43,0.0 +14821,6,25,26,0.0 +14821,33,2.5,5,0.0 +14821,29,123.79,33,0.0 +14821,68,12.5,8,0.0 +14821,62,49.3,4,0.0 +14821,12,38,46,0.0 +14821,38,263.5,47,0.0 +14821,8,40,17,0.0 +14821,18,62.5,33,0.0 +14821,16,17.45,2,0.0 +14821,75,7.75,43,0.0 +14821,67,14,11,0.0 +14821,39,18,48,0.0 +14821,28,45.6,40,0.0 +14821,57,19.5,25,0.0 +14821,43,46,19,0.0 +14821,36,19,11,0.0 +14821,37,26,8,0.0 +14821,22,21,30,0.0 +14821,5,21.35,18,0.0 +14821,55,24,8,0.0 +14821,14,23.25,31,0.0 +14821,72,34.8,40,0.0 +14821,52,7,45,0.0 +14821,49,20,47,0.0 +14821,69,36,1,0.0 +14821,47,9.5,46,0.0 +14821,44,19.45,32,0.0 +14821,10,31,20,0.0 +14821,2,19,40,0.0 +14821,45,9.5,31,0.0 +14821,58,13.25,16,0.0 +14821,66,17,27,0.0 +14821,40,18.4,47,0.0 +14821,7,30,1,0.0 +14821,4,22,37,0.0 +14821,60,34,8,0.0 +14821,56,38,23,0.0 +14821,53,32.8,45,0.0 +14821,3,10,13,0.0 +14821,23,9,48,0.0 +14821,9,97,9,0.0 +14821,50,16.25,7,0.0 +14821,76,18,46,0.0 +14821,30,25.89,19,0.0 +14821,27,43.9,46,0.0 +14821,65,21.05,49,0.0 +14821,15,15.5,46,0.0 +14821,20,81,49,0.0 +14821,17,39,42,0.0 +14821,35,18,47,0.0 +14821,71,21.5,14,0.0 +14821,11,21,7,0.0 +14821,59,55,49,0.0 +14821,63,43.9,49,0.0 +14821,32,32,32,0.0 +14821,13,6,23,0.0 +14821,31,12.5,41,0.0 +14822,19,9.2,41,0.0 +14822,22,21,3,0.0 +14822,6,25,28,0.0 +14822,10,31,25,0.0 +14822,51,53,3,0.0 +14822,29,123.79,4,0.0 +14822,20,81,22,0.0 +14822,5,21.35,27,0.0 +14822,67,14,38,0.0 +14822,34,14,24,0.0 +14822,63,43.9,46,0.0 +14822,18,62.5,34,0.0 +14822,4,22,39,0.0 +14822,60,34,27,0.0 +14822,77,13,29,0.0 +14822,13,6,12,0.0 +14822,8,40,14,0.0 +14822,14,23.25,26,0.0 +14822,38,263.5,16,0.0 +14822,26,31.23,24,0.0 +14822,59,55,29,0.0 +14822,24,4.5,30,0.0 +14822,28,45.6,30,0.0 +14822,9,97,50,0.0 +14822,65,21.05,23,0.0 +14822,2,19,33,0.0 +14822,50,16.25,28,0.0 +14822,69,36,37,0.0 +14822,32,32,7,0.0 +14822,15,15.5,23,0.0 +14822,35,18,20,0.0 +14822,66,17,44,0.0 +14822,46,12,36,0.0 +14822,1,18,17,0.0 +14822,71,21.5,3,0.0 +14822,43,46,13,0.0 +14822,37,26,36,0.0 +14822,54,7.45,49,0.0 +14822,68,12.5,30,0.0 +14822,7,30,4,0.0 +14822,42,14,2,0.0 +14822,11,21,34,0.0 +14822,70,15,26,0.0 +14822,3,10,19,0.0 +14822,23,9,46,0.0 +14822,76,18,34,0.0 +14822,27,43.9,46,0.0 +14822,74,10,44,0.0 +14822,31,12.5,17,0.0 +14822,58,13.25,19,0.0 +14822,48,12.75,23,0.0 +14822,44,19.45,34,0.0 +14822,41,9.65,22,0.0 +14822,73,15,23,0.0 +14822,53,32.8,23,0.0 +14822,49,20,26,0.0 +14822,64,33.25,37,0.0 +14822,36,19,2,0.0 +14822,47,9.5,9,0.0 +14822,62,49.3,35,0.0 +14822,30,25.89,9,0.0 +14822,55,24,38,0.0 +14822,21,10,42,0.0 +14822,16,17.45,14,0.0 +14822,61,28.5,35,0.0 +14822,40,18.4,1,0.0 +14822,33,2.5,45,0.0 +14822,57,19.5,28,0.0 +14822,39,18,16,0.0 +14822,45,9.5,2,0.0 +14822,17,39,12,0.0 +14822,25,14,50,0.0 +14822,52,7,32,0.0 +14822,72,34.8,25,0.0 +14823,68,12.5,12,0.0 +14823,39,18,7,0.0 +14823,57,19.5,43,0.0 +14823,12,38,33,0.0 +14823,73,15,28,0.0 +14823,4,22,23,0.0 +14823,77,13,40,0.0 +14823,20,81,1,0.0 +14823,50,16.25,24,0.0 +14823,34,14,18,0.0 +14823,3,10,16,0.0 +14823,25,14,7,0.0 +14823,26,31.23,50,0.0 +14823,35,18,9,0.0 +14823,76,18,23,0.0 +14823,28,45.6,16,0.0 +14823,63,43.9,38,0.0 +14823,19,9.2,1,0.0 +14823,6,25,28,0.0 +14823,31,12.5,8,0.0 +14823,47,9.5,18,0.0 +14824,25,14,37,0.0 +14824,4,22,25,0.0 +14824,26,31.23,29,0.0 +14824,71,21.5,47,0.0 +14824,20,81,48,0.0 +14824,28,45.6,9,0.0 +14824,31,12.5,16,0.0 +14824,77,13,28,0.0 +14824,39,18,49,0.0 +14824,10,31,10,0.0 +14824,34,14,13,0.0 +14824,29,123.79,5,0.0 +14824,76,18,50,0.0 +14824,15,15.5,38,0.0 +14824,48,12.75,27,0.0 +14824,67,14,17,0.0 +14824,1,18,28,0.0 +14824,65,21.05,11,0.0 +14824,27,43.9,11,0.0 +14824,50,16.25,23,0.0 +14824,61,28.5,45,0.0 +14824,6,25,16,0.0 +14824,49,20,14,0.0 +14824,13,6,2,0.0 +14824,69,36,5,0.0 +14824,19,9.2,28,0.0 +14824,47,9.5,6,0.0 +14825,28,45.6,5,0.0 +14825,30,25.89,4,0.0 +14825,74,10,12,0.0 +14825,13,6,27,0.0 +14825,65,21.05,17,0.0 +14825,47,9.5,21,0.0 +14825,11,21,31,0.0 +14825,14,23.25,33,0.0 +14825,70,15,49,0.0 +14825,69,36,19,0.0 +14825,38,263.5,18,0.0 +14825,68,12.5,31,0.0 +14825,54,7.45,25,0.0 +14825,61,28.5,30,0.0 +14825,31,12.5,35,0.0 +14825,51,53,8,0.0 +14825,55,24,32,0.0 +14825,52,7,19,0.0 +14825,53,32.8,3,0.0 +14825,29,123.79,28,0.0 +14825,25,14,23,0.0 +14825,35,18,4,0.0 +14825,32,32,33,0.0 +14826,5,21.35,43,0.0 +14826,32,32,47,0.0 +14826,53,32.8,2,0.0 +14826,16,17.45,28,0.0 +14826,46,12,10,0.0 +14826,60,34,10,0.0 +14826,44,19.45,5,0.0 +14826,74,10,42,0.0 +14826,56,38,19,0.0 +14826,10,31,6,0.0 +14826,58,13.25,28,0.0 +14826,36,19,48,0.0 +14826,43,46,36,0.0 +14826,50,16.25,48,0.0 +14826,59,55,42,0.0 +14826,37,26,23,0.0 +14826,9,97,21,0.0 +14826,47,9.5,16,0.0 +14826,19,9.2,34,0.0 +14826,23,9,19,0.0 +14826,40,18.4,49,0.0 +14826,33,2.5,9,0.0 +14826,18,62.5,27,0.0 +14826,8,40,3,0.0 +14826,39,18,34,0.0 +14826,14,23.25,26,0.0 +14826,26,31.23,30,0.0 +14826,13,6,25,0.0 +14826,65,21.05,25,0.0 +14826,35,18,45,0.0 +14826,21,10,18,0.0 +14826,70,15,44,0.0 +14826,15,15.5,1,0.0 +14826,54,7.45,35,0.0 +14826,1,18,48,0.0 +14827,21,10,45,0.0 +14827,76,18,20,0.0 +14827,29,123.79,14,0.0 +14827,49,20,21,0.0 +14827,74,10,5,0.0 +14827,23,9,18,0.0 +14827,41,9.65,26,0.0 +14827,10,31,19,0.0 +14827,25,14,36,0.0 +14827,57,19.5,9,0.0 +14827,17,39,34,0.0 +14827,4,22,32,0.0 +14827,75,7.75,4,0.0 +14827,54,7.45,47,0.0 +14827,66,17,30,0.0 +14827,15,15.5,29,0.0 +14827,63,43.9,43,0.0 +14827,7,30,28,0.0 +14827,58,13.25,11,0.0 +14827,2,19,39,0.0 +14827,53,32.8,39,0.0 +14827,8,40,30,0.0 +14827,38,263.5,2,0.0 +14827,46,12,38,0.0 +14827,48,12.75,29,0.0 +14827,27,43.9,22,0.0 +14827,51,53,3,0.0 +14827,44,19.45,25,0.0 +14827,64,33.25,2,0.0 +14827,35,18,5,0.0 +14828,50,16.25,13,0.0 +14828,52,7,17,0.0 +14828,58,13.25,50,0.0 +14828,75,7.75,2,0.0 +14828,14,23.25,42,0.0 +14828,12,38,26,0.0 +14828,64,33.25,35,0.0 +14828,26,31.23,20,0.0 +14828,72,34.8,36,0.0 +14828,5,21.35,15,0.0 +14828,37,26,47,0.0 +14828,55,24,34,0.0 +14828,66,17,47,0.0 +14828,22,21,35,0.0 +14828,56,38,22,0.0 +14828,44,19.45,47,0.0 +14828,19,9.2,4,0.0 +14828,35,18,16,0.0 +14828,4,22,10,0.0 +14828,70,15,38,0.0 +14828,57,19.5,26,0.0 +14828,42,14,8,0.0 +14828,30,25.89,22,0.0 +14828,51,53,49,0.0 +14828,54,7.45,36,0.0 +14828,60,34,1,0.0 +14829,60,34,12,0.0 +14829,28,45.6,30,0.0 +14829,67,14,42,0.0 +14829,32,32,7,0.0 +14829,6,25,9,0.0 +14829,40,18.4,42,0.0 +14829,25,14,45,0.0 +14829,63,43.9,13,0.0 +14829,71,21.5,3,0.0 +14829,10,31,3,0.0 +14829,36,19,8,0.0 +14829,38,263.5,16,0.0 +14829,29,123.79,12,0.0 +14829,30,25.89,1,0.0 +14829,39,18,7,0.0 +14829,14,23.25,5,0.0 +14829,75,7.75,22,0.0 +14829,26,31.23,15,0.0 +14829,73,15,19,0.0 +14829,69,36,7,0.0 +14829,18,62.5,16,0.0 +14829,47,9.5,30,0.0 +14829,33,2.5,32,0.0 +14829,22,21,5,0.0 +14829,55,24,37,0.0 +14829,24,4.5,5,0.0 +14830,71,21.5,50,0.0 +14830,10,31,37,0.0 +14830,4,22,23,0.0 +14830,5,21.35,12,0.0 +14830,67,14,6,0.0 +14830,40,18.4,8,0.0 +14830,20,81,24,0.0 +14830,31,12.5,44,0.0 +14830,27,43.9,3,0.0 +14830,15,15.5,37,0.0 +14830,18,62.5,5,0.0 +14830,70,15,2,0.0 +14830,8,40,35,0.0 +14830,25,14,31,0.0 +14830,1,18,14,0.0 +14830,42,14,13,0.0 +14830,36,19,24,0.0 +14830,45,9.5,21,0.0 +14830,69,36,46,0.0 +14830,19,9.2,26,0.0 +14830,3,10,40,0.0 +14830,77,13,8,0.0 +14830,44,19.45,50,0.0 +14830,60,34,12,0.0 +14830,11,21,21,0.0 +14830,12,38,50,0.0 +14830,39,18,20,0.0 +14830,62,49.3,50,0.0 +14830,22,21,44,0.0 +14830,59,55,22,0.0 +14830,61,28.5,19,0.0 +14830,53,32.8,31,0.0 +14830,74,10,13,0.0 +14830,55,24,33,0.0 +14830,63,43.9,45,0.0 +14830,49,20,38,0.0 +14830,54,7.45,3,0.0 +14830,35,18,17,0.0 +14830,52,7,7,0.0 +14830,41,9.65,21,0.0 +14830,6,25,41,0.0 +14830,28,45.6,42,0.0 +14830,17,39,20,0.0 +14830,51,53,49,0.0 +14830,68,12.5,27,0.0 +14830,32,32,10,0.0 +14830,34,14,26,0.0 +14830,7,30,22,0.0 +14830,76,18,40,0.0 +14830,26,31.23,24,0.0 +14830,33,2.5,8,0.0 +14830,14,23.25,47,0.0 +14830,47,9.5,40,0.0 +14831,27,43.9,8,0.0 +14831,35,18,33,0.0 +14831,31,12.5,7,0.0 +14831,39,18,37,0.0 +14831,56,38,34,0.0 +14831,3,10,5,0.0 +14831,14,23.25,2,0.0 +14831,33,2.5,7,0.0 +14831,6,25,31,0.0 +14831,29,123.79,21,0.0 +14831,1,18,6,0.0 +14831,73,15,31,0.0 +14831,23,9,2,0.0 +14831,76,18,36,0.0 +14831,58,13.25,20,0.0 +14831,12,38,46,0.0 +14831,48,12.75,41,0.0 +14831,61,28.5,3,0.0 +14831,57,19.5,9,0.0 +14831,15,15.5,11,0.0 +14831,51,53,9,0.0 +14831,24,4.5,42,0.0 +14831,18,62.5,32,0.0 +14831,72,34.8,14,0.0 +14831,34,14,41,0.0 +14831,17,39,37,0.0 +14831,69,36,17,0.0 +14831,13,6,46,0.0 +14831,30,25.89,44,0.0 +14831,75,7.75,37,0.0 +14831,68,12.5,48,0.0 +14831,43,46,9,0.0 +14831,4,22,32,0.0 +14831,67,14,48,0.0 +14831,41,9.65,15,0.0 +14831,5,21.35,14,0.0 +14831,62,49.3,27,0.0 +14831,45,9.5,26,0.0 +14831,28,45.6,17,0.0 +14831,52,7,14,0.0 +14831,71,21.5,5,0.0 +14831,42,14,40,0.0 +14831,55,24,42,0.0 +14831,7,30,2,0.0 +14831,16,17.45,50,0.0 +14831,21,10,49,0.0 +14831,65,21.05,19,0.0 +14831,8,40,41,0.0 +14831,2,19,13,0.0 +14831,64,33.25,3,0.0 +14831,22,21,1,0.0 +14832,25,14,49,0.0 +14832,30,25.89,1,0.0 +14832,8,40,2,0.0 +14832,24,4.5,38,0.0 +14832,40,18.4,32,0.0 +14832,27,43.9,35,0.0 +14832,50,16.25,27,0.0 +14832,13,6,17,0.0 +14832,56,38,25,0.0 +14832,68,12.5,36,0.0 +14832,58,13.25,42,0.0 +14832,36,19,10,0.0 +14832,5,21.35,33,0.0 +14832,28,45.6,46,0.0 +14832,75,7.75,38,0.0 +14832,35,18,37,0.0 +14832,45,9.5,17,0.0 +14832,59,55,19,0.0 +14832,48,12.75,26,0.0 +14832,74,10,6,0.0 +14832,1,18,27,0.0 +14832,54,7.45,10,0.0 +14832,71,21.5,36,0.0 +14832,38,263.5,47,0.0 +14832,77,13,33,0.0 +14832,46,12,35,0.0 +14832,55,24,49,0.0 +14832,62,49.3,16,0.0 +14832,49,20,40,0.0 +14832,33,2.5,24,0.0 +14832,31,12.5,30,0.0 +14832,51,53,34,0.0 +14832,52,7,21,0.0 +14832,43,46,22,0.0 +14832,63,43.9,31,0.0 +14832,67,14,14,0.0 +14832,23,9,14,0.0 +14832,44,19.45,20,0.0 +14832,3,10,4,0.0 +14832,9,97,13,0.0 +14832,15,15.5,33,0.0 +14832,7,30,27,0.0 +14832,72,34.8,4,0.0 +14832,20,81,45,0.0 +14832,10,31,28,0.0 +14832,39,18,25,0.0 +14832,47,9.5,45,0.0 +14832,21,10,45,0.0 +14832,18,62.5,38,0.0 +14832,37,26,11,0.0 +14832,6,25,24,0.0 +14832,12,38,18,0.0 +14832,73,15,25,0.0 +14833,34,14,5,0.0 +14833,27,43.9,32,0.0 +14833,39,18,5,0.0 +14833,18,62.5,37,0.0 +14833,1,18,8,0.0 +14833,45,9.5,18,0.0 +14833,29,123.79,24,0.0 +14833,33,2.5,23,0.0 +14833,55,24,5,0.0 +14833,51,53,39,0.0 +14833,15,15.5,38,0.0 +14833,20,81,2,0.0 +14833,43,46,28,0.0 +14833,49,20,16,0.0 +14833,67,14,41,0.0 +14833,4,22,36,0.0 +14833,23,9,18,0.0 +14833,17,39,12,0.0 +14834,21,10,1,0.0 +14834,33,2.5,19,0.0 +14834,13,6,23,0.0 +14834,73,15,2,0.0 +14834,44,19.45,13,0.0 +14834,54,7.45,3,0.0 +14834,3,10,28,0.0 +14834,65,21.05,34,0.0 +14834,32,32,3,0.0 +14834,46,12,34,0.0 +14834,56,38,9,0.0 +14834,51,53,9,0.0 +14834,42,14,10,0.0 +14834,63,43.9,13,0.0 +14834,36,19,50,0.0 +14834,75,7.75,4,0.0 +14834,57,19.5,28,0.0 +14834,52,7,20,0.0 +14834,41,9.65,45,0.0 +14834,66,17,46,0.0 +14834,4,22,10,0.0 +14834,74,10,17,0.0 +14835,6,25,14,0.0 +14835,11,21,44,0.0 +14835,71,21.5,19,0.0 +14835,16,17.45,42,0.0 +14835,35,18,19,0.0 +14835,40,18.4,43,0.0 +14835,49,20,22,0.0 +14835,41,9.65,6,0.0 +14835,22,21,13,0.0 +14835,9,97,7,0.0 +14835,48,12.75,23,0.0 +14835,64,33.25,38,0.0 +14835,26,31.23,14,0.0 +14835,54,7.45,36,0.0 +14835,18,62.5,27,0.0 +14835,65,21.05,50,0.0 +14835,59,55,49,0.0 +14835,72,34.8,45,0.0 +14835,42,14,10,0.0 +14835,24,4.5,33,0.0 +14835,44,19.45,2,0.0 +14835,8,40,30,0.0 +14835,31,12.5,2,0.0 +14835,47,9.5,32,0.0 +14835,73,15,48,0.0 +14835,12,38,16,0.0 +14835,76,18,47,0.0 +14835,56,38,37,0.0 +14835,21,10,40,0.0 +14835,75,7.75,28,0.0 +14835,63,43.9,38,0.0 +14835,45,9.5,47,0.0 +14835,39,18,17,0.0 +14835,37,26,15,0.0 +14836,3,10,26,0.0 +14836,9,97,1,0.0 +14836,48,12.75,34,0.0 +14836,11,21,13,0.0 +14836,42,14,35,0.0 +14837,33,2.5,45,0.0 +14837,30,25.89,41,0.0 +14837,62,49.3,49,0.0 +14837,37,26,42,0.0 +14837,42,14,8,0.0 +14837,26,31.23,17,0.0 +14837,76,18,24,0.0 +14837,64,33.25,16,0.0 +14837,56,38,4,0.0 +14837,25,14,23,0.0 +14837,61,28.5,4,0.0 +14837,54,7.45,11,0.0 +14837,18,62.5,45,0.0 +14837,75,7.75,3,0.0 +14837,67,14,46,0.0 +14837,14,23.25,21,0.0 +14837,63,43.9,15,0.0 +14837,71,21.5,40,0.0 +14837,35,18,27,0.0 +14837,41,9.65,10,0.0 +14837,9,97,43,0.0 +14837,40,18.4,18,0.0 +14837,17,39,9,0.0 +14837,11,21,1,0.0 +14837,58,13.25,23,0.0 +14837,57,19.5,45,0.0 +14837,36,19,48,0.0 +14837,68,12.5,34,0.0 +14837,43,46,45,0.0 +14837,46,12,19,0.0 +14837,69,36,10,0.0 +14837,16,17.45,15,0.0 +14837,59,55,41,0.0 +14837,45,9.5,8,0.0 +14837,49,20,20,0.0 +14837,39,18,13,0.0 +14837,51,53,26,0.0 +14837,12,38,49,0.0 +14837,47,9.5,39,0.0 +14837,4,22,31,0.0 +14838,51,53,6,0.0 +14838,3,10,31,0.0 +14838,22,21,16,0.0 +14838,59,55,36,0.0 +14838,26,31.23,13,0.0 +14838,62,49.3,50,0.0 +14838,49,20,49,0.0 +14838,27,43.9,7,0.0 +14838,15,15.5,41,0.0 +14838,31,12.5,24,0.0 +14838,14,23.25,3,0.0 +14838,48,12.75,1,0.0 +14838,76,18,47,0.0 +14838,30,25.89,3,0.0 +14838,52,7,11,0.0 +14838,17,39,7,0.0 +14838,73,15,21,0.0 +14838,12,38,8,0.0 +14838,63,43.9,33,0.0 +14838,39,18,4,0.0 +14838,6,25,13,0.0 +14838,56,38,49,0.0 +14838,41,9.65,32,0.0 +14838,72,34.8,6,0.0 +14838,66,17,3,0.0 +14839,67,14,35,0.0 +14839,15,15.5,34,0.0 +14839,2,19,46,0.0 +14839,36,19,22,0.0 +14839,10,31,17,0.0 +14839,59,55,37,0.0 +14839,28,45.6,3,0.0 +14839,19,9.2,39,0.0 +14839,55,24,49,0.0 +14839,16,17.45,49,0.0 +14839,25,14,13,0.0 +14839,42,14,43,0.0 +14839,39,18,28,0.0 +14839,14,23.25,28,0.0 +14839,41,9.65,43,0.0 +14839,69,36,39,0.0 +14839,27,43.9,15,0.0 +14839,56,38,20,0.0 +14839,65,21.05,47,0.0 +14839,49,20,22,0.0 +14839,9,97,13,0.0 +14839,53,32.8,37,0.0 +14839,21,10,19,0.0 +14839,29,123.79,41,0.0 +14839,33,2.5,14,0.0 +14839,6,25,35,0.0 +14840,54,7.45,13,0.0 +14840,59,55,26,0.0 +14840,2,19,5,0.0 +14840,49,20,11,0.0 +14840,26,31.23,2,0.0 +14840,75,7.75,33,0.0 +14840,74,10,6,0.0 +14840,42,14,7,0.0 +14840,68,12.5,47,0.0 +14840,38,263.5,31,0.0 +14840,55,24,41,0.0 +14840,56,38,11,0.0 +14840,52,7,8,0.0 +14840,12,38,34,0.0 +14840,31,12.5,23,0.0 +14840,71,21.5,46,0.0 +14840,17,39,19,0.0 +14840,62,49.3,30,0.0 +14840,11,21,14,0.0 +14840,36,19,14,0.0 +14840,63,43.9,34,0.0 +14840,37,26,43,0.0 +14840,7,30,40,0.0 +14840,19,9.2,42,0.0 +14840,9,97,14,0.0 +14840,13,6,1,0.0 +14840,47,9.5,20,0.0 +14840,60,34,9,0.0 +14840,43,46,42,0.0 +14840,14,23.25,44,0.0 +14840,30,25.89,13,0.0 +14840,58,13.25,10,0.0 +14840,65,21.05,7,0.0 +14840,3,10,17,0.0 +14841,40,18.4,3,0.0 +14841,1,18,23,0.0 +14841,59,55,12,0.0 +14841,51,53,25,0.0 +14841,61,28.5,20,0.0 +14841,24,4.5,7,0.0 +14841,74,10,32,0.0 +14841,2,19,22,0.0 +14841,8,40,9,0.0 +14841,49,20,9,0.0 +14841,36,19,10,0.0 +14841,14,23.25,6,0.0 +14841,18,62.5,2,0.0 +14841,65,21.05,44,0.0 +14841,60,34,13,0.0 +14841,57,19.5,9,0.0 +14841,62,49.3,1,0.0 +14841,31,12.5,40,0.0 +14841,58,13.25,45,0.0 +14841,44,19.45,23,0.0 +14841,39,18,43,0.0 +14841,29,123.79,16,0.0 +14842,33,2.5,27,0.0 +14842,24,4.5,26,0.0 +14842,72,34.8,14,0.0 +14842,70,15,16,0.0 +14842,43,46,29,0.0 +14842,41,9.65,4,0.0 +14842,22,21,30,0.0 +14842,17,39,14,0.0 +14842,47,9.5,6,0.0 +14842,46,12,10,0.0 +14842,32,32,19,0.0 +14842,45,9.5,41,0.0 +14842,69,36,6,0.0 +14842,63,43.9,13,0.0 +14842,19,9.2,41,0.0 +14842,61,28.5,4,0.0 +14842,1,18,21,0.0 +14842,56,38,37,0.0 +14842,2,19,9,0.0 +14842,8,40,18,0.0 +14842,21,10,20,0.0 +14842,38,263.5,29,0.0 +14842,3,10,10,0.0 +14842,34,14,50,0.0 +14843,24,4.5,38,0.0 +14843,45,9.5,3,0.0 +14843,65,21.05,46,0.0 +14843,1,18,3,0.0 +14843,62,49.3,34,0.0 +14843,38,263.5,42,0.0 +14843,31,12.5,13,0.0 +14843,35,18,42,0.0 +14843,27,43.9,18,0.0 +14843,3,10,39,0.0 +14844,72,34.8,47,0.0 +14844,54,7.45,27,0.0 +14845,52,7,48,0.0 +14845,1,18,31,0.0 +14845,73,15,40,0.0 +14845,63,43.9,33,0.0 +14845,36,19,16,0.0 +14845,61,28.5,16,0.0 +14845,51,53,36,0.0 +14845,13,6,49,0.0 +14845,58,13.25,3,0.0 +14845,6,25,49,0.0 +14845,72,34.8,35,0.0 +14845,20,81,36,0.0 +14845,74,10,49,0.0 +14845,15,15.5,20,0.0 +14845,71,21.5,31,0.0 +14845,18,62.5,28,0.0 +14845,4,22,21,0.0 +14845,5,21.35,23,0.0 +14845,16,17.45,19,0.0 +14845,76,18,11,0.0 +14845,77,13,4,0.0 +14845,62,49.3,13,0.0 +14845,19,9.2,23,0.0 +14845,40,18.4,14,0.0 +14845,65,21.05,7,0.0 +14845,23,9,5,0.0 +14845,46,12,29,0.0 +14845,47,9.5,27,0.0 +14845,66,17,3,0.0 +14845,60,34,15,0.0 +14845,21,10,23,0.0 +14845,29,123.79,35,0.0 +14845,2,19,39,0.0 +14845,70,15,22,0.0 +14845,64,33.25,5,0.0 +14845,44,19.45,16,0.0 +14845,10,31,22,0.0 +14845,45,9.5,31,0.0 +14845,56,38,42,0.0 +14846,47,9.5,26,0.0 +14846,62,49.3,1,0.0 +14846,46,12,5,0.0 +14846,36,19,50,0.0 +14846,18,62.5,27,0.0 +14846,2,19,26,0.0 +14846,13,6,26,0.0 +14846,34,14,3,0.0 +14846,16,17.45,9,0.0 +14846,4,22,17,0.0 +14846,52,7,4,0.0 +14846,71,21.5,45,0.0 +14846,63,43.9,45,0.0 +14846,23,9,22,0.0 +14846,20,81,5,0.0 +14846,3,10,41,0.0 +14846,38,263.5,16,0.0 +14846,70,15,33,0.0 +14846,50,16.25,10,0.0 +14846,21,10,8,0.0 +14846,75,7.75,4,0.0 +14846,72,34.8,25,0.0 +14846,10,31,48,0.0 +14846,30,25.89,26,0.0 +14846,40,18.4,19,0.0 +14846,49,20,27,0.0 +14846,39,18,3,0.0 +14846,5,21.35,1,0.0 +14846,22,21,46,0.0 +14846,32,32,9,0.0 +14846,41,9.65,31,0.0 +14846,28,45.6,26,0.0 +14846,56,38,8,0.0 +14846,74,10,6,0.0 +14846,43,46,8,0.0 +14846,44,19.45,21,0.0 +14846,12,38,46,0.0 +14846,68,12.5,13,0.0 +14846,27,43.9,22,0.0 +14846,67,14,32,0.0 +14846,48,12.75,29,0.0 +14846,53,32.8,31,0.0 +14846,6,25,44,0.0 +14846,1,18,42,0.0 +14846,76,18,45,0.0 +14846,58,13.25,12,0.0 +14846,19,9.2,12,0.0 +14846,65,21.05,15,0.0 +14846,37,26,2,0.0 +14847,38,263.5,4,0.0 +14847,48,12.75,28,0.0 +14847,37,26,11,0.0 +14847,35,18,24,0.0 +14847,16,17.45,13,0.0 +14847,2,19,37,0.0 +14847,40,18.4,2,0.0 +14847,53,32.8,4,0.0 +14847,67,14,39,0.0 +14847,49,20,6,0.0 +14847,33,2.5,14,0.0 +14847,39,18,18,0.0 +14847,3,10,11,0.0 +14847,26,31.23,41,0.0 +14847,17,39,33,0.0 +14847,30,25.89,45,0.0 +14847,19,9.2,47,0.0 +14847,73,15,4,0.0 +14847,64,33.25,39,0.0 +14847,32,32,5,0.0 +14847,46,12,49,0.0 +14847,58,13.25,11,0.0 +14847,68,12.5,39,0.0 +14847,71,21.5,41,0.0 +14847,52,7,50,0.0 +14847,24,4.5,27,0.0 +14847,74,10,20,0.0 +14847,57,19.5,6,0.0 +14847,77,13,41,0.0 +14847,21,10,38,0.0 +14847,4,22,29,0.0 +14847,59,55,41,0.0 +14847,13,6,22,0.0 +14847,43,46,1,0.0 +14847,62,49.3,26,0.0 +14847,51,53,34,0.0 +14847,14,23.25,4,0.0 +14847,7,30,41,0.0 +14847,8,40,35,0.0 +14847,41,9.65,45,0.0 +14847,28,45.6,41,0.0 +14847,34,14,47,0.0 +14847,42,14,4,0.0 +14847,50,16.25,20,0.0 +14847,65,21.05,29,0.0 +14848,48,12.75,44,0.0 +14848,76,18,4,0.0 +14848,68,12.5,20,0.0 +14848,71,21.5,31,0.0 +14848,47,9.5,46,0.0 +14848,11,21,28,0.0 +14848,70,15,49,0.0 +14848,73,15,26,0.0 +14848,36,19,8,0.0 +14848,18,62.5,37,0.0 +14848,41,9.65,38,0.0 +14848,19,9.2,23,0.0 +14848,27,43.9,38,0.0 +14848,35,18,32,0.0 +14848,62,49.3,35,0.0 +14848,45,9.5,50,0.0 +14848,64,33.25,34,0.0 +14848,54,7.45,1,0.0 +14848,39,18,50,0.0 +14848,13,6,14,0.0 +14848,33,2.5,25,0.0 +14848,60,34,4,0.0 +14848,46,12,18,0.0 +14848,31,12.5,48,0.0 +14849,4,22,10,0.0 +14849,41,9.65,50,0.0 +14849,15,15.5,21,0.0 +14849,75,7.75,50,0.0 +14849,26,31.23,12,0.0 +14849,45,9.5,8,0.0 +14849,6,25,11,0.0 +14849,74,10,47,0.0 +14849,40,18.4,47,0.0 +14849,22,21,25,0.0 +14849,14,23.25,5,0.0 +14849,67,14,46,0.0 +14849,27,43.9,43,0.0 +14849,33,2.5,8,0.0 +14849,18,62.5,50,0.0 +14849,35,18,8,0.0 +14849,65,21.05,36,0.0 +14849,43,46,11,0.0 +14849,13,6,32,0.0 +14849,17,39,38,0.0 +14849,63,43.9,39,0.0 +14849,44,19.45,35,0.0 +14849,19,9.2,23,0.0 +14849,20,81,44,0.0 +14849,50,16.25,46,0.0 +14849,46,12,38,0.0 +14849,52,7,47,0.0 +14849,10,31,37,0.0 +14849,54,7.45,24,0.0 +14849,23,9,49,0.0 +14849,58,13.25,29,0.0 +14849,31,12.5,23,0.0 +14849,9,97,33,0.0 +14849,32,32,24,0.0 +14849,28,45.6,47,0.0 +14849,73,15,22,0.0 +14849,48,12.75,40,0.0 +14849,72,34.8,35,0.0 +14849,76,18,30,0.0 +14849,1,18,13,0.0 +14849,5,21.35,21,0.0 +14849,30,25.89,10,0.0 +14850,10,31,47,0.0 +14850,59,55,43,0.0 +14850,60,34,49,0.0 +14850,61,28.5,16,0.0 +14850,62,49.3,6,0.0 +14850,31,12.5,42,0.0 +14850,5,21.35,32,0.0 +14850,51,53,23,0.0 +14850,53,32.8,1,0.0 +14850,71,21.5,44,0.0 +14850,40,18.4,1,0.0 +14850,70,15,23,0.0 +14850,34,14,15,0.0 +14850,47,9.5,37,0.0 +14850,42,14,46,0.0 +14850,25,14,31,0.0 +14850,22,21,9,0.0 +14850,37,26,22,0.0 +14850,73,15,36,0.0 +14850,44,19.45,14,0.0 +14850,28,45.6,17,0.0 +14850,6,25,12,0.0 +14850,33,2.5,3,0.0 +14850,39,18,29,0.0 +14850,3,10,21,0.0 +14850,77,13,8,0.0 +14850,48,12.75,7,0.0 +14850,74,10,15,0.0 +14850,11,21,26,0.0 +14850,54,7.45,6,0.0 +14850,75,7.75,4,0.0 +14850,9,97,48,0.0 +14850,1,18,30,0.0 +14850,49,20,50,0.0 +14850,67,14,18,0.0 +14850,20,81,48,0.0 +14850,21,10,26,0.0 +14850,14,23.25,20,0.0 +14850,36,19,12,0.0 +14850,19,9.2,23,0.0 +14850,15,15.5,50,0.0 +14850,27,43.9,19,0.0 +14850,65,21.05,26,0.0 +14850,8,40,12,0.0 +14850,4,22,3,0.0 +14850,29,123.79,18,0.0 +14850,16,17.45,44,0.0 +14850,7,30,39,0.0 +14850,12,38,27,0.0 +14850,72,34.8,19,0.0 +14850,18,62.5,37,0.0 +14850,76,18,13,0.0 +14850,58,13.25,21,0.0 +14850,66,17,45,0.0 +14850,46,12,26,0.0 +14850,30,25.89,39,0.0 +14850,2,19,29,0.0 +14850,56,38,16,0.0 +14850,32,32,41,0.0 +14850,63,43.9,30,0.0 +14850,52,7,1,0.0 +14851,73,15,28,0.0 +14851,70,15,20,0.0 +14851,2,19,12,0.0 +14851,1,18,9,0.0 +14851,19,9.2,45,0.0 +14851,64,33.25,6,0.0 +14851,48,12.75,8,0.0 +14851,18,62.5,35,0.0 +14851,36,19,5,0.0 +14851,29,123.79,33,0.0 +14851,55,24,46,0.0 +14851,50,16.25,14,0.0 +14851,6,25,45,0.0 +14851,53,32.8,18,0.0 +14851,68,12.5,5,0.0 +14851,10,31,18,0.0 +14851,58,13.25,1,0.0 +14851,26,31.23,41,0.0 +14851,9,97,3,0.0 +14851,32,32,8,0.0 +14851,39,18,23,0.0 +14851,76,18,25,0.0 +14851,69,36,5,0.0 +14851,30,25.89,14,0.0 +14851,16,17.45,40,0.0 +14851,77,13,45,0.0 +14851,25,14,21,0.0 +14851,67,14,8,0.0 +14851,28,45.6,31,0.0 +14851,60,34,18,0.0 +14851,56,38,32,0.0 +14851,33,2.5,30,0.0 +14851,72,34.8,48,0.0 +14851,54,7.45,48,0.0 +14852,45,9.5,9,0.0 +14852,18,62.5,32,0.0 +14852,14,23.25,43,0.0 +14852,24,4.5,3,0.0 +14852,61,28.5,15,0.0 +14852,27,43.9,49,0.0 +14852,48,12.75,41,0.0 +14852,29,123.79,43,0.0 +14852,11,21,11,0.0 +14852,40,18.4,45,0.0 +14852,33,2.5,31,0.0 +14852,7,30,32,0.0 +14852,58,13.25,4,0.0 +14852,20,81,43,0.0 +14852,28,45.6,46,0.0 +14852,1,18,31,0.0 +14852,76,18,36,0.0 +14852,19,9.2,39,0.0 +14852,67,14,26,0.0 +14852,75,7.75,24,0.0 +14852,47,9.5,22,0.0 +14852,66,17,9,0.0 +14852,12,38,21,0.0 +14852,62,49.3,50,0.0 +14852,55,24,23,0.0 +14852,15,15.5,9,0.0 +14852,42,14,27,0.0 +14852,5,21.35,21,0.0 +14852,70,15,39,0.0 +14852,60,34,41,0.0 +14852,4,22,7,0.0 +14852,68,12.5,8,0.0 +14852,74,10,28,0.0 +14852,56,38,11,0.0 +14852,36,19,11,0.0 +14852,65,21.05,34,0.0 +14852,34,14,16,0.0 +14852,3,10,9,0.0 +14852,46,12,5,0.0 +14852,41,9.65,39,0.0 +14852,30,25.89,38,0.0 +14852,10,31,34,0.0 +14852,32,32,44,0.0 +14852,37,26,19,0.0 +14852,49,20,11,0.0 +14852,26,31.23,50,0.0 +14852,51,53,8,0.0 +14852,57,19.5,30,0.0 +14852,59,55,29,0.0 +14852,22,21,45,0.0 +14852,73,15,40,0.0 +14852,64,33.25,48,0.0 +14852,31,12.5,35,0.0 +14852,25,14,49,0.0 +14853,43,46,44,0.0 +14853,40,18.4,50,0.0 +14853,46,12,16,0.0 +14853,71,21.5,1,0.0 +14853,28,45.6,24,0.0 +14853,77,13,4,0.0 +14853,24,4.5,38,0.0 +14853,74,10,35,0.0 +14853,48,12.75,34,0.0 +14853,20,81,26,0.0 +14853,54,7.45,42,0.0 +14853,55,24,32,0.0 +14853,41,9.65,9,0.0 +14853,15,15.5,9,0.0 +14853,51,53,20,0.0 +14853,50,16.25,31,0.0 +14854,68,12.5,25,0.0 +14854,6,25,26,0.0 +14854,71,21.5,46,0.0 +14854,7,30,29,0.0 +14854,40,18.4,1,0.0 +14854,4,22,3,0.0 +14854,35,18,26,0.0 +14854,19,9.2,29,0.0 +14854,70,15,18,0.0 +14854,10,31,17,0.0 +14854,56,38,5,0.0 +14854,12,38,43,0.0 +14854,77,13,26,0.0 +14854,5,21.35,21,0.0 +14854,30,25.89,9,0.0 +14854,37,26,5,0.0 +14854,3,10,49,0.0 +14854,1,18,37,0.0 +14854,36,19,20,0.0 +14854,51,53,31,0.0 +14854,27,43.9,10,0.0 +14854,28,45.6,21,0.0 +14854,8,40,23,0.0 +14854,44,19.45,27,0.0 +14854,2,19,4,0.0 +14854,69,36,2,0.0 +14854,46,12,38,0.0 +14854,26,31.23,21,0.0 +14854,55,24,41,0.0 +14854,48,12.75,34,0.0 +14854,31,12.5,13,0.0 +14854,45,9.5,10,0.0 +14854,64,33.25,31,0.0 +14854,74,10,36,0.0 +14854,73,15,23,0.0 +14854,15,15.5,26,0.0 +14854,59,55,50,0.0 +14854,17,39,46,0.0 +14854,41,9.65,8,0.0 +14854,54,7.45,27,0.0 +14854,57,19.5,48,0.0 +14854,18,62.5,20,0.0 +14854,61,28.5,21,0.0 +14854,11,21,4,0.0 +14854,52,7,23,0.0 +14854,25,14,12,0.0 +14854,60,34,36,0.0 +14854,29,123.79,7,0.0 +14854,53,32.8,32,0.0 +14854,24,4.5,19,0.0 +14854,42,14,47,0.0 +14854,9,97,23,0.0 +14854,58,13.25,6,0.0 +14854,63,43.9,37,0.0 +14854,76,18,27,0.0 +14854,62,49.3,39,0.0 +14854,20,81,7,0.0 +14854,39,18,22,0.0 +14854,43,46,37,0.0 +14854,14,23.25,14,0.0 +14854,67,14,12,0.0 +14854,72,34.8,31,0.0 +14855,41,9.65,21,0.0 +14855,6,25,12,0.0 +14855,45,9.5,42,0.0 +14855,5,21.35,26,0.0 +14855,16,17.45,30,0.0 +14855,30,25.89,5,0.0 +14855,2,19,14,0.0 +14855,19,9.2,39,0.0 +14855,54,7.45,21,0.0 +14855,76,18,19,0.0 +14855,20,81,2,0.0 +14855,73,15,43,0.0 +14855,66,17,31,0.0 +14855,64,33.25,5,0.0 +14855,77,13,27,0.0 +14855,42,14,2,0.0 +14855,60,34,23,0.0 +14855,1,18,15,0.0 +14855,31,12.5,46,0.0 +14855,68,12.5,2,0.0 +14855,28,45.6,24,0.0 +14855,75,7.75,42,0.0 +14855,74,10,25,0.0 +14855,18,62.5,29,0.0 +14855,13,6,47,0.0 +14855,36,19,10,0.0 +14855,25,14,24,0.0 +14855,37,26,13,0.0 +14855,53,32.8,30,0.0 +14855,56,38,39,0.0 +14855,27,43.9,45,0.0 +14855,33,2.5,8,0.0 +14855,46,12,39,0.0 +14856,1,18,22,0.0 +14856,48,12.75,50,0.0 +14856,4,22,33,0.0 +14856,9,97,24,0.0 +14856,61,28.5,3,0.0 +14856,39,18,36,0.0 +14856,42,14,5,0.0 +14856,47,9.5,6,0.0 +14856,22,21,2,0.0 +14856,33,2.5,3,0.0 +14856,65,21.05,2,0.0 +14856,24,4.5,48,0.0 +14856,3,10,33,0.0 +14856,34,14,49,0.0 +14856,68,12.5,41,0.0 +14856,46,12,17,0.0 +14856,37,26,6,0.0 +14856,21,10,22,0.0 +14856,14,23.25,43,0.0 +14856,5,21.35,35,0.0 +14856,10,31,31,0.0 +14856,75,7.75,44,0.0 +14856,60,34,20,0.0 +14856,28,45.6,36,0.0 +14856,12,38,38,0.0 +14856,63,43.9,36,0.0 +14856,58,13.25,40,0.0 +14856,27,43.9,47,0.0 +14856,31,12.5,10,0.0 +14856,49,20,48,0.0 +14856,6,25,16,0.0 +14856,74,10,47,0.0 +14856,29,123.79,5,0.0 +14856,72,34.8,7,0.0 +14856,35,18,16,0.0 +14856,62,49.3,22,0.0 +14856,69,36,21,0.0 +14856,36,19,6,0.0 +14856,13,6,11,0.0 +14856,30,25.89,10,0.0 +14856,57,19.5,34,0.0 +14856,20,81,34,0.0 +14856,17,39,43,0.0 +14856,51,53,23,0.0 +14856,2,19,20,0.0 +14856,44,19.45,37,0.0 +14856,19,9.2,17,0.0 +14856,25,14,42,0.0 +14856,8,40,25,0.0 +14856,16,17.45,18,0.0 +14856,38,263.5,8,0.0 +14856,55,24,12,0.0 +14856,23,9,29,0.0 +14856,54,7.45,12,0.0 +14856,32,32,43,0.0 +14856,71,21.5,30,0.0 +14856,59,55,42,0.0 +14856,40,18.4,12,0.0 +14856,70,15,37,0.0 +14857,25,14,45,0.0 +14857,43,46,43,0.0 +14857,72,34.8,14,0.0 +14857,8,40,4,0.0 +14857,46,12,42,0.0 +14857,71,21.5,8,0.0 +14857,74,10,40,0.0 +14857,20,81,21,0.0 +14857,49,20,44,0.0 +14857,11,21,7,0.0 +14857,12,38,10,0.0 +14857,28,45.6,13,0.0 +14857,62,49.3,24,0.0 +14857,30,25.89,36,0.0 +14857,19,9.2,40,0.0 +14857,16,17.45,16,0.0 +14857,4,22,2,0.0 +14857,64,33.25,50,0.0 +14857,13,6,37,0.0 +14857,17,39,28,0.0 +14857,38,263.5,21,0.0 +14857,35,18,22,0.0 +14857,51,53,15,0.0 +14857,56,38,10,0.0 +14857,42,14,44,0.0 +14857,18,62.5,9,0.0 +14857,23,9,4,0.0 +14857,7,30,5,0.0 +14857,75,7.75,28,0.0 +14857,33,2.5,17,0.0 +14857,66,17,17,0.0 +14857,63,43.9,28,0.0 +14857,24,4.5,42,0.0 +14857,45,9.5,10,0.0 +14857,47,9.5,46,0.0 +14857,67,14,30,0.0 +14857,59,55,23,0.0 +14857,36,19,48,0.0 +14857,70,15,40,0.0 +14857,50,16.25,49,0.0 +14857,68,12.5,16,0.0 +14857,15,15.5,50,0.0 +14857,60,34,46,0.0 +14857,27,43.9,20,0.0 +14857,77,13,8,0.0 +14857,34,14,2,0.0 +14857,2,19,39,0.0 +14857,31,12.5,7,0.0 +14857,44,19.45,3,0.0 +14857,39,18,27,0.0 +14857,3,10,36,0.0 +14857,40,18.4,16,0.0 +14857,69,36,5,0.0 +14857,14,23.25,47,0.0 +14857,54,7.45,26,0.0 +14857,53,32.8,12,0.0 +14857,21,10,31,0.0 +14857,57,19.5,7,0.0 +14858,71,21.5,35,0.0 +14858,18,62.5,8,0.0 +14858,24,4.5,43,0.0 +14858,47,9.5,19,0.0 +14858,41,9.65,16,0.0 +14858,73,15,19,0.0 +14858,42,14,23,0.0 +14858,19,9.2,31,0.0 +14858,11,21,5,0.0 +14858,12,38,36,0.0 +14858,51,53,47,0.0 +14858,28,45.6,34,0.0 +14858,7,30,2,0.0 +14858,27,43.9,43,0.0 +14858,40,18.4,34,0.0 +14858,15,15.5,21,0.0 +14858,44,19.45,41,0.0 +14858,20,81,31,0.0 +14858,36,19,6,0.0 +14858,57,19.5,43,0.0 +14859,72,34.8,23,0.0 +14859,73,15,39,0.0 +14859,10,31,36,0.0 +14859,65,21.05,19,0.0 +14859,77,13,1,0.0 +14859,69,36,10,0.0 +14859,54,7.45,19,0.0 +14859,62,49.3,12,0.0 +14859,12,38,9,0.0 +14859,4,22,4,0.0 +14859,23,9,44,0.0 +14859,6,25,38,0.0 +14859,63,43.9,28,0.0 +14859,49,20,2,0.0 +14859,64,33.25,14,0.0 +14859,1,18,44,0.0 +14859,19,9.2,31,0.0 +14859,68,12.5,25,0.0 +14859,34,14,14,0.0 +14859,47,9.5,29,0.0 +14859,44,19.45,12,0.0 +14859,29,123.79,28,0.0 +14859,21,10,26,0.0 +14859,17,39,25,0.0 +14859,41,9.65,32,0.0 +14859,28,45.6,37,0.0 +14859,43,46,45,0.0 +14859,71,21.5,34,0.0 +14859,74,10,11,0.0 +14859,75,7.75,28,0.0 +14859,7,30,16,0.0 +14859,40,18.4,14,0.0 +14859,51,53,26,0.0 +14859,61,28.5,7,0.0 +14860,20,81,35,0.0 +14860,21,10,4,0.0 +14860,4,22,5,0.0 +14860,24,4.5,2,0.0 +14860,16,17.45,30,0.0 +14860,47,9.5,11,0.0 +14860,59,55,38,0.0 +14861,4,22,13,0.0 +14861,43,46,41,0.0 +14861,59,55,5,0.0 +14861,60,34,39,0.0 +14861,73,15,34,0.0 +14861,68,12.5,41,0.0 +14861,46,12,24,0.0 +14861,15,15.5,15,0.0 +14861,74,10,46,0.0 +14861,12,38,15,0.0 +14861,13,6,44,0.0 +14861,61,28.5,14,0.0 +14861,31,12.5,3,0.0 +14861,10,31,17,0.0 +14861,63,43.9,32,0.0 +14861,38,263.5,18,0.0 +14861,19,9.2,32,0.0 +14861,37,26,44,0.0 +14861,47,9.5,37,0.0 +14861,69,36,32,0.0 +14861,36,19,20,0.0 +14861,22,21,33,0.0 +14861,51,53,5,0.0 +14861,71,21.5,40,0.0 +14861,53,32.8,38,0.0 +14861,21,10,20,0.0 +14861,65,21.05,5,0.0 +14861,7,30,35,0.0 +14861,67,14,15,0.0 +14861,18,62.5,21,0.0 +14861,70,15,32,0.0 +14861,23,9,27,0.0 +14861,45,9.5,28,0.0 +14861,75,7.75,50,0.0 +14861,76,18,14,0.0 +14861,35,18,38,0.0 +14861,40,18.4,18,0.0 +14862,71,21.5,13,0.0 +14862,14,23.25,24,0.0 +14862,33,2.5,42,0.0 +14862,29,123.79,35,0.0 +14862,13,6,3,0.0 +14862,49,20,33,0.0 +14862,61,28.5,22,0.0 +14862,63,43.9,9,0.0 +14862,32,32,15,0.0 +14862,59,55,38,0.0 +14862,53,32.8,42,0.0 +14862,35,18,1,0.0 +14862,76,18,44,0.0 +14862,20,81,49,0.0 +14862,8,40,49,0.0 +14862,66,17,1,0.0 +14862,10,31,25,0.0 +14862,40,18.4,9,0.0 +14862,43,46,48,0.0 +14862,23,9,13,0.0 +14862,41,9.65,33,0.0 +14862,74,10,24,0.0 +14862,24,4.5,8,0.0 +14862,27,43.9,38,0.0 +14862,36,19,2,0.0 +14862,42,14,8,0.0 +14862,18,62.5,30,0.0 +14862,4,22,11,0.0 +14862,6,25,33,0.0 +14862,28,45.6,20,0.0 +14862,75,7.75,9,0.0 +14862,17,39,7,0.0 +14862,16,17.45,4,0.0 +14862,11,21,20,0.0 +14862,46,12,5,0.0 +14862,62,49.3,27,0.0 +14862,68,12.5,11,0.0 +14862,56,38,19,0.0 +14862,26,31.23,19,0.0 +14862,54,7.45,20,0.0 +14862,2,19,19,0.0 +14862,77,13,37,0.0 +14862,3,10,33,0.0 +14862,60,34,41,0.0 +14862,65,21.05,42,0.0 +14862,47,9.5,44,0.0 +14862,25,14,19,0.0 +14862,45,9.5,38,0.0 +14862,15,15.5,40,0.0 +14862,12,38,19,0.0 +14862,50,16.25,35,0.0 +14862,51,53,23,0.0 +14862,72,34.8,27,0.0 +14862,1,18,33,0.0 +14862,34,14,42,0.0 +14862,21,10,6,0.0 +14862,5,21.35,47,0.0 +14862,70,15,35,0.0 +14862,7,30,47,0.0 +14862,19,9.2,25,0.0 +14862,38,263.5,45,0.0 +14862,52,7,46,0.0 +14862,37,26,9,0.0 +14862,44,19.45,20,0.0 +14863,5,21.35,28,0.0 +14863,49,20,21,0.0 +14863,26,31.23,24,0.0 +14863,25,14,36,0.0 +14863,44,19.45,32,0.0 +14863,73,15,44,0.0 +14863,14,23.25,7,0.0 +14863,52,7,5,0.0 +14863,38,263.5,17,0.0 +14863,75,7.75,5,0.0 +14863,13,6,25,0.0 +14863,45,9.5,43,0.0 +14863,42,14,19,0.0 +14863,43,46,44,0.0 +14863,62,49.3,31,0.0 +14863,56,38,30,0.0 +14863,53,32.8,5,0.0 +14863,6,25,2,0.0 +14863,32,32,11,0.0 +14863,24,4.5,49,0.0 +14863,3,10,28,0.0 +14863,39,18,41,0.0 +14863,69,36,28,0.0 +14863,2,19,42,0.0 +14863,11,21,28,0.0 +14863,4,22,13,0.0 +14863,35,18,12,0.0 +14863,33,2.5,18,0.0 +14863,37,26,20,0.0 +14863,30,25.89,4,0.0 +14863,17,39,11,0.0 +14863,22,21,27,0.0 +14863,29,123.79,17,0.0 +14863,36,19,18,0.0 +14863,76,18,34,0.0 +14863,7,30,3,0.0 +14864,49,20,25,0.0 +14864,42,14,12,0.0 +14864,65,21.05,45,0.0 +14864,54,7.45,13,0.0 +14864,5,21.35,25,0.0 +14864,32,32,9,0.0 +14864,17,39,35,0.0 +14864,9,97,28,0.0 +14864,22,21,12,0.0 +14864,4,22,16,0.0 +14865,31,12.5,11,0.0 +14865,1,18,11,0.0 +14865,38,263.5,3,0.0 +14865,43,46,26,0.0 +14865,23,9,36,0.0 +14865,66,17,11,0.0 +14865,39,18,7,0.0 +14865,48,12.75,18,0.0 +14865,55,24,42,0.0 +14865,57,19.5,47,0.0 +14865,62,49.3,18,0.0 +14865,9,97,34,0.0 +14865,40,18.4,27,0.0 +14865,36,19,3,0.0 +14865,26,31.23,44,0.0 +14865,22,21,28,0.0 +14865,21,10,47,0.0 +14865,58,13.25,26,0.0 +14865,10,31,32,0.0 +14865,65,21.05,21,0.0 +14865,46,12,31,0.0 +14865,51,53,45,0.0 +14865,7,30,25,0.0 +14865,27,43.9,33,0.0 +14865,61,28.5,21,0.0 +14865,37,26,28,0.0 +14865,56,38,35,0.0 +14865,2,19,40,0.0 +14865,49,20,48,0.0 +14865,54,7.45,38,0.0 +14865,60,34,42,0.0 +14866,72,34.8,41,0.0 +14866,6,25,43,0.0 +14866,41,9.65,44,0.0 +14866,74,10,17,0.0 +14866,65,21.05,5,0.0 +14866,42,14,16,0.0 +14866,26,31.23,38,0.0 +14866,61,28.5,31,0.0 +14866,32,32,42,0.0 +14866,54,7.45,40,0.0 +14866,10,31,35,0.0 +14866,30,25.89,11,0.0 +14866,20,81,44,0.0 +14866,28,45.6,42,0.0 +14866,62,49.3,34,0.0 +14866,57,19.5,5,0.0 +14866,71,21.5,6,0.0 +14866,22,21,37,0.0 +14866,47,9.5,7,0.0 +14866,25,14,47,0.0 +14866,18,62.5,34,0.0 +14866,50,16.25,25,0.0 +14866,14,23.25,14,0.0 +14866,15,15.5,2,0.0 +14866,3,10,46,0.0 +14866,5,21.35,31,0.0 +14866,68,12.5,28,0.0 +14866,53,32.8,7,0.0 +14866,36,19,45,0.0 +14866,55,24,44,0.0 +14866,23,9,32,0.0 +14866,43,46,2,0.0 +14866,67,14,25,0.0 +14866,8,40,35,0.0 +14866,7,30,13,0.0 +14866,45,9.5,34,0.0 +14866,63,43.9,45,0.0 +14866,75,7.75,37,0.0 +14866,19,9.2,50,0.0 +14866,31,12.5,31,0.0 +14866,21,10,32,0.0 +14866,51,53,31,0.0 +14866,33,2.5,25,0.0 +14866,35,18,6,0.0 +14866,58,13.25,25,0.0 +14866,49,20,11,0.0 +14866,77,13,12,0.0 +14866,2,19,34,0.0 +14866,46,12,10,0.0 +14866,11,21,49,0.0 +14867,21,10,3,0.0 +14867,18,62.5,49,0.0 +14867,55,24,25,0.0 +14867,12,38,40,0.0 +14867,70,15,1,0.0 +14867,13,6,28,0.0 +14867,19,9.2,31,0.0 +14867,46,12,48,0.0 +14867,47,9.5,49,0.0 +14867,27,43.9,33,0.0 +14867,38,263.5,41,0.0 +14867,35,18,36,0.0 +14867,60,34,26,0.0 +14867,61,28.5,9,0.0 +14867,52,7,14,0.0 +14867,67,14,35,0.0 +14867,43,46,46,0.0 +14867,29,123.79,26,0.0 +14867,25,14,41,0.0 +14867,48,12.75,11,0.0 +14867,2,19,50,0.0 +14868,28,45.6,47,0.0 +14868,11,21,4,0.0 +14868,52,7,31,0.0 +14868,21,10,17,0.0 +14868,18,62.5,50,0.0 +14868,10,31,45,0.0 +14868,41,9.65,36,0.0 +14868,54,7.45,11,0.0 +14868,2,19,48,0.0 +14868,64,33.25,2,0.0 +14868,67,14,20,0.0 +14868,63,43.9,47,0.0 +14868,46,12,22,0.0 +14868,9,97,30,0.0 +14868,70,15,41,0.0 +14868,47,9.5,23,0.0 +14868,7,30,49,0.0 +14868,13,6,10,0.0 +14868,77,13,11,0.0 +14868,31,12.5,4,0.0 +14868,39,18,50,0.0 +14868,59,55,44,0.0 +14868,29,123.79,29,0.0 +14868,4,22,1,0.0 +14868,55,24,42,0.0 +14868,14,23.25,27,0.0 +14868,26,31.23,22,0.0 +14868,73,15,14,0.0 +14868,66,17,17,0.0 +14868,35,18,25,0.0 +14868,25,14,37,0.0 +14868,71,21.5,40,0.0 +14868,48,12.75,30,0.0 +14868,76,18,32,0.0 +14868,68,12.5,40,0.0 +14868,62,49.3,7,0.0 +14868,38,263.5,1,0.0 +14868,16,17.45,43,0.0 +14868,74,10,18,0.0 +14868,42,14,21,0.0 +14868,1,18,11,0.0 +14868,57,19.5,36,0.0 +14868,34,14,13,0.0 +14868,12,38,9,0.0 +14868,36,19,3,0.0 +14868,37,26,45,0.0 +14868,45,9.5,25,0.0 +14868,23,9,22,0.0 +14868,60,34,42,0.0 +14868,61,28.5,13,0.0 +14868,58,13.25,1,0.0 +14868,27,43.9,37,0.0 +14868,51,53,29,0.0 +14868,3,10,20,0.0 +14868,20,81,47,0.0 +14868,43,46,10,0.0 +14868,15,15.5,41,0.0 +14868,69,36,50,0.0 +14868,75,7.75,5,0.0 +14868,6,25,20,0.0 +14868,5,21.35,49,0.0 +14869,73,15,13,0.0 +14869,45,9.5,48,0.0 +14869,74,10,6,0.0 +14869,25,14,30,0.0 +14869,59,55,34,0.0 +14869,6,25,21,0.0 +14869,8,40,36,0.0 +14869,58,13.25,19,0.0 +14869,52,7,34,0.0 +14869,75,7.75,42,0.0 +14869,62,49.3,48,0.0 +14869,4,22,5,0.0 +14869,30,25.89,13,0.0 +14869,13,6,27,0.0 +14869,47,9.5,20,0.0 +14869,71,21.5,42,0.0 +14869,26,31.23,12,0.0 +14869,76,18,2,0.0 +14869,9,97,39,0.0 +14869,55,24,29,0.0 +14869,29,123.79,30,0.0 +14869,28,45.6,9,0.0 +14869,57,19.5,21,0.0 +14869,19,9.2,6,0.0 +14869,44,19.45,47,0.0 +14869,7,30,29,0.0 +14869,51,53,14,0.0 +14869,33,2.5,27,0.0 +14869,21,10,36,0.0 +14869,12,38,25,0.0 +14869,56,38,28,0.0 +14869,36,19,12,0.0 +14869,68,12.5,31,0.0 +14869,5,21.35,48,0.0 +14869,72,34.8,6,0.0 +14869,27,43.9,30,0.0 +14869,53,32.8,29,0.0 +14869,70,15,22,0.0 +14869,77,13,22,0.0 +14869,20,81,40,0.0 +14869,38,263.5,5,0.0 +14869,16,17.45,27,0.0 +14869,60,34,50,0.0 +14869,40,18.4,50,0.0 +14869,10,31,50,0.0 +14869,23,9,10,0.0 +14869,14,23.25,49,0.0 +14869,46,12,40,0.0 +14870,12,38,13,0.0 +14870,1,18,1,0.0 +14870,47,9.5,14,0.0 +14870,62,49.3,47,0.0 +14870,57,19.5,43,0.0 +14870,27,43.9,13,0.0 +14870,14,23.25,45,0.0 +14870,51,53,14,0.0 +14870,34,14,38,0.0 +14870,48,12.75,43,0.0 +14870,3,10,2,0.0 +14870,21,10,12,0.0 +14870,50,16.25,35,0.0 +14870,23,9,17,0.0 +14870,16,17.45,17,0.0 +14870,42,14,45,0.0 +14870,49,20,12,0.0 +14870,4,22,4,0.0 +14870,58,13.25,26,0.0 +14870,25,14,41,0.0 +14870,29,123.79,10,0.0 +14871,8,40,46,0.0 +14871,58,13.25,21,0.0 +14871,42,14,36,0.0 +14871,47,9.5,30,0.0 +14871,64,33.25,2,0.0 +14871,51,53,2,0.0 +14871,11,21,25,0.0 +14871,18,62.5,9,0.0 +14871,23,9,26,0.0 +14871,73,15,23,0.0 +14871,1,18,16,0.0 +14871,43,46,31,0.0 +14871,60,34,33,0.0 +14871,14,23.25,48,0.0 +14871,57,19.5,41,0.0 +14871,33,2.5,6,0.0 +14871,6,25,42,0.0 +14871,22,21,14,0.0 +14871,49,20,19,0.0 +14871,69,36,15,0.0 +14871,13,6,27,0.0 +14871,24,4.5,22,0.0 +14871,68,12.5,43,0.0 +14871,29,123.79,21,0.0 +14871,55,24,31,0.0 +14871,28,45.6,47,0.0 +14871,2,19,17,0.0 +14871,30,25.89,12,0.0 +14871,74,10,22,0.0 +14871,41,9.65,28,0.0 +14871,71,21.5,47,0.0 +14871,70,15,48,0.0 +14871,27,43.9,46,0.0 +14871,65,21.05,11,0.0 +14871,44,19.45,39,0.0 +14871,17,39,32,0.0 +14871,16,17.45,30,0.0 +14871,34,14,19,0.0 +14871,66,17,39,0.0 +14871,37,26,31,0.0 +14871,72,34.8,37,0.0 +14871,20,81,46,0.0 +14871,3,10,23,0.0 +14871,62,49.3,47,0.0 +14871,45,9.5,5,0.0 +14871,53,32.8,37,0.0 +14871,9,97,24,0.0 +14871,25,14,16,0.0 +14871,32,32,41,0.0 +14871,4,22,34,0.0 +14871,48,12.75,37,0.0 +14871,59,55,16,0.0 +14871,21,10,2,0.0 +14871,26,31.23,8,0.0 +14871,61,28.5,42,0.0 +14871,5,21.35,39,0.0 +14871,40,18.4,7,0.0 +14871,31,12.5,23,0.0 +14871,38,263.5,25,0.0 +14871,63,43.9,1,0.0 +14871,76,18,45,0.0 +14871,19,9.2,44,0.0 +14871,46,12,45,0.0 +14871,67,14,29,0.0 +14871,39,18,49,0.0 +14871,15,15.5,40,0.0 +14872,22,21,9,0.0 +14872,72,34.8,10,0.0 +14872,44,19.45,31,0.0 +14872,30,25.89,33,0.0 +14872,27,43.9,15,0.0 +14872,37,26,41,0.0 +14872,58,13.25,6,0.0 +14872,38,263.5,25,0.0 +14872,61,28.5,29,0.0 +14872,19,9.2,20,0.0 +14872,31,12.5,3,0.0 +14872,4,22,43,0.0 +14872,68,12.5,12,0.0 +14872,64,33.25,3,0.0 +14872,52,7,26,0.0 +14872,5,21.35,44,0.0 +14872,62,49.3,19,0.0 +14872,43,46,11,0.0 +14872,66,17,18,0.0 +14872,65,21.05,3,0.0 +14872,46,12,34,0.0 +14872,40,18.4,15,0.0 +14872,23,9,32,0.0 +14872,53,32.8,26,0.0 +14872,36,19,38,0.0 +14872,47,9.5,45,0.0 +14872,20,81,29,0.0 +14872,45,9.5,8,0.0 +14872,50,16.25,36,0.0 +14872,10,31,4,0.0 +14872,6,25,18,0.0 +14872,7,30,40,0.0 +14872,71,21.5,29,0.0 +14872,74,10,41,0.0 +14872,25,14,16,0.0 +14872,63,43.9,37,0.0 +14872,34,14,29,0.0 +14872,13,6,2,0.0 +14872,17,39,8,0.0 +14872,59,55,3,0.0 +14872,28,45.6,35,0.0 +14872,21,10,45,0.0 +14872,55,24,4,0.0 +14872,15,15.5,10,0.0 +14872,73,15,9,0.0 +14872,56,38,35,0.0 +14872,41,9.65,19,0.0 +14872,57,19.5,48,0.0 +14872,70,15,6,0.0 +14872,12,38,7,0.0 +14872,48,12.75,45,0.0 +14872,39,18,36,0.0 +14872,24,4.5,35,0.0 +14872,42,14,32,0.0 +14872,14,23.25,9,0.0 +14872,67,14,13,0.0 +14872,2,19,39,0.0 +14872,8,40,38,0.0 +14872,33,2.5,28,0.0 +14872,77,13,4,0.0 +14872,32,32,49,0.0 +14872,26,31.23,8,0.0 +14873,11,21,29,0.0 +14873,24,4.5,29,0.0 +14873,71,21.5,5,0.0 +14873,57,19.5,47,0.0 +14873,76,18,26,0.0 +14873,58,13.25,10,0.0 +14873,37,26,30,0.0 +14874,59,55,24,0.0 +14874,36,19,5,0.0 +14874,18,62.5,40,0.0 +14874,60,34,40,0.0 +14874,72,34.8,49,0.0 +14874,69,36,45,0.0 +14874,56,38,17,0.0 +14874,16,17.45,49,0.0 +14874,62,49.3,32,0.0 +14874,50,16.25,37,0.0 +14874,43,46,42,0.0 +14874,7,30,20,0.0 +14874,1,18,44,0.0 +14874,63,43.9,47,0.0 +14874,28,45.6,24,0.0 +14874,51,53,43,0.0 +14874,30,25.89,1,0.0 +14874,67,14,25,0.0 +14874,6,25,21,0.0 +14874,57,19.5,10,0.0 +14874,45,9.5,41,0.0 +14874,25,14,14,0.0 +14874,46,12,1,0.0 +14874,73,15,50,0.0 +14874,71,21.5,36,0.0 +14874,70,15,10,0.0 +14874,10,31,48,0.0 +14874,49,20,40,0.0 +14874,24,4.5,27,0.0 +14874,17,39,40,0.0 +14874,42,14,8,0.0 +14874,39,18,29,0.0 +14874,13,6,4,0.0 +14874,64,33.25,40,0.0 +14874,33,2.5,8,0.0 +14874,20,81,3,0.0 +14874,68,12.5,8,0.0 +14874,19,9.2,25,0.0 +14874,27,43.9,14,0.0 +14874,37,26,22,0.0 +14874,4,22,13,0.0 +14874,66,17,32,0.0 +14874,35,18,48,0.0 +14874,40,18.4,8,0.0 +14874,74,10,27,0.0 +14874,47,9.5,28,0.0 +14874,22,21,22,0.0 +14874,65,21.05,42,0.0 +14874,5,21.35,42,0.0 +14874,21,10,31,0.0 +14874,8,40,9,0.0 +14875,63,43.9,9,0.0 +14875,22,21,26,0.0 +14875,59,55,47,0.0 +14875,4,22,26,0.0 +14875,5,21.35,9,0.0 +14875,25,14,18,0.0 +14875,51,53,2,0.0 +14875,18,62.5,29,0.0 +14875,37,26,2,0.0 +14876,42,14,49,0.0 +14876,25,14,48,0.0 +14876,39,18,30,0.0 +14876,43,46,14,0.0 +14876,50,16.25,9,0.0 +14876,63,43.9,37,0.0 +14876,51,53,5,0.0 +14876,36,19,14,0.0 +14876,3,10,16,0.0 +14876,1,18,24,0.0 +14876,22,21,34,0.0 +14876,15,15.5,34,0.0 +14876,35,18,25,0.0 +14876,19,9.2,41,0.0 +14876,5,21.35,1,0.0 +14876,17,39,38,0.0 +14876,72,34.8,5,0.0 +14876,7,30,34,0.0 +14876,18,62.5,27,0.0 +14877,27,43.9,30,0.0 +14877,6,25,21,0.0 +14877,56,38,38,0.0 +14877,2,19,35,0.0 +14877,72,34.8,27,0.0 +14877,28,45.6,23,0.0 +14877,38,263.5,9,0.0 +14877,16,17.45,29,0.0 +14877,71,21.5,14,0.0 +14877,23,9,35,0.0 +14877,74,10,11,0.0 +14877,40,18.4,24,0.0 +14877,30,25.89,14,0.0 +14877,66,17,6,0.0 +14877,67,14,9,0.0 +14877,25,14,34,0.0 +14877,4,22,4,0.0 +14877,52,7,43,0.0 +14877,7,30,23,0.0 +14877,68,12.5,12,0.0 +14877,48,12.75,40,0.0 +14877,75,7.75,19,0.0 +14877,61,28.5,16,0.0 +14877,73,15,7,0.0 +14877,29,123.79,30,0.0 +14877,77,13,14,0.0 +14877,70,15,13,0.0 +14877,17,39,44,0.0 +14877,63,43.9,14,0.0 +14877,65,21.05,27,0.0 +14877,19,9.2,46,0.0 +14877,37,26,18,0.0 +14877,50,16.25,25,0.0 +14877,59,55,25,0.0 +14877,13,6,12,0.0 +14877,76,18,23,0.0 +14877,24,4.5,34,0.0 +14877,5,21.35,16,0.0 +14877,26,31.23,15,0.0 +14877,12,38,21,0.0 +14877,51,53,28,0.0 +14877,1,18,20,0.0 +14877,33,2.5,37,0.0 +14877,49,20,18,0.0 +14877,62,49.3,20,0.0 +14877,22,21,22,0.0 +14877,45,9.5,35,0.0 +14877,60,34,19,0.0 +14877,11,21,11,0.0 +14877,39,18,48,0.0 +14877,21,10,24,0.0 +14877,10,31,14,0.0 +14877,9,97,10,0.0 +14877,44,19.45,8,0.0 +14878,32,32,15,0.0 +14878,3,10,27,0.0 +14878,34,14,30,0.0 +14878,41,9.65,37,0.0 +14878,19,9.2,12,0.0 +14878,20,81,30,0.0 +14878,11,21,41,0.0 +14878,10,31,29,0.0 +14878,56,38,45,0.0 +14878,12,38,45,0.0 +14878,59,55,31,0.0 +14878,64,33.25,46,0.0 +14878,57,19.5,26,0.0 +14878,50,16.25,41,0.0 +14878,1,18,22,0.0 +14878,70,15,42,0.0 +14878,68,12.5,41,0.0 +14878,38,263.5,9,0.0 +14878,72,34.8,43,0.0 +14878,54,7.45,4,0.0 +14878,62,49.3,40,0.0 +14878,15,15.5,10,0.0 +14878,2,19,21,0.0 +14878,22,21,33,0.0 +14878,17,39,50,0.0 +14878,23,9,12,0.0 +14878,29,123.79,41,0.0 +14878,31,12.5,10,0.0 +14878,60,34,26,0.0 +14878,48,12.75,5,0.0 +14878,18,62.5,33,0.0 +14878,27,43.9,25,0.0 +14878,43,46,14,0.0 +14878,36,19,21,0.0 +14878,35,18,28,0.0 +14878,14,23.25,29,0.0 +14878,66,17,30,0.0 +14878,52,7,28,0.0 +14878,46,12,6,0.0 +14878,39,18,7,0.0 +14878,63,43.9,34,0.0 +14878,45,9.5,41,0.0 +14878,5,21.35,24,0.0 +14878,4,22,35,0.0 +14878,42,14,44,0.0 +14878,61,28.5,45,0.0 +14878,65,21.05,20,0.0 +14878,21,10,37,0.0 +14878,37,26,32,0.0 +14878,74,10,36,0.0 +14878,13,6,50,0.0 +14878,30,25.89,13,0.0 +14878,9,97,46,0.0 +14878,73,15,2,0.0 +14878,67,14,16,0.0 +14878,47,9.5,46,0.0 +14879,74,10,23,0.0 +14879,28,45.6,45,0.0 +14879,72,34.8,25,0.0 +14879,40,18.4,28,0.0 +14879,38,263.5,1,0.0 +14879,56,38,11,0.0 +14879,15,15.5,24,0.0 +14879,2,19,7,0.0 +14879,32,32,24,0.0 +14879,47,9.5,40,0.0 +14880,62,49.3,7,0.0 +14880,50,16.25,5,0.0 +14880,22,21,24,0.0 +14880,67,14,46,0.0 +14880,17,39,27,0.0 +14880,64,33.25,41,0.0 +14880,19,9.2,45,0.0 +14880,71,21.5,14,0.0 +14880,11,21,31,0.0 +14880,13,6,6,0.0 +14880,15,15.5,47,0.0 +14880,68,12.5,45,0.0 +14880,33,2.5,31,0.0 +14880,59,55,15,0.0 +14880,72,34.8,25,0.0 +14880,10,31,41,0.0 +14880,20,81,45,0.0 +14880,1,18,17,0.0 +14880,51,53,46,0.0 +14880,2,19,19,0.0 +14880,5,21.35,30,0.0 +14881,63,43.9,37,0.0 +14881,35,18,16,0.0 +14881,34,14,32,0.0 +14881,9,97,18,0.0 +14881,30,25.89,49,0.0 +14881,16,17.45,25,0.0 +14881,22,21,23,0.0 +14881,33,2.5,1,0.0 +14881,69,36,23,0.0 +14881,29,123.79,1,0.0 +14881,53,32.8,43,0.0 +14881,72,34.8,35,0.0 +14881,12,38,6,0.0 +14881,2,19,4,0.0 +14881,60,34,29,0.0 +14881,24,4.5,5,0.0 +14881,31,12.5,25,0.0 +14881,71,21.5,25,0.0 +14881,75,7.75,26,0.0 +14881,4,22,10,0.0 +14882,69,36,32,0.0 +14882,74,10,33,0.0 +14882,50,16.25,4,0.0 +14882,12,38,34,0.0 +14882,29,123.79,30,0.0 +14882,22,21,23,0.0 +14882,44,19.45,27,0.0 +14882,55,24,24,0.0 +14882,24,4.5,4,0.0 +14882,8,40,35,0.0 +14882,31,12.5,47,0.0 +14882,64,33.25,6,0.0 +14882,76,18,34,0.0 +14882,54,7.45,2,0.0 +14882,68,12.5,46,0.0 +14882,30,25.89,2,0.0 +14882,6,25,10,0.0 +14882,46,12,47,0.0 +14882,56,38,15,0.0 +14882,14,23.25,32,0.0 +14882,11,21,17,0.0 +14882,73,15,26,0.0 +14882,51,53,10,0.0 +14882,17,39,14,0.0 +14882,25,14,22,0.0 +14882,3,10,33,0.0 +14882,15,15.5,38,0.0 +14882,48,12.75,24,0.0 +14882,52,7,4,0.0 +14882,71,21.5,19,0.0 +14882,32,32,37,0.0 +14882,1,18,5,0.0 +14882,18,62.5,13,0.0 +14882,40,18.4,41,0.0 +14882,59,55,31,0.0 +14882,16,17.45,6,0.0 +14882,72,34.8,5,0.0 +14882,33,2.5,6,0.0 +14882,65,21.05,28,0.0 +14882,75,7.75,42,0.0 +14882,42,14,17,0.0 +14882,10,31,16,0.0 +14882,19,9.2,31,0.0 +14882,4,22,14,0.0 +14882,61,28.5,38,0.0 +14882,49,20,30,0.0 +14882,39,18,3,0.0 +14882,7,30,38,0.0 +14882,67,14,19,0.0 +14882,28,45.6,49,0.0 +14882,77,13,34,0.0 +14882,60,34,47,0.0 +14882,20,81,36,0.0 +14882,5,21.35,37,0.0 +14882,43,46,17,0.0 +14882,36,19,12,0.0 +14883,40,18.4,44,0.0 +14883,64,33.25,21,0.0 +14883,7,30,18,0.0 +14883,17,39,17,0.0 +14883,35,18,44,0.0 +14883,14,23.25,36,0.0 +14883,71,21.5,46,0.0 +14883,11,21,15,0.0 +14883,69,36,46,0.0 +14883,47,9.5,3,0.0 +14884,45,9.5,5,0.0 +14884,51,53,16,0.0 +14884,31,12.5,41,0.0 +14884,50,16.25,41,0.0 +14884,13,6,23,0.0 +14884,69,36,45,0.0 +14884,4,22,42,0.0 +14884,30,25.89,12,0.0 +14884,73,15,22,0.0 +14884,72,34.8,25,0.0 +14884,2,19,23,0.0 +14884,39,18,1,0.0 +14884,38,263.5,44,0.0 +14884,29,123.79,14,0.0 +14884,26,31.23,35,0.0 +14884,9,97,22,0.0 +14884,20,81,32,0.0 +14884,7,30,18,0.0 +14884,24,4.5,49,0.0 +14884,3,10,8,0.0 +14884,27,43.9,49,0.0 +14884,56,38,29,0.0 +14884,11,21,3,0.0 +14884,8,40,33,0.0 +14884,33,2.5,18,0.0 +14884,75,7.75,22,0.0 +14884,36,19,5,0.0 +14884,44,19.45,16,0.0 +14884,62,49.3,4,0.0 +14884,68,12.5,31,0.0 +14884,61,28.5,42,0.0 +14884,76,18,29,0.0 +14884,49,20,35,0.0 +14884,74,10,50,0.0 +14884,28,45.6,39,0.0 +14884,19,9.2,12,0.0 +14884,66,17,15,0.0 +14884,22,21,45,0.0 +14884,23,9,13,0.0 +14884,32,32,35,0.0 +14884,40,18.4,3,0.0 +14884,17,39,10,0.0 +14884,15,15.5,23,0.0 +14884,14,23.25,14,0.0 +14884,65,21.05,42,0.0 +14884,5,21.35,23,0.0 +14884,48,12.75,19,0.0 +14885,4,22,34,0.0 +14885,61,28.5,8,0.0 +14885,64,33.25,15,0.0 +14885,3,10,12,0.0 +14885,13,6,19,0.0 +14885,57,19.5,34,0.0 +14885,67,14,11,0.0 +14885,20,81,18,0.0 +14885,9,97,27,0.0 +14885,16,17.45,9,0.0 +14885,22,21,43,0.0 +14885,56,38,20,0.0 +14885,42,14,47,0.0 +14885,63,43.9,32,0.0 +14885,18,62.5,42,0.0 +14885,31,12.5,46,0.0 +14885,10,31,34,0.0 +14885,71,21.5,13,0.0 +14885,75,7.75,14,0.0 +14885,72,34.8,4,0.0 +14885,49,20,35,0.0 +14885,8,40,24,0.0 +14885,50,16.25,9,0.0 +14885,40,18.4,30,0.0 +14885,36,19,19,0.0 +14885,25,14,25,0.0 +14885,51,53,48,0.0 +14885,32,32,47,0.0 +14885,46,12,27,0.0 +14885,66,17,15,0.0 +14885,59,55,21,0.0 +14885,73,15,10,0.0 +14885,47,9.5,8,0.0 +14885,43,46,31,0.0 +14885,26,31.23,32,0.0 +14885,15,15.5,42,0.0 +14885,37,26,48,0.0 +14885,29,123.79,11,0.0 +14885,6,25,37,0.0 +14886,28,45.6,39,0.0 +14886,46,12,12,0.0 +14886,9,97,19,0.0 +14886,63,43.9,3,0.0 +14886,35,18,7,0.0 +14886,75,7.75,34,0.0 +14886,59,55,47,0.0 +14886,34,14,47,0.0 +14886,12,38,11,0.0 +14886,25,14,27,0.0 +14886,40,18.4,24,0.0 +14886,47,9.5,42,0.0 +14886,8,40,39,0.0 +14886,24,4.5,40,0.0 +14886,41,9.65,11,0.0 +14886,21,10,18,0.0 +14886,11,21,9,0.0 +14886,10,31,25,0.0 +14886,64,33.25,13,0.0 +14886,67,14,4,0.0 +14886,51,53,26,0.0 +14886,29,123.79,3,0.0 +14886,52,7,21,0.0 +14886,57,19.5,50,0.0 +14886,15,15.5,15,0.0 +14886,70,15,15,0.0 +14887,21,10,6,0.0 +14887,64,33.25,48,0.0 +14887,26,31.23,11,0.0 +14887,75,7.75,21,0.0 +14887,77,13,23,0.0 +14887,49,20,41,0.0 +14887,50,16.25,29,0.0 +14887,16,17.45,32,0.0 +14887,7,30,12,0.0 +14887,53,32.8,23,0.0 +14887,66,17,5,0.0 +14887,23,9,3,0.0 +14887,27,43.9,39,0.0 +14887,22,21,38,0.0 +14887,18,62.5,17,0.0 +14887,2,19,21,0.0 +14887,3,10,6,0.0 +14887,65,21.05,8,0.0 +14887,13,6,39,0.0 +14887,76,18,4,0.0 +14887,14,23.25,38,0.0 +14887,59,55,1,0.0 +14887,45,9.5,2,0.0 +14887,56,38,2,0.0 +14887,4,22,1,0.0 +14887,70,15,15,0.0 +14887,44,19.45,46,0.0 +14887,38,263.5,23,0.0 +14887,29,123.79,5,0.0 +14887,31,12.5,47,0.0 +14887,69,36,46,0.0 +14887,72,34.8,8,0.0 +14887,36,19,4,0.0 +14887,35,18,31,0.0 +14887,24,4.5,29,0.0 +14887,58,13.25,8,0.0 +14887,73,15,47,0.0 +14887,61,28.5,28,0.0 +14887,34,14,17,0.0 +14887,63,43.9,38,0.0 +14887,5,21.35,43,0.0 +14887,6,25,42,0.0 +14887,43,46,31,0.0 +14887,40,18.4,2,0.0 +14887,19,9.2,12,0.0 +14888,50,16.25,27,0.0 +14888,17,39,31,0.0 +14888,18,62.5,19,0.0 +14888,49,20,46,0.0 +14888,20,81,2,0.0 +14888,60,34,21,0.0 +14888,71,21.5,44,0.0 +14888,9,97,19,0.0 +14888,7,30,43,0.0 +14888,56,38,11,0.0 +14888,36,19,49,0.0 +14888,46,12,36,0.0 +14888,4,22,5,0.0 +14888,37,26,34,0.0 +14888,32,32,5,0.0 +14888,22,21,46,0.0 +14888,6,25,16,0.0 +14888,8,40,16,0.0 +14888,14,23.25,11,0.0 +14888,70,15,1,0.0 +14888,39,18,18,0.0 +14888,55,24,48,0.0 +14888,35,18,3,0.0 +14888,58,13.25,32,0.0 +14888,75,7.75,25,0.0 +14888,31,12.5,14,0.0 +14888,54,7.45,9,0.0 +14888,48,12.75,7,0.0 +14888,29,123.79,8,0.0 +14888,43,46,38,0.0 +14888,38,263.5,17,0.0 +14888,2,19,26,0.0 +14888,44,19.45,49,0.0 +14888,27,43.9,17,0.0 +14888,61,28.5,50,0.0 +14888,65,21.05,27,0.0 +14888,63,43.9,19,0.0 +14888,30,25.89,36,0.0 +14888,69,36,3,0.0 +14888,13,6,50,0.0 +14888,5,21.35,34,0.0 +14888,64,33.25,40,0.0 +14888,41,9.65,46,0.0 +14888,28,45.6,11,0.0 +14888,53,32.8,49,0.0 +14888,26,31.23,41,0.0 +14888,11,21,5,0.0 +14888,45,9.5,22,0.0 +14888,47,9.5,35,0.0 +14888,3,10,32,0.0 +14888,51,53,41,0.0 +14888,52,7,29,0.0 +14888,33,2.5,8,0.0 +14888,77,13,45,0.0 +14888,76,18,1,0.0 +14888,66,17,26,0.0 +14888,74,10,42,0.0 +14888,24,4.5,11,0.0 +14888,15,15.5,43,0.0 +14888,12,38,43,0.0 +14888,1,18,28,0.0 +14888,10,31,10,0.0 +14888,16,17.45,12,0.0 +14888,40,18.4,20,0.0 +14888,34,14,35,0.0 +14888,42,14,7,0.0 +14888,67,14,15,0.0 +14888,62,49.3,45,0.0 +14888,72,34.8,18,0.0 +14888,19,9.2,9,0.0 +14889,27,43.9,25,0.0 +14889,5,21.35,12,0.0 +14889,13,6,22,0.0 +14889,50,16.25,41,0.0 +14889,61,28.5,43,0.0 +14889,2,19,35,0.0 +14889,23,9,35,0.0 +14889,28,45.6,17,0.0 +14889,38,263.5,42,0.0 +14889,9,97,5,0.0 +14889,65,21.05,32,0.0 +14889,56,38,7,0.0 +14889,45,9.5,32,0.0 +14889,74,10,35,0.0 +14889,64,33.25,48,0.0 +14890,57,19.5,13,0.0 +14890,4,22,7,0.0 +14890,67,14,42,0.0 +14890,73,15,15,0.0 +14890,72,34.8,18,0.0 +14890,37,26,25,0.0 +14890,49,20,42,0.0 +14890,40,18.4,1,0.0 +14890,21,10,40,0.0 +14890,12,38,18,0.0 +14890,54,7.45,18,0.0 +14890,30,25.89,36,0.0 +14890,14,23.25,48,0.0 +14890,18,62.5,1,0.0 +14890,42,14,23,0.0 +14890,38,263.5,16,0.0 +14890,7,30,41,0.0 +14890,55,24,20,0.0 +14890,59,55,50,0.0 +14890,34,14,48,0.0 +14890,53,32.8,23,0.0 +14890,2,19,20,0.0 +14890,47,9.5,21,0.0 +14890,58,13.25,14,0.0 +14890,29,123.79,17,0.0 +14890,24,4.5,38,0.0 +14890,1,18,37,0.0 +14890,68,12.5,1,0.0 +14890,25,14,46,0.0 +14890,32,32,20,0.0 +14890,61,28.5,37,0.0 +14890,46,12,48,0.0 +14890,28,45.6,24,0.0 +14890,63,43.9,24,0.0 +14890,65,21.05,24,0.0 +14890,56,38,46,0.0 +14890,5,21.35,22,0.0 +14890,3,10,3,0.0 +14891,51,53,9,0.0 +14891,52,7,37,0.0 +14891,37,26,43,0.0 +14891,10,31,30,0.0 +14891,27,43.9,13,0.0 +14891,70,15,14,0.0 +14891,71,21.5,16,0.0 +14891,58,13.25,33,0.0 +14891,14,23.25,23,0.0 +14891,77,13,6,0.0 +14891,22,21,46,0.0 +14891,16,17.45,39,0.0 +14891,44,19.45,7,0.0 +14891,76,18,42,0.0 +14891,46,12,8,0.0 +14891,75,7.75,50,0.0 +14891,49,20,35,0.0 +14891,34,14,15,0.0 +14891,67,14,11,0.0 +14891,45,9.5,35,0.0 +14891,65,21.05,46,0.0 +14891,60,34,26,0.0 +14891,21,10,39,0.0 +14891,54,7.45,41,0.0 +14891,50,16.25,33,0.0 +14891,61,28.5,50,0.0 +14891,38,263.5,3,0.0 +14891,55,24,29,0.0 +14891,36,19,34,0.0 +14891,69,36,32,0.0 +14891,47,9.5,36,0.0 +14891,29,123.79,7,0.0 +14891,59,55,50,0.0 +14891,66,17,33,0.0 +14891,62,49.3,30,0.0 +14891,68,12.5,40,0.0 +14891,8,40,35,0.0 +14891,73,15,19,0.0 +14891,26,31.23,38,0.0 +14891,5,21.35,23,0.0 +14891,63,43.9,33,0.0 +14891,42,14,13,0.0 +14891,1,18,20,0.0 +14891,12,38,23,0.0 +14891,9,97,11,0.0 +14892,50,16.25,46,0.0 +14892,26,31.23,28,0.0 +14892,30,25.89,23,0.0 +14892,49,20,8,0.0 +14892,29,123.79,46,0.0 +14892,43,46,41,0.0 +14892,37,26,26,0.0 +14892,8,40,41,0.0 +14892,62,49.3,42,0.0 +14892,36,19,6,0.0 +14892,13,6,8,0.0 +14892,15,15.5,29,0.0 +14892,71,21.5,24,0.0 +14892,21,10,39,0.0 +14893,51,53,2,0.0 +14893,64,33.25,6,0.0 +14893,76,18,36,0.0 +14893,22,21,5,0.0 +14893,41,9.65,44,0.0 +14893,30,25.89,21,0.0 +14893,18,62.5,41,0.0 +14893,40,18.4,15,0.0 +14893,59,55,49,0.0 +14893,43,46,8,0.0 +14893,6,25,49,0.0 +14893,65,21.05,48,0.0 +14893,55,24,45,0.0 +14893,47,9.5,11,0.0 +14893,46,12,3,0.0 +14893,26,31.23,20,0.0 +14893,54,7.45,42,0.0 +14893,63,43.9,29,0.0 +14893,4,22,3,0.0 +14893,1,18,1,0.0 +14893,48,12.75,31,0.0 +14893,34,14,14,0.0 +14893,73,15,3,0.0 +14893,5,21.35,13,0.0 +14893,29,123.79,37,0.0 +14893,25,14,7,0.0 +14893,2,19,9,0.0 +14893,23,9,6,0.0 +14893,27,43.9,34,0.0 +14893,15,15.5,8,0.0 +14893,8,40,6,0.0 +14893,49,20,27,0.0 +14893,74,10,26,0.0 +14893,61,28.5,25,0.0 +14893,69,36,30,0.0 +14893,28,45.6,47,0.0 +14893,7,30,42,0.0 +14893,45,9.5,14,0.0 +14893,71,21.5,14,0.0 +14893,24,4.5,5,0.0 +14893,35,18,12,0.0 +14893,36,19,27,0.0 +14893,56,38,25,0.0 +14893,3,10,17,0.0 +14893,66,17,31,0.0 +14893,67,14,44,0.0 +14893,14,23.25,32,0.0 +14893,39,18,47,0.0 +14893,37,26,40,0.0 +14893,42,14,48,0.0 +14893,19,9.2,46,0.0 +14893,38,263.5,46,0.0 +14893,58,13.25,3,0.0 +14893,77,13,10,0.0 +14893,11,21,46,0.0 +14893,52,7,15,0.0 +14893,9,97,43,0.0 +14893,68,12.5,24,0.0 +14893,53,32.8,23,0.0 +14893,50,16.25,22,0.0 +14893,17,39,49,0.0 +14893,72,34.8,29,0.0 +14893,10,31,38,0.0 +14893,44,19.45,27,0.0 +14893,12,38,13,0.0 +14893,31,12.5,6,0.0 +14893,62,49.3,33,0.0 +14893,20,81,9,0.0 +14893,60,34,26,0.0 +14893,32,32,11,0.0 +14893,70,15,33,0.0 +14893,75,7.75,34,0.0 +14893,21,10,22,0.0 +14893,13,6,18,0.0 +14893,33,2.5,9,0.0 +14894,63,43.9,48,0.0 +14894,11,21,6,0.0 +14894,3,10,18,0.0 +14894,23,9,31,0.0 +14894,37,26,6,0.0 +14894,38,263.5,24,0.0 +14894,48,12.75,29,0.0 +14894,57,19.5,38,0.0 +14894,47,9.5,32,0.0 +14894,39,18,34,0.0 +14894,40,18.4,10,0.0 +14894,16,17.45,35,0.0 +14894,60,34,38,0.0 +14894,2,19,36,0.0 +14894,68,12.5,12,0.0 +14894,26,31.23,24,0.0 +14894,70,15,6,0.0 +14894,72,34.8,11,0.0 +14894,74,10,9,0.0 +14894,41,9.65,42,0.0 +14894,7,30,40,0.0 +14894,62,49.3,2,0.0 +14894,4,22,16,0.0 +14894,58,13.25,9,0.0 +14894,9,97,5,0.0 +14894,1,18,50,0.0 +14894,27,43.9,9,0.0 +14894,17,39,32,0.0 +14894,65,21.05,7,0.0 +14894,76,18,4,0.0 +14894,13,6,22,0.0 +14894,77,13,5,0.0 +14894,8,40,10,0.0 +14894,45,9.5,26,0.0 +14894,25,14,18,0.0 +14894,35,18,1,0.0 +14894,43,46,26,0.0 +14894,24,4.5,36,0.0 +14894,10,31,34,0.0 +14894,12,38,25,0.0 +14894,29,123.79,21,0.0 +14894,36,19,22,0.0 +14894,19,9.2,40,0.0 +14894,52,7,25,0.0 +14894,42,14,28,0.0 +14894,66,17,16,0.0 +14894,61,28.5,31,0.0 +14894,31,12.5,13,0.0 +14894,30,25.89,23,0.0 +14894,56,38,43,0.0 +14894,51,53,27,0.0 +14894,69,36,20,0.0 +14894,46,12,38,0.0 +14894,71,21.5,20,0.0 +14894,15,15.5,3,0.0 +14895,2,19,11,0.0 +14895,57,19.5,9,0.0 +14895,27,43.9,39,0.0 +14895,51,53,47,0.0 +14895,31,12.5,37,0.0 +14895,54,7.45,45,0.0 +14895,3,10,46,0.0 +14895,36,19,20,0.0 +14895,41,9.65,3,0.0 +14895,52,7,2,0.0 +14895,74,10,18,0.0 +14895,8,40,12,0.0 +14895,53,32.8,19,0.0 +14895,67,14,45,0.0 +14895,71,21.5,18,0.0 +14895,40,18.4,9,0.0 +14895,25,14,15,0.0 +14895,23,9,31,0.0 +14895,30,25.89,39,0.0 +14895,72,34.8,41,0.0 +14895,29,123.79,2,0.0 +14895,66,17,37,0.0 +14895,37,26,14,0.0 +14895,1,18,32,0.0 +14895,32,32,25,0.0 +14895,20,81,5,0.0 +14895,15,15.5,21,0.0 +14895,33,2.5,32,0.0 +14895,38,263.5,43,0.0 +14895,45,9.5,5,0.0 +14895,55,24,48,0.0 +14895,46,12,5,0.0 +14895,65,21.05,36,0.0 +14895,58,13.25,3,0.0 +14895,76,18,37,0.0 +14895,75,7.75,26,0.0 +14895,18,62.5,39,0.0 +14895,64,33.25,30,0.0 +14895,16,17.45,16,0.0 +14895,77,13,2,0.0 +14895,39,18,22,0.0 +14895,63,43.9,47,0.0 +14895,14,23.25,39,0.0 +14895,43,46,29,0.0 +14895,69,36,16,0.0 +14895,11,21,9,0.0 +14895,61,28.5,47,0.0 +14895,7,30,47,0.0 +14895,62,49.3,2,0.0 +14895,50,16.25,9,0.0 +14895,35,18,47,0.0 +14895,21,10,16,0.0 +14895,26,31.23,7,0.0 +14895,68,12.5,19,0.0 +14895,13,6,21,0.0 +14895,9,97,18,0.0 +14895,10,31,6,0.0 +14895,60,34,36,0.0 +14895,17,39,35,0.0 +14895,56,38,6,0.0 +14896,7,30,4,0.0 +14896,22,21,5,0.0 +14896,51,53,5,0.0 +14896,14,23.25,6,0.0 +14896,48,12.75,14,0.0 +14896,42,14,24,0.0 +14896,39,18,25,0.0 +14896,47,9.5,17,0.0 +14896,41,9.65,8,0.0 +14896,30,25.89,22,0.0 +14896,69,36,37,0.0 +14896,35,18,11,0.0 +14896,20,81,11,0.0 +14896,26,31.23,48,0.0 +14896,57,19.5,34,0.0 +14896,12,38,4,0.0 +14897,68,12.5,15,0.0 +14897,25,14,30,0.0 +14897,21,10,11,0.0 +14897,53,32.8,41,0.0 +14897,3,10,20,0.0 +14897,11,21,17,0.0 +14897,56,38,23,0.0 +14897,50,16.25,14,0.0 +14897,17,39,31,0.0 +14897,8,40,35,0.0 +14897,61,28.5,32,0.0 +14897,52,7,47,0.0 +14897,72,34.8,20,0.0 +14897,39,18,44,0.0 +14897,36,19,19,0.0 +14897,14,23.25,10,0.0 +14897,77,13,31,0.0 +14897,43,46,33,0.0 +14897,20,81,1,0.0 +14897,51,53,32,0.0 +14897,66,17,40,0.0 +14897,18,62.5,5,0.0 +14897,44,19.45,23,0.0 +14897,62,49.3,11,0.0 +14897,60,34,37,0.0 +14897,67,14,23,0.0 +14897,30,25.89,18,0.0 +14897,29,123.79,47,0.0 +14897,37,26,25,0.0 +14897,45,9.5,36,0.0 +14897,38,263.5,20,0.0 +14897,23,9,13,0.0 +14897,69,36,23,0.0 +14897,47,9.5,50,0.0 +14897,27,43.9,43,0.0 +14897,46,12,36,0.0 +14897,6,25,31,0.0 +14897,41,9.65,6,0.0 +14897,42,14,46,0.0 +14897,63,43.9,36,0.0 +14897,65,21.05,5,0.0 +14897,9,97,39,0.0 +14897,74,10,7,0.0 +14897,55,24,42,0.0 +14897,5,21.35,3,0.0 +14897,54,7.45,40,0.0 +14897,10,31,34,0.0 +14897,24,4.5,3,0.0 +14897,48,12.75,27,0.0 +14897,49,20,46,0.0 +14897,31,12.5,12,0.0 +14897,76,18,6,0.0 +14897,1,18,30,0.0 +14897,70,15,8,0.0 +14897,7,30,21,0.0 +14897,26,31.23,45,0.0 +14897,28,45.6,1,0.0 +14897,15,15.5,3,0.0 +14897,57,19.5,31,0.0 +14897,58,13.25,35,0.0 +14897,34,14,17,0.0 +14897,73,15,42,0.0 +14897,75,7.75,36,0.0 +14897,13,6,32,0.0 +14897,12,38,7,0.0 +14898,7,30,15,0.0 +14898,31,12.5,1,0.0 +14898,49,20,6,0.0 +14898,46,12,10,0.0 +14898,72,34.8,39,0.0 +14898,69,36,19,0.0 +14898,14,23.25,16,0.0 +14898,39,18,43,0.0 +14898,57,19.5,41,0.0 +14898,50,16.25,38,0.0 +14898,44,19.45,18,0.0 +14898,75,7.75,41,0.0 +14899,72,34.8,1,0.0 +14899,47,9.5,17,0.0 +14899,52,7,45,0.0 +14899,43,46,9,0.0 +14899,27,43.9,28,0.0 +14899,60,34,20,0.0 +14899,32,32,27,0.0 +14899,5,21.35,37,0.0 +14899,34,14,30,0.0 +14899,53,32.8,12,0.0 +14899,25,14,5,0.0 +14899,3,10,1,0.0 +14899,42,14,12,0.0 +14899,29,123.79,43,0.0 +14899,70,15,16,0.0 +14899,69,36,16,0.0 +14899,20,81,2,0.0 +14899,37,26,26,0.0 +14899,8,40,2,0.0 +14899,57,19.5,22,0.0 +14899,68,12.5,21,0.0 +14899,40,18.4,44,0.0 +14899,49,20,22,0.0 +14899,73,15,23,0.0 +14899,24,4.5,26,0.0 +14899,75,7.75,40,0.0 +14899,63,43.9,48,0.0 +14899,67,14,40,0.0 +14899,23,9,8,0.0 +14899,15,15.5,8,0.0 +14899,6,25,1,0.0 +14899,14,23.25,15,0.0 +14899,18,62.5,23,0.0 +14899,21,10,32,0.0 +14899,36,19,13,0.0 +14899,59,55,30,0.0 +14899,64,33.25,38,0.0 +14899,45,9.5,38,0.0 +14899,50,16.25,24,0.0 +14899,16,17.45,23,0.0 +14900,2,19,5,0.0 +14900,17,39,36,0.0 +14900,44,19.45,4,0.0 +14900,72,34.8,7,0.0 +14900,76,18,26,0.0 +14900,5,21.35,8,0.0 +14900,42,14,34,0.0 +14900,70,15,35,0.0 +14900,26,31.23,30,0.0 +14900,28,45.6,29,0.0 +14900,36,19,18,0.0 +14900,24,4.5,45,0.0 +14900,54,7.45,44,0.0 +14900,12,38,28,0.0 +14900,50,16.25,10,0.0 +14900,51,53,6,0.0 +14900,63,43.9,9,0.0 +14900,15,15.5,38,0.0 +14900,6,25,1,0.0 +14900,59,55,16,0.0 +14900,13,6,41,0.0 +14900,22,21,40,0.0 +14900,25,14,39,0.0 +14900,73,15,26,0.0 +14900,32,32,29,0.0 +14900,75,7.75,11,0.0 +14900,19,9.2,15,0.0 +14900,16,17.45,40,0.0 +14900,57,19.5,6,0.0 +14900,34,14,48,0.0 +14900,38,263.5,20,0.0 +14900,27,43.9,18,0.0 +14900,53,32.8,23,0.0 +14900,33,2.5,25,0.0 +14900,69,36,13,0.0 +14900,64,33.25,46,0.0 +14900,8,40,45,0.0 +14900,3,10,27,0.0 +14900,74,10,33,0.0 +14900,45,9.5,8,0.0 +14900,77,13,26,0.0 +14900,62,49.3,12,0.0 +14900,66,17,31,0.0 +14900,52,7,25,0.0 +14900,23,9,11,0.0 +14900,55,24,3,0.0 +14901,53,32.8,17,0.0 +14901,74,10,44,0.0 +14901,59,55,9,0.0 +14901,43,46,22,0.0 +14901,24,4.5,27,0.0 +14901,6,25,3,0.0 +14901,29,123.79,10,0.0 +14901,48,12.75,17,0.0 +14901,15,15.5,22,0.0 +14901,69,36,11,0.0 +14901,27,43.9,15,0.0 +14901,8,40,44,0.0 +14901,31,12.5,6,0.0 +14901,22,21,30,0.0 +14901,25,14,48,0.0 +14901,26,31.23,38,0.0 +14901,38,263.5,22,0.0 +14901,37,26,16,0.0 +14901,35,18,2,0.0 +14901,4,22,9,0.0 +14901,30,25.89,47,0.0 +14901,50,16.25,43,0.0 +14901,13,6,4,0.0 +14901,61,28.5,16,0.0 +14901,28,45.6,12,0.0 +14901,72,34.8,3,0.0 +14901,3,10,39,0.0 +14901,68,12.5,38,0.0 +14901,62,49.3,2,0.0 +14901,64,33.25,10,0.0 +14901,65,21.05,44,0.0 +14901,76,18,48,0.0 +14901,60,34,41,0.0 +14901,49,20,23,0.0 +14901,17,39,16,0.0 +14901,75,7.75,20,0.0 +14901,7,30,35,0.0 +14901,39,18,34,0.0 +14901,11,21,29,0.0 +14901,34,14,29,0.0 +14901,63,43.9,14,0.0 +14901,14,23.25,1,0.0 +14901,67,14,29,0.0 +14901,2,19,46,0.0 +14901,66,17,19,0.0 +14901,12,38,24,0.0 +14901,44,19.45,45,0.0 +14901,5,21.35,49,0.0 +14901,56,38,15,0.0 +14901,41,9.65,33,0.0 +14901,71,21.5,45,0.0 +14901,18,62.5,5,0.0 +14902,58,13.25,20,0.0 +14902,8,40,12,0.0 +14902,22,21,24,0.0 +14902,76,18,38,0.0 +14902,11,21,34,0.0 +14902,32,32,7,0.0 +14902,54,7.45,26,0.0 +14902,6,25,23,0.0 +14902,70,15,15,0.0 +14902,31,12.5,10,0.0 +14902,10,31,14,0.0 +14902,46,12,30,0.0 +14902,1,18,1,0.0 +14902,2,19,19,0.0 +14902,68,12.5,34,0.0 +14902,18,62.5,16,0.0 +14902,14,23.25,15,0.0 +14902,67,14,11,0.0 +14902,21,10,36,0.0 +14902,53,32.8,18,0.0 +14902,45,9.5,39,0.0 +14902,33,2.5,26,0.0 +14902,20,81,2,0.0 +14902,24,4.5,9,0.0 +14902,40,18.4,45,0.0 +14902,52,7,10,0.0 +14902,43,46,48,0.0 +14902,28,45.6,8,0.0 +14902,13,6,14,0.0 +14902,37,26,47,0.0 +14902,42,14,30,0.0 +14902,65,21.05,4,0.0 +14902,5,21.35,47,0.0 +14902,60,34,48,0.0 +14902,57,19.5,25,0.0 +14902,12,38,21,0.0 +14902,77,13,6,0.0 +14902,49,20,30,0.0 +14902,9,97,29,0.0 +14902,27,43.9,14,0.0 +14902,48,12.75,31,0.0 +14902,51,53,46,0.0 +14902,44,19.45,13,0.0 +14902,26,31.23,15,0.0 +14902,7,30,23,0.0 +14902,74,10,48,0.0 +14902,69,36,41,0.0 +14902,30,25.89,43,0.0 +14902,55,24,44,0.0 +14902,25,14,16,0.0 +14902,47,9.5,49,0.0 +14902,75,7.75,12,0.0 +14902,35,18,22,0.0 +14902,29,123.79,3,0.0 +14902,62,49.3,27,0.0 +14902,50,16.25,28,0.0 +14902,63,43.9,16,0.0 +14902,61,28.5,32,0.0 +14902,66,17,14,0.0 +14902,16,17.45,39,0.0 +14902,73,15,5,0.0 +14902,38,263.5,5,0.0 +14903,67,14,12,0.0 +14903,68,12.5,18,0.0 +14903,38,263.5,39,0.0 +14903,57,19.5,4,0.0 +14903,23,9,46,0.0 +14903,75,7.75,37,0.0 +14903,72,34.8,36,0.0 +14903,34,14,25,0.0 +14903,48,12.75,19,0.0 +14903,77,13,41,0.0 +14903,65,21.05,3,0.0 +14903,29,123.79,8,0.0 +14903,24,4.5,38,0.0 +14903,51,53,16,0.0 +14903,60,34,5,0.0 +14903,22,21,4,0.0 +14903,71,21.5,1,0.0 +14903,2,19,1,0.0 +14903,4,22,27,0.0 +14903,41,9.65,3,0.0 +14903,1,18,10,0.0 +14903,56,38,13,0.0 +14903,36,19,42,0.0 +14903,8,40,45,0.0 +14903,17,39,17,0.0 +14903,73,15,5,0.0 +14903,63,43.9,36,0.0 +14903,76,18,23,0.0 +14903,32,32,44,0.0 +14903,25,14,27,0.0 +14903,43,46,40,0.0 +14903,3,10,38,0.0 +14903,7,30,46,0.0 +14903,21,10,40,0.0 +14903,6,25,27,0.0 +14903,9,97,35,0.0 +14903,66,17,12,0.0 +14903,40,18.4,27,0.0 +14903,70,15,44,0.0 +14903,11,21,20,0.0 +14903,50,16.25,34,0.0 +14903,5,21.35,15,0.0 +14903,58,13.25,10,0.0 +14903,47,9.5,4,0.0 +14903,33,2.5,6,0.0 +14903,44,19.45,7,0.0 +14903,12,38,4,0.0 +14903,55,24,8,0.0 +14903,16,17.45,28,0.0 +14903,64,33.25,24,0.0 +14903,27,43.9,25,0.0 +14903,69,36,8,0.0 +14903,13,6,39,0.0 +14903,10,31,42,0.0 +14903,62,49.3,38,0.0 +14903,30,25.89,48,0.0 +14903,49,20,48,0.0 +14903,35,18,24,0.0 +14903,19,9.2,21,0.0 +14903,20,81,33,0.0 +14903,14,23.25,40,0.0 +14903,39,18,27,0.0 +14903,74,10,17,0.0 +14903,18,62.5,4,0.0 +14903,53,32.8,39,0.0 +14903,54,7.45,17,0.0 +14903,61,28.5,48,0.0 +14903,45,9.5,34,0.0 +14903,31,12.5,32,0.0 +14903,52,7,35,0.0 +14903,46,12,12,0.0 +14903,37,26,47,0.0 +14903,42,14,12,0.0 +14903,59,55,38,0.0 +14904,43,46,29,0.0 +14904,24,4.5,11,0.0 +14904,21,10,32,0.0 +14904,9,97,24,0.0 +14904,47,9.5,42,0.0 +14904,38,263.5,34,0.0 +14904,70,15,12,0.0 +14904,12,38,13,0.0 +14904,66,17,3,0.0 +14904,22,21,35,0.0 +14904,55,24,23,0.0 +14904,17,39,40,0.0 +14904,19,9.2,20,0.0 +14904,23,9,23,0.0 +14904,8,40,3,0.0 +14904,18,62.5,7,0.0 +14904,29,123.79,38,0.0 +14904,31,12.5,8,0.0 +14904,39,18,26,0.0 +14904,74,10,44,0.0 +14904,49,20,6,0.0 +14904,30,25.89,40,0.0 +14904,34,14,31,0.0 +14905,72,34.8,4,0.0 +14905,40,18.4,5,0.0 +14905,60,34,30,0.0 +14905,19,9.2,40,0.0 +14905,53,32.8,17,0.0 +14905,29,123.79,40,0.0 +14905,65,21.05,50,0.0 +14905,69,36,9,0.0 +14905,37,26,48,0.0 +14905,5,21.35,19,0.0 +14905,42,14,22,0.0 +14906,33,2.5,8,0.0 +14906,9,97,6,0.0 +14906,16,17.45,26,0.0 +14906,31,12.5,41,0.0 +14906,2,19,5,0.0 +14906,71,21.5,13,0.0 +14906,7,30,30,0.0 +14906,74,10,35,0.0 +14906,60,34,20,0.0 +14906,49,20,28,0.0 +14906,10,31,28,0.0 +14906,11,21,48,0.0 +14906,19,9.2,43,0.0 +14906,17,39,31,0.0 +14906,4,22,10,0.0 +14906,69,36,20,0.0 +14906,68,12.5,34,0.0 +14906,61,28.5,27,0.0 +14906,66,17,21,0.0 +14906,64,33.25,25,0.0 +14906,24,4.5,33,0.0 +14906,52,7,32,0.0 +14906,34,14,17,0.0 +14906,8,40,15,0.0 +14906,12,38,35,0.0 +14906,63,43.9,24,0.0 +14906,5,21.35,35,0.0 +14906,51,53,7,0.0 +14906,26,31.23,19,0.0 +14906,57,19.5,8,0.0 +14906,72,34.8,31,0.0 +14906,6,25,28,0.0 +14906,32,32,32,0.0 +14906,18,62.5,31,0.0 +14906,23,9,48,0.0 +14906,28,45.6,34,0.0 +14906,29,123.79,49,0.0 +14906,47,9.5,33,0.0 +14906,37,26,27,0.0 +14906,3,10,20,0.0 +14906,44,19.45,34,0.0 +14906,73,15,1,0.0 +14906,59,55,47,0.0 +14906,54,7.45,30,0.0 +14906,14,23.25,1,0.0 +14906,75,7.75,6,0.0 +14906,48,12.75,38,0.0 +14906,30,25.89,20,0.0 +14907,60,34,38,0.0 +14907,75,7.75,45,0.0 +14907,14,23.25,41,0.0 +14907,64,33.25,43,0.0 +14907,30,25.89,2,0.0 +14907,13,6,22,0.0 +14907,9,97,18,0.0 +14907,33,2.5,13,0.0 +14907,63,43.9,36,0.0 +14907,32,32,23,0.0 +14907,24,4.5,24,0.0 +14907,31,12.5,24,0.0 +14907,42,14,33,0.0 +14907,18,62.5,31,0.0 +14907,27,43.9,5,0.0 +14908,55,24,5,0.0 +14908,42,14,33,0.0 +14908,53,32.8,6,0.0 +14908,64,33.25,49,0.0 +14908,62,49.3,50,0.0 +14908,27,43.9,8,0.0 +14908,71,21.5,17,0.0 +14908,59,55,29,0.0 +14908,63,43.9,45,0.0 +14908,39,18,8,0.0 +14908,15,15.5,46,0.0 +14908,20,81,43,0.0 +14908,47,9.5,26,0.0 +14908,54,7.45,16,0.0 +14908,5,21.35,32,0.0 +14908,41,9.65,19,0.0 +14908,66,17,40,0.0 +14908,50,16.25,41,0.0 +14908,34,14,43,0.0 +14908,25,14,50,0.0 +14908,77,13,9,0.0 +14908,7,30,38,0.0 +14908,33,2.5,13,0.0 +14908,8,40,5,0.0 +14908,21,10,6,0.0 +14908,32,32,39,0.0 +14908,72,34.8,32,0.0 +14908,70,15,16,0.0 +14908,1,18,44,0.0 +14908,61,28.5,17,0.0 +14908,48,12.75,36,0.0 +14908,26,31.23,34,0.0 +14908,30,25.89,30,0.0 +14908,49,20,31,0.0 +14908,51,53,16,0.0 +14909,20,81,19,0.0 +14909,4,22,25,0.0 +14909,74,10,35,0.0 +14909,43,46,12,0.0 +14909,54,7.45,36,0.0 +14909,68,12.5,13,0.0 +14909,21,10,49,0.0 +14909,24,4.5,9,0.0 +14909,72,34.8,4,0.0 +14909,38,263.5,10,0.0 +14909,27,43.9,49,0.0 +14909,70,15,22,0.0 +14909,62,49.3,37,0.0 +14910,68,12.5,39,0.0 +14910,77,13,20,0.0 +14910,70,15,39,0.0 +14910,62,49.3,19,0.0 +14910,16,17.45,33,0.0 +14910,52,7,28,0.0 +14910,40,18.4,38,0.0 +14910,8,40,23,0.0 +14910,10,31,25,0.0 +14910,13,6,43,0.0 +14910,34,14,1,0.0 +14910,23,9,50,0.0 +14910,30,25.89,35,0.0 +14910,4,22,2,0.0 +14910,41,9.65,18,0.0 +14910,20,81,22,0.0 +14910,22,21,40,0.0 +14910,61,28.5,3,0.0 +14910,36,19,6,0.0 +14910,33,2.5,50,0.0 +14910,24,4.5,35,0.0 +14910,54,7.45,32,0.0 +14910,15,15.5,2,0.0 +14910,44,19.45,13,0.0 +14910,75,7.75,19,0.0 +14910,46,12,4,0.0 +14910,14,23.25,38,0.0 +14910,27,43.9,36,0.0 +14910,2,19,3,0.0 +14910,31,12.5,36,0.0 +14910,3,10,14,0.0 +14910,35,18,44,0.0 +14910,11,21,36,0.0 +14910,58,13.25,12,0.0 +14910,67,14,42,0.0 +14910,76,18,14,0.0 +14910,66,17,18,0.0 +14910,64,33.25,17,0.0 +14910,25,14,38,0.0 +14910,69,36,12,0.0 +14910,47,9.5,48,0.0 +14910,59,55,13,0.0 +14910,7,30,49,0.0 +14910,5,21.35,13,0.0 +14910,60,34,21,0.0 +14910,56,38,21,0.0 +14910,32,32,27,0.0 +14910,48,12.75,48,0.0 +14910,26,31.23,32,0.0 +14910,12,38,9,0.0 +14910,65,21.05,41,0.0 +14910,9,97,25,0.0 +14910,43,46,30,0.0 +14911,29,123.79,47,0.0 +14911,56,38,10,0.0 +14911,58,13.25,34,0.0 +14911,71,21.5,1,0.0 +14911,74,10,49,0.0 +14911,27,43.9,37,0.0 +14911,4,22,25,0.0 +14911,47,9.5,46,0.0 +14911,67,14,50,0.0 +14911,48,12.75,29,0.0 +14911,52,7,38,0.0 +14911,57,19.5,2,0.0 +14911,11,21,23,0.0 +14911,44,19.45,22,0.0 +14911,31,12.5,1,0.0 +14911,61,28.5,41,0.0 +14911,1,18,21,0.0 +14911,8,40,13,0.0 +14911,39,18,35,0.0 +14911,22,21,26,0.0 +14911,59,55,9,0.0 +14911,32,32,5,0.0 +14911,36,19,27,0.0 +14911,72,34.8,27,0.0 +14911,77,13,41,0.0 +14911,15,15.5,22,0.0 +14911,73,15,24,0.0 +14911,60,34,49,0.0 +14911,70,15,18,0.0 +14911,3,10,31,0.0 +14911,20,81,32,0.0 +14911,50,16.25,43,0.0 +14911,68,12.5,44,0.0 +14911,2,19,50,0.0 +14911,23,9,6,0.0 +14911,49,20,29,0.0 +14911,55,24,10,0.0 +14911,53,32.8,19,0.0 +14911,12,38,48,0.0 +14911,76,18,38,0.0 +14911,26,31.23,42,0.0 +14911,69,36,9,0.0 +14911,66,17,11,0.0 +14911,64,33.25,46,0.0 +14911,63,43.9,8,0.0 +14911,37,26,4,0.0 +14911,10,31,20,0.0 +14911,33,2.5,8,0.0 +14911,6,25,28,0.0 +14911,7,30,48,0.0 +14911,21,10,36,0.0 +14911,46,12,1,0.0 +14911,25,14,31,0.0 +14911,24,4.5,47,0.0 +14911,62,49.3,38,0.0 +14911,13,6,29,0.0 +14911,17,39,40,0.0 +14911,54,7.45,20,0.0 +14911,34,14,7,0.0 +14911,30,25.89,13,0.0 +14911,43,46,27,0.0 +14912,66,17,26,0.0 +14912,3,10,38,0.0 +14912,69,36,29,0.0 +14912,53,32.8,31,0.0 +14912,77,13,14,0.0 +14912,25,14,47,0.0 +14912,46,12,23,0.0 +14912,11,21,41,0.0 +14912,29,123.79,28,0.0 +14912,26,31.23,9,0.0 +14912,27,43.9,48,0.0 +14912,35,18,37,0.0 +14912,20,81,8,0.0 +14912,72,34.8,15,0.0 +14912,23,9,13,0.0 +14913,1,18,15,0.0 +14913,3,10,7,0.0 +14913,33,2.5,36,0.0 +14913,45,9.5,27,0.0 +14913,8,40,46,0.0 +14913,74,10,18,0.0 +14913,61,28.5,33,0.0 +14913,36,19,42,0.0 +14913,48,12.75,47,0.0 +14913,60,34,32,0.0 +14913,21,10,25,0.0 +14913,73,15,49,0.0 +14913,40,18.4,48,0.0 +14913,22,21,11,0.0 +14913,31,12.5,45,0.0 +14913,25,14,45,0.0 +14913,15,15.5,17,0.0 +14913,55,24,45,0.0 +14913,72,34.8,9,0.0 +14913,42,14,12,0.0 +14913,54,7.45,6,0.0 +14913,44,19.45,8,0.0 +14913,75,7.75,47,0.0 +14913,2,19,17,0.0 +14913,52,7,41,0.0 +14913,23,9,36,0.0 +14913,46,12,13,0.0 +14913,65,21.05,49,0.0 +14913,38,263.5,25,0.0 +14913,64,33.25,18,0.0 +14913,28,45.6,6,0.0 +14913,35,18,12,0.0 +14913,13,6,17,0.0 +14913,18,62.5,3,0.0 +14913,41,9.65,12,0.0 +14913,26,31.23,8,0.0 +14913,76,18,15,0.0 +14913,58,13.25,41,0.0 +14913,7,30,8,0.0 +14913,20,81,9,0.0 +14913,47,9.5,8,0.0 +14913,43,46,12,0.0 +14913,17,39,34,0.0 +14913,29,123.79,22,0.0 +14914,74,10,39,0.0 +14914,24,4.5,48,0.0 +14914,34,14,2,0.0 +14914,77,13,1,0.0 +14914,6,25,46,0.0 +14914,61,28.5,29,0.0 +14914,28,45.6,28,0.0 +14915,44,19.45,1,0.0 +14915,68,12.5,18,0.0 +14915,24,4.5,7,0.0 +14915,29,123.79,48,0.0 +14915,71,21.5,21,0.0 +14915,16,17.45,22,0.0 +14915,66,17,39,0.0 +14915,42,14,46,0.0 +14915,34,14,11,0.0 +14915,28,45.6,33,0.0 +14915,56,38,43,0.0 +14915,73,15,23,0.0 +14915,20,81,29,0.0 +14915,38,263.5,9,0.0 +14915,2,19,46,0.0 +14915,12,38,1,0.0 +14915,7,30,25,0.0 +14915,45,9.5,16,0.0 +14915,9,97,34,0.0 +14915,77,13,33,0.0 +14915,57,19.5,35,0.0 +14915,33,2.5,44,0.0 +14915,22,21,25,0.0 +14915,48,12.75,28,0.0 +14915,36,19,50,0.0 +14915,43,46,44,0.0 +14915,25,14,6,0.0 +14915,21,10,47,0.0 +14915,40,18.4,24,0.0 +14915,76,18,25,0.0 +14915,62,49.3,14,0.0 +14915,19,9.2,50,0.0 +14915,8,40,33,0.0 +14915,26,31.23,8,0.0 +14915,51,53,36,0.0 +14915,55,24,33,0.0 +14915,35,18,46,0.0 +14915,1,18,12,0.0 +14915,64,33.25,15,0.0 +14915,37,26,12,0.0 +14915,65,21.05,5,0.0 +14915,69,36,34,0.0 +14915,18,62.5,46,0.0 +14915,10,31,2,0.0 +14915,46,12,9,0.0 +14916,49,20,30,0.0 +14916,1,18,24,0.0 +14916,48,12.75,13,0.0 +14916,28,45.6,50,0.0 +14916,47,9.5,4,0.0 +14916,32,32,22,0.0 +14916,60,34,16,0.0 +14916,24,4.5,36,0.0 +14916,6,25,23,0.0 +14916,64,33.25,28,0.0 +14916,41,9.65,16,0.0 +14917,62,49.3,43,0.0 +14917,48,12.75,11,0.0 +14917,32,32,40,0.0 +14917,19,9.2,45,0.0 +14917,25,14,25,0.0 +14917,27,43.9,45,0.0 +14917,59,55,27,0.0 +14917,73,15,4,0.0 +14917,57,19.5,14,0.0 +14917,65,21.05,21,0.0 +14917,10,31,2,0.0 +14917,76,18,29,0.0 +14917,56,38,25,0.0 +14917,23,9,36,0.0 +14917,34,14,12,0.0 +14917,29,123.79,20,0.0 +14917,72,34.8,3,0.0 +14917,36,19,44,0.0 +14917,49,20,18,0.0 +14917,66,17,29,0.0 +14917,8,40,38,0.0 +14917,60,34,12,0.0 +14917,50,16.25,12,0.0 +14917,17,39,3,0.0 +14917,1,18,10,0.0 +14917,39,18,42,0.0 +14917,26,31.23,23,0.0 +14917,68,12.5,15,0.0 +14917,24,4.5,16,0.0 +14917,15,15.5,31,0.0 +14917,63,43.9,13,0.0 +14917,3,10,40,0.0 +14917,69,36,1,0.0 +14917,31,12.5,35,0.0 +14917,38,263.5,27,0.0 +14918,44,19.45,1,0.0 +14918,37,26,12,0.0 +14918,23,9,41,0.0 +14918,61,28.5,21,0.0 +14918,39,18,37,0.0 +14918,34,14,29,0.0 +14918,35,18,40,0.0 +14918,24,4.5,44,0.0 +14918,5,21.35,39,0.0 +14918,74,10,45,0.0 +14918,14,23.25,27,0.0 +14918,22,21,3,0.0 +14918,27,43.9,30,0.0 +14918,67,14,48,0.0 +14918,4,22,43,0.0 +14918,29,123.79,36,0.0 +14918,31,12.5,18,0.0 +14918,41,9.65,23,0.0 +14918,30,25.89,27,0.0 +14918,12,38,19,0.0 +14918,48,12.75,19,0.0 +14918,58,13.25,50,0.0 +14918,76,18,34,0.0 +14918,2,19,36,0.0 +14918,69,36,22,0.0 +14918,7,30,38,0.0 +14918,19,9.2,40,0.0 +14918,70,15,29,0.0 +14918,57,19.5,1,0.0 +14919,24,4.5,31,0.0 +14919,58,13.25,38,0.0 +14919,48,12.75,17,0.0 +14919,19,9.2,19,0.0 +14919,37,26,6,0.0 +14919,8,40,47,0.0 +14919,62,49.3,30,0.0 +14919,38,263.5,14,0.0 +14919,57,19.5,23,0.0 +14919,11,21,16,0.0 +14919,2,19,12,0.0 +14919,70,15,33,0.0 +14919,73,15,18,0.0 +14919,3,10,16,0.0 +14919,16,17.45,48,0.0 +14919,63,43.9,5,0.0 +14919,59,55,39,0.0 +14919,5,21.35,7,0.0 +14919,17,39,31,0.0 +14919,51,53,15,0.0 +14919,20,81,34,0.0 +14919,12,38,15,0.0 +14919,55,24,24,0.0 +14919,10,31,29,0.0 +14919,33,2.5,7,0.0 +14919,31,12.5,50,0.0 +14919,35,18,16,0.0 +14919,7,30,12,0.0 +14919,21,10,5,0.0 +14919,28,45.6,34,0.0 +14919,44,19.45,31,0.0 +14919,42,14,45,0.0 +14919,74,10,30,0.0 +14919,53,32.8,7,0.0 +14919,14,23.25,33,0.0 +14919,30,25.89,1,0.0 +14920,69,36,30,0.0 +14920,7,30,41,0.0 +14920,70,15,10,0.0 +14920,3,10,12,0.0 +14920,35,18,5,0.0 +14920,48,12.75,44,0.0 +14920,2,19,38,0.0 +14920,56,38,34,0.0 +14920,28,45.6,28,0.0 +14920,41,9.65,12,0.0 +14920,11,21,7,0.0 +14920,76,18,12,0.0 +14920,36,19,10,0.0 +14920,1,18,38,0.0 +14920,23,9,20,0.0 +14920,4,22,44,0.0 +14920,40,18.4,1,0.0 +14920,14,23.25,1,0.0 +14920,43,46,46,0.0 +14920,50,16.25,10,0.0 +14920,13,6,27,0.0 +14920,45,9.5,36,0.0 +14920,38,263.5,22,0.0 +14920,59,55,14,0.0 +14920,21,10,27,0.0 +14920,16,17.45,6,0.0 +14920,64,33.25,47,0.0 +14920,73,15,49,0.0 +14920,58,13.25,35,0.0 +14920,20,81,17,0.0 +14920,33,2.5,8,0.0 +14920,75,7.75,39,0.0 +14920,51,53,18,0.0 +14920,74,10,32,0.0 +14921,47,9.5,3,0.0 +14921,68,12.5,12,0.0 +14921,21,10,22,0.0 +14921,51,53,30,0.0 +14921,10,31,35,0.0 +14921,30,25.89,19,0.0 +14921,5,21.35,48,0.0 +14921,12,38,39,0.0 +14921,24,4.5,29,0.0 +14921,19,9.2,49,0.0 +14921,75,7.75,7,0.0 +14921,58,13.25,14,0.0 +14921,22,21,18,0.0 +14921,1,18,26,0.0 +14921,6,25,29,0.0 +14921,39,18,40,0.0 +14921,52,7,36,0.0 +14921,59,55,49,0.0 +14921,4,22,19,0.0 +14921,34,14,21,0.0 +14921,55,24,42,0.0 +14921,61,28.5,47,0.0 +14921,27,43.9,19,0.0 +14921,41,9.65,15,0.0 +14921,65,21.05,48,0.0 +14921,16,17.45,39,0.0 +14921,43,46,4,0.0 +14921,77,13,45,0.0 +14921,74,10,48,0.0 +14921,8,40,35,0.0 +14921,14,23.25,1,0.0 +14921,71,21.5,50,0.0 +14921,15,15.5,35,0.0 +14921,13,6,45,0.0 +14921,62,49.3,14,0.0 +14922,17,39,38,0.0 +14922,44,19.45,31,0.0 +14922,41,9.65,16,0.0 +14922,25,14,39,0.0 +14922,75,7.75,48,0.0 +14922,24,4.5,30,0.0 +14922,18,62.5,22,0.0 +14922,48,12.75,1,0.0 +14922,36,19,49,0.0 +14922,20,81,24,0.0 +14922,5,21.35,2,0.0 +14922,49,20,5,0.0 +14922,66,17,15,0.0 +14922,37,26,19,0.0 +14922,58,13.25,22,0.0 +14922,72,34.8,48,0.0 +14922,68,12.5,12,0.0 +14922,34,14,15,0.0 +14922,73,15,3,0.0 +14922,8,40,29,0.0 +14922,53,32.8,48,0.0 +14922,30,25.89,5,0.0 +14922,77,13,43,0.0 +14922,46,12,39,0.0 +14922,7,30,6,0.0 +14922,6,25,37,0.0 +14922,40,18.4,42,0.0 +14922,64,33.25,25,0.0 +14922,62,49.3,12,0.0 +14922,31,12.5,32,0.0 +14922,54,7.45,26,0.0 +14922,27,43.9,6,0.0 +14922,60,34,16,0.0 +14922,74,10,28,0.0 +14922,57,19.5,14,0.0 +14922,19,9.2,33,0.0 +14922,15,15.5,12,0.0 +14922,51,53,43,0.0 +14922,1,18,43,0.0 +14923,65,21.05,47,0.0 +14923,51,53,11,0.0 +14923,31,12.5,17,0.0 +14923,47,9.5,43,0.0 +14923,74,10,12,0.0 +14923,58,13.25,33,0.0 +14923,64,33.25,3,0.0 +14923,41,9.65,36,0.0 +14923,73,15,35,0.0 +14923,37,26,29,0.0 +14923,8,40,2,0.0 +14923,21,10,30,0.0 +14923,50,16.25,6,0.0 +14923,70,15,46,0.0 +14923,3,10,28,0.0 +14923,42,14,20,0.0 +14923,19,9.2,5,0.0 +14923,57,19.5,32,0.0 +14923,9,97,27,0.0 +14924,52,7,18,0.0 +14924,28,45.6,13,0.0 +14924,29,123.79,20,0.0 +14924,66,17,39,0.0 +14924,75,7.75,9,0.0 +14924,8,40,32,0.0 +14924,14,23.25,26,0.0 +14924,13,6,14,0.0 +14924,51,53,17,0.0 +14925,54,7.45,1,0.0 +14925,60,34,7,0.0 +14925,73,15,22,0.0 +14925,2,19,30,0.0 +14925,36,19,5,0.0 +14925,1,18,12,0.0 +14925,64,33.25,8,0.0 +14925,72,34.8,24,0.0 +14925,17,39,29,0.0 +14925,42,14,11,0.0 +14925,55,24,14,0.0 +14925,16,17.45,42,0.0 +14925,65,21.05,6,0.0 +14925,3,10,9,0.0 +14925,58,13.25,41,0.0 +14925,35,18,2,0.0 +14925,31,12.5,17,0.0 +14925,4,22,38,0.0 +14925,19,9.2,16,0.0 +14925,69,36,42,0.0 +14925,5,21.35,7,0.0 +14925,53,32.8,26,0.0 +14925,34,14,42,0.0 +14925,22,21,50,0.0 +14925,40,18.4,16,0.0 +14925,6,25,50,0.0 +14925,23,9,21,0.0 +14925,24,4.5,21,0.0 +14925,39,18,3,0.0 +14925,52,7,44,0.0 +14925,70,15,40,0.0 +14925,7,30,24,0.0 +14925,30,25.89,14,0.0 +14925,67,14,30,0.0 +14925,71,21.5,25,0.0 +14925,11,21,24,0.0 +14925,63,43.9,42,0.0 +14925,10,31,13,0.0 +14926,22,21,9,0.0 +14926,53,32.8,26,0.0 +14926,1,18,50,0.0 +14926,32,32,31,0.0 +14926,33,2.5,26,0.0 +14926,45,9.5,43,0.0 +14926,72,34.8,18,0.0 +14926,34,14,29,0.0 +14926,36,19,45,0.0 +14926,56,38,47,0.0 +14926,21,10,10,0.0 +14926,48,12.75,42,0.0 +14926,18,62.5,13,0.0 +14926,26,31.23,29,0.0 +14926,30,25.89,22,0.0 +14926,17,39,10,0.0 +14926,6,25,11,0.0 +14926,8,40,24,0.0 +14926,59,55,43,0.0 +14926,55,24,28,0.0 +14926,58,13.25,13,0.0 +14926,2,19,23,0.0 +14926,4,22,24,0.0 +14926,13,6,12,0.0 +14926,49,20,23,0.0 +14926,62,49.3,40,0.0 +14926,12,38,20,0.0 +14926,9,97,3,0.0 +14926,63,43.9,36,0.0 +14926,71,21.5,30,0.0 +14926,47,9.5,12,0.0 +14926,39,18,28,0.0 +14926,19,9.2,37,0.0 +14926,76,18,25,0.0 +14926,42,14,1,0.0 +14926,70,15,20,0.0 +14926,73,15,36,0.0 +14926,69,36,18,0.0 +14926,31,12.5,26,0.0 +14926,67,14,11,0.0 +14926,66,17,33,0.0 +14927,4,22,18,0.0 +14927,13,6,7,0.0 +14927,28,45.6,42,0.0 +14927,45,9.5,26,0.0 +14927,64,33.25,27,0.0 +14927,60,34,1,0.0 +14927,3,10,49,0.0 +14927,23,9,43,0.0 +14927,53,32.8,3,0.0 +14927,44,19.45,22,0.0 +14928,29,123.79,13,0.0 +14928,37,26,47,0.0 +14928,52,7,25,0.0 +14928,69,36,37,0.0 +14928,60,34,20,0.0 +14928,41,9.65,1,0.0 +14928,9,97,24,0.0 +14928,27,43.9,41,0.0 +14928,64,33.25,36,0.0 +14928,48,12.75,16,0.0 +14928,17,39,4,0.0 +14928,44,19.45,50,0.0 +14929,5,21.35,16,0.0 +14929,39,18,42,0.0 +14929,51,53,45,0.0 +14929,15,15.5,16,0.0 +14929,59,55,19,0.0 +14929,3,10,4,0.0 +14929,52,7,22,0.0 +14929,10,31,9,0.0 +14929,27,43.9,3,0.0 +14929,30,25.89,25,0.0 +14929,69,36,2,0.0 +14929,18,62.5,21,0.0 +14929,71,21.5,36,0.0 +14929,7,30,8,0.0 +14929,24,4.5,2,0.0 +14929,70,15,31,0.0 +14929,53,32.8,38,0.0 +14929,55,24,21,0.0 +14929,46,12,26,0.0 +14929,31,12.5,18,0.0 +14929,4,22,19,0.0 +14929,26,31.23,8,0.0 +14929,25,14,24,0.0 +14929,73,15,26,0.0 +14929,54,7.45,9,0.0 +14929,38,263.5,21,0.0 +14929,45,9.5,28,0.0 +14929,41,9.65,5,0.0 +14929,67,14,44,0.0 +14929,6,25,7,0.0 +14929,77,13,17,0.0 +14929,50,16.25,15,0.0 +14929,21,10,10,0.0 +14929,13,6,19,0.0 +14929,66,17,1,0.0 +14929,22,21,1,0.0 +14929,61,28.5,3,0.0 +14929,49,20,39,0.0 +14929,56,38,39,0.0 +14930,48,12.75,25,0.0 +14930,10,31,35,0.0 +14930,77,13,42,0.0 +14930,21,10,1,0.0 +14930,31,12.5,17,0.0 +14930,56,38,25,0.0 +14930,18,62.5,22,0.0 +14930,5,21.35,34,0.0 +14930,4,22,23,0.0 +14930,28,45.6,32,0.0 +14930,64,33.25,3,0.0 +14930,65,21.05,21,0.0 +14930,52,7,37,0.0 +14930,12,38,7,0.0 +14930,53,32.8,26,0.0 +14930,47,9.5,35,0.0 +14930,35,18,36,0.0 +14930,72,34.8,22,0.0 +14930,6,25,7,0.0 +14930,20,81,44,0.0 +14930,19,9.2,2,0.0 +14930,57,19.5,6,0.0 +14930,1,18,33,0.0 +14930,66,17,9,0.0 +14931,66,17,25,0.0 +14931,10,31,15,0.0 +14931,73,15,10,0.0 +14931,35,18,36,0.0 +14931,15,15.5,6,0.0 +14931,56,38,35,0.0 +14931,11,21,40,0.0 +14931,7,30,6,0.0 +14931,18,62.5,10,0.0 +14931,1,18,14,0.0 +14931,16,17.45,35,0.0 +14931,30,25.89,46,0.0 +14931,6,25,19,0.0 +14931,61,28.5,44,0.0 +14931,43,46,8,0.0 +14931,32,32,29,0.0 +14931,21,10,32,0.0 +14931,3,10,22,0.0 +14931,70,15,38,0.0 +14931,8,40,39,0.0 +14931,47,9.5,42,0.0 +14931,33,2.5,38,0.0 +14931,34,14,27,0.0 +14931,29,123.79,40,0.0 +14931,38,263.5,22,0.0 +14931,74,10,18,0.0 +14931,26,31.23,31,0.0 +14931,27,43.9,18,0.0 +14931,59,55,12,0.0 +14931,41,9.65,29,0.0 +14931,50,16.25,48,0.0 +14931,36,19,8,0.0 +14931,2,19,5,0.0 +14931,48,12.75,4,0.0 +14931,72,34.8,48,0.0 +14931,9,97,50,0.0 +14931,77,13,15,0.0 +14931,39,18,22,0.0 +14931,44,19.45,9,0.0 +14931,62,49.3,11,0.0 +14931,17,39,11,0.0 +14931,75,7.75,34,0.0 +14931,71,21.5,42,0.0 +14931,37,26,22,0.0 +14931,54,7.45,47,0.0 +14931,12,38,20,0.0 +14931,52,7,45,0.0 +14931,68,12.5,28,0.0 +14931,45,9.5,33,0.0 +14931,42,14,47,0.0 +14931,23,9,9,0.0 +14931,20,81,3,0.0 +14931,55,24,13,0.0 +14931,76,18,40,0.0 +14931,22,21,33,0.0 +14931,53,32.8,27,0.0 +14931,31,12.5,28,0.0 +14931,49,20,22,0.0 +14931,64,33.25,7,0.0 +14931,67,14,25,0.0 +14931,25,14,14,0.0 +14931,4,22,43,0.0 +14932,40,18.4,49,0.0 +14932,13,6,41,0.0 +14932,77,13,29,0.0 +14932,38,263.5,33,0.0 +14932,55,24,34,0.0 +14932,25,14,18,0.0 +14932,32,32,1,0.0 +14932,61,28.5,30,0.0 +14932,43,46,35,0.0 +14932,51,53,35,0.0 +14932,3,10,31,0.0 +14932,1,18,12,0.0 +14932,17,39,22,0.0 +14932,20,81,43,0.0 +14932,8,40,49,0.0 +14932,10,31,5,0.0 +14932,11,21,48,0.0 +14932,12,38,17,0.0 +14932,54,7.45,7,0.0 +14932,30,25.89,11,0.0 +14933,58,13.25,14,0.0 +14933,53,32.8,17,0.0 +14933,41,9.65,42,0.0 +14933,25,14,20,0.0 +14933,54,7.45,24,0.0 +14933,72,34.8,15,0.0 +14933,42,14,31,0.0 +14933,76,18,37,0.0 +14933,47,9.5,12,0.0 +14933,64,33.25,2,0.0 +14933,40,18.4,31,0.0 +14933,46,12,17,0.0 +14933,5,21.35,39,0.0 +14933,23,9,37,0.0 +14933,26,31.23,12,0.0 +14933,48,12.75,7,0.0 +14933,30,25.89,30,0.0 +14933,32,32,26,0.0 +14933,33,2.5,31,0.0 +14933,16,17.45,32,0.0 +14933,45,9.5,22,0.0 +14933,67,14,11,0.0 +14933,17,39,37,0.0 +14933,4,22,22,0.0 +14933,57,19.5,21,0.0 +14933,24,4.5,15,0.0 +14933,63,43.9,38,0.0 +14933,19,9.2,24,0.0 +14933,75,7.75,22,0.0 +14933,49,20,29,0.0 +14933,35,18,28,0.0 +14933,36,19,6,0.0 +14933,68,12.5,8,0.0 +14933,8,40,37,0.0 +14933,13,6,49,0.0 +14933,21,10,21,0.0 +14933,71,21.5,41,0.0 +14933,74,10,19,0.0 +14933,15,15.5,40,0.0 +14933,73,15,39,0.0 +14933,14,23.25,12,0.0 +14933,20,81,45,0.0 +14933,6,25,17,0.0 +14933,2,19,16,0.0 +14933,7,30,7,0.0 +14933,61,28.5,37,0.0 +14933,31,12.5,1,0.0 +14933,37,26,5,0.0 +14933,52,7,11,0.0 +14933,12,38,15,0.0 +14933,51,53,50,0.0 +14933,39,18,16,0.0 +14934,62,49.3,36,0.0 +14934,45,9.5,41,0.0 +14934,29,123.79,28,0.0 +14934,73,15,46,0.0 +14934,49,20,18,0.0 +14934,68,12.5,36,0.0 +14934,33,2.5,2,0.0 +14934,53,32.8,17,0.0 +14934,9,97,9,0.0 +14934,15,15.5,38,0.0 +14934,41,9.65,23,0.0 +14934,12,38,13,0.0 +14934,43,46,20,0.0 +14934,66,17,28,0.0 +14934,44,19.45,27,0.0 +14934,25,14,10,0.0 +14934,30,25.89,36,0.0 +14934,14,23.25,10,0.0 +14935,16,17.45,12,0.0 +14935,51,53,1,0.0 +14935,23,9,11,0.0 +14935,67,14,16,0.0 +14935,45,9.5,22,0.0 +14935,68,12.5,19,0.0 +14935,21,10,23,0.0 +14935,5,21.35,13,0.0 +14935,36,19,32,0.0 +14935,69,36,49,0.0 +14935,38,263.5,41,0.0 +14935,63,43.9,15,0.0 +14935,14,23.25,9,0.0 +14935,9,97,29,0.0 +14935,70,15,12,0.0 +14935,56,38,23,0.0 +14935,10,31,24,0.0 +14935,39,18,26,0.0 +14935,60,34,7,0.0 +14935,58,13.25,46,0.0 +14935,12,38,10,0.0 +14935,37,26,33,0.0 +14935,31,12.5,44,0.0 +14935,53,32.8,3,0.0 +14935,47,9.5,17,0.0 +14935,20,81,18,0.0 +14935,65,21.05,29,0.0 +14935,44,19.45,39,0.0 +14935,26,31.23,45,0.0 +14935,33,2.5,50,0.0 +14935,30,25.89,22,0.0 +14935,17,39,33,0.0 +14935,42,14,27,0.0 +14935,6,25,20,0.0 +14935,11,21,25,0.0 +14935,28,45.6,31,0.0 +14935,50,16.25,5,0.0 +14935,72,34.8,25,0.0 +14935,4,22,19,0.0 +14935,66,17,41,0.0 +14935,48,12.75,14,0.0 +14935,59,55,28,0.0 +14935,46,12,41,0.0 +14935,77,13,42,0.0 +14935,34,14,6,0.0 +14935,55,24,8,0.0 +14935,13,6,32,0.0 +14935,54,7.45,50,0.0 +14935,29,123.79,22,0.0 +14935,18,62.5,21,0.0 +14935,22,21,34,0.0 +14935,1,18,42,0.0 +14936,45,9.5,31,0.0 +14936,54,7.45,1,0.0 +14936,19,9.2,21,0.0 +14936,6,25,31,0.0 +14936,55,24,1,0.0 +14936,43,46,18,0.0 +14936,35,18,7,0.0 +14936,69,36,15,0.0 +14936,30,25.89,17,0.0 +14936,40,18.4,29,0.0 +14936,38,263.5,16,0.0 +14936,60,34,47,0.0 +14936,72,34.8,16,0.0 +14936,22,21,16,0.0 +14936,16,17.45,37,0.0 +14936,36,19,35,0.0 +14936,70,15,16,0.0 +14936,29,123.79,48,0.0 +14936,49,20,4,0.0 +14936,52,7,18,0.0 +14936,20,81,33,0.0 +14936,57,19.5,49,0.0 +14936,31,12.5,24,0.0 +14936,76,18,27,0.0 +14936,39,18,39,0.0 +14936,1,18,29,0.0 +14936,58,13.25,32,0.0 +14936,65,21.05,23,0.0 +14936,66,17,14,0.0 +14936,61,28.5,22,0.0 +14936,13,6,25,0.0 +14936,11,21,23,0.0 +14936,59,55,21,0.0 +14936,33,2.5,2,0.0 +14936,14,23.25,10,0.0 +14936,4,22,17,0.0 +14936,68,12.5,6,0.0 +14936,27,43.9,10,0.0 +14936,62,49.3,28,0.0 +14936,17,39,14,0.0 +14936,73,15,21,0.0 +14936,71,21.5,18,0.0 +14936,28,45.6,41,0.0 +14936,46,12,24,0.0 +14936,23,9,24,0.0 +14936,51,53,28,0.0 +14936,12,38,41,0.0 +14936,32,32,19,0.0 +14936,15,15.5,28,0.0 +14936,2,19,29,0.0 +14936,56,38,40,0.0 +14936,24,4.5,15,0.0 +14936,63,43.9,47,0.0 +14936,3,10,21,0.0 +14936,64,33.25,9,0.0 +14936,8,40,20,0.0 +14936,77,13,33,0.0 +14936,5,21.35,9,0.0 +14936,48,12.75,40,0.0 +14936,75,7.75,39,0.0 +14936,34,14,26,0.0 +14937,45,9.5,40,0.0 +14937,11,21,23,0.0 +14937,63,43.9,19,0.0 +14937,1,18,2,0.0 +14937,38,263.5,13,0.0 +14938,67,14,14,0.0 +14938,75,7.75,25,0.0 +14938,57,19.5,16,0.0 +14938,40,18.4,41,0.0 +14938,9,97,2,0.0 +14938,73,15,1,0.0 +14938,77,13,6,0.0 +14938,61,28.5,5,0.0 +14938,35,18,23,0.0 +14938,39,18,5,0.0 +14939,64,33.25,26,0.0 +14939,74,10,23,0.0 +14939,55,24,32,0.0 +14939,35,18,32,0.0 +14939,20,81,15,0.0 +14939,15,15.5,46,0.0 +14939,46,12,27,0.0 +14939,13,6,2,0.0 +14939,58,13.25,34,0.0 +14939,11,21,26,0.0 +14939,29,123.79,46,0.0 +14939,28,45.6,16,0.0 +14939,50,16.25,26,0.0 +14939,8,40,49,0.0 +14939,75,7.75,27,0.0 +14939,38,263.5,41,0.0 +14939,18,62.5,19,0.0 +14939,40,18.4,32,0.0 +14939,32,32,10,0.0 +14939,1,18,29,0.0 +14939,7,30,3,0.0 +14939,54,7.45,8,0.0 +14939,33,2.5,19,0.0 +14939,59,55,46,0.0 +14939,16,17.45,47,0.0 +14939,19,9.2,14,0.0 +14939,17,39,7,0.0 +14939,14,23.25,15,0.0 +14939,26,31.23,42,0.0 +14939,48,12.75,20,0.0 +14939,39,18,12,0.0 +14939,5,21.35,28,0.0 +14939,36,19,16,0.0 +14939,4,22,11,0.0 +14939,70,15,34,0.0 +14939,45,9.5,4,0.0 +14939,77,13,46,0.0 +14939,61,28.5,13,0.0 +14939,41,9.65,49,0.0 +14939,68,12.5,2,0.0 +14939,10,31,31,0.0 +14939,71,21.5,8,0.0 +14939,76,18,42,0.0 +14939,62,49.3,41,0.0 +14939,60,34,37,0.0 +14939,37,26,5,0.0 +14939,53,32.8,14,0.0 +14939,12,38,46,0.0 +14939,52,7,10,0.0 +14939,72,34.8,22,0.0 +14939,43,46,37,0.0 +14939,67,14,48,0.0 +14939,34,14,8,0.0 +14939,21,10,7,0.0 +14939,66,17,41,0.0 +14939,56,38,11,0.0 +14939,25,14,39,0.0 +14939,57,19.5,35,0.0 +14939,22,21,21,0.0 +14939,30,25.89,45,0.0 +14939,31,12.5,10,0.0 +14939,49,20,48,0.0 +14939,47,9.5,24,0.0 +14939,51,53,10,0.0 +14939,69,36,28,0.0 +14939,44,19.45,24,0.0 +14939,3,10,23,0.0 +14939,23,9,24,0.0 +14939,73,15,50,0.0 +14939,6,25,20,0.0 +14939,2,19,11,0.0 +14939,24,4.5,19,0.0 +14939,63,43.9,1,0.0 +14940,6,25,13,0.0 +14940,13,6,43,0.0 +14940,1,18,14,0.0 +14940,58,13.25,50,0.0 +14940,61,28.5,34,0.0 +14940,29,123.79,47,0.0 +14940,62,49.3,10,0.0 +14940,68,12.5,20,0.0 +14940,38,263.5,50,0.0 +14940,25,14,1,0.0 +14940,14,23.25,18,0.0 +14940,54,7.45,26,0.0 +14940,72,34.8,42,0.0 +14940,66,17,35,0.0 +14940,52,7,35,0.0 +14940,10,31,19,0.0 +14940,17,39,50,0.0 +14940,3,10,4,0.0 +14940,11,21,28,0.0 +14940,69,36,36,0.0 +14940,73,15,26,0.0 +14940,20,81,50,0.0 +14940,32,32,32,0.0 +14940,77,13,34,0.0 +14941,57,19.5,18,0.0 +14941,40,18.4,31,0.0 +14941,36,19,46,0.0 +14941,65,21.05,50,0.0 +14941,6,25,42,0.0 +14941,70,15,17,0.0 +14941,10,31,19,0.0 +14941,26,31.23,42,0.0 +14941,74,10,41,0.0 +14941,34,14,31,0.0 +14941,53,32.8,21,0.0 +14941,20,81,26,0.0 +14941,72,34.8,32,0.0 +14941,35,18,16,0.0 +14941,27,43.9,7,0.0 +14941,56,38,13,0.0 +14941,8,40,36,0.0 +14941,52,7,32,0.0 +14941,68,12.5,8,0.0 +14941,66,17,16,0.0 +14941,22,21,5,0.0 +14941,61,28.5,32,0.0 +14941,47,9.5,13,0.0 +14941,3,10,29,0.0 +14941,41,9.65,29,0.0 +14941,31,12.5,27,0.0 +14941,63,43.9,50,0.0 +14941,30,25.89,25,0.0 +14941,29,123.79,36,0.0 +14941,64,33.25,20,0.0 +14941,51,53,36,0.0 +14941,54,7.45,20,0.0 +14941,28,45.6,24,0.0 +14941,59,55,41,0.0 +14941,17,39,33,0.0 +14941,19,9.2,8,0.0 +14941,44,19.45,9,0.0 +14942,68,12.5,38,0.0 +14942,49,20,36,0.0 +14942,14,23.25,30,0.0 +14942,23,9,8,0.0 +14942,70,15,19,0.0 +14942,55,24,43,0.0 +14943,44,19.45,1,0.0 +14943,31,12.5,13,0.0 +14943,69,36,13,0.0 +14943,73,15,30,0.0 +14943,14,23.25,20,0.0 +14943,6,25,5,0.0 +14943,28,45.6,2,0.0 +14943,7,30,11,0.0 +14943,20,81,16,0.0 +14943,27,43.9,20,0.0 +14943,4,22,35,0.0 +14943,75,7.75,24,0.0 +14943,32,32,8,0.0 +14943,16,17.45,5,0.0 +14943,64,33.25,15,0.0 +14943,34,14,41,0.0 +14943,39,18,41,0.0 +14943,76,18,17,0.0 +14943,10,31,27,0.0 +14943,42,14,28,0.0 +14943,5,21.35,48,0.0 +14943,58,13.25,20,0.0 +14943,72,34.8,33,0.0 +14943,53,32.8,50,0.0 +14943,66,17,15,0.0 +14943,59,55,50,0.0 +14943,1,18,12,0.0 +14943,46,12,41,0.0 +14943,57,19.5,3,0.0 +14943,61,28.5,2,0.0 +14943,36,19,48,0.0 +14943,65,21.05,3,0.0 +14943,74,10,2,0.0 +14943,24,4.5,5,0.0 +14943,35,18,24,0.0 +14943,30,25.89,50,0.0 +14943,67,14,14,0.0 +14943,63,43.9,1,0.0 +14943,33,2.5,38,0.0 +14943,17,39,50,0.0 +14943,3,10,4,0.0 +14943,60,34,37,0.0 +14943,12,38,3,0.0 +14943,8,40,25,0.0 +14943,62,49.3,10,0.0 +14943,48,12.75,38,0.0 +14943,45,9.5,44,0.0 +14943,23,9,38,0.0 +14943,71,21.5,25,0.0 +14943,68,12.5,23,0.0 +14943,49,20,26,0.0 +14943,37,26,3,0.0 +14943,54,7.45,23,0.0 +14943,70,15,50,0.0 +14943,25,14,42,0.0 +14943,21,10,29,0.0 +14943,47,9.5,45,0.0 +14944,27,43.9,19,0.0 +14944,60,34,39,0.0 +14944,39,18,26,0.0 +14944,77,13,40,0.0 +14944,12,38,12,0.0 +14944,56,38,44,0.0 +14944,59,55,29,0.0 +14944,26,31.23,7,0.0 +14944,65,21.05,50,0.0 +14944,76,18,45,0.0 +14944,33,2.5,11,0.0 +14944,74,10,29,0.0 +14944,62,49.3,39,0.0 +14944,28,45.6,35,0.0 +14944,69,36,29,0.0 +14944,18,62.5,8,0.0 +14944,6,25,18,0.0 +14944,48,12.75,1,0.0 +14944,36,19,9,0.0 +14944,20,81,4,0.0 +14944,71,21.5,27,0.0 +14944,5,21.35,9,0.0 +14944,49,20,12,0.0 +14944,46,12,7,0.0 +14944,14,23.25,32,0.0 +14944,50,16.25,5,0.0 +14944,63,43.9,34,0.0 +14944,37,26,2,0.0 +14944,41,9.65,16,0.0 +14944,23,9,40,0.0 +14944,7,30,11,0.0 +14944,75,7.75,44,0.0 +14944,13,6,18,0.0 +14944,70,15,11,0.0 +14944,53,32.8,8,0.0 +14944,57,19.5,38,0.0 +14944,51,53,44,0.0 +14944,22,21,50,0.0 +14944,8,40,46,0.0 +14944,72,34.8,28,0.0 +14944,55,24,48,0.0 +14944,1,18,5,0.0 +14944,24,4.5,11,0.0 +14945,11,21,41,0.0 +14945,52,7,40,0.0 +14945,74,10,9,0.0 +14945,22,21,32,0.0 +14945,35,18,19,0.0 +14945,14,23.25,14,0.0 +14945,70,15,45,0.0 +14945,3,10,25,0.0 +14945,73,15,11,0.0 +14945,50,16.25,38,0.0 +14945,16,17.45,15,0.0 +14945,6,25,40,0.0 +14945,34,14,9,0.0 +14945,68,12.5,16,0.0 +14945,23,9,42,0.0 +14945,72,34.8,20,0.0 +14945,26,31.23,3,0.0 +14945,43,46,21,0.0 +14945,28,45.6,33,0.0 +14945,60,34,25,0.0 +14945,42,14,11,0.0 +14945,76,18,43,0.0 +14945,44,19.45,46,0.0 +14945,53,32.8,44,0.0 +14945,25,14,8,0.0 +14945,18,62.5,35,0.0 +14945,4,22,45,0.0 +14945,48,12.75,42,0.0 +14945,67,14,46,0.0 +14945,15,15.5,50,0.0 +14945,64,33.25,36,0.0 +14945,69,36,40,0.0 +14945,30,25.89,36,0.0 +14945,45,9.5,50,0.0 +14945,39,18,30,0.0 +14945,66,17,17,0.0 +14945,54,7.45,19,0.0 +14946,46,12,14,0.0 +14946,1,18,5,0.0 +14946,57,19.5,40,0.0 +14946,67,14,9,0.0 +14946,12,38,10,0.0 +14946,47,9.5,41,0.0 +14946,25,14,45,0.0 +14946,68,12.5,13,0.0 +14946,4,22,29,0.0 +14946,50,16.25,5,0.0 +14946,40,18.4,13,0.0 +14947,71,21.5,43,0.0 +14947,19,9.2,39,0.0 +14947,59,55,23,0.0 +14947,64,33.25,27,0.0 +14947,55,24,36,0.0 +14947,73,15,21,0.0 +14947,75,7.75,6,0.0 +14947,35,18,31,0.0 +14947,37,26,1,0.0 +14947,76,18,1,0.0 +14947,46,12,23,0.0 +14947,31,12.5,11,0.0 +14947,44,19.45,41,0.0 +14947,8,40,11,0.0 +14947,68,12.5,49,0.0 +14947,30,25.89,45,0.0 +14947,63,43.9,3,0.0 +14947,39,18,31,0.0 +14947,11,21,13,0.0 +14947,72,34.8,41,0.0 +14947,17,39,49,0.0 +14947,47,9.5,28,0.0 +14947,18,62.5,49,0.0 +14947,49,20,37,0.0 +14947,29,123.79,36,0.0 +14947,34,14,39,0.0 +14947,33,2.5,15,0.0 +14947,13,6,29,0.0 +14947,53,32.8,5,0.0 +14947,65,21.05,28,0.0 +14947,36,19,17,0.0 +14947,77,13,27,0.0 +14947,27,43.9,17,0.0 +14947,52,7,5,0.0 +14947,9,97,4,0.0 +14947,32,32,33,0.0 +14947,21,10,41,0.0 +14947,1,18,20,0.0 +14948,65,21.05,32,0.0 +14948,1,18,30,0.0 +14948,54,7.45,18,0.0 +14948,2,19,24,0.0 +14948,34,14,50,0.0 +14948,19,9.2,36,0.0 +14948,66,17,1,0.0 +14948,25,14,35,0.0 +14948,46,12,35,0.0 +14948,43,46,44,0.0 +14948,57,19.5,15,0.0 +14948,29,123.79,31,0.0 +14948,49,20,27,0.0 +14949,72,34.8,50,0.0 +14949,10,31,23,0.0 +14949,18,62.5,8,0.0 +14949,68,12.5,42,0.0 +14949,62,49.3,37,0.0 +14949,20,81,17,0.0 +14949,30,25.89,10,0.0 +14949,25,14,1,0.0 +14949,29,123.79,6,0.0 +14949,66,17,42,0.0 +14949,40,18.4,33,0.0 +14949,17,39,14,0.0 +14949,7,30,45,0.0 +14949,3,10,31,0.0 +14949,74,10,13,0.0 +14949,42,14,45,0.0 +14949,76,18,23,0.0 +14949,12,38,47,0.0 +14949,71,21.5,29,0.0 +14949,49,20,13,0.0 +14949,16,17.45,22,0.0 +14949,9,97,26,0.0 +14949,77,13,34,0.0 +14949,61,28.5,42,0.0 +14949,6,25,20,0.0 +14949,44,19.45,36,0.0 +14949,1,18,26,0.0 +14949,38,263.5,1,0.0 +14949,31,12.5,47,0.0 +14949,32,32,13,0.0 +14949,28,45.6,42,0.0 +14949,19,9.2,39,0.0 +14949,50,16.25,5,0.0 +14949,14,23.25,1,0.0 +14949,75,7.75,41,0.0 +14949,54,7.45,38,0.0 +14949,35,18,31,0.0 +14949,56,38,7,0.0 +14949,46,12,5,0.0 +14949,59,55,12,0.0 +14949,57,19.5,36,0.0 +14949,47,9.5,14,0.0 +14949,22,21,45,0.0 +14949,70,15,15,0.0 +14949,13,6,14,0.0 +14949,60,34,5,0.0 +14949,37,26,14,0.0 +14949,53,32.8,34,0.0 +14949,45,9.5,35,0.0 +14949,5,21.35,30,0.0 +14949,24,4.5,46,0.0 +14949,73,15,17,0.0 +14949,36,19,2,0.0 +14949,51,53,30,0.0 +14949,58,13.25,25,0.0 +14949,2,19,8,0.0 +14949,33,2.5,7,0.0 +14949,27,43.9,29,0.0 +14949,64,33.25,13,0.0 +14950,24,4.5,6,0.0 +14950,58,13.25,41,0.0 +14950,55,24,29,0.0 +14950,73,15,37,0.0 +14950,30,25.89,20,0.0 +14950,62,49.3,32,0.0 +14950,38,263.5,3,0.0 +14950,23,9,44,0.0 +14950,52,7,35,0.0 +14950,77,13,22,0.0 +14950,27,43.9,22,0.0 +14950,40,18.4,6,0.0 +14950,26,31.23,15,0.0 +14950,21,10,34,0.0 +14950,68,12.5,15,0.0 +14950,2,19,49,0.0 +14950,46,12,47,0.0 +14950,18,62.5,50,0.0 +14950,50,16.25,25,0.0 +14950,72,34.8,37,0.0 +14950,64,33.25,43,0.0 +14950,14,23.25,31,0.0 +14950,20,81,48,0.0 +14950,42,14,8,0.0 +14950,16,17.45,5,0.0 +14950,35,18,33,0.0 +14950,4,22,37,0.0 +14950,49,20,16,0.0 +14950,10,31,5,0.0 +14950,12,38,30,0.0 +14950,32,32,32,0.0 +14950,31,12.5,21,0.0 +14950,74,10,17,0.0 +14950,60,34,30,0.0 +14950,11,21,38,0.0 +14950,39,18,39,0.0 +14950,71,21.5,40,0.0 +14950,51,53,35,0.0 +14950,43,46,12,0.0 +14950,34,14,2,0.0 +14950,53,32.8,18,0.0 +14950,70,15,18,0.0 +14950,33,2.5,31,0.0 +14950,61,28.5,31,0.0 +14950,5,21.35,29,0.0 +14950,56,38,25,0.0 +14950,69,36,50,0.0 +14950,59,55,33,0.0 +14950,25,14,13,0.0 +14950,41,9.65,27,0.0 +14950,29,123.79,49,0.0 +14950,76,18,49,0.0 +14950,13,6,50,0.0 +14950,63,43.9,34,0.0 +14950,54,7.45,33,0.0 +14950,44,19.45,28,0.0 +14950,17,39,32,0.0 +14950,7,30,13,0.0 +14950,6,25,21,0.0 +14950,45,9.5,41,0.0 +14950,19,9.2,48,0.0 +14950,28,45.6,31,0.0 +14950,37,26,25,0.0 +14950,75,7.75,1,0.0 +14950,48,12.75,45,0.0 +14951,30,25.89,32,0.0 +14951,19,9.2,46,0.0 +14951,52,7,9,0.0 +14951,42,14,21,0.0 +14951,31,12.5,13,0.0 +14951,49,20,12,0.0 +14951,56,38,14,0.0 +14951,27,43.9,4,0.0 +14951,20,81,16,0.0 +14951,50,16.25,50,0.0 +14951,14,23.25,29,0.0 +14951,18,62.5,18,0.0 +14951,32,32,17,0.0 +14951,17,39,18,0.0 +14951,70,15,25,0.0 +14951,1,18,14,0.0 +14951,36,19,23,0.0 +14951,46,12,24,0.0 +14951,7,30,31,0.0 +14951,48,12.75,2,0.0 +14951,44,19.45,42,0.0 +14951,29,123.79,42,0.0 +14951,64,33.25,49,0.0 +14951,62,49.3,8,0.0 +14951,37,26,35,0.0 +14951,47,9.5,21,0.0 +14951,28,45.6,38,0.0 +14951,57,19.5,29,0.0 +14951,22,21,4,0.0 +14951,8,40,7,0.0 +14951,68,12.5,49,0.0 +14951,34,14,38,0.0 +14951,24,4.5,22,0.0 +14951,76,18,13,0.0 +14951,65,21.05,36,0.0 +14951,3,10,17,0.0 +14951,59,55,27,0.0 +14951,55,24,21,0.0 +14951,43,46,38,0.0 +14951,77,13,46,0.0 +14951,63,43.9,46,0.0 +14951,51,53,8,0.0 +14951,75,7.75,26,0.0 +14951,40,18.4,30,0.0 +14951,11,21,40,0.0 +14951,71,21.5,24,0.0 +14951,53,32.8,26,0.0 +14951,38,263.5,4,0.0 +14951,4,22,26,0.0 +14951,74,10,1,0.0 +14951,67,14,44,0.0 +14951,21,10,8,0.0 +14951,45,9.5,15,0.0 +14951,5,21.35,48,0.0 +14951,35,18,32,0.0 +14951,66,17,26,0.0 +14951,26,31.23,47,0.0 +14951,25,14,34,0.0 +14951,54,7.45,6,0.0 +14951,39,18,12,0.0 +14951,13,6,49,0.0 +14951,9,97,1,0.0 +14951,12,38,15,0.0 +14951,15,15.5,15,0.0 +14951,6,25,36,0.0 +14951,58,13.25,31,0.0 +14951,10,31,22,0.0 +14952,26,31.23,6,0.0 +14952,5,21.35,4,0.0 +14952,30,25.89,47,0.0 +14952,6,25,31,0.0 +14952,47,9.5,14,0.0 +14952,22,21,15,0.0 +14952,42,14,28,0.0 +14952,48,12.75,28,0.0 +14952,8,40,6,0.0 +14952,55,24,6,0.0 +14952,39,18,8,0.0 +14952,21,10,30,0.0 +14952,44,19.45,16,0.0 +14952,17,39,6,0.0 +14952,56,38,33,0.0 +14952,59,55,45,0.0 +14952,74,10,6,0.0 +14952,54,7.45,27,0.0 +14952,53,32.8,32,0.0 +14952,4,22,17,0.0 +14952,60,34,6,0.0 +14952,20,81,32,0.0 +14952,76,18,9,0.0 +14952,57,19.5,45,0.0 +14952,64,33.25,48,0.0 +14952,2,19,43,0.0 +14952,1,18,23,0.0 +14952,63,43.9,36,0.0 +14952,62,49.3,42,0.0 +14952,49,20,27,0.0 +14952,14,23.25,9,0.0 +14952,68,12.5,47,0.0 +14952,38,263.5,40,0.0 +14952,13,6,32,0.0 +14952,27,43.9,30,0.0 +14952,51,53,14,0.0 +14952,36,19,35,0.0 +14952,58,13.25,31,0.0 +14952,65,21.05,45,0.0 +14952,18,62.5,46,0.0 +14952,52,7,22,0.0 +14952,7,30,20,0.0 +14952,50,16.25,31,0.0 +14952,70,15,6,0.0 +14952,33,2.5,3,0.0 +14952,19,9.2,50,0.0 +14952,40,18.4,20,0.0 +14952,37,26,7,0.0 +14952,66,17,24,0.0 +14952,34,14,9,0.0 +14952,3,10,9,0.0 +14952,10,31,32,0.0 +14952,43,46,27,0.0 +14952,16,17.45,7,0.0 +14952,41,9.65,40,0.0 +14953,33,2.5,31,0.0 +14953,32,32,11,0.0 +14953,34,14,30,0.0 +14953,29,123.79,37,0.0 +14953,37,26,21,0.0 +14953,61,28.5,3,0.0 +14953,16,17.45,37,0.0 +14953,41,9.65,27,0.0 +14953,45,9.5,27,0.0 +14953,72,34.8,50,0.0 +14953,70,15,32,0.0 +14953,77,13,43,0.0 +14953,23,9,43,0.0 +14953,43,46,42,0.0 +14953,57,19.5,11,0.0 +14953,8,40,17,0.0 +14953,9,97,41,0.0 +14953,40,18.4,4,0.0 +14953,10,31,19,0.0 +14953,19,9.2,37,0.0 +14953,3,10,36,0.0 +14953,14,23.25,4,0.0 +14953,60,34,16,0.0 +14953,53,32.8,22,0.0 +14953,21,10,12,0.0 +14953,49,20,28,0.0 +14953,76,18,30,0.0 +14953,15,15.5,41,0.0 +14954,64,33.25,19,0.0 +14954,42,14,31,0.0 +14954,50,16.25,21,0.0 +14954,71,21.5,39,0.0 +14954,77,13,34,0.0 +14954,48,12.75,33,0.0 +14954,31,12.5,12,0.0 +14954,66,17,27,0.0 +14954,36,19,24,0.0 +14954,11,21,41,0.0 +14954,21,10,27,0.0 +14954,59,55,18,0.0 +14954,2,19,46,0.0 +14954,1,18,44,0.0 +14954,46,12,7,0.0 +14954,51,53,42,0.0 +14954,3,10,46,0.0 +14954,27,43.9,42,0.0 +14954,28,45.6,27,0.0 +14954,13,6,8,0.0 +14954,32,32,29,0.0 +14954,4,22,50,0.0 +14954,69,36,27,0.0 +14954,8,40,34,0.0 +14954,49,20,24,0.0 +14954,56,38,20,0.0 +14954,61,28.5,38,0.0 +14954,41,9.65,27,0.0 +14954,23,9,37,0.0 +14954,30,25.89,13,0.0 +14954,39,18,34,0.0 +14954,37,26,28,0.0 +14954,67,14,4,0.0 +14954,20,81,26,0.0 +14954,29,123.79,18,0.0 +14954,43,46,12,0.0 +14954,58,13.25,48,0.0 +14954,5,21.35,25,0.0 +14954,22,21,19,0.0 +14954,18,62.5,19,0.0 +14954,34,14,39,0.0 +14954,54,7.45,47,0.0 +14954,52,7,35,0.0 +14954,62,49.3,50,0.0 +14954,74,10,27,0.0 +14954,24,4.5,26,0.0 +14954,15,15.5,1,0.0 +14954,47,9.5,1,0.0 +14954,33,2.5,34,0.0 +14954,55,24,42,0.0 +14954,35,18,38,0.0 +14954,72,34.8,45,0.0 +14954,75,7.75,36,0.0 +14954,7,30,15,0.0 +14954,65,21.05,19,0.0 +14954,60,34,28,0.0 +14954,14,23.25,18,0.0 +14954,57,19.5,24,0.0 +14954,38,263.5,33,0.0 +14954,9,97,19,0.0 +14954,12,38,31,0.0 +14954,53,32.8,10,0.0 +14954,68,12.5,40,0.0 +14954,63,43.9,11,0.0 +14954,10,31,24,0.0 +14954,17,39,29,0.0 +14954,19,9.2,10,0.0 +14954,25,14,18,0.0 +14954,6,25,35,0.0 +14954,73,15,6,0.0 +14954,76,18,22,0.0 +14954,44,19.45,27,0.0 +14954,70,15,11,0.0 +14954,26,31.23,40,0.0 +14954,16,17.45,7,0.0 +14955,32,32,34,0.0 +14955,21,10,14,0.0 +14955,75,7.75,15,0.0 +14955,23,9,27,0.0 +14955,22,21,36,0.0 +14955,6,25,49,0.0 +14955,48,12.75,18,0.0 +14955,62,49.3,21,0.0 +14955,67,14,44,0.0 +14955,69,36,20,0.0 +14955,8,40,12,0.0 +14955,44,19.45,9,0.0 +14955,58,13.25,3,0.0 +14955,71,21.5,47,0.0 +14955,45,9.5,45,0.0 +14955,57,19.5,5,0.0 +14955,25,14,25,0.0 +14955,28,45.6,31,0.0 +14955,76,18,14,0.0 +14955,47,9.5,14,0.0 +14955,20,81,4,0.0 +14955,49,20,43,0.0 +14955,16,17.45,10,0.0 +14955,77,13,35,0.0 +14955,14,23.25,30,0.0 +14955,10,31,21,0.0 +14955,46,12,37,0.0 +14955,38,263.5,20,0.0 +14955,60,34,48,0.0 +14955,15,15.5,17,0.0 +14955,31,12.5,21,0.0 +14955,74,10,25,0.0 +14955,43,46,14,0.0 +14955,54,7.45,48,0.0 +14955,59,55,47,0.0 +14955,56,38,5,0.0 +14955,63,43.9,29,0.0 +14955,3,10,14,0.0 +14955,9,97,5,0.0 +14955,11,21,7,0.0 +14955,73,15,23,0.0 +14955,27,43.9,25,0.0 +14955,2,19,24,0.0 +14955,37,26,9,0.0 +14955,42,14,16,0.0 +14955,66,17,15,0.0 +14955,52,7,45,0.0 +14955,53,32.8,47,0.0 +14955,39,18,7,0.0 +14955,41,9.65,31,0.0 +14956,55,24,33,0.0 +14956,74,10,48,0.0 +14956,30,25.89,27,0.0 +14956,66,17,31,0.0 +14956,6,25,50,0.0 +14956,14,23.25,14,0.0 +14956,58,13.25,48,0.0 +14956,69,36,47,0.0 +14956,47,9.5,6,0.0 +14956,36,19,17,0.0 +14956,20,81,19,0.0 +14956,51,53,48,0.0 +14956,64,33.25,4,0.0 +14956,62,49.3,7,0.0 +14956,68,12.5,20,0.0 +14956,33,2.5,34,0.0 +14956,45,9.5,2,0.0 +14956,43,46,22,0.0 +14956,60,34,24,0.0 +14956,1,18,12,0.0 +14956,73,15,8,0.0 +14956,63,43.9,23,0.0 +14956,7,30,18,0.0 +14956,4,22,2,0.0 +14956,48,12.75,40,0.0 +14956,71,21.5,18,0.0 +14956,28,45.6,33,0.0 +14956,57,19.5,7,0.0 +14956,72,34.8,5,0.0 +14956,12,38,17,0.0 +14956,27,43.9,13,0.0 +14956,49,20,15,0.0 +14956,23,9,21,0.0 +14956,41,9.65,15,0.0 +14956,42,14,32,0.0 +14956,65,21.05,36,0.0 +14956,26,31.23,35,0.0 +14956,50,16.25,37,0.0 +14956,39,18,2,0.0 +14956,18,62.5,7,0.0 +14956,52,7,48,0.0 +14956,77,13,42,0.0 +14956,44,19.45,34,0.0 +14956,3,10,45,0.0 +14956,53,32.8,43,0.0 +14956,76,18,42,0.0 +14956,11,21,38,0.0 +14957,43,46,35,0.0 +14957,59,55,28,0.0 +14957,47,9.5,41,0.0 +14957,13,6,27,0.0 +14957,20,81,11,0.0 +14957,40,18.4,9,0.0 +14957,11,21,29,0.0 +14957,16,17.45,7,0.0 +14957,34,14,25,0.0 +14957,18,62.5,10,0.0 +14957,4,22,46,0.0 +14957,64,33.25,38,0.0 +14957,60,34,48,0.0 +14957,73,15,8,0.0 +14957,30,25.89,30,0.0 +14957,41,9.65,23,0.0 +14957,51,53,15,0.0 +14957,49,20,17,0.0 +14957,63,43.9,48,0.0 +14957,26,31.23,7,0.0 +14957,74,10,16,0.0 +14957,37,26,23,0.0 +14957,56,38,14,0.0 +14957,58,13.25,31,0.0 +14957,55,24,38,0.0 +14957,69,36,8,0.0 +14957,50,16.25,18,0.0 +14958,72,34.8,29,0.0 +14958,49,20,16,0.0 +14958,6,25,29,0.0 +14958,77,13,28,0.0 +14958,3,10,14,0.0 +14958,52,7,31,0.0 +14958,1,18,4,0.0 +14958,17,39,46,0.0 +14958,41,9.65,35,0.0 +14958,20,81,38,0.0 +14958,43,46,19,0.0 +14958,29,123.79,43,0.0 +14958,31,12.5,32,0.0 +14958,46,12,19,0.0 +14958,68,12.5,40,0.0 +14958,22,21,26,0.0 +14958,37,26,32,0.0 +14958,64,33.25,23,0.0 +14958,34,14,15,0.0 +14958,33,2.5,28,0.0 +14958,26,31.23,35,0.0 +14958,27,43.9,23,0.0 +14958,9,97,37,0.0 +14958,62,49.3,50,0.0 +14959,41,9.65,1,0.0 +14959,54,7.45,22,0.0 +14959,5,21.35,33,0.0 +14959,48,12.75,22,0.0 +14959,23,9,13,0.0 +14959,16,17.45,49,0.0 +14959,44,19.45,1,0.0 +14959,50,16.25,7,0.0 +14959,4,22,26,0.0 +14959,21,10,43,0.0 +14959,65,21.05,19,0.0 +14959,47,9.5,11,0.0 +14959,77,13,32,0.0 +14959,51,53,32,0.0 +14959,6,25,50,0.0 +14959,76,18,41,0.0 +14959,19,9.2,11,0.0 +14959,8,40,47,0.0 +14959,13,6,20,0.0 +14959,69,36,25,0.0 +14959,14,23.25,44,0.0 +14959,30,25.89,26,0.0 +14959,75,7.75,24,0.0 +14959,33,2.5,49,0.0 +14959,18,62.5,1,0.0 +14959,31,12.5,23,0.0 +14959,3,10,38,0.0 +14959,9,97,11,0.0 +14959,73,15,35,0.0 +14959,7,30,17,0.0 +14959,43,46,49,0.0 +14959,32,32,35,0.0 +14959,49,20,2,0.0 +14959,38,263.5,47,0.0 +14959,56,38,24,0.0 +14959,34,14,5,0.0 +14959,2,19,19,0.0 +14959,53,32.8,30,0.0 +14959,20,81,30,0.0 +14959,58,13.25,2,0.0 +14959,25,14,7,0.0 +14959,70,15,13,0.0 +14959,52,7,35,0.0 +14959,27,43.9,39,0.0 +14959,36,19,13,0.0 +14959,40,18.4,29,0.0 +14959,71,21.5,7,0.0 +14959,63,43.9,5,0.0 +14959,12,38,2,0.0 +14959,15,15.5,11,0.0 +14959,57,19.5,47,0.0 +14959,55,24,25,0.0 +14959,60,34,35,0.0 +14959,26,31.23,37,0.0 +14959,35,18,24,0.0 +14959,22,21,46,0.0 +14960,50,16.25,34,0.0 +14960,7,30,21,0.0 +14960,68,12.5,45,0.0 +14960,45,9.5,21,0.0 +14960,10,31,39,0.0 +14960,25,14,28,0.0 +14960,61,28.5,48,0.0 +14960,24,4.5,43,0.0 +14960,72,34.8,24,0.0 +14960,12,38,26,0.0 +14960,34,14,49,0.0 +14960,69,36,16,0.0 +14960,13,6,3,0.0 +14960,49,20,7,0.0 +14960,54,7.45,18,0.0 +14960,71,21.5,31,0.0 +14960,31,12.5,41,0.0 +14960,8,40,10,0.0 +14960,59,55,32,0.0 +14960,65,21.05,33,0.0 +14960,33,2.5,29,0.0 +14960,21,10,27,0.0 +14960,23,9,19,0.0 +14960,3,10,42,0.0 +14960,35,18,7,0.0 +14960,56,38,29,0.0 +14960,77,13,47,0.0 +14960,74,10,9,0.0 +14960,29,123.79,45,0.0 +14960,76,18,45,0.0 +14960,60,34,40,0.0 +14960,70,15,31,0.0 +14960,14,23.25,43,0.0 +14960,75,7.75,22,0.0 +14960,48,12.75,47,0.0 +14960,67,14,7,0.0 +14960,39,18,41,0.0 +14960,42,14,3,0.0 +14960,5,21.35,49,0.0 +14960,51,53,6,0.0 +14960,28,45.6,42,0.0 +14960,73,15,42,0.0 +14960,37,26,48,0.0 +14960,47,9.5,39,0.0 +14960,43,46,15,0.0 +14960,38,263.5,46,0.0 +14960,22,21,5,0.0 +14960,11,21,46,0.0 +14960,64,33.25,46,0.0 +14961,76,18,35,0.0 +14961,70,15,12,0.0 +14961,39,18,12,0.0 +14961,55,24,47,0.0 +14961,75,7.75,11,0.0 +14961,18,62.5,44,0.0 +14961,56,38,30,0.0 +14961,40,18.4,7,0.0 +14961,45,9.5,6,0.0 +14961,19,9.2,15,0.0 +14961,60,34,5,0.0 +14962,65,21.05,38,0.0 +14962,12,38,42,0.0 +14962,11,21,4,0.0 +14962,67,14,21,0.0 +14962,20,81,20,0.0 +14962,55,24,17,0.0 +14962,45,9.5,16,0.0 +14962,60,34,5,0.0 +14962,2,19,38,0.0 +14962,7,30,47,0.0 +14962,23,9,9,0.0 +14962,51,53,41,0.0 +14962,59,55,25,0.0 +14962,15,15.5,24,0.0 +14962,62,49.3,7,0.0 +14962,29,123.79,45,0.0 +14962,35,18,15,0.0 +14962,53,32.8,28,0.0 +14962,24,4.5,10,0.0 +14962,25,14,6,0.0 +14962,50,16.25,26,0.0 +14962,64,33.25,37,0.0 +14962,16,17.45,6,0.0 +14962,34,14,5,0.0 +14962,75,7.75,37,0.0 +14962,33,2.5,37,0.0 +14962,6,25,24,0.0 +14962,18,62.5,14,0.0 +14962,70,15,8,0.0 +14962,14,23.25,6,0.0 +14962,32,32,36,0.0 +14962,37,26,37,0.0 +14962,46,12,36,0.0 +14962,48,12.75,4,0.0 +14962,74,10,12,0.0 +14962,68,12.5,3,0.0 +14962,40,18.4,32,0.0 +14962,21,10,44,0.0 +14962,41,9.65,33,0.0 +14962,31,12.5,45,0.0 +14962,44,19.45,49,0.0 +14962,39,18,38,0.0 +14962,76,18,32,0.0 +14962,4,22,14,0.0 +14962,71,21.5,16,0.0 +14962,13,6,32,0.0 +14962,66,17,6,0.0 +14962,69,36,39,0.0 +14962,43,46,48,0.0 +14962,36,19,10,0.0 +14962,17,39,15,0.0 +14962,9,97,33,0.0 +14962,3,10,4,0.0 +14962,52,7,2,0.0 +14962,73,15,16,0.0 +14962,10,31,47,0.0 +14962,63,43.9,4,0.0 +14962,54,7.45,36,0.0 +14962,1,18,35,0.0 +14962,38,263.5,16,0.0 +14962,72,34.8,32,0.0 +14962,42,14,3,0.0 +14962,77,13,11,0.0 +14962,30,25.89,11,0.0 +14962,27,43.9,14,0.0 +14962,47,9.5,46,0.0 +14962,19,9.2,11,0.0 +14962,49,20,9,0.0 +14962,58,13.25,27,0.0 +14962,26,31.23,6,0.0 +14962,22,21,14,0.0 +14962,57,19.5,30,0.0 +14962,56,38,5,0.0 +14962,28,45.6,48,0.0 +14962,8,40,11,0.0 +14963,26,31.23,19,0.0 +14963,60,34,48,0.0 +14963,71,21.5,11,0.0 +14963,29,123.79,31,0.0 +14963,61,28.5,2,0.0 +14963,34,14,1,0.0 +14963,44,19.45,27,0.0 +14964,19,9.2,22,0.0 +14964,73,15,9,0.0 +14964,15,15.5,10,0.0 +14964,43,46,1,0.0 +14964,6,25,20,0.0 +14964,77,13,24,0.0 +14964,32,32,25,0.0 +14964,14,23.25,39,0.0 +14964,44,19.45,12,0.0 +14964,5,21.35,18,0.0 +14964,9,97,15,0.0 +14964,63,43.9,6,0.0 +14964,49,20,39,0.0 +14964,75,7.75,22,0.0 +14964,25,14,48,0.0 +14964,30,25.89,46,0.0 +14964,20,81,31,0.0 +14964,41,9.65,35,0.0 +14964,76,18,6,0.0 +14964,29,123.79,20,0.0 +14964,28,45.6,22,0.0 +14964,56,38,35,0.0 +14964,8,40,21,0.0 +14964,42,14,1,0.0 +14964,62,49.3,7,0.0 +14964,22,21,9,0.0 +14964,64,33.25,24,0.0 +14964,66,17,43,0.0 +14964,69,36,11,0.0 +14964,72,34.8,22,0.0 +14964,57,19.5,43,0.0 +14964,61,28.5,31,0.0 +14964,35,18,12,0.0 +14964,51,53,4,0.0 +14964,65,21.05,38,0.0 +14964,23,9,47,0.0 +14964,26,31.23,12,0.0 +14964,70,15,15,0.0 +14964,52,7,20,0.0 +14964,13,6,45,0.0 +14964,10,31,45,0.0 +14964,12,38,38,0.0 +14964,17,39,46,0.0 +14965,14,23.25,46,0.0 +14965,32,32,18,0.0 +14965,38,263.5,49,0.0 +14965,73,15,33,0.0 +14965,45,9.5,19,0.0 +14965,3,10,31,0.0 +14965,54,7.45,37,0.0 +14965,28,45.6,42,0.0 +14965,15,15.5,27,0.0 +14965,37,26,39,0.0 +14965,51,53,13,0.0 +14965,17,39,40,0.0 +14965,19,9.2,32,0.0 +14965,50,16.25,10,0.0 +14965,42,14,27,0.0 +14965,72,34.8,24,0.0 +14965,43,46,11,0.0 +14965,9,97,6,0.0 +14965,10,31,39,0.0 +14965,44,19.45,2,0.0 +14965,12,38,40,0.0 +14965,48,12.75,47,0.0 +14965,71,21.5,45,0.0 +14965,47,9.5,34,0.0 +14966,38,263.5,45,0.0 +14966,77,13,23,0.0 +14966,20,81,5,0.0 +14966,60,34,28,0.0 +14966,59,55,15,0.0 +14966,66,17,19,0.0 +14966,16,17.45,27,0.0 +14966,37,26,10,0.0 +14966,34,14,12,0.0 +14966,64,33.25,11,0.0 +14966,14,23.25,50,0.0 +14966,18,62.5,22,0.0 +14966,26,31.23,27,0.0 +14966,55,24,36,0.0 +14966,35,18,40,0.0 +14966,63,43.9,49,0.0 +14966,39,18,29,0.0 +14966,41,9.65,8,0.0 +14966,9,97,15,0.0 +14966,54,7.45,41,0.0 +14966,7,30,7,0.0 +14966,10,31,34,0.0 +14966,2,19,34,0.0 +14966,21,10,44,0.0 +14966,49,20,45,0.0 +14966,19,9.2,49,0.0 +14966,53,32.8,18,0.0 +14966,42,14,35,0.0 +14966,52,7,35,0.0 +14966,13,6,42,0.0 +14966,24,4.5,31,0.0 +14966,45,9.5,29,0.0 +14966,32,32,35,0.0 +14966,48,12.75,18,0.0 +14966,17,39,43,0.0 +14966,50,16.25,28,0.0 +14966,74,10,35,0.0 +14966,47,9.5,35,0.0 +14966,68,12.5,13,0.0 +14966,65,21.05,2,0.0 +14966,72,34.8,29,0.0 +14966,30,25.89,6,0.0 +14966,70,15,21,0.0 +14966,3,10,47,0.0 +14966,56,38,16,0.0 +14966,58,13.25,3,0.0 +14966,28,45.6,50,0.0 +14967,4,22,27,0.0 +14967,34,14,29,0.0 +14967,39,18,1,0.0 +14967,28,45.6,20,0.0 +14967,31,12.5,15,0.0 +14967,30,25.89,7,0.0 +14967,66,17,42,0.0 +14967,37,26,41,0.0 +14967,52,7,3,0.0 +14967,76,18,44,0.0 +14967,62,49.3,8,0.0 +14967,63,43.9,9,0.0 +14967,17,39,47,0.0 +14967,22,21,8,0.0 +14967,57,19.5,10,0.0 +14967,40,18.4,27,0.0 +14967,2,19,24,0.0 +14967,23,9,34,0.0 +14967,11,21,40,0.0 +14967,74,10,5,0.0 +14967,61,28.5,13,0.0 +14967,77,13,11,0.0 +14967,41,9.65,3,0.0 +14967,10,31,15,0.0 +14967,45,9.5,21,0.0 +14967,58,13.25,30,0.0 +14967,19,9.2,3,0.0 +14967,47,9.5,14,0.0 +14967,72,34.8,12,0.0 +14967,44,19.45,26,0.0 +14967,35,18,19,0.0 +14967,33,2.5,24,0.0 +14967,68,12.5,36,0.0 +14967,64,33.25,40,0.0 +14967,15,15.5,50,0.0 +14967,5,21.35,47,0.0 +14967,46,12,37,0.0 +14967,6,25,38,0.0 +14967,70,15,28,0.0 +14967,43,46,30,0.0 +14967,56,38,27,0.0 +14967,21,10,15,0.0 +14967,27,43.9,32,0.0 +14967,3,10,37,0.0 +14967,75,7.75,2,0.0 +14967,54,7.45,35,0.0 +14967,55,24,17,0.0 +14967,36,19,19,0.0 +14967,32,32,17,0.0 +14968,35,18,38,0.0 +14968,2,19,12,0.0 +14968,9,97,41,0.0 +14969,33,2.5,39,0.0 +14969,14,23.25,33,0.0 +14969,75,7.75,22,0.0 +14969,10,31,26,0.0 +14969,48,12.75,48,0.0 +14969,67,14,35,0.0 +14969,52,7,42,0.0 +14969,68,12.5,18,0.0 +14969,29,123.79,43,0.0 +14969,32,32,36,0.0 +14969,61,28.5,49,0.0 +14969,37,26,41,0.0 +14969,74,10,19,0.0 +14969,47,9.5,5,0.0 +14969,28,45.6,28,0.0 +14969,15,15.5,10,0.0 +14969,46,12,4,0.0 +14969,54,7.45,44,0.0 +14969,8,40,5,0.0 +14969,26,31.23,48,0.0 +14969,12,38,23,0.0 +14969,57,19.5,20,0.0 +14969,69,36,45,0.0 +14969,24,4.5,37,0.0 +14969,60,34,12,0.0 +14969,36,19,45,0.0 +14969,34,14,10,0.0 +14969,9,97,43,0.0 +14969,44,19.45,15,0.0 +14969,41,9.65,16,0.0 +14969,71,21.5,1,0.0 +14969,50,16.25,8,0.0 +14969,31,12.5,8,0.0 +14969,35,18,37,0.0 +14970,50,16.25,27,0.0 +14970,12,38,45,0.0 +14970,3,10,45,0.0 +14970,25,14,14,0.0 +14970,4,22,24,0.0 +14970,14,23.25,46,0.0 +14970,58,13.25,11,0.0 +14970,52,7,31,0.0 +14970,55,24,20,0.0 +14970,20,81,14,0.0 +14970,69,36,42,0.0 +14970,57,19.5,26,0.0 +14970,72,34.8,32,0.0 +14970,11,21,12,0.0 +14970,8,40,25,0.0 +14970,27,43.9,1,0.0 +14970,59,55,14,0.0 +14970,21,10,46,0.0 +14970,53,32.8,5,0.0 +14970,37,26,38,0.0 +14970,31,12.5,45,0.0 +14970,51,53,3,0.0 +14970,2,19,18,0.0 +14970,49,20,14,0.0 +14970,74,10,25,0.0 +14970,33,2.5,27,0.0 +14970,9,97,31,0.0 +14970,26,31.23,41,0.0 +14970,64,33.25,45,0.0 +14970,24,4.5,2,0.0 +14970,63,43.9,13,0.0 +14970,70,15,7,0.0 +14970,6,25,32,0.0 +14970,43,46,49,0.0 +14970,40,18.4,3,0.0 +14970,60,34,27,0.0 +14970,41,9.65,16,0.0 +14970,68,12.5,42,0.0 +14970,76,18,43,0.0 +14970,13,6,8,0.0 +14970,16,17.45,33,0.0 +14970,7,30,26,0.0 +14970,66,17,47,0.0 +14970,39,18,47,0.0 +14970,10,31,9,0.0 +14970,56,38,17,0.0 +14970,15,15.5,29,0.0 +14970,46,12,43,0.0 +14970,71,21.5,18,0.0 +14970,36,19,6,0.0 +14970,67,14,38,0.0 +14970,45,9.5,44,0.0 +14970,34,14,34,0.0 +14970,38,263.5,14,0.0 +14970,75,7.75,46,0.0 +14970,54,7.45,29,0.0 +14970,29,123.79,47,0.0 +14970,35,18,9,0.0 +14970,62,49.3,32,0.0 +14970,19,9.2,14,0.0 +14970,77,13,40,0.0 +14970,61,28.5,22,0.0 +14970,32,32,11,0.0 +14970,48,12.75,1,0.0 +14970,1,18,13,0.0 +14970,65,21.05,3,0.0 +14970,22,21,10,0.0 +14970,28,45.6,49,0.0 +14970,23,9,8,0.0 +14970,73,15,14,0.0 +14970,18,62.5,8,0.0 +14971,20,81,35,0.0 +14971,39,18,39,0.0 +14971,63,43.9,32,0.0 +14971,49,20,40,0.0 +14971,65,21.05,44,0.0 +14971,59,55,29,0.0 +14971,61,28.5,1,0.0 +14971,23,9,31,0.0 +14971,64,33.25,30,0.0 +14971,24,4.5,45,0.0 +14971,43,46,39,0.0 +14971,45,9.5,3,0.0 +14972,49,20,32,0.0 +14972,8,40,12,0.0 +14972,51,53,38,0.0 +14972,53,32.8,40,0.0 +14972,10,31,50,0.0 +14972,48,12.75,33,0.0 +14972,24,4.5,36,0.0 +14972,67,14,7,0.0 +14972,17,39,1,0.0 +14972,19,9.2,27,0.0 +14972,56,38,27,0.0 +14972,74,10,2,0.0 +14972,16,17.45,13,0.0 +14972,69,36,3,0.0 +14972,4,22,23,0.0 +14972,18,62.5,18,0.0 +14972,3,10,41,0.0 +14972,36,19,8,0.0 +14972,44,19.45,46,0.0 +14972,43,46,27,0.0 +14972,68,12.5,29,0.0 +14972,28,45.6,18,0.0 +14972,31,12.5,33,0.0 +14972,54,7.45,40,0.0 +14972,59,55,16,0.0 +14972,38,263.5,15,0.0 +14972,2,19,15,0.0 +14972,73,15,39,0.0 +14972,72,34.8,25,0.0 +14972,5,21.35,23,0.0 +14972,76,18,39,0.0 +14972,35,18,32,0.0 +14972,57,19.5,17,0.0 +14972,6,25,25,0.0 +14972,42,14,34,0.0 +14972,41,9.65,19,0.0 +14972,9,97,29,0.0 +14972,50,16.25,6,0.0 +14972,27,43.9,27,0.0 +14972,75,7.75,48,0.0 +14972,29,123.79,33,0.0 +14973,41,9.65,18,0.0 +14973,73,15,39,0.0 +14973,13,6,28,0.0 +14973,77,13,37,0.0 +14973,65,21.05,36,0.0 +14973,38,263.5,11,0.0 +14974,63,43.9,25,0.0 +14974,36,19,50,0.0 +14974,22,21,16,0.0 +14974,57,19.5,14,0.0 +14974,70,15,42,0.0 +14974,25,14,20,0.0 +14974,8,40,14,0.0 +14974,9,97,22,0.0 +14974,71,21.5,28,0.0 +14974,17,39,15,0.0 +14974,20,81,10,0.0 +14974,43,46,17,0.0 +14974,35,18,17,0.0 +14974,15,15.5,6,0.0 +14974,38,263.5,43,0.0 +14974,77,13,9,0.0 +14974,27,43.9,39,0.0 +14974,4,22,41,0.0 +14974,24,4.5,39,0.0 +14974,1,18,29,0.0 +14974,52,7,24,0.0 +14974,2,19,12,0.0 +14974,14,23.25,40,0.0 +14974,42,14,25,0.0 +14974,41,9.65,37,0.0 +14974,50,16.25,46,0.0 +14974,21,10,8,0.0 +14974,34,14,4,0.0 +14974,54,7.45,44,0.0 +14974,51,53,29,0.0 +14974,40,18.4,43,0.0 +14974,26,31.23,34,0.0 +14974,45,9.5,21,0.0 +14974,16,17.45,4,0.0 +14974,3,10,21,0.0 +14974,37,26,13,0.0 +14974,47,9.5,35,0.0 +14974,69,36,10,0.0 +14974,44,19.45,14,0.0 +14974,49,20,32,0.0 +14974,5,21.35,4,0.0 +14974,6,25,40,0.0 +14974,23,9,41,0.0 +14974,65,21.05,7,0.0 +14974,30,25.89,40,0.0 +14974,39,18,13,0.0 +14974,29,123.79,18,0.0 +14974,61,28.5,42,0.0 +14974,11,21,9,0.0 +14974,67,14,4,0.0 +14974,72,34.8,39,0.0 +14974,7,30,47,0.0 +14974,59,55,15,0.0 +14974,12,38,20,0.0 +14974,76,18,12,0.0 +14974,66,17,17,0.0 +14974,33,2.5,49,0.0 +14974,73,15,27,0.0 +14974,18,62.5,30,0.0 +14974,68,12.5,27,0.0 +14974,19,9.2,20,0.0 +14974,62,49.3,30,0.0 +14974,10,31,28,0.0 +14974,31,12.5,5,0.0 +14974,53,32.8,46,0.0 +14974,55,24,3,0.0 +14974,48,12.75,41,0.0 +14974,64,33.25,38,0.0 +14974,13,6,28,0.0 +14974,58,13.25,36,0.0 +14974,75,7.75,44,0.0 +14974,56,38,31,0.0 +14974,74,10,50,0.0 +14974,60,34,34,0.0 +14974,32,32,17,0.0 +14974,28,45.6,23,0.0 +14975,11,21,17,0.0 +14975,28,45.6,15,0.0 +14975,70,15,4,0.0 +14975,40,18.4,10,0.0 +14975,49,20,26,0.0 +14975,37,26,27,0.0 +14975,68,12.5,50,0.0 +14975,26,31.23,31,0.0 +14975,56,38,49,0.0 +14975,18,62.5,10,0.0 +14975,65,21.05,13,0.0 +14975,77,13,8,0.0 +14975,30,25.89,8,0.0 +14975,35,18,35,0.0 +14975,63,43.9,25,0.0 +14975,19,9.2,25,0.0 +14975,4,22,9,0.0 +14975,74,10,20,0.0 +14975,64,33.25,22,0.0 +14975,13,6,24,0.0 +14975,23,9,32,0.0 +14975,22,21,17,0.0 +14975,41,9.65,4,0.0 +14975,55,24,38,0.0 +14975,9,97,43,0.0 +14975,33,2.5,26,0.0 +14975,17,39,36,0.0 +14975,42,14,17,0.0 +14975,71,21.5,4,0.0 +14975,14,23.25,32,0.0 +14975,3,10,23,0.0 +14975,24,4.5,43,0.0 +14975,47,9.5,24,0.0 +14975,15,15.5,14,0.0 +14975,38,263.5,33,0.0 +14975,8,40,25,0.0 +14975,53,32.8,43,0.0 +14975,51,53,22,0.0 +14975,57,19.5,2,0.0 +14975,75,7.75,13,0.0 +14975,67,14,30,0.0 +14975,27,43.9,40,0.0 +14975,59,55,11,0.0 +14975,60,34,39,0.0 +14975,76,18,12,0.0 +14975,1,18,1,0.0 +14975,7,30,11,0.0 +14975,16,17.45,46,0.0 +14975,61,28.5,40,0.0 +14976,21,10,45,0.0 +14976,3,10,48,0.0 +14976,11,21,38,0.0 +14976,49,20,41,0.0 +14976,19,9.2,10,0.0 +14976,44,19.45,44,0.0 +14976,38,263.5,33,0.0 +14976,76,18,45,0.0 +14976,24,4.5,47,0.0 +14976,5,21.35,21,0.0 +14976,17,39,39,0.0 +14976,58,13.25,22,0.0 +14976,71,21.5,12,0.0 +14976,6,25,40,0.0 +14976,69,36,27,0.0 +14976,29,123.79,31,0.0 +14976,74,10,30,0.0 +14976,13,6,44,0.0 +14976,10,31,44,0.0 +14976,18,62.5,31,0.0 +14976,12,38,43,0.0 +14976,45,9.5,43,0.0 +14976,28,45.6,41,0.0 +14976,34,14,38,0.0 +14976,64,33.25,50,0.0 +14977,73,15,8,0.0 +14977,1,18,32,0.0 +14977,23,9,38,0.0 +14977,29,123.79,24,0.0 +14977,3,10,35,0.0 +14977,55,24,26,0.0 +14977,6,25,5,0.0 +14977,60,34,50,0.0 +14977,7,30,25,0.0 +14977,72,34.8,2,0.0 +14977,32,32,30,0.0 +14977,14,23.25,9,0.0 +14977,66,17,30,0.0 +14977,50,16.25,25,0.0 +14977,25,14,34,0.0 +14977,16,17.45,6,0.0 +14977,11,21,33,0.0 +14977,47,9.5,19,0.0 +14977,21,10,7,0.0 +14977,5,21.35,46,0.0 +14977,46,12,27,0.0 +14977,8,40,24,0.0 +14977,65,21.05,35,0.0 +14977,57,19.5,48,0.0 +14977,36,19,2,0.0 +14977,45,9.5,32,0.0 +14977,4,22,24,0.0 +14977,69,36,37,0.0 +14977,12,38,44,0.0 +14977,63,43.9,24,0.0 +14977,35,18,33,0.0 +14977,15,15.5,1,0.0 +14977,71,21.5,42,0.0 +14977,20,81,40,0.0 +14977,62,49.3,42,0.0 +14977,53,32.8,34,0.0 +14977,22,21,39,0.0 +14977,31,12.5,32,0.0 +14977,13,6,15,0.0 +14977,67,14,9,0.0 +14977,49,20,35,0.0 +14977,54,7.45,15,0.0 +14977,41,9.65,44,0.0 +14977,75,7.75,17,0.0 +14977,51,53,11,0.0 +14978,25,14,49,0.0 +14978,60,34,19,0.0 +14978,14,23.25,44,0.0 +14978,42,14,1,0.0 +14978,36,19,42,0.0 +14978,3,10,31,0.0 +14978,1,18,23,0.0 +14978,9,97,40,0.0 +14978,34,14,17,0.0 +14978,24,4.5,26,0.0 +14978,71,21.5,20,0.0 +14978,20,81,32,0.0 +14978,35,18,23,0.0 +14978,55,24,3,0.0 +14978,4,22,50,0.0 +14978,74,10,9,0.0 +14978,57,19.5,35,0.0 +14978,48,12.75,39,0.0 +14978,68,12.5,27,0.0 +14978,2,19,30,0.0 +14978,31,12.5,33,0.0 +14978,64,33.25,13,0.0 +14979,28,45.6,48,0.0 +14979,51,53,40,0.0 +14979,38,263.5,11,0.0 +14979,64,33.25,1,0.0 +14979,23,9,4,0.0 +14979,40,18.4,50,0.0 +14979,46,12,41,0.0 +14979,34,14,47,0.0 +14979,77,13,18,0.0 +14979,17,39,12,0.0 +14979,54,7.45,14,0.0 +14979,48,12.75,34,0.0 +14979,30,25.89,19,0.0 +14979,20,81,6,0.0 +14979,25,14,12,0.0 +14979,12,38,8,0.0 +14979,74,10,43,0.0 +14979,72,34.8,36,0.0 +14979,65,21.05,35,0.0 +14979,52,7,42,0.0 +14979,71,21.5,43,0.0 +14979,61,28.5,14,0.0 +14979,35,18,45,0.0 +14979,29,123.79,18,0.0 +14979,9,97,45,0.0 +14979,68,12.5,37,0.0 +14979,47,9.5,18,0.0 +14979,42,14,9,0.0 +14979,70,15,37,0.0 +14979,5,21.35,47,0.0 +14979,39,18,4,0.0 +14979,7,30,37,0.0 +14979,62,49.3,29,0.0 +14979,55,24,1,0.0 +14979,13,6,18,0.0 +14979,19,9.2,31,0.0 +14979,49,20,39,0.0 +14979,58,13.25,20,0.0 +14979,15,15.5,17,0.0 +14979,37,26,40,0.0 +14979,66,17,50,0.0 +14979,41,9.65,12,0.0 +14979,69,36,49,0.0 +14979,14,23.25,45,0.0 +14979,60,34,29,0.0 +14979,2,19,26,0.0 +14979,1,18,22,0.0 +14979,10,31,14,0.0 +14979,3,10,34,0.0 +14979,53,32.8,22,0.0 +14979,59,55,9,0.0 +14979,26,31.23,12,0.0 +14979,21,10,44,0.0 +14979,11,21,34,0.0 +14979,76,18,18,0.0 +14979,24,4.5,18,0.0 +14979,36,19,34,0.0 +14979,33,2.5,4,0.0 +14979,73,15,28,0.0 +14979,18,62.5,3,0.0 +14979,32,32,8,0.0 +14979,56,38,29,0.0 +14979,50,16.25,32,0.0 +14979,8,40,23,0.0 +14979,44,19.45,38,0.0 +14979,75,7.75,23,0.0 +14979,45,9.5,11,0.0 +14979,31,12.5,29,0.0 +14979,63,43.9,9,0.0 +14980,56,38,47,0.0 +14980,66,17,33,0.0 +14980,32,32,21,0.0 +14980,43,46,38,0.0 +14980,41,9.65,14,0.0 +14980,49,20,28,0.0 +14980,44,19.45,50,0.0 +14980,76,18,40,0.0 +14980,10,31,46,0.0 +14980,40,18.4,3,0.0 +14980,34,14,28,0.0 +14981,73,15,44,0.0 +14981,8,40,43,0.0 +14981,14,23.25,48,0.0 +14981,19,9.2,39,0.0 +14981,18,62.5,31,0.0 +14981,3,10,16,0.0 +14981,47,9.5,36,0.0 +14981,61,28.5,21,0.0 +14981,2,19,36,0.0 +14981,7,30,6,0.0 +14981,69,36,30,0.0 +14981,30,25.89,17,0.0 +14981,59,55,30,0.0 +14981,5,21.35,12,0.0 +14981,77,13,1,0.0 +14981,32,32,13,0.0 +14981,66,17,23,0.0 +14981,72,34.8,12,0.0 +14981,29,123.79,5,0.0 +14981,38,263.5,50,0.0 +14981,52,7,28,0.0 +14981,27,43.9,26,0.0 +14981,57,19.5,27,0.0 +14981,39,18,18,0.0 +14981,41,9.65,37,0.0 +14982,55,24,7,0.0 +14982,7,30,21,0.0 +14982,25,14,36,0.0 +14982,53,32.8,3,0.0 +14982,69,36,46,0.0 +14982,8,40,48,0.0 +14982,20,81,23,0.0 +14982,45,9.5,30,0.0 +14982,35,18,6,0.0 +14982,58,13.25,11,0.0 +14982,41,9.65,47,0.0 +14982,51,53,18,0.0 +14982,14,23.25,44,0.0 +14982,28,45.6,25,0.0 +14982,57,19.5,48,0.0 +14982,2,19,34,0.0 +14982,12,38,33,0.0 +14982,50,16.25,32,0.0 +14982,43,46,8,0.0 +14983,43,46,12,0.0 +14983,10,31,26,0.0 +14983,32,32,3,0.0 +14983,1,18,10,0.0 +14983,53,32.8,37,0.0 +14983,55,24,21,0.0 +14983,21,10,26,0.0 +14983,40,18.4,45,0.0 +14983,5,21.35,46,0.0 +14983,44,19.45,50,0.0 +14983,27,43.9,10,0.0 +14984,52,7,38,0.0 +14984,42,14,17,0.0 +14984,8,40,11,0.0 +14984,11,21,35,0.0 +14984,63,43.9,38,0.0 +14984,16,17.45,45,0.0 +14984,65,21.05,3,0.0 +14984,18,62.5,25,0.0 +14984,62,49.3,45,0.0 +14984,43,46,34,0.0 +14984,69,36,37,0.0 +14984,3,10,40,0.0 +14984,10,31,8,0.0 +14984,72,34.8,30,0.0 +14984,49,20,3,0.0 +14984,45,9.5,28,0.0 +14984,66,17,19,0.0 +14984,41,9.65,43,0.0 +14984,37,26,35,0.0 +14984,36,19,25,0.0 +14984,6,25,8,0.0 +14984,13,6,6,0.0 +14984,57,19.5,23,0.0 +14984,74,10,41,0.0 +14984,20,81,5,0.0 +14984,54,7.45,39,0.0 +14984,50,16.25,25,0.0 +14984,39,18,49,0.0 +14984,40,18.4,30,0.0 +14984,59,55,3,0.0 +14984,51,53,41,0.0 +14984,23,9,17,0.0 +14984,28,45.6,26,0.0 +14984,14,23.25,12,0.0 +14984,76,18,32,0.0 +14984,24,4.5,17,0.0 +14984,35,18,38,0.0 +14984,38,263.5,27,0.0 +14984,77,13,3,0.0 +14984,56,38,14,0.0 +14984,48,12.75,48,0.0 +14984,15,15.5,9,0.0 +14984,64,33.25,6,0.0 +14984,34,14,19,0.0 +14984,31,12.5,40,0.0 +14984,5,21.35,32,0.0 +14984,2,19,5,0.0 +14984,33,2.5,9,0.0 +14984,29,123.79,27,0.0 +14984,1,18,31,0.0 +14984,71,21.5,44,0.0 +14984,26,31.23,48,0.0 +14984,60,34,48,0.0 +14984,68,12.5,21,0.0 +14984,7,30,4,0.0 +14984,67,14,29,0.0 +14984,22,21,44,0.0 +14984,30,25.89,24,0.0 +14984,27,43.9,22,0.0 +14984,32,32,35,0.0 +14984,58,13.25,6,0.0 +14984,53,32.8,35,0.0 +14984,70,15,19,0.0 +14984,47,9.5,2,0.0 +14984,25,14,37,0.0 +14984,46,12,16,0.0 +14984,17,39,29,0.0 +14985,4,22,41,0.0 +14985,16,17.45,6,0.0 +14985,6,25,7,0.0 +14985,40,18.4,8,0.0 +14985,23,9,34,0.0 +14985,2,19,16,0.0 +14985,69,36,9,0.0 +14985,17,39,37,0.0 +14985,32,32,28,0.0 +14985,36,19,28,0.0 +14985,62,49.3,3,0.0 +14985,8,40,38,0.0 +14985,1,18,32,0.0 +14986,24,4.5,24,0.0 +14986,16,17.45,25,0.0 +14986,9,97,4,0.0 +14986,20,81,19,0.0 +14986,10,31,40,0.0 +14986,62,49.3,19,0.0 +14986,13,6,15,0.0 +14986,73,15,48,0.0 +14986,56,38,50,0.0 +14987,38,263.5,25,0.0 +14987,72,34.8,36,0.0 +14987,46,12,5,0.0 +14987,19,9.2,13,0.0 +14987,1,18,26,0.0 +14987,6,25,42,0.0 +14987,35,18,12,0.0 +14987,59,55,35,0.0 +14987,54,7.45,20,0.0 +14987,67,14,9,0.0 +14987,56,38,4,0.0 +14987,75,7.75,13,0.0 +14987,71,21.5,41,0.0 +14987,7,30,26,0.0 +14987,28,45.6,31,0.0 +14987,62,49.3,41,0.0 +14987,20,81,32,0.0 +14987,64,33.25,7,0.0 +14987,36,19,2,0.0 +14987,58,13.25,44,0.0 +14987,34,14,30,0.0 +14987,74,10,50,0.0 +14988,67,14,30,0.0 +14988,32,32,16,0.0 +14988,60,34,34,0.0 +14988,34,14,11,0.0 +14988,71,21.5,18,0.0 +14988,74,10,39,0.0 +14988,25,14,42,0.0 +14988,44,19.45,34,0.0 +14988,35,18,33,0.0 +14988,49,20,36,0.0 +14988,13,6,12,0.0 +14988,54,7.45,37,0.0 +14988,16,17.45,37,0.0 +14988,29,123.79,48,0.0 +14988,41,9.65,29,0.0 +14988,5,21.35,12,0.0 +14988,46,12,9,0.0 +14988,69,36,29,0.0 +14988,48,12.75,15,0.0 +14988,53,32.8,10,0.0 +14988,36,19,43,0.0 +14988,38,263.5,24,0.0 +14988,65,21.05,4,0.0 +14988,42,14,28,0.0 +14988,6,25,28,0.0 +14988,28,45.6,47,0.0 +14988,22,21,33,0.0 +14988,26,31.23,31,0.0 +14988,70,15,16,0.0 +14988,33,2.5,39,0.0 +14988,15,15.5,50,0.0 +14988,40,18.4,16,0.0 +14988,37,26,36,0.0 +14988,7,30,27,0.0 +14988,63,43.9,50,0.0 +14988,76,18,15,0.0 +14989,20,81,41,0.0 +14989,30,25.89,45,0.0 +14989,23,9,14,0.0 +14989,10,31,1,0.0 +14989,44,19.45,38,0.0 +14989,62,49.3,20,0.0 +14989,58,13.25,47,0.0 +14989,72,34.8,32,0.0 +14989,49,20,37,0.0 +14989,22,21,22,0.0 +14989,39,18,26,0.0 +14989,40,18.4,26,0.0 +14989,46,12,18,0.0 +14989,7,30,40,0.0 +14989,55,24,49,0.0 +14989,67,14,44,0.0 +14989,2,19,17,0.0 +14989,71,21.5,49,0.0 +14989,34,14,3,0.0 +14989,32,32,37,0.0 +14989,60,34,30,0.0 +14989,75,7.75,9,0.0 +14989,61,28.5,33,0.0 +14989,42,14,16,0.0 +14989,25,14,9,0.0 +14989,16,17.45,46,0.0 +14989,68,12.5,18,0.0 +14989,29,123.79,43,0.0 +14989,76,18,17,0.0 +14989,19,9.2,43,0.0 +14989,37,26,32,0.0 +14989,74,10,6,0.0 +14989,24,4.5,42,0.0 +14989,65,21.05,39,0.0 +14989,51,53,4,0.0 +14989,50,16.25,28,0.0 +14989,43,46,14,0.0 +14989,36,19,30,0.0 +14989,21,10,2,0.0 +14989,45,9.5,7,0.0 +14989,64,33.25,18,0.0 +14989,18,62.5,49,0.0 +14989,70,15,26,0.0 +14989,53,32.8,13,0.0 +14989,35,18,16,0.0 +14989,57,19.5,5,0.0 +14989,15,15.5,32,0.0 +14989,77,13,24,0.0 +14989,66,17,4,0.0 +14989,48,12.75,16,0.0 +14989,5,21.35,8,0.0 +14989,14,23.25,50,0.0 +14989,41,9.65,20,0.0 +14989,69,36,11,0.0 +14989,27,43.9,46,0.0 +14989,28,45.6,30,0.0 +14989,31,12.5,31,0.0 +14989,1,18,3,0.0 +14989,54,7.45,49,0.0 +14989,63,43.9,41,0.0 +14989,17,39,39,0.0 +14989,8,40,35,0.0 +14989,52,7,49,0.0 +14989,13,6,6,0.0 +14989,33,2.5,28,0.0 +14989,56,38,33,0.0 +14989,3,10,30,0.0 +14989,11,21,34,0.0 +14989,9,97,2,0.0 +14989,4,22,8,0.0 +14989,38,263.5,46,0.0 +14989,6,25,38,0.0 +14989,26,31.23,23,0.0 +14989,47,9.5,36,0.0 +14990,9,97,36,0.0 +14990,46,12,10,0.0 +14990,61,28.5,47,0.0 +14990,22,21,13,0.0 +14990,50,16.25,7,0.0 +14990,48,12.75,48,0.0 +14990,29,123.79,29,0.0 +14990,6,25,18,0.0 +14990,35,18,29,0.0 +14990,52,7,43,0.0 +14990,53,32.8,36,0.0 +14990,8,40,33,0.0 +14990,37,26,6,0.0 +14990,73,15,19,0.0 +14990,19,9.2,27,0.0 +14990,2,19,35,0.0 +14990,1,18,4,0.0 +14990,59,55,7,0.0 +14990,41,9.65,41,0.0 +14990,66,17,13,0.0 +14990,7,30,48,0.0 +14990,55,24,27,0.0 +14990,5,21.35,29,0.0 +14990,34,14,23,0.0 +14990,58,13.25,17,0.0 +14990,33,2.5,21,0.0 +14990,57,19.5,16,0.0 +14990,67,14,17,0.0 +14990,14,23.25,50,0.0 +14990,25,14,9,0.0 +14990,17,39,28,0.0 +14990,71,21.5,33,0.0 +14990,68,12.5,40,0.0 +14990,28,45.6,16,0.0 +14990,49,20,33,0.0 +14990,43,46,17,0.0 +14990,3,10,45,0.0 +14990,4,22,37,0.0 +14990,27,43.9,4,0.0 +14990,32,32,22,0.0 +14990,20,81,25,0.0 +14990,13,6,34,0.0 +14990,74,10,20,0.0 +14990,75,7.75,30,0.0 +14990,11,21,23,0.0 +14990,72,34.8,36,0.0 +14990,39,18,49,0.0 +14990,63,43.9,26,0.0 +14990,26,31.23,29,0.0 +14990,30,25.89,47,0.0 +14990,18,62.5,29,0.0 +14990,51,53,50,0.0 +14990,24,4.5,23,0.0 +14990,70,15,8,0.0 +14990,36,19,42,0.0 +14990,47,9.5,43,0.0 +14990,40,18.4,20,0.0 +14990,76,18,20,0.0 +14990,77,13,3,0.0 +14990,44,19.45,49,0.0 +14990,69,36,43,0.0 +14990,65,21.05,8,0.0 +14990,54,7.45,36,0.0 +14990,62,49.3,28,0.0 +14990,16,17.45,8,0.0 +14990,15,15.5,11,0.0 +14990,42,14,49,0.0 +14990,60,34,25,0.0 +14991,72,34.8,8,0.0 +14991,52,7,23,0.0 +14991,16,17.45,8,0.0 +14992,70,15,39,0.0 +14992,3,10,4,0.0 +14992,7,30,24,0.0 +14992,53,32.8,50,0.0 +14992,16,17.45,33,0.0 +14992,34,14,37,0.0 +14992,37,26,43,0.0 +14992,57,19.5,15,0.0 +14992,8,40,42,0.0 +14992,40,18.4,14,0.0 +14992,64,33.25,37,0.0 +14992,56,38,44,0.0 +14992,10,31,46,0.0 +14992,49,20,11,0.0 +14992,51,53,49,0.0 +14992,11,21,48,0.0 +14992,17,39,32,0.0 +14992,59,55,50,0.0 +14992,14,23.25,26,0.0 +14992,72,34.8,28,0.0 +14992,47,9.5,32,0.0 +14992,35,18,22,0.0 +14992,44,19.45,8,0.0 +14992,41,9.65,33,0.0 +14992,38,263.5,14,0.0 +14992,21,10,37,0.0 +14992,77,13,21,0.0 +14992,2,19,22,0.0 +14992,19,9.2,15,0.0 +14992,15,15.5,47,0.0 +14992,33,2.5,10,0.0 +14992,29,123.79,38,0.0 +14992,20,81,15,0.0 +14992,71,21.5,15,0.0 +14992,58,13.25,2,0.0 +14992,24,4.5,44,0.0 +14992,42,14,31,0.0 +14992,48,12.75,28,0.0 +14992,9,97,10,0.0 +14992,46,12,13,0.0 +14992,25,14,9,0.0 +14992,13,6,3,0.0 +14992,36,19,46,0.0 +14992,67,14,5,0.0 +14992,1,18,8,0.0 +14992,26,31.23,46,0.0 +14992,5,21.35,2,0.0 +14992,30,25.89,35,0.0 +14992,75,7.75,42,0.0 +14992,61,28.5,24,0.0 +14992,4,22,2,0.0 +14993,73,15,35,0.0 +14993,54,7.45,23,0.0 +14993,77,13,8,0.0 +14993,45,9.5,8,0.0 +14993,26,31.23,44,0.0 +14993,12,38,23,0.0 +14993,67,14,21,0.0 +14993,62,49.3,27,0.0 +14993,68,12.5,40,0.0 +14993,58,13.25,29,0.0 +14993,14,23.25,19,0.0 +14993,36,19,31,0.0 +14993,19,9.2,5,0.0 +14993,35,18,13,0.0 +14993,22,21,50,0.0 +14993,63,43.9,4,0.0 +14993,13,6,17,0.0 +14993,59,55,2,0.0 +14993,23,9,31,0.0 +14993,5,21.35,1,0.0 +14993,55,24,18,0.0 +14993,39,18,2,0.0 +14993,69,36,13,0.0 +14993,4,22,10,0.0 +14993,74,10,49,0.0 +14993,64,33.25,17,0.0 +14993,21,10,47,0.0 +14993,24,4.5,4,0.0 +14993,66,17,41,0.0 +14993,2,19,17,0.0 +14993,51,53,13,0.0 +14993,56,38,40,0.0 +14993,34,14,33,0.0 +14993,71,21.5,44,0.0 +14993,75,7.75,42,0.0 +14993,38,263.5,47,0.0 +14993,40,18.4,13,0.0 +14994,33,2.5,46,0.0 +14994,42,14,43,0.0 +14994,2,19,40,0.0 +14994,66,17,47,0.0 +14994,46,12,43,0.0 +14994,5,21.35,5,0.0 +14994,8,40,16,0.0 +14994,44,19.45,27,0.0 +14994,53,32.8,29,0.0 +14994,51,53,12,0.0 +14994,71,21.5,50,0.0 +14994,27,43.9,48,0.0 +14994,56,38,16,0.0 +14994,50,16.25,23,0.0 +14994,57,19.5,17,0.0 +14994,29,123.79,19,0.0 +14994,67,14,19,0.0 +14994,15,15.5,8,0.0 +14994,19,9.2,28,0.0 +14994,13,6,17,0.0 +14994,31,12.5,32,0.0 +14994,21,10,41,0.0 +14994,22,21,45,0.0 +14994,14,23.25,31,0.0 +14994,73,15,19,0.0 +14994,7,30,18,0.0 +14994,10,31,27,0.0 +14994,77,13,19,0.0 +14994,26,31.23,3,0.0 +14994,64,33.25,30,0.0 +14994,69,36,45,0.0 +14994,39,18,34,0.0 +14994,59,55,45,0.0 +14994,58,13.25,4,0.0 +14994,28,45.6,41,0.0 +14994,52,7,23,0.0 +14994,18,62.5,50,0.0 +14994,20,81,35,0.0 +14994,62,49.3,47,0.0 +14994,4,22,29,0.0 +14994,45,9.5,32,0.0 +14994,47,9.5,50,0.0 +14994,49,20,27,0.0 +14994,55,24,5,0.0 +14994,76,18,3,0.0 +14994,74,10,22,0.0 +14994,38,263.5,32,0.0 +14994,40,18.4,40,0.0 +14994,75,7.75,35,0.0 +14994,25,14,31,0.0 +14994,6,25,10,0.0 +14994,24,4.5,24,0.0 +14994,12,38,4,0.0 +14994,68,12.5,34,0.0 +14994,36,19,39,0.0 +14994,35,18,29,0.0 +14994,32,32,28,0.0 +14994,37,26,30,0.0 +14994,70,15,15,0.0 +14994,61,28.5,21,0.0 +14994,1,18,28,0.0 +14995,56,38,22,0.0 +14995,9,97,2,0.0 +14995,46,12,10,0.0 +14995,6,25,16,0.0 +14995,37,26,1,0.0 +14995,68,12.5,8,0.0 +14995,17,39,33,0.0 +14995,59,55,7,0.0 +14995,49,20,3,0.0 +14995,28,45.6,9,0.0 +14995,43,46,39,0.0 +14995,74,10,45,0.0 +14995,22,21,42,0.0 +14995,70,15,30,0.0 +14995,44,19.45,2,0.0 +14995,66,17,29,0.0 +14995,55,24,37,0.0 +14995,38,263.5,2,0.0 +14995,33,2.5,3,0.0 +14995,75,7.75,21,0.0 +14995,34,14,35,0.0 +14995,32,32,12,0.0 +14995,48,12.75,47,0.0 +14995,12,38,29,0.0 +14995,45,9.5,21,0.0 +14995,2,19,18,0.0 +14995,35,18,23,0.0 +14995,61,28.5,19,0.0 +14995,71,21.5,31,0.0 +14995,27,43.9,36,0.0 +14995,69,36,25,0.0 +14995,50,16.25,11,0.0 +14995,57,19.5,37,0.0 +14995,1,18,28,0.0 +14995,18,62.5,8,0.0 +14995,26,31.23,7,0.0 +14995,25,14,1,0.0 +14995,4,22,3,0.0 +14995,30,25.89,34,0.0 +14995,67,14,19,0.0 +14995,19,9.2,48,0.0 +14995,10,31,29,0.0 +14995,20,81,37,0.0 +14995,60,34,48,0.0 +14995,62,49.3,31,0.0 +14995,39,18,12,0.0 +14995,24,4.5,29,0.0 +14995,13,6,2,0.0 +14995,11,21,39,0.0 +14995,77,13,9,0.0 +14995,72,34.8,49,0.0 +14995,42,14,45,0.0 +14995,76,18,6,0.0 +14995,31,12.5,6,0.0 +14995,65,21.05,31,0.0 +14995,14,23.25,1,0.0 +14995,54,7.45,7,0.0 +14995,3,10,49,0.0 +14995,47,9.5,5,0.0 +14995,41,9.65,48,0.0 +14995,64,33.25,47,0.0 +14995,52,7,41,0.0 +14996,48,12.75,25,0.0 +14996,43,46,42,0.0 +14996,73,15,6,0.0 +14996,42,14,35,0.0 +14996,14,23.25,23,0.0 +14996,72,34.8,24,0.0 +14996,71,21.5,3,0.0 +14996,23,9,14,0.0 +14996,41,9.65,48,0.0 +14996,37,26,23,0.0 +14996,65,21.05,45,0.0 +14996,39,18,26,0.0 +14996,13,6,3,0.0 +14996,56,38,31,0.0 +14996,33,2.5,22,0.0 +14996,3,10,21,0.0 +14996,31,12.5,36,0.0 +14996,38,263.5,12,0.0 +14996,15,15.5,14,0.0 +14996,16,17.45,23,0.0 +14996,55,24,26,0.0 +14996,1,18,48,0.0 +14996,11,21,32,0.0 +14996,21,10,46,0.0 +14996,50,16.25,15,0.0 +14996,26,31.23,28,0.0 +14996,8,40,33,0.0 +14996,58,13.25,8,0.0 +14996,20,81,39,0.0 +14996,64,33.25,44,0.0 +14996,75,7.75,50,0.0 +14996,27,43.9,20,0.0 +14996,51,53,21,0.0 +14996,30,25.89,28,0.0 +14996,59,55,14,0.0 +14996,54,7.45,38,0.0 +14996,60,34,16,0.0 +14996,57,19.5,47,0.0 +14996,44,19.45,3,0.0 +14997,52,7,41,0.0 +14997,45,9.5,46,0.0 +14997,18,62.5,1,0.0 +14997,32,32,21,0.0 +14998,65,21.05,18,0.0 +14998,31,12.5,16,0.0 +14998,4,22,45,0.0 +14998,9,97,14,0.0 +14998,15,15.5,25,0.0 +14998,6,25,11,0.0 +14998,34,14,34,0.0 +14998,20,81,17,0.0 +14998,51,53,16,0.0 +14998,45,9.5,24,0.0 +14998,39,18,20,0.0 +14998,17,39,7,0.0 +14998,30,25.89,17,0.0 +14998,40,18.4,32,0.0 +14998,37,26,50,0.0 +14998,2,19,36,0.0 +14998,54,7.45,12,0.0 +14998,27,43.9,22,0.0 +14998,75,7.75,15,0.0 +14998,35,18,4,0.0 +14998,68,12.5,47,0.0 +14998,43,46,49,0.0 +14998,26,31.23,2,0.0 +14998,73,15,21,0.0 +14998,62,49.3,46,0.0 +14998,74,10,4,0.0 +14998,41,9.65,6,0.0 +14998,36,19,24,0.0 +14998,66,17,1,0.0 +14998,47,9.5,33,0.0 +14998,60,34,50,0.0 +14998,76,18,18,0.0 +14998,22,21,8,0.0 +14998,19,9.2,42,0.0 +14998,3,10,24,0.0 +14998,1,18,46,0.0 +14998,48,12.75,19,0.0 +14998,56,38,5,0.0 +14998,61,28.5,21,0.0 +14998,42,14,7,0.0 +14998,57,19.5,39,0.0 +14998,52,7,27,0.0 +14998,64,33.25,13,0.0 +14998,18,62.5,35,0.0 +14998,23,9,26,0.0 +14998,11,21,43,0.0 +14998,67,14,4,0.0 +14998,53,32.8,35,0.0 +14998,10,31,17,0.0 +14998,32,32,31,0.0 +14998,46,12,18,0.0 +14999,63,43.9,3,0.0 +14999,5,21.35,15,0.0 +14999,70,15,38,0.0 +14999,18,62.5,50,0.0 +14999,56,38,14,0.0 +14999,73,15,41,0.0 +15000,49,20,41,0.0 +15000,6,25,6,0.0 +15000,42,14,3,0.0 +15000,53,32.8,3,0.0 +15000,28,45.6,44,0.0 +15000,66,17,42,0.0 +15000,4,22,31,0.0 +15000,68,12.5,2,0.0 +15000,58,13.25,41,0.0 +15000,45,9.5,32,0.0 +15000,76,18,39,0.0 +15000,55,24,42,0.0 +15000,72,34.8,32,0.0 +15000,24,4.5,22,0.0 +15000,33,2.5,13,0.0 +15000,67,14,42,0.0 +15000,10,31,26,0.0 +15000,77,13,28,0.0 +15000,22,21,12,0.0 +15000,14,23.25,6,0.0 +15000,46,12,21,0.0 +15000,59,55,16,0.0 +15000,54,7.45,41,0.0 +15000,73,15,45,0.0 +15000,40,18.4,14,0.0 +15000,9,97,4,0.0 +15000,16,17.45,8,0.0 +15000,35,18,24,0.0 +15000,38,263.5,16,0.0 +15000,2,19,23,0.0 +15000,8,40,8,0.0 +15000,52,7,31,0.0 +15000,48,12.75,34,0.0 +15000,60,34,8,0.0 +15000,25,14,50,0.0 +15000,13,6,2,0.0 +15000,20,81,50,0.0 +15000,56,38,15,0.0 +15000,69,36,11,0.0 +15000,29,123.79,35,0.0 +15000,21,10,41,0.0 +15000,27,43.9,27,0.0 +15000,39,18,23,0.0 +15000,18,62.5,19,0.0 +15000,43,46,19,0.0 +15000,23,9,19,0.0 +15000,34,14,4,0.0 +15000,31,12.5,40,0.0 +15000,32,32,46,0.0 +15000,12,38,29,0.0 +15000,41,9.65,38,0.0 +15000,15,15.5,16,0.0 +15000,19,9.2,49,0.0 +15000,7,30,24,0.0 +15000,1,18,33,0.0 +15000,3,10,34,0.0 +15000,74,10,36,0.0 +15000,51,53,47,0.0 +15000,57,19.5,25,0.0 +15000,50,16.25,24,0.0 +15000,61,28.5,14,0.0 +15000,37,26,19,0.0 +15000,5,21.35,32,0.0 +15000,47,9.5,1,0.0 +15000,64,33.25,37,0.0 +15000,75,7.75,47,0.0 +15000,71,21.5,25,0.0 +15000,26,31.23,42,0.0 +15000,63,43.9,37,0.0 +15001,63,43.9,38,0.0 +15001,71,21.5,4,0.0 +15001,35,18,39,0.0 +15001,9,97,13,0.0 +15001,40,18.4,42,0.0 +15001,55,24,5,0.0 +15001,57,19.5,4,0.0 +15001,58,13.25,1,0.0 +15001,60,34,48,0.0 +15001,6,25,49,0.0 +15001,56,38,32,0.0 +15001,52,7,17,0.0 +15001,73,15,29,0.0 +15001,13,6,41,0.0 +15001,54,7.45,25,0.0 +15001,7,30,19,0.0 +15001,65,21.05,43,0.0 +15001,37,26,46,0.0 +15001,16,17.45,28,0.0 +15001,28,45.6,41,0.0 +15001,21,10,1,0.0 +15001,11,21,24,0.0 +15001,64,33.25,43,0.0 +15001,44,19.45,31,0.0 +15001,41,9.65,46,0.0 +15001,32,32,28,0.0 +15001,39,18,47,0.0 +15001,62,49.3,49,0.0 +15001,18,62.5,6,0.0 +15001,76,18,44,0.0 +15001,1,18,17,0.0 +15001,25,14,6,0.0 +15001,59,55,19,0.0 +15001,8,40,46,0.0 +15001,46,12,37,0.0 +15001,47,9.5,21,0.0 +15001,75,7.75,41,0.0 +15001,42,14,44,0.0 +15001,3,10,1,0.0 +15001,43,46,18,0.0 +15001,53,32.8,43,0.0 +15001,30,25.89,24,0.0 +15001,31,12.5,11,0.0 +15001,49,20,45,0.0 +15002,44,19.45,9,0.0 +15002,59,55,11,0.0 +15002,66,17,5,0.0 +15002,29,123.79,2,0.0 +15002,14,23.25,10,0.0 +15002,34,14,38,0.0 +15002,28,45.6,22,0.0 +15002,13,6,6,0.0 +15002,36,19,2,0.0 +15002,77,13,5,0.0 +15002,51,53,20,0.0 +15002,33,2.5,9,0.0 +15002,2,19,11,0.0 +15002,54,7.45,2,0.0 +15002,8,40,42,0.0 +15002,11,21,9,0.0 +15002,58,13.25,2,0.0 +15002,1,18,12,0.0 +15002,46,12,10,0.0 +15002,43,46,5,0.0 +15002,40,18.4,2,0.0 +15002,50,16.25,20,0.0 +15002,39,18,3,0.0 +15002,74,10,22,0.0 +15002,42,14,21,0.0 +15002,47,9.5,8,0.0 +15002,61,28.5,7,0.0 +15002,53,32.8,8,0.0 +15002,10,31,32,0.0 +15002,76,18,6,0.0 +15002,23,9,18,0.0 +15002,4,22,50,0.0 +15002,71,21.5,37,0.0 +15002,9,97,46,0.0 +15002,41,9.65,23,0.0 +15002,15,15.5,3,0.0 +15002,48,12.75,15,0.0 +15003,67,14,1,0.0 +15003,61,28.5,7,0.0 +15003,15,15.5,17,0.0 +15003,4,22,17,0.0 +15003,37,26,18,0.0 +15003,76,18,41,0.0 +15003,54,7.45,38,0.0 +15003,40,18.4,26,0.0 +15003,68,12.5,16,0.0 +15003,55,24,13,0.0 +15003,22,21,2,0.0 +15003,30,25.89,24,0.0 +15003,2,19,23,0.0 +15003,9,97,33,0.0 +15003,69,36,18,0.0 +15003,26,31.23,4,0.0 +15003,20,81,7,0.0 +15003,5,21.35,9,0.0 +15003,53,32.8,43,0.0 +15003,45,9.5,8,0.0 +15003,44,19.45,38,0.0 +15003,31,12.5,25,0.0 +15003,6,25,43,0.0 +15003,23,9,23,0.0 +15003,39,18,4,0.0 +15003,50,16.25,41,0.0 +15004,62,49.3,50,0.0 +15004,8,40,15,0.0 +15004,28,45.6,21,0.0 +15004,53,32.8,29,0.0 +15004,40,18.4,2,0.0 +15004,39,18,8,0.0 +15004,32,32,40,0.0 +15004,77,13,48,0.0 +15004,63,43.9,1,0.0 +15004,38,263.5,1,0.0 +15004,37,26,11,0.0 +15004,5,21.35,15,0.0 +15004,2,19,20,0.0 +15004,75,7.75,16,0.0 +15004,41,9.65,48,0.0 +15004,20,81,16,0.0 +15004,36,19,29,0.0 +15004,65,21.05,35,0.0 +15004,56,38,19,0.0 +15004,58,13.25,19,0.0 +15004,35,18,40,0.0 +15004,25,14,33,0.0 +15004,48,12.75,4,0.0 +15004,57,19.5,10,0.0 +15004,70,15,13,0.0 +15004,13,6,21,0.0 +15004,66,17,22,0.0 +15004,18,62.5,50,0.0 +15004,34,14,22,0.0 +15004,17,39,4,0.0 +15004,33,2.5,2,0.0 +15004,59,55,38,0.0 +15004,27,43.9,37,0.0 +15004,3,10,25,0.0 +15004,24,4.5,10,0.0 +15004,45,9.5,13,0.0 +15004,71,21.5,17,0.0 +15004,64,33.25,15,0.0 +15004,15,15.5,50,0.0 +15004,26,31.23,4,0.0 +15004,14,23.25,48,0.0 +15004,30,25.89,45,0.0 +15004,9,97,44,0.0 +15004,16,17.45,35,0.0 +15004,67,14,27,0.0 +15004,74,10,50,0.0 +15004,21,10,43,0.0 +15004,72,34.8,24,0.0 +15004,4,22,17,0.0 +15004,68,12.5,42,0.0 +15004,54,7.45,14,0.0 +15004,47,9.5,3,0.0 +15004,60,34,1,0.0 +15004,44,19.45,32,0.0 +15004,29,123.79,26,0.0 +15005,65,21.05,41,0.0 +15005,34,14,5,0.0 +15005,8,40,29,0.0 +15005,74,10,11,0.0 +15005,63,43.9,50,0.0 +15005,3,10,47,0.0 +15005,59,55,45,0.0 +15005,77,13,29,0.0 +15005,31,12.5,23,0.0 +15006,33,2.5,14,0.0 +15006,5,21.35,46,0.0 +15006,18,62.5,39,0.0 +15006,42,14,50,0.0 +15006,56,38,28,0.0 +15006,30,25.89,41,0.0 +15006,67,14,34,0.0 +15006,77,13,1,0.0 +15006,10,31,9,0.0 +15006,63,43.9,39,0.0 +15006,37,26,9,0.0 +15006,26,31.23,7,0.0 +15006,44,19.45,34,0.0 +15006,32,32,13,0.0 +15006,52,7,43,0.0 +15006,69,36,19,0.0 +15006,72,34.8,16,0.0 +15006,40,18.4,19,0.0 +15006,53,32.8,46,0.0 +15006,21,10,15,0.0 +15006,22,21,49,0.0 +15006,49,20,50,0.0 +15006,17,39,49,0.0 +15006,9,97,18,0.0 +15006,4,22,50,0.0 +15006,76,18,30,0.0 +15006,11,21,14,0.0 +15006,71,21.5,29,0.0 +15007,19,9.2,45,0.0 +15007,10,31,27,0.0 +15007,15,15.5,33,0.0 +15007,60,34,46,0.0 +15007,61,28.5,30,0.0 +15007,43,46,10,0.0 +15007,8,40,34,0.0 +15007,75,7.75,35,0.0 +15007,12,38,12,0.0 +15007,24,4.5,27,0.0 +15007,17,39,13,0.0 +15007,9,97,5,0.0 +15007,14,23.25,50,0.0 +15007,27,43.9,20,0.0 +15007,56,38,24,0.0 +15007,44,19.45,1,0.0 +15007,42,14,20,0.0 +15007,3,10,41,0.0 +15007,25,14,10,0.0 +15007,58,13.25,48,0.0 +15007,6,25,23,0.0 +15007,16,17.45,49,0.0 +15007,70,15,2,0.0 +15007,33,2.5,2,0.0 +15007,26,31.23,5,0.0 +15007,5,21.35,10,0.0 +15007,40,18.4,48,0.0 +15007,77,13,36,0.0 +15008,58,13.25,18,0.0 +15008,37,26,46,0.0 +15008,6,25,47,0.0 +15008,23,9,8,0.0 +15008,54,7.45,26,0.0 +15008,51,53,14,0.0 +15008,8,40,33,0.0 +15008,18,62.5,24,0.0 +15008,68,12.5,2,0.0 +15008,77,13,50,0.0 +15008,1,18,27,0.0 +15008,56,38,12,0.0 +15008,12,38,16,0.0 +15008,24,4.5,31,0.0 +15008,46,12,49,0.0 +15008,33,2.5,6,0.0 +15008,39,18,25,0.0 +15008,49,20,27,0.0 +15008,10,31,17,0.0 +15008,59,55,44,0.0 +15008,48,12.75,12,0.0 +15008,66,17,10,0.0 +15008,25,14,18,0.0 +15008,28,45.6,47,0.0 +15008,76,18,8,0.0 +15008,16,17.45,23,0.0 +15008,5,21.35,18,0.0 +15008,43,46,32,0.0 +15008,60,34,20,0.0 +15008,15,15.5,2,0.0 +15008,13,6,6,0.0 +15008,71,21.5,27,0.0 +15008,38,263.5,21,0.0 +15008,72,34.8,23,0.0 +15008,32,32,7,0.0 +15008,57,19.5,30,0.0 +15008,62,49.3,44,0.0 +15008,34,14,3,0.0 +15008,9,97,6,0.0 +15008,11,21,21,0.0 +15008,64,33.25,30,0.0 +15008,50,16.25,27,0.0 +15008,74,10,4,0.0 +15008,26,31.23,41,0.0 +15008,3,10,34,0.0 +15008,55,24,34,0.0 +15008,27,43.9,19,0.0 +15008,2,19,46,0.0 +15008,29,123.79,47,0.0 +15008,47,9.5,2,0.0 +15008,53,32.8,31,0.0 +15008,52,7,49,0.0 +15008,7,30,7,0.0 +15008,70,15,31,0.0 +15008,41,9.65,3,0.0 +15008,61,28.5,47,0.0 +15009,77,13,17,0.0 +15009,15,15.5,39,0.0 +15009,30,25.89,28,0.0 +15009,11,21,16,0.0 +15009,2,19,34,0.0 +15009,1,18,39,0.0 +15009,41,9.65,24,0.0 +15009,76,18,48,0.0 +15009,59,55,34,0.0 +15009,29,123.79,27,0.0 +15009,55,24,14,0.0 +15009,10,31,49,0.0 +15009,32,32,14,0.0 +15009,3,10,46,0.0 +15009,5,21.35,38,0.0 +15009,27,43.9,37,0.0 +15009,31,12.5,41,0.0 +15009,46,12,22,0.0 +15009,68,12.5,46,0.0 +15009,51,53,40,0.0 +15009,74,10,47,0.0 +15009,25,14,19,0.0 +15009,64,33.25,5,0.0 +15009,44,19.45,32,0.0 +15009,17,39,50,0.0 +15009,9,97,38,0.0 +15009,22,21,49,0.0 +15009,42,14,35,0.0 +15009,20,81,8,0.0 +15009,49,20,49,0.0 +15009,66,17,21,0.0 +15009,52,7,25,0.0 +15009,35,18,1,0.0 +15009,61,28.5,50,0.0 +15009,53,32.8,41,0.0 +15009,72,34.8,18,0.0 +15009,73,15,1,0.0 +15009,4,22,4,0.0 +15009,12,38,34,0.0 +15010,75,7.75,43,0.0 +15010,64,33.25,5,0.0 +15010,5,21.35,7,0.0 +15010,56,38,34,0.0 +15010,34,14,25,0.0 +15010,20,81,20,0.0 +15010,14,23.25,4,0.0 +15010,67,14,27,0.0 +15010,6,25,29,0.0 +15010,31,12.5,8,0.0 +15010,57,19.5,16,0.0 +15010,72,34.8,10,0.0 +15010,27,43.9,32,0.0 +15010,39,18,13,0.0 +15010,54,7.45,47,0.0 +15010,63,43.9,38,0.0 +15010,66,17,10,0.0 +15010,30,25.89,12,0.0 +15010,44,19.45,50,0.0 +15010,7,30,1,0.0 +15010,33,2.5,46,0.0 +15010,22,21,4,0.0 +15010,42,14,25,0.0 +15010,68,12.5,31,0.0 +15010,45,9.5,49,0.0 +15011,65,21.05,43,0.0 +15011,47,9.5,27,0.0 +15011,53,32.8,35,0.0 +15011,49,20,7,0.0 +15011,55,24,36,0.0 +15011,54,7.45,13,0.0 +15011,48,12.75,9,0.0 +15011,20,81,19,0.0 +15011,61,28.5,12,0.0 +15011,37,26,17,0.0 +15011,29,123.79,17,0.0 +15011,71,21.5,15,0.0 +15011,26,31.23,11,0.0 +15011,35,18,33,0.0 +15011,43,46,33,0.0 +15011,16,17.45,31,0.0 +15011,25,14,9,0.0 +15011,15,15.5,31,0.0 +15011,28,45.6,21,0.0 +15011,13,6,31,0.0 +15011,3,10,31,0.0 +15011,70,15,35,0.0 +15011,36,19,11,0.0 +15011,23,9,6,0.0 +15011,40,18.4,40,0.0 +15011,31,12.5,31,0.0 +15011,6,25,4,0.0 +15011,18,62.5,31,0.0 +15011,1,18,39,0.0 +15011,9,97,35,0.0 +15011,42,14,20,0.0 +15011,4,22,21,0.0 +15011,64,33.25,25,0.0 +15011,32,32,1,0.0 +15011,75,7.75,42,0.0 +15011,8,40,31,0.0 +15011,62,49.3,2,0.0 +15011,59,55,38,0.0 +15011,27,43.9,22,0.0 +15011,51,53,48,0.0 +15011,41,9.65,27,0.0 +15011,2,19,43,0.0 +15011,72,34.8,33,0.0 +15011,33,2.5,46,0.0 +15011,60,34,7,0.0 +15011,21,10,13,0.0 +15011,19,9.2,25,0.0 +15011,22,21,5,0.0 +15011,66,17,7,0.0 +15011,17,39,13,0.0 +15011,34,14,28,0.0 +15011,7,30,50,0.0 +15011,58,13.25,35,0.0 +15011,12,38,7,0.0 +15012,22,21,13,0.0 +15012,34,14,10,0.0 +15012,19,9.2,38,0.0 +15012,4,22,17,0.0 +15012,10,31,46,0.0 +15012,46,12,16,0.0 +15012,51,53,43,0.0 +15012,36,19,39,0.0 +15012,8,40,37,0.0 +15012,20,81,47,0.0 +15012,15,15.5,47,0.0 +15012,38,263.5,9,0.0 +15012,71,21.5,32,0.0 +15012,64,33.25,30,0.0 +15012,62,49.3,1,0.0 +15012,70,15,11,0.0 +15012,7,30,42,0.0 +15012,3,10,42,0.0 +15012,12,38,6,0.0 +15012,63,43.9,2,0.0 +15012,13,6,43,0.0 +15012,42,14,22,0.0 +15012,49,20,23,0.0 +15013,3,10,10,0.0 +15013,33,2.5,42,0.0 +15013,36,19,36,0.0 +15013,63,43.9,16,0.0 +15013,13,6,42,0.0 +15013,57,19.5,46,0.0 +15013,31,12.5,24,0.0 +15013,59,55,10,0.0 +15013,5,21.35,3,0.0 +15013,42,14,16,0.0 +15013,25,14,16,0.0 +15013,74,10,7,0.0 +15013,4,22,38,0.0 +15013,34,14,12,0.0 +15013,37,26,1,0.0 +15013,68,12.5,20,0.0 +15013,21,10,32,0.0 +15013,8,40,7,0.0 +15013,9,97,5,0.0 +15013,32,32,49,0.0 +15013,53,32.8,44,0.0 +15013,14,23.25,18,0.0 +15013,58,13.25,27,0.0 +15013,65,21.05,37,0.0 +15013,45,9.5,2,0.0 +15013,20,81,47,0.0 +15013,50,16.25,45,0.0 +15013,48,12.75,6,0.0 +15013,22,21,1,0.0 +15013,2,19,21,0.0 +15013,43,46,20,0.0 +15013,67,14,8,0.0 +15013,47,9.5,49,0.0 +15013,71,21.5,50,0.0 +15013,72,34.8,8,0.0 +15013,16,17.45,17,0.0 +15013,27,43.9,50,0.0 +15013,26,31.23,11,0.0 +15013,51,53,43,0.0 +15013,76,18,27,0.0 +15013,24,4.5,4,0.0 +15013,10,31,3,0.0 +15013,1,18,50,0.0 +15013,6,25,12,0.0 +15013,40,18.4,17,0.0 +15013,61,28.5,10,0.0 +15013,77,13,34,0.0 +15013,29,123.79,11,0.0 +15013,69,36,26,0.0 +15013,64,33.25,45,0.0 +15013,15,15.5,20,0.0 +15013,30,25.89,17,0.0 +15013,49,20,9,0.0 +15014,35,18,26,0.0 +15014,70,15,22,0.0 +15014,73,15,18,0.0 +15014,58,13.25,7,0.0 +15014,61,28.5,31,0.0 +15014,40,18.4,30,0.0 +15014,5,21.35,46,0.0 +15014,30,25.89,2,0.0 +15014,75,7.75,43,0.0 +15015,33,2.5,30,0.0 +15015,9,97,2,0.0 +15015,6,25,2,0.0 +15015,15,15.5,5,0.0 +15015,42,14,44,0.0 +15015,14,23.25,28,0.0 +15015,29,123.79,28,0.0 +15015,25,14,3,0.0 +15015,44,19.45,38,0.0 +15015,34,14,2,0.0 +15015,11,21,13,0.0 +15015,20,81,5,0.0 +15015,31,12.5,15,0.0 +15015,63,43.9,6,0.0 +15015,23,9,46,0.0 +15015,49,20,27,0.0 +15015,2,19,29,0.0 +15015,62,49.3,19,0.0 +15015,37,26,46,0.0 +15015,4,22,26,0.0 +15015,53,32.8,3,0.0 +15015,10,31,19,0.0 +15015,17,39,11,0.0 +15015,38,263.5,17,0.0 +15015,36,19,36,0.0 +15015,52,7,14,0.0 +15015,47,9.5,29,0.0 +15015,74,10,12,0.0 +15015,32,32,37,0.0 +15015,65,21.05,19,0.0 +15015,69,36,24,0.0 +15015,24,4.5,37,0.0 +15015,39,18,43,0.0 +15015,70,15,39,0.0 +15015,51,53,30,0.0 +15015,35,18,13,0.0 +15015,75,7.75,23,0.0 +15015,72,34.8,47,0.0 +15015,26,31.23,1,0.0 +15015,46,12,6,0.0 +15015,13,6,10,0.0 +15015,40,18.4,28,0.0 +15015,12,38,3,0.0 +15015,50,16.25,41,0.0 +15015,1,18,36,0.0 +15015,41,9.65,11,0.0 +15015,5,21.35,33,0.0 +15015,59,55,10,0.0 +15015,54,7.45,27,0.0 +15015,73,15,6,0.0 +15015,61,28.5,45,0.0 +15015,18,62.5,16,0.0 +15015,16,17.45,13,0.0 +15015,22,21,48,0.0 +15015,57,19.5,40,0.0 +15015,28,45.6,20,0.0 +15015,60,34,21,0.0 +15015,3,10,11,0.0 +15015,77,13,31,0.0 +15015,66,17,26,0.0 +15015,55,24,49,0.0 +15015,45,9.5,45,0.0 +15015,64,33.25,20,0.0 +15016,46,12,41,0.0 +15016,30,25.89,22,0.0 +15016,71,21.5,45,0.0 +15016,62,49.3,3,0.0 +15016,69,36,20,0.0 +15016,54,7.45,17,0.0 +15016,18,62.5,29,0.0 +15016,38,263.5,35,0.0 +15016,47,9.5,9,0.0 +15016,26,31.23,2,0.0 +15016,11,21,5,0.0 +15016,37,26,49,0.0 +15016,23,9,17,0.0 +15016,49,20,31,0.0 +15016,15,15.5,10,0.0 +15016,31,12.5,40,0.0 +15016,35,18,17,0.0 +15016,74,10,37,0.0 +15016,70,15,49,0.0 +15016,29,123.79,27,0.0 +15016,43,46,2,0.0 +15016,73,15,49,0.0 +15016,48,12.75,10,0.0 +15016,13,6,32,0.0 +15016,22,21,38,0.0 +15016,40,18.4,16,0.0 +15016,39,18,16,0.0 +15016,14,23.25,25,0.0 +15016,21,10,11,0.0 +15017,73,15,45,0.0 +15017,38,263.5,33,0.0 +15017,33,2.5,1,0.0 +15017,35,18,43,0.0 +15017,50,16.25,16,0.0 +15017,23,9,20,0.0 +15017,9,97,25,0.0 +15017,39,18,30,0.0 +15017,65,21.05,16,0.0 +15017,70,15,2,0.0 +15017,18,62.5,3,0.0 +15017,60,34,4,0.0 +15017,42,14,1,0.0 +15017,20,81,10,0.0 +15017,19,9.2,30,0.0 +15017,8,40,11,0.0 +15017,3,10,8,0.0 +15017,75,7.75,27,0.0 +15017,31,12.5,26,0.0 +15017,67,14,3,0.0 +15017,7,30,27,0.0 +15017,13,6,35,0.0 +15017,56,38,39,0.0 +15018,13,6,38,0.0 +15018,28,45.6,2,0.0 +15018,61,28.5,26,0.0 +15018,47,9.5,24,0.0 +15018,3,10,2,0.0 +15018,35,18,50,0.0 +15018,73,15,9,0.0 +15018,59,55,20,0.0 +15018,4,22,14,0.0 +15018,75,7.75,6,0.0 +15018,31,12.5,29,0.0 +15018,64,33.25,29,0.0 +15018,37,26,18,0.0 +15018,30,25.89,9,0.0 +15018,63,43.9,1,0.0 +15018,45,9.5,20,0.0 +15018,8,40,21,0.0 +15018,49,20,6,0.0 +15018,70,15,17,0.0 +15018,43,46,1,0.0 +15018,40,18.4,29,0.0 +15018,5,21.35,45,0.0 +15018,25,14,15,0.0 +15018,67,14,33,0.0 +15018,15,15.5,3,0.0 +15018,51,53,7,0.0 +15018,74,10,25,0.0 +15018,6,25,18,0.0 +15018,19,9.2,46,0.0 +15018,2,19,14,0.0 +15018,39,18,9,0.0 +15018,55,24,16,0.0 +15018,69,36,29,0.0 +15018,29,123.79,37,0.0 +15018,26,31.23,46,0.0 +15019,70,15,15,0.0 +15019,4,22,42,0.0 +15019,57,19.5,25,0.0 +15019,13,6,48,0.0 +15019,16,17.45,8,0.0 +15019,3,10,19,0.0 +15019,38,263.5,17,0.0 +15019,11,21,29,0.0 +15019,14,23.25,34,0.0 +15019,33,2.5,4,0.0 +15019,10,31,39,0.0 +15019,73,15,9,0.0 +15019,12,38,44,0.0 +15019,34,14,34,0.0 +15019,18,62.5,9,0.0 +15019,62,49.3,47,0.0 +15019,65,21.05,11,0.0 +15019,54,7.45,40,0.0 +15019,69,36,43,0.0 +15019,51,53,43,0.0 +15019,77,13,14,0.0 +15019,22,21,27,0.0 +15019,75,7.75,39,0.0 +15019,71,21.5,27,0.0 +15019,48,12.75,29,0.0 +15019,55,24,33,0.0 +15019,53,32.8,10,0.0 +15019,41,9.65,17,0.0 +15019,36,19,25,0.0 +15019,26,31.23,7,0.0 +15019,9,97,5,0.0 +15019,52,7,12,0.0 +15019,76,18,42,0.0 +15019,37,26,36,0.0 +15019,25,14,11,0.0 +15019,45,9.5,30,0.0 +15019,66,17,50,0.0 +15019,40,18.4,16,0.0 +15019,72,34.8,14,0.0 +15019,44,19.45,15,0.0 +15019,67,14,29,0.0 +15019,60,34,25,0.0 +15019,35,18,28,0.0 +15019,2,19,12,0.0 +15019,28,45.6,2,0.0 +15019,74,10,14,0.0 +15019,7,30,35,0.0 +15019,27,43.9,9,0.0 +15019,31,12.5,43,0.0 +15019,43,46,16,0.0 +15019,17,39,35,0.0 +15019,63,43.9,15,0.0 +15019,6,25,41,0.0 +15019,19,9.2,12,0.0 +15019,5,21.35,19,0.0 +15019,30,25.89,11,0.0 +15019,15,15.5,45,0.0 +15019,61,28.5,48,0.0 +15019,23,9,38,0.0 +15020,34,14,43,0.0 +15020,30,25.89,21,0.0 +15020,4,22,2,0.0 +15020,1,18,5,0.0 +15020,49,20,25,0.0 +15020,23,9,40,0.0 +15020,54,7.45,45,0.0 +15020,65,21.05,11,0.0 +15020,53,32.8,32,0.0 +15020,15,15.5,34,0.0 +15020,73,15,24,0.0 +15020,8,40,19,0.0 +15020,7,30,37,0.0 +15020,61,28.5,21,0.0 +15020,16,17.45,20,0.0 +15020,44,19.45,5,0.0 +15020,31,12.5,49,0.0 +15020,70,15,8,0.0 +15020,36,19,17,0.0 +15020,63,43.9,40,0.0 +15020,38,263.5,24,0.0 +15020,52,7,11,0.0 +15020,26,31.23,38,0.0 +15020,74,10,42,0.0 +15020,41,9.65,39,0.0 +15020,58,13.25,39,0.0 +15020,22,21,3,0.0 +15020,42,14,43,0.0 +15020,43,46,5,0.0 +15020,39,18,38,0.0 +15020,14,23.25,31,0.0 +15020,57,19.5,15,0.0 +15020,46,12,42,0.0 +15020,35,18,11,0.0 +15020,32,32,10,0.0 +15020,5,21.35,26,0.0 +15020,24,4.5,29,0.0 +15020,25,14,28,0.0 +15020,62,49.3,33,0.0 +15020,9,97,28,0.0 +15020,37,26,49,0.0 +15020,33,2.5,23,0.0 +15020,29,123.79,28,0.0 +15020,68,12.5,30,0.0 +15021,26,31.23,32,0.0 +15021,12,38,6,0.0 +15021,64,33.25,9,0.0 +15021,24,4.5,14,0.0 +15022,71,21.5,12,0.0 +15022,12,38,25,0.0 +15023,66,17,39,0.0 +15023,41,9.65,26,0.0 +15023,67,14,44,0.0 +15023,12,38,18,0.0 +15023,18,62.5,24,0.0 +15023,14,23.25,16,0.0 +15023,4,22,41,0.0 +15023,47,9.5,8,0.0 +15023,57,19.5,27,0.0 +15023,16,17.45,2,0.0 +15023,13,6,50,0.0 +15023,71,21.5,16,0.0 +15023,40,18.4,20,0.0 +15023,3,10,26,0.0 +15023,49,20,1,0.0 +15023,6,25,47,0.0 +15023,46,12,7,0.0 +15023,43,46,25,0.0 +15023,19,9.2,5,0.0 +15023,44,19.45,42,0.0 +15023,27,43.9,18,0.0 +15023,26,31.23,31,0.0 +15023,54,7.45,17,0.0 +15024,54,7.45,29,0.0 +15024,40,18.4,47,0.0 +15024,64,33.25,19,0.0 +15024,26,31.23,35,0.0 +15024,74,10,30,0.0 +15024,31,12.5,12,0.0 +15024,43,46,39,0.0 +15024,63,43.9,30,0.0 +15024,33,2.5,23,0.0 +15024,29,123.79,39,0.0 +15024,9,97,37,0.0 +15024,35,18,33,0.0 +15024,51,53,6,0.0 +15024,18,62.5,37,0.0 +15024,46,12,34,0.0 +15024,25,14,8,0.0 +15024,49,20,9,0.0 +15024,65,21.05,18,0.0 +15024,48,12.75,7,0.0 +15024,53,32.8,18,0.0 +15024,41,9.65,44,0.0 +15024,72,34.8,20,0.0 +15024,45,9.5,2,0.0 +15024,12,38,8,0.0 +15024,19,9.2,5,0.0 +15024,15,15.5,30,0.0 +15024,62,49.3,49,0.0 +15024,73,15,46,0.0 +15024,55,24,5,0.0 +15024,27,43.9,18,0.0 +15024,23,9,25,0.0 +15024,50,16.25,12,0.0 +15024,1,18,37,0.0 +15024,36,19,40,0.0 +15024,37,26,48,0.0 +15024,22,21,41,0.0 +15024,7,30,9,0.0 +15024,13,6,9,0.0 +15024,60,34,27,0.0 +15024,4,22,11,0.0 +15024,6,25,48,0.0 +15024,38,263.5,27,0.0 +15024,8,40,31,0.0 +15024,10,31,18,0.0 +15024,30,25.89,47,0.0 +15024,57,19.5,21,0.0 +15024,32,32,40,0.0 +15024,39,18,31,0.0 +15024,77,13,42,0.0 +15024,17,39,6,0.0 +15024,21,10,20,0.0 +15024,66,17,18,0.0 +15024,44,19.45,32,0.0 +15024,5,21.35,36,0.0 +15024,14,23.25,28,0.0 +15024,16,17.45,20,0.0 +15024,67,14,36,0.0 +15024,68,12.5,24,0.0 +15024,24,4.5,27,0.0 +15024,71,21.5,28,0.0 +15024,28,45.6,38,0.0 +15025,33,2.5,48,0.0 +15025,24,4.5,27,0.0 +15025,11,21,38,0.0 +15025,5,21.35,42,0.0 +15025,60,34,27,0.0 +15025,67,14,26,0.0 +15025,30,25.89,5,0.0 +15025,16,17.45,20,0.0 +15025,57,19.5,28,0.0 +15025,47,9.5,29,0.0 +15025,64,33.25,47,0.0 +15025,20,81,34,0.0 +15025,71,21.5,13,0.0 +15025,3,10,9,0.0 +15025,45,9.5,40,0.0 +15025,7,30,35,0.0 +15025,28,45.6,32,0.0 +15025,37,26,31,0.0 +15025,54,7.45,17,0.0 +15025,53,32.8,43,0.0 +15025,52,7,16,0.0 +15025,66,17,15,0.0 +15025,75,7.75,16,0.0 +15025,21,10,11,0.0 +15025,59,55,45,0.0 +15025,43,46,1,0.0 +15025,2,19,9,0.0 +15025,44,19.45,6,0.0 +15025,17,39,25,0.0 +15025,55,24,22,0.0 +15025,8,40,44,0.0 +15025,63,43.9,34,0.0 +15025,49,20,2,0.0 +15025,41,9.65,18,0.0 +15025,22,21,30,0.0 +15025,34,14,28,0.0 +15025,77,13,31,0.0 +15025,6,25,18,0.0 +15025,19,9.2,18,0.0 +15025,51,53,45,0.0 +15025,42,14,45,0.0 +15025,70,15,21,0.0 +15025,46,12,31,0.0 +15025,65,21.05,37,0.0 +15025,15,15.5,17,0.0 +15025,14,23.25,19,0.0 +15025,13,6,14,0.0 +15025,25,14,20,0.0 +15025,69,36,13,0.0 +15025,27,43.9,23,0.0 +15025,73,15,16,0.0 +15025,12,38,30,0.0 +15025,10,31,11,0.0 +15025,26,31.23,10,0.0 +15025,9,97,5,0.0 +15025,72,34.8,42,0.0 +15025,23,9,16,0.0 +15025,76,18,29,0.0 +15025,68,12.5,31,0.0 +15025,48,12.75,16,0.0 +15025,1,18,7,0.0 +15025,38,263.5,46,0.0 +15025,36,19,14,0.0 +15025,31,12.5,41,0.0 +15026,75,7.75,15,0.0 +15026,28,45.6,25,0.0 +15026,50,16.25,41,0.0 +15026,38,263.5,25,0.0 +15026,1,18,24,0.0 +15026,21,10,26,0.0 +15026,57,19.5,36,0.0 +15026,60,34,10,0.0 +15026,59,55,30,0.0 +15026,68,12.5,38,0.0 +15026,14,23.25,23,0.0 +15026,43,46,23,0.0 +15026,4,22,8,0.0 +15026,70,15,2,0.0 +15026,13,6,27,0.0 +15026,25,14,17,0.0 +15026,47,9.5,46,0.0 +15026,62,49.3,23,0.0 +15026,11,21,25,0.0 +15026,12,38,8,0.0 +15026,7,30,44,0.0 +15026,22,21,24,0.0 +15026,55,24,32,0.0 +15026,40,18.4,32,0.0 +15026,44,19.45,29,0.0 +15026,52,7,7,0.0 +15026,72,34.8,12,0.0 +15026,10,31,29,0.0 +15026,20,81,2,0.0 +15027,17,39,21,0.0 +15027,61,28.5,7,0.0 +15027,16,17.45,23,0.0 +15027,1,18,20,0.0 +15027,45,9.5,4,0.0 +15027,26,31.23,43,0.0 +15027,66,17,46,0.0 +15027,52,7,31,0.0 +15027,50,16.25,46,0.0 +15027,8,40,34,0.0 +15027,77,13,13,0.0 +15027,10,31,2,0.0 +15027,30,25.89,11,0.0 +15027,46,12,26,0.0 +15027,13,6,2,0.0 +15027,59,55,16,0.0 +15027,65,21.05,46,0.0 +15027,22,21,40,0.0 +15027,40,18.4,42,0.0 +15027,74,10,5,0.0 +15027,42,14,1,0.0 +15027,44,19.45,20,0.0 +15027,62,49.3,24,0.0 +15027,39,18,8,0.0 +15027,58,13.25,25,0.0 +15027,47,9.5,29,0.0 +15027,24,4.5,7,0.0 +15027,54,7.45,49,0.0 +15027,56,38,4,0.0 +15027,68,12.5,40,0.0 +15027,34,14,20,0.0 +15027,48,12.75,9,0.0 +15027,28,45.6,15,0.0 +15027,21,10,35,0.0 +15027,32,32,6,0.0 +15027,7,30,37,0.0 +15027,14,23.25,34,0.0 +15027,36,19,24,0.0 +15027,4,22,2,0.0 +15027,51,53,41,0.0 +15027,15,15.5,39,0.0 +15027,29,123.79,47,0.0 +15027,41,9.65,21,0.0 +15027,11,21,14,0.0 +15027,2,19,42,0.0 +15027,38,263.5,23,0.0 +15027,25,14,35,0.0 +15027,3,10,24,0.0 +15027,37,26,36,0.0 +15027,70,15,25,0.0 +15027,18,62.5,2,0.0 +15027,57,19.5,9,0.0 +15027,33,2.5,42,0.0 +15027,73,15,12,0.0 +15027,75,7.75,1,0.0 +15027,67,14,23,0.0 +15027,53,32.8,1,0.0 +15027,64,33.25,17,0.0 +15027,23,9,30,0.0 +15028,25,14,36,0.0 +15028,66,17,33,0.0 +15028,75,7.75,24,0.0 +15028,11,21,40,0.0 +15028,42,14,45,0.0 +15028,29,123.79,8,0.0 +15028,27,43.9,18,0.0 +15028,67,14,5,0.0 +15028,43,46,3,0.0 +15028,69,36,24,0.0 +15028,31,12.5,47,0.0 +15028,5,21.35,31,0.0 +15028,6,25,35,0.0 +15028,18,62.5,42,0.0 +15028,24,4.5,1,0.0 +15028,45,9.5,37,0.0 +15028,70,15,29,0.0 +15028,46,12,49,0.0 +15028,49,20,28,0.0 +15028,38,263.5,16,0.0 +15028,35,18,43,0.0 +15028,15,15.5,33,0.0 +15029,26,31.23,48,0.0 +15029,58,13.25,20,0.0 +15029,54,7.45,39,0.0 +15029,2,19,37,0.0 +15029,65,21.05,5,0.0 +15029,7,30,26,0.0 +15029,10,31,13,0.0 +15029,70,15,43,0.0 +15029,69,36,29,0.0 +15029,49,20,48,0.0 +15029,31,12.5,27,0.0 +15029,41,9.65,49,0.0 +15029,28,45.6,5,0.0 +15029,73,15,43,0.0 +15029,17,39,16,0.0 +15029,50,16.25,30,0.0 +15029,5,21.35,33,0.0 +15029,42,14,2,0.0 +15029,63,43.9,4,0.0 +15029,47,9.5,13,0.0 +15029,55,24,39,0.0 +15029,37,26,6,0.0 +15029,48,12.75,39,0.0 +15029,68,12.5,7,0.0 +15029,14,23.25,13,0.0 +15029,36,19,21,0.0 +15029,53,32.8,7,0.0 +15029,60,34,25,0.0 +15029,38,263.5,25,0.0 +15029,44,19.45,14,0.0 +15029,21,10,14,0.0 +15029,77,13,40,0.0 +15029,23,9,12,0.0 +15029,13,6,46,0.0 +15029,3,10,36,0.0 +15029,16,17.45,2,0.0 +15029,24,4.5,38,0.0 +15029,59,55,34,0.0 +15029,19,9.2,23,0.0 +15029,75,7.75,44,0.0 +15029,72,34.8,37,0.0 +15029,25,14,50,0.0 +15029,43,46,20,0.0 +15029,33,2.5,12,0.0 +15029,52,7,16,0.0 +15029,66,17,16,0.0 +15029,62,49.3,22,0.0 +15029,32,32,19,0.0 +15029,64,33.25,36,0.0 +15029,57,19.5,33,0.0 +15029,56,38,12,0.0 +15029,71,21.5,3,0.0 +15029,30,25.89,34,0.0 +15029,46,12,35,0.0 +15029,35,18,46,0.0 +15029,20,81,31,0.0 +15029,40,18.4,45,0.0 +15029,22,21,40,0.0 +15029,61,28.5,25,0.0 +15029,67,14,23,0.0 +15029,74,10,45,0.0 +15029,8,40,30,0.0 +15029,4,22,6,0.0 +15029,6,25,6,0.0 +15029,27,43.9,32,0.0 +15029,11,21,26,0.0 +15029,18,62.5,19,0.0 +15029,9,97,40,0.0 +15029,39,18,15,0.0 +15029,12,38,42,0.0 +15029,29,123.79,32,0.0 +15029,45,9.5,48,0.0 +15029,15,15.5,15,0.0 +15029,51,53,15,0.0 +15030,30,25.89,6,0.0 +15030,41,9.65,22,0.0 +15030,8,40,10,0.0 +15030,50,16.25,38,0.0 +15030,9,97,35,0.0 +15030,4,22,25,0.0 +15030,29,123.79,44,0.0 +15030,49,20,1,0.0 +15030,12,38,48,0.0 +15030,65,21.05,11,0.0 +15030,15,15.5,48,0.0 +15030,73,15,43,0.0 +15030,64,33.25,37,0.0 +15030,69,36,22,0.0 +15030,34,14,3,0.0 +15030,39,18,3,0.0 +15030,75,7.75,36,0.0 +15030,61,28.5,4,0.0 +15030,7,30,31,0.0 +15030,77,13,12,0.0 +15030,55,24,32,0.0 +15030,3,10,4,0.0 +15030,14,23.25,12,0.0 +15030,10,31,14,0.0 +15030,38,263.5,1,0.0 +15030,46,12,28,0.0 +15030,23,9,19,0.0 +15030,40,18.4,28,0.0 +15030,22,21,19,0.0 +15030,74,10,14,0.0 +15030,27,43.9,9,0.0 +15030,26,31.23,18,0.0 +15030,13,6,7,0.0 +15030,42,14,48,0.0 +15030,5,21.35,43,0.0 +15030,25,14,21,0.0 +15030,21,10,17,0.0 +15030,76,18,25,0.0 +15030,58,13.25,25,0.0 +15030,2,19,29,0.0 +15030,6,25,4,0.0 +15030,11,21,48,0.0 +15030,48,12.75,39,0.0 +15030,35,18,23,0.0 +15030,16,17.45,8,0.0 +15030,68,12.5,3,0.0 +15030,51,53,48,0.0 +15030,59,55,16,0.0 +15030,1,18,1,0.0 +15030,57,19.5,14,0.0 +15030,17,39,24,0.0 +15030,63,43.9,11,0.0 +15030,28,45.6,16,0.0 +15030,45,9.5,20,0.0 +15030,60,34,34,0.0 +15030,32,32,2,0.0 +15030,52,7,36,0.0 +15030,20,81,31,0.0 +15031,5,21.35,28,0.0 +15031,16,17.45,2,0.0 +15031,51,53,23,0.0 +15031,38,263.5,13,0.0 +15031,3,10,22,0.0 +15031,12,38,18,0.0 +15031,21,10,29,0.0 +15031,49,20,23,0.0 +15031,54,7.45,37,0.0 +15031,60,34,9,0.0 +15031,64,33.25,30,0.0 +15031,26,31.23,15,0.0 +15031,33,2.5,5,0.0 +15031,22,21,15,0.0 +15031,13,6,4,0.0 +15031,57,19.5,17,0.0 +15031,14,23.25,13,0.0 +15031,41,9.65,26,0.0 +15031,40,18.4,18,0.0 +15031,23,9,39,0.0 +15031,34,14,49,0.0 +15031,50,16.25,15,0.0 +15031,19,9.2,30,0.0 +15032,19,9.2,47,0.0 +15032,34,14,5,0.0 +15032,39,18,38,0.0 +15032,23,9,1,0.0 +15032,76,18,42,0.0 +15032,75,7.75,7,0.0 +15032,21,10,38,0.0 +15032,73,15,16,0.0 +15032,62,49.3,23,0.0 +15032,61,28.5,25,0.0 +15032,33,2.5,7,0.0 +15032,4,22,14,0.0 +15032,45,9.5,47,0.0 +15032,2,19,25,0.0 +15032,27,43.9,14,0.0 +15032,1,18,34,0.0 +15032,65,21.05,5,0.0 +15032,47,9.5,42,0.0 +15032,74,10,41,0.0 +15032,29,123.79,35,0.0 +15032,60,34,8,0.0 +15032,31,12.5,49,0.0 +15032,18,62.5,17,0.0 +15032,71,21.5,30,0.0 +15032,57,19.5,24,0.0 +15032,59,55,35,0.0 +15032,58,13.25,32,0.0 +15032,22,21,28,0.0 +15032,15,15.5,25,0.0 +15032,48,12.75,44,0.0 +15032,37,26,44,0.0 +15032,50,16.25,3,0.0 +15032,26,31.23,18,0.0 +15032,56,38,46,0.0 +15032,6,25,31,0.0 +15032,11,21,2,0.0 +15032,52,7,46,0.0 +15032,64,33.25,17,0.0 +15032,13,6,25,0.0 +15032,8,40,25,0.0 +15032,10,31,30,0.0 +15032,51,53,30,0.0 +15032,72,34.8,35,0.0 +15032,17,39,18,0.0 +15032,63,43.9,14,0.0 +15032,28,45.6,10,0.0 +15032,44,19.45,27,0.0 +15032,12,38,18,0.0 +15032,24,4.5,12,0.0 +15032,43,46,14,0.0 +15032,5,21.35,29,0.0 +15032,36,19,48,0.0 +15032,66,17,23,0.0 +15032,46,12,26,0.0 +15032,7,30,21,0.0 +15032,40,18.4,48,0.0 +15032,20,81,49,0.0 +15032,38,263.5,29,0.0 +15032,67,14,25,0.0 +15032,32,32,45,0.0 +15032,35,18,19,0.0 +15032,42,14,36,0.0 +15032,3,10,32,0.0 +15032,68,12.5,20,0.0 +15032,30,25.89,14,0.0 +15032,55,24,41,0.0 +15033,70,15,14,0.0 +15033,36,19,46,0.0 +15033,7,30,22,0.0 +15033,75,7.75,2,0.0 +15033,64,33.25,9,0.0 +15033,13,6,12,0.0 +15033,27,43.9,38,0.0 +15033,69,36,19,0.0 +15033,45,9.5,23,0.0 +15033,50,16.25,37,0.0 +15033,34,14,19,0.0 +15033,37,26,42,0.0 +15033,46,12,4,0.0 +15034,34,14,43,0.0 +15034,5,21.35,33,0.0 +15034,61,28.5,44,0.0 +15034,63,43.9,2,0.0 +15034,48,12.75,24,0.0 +15034,70,15,8,0.0 +15034,38,263.5,29,0.0 +15034,42,14,19,0.0 +15034,22,21,44,0.0 +15034,12,38,23,0.0 +15034,67,14,12,0.0 +15034,9,97,36,0.0 +15034,56,38,2,0.0 +15034,65,21.05,41,0.0 +15034,72,34.8,13,0.0 +15034,66,17,26,0.0 +15034,54,7.45,40,0.0 +15034,3,10,3,0.0 +15034,40,18.4,2,0.0 +15034,23,9,31,0.0 +15034,11,21,23,0.0 +15034,13,6,34,0.0 +15034,62,49.3,4,0.0 +15034,37,26,33,0.0 +15034,55,24,21,0.0 +15034,24,4.5,23,0.0 +15034,77,13,40,0.0 +15034,44,19.45,48,0.0 +15034,7,30,12,0.0 +15034,50,16.25,11,0.0 +15034,10,31,5,0.0 +15034,60,34,6,0.0 +15034,52,7,23,0.0 +15034,51,53,44,0.0 +15034,71,21.5,20,0.0 +15034,6,25,50,0.0 +15034,43,46,3,0.0 +15034,35,18,5,0.0 +15034,64,33.25,29,0.0 +15034,26,31.23,48,0.0 +15034,33,2.5,46,0.0 +15034,27,43.9,14,0.0 +15034,1,18,19,0.0 +15034,8,40,13,0.0 +15034,58,13.25,36,0.0 +15034,76,18,28,0.0 +15034,21,10,9,0.0 +15034,74,10,45,0.0 +15034,36,19,7,0.0 +15034,45,9.5,16,0.0 +15034,2,19,7,0.0 +15034,39,18,17,0.0 +15034,46,12,14,0.0 +15034,30,25.89,49,0.0 +15034,31,12.5,46,0.0 +15034,68,12.5,24,0.0 +15034,49,20,19,0.0 +15034,69,36,31,0.0 +15034,32,32,46,0.0 +15034,73,15,8,0.0 +15034,20,81,26,0.0 +15034,18,62.5,21,0.0 +15034,16,17.45,41,0.0 +15034,53,32.8,16,0.0 +15034,17,39,35,0.0 +15034,14,23.25,35,0.0 +15034,75,7.75,44,0.0 +15034,47,9.5,14,0.0 +15034,19,9.2,23,0.0 +15034,28,45.6,48,0.0 +15034,4,22,23,0.0 +15034,29,123.79,35,0.0 +15034,41,9.65,8,0.0 +15034,59,55,42,0.0 +15034,57,19.5,46,0.0 +15034,25,14,2,0.0 +15034,15,15.5,17,0.0 +15035,61,28.5,1,0.0 +15035,34,14,27,0.0 +15035,19,9.2,4,0.0 +15035,12,38,36,0.0 +15035,27,43.9,5,0.0 +15035,66,17,8,0.0 +15035,44,19.45,19,0.0 +15035,68,12.5,12,0.0 +15035,71,21.5,28,0.0 +15035,53,32.8,6,0.0 +15035,23,9,34,0.0 +15035,58,13.25,41,0.0 +15035,18,62.5,8,0.0 +15035,28,45.6,23,0.0 +15035,46,12,42,0.0 +15035,56,38,36,0.0 +15035,10,31,14,0.0 +15035,30,25.89,7,0.0 +15035,50,16.25,41,0.0 +15035,72,34.8,27,0.0 +15035,76,18,42,0.0 +15035,15,15.5,50,0.0 +15035,20,81,15,0.0 +15035,74,10,44,0.0 +15035,7,30,20,0.0 +15036,7,30,45,0.0 +15036,58,13.25,13,0.0 +15036,28,45.6,26,0.0 +15036,56,38,47,0.0 +15036,36,19,7,0.0 +15036,73,15,44,0.0 +15036,2,19,15,0.0 +15036,18,62.5,22,0.0 +15036,23,9,29,0.0 +15036,62,49.3,35,0.0 +15036,41,9.65,33,0.0 +15036,55,24,50,0.0 +15036,11,21,44,0.0 +15036,20,81,40,0.0 +15036,15,15.5,6,0.0 +15037,41,9.65,35,0.0 +15037,77,13,35,0.0 +15037,46,12,33,0.0 +15037,76,18,22,0.0 +15037,26,31.23,33,0.0 +15037,72,34.8,11,0.0 +15037,50,16.25,42,0.0 +15037,27,43.9,17,0.0 +15037,69,36,1,0.0 +15037,9,97,26,0.0 +15037,73,15,26,0.0 +15037,57,19.5,19,0.0 +15037,4,22,3,0.0 +15037,70,15,45,0.0 +15037,1,18,29,0.0 +15038,34,14,14,0.0 +15038,56,38,14,0.0 +15038,52,7,20,0.0 +15038,49,20,41,0.0 +15038,55,24,12,0.0 +15038,2,19,48,0.0 +15038,6,25,1,0.0 +15038,8,40,18,0.0 +15038,9,97,32,0.0 +15038,50,16.25,38,0.0 +15038,46,12,15,0.0 +15038,47,9.5,35,0.0 +15038,32,32,50,0.0 +15038,14,23.25,49,0.0 +15038,23,9,42,0.0 +15038,28,45.6,6,0.0 +15038,12,38,36,0.0 +15038,19,9.2,43,0.0 +15038,54,7.45,16,0.0 +15038,65,21.05,5,0.0 +15038,7,30,23,0.0 +15038,53,32.8,20,0.0 +15038,70,15,1,0.0 +15038,27,43.9,24,0.0 +15038,76,18,10,0.0 +15038,1,18,23,0.0 +15038,35,18,34,0.0 +15038,71,21.5,45,0.0 +15038,16,17.45,11,0.0 +15038,74,10,40,0.0 +15038,40,18.4,41,0.0 +15038,66,17,50,0.0 +15038,75,7.75,25,0.0 +15038,24,4.5,48,0.0 +15038,62,49.3,37,0.0 +15038,64,33.25,27,0.0 +15038,36,19,23,0.0 +15038,51,53,35,0.0 +15038,48,12.75,19,0.0 +15038,25,14,48,0.0 +15038,43,46,12,0.0 +15038,60,34,33,0.0 +15038,38,263.5,8,0.0 +15038,37,26,20,0.0 +15038,72,34.8,24,0.0 +15038,10,31,12,0.0 +15038,11,21,6,0.0 +15038,3,10,41,0.0 +15038,5,21.35,42,0.0 +15038,4,22,17,0.0 +15038,67,14,36,0.0 +15038,31,12.5,12,0.0 +15038,41,9.65,6,0.0 +15038,45,9.5,6,0.0 +15038,69,36,17,0.0 +15038,77,13,36,0.0 +15038,33,2.5,4,0.0 +15038,61,28.5,42,0.0 +15038,39,18,45,0.0 +15038,44,19.45,2,0.0 +15038,73,15,3,0.0 +15038,20,81,44,0.0 +15038,29,123.79,8,0.0 +15038,13,6,44,0.0 +15038,26,31.23,39,0.0 +15038,22,21,14,0.0 +15038,42,14,25,0.0 +15038,30,25.89,25,0.0 +15038,17,39,31,0.0 +15039,48,12.75,34,0.0 +15039,11,21,17,0.0 +15039,69,36,10,0.0 +15039,73,15,37,0.0 +15039,18,62.5,42,0.0 +15039,75,7.75,47,0.0 +15039,3,10,45,0.0 +15039,22,21,48,0.0 +15039,6,25,17,0.0 +15039,77,13,33,0.0 +15039,64,33.25,38,0.0 +15039,1,18,11,0.0 +15039,58,13.25,33,0.0 +15039,12,38,19,0.0 +15039,52,7,43,0.0 +15039,28,45.6,48,0.0 +15039,60,34,5,0.0 +15039,2,19,10,0.0 +15039,13,6,16,0.0 +15039,17,39,16,0.0 +15039,49,20,29,0.0 +15039,67,14,12,0.0 +15039,45,9.5,46,0.0 +15039,54,7.45,4,0.0 +15039,42,14,27,0.0 +15039,31,12.5,4,0.0 +15039,8,40,7,0.0 +15039,53,32.8,43,0.0 +15039,55,24,12,0.0 +15039,40,18.4,38,0.0 +15039,5,21.35,22,0.0 +15039,34,14,28,0.0 +15039,25,14,50,0.0 +15039,44,19.45,33,0.0 +15039,4,22,2,0.0 +15039,24,4.5,7,0.0 +15039,35,18,27,0.0 +15039,76,18,45,0.0 +15039,61,28.5,21,0.0 +15039,43,46,10,0.0 +15039,47,9.5,50,0.0 +15040,43,46,13,0.0 +15040,57,19.5,10,0.0 +15040,54,7.45,18,0.0 +15040,60,34,50,0.0 +15040,66,17,38,0.0 +15040,51,53,25,0.0 +15040,47,9.5,3,0.0 +15040,62,49.3,8,0.0 +15040,19,9.2,35,0.0 +15040,12,38,34,0.0 +15040,45,9.5,21,0.0 +15040,20,81,14,0.0 +15040,69,36,30,0.0 +15040,75,7.75,16,0.0 +15040,31,12.5,43,0.0 +15040,7,30,18,0.0 +15040,30,25.89,43,0.0 +15040,64,33.25,48,0.0 +15040,37,26,11,0.0 +15040,56,38,5,0.0 +15040,68,12.5,7,0.0 +15040,53,32.8,7,0.0 +15040,59,55,20,0.0 +15040,21,10,27,0.0 +15040,41,9.65,33,0.0 +15040,6,25,8,0.0 +15040,25,14,22,0.0 +15040,17,39,18,0.0 +15040,5,21.35,22,0.0 +15040,44,19.45,38,0.0 +15040,4,22,28,0.0 +15040,50,16.25,28,0.0 +15040,15,15.5,18,0.0 +15040,16,17.45,22,0.0 +15040,9,97,17,0.0 +15040,32,32,41,0.0 +15040,38,263.5,42,0.0 +15040,58,13.25,7,0.0 +15040,10,31,6,0.0 +15041,12,38,2,0.0 +15041,33,2.5,23,0.0 +15041,73,15,3,0.0 +15041,77,13,41,0.0 +15041,49,20,18,0.0 +15041,76,18,45,0.0 +15041,69,36,49,0.0 +15041,31,12.5,13,0.0 +15041,20,81,30,0.0 +15041,57,19.5,20,0.0 +15041,10,31,30,0.0 +15041,19,9.2,44,0.0 +15041,26,31.23,44,0.0 +15041,35,18,25,0.0 +15041,47,9.5,25,0.0 +15041,29,123.79,19,0.0 +15041,51,53,10,0.0 +15041,3,10,16,0.0 +15041,59,55,3,0.0 +15041,1,18,5,0.0 +15041,39,18,47,0.0 +15041,24,4.5,4,0.0 +15041,25,14,47,0.0 +15041,18,62.5,7,0.0 +15041,62,49.3,25,0.0 +15041,52,7,31,0.0 +15041,61,28.5,42,0.0 +15041,2,19,18,0.0 +15041,32,32,30,0.0 +15041,28,45.6,23,0.0 +15041,5,21.35,7,0.0 +15041,22,21,39,0.0 +15041,37,26,21,0.0 +15041,64,33.25,13,0.0 +15041,34,14,10,0.0 +15041,6,25,2,0.0 +15041,13,6,46,0.0 +15041,65,21.05,7,0.0 +15041,58,13.25,43,0.0 +15041,27,43.9,39,0.0 +15042,76,18,6,0.0 +15042,44,19.45,49,0.0 +15042,64,33.25,33,0.0 +15042,22,21,11,0.0 +15042,45,9.5,26,0.0 +15042,34,14,38,0.0 +15042,10,31,35,0.0 +15042,2,19,12,0.0 +15042,75,7.75,29,0.0 +15042,66,17,10,0.0 +15042,38,263.5,5,0.0 +15042,51,53,14,0.0 +15042,65,21.05,4,0.0 +15042,30,25.89,5,0.0 +15042,59,55,6,0.0 +15042,25,14,42,0.0 +15042,57,19.5,1,0.0 +15042,54,7.45,43,0.0 +15043,65,21.05,47,0.0 +15043,32,32,5,0.0 +15043,36,19,39,0.0 +15043,64,33.25,26,0.0 +15043,9,97,30,0.0 +15043,55,24,7,0.0 +15043,51,53,42,0.0 +15043,76,18,13,0.0 +15043,68,12.5,23,0.0 +15043,40,18.4,11,0.0 +15043,15,15.5,35,0.0 +15043,77,13,19,0.0 +15043,58,13.25,32,0.0 +15043,30,25.89,16,0.0 +15043,12,38,13,0.0 +15043,39,18,24,0.0 +15043,8,40,14,0.0 +15043,45,9.5,1,0.0 +15043,38,263.5,12,0.0 +15043,73,15,49,0.0 +15043,43,46,41,0.0 +15043,50,16.25,5,0.0 +15043,14,23.25,8,0.0 +15043,10,31,13,0.0 +15043,52,7,5,0.0 +15043,28,45.6,46,0.0 +15043,44,19.45,11,0.0 +15043,31,12.5,16,0.0 +15043,25,14,27,0.0 +15043,5,21.35,40,0.0 +15043,11,21,5,0.0 +15043,54,7.45,30,0.0 +15043,26,31.23,35,0.0 +15043,59,55,41,0.0 +15043,49,20,31,0.0 +15043,18,62.5,50,0.0 +15043,71,21.5,40,0.0 +15043,29,123.79,20,0.0 +15043,53,32.8,7,0.0 +15043,60,34,17,0.0 +15043,34,14,35,0.0 +15043,72,34.8,13,0.0 +15043,62,49.3,2,0.0 +15043,57,19.5,40,0.0 +15043,1,18,1,0.0 +15043,7,30,40,0.0 +15043,67,14,43,0.0 +15043,69,36,36,0.0 +15043,22,21,13,0.0 +15043,61,28.5,29,0.0 +15043,17,39,5,0.0 +15043,46,12,10,0.0 +15043,13,6,36,0.0 +15043,56,38,30,0.0 +15043,63,43.9,37,0.0 +15043,20,81,40,0.0 +15043,41,9.65,49,0.0 +15043,19,9.2,44,0.0 +15043,3,10,33,0.0 +15043,70,15,25,0.0 +15043,75,7.75,46,0.0 +15043,33,2.5,42,0.0 +15043,24,4.5,41,0.0 +15043,74,10,6,0.0 +15043,48,12.75,10,0.0 +15043,27,43.9,10,0.0 +15043,21,10,36,0.0 +15043,35,18,6,0.0 +15043,4,22,4,0.0 +15043,37,26,40,0.0 +15043,6,25,5,0.0 +15043,2,19,25,0.0 +15043,42,14,47,0.0 +15043,47,9.5,15,0.0 +15043,23,9,14,0.0 +15043,66,17,17,0.0 +15044,27,43.9,10,0.0 +15044,61,28.5,19,0.0 +15044,67,14,2,0.0 +15044,28,45.6,20,0.0 +15044,48,12.75,28,0.0 +15044,54,7.45,13,0.0 +15044,17,39,40,0.0 +15044,77,13,5,0.0 +15044,68,12.5,47,0.0 +15044,30,25.89,50,0.0 +15044,1,18,28,0.0 +15044,65,21.05,22,0.0 +15044,35,18,34,0.0 +15044,16,17.45,6,0.0 +15044,9,97,31,0.0 +15044,55,24,39,0.0 +15044,66,17,42,0.0 +15044,36,19,27,0.0 +15044,59,55,43,0.0 +15044,41,9.65,48,0.0 +15044,42,14,2,0.0 +15045,58,13.25,25,0.0 +15045,26,31.23,8,0.0 +15045,7,30,23,0.0 +15045,70,15,14,0.0 +15045,73,15,31,0.0 +15045,54,7.45,4,0.0 +15045,9,97,44,0.0 +15045,33,2.5,25,0.0 +15045,11,21,38,0.0 +15045,6,25,8,0.0 +15045,48,12.75,17,0.0 +15045,36,19,42,0.0 +15045,24,4.5,35,0.0 +15045,50,16.25,4,0.0 +15045,47,9.5,41,0.0 +15045,29,123.79,37,0.0 +15045,31,12.5,36,0.0 +15045,21,10,37,0.0 +15045,18,62.5,39,0.0 +15045,53,32.8,3,0.0 +15045,52,7,46,0.0 +15045,46,12,41,0.0 +15045,45,9.5,30,0.0 +15045,49,20,36,0.0 +15045,12,38,38,0.0 +15045,74,10,44,0.0 +15046,73,15,6,0.0 +15046,56,38,14,0.0 +15046,19,9.2,19,0.0 +15046,40,18.4,24,0.0 +15046,43,46,14,0.0 +15046,70,15,2,0.0 +15046,66,17,29,0.0 +15046,55,24,25,0.0 +15046,34,14,19,0.0 +15046,18,62.5,15,0.0 +15046,4,22,17,0.0 +15046,51,53,46,0.0 +15046,52,7,12,0.0 +15046,31,12.5,36,0.0 +15046,67,14,38,0.0 +15046,45,9.5,40,0.0 +15046,72,34.8,9,0.0 +15046,15,15.5,11,0.0 +15046,57,19.5,23,0.0 +15046,39,18,33,0.0 +15046,17,39,45,0.0 +15046,1,18,14,0.0 +15046,14,23.25,34,0.0 +15046,44,19.45,19,0.0 +15046,25,14,12,0.0 +15046,9,97,4,0.0 +15046,41,9.65,40,0.0 +15046,35,18,25,0.0 +15046,53,32.8,38,0.0 +15046,69,36,24,0.0 +15046,62,49.3,1,0.0 +15046,76,18,48,0.0 +15046,60,34,34,0.0 +15046,65,21.05,16,0.0 +15046,12,38,36,0.0 +15046,27,43.9,3,0.0 +15047,76,18,18,0.0 +15047,22,21,15,0.0 +15047,59,55,26,0.0 +15047,2,19,23,0.0 +15047,57,19.5,8,0.0 +15047,12,38,36,0.0 +15048,77,13,49,0.0 +15048,49,20,10,0.0 +15048,40,18.4,20,0.0 +15048,17,39,38,0.0 +15048,58,13.25,10,0.0 +15048,10,31,7,0.0 +15048,69,36,10,0.0 +15048,2,19,6,0.0 +15048,27,43.9,18,0.0 +15048,33,2.5,6,0.0 +15048,26,31.23,41,0.0 +15048,7,30,12,0.0 +15048,15,15.5,32,0.0 +15048,14,23.25,48,0.0 +15048,43,46,19,0.0 +15048,74,10,16,0.0 +15048,24,4.5,1,0.0 +15048,18,62.5,1,0.0 +15048,51,53,4,0.0 +15048,75,7.75,45,0.0 +15048,20,81,8,0.0 +15048,3,10,23,0.0 +15048,57,19.5,44,0.0 +15048,28,45.6,22,0.0 +15048,67,14,37,0.0 +15048,34,14,40,0.0 +15048,29,123.79,10,0.0 +15048,55,24,43,0.0 +15048,4,22,11,0.0 +15048,39,18,22,0.0 +15048,52,7,28,0.0 +15048,19,9.2,15,0.0 +15048,8,40,33,0.0 +15048,50,16.25,8,0.0 +15048,22,21,2,0.0 +15048,45,9.5,11,0.0 +15048,23,9,20,0.0 +15048,62,49.3,42,0.0 +15048,76,18,21,0.0 +15048,13,6,37,0.0 +15048,73,15,23,0.0 +15048,60,34,17,0.0 +15048,9,97,29,0.0 +15048,53,32.8,46,0.0 +15048,12,38,40,0.0 +15048,72,34.8,34,0.0 +15049,65,21.05,41,0.0 +15049,72,34.8,47,0.0 +15049,8,40,29,0.0 +15049,33,2.5,47,0.0 +15049,48,12.75,34,0.0 +15049,38,263.5,21,0.0 +15049,27,43.9,19,0.0 +15049,39,18,50,0.0 +15049,34,14,23,0.0 +15049,4,22,29,0.0 +15049,26,31.23,15,0.0 +15049,25,14,41,0.0 +15049,1,18,12,0.0 +15049,57,19.5,24,0.0 +15049,50,16.25,6,0.0 +15049,46,12,11,0.0 +15049,17,39,46,0.0 +15049,63,43.9,31,0.0 +15049,41,9.65,45,0.0 +15049,21,10,14,0.0 +15049,5,21.35,5,0.0 +15049,18,62.5,37,0.0 +15049,56,38,9,0.0 +15049,40,18.4,22,0.0 +15049,66,17,50,0.0 +15049,74,10,17,0.0 +15049,3,10,5,0.0 +15049,44,19.45,41,0.0 +15049,13,6,30,0.0 +15049,58,13.25,6,0.0 +15049,24,4.5,11,0.0 +15049,2,19,1,0.0 +15049,68,12.5,34,0.0 +15049,32,32,48,0.0 +15049,77,13,3,0.0 +15049,7,30,2,0.0 +15049,29,123.79,6,0.0 +15049,69,36,22,0.0 +15049,15,15.5,28,0.0 +15049,59,55,48,0.0 +15049,30,25.89,29,0.0 +15049,9,97,1,0.0 +15049,43,46,41,0.0 +15049,49,20,7,0.0 +15049,51,53,19,0.0 +15050,19,9.2,25,0.0 +15050,68,12.5,31,0.0 +15050,22,21,3,0.0 +15050,64,33.25,6,0.0 +15050,32,32,21,0.0 +15050,23,9,34,0.0 +15050,20,81,24,0.0 +15050,24,4.5,16,0.0 +15050,52,7,23,0.0 +15050,37,26,34,0.0 +15050,60,34,21,0.0 +15050,36,19,1,0.0 +15050,25,14,26,0.0 +15050,11,21,40,0.0 +15050,34,14,12,0.0 +15050,8,40,8,0.0 +15050,76,18,31,0.0 +15050,57,19.5,26,0.0 +15050,10,31,8,0.0 +15050,66,17,26,0.0 +15050,15,15.5,33,0.0 +15050,21,10,33,0.0 +15050,29,123.79,15,0.0 +15050,35,18,35,0.0 +15050,38,263.5,12,0.0 +15050,75,7.75,49,0.0 +15050,7,30,50,0.0 +15050,17,39,34,0.0 +15050,30,25.89,35,0.0 +15050,45,9.5,46,0.0 +15050,69,36,15,0.0 +15050,47,9.5,5,0.0 +15050,27,43.9,35,0.0 +15050,3,10,42,0.0 +15050,18,62.5,40,0.0 +15050,1,18,26,0.0 +15050,31,12.5,39,0.0 +15050,61,28.5,18,0.0 +15050,58,13.25,24,0.0 +15050,59,55,38,0.0 +15050,49,20,22,0.0 +15050,6,25,40,0.0 +15050,74,10,22,0.0 +15050,63,43.9,46,0.0 +15050,33,2.5,48,0.0 +15050,67,14,26,0.0 +15050,43,46,9,0.0 +15050,9,97,41,0.0 +15050,13,6,35,0.0 +15050,77,13,44,0.0 +15050,55,24,3,0.0 +15050,44,19.45,21,0.0 +15051,21,10,8,0.0 +15051,13,6,24,0.0 +15051,52,7,3,0.0 +15051,9,97,36,0.0 +15051,15,15.5,25,0.0 +15052,32,32,19,0.0 +15052,47,9.5,30,0.0 +15052,36,19,37,0.0 +15052,7,30,25,0.0 +15052,75,7.75,21,0.0 +15052,72,34.8,25,0.0 +15052,13,6,4,0.0 +15052,37,26,37,0.0 +15052,62,49.3,18,0.0 +15052,73,15,47,0.0 +15052,66,17,9,0.0 +15052,70,15,25,0.0 +15052,63,43.9,2,0.0 +15052,31,12.5,47,0.0 +15052,17,39,15,0.0 +15052,44,19.45,15,0.0 +15052,33,2.5,13,0.0 +15052,16,17.45,13,0.0 +15052,2,19,49,0.0 +15052,54,7.45,45,0.0 +15052,45,9.5,24,0.0 +15052,29,123.79,18,0.0 +15052,52,7,48,0.0 +15052,24,4.5,38,0.0 +15052,28,45.6,48,0.0 +15052,38,263.5,8,0.0 +15053,4,22,19,0.0 +15053,55,24,17,0.0 +15053,68,12.5,18,0.0 +15053,47,9.5,45,0.0 +15053,26,31.23,37,0.0 +15053,57,19.5,45,0.0 +15053,7,30,6,0.0 +15053,50,16.25,4,0.0 +15053,14,23.25,48,0.0 +15053,22,21,5,0.0 +15053,44,19.45,47,0.0 +15053,72,34.8,22,0.0 +15053,21,10,40,0.0 +15053,11,21,6,0.0 +15053,71,21.5,10,0.0 +15053,23,9,40,0.0 +15053,28,45.6,25,0.0 +15053,43,46,1,0.0 +15053,18,62.5,42,0.0 +15053,29,123.79,32,0.0 +15053,42,14,46,0.0 +15053,1,18,8,0.0 +15053,49,20,29,0.0 +15053,45,9.5,3,0.0 +15053,35,18,32,0.0 +15053,32,32,38,0.0 +15053,3,10,23,0.0 +15053,70,15,14,0.0 +15053,48,12.75,28,0.0 +15053,9,97,46,0.0 +15053,66,17,15,0.0 +15053,37,26,38,0.0 +15053,58,13.25,38,0.0 +15054,41,9.65,10,0.0 +15054,55,24,38,0.0 +15054,1,18,39,0.0 +15054,60,34,25,0.0 +15054,17,39,44,0.0 +15054,71,21.5,9,0.0 +15054,23,9,38,0.0 +15054,20,81,14,0.0 +15054,43,46,19,0.0 +15054,30,25.89,38,0.0 +15054,76,18,10,0.0 +15054,37,26,7,0.0 +15054,64,33.25,9,0.0 +15054,68,12.5,42,0.0 +15054,3,10,47,0.0 +15054,38,263.5,4,0.0 +15054,13,6,23,0.0 +15054,69,36,36,0.0 +15054,10,31,12,0.0 +15054,25,14,5,0.0 +15054,35,18,35,0.0 +15054,51,53,24,0.0 +15054,26,31.23,11,0.0 +15054,67,14,6,0.0 +15054,42,14,39,0.0 +15055,67,14,1,0.0 +15055,62,49.3,14,0.0 +15055,49,20,14,0.0 +15055,63,43.9,10,0.0 +15055,51,53,16,0.0 +15055,75,7.75,19,0.0 +15055,43,46,37,0.0 +15055,34,14,39,0.0 +15055,32,32,40,0.0 +15055,21,10,10,0.0 +15055,42,14,1,0.0 +15055,69,36,23,0.0 +15055,27,43.9,13,0.0 +15055,70,15,48,0.0 +15055,24,4.5,26,0.0 +15055,48,12.75,50,0.0 +15055,52,7,9,0.0 +15056,52,7,13,0.0 +15056,55,24,29,0.0 +15056,59,55,43,0.0 +15056,70,15,7,0.0 +15056,56,38,14,0.0 +15056,26,31.23,19,0.0 +15056,27,43.9,37,0.0 +15056,5,21.35,40,0.0 +15056,8,40,15,0.0 +15056,71,21.5,13,0.0 +15056,30,25.89,34,0.0 +15056,63,43.9,1,0.0 +15056,18,62.5,38,0.0 +15056,10,31,13,0.0 +15056,50,16.25,2,0.0 +15056,25,14,20,0.0 +15056,31,12.5,46,0.0 +15056,46,12,2,0.0 +15056,60,34,6,0.0 +15056,13,6,19,0.0 +15056,61,28.5,50,0.0 +15056,40,18.4,37,0.0 +15056,42,14,17,0.0 +15056,43,46,11,0.0 +15056,65,21.05,17,0.0 +15056,72,34.8,17,0.0 +15056,77,13,43,0.0 +15056,24,4.5,25,0.0 +15056,58,13.25,12,0.0 +15056,64,33.25,10,0.0 +15056,28,45.6,5,0.0 +15056,75,7.75,45,0.0 +15056,45,9.5,14,0.0 +15056,39,18,19,0.0 +15056,32,32,24,0.0 +15056,12,38,10,0.0 +15056,51,53,36,0.0 +15056,7,30,16,0.0 +15056,62,49.3,7,0.0 +15056,76,18,17,0.0 +15056,20,81,39,0.0 +15056,1,18,35,0.0 +15056,57,19.5,2,0.0 +15056,2,19,45,0.0 +15056,36,19,31,0.0 +15056,9,97,50,0.0 +15056,23,9,48,0.0 +15056,37,26,27,0.0 +15056,34,14,26,0.0 +15056,74,10,3,0.0 +15056,38,263.5,40,0.0 +15056,47,9.5,46,0.0 +15056,41,9.65,34,0.0 +15057,2,19,4,0.0 +15057,59,55,46,0.0 +15057,66,17,13,0.0 +15057,49,20,41,0.0 +15057,13,6,40,0.0 +15057,69,36,8,0.0 +15057,46,12,47,0.0 +15057,7,30,19,0.0 +15057,12,38,20,0.0 +15057,61,28.5,5,0.0 +15057,36,19,29,0.0 +15057,29,123.79,44,0.0 +15057,24,4.5,30,0.0 +15057,73,15,36,0.0 +15057,75,7.75,33,0.0 +15057,45,9.5,1,0.0 +15057,10,31,3,0.0 +15057,11,21,43,0.0 +15057,34,14,49,0.0 +15057,25,14,19,0.0 +15057,52,7,24,0.0 +15057,18,62.5,12,0.0 +15057,14,23.25,44,0.0 +15057,58,13.25,18,0.0 +15057,56,38,13,0.0 +15057,35,18,20,0.0 +15057,21,10,27,0.0 +15057,28,45.6,41,0.0 +15057,70,15,13,0.0 +15057,72,34.8,7,0.0 +15057,65,21.05,44,0.0 +15057,74,10,30,0.0 +15057,64,33.25,36,0.0 +15057,30,25.89,23,0.0 +15057,8,40,38,0.0 +15057,60,34,42,0.0 +15057,16,17.45,30,0.0 +15057,32,32,9,0.0 +15057,71,21.5,40,0.0 +15057,4,22,4,0.0 +15057,15,15.5,18,0.0 +15057,9,97,20,0.0 +15057,38,263.5,41,0.0 +15057,47,9.5,7,0.0 +15057,42,14,39,0.0 +15057,48,12.75,45,0.0 +15057,77,13,32,0.0 +15057,55,24,11,0.0 +15057,62,49.3,36,0.0 +15057,19,9.2,7,0.0 +15057,20,81,50,0.0 +15057,44,19.45,8,0.0 +15057,33,2.5,38,0.0 +15057,39,18,35,0.0 +15057,51,53,34,0.0 +15057,68,12.5,45,0.0 +15057,53,32.8,4,0.0 +15057,41,9.65,24,0.0 +15057,23,9,24,0.0 +15057,27,43.9,33,0.0 +15057,50,16.25,20,0.0 +15057,54,7.45,40,0.0 +15057,57,19.5,22,0.0 +15057,6,25,25,0.0 +15057,67,14,24,0.0 +15057,76,18,38,0.0 +15057,3,10,30,0.0 +15057,63,43.9,3,0.0 +15057,22,21,33,0.0 +15057,31,12.5,25,0.0 +15057,26,31.23,50,0.0 +15057,40,18.4,42,0.0 +15057,43,46,28,0.0 +15057,1,18,42,0.0 +15057,37,26,1,0.0 +15058,30,25.89,22,0.0 +15058,3,10,41,0.0 +15058,53,32.8,42,0.0 +15058,18,62.5,16,0.0 +15058,31,12.5,37,0.0 +15058,28,45.6,36,0.0 +15058,11,21,16,0.0 +15058,12,38,24,0.0 +15058,74,10,49,0.0 +15058,45,9.5,9,0.0 +15058,69,36,38,0.0 +15058,44,19.45,19,0.0 +15058,39,18,17,0.0 +15058,32,32,18,0.0 +15058,43,46,42,0.0 +15058,61,28.5,14,0.0 +15058,4,22,23,0.0 +15058,19,9.2,38,0.0 +15058,55,24,42,0.0 +15058,36,19,39,0.0 +15058,23,9,23,0.0 +15058,66,17,14,0.0 +15058,60,34,31,0.0 +15058,73,15,34,0.0 +15058,77,13,48,0.0 +15058,47,9.5,27,0.0 +15058,6,25,23,0.0 +15058,20,81,16,0.0 +15058,42,14,36,0.0 +15058,41,9.65,8,0.0 +15058,67,14,44,0.0 +15058,35,18,8,0.0 +15058,75,7.75,11,0.0 +15058,57,19.5,37,0.0 +15058,9,97,2,0.0 +15058,65,21.05,20,0.0 +15058,49,20,13,0.0 +15058,15,15.5,9,0.0 +15058,50,16.25,44,0.0 +15058,10,31,45,0.0 +15058,59,55,26,0.0 +15058,72,34.8,7,0.0 +15058,22,21,41,0.0 +15058,34,14,16,0.0 +15058,2,19,24,0.0 +15058,24,4.5,32,0.0 +15058,14,23.25,43,0.0 +15058,7,30,5,0.0 +15058,54,7.45,13,0.0 +15058,8,40,46,0.0 +15058,71,21.5,1,0.0 +15058,38,263.5,45,0.0 +15058,64,33.25,26,0.0 +15058,48,12.75,24,0.0 +15058,1,18,23,0.0 +15059,37,26,20,0.0 +15059,16,17.45,42,0.0 +15059,3,10,34,0.0 +15059,54,7.45,27,0.0 +15059,13,6,25,0.0 +15059,66,17,7,0.0 +15059,8,40,28,0.0 +15059,33,2.5,10,0.0 +15059,67,14,42,0.0 +15059,68,12.5,22,0.0 +15059,65,21.05,9,0.0 +15059,46,12,45,0.0 +15059,21,10,28,0.0 +15059,31,12.5,12,0.0 +15059,60,34,49,0.0 +15059,5,21.35,28,0.0 +15059,40,18.4,33,0.0 +15059,59,55,1,0.0 +15059,63,43.9,20,0.0 +15059,72,34.8,50,0.0 +15059,48,12.75,50,0.0 +15059,45,9.5,39,0.0 +15059,18,62.5,8,0.0 +15059,44,19.45,5,0.0 +15059,11,21,24,0.0 +15059,42,14,39,0.0 +15059,7,30,41,0.0 +15059,12,38,11,0.0 +15059,10,31,18,0.0 +15059,36,19,15,0.0 +15059,23,9,1,0.0 +15059,71,21.5,27,0.0 +15059,56,38,3,0.0 +15059,41,9.65,21,0.0 +15059,55,24,29,0.0 +15059,22,21,20,0.0 +15059,58,13.25,41,0.0 +15059,20,81,29,0.0 +15059,61,28.5,26,0.0 +15059,30,25.89,32,0.0 +15059,17,39,50,0.0 +15059,15,15.5,7,0.0 +15059,35,18,4,0.0 +15059,9,97,43,0.0 +15059,76,18,13,0.0 +15059,70,15,26,0.0 +15059,1,18,8,0.0 +15059,4,22,29,0.0 +15059,2,19,5,0.0 +15059,75,7.75,14,0.0 +15059,27,43.9,36,0.0 +15059,19,9.2,15,0.0 +15059,34,14,26,0.0 +15059,25,14,17,0.0 +15059,47,9.5,26,0.0 +15059,49,20,19,0.0 +15059,69,36,34,0.0 +15060,38,263.5,40,0.0 +15060,65,21.05,11,0.0 +15060,54,7.45,11,0.0 +15060,18,62.5,15,0.0 +15060,13,6,30,0.0 +15060,68,12.5,48,0.0 +15060,1,18,43,0.0 +15060,3,10,37,0.0 +15060,10,31,4,0.0 +15060,21,10,25,0.0 +15060,52,7,45,0.0 +15060,20,81,41,0.0 +15060,5,21.35,41,0.0 +15060,45,9.5,24,0.0 +15060,36,19,46,0.0 +15060,35,18,39,0.0 +15060,34,14,16,0.0 +15060,12,38,40,0.0 +15060,6,25,43,0.0 +15060,41,9.65,13,0.0 +15061,57,19.5,41,0.0 +15061,39,18,24,0.0 +15061,20,81,21,0.0 +15061,1,18,47,0.0 +15061,5,21.35,25,0.0 +15061,10,31,36,0.0 +15061,47,9.5,24,0.0 +15061,76,18,4,0.0 +15061,12,38,4,0.0 +15061,17,39,45,0.0 +15061,69,36,29,0.0 +15061,29,123.79,29,0.0 +15061,15,15.5,41,0.0 +15061,14,23.25,28,0.0 +15061,13,6,35,0.0 +15061,7,30,23,0.0 +15061,54,7.45,28,0.0 +15061,24,4.5,8,0.0 +15061,33,2.5,20,0.0 +15061,53,32.8,45,0.0 +15061,19,9.2,50,0.0 +15061,18,62.5,14,0.0 +15061,77,13,23,0.0 +15061,65,21.05,19,0.0 +15061,31,12.5,12,0.0 +15061,50,16.25,28,0.0 +15061,43,46,40,0.0 +15061,42,14,20,0.0 +15061,3,10,31,0.0 +15061,8,40,27,0.0 +15061,51,53,49,0.0 +15061,40,18.4,19,0.0 +15061,60,34,45,0.0 +15061,34,14,36,0.0 +15061,6,25,31,0.0 +15061,74,10,20,0.0 +15061,25,14,44,0.0 +15061,38,263.5,27,0.0 +15061,45,9.5,32,0.0 +15061,59,55,34,0.0 +15061,75,7.75,44,0.0 +15061,61,28.5,28,0.0 +15061,30,25.89,32,0.0 +15061,48,12.75,17,0.0 +15061,23,9,12,0.0 +15061,21,10,6,0.0 +15061,52,7,14,0.0 +15061,55,24,31,0.0 +15061,11,21,5,0.0 +15061,36,19,37,0.0 +15061,35,18,6,0.0 +15061,32,32,13,0.0 +15061,71,21.5,21,0.0 +15061,44,19.45,44,0.0 +15061,68,12.5,3,0.0 +15061,66,17,49,0.0 +15061,16,17.45,3,0.0 +15061,73,15,31,0.0 +15061,28,45.6,38,0.0 +15062,43,46,30,0.0 +15062,52,7,43,0.0 +15062,19,9.2,12,0.0 +15062,10,31,19,0.0 +15062,47,9.5,16,0.0 +15062,38,263.5,23,0.0 +15062,26,31.23,49,0.0 +15062,9,97,3,0.0 +15062,31,12.5,35,0.0 +15062,22,21,28,0.0 +15062,71,21.5,44,0.0 +15062,33,2.5,41,0.0 +15062,46,12,12,0.0 +15062,68,12.5,8,0.0 +15062,23,9,49,0.0 +15062,21,10,3,0.0 +15062,67,14,37,0.0 +15062,36,19,18,0.0 +15062,54,7.45,26,0.0 +15062,58,13.25,49,0.0 +15062,17,39,33,0.0 +15062,66,17,19,0.0 +15062,18,62.5,9,0.0 +15062,5,21.35,12,0.0 +15062,1,18,18,0.0 +15062,64,33.25,22,0.0 +15062,41,9.65,4,0.0 +15062,53,32.8,14,0.0 +15062,3,10,1,0.0 +15062,20,81,13,0.0 +15062,37,26,14,0.0 +15062,76,18,23,0.0 +15063,44,19.45,8,0.0 +15063,28,45.6,50,0.0 +15063,32,32,44,0.0 +15063,57,19.5,1,0.0 +15063,4,22,41,0.0 +15063,16,17.45,33,0.0 +15063,17,39,38,0.0 +15063,39,18,46,0.0 +15063,9,97,22,0.0 +15063,27,43.9,43,0.0 +15063,41,9.65,33,0.0 +15063,30,25.89,47,0.0 +15063,59,55,39,0.0 +15063,69,36,45,0.0 +15063,76,18,32,0.0 +15063,65,21.05,19,0.0 +15063,61,28.5,2,0.0 +15063,34,14,11,0.0 +15063,40,18.4,39,0.0 +15063,77,13,49,0.0 +15063,62,49.3,37,0.0 +15063,1,18,41,0.0 +15063,20,81,16,0.0 +15063,43,46,50,0.0 +15063,54,7.45,29,0.0 +15063,10,31,26,0.0 +15063,55,24,21,0.0 +15063,46,12,47,0.0 +15063,45,9.5,47,0.0 +15063,2,19,36,0.0 +15063,15,15.5,30,0.0 +15063,22,21,5,0.0 +15063,23,9,25,0.0 +15064,5,21.35,26,0.0 +15064,56,38,5,0.0 +15064,51,53,47,0.0 +15064,8,40,48,0.0 +15064,70,15,1,0.0 +15064,25,14,24,0.0 +15064,19,9.2,40,0.0 +15064,42,14,42,0.0 +15064,15,15.5,42,0.0 +15064,72,34.8,12,0.0 +15064,32,32,27,0.0 +15064,47,9.5,27,0.0 +15064,55,24,25,0.0 +15064,17,39,12,0.0 +15064,75,7.75,19,0.0 +15064,21,10,26,0.0 +15064,74,10,6,0.0 +15064,24,4.5,44,0.0 +15064,31,12.5,1,0.0 +15064,39,18,32,0.0 +15064,52,7,22,0.0 +15064,28,45.6,33,0.0 +15064,69,36,33,0.0 +15064,68,12.5,36,0.0 +15064,2,19,46,0.0 +15065,13,6,26,0.0 +15065,26,31.23,28,0.0 +15065,1,18,7,0.0 +15065,19,9.2,36,0.0 +15065,21,10,7,0.0 +15065,44,19.45,3,0.0 +15065,27,43.9,21,0.0 +15065,15,15.5,23,0.0 +15065,14,23.25,24,0.0 +15065,61,28.5,40,0.0 +15065,46,12,8,0.0 +15065,23,9,31,0.0 +15065,37,26,49,0.0 +15065,4,22,46,0.0 +15065,73,15,49,0.0 +15065,76,18,17,0.0 +15065,47,9.5,31,0.0 +15065,5,21.35,29,0.0 +15065,17,39,23,0.0 +15065,39,18,11,0.0 +15065,38,263.5,46,0.0 +15065,72,34.8,42,0.0 +15065,64,33.25,48,0.0 +15065,67,14,47,0.0 +15065,43,46,47,0.0 +15065,24,4.5,25,0.0 +15065,11,21,45,0.0 +15065,52,7,23,0.0 +15065,41,9.65,20,0.0 +15065,34,14,37,0.0 +15065,29,123.79,12,0.0 +15065,18,62.5,41,0.0 +15065,2,19,26,0.0 +15065,66,17,14,0.0 +15065,6,25,32,0.0 +15065,42,14,32,0.0 +15065,45,9.5,12,0.0 +15065,40,18.4,45,0.0 +15065,33,2.5,40,0.0 +15065,22,21,46,0.0 +15065,20,81,42,0.0 +15065,54,7.45,34,0.0 +15065,50,16.25,8,0.0 +15065,48,12.75,32,0.0 +15065,68,12.5,35,0.0 +15065,9,97,26,0.0 +15066,1,18,25,0.0 +15066,26,31.23,38,0.0 +15066,13,6,10,0.0 +15066,4,22,8,0.0 +15066,53,32.8,50,0.0 +15066,25,14,45,0.0 +15066,9,97,10,0.0 +15066,5,21.35,39,0.0 +15066,16,17.45,48,0.0 +15066,74,10,7,0.0 +15066,54,7.45,48,0.0 +15066,59,55,3,0.0 +15066,15,15.5,23,0.0 +15066,70,15,1,0.0 +15067,17,39,49,0.0 +15067,19,9.2,30,0.0 +15067,34,14,2,0.0 +15067,6,25,45,0.0 +15067,40,18.4,22,0.0 +15067,77,13,23,0.0 +15067,10,31,33,0.0 +15067,29,123.79,47,0.0 +15067,27,43.9,21,0.0 +15067,7,30,27,0.0 +15067,4,22,4,0.0 +15067,46,12,34,0.0 +15067,52,7,49,0.0 +15067,72,34.8,45,0.0 +15067,30,25.89,50,0.0 +15067,37,26,23,0.0 +15067,33,2.5,35,0.0 +15067,54,7.45,17,0.0 +15067,49,20,24,0.0 +15067,73,15,34,0.0 +15067,64,33.25,24,0.0 +15067,13,6,27,0.0 +15067,67,14,9,0.0 +15067,68,12.5,11,0.0 +15067,71,21.5,34,0.0 +15067,61,28.5,10,0.0 +15067,53,32.8,23,0.0 +15067,39,18,15,0.0 +15067,32,32,15,0.0 +15067,50,16.25,43,0.0 +15067,35,18,12,0.0 +15067,66,17,47,0.0 +15067,57,19.5,8,0.0 +15067,28,45.6,18,0.0 +15067,76,18,1,0.0 +15067,44,19.45,21,0.0 +15067,45,9.5,8,0.0 +15067,36,19,17,0.0 +15067,31,12.5,11,0.0 +15067,47,9.5,44,0.0 +15067,8,40,48,0.0 +15067,11,21,19,0.0 +15067,74,10,34,0.0 +15067,12,38,21,0.0 +15067,5,21.35,49,0.0 +15067,3,10,15,0.0 +15067,48,12.75,25,0.0 +15067,22,21,10,0.0 +15067,59,55,26,0.0 +15067,26,31.23,22,0.0 +15067,20,81,37,0.0 +15067,63,43.9,33,0.0 +15067,58,13.25,4,0.0 +15067,24,4.5,38,0.0 +15067,1,18,16,0.0 +15067,51,53,18,0.0 +15067,60,34,5,0.0 +15067,38,263.5,40,0.0 +15067,62,49.3,43,0.0 +15068,18,62.5,15,0.0 +15068,56,38,49,0.0 +15068,37,26,5,0.0 +15068,21,10,30,0.0 +15068,77,13,25,0.0 +15068,3,10,36,0.0 +15068,51,53,46,0.0 +15068,61,28.5,16,0.0 +15068,59,55,39,0.0 +15068,4,22,35,0.0 +15068,43,46,7,0.0 +15068,55,24,7,0.0 +15068,29,123.79,24,0.0 +15068,36,19,8,0.0 +15068,67,14,1,0.0 +15068,72,34.8,37,0.0 +15068,25,14,48,0.0 +15068,15,15.5,1,0.0 +15068,30,25.89,32,0.0 +15068,54,7.45,46,0.0 +15068,53,32.8,5,0.0 +15068,17,39,22,0.0 +15068,31,12.5,46,0.0 +15068,63,43.9,27,0.0 +15068,65,21.05,44,0.0 +15068,1,18,26,0.0 +15068,19,9.2,19,0.0 +15068,5,21.35,11,0.0 +15068,66,17,28,0.0 +15068,48,12.75,40,0.0 +15068,6,25,4,0.0 +15068,58,13.25,1,0.0 +15068,10,31,8,0.0 +15068,34,14,4,0.0 +15068,26,31.23,41,0.0 +15068,69,36,9,0.0 +15068,28,45.6,46,0.0 +15068,23,9,25,0.0 +15068,12,38,13,0.0 +15068,2,19,22,0.0 +15068,8,40,25,0.0 +15068,20,81,39,0.0 +15068,60,34,7,0.0 +15068,27,43.9,50,0.0 +15068,22,21,48,0.0 +15068,39,18,18,0.0 +15068,52,7,4,0.0 +15068,76,18,25,0.0 +15068,32,32,49,0.0 +15068,13,6,5,0.0 +15068,41,9.65,41,0.0 +15068,64,33.25,5,0.0 +15068,62,49.3,27,0.0 +15068,47,9.5,15,0.0 +15068,57,19.5,29,0.0 +15068,68,12.5,17,0.0 +15068,46,12,13,0.0 +15068,70,15,15,0.0 +15068,38,263.5,37,0.0 +15068,75,7.75,10,0.0 +15068,40,18.4,34,0.0 +15068,74,10,16,0.0 +15068,49,20,31,0.0 +15068,45,9.5,26,0.0 +15068,73,15,31,0.0 +15068,16,17.45,39,0.0 +15068,14,23.25,13,0.0 +15068,42,14,38,0.0 +15069,18,62.5,38,0.0 +15069,29,123.79,42,0.0 +15069,26,31.23,27,0.0 +15069,20,81,8,0.0 +15069,53,32.8,1,0.0 +15069,42,14,49,0.0 +15069,16,17.45,1,0.0 +15069,64,33.25,50,0.0 +15069,19,9.2,21,0.0 +15069,22,21,27,0.0 +15069,68,12.5,27,0.0 +15069,28,45.6,24,0.0 +15069,47,9.5,44,0.0 +15069,54,7.45,43,0.0 +15069,51,53,35,0.0 +15069,8,40,13,0.0 +15069,9,97,36,0.0 +15069,17,39,38,0.0 +15069,27,43.9,25,0.0 +15069,2,19,24,0.0 +15069,66,17,34,0.0 +15069,49,20,28,0.0 +15069,33,2.5,30,0.0 +15069,61,28.5,10,0.0 +15069,37,26,36,0.0 +15069,25,14,50,0.0 +15069,12,38,32,0.0 +15069,3,10,14,0.0 +15069,55,24,35,0.0 +15069,4,22,44,0.0 +15069,1,18,21,0.0 +15069,60,34,9,0.0 +15069,71,21.5,33,0.0 +15070,3,10,33,0.0 +15070,67,14,45,0.0 +15070,61,28.5,44,0.0 +15070,38,263.5,15,0.0 +15070,73,15,39,0.0 +15070,63,43.9,36,0.0 +15070,35,18,6,0.0 +15071,30,25.89,25,0.0 +15071,28,45.6,45,0.0 +15071,68,12.5,46,0.0 +15071,15,15.5,28,0.0 +15071,21,10,19,0.0 +15071,6,25,41,0.0 +15071,17,39,43,0.0 +15071,14,23.25,47,0.0 +15071,71,21.5,38,0.0 +15071,43,46,40,0.0 +15071,70,15,6,0.0 +15071,2,19,41,0.0 +15071,55,24,7,0.0 +15072,22,21,25,0.0 +15072,13,6,29,0.0 +15072,35,18,34,0.0 +15072,6,25,9,0.0 +15072,5,21.35,45,0.0 +15072,47,9.5,21,0.0 +15072,42,14,28,0.0 +15072,38,263.5,28,0.0 +15072,63,43.9,3,0.0 +15072,60,34,15,0.0 +15072,40,18.4,34,0.0 +15072,1,18,49,0.0 +15072,41,9.65,6,0.0 +15072,43,46,41,0.0 +15072,39,18,11,0.0 +15072,8,40,22,0.0 +15072,74,10,2,0.0 +15072,17,39,35,0.0 +15072,62,49.3,14,0.0 +15072,70,15,26,0.0 +15072,73,15,30,0.0 +15072,33,2.5,10,0.0 +15072,12,38,35,0.0 +15073,74,10,5,0.0 +15073,25,14,46,0.0 +15073,66,17,40,0.0 +15073,48,12.75,12,0.0 +15073,67,14,9,0.0 +15073,11,21,48,0.0 +15073,72,34.8,31,0.0 +15073,73,15,1,0.0 +15073,64,33.25,4,0.0 +15073,62,49.3,3,0.0 +15073,56,38,4,0.0 +15073,39,18,11,0.0 +15073,49,20,27,0.0 +15073,15,15.5,17,0.0 +15073,35,18,13,0.0 +15073,41,9.65,31,0.0 +15073,50,16.25,30,0.0 +15073,22,21,11,0.0 +15073,61,28.5,37,0.0 +15073,68,12.5,41,0.0 +15073,17,39,10,0.0 +15073,4,22,34,0.0 +15073,55,24,43,0.0 +15073,16,17.45,21,0.0 +15073,10,31,23,0.0 +15073,46,12,8,0.0 +15073,52,7,47,0.0 +15073,26,31.23,36,0.0 +15073,9,97,7,0.0 +15073,12,38,28,0.0 +15073,6,25,31,0.0 +15073,2,19,5,0.0 +15073,27,43.9,3,0.0 +15073,40,18.4,29,0.0 +15073,53,32.8,42,0.0 +15073,13,6,43,0.0 +15073,38,263.5,18,0.0 +15073,43,46,25,0.0 +15073,71,21.5,15,0.0 +15073,36,19,49,0.0 +15073,37,26,16,0.0 +15073,19,9.2,48,0.0 +15073,28,45.6,19,0.0 +15073,30,25.89,17,0.0 +15073,29,123.79,5,0.0 +15074,51,53,9,0.0 +15074,22,21,27,0.0 +15074,5,21.35,40,0.0 +15074,24,4.5,19,0.0 +15074,31,12.5,26,0.0 +15074,36,19,31,0.0 +15074,41,9.65,31,0.0 +15074,54,7.45,17,0.0 +15074,63,43.9,44,0.0 +15074,38,263.5,33,0.0 +15074,53,32.8,49,0.0 +15074,18,62.5,9,0.0 +15074,60,34,34,0.0 +15074,47,9.5,40,0.0 +15074,6,25,29,0.0 +15074,73,15,43,0.0 +15074,39,18,24,0.0 +15074,15,15.5,12,0.0 +15074,46,12,10,0.0 +15074,61,28.5,35,0.0 +15074,58,13.25,17,0.0 +15074,30,25.89,46,0.0 +15074,28,45.6,39,0.0 +15074,10,31,27,0.0 +15074,20,81,47,0.0 +15074,59,55,50,0.0 +15074,55,24,4,0.0 +15074,32,32,47,0.0 +15074,68,12.5,19,0.0 +15074,43,46,13,0.0 +15074,35,18,4,0.0 +15074,26,31.23,11,0.0 +15074,74,10,21,0.0 +15074,42,14,30,0.0 +15074,33,2.5,41,0.0 +15074,29,123.79,39,0.0 +15074,9,97,3,0.0 +15074,7,30,32,0.0 +15074,50,16.25,9,0.0 +15074,8,40,11,0.0 +15074,40,18.4,15,0.0 +15074,12,38,32,0.0 +15074,52,7,19,0.0 +15074,77,13,32,0.0 +15074,75,7.75,7,0.0 +15074,64,33.25,26,0.0 +15074,19,9.2,31,0.0 +15074,34,14,28,0.0 +15074,17,39,4,0.0 +15074,48,12.75,46,0.0 +15074,66,17,35,0.0 +15074,14,23.25,42,0.0 +15074,76,18,8,0.0 +15074,44,19.45,39,0.0 +15074,62,49.3,1,0.0 +15074,56,38,47,0.0 +15074,3,10,9,0.0 +15074,2,19,6,0.0 +15074,13,6,4,0.0 +15074,65,21.05,16,0.0 +15074,70,15,18,0.0 +15075,21,10,6,0.0 +15075,51,53,34,0.0 +15075,53,32.8,34,0.0 +15075,20,81,8,0.0 +15075,63,43.9,34,0.0 +15075,14,23.25,25,0.0 +15075,15,15.5,17,0.0 +15075,57,19.5,39,0.0 +15075,19,9.2,44,0.0 +15075,5,21.35,39,0.0 +15075,45,9.5,3,0.0 +15075,66,17,14,0.0 +15075,28,45.6,23,0.0 +15075,50,16.25,37,0.0 +15075,54,7.45,48,0.0 +15075,64,33.25,34,0.0 +15075,18,62.5,27,0.0 +15075,8,40,50,0.0 +15075,6,25,26,0.0 +15075,16,17.45,14,0.0 +15075,41,9.65,44,0.0 +15075,33,2.5,13,0.0 +15075,77,13,7,0.0 +15075,74,10,31,0.0 +15075,61,28.5,32,0.0 +15075,72,34.8,21,0.0 +15075,55,24,44,0.0 +15075,32,32,2,0.0 +15075,37,26,26,0.0 +15075,31,12.5,8,0.0 +15075,36,19,6,0.0 +15075,52,7,47,0.0 +15075,70,15,50,0.0 +15075,76,18,35,0.0 +15075,26,31.23,31,0.0 +15075,22,21,47,0.0 +15075,60,34,19,0.0 +15075,44,19.45,37,0.0 +15075,24,4.5,16,0.0 +15075,75,7.75,23,0.0 +15075,13,6,26,0.0 +15075,48,12.75,17,0.0 +15075,25,14,12,0.0 +15075,40,18.4,11,0.0 +15075,38,263.5,17,0.0 +15075,39,18,16,0.0 +15075,30,25.89,23,0.0 +15075,3,10,4,0.0 +15075,59,55,36,0.0 +15075,1,18,36,0.0 +15075,73,15,21,0.0 +15075,27,43.9,50,0.0 +15075,69,36,32,0.0 +15075,43,46,17,0.0 +15075,17,39,30,0.0 +15076,9,97,32,0.0 +15076,68,12.5,34,0.0 +15076,48,12.75,1,0.0 +15076,66,17,40,0.0 +15076,39,18,42,0.0 +15076,22,21,21,0.0 +15076,61,28.5,49,0.0 +15076,14,23.25,40,0.0 +15076,64,33.25,35,0.0 +15076,77,13,12,0.0 +15076,52,7,31,0.0 +15076,34,14,47,0.0 +15076,15,15.5,44,0.0 +15076,63,43.9,13,0.0 +15076,62,49.3,50,0.0 +15076,31,12.5,45,0.0 +15076,47,9.5,34,0.0 +15076,70,15,30,0.0 +15076,35,18,4,0.0 +15076,27,43.9,24,0.0 +15076,49,20,37,0.0 +15076,8,40,19,0.0 +15076,25,14,24,0.0 +15076,32,32,28,0.0 +15076,60,34,32,0.0 +15076,67,14,47,0.0 +15076,36,19,40,0.0 +15076,59,55,9,0.0 +15076,5,21.35,8,0.0 +15076,18,62.5,19,0.0 +15076,72,34.8,34,0.0 +15076,29,123.79,42,0.0 +15076,4,22,20,0.0 +15076,24,4.5,13,0.0 +15076,75,7.75,24,0.0 +15076,56,38,2,0.0 +15076,16,17.45,48,0.0 +15076,58,13.25,16,0.0 +15076,10,31,25,0.0 +15076,7,30,26,0.0 +15076,6,25,14,0.0 +15076,19,9.2,14,0.0 +15076,54,7.45,19,0.0 +15076,28,45.6,39,0.0 +15076,1,18,25,0.0 +15076,46,12,43,0.0 +15076,40,18.4,34,0.0 +15076,65,21.05,2,0.0 +15076,38,263.5,33,0.0 +15076,13,6,42,0.0 +15076,50,16.25,11,0.0 +15076,43,46,10,0.0 +15076,74,10,2,0.0 +15076,20,81,11,0.0 +15076,37,26,30,0.0 +15076,71,21.5,47,0.0 +15076,33,2.5,39,0.0 +15076,44,19.45,7,0.0 +15076,11,21,38,0.0 +15076,51,53,10,0.0 +15076,53,32.8,47,0.0 +15076,73,15,42,0.0 +15076,3,10,25,0.0 +15076,23,9,50,0.0 +15076,12,38,23,0.0 +15076,21,10,20,0.0 +15076,26,31.23,8,0.0 +15076,55,24,20,0.0 +15076,41,9.65,44,0.0 +15077,6,25,1,0.0 +15077,17,39,32,0.0 +15077,65,21.05,29,0.0 +15077,30,25.89,22,0.0 +15077,18,62.5,13,0.0 +15077,26,31.23,7,0.0 +15077,59,55,32,0.0 +15077,38,263.5,33,0.0 +15077,41,9.65,47,0.0 +15077,70,15,21,0.0 +15077,56,38,44,0.0 +15077,31,12.5,19,0.0 +15077,47,9.5,10,0.0 +15077,25,14,39,0.0 +15077,8,40,29,0.0 +15077,50,16.25,40,0.0 +15077,19,9.2,38,0.0 +15077,46,12,38,0.0 +15077,13,6,31,0.0 +15077,11,21,16,0.0 +15077,51,53,26,0.0 +15077,77,13,13,0.0 +15077,9,97,36,0.0 +15077,64,33.25,45,0.0 +15077,72,34.8,23,0.0 +15077,37,26,14,0.0 +15077,69,36,8,0.0 +15077,16,17.45,1,0.0 +15077,73,15,14,0.0 +15077,7,30,5,0.0 +15077,57,19.5,12,0.0 +15077,15,15.5,24,0.0 +15077,75,7.75,48,0.0 +15077,33,2.5,5,0.0 +15077,44,19.45,39,0.0 +15077,39,18,14,0.0 +15077,21,10,8,0.0 +15077,62,49.3,27,0.0 +15077,32,32,48,0.0 +15077,43,46,50,0.0 +15077,23,9,48,0.0 +15077,5,21.35,34,0.0 +15077,20,81,22,0.0 +15077,53,32.8,13,0.0 +15077,58,13.25,21,0.0 +15077,36,19,15,0.0 +15077,68,12.5,39,0.0 +15077,24,4.5,41,0.0 +15077,10,31,47,0.0 +15077,22,21,26,0.0 +15077,29,123.79,42,0.0 +15077,1,18,33,0.0 +15077,4,22,13,0.0 +15077,61,28.5,5,0.0 +15077,71,21.5,18,0.0 +15077,28,45.6,40,0.0 +15077,40,18.4,31,0.0 +15077,67,14,23,0.0 +15077,76,18,31,0.0 +15077,3,10,12,0.0 +15077,60,34,15,0.0 +15077,63,43.9,30,0.0 +15077,34,14,50,0.0 +15078,21,10,36,0.0 +15078,24,4.5,5,0.0 +15078,28,45.6,42,0.0 +15078,7,30,38,0.0 +15078,55,24,5,0.0 +15078,35,18,45,0.0 +15078,67,14,10,0.0 +15078,64,33.25,14,0.0 +15078,14,23.25,28,0.0 +15078,12,38,48,0.0 +15078,18,62.5,45,0.0 +15078,50,16.25,31,0.0 +15078,6,25,8,0.0 +15078,31,12.5,17,0.0 +15078,30,25.89,35,0.0 +15078,4,22,20,0.0 +15078,2,19,38,0.0 +15078,57,19.5,43,0.0 +15078,37,26,44,0.0 +15078,76,18,17,0.0 +15078,60,34,49,0.0 +15078,17,39,21,0.0 +15078,8,40,45,0.0 +15078,29,123.79,17,0.0 +15078,48,12.75,45,0.0 +15078,40,18.4,27,0.0 +15078,44,19.45,35,0.0 +15078,16,17.45,16,0.0 +15078,26,31.23,7,0.0 +15078,20,81,36,0.0 +15078,75,7.75,33,0.0 +15078,49,20,37,0.0 +15078,34,14,41,0.0 +15078,46,12,14,0.0 +15078,45,9.5,6,0.0 +15078,5,21.35,2,0.0 +15078,74,10,45,0.0 +15078,13,6,19,0.0 +15078,22,21,29,0.0 +15078,41,9.65,22,0.0 +15078,63,43.9,1,0.0 +15078,58,13.25,49,0.0 +15078,62,49.3,27,0.0 +15078,53,32.8,21,0.0 +15078,32,32,25,0.0 +15078,38,263.5,40,0.0 +15078,72,34.8,24,0.0 +15078,77,13,6,0.0 +15078,1,18,35,0.0 +15078,56,38,29,0.0 +15078,59,55,33,0.0 +15078,10,31,37,0.0 +15078,47,9.5,22,0.0 +15078,54,7.45,17,0.0 +15078,43,46,11,0.0 +15078,11,21,21,0.0 +15078,23,9,45,0.0 +15078,25,14,4,0.0 +15078,19,9.2,37,0.0 +15078,73,15,6,0.0 +15078,39,18,36,0.0 +15078,61,28.5,47,0.0 +15078,42,14,2,0.0 +15078,66,17,11,0.0 +15078,70,15,24,0.0 +15078,36,19,22,0.0 +15079,37,26,7,0.0 +15079,16,17.45,6,0.0 +15079,63,43.9,3,0.0 +15079,3,10,14,0.0 +15079,64,33.25,15,0.0 +15079,66,17,16,0.0 +15079,41,9.65,5,0.0 +15079,23,9,14,0.0 +15079,32,32,17,0.0 +15079,8,40,28,0.0 +15079,48,12.75,42,0.0 +15079,76,18,18,0.0 +15079,26,31.23,43,0.0 +15079,42,14,37,0.0 +15079,31,12.5,17,0.0 +15079,4,22,37,0.0 +15079,46,12,27,0.0 +15079,58,13.25,2,0.0 +15079,5,21.35,36,0.0 +15079,13,6,47,0.0 +15079,12,38,23,0.0 +15079,6,25,24,0.0 +15079,19,9.2,37,0.0 +15079,60,34,45,0.0 +15079,62,49.3,42,0.0 +15079,43,46,19,0.0 +15079,11,21,11,0.0 +15079,30,25.89,6,0.0 +15079,24,4.5,43,0.0 +15079,40,18.4,48,0.0 +15079,70,15,28,0.0 +15079,72,34.8,5,0.0 +15079,25,14,39,0.0 +15079,54,7.45,9,0.0 +15079,53,32.8,42,0.0 +15079,57,19.5,43,0.0 +15079,50,16.25,17,0.0 +15079,73,15,34,0.0 +15079,36,19,39,0.0 +15079,67,14,18,0.0 +15079,61,28.5,15,0.0 +15079,29,123.79,47,0.0 +15079,55,24,24,0.0 +15079,51,53,16,0.0 +15079,75,7.75,50,0.0 +15079,1,18,34,0.0 +15079,10,31,49,0.0 +15079,38,263.5,13,0.0 +15079,21,10,6,0.0 +15079,69,36,13,0.0 +15079,47,9.5,38,0.0 +15079,74,10,49,0.0 +15079,56,38,29,0.0 +15079,33,2.5,45,0.0 +15079,9,97,25,0.0 +15079,17,39,11,0.0 +15079,77,13,20,0.0 +15079,39,18,3,0.0 +15079,35,18,15,0.0 +15079,34,14,49,0.0 +15079,59,55,32,0.0 +15079,2,19,32,0.0 +15079,7,30,49,0.0 +15079,15,15.5,2,0.0 +15079,68,12.5,2,0.0 +15079,22,21,35,0.0 +15079,71,21.5,23,0.0 +15079,44,19.45,16,0.0 +15079,49,20,27,0.0 +15079,45,9.5,48,0.0 +15079,65,21.05,44,0.0 +15079,28,45.6,45,0.0 +15079,52,7,25,0.0 +15079,27,43.9,29,0.0 +15080,35,18,15,0.0 +15080,75,7.75,14,0.0 +15080,42,14,42,0.0 +15080,60,34,30,0.0 +15080,70,15,15,0.0 +15080,2,19,35,0.0 +15080,37,26,27,0.0 +15080,13,6,50,0.0 +15080,11,21,39,0.0 +15080,53,32.8,19,0.0 +15080,54,7.45,21,0.0 +15080,15,15.5,5,0.0 +15080,34,14,12,0.0 +15080,30,25.89,33,0.0 +15080,23,9,46,0.0 +15080,51,53,17,0.0 +15080,46,12,20,0.0 +15080,39,18,37,0.0 +15080,19,9.2,38,0.0 +15080,55,24,48,0.0 +15080,32,32,30,0.0 +15080,72,34.8,35,0.0 +15081,75,7.75,42,0.0 +15081,76,18,13,0.0 +15081,10,31,37,0.0 +15081,53,32.8,18,0.0 +15081,37,26,31,0.0 +15081,17,39,2,0.0 +15081,59,55,8,0.0 +15081,41,9.65,34,0.0 +15081,19,9.2,10,0.0 +15081,45,9.5,50,0.0 +15081,72,34.8,3,0.0 +15081,66,17,47,0.0 +15081,6,25,33,0.0 +15081,49,20,29,0.0 +15081,44,19.45,32,0.0 +15081,4,22,10,0.0 +15081,24,4.5,9,0.0 +15081,38,263.5,18,0.0 +15081,15,15.5,23,0.0 +15081,12,38,2,0.0 +15081,9,97,23,0.0 +15081,71,21.5,34,0.0 +15081,51,53,34,0.0 +15081,50,16.25,26,0.0 +15081,56,38,49,0.0 +15081,36,19,40,0.0 +15081,42,14,48,0.0 +15081,43,46,21,0.0 +15081,65,21.05,50,0.0 +15081,61,28.5,48,0.0 +15081,28,45.6,24,0.0 +15081,39,18,9,0.0 +15081,35,18,23,0.0 +15081,11,21,30,0.0 +15082,28,45.6,19,0.0 +15082,73,15,33,0.0 +15082,34,14,44,0.0 +15082,16,17.45,41,0.0 +15082,77,13,23,0.0 +15082,33,2.5,3,0.0 +15082,63,43.9,18,0.0 +15082,13,6,13,0.0 +15082,8,40,15,0.0 +15082,15,15.5,18,0.0 +15082,61,28.5,3,0.0 +15082,32,32,4,0.0 +15082,46,12,3,0.0 +15083,54,7.45,3,0.0 +15083,58,13.25,7,0.0 +15083,25,14,36,0.0 +15083,75,7.75,19,0.0 +15083,67,14,15,0.0 +15083,28,45.6,4,0.0 +15083,21,10,43,0.0 +15083,30,25.89,11,0.0 +15083,27,43.9,26,0.0 +15083,45,9.5,15,0.0 +15083,71,21.5,13,0.0 +15083,64,33.25,14,0.0 +15083,61,28.5,19,0.0 +15083,52,7,49,0.0 +15083,36,19,29,0.0 +15083,14,23.25,17,0.0 +15083,1,18,26,0.0 +15083,59,55,44,0.0 +15083,9,97,12,0.0 +15083,10,31,17,0.0 +15083,32,32,16,0.0 +15083,57,19.5,40,0.0 +15083,37,26,47,0.0 +15083,63,43.9,27,0.0 +15083,7,30,42,0.0 +15083,11,21,39,0.0 +15083,42,14,9,0.0 +15083,74,10,43,0.0 +15083,13,6,41,0.0 +15083,73,15,42,0.0 +15083,34,14,30,0.0 +15083,44,19.45,9,0.0 +15083,24,4.5,36,0.0 +15083,53,32.8,13,0.0 +15083,39,18,29,0.0 +15083,31,12.5,25,0.0 +15083,20,81,50,0.0 +15083,5,21.35,42,0.0 +15083,43,46,32,0.0 +15083,17,39,12,0.0 +15083,22,21,26,0.0 +15083,55,24,1,0.0 +15083,49,20,15,0.0 +15083,4,22,8,0.0 +15083,77,13,35,0.0 +15083,41,9.65,22,0.0 +15083,70,15,3,0.0 +15083,26,31.23,23,0.0 +15083,16,17.45,33,0.0 +15083,65,21.05,37,0.0 +15083,8,40,18,0.0 +15083,33,2.5,37,0.0 +15083,50,16.25,37,0.0 +15083,68,12.5,24,0.0 +15083,62,49.3,14,0.0 +15083,69,36,4,0.0 +15083,35,18,9,0.0 +15083,15,15.5,38,0.0 +15083,72,34.8,41,0.0 +15084,53,32.8,23,0.0 +15084,42,14,13,0.0 +15084,46,12,12,0.0 +15084,73,15,48,0.0 +15084,17,39,29,0.0 +15084,59,55,31,0.0 +15084,15,15.5,32,0.0 +15084,68,12.5,26,0.0 +15084,75,7.75,14,0.0 +15084,51,53,25,0.0 +15084,24,4.5,15,0.0 +15084,60,34,42,0.0 +15084,12,38,33,0.0 +15084,5,21.35,9,0.0 +15084,7,30,46,0.0 +15084,47,9.5,31,0.0 +15084,70,15,38,0.0 +15084,20,81,18,0.0 +15084,63,43.9,21,0.0 +15084,61,28.5,16,0.0 +15084,27,43.9,25,0.0 +15084,77,13,49,0.0 +15084,54,7.45,28,0.0 +15084,55,24,26,0.0 +15084,38,263.5,7,0.0 +15084,3,10,42,0.0 +15084,14,23.25,19,0.0 +15084,64,33.25,16,0.0 +15084,33,2.5,23,0.0 +15084,23,9,27,0.0 +15084,16,17.45,25,0.0 +15085,16,17.45,47,0.0 +15085,41,9.65,22,0.0 +15085,20,81,8,0.0 +15085,63,43.9,26,0.0 +15085,77,13,25,0.0 +15085,56,38,15,0.0 +15085,72,34.8,21,0.0 +15085,66,17,8,0.0 +15085,64,33.25,37,0.0 +15085,32,32,35,0.0 +15085,3,10,49,0.0 +15085,34,14,25,0.0 +15085,7,30,25,0.0 +15085,62,49.3,42,0.0 +15085,11,21,34,0.0 +15085,31,12.5,38,0.0 +15085,53,32.8,10,0.0 +15085,18,62.5,25,0.0 +15085,55,24,23,0.0 +15085,67,14,26,0.0 +15085,19,9.2,27,0.0 +15085,69,36,14,0.0 +15085,58,13.25,40,0.0 +15085,65,21.05,21,0.0 +15085,15,15.5,13,0.0 +15085,52,7,37,0.0 +15085,73,15,27,0.0 +15085,10,31,26,0.0 +15085,59,55,29,0.0 +15085,46,12,33,0.0 +15085,44,19.45,17,0.0 +15085,23,9,11,0.0 +15085,8,40,10,0.0 +15085,13,6,37,0.0 +15085,22,21,26,0.0 +15085,2,19,36,0.0 +15085,60,34,27,0.0 +15085,6,25,2,0.0 +15085,37,26,45,0.0 +15085,70,15,48,0.0 +15085,21,10,22,0.0 +15085,47,9.5,22,0.0 +15085,57,19.5,43,0.0 +15085,17,39,35,0.0 +15085,1,18,6,0.0 +15085,54,7.45,4,0.0 +15085,61,28.5,11,0.0 +15085,45,9.5,43,0.0 +15085,33,2.5,50,0.0 +15085,5,21.35,3,0.0 +15085,25,14,43,0.0 +15085,39,18,49,0.0 +15085,43,46,42,0.0 +15085,38,263.5,29,0.0 +15085,24,4.5,15,0.0 +15085,36,19,38,0.0 +15085,40,18.4,21,0.0 +15085,42,14,12,0.0 +15085,9,97,5,0.0 +15085,14,23.25,32,0.0 +15085,35,18,44,0.0 +15085,71,21.5,28,0.0 +15085,76,18,27,0.0 +15085,68,12.5,25,0.0 +15085,48,12.75,31,0.0 +15085,50,16.25,27,0.0 +15085,51,53,40,0.0 +15085,49,20,19,0.0 +15085,26,31.23,44,0.0 +15085,74,10,4,0.0 +15085,30,25.89,14,0.0 +15085,75,7.75,47,0.0 +15085,28,45.6,41,0.0 +15085,27,43.9,41,0.0 +15086,65,21.05,15,0.0 +15086,12,38,46,0.0 +15086,69,36,10,0.0 +15086,4,22,32,0.0 +15086,47,9.5,50,0.0 +15086,77,13,3,0.0 +15086,50,16.25,6,0.0 +15086,52,7,8,0.0 +15086,56,38,14,0.0 +15086,36,19,41,0.0 +15086,71,21.5,12,0.0 +15086,5,21.35,49,0.0 +15086,61,28.5,41,0.0 +15086,59,55,6,0.0 +15086,17,39,13,0.0 +15086,34,14,23,0.0 +15086,39,18,36,0.0 +15086,46,12,36,0.0 +15086,70,15,12,0.0 +15086,24,4.5,15,0.0 +15086,58,13.25,1,0.0 +15086,41,9.65,28,0.0 +15086,73,15,18,0.0 +15086,72,34.8,22,0.0 +15086,48,12.75,12,0.0 +15086,25,14,8,0.0 +15086,8,40,33,0.0 +15086,51,53,7,0.0 +15086,9,97,18,0.0 +15086,19,9.2,1,0.0 +15086,54,7.45,13,0.0 +15086,66,17,48,0.0 +15086,31,12.5,30,0.0 +15086,55,24,22,0.0 +15086,60,34,19,0.0 +15086,64,33.25,1,0.0 +15086,32,32,18,0.0 +15086,40,18.4,8,0.0 +15086,29,123.79,47,0.0 +15086,30,25.89,48,0.0 +15086,16,17.45,24,0.0 +15086,13,6,37,0.0 +15086,20,81,15,0.0 +15086,42,14,40,0.0 +15086,43,46,9,0.0 +15086,10,31,36,0.0 +15086,3,10,45,0.0 +15086,6,25,21,0.0 +15086,33,2.5,10,0.0 +15086,44,19.45,9,0.0 +15086,63,43.9,49,0.0 +15086,27,43.9,34,0.0 +15086,53,32.8,14,0.0 +15087,64,33.25,37,0.0 +15087,7,30,16,0.0 +15087,20,81,19,0.0 +15087,8,40,11,0.0 +15087,27,43.9,3,0.0 +15087,30,25.89,48,0.0 +15087,48,12.75,27,0.0 +15087,4,22,36,0.0 +15087,9,97,17,0.0 +15087,75,7.75,3,0.0 +15087,18,62.5,26,0.0 +15087,65,21.05,44,0.0 +15087,76,18,44,0.0 +15087,14,23.25,10,0.0 +15087,3,10,5,0.0 +15087,12,38,8,0.0 +15087,26,31.23,45,0.0 +15087,40,18.4,33,0.0 +15087,63,43.9,41,0.0 +15087,51,53,38,0.0 +15087,37,26,16,0.0 +15087,16,17.45,20,0.0 +15087,61,28.5,12,0.0 +15087,25,14,49,0.0 +15087,66,17,23,0.0 +15087,31,12.5,32,0.0 +15087,32,32,28,0.0 +15087,5,21.35,23,0.0 +15087,44,19.45,10,0.0 +15087,77,13,40,0.0 +15087,58,13.25,50,0.0 +15087,67,14,45,0.0 +15087,22,21,46,0.0 +15087,11,21,17,0.0 +15087,35,18,17,0.0 +15087,17,39,6,0.0 +15087,13,6,19,0.0 +15087,1,18,22,0.0 +15087,21,10,44,0.0 +15087,2,19,33,0.0 +15087,59,55,12,0.0 +15087,57,19.5,25,0.0 +15087,29,123.79,25,0.0 +15087,72,34.8,26,0.0 +15087,73,15,43,0.0 +15087,34,14,17,0.0 +15087,69,36,16,0.0 +15087,53,32.8,25,0.0 +15087,45,9.5,5,0.0 +15087,15,15.5,34,0.0 +15087,36,19,44,0.0 +15087,74,10,33,0.0 +15087,10,31,40,0.0 +15087,6,25,5,0.0 +15087,42,14,40,0.0 +15087,71,21.5,41,0.0 +15087,60,34,22,0.0 +15087,19,9.2,21,0.0 +15088,63,43.9,42,0.0 +15088,54,7.45,48,0.0 +15088,21,10,34,0.0 +15088,69,36,15,0.0 +15088,71,21.5,47,0.0 +15088,57,19.5,13,0.0 +15088,31,12.5,27,0.0 +15088,46,12,34,0.0 +15088,17,39,39,0.0 +15088,1,18,5,0.0 +15088,59,55,30,0.0 +15088,43,46,50,0.0 +15088,77,13,26,0.0 +15088,51,53,13,0.0 +15088,53,32.8,39,0.0 +15088,60,34,12,0.0 +15088,6,25,39,0.0 +15088,61,28.5,22,0.0 +15088,40,18.4,15,0.0 +15088,65,21.05,32,0.0 +15088,47,9.5,22,0.0 +15088,32,32,46,0.0 +15088,42,14,28,0.0 +15088,74,10,27,0.0 +15088,68,12.5,4,0.0 +15088,39,18,25,0.0 +15088,64,33.25,48,0.0 +15088,34,14,50,0.0 +15088,56,38,44,0.0 +15088,55,24,43,0.0 +15088,52,7,12,0.0 +15088,75,7.75,5,0.0 +15088,26,31.23,35,0.0 +15088,9,97,36,0.0 +15088,12,38,38,0.0 +15088,25,14,42,0.0 +15088,58,13.25,42,0.0 +15088,3,10,28,0.0 +15088,13,6,5,0.0 +15088,29,123.79,33,0.0 +15088,35,18,50,0.0 +15088,24,4.5,49,0.0 +15088,45,9.5,39,0.0 +15088,14,23.25,31,0.0 +15088,49,20,16,0.0 +15088,28,45.6,44,0.0 +15088,38,263.5,7,0.0 +15088,10,31,9,0.0 +15088,11,21,33,0.0 +15088,33,2.5,28,0.0 +15088,44,19.45,37,0.0 +15089,54,7.45,21,0.0 +15089,70,15,13,0.0 +15089,1,18,7,0.0 +15089,10,31,23,0.0 +15089,52,7,24,0.0 +15089,46,12,12,0.0 +15089,27,43.9,41,0.0 +15089,15,15.5,20,0.0 +15089,39,18,10,0.0 +15089,74,10,38,0.0 +15089,38,263.5,41,0.0 +15089,40,18.4,33,0.0 +15089,19,9.2,46,0.0 +15089,63,43.9,12,0.0 +15089,67,14,40,0.0 +15089,75,7.75,5,0.0 +15089,26,31.23,30,0.0 +15089,41,9.65,10,0.0 +15090,22,21,9,0.0 +15090,77,13,7,0.0 +15090,15,15.5,17,0.0 +15090,34,14,11,0.0 +15090,37,26,35,0.0 +15090,2,19,28,0.0 +15090,7,30,44,0.0 +15090,16,17.45,16,0.0 +15090,42,14,26,0.0 +15090,14,23.25,37,0.0 +15090,61,28.5,20,0.0 +15090,12,38,9,0.0 +15090,57,19.5,45,0.0 +15090,51,53,12,0.0 +15090,28,45.6,14,0.0 +15090,55,24,36,0.0 +15090,24,4.5,9,0.0 +15090,69,36,9,0.0 +15090,67,14,17,0.0 +15090,74,10,6,0.0 +15090,26,31.23,8,0.0 +15090,36,19,36,0.0 +15090,1,18,16,0.0 +15090,46,12,36,0.0 +15090,41,9.65,22,0.0 +15090,73,15,40,0.0 +15090,49,20,46,0.0 +15090,27,43.9,6,0.0 +15090,39,18,13,0.0 +15090,25,14,33,0.0 +15090,60,34,48,0.0 +15090,21,10,38,0.0 +15090,33,2.5,50,0.0 +15090,32,32,45,0.0 +15090,62,49.3,31,0.0 +15090,63,43.9,48,0.0 +15090,10,31,27,0.0 +15090,68,12.5,18,0.0 +15090,75,7.75,47,0.0 +15090,76,18,45,0.0 +15090,54,7.45,27,0.0 +15090,64,33.25,21,0.0 +15090,53,32.8,19,0.0 +15090,19,9.2,47,0.0 +15090,66,17,21,0.0 +15090,6,25,24,0.0 +15090,48,12.75,15,0.0 +15090,3,10,11,0.0 +15090,50,16.25,43,0.0 +15090,4,22,24,0.0 +15090,59,55,32,0.0 +15090,30,25.89,21,0.0 +15091,46,12,29,0.0 +15091,66,17,50,0.0 +15091,33,2.5,7,0.0 +15091,65,21.05,35,0.0 +15091,12,38,19,0.0 +15091,42,14,1,0.0 +15091,2,19,38,0.0 +15091,75,7.75,49,0.0 +15091,36,19,22,0.0 +15091,54,7.45,5,0.0 +15091,59,55,27,0.0 +15091,49,20,29,0.0 +15091,30,25.89,28,0.0 +15091,7,30,20,0.0 +15091,13,6,31,0.0 +15091,23,9,24,0.0 +15091,74,10,45,0.0 +15091,24,4.5,10,0.0 +15091,60,34,18,0.0 +15091,29,123.79,49,0.0 +15091,20,81,9,0.0 +15091,61,28.5,29,0.0 +15091,58,13.25,1,0.0 +15091,19,9.2,3,0.0 +15091,28,45.6,16,0.0 +15091,9,97,17,0.0 +15091,4,22,12,0.0 +15091,25,14,14,0.0 +15091,32,32,21,0.0 +15091,68,12.5,13,0.0 +15091,8,40,8,0.0 +15091,47,9.5,24,0.0 +15091,67,14,46,0.0 +15091,31,12.5,21,0.0 +15091,71,21.5,26,0.0 +15091,15,15.5,6,0.0 +15091,53,32.8,44,0.0 +15091,77,13,50,0.0 +15091,43,46,16,0.0 +15091,64,33.25,17,0.0 +15091,45,9.5,12,0.0 +15091,76,18,21,0.0 +15091,3,10,44,0.0 +15091,16,17.45,12,0.0 +15091,11,21,21,0.0 +15091,6,25,41,0.0 +15091,57,19.5,50,0.0 +15091,26,31.23,20,0.0 +15091,70,15,35,0.0 +15091,35,18,45,0.0 +15091,39,18,2,0.0 +15091,40,18.4,11,0.0 +15092,76,18,11,0.0 +15092,16,17.45,6,0.0 +15092,54,7.45,10,0.0 +15092,6,25,39,0.0 +15092,17,39,13,0.0 +15092,39,18,25,0.0 +15092,38,263.5,19,0.0 +15092,4,22,11,0.0 +15092,35,18,33,0.0 +15092,43,46,19,0.0 +15092,11,21,42,0.0 +15092,57,19.5,45,0.0 +15092,27,43.9,1,0.0 +15092,14,23.25,38,0.0 +15092,50,16.25,31,0.0 +15092,65,21.05,11,0.0 +15092,8,40,32,0.0 +15092,47,9.5,11,0.0 +15092,73,15,19,0.0 +15092,41,9.65,5,0.0 +15092,49,20,37,0.0 +15092,71,21.5,9,0.0 +15092,15,15.5,37,0.0 +15092,72,34.8,38,0.0 +15092,67,14,27,0.0 +15092,9,97,19,0.0 +15092,32,32,41,0.0 +15092,30,25.89,15,0.0 +15092,70,15,24,0.0 +15092,3,10,32,0.0 +15092,1,18,45,0.0 +15092,33,2.5,31,0.0 +15092,42,14,10,0.0 +15092,75,7.75,45,0.0 +15092,53,32.8,41,0.0 +15092,58,13.25,3,0.0 +15092,40,18.4,28,0.0 +15092,18,62.5,38,0.0 +15092,66,17,11,0.0 +15092,10,31,46,0.0 +15092,68,12.5,30,0.0 +15093,50,16.25,4,0.0 +15093,15,15.5,15,0.0 +15093,17,39,38,0.0 +15093,49,20,1,0.0 +15093,29,123.79,17,0.0 +15093,38,263.5,49,0.0 +15093,67,14,11,0.0 +15093,42,14,24,0.0 +15093,31,12.5,35,0.0 +15093,32,32,47,0.0 +15093,35,18,38,0.0 +15093,63,43.9,28,0.0 +15093,5,21.35,37,0.0 +15093,54,7.45,24,0.0 +15093,30,25.89,12,0.0 +15093,55,24,39,0.0 +15093,70,15,30,0.0 +15093,12,38,26,0.0 +15093,23,9,22,0.0 +15093,66,17,45,0.0 +15093,71,21.5,34,0.0 +15093,18,62.5,41,0.0 +15093,21,10,4,0.0 +15093,69,36,48,0.0 +15093,3,10,16,0.0 +15093,36,19,45,0.0 +15093,75,7.75,10,0.0 +15093,76,18,8,0.0 +15093,20,81,17,0.0 +15093,57,19.5,4,0.0 +15093,74,10,50,0.0 +15093,60,34,31,0.0 +15093,56,38,38,0.0 +15093,34,14,25,0.0 +15093,45,9.5,48,0.0 +15093,2,19,10,0.0 +15093,1,18,10,0.0 +15093,6,25,45,0.0 +15093,72,34.8,16,0.0 +15093,51,53,8,0.0 +15093,27,43.9,24,0.0 +15093,48,12.75,22,0.0 +15093,73,15,27,0.0 +15093,9,97,47,0.0 +15094,54,7.45,19,0.0 +15094,9,97,29,0.0 +15094,21,10,40,0.0 +15094,45,9.5,38,0.0 +15094,7,30,5,0.0 +15094,10,31,38,0.0 +15094,68,12.5,33,0.0 +15094,55,24,41,0.0 +15094,8,40,29,0.0 +15094,43,46,27,0.0 +15094,24,4.5,45,0.0 +15094,5,21.35,39,0.0 +15094,73,15,48,0.0 +15094,66,17,38,0.0 +15094,46,12,41,0.0 +15094,44,19.45,34,0.0 +15094,27,43.9,50,0.0 +15094,58,13.25,4,0.0 +15094,71,21.5,18,0.0 +15094,15,15.5,12,0.0 +15094,6,25,44,0.0 +15095,46,12,38,0.0 +15095,55,24,34,0.0 +15095,28,45.6,44,0.0 +15095,71,21.5,37,0.0 +15095,8,40,12,0.0 +15095,9,97,8,0.0 +15095,66,17,28,0.0 +15095,65,21.05,17,0.0 +15095,76,18,7,0.0 +15095,29,123.79,19,0.0 +15095,47,9.5,33,0.0 +15095,67,14,22,0.0 +15095,45,9.5,36,0.0 +15095,63,43.9,1,0.0 +15095,75,7.75,36,0.0 +15095,12,38,34,0.0 +15095,60,34,8,0.0 +15095,7,30,26,0.0 +15095,27,43.9,28,0.0 +15095,25,14,18,0.0 +15095,70,15,25,0.0 +15095,22,21,10,0.0 +15095,18,62.5,5,0.0 +15095,36,19,17,0.0 +15095,10,31,34,0.0 +15095,34,14,46,0.0 +15095,69,36,21,0.0 +15095,23,9,30,0.0 +15095,30,25.89,43,0.0 +15095,14,23.25,10,0.0 +15095,53,32.8,27,0.0 +15095,21,10,40,0.0 +15095,38,263.5,34,0.0 +15095,57,19.5,4,0.0 +15095,13,6,32,0.0 +15095,61,28.5,15,0.0 +15095,31,12.5,49,0.0 +15095,56,38,9,0.0 +15095,41,9.65,4,0.0 +15095,3,10,22,0.0 +15095,33,2.5,9,0.0 +15095,37,26,37,0.0 +15095,72,34.8,50,0.0 +15095,39,18,16,0.0 +15095,26,31.23,28,0.0 +15095,4,22,20,0.0 +15095,49,20,47,0.0 +15095,52,7,35,0.0 +15095,15,15.5,13,0.0 +15095,6,25,9,0.0 +15095,19,9.2,41,0.0 +15095,44,19.45,19,0.0 +15095,74,10,43,0.0 +15095,24,4.5,40,0.0 +15095,35,18,10,0.0 +15095,62,49.3,47,0.0 +15095,42,14,34,0.0 +15095,32,32,37,0.0 +15095,68,12.5,24,0.0 +15095,48,12.75,30,0.0 +15095,11,21,40,0.0 +15095,77,13,19,0.0 +15095,50,16.25,47,0.0 +15095,1,18,49,0.0 +15095,51,53,18,0.0 +15095,43,46,8,0.0 +15095,54,7.45,14,0.0 +15096,71,21.5,35,0.0 +15096,18,62.5,25,0.0 +15096,64,33.25,21,0.0 +15096,32,32,19,0.0 +15096,56,38,20,0.0 +15096,24,4.5,45,0.0 +15096,31,12.5,33,0.0 +15096,43,46,35,0.0 +15096,4,22,15,0.0 +15096,19,9.2,40,0.0 +15096,12,38,27,0.0 +15096,29,123.79,32,0.0 +15096,53,32.8,38,0.0 +15096,50,16.25,10,0.0 +15096,72,34.8,10,0.0 +15096,46,12,17,0.0 +15096,45,9.5,26,0.0 +15096,55,24,42,0.0 +15096,47,9.5,28,0.0 +15096,39,18,45,0.0 +15096,17,39,42,0.0 +15096,74,10,11,0.0 +15096,40,18.4,15,0.0 +15096,8,40,33,0.0 +15096,75,7.75,15,0.0 +15096,5,21.35,1,0.0 +15096,49,20,9,0.0 +15096,10,31,21,0.0 +15096,70,15,27,0.0 +15096,38,263.5,30,0.0 +15096,14,23.25,21,0.0 +15096,59,55,48,0.0 +15096,62,49.3,28,0.0 +15096,66,17,33,0.0 +15096,37,26,5,0.0 +15096,58,13.25,9,0.0 +15096,35,18,1,0.0 +15096,48,12.75,17,0.0 +15096,57,19.5,20,0.0 +15096,16,17.45,47,0.0 +15096,30,25.89,30,0.0 +15096,23,9,41,0.0 +15096,44,19.45,8,0.0 +15096,6,25,46,0.0 +15096,25,14,9,0.0 +15096,68,12.5,25,0.0 +15096,28,45.6,9,0.0 +15096,11,21,10,0.0 +15096,76,18,22,0.0 +15096,51,53,39,0.0 +15096,1,18,36,0.0 +15096,73,15,25,0.0 +15096,26,31.23,21,0.0 +15096,77,13,15,0.0 +15096,2,19,7,0.0 +15096,33,2.5,44,0.0 +15096,3,10,37,0.0 +15096,36,19,45,0.0 +15096,69,36,42,0.0 +15096,65,21.05,12,0.0 +15096,20,81,12,0.0 +15096,21,10,16,0.0 +15096,41,9.65,26,0.0 +15096,34,14,18,0.0 +15096,15,15.5,33,0.0 +15096,63,43.9,37,0.0 +15096,61,28.5,29,0.0 +15097,21,10,26,0.0 +15097,51,53,40,0.0 +15097,57,19.5,27,0.0 +15097,26,31.23,38,0.0 +15097,36,19,3,0.0 +15097,53,32.8,17,0.0 +15097,56,38,47,0.0 +15097,71,21.5,5,0.0 +15097,62,49.3,27,0.0 +15097,1,18,9,0.0 +15097,58,13.25,46,0.0 +15097,65,21.05,41,0.0 +15097,64,33.25,9,0.0 +15097,19,9.2,31,0.0 +15097,10,31,20,0.0 +15097,33,2.5,18,0.0 +15097,15,15.5,24,0.0 +15097,5,21.35,10,0.0 +15097,77,13,18,0.0 +15097,73,15,28,0.0 +15097,13,6,12,0.0 +15097,67,14,35,0.0 +15097,52,7,4,0.0 +15097,69,36,33,0.0 +15097,31,12.5,45,0.0 +15097,25,14,13,0.0 +15097,35,18,25,0.0 +15097,47,9.5,28,0.0 +15097,2,19,38,0.0 +15097,30,25.89,32,0.0 +15097,6,25,45,0.0 +15097,18,62.5,39,0.0 +15097,9,97,28,0.0 +15097,20,81,15,0.0 +15097,59,55,48,0.0 +15097,40,18.4,29,0.0 +15097,50,16.25,13,0.0 +15097,46,12,36,0.0 +15097,23,9,11,0.0 +15097,7,30,44,0.0 +15097,37,26,17,0.0 +15097,16,17.45,6,0.0 +15097,38,263.5,34,0.0 +15097,72,34.8,41,0.0 +15097,8,40,32,0.0 +15097,55,24,18,0.0 +15097,27,43.9,48,0.0 +15097,24,4.5,15,0.0 +15097,17,39,29,0.0 +15097,42,14,31,0.0 +15097,41,9.65,38,0.0 +15097,3,10,7,0.0 +15097,4,22,41,0.0 +15097,68,12.5,32,0.0 +15097,11,21,7,0.0 +15097,48,12.75,4,0.0 +15097,74,10,21,0.0 +15097,66,17,17,0.0 +15097,43,46,37,0.0 +15097,12,38,5,0.0 +15097,54,7.45,24,0.0 +15097,28,45.6,25,0.0 +15097,75,7.75,8,0.0 +15097,76,18,4,0.0 +15097,63,43.9,29,0.0 +15097,34,14,22,0.0 +15097,29,123.79,29,0.0 +15097,14,23.25,5,0.0 +15097,49,20,5,0.0 +15098,62,49.3,48,0.0 +15098,51,53,26,0.0 +15098,66,17,46,0.0 +15098,6,25,29,0.0 +15098,24,4.5,30,0.0 +15098,17,39,33,0.0 +15098,23,9,33,0.0 +15098,10,31,48,0.0 +15098,29,123.79,11,0.0 +15098,34,14,50,0.0 +15098,27,43.9,43,0.0 +15098,53,32.8,4,0.0 +15098,70,15,11,0.0 +15098,35,18,1,0.0 +15098,42,14,15,0.0 +15098,61,28.5,19,0.0 +15098,21,10,44,0.0 +15098,54,7.45,39,0.0 +15098,63,43.9,25,0.0 +15098,7,30,7,0.0 +15098,52,7,21,0.0 +15098,55,24,28,0.0 +15098,3,10,8,0.0 +15098,60,34,40,0.0 +15098,67,14,9,0.0 +15099,59,55,46,0.0 +15099,53,32.8,7,0.0 +15099,71,21.5,24,0.0 +15099,55,24,43,0.0 +15099,63,43.9,19,0.0 +15099,74,10,38,0.0 +15099,14,23.25,37,0.0 +15099,39,18,36,0.0 +15099,1,18,28,0.0 +15099,40,18.4,7,0.0 +15099,20,81,20,0.0 +15099,43,46,33,0.0 +15099,34,14,33,0.0 +15099,12,38,8,0.0 +15099,7,30,18,0.0 +15099,10,31,26,0.0 +15100,7,30,26,0.0 +15100,24,4.5,46,0.0 +15100,57,19.5,34,0.0 +15100,77,13,2,0.0 +15100,26,31.23,3,0.0 +15100,30,25.89,36,0.0 +15100,11,21,7,0.0 +15100,10,31,18,0.0 +15100,74,10,16,0.0 +15100,72,34.8,29,0.0 +15100,34,14,30,0.0 +15100,27,43.9,38,0.0 +15100,43,46,11,0.0 +15100,8,40,16,0.0 +15100,9,97,26,0.0 +15100,76,18,47,0.0 +15100,67,14,48,0.0 +15100,37,26,49,0.0 +15100,66,17,50,0.0 +15100,42,14,2,0.0 +15100,28,45.6,34,0.0 +15100,69,36,3,0.0 +15100,46,12,42,0.0 +15100,22,21,31,0.0 +15100,39,18,46,0.0 +15100,36,19,3,0.0 +15100,41,9.65,24,0.0 +15100,18,62.5,49,0.0 +15100,47,9.5,14,0.0 +15100,35,18,50,0.0 +15100,16,17.45,20,0.0 +15100,5,21.35,10,0.0 +15100,19,9.2,4,0.0 +15100,23,9,50,0.0 +15100,33,2.5,9,0.0 +15100,14,23.25,3,0.0 +15100,70,15,6,0.0 +15101,35,18,12,0.0 +15101,65,21.05,15,0.0 +15101,62,49.3,48,0.0 +15101,61,28.5,48,0.0 +15101,38,263.5,24,0.0 +15101,7,30,25,0.0 +15101,12,38,46,0.0 +15101,57,19.5,43,0.0 +15101,34,14,21,0.0 +15101,23,9,35,0.0 +15101,76,18,25,0.0 +15101,74,10,31,0.0 +15101,26,31.23,15,0.0 +15101,21,10,46,0.0 +15101,8,40,8,0.0 +15101,31,12.5,33,0.0 +15101,60,34,13,0.0 +15101,11,21,34,0.0 +15101,72,34.8,10,0.0 +15101,59,55,17,0.0 +15101,33,2.5,48,0.0 +15101,68,12.5,45,0.0 +15101,18,62.5,38,0.0 +15101,10,31,30,0.0 +15101,24,4.5,6,0.0 +15101,17,39,21,0.0 +15101,54,7.45,42,0.0 +15101,58,13.25,18,0.0 +15101,56,38,32,0.0 +15101,71,21.5,28,0.0 +15101,77,13,37,0.0 +15101,66,17,15,0.0 +15101,25,14,5,0.0 +15101,5,21.35,6,0.0 +15101,45,9.5,39,0.0 +15101,15,15.5,26,0.0 +15101,39,18,36,0.0 +15101,6,25,7,0.0 +15101,13,6,44,0.0 +15101,20,81,50,0.0 +15101,14,23.25,42,0.0 +15101,1,18,26,0.0 +15101,46,12,21,0.0 +15101,27,43.9,31,0.0 +15101,49,20,34,0.0 +15101,36,19,2,0.0 +15101,67,14,45,0.0 +15101,19,9.2,21,0.0 +15101,2,19,43,0.0 +15101,44,19.45,19,0.0 +15101,48,12.75,9,0.0 +15101,40,18.4,41,0.0 +15101,16,17.45,26,0.0 +15101,43,46,14,0.0 +15101,4,22,48,0.0 +15101,75,7.75,25,0.0 +15101,30,25.89,34,0.0 +15101,22,21,39,0.0 +15101,63,43.9,40,0.0 +15101,52,7,49,0.0 +15101,9,97,18,0.0 +15101,29,123.79,16,0.0 +15101,50,16.25,25,0.0 +15101,32,32,37,0.0 +15101,41,9.65,11,0.0 +15101,55,24,13,0.0 +15101,28,45.6,39,0.0 +15101,64,33.25,50,0.0 +15101,47,9.5,48,0.0 +15101,42,14,21,0.0 +15101,69,36,31,0.0 +15102,33,2.5,15,0.0 +15102,70,15,40,0.0 +15102,41,9.65,7,0.0 +15102,38,263.5,30,0.0 +15102,63,43.9,47,0.0 +15102,40,18.4,6,0.0 +15102,53,32.8,48,0.0 +15102,6,25,12,0.0 +15102,72,34.8,11,0.0 +15102,60,34,12,0.0 +15102,76,18,9,0.0 +15102,32,32,21,0.0 +15102,27,43.9,36,0.0 +15102,46,12,31,0.0 +15102,14,23.25,29,0.0 +15102,77,13,17,0.0 +15102,15,15.5,32,0.0 +15102,64,33.25,24,0.0 +15102,13,6,33,0.0 +15102,47,9.5,9,0.0 +15102,61,28.5,24,0.0 +15102,69,36,12,0.0 +15102,67,14,31,0.0 +15102,36,19,43,0.0 +15102,3,10,18,0.0 +15103,10,31,41,0.0 +15103,65,21.05,18,0.0 +15103,63,43.9,9,0.0 +15103,44,19.45,35,0.0 +15103,39,18,29,0.0 +15103,2,19,10,0.0 +15103,54,7.45,34,0.0 +15103,14,23.25,24,0.0 +15103,19,9.2,40,0.0 +15103,32,32,1,0.0 +15103,49,20,30,0.0 +15103,12,38,9,0.0 +15103,40,18.4,3,0.0 +15103,62,49.3,25,0.0 +15103,71,21.5,11,0.0 +15103,53,32.8,14,0.0 +15103,51,53,41,0.0 +15103,17,39,2,0.0 +15103,70,15,29,0.0 +15103,37,26,16,0.0 +15103,77,13,38,0.0 +15103,45,9.5,20,0.0 +15103,42,14,22,0.0 +15103,30,25.89,23,0.0 +15103,13,6,31,0.0 +15103,22,21,48,0.0 +15103,38,263.5,40,0.0 +15104,63,43.9,42,0.0 +15104,25,14,36,0.0 +15104,47,9.5,47,0.0 +15104,58,13.25,16,0.0 +15104,42,14,30,0.0 +15104,39,18,2,0.0 +15104,41,9.65,49,0.0 +15104,22,21,20,0.0 +15104,17,39,32,0.0 +15104,29,123.79,2,0.0 +15104,3,10,20,0.0 +15104,70,15,26,0.0 +15104,16,17.45,2,0.0 +15105,27,43.9,40,0.0 +15105,21,10,25,0.0 +15105,22,21,29,0.0 +15105,56,38,32,0.0 +15105,77,13,35,0.0 +15105,12,38,19,0.0 +15105,54,7.45,7,0.0 +15105,47,9.5,40,0.0 +15105,10,31,17,0.0 +15105,40,18.4,15,0.0 +15105,60,34,38,0.0 +15105,51,53,6,0.0 +15105,26,31.23,1,0.0 +15105,9,97,16,0.0 +15105,69,36,9,0.0 +15105,2,19,45,0.0 +15105,17,39,25,0.0 +15105,70,15,24,0.0 +15105,25,14,41,0.0 +15105,36,19,40,0.0 +15105,74,10,16,0.0 +15105,13,6,21,0.0 +15105,45,9.5,6,0.0 +15105,61,28.5,46,0.0 +15105,53,32.8,45,0.0 +15105,29,123.79,50,0.0 +15105,42,14,20,0.0 +15105,66,17,36,0.0 +15105,20,81,11,0.0 +15105,62,49.3,30,0.0 +15105,32,32,16,0.0 +15105,67,14,30,0.0 +15105,14,23.25,29,0.0 +15105,41,9.65,20,0.0 +15105,68,12.5,47,0.0 +15105,39,18,4,0.0 +15105,5,21.35,18,0.0 +15105,63,43.9,1,0.0 +15105,11,21,9,0.0 +15105,55,24,27,0.0 +15105,73,15,19,0.0 +15105,75,7.75,9,0.0 +15105,59,55,14,0.0 +15105,71,21.5,14,0.0 +15106,30,25.89,49,0.0 +15106,64,33.25,24,0.0 +15106,62,49.3,32,0.0 +15106,55,24,18,0.0 +15106,19,9.2,29,0.0 +15106,31,12.5,42,0.0 +15106,51,53,21,0.0 +15106,1,18,11,0.0 +15106,5,21.35,12,0.0 +15106,26,31.23,41,0.0 +15106,2,19,20,0.0 +15106,17,39,29,0.0 +15106,58,13.25,8,0.0 +15106,20,81,2,0.0 +15106,54,7.45,27,0.0 +15106,70,15,23,0.0 +15106,43,46,39,0.0 +15106,24,4.5,24,0.0 +15106,47,9.5,32,0.0 +15106,33,2.5,20,0.0 +15106,8,40,8,0.0 +15106,6,25,16,0.0 +15106,72,34.8,10,0.0 +15106,9,97,3,0.0 +15106,18,62.5,24,0.0 +15106,52,7,42,0.0 +15106,45,9.5,36,0.0 +15106,38,263.5,26,0.0 +15106,11,21,12,0.0 +15106,39,18,18,0.0 +15106,13,6,44,0.0 +15106,4,22,16,0.0 +15106,15,15.5,19,0.0 +15106,36,19,36,0.0 +15106,7,30,30,0.0 +15106,42,14,27,0.0 +15106,66,17,37,0.0 +15106,16,17.45,29,0.0 +15106,41,9.65,10,0.0 +15106,48,12.75,37,0.0 +15106,12,38,32,0.0 +15106,67,14,46,0.0 +15106,14,23.25,2,0.0 +15106,73,15,33,0.0 +15106,56,38,21,0.0 +15106,34,14,21,0.0 +15106,59,55,48,0.0 +15106,63,43.9,12,0.0 +15106,37,26,41,0.0 +15106,68,12.5,42,0.0 +15106,29,123.79,28,0.0 +15106,27,43.9,12,0.0 +15106,71,21.5,15,0.0 +15106,49,20,27,0.0 +15106,35,18,34,0.0 +15106,22,21,1,0.0 +15106,76,18,47,0.0 +15106,61,28.5,27,0.0 +15106,44,19.45,40,0.0 +15106,25,14,36,0.0 +15106,60,34,34,0.0 +15106,75,7.75,44,0.0 +15106,69,36,50,0.0 +15106,74,10,43,0.0 +15106,77,13,22,0.0 +15106,65,21.05,41,0.0 +15106,40,18.4,15,0.0 +15106,53,32.8,45,0.0 +15106,23,9,47,0.0 +15106,3,10,38,0.0 +15107,35,18,21,0.0 +15107,51,53,21,0.0 +15107,54,7.45,14,0.0 +15107,10,31,16,0.0 +15107,7,30,35,0.0 +15107,39,18,49,0.0 +15107,71,21.5,11,0.0 +15107,64,33.25,36,0.0 +15107,69,36,7,0.0 +15107,38,263.5,27,0.0 +15107,77,13,8,0.0 +15107,2,19,27,0.0 +15108,29,123.79,43,0.0 +15108,43,46,39,0.0 +15108,48,12.75,43,0.0 +15108,41,9.65,20,0.0 +15108,60,34,13,0.0 +15108,66,17,1,0.0 +15108,67,14,10,0.0 +15108,11,21,9,0.0 +15108,61,28.5,45,0.0 +15108,62,49.3,39,0.0 +15108,75,7.75,22,0.0 +15108,31,12.5,10,0.0 +15108,52,7,34,0.0 +15108,2,19,39,0.0 +15108,34,14,7,0.0 +15108,54,7.45,2,0.0 +15108,57,19.5,11,0.0 +15108,12,38,32,0.0 +15108,70,15,36,0.0 +15108,6,25,34,0.0 +15108,15,15.5,14,0.0 +15108,68,12.5,39,0.0 +15108,18,62.5,41,0.0 +15108,32,32,50,0.0 +15108,40,18.4,21,0.0 +15108,25,14,20,0.0 +15108,20,81,33,0.0 +15108,35,18,3,0.0 +15108,51,53,16,0.0 +15108,76,18,48,0.0 +15108,13,6,44,0.0 +15108,45,9.5,31,0.0 +15108,73,15,26,0.0 +15108,46,12,5,0.0 +15108,65,21.05,33,0.0 +15108,77,13,13,0.0 +15108,39,18,37,0.0 +15108,26,31.23,4,0.0 +15108,74,10,29,0.0 +15108,71,21.5,9,0.0 +15108,58,13.25,5,0.0 +15108,14,23.25,16,0.0 +15108,21,10,23,0.0 +15108,22,21,46,0.0 +15108,27,43.9,43,0.0 +15108,37,26,21,0.0 +15108,19,9.2,11,0.0 +15108,47,9.5,8,0.0 +15108,17,39,39,0.0 +15108,23,9,27,0.0 +15108,4,22,24,0.0 +15108,56,38,34,0.0 +15108,1,18,44,0.0 +15109,11,21,11,0.0 +15109,32,32,14,0.0 +15109,61,28.5,36,0.0 +15109,23,9,3,0.0 +15109,73,15,22,0.0 +15109,26,31.23,4,0.0 +15109,13,6,37,0.0 +15109,67,14,34,0.0 +15109,4,22,45,0.0 +15109,57,19.5,23,0.0 +15109,50,16.25,50,0.0 +15109,24,4.5,22,0.0 +15109,53,32.8,9,0.0 +15109,15,15.5,5,0.0 +15109,14,23.25,19,0.0 +15109,49,20,37,0.0 +15109,62,49.3,40,0.0 +15109,46,12,45,0.0 +15109,29,123.79,46,0.0 +15109,5,21.35,31,0.0 +15109,30,25.89,41,0.0 +15109,60,34,28,0.0 +15109,70,15,18,0.0 +15109,31,12.5,48,0.0 +15109,19,9.2,17,0.0 +15109,64,33.25,25,0.0 +15109,42,14,50,0.0 +15109,12,38,8,0.0 +15110,17,39,3,0.0 +15110,61,28.5,24,0.0 +15110,73,15,15,0.0 +15110,50,16.25,39,0.0 +15110,74,10,18,0.0 +15110,72,34.8,50,0.0 +15110,75,7.75,12,0.0 +15110,52,7,21,0.0 +15110,39,18,40,0.0 +15110,65,21.05,35,0.0 +15110,21,10,24,0.0 +15110,45,9.5,32,0.0 +15110,6,25,31,0.0 +15110,49,20,19,0.0 +15110,41,9.65,12,0.0 +15110,69,36,45,0.0 +15110,66,17,22,0.0 +15110,12,38,10,0.0 +15110,44,19.45,35,0.0 +15110,46,12,3,0.0 +15110,55,24,4,0.0 +15110,15,15.5,47,0.0 +15110,42,14,26,0.0 +15110,37,26,49,0.0 +15110,68,12.5,26,0.0 +15110,43,46,9,0.0 +15110,34,14,10,0.0 +15110,58,13.25,31,0.0 +15110,53,32.8,49,0.0 +15110,13,6,26,0.0 +15110,33,2.5,33,0.0 +15110,32,32,3,0.0 +15110,19,9.2,34,0.0 +15110,62,49.3,6,0.0 +15110,63,43.9,23,0.0 +15110,40,18.4,2,0.0 +15110,22,21,13,0.0 +15110,28,45.6,31,0.0 +15110,60,34,29,0.0 +15110,24,4.5,14,0.0 +15110,16,17.45,8,0.0 +15110,64,33.25,45,0.0 +15110,54,7.45,4,0.0 +15110,59,55,12,0.0 +15110,76,18,49,0.0 +15110,51,53,36,0.0 +15110,29,123.79,2,0.0 +15110,2,19,10,0.0 +15110,47,9.5,47,0.0 +15110,38,263.5,46,0.0 +15110,4,22,43,0.0 +15110,26,31.23,9,0.0 +15110,71,21.5,46,0.0 +15110,31,12.5,28,0.0 +15110,30,25.89,43,0.0 +15110,3,10,26,0.0 +15110,20,81,5,0.0 +15110,35,18,28,0.0 +15110,18,62.5,43,0.0 +15110,11,21,38,0.0 +15110,70,15,21,0.0 +15110,25,14,48,0.0 +15110,48,12.75,35,0.0 +15110,57,19.5,29,0.0 +15110,7,30,34,0.0 +15110,67,14,20,0.0 +15110,56,38,40,0.0 +15110,10,31,16,0.0 +15110,5,21.35,29,0.0 +15111,44,19.45,13,0.0 +15111,76,18,34,0.0 +15111,12,38,20,0.0 +15111,59,55,10,0.0 +15111,36,19,49,0.0 +15111,27,43.9,10,0.0 +15111,75,7.75,42,0.0 +15111,6,25,50,0.0 +15111,24,4.5,16,0.0 +15111,32,32,4,0.0 +15111,71,21.5,49,0.0 +15111,40,18.4,34,0.0 +15111,51,53,46,0.0 +15111,69,36,21,0.0 +15111,54,7.45,31,0.0 +15111,43,46,25,0.0 +15111,70,15,47,0.0 +15111,2,19,37,0.0 +15111,55,24,2,0.0 +15111,10,31,21,0.0 +15111,57,19.5,38,0.0 +15111,1,18,24,0.0 +15111,66,17,39,0.0 +15111,37,26,6,0.0 +15111,25,14,3,0.0 +15111,29,123.79,46,0.0 +15111,22,21,12,0.0 +15111,15,15.5,32,0.0 +15111,14,23.25,27,0.0 +15111,33,2.5,44,0.0 +15111,74,10,30,0.0 +15111,7,30,30,0.0 +15111,11,21,14,0.0 +15111,5,21.35,44,0.0 +15111,20,81,42,0.0 +15111,17,39,33,0.0 +15111,64,33.25,26,0.0 +15111,34,14,8,0.0 +15111,26,31.23,14,0.0 +15111,72,34.8,23,0.0 +15111,35,18,1,0.0 +15111,45,9.5,41,0.0 +15111,52,7,43,0.0 +15111,53,32.8,23,0.0 +15111,13,6,33,0.0 +15111,16,17.45,28,0.0 +15111,46,12,9,0.0 +15111,3,10,31,0.0 +15111,38,263.5,41,0.0 +15111,19,9.2,23,0.0 +15111,41,9.65,34,0.0 +15111,8,40,33,0.0 +15111,21,10,37,0.0 +15111,56,38,46,0.0 +15111,28,45.6,47,0.0 +15112,73,15,23,0.0 +15112,3,10,28,0.0 +15112,63,43.9,29,0.0 +15112,1,18,44,0.0 +15112,77,13,48,0.0 +15112,7,30,23,0.0 +15112,5,21.35,30,0.0 +15112,17,39,8,0.0 +15112,6,25,5,0.0 +15112,19,9.2,5,0.0 +15112,18,62.5,26,0.0 +15112,67,14,31,0.0 +15112,36,19,38,0.0 +15112,21,10,3,0.0 +15112,22,21,3,0.0 +15112,43,46,2,0.0 +15112,58,13.25,20,0.0 +15112,53,32.8,5,0.0 +15112,31,12.5,27,0.0 +15112,72,34.8,8,0.0 +15112,13,6,16,0.0 +15112,25,14,11,0.0 +15112,76,18,6,0.0 +15112,23,9,15,0.0 +15112,14,23.25,3,0.0 +15112,68,12.5,23,0.0 +15112,71,21.5,22,0.0 +15112,30,25.89,38,0.0 +15112,51,53,40,0.0 +15112,44,19.45,31,0.0 +15112,38,263.5,1,0.0 +15112,60,34,23,0.0 +15112,57,19.5,45,0.0 +15112,28,45.6,17,0.0 +15113,77,13,26,0.0 +15113,74,10,12,0.0 +15114,57,19.5,12,0.0 +15114,65,21.05,8,0.0 +15114,40,18.4,35,0.0 +15114,38,263.5,21,0.0 +15114,71,21.5,39,0.0 +15114,66,17,37,0.0 +15114,62,49.3,35,0.0 +15114,64,33.25,36,0.0 +15114,13,6,2,0.0 +15114,22,21,46,0.0 +15114,37,26,49,0.0 +15114,8,40,2,0.0 +15114,14,23.25,28,0.0 +15114,58,13.25,35,0.0 +15114,33,2.5,49,0.0 +15114,21,10,39,0.0 +15114,74,10,44,0.0 +15114,1,18,26,0.0 +15114,10,31,17,0.0 +15114,52,7,21,0.0 +15114,63,43.9,25,0.0 +15114,9,97,3,0.0 +15114,49,20,32,0.0 +15114,27,43.9,12,0.0 +15114,59,55,12,0.0 +15114,12,38,49,0.0 +15114,17,39,16,0.0 +15114,44,19.45,41,0.0 +15114,54,7.45,49,0.0 +15114,47,9.5,31,0.0 +15114,46,12,37,0.0 +15114,39,18,19,0.0 +15114,25,14,28,0.0 +15114,31,12.5,34,0.0 +15114,70,15,49,0.0 +15114,36,19,43,0.0 +15114,15,15.5,48,0.0 +15114,28,45.6,32,0.0 +15114,69,36,17,0.0 +15114,35,18,13,0.0 +15114,4,22,20,0.0 +15114,51,53,39,0.0 +15114,24,4.5,6,0.0 +15114,45,9.5,21,0.0 +15114,5,21.35,22,0.0 +15114,68,12.5,45,0.0 +15114,60,34,18,0.0 +15114,29,123.79,28,0.0 +15114,55,24,35,0.0 +15114,6,25,27,0.0 +15114,43,46,15,0.0 +15114,48,12.75,2,0.0 +15114,26,31.23,6,0.0 +15114,76,18,43,0.0 +15114,34,14,41,0.0 +15114,50,16.25,10,0.0 +15114,56,38,42,0.0 +15114,23,9,23,0.0 +15114,18,62.5,9,0.0 +15114,67,14,1,0.0 +15114,3,10,10,0.0 +15114,53,32.8,47,0.0 +15114,11,21,25,0.0 +15114,20,81,34,0.0 +15114,41,9.65,43,0.0 +15114,32,32,18,0.0 +15114,2,19,42,0.0 +15114,75,7.75,19,0.0 +15114,30,25.89,18,0.0 +15114,72,34.8,20,0.0 +15115,18,62.5,16,0.0 +15115,76,18,46,0.0 +15115,52,7,21,0.0 +15115,59,55,42,0.0 +15115,35,18,39,0.0 +15115,48,12.75,47,0.0 +15115,3,10,23,0.0 +15115,39,18,29,0.0 +15115,19,9.2,39,0.0 +15115,17,39,9,0.0 +15115,57,19.5,3,0.0 +15115,74,10,41,0.0 +15115,51,53,45,0.0 +15115,62,49.3,3,0.0 +15115,6,25,1,0.0 +15115,13,6,5,0.0 +15115,55,24,40,0.0 +15115,42,14,14,0.0 +15115,21,10,26,0.0 +15115,22,21,47,0.0 +15115,49,20,25,0.0 +15115,32,32,49,0.0 +15115,43,46,12,0.0 +15115,63,43.9,38,0.0 +15115,54,7.45,27,0.0 +15115,36,19,20,0.0 +15115,2,19,49,0.0 +15115,30,25.89,33,0.0 +15115,9,97,30,0.0 +15115,70,15,3,0.0 +15115,44,19.45,34,0.0 +15115,7,30,10,0.0 +15115,60,34,9,0.0 +15115,75,7.75,24,0.0 +15116,59,55,22,0.0 +15116,43,46,27,0.0 +15116,23,9,18,0.0 +15116,4,22,13,0.0 +15116,5,21.35,40,0.0 +15116,27,43.9,8,0.0 +15116,40,18.4,30,0.0 +15116,65,21.05,10,0.0 +15116,34,14,38,0.0 +15116,29,123.79,50,0.0 +15116,55,24,47,0.0 +15116,22,21,34,0.0 +15116,16,17.45,47,0.0 +15116,70,15,11,0.0 +15116,57,19.5,20,0.0 +15117,4,22,14,0.0 +15117,57,19.5,1,0.0 +15117,19,9.2,4,0.0 +15117,18,62.5,7,0.0 +15117,40,18.4,29,0.0 +15117,48,12.75,47,0.0 +15117,42,14,20,0.0 +15117,31,12.5,47,0.0 +15117,24,4.5,31,0.0 +15117,20,81,27,0.0 +15117,55,24,17,0.0 +15117,5,21.35,13,0.0 +15117,21,10,28,0.0 +15117,37,26,3,0.0 +15117,17,39,30,0.0 +15117,9,97,40,0.0 +15117,65,21.05,38,0.0 +15117,44,19.45,31,0.0 +15117,8,40,25,0.0 +15117,50,16.25,42,0.0 +15117,14,23.25,33,0.0 +15117,13,6,16,0.0 +15117,33,2.5,19,0.0 +15117,69,36,25,0.0 +15117,45,9.5,12,0.0 +15117,52,7,1,0.0 +15117,12,38,14,0.0 +15117,28,45.6,27,0.0 +15117,71,21.5,4,0.0 +15117,61,28.5,50,0.0 +15117,23,9,17,0.0 +15117,35,18,38,0.0 +15117,64,33.25,33,0.0 +15117,63,43.9,19,0.0 +15117,2,19,2,0.0 +15117,66,17,8,0.0 +15117,68,12.5,26,0.0 +15117,73,15,40,0.0 +15117,30,25.89,4,0.0 +15117,25,14,24,0.0 +15117,39,18,40,0.0 +15117,41,9.65,12,0.0 +15117,43,46,26,0.0 +15117,38,263.5,47,0.0 +15117,16,17.45,8,0.0 +15117,58,13.25,7,0.0 +15117,70,15,9,0.0 +15117,7,30,26,0.0 +15117,60,34,43,0.0 +15117,47,9.5,17,0.0 +15117,10,31,4,0.0 +15117,74,10,40,0.0 +15117,15,15.5,33,0.0 +15117,49,20,45,0.0 +15117,76,18,6,0.0 +15117,54,7.45,32,0.0 +15117,62,49.3,11,0.0 +15117,29,123.79,15,0.0 +15117,36,19,8,0.0 +15117,56,38,25,0.0 +15117,26,31.23,36,0.0 +15117,51,53,46,0.0 +15117,27,43.9,37,0.0 +15117,46,12,4,0.0 +15117,22,21,10,0.0 +15117,53,32.8,20,0.0 +15117,77,13,26,0.0 +15117,6,25,16,0.0 +15117,32,32,1,0.0 +15117,72,34.8,15,0.0 +15117,1,18,26,0.0 +15117,75,7.75,14,0.0 +15117,11,21,40,0.0 +15117,59,55,1,0.0 +15117,34,14,33,0.0 +15117,3,10,11,0.0 +15118,47,9.5,36,0.0 +15118,10,31,10,0.0 +15118,69,36,20,0.0 +15118,27,43.9,22,0.0 +15118,49,20,45,0.0 +15118,32,32,43,0.0 +15118,52,7,15,0.0 +15118,63,43.9,26,0.0 +15118,33,2.5,22,0.0 +15118,21,10,48,0.0 +15118,62,49.3,14,0.0 +15118,11,21,45,0.0 +15118,40,18.4,26,0.0 +15118,42,14,9,0.0 +15118,26,31.23,12,0.0 +15118,48,12.75,33,0.0 +15118,7,30,30,0.0 +15118,74,10,45,0.0 +15118,34,14,28,0.0 +15118,54,7.45,14,0.0 +15118,59,55,3,0.0 +15118,39,18,22,0.0 +15118,72,34.8,48,0.0 +15118,75,7.75,3,0.0 +15118,50,16.25,29,0.0 +15118,61,28.5,17,0.0 +15118,13,6,38,0.0 +15118,66,17,3,0.0 +15118,37,26,40,0.0 +15118,38,263.5,44,0.0 +15118,5,21.35,18,0.0 +15118,22,21,2,0.0 +15118,46,12,37,0.0 +15118,4,22,9,0.0 +15118,64,33.25,42,0.0 +15118,8,40,4,0.0 +15118,56,38,16,0.0 +15118,31,12.5,8,0.0 +15118,19,9.2,14,0.0 +15118,6,25,37,0.0 +15118,16,17.45,42,0.0 +15118,65,21.05,7,0.0 +15118,57,19.5,15,0.0 +15118,3,10,24,0.0 +15118,36,19,16,0.0 +15118,1,18,19,0.0 +15118,15,15.5,37,0.0 +15118,20,81,28,0.0 +15118,70,15,27,0.0 +15118,71,21.5,37,0.0 +15118,23,9,7,0.0 +15118,44,19.45,34,0.0 +15118,18,62.5,47,0.0 +15118,9,97,42,0.0 +15118,35,18,34,0.0 +15118,45,9.5,3,0.0 +15118,58,13.25,10,0.0 +15118,73,15,1,0.0 +15118,76,18,43,0.0 +15118,55,24,35,0.0 +15118,60,34,22,0.0 +15118,68,12.5,34,0.0 +15119,62,49.3,2,0.0 +15119,63,43.9,36,0.0 +15119,43,46,33,0.0 +15119,3,10,34,0.0 +15119,20,81,28,0.0 +15119,52,7,46,0.0 +15119,48,12.75,1,0.0 +15119,59,55,27,0.0 +15119,42,14,18,0.0 +15119,9,97,5,0.0 +15119,41,9.65,39,0.0 +15119,1,18,1,0.0 +15119,36,19,23,0.0 +15119,75,7.75,21,0.0 +15119,19,9.2,15,0.0 +15119,29,123.79,10,0.0 +15119,40,18.4,47,0.0 +15119,56,38,22,0.0 +15119,6,25,47,0.0 +15120,77,13,39,0.0 +15120,71,21.5,9,0.0 +15120,50,16.25,49,0.0 +15121,9,97,43,0.0 +15121,37,26,29,0.0 +15121,3,10,38,0.0 +15121,61,28.5,3,0.0 +15121,47,9.5,11,0.0 +15121,38,263.5,13,0.0 +15121,48,12.75,43,0.0 +15121,71,21.5,1,0.0 +15122,6,25,49,0.0 +15122,18,62.5,37,0.0 +15122,66,17,47,0.0 +15122,17,39,45,0.0 +15122,64,33.25,44,0.0 +15122,27,43.9,45,0.0 +15122,36,19,16,0.0 +15122,37,26,46,0.0 +15122,29,123.79,15,0.0 +15122,63,43.9,48,0.0 +15122,15,15.5,14,0.0 +15122,11,21,45,0.0 +15122,14,23.25,7,0.0 +15122,57,19.5,45,0.0 +15122,44,19.45,16,0.0 +15122,38,263.5,14,0.0 +15122,46,12,49,0.0 +15122,60,34,4,0.0 +15122,76,18,29,0.0 +15122,68,12.5,47,0.0 +15122,30,25.89,24,0.0 +15122,51,53,24,0.0 +15122,77,13,44,0.0 +15122,4,22,41,0.0 +15122,25,14,1,0.0 +15122,69,36,50,0.0 +15122,65,21.05,14,0.0 +15122,23,9,26,0.0 +15122,3,10,33,0.0 +15122,22,21,32,0.0 +15122,2,19,17,0.0 +15122,34,14,17,0.0 +15122,42,14,34,0.0 +15122,52,7,28,0.0 +15122,16,17.45,39,0.0 +15122,5,21.35,43,0.0 +15122,32,32,37,0.0 +15122,61,28.5,18,0.0 +15122,8,40,32,0.0 +15122,71,21.5,6,0.0 +15122,41,9.65,15,0.0 +15122,26,31.23,12,0.0 +15122,58,13.25,40,0.0 +15122,39,18,14,0.0 +15122,1,18,5,0.0 +15122,59,55,24,0.0 +15122,62,49.3,31,0.0 +15122,73,15,39,0.0 +15122,75,7.75,10,0.0 +15122,19,9.2,7,0.0 +15122,72,34.8,11,0.0 +15122,74,10,23,0.0 +15122,12,38,45,0.0 +15122,45,9.5,7,0.0 +15122,31,12.5,13,0.0 +15122,13,6,13,0.0 +15122,49,20,25,0.0 +15122,43,46,47,0.0 +15122,20,81,44,0.0 +15122,55,24,6,0.0 +15122,50,16.25,4,0.0 +15122,54,7.45,7,0.0 +15122,9,97,38,0.0 +15122,21,10,12,0.0 +15123,58,13.25,21,0.0 +15123,54,7.45,41,0.0 +15123,67,14,12,0.0 +15123,76,18,1,0.0 +15123,17,39,13,0.0 +15123,74,10,43,0.0 +15123,21,10,18,0.0 +15123,22,21,44,0.0 +15123,56,38,1,0.0 +15123,66,17,41,0.0 +15123,32,32,7,0.0 +15123,1,18,21,0.0 +15123,18,62.5,38,0.0 +15123,4,22,40,0.0 +15123,7,30,42,0.0 +15123,49,20,38,0.0 +15123,68,12.5,40,0.0 +15123,39,18,34,0.0 +15123,12,38,48,0.0 +15123,11,21,42,0.0 +15123,37,26,6,0.0 +15123,27,43.9,43,0.0 +15123,63,43.9,3,0.0 +15123,44,19.45,29,0.0 +15123,64,33.25,36,0.0 +15123,41,9.65,22,0.0 +15123,77,13,42,0.0 +15123,45,9.5,49,0.0 +15123,57,19.5,21,0.0 +15123,26,31.23,8,0.0 +15123,73,15,32,0.0 +15124,73,15,14,0.0 +15124,9,97,42,0.0 +15124,22,21,16,0.0 +15124,12,38,16,0.0 +15124,11,21,29,0.0 +15124,21,10,8,0.0 +15124,75,7.75,8,0.0 +15124,41,9.65,38,0.0 +15124,14,23.25,1,0.0 +15124,45,9.5,30,0.0 +15124,5,21.35,14,0.0 +15124,69,36,28,0.0 +15124,47,9.5,40,0.0 +15124,44,19.45,22,0.0 +15124,56,38,20,0.0 +15124,60,34,27,0.0 +15124,64,33.25,31,0.0 +15124,67,14,43,0.0 +15124,43,46,38,0.0 +15124,15,15.5,18,0.0 +15124,4,22,28,0.0 +15124,36,19,27,0.0 +15124,38,263.5,6,0.0 +15124,3,10,21,0.0 +15124,55,24,38,0.0 +15124,66,17,39,0.0 +15124,32,32,14,0.0 +15124,76,18,10,0.0 +15124,50,16.25,16,0.0 +15124,70,15,4,0.0 +15124,1,18,48,0.0 +15124,35,18,33,0.0 +15124,19,9.2,39,0.0 +15124,74,10,49,0.0 +15124,29,123.79,47,0.0 +15124,20,81,11,0.0 +15124,68,12.5,48,0.0 +15124,16,17.45,26,0.0 +15124,23,9,11,0.0 +15124,52,7,13,0.0 +15124,28,45.6,12,0.0 +15124,33,2.5,31,0.0 +15124,34,14,26,0.0 +15124,57,19.5,19,0.0 +15124,51,53,43,0.0 +15124,46,12,10,0.0 +15124,7,30,21,0.0 +15124,26,31.23,35,0.0 +15124,42,14,23,0.0 +15124,40,18.4,11,0.0 +15124,17,39,17,0.0 +15124,48,12.75,45,0.0 +15124,54,7.45,21,0.0 +15124,77,13,45,0.0 +15124,2,19,3,0.0 +15124,18,62.5,10,0.0 +15124,13,6,2,0.0 +15124,27,43.9,30,0.0 +15124,65,21.05,23,0.0 +15124,25,14,4,0.0 +15124,31,12.5,42,0.0 +15124,8,40,37,0.0 +15124,62,49.3,28,0.0 +15124,71,21.5,8,0.0 +15124,72,34.8,9,0.0 +15124,63,43.9,28,0.0 +15124,6,25,9,0.0 +15124,39,18,29,0.0 +15124,53,32.8,41,0.0 +15124,61,28.5,21,0.0 +15124,58,13.25,47,0.0 +15124,49,20,24,0.0 +15124,10,31,45,0.0 +15124,30,25.89,8,0.0 +15124,24,4.5,41,0.0 +15125,74,10,29,0.0 +15125,60,34,14,0.0 +15125,18,62.5,17,0.0 +15125,9,97,43,0.0 +15125,37,26,39,0.0 +15125,51,53,1,0.0 +15125,35,18,42,0.0 +15125,13,6,21,0.0 +15125,7,30,18,0.0 +15125,10,31,2,0.0 +15125,41,9.65,7,0.0 +15125,55,24,45,0.0 +15125,25,14,30,0.0 +15125,26,31.23,25,0.0 +15125,12,38,26,0.0 +15125,38,263.5,7,0.0 +15125,65,21.05,17,0.0 +15125,40,18.4,47,0.0 +15125,61,28.5,35,0.0 +15125,33,2.5,25,0.0 +15125,53,32.8,8,0.0 +15125,23,9,32,0.0 +15125,49,20,49,0.0 +15125,1,18,30,0.0 +15125,66,17,43,0.0 +15125,75,7.75,19,0.0 +15125,39,18,9,0.0 +15125,69,36,39,0.0 +15125,21,10,14,0.0 +15125,32,32,9,0.0 +15125,31,12.5,44,0.0 +15125,30,25.89,28,0.0 +15125,24,4.5,17,0.0 +15125,72,34.8,10,0.0 +15125,27,43.9,2,0.0 +15125,52,7,12,0.0 +15125,16,17.45,32,0.0 +15125,43,46,18,0.0 +15125,15,15.5,38,0.0 +15125,64,33.25,42,0.0 +15125,4,22,9,0.0 +15125,14,23.25,12,0.0 +15125,3,10,14,0.0 +15125,17,39,26,0.0 +15125,57,19.5,40,0.0 +15125,28,45.6,30,0.0 +15125,70,15,46,0.0 +15125,36,19,22,0.0 +15125,22,21,2,0.0 +15125,45,9.5,30,0.0 +15125,8,40,12,0.0 +15125,56,38,21,0.0 +15125,44,19.45,49,0.0 +15125,73,15,8,0.0 +15125,58,13.25,30,0.0 +15125,71,21.5,10,0.0 +15126,66,17,41,0.0 +15126,60,34,28,0.0 +15126,4,22,23,0.0 +15126,17,39,21,0.0 +15126,1,18,31,0.0 +15126,72,34.8,3,0.0 +15126,38,263.5,42,0.0 +15126,2,19,36,0.0 +15126,42,14,34,0.0 +15126,5,21.35,29,0.0 +15126,68,12.5,2,0.0 +15126,43,46,16,0.0 +15126,14,23.25,18,0.0 +15126,16,17.45,24,0.0 +15126,6,25,47,0.0 +15126,10,31,34,0.0 +15126,13,6,24,0.0 +15126,48,12.75,24,0.0 +15126,76,18,16,0.0 +15126,54,7.45,17,0.0 +15126,28,45.6,18,0.0 +15126,20,81,45,0.0 +15126,8,40,3,0.0 +15126,56,38,17,0.0 +15126,35,18,23,0.0 +15126,34,14,34,0.0 +15126,73,15,1,0.0 +15126,45,9.5,15,0.0 +15126,65,21.05,37,0.0 +15126,24,4.5,3,0.0 +15126,61,28.5,44,0.0 +15126,55,24,36,0.0 +15126,63,43.9,33,0.0 +15126,71,21.5,10,0.0 +15126,33,2.5,19,0.0 +15126,36,19,28,0.0 +15126,47,9.5,5,0.0 +15126,46,12,36,0.0 +15126,19,9.2,45,0.0 +15126,3,10,9,0.0 +15126,44,19.45,16,0.0 +15126,74,10,9,0.0 +15126,31,12.5,30,0.0 +15126,22,21,35,0.0 +15126,70,15,21,0.0 +15126,40,18.4,6,0.0 +15126,9,97,26,0.0 +15126,67,14,17,0.0 +15126,11,21,46,0.0 +15126,69,36,36,0.0 +15126,53,32.8,23,0.0 +15126,21,10,41,0.0 +15126,37,26,21,0.0 +15126,27,43.9,31,0.0 +15126,59,55,5,0.0 +15126,30,25.89,25,0.0 +15126,23,9,38,0.0 +15126,25,14,5,0.0 +15127,12,38,19,0.0 +15127,46,12,47,0.0 +15127,14,23.25,1,0.0 +15127,62,49.3,37,0.0 +15127,66,17,38,0.0 +15127,19,9.2,42,0.0 +15127,75,7.75,42,0.0 +15127,6,25,12,0.0 +15127,15,15.5,20,0.0 +15127,27,43.9,38,0.0 +15127,47,9.5,29,0.0 +15127,23,9,22,0.0 +15127,54,7.45,28,0.0 +15127,4,22,19,0.0 +15127,28,45.6,37,0.0 +15127,32,32,3,0.0 +15127,61,28.5,13,0.0 +15127,33,2.5,27,0.0 +15127,41,9.65,15,0.0 +15127,44,19.45,31,0.0 +15127,51,53,8,0.0 +15127,55,24,12,0.0 +15127,76,18,49,0.0 +15127,59,55,16,0.0 +15127,29,123.79,26,0.0 +15127,34,14,27,0.0 +15127,72,34.8,39,0.0 +15127,24,4.5,49,0.0 +15127,42,14,10,0.0 +15127,22,21,3,0.0 +15127,35,18,27,0.0 +15127,67,14,35,0.0 +15127,65,21.05,44,0.0 +15127,58,13.25,42,0.0 +15127,26,31.23,2,0.0 +15127,60,34,17,0.0 +15127,63,43.9,25,0.0 +15127,21,10,16,0.0 +15127,5,21.35,19,0.0 +15127,56,38,10,0.0 +15127,77,13,26,0.0 +15127,71,21.5,34,0.0 +15127,17,39,40,0.0 +15127,9,97,4,0.0 +15127,31,12.5,7,0.0 +15127,43,46,24,0.0 +15127,7,30,22,0.0 +15127,8,40,42,0.0 +15127,69,36,36,0.0 +15127,73,15,2,0.0 +15127,3,10,19,0.0 +15127,57,19.5,34,0.0 +15127,70,15,46,0.0 +15127,10,31,31,0.0 +15127,13,6,38,0.0 +15127,49,20,43,0.0 +15127,52,7,1,0.0 +15127,64,33.25,17,0.0 +15127,18,62.5,37,0.0 +15127,38,263.5,16,0.0 +15127,48,12.75,38,0.0 +15127,30,25.89,17,0.0 +15127,16,17.45,26,0.0 +15127,45,9.5,14,0.0 +15127,68,12.5,50,0.0 +15127,36,19,31,0.0 +15127,20,81,38,0.0 +15127,74,10,16,0.0 +15127,11,21,35,0.0 +15127,39,18,7,0.0 +15127,37,26,6,0.0 +15127,53,32.8,48,0.0 +15127,2,19,27,0.0 +15127,40,18.4,39,0.0 +15127,1,18,2,0.0 +15128,46,12,31,0.0 +15128,12,38,41,0.0 +15128,54,7.45,43,0.0 +15128,20,81,38,0.0 +15128,56,38,31,0.0 +15128,49,20,50,0.0 +15128,3,10,46,0.0 +15128,76,18,21,0.0 +15128,71,21.5,7,0.0 +15128,7,30,17,0.0 +15128,24,4.5,4,0.0 +15128,39,18,11,0.0 +15128,53,32.8,46,0.0 +15128,5,21.35,11,0.0 +15128,43,46,47,0.0 +15128,60,34,20,0.0 +15128,37,26,20,0.0 +15128,41,9.65,31,0.0 +15128,38,263.5,11,0.0 +15128,69,36,28,0.0 +15128,40,18.4,32,0.0 +15128,29,123.79,29,0.0 +15128,58,13.25,50,0.0 +15128,31,12.5,31,0.0 +15128,55,24,29,0.0 +15128,33,2.5,23,0.0 +15128,67,14,35,0.0 +15128,18,62.5,12,0.0 +15128,35,18,13,0.0 +15128,1,18,49,0.0 +15128,32,32,5,0.0 +15128,9,97,29,0.0 +15128,14,23.25,32,0.0 +15128,65,21.05,37,0.0 +15128,68,12.5,3,0.0 +15128,2,19,49,0.0 +15128,62,49.3,29,0.0 +15128,17,39,29,0.0 +15128,16,17.45,42,0.0 +15128,8,40,12,0.0 +15128,75,7.75,24,0.0 +15128,15,15.5,7,0.0 +15128,21,10,2,0.0 +15128,42,14,36,0.0 +15128,30,25.89,4,0.0 +15128,72,34.8,32,0.0 +15128,26,31.23,26,0.0 +15129,48,12.75,45,0.0 +15129,65,21.05,11,0.0 +15129,11,21,6,0.0 +15129,1,18,2,0.0 +15129,15,15.5,25,0.0 +15129,7,30,36,0.0 +15129,70,15,15,0.0 +15129,46,12,10,0.0 +15129,44,19.45,13,0.0 +15129,4,22,18,0.0 +15129,68,12.5,36,0.0 +15129,47,9.5,42,0.0 +15129,51,53,27,0.0 +15129,54,7.45,22,0.0 +15129,73,15,10,0.0 +15129,61,28.5,14,0.0 +15130,15,15.5,5,0.0 +15130,63,43.9,30,0.0 +15130,53,32.8,40,0.0 +15130,58,13.25,47,0.0 +15130,11,21,6,0.0 +15130,66,17,17,0.0 +15130,6,25,24,0.0 +15130,62,49.3,41,0.0 +15130,37,26,38,0.0 +15130,44,19.45,46,0.0 +15130,72,34.8,48,0.0 +15130,12,38,48,0.0 +15130,57,19.5,46,0.0 +15130,13,6,15,0.0 +15130,64,33.25,44,0.0 +15130,23,9,2,0.0 +15130,24,4.5,22,0.0 +15130,31,12.5,6,0.0 +15130,67,14,50,0.0 +15130,46,12,15,0.0 +15130,20,81,17,0.0 +15130,51,53,15,0.0 +15130,50,16.25,6,0.0 +15130,14,23.25,43,0.0 +15130,42,14,39,0.0 +15130,43,46,37,0.0 +15130,34,14,39,0.0 +15130,60,34,39,0.0 +15130,70,15,33,0.0 +15130,7,30,26,0.0 +15130,25,14,47,0.0 +15130,47,9.5,38,0.0 +15130,27,43.9,25,0.0 +15130,75,7.75,36,0.0 +15130,38,263.5,39,0.0 +15130,4,22,4,0.0 +15130,69,36,5,0.0 +15130,55,24,8,0.0 +15130,54,7.45,39,0.0 +15130,2,19,20,0.0 +15130,56,38,20,0.0 +15130,74,10,33,0.0 +15130,71,21.5,42,0.0 +15130,40,18.4,20,0.0 +15130,19,9.2,29,0.0 +15130,21,10,16,0.0 +15130,76,18,1,0.0 +15130,77,13,15,0.0 +15130,29,123.79,20,0.0 +15130,3,10,29,0.0 +15130,73,15,26,0.0 +15130,17,39,29,0.0 +15130,26,31.23,20,0.0 +15130,68,12.5,32,0.0 +15130,28,45.6,13,0.0 +15130,9,97,13,0.0 +15130,32,32,29,0.0 +15130,45,9.5,24,0.0 +15130,39,18,10,0.0 +15130,8,40,15,0.0 +15130,61,28.5,23,0.0 +15130,59,55,11,0.0 +15130,52,7,7,0.0 +15130,33,2.5,31,0.0 +15130,41,9.65,16,0.0 +15130,5,21.35,40,0.0 +15131,36,19,19,0.0 +15131,50,16.25,41,0.0 +15131,51,53,8,0.0 +15131,57,19.5,28,0.0 +15131,47,9.5,35,0.0 +15131,70,15,44,0.0 +15131,41,9.65,15,0.0 +15131,37,26,7,0.0 +15131,11,21,31,0.0 +15131,20,81,46,0.0 +15131,46,12,19,0.0 +15131,54,7.45,37,0.0 +15131,14,23.25,9,0.0 +15131,65,21.05,5,0.0 +15131,77,13,39,0.0 +15131,67,14,43,0.0 +15131,66,17,44,0.0 +15131,61,28.5,18,0.0 +15131,30,25.89,21,0.0 +15131,38,263.5,46,0.0 +15131,76,18,9,0.0 +15131,10,31,25,0.0 +15131,29,123.79,44,0.0 +15131,18,62.5,39,0.0 +15131,39,18,6,0.0 +15131,44,19.45,39,0.0 +15131,64,33.25,7,0.0 +15131,1,18,50,0.0 +15131,60,34,2,0.0 +15131,74,10,28,0.0 +15131,16,17.45,30,0.0 +15131,69,36,48,0.0 +15131,53,32.8,22,0.0 +15131,42,14,18,0.0 +15131,32,32,9,0.0 +15131,33,2.5,23,0.0 +15131,58,13.25,39,0.0 +15131,27,43.9,30,0.0 +15131,9,97,43,0.0 +15131,21,10,16,0.0 +15131,72,34.8,2,0.0 +15131,63,43.9,33,0.0 +15131,71,21.5,12,0.0 +15131,13,6,6,0.0 +15131,52,7,23,0.0 +15131,68,12.5,27,0.0 +15131,26,31.23,30,0.0 +15131,75,7.75,38,0.0 +15131,31,12.5,24,0.0 +15131,48,12.75,23,0.0 +15131,62,49.3,24,0.0 +15131,40,18.4,48,0.0 +15131,2,19,40,0.0 +15131,24,4.5,38,0.0 +15131,28,45.6,15,0.0 +15131,15,15.5,24,0.0 +15131,22,21,15,0.0 +15131,17,39,44,0.0 +15131,3,10,26,0.0 +15131,35,18,19,0.0 +15131,23,9,3,0.0 +15131,7,30,2,0.0 +15131,25,14,36,0.0 +15131,34,14,23,0.0 +15131,43,46,29,0.0 +15131,73,15,31,0.0 +15131,19,9.2,13,0.0 +15131,55,24,22,0.0 +15131,8,40,25,0.0 +15131,12,38,1,0.0 +15131,4,22,22,0.0 +15131,56,38,27,0.0 +15131,59,55,11,0.0 +15131,5,21.35,31,0.0 +15132,24,4.5,25,0.0 +15132,10,31,30,0.0 +15132,74,10,27,0.0 +15133,40,18.4,39,0.0 +15133,49,20,21,0.0 +15133,37,26,2,0.0 +15133,29,123.79,11,0.0 +15133,25,14,33,0.0 +15133,55,24,44,0.0 +15133,44,19.45,47,0.0 +15133,9,97,37,0.0 +15133,12,38,48,0.0 +15133,39,18,47,0.0 +15133,74,10,3,0.0 +15133,41,9.65,4,0.0 +15133,20,81,44,0.0 +15133,43,46,39,0.0 +15133,50,16.25,13,0.0 +15133,61,28.5,4,0.0 +15133,54,7.45,2,0.0 +15133,58,13.25,2,0.0 +15133,71,21.5,19,0.0 +15133,67,14,8,0.0 +15133,36,19,28,0.0 +15133,21,10,50,0.0 +15133,57,19.5,4,0.0 +15133,77,13,2,0.0 +15133,64,33.25,27,0.0 +15133,56,38,23,0.0 +15133,45,9.5,9,0.0 +15133,28,45.6,21,0.0 +15133,51,53,21,0.0 +15133,34,14,34,0.0 +15133,62,49.3,32,0.0 +15133,19,9.2,34,0.0 +15133,16,17.45,48,0.0 +15133,15,15.5,18,0.0 +15133,48,12.75,16,0.0 +15134,48,12.75,31,0.0 +15134,51,53,44,0.0 +15134,39,18,48,0.0 +15134,18,62.5,43,0.0 +15134,1,18,11,0.0 +15134,14,23.25,28,0.0 +15134,59,55,33,0.0 +15134,19,9.2,37,0.0 +15134,66,17,40,0.0 +15134,34,14,41,0.0 +15134,11,21,16,0.0 +15134,26,31.23,19,0.0 +15135,34,14,13,0.0 +15135,50,16.25,5,0.0 +15135,69,36,47,0.0 +15135,5,21.35,11,0.0 +15135,23,9,45,0.0 +15135,39,18,38,0.0 +15135,58,13.25,12,0.0 +15135,47,9.5,10,0.0 +15135,24,4.5,31,0.0 +15135,43,46,24,0.0 +15135,35,18,7,0.0 +15135,56,38,37,0.0 +15135,59,55,46,0.0 +15135,7,30,45,0.0 +15135,55,24,31,0.0 +15135,2,19,7,0.0 +15135,9,97,49,0.0 +15135,6,25,48,0.0 +15135,49,20,4,0.0 +15135,3,10,3,0.0 +15135,61,28.5,3,0.0 +15135,33,2.5,50,0.0 +15135,10,31,4,0.0 +15135,71,21.5,11,0.0 +15135,62,49.3,41,0.0 +15135,22,21,21,0.0 +15135,16,17.45,17,0.0 +15135,68,12.5,4,0.0 +15135,52,7,15,0.0 +15135,72,34.8,35,0.0 +15135,57,19.5,44,0.0 +15135,29,123.79,8,0.0 +15135,54,7.45,26,0.0 +15135,38,263.5,33,0.0 +15135,17,39,21,0.0 +15135,21,10,1,0.0 +15135,20,81,50,0.0 +15135,11,21,23,0.0 +15135,76,18,16,0.0 +15135,48,12.75,6,0.0 +15135,53,32.8,34,0.0 +15135,4,22,14,0.0 +15135,40,18.4,40,0.0 +15135,36,19,5,0.0 +15135,75,7.75,48,0.0 +15135,27,43.9,10,0.0 +15135,74,10,26,0.0 +15135,51,53,46,0.0 +15135,45,9.5,2,0.0 +15135,66,17,12,0.0 +15135,77,13,6,0.0 +15135,15,15.5,5,0.0 +15135,67,14,3,0.0 +15135,19,9.2,6,0.0 +15135,41,9.65,26,0.0 +15135,64,33.25,42,0.0 +15135,73,15,23,0.0 +15135,28,45.6,27,0.0 +15136,29,123.79,28,0.0 +15136,67,14,37,0.0 +15136,28,45.6,31,0.0 +15136,50,16.25,3,0.0 +15136,3,10,14,0.0 +15136,47,9.5,3,0.0 +15136,15,15.5,29,0.0 +15136,12,38,31,0.0 +15137,38,263.5,21,0.0 +15137,23,9,43,0.0 +15137,34,14,19,0.0 +15137,29,123.79,42,0.0 +15137,19,9.2,39,0.0 +15137,62,49.3,16,0.0 +15137,69,36,22,0.0 +15137,18,62.5,30,0.0 +15137,49,20,9,0.0 +15137,36,19,8,0.0 +15137,15,15.5,12,0.0 +15137,74,10,1,0.0 +15137,37,26,11,0.0 +15137,4,22,43,0.0 +15137,67,14,23,0.0 +15137,50,16.25,9,0.0 +15137,51,53,33,0.0 +15137,10,31,35,0.0 +15137,35,18,16,0.0 +15137,9,97,49,0.0 +15137,47,9.5,33,0.0 +15137,59,55,50,0.0 +15137,54,7.45,36,0.0 +15137,44,19.45,37,0.0 +15137,11,21,1,0.0 +15137,33,2.5,8,0.0 +15137,25,14,6,0.0 +15137,56,38,41,0.0 +15137,14,23.25,29,0.0 +15138,38,263.5,29,0.0 +15138,12,38,50,0.0 +15138,13,6,32,0.0 +15138,17,39,4,0.0 +15138,52,7,23,0.0 +15138,43,46,44,0.0 +15138,7,30,17,0.0 +15138,58,13.25,48,0.0 +15138,66,17,36,0.0 +15138,23,9,3,0.0 +15138,32,32,29,0.0 +15138,64,33.25,23,0.0 +15138,10,31,27,0.0 +15138,62,49.3,44,0.0 +15139,21,10,17,0.0 +15139,28,45.6,34,0.0 +15139,48,12.75,36,0.0 +15139,45,9.5,32,0.0 +15139,20,81,46,0.0 +15139,36,19,10,0.0 +15139,23,9,8,0.0 +15139,57,19.5,1,0.0 +15139,46,12,43,0.0 +15139,59,55,39,0.0 +15139,72,34.8,20,0.0 +15139,29,123.79,11,0.0 +15139,49,20,19,0.0 +15139,22,21,49,0.0 +15139,55,24,23,0.0 +15139,26,31.23,22,0.0 +15139,3,10,24,0.0 +15139,15,15.5,39,0.0 +15139,8,40,22,0.0 +15139,51,53,4,0.0 +15139,25,14,11,0.0 +15139,65,21.05,4,0.0 +15139,63,43.9,5,0.0 +15139,16,17.45,20,0.0 +15139,40,18.4,28,0.0 +15139,75,7.75,16,0.0 +15139,42,14,49,0.0 +15139,4,22,29,0.0 +15139,52,7,13,0.0 +15139,5,21.35,48,0.0 +15139,74,10,9,0.0 +15139,54,7.45,15,0.0 +15139,1,18,7,0.0 +15139,30,25.89,34,0.0 +15139,24,4.5,44,0.0 +15139,19,9.2,48,0.0 +15139,77,13,2,0.0 +15139,14,23.25,8,0.0 +15139,69,36,11,0.0 +15139,38,263.5,6,0.0 +15139,67,14,42,0.0 +15139,41,9.65,25,0.0 +15139,35,18,44,0.0 +15139,56,38,9,0.0 +15139,50,16.25,10,0.0 +15139,44,19.45,3,0.0 +15139,71,21.5,7,0.0 +15139,76,18,23,0.0 +15139,66,17,31,0.0 +15139,27,43.9,28,0.0 +15139,60,34,33,0.0 +15139,7,30,43,0.0 +15139,6,25,33,0.0 +15139,9,97,33,0.0 +15139,58,13.25,44,0.0 +15139,39,18,3,0.0 +15139,62,49.3,3,0.0 +15139,31,12.5,14,0.0 +15139,18,62.5,5,0.0 +15139,13,6,28,0.0 +15139,68,12.5,26,0.0 +15139,43,46,2,0.0 +15139,53,32.8,43,0.0 +15139,10,31,46,0.0 +15139,2,19,12,0.0 +15139,61,28.5,6,0.0 +15139,73,15,36,0.0 +15139,47,9.5,5,0.0 +15139,64,33.25,25,0.0 +15139,32,32,38,0.0 +15139,12,38,11,0.0 +15139,33,2.5,35,0.0 +15139,34,14,33,0.0 +15139,17,39,46,0.0 +15139,11,21,36,0.0 +15139,70,15,20,0.0 +15139,37,26,3,0.0 +15140,59,55,41,0.0 +15140,18,62.5,44,0.0 +15140,49,20,24,0.0 +15140,22,21,49,0.0 +15140,61,28.5,48,0.0 +15140,71,21.5,37,0.0 +15140,50,16.25,29,0.0 +15140,5,21.35,38,0.0 +15140,48,12.75,18,0.0 +15140,4,22,38,0.0 +15140,3,10,41,0.0 +15140,52,7,44,0.0 +15140,9,97,38,0.0 +15140,30,25.89,35,0.0 +15140,8,40,41,0.0 +15140,72,34.8,16,0.0 +15140,62,49.3,27,0.0 +15140,15,15.5,26,0.0 +15140,42,14,43,0.0 +15140,76,18,41,0.0 +15140,56,38,7,0.0 +15140,53,32.8,14,0.0 +15140,12,38,47,0.0 +15140,63,43.9,10,0.0 +15140,54,7.45,36,0.0 +15140,45,9.5,38,0.0 +15140,74,10,15,0.0 +15140,16,17.45,39,0.0 +15140,39,18,13,0.0 +15140,67,14,49,0.0 +15140,13,6,12,0.0 +15140,69,36,24,0.0 +15140,38,263.5,43,0.0 +15140,73,15,22,0.0 +15140,26,31.23,30,0.0 +15140,25,14,13,0.0 +15140,7,30,28,0.0 +15141,13,6,24,0.0 +15141,2,19,34,0.0 +15141,23,9,12,0.0 +15141,38,263.5,30,0.0 +15141,26,31.23,37,0.0 +15141,62,49.3,3,0.0 +15141,75,7.75,41,0.0 +15141,18,62.5,31,0.0 +15141,66,17,44,0.0 +15141,44,19.45,28,0.0 +15141,30,25.89,25,0.0 +15141,58,13.25,38,0.0 +15141,77,13,32,0.0 +15141,19,9.2,31,0.0 +15141,48,12.75,2,0.0 +15141,70,15,33,0.0 +15142,70,15,41,0.0 +15142,2,19,47,0.0 +15142,32,32,37,0.0 +15142,24,4.5,24,0.0 +15142,12,38,32,0.0 +15142,53,32.8,44,0.0 +15142,39,18,39,0.0 +15142,29,123.79,18,0.0 +15142,33,2.5,36,0.0 +15142,61,28.5,17,0.0 +15142,72,34.8,16,0.0 +15142,3,10,49,0.0 +15142,58,13.25,15,0.0 +15142,40,18.4,23,0.0 +15142,38,263.5,20,0.0 +15142,35,18,46,0.0 +15142,45,9.5,50,0.0 +15142,14,23.25,47,0.0 +15142,60,34,20,0.0 +15142,10,31,3,0.0 +15142,5,21.35,21,0.0 +15142,34,14,6,0.0 +15142,56,38,18,0.0 +15142,41,9.65,29,0.0 +15142,76,18,23,0.0 +15142,18,62.5,20,0.0 +15142,17,39,15,0.0 +15142,49,20,4,0.0 +15142,48,12.75,16,0.0 +15142,27,43.9,25,0.0 +15142,36,19,1,0.0 +15142,67,14,2,0.0 +15142,4,22,19,0.0 +15142,28,45.6,24,0.0 +15142,1,18,45,0.0 +15142,43,46,45,0.0 +15142,68,12.5,41,0.0 +15142,13,6,1,0.0 +15142,47,9.5,37,0.0 +15142,11,21,45,0.0 +15142,46,12,4,0.0 +15142,21,10,29,0.0 +15142,30,25.89,15,0.0 +15142,20,81,50,0.0 +15142,7,30,9,0.0 +15142,59,55,32,0.0 +15142,26,31.23,44,0.0 +15142,54,7.45,30,0.0 +15142,25,14,4,0.0 +15142,52,7,19,0.0 +15142,75,7.75,26,0.0 +15142,71,21.5,49,0.0 +15142,31,12.5,47,0.0 +15142,63,43.9,22,0.0 +15142,9,97,13,0.0 +15142,51,53,10,0.0 +15142,50,16.25,47,0.0 +15142,73,15,29,0.0 +15142,16,17.45,48,0.0 +15142,62,49.3,40,0.0 +15142,69,36,10,0.0 +15142,77,13,48,0.0 +15142,66,17,39,0.0 +15142,42,14,43,0.0 +15142,55,24,47,0.0 +15142,23,9,46,0.0 +15142,44,19.45,17,0.0 +15142,64,33.25,25,0.0 +15142,8,40,12,0.0 +15142,37,26,2,0.0 +15142,6,25,25,0.0 +15142,65,21.05,39,0.0 +15142,22,21,46,0.0 +15142,57,19.5,29,0.0 +15143,5,21.35,3,0.0 +15143,68,12.5,23,0.0 +15143,73,15,2,0.0 +15143,58,13.25,25,0.0 +15143,23,9,13,0.0 +15143,59,55,15,0.0 +15143,70,15,10,0.0 +15143,62,49.3,30,0.0 +15143,52,7,36,0.0 +15143,3,10,42,0.0 +15143,47,9.5,16,0.0 +15143,21,10,19,0.0 +15143,56,38,36,0.0 +15143,15,15.5,3,0.0 +15143,8,40,32,0.0 +15143,76,18,43,0.0 +15143,69,36,40,0.0 +15143,20,81,43,0.0 +15144,15,15.5,4,0.0 +15144,66,17,11,0.0 +15144,32,32,42,0.0 +15144,68,12.5,35,0.0 +15144,2,19,50,0.0 +15144,13,6,27,0.0 +15144,73,15,26,0.0 +15144,72,34.8,35,0.0 +15144,70,15,29,0.0 +15144,22,21,10,0.0 +15144,4,22,50,0.0 +15144,44,19.45,40,0.0 +15144,57,19.5,36,0.0 +15144,8,40,49,0.0 +15144,36,19,30,0.0 +15144,7,30,37,0.0 +15144,11,21,19,0.0 +15144,59,55,22,0.0 +15144,17,39,35,0.0 +15144,10,31,46,0.0 +15144,51,53,1,0.0 +15144,56,38,44,0.0 +15144,71,21.5,32,0.0 +15144,63,43.9,16,0.0 +15144,61,28.5,23,0.0 +15144,53,32.8,22,0.0 +15144,77,13,23,0.0 +15144,34,14,41,0.0 +15144,18,62.5,22,0.0 +15144,19,9.2,6,0.0 +15144,37,26,4,0.0 +15144,74,10,3,0.0 +15144,25,14,21,0.0 +15144,31,12.5,43,0.0 +15144,1,18,32,0.0 +15144,29,123.79,18,0.0 +15144,6,25,34,0.0 +15144,27,43.9,25,0.0 +15144,42,14,30,0.0 +15145,35,18,4,0.0 +15145,65,21.05,12,0.0 +15145,66,17,41,0.0 +15145,14,23.25,44,0.0 +15145,57,19.5,39,0.0 +15145,76,18,8,0.0 +15145,10,31,11,0.0 +15145,46,12,1,0.0 +15145,31,12.5,34,0.0 +15145,33,2.5,9,0.0 +15145,52,7,3,0.0 +15145,15,15.5,17,0.0 +15145,20,81,28,0.0 +15145,69,36,14,0.0 +15145,6,25,12,0.0 +15145,45,9.5,13,0.0 +15145,43,46,31,0.0 +15145,54,7.45,45,0.0 +15145,74,10,33,0.0 +15145,60,34,35,0.0 +15145,29,123.79,33,0.0 +15145,26,31.23,8,0.0 +15145,13,6,27,0.0 +15145,18,62.5,35,0.0 +15145,72,34.8,29,0.0 +15145,7,30,50,0.0 +15145,51,53,26,0.0 +15146,38,263.5,21,0.0 +15146,5,21.35,48,0.0 +15146,21,10,41,0.0 +15146,15,15.5,2,0.0 +15146,58,13.25,42,0.0 +15146,23,9,33,0.0 +15146,62,49.3,2,0.0 +15146,33,2.5,22,0.0 +15146,8,40,35,0.0 +15146,29,123.79,18,0.0 +15146,59,55,42,0.0 +15146,45,9.5,19,0.0 +15146,53,32.8,9,0.0 +15146,44,19.45,46,0.0 +15146,66,17,21,0.0 +15146,35,18,16,0.0 +15146,3,10,33,0.0 +15146,9,97,7,0.0 +15146,36,19,24,0.0 +15146,41,9.65,37,0.0 +15146,4,22,44,0.0 +15146,40,18.4,15,0.0 +15146,51,53,32,0.0 +15146,25,14,39,0.0 +15146,46,12,16,0.0 +15146,48,12.75,13,0.0 +15146,27,43.9,39,0.0 +15146,57,19.5,40,0.0 +15146,72,34.8,45,0.0 +15146,54,7.45,17,0.0 +15146,76,18,44,0.0 +15146,13,6,1,0.0 +15146,16,17.45,35,0.0 +15146,22,21,43,0.0 +15146,24,4.5,1,0.0 +15147,8,40,27,0.0 +15147,64,33.25,45,0.0 +15147,68,12.5,18,0.0 +15147,62,49.3,24,0.0 +15147,14,23.25,1,0.0 +15147,56,38,6,0.0 +15147,28,45.6,17,0.0 +15147,61,28.5,45,0.0 +15147,42,14,39,0.0 +15147,21,10,44,0.0 +15147,19,9.2,32,0.0 +15147,41,9.65,30,0.0 +15147,73,15,5,0.0 +15147,34,14,40,0.0 +15147,39,18,25,0.0 +15147,67,14,43,0.0 +15147,72,34.8,36,0.0 +15147,69,36,19,0.0 +15147,26,31.23,50,0.0 +15147,18,62.5,32,0.0 +15147,36,19,13,0.0 +15147,32,32,45,0.0 +15147,27,43.9,33,0.0 +15147,76,18,40,0.0 +15147,23,9,41,0.0 +15147,10,31,36,0.0 +15147,30,25.89,20,0.0 +15147,74,10,34,0.0 +15147,5,21.35,43,0.0 +15147,16,17.45,2,0.0 +15147,3,10,6,0.0 +15147,48,12.75,19,0.0 +15147,6,25,37,0.0 +15147,70,15,3,0.0 +15147,71,21.5,31,0.0 +15147,44,19.45,26,0.0 +15147,40,18.4,2,0.0 +15147,38,263.5,3,0.0 +15147,58,13.25,20,0.0 +15147,45,9.5,7,0.0 +15147,53,32.8,26,0.0 +15147,43,46,45,0.0 +15147,49,20,38,0.0 +15147,20,81,37,0.0 +15147,52,7,1,0.0 +15147,65,21.05,8,0.0 +15147,57,19.5,32,0.0 +15147,55,24,35,0.0 +15147,12,38,35,0.0 +15147,50,16.25,20,0.0 +15147,47,9.5,25,0.0 +15147,77,13,24,0.0 +15147,11,21,23,0.0 +15147,51,53,13,0.0 +15147,31,12.5,7,0.0 +15147,59,55,7,0.0 +15147,33,2.5,18,0.0 +15147,60,34,38,0.0 +15147,17,39,23,0.0 +15147,29,123.79,11,0.0 +15147,37,26,32,0.0 +15147,22,21,5,0.0 +15147,24,4.5,49,0.0 +15147,46,12,36,0.0 +15147,35,18,23,0.0 +15147,1,18,3,0.0 +15148,34,14,27,0.0 +15148,52,7,15,0.0 +15148,9,97,32,0.0 +15148,8,40,17,0.0 +15148,27,43.9,50,0.0 +15148,47,9.5,50,0.0 +15148,48,12.75,31,0.0 +15148,24,4.5,29,0.0 +15148,76,18,42,0.0 +15148,25,14,49,0.0 +15148,50,16.25,44,0.0 +15148,14,23.25,36,0.0 +15148,31,12.5,24,0.0 +15148,64,33.25,49,0.0 +15148,65,21.05,50,0.0 +15148,71,21.5,49,0.0 +15148,60,34,1,0.0 +15148,68,12.5,14,0.0 +15148,59,55,20,0.0 +15148,66,17,19,0.0 +15148,15,15.5,16,0.0 +15148,11,21,9,0.0 +15148,49,20,15,0.0 +15148,55,24,48,0.0 +15148,61,28.5,40,0.0 +15148,10,31,4,0.0 +15148,35,18,47,0.0 +15148,38,263.5,6,0.0 +15148,29,123.79,20,0.0 +15148,23,9,40,0.0 +15148,63,43.9,41,0.0 +15148,7,30,12,0.0 +15148,40,18.4,29,0.0 +15148,42,14,28,0.0 +15148,57,19.5,23,0.0 +15148,2,19,1,0.0 +15148,18,62.5,8,0.0 +15148,43,46,36,0.0 +15148,41,9.65,25,0.0 +15148,5,21.35,32,0.0 +15148,56,38,28,0.0 +15148,51,53,8,0.0 +15148,22,21,37,0.0 +15148,77,13,19,0.0 +15148,13,6,40,0.0 +15148,70,15,39,0.0 +15148,28,45.6,20,0.0 +15148,20,81,40,0.0 +15148,30,25.89,40,0.0 +15148,4,22,28,0.0 +15148,75,7.75,23,0.0 +15148,1,18,48,0.0 +15148,45,9.5,48,0.0 +15148,6,25,38,0.0 +15148,53,32.8,32,0.0 +15148,19,9.2,26,0.0 +15148,12,38,13,0.0 +15148,17,39,35,0.0 +15148,3,10,17,0.0 +15148,32,32,37,0.0 +15148,72,34.8,15,0.0 +15148,46,12,28,0.0 +15148,33,2.5,40,0.0 +15148,54,7.45,25,0.0 +15149,54,7.45,45,0.0 +15149,65,21.05,25,0.0 +15149,14,23.25,37,0.0 +15149,22,21,42,0.0 +15149,69,36,9,0.0 +15149,18,62.5,37,0.0 +15149,28,45.6,4,0.0 +15149,38,263.5,44,0.0 +15149,61,28.5,49,0.0 +15149,32,32,9,0.0 +15149,66,17,20,0.0 +15149,43,46,8,0.0 +15149,8,40,23,0.0 +15149,70,15,15,0.0 +15149,57,19.5,18,0.0 +15149,11,21,38,0.0 +15149,20,81,18,0.0 +15149,5,21.35,15,0.0 +15149,75,7.75,19,0.0 +15149,30,25.89,13,0.0 +15150,33,2.5,49,0.0 +15150,63,43.9,40,0.0 +15150,38,263.5,29,0.0 +15150,67,14,49,0.0 +15150,44,19.45,12,0.0 +15150,36,19,35,0.0 +15150,29,123.79,19,0.0 +15150,31,12.5,4,0.0 +15150,39,18,25,0.0 +15150,15,15.5,50,0.0 +15150,76,18,34,0.0 +15150,26,31.23,41,0.0 +15150,23,9,33,0.0 +15150,71,21.5,44,0.0 +15150,6,25,14,0.0 +15150,74,10,50,0.0 +15150,54,7.45,9,0.0 +15150,21,10,39,0.0 +15150,50,16.25,40,0.0 +15150,47,9.5,49,0.0 +15150,18,62.5,45,0.0 +15150,22,21,49,0.0 +15150,41,9.65,16,0.0 +15150,13,6,11,0.0 +15150,77,13,21,0.0 +15150,11,21,19,0.0 +15150,4,22,23,0.0 +15150,64,33.25,10,0.0 +15150,66,17,12,0.0 +15150,57,19.5,20,0.0 +15150,65,21.05,33,0.0 +15150,69,36,28,0.0 +15150,1,18,41,0.0 +15150,58,13.25,10,0.0 +15150,10,31,44,0.0 +15150,48,12.75,32,0.0 +15150,34,14,36,0.0 +15150,52,7,19,0.0 +15150,75,7.75,45,0.0 +15150,16,17.45,29,0.0 +15150,17,39,40,0.0 +15150,19,9.2,11,0.0 +15150,24,4.5,23,0.0 +15150,8,40,49,0.0 +15150,7,30,31,0.0 +15151,18,62.5,30,0.0 +15151,14,23.25,50,0.0 +15151,45,9.5,44,0.0 +15151,41,9.65,37,0.0 +15151,77,13,27,0.0 +15151,62,49.3,13,0.0 +15151,57,19.5,48,0.0 +15151,75,7.75,28,0.0 +15151,24,4.5,38,0.0 +15151,30,25.89,25,0.0 +15151,31,12.5,14,0.0 +15151,50,16.25,2,0.0 +15151,71,21.5,28,0.0 +15151,42,14,38,0.0 +15151,9,97,23,0.0 +15151,32,32,25,0.0 +15151,27,43.9,5,0.0 +15151,73,15,12,0.0 +15152,14,23.25,35,0.0 +15152,47,9.5,44,0.0 +15152,15,15.5,39,0.0 +15152,4,22,33,0.0 +15152,27,43.9,13,0.0 +15152,57,19.5,33,0.0 +15152,40,18.4,36,0.0 +15152,9,97,31,0.0 +15152,58,13.25,28,0.0 +15152,19,9.2,47,0.0 +15152,28,45.6,46,0.0 +15152,38,263.5,38,0.0 +15152,67,14,48,0.0 +15152,6,25,19,0.0 +15152,13,6,16,0.0 +15152,36,19,31,0.0 +15152,23,9,2,0.0 +15152,59,55,2,0.0 +15152,52,7,18,0.0 +15152,76,18,16,0.0 +15152,11,21,1,0.0 +15152,12,38,34,0.0 +15152,41,9.65,13,0.0 +15152,42,14,38,0.0 +15152,54,7.45,45,0.0 +15152,71,21.5,32,0.0 +15152,70,15,21,0.0 +15152,3,10,17,0.0 +15152,45,9.5,10,0.0 +15152,44,19.45,18,0.0 +15152,34,14,49,0.0 +15153,27,43.9,46,0.0 +15153,36,19,45,0.0 +15153,28,45.6,6,0.0 +15153,26,31.23,27,0.0 +15153,59,55,24,0.0 +15153,65,21.05,9,0.0 +15153,41,9.65,26,0.0 +15153,77,13,33,0.0 +15153,61,28.5,26,0.0 +15153,60,34,17,0.0 +15153,76,18,21,0.0 +15153,50,16.25,31,0.0 +15154,6,25,8,0.0 +15154,38,263.5,9,0.0 +15154,57,19.5,11,0.0 +15154,15,15.5,23,0.0 +15154,25,14,24,0.0 +15154,69,36,30,0.0 +15154,5,21.35,18,0.0 +15154,45,9.5,3,0.0 +15154,46,12,32,0.0 +15154,21,10,16,0.0 +15154,7,30,36,0.0 +15154,18,62.5,25,0.0 +15154,56,38,9,0.0 +15154,36,19,9,0.0 +15154,64,33.25,34,0.0 +15154,49,20,4,0.0 +15154,3,10,2,0.0 +15154,28,45.6,9,0.0 +15154,66,17,30,0.0 +15154,14,23.25,16,0.0 +15154,65,21.05,4,0.0 +15154,20,81,35,0.0 +15154,62,49.3,47,0.0 +15154,29,123.79,12,0.0 +15154,34,14,50,0.0 +15154,63,43.9,16,0.0 +15154,32,32,39,0.0 +15154,43,46,8,0.0 +15155,57,19.5,11,0.0 +15155,5,21.35,2,0.0 +15155,63,43.9,1,0.0 +15155,46,12,30,0.0 +15155,12,38,40,0.0 +15155,41,9.65,43,0.0 +15155,4,22,17,0.0 +15155,66,17,3,0.0 +15155,71,21.5,18,0.0 +15155,42,14,34,0.0 +15155,1,18,19,0.0 +15155,7,30,39,0.0 +15155,22,21,13,0.0 +15155,59,55,8,0.0 +15155,36,19,3,0.0 +15155,43,46,2,0.0 +15155,26,31.23,49,0.0 +15155,58,13.25,32,0.0 +15155,35,18,39,0.0 +15155,25,14,20,0.0 +15155,47,9.5,29,0.0 +15155,62,49.3,18,0.0 +15155,50,16.25,17,0.0 +15155,51,53,11,0.0 +15155,49,20,34,0.0 +15155,65,21.05,47,0.0 +15155,20,81,13,0.0 +15155,28,45.6,13,0.0 +15155,16,17.45,48,0.0 +15155,64,33.25,22,0.0 +15155,18,62.5,4,0.0 +15155,27,43.9,34,0.0 +15155,54,7.45,11,0.0 +15155,53,32.8,38,0.0 +15155,74,10,27,0.0 +15155,31,12.5,19,0.0 +15155,70,15,15,0.0 +15155,30,25.89,30,0.0 +15156,76,18,45,0.0 +15156,5,21.35,41,0.0 +15156,12,38,13,0.0 +15156,16,17.45,39,0.0 +15156,28,45.6,2,0.0 +15156,50,16.25,11,0.0 +15156,69,36,5,0.0 +15156,26,31.23,41,0.0 +15156,45,9.5,21,0.0 +15156,20,81,6,0.0 +15156,17,39,20,0.0 +15156,13,6,38,0.0 +15156,72,34.8,8,0.0 +15156,15,15.5,40,0.0 +15156,3,10,35,0.0 +15156,29,123.79,5,0.0 +15156,27,43.9,23,0.0 +15156,46,12,15,0.0 +15156,52,7,46,0.0 +15156,61,28.5,20,0.0 +15156,39,18,43,0.0 +15156,21,10,14,0.0 +15156,34,14,17,0.0 +15156,4,22,28,0.0 +15156,2,19,47,0.0 +15156,48,12.75,26,0.0 +15156,9,97,10,0.0 +15156,53,32.8,13,0.0 +15157,20,81,34,0.0 +15157,70,15,33,0.0 +15157,16,17.45,18,0.0 +15157,3,10,25,0.0 +15157,43,46,2,0.0 +15157,28,45.6,8,0.0 +15157,60,34,25,0.0 +15157,48,12.75,29,0.0 +15157,65,21.05,22,0.0 +15157,69,36,43,0.0 +15157,77,13,3,0.0 +15157,71,21.5,50,0.0 +15157,62,49.3,36,0.0 +15157,25,14,41,0.0 +15157,74,10,24,0.0 +15157,50,16.25,23,0.0 +15157,26,31.23,5,0.0 +15157,22,21,35,0.0 +15157,37,26,26,0.0 +15157,40,18.4,20,0.0 +15157,24,4.5,49,0.0 +15157,61,28.5,28,0.0 +15157,14,23.25,44,0.0 +15157,58,13.25,11,0.0 +15157,63,43.9,15,0.0 +15157,75,7.75,40,0.0 +15157,55,24,37,0.0 +15157,23,9,32,0.0 +15157,2,19,26,0.0 +15157,31,12.5,10,0.0 +15157,6,25,7,0.0 +15157,9,97,31,0.0 +15157,54,7.45,1,0.0 +15157,5,21.35,11,0.0 +15157,59,55,43,0.0 +15157,38,263.5,2,0.0 +15157,1,18,22,0.0 +15157,33,2.5,30,0.0 +15157,46,12,18,0.0 +15157,45,9.5,49,0.0 +15157,66,17,34,0.0 +15157,44,19.45,40,0.0 +15157,52,7,47,0.0 +15157,41,9.65,8,0.0 +15157,47,9.5,3,0.0 +15157,12,38,40,0.0 +15157,8,40,18,0.0 +15157,21,10,31,0.0 +15157,72,34.8,42,0.0 +15157,56,38,11,0.0 +15157,68,12.5,35,0.0 +15157,49,20,43,0.0 +15157,34,14,41,0.0 +15157,53,32.8,27,0.0 +15157,36,19,47,0.0 +15157,57,19.5,12,0.0 +15157,11,21,38,0.0 +15157,39,18,11,0.0 +15157,73,15,1,0.0 +15157,51,53,21,0.0 +15157,17,39,50,0.0 +15157,7,30,36,0.0 +15157,76,18,16,0.0 +15157,19,9.2,35,0.0 +15157,4,22,23,0.0 +15157,42,14,40,0.0 +15157,64,33.25,1,0.0 +15157,13,6,28,0.0 +15158,26,31.23,21,0.0 +15158,62,49.3,4,0.0 +15158,57,19.5,12,0.0 +15158,53,32.8,29,0.0 +15158,11,21,50,0.0 +15158,33,2.5,25,0.0 +15158,54,7.45,36,0.0 +15158,55,24,30,0.0 +15158,8,40,13,0.0 +15158,44,19.45,21,0.0 +15158,43,46,35,0.0 +15158,6,25,33,0.0 +15158,73,15,48,0.0 +15158,18,62.5,41,0.0 +15158,64,33.25,13,0.0 +15158,50,16.25,9,0.0 +15158,13,6,29,0.0 +15158,4,22,7,0.0 +15158,36,19,10,0.0 +15158,12,38,36,0.0 +15158,27,43.9,26,0.0 +15158,58,13.25,38,0.0 +15158,35,18,32,0.0 +15158,1,18,47,0.0 +15158,9,97,46,0.0 +15158,39,18,25,0.0 +15158,16,17.45,19,0.0 +15158,51,53,23,0.0 +15158,63,43.9,18,0.0 +15158,3,10,43,0.0 +15158,59,55,17,0.0 +15158,15,15.5,22,0.0 +15158,45,9.5,9,0.0 +15158,31,12.5,50,0.0 +15158,24,4.5,9,0.0 +15158,56,38,50,0.0 +15158,67,14,24,0.0 +15158,20,81,29,0.0 +15158,66,17,7,0.0 +15158,61,28.5,45,0.0 +15158,22,21,49,0.0 +15158,14,23.25,13,0.0 +15158,46,12,36,0.0 +15158,75,7.75,44,0.0 +15158,77,13,29,0.0 +15158,40,18.4,39,0.0 +15159,50,16.25,10,0.0 +15159,42,14,1,0.0 +15159,63,43.9,50,0.0 +15159,60,34,1,0.0 +15159,49,20,22,0.0 +15159,38,263.5,31,0.0 +15159,75,7.75,4,0.0 +15159,68,12.5,20,0.0 +15159,5,21.35,24,0.0 +15159,33,2.5,48,0.0 +15159,54,7.45,37,0.0 +15159,43,46,11,0.0 +15159,8,40,38,0.0 +15159,53,32.8,27,0.0 +15160,69,36,30,0.0 +15160,38,263.5,18,0.0 +15160,15,15.5,43,0.0 +15160,70,15,44,0.0 +15160,71,21.5,28,0.0 +15160,52,7,43,0.0 +15160,37,26,15,0.0 +15160,6,25,8,0.0 +15160,48,12.75,10,0.0 +15160,16,17.45,13,0.0 +15160,18,62.5,49,0.0 +15160,23,9,49,0.0 +15161,6,25,7,0.0 +15161,54,7.45,41,0.0 +15161,45,9.5,39,0.0 +15161,39,18,23,0.0 +15161,16,17.45,49,0.0 +15161,27,43.9,9,0.0 +15161,30,25.89,22,0.0 +15161,58,13.25,13,0.0 +15161,14,23.25,35,0.0 +15161,2,19,38,0.0 +15161,15,15.5,33,0.0 +15161,60,34,2,0.0 +15161,67,14,19,0.0 +15161,10,31,23,0.0 +15161,37,26,46,0.0 +15161,4,22,8,0.0 +15161,64,33.25,15,0.0 +15161,62,49.3,23,0.0 +15161,38,263.5,4,0.0 +15161,49,20,24,0.0 +15161,9,97,36,0.0 +15161,41,9.65,30,0.0 +15161,50,16.25,29,0.0 +15161,77,13,43,0.0 +15161,66,17,40,0.0 +15161,1,18,6,0.0 +15161,8,40,7,0.0 +15161,46,12,16,0.0 +15161,24,4.5,41,0.0 +15161,42,14,41,0.0 +15161,73,15,3,0.0 +15161,34,14,5,0.0 +15161,74,10,32,0.0 +15161,53,32.8,4,0.0 +15161,7,30,31,0.0 +15161,17,39,7,0.0 +15161,25,14,12,0.0 +15161,51,53,26,0.0 +15161,65,21.05,31,0.0 +15161,26,31.23,42,0.0 +15161,69,36,6,0.0 +15161,70,15,49,0.0 +15161,29,123.79,26,0.0 +15161,23,9,20,0.0 +15161,36,19,38,0.0 +15161,48,12.75,17,0.0 +15161,21,10,11,0.0 +15161,13,6,42,0.0 +15161,55,24,18,0.0 +15161,20,81,10,0.0 +15161,72,34.8,32,0.0 +15161,19,9.2,1,0.0 +15161,3,10,10,0.0 +15161,31,12.5,22,0.0 +15161,43,46,40,0.0 +15161,5,21.35,30,0.0 +15161,52,7,38,0.0 +15161,57,19.5,11,0.0 +15161,28,45.6,18,0.0 +15161,33,2.5,38,0.0 +15161,12,38,47,0.0 +15161,61,28.5,41,0.0 +15161,59,55,11,0.0 +15161,22,21,41,0.0 +15162,70,15,1,0.0 +15162,12,38,35,0.0 +15162,32,32,32,0.0 +15162,62,49.3,22,0.0 +15162,31,12.5,47,0.0 +15162,37,26,17,0.0 +15162,58,13.25,14,0.0 +15162,49,20,3,0.0 +15162,44,19.45,48,0.0 +15162,3,10,32,0.0 +15162,19,9.2,7,0.0 +15162,46,12,10,0.0 +15162,64,33.25,43,0.0 +15162,41,9.65,36,0.0 +15162,48,12.75,11,0.0 +15162,4,22,14,0.0 +15162,75,7.75,3,0.0 +15162,50,16.25,49,0.0 +15162,17,39,36,0.0 +15162,45,9.5,38,0.0 +15162,72,34.8,21,0.0 +15162,9,97,13,0.0 +15162,7,30,38,0.0 +15162,52,7,43,0.0 +15162,73,15,18,0.0 +15162,26,31.23,11,0.0 +15162,36,19,5,0.0 +15162,57,19.5,23,0.0 +15162,13,6,1,0.0 +15162,77,13,33,0.0 +15162,15,15.5,5,0.0 +15162,18,62.5,19,0.0 +15162,34,14,49,0.0 +15162,33,2.5,24,0.0 +15162,39,18,1,0.0 +15162,5,21.35,31,0.0 +15162,66,17,13,0.0 +15162,11,21,50,0.0 +15162,42,14,24,0.0 +15162,76,18,37,0.0 +15162,28,45.6,29,0.0 +15162,22,21,39,0.0 +15162,51,53,47,0.0 +15162,71,21.5,14,0.0 +15162,20,81,13,0.0 +15162,2,19,22,0.0 +15162,63,43.9,39,0.0 +15162,8,40,27,0.0 +15162,40,18.4,7,0.0 +15163,39,18,36,0.0 +15163,1,18,43,0.0 +15163,56,38,6,0.0 +15163,28,45.6,49,0.0 +15163,59,55,12,0.0 +15163,14,23.25,23,0.0 +15163,73,15,39,0.0 +15163,42,14,2,0.0 +15163,22,21,38,0.0 +15163,70,15,45,0.0 +15163,74,10,33,0.0 +15163,18,62.5,7,0.0 +15163,54,7.45,50,0.0 +15163,77,13,10,0.0 +15163,67,14,28,0.0 +15163,63,43.9,47,0.0 +15163,45,9.5,13,0.0 +15163,47,9.5,36,0.0 +15163,37,26,3,0.0 +15163,10,31,29,0.0 +15163,53,32.8,22,0.0 +15163,24,4.5,47,0.0 +15163,5,21.35,15,0.0 +15163,27,43.9,22,0.0 +15163,19,9.2,50,0.0 +15163,17,39,11,0.0 +15163,41,9.65,47,0.0 +15163,23,9,16,0.0 +15163,72,34.8,5,0.0 +15163,11,21,34,0.0 +15163,31,12.5,11,0.0 +15163,48,12.75,37,0.0 +15163,44,19.45,49,0.0 +15163,7,30,40,0.0 +15163,68,12.5,47,0.0 +15163,55,24,34,0.0 +15163,25,14,33,0.0 +15163,64,33.25,28,0.0 +15163,34,14,25,0.0 +15163,69,36,28,0.0 +15163,4,22,48,0.0 +15163,32,32,25,0.0 +15163,16,17.45,41,0.0 +15163,15,15.5,40,0.0 +15164,46,12,44,0.0 +15164,2,19,40,0.0 +15164,50,16.25,24,0.0 +15164,7,30,47,0.0 +15164,32,32,7,0.0 +15164,14,23.25,16,0.0 +15164,58,13.25,45,0.0 +15164,9,97,36,0.0 +15164,15,15.5,34,0.0 +15164,37,26,13,0.0 +15164,22,21,36,0.0 +15164,74,10,6,0.0 +15164,49,20,32,0.0 +15164,21,10,3,0.0 +15164,35,18,12,0.0 +15164,65,21.05,39,0.0 +15164,64,33.25,27,0.0 +15164,63,43.9,13,0.0 +15164,3,10,4,0.0 +15164,18,62.5,32,0.0 +15164,55,24,13,0.0 +15164,1,18,41,0.0 +15164,62,49.3,17,0.0 +15164,54,7.45,12,0.0 +15164,20,81,20,0.0 +15164,77,13,22,0.0 +15164,17,39,6,0.0 +15164,61,28.5,16,0.0 +15164,42,14,12,0.0 +15164,11,21,4,0.0 +15164,43,46,35,0.0 +15164,10,31,9,0.0 +15164,5,21.35,7,0.0 +15164,57,19.5,9,0.0 +15164,47,9.5,21,0.0 +15164,40,18.4,17,0.0 +15164,27,43.9,18,0.0 +15164,70,15,17,0.0 +15164,56,38,46,0.0 +15164,38,263.5,45,0.0 +15164,26,31.23,41,0.0 +15164,68,12.5,30,0.0 +15164,48,12.75,22,0.0 +15164,25,14,31,0.0 +15164,28,45.6,40,0.0 +15164,66,17,43,0.0 +15164,4,22,23,0.0 +15164,41,9.65,42,0.0 +15164,16,17.45,38,0.0 +15164,76,18,43,0.0 +15164,71,21.5,21,0.0 +15164,59,55,17,0.0 +15164,30,25.89,12,0.0 +15164,51,53,38,0.0 +15164,45,9.5,11,0.0 +15164,73,15,44,0.0 +15164,29,123.79,36,0.0 +15164,31,12.5,18,0.0 +15164,34,14,20,0.0 +15164,67,14,33,0.0 +15164,53,32.8,29,0.0 +15164,69,36,12,0.0 +15164,36,19,1,0.0 +15164,52,7,21,0.0 +15164,13,6,8,0.0 +15164,72,34.8,31,0.0 +15164,6,25,50,0.0 +15164,12,38,44,0.0 +15164,44,19.45,40,0.0 +15164,19,9.2,2,0.0 +15164,8,40,10,0.0 +15164,33,2.5,1,0.0 +15164,39,18,43,0.0 +15164,75,7.75,45,0.0 +15164,24,4.5,42,0.0 +15165,43,46,9,0.0 +15165,11,21,24,0.0 +15165,26,31.23,32,0.0 +15165,9,97,25,0.0 +15165,17,39,24,0.0 +15165,55,24,13,0.0 +15165,48,12.75,14,0.0 +15165,10,31,25,0.0 +15165,21,10,41,0.0 +15165,56,38,33,0.0 +15165,59,55,22,0.0 +15165,46,12,3,0.0 +15165,6,25,16,0.0 +15165,73,15,11,0.0 +15165,23,9,46,0.0 +15165,63,43.9,42,0.0 +15165,42,14,13,0.0 +15165,77,13,48,0.0 +15165,24,4.5,1,0.0 +15165,33,2.5,46,0.0 +15165,31,12.5,3,0.0 +15165,60,34,41,0.0 +15165,38,263.5,36,0.0 +15165,49,20,32,0.0 +15165,20,81,38,0.0 +15165,45,9.5,5,0.0 +15165,52,7,41,0.0 +15165,2,19,20,0.0 +15166,69,36,13,0.0 +15166,25,14,37,0.0 +15166,53,32.8,41,0.0 +15166,28,45.6,1,0.0 +15166,15,15.5,8,0.0 +15166,77,13,35,0.0 +15166,7,30,48,0.0 +15166,27,43.9,24,0.0 +15166,14,23.25,50,0.0 +15166,43,46,8,0.0 +15166,38,263.5,36,0.0 +15166,49,20,31,0.0 +15166,37,26,12,0.0 +15166,18,62.5,16,0.0 +15166,16,17.45,46,0.0 +15166,39,18,6,0.0 +15166,26,31.23,49,0.0 +15166,57,19.5,4,0.0 +15166,22,21,50,0.0 +15166,12,38,19,0.0 +15166,55,24,11,0.0 +15166,10,31,1,0.0 +15166,4,22,39,0.0 +15166,56,38,34,0.0 +15166,40,18.4,45,0.0 +15166,3,10,43,0.0 +15166,45,9.5,13,0.0 +15166,67,14,47,0.0 +15166,20,81,16,0.0 +15166,60,34,5,0.0 +15166,36,19,34,0.0 +15166,1,18,9,0.0 +15166,51,53,4,0.0 +15166,29,123.79,8,0.0 +15166,11,21,1,0.0 +15166,41,9.65,37,0.0 +15166,6,25,50,0.0 +15166,13,6,16,0.0 +15166,30,25.89,44,0.0 +15166,42,14,16,0.0 +15166,75,7.75,43,0.0 +15166,17,39,4,0.0 +15166,31,12.5,30,0.0 +15166,44,19.45,9,0.0 +15166,72,34.8,27,0.0 +15166,61,28.5,4,0.0 +15166,19,9.2,25,0.0 +15166,2,19,12,0.0 +15166,24,4.5,28,0.0 +15166,23,9,33,0.0 +15166,73,15,47,0.0 +15166,64,33.25,14,0.0 +15166,76,18,11,0.0 +15167,37,26,5,0.0 +15167,38,263.5,26,0.0 +15167,39,18,9,0.0 +15167,36,19,15,0.0 +15167,52,7,8,0.0 +15167,48,12.75,43,0.0 +15167,55,24,24,0.0 +15167,76,18,44,0.0 +15167,56,38,14,0.0 +15167,1,18,32,0.0 +15167,20,81,33,0.0 +15167,24,4.5,20,0.0 +15167,31,12.5,19,0.0 +15167,32,32,24,0.0 +15167,50,16.25,24,0.0 +15167,4,22,46,0.0 +15167,29,123.79,2,0.0 +15167,51,53,36,0.0 +15167,67,14,1,0.0 +15167,3,10,17,0.0 +15167,70,15,20,0.0 +15167,9,97,12,0.0 +15167,44,19.45,31,0.0 +15167,28,45.6,31,0.0 +15167,60,34,40,0.0 +15167,30,25.89,9,0.0 +15167,7,30,16,0.0 +15167,47,9.5,28,0.0 +15167,77,13,6,0.0 +15167,10,31,46,0.0 +15167,62,49.3,34,0.0 +15167,33,2.5,44,0.0 +15167,74,10,42,0.0 +15167,26,31.23,29,0.0 +15167,25,14,2,0.0 +15167,11,21,22,0.0 +15167,66,17,16,0.0 +15167,72,34.8,5,0.0 +15167,65,21.05,29,0.0 +15167,12,38,42,0.0 +15167,6,25,44,0.0 +15167,59,55,20,0.0 +15167,8,40,7,0.0 +15167,68,12.5,39,0.0 +15167,14,23.25,38,0.0 +15167,40,18.4,3,0.0 +15167,71,21.5,20,0.0 +15167,73,15,19,0.0 +15167,13,6,30,0.0 +15167,27,43.9,42,0.0 +15167,45,9.5,8,0.0 +15167,54,7.45,45,0.0 +15167,64,33.25,12,0.0 +15167,43,46,36,0.0 +15167,49,20,34,0.0 +15167,41,9.65,50,0.0 +15167,22,21,5,0.0 +15167,46,12,38,0.0 +15167,23,9,20,0.0 +15167,35,18,11,0.0 +15167,63,43.9,44,0.0 +15167,15,15.5,1,0.0 +15167,18,62.5,23,0.0 +15167,53,32.8,6,0.0 +15167,61,28.5,44,0.0 +15167,21,10,1,0.0 +15167,34,14,45,0.0 +15167,19,9.2,29,0.0 +15168,3,10,12,0.0 +15168,52,7,48,0.0 +15169,72,34.8,28,0.0 +15169,53,32.8,12,0.0 +15169,52,7,11,0.0 +15169,38,263.5,28,0.0 +15169,32,32,22,0.0 +15169,44,19.45,33,0.0 +15169,45,9.5,50,0.0 +15169,69,36,9,0.0 +15169,41,9.65,11,0.0 +15169,7,30,1,0.0 +15169,9,97,18,0.0 +15169,30,25.89,49,0.0 +15169,15,15.5,9,0.0 +15169,43,46,48,0.0 +15169,61,28.5,41,0.0 +15169,29,123.79,35,0.0 +15169,67,14,24,0.0 +15169,47,9.5,31,0.0 +15169,3,10,45,0.0 +15169,66,17,40,0.0 +15169,1,18,47,0.0 +15169,76,18,45,0.0 +15169,42,14,21,0.0 +15169,40,18.4,25,0.0 +15169,51,53,15,0.0 +15170,4,22,18,0.0 +15170,63,43.9,47,0.0 +15170,11,21,10,0.0 +15170,52,7,50,0.0 +15170,45,9.5,8,0.0 +15170,28,45.6,27,0.0 +15170,60,34,32,0.0 +15170,68,12.5,24,0.0 +15170,49,20,44,0.0 +15170,2,19,3,0.0 +15170,37,26,48,0.0 +15170,33,2.5,8,0.0 +15170,54,7.45,18,0.0 +15170,58,13.25,21,0.0 +15170,6,25,34,0.0 +15170,46,12,18,0.0 +15170,57,19.5,49,0.0 +15170,22,21,10,0.0 +15170,24,4.5,45,0.0 +15170,41,9.65,18,0.0 +15170,61,28.5,6,0.0 +15170,56,38,36,0.0 +15170,35,18,49,0.0 +15170,74,10,42,0.0 +15170,13,6,12,0.0 +15170,23,9,48,0.0 +15170,34,14,49,0.0 +15170,17,39,17,0.0 +15170,50,16.25,24,0.0 +15170,10,31,40,0.0 +15170,36,19,13,0.0 +15170,31,12.5,21,0.0 +15170,48,12.75,47,0.0 +15170,12,38,32,0.0 +15170,21,10,37,0.0 +15170,44,19.45,38,0.0 +15170,40,18.4,4,0.0 +15170,19,9.2,7,0.0 +15170,32,32,37,0.0 +15170,62,49.3,41,0.0 +15170,72,34.8,2,0.0 +15170,29,123.79,13,0.0 +15170,75,7.75,45,0.0 +15170,55,24,42,0.0 +15170,67,14,9,0.0 +15170,27,43.9,22,0.0 +15170,25,14,27,0.0 +15170,18,62.5,48,0.0 +15170,43,46,13,0.0 +15170,39,18,43,0.0 +15170,38,263.5,33,0.0 +15170,3,10,17,0.0 +15170,64,33.25,16,0.0 +15170,77,13,5,0.0 +15170,71,21.5,22,0.0 +15170,30,25.89,33,0.0 +15170,26,31.23,42,0.0 +15170,9,97,40,0.0 +15170,7,30,38,0.0 +15170,66,17,6,0.0 +15170,42,14,38,0.0 +15170,70,15,11,0.0 +15170,73,15,37,0.0 +15170,59,55,29,0.0 +15170,65,21.05,26,0.0 +15171,66,17,47,0.0 +15171,75,7.75,46,0.0 +15171,32,32,47,0.0 +15171,73,15,8,0.0 +15171,49,20,35,0.0 +15171,11,21,3,0.0 +15171,65,21.05,7,0.0 +15171,38,263.5,17,0.0 +15171,69,36,46,0.0 +15171,29,123.79,1,0.0 +15171,46,12,27,0.0 +15171,14,23.25,35,0.0 +15171,27,43.9,26,0.0 +15171,41,9.65,21,0.0 +15171,72,34.8,23,0.0 +15171,71,21.5,41,0.0 +15171,74,10,6,0.0 +15171,63,43.9,24,0.0 +15171,64,33.25,25,0.0 +15171,50,16.25,19,0.0 +15171,40,18.4,33,0.0 +15171,26,31.23,26,0.0 +15171,56,38,25,0.0 +15171,34,14,25,0.0 +15171,54,7.45,29,0.0 +15171,42,14,9,0.0 +15171,53,32.8,12,0.0 +15171,10,31,45,0.0 +15171,45,9.5,49,0.0 +15171,55,24,22,0.0 +15171,7,30,1,0.0 +15171,62,49.3,8,0.0 +15171,23,9,41,0.0 +15171,25,14,49,0.0 +15171,13,6,32,0.0 +15171,18,62.5,16,0.0 +15171,60,34,37,0.0 +15171,47,9.5,4,0.0 +15171,51,53,21,0.0 +15171,12,38,46,0.0 +15171,4,22,34,0.0 +15171,22,21,45,0.0 +15171,58,13.25,1,0.0 +15171,70,15,10,0.0 +15171,30,25.89,4,0.0 +15171,67,14,16,0.0 +15171,43,46,19,0.0 +15171,68,12.5,2,0.0 +15171,8,40,41,0.0 +15171,52,7,50,0.0 +15171,44,19.45,5,0.0 +15171,15,15.5,12,0.0 +15171,28,45.6,7,0.0 +15171,20,81,18,0.0 +15171,17,39,34,0.0 +15171,33,2.5,4,0.0 +15171,76,18,19,0.0 +15171,57,19.5,35,0.0 +15171,6,25,50,0.0 +15172,60,34,38,0.0 +15172,70,15,47,0.0 +15172,36,19,2,0.0 +15172,35,18,45,0.0 +15172,33,2.5,50,0.0 +15172,9,97,8,0.0 +15172,51,53,35,0.0 +15172,27,43.9,1,0.0 +15172,74,10,44,0.0 +15172,37,26,26,0.0 +15172,14,23.25,34,0.0 +15172,76,18,27,0.0 +15172,63,43.9,8,0.0 +15172,68,12.5,18,0.0 +15172,38,263.5,12,0.0 +15172,21,10,49,0.0 +15172,39,18,41,0.0 +15172,64,33.25,15,0.0 +15172,17,39,9,0.0 +15172,50,16.25,41,0.0 +15172,31,12.5,30,0.0 +15172,22,21,48,0.0 +15172,77,13,33,0.0 +15172,55,24,32,0.0 +15172,61,28.5,2,0.0 +15172,75,7.75,38,0.0 +15172,73,15,49,0.0 +15172,30,25.89,10,0.0 +15172,18,62.5,25,0.0 +15172,20,81,46,0.0 +15172,24,4.5,38,0.0 +15172,13,6,18,0.0 +15172,45,9.5,42,0.0 +15173,56,38,49,0.0 +15173,75,7.75,16,0.0 +15173,2,19,11,0.0 +15173,17,39,28,0.0 +15173,50,16.25,43,0.0 +15173,51,53,47,0.0 +15173,10,31,15,0.0 +15173,69,36,44,0.0 +15173,77,13,8,0.0 +15173,40,18.4,12,0.0 +15173,24,4.5,7,0.0 +15173,59,55,22,0.0 +15173,52,7,35,0.0 +15173,49,20,3,0.0 +15173,55,24,11,0.0 +15173,62,49.3,45,0.0 +15173,23,9,29,0.0 +15173,74,10,2,0.0 +15173,20,81,2,0.0 +15173,76,18,37,0.0 +15173,13,6,40,0.0 +15173,72,34.8,48,0.0 +15173,25,14,9,0.0 +15173,46,12,46,0.0 +15173,14,23.25,28,0.0 +15173,31,12.5,7,0.0 +15173,27,43.9,44,0.0 +15173,38,263.5,5,0.0 +15173,39,18,35,0.0 +15173,66,17,12,0.0 +15173,18,62.5,13,0.0 +15173,34,14,20,0.0 +15173,30,25.89,9,0.0 +15173,43,46,6,0.0 +15173,73,15,38,0.0 +15173,70,15,31,0.0 +15173,45,9.5,15,0.0 +15173,9,97,33,0.0 +15173,26,31.23,19,0.0 +15173,36,19,36,0.0 +15173,6,25,27,0.0 +15173,33,2.5,13,0.0 +15173,1,18,49,0.0 +15173,67,14,31,0.0 +15173,44,19.45,30,0.0 +15173,48,12.75,49,0.0 +15173,65,21.05,40,0.0 +15173,32,32,37,0.0 +15173,63,43.9,43,0.0 +15173,3,10,47,0.0 +15173,21,10,33,0.0 +15173,16,17.45,5,0.0 +15173,57,19.5,34,0.0 +15173,15,15.5,29,0.0 +15173,54,7.45,46,0.0 +15173,42,14,47,0.0 +15173,68,12.5,20,0.0 +15173,19,9.2,22,0.0 +15173,29,123.79,6,0.0 +15173,64,33.25,43,0.0 +15173,11,21,26,0.0 +15173,58,13.25,9,0.0 +15173,8,40,44,0.0 +15173,35,18,46,0.0 +15173,4,22,1,0.0 +15173,12,38,19,0.0 +15173,41,9.65,37,0.0 +15173,5,21.35,19,0.0 +15173,53,32.8,48,0.0 +15173,22,21,34,0.0 +15173,47,9.5,43,0.0 +15173,7,30,46,0.0 +15174,76,18,26,0.0 +15174,5,21.35,8,0.0 +15174,44,19.45,45,0.0 +15174,74,10,46,0.0 +15174,10,31,30,0.0 +15174,32,32,47,0.0 +15174,20,81,2,0.0 +15174,64,33.25,8,0.0 +15174,25,14,10,0.0 +15174,12,38,5,0.0 +15174,29,123.79,43,0.0 +15174,63,43.9,23,0.0 +15174,38,263.5,12,0.0 +15174,70,15,1,0.0 +15174,46,12,30,0.0 +15174,36,19,45,0.0 +15174,55,24,32,0.0 +15174,62,49.3,43,0.0 +15174,52,7,40,0.0 +15174,75,7.75,38,0.0 +15174,42,14,43,0.0 +15174,27,43.9,12,0.0 +15174,24,4.5,13,0.0 +15174,34,14,21,0.0 +15174,40,18.4,9,0.0 +15174,56,38,47,0.0 +15174,77,13,8,0.0 +15174,30,25.89,40,0.0 +15174,4,22,24,0.0 +15174,43,46,25,0.0 +15174,18,62.5,34,0.0 +15174,50,16.25,4,0.0 +15174,68,12.5,44,0.0 +15174,35,18,39,0.0 +15174,59,55,18,0.0 +15174,11,21,5,0.0 +15174,23,9,36,0.0 +15174,6,25,17,0.0 +15174,57,19.5,17,0.0 +15174,60,34,43,0.0 +15174,48,12.75,44,0.0 +15174,3,10,24,0.0 +15174,73,15,2,0.0 +15174,72,34.8,34,0.0 +15174,26,31.23,25,0.0 +15174,22,21,6,0.0 +15174,67,14,5,0.0 +15174,9,97,43,0.0 +15174,14,23.25,30,0.0 +15174,1,18,8,0.0 +15174,16,17.45,16,0.0 +15174,65,21.05,19,0.0 +15174,54,7.45,46,0.0 +15174,13,6,3,0.0 +15174,41,9.65,26,0.0 +15174,69,36,44,0.0 +15174,53,32.8,7,0.0 +15174,45,9.5,21,0.0 +15174,17,39,23,0.0 +15174,7,30,17,0.0 +15174,61,28.5,41,0.0 +15174,39,18,50,0.0 +15174,15,15.5,18,0.0 +15175,48,12.75,8,0.0 +15175,35,18,39,0.0 +15175,43,46,20,0.0 +15175,30,25.89,11,0.0 +15175,70,15,31,0.0 +15175,2,19,12,0.0 +15175,49,20,23,0.0 +15175,23,9,23,0.0 +15175,71,21.5,20,0.0 +15176,75,7.75,28,0.0 +15176,7,30,49,0.0 +15176,32,32,11,0.0 +15176,16,17.45,27,0.0 +15176,6,25,37,0.0 +15176,26,31.23,7,0.0 +15176,77,13,17,0.0 +15176,52,7,22,0.0 +15176,69,36,42,0.0 +15176,14,23.25,23,0.0 +15176,45,9.5,44,0.0 +15176,8,40,38,0.0 +15176,27,43.9,31,0.0 +15176,39,18,26,0.0 +15176,56,38,39,0.0 +15176,60,34,5,0.0 +15176,29,123.79,15,0.0 +15176,15,15.5,47,0.0 +15176,2,19,10,0.0 +15176,33,2.5,40,0.0 +15176,62,49.3,20,0.0 +15176,31,12.5,9,0.0 +15176,36,19,7,0.0 +15176,38,263.5,28,0.0 +15176,40,18.4,35,0.0 +15176,51,53,47,0.0 +15176,11,21,44,0.0 +15176,74,10,42,0.0 +15176,37,26,22,0.0 +15176,57,19.5,44,0.0 +15176,23,9,12,0.0 +15176,21,10,25,0.0 +15176,10,31,11,0.0 +15176,5,21.35,24,0.0 +15176,22,21,39,0.0 +15176,59,55,20,0.0 +15176,68,12.5,23,0.0 +15176,58,13.25,26,0.0 +15176,34,14,44,0.0 +15176,63,43.9,11,0.0 +15176,73,15,27,0.0 +15176,47,9.5,26,0.0 +15176,48,12.75,50,0.0 +15176,46,12,33,0.0 +15176,18,62.5,2,0.0 +15176,12,38,32,0.0 +15176,9,97,23,0.0 +15176,72,34.8,19,0.0 +15176,4,22,43,0.0 +15176,28,45.6,5,0.0 +15176,20,81,22,0.0 +15176,35,18,43,0.0 +15176,67,14,15,0.0 +15176,50,16.25,42,0.0 +15176,24,4.5,13,0.0 +15176,25,14,39,0.0 +15176,55,24,6,0.0 +15176,76,18,45,0.0 +15176,53,32.8,50,0.0 +15177,31,12.5,16,0.0 +15177,24,4.5,31,0.0 +15177,5,21.35,9,0.0 +15177,65,21.05,7,0.0 +15177,73,15,1,0.0 +15177,44,19.45,47,0.0 +15177,40,18.4,39,0.0 +15177,30,25.89,13,0.0 +15177,32,32,45,0.0 +15177,59,55,8,0.0 +15177,41,9.65,36,0.0 +15177,48,12.75,31,0.0 +15177,21,10,2,0.0 +15177,6,25,30,0.0 +15177,12,38,27,0.0 +15177,42,14,43,0.0 +15177,3,10,4,0.0 +15177,25,14,28,0.0 +15177,39,18,8,0.0 +15177,19,9.2,9,0.0 +15177,1,18,15,0.0 +15177,13,6,11,0.0 +15177,55,24,7,0.0 +15177,75,7.75,46,0.0 +15178,22,21,31,0.0 +15178,51,53,43,0.0 +15178,61,28.5,29,0.0 +15178,10,31,34,0.0 +15178,76,18,13,0.0 +15178,52,7,2,0.0 +15178,46,12,25,0.0 +15178,14,23.25,24,0.0 +15178,28,45.6,34,0.0 +15178,77,13,21,0.0 +15178,13,6,23,0.0 +15178,66,17,18,0.0 +15178,45,9.5,34,0.0 +15178,35,18,46,0.0 +15178,54,7.45,39,0.0 +15178,9,97,50,0.0 +15178,15,15.5,28,0.0 +15178,57,19.5,3,0.0 +15178,64,33.25,44,0.0 +15178,50,16.25,27,0.0 +15178,16,17.45,1,0.0 +15178,27,43.9,46,0.0 +15178,33,2.5,41,0.0 +15178,74,10,15,0.0 +15178,2,19,43,0.0 +15178,59,55,35,0.0 +15178,55,24,37,0.0 +15178,17,39,28,0.0 +15178,40,18.4,6,0.0 +15178,20,81,7,0.0 +15178,29,123.79,2,0.0 +15178,49,20,11,0.0 +15178,39,18,49,0.0 +15178,65,21.05,30,0.0 +15178,48,12.75,19,0.0 +15178,36,19,7,0.0 +15179,28,45.6,12,0.0 +15179,4,22,48,0.0 +15179,23,9,16,0.0 +15179,7,30,28,0.0 +15179,48,12.75,37,0.0 +15179,52,7,47,0.0 +15179,45,9.5,46,0.0 +15179,6,25,44,0.0 +15179,73,15,4,0.0 +15179,61,28.5,36,0.0 +15179,57,19.5,32,0.0 +15179,64,33.25,7,0.0 +15179,22,21,2,0.0 +15179,27,43.9,15,0.0 +15179,63,43.9,14,0.0 +15179,33,2.5,38,0.0 +15179,26,31.23,37,0.0 +15179,9,97,45,0.0 +15179,17,39,10,0.0 +15179,62,49.3,43,0.0 +15179,30,25.89,25,0.0 +15179,14,23.25,1,0.0 +15179,25,14,47,0.0 +15179,42,14,2,0.0 +15179,5,21.35,34,0.0 +15179,29,123.79,50,0.0 +15179,43,46,9,0.0 +15179,49,20,42,0.0 +15179,37,26,43,0.0 +15179,11,21,29,0.0 +15179,13,6,8,0.0 +15179,20,81,22,0.0 +15179,70,15,42,0.0 +15179,41,9.65,1,0.0 +15179,59,55,12,0.0 +15179,8,40,29,0.0 +15179,53,32.8,28,0.0 +15179,51,53,3,0.0 +15179,39,18,5,0.0 +15179,47,9.5,23,0.0 +15179,3,10,13,0.0 +15179,72,34.8,28,0.0 +15179,76,18,43,0.0 +15179,10,31,23,0.0 +15179,75,7.75,5,0.0 +15179,46,12,47,0.0 +15179,58,13.25,37,0.0 +15179,19,9.2,41,0.0 +15179,31,12.5,17,0.0 +15179,56,38,21,0.0 +15179,12,38,21,0.0 +15179,44,19.45,30,0.0 +15179,34,14,2,0.0 +15179,38,263.5,16,0.0 +15179,71,21.5,19,0.0 +15179,40,18.4,13,0.0 +15179,66,17,21,0.0 +15179,74,10,16,0.0 +15179,77,13,15,0.0 +15179,21,10,37,0.0 +15179,15,15.5,20,0.0 +15179,24,4.5,19,0.0 +15179,55,24,8,0.0 +15179,50,16.25,37,0.0 +15179,54,7.45,6,0.0 +15179,69,36,26,0.0 +15179,35,18,28,0.0 +15179,18,62.5,13,0.0 +15179,1,18,31,0.0 +15179,67,14,2,0.0 +15179,60,34,30,0.0 +15179,2,19,24,0.0 +15179,68,12.5,25,0.0 +15180,20,81,11,0.0 +15180,69,36,14,0.0 +15180,30,25.89,23,0.0 +15180,57,19.5,12,0.0 +15180,26,31.23,8,0.0 +15180,10,31,34,0.0 +15180,42,14,28,0.0 +15180,56,38,16,0.0 +15180,32,32,46,0.0 +15180,67,14,21,0.0 +15180,13,6,21,0.0 +15180,52,7,39,0.0 +15180,15,15.5,25,0.0 +15180,70,15,19,0.0 +15180,18,62.5,1,0.0 +15180,35,18,8,0.0 +15180,4,22,40,0.0 +15180,63,43.9,12,0.0 +15180,75,7.75,41,0.0 +15180,1,18,17,0.0 +15180,34,14,16,0.0 +15180,53,32.8,31,0.0 +15180,72,34.8,22,0.0 +15180,41,9.65,42,0.0 +15180,28,45.6,12,0.0 +15180,38,263.5,37,0.0 +15180,73,15,7,0.0 +15180,19,9.2,42,0.0 +15180,31,12.5,47,0.0 +15180,6,25,7,0.0 +15180,21,10,37,0.0 +15180,51,53,40,0.0 +15180,60,34,42,0.0 +15180,76,18,16,0.0 +15180,46,12,21,0.0 +15180,23,9,21,0.0 +15180,49,20,48,0.0 +15180,39,18,41,0.0 +15180,44,19.45,4,0.0 +15180,64,33.25,3,0.0 +15180,37,26,49,0.0 +15180,58,13.25,30,0.0 +15180,2,19,24,0.0 +15180,11,21,47,0.0 +15180,3,10,36,0.0 +15180,36,19,43,0.0 +15180,16,17.45,11,0.0 +15180,12,38,50,0.0 +15180,59,55,47,0.0 +15180,29,123.79,10,0.0 +15180,77,13,16,0.0 +15180,62,49.3,10,0.0 +15180,74,10,50,0.0 +15181,36,19,2,0.0 +15181,66,17,45,0.0 +15181,35,18,23,0.0 +15181,40,18.4,1,0.0 +15181,28,45.6,48,0.0 +15181,72,34.8,41,0.0 +15181,18,62.5,6,0.0 +15181,52,7,13,0.0 +15181,42,14,5,0.0 +15181,67,14,7,0.0 +15181,56,38,25,0.0 +15181,21,10,23,0.0 +15181,71,21.5,9,0.0 +15181,32,32,8,0.0 +15181,39,18,18,0.0 +15181,27,43.9,34,0.0 +15181,70,15,1,0.0 +15181,43,46,22,0.0 +15181,68,12.5,19,0.0 +15181,65,21.05,40,0.0 +15181,50,16.25,18,0.0 +15181,37,26,43,0.0 +15181,58,13.25,40,0.0 +15181,69,36,17,0.0 +15181,9,97,16,0.0 +15181,51,53,16,0.0 +15181,26,31.23,34,0.0 +15181,24,4.5,34,0.0 +15181,48,12.75,33,0.0 +15181,41,9.65,32,0.0 +15181,17,39,14,0.0 +15181,6,25,24,0.0 +15181,20,81,42,0.0 +15181,53,32.8,43,0.0 +15181,55,24,20,0.0 +15181,63,43.9,24,0.0 +15181,38,263.5,36,0.0 +15181,33,2.5,35,0.0 +15181,29,123.79,6,0.0 +15181,60,34,10,0.0 +15181,3,10,3,0.0 +15181,64,33.25,49,0.0 +15181,46,12,41,0.0 +15181,23,9,7,0.0 +15181,22,21,8,0.0 +15181,57,19.5,8,0.0 +15181,7,30,22,0.0 +15181,13,6,33,0.0 +15181,34,14,11,0.0 +15181,30,25.89,23,0.0 +15181,77,13,17,0.0 +15181,45,9.5,9,0.0 +15181,16,17.45,41,0.0 +15181,25,14,18,0.0 +15181,75,7.75,21,0.0 +15181,14,23.25,47,0.0 +15181,2,19,19,0.0 +15181,1,18,37,0.0 +15181,76,18,12,0.0 +15181,73,15,42,0.0 +15181,31,12.5,18,0.0 +15181,59,55,13,0.0 +15181,8,40,19,0.0 +15181,5,21.35,46,0.0 +15181,74,10,48,0.0 +15182,12,38,10,0.0 +15182,75,7.75,4,0.0 +15182,4,22,37,0.0 +15182,72,34.8,2,0.0 +15182,31,12.5,12,0.0 +15182,73,15,1,0.0 +15182,52,7,24,0.0 +15182,68,12.5,23,0.0 +15182,56,38,29,0.0 +15182,46,12,25,0.0 +15182,42,14,28,0.0 +15182,30,25.89,5,0.0 +15182,7,30,30,0.0 +15182,60,34,41,0.0 +15182,15,15.5,49,0.0 +15182,22,21,28,0.0 +15182,3,10,1,0.0 +15182,27,43.9,44,0.0 +15182,43,46,35,0.0 +15182,29,123.79,15,0.0 +15182,76,18,17,0.0 +15182,17,39,16,0.0 +15182,13,6,19,0.0 +15182,71,21.5,17,0.0 +15182,23,9,26,0.0 +15182,74,10,18,0.0 +15182,61,28.5,48,0.0 +15182,69,36,46,0.0 +15182,49,20,49,0.0 +15182,34,14,5,0.0 +15182,16,17.45,21,0.0 +15182,45,9.5,10,0.0 +15182,47,9.5,6,0.0 +15182,32,32,49,0.0 +15182,5,21.35,37,0.0 +15182,26,31.23,5,0.0 +15182,18,62.5,38,0.0 +15182,66,17,41,0.0 +15182,62,49.3,1,0.0 +15182,9,97,1,0.0 +15182,1,18,40,0.0 +15182,59,55,8,0.0 +15182,6,25,33,0.0 +15182,53,32.8,48,0.0 +15182,2,19,17,0.0 +15182,51,53,11,0.0 +15182,10,31,27,0.0 +15182,25,14,38,0.0 +15182,63,43.9,10,0.0 +15182,70,15,45,0.0 +15182,24,4.5,12,0.0 +15182,33,2.5,4,0.0 +15182,67,14,42,0.0 +15182,28,45.6,48,0.0 +15182,57,19.5,28,0.0 +15182,21,10,40,0.0 +15182,19,9.2,6,0.0 +15182,20,81,20,0.0 +15182,36,19,15,0.0 +15182,44,19.45,39,0.0 +15182,37,26,39,0.0 +15182,58,13.25,1,0.0 +15182,38,263.5,39,0.0 +15182,48,12.75,42,0.0 +15182,11,21,27,0.0 +15182,41,9.65,41,0.0 +15182,77,13,13,0.0 +15182,8,40,3,0.0 +15182,35,18,40,0.0 +15182,55,24,12,0.0 +15182,40,18.4,1,0.0 +15182,39,18,6,0.0 +15182,64,33.25,1,0.0 +15182,50,16.25,48,0.0 +15183,73,15,21,0.0 +15183,26,31.23,29,0.0 +15183,45,9.5,31,0.0 +15183,31,12.5,41,0.0 +15183,35,18,13,0.0 +15183,37,26,43,0.0 +15183,3,10,12,0.0 +15183,50,16.25,8,0.0 +15183,64,33.25,35,0.0 +15183,20,81,46,0.0 +15183,25,14,18,0.0 +15183,42,14,29,0.0 +15183,70,15,35,0.0 +15183,23,9,45,0.0 +15183,34,14,50,0.0 +15183,21,10,48,0.0 +15183,74,10,2,0.0 +15183,40,18.4,31,0.0 +15183,1,18,21,0.0 +15183,14,23.25,44,0.0 +15183,72,34.8,2,0.0 +15183,30,25.89,14,0.0 +15183,6,25,1,0.0 +15183,57,19.5,1,0.0 +15183,16,17.45,28,0.0 +15183,2,19,19,0.0 +15183,13,6,9,0.0 +15183,63,43.9,22,0.0 +15183,61,28.5,30,0.0 +15183,47,9.5,33,0.0 +15183,4,22,8,0.0 +15183,76,18,20,0.0 +15183,12,38,45,0.0 +15183,17,39,17,0.0 +15183,56,38,14,0.0 +15183,5,21.35,31,0.0 +15183,52,7,7,0.0 +15183,48,12.75,16,0.0 +15183,43,46,40,0.0 +15183,67,14,5,0.0 +15183,55,24,29,0.0 +15183,8,40,36,0.0 +15183,18,62.5,46,0.0 +15183,58,13.25,3,0.0 +15183,68,12.5,37,0.0 +15183,44,19.45,38,0.0 +15183,54,7.45,8,0.0 +15183,29,123.79,33,0.0 +15184,62,49.3,14,0.0 +15184,56,38,48,0.0 +15184,76,18,16,0.0 +15184,10,31,1,0.0 +15184,38,263.5,43,0.0 +15184,24,4.5,17,0.0 +15184,61,28.5,21,0.0 +15184,25,14,35,0.0 +15184,48,12.75,49,0.0 +15184,26,31.23,38,0.0 +15184,16,17.45,21,0.0 +15184,30,25.89,30,0.0 +15184,55,24,11,0.0 +15184,4,22,47,0.0 +15184,18,62.5,39,0.0 +15184,47,9.5,16,0.0 +15184,33,2.5,22,0.0 +15184,32,32,9,0.0 +15184,51,53,46,0.0 +15184,65,21.05,32,0.0 +15184,12,38,39,0.0 +15184,64,33.25,29,0.0 +15184,40,18.4,16,0.0 +15184,34,14,22,0.0 +15184,22,21,45,0.0 +15184,70,15,32,0.0 +15184,35,18,7,0.0 +15184,21,10,35,0.0 +15184,73,15,14,0.0 +15184,60,34,6,0.0 +15184,45,9.5,41,0.0 +15184,2,19,16,0.0 +15184,1,18,5,0.0 +15184,67,14,40,0.0 +15184,29,123.79,25,0.0 +15184,15,15.5,24,0.0 +15184,7,30,1,0.0 +15184,50,16.25,39,0.0 +15184,20,81,18,0.0 +15184,27,43.9,8,0.0 +15184,58,13.25,4,0.0 +15184,46,12,19,0.0 +15184,11,21,50,0.0 +15184,37,26,18,0.0 +15184,23,9,32,0.0 +15184,5,21.35,47,0.0 +15184,57,19.5,47,0.0 +15184,31,12.5,36,0.0 +15184,49,20,38,0.0 +15184,14,23.25,42,0.0 +15184,54,7.45,38,0.0 +15184,8,40,21,0.0 +15184,9,97,11,0.0 +15184,19,9.2,31,0.0 +15184,72,34.8,37,0.0 +15184,39,18,24,0.0 +15184,75,7.75,42,0.0 +15185,28,45.6,47,0.0 +15185,66,17,7,0.0 +15185,13,6,3,0.0 +15185,19,9.2,50,0.0 +15185,48,12.75,26,0.0 +15185,67,14,7,0.0 +15185,72,34.8,46,0.0 +15185,64,33.25,49,0.0 +15185,60,34,44,0.0 +15185,35,18,40,0.0 +15185,15,15.5,31,0.0 +15185,56,38,32,0.0 +15185,11,21,10,0.0 +15185,14,23.25,25,0.0 +15185,47,9.5,17,0.0 +15185,73,15,44,0.0 +15185,51,53,5,0.0 +15185,41,9.65,13,0.0 +15185,32,32,21,0.0 +15185,4,22,31,0.0 +15185,76,18,34,0.0 +15185,9,97,23,0.0 +15185,22,21,10,0.0 +15185,6,25,41,0.0 +15185,21,10,17,0.0 +15185,37,26,45,0.0 +15185,2,19,14,0.0 +15185,7,30,11,0.0 +15185,34,14,4,0.0 +15185,61,28.5,48,0.0 +15185,59,55,1,0.0 +15185,24,4.5,12,0.0 +15185,44,19.45,47,0.0 +15185,65,21.05,46,0.0 +15185,75,7.75,40,0.0 +15185,63,43.9,18,0.0 +15185,74,10,35,0.0 +15185,16,17.45,6,0.0 +15185,68,12.5,13,0.0 +15185,71,21.5,4,0.0 +15185,40,18.4,50,0.0 +15185,18,62.5,29,0.0 +15185,1,18,27,0.0 +15185,5,21.35,31,0.0 +15185,3,10,2,0.0 +15185,10,31,18,0.0 +15185,26,31.23,30,0.0 +15185,46,12,18,0.0 +15185,55,24,2,0.0 +15185,38,263.5,7,0.0 +15185,30,25.89,39,0.0 +15185,49,20,48,0.0 +15186,3,10,31,0.0 +15186,46,12,7,0.0 +15186,20,81,21,0.0 +15186,37,26,15,0.0 +15186,10,31,3,0.0 +15186,48,12.75,45,0.0 +15186,17,39,18,0.0 +15186,67,14,32,0.0 +15186,31,12.5,19,0.0 +15186,57,19.5,16,0.0 +15186,43,46,36,0.0 +15186,28,45.6,50,0.0 +15186,66,17,18,0.0 +15186,16,17.45,8,0.0 +15186,11,21,47,0.0 +15186,45,9.5,42,0.0 +15186,42,14,47,0.0 +15186,72,34.8,35,0.0 +15186,58,13.25,32,0.0 +15186,62,49.3,48,0.0 +15186,68,12.5,28,0.0 +15186,36,19,32,0.0 +15186,34,14,24,0.0 +15186,49,20,48,0.0 +15186,76,18,34,0.0 +15186,7,30,46,0.0 +15186,39,18,8,0.0 +15186,44,19.45,41,0.0 +15186,21,10,3,0.0 +15186,41,9.65,43,0.0 +15186,59,55,17,0.0 +15186,4,22,18,0.0 +15186,6,25,34,0.0 +15186,2,19,37,0.0 +15186,33,2.5,7,0.0 +15186,32,32,36,0.0 +15186,64,33.25,18,0.0 +15186,38,263.5,43,0.0 +15186,8,40,26,0.0 +15186,13,6,37,0.0 +15186,60,34,6,0.0 +15186,23,9,50,0.0 +15186,26,31.23,43,0.0 +15186,25,14,44,0.0 +15186,27,43.9,9,0.0 +15186,70,15,50,0.0 +15186,47,9.5,26,0.0 +15186,69,36,35,0.0 +15186,56,38,9,0.0 +15186,53,32.8,35,0.0 +15187,37,26,48,0.0 +15187,34,14,21,0.0 +15187,35,18,3,0.0 +15187,68,12.5,19,0.0 +15187,42,14,27,0.0 +15187,25,14,9,0.0 +15187,9,97,50,0.0 +15187,64,33.25,9,0.0 +15187,1,18,22,0.0 +15187,3,10,31,0.0 +15187,15,15.5,36,0.0 +15187,48,12.75,28,0.0 +15187,75,7.75,9,0.0 +15187,5,21.35,37,0.0 +15187,39,18,6,0.0 +15187,26,31.23,30,0.0 +15187,41,9.65,49,0.0 +15187,74,10,5,0.0 +15187,21,10,34,0.0 +15187,55,24,7,0.0 +15188,30,25.89,20,0.0 +15188,77,13,50,0.0 +15188,10,31,23,0.0 +15188,35,18,50,0.0 +15188,22,21,15,0.0 +15188,32,32,19,0.0 +15188,24,4.5,41,0.0 +15188,74,10,11,0.0 +15188,17,39,30,0.0 +15188,2,19,16,0.0 +15188,39,18,11,0.0 +15188,52,7,31,0.0 +15188,41,9.65,12,0.0 +15188,28,45.6,47,0.0 +15188,29,123.79,25,0.0 +15188,65,21.05,36,0.0 +15188,34,14,39,0.0 +15188,72,34.8,27,0.0 +15188,13,6,24,0.0 +15188,75,7.75,46,0.0 +15188,73,15,29,0.0 +15188,15,15.5,46,0.0 +15188,38,263.5,28,0.0 +15188,64,33.25,19,0.0 +15188,56,38,44,0.0 +15188,3,10,26,0.0 +15188,31,12.5,27,0.0 +15188,60,34,26,0.0 +15188,23,9,15,0.0 +15188,46,12,23,0.0 +15188,59,55,15,0.0 +15188,53,32.8,25,0.0 +15188,44,19.45,8,0.0 +15188,42,14,6,0.0 +15188,49,20,4,0.0 +15188,1,18,19,0.0 +15188,40,18.4,22,0.0 +15188,76,18,10,0.0 +15188,57,19.5,34,0.0 +15188,9,97,3,0.0 +15188,16,17.45,6,0.0 +15188,50,16.25,6,0.0 +15188,18,62.5,29,0.0 +15188,62,49.3,11,0.0 +15188,61,28.5,37,0.0 +15188,69,36,48,0.0 +15188,14,23.25,30,0.0 +15188,47,9.5,10,0.0 +15189,53,32.8,28,0.0 +15189,33,2.5,40,0.0 +15189,40,18.4,18,0.0 +15189,10,31,13,0.0 +15189,61,28.5,47,0.0 +15189,31,12.5,16,0.0 +15189,73,15,5,0.0 +15189,50,16.25,38,0.0 +15189,20,81,34,0.0 +15189,27,43.9,27,0.0 +15189,12,38,33,0.0 +15189,1,18,7,0.0 +15189,32,32,7,0.0 +15189,72,34.8,15,0.0 +15189,75,7.75,8,0.0 +15189,41,9.65,14,0.0 +15189,39,18,7,0.0 +15189,23,9,32,0.0 +15189,57,19.5,21,0.0 +15189,70,15,22,0.0 +15189,69,36,14,0.0 +15189,17,39,34,0.0 +15189,35,18,8,0.0 +15189,24,4.5,39,0.0 +15189,16,17.45,10,0.0 +15189,55,24,33,0.0 +15189,26,31.23,41,0.0 +15189,14,23.25,46,0.0 +15189,49,20,47,0.0 +15189,62,49.3,16,0.0 +15189,8,40,10,0.0 +15189,54,7.45,48,0.0 +15189,74,10,21,0.0 +15189,56,38,13,0.0 +15189,58,13.25,23,0.0 +15189,2,19,24,0.0 +15189,65,21.05,35,0.0 +15189,77,13,12,0.0 +15189,43,46,31,0.0 +15189,3,10,22,0.0 +15189,25,14,10,0.0 +15189,9,97,48,0.0 +15189,4,22,4,0.0 +15189,76,18,5,0.0 +15189,47,9.5,13,0.0 +15189,52,7,12,0.0 +15189,21,10,22,0.0 +15189,11,21,49,0.0 +15189,30,25.89,35,0.0 +15189,51,53,11,0.0 +15189,68,12.5,39,0.0 +15189,29,123.79,26,0.0 +15189,28,45.6,37,0.0 +15189,42,14,36,0.0 +15189,36,19,50,0.0 +15189,71,21.5,5,0.0 +15189,6,25,31,0.0 +15189,13,6,5,0.0 +15189,48,12.75,29,0.0 +15189,63,43.9,32,0.0 +15189,7,30,21,0.0 +15189,34,14,1,0.0 +15189,66,17,36,0.0 +15189,64,33.25,31,0.0 +15189,45,9.5,19,0.0 +15189,5,21.35,21,0.0 +15190,14,23.25,30,0.0 +15190,16,17.45,49,0.0 +15190,8,40,49,0.0 +15190,75,7.75,38,0.0 +15190,7,30,46,0.0 +15190,43,46,50,0.0 +15190,25,14,2,0.0 +15190,4,22,30,0.0 +15190,11,21,16,0.0 +15190,73,15,37,0.0 +15190,22,21,26,0.0 +15190,36,19,8,0.0 +15190,21,10,14,0.0 +15190,62,49.3,33,0.0 +15190,32,32,39,0.0 +15190,1,18,13,0.0 +15190,3,10,1,0.0 +15190,19,9.2,23,0.0 +15190,71,21.5,14,0.0 +15190,13,6,3,0.0 +15190,41,9.65,3,0.0 +15190,9,97,42,0.0 +15190,59,55,1,0.0 +15190,76,18,41,0.0 +15190,49,20,33,0.0 +15190,65,21.05,21,0.0 +15190,47,9.5,9,0.0 +15190,10,31,3,0.0 +15190,61,28.5,15,0.0 +15190,56,38,1,0.0 +15190,18,62.5,33,0.0 +15190,17,39,21,0.0 +15190,20,81,40,0.0 +15190,52,7,39,0.0 +15190,48,12.75,44,0.0 +15190,54,7.45,6,0.0 +15190,57,19.5,5,0.0 +15190,53,32.8,16,0.0 +15190,5,21.35,10,0.0 +15190,46,12,24,0.0 +15190,23,9,34,0.0 +15190,26,31.23,31,0.0 +15190,68,12.5,23,0.0 +15190,42,14,4,0.0 +15190,31,12.5,27,0.0 +15190,38,263.5,49,0.0 +15190,74,10,22,0.0 +15190,45,9.5,26,0.0 +15190,29,123.79,49,0.0 +15190,37,26,50,0.0 +15190,33,2.5,34,0.0 +15190,40,18.4,26,0.0 +15190,55,24,1,0.0 +15190,72,34.8,50,0.0 +15190,51,53,25,0.0 +15191,39,18,30,0.0 +15191,70,15,16,0.0 +15191,42,14,31,0.0 +15191,64,33.25,26,0.0 +15191,28,45.6,43,0.0 +15191,63,43.9,29,0.0 +15191,7,30,8,0.0 +15191,23,9,12,0.0 +15191,2,19,1,0.0 +15191,12,38,42,0.0 +15191,36,19,48,0.0 +15191,25,14,38,0.0 +15191,74,10,42,0.0 +15191,56,38,18,0.0 +15191,4,22,9,0.0 +15191,40,18.4,25,0.0 +15191,33,2.5,37,0.0 +15191,30,25.89,23,0.0 +15191,54,7.45,27,0.0 +15191,58,13.25,50,0.0 +15191,37,26,36,0.0 +15191,43,46,40,0.0 +15191,75,7.75,16,0.0 +15191,47,9.5,44,0.0 +15191,77,13,47,0.0 +15191,53,32.8,20,0.0 +15191,45,9.5,6,0.0 +15191,1,18,15,0.0 +15191,13,6,35,0.0 +15191,65,21.05,30,0.0 +15191,8,40,18,0.0 +15192,31,12.5,14,0.0 +15192,60,34,33,0.0 +15192,24,4.5,19,0.0 +15192,42,14,21,0.0 +15192,17,39,24,0.0 +15192,2,19,10,0.0 +15192,58,13.25,41,0.0 +15192,46,12,50,0.0 +15192,45,9.5,3,0.0 +15192,67,14,21,0.0 +15192,7,30,29,0.0 +15192,8,40,49,0.0 +15192,53,32.8,44,0.0 +15192,6,25,11,0.0 +15192,75,7.75,39,0.0 +15192,26,31.23,4,0.0 +15192,38,263.5,23,0.0 +15192,28,45.6,45,0.0 +15192,14,23.25,10,0.0 +15192,4,22,45,0.0 +15192,73,15,37,0.0 +15192,13,6,36,0.0 +15192,59,55,5,0.0 +15192,74,10,27,0.0 +15192,29,123.79,38,0.0 +15192,57,19.5,35,0.0 +15192,9,97,47,0.0 +15192,65,21.05,33,0.0 +15192,66,17,24,0.0 +15192,56,38,49,0.0 +15192,50,16.25,49,0.0 +15192,76,18,2,0.0 +15192,61,28.5,47,0.0 +15192,19,9.2,16,0.0 +15192,39,18,9,0.0 +15192,48,12.75,11,0.0 +15192,77,13,14,0.0 +15192,43,46,23,0.0 +15192,18,62.5,15,0.0 +15192,71,21.5,44,0.0 +15192,33,2.5,43,0.0 +15192,12,38,26,0.0 +15192,3,10,1,0.0 +15192,40,18.4,50,0.0 +15192,25,14,7,0.0 +15192,41,9.65,1,0.0 +15192,68,12.5,31,0.0 +15192,32,32,48,0.0 +15192,69,36,29,0.0 +15192,49,20,36,0.0 +15192,37,26,31,0.0 +15192,62,49.3,28,0.0 +15192,1,18,20,0.0 +15192,34,14,17,0.0 +15192,55,24,22,0.0 +15192,16,17.45,13,0.0 +15192,20,81,33,0.0 +15192,21,10,17,0.0 +15192,47,9.5,23,0.0 +15192,63,43.9,13,0.0 +15193,44,19.45,12,0.0 +15193,49,20,31,0.0 +15193,11,21,30,0.0 +15193,65,21.05,29,0.0 +15193,38,263.5,15,0.0 +15193,18,62.5,14,0.0 +15194,9,97,49,0.0 +15194,30,25.89,31,0.0 +15194,44,19.45,46,0.0 +15194,68,12.5,17,0.0 +15194,67,14,49,0.0 +15194,17,39,45,0.0 +15194,28,45.6,31,0.0 +15194,59,55,10,0.0 +15194,18,62.5,26,0.0 +15194,42,14,13,0.0 +15194,27,43.9,33,0.0 +15194,8,40,43,0.0 +15194,3,10,47,0.0 +15194,47,9.5,30,0.0 +15194,32,32,37,0.0 +15194,49,20,4,0.0 +15194,40,18.4,35,0.0 +15194,51,53,19,0.0 +15194,57,19.5,50,0.0 +15194,71,21.5,48,0.0 +15194,70,15,50,0.0 +15194,4,22,12,0.0 +15194,41,9.65,1,0.0 +15194,19,9.2,38,0.0 +15194,33,2.5,26,0.0 +15194,6,25,21,0.0 +15194,48,12.75,24,0.0 +15194,14,23.25,21,0.0 +15194,7,30,13,0.0 +15194,69,36,16,0.0 +15194,62,49.3,50,0.0 +15194,35,18,50,0.0 +15194,60,34,19,0.0 +15194,53,32.8,2,0.0 +15194,36,19,40,0.0 +15194,37,26,28,0.0 +15194,66,17,11,0.0 +15194,75,7.75,10,0.0 +15194,16,17.45,39,0.0 +15194,24,4.5,36,0.0 +15194,23,9,28,0.0 +15194,63,43.9,35,0.0 +15194,61,28.5,50,0.0 +15194,34,14,20,0.0 +15194,20,81,47,0.0 +15194,26,31.23,14,0.0 +15194,46,12,33,0.0 +15194,29,123.79,16,0.0 +15194,43,46,48,0.0 +15194,58,13.25,21,0.0 +15194,52,7,25,0.0 +15194,21,10,7,0.0 +15194,5,21.35,39,0.0 +15194,38,263.5,50,0.0 +15194,54,7.45,47,0.0 +15194,22,21,40,0.0 +15194,11,21,50,0.0 +15194,56,38,17,0.0 +15194,65,21.05,43,0.0 +15195,75,7.75,16,0.0 +15195,74,10,16,0.0 +15195,3,10,48,0.0 +15195,66,17,32,0.0 +15195,18,62.5,21,0.0 +15195,19,9.2,31,0.0 +15195,32,32,35,0.0 +15195,53,32.8,49,0.0 +15195,30,25.89,6,0.0 +15195,16,17.45,50,0.0 +15195,4,22,30,0.0 +15195,70,15,41,0.0 +15195,8,40,44,0.0 +15195,31,12.5,29,0.0 +15195,1,18,29,0.0 +15195,12,38,3,0.0 +15195,22,21,6,0.0 +15195,77,13,14,0.0 +15195,58,13.25,41,0.0 +15195,10,31,35,0.0 +15195,65,21.05,50,0.0 +15195,76,18,4,0.0 +15195,21,10,48,0.0 +15195,56,38,43,0.0 +15195,60,34,33,0.0 +15195,39,18,41,0.0 +15195,20,81,47,0.0 +15195,5,21.35,10,0.0 +15195,27,43.9,3,0.0 +15195,35,18,3,0.0 +15195,44,19.45,27,0.0 +15195,59,55,27,0.0 +15195,29,123.79,7,0.0 +15195,23,9,24,0.0 +15195,51,53,47,0.0 +15195,11,21,3,0.0 +15195,15,15.5,2,0.0 +15195,14,23.25,27,0.0 +15195,72,34.8,32,0.0 +15195,38,263.5,45,0.0 +15195,61,28.5,42,0.0 +15195,62,49.3,34,0.0 +15195,13,6,46,0.0 +15195,17,39,1,0.0 +15196,1,18,40,0.0 +15196,47,9.5,17,0.0 +15196,42,14,40,0.0 +15197,43,46,23,0.0 +15197,57,19.5,3,0.0 +15197,50,16.25,43,0.0 +15197,76,18,12,0.0 +15197,3,10,5,0.0 +15197,52,7,28,0.0 +15197,33,2.5,24,0.0 +15197,16,17.45,9,0.0 +15197,46,12,34,0.0 +15197,8,40,42,0.0 +15197,19,9.2,39,0.0 +15197,75,7.75,45,0.0 +15197,40,18.4,12,0.0 +15197,2,19,23,0.0 +15197,67,14,33,0.0 +15197,35,18,15,0.0 +15197,22,21,46,0.0 +15197,41,9.65,15,0.0 +15197,30,25.89,37,0.0 +15197,62,49.3,38,0.0 +15197,21,10,32,0.0 +15197,4,22,14,0.0 +15197,10,31,28,0.0 +15197,55,24,40,0.0 +15197,32,32,19,0.0 +15197,15,15.5,49,0.0 +15197,29,123.79,33,0.0 +15197,13,6,36,0.0 +15197,39,18,8,0.0 +15197,18,62.5,43,0.0 +15197,74,10,32,0.0 +15197,25,14,27,0.0 +15197,23,9,36,0.0 +15197,51,53,35,0.0 +15197,24,4.5,47,0.0 +15197,12,38,19,0.0 +15197,42,14,32,0.0 +15197,37,26,15,0.0 +15198,39,18,13,0.0 +15198,69,36,38,0.0 +15198,65,21.05,36,0.0 +15198,4,22,39,0.0 +15198,29,123.79,45,0.0 +15198,66,17,45,0.0 +15198,21,10,31,0.0 +15198,77,13,42,0.0 +15198,53,32.8,26,0.0 +15198,68,12.5,34,0.0 +15198,14,23.25,35,0.0 +15198,48,12.75,44,0.0 +15198,56,38,22,0.0 +15198,25,14,41,0.0 +15198,20,81,15,0.0 +15198,72,34.8,44,0.0 +15198,18,62.5,50,0.0 +15198,26,31.23,48,0.0 +15198,34,14,27,0.0 +15198,45,9.5,41,0.0 +15198,51,53,13,0.0 +15198,44,19.45,48,0.0 +15198,27,43.9,36,0.0 +15198,73,15,44,0.0 +15198,6,25,24,0.0 +15198,16,17.45,22,0.0 +15198,24,4.5,3,0.0 +15198,19,9.2,50,0.0 +15198,57,19.5,48,0.0 +15198,52,7,14,0.0 +15198,11,21,12,0.0 +15198,71,21.5,38,0.0 +15198,31,12.5,42,0.0 +15198,47,9.5,20,0.0 +15198,75,7.75,41,0.0 +15198,28,45.6,28,0.0 +15198,70,15,50,0.0 +15198,12,38,30,0.0 +15198,36,19,3,0.0 +15198,30,25.89,11,0.0 +15198,76,18,11,0.0 +15198,23,9,1,0.0 +15198,59,55,49,0.0 +15198,40,18.4,29,0.0 +15198,43,46,10,0.0 +15198,8,40,9,0.0 +15198,22,21,7,0.0 +15198,67,14,40,0.0 +15198,17,39,25,0.0 +15198,46,12,4,0.0 +15198,58,13.25,29,0.0 +15198,3,10,12,0.0 +15198,41,9.65,40,0.0 +15198,37,26,42,0.0 +15198,1,18,50,0.0 +15198,2,19,28,0.0 +15198,64,33.25,18,0.0 +15198,38,263.5,24,0.0 +15198,7,30,4,0.0 +15198,62,49.3,14,0.0 +15198,74,10,34,0.0 +15198,15,15.5,30,0.0 +15198,33,2.5,31,0.0 +15198,13,6,26,0.0 +15198,9,97,41,0.0 +15199,18,62.5,21,0.0 +15199,57,19.5,45,0.0 +15199,69,36,13,0.0 +15199,36,19,31,0.0 +15199,31,12.5,38,0.0 +15199,29,123.79,28,0.0 +15199,50,16.25,40,0.0 +15199,66,17,29,0.0 +15199,75,7.75,15,0.0 +15199,32,32,4,0.0 +15199,48,12.75,34,0.0 +15199,26,31.23,20,0.0 +15199,27,43.9,34,0.0 +15199,42,14,9,0.0 +15199,7,30,1,0.0 +15199,68,12.5,12,0.0 +15199,17,39,39,0.0 +15199,33,2.5,13,0.0 +15199,76,18,50,0.0 +15199,22,21,3,0.0 +15199,25,14,10,0.0 +15199,37,26,49,0.0 +15199,71,21.5,46,0.0 +15199,51,53,12,0.0 +15199,61,28.5,12,0.0 +15199,47,9.5,37,0.0 +15199,74,10,14,0.0 +15199,64,33.25,22,0.0 +15199,45,9.5,46,0.0 +15199,6,25,37,0.0 +15199,24,4.5,3,0.0 +15199,20,81,49,0.0 +15199,39,18,31,0.0 +15199,21,10,24,0.0 +15199,55,24,29,0.0 +15199,65,21.05,16,0.0 +15199,15,15.5,38,0.0 +15199,59,55,44,0.0 +15199,53,32.8,30,0.0 +15199,67,14,26,0.0 +15199,14,23.25,20,0.0 +15199,16,17.45,13,0.0 +15199,70,15,26,0.0 +15199,10,31,4,0.0 +15199,73,15,32,0.0 +15199,63,43.9,45,0.0 +15199,60,34,35,0.0 +15199,8,40,4,0.0 +15199,13,6,15,0.0 +15199,12,38,40,0.0 +15199,52,7,20,0.0 +15200,37,26,45,0.0 +15200,53,32.8,2,0.0 +15200,71,21.5,24,0.0 +15200,21,10,31,0.0 +15200,42,14,4,0.0 +15200,12,38,1,0.0 +15200,68,12.5,14,0.0 +15200,9,97,39,0.0 +15200,62,49.3,12,0.0 +15200,7,30,32,0.0 +15200,50,16.25,7,0.0 +15200,36,19,8,0.0 +15200,6,25,22,0.0 +15200,3,10,48,0.0 +15200,73,15,6,0.0 +15200,14,23.25,7,0.0 +15200,8,40,18,0.0 +15200,30,25.89,47,0.0 +15200,60,34,31,0.0 +15200,22,21,24,0.0 +15200,70,15,37,0.0 +15200,31,12.5,22,0.0 +15200,32,32,10,0.0 +15200,46,12,24,0.0 +15200,5,21.35,45,0.0 +15200,27,43.9,14,0.0 +15200,75,7.75,18,0.0 +15200,47,9.5,11,0.0 +15200,41,9.65,19,0.0 +15200,10,31,31,0.0 +15200,44,19.45,19,0.0 +15200,66,17,22,0.0 +15200,35,18,17,0.0 +15200,24,4.5,48,0.0 +15200,4,22,48,0.0 +15200,1,18,44,0.0 +15200,18,62.5,49,0.0 +15200,74,10,1,0.0 +15200,40,18.4,19,0.0 +15200,57,19.5,4,0.0 +15200,49,20,44,0.0 +15200,63,43.9,20,0.0 +15200,52,7,21,0.0 +15200,51,53,26,0.0 +15200,72,34.8,49,0.0 +15200,33,2.5,14,0.0 +15200,19,9.2,35,0.0 +15200,65,21.05,45,0.0 +15200,48,12.75,41,0.0 +15200,38,263.5,44,0.0 +15200,29,123.79,29,0.0 +15200,39,18,27,0.0 +15200,28,45.6,38,0.0 +15200,20,81,42,0.0 +15200,56,38,43,0.0 +15201,23,9,37,0.0 +15201,54,7.45,7,0.0 +15201,26,31.23,27,0.0 +15201,38,263.5,9,0.0 +15201,42,14,40,0.0 +15201,43,46,36,0.0 +15201,51,53,18,0.0 +15201,8,40,30,0.0 +15201,17,39,35,0.0 +15201,6,25,13,0.0 +15201,37,26,2,0.0 +15201,59,55,49,0.0 +15201,40,18.4,16,0.0 +15201,29,123.79,15,0.0 +15201,24,4.5,48,0.0 +15201,60,34,27,0.0 +15201,50,16.25,27,0.0 +15201,22,21,48,0.0 +15201,12,38,11,0.0 +15201,16,17.45,17,0.0 +15201,45,9.5,19,0.0 +15201,71,21.5,31,0.0 +15201,44,19.45,33,0.0 +15201,14,23.25,42,0.0 +15202,37,26,18,0.0 +15202,57,19.5,48,0.0 +15202,22,21,35,0.0 +15202,68,12.5,12,0.0 +15202,8,40,8,0.0 +15202,11,21,32,0.0 +15202,62,49.3,49,0.0 +15202,41,9.65,45,0.0 +15202,19,9.2,32,0.0 +15202,42,14,41,0.0 +15202,66,17,41,0.0 +15202,47,9.5,17,0.0 +15202,27,43.9,8,0.0 +15202,59,55,8,0.0 +15202,25,14,18,0.0 +15202,43,46,8,0.0 +15202,23,9,10,0.0 +15202,16,17.45,5,0.0 +15202,53,32.8,41,0.0 +15202,33,2.5,48,0.0 +15202,31,12.5,43,0.0 +15202,10,31,16,0.0 +15202,40,18.4,50,0.0 +15202,61,28.5,13,0.0 +15202,64,33.25,8,0.0 +15202,39,18,38,0.0 +15202,32,32,40,0.0 +15202,26,31.23,18,0.0 +15202,29,123.79,17,0.0 +15202,6,25,15,0.0 +15202,7,30,10,0.0 +15202,35,18,36,0.0 +15202,9,97,9,0.0 +15202,15,15.5,32,0.0 +15203,20,81,14,0.0 +15203,38,263.5,40,0.0 +15203,66,17,42,0.0 +15203,18,62.5,48,0.0 +15203,76,18,46,0.0 +15203,59,55,1,0.0 +15203,16,17.45,23,0.0 +15203,72,34.8,23,0.0 +15203,23,9,35,0.0 +15203,15,15.5,50,0.0 +15203,63,43.9,3,0.0 +15203,74,10,13,0.0 +15203,55,24,47,0.0 +15203,26,31.23,13,0.0 +15203,40,18.4,2,0.0 +15203,41,9.65,25,0.0 +15203,4,22,2,0.0 +15203,27,43.9,46,0.0 +15203,14,23.25,22,0.0 +15203,77,13,12,0.0 +15203,19,9.2,11,0.0 +15203,29,123.79,20,0.0 +15203,1,18,17,0.0 +15203,51,53,32,0.0 +15203,12,38,45,0.0 +15203,10,31,21,0.0 +15203,9,97,3,0.0 +15203,52,7,15,0.0 +15203,65,21.05,13,0.0 +15203,49,20,27,0.0 +15203,21,10,46,0.0 +15203,67,14,49,0.0 +15203,73,15,37,0.0 +15203,25,14,46,0.0 +15203,75,7.75,12,0.0 +15203,47,9.5,19,0.0 +15203,71,21.5,8,0.0 +15203,37,26,25,0.0 +15203,54,7.45,48,0.0 +15203,43,46,10,0.0 +15203,22,21,6,0.0 +15203,2,19,16,0.0 +15203,6,25,17,0.0 +15203,45,9.5,21,0.0 +15203,69,36,49,0.0 +15203,61,28.5,17,0.0 +15203,53,32.8,32,0.0 +15203,7,30,25,0.0 +15203,62,49.3,27,0.0 +15203,57,19.5,32,0.0 +15203,24,4.5,37,0.0 +15203,13,6,31,0.0 +15203,28,45.6,19,0.0 +15203,60,34,44,0.0 +15203,42,14,45,0.0 +15203,34,14,49,0.0 +15204,53,32.8,28,0.0 +15204,45,9.5,27,0.0 +15204,77,13,44,0.0 +15204,35,18,40,0.0 +15204,42,14,44,0.0 +15205,70,15,34,0.0 +15205,46,12,43,0.0 +15205,71,21.5,37,0.0 +15205,69,36,38,0.0 +15205,53,32.8,20,0.0 +15205,49,20,18,0.0 +15205,28,45.6,46,0.0 +15205,51,53,35,0.0 +15205,44,19.45,45,0.0 +15206,49,20,19,0.0 +15206,39,18,28,0.0 +15206,16,17.45,37,0.0 +15206,60,34,4,0.0 +15206,65,21.05,37,0.0 +15206,30,25.89,11,0.0 +15206,76,18,20,0.0 +15206,68,12.5,41,0.0 +15206,71,21.5,11,0.0 +15206,61,28.5,6,0.0 +15206,46,12,22,0.0 +15206,28,45.6,19,0.0 +15206,33,2.5,4,0.0 +15206,29,123.79,13,0.0 +15206,31,12.5,6,0.0 +15206,35,18,47,0.0 +15206,25,14,39,0.0 +15206,20,81,39,0.0 +15206,43,46,48,0.0 +15206,47,9.5,14,0.0 +15206,12,38,44,0.0 +15206,77,13,42,0.0 +15206,37,26,18,0.0 +15206,40,18.4,25,0.0 +15206,17,39,12,0.0 +15206,69,36,50,0.0 +15206,50,16.25,17,0.0 +15206,70,15,23,0.0 +15206,7,30,31,0.0 +15206,32,32,33,0.0 +15206,9,97,12,0.0 +15206,66,17,43,0.0 +15206,2,19,13,0.0 +15206,4,22,13,0.0 +15206,44,19.45,1,0.0 +15206,42,14,38,0.0 +15206,45,9.5,39,0.0 +15206,63,43.9,9,0.0 +15206,41,9.65,38,0.0 +15206,15,15.5,50,0.0 +15206,55,24,13,0.0 +15206,64,33.25,33,0.0 +15206,48,12.75,42,0.0 +15206,23,9,39,0.0 +15206,18,62.5,18,0.0 +15206,74,10,30,0.0 +15206,3,10,31,0.0 +15206,57,19.5,39,0.0 +15206,11,21,9,0.0 +15206,5,21.35,41,0.0 +15206,67,14,33,0.0 +15206,62,49.3,41,0.0 +15206,75,7.75,38,0.0 +15206,38,263.5,6,0.0 +15206,36,19,7,0.0 +15206,27,43.9,17,0.0 +15206,34,14,24,0.0 +15206,51,53,39,0.0 +15206,24,4.5,47,0.0 +15206,56,38,41,0.0 +15206,53,32.8,20,0.0 +15206,10,31,23,0.0 +15206,58,13.25,36,0.0 +15206,6,25,10,0.0 +15206,73,15,10,0.0 +15206,13,6,33,0.0 +15206,8,40,29,0.0 +15206,59,55,28,0.0 +15206,54,7.45,8,0.0 +15206,1,18,7,0.0 +15206,19,9.2,3,0.0 +15206,21,10,29,0.0 +15206,14,23.25,42,0.0 +15207,73,15,32,0.0 +15207,57,19.5,25,0.0 +15207,3,10,23,0.0 +15207,17,39,5,0.0 +15207,19,9.2,17,0.0 +15207,22,21,45,0.0 +15207,13,6,22,0.0 +15207,50,16.25,4,0.0 +15207,46,12,33,0.0 +15207,4,22,31,0.0 +15207,45,9.5,29,0.0 +15207,27,43.9,39,0.0 +15207,18,62.5,25,0.0 +15207,32,32,3,0.0 +15207,40,18.4,46,0.0 +15207,67,14,43,0.0 +15207,39,18,16,0.0 +15207,37,26,27,0.0 +15207,55,24,34,0.0 +15207,33,2.5,9,0.0 +15207,53,32.8,38,0.0 +15207,59,55,24,0.0 +15207,66,17,46,0.0 +15207,51,53,34,0.0 +15207,31,12.5,29,0.0 +15207,34,14,43,0.0 +15207,68,12.5,13,0.0 +15207,5,21.35,8,0.0 +15207,10,31,1,0.0 +15207,38,263.5,12,0.0 +15207,52,7,17,0.0 +15207,48,12.75,4,0.0 +15207,25,14,31,0.0 +15207,69,36,3,0.0 +15207,74,10,12,0.0 +15207,71,21.5,37,0.0 +15207,1,18,3,0.0 +15207,61,28.5,24,0.0 +15207,63,43.9,34,0.0 +15207,43,46,32,0.0 +15207,64,33.25,9,0.0 +15207,44,19.45,41,0.0 +15207,6,25,14,0.0 +15207,11,21,46,0.0 +15207,65,21.05,20,0.0 +15207,36,19,11,0.0 +15207,7,30,30,0.0 +15207,41,9.65,18,0.0 +15207,54,7.45,47,0.0 +15207,14,23.25,3,0.0 +15207,42,14,13,0.0 +15207,76,18,48,0.0 +15207,16,17.45,50,0.0 +15207,20,81,25,0.0 +15207,60,34,4,0.0 +15207,62,49.3,45,0.0 +15207,29,123.79,40,0.0 +15207,12,38,10,0.0 +15207,35,18,50,0.0 +15207,49,20,30,0.0 +15207,77,13,22,0.0 +15207,75,7.75,45,0.0 +15208,12,38,50,0.0 +15208,4,22,10,0.0 +15208,62,49.3,40,0.0 +15208,46,12,34,0.0 +15208,73,15,27,0.0 +15208,76,18,3,0.0 +15208,50,16.25,35,0.0 +15208,77,13,14,0.0 +15208,27,43.9,24,0.0 +15208,34,14,27,0.0 +15208,1,18,22,0.0 +15208,24,4.5,1,0.0 +15208,49,20,36,0.0 +15208,20,81,36,0.0 +15208,9,97,22,0.0 +15208,18,62.5,39,0.0 +15208,68,12.5,21,0.0 +15208,63,43.9,27,0.0 +15208,39,18,11,0.0 +15208,22,21,13,0.0 +15208,45,9.5,50,0.0 +15208,21,10,13,0.0 +15208,64,33.25,10,0.0 +15208,36,19,4,0.0 +15208,7,30,45,0.0 +15208,48,12.75,5,0.0 +15208,6,25,18,0.0 +15208,57,19.5,50,0.0 +15208,23,9,48,0.0 +15208,10,31,12,0.0 +15208,14,23.25,6,0.0 +15208,44,19.45,5,0.0 +15208,13,6,30,0.0 +15208,70,15,50,0.0 +15208,26,31.23,39,0.0 +15208,19,9.2,17,0.0 +15208,2,19,18,0.0 +15208,30,25.89,21,0.0 +15208,5,21.35,32,0.0 +15208,8,40,28,0.0 +15208,17,39,7,0.0 +15208,66,17,20,0.0 +15208,56,38,29,0.0 +15208,69,36,35,0.0 +15208,71,21.5,49,0.0 +15208,61,28.5,46,0.0 +15209,30,25.89,1,0.0 +15209,27,43.9,14,0.0 +15209,20,81,39,0.0 +15209,18,62.5,37,0.0 +15209,51,53,24,0.0 +15209,76,18,42,0.0 +15209,3,10,38,0.0 +15209,22,21,20,0.0 +15209,17,39,37,0.0 +15209,69,36,44,0.0 +15209,19,9.2,1,0.0 +15209,35,18,44,0.0 +15209,49,20,10,0.0 +15209,13,6,45,0.0 +15209,14,23.25,37,0.0 +15209,10,31,1,0.0 +15210,76,18,1,0.0 +15210,14,23.25,6,0.0 +15210,51,53,2,0.0 +15210,22,21,48,0.0 +15210,28,45.6,50,0.0 +15210,26,31.23,5,0.0 +15210,33,2.5,40,0.0 +15210,24,4.5,26,0.0 +15210,48,12.75,8,0.0 +15210,11,21,24,0.0 +15210,71,21.5,14,0.0 +15210,18,62.5,50,0.0 +15210,54,7.45,37,0.0 +15210,9,97,50,0.0 +15210,30,25.89,6,0.0 +15210,73,15,24,0.0 +15210,70,15,16,0.0 +15210,16,17.45,42,0.0 +15210,12,38,43,0.0 +15210,42,14,16,0.0 +15210,37,26,48,0.0 +15210,50,16.25,18,0.0 +15210,29,123.79,42,0.0 +15210,60,34,40,0.0 +15210,43,46,26,0.0 +15210,66,17,7,0.0 +15210,63,43.9,18,0.0 +15210,77,13,45,0.0 +15210,40,18.4,27,0.0 +15210,20,81,14,0.0 +15210,49,20,19,0.0 +15210,62,49.3,39,0.0 +15210,58,13.25,40,0.0 +15210,27,43.9,42,0.0 +15210,1,18,41,0.0 +15210,4,22,4,0.0 +15210,32,32,25,0.0 +15210,39,18,42,0.0 +15210,44,19.45,27,0.0 +15210,15,15.5,8,0.0 +15211,58,13.25,44,0.0 +15211,66,17,31,0.0 +15211,61,28.5,28,0.0 +15211,28,45.6,8,0.0 +15211,4,22,7,0.0 +15211,73,15,18,0.0 +15211,33,2.5,37,0.0 +15211,7,30,18,0.0 +15211,14,23.25,14,0.0 +15211,5,21.35,14,0.0 +15211,15,15.5,10,0.0 +15211,56,38,14,0.0 +15211,70,15,15,0.0 +15211,53,32.8,33,0.0 +15211,8,40,24,0.0 +15211,3,10,1,0.0 +15211,59,55,45,0.0 +15211,34,14,39,0.0 +15211,17,39,18,0.0 +15211,51,53,10,0.0 +15212,65,21.05,15,0.0 +15212,64,33.25,35,0.0 +15212,23,9,4,0.0 +15212,75,7.75,7,0.0 +15212,40,18.4,21,0.0 +15212,41,9.65,8,0.0 +15212,55,24,48,0.0 +15212,2,19,44,0.0 +15212,62,49.3,15,0.0 +15212,7,30,3,0.0 +15212,60,34,2,0.0 +15212,16,17.45,37,0.0 +15212,63,43.9,9,0.0 +15212,13,6,7,0.0 +15212,76,18,20,0.0 +15212,71,21.5,17,0.0 +15212,47,9.5,13,0.0 +15212,9,97,28,0.0 +15212,25,14,43,0.0 +15212,39,18,12,0.0 +15212,22,21,1,0.0 +15212,51,53,43,0.0 +15212,53,32.8,19,0.0 +15212,66,17,6,0.0 +15212,72,34.8,33,0.0 +15212,58,13.25,17,0.0 +15212,73,15,46,0.0 +15212,50,16.25,24,0.0 +15212,24,4.5,4,0.0 +15212,45,9.5,7,0.0 +15212,69,36,4,0.0 +15212,46,12,36,0.0 +15212,3,10,29,0.0 +15212,33,2.5,34,0.0 +15212,38,263.5,19,0.0 +15212,48,12.75,35,0.0 +15212,56,38,4,0.0 +15212,19,9.2,50,0.0 +15212,31,12.5,4,0.0 +15212,18,62.5,10,0.0 +15212,59,55,7,0.0 +15212,32,32,17,0.0 +15212,44,19.45,24,0.0 +15212,26,31.23,44,0.0 +15212,29,123.79,47,0.0 +15212,20,81,33,0.0 +15212,77,13,40,0.0 +15212,12,38,38,0.0 +15212,28,45.6,35,0.0 +15212,17,39,49,0.0 +15212,21,10,2,0.0 +15212,42,14,22,0.0 +15212,30,25.89,29,0.0 +15212,27,43.9,6,0.0 +15212,70,15,24,0.0 +15212,54,7.45,13,0.0 +15212,14,23.25,49,0.0 +15212,36,19,45,0.0 +15212,10,31,15,0.0 +15212,61,28.5,30,0.0 +15212,35,18,31,0.0 +15212,49,20,7,0.0 +15213,37,26,13,0.0 +15213,2,19,40,0.0 +15213,60,34,34,0.0 +15213,21,10,39,0.0 +15213,40,18.4,1,0.0 +15213,11,21,9,0.0 +15213,58,13.25,10,0.0 +15213,14,23.25,28,0.0 +15213,45,9.5,43,0.0 +15213,70,15,16,0.0 +15213,76,18,7,0.0 +15213,49,20,37,0.0 +15213,15,15.5,34,0.0 +15213,28,45.6,49,0.0 +15213,73,15,3,0.0 +15213,12,38,34,0.0 +15213,18,62.5,7,0.0 +15213,67,14,28,0.0 +15213,59,55,46,0.0 +15213,57,19.5,3,0.0 +15213,16,17.45,49,0.0 +15213,9,97,14,0.0 +15213,71,21.5,44,0.0 +15213,10,31,18,0.0 +15213,66,17,42,0.0 +15213,62,49.3,45,0.0 +15213,61,28.5,39,0.0 +15213,77,13,17,0.0 +15213,42,14,19,0.0 +15213,50,16.25,40,0.0 +15213,63,43.9,5,0.0 +15213,56,38,20,0.0 +15213,36,19,45,0.0 +15213,44,19.45,30,0.0 +15213,24,4.5,35,0.0 +15213,33,2.5,4,0.0 +15213,29,123.79,40,0.0 +15213,23,9,40,0.0 +15214,16,17.45,8,0.0 +15214,37,26,26,0.0 +15214,41,9.65,28,0.0 +15214,49,20,31,0.0 +15214,25,14,14,0.0 +15214,59,55,24,0.0 +15214,76,18,29,0.0 +15214,9,97,29,0.0 +15214,33,2.5,33,0.0 +15214,44,19.45,36,0.0 +15215,70,15,5,0.0 +15215,8,40,22,0.0 +15215,66,17,5,0.0 +15215,5,21.35,9,0.0 +15215,26,31.23,40,0.0 +15215,56,38,49,0.0 +15215,30,25.89,7,0.0 +15215,19,9.2,23,0.0 +15215,59,55,4,0.0 +15215,58,13.25,43,0.0 +15215,12,38,31,0.0 +15215,62,49.3,46,0.0 +15215,69,36,8,0.0 +15215,36,19,28,0.0 +15215,10,31,18,0.0 +15215,42,14,40,0.0 +15215,53,32.8,46,0.0 +15215,45,9.5,10,0.0 +15215,31,12.5,34,0.0 +15215,11,21,10,0.0 +15215,6,25,9,0.0 +15215,51,53,41,0.0 +15215,64,33.25,17,0.0 +15215,23,9,25,0.0 +15215,61,28.5,28,0.0 +15215,54,7.45,34,0.0 +15215,37,26,10,0.0 +15215,24,4.5,25,0.0 +15215,7,30,4,0.0 +15216,12,38,46,0.0 +15216,60,34,21,0.0 +15216,20,81,19,0.0 +15216,37,26,20,0.0 +15216,76,18,16,0.0 +15216,38,263.5,42,0.0 +15216,50,16.25,46,0.0 +15216,15,15.5,3,0.0 +15216,35,18,20,0.0 +15216,2,19,49,0.0 +15216,31,12.5,50,0.0 +15216,62,49.3,48,0.0 +15216,57,19.5,42,0.0 +15216,21,10,23,0.0 +15216,53,32.8,37,0.0 +15216,65,21.05,2,0.0 +15216,9,97,34,0.0 +15216,33,2.5,26,0.0 +15216,44,19.45,7,0.0 +15216,8,40,37,0.0 +15216,74,10,36,0.0 +15216,17,39,50,0.0 +15216,68,12.5,32,0.0 +15216,69,36,15,0.0 +15216,45,9.5,41,0.0 +15216,1,18,19,0.0 +15216,46,12,49,0.0 +15216,54,7.45,26,0.0 +15217,14,23.25,22,0.0 +15217,28,45.6,14,0.0 +15217,54,7.45,19,0.0 +15217,29,123.79,27,0.0 +15217,16,17.45,19,0.0 +15217,73,15,50,0.0 +15217,67,14,48,0.0 +15217,10,31,48,0.0 +15217,38,263.5,46,0.0 +15217,58,13.25,49,0.0 +15217,34,14,44,0.0 +15217,43,46,9,0.0 +15217,48,12.75,13,0.0 +15218,24,4.5,47,0.0 +15218,4,22,31,0.0 +15218,6,25,14,0.0 +15218,64,33.25,23,0.0 +15218,69,36,11,0.0 +15218,38,263.5,2,0.0 +15218,25,14,6,0.0 +15218,47,9.5,50,0.0 +15218,70,15,1,0.0 +15218,15,15.5,3,0.0 +15218,73,15,20,0.0 +15218,36,19,8,0.0 +15218,41,9.65,24,0.0 +15218,42,14,39,0.0 +15218,54,7.45,21,0.0 +15218,43,46,11,0.0 +15218,40,18.4,35,0.0 +15218,71,21.5,4,0.0 +15218,44,19.45,23,0.0 +15218,46,12,48,0.0 +15218,76,18,2,0.0 +15218,53,32.8,26,0.0 +15218,27,43.9,19,0.0 +15218,72,34.8,30,0.0 +15218,59,55,18,0.0 +15218,48,12.75,47,0.0 +15218,34,14,11,0.0 +15218,23,9,1,0.0 +15218,30,25.89,40,0.0 +15218,11,21,21,0.0 +15218,33,2.5,18,0.0 +15218,1,18,33,0.0 +15218,7,30,26,0.0 +15218,16,17.45,36,0.0 +15218,68,12.5,13,0.0 +15218,28,45.6,42,0.0 +15218,19,9.2,49,0.0 +15218,77,13,1,0.0 +15218,67,14,12,0.0 +15218,56,38,4,0.0 +15218,29,123.79,17,0.0 +15218,75,7.75,44,0.0 +15218,58,13.25,26,0.0 +15218,57,19.5,38,0.0 +15218,13,6,47,0.0 +15218,26,31.23,26,0.0 +15218,51,53,38,0.0 +15218,20,81,37,0.0 +15218,3,10,33,0.0 +15218,52,7,21,0.0 +15218,22,21,4,0.0 +15218,10,31,33,0.0 +15218,21,10,15,0.0 +15218,12,38,43,0.0 +15218,45,9.5,29,0.0 +15218,31,12.5,32,0.0 +15218,39,18,38,0.0 +15218,37,26,15,0.0 +15218,5,21.35,47,0.0 +15218,65,21.05,6,0.0 +15218,61,28.5,26,0.0 +15218,63,43.9,15,0.0 +15218,8,40,7,0.0 +15218,2,19,26,0.0 +15218,62,49.3,35,0.0 +15218,17,39,17,0.0 +15218,9,97,30,0.0 +15218,66,17,3,0.0 +15218,14,23.25,17,0.0 +15218,49,20,30,0.0 +15218,74,10,24,0.0 +15218,55,24,29,0.0 +15219,30,25.89,39,0.0 +15219,61,28.5,2,0.0 +15219,24,4.5,6,0.0 +15219,43,46,14,0.0 +15219,26,31.23,13,0.0 +15219,53,32.8,22,0.0 +15219,13,6,15,0.0 +15219,25,14,35,0.0 +15219,12,38,26,0.0 +15219,33,2.5,9,0.0 +15219,31,12.5,41,0.0 +15219,1,18,21,0.0 +15219,67,14,8,0.0 +15219,8,40,26,0.0 +15219,48,12.75,23,0.0 +15219,77,13,2,0.0 +15219,50,16.25,28,0.0 +15219,40,18.4,46,0.0 +15219,60,34,20,0.0 +15220,76,18,26,0.0 +15220,33,2.5,16,0.0 +15220,20,81,33,0.0 +15220,9,97,7,0.0 +15220,49,20,24,0.0 +15220,55,24,42,0.0 +15220,7,30,32,0.0 +15220,72,34.8,41,0.0 +15220,69,36,32,0.0 +15220,27,43.9,10,0.0 +15220,16,17.45,37,0.0 +15220,3,10,30,0.0 +15220,63,43.9,41,0.0 +15220,74,10,31,0.0 +15220,71,21.5,11,0.0 +15220,47,9.5,38,0.0 +15220,61,28.5,20,0.0 +15220,13,6,17,0.0 +15220,17,39,19,0.0 +15220,46,12,16,0.0 +15220,44,19.45,23,0.0 +15221,64,33.25,5,0.0 +15221,70,15,10,0.0 +15221,59,55,3,0.0 +15221,67,14,28,0.0 +15221,72,34.8,43,0.0 +15221,63,43.9,19,0.0 +15221,47,9.5,38,0.0 +15221,57,19.5,31,0.0 +15221,8,40,24,0.0 +15221,16,17.45,11,0.0 +15221,11,21,27,0.0 +15221,66,17,7,0.0 +15221,58,13.25,13,0.0 +15221,19,9.2,32,0.0 +15221,2,19,40,0.0 +15221,14,23.25,44,0.0 +15221,45,9.5,37,0.0 +15221,6,25,11,0.0 +15221,7,30,7,0.0 +15221,9,97,11,0.0 +15221,33,2.5,45,0.0 +15221,50,16.25,26,0.0 +15221,27,43.9,44,0.0 +15221,13,6,47,0.0 +15221,73,15,9,0.0 +15221,21,10,14,0.0 +15221,3,10,25,0.0 +15221,36,19,22,0.0 +15221,42,14,46,0.0 +15221,65,21.05,20,0.0 +15221,39,18,19,0.0 +15221,43,46,44,0.0 +15221,41,9.65,33,0.0 +15221,56,38,3,0.0 +15221,28,45.6,47,0.0 +15221,26,31.23,42,0.0 +15221,4,22,40,0.0 +15221,20,81,29,0.0 +15221,48,12.75,28,0.0 +15221,44,19.45,12,0.0 +15221,24,4.5,30,0.0 +15221,29,123.79,2,0.0 +15221,52,7,45,0.0 +15221,49,20,6,0.0 +15221,53,32.8,24,0.0 +15221,60,34,12,0.0 +15221,35,18,28,0.0 +15221,54,7.45,10,0.0 +15221,10,31,37,0.0 +15221,30,25.89,3,0.0 +15221,75,7.75,49,0.0 +15221,31,12.5,8,0.0 +15221,5,21.35,3,0.0 +15221,40,18.4,3,0.0 +15221,12,38,50,0.0 +15221,22,21,34,0.0 +15221,69,36,44,0.0 +15221,32,32,31,0.0 +15221,15,15.5,35,0.0 +15221,17,39,36,0.0 +15221,25,14,15,0.0 +15221,18,62.5,9,0.0 +15221,62,49.3,8,0.0 +15221,23,9,9,0.0 +15221,74,10,20,0.0 +15221,1,18,50,0.0 +15221,61,28.5,9,0.0 +15221,55,24,19,0.0 +15221,37,26,50,0.0 +15222,33,2.5,27,0.0 +15222,27,43.9,6,0.0 +15222,20,81,8,0.0 +15222,49,20,11,0.0 +15222,17,39,45,0.0 +15222,68,12.5,35,0.0 +15222,16,17.45,35,0.0 +15222,38,263.5,23,0.0 +15222,4,22,34,0.0 +15222,62,49.3,25,0.0 +15222,7,30,40,0.0 +15222,6,25,17,0.0 +15222,50,16.25,30,0.0 +15222,36,19,9,0.0 +15222,72,34.8,3,0.0 +15222,12,38,25,0.0 +15222,11,21,41,0.0 +15222,48,12.75,9,0.0 +15222,73,15,3,0.0 +15222,22,21,10,0.0 +15222,1,18,40,0.0 +15222,57,19.5,33,0.0 +15222,59,55,47,0.0 +15222,18,62.5,50,0.0 +15222,46,12,48,0.0 +15222,32,32,24,0.0 +15222,69,36,17,0.0 +15222,2,19,38,0.0 +15222,55,24,11,0.0 +15222,14,23.25,20,0.0 +15222,21,10,41,0.0 +15222,56,38,9,0.0 +15222,67,14,24,0.0 +15222,51,53,26,0.0 +15222,40,18.4,27,0.0 +15222,42,14,43,0.0 +15222,54,7.45,7,0.0 +15222,70,15,25,0.0 +15222,29,123.79,9,0.0 +15222,25,14,50,0.0 +15222,76,18,11,0.0 +15222,44,19.45,7,0.0 +15222,9,97,43,0.0 +15222,71,21.5,30,0.0 +15222,3,10,33,0.0 +15222,37,26,41,0.0 +15222,13,6,6,0.0 +15222,74,10,1,0.0 +15222,30,25.89,24,0.0 +15222,77,13,22,0.0 +15222,43,46,15,0.0 +15222,34,14,50,0.0 +15222,45,9.5,15,0.0 +15222,23,9,8,0.0 +15222,60,34,1,0.0 +15222,28,45.6,5,0.0 +15222,61,28.5,44,0.0 +15222,26,31.23,15,0.0 +15222,58,13.25,33,0.0 +15222,31,12.5,47,0.0 +15222,19,9.2,41,0.0 +15222,65,21.05,28,0.0 +15222,75,7.75,5,0.0 +15222,15,15.5,19,0.0 +15222,35,18,25,0.0 +15223,23,9,13,0.0 +15223,40,18.4,25,0.0 +15223,21,10,40,0.0 +15223,31,12.5,40,0.0 +15223,38,263.5,38,0.0 +15223,60,34,28,0.0 +15223,74,10,28,0.0 +15223,1,18,23,0.0 +15223,5,21.35,22,0.0 +15223,17,39,24,0.0 +15223,55,24,25,0.0 +15223,56,38,6,0.0 +15223,16,17.45,37,0.0 +15223,8,40,39,0.0 +15223,24,4.5,25,0.0 +15223,36,19,34,0.0 +15223,15,15.5,17,0.0 +15223,69,36,6,0.0 +15223,35,18,9,0.0 +15223,48,12.75,38,0.0 +15223,46,12,5,0.0 +15223,71,21.5,1,0.0 +15223,18,62.5,37,0.0 +15223,62,49.3,30,0.0 +15223,25,14,17,0.0 +15223,57,19.5,39,0.0 +15223,58,13.25,21,0.0 +15223,33,2.5,25,0.0 +15224,52,7,14,0.0 +15224,26,31.23,25,0.0 +15224,3,10,47,0.0 +15224,18,62.5,24,0.0 +15224,6,25,15,0.0 +15224,76,18,37,0.0 +15224,73,15,14,0.0 +15224,74,10,39,0.0 +15224,31,12.5,19,0.0 +15224,10,31,47,0.0 +15224,9,97,29,0.0 +15224,49,20,43,0.0 +15224,55,24,38,0.0 +15224,17,39,3,0.0 +15224,33,2.5,6,0.0 +15224,8,40,16,0.0 +15224,15,15.5,1,0.0 +15224,36,19,31,0.0 +15224,32,32,33,0.0 +15224,62,49.3,28,0.0 +15224,75,7.75,9,0.0 +15224,58,13.25,49,0.0 +15224,67,14,20,0.0 +15224,21,10,19,0.0 +15224,70,15,10,0.0 +15224,40,18.4,41,0.0 +15224,51,53,43,0.0 +15224,4,22,9,0.0 +15224,43,46,23,0.0 +15224,7,30,21,0.0 +15224,66,17,45,0.0 +15224,14,23.25,30,0.0 +15224,29,123.79,36,0.0 +15224,23,9,26,0.0 +15224,65,21.05,12,0.0 +15224,53,32.8,28,0.0 +15224,63,43.9,45,0.0 +15224,61,28.5,36,0.0 +15224,2,19,3,0.0 +15224,1,18,4,0.0 +15224,60,34,8,0.0 +15225,43,46,22,0.0 +15225,17,39,11,0.0 +15225,15,15.5,6,0.0 +15225,70,15,28,0.0 +15225,77,13,24,0.0 +15225,68,12.5,6,0.0 +15225,47,9.5,39,0.0 +15225,42,14,29,0.0 +15225,22,21,20,0.0 +15225,13,6,22,0.0 +15225,50,16.25,23,0.0 +15225,38,263.5,16,0.0 +15225,63,43.9,5,0.0 +15225,21,10,20,0.0 +15225,2,19,34,0.0 +15225,44,19.45,15,0.0 +15225,28,45.6,33,0.0 +15225,14,23.25,24,0.0 +15225,62,49.3,1,0.0 +15225,74,10,12,0.0 +15225,36,19,35,0.0 +15225,49,20,41,0.0 +15225,34,14,28,0.0 +15225,51,53,24,0.0 +15225,24,4.5,40,0.0 +15225,52,7,42,0.0 +15225,19,9.2,47,0.0 +15225,69,36,8,0.0 +15225,12,38,19,0.0 +15225,59,55,41,0.0 +15225,75,7.75,33,0.0 +15225,29,123.79,31,0.0 +15225,35,18,36,0.0 +15225,37,26,33,0.0 +15225,32,32,29,0.0 +15225,61,28.5,31,0.0 +15225,48,12.75,37,0.0 +15225,6,25,22,0.0 +15225,3,10,33,0.0 +15225,8,40,8,0.0 +15225,76,18,10,0.0 +15225,57,19.5,1,0.0 +15225,23,9,9,0.0 +15225,53,32.8,36,0.0 +15225,41,9.65,21,0.0 +15225,31,12.5,3,0.0 +15225,30,25.89,26,0.0 +15225,5,21.35,2,0.0 +15225,9,97,16,0.0 +15225,67,14,29,0.0 +15225,71,21.5,1,0.0 +15225,72,34.8,42,0.0 +15225,58,13.25,9,0.0 +15225,27,43.9,15,0.0 +15225,18,62.5,33,0.0 +15225,25,14,22,0.0 +15225,20,81,7,0.0 +15225,54,7.45,22,0.0 +15225,33,2.5,20,0.0 +15225,60,34,22,0.0 +15225,7,30,40,0.0 +15225,64,33.25,26,0.0 +15226,39,18,7,0.0 +15226,6,25,39,0.0 +15226,43,46,17,0.0 +15226,46,12,26,0.0 +15226,59,55,49,0.0 +15226,45,9.5,47,0.0 +15226,73,15,35,0.0 +15226,41,9.65,17,0.0 +15226,29,123.79,13,0.0 +15226,13,6,16,0.0 +15226,38,263.5,29,0.0 +15226,26,31.23,1,0.0 +15226,65,21.05,47,0.0 +15226,11,21,18,0.0 +15226,58,13.25,3,0.0 +15226,55,24,16,0.0 +15226,50,16.25,5,0.0 +15226,2,19,23,0.0 +15226,44,19.45,18,0.0 +15226,21,10,29,0.0 +15226,70,15,23,0.0 +15226,49,20,38,0.0 +15226,77,13,15,0.0 +15226,72,34.8,1,0.0 +15226,18,62.5,3,0.0 +15226,74,10,1,0.0 +15226,64,33.25,9,0.0 +15226,52,7,15,0.0 +15226,1,18,11,0.0 +15226,20,81,17,0.0 +15226,67,14,22,0.0 +15226,32,32,20,0.0 +15226,9,97,8,0.0 +15226,53,32.8,3,0.0 +15226,27,43.9,2,0.0 +15226,14,23.25,22,0.0 +15226,30,25.89,37,0.0 +15226,7,30,10,0.0 +15226,16,17.45,42,0.0 +15226,68,12.5,12,0.0 +15226,60,34,30,0.0 +15226,33,2.5,10,0.0 +15226,12,38,48,0.0 +15226,10,31,27,0.0 +15226,61,28.5,16,0.0 +15226,63,43.9,17,0.0 +15226,31,12.5,38,0.0 +15227,46,12,19,0.0 +15227,7,30,9,0.0 +15227,34,14,7,0.0 +15227,67,14,28,0.0 +15227,75,7.75,45,0.0 +15227,10,31,18,0.0 +15227,8,40,29,0.0 +15227,57,19.5,38,0.0 +15227,28,45.6,17,0.0 +15227,68,12.5,30,0.0 +15227,65,21.05,5,0.0 +15227,76,18,1,0.0 +15227,11,21,32,0.0 +15227,45,9.5,40,0.0 +15227,50,16.25,29,0.0 +15227,9,97,46,0.0 +15227,2,19,32,0.0 +15227,15,15.5,10,0.0 +15227,26,31.23,45,0.0 +15227,73,15,29,0.0 +15227,14,23.25,27,0.0 +15227,33,2.5,45,0.0 +15227,54,7.45,2,0.0 +15227,22,21,39,0.0 +15227,60,34,37,0.0 +15228,37,26,17,0.0 +15228,48,12.75,28,0.0 +15228,60,34,24,0.0 +15228,55,24,43,0.0 +15228,39,18,4,0.0 +15228,1,18,31,0.0 +15228,75,7.75,32,0.0 +15228,4,22,28,0.0 +15228,57,19.5,40,0.0 +15228,58,13.25,47,0.0 +15228,40,18.4,46,0.0 +15228,71,21.5,32,0.0 +15228,66,17,7,0.0 +15228,25,14,14,0.0 +15228,10,31,40,0.0 +15228,12,38,36,0.0 +15228,34,14,15,0.0 +15228,56,38,50,0.0 +15228,31,12.5,18,0.0 +15228,74,10,38,0.0 +15228,45,9.5,32,0.0 +15228,19,9.2,12,0.0 +15228,73,15,12,0.0 +15228,6,25,18,0.0 +15228,13,6,36,0.0 +15228,77,13,18,0.0 +15228,47,9.5,40,0.0 +15228,11,21,2,0.0 +15228,53,32.8,16,0.0 +15228,15,15.5,36,0.0 +15228,52,7,34,0.0 +15228,21,10,13,0.0 +15228,50,16.25,10,0.0 +15228,7,30,1,0.0 +15228,2,19,39,0.0 +15228,61,28.5,16,0.0 +15228,36,19,10,0.0 +15228,16,17.45,28,0.0 +15228,33,2.5,41,0.0 +15228,41,9.65,5,0.0 +15228,32,32,26,0.0 +15228,49,20,3,0.0 +15228,63,43.9,35,0.0 +15228,42,14,2,0.0 +15228,59,55,46,0.0 +15229,13,6,48,0.0 +15229,62,49.3,5,0.0 +15229,19,9.2,37,0.0 +15229,37,26,29,0.0 +15229,5,21.35,19,0.0 +15229,21,10,29,0.0 +15229,27,43.9,18,0.0 +15229,10,31,15,0.0 +15229,73,15,48,0.0 +15229,70,15,44,0.0 +15229,44,19.45,8,0.0 +15229,4,22,28,0.0 +15229,7,30,24,0.0 +15229,54,7.45,42,0.0 +15229,25,14,43,0.0 +15229,9,97,19,0.0 +15229,28,45.6,50,0.0 +15229,47,9.5,5,0.0 +15229,55,24,47,0.0 +15229,30,25.89,17,0.0 +15229,34,14,40,0.0 +15229,17,39,42,0.0 +15229,48,12.75,1,0.0 +15229,63,43.9,48,0.0 +15229,64,33.25,22,0.0 +15229,56,38,3,0.0 +15229,22,21,25,0.0 +15229,11,21,39,0.0 +15229,41,9.65,2,0.0 +15229,33,2.5,42,0.0 +15229,14,23.25,22,0.0 +15229,40,18.4,3,0.0 +15229,65,21.05,14,0.0 +15229,24,4.5,43,0.0 +15229,38,263.5,22,0.0 +15229,51,53,19,0.0 +15229,60,34,37,0.0 +15229,76,18,28,0.0 +15229,57,19.5,18,0.0 +15229,29,123.79,50,0.0 +15229,2,19,48,0.0 +15229,36,19,28,0.0 +15229,1,18,40,0.0 +15229,6,25,50,0.0 +15229,26,31.23,1,0.0 +15229,49,20,10,0.0 +15229,75,7.75,1,0.0 +15230,57,19.5,30,0.0 +15230,26,31.23,18,0.0 +15230,7,30,35,0.0 +15230,38,263.5,38,0.0 +15230,19,9.2,31,0.0 +15230,23,9,4,0.0 +15230,30,25.89,28,0.0 +15230,35,18,48,0.0 +15230,31,12.5,22,0.0 +15230,42,14,36,0.0 +15230,50,16.25,2,0.0 +15230,10,31,32,0.0 +15230,33,2.5,6,0.0 +15230,77,13,27,0.0 +15230,8,40,17,0.0 +15230,72,34.8,11,0.0 +15230,34,14,31,0.0 +15230,25,14,36,0.0 +15230,73,15,33,0.0 +15230,36,19,19,0.0 +15230,11,21,40,0.0 +15230,15,15.5,29,0.0 +15230,6,25,47,0.0 +15230,61,28.5,48,0.0 +15230,5,21.35,35,0.0 +15230,62,49.3,24,0.0 +15230,64,33.25,30,0.0 +15230,49,20,21,0.0 +15230,16,17.45,12,0.0 +15230,51,53,46,0.0 +15230,21,10,9,0.0 +15230,54,7.45,49,0.0 +15230,46,12,30,0.0 +15230,9,97,39,0.0 +15230,4,22,14,0.0 +15230,58,13.25,13,0.0 +15230,28,45.6,36,0.0 +15230,44,19.45,18,0.0 +15231,59,55,20,0.0 +15231,40,18.4,45,0.0 +15231,55,24,43,0.0 +15231,10,31,14,0.0 +15231,6,25,7,0.0 +15231,8,40,27,0.0 +15231,45,9.5,48,0.0 +15231,77,13,1,0.0 +15231,53,32.8,23,0.0 +15231,71,21.5,30,0.0 +15231,31,12.5,27,0.0 +15231,26,31.23,38,0.0 +15231,52,7,49,0.0 +15231,35,18,50,0.0 +15231,47,9.5,23,0.0 +15231,19,9.2,1,0.0 +15231,51,53,4,0.0 +15231,65,21.05,46,0.0 +15231,3,10,26,0.0 +15231,33,2.5,12,0.0 +15231,1,18,14,0.0 +15231,54,7.45,39,0.0 +15231,60,34,11,0.0 +15231,21,10,36,0.0 +15231,67,14,5,0.0 +15231,7,30,25,0.0 +15231,66,17,2,0.0 +15231,56,38,37,0.0 +15231,34,14,3,0.0 +15231,22,21,48,0.0 +15231,9,97,28,0.0 +15231,50,16.25,49,0.0 +15231,37,26,50,0.0 +15231,17,39,1,0.0 +15231,41,9.65,44,0.0 +15231,68,12.5,6,0.0 +15231,39,18,42,0.0 +15231,42,14,9,0.0 +15231,57,19.5,17,0.0 +15232,3,10,24,0.0 +15232,22,21,5,0.0 +15232,62,49.3,42,0.0 +15232,26,31.23,47,0.0 +15232,31,12.5,16,0.0 +15232,53,32.8,50,0.0 +15232,66,17,47,0.0 +15232,8,40,7,0.0 +15232,6,25,42,0.0 +15233,65,21.05,22,0.0 +15233,46,12,28,0.0 +15233,42,14,24,0.0 +15233,12,38,35,0.0 +15233,7,30,27,0.0 +15233,3,10,36,0.0 +15233,64,33.25,50,0.0 +15233,18,62.5,45,0.0 +15233,41,9.65,21,0.0 +15233,20,81,25,0.0 +15233,58,13.25,36,0.0 +15233,33,2.5,2,0.0 +15233,16,17.45,34,0.0 +15233,56,38,50,0.0 +15233,22,21,35,0.0 +15233,30,25.89,50,0.0 +15233,31,12.5,31,0.0 +15233,73,15,47,0.0 +15233,10,31,42,0.0 +15233,72,34.8,42,0.0 +15233,40,18.4,25,0.0 +15233,68,12.5,15,0.0 +15233,36,19,36,0.0 +15233,32,32,29,0.0 +15233,24,4.5,1,0.0 +15233,71,21.5,40,0.0 +15233,77,13,33,0.0 +15233,54,7.45,22,0.0 +15233,34,14,27,0.0 +15233,75,7.75,16,0.0 +15233,8,40,30,0.0 +15233,47,9.5,21,0.0 +15233,52,7,38,0.0 +15233,59,55,9,0.0 +15233,6,25,33,0.0 +15233,15,15.5,28,0.0 +15233,48,12.75,32,0.0 +15233,14,23.25,26,0.0 +15233,25,14,46,0.0 +15233,45,9.5,38,0.0 +15233,60,34,27,0.0 +15233,57,19.5,12,0.0 +15233,74,10,31,0.0 +15233,39,18,5,0.0 +15233,37,26,46,0.0 +15234,48,12.75,45,0.0 +15234,44,19.45,23,0.0 +15234,9,97,19,0.0 +15234,35,18,1,0.0 +15234,2,19,34,0.0 +15234,32,32,24,0.0 +15234,36,19,24,0.0 +15234,17,39,14,0.0 +15234,5,21.35,39,0.0 +15234,12,38,15,0.0 +15234,42,14,33,0.0 +15234,31,12.5,42,0.0 +15234,18,62.5,46,0.0 +15234,47,9.5,40,0.0 +15234,62,49.3,6,0.0 +15234,26,31.23,44,0.0 +15234,54,7.45,33,0.0 +15234,29,123.79,32,0.0 +15234,56,38,32,0.0 +15234,30,25.89,25,0.0 +15234,41,9.65,19,0.0 +15234,23,9,20,0.0 +15234,11,21,8,0.0 +15234,64,33.25,41,0.0 +15234,34,14,12,0.0 +15234,65,21.05,25,0.0 +15234,39,18,11,0.0 +15234,25,14,40,0.0 +15234,49,20,7,0.0 +15234,27,43.9,9,0.0 +15234,4,22,43,0.0 +15234,57,19.5,39,0.0 +15234,40,18.4,50,0.0 +15234,8,40,32,0.0 +15234,13,6,34,0.0 +15234,67,14,33,0.0 +15234,59,55,24,0.0 +15234,63,43.9,7,0.0 +15234,61,28.5,11,0.0 +15234,60,34,31,0.0 +15234,28,45.6,37,0.0 +15234,33,2.5,13,0.0 +15234,22,21,10,0.0 +15234,37,26,24,0.0 +15234,19,9.2,34,0.0 +15234,14,23.25,30,0.0 +15234,55,24,29,0.0 +15234,38,263.5,32,0.0 +15234,52,7,50,0.0 +15234,72,34.8,14,0.0 +15234,24,4.5,12,0.0 +15234,46,12,32,0.0 +15234,70,15,36,0.0 +15234,10,31,47,0.0 +15234,53,32.8,27,0.0 +15234,43,46,12,0.0 +15234,45,9.5,6,0.0 +15234,66,17,33,0.0 +15234,7,30,27,0.0 +15234,69,36,12,0.0 +15234,15,15.5,32,0.0 +15234,76,18,20,0.0 +15234,74,10,50,0.0 +15234,20,81,2,0.0 +15234,6,25,40,0.0 +15234,3,10,22,0.0 +15234,58,13.25,25,0.0 +15235,67,14,32,0.0 +15235,6,25,12,0.0 +15235,42,14,28,0.0 +15235,48,12.75,32,0.0 +15235,30,25.89,46,0.0 +15235,4,22,21,0.0 +15235,20,81,42,0.0 +15235,34,14,23,0.0 +15235,57,19.5,3,0.0 +15235,64,33.25,20,0.0 +15235,10,31,49,0.0 +15235,52,7,48,0.0 +15235,32,32,49,0.0 +15235,61,28.5,13,0.0 +15235,43,46,9,0.0 +15235,33,2.5,1,0.0 +15235,28,45.6,41,0.0 +15235,60,34,31,0.0 +15235,59,55,21,0.0 +15235,50,16.25,24,0.0 +15235,18,62.5,43,0.0 +15235,46,12,36,0.0 +15235,45,9.5,4,0.0 +15235,68,12.5,29,0.0 +15235,58,13.25,20,0.0 +15235,70,15,29,0.0 +15235,47,9.5,8,0.0 +15235,72,34.8,12,0.0 +15235,15,15.5,6,0.0 +15235,75,7.75,3,0.0 +15235,36,19,14,0.0 +15235,41,9.65,24,0.0 +15235,9,97,37,0.0 +15235,53,32.8,45,0.0 +15235,76,18,50,0.0 +15235,8,40,3,0.0 +15235,11,21,46,0.0 +15235,55,24,48,0.0 +15235,31,12.5,40,0.0 +15235,26,31.23,26,0.0 +15235,19,9.2,40,0.0 +15235,1,18,36,0.0 +15235,3,10,12,0.0 +15235,23,9,20,0.0 +15235,27,43.9,50,0.0 +15235,51,53,49,0.0 +15235,37,26,3,0.0 +15235,49,20,26,0.0 +15235,13,6,2,0.0 +15235,73,15,28,0.0 +15236,61,28.5,49,0.0 +15236,10,31,44,0.0 +15236,7,30,14,0.0 +15236,58,13.25,45,0.0 +15236,38,263.5,7,0.0 +15236,29,123.79,5,0.0 +15236,2,19,19,0.0 +15236,6,25,29,0.0 +15236,22,21,48,0.0 +15236,54,7.45,35,0.0 +15236,77,13,50,0.0 +15236,63,43.9,3,0.0 +15236,20,81,11,0.0 +15236,39,18,14,0.0 +15236,33,2.5,7,0.0 +15236,36,19,31,0.0 +15236,46,12,41,0.0 +15236,76,18,29,0.0 +15236,71,21.5,48,0.0 +15236,47,9.5,30,0.0 +15236,12,38,13,0.0 +15236,25,14,4,0.0 +15236,30,25.89,43,0.0 +15236,42,14,24,0.0 +15236,60,34,33,0.0 +15236,35,18,6,0.0 +15237,21,10,33,0.0 +15237,56,38,39,0.0 +15237,61,28.5,21,0.0 +15237,73,15,42,0.0 +15237,41,9.65,28,0.0 +15237,64,33.25,4,0.0 +15237,39,18,29,0.0 +15237,55,24,13,0.0 +15237,20,81,42,0.0 +15237,28,45.6,18,0.0 +15237,3,10,44,0.0 +15237,10,31,9,0.0 +15237,72,34.8,49,0.0 +15237,32,32,28,0.0 +15237,46,12,36,0.0 +15237,54,7.45,27,0.0 +15237,68,12.5,47,0.0 +15237,53,32.8,6,0.0 +15237,76,18,46,0.0 +15237,70,15,41,0.0 +15237,1,18,40,0.0 +15237,59,55,42,0.0 +15237,19,9.2,30,0.0 +15237,26,31.23,47,0.0 +15237,65,21.05,38,0.0 +15237,16,17.45,8,0.0 +15237,44,19.45,9,0.0 +15237,30,25.89,22,0.0 +15237,42,14,1,0.0 +15237,48,12.75,34,0.0 +15237,7,30,35,0.0 +15237,4,22,26,0.0 +15237,66,17,21,0.0 +15237,49,20,3,0.0 +15237,67,14,32,0.0 +15237,57,19.5,20,0.0 +15237,52,7,1,0.0 +15237,22,21,17,0.0 +15237,31,12.5,22,0.0 +15237,37,26,18,0.0 +15237,77,13,9,0.0 +15237,71,21.5,42,0.0 +15237,47,9.5,31,0.0 +15237,2,19,38,0.0 +15237,29,123.79,25,0.0 +15237,23,9,7,0.0 +15237,11,21,34,0.0 +15237,5,21.35,31,0.0 +15237,36,19,36,0.0 +15237,60,34,16,0.0 +15237,51,53,38,0.0 +15237,33,2.5,35,0.0 +15238,76,18,6,0.0 +15238,71,21.5,27,0.0 +15238,36,19,21,0.0 +15238,63,43.9,4,0.0 +15238,66,17,26,0.0 +15238,64,33.25,27,0.0 +15238,7,30,41,0.0 +15238,51,53,7,0.0 +15238,19,9.2,10,0.0 +15238,67,14,1,0.0 +15238,43,46,48,0.0 +15238,62,49.3,9,0.0 +15238,55,24,23,0.0 +15238,6,25,13,0.0 +15238,1,18,47,0.0 +15239,76,18,43,0.0 +15239,12,38,33,0.0 +15239,67,14,35,0.0 +15239,61,28.5,48,0.0 +15239,64,33.25,36,0.0 +15239,42,14,19,0.0 +15239,21,10,16,0.0 +15239,46,12,32,0.0 +15239,37,26,38,0.0 +15239,36,19,37,0.0 +15239,77,13,32,0.0 +15239,44,19.45,9,0.0 +15239,9,97,20,0.0 +15239,27,43.9,15,0.0 +15239,51,53,14,0.0 +15239,58,13.25,23,0.0 +15239,38,263.5,37,0.0 +15239,2,19,18,0.0 +15239,50,16.25,13,0.0 +15239,41,9.65,42,0.0 +15239,74,10,1,0.0 +15239,16,17.45,28,0.0 +15239,19,9.2,40,0.0 +15239,14,23.25,49,0.0 +15239,6,25,12,0.0 +15239,70,15,17,0.0 +15239,40,18.4,50,0.0 +15239,1,18,49,0.0 +15239,29,123.79,38,0.0 +15239,10,31,18,0.0 +15239,18,62.5,5,0.0 +15239,4,22,46,0.0 +15239,11,21,27,0.0 +15239,17,39,20,0.0 +15239,59,55,11,0.0 +15239,75,7.75,44,0.0 +15239,54,7.45,22,0.0 +15239,26,31.23,44,0.0 +15239,25,14,45,0.0 +15239,60,34,45,0.0 +15239,35,18,23,0.0 +15239,32,32,43,0.0 +15239,3,10,45,0.0 +15239,33,2.5,15,0.0 +15239,47,9.5,1,0.0 +15239,72,34.8,41,0.0 +15239,31,12.5,28,0.0 +15239,62,49.3,5,0.0 +15239,5,21.35,46,0.0 +15239,30,25.89,15,0.0 +15239,52,7,46,0.0 +15239,55,24,26,0.0 +15239,65,21.05,35,0.0 +15239,71,21.5,32,0.0 +15239,23,9,32,0.0 +15239,28,45.6,8,0.0 +15239,68,12.5,36,0.0 +15239,20,81,5,0.0 +15239,15,15.5,15,0.0 +15239,34,14,36,0.0 +15239,39,18,33,0.0 +15239,22,21,25,0.0 +15239,43,46,36,0.0 +15239,24,4.5,6,0.0 +15239,45,9.5,32,0.0 +15239,57,19.5,6,0.0 +15239,63,43.9,29,0.0 +15239,8,40,18,0.0 +15239,56,38,39,0.0 +15239,66,17,28,0.0 +15239,7,30,4,0.0 +15239,73,15,38,0.0 +15240,10,31,9,0.0 +15240,41,9.65,30,0.0 +15240,76,18,22,0.0 +15240,66,17,18,0.0 +15240,18,62.5,18,0.0 +15240,24,4.5,8,0.0 +15240,34,14,29,0.0 +15240,58,13.25,1,0.0 +15240,64,33.25,22,0.0 +15240,23,9,1,0.0 +15240,60,34,4,0.0 +15240,27,43.9,37,0.0 +15240,71,21.5,46,0.0 +15240,48,12.75,36,0.0 +15240,45,9.5,23,0.0 +15240,55,24,36,0.0 +15240,73,15,3,0.0 +15240,14,23.25,17,0.0 +15240,8,40,22,0.0 +15240,40,18.4,48,0.0 +15240,35,18,43,0.0 +15240,53,32.8,6,0.0 +15240,19,9.2,36,0.0 +15240,25,14,17,0.0 +15240,42,14,50,0.0 +15240,49,20,41,0.0 +15240,61,28.5,48,0.0 +15240,28,45.6,19,0.0 +15240,3,10,21,0.0 +15240,15,15.5,42,0.0 +15240,44,19.45,24,0.0 +15240,11,21,38,0.0 +15240,4,22,39,0.0 +15240,17,39,14,0.0 +15240,52,7,43,0.0 +15240,57,19.5,36,0.0 +15240,22,21,30,0.0 +15240,65,21.05,28,0.0 +15240,72,34.8,8,0.0 +15240,69,36,31,0.0 +15240,56,38,19,0.0 +15240,26,31.23,20,0.0 +15240,47,9.5,47,0.0 +15240,51,53,3,0.0 +15240,16,17.45,1,0.0 +15240,20,81,50,0.0 +15240,30,25.89,10,0.0 +15240,38,263.5,33,0.0 +15240,9,97,41,0.0 +15240,12,38,3,0.0 +15240,62,49.3,21,0.0 +15240,54,7.45,49,0.0 +15240,1,18,36,0.0 +15240,46,12,27,0.0 +15240,29,123.79,23,0.0 +15240,7,30,47,0.0 +15240,32,32,17,0.0 +15240,63,43.9,41,0.0 +15240,31,12.5,30,0.0 +15240,2,19,12,0.0 +15240,77,13,22,0.0 +15240,43,46,23,0.0 +15240,33,2.5,45,0.0 +15240,50,16.25,21,0.0 +15240,39,18,11,0.0 +15240,70,15,23,0.0 +15240,37,26,4,0.0 +15240,67,14,39,0.0 +15240,5,21.35,16,0.0 +15240,6,25,38,0.0 +15240,36,19,6,0.0 +15240,21,10,43,0.0 +15241,30,25.89,43,0.0 +15241,64,33.25,38,0.0 +15241,5,21.35,24,0.0 +15241,39,18,11,0.0 +15241,8,40,48,0.0 +15241,67,14,40,0.0 +15241,55,24,45,0.0 +15241,41,9.65,16,0.0 +15241,50,16.25,5,0.0 +15241,29,123.79,16,0.0 +15241,70,15,49,0.0 +15241,34,14,9,0.0 +15241,72,34.8,26,0.0 +15241,68,12.5,12,0.0 +15241,47,9.5,31,0.0 +15241,66,17,21,0.0 +15241,74,10,41,0.0 +15241,61,28.5,41,0.0 +15241,10,31,44,0.0 +15241,26,31.23,24,0.0 +15241,52,7,22,0.0 +15241,12,38,36,0.0 +15241,22,21,44,0.0 +15241,27,43.9,28,0.0 +15241,7,30,40,0.0 +15241,37,26,9,0.0 +15241,31,12.5,49,0.0 +15241,73,15,31,0.0 +15241,40,18.4,50,0.0 +15241,6,25,20,0.0 +15241,46,12,29,0.0 +15241,32,32,34,0.0 +15241,59,55,11,0.0 +15241,63,43.9,36,0.0 +15241,25,14,4,0.0 +15241,3,10,2,0.0 +15241,16,17.45,23,0.0 +15241,60,34,8,0.0 +15241,71,21.5,15,0.0 +15241,21,10,49,0.0 +15241,9,97,32,0.0 +15241,49,20,16,0.0 +15241,13,6,26,0.0 +15241,57,19.5,17,0.0 +15241,62,49.3,29,0.0 +15241,51,53,11,0.0 +15241,15,15.5,28,0.0 +15241,4,22,38,0.0 +15241,14,23.25,31,0.0 +15241,54,7.45,18,0.0 +15241,28,45.6,38,0.0 +15241,45,9.5,41,0.0 +15241,65,21.05,41,0.0 +15241,58,13.25,4,0.0 +15241,23,9,45,0.0 +15241,33,2.5,1,0.0 +15241,56,38,23,0.0 +15241,76,18,44,0.0 +15241,35,18,39,0.0 +15241,77,13,12,0.0 +15242,44,19.45,46,0.0 +15242,43,46,24,0.0 +15242,67,14,5,0.0 +15242,3,10,1,0.0 +15242,50,16.25,48,0.0 +15242,4,22,47,0.0 +15242,5,21.35,12,0.0 +15242,36,19,11,0.0 +15242,58,13.25,50,0.0 +15242,38,263.5,43,0.0 +15242,19,9.2,2,0.0 +15242,6,25,26,0.0 +15242,57,19.5,11,0.0 +15242,42,14,50,0.0 +15242,8,40,41,0.0 +15242,22,21,39,0.0 +15242,25,14,50,0.0 +15242,62,49.3,40,0.0 +15242,70,15,46,0.0 +15242,26,31.23,7,0.0 +15242,61,28.5,33,0.0 +15242,21,10,24,0.0 +15242,34,14,33,0.0 +15242,32,32,37,0.0 +15242,60,34,40,0.0 +15242,2,19,47,0.0 +15242,46,12,24,0.0 +15242,51,53,24,0.0 +15242,35,18,8,0.0 +15242,41,9.65,15,0.0 +15242,52,7,35,0.0 +15242,75,7.75,7,0.0 +15242,69,36,21,0.0 +15242,30,25.89,18,0.0 +15242,16,17.45,34,0.0 +15242,49,20,46,0.0 +15242,64,33.25,7,0.0 +15242,72,34.8,44,0.0 +15242,20,81,30,0.0 +15242,24,4.5,9,0.0 +15242,15,15.5,31,0.0 +15242,28,45.6,13,0.0 +15242,31,12.5,49,0.0 +15242,39,18,13,0.0 +15242,66,17,42,0.0 +15242,73,15,8,0.0 +15242,45,9.5,33,0.0 +15242,17,39,19,0.0 +15242,76,18,17,0.0 +15242,18,62.5,34,0.0 +15242,13,6,47,0.0 +15242,48,12.75,5,0.0 +15242,27,43.9,29,0.0 +15242,74,10,43,0.0 +15242,7,30,31,0.0 +15242,65,21.05,12,0.0 +15242,1,18,49,0.0 +15242,9,97,18,0.0 +15242,71,21.5,29,0.0 +15242,14,23.25,1,0.0 +15242,11,21,18,0.0 +15242,40,18.4,24,0.0 +15242,23,9,24,0.0 +15242,55,24,43,0.0 +15242,63,43.9,11,0.0 +15242,77,13,3,0.0 +15242,37,26,11,0.0 +15242,10,31,29,0.0 +15242,12,38,31,0.0 +15242,56,38,48,0.0 +15242,47,9.5,32,0.0 +15242,33,2.5,43,0.0 +15242,54,7.45,20,0.0 +15243,10,31,19,0.0 +15243,74,10,3,0.0 +15243,49,20,11,0.0 +15243,40,18.4,16,0.0 +15243,19,9.2,29,0.0 +15243,2,19,39,0.0 +15243,59,55,40,0.0 +15243,12,38,30,0.0 +15243,30,25.89,39,0.0 +15243,1,18,6,0.0 +15243,50,16.25,33,0.0 +15243,68,12.5,20,0.0 +15243,4,22,31,0.0 +15243,31,12.5,14,0.0 +15243,65,21.05,5,0.0 +15243,15,15.5,23,0.0 +15243,17,39,39,0.0 +15243,63,43.9,5,0.0 +15243,35,18,8,0.0 +15243,69,36,15,0.0 +15243,53,32.8,37,0.0 +15243,16,17.45,17,0.0 +15243,23,9,26,0.0 +15243,11,21,16,0.0 +15243,72,34.8,3,0.0 +15243,44,19.45,13,0.0 +15243,33,2.5,11,0.0 +15243,5,21.35,9,0.0 +15243,61,28.5,17,0.0 +15243,56,38,25,0.0 +15243,34,14,30,0.0 +15243,39,18,48,0.0 +15243,75,7.75,16,0.0 +15243,9,97,33,0.0 +15243,52,7,35,0.0 +15243,29,123.79,41,0.0 +15243,20,81,36,0.0 +15243,26,31.23,32,0.0 +15243,71,21.5,17,0.0 +15243,73,15,20,0.0 +15243,14,23.25,16,0.0 +15243,62,49.3,44,0.0 +15243,45,9.5,1,0.0 +15243,37,26,43,0.0 +15243,36,19,47,0.0 +15243,51,53,33,0.0 +15243,67,14,21,0.0 +15243,55,24,40,0.0 +15243,18,62.5,16,0.0 +15243,7,30,31,0.0 +15243,32,32,31,0.0 +15243,57,19.5,21,0.0 +15243,43,46,17,0.0 +15243,6,25,33,0.0 +15243,54,7.45,29,0.0 +15243,48,12.75,45,0.0 +15243,64,33.25,18,0.0 +15243,28,45.6,20,0.0 +15243,38,263.5,13,0.0 +15243,25,14,17,0.0 +15243,46,12,27,0.0 +15243,8,40,20,0.0 +15244,20,81,34,0.0 +15244,68,12.5,23,0.0 +15244,71,21.5,23,0.0 +15244,32,32,21,0.0 +15244,76,18,12,0.0 +15244,63,43.9,37,0.0 +15244,35,18,31,0.0 +15244,57,19.5,19,0.0 +15244,47,9.5,30,0.0 +15244,64,33.25,21,0.0 +15244,69,36,5,0.0 +15244,43,46,15,0.0 +15244,44,19.45,26,0.0 +15244,40,18.4,23,0.0 +15244,55,24,7,0.0 +15244,13,6,35,0.0 +15244,53,32.8,14,0.0 +15244,41,9.65,9,0.0 +15244,7,30,15,0.0 +15244,12,38,44,0.0 +15244,66,17,4,0.0 +15244,3,10,11,0.0 +15244,74,10,26,0.0 +15244,67,14,30,0.0 +15244,2,19,33,0.0 +15244,54,7.45,16,0.0 +15244,31,12.5,4,0.0 +15244,11,21,47,0.0 +15244,60,34,15,0.0 +15244,27,43.9,12,0.0 +15244,52,7,36,0.0 +15244,48,12.75,42,0.0 +15244,24,4.5,16,0.0 +15244,39,18,5,0.0 +15244,37,26,12,0.0 +15244,73,15,5,0.0 +15244,58,13.25,33,0.0 +15244,15,15.5,1,0.0 +15244,36,19,13,0.0 +15244,22,21,9,0.0 +15244,18,62.5,49,0.0 +15244,50,16.25,20,0.0 +15244,75,7.75,4,0.0 +15244,61,28.5,42,0.0 +15244,6,25,48,0.0 +15244,4,22,36,0.0 +15244,28,45.6,5,0.0 +15244,16,17.45,22,0.0 +15244,59,55,43,0.0 +15244,23,9,14,0.0 +15244,5,21.35,31,0.0 +15244,38,263.5,17,0.0 +15244,77,13,6,0.0 +15244,29,123.79,50,0.0 +15244,26,31.23,26,0.0 +15244,42,14,48,0.0 +15244,51,53,38,0.0 +15244,56,38,45,0.0 +15245,68,12.5,9,0.0 +15245,27,43.9,29,0.0 +15245,43,46,15,0.0 +15245,34,14,5,0.0 +15245,51,53,18,0.0 +15245,28,45.6,1,0.0 +15245,59,55,33,0.0 +15245,66,17,26,0.0 +15246,42,14,40,0.0 +15246,58,13.25,24,0.0 +15246,20,81,37,0.0 +15246,21,10,33,0.0 +15246,37,26,49,0.0 +15246,61,28.5,30,0.0 +15246,39,18,8,0.0 +15246,52,7,11,0.0 +15246,23,9,33,0.0 +15246,5,21.35,10,0.0 +15246,25,14,5,0.0 +15246,71,21.5,40,0.0 +15246,26,31.23,22,0.0 +15246,62,49.3,43,0.0 +15246,33,2.5,21,0.0 +15246,22,21,4,0.0 +15246,68,12.5,17,0.0 +15246,24,4.5,28,0.0 +15246,46,12,39,0.0 +15246,44,19.45,22,0.0 +15246,48,12.75,41,0.0 +15246,6,25,12,0.0 +15246,7,30,33,0.0 +15246,40,18.4,8,0.0 +15246,32,32,19,0.0 +15246,66,17,34,0.0 +15246,16,17.45,44,0.0 +15246,43,46,50,0.0 +15246,53,32.8,16,0.0 +15246,27,43.9,29,0.0 +15246,57,19.5,44,0.0 +15246,1,18,36,0.0 +15246,51,53,28,0.0 +15246,64,33.25,44,0.0 +15246,18,62.5,49,0.0 +15246,70,15,22,0.0 +15246,56,38,50,0.0 +15246,29,123.79,32,0.0 +15246,30,25.89,6,0.0 +15246,72,34.8,33,0.0 +15246,60,34,37,0.0 +15246,55,24,20,0.0 +15246,49,20,44,0.0 +15246,69,36,50,0.0 +15246,75,7.75,36,0.0 +15246,77,13,48,0.0 +15246,2,19,31,0.0 +15246,35,18,40,0.0 +15246,31,12.5,25,0.0 +15246,19,9.2,41,0.0 +15246,34,14,14,0.0 +15246,17,39,21,0.0 +15246,45,9.5,6,0.0 +15246,9,97,13,0.0 +15246,3,10,19,0.0 +15246,74,10,47,0.0 +15246,59,55,1,0.0 +15246,4,22,46,0.0 +15246,15,15.5,33,0.0 +15246,47,9.5,37,0.0 +15246,36,19,35,0.0 +15246,54,7.45,35,0.0 +15246,11,21,6,0.0 +15246,73,15,10,0.0 +15246,67,14,6,0.0 +15246,63,43.9,1,0.0 +15246,13,6,2,0.0 +15247,1,18,34,0.0 +15247,28,45.6,1,0.0 +15247,4,22,13,0.0 +15247,62,49.3,38,0.0 +15247,19,9.2,4,0.0 +15247,75,7.75,50,0.0 +15247,56,38,42,0.0 +15247,76,18,31,0.0 +15247,45,9.5,37,0.0 +15247,25,14,22,0.0 +15247,73,15,19,0.0 +15247,9,97,4,0.0 +15247,58,13.25,21,0.0 +15247,34,14,19,0.0 +15247,46,12,45,0.0 +15247,72,34.8,12,0.0 +15247,43,46,25,0.0 +15247,27,43.9,18,0.0 +15247,31,12.5,24,0.0 +15247,40,18.4,30,0.0 +15247,71,21.5,41,0.0 +15247,12,38,14,0.0 +15247,64,33.25,16,0.0 +15247,57,19.5,44,0.0 +15247,5,21.35,25,0.0 +15247,69,36,46,0.0 +15247,48,12.75,8,0.0 +15247,24,4.5,5,0.0 +15248,37,26,4,0.0 +15248,39,18,50,0.0 +15248,43,46,32,0.0 +15248,7,30,8,0.0 +15248,16,17.45,36,0.0 +15248,1,18,11,0.0 +15248,41,9.65,45,0.0 +15248,2,19,14,0.0 +15248,77,13,46,0.0 +15248,22,21,15,0.0 +15248,74,10,45,0.0 +15248,65,21.05,5,0.0 +15248,63,43.9,34,0.0 +15248,21,10,38,0.0 +15248,38,263.5,20,0.0 +15248,70,15,6,0.0 +15248,47,9.5,42,0.0 +15248,10,31,38,0.0 +15248,71,21.5,37,0.0 +15248,5,21.35,34,0.0 +15248,26,31.23,5,0.0 +15248,67,14,24,0.0 +15248,13,6,13,0.0 +15248,28,45.6,27,0.0 +15249,8,40,3,0.0 +15249,52,7,39,0.0 +15249,31,12.5,31,0.0 +15249,6,25,48,0.0 +15249,10,31,39,0.0 +15249,29,123.79,23,0.0 +15250,13,6,37,0.0 +15250,11,21,37,0.0 +15250,17,39,38,0.0 +15250,41,9.65,45,0.0 +15250,24,4.5,19,0.0 +15250,8,40,16,0.0 +15250,43,46,6,0.0 +15250,40,18.4,31,0.0 +15250,1,18,41,0.0 +15250,54,7.45,15,0.0 +15250,26,31.23,38,0.0 +15250,55,24,7,0.0 +15250,9,97,21,0.0 +15250,16,17.45,15,0.0 +15250,28,45.6,48,0.0 +15250,12,38,17,0.0 +15250,50,16.25,19,0.0 +15250,3,10,7,0.0 +15250,47,9.5,18,0.0 +15250,70,15,44,0.0 +15250,76,18,17,0.0 +15250,34,14,27,0.0 +15250,65,21.05,17,0.0 +15250,18,62.5,11,0.0 +15251,49,20,17,0.0 +15251,21,10,31,0.0 +15251,76,18,28,0.0 +15251,56,38,27,0.0 +15251,50,16.25,13,0.0 +15251,51,53,16,0.0 +15251,25,14,36,0.0 +15251,42,14,11,0.0 +15251,32,32,24,0.0 +15251,1,18,11,0.0 +15251,69,36,47,0.0 +15251,73,15,19,0.0 +15251,3,10,16,0.0 +15251,24,4.5,25,0.0 +15251,16,17.45,18,0.0 +15251,60,34,26,0.0 +15251,52,7,8,0.0 +15251,9,97,4,0.0 +15251,5,21.35,2,0.0 +15251,37,26,18,0.0 +15251,6,25,31,0.0 +15251,68,12.5,27,0.0 +15251,54,7.45,24,0.0 +15251,4,22,41,0.0 +15251,70,15,42,0.0 +15251,39,18,5,0.0 +15251,62,49.3,39,0.0 +15251,13,6,50,0.0 +15251,10,31,5,0.0 +15251,14,23.25,45,0.0 +15251,65,21.05,42,0.0 +15251,30,25.89,34,0.0 +15251,61,28.5,13,0.0 +15251,23,9,46,0.0 +15251,35,18,7,0.0 +15251,64,33.25,4,0.0 +15251,44,19.45,50,0.0 +15251,57,19.5,50,0.0 +15251,18,62.5,18,0.0 +15251,59,55,38,0.0 +15251,19,9.2,23,0.0 +15251,8,40,40,0.0 +15251,40,18.4,45,0.0 +15252,56,38,47,0.0 +15252,37,26,34,0.0 +15252,34,14,18,0.0 +15252,8,40,47,0.0 +15252,6,25,38,0.0 +15252,68,12.5,50,0.0 +15252,3,10,42,0.0 +15252,76,18,46,0.0 +15252,65,21.05,35,0.0 +15252,10,31,3,0.0 +15252,63,43.9,38,0.0 +15252,11,21,1,0.0 +15252,72,34.8,31,0.0 +15252,67,14,16,0.0 +15252,61,28.5,25,0.0 +15252,4,22,3,0.0 +15252,62,49.3,36,0.0 +15252,39,18,28,0.0 +15252,46,12,2,0.0 +15252,38,263.5,50,0.0 +15252,47,9.5,19,0.0 +15252,59,55,38,0.0 +15252,33,2.5,24,0.0 +15252,49,20,13,0.0 +15252,17,39,24,0.0 +15252,41,9.65,24,0.0 +15252,14,23.25,50,0.0 +15252,75,7.75,18,0.0 +15252,66,17,6,0.0 +15252,55,24,8,0.0 +15252,44,19.45,11,0.0 +15252,18,62.5,28,0.0 +15252,21,10,30,0.0 +15252,31,12.5,19,0.0 +15252,45,9.5,30,0.0 +15252,5,21.35,5,0.0 +15252,1,18,11,0.0 +15252,12,38,19,0.0 +15252,24,4.5,45,0.0 +15252,54,7.45,5,0.0 +15252,29,123.79,20,0.0 +15252,48,12.75,2,0.0 +15252,13,6,50,0.0 +15252,58,13.25,26,0.0 +15252,32,32,21,0.0 +15252,57,19.5,15,0.0 +15252,20,81,6,0.0 +15252,42,14,24,0.0 +15252,69,36,35,0.0 +15252,25,14,35,0.0 +15252,77,13,46,0.0 +15252,26,31.23,12,0.0 +15252,60,34,43,0.0 +15252,16,17.45,33,0.0 +15252,28,45.6,16,0.0 +15252,74,10,26,0.0 +15252,22,21,28,0.0 +15252,9,97,48,0.0 +15252,7,30,19,0.0 +15252,23,9,2,0.0 +15252,2,19,43,0.0 +15252,73,15,37,0.0 +15252,19,9.2,45,0.0 +15252,30,25.89,18,0.0 +15252,27,43.9,26,0.0 +15252,70,15,28,0.0 +15252,43,46,29,0.0 +15252,15,15.5,14,0.0 +15252,35,18,14,0.0 +15252,52,7,28,0.0 +15253,32,32,26,0.0 +15253,23,9,21,0.0 +15253,33,2.5,49,0.0 +15253,40,18.4,5,0.0 +15253,70,15,22,0.0 +15253,10,31,31,0.0 +15253,46,12,34,0.0 +15253,68,12.5,40,0.0 +15253,35,18,49,0.0 +15253,62,49.3,45,0.0 +15253,21,10,36,0.0 +15253,24,4.5,5,0.0 +15253,58,13.25,45,0.0 +15253,44,19.45,38,0.0 +15253,7,30,37,0.0 +15253,45,9.5,20,0.0 +15253,56,38,21,0.0 +15253,66,17,9,0.0 +15253,50,16.25,17,0.0 +15253,3,10,11,0.0 +15253,42,14,36,0.0 +15253,13,6,19,0.0 +15253,47,9.5,48,0.0 +15253,26,31.23,48,0.0 +15253,20,81,30,0.0 +15253,31,12.5,23,0.0 +15253,43,46,18,0.0 +15253,54,7.45,35,0.0 +15253,76,18,9,0.0 +15253,72,34.8,18,0.0 +15253,59,55,40,0.0 +15253,63,43.9,4,0.0 +15253,39,18,15,0.0 +15253,4,22,44,0.0 +15253,5,21.35,25,0.0 +15253,65,21.05,41,0.0 +15253,27,43.9,2,0.0 +15253,69,36,33,0.0 +15253,12,38,7,0.0 +15253,77,13,2,0.0 +15253,64,33.25,29,0.0 +15253,73,15,37,0.0 +15253,75,7.75,1,0.0 +15253,48,12.75,18,0.0 +15253,57,19.5,25,0.0 +15253,55,24,8,0.0 +15253,11,21,14,0.0 +15253,6,25,20,0.0 +15253,14,23.25,13,0.0 +15253,49,20,7,0.0 +15253,25,14,47,0.0 +15253,19,9.2,23,0.0 +15253,71,21.5,34,0.0 +15253,37,26,33,0.0 +15253,67,14,10,0.0 +15253,2,19,48,0.0 +15253,41,9.65,30,0.0 +15253,22,21,26,0.0 +15253,15,15.5,38,0.0 +15253,8,40,43,0.0 +15253,38,263.5,5,0.0 +15253,34,14,12,0.0 +15254,15,15.5,11,0.0 +15254,69,36,28,0.0 +15254,55,24,2,0.0 +15254,42,14,35,0.0 +15254,35,18,39,0.0 +15254,10,31,31,0.0 +15254,30,25.89,4,0.0 +15254,66,17,18,0.0 +15254,1,18,27,0.0 +15254,46,12,2,0.0 +15254,72,34.8,25,0.0 +15254,9,97,41,0.0 +15254,13,6,24,0.0 +15254,24,4.5,37,0.0 +15254,64,33.25,6,0.0 +15254,49,20,9,0.0 +15254,26,31.23,46,0.0 +15254,76,18,42,0.0 +15254,5,21.35,6,0.0 +15254,37,26,1,0.0 +15254,60,34,48,0.0 +15254,32,32,16,0.0 +15254,77,13,50,0.0 +15254,57,19.5,7,0.0 +15254,31,12.5,31,0.0 +15254,39,18,20,0.0 +15254,45,9.5,46,0.0 +15254,6,25,17,0.0 +15254,52,7,23,0.0 +15254,4,22,12,0.0 +15254,33,2.5,17,0.0 +15254,3,10,32,0.0 +15254,27,43.9,49,0.0 +15254,25,14,11,0.0 +15254,22,21,1,0.0 +15255,75,7.75,41,0.0 +15255,49,20,4,0.0 +15255,64,33.25,18,0.0 +15255,21,10,32,0.0 +15255,46,12,49,0.0 +15255,74,10,11,0.0 +15255,72,34.8,4,0.0 +15255,17,39,3,0.0 +15255,6,25,24,0.0 +15255,55,24,42,0.0 +15255,42,14,30,0.0 +15255,73,15,33,0.0 +15255,71,21.5,35,0.0 +15255,68,12.5,30,0.0 +15255,10,31,27,0.0 +15255,27,43.9,13,0.0 +15255,12,38,39,0.0 +15255,25,14,28,0.0 +15255,76,18,12,0.0 +15255,63,43.9,6,0.0 +15255,37,26,13,0.0 +15255,8,40,10,0.0 +15255,20,81,15,0.0 +15255,5,21.35,37,0.0 +15255,59,55,21,0.0 +15255,9,97,16,0.0 +15255,61,28.5,5,0.0 +15255,70,15,10,0.0 +15255,52,7,34,0.0 +15255,50,16.25,1,0.0 +15255,38,263.5,9,0.0 +15255,29,123.79,26,0.0 +15255,57,19.5,6,0.0 +15255,33,2.5,24,0.0 +15255,13,6,12,0.0 +15255,15,15.5,33,0.0 +15255,58,13.25,13,0.0 +15255,48,12.75,17,0.0 +15255,62,49.3,39,0.0 +15255,11,21,23,0.0 +15255,60,34,13,0.0 +15255,2,19,10,0.0 +15255,44,19.45,10,0.0 +15255,7,30,37,0.0 +15255,53,32.8,28,0.0 +15255,39,18,49,0.0 +15255,28,45.6,48,0.0 +15255,1,18,34,0.0 +15255,40,18.4,49,0.0 +15255,67,14,24,0.0 +15255,54,7.45,31,0.0 +15255,65,21.05,13,0.0 +15255,34,14,21,0.0 +15255,31,12.5,22,0.0 +15255,3,10,26,0.0 +15255,41,9.65,30,0.0 +15255,66,17,49,0.0 +15255,56,38,33,0.0 +15255,30,25.89,36,0.0 +15255,26,31.23,6,0.0 +15255,77,13,8,0.0 +15255,14,23.25,33,0.0 +15255,19,9.2,35,0.0 +15255,23,9,47,0.0 +15255,4,22,10,0.0 +15255,36,19,17,0.0 +15255,47,9.5,18,0.0 +15255,18,62.5,40,0.0 +15255,35,18,15,0.0 +15255,22,21,39,0.0 +15255,69,36,4,0.0 +15255,24,4.5,22,0.0 +15255,43,46,8,0.0 +15255,45,9.5,9,0.0 +15255,51,53,36,0.0 +15255,16,17.45,38,0.0 +15256,43,46,43,0.0 +15256,66,17,34,0.0 +15256,30,25.89,24,0.0 +15256,19,9.2,39,0.0 +15256,44,19.45,9,0.0 +15256,70,15,16,0.0 +15256,51,53,4,0.0 +15257,32,32,37,0.0 +15257,69,36,13,0.0 +15257,77,13,30,0.0 +15257,45,9.5,45,0.0 +15257,6,25,48,0.0 +15257,19,9.2,29,0.0 +15257,27,43.9,39,0.0 +15257,60,34,42,0.0 +15257,26,31.23,26,0.0 +15257,67,14,18,0.0 +15257,48,12.75,50,0.0 +15257,54,7.45,3,0.0 +15257,1,18,11,0.0 +15257,76,18,34,0.0 +15257,15,15.5,27,0.0 +15257,33,2.5,38,0.0 +15257,29,123.79,50,0.0 +15257,42,14,14,0.0 +15257,68,12.5,27,0.0 +15257,44,19.45,6,0.0 +15257,75,7.75,24,0.0 +15257,74,10,2,0.0 +15257,4,22,37,0.0 +15257,22,21,27,0.0 +15257,55,24,14,0.0 +15257,43,46,24,0.0 +15257,63,43.9,22,0.0 +15257,18,62.5,5,0.0 +15257,37,26,12,0.0 +15257,2,19,39,0.0 +15257,65,21.05,23,0.0 +15257,8,40,20,0.0 +15257,35,18,19,0.0 +15258,58,13.25,3,0.0 +15258,28,45.6,16,0.0 +15258,68,12.5,47,0.0 +15258,14,23.25,11,0.0 +15258,32,32,50,0.0 +15258,7,30,17,0.0 +15258,55,24,20,0.0 +15258,45,9.5,14,0.0 +15258,29,123.79,4,0.0 +15258,59,55,16,0.0 +15258,40,18.4,35,0.0 +15258,69,36,2,0.0 +15258,65,21.05,45,0.0 +15258,63,43.9,32,0.0 +15258,44,19.45,23,0.0 +15258,57,19.5,35,0.0 +15258,16,17.45,37,0.0 +15259,67,14,24,0.0 +15259,23,9,29,0.0 +15259,8,40,19,0.0 +15259,63,43.9,8,0.0 +15259,51,53,7,0.0 +15259,4,22,19,0.0 +15259,27,43.9,45,0.0 +15259,72,34.8,42,0.0 +15259,52,7,19,0.0 +15259,56,38,2,0.0 +15259,13,6,50,0.0 +15259,42,14,12,0.0 +15259,35,18,27,0.0 +15259,6,25,35,0.0 +15259,71,21.5,31,0.0 +15259,16,17.45,40,0.0 +15259,58,13.25,12,0.0 +15259,64,33.25,10,0.0 +15259,18,62.5,28,0.0 +15259,59,55,48,0.0 +15259,62,49.3,31,0.0 +15259,9,97,49,0.0 +15259,68,12.5,10,0.0 +15259,38,263.5,30,0.0 +15259,21,10,35,0.0 +15259,14,23.25,35,0.0 +15259,70,15,32,0.0 +15259,55,24,34,0.0 +15259,39,18,14,0.0 +15259,20,81,19,0.0 +15260,60,34,23,0.0 +15260,3,10,8,0.0 +15260,11,21,44,0.0 +15260,29,123.79,49,0.0 +15260,36,19,8,0.0 +15260,19,9.2,44,0.0 +15260,20,81,37,0.0 +15260,10,31,38,0.0 +15260,37,26,43,0.0 +15260,76,18,26,0.0 +15260,58,13.25,41,0.0 +15260,59,55,48,0.0 +15260,44,19.45,35,0.0 +15260,54,7.45,45,0.0 +15260,16,17.45,49,0.0 +15260,42,14,20,0.0 +15260,53,32.8,38,0.0 +15260,43,46,46,0.0 +15260,26,31.23,35,0.0 +15260,1,18,44,0.0 +15260,41,9.65,24,0.0 +15260,15,15.5,24,0.0 +15260,77,13,28,0.0 +15260,71,21.5,20,0.0 +15260,9,97,32,0.0 +15260,18,62.5,23,0.0 +15261,2,19,43,0.0 +15261,38,263.5,42,0.0 +15261,12,38,47,0.0 +15261,76,18,22,0.0 +15261,20,81,40,0.0 +15261,71,21.5,36,0.0 +15261,10,31,32,0.0 +15261,18,62.5,31,0.0 +15261,63,43.9,45,0.0 +15261,28,45.6,29,0.0 +15261,15,15.5,15,0.0 +15261,8,40,36,0.0 +15261,16,17.45,43,0.0 +15261,57,19.5,39,0.0 +15261,17,39,44,0.0 +15261,59,55,1,0.0 +15261,42,14,25,0.0 +15261,5,21.35,22,0.0 +15261,39,18,39,0.0 +15261,32,32,12,0.0 +15261,29,123.79,36,0.0 +15261,67,14,45,0.0 +15261,58,13.25,7,0.0 +15261,22,21,12,0.0 +15261,4,22,50,0.0 +15261,30,25.89,48,0.0 +15261,36,19,9,0.0 +15261,52,7,31,0.0 +15261,1,18,37,0.0 +15261,44,19.45,38,0.0 +15261,34,14,42,0.0 +15261,31,12.5,32,0.0 +15261,27,43.9,40,0.0 +15261,6,25,33,0.0 +15261,13,6,46,0.0 +15261,51,53,30,0.0 +15261,41,9.65,37,0.0 +15261,62,49.3,49,0.0 +15261,45,9.5,8,0.0 +15261,64,33.25,48,0.0 +15261,37,26,35,0.0 +15261,11,21,42,0.0 +15261,46,12,46,0.0 +15261,9,97,28,0.0 +15262,26,31.23,46,0.0 +15262,50,16.25,16,0.0 +15262,58,13.25,48,0.0 +15262,6,25,1,0.0 +15262,11,21,26,0.0 +15262,72,34.8,18,0.0 +15262,29,123.79,25,0.0 +15262,74,10,12,0.0 +15262,62,49.3,35,0.0 +15262,24,4.5,15,0.0 +15262,66,17,34,0.0 +15262,31,12.5,46,0.0 +15262,63,43.9,16,0.0 +15262,18,62.5,43,0.0 +15262,10,31,40,0.0 +15262,46,12,18,0.0 +15262,45,9.5,2,0.0 +15262,42,14,29,0.0 +15262,17,39,37,0.0 +15262,54,7.45,22,0.0 +15262,52,7,27,0.0 +15262,2,19,49,0.0 +15262,44,19.45,35,0.0 +15262,36,19,32,0.0 +15262,14,23.25,13,0.0 +15262,76,18,30,0.0 +15262,56,38,8,0.0 +15262,7,30,17,0.0 +15262,64,33.25,42,0.0 +15262,67,14,35,0.0 +15262,35,18,28,0.0 +15262,12,38,1,0.0 +15262,22,21,43,0.0 +15262,34,14,12,0.0 +15262,48,12.75,18,0.0 +15262,33,2.5,31,0.0 +15262,27,43.9,26,0.0 +15262,25,14,8,0.0 +15262,5,21.35,1,0.0 +15262,61,28.5,28,0.0 +15262,13,6,34,0.0 +15262,75,7.75,10,0.0 +15262,59,55,13,0.0 +15262,53,32.8,49,0.0 +15262,4,22,44,0.0 +15262,43,46,44,0.0 +15262,70,15,43,0.0 +15262,19,9.2,13,0.0 +15262,1,18,14,0.0 +15262,77,13,4,0.0 +15262,8,40,35,0.0 +15262,41,9.65,15,0.0 +15262,73,15,39,0.0 +15262,60,34,1,0.0 +15262,28,45.6,45,0.0 +15262,20,81,45,0.0 +15262,39,18,8,0.0 +15262,51,53,43,0.0 +15262,9,97,18,0.0 +15262,49,20,39,0.0 +15262,57,19.5,34,0.0 +15262,55,24,21,0.0 +15262,68,12.5,11,0.0 +15262,30,25.89,15,0.0 +15262,47,9.5,23,0.0 +15262,21,10,49,0.0 +15262,23,9,38,0.0 +15262,65,21.05,33,0.0 +15262,3,10,25,0.0 +15262,37,26,1,0.0 +15262,15,15.5,48,0.0 +15262,16,17.45,15,0.0 +15262,40,18.4,22,0.0 +15262,38,263.5,15,0.0 +15262,69,36,41,0.0 +15262,32,32,7,0.0 +15263,70,15,21,0.0 +15263,31,12.5,4,0.0 +15263,28,45.6,23,0.0 +15263,7,30,23,0.0 +15263,68,12.5,8,0.0 +15263,45,9.5,38,0.0 +15263,46,12,32,0.0 +15263,39,18,14,0.0 +15263,15,15.5,28,0.0 +15263,34,14,33,0.0 +15263,50,16.25,3,0.0 +15263,59,55,37,0.0 +15263,9,97,25,0.0 +15263,64,33.25,19,0.0 +15263,65,21.05,23,0.0 +15263,36,19,8,0.0 +15263,42,14,29,0.0 +15263,74,10,9,0.0 +15263,53,32.8,49,0.0 +15263,8,40,16,0.0 +15263,43,46,43,0.0 +15263,56,38,34,0.0 +15263,71,21.5,36,0.0 +15263,62,49.3,11,0.0 +15263,52,7,2,0.0 +15263,51,53,3,0.0 +15263,23,9,18,0.0 +15263,4,22,32,0.0 +15263,13,6,20,0.0 +15263,16,17.45,43,0.0 +15263,72,34.8,21,0.0 +15263,27,43.9,21,0.0 +15263,26,31.23,24,0.0 +15263,37,26,35,0.0 +15263,21,10,16,0.0 +15263,12,38,26,0.0 +15263,49,20,22,0.0 +15263,60,34,2,0.0 +15263,6,25,30,0.0 +15263,73,15,39,0.0 +15263,58,13.25,20,0.0 +15263,41,9.65,41,0.0 +15263,44,19.45,10,0.0 +15263,18,62.5,11,0.0 +15263,29,123.79,47,0.0 +15263,48,12.75,8,0.0 +15263,5,21.35,30,0.0 +15263,63,43.9,39,0.0 +15263,2,19,39,0.0 +15263,10,31,43,0.0 +15263,77,13,14,0.0 +15263,47,9.5,34,0.0 +15263,30,25.89,37,0.0 +15263,3,10,39,0.0 +15263,69,36,13,0.0 +15263,32,32,30,0.0 +15263,24,4.5,26,0.0 +15263,54,7.45,41,0.0 +15263,75,7.75,8,0.0 +15263,11,21,9,0.0 +15263,25,14,21,0.0 +15263,17,39,28,0.0 +15263,57,19.5,41,0.0 +15263,38,263.5,42,0.0 +15263,66,17,9,0.0 +15263,61,28.5,10,0.0 +15263,67,14,32,0.0 +15263,14,23.25,21,0.0 +15263,33,2.5,28,0.0 +15263,20,81,25,0.0 +15264,30,25.89,37,0.0 +15264,8,40,36,0.0 +15264,7,30,9,0.0 +15264,77,13,43,0.0 +15264,59,55,4,0.0 +15264,12,38,50,0.0 +15264,14,23.25,31,0.0 +15264,3,10,24,0.0 +15264,18,62.5,1,0.0 +15264,19,9.2,45,0.0 +15264,40,18.4,8,0.0 +15264,1,18,3,0.0 +15264,35,18,26,0.0 +15264,17,39,40,0.0 +15264,4,22,21,0.0 +15264,24,4.5,31,0.0 +15264,43,46,34,0.0 +15264,71,21.5,37,0.0 +15264,52,7,6,0.0 +15264,66,17,16,0.0 +15264,45,9.5,45,0.0 +15264,63,43.9,12,0.0 +15264,11,21,37,0.0 +15264,36,19,30,0.0 +15264,57,19.5,48,0.0 +15264,10,31,6,0.0 +15264,65,21.05,22,0.0 +15264,54,7.45,21,0.0 +15264,23,9,11,0.0 +15264,38,263.5,46,0.0 +15264,29,123.79,47,0.0 +15264,16,17.45,2,0.0 +15264,74,10,22,0.0 +15264,69,36,36,0.0 +15264,68,12.5,20,0.0 +15264,37,26,38,0.0 +15264,22,21,46,0.0 +15264,47,9.5,27,0.0 +15264,25,14,9,0.0 +15264,21,10,30,0.0 +15264,67,14,31,0.0 +15264,41,9.65,26,0.0 +15264,5,21.35,43,0.0 +15264,26,31.23,34,0.0 +15264,39,18,30,0.0 +15264,6,25,4,0.0 +15264,15,15.5,26,0.0 +15264,2,19,24,0.0 +15264,20,81,36,0.0 +15264,42,14,18,0.0 +15264,27,43.9,9,0.0 +15264,44,19.45,37,0.0 +15264,58,13.25,40,0.0 +15264,61,28.5,31,0.0 +15264,28,45.6,25,0.0 +15264,48,12.75,12,0.0 +15264,32,32,48,0.0 +15264,51,53,8,0.0 +15264,64,33.25,40,0.0 +15264,50,16.25,49,0.0 +15264,13,6,16,0.0 +15264,49,20,13,0.0 +15264,56,38,50,0.0 +15264,31,12.5,47,0.0 +15264,34,14,38,0.0 +15264,55,24,9,0.0 +15264,76,18,39,0.0 +15265,60,34,29,0.0 +15265,25,14,39,0.0 +15265,6,25,49,0.0 +15265,56,38,6,0.0 +15265,47,9.5,33,0.0 +15265,62,49.3,34,0.0 +15265,28,45.6,26,0.0 +15265,9,97,18,0.0 +15265,70,15,2,0.0 +15265,67,14,33,0.0 +15265,65,21.05,14,0.0 +15265,36,19,7,0.0 +15265,64,33.25,12,0.0 +15265,13,6,42,0.0 +15265,53,32.8,44,0.0 +15266,26,31.23,6,0.0 +15266,5,21.35,2,0.0 +15266,6,25,20,0.0 +15266,11,21,7,0.0 +15266,52,7,40,0.0 +15266,20,81,16,0.0 +15266,63,43.9,43,0.0 +15266,30,25.89,20,0.0 +15266,2,19,39,0.0 +15266,44,19.45,42,0.0 +15266,64,33.25,7,0.0 +15266,37,26,12,0.0 +15266,57,19.5,21,0.0 +15266,48,12.75,5,0.0 +15266,43,46,31,0.0 +15266,71,21.5,19,0.0 +15266,77,13,35,0.0 +15266,19,9.2,19,0.0 +15266,9,97,3,0.0 +15266,39,18,27,0.0 +15266,49,20,35,0.0 +15266,33,2.5,48,0.0 +15266,51,53,17,0.0 +15266,14,23.25,31,0.0 +15266,47,9.5,7,0.0 +15266,16,17.45,47,0.0 +15266,36,19,28,0.0 +15266,62,49.3,7,0.0 +15266,73,15,21,0.0 +15266,17,39,32,0.0 +15266,27,43.9,38,0.0 +15266,38,263.5,23,0.0 +15266,60,34,49,0.0 +15266,10,31,19,0.0 +15266,66,17,38,0.0 +15266,67,14,33,0.0 +15266,56,38,22,0.0 +15266,53,32.8,41,0.0 +15266,65,21.05,7,0.0 +15266,74,10,46,0.0 +15266,29,123.79,26,0.0 +15266,18,62.5,40,0.0 +15266,70,15,13,0.0 +15266,22,21,45,0.0 +15266,34,14,8,0.0 +15266,25,14,17,0.0 +15266,58,13.25,3,0.0 +15266,69,36,19,0.0 +15266,55,24,48,0.0 +15266,3,10,24,0.0 +15266,32,32,25,0.0 +15266,1,18,1,0.0 +15266,15,15.5,49,0.0 +15266,40,18.4,26,0.0 +15266,8,40,29,0.0 +15266,61,28.5,18,0.0 +15266,76,18,48,0.0 +15266,28,45.6,26,0.0 +15266,13,6,23,0.0 +15266,59,55,8,0.0 +15266,41,9.65,19,0.0 +15266,21,10,22,0.0 +15266,12,38,48,0.0 +15266,54,7.45,14,0.0 +15266,24,4.5,23,0.0 +15266,50,16.25,7,0.0 +15266,31,12.5,31,0.0 +15266,4,22,25,0.0 +15266,45,9.5,27,0.0 +15266,75,7.75,24,0.0 +15266,42,14,36,0.0 +15266,23,9,1,0.0 +15266,7,30,24,0.0 +15266,35,18,3,0.0 +15267,62,49.3,14,0.0 +15267,7,30,35,0.0 +15267,38,263.5,48,0.0 +15267,30,25.89,43,0.0 +15267,35,18,6,0.0 +15267,17,39,25,0.0 +15267,51,53,1,0.0 +15267,1,18,46,0.0 +15267,18,62.5,30,0.0 +15267,48,12.75,44,0.0 +15267,4,22,46,0.0 +15267,16,17.45,25,0.0 +15267,47,9.5,23,0.0 +15267,13,6,50,0.0 +15267,22,21,25,0.0 +15267,36,19,8,0.0 +15267,65,21.05,20,0.0 +15267,73,15,33,0.0 +15267,77,13,27,0.0 +15267,44,19.45,45,0.0 +15267,72,34.8,46,0.0 +15267,75,7.75,10,0.0 +15267,20,81,11,0.0 +15267,24,4.5,38,0.0 +15267,56,38,38,0.0 +15267,23,9,11,0.0 +15267,74,10,28,0.0 +15267,19,9.2,43,0.0 +15267,6,25,2,0.0 +15267,53,32.8,9,0.0 +15267,2,19,33,0.0 +15267,59,55,15,0.0 +15267,37,26,4,0.0 +15267,8,40,36,0.0 +15267,29,123.79,40,0.0 +15267,41,9.65,8,0.0 +15267,54,7.45,35,0.0 +15267,68,12.5,35,0.0 +15267,3,10,22,0.0 +15267,61,28.5,15,0.0 +15267,60,34,46,0.0 +15267,64,33.25,18,0.0 +15267,46,12,20,0.0 +15267,76,18,9,0.0 +15267,15,15.5,34,0.0 +15267,28,45.6,37,0.0 +15267,11,21,48,0.0 +15267,10,31,14,0.0 +15267,45,9.5,45,0.0 +15267,27,43.9,7,0.0 +15267,43,46,35,0.0 +15267,12,38,6,0.0 +15267,69,36,39,0.0 +15267,42,14,50,0.0 +15267,55,24,9,0.0 +15267,25,14,23,0.0 +15267,57,19.5,15,0.0 +15267,63,43.9,32,0.0 +15267,31,12.5,34,0.0 +15267,67,14,34,0.0 +15267,9,97,46,0.0 +15267,49,20,26,0.0 +15267,40,18.4,38,0.0 +15267,50,16.25,49,0.0 +15267,39,18,40,0.0 +15267,34,14,28,0.0 +15267,52,7,15,0.0 +15267,14,23.25,48,0.0 +15267,70,15,33,0.0 +15268,45,9.5,46,0.0 +15268,12,38,22,0.0 +15268,5,21.35,6,0.0 +15268,39,18,33,0.0 +15268,36,19,49,0.0 +15268,18,62.5,33,0.0 +15268,31,12.5,25,0.0 +15268,29,123.79,40,0.0 +15268,41,9.65,40,0.0 +15268,20,81,43,0.0 +15268,15,15.5,9,0.0 +15268,23,9,37,0.0 +15268,19,9.2,19,0.0 +15268,25,14,44,0.0 +15268,62,49.3,22,0.0 +15268,55,24,1,0.0 +15268,44,19.45,27,0.0 +15268,14,23.25,7,0.0 +15268,57,19.5,39,0.0 +15268,40,18.4,29,0.0 +15268,38,263.5,47,0.0 +15268,37,26,20,0.0 +15268,59,55,6,0.0 +15269,55,24,17,0.0 +15269,19,9.2,1,0.0 +15269,26,31.23,12,0.0 +15269,25,14,27,0.0 +15269,73,15,29,0.0 +15269,61,28.5,47,0.0 +15269,22,21,35,0.0 +15269,37,26,9,0.0 +15269,8,40,29,0.0 +15269,60,34,1,0.0 +15269,65,21.05,46,0.0 +15269,14,23.25,47,0.0 +15269,40,18.4,21,0.0 +15269,74,10,43,0.0 +15269,20,81,3,0.0 +15269,18,62.5,46,0.0 +15269,54,7.45,43,0.0 +15269,29,123.79,5,0.0 +15269,2,19,20,0.0 +15269,45,9.5,17,0.0 +15269,71,21.5,13,0.0 +15269,1,18,4,0.0 +15269,7,30,33,0.0 +15269,52,7,21,0.0 +15269,41,9.65,36,0.0 +15269,9,97,32,0.0 +15269,30,25.89,29,0.0 +15269,49,20,39,0.0 +15269,28,45.6,32,0.0 +15269,59,55,40,0.0 +15269,67,14,6,0.0 +15269,58,13.25,13,0.0 +15269,27,43.9,15,0.0 +15269,42,14,28,0.0 +15269,63,43.9,38,0.0 +15269,70,15,43,0.0 +15269,50,16.25,21,0.0 +15269,64,33.25,14,0.0 +15269,68,12.5,21,0.0 +15269,72,34.8,35,0.0 +15269,10,31,23,0.0 +15269,75,7.75,25,0.0 +15269,56,38,25,0.0 +15269,15,15.5,31,0.0 +15269,32,32,25,0.0 +15269,6,25,15,0.0 +15269,31,12.5,6,0.0 +15269,66,17,47,0.0 +15269,46,12,35,0.0 +15269,12,38,45,0.0 +15269,13,6,33,0.0 +15269,23,9,34,0.0 +15269,77,13,15,0.0 +15269,24,4.5,42,0.0 +15269,47,9.5,29,0.0 +15269,35,18,47,0.0 +15269,36,19,21,0.0 +15269,53,32.8,17,0.0 +15270,19,9.2,41,0.0 +15270,49,20,49,0.0 +15270,33,2.5,39,0.0 +15270,55,24,11,0.0 +15270,31,12.5,47,0.0 +15270,44,19.45,40,0.0 +15270,1,18,49,0.0 +15270,16,17.45,10,0.0 +15270,20,81,22,0.0 +15270,76,18,3,0.0 +15270,11,21,21,0.0 +15270,66,17,48,0.0 +15270,62,49.3,5,0.0 +15270,75,7.75,8,0.0 +15270,9,97,32,0.0 +15270,12,38,33,0.0 +15270,73,15,44,0.0 +15270,22,21,40,0.0 +15270,30,25.89,10,0.0 +15270,10,31,22,0.0 +15270,40,18.4,36,0.0 +15270,7,30,5,0.0 +15270,4,22,39,0.0 +15270,43,46,24,0.0 +15270,58,13.25,6,0.0 +15270,38,263.5,22,0.0 +15270,60,34,40,0.0 +15270,34,14,44,0.0 +15270,63,43.9,3,0.0 +15270,5,21.35,16,0.0 +15271,60,34,50,0.0 +15271,30,25.89,19,0.0 +15271,50,16.25,9,0.0 +15271,26,31.23,25,0.0 +15271,19,9.2,46,0.0 +15271,24,4.5,22,0.0 +15271,40,18.4,41,0.0 +15271,36,19,8,0.0 +15271,66,17,41,0.0 +15271,21,10,17,0.0 +15271,17,39,22,0.0 +15271,48,12.75,6,0.0 +15271,37,26,20,0.0 +15271,5,21.35,14,0.0 +15271,7,30,8,0.0 +15271,45,9.5,36,0.0 +15271,20,81,22,0.0 +15271,72,34.8,50,0.0 +15271,18,62.5,44,0.0 +15271,73,15,36,0.0 +15271,62,49.3,37,0.0 +15271,70,15,21,0.0 +15271,74,10,37,0.0 +15271,52,7,41,0.0 +15271,27,43.9,4,0.0 +15271,56,38,38,0.0 +15271,9,97,30,0.0 +15271,58,13.25,49,0.0 +15271,69,36,32,0.0 +15271,12,38,42,0.0 +15271,43,46,26,0.0 +15271,75,7.75,27,0.0 +15271,63,43.9,44,0.0 +15271,11,21,18,0.0 +15271,39,18,35,0.0 +15271,53,32.8,22,0.0 +15272,43,46,23,0.0 +15272,35,18,37,0.0 +15272,39,18,48,0.0 +15272,46,12,23,0.0 +15272,14,23.25,18,0.0 +15272,16,17.45,15,0.0 +15272,37,26,26,0.0 +15272,18,62.5,2,0.0 +15272,21,10,36,0.0 +15272,64,33.25,21,0.0 +15272,15,15.5,5,0.0 +15272,49,20,39,0.0 +15272,42,14,42,0.0 +15272,47,9.5,24,0.0 +15272,72,34.8,7,0.0 +15272,75,7.75,45,0.0 +15272,36,19,4,0.0 +15272,63,43.9,21,0.0 +15272,30,25.89,48,0.0 +15272,33,2.5,6,0.0 +15272,73,15,26,0.0 +15272,26,31.23,33,0.0 +15272,4,22,18,0.0 +15272,53,32.8,47,0.0 +15272,5,21.35,48,0.0 +15272,23,9,21,0.0 +15272,77,13,20,0.0 +15272,17,39,24,0.0 +15272,58,13.25,46,0.0 +15272,41,9.65,34,0.0 +15272,20,81,36,0.0 +15272,66,17,16,0.0 +15272,76,18,13,0.0 +15273,37,26,15,0.0 +15273,10,31,18,0.0 +15273,19,9.2,40,0.0 +15273,13,6,50,0.0 +15273,38,263.5,37,0.0 +15273,66,17,4,0.0 +15273,57,19.5,32,0.0 +15273,22,21,38,0.0 +15273,40,18.4,30,0.0 +15273,47,9.5,14,0.0 +15273,41,9.65,13,0.0 +15273,31,12.5,48,0.0 +15273,43,46,48,0.0 +15273,33,2.5,21,0.0 +15273,18,62.5,11,0.0 +15273,61,28.5,44,0.0 +15273,39,18,8,0.0 +15273,24,4.5,43,0.0 +15273,8,40,31,0.0 +15273,1,18,4,0.0 +15273,70,15,1,0.0 +15273,7,30,44,0.0 +15273,29,123.79,14,0.0 +15273,26,31.23,27,0.0 +15274,48,12.75,41,0.0 +15274,30,25.89,9,0.0 +15274,1,18,34,0.0 +15274,59,55,7,0.0 +15274,17,39,47,0.0 +15274,55,24,25,0.0 +15274,67,14,38,0.0 +15274,23,9,47,0.0 +15274,4,22,33,0.0 +15274,33,2.5,12,0.0 +15274,13,6,22,0.0 +15275,34,14,22,0.0 +15275,57,19.5,12,0.0 +15275,33,2.5,12,0.0 +15275,23,9,16,0.0 +15275,16,17.45,27,0.0 +15275,8,40,38,0.0 +15275,20,81,25,0.0 +15275,6,25,10,0.0 +15275,12,38,5,0.0 +15275,11,21,49,0.0 +15275,9,97,12,0.0 +15275,58,13.25,21,0.0 +15275,17,39,44,0.0 +15275,40,18.4,42,0.0 +15275,67,14,19,0.0 +15275,66,17,13,0.0 +15275,45,9.5,26,0.0 +15275,13,6,49,0.0 +15275,28,45.6,12,0.0 +15275,60,34,16,0.0 +15275,64,33.25,9,0.0 +15275,3,10,24,0.0 +15275,51,53,21,0.0 +15275,2,19,32,0.0 +15275,38,263.5,39,0.0 +15275,74,10,25,0.0 +15275,52,7,10,0.0 +15275,46,12,31,0.0 +15275,24,4.5,4,0.0 +15275,49,20,43,0.0 +15275,14,23.25,42,0.0 +15275,26,31.23,17,0.0 +15275,61,28.5,50,0.0 +15275,71,21.5,47,0.0 +15275,19,9.2,24,0.0 +15275,36,19,15,0.0 +15275,35,18,34,0.0 +15275,55,24,5,0.0 +15275,68,12.5,47,0.0 +15275,42,14,17,0.0 +15275,48,12.75,9,0.0 +15275,37,26,45,0.0 +15275,76,18,8,0.0 +15275,47,9.5,27,0.0 +15275,22,21,6,0.0 +15275,7,30,40,0.0 +15275,63,43.9,1,0.0 +15275,15,15.5,31,0.0 +15275,77,13,12,0.0 +15275,70,15,29,0.0 +15275,62,49.3,9,0.0 +15275,29,123.79,6,0.0 +15275,75,7.75,24,0.0 +15275,44,19.45,30,0.0 +15275,41,9.65,26,0.0 +15275,30,25.89,5,0.0 +15275,59,55,20,0.0 +15275,50,16.25,42,0.0 +15275,21,10,10,0.0 +15275,31,12.5,23,0.0 +15275,32,32,16,0.0 +15275,53,32.8,26,0.0 +15275,43,46,38,0.0 +15275,1,18,38,0.0 +15275,10,31,29,0.0 +15275,5,21.35,32,0.0 +15275,65,21.05,26,0.0 +15275,39,18,9,0.0 +15275,72,34.8,8,0.0 +15275,73,15,47,0.0 +15275,4,22,26,0.0 +15276,55,24,24,0.0 +15276,5,21.35,43,0.0 +15276,41,9.65,32,0.0 +15276,72,34.8,34,0.0 +15276,44,19.45,27,0.0 +15276,34,14,23,0.0 +15276,18,62.5,24,0.0 +15276,63,43.9,17,0.0 +15276,73,15,46,0.0 +15276,42,14,47,0.0 +15276,19,9.2,10,0.0 +15276,30,25.89,48,0.0 +15276,45,9.5,34,0.0 +15276,8,40,32,0.0 +15276,54,7.45,41,0.0 +15276,29,123.79,13,0.0 +15276,23,9,45,0.0 +15276,75,7.75,43,0.0 +15276,67,14,16,0.0 +15276,62,49.3,16,0.0 +15276,58,13.25,26,0.0 +15276,39,18,9,0.0 +15276,15,15.5,40,0.0 +15276,21,10,44,0.0 +15276,27,43.9,18,0.0 +15276,66,17,11,0.0 +15276,26,31.23,1,0.0 +15276,16,17.45,36,0.0 +15276,25,14,18,0.0 +15276,47,9.5,41,0.0 +15276,24,4.5,13,0.0 +15276,28,45.6,48,0.0 +15276,77,13,8,0.0 +15276,9,97,13,0.0 +15276,68,12.5,38,0.0 +15276,4,22,50,0.0 +15276,49,20,41,0.0 +15276,46,12,44,0.0 +15276,2,19,2,0.0 +15276,65,21.05,29,0.0 +15276,64,33.25,20,0.0 +15276,43,46,39,0.0 +15276,1,18,1,0.0 +15276,13,6,15,0.0 +15276,11,21,1,0.0 +15276,69,36,6,0.0 +15276,74,10,49,0.0 +15276,57,19.5,49,0.0 +15276,37,26,38,0.0 +15276,32,32,33,0.0 +15276,7,30,16,0.0 +15276,36,19,49,0.0 +15276,60,34,41,0.0 +15276,56,38,7,0.0 +15276,70,15,48,0.0 +15276,76,18,20,0.0 +15276,20,81,7,0.0 +15276,14,23.25,4,0.0 +15276,40,18.4,11,0.0 +15276,61,28.5,23,0.0 +15276,6,25,42,0.0 +15276,53,32.8,2,0.0 +15276,22,21,21,0.0 +15276,17,39,23,0.0 +15276,31,12.5,23,0.0 +15276,59,55,23,0.0 +15276,35,18,27,0.0 +15276,10,31,33,0.0 +15276,12,38,1,0.0 +15276,50,16.25,4,0.0 +15276,51,53,36,0.0 +15276,71,21.5,15,0.0 +15276,52,7,25,0.0 +15277,29,123.79,13,0.0 +15277,32,32,37,0.0 +15277,76,18,24,0.0 +15277,5,21.35,18,0.0 +15277,45,9.5,32,0.0 +15277,25,14,26,0.0 +15277,41,9.65,19,0.0 +15277,62,49.3,1,0.0 +15277,67,14,49,0.0 +15277,69,36,15,0.0 +15277,31,12.5,28,0.0 +15277,6,25,14,0.0 +15277,34,14,4,0.0 +15277,7,30,24,0.0 +15277,54,7.45,21,0.0 +15277,74,10,21,0.0 +15277,39,18,46,0.0 +15277,10,31,10,0.0 +15277,56,38,39,0.0 +15277,51,53,21,0.0 +15277,3,10,8,0.0 +15277,44,19.45,26,0.0 +15277,64,33.25,3,0.0 +15277,63,43.9,7,0.0 +15277,73,15,11,0.0 +15277,43,46,16,0.0 +15277,70,15,29,0.0 +15277,15,15.5,35,0.0 +15277,68,12.5,30,0.0 +15277,53,32.8,12,0.0 +15277,42,14,34,0.0 +15277,72,34.8,36,0.0 +15277,17,39,1,0.0 +15277,46,12,48,0.0 +15277,36,19,8,0.0 +15277,11,21,40,0.0 +15277,30,25.89,17,0.0 +15278,2,19,12,0.0 +15278,36,19,27,0.0 +15278,58,13.25,11,0.0 +15278,16,17.45,21,0.0 +15278,4,22,24,0.0 +15278,51,53,45,0.0 +15278,1,18,44,0.0 +15278,48,12.75,27,0.0 +15278,54,7.45,26,0.0 +15278,6,25,46,0.0 +15278,67,14,18,0.0 +15278,46,12,48,0.0 +15278,11,21,1,0.0 +15278,44,19.45,33,0.0 +15278,62,49.3,38,0.0 +15278,8,40,40,0.0 +15278,55,24,9,0.0 +15278,47,9.5,41,0.0 +15278,52,7,1,0.0 +15278,60,34,15,0.0 +15278,71,21.5,39,0.0 +15278,40,18.4,7,0.0 +15278,35,18,50,0.0 +15278,43,46,40,0.0 +15278,15,15.5,4,0.0 +15278,7,30,10,0.0 +15278,64,33.25,4,0.0 +15278,28,45.6,23,0.0 +15278,33,2.5,36,0.0 +15278,63,43.9,50,0.0 +15278,59,55,11,0.0 +15278,20,81,23,0.0 +15278,75,7.75,42,0.0 +15278,49,20,34,0.0 +15279,27,43.9,25,0.0 +15279,52,7,5,0.0 +15279,44,19.45,35,0.0 +15279,58,13.25,9,0.0 +15279,50,16.25,21,0.0 +15279,32,32,33,0.0 +15279,25,14,21,0.0 +15279,66,17,16,0.0 +15279,68,12.5,12,0.0 +15279,42,14,28,0.0 +15279,61,28.5,50,0.0 +15279,8,40,35,0.0 +15279,11,21,9,0.0 +15279,10,31,18,0.0 +15280,68,12.5,21,0.0 +15280,42,14,39,0.0 +15280,60,34,42,0.0 +15280,66,17,13,0.0 +15280,61,28.5,30,0.0 +15280,58,13.25,30,0.0 +15280,65,21.05,12,0.0 +15280,55,24,39,0.0 +15280,23,9,24,0.0 +15280,13,6,30,0.0 +15280,45,9.5,35,0.0 +15280,32,32,12,0.0 +15280,16,17.45,49,0.0 +15280,74,10,42,0.0 +15280,48,12.75,50,0.0 +15280,7,30,36,0.0 +15280,21,10,37,0.0 +15280,1,18,46,0.0 +15280,44,19.45,37,0.0 +15280,34,14,37,0.0 +15280,56,38,16,0.0 +15280,11,21,15,0.0 +15280,75,7.75,45,0.0 +15280,18,62.5,14,0.0 +15280,15,15.5,48,0.0 +15280,40,18.4,25,0.0 +15280,51,53,16,0.0 +15280,50,16.25,32,0.0 +15280,5,21.35,45,0.0 +15280,77,13,3,0.0 +15280,59,55,17,0.0 +15280,62,49.3,32,0.0 +15280,72,34.8,10,0.0 +15280,33,2.5,43,0.0 +15280,38,263.5,32,0.0 +15280,73,15,32,0.0 +15280,64,33.25,11,0.0 +15280,30,25.89,32,0.0 +15280,39,18,16,0.0 +15280,17,39,18,0.0 +15280,36,19,34,0.0 +15280,22,21,41,0.0 +15280,8,40,31,0.0 +15280,9,97,18,0.0 +15280,63,43.9,27,0.0 +15280,29,123.79,46,0.0 +15280,76,18,7,0.0 +15280,6,25,18,0.0 +15280,3,10,14,0.0 +15280,24,4.5,18,0.0 +15280,12,38,11,0.0 +15280,41,9.65,30,0.0 +15280,57,19.5,28,0.0 +15280,67,14,22,0.0 +15280,49,20,16,0.0 +15280,47,9.5,12,0.0 +15280,25,14,6,0.0 +15280,35,18,17,0.0 +15280,71,21.5,47,0.0 +15280,2,19,48,0.0 +15280,69,36,26,0.0 +15280,19,9.2,39,0.0 +15280,14,23.25,33,0.0 +15280,70,15,31,0.0 +15280,53,32.8,26,0.0 +15280,37,26,27,0.0 +15280,27,43.9,20,0.0 +15280,10,31,14,0.0 +15280,46,12,6,0.0 +15280,20,81,25,0.0 +15280,52,7,43,0.0 +15280,4,22,4,0.0 +15281,27,43.9,1,0.0 +15281,29,123.79,35,0.0 +15281,16,17.45,7,0.0 +15281,7,30,27,0.0 +15281,71,21.5,36,0.0 +15281,22,21,32,0.0 +15281,76,18,47,0.0 +15281,5,21.35,4,0.0 +15281,10,31,28,0.0 +15281,35,18,43,0.0 +15281,21,10,6,0.0 +15281,59,55,22,0.0 +15281,33,2.5,38,0.0 +15281,72,34.8,26,0.0 +15281,57,19.5,15,0.0 +15281,26,31.23,16,0.0 +15281,40,18.4,22,0.0 +15281,50,16.25,19,0.0 +15281,64,33.25,39,0.0 +15281,9,97,31,0.0 +15281,66,17,13,0.0 +15281,47,9.5,1,0.0 +15281,6,25,45,0.0 +15281,8,40,33,0.0 +15281,53,32.8,38,0.0 +15281,49,20,9,0.0 +15281,11,21,29,0.0 +15281,15,15.5,42,0.0 +15281,77,13,37,0.0 +15281,70,15,25,0.0 +15281,4,22,17,0.0 +15281,75,7.75,17,0.0 +15281,73,15,22,0.0 +15281,56,38,24,0.0 +15281,69,36,13,0.0 +15281,74,10,1,0.0 +15281,28,45.6,8,0.0 +15281,39,18,28,0.0 +15281,63,43.9,44,0.0 +15281,17,39,30,0.0 +15281,20,81,8,0.0 +15281,38,263.5,2,0.0 +15281,58,13.25,11,0.0 +15281,3,10,13,0.0 +15281,24,4.5,19,0.0 +15281,32,32,5,0.0 +15281,13,6,37,0.0 +15281,54,7.45,3,0.0 +15281,68,12.5,47,0.0 +15281,44,19.45,22,0.0 +15281,14,23.25,9,0.0 +15281,25,14,6,0.0 +15281,18,62.5,12,0.0 +15282,49,20,29,0.0 +15282,10,31,18,0.0 +15282,48,12.75,20,0.0 +15282,39,18,15,0.0 +15282,70,15,36,0.0 +15282,23,9,12,0.0 +15282,11,21,26,0.0 +15282,43,46,11,0.0 +15282,41,9.65,11,0.0 +15282,32,32,9,0.0 +15282,77,13,15,0.0 +15282,69,36,38,0.0 +15282,44,19.45,38,0.0 +15282,3,10,39,0.0 +15282,30,25.89,43,0.0 +15282,35,18,19,0.0 +15282,34,14,48,0.0 +15282,18,62.5,14,0.0 +15282,76,18,16,0.0 +15282,54,7.45,20,0.0 +15282,64,33.25,20,0.0 +15282,14,23.25,28,0.0 +15282,61,28.5,9,0.0 +15282,63,43.9,3,0.0 +15282,51,53,12,0.0 +15282,40,18.4,6,0.0 +15282,1,18,44,0.0 +15282,8,40,34,0.0 +15282,72,34.8,24,0.0 +15282,62,49.3,1,0.0 +15282,71,21.5,22,0.0 +15282,45,9.5,24,0.0 +15282,50,16.25,4,0.0 +15282,31,12.5,13,0.0 +15282,42,14,22,0.0 +15282,57,19.5,30,0.0 +15282,37,26,24,0.0 +15282,21,10,31,0.0 +15282,52,7,22,0.0 +15282,4,22,30,0.0 +15282,56,38,17,0.0 +15282,53,32.8,46,0.0 +15282,17,39,34,0.0 +15282,66,17,27,0.0 +15282,33,2.5,17,0.0 +15282,75,7.75,42,0.0 +15282,68,12.5,26,0.0 +15282,9,97,41,0.0 +15282,60,34,3,0.0 +15282,59,55,20,0.0 +15282,7,30,13,0.0 +15282,20,81,34,0.0 +15282,13,6,31,0.0 +15282,67,14,14,0.0 +15282,26,31.23,6,0.0 +15282,19,9.2,38,0.0 +15282,2,19,32,0.0 +15282,28,45.6,46,0.0 +15282,25,14,31,0.0 +15282,46,12,16,0.0 +15282,24,4.5,28,0.0 +15282,73,15,49,0.0 +15282,65,21.05,9,0.0 +15282,15,15.5,45,0.0 +15282,47,9.5,19,0.0 +15282,5,21.35,29,0.0 +15282,12,38,36,0.0 +15282,58,13.25,16,0.0 +15282,74,10,44,0.0 +15282,36,19,30,0.0 +15282,38,263.5,16,0.0 +15282,27,43.9,28,0.0 +15282,16,17.45,33,0.0 +15282,55,24,46,0.0 +15282,29,123.79,28,0.0 +15282,6,25,3,0.0 +15282,22,21,45,0.0 +15283,38,263.5,14,0.0 +15283,56,38,16,0.0 +15283,69,36,34,0.0 +15283,12,38,4,0.0 +15283,29,123.79,7,0.0 +15283,58,13.25,6,0.0 +15283,6,25,46,0.0 +15283,26,31.23,24,0.0 +15283,5,21.35,27,0.0 +15283,60,34,13,0.0 +15283,27,43.9,40,0.0 +15283,8,40,40,0.0 +15283,44,19.45,26,0.0 +15283,75,7.75,13,0.0 +15283,13,6,24,0.0 +15283,37,26,18,0.0 +15283,71,21.5,23,0.0 +15283,17,39,43,0.0 +15283,48,12.75,35,0.0 +15283,42,14,24,0.0 +15283,20,81,14,0.0 +15283,10,31,40,0.0 +15283,77,13,4,0.0 +15283,65,21.05,28,0.0 +15283,14,23.25,24,0.0 +15283,70,15,27,0.0 +15283,31,12.5,26,0.0 +15283,76,18,43,0.0 +15283,43,46,40,0.0 +15283,36,19,9,0.0 +15283,25,14,21,0.0 +15283,15,15.5,13,0.0 +15284,63,43.9,19,0.0 +15284,61,28.5,32,0.0 +15284,74,10,13,0.0 +15284,77,13,10,0.0 +15284,53,32.8,19,0.0 +15284,30,25.89,27,0.0 +15284,64,33.25,37,0.0 +15284,46,12,24,0.0 +15284,56,38,9,0.0 +15284,37,26,2,0.0 +15284,18,62.5,11,0.0 +15284,23,9,11,0.0 +15284,69,36,40,0.0 +15284,38,263.5,12,0.0 +15284,28,45.6,39,0.0 +15284,33,2.5,17,0.0 +15284,59,55,24,0.0 +15284,47,9.5,20,0.0 +15284,66,17,25,0.0 +15284,48,12.75,44,0.0 +15284,14,23.25,9,0.0 +15284,68,12.5,31,0.0 +15284,70,15,41,0.0 +15284,40,18.4,44,0.0 +15284,9,97,4,0.0 +15284,32,32,22,0.0 +15284,42,14,27,0.0 +15284,20,81,29,0.0 +15284,29,123.79,13,0.0 +15284,45,9.5,36,0.0 +15284,15,15.5,13,0.0 +15284,8,40,26,0.0 +15284,10,31,1,0.0 +15284,1,18,26,0.0 +15284,2,19,8,0.0 +15284,3,10,6,0.0 +15284,34,14,34,0.0 +15284,25,14,49,0.0 +15284,6,25,40,0.0 +15284,35,18,12,0.0 +15284,24,4.5,19,0.0 +15284,7,30,26,0.0 +15284,75,7.75,39,0.0 +15284,16,17.45,26,0.0 +15285,72,34.8,33,0.0 +15285,57,19.5,16,0.0 +15285,75,7.75,42,0.0 +15285,68,12.5,36,0.0 +15285,30,25.89,24,0.0 +15285,52,7,8,0.0 +15285,15,15.5,17,0.0 +15285,3,10,3,0.0 +15285,29,123.79,31,0.0 +15285,9,97,15,0.0 +15285,41,9.65,38,0.0 +15285,62,49.3,50,0.0 +15285,53,32.8,4,0.0 +15285,23,9,13,0.0 +15285,12,38,30,0.0 +15285,31,12.5,24,0.0 +15285,65,21.05,4,0.0 +15285,64,33.25,3,0.0 +15285,56,38,17,0.0 +15285,55,24,7,0.0 +15285,22,21,20,0.0 +15285,59,55,12,0.0 +15285,21,10,37,0.0 +15285,69,36,13,0.0 +15285,34,14,28,0.0 +15285,67,14,34,0.0 +15285,36,19,24,0.0 +15285,13,6,47,0.0 +15285,63,43.9,31,0.0 +15285,16,17.45,1,0.0 +15285,10,31,50,0.0 +15285,14,23.25,11,0.0 +15285,50,16.25,3,0.0 +15285,70,15,22,0.0 +15285,47,9.5,50,0.0 +15285,74,10,38,0.0 +15285,25,14,46,0.0 +15285,77,13,36,0.0 +15285,39,18,38,0.0 +15285,37,26,2,0.0 +15285,24,4.5,46,0.0 +15285,4,22,1,0.0 +15285,28,45.6,35,0.0 +15285,6,25,41,0.0 +15285,7,30,9,0.0 +15285,26,31.23,34,0.0 +15285,20,81,48,0.0 +15285,48,12.75,23,0.0 +15285,8,40,4,0.0 +15285,60,34,2,0.0 +15285,35,18,17,0.0 +15285,51,53,29,0.0 +15285,11,21,18,0.0 +15285,18,62.5,44,0.0 +15285,58,13.25,10,0.0 +15285,33,2.5,19,0.0 +15285,49,20,31,0.0 +15285,38,263.5,11,0.0 +15285,71,21.5,41,0.0 +15285,32,32,48,0.0 +15285,61,28.5,8,0.0 +15285,2,19,2,0.0 +15286,39,18,32,0.0 +15286,6,25,30,0.0 +15286,45,9.5,21,0.0 +15286,50,16.25,3,0.0 +15286,56,38,15,0.0 +15286,51,53,43,0.0 +15286,40,18.4,38,0.0 +15286,3,10,28,0.0 +15286,1,18,37,0.0 +15286,71,21.5,18,0.0 +15286,70,15,48,0.0 +15286,13,6,45,0.0 +15286,33,2.5,34,0.0 +15286,76,18,20,0.0 +15286,41,9.65,12,0.0 +15286,54,7.45,29,0.0 +15287,35,18,21,0.0 +15287,34,14,50,0.0 +15287,14,23.25,19,0.0 +15287,25,14,41,0.0 +15287,60,34,12,0.0 +15287,13,6,25,0.0 +15287,61,28.5,29,0.0 +15287,2,19,15,0.0 +15287,19,9.2,17,0.0 +15287,29,123.79,34,0.0 +15287,38,263.5,5,0.0 +15287,30,25.89,14,0.0 +15287,45,9.5,6,0.0 +15287,73,15,35,0.0 +15287,10,31,33,0.0 +15287,6,25,38,0.0 +15287,3,10,36,0.0 +15287,27,43.9,3,0.0 +15287,75,7.75,30,0.0 +15287,66,17,35,0.0 +15287,22,21,35,0.0 +15287,62,49.3,29,0.0 +15287,23,9,30,0.0 +15287,49,20,9,0.0 +15287,59,55,1,0.0 +15287,71,21.5,18,0.0 +15287,8,40,7,0.0 +15287,9,97,21,0.0 +15287,28,45.6,20,0.0 +15287,7,30,38,0.0 +15287,1,18,15,0.0 +15287,56,38,38,0.0 +15287,77,13,18,0.0 +15287,33,2.5,44,0.0 +15287,42,14,12,0.0 +15287,46,12,9,0.0 +15287,50,16.25,2,0.0 +15287,65,21.05,34,0.0 +15287,69,36,25,0.0 +15287,21,10,10,0.0 +15287,4,22,41,0.0 +15287,39,18,12,0.0 +15287,11,21,38,0.0 +15287,55,24,43,0.0 +15287,40,18.4,2,0.0 +15287,54,7.45,8,0.0 +15287,52,7,5,0.0 +15287,53,32.8,34,0.0 +15287,57,19.5,6,0.0 +15287,63,43.9,19,0.0 +15288,15,15.5,35,0.0 +15288,4,22,21,0.0 +15288,75,7.75,35,0.0 +15288,12,38,6,0.0 +15288,77,13,35,0.0 +15288,51,53,5,0.0 +15288,58,13.25,43,0.0 +15288,11,21,15,0.0 +15288,43,46,50,0.0 +15288,65,21.05,29,0.0 +15288,36,19,50,0.0 +15288,42,14,11,0.0 +15288,76,18,24,0.0 +15288,18,62.5,9,0.0 +15288,29,123.79,43,0.0 +15288,20,81,16,0.0 +15288,34,14,32,0.0 +15288,21,10,25,0.0 +15288,70,15,37,0.0 +15288,50,16.25,21,0.0 +15288,10,31,18,0.0 +15288,60,34,18,0.0 +15288,73,15,33,0.0 +15288,28,45.6,18,0.0 +15288,32,32,47,0.0 +15288,61,28.5,46,0.0 +15288,45,9.5,11,0.0 +15288,52,7,46,0.0 +15288,57,19.5,28,0.0 +15288,13,6,29,0.0 +15288,30,25.89,29,0.0 +15288,49,20,33,0.0 +15288,64,33.25,27,0.0 +15288,46,12,25,0.0 +15288,74,10,9,0.0 +15288,26,31.23,6,0.0 +15288,69,36,20,0.0 +15288,24,4.5,45,0.0 +15288,5,21.35,36,0.0 +15288,54,7.45,14,0.0 +15288,14,23.25,44,0.0 +15288,31,12.5,41,0.0 +15288,44,19.45,16,0.0 +15288,17,39,5,0.0 +15288,38,263.5,22,0.0 +15288,72,34.8,27,0.0 +15288,16,17.45,32,0.0 +15288,47,9.5,12,0.0 +15288,35,18,42,0.0 +15289,7,30,9,0.0 +15289,19,9.2,6,0.0 +15289,3,10,24,0.0 +15289,30,25.89,49,0.0 +15289,21,10,5,0.0 +15289,9,97,43,0.0 +15289,73,15,9,0.0 +15289,36,19,5,0.0 +15289,2,19,10,0.0 +15290,1,18,5,0.0 +15290,23,9,43,0.0 +15290,31,12.5,41,0.0 +15290,72,34.8,25,0.0 +15290,2,19,45,0.0 +15290,65,21.05,12,0.0 +15290,70,15,23,0.0 +15290,76,18,15,0.0 +15290,41,9.65,26,0.0 +15290,21,10,46,0.0 +15290,22,21,18,0.0 +15290,9,97,43,0.0 +15290,67,14,22,0.0 +15290,54,7.45,43,0.0 +15290,42,14,50,0.0 +15290,29,123.79,37,0.0 +15290,75,7.75,10,0.0 +15290,3,10,21,0.0 +15290,5,21.35,23,0.0 +15290,26,31.23,27,0.0 +15290,30,25.89,23,0.0 +15290,48,12.75,4,0.0 +15290,53,32.8,7,0.0 +15291,10,31,25,0.0 +15291,3,10,38,0.0 +15291,17,39,7,0.0 +15291,67,14,34,0.0 +15291,20,81,22,0.0 +15291,77,13,13,0.0 +15291,47,9.5,5,0.0 +15291,1,18,24,0.0 +15291,76,18,12,0.0 +15291,52,7,5,0.0 +15291,38,263.5,24,0.0 +15291,60,34,31,0.0 +15291,62,49.3,45,0.0 +15291,13,6,4,0.0 +15291,6,25,45,0.0 +15291,41,9.65,2,0.0 +15291,53,32.8,24,0.0 +15291,8,40,13,0.0 +15291,24,4.5,19,0.0 +15291,29,123.79,11,0.0 +15291,30,25.89,48,0.0 +15291,18,62.5,30,0.0 +15291,37,26,43,0.0 +15291,44,19.45,36,0.0 +15291,45,9.5,32,0.0 +15291,5,21.35,13,0.0 +15291,63,43.9,23,0.0 +15291,11,21,10,0.0 +15291,26,31.23,43,0.0 +15291,48,12.75,15,0.0 +15291,16,17.45,46,0.0 +15291,34,14,7,0.0 +15291,68,12.5,11,0.0 +15291,49,20,27,0.0 +15291,15,15.5,50,0.0 +15291,69,36,16,0.0 +15291,23,9,8,0.0 +15291,31,12.5,45,0.0 +15291,57,19.5,12,0.0 +15291,74,10,35,0.0 +15291,28,45.6,20,0.0 +15291,65,21.05,12,0.0 +15291,70,15,27,0.0 +15291,75,7.75,36,0.0 +15291,2,19,44,0.0 +15291,40,18.4,29,0.0 +15291,36,19,24,0.0 +15291,58,13.25,12,0.0 +15291,35,18,25,0.0 +15291,14,23.25,11,0.0 +15291,72,34.8,25,0.0 +15291,25,14,40,0.0 +15291,33,2.5,47,0.0 +15291,59,55,40,0.0 +15291,27,43.9,13,0.0 +15291,46,12,4,0.0 +15291,19,9.2,4,0.0 +15291,66,17,17,0.0 +15291,32,32,27,0.0 +15291,71,21.5,32,0.0 +15291,39,18,17,0.0 +15291,42,14,9,0.0 +15291,9,97,30,0.0 +15291,7,30,45,0.0 +15291,12,38,3,0.0 +15291,43,46,33,0.0 +15292,3,10,36,0.0 +15292,1,18,47,0.0 +15292,18,62.5,28,0.0 +15292,19,9.2,23,0.0 +15292,4,22,1,0.0 +15292,60,34,23,0.0 +15292,74,10,33,0.0 +15292,41,9.65,9,0.0 +15292,70,15,11,0.0 +15292,42,14,4,0.0 +15292,12,38,23,0.0 +15292,9,97,1,0.0 +15292,52,7,19,0.0 +15292,67,14,32,0.0 +15292,69,36,8,0.0 +15292,14,23.25,20,0.0 +15292,43,46,45,0.0 +15292,29,123.79,29,0.0 +15292,53,32.8,5,0.0 +15292,39,18,49,0.0 +15292,37,26,19,0.0 +15292,7,30,20,0.0 +15292,28,45.6,44,0.0 +15292,17,39,44,0.0 +15292,63,43.9,34,0.0 +15292,32,32,32,0.0 +15292,6,25,20,0.0 +15292,33,2.5,24,0.0 +15292,23,9,27,0.0 +15292,64,33.25,12,0.0 +15292,66,17,27,0.0 +15292,61,28.5,28,0.0 +15292,59,55,29,0.0 +15292,58,13.25,33,0.0 +15292,44,19.45,15,0.0 +15292,68,12.5,35,0.0 +15292,40,18.4,18,0.0 +15292,46,12,3,0.0 +15292,34,14,44,0.0 +15292,36,19,8,0.0 +15292,72,34.8,7,0.0 +15292,13,6,31,0.0 +15292,15,15.5,25,0.0 +15292,51,53,33,0.0 +15292,55,24,44,0.0 +15292,62,49.3,6,0.0 +15292,21,10,4,0.0 +15292,11,21,5,0.0 +15292,77,13,50,0.0 +15292,26,31.23,10,0.0 +15292,75,7.75,14,0.0 +15292,5,21.35,18,0.0 +15292,16,17.45,7,0.0 +15292,45,9.5,47,0.0 +15292,8,40,26,0.0 +15292,24,4.5,32,0.0 +15292,49,20,36,0.0 +15292,73,15,20,0.0 +15292,50,16.25,43,0.0 +15292,76,18,15,0.0 +15292,47,9.5,44,0.0 +15292,65,21.05,49,0.0 +15292,31,12.5,20,0.0 +15292,54,7.45,49,0.0 +15292,48,12.75,36,0.0 +15292,57,19.5,2,0.0 +15292,30,25.89,30,0.0 +15293,20,81,15,0.0 +15293,11,21,19,0.0 +15293,12,38,43,0.0 +15293,2,19,26,0.0 +15293,67,14,36,0.0 +15293,33,2.5,38,0.0 +15293,63,43.9,42,0.0 +15293,73,15,39,0.0 +15293,64,33.25,20,0.0 +15293,7,30,6,0.0 +15293,5,21.35,18,0.0 +15293,53,32.8,44,0.0 +15293,18,62.5,11,0.0 +15293,55,24,40,0.0 +15293,76,18,26,0.0 +15293,17,39,35,0.0 +15293,46,12,50,0.0 +15293,65,21.05,33,0.0 +15293,74,10,5,0.0 +15293,37,26,12,0.0 +15293,27,43.9,21,0.0 +15293,34,14,35,0.0 +15293,66,17,25,0.0 +15293,42,14,38,0.0 +15293,49,20,50,0.0 +15293,52,7,49,0.0 +15293,19,9.2,28,0.0 +15293,62,49.3,18,0.0 +15293,77,13,31,0.0 +15293,28,45.6,14,0.0 +15293,72,34.8,9,0.0 +15293,44,19.45,27,0.0 +15294,22,21,34,0.0 +15294,8,40,24,0.0 +15294,51,53,44,0.0 +15294,26,31.23,18,0.0 +15294,35,18,32,0.0 +15294,12,38,29,0.0 +15294,46,12,36,0.0 +15294,53,32.8,11,0.0 +15294,5,21.35,14,0.0 +15294,4,22,36,0.0 +15294,9,97,19,0.0 +15294,47,9.5,17,0.0 +15294,64,33.25,38,0.0 +15294,44,19.45,5,0.0 +15294,7,30,38,0.0 +15294,3,10,5,0.0 +15294,37,26,44,0.0 +15294,60,34,44,0.0 +15294,14,23.25,6,0.0 +15294,16,17.45,18,0.0 +15294,31,12.5,26,0.0 +15294,20,81,2,0.0 +15294,43,46,27,0.0 +15294,33,2.5,37,0.0 +15294,17,39,9,0.0 +15294,24,4.5,2,0.0 +15294,25,14,47,0.0 +15294,23,9,20,0.0 +15294,36,19,12,0.0 +15294,48,12.75,34,0.0 +15294,40,18.4,20,0.0 +15294,72,34.8,32,0.0 +15294,52,7,49,0.0 +15294,62,49.3,10,0.0 +15294,49,20,46,0.0 +15294,39,18,2,0.0 +15294,55,24,43,0.0 +15294,71,21.5,27,0.0 +15294,77,13,24,0.0 +15294,59,55,20,0.0 +15294,21,10,32,0.0 +15294,68,12.5,3,0.0 +15294,58,13.25,15,0.0 +15294,28,45.6,1,0.0 +15294,18,62.5,10,0.0 +15294,30,25.89,21,0.0 +15294,69,36,22,0.0 +15294,74,10,29,0.0 +15294,65,21.05,6,0.0 +15294,13,6,14,0.0 +15294,38,263.5,18,0.0 +15294,57,19.5,19,0.0 +15294,19,9.2,25,0.0 +15294,32,32,31,0.0 +15294,73,15,8,0.0 +15294,45,9.5,18,0.0 +15294,6,25,35,0.0 +15294,2,19,50,0.0 +15294,54,7.45,41,0.0 +15294,66,17,41,0.0 +15294,41,9.65,27,0.0 +15294,75,7.75,36,0.0 +15294,11,21,42,0.0 +15294,76,18,11,0.0 +15294,34,14,49,0.0 +15294,10,31,47,0.0 +15294,61,28.5,24,0.0 +15294,15,15.5,24,0.0 +15294,67,14,3,0.0 +15294,63,43.9,20,0.0 +15294,1,18,41,0.0 +15294,56,38,10,0.0 +15294,42,14,11,0.0 +15294,50,16.25,18,0.0 +15294,70,15,32,0.0 +15294,29,123.79,45,0.0 +15294,27,43.9,18,0.0 +15295,47,9.5,39,0.0 +15295,75,7.75,20,0.0 +15295,76,18,21,0.0 +15295,15,15.5,11,0.0 +15295,73,15,14,0.0 +15295,20,81,29,0.0 +15295,17,39,18,0.0 +15295,49,20,35,0.0 +15295,9,97,37,0.0 +15295,70,15,20,0.0 +15295,3,10,24,0.0 +15295,72,34.8,39,0.0 +15295,25,14,28,0.0 +15295,56,38,45,0.0 +15295,33,2.5,23,0.0 +15295,68,12.5,49,0.0 +15295,59,55,8,0.0 +15295,52,7,19,0.0 +15295,27,43.9,41,0.0 +15295,31,12.5,47,0.0 +15295,24,4.5,31,0.0 +15295,39,18,41,0.0 +15295,63,43.9,8,0.0 +15295,18,62.5,20,0.0 +15295,7,30,34,0.0 +15295,13,6,31,0.0 +15295,65,21.05,23,0.0 +15295,54,7.45,13,0.0 +15295,42,14,43,0.0 +15295,67,14,32,0.0 +15295,14,23.25,38,0.0 +15295,41,9.65,6,0.0 +15295,44,19.45,29,0.0 +15295,46,12,1,0.0 +15295,38,263.5,5,0.0 +15295,69,36,31,0.0 +15295,26,31.23,27,0.0 +15295,61,28.5,41,0.0 +15295,77,13,43,0.0 +15295,30,25.89,47,0.0 +15295,36,19,10,0.0 +15295,66,17,8,0.0 +15295,45,9.5,35,0.0 +15295,48,12.75,47,0.0 +15295,62,49.3,42,0.0 +15296,65,21.05,31,0.0 +15296,10,31,8,0.0 +15296,62,49.3,26,0.0 +15296,33,2.5,28,0.0 +15296,54,7.45,50,0.0 +15296,48,12.75,22,0.0 +15296,2,19,50,0.0 +15296,64,33.25,38,0.0 +15296,21,10,34,0.0 +15296,61,28.5,29,0.0 +15296,6,25,17,0.0 +15296,72,34.8,37,0.0 +15296,39,18,44,0.0 +15296,51,53,45,0.0 +15296,67,14,33,0.0 +15296,46,12,47,0.0 +15296,12,38,4,0.0 +15297,48,12.75,47,0.0 +15297,23,9,23,0.0 +15297,28,45.6,3,0.0 +15297,38,263.5,1,0.0 +15297,5,21.35,28,0.0 +15297,77,13,33,0.0 +15297,68,12.5,37,0.0 +15297,55,24,33,0.0 +15297,26,31.23,18,0.0 +15297,65,21.05,42,0.0 +15297,21,10,46,0.0 +15297,1,18,5,0.0 +15297,47,9.5,2,0.0 +15297,34,14,24,0.0 +15297,64,33.25,42,0.0 +15297,53,32.8,47,0.0 +15297,12,38,50,0.0 +15297,51,53,12,0.0 +15297,14,23.25,38,0.0 +15297,36,19,30,0.0 +15297,37,26,20,0.0 +15297,56,38,43,0.0 +15297,41,9.65,29,0.0 +15297,31,12.5,33,0.0 +15297,62,49.3,39,0.0 +15297,32,32,37,0.0 +15297,61,28.5,21,0.0 +15297,25,14,34,0.0 +15297,8,40,16,0.0 +15297,20,81,39,0.0 +15297,73,15,44,0.0 +15297,11,21,27,0.0 +15297,15,15.5,40,0.0 +15297,63,43.9,34,0.0 +15297,69,36,30,0.0 +15297,43,46,46,0.0 +15297,46,12,19,0.0 +15297,30,25.89,42,0.0 +15297,50,16.25,26,0.0 +15297,40,18.4,8,0.0 +15297,22,21,9,0.0 +15297,24,4.5,13,0.0 +15297,29,123.79,9,0.0 +15297,18,62.5,7,0.0 +15297,44,19.45,2,0.0 +15297,66,17,6,0.0 +15297,45,9.5,3,0.0 +15297,35,18,16,0.0 +15297,60,34,24,0.0 +15297,71,21.5,4,0.0 +15297,17,39,46,0.0 +15297,19,9.2,43,0.0 +15297,4,22,21,0.0 +15297,52,7,19,0.0 +15297,9,97,27,0.0 +15297,54,7.45,43,0.0 +15297,16,17.45,16,0.0 +15298,37,26,50,0.0 +15298,6,25,10,0.0 +15298,74,10,1,0.0 +15298,56,38,10,0.0 +15298,8,40,33,0.0 +15298,53,32.8,3,0.0 +15298,69,36,3,0.0 +15298,36,19,5,0.0 +15298,67,14,42,0.0 +15298,65,21.05,33,0.0 +15298,15,15.5,16,0.0 +15298,31,12.5,13,0.0 +15298,5,21.35,18,0.0 +15298,72,34.8,27,0.0 +15298,73,15,34,0.0 +15298,46,12,8,0.0 +15298,44,19.45,25,0.0 +15298,30,25.89,33,0.0 +15298,33,2.5,39,0.0 +15298,64,33.25,28,0.0 +15298,24,4.5,31,0.0 +15298,63,43.9,7,0.0 +15298,52,7,17,0.0 +15298,40,18.4,39,0.0 +15298,70,15,42,0.0 +15298,18,62.5,48,0.0 +15298,32,32,23,0.0 +15298,66,17,47,0.0 +15298,10,31,43,0.0 +15298,60,34,26,0.0 +15298,39,18,40,0.0 +15298,12,38,49,0.0 +15298,42,14,24,0.0 +15298,11,21,12,0.0 +15298,19,9.2,5,0.0 +15298,43,46,49,0.0 +15298,23,9,24,0.0 +15298,1,18,9,0.0 +15298,41,9.65,44,0.0 +15298,20,81,18,0.0 +15298,22,21,24,0.0 +15298,26,31.23,24,0.0 +15298,29,123.79,48,0.0 +15298,14,23.25,30,0.0 +15298,68,12.5,25,0.0 +15298,17,39,6,0.0 +15298,35,18,45,0.0 +15298,50,16.25,14,0.0 +15298,71,21.5,11,0.0 +15298,9,97,7,0.0 +15298,4,22,47,0.0 +15298,57,19.5,24,0.0 +15299,29,123.79,12,0.0 +15299,70,15,9,0.0 +15299,2,19,5,0.0 +15299,32,32,50,0.0 +15299,56,38,33,0.0 +15299,16,17.45,43,0.0 +15299,43,46,30,0.0 +15299,13,6,47,0.0 +15299,26,31.23,43,0.0 +15299,4,22,40,0.0 +15299,11,21,2,0.0 +15299,73,15,16,0.0 +15299,15,15.5,44,0.0 +15299,23,9,12,0.0 +15299,52,7,26,0.0 +15299,47,9.5,20,0.0 +15299,22,21,18,0.0 +15299,68,12.5,27,0.0 +15299,64,33.25,13,0.0 +15299,27,43.9,20,0.0 +15299,1,18,2,0.0 +15299,48,12.75,48,0.0 +15299,63,43.9,7,0.0 +15299,49,20,49,0.0 +15299,38,263.5,11,0.0 +15299,37,26,18,0.0 +15299,75,7.75,42,0.0 +15299,60,34,19,0.0 +15299,7,30,19,0.0 +15299,6,25,35,0.0 +15299,62,49.3,42,0.0 +15299,34,14,16,0.0 +15299,39,18,14,0.0 +15299,5,21.35,27,0.0 +15299,58,13.25,41,0.0 +15299,14,23.25,22,0.0 +15299,66,17,36,0.0 +15299,8,40,8,0.0 +15299,31,12.5,32,0.0 +15300,70,15,27,0.0 +15300,74,10,21,0.0 +15300,67,14,15,0.0 +15300,46,12,38,0.0 +15300,35,18,15,0.0 +15300,71,21.5,6,0.0 +15300,26,31.23,13,0.0 +15300,38,263.5,30,0.0 +15300,11,21,37,0.0 +15300,55,24,18,0.0 +15300,58,13.25,48,0.0 +15300,37,26,5,0.0 +15300,40,18.4,31,0.0 +15300,45,9.5,35,0.0 +15300,72,34.8,36,0.0 +15300,16,17.45,17,0.0 +15300,66,17,3,0.0 +15300,33,2.5,15,0.0 +15300,18,62.5,31,0.0 +15300,5,21.35,1,0.0 +15300,7,30,23,0.0 +15300,14,23.25,33,0.0 +15300,65,21.05,26,0.0 +15300,21,10,46,0.0 +15300,64,33.25,39,0.0 +15300,61,28.5,43,0.0 +15300,39,18,43,0.0 +15300,57,19.5,11,0.0 +15300,6,25,17,0.0 +15300,2,19,6,0.0 +15300,49,20,25,0.0 +15300,15,15.5,48,0.0 +15300,27,43.9,9,0.0 +15300,53,32.8,43,0.0 +15300,73,15,26,0.0 +15300,76,18,24,0.0 +15300,10,31,48,0.0 +15300,32,32,30,0.0 +15300,34,14,27,0.0 +15300,59,55,40,0.0 +15300,77,13,19,0.0 +15300,47,9.5,6,0.0 +15300,36,19,41,0.0 +15300,54,7.45,50,0.0 +15300,31,12.5,16,0.0 +15300,22,21,8,0.0 +15300,28,45.6,27,0.0 +15301,20,81,45,0.0 +15301,12,38,20,0.0 +15301,33,2.5,18,0.0 +15301,60,34,30,0.0 +15301,45,9.5,18,0.0 +15301,1,18,5,0.0 +15301,4,22,2,0.0 +15301,31,12.5,30,0.0 +15301,23,9,1,0.0 +15301,66,17,21,0.0 +15301,40,18.4,23,0.0 +15301,29,123.79,50,0.0 +15301,56,38,12,0.0 +15301,55,24,40,0.0 +15301,61,28.5,12,0.0 +15301,44,19.45,50,0.0 +15301,6,25,36,0.0 +15301,21,10,47,0.0 +15301,32,32,24,0.0 +15301,35,18,12,0.0 +15301,62,49.3,46,0.0 +15302,57,19.5,12,0.0 +15302,36,19,36,0.0 +15302,52,7,47,0.0 +15302,16,17.45,48,0.0 +15302,34,14,40,0.0 +15302,11,21,46,0.0 +15302,43,46,34,0.0 +15302,66,17,39,0.0 +15302,74,10,19,0.0 +15302,29,123.79,17,0.0 +15302,56,38,9,0.0 +15302,25,14,10,0.0 +15302,19,9.2,48,0.0 +15302,18,62.5,31,0.0 +15302,5,21.35,10,0.0 +15302,12,38,47,0.0 +15302,49,20,1,0.0 +15302,22,21,25,0.0 +15302,17,39,49,0.0 +15302,64,33.25,25,0.0 +15302,37,26,12,0.0 +15302,15,15.5,28,0.0 +15302,40,18.4,1,0.0 +15302,24,4.5,38,0.0 +15302,27,43.9,9,0.0 +15302,48,12.75,17,0.0 +15302,42,14,33,0.0 +15302,31,12.5,14,0.0 +15302,33,2.5,37,0.0 +15302,63,43.9,8,0.0 +15302,77,13,36,0.0 +15302,72,34.8,25,0.0 +15302,46,12,41,0.0 +15302,41,9.65,4,0.0 +15302,4,22,7,0.0 +15302,6,25,45,0.0 +15302,10,31,14,0.0 +15302,58,13.25,30,0.0 +15302,30,25.89,17,0.0 +15302,65,21.05,12,0.0 +15302,45,9.5,32,0.0 +15302,13,6,27,0.0 +15302,39,18,44,0.0 +15302,62,49.3,21,0.0 +15302,2,19,44,0.0 +15302,71,21.5,39,0.0 +15302,28,45.6,24,0.0 +15302,50,16.25,20,0.0 +15302,35,18,24,0.0 +15302,76,18,46,0.0 +15302,9,97,40,0.0 +15302,21,10,13,0.0 +15302,23,9,16,0.0 +15303,11,21,20,0.0 +15303,61,28.5,46,0.0 +15303,27,43.9,50,0.0 +15303,15,15.5,20,0.0 +15303,13,6,13,0.0 +15303,46,12,28,0.0 +15303,31,12.5,42,0.0 +15303,24,4.5,5,0.0 +15303,54,7.45,13,0.0 +15303,41,9.65,13,0.0 +15303,44,19.45,10,0.0 +15303,23,9,3,0.0 +15303,57,19.5,14,0.0 +15303,68,12.5,4,0.0 +15303,47,9.5,17,0.0 +15303,76,18,19,0.0 +15303,7,30,25,0.0 +15303,72,34.8,43,0.0 +15303,29,123.79,32,0.0 +15303,34,14,11,0.0 +15303,56,38,9,0.0 +15303,12,38,7,0.0 +15303,59,55,7,0.0 +15303,40,18.4,18,0.0 +15303,25,14,32,0.0 +15303,6,25,14,0.0 +15303,1,18,41,0.0 +15303,33,2.5,33,0.0 +15303,52,7,31,0.0 +15303,42,14,11,0.0 +15303,73,15,11,0.0 +15303,30,25.89,47,0.0 +15303,66,17,35,0.0 +15303,77,13,15,0.0 +15304,36,19,28,0.0 +15304,49,20,34,0.0 +15304,77,13,50,0.0 +15304,23,9,35,0.0 +15304,6,25,21,0.0 +15304,31,12.5,22,0.0 +15304,10,31,45,0.0 +15304,75,7.75,38,0.0 +15304,41,9.65,13,0.0 +15304,40,18.4,47,0.0 +15304,34,14,2,0.0 +15304,4,22,24,0.0 +15304,72,34.8,41,0.0 +15304,62,49.3,12,0.0 +15304,5,21.35,42,0.0 +15304,9,97,19,0.0 +15304,66,17,19,0.0 +15304,70,15,19,0.0 +15304,58,13.25,14,0.0 +15304,48,12.75,47,0.0 +15304,73,15,29,0.0 +15304,39,18,1,0.0 +15304,43,46,23,0.0 +15304,35,18,11,0.0 +15304,2,19,21,0.0 +15304,54,7.45,43,0.0 +15304,32,32,28,0.0 +15304,71,21.5,33,0.0 +15304,1,18,28,0.0 +15304,12,38,3,0.0 +15304,63,43.9,46,0.0 +15304,45,9.5,33,0.0 +15304,13,6,3,0.0 +15304,7,30,2,0.0 +15304,68,12.5,29,0.0 +15304,18,62.5,25,0.0 +15304,27,43.9,14,0.0 +15304,67,14,12,0.0 +15304,47,9.5,38,0.0 +15304,33,2.5,45,0.0 +15304,46,12,11,0.0 +15304,69,36,42,0.0 +15304,11,21,8,0.0 +15304,29,123.79,27,0.0 +15304,53,32.8,19,0.0 +15304,74,10,43,0.0 +15304,19,9.2,20,0.0 +15304,15,15.5,37,0.0 +15304,21,10,19,0.0 +15304,3,10,50,0.0 +15304,17,39,6,0.0 +15304,28,45.6,7,0.0 +15304,42,14,17,0.0 +15304,37,26,43,0.0 +15304,14,23.25,18,0.0 +15304,52,7,13,0.0 +15304,51,53,13,0.0 +15304,60,34,26,0.0 +15304,65,21.05,25,0.0 +15304,25,14,25,0.0 +15304,55,24,16,0.0 +15304,16,17.45,4,0.0 +15304,8,40,45,0.0 +15304,44,19.45,6,0.0 +15304,22,21,17,0.0 +15304,26,31.23,18,0.0 +15304,50,16.25,21,0.0 +15304,56,38,3,0.0 +15304,59,55,15,0.0 +15304,64,33.25,27,0.0 +15304,76,18,49,0.0 +15304,20,81,3,0.0 +15304,38,263.5,49,0.0 +15305,49,20,26,0.0 +15305,23,9,22,0.0 +15305,40,18.4,11,0.0 +15305,60,34,24,0.0 +15305,12,38,20,0.0 +15305,25,14,29,0.0 +15305,59,55,16,0.0 +15305,42,14,17,0.0 +15305,11,21,22,0.0 +15305,30,25.89,9,0.0 +15305,36,19,50,0.0 +15305,76,18,26,0.0 +15305,10,31,3,0.0 +15305,19,9.2,24,0.0 +15305,58,13.25,4,0.0 +15305,16,17.45,19,0.0 +15305,43,46,8,0.0 +15305,28,45.6,21,0.0 +15305,34,14,5,0.0 +15305,13,6,39,0.0 +15305,8,40,21,0.0 +15305,75,7.75,41,0.0 +15305,33,2.5,14,0.0 +15305,53,32.8,43,0.0 +15305,45,9.5,12,0.0 +15305,57,19.5,21,0.0 +15305,38,263.5,21,0.0 +15305,68,12.5,28,0.0 +15305,5,21.35,37,0.0 +15305,73,15,34,0.0 +15305,51,53,25,0.0 +15305,65,21.05,29,0.0 +15305,72,34.8,38,0.0 +15305,22,21,50,0.0 +15305,31,12.5,14,0.0 +15305,26,31.23,23,0.0 +15305,69,36,39,0.0 +15305,63,43.9,50,0.0 +15305,6,25,28,0.0 +15305,50,16.25,20,0.0 +15305,66,17,6,0.0 +15305,39,18,38,0.0 +15305,52,7,7,0.0 +15305,20,81,35,0.0 +15305,14,23.25,2,0.0 +15305,61,28.5,30,0.0 +15305,67,14,9,0.0 +15305,15,15.5,4,0.0 +15305,70,15,30,0.0 +15305,1,18,23,0.0 +15305,35,18,33,0.0 +15305,47,9.5,27,0.0 +15305,48,12.75,29,0.0 +15305,55,24,18,0.0 +15305,41,9.65,21,0.0 +15305,54,7.45,5,0.0 +15305,21,10,33,0.0 +15305,77,13,23,0.0 +15305,9,97,44,0.0 +15305,64,33.25,8,0.0 +15305,56,38,31,0.0 +15305,74,10,11,0.0 +15305,18,62.5,21,0.0 +15305,29,123.79,11,0.0 +15305,44,19.45,32,0.0 +15305,62,49.3,20,0.0 +15305,2,19,17,0.0 +15305,24,4.5,48,0.0 +15306,27,43.9,15,0.0 +15306,59,55,3,0.0 +15306,39,18,13,0.0 +15306,58,13.25,41,0.0 +15306,9,97,40,0.0 +15306,34,14,45,0.0 +15306,13,6,2,0.0 +15306,30,25.89,50,0.0 +15306,55,24,50,0.0 +15306,50,16.25,7,0.0 +15306,8,40,25,0.0 +15306,48,12.75,28,0.0 +15307,33,2.5,25,0.0 +15307,55,24,23,0.0 +15307,58,13.25,37,0.0 +15307,1,18,40,0.0 +15307,71,21.5,46,0.0 +15307,46,12,18,0.0 +15307,29,123.79,24,0.0 +15307,9,97,34,0.0 +15307,44,19.45,5,0.0 +15307,16,17.45,39,0.0 +15307,62,49.3,41,0.0 +15307,18,62.5,15,0.0 +15307,61,28.5,39,0.0 +15307,31,12.5,7,0.0 +15307,75,7.75,49,0.0 +15307,45,9.5,8,0.0 +15307,17,39,47,0.0 +15307,36,19,39,0.0 +15308,36,19,23,0.0 +15308,43,46,9,0.0 +15308,19,9.2,46,0.0 +15308,21,10,40,0.0 +15308,60,34,31,0.0 +15308,2,19,10,0.0 +15308,72,34.8,27,0.0 +15308,23,9,12,0.0 +15308,20,81,2,0.0 +15308,70,15,22,0.0 +15308,71,21.5,2,0.0 +15308,14,23.25,7,0.0 +15308,10,31,30,0.0 +15308,47,9.5,19,0.0 +15308,65,21.05,13,0.0 +15308,5,21.35,22,0.0 +15308,8,40,5,0.0 +15308,41,9.65,49,0.0 +15308,32,32,45,0.0 +15308,15,15.5,40,0.0 +15308,34,14,29,0.0 +15308,48,12.75,4,0.0 +15308,11,21,48,0.0 +15308,4,22,37,0.0 +15308,59,55,9,0.0 +15308,39,18,26,0.0 +15308,38,263.5,20,0.0 +15308,64,33.25,6,0.0 +15308,22,21,14,0.0 +15308,30,25.89,34,0.0 +15308,6,25,5,0.0 +15308,33,2.5,17,0.0 +15308,9,97,18,0.0 +15308,56,38,8,0.0 +15308,69,36,14,0.0 +15308,52,7,14,0.0 +15308,17,39,17,0.0 +15308,66,17,43,0.0 +15308,18,62.5,9,0.0 +15308,3,10,48,0.0 +15308,63,43.9,16,0.0 +15308,16,17.45,38,0.0 +15308,7,30,50,0.0 +15308,74,10,11,0.0 +15308,77,13,16,0.0 +15308,25,14,4,0.0 +15308,31,12.5,29,0.0 +15308,42,14,33,0.0 +15308,76,18,18,0.0 +15308,1,18,50,0.0 +15308,27,43.9,32,0.0 +15308,26,31.23,21,0.0 +15308,61,28.5,50,0.0 +15308,58,13.25,40,0.0 +15309,41,9.65,30,0.0 +15309,50,16.25,47,0.0 +15309,27,43.9,29,0.0 +15309,11,21,18,0.0 +15309,56,38,19,0.0 +15309,18,62.5,30,0.0 +15309,24,4.5,18,0.0 +15309,64,33.25,24,0.0 +15309,52,7,26,0.0 +15309,22,21,41,0.0 +15309,43,46,8,0.0 +15309,16,17.45,34,0.0 +15309,68,12.5,2,0.0 +15309,37,26,34,0.0 +15309,14,23.25,46,0.0 +15309,38,263.5,33,0.0 +15309,2,19,20,0.0 +15309,47,9.5,38,0.0 +15309,7,30,47,0.0 +15309,59,55,30,0.0 +15309,17,39,3,0.0 +15309,1,18,47,0.0 +15309,42,14,34,0.0 +15309,3,10,15,0.0 +15309,72,34.8,42,0.0 +15309,19,9.2,7,0.0 +15309,4,22,3,0.0 +15309,20,81,50,0.0 +15309,51,53,16,0.0 +15309,48,12.75,34,0.0 +15309,35,18,44,0.0 +15309,75,7.75,11,0.0 +15309,34,14,33,0.0 +15309,13,6,29,0.0 +15309,77,13,45,0.0 +15309,70,15,25,0.0 +15309,6,25,6,0.0 +15309,67,14,42,0.0 +15309,29,123.79,31,0.0 +15309,32,32,37,0.0 +15309,73,15,31,0.0 +15309,61,28.5,42,0.0 +15309,55,24,16,0.0 +15309,69,36,41,0.0 +15309,60,34,1,0.0 +15309,12,38,32,0.0 +15309,76,18,29,0.0 +15309,28,45.6,48,0.0 +15309,15,15.5,9,0.0 +15309,9,97,48,0.0 +15309,21,10,44,0.0 +15309,33,2.5,40,0.0 +15309,58,13.25,14,0.0 +15309,5,21.35,3,0.0 +15309,66,17,31,0.0 +15309,10,31,41,0.0 +15309,31,12.5,8,0.0 +15309,36,19,23,0.0 +15309,44,19.45,25,0.0 +15309,45,9.5,8,0.0 +15309,74,10,48,0.0 +15309,65,21.05,18,0.0 +15309,46,12,3,0.0 +15309,23,9,17,0.0 +15309,26,31.23,46,0.0 +15309,8,40,40,0.0 +15309,30,25.89,19,0.0 +15309,57,19.5,18,0.0 +15309,62,49.3,10,0.0 +15309,53,32.8,48,0.0 +15309,49,20,5,0.0 +15309,39,18,21,0.0 +15309,40,18.4,1,0.0 +15309,63,43.9,6,0.0 +15309,71,21.5,30,0.0 +15310,63,43.9,28,0.0 +15310,67,14,43,0.0 +15310,74,10,40,0.0 +15310,7,30,3,0.0 +15310,6,25,1,0.0 +15310,70,15,4,0.0 +15310,37,26,31,0.0 +15310,4,22,5,0.0 +15310,48,12.75,46,0.0 +15310,47,9.5,48,0.0 +15310,28,45.6,27,0.0 +15310,19,9.2,21,0.0 +15310,22,21,26,0.0 +15310,21,10,30,0.0 +15310,11,21,11,0.0 +15310,64,33.25,50,0.0 +15310,36,19,50,0.0 +15310,34,14,25,0.0 +15310,59,55,36,0.0 +15311,19,9.2,45,0.0 +15311,3,10,9,0.0 +15311,66,17,15,0.0 +15311,8,40,9,0.0 +15311,28,45.6,34,0.0 +15311,30,25.89,45,0.0 +15311,11,21,9,0.0 +15311,56,38,6,0.0 +15311,45,9.5,8,0.0 +15311,49,20,31,0.0 +15311,20,81,12,0.0 +15311,14,23.25,1,0.0 +15311,50,16.25,1,0.0 +15311,71,21.5,37,0.0 +15311,23,9,47,0.0 +15311,22,21,1,0.0 +15311,38,263.5,50,0.0 +15311,64,33.25,45,0.0 +15311,43,46,12,0.0 +15311,62,49.3,3,0.0 +15311,67,14,14,0.0 +15311,53,32.8,20,0.0 +15311,70,15,9,0.0 +15311,77,13,40,0.0 +15311,61,28.5,6,0.0 +15311,37,26,14,0.0 +15311,57,19.5,46,0.0 +15311,31,12.5,33,0.0 +15311,68,12.5,23,0.0 +15311,9,97,5,0.0 +15311,75,7.75,22,0.0 +15311,13,6,39,0.0 +15311,24,4.5,49,0.0 +15311,51,53,12,0.0 +15311,58,13.25,18,0.0 +15311,36,19,34,0.0 +15311,47,9.5,20,0.0 +15311,39,18,36,0.0 +15311,2,19,32,0.0 +15311,15,15.5,37,0.0 +15311,27,43.9,11,0.0 +15311,41,9.65,21,0.0 +15311,76,18,41,0.0 +15311,35,18,44,0.0 +15311,25,14,14,0.0 +15311,52,7,19,0.0 +15311,42,14,45,0.0 +15311,16,17.45,13,0.0 +15311,48,12.75,13,0.0 +15311,46,12,44,0.0 +15311,54,7.45,20,0.0 +15312,2,19,41,0.0 +15312,17,39,33,0.0 +15312,46,12,13,0.0 +15312,6,25,31,0.0 +15312,43,46,6,0.0 +15312,45,9.5,49,0.0 +15312,5,21.35,10,0.0 +15312,23,9,40,0.0 +15312,4,22,38,0.0 +15312,31,12.5,37,0.0 +15312,42,14,41,0.0 +15312,70,15,32,0.0 +15312,44,19.45,40,0.0 +15312,25,14,7,0.0 +15312,24,4.5,35,0.0 +15312,63,43.9,28,0.0 +15312,75,7.75,45,0.0 +15312,67,14,11,0.0 +15312,26,31.23,7,0.0 +15312,52,7,26,0.0 +15312,13,6,15,0.0 +15312,36,19,34,0.0 +15312,11,21,39,0.0 +15312,76,18,32,0.0 +15312,27,43.9,21,0.0 +15312,49,20,50,0.0 +15312,38,263.5,33,0.0 +15312,14,23.25,40,0.0 +15312,74,10,25,0.0 +15312,66,17,40,0.0 +15312,62,49.3,6,0.0 +15312,53,32.8,24,0.0 +15312,32,32,35,0.0 +15312,71,21.5,30,0.0 +15312,7,30,36,0.0 +15312,61,28.5,39,0.0 +15312,73,15,43,0.0 +15312,9,97,8,0.0 +15312,35,18,20,0.0 +15312,59,55,19,0.0 +15312,22,21,20,0.0 +15312,72,34.8,39,0.0 +15312,50,16.25,43,0.0 +15312,19,9.2,38,0.0 +15312,48,12.75,35,0.0 +15312,77,13,36,0.0 +15312,10,31,16,0.0 +15312,47,9.5,14,0.0 +15312,68,12.5,10,0.0 +15312,51,53,18,0.0 +15312,37,26,31,0.0 +15312,69,36,38,0.0 +15312,60,34,10,0.0 +15312,16,17.45,26,0.0 +15312,15,15.5,18,0.0 +15312,3,10,10,0.0 +15312,57,19.5,44,0.0 +15312,58,13.25,36,0.0 +15312,20,81,43,0.0 +15312,65,21.05,43,0.0 +15312,30,25.89,47,0.0 +15312,34,14,34,0.0 +15312,39,18,26,0.0 +15312,41,9.65,23,0.0 +15312,33,2.5,12,0.0 +15312,1,18,10,0.0 +15312,55,24,31,0.0 +15312,21,10,38,0.0 +15312,64,33.25,28,0.0 +15312,29,123.79,31,0.0 +15312,40,18.4,17,0.0 +15312,12,38,2,0.0 +15312,8,40,23,0.0 +15313,15,15.5,1,0.0 +15313,32,32,47,0.0 +15313,31,12.5,36,0.0 +15313,64,33.25,33,0.0 +15313,53,32.8,3,0.0 +15313,42,14,49,0.0 +15313,30,25.89,28,0.0 +15313,36,19,21,0.0 +15313,47,9.5,17,0.0 +15313,28,45.6,37,0.0 +15313,4,22,6,0.0 +15313,38,263.5,21,0.0 +15313,77,13,34,0.0 +15313,67,14,43,0.0 +15313,13,6,45,0.0 +15313,59,55,31,0.0 +15313,43,46,23,0.0 +15313,37,26,33,0.0 +15313,27,43.9,8,0.0 +15313,71,21.5,27,0.0 +15313,56,38,9,0.0 +15313,18,62.5,47,0.0 +15313,63,43.9,48,0.0 +15313,12,38,43,0.0 +15313,3,10,38,0.0 +15313,8,40,38,0.0 +15313,61,28.5,24,0.0 +15313,57,19.5,2,0.0 +15313,2,19,37,0.0 +15313,6,25,41,0.0 +15313,51,53,39,0.0 +15313,54,7.45,34,0.0 +15313,26,31.23,42,0.0 +15313,34,14,17,0.0 +15313,1,18,8,0.0 +15313,24,4.5,8,0.0 +15313,10,31,24,0.0 +15313,25,14,25,0.0 +15313,22,21,26,0.0 +15313,70,15,30,0.0 +15313,29,123.79,8,0.0 +15314,13,6,7,0.0 +15314,45,9.5,20,0.0 +15314,9,97,23,0.0 +15314,59,55,33,0.0 +15314,77,13,5,0.0 +15314,74,10,30,0.0 +15314,56,38,10,0.0 +15314,38,263.5,5,0.0 +15314,2,19,3,0.0 +15314,43,46,31,0.0 +15314,42,14,44,0.0 +15314,67,14,38,0.0 +15314,47,9.5,8,0.0 +15314,1,18,12,0.0 +15314,40,18.4,20,0.0 +15314,72,34.8,16,0.0 +15314,34,14,27,0.0 +15314,69,36,1,0.0 +15314,73,15,12,0.0 +15314,31,12.5,27,0.0 +15314,70,15,34,0.0 +15314,50,16.25,29,0.0 +15314,5,21.35,15,0.0 +15314,63,43.9,41,0.0 +15314,3,10,44,0.0 +15314,60,34,41,0.0 +15314,24,4.5,3,0.0 +15314,35,18,1,0.0 +15314,6,25,15,0.0 +15314,4,22,19,0.0 +15314,17,39,24,0.0 +15314,75,7.75,17,0.0 +15314,32,32,47,0.0 +15314,25,14,36,0.0 +15314,44,19.45,4,0.0 +15314,62,49.3,40,0.0 +15314,51,53,18,0.0 +15314,27,43.9,49,0.0 +15314,7,30,39,0.0 +15314,55,24,25,0.0 +15314,29,123.79,17,0.0 +15314,46,12,11,0.0 +15315,24,4.5,14,0.0 +15315,47,9.5,18,0.0 +15315,28,45.6,11,0.0 +15315,8,40,12,0.0 +15315,76,18,1,0.0 +15315,20,81,46,0.0 +15315,21,10,2,0.0 +15315,7,30,5,0.0 +15315,1,18,28,0.0 +15315,42,14,18,0.0 +15315,50,16.25,34,0.0 +15315,16,17.45,35,0.0 +15315,22,21,44,0.0 +15315,29,123.79,24,0.0 +15315,3,10,49,0.0 +15315,65,21.05,15,0.0 +15315,54,7.45,36,0.0 +15315,68,12.5,16,0.0 +15315,49,20,29,0.0 +15315,58,13.25,25,0.0 +15315,37,26,26,0.0 +15315,19,9.2,8,0.0 +15315,15,15.5,22,0.0 +15315,75,7.75,11,0.0 +15315,18,62.5,46,0.0 +15315,41,9.65,47,0.0 +15315,14,23.25,18,0.0 +15315,33,2.5,17,0.0 +15315,10,31,23,0.0 +15315,70,15,33,0.0 +15315,44,19.45,3,0.0 +15315,73,15,14,0.0 +15315,51,53,23,0.0 +15315,66,17,13,0.0 +15315,17,39,2,0.0 +15315,35,18,50,0.0 +15315,32,32,14,0.0 +15315,23,9,47,0.0 +15315,64,33.25,33,0.0 +15315,63,43.9,32,0.0 +15315,11,21,19,0.0 +15315,4,22,2,0.0 +15315,27,43.9,47,0.0 +15315,52,7,10,0.0 +15315,6,25,14,0.0 +15315,72,34.8,23,0.0 +15315,25,14,17,0.0 +15315,12,38,6,0.0 +15315,45,9.5,42,0.0 +15315,36,19,37,0.0 +15315,77,13,11,0.0 +15315,69,36,38,0.0 +15315,5,21.35,5,0.0 +15315,62,49.3,46,0.0 +15315,60,34,33,0.0 +15315,55,24,9,0.0 +15315,48,12.75,11,0.0 +15315,26,31.23,15,0.0 +15315,39,18,47,0.0 +15315,31,12.5,26,0.0 +15315,46,12,32,0.0 +15315,67,14,16,0.0 +15315,61,28.5,45,0.0 +15315,38,263.5,41,0.0 +15315,30,25.89,38,0.0 +15315,59,55,20,0.0 +15315,13,6,31,0.0 +15315,9,97,45,0.0 +15315,74,10,50,0.0 +15315,43,46,45,0.0 +15315,53,32.8,22,0.0 +15315,34,14,26,0.0 +15315,57,19.5,8,0.0 +15316,11,21,29,0.0 +15316,32,32,12,0.0 +15316,2,19,21,0.0 +15316,35,18,24,0.0 +15316,18,62.5,30,0.0 +15316,23,9,13,0.0 +15316,3,10,24,0.0 +15316,41,9.65,1,0.0 +15316,7,30,49,0.0 +15316,55,24,39,0.0 +15316,64,33.25,50,0.0 +15316,69,36,35,0.0 +15316,29,123.79,37,0.0 +15316,68,12.5,17,0.0 +15316,48,12.75,3,0.0 +15316,71,21.5,38,0.0 +15316,52,7,13,0.0 +15316,73,15,30,0.0 +15316,10,31,47,0.0 +15316,63,43.9,13,0.0 +15316,40,18.4,49,0.0 +15316,19,9.2,8,0.0 +15316,46,12,19,0.0 +15316,53,32.8,4,0.0 +15316,15,15.5,4,0.0 +15316,36,19,32,0.0 +15316,9,97,3,0.0 +15316,42,14,2,0.0 +15316,16,17.45,42,0.0 +15316,44,19.45,22,0.0 +15316,65,21.05,28,0.0 +15316,33,2.5,32,0.0 +15316,76,18,38,0.0 +15316,37,26,27,0.0 +15316,49,20,34,0.0 +15316,70,15,1,0.0 +15316,61,28.5,11,0.0 +15316,5,21.35,14,0.0 +15316,20,81,14,0.0 +15316,28,45.6,14,0.0 +15316,62,49.3,31,0.0 +15316,59,55,27,0.0 +15316,6,25,3,0.0 +15316,24,4.5,29,0.0 +15316,31,12.5,24,0.0 +15316,13,6,9,0.0 +15316,30,25.89,3,0.0 +15316,1,18,20,0.0 +15316,34,14,2,0.0 +15316,21,10,43,0.0 +15316,8,40,3,0.0 +15316,56,38,29,0.0 +15316,60,34,45,0.0 +15316,57,19.5,40,0.0 +15316,50,16.25,13,0.0 +15316,38,263.5,22,0.0 +15316,27,43.9,1,0.0 +15316,39,18,7,0.0 +15316,66,17,12,0.0 +15316,12,38,18,0.0 +15316,25,14,35,0.0 +15316,51,53,13,0.0 +15316,26,31.23,49,0.0 +15316,45,9.5,38,0.0 +15316,22,21,13,0.0 +15316,14,23.25,6,0.0 +15316,77,13,43,0.0 +15316,58,13.25,26,0.0 +15316,4,22,9,0.0 +15316,75,7.75,7,0.0 +15316,47,9.5,32,0.0 +15316,74,10,28,0.0 +15316,54,7.45,45,0.0 +15317,16,17.45,33,0.0 +15317,35,18,45,0.0 +15317,61,28.5,44,0.0 +15317,66,17,21,0.0 +15317,33,2.5,49,0.0 +15317,52,7,47,0.0 +15317,8,40,10,0.0 +15317,44,19.45,3,0.0 +15317,77,13,47,0.0 +15317,18,62.5,31,0.0 +15317,56,38,6,0.0 +15317,12,38,8,0.0 +15317,49,20,21,0.0 +15317,4,22,7,0.0 +15317,29,123.79,41,0.0 +15317,62,49.3,7,0.0 +15317,38,263.5,10,0.0 +15317,47,9.5,28,0.0 +15317,27,43.9,28,0.0 +15317,2,19,17,0.0 +15317,54,7.45,49,0.0 +15317,21,10,5,0.0 +15317,28,45.6,7,0.0 +15317,3,10,35,0.0 +15317,42,14,19,0.0 +15317,22,21,19,0.0 +15317,71,21.5,28,0.0 +15317,67,14,49,0.0 +15317,46,12,5,0.0 +15317,30,25.89,8,0.0 +15317,9,97,41,0.0 +15317,60,34,24,0.0 +15317,72,34.8,24,0.0 +15317,25,14,30,0.0 +15317,7,30,9,0.0 +15317,64,33.25,16,0.0 +15317,1,18,40,0.0 +15317,53,32.8,28,0.0 +15317,57,19.5,47,0.0 +15317,73,15,36,0.0 +15317,17,39,14,0.0 +15317,41,9.65,3,0.0 +15317,50,16.25,31,0.0 +15317,23,9,21,0.0 +15317,69,36,43,0.0 +15317,31,12.5,4,0.0 +15317,37,26,18,0.0 +15317,58,13.25,11,0.0 +15317,19,9.2,31,0.0 +15317,63,43.9,35,0.0 +15317,55,24,48,0.0 +15317,24,4.5,4,0.0 +15317,59,55,40,0.0 +15317,20,81,25,0.0 +15317,65,21.05,24,0.0 +15317,68,12.5,14,0.0 +15317,13,6,14,0.0 +15317,40,18.4,14,0.0 +15317,36,19,46,0.0 +15317,32,32,37,0.0 +15317,6,25,32,0.0 +15317,34,14,37,0.0 +15317,45,9.5,45,0.0 +15317,48,12.75,15,0.0 +15317,70,15,50,0.0 +15317,26,31.23,14,0.0 +15317,15,15.5,30,0.0 +15317,10,31,11,0.0 +15317,39,18,39,0.0 +15317,43,46,21,0.0 +15317,11,21,22,0.0 +15317,76,18,14,0.0 +15317,75,7.75,45,0.0 +15317,5,21.35,16,0.0 +15317,74,10,31,0.0 +15317,14,23.25,42,0.0 +15318,61,28.5,28,0.0 +15318,38,263.5,40,0.0 +15318,46,12,4,0.0 +15318,43,46,32,0.0 +15318,41,9.65,40,0.0 +15318,54,7.45,38,0.0 +15318,34,14,24,0.0 +15318,4,22,14,0.0 +15318,53,32.8,32,0.0 +15318,45,9.5,41,0.0 +15318,33,2.5,32,0.0 +15318,15,15.5,4,0.0 +15318,26,31.23,47,0.0 +15318,7,30,28,0.0 +15318,37,26,16,0.0 +15318,6,25,39,0.0 +15318,71,21.5,25,0.0 +15318,40,18.4,17,0.0 +15318,70,15,34,0.0 +15318,12,38,15,0.0 +15318,73,15,7,0.0 +15318,69,36,20,0.0 +15318,64,33.25,29,0.0 +15318,31,12.5,41,0.0 +15318,36,19,18,0.0 +15318,8,40,44,0.0 +15318,23,9,36,0.0 +15319,17,39,49,0.0 +15319,28,45.6,39,0.0 +15319,54,7.45,45,0.0 +15319,68,12.5,23,0.0 +15319,77,13,37,0.0 +15319,69,36,31,0.0 +15319,20,81,46,0.0 +15319,12,38,50,0.0 +15319,10,31,48,0.0 +15319,6,25,18,0.0 +15319,72,34.8,36,0.0 +15319,55,24,48,0.0 +15319,29,123.79,23,0.0 +15319,35,18,45,0.0 +15319,33,2.5,25,0.0 +15319,27,43.9,15,0.0 +15319,66,17,22,0.0 +15319,3,10,10,0.0 +15319,13,6,42,0.0 +15319,38,263.5,39,0.0 +15319,16,17.45,44,0.0 +15319,23,9,11,0.0 +15319,73,15,12,0.0 +15319,60,34,1,0.0 +15319,31,12.5,21,0.0 +15319,39,18,32,0.0 +15319,21,10,42,0.0 +15319,24,4.5,45,0.0 +15319,40,18.4,1,0.0 +15319,75,7.75,7,0.0 +15319,57,19.5,18,0.0 +15319,65,21.05,17,0.0 +15319,50,16.25,29,0.0 +15319,62,49.3,29,0.0 +15319,8,40,44,0.0 +15319,30,25.89,30,0.0 +15319,42,14,31,0.0 +15319,59,55,48,0.0 +15319,43,46,2,0.0 +15319,11,21,15,0.0 +15319,49,20,12,0.0 +15319,48,12.75,42,0.0 +15319,61,28.5,30,0.0 +15319,46,12,26,0.0 +15319,9,97,16,0.0 +15319,74,10,36,0.0 +15319,76,18,29,0.0 +15319,52,7,16,0.0 +15319,47,9.5,29,0.0 +15319,1,18,23,0.0 +15319,56,38,33,0.0 +15319,67,14,27,0.0 +15319,19,9.2,18,0.0 +15319,44,19.45,45,0.0 +15319,51,53,12,0.0 +15319,37,26,23,0.0 +15320,44,19.45,38,0.0 +15320,61,28.5,32,0.0 +15320,71,21.5,3,0.0 +15320,31,12.5,32,0.0 +15320,7,30,39,0.0 +15320,11,21,5,0.0 +15320,35,18,34,0.0 +15320,55,24,13,0.0 +15320,38,263.5,43,0.0 +15320,39,18,43,0.0 +15320,3,10,30,0.0 +15320,72,34.8,47,0.0 +15320,48,12.75,28,0.0 +15320,41,9.65,21,0.0 +15320,69,36,36,0.0 +15320,57,19.5,32,0.0 +15320,12,38,4,0.0 +15320,37,26,46,0.0 +15320,60,34,10,0.0 +15320,43,46,10,0.0 +15320,26,31.23,46,0.0 +15320,52,7,33,0.0 +15320,14,23.25,15,0.0 +15320,25,14,16,0.0 +15320,19,9.2,16,0.0 +15320,28,45.6,2,0.0 +15320,65,21.05,41,0.0 +15320,34,14,9,0.0 +15320,23,9,33,0.0 +15321,62,49.3,38,0.0 +15321,7,30,18,0.0 +15321,30,25.89,49,0.0 +15321,49,20,23,0.0 +15321,12,38,36,0.0 +15321,77,13,3,0.0 +15321,76,18,35,0.0 +15321,57,19.5,27,0.0 +15321,19,9.2,28,0.0 +15321,45,9.5,4,0.0 +15321,17,39,46,0.0 +15321,14,23.25,19,0.0 +15321,66,17,50,0.0 +15321,11,21,20,0.0 +15321,36,19,27,0.0 +15321,37,26,45,0.0 +15321,60,34,23,0.0 +15321,23,9,23,0.0 +15321,55,24,39,0.0 +15321,39,18,10,0.0 +15321,50,16.25,26,0.0 +15321,56,38,23,0.0 +15321,24,4.5,9,0.0 +15321,47,9.5,23,0.0 +15321,59,55,34,0.0 +15321,65,21.05,13,0.0 +15322,13,6,50,0.0 +15322,27,43.9,8,0.0 +15322,65,21.05,5,0.0 +15322,53,32.8,15,0.0 +15322,7,30,27,0.0 +15322,49,20,30,0.0 +15322,18,62.5,20,0.0 +15322,16,17.45,35,0.0 +15322,54,7.45,12,0.0 +15322,62,49.3,18,0.0 +15322,50,16.25,36,0.0 +15322,56,38,44,0.0 +15322,30,25.89,45,0.0 +15322,19,9.2,9,0.0 +15322,46,12,11,0.0 +15322,68,12.5,25,0.0 +15322,17,39,22,0.0 +15323,26,31.23,47,0.0 +15323,17,39,21,0.0 +15323,75,7.75,48,0.0 +15323,66,17,14,0.0 +15323,72,34.8,25,0.0 +15323,69,36,45,0.0 +15323,41,9.65,40,0.0 +15323,30,25.89,48,0.0 +15323,73,15,9,0.0 +15323,11,21,26,0.0 +15323,24,4.5,40,0.0 +15323,3,10,10,0.0 +15323,50,16.25,35,0.0 +15323,77,13,37,0.0 +15323,63,43.9,7,0.0 +15323,53,32.8,44,0.0 +15323,38,263.5,46,0.0 +15323,21,10,40,0.0 +15323,58,13.25,24,0.0 +15323,5,21.35,5,0.0 +15323,9,97,50,0.0 +15323,15,15.5,34,0.0 +15323,49,20,24,0.0 +15323,65,21.05,31,0.0 +15323,27,43.9,39,0.0 +15323,56,38,39,0.0 +15323,54,7.45,7,0.0 +15323,43,46,16,0.0 +15323,22,21,46,0.0 +15323,71,21.5,8,0.0 +15323,14,23.25,17,0.0 +15323,34,14,42,0.0 +15323,46,12,49,0.0 +15323,2,19,11,0.0 +15323,70,15,31,0.0 +15323,37,26,29,0.0 +15323,64,33.25,16,0.0 +15324,11,21,46,0.0 +15324,21,10,16,0.0 +15324,15,15.5,15,0.0 +15324,48,12.75,43,0.0 +15324,36,19,17,0.0 +15324,22,21,4,0.0 +15324,38,263.5,48,0.0 +15324,7,30,39,0.0 +15324,58,13.25,33,0.0 +15324,12,38,23,0.0 +15324,44,19.45,48,0.0 +15324,66,17,44,0.0 +15324,35,18,16,0.0 +15324,77,13,27,0.0 +15324,53,32.8,27,0.0 +15324,31,12.5,8,0.0 +15324,43,46,10,0.0 +15324,4,22,34,0.0 +15324,45,9.5,2,0.0 +15324,19,9.2,50,0.0 +15324,6,25,46,0.0 +15324,51,53,46,0.0 +15324,27,43.9,30,0.0 +15324,16,17.45,44,0.0 +15324,34,14,8,0.0 +15324,28,45.6,9,0.0 +15324,69,36,50,0.0 +15324,20,81,3,0.0 +15324,71,21.5,4,0.0 +15324,61,28.5,47,0.0 +15324,50,16.25,50,0.0 +15324,33,2.5,49,0.0 +15324,40,18.4,45,0.0 +15324,47,9.5,35,0.0 +15324,49,20,38,0.0 +15324,70,15,9,0.0 +15325,29,123.79,6,0.0 +15325,34,14,29,0.0 +15325,1,18,20,0.0 +15325,16,17.45,14,0.0 +15325,64,33.25,38,0.0 +15325,67,14,4,0.0 +15325,63,43.9,16,0.0 +15325,2,19,49,0.0 +15325,10,31,11,0.0 +15325,53,32.8,15,0.0 +15325,75,7.75,44,0.0 +15325,62,49.3,4,0.0 +15325,58,13.25,1,0.0 +15325,7,30,16,0.0 +15325,41,9.65,32,0.0 +15325,46,12,7,0.0 +15325,20,81,23,0.0 +15325,8,40,34,0.0 +15325,3,10,31,0.0 +15325,11,21,19,0.0 +15325,47,9.5,4,0.0 +15325,54,7.45,28,0.0 +15325,24,4.5,21,0.0 +15325,35,18,3,0.0 +15325,59,55,46,0.0 +15325,19,9.2,46,0.0 +15325,71,21.5,12,0.0 +15325,42,14,3,0.0 +15325,32,32,7,0.0 +15325,45,9.5,8,0.0 +15325,27,43.9,42,0.0 +15325,6,25,21,0.0 +15325,4,22,11,0.0 +15325,28,45.6,41,0.0 +15325,18,62.5,37,0.0 +15325,21,10,40,0.0 +15325,31,12.5,42,0.0 +15325,9,97,14,0.0 +15325,51,53,5,0.0 +15325,23,9,28,0.0 +15325,55,24,37,0.0 +15325,12,38,39,0.0 +15325,65,21.05,24,0.0 +15325,77,13,15,0.0 +15325,17,39,23,0.0 +15325,38,263.5,6,0.0 +15325,14,23.25,2,0.0 +15325,40,18.4,8,0.0 +15325,60,34,17,0.0 +15325,50,16.25,35,0.0 +15325,30,25.89,33,0.0 +15325,70,15,41,0.0 +15325,66,17,17,0.0 +15325,73,15,41,0.0 +15325,5,21.35,45,0.0 +15325,25,14,17,0.0 +15325,39,18,30,0.0 +15325,56,38,26,0.0 +15325,15,15.5,19,0.0 +15325,37,26,23,0.0 +15325,48,12.75,19,0.0 +15325,13,6,45,0.0 +15326,15,15.5,15,0.0 +15326,48,12.75,30,0.0 +15326,77,13,13,0.0 +15326,68,12.5,49,0.0 +15326,35,18,26,0.0 +15326,46,12,47,0.0 +15326,2,19,19,0.0 +15326,69,36,12,0.0 +15326,52,7,4,0.0 +15326,28,45.6,33,0.0 +15326,1,18,23,0.0 +15326,32,32,13,0.0 +15326,11,21,6,0.0 +15326,5,21.35,36,0.0 +15326,65,21.05,44,0.0 +15326,40,18.4,6,0.0 +15326,57,19.5,5,0.0 +15326,3,10,21,0.0 +15326,63,43.9,35,0.0 +15326,70,15,48,0.0 +15326,62,49.3,1,0.0 +15326,23,9,45,0.0 +15326,58,13.25,25,0.0 +15326,67,14,10,0.0 +15326,14,23.25,39,0.0 +15326,71,21.5,43,0.0 +15326,20,81,33,0.0 +15327,7,30,40,0.0 +15327,57,19.5,32,0.0 +15327,74,10,23,0.0 +15327,46,12,10,0.0 +15327,65,21.05,11,0.0 +15328,62,49.3,16,0.0 +15328,6,25,4,0.0 +15328,11,21,21,0.0 +15328,63,43.9,26,0.0 +15328,48,12.75,41,0.0 +15328,72,34.8,47,0.0 +15328,69,36,38,0.0 +15328,64,33.25,47,0.0 +15328,38,263.5,19,0.0 +15328,24,4.5,39,0.0 +15328,60,34,19,0.0 +15328,13,6,14,0.0 +15328,15,15.5,15,0.0 +15328,37,26,3,0.0 +15328,39,18,25,0.0 +15328,68,12.5,42,0.0 +15328,52,7,46,0.0 +15328,58,13.25,16,0.0 +15328,41,9.65,9,0.0 +15328,61,28.5,39,0.0 +15328,25,14,13,0.0 +15328,59,55,29,0.0 +15328,31,12.5,49,0.0 +15328,21,10,16,0.0 +15328,73,15,8,0.0 +15328,75,7.75,11,0.0 +15328,19,9.2,39,0.0 +15328,9,97,26,0.0 +15328,34,14,8,0.0 +15328,44,19.45,50,0.0 +15328,53,32.8,35,0.0 +15328,43,46,21,0.0 +15328,35,18,32,0.0 +15328,71,21.5,45,0.0 +15328,1,18,49,0.0 +15328,42,14,39,0.0 +15328,36,19,13,0.0 +15328,28,45.6,5,0.0 +15328,7,30,9,0.0 +15328,46,12,1,0.0 +15328,55,24,20,0.0 +15328,65,21.05,42,0.0 +15328,30,25.89,17,0.0 +15328,29,123.79,13,0.0 +15328,23,9,36,0.0 +15328,2,19,10,0.0 +15328,8,40,22,0.0 +15328,26,31.23,10,0.0 +15328,76,18,5,0.0 +15328,14,23.25,44,0.0 +15328,54,7.45,36,0.0 +15328,70,15,35,0.0 +15328,10,31,46,0.0 +15328,4,22,40,0.0 +15328,18,62.5,1,0.0 +15328,40,18.4,24,0.0 +15328,12,38,6,0.0 +15328,47,9.5,21,0.0 +15328,57,19.5,6,0.0 +15328,51,53,19,0.0 +15328,22,21,17,0.0 +15328,49,20,24,0.0 +15328,27,43.9,41,0.0 +15328,66,17,20,0.0 +15328,33,2.5,31,0.0 +15328,17,39,43,0.0 +15328,50,16.25,44,0.0 +15328,45,9.5,43,0.0 +15328,67,14,5,0.0 +15328,32,32,11,0.0 +15328,20,81,46,0.0 +15328,56,38,17,0.0 +15328,74,10,20,0.0 +15328,16,17.45,41,0.0 +15328,77,13,11,0.0 +15328,3,10,43,0.0 +15329,72,34.8,4,0.0 +15329,52,7,8,0.0 +15329,28,45.6,50,0.0 +15329,64,33.25,39,0.0 +15329,38,263.5,28,0.0 +15329,31,12.5,19,0.0 +15329,60,34,23,0.0 +15329,13,6,22,0.0 +15329,16,17.45,28,0.0 +15329,70,15,31,0.0 +15329,39,18,35,0.0 +15329,1,18,32,0.0 +15329,74,10,31,0.0 +15329,24,4.5,36,0.0 +15329,12,38,38,0.0 +15329,58,13.25,32,0.0 +15329,59,55,11,0.0 +15329,44,19.45,24,0.0 +15329,18,62.5,28,0.0 +15329,15,15.5,20,0.0 +15329,46,12,42,0.0 +15329,50,16.25,20,0.0 +15329,19,9.2,21,0.0 +15329,6,25,35,0.0 +15329,55,24,41,0.0 +15329,71,21.5,20,0.0 +15329,26,31.23,34,0.0 +15329,65,21.05,23,0.0 +15329,14,23.25,36,0.0 +15329,43,46,30,0.0 +15329,25,14,25,0.0 +15329,67,14,24,0.0 +15329,3,10,37,0.0 +15329,61,28.5,32,0.0 +15329,21,10,17,0.0 +15329,17,39,10,0.0 +15329,34,14,5,0.0 +15329,42,14,7,0.0 +15329,37,26,18,0.0 +15329,2,19,23,0.0 +15329,48,12.75,48,0.0 +15329,69,36,41,0.0 +15329,68,12.5,18,0.0 +15329,30,25.89,36,0.0 +15329,11,21,7,0.0 +15329,10,31,22,0.0 +15329,63,43.9,44,0.0 +15329,20,81,16,0.0 +15329,9,97,16,0.0 +15329,53,32.8,8,0.0 +15329,36,19,24,0.0 +15329,23,9,39,0.0 +15329,49,20,15,0.0 +15329,40,18.4,37,0.0 +15329,73,15,32,0.0 +15329,54,7.45,41,0.0 +15329,62,49.3,1,0.0 +15329,22,21,24,0.0 +15329,4,22,22,0.0 +15329,56,38,50,0.0 +15329,35,18,6,0.0 +15329,33,2.5,29,0.0 +15329,77,13,27,0.0 +15330,39,18,46,0.0 +15330,74,10,23,0.0 +15330,30,25.89,28,0.0 +15330,16,17.45,47,0.0 +15330,1,18,2,0.0 +15330,27,43.9,1,0.0 +15330,53,32.8,9,0.0 +15330,43,46,4,0.0 +15331,33,2.5,19,0.0 +15331,14,23.25,20,0.0 +15331,59,55,23,0.0 +15331,71,21.5,42,0.0 +15331,46,12,10,0.0 +15331,8,40,1,0.0 +15331,69,36,41,0.0 +15331,41,9.65,9,0.0 +15331,74,10,21,0.0 +15331,6,25,7,0.0 +15331,58,13.25,12,0.0 +15331,16,17.45,8,0.0 +15331,72,34.8,7,0.0 +15331,30,25.89,45,0.0 +15331,66,17,6,0.0 +15331,49,20,41,0.0 +15331,3,10,13,0.0 +15331,17,39,21,0.0 +15331,32,32,43,0.0 +15331,2,19,16,0.0 +15331,22,21,28,0.0 +15331,12,38,17,0.0 +15331,52,7,17,0.0 +15331,34,14,19,0.0 +15331,23,9,20,0.0 +15331,1,18,21,0.0 +15331,19,9.2,14,0.0 +15331,29,123.79,42,0.0 +15331,37,26,8,0.0 +15331,60,34,7,0.0 +15331,55,24,37,0.0 +15331,36,19,41,0.0 +15331,63,43.9,8,0.0 +15332,35,18,44,0.0 +15332,57,19.5,9,0.0 +15332,56,38,33,0.0 +15332,14,23.25,30,0.0 +15332,72,34.8,22,0.0 +15332,16,17.45,16,0.0 +15332,31,12.5,44,0.0 +15332,62,49.3,9,0.0 +15332,61,28.5,43,0.0 +15332,46,12,8,0.0 +15332,42,14,44,0.0 +15332,71,21.5,45,0.0 +15332,1,18,6,0.0 +15332,11,21,35,0.0 +15332,10,31,26,0.0 +15332,55,24,19,0.0 +15332,60,34,49,0.0 +15332,32,32,20,0.0 +15332,66,17,42,0.0 +15332,19,9.2,20,0.0 +15332,50,16.25,20,0.0 +15332,41,9.65,1,0.0 +15332,22,21,10,0.0 +15332,75,7.75,3,0.0 +15332,65,21.05,5,0.0 +15332,13,6,35,0.0 +15332,7,30,44,0.0 +15332,51,53,37,0.0 +15332,59,55,31,0.0 +15332,40,18.4,40,0.0 +15333,28,45.6,49,0.0 +15333,9,97,14,0.0 +15333,20,81,23,0.0 +15334,73,15,25,0.0 +15334,41,9.65,44,0.0 +15334,72,34.8,29,0.0 +15334,59,55,29,0.0 +15334,64,33.25,24,0.0 +15334,44,19.45,50,0.0 +15334,52,7,13,0.0 +15334,62,49.3,42,0.0 +15334,3,10,23,0.0 +15335,22,21,33,0.0 +15335,34,14,8,0.0 +15335,4,22,11,0.0 +15335,23,9,20,0.0 +15335,7,30,36,0.0 +15335,30,25.89,4,0.0 +15335,21,10,28,0.0 +15335,10,31,16,0.0 +15335,14,23.25,36,0.0 +15335,9,97,41,0.0 +15335,16,17.45,31,0.0 +15335,50,16.25,6,0.0 +15335,63,43.9,48,0.0 +15335,62,49.3,43,0.0 +15335,25,14,48,0.0 +15335,47,9.5,14,0.0 +15335,61,28.5,31,0.0 +15335,73,15,39,0.0 +15335,24,4.5,18,0.0 +15335,43,46,31,0.0 +15335,32,32,18,0.0 +15335,3,10,10,0.0 +15335,46,12,44,0.0 +15335,19,9.2,1,0.0 +15335,70,15,42,0.0 +15335,77,13,32,0.0 +15335,31,12.5,9,0.0 +15335,67,14,30,0.0 +15335,20,81,22,0.0 +15335,29,123.79,16,0.0 +15335,28,45.6,2,0.0 +15335,41,9.65,5,0.0 +15335,36,19,5,0.0 +15336,74,10,37,0.0 +15336,21,10,19,0.0 +15336,56,38,44,0.0 +15336,49,20,44,0.0 +15336,71,21.5,38,0.0 +15336,9,97,21,0.0 +15336,47,9.5,11,0.0 +15336,15,15.5,13,0.0 +15336,28,45.6,23,0.0 +15336,3,10,40,0.0 +15336,41,9.65,35,0.0 +15336,25,14,4,0.0 +15336,42,14,45,0.0 +15336,44,19.45,50,0.0 +15336,18,62.5,2,0.0 +15336,69,36,34,0.0 +15336,32,32,35,0.0 +15336,10,31,17,0.0 +15336,31,12.5,43,0.0 +15336,19,9.2,19,0.0 +15336,38,263.5,49,0.0 +15336,8,40,48,0.0 +15336,64,33.25,4,0.0 +15336,16,17.45,21,0.0 +15336,59,55,8,0.0 +15336,4,22,41,0.0 +15337,43,46,9,0.0 +15337,35,18,11,0.0 +15337,49,20,48,0.0 +15337,77,13,31,0.0 +15337,56,38,15,0.0 +15337,30,25.89,48,0.0 +15337,8,40,18,0.0 +15337,41,9.65,30,0.0 +15337,31,12.5,31,0.0 +15337,63,43.9,21,0.0 +15337,15,15.5,8,0.0 +15337,52,7,38,0.0 +15337,24,4.5,13,0.0 +15337,18,62.5,31,0.0 +15337,28,45.6,16,0.0 +15337,26,31.23,4,0.0 +15337,2,19,5,0.0 +15337,25,14,29,0.0 +15337,71,21.5,20,0.0 +15337,23,9,50,0.0 +15337,1,18,14,0.0 +15337,73,15,15,0.0 +15337,67,14,3,0.0 +15337,72,34.8,29,0.0 +15337,17,39,12,0.0 +15337,12,38,32,0.0 +15337,22,21,36,0.0 +15337,53,32.8,9,0.0 +15337,65,21.05,32,0.0 +15337,42,14,46,0.0 +15337,4,22,6,0.0 +15337,76,18,34,0.0 +15337,44,19.45,16,0.0 +15337,47,9.5,5,0.0 +15337,5,21.35,4,0.0 +15337,58,13.25,28,0.0 +15337,48,12.75,28,0.0 +15337,59,55,2,0.0 +15337,33,2.5,17,0.0 +15337,32,32,33,0.0 +15337,64,33.25,35,0.0 +15337,57,19.5,43,0.0 +15337,3,10,47,0.0 +15337,19,9.2,50,0.0 +15337,54,7.45,47,0.0 +15337,13,6,40,0.0 +15337,39,18,24,0.0 +15337,27,43.9,32,0.0 +15337,69,36,6,0.0 +15337,55,24,35,0.0 +15337,61,28.5,14,0.0 +15337,62,49.3,29,0.0 +15337,20,81,4,0.0 +15337,10,31,16,0.0 +15337,36,19,33,0.0 +15337,46,12,39,0.0 +15337,16,17.45,40,0.0 +15337,60,34,10,0.0 +15337,9,97,2,0.0 +15337,14,23.25,26,0.0 +15337,75,7.75,18,0.0 +15337,34,14,27,0.0 +15337,51,53,2,0.0 +15337,37,26,3,0.0 +15337,68,12.5,39,0.0 +15337,66,17,37,0.0 +15337,7,30,17,0.0 +15337,6,25,50,0.0 +15337,21,10,4,0.0 +15337,70,15,39,0.0 +15337,29,123.79,40,0.0 +15338,24,4.5,15,0.0 +15338,54,7.45,9,0.0 +15338,45,9.5,16,0.0 +15338,41,9.65,29,0.0 +15338,62,49.3,41,0.0 +15338,73,15,10,0.0 +15338,66,17,50,0.0 +15338,52,7,46,0.0 +15338,16,17.45,36,0.0 +15338,15,15.5,3,0.0 +15338,29,123.79,24,0.0 +15338,7,30,26,0.0 +15338,53,32.8,3,0.0 +15338,50,16.25,36,0.0 +15338,68,12.5,33,0.0 +15338,6,25,41,0.0 +15338,30,25.89,12,0.0 +15338,40,18.4,25,0.0 +15338,55,24,36,0.0 +15338,11,21,2,0.0 +15338,33,2.5,32,0.0 +15338,71,21.5,21,0.0 +15338,51,53,2,0.0 +15338,64,33.25,26,0.0 +15338,1,18,12,0.0 +15338,61,28.5,47,0.0 +15338,2,19,21,0.0 +15338,25,14,22,0.0 +15339,49,20,36,0.0 +15339,19,9.2,12,0.0 +15339,57,19.5,30,0.0 +15339,17,39,24,0.0 +15339,28,45.6,29,0.0 +15339,53,32.8,37,0.0 +15339,2,19,20,0.0 +15339,42,14,21,0.0 +15339,14,23.25,5,0.0 +15339,77,13,37,0.0 +15339,65,21.05,33,0.0 +15339,5,21.35,43,0.0 +15339,4,22,13,0.0 +15339,59,55,1,0.0 +15339,72,34.8,9,0.0 +15339,63,43.9,8,0.0 +15339,1,18,27,0.0 +15339,70,15,22,0.0 +15339,68,12.5,33,0.0 +15339,73,15,14,0.0 +15339,7,30,32,0.0 +15339,12,38,34,0.0 +15339,56,38,24,0.0 +15339,33,2.5,20,0.0 +15339,6,25,22,0.0 +15339,10,31,46,0.0 +15339,21,10,21,0.0 +15339,69,36,10,0.0 +15339,40,18.4,43,0.0 +15339,67,14,48,0.0 +15339,61,28.5,40,0.0 +15339,50,16.25,6,0.0 +15339,11,21,31,0.0 +15339,45,9.5,43,0.0 +15339,38,263.5,23,0.0 +15339,62,49.3,50,0.0 +15339,60,34,7,0.0 +15339,37,26,48,0.0 +15339,41,9.65,41,0.0 +15339,16,17.45,41,0.0 +15339,22,21,2,0.0 +15339,76,18,10,0.0 +15339,9,97,3,0.0 +15339,58,13.25,25,0.0 +15339,20,81,35,0.0 +15339,48,12.75,34,0.0 +15339,39,18,8,0.0 +15339,32,32,21,0.0 +15339,3,10,39,0.0 +15339,35,18,8,0.0 +15339,15,15.5,4,0.0 +15339,66,17,12,0.0 +15339,26,31.23,27,0.0 +15339,43,46,23,0.0 +15339,51,53,13,0.0 +15339,18,62.5,36,0.0 +15339,27,43.9,15,0.0 +15339,71,21.5,2,0.0 +15339,8,40,32,0.0 +15339,29,123.79,9,0.0 +15339,31,12.5,36,0.0 +15339,46,12,50,0.0 +15340,26,31.23,5,0.0 +15340,48,12.75,8,0.0 +15340,9,97,30,0.0 +15340,3,10,32,0.0 +15340,56,38,42,0.0 +15340,14,23.25,44,0.0 +15340,4,22,9,0.0 +15340,64,33.25,21,0.0 +15340,65,21.05,32,0.0 +15340,33,2.5,22,0.0 +15340,57,19.5,43,0.0 +15340,6,25,14,0.0 +15340,25,14,24,0.0 +15340,32,32,6,0.0 +15340,23,9,23,0.0 +15340,49,20,22,0.0 +15340,54,7.45,23,0.0 +15340,53,32.8,9,0.0 +15340,22,21,29,0.0 +15340,41,9.65,20,0.0 +15340,24,4.5,32,0.0 +15340,66,17,21,0.0 +15340,59,55,49,0.0 +15340,72,34.8,35,0.0 +15340,61,28.5,29,0.0 +15340,29,123.79,37,0.0 +15340,27,43.9,30,0.0 +15340,10,31,47,0.0 +15340,1,18,30,0.0 +15340,58,13.25,7,0.0 +15340,5,21.35,10,0.0 +15340,15,15.5,7,0.0 +15340,51,53,50,0.0 +15340,70,15,10,0.0 +15340,39,18,1,0.0 +15340,76,18,46,0.0 +15340,73,15,3,0.0 +15340,60,34,39,0.0 +15340,18,62.5,12,0.0 +15340,8,40,13,0.0 +15340,16,17.45,38,0.0 +15340,21,10,49,0.0 +15340,74,10,20,0.0 +15340,38,263.5,16,0.0 +15341,35,18,19,0.0 +15341,55,24,27,0.0 +15341,16,17.45,21,0.0 +15341,30,25.89,45,0.0 +15341,34,14,27,0.0 +15341,52,7,40,0.0 +15341,23,9,42,0.0 +15341,33,2.5,26,0.0 +15341,14,23.25,50,0.0 +15341,26,31.23,23,0.0 +15341,59,55,29,0.0 +15341,60,34,40,0.0 +15341,22,21,42,0.0 +15341,40,18.4,42,0.0 +15341,25,14,18,0.0 +15341,21,10,46,0.0 +15341,38,263.5,31,0.0 +15341,36,19,20,0.0 +15341,2,19,10,0.0 +15341,37,26,43,0.0 +15341,3,10,6,0.0 +15341,74,10,43,0.0 +15341,69,36,15,0.0 +15341,64,33.25,14,0.0 +15341,58,13.25,23,0.0 +15341,57,19.5,1,0.0 +15341,75,7.75,10,0.0 +15341,41,9.65,15,0.0 +15341,71,21.5,45,0.0 +15341,47,9.5,15,0.0 +15341,11,21,26,0.0 +15341,54,7.45,44,0.0 +15341,4,22,15,0.0 +15341,53,32.8,36,0.0 +15341,15,15.5,11,0.0 +15341,19,9.2,23,0.0 +15341,76,18,3,0.0 +15341,9,97,25,0.0 +15341,46,12,21,0.0 +15341,70,15,38,0.0 +15341,29,123.79,25,0.0 +15341,61,28.5,23,0.0 +15341,44,19.45,23,0.0 +15341,77,13,22,0.0 +15341,66,17,39,0.0 +15341,67,14,29,0.0 +15341,72,34.8,2,0.0 +15341,18,62.5,16,0.0 +15341,45,9.5,14,0.0 +15341,1,18,12,0.0 +15341,31,12.5,13,0.0 +15341,43,46,6,0.0 +15341,68,12.5,26,0.0 +15342,33,2.5,22,0.0 +15342,63,43.9,29,0.0 +15342,29,123.79,11,0.0 +15342,44,19.45,18,0.0 +15342,22,21,19,0.0 +15342,38,263.5,39,0.0 +15342,72,34.8,46,0.0 +15342,4,22,16,0.0 +15342,46,12,6,0.0 +15342,69,36,35,0.0 +15342,28,45.6,31,0.0 +15342,47,9.5,1,0.0 +15342,67,14,10,0.0 +15342,59,55,37,0.0 +15342,31,12.5,47,0.0 +15342,3,10,28,0.0 +15342,73,15,18,0.0 +15342,1,18,16,0.0 +15342,23,9,27,0.0 +15342,65,21.05,23,0.0 +15342,54,7.45,38,0.0 +15342,25,14,27,0.0 +15342,48,12.75,43,0.0 +15342,45,9.5,33,0.0 +15342,26,31.23,36,0.0 +15342,40,18.4,29,0.0 +15342,51,53,16,0.0 +15342,68,12.5,14,0.0 +15342,35,18,38,0.0 +15342,62,49.3,1,0.0 +15342,58,13.25,28,0.0 +15342,75,7.75,42,0.0 +15342,71,21.5,44,0.0 +15342,43,46,3,0.0 +15342,56,38,23,0.0 +15342,9,97,37,0.0 +15342,55,24,10,0.0 +15342,36,19,15,0.0 +15342,7,30,19,0.0 +15342,64,33.25,40,0.0 +15342,2,19,50,0.0 +15342,17,39,35,0.0 +15342,8,40,32,0.0 +15342,16,17.45,40,0.0 +15342,76,18,39,0.0 +15343,71,21.5,5,0.0 +15343,29,123.79,2,0.0 +15343,59,55,41,0.0 +15343,5,21.35,16,0.0 +15343,13,6,33,0.0 +15343,77,13,14,0.0 +15343,27,43.9,42,0.0 +15343,12,38,26,0.0 +15343,30,25.89,9,0.0 +15343,62,49.3,45,0.0 +15343,68,12.5,15,0.0 +15343,38,263.5,27,0.0 +15343,65,21.05,26,0.0 +15343,34,14,8,0.0 +15343,15,15.5,37,0.0 +15343,6,25,19,0.0 +15343,19,9.2,18,0.0 +15343,67,14,47,0.0 +15343,58,13.25,21,0.0 +15343,25,14,2,0.0 +15343,3,10,19,0.0 +15343,45,9.5,21,0.0 +15343,8,40,7,0.0 +15343,49,20,11,0.0 +15343,14,23.25,36,0.0 +15343,11,21,18,0.0 +15343,36,19,15,0.0 +15343,73,15,5,0.0 +15343,60,34,48,0.0 +15343,21,10,15,0.0 +15343,40,18.4,5,0.0 +15343,50,16.25,14,0.0 +15343,52,7,33,0.0 +15343,53,32.8,32,0.0 +15343,74,10,42,0.0 +15343,66,17,4,0.0 +15343,16,17.45,40,0.0 +15343,10,31,45,0.0 +15343,7,30,15,0.0 +15343,18,62.5,38,0.0 +15343,76,18,30,0.0 +15343,57,19.5,10,0.0 +15343,56,38,37,0.0 +15343,54,7.45,27,0.0 +15343,37,26,7,0.0 +15343,72,34.8,17,0.0 +15343,22,21,24,0.0 +15343,32,32,1,0.0 +15343,47,9.5,13,0.0 +15344,43,46,2,0.0 +15344,16,17.45,23,0.0 +15344,29,123.79,28,0.0 +15344,23,9,45,0.0 +15344,11,21,29,0.0 +15344,63,43.9,27,0.0 +15344,26,31.23,41,0.0 +15344,19,9.2,17,0.0 +15344,57,19.5,47,0.0 +15344,44,19.45,38,0.0 +15344,20,81,41,0.0 +15344,67,14,6,0.0 +15344,42,14,35,0.0 +15344,7,30,27,0.0 +15344,28,45.6,36,0.0 +15344,10,31,20,0.0 +15344,56,38,26,0.0 +15344,45,9.5,31,0.0 +15344,33,2.5,16,0.0 +15344,40,18.4,48,0.0 +15344,6,25,47,0.0 +15344,25,14,50,0.0 +15344,49,20,6,0.0 +15344,38,263.5,40,0.0 +15344,2,19,14,0.0 +15344,14,23.25,8,0.0 +15344,27,43.9,7,0.0 +15344,32,32,20,0.0 +15344,36,19,10,0.0 +15344,73,15,18,0.0 +15344,53,32.8,8,0.0 +15344,70,15,46,0.0 +15344,65,21.05,18,0.0 +15344,12,38,5,0.0 +15344,51,53,15,0.0 +15344,35,18,19,0.0 +15344,18,62.5,6,0.0 +15344,13,6,45,0.0 +15344,21,10,2,0.0 +15344,52,7,6,0.0 +15344,9,97,30,0.0 +15345,58,13.25,1,0.0 +15345,29,123.79,48,0.0 +15345,71,21.5,18,0.0 +15345,50,16.25,10,0.0 +15345,61,28.5,15,0.0 +15345,21,10,48,0.0 +15345,30,25.89,18,0.0 +15345,76,18,1,0.0 +15345,57,19.5,45,0.0 +15345,7,30,37,0.0 +15345,31,12.5,21,0.0 +15345,15,15.5,34,0.0 +15345,24,4.5,1,0.0 +15345,27,43.9,42,0.0 +15345,16,17.45,45,0.0 +15345,42,14,19,0.0 +15345,46,12,23,0.0 +15345,64,33.25,27,0.0 +15345,51,53,19,0.0 +15345,25,14,22,0.0 +15345,22,21,16,0.0 +15345,3,10,9,0.0 +15345,62,49.3,50,0.0 +15345,2,19,21,0.0 +15345,72,34.8,21,0.0 +15345,67,14,26,0.0 +15345,35,18,37,0.0 +15345,56,38,31,0.0 +15345,26,31.23,19,0.0 +15345,60,34,24,0.0 +15345,63,43.9,31,0.0 +15345,32,32,42,0.0 +15345,14,23.25,27,0.0 +15346,8,40,5,0.0 +15346,32,32,49,0.0 +15346,50,16.25,31,0.0 +15346,31,12.5,34,0.0 +15346,65,21.05,9,0.0 +15346,42,14,17,0.0 +15346,76,18,16,0.0 +15346,27,43.9,7,0.0 +15346,43,46,30,0.0 +15346,37,26,2,0.0 +15346,48,12.75,20,0.0 +15346,73,15,10,0.0 +15346,52,7,24,0.0 +15346,64,33.25,49,0.0 +15346,72,34.8,30,0.0 +15346,58,13.25,21,0.0 +15346,51,53,2,0.0 +15346,74,10,46,0.0 +15346,77,13,9,0.0 +15346,10,31,26,0.0 +15346,23,9,43,0.0 +15346,53,32.8,15,0.0 +15346,29,123.79,20,0.0 +15346,14,23.25,42,0.0 +15346,70,15,30,0.0 +15346,63,43.9,39,0.0 +15346,16,17.45,13,0.0 +15346,41,9.65,34,0.0 +15346,19,9.2,40,0.0 +15346,21,10,10,0.0 +15346,60,34,43,0.0 +15346,5,21.35,5,0.0 +15346,67,14,40,0.0 +15346,38,263.5,22,0.0 +15346,44,19.45,19,0.0 +15346,61,28.5,19,0.0 +15346,6,25,20,0.0 +15346,45,9.5,14,0.0 +15346,13,6,30,0.0 +15346,12,38,48,0.0 +15346,69,36,6,0.0 +15346,15,15.5,33,0.0 +15346,7,30,11,0.0 +15346,49,20,1,0.0 +15346,33,2.5,8,0.0 +15346,39,18,7,0.0 +15346,24,4.5,48,0.0 +15346,17,39,50,0.0 +15346,66,17,13,0.0 +15346,25,14,32,0.0 +15346,1,18,13,0.0 +15346,75,7.75,43,0.0 +15346,18,62.5,46,0.0 +15346,22,21,39,0.0 +15346,11,21,29,0.0 +15346,71,21.5,48,0.0 +15347,15,15.5,8,0.0 +15347,28,45.6,36,0.0 +15347,50,16.25,28,0.0 +15347,73,15,19,0.0 +15347,71,21.5,25,0.0 +15347,66,17,49,0.0 +15347,33,2.5,8,0.0 +15347,1,18,17,0.0 +15347,57,19.5,40,0.0 +15347,27,43.9,2,0.0 +15347,63,43.9,9,0.0 +15347,10,31,12,0.0 +15347,20,81,40,0.0 +15347,25,14,8,0.0 +15347,14,23.25,42,0.0 +15347,56,38,22,0.0 +15347,3,10,34,0.0 +15347,61,28.5,34,0.0 +15347,30,25.89,14,0.0 +15347,35,18,44,0.0 +15347,68,12.5,49,0.0 +15347,46,12,31,0.0 +15347,47,9.5,11,0.0 +15347,65,21.05,8,0.0 +15347,45,9.5,3,0.0 +15347,49,20,48,0.0 +15347,75,7.75,40,0.0 +15347,19,9.2,33,0.0 +15347,58,13.25,5,0.0 +15347,54,7.45,18,0.0 +15347,18,62.5,31,0.0 +15347,31,12.5,36,0.0 +15347,36,19,39,0.0 +15347,51,53,16,0.0 +15347,72,34.8,1,0.0 +15347,62,49.3,30,0.0 +15347,2,19,41,0.0 +15347,53,32.8,38,0.0 +15347,6,25,32,0.0 +15347,76,18,47,0.0 +15347,44,19.45,38,0.0 +15347,4,22,35,0.0 +15347,5,21.35,3,0.0 +15347,26,31.23,11,0.0 +15347,59,55,30,0.0 +15347,12,38,4,0.0 +15347,40,18.4,14,0.0 +15347,38,263.5,8,0.0 +15347,48,12.75,11,0.0 +15347,9,97,36,0.0 +15347,7,30,17,0.0 +15347,8,40,2,0.0 +15347,74,10,11,0.0 +15347,52,7,18,0.0 +15347,13,6,10,0.0 +15347,67,14,1,0.0 +15347,77,13,17,0.0 +15347,24,4.5,17,0.0 +15347,42,14,42,0.0 +15347,29,123.79,8,0.0 +15347,69,36,28,0.0 +15348,77,13,21,0.0 +15348,46,12,18,0.0 +15348,39,18,13,0.0 +15348,37,26,1,0.0 +15348,53,32.8,9,0.0 +15348,54,7.45,9,0.0 +15348,29,123.79,18,0.0 +15348,11,21,34,0.0 +15348,45,9.5,29,0.0 +15348,33,2.5,35,0.0 +15348,21,10,21,0.0 +15348,68,12.5,12,0.0 +15348,66,17,45,0.0 +15348,23,9,43,0.0 +15348,5,21.35,26,0.0 +15348,28,45.6,45,0.0 +15348,18,62.5,25,0.0 +15348,19,9.2,23,0.0 +15348,67,14,9,0.0 +15348,3,10,6,0.0 +15348,61,28.5,11,0.0 +15348,16,17.45,15,0.0 +15348,47,9.5,39,0.0 +15348,20,81,38,0.0 +15348,43,46,42,0.0 +15348,7,30,14,0.0 +15348,65,21.05,41,0.0 +15348,41,9.65,31,0.0 +15348,49,20,6,0.0 +15348,64,33.25,6,0.0 +15348,24,4.5,17,0.0 +15348,31,12.5,46,0.0 +15348,22,21,29,0.0 +15348,1,18,17,0.0 +15348,74,10,11,0.0 +15348,6,25,14,0.0 +15348,17,39,31,0.0 +15349,23,9,36,0.0 +15349,68,12.5,34,0.0 +15349,54,7.45,9,0.0 +15349,36,19,37,0.0 +15349,27,43.9,2,0.0 +15349,63,43.9,47,0.0 +15349,45,9.5,25,0.0 +15349,76,18,44,0.0 +15349,5,21.35,34,0.0 +15349,55,24,42,0.0 +15349,3,10,16,0.0 +15349,34,14,42,0.0 +15349,74,10,21,0.0 +15349,21,10,46,0.0 +15349,48,12.75,29,0.0 +15350,70,15,25,0.0 +15350,69,36,46,0.0 +15350,19,9.2,38,0.0 +15350,39,18,32,0.0 +15350,10,31,9,0.0 +15350,56,38,15,0.0 +15350,27,43.9,10,0.0 +15350,28,45.6,14,0.0 +15350,68,12.5,37,0.0 +15350,24,4.5,48,0.0 +15350,57,19.5,3,0.0 +15350,23,9,11,0.0 +15350,11,21,40,0.0 +15350,31,12.5,40,0.0 +15350,49,20,8,0.0 +15350,59,55,47,0.0 +15350,26,31.23,10,0.0 +15350,66,17,30,0.0 +15350,25,14,21,0.0 +15350,51,53,3,0.0 +15350,41,9.65,3,0.0 +15350,1,18,41,0.0 +15350,35,18,19,0.0 +15350,43,46,7,0.0 +15350,55,24,49,0.0 +15350,4,22,8,0.0 +15350,40,18.4,40,0.0 +15350,17,39,43,0.0 +15350,47,9.5,46,0.0 +15350,20,81,35,0.0 +15350,14,23.25,49,0.0 +15350,32,32,45,0.0 +15350,76,18,30,0.0 +15350,8,40,19,0.0 +15350,33,2.5,29,0.0 +15350,18,62.5,26,0.0 +15350,30,25.89,6,0.0 +15350,9,97,1,0.0 +15350,65,21.05,28,0.0 +15350,52,7,6,0.0 +15350,6,25,49,0.0 +15350,44,19.45,24,0.0 +15350,3,10,5,0.0 +15350,16,17.45,4,0.0 +15350,46,12,18,0.0 +15350,61,28.5,15,0.0 +15350,54,7.45,31,0.0 +15350,13,6,24,0.0 +15350,7,30,27,0.0 +15350,71,21.5,12,0.0 +15350,12,38,23,0.0 +15350,2,19,14,0.0 +15350,48,12.75,46,0.0 +15350,50,16.25,34,0.0 +15350,29,123.79,43,0.0 +15350,36,19,50,0.0 +15350,21,10,38,0.0 +15350,74,10,1,0.0 +15350,75,7.75,18,0.0 +15350,42,14,42,0.0 +15350,45,9.5,2,0.0 +15350,38,263.5,41,0.0 +15350,60,34,34,0.0 +15350,63,43.9,38,0.0 +15351,36,19,48,0.0 +15351,39,18,18,0.0 +15351,18,62.5,22,0.0 +15351,51,53,15,0.0 +15351,76,18,19,0.0 +15351,63,43.9,37,0.0 +15351,56,38,10,0.0 +15351,23,9,18,0.0 +15351,34,14,21,0.0 +15351,55,24,33,0.0 +15351,72,34.8,17,0.0 +15351,45,9.5,40,0.0 +15351,70,15,19,0.0 +15351,65,21.05,43,0.0 +15351,11,21,4,0.0 +15351,40,18.4,10,0.0 +15351,59,55,39,0.0 +15351,60,34,14,0.0 +15351,26,31.23,12,0.0 +15351,54,7.45,4,0.0 +15351,24,4.5,29,0.0 +15351,2,19,44,0.0 +15351,66,17,36,0.0 +15351,58,13.25,3,0.0 +15351,22,21,3,0.0 +15351,35,18,6,0.0 +15351,47,9.5,23,0.0 +15351,1,18,7,0.0 +15351,73,15,45,0.0 +15351,48,12.75,50,0.0 +15351,53,32.8,37,0.0 +15351,62,49.3,50,0.0 +15351,31,12.5,4,0.0 +15351,57,19.5,23,0.0 +15351,15,15.5,48,0.0 +15351,68,12.5,47,0.0 +15351,29,123.79,6,0.0 +15351,14,23.25,41,0.0 +15351,46,12,13,0.0 +15351,28,45.6,46,0.0 +15351,33,2.5,34,0.0 +15351,13,6,41,0.0 +15351,77,13,14,0.0 +15351,5,21.35,44,0.0 +15351,21,10,48,0.0 +15352,6,25,50,0.0 +15352,50,16.25,50,0.0 +15352,9,97,28,0.0 +15352,26,31.23,15,0.0 +15352,20,81,42,0.0 +15352,25,14,4,0.0 +15352,7,30,33,0.0 +15352,69,36,19,0.0 +15352,56,38,39,0.0 +15352,46,12,3,0.0 +15352,17,39,48,0.0 +15352,64,33.25,17,0.0 +15352,11,21,19,0.0 +15352,74,10,9,0.0 +15352,27,43.9,22,0.0 +15352,1,18,42,0.0 +15352,13,6,40,0.0 +15352,32,32,27,0.0 +15352,77,13,28,0.0 +15352,4,22,23,0.0 +15352,18,62.5,3,0.0 +15352,29,123.79,14,0.0 +15352,36,19,16,0.0 +15352,14,23.25,42,0.0 +15352,63,43.9,26,0.0 +15352,23,9,14,0.0 +15352,21,10,27,0.0 +15352,45,9.5,25,0.0 +15352,53,32.8,40,0.0 +15352,39,18,2,0.0 +15352,65,21.05,3,0.0 +15352,71,21.5,1,0.0 +15352,12,38,12,0.0 +15352,31,12.5,6,0.0 +15352,24,4.5,26,0.0 +15352,44,19.45,34,0.0 +15352,28,45.6,19,0.0 +15352,61,28.5,50,0.0 +15352,30,25.89,42,0.0 +15352,54,7.45,32,0.0 +15352,67,14,16,0.0 +15352,75,7.75,34,0.0 +15352,8,40,27,0.0 +15352,19,9.2,27,0.0 +15352,16,17.45,30,0.0 +15352,55,24,9,0.0 +15353,51,53,16,0.0 +15353,14,23.25,16,0.0 +15353,76,18,33,0.0 +15353,11,21,40,0.0 +15353,72,34.8,12,0.0 +15353,73,15,24,0.0 +15353,63,43.9,49,0.0 +15353,52,7,18,0.0 +15353,29,123.79,28,0.0 +15353,44,19.45,37,0.0 +15353,46,12,36,0.0 +15353,55,24,19,0.0 +15353,40,18.4,6,0.0 +15353,20,81,15,0.0 +15353,12,38,32,0.0 +15353,28,45.6,25,0.0 +15353,13,6,21,0.0 +15353,27,43.9,1,0.0 +15353,42,14,41,0.0 +15353,41,9.65,48,0.0 +15353,19,9.2,35,0.0 +15353,30,25.89,48,0.0 +15353,68,12.5,24,0.0 +15353,7,30,5,0.0 +15353,43,46,27,0.0 +15354,4,22,42,0.0 +15354,71,21.5,42,0.0 +15354,70,15,45,0.0 +15354,25,14,14,0.0 +15354,54,7.45,6,0.0 +15354,65,21.05,10,0.0 +15354,21,10,49,0.0 +15354,6,25,12,0.0 +15354,69,36,41,0.0 +15354,56,38,18,0.0 +15354,57,19.5,41,0.0 +15354,13,6,13,0.0 +15354,42,14,10,0.0 +15354,3,10,42,0.0 +15354,36,19,41,0.0 +15354,38,263.5,46,0.0 +15354,51,53,12,0.0 +15354,16,17.45,37,0.0 +15354,53,32.8,26,0.0 +15354,67,14,44,0.0 +15354,37,26,17,0.0 +15354,18,62.5,49,0.0 +15354,46,12,36,0.0 +15354,59,55,43,0.0 +15354,14,23.25,12,0.0 +15354,66,17,6,0.0 +15354,75,7.75,35,0.0 +15354,48,12.75,42,0.0 +15354,68,12.5,30,0.0 +15354,62,49.3,37,0.0 +15354,45,9.5,37,0.0 +15354,26,31.23,20,0.0 +15354,23,9,49,0.0 +15354,40,18.4,30,0.0 +15354,2,19,5,0.0 +15354,35,18,34,0.0 +15354,10,31,1,0.0 +15354,15,15.5,20,0.0 +15354,17,39,21,0.0 +15354,52,7,30,0.0 +15354,29,123.79,11,0.0 +15354,64,33.25,9,0.0 +15354,1,18,46,0.0 +15354,61,28.5,35,0.0 +15354,73,15,21,0.0 +15354,24,4.5,16,0.0 +15354,19,9.2,27,0.0 +15354,49,20,47,0.0 +15354,72,34.8,9,0.0 +15354,63,43.9,6,0.0 +15354,27,43.9,14,0.0 +15354,8,40,20,0.0 +15354,76,18,13,0.0 +15354,60,34,13,0.0 +15354,11,21,27,0.0 +15355,30,25.89,31,0.0 +15355,57,19.5,18,0.0 +15355,54,7.45,16,0.0 +15355,52,7,12,0.0 +15355,16,17.45,16,0.0 +15355,34,14,38,0.0 +15355,50,16.25,2,0.0 +15355,20,81,6,0.0 +15355,75,7.75,37,0.0 +15355,28,45.6,21,0.0 +15355,27,43.9,30,0.0 +15355,43,46,20,0.0 +15355,63,43.9,28,0.0 +15355,51,53,18,0.0 +15355,58,13.25,30,0.0 +15355,65,21.05,13,0.0 +15355,19,9.2,21,0.0 +15355,31,12.5,33,0.0 +15355,5,21.35,19,0.0 +15355,77,13,17,0.0 +15355,53,32.8,35,0.0 +15355,59,55,26,0.0 +15355,46,12,6,0.0 +15355,13,6,50,0.0 +15355,38,263.5,17,0.0 +15355,9,97,36,0.0 +15355,42,14,36,0.0 +15355,33,2.5,14,0.0 +15355,21,10,27,0.0 +15355,49,20,47,0.0 +15355,2,19,35,0.0 +15355,66,17,23,0.0 +15355,61,28.5,10,0.0 +15355,67,14,8,0.0 +15355,48,12.75,41,0.0 +15355,40,18.4,49,0.0 +15355,32,32,21,0.0 +15355,72,34.8,29,0.0 +15355,76,18,11,0.0 +15355,45,9.5,12,0.0 +15355,25,14,21,0.0 +15355,64,33.25,41,0.0 +15355,69,36,2,0.0 +15355,4,22,32,0.0 +15355,11,21,21,0.0 +15355,23,9,30,0.0 +15355,47,9.5,12,0.0 +15355,6,25,48,0.0 +15355,18,62.5,37,0.0 +15355,24,4.5,41,0.0 +15355,7,30,26,0.0 +15355,56,38,45,0.0 +15355,17,39,12,0.0 +15355,15,15.5,48,0.0 +15355,68,12.5,15,0.0 +15355,29,123.79,39,0.0 +15355,35,18,32,0.0 +15355,70,15,24,0.0 +15355,22,21,40,0.0 +15355,10,31,11,0.0 +15355,55,24,39,0.0 +15355,36,19,3,0.0 +15356,35,18,39,0.0 +15356,50,16.25,33,0.0 +15356,28,45.6,2,0.0 +15356,55,24,30,0.0 +15356,76,18,5,0.0 +15356,69,36,43,0.0 +15356,8,40,1,0.0 +15356,57,19.5,12,0.0 +15356,15,15.5,36,0.0 +15356,22,21,20,0.0 +15356,54,7.45,17,0.0 +15356,13,6,25,0.0 +15356,61,28.5,50,0.0 +15356,30,25.89,30,0.0 +15356,66,17,39,0.0 +15356,20,81,48,0.0 +15356,19,9.2,47,0.0 +15356,26,31.23,30,0.0 +15356,2,19,15,0.0 +15356,65,21.05,23,0.0 +15356,4,22,50,0.0 +15356,73,15,50,0.0 +15356,25,14,18,0.0 +15356,40,18.4,22,0.0 +15356,46,12,8,0.0 +15356,23,9,35,0.0 +15356,14,23.25,32,0.0 +15356,38,263.5,23,0.0 +15356,67,14,48,0.0 +15356,33,2.5,26,0.0 +15356,59,55,17,0.0 +15356,34,14,36,0.0 +15356,68,12.5,24,0.0 +15356,49,20,28,0.0 +15356,36,19,13,0.0 +15356,60,34,13,0.0 +15356,10,31,22,0.0 +15356,52,7,9,0.0 +15356,5,21.35,41,0.0 +15356,56,38,41,0.0 +15356,24,4.5,10,0.0 +15356,27,43.9,32,0.0 +15356,16,17.45,26,0.0 +15356,77,13,15,0.0 +15356,39,18,8,0.0 +15356,48,12.75,6,0.0 +15356,51,53,18,0.0 +15356,53,32.8,19,0.0 +15356,11,21,39,0.0 +15356,42,14,48,0.0 +15357,75,7.75,8,0.0 +15357,45,9.5,39,0.0 +15357,29,123.79,15,0.0 +15357,22,21,24,0.0 +15357,55,24,48,0.0 +15357,3,10,14,0.0 +15357,5,21.35,22,0.0 +15357,65,21.05,41,0.0 +15357,21,10,42,0.0 +15357,16,17.45,32,0.0 +15357,68,12.5,25,0.0 +15357,47,9.5,17,0.0 +15357,39,18,39,0.0 +15357,20,81,36,0.0 +15357,27,43.9,23,0.0 +15357,19,9.2,31,0.0 +15357,59,55,32,0.0 +15357,44,19.45,12,0.0 +15357,2,19,27,0.0 +15357,76,18,40,0.0 +15357,18,62.5,3,0.0 +15357,13,6,23,0.0 +15357,74,10,23,0.0 +15357,28,45.6,17,0.0 +15357,71,21.5,36,0.0 +15357,35,18,4,0.0 +15357,32,32,21,0.0 +15357,33,2.5,36,0.0 +15357,64,33.25,16,0.0 +15357,17,39,35,0.0 +15357,9,97,10,0.0 +15357,69,36,47,0.0 +15357,1,18,20,0.0 +15357,11,21,37,0.0 +15357,7,30,2,0.0 +15357,40,18.4,44,0.0 +15357,77,13,48,0.0 +15357,42,14,40,0.0 +15357,8,40,48,0.0 +15357,26,31.23,48,0.0 +15357,36,19,3,0.0 +15357,46,12,43,0.0 +15357,4,22,34,0.0 +15357,31,12.5,31,0.0 +15357,51,53,17,0.0 +15357,61,28.5,17,0.0 +15357,38,263.5,22,0.0 +15357,15,15.5,49,0.0 +15357,52,7,32,0.0 +15357,41,9.65,49,0.0 +15357,23,9,9,0.0 +15357,25,14,2,0.0 +15357,24,4.5,8,0.0 +15357,50,16.25,20,0.0 +15357,48,12.75,2,0.0 +15357,10,31,18,0.0 +15357,54,7.45,17,0.0 +15357,6,25,7,0.0 +15357,57,19.5,46,0.0 +15357,67,14,4,0.0 +15357,66,17,4,0.0 +15357,73,15,29,0.0 +15357,63,43.9,27,0.0 +15357,62,49.3,18,0.0 +15357,56,38,8,0.0 +15357,72,34.8,43,0.0 +15357,49,20,41,0.0 +15357,37,26,44,0.0 +15357,58,13.25,10,0.0 +15357,14,23.25,39,0.0 +15357,12,38,37,0.0 +15357,60,34,13,0.0 +15357,43,46,47,0.0 +15357,70,15,38,0.0 +15357,34,14,30,0.0 +15357,30,25.89,32,0.0 +15358,72,34.8,47,0.0 +15358,65,21.05,5,0.0 +15358,56,38,40,0.0 +15358,71,21.5,24,0.0 +15358,34,14,33,0.0 +15358,30,25.89,49,0.0 +15358,70,15,25,0.0 +15358,7,30,33,0.0 +15358,35,18,11,0.0 +15358,43,46,21,0.0 +15358,15,15.5,42,0.0 +15358,26,31.23,28,0.0 +15358,18,62.5,22,0.0 +15358,36,19,20,0.0 +15358,20,81,12,0.0 +15359,25,14,5,0.0 +15359,30,25.89,8,0.0 +15359,2,19,21,0.0 +15359,24,4.5,5,0.0 +15359,55,24,20,0.0 +15359,26,31.23,28,0.0 +15359,67,14,5,0.0 +15359,22,21,43,0.0 +15359,49,20,25,0.0 +15359,12,38,21,0.0 +15359,16,17.45,38,0.0 +15359,13,6,28,0.0 +15359,33,2.5,35,0.0 +15359,62,49.3,2,0.0 +15359,8,40,21,0.0 +15359,56,38,6,0.0 +15359,29,123.79,8,0.0 +15359,21,10,8,0.0 +15359,35,18,46,0.0 +15359,19,9.2,47,0.0 +15360,9,97,3,0.0 +15360,3,10,9,0.0 +15360,25,14,8,0.0 +15360,58,13.25,7,0.0 +15360,33,2.5,37,0.0 +15360,72,34.8,29,0.0 +15360,7,30,8,0.0 +15360,26,31.23,29,0.0 +15360,39,18,10,0.0 +15360,64,33.25,38,0.0 +15360,29,123.79,36,0.0 +15360,43,46,26,0.0 +15360,35,18,43,0.0 +15360,74,10,19,0.0 +15360,24,4.5,8,0.0 +15360,4,22,7,0.0 +15360,60,34,29,0.0 +15360,37,26,46,0.0 +15360,55,24,39,0.0 +15360,75,7.75,12,0.0 +15360,56,38,35,0.0 +15360,22,21,21,0.0 +15361,48,12.75,39,0.0 +15361,42,14,35,0.0 +15361,19,9.2,25,0.0 +15361,58,13.25,10,0.0 +15361,60,34,48,0.0 +15361,30,25.89,15,0.0 +15361,76,18,36,0.0 +15361,25,14,3,0.0 +15361,27,43.9,36,0.0 +15361,15,15.5,16,0.0 +15361,44,19.45,48,0.0 +15361,34,14,24,0.0 +15361,41,9.65,18,0.0 +15361,49,20,13,0.0 +15361,72,34.8,31,0.0 +15361,46,12,4,0.0 +15361,36,19,9,0.0 +15361,29,123.79,26,0.0 +15361,47,9.5,48,0.0 +15361,39,18,28,0.0 +15361,6,25,5,0.0 +15361,33,2.5,43,0.0 +15361,4,22,35,0.0 +15361,52,7,40,0.0 +15361,66,17,27,0.0 +15361,63,43.9,14,0.0 +15361,51,53,49,0.0 +15361,18,62.5,18,0.0 +15361,64,33.25,17,0.0 +15361,1,18,17,0.0 +15361,55,24,18,0.0 +15361,59,55,31,0.0 +15361,56,38,26,0.0 +15361,68,12.5,11,0.0 +15361,21,10,50,0.0 +15361,77,13,29,0.0 +15361,43,46,16,0.0 +15361,38,263.5,31,0.0 +15361,12,38,20,0.0 +15361,14,23.25,10,0.0 +15361,37,26,5,0.0 +15361,69,36,24,0.0 +15362,19,9.2,24,0.0 +15362,68,12.5,1,0.0 +15362,2,19,29,0.0 +15362,26,31.23,9,0.0 +15362,69,36,34,0.0 +15362,71,21.5,26,0.0 +15362,37,26,18,0.0 +15362,32,32,33,0.0 +15362,56,38,2,0.0 +15362,3,10,41,0.0 +15362,45,9.5,4,0.0 +15362,48,12.75,24,0.0 +15362,36,19,17,0.0 +15362,5,21.35,19,0.0 +15362,41,9.65,29,0.0 +15362,33,2.5,2,0.0 +15362,35,18,35,0.0 +15362,13,6,19,0.0 +15362,29,123.79,38,0.0 +15362,62,49.3,22,0.0 +15362,1,18,34,0.0 +15362,10,31,19,0.0 +15363,18,62.5,19,0.0 +15363,63,43.9,27,0.0 +15363,47,9.5,30,0.0 +15363,20,81,31,0.0 +15363,17,39,5,0.0 +15363,5,21.35,34,0.0 +15363,23,9,48,0.0 +15363,36,19,7,0.0 +15363,50,16.25,47,0.0 +15363,46,12,34,0.0 +15363,25,14,17,0.0 +15363,55,24,33,0.0 +15364,28,45.6,7,0.0 +15364,27,43.9,16,0.0 +15364,64,33.25,5,0.0 +15364,34,14,9,0.0 +15364,72,34.8,28,0.0 +15364,24,4.5,28,0.0 +15364,12,38,36,0.0 +15364,74,10,38,0.0 +15364,30,25.89,33,0.0 +15364,3,10,43,0.0 +15364,40,18.4,49,0.0 +15364,56,38,22,0.0 +15364,55,24,31,0.0 +15364,5,21.35,37,0.0 +15364,44,19.45,50,0.0 +15364,48,12.75,6,0.0 +15364,65,21.05,1,0.0 +15364,4,22,35,0.0 +15364,8,40,17,0.0 +15364,17,39,22,0.0 +15364,76,18,26,0.0 +15364,35,18,25,0.0 +15364,29,123.79,3,0.0 +15364,11,21,5,0.0 +15364,2,19,5,0.0 +15364,51,53,10,0.0 +15364,70,15,22,0.0 +15364,41,9.65,7,0.0 +15364,31,12.5,39,0.0 +15364,18,62.5,13,0.0 +15364,60,34,22,0.0 +15364,13,6,1,0.0 +15364,62,49.3,23,0.0 +15364,49,20,38,0.0 +15364,22,21,26,0.0 +15364,77,13,48,0.0 +15364,1,18,36,0.0 +15364,63,43.9,43,0.0 +15364,20,81,6,0.0 +15364,47,9.5,43,0.0 +15364,38,263.5,27,0.0 +15364,54,7.45,45,0.0 +15364,7,30,21,0.0 +15364,15,15.5,25,0.0 +15364,37,26,42,0.0 +15364,61,28.5,21,0.0 +15364,67,14,50,0.0 +15364,68,12.5,39,0.0 +15364,50,16.25,24,0.0 +15364,14,23.25,30,0.0 +15364,66,17,1,0.0 +15364,21,10,35,0.0 +15364,43,46,19,0.0 +15364,36,19,14,0.0 +15364,53,32.8,41,0.0 +15364,71,21.5,18,0.0 +15364,46,12,33,0.0 +15364,39,18,6,0.0 +15364,69,36,9,0.0 +15364,26,31.23,12,0.0 +15364,25,14,8,0.0 +15364,23,9,46,0.0 +15364,75,7.75,45,0.0 +15364,52,7,30,0.0 +15364,19,9.2,34,0.0 +15364,58,13.25,4,0.0 +15364,9,97,2,0.0 +15364,42,14,43,0.0 +15365,51,53,32,0.0 +15365,25,14,36,0.0 +15365,17,39,30,0.0 +15365,10,31,40,0.0 +15365,13,6,11,0.0 +15365,35,18,23,0.0 +15365,65,21.05,29,0.0 +15365,61,28.5,4,0.0 +15365,15,15.5,20,0.0 +15365,70,15,24,0.0 +15365,22,21,47,0.0 +15365,26,31.23,6,0.0 +15365,59,55,45,0.0 +15365,18,62.5,24,0.0 +15365,63,43.9,34,0.0 +15365,73,15,15,0.0 +15365,66,17,25,0.0 +15365,21,10,48,0.0 +15365,4,22,15,0.0 +15365,44,19.45,48,0.0 +15365,6,25,45,0.0 +15365,39,18,30,0.0 +15365,45,9.5,45,0.0 +15365,24,4.5,45,0.0 +15365,74,10,16,0.0 +15365,29,123.79,7,0.0 +15365,49,20,12,0.0 +15365,11,21,39,0.0 +15365,36,19,43,0.0 +15365,77,13,40,0.0 +15365,14,23.25,10,0.0 +15365,55,24,14,0.0 +15365,28,45.6,30,0.0 +15365,23,9,22,0.0 +15365,34,14,50,0.0 +15365,8,40,46,0.0 +15365,42,14,36,0.0 +15365,9,97,18,0.0 +15365,62,49.3,47,0.0 +15365,58,13.25,8,0.0 +15365,27,43.9,11,0.0 +15365,19,9.2,37,0.0 +15365,64,33.25,42,0.0 +15365,60,34,34,0.0 +15365,67,14,13,0.0 +15365,56,38,17,0.0 +15365,75,7.75,19,0.0 +15365,38,263.5,35,0.0 +15365,52,7,14,0.0 +15365,37,26,1,0.0 +15365,16,17.45,33,0.0 +15365,30,25.89,10,0.0 +15365,46,12,27,0.0 +15365,57,19.5,14,0.0 +15365,2,19,19,0.0 +15365,71,21.5,19,0.0 +15365,5,21.35,32,0.0 +15365,31,12.5,25,0.0 +15365,47,9.5,10,0.0 +15365,50,16.25,45,0.0 +15365,76,18,44,0.0 +15365,32,32,38,0.0 +15365,40,18.4,30,0.0 +15365,20,81,26,0.0 +15365,43,46,37,0.0 +15365,68,12.5,12,0.0 +15365,69,36,49,0.0 +15365,1,18,5,0.0 +15365,3,10,23,0.0 +15365,72,34.8,8,0.0 +15365,48,12.75,44,0.0 +15365,7,30,14,0.0 +15365,53,32.8,35,0.0 +15365,33,2.5,28,0.0 +15365,41,9.65,50,0.0 +15366,24,4.5,33,0.0 +15366,69,36,39,0.0 +15366,43,46,5,0.0 +15366,37,26,6,0.0 +15366,71,21.5,21,0.0 +15366,62,49.3,12,0.0 +15366,17,39,22,0.0 +15366,73,15,1,0.0 +15366,46,12,11,0.0 +15366,27,43.9,49,0.0 +15366,13,6,14,0.0 +15366,75,7.75,4,0.0 +15366,36,19,7,0.0 +15366,7,30,28,0.0 +15366,54,7.45,21,0.0 +15366,33,2.5,34,0.0 +15366,44,19.45,20,0.0 +15366,70,15,26,0.0 +15366,10,31,2,0.0 +15366,1,18,15,0.0 +15366,22,21,27,0.0 +15366,9,97,23,0.0 +15366,76,18,49,0.0 +15366,32,32,46,0.0 +15366,18,62.5,9,0.0 +15366,61,28.5,27,0.0 +15366,51,53,34,0.0 +15366,3,10,34,0.0 +15366,30,25.89,50,0.0 +15366,72,34.8,25,0.0 +15366,58,13.25,47,0.0 +15366,60,34,12,0.0 +15366,12,38,26,0.0 +15366,77,13,21,0.0 +15366,16,17.45,16,0.0 +15366,68,12.5,29,0.0 +15366,15,15.5,37,0.0 +15366,56,38,49,0.0 +15366,64,33.25,48,0.0 +15366,25,14,7,0.0 +15366,50,16.25,16,0.0 +15366,47,9.5,1,0.0 +15366,66,17,44,0.0 +15366,67,14,43,0.0 +15366,49,20,27,0.0 +15366,45,9.5,50,0.0 +15366,31,12.5,38,0.0 +15366,57,19.5,16,0.0 +15366,41,9.65,19,0.0 +15366,4,22,15,0.0 +15366,53,32.8,32,0.0 +15366,26,31.23,24,0.0 +15366,63,43.9,50,0.0 +15366,2,19,38,0.0 +15367,43,46,28,0.0 +15367,42,14,20,0.0 +15367,49,20,15,0.0 +15367,17,39,11,0.0 +15367,52,7,18,0.0 +15367,21,10,22,0.0 +15367,22,21,13,0.0 +15367,68,12.5,48,0.0 +15367,56,38,47,0.0 +15367,63,43.9,32,0.0 +15367,70,15,27,0.0 +15367,29,123.79,11,0.0 +15367,20,81,28,0.0 +15367,66,17,7,0.0 +15367,35,18,46,0.0 +15367,47,9.5,2,0.0 +15367,62,49.3,37,0.0 +15367,1,18,19,0.0 +15367,64,33.25,43,0.0 +15367,48,12.75,35,0.0 +15367,51,53,6,0.0 +15367,12,38,3,0.0 +15367,54,7.45,19,0.0 +15367,41,9.65,38,0.0 +15367,75,7.75,2,0.0 +15367,33,2.5,20,0.0 +15367,45,9.5,28,0.0 +15367,2,19,9,0.0 +15367,50,16.25,29,0.0 +15367,13,6,40,0.0 +15367,34,14,38,0.0 +15367,26,31.23,8,0.0 +15367,6,25,44,0.0 +15367,9,97,41,0.0 +15367,53,32.8,9,0.0 +15367,60,34,3,0.0 +15367,46,12,27,0.0 +15367,11,21,27,0.0 +15367,30,25.89,5,0.0 +15367,36,19,38,0.0 +15367,76,18,42,0.0 +15367,71,21.5,48,0.0 +15367,67,14,32,0.0 +15367,57,19.5,50,0.0 +15367,61,28.5,26,0.0 +15367,65,21.05,4,0.0 +15367,15,15.5,18,0.0 +15367,14,23.25,16,0.0 +15367,28,45.6,2,0.0 +15367,37,26,24,0.0 +15367,77,13,4,0.0 +15367,38,263.5,49,0.0 +15367,74,10,6,0.0 +15367,39,18,49,0.0 +15367,44,19.45,19,0.0 +15367,25,14,13,0.0 +15367,16,17.45,28,0.0 +15367,31,12.5,43,0.0 +15367,69,36,30,0.0 +15367,5,21.35,47,0.0 +15367,40,18.4,16,0.0 +15367,27,43.9,13,0.0 +15367,3,10,18,0.0 +15368,53,32.8,14,0.0 +15368,61,28.5,29,0.0 +15368,69,36,36,0.0 +15368,20,81,43,0.0 +15368,47,9.5,38,0.0 +15368,58,13.25,14,0.0 +15368,24,4.5,7,0.0 +15368,43,46,36,0.0 +15368,64,33.25,35,0.0 +15368,45,9.5,32,0.0 +15368,31,12.5,42,0.0 +15368,21,10,20,0.0 +15368,22,21,37,0.0 +15368,56,38,4,0.0 +15368,35,18,32,0.0 +15368,9,97,43,0.0 +15368,18,62.5,34,0.0 +15368,19,9.2,28,0.0 +15368,46,12,7,0.0 +15368,73,15,41,0.0 +15368,17,39,8,0.0 +15368,48,12.75,33,0.0 +15368,12,38,29,0.0 +15368,32,32,40,0.0 +15368,50,16.25,49,0.0 +15368,60,34,31,0.0 +15368,38,263.5,20,0.0 +15368,76,18,33,0.0 +15368,51,53,39,0.0 +15368,7,30,47,0.0 +15369,31,12.5,48,0.0 +15369,4,22,40,0.0 +15369,62,49.3,31,0.0 +15369,1,18,21,0.0 +15369,37,26,30,0.0 +15369,50,16.25,4,0.0 +15369,68,12.5,9,0.0 +15369,69,36,13,0.0 +15369,76,18,5,0.0 +15369,47,9.5,1,0.0 +15369,9,97,17,0.0 +15369,12,38,5,0.0 +15369,26,31.23,1,0.0 +15370,26,31.23,23,0.0 +15370,9,97,13,0.0 +15370,19,9.2,11,0.0 +15371,10,31,12,0.0 +15371,26,31.23,11,0.0 +15371,46,12,15,0.0 +15371,40,18.4,40,0.0 +15371,12,38,36,0.0 +15371,29,123.79,30,0.0 +15371,11,21,12,0.0 +15371,47,9.5,49,0.0 +15371,60,34,27,0.0 +15371,4,22,1,0.0 +15371,5,21.35,47,0.0 +15371,31,12.5,7,0.0 +15371,38,263.5,25,0.0 +15371,24,4.5,30,0.0 +15371,69,36,14,0.0 +15371,42,14,25,0.0 +15371,73,15,45,0.0 +15371,75,7.75,5,0.0 +15371,7,30,2,0.0 +15371,67,14,29,0.0 +15371,70,15,4,0.0 +15371,32,32,49,0.0 +15371,72,34.8,21,0.0 +15371,1,18,36,0.0 +15371,23,9,45,0.0 +15371,13,6,31,0.0 +15371,33,2.5,3,0.0 +15371,45,9.5,1,0.0 +15371,34,14,48,0.0 +15372,75,7.75,16,0.0 +15372,71,21.5,23,0.0 +15372,67,14,15,0.0 +15372,60,34,9,0.0 +15372,21,10,17,0.0 +15372,34,14,2,0.0 +15372,58,13.25,10,0.0 +15372,9,97,29,0.0 +15372,14,23.25,39,0.0 +15372,18,62.5,24,0.0 +15372,12,38,19,0.0 +15372,30,25.89,50,0.0 +15372,7,30,31,0.0 +15372,62,49.3,11,0.0 +15372,74,10,42,0.0 +15372,57,19.5,38,0.0 +15373,41,9.65,15,0.0 +15373,5,21.35,12,0.0 +15373,26,31.23,40,0.0 +15373,66,17,47,0.0 +15373,71,21.5,44,0.0 +15373,75,7.75,30,0.0 +15374,44,19.45,37,0.0 +15374,27,43.9,16,0.0 +15374,19,9.2,31,0.0 +15374,5,21.35,36,0.0 +15374,30,25.89,25,0.0 +15374,60,34,6,0.0 +15374,55,24,13,0.0 +15374,70,15,30,0.0 +15374,23,9,9,0.0 +15374,75,7.75,44,0.0 +15374,51,53,46,0.0 +15374,9,97,15,0.0 +15374,50,16.25,40,0.0 +15374,49,20,14,0.0 +15374,66,17,7,0.0 +15374,37,26,46,0.0 +15374,33,2.5,12,0.0 +15374,53,32.8,12,0.0 +15374,54,7.45,34,0.0 +15374,46,12,19,0.0 +15374,31,12.5,39,0.0 +15374,62,49.3,30,0.0 +15374,68,12.5,29,0.0 +15374,73,15,3,0.0 +15374,61,28.5,47,0.0 +15374,74,10,49,0.0 +15374,28,45.6,48,0.0 +15374,1,18,35,0.0 +15374,52,7,41,0.0 +15374,41,9.65,46,0.0 +15374,12,38,32,0.0 +15374,8,40,48,0.0 +15375,8,40,13,0.0 +15375,14,23.25,24,0.0 +15375,47,9.5,25,0.0 +15375,36,19,26,0.0 +15375,49,20,25,0.0 +15375,56,38,26,0.0 +15375,51,53,43,0.0 +15375,1,18,47,0.0 +15375,52,7,4,0.0 +15375,32,32,4,0.0 +15375,43,46,5,0.0 +15375,65,21.05,12,0.0 +15375,77,13,11,0.0 +15375,17,39,12,0.0 +15375,23,9,7,0.0 +15375,63,43.9,32,0.0 +15375,70,15,16,0.0 +15375,21,10,16,0.0 +15375,59,55,40,0.0 +15375,40,18.4,21,0.0 +15375,5,21.35,12,0.0 +15375,76,18,29,0.0 +15375,19,9.2,34,0.0 +15375,9,97,47,0.0 +15375,74,10,13,0.0 +15375,38,263.5,32,0.0 +15375,26,31.23,38,0.0 +15375,6,25,48,0.0 +15375,68,12.5,49,0.0 +15375,18,62.5,16,0.0 +15375,45,9.5,25,0.0 +15375,60,34,15,0.0 +15376,34,14,7,0.0 +15376,33,2.5,47,0.0 +15376,52,7,7,0.0 +15376,51,53,30,0.0 +15376,77,13,44,0.0 +15376,24,4.5,36,0.0 +15376,35,18,19,0.0 +15376,62,49.3,23,0.0 +15376,73,15,7,0.0 +15376,16,17.45,43,0.0 +15376,66,17,36,0.0 +15376,59,55,17,0.0 +15376,38,263.5,41,0.0 +15376,7,30,4,0.0 +15377,7,30,8,0.0 +15377,51,53,40,0.0 +15377,11,21,20,0.0 +15377,29,123.79,38,0.0 +15377,5,21.35,29,0.0 +15377,55,24,18,0.0 +15377,1,18,37,0.0 +15377,59,55,30,0.0 +15377,43,46,25,0.0 +15377,13,6,41,0.0 +15377,30,25.89,49,0.0 +15377,23,9,9,0.0 +15377,76,18,8,0.0 +15377,26,31.23,8,0.0 +15377,17,39,17,0.0 +15377,49,20,18,0.0 +15377,9,97,34,0.0 +15377,74,10,2,0.0 +15377,53,32.8,15,0.0 +15377,68,12.5,18,0.0 +15377,2,19,47,0.0 +15377,52,7,14,0.0 +15377,6,25,19,0.0 +15377,71,21.5,28,0.0 +15377,19,9.2,5,0.0 +15377,42,14,41,0.0 +15377,45,9.5,9,0.0 +15377,72,34.8,13,0.0 +15377,35,18,14,0.0 +15377,67,14,29,0.0 +15377,31,12.5,11,0.0 +15377,36,19,50,0.0 +15377,12,38,30,0.0 +15377,61,28.5,29,0.0 +15377,50,16.25,21,0.0 +15377,16,17.45,46,0.0 +15377,20,81,13,0.0 +15377,48,12.75,20,0.0 +15377,40,18.4,17,0.0 +15377,27,43.9,41,0.0 +15377,58,13.25,7,0.0 +15377,47,9.5,49,0.0 +15377,10,31,45,0.0 +15377,46,12,10,0.0 +15377,64,33.25,45,0.0 +15377,24,4.5,36,0.0 +15377,54,7.45,33,0.0 +15377,56,38,42,0.0 +15377,65,21.05,11,0.0 +15377,32,32,28,0.0 +15377,69,36,31,0.0 +15377,28,45.6,17,0.0 +15377,60,34,7,0.0 +15377,18,62.5,9,0.0 +15377,73,15,45,0.0 +15377,15,15.5,8,0.0 +15377,62,49.3,32,0.0 +15377,70,15,40,0.0 +15377,25,14,50,0.0 +15378,8,40,12,0.0 +15378,30,25.89,31,0.0 +15378,27,43.9,12,0.0 +15378,21,10,50,0.0 +15378,20,81,26,0.0 +15378,60,34,35,0.0 +15378,55,24,31,0.0 +15378,68,12.5,31,0.0 +15378,28,45.6,7,0.0 +15378,57,19.5,35,0.0 +15378,65,21.05,48,0.0 +15378,72,34.8,36,0.0 +15378,53,32.8,25,0.0 +15378,52,7,7,0.0 +15379,19,9.2,23,0.0 +15379,33,2.5,34,0.0 +15379,72,34.8,32,0.0 +15379,44,19.45,47,0.0 +15379,10,31,5,0.0 +15379,35,18,18,0.0 +15379,48,12.75,44,0.0 +15379,18,62.5,9,0.0 +15379,66,17,38,0.0 +15379,70,15,37,0.0 +15379,40,18.4,27,0.0 +15379,54,7.45,13,0.0 +15379,7,30,3,0.0 +15379,36,19,32,0.0 +15379,51,53,34,0.0 +15379,22,21,24,0.0 +15379,56,38,20,0.0 +15379,9,97,1,0.0 +15379,15,15.5,13,0.0 +15379,17,39,24,0.0 +15379,12,38,18,0.0 +15379,2,19,25,0.0 +15379,25,14,47,0.0 +15379,16,17.45,24,0.0 +15379,31,12.5,6,0.0 +15379,21,10,34,0.0 +15379,67,14,45,0.0 +15379,45,9.5,29,0.0 +15379,71,21.5,14,0.0 +15379,29,123.79,18,0.0 +15379,8,40,45,0.0 +15379,64,33.25,50,0.0 +15379,77,13,4,0.0 +15379,34,14,5,0.0 +15379,27,43.9,19,0.0 +15379,47,9.5,36,0.0 +15379,52,7,26,0.0 +15379,55,24,22,0.0 +15379,46,12,17,0.0 +15379,38,263.5,24,0.0 +15379,68,12.5,38,0.0 +15379,13,6,34,0.0 +15379,69,36,28,0.0 +15379,63,43.9,16,0.0 +15379,14,23.25,12,0.0 +15379,61,28.5,17,0.0 +15379,3,10,24,0.0 +15379,41,9.65,26,0.0 +15379,65,21.05,43,0.0 +15379,24,4.5,10,0.0 +15379,74,10,35,0.0 +15379,62,49.3,13,0.0 +15379,76,18,22,0.0 +15379,37,26,40,0.0 +15379,42,14,33,0.0 +15379,60,34,43,0.0 +15379,75,7.75,33,0.0 +15379,49,20,50,0.0 +15379,4,22,43,0.0 +15379,53,32.8,11,0.0 +15379,1,18,12,0.0 +15379,28,45.6,47,0.0 +15379,30,25.89,30,0.0 +15379,5,21.35,47,0.0 +15379,59,55,19,0.0 +15379,57,19.5,18,0.0 +15379,11,21,26,0.0 +15379,6,25,5,0.0 +15379,39,18,47,0.0 +15379,26,31.23,19,0.0 +15379,43,46,20,0.0 +15379,32,32,32,0.0 +15379,58,13.25,48,0.0 +15380,44,19.45,24,0.0 +15380,35,18,38,0.0 +15380,23,9,39,0.0 +15380,76,18,4,0.0 +15380,5,21.35,11,0.0 +15380,48,12.75,32,0.0 +15380,13,6,34,0.0 +15380,73,15,7,0.0 +15380,9,97,4,0.0 +15380,55,24,14,0.0 +15380,53,32.8,48,0.0 +15380,43,46,44,0.0 +15380,72,34.8,21,0.0 +15380,57,19.5,10,0.0 +15380,34,14,19,0.0 +15380,67,14,22,0.0 +15380,68,12.5,26,0.0 +15380,36,19,3,0.0 +15380,50,16.25,42,0.0 +15380,65,21.05,2,0.0 +15380,77,13,2,0.0 +15380,25,14,9,0.0 +15380,66,17,25,0.0 +15380,22,21,26,0.0 +15380,58,13.25,44,0.0 +15380,32,32,12,0.0 +15380,64,33.25,28,0.0 +15380,28,45.6,4,0.0 +15380,41,9.65,36,0.0 +15380,8,40,8,0.0 +15380,16,17.45,43,0.0 +15380,75,7.75,48,0.0 +15380,27,43.9,38,0.0 +15380,21,10,44,0.0 +15380,26,31.23,22,0.0 +15380,11,21,7,0.0 +15380,51,53,39,0.0 +15380,63,43.9,40,0.0 +15380,6,25,15,0.0 +15380,1,18,50,0.0 +15380,60,34,48,0.0 +15380,19,9.2,7,0.0 +15380,18,62.5,24,0.0 +15380,2,19,26,0.0 +15380,12,38,12,0.0 +15380,39,18,46,0.0 +15380,20,81,30,0.0 +15380,46,12,1,0.0 +15380,69,36,41,0.0 +15380,10,31,34,0.0 +15380,7,30,50,0.0 +15380,59,55,26,0.0 +15380,56,38,47,0.0 +15380,70,15,42,0.0 +15380,37,26,46,0.0 +15380,3,10,37,0.0 +15380,4,22,47,0.0 +15380,29,123.79,3,0.0 +15380,33,2.5,37,0.0 +15380,40,18.4,11,0.0 +15380,14,23.25,24,0.0 +15380,49,20,39,0.0 +15381,46,12,38,0.0 +15381,10,31,6,0.0 +15381,36,19,46,0.0 +15381,21,10,19,0.0 +15381,29,123.79,4,0.0 +15381,65,21.05,32,0.0 +15381,54,7.45,10,0.0 +15381,55,24,46,0.0 +15381,11,21,9,0.0 +15381,16,17.45,18,0.0 +15381,67,14,28,0.0 +15381,5,21.35,3,0.0 +15382,75,7.75,31,0.0 +15382,36,19,44,0.0 +15382,24,4.5,50,0.0 +15382,39,18,49,0.0 +15382,6,25,44,0.0 +15383,2,19,46,0.0 +15383,41,9.65,26,0.0 +15383,56,38,50,0.0 +15383,32,32,45,0.0 +15383,48,12.75,19,0.0 +15383,33,2.5,47,0.0 +15383,13,6,32,0.0 +15383,66,17,42,0.0 +15383,31,12.5,16,0.0 +15383,55,24,27,0.0 +15383,72,34.8,45,0.0 +15383,35,18,23,0.0 +15383,68,12.5,42,0.0 +15383,53,32.8,35,0.0 +15383,5,21.35,8,0.0 +15383,75,7.75,9,0.0 +15383,18,62.5,16,0.0 +15383,50,16.25,18,0.0 +15383,51,53,44,0.0 +15383,77,13,28,0.0 +15383,20,81,41,0.0 +15383,58,13.25,42,0.0 +15383,47,9.5,7,0.0 +15383,9,97,25,0.0 +15383,71,21.5,42,0.0 +15383,4,22,3,0.0 +15383,52,7,31,0.0 +15383,12,38,27,0.0 +15383,28,45.6,23,0.0 +15383,25,14,18,0.0 +15383,23,9,33,0.0 +15383,43,46,16,0.0 +15383,57,19.5,28,0.0 +15384,10,31,14,0.0 +15384,46,12,45,0.0 +15384,74,10,49,0.0 +15384,52,7,34,0.0 +15384,13,6,15,0.0 +15384,14,23.25,31,0.0 +15384,11,21,28,0.0 +15384,60,34,15,0.0 +15384,27,43.9,3,0.0 +15384,26,31.23,8,0.0 +15384,64,33.25,44,0.0 +15384,31,12.5,35,0.0 +15384,65,21.05,28,0.0 +15384,57,19.5,45,0.0 +15384,37,26,17,0.0 +15384,68,12.5,40,0.0 +15384,40,18.4,42,0.0 +15384,63,43.9,45,0.0 +15384,66,17,15,0.0 +15384,28,45.6,33,0.0 +15384,22,21,38,0.0 +15384,62,49.3,4,0.0 +15384,19,9.2,14,0.0 +15384,54,7.45,34,0.0 +15384,33,2.5,28,0.0 +15384,48,12.75,34,0.0 +15384,2,19,10,0.0 +15385,73,15,3,0.0 +15385,24,4.5,37,0.0 +15385,8,40,45,0.0 +15385,52,7,2,0.0 +15385,18,62.5,48,0.0 +15385,3,10,34,0.0 +15385,4,22,3,0.0 +15385,49,20,1,0.0 +15385,34,14,5,0.0 +15385,60,34,10,0.0 +15385,59,55,46,0.0 +15385,37,26,31,0.0 +15385,1,18,47,0.0 +15385,31,12.5,30,0.0 +15385,41,9.65,33,0.0 +15385,72,34.8,7,0.0 +15385,13,6,35,0.0 +15385,44,19.45,2,0.0 +15385,17,39,33,0.0 +15385,40,18.4,7,0.0 +15385,15,15.5,31,0.0 +15385,14,23.25,48,0.0 +15385,39,18,5,0.0 +15385,68,12.5,21,0.0 +15385,30,25.89,31,0.0 +15385,16,17.45,3,0.0 +15385,43,46,12,0.0 +15385,65,21.05,11,0.0 +15385,19,9.2,41,0.0 +15385,77,13,38,0.0 +15385,21,10,28,0.0 +15385,7,30,19,0.0 +15385,32,32,1,0.0 +15385,62,49.3,48,0.0 +15385,76,18,25,0.0 +15386,8,40,2,0.0 +15386,64,33.25,40,0.0 +15386,28,45.6,43,0.0 +15386,25,14,45,0.0 +15386,59,55,6,0.0 +15386,41,9.65,17,0.0 +15386,42,14,47,0.0 +15386,67,14,14,0.0 +15386,72,34.8,26,0.0 +15386,24,4.5,34,0.0 +15386,53,32.8,22,0.0 +15386,16,17.45,10,0.0 +15386,33,2.5,24,0.0 +15386,30,25.89,27,0.0 +15386,17,39,34,0.0 +15386,40,18.4,7,0.0 +15386,12,38,20,0.0 +15386,44,19.45,37,0.0 +15386,65,21.05,33,0.0 +15386,52,7,4,0.0 +15386,43,46,41,0.0 +15386,39,18,2,0.0 +15386,23,9,45,0.0 +15386,77,13,27,0.0 +15386,34,14,6,0.0 +15386,70,15,40,0.0 +15386,47,9.5,3,0.0 +15386,32,32,48,0.0 +15386,9,97,36,0.0 +15386,58,13.25,21,0.0 +15386,21,10,27,0.0 +15386,4,22,21,0.0 +15386,10,31,5,0.0 +15386,27,43.9,30,0.0 +15387,66,17,2,0.0 +15387,46,12,24,0.0 +15387,7,30,45,0.0 +15387,74,10,45,0.0 +15387,64,33.25,41,0.0 +15387,40,18.4,45,0.0 +15387,29,123.79,6,0.0 +15387,22,21,49,0.0 +15387,6,25,47,0.0 +15387,72,34.8,29,0.0 +15387,9,97,13,0.0 +15387,38,263.5,3,0.0 +15387,27,43.9,43,0.0 +15387,33,2.5,24,0.0 +15387,39,18,48,0.0 +15387,2,19,36,0.0 +15387,53,32.8,39,0.0 +15387,77,13,24,0.0 +15387,25,14,6,0.0 +15387,47,9.5,46,0.0 +15387,5,21.35,20,0.0 +15387,20,81,26,0.0 +15387,18,62.5,32,0.0 +15387,35,18,14,0.0 +15387,42,14,35,0.0 +15387,17,39,41,0.0 +15387,26,31.23,29,0.0 +15387,58,13.25,45,0.0 +15387,45,9.5,11,0.0 +15387,28,45.6,49,0.0 +15387,31,12.5,26,0.0 +15387,43,46,42,0.0 +15387,13,6,49,0.0 +15387,71,21.5,4,0.0 +15387,48,12.75,35,0.0 +15387,52,7,39,0.0 +15387,56,38,13,0.0 +15387,3,10,39,0.0 +15387,55,24,23,0.0 +15387,16,17.45,12,0.0 +15387,51,53,47,0.0 +15387,32,32,34,0.0 +15387,24,4.5,42,0.0 +15387,10,31,42,0.0 +15387,54,7.45,43,0.0 +15387,44,19.45,39,0.0 +15387,8,40,16,0.0 +15387,21,10,17,0.0 +15387,36,19,22,0.0 +15387,12,38,39,0.0 +15387,15,15.5,7,0.0 +15387,34,14,18,0.0 +15387,41,9.65,27,0.0 +15387,11,21,2,0.0 +15387,19,9.2,12,0.0 +15387,63,43.9,47,0.0 +15387,4,22,19,0.0 +15387,49,20,2,0.0 +15387,30,25.89,18,0.0 +15387,75,7.75,1,0.0 +15387,37,26,20,0.0 +15387,65,21.05,5,0.0 +15387,60,34,11,0.0 +15387,1,18,9,0.0 +15387,76,18,25,0.0 +15387,14,23.25,32,0.0 +15387,57,19.5,5,0.0 +15387,50,16.25,10,0.0 +15387,69,36,1,0.0 +15387,61,28.5,16,0.0 +15387,73,15,39,0.0 +15387,68,12.5,35,0.0 +15387,67,14,42,0.0 +15387,59,55,39,0.0 +15388,20,81,13,0.0 +15388,30,25.89,19,0.0 +15388,56,38,1,0.0 +15388,25,14,25,0.0 +15388,60,34,39,0.0 +15388,5,21.35,25,0.0 +15388,34,14,2,0.0 +15388,8,40,17,0.0 +15388,31,12.5,28,0.0 +15388,29,123.79,37,0.0 +15388,22,21,37,0.0 +15388,53,32.8,37,0.0 +15388,66,17,32,0.0 +15388,52,7,2,0.0 +15388,38,263.5,49,0.0 +15388,2,19,35,0.0 +15389,58,13.25,3,0.0 +15389,17,39,31,0.0 +15389,62,49.3,35,0.0 +15389,40,18.4,34,0.0 +15389,65,21.05,40,0.0 +15389,33,2.5,25,0.0 +15389,47,9.5,4,0.0 +15389,39,18,6,0.0 +15389,41,9.65,35,0.0 +15389,53,32.8,32,0.0 +15389,27,43.9,22,0.0 +15389,57,19.5,31,0.0 +15389,48,12.75,9,0.0 +15389,14,23.25,41,0.0 +15389,32,32,4,0.0 +15389,46,12,43,0.0 +15389,56,38,20,0.0 +15389,77,13,2,0.0 +15389,75,7.75,9,0.0 +15389,38,263.5,21,0.0 +15389,2,19,27,0.0 +15389,52,7,22,0.0 +15389,9,97,19,0.0 +15389,15,15.5,47,0.0 +15389,28,45.6,11,0.0 +15389,1,18,45,0.0 +15389,13,6,13,0.0 +15389,71,21.5,16,0.0 +15389,44,19.45,1,0.0 +15389,12,38,39,0.0 +15389,70,15,40,0.0 +15389,61,28.5,11,0.0 +15389,25,14,37,0.0 +15389,24,4.5,10,0.0 +15389,26,31.23,34,0.0 +15389,64,33.25,6,0.0 +15389,73,15,49,0.0 +15389,63,43.9,36,0.0 +15389,19,9.2,22,0.0 +15389,36,19,8,0.0 +15389,37,26,46,0.0 +15389,7,30,13,0.0 +15389,18,62.5,20,0.0 +15389,43,46,8,0.0 +15389,76,18,32,0.0 +15389,23,9,47,0.0 +15389,49,20,37,0.0 +15389,16,17.45,12,0.0 +15389,59,55,31,0.0 +15389,35,18,40,0.0 +15389,51,53,37,0.0 +15389,42,14,14,0.0 +15389,68,12.5,20,0.0 +15389,66,17,40,0.0 +15389,50,16.25,25,0.0 +15389,31,12.5,32,0.0 +15389,60,34,33,0.0 +15389,69,36,39,0.0 +15389,54,7.45,28,0.0 +15389,30,25.89,21,0.0 +15389,45,9.5,9,0.0 +15389,8,40,48,0.0 +15389,3,10,49,0.0 +15389,34,14,47,0.0 +15389,6,25,33,0.0 +15389,72,34.8,46,0.0 +15389,29,123.79,23,0.0 +15389,5,21.35,7,0.0 +15389,55,24,39,0.0 +15389,22,21,40,0.0 +15389,11,21,47,0.0 +15389,67,14,35,0.0 +15389,74,10,50,0.0 +15390,30,25.89,4,0.0 +15390,74,10,7,0.0 +15390,38,263.5,18,0.0 +15390,55,24,33,0.0 +15390,71,21.5,41,0.0 +15390,42,14,1,0.0 +15390,25,14,8,0.0 +15390,7,30,2,0.0 +15390,16,17.45,9,0.0 +15390,52,7,50,0.0 +15390,5,21.35,42,0.0 +15390,13,6,47,0.0 +15390,29,123.79,32,0.0 +15390,56,38,39,0.0 +15390,48,12.75,14,0.0 +15390,45,9.5,25,0.0 +15390,3,10,16,0.0 +15390,4,22,42,0.0 +15390,20,81,6,0.0 +15390,15,15.5,43,0.0 +15390,68,12.5,10,0.0 +15390,41,9.65,37,0.0 +15390,61,28.5,16,0.0 +15390,28,45.6,4,0.0 +15390,43,46,31,0.0 +15390,63,43.9,50,0.0 +15390,18,62.5,31,0.0 +15390,14,23.25,37,0.0 +15390,2,19,20,0.0 +15390,19,9.2,48,0.0 +15390,67,14,50,0.0 +15390,75,7.75,50,0.0 +15390,31,12.5,15,0.0 +15390,26,31.23,30,0.0 +15390,22,21,27,0.0 +15390,6,25,18,0.0 +15390,8,40,40,0.0 +15390,58,13.25,25,0.0 +15390,40,18.4,18,0.0 +15390,33,2.5,27,0.0 +15390,44,19.45,15,0.0 +15390,64,33.25,47,0.0 +15390,51,53,8,0.0 +15390,24,4.5,37,0.0 +15390,11,21,39,0.0 +15390,23,9,22,0.0 +15390,66,17,44,0.0 +15390,39,18,31,0.0 +15390,72,34.8,41,0.0 +15390,57,19.5,36,0.0 +15390,76,18,4,0.0 +15390,34,14,5,0.0 +15390,10,31,42,0.0 +15390,77,13,42,0.0 +15390,69,36,15,0.0 +15390,54,7.45,19,0.0 +15390,27,43.9,11,0.0 +15390,50,16.25,36,0.0 +15390,47,9.5,8,0.0 +15390,9,97,26,0.0 +15390,62,49.3,20,0.0 +15390,59,55,11,0.0 +15390,32,32,42,0.0 +15390,53,32.8,42,0.0 +15390,65,21.05,25,0.0 +15390,60,34,1,0.0 +15390,36,19,2,0.0 +15390,17,39,23,0.0 +15390,1,18,13,0.0 +15390,37,26,21,0.0 +15390,12,38,7,0.0 +15390,73,15,29,0.0 +15390,35,18,17,0.0 +15390,49,20,34,0.0 +15390,21,10,32,0.0 +15390,46,12,15,0.0 +15390,70,15,48,0.0 +15391,48,12.75,13,0.0 +15391,71,21.5,32,0.0 +15391,15,15.5,40,0.0 +15391,77,13,43,0.0 +15391,40,18.4,38,0.0 +15391,55,24,4,0.0 +15391,68,12.5,45,0.0 +15391,30,25.89,33,0.0 +15391,58,13.25,34,0.0 +15391,72,34.8,48,0.0 +15391,1,18,7,0.0 +15391,22,21,30,0.0 +15391,65,21.05,39,0.0 +15391,31,12.5,34,0.0 +15391,49,20,1,0.0 +15391,20,81,28,0.0 +15391,50,16.25,35,0.0 +15392,49,20,8,0.0 +15392,48,12.75,43,0.0 +15392,5,21.35,49,0.0 +15392,39,18,48,0.0 +15392,46,12,21,0.0 +15392,28,45.6,8,0.0 +15392,23,9,3,0.0 +15392,72,34.8,50,0.0 +15392,66,17,11,0.0 +15392,50,16.25,18,0.0 +15392,63,43.9,22,0.0 +15392,67,14,12,0.0 +15392,65,21.05,8,0.0 +15392,17,39,49,0.0 +15392,44,19.45,32,0.0 +15393,66,17,39,0.0 +15393,5,21.35,8,0.0 +15393,28,45.6,3,0.0 +15393,29,123.79,39,0.0 +15393,43,46,24,0.0 +15393,21,10,11,0.0 +15393,75,7.75,13,0.0 +15393,23,9,25,0.0 +15393,10,31,2,0.0 +15393,17,39,1,0.0 +15393,63,43.9,11,0.0 +15393,73,15,8,0.0 +15393,25,14,23,0.0 +15393,54,7.45,41,0.0 +15393,67,14,31,0.0 +15393,61,28.5,17,0.0 +15393,42,14,1,0.0 +15393,59,55,36,0.0 +15393,51,53,3,0.0 +15393,4,22,33,0.0 +15393,6,25,35,0.0 +15393,74,10,37,0.0 +15393,46,12,41,0.0 +15393,40,18.4,42,0.0 +15393,13,6,45,0.0 +15393,18,62.5,50,0.0 +15393,44,19.45,26,0.0 +15393,7,30,27,0.0 +15393,41,9.65,11,0.0 +15393,70,15,47,0.0 +15393,19,9.2,8,0.0 +15393,77,13,4,0.0 +15393,3,10,46,0.0 +15393,2,19,19,0.0 +15393,36,19,34,0.0 +15393,60,34,27,0.0 +15393,56,38,4,0.0 +15393,52,7,22,0.0 +15393,8,40,26,0.0 +15393,22,21,34,0.0 +15393,26,31.23,23,0.0 +15393,69,36,17,0.0 +15393,24,4.5,8,0.0 +15393,62,49.3,4,0.0 +15393,58,13.25,29,0.0 +15393,34,14,19,0.0 +15393,49,20,12,0.0 +15393,14,23.25,14,0.0 +15393,32,32,27,0.0 +15393,76,18,14,0.0 +15393,45,9.5,31,0.0 +15393,55,24,8,0.0 +15393,72,34.8,24,0.0 +15393,39,18,48,0.0 +15393,53,32.8,43,0.0 +15393,33,2.5,27,0.0 +15393,50,16.25,22,0.0 +15393,65,21.05,13,0.0 +15393,38,263.5,2,0.0 +15393,9,97,48,0.0 +15394,41,9.65,3,0.0 +15394,4,22,37,0.0 +15394,28,45.6,17,0.0 +15394,53,32.8,43,0.0 +15394,64,33.25,39,0.0 +15394,66,17,21,0.0 +15394,59,55,48,0.0 +15394,57,19.5,36,0.0 +15394,8,40,34,0.0 +15394,73,15,6,0.0 +15394,3,10,49,0.0 +15394,14,23.25,44,0.0 +15394,74,10,48,0.0 +15394,75,7.75,9,0.0 +15394,31,12.5,44,0.0 +15394,77,13,3,0.0 +15394,18,62.5,23,0.0 +15394,44,19.45,46,0.0 +15394,70,15,32,0.0 +15394,45,9.5,40,0.0 +15394,60,34,17,0.0 +15394,51,53,42,0.0 +15394,5,21.35,40,0.0 +15394,16,17.45,36,0.0 +15394,49,20,43,0.0 +15394,11,21,37,0.0 +15394,62,49.3,37,0.0 +15394,58,13.25,34,0.0 +15394,50,16.25,45,0.0 +15394,46,12,7,0.0 +15394,22,21,5,0.0 +15394,17,39,44,0.0 +15394,40,18.4,41,0.0 +15394,65,21.05,10,0.0 +15394,67,14,15,0.0 +15394,33,2.5,16,0.0 +15394,47,9.5,41,0.0 +15394,6,25,5,0.0 +15394,68,12.5,45,0.0 +15394,61,28.5,35,0.0 +15394,1,18,21,0.0 +15394,12,38,45,0.0 +15394,19,9.2,4,0.0 +15394,35,18,20,0.0 +15394,23,9,3,0.0 +15394,43,46,24,0.0 +15394,21,10,9,0.0 +15394,20,81,41,0.0 +15395,14,23.25,29,0.0 +15395,36,19,41,0.0 +15395,19,9.2,3,0.0 +15395,13,6,48,0.0 +15395,25,14,49,0.0 +15395,39,18,13,0.0 +15395,23,9,42,0.0 +15395,2,19,31,0.0 +15395,38,263.5,10,0.0 +15395,68,12.5,8,0.0 +15395,56,38,38,0.0 +15395,35,18,42,0.0 +15395,52,7,44,0.0 +15395,66,17,44,0.0 +15395,62,49.3,22,0.0 +15395,6,25,39,0.0 +15395,15,15.5,26,0.0 +15395,20,81,31,0.0 +15395,58,13.25,46,0.0 +15395,40,18.4,6,0.0 +15396,15,15.5,45,0.0 +15396,5,21.35,22,0.0 +15396,58,13.25,37,0.0 +15396,16,17.45,1,0.0 +15396,59,55,48,0.0 +15396,29,123.79,20,0.0 +15396,77,13,22,0.0 +15396,65,21.05,24,0.0 +15396,25,14,50,0.0 +15396,24,4.5,21,0.0 +15396,35,18,15,0.0 +15396,34,14,15,0.0 +15396,14,23.25,18,0.0 +15396,23,9,39,0.0 +15396,42,14,36,0.0 +15396,68,12.5,21,0.0 +15396,66,17,42,0.0 +15396,2,19,46,0.0 +15396,38,263.5,23,0.0 +15396,73,15,45,0.0 +15396,30,25.89,25,0.0 +15396,7,30,44,0.0 +15396,17,39,38,0.0 +15396,52,7,24,0.0 +15396,70,15,21,0.0 +15396,69,36,49,0.0 +15396,44,19.45,9,0.0 +15396,33,2.5,11,0.0 +15396,54,7.45,10,0.0 +15396,49,20,4,0.0 +15396,12,38,9,0.0 +15396,37,26,44,0.0 +15396,74,10,24,0.0 +15396,19,9.2,26,0.0 +15396,3,10,17,0.0 +15396,32,32,7,0.0 +15396,21,10,5,0.0 +15396,43,46,17,0.0 +15396,55,24,24,0.0 +15396,72,34.8,24,0.0 +15396,11,21,19,0.0 +15396,28,45.6,24,0.0 +15396,27,43.9,24,0.0 +15396,47,9.5,35,0.0 +15396,51,53,24,0.0 +15396,18,62.5,23,0.0 +15396,71,21.5,48,0.0 +15396,45,9.5,42,0.0 +15396,60,34,45,0.0 +15397,8,40,40,0.0 +15397,52,7,10,0.0 +15397,57,19.5,15,0.0 +15397,63,43.9,34,0.0 +15397,21,10,28,0.0 +15397,2,19,8,0.0 +15397,25,14,36,0.0 +15397,43,46,33,0.0 +15397,29,123.79,4,0.0 +15397,41,9.65,29,0.0 +15397,4,22,36,0.0 +15397,46,12,37,0.0 +15397,23,9,48,0.0 +15397,1,18,26,0.0 +15397,16,17.45,29,0.0 +15397,42,14,5,0.0 +15397,27,43.9,38,0.0 +15397,56,38,1,0.0 +15397,62,49.3,38,0.0 +15397,17,39,39,0.0 +15397,5,21.35,35,0.0 +15397,75,7.75,23,0.0 +15397,12,38,46,0.0 +15397,76,18,4,0.0 +15397,61,28.5,24,0.0 +15397,32,32,18,0.0 +15397,67,14,37,0.0 +15397,55,24,23,0.0 +15397,70,15,11,0.0 +15397,64,33.25,31,0.0 +15397,9,97,40,0.0 +15397,39,18,5,0.0 +15398,29,123.79,6,0.0 +15398,5,21.35,22,0.0 +15398,39,18,24,0.0 +15398,72,34.8,1,0.0 +15398,73,15,27,0.0 +15398,36,19,14,0.0 +15399,41,9.65,31,0.0 +15399,24,4.5,4,0.0 +15399,21,10,12,0.0 +15399,27,43.9,28,0.0 +15399,44,19.45,44,0.0 +15399,13,6,10,0.0 +15399,42,14,21,0.0 +15399,52,7,15,0.0 +15399,57,19.5,45,0.0 +15399,17,39,20,0.0 +15399,64,33.25,46,0.0 +15399,26,31.23,43,0.0 +15399,75,7.75,5,0.0 +15399,54,7.45,42,0.0 +15399,12,38,28,0.0 +15399,45,9.5,16,0.0 +15399,73,15,44,0.0 +15399,30,25.89,39,0.0 +15399,38,263.5,31,0.0 +15399,46,12,34,0.0 +15399,36,19,28,0.0 +15399,20,81,1,0.0 +15399,3,10,30,0.0 +15399,74,10,39,0.0 +15399,22,21,47,0.0 +15399,55,24,10,0.0 +15399,28,45.6,9,0.0 +15399,59,55,5,0.0 +15399,47,9.5,39,0.0 +15399,60,34,41,0.0 +15399,39,18,6,0.0 +15399,70,15,26,0.0 +15399,76,18,25,0.0 +15399,48,12.75,1,0.0 +15399,43,46,25,0.0 +15399,32,32,15,0.0 +15399,53,32.8,29,0.0 +15399,50,16.25,22,0.0 +15399,16,17.45,19,0.0 +15399,23,9,20,0.0 +15399,72,34.8,25,0.0 +15399,2,19,41,0.0 +15399,61,28.5,32,0.0 +15399,4,22,16,0.0 +15399,49,20,42,0.0 +15399,33,2.5,7,0.0 +15399,40,18.4,22,0.0 +15399,25,14,10,0.0 +15399,68,12.5,43,0.0 +15399,69,36,50,0.0 +15399,62,49.3,13,0.0 +15399,58,13.25,15,0.0 +15399,65,21.05,40,0.0 +15399,6,25,50,0.0 +15399,34,14,44,0.0 +15399,10,31,39,0.0 +15399,1,18,11,0.0 +15399,5,21.35,10,0.0 +15399,77,13,22,0.0 +15399,8,40,5,0.0 +15400,51,53,13,0.0 +15400,30,25.89,22,0.0 +15400,74,10,11,0.0 +15400,19,9.2,27,0.0 +15400,52,7,28,0.0 +15400,65,21.05,18,0.0 +15400,14,23.25,18,0.0 +15400,72,34.8,18,0.0 +15400,1,18,22,0.0 +15400,69,36,5,0.0 +15400,16,17.45,9,0.0 +15400,45,9.5,8,0.0 +15400,64,33.25,27,0.0 +15400,77,13,5,0.0 +15400,58,13.25,38,0.0 +15400,66,17,5,0.0 +15400,11,21,36,0.0 +15400,17,39,15,0.0 +15400,67,14,42,0.0 +15400,29,123.79,2,0.0 +15400,28,45.6,10,0.0 +15400,2,19,2,0.0 +15400,5,21.35,5,0.0 +15400,47,9.5,34,0.0 +15400,57,19.5,27,0.0 +15400,27,43.9,42,0.0 +15400,15,15.5,2,0.0 +15400,38,263.5,33,0.0 +15400,53,32.8,50,0.0 +15400,55,24,11,0.0 +15400,33,2.5,48,0.0 +15400,25,14,10,0.0 +15400,4,22,24,0.0 +15400,62,49.3,50,0.0 +15400,3,10,19,0.0 +15400,26,31.23,3,0.0 +15400,48,12.75,27,0.0 +15400,31,12.5,33,0.0 +15400,22,21,40,0.0 +15400,10,31,22,0.0 +15400,12,38,9,0.0 +15400,9,97,7,0.0 +15400,63,43.9,28,0.0 +15400,59,55,15,0.0 +15400,24,4.5,31,0.0 +15400,75,7.75,19,0.0 +15400,20,81,9,0.0 +15400,71,21.5,29,0.0 +15400,68,12.5,39,0.0 +15400,39,18,4,0.0 +15400,56,38,4,0.0 +15400,43,46,31,0.0 +15400,73,15,14,0.0 +15400,8,40,34,0.0 +15400,54,7.45,29,0.0 +15400,32,32,4,0.0 +15400,21,10,15,0.0 +15400,13,6,23,0.0 +15400,41,9.65,9,0.0 +15400,40,18.4,47,0.0 +15400,44,19.45,23,0.0 +15400,37,26,11,0.0 +15400,18,62.5,36,0.0 +15400,61,28.5,9,0.0 +15400,49,20,43,0.0 +15400,35,18,10,0.0 +15400,70,15,30,0.0 +15400,34,14,36,0.0 +15401,60,34,5,0.0 +15401,49,20,43,0.0 +15402,42,14,1,0.0 +15402,17,39,45,0.0 +15402,66,17,24,0.0 +15402,6,25,23,0.0 +15402,25,14,21,0.0 +15402,65,21.05,30,0.0 +15402,77,13,44,0.0 +15402,75,7.75,50,0.0 +15402,28,45.6,30,0.0 +15402,63,43.9,29,0.0 +15402,27,43.9,49,0.0 +15402,19,9.2,50,0.0 +15402,61,28.5,18,0.0 +15402,29,123.79,11,0.0 +15402,14,23.25,45,0.0 +15402,32,32,2,0.0 +15402,18,62.5,13,0.0 +15402,37,26,33,0.0 +15402,49,20,50,0.0 +15402,12,38,2,0.0 +15402,7,30,1,0.0 +15402,30,25.89,23,0.0 +15402,22,21,3,0.0 +15402,26,31.23,16,0.0 +15402,67,14,20,0.0 +15402,53,32.8,16,0.0 +15402,36,19,12,0.0 +15402,57,19.5,12,0.0 +15402,21,10,33,0.0 +15402,23,9,38,0.0 +15402,62,49.3,8,0.0 +15402,44,19.45,30,0.0 +15402,8,40,34,0.0 +15402,39,18,3,0.0 +15402,47,9.5,38,0.0 +15402,11,21,8,0.0 +15402,10,31,41,0.0 +15402,4,22,33,0.0 +15403,32,32,13,0.0 +15403,26,31.23,12,0.0 +15403,18,62.5,15,0.0 +15403,43,46,48,0.0 +15403,52,7,1,0.0 +15403,60,34,6,0.0 +15403,54,7.45,17,0.0 +15403,22,21,15,0.0 +15403,76,18,9,0.0 +15403,34,14,49,0.0 +15403,8,40,25,0.0 +15403,41,9.65,15,0.0 +15403,10,31,46,0.0 +15403,74,10,9,0.0 +15403,35,18,40,0.0 +15403,59,55,18,0.0 +15403,64,33.25,14,0.0 +15403,19,9.2,34,0.0 +15403,25,14,17,0.0 +15403,5,21.35,11,0.0 +15403,53,32.8,10,0.0 +15403,57,19.5,13,0.0 +15403,9,97,32,0.0 +15403,20,81,7,0.0 +15403,33,2.5,47,0.0 +15403,6,25,11,0.0 +15403,67,14,22,0.0 +15403,36,19,46,0.0 +15403,21,10,28,0.0 +15403,27,43.9,50,0.0 +15403,14,23.25,9,0.0 +15403,63,43.9,19,0.0 +15403,11,21,48,0.0 +15403,75,7.75,18,0.0 +15403,17,39,47,0.0 +15403,29,123.79,4,0.0 +15403,4,22,16,0.0 +15403,38,263.5,17,0.0 +15403,56,38,15,0.0 +15403,55,24,15,0.0 +15403,45,9.5,48,0.0 +15403,51,53,1,0.0 +15403,61,28.5,19,0.0 +15403,7,30,4,0.0 +15403,44,19.45,17,0.0 +15403,47,9.5,36,0.0 +15403,13,6,25,0.0 +15403,72,34.8,23,0.0 +15403,23,9,10,0.0 +15403,39,18,9,0.0 +15403,16,17.45,39,0.0 +15403,68,12.5,25,0.0 +15403,46,12,31,0.0 +15403,3,10,7,0.0 +15403,31,12.5,50,0.0 +15403,73,15,23,0.0 +15403,50,16.25,19,0.0 +15403,62,49.3,9,0.0 +15403,24,4.5,12,0.0 +15403,28,45.6,6,0.0 +15403,48,12.75,40,0.0 +15403,69,36,28,0.0 +15403,58,13.25,41,0.0 +15403,37,26,20,0.0 +15404,66,17,6,0.0 +15404,65,21.05,14,0.0 +15404,18,62.5,16,0.0 +15404,57,19.5,4,0.0 +15404,6,25,30,0.0 +15404,10,31,50,0.0 +15404,16,17.45,50,0.0 +15404,72,34.8,1,0.0 +15404,13,6,33,0.0 +15404,21,10,42,0.0 +15404,58,13.25,49,0.0 +15404,37,26,12,0.0 +15404,19,9.2,47,0.0 +15404,27,43.9,13,0.0 +15404,73,15,13,0.0 +15404,26,31.23,45,0.0 +15404,14,23.25,20,0.0 +15404,53,32.8,39,0.0 +15404,36,19,34,0.0 +15404,24,4.5,16,0.0 +15404,51,53,20,0.0 +15404,46,12,27,0.0 +15404,50,16.25,29,0.0 +15404,52,7,33,0.0 +15404,54,7.45,15,0.0 +15404,74,10,11,0.0 +15404,35,18,22,0.0 +15404,41,9.65,38,0.0 +15404,15,15.5,1,0.0 +15404,70,15,7,0.0 +15404,75,7.75,33,0.0 +15404,69,36,16,0.0 +15404,20,81,20,0.0 +15404,60,34,4,0.0 +15404,34,14,18,0.0 +15404,61,28.5,29,0.0 +15404,77,13,48,0.0 +15404,56,38,32,0.0 +15404,5,21.35,41,0.0 +15404,45,9.5,44,0.0 +15404,11,21,41,0.0 +15404,48,12.75,28,0.0 +15404,40,18.4,32,0.0 +15404,44,19.45,19,0.0 +15404,62,49.3,30,0.0 +15404,49,20,17,0.0 +15404,33,2.5,14,0.0 +15404,4,22,40,0.0 +15404,1,18,32,0.0 +15404,64,33.25,9,0.0 +15404,28,45.6,12,0.0 +15404,3,10,47,0.0 +15404,8,40,16,0.0 +15405,45,9.5,42,0.0 +15405,6,25,34,0.0 +15405,13,6,2,0.0 +15405,47,9.5,2,0.0 +15405,51,53,11,0.0 +15405,20,81,32,0.0 +15405,67,14,44,0.0 +15405,16,17.45,37,0.0 +15405,10,31,27,0.0 +15405,15,15.5,48,0.0 +15405,74,10,15,0.0 +15405,61,28.5,25,0.0 +15405,38,263.5,25,0.0 +15405,35,18,2,0.0 +15405,8,40,39,0.0 +15405,64,33.25,37,0.0 +15405,71,21.5,49,0.0 +15405,31,12.5,33,0.0 +15405,1,18,13,0.0 +15405,66,17,15,0.0 +15405,77,13,1,0.0 +15405,34,14,45,0.0 +15405,58,13.25,24,0.0 +15405,19,9.2,2,0.0 +15405,7,30,40,0.0 +15406,40,18.4,11,0.0 +15406,68,12.5,22,0.0 +15406,56,38,33,0.0 +15406,61,28.5,47,0.0 +15406,48,12.75,49,0.0 +15406,37,26,18,0.0 +15406,42,14,30,0.0 +15406,70,15,40,0.0 +15406,44,19.45,10,0.0 +15406,3,10,25,0.0 +15406,38,263.5,10,0.0 +15406,76,18,45,0.0 +15406,36,19,49,0.0 +15406,4,22,22,0.0 +15406,9,97,1,0.0 +15406,15,15.5,25,0.0 +15406,64,33.25,48,0.0 +15406,35,18,32,0.0 +15406,74,10,3,0.0 +15406,28,45.6,44,0.0 +15406,8,40,41,0.0 +15406,51,53,18,0.0 +15406,69,36,4,0.0 +15406,54,7.45,27,0.0 +15406,71,21.5,13,0.0 +15406,39,18,28,0.0 +15406,2,19,49,0.0 +15406,18,62.5,6,0.0 +15406,77,13,14,0.0 +15406,31,12.5,14,0.0 +15406,32,32,26,0.0 +15406,72,34.8,21,0.0 +15406,17,39,18,0.0 +15407,20,81,41,0.0 +15407,67,14,12,0.0 +15407,28,45.6,33,0.0 +15407,38,263.5,49,0.0 +15407,75,7.75,48,0.0 +15407,29,123.79,12,0.0 +15407,39,18,14,0.0 +15407,60,34,39,0.0 +15407,35,18,15,0.0 +15407,36,19,19,0.0 +15407,33,2.5,45,0.0 +15407,51,53,21,0.0 +15407,31,12.5,29,0.0 +15407,6,25,24,0.0 +15407,23,9,16,0.0 +15407,17,39,9,0.0 +15407,56,38,13,0.0 +15408,11,21,3,0.0 +15408,45,9.5,49,0.0 +15408,50,16.25,24,0.0 +15408,72,34.8,23,0.0 +15408,24,4.5,25,0.0 +15408,63,43.9,21,0.0 +15408,9,97,14,0.0 +15408,34,14,20,0.0 +15408,67,14,5,0.0 +15408,29,123.79,7,0.0 +15408,40,18.4,21,0.0 +15408,36,19,20,0.0 +15408,27,43.9,9,0.0 +15408,61,28.5,14,0.0 +15408,1,18,37,0.0 +15408,5,21.35,3,0.0 +15408,59,55,7,0.0 +15408,51,53,19,0.0 +15408,21,10,10,0.0 +15408,44,19.45,35,0.0 +15408,19,9.2,40,0.0 +15408,38,263.5,34,0.0 +15408,47,9.5,19,0.0 +15408,3,10,46,0.0 +15408,68,12.5,19,0.0 +15409,16,17.45,13,0.0 +15409,57,19.5,42,0.0 +15409,59,55,49,0.0 +15409,76,18,37,0.0 +15409,60,34,18,0.0 +15409,36,19,38,0.0 +15409,21,10,22,0.0 +15409,42,14,37,0.0 +15409,3,10,14,0.0 +15409,43,46,18,0.0 +15409,53,32.8,44,0.0 +15409,5,21.35,25,0.0 +15409,66,17,13,0.0 +15409,65,21.05,40,0.0 +15409,52,7,30,0.0 +15409,64,33.25,8,0.0 +15409,23,9,38,0.0 +15409,69,36,43,0.0 +15409,58,13.25,8,0.0 +15409,18,62.5,5,0.0 +15409,37,26,46,0.0 +15409,35,18,19,0.0 +15409,39,18,33,0.0 +15409,4,22,41,0.0 +15409,62,49.3,4,0.0 +15409,46,12,10,0.0 +15409,50,16.25,19,0.0 +15409,9,97,24,0.0 +15409,26,31.23,45,0.0 +15409,54,7.45,15,0.0 +15410,9,97,19,0.0 +15410,22,21,25,0.0 +15410,10,31,27,0.0 +15410,59,55,43,0.0 +15410,7,30,24,0.0 +15410,1,18,1,0.0 +15410,36,19,29,0.0 +15410,16,17.45,50,0.0 +15410,41,9.65,10,0.0 +15410,62,49.3,39,0.0 +15410,70,15,25,0.0 +15410,14,23.25,49,0.0 +15410,60,34,39,0.0 +15410,2,19,47,0.0 +15410,29,123.79,32,0.0 +15410,30,25.89,4,0.0 +15410,23,9,37,0.0 +15410,6,25,31,0.0 +15410,27,43.9,40,0.0 +15410,31,12.5,8,0.0 +15410,54,7.45,9,0.0 +15410,32,32,9,0.0 +15410,49,20,43,0.0 +15410,46,12,45,0.0 +15410,50,16.25,18,0.0 +15410,68,12.5,14,0.0 +15410,72,34.8,32,0.0 +15410,19,9.2,13,0.0 +15410,3,10,39,0.0 +15410,12,38,14,0.0 +15410,47,9.5,34,0.0 +15410,13,6,6,0.0 +15410,8,40,21,0.0 +15410,34,14,26,0.0 +15410,69,36,11,0.0 +15410,58,13.25,22,0.0 +15410,35,18,7,0.0 +15410,61,28.5,44,0.0 +15410,26,31.23,31,0.0 +15410,57,19.5,22,0.0 +15410,11,21,23,0.0 +15410,37,26,2,0.0 +15410,76,18,43,0.0 +15410,71,21.5,29,0.0 +15410,67,14,41,0.0 +15410,15,15.5,11,0.0 +15410,66,17,39,0.0 +15410,24,4.5,47,0.0 +15410,25,14,30,0.0 +15410,18,62.5,1,0.0 +15410,33,2.5,10,0.0 +15410,55,24,35,0.0 +15410,42,14,31,0.0 +15410,73,15,3,0.0 +15410,5,21.35,21,0.0 +15410,74,10,28,0.0 +15410,64,33.25,27,0.0 +15410,48,12.75,38,0.0 +15410,52,7,3,0.0 +15410,53,32.8,10,0.0 +15410,43,46,15,0.0 +15410,40,18.4,50,0.0 +15410,65,21.05,1,0.0 +15410,21,10,3,0.0 +15410,38,263.5,24,0.0 +15410,28,45.6,29,0.0 +15410,51,53,17,0.0 +15410,17,39,32,0.0 +15410,63,43.9,24,0.0 +15410,75,7.75,31,0.0 +15410,39,18,8,0.0 +15410,20,81,40,0.0 +15410,56,38,6,0.0 +15410,45,9.5,49,0.0 +15410,44,19.45,38,0.0 +15411,51,53,44,0.0 +15411,73,15,29,0.0 +15411,56,38,32,0.0 +15411,39,18,49,0.0 +15411,58,13.25,11,0.0 +15411,16,17.45,34,0.0 +15411,18,62.5,15,0.0 +15411,42,14,11,0.0 +15411,20,81,32,0.0 +15411,31,12.5,44,0.0 +15411,55,24,3,0.0 +15411,46,12,34,0.0 +15411,63,43.9,42,0.0 +15411,2,19,23,0.0 +15411,28,45.6,47,0.0 +15411,22,21,9,0.0 +15411,17,39,24,0.0 +15411,26,31.23,23,0.0 +15411,14,23.25,14,0.0 +15411,27,43.9,9,0.0 +15411,35,18,26,0.0 +15411,52,7,49,0.0 +15411,53,32.8,33,0.0 +15411,37,26,9,0.0 +15411,9,97,44,0.0 +15411,12,38,17,0.0 +15411,64,33.25,12,0.0 +15411,19,9.2,47,0.0 +15411,25,14,28,0.0 +15411,68,12.5,49,0.0 +15411,10,31,30,0.0 +15411,61,28.5,8,0.0 +15411,76,18,3,0.0 +15411,60,34,44,0.0 +15411,67,14,11,0.0 +15411,48,12.75,38,0.0 +15411,8,40,46,0.0 +15411,34,14,38,0.0 +15411,74,10,13,0.0 +15411,65,21.05,40,0.0 +15411,40,18.4,16,0.0 +15411,3,10,26,0.0 +15411,30,25.89,5,0.0 +15411,13,6,12,0.0 +15412,57,19.5,47,0.0 +15412,3,10,15,0.0 +15412,10,31,12,0.0 +15412,54,7.45,38,0.0 +15412,19,9.2,5,0.0 +15412,22,21,39,0.0 +15412,35,18,24,0.0 +15412,45,9.5,5,0.0 +15412,29,123.79,35,0.0 +15412,53,32.8,40,0.0 +15412,52,7,41,0.0 +15412,28,45.6,39,0.0 +15412,5,21.35,50,0.0 +15412,30,25.89,38,0.0 +15412,69,36,32,0.0 +15412,6,25,41,0.0 +15412,51,53,47,0.0 +15412,63,43.9,23,0.0 +15412,77,13,47,0.0 +15412,49,20,41,0.0 +15412,68,12.5,18,0.0 +15412,59,55,50,0.0 +15412,56,38,19,0.0 +15412,21,10,13,0.0 +15412,17,39,36,0.0 +15412,71,21.5,30,0.0 +15412,48,12.75,29,0.0 +15412,12,38,39,0.0 +15412,73,15,34,0.0 +15413,74,10,47,0.0 +15413,47,9.5,45,0.0 +15413,15,15.5,2,0.0 +15413,40,18.4,37,0.0 +15413,29,123.79,2,0.0 +15413,22,21,34,0.0 +15413,32,32,44,0.0 +15413,50,16.25,49,0.0 +15413,3,10,28,0.0 +15413,11,21,1,0.0 +15413,9,97,16,0.0 +15413,25,14,26,0.0 +15413,7,30,42,0.0 +15413,6,25,21,0.0 +15413,65,21.05,40,0.0 +15413,72,34.8,37,0.0 +15413,4,22,35,0.0 +15413,34,14,43,0.0 +15413,17,39,7,0.0 +15413,51,53,29,0.0 +15413,71,21.5,49,0.0 +15413,28,45.6,30,0.0 +15413,49,20,27,0.0 +15413,42,14,27,0.0 +15413,64,33.25,8,0.0 +15413,21,10,15,0.0 +15413,10,31,2,0.0 +15413,2,19,22,0.0 +15413,31,12.5,37,0.0 +15413,59,55,41,0.0 +15413,70,15,31,0.0 +15413,14,23.25,49,0.0 +15413,38,263.5,34,0.0 +15413,68,12.5,37,0.0 +15413,57,19.5,23,0.0 +15413,37,26,50,0.0 +15413,27,43.9,40,0.0 +15413,52,7,2,0.0 +15413,39,18,23,0.0 +15413,63,43.9,10,0.0 +15414,2,19,42,0.0 +15414,7,30,49,0.0 +15414,54,7.45,22,0.0 +15414,61,28.5,31,0.0 +15414,4,22,11,0.0 +15414,50,16.25,28,0.0 +15414,48,12.75,47,0.0 +15414,75,7.75,40,0.0 +15414,37,26,42,0.0 +15414,67,14,15,0.0 +15414,24,4.5,46,0.0 +15414,76,18,45,0.0 +15414,22,21,10,0.0 +15414,64,33.25,6,0.0 +15414,16,17.45,44,0.0 +15414,77,13,42,0.0 +15414,70,15,25,0.0 +15414,39,18,18,0.0 +15414,27,43.9,21,0.0 +15414,40,18.4,4,0.0 +15414,31,12.5,12,0.0 +15414,13,6,38,0.0 +15414,21,10,26,0.0 +15414,25,14,46,0.0 +15414,52,7,16,0.0 +15414,23,9,6,0.0 +15414,56,38,2,0.0 +15414,5,21.35,1,0.0 +15414,35,18,19,0.0 +15414,20,81,35,0.0 +15414,63,43.9,4,0.0 +15414,49,20,34,0.0 +15414,55,24,20,0.0 +15414,12,38,18,0.0 +15414,38,263.5,26,0.0 +15414,51,53,15,0.0 +15414,74,10,40,0.0 +15414,44,19.45,7,0.0 +15414,59,55,42,0.0 +15414,57,19.5,23,0.0 +15414,46,12,25,0.0 +15414,15,15.5,18,0.0 +15414,8,40,8,0.0 +15414,71,21.5,41,0.0 +15414,32,32,3,0.0 +15414,9,97,16,0.0 +15414,33,2.5,19,0.0 +15414,17,39,16,0.0 +15414,26,31.23,23,0.0 +15414,66,17,15,0.0 +15414,60,34,46,0.0 +15414,28,45.6,43,0.0 +15414,43,46,1,0.0 +15414,73,15,2,0.0 +15414,53,32.8,22,0.0 +15415,49,20,16,0.0 +15415,37,26,37,0.0 +15415,69,36,48,0.0 +15415,20,81,35,0.0 +15415,73,15,41,0.0 +15415,6,25,34,0.0 +15415,19,9.2,45,0.0 +15415,42,14,38,0.0 +15415,71,21.5,49,0.0 +15415,52,7,25,0.0 +15415,67,14,36,0.0 +15415,15,15.5,38,0.0 +15415,13,6,27,0.0 +15415,29,123.79,6,0.0 +15415,10,31,10,0.0 +15415,40,18.4,17,0.0 +15415,4,22,26,0.0 +15415,31,12.5,5,0.0 +15415,62,49.3,9,0.0 +15415,60,34,5,0.0 +15415,39,18,29,0.0 +15415,24,4.5,10,0.0 +15415,63,43.9,24,0.0 +15415,50,16.25,33,0.0 +15415,57,19.5,46,0.0 +15415,8,40,18,0.0 +15415,54,7.45,40,0.0 +15415,32,32,8,0.0 +15415,38,263.5,30,0.0 +15415,41,9.65,32,0.0 +15415,16,17.45,3,0.0 +15415,56,38,15,0.0 +15415,21,10,34,0.0 +15415,77,13,2,0.0 +15415,65,21.05,6,0.0 +15415,58,13.25,37,0.0 +15415,27,43.9,34,0.0 +15415,76,18,30,0.0 +15415,30,25.89,50,0.0 +15415,46,12,7,0.0 +15415,33,2.5,37,0.0 +15415,5,21.35,4,0.0 +15415,25,14,44,0.0 +15415,35,18,48,0.0 +15415,1,18,6,0.0 +15415,70,15,45,0.0 +15415,26,31.23,34,0.0 +15416,34,14,4,0.0 +15416,12,38,39,0.0 +15416,11,21,44,0.0 +15416,43,46,41,0.0 +15416,57,19.5,33,0.0 +15416,50,16.25,7,0.0 +15416,45,9.5,36,0.0 +15416,17,39,33,0.0 +15416,76,18,45,0.0 +15416,74,10,30,0.0 +15416,72,34.8,9,0.0 +15416,19,9.2,42,0.0 +15416,40,18.4,38,0.0 +15416,49,20,26,0.0 +15416,33,2.5,23,0.0 +15416,37,26,9,0.0 +15416,44,19.45,34,0.0 +15416,62,49.3,30,0.0 +15416,70,15,40,0.0 +15416,67,14,21,0.0 +15416,35,18,29,0.0 +15416,59,55,23,0.0 +15416,24,4.5,14,0.0 +15416,25,14,26,0.0 +15416,51,53,37,0.0 +15416,73,15,37,0.0 +15416,5,21.35,9,0.0 +15416,48,12.75,25,0.0 +15416,41,9.65,42,0.0 +15416,18,62.5,17,0.0 +15416,28,45.6,46,0.0 +15416,30,25.89,37,0.0 +15416,46,12,31,0.0 +15416,22,21,35,0.0 +15416,21,10,37,0.0 +15416,38,263.5,4,0.0 +15416,29,123.79,15,0.0 +15416,58,13.25,13,0.0 +15416,52,7,11,0.0 +15416,15,15.5,46,0.0 +15416,60,34,31,0.0 +15416,13,6,24,0.0 +15416,32,32,5,0.0 +15416,36,19,13,0.0 +15416,53,32.8,21,0.0 +15416,31,12.5,2,0.0 +15416,56,38,39,0.0 +15416,27,43.9,13,0.0 +15416,54,7.45,44,0.0 +15416,42,14,22,0.0 +15416,71,21.5,29,0.0 +15416,65,21.05,1,0.0 +15416,9,97,39,0.0 +15416,75,7.75,30,0.0 +15416,47,9.5,36,0.0 +15416,6,25,19,0.0 +15416,16,17.45,26,0.0 +15416,20,81,8,0.0 +15416,66,17,8,0.0 +15416,2,19,21,0.0 +15416,68,12.5,45,0.0 +15416,3,10,23,0.0 +15416,69,36,43,0.0 +15416,39,18,37,0.0 +15416,77,13,24,0.0 +15417,57,19.5,40,0.0 +15417,36,19,5,0.0 +15417,75,7.75,35,0.0 +15417,76,18,22,0.0 +15417,32,32,23,0.0 +15417,47,9.5,49,0.0 +15417,2,19,6,0.0 +15417,50,16.25,48,0.0 +15417,6,25,20,0.0 +15417,3,10,20,0.0 +15417,45,9.5,35,0.0 +15417,10,31,2,0.0 +15417,35,18,48,0.0 +15417,9,97,26,0.0 +15417,29,123.79,14,0.0 +15417,25,14,18,0.0 +15417,15,15.5,4,0.0 +15417,68,12.5,18,0.0 +15417,77,13,12,0.0 +15417,70,15,3,0.0 +15417,17,39,38,0.0 +15417,41,9.65,15,0.0 +15417,61,28.5,38,0.0 +15417,8,40,37,0.0 +15417,40,18.4,38,0.0 +15417,60,34,28,0.0 +15417,13,6,27,0.0 +15417,44,19.45,8,0.0 +15417,42,14,5,0.0 +15417,52,7,21,0.0 +15417,43,46,14,0.0 +15418,66,17,26,0.0 +15418,4,22,21,0.0 +15418,75,7.75,27,0.0 +15418,5,21.35,11,0.0 +15418,67,14,27,0.0 +15418,36,19,22,0.0 +15418,26,31.23,50,0.0 +15418,20,81,50,0.0 +15418,59,55,23,0.0 +15418,24,4.5,49,0.0 +15418,38,263.5,23,0.0 +15418,45,9.5,32,0.0 +15418,8,40,36,0.0 +15418,2,19,1,0.0 +15418,70,15,23,0.0 +15418,63,43.9,25,0.0 +15418,41,9.65,33,0.0 +15418,46,12,25,0.0 +15418,11,21,19,0.0 +15418,77,13,33,0.0 +15418,18,62.5,32,0.0 +15418,22,21,8,0.0 +15418,42,14,17,0.0 +15418,17,39,30,0.0 +15418,1,18,30,0.0 +15418,37,26,42,0.0 +15418,33,2.5,2,0.0 +15418,61,28.5,2,0.0 +15418,14,23.25,9,0.0 +15418,32,32,1,0.0 +15419,10,31,37,0.0 +15419,31,12.5,2,0.0 +15419,61,28.5,18,0.0 +15419,43,46,35,0.0 +15419,27,43.9,20,0.0 +15419,48,12.75,11,0.0 +15419,13,6,43,0.0 +15419,21,10,26,0.0 +15419,39,18,45,0.0 +15419,59,55,32,0.0 +15419,74,10,11,0.0 +15419,3,10,19,0.0 +15419,1,18,21,0.0 +15420,4,22,46,0.0 +15420,5,21.35,12,0.0 +15420,74,10,24,0.0 +15420,2,19,45,0.0 +15420,41,9.65,9,0.0 +15420,17,39,41,0.0 +15420,44,19.45,13,0.0 +15420,73,15,14,0.0 +15421,9,97,40,0.0 +15422,42,14,42,0.0 +15423,74,10,45,0.0 +15423,62,49.3,14,0.0 +15423,51,53,15,0.0 +15423,66,17,13,0.0 +15423,15,15.5,15,0.0 +15423,59,55,11,0.0 +15423,63,43.9,20,0.0 +15423,69,36,48,0.0 +15423,27,43.9,23,0.0 +15423,19,9.2,32,0.0 +15423,47,9.5,16,0.0 +15423,26,31.23,28,0.0 +15423,49,20,28,0.0 +15423,57,19.5,13,0.0 +15423,38,263.5,16,0.0 +15423,39,18,43,0.0 +15423,4,22,40,0.0 +15423,64,33.25,3,0.0 +15423,48,12.75,45,0.0 +15423,20,81,1,0.0 +15423,67,14,6,0.0 +15423,32,32,48,0.0 +15423,25,14,25,0.0 +15423,28,45.6,29,0.0 +15423,61,28.5,32,0.0 +15423,52,7,49,0.0 +15423,11,21,3,0.0 +15423,72,34.8,18,0.0 +15423,31,12.5,20,0.0 +15423,53,32.8,32,0.0 +15423,6,25,11,0.0 +15423,54,7.45,31,0.0 +15423,56,38,12,0.0 +15423,30,25.89,1,0.0 +15423,41,9.65,29,0.0 +15423,75,7.75,25,0.0 +15423,43,46,44,0.0 +15423,23,9,2,0.0 +15423,21,10,14,0.0 +15423,58,13.25,12,0.0 +15423,44,19.45,13,0.0 +15423,7,30,3,0.0 +15423,65,21.05,15,0.0 +15423,17,39,36,0.0 +15424,44,19.45,4,0.0 +15424,48,12.75,50,0.0 +15424,12,38,31,0.0 +15424,15,15.5,40,0.0 +15424,43,46,45,0.0 +15424,76,18,34,0.0 +15424,2,19,40,0.0 +15424,4,22,32,0.0 +15424,69,36,15,0.0 +15424,25,14,6,0.0 +15424,42,14,46,0.0 +15424,68,12.5,30,0.0 +15424,19,9.2,28,0.0 +15424,41,9.65,26,0.0 +15424,66,17,1,0.0 +15424,75,7.75,34,0.0 +15424,26,31.23,8,0.0 +15424,45,9.5,39,0.0 +15424,74,10,34,0.0 +15424,20,81,44,0.0 +15424,77,13,11,0.0 +15424,32,32,32,0.0 +15424,13,6,20,0.0 +15424,73,15,50,0.0 +15424,61,28.5,24,0.0 +15424,21,10,23,0.0 +15424,53,32.8,49,0.0 +15424,54,7.45,24,0.0 +15424,11,21,17,0.0 +15424,38,263.5,16,0.0 +15424,67,14,28,0.0 +15424,27,43.9,21,0.0 +15424,16,17.45,33,0.0 +15424,5,21.35,47,0.0 +15424,29,123.79,7,0.0 +15424,23,9,28,0.0 +15424,18,62.5,17,0.0 +15424,39,18,20,0.0 +15424,57,19.5,47,0.0 +15424,70,15,21,0.0 +15424,51,53,36,0.0 +15424,9,97,25,0.0 +15424,34,14,32,0.0 +15424,24,4.5,31,0.0 +15424,63,43.9,36,0.0 +15424,6,25,2,0.0 +15424,64,33.25,33,0.0 +15424,62,49.3,15,0.0 +15424,72,34.8,32,0.0 +15424,33,2.5,47,0.0 +15424,1,18,32,0.0 +15424,31,12.5,40,0.0 +15424,17,39,30,0.0 +15424,58,13.25,24,0.0 +15424,49,20,30,0.0 +15424,30,25.89,26,0.0 +15424,47,9.5,17,0.0 +15424,14,23.25,39,0.0 +15424,59,55,29,0.0 +15424,7,30,43,0.0 +15424,36,19,2,0.0 +15424,56,38,13,0.0 +15424,71,21.5,8,0.0 +15424,37,26,8,0.0 +15424,55,24,45,0.0 +15424,46,12,18,0.0 +15424,28,45.6,33,0.0 +15424,8,40,10,0.0 +15424,60,34,36,0.0 +15425,14,23.25,37,0.0 +15425,34,14,16,0.0 +15425,18,62.5,36,0.0 +15425,1,18,43,0.0 +15425,36,19,45,0.0 +15425,32,32,49,0.0 +15425,33,2.5,46,0.0 +15425,4,22,6,0.0 +15425,63,43.9,8,0.0 +15425,62,49.3,3,0.0 +15425,75,7.75,12,0.0 +15425,49,20,33,0.0 +15425,64,33.25,41,0.0 +15425,10,31,23,0.0 +15425,7,30,4,0.0 +15425,35,18,27,0.0 +15425,51,53,6,0.0 +15425,24,4.5,23,0.0 +15425,73,15,26,0.0 +15425,25,14,31,0.0 +15425,77,13,10,0.0 +15425,42,14,8,0.0 +15425,68,12.5,26,0.0 +15426,44,19.45,42,0.0 +15426,66,17,9,0.0 +15426,31,12.5,16,0.0 +15426,37,26,26,0.0 +15426,14,23.25,35,0.0 +15426,50,16.25,44,0.0 +15426,21,10,34,0.0 +15426,49,20,8,0.0 +15426,15,15.5,44,0.0 +15426,65,21.05,18,0.0 +15426,75,7.75,36,0.0 +15426,48,12.75,21,0.0 +15426,52,7,6,0.0 +15426,32,32,49,0.0 +15426,6,25,14,0.0 +15426,41,9.65,21,0.0 +15426,57,19.5,48,0.0 +15426,72,34.8,15,0.0 +15426,12,38,49,0.0 +15426,27,43.9,33,0.0 +15426,40,18.4,38,0.0 +15426,51,53,14,0.0 +15426,74,10,17,0.0 +15426,16,17.45,27,0.0 +15426,55,24,49,0.0 +15426,61,28.5,40,0.0 +15426,54,7.45,5,0.0 +15426,47,9.5,16,0.0 +15426,18,62.5,32,0.0 +15426,36,19,25,0.0 +15426,63,43.9,23,0.0 +15426,68,12.5,49,0.0 +15426,10,31,3,0.0 +15426,22,21,29,0.0 +15426,26,31.23,32,0.0 +15426,38,263.5,1,0.0 +15426,58,13.25,4,0.0 +15426,53,32.8,7,0.0 +15426,64,33.25,2,0.0 +15426,23,9,33,0.0 +15426,73,15,3,0.0 +15426,9,97,6,0.0 +15426,24,4.5,25,0.0 +15426,11,21,27,0.0 +15426,59,55,20,0.0 +15426,20,81,47,0.0 +15426,17,39,4,0.0 +15426,39,18,2,0.0 +15426,1,18,39,0.0 +15426,33,2.5,46,0.0 +15426,13,6,11,0.0 +15426,29,123.79,43,0.0 +15426,28,45.6,5,0.0 +15426,7,30,24,0.0 +15426,45,9.5,50,0.0 +15426,3,10,12,0.0 +15426,8,40,23,0.0 +15426,19,9.2,5,0.0 +15426,25,14,28,0.0 +15426,46,12,28,0.0 +15426,4,22,45,0.0 +15426,69,36,1,0.0 +15426,60,34,48,0.0 +15426,34,14,4,0.0 +15426,62,49.3,34,0.0 +15426,43,46,47,0.0 +15426,77,13,15,0.0 +15426,2,19,19,0.0 +15427,69,36,12,0.0 +15427,59,55,30,0.0 +15427,6,25,30,0.0 +15427,63,43.9,42,0.0 +15427,32,32,40,0.0 +15427,27,43.9,50,0.0 +15427,2,19,18,0.0 +15427,16,17.45,14,0.0 +15427,51,53,19,0.0 +15427,48,12.75,22,0.0 +15427,18,62.5,3,0.0 +15427,67,14,37,0.0 +15427,11,21,29,0.0 +15427,70,15,45,0.0 +15427,56,38,35,0.0 +15427,28,45.6,29,0.0 +15427,3,10,16,0.0 +15427,68,12.5,15,0.0 +15427,37,26,35,0.0 +15427,22,21,3,0.0 +15427,17,39,30,0.0 +15427,38,263.5,18,0.0 +15427,34,14,2,0.0 +15427,41,9.65,41,0.0 +15427,7,30,12,0.0 +15427,66,17,37,0.0 +15427,13,6,8,0.0 +15427,29,123.79,18,0.0 +15427,75,7.75,33,0.0 +15427,43,46,45,0.0 +15427,31,12.5,35,0.0 +15427,62,49.3,34,0.0 +15427,57,19.5,9,0.0 +15427,42,14,47,0.0 +15427,8,40,9,0.0 +15427,76,18,19,0.0 +15427,55,24,2,0.0 +15427,26,31.23,37,0.0 +15427,24,4.5,19,0.0 +15427,46,12,15,0.0 +15427,4,22,3,0.0 +15427,44,19.45,4,0.0 +15427,10,31,48,0.0 +15427,73,15,18,0.0 +15427,19,9.2,39,0.0 +15427,35,18,31,0.0 +15427,36,19,41,0.0 +15427,65,21.05,24,0.0 +15427,33,2.5,42,0.0 +15427,64,33.25,9,0.0 +15427,74,10,17,0.0 +15427,49,20,48,0.0 +15427,21,10,32,0.0 +15427,9,97,9,0.0 +15427,5,21.35,14,0.0 +15427,12,38,19,0.0 +15427,58,13.25,31,0.0 +15427,71,21.5,32,0.0 +15427,52,7,29,0.0 +15427,77,13,20,0.0 +15427,72,34.8,48,0.0 +15427,60,34,17,0.0 +15427,40,18.4,40,0.0 +15427,47,9.5,34,0.0 +15427,30,25.89,41,0.0 +15427,50,16.25,48,0.0 +15427,14,23.25,31,0.0 +15427,61,28.5,37,0.0 +15427,54,7.45,39,0.0 +15428,37,26,46,0.0 +15428,34,14,33,0.0 +15428,24,4.5,39,0.0 +15428,64,33.25,15,0.0 +15428,22,21,1,0.0 +15428,66,17,21,0.0 +15428,56,38,7,0.0 +15428,46,12,18,0.0 +15428,42,14,5,0.0 +15428,16,17.45,38,0.0 +15428,27,43.9,11,0.0 +15428,36,19,12,0.0 +15428,31,12.5,24,0.0 +15428,58,13.25,17,0.0 +15428,47,9.5,35,0.0 +15428,23,9,4,0.0 +15428,25,14,28,0.0 +15428,1,18,43,0.0 +15428,71,21.5,10,0.0 +15428,62,49.3,17,0.0 +15428,70,15,33,0.0 +15428,74,10,38,0.0 +15428,45,9.5,22,0.0 +15428,38,263.5,21,0.0 +15428,29,123.79,45,0.0 +15428,77,13,16,0.0 +15428,12,38,41,0.0 +15428,55,24,47,0.0 +15428,39,18,13,0.0 +15428,57,19.5,13,0.0 +15428,43,46,22,0.0 +15428,68,12.5,11,0.0 +15428,2,19,46,0.0 +15428,30,25.89,44,0.0 +15428,8,40,4,0.0 +15428,15,15.5,38,0.0 +15428,61,28.5,2,0.0 +15428,11,21,12,0.0 +15428,3,10,44,0.0 +15428,35,18,34,0.0 +15428,33,2.5,16,0.0 +15428,63,43.9,27,0.0 +15428,72,34.8,31,0.0 +15428,13,6,38,0.0 +15428,17,39,26,0.0 +15428,65,21.05,12,0.0 +15428,51,53,1,0.0 +15428,50,16.25,41,0.0 +15428,18,62.5,7,0.0 +15428,73,15,50,0.0 +15428,28,45.6,7,0.0 +15428,59,55,28,0.0 +15428,54,7.45,36,0.0 +15428,75,7.75,30,0.0 +15428,20,81,34,0.0 +15428,4,22,29,0.0 +15428,67,14,23,0.0 +15428,48,12.75,12,0.0 +15429,30,25.89,33,0.0 +15429,49,20,41,0.0 +15429,9,97,25,0.0 +15429,76,18,34,0.0 +15429,47,9.5,11,0.0 +15429,22,21,39,0.0 +15429,57,19.5,26,0.0 +15429,68,12.5,31,0.0 +15430,49,20,48,0.0 +15430,61,28.5,13,0.0 +15430,54,7.45,9,0.0 +15430,25,14,3,0.0 +15430,27,43.9,44,0.0 +15430,15,15.5,33,0.0 +15430,76,18,21,0.0 +15430,37,26,49,0.0 +15431,75,7.75,11,0.0 +15431,7,30,9,0.0 +15431,42,14,20,0.0 +15431,8,40,25,0.0 +15431,62,49.3,3,0.0 +15431,39,18,14,0.0 +15431,45,9.5,18,0.0 +15431,25,14,35,0.0 +15431,46,12,43,0.0 +15431,59,55,41,0.0 +15431,16,17.45,7,0.0 +15431,50,16.25,13,0.0 +15431,2,19,13,0.0 +15431,24,4.5,4,0.0 +15431,19,9.2,33,0.0 +15431,23,9,19,0.0 +15431,60,34,34,0.0 +15431,5,21.35,38,0.0 +15431,68,12.5,1,0.0 +15431,10,31,29,0.0 +15431,22,21,9,0.0 +15431,49,20,17,0.0 +15431,63,43.9,31,0.0 +15431,72,34.8,27,0.0 +15431,11,21,5,0.0 +15431,74,10,17,0.0 +15431,29,123.79,37,0.0 +15431,66,17,27,0.0 +15431,32,32,33,0.0 +15431,47,9.5,41,0.0 +15432,8,40,50,0.0 +15432,12,38,29,0.0 +15432,53,32.8,8,0.0 +15432,76,18,29,0.0 +15432,36,19,32,0.0 +15432,10,31,23,0.0 +15432,28,45.6,44,0.0 +15432,1,18,46,0.0 +15432,64,33.25,37,0.0 +15432,39,18,6,0.0 +15432,15,15.5,28,0.0 +15432,20,81,2,0.0 +15432,48,12.75,16,0.0 +15432,51,53,22,0.0 +15432,49,20,11,0.0 +15432,17,39,48,0.0 +15432,33,2.5,42,0.0 +15432,47,9.5,5,0.0 +15432,29,123.79,44,0.0 +15432,73,15,26,0.0 +15432,62,49.3,15,0.0 +15432,63,43.9,22,0.0 +15432,44,19.45,38,0.0 +15432,68,12.5,42,0.0 +15432,52,7,20,0.0 +15432,27,43.9,25,0.0 +15432,23,9,25,0.0 +15432,71,21.5,47,0.0 +15432,26,31.23,11,0.0 +15432,45,9.5,47,0.0 +15432,50,16.25,33,0.0 +15432,16,17.45,25,0.0 +15432,66,17,44,0.0 +15432,46,12,31,0.0 +15432,31,12.5,1,0.0 +15432,65,21.05,15,0.0 +15432,35,18,11,0.0 +15432,32,32,35,0.0 +15432,74,10,2,0.0 +15432,69,36,41,0.0 +15432,58,13.25,2,0.0 +15432,75,7.75,39,0.0 +15432,6,25,28,0.0 +15432,3,10,3,0.0 +15432,22,21,49,0.0 +15432,61,28.5,50,0.0 +15432,67,14,23,0.0 +15432,43,46,19,0.0 +15432,42,14,13,0.0 +15432,41,9.65,23,0.0 +15432,5,21.35,48,0.0 +15432,2,19,7,0.0 +15432,24,4.5,16,0.0 +15432,18,62.5,31,0.0 +15432,37,26,33,0.0 +15432,7,30,26,0.0 +15432,13,6,46,0.0 +15432,40,18.4,14,0.0 +15432,60,34,16,0.0 +15432,70,15,44,0.0 +15432,72,34.8,26,0.0 +15432,55,24,44,0.0 +15432,54,7.45,3,0.0 +15432,9,97,21,0.0 +15432,30,25.89,6,0.0 +15432,21,10,31,0.0 +15432,77,13,1,0.0 +15432,59,55,24,0.0 +15432,25,14,30,0.0 +15432,11,21,41,0.0 +15432,56,38,11,0.0 +15432,57,19.5,44,0.0 +15433,55,24,46,0.0 +15433,43,46,3,0.0 +15433,22,21,49,0.0 +15433,19,9.2,19,0.0 +15433,54,7.45,32,0.0 +15433,29,123.79,3,0.0 +15433,40,18.4,16,0.0 +15433,41,9.65,38,0.0 +15433,36,19,25,0.0 +15433,77,13,4,0.0 +15433,24,4.5,28,0.0 +15433,14,23.25,36,0.0 +15433,48,12.75,1,0.0 +15433,51,53,43,0.0 +15433,38,263.5,44,0.0 +15433,8,40,19,0.0 +15433,70,15,32,0.0 +15434,24,4.5,6,0.0 +15434,32,32,18,0.0 +15434,43,46,17,0.0 +15434,55,24,28,0.0 +15434,3,10,15,0.0 +15434,70,15,44,0.0 +15434,75,7.75,28,0.0 +15434,62,49.3,12,0.0 +15434,16,17.45,39,0.0 +15434,8,40,32,0.0 +15434,35,18,39,0.0 +15434,14,23.25,30,0.0 +15434,20,81,28,0.0 +15434,1,18,9,0.0 +15434,36,19,34,0.0 +15434,2,19,8,0.0 +15434,49,20,10,0.0 +15434,73,15,42,0.0 +15434,5,21.35,7,0.0 +15434,22,21,4,0.0 +15434,23,9,27,0.0 +15434,54,7.45,27,0.0 +15434,51,53,2,0.0 +15434,44,19.45,26,0.0 +15434,34,14,17,0.0 +15434,41,9.65,21,0.0 +15434,46,12,18,0.0 +15434,19,9.2,45,0.0 +15434,57,19.5,9,0.0 +15434,13,6,39,0.0 +15434,50,16.25,36,0.0 +15434,10,31,10,0.0 +15434,26,31.23,13,0.0 +15434,45,9.5,5,0.0 +15434,28,45.6,27,0.0 +15434,64,33.25,1,0.0 +15434,71,21.5,11,0.0 +15434,65,21.05,23,0.0 +15434,39,18,43,0.0 +15434,59,55,1,0.0 +15434,6,25,11,0.0 +15434,48,12.75,29,0.0 +15434,12,38,14,0.0 +15434,60,34,9,0.0 +15434,15,15.5,8,0.0 +15434,76,18,22,0.0 +15434,4,22,29,0.0 +15434,74,10,27,0.0 +15435,1,18,48,0.0 +15435,53,32.8,49,0.0 +15435,20,81,32,0.0 +15435,75,7.75,1,0.0 +15435,26,31.23,14,0.0 +15435,67,14,44,0.0 +15435,51,53,12,0.0 +15435,24,4.5,16,0.0 +15435,73,15,13,0.0 +15435,41,9.65,20,0.0 +15435,32,32,42,0.0 +15435,43,46,19,0.0 +15435,47,9.5,29,0.0 +15435,61,28.5,38,0.0 +15435,18,62.5,41,0.0 +15435,37,26,24,0.0 +15435,44,19.45,35,0.0 +15435,27,43.9,20,0.0 +15435,54,7.45,10,0.0 +15435,76,18,30,0.0 +15435,33,2.5,28,0.0 +15435,40,18.4,19,0.0 +15435,52,7,46,0.0 +15435,39,18,38,0.0 +15435,46,12,18,0.0 +15435,45,9.5,31,0.0 +15435,60,34,22,0.0 +15435,71,21.5,16,0.0 +15435,69,36,47,0.0 +15435,49,20,4,0.0 +15435,56,38,10,0.0 +15435,72,34.8,46,0.0 +15435,15,15.5,41,0.0 +15435,59,55,18,0.0 +15435,19,9.2,25,0.0 +15435,62,49.3,39,0.0 +15435,57,19.5,15,0.0 +15435,16,17.45,11,0.0 +15435,28,45.6,17,0.0 +15435,36,19,11,0.0 +15435,74,10,38,0.0 +15435,66,17,18,0.0 +15435,64,33.25,30,0.0 +15435,22,21,17,0.0 +15435,17,39,32,0.0 +15435,65,21.05,13,0.0 +15435,10,31,20,0.0 +15435,42,14,10,0.0 +15435,35,18,33,0.0 +15435,23,9,21,0.0 +15435,77,13,20,0.0 +15435,5,21.35,13,0.0 +15435,68,12.5,3,0.0 +15435,9,97,32,0.0 +15435,38,263.5,14,0.0 +15435,7,30,24,0.0 +15436,48,12.75,46,0.0 +15436,1,18,42,0.0 +15436,75,7.75,17,0.0 +15436,31,12.5,32,0.0 +15436,51,53,26,0.0 +15436,60,34,1,0.0 +15436,15,15.5,30,0.0 +15436,41,9.65,29,0.0 +15436,16,17.45,24,0.0 +15436,22,21,3,0.0 +15436,44,19.45,38,0.0 +15436,29,123.79,33,0.0 +15436,68,12.5,16,0.0 +15436,58,13.25,32,0.0 +15436,11,21,19,0.0 +15436,13,6,33,0.0 +15436,49,20,32,0.0 +15436,19,9.2,4,0.0 +15436,8,40,16,0.0 +15436,46,12,13,0.0 +15436,76,18,33,0.0 +15436,47,9.5,10,0.0 +15436,5,21.35,14,0.0 +15436,62,49.3,24,0.0 +15436,64,33.25,26,0.0 +15436,57,19.5,1,0.0 +15436,23,9,3,0.0 +15437,17,39,50,0.0 +15437,77,13,33,0.0 +15437,32,32,1,0.0 +15437,21,10,11,0.0 +15437,50,16.25,46,0.0 +15437,64,33.25,21,0.0 +15437,74,10,49,0.0 +15437,26,31.23,37,0.0 +15437,71,21.5,20,0.0 +15437,65,21.05,2,0.0 +15437,56,38,22,0.0 +15437,22,21,34,0.0 +15437,7,30,50,0.0 +15437,69,36,24,0.0 +15437,68,12.5,31,0.0 +15437,29,123.79,33,0.0 +15437,61,28.5,6,0.0 +15437,2,19,20,0.0 +15437,8,40,27,0.0 +15437,14,23.25,31,0.0 +15437,59,55,29,0.0 +15437,24,4.5,41,0.0 +15437,15,15.5,21,0.0 +15437,66,17,17,0.0 +15437,9,97,19,0.0 +15437,43,46,33,0.0 +15437,18,62.5,10,0.0 +15437,48,12.75,35,0.0 +15437,42,14,14,0.0 +15437,63,43.9,33,0.0 +15437,49,20,31,0.0 +15437,51,53,9,0.0 +15437,41,9.65,30,0.0 +15437,44,19.45,12,0.0 +15437,30,25.89,30,0.0 +15437,19,9.2,17,0.0 +15437,4,22,48,0.0 +15437,62,49.3,25,0.0 +15437,52,7,39,0.0 +15437,76,18,46,0.0 +15437,55,24,3,0.0 +15437,12,38,13,0.0 +15437,1,18,38,0.0 +15437,23,9,10,0.0 +15437,5,21.35,9,0.0 +15437,10,31,43,0.0 +15437,6,25,29,0.0 +15437,57,19.5,32,0.0 +15437,40,18.4,2,0.0 +15437,36,19,31,0.0 +15437,11,21,46,0.0 +15437,45,9.5,38,0.0 +15437,60,34,9,0.0 +15437,47,9.5,49,0.0 +15437,75,7.75,3,0.0 +15437,34,14,22,0.0 +15437,38,263.5,44,0.0 +15437,16,17.45,47,0.0 +15437,70,15,32,0.0 +15437,25,14,19,0.0 +15437,35,18,8,0.0 +15438,4,22,35,0.0 +15438,28,45.6,2,0.0 +15438,61,28.5,38,0.0 +15438,42,14,32,0.0 +15438,34,14,20,0.0 +15438,52,7,11,0.0 +15438,58,13.25,16,0.0 +15438,60,34,6,0.0 +15438,9,97,42,0.0 +15438,15,15.5,45,0.0 +15438,17,39,1,0.0 +15438,14,23.25,25,0.0 +15438,55,24,34,0.0 +15438,21,10,30,0.0 +15438,41,9.65,49,0.0 +15438,63,43.9,15,0.0 +15438,12,38,25,0.0 +15438,23,9,45,0.0 +15438,26,31.23,4,0.0 +15438,77,13,34,0.0 +15438,59,55,50,0.0 +15439,30,25.89,41,0.0 +15439,2,19,2,0.0 +15439,40,18.4,24,0.0 +15439,44,19.45,45,0.0 +15439,19,9.2,20,0.0 +15439,7,30,2,0.0 +15439,23,9,50,0.0 +15439,50,16.25,36,0.0 +15439,13,6,33,0.0 +15439,34,14,46,0.0 +15439,14,23.25,16,0.0 +15439,48,12.75,41,0.0 +15439,4,22,42,0.0 +15439,75,7.75,19,0.0 +15439,74,10,8,0.0 +15439,72,34.8,25,0.0 +15439,76,18,19,0.0 +15439,3,10,39,0.0 +15439,16,17.45,6,0.0 +15439,66,17,35,0.0 +15439,9,97,8,0.0 +15439,35,18,32,0.0 +15439,17,39,26,0.0 +15439,47,9.5,37,0.0 +15439,49,20,30,0.0 +15439,36,19,21,0.0 +15439,6,25,39,0.0 +15439,10,31,49,0.0 +15439,77,13,7,0.0 +15439,12,38,42,0.0 +15439,62,49.3,2,0.0 +15439,22,21,19,0.0 +15439,45,9.5,19,0.0 +15439,39,18,21,0.0 +15439,37,26,47,0.0 +15439,43,46,36,0.0 +15439,8,40,1,0.0 +15439,58,13.25,43,0.0 +15439,61,28.5,23,0.0 +15439,70,15,9,0.0 +15439,71,21.5,37,0.0 +15439,65,21.05,28,0.0 +15439,24,4.5,30,0.0 +15439,69,36,41,0.0 +15439,21,10,32,0.0 +15439,1,18,22,0.0 +15439,28,45.6,16,0.0 +15440,48,12.75,11,0.0 +15440,74,10,12,0.0 +15440,41,9.65,45,0.0 +15440,30,25.89,45,0.0 +15440,71,21.5,10,0.0 +15440,49,20,12,0.0 +15440,39,18,3,0.0 +15440,62,49.3,12,0.0 +15440,53,32.8,5,0.0 +15440,35,18,18,0.0 +15440,57,19.5,36,0.0 +15441,32,32,2,0.0 +15441,60,34,28,0.0 +15441,47,9.5,21,0.0 +15441,40,18.4,43,0.0 +15441,8,40,10,0.0 +15441,56,38,42,0.0 +15441,4,22,16,0.0 +15441,33,2.5,13,0.0 +15441,18,62.5,11,0.0 +15441,43,46,37,0.0 +15441,46,12,36,0.0 +15441,1,18,29,0.0 +15441,59,55,5,0.0 +15441,16,17.45,43,0.0 +15441,17,39,30,0.0 +15441,19,9.2,43,0.0 +15441,7,30,28,0.0 +15441,51,53,47,0.0 +15441,3,10,7,0.0 +15441,41,9.65,19,0.0 +15441,22,21,39,0.0 +15441,66,17,6,0.0 +15441,20,81,42,0.0 +15441,72,34.8,28,0.0 +15441,23,9,30,0.0 +15441,5,21.35,44,0.0 +15441,76,18,27,0.0 +15441,48,12.75,19,0.0 +15441,55,24,46,0.0 +15441,15,15.5,27,0.0 +15441,31,12.5,13,0.0 +15441,52,7,30,0.0 +15441,69,36,48,0.0 +15442,72,34.8,49,0.0 +15442,34,14,46,0.0 +15442,42,14,39,0.0 +15442,23,9,29,0.0 +15442,57,19.5,19,0.0 +15442,24,4.5,28,0.0 +15442,19,9.2,25,0.0 +15442,14,23.25,3,0.0 +15442,18,62.5,2,0.0 +15442,58,13.25,10,0.0 +15442,12,38,50,0.0 +15442,7,30,23,0.0 +15442,30,25.89,42,0.0 +15442,44,19.45,50,0.0 +15442,45,9.5,22,0.0 +15442,56,38,39,0.0 +15442,37,26,17,0.0 +15442,5,21.35,18,0.0 +15442,75,7.75,14,0.0 +15442,65,21.05,40,0.0 +15442,32,32,17,0.0 +15442,76,18,41,0.0 +15442,50,16.25,6,0.0 +15442,60,34,16,0.0 +15442,39,18,46,0.0 +15442,3,10,48,0.0 +15442,63,43.9,13,0.0 +15442,9,97,13,0.0 +15442,10,31,15,0.0 +15442,17,39,18,0.0 +15442,22,21,3,0.0 +15442,52,7,45,0.0 +15442,71,21.5,3,0.0 +15442,31,12.5,48,0.0 +15442,25,14,1,0.0 +15442,70,15,33,0.0 +15442,6,25,36,0.0 +15442,28,45.6,26,0.0 +15442,62,49.3,6,0.0 +15442,40,18.4,8,0.0 +15442,36,19,4,0.0 +15442,59,55,4,0.0 +15442,20,81,42,0.0 +15442,2,19,44,0.0 +15442,35,18,11,0.0 +15442,51,53,39,0.0 +15442,21,10,49,0.0 +15443,17,39,32,0.0 +15443,28,45.6,18,0.0 +15443,53,32.8,2,0.0 +15443,54,7.45,28,0.0 +15443,40,18.4,25,0.0 +15443,65,21.05,39,0.0 +15443,41,9.65,50,0.0 +15443,33,2.5,34,0.0 +15443,9,97,6,0.0 +15443,72,34.8,14,0.0 +15443,2,19,12,0.0 +15443,69,36,12,0.0 +15443,21,10,21,0.0 +15443,51,53,42,0.0 +15443,66,17,40,0.0 +15443,44,19.45,27,0.0 +15443,48,12.75,44,0.0 +15443,59,55,45,0.0 +15443,42,14,24,0.0 +15443,24,4.5,33,0.0 +15443,27,43.9,46,0.0 +15443,8,40,26,0.0 +15443,56,38,24,0.0 +15443,39,18,20,0.0 +15443,57,19.5,14,0.0 +15443,19,9.2,27,0.0 +15443,16,17.45,28,0.0 +15443,49,20,45,0.0 +15443,63,43.9,17,0.0 +15443,38,263.5,25,0.0 +15444,70,15,24,0.0 +15444,13,6,37,0.0 +15444,58,13.25,48,0.0 +15444,23,9,37,0.0 +15444,19,9.2,25,0.0 +15444,43,46,1,0.0 +15444,10,31,14,0.0 +15444,36,19,33,0.0 +15444,72,34.8,39,0.0 +15444,65,21.05,26,0.0 +15444,8,40,1,0.0 +15444,47,9.5,50,0.0 +15444,33,2.5,9,0.0 +15444,18,62.5,24,0.0 +15444,21,10,41,0.0 +15444,51,53,34,0.0 +15444,45,9.5,10,0.0 +15444,15,15.5,43,0.0 +15444,16,17.45,2,0.0 +15444,24,4.5,45,0.0 +15444,62,49.3,42,0.0 +15444,27,43.9,37,0.0 +15444,25,14,40,0.0 +15444,1,18,13,0.0 +15444,4,22,37,0.0 +15444,40,18.4,49,0.0 +15444,34,14,5,0.0 +15444,61,28.5,36,0.0 +15444,30,25.89,21,0.0 +15444,5,21.35,23,0.0 +15444,56,38,45,0.0 +15444,12,38,4,0.0 +15444,46,12,44,0.0 +15444,63,43.9,7,0.0 +15444,57,19.5,24,0.0 +15444,73,15,20,0.0 +15444,74,10,33,0.0 +15444,59,55,50,0.0 +15444,68,12.5,31,0.0 +15444,75,7.75,41,0.0 +15444,7,30,12,0.0 +15444,9,97,6,0.0 +15444,67,14,47,0.0 +15444,53,32.8,44,0.0 +15444,54,7.45,37,0.0 +15444,11,21,41,0.0 +15444,38,263.5,24,0.0 +15444,6,25,5,0.0 +15444,3,10,41,0.0 +15444,60,34,46,0.0 +15444,14,23.25,45,0.0 +15444,37,26,6,0.0 +15444,29,123.79,38,0.0 +15444,41,9.65,41,0.0 +15444,28,45.6,46,0.0 +15444,48,12.75,24,0.0 +15444,66,17,18,0.0 +15445,2,19,22,0.0 +15445,36,19,2,0.0 +15445,58,13.25,44,0.0 +15445,26,31.23,32,0.0 +15445,53,32.8,9,0.0 +15445,33,2.5,32,0.0 +15445,44,19.45,37,0.0 +15445,68,12.5,1,0.0 +15445,29,123.79,6,0.0 +15445,39,18,15,0.0 +15445,7,30,11,0.0 +15445,60,34,47,0.0 +15445,51,53,50,0.0 +15445,32,32,10,0.0 +15445,62,49.3,35,0.0 +15445,31,12.5,38,0.0 +15445,24,4.5,1,0.0 +15445,43,46,49,0.0 +15445,74,10,24,0.0 +15445,30,25.89,40,0.0 +15445,12,38,26,0.0 +15445,73,15,48,0.0 +15445,14,23.25,15,0.0 +15445,45,9.5,3,0.0 +15445,49,20,36,0.0 +15445,52,7,8,0.0 +15445,38,263.5,31,0.0 +15445,3,10,37,0.0 +15445,72,34.8,6,0.0 +15445,59,55,18,0.0 +15445,13,6,32,0.0 +15445,47,9.5,48,0.0 +15445,23,9,31,0.0 +15445,20,81,47,0.0 +15445,46,12,2,0.0 +15445,66,17,48,0.0 +15445,4,22,6,0.0 +15445,16,17.45,8,0.0 +15445,28,45.6,11,0.0 +15445,22,21,1,0.0 +15445,71,21.5,11,0.0 +15445,5,21.35,21,0.0 +15445,27,43.9,27,0.0 +15445,11,21,4,0.0 +15445,25,14,8,0.0 +15445,50,16.25,37,0.0 +15445,42,14,32,0.0 +15445,8,40,45,0.0 +15445,21,10,13,0.0 +15445,40,18.4,15,0.0 +15445,10,31,15,0.0 +15445,48,12.75,43,0.0 +15445,70,15,26,0.0 +15445,75,7.75,9,0.0 +15445,57,19.5,44,0.0 +15446,69,36,43,0.0 +15446,35,18,19,0.0 +15446,13,6,40,0.0 +15446,19,9.2,45,0.0 +15446,46,12,27,0.0 +15446,39,18,21,0.0 +15446,76,18,48,0.0 +15446,22,21,11,0.0 +15446,26,31.23,34,0.0 +15446,63,43.9,2,0.0 +15446,3,10,2,0.0 +15446,5,21.35,12,0.0 +15446,9,97,36,0.0 +15446,49,20,28,0.0 +15446,21,10,33,0.0 +15446,71,21.5,43,0.0 +15446,62,49.3,39,0.0 +15446,56,38,11,0.0 +15446,60,34,37,0.0 +15446,14,23.25,19,0.0 +15446,54,7.45,21,0.0 +15446,28,45.6,43,0.0 +15446,16,17.45,13,0.0 +15446,10,31,33,0.0 +15446,23,9,17,0.0 +15446,75,7.75,3,0.0 +15446,29,123.79,44,0.0 +15446,44,19.45,35,0.0 +15446,65,21.05,29,0.0 +15446,8,40,26,0.0 +15446,25,14,15,0.0 +15446,37,26,1,0.0 +15446,74,10,44,0.0 +15446,47,9.5,42,0.0 +15446,12,38,1,0.0 +15446,33,2.5,30,0.0 +15446,31,12.5,6,0.0 +15446,42,14,39,0.0 +15446,50,16.25,8,0.0 +15446,20,81,30,0.0 +15446,43,46,17,0.0 +15446,7,30,30,0.0 +15446,18,62.5,41,0.0 +15446,1,18,3,0.0 +15446,36,19,22,0.0 +15446,53,32.8,50,0.0 +15446,15,15.5,40,0.0 +15446,38,263.5,13,0.0 +15446,41,9.65,23,0.0 +15446,30,25.89,8,0.0 +15446,24,4.5,39,0.0 +15446,61,28.5,36,0.0 +15447,21,10,3,0.0 +15447,71,21.5,39,0.0 +15447,29,123.79,29,0.0 +15447,14,23.25,44,0.0 +15447,75,7.75,5,0.0 +15447,34,14,29,0.0 +15447,61,28.5,23,0.0 +15447,28,45.6,20,0.0 +15447,41,9.65,11,0.0 +15447,18,62.5,5,0.0 +15447,60,34,29,0.0 +15447,77,13,23,0.0 +15447,1,18,11,0.0 +15447,25,14,1,0.0 +15447,19,9.2,16,0.0 +15447,5,21.35,24,0.0 +15447,49,20,3,0.0 +15447,59,55,31,0.0 +15447,9,97,27,0.0 +15448,31,12.5,29,0.0 +15448,47,9.5,26,0.0 +15448,33,2.5,48,0.0 +15448,77,13,31,0.0 +15449,63,43.9,18,0.0 +15449,37,26,36,0.0 +15449,27,43.9,8,0.0 +15449,56,38,19,0.0 +15449,22,21,16,0.0 +15449,52,7,26,0.0 +15449,75,7.75,19,0.0 +15449,15,15.5,44,0.0 +15449,14,23.25,18,0.0 +15449,47,9.5,42,0.0 +15449,36,19,30,0.0 +15449,71,21.5,34,0.0 +15449,31,12.5,17,0.0 +15449,60,34,4,0.0 +15449,4,22,10,0.0 +15449,29,123.79,7,0.0 +15449,11,21,33,0.0 +15449,67,14,21,0.0 +15449,12,38,26,0.0 +15449,69,36,50,0.0 +15449,6,25,35,0.0 +15449,25,14,15,0.0 +15449,33,2.5,46,0.0 +15449,32,32,8,0.0 +15449,3,10,10,0.0 +15449,39,18,8,0.0 +15449,16,17.45,8,0.0 +15449,10,31,12,0.0 +15449,34,14,3,0.0 +15449,7,30,1,0.0 +15449,72,34.8,24,0.0 +15449,66,17,39,0.0 +15449,73,15,15,0.0 +15449,76,18,22,0.0 +15449,2,19,2,0.0 +15449,35,18,29,0.0 +15449,43,46,22,0.0 +15449,49,20,1,0.0 +15449,46,12,19,0.0 +15449,74,10,21,0.0 +15449,21,10,22,0.0 +15449,9,97,47,0.0 +15449,13,6,27,0.0 +15449,38,263.5,40,0.0 +15449,17,39,49,0.0 +15449,64,33.25,46,0.0 +15449,8,40,30,0.0 +15449,53,32.8,3,0.0 +15449,68,12.5,39,0.0 +15449,23,9,23,0.0 +15449,65,21.05,50,0.0 +15450,50,16.25,50,0.0 +15450,28,45.6,7,0.0 +15450,16,17.45,3,0.0 +15450,65,21.05,48,0.0 +15450,64,33.25,28,0.0 +15450,40,18.4,21,0.0 +15450,44,19.45,9,0.0 +15450,6,25,16,0.0 +15450,61,28.5,12,0.0 +15450,67,14,41,0.0 +15450,12,38,35,0.0 +15450,8,40,49,0.0 +15450,34,14,23,0.0 +15450,42,14,31,0.0 +15451,34,14,38,0.0 +15451,10,31,13,0.0 +15451,69,36,24,0.0 +15451,45,9.5,48,0.0 +15451,47,9.5,30,0.0 +15451,1,18,43,0.0 +15451,22,21,7,0.0 +15451,17,39,13,0.0 +15451,27,43.9,49,0.0 +15451,48,12.75,20,0.0 +15451,29,123.79,43,0.0 +15451,44,19.45,47,0.0 +15451,24,4.5,11,0.0 +15451,31,12.5,32,0.0 +15451,65,21.05,36,0.0 +15452,57,19.5,2,0.0 +15452,3,10,11,0.0 +15452,68,12.5,28,0.0 +15452,5,21.35,30,0.0 +15452,25,14,16,0.0 +15452,76,18,35,0.0 +15452,69,36,36,0.0 +15452,48,12.75,40,0.0 +15452,17,39,49,0.0 +15452,8,40,36,0.0 +15452,39,18,45,0.0 +15452,31,12.5,41,0.0 +15452,51,53,11,0.0 +15452,36,19,37,0.0 +15452,32,32,49,0.0 +15452,22,21,30,0.0 +15452,41,9.65,24,0.0 +15452,34,14,29,0.0 +15452,18,62.5,23,0.0 +15452,60,34,25,0.0 +15452,50,16.25,36,0.0 +15452,4,22,27,0.0 +15452,7,30,24,0.0 +15453,10,31,41,0.0 +15453,13,6,41,0.0 +15453,64,33.25,7,0.0 +15453,71,21.5,29,0.0 +15453,62,49.3,11,0.0 +15453,4,22,30,0.0 +15453,59,55,24,0.0 +15453,7,30,11,0.0 +15453,58,13.25,22,0.0 +15453,32,32,24,0.0 +15453,52,7,1,0.0 +15453,1,18,35,0.0 +15453,30,25.89,50,0.0 +15453,27,43.9,14,0.0 +15453,68,12.5,44,0.0 +15453,34,14,14,0.0 +15453,55,24,30,0.0 +15453,66,17,11,0.0 +15453,21,10,7,0.0 +15453,6,25,39,0.0 +15453,44,19.45,5,0.0 +15453,28,45.6,17,0.0 +15453,67,14,19,0.0 +15453,43,46,26,0.0 +15453,35,18,44,0.0 +15453,45,9.5,23,0.0 +15453,14,23.25,9,0.0 +15453,25,14,4,0.0 +15453,3,10,25,0.0 +15453,2,19,9,0.0 +15453,42,14,2,0.0 +15453,23,9,34,0.0 +15453,15,15.5,34,0.0 +15453,47,9.5,28,0.0 +15453,75,7.75,8,0.0 +15454,15,15.5,40,0.0 +15454,56,38,7,0.0 +15454,62,49.3,37,0.0 +15454,10,31,49,0.0 +15454,42,14,32,0.0 +15454,6,25,17,0.0 +15454,64,33.25,42,0.0 +15454,72,34.8,13,0.0 +15454,51,53,13,0.0 +15454,2,19,3,0.0 +15454,32,32,50,0.0 +15454,34,14,20,0.0 +15454,70,15,10,0.0 +15454,27,43.9,34,0.0 +15454,17,39,8,0.0 +15454,49,20,48,0.0 +15454,33,2.5,11,0.0 +15454,14,23.25,42,0.0 +15454,7,30,7,0.0 +15454,9,97,10,0.0 +15454,11,21,47,0.0 +15454,24,4.5,26,0.0 +15454,48,12.75,33,0.0 +15454,35,18,43,0.0 +15455,72,34.8,40,0.0 +15455,46,12,8,0.0 +15455,48,12.75,26,0.0 +15455,53,32.8,16,0.0 +15455,54,7.45,7,0.0 +15455,75,7.75,2,0.0 +15455,17,39,4,0.0 +15455,55,24,42,0.0 +15455,14,23.25,40,0.0 +15455,26,31.23,4,0.0 +15455,16,17.45,40,0.0 +15455,7,30,45,0.0 +15455,25,14,29,0.0 +15455,29,123.79,3,0.0 +15455,65,21.05,40,0.0 +15455,62,49.3,10,0.0 +15455,70,15,36,0.0 +15455,66,17,7,0.0 +15456,75,7.75,35,0.0 +15456,55,24,4,0.0 +15456,21,10,42,0.0 +15456,67,14,2,0.0 +15456,8,40,19,0.0 +15456,64,33.25,19,0.0 +15456,40,18.4,45,0.0 +15456,76,18,4,0.0 +15456,37,26,40,0.0 +15456,33,2.5,37,0.0 +15456,43,46,26,0.0 +15456,7,30,31,0.0 +15456,52,7,45,0.0 +15456,11,21,33,0.0 +15456,18,62.5,40,0.0 +15456,68,12.5,25,0.0 +15456,6,25,1,0.0 +15456,24,4.5,14,0.0 +15456,27,43.9,17,0.0 +15456,56,38,10,0.0 +15456,2,19,33,0.0 +15456,34,14,36,0.0 +15456,62,49.3,40,0.0 +15456,20,81,24,0.0 +15456,19,9.2,22,0.0 +15456,17,39,16,0.0 +15456,15,15.5,30,0.0 +15456,46,12,10,0.0 +15456,72,34.8,30,0.0 +15456,26,31.23,13,0.0 +15456,59,55,42,0.0 +15457,59,55,34,0.0 +15457,17,39,35,0.0 +15457,37,26,45,0.0 +15457,45,9.5,50,0.0 +15457,22,21,42,0.0 +15457,57,19.5,11,0.0 +15457,44,19.45,47,0.0 +15457,34,14,38,0.0 +15457,11,21,5,0.0 +15457,39,18,18,0.0 +15457,58,13.25,43,0.0 +15457,28,45.6,12,0.0 +15457,19,9.2,32,0.0 +15457,56,38,2,0.0 +15457,26,31.23,21,0.0 +15457,69,36,19,0.0 +15457,27,43.9,37,0.0 +15457,16,17.45,30,0.0 +15457,67,14,15,0.0 +15457,29,123.79,7,0.0 +15457,18,62.5,21,0.0 +15457,10,31,6,0.0 +15457,4,22,8,0.0 +15457,25,14,12,0.0 +15457,76,18,18,0.0 +15457,41,9.65,9,0.0 +15457,48,12.75,11,0.0 +15457,73,15,25,0.0 +15457,71,21.5,30,0.0 +15457,49,20,43,0.0 +15457,6,25,27,0.0 +15457,7,30,23,0.0 +15457,61,28.5,30,0.0 +15457,51,53,24,0.0 +15457,32,32,29,0.0 +15457,52,7,1,0.0 +15457,5,21.35,41,0.0 +15457,75,7.75,25,0.0 +15457,13,6,28,0.0 +15457,40,18.4,26,0.0 +15457,50,16.25,42,0.0 +15457,68,12.5,27,0.0 +15457,77,13,26,0.0 +15457,30,25.89,11,0.0 +15457,66,17,39,0.0 +15457,38,263.5,21,0.0 +15457,62,49.3,16,0.0 +15457,20,81,34,0.0 +15457,36,19,44,0.0 +15457,12,38,21,0.0 +15457,72,34.8,34,0.0 +15457,3,10,40,0.0 +15457,21,10,34,0.0 +15457,14,23.25,35,0.0 +15457,70,15,39,0.0 +15457,15,15.5,19,0.0 +15457,23,9,30,0.0 +15457,60,34,16,0.0 +15458,17,39,14,0.0 +15458,59,55,8,0.0 +15458,25,14,9,0.0 +15458,73,15,41,0.0 +15458,75,7.75,45,0.0 +15458,76,18,21,0.0 +15458,45,9.5,2,0.0 +15458,14,23.25,20,0.0 +15458,62,49.3,11,0.0 +15458,38,263.5,17,0.0 +15458,48,12.75,31,0.0 +15458,30,25.89,50,0.0 +15458,31,12.5,25,0.0 +15458,44,19.45,47,0.0 +15459,52,7,28,0.0 +15459,58,13.25,46,0.0 +15459,74,10,38,0.0 +15459,62,49.3,29,0.0 +15459,28,45.6,14,0.0 +15459,29,123.79,27,0.0 +15459,68,12.5,30,0.0 +15459,72,34.8,42,0.0 +15459,44,19.45,13,0.0 +15459,61,28.5,37,0.0 +15459,2,19,45,0.0 +15459,46,12,48,0.0 +15459,6,25,8,0.0 +15459,34,14,35,0.0 +15459,18,62.5,41,0.0 +15459,57,19.5,47,0.0 +15459,45,9.5,7,0.0 +15459,17,39,33,0.0 +15459,9,97,7,0.0 +15459,31,12.5,39,0.0 +15459,13,6,27,0.0 +15459,15,15.5,9,0.0 +15459,25,14,40,0.0 +15459,65,21.05,6,0.0 +15459,70,15,24,0.0 +15459,66,17,29,0.0 +15459,32,32,1,0.0 +15459,60,34,15,0.0 +15459,20,81,5,0.0 +15459,24,4.5,34,0.0 +15459,54,7.45,16,0.0 +15459,27,43.9,9,0.0 +15459,67,14,17,0.0 +15459,40,18.4,28,0.0 +15460,75,7.75,36,0.0 +15460,28,45.6,37,0.0 +15460,60,34,29,0.0 +15460,6,25,19,0.0 +15460,37,26,1,0.0 +15460,53,32.8,20,0.0 +15460,76,18,31,0.0 +15460,11,21,41,0.0 +15460,16,17.45,43,0.0 +15460,2,19,29,0.0 +15460,58,13.25,17,0.0 +15460,10,31,22,0.0 +15460,47,9.5,46,0.0 +15460,31,12.5,42,0.0 +15460,15,15.5,5,0.0 +15460,57,19.5,7,0.0 +15460,48,12.75,28,0.0 +15460,50,16.25,12,0.0 +15460,36,19,6,0.0 +15460,22,21,42,0.0 +15460,65,21.05,32,0.0 +15460,67,14,44,0.0 +15460,59,55,4,0.0 +15460,62,49.3,22,0.0 +15461,23,9,14,0.0 +15461,26,31.23,39,0.0 +15461,17,39,49,0.0 +15461,9,97,18,0.0 +15461,12,38,33,0.0 +15461,22,21,40,0.0 +15461,29,123.79,7,0.0 +15461,59,55,49,0.0 +15461,16,17.45,8,0.0 +15461,48,12.75,38,0.0 +15461,52,7,33,0.0 +15461,37,26,49,0.0 +15461,38,263.5,45,0.0 +15461,43,46,24,0.0 +15461,58,13.25,34,0.0 +15461,53,32.8,6,0.0 +15461,3,10,27,0.0 +15461,19,9.2,35,0.0 +15461,61,28.5,50,0.0 +15461,8,40,30,0.0 +15461,6,25,50,0.0 +15461,57,19.5,24,0.0 +15461,67,14,23,0.0 +15461,11,21,8,0.0 +15461,39,18,30,0.0 +15461,1,18,47,0.0 +15461,35,18,40,0.0 +15461,13,6,1,0.0 +15461,50,16.25,44,0.0 +15461,32,32,26,0.0 +15461,69,36,35,0.0 +15461,56,38,37,0.0 +15461,30,25.89,12,0.0 +15462,62,49.3,19,0.0 +15462,49,20,36,0.0 +15462,61,28.5,26,0.0 +15462,35,18,45,0.0 +15462,9,97,4,0.0 +15462,21,10,20,0.0 +15462,69,36,34,0.0 +15462,17,39,43,0.0 +15462,37,26,18,0.0 +15462,54,7.45,36,0.0 +15462,16,17.45,20,0.0 +15462,40,18.4,42,0.0 +15462,44,19.45,37,0.0 +15462,4,22,29,0.0 +15462,19,9.2,19,0.0 +15462,45,9.5,49,0.0 +15462,32,32,5,0.0 +15462,22,21,11,0.0 +15462,25,14,6,0.0 +15462,60,34,17,0.0 +15462,74,10,43,0.0 +15462,8,40,7,0.0 +15462,28,45.6,32,0.0 +15462,20,81,42,0.0 +15462,12,38,25,0.0 +15462,77,13,12,0.0 +15462,76,18,3,0.0 +15463,68,12.5,10,0.0 +15463,75,7.75,21,0.0 +15463,69,36,10,0.0 +15463,60,34,35,0.0 +15463,39,18,14,0.0 +15463,56,38,11,0.0 +15463,14,23.25,33,0.0 +15463,4,22,35,0.0 +15463,18,62.5,41,0.0 +15463,29,123.79,4,0.0 +15463,40,18.4,18,0.0 +15463,20,81,39,0.0 +15463,11,21,19,0.0 +15463,8,40,30,0.0 +15463,72,34.8,20,0.0 +15463,70,15,3,0.0 +15463,64,33.25,6,0.0 +15463,32,32,3,0.0 +15463,65,21.05,47,0.0 +15463,53,32.8,11,0.0 +15463,49,20,49,0.0 +15463,23,9,12,0.0 +15463,34,14,28,0.0 +15463,21,10,25,0.0 +15463,41,9.65,24,0.0 +15463,7,30,18,0.0 +15463,73,15,46,0.0 +15463,25,14,33,0.0 +15463,50,16.25,31,0.0 +15463,59,55,36,0.0 +15463,1,18,11,0.0 +15463,58,13.25,2,0.0 +15463,52,7,38,0.0 +15463,30,25.89,31,0.0 +15463,22,21,19,0.0 +15463,46,12,21,0.0 +15463,36,19,24,0.0 +15463,51,53,8,0.0 +15463,37,26,23,0.0 +15463,28,45.6,33,0.0 +15463,35,18,21,0.0 +15463,71,21.5,12,0.0 +15463,43,46,42,0.0 +15463,15,15.5,26,0.0 +15463,55,24,29,0.0 +15463,42,14,35,0.0 +15463,2,19,41,0.0 +15463,57,19.5,46,0.0 +15463,38,263.5,50,0.0 +15463,44,19.45,34,0.0 +15463,48,12.75,26,0.0 +15463,76,18,44,0.0 +15463,61,28.5,37,0.0 +15463,67,14,25,0.0 +15463,6,25,24,0.0 +15463,66,17,35,0.0 +15463,26,31.23,11,0.0 +15463,74,10,36,0.0 +15463,24,4.5,35,0.0 +15463,77,13,9,0.0 +15463,9,97,36,0.0 +15463,10,31,45,0.0 +15463,12,38,45,0.0 +15463,47,9.5,20,0.0 +15463,27,43.9,25,0.0 +15463,16,17.45,3,0.0 +15463,54,7.45,9,0.0 +15464,30,25.89,27,0.0 +15464,5,21.35,46,0.0 +15464,61,28.5,43,0.0 +15464,1,18,13,0.0 +15464,19,9.2,47,0.0 +15464,40,18.4,49,0.0 +15464,26,31.23,15,0.0 +15464,28,45.6,30,0.0 +15464,64,33.25,23,0.0 +15464,33,2.5,24,0.0 +15464,44,19.45,11,0.0 +15464,48,12.75,43,0.0 +15464,25,14,6,0.0 +15464,71,21.5,30,0.0 +15464,9,97,40,0.0 +15464,47,9.5,23,0.0 +15464,7,30,11,0.0 +15464,67,14,33,0.0 +15464,36,19,23,0.0 +15464,70,15,10,0.0 +15464,16,17.45,18,0.0 +15464,12,38,28,0.0 +15464,41,9.65,28,0.0 +15464,6,25,49,0.0 +15464,51,53,40,0.0 +15464,2,19,44,0.0 +15464,53,32.8,19,0.0 +15464,68,12.5,35,0.0 +15464,42,14,2,0.0 +15464,59,55,15,0.0 +15464,15,15.5,18,0.0 +15464,4,22,25,0.0 +15464,37,26,10,0.0 +15464,57,19.5,3,0.0 +15464,11,21,30,0.0 +15464,46,12,4,0.0 +15464,50,16.25,16,0.0 +15464,29,123.79,25,0.0 +15464,43,46,43,0.0 +15464,56,38,41,0.0 +15464,23,9,36,0.0 +15464,58,13.25,30,0.0 +15464,32,32,9,0.0 +15464,52,7,11,0.0 +15464,10,31,9,0.0 +15464,72,34.8,44,0.0 +15464,8,40,40,0.0 +15464,14,23.25,44,0.0 +15464,75,7.75,17,0.0 +15464,65,21.05,48,0.0 +15464,45,9.5,48,0.0 +15464,39,18,24,0.0 +15464,3,10,15,0.0 +15464,63,43.9,41,0.0 +15464,62,49.3,31,0.0 +15464,24,4.5,25,0.0 +15464,76,18,2,0.0 +15464,13,6,21,0.0 +15464,18,62.5,4,0.0 +15464,17,39,42,0.0 +15464,22,21,42,0.0 +15464,77,13,41,0.0 +15464,55,24,45,0.0 +15464,35,18,44,0.0 +15464,27,43.9,12,0.0 +15464,54,7.45,41,0.0 +15464,21,10,39,0.0 +15464,31,12.5,22,0.0 +15464,66,17,29,0.0 +15464,34,14,17,0.0 +15464,69,36,40,0.0 +15464,38,263.5,45,0.0 +15464,60,34,26,0.0 +15464,49,20,46,0.0 +15464,73,15,36,0.0 +15465,66,17,11,0.0 +15465,69,36,43,0.0 +15465,61,28.5,23,0.0 +15465,40,18.4,5,0.0 +15465,14,23.25,40,0.0 +15465,18,62.5,27,0.0 +15465,20,81,8,0.0 +15465,21,10,5,0.0 +15465,22,21,8,0.0 +15465,1,18,12,0.0 +15465,31,12.5,21,0.0 +15465,38,263.5,25,0.0 +15465,62,49.3,2,0.0 +15465,37,26,11,0.0 +15465,60,34,29,0.0 +15465,12,38,12,0.0 +15465,13,6,3,0.0 +15465,23,9,27,0.0 +15465,59,55,36,0.0 +15465,5,21.35,43,0.0 +15465,52,7,24,0.0 +15465,9,97,7,0.0 +15465,26,31.23,4,0.0 +15465,49,20,29,0.0 +15465,24,4.5,31,0.0 +15465,68,12.5,18,0.0 +15465,7,30,31,0.0 +15465,51,53,18,0.0 +15465,75,7.75,40,0.0 +15465,65,21.05,50,0.0 +15465,29,123.79,6,0.0 +15465,33,2.5,26,0.0 +15466,46,12,45,0.0 +15466,17,39,13,0.0 +15466,74,10,46,0.0 +15466,26,31.23,5,0.0 +15466,51,53,4,0.0 +15466,15,15.5,36,0.0 +15466,54,7.45,14,0.0 +15466,68,12.5,41,0.0 +15466,43,46,13,0.0 +15466,62,49.3,45,0.0 +15466,76,18,22,0.0 +15466,57,19.5,45,0.0 +15466,1,18,31,0.0 +15466,27,43.9,44,0.0 +15466,12,38,49,0.0 +15466,16,17.45,45,0.0 +15466,18,62.5,30,0.0 +15466,30,25.89,19,0.0 +15466,72,34.8,31,0.0 +15466,23,9,32,0.0 +15466,50,16.25,4,0.0 +15466,48,12.75,15,0.0 +15466,45,9.5,10,0.0 +15466,7,30,29,0.0 +15466,77,13,17,0.0 +15466,29,123.79,12,0.0 +15466,60,34,37,0.0 +15466,41,9.65,9,0.0 +15466,52,7,9,0.0 +15466,53,32.8,44,0.0 +15467,35,18,22,0.0 +15467,1,18,14,0.0 +15467,34,14,16,0.0 +15467,18,62.5,6,0.0 +15467,38,263.5,46,0.0 +15467,36,19,45,0.0 +15467,50,16.25,33,0.0 +15467,8,40,4,0.0 +15467,11,21,33,0.0 +15467,16,17.45,7,0.0 +15467,41,9.65,38,0.0 +15467,9,97,24,0.0 +15467,12,38,30,0.0 +15467,73,15,15,0.0 +15467,24,4.5,45,0.0 +15467,39,18,47,0.0 +15467,48,12.75,27,0.0 +15467,76,18,5,0.0 +15467,67,14,44,0.0 +15467,72,34.8,36,0.0 +15467,13,6,38,0.0 +15467,3,10,48,0.0 +15467,10,31,34,0.0 +15467,21,10,45,0.0 +15467,7,30,8,0.0 +15467,68,12.5,21,0.0 +15467,63,43.9,26,0.0 +15467,27,43.9,33,0.0 +15467,75,7.75,4,0.0 +15467,23,9,39,0.0 +15467,52,7,26,0.0 +15467,43,46,27,0.0 +15467,55,24,32,0.0 +15467,17,39,43,0.0 +15467,5,21.35,45,0.0 +15467,65,21.05,48,0.0 +15467,32,32,47,0.0 +15467,59,55,9,0.0 +15467,29,123.79,13,0.0 +15467,49,20,43,0.0 +15467,57,19.5,40,0.0 +15467,71,21.5,36,0.0 +15467,44,19.45,35,0.0 +15467,15,15.5,48,0.0 +15467,28,45.6,48,0.0 +15467,58,13.25,2,0.0 +15467,2,19,3,0.0 +15467,33,2.5,4,0.0 +15467,6,25,35,0.0 +15467,77,13,29,0.0 +15468,54,7.45,36,0.0 +15468,32,32,19,0.0 +15468,76,18,9,0.0 +15468,39,18,30,0.0 +15468,26,31.23,18,0.0 +15468,30,25.89,17,0.0 +15468,66,17,43,0.0 +15468,58,13.25,43,0.0 +15468,46,12,8,0.0 +15468,9,97,32,0.0 +15468,25,14,23,0.0 +15468,18,62.5,31,0.0 +15468,8,40,45,0.0 +15468,59,55,19,0.0 +15468,73,15,36,0.0 +15468,22,21,8,0.0 +15468,68,12.5,32,0.0 +15468,71,21.5,5,0.0 +15468,24,4.5,48,0.0 +15468,69,36,43,0.0 +15468,10,31,38,0.0 +15468,17,39,26,0.0 +15468,57,19.5,19,0.0 +15468,21,10,5,0.0 +15468,33,2.5,36,0.0 +15468,4,22,11,0.0 +15468,49,20,9,0.0 +15468,35,18,4,0.0 +15468,5,21.35,34,0.0 +15468,67,14,41,0.0 +15469,77,13,37,0.0 +15469,54,7.45,32,0.0 +15469,60,34,23,0.0 +15469,76,18,12,0.0 +15469,22,21,1,0.0 +15469,10,31,23,0.0 +15469,65,21.05,14,0.0 +15469,55,24,48,0.0 +15469,68,12.5,39,0.0 +15469,31,12.5,8,0.0 +15469,64,33.25,35,0.0 +15469,72,34.8,41,0.0 +15469,73,15,50,0.0 +15469,4,22,31,0.0 +15469,41,9.65,3,0.0 +15469,26,31.23,44,0.0 +15469,8,40,43,0.0 +15469,39,18,18,0.0 +15469,13,6,17,0.0 +15469,69,36,40,0.0 +15469,3,10,15,0.0 +15469,66,17,3,0.0 +15469,71,21.5,26,0.0 +15469,16,17.45,6,0.0 +15469,1,18,8,0.0 +15469,74,10,1,0.0 +15469,20,81,20,0.0 +15469,7,30,48,0.0 +15469,45,9.5,36,0.0 +15469,67,14,39,0.0 +15469,5,21.35,19,0.0 +15469,37,26,20,0.0 +15469,61,28.5,23,0.0 +15469,62,49.3,1,0.0 +15469,59,55,12,0.0 +15469,58,13.25,31,0.0 +15469,32,32,47,0.0 +15469,18,62.5,33,0.0 +15469,30,25.89,7,0.0 +15469,33,2.5,37,0.0 +15469,2,19,6,0.0 +15469,17,39,45,0.0 +15469,23,9,27,0.0 +15469,49,20,12,0.0 +15469,70,15,19,0.0 +15469,57,19.5,19,0.0 +15469,50,16.25,23,0.0 +15469,43,46,37,0.0 +15469,38,263.5,35,0.0 +15469,53,32.8,37,0.0 +15469,36,19,15,0.0 +15469,48,12.75,1,0.0 +15469,11,21,17,0.0 +15469,24,4.5,43,0.0 +15469,40,18.4,45,0.0 +15469,47,9.5,22,0.0 +15469,27,43.9,41,0.0 +15469,28,45.6,18,0.0 +15469,9,97,9,0.0 +15469,25,14,23,0.0 +15469,51,53,12,0.0 +15470,71,21.5,49,0.0 +15470,24,4.5,29,0.0 +15470,20,81,7,0.0 +15470,73,15,37,0.0 +15470,60,34,36,0.0 +15470,49,20,16,0.0 +15470,65,21.05,32,0.0 +15470,14,23.25,6,0.0 +15470,10,31,47,0.0 +15470,30,25.89,38,0.0 +15470,64,33.25,9,0.0 +15470,70,15,30,0.0 +15470,27,43.9,3,0.0 +15470,62,49.3,21,0.0 +15470,48,12.75,33,0.0 +15470,15,15.5,11,0.0 +15470,7,30,22,0.0 +15470,40,18.4,38,0.0 +15470,13,6,50,0.0 +15470,63,43.9,37,0.0 +15470,25,14,2,0.0 +15471,54,7.45,32,0.0 +15471,73,15,31,0.0 +15471,56,38,48,0.0 +15471,52,7,18,0.0 +15471,23,9,35,0.0 +15471,74,10,23,0.0 +15471,33,2.5,12,0.0 +15471,3,10,38,0.0 +15472,9,97,34,0.0 +15472,22,21,1,0.0 +15472,53,32.8,2,0.0 +15472,8,40,28,0.0 +15472,67,14,6,0.0 +15472,75,7.75,5,0.0 +15472,73,15,22,0.0 +15472,26,31.23,9,0.0 +15472,25,14,42,0.0 +15472,13,6,50,0.0 +15472,47,9.5,20,0.0 +15472,69,36,27,0.0 +15472,36,19,33,0.0 +15472,62,49.3,28,0.0 +15472,34,14,12,0.0 +15472,12,38,22,0.0 +15472,19,9.2,20,0.0 +15472,55,24,39,0.0 +15472,56,38,8,0.0 +15473,20,81,35,0.0 +15473,64,33.25,46,0.0 +15473,50,16.25,32,0.0 +15473,70,15,38,0.0 +15473,15,15.5,25,0.0 +15473,77,13,35,0.0 +15473,2,19,13,0.0 +15473,53,32.8,42,0.0 +15473,43,46,9,0.0 +15473,56,38,40,0.0 +15473,51,53,4,0.0 +15473,59,55,19,0.0 +15473,38,263.5,47,0.0 +15473,35,18,3,0.0 +15473,55,24,15,0.0 +15473,63,43.9,15,0.0 +15473,46,12,9,0.0 +15473,74,10,40,0.0 +15473,58,13.25,31,0.0 +15473,19,9.2,8,0.0 +15473,33,2.5,29,0.0 +15473,72,34.8,34,0.0 +15473,41,9.65,12,0.0 +15473,22,21,10,0.0 +15473,66,17,38,0.0 +15473,75,7.75,4,0.0 +15473,42,14,29,0.0 +15473,11,21,22,0.0 +15473,45,9.5,24,0.0 +15473,52,7,36,0.0 +15473,54,7.45,10,0.0 +15473,21,10,39,0.0 +15473,12,38,46,0.0 +15473,4,22,24,0.0 +15473,69,36,2,0.0 +15473,61,28.5,47,0.0 +15473,36,19,38,0.0 +15473,9,97,6,0.0 +15473,65,21.05,39,0.0 +15473,49,20,47,0.0 +15473,57,19.5,32,0.0 +15473,8,40,22,0.0 +15473,40,18.4,9,0.0 +15473,32,32,37,0.0 +15473,34,14,50,0.0 +15473,67,14,45,0.0 +15473,37,26,50,0.0 +15473,44,19.45,18,0.0 +15473,5,21.35,50,0.0 +15473,31,12.5,43,0.0 +15473,16,17.45,17,0.0 +15473,47,9.5,16,0.0 +15473,23,9,46,0.0 +15473,6,25,22,0.0 +15473,28,45.6,48,0.0 +15473,60,34,9,0.0 +15473,24,4.5,23,0.0 +15474,53,32.8,13,0.0 +15474,7,30,20,0.0 +15474,58,13.25,34,0.0 +15474,49,20,29,0.0 +15474,10,31,11,0.0 +15474,28,45.6,37,0.0 +15474,55,24,45,0.0 +15474,31,12.5,26,0.0 +15474,25,14,50,0.0 +15474,15,15.5,23,0.0 +15474,60,34,22,0.0 +15474,69,36,16,0.0 +15474,20,81,14,0.0 +15474,74,10,37,0.0 +15474,18,62.5,32,0.0 +15474,63,43.9,23,0.0 +15474,32,32,50,0.0 +15474,72,34.8,17,0.0 +15474,26,31.23,47,0.0 +15474,65,21.05,35,0.0 +15474,29,123.79,2,0.0 +15474,56,38,40,0.0 +15474,61,28.5,24,0.0 +15474,67,14,6,0.0 +15474,48,12.75,1,0.0 +15474,27,43.9,3,0.0 +15474,23,9,32,0.0 +15474,45,9.5,9,0.0 +15474,46,12,15,0.0 +15474,36,19,25,0.0 +15475,17,39,45,0.0 +15475,13,6,32,0.0 +15475,73,15,7,0.0 +15475,65,21.05,40,0.0 +15475,62,49.3,19,0.0 +15475,36,19,39,0.0 +15475,30,25.89,40,0.0 +15475,43,46,39,0.0 +15475,5,21.35,6,0.0 +15475,71,21.5,27,0.0 +15475,74,10,11,0.0 +15475,50,16.25,41,0.0 +15475,40,18.4,28,0.0 +15475,39,18,38,0.0 +15475,72,34.8,43,0.0 +15475,24,4.5,22,0.0 +15475,8,40,11,0.0 +15475,42,14,5,0.0 +15475,16,17.45,34,0.0 +15475,45,9.5,32,0.0 +15475,67,14,6,0.0 +15475,52,7,22,0.0 +15475,59,55,9,0.0 +15475,29,123.79,23,0.0 +15475,33,2.5,4,0.0 +15475,18,62.5,43,0.0 +15475,57,19.5,42,0.0 +15475,2,19,46,0.0 +15475,35,18,35,0.0 +15475,76,18,43,0.0 +15475,3,10,41,0.0 +15475,37,26,17,0.0 +15475,68,12.5,37,0.0 +15475,41,9.65,44,0.0 +15476,32,32,36,0.0 +15476,8,40,18,0.0 +15476,9,97,1,0.0 +15476,27,43.9,15,0.0 +15476,37,26,23,0.0 +15476,48,12.75,26,0.0 +15476,1,18,26,0.0 +15476,34,14,11,0.0 +15476,2,19,30,0.0 +15476,18,62.5,3,0.0 +15476,28,45.6,14,0.0 +15476,54,7.45,40,0.0 +15476,11,21,40,0.0 +15476,43,46,2,0.0 +15476,35,18,29,0.0 +15476,45,9.5,21,0.0 +15476,74,10,33,0.0 +15476,16,17.45,40,0.0 +15476,7,30,16,0.0 +15476,23,9,49,0.0 +15476,19,9.2,1,0.0 +15476,36,19,37,0.0 +15476,14,23.25,7,0.0 +15476,30,25.89,34,0.0 +15476,77,13,19,0.0 +15476,75,7.75,29,0.0 +15476,68,12.5,43,0.0 +15476,25,14,23,0.0 +15476,21,10,32,0.0 +15476,52,7,17,0.0 +15476,63,43.9,27,0.0 +15476,51,53,29,0.0 +15476,61,28.5,4,0.0 +15476,39,18,10,0.0 +15476,41,9.65,28,0.0 +15476,17,39,6,0.0 +15476,6,25,20,0.0 +15476,5,21.35,30,0.0 +15476,67,14,22,0.0 +15476,70,15,26,0.0 +15476,15,15.5,29,0.0 +15477,19,9.2,44,0.0 +15477,69,36,1,0.0 +15477,15,15.5,17,0.0 +15477,13,6,22,0.0 +15477,29,123.79,11,0.0 +15477,55,24,2,0.0 +15477,76,18,44,0.0 +15477,8,40,28,0.0 +15477,44,19.45,30,0.0 +15477,35,18,13,0.0 +15477,63,43.9,40,0.0 +15477,24,4.5,22,0.0 +15477,28,45.6,21,0.0 +15477,30,25.89,30,0.0 +15477,42,14,48,0.0 +15477,6,25,14,0.0 +15477,21,10,6,0.0 +15477,52,7,40,0.0 +15477,17,39,35,0.0 +15477,5,21.35,8,0.0 +15477,58,13.25,24,0.0 +15477,45,9.5,15,0.0 +15477,33,2.5,11,0.0 +15477,26,31.23,9,0.0 +15477,51,53,15,0.0 +15477,56,38,23,0.0 +15477,11,21,44,0.0 +15477,74,10,23,0.0 +15477,31,12.5,47,0.0 +15477,20,81,17,0.0 +15477,37,26,35,0.0 +15477,34,14,17,0.0 +15477,1,18,22,0.0 +15477,32,32,7,0.0 +15477,68,12.5,5,0.0 +15477,70,15,2,0.0 +15477,61,28.5,8,0.0 +15477,10,31,31,0.0 +15477,38,263.5,44,0.0 +15477,67,14,21,0.0 +15477,18,62.5,2,0.0 +15477,43,46,38,0.0 +15477,60,34,27,0.0 +15477,27,43.9,25,0.0 +15477,59,55,1,0.0 +15477,50,16.25,49,0.0 +15477,7,30,16,0.0 +15477,65,21.05,19,0.0 +15477,71,21.5,25,0.0 +15477,3,10,15,0.0 +15477,41,9.65,42,0.0 +15477,72,34.8,35,0.0 +15477,77,13,27,0.0 +15477,16,17.45,40,0.0 +15477,14,23.25,34,0.0 +15477,25,14,27,0.0 +15477,62,49.3,20,0.0 +15477,46,12,22,0.0 +15477,9,97,14,0.0 +15477,4,22,21,0.0 +15477,36,19,40,0.0 +15477,40,18.4,45,0.0 +15477,22,21,9,0.0 +15477,12,38,9,0.0 +15477,53,32.8,34,0.0 +15478,61,28.5,22,0.0 +15478,23,9,47,0.0 +15478,51,53,20,0.0 +15478,28,45.6,4,0.0 +15478,75,7.75,29,0.0 +15478,38,263.5,2,0.0 +15478,3,10,50,0.0 +15478,66,17,20,0.0 +15479,71,21.5,42,0.0 +15479,15,15.5,21,0.0 +15479,64,33.25,5,0.0 +15479,74,10,44,0.0 +15479,35,18,6,0.0 +15479,42,14,49,0.0 +15479,58,13.25,2,0.0 +15479,12,38,44,0.0 +15479,45,9.5,31,0.0 +15479,17,39,46,0.0 +15479,69,36,11,0.0 +15479,34,14,40,0.0 +15479,6,25,38,0.0 +15479,37,26,31,0.0 +15479,52,7,12,0.0 +15479,30,25.89,46,0.0 +15479,10,31,1,0.0 +15479,14,23.25,12,0.0 +15479,61,28.5,40,0.0 +15479,60,34,46,0.0 +15479,77,13,1,0.0 +15479,5,21.35,25,0.0 +15479,9,97,19,0.0 +15479,24,4.5,27,0.0 +15479,32,32,27,0.0 +15479,50,16.25,45,0.0 +15479,41,9.65,35,0.0 +15479,11,21,15,0.0 +15479,20,81,4,0.0 +15479,47,9.5,35,0.0 +15479,22,21,24,0.0 +15479,72,34.8,1,0.0 +15479,57,19.5,2,0.0 +15479,39,18,41,0.0 +15479,31,12.5,17,0.0 +15479,73,15,35,0.0 +15479,25,14,34,0.0 +15479,43,46,22,0.0 +15479,18,62.5,21,0.0 +15479,75,7.75,30,0.0 +15479,65,21.05,42,0.0 +15480,6,25,42,0.0 +15480,57,19.5,19,0.0 +15480,24,4.5,21,0.0 +15480,62,49.3,34,0.0 +15481,49,20,9,0.0 +15481,25,14,41,0.0 +15481,19,9.2,7,0.0 +15481,18,62.5,50,0.0 +15481,13,6,26,0.0 +15481,56,38,29,0.0 +15481,62,49.3,42,0.0 +15481,48,12.75,8,0.0 +15482,43,46,5,0.0 +15482,53,32.8,36,0.0 +15482,61,28.5,29,0.0 +15482,16,17.45,42,0.0 +15482,54,7.45,37,0.0 +15482,38,263.5,39,0.0 +15482,60,34,7,0.0 +15482,10,31,39,0.0 +15482,65,21.05,28,0.0 +15482,59,55,20,0.0 +15482,56,38,15,0.0 +15482,39,18,47,0.0 +15482,32,32,36,0.0 +15482,27,43.9,3,0.0 +15482,33,2.5,7,0.0 +15482,19,9.2,19,0.0 +15482,42,14,31,0.0 +15482,68,12.5,26,0.0 +15482,49,20,31,0.0 +15482,67,14,30,0.0 +15482,30,25.89,29,0.0 +15482,62,49.3,5,0.0 +15482,13,6,35,0.0 +15482,2,19,49,0.0 +15482,5,21.35,38,0.0 +15482,48,12.75,17,0.0 +15482,51,53,12,0.0 +15482,20,81,38,0.0 +15482,45,9.5,19,0.0 +15482,41,9.65,9,0.0 +15482,77,13,37,0.0 +15482,21,10,27,0.0 +15482,63,43.9,1,0.0 +15482,7,30,34,0.0 +15482,28,45.6,28,0.0 +15482,40,18.4,50,0.0 +15482,4,22,30,0.0 +15482,37,26,48,0.0 +15483,28,45.6,43,0.0 +15483,20,81,9,0.0 +15483,46,12,46,0.0 +15483,18,62.5,34,0.0 +15483,15,15.5,10,0.0 +15483,64,33.25,20,0.0 +15483,55,24,43,0.0 +15483,31,12.5,42,0.0 +15483,44,19.45,47,0.0 +15483,76,18,43,0.0 +15483,49,20,25,0.0 +15483,29,123.79,10,0.0 +15483,11,21,48,0.0 +15484,51,53,46,0.0 +15484,60,34,19,0.0 +15484,36,19,26,0.0 +15484,70,15,17,0.0 +15484,37,26,26,0.0 +15484,14,23.25,15,0.0 +15484,28,45.6,33,0.0 +15484,10,31,38,0.0 +15484,31,12.5,16,0.0 +15484,42,14,5,0.0 +15484,26,31.23,49,0.0 +15484,5,21.35,18,0.0 +15484,47,9.5,10,0.0 +15484,46,12,1,0.0 +15484,49,20,46,0.0 +15484,54,7.45,16,0.0 +15484,66,17,45,0.0 +15484,6,25,39,0.0 +15484,7,30,1,0.0 +15484,25,14,5,0.0 +15484,74,10,39,0.0 +15484,77,13,32,0.0 +15484,4,22,7,0.0 +15484,50,16.25,23,0.0 +15484,20,81,35,0.0 +15484,29,123.79,18,0.0 +15484,57,19.5,23,0.0 +15484,67,14,15,0.0 +15484,53,32.8,39,0.0 +15484,30,25.89,10,0.0 +15484,27,43.9,8,0.0 +15484,69,36,14,0.0 +15485,34,14,20,0.0 +15485,1,18,43,0.0 +15485,2,19,48,0.0 +15485,13,6,19,0.0 +15485,10,31,32,0.0 +15485,14,23.25,17,0.0 +15485,11,21,12,0.0 +15485,26,31.23,48,0.0 +15485,47,9.5,1,0.0 +15485,53,32.8,43,0.0 +15485,6,25,34,0.0 +15485,57,19.5,26,0.0 +15485,66,17,47,0.0 +15485,29,123.79,22,0.0 +15485,59,55,39,0.0 +15485,69,36,18,0.0 +15485,20,81,50,0.0 +15485,42,14,35,0.0 +15485,27,43.9,25,0.0 +15485,63,43.9,40,0.0 +15485,61,28.5,24,0.0 +15485,40,18.4,12,0.0 +15485,76,18,50,0.0 +15485,23,9,46,0.0 +15485,33,2.5,45,0.0 +15485,68,12.5,3,0.0 +15485,74,10,2,0.0 +15485,32,32,37,0.0 +15485,16,17.45,26,0.0 +15485,72,34.8,26,0.0 +15485,60,34,22,0.0 +15485,52,7,6,0.0 +15485,67,14,18,0.0 +15485,44,19.45,45,0.0 +15485,19,9.2,23,0.0 +15485,51,53,35,0.0 +15485,35,18,36,0.0 +15485,18,62.5,49,0.0 +15485,55,24,2,0.0 +15485,17,39,29,0.0 +15485,70,15,29,0.0 +15485,36,19,4,0.0 +15485,62,49.3,35,0.0 +15485,30,25.89,41,0.0 +15485,5,21.35,48,0.0 +15485,41,9.65,40,0.0 +15485,64,33.25,29,0.0 +15485,77,13,26,0.0 +15485,56,38,48,0.0 +15486,67,14,39,0.0 +15486,24,4.5,19,0.0 +15486,15,15.5,3,0.0 +15486,77,13,31,0.0 +15486,64,33.25,31,0.0 +15486,20,81,29,0.0 +15486,62,49.3,12,0.0 +15486,61,28.5,13,0.0 +15486,50,16.25,20,0.0 +15486,53,32.8,15,0.0 +15486,56,38,15,0.0 +15486,54,7.45,8,0.0 +15486,12,38,28,0.0 +15486,43,46,4,0.0 +15486,60,34,10,0.0 +15486,13,6,25,0.0 +15486,22,21,23,0.0 +15486,36,19,21,0.0 +15486,38,263.5,25,0.0 +15486,37,26,39,0.0 +15486,7,30,47,0.0 +15486,46,12,11,0.0 +15486,23,9,30,0.0 +15486,1,18,50,0.0 +15486,48,12.75,25,0.0 +15486,52,7,7,0.0 +15486,30,25.89,5,0.0 +15486,29,123.79,10,0.0 +15486,33,2.5,46,0.0 +15486,42,14,7,0.0 +15486,17,39,5,0.0 +15486,5,21.35,49,0.0 +15486,41,9.65,8,0.0 +15486,65,21.05,4,0.0 +15486,59,55,22,0.0 +15486,10,31,3,0.0 +15487,33,2.5,31,0.0 +15487,8,40,9,0.0 +15487,46,12,40,0.0 +15487,24,4.5,18,0.0 +15487,2,19,25,0.0 +15487,64,33.25,7,0.0 +15487,56,38,48,0.0 +15487,31,12.5,40,0.0 +15487,73,15,7,0.0 +15487,53,32.8,4,0.0 +15487,23,9,32,0.0 +15487,25,14,34,0.0 +15487,21,10,46,0.0 +15487,17,39,3,0.0 +15487,43,46,44,0.0 +15487,52,7,36,0.0 +15487,47,9.5,5,0.0 +15487,65,21.05,18,0.0 +15487,6,25,4,0.0 +15487,16,17.45,4,0.0 +15487,41,9.65,8,0.0 +15487,32,32,13,0.0 +15487,39,18,28,0.0 +15487,20,81,44,0.0 +15487,10,31,22,0.0 +15487,19,9.2,1,0.0 +15487,76,18,34,0.0 +15487,27,43.9,27,0.0 +15487,71,21.5,13,0.0 +15487,22,21,41,0.0 +15487,77,13,24,0.0 +15488,30,25.89,13,0.0 +15488,66,17,25,0.0 +15488,26,31.23,5,0.0 +15488,3,10,50,0.0 +15488,71,21.5,9,0.0 +15488,70,15,16,0.0 +15488,60,34,11,0.0 +15488,75,7.75,8,0.0 +15488,45,9.5,7,0.0 +15488,39,18,24,0.0 +15488,57,19.5,12,0.0 +15488,65,21.05,1,0.0 +15488,8,40,31,0.0 +15488,22,21,5,0.0 +15488,32,32,8,0.0 +15488,19,9.2,35,0.0 +15488,15,15.5,4,0.0 +15488,41,9.65,35,0.0 +15488,9,97,27,0.0 +15488,74,10,30,0.0 +15488,4,22,34,0.0 +15488,17,39,21,0.0 +15488,14,23.25,16,0.0 +15488,44,19.45,41,0.0 +15488,35,18,41,0.0 +15488,5,21.35,23,0.0 +15488,23,9,23,0.0 +15488,49,20,36,0.0 +15488,13,6,45,0.0 +15488,72,34.8,15,0.0 +15488,64,33.25,14,0.0 +15488,20,81,40,0.0 +15488,58,13.25,34,0.0 +15488,50,16.25,45,0.0 +15488,1,18,24,0.0 +15488,36,19,25,0.0 +15488,7,30,39,0.0 +15488,42,14,12,0.0 +15488,59,55,48,0.0 +15488,16,17.45,17,0.0 +15488,53,32.8,42,0.0 +15488,29,123.79,43,0.0 +15488,55,24,45,0.0 +15488,24,4.5,13,0.0 +15488,54,7.45,3,0.0 +15488,27,43.9,21,0.0 +15488,31,12.5,29,0.0 +15488,43,46,29,0.0 +15488,25,14,36,0.0 +15488,68,12.5,11,0.0 +15488,2,19,5,0.0 +15488,51,53,9,0.0 +15488,10,31,3,0.0 +15488,69,36,48,0.0 +15488,37,26,7,0.0 +15488,18,62.5,23,0.0 +15488,21,10,39,0.0 +15488,11,21,13,0.0 +15488,63,43.9,31,0.0 +15488,52,7,4,0.0 +15488,33,2.5,17,0.0 +15488,28,45.6,47,0.0 +15488,48,12.75,7,0.0 +15488,6,25,33,0.0 +15488,46,12,35,0.0 +15488,62,49.3,47,0.0 +15488,38,263.5,16,0.0 +15488,76,18,31,0.0 +15488,73,15,14,0.0 +15488,56,38,14,0.0 +15489,40,18.4,11,0.0 +15489,62,49.3,31,0.0 +15489,53,32.8,19,0.0 +15489,47,9.5,20,0.0 +15489,45,9.5,31,0.0 +15489,28,45.6,14,0.0 +15489,67,14,36,0.0 +15489,16,17.45,17,0.0 +15489,10,31,4,0.0 +15489,63,43.9,50,0.0 +15490,10,31,25,0.0 +15490,11,21,36,0.0 +15490,72,34.8,9,0.0 +15490,34,14,10,0.0 +15490,14,23.25,28,0.0 +15490,24,4.5,31,0.0 +15490,65,21.05,4,0.0 +15490,51,53,7,0.0 +15490,36,19,20,0.0 +15490,74,10,16,0.0 +15490,16,17.45,39,0.0 +15490,62,49.3,9,0.0 +15490,19,9.2,35,0.0 +15490,76,18,31,0.0 +15490,35,18,41,0.0 +15490,2,19,10,0.0 +15490,60,34,43,0.0 +15490,38,263.5,13,0.0 +15490,58,13.25,4,0.0 +15490,70,15,25,0.0 +15490,44,19.45,28,0.0 +15490,13,6,13,0.0 +15490,15,15.5,29,0.0 +15490,18,62.5,26,0.0 +15490,54,7.45,21,0.0 +15490,5,21.35,11,0.0 +15490,30,25.89,36,0.0 +15490,71,21.5,20,0.0 +15490,42,14,11,0.0 +15490,47,9.5,22,0.0 +15490,9,97,49,0.0 +15490,32,32,2,0.0 +15490,3,10,43,0.0 +15490,45,9.5,10,0.0 +15490,6,25,14,0.0 +15490,29,123.79,45,0.0 +15491,59,55,21,0.0 +15491,70,15,15,0.0 +15491,25,14,46,0.0 +15491,4,22,19,0.0 +15491,26,31.23,15,0.0 +15491,29,123.79,40,0.0 +15491,16,17.45,45,0.0 +15491,42,14,6,0.0 +15491,27,43.9,40,0.0 +15491,20,81,16,0.0 +15491,55,24,1,0.0 +15491,66,17,50,0.0 +15491,43,46,39,0.0 +15491,51,53,9,0.0 +15491,38,263.5,29,0.0 +15491,56,38,4,0.0 +15491,65,21.05,38,0.0 +15491,61,28.5,36,0.0 +15491,45,9.5,50,0.0 +15491,1,18,14,0.0 +15491,69,36,24,0.0 +15491,44,19.45,22,0.0 +15491,6,25,17,0.0 +15491,68,12.5,10,0.0 +15491,2,19,46,0.0 +15491,22,21,44,0.0 +15491,21,10,12,0.0 +15491,19,9.2,48,0.0 +15491,23,9,33,0.0 +15491,73,15,4,0.0 +15491,37,26,42,0.0 +15491,39,18,21,0.0 +15491,67,14,1,0.0 +15491,30,25.89,12,0.0 +15491,18,62.5,33,0.0 +15491,11,21,16,0.0 +15491,12,38,6,0.0 +15491,9,97,18,0.0 +15491,41,9.65,7,0.0 +15491,8,40,8,0.0 +15491,75,7.75,14,0.0 +15491,58,13.25,44,0.0 +15491,52,7,4,0.0 +15491,34,14,5,0.0 +15491,32,32,1,0.0 +15491,54,7.45,41,0.0 +15491,72,34.8,28,0.0 +15491,7,30,10,0.0 +15491,77,13,3,0.0 +15491,63,43.9,10,0.0 +15491,5,21.35,1,0.0 +15491,10,31,1,0.0 +15491,3,10,17,0.0 +15491,60,34,46,0.0 +15491,46,12,27,0.0 +15491,53,32.8,45,0.0 +15491,33,2.5,33,0.0 +15491,71,21.5,29,0.0 +15492,35,18,38,0.0 +15492,46,12,5,0.0 +15492,50,16.25,43,0.0 +15492,2,19,47,0.0 +15492,11,21,18,0.0 +15492,33,2.5,6,0.0 +15492,62,49.3,18,0.0 +15492,61,28.5,35,0.0 +15492,55,24,24,0.0 +15492,20,81,40,0.0 +15492,27,43.9,1,0.0 +15492,40,18.4,29,0.0 +15492,22,21,22,0.0 +15492,36,19,25,0.0 +15492,32,32,37,0.0 +15492,54,7.45,28,0.0 +15492,49,20,12,0.0 +15492,56,38,25,0.0 +15492,5,21.35,30,0.0 +15492,51,53,14,0.0 +15492,23,9,48,0.0 +15492,7,30,22,0.0 +15492,8,40,7,0.0 +15492,13,6,50,0.0 +15492,70,15,11,0.0 +15492,9,97,33,0.0 +15492,75,7.75,3,0.0 +15492,63,43.9,6,0.0 +15492,37,26,28,0.0 +15492,16,17.45,43,0.0 +15492,65,21.05,42,0.0 +15492,28,45.6,28,0.0 +15492,41,9.65,21,0.0 +15492,60,34,27,0.0 +15492,12,38,5,0.0 +15492,44,19.45,26,0.0 +15492,34,14,29,0.0 +15492,10,31,33,0.0 +15492,59,55,27,0.0 +15492,14,23.25,20,0.0 +15492,69,36,9,0.0 +15492,76,18,47,0.0 +15492,19,9.2,42,0.0 +15492,29,123.79,21,0.0 +15492,68,12.5,33,0.0 +15492,1,18,36,0.0 +15492,58,13.25,21,0.0 +15493,21,10,1,0.0 +15493,1,18,4,0.0 +15493,40,18.4,37,0.0 +15493,41,9.65,13,0.0 +15493,31,12.5,47,0.0 +15493,15,15.5,6,0.0 +15493,77,13,3,0.0 +15493,47,9.5,36,0.0 +15493,50,16.25,28,0.0 +15494,74,10,12,0.0 +15494,77,13,8,0.0 +15494,35,18,24,0.0 +15494,32,32,5,0.0 +15494,18,62.5,26,0.0 +15494,58,13.25,3,0.0 +15494,60,34,50,0.0 +15494,53,32.8,15,0.0 +15494,16,17.45,36,0.0 +15494,66,17,45,0.0 +15494,2,19,40,0.0 +15494,3,10,37,0.0 +15494,64,33.25,39,0.0 +15494,44,19.45,47,0.0 +15494,61,28.5,48,0.0 +15494,4,22,27,0.0 +15494,10,31,20,0.0 +15494,69,36,10,0.0 +15494,17,39,47,0.0 +15494,7,30,25,0.0 +15494,40,18.4,45,0.0 +15494,49,20,40,0.0 +15494,24,4.5,21,0.0 +15494,55,24,11,0.0 +15494,36,19,17,0.0 +15494,23,9,27,0.0 +15494,37,26,40,0.0 +15494,54,7.45,46,0.0 +15494,39,18,23,0.0 +15494,73,15,6,0.0 +15494,76,18,15,0.0 +15494,62,49.3,48,0.0 +15494,50,16.25,43,0.0 +15494,59,55,16,0.0 +15494,71,21.5,7,0.0 +15494,56,38,41,0.0 +15494,19,9.2,2,0.0 +15494,33,2.5,26,0.0 +15494,20,81,31,0.0 +15494,9,97,39,0.0 +15494,65,21.05,40,0.0 +15494,38,263.5,6,0.0 +15494,1,18,21,0.0 +15494,63,43.9,16,0.0 +15494,6,25,34,0.0 +15494,34,14,27,0.0 +15494,14,23.25,35,0.0 +15494,11,21,1,0.0 +15494,57,19.5,4,0.0 +15494,52,7,34,0.0 +15494,70,15,8,0.0 +15494,47,9.5,19,0.0 +15494,13,6,22,0.0 +15494,22,21,20,0.0 +15494,75,7.75,11,0.0 +15494,28,45.6,18,0.0 +15494,72,34.8,32,0.0 +15494,46,12,2,0.0 +15494,12,38,48,0.0 +15494,41,9.65,6,0.0 +15494,51,53,47,0.0 +15494,26,31.23,46,0.0 +15494,48,12.75,20,0.0 +15494,68,12.5,38,0.0 +15494,42,14,16,0.0 +15494,43,46,38,0.0 +15494,30,25.89,29,0.0 +15494,5,21.35,45,0.0 +15494,67,14,10,0.0 +15494,31,12.5,24,0.0 +15494,29,123.79,45,0.0 +15494,15,15.5,50,0.0 +15494,8,40,16,0.0 +15495,8,40,26,0.0 +15495,9,97,43,0.0 +15495,75,7.75,17,0.0 +15495,56,38,13,0.0 +15495,27,43.9,37,0.0 +15495,68,12.5,32,0.0 +15495,42,14,30,0.0 +15495,17,39,16,0.0 +15495,72,34.8,45,0.0 +15495,22,21,32,0.0 +15495,5,21.35,12,0.0 +15495,23,9,9,0.0 +15495,18,62.5,43,0.0 +15495,39,18,38,0.0 +15495,45,9.5,47,0.0 +15495,4,22,37,0.0 +15495,63,43.9,19,0.0 +15495,61,28.5,15,0.0 +15495,49,20,33,0.0 +15495,33,2.5,34,0.0 +15495,60,34,6,0.0 +15495,12,38,30,0.0 +15495,37,26,10,0.0 +15495,53,32.8,24,0.0 +15495,47,9.5,33,0.0 +15495,7,30,29,0.0 +15495,29,123.79,50,0.0 +15495,35,18,29,0.0 +15495,77,13,16,0.0 +15495,74,10,5,0.0 +15495,65,21.05,45,0.0 +15495,71,21.5,36,0.0 +15495,14,23.25,50,0.0 +15495,20,81,39,0.0 +15495,32,32,37,0.0 +15495,19,9.2,8,0.0 +15495,70,15,4,0.0 +15495,31,12.5,21,0.0 +15495,62,49.3,20,0.0 +15495,66,17,29,0.0 +15495,36,19,40,0.0 +15495,3,10,7,0.0 +15495,55,24,15,0.0 +15495,64,33.25,31,0.0 +15495,15,15.5,40,0.0 +15495,25,14,16,0.0 +15495,58,13.25,49,0.0 +15495,40,18.4,33,0.0 +15495,57,19.5,3,0.0 +15495,10,31,19,0.0 +15495,11,21,35,0.0 +15495,21,10,16,0.0 +15495,67,14,15,0.0 +15495,24,4.5,38,0.0 +15495,76,18,14,0.0 +15495,46,12,44,0.0 +15495,43,46,6,0.0 +15495,1,18,22,0.0 +15495,30,25.89,37,0.0 +15495,13,6,48,0.0 +15495,52,7,30,0.0 +15495,16,17.45,10,0.0 +15495,59,55,9,0.0 +15496,38,263.5,5,0.0 +15496,5,21.35,15,0.0 +15496,19,9.2,17,0.0 +15496,49,20,20,0.0 +15496,43,46,19,0.0 +15496,70,15,28,0.0 +15496,59,55,21,0.0 +15496,60,34,2,0.0 +15496,72,34.8,11,0.0 +15496,54,7.45,39,0.0 +15496,4,22,9,0.0 +15496,61,28.5,29,0.0 +15496,52,7,14,0.0 +15496,68,12.5,39,0.0 +15496,18,62.5,37,0.0 +15496,73,15,25,0.0 +15496,36,19,41,0.0 +15497,52,7,6,0.0 +15497,51,53,39,0.0 +15497,47,9.5,42,0.0 +15497,18,62.5,24,0.0 +15497,53,32.8,4,0.0 +15497,46,12,19,0.0 +15497,71,21.5,22,0.0 +15497,21,10,35,0.0 +15497,54,7.45,38,0.0 +15497,39,18,26,0.0 +15497,70,15,24,0.0 +15497,74,10,29,0.0 +15497,31,12.5,9,0.0 +15497,5,21.35,36,0.0 +15497,30,25.89,20,0.0 +15497,64,33.25,45,0.0 +15497,76,18,2,0.0 +15497,27,43.9,36,0.0 +15497,67,14,35,0.0 +15497,48,12.75,14,0.0 +15497,17,39,19,0.0 +15497,69,36,4,0.0 +15497,40,18.4,27,0.0 +15497,56,38,38,0.0 +15497,75,7.75,17,0.0 +15497,19,9.2,35,0.0 +15497,33,2.5,35,0.0 +15497,6,25,35,0.0 +15497,60,34,23,0.0 +15497,73,15,24,0.0 +15497,36,19,3,0.0 +15497,15,15.5,46,0.0 +15498,14,23.25,26,0.0 +15498,18,62.5,33,0.0 +15498,26,31.23,3,0.0 +15498,29,123.79,5,0.0 +15498,42,14,41,0.0 +15498,63,43.9,25,0.0 +15498,9,97,46,0.0 +15498,32,32,1,0.0 +15498,68,12.5,12,0.0 +15498,7,30,50,0.0 +15498,71,21.5,32,0.0 +15498,6,25,16,0.0 +15498,59,55,1,0.0 +15498,19,9.2,43,0.0 +15498,66,17,50,0.0 +15498,64,33.25,1,0.0 +15498,2,19,32,0.0 +15498,8,40,28,0.0 +15498,72,34.8,48,0.0 +15498,1,18,22,0.0 +15498,37,26,43,0.0 +15498,30,25.89,22,0.0 +15498,70,15,31,0.0 +15498,38,263.5,16,0.0 +15498,40,18.4,7,0.0 +15498,23,9,13,0.0 +15498,51,53,26,0.0 +15498,36,19,43,0.0 +15498,62,49.3,36,0.0 +15498,58,13.25,28,0.0 +15498,34,14,48,0.0 +15498,65,21.05,24,0.0 +15498,27,43.9,14,0.0 +15498,76,18,13,0.0 +15498,43,46,12,0.0 +15498,24,4.5,16,0.0 +15498,20,81,28,0.0 +15498,45,9.5,17,0.0 +15498,53,32.8,33,0.0 +15498,31,12.5,13,0.0 +15498,47,9.5,45,0.0 +15498,49,20,50,0.0 +15498,50,16.25,7,0.0 +15498,16,17.45,32,0.0 +15498,54,7.45,34,0.0 +15498,61,28.5,36,0.0 +15498,11,21,36,0.0 +15498,33,2.5,49,0.0 +15498,21,10,9,0.0 +15498,25,14,37,0.0 +15499,56,38,44,0.0 +15499,49,20,8,0.0 +15499,40,18.4,21,0.0 +15499,30,25.89,14,0.0 +15499,60,34,4,0.0 +15499,34,14,49,0.0 +15499,25,14,13,0.0 +15499,69,36,16,0.0 +15499,22,21,6,0.0 +15499,21,10,23,0.0 +15499,70,15,50,0.0 +15499,17,39,33,0.0 +15499,10,31,37,0.0 +15499,1,18,28,0.0 +15499,65,21.05,31,0.0 +15499,7,30,45,0.0 +15499,64,33.25,50,0.0 +15499,47,9.5,39,0.0 +15499,51,53,23,0.0 +15499,28,45.6,33,0.0 +15499,54,7.45,31,0.0 +15499,58,13.25,28,0.0 +15499,24,4.5,19,0.0 +15499,50,16.25,21,0.0 +15499,76,18,25,0.0 +15499,29,123.79,1,0.0 +15499,66,17,12,0.0 +15499,45,9.5,49,0.0 +15499,53,32.8,14,0.0 +15499,15,15.5,16,0.0 +15499,72,34.8,46,0.0 +15499,9,97,39,0.0 +15499,37,26,16,0.0 +15499,42,14,3,0.0 +15499,3,10,40,0.0 +15499,57,19.5,15,0.0 +15499,32,32,4,0.0 +15499,68,12.5,15,0.0 +15499,44,19.45,9,0.0 +15499,14,23.25,40,0.0 +15500,65,21.05,2,0.0 +15500,33,2.5,16,0.0 +15500,18,62.5,4,0.0 +15500,19,9.2,47,0.0 +15500,42,14,4,0.0 +15500,68,12.5,28,0.0 +15500,59,55,45,0.0 +15500,46,12,28,0.0 +15500,48,12.75,48,0.0 +15500,28,45.6,29,0.0 +15500,11,21,14,0.0 +15500,73,15,11,0.0 +15500,24,4.5,24,0.0 +15500,27,43.9,27,0.0 +15500,69,36,23,0.0 +15500,71,21.5,38,0.0 +15500,29,123.79,1,0.0 +15500,22,21,48,0.0 +15500,52,7,30,0.0 +15500,2,19,41,0.0 +15501,3,10,39,0.0 +15501,8,40,28,0.0 +15501,66,17,9,0.0 +15501,68,12.5,15,0.0 +15501,15,15.5,40,0.0 +15501,27,43.9,39,0.0 +15501,56,38,26,0.0 +15501,34,14,42,0.0 +15501,36,19,23,0.0 +15501,44,19.45,4,0.0 +15501,9,97,1,0.0 +15501,25,14,9,0.0 +15501,43,46,13,0.0 +15501,41,9.65,16,0.0 +15501,37,26,18,0.0 +15501,62,49.3,25,0.0 +15501,22,21,16,0.0 +15501,50,16.25,27,0.0 +15501,23,9,15,0.0 +15501,38,263.5,15,0.0 +15501,51,53,39,0.0 +15501,63,43.9,39,0.0 +15502,62,49.3,3,0.0 +15502,63,43.9,29,0.0 +15502,6,25,1,0.0 +15502,51,53,34,0.0 +15502,2,19,20,0.0 +15502,68,12.5,31,0.0 +15502,3,10,45,0.0 +15502,5,21.35,32,0.0 +15502,66,17,28,0.0 +15502,20,81,5,0.0 +15502,35,18,45,0.0 +15502,41,9.65,19,0.0 +15502,53,32.8,26,0.0 +15503,77,13,48,0.0 +15503,74,10,30,0.0 +15503,55,24,31,0.0 +15503,44,19.45,37,0.0 +15503,3,10,34,0.0 +15503,70,15,33,0.0 +15503,20,81,15,0.0 +15503,47,9.5,31,0.0 +15503,62,49.3,39,0.0 +15503,54,7.45,11,0.0 +15503,29,123.79,9,0.0 +15503,28,45.6,32,0.0 +15503,13,6,41,0.0 +15503,8,40,43,0.0 +15503,38,263.5,17,0.0 +15503,45,9.5,22,0.0 +15503,31,12.5,4,0.0 +15503,48,12.75,35,0.0 +15503,57,19.5,10,0.0 +15503,59,55,21,0.0 +15503,12,38,13,0.0 +15503,72,34.8,35,0.0 +15503,75,7.75,44,0.0 +15503,40,18.4,39,0.0 +15503,50,16.25,10,0.0 +15503,53,32.8,34,0.0 +15503,58,13.25,30,0.0 +15503,61,28.5,34,0.0 +15503,16,17.45,35,0.0 +15503,76,18,23,0.0 +15503,39,18,37,0.0 +15503,19,9.2,15,0.0 +15503,65,21.05,19,0.0 +15503,64,33.25,30,0.0 +15503,7,30,6,0.0 +15503,25,14,26,0.0 +15503,21,10,45,0.0 +15503,24,4.5,35,0.0 +15503,63,43.9,33,0.0 +15503,18,62.5,40,0.0 +15503,11,21,37,0.0 +15503,36,19,47,0.0 +15503,22,21,27,0.0 +15503,46,12,44,0.0 +15503,37,26,40,0.0 +15503,17,39,29,0.0 +15503,33,2.5,18,0.0 +15503,1,18,33,0.0 +15503,32,32,9,0.0 +15503,73,15,8,0.0 +15503,2,19,12,0.0 +15503,35,18,43,0.0 +15503,69,36,50,0.0 +15503,15,15.5,43,0.0 +15503,67,14,35,0.0 +15503,71,21.5,17,0.0 +15504,18,62.5,39,0.0 +15504,34,14,38,0.0 +15504,6,25,20,0.0 +15504,75,7.75,34,0.0 +15504,39,18,13,0.0 +15504,40,18.4,11,0.0 +15504,76,18,46,0.0 +15504,21,10,6,0.0 +15504,41,9.65,29,0.0 +15504,3,10,36,0.0 +15504,17,39,33,0.0 +15504,23,9,29,0.0 +15504,4,22,8,0.0 +15504,12,38,10,0.0 +15504,31,12.5,15,0.0 +15504,29,123.79,36,0.0 +15504,42,14,9,0.0 +15504,53,32.8,15,0.0 +15504,2,19,28,0.0 +15504,37,26,2,0.0 +15504,20,81,1,0.0 +15504,62,49.3,47,0.0 +15504,47,9.5,6,0.0 +15504,74,10,35,0.0 +15504,58,13.25,43,0.0 +15504,32,32,8,0.0 +15504,33,2.5,40,0.0 +15504,26,31.23,31,0.0 +15504,64,33.25,33,0.0 +15504,1,18,7,0.0 +15504,19,9.2,13,0.0 +15504,44,19.45,33,0.0 +15504,63,43.9,17,0.0 +15504,69,36,43,0.0 +15504,22,21,38,0.0 +15504,16,17.45,35,0.0 +15504,9,97,45,0.0 +15504,38,263.5,29,0.0 +15504,51,53,21,0.0 +15504,71,21.5,41,0.0 +15504,27,43.9,5,0.0 +15504,25,14,14,0.0 +15504,54,7.45,40,0.0 +15504,24,4.5,4,0.0 +15504,60,34,4,0.0 +15504,13,6,43,0.0 +15504,70,15,38,0.0 +15504,36,19,11,0.0 +15504,43,46,23,0.0 +15504,48,12.75,30,0.0 +15504,14,23.25,48,0.0 +15504,67,14,41,0.0 +15504,15,15.5,26,0.0 +15504,30,25.89,30,0.0 +15504,10,31,38,0.0 +15504,65,21.05,28,0.0 +15504,59,55,15,0.0 +15504,7,30,12,0.0 +15504,52,7,2,0.0 +15504,72,34.8,49,0.0 +15504,28,45.6,10,0.0 +15504,77,13,50,0.0 +15504,8,40,16,0.0 +15504,50,16.25,19,0.0 +15504,49,20,31,0.0 +15504,66,17,15,0.0 +15504,5,21.35,22,0.0 +15504,68,12.5,19,0.0 +15504,11,21,17,0.0 +15504,55,24,44,0.0 +15504,45,9.5,34,0.0 +15504,46,12,39,0.0 +15505,64,33.25,38,0.0 +15505,23,9,9,0.0 +15505,55,24,1,0.0 +15505,69,36,21,0.0 +15505,43,46,17,0.0 +15505,5,21.35,21,0.0 +15505,38,263.5,23,0.0 +15505,3,10,34,0.0 +15505,76,18,45,0.0 +15505,65,21.05,29,0.0 +15505,62,49.3,19,0.0 +15505,47,9.5,41,0.0 +15505,33,2.5,1,0.0 +15505,11,21,3,0.0 +15505,9,97,28,0.0 +15505,24,4.5,40,0.0 +15505,19,9.2,45,0.0 +15505,58,13.25,28,0.0 +15505,54,7.45,15,0.0 +15505,74,10,50,0.0 +15505,50,16.25,8,0.0 +15505,26,31.23,17,0.0 +15505,34,14,11,0.0 +15505,2,19,13,0.0 +15505,67,14,8,0.0 +15505,30,25.89,24,0.0 +15505,29,123.79,29,0.0 +15505,42,14,37,0.0 +15505,28,45.6,1,0.0 +15505,1,18,38,0.0 +15505,45,9.5,36,0.0 +15505,36,19,44,0.0 +15505,4,22,42,0.0 +15505,48,12.75,40,0.0 +15505,70,15,47,0.0 +15505,49,20,12,0.0 +15505,73,15,10,0.0 +15505,32,32,8,0.0 +15505,27,43.9,39,0.0 +15505,6,25,26,0.0 +15505,39,18,38,0.0 +15505,18,62.5,16,0.0 +15505,59,55,40,0.0 +15506,75,7.75,46,0.0 +15506,57,19.5,8,0.0 +15506,65,21.05,3,0.0 +15506,66,17,7,0.0 +15506,52,7,16,0.0 +15506,13,6,7,0.0 +15506,76,18,7,0.0 +15506,12,38,15,0.0 +15506,77,13,36,0.0 +15506,60,34,42,0.0 +15506,42,14,41,0.0 +15506,50,16.25,44,0.0 +15506,31,12.5,29,0.0 +15506,28,45.6,14,0.0 +15506,72,34.8,49,0.0 +15506,45,9.5,6,0.0 +15506,36,19,9,0.0 +15506,21,10,35,0.0 +15506,7,30,24,0.0 +15506,37,26,45,0.0 +15506,29,123.79,34,0.0 +15506,56,38,40,0.0 +15506,73,15,30,0.0 +15506,24,4.5,9,0.0 +15506,44,19.45,30,0.0 +15506,54,7.45,47,0.0 +15506,18,62.5,18,0.0 +15506,69,36,21,0.0 +15506,25,14,42,0.0 +15506,53,32.8,44,0.0 +15506,23,9,11,0.0 +15506,4,22,10,0.0 +15506,68,12.5,15,0.0 +15506,10,31,45,0.0 +15506,46,12,42,0.0 +15506,38,263.5,14,0.0 +15506,33,2.5,32,0.0 +15506,1,18,47,0.0 +15506,55,24,27,0.0 +15506,63,43.9,20,0.0 +15506,11,21,34,0.0 +15506,51,53,36,0.0 +15506,34,14,33,0.0 +15506,35,18,18,0.0 +15506,27,43.9,47,0.0 +15506,16,17.45,9,0.0 +15506,3,10,9,0.0 +15507,54,7.45,14,0.0 +15507,75,7.75,12,0.0 +15507,27,43.9,22,0.0 +15507,63,43.9,26,0.0 +15507,64,33.25,39,0.0 +15507,38,263.5,8,0.0 +15507,76,18,7,0.0 +15507,62,49.3,26,0.0 +15507,66,17,37,0.0 +15507,3,10,35,0.0 +15507,28,45.6,20,0.0 +15507,53,32.8,15,0.0 +15507,29,123.79,46,0.0 +15507,14,23.25,12,0.0 +15507,6,25,21,0.0 +15507,34,14,30,0.0 +15507,19,9.2,29,0.0 +15507,42,14,30,0.0 +15507,56,38,3,0.0 +15507,61,28.5,32,0.0 +15507,73,15,12,0.0 +15507,45,9.5,46,0.0 +15507,51,53,23,0.0 +15507,5,21.35,46,0.0 +15507,60,34,42,0.0 +15507,70,15,4,0.0 +15507,1,18,11,0.0 +15507,43,46,31,0.0 +15507,32,32,23,0.0 +15507,72,34.8,42,0.0 +15507,15,15.5,29,0.0 +15507,16,17.45,32,0.0 +15507,55,24,15,0.0 +15507,67,14,20,0.0 +15507,33,2.5,13,0.0 +15507,65,21.05,9,0.0 +15507,10,31,38,0.0 +15507,57,19.5,25,0.0 +15507,36,19,8,0.0 +15507,59,55,10,0.0 +15507,7,30,34,0.0 +15507,68,12.5,34,0.0 +15507,46,12,26,0.0 +15507,26,31.23,14,0.0 +15507,20,81,48,0.0 +15507,69,36,15,0.0 +15507,71,21.5,11,0.0 +15507,2,19,41,0.0 +15507,58,13.25,8,0.0 +15507,30,25.89,40,0.0 +15507,52,7,37,0.0 +15507,9,97,49,0.0 +15507,39,18,12,0.0 +15507,37,26,13,0.0 +15507,44,19.45,4,0.0 +15507,13,6,17,0.0 +15507,22,21,11,0.0 +15507,21,10,21,0.0 +15507,11,21,48,0.0 +15507,47,9.5,37,0.0 +15507,74,10,33,0.0 +15507,4,22,10,0.0 +15507,25,14,8,0.0 +15507,18,62.5,37,0.0 +15507,49,20,50,0.0 +15507,23,9,16,0.0 +15507,8,40,4,0.0 +15507,77,13,28,0.0 +15507,41,9.65,47,0.0 +15507,40,18.4,26,0.0 +15507,17,39,37,0.0 +15507,12,38,41,0.0 +15507,50,16.25,37,0.0 +15507,48,12.75,41,0.0 +15507,35,18,14,0.0 +15507,31,12.5,25,0.0 +15508,22,21,8,0.0 +15508,63,43.9,6,0.0 +15508,42,14,21,0.0 +15508,29,123.79,48,0.0 +15508,64,33.25,6,0.0 +15508,41,9.65,13,0.0 +15508,32,32,7,0.0 +15508,57,19.5,47,0.0 +15508,28,45.6,50,0.0 +15508,65,21.05,50,0.0 +15508,39,18,30,0.0 +15508,31,12.5,38,0.0 +15508,33,2.5,15,0.0 +15508,13,6,40,0.0 +15508,24,4.5,38,0.0 +15508,3,10,34,0.0 +15508,1,18,14,0.0 +15508,10,31,34,0.0 +15508,34,14,25,0.0 +15508,37,26,22,0.0 +15508,51,53,34,0.0 +15508,44,19.45,15,0.0 +15508,52,7,50,0.0 +15508,30,25.89,20,0.0 +15508,49,20,11,0.0 +15508,56,38,49,0.0 +15508,26,31.23,40,0.0 +15508,36,19,10,0.0 +15508,67,14,49,0.0 +15508,50,16.25,28,0.0 +15508,55,24,4,0.0 +15508,54,7.45,14,0.0 +15508,45,9.5,26,0.0 +15508,70,15,43,0.0 +15508,68,12.5,48,0.0 +15508,43,46,46,0.0 +15508,6,25,36,0.0 +15508,58,13.25,7,0.0 +15508,53,32.8,17,0.0 +15508,9,97,6,0.0 +15508,59,55,21,0.0 +15508,4,22,45,0.0 +15508,35,18,2,0.0 +15508,19,9.2,13,0.0 +15508,60,34,22,0.0 +15508,15,15.5,42,0.0 +15508,38,263.5,39,0.0 +15508,76,18,48,0.0 +15508,74,10,22,0.0 +15508,77,13,42,0.0 +15508,5,21.35,31,0.0 +15508,25,14,12,0.0 +15508,14,23.25,7,0.0 +15508,69,36,29,0.0 +15508,17,39,50,0.0 +15508,62,49.3,48,0.0 +15508,20,81,29,0.0 +15508,21,10,16,0.0 +15508,11,21,13,0.0 +15508,16,17.45,24,0.0 +15508,18,62.5,35,0.0 +15508,27,43.9,3,0.0 +15508,73,15,44,0.0 +15508,61,28.5,11,0.0 +15508,71,21.5,27,0.0 +15508,23,9,15,0.0 +15508,72,34.8,15,0.0 +15508,7,30,42,0.0 +15508,12,38,7,0.0 +15508,46,12,40,0.0 +15508,40,18.4,13,0.0 +15508,75,7.75,14,0.0 +15508,66,17,47,0.0 +15508,8,40,24,0.0 +15508,2,19,49,0.0 +15509,66,17,35,0.0 +15509,44,19.45,28,0.0 +15509,55,24,45,0.0 +15509,62,49.3,35,0.0 +15509,40,18.4,21,0.0 +15509,4,22,33,0.0 +15510,67,14,40,0.0 +15510,69,36,36,0.0 +15510,8,40,48,0.0 +15510,36,19,1,0.0 +15511,70,15,17,0.0 +15511,68,12.5,40,0.0 +15511,23,9,16,0.0 +15511,49,20,23,0.0 +15511,26,31.23,48,0.0 +15511,37,26,19,0.0 +15511,50,16.25,42,0.0 +15511,53,32.8,8,0.0 +15511,32,32,3,0.0 +15511,63,43.9,46,0.0 +15511,41,9.65,11,0.0 +15511,9,97,43,0.0 +15511,33,2.5,31,0.0 +15511,77,13,1,0.0 +15511,64,33.25,50,0.0 +15511,76,18,46,0.0 +15511,7,30,13,0.0 +15511,65,21.05,8,0.0 +15511,3,10,44,0.0 +15511,66,17,15,0.0 +15511,75,7.75,42,0.0 +15511,21,10,7,0.0 +15511,8,40,36,0.0 +15511,19,9.2,24,0.0 +15511,48,12.75,41,0.0 +15511,24,4.5,3,0.0 +15511,39,18,38,0.0 +15511,6,25,43,0.0 +15511,18,62.5,35,0.0 +15511,62,49.3,11,0.0 +15511,36,19,50,0.0 +15511,20,81,35,0.0 +15511,12,38,37,0.0 +15511,31,12.5,13,0.0 +15511,71,21.5,1,0.0 +15511,40,18.4,26,0.0 +15511,74,10,33,0.0 +15511,28,45.6,11,0.0 +15511,34,14,37,0.0 +15511,1,18,5,0.0 +15511,2,19,25,0.0 +15511,35,18,7,0.0 +15511,44,19.45,32,0.0 +15511,56,38,35,0.0 +15511,57,19.5,48,0.0 +15511,72,34.8,46,0.0 +15511,67,14,2,0.0 +15511,14,23.25,39,0.0 +15511,69,36,22,0.0 +15511,52,7,11,0.0 +15511,47,9.5,4,0.0 +15511,45,9.5,15,0.0 +15511,43,46,9,0.0 +15511,13,6,15,0.0 +15511,73,15,25,0.0 +15511,15,15.5,26,0.0 +15511,38,263.5,44,0.0 +15511,55,24,48,0.0 +15511,10,31,3,0.0 +15511,11,21,2,0.0 +15512,41,9.65,31,0.0 +15512,45,9.5,13,0.0 +15512,60,34,12,0.0 +15512,54,7.45,6,0.0 +15512,19,9.2,9,0.0 +15512,7,30,21,0.0 +15512,9,97,24,0.0 +15512,69,36,14,0.0 +15512,33,2.5,1,0.0 +15512,51,53,15,0.0 +15512,38,263.5,20,0.0 +15512,27,43.9,11,0.0 +15512,26,31.23,38,0.0 +15512,73,15,21,0.0 +15512,44,19.45,44,0.0 +15512,15,15.5,45,0.0 +15512,39,18,18,0.0 +15512,17,39,24,0.0 +15512,25,14,8,0.0 +15512,56,38,36,0.0 +15512,35,18,41,0.0 +15512,46,12,48,0.0 +15512,66,17,24,0.0 +15512,63,43.9,5,0.0 +15512,74,10,23,0.0 +15512,75,7.75,46,0.0 +15512,29,123.79,42,0.0 +15512,59,55,21,0.0 +15512,22,21,22,0.0 +15512,58,13.25,15,0.0 +15512,68,12.5,37,0.0 +15512,16,17.45,12,0.0 +15512,10,31,43,0.0 +15512,47,9.5,8,0.0 +15512,6,25,17,0.0 +15512,62,49.3,1,0.0 +15512,42,14,11,0.0 +15512,31,12.5,37,0.0 +15512,76,18,21,0.0 +15512,34,14,11,0.0 +15512,23,9,48,0.0 +15512,21,10,19,0.0 +15512,30,25.89,44,0.0 +15512,2,19,45,0.0 +15512,72,34.8,27,0.0 +15512,43,46,20,0.0 +15512,11,21,32,0.0 +15512,37,26,16,0.0 +15512,48,12.75,38,0.0 +15512,52,7,46,0.0 +15512,67,14,9,0.0 +15512,14,23.25,33,0.0 +15512,71,21.5,17,0.0 +15512,70,15,37,0.0 +15512,32,32,2,0.0 +15512,28,45.6,24,0.0 +15512,61,28.5,38,0.0 +15512,64,33.25,42,0.0 +15512,40,18.4,2,0.0 +15512,55,24,29,0.0 +15512,18,62.5,24,0.0 +15512,8,40,45,0.0 +15512,50,16.25,41,0.0 +15512,77,13,10,0.0 +15512,20,81,22,0.0 +15512,36,19,6,0.0 +15512,4,22,19,0.0 +15512,3,10,32,0.0 +15512,49,20,47,0.0 +15512,57,19.5,38,0.0 +15512,12,38,27,0.0 +15512,5,21.35,16,0.0 +15512,53,32.8,22,0.0 +15512,65,21.05,4,0.0 +15512,1,18,19,0.0 +15512,24,4.5,39,0.0 +15512,13,6,48,0.0 +15513,15,15.5,18,0.0 +15513,52,7,20,0.0 +15513,19,9.2,1,0.0 +15513,62,49.3,1,0.0 +15513,34,14,25,0.0 +15513,47,9.5,41,0.0 +15513,4,22,15,0.0 +15513,27,43.9,19,0.0 +15513,58,13.25,15,0.0 +15513,69,36,11,0.0 +15513,49,20,6,0.0 +15513,46,12,27,0.0 +15513,23,9,47,0.0 +15513,30,25.89,29,0.0 +15513,61,28.5,20,0.0 +15513,14,23.25,38,0.0 +15513,8,40,20,0.0 +15513,44,19.45,4,0.0 +15513,74,10,36,0.0 +15513,53,32.8,42,0.0 +15513,13,6,46,0.0 +15513,22,21,39,0.0 +15513,20,81,35,0.0 +15513,42,14,19,0.0 +15513,45,9.5,43,0.0 +15513,35,18,35,0.0 +15513,73,15,26,0.0 +15513,77,13,37,0.0 +15513,72,34.8,39,0.0 +15513,32,32,36,0.0 +15513,54,7.45,39,0.0 +15513,21,10,25,0.0 +15513,60,34,28,0.0 +15513,68,12.5,39,0.0 +15513,9,97,3,0.0 +15513,63,43.9,16,0.0 +15513,56,38,23,0.0 +15513,37,26,4,0.0 +15513,50,16.25,5,0.0 +15513,51,53,37,0.0 +15513,2,19,28,0.0 +15513,5,21.35,41,0.0 +15513,10,31,14,0.0 +15513,6,25,11,0.0 +15513,11,21,35,0.0 +15513,17,39,33,0.0 +15513,71,21.5,36,0.0 +15513,75,7.75,43,0.0 +15514,38,263.5,47,0.0 +15514,63,43.9,4,0.0 +15514,77,13,35,0.0 +15514,1,18,25,0.0 +15514,73,15,45,0.0 +15514,18,62.5,27,0.0 +15514,76,18,49,0.0 +15514,2,19,32,0.0 +15514,68,12.5,45,0.0 +15514,35,18,46,0.0 +15514,59,55,41,0.0 +15514,28,45.6,10,0.0 +15514,31,12.5,2,0.0 +15514,37,26,45,0.0 +15514,64,33.25,22,0.0 +15514,12,38,11,0.0 +15514,6,25,22,0.0 +15514,65,21.05,1,0.0 +15514,48,12.75,38,0.0 +15514,22,21,41,0.0 +15514,58,13.25,17,0.0 +15514,52,7,4,0.0 +15514,72,34.8,10,0.0 +15514,45,9.5,27,0.0 +15515,65,21.05,8,0.0 +15515,54,7.45,26,0.0 +15515,75,7.75,1,0.0 +15515,6,25,32,0.0 +15515,42,14,26,0.0 +15515,10,31,1,0.0 +15515,72,34.8,2,0.0 +15515,37,26,27,0.0 +15515,22,21,19,0.0 +15515,60,34,8,0.0 +15515,48,12.75,12,0.0 +15515,44,19.45,43,0.0 +15515,49,20,44,0.0 +15515,63,43.9,4,0.0 +15515,26,31.23,7,0.0 +15515,35,18,45,0.0 +15515,47,9.5,34,0.0 +15515,40,18.4,28,0.0 +15515,16,17.45,33,0.0 +15515,56,38,28,0.0 +15515,17,39,15,0.0 +15515,51,53,12,0.0 +15515,23,9,42,0.0 +15515,36,19,40,0.0 +15515,29,123.79,3,0.0 +15515,12,38,8,0.0 +15515,21,10,29,0.0 +15515,73,15,35,0.0 +15515,57,19.5,1,0.0 +15515,38,263.5,8,0.0 +15515,68,12.5,1,0.0 +15515,18,62.5,7,0.0 +15515,50,16.25,4,0.0 +15515,15,15.5,13,0.0 +15515,19,9.2,38,0.0 +15515,45,9.5,21,0.0 +15515,66,17,39,0.0 +15515,53,32.8,45,0.0 +15515,43,46,46,0.0 +15515,14,23.25,39,0.0 +15515,30,25.89,27,0.0 +15515,62,49.3,22,0.0 +15515,76,18,38,0.0 +15515,77,13,2,0.0 +15515,33,2.5,26,0.0 +15515,28,45.6,6,0.0 +15515,52,7,16,0.0 +15515,31,12.5,29,0.0 +15515,4,22,22,0.0 +15516,58,13.25,23,0.0 +15516,75,7.75,32,0.0 +15516,26,31.23,26,0.0 +15516,49,20,34,0.0 +15516,77,13,21,0.0 +15516,66,17,16,0.0 +15516,3,10,10,0.0 +15516,47,9.5,19,0.0 +15516,55,24,46,0.0 +15516,27,43.9,32,0.0 +15516,59,55,50,0.0 +15516,50,16.25,27,0.0 +15516,39,18,1,0.0 +15516,22,21,9,0.0 +15516,76,18,8,0.0 +15516,45,9.5,23,0.0 +15516,23,9,42,0.0 +15516,24,4.5,49,0.0 +15516,21,10,3,0.0 +15516,74,10,11,0.0 +15516,42,14,33,0.0 +15516,62,49.3,50,0.0 +15516,44,19.45,13,0.0 +15516,38,263.5,19,0.0 +15516,33,2.5,44,0.0 +15516,11,21,2,0.0 +15516,1,18,35,0.0 +15516,34,14,44,0.0 +15516,68,12.5,22,0.0 +15516,65,21.05,11,0.0 +15516,20,81,27,0.0 +15516,72,34.8,36,0.0 +15517,32,32,19,0.0 +15517,77,13,31,0.0 +15517,23,9,25,0.0 +15517,42,14,31,0.0 +15517,45,9.5,31,0.0 +15517,14,23.25,25,0.0 +15517,12,38,30,0.0 +15517,73,15,42,0.0 +15517,17,39,16,0.0 +15517,27,43.9,40,0.0 +15517,20,81,36,0.0 +15517,16,17.45,19,0.0 +15517,2,19,2,0.0 +15517,10,31,26,0.0 +15517,13,6,35,0.0 +15517,41,9.65,22,0.0 +15517,48,12.75,4,0.0 +15517,8,40,23,0.0 +15517,7,30,9,0.0 +15517,47,9.5,48,0.0 +15517,29,123.79,11,0.0 +15517,59,55,6,0.0 +15517,36,19,19,0.0 +15517,46,12,44,0.0 +15517,67,14,13,0.0 +15517,66,17,23,0.0 +15517,49,20,33,0.0 +15517,26,31.23,45,0.0 +15517,68,12.5,19,0.0 +15517,62,49.3,7,0.0 +15517,63,43.9,38,0.0 +15517,50,16.25,23,0.0 +15517,52,7,17,0.0 +15517,21,10,49,0.0 +15517,33,2.5,16,0.0 +15517,64,33.25,49,0.0 +15517,61,28.5,45,0.0 +15517,51,53,41,0.0 +15517,54,7.45,8,0.0 +15517,38,263.5,11,0.0 +15517,37,26,40,0.0 +15517,44,19.45,7,0.0 +15517,60,34,22,0.0 +15517,5,21.35,44,0.0 +15517,9,97,48,0.0 +15517,22,21,9,0.0 +15517,65,21.05,35,0.0 +15517,31,12.5,44,0.0 +15517,53,32.8,37,0.0 +15517,58,13.25,20,0.0 +15517,40,18.4,20,0.0 +15517,57,19.5,29,0.0 +15518,74,10,38,0.0 +15518,12,38,10,0.0 +15518,43,46,47,0.0 +15518,25,14,49,0.0 +15518,5,21.35,48,0.0 +15518,8,40,38,0.0 +15518,42,14,29,0.0 +15518,38,263.5,8,0.0 +15518,41,9.65,41,0.0 +15518,16,17.45,18,0.0 +15518,31,12.5,35,0.0 +15518,54,7.45,25,0.0 +15518,55,24,19,0.0 +15518,7,30,14,0.0 +15518,33,2.5,16,0.0 +15518,30,25.89,50,0.0 +15518,45,9.5,5,0.0 +15518,60,34,10,0.0 +15518,56,38,1,0.0 +15518,61,28.5,28,0.0 +15518,26,31.23,16,0.0 +15518,66,17,47,0.0 +15518,49,20,42,0.0 +15518,10,31,31,0.0 +15518,46,12,32,0.0 +15518,51,53,36,0.0 +15518,14,23.25,20,0.0 +15518,75,7.75,38,0.0 +15518,69,36,2,0.0 +15518,63,43.9,48,0.0 +15518,20,81,12,0.0 +15518,1,18,11,0.0 +15518,47,9.5,33,0.0 +15518,48,12.75,14,0.0 +15518,28,45.6,41,0.0 +15518,17,39,14,0.0 +15518,53,32.8,40,0.0 +15518,36,19,38,0.0 +15518,76,18,43,0.0 +15518,52,7,24,0.0 +15518,4,22,30,0.0 +15518,37,26,10,0.0 +15518,73,15,26,0.0 +15518,70,15,41,0.0 +15518,57,19.5,24,0.0 +15518,23,9,20,0.0 +15518,64,33.25,37,0.0 +15518,72,34.8,30,0.0 +15518,77,13,17,0.0 +15518,40,18.4,29,0.0 +15518,59,55,28,0.0 +15518,18,62.5,47,0.0 +15518,71,21.5,20,0.0 +15518,44,19.45,32,0.0 +15518,34,14,37,0.0 +15518,21,10,46,0.0 +15518,22,21,24,0.0 +15518,67,14,29,0.0 +15518,15,15.5,6,0.0 +15518,62,49.3,9,0.0 +15518,58,13.25,7,0.0 +15518,2,19,16,0.0 +15518,35,18,43,0.0 +15518,9,97,45,0.0 +15518,11,21,29,0.0 +15518,50,16.25,50,0.0 +15518,3,10,44,0.0 +15518,68,12.5,19,0.0 +15518,27,43.9,29,0.0 +15518,29,123.79,13,0.0 +15518,6,25,27,0.0 +15518,24,4.5,32,0.0 +15518,19,9.2,8,0.0 +15518,65,21.05,30,0.0 +15519,37,26,20,0.0 +15519,26,31.23,46,0.0 +15519,74,10,14,0.0 +15519,21,10,28,0.0 +15519,2,19,11,0.0 +15519,30,25.89,11,0.0 +15519,51,53,43,0.0 +15519,1,18,30,0.0 +15519,67,14,17,0.0 +15519,61,28.5,34,0.0 +15519,54,7.45,8,0.0 +15519,14,23.25,20,0.0 +15519,45,9.5,39,0.0 +15519,29,123.79,16,0.0 +15519,28,45.6,24,0.0 +15519,50,16.25,20,0.0 +15519,31,12.5,45,0.0 +15519,24,4.5,50,0.0 +15519,5,21.35,48,0.0 +15519,73,15,22,0.0 +15519,20,81,42,0.0 +15519,53,32.8,12,0.0 +15519,48,12.75,23,0.0 +15519,38,263.5,37,0.0 +15519,47,9.5,5,0.0 +15519,44,19.45,5,0.0 +15519,59,55,20,0.0 +15519,10,31,6,0.0 +15519,43,46,21,0.0 +15519,46,12,22,0.0 +15519,15,15.5,43,0.0 +15519,76,18,32,0.0 +15519,42,14,22,0.0 +15519,63,43.9,30,0.0 +15519,23,9,22,0.0 +15519,60,34,49,0.0 +15519,12,38,37,0.0 +15519,13,6,15,0.0 +15519,41,9.65,47,0.0 +15519,65,21.05,50,0.0 +15519,6,25,34,0.0 +15519,58,13.25,13,0.0 +15519,3,10,24,0.0 +15519,71,21.5,11,0.0 +15519,33,2.5,1,0.0 +15519,39,18,3,0.0 +15519,34,14,9,0.0 +15519,32,32,41,0.0 +15519,7,30,26,0.0 +15519,56,38,17,0.0 +15519,57,19.5,23,0.0 +15519,9,97,47,0.0 +15519,70,15,4,0.0 +15519,40,18.4,30,0.0 +15519,75,7.75,49,0.0 +15519,64,33.25,44,0.0 +15519,18,62.5,15,0.0 +15519,66,17,25,0.0 +15519,36,19,4,0.0 +15519,72,34.8,39,0.0 +15519,55,24,9,0.0 +15520,9,97,12,0.0 +15520,13,6,7,0.0 +15520,76,18,12,0.0 +15520,51,53,37,0.0 +15520,56,38,39,0.0 +15520,54,7.45,31,0.0 +15520,66,17,41,0.0 +15520,10,31,24,0.0 +15520,4,22,28,0.0 +15520,5,21.35,44,0.0 +15520,6,25,17,0.0 +15520,39,18,20,0.0 +15520,71,21.5,2,0.0 +15520,38,263.5,1,0.0 +15520,27,43.9,46,0.0 +15520,62,49.3,44,0.0 +15520,67,14,42,0.0 +15520,48,12.75,49,0.0 +15520,25,14,18,0.0 +15520,30,25.89,6,0.0 +15520,42,14,29,0.0 +15520,58,13.25,7,0.0 +15520,29,123.79,13,0.0 +15520,75,7.75,41,0.0 +15520,8,40,43,0.0 +15520,1,18,10,0.0 +15520,11,21,18,0.0 +15520,3,10,28,0.0 +15520,33,2.5,29,0.0 +15520,77,13,3,0.0 +15520,12,38,6,0.0 +15520,69,36,19,0.0 +15520,40,18.4,17,0.0 +15520,52,7,28,0.0 +15520,26,31.23,35,0.0 +15520,44,19.45,15,0.0 +15520,49,20,21,0.0 +15520,50,16.25,26,0.0 +15520,57,19.5,33,0.0 +15520,7,30,8,0.0 +15520,45,9.5,24,0.0 +15520,63,43.9,22,0.0 +15520,41,9.65,33,0.0 +15520,35,18,2,0.0 +15520,36,19,13,0.0 +15520,64,33.25,35,0.0 +15520,68,12.5,4,0.0 +15520,74,10,39,0.0 +15520,37,26,21,0.0 +15520,22,21,30,0.0 +15520,34,14,6,0.0 +15520,18,62.5,22,0.0 +15520,65,21.05,22,0.0 +15520,15,15.5,33,0.0 +15520,73,15,14,0.0 +15520,61,28.5,41,0.0 +15520,21,10,4,0.0 +15520,31,12.5,1,0.0 +15520,19,9.2,8,0.0 +15520,24,4.5,50,0.0 +15520,59,55,44,0.0 +15520,32,32,17,0.0 +15520,16,17.45,26,0.0 +15520,28,45.6,11,0.0 +15520,46,12,48,0.0 +15520,72,34.8,4,0.0 +15520,60,34,15,0.0 +15520,55,24,26,0.0 +15520,43,46,14,0.0 +15520,47,9.5,35,0.0 +15520,14,23.25,47,0.0 +15520,17,39,28,0.0 +15520,70,15,3,0.0 +15520,53,32.8,35,0.0 +15520,23,9,43,0.0 +15520,2,19,32,0.0 +15520,20,81,34,0.0 +15521,61,28.5,48,0.0 +15521,16,17.45,9,0.0 +15521,9,97,35,0.0 +15521,68,12.5,43,0.0 +15521,76,18,37,0.0 +15521,35,18,46,0.0 +15521,4,22,50,0.0 +15521,66,17,22,0.0 +15521,72,34.8,50,0.0 +15521,54,7.45,13,0.0 +15522,73,15,18,0.0 +15522,18,62.5,6,0.0 +15522,56,38,41,0.0 +15522,62,49.3,5,0.0 +15522,30,25.89,32,0.0 +15522,55,24,28,0.0 +15522,46,12,32,0.0 +15522,9,97,50,0.0 +15522,53,32.8,33,0.0 +15522,33,2.5,3,0.0 +15522,63,43.9,37,0.0 +15522,60,34,9,0.0 +15522,39,18,31,0.0 +15522,24,4.5,2,0.0 +15522,71,21.5,36,0.0 +15522,57,19.5,44,0.0 +15522,58,13.25,41,0.0 +15522,43,46,23,0.0 +15522,75,7.75,50,0.0 +15522,50,16.25,25,0.0 +15522,70,15,39,0.0 +15522,72,34.8,41,0.0 +15522,44,19.45,26,0.0 +15522,45,9.5,6,0.0 +15522,65,21.05,40,0.0 +15522,40,18.4,48,0.0 +15522,10,31,33,0.0 +15522,38,263.5,32,0.0 +15522,28,45.6,12,0.0 +15522,20,81,30,0.0 +15522,59,55,50,0.0 +15522,29,123.79,3,0.0 +15522,37,26,18,0.0 +15522,48,12.75,35,0.0 +15522,21,10,14,0.0 +15522,47,9.5,36,0.0 +15522,19,9.2,15,0.0 +15522,64,33.25,26,0.0 +15522,4,22,49,0.0 +15522,52,7,3,0.0 +15522,69,36,40,0.0 +15522,77,13,27,0.0 +15522,5,21.35,12,0.0 +15522,13,6,44,0.0 +15522,2,19,15,0.0 +15522,11,21,26,0.0 +15522,42,14,44,0.0 +15522,17,39,16,0.0 +15522,76,18,38,0.0 +15522,26,31.23,35,0.0 +15522,15,15.5,3,0.0 +15522,7,30,21,0.0 +15522,36,19,6,0.0 +15522,68,12.5,22,0.0 +15522,14,23.25,29,0.0 +15522,31,12.5,28,0.0 +15522,22,21,40,0.0 +15522,67,14,47,0.0 +15522,41,9.65,35,0.0 +15522,61,28.5,8,0.0 +15522,66,17,40,0.0 +15522,16,17.45,14,0.0 +15522,23,9,31,0.0 +15522,27,43.9,6,0.0 +15522,25,14,43,0.0 +15522,8,40,6,0.0 +15522,51,53,45,0.0 +15522,35,18,3,0.0 +15522,49,20,23,0.0 +15522,12,38,8,0.0 +15522,54,7.45,30,0.0 +15522,32,32,23,0.0 +15522,6,25,28,0.0 +15523,23,9,41,0.0 +15523,72,34.8,18,0.0 +15523,32,32,24,0.0 +15523,69,36,43,0.0 +15523,34,14,16,0.0 +15523,51,53,49,0.0 +15523,36,19,27,0.0 +15523,64,33.25,13,0.0 +15523,57,19.5,34,0.0 +15523,18,62.5,17,0.0 +15523,14,23.25,38,0.0 +15523,47,9.5,16,0.0 +15523,44,19.45,19,0.0 +15523,22,21,6,0.0 +15523,13,6,25,0.0 +15523,30,25.89,15,0.0 +15523,66,17,22,0.0 +15523,52,7,2,0.0 +15523,3,10,10,0.0 +15523,74,10,4,0.0 +15523,76,18,4,0.0 +15523,2,19,20,0.0 +15523,12,38,11,0.0 +15523,35,18,34,0.0 +15523,19,9.2,30,0.0 +15523,4,22,47,0.0 +15523,59,55,18,0.0 +15523,33,2.5,44,0.0 +15523,17,39,22,0.0 +15523,42,14,38,0.0 +15523,48,12.75,20,0.0 +15523,56,38,5,0.0 +15523,37,26,23,0.0 +15523,75,7.75,36,0.0 +15523,53,32.8,26,0.0 +15523,71,21.5,7,0.0 +15523,16,17.45,45,0.0 +15523,40,18.4,8,0.0 +15523,1,18,48,0.0 +15523,68,12.5,15,0.0 +15523,21,10,4,0.0 +15523,38,263.5,24,0.0 +15523,28,45.6,34,0.0 +15523,29,123.79,36,0.0 +15523,43,46,7,0.0 +15523,9,97,34,0.0 +15523,15,15.5,37,0.0 +15523,67,14,38,0.0 +15524,16,17.45,44,0.0 +15524,35,18,29,0.0 +15524,29,123.79,18,0.0 +15524,15,15.5,34,0.0 +15524,46,12,4,0.0 +15524,65,21.05,28,0.0 +15524,6,25,48,0.0 +15524,5,21.35,33,0.0 +15524,52,7,42,0.0 +15524,48,12.75,43,0.0 +15524,44,19.45,29,0.0 +15524,10,31,37,0.0 +15524,17,39,32,0.0 +15524,2,19,20,0.0 +15524,30,25.89,33,0.0 +15524,42,14,47,0.0 +15524,7,30,35,0.0 +15524,54,7.45,16,0.0 +15524,53,32.8,21,0.0 +15524,51,53,11,0.0 +15524,32,32,21,0.0 +15524,4,22,29,0.0 +15524,58,13.25,4,0.0 +15524,77,13,46,0.0 +15524,8,40,30,0.0 +15524,12,38,8,0.0 +15524,69,36,48,0.0 +15524,9,97,22,0.0 +15524,56,38,25,0.0 +15524,76,18,42,0.0 +15524,64,33.25,22,0.0 +15524,74,10,36,0.0 +15524,66,17,34,0.0 +15524,11,21,29,0.0 +15524,3,10,7,0.0 +15524,61,28.5,14,0.0 +15524,59,55,36,0.0 +15524,1,18,26,0.0 +15524,67,14,5,0.0 +15524,14,23.25,31,0.0 +15524,73,15,18,0.0 +15524,72,34.8,5,0.0 +15524,50,16.25,46,0.0 +15524,25,14,45,0.0 +15524,70,15,29,0.0 +15524,34,14,49,0.0 +15524,19,9.2,1,0.0 +15524,55,24,46,0.0 +15524,28,45.6,39,0.0 +15524,21,10,18,0.0 +15524,33,2.5,28,0.0 +15524,60,34,44,0.0 +15524,62,49.3,32,0.0 +15524,18,62.5,25,0.0 +15524,37,26,31,0.0 +15524,31,12.5,31,0.0 +15524,23,9,46,0.0 +15524,26,31.23,27,0.0 +15524,71,21.5,26,0.0 +15524,57,19.5,6,0.0 +15524,43,46,39,0.0 +15524,27,43.9,47,0.0 +15524,20,81,1,0.0 +15524,24,4.5,49,0.0 +15525,43,46,24,0.0 +15525,8,40,37,0.0 +15525,25,14,7,0.0 +15525,30,25.89,17,0.0 +15525,38,263.5,46,0.0 +15525,42,14,41,0.0 +15525,62,49.3,5,0.0 +15525,54,7.45,16,0.0 +15525,35,18,31,0.0 +15525,51,53,9,0.0 +15525,44,19.45,44,0.0 +15525,28,45.6,25,0.0 +15525,6,25,16,0.0 +15525,11,21,8,0.0 +15525,20,81,45,0.0 +15525,34,14,39,0.0 +15525,61,28.5,17,0.0 +15525,40,18.4,30,0.0 +15525,69,36,4,0.0 +15525,32,32,38,0.0 +15525,36,19,44,0.0 +15525,73,15,4,0.0 +15526,75,7.75,21,0.0 +15526,27,43.9,27,0.0 +15526,37,26,47,0.0 +15526,71,21.5,30,0.0 +15526,25,14,33,0.0 +15526,5,21.35,14,0.0 +15526,51,53,18,0.0 +15526,7,30,18,0.0 +15526,46,12,43,0.0 +15526,74,10,4,0.0 +15526,19,9.2,48,0.0 +15526,45,9.5,17,0.0 +15526,48,12.75,26,0.0 +15526,69,36,19,0.0 +15526,8,40,7,0.0 +15526,2,19,35,0.0 +15526,63,43.9,47,0.0 +15526,77,13,24,0.0 +15526,42,14,5,0.0 +15526,36,19,40,0.0 +15526,66,17,40,0.0 +15526,31,12.5,29,0.0 +15526,39,18,50,0.0 +15526,73,15,8,0.0 +15526,68,12.5,27,0.0 +15526,56,38,26,0.0 +15526,50,16.25,39,0.0 +15526,49,20,18,0.0 +15526,76,18,25,0.0 +15526,33,2.5,40,0.0 +15526,52,7,21,0.0 +15526,16,17.45,25,0.0 +15526,23,9,41,0.0 +15526,58,13.25,16,0.0 +15526,70,15,27,0.0 +15526,59,55,45,0.0 +15526,34,14,30,0.0 +15526,13,6,2,0.0 +15526,14,23.25,3,0.0 +15526,32,32,30,0.0 +15526,47,9.5,4,0.0 +15526,21,10,10,0.0 +15526,9,97,46,0.0 +15526,54,7.45,47,0.0 +15526,41,9.65,43,0.0 +15526,57,19.5,21,0.0 +15526,1,18,42,0.0 +15526,53,32.8,38,0.0 +15526,43,46,1,0.0 +15526,4,22,16,0.0 +15526,64,33.25,45,0.0 +15526,24,4.5,2,0.0 +15526,20,81,34,0.0 +15526,30,25.89,8,0.0 +15526,65,21.05,14,0.0 +15526,15,15.5,21,0.0 +15526,35,18,32,0.0 +15526,40,18.4,28,0.0 +15526,3,10,6,0.0 +15526,11,21,16,0.0 +15526,38,263.5,5,0.0 +15526,12,38,9,0.0 +15526,60,34,30,0.0 +15526,55,24,41,0.0 +15526,28,45.6,23,0.0 +15526,67,14,3,0.0 +15526,44,19.45,46,0.0 +15526,18,62.5,36,0.0 +15526,10,31,29,0.0 +15526,17,39,18,0.0 +15526,22,21,29,0.0 +15526,62,49.3,19,0.0 +15526,61,28.5,40,0.0 +15526,26,31.23,8,0.0 +15526,6,25,11,0.0 +15526,29,123.79,39,0.0 +15526,72,34.8,14,0.0 +15527,24,4.5,25,0.0 +15527,45,9.5,4,0.0 +15527,48,12.75,48,0.0 +15527,52,7,40,0.0 +15527,43,46,35,0.0 +15527,4,22,37,0.0 +15527,28,45.6,5,0.0 +15527,35,18,30,0.0 +15527,12,38,14,0.0 +15527,47,9.5,35,0.0 +15527,60,34,28,0.0 +15527,17,39,43,0.0 +15527,61,28.5,18,0.0 +15527,55,24,32,0.0 +15527,74,10,2,0.0 +15527,21,10,9,0.0 +15527,1,18,43,0.0 +15527,64,33.25,28,0.0 +15527,18,62.5,30,0.0 +15527,77,13,5,0.0 +15527,3,10,27,0.0 +15527,72,34.8,24,0.0 +15527,16,17.45,26,0.0 +15527,8,40,2,0.0 +15527,42,14,26,0.0 +15527,75,7.75,1,0.0 +15527,34,14,38,0.0 +15527,71,21.5,20,0.0 +15527,27,43.9,44,0.0 +15527,40,18.4,39,0.0 +15527,32,32,9,0.0 +15527,14,23.25,39,0.0 +15528,14,23.25,45,0.0 +15528,60,34,10,0.0 +15528,48,12.75,23,0.0 +15528,6,25,24,0.0 +15528,3,10,45,0.0 +15528,75,7.75,46,0.0 +15528,36,19,47,0.0 +15528,76,18,46,0.0 +15528,34,14,45,0.0 +15529,1,18,14,0.0 +15529,22,21,23,0.0 +15529,55,24,22,0.0 +15529,19,9.2,9,0.0 +15529,59,55,17,0.0 +15529,68,12.5,16,0.0 +15529,30,25.89,11,0.0 +15529,61,28.5,50,0.0 +15529,13,6,20,0.0 +15529,66,17,24,0.0 +15530,56,38,40,0.0 +15530,47,9.5,22,0.0 +15530,60,34,38,0.0 +15530,72,34.8,24,0.0 +15530,11,21,46,0.0 +15530,23,9,43,0.0 +15530,75,7.75,13,0.0 +15530,37,26,33,0.0 +15530,49,20,2,0.0 +15530,39,18,7,0.0 +15530,53,32.8,13,0.0 +15530,63,43.9,28,0.0 +15530,48,12.75,46,0.0 +15530,59,55,11,0.0 +15530,50,16.25,44,0.0 +15530,10,31,48,0.0 +15531,56,38,25,0.0 +15531,32,32,3,0.0 +15531,2,19,17,0.0 +15531,7,30,44,0.0 +15531,49,20,15,0.0 +15531,47,9.5,23,0.0 +15531,73,15,36,0.0 +15531,63,43.9,48,0.0 +15531,53,32.8,23,0.0 +15531,1,18,14,0.0 +15531,71,21.5,21,0.0 +15531,50,16.25,43,0.0 +15531,11,21,15,0.0 +15531,31,12.5,38,0.0 +15531,54,7.45,27,0.0 +15531,61,28.5,10,0.0 +15531,8,40,19,0.0 +15531,59,55,48,0.0 +15531,10,31,41,0.0 +15531,38,263.5,24,0.0 +15531,55,24,17,0.0 +15531,48,12.75,11,0.0 +15531,45,9.5,5,0.0 +15531,20,81,12,0.0 +15531,40,18.4,27,0.0 +15531,14,23.25,13,0.0 +15531,42,14,6,0.0 +15531,34,14,33,0.0 +15531,27,43.9,32,0.0 +15531,23,9,30,0.0 +15531,15,15.5,12,0.0 +15531,44,19.45,25,0.0 +15531,52,7,2,0.0 +15531,58,13.25,10,0.0 +15531,41,9.65,3,0.0 +15531,64,33.25,38,0.0 +15531,76,18,21,0.0 +15531,21,10,17,0.0 +15531,60,34,50,0.0 +15531,3,10,18,0.0 +15531,6,25,44,0.0 +15531,22,21,9,0.0 +15531,37,26,23,0.0 +15531,68,12.5,48,0.0 +15531,17,39,5,0.0 +15531,33,2.5,47,0.0 +15531,57,19.5,36,0.0 +15531,19,9.2,49,0.0 +15531,26,31.23,50,0.0 +15531,62,49.3,38,0.0 +15531,66,17,10,0.0 +15531,9,97,34,0.0 +15531,69,36,44,0.0 +15531,24,4.5,43,0.0 +15531,25,14,8,0.0 +15531,70,15,7,0.0 +15531,39,18,41,0.0 +15531,5,21.35,35,0.0 +15531,16,17.45,43,0.0 +15531,67,14,8,0.0 +15531,43,46,34,0.0 +15531,18,62.5,7,0.0 +15531,51,53,17,0.0 +15531,30,25.89,31,0.0 +15531,12,38,20,0.0 +15531,65,21.05,33,0.0 +15531,13,6,8,0.0 +15531,72,34.8,39,0.0 +15532,42,14,39,0.0 +15532,58,13.25,20,0.0 +15532,12,38,21,0.0 +15532,51,53,22,0.0 +15532,40,18.4,34,0.0 +15532,13,6,13,0.0 +15532,46,12,48,0.0 +15532,16,17.45,43,0.0 +15532,10,31,37,0.0 +15532,35,18,30,0.0 +15532,62,49.3,21,0.0 +15532,67,14,30,0.0 +15532,50,16.25,11,0.0 +15532,55,24,22,0.0 +15532,71,21.5,3,0.0 +15532,56,38,31,0.0 +15532,1,18,18,0.0 +15532,6,25,48,0.0 +15533,57,19.5,35,0.0 +15533,59,55,4,0.0 +15533,9,97,50,0.0 +15533,54,7.45,36,0.0 +15533,16,17.45,20,0.0 +15533,52,7,28,0.0 +15533,17,39,43,0.0 +15533,64,33.25,39,0.0 +15533,51,53,19,0.0 +15533,5,21.35,19,0.0 +15533,43,46,3,0.0 +15533,30,25.89,39,0.0 +15533,40,18.4,26,0.0 +15533,60,34,26,0.0 +15533,66,17,9,0.0 +15533,41,9.65,42,0.0 +15533,19,9.2,8,0.0 +15533,27,43.9,47,0.0 +15533,49,20,10,0.0 +15533,42,14,34,0.0 +15533,35,18,40,0.0 +15533,1,18,9,0.0 +15533,11,21,32,0.0 +15533,24,4.5,33,0.0 +15533,13,6,46,0.0 +15533,28,45.6,8,0.0 +15533,63,43.9,48,0.0 +15533,62,49.3,45,0.0 +15533,73,15,5,0.0 +15533,38,263.5,17,0.0 +15533,3,10,19,0.0 +15533,29,123.79,50,0.0 +15533,61,28.5,5,0.0 +15533,65,21.05,30,0.0 +15533,74,10,39,0.0 +15533,47,9.5,44,0.0 +15533,68,12.5,39,0.0 +15533,72,34.8,24,0.0 +15533,22,21,22,0.0 +15533,45,9.5,28,0.0 +15533,76,18,37,0.0 +15533,15,15.5,37,0.0 +15533,67,14,43,0.0 +15533,39,18,39,0.0 +15533,26,31.23,30,0.0 +15533,33,2.5,10,0.0 +15533,7,30,39,0.0 +15533,10,31,11,0.0 +15533,31,12.5,7,0.0 +15533,71,21.5,47,0.0 +15533,75,7.75,4,0.0 +15533,12,38,36,0.0 +15533,18,62.5,43,0.0 +15533,2,19,44,0.0 +15533,36,19,45,0.0 +15533,48,12.75,1,0.0 +15534,7,30,13,0.0 +15534,12,38,20,0.0 +15534,77,13,20,0.0 +15534,11,21,28,0.0 +15534,9,97,36,0.0 +15534,62,49.3,36,0.0 +15534,14,23.25,1,0.0 +15534,76,18,46,0.0 +15534,50,16.25,36,0.0 +15534,63,43.9,2,0.0 +15534,38,263.5,33,0.0 +15534,34,14,50,0.0 +15534,4,22,19,0.0 +15534,46,12,38,0.0 +15534,23,9,34,0.0 +15534,67,14,36,0.0 +15534,74,10,49,0.0 +15534,35,18,1,0.0 +15535,75,7.75,22,0.0 +15535,66,17,27,0.0 +15535,28,45.6,33,0.0 +15535,1,18,31,0.0 +15535,64,33.25,45,0.0 +15535,7,30,47,0.0 +15535,76,18,44,0.0 +15535,12,38,43,0.0 +15535,30,25.89,42,0.0 +15535,47,9.5,48,0.0 +15535,44,19.45,34,0.0 +15535,58,13.25,23,0.0 +15535,21,10,34,0.0 +15535,46,12,33,0.0 +15535,52,7,11,0.0 +15535,63,43.9,50,0.0 +15535,5,21.35,26,0.0 +15535,15,15.5,46,0.0 +15535,32,32,19,0.0 +15535,25,14,10,0.0 +15535,73,15,47,0.0 +15535,61,28.5,40,0.0 +15535,11,21,13,0.0 +15535,23,9,12,0.0 +15535,40,18.4,11,0.0 +15535,49,20,17,0.0 +15535,39,18,42,0.0 +15535,74,10,1,0.0 +15535,71,21.5,43,0.0 +15535,54,7.45,30,0.0 +15535,29,123.79,9,0.0 +15535,22,21,38,0.0 +15535,31,12.5,43,0.0 +15535,27,43.9,31,0.0 +15535,38,263.5,6,0.0 +15535,70,15,36,0.0 +15535,43,46,35,0.0 +15535,37,26,7,0.0 +15535,56,38,2,0.0 +15535,60,34,4,0.0 +15535,18,62.5,28,0.0 +15535,34,14,27,0.0 +15535,59,55,11,0.0 +15535,62,49.3,50,0.0 +15535,50,16.25,35,0.0 +15535,55,24,40,0.0 +15535,10,31,21,0.0 +15535,33,2.5,44,0.0 +15535,17,39,17,0.0 +15535,24,4.5,13,0.0 +15535,14,23.25,17,0.0 +15536,25,14,32,0.0 +15536,33,2.5,35,0.0 +15536,10,31,10,0.0 +15536,74,10,27,0.0 +15536,9,97,48,0.0 +15536,68,12.5,1,0.0 +15536,42,14,16,0.0 +15536,54,7.45,23,0.0 +15536,26,31.23,40,0.0 +15536,52,7,50,0.0 +15536,63,43.9,44,0.0 +15536,51,53,47,0.0 +15536,13,6,49,0.0 +15536,48,12.75,22,0.0 +15536,71,21.5,50,0.0 +15536,70,15,28,0.0 +15536,49,20,27,0.0 +15536,76,18,30,0.0 +15537,52,7,11,0.0 +15537,68,12.5,29,0.0 +15537,56,38,19,0.0 +15537,17,39,37,0.0 +15537,63,43.9,21,0.0 +15537,58,13.25,20,0.0 +15537,65,21.05,32,0.0 +15537,47,9.5,41,0.0 +15537,40,18.4,44,0.0 +15537,18,62.5,6,0.0 +15537,2,19,41,0.0 +15537,60,34,47,0.0 +15537,32,32,18,0.0 +15537,64,33.25,19,0.0 +15537,41,9.65,35,0.0 +15537,31,12.5,20,0.0 +15537,72,34.8,43,0.0 +15537,38,263.5,42,0.0 +15537,22,21,50,0.0 +15537,44,19.45,28,0.0 +15537,1,18,43,0.0 +15537,48,12.75,24,0.0 +15537,16,17.45,36,0.0 +15537,61,28.5,25,0.0 +15538,25,14,46,0.0 +15538,29,123.79,8,0.0 +15538,36,19,38,0.0 +15538,72,34.8,50,0.0 +15538,56,38,32,0.0 +15538,62,49.3,6,0.0 +15538,50,16.25,14,0.0 +15538,40,18.4,49,0.0 +15538,17,39,12,0.0 +15538,68,12.5,48,0.0 +15538,45,9.5,40,0.0 +15538,60,34,16,0.0 +15538,21,10,38,0.0 +15538,43,46,28,0.0 +15538,3,10,37,0.0 +15538,70,15,16,0.0 +15538,30,25.89,41,0.0 +15538,66,17,44,0.0 +15538,74,10,15,0.0 +15538,73,15,12,0.0 +15538,24,4.5,32,0.0 +15538,51,53,47,0.0 +15538,6,25,37,0.0 +15538,39,18,44,0.0 +15538,37,26,36,0.0 +15538,23,9,41,0.0 +15538,15,15.5,46,0.0 +15538,2,19,33,0.0 +15538,48,12.75,11,0.0 +15538,52,7,7,0.0 +15538,12,38,35,0.0 +15538,4,22,12,0.0 +15538,71,21.5,35,0.0 +15538,65,21.05,10,0.0 +15538,77,13,12,0.0 +15538,8,40,29,0.0 +15538,61,28.5,6,0.0 +15538,57,19.5,16,0.0 +15538,59,55,23,0.0 +15538,54,7.45,3,0.0 +15538,10,31,5,0.0 +15538,1,18,27,0.0 +15538,33,2.5,48,0.0 +15538,7,30,16,0.0 +15538,11,21,47,0.0 +15538,9,97,49,0.0 +15538,27,43.9,14,0.0 +15539,13,6,7,0.0 +15539,27,43.9,30,0.0 +15539,76,18,1,0.0 +15539,50,16.25,43,0.0 +15539,48,12.75,13,0.0 +15539,38,263.5,42,0.0 +15539,24,4.5,16,0.0 +15539,22,21,36,0.0 +15539,31,12.5,47,0.0 +15539,61,28.5,25,0.0 +15539,34,14,18,0.0 +15539,5,21.35,33,0.0 +15539,6,25,15,0.0 +15539,29,123.79,29,0.0 +15539,70,15,46,0.0 +15539,4,22,28,0.0 +15539,19,9.2,14,0.0 +15539,26,31.23,46,0.0 +15539,17,39,39,0.0 +15539,12,38,35,0.0 +15539,74,10,22,0.0 +15539,71,21.5,8,0.0 +15539,16,17.45,18,0.0 +15539,44,19.45,35,0.0 +15539,42,14,46,0.0 +15539,49,20,42,0.0 +15539,8,40,27,0.0 +15539,35,18,5,0.0 +15539,21,10,7,0.0 +15539,58,13.25,11,0.0 +15539,64,33.25,26,0.0 +15539,75,7.75,35,0.0 +15539,52,7,32,0.0 +15539,69,36,11,0.0 +15539,25,14,24,0.0 +15539,39,18,13,0.0 +15539,3,10,13,0.0 +15539,33,2.5,48,0.0 +15539,73,15,14,0.0 +15539,43,46,33,0.0 +15539,56,38,25,0.0 +15539,65,21.05,29,0.0 +15539,57,19.5,5,0.0 +15539,2,19,32,0.0 +15539,10,31,24,0.0 +15539,9,97,37,0.0 +15539,1,18,1,0.0 +15539,20,81,42,0.0 +15539,45,9.5,11,0.0 +15539,53,32.8,1,0.0 +15539,41,9.65,36,0.0 +15539,14,23.25,8,0.0 +15539,37,26,23,0.0 +15539,11,21,30,0.0 +15540,68,12.5,32,0.0 +15540,74,10,31,0.0 +15540,22,21,23,0.0 +15540,59,55,43,0.0 +15540,34,14,11,0.0 +15540,18,62.5,35,0.0 +15540,24,4.5,23,0.0 +15540,66,17,33,0.0 +15540,61,28.5,7,0.0 +15540,54,7.45,8,0.0 +15540,27,43.9,18,0.0 +15540,10,31,21,0.0 +15540,35,18,30,0.0 +15540,71,21.5,1,0.0 +15540,33,2.5,24,0.0 +15540,56,38,31,0.0 +15540,25,14,50,0.0 +15540,65,21.05,50,0.0 +15540,53,32.8,2,0.0 +15540,9,97,31,0.0 +15540,73,15,21,0.0 +15540,6,25,25,0.0 +15540,69,36,4,0.0 +15540,14,23.25,21,0.0 +15540,23,9,9,0.0 +15540,63,43.9,4,0.0 +15540,3,10,44,0.0 +15540,31,12.5,29,0.0 +15540,52,7,2,0.0 +15540,16,17.45,46,0.0 +15540,40,18.4,48,0.0 +15540,39,18,46,0.0 +15540,8,40,10,0.0 +15540,42,14,23,0.0 +15540,7,30,2,0.0 +15541,26,31.23,21,0.0 +15541,69,36,46,0.0 +15541,75,7.75,3,0.0 +15541,8,40,6,0.0 +15541,71,21.5,2,0.0 +15541,39,18,33,0.0 +15541,52,7,18,0.0 +15541,13,6,12,0.0 +15541,20,81,47,0.0 +15541,34,14,40,0.0 +15541,2,19,1,0.0 +15541,56,38,24,0.0 +15541,31,12.5,38,0.0 +15541,43,46,35,0.0 +15541,57,19.5,34,0.0 +15541,24,4.5,27,0.0 +15541,48,12.75,22,0.0 +15541,51,53,11,0.0 +15541,49,20,18,0.0 +15541,61,28.5,39,0.0 +15541,53,32.8,18,0.0 +15541,62,49.3,26,0.0 +15541,60,34,27,0.0 +15541,30,25.89,32,0.0 +15541,17,39,10,0.0 +15541,44,19.45,17,0.0 +15541,37,26,45,0.0 +15541,36,19,48,0.0 +15541,5,21.35,13,0.0 +15541,15,15.5,37,0.0 +15541,10,31,14,0.0 +15541,77,13,34,0.0 +15541,14,23.25,33,0.0 +15541,65,21.05,39,0.0 +15541,41,9.65,17,0.0 +15541,64,33.25,36,0.0 +15541,63,43.9,18,0.0 +15541,21,10,43,0.0 +15541,3,10,36,0.0 +15541,40,18.4,2,0.0 +15541,66,17,22,0.0 +15541,54,7.45,1,0.0 +15541,27,43.9,29,0.0 +15541,68,12.5,1,0.0 +15541,42,14,24,0.0 +15541,18,62.5,24,0.0 +15541,6,25,45,0.0 +15541,35,18,18,0.0 +15541,1,18,49,0.0 +15541,28,45.6,20,0.0 +15541,22,21,43,0.0 +15541,58,13.25,35,0.0 +15541,70,15,5,0.0 +15542,5,21.35,5,0.0 +15542,29,123.79,17,0.0 +15542,56,38,15,0.0 +15542,30,25.89,48,0.0 +15542,68,12.5,34,0.0 +15542,37,26,1,0.0 +15542,10,31,10,0.0 +15542,65,21.05,41,0.0 +15542,31,12.5,35,0.0 +15543,27,43.9,9,0.0 +15543,44,19.45,9,0.0 +15543,18,62.5,36,0.0 +15543,68,12.5,46,0.0 +15543,33,2.5,9,0.0 +15543,63,43.9,46,0.0 +15543,59,55,9,0.0 +15543,23,9,32,0.0 +15543,69,36,50,0.0 +15543,54,7.45,30,0.0 +15543,70,15,31,0.0 +15543,9,97,14,0.0 +15543,21,10,50,0.0 +15543,65,21.05,43,0.0 +15543,35,18,45,0.0 +15543,48,12.75,18,0.0 +15543,58,13.25,7,0.0 +15543,47,9.5,17,0.0 +15543,64,33.25,35,0.0 +15543,10,31,17,0.0 +15543,76,18,5,0.0 +15543,22,21,5,0.0 +15543,34,14,20,0.0 +15543,55,24,48,0.0 +15543,36,19,10,0.0 +15543,14,23.25,6,0.0 +15543,3,10,42,0.0 +15543,8,40,1,0.0 +15543,7,30,46,0.0 +15543,49,20,37,0.0 +15543,30,25.89,24,0.0 +15543,5,21.35,48,0.0 +15543,11,21,17,0.0 +15543,75,7.75,39,0.0 +15543,28,45.6,17,0.0 +15543,45,9.5,29,0.0 +15543,19,9.2,5,0.0 +15543,12,38,27,0.0 +15543,72,34.8,39,0.0 +15543,29,123.79,47,0.0 +15543,62,49.3,8,0.0 +15543,13,6,5,0.0 +15543,56,38,19,0.0 +15543,61,28.5,38,0.0 +15543,25,14,36,0.0 +15543,73,15,29,0.0 +15543,50,16.25,47,0.0 +15543,20,81,8,0.0 +15543,71,21.5,13,0.0 +15543,46,12,3,0.0 +15543,40,18.4,48,0.0 +15544,14,23.25,43,0.0 +15544,53,32.8,3,0.0 +15544,73,15,11,0.0 +15544,47,9.5,16,0.0 +15544,25,14,1,0.0 +15544,59,55,40,0.0 +15544,13,6,24,0.0 +15544,24,4.5,7,0.0 +15544,58,13.25,3,0.0 +15544,74,10,47,0.0 +15544,46,12,45,0.0 +15544,16,17.45,11,0.0 +15544,8,40,50,0.0 +15544,3,10,21,0.0 +15544,30,25.89,8,0.0 +15544,38,263.5,46,0.0 +15544,44,19.45,39,0.0 +15544,4,22,10,0.0 +15545,72,34.8,50,0.0 +15545,38,263.5,9,0.0 +15545,32,32,18,0.0 +15545,16,17.45,34,0.0 +15545,74,10,18,0.0 +15545,6,25,1,0.0 +15545,51,53,32,0.0 +15545,37,26,41,0.0 +15545,49,20,29,0.0 +15545,3,10,50,0.0 +15545,19,9.2,40,0.0 +15545,25,14,19,0.0 +15545,11,21,13,0.0 +15545,73,15,50,0.0 +15545,7,30,26,0.0 +15545,22,21,1,0.0 +15545,18,62.5,37,0.0 +15545,35,18,22,0.0 +15545,31,12.5,46,0.0 +15545,77,13,28,0.0 +15545,5,21.35,23,0.0 +15545,67,14,20,0.0 +15545,23,9,14,0.0 +15545,26,31.23,48,0.0 +15545,70,15,2,0.0 +15545,29,123.79,49,0.0 +15545,47,9.5,1,0.0 +15545,75,7.75,49,0.0 +15545,46,12,15,0.0 +15545,43,46,24,0.0 +15545,53,32.8,4,0.0 +15545,17,39,7,0.0 +15545,24,4.5,22,0.0 +15545,60,34,30,0.0 +15545,58,13.25,37,0.0 +15545,69,36,4,0.0 +15545,65,21.05,25,0.0 +15545,62,49.3,10,0.0 +15545,44,19.45,34,0.0 +15545,28,45.6,50,0.0 +15545,33,2.5,23,0.0 +15545,45,9.5,5,0.0 +15545,8,40,11,0.0 +15545,34,14,44,0.0 +15545,61,28.5,21,0.0 +15545,57,19.5,9,0.0 +15545,40,18.4,18,0.0 +15545,66,17,33,0.0 +15545,54,7.45,32,0.0 +15545,21,10,26,0.0 +15545,27,43.9,41,0.0 +15545,41,9.65,34,0.0 +15545,10,31,32,0.0 +15545,48,12.75,27,0.0 +15545,52,7,5,0.0 +15545,12,38,8,0.0 +15545,59,55,10,0.0 +15545,9,97,36,0.0 +15545,55,24,17,0.0 +15545,71,21.5,46,0.0 +15545,39,18,4,0.0 +15545,13,6,20,0.0 +15546,2,19,11,0.0 +15546,16,17.45,27,0.0 +15546,17,39,5,0.0 +15546,12,38,29,0.0 +15546,77,13,29,0.0 +15546,69,36,29,0.0 +15546,73,15,1,0.0 +15546,48,12.75,22,0.0 +15546,61,28.5,28,0.0 +15546,6,25,3,0.0 +15546,31,12.5,32,0.0 +15546,1,18,42,0.0 +15546,45,9.5,27,0.0 +15546,40,18.4,44,0.0 +15546,39,18,21,0.0 +15546,57,19.5,48,0.0 +15546,59,55,33,0.0 +15546,26,31.23,14,0.0 +15546,53,32.8,26,0.0 +15546,46,12,20,0.0 +15546,66,17,4,0.0 +15546,63,43.9,23,0.0 +15546,4,22,48,0.0 +15546,18,62.5,32,0.0 +15546,60,34,14,0.0 +15546,23,9,19,0.0 +15546,75,7.75,23,0.0 +15546,76,18,36,0.0 +15546,72,34.8,19,0.0 +15546,28,45.6,2,0.0 +15547,11,21,47,0.0 +15547,31,12.5,38,0.0 +15547,3,10,27,0.0 +15547,46,12,43,0.0 +15547,17,39,28,0.0 +15547,30,25.89,42,0.0 +15547,50,16.25,11,0.0 +15547,76,18,34,0.0 +15547,1,18,45,0.0 +15547,24,4.5,19,0.0 +15547,72,34.8,30,0.0 +15547,22,21,45,0.0 +15547,18,62.5,49,0.0 +15547,41,9.65,34,0.0 +15547,52,7,28,0.0 +15547,53,32.8,27,0.0 +15548,40,18.4,29,0.0 +15548,36,19,26,0.0 +15548,69,36,10,0.0 +15548,21,10,34,0.0 +15548,35,18,41,0.0 +15548,71,21.5,22,0.0 +15548,57,19.5,37,0.0 +15548,28,45.6,30,0.0 +15548,17,39,50,0.0 +15548,4,22,30,0.0 +15548,73,15,8,0.0 +15548,52,7,34,0.0 +15548,22,21,49,0.0 +15548,70,15,16,0.0 +15548,26,31.23,1,0.0 +15548,54,7.45,44,0.0 +15548,60,34,45,0.0 +15548,43,46,30,0.0 +15549,67,14,41,0.0 +15549,14,23.25,23,0.0 +15549,42,14,2,0.0 +15549,64,33.25,47,0.0 +15549,8,40,39,0.0 +15549,57,19.5,28,0.0 +15549,11,21,4,0.0 +15549,40,18.4,18,0.0 +15549,72,34.8,35,0.0 +15549,77,13,29,0.0 +15549,31,12.5,42,0.0 +15549,66,17,44,0.0 +15549,30,25.89,7,0.0 +15549,53,32.8,25,0.0 +15549,58,13.25,1,0.0 +15549,75,7.75,22,0.0 +15549,6,25,49,0.0 +15549,54,7.45,12,0.0 +15549,38,263.5,23,0.0 +15549,36,19,29,0.0 +15549,4,22,31,0.0 +15549,35,18,5,0.0 +15549,15,15.5,36,0.0 +15549,2,19,11,0.0 +15549,27,43.9,33,0.0 +15549,18,62.5,3,0.0 +15549,9,97,49,0.0 +15549,43,46,37,0.0 +15549,21,10,5,0.0 +15549,5,21.35,27,0.0 +15549,25,14,41,0.0 +15549,68,12.5,15,0.0 +15549,41,9.65,5,0.0 +15549,19,9.2,2,0.0 +15549,1,18,41,0.0 +15549,46,12,26,0.0 +15549,51,53,50,0.0 +15549,73,15,16,0.0 +15549,33,2.5,34,0.0 +15549,74,10,38,0.0 +15549,28,45.6,34,0.0 +15549,69,36,42,0.0 +15549,20,81,33,0.0 +15549,70,15,46,0.0 +15549,55,24,16,0.0 +15549,48,12.75,34,0.0 +15549,61,28.5,2,0.0 +15549,16,17.45,31,0.0 +15549,39,18,17,0.0 +15549,50,16.25,10,0.0 +15549,13,6,49,0.0 +15549,37,26,24,0.0 +15549,76,18,34,0.0 +15549,60,34,13,0.0 +15549,12,38,12,0.0 +15549,63,43.9,36,0.0 +15549,7,30,21,0.0 +15549,47,9.5,16,0.0 +15549,56,38,14,0.0 +15549,44,19.45,16,0.0 +15549,10,31,15,0.0 +15549,22,21,17,0.0 +15549,29,123.79,36,0.0 +15549,26,31.23,12,0.0 +15549,24,4.5,29,0.0 +15549,62,49.3,26,0.0 +15549,59,55,44,0.0 +15549,49,20,25,0.0 +15549,71,21.5,18,0.0 +15549,23,9,9,0.0 +15549,32,32,24,0.0 +15550,45,9.5,15,0.0 +15550,7,30,25,0.0 +15550,76,18,8,0.0 +15550,74,10,34,0.0 +15550,38,263.5,45,0.0 +15550,36,19,4,0.0 +15550,51,53,41,0.0 +15550,40,18.4,20,0.0 +15550,26,31.23,6,0.0 +15550,10,31,43,0.0 +15550,31,12.5,33,0.0 +15550,9,97,11,0.0 +15550,65,21.05,9,0.0 +15550,57,19.5,1,0.0 +15550,67,14,25,0.0 +15550,77,13,37,0.0 +15550,55,24,18,0.0 +15550,13,6,47,0.0 +15550,24,4.5,49,0.0 +15550,27,43.9,6,0.0 +15550,70,15,28,0.0 +15550,46,12,46,0.0 +15551,72,34.8,2,0.0 +15551,1,18,44,0.0 +15551,10,31,13,0.0 +15551,56,38,5,0.0 +15551,22,21,35,0.0 +15551,21,10,2,0.0 +15551,36,19,5,0.0 +15551,71,21.5,30,0.0 +15551,75,7.75,43,0.0 +15551,30,25.89,47,0.0 +15551,31,12.5,35,0.0 +15551,57,19.5,24,0.0 +15551,52,7,41,0.0 +15551,17,39,21,0.0 +15551,49,20,7,0.0 +15551,48,12.75,8,0.0 +15551,70,15,21,0.0 +15551,46,12,9,0.0 +15551,47,9.5,2,0.0 +15551,73,15,32,0.0 +15551,14,23.25,40,0.0 +15551,7,30,23,0.0 +15551,32,32,23,0.0 +15551,77,13,17,0.0 +15551,15,15.5,32,0.0 +15551,37,26,8,0.0 +15551,5,21.35,5,0.0 +15551,63,43.9,47,0.0 +15551,50,16.25,38,0.0 +15551,42,14,8,0.0 +15551,62,49.3,39,0.0 +15552,3,10,30,0.0 +15552,6,25,30,0.0 +15552,20,81,27,0.0 +15552,31,12.5,26,0.0 +15552,52,7,34,0.0 +15552,32,32,34,0.0 +15552,26,31.23,8,0.0 +15552,48,12.75,34,0.0 +15552,9,97,37,0.0 +15552,71,21.5,29,0.0 +15552,40,18.4,18,0.0 +15552,12,38,25,0.0 +15552,13,6,12,0.0 +15552,27,43.9,24,0.0 +15552,49,20,24,0.0 +15552,56,38,13,0.0 +15552,47,9.5,49,0.0 +15552,63,43.9,40,0.0 +15552,45,9.5,34,0.0 +15552,59,55,32,0.0 +15552,23,9,50,0.0 +15552,7,30,37,0.0 +15552,28,45.6,3,0.0 +15552,14,23.25,24,0.0 +15552,15,15.5,7,0.0 +15552,77,13,43,0.0 +15552,57,19.5,24,0.0 +15552,22,21,1,0.0 +15552,29,123.79,8,0.0 +15552,8,40,39,0.0 +15552,42,14,34,0.0 +15552,53,32.8,35,0.0 +15552,70,15,36,0.0 +15552,66,17,21,0.0 +15552,50,16.25,42,0.0 +15552,39,18,36,0.0 +15552,37,26,26,0.0 +15552,64,33.25,49,0.0 +15552,69,36,5,0.0 +15552,72,34.8,37,0.0 +15552,38,263.5,37,0.0 +15552,4,22,35,0.0 +15552,44,19.45,8,0.0 +15552,58,13.25,50,0.0 +15552,61,28.5,42,0.0 +15552,68,12.5,7,0.0 +15553,69,36,28,0.0 +15553,15,15.5,33,0.0 +15553,8,40,2,0.0 +15553,1,18,3,0.0 +15553,36,19,28,0.0 +15553,11,21,9,0.0 +15553,73,15,40,0.0 +15553,42,14,14,0.0 +15553,67,14,42,0.0 +15553,4,22,49,0.0 +15553,74,10,50,0.0 +15553,13,6,48,0.0 +15553,77,13,36,0.0 +15553,7,30,5,0.0 +15553,37,26,23,0.0 +15553,24,4.5,40,0.0 +15553,17,39,50,0.0 +15553,58,13.25,37,0.0 +15553,40,18.4,10,0.0 +15553,23,9,47,0.0 +15553,30,25.89,42,0.0 +15553,19,9.2,33,0.0 +15553,34,14,23,0.0 +15553,2,19,46,0.0 +15553,18,62.5,20,0.0 +15553,26,31.23,23,0.0 +15553,12,38,1,0.0 +15553,14,23.25,28,0.0 +15554,41,9.65,30,0.0 +15554,10,31,15,0.0 +15554,46,12,14,0.0 +15554,29,123.79,36,0.0 +15554,72,34.8,37,0.0 +15554,9,97,42,0.0 +15554,30,25.89,39,0.0 +15554,51,53,50,0.0 +15554,7,30,30,0.0 +15554,55,24,31,0.0 +15554,17,39,11,0.0 +15554,19,9.2,41,0.0 +15554,36,19,45,0.0 +15554,64,33.25,37,0.0 +15554,26,31.23,23,0.0 +15554,49,20,11,0.0 +15554,14,23.25,6,0.0 +15554,5,21.35,9,0.0 +15554,40,18.4,24,0.0 +15554,28,45.6,23,0.0 +15554,66,17,48,0.0 +15554,22,21,6,0.0 +15554,45,9.5,27,0.0 +15554,65,21.05,7,0.0 +15554,74,10,8,0.0 +15554,4,22,6,0.0 +15554,43,46,31,0.0 +15554,76,18,32,0.0 +15554,38,263.5,15,0.0 +15554,35,18,37,0.0 +15554,56,38,39,0.0 +15554,47,9.5,42,0.0 +15554,70,15,6,0.0 +15554,39,18,43,0.0 +15554,21,10,31,0.0 +15554,53,32.8,28,0.0 +15554,18,62.5,1,0.0 +15554,59,55,45,0.0 +15554,25,14,39,0.0 +15554,2,19,21,0.0 +15554,60,34,15,0.0 +15554,37,26,46,0.0 +15554,67,14,20,0.0 +15554,48,12.75,18,0.0 +15554,63,43.9,12,0.0 +15554,42,14,48,0.0 +15554,57,19.5,46,0.0 +15554,34,14,34,0.0 +15554,11,21,36,0.0 +15554,58,13.25,47,0.0 +15554,12,38,47,0.0 +15554,62,49.3,35,0.0 +15554,68,12.5,37,0.0 +15554,75,7.75,11,0.0 +15554,13,6,16,0.0 +15555,63,43.9,34,0.0 +15555,32,32,33,0.0 +15555,22,21,34,0.0 +15555,47,9.5,32,0.0 +15555,48,12.75,39,0.0 +15555,64,33.25,46,0.0 +15555,19,9.2,50,0.0 +15555,69,36,35,0.0 +15555,18,62.5,2,0.0 +15555,3,10,27,0.0 +15555,6,25,49,0.0 +15555,55,24,11,0.0 +15555,13,6,44,0.0 +15555,46,12,26,0.0 +15555,39,18,11,0.0 +15555,30,25.89,9,0.0 +15555,65,21.05,19,0.0 +15555,16,17.45,3,0.0 +15555,26,31.23,49,0.0 +15555,44,19.45,24,0.0 +15555,15,15.5,15,0.0 +15555,62,49.3,3,0.0 +15555,57,19.5,24,0.0 +15555,24,4.5,20,0.0 +15555,38,263.5,26,0.0 +15555,77,13,38,0.0 +15555,59,55,9,0.0 +15555,10,31,27,0.0 +15555,23,9,14,0.0 +15555,72,34.8,47,0.0 +15555,41,9.65,35,0.0 +15555,37,26,33,0.0 +15555,58,13.25,35,0.0 +15555,67,14,40,0.0 +15555,7,30,2,0.0 +15555,66,17,13,0.0 +15555,4,22,50,0.0 +15555,33,2.5,32,0.0 +15555,2,19,3,0.0 +15555,52,7,22,0.0 +15555,28,45.6,38,0.0 +15555,50,16.25,40,0.0 +15555,43,46,7,0.0 +15555,49,20,30,0.0 +15555,54,7.45,8,0.0 +15555,35,18,8,0.0 +15555,1,18,27,0.0 +15555,5,21.35,17,0.0 +15555,31,12.5,1,0.0 +15555,11,21,28,0.0 +15555,25,14,39,0.0 +15555,34,14,48,0.0 +15555,71,21.5,6,0.0 +15555,70,15,33,0.0 +15555,75,7.75,8,0.0 +15555,17,39,47,0.0 +15555,40,18.4,22,0.0 +15555,56,38,15,0.0 +15555,76,18,22,0.0 +15555,8,40,38,0.0 +15555,74,10,17,0.0 +15555,36,19,40,0.0 +15555,12,38,38,0.0 +15555,51,53,18,0.0 +15555,29,123.79,20,0.0 +15555,27,43.9,15,0.0 +15555,14,23.25,16,0.0 +15555,9,97,26,0.0 +15555,53,32.8,3,0.0 +15555,20,81,6,0.0 +15556,62,49.3,26,0.0 +15556,31,12.5,36,0.0 +15556,67,14,17,0.0 +15556,58,13.25,47,0.0 +15556,74,10,34,0.0 +15556,27,43.9,23,0.0 +15556,32,32,16,0.0 +15556,59,55,34,0.0 +15556,65,21.05,13,0.0 +15556,68,12.5,47,0.0 +15556,41,9.65,15,0.0 +15556,60,34,2,0.0 +15556,52,7,48,0.0 +15556,11,21,10,0.0 +15556,69,36,45,0.0 +15556,72,34.8,34,0.0 +15556,10,31,10,0.0 +15556,5,21.35,23,0.0 +15556,15,15.5,18,0.0 +15556,46,12,50,0.0 +15556,7,30,6,0.0 +15556,40,18.4,50,0.0 +15556,33,2.5,10,0.0 +15556,54,7.45,23,0.0 +15556,24,4.5,16,0.0 +15556,44,19.45,44,0.0 +15556,35,18,20,0.0 +15556,53,32.8,24,0.0 +15556,77,13,45,0.0 +15556,21,10,33,0.0 +15556,55,24,5,0.0 +15556,47,9.5,2,0.0 +15556,39,18,37,0.0 +15556,50,16.25,1,0.0 +15556,23,9,12,0.0 +15556,28,45.6,15,0.0 +15556,63,43.9,3,0.0 +15556,20,81,13,0.0 +15556,19,9.2,11,0.0 +15556,8,40,24,0.0 +15556,48,12.75,42,0.0 +15556,2,19,22,0.0 +15556,43,46,14,0.0 +15556,37,26,40,0.0 +15556,29,123.79,8,0.0 +15556,30,25.89,34,0.0 +15556,14,23.25,32,0.0 +15556,22,21,30,0.0 +15556,66,17,34,0.0 +15556,75,7.75,39,0.0 +15556,1,18,34,0.0 +15556,76,18,44,0.0 +15556,26,31.23,25,0.0 +15556,25,14,4,0.0 +15556,64,33.25,2,0.0 +15556,16,17.45,18,0.0 +15556,6,25,48,0.0 +15556,17,39,37,0.0 +15556,38,263.5,22,0.0 +15556,45,9.5,34,0.0 +15556,12,38,44,0.0 +15556,34,14,49,0.0 +15556,42,14,24,0.0 +15556,3,10,29,0.0 +15556,51,53,5,0.0 +15556,18,62.5,33,0.0 +15556,9,97,47,0.0 +15556,49,20,29,0.0 +15556,61,28.5,36,0.0 +15556,4,22,17,0.0 +15556,57,19.5,11,0.0 +15556,56,38,22,0.0 +15556,13,6,30,0.0 +15556,73,15,50,0.0 +15556,70,15,36,0.0 +15556,36,19,8,0.0 +15557,21,10,37,0.0 +15557,70,15,25,0.0 +15557,14,23.25,27,0.0 +15557,66,17,3,0.0 +15557,46,12,17,0.0 +15557,6,25,17,0.0 +15557,76,18,21,0.0 +15557,45,9.5,38,0.0 +15557,43,46,37,0.0 +15557,33,2.5,44,0.0 +15557,57,19.5,13,0.0 +15557,8,40,41,0.0 +15557,58,13.25,38,0.0 +15557,17,39,16,0.0 +15557,71,21.5,5,0.0 +15557,48,12.75,42,0.0 +15557,72,34.8,39,0.0 +15557,24,4.5,18,0.0 +15557,41,9.65,11,0.0 +15557,10,31,4,0.0 +15557,32,32,20,0.0 +15557,65,21.05,27,0.0 +15557,51,53,21,0.0 +15557,12,38,42,0.0 +15557,64,33.25,8,0.0 +15557,34,14,5,0.0 +15557,59,55,27,0.0 +15557,61,28.5,42,0.0 +15557,27,43.9,4,0.0 +15557,54,7.45,21,0.0 +15557,77,13,19,0.0 +15557,38,263.5,47,0.0 +15557,22,21,14,0.0 +15557,75,7.75,35,0.0 +15557,69,36,26,0.0 +15557,29,123.79,23,0.0 +15557,39,18,27,0.0 +15557,5,21.35,5,0.0 +15557,23,9,31,0.0 +15557,56,38,44,0.0 +15557,35,18,33,0.0 +15557,11,21,15,0.0 +15557,53,32.8,7,0.0 +15557,55,24,18,0.0 +15557,50,16.25,31,0.0 +15557,18,62.5,13,0.0 +15557,62,49.3,23,0.0 +15557,25,14,48,0.0 +15557,52,7,21,0.0 +15557,19,9.2,14,0.0 +15557,31,12.5,27,0.0 +15557,9,97,16,0.0 +15557,68,12.5,43,0.0 +15558,61,28.5,11,0.0 +15558,33,2.5,46,0.0 +15558,76,18,19,0.0 +15558,36,19,21,0.0 +15558,71,21.5,16,0.0 +15558,41,9.65,9,0.0 +15558,43,46,30,0.0 +15558,25,14,44,0.0 +15558,34,14,24,0.0 +15558,42,14,15,0.0 +15558,23,9,14,0.0 +15558,57,19.5,7,0.0 +15558,6,25,12,0.0 +15558,29,123.79,34,0.0 +15558,38,263.5,34,0.0 +15558,73,15,23,0.0 +15558,30,25.89,16,0.0 +15558,26,31.23,26,0.0 +15558,48,12.75,10,0.0 +15558,21,10,39,0.0 +15558,16,17.45,14,0.0 +15558,53,32.8,25,0.0 +15558,37,26,30,0.0 +15558,68,12.5,14,0.0 +15558,70,15,3,0.0 +15558,1,18,43,0.0 +15558,9,97,22,0.0 +15558,47,9.5,24,0.0 +15558,60,34,46,0.0 +15558,66,17,16,0.0 +15558,22,21,43,0.0 +15558,20,81,48,0.0 +15558,24,4.5,35,0.0 +15558,40,18.4,40,0.0 +15558,11,21,38,0.0 +15558,65,21.05,35,0.0 +15558,17,39,33,0.0 +15558,27,43.9,26,0.0 +15559,18,62.5,28,0.0 +15559,14,23.25,28,0.0 +15559,44,19.45,24,0.0 +15559,32,32,13,0.0 +15559,39,18,40,0.0 +15559,42,14,12,0.0 +15559,20,81,10,0.0 +15559,61,28.5,2,0.0 +15559,60,34,50,0.0 +15559,48,12.75,13,0.0 +15559,13,6,21,0.0 +15559,56,38,7,0.0 +15559,19,9.2,3,0.0 +15559,21,10,38,0.0 +15559,38,263.5,12,0.0 +15559,50,16.25,4,0.0 +15559,64,33.25,50,0.0 +15560,57,19.5,33,0.0 +15560,63,43.9,43,0.0 +15560,5,21.35,24,0.0 +15560,54,7.45,24,0.0 +15560,34,14,21,0.0 +15560,71,21.5,30,0.0 +15560,76,18,30,0.0 +15560,12,38,13,0.0 +15560,13,6,12,0.0 +15560,26,31.23,10,0.0 +15560,66,17,32,0.0 +15560,69,36,40,0.0 +15560,6,25,24,0.0 +15560,72,34.8,7,0.0 +15560,32,32,28,0.0 +15560,21,10,34,0.0 +15560,46,12,32,0.0 +15560,39,18,29,0.0 +15560,37,26,40,0.0 +15560,40,18.4,11,0.0 +15560,4,22,14,0.0 +15560,70,15,2,0.0 +15560,43,46,25,0.0 +15560,3,10,29,0.0 +15560,7,30,6,0.0 +15560,55,24,22,0.0 +15560,14,23.25,49,0.0 +15560,24,4.5,16,0.0 +15560,49,20,12,0.0 +15560,45,9.5,25,0.0 +15560,2,19,32,0.0 +15560,8,40,43,0.0 +15560,33,2.5,5,0.0 +15560,38,263.5,8,0.0 +15560,29,123.79,11,0.0 +15560,19,9.2,1,0.0 +15560,11,21,9,0.0 +15560,77,13,29,0.0 +15560,60,34,4,0.0 +15560,41,9.65,2,0.0 +15560,44,19.45,6,0.0 +15560,30,25.89,31,0.0 +15560,50,16.25,24,0.0 +15560,20,81,29,0.0 +15560,18,62.5,32,0.0 +15560,58,13.25,1,0.0 +15560,36,19,8,0.0 +15560,48,12.75,38,0.0 +15560,74,10,43,0.0 +15560,61,28.5,36,0.0 +15560,47,9.5,46,0.0 +15560,68,12.5,20,0.0 +15560,23,9,36,0.0 +15560,65,21.05,47,0.0 +15560,67,14,43,0.0 +15560,28,45.6,44,0.0 +15560,9,97,38,0.0 +15560,1,18,14,0.0 +15560,25,14,10,0.0 +15560,27,43.9,2,0.0 +15560,17,39,25,0.0 +15560,75,7.75,8,0.0 +15560,64,33.25,43,0.0 +15560,51,53,27,0.0 +15560,22,21,2,0.0 +15560,53,32.8,9,0.0 +15560,59,55,17,0.0 +15560,35,18,32,0.0 +15560,73,15,8,0.0 +15560,62,49.3,2,0.0 +15560,31,12.5,12,0.0 +15560,10,31,45,0.0 +15560,56,38,45,0.0 +15560,15,15.5,14,0.0 +15560,42,14,33,0.0 +15560,16,17.45,46,0.0 +15561,55,24,8,0.0 +15561,24,4.5,18,0.0 +15561,37,26,48,0.0 +15561,45,9.5,37,0.0 +15561,42,14,30,0.0 +15561,61,28.5,41,0.0 +15561,32,32,5,0.0 +15561,70,15,36,0.0 +15561,56,38,8,0.0 +15561,62,49.3,49,0.0 +15561,28,45.6,49,0.0 +15561,26,31.23,30,0.0 +15561,47,9.5,38,0.0 +15561,44,19.45,17,0.0 +15561,5,21.35,32,0.0 +15561,69,36,19,0.0 +15561,60,34,11,0.0 +15561,53,32.8,36,0.0 +15561,33,2.5,19,0.0 +15561,68,12.5,14,0.0 +15561,4,22,30,0.0 +15561,50,16.25,21,0.0 +15561,7,30,1,0.0 +15561,59,55,26,0.0 +15561,9,97,45,0.0 +15561,36,19,8,0.0 +15561,19,9.2,41,0.0 +15561,20,81,19,0.0 +15561,40,18.4,49,0.0 +15561,71,21.5,30,0.0 +15561,6,25,12,0.0 +15561,63,43.9,12,0.0 +15561,67,14,30,0.0 +15561,25,14,22,0.0 +15561,38,263.5,21,0.0 +15561,27,43.9,14,0.0 +15561,72,34.8,7,0.0 +15561,65,21.05,50,0.0 +15561,73,15,23,0.0 +15561,57,19.5,38,0.0 +15561,1,18,12,0.0 +15561,77,13,35,0.0 +15561,39,18,47,0.0 +15561,35,18,46,0.0 +15561,30,25.89,45,0.0 +15561,66,17,21,0.0 +15561,41,9.65,4,0.0 +15561,43,46,24,0.0 +15561,64,33.25,32,0.0 +15561,13,6,22,0.0 +15561,2,19,16,0.0 +15561,21,10,30,0.0 +15561,23,9,36,0.0 +15561,29,123.79,47,0.0 +15561,15,15.5,36,0.0 +15561,31,12.5,35,0.0 +15561,17,39,3,0.0 +15561,3,10,29,0.0 +15561,58,13.25,45,0.0 +15561,8,40,40,0.0 +15561,75,7.75,45,0.0 +15561,34,14,9,0.0 +15561,54,7.45,45,0.0 +15561,14,23.25,33,0.0 +15561,76,18,40,0.0 +15561,46,12,22,0.0 +15561,49,20,47,0.0 +15562,1,18,7,0.0 +15562,4,22,22,0.0 +15562,42,14,27,0.0 +15562,67,14,1,0.0 +15562,72,34.8,7,0.0 +15562,20,81,3,0.0 +15562,12,38,49,0.0 +15562,27,43.9,14,0.0 +15562,19,9.2,40,0.0 +15562,40,18.4,28,0.0 +15562,55,24,48,0.0 +15562,69,36,7,0.0 +15562,58,13.25,35,0.0 +15562,10,31,19,0.0 +15562,54,7.45,42,0.0 +15562,62,49.3,4,0.0 +15562,25,14,14,0.0 +15562,17,39,18,0.0 +15562,45,9.5,50,0.0 +15562,44,19.45,41,0.0 +15562,73,15,39,0.0 +15562,9,97,4,0.0 +15562,32,32,10,0.0 +15562,15,15.5,35,0.0 +15562,65,21.05,26,0.0 +15562,38,263.5,31,0.0 +15562,75,7.75,47,0.0 +15562,46,12,35,0.0 +15562,21,10,9,0.0 +15562,26,31.23,20,0.0 +15562,71,21.5,43,0.0 +15562,6,25,44,0.0 +15562,2,19,46,0.0 +15562,48,12.75,26,0.0 +15562,68,12.5,5,0.0 +15562,31,12.5,18,0.0 +15562,29,123.79,22,0.0 +15562,22,21,25,0.0 +15562,5,21.35,30,0.0 +15562,51,53,21,0.0 +15562,16,17.45,34,0.0 +15562,11,21,6,0.0 +15562,33,2.5,38,0.0 +15562,52,7,44,0.0 +15562,23,9,42,0.0 +15562,59,55,26,0.0 +15562,57,19.5,18,0.0 +15562,41,9.65,17,0.0 +15562,60,34,3,0.0 +15562,28,45.6,20,0.0 +15562,76,18,32,0.0 +15562,8,40,31,0.0 +15563,8,40,50,0.0 +15563,29,123.79,20,0.0 +15563,54,7.45,9,0.0 +15563,58,13.25,32,0.0 +15563,14,23.25,24,0.0 +15563,46,12,36,0.0 +15563,39,18,1,0.0 +15563,7,30,27,0.0 +15563,73,15,1,0.0 +15563,62,49.3,9,0.0 +15563,76,18,35,0.0 +15563,53,32.8,31,0.0 +15563,35,18,8,0.0 +15563,41,9.65,21,0.0 +15563,5,21.35,8,0.0 +15563,2,19,35,0.0 +15563,60,34,5,0.0 +15563,59,55,16,0.0 +15563,70,15,21,0.0 +15563,67,14,4,0.0 +15563,10,31,6,0.0 +15563,24,4.5,29,0.0 +15563,50,16.25,19,0.0 +15563,47,9.5,48,0.0 +15563,6,25,34,0.0 +15563,26,31.23,17,0.0 +15563,12,38,36,0.0 +15563,19,9.2,7,0.0 +15563,3,10,9,0.0 +15563,75,7.75,12,0.0 +15563,31,12.5,31,0.0 +15563,45,9.5,19,0.0 +15563,11,21,33,0.0 +15563,36,19,2,0.0 +15563,40,18.4,32,0.0 +15563,16,17.45,33,0.0 +15563,52,7,9,0.0 +15563,71,21.5,36,0.0 +15563,15,15.5,48,0.0 +15563,37,26,11,0.0 +15563,42,14,3,0.0 +15563,77,13,37,0.0 +15563,49,20,30,0.0 +15563,34,14,46,0.0 +15563,63,43.9,8,0.0 +15563,28,45.6,31,0.0 +15563,18,62.5,21,0.0 +15564,61,28.5,22,0.0 +15564,27,43.9,35,0.0 +15564,5,21.35,37,0.0 +15564,11,21,37,0.0 +15564,31,12.5,44,0.0 +15564,15,15.5,30,0.0 +15565,2,19,28,0.0 +15565,10,31,21,0.0 +15565,63,43.9,27,0.0 +15565,5,21.35,6,0.0 +15565,33,2.5,5,0.0 +15565,31,12.5,41,0.0 +15565,13,6,3,0.0 +15565,35,18,31,0.0 +15565,72,34.8,40,0.0 +15565,11,21,2,0.0 +15565,1,18,25,0.0 +15565,22,21,32,0.0 +15565,19,9.2,28,0.0 +15565,28,45.6,16,0.0 +15566,71,21.5,29,0.0 +15566,11,21,27,0.0 +15566,10,31,43,0.0 +15566,49,20,22,0.0 +15566,17,39,15,0.0 +15566,54,7.45,8,0.0 +15566,44,19.45,14,0.0 +15566,72,34.8,1,0.0 +15566,56,38,45,0.0 +15566,24,4.5,12,0.0 +15566,31,12.5,3,0.0 +15566,73,15,17,0.0 +15566,36,19,47,0.0 +15566,53,32.8,2,0.0 +15566,6,25,16,0.0 +15566,25,14,25,0.0 +15566,33,2.5,50,0.0 +15566,69,36,40,0.0 +15566,40,18.4,3,0.0 +15566,77,13,42,0.0 +15566,26,31.23,40,0.0 +15566,32,32,32,0.0 +15566,43,46,9,0.0 +15566,66,17,29,0.0 +15566,47,9.5,44,0.0 +15566,48,12.75,42,0.0 +15566,37,26,9,0.0 +15566,41,9.65,29,0.0 +15566,45,9.5,42,0.0 +15566,62,49.3,42,0.0 +15566,58,13.25,33,0.0 +15566,57,19.5,43,0.0 +15566,21,10,20,0.0 +15566,1,18,40,0.0 +15566,74,10,45,0.0 +15566,5,21.35,34,0.0 +15566,38,263.5,29,0.0 +15566,29,123.79,23,0.0 +15566,3,10,40,0.0 +15566,65,21.05,3,0.0 +15566,14,23.25,44,0.0 +15566,64,33.25,48,0.0 +15566,39,18,35,0.0 +15566,42,14,43,0.0 +15566,15,15.5,19,0.0 +15566,63,43.9,18,0.0 +15566,35,18,4,0.0 +15566,51,53,33,0.0 +15566,46,12,27,0.0 +15566,30,25.89,36,0.0 +15566,68,12.5,26,0.0 +15566,52,7,29,0.0 +15566,19,9.2,28,0.0 +15566,22,21,47,0.0 +15566,13,6,45,0.0 +15566,70,15,44,0.0 +15566,7,30,2,0.0 +15566,23,9,37,0.0 +15567,68,12.5,42,0.0 +15567,38,263.5,24,0.0 +15567,10,31,5,0.0 +15567,59,55,6,0.0 +15567,75,7.75,20,0.0 +15567,20,81,45,0.0 +15567,6,25,46,0.0 +15567,73,15,32,0.0 +15567,31,12.5,22,0.0 +15567,36,19,43,0.0 +15567,24,4.5,2,0.0 +15567,46,12,47,0.0 +15567,2,19,5,0.0 +15567,74,10,7,0.0 +15567,26,31.23,33,0.0 +15567,70,15,3,0.0 +15567,55,24,48,0.0 +15567,40,18.4,23,0.0 +15567,25,14,43,0.0 +15567,1,18,39,0.0 +15567,15,15.5,36,0.0 +15567,61,28.5,36,0.0 +15567,30,25.89,24,0.0 +15567,3,10,33,0.0 +15567,19,9.2,38,0.0 +15567,48,12.75,21,0.0 +15567,76,18,20,0.0 +15567,22,21,29,0.0 +15567,45,9.5,30,0.0 +15567,54,7.45,30,0.0 +15567,43,46,5,0.0 +15567,69,36,31,0.0 +15567,27,43.9,45,0.0 +15567,23,9,21,0.0 +15567,39,18,41,0.0 +15567,33,2.5,27,0.0 +15567,51,53,48,0.0 +15567,18,62.5,28,0.0 +15567,57,19.5,50,0.0 +15567,11,21,9,0.0 +15567,77,13,13,0.0 +15567,47,9.5,14,0.0 +15567,42,14,15,0.0 +15567,67,14,30,0.0 +15567,37,26,2,0.0 +15567,16,17.45,28,0.0 +15567,13,6,11,0.0 +15567,29,123.79,9,0.0 +15568,24,4.5,7,0.0 +15568,67,14,43,0.0 +15568,61,28.5,47,0.0 +15568,13,6,38,0.0 +15568,29,123.79,17,0.0 +15568,56,38,36,0.0 +15568,32,32,6,0.0 +15568,59,55,26,0.0 +15568,3,10,9,0.0 +15568,23,9,48,0.0 +15568,21,10,26,0.0 +15568,37,26,25,0.0 +15568,49,20,29,0.0 +15568,26,31.23,4,0.0 +15568,11,21,50,0.0 +15568,51,53,23,0.0 +15568,48,12.75,28,0.0 +15568,76,18,15,0.0 +15568,42,14,25,0.0 +15568,77,13,29,0.0 +15568,74,10,10,0.0 +15568,75,7.75,28,0.0 +15568,52,7,48,0.0 +15568,4,22,18,0.0 +15568,34,14,27,0.0 +15568,15,15.5,39,0.0 +15568,45,9.5,22,0.0 +15568,39,18,23,0.0 +15568,7,30,28,0.0 +15568,70,15,39,0.0 +15568,2,19,2,0.0 +15568,46,12,3,0.0 +15568,36,19,31,0.0 +15568,40,18.4,5,0.0 +15568,44,19.45,45,0.0 +15568,58,13.25,42,0.0 +15568,73,15,7,0.0 +15568,9,97,27,0.0 +15568,43,46,2,0.0 +15568,19,9.2,4,0.0 +15568,69,36,31,0.0 +15568,25,14,28,0.0 +15568,38,263.5,35,0.0 +15568,71,21.5,12,0.0 +15568,62,49.3,39,0.0 +15568,20,81,23,0.0 +15568,10,31,20,0.0 +15568,63,43.9,47,0.0 +15568,30,25.89,41,0.0 +15568,55,24,30,0.0 +15568,31,12.5,50,0.0 +15568,27,43.9,13,0.0 +15568,68,12.5,25,0.0 +15568,57,19.5,33,0.0 +15568,12,38,49,0.0 +15568,65,21.05,50,0.0 +15568,41,9.65,41,0.0 +15568,60,34,12,0.0 +15568,72,34.8,11,0.0 +15568,6,25,30,0.0 +15568,33,2.5,7,0.0 +15568,1,18,4,0.0 +15568,28,45.6,11,0.0 +15568,5,21.35,1,0.0 +15568,64,33.25,23,0.0 +15568,8,40,8,0.0 +15569,26,31.23,23,0.0 +15569,31,12.5,33,0.0 +15569,10,31,20,0.0 +15569,32,32,49,0.0 +15569,62,49.3,45,0.0 +15569,63,43.9,12,0.0 +15569,56,38,24,0.0 +15569,52,7,7,0.0 +15569,50,16.25,4,0.0 +15569,46,12,41,0.0 +15569,35,18,2,0.0 +15569,64,33.25,7,0.0 +15569,28,45.6,35,0.0 +15569,6,25,26,0.0 +15569,18,62.5,19,0.0 +15569,45,9.5,42,0.0 +15569,68,12.5,11,0.0 +15569,15,15.5,37,0.0 +15569,74,10,41,0.0 +15569,53,32.8,26,0.0 +15569,76,18,27,0.0 +15569,72,34.8,16,0.0 +15569,25,14,22,0.0 +15569,77,13,8,0.0 +15569,60,34,48,0.0 +15569,47,9.5,12,0.0 +15569,24,4.5,34,0.0 +15569,5,21.35,16,0.0 +15569,37,26,12,0.0 +15569,13,6,33,0.0 +15569,58,13.25,9,0.0 +15569,9,97,18,0.0 +15569,39,18,27,0.0 +15569,54,7.45,25,0.0 +15569,38,263.5,16,0.0 +15569,3,10,40,0.0 +15570,9,97,22,0.0 +15570,58,13.25,45,0.0 +15570,13,6,9,0.0 +15570,23,9,29,0.0 +15570,69,36,11,0.0 +15570,55,24,47,0.0 +15570,77,13,38,0.0 +15570,30,25.89,22,0.0 +15570,11,21,3,0.0 +15570,3,10,43,0.0 +15570,64,33.25,40,0.0 +15570,33,2.5,34,0.0 +15570,2,19,36,0.0 +15570,12,38,30,0.0 +15570,17,39,36,0.0 +15570,71,21.5,14,0.0 +15570,19,9.2,4,0.0 +15570,37,26,42,0.0 +15570,51,53,33,0.0 +15570,63,43.9,5,0.0 +15570,24,4.5,4,0.0 +15570,28,45.6,38,0.0 +15570,62,49.3,6,0.0 +15570,73,15,25,0.0 +15570,68,12.5,17,0.0 +15570,44,19.45,11,0.0 +15570,31,12.5,32,0.0 +15570,65,21.05,7,0.0 +15570,66,17,32,0.0 +15571,6,25,6,0.0 +15571,52,7,13,0.0 +15571,73,15,31,0.0 +15571,66,17,1,0.0 +15571,28,45.6,35,0.0 +15571,32,32,45,0.0 +15571,37,26,32,0.0 +15571,36,19,42,0.0 +15571,10,31,19,0.0 +15571,43,46,5,0.0 +15571,75,7.75,8,0.0 +15571,12,38,43,0.0 +15571,8,40,50,0.0 +15571,31,12.5,42,0.0 +15571,19,9.2,14,0.0 +15571,54,7.45,6,0.0 +15571,21,10,15,0.0 +15571,26,31.23,45,0.0 +15571,59,55,2,0.0 +15571,67,14,44,0.0 +15571,51,53,20,0.0 +15571,20,81,5,0.0 +15571,61,28.5,8,0.0 +15571,46,12,18,0.0 +15571,30,25.89,29,0.0 +15571,42,14,9,0.0 +15571,76,18,22,0.0 +15571,49,20,2,0.0 +15571,38,263.5,34,0.0 +15571,47,9.5,5,0.0 +15571,2,19,47,0.0 +15571,64,33.25,32,0.0 +15571,48,12.75,23,0.0 +15571,69,36,38,0.0 +15571,55,24,19,0.0 +15572,18,62.5,7,0.0 +15572,41,9.65,28,0.0 +15572,74,10,29,0.0 +15572,36,19,2,0.0 +15572,56,38,40,0.0 +15572,77,13,17,0.0 +15572,76,18,9,0.0 +15572,73,15,20,0.0 +15572,38,263.5,21,0.0 +15572,15,15.5,11,0.0 +15572,61,28.5,34,0.0 +15572,22,21,21,0.0 +15572,59,55,45,0.0 +15572,2,19,41,0.0 +15572,42,14,50,0.0 +15572,29,123.79,22,0.0 +15572,52,7,36,0.0 +15572,9,97,11,0.0 +15572,31,12.5,13,0.0 +15572,46,12,25,0.0 +15572,69,36,44,0.0 +15572,16,17.45,26,0.0 +15572,6,25,19,0.0 +15572,4,22,5,0.0 +15572,55,24,5,0.0 +15572,44,19.45,38,0.0 +15572,33,2.5,47,0.0 +15572,11,21,17,0.0 +15572,49,20,8,0.0 +15572,68,12.5,48,0.0 +15572,71,21.5,30,0.0 +15572,12,38,34,0.0 +15572,26,31.23,45,0.0 +15572,50,16.25,48,0.0 +15572,7,30,34,0.0 +15572,51,53,8,0.0 +15572,67,14,24,0.0 +15572,34,14,3,0.0 +15572,47,9.5,23,0.0 +15572,30,25.89,20,0.0 +15572,21,10,26,0.0 +15572,39,18,28,0.0 +15572,60,34,31,0.0 +15572,5,21.35,7,0.0 +15572,58,13.25,5,0.0 +15572,25,14,11,0.0 +15572,45,9.5,29,0.0 +15572,40,18.4,11,0.0 +15572,63,43.9,9,0.0 +15572,28,45.6,35,0.0 +15572,64,33.25,4,0.0 +15572,48,12.75,50,0.0 +15572,75,7.75,50,0.0 +15573,19,9.2,1,0.0 +15573,36,19,5,0.0 +15573,25,14,6,0.0 +15573,64,33.25,10,0.0 +15573,11,21,42,0.0 +15573,47,9.5,41,0.0 +15573,33,2.5,38,0.0 +15573,12,38,50,0.0 +15573,4,22,50,0.0 +15573,57,19.5,33,0.0 +15573,32,32,47,0.0 +15573,30,25.89,32,0.0 +15573,56,38,34,0.0 +15573,75,7.75,44,0.0 +15573,9,97,1,0.0 +15573,10,31,43,0.0 +15573,7,30,6,0.0 +15573,74,10,39,0.0 +15573,40,18.4,32,0.0 +15573,49,20,3,0.0 +15573,44,19.45,31,0.0 +15573,59,55,1,0.0 +15573,28,45.6,12,0.0 +15573,34,14,7,0.0 +15573,50,16.25,22,0.0 +15573,14,23.25,50,0.0 +15573,48,12.75,8,0.0 +15573,29,123.79,32,0.0 +15573,71,21.5,27,0.0 +15573,62,49.3,30,0.0 +15573,21,10,33,0.0 +15573,69,36,4,0.0 +15573,2,19,34,0.0 +15573,43,46,4,0.0 +15573,55,24,17,0.0 +15573,41,9.65,18,0.0 +15573,52,7,23,0.0 +15573,31,12.5,33,0.0 +15573,54,7.45,34,0.0 +15573,20,81,38,0.0 +15573,65,21.05,20,0.0 +15573,22,21,38,0.0 +15573,60,34,26,0.0 +15573,24,4.5,32,0.0 +15573,76,18,38,0.0 +15573,5,21.35,1,0.0 +15573,77,13,38,0.0 +15573,67,14,25,0.0 +15573,6,25,8,0.0 +15573,53,32.8,33,0.0 +15573,70,15,27,0.0 +15573,35,18,2,0.0 +15573,66,17,40,0.0 +15573,73,15,17,0.0 +15573,27,43.9,20,0.0 +15573,61,28.5,8,0.0 +15573,8,40,34,0.0 +15573,46,12,21,0.0 +15573,37,26,35,0.0 +15573,42,14,48,0.0 +15573,3,10,36,0.0 +15573,1,18,4,0.0 +15573,39,18,35,0.0 +15573,63,43.9,21,0.0 +15573,45,9.5,18,0.0 +15573,72,34.8,18,0.0 +15574,1,18,25,0.0 +15574,10,31,41,0.0 +15574,51,53,45,0.0 +15574,56,38,30,0.0 +15574,35,18,48,0.0 +15574,72,34.8,40,0.0 +15574,17,39,16,0.0 +15574,8,40,8,0.0 +15574,29,123.79,22,0.0 +15574,57,19.5,20,0.0 +15574,68,12.5,24,0.0 +15574,50,16.25,27,0.0 +15574,52,7,49,0.0 +15574,39,18,19,0.0 +15574,49,20,10,0.0 +15574,37,26,23,0.0 +15574,58,13.25,20,0.0 +15574,65,21.05,48,0.0 +15574,41,9.65,45,0.0 +15574,71,21.5,10,0.0 +15574,69,36,34,0.0 +15574,30,25.89,22,0.0 +15574,77,13,40,0.0 +15574,66,17,26,0.0 +15574,26,31.23,29,0.0 +15574,20,81,5,0.0 +15574,64,33.25,16,0.0 +15574,34,14,17,0.0 +15574,14,23.25,3,0.0 +15574,44,19.45,5,0.0 +15574,3,10,27,0.0 +15574,47,9.5,27,0.0 +15574,67,14,34,0.0 +15574,40,18.4,12,0.0 +15574,38,263.5,22,0.0 +15574,74,10,1,0.0 +15574,76,18,38,0.0 +15574,55,24,30,0.0 +15574,46,12,20,0.0 +15574,31,12.5,44,0.0 +15574,73,15,16,0.0 +15574,75,7.75,43,0.0 +15574,7,30,32,0.0 +15574,18,62.5,27,0.0 +15574,27,43.9,25,0.0 +15574,13,6,45,0.0 +15574,62,49.3,40,0.0 +15574,21,10,1,0.0 +15574,42,14,28,0.0 +15574,70,15,32,0.0 +15574,33,2.5,41,0.0 +15574,60,34,14,0.0 +15574,25,14,35,0.0 +15574,4,22,13,0.0 +15574,48,12.75,5,0.0 +15574,23,9,29,0.0 +15574,43,46,30,0.0 +15574,19,9.2,30,0.0 +15574,22,21,14,0.0 +15574,32,32,12,0.0 +15574,9,97,27,0.0 +15575,68,12.5,33,0.0 +15575,30,25.89,7,0.0 +15575,60,34,48,0.0 +15575,3,10,41,0.0 +15575,38,263.5,22,0.0 +15575,4,22,49,0.0 +15575,19,9.2,22,0.0 +15575,23,9,7,0.0 +15575,43,46,49,0.0 +15575,50,16.25,23,0.0 +15575,72,34.8,46,0.0 +15575,24,4.5,16,0.0 +15575,74,10,23,0.0 +15575,17,39,26,0.0 +15575,46,12,36,0.0 +15575,59,55,18,0.0 +15575,27,43.9,29,0.0 +15575,51,53,5,0.0 +15575,42,14,10,0.0 +15575,15,15.5,4,0.0 +15575,44,19.45,43,0.0 +15575,76,18,35,0.0 +15575,48,12.75,34,0.0 +15575,77,13,39,0.0 +15575,41,9.65,39,0.0 +15575,54,7.45,21,0.0 +15575,52,7,46,0.0 +15575,6,25,7,0.0 +15575,8,40,13,0.0 +15575,16,17.45,28,0.0 +15575,5,21.35,5,0.0 +15575,10,31,29,0.0 +15575,29,123.79,10,0.0 +15575,56,38,46,0.0 +15575,39,18,19,0.0 +15575,31,12.5,35,0.0 +15575,70,15,35,0.0 +15575,37,26,9,0.0 +15575,45,9.5,7,0.0 +15575,33,2.5,18,0.0 +15575,61,28.5,43,0.0 +15575,67,14,12,0.0 +15575,62,49.3,11,0.0 +15575,63,43.9,43,0.0 +15575,2,19,34,0.0 +15575,65,21.05,16,0.0 +15575,7,30,19,0.0 +15575,40,18.4,4,0.0 +15575,64,33.25,49,0.0 +15575,22,21,16,0.0 +15575,13,6,24,0.0 +15575,71,21.5,10,0.0 +15575,55,24,9,0.0 +15575,66,17,31,0.0 +15575,25,14,48,0.0 +15575,14,23.25,27,0.0 +15575,11,21,46,0.0 +15575,57,19.5,44,0.0 +15575,35,18,22,0.0 +15575,9,97,16,0.0 +15575,58,13.25,39,0.0 +15575,53,32.8,38,0.0 +15575,12,38,38,0.0 +15575,28,45.6,37,0.0 +15575,73,15,11,0.0 +15575,26,31.23,15,0.0 +15575,18,62.5,21,0.0 +15576,77,13,32,0.0 +15576,72,34.8,12,0.0 +15576,9,97,50,0.0 +15576,57,19.5,43,0.0 +15576,2,19,35,0.0 +15576,8,40,28,0.0 +15576,56,38,40,0.0 +15576,47,9.5,18,0.0 +15576,18,62.5,34,0.0 +15576,29,123.79,41,0.0 +15576,34,14,49,0.0 +15576,1,18,50,0.0 +15576,65,21.05,5,0.0 +15576,37,26,32,0.0 +15576,27,43.9,26,0.0 +15576,3,10,12,0.0 +15576,10,31,19,0.0 +15576,64,33.25,12,0.0 +15576,38,263.5,25,0.0 +15576,71,21.5,1,0.0 +15576,75,7.75,21,0.0 +15576,44,19.45,19,0.0 +15576,39,18,14,0.0 +15576,4,22,37,0.0 +15576,74,10,10,0.0 +15576,63,43.9,42,0.0 +15576,17,39,15,0.0 +15576,36,19,48,0.0 +15576,76,18,28,0.0 +15576,31,12.5,43,0.0 +15576,13,6,6,0.0 +15576,22,21,48,0.0 +15576,42,14,25,0.0 +15576,66,17,44,0.0 +15576,26,31.23,18,0.0 +15576,60,34,6,0.0 +15576,20,81,49,0.0 +15576,51,53,23,0.0 +15576,28,45.6,24,0.0 +15576,33,2.5,1,0.0 +15576,55,24,28,0.0 +15576,58,13.25,31,0.0 +15576,12,38,14,0.0 +15576,48,12.75,19,0.0 +15576,6,25,40,0.0 +15576,11,21,45,0.0 +15576,68,12.5,6,0.0 +15576,52,7,20,0.0 +15576,35,18,18,0.0 +15576,45,9.5,48,0.0 +15576,15,15.5,1,0.0 +15577,38,263.5,25,0.0 +15577,54,7.45,19,0.0 +15577,14,23.25,23,0.0 +15577,12,38,22,0.0 +15577,64,33.25,6,0.0 +15577,74,10,3,0.0 +15577,45,9.5,48,0.0 +15577,25,14,21,0.0 +15577,69,36,36,0.0 +15577,68,12.5,44,0.0 +15577,47,9.5,3,0.0 +15577,61,28.5,33,0.0 +15577,42,14,25,0.0 +15577,30,25.89,23,0.0 +15577,17,39,10,0.0 +15577,62,49.3,31,0.0 +15577,67,14,10,0.0 +15577,77,13,25,0.0 +15577,59,55,49,0.0 +15577,51,53,21,0.0 +15577,63,43.9,1,0.0 +15577,23,9,48,0.0 +15577,20,81,49,0.0 +15577,58,13.25,47,0.0 +15577,2,19,23,0.0 +15577,71,21.5,39,0.0 +15577,34,14,25,0.0 +15577,41,9.65,34,0.0 +15577,3,10,35,0.0 +15577,43,46,5,0.0 +15577,49,20,43,0.0 +15577,60,34,10,0.0 +15577,7,30,49,0.0 +15577,11,21,5,0.0 +15577,48,12.75,31,0.0 +15578,20,81,23,0.0 +15578,27,43.9,12,0.0 +15578,25,14,19,0.0 +15578,76,18,49,0.0 +15578,14,23.25,7,0.0 +15578,33,2.5,11,0.0 +15578,41,9.65,5,0.0 +15578,58,13.25,17,0.0 +15578,23,9,19,0.0 +15578,53,32.8,31,0.0 +15578,21,10,25,0.0 +15578,5,21.35,25,0.0 +15578,42,14,49,0.0 +15578,51,53,48,0.0 +15578,67,14,50,0.0 +15578,55,24,44,0.0 +15578,32,32,37,0.0 +15578,45,9.5,49,0.0 +15578,59,55,31,0.0 +15578,28,45.6,50,0.0 +15578,54,7.45,21,0.0 +15578,68,12.5,11,0.0 +15578,69,36,14,0.0 +15578,65,21.05,48,0.0 +15578,37,26,32,0.0 +15578,46,12,4,0.0 +15578,3,10,21,0.0 +15578,26,31.23,50,0.0 +15578,4,22,34,0.0 +15578,74,10,20,0.0 +15578,52,7,20,0.0 +15578,10,31,45,0.0 +15578,43,46,27,0.0 +15578,63,43.9,28,0.0 +15578,70,15,49,0.0 +15578,31,12.5,10,0.0 +15578,29,123.79,10,0.0 +15578,30,25.89,39,0.0 +15578,47,9.5,47,0.0 +15578,71,21.5,27,0.0 +15578,1,18,2,0.0 +15578,73,15,36,0.0 +15578,17,39,15,0.0 +15578,15,15.5,27,0.0 +15578,60,34,33,0.0 +15578,9,97,1,0.0 +15578,40,18.4,27,0.0 +15579,13,6,35,0.0 +15579,34,14,6,0.0 +15579,57,19.5,13,0.0 +15579,47,9.5,43,0.0 +15579,62,49.3,42,0.0 +15579,74,10,43,0.0 +15579,25,14,34,0.0 +15579,52,7,23,0.0 +15579,28,45.6,46,0.0 +15579,61,28.5,2,0.0 +15579,1,18,12,0.0 +15579,49,20,14,0.0 +15579,23,9,10,0.0 +15579,14,23.25,5,0.0 +15579,2,19,34,0.0 +15579,6,25,32,0.0 +15579,68,12.5,12,0.0 +15579,56,38,4,0.0 +15579,11,21,13,0.0 +15579,59,55,15,0.0 +15579,54,7.45,31,0.0 +15579,71,21.5,46,0.0 +15579,10,31,50,0.0 +15579,27,43.9,1,0.0 +15579,8,40,38,0.0 +15579,66,17,49,0.0 +15579,60,34,13,0.0 +15579,19,9.2,49,0.0 +15579,21,10,48,0.0 +15579,58,13.25,19,0.0 +15579,31,12.5,47,0.0 +15579,45,9.5,18,0.0 +15579,36,19,6,0.0 +15579,41,9.65,8,0.0 +15579,35,18,13,0.0 +15579,69,36,24,0.0 +15579,30,25.89,23,0.0 +15579,67,14,14,0.0 +15579,70,15,43,0.0 +15579,20,81,8,0.0 +15579,38,263.5,37,0.0 +15579,64,33.25,47,0.0 +15579,3,10,31,0.0 +15579,50,16.25,24,0.0 +15580,56,38,20,0.0 +15580,67,14,41,0.0 +15580,47,9.5,35,0.0 +15580,9,97,4,0.0 +15580,64,33.25,29,0.0 +15580,71,21.5,14,0.0 +15580,7,30,2,0.0 +15580,27,43.9,41,0.0 +15580,61,28.5,9,0.0 +15580,45,9.5,4,0.0 +15580,13,6,8,0.0 +15580,22,21,3,0.0 +15580,73,15,33,0.0 +15580,23,9,44,0.0 +15580,17,39,49,0.0 +15580,36,19,28,0.0 +15580,43,46,39,0.0 +15580,52,7,32,0.0 +15580,28,45.6,1,0.0 +15580,26,31.23,44,0.0 +15580,46,12,30,0.0 +15580,66,17,10,0.0 +15580,39,18,24,0.0 +15580,69,36,36,0.0 +15580,10,31,27,0.0 +15580,21,10,41,0.0 +15580,11,21,10,0.0 +15580,1,18,21,0.0 +15580,38,263.5,26,0.0 +15580,31,12.5,50,0.0 +15580,59,55,39,0.0 +15580,30,25.89,9,0.0 +15580,49,20,45,0.0 +15580,33,2.5,16,0.0 +15580,12,38,17,0.0 +15580,62,49.3,31,0.0 +15580,24,4.5,31,0.0 +15580,20,81,8,0.0 +15580,72,34.8,38,0.0 +15580,19,9.2,30,0.0 +15580,54,7.45,7,0.0 +15580,44,19.45,44,0.0 +15580,41,9.65,36,0.0 +15580,37,26,42,0.0 +15580,63,43.9,44,0.0 +15580,57,19.5,23,0.0 +15580,8,40,7,0.0 +15580,18,62.5,37,0.0 +15580,74,10,22,0.0 +15580,60,34,22,0.0 +15580,70,15,22,0.0 +15580,65,21.05,21,0.0 +15580,3,10,42,0.0 +15580,32,32,7,0.0 +15580,50,16.25,14,0.0 +15581,13,6,18,0.0 +15581,58,13.25,26,0.0 +15581,66,17,43,0.0 +15581,63,43.9,39,0.0 +15581,61,28.5,26,0.0 +15581,57,19.5,20,0.0 +15581,67,14,16,0.0 +15581,7,30,22,0.0 +15581,77,13,35,0.0 +15581,76,18,21,0.0 +15581,5,21.35,40,0.0 +15581,11,21,26,0.0 +15581,21,10,37,0.0 +15582,52,7,14,0.0 +15582,70,15,5,0.0 +15582,28,45.6,32,0.0 +15582,33,2.5,31,0.0 +15582,45,9.5,32,0.0 +15582,6,25,31,0.0 +15582,1,18,6,0.0 +15582,62,49.3,2,0.0 +15582,61,28.5,48,0.0 +15582,73,15,43,0.0 +15582,75,7.75,31,0.0 +15582,54,7.45,6,0.0 +15582,39,18,30,0.0 +15582,17,39,49,0.0 +15582,29,123.79,15,0.0 +15582,41,9.65,34,0.0 +15582,50,16.25,15,0.0 +15582,15,15.5,25,0.0 +15582,18,62.5,20,0.0 +15582,59,55,38,0.0 +15582,74,10,36,0.0 +15582,77,13,33,0.0 +15582,67,14,8,0.0 +15582,24,4.5,28,0.0 +15582,49,20,39,0.0 +15582,46,12,3,0.0 +15582,44,19.45,20,0.0 +15582,36,19,19,0.0 +15582,10,31,48,0.0 +15582,25,14,24,0.0 +15582,65,21.05,17,0.0 +15582,47,9.5,36,0.0 +15582,40,18.4,49,0.0 +15582,72,34.8,12,0.0 +15582,32,32,45,0.0 +15582,2,19,36,0.0 +15583,65,21.05,31,0.0 +15583,34,14,16,0.0 +15583,50,16.25,9,0.0 +15583,8,40,2,0.0 +15583,18,62.5,1,0.0 +15583,21,10,44,0.0 +15583,70,15,40,0.0 +15583,24,4.5,43,0.0 +15583,62,49.3,45,0.0 +15583,30,25.89,43,0.0 +15583,11,21,29,0.0 +15583,49,20,37,0.0 +15583,42,14,13,0.0 +15583,9,97,9,0.0 +15583,19,9.2,4,0.0 +15583,1,18,4,0.0 +15583,75,7.75,38,0.0 +15583,53,32.8,47,0.0 +15583,22,21,7,0.0 +15583,27,43.9,44,0.0 +15583,17,39,22,0.0 +15583,35,18,39,0.0 +15583,4,22,44,0.0 +15583,76,18,7,0.0 +15583,61,28.5,35,0.0 +15583,16,17.45,15,0.0 +15583,10,31,44,0.0 +15583,14,23.25,40,0.0 +15583,73,15,24,0.0 +15583,39,18,42,0.0 +15583,28,45.6,5,0.0 +15583,59,55,15,0.0 +15583,3,10,4,0.0 +15583,2,19,24,0.0 +15583,23,9,49,0.0 +15583,54,7.45,34,0.0 +15583,5,21.35,40,0.0 +15583,72,34.8,36,0.0 +15583,58,13.25,19,0.0 +15583,67,14,19,0.0 +15583,55,24,19,0.0 +15583,57,19.5,22,0.0 +15583,15,15.5,26,0.0 +15583,25,14,44,0.0 +15583,48,12.75,34,0.0 +15583,7,30,28,0.0 +15583,56,38,45,0.0 +15583,44,19.45,10,0.0 +15583,31,12.5,14,0.0 +15583,66,17,8,0.0 +15583,51,53,26,0.0 +15583,40,18.4,3,0.0 +15583,46,12,15,0.0 +15583,71,21.5,34,0.0 +15583,38,263.5,48,0.0 +15583,20,81,48,0.0 +15583,52,7,29,0.0 +15583,29,123.79,42,0.0 +15583,63,43.9,43,0.0 +15583,43,46,27,0.0 +15583,68,12.5,13,0.0 +15583,12,38,16,0.0 +15583,77,13,50,0.0 +15583,74,10,27,0.0 +15583,36,19,19,0.0 +15583,33,2.5,15,0.0 +15583,41,9.65,21,0.0 +15583,47,9.5,23,0.0 +15583,64,33.25,18,0.0 +15583,32,32,4,0.0 +15583,26,31.23,9,0.0 +15584,67,14,30,0.0 +15584,50,16.25,23,0.0 +15584,45,9.5,12,0.0 +15584,2,19,29,0.0 +15584,48,12.75,27,0.0 +15584,77,13,42,0.0 +15584,57,19.5,39,0.0 +15584,21,10,14,0.0 +15584,65,21.05,41,0.0 +15584,52,7,2,0.0 +15584,40,18.4,25,0.0 +15584,25,14,49,0.0 +15584,15,15.5,49,0.0 +15584,27,43.9,43,0.0 +15584,5,21.35,47,0.0 +15584,7,30,18,0.0 +15584,54,7.45,29,0.0 +15584,74,10,26,0.0 +15584,46,12,44,0.0 +15584,43,46,39,0.0 +15584,66,17,11,0.0 +15584,75,7.75,41,0.0 +15584,4,22,33,0.0 +15584,39,18,42,0.0 +15584,62,49.3,31,0.0 +15584,71,21.5,45,0.0 +15584,19,9.2,14,0.0 +15584,3,10,16,0.0 +15584,34,14,47,0.0 +15584,17,39,37,0.0 +15584,58,13.25,15,0.0 +15584,73,15,34,0.0 +15584,69,36,25,0.0 +15584,23,9,22,0.0 +15584,30,25.89,26,0.0 +15584,33,2.5,43,0.0 +15584,6,25,36,0.0 +15584,31,12.5,32,0.0 +15584,49,20,26,0.0 +15584,9,97,42,0.0 +15584,35,18,32,0.0 +15584,37,26,9,0.0 +15584,68,12.5,48,0.0 +15584,41,9.65,1,0.0 +15584,53,32.8,27,0.0 +15584,32,32,44,0.0 +15584,26,31.23,37,0.0 +15584,8,40,33,0.0 +15584,29,123.79,14,0.0 +15584,10,31,1,0.0 +15584,61,28.5,25,0.0 +15584,51,53,14,0.0 +15584,70,15,31,0.0 +15584,28,45.6,33,0.0 +15584,56,38,13,0.0 +15584,64,33.25,33,0.0 +15584,42,14,40,0.0 +15585,41,9.65,34,0.0 +15585,63,43.9,41,0.0 +15585,48,12.75,9,0.0 +15585,68,12.5,13,0.0 +15585,6,25,4,0.0 +15585,61,28.5,34,0.0 +15585,67,14,33,0.0 +15585,1,18,9,0.0 +15585,60,34,13,0.0 +15585,21,10,26,0.0 +15585,14,23.25,23,0.0 +15585,55,24,29,0.0 +15585,33,2.5,17,0.0 +15586,76,18,33,0.0 +15586,69,36,11,0.0 +15586,72,34.8,5,0.0 +15586,21,10,46,0.0 +15586,25,14,13,0.0 +15586,19,9.2,39,0.0 +15587,47,9.5,3,0.0 +15587,15,15.5,7,0.0 +15587,12,38,31,0.0 +15587,66,17,38,0.0 +15587,7,30,45,0.0 +15587,52,7,30,0.0 +15587,32,32,39,0.0 +15587,65,21.05,48,0.0 +15587,37,26,20,0.0 +15587,5,21.35,40,0.0 +15587,38,263.5,22,0.0 +15587,63,43.9,5,0.0 +15587,33,2.5,4,0.0 +15587,59,55,17,0.0 +15587,2,19,14,0.0 +15587,60,34,39,0.0 +15587,26,31.23,4,0.0 +15587,57,19.5,12,0.0 +15587,30,25.89,33,0.0 +15587,24,4.5,9,0.0 +15587,53,32.8,8,0.0 +15587,58,13.25,49,0.0 +15587,77,13,1,0.0 +15587,48,12.75,30,0.0 +15587,75,7.75,44,0.0 +15587,14,23.25,10,0.0 +15587,39,18,17,0.0 +15587,34,14,18,0.0 +15587,69,36,46,0.0 +15587,1,18,10,0.0 +15587,55,24,37,0.0 +15587,9,97,1,0.0 +15587,27,43.9,49,0.0 +15587,6,25,10,0.0 +15587,72,34.8,18,0.0 +15587,74,10,41,0.0 +15587,64,33.25,48,0.0 +15587,62,49.3,50,0.0 +15587,43,46,14,0.0 +15587,22,21,41,0.0 +15588,2,19,43,0.0 +15588,76,18,38,0.0 +15588,30,25.89,5,0.0 +15588,32,32,18,0.0 +15588,29,123.79,30,0.0 +15588,35,18,33,0.0 +15588,37,26,16,0.0 +15588,33,2.5,2,0.0 +15588,58,13.25,22,0.0 +15588,27,43.9,36,0.0 +15588,72,34.8,14,0.0 +15588,16,17.45,9,0.0 +15588,67,14,3,0.0 +15588,18,62.5,8,0.0 +15588,22,21,26,0.0 +15588,21,10,3,0.0 +15588,44,19.45,27,0.0 +15588,51,53,1,0.0 +15588,63,43.9,22,0.0 +15588,73,15,42,0.0 +15588,3,10,13,0.0 +15588,45,9.5,11,0.0 +15588,46,12,3,0.0 +15588,8,40,17,0.0 +15588,65,21.05,20,0.0 +15588,13,6,1,0.0 +15588,23,9,35,0.0 +15588,11,21,12,0.0 +15589,67,14,35,0.0 +15589,69,36,11,0.0 +15589,48,12.75,29,0.0 +15589,71,21.5,21,0.0 +15589,57,19.5,1,0.0 +15589,61,28.5,14,0.0 +15589,8,40,14,0.0 +15589,37,26,49,0.0 +15589,52,7,25,0.0 +15589,12,38,8,0.0 +15589,10,31,37,0.0 +15589,50,16.25,34,0.0 +15589,33,2.5,27,0.0 +15589,43,46,50,0.0 +15589,45,9.5,48,0.0 +15589,13,6,30,0.0 +15589,9,97,49,0.0 +15589,38,263.5,23,0.0 +15589,59,55,15,0.0 +15589,74,10,21,0.0 +15589,6,25,3,0.0 +15589,19,9.2,24,0.0 +15589,32,32,34,0.0 +15589,34,14,27,0.0 +15589,16,17.45,37,0.0 +15589,72,34.8,37,0.0 +15589,15,15.5,34,0.0 +15589,40,18.4,16,0.0 +15589,7,30,19,0.0 +15589,1,18,40,0.0 +15589,3,10,31,0.0 +15589,41,9.65,45,0.0 +15589,31,12.5,36,0.0 +15589,49,20,28,0.0 +15589,20,81,48,0.0 +15589,25,14,12,0.0 +15589,65,21.05,23,0.0 +15589,68,12.5,38,0.0 +15590,14,23.25,41,0.0 +15590,19,9.2,8,0.0 +15590,58,13.25,25,0.0 +15590,27,43.9,10,0.0 +15590,17,39,43,0.0 +15590,63,43.9,12,0.0 +15590,32,32,10,0.0 +15590,50,16.25,23,0.0 +15590,1,18,30,0.0 +15590,5,21.35,38,0.0 +15590,3,10,29,0.0 +15590,23,9,11,0.0 +15590,37,26,13,0.0 +15590,55,24,25,0.0 +15590,21,10,12,0.0 +15590,41,9.65,37,0.0 +15590,43,46,23,0.0 +15590,8,40,5,0.0 +15590,73,15,43,0.0 +15590,2,19,36,0.0 +15590,49,20,3,0.0 +15591,6,25,28,0.0 +15591,42,14,20,0.0 +15591,59,55,21,0.0 +15591,51,53,21,0.0 +15591,65,21.05,21,0.0 +15591,54,7.45,3,0.0 +15591,52,7,40,0.0 +15591,60,34,29,0.0 +15591,47,9.5,12,0.0 +15591,30,25.89,20,0.0 +15591,1,18,33,0.0 +15591,73,15,19,0.0 +15591,10,31,12,0.0 +15591,76,18,36,0.0 +15591,71,21.5,18,0.0 +15591,19,9.2,10,0.0 +15591,36,19,29,0.0 +15591,15,15.5,43,0.0 +15591,16,17.45,3,0.0 +15591,46,12,4,0.0 +15591,55,24,42,0.0 +15592,17,39,7,0.0 +15592,37,26,33,0.0 +15592,1,18,43,0.0 +15592,34,14,23,0.0 +15592,39,18,3,0.0 +15592,61,28.5,5,0.0 +15592,71,21.5,36,0.0 +15593,68,12.5,41,0.0 +15593,15,15.5,31,0.0 +15593,39,18,48,0.0 +15593,38,263.5,6,0.0 +15593,53,32.8,15,0.0 +15593,4,22,47,0.0 +15593,59,55,32,0.0 +15593,13,6,48,0.0 +15593,66,17,49,0.0 +15593,60,34,28,0.0 +15593,31,12.5,26,0.0 +15593,42,14,25,0.0 +15593,28,45.6,25,0.0 +15593,26,31.23,6,0.0 +15593,40,18.4,11,0.0 +15593,49,20,22,0.0 +15593,33,2.5,6,0.0 +15593,7,30,4,0.0 +15593,9,97,17,0.0 +15593,77,13,45,0.0 +15593,74,10,4,0.0 +15593,29,123.79,30,0.0 +15593,41,9.65,27,0.0 +15593,63,43.9,49,0.0 +15593,72,34.8,21,0.0 +15593,47,9.5,30,0.0 +15593,70,15,46,0.0 +15593,51,53,30,0.0 +15593,46,12,17,0.0 +15593,35,18,8,0.0 +15593,36,19,37,0.0 +15593,34,14,3,0.0 +15593,37,26,45,0.0 +15593,32,32,35,0.0 +15593,50,16.25,49,0.0 +15593,27,43.9,20,0.0 +15593,5,21.35,9,0.0 +15593,22,21,34,0.0 +15594,25,14,30,0.0 +15594,50,16.25,6,0.0 +15594,20,81,1,0.0 +15594,19,9.2,3,0.0 +15594,46,12,16,0.0 +15594,6,25,24,0.0 +15594,73,15,13,0.0 +15594,10,31,21,0.0 +15594,17,39,42,0.0 +15594,63,43.9,17,0.0 +15594,47,9.5,48,0.0 +15594,52,7,9,0.0 +15594,53,32.8,30,0.0 +15594,44,19.45,11,0.0 +15594,56,38,48,0.0 +15594,16,17.45,41,0.0 +15594,39,18,26,0.0 +15594,24,4.5,3,0.0 +15594,45,9.5,20,0.0 +15594,32,32,8,0.0 +15594,35,18,26,0.0 +15594,59,55,26,0.0 +15594,15,15.5,46,0.0 +15594,61,28.5,44,0.0 +15594,1,18,23,0.0 +15594,29,123.79,12,0.0 +15594,36,19,36,0.0 +15594,27,43.9,34,0.0 +15594,66,17,47,0.0 +15594,37,26,17,0.0 +15594,23,9,43,0.0 +15594,18,62.5,12,0.0 +15594,57,19.5,44,0.0 +15594,49,20,46,0.0 +15594,58,13.25,37,0.0 +15594,55,24,6,0.0 +15594,65,21.05,35,0.0 +15594,54,7.45,29,0.0 +15594,30,25.89,20,0.0 +15594,28,45.6,30,0.0 +15594,76,18,42,0.0 +15594,62,49.3,26,0.0 +15594,33,2.5,1,0.0 +15594,67,14,37,0.0 +15594,48,12.75,29,0.0 +15594,74,10,11,0.0 +15594,51,53,14,0.0 +15594,11,21,29,0.0 +15594,8,40,19,0.0 +15594,75,7.75,38,0.0 +15594,42,14,17,0.0 +15594,40,18.4,2,0.0 +15594,31,12.5,1,0.0 +15594,4,22,31,0.0 +15594,14,23.25,13,0.0 +15594,70,15,23,0.0 +15594,77,13,12,0.0 +15594,43,46,4,0.0 +15594,9,97,20,0.0 +15594,2,19,38,0.0 +15594,72,34.8,39,0.0 +15594,21,10,42,0.0 +15594,3,10,2,0.0 +15594,13,6,28,0.0 +15594,68,12.5,35,0.0 +15594,38,263.5,14,0.0 +15594,12,38,35,0.0 +15594,26,31.23,6,0.0 +15594,60,34,7,0.0 +15594,64,33.25,21,0.0 +15594,5,21.35,29,0.0 +15594,7,30,6,0.0 +15594,69,36,36,0.0 +15594,34,14,27,0.0 +15594,41,9.65,36,0.0 +15594,22,21,32,0.0 +15595,41,9.65,25,0.0 +15595,17,39,37,0.0 +15595,7,30,36,0.0 +15595,61,28.5,48,0.0 +15595,24,4.5,37,0.0 +15595,36,19,41,0.0 +15595,26,31.23,18,0.0 +15595,55,24,48,0.0 +15595,40,18.4,44,0.0 +15595,50,16.25,47,0.0 +15595,53,32.8,17,0.0 +15595,56,38,19,0.0 +15595,73,15,25,0.0 +15595,5,21.35,16,0.0 +15595,38,263.5,32,0.0 +15595,27,43.9,48,0.0 +15595,23,9,7,0.0 +15595,8,40,32,0.0 +15595,43,46,46,0.0 +15595,29,123.79,37,0.0 +15596,11,21,50,0.0 +15596,22,21,8,0.0 +15596,17,39,46,0.0 +15596,74,10,42,0.0 +15596,4,22,13,0.0 +15596,37,26,44,0.0 +15596,72,34.8,31,0.0 +15596,43,46,4,0.0 +15596,30,25.89,29,0.0 +15596,18,62.5,39,0.0 +15596,59,55,27,0.0 +15596,32,32,37,0.0 +15596,14,23.25,35,0.0 +15596,19,9.2,29,0.0 +15596,23,9,29,0.0 +15596,69,36,21,0.0 +15596,24,4.5,31,0.0 +15596,60,34,5,0.0 +15596,52,7,30,0.0 +15596,20,81,28,0.0 +15596,42,14,36,0.0 +15596,56,38,12,0.0 +15596,73,15,10,0.0 +15596,41,9.65,21,0.0 +15596,10,31,46,0.0 +15596,61,28.5,17,0.0 +15596,49,20,31,0.0 +15596,58,13.25,44,0.0 +15596,36,19,22,0.0 +15596,63,43.9,3,0.0 +15596,76,18,20,0.0 +15596,27,43.9,41,0.0 +15596,54,7.45,25,0.0 +15596,5,21.35,30,0.0 +15596,51,53,6,0.0 +15596,71,21.5,19,0.0 +15596,48,12.75,38,0.0 +15596,55,24,16,0.0 +15596,1,18,34,0.0 +15596,8,40,28,0.0 +15596,31,12.5,4,0.0 +15596,6,25,28,0.0 +15596,47,9.5,17,0.0 +15596,45,9.5,22,0.0 +15596,15,15.5,15,0.0 +15596,67,14,24,0.0 +15596,77,13,20,0.0 +15596,29,123.79,34,0.0 +15596,21,10,11,0.0 +15596,70,15,48,0.0 +15596,12,38,21,0.0 +15596,65,21.05,37,0.0 +15596,35,18,41,0.0 +15596,7,30,5,0.0 +15596,50,16.25,32,0.0 +15596,34,14,37,0.0 +15596,33,2.5,24,0.0 +15596,3,10,33,0.0 +15596,38,263.5,21,0.0 +15596,13,6,6,0.0 +15596,53,32.8,37,0.0 +15596,75,7.75,29,0.0 +15596,66,17,9,0.0 +15596,68,12.5,15,0.0 +15596,40,18.4,37,0.0 +15596,26,31.23,15,0.0 +15596,64,33.25,3,0.0 +15596,9,97,49,0.0 +15596,2,19,16,0.0 +15596,57,19.5,26,0.0 +15596,46,12,41,0.0 +15596,25,14,12,0.0 +15596,62,49.3,9,0.0 +15596,28,45.6,22,0.0 +15596,39,18,21,0.0 +15596,44,19.45,16,0.0 +15597,67,14,9,0.0 +15597,53,32.8,4,0.0 +15597,49,20,32,0.0 +15597,40,18.4,16,0.0 +15597,56,38,49,0.0 +15597,58,13.25,36,0.0 +15597,39,18,16,0.0 +15597,37,26,8,0.0 +15597,45,9.5,34,0.0 +15597,63,43.9,30,0.0 +15597,16,17.45,26,0.0 +15597,4,22,3,0.0 +15597,22,21,7,0.0 +15597,33,2.5,49,0.0 +15597,5,21.35,25,0.0 +15597,44,19.45,50,0.0 +15597,11,21,20,0.0 +15597,73,15,3,0.0 +15597,14,23.25,40,0.0 +15597,19,9.2,38,0.0 +15597,23,9,38,0.0 +15597,60,34,9,0.0 +15597,65,21.05,6,0.0 +15597,55,24,41,0.0 +15597,47,9.5,47,0.0 +15597,70,15,31,0.0 +15597,36,19,12,0.0 +15597,46,12,12,0.0 +15597,35,18,21,0.0 +15597,15,15.5,2,0.0 +15597,54,7.45,30,0.0 +15597,6,25,47,0.0 +15597,1,18,43,0.0 +15597,68,12.5,42,0.0 +15597,32,32,50,0.0 +15597,64,33.25,30,0.0 +15597,74,10,23,0.0 +15597,43,46,14,0.0 +15597,7,30,49,0.0 +15597,30,25.89,42,0.0 +15597,41,9.65,11,0.0 +15597,77,13,44,0.0 +15597,21,10,42,0.0 +15597,13,6,33,0.0 +15597,66,17,47,0.0 +15597,52,7,20,0.0 +15597,24,4.5,18,0.0 +15597,18,62.5,37,0.0 +15597,75,7.75,18,0.0 +15597,76,18,40,0.0 +15597,69,36,3,0.0 +15598,20,81,15,0.0 +15598,77,13,11,0.0 +15598,47,9.5,42,0.0 +15598,69,36,34,0.0 +15598,7,30,9,0.0 +15598,23,9,12,0.0 +15598,58,13.25,14,0.0 +15598,76,18,38,0.0 +15598,24,4.5,43,0.0 +15598,50,16.25,35,0.0 +15598,37,26,21,0.0 +15598,29,123.79,21,0.0 +15598,17,39,1,0.0 +15598,48,12.75,34,0.0 +15598,5,21.35,49,0.0 +15598,3,10,32,0.0 +15598,67,14,43,0.0 +15598,10,31,8,0.0 +15598,60,34,12,0.0 +15598,21,10,18,0.0 +15598,28,45.6,13,0.0 +15598,73,15,11,0.0 +15599,40,18.4,47,0.0 +15599,28,45.6,44,0.0 +15599,8,40,14,0.0 +15599,33,2.5,24,0.0 +15599,26,31.23,18,0.0 +15599,38,263.5,18,0.0 +15599,70,15,19,0.0 +15599,16,17.45,43,0.0 +15599,23,9,44,0.0 +15599,10,31,25,0.0 +15599,41,9.65,5,0.0 +15599,13,6,11,0.0 +15599,69,36,21,0.0 +15599,71,21.5,36,0.0 +15599,42,14,2,0.0 +15599,11,21,29,0.0 +15599,43,46,14,0.0 +15599,65,21.05,33,0.0 +15599,19,9.2,17,0.0 +15599,59,55,49,0.0 +15599,64,33.25,20,0.0 +15599,5,21.35,15,0.0 +15599,21,10,32,0.0 +15599,22,21,11,0.0 +15599,12,38,11,0.0 +15599,74,10,40,0.0 +15599,35,18,24,0.0 +15599,72,34.8,42,0.0 +15599,27,43.9,35,0.0 +15599,51,53,16,0.0 +15599,53,32.8,41,0.0 +15599,75,7.75,17,0.0 +15599,47,9.5,33,0.0 +15599,61,28.5,16,0.0 +15599,63,43.9,32,0.0 +15599,18,62.5,48,0.0 +15599,66,17,2,0.0 +15599,46,12,33,0.0 +15599,44,19.45,10,0.0 +15599,57,19.5,25,0.0 +15599,29,123.79,6,0.0 +15599,32,32,12,0.0 +15599,37,26,43,0.0 +15599,17,39,11,0.0 +15599,7,30,37,0.0 +15599,24,4.5,19,0.0 +15599,34,14,4,0.0 +15599,36,19,10,0.0 +15599,62,49.3,20,0.0 +15599,39,18,10,0.0 +15599,54,7.45,25,0.0 +15599,73,15,31,0.0 +15599,68,12.5,42,0.0 +15599,4,22,41,0.0 +15599,14,23.25,37,0.0 +15600,7,30,13,0.0 +15600,26,31.23,29,0.0 +15600,77,13,12,0.0 +15600,76,18,30,0.0 +15600,21,10,37,0.0 +15600,48,12.75,41,0.0 +15600,35,18,23,0.0 +15600,4,22,50,0.0 +15600,73,15,39,0.0 +15600,67,14,14,0.0 +15600,29,123.79,28,0.0 +15600,69,36,16,0.0 +15600,64,33.25,33,0.0 +15600,51,53,28,0.0 +15600,1,18,47,0.0 +15600,13,6,7,0.0 +15600,17,39,42,0.0 +15600,63,43.9,43,0.0 +15600,38,263.5,25,0.0 +15600,49,20,48,0.0 +15600,28,45.6,50,0.0 +15600,2,19,8,0.0 +15600,42,14,28,0.0 +15600,43,46,25,0.0 +15600,52,7,2,0.0 +15600,41,9.65,35,0.0 +15600,18,62.5,17,0.0 +15600,60,34,38,0.0 +15600,71,21.5,46,0.0 +15600,33,2.5,42,0.0 +15600,20,81,32,0.0 +15600,15,15.5,47,0.0 +15600,8,40,14,0.0 +15600,57,19.5,20,0.0 +15601,65,21.05,39,0.0 +15601,27,43.9,40,0.0 +15601,45,9.5,4,0.0 +15601,10,31,49,0.0 +15601,34,14,15,0.0 +15601,71,21.5,22,0.0 +15601,23,9,32,0.0 +15601,77,13,47,0.0 +15601,16,17.45,2,0.0 +15601,40,18.4,25,0.0 +15601,44,19.45,23,0.0 +15601,62,49.3,36,0.0 +15601,68,12.5,23,0.0 +15601,21,10,40,0.0 +15601,7,30,17,0.0 +15601,72,34.8,10,0.0 +15601,15,15.5,49,0.0 +15601,36,19,31,0.0 +15601,38,263.5,43,0.0 +15601,74,10,25,0.0 +15601,70,15,29,0.0 +15601,64,33.25,11,0.0 +15601,28,45.6,24,0.0 +15601,29,123.79,16,0.0 +15601,14,23.25,12,0.0 +15601,9,97,16,0.0 +15601,5,21.35,38,0.0 +15601,8,40,25,0.0 +15601,39,18,41,0.0 +15601,58,13.25,12,0.0 +15601,22,21,48,0.0 +15601,47,9.5,18,0.0 +15601,43,46,34,0.0 +15601,61,28.5,47,0.0 +15601,53,32.8,34,0.0 +15601,11,21,43,0.0 +15601,12,38,14,0.0 +15601,30,25.89,42,0.0 +15601,35,18,21,0.0 +15601,66,17,47,0.0 +15601,33,2.5,17,0.0 +15601,31,12.5,24,0.0 +15601,60,34,1,0.0 +15601,17,39,15,0.0 +15601,26,31.23,33,0.0 +15601,37,26,48,0.0 +15601,63,43.9,26,0.0 +15601,52,7,40,0.0 +15601,56,38,6,0.0 +15601,51,53,16,0.0 +15601,20,81,6,0.0 +15601,59,55,37,0.0 +15601,6,25,32,0.0 +15601,57,19.5,35,0.0 +15601,67,14,41,0.0 +15601,4,22,23,0.0 +15601,75,7.75,46,0.0 +15601,41,9.65,38,0.0 +15601,55,24,20,0.0 +15601,46,12,44,0.0 +15601,1,18,48,0.0 +15601,13,6,1,0.0 +15601,24,4.5,29,0.0 +15601,42,14,36,0.0 +15601,54,7.45,16,0.0 +15601,69,36,22,0.0 +15602,16,17.45,2,0.0 +15602,47,9.5,44,0.0 +15602,40,18.4,25,0.0 +15602,32,32,17,0.0 +15602,17,39,16,0.0 +15602,19,9.2,7,0.0 +15602,48,12.75,29,0.0 +15602,21,10,25,0.0 +15602,36,19,45,0.0 +15602,65,21.05,39,0.0 +15602,73,15,20,0.0 +15602,18,62.5,3,0.0 +15602,37,26,31,0.0 +15602,68,12.5,29,0.0 +15602,1,18,27,0.0 +15602,72,34.8,38,0.0 +15602,5,21.35,6,0.0 +15602,69,36,8,0.0 +15602,67,14,9,0.0 +15602,24,4.5,13,0.0 +15602,54,7.45,48,0.0 +15602,52,7,46,0.0 +15602,53,32.8,31,0.0 +15602,34,14,42,0.0 +15602,27,43.9,10,0.0 +15602,50,16.25,35,0.0 +15602,7,30,42,0.0 +15602,25,14,3,0.0 +15602,13,6,21,0.0 +15602,63,43.9,24,0.0 +15602,70,15,3,0.0 +15602,10,31,12,0.0 +15602,26,31.23,12,0.0 +15602,23,9,38,0.0 +15602,43,46,17,0.0 +15602,56,38,13,0.0 +15602,59,55,39,0.0 +15602,51,53,38,0.0 +15602,64,33.25,17,0.0 +15602,76,18,22,0.0 +15602,31,12.5,27,0.0 +15602,22,21,12,0.0 +15602,38,263.5,42,0.0 +15602,41,9.65,24,0.0 +15602,4,22,30,0.0 +15602,33,2.5,25,0.0 +15602,35,18,44,0.0 +15602,6,25,22,0.0 +15602,9,97,16,0.0 +15602,2,19,42,0.0 +15602,11,21,18,0.0 +15602,20,81,47,0.0 +15602,77,13,39,0.0 +15602,71,21.5,32,0.0 +15602,30,25.89,36,0.0 +15602,45,9.5,22,0.0 +15602,57,19.5,17,0.0 +15602,74,10,28,0.0 +15602,39,18,49,0.0 +15602,44,19.45,20,0.0 +15603,50,16.25,10,0.0 +15603,71,21.5,44,0.0 +15603,7,30,29,0.0 +15603,54,7.45,39,0.0 +15603,3,10,41,0.0 +15603,63,43.9,32,0.0 +15603,59,55,23,0.0 +15603,12,38,30,0.0 +15603,47,9.5,20,0.0 +15603,72,34.8,50,0.0 +15603,17,39,49,0.0 +15603,76,18,37,0.0 +15603,31,12.5,43,0.0 +15603,32,32,8,0.0 +15603,34,14,8,0.0 +15603,24,4.5,21,0.0 +15603,55,24,13,0.0 +15603,60,34,29,0.0 +15603,13,6,50,0.0 +15603,15,15.5,21,0.0 +15603,19,9.2,12,0.0 +15603,14,23.25,21,0.0 +15603,40,18.4,32,0.0 +15603,36,19,40,0.0 +15603,58,13.25,25,0.0 +15603,53,32.8,43,0.0 +15603,65,21.05,3,0.0 +15603,38,263.5,36,0.0 +15603,75,7.75,50,0.0 +15603,16,17.45,23,0.0 +15603,45,9.5,42,0.0 +15603,46,12,13,0.0 +15603,39,18,41,0.0 +15603,10,31,41,0.0 +15603,67,14,16,0.0 +15603,66,17,14,0.0 +15603,1,18,2,0.0 +15603,2,19,37,0.0 +15603,8,40,47,0.0 +15603,11,21,24,0.0 +15603,28,45.6,41,0.0 +15603,23,9,41,0.0 +15603,21,10,45,0.0 +15603,64,33.25,19,0.0 +15603,57,19.5,41,0.0 +15603,6,25,28,0.0 +15603,25,14,34,0.0 +15603,61,28.5,28,0.0 +15603,5,21.35,11,0.0 +15603,27,43.9,47,0.0 +15603,43,46,38,0.0 +15603,4,22,3,0.0 +15603,73,15,24,0.0 +15603,37,26,31,0.0 +15603,52,7,5,0.0 +15603,51,53,37,0.0 +15603,42,14,29,0.0 +15603,35,18,25,0.0 +15603,48,12.75,24,0.0 +15603,70,15,33,0.0 +15603,22,21,16,0.0 +15603,9,97,26,0.0 +15603,29,123.79,36,0.0 +15603,44,19.45,38,0.0 +15603,49,20,29,0.0 +15604,12,38,43,0.0 +15604,21,10,37,0.0 +15604,6,25,13,0.0 +15604,15,15.5,14,0.0 +15604,30,25.89,13,0.0 +15604,7,30,24,0.0 +15604,71,21.5,38,0.0 +15604,70,15,23,0.0 +15604,55,24,8,0.0 +15604,19,9.2,36,0.0 +15604,56,38,18,0.0 +15604,41,9.65,6,0.0 +15604,10,31,23,0.0 +15604,54,7.45,31,0.0 +15604,69,36,15,0.0 +15604,59,55,48,0.0 +15604,2,19,44,0.0 +15604,68,12.5,16,0.0 +15604,57,19.5,36,0.0 +15604,25,14,27,0.0 +15604,4,22,49,0.0 +15604,1,18,2,0.0 +15604,46,12,14,0.0 +15604,43,46,13,0.0 +15604,17,39,14,0.0 +15604,66,17,34,0.0 +15604,26,31.23,5,0.0 +15604,44,19.45,46,0.0 +15604,76,18,44,0.0 +15604,51,53,47,0.0 +15604,5,21.35,50,0.0 +15604,53,32.8,43,0.0 +15604,49,20,19,0.0 +15604,29,123.79,7,0.0 +15604,34,14,14,0.0 +15604,3,10,15,0.0 +15604,42,14,4,0.0 +15604,24,4.5,45,0.0 +15604,9,97,12,0.0 +15604,18,62.5,31,0.0 +15604,20,81,21,0.0 +15604,74,10,12,0.0 +15604,11,21,46,0.0 +15604,39,18,45,0.0 +15604,36,19,9,0.0 +15604,27,43.9,27,0.0 +15604,48,12.75,1,0.0 +15604,62,49.3,12,0.0 +15604,45,9.5,27,0.0 +15604,16,17.45,27,0.0 +15605,19,9.2,19,0.0 +15605,30,25.89,40,0.0 +15605,4,22,6,0.0 +15605,69,36,37,0.0 +15605,47,9.5,27,0.0 +15605,9,97,12,0.0 +15605,46,12,47,0.0 +15606,60,34,29,0.0 +15606,10,31,20,0.0 +15606,21,10,11,0.0 +15606,66,17,12,0.0 +15606,31,12.5,37,0.0 +15606,61,28.5,18,0.0 +15606,73,15,28,0.0 +15606,54,7.45,46,0.0 +15606,19,9.2,14,0.0 +15606,72,34.8,46,0.0 +15606,47,9.5,37,0.0 +15606,46,12,4,0.0 +15606,77,13,46,0.0 +15606,69,36,21,0.0 +15606,53,32.8,24,0.0 +15606,28,45.6,7,0.0 +15606,9,97,25,0.0 +15606,45,9.5,16,0.0 +15606,44,19.45,24,0.0 +15606,48,12.75,4,0.0 +15607,20,81,11,0.0 +15607,77,13,15,0.0 +15607,44,19.45,22,0.0 +15607,16,17.45,34,0.0 +15607,46,12,37,0.0 +15607,54,7.45,41,0.0 +15607,27,43.9,22,0.0 +15607,31,12.5,9,0.0 +15607,7,30,11,0.0 +15607,34,14,32,0.0 +15607,73,15,8,0.0 +15607,76,18,17,0.0 +15607,24,4.5,8,0.0 +15607,41,9.65,13,0.0 +15607,62,49.3,1,0.0 +15607,15,15.5,38,0.0 +15607,53,32.8,48,0.0 +15607,68,12.5,43,0.0 +15607,47,9.5,10,0.0 +15607,45,9.5,16,0.0 +15607,19,9.2,41,0.0 +15607,61,28.5,40,0.0 +15607,52,7,17,0.0 +15607,28,45.6,38,0.0 +15607,69,36,31,0.0 +15607,36,19,35,0.0 +15607,8,40,16,0.0 +15607,49,20,18,0.0 +15607,30,25.89,45,0.0 +15607,10,31,47,0.0 +15607,18,62.5,31,0.0 +15607,63,43.9,15,0.0 +15607,35,18,49,0.0 +15607,6,25,19,0.0 +15607,66,17,47,0.0 +15607,64,33.25,28,0.0 +15607,22,21,11,0.0 +15607,75,7.75,1,0.0 +15607,12,38,42,0.0 +15607,29,123.79,9,0.0 +15607,32,32,20,0.0 +15607,9,97,45,0.0 +15607,2,19,35,0.0 +15607,57,19.5,31,0.0 +15607,70,15,16,0.0 +15607,56,38,28,0.0 +15607,51,53,9,0.0 +15607,48,12.75,23,0.0 +15607,4,22,20,0.0 +15607,17,39,1,0.0 +15607,14,23.25,3,0.0 +15607,38,263.5,8,0.0 +15607,25,14,31,0.0 +15607,3,10,20,0.0 +15607,23,9,38,0.0 +15607,5,21.35,34,0.0 +15607,21,10,42,0.0 +15607,74,10,2,0.0 +15607,59,55,31,0.0 +15607,60,34,22,0.0 +15607,65,21.05,50,0.0 +15607,40,18.4,1,0.0 +15607,13,6,43,0.0 +15607,72,34.8,40,0.0 +15607,33,2.5,17,0.0 +15607,37,26,20,0.0 +15607,58,13.25,38,0.0 +15607,67,14,6,0.0 +15607,50,16.25,22,0.0 +15607,42,14,50,0.0 +15607,11,21,35,0.0 +15607,55,24,13,0.0 +15607,71,21.5,13,0.0 +15607,26,31.23,47,0.0 +15608,35,18,11,0.0 +15608,11,21,37,0.0 +15608,46,12,14,0.0 +15608,43,46,47,0.0 +15608,23,9,10,0.0 +15608,17,39,2,0.0 +15608,16,17.45,3,0.0 +15608,63,43.9,47,0.0 +15608,41,9.65,10,0.0 +15608,42,14,17,0.0 +15608,40,18.4,40,0.0 +15608,58,13.25,46,0.0 +15608,73,15,19,0.0 +15608,53,32.8,28,0.0 +15608,30,25.89,29,0.0 +15608,33,2.5,36,0.0 +15609,66,17,36,0.0 +15609,11,21,19,0.0 +15609,38,263.5,26,0.0 +15609,20,81,9,0.0 +15609,51,53,14,0.0 +15609,34,14,50,0.0 +15609,4,22,38,0.0 +15609,71,21.5,49,0.0 +15609,49,20,14,0.0 +15609,8,40,34,0.0 +15609,40,18.4,36,0.0 +15609,57,19.5,10,0.0 +15609,44,19.45,26,0.0 +15609,12,38,34,0.0 +15609,9,97,9,0.0 +15609,2,19,38,0.0 +15609,43,46,21,0.0 +15609,15,15.5,12,0.0 +15609,22,21,20,0.0 +15609,10,31,34,0.0 +15609,58,13.25,34,0.0 +15609,56,38,14,0.0 +15609,7,30,7,0.0 +15609,25,14,21,0.0 +15609,31,12.5,34,0.0 +15609,75,7.75,10,0.0 +15609,46,12,24,0.0 +15609,16,17.45,16,0.0 +15609,72,34.8,31,0.0 +15609,69,36,5,0.0 +15609,37,26,37,0.0 +15609,14,23.25,37,0.0 +15609,65,21.05,19,0.0 +15609,64,33.25,17,0.0 +15609,50,16.25,25,0.0 +15609,53,32.8,12,0.0 +15609,59,55,42,0.0 +15609,39,18,46,0.0 +15609,27,43.9,43,0.0 +15610,9,97,39,0.0 +15610,15,15.5,15,0.0 +15610,52,7,43,0.0 +15610,5,21.35,23,0.0 +15610,16,17.45,19,0.0 +15610,37,26,22,0.0 +15610,57,19.5,16,0.0 +15610,36,19,44,0.0 +15610,33,2.5,23,0.0 +15610,17,39,12,0.0 +15610,54,7.45,26,0.0 +15610,39,18,49,0.0 +15610,12,38,10,0.0 +15610,26,31.23,2,0.0 +15610,69,36,41,0.0 +15610,40,18.4,39,0.0 +15610,45,9.5,17,0.0 +15610,62,49.3,13,0.0 +15610,75,7.75,46,0.0 +15610,8,40,12,0.0 +15610,74,10,20,0.0 +15610,51,53,23,0.0 +15610,43,46,26,0.0 +15611,20,81,50,0.0 +15611,30,25.89,47,0.0 +15611,63,43.9,13,0.0 +15611,76,18,23,0.0 +15611,18,62.5,27,0.0 +15611,60,34,12,0.0 +15611,40,18.4,32,0.0 +15611,72,34.8,8,0.0 +15611,59,55,16,0.0 +15611,8,40,20,0.0 +15611,27,43.9,5,0.0 +15611,15,15.5,45,0.0 +15611,64,33.25,44,0.0 +15611,5,21.35,44,0.0 +15611,4,22,20,0.0 +15611,12,38,23,0.0 +15611,44,19.45,17,0.0 +15611,39,18,4,0.0 +15611,56,38,5,0.0 +15611,51,53,38,0.0 +15611,17,39,6,0.0 +15611,69,36,40,0.0 +15611,74,10,21,0.0 +15611,19,9.2,8,0.0 +15611,50,16.25,47,0.0 +15611,3,10,37,0.0 +15611,55,24,41,0.0 +15611,61,28.5,15,0.0 +15611,14,23.25,47,0.0 +15611,29,123.79,12,0.0 +15611,38,263.5,1,0.0 +15611,42,14,37,0.0 +15611,25,14,13,0.0 +15611,7,30,33,0.0 +15611,36,19,24,0.0 +15611,47,9.5,31,0.0 +15611,23,9,38,0.0 +15611,11,21,14,0.0 +15611,26,31.23,18,0.0 +15611,68,12.5,36,0.0 +15611,62,49.3,42,0.0 +15611,6,25,3,0.0 +15611,2,19,50,0.0 +15611,66,17,14,0.0 +15611,52,7,43,0.0 +15611,65,21.05,48,0.0 +15611,43,46,14,0.0 +15611,24,4.5,49,0.0 +15611,54,7.45,50,0.0 +15611,70,15,50,0.0 +15611,33,2.5,19,0.0 +15611,57,19.5,23,0.0 +15611,37,26,50,0.0 +15611,22,21,10,0.0 +15611,46,12,33,0.0 +15611,77,13,21,0.0 +15611,49,20,18,0.0 +15611,75,7.75,5,0.0 +15611,31,12.5,23,0.0 +15611,13,6,12,0.0 +15611,32,32,32,0.0 +15611,21,10,28,0.0 +15611,41,9.65,21,0.0 +15611,10,31,8,0.0 +15611,16,17.45,34,0.0 +15611,58,13.25,26,0.0 +15611,45,9.5,29,0.0 +15611,48,12.75,30,0.0 +15611,67,14,43,0.0 +15611,53,32.8,42,0.0 +15611,73,15,32,0.0 +15611,9,97,15,0.0 +15611,28,45.6,13,0.0 +15611,35,18,33,0.0 +15611,71,21.5,5,0.0 +15611,1,18,29,0.0 +15612,54,7.45,22,0.0 +15612,77,13,50,0.0 +15612,40,18.4,7,0.0 +15612,20,81,23,0.0 +15612,17,39,38,0.0 +15612,44,19.45,19,0.0 +15612,36,19,12,0.0 +15612,28,45.6,38,0.0 +15612,45,9.5,45,0.0 +15612,31,12.5,45,0.0 +15612,14,23.25,7,0.0 +15612,1,18,50,0.0 +15612,57,19.5,43,0.0 +15612,59,55,24,0.0 +15612,25,14,48,0.0 +15612,56,38,15,0.0 +15612,6,25,6,0.0 +15612,2,19,26,0.0 +15612,67,14,30,0.0 +15612,4,22,48,0.0 +15612,19,9.2,24,0.0 +15612,16,17.45,26,0.0 +15612,24,4.5,14,0.0 +15612,32,32,8,0.0 +15612,71,21.5,16,0.0 +15612,11,21,15,0.0 +15612,65,21.05,28,0.0 +15612,61,28.5,50,0.0 +15612,63,43.9,11,0.0 +15612,76,18,9,0.0 +15612,30,25.89,34,0.0 +15612,12,38,38,0.0 +15612,43,46,21,0.0 +15612,35,18,41,0.0 +15612,74,10,19,0.0 +15612,7,30,49,0.0 +15612,51,53,48,0.0 +15612,49,20,11,0.0 +15612,70,15,19,0.0 +15612,66,17,5,0.0 +15612,33,2.5,33,0.0 +15612,22,21,35,0.0 +15612,18,62.5,4,0.0 +15612,53,32.8,7,0.0 +15612,5,21.35,40,0.0 +15612,38,263.5,47,0.0 +15612,55,24,41,0.0 +15612,41,9.65,32,0.0 +15612,27,43.9,22,0.0 +15612,15,15.5,28,0.0 +15612,69,36,47,0.0 +15612,10,31,14,0.0 +15612,13,6,50,0.0 +15612,68,12.5,40,0.0 +15612,21,10,25,0.0 +15612,47,9.5,28,0.0 +15612,60,34,23,0.0 +15612,9,97,20,0.0 +15613,57,19.5,22,0.0 +15613,36,19,28,0.0 +15613,13,6,49,0.0 +15613,68,12.5,39,0.0 +15613,61,28.5,50,0.0 +15613,48,12.75,34,0.0 +15613,9,97,45,0.0 +15613,53,32.8,15,0.0 +15613,34,14,30,0.0 +15613,1,18,13,0.0 +15613,31,12.5,47,0.0 +15613,72,34.8,4,0.0 +15613,70,15,11,0.0 +15613,76,18,13,0.0 +15613,20,81,31,0.0 +15613,63,43.9,46,0.0 +15613,74,10,46,0.0 +15613,47,9.5,39,0.0 +15613,67,14,34,0.0 +15614,14,23.25,50,0.0 +15614,24,4.5,50,0.0 +15614,9,97,27,0.0 +15614,21,10,40,0.0 +15614,61,28.5,22,0.0 +15614,74,10,11,0.0 +15614,56,38,20,0.0 +15614,18,62.5,21,0.0 +15614,64,33.25,45,0.0 +15614,57,19.5,33,0.0 +15614,51,53,44,0.0 +15614,11,21,14,0.0 +15614,44,19.45,2,0.0 +15614,47,9.5,23,0.0 +15614,23,9,16,0.0 +15614,76,18,20,0.0 +15614,62,49.3,25,0.0 +15614,30,25.89,19,0.0 +15614,12,38,20,0.0 +15614,5,21.35,2,0.0 +15614,48,12.75,45,0.0 +15614,71,21.5,35,0.0 +15614,34,14,43,0.0 +15614,32,32,24,0.0 +15614,20,81,46,0.0 +15614,43,46,11,0.0 +15614,25,14,17,0.0 +15614,58,13.25,15,0.0 +15614,26,31.23,38,0.0 +15614,10,31,33,0.0 +15614,6,25,40,0.0 +15614,53,32.8,25,0.0 +15614,49,20,35,0.0 +15614,52,7,33,0.0 +15614,27,43.9,31,0.0 +15614,39,18,10,0.0 +15614,42,14,12,0.0 +15614,15,15.5,31,0.0 +15614,37,26,33,0.0 +15614,46,12,11,0.0 +15614,19,9.2,31,0.0 +15614,41,9.65,20,0.0 +15614,63,43.9,17,0.0 +15614,2,19,10,0.0 +15614,13,6,35,0.0 +15614,33,2.5,31,0.0 +15614,73,15,32,0.0 +15614,69,36,25,0.0 +15614,22,21,44,0.0 +15614,65,21.05,30,0.0 +15614,72,34.8,9,0.0 +15614,54,7.45,37,0.0 +15614,7,30,31,0.0 +15614,36,19,47,0.0 +15614,66,17,12,0.0 +15614,55,24,7,0.0 +15614,16,17.45,40,0.0 +15614,40,18.4,1,0.0 +15614,38,263.5,14,0.0 +15614,29,123.79,13,0.0 +15615,13,6,41,0.0 +15615,24,4.5,31,0.0 +15615,65,21.05,49,0.0 +15615,5,21.35,9,0.0 +15615,69,36,27,0.0 +15615,14,23.25,49,0.0 +15615,77,13,50,0.0 +15615,33,2.5,25,0.0 +15615,31,12.5,27,0.0 +15615,34,14,14,0.0 +15615,18,62.5,19,0.0 +15615,1,18,24,0.0 +15615,15,15.5,40,0.0 +15615,40,18.4,10,0.0 +15615,74,10,25,0.0 +15615,76,18,21,0.0 +15615,53,32.8,9,0.0 +15615,29,123.79,15,0.0 +15615,6,25,31,0.0 +15615,70,15,12,0.0 +15615,16,17.45,34,0.0 +15615,58,13.25,41,0.0 +15615,75,7.75,16,0.0 +15615,66,17,4,0.0 +15615,39,18,36,0.0 +15615,55,24,13,0.0 +15615,73,15,27,0.0 +15615,22,21,50,0.0 +15615,51,53,32,0.0 +15615,11,21,49,0.0 +15615,32,32,29,0.0 +15615,21,10,23,0.0 +15615,37,26,32,0.0 +15615,10,31,14,0.0 +15615,42,14,34,0.0 +15615,61,28.5,41,0.0 +15615,7,30,34,0.0 +15615,9,97,7,0.0 +15615,68,12.5,28,0.0 +15615,67,14,34,0.0 +15615,25,14,4,0.0 +15615,47,9.5,24,0.0 +15615,36,19,44,0.0 +15615,38,263.5,39,0.0 +15615,28,45.6,40,0.0 +15615,20,81,22,0.0 +15615,59,55,18,0.0 +15615,60,34,8,0.0 +15615,4,22,28,0.0 +15615,62,49.3,41,0.0 +15615,63,43.9,16,0.0 +15615,52,7,48,0.0 +15615,45,9.5,14,0.0 +15616,76,18,39,0.0 +15616,34,14,30,0.0 +15616,23,9,28,0.0 +15616,66,17,2,0.0 +15616,26,31.23,39,0.0 +15616,15,15.5,43,0.0 +15616,24,4.5,46,0.0 +15616,35,18,40,0.0 +15616,65,21.05,5,0.0 +15616,44,19.45,45,0.0 +15616,30,25.89,1,0.0 +15616,16,17.45,20,0.0 +15616,12,38,27,0.0 +15616,74,10,29,0.0 +15616,60,34,43,0.0 +15616,20,81,39,0.0 +15616,21,10,27,0.0 +15616,54,7.45,34,0.0 +15616,46,12,45,0.0 +15616,37,26,1,0.0 +15616,64,33.25,25,0.0 +15616,71,21.5,23,0.0 +15616,75,7.75,18,0.0 +15616,69,36,18,0.0 +15616,38,263.5,18,0.0 +15616,22,21,47,0.0 +15616,39,18,2,0.0 +15616,63,43.9,26,0.0 +15616,62,49.3,21,0.0 +15616,31,12.5,42,0.0 +15616,41,9.65,10,0.0 +15616,17,39,23,0.0 +15616,27,43.9,19,0.0 +15616,28,45.6,26,0.0 +15616,57,19.5,43,0.0 +15616,40,18.4,7,0.0 +15616,51,53,7,0.0 +15616,1,18,20,0.0 +15616,77,13,25,0.0 +15616,67,14,10,0.0 +15616,5,21.35,26,0.0 +15616,43,46,16,0.0 +15616,55,24,8,0.0 +15616,68,12.5,20,0.0 +15616,72,34.8,33,0.0 +15616,50,16.25,15,0.0 +15616,32,32,17,0.0 +15616,3,10,22,0.0 +15616,19,9.2,30,0.0 +15616,13,6,49,0.0 +15616,56,38,8,0.0 +15616,2,19,42,0.0 +15616,45,9.5,49,0.0 +15616,25,14,8,0.0 +15616,61,28.5,19,0.0 +15616,18,62.5,38,0.0 +15616,33,2.5,20,0.0 +15616,58,13.25,5,0.0 +15616,59,55,8,0.0 +15616,7,30,42,0.0 +15616,70,15,45,0.0 +15616,6,25,40,0.0 +15616,49,20,27,0.0 +15616,14,23.25,40,0.0 +15616,10,31,41,0.0 +15617,50,16.25,29,0.0 +15617,62,49.3,16,0.0 +15617,70,15,4,0.0 +15617,69,36,38,0.0 +15617,26,31.23,24,0.0 +15617,31,12.5,5,0.0 +15617,38,263.5,32,0.0 +15617,66,17,15,0.0 +15617,48,12.75,5,0.0 +15617,4,22,45,0.0 +15617,77,13,24,0.0 +15617,23,9,35,0.0 +15617,9,97,18,0.0 +15617,74,10,38,0.0 +15617,16,17.45,3,0.0 +15617,51,53,18,0.0 +15617,46,12,19,0.0 +15617,47,9.5,12,0.0 +15617,22,21,40,0.0 +15617,53,32.8,6,0.0 +15617,42,14,41,0.0 +15617,40,18.4,26,0.0 +15617,71,21.5,35,0.0 +15617,64,33.25,10,0.0 +15617,44,19.45,21,0.0 +15617,11,21,29,0.0 +15617,18,62.5,12,0.0 +15617,12,38,11,0.0 +15617,15,15.5,36,0.0 +15617,34,14,13,0.0 +15617,29,123.79,24,0.0 +15617,35,18,11,0.0 +15617,5,21.35,37,0.0 +15617,21,10,30,0.0 +15617,10,31,25,0.0 +15617,41,9.65,36,0.0 +15617,24,4.5,3,0.0 +15617,20,81,32,0.0 +15617,37,26,39,0.0 +15617,60,34,34,0.0 +15617,63,43.9,49,0.0 +15617,54,7.45,19,0.0 +15617,67,14,13,0.0 +15617,72,34.8,4,0.0 +15617,25,14,11,0.0 +15617,58,13.25,4,0.0 +15617,7,30,16,0.0 +15617,19,9.2,22,0.0 +15617,45,9.5,22,0.0 +15617,75,7.75,47,0.0 +15617,39,18,10,0.0 +15617,56,38,45,0.0 +15617,17,39,29,0.0 +15617,13,6,46,0.0 +15617,36,19,20,0.0 +15617,65,21.05,5,0.0 +15617,32,32,22,0.0 +15617,52,7,42,0.0 +15617,28,45.6,23,0.0 +15617,68,12.5,19,0.0 +15617,33,2.5,7,0.0 +15617,59,55,17,0.0 +15617,6,25,3,0.0 +15617,1,18,37,0.0 +15617,61,28.5,37,0.0 +15617,14,23.25,10,0.0 +15617,27,43.9,50,0.0 +15617,30,25.89,48,0.0 +15617,3,10,36,0.0 +15617,57,19.5,49,0.0 +15617,76,18,24,0.0 +15617,2,19,2,0.0 +15617,49,20,6,0.0 +15617,55,24,16,0.0 +15617,73,15,17,0.0 +15617,8,40,5,0.0 +15618,39,18,32,0.0 +15618,51,53,17,0.0 +15618,56,38,21,0.0 +15618,60,34,16,0.0 +15618,50,16.25,9,0.0 +15618,8,40,27,0.0 +15618,55,24,12,0.0 +15618,75,7.75,28,0.0 +15618,68,12.5,35,0.0 +15618,11,21,16,0.0 +15618,33,2.5,49,0.0 +15618,25,14,32,0.0 +15619,52,7,39,0.0 +15619,17,39,20,0.0 +15619,36,19,1,0.0 +15619,50,16.25,6,0.0 +15619,58,13.25,34,0.0 +15619,72,34.8,45,0.0 +15619,43,46,25,0.0 +15619,19,9.2,34,0.0 +15619,57,19.5,14,0.0 +15619,20,81,3,0.0 +15619,7,30,15,0.0 +15619,5,21.35,12,0.0 +15619,59,55,37,0.0 +15619,60,34,21,0.0 +15619,26,31.23,11,0.0 +15619,63,43.9,7,0.0 +15619,27,43.9,26,0.0 +15619,49,20,45,0.0 +15619,53,32.8,34,0.0 +15619,51,53,43,0.0 +15619,3,10,25,0.0 +15619,40,18.4,42,0.0 +15619,2,19,7,0.0 +15619,37,26,29,0.0 +15619,74,10,8,0.0 +15619,32,32,24,0.0 +15619,66,17,48,0.0 +15619,44,19.45,8,0.0 +15619,1,18,6,0.0 +15619,30,25.89,15,0.0 +15619,14,23.25,25,0.0 +15619,56,38,46,0.0 +15619,47,9.5,23,0.0 +15619,18,62.5,5,0.0 +15619,48,12.75,18,0.0 +15619,73,15,37,0.0 +15619,65,21.05,12,0.0 +15619,46,12,32,0.0 +15619,75,7.75,44,0.0 +15619,12,38,28,0.0 +15619,29,123.79,5,0.0 +15619,45,9.5,24,0.0 +15619,10,31,19,0.0 +15619,23,9,1,0.0 +15619,9,97,7,0.0 +15619,39,18,27,0.0 +15619,69,36,14,0.0 +15619,62,49.3,40,0.0 +15620,58,13.25,18,0.0 +15620,5,21.35,28,0.0 +15620,14,23.25,12,0.0 +15620,77,13,22,0.0 +15620,54,7.45,15,0.0 +15620,60,34,35,0.0 +15620,41,9.65,1,0.0 +15620,8,40,25,0.0 +15620,34,14,7,0.0 +15620,74,10,44,0.0 +15620,31,12.5,2,0.0 +15620,4,22,18,0.0 +15620,70,15,24,0.0 +15620,49,20,3,0.0 +15620,19,9.2,22,0.0 +15620,10,31,17,0.0 +15620,29,123.79,37,0.0 +15620,16,17.45,12,0.0 +15620,43,46,41,0.0 +15620,17,39,17,0.0 +15620,71,21.5,42,0.0 +15620,64,33.25,30,0.0 +15620,26,31.23,44,0.0 +15620,7,30,29,0.0 +15620,20,81,47,0.0 +15620,21,10,4,0.0 +15620,18,62.5,35,0.0 +15620,15,15.5,43,0.0 +15620,28,45.6,44,0.0 +15620,6,25,42,0.0 +15620,9,97,47,0.0 +15620,1,18,31,0.0 +15620,57,19.5,44,0.0 +15620,46,12,21,0.0 +15620,76,18,49,0.0 +15620,67,14,44,0.0 +15620,61,28.5,35,0.0 +15620,40,18.4,2,0.0 +15620,59,55,17,0.0 +15620,51,53,4,0.0 +15620,68,12.5,50,0.0 +15620,27,43.9,17,0.0 +15620,35,18,22,0.0 +15620,37,26,40,0.0 +15620,2,19,33,0.0 +15620,36,19,39,0.0 +15620,12,38,15,0.0 +15620,25,14,50,0.0 +15620,45,9.5,44,0.0 +15620,47,9.5,4,0.0 +15620,42,14,49,0.0 +15620,72,34.8,21,0.0 +15620,33,2.5,45,0.0 +15620,62,49.3,47,0.0 +15620,75,7.75,27,0.0 +15620,22,21,43,0.0 +15620,38,263.5,20,0.0 +15620,56,38,41,0.0 +15620,13,6,2,0.0 +15620,23,9,11,0.0 +15621,44,19.45,47,0.0 +15621,24,4.5,32,0.0 +15621,18,62.5,12,0.0 +15621,1,18,26,0.0 +15621,48,12.75,10,0.0 +15621,38,263.5,11,0.0 +15621,56,38,24,0.0 +15621,39,18,19,0.0 +15621,2,19,10,0.0 +15621,57,19.5,9,0.0 +15621,10,31,1,0.0 +15621,60,34,2,0.0 +15621,25,14,48,0.0 +15621,9,97,20,0.0 +15621,30,25.89,9,0.0 +15621,45,9.5,28,0.0 +15621,50,16.25,43,0.0 +15621,75,7.75,20,0.0 +15621,68,12.5,4,0.0 +15621,11,21,12,0.0 +15621,70,15,42,0.0 +15621,58,13.25,13,0.0 +15621,14,23.25,28,0.0 +15621,21,10,30,0.0 +15621,43,46,41,0.0 +15621,13,6,42,0.0 +15621,61,28.5,6,0.0 +15621,72,34.8,45,0.0 +15621,51,53,32,0.0 +15621,41,9.65,50,0.0 +15621,6,25,42,0.0 +15621,37,26,9,0.0 +15621,73,15,30,0.0 +15622,72,34.8,24,0.0 +15622,36,19,24,0.0 +15622,59,55,14,0.0 +15622,63,43.9,28,0.0 +15622,12,38,8,0.0 +15622,11,21,49,0.0 +15622,74,10,27,0.0 +15622,71,21.5,20,0.0 +15622,68,12.5,39,0.0 +15622,66,17,22,0.0 +15622,30,25.89,30,0.0 +15622,48,12.75,11,0.0 +15622,56,38,17,0.0 +15622,34,14,18,0.0 +15622,13,6,40,0.0 +15622,26,31.23,23,0.0 +15622,76,18,48,0.0 +15622,8,40,11,0.0 +15622,6,25,44,0.0 +15622,19,9.2,20,0.0 +15622,20,81,8,0.0 +15622,14,23.25,27,0.0 +15622,24,4.5,2,0.0 +15622,49,20,5,0.0 +15622,39,18,22,0.0 +15622,57,19.5,31,0.0 +15622,5,21.35,17,0.0 +15622,22,21,11,0.0 +15622,1,18,39,0.0 +15622,73,15,19,0.0 +15622,4,22,22,0.0 +15622,29,123.79,2,0.0 +15622,10,31,4,0.0 +15622,2,19,46,0.0 +15622,37,26,23,0.0 +15623,55,24,28,0.0 +15623,53,32.8,9,0.0 +15623,47,9.5,8,0.0 +15623,17,39,48,0.0 +15623,27,43.9,38,0.0 +15623,37,26,17,0.0 +15623,1,18,35,0.0 +15623,51,53,46,0.0 +15623,52,7,48,0.0 +15623,43,46,21,0.0 +15623,75,7.75,29,0.0 +15623,23,9,9,0.0 +15623,8,40,45,0.0 +15623,32,32,20,0.0 +15623,58,13.25,18,0.0 +15623,36,19,18,0.0 +15623,9,97,42,0.0 +15623,41,9.65,39,0.0 +15623,59,55,22,0.0 +15623,44,19.45,29,0.0 +15623,64,33.25,12,0.0 +15623,19,9.2,45,0.0 +15623,60,34,20,0.0 +15623,54,7.45,44,0.0 +15623,21,10,50,0.0 +15623,57,19.5,5,0.0 +15623,71,21.5,13,0.0 +15623,40,18.4,12,0.0 +15623,77,13,43,0.0 +15623,3,10,14,0.0 +15623,70,15,12,0.0 +15623,66,17,31,0.0 +15623,67,14,30,0.0 +15623,74,10,38,0.0 +15623,11,21,20,0.0 +15623,65,21.05,33,0.0 +15623,25,14,12,0.0 +15624,21,10,44,0.0 +15624,34,14,13,0.0 +15624,3,10,43,0.0 +15624,69,36,21,0.0 +15624,37,26,43,0.0 +15624,17,39,38,0.0 +15624,4,22,47,0.0 +15624,62,49.3,6,0.0 +15624,19,9.2,30,0.0 +15624,77,13,23,0.0 +15624,40,18.4,38,0.0 +15624,33,2.5,47,0.0 +15624,25,14,20,0.0 +15624,22,21,11,0.0 +15624,53,32.8,11,0.0 +15624,24,4.5,40,0.0 +15624,49,20,17,0.0 +15624,52,7,18,0.0 +15624,56,38,40,0.0 +15624,11,21,30,0.0 +15624,58,13.25,24,0.0 +15624,29,123.79,49,0.0 +15624,57,19.5,50,0.0 +15624,61,28.5,25,0.0 +15624,7,30,8,0.0 +15624,41,9.65,16,0.0 +15624,68,12.5,32,0.0 +15624,12,38,12,0.0 +15624,18,62.5,42,0.0 +15624,35,18,4,0.0 +15624,6,25,27,0.0 +15624,30,25.89,45,0.0 +15624,42,14,31,0.0 +15624,73,15,26,0.0 +15624,51,53,38,0.0 +15624,72,34.8,37,0.0 +15624,39,18,32,0.0 +15624,59,55,18,0.0 +15624,13,6,14,0.0 +15624,2,19,49,0.0 +15624,28,45.6,25,0.0 +15624,43,46,20,0.0 +15624,23,9,49,0.0 +15624,16,17.45,28,0.0 +15624,32,32,2,0.0 +15624,66,17,5,0.0 +15624,48,12.75,13,0.0 +15624,74,10,49,0.0 +15625,73,15,43,0.0 +15625,6,25,11,0.0 +15625,66,17,19,0.0 +15625,50,16.25,42,0.0 +15625,37,26,26,0.0 +15625,72,34.8,40,0.0 +15625,70,15,28,0.0 +15625,18,62.5,5,0.0 +15625,69,36,28,0.0 +15625,11,21,14,0.0 +15625,63,43.9,14,0.0 +15625,48,12.75,9,0.0 +15625,56,38,19,0.0 +15625,38,263.5,3,0.0 +15625,51,53,21,0.0 +15625,62,49.3,21,0.0 +15625,24,4.5,37,0.0 +15625,42,14,37,0.0 +15625,12,38,11,0.0 +15625,53,32.8,28,0.0 +15625,28,45.6,8,0.0 +15625,76,18,8,0.0 +15625,9,97,26,0.0 +15625,29,123.79,39,0.0 +15625,67,14,4,0.0 +15625,23,9,22,0.0 +15625,17,39,23,0.0 +15625,1,18,39,0.0 +15625,40,18.4,4,0.0 +15625,60,34,46,0.0 +15625,25,14,2,0.0 +15625,16,17.45,9,0.0 +15625,57,19.5,12,0.0 +15625,7,30,46,0.0 +15625,5,21.35,22,0.0 +15625,8,40,39,0.0 +15625,45,9.5,45,0.0 +15625,4,22,27,0.0 +15625,31,12.5,23,0.0 +15625,13,6,18,0.0 +15625,43,46,48,0.0 +15625,41,9.65,30,0.0 +15625,20,81,24,0.0 +15625,71,21.5,10,0.0 +15625,2,19,37,0.0 +15625,58,13.25,35,0.0 +15625,27,43.9,50,0.0 +15625,47,9.5,34,0.0 +15625,15,15.5,49,0.0 +15625,30,25.89,25,0.0 +15625,26,31.23,40,0.0 +15625,55,24,28,0.0 +15625,10,31,15,0.0 +15625,21,10,13,0.0 +15625,65,21.05,23,0.0 +15625,3,10,27,0.0 +15625,52,7,3,0.0 +15625,22,21,50,0.0 +15625,44,19.45,24,0.0 +15625,68,12.5,10,0.0 +15625,35,18,50,0.0 +15625,75,7.75,36,0.0 +15625,36,19,28,0.0 +15625,39,18,12,0.0 +15626,40,18.4,5,0.0 +15626,63,43.9,8,0.0 +15626,16,17.45,19,0.0 +15626,48,12.75,43,0.0 +15626,6,25,17,0.0 +15626,62,49.3,21,0.0 +15626,71,21.5,32,0.0 +15626,76,18,30,0.0 +15626,69,36,28,0.0 +15626,19,9.2,45,0.0 +15626,17,39,20,0.0 +15626,2,19,39,0.0 +15626,39,18,37,0.0 +15626,42,14,32,0.0 +15626,52,7,40,0.0 +15626,68,12.5,48,0.0 +15626,9,97,3,0.0 +15626,54,7.45,38,0.0 +15626,3,10,22,0.0 +15626,20,81,29,0.0 +15626,75,7.75,18,0.0 +15626,14,23.25,7,0.0 +15626,15,15.5,2,0.0 +15626,27,43.9,36,0.0 +15626,23,9,48,0.0 +15626,25,14,40,0.0 +15626,60,34,33,0.0 +15626,13,6,36,0.0 +15626,10,31,33,0.0 +15626,37,26,34,0.0 +15626,28,45.6,7,0.0 +15626,5,21.35,25,0.0 +15626,47,9.5,14,0.0 +15626,73,15,8,0.0 +15626,22,21,3,0.0 +15626,11,21,37,0.0 +15626,31,12.5,22,0.0 +15626,61,28.5,49,0.0 +15626,24,4.5,32,0.0 +15626,33,2.5,15,0.0 +15626,21,10,22,0.0 +15626,64,33.25,18,0.0 +15626,41,9.65,34,0.0 +15626,49,20,22,0.0 +15626,32,32,11,0.0 +15626,36,19,30,0.0 +15626,65,21.05,14,0.0 +15626,72,34.8,17,0.0 +15626,77,13,27,0.0 +15626,74,10,21,0.0 +15626,44,19.45,5,0.0 +15626,46,12,47,0.0 +15626,67,14,22,0.0 +15626,59,55,21,0.0 +15626,70,15,33,0.0 +15626,18,62.5,22,0.0 +15626,56,38,28,0.0 +15626,66,17,14,0.0 +15626,38,263.5,41,0.0 +15626,29,123.79,24,0.0 +15626,50,16.25,50,0.0 +15626,4,22,27,0.0 +15626,34,14,35,0.0 +15626,12,38,34,0.0 +15626,51,53,18,0.0 +15626,57,19.5,7,0.0 +15626,7,30,45,0.0 +15626,43,46,5,0.0 +15626,55,24,3,0.0 +15626,45,9.5,45,0.0 +15626,26,31.23,29,0.0 +15626,58,13.25,10,0.0 +15627,3,10,32,0.0 +15627,53,32.8,33,0.0 +15627,47,9.5,2,0.0 +15627,5,21.35,35,0.0 +15627,17,39,45,0.0 +15627,8,40,42,0.0 +15627,35,18,29,0.0 +15627,18,62.5,10,0.0 +15627,65,21.05,12,0.0 +15627,6,25,11,0.0 +15627,71,21.5,15,0.0 +15627,48,12.75,30,0.0 +15627,61,28.5,45,0.0 +15627,32,32,25,0.0 +15627,56,38,36,0.0 +15627,16,17.45,11,0.0 +15627,21,10,20,0.0 +15627,1,18,14,0.0 +15627,31,12.5,37,0.0 +15627,55,24,48,0.0 +15627,22,21,24,0.0 +15627,30,25.89,20,0.0 +15627,45,9.5,13,0.0 +15627,74,10,7,0.0 +15627,28,45.6,25,0.0 +15627,51,53,21,0.0 +15627,69,36,31,0.0 +15627,25,14,31,0.0 +15627,26,31.23,39,0.0 +15627,59,55,14,0.0 +15627,66,17,17,0.0 +15627,38,263.5,17,0.0 +15627,68,12.5,40,0.0 +15627,12,38,38,0.0 +15627,10,31,2,0.0 +15627,41,9.65,16,0.0 +15627,39,18,15,0.0 +15627,19,9.2,41,0.0 +15627,73,15,27,0.0 +15627,77,13,21,0.0 +15627,42,14,12,0.0 +15627,34,14,3,0.0 +15627,40,18.4,9,0.0 +15627,52,7,15,0.0 +15627,75,7.75,16,0.0 +15627,36,19,43,0.0 +15627,57,19.5,40,0.0 +15627,15,15.5,46,0.0 +15627,64,33.25,14,0.0 +15627,46,12,7,0.0 +15627,62,49.3,23,0.0 +15627,60,34,14,0.0 +15627,33,2.5,2,0.0 +15627,9,97,34,0.0 +15627,63,43.9,1,0.0 +15627,7,30,11,0.0 +15627,14,23.25,12,0.0 +15627,4,22,9,0.0 +15627,20,81,50,0.0 +15628,45,9.5,42,0.0 +15628,64,33.25,48,0.0 +15628,48,12.75,47,0.0 +15628,42,14,35,0.0 +15628,55,24,27,0.0 +15628,76,18,47,0.0 +15628,71,21.5,23,0.0 +15628,74,10,19,0.0 +15628,70,15,8,0.0 +15628,21,10,17,0.0 +15628,60,34,29,0.0 +15628,2,19,35,0.0 +15628,12,38,16,0.0 +15628,25,14,4,0.0 +15628,69,36,39,0.0 +15628,20,81,18,0.0 +15628,41,9.65,8,0.0 +15628,77,13,28,0.0 +15628,24,4.5,15,0.0 +15628,15,15.5,21,0.0 +15628,63,43.9,41,0.0 +15628,30,25.89,8,0.0 +15628,65,21.05,21,0.0 +15628,32,32,11,0.0 +15628,8,40,28,0.0 +15628,14,23.25,25,0.0 +15628,28,45.6,48,0.0 +15628,23,9,35,0.0 +15628,47,9.5,47,0.0 +15628,73,15,19,0.0 +15628,67,14,25,0.0 +15628,46,12,33,0.0 +15628,31,12.5,20,0.0 +15628,4,22,3,0.0 +15628,75,7.75,26,0.0 +15628,44,19.45,24,0.0 +15628,19,9.2,10,0.0 +15628,5,21.35,9,0.0 +15628,11,21,2,0.0 +15628,61,28.5,18,0.0 +15628,37,26,19,0.0 +15628,36,19,30,0.0 +15628,54,7.45,32,0.0 +15628,27,43.9,27,0.0 +15628,57,19.5,14,0.0 +15628,62,49.3,22,0.0 +15628,10,31,41,0.0 +15628,35,18,43,0.0 +15628,1,18,49,0.0 +15628,29,123.79,48,0.0 +15628,26,31.23,15,0.0 +15628,22,21,6,0.0 +15628,7,30,33,0.0 +15628,34,14,46,0.0 +15628,33,2.5,44,0.0 +15628,51,53,10,0.0 +15628,56,38,31,0.0 +15628,52,7,41,0.0 +15628,58,13.25,14,0.0 +15628,9,97,49,0.0 +15628,43,46,38,0.0 +15628,17,39,10,0.0 +15628,6,25,17,0.0 +15628,16,17.45,46,0.0 +15628,40,18.4,48,0.0 +15628,53,32.8,5,0.0 +15628,3,10,49,0.0 +15628,50,16.25,48,0.0 +15628,59,55,42,0.0 +15628,66,17,41,0.0 +15628,39,18,14,0.0 +15628,13,6,9,0.0 +15629,33,2.5,18,0.0 +15629,59,55,10,0.0 +15629,68,12.5,21,0.0 +15629,44,19.45,25,0.0 +15629,69,36,32,0.0 +15629,24,4.5,19,0.0 +15629,67,14,16,0.0 +15629,62,49.3,10,0.0 +15629,46,12,1,0.0 +15629,73,15,10,0.0 +15629,49,20,19,0.0 +15629,10,31,2,0.0 +15629,29,123.79,41,0.0 +15629,8,40,15,0.0 +15629,34,14,33,0.0 +15629,76,18,43,0.0 +15629,63,43.9,26,0.0 +15629,19,9.2,40,0.0 +15629,42,14,6,0.0 +15629,61,28.5,31,0.0 +15629,53,32.8,49,0.0 +15629,3,10,41,0.0 +15629,57,19.5,36,0.0 +15629,16,17.45,14,0.0 +15629,64,33.25,37,0.0 +15629,50,16.25,17,0.0 +15629,77,13,7,0.0 +15629,9,97,5,0.0 +15629,26,31.23,6,0.0 +15629,15,15.5,20,0.0 +15629,31,12.5,10,0.0 +15629,40,18.4,15,0.0 +15629,51,53,6,0.0 +15629,2,19,8,0.0 +15629,14,23.25,31,0.0 +15629,54,7.45,42,0.0 +15629,75,7.75,3,0.0 +15629,52,7,39,0.0 +15629,58,13.25,39,0.0 +15629,66,17,42,0.0 +15629,56,38,37,0.0 +15629,72,34.8,1,0.0 +15629,43,46,26,0.0 +15629,41,9.65,28,0.0 +15629,12,38,36,0.0 +15629,7,30,21,0.0 +15629,37,26,33,0.0 +15629,13,6,18,0.0 +15629,27,43.9,10,0.0 +15629,65,21.05,18,0.0 +15629,23,9,42,0.0 +15629,71,21.5,32,0.0 +15629,48,12.75,10,0.0 +15629,28,45.6,18,0.0 +15629,32,32,20,0.0 +15629,55,24,44,0.0 +15629,5,21.35,17,0.0 +15629,25,14,18,0.0 +15629,17,39,8,0.0 +15629,1,18,42,0.0 +15629,47,9.5,21,0.0 +15629,6,25,45,0.0 +15629,39,18,44,0.0 +15629,74,10,4,0.0 +15629,35,18,32,0.0 +15629,30,25.89,21,0.0 +15629,36,19,41,0.0 +15629,70,15,6,0.0 +15629,21,10,9,0.0 +15630,20,81,28,0.0 +15630,21,10,37,0.0 +15630,40,18.4,5,0.0 +15630,59,55,4,0.0 +15630,24,4.5,17,0.0 +15630,51,53,8,0.0 +15630,30,25.89,3,0.0 +15630,31,12.5,10,0.0 +15630,76,18,39,0.0 +15630,48,12.75,5,0.0 +15630,11,21,2,0.0 +15630,8,40,24,0.0 +15630,7,30,24,0.0 +15630,10,31,27,0.0 +15630,42,14,46,0.0 +15630,65,21.05,47,0.0 +15630,35,18,4,0.0 +15630,36,19,49,0.0 +15630,49,20,16,0.0 +15630,57,19.5,2,0.0 +15630,5,21.35,48,0.0 +15630,64,33.25,40,0.0 +15630,61,28.5,50,0.0 +15630,66,17,28,0.0 +15630,67,14,1,0.0 +15630,25,14,23,0.0 +15630,29,123.79,16,0.0 +15630,41,9.65,46,0.0 +15630,4,22,29,0.0 +15630,43,46,46,0.0 +15630,45,9.5,8,0.0 +15630,68,12.5,20,0.0 +15630,15,15.5,16,0.0 +15631,77,13,2,0.0 +15631,62,49.3,10,0.0 +15631,54,7.45,49,0.0 +15631,6,25,25,0.0 +15631,26,31.23,34,0.0 +15631,3,10,26,0.0 +15631,36,19,3,0.0 +15631,71,21.5,32,0.0 +15631,29,123.79,17,0.0 +15631,25,14,4,0.0 +15631,70,15,9,0.0 +15631,21,10,41,0.0 +15631,47,9.5,25,0.0 +15631,44,19.45,48,0.0 +15631,19,9.2,10,0.0 +15631,43,46,48,0.0 +15631,55,24,50,0.0 +15631,40,18.4,12,0.0 +15631,14,23.25,31,0.0 +15631,51,53,8,0.0 +15631,31,12.5,10,0.0 +15631,73,15,48,0.0 +15631,32,32,47,0.0 +15631,12,38,49,0.0 +15631,64,33.25,39,0.0 +15631,9,97,2,0.0 +15631,49,20,6,0.0 +15631,20,81,13,0.0 +15631,15,15.5,47,0.0 +15631,74,10,27,0.0 +15631,50,16.25,23,0.0 +15631,33,2.5,32,0.0 +15631,45,9.5,39,0.0 +15631,22,21,42,0.0 +15631,8,40,27,0.0 +15631,66,17,18,0.0 +15631,7,30,30,0.0 +15631,10,31,11,0.0 +15631,28,45.6,14,0.0 +15632,76,18,4,0.0 +15632,62,49.3,11,0.0 +15632,71,21.5,30,0.0 +15632,12,38,35,0.0 +15632,57,19.5,18,0.0 +15632,46,12,3,0.0 +15632,37,26,1,0.0 +15632,54,7.45,27,0.0 +15632,22,21,13,0.0 +15632,59,55,27,0.0 +15632,36,19,6,0.0 +15632,53,32.8,12,0.0 +15632,56,38,50,0.0 +15632,32,32,26,0.0 +15632,13,6,10,0.0 +15632,23,9,36,0.0 +15632,55,24,20,0.0 +15632,68,12.5,12,0.0 +15632,18,62.5,12,0.0 +15632,44,19.45,50,0.0 +15632,11,21,27,0.0 +15632,64,33.25,29,0.0 +15632,4,22,43,0.0 +15632,8,40,30,0.0 +15632,48,12.75,25,0.0 +15632,65,21.05,50,0.0 +15632,3,10,27,0.0 +15632,35,18,34,0.0 +15632,40,18.4,29,0.0 +15632,25,14,44,0.0 +15632,73,15,9,0.0 +15632,26,31.23,28,0.0 +15632,77,13,9,0.0 +15632,43,46,39,0.0 +15632,60,34,20,0.0 +15632,31,12.5,26,0.0 +15632,19,9.2,39,0.0 +15632,27,43.9,19,0.0 +15632,33,2.5,30,0.0 +15632,6,25,39,0.0 +15632,61,28.5,12,0.0 +15632,30,25.89,8,0.0 +15632,38,263.5,1,0.0 +15632,47,9.5,24,0.0 +15632,21,10,44,0.0 +15632,67,14,47,0.0 +15632,72,34.8,40,0.0 +15632,39,18,42,0.0 +15632,24,4.5,23,0.0 +15632,51,53,37,0.0 +15632,29,123.79,19,0.0 +15632,63,43.9,31,0.0 +15632,74,10,25,0.0 +15632,17,39,25,0.0 +15632,9,97,41,0.0 +15632,2,19,1,0.0 +15632,50,16.25,41,0.0 +15632,66,17,22,0.0 +15632,69,36,4,0.0 +15632,1,18,50,0.0 +15632,7,30,13,0.0 +15632,49,20,45,0.0 +15632,20,81,22,0.0 +15632,42,14,30,0.0 +15632,10,31,34,0.0 +15632,41,9.65,28,0.0 +15632,5,21.35,32,0.0 +15632,75,7.75,15,0.0 +15632,70,15,47,0.0 +15632,52,7,50,0.0 +15632,16,17.45,30,0.0 +15632,28,45.6,22,0.0 +15632,58,13.25,21,0.0 +15632,34,14,44,0.0 +15632,15,15.5,49,0.0 +15632,14,23.25,22,0.0 +15632,45,9.5,39,0.0 +15633,13,6,4,0.0 +15633,41,9.65,3,0.0 +15633,31,12.5,44,0.0 +15633,21,10,18,0.0 +15633,55,24,4,0.0 +15633,77,13,48,0.0 +15633,43,46,5,0.0 +15633,16,17.45,19,0.0 +15633,40,18.4,37,0.0 +15633,19,9.2,39,0.0 +15633,48,12.75,10,0.0 +15633,76,18,4,0.0 +15633,28,45.6,45,0.0 +15633,69,36,36,0.0 +15633,37,26,38,0.0 +15633,24,4.5,30,0.0 +15633,50,16.25,14,0.0 +15633,60,34,24,0.0 +15633,30,25.89,14,0.0 +15633,49,20,21,0.0 +15633,68,12.5,27,0.0 +15633,62,49.3,17,0.0 +15633,61,28.5,34,0.0 +15633,29,123.79,4,0.0 +15633,25,14,9,0.0 +15633,5,21.35,41,0.0 +15633,52,7,5,0.0 +15633,64,33.25,6,0.0 +15633,7,30,35,0.0 +15633,32,32,29,0.0 +15633,26,31.23,33,0.0 +15633,17,39,10,0.0 +15633,66,17,10,0.0 +15633,27,43.9,8,0.0 +15633,18,62.5,41,0.0 +15633,4,22,15,0.0 +15633,10,31,39,0.0 +15633,65,21.05,43,0.0 +15633,42,14,12,0.0 +15633,71,21.5,34,0.0 +15633,56,38,33,0.0 +15633,39,18,35,0.0 +15633,20,81,34,0.0 +15633,36,19,17,0.0 +15633,15,15.5,13,0.0 +15633,2,19,50,0.0 +15633,35,18,13,0.0 +15633,1,18,40,0.0 +15633,11,21,33,0.0 +15633,22,21,32,0.0 +15633,70,15,4,0.0 +15633,51,53,36,0.0 +15633,45,9.5,7,0.0 +15633,44,19.45,28,0.0 +15633,47,9.5,37,0.0 +15633,34,14,38,0.0 +15633,58,13.25,11,0.0 +15633,72,34.8,13,0.0 +15633,3,10,18,0.0 +15633,14,23.25,26,0.0 +15633,23,9,8,0.0 +15633,53,32.8,20,0.0 +15634,52,7,5,0.0 +15634,76,18,21,0.0 +15634,72,34.8,24,0.0 +15634,59,55,15,0.0 +15634,21,10,50,0.0 +15634,41,9.65,25,0.0 +15634,13,6,50,0.0 +15634,15,15.5,35,0.0 +15634,73,15,4,0.0 +15634,65,21.05,41,0.0 +15634,77,13,14,0.0 +15634,9,97,3,0.0 +15634,12,38,3,0.0 +15634,57,19.5,48,0.0 +15634,34,14,25,0.0 +15634,67,14,17,0.0 +15634,49,20,15,0.0 +15634,53,32.8,18,0.0 +15634,22,21,42,0.0 +15634,69,36,32,0.0 +15634,14,23.25,1,0.0 +15634,39,18,25,0.0 +15634,37,26,22,0.0 +15634,48,12.75,36,0.0 +15634,51,53,37,0.0 +15634,35,18,6,0.0 +15634,43,46,20,0.0 +15634,40,18.4,31,0.0 +15634,61,28.5,12,0.0 +15634,44,19.45,47,0.0 +15634,58,13.25,49,0.0 +15634,2,19,41,0.0 +15634,23,9,14,0.0 +15634,6,25,43,0.0 +15634,31,12.5,28,0.0 +15634,20,81,44,0.0 +15634,30,25.89,17,0.0 +15634,42,14,23,0.0 +15634,32,32,49,0.0 +15634,33,2.5,28,0.0 +15634,11,21,36,0.0 +15634,36,19,11,0.0 +15634,68,12.5,26,0.0 +15634,26,31.23,42,0.0 +15634,47,9.5,15,0.0 +15634,1,18,38,0.0 +15634,75,7.75,21,0.0 +15634,27,43.9,27,0.0 +15634,64,33.25,15,0.0 +15634,60,34,20,0.0 +15634,62,49.3,15,0.0 +15634,29,123.79,24,0.0 +15634,46,12,28,0.0 +15634,8,40,27,0.0 +15634,7,30,37,0.0 +15634,70,15,27,0.0 +15634,45,9.5,18,0.0 +15635,65,21.05,32,0.0 +15635,20,81,3,0.0 +15635,58,13.25,26,0.0 +15635,25,14,16,0.0 +15635,26,31.23,47,0.0 +15635,60,34,6,0.0 +15635,15,15.5,17,0.0 +15635,46,12,11,0.0 +15635,44,19.45,20,0.0 +15635,51,53,6,0.0 +15635,9,97,27,0.0 +15635,40,18.4,12,0.0 +15635,19,9.2,11,0.0 +15635,59,55,34,0.0 +15635,11,21,3,0.0 +15635,66,17,40,0.0 +15635,33,2.5,20,0.0 +15635,31,12.5,37,0.0 +15635,2,19,44,0.0 +15635,76,18,32,0.0 +15635,10,31,12,0.0 +15635,21,10,26,0.0 +15635,22,21,47,0.0 +15635,13,6,19,0.0 +15635,32,32,22,0.0 +15635,18,62.5,29,0.0 +15635,64,33.25,15,0.0 +15635,4,22,26,0.0 +15635,47,9.5,14,0.0 +15635,71,21.5,39,0.0 +15635,45,9.5,34,0.0 +15635,16,17.45,38,0.0 +15635,7,30,12,0.0 +15635,30,25.89,19,0.0 +15635,75,7.75,18,0.0 +15635,50,16.25,40,0.0 +15635,5,21.35,24,0.0 +15635,39,18,4,0.0 +15635,6,25,5,0.0 +15635,17,39,44,0.0 +15635,41,9.65,13,0.0 +15635,57,19.5,47,0.0 +15635,43,46,10,0.0 +15635,8,40,26,0.0 +15635,14,23.25,4,0.0 +15635,27,43.9,13,0.0 +15635,77,13,49,0.0 +15635,24,4.5,22,0.0 +15635,61,28.5,45,0.0 +15635,36,19,16,0.0 +15635,73,15,20,0.0 +15635,68,12.5,24,0.0 +15636,63,43.9,7,0.0 +15636,6,25,30,0.0 +15636,16,17.45,42,0.0 +15636,15,15.5,40,0.0 +15636,4,22,45,0.0 +15636,62,49.3,4,0.0 +15636,21,10,15,0.0 +15636,42,14,49,0.0 +15636,68,12.5,39,0.0 +15636,34,14,1,0.0 +15636,57,19.5,42,0.0 +15636,33,2.5,38,0.0 +15636,38,263.5,21,0.0 +15636,11,21,39,0.0 +15636,50,16.25,39,0.0 +15636,76,18,46,0.0 +15636,64,33.25,48,0.0 +15636,1,18,32,0.0 +15636,9,97,25,0.0 +15636,18,62.5,29,0.0 +15636,44,19.45,25,0.0 +15636,7,30,23,0.0 +15636,36,19,4,0.0 +15636,31,12.5,35,0.0 +15636,8,40,24,0.0 +15636,70,15,14,0.0 +15636,30,25.89,1,0.0 +15636,19,9.2,49,0.0 +15636,17,39,16,0.0 +15636,53,32.8,11,0.0 +15636,46,12,29,0.0 +15636,66,17,37,0.0 +15636,2,19,38,0.0 +15636,12,38,31,0.0 +15636,47,9.5,29,0.0 +15636,27,43.9,49,0.0 +15636,49,20,12,0.0 +15636,58,13.25,17,0.0 +15636,10,31,27,0.0 +15636,22,21,34,0.0 +15636,73,15,12,0.0 +15636,5,21.35,21,0.0 +15636,45,9.5,34,0.0 +15636,75,7.75,21,0.0 +15636,60,34,34,0.0 +15636,74,10,1,0.0 +15636,55,24,21,0.0 +15636,24,4.5,20,0.0 +15636,56,38,37,0.0 +15636,35,18,50,0.0 +15636,25,14,50,0.0 +15636,48,12.75,29,0.0 +15636,61,28.5,41,0.0 +15636,40,18.4,9,0.0 +15636,29,123.79,49,0.0 +15636,65,21.05,44,0.0 +15636,28,45.6,39,0.0 +15636,41,9.65,33,0.0 +15636,52,7,24,0.0 +15636,26,31.23,1,0.0 +15636,3,10,6,0.0 +15636,13,6,25,0.0 +15636,14,23.25,23,0.0 +15636,37,26,35,0.0 +15636,54,7.45,15,0.0 +15636,67,14,16,0.0 +15637,15,15.5,46,0.0 +15637,13,6,50,0.0 +15637,72,34.8,8,0.0 +15637,5,21.35,45,0.0 +15637,21,10,14,0.0 +15637,49,20,32,0.0 +15637,41,9.65,15,0.0 +15637,6,25,19,0.0 +15637,2,19,32,0.0 +15637,50,16.25,30,0.0 +15637,52,7,13,0.0 +15637,42,14,14,0.0 +15637,65,21.05,10,0.0 +15637,30,25.89,39,0.0 +15637,74,10,9,0.0 +15637,35,18,40,0.0 +15637,56,38,42,0.0 +15637,60,34,50,0.0 +15637,7,30,16,0.0 +15637,10,31,45,0.0 +15637,43,46,3,0.0 +15637,62,49.3,45,0.0 +15637,73,15,49,0.0 +15637,47,9.5,3,0.0 +15637,16,17.45,44,0.0 +15637,11,21,13,0.0 +15637,70,15,35,0.0 +15637,18,62.5,28,0.0 +15637,32,32,18,0.0 +15637,48,12.75,39,0.0 +15637,25,14,39,0.0 +15637,44,19.45,36,0.0 +15637,46,12,37,0.0 +15637,1,18,30,0.0 +15637,77,13,7,0.0 +15637,26,31.23,34,0.0 +15637,9,97,39,0.0 +15637,67,14,47,0.0 +15637,55,24,12,0.0 +15637,12,38,26,0.0 +15637,23,9,18,0.0 +15637,8,40,46,0.0 +15637,51,53,38,0.0 +15637,75,7.75,37,0.0 +15637,36,19,20,0.0 +15637,20,81,33,0.0 +15637,19,9.2,33,0.0 +15637,3,10,21,0.0 +15637,4,22,31,0.0 +15637,37,26,40,0.0 +15637,61,28.5,13,0.0 +15637,14,23.25,21,0.0 +15637,68,12.5,43,0.0 +15637,57,19.5,3,0.0 +15637,63,43.9,16,0.0 +15637,45,9.5,35,0.0 +15637,66,17,44,0.0 +15637,71,21.5,49,0.0 +15637,64,33.25,8,0.0 +15637,29,123.79,25,0.0 +15637,69,36,4,0.0 +15638,1,18,1,0.0 +15638,63,43.9,19,0.0 +15638,50,16.25,41,0.0 +15638,46,12,16,0.0 +15638,40,18.4,49,0.0 +15638,33,2.5,29,0.0 +15638,67,14,35,0.0 +15638,45,9.5,5,0.0 +15638,13,6,7,0.0 +15638,6,25,25,0.0 +15638,38,263.5,40,0.0 +15638,21,10,25,0.0 +15638,14,23.25,25,0.0 +15638,39,18,32,0.0 +15638,15,15.5,34,0.0 +15638,28,45.6,45,0.0 +15638,70,15,29,0.0 +15638,51,53,27,0.0 +15638,59,55,1,0.0 +15638,42,14,38,0.0 +15638,19,9.2,34,0.0 +15638,72,34.8,9,0.0 +15638,25,14,5,0.0 +15638,4,22,29,0.0 +15638,8,40,27,0.0 +15638,36,19,24,0.0 +15638,76,18,40,0.0 +15638,24,4.5,7,0.0 +15638,58,13.25,2,0.0 +15638,62,49.3,43,0.0 +15638,54,7.45,30,0.0 +15638,48,12.75,23,0.0 +15638,17,39,49,0.0 +15638,47,9.5,39,0.0 +15638,20,81,49,0.0 +15638,26,31.23,14,0.0 +15638,44,19.45,6,0.0 +15638,10,31,48,0.0 +15638,61,28.5,36,0.0 +15638,43,46,39,0.0 +15638,16,17.45,3,0.0 +15638,22,21,9,0.0 +15638,9,97,20,0.0 +15638,75,7.75,37,0.0 +15638,64,33.25,9,0.0 +15638,12,38,35,0.0 +15638,66,17,49,0.0 +15638,32,32,11,0.0 +15638,68,12.5,7,0.0 +15638,57,19.5,20,0.0 +15639,35,18,22,0.0 +15639,43,46,2,0.0 +15639,3,10,39,0.0 +15639,11,21,12,0.0 +15639,67,14,45,0.0 +15639,75,7.75,23,0.0 +15639,41,9.65,3,0.0 +15639,8,40,47,0.0 +15639,38,263.5,10,0.0 +15639,71,21.5,49,0.0 +15639,32,32,48,0.0 +15639,14,23.25,25,0.0 +15639,5,21.35,20,0.0 +15639,48,12.75,23,0.0 +15639,66,17,28,0.0 +15639,39,18,35,0.0 +15639,57,19.5,19,0.0 +15639,30,25.89,36,0.0 +15639,63,43.9,26,0.0 +15639,23,9,29,0.0 +15639,40,18.4,6,0.0 +15639,9,97,38,0.0 +15639,2,19,7,0.0 +15639,18,62.5,3,0.0 +15639,52,7,45,0.0 +15639,42,14,17,0.0 +15639,49,20,41,0.0 +15639,17,39,31,0.0 +15639,69,36,49,0.0 +15639,56,38,16,0.0 +15639,70,15,9,0.0 +15639,36,19,25,0.0 +15639,15,15.5,49,0.0 +15639,46,12,2,0.0 +15639,16,17.45,24,0.0 +15639,60,34,20,0.0 +15639,24,4.5,6,0.0 +15639,64,33.25,9,0.0 +15639,1,18,7,0.0 +15639,28,45.6,48,0.0 +15640,63,43.9,31,0.0 +15640,56,38,43,0.0 +15640,53,32.8,29,0.0 +15640,72,34.8,23,0.0 +15640,3,10,7,0.0 +15640,74,10,11,0.0 +15640,2,19,47,0.0 +15640,46,12,5,0.0 +15640,76,18,15,0.0 +15640,24,4.5,35,0.0 +15640,28,45.6,45,0.0 +15640,23,9,34,0.0 +15640,50,16.25,36,0.0 +15640,48,12.75,33,0.0 +15640,49,20,31,0.0 +15640,59,55,6,0.0 +15640,45,9.5,13,0.0 +15640,9,97,28,0.0 +15640,36,19,46,0.0 +15640,17,39,43,0.0 +15640,64,33.25,35,0.0 +15640,10,31,48,0.0 +15640,71,21.5,27,0.0 +15640,37,26,17,0.0 +15640,40,18.4,30,0.0 +15640,12,38,30,0.0 +15640,18,62.5,22,0.0 +15640,4,22,8,0.0 +15640,42,14,48,0.0 +15640,44,19.45,37,0.0 +15640,35,18,5,0.0 +15640,30,25.89,49,0.0 +15640,11,21,16,0.0 +15640,34,14,3,0.0 +15640,73,15,37,0.0 +15640,70,15,32,0.0 +15640,77,13,12,0.0 +15640,39,18,1,0.0 +15641,12,38,29,0.0 +15641,58,13.25,10,0.0 +15641,74,10,20,0.0 +15641,47,9.5,48,0.0 +15641,43,46,14,0.0 +15641,2,19,19,0.0 +15641,44,19.45,47,0.0 +15641,16,17.45,4,0.0 +15641,56,38,3,0.0 +15641,26,31.23,31,0.0 +15641,29,123.79,20,0.0 +15641,37,26,34,0.0 +15641,6,25,4,0.0 +15641,1,18,24,0.0 +15641,28,45.6,23,0.0 +15641,59,55,39,0.0 +15641,24,4.5,40,0.0 +15641,8,40,43,0.0 +15641,71,21.5,32,0.0 +15641,54,7.45,16,0.0 +15641,40,18.4,37,0.0 +15641,13,6,15,0.0 +15641,15,15.5,4,0.0 +15641,72,34.8,37,0.0 +15641,57,19.5,20,0.0 +15641,18,62.5,22,0.0 +15641,50,16.25,27,0.0 +15641,31,12.5,10,0.0 +15641,55,24,35,0.0 +15641,33,2.5,11,0.0 +15641,76,18,28,0.0 +15641,75,7.75,4,0.0 +15641,49,20,19,0.0 +15641,4,22,43,0.0 +15641,45,9.5,34,0.0 +15641,73,15,24,0.0 +15641,7,30,42,0.0 +15641,32,32,10,0.0 +15641,70,15,26,0.0 +15641,30,25.89,14,0.0 +15641,19,9.2,19,0.0 +15641,67,14,1,0.0 +15641,23,9,14,0.0 +15641,38,263.5,43,0.0 +15641,20,81,19,0.0 +15641,25,14,36,0.0 +15641,46,12,40,0.0 +15641,27,43.9,30,0.0 +15641,65,21.05,7,0.0 +15641,66,17,44,0.0 +15641,22,21,34,0.0 +15641,51,53,14,0.0 +15641,36,19,14,0.0 +15641,10,31,16,0.0 +15641,3,10,43,0.0 +15641,41,9.65,30,0.0 +15641,60,34,31,0.0 +15641,61,28.5,16,0.0 +15642,53,32.8,7,0.0 +15643,14,23.25,11,0.0 +15643,6,25,30,0.0 +15643,49,20,41,0.0 +15643,52,7,7,0.0 +15643,18,62.5,39,0.0 +15643,16,17.45,5,0.0 +15643,70,15,35,0.0 +15643,9,97,41,0.0 +15643,57,19.5,30,0.0 +15643,60,34,14,0.0 +15643,45,9.5,3,0.0 +15643,1,18,39,0.0 +15643,8,40,11,0.0 +15643,50,16.25,17,0.0 +15643,74,10,40,0.0 +15643,30,25.89,3,0.0 +15643,42,14,41,0.0 +15643,23,9,26,0.0 +15643,44,19.45,10,0.0 +15643,63,43.9,37,0.0 +15643,36,19,1,0.0 +15643,27,43.9,9,0.0 +15643,24,4.5,46,0.0 +15643,59,55,43,0.0 +15643,67,14,28,0.0 +15643,46,12,29,0.0 +15643,68,12.5,22,0.0 +15643,38,263.5,9,0.0 +15643,26,31.23,5,0.0 +15643,62,49.3,23,0.0 +15643,19,9.2,30,0.0 +15643,3,10,14,0.0 +15643,71,21.5,47,0.0 +15643,43,46,44,0.0 +15643,33,2.5,6,0.0 +15643,17,39,24,0.0 +15643,4,22,46,0.0 +15643,39,18,9,0.0 +15643,51,53,2,0.0 +15643,47,9.5,21,0.0 +15643,5,21.35,5,0.0 +15643,66,17,7,0.0 +15643,7,30,33,0.0 +15643,22,21,12,0.0 +15643,12,38,2,0.0 +15643,58,13.25,14,0.0 +15643,2,19,41,0.0 +15643,34,14,7,0.0 +15643,28,45.6,32,0.0 +15643,37,26,33,0.0 +15643,11,21,11,0.0 +15643,13,6,2,0.0 +15643,64,33.25,47,0.0 +15643,48,12.75,14,0.0 +15643,25,14,8,0.0 +15643,77,13,18,0.0 +15643,54,7.45,49,0.0 +15643,73,15,8,0.0 +15643,76,18,13,0.0 +15643,69,36,6,0.0 +15644,61,28.5,5,0.0 +15644,8,40,26,0.0 +15644,49,20,47,0.0 +15644,60,34,43,0.0 +15644,77,13,11,0.0 +15644,23,9,29,0.0 +15644,3,10,3,0.0 +15644,29,123.79,27,0.0 +15644,74,10,20,0.0 +15644,28,45.6,29,0.0 +15644,76,18,26,0.0 +15644,18,62.5,31,0.0 +15644,5,21.35,38,0.0 +15644,71,21.5,41,0.0 +15644,35,18,21,0.0 +15644,54,7.45,2,0.0 +15644,64,33.25,32,0.0 +15644,15,15.5,34,0.0 +15644,10,31,18,0.0 +15644,41,9.65,8,0.0 +15644,47,9.5,44,0.0 +15644,65,21.05,44,0.0 +15644,17,39,3,0.0 +15644,19,9.2,7,0.0 +15644,32,32,50,0.0 +15644,33,2.5,2,0.0 +15644,62,49.3,35,0.0 +15644,14,23.25,25,0.0 +15644,1,18,19,0.0 +15644,58,13.25,15,0.0 +15644,37,26,41,0.0 +15644,69,36,37,0.0 +15644,7,30,7,0.0 +15644,20,81,31,0.0 +15644,11,21,31,0.0 +15644,57,19.5,23,0.0 +15644,27,43.9,1,0.0 +15644,55,24,10,0.0 +15645,69,36,40,0.0 +15645,34,14,22,0.0 +15645,66,17,42,0.0 +15645,61,28.5,31,0.0 +15645,3,10,18,0.0 +15645,13,6,2,0.0 +15645,26,31.23,46,0.0 +15645,56,38,13,0.0 +15645,60,34,7,0.0 +15645,17,39,35,0.0 +15645,67,14,19,0.0 +15645,18,62.5,33,0.0 +15645,41,9.65,40,0.0 +15645,9,97,21,0.0 +15645,54,7.45,44,0.0 +15645,68,12.5,9,0.0 +15645,58,13.25,40,0.0 +15645,55,24,15,0.0 +15645,71,21.5,47,0.0 +15645,16,17.45,48,0.0 +15645,43,46,46,0.0 +15645,70,15,27,0.0 +15645,5,21.35,13,0.0 +15645,57,19.5,48,0.0 +15645,14,23.25,23,0.0 +15645,20,81,45,0.0 +15645,74,10,45,0.0 +15645,6,25,18,0.0 +15645,38,263.5,40,0.0 +15645,73,15,11,0.0 +15645,27,43.9,19,0.0 +15645,52,7,1,0.0 +15645,29,123.79,26,0.0 +15645,65,21.05,47,0.0 +15645,25,14,2,0.0 +15645,39,18,12,0.0 +15645,22,21,4,0.0 +15645,12,38,4,0.0 +15645,24,4.5,50,0.0 +15645,63,43.9,48,0.0 +15645,47,9.5,33,0.0 +15645,75,7.75,41,0.0 +15645,30,25.89,36,0.0 +15645,36,19,47,0.0 +15645,77,13,15,0.0 +15645,10,31,29,0.0 +15645,31,12.5,50,0.0 +15645,21,10,33,0.0 +15645,23,9,16,0.0 +15645,51,53,29,0.0 +15645,45,9.5,25,0.0 +15645,11,21,2,0.0 +15645,48,12.75,45,0.0 +15645,1,18,11,0.0 +15645,19,9.2,36,0.0 +15645,46,12,42,0.0 +15645,53,32.8,47,0.0 +15645,32,32,15,0.0 +15645,62,49.3,27,0.0 +15645,2,19,50,0.0 +15645,33,2.5,7,0.0 +15645,50,16.25,27,0.0 +15645,7,30,3,0.0 +15645,8,40,27,0.0 +15645,15,15.5,35,0.0 +15645,35,18,37,0.0 +15645,40,18.4,35,0.0 +15645,72,34.8,16,0.0 +15645,37,26,48,0.0 +15645,4,22,28,0.0 +15645,28,45.6,8,0.0 +15645,49,20,32,0.0 +15645,76,18,46,0.0 +15645,44,19.45,17,0.0 +15646,47,9.5,11,0.0 +15646,68,12.5,35,0.0 +15646,69,36,23,0.0 +15646,26,31.23,11,0.0 +15646,14,23.25,12,0.0 +15646,54,7.45,48,0.0 +15646,32,32,16,0.0 +15646,12,38,17,0.0 +15646,67,14,49,0.0 +15646,38,263.5,34,0.0 +15646,40,18.4,25,0.0 +15646,31,12.5,48,0.0 +15646,41,9.65,1,0.0 +15646,46,12,48,0.0 +15646,63,43.9,14,0.0 +15646,70,15,12,0.0 +15646,9,97,12,0.0 +15646,42,14,33,0.0 +15646,28,45.6,49,0.0 +15646,33,2.5,16,0.0 +15646,22,21,19,0.0 +15646,20,81,47,0.0 +15646,35,18,2,0.0 +15646,64,33.25,33,0.0 +15646,6,25,24,0.0 +15646,75,7.75,24,0.0 +15646,76,18,11,0.0 +15646,52,7,25,0.0 +15646,37,26,3,0.0 +15646,73,15,10,0.0 +15646,21,10,29,0.0 +15646,29,123.79,6,0.0 +15646,34,14,17,0.0 +15646,61,28.5,37,0.0 +15646,16,17.45,14,0.0 +15646,59,55,21,0.0 +15646,58,13.25,41,0.0 +15647,43,46,45,0.0 +15647,25,14,20,0.0 +15647,28,45.6,20,0.0 +15647,68,12.5,19,0.0 +15647,17,39,4,0.0 +15647,66,17,25,0.0 +15647,35,18,36,0.0 +15647,55,24,16,0.0 +15647,59,55,44,0.0 +15647,9,97,4,0.0 +15647,1,18,10,0.0 +15647,26,31.23,38,0.0 +15647,31,12.5,28,0.0 +15647,4,22,12,0.0 +15647,47,9.5,33,0.0 +15647,77,13,18,0.0 +15647,30,25.89,43,0.0 +15647,53,32.8,15,0.0 +15647,41,9.65,19,0.0 +15647,57,19.5,20,0.0 +15647,13,6,47,0.0 +15647,63,43.9,38,0.0 +15647,64,33.25,26,0.0 +15647,38,263.5,24,0.0 +15647,6,25,2,0.0 +15647,11,21,1,0.0 +15647,16,17.45,34,0.0 +15647,36,19,40,0.0 +15647,65,21.05,42,0.0 +15647,74,10,34,0.0 +15647,24,4.5,9,0.0 +15647,54,7.45,29,0.0 +15647,20,81,22,0.0 +15647,5,21.35,3,0.0 +15647,52,7,39,0.0 +15647,7,30,2,0.0 +15647,44,19.45,14,0.0 +15647,3,10,35,0.0 +15647,72,34.8,15,0.0 +15647,29,123.79,21,0.0 +15647,69,36,29,0.0 +15647,33,2.5,29,0.0 +15647,58,13.25,5,0.0 +15647,8,40,38,0.0 +15647,12,38,27,0.0 +15647,19,9.2,24,0.0 +15647,46,12,48,0.0 +15647,62,49.3,26,0.0 +15647,14,23.25,17,0.0 +15648,15,15.5,22,0.0 +15648,49,20,29,0.0 +15648,67,14,25,0.0 +15648,38,263.5,14,0.0 +15648,24,4.5,17,0.0 +15648,5,21.35,31,0.0 +15648,1,18,27,0.0 +15648,59,55,9,0.0 +15648,16,17.45,33,0.0 +15648,7,30,16,0.0 +15648,25,14,37,0.0 +15648,30,25.89,22,0.0 +15648,33,2.5,14,0.0 +15648,8,40,34,0.0 +15648,74,10,13,0.0 +15648,11,21,37,0.0 +15648,13,6,36,0.0 +15648,20,81,32,0.0 +15648,75,7.75,40,0.0 +15648,56,38,33,0.0 +15648,23,9,41,0.0 +15648,76,18,27,0.0 +15648,64,33.25,5,0.0 +15648,3,10,3,0.0 +15648,39,18,10,0.0 +15648,21,10,30,0.0 +15648,31,12.5,13,0.0 +15648,6,25,40,0.0 +15648,48,12.75,8,0.0 +15648,18,62.5,9,0.0 +15648,51,53,26,0.0 +15648,58,13.25,14,0.0 +15648,45,9.5,34,0.0 +15648,35,18,6,0.0 +15648,17,39,21,0.0 +15648,50,16.25,19,0.0 +15648,55,24,12,0.0 +15648,9,97,50,0.0 +15648,19,9.2,18,0.0 +15648,28,45.6,38,0.0 +15648,52,7,41,0.0 +15648,14,23.25,28,0.0 +15648,69,36,37,0.0 +15649,75,7.75,1,0.0 +15649,8,40,13,0.0 +15649,57,19.5,6,0.0 +15649,73,15,35,0.0 +15649,71,21.5,10,0.0 +15649,44,19.45,8,0.0 +15649,2,19,9,0.0 +15649,52,7,47,0.0 +15649,47,9.5,10,0.0 +15649,39,18,41,0.0 +15649,28,45.6,40,0.0 +15649,15,15.5,10,0.0 +15649,55,24,26,0.0 +15649,13,6,34,0.0 +15649,65,21.05,8,0.0 +15649,27,43.9,31,0.0 +15649,51,53,35,0.0 +15649,20,81,1,0.0 +15649,56,38,24,0.0 +15649,19,9.2,25,0.0 +15649,45,9.5,28,0.0 +15649,63,43.9,41,0.0 +15649,42,14,50,0.0 +15649,41,9.65,40,0.0 +15650,52,7,5,0.0 +15650,16,17.45,28,0.0 +15650,61,28.5,43,0.0 +15650,42,14,11,0.0 +15650,71,21.5,19,0.0 +15650,9,97,44,0.0 +15650,2,19,26,0.0 +15650,26,31.23,7,0.0 +15650,46,12,13,0.0 +15650,25,14,2,0.0 +15650,28,45.6,37,0.0 +15650,24,4.5,30,0.0 +15650,65,21.05,7,0.0 +15650,30,25.89,14,0.0 +15650,38,263.5,10,0.0 +15650,45,9.5,3,0.0 +15650,75,7.75,11,0.0 +15651,27,43.9,41,0.0 +15651,45,9.5,46,0.0 +15651,9,97,33,0.0 +15651,44,19.45,15,0.0 +15651,4,22,25,0.0 +15651,39,18,36,0.0 +15651,55,24,6,0.0 +15651,58,13.25,2,0.0 +15651,2,19,28,0.0 +15651,67,14,20,0.0 +15651,10,31,48,0.0 +15651,16,17.45,3,0.0 +15651,68,12.5,23,0.0 +15651,50,16.25,7,0.0 +15651,35,18,15,0.0 +15651,33,2.5,41,0.0 +15651,48,12.75,48,0.0 +15652,22,21,24,0.0 +15652,26,31.23,22,0.0 +15652,24,4.5,49,0.0 +15652,42,14,27,0.0 +15652,35,18,6,0.0 +15652,61,28.5,18,0.0 +15653,70,15,19,0.0 +15653,29,123.79,41,0.0 +15653,39,18,35,0.0 +15653,31,12.5,29,0.0 +15653,59,55,12,0.0 +15653,51,53,12,0.0 +15653,21,10,46,0.0 +15653,65,21.05,5,0.0 +15653,57,19.5,34,0.0 +15653,60,34,13,0.0 +15653,55,24,6,0.0 +15653,9,97,44,0.0 +15653,25,14,10,0.0 +15653,5,21.35,9,0.0 +15653,36,19,10,0.0 +15653,2,19,19,0.0 +15653,18,62.5,6,0.0 +15653,1,18,9,0.0 +15653,22,21,32,0.0 +15653,32,32,48,0.0 +15653,52,7,48,0.0 +15653,75,7.75,43,0.0 +15653,7,30,5,0.0 +15654,41,9.65,37,0.0 +15654,1,18,6,0.0 +15654,74,10,37,0.0 +15654,27,43.9,15,0.0 +15654,14,23.25,40,0.0 +15654,71,21.5,41,0.0 +15654,40,18.4,34,0.0 +15654,56,38,46,0.0 +15654,37,26,35,0.0 +15654,63,43.9,31,0.0 +15654,8,40,40,0.0 +15654,28,45.6,29,0.0 +15654,5,21.35,34,0.0 +15654,26,31.23,47,0.0 +15654,13,6,4,0.0 +15654,61,28.5,28,0.0 +15654,36,19,12,0.0 +15654,29,123.79,45,0.0 +15654,7,30,13,0.0 +15654,60,34,42,0.0 +15654,51,53,40,0.0 +15654,3,10,44,0.0 +15654,12,38,7,0.0 +15654,55,24,17,0.0 +15654,54,7.45,43,0.0 +15654,20,81,40,0.0 +15654,65,21.05,30,0.0 +15654,58,13.25,17,0.0 +15654,62,49.3,34,0.0 +15654,64,33.25,4,0.0 +15654,73,15,34,0.0 +15654,53,32.8,1,0.0 +15654,66,17,29,0.0 +15654,75,7.75,49,0.0 +15654,59,55,46,0.0 +15654,43,46,31,0.0 +15654,47,9.5,24,0.0 +15654,50,16.25,9,0.0 +15654,11,21,30,0.0 +15654,39,18,25,0.0 +15654,69,36,36,0.0 +15654,57,19.5,31,0.0 +15654,34,14,43,0.0 +15654,67,14,39,0.0 +15654,48,12.75,33,0.0 +15654,17,39,25,0.0 +15654,32,32,47,0.0 +15654,6,25,35,0.0 +15654,76,18,24,0.0 +15654,22,21,47,0.0 +15654,68,12.5,18,0.0 +15654,35,18,20,0.0 +15654,77,13,27,0.0 +15654,72,34.8,18,0.0 +15654,19,9.2,38,0.0 +15654,70,15,6,0.0 +15654,49,20,35,0.0 +15654,23,9,50,0.0 +15654,4,22,49,0.0 +15654,16,17.45,47,0.0 +15654,33,2.5,37,0.0 +15654,18,62.5,45,0.0 +15654,46,12,16,0.0 +15654,25,14,1,0.0 +15654,9,97,48,0.0 +15654,31,12.5,10,0.0 +15654,15,15.5,47,0.0 +15655,27,43.9,16,0.0 +15655,23,9,38,0.0 +15655,40,18.4,36,0.0 +15655,26,31.23,7,0.0 +15655,38,263.5,27,0.0 +15655,35,18,2,0.0 +15655,13,6,50,0.0 +15655,60,34,11,0.0 +15655,17,39,28,0.0 +15656,53,32.8,48,0.0 +15656,18,62.5,24,0.0 +15656,5,21.35,17,0.0 +15656,62,49.3,36,0.0 +15656,68,12.5,23,0.0 +15656,72,34.8,34,0.0 +15656,40,18.4,23,0.0 +15656,32,32,30,0.0 +15656,35,18,5,0.0 +15656,70,15,36,0.0 +15656,30,25.89,19,0.0 +15656,66,17,38,0.0 +15656,57,19.5,18,0.0 +15656,63,43.9,42,0.0 +15656,12,38,40,0.0 +15656,39,18,35,0.0 +15656,2,19,17,0.0 +15656,71,21.5,35,0.0 +15656,20,81,18,0.0 +15656,1,18,7,0.0 +15656,50,16.25,10,0.0 +15656,9,97,7,0.0 +15656,11,21,25,0.0 +15656,73,15,45,0.0 +15656,28,45.6,45,0.0 +15656,74,10,40,0.0 +15656,47,9.5,46,0.0 +15656,64,33.25,12,0.0 +15656,48,12.75,48,0.0 +15656,23,9,14,0.0 +15656,77,13,21,0.0 +15656,13,6,45,0.0 +15656,26,31.23,20,0.0 +15656,21,10,39,0.0 +15656,3,10,15,0.0 +15656,7,30,9,0.0 +15656,43,46,27,0.0 +15656,59,55,4,0.0 +15656,17,39,23,0.0 +15656,42,14,49,0.0 +15656,29,123.79,15,0.0 +15656,16,17.45,21,0.0 +15656,10,31,12,0.0 +15656,75,7.75,39,0.0 +15656,36,19,33,0.0 +15656,37,26,19,0.0 +15656,51,53,42,0.0 +15656,49,20,44,0.0 +15656,46,12,50,0.0 +15656,54,7.45,8,0.0 +15656,45,9.5,30,0.0 +15656,55,24,20,0.0 +15656,38,263.5,37,0.0 +15656,67,14,5,0.0 +15656,33,2.5,39,0.0 +15657,24,4.5,37,0.0 +15657,18,62.5,43,0.0 +15657,43,46,20,0.0 +15657,34,14,48,0.0 +15657,14,23.25,21,0.0 +15657,69,36,5,0.0 +15657,77,13,42,0.0 +15657,51,53,33,0.0 +15657,57,19.5,11,0.0 +15657,11,21,43,0.0 +15657,36,19,44,0.0 +15657,68,12.5,7,0.0 +15657,3,10,13,0.0 +15657,8,40,5,0.0 +15657,44,19.45,10,0.0 +15657,20,81,28,0.0 +15657,56,38,15,0.0 +15657,12,38,29,0.0 +15657,40,18.4,50,0.0 +15657,4,22,12,0.0 +15657,7,30,15,0.0 +15657,32,32,16,0.0 +15657,37,26,10,0.0 +15657,1,18,44,0.0 +15657,47,9.5,36,0.0 +15657,54,7.45,43,0.0 +15657,41,9.65,37,0.0 +15657,10,31,4,0.0 +15657,9,97,40,0.0 +15657,42,14,11,0.0 +15657,64,33.25,25,0.0 +15657,21,10,14,0.0 +15657,49,20,16,0.0 +15657,26,31.23,21,0.0 +15657,27,43.9,20,0.0 +15657,15,15.5,1,0.0 +15657,2,19,21,0.0 +15657,53,32.8,13,0.0 +15657,16,17.45,36,0.0 +15657,71,21.5,36,0.0 +15657,45,9.5,11,0.0 +15657,17,39,36,0.0 +15657,72,34.8,38,0.0 +15657,19,9.2,40,0.0 +15657,39,18,1,0.0 +15657,28,45.6,33,0.0 +15657,61,28.5,36,0.0 +15657,5,21.35,50,0.0 +15657,55,24,9,0.0 +15657,13,6,25,0.0 +15657,60,34,5,0.0 +15657,76,18,15,0.0 +15657,31,12.5,22,0.0 +15657,46,12,20,0.0 +15658,19,9.2,24,0.0 +15658,25,14,21,0.0 +15658,44,19.45,6,0.0 +15658,67,14,27,0.0 +15658,24,4.5,45,0.0 +15658,49,20,6,0.0 +15658,20,81,25,0.0 +15658,47,9.5,30,0.0 +15658,77,13,46,0.0 +15658,2,19,38,0.0 +15658,41,9.65,34,0.0 +15658,10,31,41,0.0 +15658,16,17.45,46,0.0 +15658,61,28.5,48,0.0 +15658,22,21,8,0.0 +15658,36,19,18,0.0 +15658,30,25.89,9,0.0 +15658,45,9.5,41,0.0 +15658,38,263.5,4,0.0 +15658,15,15.5,45,0.0 +15658,51,53,17,0.0 +15658,74,10,23,0.0 +15658,70,15,26,0.0 +15658,37,26,28,0.0 +15658,6,25,37,0.0 +15658,18,62.5,36,0.0 +15658,12,38,11,0.0 +15658,69,36,31,0.0 +15658,32,32,50,0.0 +15658,53,32.8,2,0.0 +15658,39,18,41,0.0 +15658,33,2.5,8,0.0 +15658,21,10,30,0.0 +15658,26,31.23,14,0.0 +15658,34,14,8,0.0 +15658,65,21.05,39,0.0 +15658,62,49.3,28,0.0 +15658,28,45.6,40,0.0 +15658,57,19.5,41,0.0 +15658,63,43.9,14,0.0 +15658,5,21.35,26,0.0 +15658,50,16.25,45,0.0 +15658,68,12.5,50,0.0 +15658,7,30,28,0.0 +15658,1,18,45,0.0 +15658,17,39,23,0.0 +15658,48,12.75,7,0.0 +15658,27,43.9,17,0.0 +15658,60,34,38,0.0 +15658,40,18.4,27,0.0 +15658,11,21,15,0.0 +15658,56,38,19,0.0 +15658,72,34.8,39,0.0 +15659,7,30,47,0.0 +15659,17,39,6,0.0 +15659,46,12,42,0.0 +15659,39,18,8,0.0 +15659,48,12.75,41,0.0 +15659,9,97,17,0.0 +15659,29,123.79,14,0.0 +15659,55,24,28,0.0 +15659,20,81,34,0.0 +15659,44,19.45,35,0.0 +15659,15,15.5,13,0.0 +15659,33,2.5,40,0.0 +15659,35,18,27,0.0 +15659,74,10,31,0.0 +15659,72,34.8,43,0.0 +15659,26,31.23,23,0.0 +15660,62,49.3,7,0.0 +15660,55,24,33,0.0 +15660,1,18,22,0.0 +15661,74,10,21,0.0 +15661,4,22,45,0.0 +15661,54,7.45,33,0.0 +15661,72,34.8,13,0.0 +15661,21,10,41,0.0 +15661,65,21.05,13,0.0 +15661,26,31.23,18,0.0 +15661,49,20,44,0.0 +15661,53,32.8,34,0.0 +15661,16,17.45,43,0.0 +15661,58,13.25,21,0.0 +15661,64,33.25,23,0.0 +15661,48,12.75,37,0.0 +15661,7,30,34,0.0 +15661,73,15,43,0.0 +15661,77,13,46,0.0 +15661,29,123.79,16,0.0 +15661,51,53,2,0.0 +15661,69,36,18,0.0 +15661,19,9.2,43,0.0 +15661,71,21.5,12,0.0 +15661,62,49.3,40,0.0 +15661,28,45.6,28,0.0 +15661,50,16.25,35,0.0 +15661,22,21,48,0.0 +15661,17,39,3,0.0 +15661,76,18,38,0.0 +15661,23,9,20,0.0 +15661,75,7.75,40,0.0 +15661,60,34,13,0.0 +15661,34,14,49,0.0 +15661,67,14,43,0.0 +15661,42,14,50,0.0 +15661,35,18,12,0.0 +15661,57,19.5,48,0.0 +15661,14,23.25,45,0.0 +15661,41,9.65,45,0.0 +15661,43,46,6,0.0 +15662,56,38,25,0.0 +15663,38,263.5,27,0.0 +15663,71,21.5,6,0.0 +15663,55,24,29,0.0 +15663,70,15,3,0.0 +15663,77,13,34,0.0 +15663,75,7.75,22,0.0 +15663,47,9.5,7,0.0 +15663,5,21.35,6,0.0 +15663,48,12.75,48,0.0 +15663,7,30,16,0.0 +15663,42,14,46,0.0 +15663,33,2.5,28,0.0 +15663,54,7.45,3,0.0 +15663,25,14,36,0.0 +15663,28,45.6,34,0.0 +15663,9,97,24,0.0 +15663,44,19.45,36,0.0 +15663,13,6,13,0.0 +15663,62,49.3,32,0.0 +15663,59,55,43,0.0 +15663,24,4.5,21,0.0 +15663,18,62.5,1,0.0 +15663,58,13.25,14,0.0 +15663,4,22,17,0.0 +15663,72,34.8,47,0.0 +15663,50,16.25,18,0.0 +15663,14,23.25,45,0.0 +15663,73,15,16,0.0 +15663,61,28.5,25,0.0 +15663,74,10,18,0.0 +15663,63,43.9,34,0.0 +15663,32,32,16,0.0 +15663,23,9,2,0.0 +15663,11,21,7,0.0 +15663,31,12.5,32,0.0 +15663,46,12,39,0.0 +15663,21,10,27,0.0 +15663,69,36,31,0.0 +15663,45,9.5,49,0.0 +15663,53,32.8,21,0.0 +15663,40,18.4,47,0.0 +15663,29,123.79,43,0.0 +15663,60,34,41,0.0 +15663,2,19,10,0.0 +15663,51,53,18,0.0 +15663,34,14,6,0.0 +15663,57,19.5,47,0.0 +15663,30,25.89,13,0.0 +15663,37,26,39,0.0 +15663,65,21.05,32,0.0 +15663,41,9.65,40,0.0 +15663,49,20,33,0.0 +15663,16,17.45,11,0.0 +15663,66,17,7,0.0 +15663,19,9.2,30,0.0 +15663,15,15.5,16,0.0 +15663,43,46,38,0.0 +15663,1,18,34,0.0 +15663,27,43.9,14,0.0 +15663,36,19,16,0.0 +15663,22,21,30,0.0 +15663,56,38,29,0.0 +15664,14,23.25,16,0.0 +15664,11,21,11,0.0 +15664,5,21.35,37,0.0 +15664,61,28.5,9,0.0 +15664,25,14,19,0.0 +15664,62,49.3,33,0.0 +15664,41,9.65,27,0.0 +15664,12,38,4,0.0 +15664,47,9.5,27,0.0 +15664,32,32,28,0.0 +15664,53,32.8,1,0.0 +15664,6,25,10,0.0 +15664,3,10,44,0.0 +15664,28,45.6,22,0.0 +15664,27,43.9,19,0.0 +15664,67,14,21,0.0 +15664,20,81,45,0.0 +15664,22,21,46,0.0 +15664,17,39,18,0.0 +15664,60,34,32,0.0 +15664,76,18,27,0.0 +15665,52,7,35,0.0 +15665,16,17.45,49,0.0 +15665,3,10,1,0.0 +15665,29,123.79,2,0.0 +15665,71,21.5,24,0.0 +15665,66,17,28,0.0 +15665,14,23.25,33,0.0 +15665,30,25.89,1,0.0 +15665,77,13,24,0.0 +15665,5,21.35,15,0.0 +15665,70,15,40,0.0 +15665,18,62.5,16,0.0 +15665,40,18.4,49,0.0 +15665,7,30,4,0.0 +15665,72,34.8,6,0.0 +15665,12,38,13,0.0 +15665,47,9.5,34,0.0 +15665,39,18,15,0.0 +15665,73,15,50,0.0 +15665,65,21.05,6,0.0 +15665,38,263.5,6,0.0 +15665,74,10,32,0.0 +15665,22,21,50,0.0 +15665,13,6,23,0.0 +15665,28,45.6,17,0.0 +15665,27,43.9,50,0.0 +15665,17,39,44,0.0 +15665,36,19,44,0.0 +15665,24,4.5,33,0.0 +15665,59,55,23,0.0 +15665,4,22,31,0.0 +15665,31,12.5,49,0.0 +15665,75,7.75,45,0.0 +15665,69,36,17,0.0 +15665,11,21,44,0.0 +15665,1,18,45,0.0 +15665,34,14,35,0.0 +15665,54,7.45,17,0.0 +15665,61,28.5,27,0.0 +15665,19,9.2,31,0.0 +15665,63,43.9,6,0.0 +15665,42,14,8,0.0 +15665,76,18,37,0.0 +15665,6,25,6,0.0 +15665,41,9.65,26,0.0 +15665,43,46,12,0.0 +15665,21,10,35,0.0 +15665,15,15.5,48,0.0 +15665,32,32,18,0.0 +15665,20,81,12,0.0 +15665,55,24,38,0.0 +15665,46,12,2,0.0 +15665,35,18,14,0.0 +15665,64,33.25,50,0.0 +15665,53,32.8,42,0.0 +15666,74,10,27,0.0 +15666,9,97,25,0.0 +15666,51,53,9,0.0 +15666,73,15,23,0.0 +15666,55,24,21,0.0 +15666,31,12.5,22,0.0 +15666,66,17,45,0.0 +15666,57,19.5,46,0.0 +15666,58,13.25,35,0.0 +15666,64,33.25,40,0.0 +15666,20,81,39,0.0 +15666,75,7.75,34,0.0 +15666,48,12.75,46,0.0 +15666,21,10,32,0.0 +15666,60,34,35,0.0 +15666,5,21.35,5,0.0 +15666,41,9.65,28,0.0 +15666,76,18,49,0.0 +15666,30,25.89,49,0.0 +15666,27,43.9,16,0.0 +15666,56,38,21,0.0 +15666,17,39,3,0.0 +15666,29,123.79,21,0.0 +15666,53,32.8,8,0.0 +15666,39,18,11,0.0 +15666,34,14,7,0.0 +15666,45,9.5,41,0.0 +15666,35,18,44,0.0 +15666,3,10,11,0.0 +15666,19,9.2,17,0.0 +15666,71,21.5,26,0.0 +15666,25,14,11,0.0 +15666,12,38,21,0.0 +15666,70,15,34,0.0 +15666,1,18,32,0.0 +15666,52,7,11,0.0 +15666,28,45.6,1,0.0 +15666,26,31.23,12,0.0 +15666,65,21.05,6,0.0 +15666,67,14,3,0.0 +15666,4,22,27,0.0 +15666,50,16.25,1,0.0 +15666,43,46,22,0.0 +15666,11,21,25,0.0 +15666,14,23.25,46,0.0 +15666,36,19,46,0.0 +15666,8,40,49,0.0 +15666,44,19.45,6,0.0 +15666,46,12,6,0.0 +15666,22,21,25,0.0 +15666,54,7.45,29,0.0 +15666,59,55,34,0.0 +15666,47,9.5,22,0.0 +15666,7,30,46,0.0 +15667,28,45.6,41,0.0 +15667,48,12.75,27,0.0 +15667,7,30,17,0.0 +15667,72,34.8,35,0.0 +15667,77,13,5,0.0 +15667,1,18,17,0.0 +15667,40,18.4,12,0.0 +15667,9,97,36,0.0 +15667,44,19.45,27,0.0 +15667,74,10,24,0.0 +15667,38,263.5,30,0.0 +15667,43,46,10,0.0 +15667,50,16.25,46,0.0 +15667,13,6,4,0.0 +15667,62,49.3,17,0.0 +15667,29,123.79,32,0.0 +15667,51,53,27,0.0 +15667,10,31,19,0.0 +15667,63,43.9,38,0.0 +15667,2,19,5,0.0 +15667,54,7.45,46,0.0 +15667,59,55,16,0.0 +15668,50,16.25,1,0.0 +15668,71,21.5,16,0.0 +15668,21,10,50,0.0 +15668,60,34,48,0.0 +15668,13,6,10,0.0 +15668,61,28.5,27,0.0 +15668,52,7,18,0.0 +15668,20,81,36,0.0 +15668,15,15.5,33,0.0 +15668,36,19,10,0.0 +15668,10,31,5,0.0 +15668,67,14,41,0.0 +15668,59,55,23,0.0 +15668,32,32,29,0.0 +15668,54,7.45,35,0.0 +15668,47,9.5,36,0.0 +15668,14,23.25,43,0.0 +15668,28,45.6,42,0.0 +15668,65,21.05,15,0.0 +15669,41,9.65,48,0.0 +15669,1,18,25,0.0 +15669,11,21,28,0.0 +15669,43,46,34,0.0 +15669,74,10,24,0.0 +15669,30,25.89,24,0.0 +15669,45,9.5,21,0.0 +15669,53,32.8,17,0.0 +15669,72,34.8,48,0.0 +15669,36,19,35,0.0 +15669,70,15,2,0.0 +15669,71,21.5,16,0.0 +15669,12,38,44,0.0 +15669,17,39,11,0.0 +15669,56,38,42,0.0 +15669,21,10,32,0.0 +15669,47,9.5,11,0.0 +15669,34,14,4,0.0 +15669,39,18,27,0.0 +15669,68,12.5,9,0.0 +15669,5,21.35,16,0.0 +15669,62,49.3,46,0.0 +15669,42,14,32,0.0 +15669,64,33.25,11,0.0 +15669,37,26,9,0.0 +15669,49,20,1,0.0 +15669,23,9,39,0.0 +15669,16,17.45,20,0.0 +15669,28,45.6,39,0.0 +15669,59,55,22,0.0 +15669,76,18,10,0.0 +15669,25,14,12,0.0 +15669,22,21,12,0.0 +15669,13,6,44,0.0 +15669,61,28.5,13,0.0 +15669,57,19.5,6,0.0 +15669,75,7.75,33,0.0 +15669,44,19.45,48,0.0 +15669,63,43.9,49,0.0 +15669,67,14,48,0.0 +15669,35,18,21,0.0 +15669,48,12.75,27,0.0 +15669,27,43.9,26,0.0 +15669,66,17,42,0.0 +15669,69,36,25,0.0 +15669,3,10,8,0.0 +15669,58,13.25,43,0.0 +15669,9,97,38,0.0 +15669,32,32,48,0.0 +15669,7,30,25,0.0 +15669,50,16.25,46,0.0 +15669,55,24,3,0.0 +15669,20,81,33,0.0 +15669,31,12.5,11,0.0 +15669,51,53,47,0.0 +15669,52,7,28,0.0 +15669,18,62.5,17,0.0 +15669,14,23.25,12,0.0 +15669,8,40,9,0.0 +15669,46,12,31,0.0 +15669,38,263.5,25,0.0 +15669,77,13,2,0.0 +15669,19,9.2,11,0.0 +15669,60,34,11,0.0 +15669,4,22,15,0.0 +15669,24,4.5,49,0.0 +15669,2,19,22,0.0 +15669,33,2.5,10,0.0 +15669,73,15,12,0.0 +15669,26,31.23,39,0.0 +15669,15,15.5,6,0.0 +15669,6,25,31,0.0 +15669,65,21.05,44,0.0 +15669,40,18.4,29,0.0 +15670,50,16.25,24,0.0 +15670,49,20,1,0.0 +15670,27,43.9,33,0.0 +15670,21,10,44,0.0 +15671,67,14,22,0.0 +15671,43,46,7,0.0 +15671,31,12.5,17,0.0 +15671,61,28.5,48,0.0 +15671,75,7.75,12,0.0 +15671,36,19,32,0.0 +15671,34,14,49,0.0 +15671,12,38,17,0.0 +15671,53,32.8,24,0.0 +15671,5,21.35,30,0.0 +15671,30,25.89,26,0.0 +15671,39,18,46,0.0 +15671,52,7,40,0.0 +15671,28,45.6,9,0.0 +15671,20,81,45,0.0 +15671,25,14,1,0.0 +15671,72,34.8,41,0.0 +15671,76,18,45,0.0 +15671,44,19.45,41,0.0 +15671,71,21.5,3,0.0 +15671,64,33.25,4,0.0 +15671,2,19,1,0.0 +15671,74,10,38,0.0 +15671,6,25,26,0.0 +15671,46,12,33,0.0 +15671,50,16.25,31,0.0 +15671,27,43.9,34,0.0 +15671,14,23.25,12,0.0 +15671,33,2.5,41,0.0 +15671,32,32,30,0.0 +15671,10,31,8,0.0 +15671,29,123.79,6,0.0 +15671,1,18,1,0.0 +15671,62,49.3,38,0.0 +15671,66,17,31,0.0 +15671,23,9,22,0.0 +15671,18,62.5,6,0.0 +15671,56,38,26,0.0 +15671,19,9.2,30,0.0 +15671,70,15,49,0.0 +15671,60,34,27,0.0 +15671,49,20,39,0.0 +15671,22,21,11,0.0 +15671,41,9.65,22,0.0 +15671,37,26,21,0.0 +15671,38,263.5,13,0.0 +15671,7,30,48,0.0 +15671,58,13.25,21,0.0 +15671,57,19.5,38,0.0 +15671,8,40,12,0.0 +15671,68,12.5,12,0.0 +15671,11,21,6,0.0 +15671,9,97,10,0.0 +15671,47,9.5,43,0.0 +15671,69,36,6,0.0 +15671,40,18.4,26,0.0 +15671,77,13,10,0.0 +15671,17,39,12,0.0 +15671,15,15.5,10,0.0 +15671,65,21.05,7,0.0 +15671,59,55,16,0.0 +15671,55,24,12,0.0 +15671,24,4.5,15,0.0 +15671,16,17.45,4,0.0 +15671,26,31.23,21,0.0 +15671,73,15,16,0.0 +15671,54,7.45,7,0.0 +15671,51,53,35,0.0 +15671,4,22,49,0.0 +15671,35,18,28,0.0 +15672,27,43.9,20,0.0 +15672,12,38,10,0.0 +15672,23,9,3,0.0 +15672,67,14,46,0.0 +15672,33,2.5,13,0.0 +15672,21,10,18,0.0 +15672,72,34.8,15,0.0 +15672,37,26,42,0.0 +15672,7,30,32,0.0 +15672,63,43.9,22,0.0 +15672,69,36,1,0.0 +15672,73,15,24,0.0 +15672,19,9.2,3,0.0 +15672,56,38,38,0.0 +15672,35,18,38,0.0 +15672,26,31.23,35,0.0 +15672,75,7.75,35,0.0 +15672,38,263.5,47,0.0 +15672,11,21,40,0.0 +15672,70,15,45,0.0 +15672,53,32.8,44,0.0 +15672,25,14,8,0.0 +15672,49,20,39,0.0 +15672,42,14,37,0.0 +15672,66,17,17,0.0 +15672,10,31,6,0.0 +15672,76,18,24,0.0 +15672,36,19,12,0.0 +15673,36,19,37,0.0 +15673,47,9.5,34,0.0 +15673,28,45.6,38,0.0 +15673,53,32.8,8,0.0 +15673,51,53,13,0.0 +15673,54,7.45,33,0.0 +15673,30,25.89,45,0.0 +15673,63,43.9,1,0.0 +15673,72,34.8,34,0.0 +15673,11,21,43,0.0 +15673,45,9.5,2,0.0 +15673,27,43.9,32,0.0 +15673,14,23.25,34,0.0 +15673,22,21,42,0.0 +15673,6,25,19,0.0 +15673,12,38,6,0.0 +15673,48,12.75,7,0.0 +15673,10,31,8,0.0 +15673,1,18,31,0.0 +15673,16,17.45,5,0.0 +15673,18,62.5,26,0.0 +15673,42,14,29,0.0 +15674,34,14,43,0.0 +15674,55,24,33,0.0 +15674,44,19.45,7,0.0 +15674,76,18,25,0.0 +15674,61,28.5,1,0.0 +15674,65,21.05,39,0.0 +15674,53,32.8,10,0.0 +15674,56,38,37,0.0 +15674,62,49.3,21,0.0 +15674,77,13,45,0.0 +15674,23,9,6,0.0 +15675,51,53,16,0.0 +15675,8,40,29,0.0 +15675,48,12.75,46,0.0 +15675,16,17.45,35,0.0 +15675,30,25.89,14,0.0 +15675,2,19,2,0.0 +15675,74,10,46,0.0 +15675,44,19.45,9,0.0 +15675,71,21.5,34,0.0 +15675,20,81,11,0.0 +15675,7,30,25,0.0 +15675,77,13,12,0.0 +15675,52,7,3,0.0 +15675,63,43.9,26,0.0 +15675,15,15.5,36,0.0 +15675,35,18,43,0.0 +15675,22,21,5,0.0 +15675,32,32,6,0.0 +15675,59,55,39,0.0 +15675,4,22,13,0.0 +15675,5,21.35,22,0.0 +15675,10,31,5,0.0 +15675,34,14,31,0.0 +15675,39,18,31,0.0 +15675,53,32.8,31,0.0 +15675,70,15,21,0.0 +15675,76,18,14,0.0 +15675,41,9.65,32,0.0 +15675,43,46,34,0.0 +15675,13,6,49,0.0 +15675,65,21.05,6,0.0 +15675,12,38,10,0.0 +15675,19,9.2,7,0.0 +15675,67,14,46,0.0 +15675,17,39,11,0.0 +15675,58,13.25,23,0.0 +15675,62,49.3,36,0.0 +15675,31,12.5,4,0.0 +15675,68,12.5,25,0.0 +15675,11,21,50,0.0 +15675,9,97,25,0.0 +15675,49,20,18,0.0 +15675,55,24,4,0.0 +15675,46,12,13,0.0 +15675,73,15,10,0.0 +15675,38,263.5,36,0.0 +15676,60,34,32,0.0 +15676,8,40,11,0.0 +15676,24,4.5,35,0.0 +15676,15,15.5,31,0.0 +15676,35,18,7,0.0 +15676,41,9.65,3,0.0 +15676,6,25,7,0.0 +15676,72,34.8,20,0.0 +15676,69,36,24,0.0 +15676,11,21,48,0.0 +15676,51,53,30,0.0 +15676,53,32.8,26,0.0 +15676,18,62.5,39,0.0 +15676,22,21,1,0.0 +15676,56,38,13,0.0 +15676,12,38,40,0.0 +15676,21,10,2,0.0 +15676,5,21.35,14,0.0 +15676,55,24,14,0.0 +15676,67,14,3,0.0 +15676,71,21.5,38,0.0 +15676,54,7.45,27,0.0 +15676,17,39,40,0.0 +15676,59,55,37,0.0 +15676,28,45.6,37,0.0 +15676,49,20,3,0.0 +15676,74,10,20,0.0 +15677,1,18,27,0.0 +15677,27,43.9,20,0.0 +15677,40,18.4,20,0.0 +15677,13,6,5,0.0 +15677,55,24,7,0.0 +15677,21,10,26,0.0 +15677,52,7,36,0.0 +15677,42,14,17,0.0 +15677,22,21,50,0.0 +15677,67,14,24,0.0 +15677,56,38,46,0.0 +15677,48,12.75,40,0.0 +15677,15,15.5,14,0.0 +15677,38,263.5,23,0.0 +15677,70,15,11,0.0 +15677,31,12.5,7,0.0 +15677,32,32,27,0.0 +15677,54,7.45,7,0.0 +15677,14,23.25,28,0.0 +15677,28,45.6,7,0.0 +15677,60,34,17,0.0 +15677,39,18,42,0.0 +15677,37,26,12,0.0 +15677,24,4.5,32,0.0 +15677,5,21.35,25,0.0 +15677,4,22,41,0.0 +15677,8,40,18,0.0 +15677,17,39,14,0.0 +15677,16,17.45,9,0.0 +15677,10,31,40,0.0 +15677,6,25,38,0.0 +15677,25,14,41,0.0 +15677,74,10,21,0.0 +15677,69,36,45,0.0 +15677,64,33.25,34,0.0 +15677,19,9.2,7,0.0 +15677,3,10,34,0.0 +15677,12,38,39,0.0 +15677,76,18,4,0.0 +15677,72,34.8,38,0.0 +15677,46,12,4,0.0 +15677,62,49.3,29,0.0 +15677,58,13.25,14,0.0 +15677,7,30,24,0.0 +15677,30,25.89,14,0.0 +15677,36,19,3,0.0 +15677,47,9.5,46,0.0 +15677,44,19.45,42,0.0 +15677,53,32.8,45,0.0 +15677,11,21,19,0.0 +15677,66,17,35,0.0 +15677,2,19,5,0.0 +15677,59,55,5,0.0 +15677,77,13,44,0.0 +15677,49,20,18,0.0 +15678,32,32,46,0.0 +15678,20,81,34,0.0 +15678,69,36,18,0.0 +15678,77,13,11,0.0 +15678,75,7.75,45,0.0 +15678,11,21,8,0.0 +15678,36,19,27,0.0 +15678,5,21.35,37,0.0 +15678,49,20,28,0.0 +15678,53,32.8,32,0.0 +15678,2,19,42,0.0 +15679,55,24,9,0.0 +15679,21,10,33,0.0 +15679,32,32,49,0.0 +15679,18,62.5,24,0.0 +15679,73,15,48,0.0 +15679,59,55,25,0.0 +15679,68,12.5,44,0.0 +15679,58,13.25,6,0.0 +15679,31,12.5,27,0.0 +15679,27,43.9,19,0.0 +15679,17,39,10,0.0 +15679,67,14,38,0.0 +15679,75,7.75,1,0.0 +15679,61,28.5,14,0.0 +15679,15,15.5,11,0.0 +15679,26,31.23,6,0.0 +15679,76,18,24,0.0 +15679,35,18,18,0.0 +15679,34,14,12,0.0 +15679,36,19,29,0.0 +15679,22,21,47,0.0 +15679,64,33.25,20,0.0 +15679,46,12,27,0.0 +15679,6,25,34,0.0 +15679,53,32.8,6,0.0 +15679,16,17.45,8,0.0 +15679,51,53,28,0.0 +15679,33,2.5,39,0.0 +15679,28,45.6,48,0.0 +15679,77,13,8,0.0 +15679,47,9.5,48,0.0 +15679,23,9,26,0.0 +15679,45,9.5,6,0.0 +15679,29,123.79,44,0.0 +15679,63,43.9,48,0.0 +15680,57,19.5,37,0.0 +15680,46,12,35,0.0 +15680,6,25,3,0.0 +15680,4,22,7,0.0 +15680,30,25.89,50,0.0 +15680,63,43.9,47,0.0 +15680,69,36,2,0.0 +15680,49,20,20,0.0 +15680,13,6,5,0.0 +15680,11,21,4,0.0 +15680,10,31,39,0.0 +15680,32,32,45,0.0 +15680,25,14,21,0.0 +15680,61,28.5,41,0.0 +15680,20,81,31,0.0 +15680,59,55,41,0.0 +15680,27,43.9,42,0.0 +15680,19,9.2,31,0.0 +15680,45,9.5,35,0.0 +15680,72,34.8,23,0.0 +15680,40,18.4,19,0.0 +15680,58,13.25,12,0.0 +15680,56,38,32,0.0 +15680,67,14,11,0.0 +15680,77,13,27,0.0 +15680,76,18,40,0.0 +15680,53,32.8,25,0.0 +15680,38,263.5,5,0.0 +15680,22,21,14,0.0 +15680,37,26,13,0.0 +15680,43,46,50,0.0 +15680,41,9.65,38,0.0 +15680,70,15,31,0.0 +15680,7,30,49,0.0 +15680,44,19.45,38,0.0 +15680,54,7.45,33,0.0 +15680,18,62.5,48,0.0 +15680,23,9,13,0.0 +15680,35,18,41,0.0 +15680,47,9.5,39,0.0 +15680,75,7.75,49,0.0 +15680,55,24,6,0.0 +15680,50,16.25,21,0.0 +15680,73,15,15,0.0 +15680,16,17.45,38,0.0 +15680,29,123.79,13,0.0 +15680,24,4.5,9,0.0 +15680,1,18,22,0.0 +15680,9,97,49,0.0 +15680,62,49.3,8,0.0 +15680,28,45.6,4,0.0 +15680,36,19,47,0.0 +15680,48,12.75,38,0.0 +15680,21,10,27,0.0 +15680,51,53,45,0.0 +15680,2,19,5,0.0 +15680,74,10,28,0.0 +15680,33,2.5,31,0.0 +15680,15,15.5,31,0.0 +15680,42,14,21,0.0 +15680,71,21.5,18,0.0 +15680,34,14,4,0.0 +15680,39,18,3,0.0 +15680,8,40,25,0.0 +15680,68,12.5,32,0.0 +15680,17,39,42,0.0 +15680,66,17,32,0.0 +15680,3,10,28,0.0 +15680,64,33.25,30,0.0 +15680,26,31.23,40,0.0 +15681,76,18,19,0.0 +15681,39,18,9,0.0 +15681,2,19,1,0.0 +15681,64,33.25,38,0.0 +15681,27,43.9,45,0.0 +15681,52,7,17,0.0 +15681,7,30,43,0.0 +15681,26,31.23,36,0.0 +15681,47,9.5,10,0.0 +15681,13,6,25,0.0 +15682,20,81,34,0.0 +15682,59,55,39,0.0 +15682,69,36,20,0.0 +15682,55,24,18,0.0 +15682,5,21.35,18,0.0 +15682,15,15.5,17,0.0 +15682,23,9,21,0.0 +15682,22,21,13,0.0 +15682,58,13.25,17,0.0 +15682,72,34.8,15,0.0 +15682,70,15,11,0.0 +15682,16,17.45,26,0.0 +15682,71,21.5,31,0.0 +15682,9,97,28,0.0 +15682,8,40,7,0.0 +15682,3,10,12,0.0 +15682,17,39,5,0.0 +15682,26,31.23,22,0.0 +15682,63,43.9,33,0.0 +15682,49,20,15,0.0 +15682,12,38,39,0.0 +15682,1,18,24,0.0 +15682,34,14,28,0.0 +15682,65,21.05,7,0.0 +15682,56,38,30,0.0 +15682,41,9.65,6,0.0 +15682,68,12.5,43,0.0 +15682,32,32,18,0.0 +15682,13,6,8,0.0 +15682,60,34,38,0.0 +15682,19,9.2,5,0.0 +15682,53,32.8,25,0.0 +15682,74,10,34,0.0 +15682,42,14,39,0.0 +15682,52,7,32,0.0 +15682,57,19.5,11,0.0 +15682,38,263.5,43,0.0 +15682,33,2.5,23,0.0 +15682,44,19.45,15,0.0 +15682,67,14,10,0.0 +15682,7,30,47,0.0 +15682,25,14,9,0.0 +15682,51,53,30,0.0 +15682,11,21,9,0.0 +15682,73,15,12,0.0 +15682,28,45.6,30,0.0 +15682,24,4.5,9,0.0 +15682,35,18,9,0.0 +15682,21,10,25,0.0 +15682,6,25,14,0.0 +15682,54,7.45,10,0.0 +15682,46,12,9,0.0 +15682,47,9.5,33,0.0 +15682,39,18,24,0.0 +15682,4,22,7,0.0 +15682,29,123.79,3,0.0 +15682,48,12.75,20,0.0 +15682,14,23.25,3,0.0 +15682,66,17,47,0.0 +15682,30,25.89,19,0.0 +15682,62,49.3,22,0.0 +15682,43,46,15,0.0 +15682,31,12.5,26,0.0 +15682,76,18,40,0.0 +15682,75,7.75,21,0.0 +15682,36,19,7,0.0 +15682,10,31,10,0.0 +15683,33,2.5,42,0.0 +15683,58,13.25,42,0.0 +15683,51,53,10,0.0 +15683,29,123.79,26,0.0 +15683,18,62.5,1,0.0 +15683,20,81,33,0.0 +15683,4,22,17,0.0 +15683,23,9,40,0.0 +15683,68,12.5,8,0.0 +15683,72,34.8,32,0.0 +15683,42,14,5,0.0 +15683,35,18,16,0.0 +15683,55,24,20,0.0 +15683,73,15,32,0.0 +15683,62,49.3,9,0.0 +15683,3,10,47,0.0 +15683,37,26,42,0.0 +15683,5,21.35,6,0.0 +15683,48,12.75,14,0.0 +15683,1,18,42,0.0 +15683,46,12,50,0.0 +15683,38,263.5,40,0.0 +15683,10,31,9,0.0 +15683,59,55,47,0.0 +15683,30,25.89,24,0.0 +15683,17,39,15,0.0 +15683,47,9.5,27,0.0 +15683,27,43.9,17,0.0 +15683,63,43.9,37,0.0 +15683,61,28.5,25,0.0 +15683,70,15,23,0.0 +15683,56,38,26,0.0 +15683,69,36,46,0.0 +15683,39,18,24,0.0 +15683,11,21,21,0.0 +15683,7,30,38,0.0 +15683,77,13,27,0.0 +15683,54,7.45,23,0.0 +15683,50,16.25,8,0.0 +15683,15,15.5,11,0.0 +15683,6,25,31,0.0 +15683,76,18,24,0.0 +15683,9,97,28,0.0 +15683,24,4.5,3,0.0 +15683,25,14,34,0.0 +15683,22,21,32,0.0 +15683,52,7,38,0.0 +15683,32,32,46,0.0 +15683,75,7.75,37,0.0 +15683,21,10,36,0.0 +15683,2,19,44,0.0 +15683,19,9.2,32,0.0 +15683,65,21.05,50,0.0 +15683,16,17.45,36,0.0 +15683,67,14,45,0.0 +15683,64,33.25,41,0.0 +15683,57,19.5,24,0.0 +15684,60,34,11,0.0 +15684,16,17.45,38,0.0 +15684,4,22,34,0.0 +15684,36,19,37,0.0 +15684,62,49.3,32,0.0 +15684,32,32,37,0.0 +15684,68,12.5,39,0.0 +15684,3,10,22,0.0 +15684,1,18,42,0.0 +15684,42,14,18,0.0 +15685,13,6,6,0.0 +15685,63,43.9,15,0.0 +15685,26,31.23,28,0.0 +15685,74,10,26,0.0 +15685,64,33.25,46,0.0 +15685,17,39,30,0.0 +15685,66,17,20,0.0 +15685,46,12,18,0.0 +15685,3,10,11,0.0 +15685,75,7.75,3,0.0 +15685,30,25.89,27,0.0 +15685,73,15,12,0.0 +15685,38,263.5,44,0.0 +15685,31,12.5,18,0.0 +15685,12,38,48,0.0 +15685,67,14,18,0.0 +15685,58,13.25,11,0.0 +15685,16,17.45,7,0.0 +15685,41,9.65,40,0.0 +15685,4,22,35,0.0 +15685,10,31,47,0.0 +15685,14,23.25,12,0.0 +15685,20,81,23,0.0 +15685,60,34,34,0.0 +15685,6,25,19,0.0 +15685,39,18,17,0.0 +15685,69,36,9,0.0 +15685,15,15.5,19,0.0 +15685,40,18.4,34,0.0 +15685,35,18,10,0.0 +15685,50,16.25,48,0.0 +15685,42,14,43,0.0 +15685,77,13,8,0.0 +15685,25,14,39,0.0 +15685,56,38,41,0.0 +15685,49,20,48,0.0 +15685,51,53,35,0.0 +15685,53,32.8,1,0.0 +15685,9,97,42,0.0 +15685,43,46,11,0.0 +15685,8,40,4,0.0 +15685,70,15,12,0.0 +15685,59,55,44,0.0 +15685,62,49.3,48,0.0 +15685,23,9,14,0.0 +15685,1,18,9,0.0 +15685,2,19,38,0.0 +15685,47,9.5,50,0.0 +15685,19,9.2,23,0.0 +15685,68,12.5,15,0.0 +15685,48,12.75,16,0.0 +15685,34,14,37,0.0 +15685,21,10,38,0.0 +15685,57,19.5,7,0.0 +15685,52,7,9,0.0 +15685,32,32,23,0.0 +15685,29,123.79,24,0.0 +15685,7,30,7,0.0 +15686,15,15.5,50,0.0 +15686,59,55,34,0.0 +15686,16,17.45,42,0.0 +15686,33,2.5,19,0.0 +15686,50,16.25,4,0.0 +15686,23,9,42,0.0 +15686,30,25.89,9,0.0 +15686,26,31.23,21,0.0 +15686,64,33.25,16,0.0 +15686,20,81,18,0.0 +15686,65,21.05,1,0.0 +15686,37,26,1,0.0 +15686,2,19,39,0.0 +15686,43,46,4,0.0 +15686,47,9.5,45,0.0 +15686,60,34,22,0.0 +15686,41,9.65,24,0.0 +15686,5,21.35,47,0.0 +15686,61,28.5,19,0.0 +15686,19,9.2,22,0.0 +15686,62,49.3,33,0.0 +15686,35,18,25,0.0 +15686,75,7.75,48,0.0 +15686,44,19.45,23,0.0 +15686,42,14,37,0.0 +15686,49,20,10,0.0 +15686,56,38,29,0.0 +15686,48,12.75,17,0.0 +15686,76,18,49,0.0 +15686,9,97,21,0.0 +15686,45,9.5,34,0.0 +15686,4,22,7,0.0 +15686,34,14,29,0.0 +15686,7,30,3,0.0 +15686,55,24,44,0.0 +15686,25,14,8,0.0 +15686,10,31,33,0.0 +15686,3,10,16,0.0 +15686,53,32.8,25,0.0 +15686,57,19.5,4,0.0 +15686,36,19,17,0.0 +15686,70,15,4,0.0 +15686,24,4.5,27,0.0 +15686,28,45.6,24,0.0 +15686,1,18,6,0.0 +15686,77,13,32,0.0 +15686,13,6,30,0.0 +15686,74,10,5,0.0 +15686,66,17,22,0.0 +15686,69,36,26,0.0 +15686,51,53,1,0.0 +15686,21,10,34,0.0 +15686,11,21,44,0.0 +15686,31,12.5,13,0.0 +15686,8,40,4,0.0 +15686,68,12.5,50,0.0 +15686,40,18.4,13,0.0 +15686,17,39,21,0.0 +15686,38,263.5,12,0.0 +15686,29,123.79,24,0.0 +15686,72,34.8,33,0.0 +15686,54,7.45,36,0.0 +15687,67,14,26,0.0 +15687,15,15.5,23,0.0 +15687,14,23.25,49,0.0 +15687,35,18,26,0.0 +15687,32,32,16,0.0 +15687,43,46,32,0.0 +15687,72,34.8,20,0.0 +15687,52,7,44,0.0 +15687,48,12.75,36,0.0 +15687,41,9.65,13,0.0 +15687,12,38,17,0.0 +15687,19,9.2,47,0.0 +15687,57,19.5,46,0.0 +15688,44,19.45,45,0.0 +15688,14,23.25,30,0.0 +15688,56,38,1,0.0 +15688,31,12.5,23,0.0 +15688,76,18,29,0.0 +15688,24,4.5,19,0.0 +15688,25,14,38,0.0 +15688,61,28.5,45,0.0 +15688,20,81,42,0.0 +15688,22,21,34,0.0 +15688,10,31,18,0.0 +15688,43,46,32,0.0 +15688,55,24,28,0.0 +15688,2,19,31,0.0 +15688,69,36,17,0.0 +15688,72,34.8,46,0.0 +15688,38,263.5,48,0.0 +15688,77,13,28,0.0 +15688,48,12.75,33,0.0 +15688,73,15,10,0.0 +15688,41,9.65,32,0.0 +15688,19,9.2,47,0.0 +15688,34,14,43,0.0 +15688,17,39,2,0.0 +15688,59,55,29,0.0 +15688,32,32,17,0.0 +15688,5,21.35,4,0.0 +15688,46,12,5,0.0 +15688,75,7.75,43,0.0 +15688,30,25.89,43,0.0 +15688,60,34,50,0.0 +15688,4,22,9,0.0 +15688,42,14,23,0.0 +15688,66,17,27,0.0 +15688,36,19,42,0.0 +15688,50,16.25,19,0.0 +15688,54,7.45,43,0.0 +15688,70,15,12,0.0 +15688,51,53,24,0.0 +15688,33,2.5,40,0.0 +15688,13,6,2,0.0 +15688,53,32.8,23,0.0 +15688,11,21,13,0.0 +15688,26,31.23,21,0.0 +15688,40,18.4,2,0.0 +15688,71,21.5,26,0.0 +15688,45,9.5,30,0.0 +15688,64,33.25,30,0.0 +15688,49,20,40,0.0 +15688,3,10,17,0.0 +15688,57,19.5,40,0.0 +15688,18,62.5,9,0.0 +15688,52,7,19,0.0 +15688,35,18,19,0.0 +15688,47,9.5,36,0.0 +15688,8,40,41,0.0 +15688,27,43.9,22,0.0 +15688,9,97,22,0.0 +15688,65,21.05,8,0.0 +15688,15,15.5,35,0.0 +15688,16,17.45,42,0.0 +15688,29,123.79,48,0.0 +15688,58,13.25,24,0.0 +15688,62,49.3,15,0.0 +15688,28,45.6,1,0.0 +15688,7,30,25,0.0 +15688,67,14,19,0.0 +15688,6,25,15,0.0 +15688,23,9,10,0.0 +15689,42,14,5,0.0 +15689,17,39,7,0.0 +15689,67,14,17,0.0 +15689,65,21.05,30,0.0 +15689,29,123.79,39,0.0 +15689,75,7.75,19,0.0 +15689,56,38,39,0.0 +15689,19,9.2,12,0.0 +15689,16,17.45,19,0.0 +15689,11,21,46,0.0 +15689,5,21.35,45,0.0 +15689,4,22,5,0.0 +15689,33,2.5,42,0.0 +15689,68,12.5,50,0.0 +15689,15,15.5,34,0.0 +15689,64,33.25,13,0.0 +15689,3,10,30,0.0 +15689,46,12,40,0.0 +15689,50,16.25,25,0.0 +15689,77,13,17,0.0 +15689,36,19,3,0.0 +15689,63,43.9,44,0.0 +15689,57,19.5,4,0.0 +15689,73,15,37,0.0 +15689,61,28.5,45,0.0 +15689,53,32.8,7,0.0 +15689,24,4.5,33,0.0 +15689,23,9,43,0.0 +15689,71,21.5,7,0.0 +15689,18,62.5,8,0.0 +15689,13,6,22,0.0 +15689,30,25.89,35,0.0 +15689,69,36,38,0.0 +15689,10,31,45,0.0 +15689,52,7,35,0.0 +15689,28,45.6,20,0.0 +15689,44,19.45,24,0.0 +15689,22,21,31,0.0 +15689,45,9.5,45,0.0 +15689,9,97,10,0.0 +15689,35,18,15,0.0 +15689,59,55,48,0.0 +15689,58,13.25,2,0.0 +15689,32,32,7,0.0 +15689,76,18,4,0.0 +15689,37,26,24,0.0 +15689,25,14,46,0.0 +15689,66,17,16,0.0 +15689,51,53,34,0.0 +15689,70,15,4,0.0 +15689,14,23.25,50,0.0 +15689,34,14,32,0.0 +15689,74,10,23,0.0 +15689,12,38,34,0.0 +15689,47,9.5,11,0.0 +15689,41,9.65,29,0.0 +15689,2,19,49,0.0 +15689,39,18,19,0.0 +15689,54,7.45,16,0.0 +15689,60,34,7,0.0 +15689,26,31.23,46,0.0 +15689,21,10,23,0.0 +15689,7,30,48,0.0 +15689,20,81,17,0.0 +15689,43,46,38,0.0 +15689,27,43.9,12,0.0 +15689,38,263.5,3,0.0 +15690,41,9.65,15,0.0 +15690,37,26,27,0.0 +15690,72,34.8,3,0.0 +15690,22,21,3,0.0 +15690,3,10,4,0.0 +15690,69,36,46,0.0 +15690,62,49.3,3,0.0 +15690,34,14,22,0.0 +15690,2,19,27,0.0 +15690,48,12.75,24,0.0 +15690,15,15.5,43,0.0 +15690,27,43.9,42,0.0 +15690,75,7.75,9,0.0 +15690,52,7,23,0.0 +15690,13,6,5,0.0 +15690,54,7.45,9,0.0 +15690,26,31.23,24,0.0 +15690,61,28.5,8,0.0 +15690,10,31,1,0.0 +15690,76,18,24,0.0 +15690,28,45.6,34,0.0 +15690,36,19,13,0.0 +15690,49,20,36,0.0 +15690,32,32,5,0.0 +15690,60,34,28,0.0 +15690,55,24,16,0.0 +15690,23,9,15,0.0 +15690,20,81,2,0.0 +15690,14,23.25,19,0.0 +15690,35,18,14,0.0 +15690,38,263.5,9,0.0 +15690,42,14,48,0.0 +15690,66,17,14,0.0 +15690,46,12,34,0.0 +15690,74,10,33,0.0 +15690,11,21,7,0.0 +15690,18,62.5,28,0.0 +15690,50,16.25,43,0.0 +15690,51,53,22,0.0 +15690,4,22,41,0.0 +15690,16,17.45,7,0.0 +15690,45,9.5,41,0.0 +15690,30,25.89,30,0.0 +15690,25,14,40,0.0 +15690,29,123.79,37,0.0 +15690,71,21.5,46,0.0 +15690,63,43.9,27,0.0 +15690,77,13,20,0.0 +15690,7,30,47,0.0 +15690,47,9.5,5,0.0 +15690,68,12.5,39,0.0 +15691,28,45.6,15,0.0 +15691,41,9.65,21,0.0 +15691,48,12.75,20,0.0 +15691,63,43.9,26,0.0 +15691,64,33.25,33,0.0 +15691,49,20,31,0.0 +15691,60,34,31,0.0 +15691,45,9.5,46,0.0 +15691,1,18,49,0.0 +15691,7,30,6,0.0 +15691,20,81,25,0.0 +15691,16,17.45,30,0.0 +15691,54,7.45,48,0.0 +15691,73,15,19,0.0 +15691,6,25,27,0.0 +15691,52,7,47,0.0 +15691,26,31.23,7,0.0 +15691,39,18,11,0.0 +15691,35,18,49,0.0 +15691,2,19,9,0.0 +15691,42,14,14,0.0 +15691,46,12,50,0.0 +15691,55,24,20,0.0 +15691,15,15.5,19,0.0 +15691,66,17,7,0.0 +15691,72,34.8,10,0.0 +15691,23,9,32,0.0 +15691,34,14,47,0.0 +15691,77,13,37,0.0 +15691,75,7.75,34,0.0 +15691,13,6,15,0.0 +15691,22,21,45,0.0 +15691,5,21.35,46,0.0 +15691,67,14,18,0.0 +15691,12,38,12,0.0 +15691,58,13.25,9,0.0 +15691,62,49.3,2,0.0 +15691,44,19.45,1,0.0 +15691,59,55,12,0.0 +15691,43,46,3,0.0 +15691,33,2.5,44,0.0 +15691,21,10,11,0.0 +15691,11,21,36,0.0 +15691,57,19.5,5,0.0 +15691,8,40,24,0.0 +15691,69,36,15,0.0 +15691,51,53,5,0.0 +15691,36,19,14,0.0 +15691,30,25.89,47,0.0 +15691,18,62.5,17,0.0 +15691,56,38,35,0.0 +15691,47,9.5,2,0.0 +15691,53,32.8,48,0.0 +15691,4,22,45,0.0 +15691,3,10,34,0.0 +15691,17,39,22,0.0 +15692,76,18,26,0.0 +15692,70,15,19,0.0 +15692,22,21,19,0.0 +15692,11,21,41,0.0 +15692,6,25,36,0.0 +15692,12,38,2,0.0 +15692,34,14,36,0.0 +15692,56,38,36,0.0 +15692,54,7.45,43,0.0 +15692,63,43.9,21,0.0 +15692,28,45.6,17,0.0 +15692,49,20,9,0.0 +15692,15,15.5,13,0.0 +15692,27,43.9,6,0.0 +15692,48,12.75,20,0.0 +15692,10,31,38,0.0 +15692,40,18.4,33,0.0 +15692,8,40,40,0.0 +15692,24,4.5,12,0.0 +15692,58,13.25,19,0.0 +15692,67,14,42,0.0 +15692,3,10,30,0.0 +15692,62,49.3,46,0.0 +15692,47,9.5,39,0.0 +15692,72,34.8,47,0.0 +15692,60,34,15,0.0 +15692,26,31.23,26,0.0 +15692,31,12.5,16,0.0 +15692,18,62.5,48,0.0 +15692,69,36,34,0.0 +15692,25,14,26,0.0 +15692,19,9.2,21,0.0 +15692,71,21.5,1,0.0 +15692,2,19,41,0.0 +15692,65,21.05,26,0.0 +15692,50,16.25,30,0.0 +15692,13,6,34,0.0 +15692,45,9.5,27,0.0 +15692,38,263.5,37,0.0 +15692,51,53,17,0.0 +15692,53,32.8,7,0.0 +15692,66,17,8,0.0 +15692,64,33.25,37,0.0 +15692,36,19,33,0.0 +15692,59,55,12,0.0 +15692,74,10,36,0.0 +15692,17,39,2,0.0 +15692,77,13,10,0.0 +15692,29,123.79,22,0.0 +15692,44,19.45,19,0.0 +15692,41,9.65,37,0.0 +15692,20,81,41,0.0 +15692,46,12,16,0.0 +15692,9,97,14,0.0 +15692,43,46,4,0.0 +15692,42,14,12,0.0 +15692,14,23.25,48,0.0 +15693,33,2.5,4,0.0 +15693,63,43.9,40,0.0 +15693,66,17,1,0.0 +15693,40,18.4,49,0.0 +15693,68,12.5,4,0.0 +15693,35,18,42,0.0 +15693,74,10,43,0.0 +15693,23,9,33,0.0 +15693,60,34,42,0.0 +15693,22,21,37,0.0 +15693,46,12,25,0.0 +15693,10,31,20,0.0 +15693,64,33.25,50,0.0 +15693,52,7,17,0.0 +15693,37,26,26,0.0 +15693,15,15.5,48,0.0 +15693,69,36,7,0.0 +15693,44,19.45,31,0.0 +15693,54,7.45,23,0.0 +15693,5,21.35,33,0.0 +15693,70,15,43,0.0 +15693,65,21.05,38,0.0 +15693,53,32.8,8,0.0 +15693,31,12.5,20,0.0 +15693,77,13,24,0.0 +15693,27,43.9,10,0.0 +15693,75,7.75,9,0.0 +15694,11,21,50,0.0 +15694,36,19,3,0.0 +15694,38,263.5,18,0.0 +15694,35,18,8,0.0 +15694,45,9.5,23,0.0 +15694,26,31.23,47,0.0 +15694,14,23.25,21,0.0 +15695,55,24,32,0.0 +15695,25,14,17,0.0 +15695,48,12.75,45,0.0 +15695,9,97,21,0.0 +15695,39,18,18,0.0 +15695,75,7.75,41,0.0 +15695,42,14,49,0.0 +15695,7,30,9,0.0 +15695,43,46,27,0.0 +15695,49,20,36,0.0 +15695,46,12,28,0.0 +15695,2,19,23,0.0 +15695,70,15,34,0.0 +15695,61,28.5,17,0.0 +15695,33,2.5,36,0.0 +15695,71,21.5,21,0.0 +15695,53,32.8,12,0.0 +15695,69,36,21,0.0 +15695,12,38,16,0.0 +15695,68,12.5,35,0.0 +15695,18,62.5,44,0.0 +15695,32,32,8,0.0 +15695,52,7,18,0.0 +15695,20,81,10,0.0 +15695,3,10,2,0.0 +15695,38,263.5,39,0.0 +15695,57,19.5,3,0.0 +15695,19,9.2,7,0.0 +15695,31,12.5,39,0.0 +15695,64,33.25,22,0.0 +15695,66,17,10,0.0 +15695,77,13,34,0.0 +15695,8,40,1,0.0 +15695,60,34,1,0.0 +15695,72,34.8,49,0.0 +15695,4,22,2,0.0 +15695,45,9.5,26,0.0 +15695,62,49.3,42,0.0 +15695,51,53,20,0.0 +15695,54,7.45,15,0.0 +15695,50,16.25,37,0.0 +15695,30,25.89,45,0.0 +15695,40,18.4,46,0.0 +15695,27,43.9,12,0.0 +15695,24,4.5,31,0.0 +15696,20,81,26,0.0 +15696,25,14,22,0.0 +15696,44,19.45,34,0.0 +15696,31,12.5,49,0.0 +15696,11,21,12,0.0 +15696,24,4.5,16,0.0 +15696,59,55,23,0.0 +15696,70,15,46,0.0 +15696,50,16.25,35,0.0 +15696,15,15.5,28,0.0 +15696,12,38,24,0.0 +15696,26,31.23,5,0.0 +15696,6,25,17,0.0 +15696,21,10,8,0.0 +15696,60,34,37,0.0 +15696,28,45.6,37,0.0 +15696,62,49.3,28,0.0 +15696,36,19,48,0.0 +15696,57,19.5,39,0.0 +15696,49,20,28,0.0 +15696,52,7,29,0.0 +15696,7,30,43,0.0 +15696,38,263.5,39,0.0 +15696,75,7.75,19,0.0 +15696,55,24,33,0.0 +15696,3,10,13,0.0 +15696,39,18,38,0.0 +15696,4,22,40,0.0 +15696,35,18,40,0.0 +15696,77,13,40,0.0 +15697,48,12.75,4,0.0 +15697,44,19.45,17,0.0 +15697,21,10,39,0.0 +15697,26,31.23,49,0.0 +15697,32,32,35,0.0 +15697,53,32.8,7,0.0 +15697,10,31,47,0.0 +15697,16,17.45,31,0.0 +15697,11,21,8,0.0 +15697,76,18,40,0.0 +15697,28,45.6,28,0.0 +15697,20,81,17,0.0 +15697,18,62.5,16,0.0 +15697,75,7.75,40,0.0 +15697,59,55,45,0.0 +15697,73,15,49,0.0 +15697,5,21.35,50,0.0 +15697,4,22,46,0.0 +15697,65,21.05,47,0.0 +15697,15,15.5,17,0.0 +15697,45,9.5,16,0.0 +15697,34,14,38,0.0 +15697,12,38,12,0.0 +15697,57,19.5,10,0.0 +15697,22,21,45,0.0 +15697,50,16.25,48,0.0 +15697,52,7,16,0.0 +15697,49,20,18,0.0 +15697,31,12.5,1,0.0 +15697,64,33.25,37,0.0 +15697,55,24,1,0.0 +15697,69,36,1,0.0 +15697,25,14,12,0.0 +15697,24,4.5,21,0.0 +15697,41,9.65,6,0.0 +15697,63,43.9,2,0.0 +15697,36,19,23,0.0 +15697,38,263.5,46,0.0 +15697,19,9.2,6,0.0 +15697,29,123.79,14,0.0 +15697,66,17,50,0.0 +15697,58,13.25,16,0.0 +15697,47,9.5,39,0.0 +15697,68,12.5,9,0.0 +15697,30,25.89,5,0.0 +15697,2,19,29,0.0 +15697,33,2.5,23,0.0 +15697,71,21.5,4,0.0 +15697,72,34.8,21,0.0 +15697,3,10,6,0.0 +15697,39,18,30,0.0 +15697,27,43.9,35,0.0 +15698,40,18.4,5,0.0 +15698,67,14,32,0.0 +15698,64,33.25,22,0.0 +15698,29,123.79,16,0.0 +15698,38,263.5,25,0.0 +15698,35,18,45,0.0 +15698,13,6,48,0.0 +15698,25,14,10,0.0 +15698,43,46,20,0.0 +15698,59,55,32,0.0 +15698,37,26,27,0.0 +15698,55,24,31,0.0 +15698,54,7.45,30,0.0 +15698,44,19.45,50,0.0 +15698,8,40,39,0.0 +15698,18,62.5,38,0.0 +15698,60,34,13,0.0 +15698,32,32,13,0.0 +15698,1,18,28,0.0 +15698,53,32.8,20,0.0 +15698,7,30,35,0.0 +15698,9,97,6,0.0 +15698,28,45.6,49,0.0 +15698,45,9.5,39,0.0 +15698,39,18,12,0.0 +15698,69,36,33,0.0 +15698,27,43.9,36,0.0 +15699,52,7,7,0.0 +15699,34,14,34,0.0 +15699,23,9,33,0.0 +15699,10,31,38,0.0 +15699,49,20,19,0.0 +15699,16,17.45,46,0.0 +15699,67,14,6,0.0 +15699,4,22,17,0.0 +15699,64,33.25,45,0.0 +15699,6,25,45,0.0 +15699,61,28.5,5,0.0 +15699,76,18,8,0.0 +15699,35,18,3,0.0 +15699,1,18,50,0.0 +15699,39,18,5,0.0 +15699,51,53,4,0.0 +15699,60,34,40,0.0 +15699,57,19.5,17,0.0 +15699,5,21.35,8,0.0 +15699,45,9.5,8,0.0 +15699,58,13.25,24,0.0 +15699,54,7.45,40,0.0 +15699,22,21,47,0.0 +15699,14,23.25,44,0.0 +15699,56,38,48,0.0 +15699,24,4.5,45,0.0 +15699,38,263.5,19,0.0 +15699,33,2.5,32,0.0 +15699,21,10,30,0.0 +15699,74,10,17,0.0 +15699,55,24,32,0.0 +15699,8,40,10,0.0 +15699,77,13,23,0.0 +15699,2,19,17,0.0 +15699,32,32,48,0.0 +15699,59,55,35,0.0 +15699,15,15.5,28,0.0 +15699,70,15,40,0.0 +15699,7,30,27,0.0 +15699,25,14,41,0.0 +15699,26,31.23,40,0.0 +15699,43,46,7,0.0 +15699,27,43.9,46,0.0 +15699,19,9.2,2,0.0 +15699,42,14,30,0.0 +15699,63,43.9,16,0.0 +15699,31,12.5,11,0.0 +15699,28,45.6,9,0.0 +15699,41,9.65,39,0.0 +15699,40,18.4,50,0.0 +15699,20,81,13,0.0 +15699,29,123.79,11,0.0 +15699,68,12.5,16,0.0 +15699,69,36,32,0.0 +15699,30,25.89,5,0.0 +15699,46,12,18,0.0 +15699,17,39,32,0.0 +15699,37,26,16,0.0 +15699,71,21.5,8,0.0 +15699,9,97,50,0.0 +15699,66,17,17,0.0 +15699,18,62.5,17,0.0 +15699,50,16.25,42,0.0 +15699,3,10,35,0.0 +15699,72,34.8,5,0.0 +15699,36,19,17,0.0 +15699,65,21.05,31,0.0 +15699,75,7.75,33,0.0 +15699,48,12.75,26,0.0 +15699,44,19.45,17,0.0 +15699,62,49.3,45,0.0 +15699,13,6,49,0.0 +15699,11,21,24,0.0 +15699,12,38,13,0.0 +15700,37,26,21,0.0 +15700,28,45.6,45,0.0 +15700,25,14,34,0.0 +15700,3,10,21,0.0 +15700,75,7.75,23,0.0 +15700,67,14,44,0.0 +15700,45,9.5,31,0.0 +15700,2,19,6,0.0 +15700,41,9.65,48,0.0 +15700,29,123.79,40,0.0 +15700,34,14,25,0.0 +15700,18,62.5,19,0.0 +15700,53,32.8,50,0.0 +15700,32,32,48,0.0 +15700,64,33.25,27,0.0 +15700,23,9,10,0.0 +15700,7,30,7,0.0 +15700,68,12.5,36,0.0 +15700,27,43.9,5,0.0 +15700,40,18.4,41,0.0 +15700,56,38,3,0.0 +15700,55,24,11,0.0 +15700,1,18,4,0.0 +15700,10,31,5,0.0 +15700,39,18,46,0.0 +15700,65,21.05,11,0.0 +15700,42,14,8,0.0 +15700,22,21,46,0.0 +15700,33,2.5,20,0.0 +15700,70,15,26,0.0 +15700,60,34,5,0.0 +15700,17,39,46,0.0 +15700,71,21.5,7,0.0 +15700,51,53,14,0.0 +15700,43,46,34,0.0 +15700,63,43.9,50,0.0 +15700,69,36,50,0.0 +15700,59,55,5,0.0 +15700,47,9.5,8,0.0 +15700,36,19,44,0.0 +15700,13,6,18,0.0 +15700,73,15,11,0.0 +15700,44,19.45,16,0.0 +15700,66,17,35,0.0 +15700,50,16.25,5,0.0 +15700,14,23.25,27,0.0 +15700,16,17.45,13,0.0 +15700,9,97,3,0.0 +15700,48,12.75,43,0.0 +15700,74,10,43,0.0 +15700,24,4.5,11,0.0 +15701,28,45.6,4,0.0 +15702,71,21.5,25,0.0 +15702,37,26,26,0.0 +15702,2,19,41,0.0 +15702,45,9.5,33,0.0 +15702,28,45.6,9,0.0 +15702,61,28.5,40,0.0 +15702,19,9.2,8,0.0 +15702,12,38,30,0.0 +15702,41,9.65,30,0.0 +15702,4,22,3,0.0 +15702,55,24,49,0.0 +15702,48,12.75,6,0.0 +15702,46,12,21,0.0 +15702,50,16.25,27,0.0 +15702,62,49.3,17,0.0 +15702,54,7.45,2,0.0 +15702,13,6,37,0.0 +15702,60,34,16,0.0 +15702,69,36,28,0.0 +15702,76,18,35,0.0 +15702,70,15,34,0.0 +15702,15,15.5,49,0.0 +15702,25,14,26,0.0 +15702,72,34.8,9,0.0 +15702,14,23.25,48,0.0 +15702,73,15,47,0.0 +15702,20,81,3,0.0 +15702,27,43.9,40,0.0 +15702,36,19,8,0.0 +15702,22,21,29,0.0 +15702,58,13.25,14,0.0 +15702,6,25,21,0.0 +15702,21,10,5,0.0 +15702,56,38,9,0.0 +15702,44,19.45,38,0.0 +15702,11,21,17,0.0 +15702,43,46,19,0.0 +15702,39,18,30,0.0 +15702,57,19.5,26,0.0 +15702,49,20,44,0.0 +15702,5,21.35,27,0.0 +15702,23,9,15,0.0 +15702,65,21.05,28,0.0 +15702,3,10,26,0.0 +15702,1,18,36,0.0 +15702,59,55,8,0.0 +15702,77,13,2,0.0 +15702,16,17.45,15,0.0 +15702,52,7,7,0.0 +15702,24,4.5,20,0.0 +15702,74,10,47,0.0 +15702,18,62.5,42,0.0 +15702,38,263.5,27,0.0 +15702,67,14,22,0.0 +15702,47,9.5,40,0.0 +15702,10,31,50,0.0 +15702,64,33.25,20,0.0 +15702,51,53,14,0.0 +15702,40,18.4,49,0.0 +15702,29,123.79,10,0.0 +15702,17,39,37,0.0 +15702,35,18,16,0.0 +15702,34,14,35,0.0 +15702,26,31.23,23,0.0 +15702,33,2.5,22,0.0 +15702,8,40,47,0.0 +15702,32,32,41,0.0 +15702,9,97,38,0.0 +15702,31,12.5,21,0.0 +15703,37,26,1,0.0 +15703,66,17,48,0.0 +15703,6,25,7,0.0 +15703,49,20,47,0.0 +15703,43,46,45,0.0 +15703,42,14,14,0.0 +15703,65,21.05,5,0.0 +15703,44,19.45,1,0.0 +15703,1,18,30,0.0 +15703,58,13.25,34,0.0 +15703,23,9,42,0.0 +15703,39,18,48,0.0 +15703,13,6,30,0.0 +15703,14,23.25,8,0.0 +15703,76,18,50,0.0 +15703,61,28.5,49,0.0 +15703,12,38,28,0.0 +15703,35,18,38,0.0 +15703,54,7.45,49,0.0 +15703,41,9.65,5,0.0 +15703,3,10,3,0.0 +15703,26,31.23,36,0.0 +15703,50,16.25,41,0.0 +15703,56,38,20,0.0 +15703,57,19.5,24,0.0 +15703,55,24,40,0.0 +15703,17,39,2,0.0 +15703,52,7,48,0.0 +15703,31,12.5,42,0.0 +15703,47,9.5,17,0.0 +15703,40,18.4,2,0.0 +15703,24,4.5,37,0.0 +15703,48,12.75,27,0.0 +15703,27,43.9,48,0.0 +15703,70,15,22,0.0 +15703,7,30,17,0.0 +15703,69,36,41,0.0 +15703,64,33.25,31,0.0 +15703,9,97,6,0.0 +15703,25,14,34,0.0 +15703,63,43.9,16,0.0 +15703,59,55,11,0.0 +15703,36,19,5,0.0 +15703,15,15.5,18,0.0 +15703,62,49.3,14,0.0 +15703,53,32.8,21,0.0 +15703,8,40,4,0.0 +15703,68,12.5,27,0.0 +15703,30,25.89,21,0.0 +15703,10,31,15,0.0 +15703,18,62.5,28,0.0 +15703,74,10,36,0.0 +15703,28,45.6,23,0.0 +15703,72,34.8,9,0.0 +15703,16,17.45,19,0.0 +15703,45,9.5,7,0.0 +15703,5,21.35,19,0.0 +15703,33,2.5,10,0.0 +15703,22,21,37,0.0 +15703,38,263.5,24,0.0 +15703,34,14,35,0.0 +15703,75,7.75,13,0.0 +15703,21,10,46,0.0 +15703,19,9.2,22,0.0 +15703,2,19,2,0.0 +15703,67,14,3,0.0 +15703,51,53,44,0.0 +15704,24,4.5,50,0.0 +15704,3,10,27,0.0 +15704,69,36,23,0.0 +15704,14,23.25,37,0.0 +15704,37,26,30,0.0 +15704,9,97,40,0.0 +15704,30,25.89,35,0.0 +15704,45,9.5,34,0.0 +15704,49,20,15,0.0 +15704,34,14,10,0.0 +15704,75,7.75,3,0.0 +15704,56,38,31,0.0 +15704,15,15.5,47,0.0 +15704,40,18.4,49,0.0 +15704,54,7.45,42,0.0 +15704,18,62.5,48,0.0 +15704,35,18,9,0.0 +15704,26,31.23,21,0.0 +15704,13,6,19,0.0 +15704,4,22,48,0.0 +15704,63,43.9,22,0.0 +15705,19,9.2,14,0.0 +15705,54,7.45,23,0.0 +15705,42,14,38,0.0 +15705,35,18,20,0.0 +15705,6,25,45,0.0 +15705,22,21,23,0.0 +15705,48,12.75,22,0.0 +15705,26,31.23,4,0.0 +15705,76,18,6,0.0 +15706,20,81,39,0.0 +15706,76,18,20,0.0 +15706,29,123.79,16,0.0 +15706,26,31.23,49,0.0 +15706,19,9.2,6,0.0 +15706,64,33.25,31,0.0 +15706,18,62.5,11,0.0 +15706,69,36,19,0.0 +15706,22,21,43,0.0 +15706,5,21.35,42,0.0 +15706,33,2.5,29,0.0 +15706,54,7.45,40,0.0 +15706,58,13.25,28,0.0 +15706,74,10,48,0.0 +15706,43,46,1,0.0 +15706,56,38,36,0.0 +15706,50,16.25,18,0.0 +15706,11,21,3,0.0 +15706,8,40,13,0.0 +15706,42,14,20,0.0 +15706,71,21.5,20,0.0 +15706,12,38,40,0.0 +15706,67,14,47,0.0 +15706,17,39,45,0.0 +15706,75,7.75,5,0.0 +15706,13,6,12,0.0 +15706,16,17.45,7,0.0 +15706,4,22,8,0.0 +15706,6,25,17,0.0 +15706,59,55,31,0.0 +15706,38,263.5,44,0.0 +15706,32,32,30,0.0 +15706,15,15.5,50,0.0 +15706,34,14,16,0.0 +15706,57,19.5,25,0.0 +15706,47,9.5,33,0.0 +15706,31,12.5,28,0.0 +15706,37,26,18,0.0 +15706,44,19.45,47,0.0 +15706,72,34.8,13,0.0 +15706,10,31,7,0.0 +15706,36,19,14,0.0 +15706,35,18,30,0.0 +15707,39,18,43,0.0 +15707,66,17,50,0.0 +15707,70,15,9,0.0 +15707,40,18.4,48,0.0 +15707,17,39,16,0.0 +15707,24,4.5,24,0.0 +15707,32,32,11,0.0 +15707,56,38,46,0.0 +15707,31,12.5,15,0.0 +15707,13,6,29,0.0 +15707,26,31.23,49,0.0 +15707,71,21.5,37,0.0 +15707,51,53,36,0.0 +15707,21,10,40,0.0 +15707,75,7.75,24,0.0 +15707,44,19.45,2,0.0 +15707,34,14,48,0.0 +15707,76,18,11,0.0 +15707,50,16.25,33,0.0 +15707,7,30,47,0.0 +15707,63,43.9,4,0.0 +15707,41,9.65,14,0.0 +15707,60,34,18,0.0 +15707,68,12.5,44,0.0 +15707,6,25,20,0.0 +15707,20,81,15,0.0 +15707,23,9,32,0.0 +15707,35,18,39,0.0 +15707,29,123.79,47,0.0 +15707,55,24,42,0.0 +15707,57,19.5,41,0.0 +15707,45,9.5,19,0.0 +15708,69,36,20,0.0 +15708,12,38,47,0.0 +15708,50,16.25,21,0.0 +15708,8,40,1,0.0 +15708,13,6,41,0.0 +15708,30,25.89,6,0.0 +15708,26,31.23,45,0.0 +15708,40,18.4,22,0.0 +15708,68,12.5,26,0.0 +15708,76,18,9,0.0 +15708,73,15,48,0.0 +15708,7,30,16,0.0 +15708,52,7,28,0.0 +15708,42,14,37,0.0 +15708,21,10,46,0.0 +15708,19,9.2,39,0.0 +15708,17,39,17,0.0 +15708,65,21.05,38,0.0 +15708,31,12.5,4,0.0 +15708,49,20,18,0.0 +15708,20,81,3,0.0 +15708,33,2.5,10,0.0 +15708,64,33.25,44,0.0 +15708,63,43.9,30,0.0 +15708,32,32,31,0.0 +15708,37,26,50,0.0 +15708,3,10,21,0.0 +15708,71,21.5,20,0.0 +15708,14,23.25,12,0.0 +15708,59,55,42,0.0 +15708,38,263.5,33,0.0 +15708,44,19.45,13,0.0 +15709,61,28.5,35,0.0 +15709,2,19,25,0.0 +15709,45,9.5,1,0.0 +15709,40,18.4,18,0.0 +15709,29,123.79,3,0.0 +15709,56,38,20,0.0 +15709,20,81,34,0.0 +15709,66,17,1,0.0 +15709,50,16.25,11,0.0 +15709,53,32.8,22,0.0 +15709,33,2.5,39,0.0 +15709,62,49.3,10,0.0 +15709,24,4.5,20,0.0 +15709,22,21,12,0.0 +15709,57,19.5,8,0.0 +15709,76,18,37,0.0 +15709,17,39,21,0.0 +15709,13,6,4,0.0 +15709,36,19,28,0.0 +15709,3,10,42,0.0 +15709,74,10,23,0.0 +15709,46,12,49,0.0 +15709,73,15,32,0.0 +15709,6,25,32,0.0 +15709,65,21.05,49,0.0 +15709,11,21,14,0.0 +15709,70,15,2,0.0 +15709,21,10,40,0.0 +15709,48,12.75,18,0.0 +15709,67,14,5,0.0 +15709,54,7.45,45,0.0 +15709,59,55,21,0.0 +15709,31,12.5,23,0.0 +15709,28,45.6,7,0.0 +15709,64,33.25,35,0.0 +15709,16,17.45,9,0.0 +15709,7,30,45,0.0 +15709,63,43.9,48,0.0 +15709,8,40,45,0.0 +15709,37,26,15,0.0 +15709,10,31,26,0.0 +15709,39,18,7,0.0 +15709,44,19.45,7,0.0 +15709,25,14,22,0.0 +15709,58,13.25,40,0.0 +15709,49,20,18,0.0 +15709,47,9.5,47,0.0 +15709,42,14,31,0.0 +15709,38,263.5,33,0.0 +15709,41,9.65,36,0.0 +15709,51,53,28,0.0 +15709,12,38,18,0.0 +15709,18,62.5,1,0.0 +15709,34,14,15,0.0 +15709,4,22,43,0.0 +15709,77,13,29,0.0 +15709,71,21.5,39,0.0 +15709,68,12.5,47,0.0 +15709,55,24,9,0.0 +15709,32,32,50,0.0 +15709,26,31.23,4,0.0 +15709,27,43.9,13,0.0 +15709,23,9,4,0.0 +15709,43,46,33,0.0 +15709,52,7,29,0.0 +15709,30,25.89,16,0.0 +15709,60,34,18,0.0 +15709,5,21.35,41,0.0 +15709,72,34.8,20,0.0 +15709,19,9.2,31,0.0 +15709,15,15.5,19,0.0 +15709,75,7.75,7,0.0 +15709,35,18,35,0.0 +15709,9,97,4,0.0 +15710,25,14,26,0.0 +15711,66,17,7,0.0 +15711,11,21,30,0.0 +15711,51,53,24,0.0 +15711,45,9.5,38,0.0 +15711,59,55,2,0.0 +15711,32,32,27,0.0 +15711,30,25.89,45,0.0 +15711,13,6,29,0.0 +15711,43,46,25,0.0 +15711,71,21.5,36,0.0 +15711,34,14,35,0.0 +15711,14,23.25,34,0.0 +15711,19,9.2,2,0.0 +15711,47,9.5,38,0.0 +15711,76,18,31,0.0 +15711,28,45.6,40,0.0 +15711,8,40,29,0.0 +15711,55,24,26,0.0 +15711,18,62.5,7,0.0 +15711,54,7.45,7,0.0 +15711,25,14,34,0.0 +15711,74,10,41,0.0 +15711,46,12,41,0.0 +15711,22,21,18,0.0 +15711,27,43.9,16,0.0 +15711,52,7,18,0.0 +15711,2,19,34,0.0 +15711,64,33.25,23,0.0 +15711,65,21.05,37,0.0 +15711,33,2.5,46,0.0 +15711,1,18,48,0.0 +15711,4,22,28,0.0 +15711,57,19.5,30,0.0 +15711,44,19.45,6,0.0 +15711,36,19,40,0.0 +15711,16,17.45,14,0.0 +15711,72,34.8,48,0.0 +15711,41,9.65,7,0.0 +15711,48,12.75,7,0.0 +15711,50,16.25,25,0.0 +15711,68,12.5,46,0.0 +15711,39,18,18,0.0 +15711,35,18,26,0.0 +15711,58,13.25,8,0.0 +15711,38,263.5,26,0.0 +15711,9,97,36,0.0 +15711,56,38,9,0.0 +15711,6,25,18,0.0 +15711,7,30,18,0.0 +15711,12,38,17,0.0 +15711,5,21.35,41,0.0 +15711,24,4.5,39,0.0 +15711,60,34,21,0.0 +15711,53,32.8,2,0.0 +15712,8,40,37,0.0 +15712,7,30,7,0.0 +15712,75,7.75,24,0.0 +15712,67,14,30,0.0 +15712,63,43.9,45,0.0 +15712,35,18,48,0.0 +15712,36,19,25,0.0 +15713,17,39,17,0.0 +15713,66,17,19,0.0 +15713,40,18.4,40,0.0 +15713,51,53,17,0.0 +15713,2,19,29,0.0 +15713,4,22,46,0.0 +15713,77,13,43,0.0 +15713,43,46,12,0.0 +15713,62,49.3,31,0.0 +15713,10,31,25,0.0 +15713,14,23.25,7,0.0 +15713,44,19.45,3,0.0 +15713,23,9,19,0.0 +15713,49,20,5,0.0 +15713,57,19.5,40,0.0 +15713,35,18,32,0.0 +15713,31,12.5,25,0.0 +15713,39,18,3,0.0 +15713,65,21.05,1,0.0 +15713,26,31.23,41,0.0 +15713,67,14,27,0.0 +15713,42,14,20,0.0 +15713,13,6,32,0.0 +15713,64,33.25,33,0.0 +15713,72,34.8,25,0.0 +15713,24,4.5,30,0.0 +15713,8,40,43,0.0 +15713,56,38,9,0.0 +15713,58,13.25,50,0.0 +15713,73,15,49,0.0 +15713,55,24,17,0.0 +15713,6,25,26,0.0 +15713,60,34,14,0.0 +15713,22,21,35,0.0 +15713,28,45.6,23,0.0 +15713,12,38,26,0.0 +15713,20,81,24,0.0 +15713,21,10,41,0.0 +15713,45,9.5,20,0.0 +15713,75,7.75,24,0.0 +15713,34,14,6,0.0 +15713,25,14,2,0.0 +15713,41,9.65,44,0.0 +15713,61,28.5,26,0.0 +15713,32,32,18,0.0 +15713,27,43.9,27,0.0 +15713,30,25.89,37,0.0 +15713,7,30,43,0.0 +15713,52,7,43,0.0 +15713,68,12.5,47,0.0 +15713,71,21.5,13,0.0 +15713,33,2.5,13,0.0 +15713,1,18,31,0.0 +15713,19,9.2,13,0.0 +15713,29,123.79,32,0.0 +15713,5,21.35,1,0.0 +15713,47,9.5,49,0.0 +15713,11,21,28,0.0 +15713,70,15,22,0.0 +15713,76,18,36,0.0 +15713,37,26,46,0.0 +15713,74,10,39,0.0 +15713,3,10,16,0.0 +15713,9,97,34,0.0 +15713,63,43.9,17,0.0 +15713,50,16.25,17,0.0 +15713,59,55,23,0.0 +15713,18,62.5,17,0.0 +15714,13,6,39,0.0 +15714,17,39,16,0.0 +15714,73,15,44,0.0 +15714,60,34,34,0.0 +15714,72,34.8,40,0.0 +15714,54,7.45,43,0.0 +15714,9,97,40,0.0 +15714,10,31,1,0.0 +15714,4,22,21,0.0 +15714,42,14,34,0.0 +15714,71,21.5,37,0.0 +15714,66,17,44,0.0 +15714,6,25,21,0.0 +15714,51,53,7,0.0 +15714,48,12.75,23,0.0 +15714,47,9.5,44,0.0 +15714,52,7,15,0.0 +15714,77,13,27,0.0 +15714,64,33.25,1,0.0 +15714,28,45.6,6,0.0 +15714,34,14,3,0.0 +15714,62,49.3,18,0.0 +15714,22,21,14,0.0 +15714,58,13.25,11,0.0 +15714,45,9.5,39,0.0 +15714,33,2.5,46,0.0 +15714,26,31.23,14,0.0 +15714,29,123.79,6,0.0 +15714,67,14,12,0.0 +15714,43,46,14,0.0 +15714,61,28.5,40,0.0 +15714,56,38,10,0.0 +15714,16,17.45,2,0.0 +15714,5,21.35,36,0.0 +15714,31,12.5,36,0.0 +15714,14,23.25,14,0.0 +15714,50,16.25,49,0.0 +15714,30,25.89,28,0.0 +15714,11,21,10,0.0 +15714,40,18.4,2,0.0 +15714,32,32,19,0.0 +15714,41,9.65,39,0.0 +15714,3,10,5,0.0 +15714,15,15.5,50,0.0 +15714,38,263.5,49,0.0 +15714,36,19,2,0.0 +15714,1,18,35,0.0 +15714,39,18,15,0.0 +15714,68,12.5,30,0.0 +15714,2,19,14,0.0 +15714,7,30,1,0.0 +15714,75,7.75,15,0.0 +15714,55,24,16,0.0 +15714,44,19.45,43,0.0 +15714,37,26,14,0.0 +15714,74,10,17,0.0 +15714,76,18,11,0.0 +15714,46,12,22,0.0 +15714,70,15,43,0.0 +15714,53,32.8,46,0.0 +15714,19,9.2,33,0.0 +15714,57,19.5,33,0.0 +15714,65,21.05,37,0.0 +15714,24,4.5,35,0.0 +15714,59,55,15,0.0 +15714,25,14,41,0.0 +15714,35,18,12,0.0 +15715,8,40,33,0.0 +15715,48,12.75,7,0.0 +15715,12,38,22,0.0 +15715,72,34.8,5,0.0 +15715,54,7.45,34,0.0 +15715,74,10,5,0.0 +15715,1,18,41,0.0 +15715,50,16.25,2,0.0 +15715,56,38,5,0.0 +15715,75,7.75,14,0.0 +15715,44,19.45,31,0.0 +15715,5,21.35,4,0.0 +15715,27,43.9,39,0.0 +15715,52,7,22,0.0 +15715,51,53,2,0.0 +15715,59,55,37,0.0 +15715,13,6,33,0.0 +15715,58,13.25,35,0.0 +15715,10,31,43,0.0 +15715,33,2.5,26,0.0 +15715,70,15,50,0.0 +15715,69,36,21,0.0 +15715,49,20,28,0.0 +15715,31,12.5,39,0.0 +15715,3,10,28,0.0 +15715,47,9.5,45,0.0 +15715,25,14,3,0.0 +15715,35,18,9,0.0 +15715,67,14,16,0.0 +15715,66,17,43,0.0 +15715,39,18,7,0.0 +15715,18,62.5,18,0.0 +15715,64,33.25,42,0.0 +15715,38,263.5,29,0.0 +15715,7,30,42,0.0 +15715,43,46,46,0.0 +15715,20,81,13,0.0 +15715,46,12,3,0.0 +15715,19,9.2,18,0.0 +15715,41,9.65,1,0.0 +15715,28,45.6,6,0.0 +15715,76,18,49,0.0 +15715,6,25,6,0.0 +15715,30,25.89,2,0.0 +15715,9,97,6,0.0 +15715,11,21,41,0.0 +15715,68,12.5,48,0.0 +15715,16,17.45,31,0.0 +15715,4,22,30,0.0 +15715,55,24,20,0.0 +15715,53,32.8,13,0.0 +15715,2,19,24,0.0 +15715,14,23.25,5,0.0 +15715,45,9.5,5,0.0 +15715,26,31.23,39,0.0 +15715,29,123.79,44,0.0 +15715,22,21,16,0.0 +15715,17,39,25,0.0 +15715,42,14,44,0.0 +15715,60,34,23,0.0 +15715,65,21.05,33,0.0 +15715,21,10,38,0.0 +15715,32,32,37,0.0 +15715,24,4.5,7,0.0 +15715,34,14,19,0.0 +15715,63,43.9,7,0.0 +15715,71,21.5,41,0.0 +15715,61,28.5,50,0.0 +15715,36,19,5,0.0 +15715,40,18.4,32,0.0 +15715,23,9,48,0.0 +15715,37,26,9,0.0 +15715,73,15,6,0.0 +15715,57,19.5,28,0.0 +15715,77,13,1,0.0 +15715,15,15.5,48,0.0 +15716,33,2.5,14,0.0 +15716,43,46,33,0.0 +15716,39,18,31,0.0 +15716,54,7.45,5,0.0 +15716,1,18,39,0.0 +15716,14,23.25,10,0.0 +15716,34,14,21,0.0 +15716,25,14,48,0.0 +15716,61,28.5,37,0.0 +15716,26,31.23,12,0.0 +15716,53,32.8,7,0.0 +15716,29,123.79,4,0.0 +15716,28,45.6,45,0.0 +15716,45,9.5,42,0.0 +15716,15,15.5,13,0.0 +15716,58,13.25,42,0.0 +15716,47,9.5,32,0.0 +15716,41,9.65,50,0.0 +15716,8,40,46,0.0 +15716,37,26,49,0.0 +15716,56,38,45,0.0 +15716,57,19.5,43,0.0 +15716,76,18,8,0.0 +15716,50,16.25,17,0.0 +15716,51,53,31,0.0 +15716,59,55,40,0.0 +15716,30,25.89,49,0.0 +15716,72,34.8,12,0.0 +15716,55,24,27,0.0 +15716,31,12.5,32,0.0 +15716,52,7,39,0.0 +15716,65,21.05,15,0.0 +15716,5,21.35,17,0.0 +15716,74,10,23,0.0 +15716,18,62.5,40,0.0 +15716,13,6,33,0.0 +15716,22,21,34,0.0 +15716,75,7.75,5,0.0 +15716,44,19.45,24,0.0 +15716,17,39,32,0.0 +15716,77,13,1,0.0 +15716,11,21,3,0.0 +15716,38,263.5,46,0.0 +15716,27,43.9,44,0.0 +15716,6,25,23,0.0 +15716,71,21.5,6,0.0 +15716,7,30,16,0.0 +15716,67,14,12,0.0 +15716,16,17.45,47,0.0 +15716,10,31,43,0.0 +15716,9,97,27,0.0 +15716,42,14,22,0.0 +15716,21,10,20,0.0 +15716,69,36,1,0.0 +15717,18,62.5,9,0.0 +15717,57,19.5,17,0.0 +15717,39,18,41,0.0 +15717,13,6,13,0.0 +15717,24,4.5,45,0.0 +15717,23,9,49,0.0 +15717,8,40,18,0.0 +15717,3,10,45,0.0 +15717,34,14,13,0.0 +15717,44,19.45,4,0.0 +15717,16,17.45,34,0.0 +15717,7,30,45,0.0 +15717,12,38,4,0.0 +15717,62,49.3,19,0.0 +15717,25,14,21,0.0 +15717,20,81,21,0.0 +15717,68,12.5,29,0.0 +15717,11,21,17,0.0 +15717,61,28.5,32,0.0 +15717,38,263.5,20,0.0 +15717,73,15,27,0.0 +15717,74,10,28,0.0 +15717,65,21.05,28,0.0 +15717,58,13.25,40,0.0 +15717,46,12,22,0.0 +15717,5,21.35,13,0.0 +15717,45,9.5,2,0.0 +15717,42,14,16,0.0 +15718,42,14,4,0.0 +15718,3,10,25,0.0 +15718,29,123.79,18,0.0 +15718,8,40,6,0.0 +15718,73,15,49,0.0 +15718,19,9.2,9,0.0 +15718,27,43.9,12,0.0 +15718,54,7.45,12,0.0 +15718,16,17.45,24,0.0 +15718,28,45.6,3,0.0 +15718,60,34,44,0.0 +15718,66,17,9,0.0 +15718,71,21.5,12,0.0 +15718,32,32,18,0.0 +15718,74,10,25,0.0 +15718,51,53,18,0.0 +15718,50,16.25,48,0.0 +15718,13,6,23,0.0 +15718,61,28.5,31,0.0 +15718,34,14,16,0.0 +15718,70,15,3,0.0 +15718,39,18,35,0.0 +15718,52,7,34,0.0 +15718,68,12.5,46,0.0 +15718,75,7.75,15,0.0 +15718,15,15.5,15,0.0 +15718,18,62.5,11,0.0 +15718,37,26,2,0.0 +15718,26,31.23,38,0.0 +15718,56,38,27,0.0 +15718,14,23.25,19,0.0 +15718,1,18,2,0.0 +15718,57,19.5,28,0.0 +15718,36,19,5,0.0 +15718,22,21,24,0.0 +15718,63,43.9,27,0.0 +15718,25,14,19,0.0 +15718,76,18,4,0.0 +15719,21,10,46,0.0 +15719,75,7.75,9,0.0 +15719,74,10,22,0.0 +15719,67,14,14,0.0 +15719,55,24,37,0.0 +15719,69,36,48,0.0 +15719,13,6,20,0.0 +15719,32,32,32,0.0 +15719,36,19,40,0.0 +15719,54,7.45,24,0.0 +15719,68,12.5,11,0.0 +15719,24,4.5,22,0.0 +15719,30,25.89,36,0.0 +15719,72,34.8,2,0.0 +15719,76,18,38,0.0 +15719,9,97,25,0.0 +15719,64,33.25,29,0.0 +15719,8,40,13,0.0 +15719,52,7,43,0.0 +15719,39,18,22,0.0 +15719,22,21,29,0.0 +15719,59,55,23,0.0 +15719,50,16.25,28,0.0 +15719,5,21.35,45,0.0 +15719,62,49.3,47,0.0 +15719,15,15.5,5,0.0 +15719,73,15,14,0.0 +15719,51,53,15,0.0 +15719,48,12.75,16,0.0 +15719,29,123.79,13,0.0 +15719,46,12,1,0.0 +15719,57,19.5,12,0.0 +15719,10,31,4,0.0 +15719,31,12.5,35,0.0 +15719,7,30,8,0.0 +15719,28,45.6,25,0.0 +15719,47,9.5,31,0.0 +15720,5,21.35,9,0.0 +15720,75,7.75,43,0.0 +15720,48,12.75,6,0.0 +15720,34,14,46,0.0 +15720,25,14,30,0.0 +15720,39,18,20,0.0 +15720,10,31,47,0.0 +15720,23,9,36,0.0 +15720,58,13.25,33,0.0 +15720,41,9.65,12,0.0 +15720,35,18,17,0.0 +15720,9,97,9,0.0 +15720,33,2.5,47,0.0 +15720,59,55,39,0.0 +15720,51,53,14,0.0 +15720,37,26,16,0.0 +15720,60,34,46,0.0 +15721,33,2.5,41,0.0 +15721,34,14,29,0.0 +15721,15,15.5,22,0.0 +15721,47,9.5,49,0.0 +15721,49,20,14,0.0 +15721,24,4.5,42,0.0 +15721,40,18.4,10,0.0 +15721,75,7.75,44,0.0 +15721,60,34,35,0.0 +15721,2,19,10,0.0 +15721,48,12.75,47,0.0 +15721,22,21,42,0.0 +15721,12,38,50,0.0 +15721,71,21.5,19,0.0 +15721,51,53,37,0.0 +15721,64,33.25,19,0.0 +15721,21,10,44,0.0 +15721,52,7,19,0.0 +15721,53,32.8,16,0.0 +15721,14,23.25,10,0.0 +15721,35,18,45,0.0 +15721,13,6,30,0.0 +15721,62,49.3,27,0.0 +15721,31,12.5,9,0.0 +15721,46,12,26,0.0 +15721,74,10,15,0.0 +15721,18,62.5,50,0.0 +15721,72,34.8,31,0.0 +15721,57,19.5,7,0.0 +15721,1,18,3,0.0 +15721,10,31,23,0.0 +15721,3,10,49,0.0 +15721,28,45.6,28,0.0 +15721,32,32,31,0.0 +15721,59,55,36,0.0 +15721,43,46,36,0.0 +15721,5,21.35,21,0.0 +15721,56,38,37,0.0 +15721,69,36,48,0.0 +15721,23,9,6,0.0 +15721,68,12.5,20,0.0 +15721,11,21,3,0.0 +15721,44,19.45,19,0.0 +15721,66,17,36,0.0 +15721,63,43.9,11,0.0 +15721,4,22,37,0.0 +15721,37,26,11,0.0 +15721,8,40,46,0.0 +15721,65,21.05,19,0.0 +15721,70,15,45,0.0 +15721,6,25,5,0.0 +15721,9,97,32,0.0 +15721,17,39,25,0.0 +15721,7,30,24,0.0 +15721,61,28.5,3,0.0 +15721,58,13.25,30,0.0 +15721,20,81,6,0.0 +15721,19,9.2,17,0.0 +15721,27,43.9,25,0.0 +15722,40,18.4,2,0.0 +15722,65,21.05,20,0.0 +15722,53,32.8,49,0.0 +15722,43,46,6,0.0 +15722,50,16.25,27,0.0 +15722,11,21,33,0.0 +15722,9,97,11,0.0 +15722,34,14,32,0.0 +15723,20,81,27,0.0 +15723,76,18,25,0.0 +15723,5,21.35,10,0.0 +15723,49,20,39,0.0 +15723,72,34.8,1,0.0 +15723,10,31,39,0.0 +15723,14,23.25,19,0.0 +15723,55,24,41,0.0 +15723,60,34,34,0.0 +15723,66,17,37,0.0 +15723,25,14,22,0.0 +15723,26,31.23,2,0.0 +15723,71,21.5,28,0.0 +15723,36,19,13,0.0 +15723,27,43.9,16,0.0 +15723,69,36,13,0.0 +15723,29,123.79,2,0.0 +15723,13,6,49,0.0 +15723,48,12.75,22,0.0 +15723,33,2.5,16,0.0 +15723,42,14,21,0.0 +15723,38,263.5,41,0.0 +15723,44,19.45,24,0.0 +15723,32,32,17,0.0 +15723,30,25.89,34,0.0 +15723,9,97,31,0.0 +15723,24,4.5,2,0.0 +15723,6,25,15,0.0 +15723,22,21,44,0.0 +15723,21,10,3,0.0 +15723,61,28.5,40,0.0 +15724,18,62.5,7,0.0 +15724,38,263.5,34,0.0 +15724,28,45.6,45,0.0 +15724,64,33.25,27,0.0 +15724,17,39,26,0.0 +15724,73,15,42,0.0 +15724,8,40,21,0.0 +15724,70,15,19,0.0 +15724,30,25.89,48,0.0 +15724,11,21,18,0.0 +15724,54,7.45,48,0.0 +15724,37,26,7,0.0 +15724,56,38,14,0.0 +15724,48,12.75,7,0.0 +15724,1,18,10,0.0 +15724,65,21.05,43,0.0 +15724,50,16.25,1,0.0 +15724,2,19,45,0.0 +15724,55,24,18,0.0 +15724,29,123.79,4,0.0 +15724,19,9.2,41,0.0 +15724,49,20,45,0.0 +15724,61,28.5,45,0.0 +15724,40,18.4,10,0.0 +15724,24,4.5,2,0.0 +15725,73,15,47,0.0 +15725,10,31,42,0.0 +15725,34,14,5,0.0 +15725,9,97,36,0.0 +15725,32,32,19,0.0 +15725,44,19.45,33,0.0 +15725,25,14,33,0.0 +15725,21,10,10,0.0 +15725,14,23.25,23,0.0 +15725,66,17,18,0.0 +15725,75,7.75,18,0.0 +15725,36,19,3,0.0 +15725,1,18,29,0.0 +15725,68,12.5,15,0.0 +15725,69,36,47,0.0 +15725,2,19,9,0.0 +15725,6,25,33,0.0 +15725,55,24,50,0.0 +15725,43,46,2,0.0 +15725,61,28.5,11,0.0 +15725,31,12.5,23,0.0 +15725,17,39,40,0.0 +15725,26,31.23,42,0.0 +15725,30,25.89,14,0.0 +15725,39,18,16,0.0 +15725,48,12.75,10,0.0 +15725,33,2.5,33,0.0 +15725,56,38,30,0.0 +15725,76,18,49,0.0 +15725,3,10,1,0.0 +15725,41,9.65,8,0.0 +15725,40,18.4,44,0.0 +15725,35,18,2,0.0 +15725,18,62.5,38,0.0 +15725,13,6,47,0.0 +15725,52,7,27,0.0 +15725,46,12,27,0.0 +15725,62,49.3,7,0.0 +15725,29,123.79,36,0.0 +15725,57,19.5,50,0.0 +15725,24,4.5,44,0.0 +15725,16,17.45,8,0.0 +15725,59,55,28,0.0 +15725,70,15,8,0.0 +15725,28,45.6,4,0.0 +15725,8,40,1,0.0 +15725,72,34.8,17,0.0 +15725,77,13,19,0.0 +15725,74,10,18,0.0 +15725,20,81,10,0.0 +15725,58,13.25,14,0.0 +15725,53,32.8,1,0.0 +15725,12,38,16,0.0 +15725,51,53,4,0.0 +15725,49,20,37,0.0 +15725,38,263.5,23,0.0 +15725,22,21,2,0.0 +15725,50,16.25,8,0.0 +15725,71,21.5,37,0.0 +15725,15,15.5,50,0.0 +15725,65,21.05,1,0.0 +15725,4,22,3,0.0 +15725,19,9.2,42,0.0 +15725,7,30,31,0.0 +15725,27,43.9,15,0.0 +15725,47,9.5,44,0.0 +15725,42,14,31,0.0 +15725,37,26,1,0.0 +15726,69,36,21,0.0 +15726,2,19,29,0.0 +15726,75,7.75,27,0.0 +15727,72,34.8,8,0.0 +15727,77,13,5,0.0 +15727,33,2.5,34,0.0 +15727,4,22,46,0.0 +15727,37,26,38,0.0 +15727,48,12.75,4,0.0 +15727,69,36,46,0.0 +15727,14,23.25,33,0.0 +15727,45,9.5,11,0.0 +15727,63,43.9,9,0.0 +15727,18,62.5,28,0.0 +15727,52,7,43,0.0 +15727,65,21.05,21,0.0 +15727,41,9.65,36,0.0 +15727,15,15.5,34,0.0 +15727,3,10,3,0.0 +15727,2,19,39,0.0 +15727,7,30,5,0.0 +15727,10,31,20,0.0 +15727,39,18,30,0.0 +15727,62,49.3,38,0.0 +15727,74,10,17,0.0 +15727,27,43.9,25,0.0 +15727,66,17,9,0.0 +15727,12,38,40,0.0 +15727,1,18,5,0.0 +15727,5,21.35,22,0.0 +15727,64,33.25,47,0.0 +15727,40,18.4,20,0.0 +15727,34,14,19,0.0 +15727,30,25.89,40,0.0 +15727,51,53,27,0.0 +15727,24,4.5,7,0.0 +15727,54,7.45,16,0.0 +15727,71,21.5,32,0.0 +15727,22,21,30,0.0 +15727,49,20,41,0.0 +15727,6,25,24,0.0 +15727,29,123.79,12,0.0 +15727,53,32.8,24,0.0 +15727,16,17.45,49,0.0 +15727,25,14,11,0.0 +15727,35,18,30,0.0 +15727,42,14,45,0.0 +15727,55,24,38,0.0 +15727,32,32,16,0.0 +15727,73,15,38,0.0 +15727,17,39,15,0.0 +15727,50,16.25,48,0.0 +15727,67,14,20,0.0 +15727,28,45.6,20,0.0 +15727,61,28.5,48,0.0 +15727,9,97,36,0.0 +15727,11,21,41,0.0 +15727,56,38,6,0.0 +15727,23,9,11,0.0 +15727,19,9.2,13,0.0 +15728,42,14,22,0.0 +15728,40,18.4,39,0.0 +15728,15,15.5,20,0.0 +15728,52,7,24,0.0 +15728,13,6,40,0.0 +15728,26,31.23,46,0.0 +15728,16,17.45,46,0.0 +15728,31,12.5,19,0.0 +15728,66,17,42,0.0 +15728,18,62.5,9,0.0 +15728,77,13,29,0.0 +15728,68,12.5,20,0.0 +15728,73,15,23,0.0 +15728,27,43.9,42,0.0 +15728,46,12,19,0.0 +15728,24,4.5,6,0.0 +15728,8,40,27,0.0 +15728,55,24,7,0.0 +15728,17,39,16,0.0 +15728,47,9.5,11,0.0 +15728,32,32,20,0.0 +15728,70,15,9,0.0 +15728,67,14,24,0.0 +15728,63,43.9,34,0.0 +15728,74,10,45,0.0 +15728,39,18,37,0.0 +15728,65,21.05,35,0.0 +15728,4,22,43,0.0 +15728,29,123.79,47,0.0 +15728,9,97,39,0.0 +15728,12,38,49,0.0 +15728,44,19.45,11,0.0 +15728,2,19,45,0.0 +15728,58,13.25,34,0.0 +15729,40,18.4,6,0.0 +15729,38,263.5,4,0.0 +15729,2,19,36,0.0 +15729,53,32.8,32,0.0 +15729,66,17,28,0.0 +15729,65,21.05,49,0.0 +15729,3,10,44,0.0 +15729,26,31.23,1,0.0 +15729,49,20,19,0.0 +15729,1,18,47,0.0 +15729,73,15,32,0.0 +15729,77,13,33,0.0 +15729,9,97,42,0.0 +15729,5,21.35,30,0.0 +15729,30,25.89,34,0.0 +15729,31,12.5,15,0.0 +15729,47,9.5,42,0.0 +15729,72,34.8,29,0.0 +15729,18,62.5,41,0.0 +15729,7,30,33,0.0 +15729,24,4.5,26,0.0 +15729,23,9,14,0.0 +15729,37,26,29,0.0 +15729,28,45.6,16,0.0 +15729,27,43.9,14,0.0 +15729,4,22,2,0.0 +15729,62,49.3,15,0.0 +15729,71,21.5,43,0.0 +15729,61,28.5,18,0.0 +15729,69,36,46,0.0 +15729,51,53,14,0.0 +15729,63,43.9,38,0.0 +15729,48,12.75,35,0.0 +15730,25,14,11,0.0 +15730,12,38,30,0.0 +15730,26,31.23,43,0.0 +15730,51,53,50,0.0 +15730,23,9,8,0.0 +15730,69,36,2,0.0 +15730,43,46,1,0.0 +15730,60,34,44,0.0 +15730,54,7.45,18,0.0 +15730,24,4.5,7,0.0 +15730,44,19.45,47,0.0 +15730,68,12.5,9,0.0 +15730,31,12.5,29,0.0 +15730,14,23.25,13,0.0 +15730,57,19.5,13,0.0 +15730,16,17.45,37,0.0 +15730,56,38,45,0.0 +15730,29,123.79,23,0.0 +15730,32,32,41,0.0 +15730,27,43.9,7,0.0 +15730,9,97,43,0.0 +15730,4,22,1,0.0 +15730,63,43.9,42,0.0 +15730,49,20,15,0.0 +15730,73,15,35,0.0 +15730,2,19,29,0.0 +15730,42,14,31,0.0 +15730,62,49.3,42,0.0 +15730,15,15.5,22,0.0 +15730,46,12,29,0.0 +15730,50,16.25,27,0.0 +15730,20,81,25,0.0 +15730,71,21.5,18,0.0 +15730,13,6,50,0.0 +15730,75,7.75,29,0.0 +15730,21,10,49,0.0 +15730,45,9.5,4,0.0 +15731,73,15,18,0.0 +15731,75,7.75,4,0.0 +15731,47,9.5,48,0.0 +15731,62,49.3,43,0.0 +15731,26,31.23,49,0.0 +15731,10,31,24,0.0 +15731,52,7,30,0.0 +15731,18,62.5,43,0.0 +15731,24,4.5,32,0.0 +15731,29,123.79,13,0.0 +15731,2,19,13,0.0 +15731,4,22,2,0.0 +15731,32,32,15,0.0 +15731,23,9,38,0.0 +15731,16,17.45,46,0.0 +15731,34,14,2,0.0 +15731,72,34.8,43,0.0 +15731,66,17,38,0.0 +15731,57,19.5,26,0.0 +15731,20,81,27,0.0 +15731,68,12.5,17,0.0 +15732,65,21.05,33,0.0 +15732,70,15,19,0.0 +15732,15,15.5,19,0.0 +15732,3,10,8,0.0 +15732,10,31,32,0.0 +15732,24,4.5,9,0.0 +15732,13,6,13,0.0 +15732,17,39,8,0.0 +15732,4,22,29,0.0 +15732,72,34.8,24,0.0 +15732,37,26,39,0.0 +15732,59,55,18,0.0 +15732,25,14,31,0.0 +15732,74,10,38,0.0 +15732,55,24,25,0.0 +15732,61,28.5,23,0.0 +15732,46,12,1,0.0 +15733,25,14,50,0.0 +15733,66,17,21,0.0 +15733,54,7.45,39,0.0 +15733,52,7,17,0.0 +15733,49,20,3,0.0 +15733,46,12,6,0.0 +15733,50,16.25,17,0.0 +15734,44,19.45,1,0.0 +15734,56,38,32,0.0 +15734,5,21.35,43,0.0 +15734,11,21,26,0.0 +15734,32,32,34,0.0 +15734,26,31.23,41,0.0 +15734,29,123.79,4,0.0 +15734,30,25.89,15,0.0 +15734,19,9.2,35,0.0 +15734,25,14,25,0.0 +15734,37,26,30,0.0 +15734,9,97,21,0.0 +15734,55,24,27,0.0 +15734,16,17.45,41,0.0 +15734,72,34.8,9,0.0 +15734,41,9.65,12,0.0 +15734,67,14,12,0.0 +15734,31,12.5,17,0.0 +15734,28,45.6,36,0.0 +15734,77,13,19,0.0 +15734,22,21,13,0.0 +15734,10,31,27,0.0 +15734,57,19.5,13,0.0 +15734,65,21.05,36,0.0 +15734,45,9.5,1,0.0 +15734,34,14,31,0.0 +15734,12,38,37,0.0 +15734,27,43.9,38,0.0 +15735,21,10,11,0.0 +15735,70,15,44,0.0 +15735,46,12,12,0.0 +15735,57,19.5,25,0.0 +15735,43,46,40,0.0 +15735,32,32,32,0.0 +15735,75,7.75,38,0.0 +15735,39,18,22,0.0 +15735,67,14,10,0.0 +15735,9,97,23,0.0 +15735,20,81,43,0.0 +15735,28,45.6,17,0.0 +15735,63,43.9,39,0.0 +15735,62,49.3,5,0.0 +15735,37,26,17,0.0 +15735,1,18,6,0.0 +15735,12,38,21,0.0 +15735,23,9,21,0.0 +15735,6,25,36,0.0 +15735,33,2.5,45,0.0 +15735,8,40,41,0.0 +15735,65,21.05,41,0.0 +15735,48,12.75,47,0.0 +15735,72,34.8,48,0.0 +15735,74,10,21,0.0 +15735,69,36,1,0.0 +15735,54,7.45,4,0.0 +15735,44,19.45,15,0.0 +15735,59,55,7,0.0 +15735,77,13,12,0.0 +15735,71,21.5,24,0.0 +15735,7,30,17,0.0 +15735,76,18,5,0.0 +15735,66,17,46,0.0 +15735,10,31,31,0.0 +15735,36,19,18,0.0 +15735,3,10,17,0.0 +15735,56,38,9,0.0 +15735,68,12.5,5,0.0 +15735,11,21,14,0.0 +15735,31,12.5,46,0.0 +15735,41,9.65,23,0.0 +15735,29,123.79,46,0.0 +15735,4,22,1,0.0 +15735,50,16.25,9,0.0 +15735,16,17.45,3,0.0 +15735,18,62.5,12,0.0 +15735,58,13.25,37,0.0 +15735,40,18.4,30,0.0 +15735,19,9.2,49,0.0 +15735,38,263.5,39,0.0 +15735,51,53,23,0.0 +15735,15,15.5,10,0.0 +15735,17,39,1,0.0 +15735,42,14,8,0.0 +15735,25,14,21,0.0 +15735,14,23.25,10,0.0 +15735,55,24,40,0.0 +15735,73,15,20,0.0 +15735,2,19,7,0.0 +15735,60,34,8,0.0 +15735,35,18,27,0.0 +15735,5,21.35,10,0.0 +15735,64,33.25,37,0.0 +15735,47,9.5,46,0.0 +15735,53,32.8,15,0.0 +15735,45,9.5,16,0.0 +15735,22,21,7,0.0 +15736,50,16.25,21,0.0 +15736,76,18,18,0.0 +15736,3,10,23,0.0 +15736,67,14,30,0.0 +15736,21,10,16,0.0 +15736,2,19,23,0.0 +15736,27,43.9,15,0.0 +15736,18,62.5,35,0.0 +15736,31,12.5,16,0.0 +15736,60,34,25,0.0 +15736,66,17,8,0.0 +15736,47,9.5,8,0.0 +15736,4,22,40,0.0 +15736,59,55,33,0.0 +15736,1,18,25,0.0 +15736,41,9.65,21,0.0 +15736,46,12,34,0.0 +15736,70,15,49,0.0 +15736,54,7.45,12,0.0 +15736,57,19.5,46,0.0 +15736,35,18,49,0.0 +15736,7,30,5,0.0 +15736,63,43.9,17,0.0 +15736,69,36,1,0.0 +15736,12,38,22,0.0 +15736,74,10,18,0.0 +15736,11,21,10,0.0 +15736,22,21,35,0.0 +15736,20,81,2,0.0 +15736,13,6,27,0.0 +15736,14,23.25,49,0.0 +15736,40,18.4,37,0.0 +15736,61,28.5,43,0.0 +15736,45,9.5,23,0.0 +15736,56,38,47,0.0 +15736,36,19,39,0.0 +15736,51,53,18,0.0 +15736,34,14,14,0.0 +15736,38,263.5,37,0.0 +15736,33,2.5,11,0.0 +15736,65,21.05,45,0.0 +15736,64,33.25,20,0.0 +15736,8,40,8,0.0 +15737,38,263.5,47,0.0 +15737,28,45.6,11,0.0 +15737,22,21,37,0.0 +15737,73,15,16,0.0 +15737,14,23.25,35,0.0 +15737,70,15,47,0.0 +15737,25,14,2,0.0 +15737,48,12.75,40,0.0 +15737,77,13,16,0.0 +15737,29,123.79,45,0.0 +15737,43,46,41,0.0 +15737,58,13.25,32,0.0 +15737,40,18.4,49,0.0 +15737,75,7.75,27,0.0 +15737,41,9.65,9,0.0 +15737,55,24,27,0.0 +15737,47,9.5,28,0.0 +15737,30,25.89,3,0.0 +15737,44,19.45,13,0.0 +15737,61,28.5,48,0.0 +15737,3,10,38,0.0 +15737,2,19,23,0.0 +15737,53,32.8,22,0.0 +15737,10,31,44,0.0 +15737,32,32,17,0.0 +15737,16,17.45,31,0.0 +15738,25,14,9,0.0 +15738,73,15,34,0.0 +15738,62,49.3,17,0.0 +15738,50,16.25,44,0.0 +15738,34,14,40,0.0 +15738,53,32.8,44,0.0 +15738,38,263.5,48,0.0 +15738,19,9.2,21,0.0 +15738,72,34.8,25,0.0 +15738,59,55,25,0.0 +15738,44,19.45,35,0.0 +15738,70,15,12,0.0 +15738,43,46,2,0.0 +15738,55,24,19,0.0 +15738,6,25,33,0.0 +15738,24,4.5,18,0.0 +15738,23,9,29,0.0 +15738,69,36,8,0.0 +15738,10,31,3,0.0 +15738,21,10,15,0.0 +15738,32,32,26,0.0 +15738,28,45.6,20,0.0 +15738,18,62.5,24,0.0 +15738,47,9.5,40,0.0 +15738,3,10,37,0.0 +15738,68,12.5,21,0.0 +15738,35,18,25,0.0 +15738,37,26,12,0.0 +15738,54,7.45,7,0.0 +15738,74,10,16,0.0 +15738,65,21.05,19,0.0 +15738,67,14,45,0.0 +15738,16,17.45,40,0.0 +15738,7,30,6,0.0 +15738,36,19,6,0.0 +15738,17,39,48,0.0 +15738,13,6,29,0.0 +15738,40,18.4,16,0.0 +15738,11,21,35,0.0 +15738,61,28.5,50,0.0 +15738,58,13.25,42,0.0 +15738,31,12.5,9,0.0 +15738,15,15.5,29,0.0 +15738,14,23.25,46,0.0 +15738,56,38,49,0.0 +15738,29,123.79,12,0.0 +15738,42,14,44,0.0 +15738,51,53,22,0.0 +15738,46,12,6,0.0 +15738,49,20,2,0.0 +15738,30,25.89,37,0.0 +15738,1,18,32,0.0 +15738,12,38,6,0.0 +15738,4,22,27,0.0 +15738,52,7,35,0.0 +15738,57,19.5,1,0.0 +15738,66,17,20,0.0 +15738,48,12.75,9,0.0 +15738,64,33.25,15,0.0 +15738,27,43.9,41,0.0 +15738,41,9.65,18,0.0 +15738,75,7.75,8,0.0 +15738,26,31.23,36,0.0 +15738,60,34,1,0.0 +15738,39,18,26,0.0 +15738,5,21.35,33,0.0 +15738,2,19,15,0.0 +15738,45,9.5,24,0.0 +15739,35,18,20,0.0 +15739,4,22,14,0.0 +15739,43,46,27,0.0 +15739,70,15,42,0.0 +15739,30,25.89,22,0.0 +15739,12,38,4,0.0 +15739,37,26,24,0.0 +15739,7,30,27,0.0 +15739,48,12.75,42,0.0 +15739,34,14,39,0.0 +15739,56,38,42,0.0 +15739,66,17,37,0.0 +15739,3,10,8,0.0 +15739,72,34.8,8,0.0 +15739,10,31,2,0.0 +15739,75,7.75,25,0.0 +15739,53,32.8,43,0.0 +15739,60,34,11,0.0 +15739,71,21.5,12,0.0 +15739,59,55,41,0.0 +15739,20,81,50,0.0 +15739,23,9,26,0.0 +15739,77,13,27,0.0 +15739,73,15,22,0.0 +15739,22,21,13,0.0 +15739,1,18,22,0.0 +15739,33,2.5,48,0.0 +15739,2,19,31,0.0 +15739,44,19.45,49,0.0 +15740,73,15,27,0.0 +15740,12,38,14,0.0 +15740,9,97,27,0.0 +15740,16,17.45,30,0.0 +15740,53,32.8,24,0.0 +15740,25,14,11,0.0 +15740,40,18.4,49,0.0 +15740,23,9,48,0.0 +15740,49,20,29,0.0 +15740,8,40,15,0.0 +15740,47,9.5,3,0.0 +15740,2,19,25,0.0 +15740,74,10,8,0.0 +15740,24,4.5,24,0.0 +15740,30,25.89,49,0.0 +15740,76,18,3,0.0 +15740,13,6,43,0.0 +15740,67,14,7,0.0 +15740,19,9.2,45,0.0 +15740,37,26,24,0.0 +15740,50,16.25,39,0.0 +15740,64,33.25,17,0.0 +15740,29,123.79,13,0.0 +15740,52,7,14,0.0 +15740,45,9.5,7,0.0 +15740,51,53,23,0.0 +15740,10,31,9,0.0 +15740,22,21,22,0.0 +15740,63,43.9,32,0.0 +15740,61,28.5,1,0.0 +15740,28,45.6,23,0.0 +15740,6,25,37,0.0 +15740,59,55,4,0.0 +15740,26,31.23,47,0.0 +15740,27,43.9,10,0.0 +15740,70,15,15,0.0 +15740,65,21.05,26,0.0 +15740,71,21.5,21,0.0 +15740,55,24,16,0.0 +15740,21,10,43,0.0 +15740,32,32,29,0.0 +15740,31,12.5,29,0.0 +15740,46,12,15,0.0 +15740,43,46,33,0.0 +15740,68,12.5,10,0.0 +15740,18,62.5,30,0.0 +15740,36,19,32,0.0 +15740,66,17,36,0.0 +15740,7,30,33,0.0 +15740,69,36,49,0.0 +15740,60,34,49,0.0 +15740,72,34.8,13,0.0 +15740,57,19.5,47,0.0 +15740,5,21.35,43,0.0 +15740,35,18,20,0.0 +15740,58,13.25,20,0.0 +15740,34,14,49,0.0 +15740,48,12.75,50,0.0 +15740,42,14,49,0.0 +15740,56,38,36,0.0 +15740,20,81,29,0.0 +15740,44,19.45,14,0.0 +15740,11,21,24,0.0 +15740,39,18,22,0.0 +15740,14,23.25,20,0.0 +15740,15,15.5,32,0.0 +15740,1,18,1,0.0 +15740,4,22,26,0.0 +15740,3,10,46,0.0 +15740,62,49.3,41,0.0 +15740,75,7.75,19,0.0 +15740,41,9.65,20,0.0 +15740,17,39,4,0.0 +15740,33,2.5,15,0.0 +15741,66,17,30,0.0 +15741,29,123.79,11,0.0 +15741,30,25.89,32,0.0 +15741,76,18,42,0.0 +15741,57,19.5,47,0.0 +15741,19,9.2,27,0.0 +15741,32,32,25,0.0 +15741,50,16.25,26,0.0 +15741,25,14,50,0.0 +15741,9,97,16,0.0 +15741,73,15,15,0.0 +15741,2,19,38,0.0 +15741,51,53,32,0.0 +15741,37,26,7,0.0 +15741,33,2.5,5,0.0 +15741,38,263.5,4,0.0 +15741,20,81,33,0.0 +15741,53,32.8,20,0.0 +15741,15,15.5,41,0.0 +15741,16,17.45,26,0.0 +15741,27,43.9,5,0.0 +15741,10,31,3,0.0 +15741,22,21,13,0.0 +15741,77,13,23,0.0 +15741,39,18,3,0.0 +15741,71,21.5,24,0.0 +15741,61,28.5,10,0.0 +15741,43,46,2,0.0 +15741,46,12,43,0.0 +15741,40,18.4,6,0.0 +15742,65,21.05,18,0.0 +15742,74,10,47,0.0 +15742,2,19,23,0.0 +15742,17,39,26,0.0 +15743,7,30,21,0.0 +15743,20,81,37,0.0 +15743,24,4.5,15,0.0 +15743,14,23.25,37,0.0 +15743,72,34.8,29,0.0 +15743,58,13.25,26,0.0 +15743,61,28.5,43,0.0 +15743,29,123.79,50,0.0 +15743,76,18,26,0.0 +15743,13,6,15,0.0 +15743,65,21.05,20,0.0 +15743,1,18,22,0.0 +15743,41,9.65,20,0.0 +15743,15,15.5,33,0.0 +15743,25,14,42,0.0 +15743,59,55,23,0.0 +15743,42,14,11,0.0 +15743,49,20,32,0.0 +15743,39,18,48,0.0 +15743,67,14,12,0.0 +15743,70,15,29,0.0 +15743,73,15,47,0.0 +15743,4,22,4,0.0 +15743,48,12.75,1,0.0 +15743,77,13,46,0.0 +15743,33,2.5,16,0.0 +15743,69,36,30,0.0 +15743,11,21,14,0.0 +15743,38,263.5,47,0.0 +15743,26,31.23,9,0.0 +15743,18,62.5,24,0.0 +15743,62,49.3,47,0.0 +15743,56,38,3,0.0 +15743,16,17.45,26,0.0 +15743,35,18,22,0.0 +15743,8,40,37,0.0 +15743,37,26,13,0.0 +15743,5,21.35,11,0.0 +15743,32,32,44,0.0 +15743,51,53,4,0.0 +15743,68,12.5,22,0.0 +15743,2,19,15,0.0 +15743,31,12.5,29,0.0 +15743,27,43.9,38,0.0 +15743,44,19.45,7,0.0 +15743,66,17,34,0.0 +15743,64,33.25,20,0.0 +15743,34,14,28,0.0 +15743,6,25,43,0.0 +15743,55,24,32,0.0 +15743,10,31,48,0.0 +15743,19,9.2,7,0.0 +15743,36,19,10,0.0 +15743,30,25.89,38,0.0 +15743,54,7.45,36,0.0 +15743,45,9.5,22,0.0 +15743,46,12,37,0.0 +15743,63,43.9,5,0.0 +15743,74,10,18,0.0 +15743,23,9,37,0.0 +15744,57,19.5,4,0.0 +15744,76,18,10,0.0 +15744,20,81,3,0.0 +15744,34,14,9,0.0 +15744,62,49.3,35,0.0 +15744,13,6,29,0.0 +15744,66,17,17,0.0 +15744,44,19.45,28,0.0 +15744,68,12.5,14,0.0 +15744,51,53,8,0.0 +15744,72,34.8,4,0.0 +15744,28,45.6,49,0.0 +15744,60,34,24,0.0 +15744,23,9,40,0.0 +15744,33,2.5,17,0.0 +15744,6,25,48,0.0 +15744,9,97,34,0.0 +15744,18,62.5,31,0.0 +15744,40,18.4,33,0.0 +15744,74,10,6,0.0 +15744,69,36,36,0.0 +15744,41,9.65,24,0.0 +15744,29,123.79,49,0.0 +15745,16,17.45,4,0.0 +15745,66,17,39,0.0 +15745,71,21.5,36,0.0 +15745,54,7.45,49,0.0 +15745,69,36,39,0.0 +15745,29,123.79,42,0.0 +15745,5,21.35,50,0.0 +15745,42,14,6,0.0 +15745,9,97,40,0.0 +15745,53,32.8,26,0.0 +15745,70,15,17,0.0 +15745,38,263.5,20,0.0 +15745,20,81,45,0.0 +15745,2,19,49,0.0 +15745,55,24,43,0.0 +15745,24,4.5,38,0.0 +15745,12,38,42,0.0 +15745,36,19,39,0.0 +15745,76,18,33,0.0 +15745,17,39,9,0.0 +15745,58,13.25,15,0.0 +15745,72,34.8,47,0.0 +15745,68,12.5,2,0.0 +15745,61,28.5,6,0.0 +15745,22,21,4,0.0 +15745,37,26,17,0.0 +15745,8,40,39,0.0 +15745,10,31,4,0.0 +15745,26,31.23,15,0.0 +15745,51,53,50,0.0 +15745,21,10,44,0.0 +15745,73,15,26,0.0 +15745,13,6,4,0.0 +15745,14,23.25,40,0.0 +15745,45,9.5,43,0.0 +15745,48,12.75,48,0.0 +15745,56,38,6,0.0 +15745,50,16.25,49,0.0 +15745,30,25.89,29,0.0 +15745,49,20,4,0.0 +15745,57,19.5,10,0.0 +15745,77,13,16,0.0 +15745,52,7,9,0.0 +15745,34,14,12,0.0 +15745,65,21.05,48,0.0 +15745,33,2.5,16,0.0 +15745,44,19.45,8,0.0 +15745,67,14,35,0.0 +15746,63,43.9,44,0.0 +15746,30,25.89,8,0.0 +15746,42,14,10,0.0 +15746,10,31,20,0.0 +15746,65,21.05,19,0.0 +15746,45,9.5,11,0.0 +15746,70,15,40,0.0 +15746,66,17,42,0.0 +15746,6,25,3,0.0 +15747,3,10,10,0.0 +15747,26,31.23,10,0.0 +15747,29,123.79,47,0.0 +15747,69,36,34,0.0 +15747,18,62.5,10,0.0 +15747,32,32,42,0.0 +15747,27,43.9,17,0.0 +15747,45,9.5,34,0.0 +15747,65,21.05,32,0.0 +15747,64,33.25,19,0.0 +15747,75,7.75,22,0.0 +15747,28,45.6,1,0.0 +15747,10,31,49,0.0 +15747,53,32.8,4,0.0 +15747,33,2.5,34,0.0 +15747,13,6,50,0.0 +15748,21,10,29,0.0 +15748,18,62.5,27,0.0 +15748,11,21,6,0.0 +15748,44,19.45,45,0.0 +15748,50,16.25,38,0.0 +15748,73,15,10,0.0 +15748,70,15,47,0.0 +15748,19,9.2,1,0.0 +15748,72,34.8,1,0.0 +15748,56,38,18,0.0 +15748,8,40,34,0.0 +15748,39,18,1,0.0 +15748,61,28.5,18,0.0 +15748,45,9.5,31,0.0 +15748,5,21.35,6,0.0 +15748,58,13.25,12,0.0 +15748,40,18.4,4,0.0 +15748,6,25,7,0.0 +15748,34,14,42,0.0 +15748,53,32.8,40,0.0 +15748,55,24,22,0.0 +15748,10,31,13,0.0 +15748,20,81,25,0.0 +15748,47,9.5,49,0.0 +15748,29,123.79,42,0.0 +15748,1,18,24,0.0 +15748,74,10,4,0.0 +15748,38,263.5,37,0.0 +15748,48,12.75,46,0.0 +15748,30,25.89,30,0.0 +15749,72,34.8,9,0.0 +15749,69,36,29,0.0 +15749,77,13,36,0.0 +15749,44,19.45,28,0.0 +15749,61,28.5,49,0.0 +15749,22,21,37,0.0 +15749,49,20,24,0.0 +15749,56,38,44,0.0 +15749,71,21.5,6,0.0 +15749,52,7,39,0.0 +15749,29,123.79,21,0.0 +15749,58,13.25,42,0.0 +15749,17,39,15,0.0 +15749,33,2.5,39,0.0 +15749,14,23.25,50,0.0 +15749,45,9.5,23,0.0 +15749,9,97,6,0.0 +15749,6,25,7,0.0 +15749,55,24,30,0.0 +15749,8,40,31,0.0 +15749,65,21.05,7,0.0 +15749,46,12,24,0.0 +15749,20,81,32,0.0 +15749,23,9,47,0.0 +15749,4,22,40,0.0 +15749,31,12.5,45,0.0 +15749,26,31.23,23,0.0 +15749,36,19,32,0.0 +15749,15,15.5,38,0.0 +15749,54,7.45,23,0.0 +15749,3,10,1,0.0 +15749,18,62.5,36,0.0 +15749,32,32,16,0.0 +15749,50,16.25,31,0.0 +15749,30,25.89,27,0.0 +15749,24,4.5,12,0.0 +15749,34,14,30,0.0 +15749,7,30,38,0.0 +15750,40,18.4,7,0.0 +15750,4,22,28,0.0 +15750,76,18,9,0.0 +15750,47,9.5,27,0.0 +15750,36,19,41,0.0 +15750,43,46,15,0.0 +15750,48,12.75,39,0.0 +15750,23,9,47,0.0 +15750,66,17,21,0.0 +15750,29,123.79,11,0.0 +15750,38,263.5,37,0.0 +15750,45,9.5,34,0.0 +15750,69,36,49,0.0 +15750,46,12,41,0.0 +15750,31,12.5,15,0.0 +15750,56,38,23,0.0 +15750,17,39,4,0.0 +15750,70,15,38,0.0 +15750,52,7,37,0.0 +15751,24,4.5,32,0.0 +15752,75,7.75,43,0.0 +15752,20,81,25,0.0 +15752,34,14,28,0.0 +15752,24,4.5,2,0.0 +15752,11,21,19,0.0 +15752,46,12,43,0.0 +15752,58,13.25,50,0.0 +15752,26,31.23,32,0.0 +15752,57,19.5,1,0.0 +15752,64,33.25,12,0.0 +15752,60,34,33,0.0 +15752,6,25,37,0.0 +15752,63,43.9,28,0.0 +15752,12,38,12,0.0 +15752,9,97,34,0.0 +15752,32,32,12,0.0 +15752,15,15.5,48,0.0 +15752,40,18.4,15,0.0 +15752,66,17,43,0.0 +15752,67,14,7,0.0 +15752,73,15,17,0.0 +15752,44,19.45,44,0.0 +15752,62,49.3,19,0.0 +15752,35,18,35,0.0 +15752,13,6,17,0.0 +15752,7,30,20,0.0 +15752,43,46,4,0.0 +15752,14,23.25,33,0.0 +15752,39,18,14,0.0 +15752,27,43.9,48,0.0 +15752,55,24,23,0.0 +15752,29,123.79,27,0.0 +15752,31,12.5,50,0.0 +15752,1,18,46,0.0 +15752,77,13,29,0.0 +15752,41,9.65,2,0.0 +15752,71,21.5,10,0.0 +15752,74,10,38,0.0 +15752,59,55,43,0.0 +15752,68,12.5,20,0.0 +15752,50,16.25,44,0.0 +15752,36,19,26,0.0 +15752,53,32.8,46,0.0 +15752,4,22,3,0.0 +15752,2,19,30,0.0 +15752,18,62.5,39,0.0 +15752,54,7.45,12,0.0 +15752,69,36,49,0.0 +15752,52,7,5,0.0 +15752,21,10,23,0.0 +15752,30,25.89,46,0.0 +15752,28,45.6,41,0.0 +15752,48,12.75,22,0.0 +15752,65,21.05,30,0.0 +15752,56,38,40,0.0 +15752,3,10,49,0.0 +15752,47,9.5,30,0.0 +15752,37,26,11,0.0 +15752,33,2.5,9,0.0 +15752,61,28.5,27,0.0 +15752,45,9.5,46,0.0 +15752,70,15,44,0.0 +15752,10,31,35,0.0 +15752,8,40,14,0.0 +15752,72,34.8,1,0.0 +15752,17,39,20,0.0 +15752,49,20,27,0.0 +15752,23,9,11,0.0 +15752,76,18,7,0.0 +15752,16,17.45,7,0.0 +15753,56,38,28,0.0 +15753,73,15,25,0.0 +15753,66,17,22,0.0 +15753,65,21.05,3,0.0 +15753,10,31,45,0.0 +15753,37,26,31,0.0 +15753,36,19,34,0.0 +15753,76,18,20,0.0 +15753,33,2.5,32,0.0 +15753,15,15.5,3,0.0 +15753,27,43.9,30,0.0 +15753,49,20,21,0.0 +15753,38,263.5,6,0.0 +15753,40,18.4,9,0.0 +15753,32,32,25,0.0 +15753,4,22,43,0.0 +15753,47,9.5,19,0.0 +15753,69,36,2,0.0 +15753,46,12,1,0.0 +15753,68,12.5,45,0.0 +15753,51,53,26,0.0 +15753,26,31.23,40,0.0 +15753,41,9.65,21,0.0 +15753,14,23.25,11,0.0 +15753,19,9.2,21,0.0 +15753,20,81,32,0.0 +15753,71,21.5,46,0.0 +15753,67,14,43,0.0 +15753,53,32.8,45,0.0 +15753,63,43.9,3,0.0 +15753,18,62.5,35,0.0 +15753,2,19,48,0.0 +15753,50,16.25,40,0.0 +15753,22,21,20,0.0 +15753,16,17.45,16,0.0 +15753,12,38,3,0.0 +15753,13,6,15,0.0 +15753,35,18,44,0.0 +15753,57,19.5,39,0.0 +15753,24,4.5,39,0.0 +15753,72,34.8,12,0.0 +15753,17,39,46,0.0 +15753,11,21,34,0.0 +15753,9,97,33,0.0 +15753,39,18,47,0.0 +15753,59,55,41,0.0 +15753,45,9.5,23,0.0 +15753,44,19.45,8,0.0 +15753,29,123.79,16,0.0 +15753,25,14,18,0.0 +15753,74,10,23,0.0 +15753,7,30,50,0.0 +15753,60,34,19,0.0 +15753,23,9,17,0.0 +15753,75,7.75,50,0.0 +15753,77,13,25,0.0 +15753,3,10,3,0.0 +15753,30,25.89,38,0.0 +15753,21,10,49,0.0 +15753,62,49.3,41,0.0 +15753,43,46,12,0.0 +15753,8,40,35,0.0 +15753,64,33.25,49,0.0 +15753,55,24,7,0.0 +15753,6,25,41,0.0 +15753,54,7.45,20,0.0 +15753,52,7,41,0.0 +15753,58,13.25,29,0.0 +15753,70,15,18,0.0 +15753,34,14,45,0.0 +15753,48,12.75,41,0.0 +15753,31,12.5,26,0.0 +15753,1,18,35,0.0 +15753,42,14,45,0.0 +15753,61,28.5,40,0.0 +15753,28,45.6,32,0.0 +15753,5,21.35,2,0.0 +15754,52,7,20,0.0 +15754,14,23.25,41,0.0 +15754,22,21,47,0.0 +15754,27,43.9,14,0.0 +15754,42,14,28,0.0 +15754,36,19,33,0.0 +15754,75,7.75,25,0.0 +15754,33,2.5,11,0.0 +15754,41,9.65,37,0.0 +15754,32,32,38,0.0 +15754,67,14,29,0.0 +15754,16,17.45,7,0.0 +15754,20,81,14,0.0 +15754,51,53,2,0.0 +15754,74,10,25,0.0 +15754,10,31,30,0.0 +15754,47,9.5,14,0.0 +15754,49,20,28,0.0 +15754,38,263.5,36,0.0 +15754,18,62.5,42,0.0 +15754,35,18,31,0.0 +15754,6,25,47,0.0 +15754,64,33.25,50,0.0 +15754,7,30,31,0.0 +15754,13,6,48,0.0 +15754,28,45.6,34,0.0 +15754,61,28.5,30,0.0 +15754,76,18,24,0.0 +15754,12,38,4,0.0 +15754,53,32.8,20,0.0 +15754,69,36,24,0.0 +15754,37,26,24,0.0 +15754,62,49.3,16,0.0 +15754,34,14,45,0.0 +15754,40,18.4,17,0.0 +15754,43,46,37,0.0 +15754,2,19,44,0.0 +15754,24,4.5,20,0.0 +15754,4,22,22,0.0 +15754,9,97,2,0.0 +15754,23,9,30,0.0 +15754,54,7.45,43,0.0 +15754,45,9.5,18,0.0 +15754,44,19.45,1,0.0 +15754,26,31.23,9,0.0 +15754,73,15,30,0.0 +15754,56,38,5,0.0 +15754,21,10,38,0.0 +15754,31,12.5,33,0.0 +15754,66,17,49,0.0 +15755,77,13,20,0.0 +15755,25,14,17,0.0 +15755,49,20,9,0.0 +15755,66,17,9,0.0 +15755,26,31.23,23,0.0 +15755,54,7.45,49,0.0 +15755,47,9.5,26,0.0 +15755,71,21.5,40,0.0 +15755,24,4.5,46,0.0 +15755,62,49.3,47,0.0 +15755,32,32,33,0.0 +15755,19,9.2,13,0.0 +15755,12,38,34,0.0 +15755,42,14,14,0.0 +15755,15,15.5,11,0.0 +15755,23,9,23,0.0 +15755,68,12.5,47,0.0 +15755,67,14,12,0.0 +15755,69,36,30,0.0 +15755,18,62.5,27,0.0 +15755,13,6,21,0.0 +15755,57,19.5,14,0.0 +15755,33,2.5,42,0.0 +15755,63,43.9,29,0.0 +15755,46,12,11,0.0 +15755,16,17.45,4,0.0 +15755,31,12.5,5,0.0 +15755,11,21,35,0.0 +15755,50,16.25,36,0.0 +15755,39,18,29,0.0 +15755,41,9.65,2,0.0 +15755,53,32.8,46,0.0 +15755,1,18,3,0.0 +15755,27,43.9,50,0.0 +15755,59,55,19,0.0 +15755,44,19.45,6,0.0 +15755,73,15,25,0.0 +15755,22,21,40,0.0 +15755,34,14,44,0.0 +15755,40,18.4,13,0.0 +15755,51,53,4,0.0 +15755,75,7.75,34,0.0 +15755,5,21.35,48,0.0 +15755,65,21.05,1,0.0 +15755,52,7,8,0.0 +15755,61,28.5,14,0.0 +15755,30,25.89,49,0.0 +15755,17,39,7,0.0 +15755,55,24,9,0.0 +15755,48,12.75,6,0.0 +15755,45,9.5,16,0.0 +15755,28,45.6,24,0.0 +15755,20,81,10,0.0 +15755,29,123.79,15,0.0 +15755,21,10,11,0.0 +15755,70,15,28,0.0 +15755,6,25,27,0.0 +15755,64,33.25,25,0.0 +15755,10,31,9,0.0 +15755,60,34,45,0.0 +15755,58,13.25,5,0.0 +15755,43,46,25,0.0 +15755,56,38,4,0.0 +15755,14,23.25,25,0.0 +15755,38,263.5,8,0.0 +15755,35,18,8,0.0 +15755,4,22,40,0.0 +15755,72,34.8,44,0.0 +15755,74,10,3,0.0 +15755,7,30,28,0.0 +15755,36,19,19,0.0 +15755,37,26,3,0.0 +15755,3,10,1,0.0 +15756,73,15,48,0.0 +15756,75,7.75,40,0.0 +15756,18,62.5,23,0.0 +15756,46,12,50,0.0 +15756,61,28.5,42,0.0 +15756,26,31.23,37,0.0 +15756,35,18,49,0.0 +15756,60,34,2,0.0 +15756,9,97,17,0.0 +15756,77,13,10,0.0 +15756,66,17,9,0.0 +15756,31,12.5,39,0.0 +15756,56,38,12,0.0 +15756,25,14,35,0.0 +15756,10,31,27,0.0 +15756,37,26,13,0.0 +15756,72,34.8,50,0.0 +15756,24,4.5,5,0.0 +15756,76,18,50,0.0 +15756,30,25.89,35,0.0 +15756,55,24,37,0.0 +15756,57,19.5,20,0.0 +15756,45,9.5,42,0.0 +15756,33,2.5,49,0.0 +15756,38,263.5,11,0.0 +15756,2,19,5,0.0 +15756,29,123.79,7,0.0 +15756,3,10,5,0.0 +15756,11,21,5,0.0 +15756,4,22,9,0.0 +15756,51,53,9,0.0 +15756,34,14,44,0.0 +15756,48,12.75,9,0.0 +15756,21,10,33,0.0 +15756,54,7.45,50,0.0 +15756,71,21.5,38,0.0 +15756,64,33.25,42,0.0 +15756,49,20,19,0.0 +15756,20,81,28,0.0 +15756,12,38,36,0.0 +15756,58,13.25,15,0.0 +15756,74,10,45,0.0 +15756,19,9.2,11,0.0 +15756,8,40,16,0.0 +15756,53,32.8,31,0.0 +15756,67,14,38,0.0 +15756,32,32,6,0.0 +15756,47,9.5,21,0.0 +15756,17,39,31,0.0 +15757,24,4.5,44,0.0 +15757,48,12.75,5,0.0 +15757,31,12.5,10,0.0 +15757,41,9.65,4,0.0 +15757,11,21,17,0.0 +15757,12,38,20,0.0 +15757,19,9.2,45,0.0 +15757,5,21.35,18,0.0 +15757,51,53,7,0.0 +15757,73,15,11,0.0 +15757,25,14,44,0.0 +15757,10,31,22,0.0 +15757,21,10,50,0.0 +15757,55,24,6,0.0 +15757,58,13.25,1,0.0 +15757,9,97,48,0.0 +15757,66,17,29,0.0 +15757,2,19,4,0.0 +15757,26,31.23,23,0.0 +15757,70,15,22,0.0 +15757,33,2.5,37,0.0 +15757,38,263.5,43,0.0 +15757,23,9,6,0.0 +15757,72,34.8,42,0.0 +15757,69,36,33,0.0 +15757,56,38,33,0.0 +15757,76,18,21,0.0 +15757,44,19.45,13,0.0 +15757,64,33.25,31,0.0 +15757,52,7,37,0.0 +15757,20,81,36,0.0 +15757,30,25.89,34,0.0 +15757,59,55,41,0.0 +15757,18,62.5,46,0.0 +15757,45,9.5,21,0.0 +15757,67,14,5,0.0 +15757,17,39,9,0.0 +15757,14,23.25,4,0.0 +15757,4,22,34,0.0 +15757,42,14,41,0.0 +15757,47,9.5,37,0.0 +15757,32,32,17,0.0 +15757,1,18,19,0.0 +15757,57,19.5,39,0.0 +15757,43,46,28,0.0 +15757,71,21.5,5,0.0 +15757,6,25,48,0.0 +15757,37,26,36,0.0 +15757,49,20,38,0.0 +15757,46,12,29,0.0 +15757,16,17.45,33,0.0 +15757,35,18,34,0.0 +15758,58,13.25,6,0.0 +15758,43,46,9,0.0 +15758,67,14,24,0.0 +15758,66,17,47,0.0 +15758,16,17.45,12,0.0 +15758,36,19,22,0.0 +15758,34,14,31,0.0 +15758,76,18,7,0.0 +15758,57,19.5,19,0.0 +15758,6,25,24,0.0 +15758,1,18,50,0.0 +15758,13,6,20,0.0 +15758,38,263.5,28,0.0 +15758,59,55,31,0.0 +15758,74,10,32,0.0 +15758,17,39,34,0.0 +15758,72,34.8,4,0.0 +15758,25,14,7,0.0 +15758,68,12.5,2,0.0 +15758,40,18.4,33,0.0 +15758,7,30,32,0.0 +15758,47,9.5,11,0.0 +15758,44,19.45,15,0.0 +15759,35,18,6,0.0 +15759,43,46,41,0.0 +15759,15,15.5,8,0.0 +15759,45,9.5,40,0.0 +15759,41,9.65,2,0.0 +15759,36,19,29,0.0 +15759,10,31,23,0.0 +15759,4,22,8,0.0 +15759,38,263.5,20,0.0 +15759,37,26,22,0.0 +15759,31,12.5,11,0.0 +15759,9,97,4,0.0 +15759,21,10,16,0.0 +15759,77,13,2,0.0 +15759,59,55,39,0.0 +15759,57,19.5,36,0.0 +15760,9,97,2,0.0 +15760,26,31.23,4,0.0 +15760,69,36,35,0.0 +15760,42,14,33,0.0 +15760,21,10,20,0.0 +15760,10,31,7,0.0 +15760,27,43.9,49,0.0 +15760,50,16.25,36,0.0 +15760,67,14,23,0.0 +15760,60,34,26,0.0 +15760,38,263.5,22,0.0 +15760,22,21,17,0.0 +15760,75,7.75,4,0.0 +15760,23,9,23,0.0 +15760,7,30,24,0.0 +15760,71,21.5,15,0.0 +15761,59,55,23,0.0 +15761,49,20,26,0.0 +15761,48,12.75,26,0.0 +15761,65,21.05,23,0.0 +15761,15,15.5,50,0.0 +15761,52,7,27,0.0 +15761,16,17.45,46,0.0 +15761,11,21,38,0.0 +15761,47,9.5,40,0.0 +15761,72,34.8,27,0.0 +15761,29,123.79,39,0.0 +15761,20,81,6,0.0 +15761,10,31,47,0.0 +15761,61,28.5,40,0.0 +15761,60,34,14,0.0 +15761,43,46,44,0.0 +15761,32,32,19,0.0 +15761,50,16.25,21,0.0 +15761,25,14,47,0.0 +15761,38,263.5,20,0.0 +15761,7,30,37,0.0 +15761,63,43.9,4,0.0 +15761,21,10,9,0.0 +15761,66,17,8,0.0 +15761,58,13.25,4,0.0 +15761,44,19.45,38,0.0 +15761,17,39,21,0.0 +15761,31,12.5,26,0.0 +15761,39,18,30,0.0 +15761,37,26,14,0.0 +15761,56,38,16,0.0 +15761,22,21,49,0.0 +15761,70,15,45,0.0 +15761,69,36,27,0.0 +15761,3,10,3,0.0 +15761,8,40,13,0.0 +15761,40,18.4,11,0.0 +15761,75,7.75,39,0.0 +15761,68,12.5,39,0.0 +15761,41,9.65,23,0.0 +15761,57,19.5,11,0.0 +15761,33,2.5,25,0.0 +15761,42,14,46,0.0 +15761,36,19,15,0.0 +15761,53,32.8,36,0.0 +15761,5,21.35,38,0.0 +15761,64,33.25,39,0.0 +15761,74,10,14,0.0 +15761,76,18,36,0.0 +15761,35,18,45,0.0 +15761,51,53,7,0.0 +15761,62,49.3,17,0.0 +15761,30,25.89,39,0.0 +15761,2,19,35,0.0 +15761,46,12,38,0.0 +15761,19,9.2,22,0.0 +15761,23,9,21,0.0 +15761,45,9.5,14,0.0 +15761,73,15,43,0.0 +15761,67,14,31,0.0 +15761,54,7.45,24,0.0 +15761,9,97,31,0.0 +15762,16,17.45,13,0.0 +15762,62,49.3,39,0.0 +15762,66,17,43,0.0 +15762,35,18,43,0.0 +15762,67,14,15,0.0 +15762,41,9.65,41,0.0 +15762,23,9,3,0.0 +15762,25,14,39,0.0 +15762,38,263.5,39,0.0 +15762,19,9.2,16,0.0 +15762,27,43.9,15,0.0 +15762,68,12.5,32,0.0 +15762,73,15,15,0.0 +15762,6,25,8,0.0 +15762,45,9.5,48,0.0 +15762,52,7,28,0.0 +15762,12,38,17,0.0 +15762,58,13.25,30,0.0 +15762,2,19,29,0.0 +15762,69,36,49,0.0 +15762,55,24,32,0.0 +15762,34,14,34,0.0 +15762,26,31.23,6,0.0 +15762,65,21.05,35,0.0 +15762,4,22,36,0.0 +15762,20,81,30,0.0 +15762,71,21.5,29,0.0 +15762,60,34,24,0.0 +15762,74,10,47,0.0 +15762,21,10,25,0.0 +15762,22,21,11,0.0 +15762,77,13,48,0.0 +15762,46,12,3,0.0 +15762,17,39,49,0.0 +15762,29,123.79,48,0.0 +15762,24,4.5,35,0.0 +15762,30,25.89,39,0.0 +15762,44,19.45,41,0.0 +15762,43,46,16,0.0 +15762,76,18,11,0.0 +15762,32,32,29,0.0 +15762,56,38,49,0.0 +15762,13,6,3,0.0 +15762,1,18,24,0.0 +15762,28,45.6,18,0.0 +15762,39,18,2,0.0 +15763,63,43.9,29,0.0 +15763,57,19.5,25,0.0 +15763,28,45.6,36,0.0 +15763,65,21.05,5,0.0 +15763,59,55,22,0.0 +15763,76,18,2,0.0 +15763,12,38,41,0.0 +15763,62,49.3,30,0.0 +15763,37,26,12,0.0 +15763,47,9.5,26,0.0 +15763,66,17,40,0.0 +15763,40,18.4,21,0.0 +15763,35,18,3,0.0 +15763,22,21,2,0.0 +15763,21,10,29,0.0 +15763,64,33.25,13,0.0 +15763,44,19.45,4,0.0 +15763,32,32,44,0.0 +15763,51,53,46,0.0 +15763,46,12,28,0.0 +15763,25,14,21,0.0 +15763,41,9.65,46,0.0 +15763,56,38,19,0.0 +15763,54,7.45,18,0.0 +15763,5,21.35,41,0.0 +15763,36,19,42,0.0 +15763,16,17.45,11,0.0 +15763,6,25,36,0.0 +15763,77,13,13,0.0 +15763,11,21,33,0.0 +15763,7,30,49,0.0 +15763,24,4.5,17,0.0 +15763,69,36,41,0.0 +15763,60,34,23,0.0 +15763,52,7,32,0.0 +15763,30,25.89,10,0.0 +15763,10,31,9,0.0 +15763,1,18,28,0.0 +15763,72,34.8,34,0.0 +15763,8,40,20,0.0 +15763,50,16.25,5,0.0 +15763,33,2.5,34,0.0 +15763,15,15.5,43,0.0 +15763,26,31.23,12,0.0 +15763,27,43.9,23,0.0 +15763,58,13.25,3,0.0 +15763,42,14,38,0.0 +15763,49,20,31,0.0 +15763,43,46,37,0.0 +15763,45,9.5,14,0.0 +15763,71,21.5,1,0.0 +15763,67,14,48,0.0 +15763,17,39,45,0.0 +15763,38,263.5,42,0.0 +15763,34,14,4,0.0 +15763,31,12.5,12,0.0 +15763,9,97,1,0.0 +15763,19,9.2,23,0.0 +15763,55,24,38,0.0 +15763,61,28.5,8,0.0 +15763,39,18,47,0.0 +15763,13,6,43,0.0 +15763,3,10,9,0.0 +15763,73,15,35,0.0 +15763,29,123.79,15,0.0 +15763,2,19,15,0.0 +15763,74,10,36,0.0 +15763,48,12.75,7,0.0 +15763,18,62.5,17,0.0 +15763,4,22,41,0.0 +15763,70,15,9,0.0 +15764,42,14,10,0.0 +15764,72,34.8,29,0.0 +15764,3,10,33,0.0 +15764,77,13,34,0.0 +15764,47,9.5,24,0.0 +15764,17,39,34,0.0 +15764,58,13.25,48,0.0 +15764,25,14,29,0.0 +15764,67,14,31,0.0 +15764,26,31.23,6,0.0 +15764,38,263.5,4,0.0 +15764,7,30,50,0.0 +15764,69,36,43,0.0 +15764,52,7,37,0.0 +15764,37,26,27,0.0 +15764,51,53,29,0.0 +15764,53,32.8,23,0.0 +15764,71,21.5,45,0.0 +15764,5,21.35,44,0.0 +15764,76,18,37,0.0 +15764,34,14,23,0.0 +15765,27,43.9,28,0.0 +15765,32,32,37,0.0 +15765,51,53,24,0.0 +15765,2,19,12,0.0 +15765,16,17.45,50,0.0 +15765,61,28.5,24,0.0 +15765,45,9.5,17,0.0 +15765,77,13,24,0.0 +15765,1,18,2,0.0 +15765,17,39,26,0.0 +15765,44,19.45,29,0.0 +15765,13,6,12,0.0 +15765,73,15,40,0.0 +15765,68,12.5,47,0.0 +15765,12,38,49,0.0 +15765,5,21.35,2,0.0 +15766,69,36,1,0.0 +15766,8,40,44,0.0 +15766,57,19.5,15,0.0 +15766,62,49.3,24,0.0 +15766,41,9.65,43,0.0 +15766,71,21.5,1,0.0 +15766,54,7.45,29,0.0 +15766,46,12,21,0.0 +15766,19,9.2,8,0.0 +15766,44,19.45,8,0.0 +15766,53,32.8,37,0.0 +15766,76,18,39,0.0 +15766,51,53,13,0.0 +15766,67,14,2,0.0 +15766,29,123.79,29,0.0 +15766,66,17,8,0.0 +15766,42,14,17,0.0 +15766,13,6,42,0.0 +15766,75,7.75,43,0.0 +15766,65,21.05,26,0.0 +15766,55,24,2,0.0 +15766,52,7,32,0.0 +15766,68,12.5,44,0.0 +15766,11,21,20,0.0 +15766,50,16.25,44,0.0 +15766,37,26,9,0.0 +15766,49,20,11,0.0 +15766,39,18,43,0.0 +15766,1,18,40,0.0 +15766,58,13.25,49,0.0 +15766,15,15.5,14,0.0 +15766,28,45.6,13,0.0 +15766,23,9,43,0.0 +15766,56,38,6,0.0 +15766,30,25.89,5,0.0 +15766,45,9.5,29,0.0 +15766,10,31,12,0.0 +15766,20,81,40,0.0 +15766,25,14,8,0.0 +15766,14,23.25,29,0.0 +15766,24,4.5,26,0.0 +15766,26,31.23,11,0.0 +15766,3,10,47,0.0 +15766,31,12.5,5,0.0 +15766,33,2.5,44,0.0 +15766,73,15,32,0.0 +15766,5,21.35,27,0.0 +15766,2,19,9,0.0 +15766,34,14,42,0.0 +15766,64,33.25,10,0.0 +15766,9,97,19,0.0 +15766,60,34,24,0.0 +15766,43,46,18,0.0 +15766,7,30,22,0.0 +15766,16,17.45,42,0.0 +15766,36,19,6,0.0 +15766,38,263.5,41,0.0 +15766,74,10,8,0.0 +15766,63,43.9,18,0.0 +15766,35,18,42,0.0 +15766,47,9.5,33,0.0 +15766,77,13,26,0.0 +15766,18,62.5,23,0.0 +15766,48,12.75,16,0.0 +15766,12,38,18,0.0 +15766,27,43.9,11,0.0 +15766,61,28.5,11,0.0 +15767,38,263.5,45,0.0 +15767,20,81,29,0.0 +15767,36,19,46,0.0 +15767,53,32.8,28,0.0 +15767,7,30,26,0.0 +15767,13,6,12,0.0 +15767,65,21.05,1,0.0 +15767,32,32,6,0.0 +15767,70,15,27,0.0 +15767,50,16.25,20,0.0 +15767,4,22,32,0.0 +15767,21,10,49,0.0 +15767,69,36,44,0.0 +15767,6,25,33,0.0 +15767,45,9.5,14,0.0 +15767,11,21,47,0.0 +15767,62,49.3,2,0.0 +15767,74,10,33,0.0 +15767,76,18,31,0.0 +15767,10,31,33,0.0 +15767,68,12.5,26,0.0 +15767,48,12.75,19,0.0 +15767,41,9.65,28,0.0 +15767,5,21.35,22,0.0 +15767,60,34,9,0.0 +15767,19,9.2,41,0.0 +15767,33,2.5,31,0.0 +15767,27,43.9,36,0.0 +15767,29,123.79,33,0.0 +15767,57,19.5,21,0.0 +15767,63,43.9,30,0.0 +15767,14,23.25,38,0.0 +15767,30,25.89,19,0.0 +15767,1,18,45,0.0 +15767,37,26,23,0.0 +15767,26,31.23,28,0.0 +15767,40,18.4,22,0.0 +15767,77,13,11,0.0 +15767,59,55,11,0.0 +15767,31,12.5,4,0.0 +15767,61,28.5,46,0.0 +15767,25,14,17,0.0 +15767,43,46,41,0.0 +15767,71,21.5,24,0.0 +15767,16,17.45,44,0.0 +15767,39,18,47,0.0 +15767,3,10,28,0.0 +15767,24,4.5,1,0.0 +15767,44,19.45,4,0.0 +15767,18,62.5,36,0.0 +15767,35,18,23,0.0 +15767,49,20,12,0.0 +15767,75,7.75,28,0.0 +15767,8,40,49,0.0 +15767,9,97,7,0.0 +15767,52,7,21,0.0 +15767,67,14,11,0.0 +15767,23,9,1,0.0 +15767,22,21,32,0.0 +15767,56,38,25,0.0 +15767,17,39,48,0.0 +15767,72,34.8,1,0.0 +15767,28,45.6,20,0.0 +15767,64,33.25,25,0.0 +15767,2,19,14,0.0 +15767,15,15.5,25,0.0 +15767,55,24,43,0.0 +15767,46,12,37,0.0 +15767,66,17,38,0.0 +15767,58,13.25,11,0.0 +15767,34,14,10,0.0 +15767,54,7.45,46,0.0 +15767,51,53,23,0.0 +15767,12,38,23,0.0 +15767,47,9.5,38,0.0 +15767,73,15,23,0.0 +15767,42,14,49,0.0 +15768,77,13,10,0.0 +15768,23,9,16,0.0 +15768,17,39,11,0.0 +15768,72,34.8,22,0.0 +15768,55,24,14,0.0 +15768,31,12.5,47,0.0 +15768,13,6,32,0.0 +15768,28,45.6,23,0.0 +15768,66,17,40,0.0 +15768,50,16.25,13,0.0 +15768,73,15,43,0.0 +15768,18,62.5,20,0.0 +15768,39,18,8,0.0 +15768,53,32.8,1,0.0 +15768,24,4.5,37,0.0 +15768,15,15.5,41,0.0 +15768,40,18.4,32,0.0 +15768,65,21.05,4,0.0 +15768,22,21,13,0.0 +15768,21,10,26,0.0 +15768,60,34,5,0.0 +15769,20,81,17,0.0 +15769,65,21.05,20,0.0 +15769,68,12.5,33,0.0 +15769,15,15.5,24,0.0 +15769,45,9.5,19,0.0 +15769,39,18,20,0.0 +15770,32,32,18,0.0 +15770,19,9.2,37,0.0 +15770,12,38,46,0.0 +15770,54,7.45,5,0.0 +15770,40,18.4,40,0.0 +15770,51,53,39,0.0 +15770,55,24,10,0.0 +15770,73,15,42,0.0 +15770,34,14,38,0.0 +15770,53,32.8,20,0.0 +15770,9,97,46,0.0 +15771,20,81,32,0.0 +15771,72,34.8,6,0.0 +15771,29,123.79,3,0.0 +15771,27,43.9,10,0.0 +15771,32,32,18,0.0 +15771,75,7.75,7,0.0 +15771,43,46,19,0.0 +15771,76,18,28,0.0 +15771,61,28.5,4,0.0 +15771,68,12.5,42,0.0 +15771,11,21,37,0.0 +15771,2,19,7,0.0 +15771,15,15.5,36,0.0 +15771,50,16.25,25,0.0 +15771,1,18,14,0.0 +15771,3,10,48,0.0 +15771,36,19,19,0.0 +15771,41,9.65,1,0.0 +15771,47,9.5,14,0.0 +15771,48,12.75,14,0.0 +15771,23,9,1,0.0 +15771,58,13.25,33,0.0 +15771,31,12.5,44,0.0 +15771,55,24,15,0.0 +15771,5,21.35,3,0.0 +15771,38,263.5,41,0.0 +15771,34,14,33,0.0 +15771,70,15,22,0.0 +15771,25,14,42,0.0 +15771,77,13,14,0.0 +15771,35,18,27,0.0 +15771,57,19.5,35,0.0 +15771,65,21.05,11,0.0 +15771,9,97,48,0.0 +15771,6,25,38,0.0 +15771,18,62.5,7,0.0 +15771,7,30,42,0.0 +15771,42,14,39,0.0 +15771,73,15,36,0.0 +15771,69,36,18,0.0 +15771,44,19.45,28,0.0 +15771,13,6,8,0.0 +15771,64,33.25,34,0.0 +15771,10,31,6,0.0 +15771,22,21,14,0.0 +15771,52,7,47,0.0 +15771,12,38,45,0.0 +15771,33,2.5,21,0.0 +15771,59,55,1,0.0 +15771,21,10,24,0.0 +15771,30,25.89,20,0.0 +15771,16,17.45,19,0.0 +15771,19,9.2,16,0.0 +15771,46,12,24,0.0 +15771,74,10,9,0.0 +15771,54,7.45,44,0.0 +15771,67,14,39,0.0 +15771,26,31.23,37,0.0 +15771,66,17,13,0.0 +15772,2,19,24,0.0 +15772,56,38,50,0.0 +15772,55,24,45,0.0 +15772,57,19.5,18,0.0 +15772,32,32,21,0.0 +15772,12,38,50,0.0 +15772,48,12.75,2,0.0 +15772,33,2.5,28,0.0 +15772,22,21,11,0.0 +15772,41,9.65,35,0.0 +15772,72,34.8,8,0.0 +15772,77,13,15,0.0 +15772,28,45.6,36,0.0 +15772,9,97,5,0.0 +15772,5,21.35,5,0.0 +15772,73,15,13,0.0 +15772,27,43.9,36,0.0 +15773,22,21,13,0.0 +15773,39,18,42,0.0 +15773,5,21.35,5,0.0 +15773,60,34,23,0.0 +15773,2,19,26,0.0 +15773,45,9.5,44,0.0 +15773,70,15,12,0.0 +15773,31,12.5,40,0.0 +15773,36,19,17,0.0 +15773,18,62.5,43,0.0 +15773,30,25.89,33,0.0 +15773,34,14,47,0.0 +15773,77,13,39,0.0 +15773,11,21,42,0.0 +15773,23,9,3,0.0 +15773,56,38,17,0.0 +15773,55,24,21,0.0 +15773,69,36,16,0.0 +15773,49,20,32,0.0 +15773,68,12.5,7,0.0 +15773,51,53,38,0.0 +15773,37,26,4,0.0 +15773,72,34.8,43,0.0 +15773,16,17.45,22,0.0 +15773,38,263.5,42,0.0 +15773,6,25,35,0.0 +15773,33,2.5,13,0.0 +15773,42,14,32,0.0 +15773,46,12,49,0.0 +15773,9,97,38,0.0 +15773,26,31.23,1,0.0 +15773,48,12.75,35,0.0 +15773,24,4.5,2,0.0 +15773,47,9.5,10,0.0 +15773,13,6,44,0.0 +15773,3,10,30,0.0 +15773,67,14,49,0.0 +15773,71,21.5,10,0.0 +15773,25,14,1,0.0 +15773,61,28.5,7,0.0 +15773,73,15,42,0.0 +15773,28,45.6,29,0.0 +15773,40,18.4,29,0.0 +15774,58,13.25,19,0.0 +15774,59,55,28,0.0 +15774,8,40,19,0.0 +15774,30,25.89,16,0.0 +15774,65,21.05,4,0.0 +15774,39,18,44,0.0 +15774,75,7.75,27,0.0 +15774,21,10,23,0.0 +15774,10,31,30,0.0 +15774,49,20,10,0.0 +15774,63,43.9,28,0.0 +15774,44,19.45,15,0.0 +15774,3,10,3,0.0 +15774,53,32.8,36,0.0 +15774,4,22,33,0.0 +15774,48,12.75,12,0.0 +15774,62,49.3,32,0.0 +15774,77,13,37,0.0 +15775,33,2.5,29,0.0 +15775,76,18,9,0.0 +15775,67,14,18,0.0 +15775,20,81,35,0.0 +15775,3,10,27,0.0 +15775,32,32,13,0.0 +15775,49,20,37,0.0 +15775,27,43.9,4,0.0 +15775,72,34.8,16,0.0 +15775,47,9.5,20,0.0 +15775,65,21.05,39,0.0 +15775,74,10,30,0.0 +15775,46,12,17,0.0 +15775,11,21,48,0.0 +15775,23,9,6,0.0 +15775,6,25,26,0.0 +15775,51,53,13,0.0 +15775,53,32.8,40,0.0 +15775,66,17,12,0.0 +15775,57,19.5,50,0.0 +15775,2,19,13,0.0 +15775,17,39,16,0.0 +15775,4,22,46,0.0 +15775,75,7.75,9,0.0 +15775,77,13,27,0.0 +15775,13,6,9,0.0 +15775,28,45.6,45,0.0 +15775,38,263.5,40,0.0 +15775,9,97,5,0.0 +15775,45,9.5,10,0.0 +15775,68,12.5,5,0.0 +15775,52,7,20,0.0 +15775,61,28.5,33,0.0 +15775,39,18,49,0.0 +15775,69,36,11,0.0 +15775,70,15,38,0.0 +15775,7,30,11,0.0 +15775,31,12.5,9,0.0 +15775,41,9.65,19,0.0 +15775,5,21.35,30,0.0 +15775,25,14,44,0.0 +15775,21,10,1,0.0 +15775,30,25.89,12,0.0 +15776,50,16.25,16,0.0 +15776,68,12.5,19,0.0 +15776,75,7.75,1,0.0 +15776,64,33.25,46,0.0 +15776,77,13,8,0.0 +15776,59,55,4,0.0 +15776,76,18,10,0.0 +15776,28,45.6,18,0.0 +15776,62,49.3,39,0.0 +15776,6,25,2,0.0 +15776,42,14,24,0.0 +15776,17,39,38,0.0 +15776,71,21.5,20,0.0 +15776,31,12.5,17,0.0 +15776,13,6,45,0.0 +15776,38,263.5,42,0.0 +15776,18,62.5,37,0.0 +15776,45,9.5,19,0.0 +15776,15,15.5,19,0.0 +15776,16,17.45,35,0.0 +15776,67,14,13,0.0 +15776,11,21,9,0.0 +15776,2,19,41,0.0 +15776,30,25.89,33,0.0 +15776,73,15,16,0.0 +15776,46,12,4,0.0 +15777,1,18,43,0.0 +15777,31,12.5,45,0.0 +15777,51,53,15,0.0 +15777,56,38,11,0.0 +15777,8,40,40,0.0 +15777,22,21,50,0.0 +15777,74,10,27,0.0 +15777,33,2.5,7,0.0 +15777,62,49.3,41,0.0 +15777,59,55,11,0.0 +15777,76,18,4,0.0 +15777,48,12.75,22,0.0 +15777,47,9.5,11,0.0 +15777,11,21,49,0.0 +15777,25,14,26,0.0 +15777,72,34.8,25,0.0 +15777,63,43.9,2,0.0 +15777,38,263.5,16,0.0 +15777,2,19,21,0.0 +15777,69,36,14,0.0 +15777,16,17.45,22,0.0 +15777,37,26,21,0.0 +15777,58,13.25,38,0.0 +15777,17,39,24,0.0 +15777,53,32.8,18,0.0 +15777,34,14,26,0.0 +15777,28,45.6,36,0.0 +15777,64,33.25,16,0.0 +15777,66,17,18,0.0 +15777,20,81,37,0.0 +15777,61,28.5,14,0.0 +15777,43,46,36,0.0 +15777,52,7,50,0.0 +15777,26,31.23,49,0.0 +15777,35,18,5,0.0 +15777,21,10,22,0.0 +15777,60,34,18,0.0 +15777,12,38,44,0.0 +15777,39,18,16,0.0 +15777,15,15.5,28,0.0 +15778,53,32.8,9,0.0 +15778,11,21,12,0.0 +15778,18,62.5,6,0.0 +15778,52,7,15,0.0 +15778,37,26,15,0.0 +15778,30,25.89,43,0.0 +15778,62,49.3,17,0.0 +15778,23,9,23,0.0 +15778,59,55,36,0.0 +15778,43,46,42,0.0 +15778,51,53,12,0.0 +15778,8,40,40,0.0 +15778,4,22,4,0.0 +15778,66,17,36,0.0 +15778,40,18.4,47,0.0 +15778,5,21.35,20,0.0 +15778,10,31,30,0.0 +15778,55,24,10,0.0 +15778,21,10,5,0.0 +15778,56,38,38,0.0 +15778,75,7.75,30,0.0 +15778,12,38,5,0.0 +15778,25,14,31,0.0 +15778,76,18,1,0.0 +15778,70,15,22,0.0 +15778,77,13,10,0.0 +15778,61,28.5,21,0.0 +15778,58,13.25,46,0.0 +15778,73,15,5,0.0 +15778,69,36,36,0.0 +15778,64,33.25,36,0.0 +15778,29,123.79,42,0.0 +15778,38,263.5,44,0.0 +15778,47,9.5,21,0.0 +15778,57,19.5,5,0.0 +15778,60,34,43,0.0 +15778,3,10,12,0.0 +15778,27,43.9,10,0.0 +15778,68,12.5,25,0.0 +15778,7,30,39,0.0 +15778,28,45.6,50,0.0 +15778,65,21.05,15,0.0 +15778,34,14,36,0.0 +15778,35,18,29,0.0 +15778,54,7.45,43,0.0 +15778,32,32,39,0.0 +15778,22,21,42,0.0 +15778,2,19,37,0.0 +15778,63,43.9,1,0.0 +15778,74,10,32,0.0 +15779,53,32.8,11,0.0 +15779,64,33.25,36,0.0 +15779,68,12.5,6,0.0 +15779,51,53,40,0.0 +15779,24,4.5,29,0.0 +15779,38,263.5,39,0.0 +15779,50,16.25,24,0.0 +15779,18,62.5,21,0.0 +15779,12,38,47,0.0 +15779,41,9.65,34,0.0 +15779,40,18.4,44,0.0 +15779,71,21.5,25,0.0 +15779,65,21.05,13,0.0 +15779,13,6,46,0.0 +15779,67,14,50,0.0 +15779,76,18,7,0.0 +15779,21,10,28,0.0 +15779,6,25,17,0.0 +15779,30,25.89,18,0.0 +15779,52,7,48,0.0 +15779,5,21.35,10,0.0 +15779,14,23.25,47,0.0 +15779,39,18,31,0.0 +15779,55,24,21,0.0 +15779,69,36,30,0.0 +15779,16,17.45,31,0.0 +15779,20,81,45,0.0 +15779,77,13,27,0.0 +15779,62,49.3,38,0.0 +15779,74,10,17,0.0 +15779,72,34.8,3,0.0 +15779,73,15,31,0.0 +15779,75,7.75,44,0.0 +15779,1,18,47,0.0 +15779,29,123.79,36,0.0 +15779,34,14,14,0.0 +15779,2,19,2,0.0 +15779,56,38,36,0.0 +15779,10,31,40,0.0 +15779,25,14,16,0.0 +15779,58,13.25,15,0.0 +15779,42,14,43,0.0 +15779,33,2.5,7,0.0 +15779,28,45.6,22,0.0 +15779,44,19.45,30,0.0 +15779,3,10,4,0.0 +15779,70,15,37,0.0 +15779,66,17,10,0.0 +15779,15,15.5,46,0.0 +15779,32,32,14,0.0 +15779,63,43.9,24,0.0 +15779,19,9.2,6,0.0 +15779,23,9,2,0.0 +15779,60,34,18,0.0 +15779,17,39,46,0.0 +15779,57,19.5,35,0.0 +15779,27,43.9,29,0.0 +15779,49,20,33,0.0 +15779,47,9.5,47,0.0 +15779,37,26,34,0.0 +15779,59,55,19,0.0 +15779,46,12,17,0.0 +15779,43,46,38,0.0 +15779,22,21,29,0.0 +15780,65,21.05,9,0.0 +15780,14,23.25,12,0.0 +15780,19,9.2,1,0.0 +15780,48,12.75,46,0.0 +15780,35,18,27,0.0 +15780,10,31,27,0.0 +15780,51,53,31,0.0 +15780,64,33.25,9,0.0 +15780,39,18,7,0.0 +15780,33,2.5,15,0.0 +15780,75,7.75,28,0.0 +15780,38,263.5,17,0.0 +15780,52,7,21,0.0 +15780,30,25.89,22,0.0 +15780,25,14,7,0.0 +15780,43,46,30,0.0 +15780,1,18,41,0.0 +15780,16,17.45,30,0.0 +15780,57,19.5,33,0.0 +15780,54,7.45,17,0.0 +15780,5,21.35,22,0.0 +15780,31,12.5,31,0.0 +15780,12,38,7,0.0 +15780,69,36,14,0.0 +15780,63,43.9,6,0.0 +15780,7,30,37,0.0 +15780,76,18,34,0.0 +15780,41,9.65,36,0.0 +15780,20,81,17,0.0 +15780,36,19,26,0.0 +15780,3,10,4,0.0 +15780,77,13,47,0.0 +15780,50,16.25,9,0.0 +15780,23,9,33,0.0 +15780,11,21,45,0.0 +15780,60,34,24,0.0 +15781,77,13,37,0.0 +15781,55,24,48,0.0 +15781,21,10,10,0.0 +15781,24,4.5,11,0.0 +15781,42,14,37,0.0 +15781,43,46,38,0.0 +15781,6,25,21,0.0 +15781,68,12.5,10,0.0 +15781,61,28.5,11,0.0 +15781,4,22,37,0.0 +15781,57,19.5,25,0.0 +15781,56,38,18,0.0 +15781,51,53,12,0.0 +15781,48,12.75,46,0.0 +15781,65,21.05,28,0.0 +15781,53,32.8,44,0.0 +15781,13,6,35,0.0 +15781,23,9,26,0.0 +15781,50,16.25,4,0.0 +15781,47,9.5,29,0.0 +15781,63,43.9,44,0.0 +15781,54,7.45,12,0.0 +15781,9,97,21,0.0 +15781,44,19.45,22,0.0 +15781,36,19,43,0.0 +15781,76,18,20,0.0 +15781,10,31,14,0.0 +15781,40,18.4,24,0.0 +15781,30,25.89,16,0.0 +15781,49,20,45,0.0 +15781,17,39,33,0.0 +15781,58,13.25,11,0.0 +15781,19,9.2,26,0.0 +15782,34,14,41,0.0 +15782,42,14,44,0.0 +15782,58,13.25,21,0.0 +15782,21,10,48,0.0 +15782,56,38,4,0.0 +15782,17,39,4,0.0 +15782,43,46,47,0.0 +15782,12,38,29,0.0 +15782,77,13,5,0.0 +15782,55,24,21,0.0 +15782,5,21.35,8,0.0 +15782,6,25,16,0.0 +15782,9,97,47,0.0 +15782,76,18,3,0.0 +15782,8,40,17,0.0 +15782,50,16.25,11,0.0 +15782,66,17,11,0.0 +15782,28,45.6,39,0.0 +15782,1,18,43,0.0 +15782,52,7,19,0.0 +15782,59,55,27,0.0 +15782,65,21.05,13,0.0 +15782,20,81,37,0.0 +15782,67,14,20,0.0 +15782,45,9.5,30,0.0 +15782,44,19.45,7,0.0 +15782,68,12.5,47,0.0 +15782,14,23.25,18,0.0 +15782,15,15.5,27,0.0 +15782,74,10,13,0.0 +15782,23,9,44,0.0 +15782,27,43.9,9,0.0 +15782,75,7.75,26,0.0 +15782,36,19,43,0.0 +15782,38,263.5,17,0.0 +15782,72,34.8,43,0.0 +15782,49,20,2,0.0 +15782,32,32,39,0.0 +15782,29,123.79,26,0.0 +15782,64,33.25,37,0.0 +15782,46,12,6,0.0 +15782,41,9.65,22,0.0 +15782,24,4.5,35,0.0 +15782,69,36,8,0.0 +15782,63,43.9,49,0.0 +15782,39,18,7,0.0 +15782,30,25.89,23,0.0 +15782,10,31,42,0.0 +15782,19,9.2,2,0.0 +15782,13,6,9,0.0 +15782,57,19.5,3,0.0 +15783,66,17,46,0.0 +15783,22,21,30,0.0 +15783,54,7.45,15,0.0 +15783,65,21.05,23,0.0 +15783,6,25,12,0.0 +15783,16,17.45,11,0.0 +15783,3,10,12,0.0 +15783,59,55,30,0.0 +15783,70,15,10,0.0 +15783,40,18.4,40,0.0 +15783,5,21.35,7,0.0 +15784,19,9.2,36,0.0 +15785,26,31.23,12,0.0 +15785,16,17.45,21,0.0 +15785,19,9.2,28,0.0 +15785,6,25,26,0.0 +15785,15,15.5,21,0.0 +15785,40,18.4,6,0.0 +15785,35,18,50,0.0 +15785,11,21,38,0.0 +15785,63,43.9,43,0.0 +15785,27,43.9,43,0.0 +15785,33,2.5,21,0.0 +15785,75,7.75,14,0.0 +15785,44,19.45,2,0.0 +15785,64,33.25,39,0.0 +15785,66,17,7,0.0 +15785,24,4.5,17,0.0 +15785,70,15,40,0.0 +15785,47,9.5,16,0.0 +15785,49,20,2,0.0 +15785,32,32,11,0.0 +15785,17,39,15,0.0 +15785,71,21.5,33,0.0 +15785,55,24,12,0.0 +15785,8,40,10,0.0 +15785,61,28.5,25,0.0 +15785,74,10,8,0.0 +15785,54,7.45,46,0.0 +15785,37,26,13,0.0 +15785,9,97,44,0.0 +15785,51,53,44,0.0 +15785,77,13,40,0.0 +15785,13,6,47,0.0 +15785,28,45.6,15,0.0 +15785,46,12,27,0.0 +15785,18,62.5,16,0.0 +15785,21,10,1,0.0 +15785,10,31,24,0.0 +15785,65,21.05,20,0.0 +15785,59,55,14,0.0 +15785,57,19.5,44,0.0 +15785,5,21.35,1,0.0 +15785,50,16.25,9,0.0 +15785,3,10,25,0.0 +15785,1,18,33,0.0 +15785,22,21,16,0.0 +15785,14,23.25,32,0.0 +15785,30,25.89,20,0.0 +15785,12,38,26,0.0 +15785,68,12.5,40,0.0 +15785,29,123.79,11,0.0 +15785,60,34,24,0.0 +15785,31,12.5,28,0.0 +15785,7,30,11,0.0 +15785,58,13.25,29,0.0 +15785,72,34.8,11,0.0 +15785,20,81,36,0.0 +15786,1,18,7,0.0 +15786,72,34.8,42,0.0 +15786,57,19.5,18,0.0 +15786,10,31,44,0.0 +15786,3,10,37,0.0 +15786,51,53,35,0.0 +15786,41,9.65,12,0.0 +15786,74,10,48,0.0 +15786,30,25.89,10,0.0 +15786,63,43.9,34,0.0 +15786,31,12.5,49,0.0 +15786,61,28.5,24,0.0 +15786,77,13,44,0.0 +15786,52,7,34,0.0 +15786,60,34,34,0.0 +15786,70,15,30,0.0 +15786,45,9.5,41,0.0 +15786,56,38,38,0.0 +15786,28,45.6,5,0.0 +15786,58,13.25,28,0.0 +15786,62,49.3,27,0.0 +15786,69,36,34,0.0 +15786,67,14,44,0.0 +15786,12,38,14,0.0 +15786,17,39,29,0.0 +15786,55,24,48,0.0 +15786,25,14,37,0.0 +15786,5,21.35,23,0.0 +15786,53,32.8,41,0.0 +15786,34,14,47,0.0 +15786,37,26,14,0.0 +15786,2,19,1,0.0 +15786,22,21,49,0.0 +15786,42,14,14,0.0 +15786,49,20,29,0.0 +15786,24,4.5,38,0.0 +15786,73,15,13,0.0 +15786,64,33.25,16,0.0 +15786,19,9.2,22,0.0 +15786,26,31.23,26,0.0 +15786,11,21,27,0.0 +15786,27,43.9,15,0.0 +15786,13,6,32,0.0 +15786,38,263.5,48,0.0 +15786,75,7.75,16,0.0 +15786,47,9.5,9,0.0 +15786,16,17.45,43,0.0 +15786,6,25,23,0.0 +15786,68,12.5,42,0.0 +15786,35,18,17,0.0 +15786,29,123.79,47,0.0 +15786,23,9,15,0.0 +15786,36,19,5,0.0 +15786,7,30,43,0.0 +15786,71,21.5,14,0.0 +15786,20,81,12,0.0 +15786,39,18,16,0.0 +15786,46,12,38,0.0 +15786,14,23.25,15,0.0 +15786,43,46,8,0.0 +15786,21,10,1,0.0 +15786,8,40,23,0.0 +15786,32,32,33,0.0 +15786,48,12.75,19,0.0 +15786,4,22,30,0.0 +15786,76,18,34,0.0 +15786,59,55,20,0.0 +15786,40,18.4,42,0.0 +15786,66,17,50,0.0 +15786,9,97,45,0.0 +15786,65,21.05,28,0.0 +15786,15,15.5,13,0.0 +15786,18,62.5,40,0.0 +15786,44,19.45,19,0.0 +15787,72,34.8,43,0.0 +15787,7,30,36,0.0 +15787,49,20,26,0.0 +15787,56,38,10,0.0 +15787,21,10,13,0.0 +15787,16,17.45,18,0.0 +15787,77,13,7,0.0 +15787,64,33.25,11,0.0 +15787,27,43.9,31,0.0 +15787,44,19.45,42,0.0 +15787,8,40,16,0.0 +15787,17,39,43,0.0 +15788,76,18,33,0.0 +15788,64,33.25,9,0.0 +15788,74,10,37,0.0 +15788,57,19.5,5,0.0 +15788,6,25,23,0.0 +15788,72,34.8,50,0.0 +15788,45,9.5,11,0.0 +15788,23,9,35,0.0 +15788,20,81,31,0.0 +15788,38,263.5,42,0.0 +15788,56,38,40,0.0 +15788,32,32,16,0.0 +15788,15,15.5,20,0.0 +15788,26,31.23,19,0.0 +15788,29,123.79,46,0.0 +15788,1,18,47,0.0 +15788,27,43.9,38,0.0 +15788,24,4.5,49,0.0 +15788,22,21,33,0.0 +15788,75,7.75,18,0.0 +15788,17,39,10,0.0 +15788,14,23.25,13,0.0 +15788,9,97,11,0.0 +15788,25,14,4,0.0 +15788,59,55,38,0.0 +15788,39,18,3,0.0 +15789,1,18,10,0.0 +15789,18,62.5,8,0.0 +15789,21,10,50,0.0 +15789,71,21.5,13,0.0 +15789,64,33.25,32,0.0 +15789,29,123.79,40,0.0 +15789,52,7,17,0.0 +15789,66,17,27,0.0 +15789,5,21.35,41,0.0 +15789,26,31.23,31,0.0 +15789,43,46,6,0.0 +15789,74,10,46,0.0 +15789,8,40,13,0.0 +15789,68,12.5,37,0.0 +15789,16,17.45,45,0.0 +15789,62,49.3,11,0.0 +15789,12,38,3,0.0 +15789,38,263.5,41,0.0 +15789,35,18,33,0.0 +15789,73,15,2,0.0 +15789,34,14,45,0.0 +15789,67,14,13,0.0 +15789,37,26,11,0.0 +15789,70,15,45,0.0 +15789,36,19,16,0.0 +15789,31,12.5,38,0.0 +15789,63,43.9,11,0.0 +15789,2,19,14,0.0 +15789,23,9,13,0.0 +15789,50,16.25,29,0.0 +15789,39,18,10,0.0 +15789,22,21,2,0.0 +15789,49,20,45,0.0 +15789,4,22,27,0.0 +15789,54,7.45,32,0.0 +15789,57,19.5,9,0.0 +15789,72,34.8,13,0.0 +15789,33,2.5,12,0.0 +15789,17,39,8,0.0 +15789,30,25.89,32,0.0 +15789,24,4.5,3,0.0 +15789,46,12,19,0.0 +15789,44,19.45,35,0.0 +15789,59,55,6,0.0 +15790,62,49.3,6,0.0 +15790,54,7.45,4,0.0 +15790,18,62.5,35,0.0 +15790,73,15,24,0.0 +15790,15,15.5,49,0.0 +15790,17,39,43,0.0 +15790,21,10,8,0.0 +15790,72,34.8,45,0.0 +15790,60,34,9,0.0 +15790,52,7,25,0.0 +15790,16,17.45,49,0.0 +15790,74,10,43,0.0 +15790,19,9.2,10,0.0 +15790,4,22,22,0.0 +15790,51,53,22,0.0 +15790,76,18,22,0.0 +15790,37,26,20,0.0 +15790,68,12.5,25,0.0 +15790,26,31.23,37,0.0 +15790,63,43.9,32,0.0 +15790,31,12.5,5,0.0 +15790,13,6,20,0.0 +15790,33,2.5,41,0.0 +15790,11,21,18,0.0 +15790,25,14,7,0.0 +15790,14,23.25,3,0.0 +15790,34,14,26,0.0 +15791,17,39,36,0.0 +15791,8,40,33,0.0 +15791,32,32,35,0.0 +15791,27,43.9,43,0.0 +15791,60,34,4,0.0 +15791,16,17.45,14,0.0 +15791,77,13,4,0.0 +15791,34,14,18,0.0 +15791,22,21,19,0.0 +15791,31,12.5,1,0.0 +15791,39,18,37,0.0 +15792,17,39,8,0.0 +15792,55,24,37,0.0 +15792,45,9.5,6,0.0 +15792,40,18.4,39,0.0 +15792,56,38,33,0.0 +15792,5,21.35,18,0.0 +15792,43,46,49,0.0 +15792,8,40,22,0.0 +15792,9,97,26,0.0 +15792,57,19.5,5,0.0 +15792,38,263.5,24,0.0 +15792,30,25.89,35,0.0 +15792,76,18,1,0.0 +15792,60,34,43,0.0 +15792,54,7.45,25,0.0 +15792,27,43.9,20,0.0 +15792,74,10,49,0.0 +15792,25,14,14,0.0 +15792,4,22,32,0.0 +15792,66,17,20,0.0 +15792,21,10,42,0.0 +15792,72,34.8,31,0.0 +15792,77,13,4,0.0 +15792,36,19,4,0.0 +15792,7,30,28,0.0 +15792,11,21,34,0.0 +15792,46,12,8,0.0 +15793,37,26,48,0.0 +15793,45,9.5,26,0.0 +15793,35,18,46,0.0 +15793,22,21,16,0.0 +15793,69,36,33,0.0 +15793,17,39,21,0.0 +15793,65,21.05,15,0.0 +15793,14,23.25,5,0.0 +15793,9,97,26,0.0 +15793,36,19,35,0.0 +15793,63,43.9,46,0.0 +15793,48,12.75,24,0.0 +15793,10,31,12,0.0 +15793,25,14,22,0.0 +15793,21,10,18,0.0 +15793,2,19,8,0.0 +15793,34,14,45,0.0 +15793,19,9.2,6,0.0 +15793,5,21.35,30,0.0 +15793,15,15.5,4,0.0 +15793,73,15,1,0.0 +15793,1,18,18,0.0 +15793,61,28.5,30,0.0 +15793,20,81,28,0.0 +15793,68,12.5,6,0.0 +15793,47,9.5,40,0.0 +15793,27,43.9,48,0.0 +15793,58,13.25,12,0.0 +15793,18,62.5,19,0.0 +15793,57,19.5,30,0.0 +15793,60,34,14,0.0 +15793,28,45.6,5,0.0 +15793,75,7.75,31,0.0 +15793,51,53,37,0.0 +15793,7,30,50,0.0 +15793,41,9.65,18,0.0 +15793,70,15,20,0.0 +15793,53,32.8,18,0.0 +15793,74,10,38,0.0 +15793,56,38,42,0.0 +15793,55,24,10,0.0 +15793,49,20,46,0.0 +15793,67,14,37,0.0 +15793,6,25,15,0.0 +15793,16,17.45,32,0.0 +15793,54,7.45,32,0.0 +15793,76,18,19,0.0 +15793,33,2.5,32,0.0 +15793,46,12,21,0.0 +15793,30,25.89,19,0.0 +15793,66,17,46,0.0 +15793,13,6,50,0.0 +15793,50,16.25,23,0.0 +15793,52,7,7,0.0 +15793,40,18.4,3,0.0 +15793,12,38,35,0.0 +15793,43,46,39,0.0 +15793,24,4.5,1,0.0 +15793,38,263.5,11,0.0 +15793,11,21,46,0.0 +15793,8,40,16,0.0 +15793,44,19.45,38,0.0 +15793,42,14,29,0.0 +15793,29,123.79,34,0.0 +15793,39,18,8,0.0 +15793,26,31.23,32,0.0 +15793,64,33.25,6,0.0 +15793,72,34.8,16,0.0 +15793,59,55,7,0.0 +15794,27,43.9,17,0.0 +15794,3,10,44,0.0 +15794,35,18,35,0.0 +15794,9,97,36,0.0 +15794,6,25,50,0.0 +15794,2,19,35,0.0 +15794,1,18,17,0.0 +15794,68,12.5,14,0.0 +15794,63,43.9,49,0.0 +15794,50,16.25,17,0.0 +15794,58,13.25,21,0.0 +15794,48,12.75,14,0.0 +15794,38,263.5,10,0.0 +15794,44,19.45,3,0.0 +15794,13,6,39,0.0 +15794,28,45.6,21,0.0 +15795,22,21,10,0.0 +15795,62,49.3,22,0.0 +15795,43,46,20,0.0 +15795,34,14,7,0.0 +15795,28,45.6,9,0.0 +15795,72,34.8,40,0.0 +15795,20,81,16,0.0 +15795,74,10,11,0.0 +15795,32,32,2,0.0 +15795,45,9.5,16,0.0 +15795,77,13,36,0.0 +15795,41,9.65,41,0.0 +15795,47,9.5,17,0.0 +15795,30,25.89,21,0.0 +15795,55,24,30,0.0 +15795,6,25,39,0.0 +15795,67,14,30,0.0 +15795,40,18.4,18,0.0 +15795,13,6,6,0.0 +15795,57,19.5,41,0.0 +15795,46,12,13,0.0 +15795,54,7.45,41,0.0 +15795,42,14,31,0.0 +15795,15,15.5,3,0.0 +15795,18,62.5,18,0.0 +15795,29,123.79,34,0.0 +15795,58,13.25,43,0.0 +15795,75,7.75,6,0.0 +15795,36,19,26,0.0 +15795,8,40,11,0.0 +15795,9,97,49,0.0 +15795,59,55,35,0.0 +15795,76,18,20,0.0 +15795,44,19.45,35,0.0 +15795,56,38,19,0.0 +15795,49,20,40,0.0 +15795,63,43.9,5,0.0 +15795,1,18,49,0.0 +15795,64,33.25,33,0.0 +15795,71,21.5,18,0.0 +15795,52,7,48,0.0 +15795,10,31,24,0.0 +15795,12,38,39,0.0 +15795,38,263.5,25,0.0 +15795,68,12.5,16,0.0 +15795,48,12.75,25,0.0 +15795,25,14,32,0.0 +15795,16,17.45,29,0.0 +15795,17,39,43,0.0 +15795,27,43.9,49,0.0 +15796,24,4.5,44,0.0 +15796,23,9,24,0.0 +15796,12,38,47,0.0 +15796,67,14,22,0.0 +15796,4,22,48,0.0 +15796,15,15.5,25,0.0 +15796,57,19.5,41,0.0 +15796,7,30,4,0.0 +15796,18,62.5,3,0.0 +15796,6,25,30,0.0 +15796,41,9.65,33,0.0 +15796,69,36,6,0.0 +15796,62,49.3,30,0.0 +15796,5,21.35,6,0.0 +15796,28,45.6,4,0.0 +15796,14,23.25,4,0.0 +15796,72,34.8,40,0.0 +15796,34,14,38,0.0 +15796,17,39,5,0.0 +15796,16,17.45,50,0.0 +15797,74,10,37,0.0 +15797,12,38,30,0.0 +15797,3,10,6,0.0 +15797,13,6,22,0.0 +15797,16,17.45,21,0.0 +15797,4,22,31,0.0 +15797,14,23.25,18,0.0 +15797,38,263.5,7,0.0 +15797,17,39,43,0.0 +15797,71,21.5,18,0.0 +15797,37,26,17,0.0 +15797,44,19.45,43,0.0 +15797,22,21,28,0.0 +15797,39,18,16,0.0 +15797,51,53,10,0.0 +15797,6,25,13,0.0 +15797,50,16.25,22,0.0 +15797,60,34,31,0.0 +15797,15,15.5,13,0.0 +15797,10,31,38,0.0 +15797,21,10,20,0.0 +15797,30,25.89,32,0.0 +15797,49,20,34,0.0 +15797,48,12.75,50,0.0 +15797,41,9.65,28,0.0 +15797,27,43.9,30,0.0 +15797,73,15,10,0.0 +15797,1,18,19,0.0 +15797,65,21.05,37,0.0 +15797,18,62.5,7,0.0 +15797,57,19.5,3,0.0 +15797,43,46,49,0.0 +15797,40,18.4,32,0.0 +15797,47,9.5,7,0.0 +15797,24,4.5,31,0.0 +15797,54,7.45,48,0.0 +15797,45,9.5,4,0.0 +15797,77,13,20,0.0 +15797,56,38,43,0.0 +15797,69,36,12,0.0 +15797,29,123.79,17,0.0 +15797,33,2.5,25,0.0 +15797,64,33.25,45,0.0 +15797,58,13.25,42,0.0 +15797,59,55,49,0.0 +15797,52,7,43,0.0 +15797,46,12,17,0.0 +15797,72,34.8,16,0.0 +15797,31,12.5,42,0.0 +15797,2,19,47,0.0 +15797,26,31.23,25,0.0 +15797,9,97,31,0.0 +15797,68,12.5,16,0.0 +15797,23,9,47,0.0 +15797,5,21.35,47,0.0 +15797,11,21,11,0.0 +15797,76,18,42,0.0 +15797,32,32,40,0.0 +15797,35,18,15,0.0 +15797,42,14,49,0.0 +15797,19,9.2,49,0.0 +15797,61,28.5,3,0.0 +15797,63,43.9,42,0.0 +15797,8,40,27,0.0 +15797,36,19,10,0.0 +15797,67,14,34,0.0 +15797,34,14,16,0.0 +15797,62,49.3,7,0.0 +15797,75,7.75,15,0.0 +15797,70,15,17,0.0 +15797,55,24,32,0.0 +15797,7,30,47,0.0 +15797,20,81,47,0.0 +15797,28,45.6,25,0.0 +15797,25,14,42,0.0 +15797,66,17,32,0.0 +15798,72,34.8,45,0.0 +15798,2,19,16,0.0 +15798,39,18,14,0.0 +15798,52,7,25,0.0 +15798,31,12.5,2,0.0 +15798,68,12.5,36,0.0 +15798,51,53,47,0.0 +15798,1,18,13,0.0 +15798,20,81,49,0.0 +15798,15,15.5,2,0.0 +15798,19,9.2,41,0.0 +15798,67,14,17,0.0 +15798,46,12,37,0.0 +15798,9,97,36,0.0 +15798,17,39,27,0.0 +15798,21,10,28,0.0 +15798,59,55,24,0.0 +15798,25,14,47,0.0 +15798,4,22,47,0.0 +15798,16,17.45,26,0.0 +15798,56,38,49,0.0 +15798,75,7.75,44,0.0 +15798,73,15,26,0.0 +15798,70,15,24,0.0 +15798,64,33.25,38,0.0 +15798,14,23.25,40,0.0 +15798,30,25.89,50,0.0 +15798,48,12.75,28,0.0 +15798,50,16.25,44,0.0 +15798,62,49.3,22,0.0 +15798,47,9.5,26,0.0 +15798,27,43.9,32,0.0 +15798,63,43.9,32,0.0 +15799,8,40,31,0.0 +15799,9,97,14,0.0 +15799,31,12.5,6,0.0 +15799,21,10,10,0.0 +15799,63,43.9,48,0.0 +15799,70,15,21,0.0 +15799,58,13.25,42,0.0 +15799,56,38,16,0.0 +15799,50,16.25,47,0.0 +15799,27,43.9,41,0.0 +15799,10,31,19,0.0 +15799,15,15.5,22,0.0 +15799,5,21.35,4,0.0 +15799,4,22,10,0.0 +15799,44,19.45,33,0.0 +15799,14,23.25,24,0.0 +15799,2,19,16,0.0 +15799,75,7.75,29,0.0 +15799,73,15,15,0.0 +15799,67,14,22,0.0 +15799,7,30,34,0.0 +15799,1,18,4,0.0 +15799,64,33.25,32,0.0 +15799,74,10,45,0.0 +15799,18,62.5,38,0.0 +15799,53,32.8,50,0.0 +15799,33,2.5,33,0.0 +15799,28,45.6,36,0.0 +15799,76,18,38,0.0 +15800,14,23.25,27,0.0 +15800,23,9,37,0.0 +15800,70,15,14,0.0 +15800,30,25.89,23,0.0 +15800,33,2.5,18,0.0 +15800,36,19,1,0.0 +15800,65,21.05,25,0.0 +15800,43,46,35,0.0 +15800,60,34,48,0.0 +15800,45,9.5,20,0.0 +15800,40,18.4,49,0.0 +15800,46,12,8,0.0 +15800,35,18,10,0.0 +15800,56,38,24,0.0 +15800,32,32,47,0.0 +15800,51,53,24,0.0 +15800,26,31.23,37,0.0 +15800,63,43.9,48,0.0 +15800,62,49.3,47,0.0 +15800,58,13.25,34,0.0 +15800,49,20,49,0.0 +15801,57,19.5,3,0.0 +15801,48,12.75,41,0.0 +15801,31,12.5,11,0.0 +15801,47,9.5,17,0.0 +15801,27,43.9,32,0.0 +15801,61,28.5,5,0.0 +15801,53,32.8,44,0.0 +15801,35,18,26,0.0 +15801,21,10,40,0.0 +15801,67,14,6,0.0 +15801,43,46,48,0.0 +15801,26,31.23,2,0.0 +15801,10,31,26,0.0 +15801,2,19,39,0.0 +15801,38,263.5,37,0.0 +15801,65,21.05,45,0.0 +15801,51,53,17,0.0 +15801,59,55,38,0.0 +15802,76,18,33,0.0 +15802,27,43.9,38,0.0 +15802,28,45.6,32,0.0 +15802,18,62.5,3,0.0 +15802,23,9,33,0.0 +15802,55,24,29,0.0 +15802,41,9.65,38,0.0 +15802,47,9.5,3,0.0 +15802,54,7.45,40,0.0 +15802,61,28.5,22,0.0 +15802,74,10,28,0.0 +15802,16,17.45,44,0.0 +15802,2,19,49,0.0 +15802,50,16.25,21,0.0 +15802,64,33.25,41,0.0 +15802,20,81,19,0.0 +15802,70,15,31,0.0 +15802,42,14,25,0.0 +15802,7,30,19,0.0 +15802,38,263.5,45,0.0 +15802,5,21.35,39,0.0 +15802,12,38,32,0.0 +15802,75,7.75,33,0.0 +15802,33,2.5,5,0.0 +15802,51,53,33,0.0 +15802,29,123.79,35,0.0 +15802,56,38,13,0.0 +15803,74,10,7,0.0 +15803,34,14,18,0.0 +15803,42,14,1,0.0 +15803,17,39,15,0.0 +15803,16,17.45,16,0.0 +15803,5,21.35,48,0.0 +15804,3,10,46,0.0 +15804,46,12,43,0.0 +15804,4,22,37,0.0 +15804,42,14,44,0.0 +15804,56,38,41,0.0 +15804,16,17.45,41,0.0 +15804,36,19,40,0.0 +15804,48,12.75,8,0.0 +15804,73,15,9,0.0 +15805,5,21.35,30,0.0 +15805,54,7.45,6,0.0 +15805,57,19.5,11,0.0 +15805,45,9.5,41,0.0 +15805,29,123.79,28,0.0 +15805,41,9.65,20,0.0 +15805,63,43.9,30,0.0 +15805,31,12.5,15,0.0 +15805,58,13.25,47,0.0 +15805,39,18,15,0.0 +15805,30,25.89,43,0.0 +15805,8,40,46,0.0 +15806,61,28.5,8,0.0 +15806,40,18.4,17,0.0 +15806,49,20,11,0.0 +15806,77,13,28,0.0 +15806,36,19,33,0.0 +15806,66,17,3,0.0 +15806,18,62.5,41,0.0 +15806,30,25.89,17,0.0 +15806,58,13.25,7,0.0 +15806,35,18,18,0.0 +15806,3,10,10,0.0 +15806,38,263.5,3,0.0 +15806,50,16.25,45,0.0 +15806,22,21,42,0.0 +15806,72,34.8,24,0.0 +15806,75,7.75,24,0.0 +15806,8,40,49,0.0 +15806,27,43.9,26,0.0 +15806,13,6,46,0.0 +15806,16,17.45,27,0.0 +15806,51,53,26,0.0 +15806,45,9.5,7,0.0 +15806,9,97,24,0.0 +15807,46,12,45,0.0 +15807,7,30,39,0.0 +15807,71,21.5,23,0.0 +15807,9,97,4,0.0 +15807,29,123.79,50,0.0 +15807,1,18,7,0.0 +15807,2,19,38,0.0 +15807,12,38,22,0.0 +15807,26,31.23,20,0.0 +15807,36,19,23,0.0 +15807,62,49.3,4,0.0 +15807,39,18,39,0.0 +15807,49,20,39,0.0 +15807,55,24,19,0.0 +15807,28,45.6,43,0.0 +15807,13,6,14,0.0 +15807,27,43.9,31,0.0 +15807,56,38,48,0.0 +15807,14,23.25,7,0.0 +15807,3,10,19,0.0 +15807,17,39,17,0.0 +15807,54,7.45,10,0.0 +15807,24,4.5,5,0.0 +15807,57,19.5,4,0.0 +15807,11,21,29,0.0 +15807,15,15.5,10,0.0 +15807,51,53,4,0.0 +15807,58,13.25,5,0.0 +15807,44,19.45,28,0.0 +15807,35,18,34,0.0 +15807,42,14,17,0.0 +15807,31,12.5,32,0.0 +15807,30,25.89,50,0.0 +15807,70,15,39,0.0 +15807,4,22,43,0.0 +15807,33,2.5,48,0.0 +15807,18,62.5,14,0.0 +15807,50,16.25,32,0.0 +15807,64,33.25,44,0.0 +15807,48,12.75,38,0.0 +15807,19,9.2,18,0.0 +15807,5,21.35,6,0.0 +15807,47,9.5,31,0.0 +15807,61,28.5,32,0.0 +15807,52,7,44,0.0 +15807,77,13,19,0.0 +15807,23,9,9,0.0 +15807,74,10,22,0.0 +15807,59,55,41,0.0 +15807,25,14,11,0.0 +15808,71,21.5,21,0.0 +15808,5,21.35,36,0.0 +15808,63,43.9,49,0.0 +15808,37,26,4,0.0 +15808,45,9.5,44,0.0 +15808,62,49.3,34,0.0 +15808,74,10,11,0.0 +15808,20,81,28,0.0 +15808,24,4.5,50,0.0 +15808,59,55,43,0.0 +15808,6,25,44,0.0 +15808,31,12.5,20,0.0 +15809,22,21,38,0.0 +15809,16,17.45,1,0.0 +15809,61,28.5,2,0.0 +15809,42,14,13,0.0 +15809,39,18,50,0.0 +15809,17,39,15,0.0 +15809,8,40,38,0.0 +15809,20,81,2,0.0 +15809,31,12.5,25,0.0 +15809,69,36,40,0.0 +15809,5,21.35,42,0.0 +15809,3,10,44,0.0 +15809,6,25,15,0.0 +15810,46,12,34,0.0 +15810,71,21.5,13,0.0 +15810,25,14,44,0.0 +15810,69,36,18,0.0 +15810,55,24,13,0.0 +15810,10,31,30,0.0 +15810,36,19,44,0.0 +15811,69,36,3,0.0 +15811,34,14,2,0.0 +15811,61,28.5,40,0.0 +15811,65,21.05,6,0.0 +15811,31,12.5,30,0.0 +15811,15,15.5,47,0.0 +15811,64,33.25,1,0.0 +15811,52,7,29,0.0 +15811,77,13,29,0.0 +15811,74,10,20,0.0 +15812,59,55,45,0.0 +15812,27,43.9,18,0.0 +15812,1,18,36,0.0 +15812,16,17.45,31,0.0 +15812,35,18,41,0.0 +15812,57,19.5,49,0.0 +15812,70,15,3,0.0 +15812,15,15.5,14,0.0 +15812,14,23.25,43,0.0 +15812,61,28.5,43,0.0 +15812,69,36,13,0.0 +15812,76,18,9,0.0 +15812,5,21.35,27,0.0 +15813,57,19.5,1,0.0 +15813,66,17,9,0.0 +15813,45,9.5,28,0.0 +15813,1,18,50,0.0 +15813,56,38,27,0.0 +15813,44,19.45,18,0.0 +15813,46,12,45,0.0 +15813,14,23.25,48,0.0 +15813,21,10,29,0.0 +15813,72,34.8,47,0.0 +15813,16,17.45,4,0.0 +15813,27,43.9,38,0.0 +15814,70,15,9,0.0 +15814,37,26,31,0.0 +15814,17,39,23,0.0 +15814,44,19.45,12,0.0 +15814,67,14,2,0.0 +15814,32,32,47,0.0 +15814,22,21,44,0.0 +15814,29,123.79,26,0.0 +15814,4,22,43,0.0 +15814,61,28.5,22,0.0 +15814,73,15,26,0.0 +15814,10,31,38,0.0 +15814,30,25.89,44,0.0 +15814,35,18,12,0.0 +15814,60,34,33,0.0 +15815,50,16.25,4,0.0 +15815,52,7,22,0.0 +15815,32,32,45,0.0 +15815,22,21,39,0.0 +15815,40,18.4,40,0.0 +15815,76,18,50,0.0 +15815,73,15,27,0.0 +15815,36,19,43,0.0 +15815,17,39,28,0.0 +15815,5,21.35,28,0.0 +15815,14,23.25,40,0.0 +15815,55,24,17,0.0 +15815,74,10,19,0.0 +15815,34,14,50,0.0 +15815,42,14,31,0.0 +15815,26,31.23,38,0.0 +15815,60,34,27,0.0 +15816,32,32,23,0.0 +15816,26,31.23,3,0.0 +15816,46,12,42,0.0 +15816,15,15.5,27,0.0 +15816,8,40,13,0.0 +15816,24,4.5,24,0.0 +15816,14,23.25,20,0.0 +15816,71,21.5,50,0.0 +15816,73,15,12,0.0 +15816,31,12.5,49,0.0 +15816,63,43.9,50,0.0 +15816,55,24,4,0.0 +15816,17,39,38,0.0 +15816,52,7,12,0.0 +15816,10,31,18,0.0 +15816,7,30,38,0.0 +15816,38,263.5,29,0.0 +15816,67,14,48,0.0 +15816,4,22,14,0.0 +15816,12,38,29,0.0 +15816,5,21.35,36,0.0 +15816,13,6,36,0.0 +15816,20,81,10,0.0 +15816,27,43.9,35,0.0 +15816,61,28.5,21,0.0 +15816,57,19.5,13,0.0 +15816,3,10,24,0.0 +15816,59,55,33,0.0 +15816,60,34,23,0.0 +15816,25,14,1,0.0 +15816,37,26,4,0.0 +15816,58,13.25,40,0.0 +15816,62,49.3,47,0.0 +15816,68,12.5,7,0.0 +15816,21,10,32,0.0 +15816,65,21.05,44,0.0 +15816,22,21,8,0.0 +15816,43,46,7,0.0 +15816,50,16.25,26,0.0 +15816,41,9.65,19,0.0 +15816,56,38,13,0.0 +15816,75,7.75,32,0.0 +15817,34,14,29,0.0 +15817,38,263.5,15,0.0 +15817,71,21.5,50,0.0 +15817,12,38,28,0.0 +15818,57,19.5,25,0.0 +15818,4,22,2,0.0 +15818,2,19,36,0.0 +15818,66,17,17,0.0 +15818,33,2.5,28,0.0 +15818,43,46,26,0.0 +15818,30,25.89,19,0.0 +15818,6,25,10,0.0 +15818,16,17.45,31,0.0 +15818,9,97,33,0.0 +15818,52,7,40,0.0 +15818,73,15,25,0.0 +15818,38,263.5,1,0.0 +15818,56,38,19,0.0 +15818,58,13.25,25,0.0 +15818,45,9.5,6,0.0 +15818,7,30,31,0.0 +15818,55,24,32,0.0 +15818,11,21,20,0.0 +15818,47,9.5,21,0.0 +15818,50,16.25,23,0.0 +15818,74,10,23,0.0 +15818,36,19,45,0.0 +15818,40,18.4,33,0.0 +15818,10,31,1,0.0 +15818,67,14,31,0.0 +15818,77,13,14,0.0 +15818,27,43.9,1,0.0 +15818,26,31.23,40,0.0 +15818,37,26,36,0.0 +15818,76,18,50,0.0 +15818,39,18,42,0.0 +15818,24,4.5,49,0.0 +15818,46,12,33,0.0 +15818,20,81,13,0.0 +15818,13,6,6,0.0 +15818,14,23.25,27,0.0 +15818,28,45.6,9,0.0 +15818,42,14,3,0.0 +15818,23,9,40,0.0 +15818,75,7.75,4,0.0 +15818,8,40,29,0.0 +15818,22,21,6,0.0 +15818,12,38,46,0.0 +15818,59,55,19,0.0 +15818,64,33.25,18,0.0 +15818,19,9.2,20,0.0 +15818,32,32,12,0.0 +15818,21,10,17,0.0 +15818,70,15,46,0.0 +15818,18,62.5,13,0.0 +15818,41,9.65,12,0.0 +15818,29,123.79,40,0.0 +15818,17,39,22,0.0 +15818,54,7.45,40,0.0 +15818,44,19.45,20,0.0 +15818,5,21.35,30,0.0 +15818,25,14,8,0.0 +15818,15,15.5,46,0.0 +15818,35,18,37,0.0 +15818,71,21.5,47,0.0 +15818,34,14,17,0.0 +15818,63,43.9,4,0.0 +15818,53,32.8,9,0.0 +15818,1,18,49,0.0 +15818,31,12.5,23,0.0 +15818,60,34,31,0.0 +15818,61,28.5,18,0.0 +15818,65,21.05,26,0.0 +15818,49,20,43,0.0 +15818,51,53,44,0.0 +15818,48,12.75,8,0.0 +15818,68,12.5,33,0.0 +15818,69,36,27,0.0 +15819,56,38,26,0.0 +15819,69,36,11,0.0 +15819,7,30,25,0.0 +15819,15,15.5,35,0.0 +15819,36,19,31,0.0 +15819,5,21.35,15,0.0 +15819,1,18,9,0.0 +15819,23,9,41,0.0 +15819,30,25.89,50,0.0 +15819,39,18,39,0.0 +15819,66,17,40,0.0 +15819,27,43.9,38,0.0 +15819,68,12.5,39,0.0 +15819,49,20,34,0.0 +15819,16,17.45,5,0.0 +15819,53,32.8,10,0.0 +15819,70,15,1,0.0 +15819,73,15,38,0.0 +15819,46,12,29,0.0 +15819,50,16.25,4,0.0 +15819,67,14,47,0.0 +15819,76,18,50,0.0 +15819,77,13,7,0.0 +15819,21,10,10,0.0 +15819,59,55,31,0.0 +15820,10,31,15,0.0 +15820,66,17,26,0.0 +15820,76,18,16,0.0 +15820,60,34,20,0.0 +15820,3,10,2,0.0 +15820,27,43.9,6,0.0 +15820,36,19,23,0.0 +15820,15,15.5,19,0.0 +15820,57,19.5,39,0.0 +15820,68,12.5,47,0.0 +15820,72,34.8,15,0.0 +15820,26,31.23,11,0.0 +15820,7,30,21,0.0 +15820,1,18,20,0.0 +15820,8,40,35,0.0 +15820,34,14,49,0.0 +15820,54,7.45,47,0.0 +15820,21,10,1,0.0 +15820,51,53,48,0.0 +15820,75,7.75,7,0.0 +15820,20,81,33,0.0 +15820,42,14,38,0.0 +15820,25,14,39,0.0 +15820,4,22,46,0.0 +15820,50,16.25,50,0.0 +15820,38,263.5,20,0.0 +15820,35,18,43,0.0 +15820,43,46,15,0.0 +15820,64,33.25,5,0.0 +15820,41,9.65,2,0.0 +15820,71,21.5,23,0.0 +15820,11,21,19,0.0 +15820,70,15,28,0.0 +15821,30,25.89,1,0.0 +15821,6,25,32,0.0 +15821,39,18,18,0.0 +15821,41,9.65,48,0.0 +15821,62,49.3,45,0.0 +15821,61,28.5,39,0.0 +15821,4,22,49,0.0 +15821,73,15,34,0.0 +15821,35,18,5,0.0 +15821,19,9.2,11,0.0 +15821,54,7.45,14,0.0 +15821,47,9.5,24,0.0 +15821,24,4.5,10,0.0 +15821,65,21.05,7,0.0 +15821,72,34.8,46,0.0 +15821,10,31,18,0.0 +15821,51,53,15,0.0 +15821,49,20,12,0.0 +15821,31,12.5,21,0.0 +15821,71,21.5,30,0.0 +15821,23,9,20,0.0 +15821,37,26,15,0.0 +15821,11,21,8,0.0 +15821,1,18,9,0.0 +15821,9,97,12,0.0 +15821,74,10,19,0.0 +15821,75,7.75,49,0.0 +15821,27,43.9,45,0.0 +15821,17,39,11,0.0 +15821,5,21.35,18,0.0 +15821,57,19.5,48,0.0 +15821,53,32.8,2,0.0 +15821,56,38,32,0.0 +15821,2,19,29,0.0 +15821,20,81,16,0.0 +15821,52,7,2,0.0 +15821,26,31.23,41,0.0 +15821,15,15.5,31,0.0 +15821,34,14,36,0.0 +15821,44,19.45,28,0.0 +15821,46,12,12,0.0 +15821,69,36,45,0.0 +15821,59,55,18,0.0 +15821,63,43.9,39,0.0 +15821,58,13.25,21,0.0 +15821,64,33.25,45,0.0 +15821,66,17,14,0.0 +15821,16,17.45,35,0.0 +15821,50,16.25,13,0.0 +15821,3,10,30,0.0 +15821,12,38,37,0.0 +15821,8,40,41,0.0 +15821,38,263.5,1,0.0 +15821,22,21,5,0.0 +15821,18,62.5,48,0.0 +15821,7,30,28,0.0 +15821,32,32,5,0.0 +15821,45,9.5,48,0.0 +15821,21,10,44,0.0 +15821,70,15,18,0.0 +15821,33,2.5,36,0.0 +15821,29,123.79,5,0.0 +15821,55,24,2,0.0 +15821,28,45.6,32,0.0 +15821,25,14,40,0.0 +15821,48,12.75,32,0.0 +15821,43,46,34,0.0 +15821,14,23.25,39,0.0 +15821,42,14,29,0.0 +15822,32,32,44,0.0 +15822,37,26,41,0.0 +15822,47,9.5,24,0.0 +15822,11,21,40,0.0 +15822,38,263.5,43,0.0 +15822,6,25,18,0.0 +15822,28,45.6,39,0.0 +15822,50,16.25,48,0.0 +15822,76,18,10,0.0 +15822,58,13.25,36,0.0 +15822,54,7.45,32,0.0 +15822,61,28.5,30,0.0 +15822,29,123.79,9,0.0 +15822,55,24,19,0.0 +15822,17,39,1,0.0 +15822,30,25.89,38,0.0 +15822,60,34,44,0.0 +15822,40,18.4,1,0.0 +15822,74,10,3,0.0 +15822,20,81,21,0.0 +15822,26,31.23,7,0.0 +15822,68,12.5,43,0.0 +15822,49,20,15,0.0 +15822,14,23.25,10,0.0 +15822,19,9.2,30,0.0 +15822,15,15.5,41,0.0 +15822,7,30,38,0.0 +15822,33,2.5,7,0.0 +15822,69,36,49,0.0 +15822,62,49.3,33,0.0 +15822,21,10,47,0.0 +15822,41,9.65,38,0.0 +15822,23,9,21,0.0 +15822,8,40,28,0.0 +15822,10,31,28,0.0 +15822,45,9.5,19,0.0 +15822,71,21.5,13,0.0 +15822,59,55,44,0.0 +15822,42,14,4,0.0 +15822,51,53,5,0.0 +15822,66,17,33,0.0 +15822,27,43.9,20,0.0 +15822,39,18,42,0.0 +15822,36,19,21,0.0 +15822,1,18,23,0.0 +15822,18,62.5,22,0.0 +15822,65,21.05,12,0.0 +15823,44,19.45,41,0.0 +15823,43,46,25,0.0 +15823,23,9,9,0.0 +15823,14,23.25,15,0.0 +15823,22,21,20,0.0 +15823,74,10,42,0.0 +15823,4,22,14,0.0 +15823,64,33.25,14,0.0 +15823,3,10,46,0.0 +15823,69,36,40,0.0 +15823,50,16.25,47,0.0 +15823,38,263.5,23,0.0 +15823,12,38,10,0.0 +15823,52,7,37,0.0 +15823,27,43.9,44,0.0 +15823,34,14,28,0.0 +15823,54,7.45,44,0.0 +15823,18,62.5,6,0.0 +15823,67,14,34,0.0 +15823,30,25.89,30,0.0 +15823,47,9.5,30,0.0 +15823,71,21.5,32,0.0 +15823,58,13.25,43,0.0 +15823,31,12.5,8,0.0 +15823,72,34.8,23,0.0 +15823,39,18,18,0.0 +15823,77,13,50,0.0 +15823,55,24,21,0.0 +15823,7,30,29,0.0 +15823,9,97,9,0.0 +15823,60,34,17,0.0 +15823,1,18,6,0.0 +15823,40,18.4,23,0.0 +15823,45,9.5,49,0.0 +15823,53,32.8,28,0.0 +15823,6,25,41,0.0 +15823,15,15.5,29,0.0 +15823,19,9.2,27,0.0 +15823,17,39,42,0.0 +15823,36,19,23,0.0 +15823,70,15,4,0.0 +15823,66,17,2,0.0 +15823,76,18,44,0.0 +15823,41,9.65,1,0.0 +15823,63,43.9,34,0.0 +15823,20,81,38,0.0 +15823,8,40,13,0.0 +15823,25,14,15,0.0 +15823,21,10,21,0.0 +15823,73,15,32,0.0 +15823,32,32,17,0.0 +15823,57,19.5,38,0.0 +15823,37,26,39,0.0 +15823,68,12.5,17,0.0 +15823,13,6,48,0.0 +15823,28,45.6,36,0.0 +15823,49,20,14,0.0 +15823,42,14,19,0.0 +15823,48,12.75,28,0.0 +15823,59,55,12,0.0 +15823,33,2.5,48,0.0 +15823,56,38,14,0.0 +15823,61,28.5,26,0.0 +15823,24,4.5,3,0.0 +15823,16,17.45,1,0.0 +15823,5,21.35,3,0.0 +15824,31,12.5,25,0.0 +15824,7,30,11,0.0 +15824,40,18.4,18,0.0 +15824,21,10,49,0.0 +15824,48,12.75,25,0.0 +15824,20,81,48,0.0 +15824,14,23.25,11,0.0 +15824,53,32.8,19,0.0 +15824,77,13,42,0.0 +15824,69,36,16,0.0 +15824,37,26,3,0.0 +15824,45,9.5,5,0.0 +15824,34,14,31,0.0 +15824,62,49.3,37,0.0 +15824,57,19.5,48,0.0 +15824,12,38,17,0.0 +15824,72,34.8,29,0.0 +15824,58,13.25,3,0.0 +15824,19,9.2,12,0.0 +15824,56,38,36,0.0 +15824,4,22,47,0.0 +15824,10,31,43,0.0 +15824,73,15,28,0.0 +15824,18,62.5,11,0.0 +15824,70,15,26,0.0 +15824,44,19.45,33,0.0 +15824,63,43.9,16,0.0 +15824,41,9.65,18,0.0 +15824,15,15.5,38,0.0 +15824,64,33.25,8,0.0 +15824,67,14,39,0.0 +15824,52,7,10,0.0 +15824,55,24,38,0.0 +15824,3,10,11,0.0 +15824,61,28.5,50,0.0 +15824,66,17,11,0.0 +15824,50,16.25,29,0.0 +15824,23,9,2,0.0 +15824,32,32,46,0.0 +15824,36,19,20,0.0 +15824,6,25,39,0.0 +15824,13,6,28,0.0 +15824,26,31.23,33,0.0 +15824,29,123.79,13,0.0 +15824,27,43.9,45,0.0 +15824,8,40,17,0.0 +15824,42,14,22,0.0 +15824,43,46,33,0.0 +15825,54,7.45,3,0.0 +15825,10,31,21,0.0 +15825,67,14,29,0.0 +15825,52,7,45,0.0 +15825,75,7.75,6,0.0 +15825,28,45.6,31,0.0 +15825,35,18,10,0.0 +15825,71,21.5,24,0.0 +15825,22,21,23,0.0 +15826,13,6,9,0.0 +15826,14,23.25,18,0.0 +15826,72,34.8,34,0.0 +15826,29,123.79,30,0.0 +15826,54,7.45,38,0.0 +15826,76,18,44,0.0 +15826,45,9.5,11,0.0 +15826,23,9,49,0.0 +15826,20,81,33,0.0 +15826,15,15.5,20,0.0 +15826,32,32,25,0.0 +15826,43,46,5,0.0 +15826,35,18,25,0.0 +15826,57,19.5,1,0.0 +15826,47,9.5,1,0.0 +15826,26,31.23,4,0.0 +15826,75,7.75,22,0.0 +15826,49,20,10,0.0 +15826,1,18,32,0.0 +15826,62,49.3,5,0.0 +15826,12,38,8,0.0 +15826,60,34,32,0.0 +15826,5,21.35,30,0.0 +15826,31,12.5,49,0.0 +15826,69,36,40,0.0 +15826,68,12.5,30,0.0 +15826,42,14,9,0.0 +15826,53,32.8,40,0.0 +15826,51,53,50,0.0 +15826,73,15,17,0.0 +15826,33,2.5,7,0.0 +15826,63,43.9,30,0.0 +15826,65,21.05,22,0.0 +15826,27,43.9,35,0.0 +15826,25,14,17,0.0 +15826,24,4.5,1,0.0 +15826,64,33.25,37,0.0 +15826,55,24,27,0.0 +15826,67,14,26,0.0 +15826,70,15,41,0.0 +15827,32,32,16,0.0 +15827,10,31,18,0.0 +15827,61,28.5,19,0.0 +15827,16,17.45,45,0.0 +15827,9,97,35,0.0 +15827,60,34,1,0.0 +15827,21,10,46,0.0 +15827,28,45.6,25,0.0 +15827,7,30,48,0.0 +15827,59,55,4,0.0 +15827,44,19.45,45,0.0 +15827,67,14,20,0.0 +15827,64,33.25,33,0.0 +15827,48,12.75,13,0.0 +15827,31,12.5,46,0.0 +15827,55,24,17,0.0 +15827,75,7.75,3,0.0 +15827,33,2.5,32,0.0 +15827,40,18.4,41,0.0 +15827,49,20,46,0.0 +15827,72,34.8,34,0.0 +15827,1,18,8,0.0 +15827,37,26,6,0.0 +15827,71,21.5,6,0.0 +15827,26,31.23,46,0.0 +15827,66,17,22,0.0 +15827,41,9.65,28,0.0 +15827,39,18,9,0.0 +15828,57,19.5,30,0.0 +15828,59,55,6,0.0 +15828,24,4.5,10,0.0 +15828,69,36,28,0.0 +15828,68,12.5,24,0.0 +15828,46,12,46,0.0 +15828,30,25.89,37,0.0 +15828,14,23.25,20,0.0 +15828,49,20,2,0.0 +15828,66,17,10,0.0 +15828,60,34,30,0.0 +15828,19,9.2,25,0.0 +15828,52,7,38,0.0 +15828,34,14,26,0.0 +15828,43,46,3,0.0 +15828,67,14,17,0.0 +15828,3,10,38,0.0 +15828,31,12.5,37,0.0 +15828,25,14,7,0.0 +15828,65,21.05,3,0.0 +15828,5,21.35,11,0.0 +15828,21,10,21,0.0 +15828,23,9,9,0.0 +15828,72,34.8,24,0.0 +15828,75,7.75,5,0.0 +15828,73,15,46,0.0 +15828,48,12.75,17,0.0 +15828,61,28.5,12,0.0 +15828,41,9.65,48,0.0 +15828,13,6,13,0.0 +15828,29,123.79,39,0.0 +15828,50,16.25,33,0.0 +15829,68,12.5,46,0.0 +15829,45,9.5,49,0.0 +15829,51,53,18,0.0 +15829,4,22,5,0.0 +15829,21,10,48,0.0 +15829,20,81,45,0.0 +15829,15,15.5,29,0.0 +15829,76,18,50,0.0 +15829,18,62.5,5,0.0 +15829,77,13,14,0.0 +15829,71,21.5,2,0.0 +15829,52,7,18,0.0 +15829,12,38,40,0.0 +15829,70,15,26,0.0 +15829,73,15,1,0.0 +15829,5,21.35,47,0.0 +15829,6,25,37,0.0 +15829,38,263.5,14,0.0 +15830,58,13.25,36,0.0 +15830,1,18,2,0.0 +15830,52,7,17,0.0 +15830,3,10,16,0.0 +15830,7,30,26,0.0 +15830,21,10,14,0.0 +15830,39,18,44,0.0 +15830,63,43.9,4,0.0 +15830,76,18,46,0.0 +15830,46,12,3,0.0 +15830,44,19.45,9,0.0 +15830,67,14,34,0.0 +15830,23,9,20,0.0 +15830,20,81,38,0.0 +15830,25,14,13,0.0 +15830,31,12.5,8,0.0 +15830,6,25,6,0.0 +15830,54,7.45,25,0.0 +15830,24,4.5,12,0.0 +15830,70,15,43,0.0 +15830,9,97,46,0.0 +15830,68,12.5,24,0.0 +15830,53,32.8,14,0.0 +15830,17,39,17,0.0 +15830,75,7.75,44,0.0 +15830,59,55,32,0.0 +15830,38,263.5,23,0.0 +15830,29,123.79,31,0.0 +15830,40,18.4,3,0.0 +15830,27,43.9,49,0.0 +15830,2,19,40,0.0 +15830,69,36,13,0.0 +15830,30,25.89,50,0.0 +15830,65,21.05,9,0.0 +15830,62,49.3,22,0.0 +15830,49,20,47,0.0 +15830,43,46,28,0.0 +15830,50,16.25,39,0.0 +15830,11,21,25,0.0 +15830,4,22,14,0.0 +15830,77,13,12,0.0 +15830,36,19,16,0.0 +15830,48,12.75,4,0.0 +15830,10,31,21,0.0 +15830,37,26,42,0.0 +15830,45,9.5,23,0.0 +15830,14,23.25,36,0.0 +15830,18,62.5,14,0.0 +15830,60,34,4,0.0 +15830,19,9.2,40,0.0 +15830,15,15.5,39,0.0 +15830,34,14,27,0.0 +15830,72,34.8,50,0.0 +15830,26,31.23,21,0.0 +15830,42,14,22,0.0 +15830,57,19.5,14,0.0 +15830,66,17,35,0.0 +15830,16,17.45,9,0.0 +15830,22,21,12,0.0 +15830,61,28.5,9,0.0 +15830,35,18,21,0.0 +15830,12,38,41,0.0 +15831,26,31.23,28,0.0 +15831,63,43.9,4,0.0 +15831,3,10,44,0.0 +15831,22,21,22,0.0 +15831,25,14,9,0.0 +15831,10,31,1,0.0 +15831,15,15.5,42,0.0 +15831,64,33.25,14,0.0 +15831,35,18,15,0.0 +15831,71,21.5,33,0.0 +15831,37,26,20,0.0 +15831,11,21,3,0.0 +15831,14,23.25,6,0.0 +15831,69,36,5,0.0 +15831,54,7.45,10,0.0 +15831,18,62.5,38,0.0 +15831,16,17.45,28,0.0 +15831,62,49.3,5,0.0 +15831,56,38,30,0.0 +15831,53,32.8,14,0.0 +15831,28,45.6,31,0.0 +15831,5,21.35,40,0.0 +15831,33,2.5,49,0.0 +15831,34,14,42,0.0 +15831,51,53,38,0.0 +15831,38,263.5,3,0.0 +15831,20,81,7,0.0 +15831,36,19,7,0.0 +15831,21,10,26,0.0 +15831,17,39,41,0.0 +15831,43,46,42,0.0 +15831,27,43.9,30,0.0 +15831,58,13.25,6,0.0 +15831,13,6,2,0.0 +15831,2,19,33,0.0 +15831,77,13,44,0.0 +15831,7,30,22,0.0 +15831,19,9.2,42,0.0 +15831,52,7,19,0.0 +15832,31,12.5,22,0.0 +15832,26,31.23,38,0.0 +15832,37,26,22,0.0 +15832,77,13,9,0.0 +15832,11,21,18,0.0 +15832,54,7.45,48,0.0 +15832,13,6,29,0.0 +15832,15,15.5,50,0.0 +15832,19,9.2,15,0.0 +15832,65,21.05,29,0.0 +15832,74,10,24,0.0 +15832,75,7.75,23,0.0 +15832,25,14,41,0.0 +15832,71,21.5,26,0.0 +15832,6,25,27,0.0 +15832,18,62.5,22,0.0 +15832,28,45.6,41,0.0 +15832,30,25.89,40,0.0 +15832,34,14,7,0.0 +15832,64,33.25,3,0.0 +15832,56,38,35,0.0 +15832,12,38,2,0.0 +15832,68,12.5,26,0.0 +15832,36,19,35,0.0 +15832,43,46,8,0.0 +15832,33,2.5,16,0.0 +15832,41,9.65,50,0.0 +15832,29,123.79,28,0.0 +15832,21,10,40,0.0 +15832,32,32,39,0.0 +15832,40,18.4,12,0.0 +15832,49,20,32,0.0 +15832,42,14,12,0.0 +15832,61,28.5,19,0.0 +15832,48,12.75,12,0.0 +15832,14,23.25,17,0.0 +15832,67,14,30,0.0 +15832,47,9.5,19,0.0 +15832,10,31,28,0.0 +15832,2,19,11,0.0 +15832,3,10,45,0.0 +15832,16,17.45,45,0.0 +15832,52,7,48,0.0 +15832,66,17,28,0.0 +15832,5,21.35,42,0.0 +15832,59,55,26,0.0 +15832,24,4.5,45,0.0 +15832,57,19.5,10,0.0 +15832,22,21,40,0.0 +15832,20,81,38,0.0 +15832,35,18,22,0.0 +15832,17,39,28,0.0 +15832,73,15,43,0.0 +15832,44,19.45,12,0.0 +15832,45,9.5,8,0.0 +15832,72,34.8,29,0.0 +15832,55,24,12,0.0 +15832,27,43.9,18,0.0 +15832,58,13.25,38,0.0 +15832,4,22,37,0.0 +15833,58,13.25,40,0.0 +15833,40,18.4,3,0.0 +15833,73,15,47,0.0 +15833,56,38,40,0.0 +15833,26,31.23,24,0.0 +15833,47,9.5,37,0.0 +15833,34,14,7,0.0 +15833,12,38,50,0.0 +15833,22,21,24,0.0 +15833,63,43.9,34,0.0 +15833,48,12.75,15,0.0 +15833,32,32,39,0.0 +15833,64,33.25,5,0.0 +15833,20,81,39,0.0 +15833,43,46,44,0.0 +15833,24,4.5,4,0.0 +15833,30,25.89,4,0.0 +15833,50,16.25,30,0.0 +15833,54,7.45,7,0.0 +15833,36,19,30,0.0 +15833,33,2.5,14,0.0 +15833,5,21.35,2,0.0 +15833,59,55,22,0.0 +15833,77,13,40,0.0 +15833,10,31,14,0.0 +15833,6,25,10,0.0 +15833,65,21.05,48,0.0 +15833,25,14,2,0.0 +15833,68,12.5,34,0.0 +15833,16,17.45,6,0.0 +15833,35,18,50,0.0 +15833,4,22,38,0.0 +15833,72,34.8,24,0.0 +15833,66,17,32,0.0 +15833,69,36,4,0.0 +15833,31,12.5,31,0.0 +15833,11,21,6,0.0 +15833,28,45.6,7,0.0 +15833,52,7,28,0.0 +15833,45,9.5,23,0.0 +15833,76,18,36,0.0 +15833,53,32.8,45,0.0 +15834,39,18,1,0.0 +15834,1,18,7,0.0 +15834,15,15.5,6,0.0 +15834,13,6,9,0.0 +15834,54,7.45,37,0.0 +15834,47,9.5,18,0.0 +15834,6,25,17,0.0 +15834,34,14,43,0.0 +15834,74,10,37,0.0 +15835,39,18,27,0.0 +15835,40,18.4,28,0.0 +15835,75,7.75,31,0.0 +15835,58,13.25,20,0.0 +15835,55,24,42,0.0 +15836,56,38,36,0.0 +15836,60,34,29,0.0 +15836,8,40,12,0.0 +15836,20,81,47,0.0 +15836,40,18.4,7,0.0 +15836,25,14,33,0.0 +15836,3,10,13,0.0 +15836,57,19.5,2,0.0 +15836,29,123.79,17,0.0 +15836,77,13,7,0.0 +15836,76,18,28,0.0 +15836,22,21,41,0.0 +15836,64,33.25,29,0.0 +15836,23,9,38,0.0 +15836,59,55,7,0.0 +15836,28,45.6,25,0.0 +15836,63,43.9,48,0.0 +15836,46,12,7,0.0 +15836,48,12.75,15,0.0 +15836,36,19,31,0.0 +15836,21,10,34,0.0 +15836,45,9.5,20,0.0 +15836,9,97,26,0.0 +15836,13,6,17,0.0 +15836,32,32,8,0.0 +15836,70,15,21,0.0 +15836,14,23.25,46,0.0 +15836,26,31.23,1,0.0 +15836,66,17,8,0.0 +15837,7,30,6,0.0 +15837,56,38,37,0.0 +15837,20,81,45,0.0 +15837,34,14,12,0.0 +15837,77,13,48,0.0 +15837,63,43.9,21,0.0 +15837,15,15.5,40,0.0 +15837,75,7.75,19,0.0 +15837,44,19.45,38,0.0 +15837,48,12.75,7,0.0 +15837,62,49.3,47,0.0 +15837,60,34,14,0.0 +15837,22,21,42,0.0 +15837,76,18,6,0.0 +15837,67,14,48,0.0 +15837,9,97,37,0.0 +15837,32,32,49,0.0 +15837,51,53,5,0.0 +15837,35,18,6,0.0 +15837,45,9.5,6,0.0 +15837,31,12.5,41,0.0 +15837,12,38,37,0.0 +15837,4,22,20,0.0 +15837,54,7.45,11,0.0 +15837,41,9.65,38,0.0 +15837,23,9,49,0.0 +15837,3,10,28,0.0 +15837,26,31.23,18,0.0 +15837,53,32.8,3,0.0 +15837,55,24,38,0.0 +15837,49,20,48,0.0 +15837,5,21.35,30,0.0 +15837,68,12.5,24,0.0 +15837,52,7,29,0.0 +15837,17,39,14,0.0 +15837,21,10,43,0.0 +15837,37,26,31,0.0 +15837,16,17.45,26,0.0 +15837,73,15,31,0.0 +15837,14,23.25,26,0.0 +15837,70,15,42,0.0 +15837,42,14,50,0.0 +15837,58,13.25,2,0.0 +15837,38,263.5,7,0.0 +15837,47,9.5,29,0.0 +15837,28,45.6,50,0.0 +15837,65,21.05,29,0.0 +15837,66,17,22,0.0 +15837,8,40,14,0.0 +15837,71,21.5,31,0.0 +15837,50,16.25,39,0.0 +15837,36,19,29,0.0 +15837,40,18.4,6,0.0 +15837,33,2.5,42,0.0 +15837,30,25.89,2,0.0 +15837,29,123.79,39,0.0 +15837,57,19.5,11,0.0 +15837,11,21,43,0.0 +15837,59,55,40,0.0 +15837,6,25,26,0.0 +15837,2,19,48,0.0 +15837,25,14,20,0.0 +15837,1,18,40,0.0 +15837,46,12,46,0.0 +15837,18,62.5,6,0.0 +15837,61,28.5,17,0.0 +15837,74,10,44,0.0 +15837,64,33.25,17,0.0 +15837,13,6,24,0.0 +15837,10,31,30,0.0 +15837,24,4.5,45,0.0 +15838,70,15,3,0.0 +15838,71,21.5,17,0.0 +15838,38,263.5,25,0.0 +15838,29,123.79,36,0.0 +15838,45,9.5,8,0.0 +15838,75,7.75,26,0.0 +15838,34,14,20,0.0 +15838,59,55,22,0.0 +15838,19,9.2,42,0.0 +15838,24,4.5,8,0.0 +15838,35,18,30,0.0 +15838,10,31,32,0.0 +15838,65,21.05,15,0.0 +15839,35,18,32,0.0 +15839,11,21,29,0.0 +15839,73,15,31,0.0 +15839,52,7,49,0.0 +15839,68,12.5,2,0.0 +15839,1,18,38,0.0 +15839,38,263.5,16,0.0 +15839,63,43.9,29,0.0 +15839,51,53,22,0.0 +15839,27,43.9,31,0.0 +15839,32,32,9,0.0 +15839,50,16.25,18,0.0 +15839,28,45.6,47,0.0 +15839,26,31.23,28,0.0 +15839,71,21.5,30,0.0 +15839,41,9.65,22,0.0 +15839,46,12,25,0.0 +15839,30,25.89,28,0.0 +15839,65,21.05,19,0.0 +15839,34,14,49,0.0 +15839,70,15,27,0.0 +15839,45,9.5,5,0.0 +15839,44,19.45,40,0.0 +15839,36,19,9,0.0 +15839,8,40,8,0.0 +15839,76,18,45,0.0 +15839,66,17,22,0.0 +15839,19,9.2,26,0.0 +15839,59,55,34,0.0 +15839,40,18.4,35,0.0 +15839,22,21,7,0.0 +15839,23,9,10,0.0 +15839,67,14,25,0.0 +15839,42,14,8,0.0 +15839,3,10,13,0.0 +15839,49,20,34,0.0 +15840,71,21.5,41,0.0 +15840,65,21.05,22,0.0 +15840,17,39,44,0.0 +15840,74,10,48,0.0 +15840,42,14,21,0.0 +15840,13,6,6,0.0 +15840,55,24,22,0.0 +15840,53,32.8,11,0.0 +15840,38,263.5,35,0.0 +15840,29,123.79,31,0.0 +15840,66,17,24,0.0 +15840,14,23.25,33,0.0 +15840,24,4.5,47,0.0 +15840,56,38,5,0.0 +15840,28,45.6,50,0.0 +15840,72,34.8,21,0.0 +15840,1,18,8,0.0 +15840,62,49.3,21,0.0 +15840,2,19,43,0.0 +15840,48,12.75,40,0.0 +15840,34,14,46,0.0 +15840,25,14,35,0.0 +15840,54,7.45,8,0.0 +15840,51,53,27,0.0 +15840,11,21,13,0.0 +15840,63,43.9,8,0.0 +15840,36,19,1,0.0 +15840,6,25,15,0.0 +15840,44,19.45,1,0.0 +15840,35,18,11,0.0 +15841,52,7,8,0.0 +15841,3,10,12,0.0 +15841,61,28.5,8,0.0 +15841,17,39,15,0.0 +15841,33,2.5,3,0.0 +15841,62,49.3,20,0.0 +15842,48,12.75,19,0.0 +15842,66,17,7,0.0 +15842,74,10,19,0.0 +15842,54,7.45,8,0.0 +15842,6,25,12,0.0 +15842,9,97,36,0.0 +15842,10,31,41,0.0 +15842,42,14,16,0.0 +15842,76,18,21,0.0 +15842,19,9.2,40,0.0 +15842,39,18,22,0.0 +15842,59,55,38,0.0 +15842,4,22,18,0.0 +15842,15,15.5,14,0.0 +15842,36,19,11,0.0 +15842,72,34.8,20,0.0 +15842,71,21.5,21,0.0 +15842,44,19.45,12,0.0 +15842,14,23.25,29,0.0 +15842,62,49.3,12,0.0 +15842,38,263.5,29,0.0 +15842,22,21,24,0.0 +15842,16,17.45,19,0.0 +15842,24,4.5,35,0.0 +15842,75,7.75,3,0.0 +15842,57,19.5,7,0.0 +15842,49,20,4,0.0 +15842,63,43.9,40,0.0 +15842,32,32,3,0.0 +15842,45,9.5,8,0.0 +15842,73,15,43,0.0 +15842,26,31.23,42,0.0 +15842,35,18,20,0.0 +15842,77,13,42,0.0 +15842,18,62.5,23,0.0 +15842,58,13.25,15,0.0 +15842,53,32.8,41,0.0 +15842,21,10,30,0.0 +15842,41,9.65,4,0.0 +15842,34,14,29,0.0 +15842,46,12,17,0.0 +15842,61,28.5,4,0.0 +15842,2,19,13,0.0 +15842,13,6,4,0.0 +15843,50,16.25,48,0.0 +15843,12,38,20,0.0 +15843,55,24,31,0.0 +15843,71,21.5,40,0.0 +15843,4,22,7,0.0 +15843,54,7.45,45,0.0 +15843,43,46,18,0.0 +15843,13,6,29,0.0 +15843,63,43.9,44,0.0 +15843,32,32,14,0.0 +15843,31,12.5,39,0.0 +15843,36,19,2,0.0 +15843,48,12.75,43,0.0 +15843,66,17,46,0.0 +15843,16,17.45,25,0.0 +15843,40,18.4,39,0.0 +15843,24,4.5,39,0.0 +15843,27,43.9,34,0.0 +15843,64,33.25,42,0.0 +15843,65,21.05,46,0.0 +15843,70,15,15,0.0 +15843,75,7.75,46,0.0 +15843,59,55,36,0.0 +15843,21,10,48,0.0 +15843,2,19,40,0.0 +15843,23,9,4,0.0 +15843,30,25.89,35,0.0 +15843,29,123.79,12,0.0 +15843,22,21,40,0.0 +15844,20,81,17,0.0 +15844,71,21.5,10,0.0 +15844,57,19.5,5,0.0 +15844,15,15.5,37,0.0 +15844,25,14,16,0.0 +15844,41,9.65,35,0.0 +15844,28,45.6,50,0.0 +15844,27,43.9,24,0.0 +15844,53,32.8,26,0.0 +15844,35,18,36,0.0 +15844,8,40,7,0.0 +15844,65,21.05,11,0.0 +15844,7,30,30,0.0 +15844,10,31,2,0.0 +15844,75,7.75,23,0.0 +15844,72,34.8,2,0.0 +15844,48,12.75,37,0.0 +15844,23,9,33,0.0 +15844,70,15,46,0.0 +15844,54,7.45,16,0.0 +15844,9,97,21,0.0 +15844,52,7,46,0.0 +15844,37,26,27,0.0 +15844,58,13.25,16,0.0 +15844,30,25.89,39,0.0 +15844,36,19,25,0.0 +15844,18,62.5,4,0.0 +15844,42,14,30,0.0 +15844,34,14,18,0.0 +15844,66,17,16,0.0 +15844,43,46,44,0.0 +15844,47,9.5,35,0.0 +15844,73,15,26,0.0 +15844,69,36,13,0.0 +15844,61,28.5,24,0.0 +15844,16,17.45,20,0.0 +15844,6,25,11,0.0 +15844,38,263.5,31,0.0 +15844,12,38,29,0.0 +15844,19,9.2,38,0.0 +15844,33,2.5,40,0.0 +15844,21,10,9,0.0 +15844,26,31.23,43,0.0 +15844,55,24,23,0.0 +15844,74,10,29,0.0 +15844,32,32,2,0.0 +15844,3,10,49,0.0 +15844,13,6,21,0.0 +15844,1,18,1,0.0 +15844,77,13,44,0.0 +15844,49,20,2,0.0 +15844,68,12.5,30,0.0 +15844,59,55,20,0.0 +15844,4,22,36,0.0 +15844,46,12,11,0.0 +15844,60,34,36,0.0 +15844,51,53,42,0.0 +15844,5,21.35,23,0.0 +15844,14,23.25,49,0.0 +15844,22,21,5,0.0 +15844,11,21,41,0.0 +15844,39,18,38,0.0 +15844,64,33.25,10,0.0 +15844,45,9.5,4,0.0 +15844,40,18.4,18,0.0 +15844,17,39,12,0.0 +15844,56,38,10,0.0 +15844,2,19,36,0.0 +15844,44,19.45,26,0.0 +15845,37,26,2,0.0 +15845,46,12,50,0.0 +15845,36,19,49,0.0 +15845,53,32.8,29,0.0 +15845,74,10,41,0.0 +15845,31,12.5,18,0.0 +15845,51,53,21,0.0 +15845,2,19,31,0.0 +15845,28,45.6,34,0.0 +15845,77,13,21,0.0 +15845,1,18,30,0.0 +15845,16,17.45,13,0.0 +15845,42,14,37,0.0 +15845,29,123.79,32,0.0 +15845,30,25.89,38,0.0 +15845,4,22,2,0.0 +15845,11,21,24,0.0 +15845,38,263.5,41,0.0 +15845,10,31,25,0.0 +15845,23,9,3,0.0 +15845,44,19.45,41,0.0 +15845,61,28.5,11,0.0 +15845,24,4.5,36,0.0 +15845,56,38,49,0.0 +15845,62,49.3,16,0.0 +15845,52,7,49,0.0 +15845,45,9.5,6,0.0 +15845,34,14,46,0.0 +15845,59,55,37,0.0 +15845,8,40,36,0.0 +15845,19,9.2,27,0.0 +15845,73,15,29,0.0 +15845,21,10,27,0.0 +15845,39,18,5,0.0 +15845,6,25,2,0.0 +15845,33,2.5,32,0.0 +15845,55,24,27,0.0 +15845,67,14,20,0.0 +15845,41,9.65,2,0.0 +15845,65,21.05,27,0.0 +15845,75,7.75,25,0.0 +15845,71,21.5,25,0.0 +15845,50,16.25,30,0.0 +15845,20,81,40,0.0 +15845,69,36,11,0.0 +15845,64,33.25,23,0.0 +15845,72,34.8,29,0.0 +15845,12,38,40,0.0 +15845,35,18,39,0.0 +15845,68,12.5,17,0.0 +15845,17,39,21,0.0 +15845,48,12.75,36,0.0 +15845,5,21.35,1,0.0 +15845,9,97,50,0.0 +15845,43,46,33,0.0 +15845,70,15,14,0.0 +15845,58,13.25,7,0.0 +15845,3,10,4,0.0 +15845,49,20,15,0.0 +15845,22,21,10,0.0 +15845,57,19.5,16,0.0 +15845,26,31.23,46,0.0 +15845,32,32,8,0.0 +15845,76,18,14,0.0 +15845,66,17,45,0.0 +15846,47,9.5,18,0.0 +15846,70,15,23,0.0 +15846,30,25.89,10,0.0 +15846,14,23.25,14,0.0 +15846,64,33.25,10,0.0 +15846,28,45.6,34,0.0 +15846,7,30,19,0.0 +15846,39,18,16,0.0 +15846,58,13.25,24,0.0 +15846,43,46,37,0.0 +15846,67,14,49,0.0 +15846,66,17,6,0.0 +15846,77,13,35,0.0 +15846,10,31,11,0.0 +15846,27,43.9,10,0.0 +15846,73,15,8,0.0 +15846,22,21,1,0.0 +15846,35,18,19,0.0 +15846,19,9.2,13,0.0 +15846,68,12.5,4,0.0 +15846,34,14,33,0.0 +15846,71,21.5,14,0.0 +15846,21,10,22,0.0 +15846,56,38,12,0.0 +15846,69,36,10,0.0 +15846,62,49.3,12,0.0 +15846,26,31.23,17,0.0 +15846,50,16.25,25,0.0 +15846,65,21.05,21,0.0 +15846,75,7.75,1,0.0 +15846,33,2.5,36,0.0 +15846,5,21.35,32,0.0 +15846,24,4.5,10,0.0 +15846,59,55,9,0.0 +15846,13,6,49,0.0 +15846,49,20,37,0.0 +15846,6,25,1,0.0 +15846,23,9,4,0.0 +15846,52,7,22,0.0 +15846,54,7.45,48,0.0 +15846,8,40,50,0.0 +15846,55,24,23,0.0 +15846,38,263.5,11,0.0 +15846,46,12,1,0.0 +15846,63,43.9,38,0.0 +15846,2,19,3,0.0 +15846,57,19.5,36,0.0 +15846,53,32.8,39,0.0 +15846,76,18,46,0.0 +15846,32,32,33,0.0 +15846,45,9.5,23,0.0 +15846,37,26,46,0.0 +15846,25,14,43,0.0 +15846,42,14,40,0.0 +15846,3,10,26,0.0 +15846,48,12.75,47,0.0 +15846,18,62.5,22,0.0 +15847,74,10,16,0.0 +15847,12,38,35,0.0 +15847,61,28.5,18,0.0 +15847,28,45.6,22,0.0 +15847,25,14,32,0.0 +15847,6,25,41,0.0 +15847,3,10,2,0.0 +15847,14,23.25,2,0.0 +15847,47,9.5,42,0.0 +15847,56,38,9,0.0 +15847,54,7.45,47,0.0 +15847,65,21.05,15,0.0 +15847,13,6,17,0.0 +15847,34,14,39,0.0 +15847,8,40,10,0.0 +15847,42,14,10,0.0 +15847,19,9.2,28,0.0 +15847,20,81,19,0.0 +15847,45,9.5,41,0.0 +15847,40,18.4,17,0.0 +15847,75,7.75,39,0.0 +15847,43,46,18,0.0 +15847,60,34,34,0.0 +15847,37,26,7,0.0 +15847,55,24,13,0.0 +15847,49,20,29,0.0 +15847,27,43.9,4,0.0 +15847,2,19,39,0.0 +15847,23,9,41,0.0 +15847,35,18,27,0.0 +15847,50,16.25,50,0.0 +15847,52,7,35,0.0 +15847,11,21,31,0.0 +15847,10,31,24,0.0 +15847,31,12.5,49,0.0 +15847,4,22,35,0.0 +15847,73,15,11,0.0 +15847,66,17,41,0.0 +15847,69,36,14,0.0 +15847,62,49.3,13,0.0 +15847,59,55,27,0.0 +15847,67,14,38,0.0 +15847,76,18,7,0.0 +15847,46,12,22,0.0 +15847,57,19.5,28,0.0 +15847,33,2.5,34,0.0 +15848,4,22,46,0.0 +15848,63,43.9,40,0.0 +15848,70,15,33,0.0 +15848,25,14,14,0.0 +15848,62,49.3,16,0.0 +15848,38,263.5,43,0.0 +15848,30,25.89,42,0.0 +15848,28,45.6,13,0.0 +15848,46,12,14,0.0 +15848,44,19.45,6,0.0 +15848,26,31.23,22,0.0 +15848,74,10,43,0.0 +15848,45,9.5,15,0.0 +15848,14,23.25,46,0.0 +15848,5,21.35,32,0.0 +15848,64,33.25,42,0.0 +15848,58,13.25,5,0.0 +15848,34,14,8,0.0 +15848,11,21,49,0.0 +15848,15,15.5,37,0.0 +15848,16,17.45,28,0.0 +15848,48,12.75,19,0.0 +15848,29,123.79,5,0.0 +15848,27,43.9,2,0.0 +15848,52,7,23,0.0 +15848,73,15,25,0.0 +15848,57,19.5,36,0.0 +15848,6,25,16,0.0 +15848,41,9.65,14,0.0 +15848,56,38,38,0.0 +15848,17,39,5,0.0 +15848,20,81,33,0.0 +15848,71,21.5,27,0.0 +15848,1,18,42,0.0 +15848,8,40,8,0.0 +15848,60,34,11,0.0 +15848,54,7.45,39,0.0 +15848,39,18,22,0.0 +15848,35,18,43,0.0 +15848,9,97,14,0.0 +15848,2,19,43,0.0 +15848,40,18.4,41,0.0 +15848,43,46,24,0.0 +15848,31,12.5,25,0.0 +15848,37,26,3,0.0 +15848,33,2.5,37,0.0 +15848,32,32,13,0.0 +15848,65,21.05,17,0.0 +15848,61,28.5,35,0.0 +15848,23,9,50,0.0 +15848,72,34.8,48,0.0 +15848,36,19,46,0.0 +15848,13,6,50,0.0 +15848,53,32.8,12,0.0 +15848,10,31,20,0.0 +15848,19,9.2,13,0.0 +15848,69,36,50,0.0 +15848,47,9.5,49,0.0 +15848,66,17,30,0.0 +15848,18,62.5,42,0.0 +15848,3,10,8,0.0 +15848,51,53,5,0.0 +15848,77,13,36,0.0 +15848,24,4.5,11,0.0 +15848,12,38,30,0.0 +15848,49,20,3,0.0 +15848,55,24,50,0.0 +15848,42,14,36,0.0 +15849,16,17.45,38,0.0 +15849,69,36,17,0.0 +15849,50,16.25,6,0.0 +15849,25,14,6,0.0 +15849,28,45.6,10,0.0 +15849,26,31.23,26,0.0 +15849,13,6,49,0.0 +15849,31,12.5,43,0.0 +15849,60,34,48,0.0 +15849,40,18.4,50,0.0 +15849,24,4.5,48,0.0 +15849,51,53,9,0.0 +15849,61,28.5,19,0.0 +15849,49,20,10,0.0 +15849,65,21.05,39,0.0 +15849,12,38,18,0.0 +15849,33,2.5,17,0.0 +15849,5,21.35,8,0.0 +15849,32,32,13,0.0 +15849,48,12.75,12,0.0 +15849,39,18,26,0.0 +15849,74,10,39,0.0 +15849,38,263.5,6,0.0 +15849,53,32.8,45,0.0 +15849,22,21,35,0.0 +15849,15,15.5,10,0.0 +15849,63,43.9,50,0.0 +15849,11,21,18,0.0 +15849,30,25.89,50,0.0 +15849,70,15,43,0.0 +15849,75,7.75,32,0.0 +15849,19,9.2,29,0.0 +15849,72,34.8,1,0.0 +15849,67,14,26,0.0 +15849,45,9.5,2,0.0 +15849,14,23.25,27,0.0 +15849,73,15,35,0.0 +15849,10,31,29,0.0 +15849,27,43.9,36,0.0 +15849,18,62.5,43,0.0 +15849,35,18,11,0.0 +15849,46,12,11,0.0 +15849,8,40,29,0.0 +15849,52,7,31,0.0 +15849,23,9,25,0.0 +15850,65,21.05,49,0.0 +15850,46,12,33,0.0 +15850,3,10,2,0.0 +15850,10,31,30,0.0 +15850,71,21.5,16,0.0 +15850,16,17.45,23,0.0 +15850,48,12.75,2,0.0 +15850,49,20,25,0.0 +15850,51,53,13,0.0 +15850,17,39,50,0.0 +15850,63,43.9,37,0.0 +15850,14,23.25,38,0.0 +15850,62,49.3,48,0.0 +15850,20,81,40,0.0 +15850,66,17,39,0.0 +15850,21,10,28,0.0 +15850,59,55,22,0.0 +15850,31,12.5,49,0.0 +15850,57,19.5,36,0.0 +15850,39,18,22,0.0 +15850,75,7.75,7,0.0 +15850,33,2.5,26,0.0 +15850,58,13.25,26,0.0 +15850,1,18,24,0.0 +15850,72,34.8,41,0.0 +15850,55,24,33,0.0 +15850,60,34,6,0.0 +15850,37,26,15,0.0 +15850,52,7,34,0.0 +15850,13,6,16,0.0 +15850,44,19.45,16,0.0 +15850,5,21.35,18,0.0 +15850,12,38,6,0.0 +15850,36,19,43,0.0 +15850,53,32.8,43,0.0 +15850,15,15.5,11,0.0 +15850,6,25,26,0.0 +15850,50,16.25,50,0.0 +15850,69,36,48,0.0 +15850,9,97,25,0.0 +15850,35,18,4,0.0 +15850,27,43.9,27,0.0 +15850,11,21,13,0.0 +15850,42,14,3,0.0 +15850,56,38,44,0.0 +15851,63,43.9,50,0.0 +15851,31,12.5,43,0.0 +15851,15,15.5,1,0.0 +15851,19,9.2,21,0.0 +15851,62,49.3,7,0.0 +15851,24,4.5,31,0.0 +15851,5,21.35,34,0.0 +15851,17,39,17,0.0 +15852,4,22,48,0.0 +15852,42,14,43,0.0 +15852,72,34.8,44,0.0 +15852,63,43.9,14,0.0 +15852,8,40,9,0.0 +15852,43,46,25,0.0 +15852,1,18,11,0.0 +15852,62,49.3,45,0.0 +15852,68,12.5,33,0.0 +15852,20,81,19,0.0 +15852,14,23.25,47,0.0 +15852,10,31,2,0.0 +15852,67,14,50,0.0 +15852,66,17,50,0.0 +15852,41,9.65,11,0.0 +15852,37,26,39,0.0 +15852,47,9.5,33,0.0 +15852,26,31.23,3,0.0 +15852,31,12.5,14,0.0 +15852,52,7,48,0.0 +15852,15,15.5,41,0.0 +15852,22,21,7,0.0 +15852,16,17.45,28,0.0 +15852,35,18,19,0.0 +15852,17,39,22,0.0 +15852,39,18,34,0.0 +15852,38,263.5,4,0.0 +15852,5,21.35,21,0.0 +15852,25,14,4,0.0 +15852,29,123.79,3,0.0 +15852,75,7.75,35,0.0 +15853,34,14,45,0.0 +15853,36,19,23,0.0 +15853,47,9.5,45,0.0 +15853,73,15,22,0.0 +15853,77,13,43,0.0 +15853,71,21.5,20,0.0 +15853,72,34.8,14,0.0 +15853,3,10,21,0.0 +15853,39,18,12,0.0 +15853,52,7,22,0.0 +15853,17,39,28,0.0 +15853,28,45.6,29,0.0 +15853,14,23.25,14,0.0 +15853,27,43.9,2,0.0 +15853,76,18,44,0.0 +15853,16,17.45,13,0.0 +15853,40,18.4,28,0.0 +15853,50,16.25,43,0.0 +15853,66,17,7,0.0 +15853,10,31,43,0.0 +15853,13,6,10,0.0 +15853,54,7.45,21,0.0 +15853,12,38,11,0.0 +15853,49,20,33,0.0 +15853,20,81,34,0.0 +15853,69,36,23,0.0 +15853,21,10,48,0.0 +15853,24,4.5,47,0.0 +15853,46,12,37,0.0 +15853,74,10,7,0.0 +15853,58,13.25,5,0.0 +15853,1,18,34,0.0 +15853,63,43.9,8,0.0 +15853,6,25,49,0.0 +15853,43,46,30,0.0 +15853,8,40,12,0.0 +15853,51,53,45,0.0 +15853,33,2.5,27,0.0 +15853,53,32.8,29,0.0 +15853,19,9.2,40,0.0 +15853,9,97,13,0.0 +15854,8,40,16,0.0 +15854,49,20,8,0.0 +15854,3,10,28,0.0 +15854,25,14,33,0.0 +15854,5,21.35,7,0.0 +15854,36,19,17,0.0 +15854,46,12,36,0.0 +15854,26,31.23,12,0.0 +15854,12,38,3,0.0 +15854,37,26,32,0.0 +15854,72,34.8,9,0.0 +15854,39,18,43,0.0 +15854,13,6,13,0.0 +15854,24,4.5,29,0.0 +15854,22,21,36,0.0 +15854,54,7.45,5,0.0 +15854,10,31,37,0.0 +15854,67,14,11,0.0 +15854,66,17,24,0.0 +15854,77,13,31,0.0 +15854,73,15,32,0.0 +15854,55,24,25,0.0 +15854,45,9.5,23,0.0 +15854,34,14,32,0.0 +15854,43,46,11,0.0 +15854,33,2.5,34,0.0 +15854,44,19.45,2,0.0 +15854,71,21.5,36,0.0 +15854,70,15,40,0.0 +15854,59,55,4,0.0 +15855,36,19,19,0.0 +15855,13,6,13,0.0 +15855,71,21.5,48,0.0 +15855,15,15.5,45,0.0 +15855,34,14,11,0.0 +15855,35,18,39,0.0 +15855,74,10,7,0.0 +15855,21,10,28,0.0 +15855,19,9.2,28,0.0 +15855,14,23.25,1,0.0 +15855,46,12,7,0.0 +15855,43,46,9,0.0 +15855,40,18.4,48,0.0 +15855,12,38,16,0.0 +15855,60,34,15,0.0 +15855,30,25.89,41,0.0 +15855,53,32.8,4,0.0 +15855,2,19,4,0.0 +15855,51,53,31,0.0 +15855,50,16.25,12,0.0 +15855,29,123.79,20,0.0 +15855,58,13.25,15,0.0 +15855,18,62.5,44,0.0 +15855,4,22,2,0.0 +15855,63,43.9,5,0.0 +15855,62,49.3,48,0.0 +15855,49,20,18,0.0 +15855,23,9,27,0.0 +15855,26,31.23,8,0.0 +15855,47,9.5,35,0.0 +15855,22,21,18,0.0 +15855,38,263.5,17,0.0 +15855,1,18,47,0.0 +15855,42,14,25,0.0 +15855,52,7,44,0.0 +15855,28,45.6,42,0.0 +15855,67,14,5,0.0 +15855,75,7.75,11,0.0 +15855,76,18,46,0.0 +15855,16,17.45,33,0.0 +15855,39,18,6,0.0 +15855,17,39,5,0.0 +15855,68,12.5,42,0.0 +15855,59,55,15,0.0 +15855,77,13,27,0.0 +15855,32,32,20,0.0 +15855,56,38,46,0.0 +15855,48,12.75,26,0.0 +15855,27,43.9,31,0.0 +15855,66,17,49,0.0 +15855,41,9.65,50,0.0 +15855,6,25,45,0.0 +15855,57,19.5,13,0.0 +15855,73,15,1,0.0 +15855,72,34.8,22,0.0 +15855,7,30,35,0.0 +15855,65,21.05,24,0.0 +15855,64,33.25,7,0.0 +15855,37,26,49,0.0 +15855,11,21,8,0.0 +15855,70,15,16,0.0 +15855,8,40,38,0.0 +15855,20,81,37,0.0 +15855,25,14,45,0.0 +15855,69,36,43,0.0 +15855,61,28.5,24,0.0 +15855,31,12.5,18,0.0 +15855,5,21.35,29,0.0 +15855,45,9.5,7,0.0 +15855,33,2.5,21,0.0 +15855,55,24,22,0.0 +15855,24,4.5,24,0.0 +15855,3,10,1,0.0 +15855,9,97,21,0.0 +15855,54,7.45,13,0.0 +15856,48,12.75,40,0.0 +15856,32,32,50,0.0 +15856,26,31.23,49,0.0 +15856,25,14,25,0.0 +15856,74,10,3,0.0 +15856,71,21.5,30,0.0 +15856,60,34,50,0.0 +15856,3,10,16,0.0 +15856,18,62.5,15,0.0 +15856,10,31,41,0.0 +15856,2,19,28,0.0 +15856,34,14,26,0.0 +15856,66,17,13,0.0 +15856,61,28.5,50,0.0 +15856,47,9.5,39,0.0 +15856,7,30,35,0.0 +15856,69,36,25,0.0 +15856,30,25.89,50,0.0 +15856,8,40,39,0.0 +15856,31,12.5,50,0.0 +15856,14,23.25,50,0.0 +15856,23,9,8,0.0 +15856,44,19.45,5,0.0 +15856,6,25,25,0.0 +15856,54,7.45,34,0.0 +15856,56,38,38,0.0 +15856,33,2.5,34,0.0 +15856,20,81,49,0.0 +15856,38,263.5,28,0.0 +15856,49,20,5,0.0 +15856,70,15,38,0.0 +15856,39,18,23,0.0 +15856,64,33.25,2,0.0 +15856,5,21.35,35,0.0 +15856,51,53,50,0.0 +15856,72,34.8,32,0.0 +15856,35,18,15,0.0 +15856,67,14,9,0.0 +15856,24,4.5,16,0.0 +15856,17,39,19,0.0 +15856,1,18,29,0.0 +15856,29,123.79,5,0.0 +15856,65,21.05,12,0.0 +15856,4,22,13,0.0 +15856,11,21,1,0.0 +15856,76,18,13,0.0 +15856,75,7.75,5,0.0 +15856,22,21,25,0.0 +15856,52,7,33,0.0 +15856,46,12,27,0.0 +15856,13,6,44,0.0 +15856,9,97,7,0.0 +15856,57,19.5,7,0.0 +15856,27,43.9,34,0.0 +15856,40,18.4,25,0.0 +15856,45,9.5,17,0.0 +15856,43,46,41,0.0 +15856,59,55,32,0.0 +15856,21,10,1,0.0 +15856,15,15.5,47,0.0 +15856,62,49.3,7,0.0 +15856,19,9.2,36,0.0 +15856,58,13.25,14,0.0 +15856,37,26,34,0.0 +15856,16,17.45,25,0.0 +15856,41,9.65,37,0.0 +15856,53,32.8,27,0.0 +15856,50,16.25,30,0.0 +15856,36,19,33,0.0 +15857,11,21,38,0.0 +15857,19,9.2,20,0.0 +15857,70,15,10,0.0 +15857,15,15.5,32,0.0 +15857,58,13.25,28,0.0 +15857,22,21,10,0.0 +15857,51,53,38,0.0 +15857,35,18,42,0.0 +15857,72,34.8,47,0.0 +15857,31,12.5,38,0.0 +15858,72,34.8,16,0.0 +15858,53,32.8,30,0.0 +15858,44,19.45,39,0.0 +15858,33,2.5,36,0.0 +15858,46,12,11,0.0 +15858,21,10,34,0.0 +15858,28,45.6,26,0.0 +15858,40,18.4,30,0.0 +15858,77,13,42,0.0 +15858,75,7.75,50,0.0 +15858,47,9.5,40,0.0 +15858,73,15,45,0.0 +15858,4,22,1,0.0 +15858,3,10,11,0.0 +15858,52,7,10,0.0 +15858,22,21,2,0.0 +15858,71,21.5,25,0.0 +15858,14,23.25,5,0.0 +15858,12,38,11,0.0 +15858,61,28.5,36,0.0 +15858,20,81,43,0.0 +15858,26,31.23,15,0.0 +15858,45,9.5,48,0.0 +15858,58,13.25,13,0.0 +15858,30,25.89,36,0.0 +15858,37,26,44,0.0 +15858,5,21.35,25,0.0 +15858,60,34,15,0.0 +15858,17,39,40,0.0 +15858,32,32,3,0.0 +15858,24,4.5,33,0.0 +15858,1,18,43,0.0 +15858,48,12.75,32,0.0 +15858,63,43.9,11,0.0 +15858,76,18,42,0.0 +15858,6,25,4,0.0 +15858,69,36,5,0.0 +15858,2,19,35,0.0 +15858,11,21,30,0.0 +15858,70,15,14,0.0 +15858,25,14,49,0.0 +15858,10,31,19,0.0 +15858,67,14,24,0.0 +15858,23,9,16,0.0 +15858,51,53,18,0.0 +15858,56,38,10,0.0 +15858,39,18,45,0.0 +15858,41,9.65,13,0.0 +15858,64,33.25,1,0.0 +15858,15,15.5,21,0.0 +15858,42,14,5,0.0 +15858,31,12.5,47,0.0 +15858,50,16.25,21,0.0 +15858,16,17.45,17,0.0 +15858,19,9.2,12,0.0 +15858,43,46,20,0.0 +15858,27,43.9,24,0.0 +15859,52,7,49,0.0 +15859,70,15,43,0.0 +15859,24,4.5,3,0.0 +15859,13,6,34,0.0 +15859,68,12.5,47,0.0 +15859,6,25,15,0.0 +15859,1,18,35,0.0 +15859,18,62.5,38,0.0 +15859,14,23.25,32,0.0 +15859,53,32.8,25,0.0 +15859,11,21,31,0.0 +15859,72,34.8,29,0.0 +15859,29,123.79,38,0.0 +15859,2,19,16,0.0 +15859,8,40,2,0.0 +15859,76,18,49,0.0 +15859,67,14,39,0.0 +15859,23,9,42,0.0 +15859,10,31,5,0.0 +15859,71,21.5,5,0.0 +15859,62,49.3,16,0.0 +15859,12,38,21,0.0 +15859,16,17.45,8,0.0 +15859,40,18.4,18,0.0 +15859,5,21.35,48,0.0 +15859,30,25.89,9,0.0 +15859,28,45.6,19,0.0 +15859,63,43.9,21,0.0 +15859,19,9.2,50,0.0 +15859,64,33.25,32,0.0 +15859,51,53,49,0.0 +15859,36,19,30,0.0 +15859,45,9.5,9,0.0 +15859,55,24,24,0.0 +15859,7,30,2,0.0 +15859,59,55,14,0.0 +15859,77,13,35,0.0 +15859,33,2.5,25,0.0 +15859,37,26,9,0.0 +15860,47,9.5,22,0.0 +15860,53,32.8,46,0.0 +15860,49,20,48,0.0 +15860,12,38,13,0.0 +15860,63,43.9,44,0.0 +15860,66,17,22,0.0 +15860,38,263.5,34,0.0 +15861,10,31,34,0.0 +15861,67,14,30,0.0 +15861,13,6,37,0.0 +15861,69,36,38,0.0 +15861,42,14,27,0.0 +15861,17,39,34,0.0 +15861,37,26,11,0.0 +15861,21,10,50,0.0 +15861,65,21.05,20,0.0 +15861,51,53,42,0.0 +15861,60,34,5,0.0 +15861,72,34.8,29,0.0 +15861,39,18,33,0.0 +15861,64,33.25,49,0.0 +15861,14,23.25,44,0.0 +15861,44,19.45,21,0.0 +15861,7,30,39,0.0 +15861,66,17,12,0.0 +15862,66,17,34,0.0 +15862,50,16.25,44,0.0 +15862,24,4.5,5,0.0 +15862,46,12,41,0.0 +15862,38,263.5,45,0.0 +15862,11,21,12,0.0 +15862,39,18,9,0.0 +15862,52,7,24,0.0 +15862,5,21.35,3,0.0 +15862,77,13,45,0.0 +15862,8,40,23,0.0 +15862,13,6,48,0.0 +15862,9,97,45,0.0 +15862,61,28.5,29,0.0 +15862,26,31.23,14,0.0 +15862,25,14,30,0.0 +15862,71,21.5,24,0.0 +15862,62,49.3,35,0.0 +15862,18,62.5,26,0.0 +15862,14,23.25,44,0.0 +15862,54,7.45,47,0.0 +15862,36,19,34,0.0 +15862,42,14,25,0.0 +15862,27,43.9,30,0.0 +15862,21,10,23,0.0 +15862,6,25,39,0.0 +15862,20,81,32,0.0 +15862,15,15.5,28,0.0 +15862,30,25.89,4,0.0 +15862,40,18.4,2,0.0 +15862,2,19,43,0.0 +15862,69,36,8,0.0 +15862,31,12.5,37,0.0 +15862,55,24,43,0.0 +15862,57,19.5,12,0.0 +15862,3,10,14,0.0 +15862,44,19.45,45,0.0 +15862,72,34.8,13,0.0 +15862,47,9.5,1,0.0 +15862,33,2.5,41,0.0 +15862,65,21.05,37,0.0 +15862,43,46,35,0.0 +15862,67,14,19,0.0 +15862,29,123.79,36,0.0 +15862,63,43.9,9,0.0 +15862,75,7.75,27,0.0 +15862,19,9.2,40,0.0 +15862,58,13.25,50,0.0 +15862,41,9.65,8,0.0 +15862,1,18,35,0.0 +15862,28,45.6,14,0.0 +15862,45,9.5,15,0.0 +15862,64,33.25,20,0.0 +15862,74,10,31,0.0 +15862,76,18,15,0.0 +15862,22,21,2,0.0 +15862,12,38,30,0.0 +15862,73,15,18,0.0 +15862,10,31,29,0.0 +15862,60,34,34,0.0 +15862,32,32,19,0.0 +15862,35,18,45,0.0 +15862,23,9,4,0.0 +15862,16,17.45,9,0.0 +15862,59,55,29,0.0 +15862,70,15,29,0.0 +15862,17,39,29,0.0 +15862,7,30,44,0.0 +15862,51,53,49,0.0 +15862,48,12.75,16,0.0 +15862,53,32.8,36,0.0 +15862,56,38,21,0.0 +15863,61,28.5,36,0.0 +15863,24,4.5,22,0.0 +15863,45,9.5,5,0.0 +15863,37,26,38,0.0 +15863,3,10,21,0.0 +15863,54,7.45,49,0.0 +15863,62,49.3,42,0.0 +15863,16,17.45,39,0.0 +15863,15,15.5,43,0.0 +15863,25,14,34,0.0 +15863,67,14,44,0.0 +15864,26,31.23,37,0.0 +15864,21,10,10,0.0 +15864,27,43.9,8,0.0 +15864,4,22,45,0.0 +15864,14,23.25,8,0.0 +15864,20,81,25,0.0 +15864,19,9.2,39,0.0 +15864,31,12.5,32,0.0 +15864,59,55,10,0.0 +15864,30,25.89,15,0.0 +15864,37,26,49,0.0 +15864,5,21.35,27,0.0 +15864,77,13,31,0.0 +15864,57,19.5,22,0.0 +15864,51,53,37,0.0 +15864,41,9.65,45,0.0 +15864,47,9.5,9,0.0 +15864,75,7.75,9,0.0 +15864,60,34,29,0.0 +15864,1,18,40,0.0 +15864,61,28.5,32,0.0 +15864,3,10,10,0.0 +15864,52,7,18,0.0 +15864,10,31,41,0.0 +15864,65,21.05,43,0.0 +15864,23,9,31,0.0 +15864,12,38,49,0.0 +15864,22,21,10,0.0 +15864,24,4.5,19,0.0 +15864,13,6,5,0.0 +15864,7,30,13,0.0 +15864,58,13.25,2,0.0 +15864,53,32.8,21,0.0 +15864,43,46,14,0.0 +15864,2,19,25,0.0 +15864,68,12.5,49,0.0 +15864,42,14,12,0.0 +15864,38,263.5,35,0.0 +15864,34,14,10,0.0 +15864,44,19.45,13,0.0 +15864,15,15.5,11,0.0 +15864,35,18,10,0.0 +15864,32,32,30,0.0 +15864,28,45.6,32,0.0 +15864,36,19,39,0.0 +15864,56,38,43,0.0 +15864,40,18.4,15,0.0 +15864,16,17.45,15,0.0 +15864,73,15,12,0.0 +15864,64,33.25,9,0.0 +15865,52,7,9,0.0 +15865,70,15,21,0.0 +15865,10,31,30,0.0 +15865,14,23.25,24,0.0 +15865,4,22,47,0.0 +15865,65,21.05,20,0.0 +15865,57,19.5,34,0.0 +15865,69,36,31,0.0 +15865,71,21.5,29,0.0 +15865,72,34.8,32,0.0 +15865,30,25.89,35,0.0 +15865,13,6,27,0.0 +15865,22,21,41,0.0 +15865,60,34,42,0.0 +15865,75,7.75,19,0.0 +15865,53,32.8,12,0.0 +15865,29,123.79,5,0.0 +15865,44,19.45,11,0.0 +15865,63,43.9,7,0.0 +15865,51,53,18,0.0 +15865,61,28.5,22,0.0 +15865,43,46,13,0.0 +15865,33,2.5,36,0.0 +15865,62,49.3,20,0.0 +15865,27,43.9,22,0.0 +15865,8,40,16,0.0 +15865,54,7.45,4,0.0 +15865,25,14,38,0.0 +15865,36,19,22,0.0 +15865,7,30,6,0.0 +15865,15,15.5,44,0.0 +15865,67,14,26,0.0 +15865,49,20,5,0.0 +15865,12,38,48,0.0 +15865,19,9.2,4,0.0 +15865,35,18,45,0.0 +15865,20,81,47,0.0 +15865,24,4.5,14,0.0 +15865,39,18,5,0.0 +15865,42,14,12,0.0 +15865,16,17.45,50,0.0 +15865,9,97,26,0.0 +15865,40,18.4,36,0.0 +15865,3,10,15,0.0 +15865,48,12.75,21,0.0 +15865,55,24,26,0.0 +15865,26,31.23,15,0.0 +15865,38,263.5,37,0.0 +15865,46,12,1,0.0 +15865,1,18,49,0.0 +15865,11,21,20,0.0 +15865,56,38,4,0.0 +15865,32,32,1,0.0 +15865,6,25,35,0.0 +15865,45,9.5,10,0.0 +15865,47,9.5,7,0.0 +15865,68,12.5,3,0.0 +15865,5,21.35,37,0.0 +15865,18,62.5,7,0.0 +15865,73,15,28,0.0 +15865,59,55,8,0.0 +15865,77,13,26,0.0 +15865,34,14,43,0.0 +15865,66,17,1,0.0 +15865,37,26,32,0.0 +15865,50,16.25,24,0.0 +15865,21,10,35,0.0 +15865,64,33.25,16,0.0 +15865,28,45.6,23,0.0 +15865,41,9.65,23,0.0 +15865,58,13.25,17,0.0 +15866,37,26,6,0.0 +15866,8,40,1,0.0 +15866,6,25,21,0.0 +15866,2,19,6,0.0 +15866,48,12.75,43,0.0 +15866,53,32.8,9,0.0 +15866,55,24,26,0.0 +15866,76,18,21,0.0 +15866,50,16.25,43,0.0 +15866,7,30,25,0.0 +15866,24,4.5,26,0.0 +15866,77,13,28,0.0 +15866,74,10,4,0.0 +15866,31,12.5,2,0.0 +15866,43,46,34,0.0 +15866,36,19,17,0.0 +15866,69,36,2,0.0 +15866,20,81,13,0.0 +15866,12,38,42,0.0 +15866,70,15,20,0.0 +15866,58,13.25,25,0.0 +15866,42,14,27,0.0 +15866,61,28.5,50,0.0 +15866,32,32,16,0.0 +15866,57,19.5,32,0.0 +15866,34,14,22,0.0 +15866,19,9.2,23,0.0 +15866,26,31.23,17,0.0 +15866,66,17,3,0.0 +15866,63,43.9,28,0.0 +15866,14,23.25,17,0.0 +15866,15,15.5,18,0.0 +15866,17,39,4,0.0 +15866,22,21,5,0.0 +15866,13,6,49,0.0 +15866,54,7.45,34,0.0 +15866,47,9.5,20,0.0 +15866,49,20,9,0.0 +15866,4,22,39,0.0 +15866,10,31,38,0.0 +15867,34,14,39,0.0 +15867,41,9.65,25,0.0 +15867,70,15,27,0.0 +15867,46,12,22,0.0 +15867,33,2.5,11,0.0 +15867,65,21.05,26,0.0 +15867,62,49.3,46,0.0 +15868,27,43.9,47,0.0 +15868,54,7.45,24,0.0 +15868,76,18,32,0.0 +15868,24,4.5,25,0.0 +15868,31,12.5,40,0.0 +15868,16,17.45,8,0.0 +15868,3,10,5,0.0 +15868,37,26,43,0.0 +15868,51,53,25,0.0 +15868,22,21,28,0.0 +15868,32,32,22,0.0 +15868,25,14,29,0.0 +15868,56,38,45,0.0 +15868,69,36,15,0.0 +15868,21,10,35,0.0 +15868,45,9.5,34,0.0 +15868,9,97,30,0.0 +15868,13,6,35,0.0 +15868,65,21.05,12,0.0 +15868,71,21.5,27,0.0 +15868,72,34.8,1,0.0 +15869,63,43.9,22,0.0 +15869,68,12.5,43,0.0 +15869,51,53,12,0.0 +15869,18,62.5,26,0.0 +15869,10,31,38,0.0 +15869,2,19,39,0.0 +15869,22,21,2,0.0 +15869,5,21.35,9,0.0 +15869,28,45.6,8,0.0 +15869,65,21.05,48,0.0 +15869,14,23.25,18,0.0 +15869,30,25.89,43,0.0 +15869,41,9.65,12,0.0 +15869,21,10,6,0.0 +15869,15,15.5,25,0.0 +15869,33,2.5,44,0.0 +15869,39,18,34,0.0 +15869,9,97,50,0.0 +15869,17,39,35,0.0 +15869,70,15,42,0.0 +15869,32,32,41,0.0 +15869,38,263.5,33,0.0 +15869,4,22,15,0.0 +15869,45,9.5,1,0.0 +15869,3,10,32,0.0 +15869,56,38,7,0.0 +15869,44,19.45,34,0.0 +15869,16,17.45,39,0.0 +15869,77,13,29,0.0 +15869,47,9.5,19,0.0 +15869,52,7,17,0.0 +15869,74,10,25,0.0 +15869,12,38,9,0.0 +15869,20,81,26,0.0 +15869,72,34.8,28,0.0 +15869,69,36,21,0.0 +15869,42,14,34,0.0 +15869,26,31.23,25,0.0 +15869,59,55,27,0.0 +15869,1,18,26,0.0 +15869,25,14,26,0.0 +15869,75,7.75,7,0.0 +15869,34,14,14,0.0 +15869,7,30,25,0.0 +15869,60,34,3,0.0 +15869,49,20,28,0.0 +15869,48,12.75,45,0.0 +15869,23,9,17,0.0 +15869,46,12,5,0.0 +15869,11,21,49,0.0 +15869,6,25,17,0.0 +15869,29,123.79,33,0.0 +15869,58,13.25,25,0.0 +15869,37,26,41,0.0 +15869,24,4.5,46,0.0 +15869,76,18,3,0.0 +15869,35,18,47,0.0 +15869,19,9.2,50,0.0 +15869,64,33.25,23,0.0 +15869,27,43.9,3,0.0 +15869,43,46,43,0.0 +15869,71,21.5,22,0.0 +15869,13,6,3,0.0 +15869,40,18.4,19,0.0 +15869,62,49.3,33,0.0 +15869,36,19,29,0.0 +15869,61,28.5,13,0.0 +15869,67,14,21,0.0 +15869,8,40,12,0.0 +15869,31,12.5,30,0.0 +15869,66,17,30,0.0 +15869,54,7.45,13,0.0 +15869,53,32.8,13,0.0 +15870,42,14,13,0.0 +15870,36,19,48,0.0 +15870,21,10,35,0.0 +15870,50,16.25,29,0.0 +15870,58,13.25,34,0.0 +15870,29,123.79,34,0.0 +15870,23,9,43,0.0 +15870,61,28.5,14,0.0 +15870,30,25.89,14,0.0 +15870,45,9.5,23,0.0 +15870,37,26,37,0.0 +15870,70,15,30,0.0 +15870,12,38,4,0.0 +15870,22,21,2,0.0 +15870,3,10,36,0.0 +15870,62,49.3,18,0.0 +15870,2,19,40,0.0 +15870,71,21.5,6,0.0 +15870,16,17.45,9,0.0 +15870,66,17,3,0.0 +15870,33,2.5,32,0.0 +15870,31,12.5,18,0.0 +15870,54,7.45,15,0.0 +15870,49,20,10,0.0 +15870,77,13,14,0.0 +15870,25,14,48,0.0 +15870,6,25,15,0.0 +15870,8,40,18,0.0 +15870,38,263.5,48,0.0 +15870,75,7.75,37,0.0 +15870,27,43.9,45,0.0 +15870,48,12.75,3,0.0 +15870,67,14,33,0.0 +15870,41,9.65,23,0.0 +15870,4,22,8,0.0 +15870,9,97,50,0.0 +15870,55,24,13,0.0 +15870,18,62.5,37,0.0 +15870,69,36,15,0.0 +15870,68,12.5,11,0.0 +15870,10,31,26,0.0 +15870,47,9.5,8,0.0 +15870,17,39,34,0.0 +15870,28,45.6,46,0.0 +15870,1,18,24,0.0 +15870,60,34,26,0.0 +15870,64,33.25,22,0.0 +15870,19,9.2,12,0.0 +15870,14,23.25,1,0.0 +15870,20,81,8,0.0 +15870,39,18,33,0.0 +15870,35,18,47,0.0 +15870,44,19.45,21,0.0 +15870,11,21,37,0.0 +15870,74,10,10,0.0 +15870,32,32,14,0.0 +15870,46,12,10,0.0 +15870,15,15.5,42,0.0 +15870,7,30,11,0.0 +15870,53,32.8,44,0.0 +15870,51,53,4,0.0 +15870,57,19.5,47,0.0 +15870,76,18,10,0.0 +15870,63,43.9,49,0.0 +15871,57,19.5,33,0.0 +15871,72,34.8,16,0.0 +15871,27,43.9,16,0.0 +15871,41,9.65,26,0.0 +15871,69,36,13,0.0 +15871,48,12.75,37,0.0 +15871,64,33.25,18,0.0 +15871,30,25.89,35,0.0 +15871,38,263.5,10,0.0 +15871,23,9,33,0.0 +15871,49,20,36,0.0 +15871,10,31,46,0.0 +15871,74,10,37,0.0 +15871,58,13.25,2,0.0 +15871,60,34,3,0.0 +15871,24,4.5,37,0.0 +15871,2,19,36,0.0 +15871,39,18,23,0.0 +15871,43,46,15,0.0 +15871,61,28.5,49,0.0 +15871,25,14,2,0.0 +15871,18,62.5,17,0.0 +15871,32,32,15,0.0 +15871,66,17,14,0.0 +15871,26,31.23,45,0.0 +15871,70,15,17,0.0 +15871,31,12.5,38,0.0 +15871,40,18.4,6,0.0 +15871,16,17.45,7,0.0 +15871,8,40,28,0.0 +15871,54,7.45,37,0.0 +15871,62,49.3,29,0.0 +15871,73,15,33,0.0 +15871,55,24,43,0.0 +15871,5,21.35,26,0.0 +15871,7,30,44,0.0 +15871,46,12,3,0.0 +15871,21,10,19,0.0 +15871,71,21.5,39,0.0 +15871,19,9.2,15,0.0 +15871,50,16.25,16,0.0 +15871,51,53,33,0.0 +15871,22,21,1,0.0 +15871,3,10,46,0.0 +15871,28,45.6,35,0.0 +15871,59,55,28,0.0 +15871,47,9.5,27,0.0 +15872,70,15,11,0.0 +15872,13,6,49,0.0 +15872,5,21.35,43,0.0 +15872,27,43.9,12,0.0 +15872,10,31,42,0.0 +15872,66,17,24,0.0 +15872,43,46,32,0.0 +15872,53,32.8,40,0.0 +15872,71,21.5,5,0.0 +15872,23,9,6,0.0 +15872,46,12,6,0.0 +15872,65,21.05,14,0.0 +15872,75,7.75,17,0.0 +15872,52,7,13,0.0 +15872,60,34,30,0.0 +15872,67,14,16,0.0 +15872,14,23.25,44,0.0 +15872,50,16.25,44,0.0 +15872,42,14,17,0.0 +15872,58,13.25,42,0.0 +15872,35,18,48,0.0 +15872,11,21,3,0.0 +15872,72,34.8,47,0.0 +15872,62,49.3,33,0.0 +15872,30,25.89,2,0.0 +15872,74,10,22,0.0 +15872,22,21,32,0.0 +15872,51,53,46,0.0 +15872,4,22,25,0.0 +15872,19,9.2,11,0.0 +15872,17,39,23,0.0 +15872,24,4.5,1,0.0 +15872,25,14,28,0.0 +15872,12,38,33,0.0 +15872,36,19,5,0.0 +15872,63,43.9,23,0.0 +15872,45,9.5,29,0.0 +15872,31,12.5,46,0.0 +15872,48,12.75,23,0.0 +15872,21,10,3,0.0 +15872,73,15,46,0.0 +15872,76,18,45,0.0 +15872,55,24,4,0.0 +15872,61,28.5,34,0.0 +15872,33,2.5,4,0.0 +15872,9,97,11,0.0 +15872,18,62.5,12,0.0 +15872,34,14,7,0.0 +15872,20,81,17,0.0 +15872,1,18,46,0.0 +15872,68,12.5,25,0.0 +15872,16,17.45,38,0.0 +15872,40,18.4,26,0.0 +15872,44,19.45,23,0.0 +15872,69,36,11,0.0 +15872,26,31.23,24,0.0 +15872,32,32,4,0.0 +15872,29,123.79,33,0.0 +15872,37,26,28,0.0 +15872,39,18,40,0.0 +15872,2,19,46,0.0 +15872,56,38,13,0.0 +15872,49,20,30,0.0 +15872,15,15.5,23,0.0 +15872,8,40,5,0.0 +15872,3,10,6,0.0 +15872,77,13,1,0.0 +15872,7,30,9,0.0 +15872,6,25,48,0.0 +15872,47,9.5,24,0.0 +15872,59,55,47,0.0 +15872,54,7.45,19,0.0 +15872,38,263.5,19,0.0 +15872,64,33.25,40,0.0 +15872,57,19.5,24,0.0 +15872,41,9.65,8,0.0 +15873,75,7.75,1,0.0 +15873,11,21,45,0.0 +15873,41,9.65,2,0.0 +15873,56,38,23,0.0 +15873,36,19,16,0.0 +15873,13,6,30,0.0 +15873,3,10,42,0.0 +15873,5,21.35,10,0.0 +15873,44,19.45,39,0.0 +15873,70,15,27,0.0 +15873,57,19.5,21,0.0 +15873,29,123.79,19,0.0 +15873,19,9.2,14,0.0 +15873,59,55,23,0.0 +15873,50,16.25,34,0.0 +15873,12,38,33,0.0 +15873,23,9,26,0.0 +15873,7,30,44,0.0 +15873,39,18,17,0.0 +15873,67,14,15,0.0 +15873,54,7.45,7,0.0 +15873,52,7,9,0.0 +15873,15,15.5,44,0.0 +15873,66,17,21,0.0 +15873,16,17.45,28,0.0 +15873,77,13,22,0.0 +15873,76,18,42,0.0 +15873,4,22,36,0.0 +15873,37,26,35,0.0 +15873,33,2.5,46,0.0 +15873,18,62.5,33,0.0 +15873,1,18,21,0.0 +15873,65,21.05,3,0.0 +15873,45,9.5,40,0.0 +15873,9,97,36,0.0 +15873,71,21.5,50,0.0 +15873,49,20,30,0.0 +15873,31,12.5,3,0.0 +15873,17,39,44,0.0 +15873,47,9.5,16,0.0 +15873,61,28.5,33,0.0 +15873,63,43.9,42,0.0 +15873,64,33.25,2,0.0 +15873,58,13.25,20,0.0 +15873,74,10,10,0.0 +15874,9,97,35,0.0 +15874,58,13.25,45,0.0 +15874,46,12,8,0.0 +15874,16,17.45,44,0.0 +15874,15,15.5,5,0.0 +15874,25,14,49,0.0 +15874,14,23.25,4,0.0 +15874,45,9.5,36,0.0 +15874,34,14,21,0.0 +15874,7,30,26,0.0 +15874,36,19,37,0.0 +15874,47,9.5,21,0.0 +15874,62,49.3,30,0.0 +15874,10,31,17,0.0 +15874,50,16.25,11,0.0 +15874,44,19.45,29,0.0 +15874,17,39,4,0.0 +15874,51,53,18,0.0 +15874,19,9.2,9,0.0 +15874,20,81,15,0.0 +15874,23,9,13,0.0 +15874,13,6,36,0.0 +15874,26,31.23,14,0.0 +15874,74,10,42,0.0 +15875,13,6,4,0.0 +15875,67,14,31,0.0 +15875,26,31.23,27,0.0 +15875,72,34.8,46,0.0 +15875,44,19.45,2,0.0 +15875,28,45.6,3,0.0 +15875,30,25.89,26,0.0 +15875,41,9.65,2,0.0 +15875,52,7,47,0.0 +15875,16,17.45,26,0.0 +15875,27,43.9,1,0.0 +15875,5,21.35,19,0.0 +15875,63,43.9,15,0.0 +15875,36,19,13,0.0 +15875,20,81,19,0.0 +15875,62,49.3,18,0.0 +15875,32,32,35,0.0 +15875,12,38,49,0.0 +15875,25,14,37,0.0 +15875,56,38,19,0.0 +15875,33,2.5,39,0.0 +15875,75,7.75,7,0.0 +15875,19,9.2,42,0.0 +15875,18,62.5,46,0.0 +15875,46,12,13,0.0 +15875,53,32.8,10,0.0 +15875,29,123.79,19,0.0 +15875,1,18,3,0.0 +15875,42,14,34,0.0 +15875,61,28.5,48,0.0 +15875,10,31,37,0.0 +15875,60,34,42,0.0 +15875,35,18,15,0.0 +15875,49,20,49,0.0 +15875,22,21,13,0.0 +15875,50,16.25,48,0.0 +15875,15,15.5,42,0.0 +15875,17,39,46,0.0 +15875,34,14,28,0.0 +15875,14,23.25,17,0.0 +15875,55,24,40,0.0 +15875,2,19,8,0.0 +15875,45,9.5,27,0.0 +15875,23,9,15,0.0 +15875,9,97,12,0.0 +15875,68,12.5,23,0.0 +15875,4,22,42,0.0 +15875,57,19.5,29,0.0 +15875,38,263.5,14,0.0 +15875,7,30,11,0.0 +15875,21,10,40,0.0 +15875,8,40,3,0.0 +15875,51,53,50,0.0 +15875,31,12.5,50,0.0 +15875,47,9.5,23,0.0 +15875,74,10,35,0.0 +15875,70,15,1,0.0 +15875,64,33.25,34,0.0 +15875,43,46,24,0.0 +15875,37,26,5,0.0 +15876,3,10,12,0.0 +15876,23,9,31,0.0 +15876,5,21.35,22,0.0 +15876,59,55,35,0.0 +15876,70,15,50,0.0 +15876,65,21.05,47,0.0 +15876,76,18,42,0.0 +15876,71,21.5,11,0.0 +15876,36,19,50,0.0 +15876,4,22,31,0.0 +15876,26,31.23,29,0.0 +15876,50,16.25,31,0.0 +15876,42,14,26,0.0 +15876,13,6,11,0.0 +15876,44,19.45,23,0.0 +15876,12,38,26,0.0 +15876,7,30,15,0.0 +15876,61,28.5,27,0.0 +15876,54,7.45,9,0.0 +15876,21,10,47,0.0 +15876,51,53,13,0.0 +15876,8,40,15,0.0 +15876,35,18,6,0.0 +15876,30,25.89,8,0.0 +15876,17,39,45,0.0 +15876,34,14,20,0.0 +15876,52,7,34,0.0 +15876,58,13.25,34,0.0 +15876,19,9.2,43,0.0 +15876,20,81,31,0.0 +15876,43,46,36,0.0 +15876,22,21,39,0.0 +15876,27,43.9,8,0.0 +15876,68,12.5,33,0.0 +15876,39,18,50,0.0 +15876,16,17.45,35,0.0 +15876,6,25,31,0.0 +15876,64,33.25,7,0.0 +15876,31,12.5,45,0.0 +15876,75,7.75,35,0.0 +15876,38,263.5,10,0.0 +15876,69,36,47,0.0 +15876,33,2.5,20,0.0 +15876,32,32,23,0.0 +15876,66,17,30,0.0 +15876,45,9.5,6,0.0 +15876,1,18,3,0.0 +15876,18,62.5,1,0.0 +15876,28,45.6,41,0.0 +15876,41,9.65,22,0.0 +15876,53,32.8,25,0.0 +15876,9,97,13,0.0 +15876,24,4.5,6,0.0 +15876,2,19,8,0.0 +15876,29,123.79,1,0.0 +15876,74,10,5,0.0 +15876,40,18.4,20,0.0 +15876,73,15,44,0.0 +15876,46,12,46,0.0 +15876,15,15.5,17,0.0 +15876,48,12.75,10,0.0 +15876,62,49.3,6,0.0 +15876,57,19.5,28,0.0 +15876,77,13,29,0.0 +15876,63,43.9,21,0.0 +15876,47,9.5,23,0.0 +15876,11,21,6,0.0 +15876,37,26,34,0.0 +15876,55,24,8,0.0 +15876,56,38,17,0.0 +15876,25,14,38,0.0 +15876,60,34,21,0.0 +15876,49,20,17,0.0 +15876,14,23.25,14,0.0 +15876,72,34.8,1,0.0 +15876,67,14,27,0.0 +15876,10,31,22,0.0 +15877,28,45.6,42,0.0 +15877,62,49.3,47,0.0 +15877,1,18,3,0.0 +15877,31,12.5,19,0.0 +15877,8,40,3,0.0 +15877,50,16.25,12,0.0 +15877,48,12.75,8,0.0 +15877,34,14,5,0.0 +15877,58,13.25,37,0.0 +15877,47,9.5,50,0.0 +15877,9,97,36,0.0 +15877,69,36,45,0.0 +15877,15,15.5,48,0.0 +15877,70,15,4,0.0 +15877,11,21,17,0.0 +15877,75,7.75,39,0.0 +15877,38,263.5,30,0.0 +15877,43,46,39,0.0 +15877,67,14,25,0.0 +15877,39,18,46,0.0 +15877,26,31.23,43,0.0 +15877,7,30,36,0.0 +15877,53,32.8,41,0.0 +15877,19,9.2,24,0.0 +15877,40,18.4,10,0.0 +15877,49,20,30,0.0 +15877,65,21.05,7,0.0 +15877,41,9.65,27,0.0 +15877,22,21,48,0.0 +15877,61,28.5,24,0.0 +15877,76,18,30,0.0 +15877,6,25,1,0.0 +15877,71,21.5,4,0.0 +15877,54,7.45,48,0.0 +15877,56,38,14,0.0 +15877,17,39,34,0.0 +15877,51,53,34,0.0 +15877,16,17.45,33,0.0 +15877,23,9,18,0.0 +15877,36,19,8,0.0 +15877,59,55,9,0.0 +15877,52,7,40,0.0 +15877,72,34.8,43,0.0 +15877,37,26,32,0.0 +15877,18,62.5,5,0.0 +15877,30,25.89,3,0.0 +15877,35,18,27,0.0 +15877,45,9.5,23,0.0 +15877,68,12.5,41,0.0 +15877,27,43.9,11,0.0 +15877,57,19.5,11,0.0 +15877,64,33.25,38,0.0 +15877,13,6,28,0.0 +15877,25,14,15,0.0 +15877,4,22,40,0.0 +15877,5,21.35,17,0.0 +15877,2,19,4,0.0 +15877,3,10,4,0.0 +15877,46,12,28,0.0 +15877,33,2.5,8,0.0 +15877,12,38,42,0.0 +15877,63,43.9,47,0.0 +15877,66,17,28,0.0 +15877,73,15,5,0.0 +15877,44,19.45,49,0.0 +15877,14,23.25,45,0.0 +15878,76,18,33,0.0 +15878,37,26,44,0.0 +15878,7,30,19,0.0 +15878,24,4.5,39,0.0 +15878,44,19.45,49,0.0 +15878,31,12.5,43,0.0 +15878,26,31.23,36,0.0 +15878,73,15,37,0.0 +15878,42,14,48,0.0 +15878,16,17.45,50,0.0 +15878,36,19,28,0.0 +15878,38,263.5,15,0.0 +15878,48,12.75,1,0.0 +15878,43,46,5,0.0 +15878,20,81,4,0.0 +15878,58,13.25,7,0.0 +15878,11,21,17,0.0 +15878,51,53,9,0.0 +15878,61,28.5,38,0.0 +15878,23,9,33,0.0 +15878,28,45.6,15,0.0 +15878,35,18,13,0.0 +15878,56,38,38,0.0 +15878,66,17,41,0.0 +15878,47,9.5,23,0.0 +15878,3,10,42,0.0 +15878,72,34.8,15,0.0 +15878,5,21.35,9,0.0 +15878,64,33.25,13,0.0 +15878,71,21.5,29,0.0 +15878,55,24,17,0.0 +15878,39,18,36,0.0 +15878,62,49.3,23,0.0 +15878,70,15,11,0.0 +15878,32,32,11,0.0 +15878,15,15.5,16,0.0 +15878,29,123.79,4,0.0 +15878,49,20,3,0.0 +15878,59,55,16,0.0 +15878,34,14,7,0.0 +15878,19,9.2,46,0.0 +15878,8,40,45,0.0 +15878,75,7.75,40,0.0 +15878,69,36,25,0.0 +15878,12,38,36,0.0 +15878,40,18.4,37,0.0 +15878,60,34,27,0.0 +15878,57,19.5,26,0.0 +15878,77,13,6,0.0 +15878,41,9.65,23,0.0 +15878,68,12.5,48,0.0 +15878,27,43.9,22,0.0 +15878,10,31,13,0.0 +15878,1,18,40,0.0 +15878,21,10,9,0.0 +15878,17,39,25,0.0 +15878,53,32.8,48,0.0 +15878,9,97,42,0.0 +15878,50,16.25,12,0.0 +15878,67,14,20,0.0 +15878,18,62.5,31,0.0 +15878,14,23.25,47,0.0 +15878,74,10,7,0.0 +15878,33,2.5,27,0.0 +15878,4,22,30,0.0 +15878,52,7,1,0.0 +15878,46,12,32,0.0 +15878,22,21,15,0.0 +15878,2,19,43,0.0 +15878,54,7.45,5,0.0 +15878,30,25.89,50,0.0 +15878,45,9.5,33,0.0 +15878,63,43.9,17,0.0 +15878,25,14,25,0.0 +15878,65,21.05,28,0.0 +15878,13,6,2,0.0 +15878,6,25,32,0.0 +15879,44,19.45,20,0.0 +15879,13,6,36,0.0 +15879,31,12.5,24,0.0 +15879,16,17.45,9,0.0 +15879,29,123.79,3,0.0 +15879,74,10,39,0.0 +15879,54,7.45,45,0.0 +15879,46,12,28,0.0 +15879,47,9.5,13,0.0 +15879,27,43.9,40,0.0 +15879,8,40,14,0.0 +15879,60,34,17,0.0 +15879,56,38,45,0.0 +15879,28,45.6,39,0.0 +15879,3,10,36,0.0 +15879,30,25.89,28,0.0 +15879,5,21.35,19,0.0 +15879,33,2.5,15,0.0 +15879,24,4.5,9,0.0 +15879,36,19,26,0.0 +15879,75,7.75,23,0.0 +15879,6,25,18,0.0 +15879,38,263.5,11,0.0 +15879,45,9.5,8,0.0 +15879,73,15,14,0.0 +15879,25,14,1,0.0 +15879,49,20,21,0.0 +15879,37,26,25,0.0 +15879,23,9,42,0.0 +15879,4,22,5,0.0 +15879,34,14,22,0.0 +15879,17,39,49,0.0 +15879,71,21.5,28,0.0 +15879,48,12.75,43,0.0 +15879,40,18.4,26,0.0 +15879,66,17,35,0.0 +15879,65,21.05,36,0.0 +15879,10,31,21,0.0 +15879,9,97,35,0.0 +15879,64,33.25,48,0.0 +15879,35,18,27,0.0 +15879,39,18,17,0.0 +15879,62,49.3,25,0.0 +15879,68,12.5,20,0.0 +15879,1,18,3,0.0 +15879,41,9.65,41,0.0 +15879,21,10,22,0.0 +15879,15,15.5,9,0.0 +15879,57,19.5,11,0.0 +15879,14,23.25,2,0.0 +15879,43,46,6,0.0 +15879,7,30,6,0.0 +15879,58,13.25,32,0.0 +15879,77,13,19,0.0 +15879,32,32,24,0.0 +15879,70,15,8,0.0 +15879,55,24,22,0.0 +15879,50,16.25,39,0.0 +15879,11,21,47,0.0 +15879,12,38,34,0.0 +15879,63,43.9,31,0.0 +15879,22,21,3,0.0 +15879,19,9.2,15,0.0 +15879,69,36,33,0.0 +15879,20,81,7,0.0 +15879,42,14,15,0.0 +15879,59,55,44,0.0 +15879,72,34.8,13,0.0 +15879,18,62.5,3,0.0 +15879,61,28.5,40,0.0 +15879,26,31.23,3,0.0 +15879,76,18,36,0.0 +15879,53,32.8,49,0.0 +15879,2,19,15,0.0 +15880,63,43.9,11,0.0 +15880,67,14,6,0.0 +15880,72,34.8,27,0.0 +15880,19,9.2,3,0.0 +15880,11,21,11,0.0 +15880,5,21.35,41,0.0 +15880,27,43.9,8,0.0 +15880,71,21.5,32,0.0 +15880,33,2.5,10,0.0 +15880,69,36,32,0.0 +15880,41,9.65,21,0.0 +15880,66,17,31,0.0 +15880,14,23.25,20,0.0 +15880,32,32,13,0.0 +15880,75,7.75,3,0.0 +15880,7,30,1,0.0 +15880,65,21.05,31,0.0 +15880,38,263.5,40,0.0 +15880,17,39,9,0.0 +15880,64,33.25,42,0.0 +15880,23,9,19,0.0 +15880,18,62.5,19,0.0 +15880,35,18,35,0.0 +15880,9,97,28,0.0 +15880,74,10,36,0.0 +15880,55,24,2,0.0 +15880,10,31,29,0.0 +15880,50,16.25,39,0.0 +15881,58,13.25,3,0.0 +15881,10,31,7,0.0 +15881,49,20,19,0.0 +15881,42,14,42,0.0 +15881,24,4.5,22,0.0 +15881,35,18,11,0.0 +15881,50,16.25,1,0.0 +15881,17,39,36,0.0 +15881,6,25,48,0.0 +15881,70,15,9,0.0 +15881,73,15,28,0.0 +15881,76,18,21,0.0 +15881,59,55,17,0.0 +15881,25,14,20,0.0 +15881,28,45.6,20,0.0 +15881,54,7.45,28,0.0 +15881,30,25.89,22,0.0 +15881,39,18,25,0.0 +15881,60,34,31,0.0 +15881,47,9.5,28,0.0 +15881,55,24,4,0.0 +15882,5,21.35,17,0.0 +15882,42,14,44,0.0 +15882,70,15,31,0.0 +15882,7,30,27,0.0 +15882,12,38,25,0.0 +15882,36,19,17,0.0 +15882,20,81,4,0.0 +15882,45,9.5,3,0.0 +15882,22,21,28,0.0 +15882,43,46,45,0.0 +15882,9,97,22,0.0 +15882,16,17.45,11,0.0 +15882,39,18,32,0.0 +15882,13,6,42,0.0 +15882,68,12.5,24,0.0 +15882,61,28.5,1,0.0 +15882,32,32,7,0.0 +15882,51,53,15,0.0 +15882,29,123.79,6,0.0 +15882,77,13,40,0.0 +15882,19,9.2,7,0.0 +15882,3,10,42,0.0 +15882,69,36,7,0.0 +15882,8,40,8,0.0 +15882,60,34,5,0.0 +15882,35,18,42,0.0 +15882,31,12.5,47,0.0 +15882,23,9,5,0.0 +15882,33,2.5,27,0.0 +15882,27,43.9,29,0.0 +15882,4,22,18,0.0 +15882,18,62.5,27,0.0 +15882,73,15,48,0.0 +15882,67,14,2,0.0 +15882,55,24,17,0.0 +15882,47,9.5,11,0.0 +15882,34,14,37,0.0 +15882,63,43.9,18,0.0 +15882,14,23.25,49,0.0 +15882,76,18,12,0.0 +15882,38,263.5,42,0.0 +15882,25,14,8,0.0 +15882,48,12.75,42,0.0 +15882,15,15.5,34,0.0 +15882,46,12,45,0.0 +15882,65,21.05,17,0.0 +15882,11,21,13,0.0 +15882,49,20,47,0.0 +15882,57,19.5,47,0.0 +15882,50,16.25,36,0.0 +15882,53,32.8,50,0.0 +15882,6,25,21,0.0 +15882,24,4.5,37,0.0 +15882,58,13.25,43,0.0 +15882,66,17,48,0.0 +15882,59,55,16,0.0 +15882,17,39,1,0.0 +15882,56,38,36,0.0 +15882,71,21.5,14,0.0 +15882,40,18.4,1,0.0 +15882,1,18,37,0.0 +15882,54,7.45,12,0.0 +15882,28,45.6,4,0.0 +15882,44,19.45,47,0.0 +15882,75,7.75,40,0.0 +15882,2,19,6,0.0 +15882,26,31.23,20,0.0 +15882,62,49.3,26,0.0 +15882,72,34.8,27,0.0 +15882,37,26,22,0.0 +15882,41,9.65,17,0.0 +15882,10,31,10,0.0 +15882,21,10,44,0.0 +15883,33,2.5,13,0.0 +15883,65,21.05,30,0.0 +15883,8,40,39,0.0 +15883,71,21.5,15,0.0 +15883,6,25,34,0.0 +15883,34,14,40,0.0 +15883,40,18.4,44,0.0 +15883,74,10,1,0.0 +15883,63,43.9,24,0.0 +15883,43,46,17,0.0 +15883,69,36,11,0.0 +15883,60,34,38,0.0 +15883,16,17.45,27,0.0 +15883,31,12.5,29,0.0 +15883,2,19,36,0.0 +15883,22,21,34,0.0 +15883,55,24,6,0.0 +15883,58,13.25,21,0.0 +15883,29,123.79,38,0.0 +15883,20,81,27,0.0 +15883,45,9.5,33,0.0 +15883,59,55,22,0.0 +15883,46,12,28,0.0 +15883,47,9.5,43,0.0 +15883,51,53,15,0.0 +15883,42,14,37,0.0 +15883,7,30,26,0.0 +15883,1,18,37,0.0 +15883,30,25.89,11,0.0 +15883,48,12.75,40,0.0 +15883,17,39,16,0.0 +15883,11,21,37,0.0 +15883,26,31.23,48,0.0 +15883,54,7.45,39,0.0 +15883,57,19.5,37,0.0 +15883,62,49.3,6,0.0 +15883,39,18,11,0.0 +15883,10,31,21,0.0 +15883,35,18,17,0.0 +15883,15,15.5,12,0.0 +15883,41,9.65,34,0.0 +15884,77,13,20,0.0 +15884,11,21,22,0.0 +15884,49,20,31,0.0 +15884,46,12,2,0.0 +15884,69,36,39,0.0 +15884,62,49.3,43,0.0 +15884,34,14,27,0.0 +15884,39,18,18,0.0 +15884,71,21.5,38,0.0 +15884,3,10,47,0.0 +15884,43,46,22,0.0 +15884,16,17.45,48,0.0 +15884,27,43.9,37,0.0 +15884,9,97,36,0.0 +15884,58,13.25,4,0.0 +15884,15,15.5,38,0.0 +15884,60,34,15,0.0 +15884,67,14,19,0.0 +15884,36,19,2,0.0 +15884,40,18.4,28,0.0 +15884,68,12.5,9,0.0 +15884,38,263.5,38,0.0 +15884,37,26,18,0.0 +15884,24,4.5,45,0.0 +15884,74,10,12,0.0 +15884,14,23.25,47,0.0 +15884,8,40,5,0.0 +15884,25,14,7,0.0 +15884,12,38,36,0.0 +15884,1,18,28,0.0 +15884,28,45.6,17,0.0 +15884,47,9.5,7,0.0 +15884,13,6,3,0.0 +15884,51,53,5,0.0 +15884,64,33.25,50,0.0 +15884,66,17,30,0.0 +15884,54,7.45,49,0.0 +15884,7,30,26,0.0 +15884,22,21,2,0.0 +15884,17,39,8,0.0 +15885,51,53,32,0.0 +15885,57,19.5,17,0.0 +15885,28,45.6,45,0.0 +15885,52,7,15,0.0 +15885,49,20,6,0.0 +15885,76,18,48,0.0 +15885,74,10,30,0.0 +15885,15,15.5,30,0.0 +15885,18,62.5,14,0.0 +15885,46,12,40,0.0 +15885,40,18.4,30,0.0 +15885,39,18,20,0.0 +15885,54,7.45,20,0.0 +15885,35,18,19,0.0 +15885,20,81,28,0.0 +15885,14,23.25,39,0.0 +15885,69,36,50,0.0 +15885,42,14,22,0.0 +15885,70,15,37,0.0 +15885,3,10,19,0.0 +15885,61,28.5,32,0.0 +15885,10,31,43,0.0 +15885,43,46,23,0.0 +15885,72,34.8,13,0.0 +15885,13,6,20,0.0 +15885,50,16.25,46,0.0 +15885,63,43.9,24,0.0 +15885,45,9.5,37,0.0 +15885,44,19.45,48,0.0 +15885,65,21.05,27,0.0 +15886,70,15,3,0.0 +15886,25,14,48,0.0 +15886,54,7.45,41,0.0 +15886,32,32,39,0.0 +15886,67,14,12,0.0 +15886,62,49.3,29,0.0 +15886,9,97,6,0.0 +15886,36,19,39,0.0 +15886,55,24,39,0.0 +15886,59,55,15,0.0 +15886,31,12.5,27,0.0 +15886,7,30,24,0.0 +15886,10,31,3,0.0 +15886,12,38,44,0.0 +15886,3,10,2,0.0 +15886,43,46,31,0.0 +15886,72,34.8,42,0.0 +15886,34,14,46,0.0 +15886,39,18,31,0.0 +15886,4,22,37,0.0 +15886,50,16.25,48,0.0 +15886,57,19.5,22,0.0 +15886,49,20,8,0.0 +15887,15,15.5,2,0.0 +15887,16,17.45,23,0.0 +15887,76,18,46,0.0 +15887,46,12,9,0.0 +15887,72,34.8,2,0.0 +15887,18,62.5,41,0.0 +15887,66,17,9,0.0 +15887,29,123.79,18,0.0 +15887,2,19,6,0.0 +15887,45,9.5,8,0.0 +15887,8,40,13,0.0 +15887,20,81,22,0.0 +15887,24,4.5,22,0.0 +15887,60,34,39,0.0 +15887,71,21.5,17,0.0 +15887,50,16.25,4,0.0 +15887,33,2.5,41,0.0 +15887,63,43.9,34,0.0 +15887,30,25.89,43,0.0 +15887,42,14,31,0.0 +15887,23,9,3,0.0 +15887,37,26,15,0.0 +15887,54,7.45,20,0.0 +15887,32,32,24,0.0 +15887,53,32.8,47,0.0 +15887,12,38,14,0.0 +15887,65,21.05,48,0.0 +15887,17,39,43,0.0 +15887,49,20,7,0.0 +15887,43,46,16,0.0 +15887,39,18,15,0.0 +15887,51,53,34,0.0 +15888,16,17.45,18,0.0 +15888,18,62.5,28,0.0 +15888,64,33.25,12,0.0 +15888,42,14,45,0.0 +15888,2,19,3,0.0 +15888,46,12,34,0.0 +15888,48,12.75,49,0.0 +15888,63,43.9,12,0.0 +15888,62,49.3,37,0.0 +15888,6,25,4,0.0 +15888,17,39,24,0.0 +15888,47,9.5,3,0.0 +15888,14,23.25,26,0.0 +15888,51,53,16,0.0 +15888,40,18.4,25,0.0 +15888,5,21.35,2,0.0 +15888,50,16.25,22,0.0 +15888,77,13,48,0.0 +15888,23,9,6,0.0 +15888,19,9.2,37,0.0 +15888,54,7.45,47,0.0 +15888,25,14,20,0.0 +15888,75,7.75,28,0.0 +15888,36,19,6,0.0 +15888,73,15,25,0.0 +15888,44,19.45,19,0.0 +15888,21,10,28,0.0 +15888,66,17,22,0.0 +15888,49,20,37,0.0 +15888,60,34,42,0.0 +15889,12,38,21,0.0 +15889,46,12,50,0.0 +15889,38,263.5,45,0.0 +15889,44,19.45,20,0.0 +15889,49,20,20,0.0 +15889,70,15,50,0.0 +15889,19,9.2,19,0.0 +15889,54,7.45,6,0.0 +15889,61,28.5,48,0.0 +15889,9,97,4,0.0 +15889,8,40,33,0.0 +15889,21,10,23,0.0 +15889,18,62.5,21,0.0 +15889,41,9.65,3,0.0 +15889,39,18,29,0.0 +15889,32,32,5,0.0 +15889,1,18,11,0.0 +15889,43,46,7,0.0 +15889,15,15.5,36,0.0 +15889,53,32.8,48,0.0 +15889,45,9.5,40,0.0 +15889,56,38,18,0.0 +15889,66,17,30,0.0 +15889,28,45.6,44,0.0 +15889,33,2.5,10,0.0 +15889,4,22,27,0.0 +15889,16,17.45,49,0.0 +15889,2,19,46,0.0 +15889,36,19,50,0.0 +15889,69,36,26,0.0 +15889,40,18.4,29,0.0 +15889,17,39,25,0.0 +15889,26,31.23,26,0.0 +15889,27,43.9,32,0.0 +15889,52,7,1,0.0 +15889,30,25.89,15,0.0 +15889,25,14,17,0.0 +15889,63,43.9,4,0.0 +15889,72,34.8,3,0.0 +15889,59,55,17,0.0 +15889,31,12.5,24,0.0 +15889,5,21.35,23,0.0 +15889,68,12.5,5,0.0 +15889,60,34,4,0.0 +15889,11,21,6,0.0 +15889,64,33.25,15,0.0 +15889,6,25,22,0.0 +15889,13,6,15,0.0 +15889,67,14,3,0.0 +15889,20,81,26,0.0 +15889,76,18,25,0.0 +15889,50,16.25,20,0.0 +15889,57,19.5,10,0.0 +15889,3,10,34,0.0 +15889,22,21,12,0.0 +15889,62,49.3,29,0.0 +15889,74,10,19,0.0 +15889,55,24,43,0.0 +15889,58,13.25,24,0.0 +15889,77,13,36,0.0 +15889,65,21.05,12,0.0 +15889,34,14,11,0.0 +15889,75,7.75,33,0.0 +15890,34,14,2,0.0 +15890,5,21.35,20,0.0 +15890,6,25,36,0.0 +15890,48,12.75,14,0.0 +15890,40,18.4,4,0.0 +15890,36,19,6,0.0 +15890,50,16.25,38,0.0 +15890,56,38,43,0.0 +15890,45,9.5,15,0.0 +15890,49,20,50,0.0 +15890,17,39,24,0.0 +15890,60,34,31,0.0 +15890,16,17.45,41,0.0 +15890,71,21.5,40,0.0 +15890,20,81,1,0.0 +15890,2,19,16,0.0 +15890,9,97,37,0.0 +15890,23,9,7,0.0 +15890,39,18,42,0.0 +15890,41,9.65,40,0.0 +15890,47,9.5,10,0.0 +15890,14,23.25,3,0.0 +15890,7,30,12,0.0 +15890,10,31,33,0.0 +15890,59,55,34,0.0 +15890,1,18,38,0.0 +15890,77,13,21,0.0 +15890,52,7,1,0.0 +15890,61,28.5,2,0.0 +15890,4,22,41,0.0 +15890,51,53,42,0.0 +15890,42,14,41,0.0 +15890,43,46,49,0.0 +15890,46,12,8,0.0 +15890,70,15,35,0.0 +15890,62,49.3,40,0.0 +15890,12,38,16,0.0 +15890,26,31.23,14,0.0 +15890,72,34.8,4,0.0 +15890,21,10,10,0.0 +15890,31,12.5,39,0.0 +15890,67,14,17,0.0 +15890,38,263.5,46,0.0 +15890,69,36,7,0.0 +15890,57,19.5,14,0.0 +15890,68,12.5,43,0.0 +15890,76,18,17,0.0 +15890,32,32,5,0.0 +15890,28,45.6,20,0.0 +15890,15,15.5,49,0.0 +15890,53,32.8,13,0.0 +15890,33,2.5,50,0.0 +15890,74,10,41,0.0 +15890,27,43.9,4,0.0 +15890,44,19.45,23,0.0 +15890,37,26,29,0.0 +15890,58,13.25,41,0.0 +15890,75,7.75,30,0.0 +15890,3,10,16,0.0 +15890,24,4.5,3,0.0 +15890,30,25.89,8,0.0 +15890,55,24,3,0.0 +15890,18,62.5,33,0.0 +15890,54,7.45,41,0.0 +15890,13,6,45,0.0 +15890,25,14,36,0.0 +15891,53,32.8,31,0.0 +15891,32,32,20,0.0 +15891,36,19,42,0.0 +15891,12,38,7,0.0 +15891,9,97,20,0.0 +15891,35,18,31,0.0 +15891,65,21.05,49,0.0 +15891,19,9.2,21,0.0 +15891,70,15,12,0.0 +15892,20,81,34,0.0 +15892,59,55,41,0.0 +15892,40,18.4,48,0.0 +15892,38,263.5,3,0.0 +15892,23,9,19,0.0 +15892,11,21,16,0.0 +15892,47,9.5,40,0.0 +15892,25,14,9,0.0 +15892,5,21.35,36,0.0 +15892,51,53,43,0.0 +15892,72,34.8,15,0.0 +15892,77,13,28,0.0 +15892,35,18,3,0.0 +15892,54,7.45,10,0.0 +15892,41,9.65,9,0.0 +15892,8,40,41,0.0 +15892,24,4.5,17,0.0 +15892,42,14,16,0.0 +15892,4,22,17,0.0 +15892,69,36,49,0.0 +15892,73,15,30,0.0 +15892,43,46,22,0.0 +15892,18,62.5,15,0.0 +15892,70,15,27,0.0 +15892,56,38,19,0.0 +15892,27,43.9,6,0.0 +15892,74,10,4,0.0 +15892,34,14,26,0.0 +15892,50,16.25,42,0.0 +15892,15,15.5,47,0.0 +15892,9,97,14,0.0 +15892,48,12.75,44,0.0 +15892,64,33.25,3,0.0 +15892,63,43.9,7,0.0 +15892,7,30,16,0.0 +15892,76,18,38,0.0 +15892,62,49.3,44,0.0 +15892,30,25.89,24,0.0 +15893,37,26,11,0.0 +15893,34,14,34,0.0 +15893,38,263.5,38,0.0 +15893,26,31.23,3,0.0 +15893,77,13,30,0.0 +15893,62,49.3,30,0.0 +15893,65,21.05,1,0.0 +15893,32,32,12,0.0 +15893,6,25,1,0.0 +15894,11,21,21,0.0 +15894,39,18,20,0.0 +15894,24,4.5,25,0.0 +15894,5,21.35,4,0.0 +15894,74,10,30,0.0 +15894,2,19,20,0.0 +15894,34,14,45,0.0 +15894,17,39,46,0.0 +15894,7,30,15,0.0 +15894,6,25,24,0.0 +15894,33,2.5,41,0.0 +15894,21,10,44,0.0 +15894,15,15.5,48,0.0 +15894,75,7.75,30,0.0 +15894,50,16.25,2,0.0 +15894,35,18,22,0.0 +15894,12,38,30,0.0 +15894,45,9.5,26,0.0 +15894,31,12.5,8,0.0 +15895,47,9.5,26,0.0 +15896,49,20,18,0.0 +15896,5,21.35,48,0.0 +15897,60,34,47,0.0 +15898,29,123.79,45,0.0 +15898,43,46,36,0.0 +15898,64,33.25,4,0.0 +15898,67,14,9,0.0 +15898,74,10,34,0.0 +15898,20,81,13,0.0 +15898,57,19.5,45,0.0 +15898,59,55,11,0.0 +15898,4,22,28,0.0 +15898,37,26,42,0.0 +15898,27,43.9,8,0.0 +15898,77,13,10,0.0 +15898,14,23.25,29,0.0 +15898,68,12.5,35,0.0 +15898,25,14,26,0.0 +15898,69,36,45,0.0 +15898,30,25.89,6,0.0 +15898,36,19,11,0.0 +15898,22,21,3,0.0 +15898,16,17.45,15,0.0 +15898,63,43.9,48,0.0 +15898,35,18,38,0.0 +15898,73,15,15,0.0 +15898,19,9.2,45,0.0 +15898,40,18.4,44,0.0 +15898,15,15.5,7,0.0 +15898,53,32.8,42,0.0 +15898,50,16.25,10,0.0 +15898,8,40,10,0.0 +15898,47,9.5,36,0.0 +15898,48,12.75,3,0.0 +15898,66,17,11,0.0 +15898,13,6,30,0.0 +15898,52,7,15,0.0 +15898,61,28.5,28,0.0 +15898,58,13.25,38,0.0 +15898,6,25,25,0.0 +15898,46,12,5,0.0 +15898,10,31,18,0.0 +15898,65,21.05,38,0.0 +15898,62,49.3,41,0.0 +15898,75,7.75,12,0.0 +15898,49,20,30,0.0 +15898,24,4.5,48,0.0 +15898,7,30,19,0.0 +15898,18,62.5,13,0.0 +15898,2,19,50,0.0 +15898,44,19.45,30,0.0 +15898,17,39,11,0.0 +15898,39,18,14,0.0 +15898,33,2.5,26,0.0 +15898,32,32,11,0.0 +15898,31,12.5,19,0.0 +15898,26,31.23,8,0.0 +15898,3,10,49,0.0 +15898,71,21.5,8,0.0 +15898,72,34.8,31,0.0 +15898,34,14,14,0.0 +15898,70,15,24,0.0 +15898,56,38,37,0.0 +15898,42,14,34,0.0 +15898,21,10,12,0.0 +15899,8,40,41,0.0 +15899,24,4.5,37,0.0 +15899,34,14,40,0.0 +15899,75,7.75,27,0.0 +15899,64,33.25,7,0.0 +15899,16,17.45,22,0.0 +15899,36,19,43,0.0 +15899,10,31,38,0.0 +15899,37,26,12,0.0 +15899,72,34.8,47,0.0 +15899,65,21.05,37,0.0 +15899,17,39,14,0.0 +15899,28,45.6,36,0.0 +15899,29,123.79,6,0.0 +15899,21,10,30,0.0 +15899,76,18,2,0.0 +15900,18,62.5,14,0.0 +15900,50,16.25,12,0.0 +15900,4,22,9,0.0 +15900,75,7.75,13,0.0 +15900,70,15,21,0.0 +15900,3,10,2,0.0 +15900,53,32.8,31,0.0 +15900,32,32,41,0.0 +15900,1,18,9,0.0 +15900,52,7,37,0.0 +15900,6,25,26,0.0 +15900,57,19.5,16,0.0 +15900,42,14,17,0.0 +15900,64,33.25,43,0.0 +15900,5,21.35,41,0.0 +15900,46,12,34,0.0 +15900,20,81,31,0.0 +15900,39,18,30,0.0 +15900,31,12.5,29,0.0 +15900,51,53,36,0.0 +15900,10,31,48,0.0 +15900,36,19,7,0.0 +15900,67,14,39,0.0 +15900,77,13,29,0.0 +15900,35,18,34,0.0 +15900,73,15,26,0.0 +15900,8,40,27,0.0 +15900,34,14,47,0.0 +15900,72,34.8,15,0.0 +15900,69,36,23,0.0 +15900,58,13.25,49,0.0 +15900,56,38,15,0.0 +15900,41,9.65,10,0.0 +15900,66,17,34,0.0 +15900,27,43.9,22,0.0 +15900,44,19.45,37,0.0 +15900,7,30,46,0.0 +15900,21,10,37,0.0 +15900,76,18,36,0.0 +15900,30,25.89,14,0.0 +15900,28,45.6,30,0.0 +15900,13,6,28,0.0 +15900,22,21,18,0.0 +15900,37,26,9,0.0 +15900,71,21.5,45,0.0 +15900,47,9.5,23,0.0 +15900,48,12.75,29,0.0 +15900,29,123.79,22,0.0 +15900,40,18.4,25,0.0 +15900,9,97,38,0.0 +15900,45,9.5,11,0.0 +15900,63,43.9,10,0.0 +15900,12,38,18,0.0 +15900,33,2.5,31,0.0 +15900,38,263.5,21,0.0 +15900,54,7.45,9,0.0 +15900,26,31.23,44,0.0 +15900,16,17.45,1,0.0 +15900,23,9,19,0.0 +15900,25,14,36,0.0 +15900,14,23.25,21,0.0 +15900,2,19,32,0.0 +15900,61,28.5,13,0.0 +15900,59,55,23,0.0 +15900,68,12.5,9,0.0 +15900,24,4.5,29,0.0 +15901,1,18,2,0.0 +15901,25,14,36,0.0 +15901,44,19.45,48,0.0 +15901,19,9.2,41,0.0 +15901,47,9.5,39,0.0 +15901,41,9.65,35,0.0 +15901,52,7,3,0.0 +15901,58,13.25,28,0.0 +15901,63,43.9,10,0.0 +15901,68,12.5,38,0.0 +15901,3,10,45,0.0 +15901,35,18,50,0.0 +15901,76,18,12,0.0 +15901,26,31.23,37,0.0 +15901,28,45.6,40,0.0 +15901,10,31,22,0.0 +15901,36,19,9,0.0 +15901,69,36,8,0.0 +15901,22,21,31,0.0 +15901,17,39,12,0.0 +15901,34,14,37,0.0 +15901,46,12,28,0.0 +15901,27,43.9,27,0.0 +15901,2,19,39,0.0 +15901,4,22,4,0.0 +15901,20,81,1,0.0 +15901,21,10,10,0.0 +15901,66,17,44,0.0 +15901,56,38,6,0.0 +15901,43,46,48,0.0 +15901,31,12.5,37,0.0 +15901,73,15,28,0.0 +15901,49,20,7,0.0 +15901,15,15.5,6,0.0 +15901,18,62.5,21,0.0 +15901,54,7.45,6,0.0 +15901,50,16.25,40,0.0 +15901,64,33.25,50,0.0 +15901,45,9.5,48,0.0 +15901,72,34.8,46,0.0 +15901,74,10,39,0.0 +15901,37,26,3,0.0 +15901,7,30,44,0.0 +15901,57,19.5,9,0.0 +15901,29,123.79,14,0.0 +15901,24,4.5,34,0.0 +15901,5,21.35,43,0.0 +15901,48,12.75,31,0.0 +15901,75,7.75,35,0.0 +15901,40,18.4,34,0.0 +15901,6,25,18,0.0 +15901,77,13,39,0.0 +15901,67,14,43,0.0 +15901,32,32,33,0.0 +15901,61,28.5,48,0.0 +15901,9,97,11,0.0 +15901,38,263.5,20,0.0 +15901,13,6,24,0.0 +15901,42,14,1,0.0 +15901,14,23.25,42,0.0 +15901,70,15,35,0.0 +15901,39,18,43,0.0 +15901,33,2.5,20,0.0 +15901,51,53,22,0.0 +15901,62,49.3,32,0.0 +15901,30,25.89,28,0.0 +15901,71,21.5,17,0.0 +15902,62,49.3,43,0.0 +15902,28,45.6,47,0.0 +15902,7,30,49,0.0 +15902,34,14,9,0.0 +15902,26,31.23,13,0.0 +15902,71,21.5,27,0.0 +15902,37,26,46,0.0 +15902,6,25,9,0.0 +15902,66,17,50,0.0 +15902,50,16.25,10,0.0 +15903,70,15,24,0.0 +15903,67,14,43,0.0 +15903,76,18,13,0.0 +15903,11,21,1,0.0 +15903,58,13.25,34,0.0 +15903,36,19,18,0.0 +15903,4,22,20,0.0 +15903,72,34.8,13,0.0 +15903,6,25,4,0.0 +15903,47,9.5,11,0.0 +15903,13,6,3,0.0 +15904,1,18,14,0.0 +15904,73,15,8,0.0 +15904,66,17,48,0.0 +15904,19,9.2,34,0.0 +15904,59,55,36,0.0 +15904,57,19.5,6,0.0 +15904,62,49.3,13,0.0 +15904,30,25.89,13,0.0 +15904,74,10,19,0.0 +15904,76,18,8,0.0 +15904,32,32,11,0.0 +15904,58,13.25,33,0.0 +15904,48,12.75,11,0.0 +15904,17,39,38,0.0 +15904,60,34,29,0.0 +15904,36,19,45,0.0 +15904,31,12.5,14,0.0 +15904,22,21,29,0.0 +15904,11,21,26,0.0 +15904,10,31,43,0.0 +15904,69,36,46,0.0 +15904,34,14,43,0.0 +15904,43,46,33,0.0 +15904,45,9.5,18,0.0 +15904,12,38,41,0.0 +15904,16,17.45,12,0.0 +15904,63,43.9,31,0.0 +15904,49,20,28,0.0 +15904,38,263.5,19,0.0 +15904,47,9.5,41,0.0 +15904,61,28.5,5,0.0 +15904,77,13,5,0.0 +15904,6,25,35,0.0 +15904,2,19,15,0.0 +15904,9,97,37,0.0 +15904,75,7.75,21,0.0 +15904,68,12.5,1,0.0 +15904,44,19.45,40,0.0 +15904,41,9.65,18,0.0 +15904,56,38,45,0.0 +15904,26,31.23,13,0.0 +15904,21,10,35,0.0 +15904,4,22,9,0.0 +15904,52,7,19,0.0 +15904,64,33.25,12,0.0 +15904,5,21.35,34,0.0 +15904,72,34.8,31,0.0 +15904,27,43.9,14,0.0 +15904,18,62.5,5,0.0 +15904,25,14,40,0.0 +15904,33,2.5,4,0.0 +15904,51,53,23,0.0 +15904,35,18,33,0.0 +15904,67,14,12,0.0 +15905,1,18,42,0.0 +15905,77,13,1,0.0 +15905,30,25.89,2,0.0 +15905,13,6,29,0.0 +15905,76,18,28,0.0 +15905,51,53,10,0.0 +15905,62,49.3,44,0.0 +15905,37,26,36,0.0 +15905,14,23.25,35,0.0 +15905,35,18,34,0.0 +15905,52,7,14,0.0 +15905,49,20,22,0.0 +15905,21,10,29,0.0 +15905,2,19,34,0.0 +15905,29,123.79,28,0.0 +15905,66,17,30,0.0 +15905,3,10,48,0.0 +15905,70,15,10,0.0 +15905,43,46,18,0.0 +15905,19,9.2,27,0.0 +15905,69,36,35,0.0 +15905,74,10,6,0.0 +15905,68,12.5,35,0.0 +15905,7,30,8,0.0 +15905,24,4.5,10,0.0 +15905,25,14,18,0.0 +15906,23,9,43,0.0 +15906,56,38,33,0.0 +15906,54,7.45,47,0.0 +15906,20,81,10,0.0 +15906,74,10,10,0.0 +15906,25,14,21,0.0 +15906,32,32,5,0.0 +15906,72,34.8,13,0.0 +15906,44,19.45,11,0.0 +15906,24,4.5,45,0.0 +15906,12,38,38,0.0 +15906,34,14,5,0.0 +15906,52,7,39,0.0 +15906,28,45.6,23,0.0 +15906,33,2.5,2,0.0 +15906,3,10,2,0.0 +15906,51,53,19,0.0 +15906,70,15,46,0.0 +15906,59,55,35,0.0 +15906,46,12,43,0.0 +15906,13,6,8,0.0 +15906,15,15.5,16,0.0 +15906,76,18,3,0.0 +15906,45,9.5,46,0.0 +15906,43,46,17,0.0 +15906,19,9.2,24,0.0 +15906,60,34,13,0.0 +15906,8,40,35,0.0 +15906,27,43.9,5,0.0 +15906,64,33.25,10,0.0 +15906,40,18.4,48,0.0 +15906,9,97,23,0.0 +15906,36,19,5,0.0 +15906,14,23.25,10,0.0 +15906,21,10,34,0.0 +15906,65,21.05,23,0.0 +15906,68,12.5,49,0.0 +15906,66,17,16,0.0 +15906,50,16.25,42,0.0 +15906,58,13.25,19,0.0 +15906,6,25,30,0.0 +15907,59,55,39,0.0 +15907,45,9.5,24,0.0 +15907,7,30,11,0.0 +15907,19,9.2,39,0.0 +15907,67,14,19,0.0 +15907,76,18,36,0.0 +15907,22,21,22,0.0 +15907,14,23.25,11,0.0 +15907,13,6,2,0.0 +15907,46,12,13,0.0 +15907,42,14,10,0.0 +15907,61,28.5,18,0.0 +15907,12,38,18,0.0 +15907,37,26,49,0.0 +15907,52,7,21,0.0 +15907,9,97,37,0.0 +15907,11,21,39,0.0 +15907,57,19.5,9,0.0 +15907,48,12.75,28,0.0 +15907,58,13.25,2,0.0 +15907,3,10,42,0.0 +15907,6,25,50,0.0 +15907,43,46,14,0.0 +15907,44,19.45,25,0.0 +15907,25,14,11,0.0 +15907,72,34.8,7,0.0 +15907,23,9,42,0.0 +15907,17,39,10,0.0 +15907,29,123.79,10,0.0 +15907,31,12.5,4,0.0 +15907,54,7.45,38,0.0 +15907,27,43.9,36,0.0 +15907,65,21.05,34,0.0 +15907,77,13,16,0.0 +15907,73,15,24,0.0 +15907,4,22,28,0.0 +15907,55,24,9,0.0 +15907,70,15,36,0.0 +15907,36,19,5,0.0 +15907,8,40,22,0.0 +15907,16,17.45,26,0.0 +15907,62,49.3,29,0.0 +15907,10,31,49,0.0 +15907,5,21.35,28,0.0 +15907,66,17,6,0.0 +15907,49,20,43,0.0 +15907,38,263.5,37,0.0 +15907,33,2.5,28,0.0 +15907,18,62.5,23,0.0 +15907,1,18,14,0.0 +15907,69,36,21,0.0 +15907,34,14,35,0.0 +15907,24,4.5,19,0.0 +15907,60,34,34,0.0 +15907,21,10,45,0.0 +15907,47,9.5,35,0.0 +15907,26,31.23,26,0.0 +15907,51,53,42,0.0 +15907,20,81,50,0.0 +15907,35,18,23,0.0 +15907,63,43.9,12,0.0 +15907,40,18.4,24,0.0 +15907,32,32,22,0.0 +15907,15,15.5,29,0.0 +15908,21,10,20,0.0 +15908,31,12.5,42,0.0 +15908,50,16.25,20,0.0 +15908,3,10,39,0.0 +15908,58,13.25,1,0.0 +15908,76,18,2,0.0 +15908,22,21,14,0.0 +15908,30,25.89,28,0.0 +15908,13,6,43,0.0 +15908,5,21.35,21,0.0 +15908,37,26,49,0.0 +15908,77,13,17,0.0 +15908,29,123.79,32,0.0 +15908,26,31.23,7,0.0 +15908,1,18,46,0.0 +15908,42,14,37,0.0 +15908,2,19,23,0.0 +15908,63,43.9,50,0.0 +15908,19,9.2,39,0.0 +15908,54,7.45,15,0.0 +15908,34,14,18,0.0 +15908,35,18,28,0.0 +15908,55,24,11,0.0 +15908,41,9.65,36,0.0 +15908,52,7,44,0.0 +15908,47,9.5,6,0.0 +15908,15,15.5,44,0.0 +15908,32,32,35,0.0 +15908,67,14,38,0.0 +15908,61,28.5,21,0.0 +15908,45,9.5,2,0.0 +15908,39,18,35,0.0 +15908,60,34,42,0.0 +15908,6,25,45,0.0 +15908,62,49.3,50,0.0 +15908,9,97,32,0.0 +15908,24,4.5,30,0.0 +15908,4,22,50,0.0 +15908,74,10,3,0.0 +15908,8,40,49,0.0 +15908,11,21,41,0.0 +15908,69,36,7,0.0 +15908,27,43.9,43,0.0 +15908,51,53,20,0.0 +15908,28,45.6,11,0.0 +15908,46,12,22,0.0 +15908,44,19.45,9,0.0 +15908,40,18.4,27,0.0 +15908,48,12.75,30,0.0 +15908,20,81,45,0.0 +15908,56,38,49,0.0 +15908,18,62.5,36,0.0 +15908,53,32.8,34,0.0 +15908,23,9,3,0.0 +15909,56,38,19,0.0 +15909,72,34.8,11,0.0 +15909,54,7.45,41,0.0 +15909,32,32,1,0.0 +15909,68,12.5,10,0.0 +15909,59,55,21,0.0 +15909,34,14,12,0.0 +15909,58,13.25,24,0.0 +15909,13,6,14,0.0 +15909,51,53,28,0.0 +15909,21,10,16,0.0 +15909,69,36,30,0.0 +15909,45,9.5,1,0.0 +15909,20,81,12,0.0 +15909,26,31.23,8,0.0 +15909,57,19.5,49,0.0 +15909,6,25,22,0.0 +15909,62,49.3,49,0.0 +15909,1,18,22,0.0 +15909,2,19,8,0.0 +15909,23,9,10,0.0 +15909,41,9.65,32,0.0 +15909,53,32.8,39,0.0 +15909,33,2.5,17,0.0 +15909,14,23.25,9,0.0 +15909,37,26,21,0.0 +15909,73,15,37,0.0 +15909,30,25.89,45,0.0 +15909,46,12,29,0.0 +15909,29,123.79,11,0.0 +15909,15,15.5,18,0.0 +15909,74,10,18,0.0 +15909,76,18,5,0.0 +15909,24,4.5,11,0.0 +15909,77,13,3,0.0 +15909,66,17,27,0.0 +15909,8,40,2,0.0 +15909,3,10,39,0.0 +15909,63,43.9,19,0.0 +15909,18,62.5,21,0.0 +15909,25,14,46,0.0 +15909,11,21,33,0.0 +15909,31,12.5,16,0.0 +15909,35,18,3,0.0 +15909,19,9.2,35,0.0 +15909,5,21.35,10,0.0 +15909,71,21.5,48,0.0 +15909,9,97,7,0.0 +15909,47,9.5,11,0.0 +15909,4,22,34,0.0 +15909,49,20,39,0.0 +15909,36,19,18,0.0 +15909,28,45.6,19,0.0 +15909,48,12.75,22,0.0 +15909,43,46,25,0.0 +15909,27,43.9,33,0.0 +15909,75,7.75,2,0.0 +15909,42,14,7,0.0 +15909,10,31,43,0.0 +15909,60,34,34,0.0 +15909,38,263.5,46,0.0 +15909,44,19.45,5,0.0 +15909,17,39,2,0.0 +15909,12,38,43,0.0 +15909,16,17.45,7,0.0 +15910,38,263.5,34,0.0 +15910,8,40,25,0.0 +15910,25,14,12,0.0 +15910,75,7.75,14,0.0 +15910,73,15,35,0.0 +15910,62,49.3,16,0.0 +15910,1,18,2,0.0 +15910,50,16.25,12,0.0 +15910,51,53,50,0.0 +15910,37,26,14,0.0 +15910,17,39,46,0.0 +15910,14,23.25,34,0.0 +15910,4,22,12,0.0 +15910,39,18,40,0.0 +15910,67,14,1,0.0 +15910,56,38,22,0.0 +15910,36,19,24,0.0 +15910,66,17,19,0.0 +15910,3,10,26,0.0 +15910,22,21,1,0.0 +15910,27,43.9,43,0.0 +15910,48,12.75,11,0.0 +15910,41,9.65,37,0.0 +15910,43,46,35,0.0 +15910,16,17.45,3,0.0 +15910,76,18,21,0.0 +15910,70,15,38,0.0 +15910,10,31,16,0.0 +15910,20,81,2,0.0 +15910,23,9,31,0.0 +15910,42,14,5,0.0 +15910,71,21.5,6,0.0 +15910,46,12,34,0.0 +15910,31,12.5,9,0.0 +15910,35,18,39,0.0 +15910,57,19.5,18,0.0 +15910,44,19.45,25,0.0 +15910,60,34,22,0.0 +15910,58,13.25,48,0.0 +15910,32,32,1,0.0 +15910,77,13,20,0.0 +15910,15,15.5,7,0.0 +15910,64,33.25,29,0.0 +15910,19,9.2,10,0.0 +15910,47,9.5,49,0.0 +15910,59,55,29,0.0 +15910,26,31.23,19,0.0 +15910,11,21,50,0.0 +15910,53,32.8,16,0.0 +15911,56,38,33,0.0 +15911,68,12.5,5,0.0 +15911,33,2.5,3,0.0 +15911,25,14,8,0.0 +15911,77,13,17,0.0 +15911,26,31.23,20,0.0 +15911,10,31,42,0.0 +15911,69,36,7,0.0 +15911,58,13.25,38,0.0 +15911,34,14,5,0.0 +15911,46,12,8,0.0 +15911,67,14,37,0.0 +15911,65,21.05,10,0.0 +15911,8,40,10,0.0 +15911,9,97,17,0.0 +15911,29,123.79,38,0.0 +15911,37,26,5,0.0 +15912,23,9,11,0.0 +15912,30,25.89,3,0.0 +15912,52,7,16,0.0 +15912,68,12.5,47,0.0 +15912,2,19,50,0.0 +15912,27,43.9,16,0.0 +15912,76,18,24,0.0 +15912,44,19.45,44,0.0 +15912,67,14,8,0.0 +15912,46,12,26,0.0 +15912,57,19.5,42,0.0 +15912,26,31.23,31,0.0 +15912,43,46,30,0.0 +15912,73,15,31,0.0 +15912,65,21.05,26,0.0 +15912,18,62.5,18,0.0 +15912,6,25,6,0.0 +15912,53,32.8,35,0.0 +15912,29,123.79,45,0.0 +15912,75,7.75,26,0.0 +15912,54,7.45,22,0.0 +15912,66,17,35,0.0 +15912,74,10,5,0.0 +15912,15,15.5,47,0.0 +15912,47,9.5,23,0.0 +15912,9,97,41,0.0 +15912,55,24,1,0.0 +15912,11,21,35,0.0 +15912,5,21.35,12,0.0 +15912,72,34.8,19,0.0 +15913,2,19,14,0.0 +15913,30,25.89,37,0.0 +15913,60,34,25,0.0 +15913,72,34.8,46,0.0 +15913,64,33.25,45,0.0 +15913,42,14,1,0.0 +15913,37,26,24,0.0 +15913,6,25,47,0.0 +15913,24,4.5,31,0.0 +15913,75,7.75,33,0.0 +15913,47,9.5,28,0.0 +15913,65,21.05,20,0.0 +15913,44,19.45,18,0.0 +15913,35,18,47,0.0 +15913,39,18,11,0.0 +15913,9,97,26,0.0 +15913,67,14,12,0.0 +15913,50,16.25,20,0.0 +15913,63,43.9,7,0.0 +15913,45,9.5,50,0.0 +15913,22,21,27,0.0 +15913,28,45.6,33,0.0 +15913,19,9.2,32,0.0 +15913,14,23.25,28,0.0 +15913,76,18,24,0.0 +15913,8,40,11,0.0 +15913,57,19.5,11,0.0 +15913,66,17,33,0.0 +15913,18,62.5,13,0.0 +15913,32,32,14,0.0 +15913,15,15.5,18,0.0 +15913,58,13.25,15,0.0 +15913,46,12,43,0.0 +15913,41,9.65,29,0.0 +15913,13,6,44,0.0 +15913,40,18.4,13,0.0 +15913,56,38,22,0.0 +15913,36,19,49,0.0 +15913,54,7.45,10,0.0 +15913,73,15,18,0.0 +15913,59,55,6,0.0 +15913,17,39,32,0.0 +15913,21,10,11,0.0 +15913,74,10,23,0.0 +15913,31,12.5,14,0.0 +15913,7,30,35,0.0 +15913,55,24,6,0.0 +15913,1,18,20,0.0 +15913,20,81,49,0.0 +15913,25,14,17,0.0 +15913,29,123.79,31,0.0 +15913,43,46,23,0.0 +15913,69,36,42,0.0 +15913,11,21,46,0.0 +15913,34,14,35,0.0 +15913,52,7,26,0.0 +15913,10,31,13,0.0 +15913,26,31.23,42,0.0 +15913,38,263.5,28,0.0 +15913,71,21.5,38,0.0 +15914,27,43.9,50,0.0 +15914,74,10,8,0.0 +15914,53,32.8,14,0.0 +15914,55,24,42,0.0 +15914,58,13.25,16,0.0 +15914,62,49.3,7,0.0 +15914,33,2.5,38,0.0 +15914,50,16.25,45,0.0 +15914,31,12.5,18,0.0 +15914,45,9.5,6,0.0 +15914,71,21.5,34,0.0 +15914,76,18,26,0.0 +15914,14,23.25,34,0.0 +15914,36,19,7,0.0 +15914,44,19.45,26,0.0 +15914,64,33.25,14,0.0 +15914,39,18,31,0.0 +15914,51,53,49,0.0 +15914,66,17,38,0.0 +15914,57,19.5,33,0.0 +15914,52,7,46,0.0 +15914,4,22,18,0.0 +15914,72,34.8,35,0.0 +15914,43,46,23,0.0 +15914,24,4.5,13,0.0 +15914,32,32,47,0.0 +15914,70,15,43,0.0 +15914,13,6,47,0.0 +15914,11,21,30,0.0 +15914,30,25.89,6,0.0 +15914,34,14,25,0.0 +15914,19,9.2,26,0.0 +15914,10,31,22,0.0 +15914,65,21.05,33,0.0 +15914,49,20,2,0.0 +15914,69,36,16,0.0 +15914,48,12.75,46,0.0 +15914,68,12.5,8,0.0 +15914,15,15.5,29,0.0 +15914,67,14,46,0.0 +15914,3,10,13,0.0 +15914,47,9.5,38,0.0 +15915,57,19.5,50,0.0 +15915,38,263.5,49,0.0 +15915,20,81,44,0.0 +15915,19,9.2,8,0.0 +15915,33,2.5,49,0.0 +15915,1,18,40,0.0 +15915,51,53,14,0.0 +15915,52,7,39,0.0 +15915,4,22,50,0.0 +15915,66,17,46,0.0 +15915,54,7.45,32,0.0 +15915,61,28.5,47,0.0 +15915,26,31.23,25,0.0 +15915,56,38,7,0.0 +15915,68,12.5,45,0.0 +15916,76,18,27,0.0 +15916,48,12.75,26,0.0 +15916,49,20,29,0.0 +15916,47,9.5,13,0.0 +15916,30,25.89,37,0.0 +15916,12,38,40,0.0 +15916,17,39,9,0.0 +15916,22,21,7,0.0 +15916,63,43.9,35,0.0 +15916,67,14,8,0.0 +15916,40,18.4,42,0.0 +15916,46,12,29,0.0 +15916,36,19,48,0.0 +15917,69,36,20,0.0 +15917,7,30,17,0.0 +15917,60,34,43,0.0 +15917,45,9.5,46,0.0 +15917,36,19,29,0.0 +15917,14,23.25,44,0.0 +15917,68,12.5,14,0.0 +15917,49,20,16,0.0 +15917,66,17,5,0.0 +15917,74,10,42,0.0 +15917,75,7.75,26,0.0 +15917,37,26,48,0.0 +15917,65,21.05,30,0.0 +15917,39,18,35,0.0 +15917,18,62.5,7,0.0 +15917,47,9.5,17,0.0 +15917,19,9.2,49,0.0 +15917,32,32,45,0.0 +15917,71,21.5,24,0.0 +15917,4,22,48,0.0 +15917,5,21.35,22,0.0 +15917,13,6,27,0.0 +15917,51,53,46,0.0 +15917,16,17.45,50,0.0 +15917,77,13,46,0.0 +15917,30,25.89,45,0.0 +15917,35,18,39,0.0 +15917,52,7,40,0.0 +15917,58,13.25,47,0.0 +15917,70,15,35,0.0 +15917,34,14,33,0.0 +15917,76,18,32,0.0 +15917,44,19.45,5,0.0 +15917,43,46,9,0.0 +15917,64,33.25,48,0.0 +15917,73,15,47,0.0 +15917,8,40,23,0.0 +15917,9,97,6,0.0 +15917,10,31,34,0.0 +15917,1,18,19,0.0 +15918,12,38,22,0.0 +15918,53,32.8,20,0.0 +15918,41,9.65,17,0.0 +15918,68,12.5,42,0.0 +15918,35,18,22,0.0 +15918,75,7.75,5,0.0 +15918,13,6,8,0.0 +15918,31,12.5,25,0.0 +15918,32,32,4,0.0 +15918,4,22,27,0.0 +15918,36,19,5,0.0 +15918,30,25.89,20,0.0 +15918,71,21.5,12,0.0 +15918,21,10,34,0.0 +15918,9,97,43,0.0 +15918,55,24,23,0.0 +15918,14,23.25,40,0.0 +15918,70,15,5,0.0 +15918,72,34.8,11,0.0 +15918,8,40,18,0.0 +15918,27,43.9,5,0.0 +15918,46,12,35,0.0 +15918,2,19,44,0.0 +15918,19,9.2,35,0.0 +15918,44,19.45,1,0.0 +15918,22,21,42,0.0 +15918,42,14,12,0.0 +15918,5,21.35,31,0.0 +15918,23,9,20,0.0 +15918,54,7.45,11,0.0 +15918,59,55,47,0.0 +15918,29,123.79,2,0.0 +15918,20,81,6,0.0 +15918,49,20,43,0.0 +15918,11,21,33,0.0 +15918,76,18,36,0.0 +15918,66,17,7,0.0 +15918,28,45.6,26,0.0 +15918,47,9.5,1,0.0 +15918,26,31.23,32,0.0 +15918,33,2.5,48,0.0 +15918,61,28.5,14,0.0 +15918,25,14,30,0.0 +15918,57,19.5,27,0.0 +15918,18,62.5,7,0.0 +15918,1,18,37,0.0 +15918,64,33.25,14,0.0 +15918,34,14,46,0.0 +15918,65,21.05,24,0.0 +15918,58,13.25,22,0.0 +15918,45,9.5,19,0.0 +15918,69,36,10,0.0 +15918,3,10,36,0.0 +15918,74,10,39,0.0 +15918,67,14,19,0.0 +15918,16,17.45,14,0.0 +15918,73,15,48,0.0 +15918,17,39,27,0.0 +15918,40,18.4,25,0.0 +15918,37,26,3,0.0 +15918,48,12.75,45,0.0 +15918,7,30,22,0.0 +15918,56,38,32,0.0 +15918,38,263.5,48,0.0 +15918,51,53,4,0.0 +15918,50,16.25,50,0.0 +15918,39,18,13,0.0 +15918,77,13,21,0.0 +15918,62,49.3,44,0.0 +15918,52,7,6,0.0 +15919,6,25,15,0.0 +15919,38,263.5,37,0.0 +15919,35,18,17,0.0 +15919,7,30,23,0.0 +15919,69,36,26,0.0 +15919,46,12,9,0.0 +15919,77,13,39,0.0 +15920,54,7.45,1,0.0 +15920,10,31,38,0.0 +15920,30,25.89,45,0.0 +15920,36,19,2,0.0 +15920,63,43.9,27,0.0 +15920,9,97,34,0.0 +15920,11,21,41,0.0 +15920,72,34.8,19,0.0 +15920,46,12,26,0.0 +15920,71,21.5,9,0.0 +15920,34,14,25,0.0 +15920,48,12.75,41,0.0 +15920,41,9.65,47,0.0 +15920,23,9,5,0.0 +15920,17,39,9,0.0 +15920,1,18,15,0.0 +15920,59,55,35,0.0 +15920,73,15,46,0.0 +15920,58,13.25,9,0.0 +15920,5,21.35,25,0.0 +15920,55,24,4,0.0 +15920,19,9.2,42,0.0 +15920,2,19,13,0.0 +15920,32,32,12,0.0 +15920,53,32.8,6,0.0 +15920,26,31.23,48,0.0 +15920,57,19.5,21,0.0 +15920,50,16.25,14,0.0 +15920,65,21.05,15,0.0 +15920,27,43.9,19,0.0 +15920,56,38,11,0.0 +15920,70,15,17,0.0 +15920,64,33.25,26,0.0 +15920,74,10,16,0.0 +15920,22,21,32,0.0 +15920,21,10,10,0.0 +15920,7,30,12,0.0 +15920,13,6,27,0.0 +15920,77,13,44,0.0 +15920,39,18,27,0.0 +15920,14,23.25,42,0.0 +15920,15,15.5,24,0.0 +15920,29,123.79,13,0.0 +15920,61,28.5,45,0.0 +15920,28,45.6,44,0.0 +15920,12,38,38,0.0 +15920,51,53,33,0.0 +15920,8,40,10,0.0 +15920,33,2.5,12,0.0 +15920,45,9.5,25,0.0 +15920,66,17,28,0.0 +15920,67,14,10,0.0 +15920,43,46,38,0.0 +15920,37,26,49,0.0 +15920,68,12.5,27,0.0 +15920,60,34,20,0.0 +15920,16,17.45,11,0.0 +15920,24,4.5,47,0.0 +15920,69,36,48,0.0 +15920,42,14,27,0.0 +15921,16,17.45,29,0.0 +15921,25,14,31,0.0 +15921,39,18,32,0.0 +15921,48,12.75,14,0.0 +15921,56,38,37,0.0 +15921,9,97,34,0.0 +15921,41,9.65,50,0.0 +15921,21,10,25,0.0 +15921,51,53,23,0.0 +15921,43,46,15,0.0 +15921,30,25.89,41,0.0 +15921,24,4.5,4,0.0 +15921,33,2.5,35,0.0 +15921,73,15,33,0.0 +15921,77,13,12,0.0 +15921,14,23.25,38,0.0 +15921,60,34,22,0.0 +15921,37,26,39,0.0 +15921,3,10,42,0.0 +15921,22,21,24,0.0 +15921,45,9.5,34,0.0 +15921,4,22,36,0.0 +15921,71,21.5,11,0.0 +15921,11,21,10,0.0 +15921,44,19.45,14,0.0 +15921,49,20,8,0.0 +15921,57,19.5,49,0.0 +15921,35,18,6,0.0 +15921,46,12,45,0.0 +15921,12,38,24,0.0 +15921,18,62.5,34,0.0 +15921,5,21.35,37,0.0 +15921,55,24,4,0.0 +15921,42,14,6,0.0 +15921,52,7,41,0.0 +15921,23,9,19,0.0 +15921,59,55,15,0.0 +15921,63,43.9,14,0.0 +15921,28,45.6,40,0.0 +15921,32,32,27,0.0 +15921,13,6,13,0.0 +15921,10,31,8,0.0 +15921,69,36,19,0.0 +15921,17,39,12,0.0 +15921,62,49.3,46,0.0 +15921,50,16.25,2,0.0 +15921,66,17,3,0.0 +15921,58,13.25,12,0.0 +15921,53,32.8,17,0.0 +15921,27,43.9,3,0.0 +15921,54,7.45,48,0.0 +15921,6,25,42,0.0 +15921,19,9.2,25,0.0 +15921,34,14,7,0.0 +15921,8,40,22,0.0 +15921,67,14,49,0.0 +15921,2,19,24,0.0 +15921,61,28.5,31,0.0 +15921,15,15.5,28,0.0 +15921,40,18.4,6,0.0 +15921,68,12.5,26,0.0 +15921,70,15,1,0.0 +15921,36,19,27,0.0 +15921,1,18,14,0.0 +15921,47,9.5,10,0.0 +15922,60,34,12,0.0 +15922,3,10,33,0.0 +15922,74,10,11,0.0 +15922,65,21.05,43,0.0 +15922,12,38,27,0.0 +15922,7,30,43,0.0 +15922,59,55,43,0.0 +15922,18,62.5,15,0.0 +15922,5,21.35,47,0.0 +15922,72,34.8,4,0.0 +15922,24,4.5,41,0.0 +15922,54,7.45,34,0.0 +15922,69,36,17,0.0 +15923,22,21,39,0.0 +15923,71,21.5,46,0.0 +15923,28,45.6,6,0.0 +15923,35,18,17,0.0 +15923,5,21.35,43,0.0 +15923,27,43.9,44,0.0 +15923,69,36,36,0.0 +15924,62,49.3,50,0.0 +15924,45,9.5,43,0.0 +15924,73,15,1,0.0 +15924,37,26,11,0.0 +15924,68,12.5,23,0.0 +15924,51,53,50,0.0 +15924,17,39,2,0.0 +15924,71,21.5,32,0.0 +15924,77,13,11,0.0 +15924,60,34,6,0.0 +15924,54,7.45,12,0.0 +15924,40,18.4,7,0.0 +15924,49,20,17,0.0 +15924,35,18,13,0.0 +15924,28,45.6,34,0.0 +15924,52,7,47,0.0 +15924,26,31.23,6,0.0 +15924,1,18,17,0.0 +15924,42,14,39,0.0 +15924,6,25,22,0.0 +15924,75,7.75,6,0.0 +15924,19,9.2,11,0.0 +15924,55,24,41,0.0 +15924,11,21,27,0.0 +15924,63,43.9,27,0.0 +15924,65,21.05,3,0.0 +15924,31,12.5,1,0.0 +15925,49,20,24,0.0 +15925,10,31,25,0.0 +15925,72,34.8,30,0.0 +15925,55,24,27,0.0 +15925,47,9.5,29,0.0 +15925,8,40,1,0.0 +15925,63,43.9,41,0.0 +15925,70,15,22,0.0 +15925,28,45.6,23,0.0 +15925,20,81,42,0.0 +15925,43,46,2,0.0 +15925,9,97,32,0.0 +15925,56,38,2,0.0 +15925,6,25,33,0.0 +15925,65,21.05,31,0.0 +15925,7,30,13,0.0 +15925,29,123.79,36,0.0 +15925,50,16.25,48,0.0 +15925,33,2.5,2,0.0 +15925,31,12.5,39,0.0 +15925,52,7,20,0.0 +15925,13,6,11,0.0 +15925,18,62.5,24,0.0 +15925,15,15.5,50,0.0 +15925,76,18,1,0.0 +15925,48,12.75,46,0.0 +15925,46,12,14,0.0 +15925,53,32.8,15,0.0 +15925,38,263.5,25,0.0 +15925,5,21.35,43,0.0 +15925,2,19,29,0.0 +15925,39,18,28,0.0 +15925,73,15,38,0.0 +15925,4,22,48,0.0 +15925,1,18,48,0.0 +15925,25,14,27,0.0 +15925,19,9.2,10,0.0 +15925,68,12.5,41,0.0 +15925,17,39,32,0.0 +15925,34,14,23,0.0 +15925,75,7.75,6,0.0 +15925,11,21,27,0.0 +15925,16,17.45,10,0.0 +15925,32,32,42,0.0 +15925,51,53,2,0.0 +15925,37,26,3,0.0 +15925,35,18,27,0.0 +15925,61,28.5,46,0.0 +15925,26,31.23,39,0.0 +15925,60,34,11,0.0 +15925,21,10,29,0.0 +15925,67,14,14,0.0 +15925,58,13.25,35,0.0 +15925,36,19,5,0.0 +15925,54,7.45,49,0.0 +15925,42,14,18,0.0 +15925,14,23.25,29,0.0 +15925,59,55,11,0.0 +15925,57,19.5,38,0.0 +15925,64,33.25,20,0.0 +15925,66,17,47,0.0 +15925,71,21.5,11,0.0 +15925,3,10,40,0.0 +15925,40,18.4,20,0.0 +15925,27,43.9,17,0.0 +15925,69,36,46,0.0 +15925,30,25.89,7,0.0 +15925,45,9.5,5,0.0 +15925,23,9,5,0.0 +15925,77,13,23,0.0 +15926,55,24,42,0.0 +15926,28,45.6,24,0.0 +15926,77,13,36,0.0 +15926,37,26,14,0.0 +15926,11,21,22,0.0 +15926,52,7,21,0.0 +15926,22,21,8,0.0 +15926,65,21.05,43,0.0 +15926,44,19.45,15,0.0 +15926,10,31,6,0.0 +15926,8,40,50,0.0 +15926,42,14,16,0.0 +15926,29,123.79,29,0.0 +15926,51,53,5,0.0 +15926,43,46,22,0.0 +15926,69,36,26,0.0 +15926,34,14,44,0.0 +15926,14,23.25,35,0.0 +15926,72,34.8,24,0.0 +15926,26,31.23,12,0.0 +15926,62,49.3,42,0.0 +15926,47,9.5,33,0.0 +15926,67,14,20,0.0 +15926,20,81,16,0.0 +15926,17,39,26,0.0 +15926,1,18,8,0.0 +15926,5,21.35,33,0.0 +15926,54,7.45,50,0.0 +15926,71,21.5,47,0.0 +15926,56,38,4,0.0 +15927,65,21.05,20,0.0 +15927,22,21,31,0.0 +15927,8,40,36,0.0 +15927,70,15,25,0.0 +15927,16,17.45,48,0.0 +15927,9,97,22,0.0 +15927,41,9.65,46,0.0 +15927,50,16.25,46,0.0 +15927,61,28.5,30,0.0 +15927,38,263.5,43,0.0 +15927,77,13,13,0.0 +15927,45,9.5,13,0.0 +15927,69,36,30,0.0 +15927,58,13.25,15,0.0 +15927,33,2.5,2,0.0 +15927,57,19.5,5,0.0 +15927,56,38,38,0.0 +15927,76,18,4,0.0 +15927,62,49.3,12,0.0 +15927,3,10,28,0.0 +15927,40,18.4,25,0.0 +15927,37,26,45,0.0 +15927,19,9.2,19,0.0 +15927,5,21.35,5,0.0 +15927,49,20,38,0.0 +15927,6,25,34,0.0 +15927,11,21,24,0.0 +15927,59,55,35,0.0 +15927,29,123.79,12,0.0 +15927,12,38,20,0.0 +15927,17,39,21,0.0 +15927,18,62.5,2,0.0 +15927,4,22,32,0.0 +15927,7,30,34,0.0 +15927,71,21.5,37,0.0 +15927,52,7,3,0.0 +15927,51,53,30,0.0 +15927,1,18,13,0.0 +15927,39,18,4,0.0 +15927,20,81,17,0.0 +15927,46,12,12,0.0 +15927,21,10,3,0.0 +15927,30,25.89,23,0.0 +15927,63,43.9,20,0.0 +15927,68,12.5,33,0.0 +15927,26,31.23,13,0.0 +15927,60,34,45,0.0 +15927,10,31,28,0.0 +15927,48,12.75,32,0.0 +15927,72,34.8,35,0.0 +15927,14,23.25,24,0.0 +15927,13,6,20,0.0 +15927,35,18,28,0.0 +15927,66,17,20,0.0 +15927,74,10,48,0.0 +15928,53,32.8,41,0.0 +15928,58,13.25,22,0.0 +15928,74,10,23,0.0 +15928,6,25,44,0.0 +15928,48,12.75,44,0.0 +15928,10,31,43,0.0 +15928,50,16.25,34,0.0 +15929,50,16.25,16,0.0 +15929,72,34.8,14,0.0 +15929,49,20,3,0.0 +15929,34,14,14,0.0 +15929,59,55,31,0.0 +15929,2,19,39,0.0 +15929,52,7,28,0.0 +15929,5,21.35,46,0.0 +15929,7,30,44,0.0 +15929,58,13.25,1,0.0 +15929,75,7.75,12,0.0 +15929,8,40,44,0.0 +15929,73,15,1,0.0 +15929,18,62.5,33,0.0 +15929,23,9,41,0.0 +15929,57,19.5,44,0.0 +15929,77,13,48,0.0 +15929,41,9.65,42,0.0 +15929,20,81,29,0.0 +15929,44,19.45,50,0.0 +15929,70,15,30,0.0 +15929,29,123.79,25,0.0 +15929,19,9.2,12,0.0 +15929,33,2.5,23,0.0 +15929,25,14,7,0.0 +15929,66,17,39,0.0 +15929,62,49.3,22,0.0 +15929,64,33.25,48,0.0 +15929,6,25,12,0.0 +15929,45,9.5,21,0.0 +15929,15,15.5,4,0.0 +15929,60,34,8,0.0 +15929,12,38,26,0.0 +15929,56,38,4,0.0 +15929,24,4.5,13,0.0 +15929,3,10,15,0.0 +15929,36,19,50,0.0 +15929,28,45.6,19,0.0 +15929,22,21,7,0.0 +15929,11,21,26,0.0 +15929,51,53,25,0.0 +15929,35,18,39,0.0 +15929,61,28.5,31,0.0 +15929,21,10,31,0.0 +15929,1,18,46,0.0 +15929,38,263.5,15,0.0 +15930,13,6,8,0.0 +15930,8,40,19,0.0 +15930,38,263.5,47,0.0 +15930,30,25.89,13,0.0 +15930,25,14,49,0.0 +15930,1,18,33,0.0 +15930,71,21.5,39,0.0 +15930,11,21,5,0.0 +15930,14,23.25,27,0.0 +15930,69,36,47,0.0 +15930,15,15.5,15,0.0 +15930,21,10,43,0.0 +15930,73,15,33,0.0 +15930,68,12.5,45,0.0 +15930,26,31.23,50,0.0 +15930,16,17.45,44,0.0 +15930,23,9,43,0.0 +15930,4,22,13,0.0 +15930,52,7,11,0.0 +15930,36,19,1,0.0 +15930,9,97,48,0.0 +15930,76,18,16,0.0 +15930,77,13,13,0.0 +15930,32,32,20,0.0 +15930,67,14,40,0.0 +15930,66,17,14,0.0 +15930,41,9.65,40,0.0 +15930,50,16.25,24,0.0 +15930,54,7.45,19,0.0 +15930,24,4.5,21,0.0 +15930,18,62.5,28,0.0 +15930,63,43.9,19,0.0 +15930,28,45.6,22,0.0 +15930,33,2.5,1,0.0 +15930,12,38,41,0.0 +15930,57,19.5,42,0.0 +15930,22,21,43,0.0 +15930,62,49.3,39,0.0 +15930,19,9.2,9,0.0 +15931,73,15,28,0.0 +15931,67,14,30,0.0 +15931,63,43.9,39,0.0 +15931,53,32.8,8,0.0 +15931,51,53,1,0.0 +15931,28,45.6,26,0.0 +15931,18,62.5,15,0.0 +15931,57,19.5,50,0.0 +15931,36,19,29,0.0 +15931,17,39,27,0.0 +15931,44,19.45,42,0.0 +15931,35,18,9,0.0 +15931,16,17.45,15,0.0 +15931,60,34,43,0.0 +15931,49,20,36,0.0 +15931,74,10,4,0.0 +15931,40,18.4,29,0.0 +15931,15,15.5,4,0.0 +15931,30,25.89,34,0.0 +15931,69,36,2,0.0 +15931,33,2.5,29,0.0 +15931,68,12.5,33,0.0 +15931,54,7.45,16,0.0 +15931,75,7.75,37,0.0 +15931,55,24,27,0.0 +15931,27,43.9,29,0.0 +15931,46,12,22,0.0 +15931,76,18,46,0.0 +15931,5,21.35,28,0.0 +15931,10,31,26,0.0 +15931,4,22,39,0.0 +15931,19,9.2,3,0.0 +15931,65,21.05,37,0.0 +15931,72,34.8,29,0.0 +15931,42,14,22,0.0 +15931,66,17,47,0.0 +15931,77,13,17,0.0 +15931,38,263.5,8,0.0 +15931,50,16.25,12,0.0 +15932,9,97,30,0.0 +15932,45,9.5,50,0.0 +15932,64,33.25,35,0.0 +15932,76,18,41,0.0 +15932,55,24,9,0.0 +15932,61,28.5,25,0.0 +15932,38,263.5,35,0.0 +15932,71,21.5,4,0.0 +15932,68,12.5,49,0.0 +15932,36,19,10,0.0 +15932,29,123.79,23,0.0 +15932,33,2.5,39,0.0 +15932,57,19.5,50,0.0 +15932,50,16.25,6,0.0 +15932,53,32.8,39,0.0 +15932,37,26,39,0.0 +15932,42,14,39,0.0 +15932,7,30,18,0.0 +15932,75,7.75,10,0.0 +15932,13,6,42,0.0 +15932,59,55,18,0.0 +15932,19,9.2,22,0.0 +15932,73,15,44,0.0 +15932,39,18,17,0.0 +15932,66,17,3,0.0 +15932,56,38,24,0.0 +15932,14,23.25,7,0.0 +15932,60,34,39,0.0 +15932,74,10,24,0.0 +15932,20,81,40,0.0 +15932,27,43.9,26,0.0 +15932,41,9.65,47,0.0 +15932,62,49.3,21,0.0 +15932,28,45.6,45,0.0 +15932,58,13.25,3,0.0 +15932,47,9.5,1,0.0 +15932,12,38,25,0.0 +15932,49,20,17,0.0 +15932,44,19.45,14,0.0 +15932,1,18,37,0.0 +15932,54,7.45,26,0.0 +15932,31,12.5,1,0.0 +15932,69,36,11,0.0 +15932,40,18.4,28,0.0 +15932,65,21.05,32,0.0 +15932,35,18,33,0.0 +15932,10,31,49,0.0 +15932,15,15.5,38,0.0 +15932,8,40,29,0.0 +15932,22,21,33,0.0 +15932,5,21.35,26,0.0 +15932,24,4.5,30,0.0 +15932,63,43.9,18,0.0 +15932,46,12,40,0.0 +15932,72,34.8,22,0.0 +15932,32,32,42,0.0 +15932,3,10,43,0.0 +15932,43,46,11,0.0 +15932,17,39,28,0.0 +15932,23,9,28,0.0 +15932,6,25,37,0.0 +15932,30,25.89,36,0.0 +15932,51,53,32,0.0 +15932,26,31.23,16,0.0 +15932,21,10,35,0.0 +15932,52,7,19,0.0 +15932,67,14,6,0.0 +15932,4,22,16,0.0 +15932,16,17.45,47,0.0 +15932,2,19,5,0.0 +15932,11,21,5,0.0 +15932,18,62.5,27,0.0 +15932,77,13,22,0.0 +15932,34,14,5,0.0 +15932,48,12.75,5,0.0 +15932,70,15,6,0.0 +15932,25,14,41,0.0 +15933,19,9.2,10,0.0 +15933,41,9.65,20,0.0 +15933,46,12,7,0.0 +15933,18,62.5,20,0.0 +15933,33,2.5,11,0.0 +15933,57,19.5,34,0.0 +15933,42,14,27,0.0 +15933,69,36,28,0.0 +15933,70,15,42,0.0 +15933,5,21.35,47,0.0 +15933,74,10,40,0.0 +15933,62,49.3,49,0.0 +15933,67,14,42,0.0 +15933,27,43.9,50,0.0 +15933,56,38,44,0.0 +15933,10,31,26,0.0 +15933,25,14,7,0.0 +15933,50,16.25,17,0.0 +15934,9,97,27,0.0 +15934,36,19,50,0.0 +15934,70,15,30,0.0 +15934,43,46,7,0.0 +15934,46,12,44,0.0 +15934,11,21,1,0.0 +15934,4,22,50,0.0 +15934,24,4.5,29,0.0 +15934,34,14,14,0.0 +15934,32,32,1,0.0 +15934,74,10,4,0.0 +15934,19,9.2,38,0.0 +15934,77,13,15,0.0 +15934,7,30,28,0.0 +15934,31,12.5,28,0.0 +15934,75,7.75,23,0.0 +15934,73,15,40,0.0 +15934,14,23.25,5,0.0 +15934,47,9.5,30,0.0 +15934,68,12.5,1,0.0 +15934,55,24,50,0.0 +15934,67,14,24,0.0 +15934,50,16.25,37,0.0 +15934,33,2.5,32,0.0 +15934,40,18.4,31,0.0 +15934,58,13.25,25,0.0 +15934,69,36,47,0.0 +15934,5,21.35,27,0.0 +15934,16,17.45,36,0.0 +15934,56,38,28,0.0 +15934,60,34,13,0.0 +15934,44,19.45,18,0.0 +15934,17,39,2,0.0 +15934,18,62.5,46,0.0 +15934,12,38,22,0.0 +15934,10,31,40,0.0 +15934,1,18,18,0.0 +15934,28,45.6,49,0.0 +15934,62,49.3,1,0.0 +15934,66,17,25,0.0 +15934,35,18,17,0.0 +15934,2,19,23,0.0 +15934,30,25.89,49,0.0 +15934,51,53,34,0.0 +15934,22,21,24,0.0 +15934,53,32.8,50,0.0 +15934,49,20,25,0.0 +15934,59,55,45,0.0 +15934,25,14,49,0.0 +15934,48,12.75,40,0.0 +15934,61,28.5,24,0.0 +15934,38,263.5,17,0.0 +15934,52,7,6,0.0 +15934,3,10,48,0.0 +15934,39,18,36,0.0 +15934,13,6,27,0.0 +15934,23,9,28,0.0 +15934,54,7.45,28,0.0 +15934,29,123.79,36,0.0 +15934,64,33.25,37,0.0 +15934,21,10,48,0.0 +15935,62,49.3,10,0.0 +15935,69,36,45,0.0 +15935,61,28.5,48,0.0 +15935,56,38,1,0.0 +15935,53,32.8,43,0.0 +15935,20,81,26,0.0 +15935,47,9.5,17,0.0 +15935,18,62.5,40,0.0 +15935,68,12.5,1,0.0 +15935,44,19.45,43,0.0 +15935,11,21,46,0.0 +15935,15,15.5,39,0.0 +15936,35,18,3,0.0 +15936,60,34,2,0.0 +15936,52,7,44,0.0 +15936,29,123.79,33,0.0 +15936,3,10,44,0.0 +15936,25,14,35,0.0 +15936,5,21.35,25,0.0 +15936,6,25,44,0.0 +15936,61,28.5,28,0.0 +15936,13,6,37,0.0 +15936,16,17.45,35,0.0 +15936,76,18,14,0.0 +15936,66,17,37,0.0 +15936,15,15.5,41,0.0 +15936,37,26,44,0.0 +15936,59,55,35,0.0 +15936,26,31.23,22,0.0 +15936,65,21.05,15,0.0 +15936,64,33.25,37,0.0 +15936,12,38,41,0.0 +15936,8,40,1,0.0 +15936,51,53,27,0.0 +15936,47,9.5,7,0.0 +15936,7,30,22,0.0 +15936,69,36,16,0.0 +15936,48,12.75,15,0.0 +15937,39,18,46,0.0 +15937,8,40,20,0.0 +15937,63,43.9,5,0.0 +15937,22,21,1,0.0 +15937,33,2.5,42,0.0 +15937,27,43.9,6,0.0 +15937,41,9.65,47,0.0 +15937,13,6,39,0.0 +15937,45,9.5,6,0.0 +15937,42,14,28,0.0 +15937,1,18,14,0.0 +15937,59,55,3,0.0 +15937,20,81,6,0.0 +15938,19,9.2,40,0.0 +15938,3,10,14,0.0 +15938,64,33.25,4,0.0 +15938,59,55,11,0.0 +15938,58,13.25,21,0.0 +15938,35,18,24,0.0 +15938,17,39,34,0.0 +15938,62,49.3,43,0.0 +15938,4,22,2,0.0 +15938,13,6,1,0.0 +15938,18,62.5,48,0.0 +15938,41,9.65,43,0.0 +15938,20,81,26,0.0 +15938,6,25,46,0.0 +15938,60,34,32,0.0 +15938,53,32.8,42,0.0 +15938,7,30,18,0.0 +15938,56,38,6,0.0 +15938,74,10,42,0.0 +15938,55,24,45,0.0 +15939,26,31.23,3,0.0 +15939,30,25.89,26,0.0 +15939,50,16.25,14,0.0 +15939,44,19.45,33,0.0 +15939,73,15,13,0.0 +15939,3,10,48,0.0 +15939,11,21,14,0.0 +15939,9,97,47,0.0 +15939,32,32,48,0.0 +15939,62,49.3,1,0.0 +15939,12,38,26,0.0 +15939,64,33.25,22,0.0 +15939,28,45.6,40,0.0 +15939,29,123.79,37,0.0 +15939,76,18,31,0.0 +15939,43,46,25,0.0 +15939,47,9.5,30,0.0 +15939,74,10,20,0.0 +15939,41,9.65,38,0.0 +15939,16,17.45,17,0.0 +15939,77,13,50,0.0 +15939,54,7.45,2,0.0 +15939,33,2.5,41,0.0 +15939,56,38,10,0.0 +15939,31,12.5,9,0.0 +15939,38,263.5,35,0.0 +15939,63,43.9,13,0.0 +15939,14,23.25,8,0.0 +15939,57,19.5,12,0.0 +15939,59,55,29,0.0 +15939,17,39,12,0.0 +15939,1,18,23,0.0 +15939,21,10,43,0.0 +15939,7,30,1,0.0 +15940,43,46,41,0.0 +15940,13,6,45,0.0 +15940,37,26,35,0.0 +15940,15,15.5,47,0.0 +15940,33,2.5,29,0.0 +15940,39,18,41,0.0 +15940,63,43.9,27,0.0 +15940,52,7,6,0.0 +15940,59,55,6,0.0 +15940,51,53,9,0.0 +15940,17,39,35,0.0 +15940,41,9.65,17,0.0 +15940,57,19.5,10,0.0 +15940,68,12.5,13,0.0 +15940,4,22,30,0.0 +15940,1,18,18,0.0 +15940,19,9.2,46,0.0 +15940,8,40,21,0.0 +15940,49,20,8,0.0 +15940,20,81,15,0.0 +15940,28,45.6,21,0.0 +15940,75,7.75,41,0.0 +15940,21,10,16,0.0 +15940,65,21.05,20,0.0 +15940,56,38,40,0.0 +15940,16,17.45,36,0.0 +15940,47,9.5,35,0.0 +15940,7,30,38,0.0 +15940,72,34.8,26,0.0 +15940,42,14,33,0.0 +15940,38,263.5,36,0.0 +15940,35,18,8,0.0 +15940,29,123.79,47,0.0 +15940,11,21,26,0.0 +15940,40,18.4,16,0.0 +15940,25,14,1,0.0 +15940,64,33.25,13,0.0 +15940,61,28.5,47,0.0 +15940,3,10,50,0.0 +15940,66,17,50,0.0 +15940,5,21.35,8,0.0 +15940,36,19,31,0.0 +15940,62,49.3,26,0.0 +15940,74,10,15,0.0 +15940,71,21.5,45,0.0 +15940,69,36,21,0.0 +15940,2,19,49,0.0 +15940,73,15,8,0.0 +15940,67,14,12,0.0 +15940,18,62.5,35,0.0 +15940,55,24,7,0.0 +15940,22,21,43,0.0 +15940,34,14,38,0.0 +15940,9,97,40,0.0 +15940,60,34,48,0.0 +15940,45,9.5,18,0.0 +15940,58,13.25,6,0.0 +15940,76,18,27,0.0 +15940,23,9,7,0.0 +15940,6,25,2,0.0 +15940,46,12,23,0.0 +15941,77,13,18,0.0 +15941,72,34.8,25,0.0 +15941,21,10,31,0.0 +15941,23,9,20,0.0 +15941,11,21,47,0.0 +15941,66,17,23,0.0 +15941,3,10,16,0.0 +15941,67,14,27,0.0 +15941,50,16.25,48,0.0 +15941,57,19.5,34,0.0 +15941,18,62.5,36,0.0 +15941,13,6,10,0.0 +15941,76,18,38,0.0 +15941,2,19,37,0.0 +15941,70,15,20,0.0 +15941,10,31,24,0.0 +15941,33,2.5,18,0.0 +15941,56,38,27,0.0 +15941,37,26,10,0.0 +15941,7,30,30,0.0 +15941,31,12.5,40,0.0 +15941,45,9.5,36,0.0 +15941,6,25,46,0.0 +15941,62,49.3,23,0.0 +15941,51,53,34,0.0 +15941,74,10,1,0.0 +15941,40,18.4,38,0.0 +15941,38,263.5,16,0.0 +15941,49,20,41,0.0 +15942,63,43.9,33,0.0 +15942,65,21.05,22,0.0 +15942,27,43.9,4,0.0 +15942,14,23.25,20,0.0 +15942,46,12,43,0.0 +15942,4,22,33,0.0 +15942,35,18,27,0.0 +15942,32,32,41,0.0 +15942,30,25.89,5,0.0 +15942,7,30,39,0.0 +15942,5,21.35,4,0.0 +15942,76,18,44,0.0 +15942,19,9.2,49,0.0 +15942,39,18,30,0.0 +15942,51,53,11,0.0 +15942,29,123.79,1,0.0 +15942,67,14,43,0.0 +15942,70,15,41,0.0 +15942,8,40,23,0.0 +15942,58,13.25,6,0.0 +15942,23,9,31,0.0 +15942,21,10,10,0.0 +15942,15,15.5,37,0.0 +15942,72,34.8,35,0.0 +15942,31,12.5,37,0.0 +15942,38,263.5,31,0.0 +15942,61,28.5,2,0.0 +15942,42,14,15,0.0 +15942,37,26,33,0.0 +15942,34,14,29,0.0 +15942,17,39,50,0.0 +15942,52,7,12,0.0 +15942,2,19,10,0.0 +15942,77,13,43,0.0 +15942,33,2.5,39,0.0 +15942,9,97,35,0.0 +15942,16,17.45,39,0.0 +15942,6,25,44,0.0 +15942,18,62.5,30,0.0 +15942,57,19.5,49,0.0 +15942,20,81,33,0.0 +15942,28,45.6,30,0.0 +15942,43,46,2,0.0 +15942,59,55,40,0.0 +15942,12,38,37,0.0 +15942,71,21.5,29,0.0 +15942,44,19.45,23,0.0 +15942,64,33.25,42,0.0 +15942,54,7.45,41,0.0 +15943,47,9.5,6,0.0 +15943,4,22,48,0.0 +15943,42,14,14,0.0 +15943,58,13.25,36,0.0 +15943,73,15,18,0.0 +15943,35,18,18,0.0 +15943,13,6,45,0.0 +15943,29,123.79,17,0.0 +15943,32,32,12,0.0 +15943,40,18.4,35,0.0 +15943,21,10,44,0.0 +15943,61,28.5,50,0.0 +15943,6,25,41,0.0 +15943,8,40,4,0.0 +15943,9,97,8,0.0 +15943,23,9,49,0.0 +15943,2,19,20,0.0 +15943,62,49.3,29,0.0 +15943,27,43.9,28,0.0 +15943,11,21,14,0.0 +15943,17,39,21,0.0 +15943,34,14,37,0.0 +15943,12,38,3,0.0 +15943,3,10,44,0.0 +15944,11,21,35,0.0 +15944,33,2.5,41,0.0 +15944,64,33.25,7,0.0 +15944,14,23.25,43,0.0 +15944,41,9.65,39,0.0 +15944,67,14,1,0.0 +15944,30,25.89,50,0.0 +15944,20,81,20,0.0 +15944,9,97,16,0.0 +15944,42,14,36,0.0 +15944,45,9.5,34,0.0 +15944,44,19.45,26,0.0 +15944,74,10,30,0.0 +15944,12,38,32,0.0 +15944,19,9.2,23,0.0 +15944,32,32,27,0.0 +15944,17,39,23,0.0 +15944,50,16.25,37,0.0 +15944,46,12,39,0.0 +15944,76,18,9,0.0 +15944,35,18,36,0.0 +15944,40,18.4,6,0.0 +15944,21,10,4,0.0 +15944,52,7,23,0.0 +15944,48,12.75,28,0.0 +15944,5,21.35,2,0.0 +15944,66,17,20,0.0 +15944,73,15,4,0.0 +15944,63,43.9,29,0.0 +15944,51,53,34,0.0 +15944,3,10,34,0.0 +15944,31,12.5,38,0.0 +15944,6,25,15,0.0 +15944,56,38,25,0.0 +15944,54,7.45,18,0.0 +15944,4,22,33,0.0 +15944,71,21.5,23,0.0 +15944,47,9.5,10,0.0 +15944,22,21,18,0.0 +15944,26,31.23,3,0.0 +15944,29,123.79,26,0.0 +15944,60,34,41,0.0 +15944,8,40,27,0.0 +15944,27,43.9,13,0.0 +15944,39,18,5,0.0 +15944,62,49.3,43,0.0 +15944,49,20,23,0.0 +15944,57,19.5,48,0.0 +15944,18,62.5,49,0.0 +15944,24,4.5,10,0.0 +15944,69,36,39,0.0 +15944,34,14,37,0.0 +15944,77,13,8,0.0 +15944,70,15,23,0.0 +15944,13,6,45,0.0 +15944,16,17.45,28,0.0 +15944,58,13.25,47,0.0 +15944,65,21.05,48,0.0 +15944,75,7.75,43,0.0 +15945,67,14,42,0.0 +15945,72,34.8,39,0.0 +15945,9,97,36,0.0 +15945,30,25.89,43,0.0 +15945,24,4.5,34,0.0 +15945,22,21,32,0.0 +15945,38,263.5,28,0.0 +15945,29,123.79,47,0.0 +15945,77,13,38,0.0 +15945,13,6,27,0.0 +15945,3,10,40,0.0 +15945,1,18,43,0.0 +15945,18,62.5,49,0.0 +15945,56,38,30,0.0 +15945,66,17,10,0.0 +15945,8,40,39,0.0 +15945,58,13.25,31,0.0 +15945,57,19.5,40,0.0 +15945,73,15,20,0.0 +15945,33,2.5,6,0.0 +15945,21,10,34,0.0 +15945,16,17.45,43,0.0 +15945,25,14,39,0.0 +15945,63,43.9,35,0.0 +15945,7,30,22,0.0 +15945,50,16.25,20,0.0 +15945,62,49.3,38,0.0 +15945,64,33.25,50,0.0 +15945,26,31.23,31,0.0 +15946,54,7.45,23,0.0 +15946,7,30,48,0.0 +15946,53,32.8,27,0.0 +15946,22,21,15,0.0 +15946,9,97,15,0.0 +15946,74,10,44,0.0 +15946,72,34.8,4,0.0 +15946,37,26,11,0.0 +15946,45,9.5,10,0.0 +15946,48,12.75,35,0.0 +15946,60,34,40,0.0 +15946,43,46,42,0.0 +15946,39,18,34,0.0 +15946,52,7,29,0.0 +15946,77,13,23,0.0 +15946,51,53,48,0.0 +15946,71,21.5,6,0.0 +15946,50,16.25,22,0.0 +15946,28,45.6,29,0.0 +15946,1,18,31,0.0 +15946,40,18.4,49,0.0 +15946,33,2.5,44,0.0 +15946,15,15.5,20,0.0 +15946,58,13.25,29,0.0 +15946,66,17,6,0.0 +15946,18,62.5,47,0.0 +15946,44,19.45,24,0.0 +15946,26,31.23,37,0.0 +15946,38,263.5,25,0.0 +15946,76,18,17,0.0 +15946,69,36,46,0.0 +15946,32,32,42,0.0 +15946,24,4.5,35,0.0 +15946,25,14,18,0.0 +15946,68,12.5,8,0.0 +15946,10,31,6,0.0 +15946,34,14,9,0.0 +15946,67,14,40,0.0 +15946,27,43.9,14,0.0 +15946,47,9.5,34,0.0 +15946,3,10,32,0.0 +15946,65,21.05,45,0.0 +15946,31,12.5,22,0.0 +15946,8,40,8,0.0 +15946,17,39,47,0.0 +15946,6,25,28,0.0 +15946,57,19.5,38,0.0 +15946,73,15,4,0.0 +15946,63,43.9,36,0.0 +15946,70,15,46,0.0 +15946,4,22,47,0.0 +15946,5,21.35,15,0.0 +15946,14,23.25,5,0.0 +15946,2,19,36,0.0 +15946,62,49.3,17,0.0 +15946,13,6,21,0.0 +15946,30,25.89,37,0.0 +15946,64,33.25,5,0.0 +15946,11,21,8,0.0 +15946,46,12,35,0.0 +15946,61,28.5,36,0.0 +15946,55,24,24,0.0 +15946,41,9.65,16,0.0 +15946,23,9,15,0.0 +15946,29,123.79,43,0.0 +15946,20,81,21,0.0 +15946,75,7.75,9,0.0 +15946,42,14,43,0.0 +15946,59,55,26,0.0 +15947,20,81,37,0.0 +15947,29,123.79,50,0.0 +15947,54,7.45,38,0.0 +15947,10,31,6,0.0 +15947,51,53,36,0.0 +15947,1,18,25,0.0 +15947,14,23.25,47,0.0 +15947,24,4.5,12,0.0 +15947,18,62.5,35,0.0 +15947,68,12.5,19,0.0 +15947,28,45.6,34,0.0 +15947,16,17.45,24,0.0 +15947,37,26,32,0.0 +15947,52,7,2,0.0 +15947,63,43.9,50,0.0 +15947,34,14,45,0.0 +15947,45,9.5,15,0.0 +15947,60,34,44,0.0 +15947,3,10,29,0.0 +15947,13,6,14,0.0 +15947,22,21,50,0.0 +15947,9,97,46,0.0 +15947,44,19.45,14,0.0 +15947,58,13.25,31,0.0 +15947,64,33.25,48,0.0 +15947,69,36,15,0.0 +15947,35,18,48,0.0 +15947,38,263.5,27,0.0 +15947,7,30,22,0.0 +15947,74,10,32,0.0 +15947,56,38,4,0.0 +15947,49,20,12,0.0 +15947,11,21,48,0.0 +15947,67,14,19,0.0 +15947,48,12.75,42,0.0 +15947,23,9,45,0.0 +15947,53,32.8,45,0.0 +15947,8,40,49,0.0 +15947,72,34.8,44,0.0 +15947,33,2.5,5,0.0 +15947,40,18.4,43,0.0 +15947,41,9.65,24,0.0 +15947,12,38,43,0.0 +15947,76,18,17,0.0 +15947,43,46,22,0.0 +15947,30,25.89,40,0.0 +15947,39,18,28,0.0 +15947,27,43.9,21,0.0 +15947,5,21.35,28,0.0 +15947,25,14,7,0.0 +15947,50,16.25,49,0.0 +15947,26,31.23,35,0.0 +15947,15,15.5,8,0.0 +15947,61,28.5,42,0.0 +15947,6,25,40,0.0 +15947,32,32,38,0.0 +15947,75,7.75,33,0.0 +15947,65,21.05,41,0.0 +15947,36,19,4,0.0 +15948,68,12.5,19,0.0 +15948,47,9.5,29,0.0 +15948,60,34,14,0.0 +15948,71,21.5,8,0.0 +15948,23,9,13,0.0 +15948,12,38,48,0.0 +15948,73,15,48,0.0 +15948,35,18,48,0.0 +15948,33,2.5,33,0.0 +15948,2,19,7,0.0 +15948,40,18.4,28,0.0 +15948,45,9.5,36,0.0 +15948,49,20,3,0.0 +15948,39,18,9,0.0 +15948,62,49.3,36,0.0 +15948,72,34.8,50,0.0 +15948,42,14,14,0.0 +15948,48,12.75,8,0.0 +15948,52,7,13,0.0 +15948,36,19,45,0.0 +15948,74,10,48,0.0 +15948,43,46,9,0.0 +15948,14,23.25,39,0.0 +15948,58,13.25,47,0.0 +15948,19,9.2,27,0.0 +15948,10,31,44,0.0 +15948,63,43.9,40,0.0 +15948,20,81,38,0.0 +15948,28,45.6,42,0.0 +15948,6,25,25,0.0 +15948,25,14,24,0.0 +15948,18,62.5,30,0.0 +15948,22,21,2,0.0 +15948,1,18,9,0.0 +15948,44,19.45,16,0.0 +15948,9,97,18,0.0 +15948,53,32.8,22,0.0 +15948,66,17,9,0.0 +15948,30,25.89,3,0.0 +15948,41,9.65,12,0.0 +15948,4,22,22,0.0 +15948,61,28.5,42,0.0 +15948,11,21,27,0.0 +15948,31,12.5,1,0.0 +15948,26,31.23,1,0.0 +15948,21,10,36,0.0 +15948,32,32,3,0.0 +15948,34,14,34,0.0 +15948,24,4.5,9,0.0 +15948,7,30,19,0.0 +15948,56,38,16,0.0 +15948,38,263.5,21,0.0 +15948,59,55,43,0.0 +15948,57,19.5,1,0.0 +15948,51,53,39,0.0 +15949,2,19,37,0.0 +15949,58,13.25,29,0.0 +15949,14,23.25,5,0.0 +15949,75,7.75,7,0.0 +15949,76,18,37,0.0 +15949,57,19.5,31,0.0 +15949,49,20,12,0.0 +15949,46,12,5,0.0 +15949,20,81,7,0.0 +15949,52,7,30,0.0 +15949,37,26,21,0.0 +15949,31,12.5,28,0.0 +15949,38,263.5,6,0.0 +15949,48,12.75,47,0.0 +15949,34,14,29,0.0 +15949,74,10,34,0.0 +15949,28,45.6,20,0.0 +15949,71,21.5,39,0.0 +15949,47,9.5,10,0.0 +15949,30,25.89,20,0.0 +15949,40,18.4,27,0.0 +15949,18,62.5,29,0.0 +15949,56,38,8,0.0 +15949,17,39,37,0.0 +15949,33,2.5,38,0.0 +15949,60,34,49,0.0 +15949,72,34.8,1,0.0 +15949,73,15,10,0.0 +15949,35,18,6,0.0 +15949,63,43.9,39,0.0 +15949,4,22,17,0.0 +15949,3,10,16,0.0 +15949,10,31,16,0.0 +15949,13,6,49,0.0 +15949,68,12.5,48,0.0 +15949,26,31.23,15,0.0 +15949,27,43.9,25,0.0 +15949,64,33.25,35,0.0 +15949,42,14,44,0.0 +15949,6,25,4,0.0 +15949,15,15.5,9,0.0 +15949,43,46,5,0.0 +15949,23,9,37,0.0 +15949,54,7.45,4,0.0 +15949,65,21.05,7,0.0 +15949,25,14,42,0.0 +15949,70,15,31,0.0 +15949,62,49.3,45,0.0 +15949,61,28.5,7,0.0 +15950,1,18,39,0.0 +15950,60,34,30,0.0 +15950,23,9,37,0.0 +15950,34,14,34,0.0 +15950,41,9.65,37,0.0 +15950,76,18,25,0.0 +15950,12,38,27,0.0 +15950,74,10,33,0.0 +15950,46,12,28,0.0 +15950,20,81,20,0.0 +15950,36,19,2,0.0 +15950,40,18.4,35,0.0 +15950,42,14,20,0.0 +15951,48,12.75,17,0.0 +15951,40,18.4,49,0.0 +15951,38,263.5,20,0.0 +15951,39,18,49,0.0 +15951,58,13.25,7,0.0 +15951,18,62.5,46,0.0 +15951,36,19,4,0.0 +15951,49,20,16,0.0 +15951,42,14,21,0.0 +15951,62,49.3,28,0.0 +15951,5,21.35,39,0.0 +15951,59,55,19,0.0 +15951,47,9.5,4,0.0 +15951,51,53,5,0.0 +15951,7,30,28,0.0 +15951,30,25.89,19,0.0 +15951,46,12,5,0.0 +15951,12,38,28,0.0 +15951,64,33.25,50,0.0 +15951,44,19.45,27,0.0 +15951,55,24,31,0.0 +15951,6,25,7,0.0 +15951,76,18,25,0.0 +15951,65,21.05,4,0.0 +15951,22,21,48,0.0 +15951,60,34,20,0.0 +15951,37,26,12,0.0 +15951,28,45.6,25,0.0 +15951,24,4.5,31,0.0 +15951,72,34.8,13,0.0 +15951,29,123.79,30,0.0 +15951,33,2.5,24,0.0 +15951,16,17.45,42,0.0 +15951,32,32,20,0.0 +15951,25,14,27,0.0 +15951,74,10,8,0.0 +15951,13,6,14,0.0 +15951,73,15,31,0.0 +15951,34,14,33,0.0 +15951,63,43.9,18,0.0 +15951,75,7.75,6,0.0 +15951,71,21.5,30,0.0 +15951,15,15.5,24,0.0 +15951,4,22,4,0.0 +15951,41,9.65,2,0.0 +15951,54,7.45,7,0.0 +15951,17,39,8,0.0 +15951,10,31,15,0.0 +15951,20,81,46,0.0 +15951,9,97,33,0.0 +15951,14,23.25,50,0.0 +15951,67,14,47,0.0 +15951,3,10,10,0.0 +15951,11,21,14,0.0 +15951,57,19.5,3,0.0 +15951,56,38,33,0.0 +15951,19,9.2,45,0.0 +15951,2,19,46,0.0 +15951,27,43.9,7,0.0 +15951,31,12.5,36,0.0 +15951,52,7,38,0.0 +15951,69,36,31,0.0 +15951,61,28.5,24,0.0 +15952,52,7,25,0.0 +15952,53,32.8,12,0.0 +15952,16,17.45,13,0.0 +15952,57,19.5,48,0.0 +15952,68,12.5,35,0.0 +15952,9,97,21,0.0 +15952,70,15,32,0.0 +15952,15,15.5,49,0.0 +15952,51,53,26,0.0 +15952,39,18,34,0.0 +15952,40,18.4,5,0.0 +15952,25,14,31,0.0 +15952,31,12.5,32,0.0 +15952,30,25.89,13,0.0 +15952,69,36,34,0.0 +15952,14,23.25,4,0.0 +15952,5,21.35,50,0.0 +15952,74,10,29,0.0 +15952,3,10,11,0.0 +15952,26,31.23,34,0.0 +15952,43,46,34,0.0 +15952,49,20,25,0.0 +15952,58,13.25,19,0.0 +15952,22,21,5,0.0 +15952,29,123.79,13,0.0 +15952,8,40,46,0.0 +15952,47,9.5,34,0.0 +15952,28,45.6,17,0.0 +15952,13,6,25,0.0 +15952,12,38,48,0.0 +15952,45,9.5,2,0.0 +15952,60,34,7,0.0 +15952,61,28.5,20,0.0 +15952,41,9.65,44,0.0 +15952,65,21.05,48,0.0 +15952,17,39,24,0.0 +15952,72,34.8,1,0.0 +15953,53,32.8,43,0.0 +15953,6,25,29,0.0 +15953,69,36,9,0.0 +15953,70,15,36,0.0 +15953,71,21.5,8,0.0 +15953,52,7,25,0.0 +15953,21,10,22,0.0 +15953,61,28.5,37,0.0 +15953,64,33.25,7,0.0 +15953,31,12.5,27,0.0 +15953,62,49.3,7,0.0 +15953,59,55,12,0.0 +15953,55,24,15,0.0 +15953,47,9.5,31,0.0 +15953,45,9.5,11,0.0 +15953,3,10,2,0.0 +15953,40,18.4,1,0.0 +15953,57,19.5,18,0.0 +15953,23,9,24,0.0 +15953,8,40,24,0.0 +15953,66,17,43,0.0 +15953,12,38,43,0.0 +15953,1,18,21,0.0 +15953,73,15,32,0.0 +15953,20,81,42,0.0 +15953,68,12.5,37,0.0 +15953,34,14,21,0.0 +15953,76,18,23,0.0 +15953,48,12.75,35,0.0 +15953,60,34,30,0.0 +15953,30,25.89,7,0.0 +15953,54,7.45,9,0.0 +15953,75,7.75,11,0.0 +15953,2,19,10,0.0 +15953,11,21,26,0.0 +15953,28,45.6,36,0.0 +15953,77,13,42,0.0 +15953,5,21.35,18,0.0 +15953,44,19.45,20,0.0 +15953,46,12,33,0.0 +15953,36,19,24,0.0 +15953,67,14,44,0.0 +15953,14,23.25,27,0.0 +15953,56,38,27,0.0 +15953,25,14,22,0.0 +15953,29,123.79,1,0.0 +15953,18,62.5,25,0.0 +15953,72,34.8,12,0.0 +15953,32,32,20,0.0 +15953,24,4.5,23,0.0 +15953,39,18,4,0.0 +15953,38,263.5,34,0.0 +15953,19,9.2,4,0.0 +15953,22,21,1,0.0 +15953,13,6,26,0.0 +15953,4,22,16,0.0 +15953,42,14,48,0.0 +15953,35,18,9,0.0 +15954,68,12.5,3,0.0 +15954,67,14,1,0.0 +15954,44,19.45,6,0.0 +15954,49,20,33,0.0 +15954,5,21.35,41,0.0 +15954,37,26,25,0.0 +15954,40,18.4,38,0.0 +15954,54,7.45,12,0.0 +15954,31,12.5,42,0.0 +15954,45,9.5,34,0.0 +15954,23,9,2,0.0 +15954,15,15.5,43,0.0 +15954,73,15,16,0.0 +15954,64,33.25,43,0.0 +15954,77,13,39,0.0 +15954,76,18,48,0.0 +15954,35,18,2,0.0 +15954,14,23.25,38,0.0 +15954,3,10,14,0.0 +15954,53,32.8,17,0.0 +15954,47,9.5,38,0.0 +15954,43,46,31,0.0 +15954,28,45.6,24,0.0 +15954,12,38,19,0.0 +15954,17,39,40,0.0 +15954,58,13.25,43,0.0 +15954,10,31,15,0.0 +15954,69,36,44,0.0 +15954,46,12,15,0.0 +15954,65,21.05,20,0.0 +15954,8,40,30,0.0 +15954,39,18,37,0.0 +15954,20,81,22,0.0 +15954,75,7.75,11,0.0 +15954,51,53,9,0.0 +15954,1,18,42,0.0 +15954,33,2.5,19,0.0 +15954,26,31.23,17,0.0 +15954,66,17,50,0.0 +15954,2,19,36,0.0 +15954,57,19.5,43,0.0 +15954,6,25,12,0.0 +15954,55,24,10,0.0 +15954,60,34,48,0.0 +15954,63,43.9,39,0.0 +15954,48,12.75,14,0.0 +15954,7,30,9,0.0 +15954,36,19,7,0.0 +15955,53,32.8,47,0.0 +15955,34,14,11,0.0 +15955,74,10,46,0.0 +15955,17,39,9,0.0 +15955,57,19.5,4,0.0 +15955,28,45.6,30,0.0 +15955,46,12,49,0.0 +15955,59,55,23,0.0 +15955,7,30,40,0.0 +15955,16,17.45,35,0.0 +15955,25,14,32,0.0 +15955,24,4.5,3,0.0 +15955,52,7,44,0.0 +15955,72,34.8,50,0.0 +15955,71,21.5,5,0.0 +15955,29,123.79,29,0.0 +15955,26,31.23,42,0.0 +15955,55,24,16,0.0 +15956,6,25,27,0.0 +15956,4,22,39,0.0 +15956,73,15,30,0.0 +15956,56,38,27,0.0 +15956,50,16.25,19,0.0 +15956,66,17,5,0.0 +15956,14,23.25,39,0.0 +15956,57,19.5,46,0.0 +15956,8,40,19,0.0 +15956,64,33.25,18,0.0 +15956,72,34.8,33,0.0 +15956,63,43.9,43,0.0 +15956,54,7.45,9,0.0 +15956,61,28.5,6,0.0 +15956,31,12.5,1,0.0 +15956,18,62.5,24,0.0 +15956,16,17.45,35,0.0 +15956,21,10,45,0.0 +15956,76,18,44,0.0 +15956,68,12.5,9,0.0 +15956,44,19.45,28,0.0 +15956,47,9.5,3,0.0 +15956,26,31.23,9,0.0 +15956,55,24,10,0.0 +15956,35,18,30,0.0 +15956,28,45.6,19,0.0 +15957,54,7.45,48,0.0 +15957,42,14,45,0.0 +15957,39,18,6,0.0 +15957,40,18.4,3,0.0 +15957,30,25.89,27,0.0 +15957,77,13,1,0.0 +15957,23,9,27,0.0 +15957,25,14,3,0.0 +15957,62,49.3,12,0.0 +15957,61,28.5,20,0.0 +15957,64,33.25,20,0.0 +15957,19,9.2,43,0.0 +15957,58,13.25,16,0.0 +15957,3,10,13,0.0 +15957,63,43.9,24,0.0 +15957,50,16.25,46,0.0 +15957,28,45.6,45,0.0 +15957,47,9.5,10,0.0 +15957,5,21.35,14,0.0 +15957,49,20,48,0.0 +15957,60,34,8,0.0 +15957,11,21,17,0.0 +15957,52,7,30,0.0 +15957,16,17.45,19,0.0 +15957,43,46,27,0.0 +15957,33,2.5,48,0.0 +15957,69,36,22,0.0 +15957,73,15,15,0.0 +15957,38,263.5,12,0.0 +15957,29,123.79,3,0.0 +15957,41,9.65,28,0.0 +15957,1,18,13,0.0 +15957,65,21.05,37,0.0 +15957,53,32.8,33,0.0 +15957,67,14,48,0.0 +15957,24,4.5,50,0.0 +15957,56,38,15,0.0 +15957,36,19,31,0.0 +15957,68,12.5,46,0.0 +15957,70,15,42,0.0 +15957,35,18,25,0.0 +15957,51,53,34,0.0 +15957,45,9.5,21,0.0 +15957,20,81,27,0.0 +15957,21,10,25,0.0 +15958,55,24,26,0.0 +15958,74,10,25,0.0 +15958,35,18,48,0.0 +15958,3,10,31,0.0 +15958,45,9.5,6,0.0 +15958,12,38,34,0.0 +15958,25,14,18,0.0 +15958,54,7.45,34,0.0 +15958,27,43.9,12,0.0 +15958,31,12.5,40,0.0 +15958,26,31.23,29,0.0 +15958,69,36,8,0.0 +15958,13,6,28,0.0 +15958,76,18,1,0.0 +15958,8,40,31,0.0 +15958,17,39,22,0.0 +15958,52,7,33,0.0 +15958,64,33.25,3,0.0 +15958,21,10,10,0.0 +15958,66,17,26,0.0 +15958,18,62.5,29,0.0 +15958,6,25,36,0.0 +15958,43,46,20,0.0 +15958,72,34.8,46,0.0 +15958,60,34,49,0.0 +15958,24,4.5,25,0.0 +15958,29,123.79,16,0.0 +15958,23,9,27,0.0 +15958,38,263.5,23,0.0 +15958,77,13,44,0.0 +15958,44,19.45,31,0.0 +15958,16,17.45,4,0.0 +15958,19,9.2,5,0.0 +15958,11,21,17,0.0 +15958,4,22,34,0.0 +15958,71,21.5,3,0.0 +15958,50,16.25,50,0.0 +15958,70,15,24,0.0 +15958,33,2.5,20,0.0 +15958,15,15.5,46,0.0 +15958,42,14,15,0.0 +15959,55,24,37,0.0 +15959,60,34,42,0.0 +15959,62,49.3,29,0.0 +15960,28,45.6,3,0.0 +15960,62,49.3,1,0.0 +15960,60,34,7,0.0 +15960,72,34.8,4,0.0 +15960,5,21.35,36,0.0 +15960,40,18.4,12,0.0 +15960,8,40,42,0.0 +15960,69,36,45,0.0 +15960,30,25.89,2,0.0 +15960,22,21,34,0.0 +15960,48,12.75,7,0.0 +15960,68,12.5,6,0.0 +15960,20,81,14,0.0 +15960,19,9.2,30,0.0 +15960,11,21,20,0.0 +15960,46,12,4,0.0 +15960,47,9.5,47,0.0 +15960,71,21.5,21,0.0 +15960,29,123.79,19,0.0 +15960,33,2.5,29,0.0 +15960,70,15,47,0.0 +15960,64,33.25,13,0.0 +15960,27,43.9,31,0.0 +15960,25,14,45,0.0 +15960,73,15,47,0.0 +15960,3,10,18,0.0 +15960,4,22,27,0.0 +15960,15,15.5,23,0.0 +15960,55,24,49,0.0 +15960,35,18,13,0.0 +15960,21,10,43,0.0 +15960,23,9,23,0.0 +15960,42,14,46,0.0 +15960,32,32,29,0.0 +15960,7,30,35,0.0 +15960,6,25,6,0.0 +15960,34,14,37,0.0 +15960,38,263.5,17,0.0 +15960,2,19,47,0.0 +15960,59,55,21,0.0 +15960,77,13,4,0.0 +15960,66,17,46,0.0 +15960,26,31.23,7,0.0 +15960,57,19.5,33,0.0 +15960,1,18,49,0.0 +15960,53,32.8,17,0.0 +15960,13,6,29,0.0 +15960,16,17.45,17,0.0 +15960,50,16.25,18,0.0 +15960,43,46,2,0.0 +15960,14,23.25,24,0.0 +15960,37,26,43,0.0 +15960,17,39,40,0.0 +15960,76,18,19,0.0 +15960,54,7.45,50,0.0 +15960,9,97,20,0.0 +15960,45,9.5,10,0.0 +15960,10,31,27,0.0 +15961,18,62.5,22,0.0 +15961,27,43.9,7,0.0 +15961,43,46,3,0.0 +15961,4,22,47,0.0 +15961,75,7.75,36,0.0 +15961,44,19.45,6,0.0 +15961,52,7,31,0.0 +15961,13,6,39,0.0 +15961,47,9.5,29,0.0 +15961,77,13,31,0.0 +15961,62,49.3,49,0.0 +15961,22,21,32,0.0 +15961,5,21.35,34,0.0 +15961,14,23.25,48,0.0 +15961,65,21.05,45,0.0 +15961,25,14,9,0.0 +15961,56,38,5,0.0 +15961,64,33.25,19,0.0 +15961,32,32,35,0.0 +15961,3,10,15,0.0 +15961,67,14,15,0.0 +15961,61,28.5,37,0.0 +15961,51,53,42,0.0 +15961,7,30,41,0.0 +15961,30,25.89,17,0.0 +15961,2,19,42,0.0 +15961,49,20,40,0.0 +15961,8,40,39,0.0 +15961,21,10,21,0.0 +15961,68,12.5,4,0.0 +15961,10,31,24,0.0 +15961,39,18,10,0.0 +15961,41,9.65,42,0.0 +15961,45,9.5,44,0.0 +15961,69,36,21,0.0 +15961,28,45.6,30,0.0 +15961,76,18,30,0.0 +15961,36,19,33,0.0 +15961,53,32.8,10,0.0 +15961,19,9.2,15,0.0 +15961,20,81,12,0.0 +15961,38,263.5,27,0.0 +15961,63,43.9,17,0.0 +15961,40,18.4,34,0.0 +15961,58,13.25,12,0.0 +15961,55,24,38,0.0 +15961,71,21.5,35,0.0 +15961,73,15,25,0.0 +15961,37,26,37,0.0 +15961,60,34,4,0.0 +15961,17,39,24,0.0 +15961,66,17,9,0.0 +15961,33,2.5,7,0.0 +15961,35,18,26,0.0 +15961,16,17.45,42,0.0 +15961,6,25,36,0.0 +15961,34,14,31,0.0 +15961,9,97,40,0.0 +15961,48,12.75,29,0.0 +15961,59,55,7,0.0 +15961,74,10,30,0.0 +15961,50,16.25,35,0.0 +15961,70,15,21,0.0 +15961,1,18,49,0.0 +15961,11,21,2,0.0 +15961,12,38,4,0.0 +15961,24,4.5,9,0.0 +15961,26,31.23,27,0.0 +15961,72,34.8,39,0.0 +15961,15,15.5,39,0.0 +15961,57,19.5,30,0.0 +15961,31,12.5,24,0.0 +15961,23,9,33,0.0 +15961,42,14,37,0.0 +15962,52,7,49,0.0 +15962,46,12,5,0.0 +15962,49,20,40,0.0 +15962,51,53,1,0.0 +15962,42,14,36,0.0 +15962,19,9.2,48,0.0 +15962,36,19,30,0.0 +15962,55,24,45,0.0 +15962,58,13.25,41,0.0 +15962,50,16.25,31,0.0 +15962,64,33.25,6,0.0 +15962,72,34.8,16,0.0 +15962,33,2.5,45,0.0 +15962,39,18,13,0.0 +15962,11,21,36,0.0 +15962,24,4.5,38,0.0 +15962,75,7.75,18,0.0 +15962,12,38,24,0.0 +15962,15,15.5,5,0.0 +15962,3,10,43,0.0 +15962,1,18,12,0.0 +15962,61,28.5,20,0.0 +15962,20,81,6,0.0 +15962,7,30,46,0.0 +15962,21,10,9,0.0 +15962,41,9.65,3,0.0 +15962,60,34,4,0.0 +15962,53,32.8,40,0.0 +15962,28,45.6,21,0.0 +15962,9,97,34,0.0 +15962,30,25.89,39,0.0 +15962,14,23.25,42,0.0 +15962,17,39,45,0.0 +15962,31,12.5,1,0.0 +15962,29,123.79,23,0.0 +15962,67,14,13,0.0 +15962,40,18.4,42,0.0 +15962,27,43.9,2,0.0 +15962,73,15,38,0.0 +15962,45,9.5,40,0.0 +15962,69,36,4,0.0 +15962,68,12.5,13,0.0 +15962,63,43.9,1,0.0 +15962,38,263.5,7,0.0 +15962,13,6,41,0.0 +15962,26,31.23,10,0.0 +15962,59,55,48,0.0 +15962,25,14,4,0.0 +15962,32,32,9,0.0 +15962,74,10,26,0.0 +15962,18,62.5,21,0.0 +15962,56,38,32,0.0 +15962,6,25,49,0.0 +15962,54,7.45,25,0.0 +15962,70,15,26,0.0 +15962,65,21.05,50,0.0 +15963,59,55,48,0.0 +15963,50,16.25,40,0.0 +15963,72,34.8,25,0.0 +15963,41,9.65,15,0.0 +15963,56,38,49,0.0 +15963,52,7,8,0.0 +15963,43,46,26,0.0 +15963,27,43.9,49,0.0 +15963,62,49.3,19,0.0 +15963,17,39,6,0.0 +15963,30,25.89,5,0.0 +15963,3,10,21,0.0 +15963,31,12.5,25,0.0 +15963,4,22,38,0.0 +15963,25,14,5,0.0 +15963,61,28.5,4,0.0 +15963,74,10,38,0.0 +15963,15,15.5,14,0.0 +15963,9,97,20,0.0 +15963,70,15,23,0.0 +15963,28,45.6,9,0.0 +15963,47,9.5,38,0.0 +15963,51,53,48,0.0 +15963,14,23.25,15,0.0 +15963,8,40,25,0.0 +15963,22,21,20,0.0 +15963,53,32.8,32,0.0 +15963,68,12.5,42,0.0 +15963,54,7.45,19,0.0 +15963,6,25,43,0.0 +15963,36,19,5,0.0 +15963,38,263.5,50,0.0 +15963,13,6,4,0.0 +15963,75,7.75,48,0.0 +15963,18,62.5,13,0.0 +15963,49,20,24,0.0 +15963,5,21.35,4,0.0 +15963,46,12,18,0.0 +15963,23,9,37,0.0 +15963,64,33.25,12,0.0 +15963,16,17.45,24,0.0 +15963,71,21.5,50,0.0 +15963,20,81,40,0.0 +15963,24,4.5,16,0.0 +15963,7,30,19,0.0 +15963,2,19,17,0.0 +15963,48,12.75,40,0.0 +15963,76,18,40,0.0 +15963,26,31.23,5,0.0 +15963,69,36,49,0.0 +15963,10,31,30,0.0 +15963,57,19.5,41,0.0 +15963,44,19.45,37,0.0 +15963,40,18.4,48,0.0 +15963,60,34,1,0.0 +15963,32,32,22,0.0 +15963,37,26,24,0.0 +15963,55,24,2,0.0 +15963,35,18,8,0.0 +15963,67,14,19,0.0 +15963,12,38,29,0.0 +15963,33,2.5,47,0.0 +15963,77,13,10,0.0 +15963,45,9.5,12,0.0 +15963,34,14,34,0.0 +15963,42,14,28,0.0 +15963,63,43.9,50,0.0 +15963,65,21.05,29,0.0 +15963,19,9.2,45,0.0 +15963,58,13.25,35,0.0 +15963,11,21,1,0.0 +15963,73,15,14,0.0 +15963,21,10,14,0.0 +15964,15,15.5,37,0.0 +15964,26,31.23,24,0.0 +15964,31,12.5,50,0.0 +15964,21,10,29,0.0 +15964,39,18,12,0.0 +15964,49,20,23,0.0 +15964,72,34.8,22,0.0 +15964,9,97,4,0.0 +15964,35,18,33,0.0 +15964,75,7.75,5,0.0 +15964,20,81,29,0.0 +15964,14,23.25,17,0.0 +15964,5,21.35,24,0.0 +15964,67,14,36,0.0 +15964,43,46,42,0.0 +15964,70,15,45,0.0 +15964,17,39,49,0.0 +15964,48,12.75,25,0.0 +15964,65,21.05,50,0.0 +15964,22,21,20,0.0 +15964,1,18,27,0.0 +15964,7,30,2,0.0 +15964,10,31,22,0.0 +15964,45,9.5,29,0.0 +15964,13,6,45,0.0 +15964,28,45.6,33,0.0 +15964,44,19.45,50,0.0 +15964,2,19,31,0.0 +15964,8,40,39,0.0 +15964,37,26,28,0.0 +15964,76,18,39,0.0 +15964,46,12,2,0.0 +15964,34,14,31,0.0 +15964,24,4.5,50,0.0 +15964,47,9.5,8,0.0 +15964,25,14,49,0.0 +15964,71,21.5,30,0.0 +15964,38,263.5,7,0.0 +15964,64,33.25,22,0.0 +15964,51,53,26,0.0 +15964,36,19,29,0.0 +15964,29,123.79,31,0.0 +15964,73,15,25,0.0 +15964,32,32,26,0.0 +15964,4,22,42,0.0 +15964,68,12.5,25,0.0 +15964,63,43.9,13,0.0 +15965,60,34,12,0.0 +15965,13,6,7,0.0 +15965,36,19,27,0.0 +15965,27,43.9,21,0.0 +15965,73,15,33,0.0 +15965,1,18,9,0.0 +15965,32,32,18,0.0 +15965,38,263.5,39,0.0 +15965,69,36,24,0.0 +15965,77,13,12,0.0 +15965,6,25,34,0.0 +15965,25,14,43,0.0 +15965,51,53,50,0.0 +15965,40,18.4,35,0.0 +15965,18,62.5,49,0.0 +15965,62,49.3,24,0.0 +15965,7,30,46,0.0 +15965,55,24,44,0.0 +15965,56,38,39,0.0 +15965,70,15,45,0.0 +15965,47,9.5,15,0.0 +15965,52,7,3,0.0 +15965,24,4.5,37,0.0 +15965,35,18,4,0.0 +15965,20,81,13,0.0 +15965,39,18,19,0.0 +15965,26,31.23,19,0.0 +15965,2,19,27,0.0 +15965,12,38,17,0.0 +15965,11,21,38,0.0 +15965,16,17.45,12,0.0 +15965,72,34.8,15,0.0 +15965,42,14,2,0.0 +15965,59,55,27,0.0 +15965,75,7.75,46,0.0 +15965,30,25.89,33,0.0 +15965,3,10,48,0.0 +15965,41,9.65,1,0.0 +15965,15,15.5,17,0.0 +15965,49,20,8,0.0 +15965,17,39,45,0.0 +15965,9,97,8,0.0 +15965,63,43.9,25,0.0 +15965,67,14,30,0.0 +15965,71,21.5,17,0.0 +15965,33,2.5,25,0.0 +15965,45,9.5,50,0.0 +15966,19,9.2,39,0.0 +15966,54,7.45,25,0.0 +15966,38,263.5,8,0.0 +15966,35,18,40,0.0 +15966,72,34.8,20,0.0 +15966,20,81,45,0.0 +15966,48,12.75,8,0.0 +15966,47,9.5,19,0.0 +15966,42,14,47,0.0 +15966,14,23.25,23,0.0 +15966,65,21.05,25,0.0 +15966,43,46,16,0.0 +15967,20,81,18,0.0 +15967,8,40,50,0.0 +15967,39,18,9,0.0 +15967,7,30,23,0.0 +15967,67,14,37,0.0 +15967,26,31.23,43,0.0 +15967,9,97,48,0.0 +15967,45,9.5,25,0.0 +15967,14,23.25,45,0.0 +15967,74,10,28,0.0 +15967,77,13,25,0.0 +15967,22,21,29,0.0 +15967,25,14,37,0.0 +15967,64,33.25,40,0.0 +15967,65,21.05,32,0.0 +15967,50,16.25,29,0.0 +15967,46,12,39,0.0 +15967,35,18,6,0.0 +15967,63,43.9,41,0.0 +15967,30,25.89,3,0.0 +15967,36,19,7,0.0 +15967,75,7.75,24,0.0 +15967,11,21,23,0.0 +15967,66,17,24,0.0 +15967,19,9.2,40,0.0 +15967,44,19.45,44,0.0 +15967,23,9,24,0.0 +15967,70,15,50,0.0 +15967,51,53,10,0.0 +15967,48,12.75,37,0.0 +15967,62,49.3,15,0.0 +15967,31,12.5,43,0.0 +15967,3,10,27,0.0 +15967,16,17.45,12,0.0 +15967,13,6,39,0.0 +15967,28,45.6,30,0.0 +15967,53,32.8,19,0.0 +15967,4,22,8,0.0 +15967,52,7,32,0.0 +15967,68,12.5,49,0.0 +15967,57,19.5,46,0.0 +15967,5,21.35,6,0.0 +15967,59,55,45,0.0 +15967,2,19,22,0.0 +15967,54,7.45,13,0.0 +15967,17,39,43,0.0 +15967,27,43.9,9,0.0 +15967,24,4.5,25,0.0 +15967,76,18,40,0.0 +15967,40,18.4,46,0.0 +15967,12,38,6,0.0 +15967,71,21.5,13,0.0 +15967,1,18,29,0.0 +15967,61,28.5,11,0.0 +15967,29,123.79,42,0.0 +15967,32,32,40,0.0 +15967,73,15,3,0.0 +15967,34,14,7,0.0 +15967,41,9.65,39,0.0 +15967,18,62.5,25,0.0 +15967,60,34,43,0.0 +15967,37,26,35,0.0 +15968,18,62.5,33,0.0 +15968,46,12,25,0.0 +15968,9,97,28,0.0 +15968,33,2.5,4,0.0 +15968,34,14,50,0.0 +15968,5,21.35,40,0.0 +15968,71,21.5,34,0.0 +15968,2,19,35,0.0 +15968,36,19,8,0.0 +15968,64,33.25,31,0.0 +15968,19,9.2,10,0.0 +15968,37,26,10,0.0 +15968,49,20,4,0.0 +15968,12,38,37,0.0 +15968,74,10,21,0.0 +15968,1,18,37,0.0 +15968,58,13.25,11,0.0 +15968,35,18,29,0.0 +15968,13,6,26,0.0 +15968,47,9.5,2,0.0 +15968,57,19.5,11,0.0 +15968,62,49.3,24,0.0 +15968,14,23.25,19,0.0 +15968,55,24,49,0.0 +15968,66,17,4,0.0 +15968,31,12.5,15,0.0 +15968,7,30,46,0.0 +15968,53,32.8,39,0.0 +15968,15,15.5,32,0.0 +15968,42,14,8,0.0 +15968,25,14,43,0.0 +15968,38,263.5,42,0.0 +15968,8,40,17,0.0 +15968,59,55,40,0.0 +15968,77,13,37,0.0 +15968,39,18,21,0.0 +15968,26,31.23,18,0.0 +15968,3,10,18,0.0 +15968,17,39,45,0.0 +15968,44,19.45,41,0.0 +15968,75,7.75,36,0.0 +15968,70,15,37,0.0 +15968,73,15,21,0.0 +15968,22,21,12,0.0 +15968,27,43.9,25,0.0 +15968,60,34,3,0.0 +15968,48,12.75,42,0.0 +15968,67,14,12,0.0 +15968,51,53,15,0.0 +15968,65,21.05,33,0.0 +15968,40,18.4,13,0.0 +15968,20,81,47,0.0 +15969,50,16.25,39,0.0 +15969,48,12.75,33,0.0 +15969,58,13.25,34,0.0 +15969,34,14,9,0.0 +15969,1,18,39,0.0 +15969,62,49.3,3,0.0 +15969,23,9,12,0.0 +15969,7,30,25,0.0 +15969,25,14,4,0.0 +15969,59,55,44,0.0 +15969,6,25,18,0.0 +15969,38,263.5,47,0.0 +15969,41,9.65,14,0.0 +15969,74,10,6,0.0 +15969,56,38,31,0.0 +15969,60,34,30,0.0 +15969,32,32,47,0.0 +15969,14,23.25,34,0.0 +15969,4,22,33,0.0 +15969,21,10,7,0.0 +15969,77,13,14,0.0 +15969,26,31.23,29,0.0 +15969,8,40,34,0.0 +15969,2,19,30,0.0 +15969,73,15,45,0.0 +15969,20,81,42,0.0 +15969,30,25.89,8,0.0 +15969,18,62.5,39,0.0 +15969,16,17.45,47,0.0 +15969,27,43.9,38,0.0 +15969,71,21.5,19,0.0 +15969,45,9.5,46,0.0 +15969,66,17,41,0.0 +15969,37,26,24,0.0 +15969,10,31,49,0.0 +15969,61,28.5,18,0.0 +15969,31,12.5,44,0.0 +15969,9,97,30,0.0 +15970,72,34.8,10,0.0 +15970,69,36,3,0.0 +15970,49,20,15,0.0 +15970,22,21,6,0.0 +15970,57,19.5,47,0.0 +15970,3,10,9,0.0 +15970,21,10,47,0.0 +15970,35,18,32,0.0 +15970,45,9.5,36,0.0 +15970,61,28.5,1,0.0 +15970,27,43.9,48,0.0 +15970,46,12,30,0.0 +15970,77,13,15,0.0 +15970,54,7.45,26,0.0 +15970,75,7.75,8,0.0 +15970,29,123.79,19,0.0 +15970,15,15.5,29,0.0 +15970,55,24,7,0.0 +15970,10,31,25,0.0 +15970,30,25.89,25,0.0 +15970,70,15,18,0.0 +15971,74,10,15,0.0 +15971,40,18.4,6,0.0 +15971,59,55,27,0.0 +15971,61,28.5,44,0.0 +15971,39,18,49,0.0 +15971,6,25,26,0.0 +15971,28,45.6,35,0.0 +15971,38,263.5,47,0.0 +15971,55,24,42,0.0 +15971,54,7.45,43,0.0 +15971,50,16.25,42,0.0 +15971,17,39,4,0.0 +15971,32,32,32,0.0 +15971,20,81,13,0.0 +15971,12,38,6,0.0 +15971,41,9.65,50,0.0 +15971,30,25.89,4,0.0 +15971,63,43.9,20,0.0 +15971,73,15,10,0.0 +15971,5,21.35,14,0.0 +15971,53,32.8,41,0.0 +15971,46,12,16,0.0 +15971,11,21,28,0.0 +15971,45,9.5,37,0.0 +15971,25,14,28,0.0 +15971,49,20,12,0.0 +15972,43,46,45,0.0 +15972,75,7.75,6,0.0 +15972,9,97,37,0.0 +15972,45,9.5,12,0.0 +15972,42,14,29,0.0 +15972,52,7,39,0.0 +15972,7,30,18,0.0 +15972,53,32.8,32,0.0 +15972,26,31.23,21,0.0 +15972,14,23.25,23,0.0 +15972,69,36,41,0.0 +15972,21,10,18,0.0 +15972,18,62.5,20,0.0 +15972,67,14,49,0.0 +15972,24,4.5,14,0.0 +15972,8,40,13,0.0 +15972,19,9.2,24,0.0 +15972,28,45.6,43,0.0 +15972,35,18,47,0.0 +15972,20,81,27,0.0 +15972,76,18,31,0.0 +15972,41,9.65,41,0.0 +15972,63,43.9,16,0.0 +15972,68,12.5,24,0.0 +15972,74,10,12,0.0 +15973,49,20,20,0.0 +15973,34,14,42,0.0 +15973,3,10,23,0.0 +15973,8,40,21,0.0 +15973,16,17.45,9,0.0 +15973,29,123.79,46,0.0 +15973,32,32,36,0.0 +15973,63,43.9,20,0.0 +15973,58,13.25,43,0.0 +15973,12,38,20,0.0 +15973,26,31.23,29,0.0 +15973,59,55,41,0.0 +15973,73,15,21,0.0 +15973,9,97,14,0.0 +15973,39,18,46,0.0 +15973,47,9.5,48,0.0 +15973,14,23.25,23,0.0 +15973,36,19,34,0.0 +15973,70,15,7,0.0 +15973,10,31,30,0.0 +15973,64,33.25,31,0.0 +15973,61,28.5,35,0.0 +15973,40,18.4,16,0.0 +15973,19,9.2,35,0.0 +15973,21,10,47,0.0 +15973,28,45.6,49,0.0 +15973,48,12.75,32,0.0 +15973,15,15.5,39,0.0 +15973,35,18,3,0.0 +15973,27,43.9,32,0.0 +15973,71,21.5,6,0.0 +15973,20,81,4,0.0 +15973,11,21,48,0.0 +15973,52,7,45,0.0 +15973,25,14,30,0.0 +15973,22,21,9,0.0 +15973,6,25,20,0.0 +15973,7,30,22,0.0 +15973,38,263.5,43,0.0 +15973,66,17,18,0.0 +15973,18,62.5,48,0.0 +15973,76,18,20,0.0 +15973,60,34,6,0.0 +15974,19,9.2,33,0.0 +15974,23,9,24,0.0 +15974,51,53,25,0.0 +15974,7,30,3,0.0 +15974,45,9.5,46,0.0 +15974,1,18,38,0.0 +15974,9,97,10,0.0 +15974,21,10,8,0.0 +15974,52,7,30,0.0 +15974,16,17.45,46,0.0 +15974,34,14,39,0.0 +15974,41,9.65,24,0.0 +15974,36,19,47,0.0 +15974,66,17,34,0.0 +15974,60,34,17,0.0 +15974,70,15,50,0.0 +15974,49,20,36,0.0 +15974,53,32.8,49,0.0 +15974,71,21.5,7,0.0 +15974,65,21.05,35,0.0 +15974,28,45.6,17,0.0 +15974,42,14,3,0.0 +15974,74,10,26,0.0 +15974,33,2.5,6,0.0 +15974,24,4.5,33,0.0 +15974,10,31,32,0.0 +15974,8,40,19,0.0 +15974,30,25.89,34,0.0 +15974,18,62.5,20,0.0 +15974,17,39,10,0.0 +15974,5,21.35,9,0.0 +15974,20,81,39,0.0 +15974,75,7.75,35,0.0 +15974,25,14,40,0.0 +15974,39,18,27,0.0 +15974,40,18.4,13,0.0 +15975,56,38,5,0.0 +15975,11,21,34,0.0 +15975,17,39,32,0.0 +15975,54,7.45,44,0.0 +15975,28,45.6,38,0.0 +15975,63,43.9,42,0.0 +15975,36,19,12,0.0 +15975,69,36,14,0.0 +15975,71,21.5,16,0.0 +15975,10,31,43,0.0 +15975,75,7.75,41,0.0 +15975,22,21,41,0.0 +15975,67,14,24,0.0 +15975,32,32,17,0.0 +15975,58,13.25,12,0.0 +15975,73,15,7,0.0 +15975,15,15.5,37,0.0 +15975,64,33.25,24,0.0 +15975,77,13,37,0.0 +15975,62,49.3,45,0.0 +15975,5,21.35,36,0.0 +15975,44,19.45,49,0.0 +15975,45,9.5,30,0.0 +15975,12,38,13,0.0 +15975,3,10,45,0.0 +15975,39,18,1,0.0 +15975,42,14,6,0.0 +15975,24,4.5,13,0.0 +15975,70,15,21,0.0 +15975,23,9,9,0.0 +15975,38,263.5,6,0.0 +15975,53,32.8,24,0.0 +15975,51,53,36,0.0 +15975,30,25.89,40,0.0 +15975,37,26,20,0.0 +15975,61,28.5,27,0.0 +15975,18,62.5,25,0.0 +15975,65,21.05,28,0.0 +15975,27,43.9,37,0.0 +15975,31,12.5,22,0.0 +15975,35,18,44,0.0 +15975,25,14,26,0.0 +15975,6,25,42,0.0 +15975,74,10,22,0.0 +15975,14,23.25,40,0.0 +15975,34,14,29,0.0 +15975,21,10,45,0.0 +15975,9,97,46,0.0 +15975,19,9.2,10,0.0 +15975,20,81,9,0.0 +15975,50,16.25,50,0.0 +15975,2,19,50,0.0 +15975,26,31.23,34,0.0 +15975,1,18,25,0.0 +15976,43,46,32,0.0 +15976,36,19,28,0.0 +15976,39,18,38,0.0 +15976,10,31,44,0.0 +15976,37,26,9,0.0 +15977,43,46,23,0.0 +15977,23,9,49,0.0 +15977,25,14,46,0.0 +15977,2,19,10,0.0 +15977,65,21.05,21,0.0 +15977,27,43.9,26,0.0 +15977,31,12.5,45,0.0 +15977,73,15,50,0.0 +15977,40,18.4,38,0.0 +15977,63,43.9,46,0.0 +15977,72,34.8,18,0.0 +15977,41,9.65,30,0.0 +15978,9,97,5,0.0 +15978,29,123.79,15,0.0 +15978,10,31,39,0.0 +15978,64,33.25,13,0.0 +15978,63,43.9,20,0.0 +15978,28,45.6,38,0.0 +15978,41,9.65,44,0.0 +15978,14,23.25,45,0.0 +15978,38,263.5,50,0.0 +15978,16,17.45,21,0.0 +15978,7,30,30,0.0 +15978,49,20,33,0.0 +15978,3,10,26,0.0 +15978,51,53,36,0.0 +15978,32,32,40,0.0 +15978,70,15,3,0.0 +15978,72,34.8,21,0.0 +15978,25,14,2,0.0 +15978,58,13.25,41,0.0 +15978,24,4.5,29,0.0 +15978,5,21.35,42,0.0 +15978,65,21.05,9,0.0 +15978,74,10,10,0.0 +15978,37,26,10,0.0 +15978,56,38,13,0.0 +15978,21,10,19,0.0 +15978,45,9.5,20,0.0 +15978,62,49.3,25,0.0 +15978,39,18,18,0.0 +15978,26,31.23,7,0.0 +15978,59,55,14,0.0 +15978,34,14,13,0.0 +15978,11,21,22,0.0 +15978,13,6,50,0.0 +15978,50,16.25,10,0.0 +15978,35,18,34,0.0 +15978,47,9.5,40,0.0 +15978,8,40,41,0.0 +15978,36,19,40,0.0 +15978,17,39,47,0.0 +15978,54,7.45,42,0.0 +15978,42,14,3,0.0 +15978,46,12,39,0.0 +15978,76,18,27,0.0 +15978,6,25,2,0.0 +15978,66,17,9,0.0 +15978,55,24,18,0.0 +15978,20,81,25,0.0 +15978,43,46,47,0.0 +15978,75,7.75,39,0.0 +15978,69,36,23,0.0 +15978,4,22,5,0.0 +15978,30,25.89,16,0.0 +15979,66,17,30,0.0 +15979,18,62.5,12,0.0 +15979,49,20,19,0.0 +15979,77,13,42,0.0 +15979,21,10,35,0.0 +15979,17,39,4,0.0 +15979,4,22,32,0.0 +15979,22,21,9,0.0 +15979,63,43.9,13,0.0 +15979,9,97,33,0.0 +15979,33,2.5,4,0.0 +15979,14,23.25,35,0.0 +15979,71,21.5,48,0.0 +15980,74,10,46,0.0 +15980,58,13.25,7,0.0 +15980,9,97,41,0.0 +15981,24,4.5,10,0.0 +15981,47,9.5,44,0.0 +15981,23,9,38,0.0 +15981,39,18,29,0.0 +15981,11,21,34,0.0 +15981,58,13.25,2,0.0 +15981,7,30,15,0.0 +15981,64,33.25,30,0.0 +15981,14,23.25,12,0.0 +15981,72,34.8,27,0.0 +15981,13,6,13,0.0 +15981,19,9.2,8,0.0 +15981,25,14,47,0.0 +15981,61,28.5,28,0.0 +15981,41,9.65,19,0.0 +15981,76,18,5,0.0 +15981,65,21.05,38,0.0 +15981,4,22,42,0.0 +15981,57,19.5,5,0.0 +15981,28,45.6,23,0.0 +15981,38,263.5,14,0.0 +15981,63,43.9,2,0.0 +15981,33,2.5,10,0.0 +15981,5,21.35,38,0.0 +15981,34,14,15,0.0 +15981,51,53,18,0.0 +15981,12,38,4,0.0 +15981,66,17,14,0.0 +15981,59,55,1,0.0 +15981,56,38,11,0.0 +15981,15,15.5,46,0.0 +15981,49,20,48,0.0 +15981,46,12,41,0.0 +15981,50,16.25,29,0.0 +15981,77,13,13,0.0 +15981,53,32.8,21,0.0 +15981,30,25.89,19,0.0 +15981,54,7.45,16,0.0 +15981,21,10,1,0.0 +15981,52,7,19,0.0 +15981,45,9.5,48,0.0 +15981,69,36,37,0.0 +15981,67,14,44,0.0 +15981,6,25,5,0.0 +15981,32,32,4,0.0 +15981,1,18,48,0.0 +15981,48,12.75,12,0.0 +15981,40,18.4,47,0.0 +15981,3,10,10,0.0 +15981,36,19,23,0.0 +15981,9,97,7,0.0 +15982,7,30,22,0.0 +15982,64,33.25,17,0.0 +15982,38,263.5,15,0.0 +15982,46,12,22,0.0 +15982,34,14,35,0.0 +15982,76,18,45,0.0 +15982,72,34.8,21,0.0 +15982,54,7.45,37,0.0 +15982,20,81,4,0.0 +15982,58,13.25,12,0.0 +15982,41,9.65,4,0.0 +15982,39,18,12,0.0 +15982,69,36,4,0.0 +15982,73,15,5,0.0 +15983,58,13.25,40,0.0 +15983,26,31.23,41,0.0 +15983,2,19,17,0.0 +15983,44,19.45,16,0.0 +15983,77,13,46,0.0 +15983,34,14,24,0.0 +15983,20,81,15,0.0 +15983,8,40,45,0.0 +15983,3,10,34,0.0 +15983,18,62.5,29,0.0 +15983,60,34,46,0.0 +15983,65,21.05,19,0.0 +15983,66,17,41,0.0 +15983,35,18,12,0.0 +15983,12,38,16,0.0 +15984,61,28.5,10,0.0 +15984,51,53,46,0.0 +15984,44,19.45,18,0.0 +15984,72,34.8,50,0.0 +15984,55,24,1,0.0 +15984,41,9.65,31,0.0 +15984,26,31.23,1,0.0 +15984,16,17.45,9,0.0 +15984,27,43.9,48,0.0 +15984,11,21,17,0.0 +15984,24,4.5,40,0.0 +15984,49,20,36,0.0 +15984,40,18.4,13,0.0 +15984,22,21,18,0.0 +15984,10,31,18,0.0 +15984,38,263.5,2,0.0 +15984,59,55,38,0.0 +15984,1,18,36,0.0 +15984,35,18,6,0.0 +15984,7,30,45,0.0 +15984,9,97,7,0.0 +15984,50,16.25,49,0.0 +15984,23,9,33,0.0 +15984,39,18,36,0.0 +15984,53,32.8,21,0.0 +15984,52,7,50,0.0 +15984,68,12.5,37,0.0 +15984,73,15,6,0.0 +15984,17,39,11,0.0 +15984,37,26,8,0.0 +15984,65,21.05,49,0.0 +15984,77,13,29,0.0 +15984,42,14,17,0.0 +15984,25,14,7,0.0 +15984,66,17,26,0.0 +15984,5,21.35,8,0.0 +15984,18,62.5,8,0.0 +15984,43,46,46,0.0 +15984,20,81,2,0.0 +15984,31,12.5,43,0.0 +15984,62,49.3,30,0.0 +15984,70,15,7,0.0 +15984,75,7.75,45,0.0 +15984,64,33.25,13,0.0 +15984,47,9.5,17,0.0 +15984,19,9.2,25,0.0 +15984,33,2.5,22,0.0 +15984,30,25.89,38,0.0 +15984,69,36,32,0.0 +15984,36,19,38,0.0 +15984,45,9.5,25,0.0 +15984,3,10,42,0.0 +15984,71,21.5,8,0.0 +15984,56,38,17,0.0 +15984,58,13.25,34,0.0 +15984,48,12.75,25,0.0 +15984,29,123.79,14,0.0 +15984,4,22,10,0.0 +15984,32,32,10,0.0 +15984,2,19,41,0.0 +15984,15,15.5,28,0.0 +15984,76,18,2,0.0 +15984,46,12,13,0.0 +15984,13,6,24,0.0 +15984,8,40,29,0.0 +15985,58,13.25,42,0.0 +15985,38,263.5,3,0.0 +15985,43,46,20,0.0 +15985,10,31,27,0.0 +15985,45,9.5,38,0.0 +15985,21,10,42,0.0 +15985,18,62.5,16,0.0 +15985,3,10,16,0.0 +15985,52,7,39,0.0 +15985,54,7.45,5,0.0 +15985,39,18,5,0.0 +15985,47,9.5,28,0.0 +15985,77,13,40,0.0 +15985,68,12.5,13,0.0 +15985,51,53,34,0.0 +15985,67,14,22,0.0 +15985,29,123.79,11,0.0 +15985,35,18,20,0.0 +15985,69,36,34,0.0 +15985,14,23.25,4,0.0 +15985,50,16.25,22,0.0 +15985,15,15.5,11,0.0 +15985,25,14,13,0.0 +15985,76,18,23,0.0 +15985,33,2.5,19,0.0 +15985,37,26,24,0.0 +15985,30,25.89,39,0.0 +15985,64,33.25,40,0.0 +15985,4,22,31,0.0 +15985,44,19.45,28,0.0 +15985,61,28.5,29,0.0 +15985,23,9,20,0.0 +15985,40,18.4,3,0.0 +15985,46,12,8,0.0 +15985,7,30,36,0.0 +15985,56,38,8,0.0 +15985,62,49.3,50,0.0 +15985,57,19.5,26,0.0 +15985,26,31.23,41,0.0 +15985,66,17,18,0.0 +15985,31,12.5,33,0.0 +15985,12,38,27,0.0 +15985,5,21.35,38,0.0 +15985,72,34.8,29,0.0 +15985,11,21,29,0.0 +15985,63,43.9,47,0.0 +15985,19,9.2,43,0.0 +15985,42,14,30,0.0 +15985,2,19,6,0.0 +15985,17,39,23,0.0 +15985,41,9.65,29,0.0 +15985,55,24,8,0.0 +15985,74,10,34,0.0 +15985,8,40,17,0.0 +15985,70,15,37,0.0 +15985,71,21.5,42,0.0 +15985,32,32,11,0.0 +15986,60,34,16,0.0 +15986,45,9.5,4,0.0 +15986,33,2.5,28,0.0 +15986,66,17,30,0.0 +15986,19,9.2,49,0.0 +15986,42,14,42,0.0 +15986,49,20,47,0.0 +15986,8,40,6,0.0 +15986,44,19.45,27,0.0 +15986,18,62.5,13,0.0 +15986,4,22,19,0.0 +15986,10,31,19,0.0 +15986,38,263.5,25,0.0 +15986,48,12.75,40,0.0 +15986,34,14,32,0.0 +15986,73,15,48,0.0 +15986,28,45.6,27,0.0 +15986,13,6,3,0.0 +15986,22,21,44,0.0 +15986,77,13,49,0.0 +15986,3,10,38,0.0 +15986,21,10,37,0.0 +15986,68,12.5,19,0.0 +15986,37,26,32,0.0 +15986,52,7,22,0.0 +15986,50,16.25,26,0.0 +15986,14,23.25,11,0.0 +15986,39,18,22,0.0 +15986,16,17.45,47,0.0 +15986,17,39,6,0.0 +15986,53,32.8,20,0.0 +15986,51,53,36,0.0 +15986,59,55,46,0.0 +15986,20,81,36,0.0 +15986,2,19,2,0.0 +15986,56,38,40,0.0 +15986,25,14,31,0.0 +15986,54,7.45,45,0.0 +15986,27,43.9,47,0.0 +15986,1,18,45,0.0 +15986,55,24,47,0.0 +15986,36,19,37,0.0 +15986,76,18,40,0.0 +15986,70,15,17,0.0 +15986,71,21.5,29,0.0 +15986,40,18.4,44,0.0 +15986,35,18,8,0.0 +15986,63,43.9,34,0.0 +15986,64,33.25,40,0.0 +15987,12,38,39,0.0 +15988,44,19.45,44,0.0 +15988,71,21.5,43,0.0 +15988,52,7,5,0.0 +15988,43,46,49,0.0 +15988,53,32.8,23,0.0 +15988,69,36,3,0.0 +15988,68,12.5,2,0.0 +15988,7,30,41,0.0 +15988,32,32,18,0.0 +15988,64,33.25,9,0.0 +15988,1,18,17,0.0 +15988,59,55,29,0.0 +15988,41,9.65,40,0.0 +15988,75,7.75,43,0.0 +15988,45,9.5,22,0.0 +15988,17,39,31,0.0 +15988,6,25,30,0.0 +15988,3,10,18,0.0 +15988,9,97,28,0.0 +15988,33,2.5,29,0.0 +15988,70,15,26,0.0 +15988,11,21,38,0.0 +15988,15,15.5,20,0.0 +15988,28,45.6,18,0.0 +15988,67,14,14,0.0 +15988,20,81,46,0.0 +15988,72,34.8,10,0.0 +15988,39,18,8,0.0 +15988,21,10,39,0.0 +15988,48,12.75,37,0.0 +15988,49,20,40,0.0 +15988,73,15,25,0.0 +15988,46,12,45,0.0 +15988,35,18,20,0.0 +15988,76,18,5,0.0 +15988,5,21.35,13,0.0 +15988,63,43.9,22,0.0 +15988,36,19,32,0.0 +15988,31,12.5,31,0.0 +15988,34,14,17,0.0 +15988,60,34,47,0.0 +15988,55,24,18,0.0 +15988,23,9,42,0.0 +15988,25,14,15,0.0 +15989,24,4.5,50,0.0 +15989,71,21.5,6,0.0 +15989,39,18,31,0.0 +15989,69,36,18,0.0 +15989,19,9.2,30,0.0 +15989,61,28.5,18,0.0 +15989,44,19.45,31,0.0 +15989,63,43.9,23,0.0 +15989,30,25.89,1,0.0 +15989,57,19.5,49,0.0 +15989,51,53,37,0.0 +15989,22,21,9,0.0 +15989,37,26,47,0.0 +15989,31,12.5,2,0.0 +15989,7,30,49,0.0 +15989,34,14,36,0.0 +15989,5,21.35,45,0.0 +15989,28,45.6,37,0.0 +15989,9,97,14,0.0 +15989,50,16.25,1,0.0 +15989,65,21.05,44,0.0 +15989,66,17,1,0.0 +15989,1,18,6,0.0 +15989,76,18,12,0.0 +15989,16,17.45,31,0.0 +15989,60,34,18,0.0 +15989,46,12,14,0.0 +15989,59,55,5,0.0 +15989,56,38,5,0.0 +15989,36,19,49,0.0 +15989,70,15,17,0.0 +15989,11,21,46,0.0 +15989,77,13,16,0.0 +15989,67,14,14,0.0 +15989,33,2.5,6,0.0 +15989,38,263.5,40,0.0 +15989,41,9.65,31,0.0 +15989,62,49.3,12,0.0 +15989,54,7.45,9,0.0 +15989,55,24,14,0.0 +15989,10,31,43,0.0 +15989,75,7.75,46,0.0 +15989,13,6,8,0.0 +15989,6,25,40,0.0 +15990,71,21.5,6,0.0 +15990,65,21.05,6,0.0 +15990,44,19.45,15,0.0 +15990,58,13.25,13,0.0 +15990,8,40,4,0.0 +15990,34,14,17,0.0 +15990,60,34,6,0.0 +15990,62,49.3,33,0.0 +15990,47,9.5,25,0.0 +15990,55,24,46,0.0 +15990,57,19.5,3,0.0 +15990,46,12,35,0.0 +15990,11,21,42,0.0 +15990,1,18,28,0.0 +15990,75,7.75,21,0.0 +15990,18,62.5,17,0.0 +15990,54,7.45,30,0.0 +15990,35,18,23,0.0 +15990,38,263.5,50,0.0 +15990,26,31.23,39,0.0 +15990,61,28.5,37,0.0 +15990,64,33.25,39,0.0 +15990,25,14,45,0.0 +15990,10,31,36,0.0 +15990,2,19,21,0.0 +15990,17,39,28,0.0 +15990,33,2.5,10,0.0 +15990,32,32,3,0.0 +15990,43,46,41,0.0 +15990,5,21.35,30,0.0 +15990,7,30,30,0.0 +15990,69,36,21,0.0 +15990,77,13,30,0.0 +15990,19,9.2,12,0.0 +15990,36,19,46,0.0 +15990,13,6,19,0.0 +15990,63,43.9,31,0.0 +15990,20,81,36,0.0 +15990,14,23.25,17,0.0 +15990,22,21,30,0.0 +15990,73,15,38,0.0 +15990,68,12.5,5,0.0 +15990,56,38,41,0.0 +15990,49,20,25,0.0 +15990,74,10,5,0.0 +15990,42,14,48,0.0 +15990,29,123.79,42,0.0 +15990,21,10,3,0.0 +15991,46,12,26,0.0 +15991,25,14,25,0.0 +15991,51,53,23,0.0 +15991,33,2.5,40,0.0 +15991,29,123.79,37,0.0 +15991,24,4.5,36,0.0 +15991,56,38,7,0.0 +15991,4,22,21,0.0 +15991,16,17.45,3,0.0 +15991,27,43.9,6,0.0 +15991,13,6,32,0.0 +15991,75,7.75,21,0.0 +15991,41,9.65,28,0.0 +15991,52,7,47,0.0 +15991,57,19.5,50,0.0 +15991,48,12.75,30,0.0 +15991,35,18,32,0.0 +15991,45,9.5,15,0.0 +15991,55,24,20,0.0 +15991,9,97,42,0.0 +15991,60,34,11,0.0 +15991,19,9.2,35,0.0 +15991,11,21,48,0.0 +15991,36,19,42,0.0 +15991,34,14,37,0.0 +15991,18,62.5,28,0.0 +15991,49,20,13,0.0 +15991,72,34.8,30,0.0 +15991,3,10,26,0.0 +15991,64,33.25,14,0.0 +15991,73,15,9,0.0 +15991,15,15.5,7,0.0 +15991,30,25.89,35,0.0 +15991,67,14,20,0.0 +15991,7,30,8,0.0 +15991,65,21.05,33,0.0 +15991,37,26,45,0.0 +15991,23,9,10,0.0 +15991,21,10,28,0.0 +15991,26,31.23,27,0.0 +15991,53,32.8,13,0.0 +15991,69,36,29,0.0 +15991,39,18,9,0.0 +15991,44,19.45,26,0.0 +15991,54,7.45,17,0.0 +15991,62,49.3,49,0.0 +15991,47,9.5,30,0.0 +15991,10,31,25,0.0 +15991,68,12.5,10,0.0 +15991,59,55,49,0.0 +15991,20,81,29,0.0 +15991,12,38,28,0.0 +15991,61,28.5,42,0.0 +15991,74,10,20,0.0 +15991,28,45.6,12,0.0 +15991,32,32,48,0.0 +15991,58,13.25,42,0.0 +15991,63,43.9,32,0.0 +15991,2,19,34,0.0 +15991,8,40,6,0.0 +15991,14,23.25,2,0.0 +15991,6,25,40,0.0 +15991,40,18.4,17,0.0 +15992,41,9.65,39,0.0 +15992,36,19,10,0.0 +15992,63,43.9,39,0.0 +15992,15,15.5,26,0.0 +15992,12,38,26,0.0 +15992,40,18.4,9,0.0 +15992,60,34,20,0.0 +15992,21,10,3,0.0 +15992,46,12,3,0.0 +15992,61,28.5,25,0.0 +15992,22,21,26,0.0 +15992,42,14,10,0.0 +15992,1,18,32,0.0 +15992,50,16.25,44,0.0 +15992,55,24,47,0.0 +15992,4,22,48,0.0 +15992,76,18,2,0.0 +15992,18,62.5,22,0.0 +15992,17,39,2,0.0 +15992,10,31,1,0.0 +15992,47,9.5,1,0.0 +15992,51,53,34,0.0 +15992,56,38,14,0.0 +15992,44,19.45,11,0.0 +15992,30,25.89,11,0.0 +15992,43,46,17,0.0 +15992,72,34.8,8,0.0 +15992,37,26,7,0.0 +15992,23,9,23,0.0 +15992,9,97,3,0.0 +15992,69,36,36,0.0 +15992,59,55,23,0.0 +15992,74,10,16,0.0 +15992,11,21,20,0.0 +15992,8,40,13,0.0 +15992,77,13,17,0.0 +15992,70,15,46,0.0 +15992,62,49.3,22,0.0 +15992,3,10,23,0.0 +15992,65,21.05,6,0.0 +15992,25,14,41,0.0 +15992,27,43.9,1,0.0 +15992,45,9.5,26,0.0 +15992,35,18,21,0.0 +15992,34,14,34,0.0 +15992,64,33.25,32,0.0 +15992,29,123.79,1,0.0 +15992,2,19,6,0.0 +15992,19,9.2,27,0.0 +15992,71,21.5,27,0.0 +15992,7,30,36,0.0 +15992,67,14,41,0.0 +15993,41,9.65,39,0.0 +15993,69,36,18,0.0 +15993,8,40,25,0.0 +15993,76,18,24,0.0 +15993,50,16.25,47,0.0 +15993,26,31.23,19,0.0 +15993,35,18,37,0.0 +15993,47,9.5,20,0.0 +15993,24,4.5,19,0.0 +15993,18,62.5,48,0.0 +15993,61,28.5,38,0.0 +15993,60,34,36,0.0 +15993,11,21,16,0.0 +15993,75,7.75,15,0.0 +15993,3,10,45,0.0 +15993,23,9,44,0.0 +15993,17,39,4,0.0 +15993,53,32.8,38,0.0 +15993,15,15.5,38,0.0 +15993,77,13,7,0.0 +15993,7,30,38,0.0 +15993,59,55,10,0.0 +15993,27,43.9,6,0.0 +15993,62,49.3,19,0.0 +15993,10,31,2,0.0 +15993,39,18,16,0.0 +15993,14,23.25,48,0.0 +15993,65,21.05,9,0.0 +15993,32,32,35,0.0 +15993,21,10,10,0.0 +15993,55,24,5,0.0 +15993,1,18,50,0.0 +15993,36,19,38,0.0 +15993,12,38,34,0.0 +15993,73,15,45,0.0 +15993,19,9.2,46,0.0 +15993,48,12.75,36,0.0 +15993,34,14,24,0.0 +15993,20,81,6,0.0 +15993,25,14,15,0.0 +15993,42,14,42,0.0 +15993,9,97,22,0.0 +15993,13,6,12,0.0 +15993,43,46,7,0.0 +15993,30,25.89,48,0.0 +15993,2,19,33,0.0 +15993,49,20,32,0.0 +15993,51,53,23,0.0 +15993,40,18.4,3,0.0 +15993,72,34.8,22,0.0 +15993,71,21.5,21,0.0 +15993,52,7,36,0.0 +15993,22,21,12,0.0 +15993,37,26,29,0.0 +15993,4,22,8,0.0 +15993,58,13.25,3,0.0 +15993,70,15,17,0.0 +15993,63,43.9,9,0.0 +15993,31,12.5,3,0.0 +15993,33,2.5,36,0.0 +15993,44,19.45,41,0.0 +15993,6,25,44,0.0 +15993,45,9.5,9,0.0 +15993,29,123.79,26,0.0 +15993,66,17,19,0.0 +15993,54,7.45,12,0.0 +15993,56,38,27,0.0 +15993,5,21.35,4,0.0 +15993,46,12,11,0.0 +15993,38,263.5,12,0.0 +15993,28,45.6,27,0.0 +15993,64,33.25,26,0.0 +15993,67,14,47,0.0 +15993,68,12.5,39,0.0 +15993,16,17.45,16,0.0 +15993,74,10,16,0.0 +15993,57,19.5,49,0.0 +15994,29,123.79,27,0.0 +15994,38,263.5,9,0.0 +15994,65,21.05,23,0.0 +15994,3,10,30,0.0 +15994,13,6,45,0.0 +15994,16,17.45,35,0.0 +15994,73,15,47,0.0 +15994,14,23.25,46,0.0 +15994,55,24,43,0.0 +15994,17,39,46,0.0 +15994,40,18.4,24,0.0 +15994,19,9.2,28,0.0 +15994,42,14,32,0.0 +15994,64,33.25,14,0.0 +15994,72,34.8,32,0.0 +15994,71,21.5,32,0.0 +15994,39,18,8,0.0 +15994,75,7.75,27,0.0 +15994,34,14,44,0.0 +15994,56,38,10,0.0 +15994,10,31,7,0.0 +15994,44,19.45,11,0.0 +15994,58,13.25,43,0.0 +15994,45,9.5,32,0.0 +15994,23,9,8,0.0 +15994,61,28.5,13,0.0 +15994,15,15.5,17,0.0 +15994,2,19,43,0.0 +15994,33,2.5,21,0.0 +15994,74,10,24,0.0 +15994,46,12,15,0.0 +15994,43,46,31,0.0 +15994,77,13,35,0.0 +15995,48,12.75,49,0.0 +15995,27,43.9,2,0.0 +15995,59,55,14,0.0 +15995,2,19,3,0.0 +15995,71,21.5,17,0.0 +15995,15,15.5,33,0.0 +15995,75,7.75,49,0.0 +15995,25,14,31,0.0 +15995,42,14,33,0.0 +15995,13,6,7,0.0 +15995,77,13,50,0.0 +15995,17,39,39,0.0 +15995,57,19.5,23,0.0 +15995,8,40,35,0.0 +15995,7,30,13,0.0 +15995,67,14,23,0.0 +15995,11,21,36,0.0 +15995,19,9.2,21,0.0 +15995,47,9.5,5,0.0 +15995,26,31.23,3,0.0 +15995,24,4.5,14,0.0 +15995,70,15,40,0.0 +15996,10,31,6,0.0 +15996,68,12.5,2,0.0 +15996,75,7.75,47,0.0 +15996,59,55,22,0.0 +15996,41,9.65,20,0.0 +15996,63,43.9,47,0.0 +15996,39,18,29,0.0 +15996,29,123.79,28,0.0 +15996,53,32.8,16,0.0 +15996,1,18,29,0.0 +15996,74,10,42,0.0 +15996,56,38,22,0.0 +15996,30,25.89,20,0.0 +15997,27,43.9,32,0.0 +15997,8,40,48,0.0 +15997,54,7.45,3,0.0 +15997,50,16.25,11,0.0 +15997,46,12,38,0.0 +15997,30,25.89,49,0.0 +15997,33,2.5,8,0.0 +15997,38,263.5,19,0.0 +15997,60,34,44,0.0 +15997,55,24,32,0.0 +15997,5,21.35,45,0.0 +15997,37,26,30,0.0 +15997,1,18,46,0.0 +15997,59,55,14,0.0 +15997,66,17,35,0.0 +15997,61,28.5,14,0.0 +15997,64,33.25,28,0.0 +15997,65,21.05,47,0.0 +15997,9,97,29,0.0 +15997,24,4.5,35,0.0 +15997,73,15,34,0.0 +15997,3,10,13,0.0 +15997,48,12.75,1,0.0 +15997,42,14,21,0.0 +15997,19,9.2,8,0.0 +15997,11,21,21,0.0 +15997,14,23.25,9,0.0 +15997,56,38,16,0.0 +15997,71,21.5,21,0.0 +15997,26,31.23,37,0.0 +15997,62,49.3,45,0.0 +15997,34,14,17,0.0 +15997,16,17.45,14,0.0 +15997,57,19.5,45,0.0 +15997,2,19,35,0.0 +15997,12,38,33,0.0 +15997,76,18,46,0.0 +15997,32,32,33,0.0 +15997,20,81,41,0.0 +15997,75,7.75,39,0.0 +15997,15,15.5,13,0.0 +15997,68,12.5,38,0.0 +15997,41,9.65,48,0.0 +15997,45,9.5,49,0.0 +15997,72,34.8,36,0.0 +15997,7,30,32,0.0 +15997,40,18.4,29,0.0 +15997,18,62.5,23,0.0 +15997,25,14,13,0.0 +15997,49,20,46,0.0 +15997,28,45.6,32,0.0 +15997,6,25,10,0.0 +15997,29,123.79,30,0.0 +15997,21,10,12,0.0 +15997,44,19.45,22,0.0 +15997,4,22,24,0.0 +15997,36,19,38,0.0 +15997,10,31,39,0.0 +15997,31,12.5,48,0.0 +15997,69,36,24,0.0 +15997,17,39,17,0.0 +15997,58,13.25,17,0.0 +15997,39,18,17,0.0 +15997,22,21,27,0.0 +15997,67,14,3,0.0 +15997,63,43.9,2,0.0 +15997,23,9,36,0.0 +15997,51,53,29,0.0 +15997,77,13,39,0.0 +15997,74,10,8,0.0 +15997,70,15,49,0.0 +15997,47,9.5,7,0.0 +15997,52,7,48,0.0 +15997,43,46,17,0.0 +15997,35,18,14,0.0 +15998,55,24,16,0.0 +15998,45,9.5,16,0.0 +15998,57,19.5,30,0.0 +15999,74,10,31,0.0 +15999,61,28.5,40,0.0 +15999,47,9.5,43,0.0 +15999,62,49.3,46,0.0 +15999,76,18,8,0.0 +15999,31,12.5,34,0.0 +15999,70,15,6,0.0 +15999,13,6,16,0.0 +15999,2,19,6,0.0 +15999,17,39,44,0.0 +15999,50,16.25,12,0.0 +15999,6,25,21,0.0 +15999,19,9.2,23,0.0 +15999,35,18,50,0.0 +15999,67,14,4,0.0 +15999,45,9.5,45,0.0 +15999,65,21.05,29,0.0 +15999,46,12,32,0.0 +15999,9,97,14,0.0 +15999,54,7.45,31,0.0 +15999,49,20,15,0.0 +15999,43,46,22,0.0 +15999,64,33.25,50,0.0 +15999,8,40,35,0.0 +15999,56,38,44,0.0 +15999,15,15.5,45,0.0 +15999,52,7,6,0.0 +15999,16,17.45,49,0.0 +15999,4,22,15,0.0 +15999,66,17,5,0.0 +15999,39,18,7,0.0 +15999,48,12.75,47,0.0 +15999,33,2.5,50,0.0 +15999,53,32.8,43,0.0 +15999,40,18.4,26,0.0 +15999,20,81,21,0.0 +15999,36,19,4,0.0 +15999,27,43.9,38,0.0 +15999,55,24,33,0.0 +15999,58,13.25,7,0.0 +15999,11,21,41,0.0 +15999,1,18,35,0.0 +15999,44,19.45,31,0.0 +15999,28,45.6,16,0.0 +15999,18,62.5,36,0.0 +15999,26,31.23,10,0.0 +15999,24,4.5,49,0.0 +15999,30,25.89,1,0.0 +15999,14,23.25,47,0.0 +15999,41,9.65,50,0.0 +15999,34,14,3,0.0 +15999,21,10,13,0.0 +15999,60,34,42,0.0 +15999,23,9,14,0.0 +15999,12,38,30,0.0 +15999,32,32,36,0.0 +15999,63,43.9,36,0.0 +15999,37,26,42,0.0 +15999,3,10,30,0.0 +15999,68,12.5,27,0.0 +15999,51,53,13,0.0 +15999,71,21.5,24,0.0 +15999,72,34.8,11,0.0 +15999,42,14,4,0.0 +15999,5,21.35,38,0.0 +15999,25,14,48,0.0 +15999,7,30,28,0.0 +15999,10,31,17,0.0 +15999,38,263.5,15,0.0 +15999,77,13,7,0.0 +15999,22,21,17,0.0 +15999,57,19.5,5,0.0 +15999,69,36,32,0.0 +15999,29,123.79,1,0.0 +15999,75,7.75,13,0.0 +15999,73,15,29,0.0 +16000,59,55,45,0.0 +16000,30,25.89,29,0.0 +16000,46,12,25,0.0 +16000,8,40,37,0.0 +16000,24,4.5,29,0.0 +16000,22,21,38,0.0 +16000,11,21,11,0.0 +16000,47,9.5,40,0.0 +16000,6,25,44,0.0 +16000,25,14,23,0.0 +16000,48,12.75,24,0.0 +16000,52,7,34,0.0 +16000,31,12.5,28,0.0 +16000,36,19,15,0.0 +16000,76,18,3,0.0 +16000,9,97,40,0.0 +16000,75,7.75,21,0.0 +16000,38,263.5,9,0.0 +16000,37,26,9,0.0 +16000,32,32,34,0.0 +16000,70,15,4,0.0 +16000,74,10,39,0.0 +16000,60,34,39,0.0 +16000,26,31.23,40,0.0 +16000,55,24,19,0.0 +16000,16,17.45,5,0.0 +16000,43,46,34,0.0 +16000,77,13,11,0.0 +16000,35,18,47,0.0 +16000,61,28.5,16,0.0 +16000,68,12.5,30,0.0 +16000,63,43.9,30,0.0 +16000,15,15.5,49,0.0 +16000,17,39,35,0.0 +16000,51,53,25,0.0 +16000,33,2.5,36,0.0 +16000,28,45.6,20,0.0 +16000,65,21.05,36,0.0 +16000,57,19.5,48,0.0 +16000,67,14,49,0.0 +16000,13,6,50,0.0 +16000,39,18,21,0.0 +16000,64,33.25,14,0.0 +16000,44,19.45,44,0.0 +16000,21,10,39,0.0 +16000,12,38,24,0.0 +16000,10,31,17,0.0 +16000,41,9.65,16,0.0 +16001,9,97,29,0.0 +16001,16,17.45,49,0.0 +16002,64,33.25,42,0.0 +16002,52,7,31,0.0 +16002,73,15,7,0.0 +16002,48,12.75,49,0.0 +16002,6,25,8,0.0 +16002,59,55,42,0.0 +16002,2,19,21,0.0 +16002,54,7.45,30,0.0 +16002,50,16.25,1,0.0 +16002,12,38,43,0.0 +16002,44,19.45,45,0.0 +16002,29,123.79,40,0.0 +16002,76,18,1,0.0 +16002,30,25.89,11,0.0 +16002,47,9.5,36,0.0 +16002,21,10,16,0.0 +16002,11,21,3,0.0 +16002,60,34,22,0.0 +16002,72,34.8,15,0.0 +16002,51,53,2,0.0 +16002,17,39,19,0.0 +16002,27,43.9,25,0.0 +16002,19,9.2,5,0.0 +16002,49,20,37,0.0 +16002,40,18.4,11,0.0 +16002,26,31.23,23,0.0 +16002,67,14,41,0.0 +16002,63,43.9,40,0.0 +16002,33,2.5,2,0.0 +16002,45,9.5,8,0.0 +16002,7,30,16,0.0 +16002,61,28.5,6,0.0 +16002,43,46,46,0.0 +16002,18,62.5,38,0.0 +16002,39,18,26,0.0 +16002,14,23.25,11,0.0 +16002,57,19.5,39,0.0 +16002,38,263.5,30,0.0 +16002,3,10,1,0.0 +16002,32,32,37,0.0 +16002,37,26,43,0.0 +16002,9,97,40,0.0 +16002,42,14,1,0.0 +16002,28,45.6,7,0.0 +16002,16,17.45,44,0.0 +16002,10,31,1,0.0 +16002,13,6,16,0.0 +16002,66,17,2,0.0 +16002,22,21,48,0.0 +16002,75,7.75,50,0.0 +16002,65,21.05,31,0.0 +16002,55,24,4,0.0 +16002,20,81,46,0.0 +16002,24,4.5,8,0.0 +16002,53,32.8,29,0.0 +16002,56,38,4,0.0 +16002,4,22,11,0.0 +16002,25,14,50,0.0 +16002,69,36,32,0.0 +16002,35,18,29,0.0 +16002,34,14,47,0.0 +16002,62,49.3,5,0.0 +16003,61,28.5,45,0.0 +16003,69,36,7,0.0 +16003,14,23.25,15,0.0 +16003,44,19.45,16,0.0 +16003,30,25.89,7,0.0 +16003,9,97,32,0.0 +16003,29,123.79,15,0.0 +16003,46,12,10,0.0 +16003,3,10,17,0.0 +16003,73,15,31,0.0 +16003,26,31.23,3,0.0 +16003,1,18,45,0.0 +16003,20,81,44,0.0 +16003,48,12.75,6,0.0 +16003,52,7,47,0.0 +16003,45,9.5,41,0.0 +16003,28,45.6,36,0.0 +16003,24,4.5,30,0.0 +16003,51,53,32,0.0 +16003,56,38,27,0.0 +16003,54,7.45,46,0.0 +16003,68,12.5,24,0.0 +16003,18,62.5,8,0.0 +16003,43,46,14,0.0 +16003,8,40,47,0.0 +16003,13,6,7,0.0 +16003,38,263.5,29,0.0 +16003,16,17.45,18,0.0 +16003,22,21,49,0.0 +16003,64,33.25,35,0.0 +16003,50,16.25,2,0.0 +16003,42,14,30,0.0 +16003,77,13,29,0.0 +16003,75,7.75,20,0.0 +16003,10,31,42,0.0 +16003,32,32,43,0.0 +16003,5,21.35,37,0.0 +16003,62,49.3,15,0.0 +16003,11,21,44,0.0 +16003,12,38,40,0.0 +16003,70,15,35,0.0 +16003,41,9.65,19,0.0 +16003,58,13.25,46,0.0 +16003,71,21.5,33,0.0 +16003,6,25,25,0.0 +16003,59,55,20,0.0 +16003,47,9.5,3,0.0 +16003,36,19,1,0.0 +16004,41,9.65,25,0.0 +16004,53,32.8,22,0.0 +16004,35,18,16,0.0 +16004,23,9,41,0.0 +16004,6,25,49,0.0 +16004,3,10,19,0.0 +16004,59,55,22,0.0 +16004,38,263.5,18,0.0 +16004,22,21,1,0.0 +16004,5,21.35,18,0.0 +16004,58,13.25,43,0.0 +16004,52,7,32,0.0 +16004,47,9.5,16,0.0 +16004,9,97,19,0.0 +16004,13,6,8,0.0 +16004,64,33.25,44,0.0 +16004,34,14,22,0.0 +16004,17,39,29,0.0 +16004,8,40,29,0.0 +16004,29,123.79,14,0.0 +16004,42,14,17,0.0 +16004,72,34.8,29,0.0 +16004,74,10,35,0.0 +16004,68,12.5,31,0.0 +16004,48,12.75,11,0.0 +16004,60,34,32,0.0 +16004,16,17.45,17,0.0 +16004,12,38,32,0.0 +16004,50,16.25,1,0.0 +16004,43,46,33,0.0 +16004,2,19,48,0.0 +16004,55,24,15,0.0 +16004,57,19.5,7,0.0 +16004,25,14,47,0.0 +16004,63,43.9,30,0.0 +16004,65,21.05,19,0.0 +16004,32,32,2,0.0 +16004,27,43.9,44,0.0 +16004,19,9.2,6,0.0 +16004,31,12.5,31,0.0 +16004,75,7.75,31,0.0 +16004,37,26,3,0.0 +16004,49,20,31,0.0 +16004,71,21.5,15,0.0 +16004,10,31,30,0.0 +16004,11,21,11,0.0 +16005,31,12.5,26,0.0 +16005,7,30,30,0.0 +16005,66,17,21,0.0 +16005,59,55,34,0.0 +16005,71,21.5,23,0.0 +16005,12,38,21,0.0 +16005,8,40,31,0.0 +16005,34,14,48,0.0 +16005,22,21,41,0.0 +16005,77,13,27,0.0 +16005,63,43.9,5,0.0 +16005,21,10,9,0.0 +16005,35,18,4,0.0 +16005,53,32.8,5,0.0 +16005,26,31.23,44,0.0 +16005,51,53,45,0.0 +16005,54,7.45,9,0.0 +16005,43,46,39,0.0 +16005,52,7,16,0.0 +16005,4,22,9,0.0 +16005,69,36,8,0.0 +16005,70,15,37,0.0 +16005,29,123.79,23,0.0 +16005,73,15,3,0.0 +16005,75,7.75,47,0.0 +16006,39,18,44,0.0 +16006,25,14,34,0.0 +16006,14,23.25,5,0.0 +16006,56,38,30,0.0 +16006,34,14,10,0.0 +16006,46,12,7,0.0 +16006,31,12.5,10,0.0 +16006,73,15,10,0.0 +16006,45,9.5,23,0.0 +16006,11,21,38,0.0 +16006,17,39,12,0.0 +16006,69,36,29,0.0 +16006,74,10,15,0.0 +16006,43,46,2,0.0 +16006,57,19.5,8,0.0 +16006,42,14,32,0.0 +16006,21,10,46,0.0 +16006,28,45.6,12,0.0 +16006,63,43.9,50,0.0 +16006,41,9.65,38,0.0 +16006,16,17.45,3,0.0 +16006,50,16.25,38,0.0 +16006,62,49.3,33,0.0 +16006,61,28.5,46,0.0 +16006,76,18,50,0.0 +16006,55,24,42,0.0 +16006,19,9.2,21,0.0 +16006,22,21,20,0.0 +16007,4,22,25,0.0 +16007,38,263.5,3,0.0 +16007,64,33.25,18,0.0 +16007,70,15,20,0.0 +16007,6,25,5,0.0 +16007,43,46,30,0.0 +16007,50,16.25,21,0.0 +16007,26,31.23,15,0.0 +16007,63,43.9,42,0.0 +16007,51,53,5,0.0 +16007,18,62.5,15,0.0 +16007,49,20,25,0.0 +16007,77,13,47,0.0 +16007,31,12.5,15,0.0 +16007,16,17.45,50,0.0 +16007,19,9.2,4,0.0 +16007,76,18,38,0.0 +16007,3,10,19,0.0 +16007,20,81,28,0.0 +16007,36,19,39,0.0 +16007,55,24,20,0.0 +16007,41,9.65,1,0.0 +16007,73,15,28,0.0 +16007,52,7,5,0.0 +16007,47,9.5,1,0.0 +16008,44,19.45,2,0.0 +16008,56,38,48,0.0 +16008,6,25,50,0.0 +16008,38,263.5,31,0.0 +16008,36,19,23,0.0 +16008,39,18,37,0.0 +16008,15,15.5,4,0.0 +16008,77,13,5,0.0 +16008,9,97,20,0.0 +16008,50,16.25,29,0.0 +16008,55,24,28,0.0 +16008,47,9.5,41,0.0 +16008,66,17,8,0.0 +16008,17,39,37,0.0 +16008,68,12.5,19,0.0 +16008,23,9,25,0.0 +16008,61,28.5,13,0.0 +16008,67,14,15,0.0 +16008,65,21.05,44,0.0 +16008,59,55,11,0.0 +16008,70,15,3,0.0 +16008,13,6,18,0.0 +16008,69,36,15,0.0 +16008,22,21,11,0.0 +16008,16,17.45,26,0.0 +16008,8,40,48,0.0 +16008,60,34,44,0.0 +16008,32,32,23,0.0 +16008,62,49.3,12,0.0 +16008,21,10,22,0.0 +16008,57,19.5,46,0.0 +16008,11,21,9,0.0 +16008,45,9.5,3,0.0 +16009,12,38,14,0.0 +16009,77,13,29,0.0 +16009,64,33.25,14,0.0 +16009,73,15,3,0.0 +16009,74,10,23,0.0 +16009,4,22,31,0.0 +16009,31,12.5,15,0.0 +16009,43,46,19,0.0 +16009,5,21.35,17,0.0 +16009,38,263.5,27,0.0 +16009,36,19,26,0.0 +16009,16,17.45,32,0.0 +16009,15,15.5,20,0.0 +16009,27,43.9,32,0.0 +16009,60,34,43,0.0 +16009,71,21.5,28,0.0 +16009,28,45.6,4,0.0 +16009,63,43.9,36,0.0 +16009,41,9.65,26,0.0 +16009,19,9.2,23,0.0 +16009,69,36,3,0.0 +16009,46,12,18,0.0 +16009,59,55,23,0.0 +16009,8,40,28,0.0 +16009,48,12.75,4,0.0 +16009,17,39,41,0.0 +16009,65,21.05,45,0.0 +16009,35,18,34,0.0 +16009,68,12.5,9,0.0 +16009,13,6,1,0.0 +16009,67,14,16,0.0 +16009,7,30,23,0.0 +16009,51,53,16,0.0 +16009,66,17,12,0.0 +16009,50,16.25,20,0.0 +16009,21,10,13,0.0 +16009,24,4.5,27,0.0 +16009,42,14,28,0.0 +16009,54,7.45,25,0.0 +16009,70,15,21,0.0 +16009,22,21,26,0.0 +16009,61,28.5,41,0.0 +16009,11,21,17,0.0 +16009,1,18,11,0.0 +16009,20,81,5,0.0 +16009,34,14,18,0.0 +16009,45,9.5,18,0.0 +16009,32,32,30,0.0 +16009,49,20,19,0.0 +16009,2,19,14,0.0 +16010,51,53,4,0.0 +16010,11,21,22,0.0 +16010,40,18.4,26,0.0 +16010,69,36,48,0.0 +16010,26,31.23,11,0.0 +16010,38,263.5,10,0.0 +16010,25,14,15,0.0 +16010,70,15,17,0.0 +16010,49,20,34,0.0 +16010,16,17.45,1,0.0 +16010,10,31,47,0.0 +16010,57,19.5,25,0.0 +16010,7,30,31,0.0 +16010,43,46,28,0.0 +16010,58,13.25,23,0.0 +16010,66,17,4,0.0 +16010,73,15,49,0.0 +16010,1,18,13,0.0 +16010,27,43.9,6,0.0 +16010,68,12.5,26,0.0 +16010,33,2.5,48,0.0 +16010,77,13,11,0.0 +16010,34,14,7,0.0 +16010,52,7,22,0.0 +16010,47,9.5,9,0.0 +16010,22,21,29,0.0 +16010,18,62.5,42,0.0 +16010,32,32,14,0.0 +16010,30,25.89,42,0.0 +16010,42,14,22,0.0 +16010,9,97,34,0.0 +16010,65,21.05,31,0.0 +16010,60,34,24,0.0 +16010,62,49.3,10,0.0 +16010,23,9,20,0.0 +16010,50,16.25,14,0.0 +16010,12,38,37,0.0 +16010,56,38,31,0.0 +16010,45,9.5,30,0.0 +16010,41,9.65,12,0.0 +16010,71,21.5,35,0.0 +16010,2,19,37,0.0 +16010,46,12,18,0.0 +16010,31,12.5,22,0.0 +16010,61,28.5,48,0.0 +16010,4,22,36,0.0 +16010,76,18,28,0.0 +16010,67,14,38,0.0 +16010,48,12.75,7,0.0 +16010,44,19.45,23,0.0 +16010,54,7.45,20,0.0 +16011,49,20,5,0.0 +16011,27,43.9,41,0.0 +16011,63,43.9,32,0.0 +16011,13,6,47,0.0 +16011,70,15,19,0.0 +16011,57,19.5,31,0.0 +16011,4,22,33,0.0 +16011,9,97,50,0.0 +16011,3,10,19,0.0 +16011,45,9.5,34,0.0 +16011,68,12.5,45,0.0 +16011,25,14,31,0.0 +16011,14,23.25,10,0.0 +16011,34,14,12,0.0 +16011,44,19.45,42,0.0 +16011,53,32.8,14,0.0 +16011,50,16.25,7,0.0 +16011,42,14,25,0.0 +16011,36,19,46,0.0 +16011,32,32,15,0.0 +16011,7,30,49,0.0 +16011,69,36,25,0.0 +16011,20,81,22,0.0 +16011,29,123.79,41,0.0 +16011,19,9.2,32,0.0 +16011,61,28.5,10,0.0 +16011,33,2.5,32,0.0 +16011,2,19,35,0.0 +16011,30,25.89,34,0.0 +16011,21,10,15,0.0 +16011,18,62.5,4,0.0 +16011,60,34,29,0.0 +16011,56,38,39,0.0 +16011,41,9.65,29,0.0 +16011,62,49.3,36,0.0 +16011,76,18,7,0.0 +16012,7,30,10,0.0 +16012,20,81,1,0.0 +16012,36,19,16,0.0 +16012,61,28.5,36,0.0 +16012,40,18.4,5,0.0 +16012,11,21,7,0.0 +16012,45,9.5,45,0.0 +16012,74,10,2,0.0 +16012,62,49.3,15,0.0 +16012,33,2.5,19,0.0 +16012,30,25.89,42,0.0 +16012,53,32.8,45,0.0 +16012,17,39,7,0.0 +16012,60,34,22,0.0 +16012,4,22,41,0.0 +16012,58,13.25,23,0.0 +16012,27,43.9,26,0.0 +16012,69,36,7,0.0 +16012,8,40,11,0.0 +16012,35,18,5,0.0 +16012,2,19,26,0.0 +16012,34,14,18,0.0 +16012,75,7.75,11,0.0 +16012,28,45.6,31,0.0 +16012,5,21.35,26,0.0 +16012,59,55,42,0.0 +16012,24,4.5,42,0.0 +16012,29,123.79,41,0.0 +16012,18,62.5,13,0.0 +16012,46,12,4,0.0 +16012,12,38,38,0.0 +16012,31,12.5,44,0.0 +16012,23,9,12,0.0 +16012,3,10,7,0.0 +16012,32,32,22,0.0 +16012,1,18,49,0.0 +16012,38,263.5,1,0.0 +16012,54,7.45,23,0.0 +16012,51,53,3,0.0 +16012,39,18,38,0.0 +16012,71,21.5,29,0.0 +16012,13,6,43,0.0 +16012,19,9.2,44,0.0 +16012,43,46,45,0.0 +16012,55,24,21,0.0 +16012,44,19.45,44,0.0 +16012,65,21.05,35,0.0 +16012,52,7,1,0.0 +16012,26,31.23,1,0.0 +16012,64,33.25,9,0.0 +16013,27,43.9,15,0.0 +16013,14,23.25,5,0.0 +16013,64,33.25,44,0.0 +16013,40,18.4,12,0.0 +16013,44,19.45,17,0.0 +16013,1,18,23,0.0 +16013,5,21.35,3,0.0 +16013,17,39,36,0.0 +16013,53,32.8,42,0.0 +16013,74,10,18,0.0 +16013,18,62.5,18,0.0 +16013,55,24,43,0.0 +16013,41,9.65,50,0.0 +16013,28,45.6,47,0.0 +16013,10,31,32,0.0 +16014,41,9.65,23,0.0 +16015,70,15,5,0.0 +16015,66,17,7,0.0 +16015,21,10,45,0.0 +16015,54,7.45,32,0.0 +16015,53,32.8,37,0.0 +16015,17,39,33,0.0 +16015,73,15,46,0.0 +16015,69,36,15,0.0 +16015,74,10,18,0.0 +16015,4,22,24,0.0 +16015,55,24,12,0.0 +16015,1,18,22,0.0 +16015,16,17.45,21,0.0 +16015,76,18,27,0.0 +16015,11,21,7,0.0 +16015,67,14,12,0.0 +16015,68,12.5,48,0.0 +16015,8,40,11,0.0 +16015,19,9.2,29,0.0 +16015,52,7,41,0.0 +16015,37,26,8,0.0 +16015,38,263.5,29,0.0 +16015,12,38,26,0.0 +16015,7,30,27,0.0 +16015,45,9.5,40,0.0 +16015,6,25,49,0.0 +16015,75,7.75,9,0.0 +16015,63,43.9,49,0.0 +16015,30,25.89,42,0.0 +16015,29,123.79,14,0.0 +16015,77,13,34,0.0 +16015,58,13.25,22,0.0 +16015,40,18.4,40,0.0 +16015,15,15.5,23,0.0 +16016,2,19,24,0.0 +16016,1,18,1,0.0 +16016,53,32.8,34,0.0 +16016,76,18,29,0.0 +16016,16,17.45,25,0.0 +16016,42,14,40,0.0 +16016,37,26,19,0.0 +16016,9,97,14,0.0 +16016,75,7.75,35,0.0 +16016,69,36,27,0.0 +16016,57,19.5,21,0.0 +16016,18,62.5,1,0.0 +16016,70,15,50,0.0 +16016,24,4.5,11,0.0 +16016,4,22,22,0.0 +16016,35,18,37,0.0 +16016,21,10,15,0.0 +16016,11,21,43,0.0 +16016,23,9,22,0.0 +16016,59,55,2,0.0 +16016,48,12.75,43,0.0 +16016,73,15,9,0.0 +16016,64,33.25,25,0.0 +16016,33,2.5,21,0.0 +16016,41,9.65,6,0.0 +16016,50,16.25,15,0.0 +16016,38,263.5,27,0.0 +16016,43,46,16,0.0 +16016,58,13.25,44,0.0 +16016,13,6,6,0.0 +16016,25,14,46,0.0 +16016,45,9.5,42,0.0 +16016,8,40,21,0.0 +16016,61,28.5,7,0.0 +16016,63,43.9,23,0.0 +16016,19,9.2,46,0.0 +16016,32,32,39,0.0 +16016,55,24,18,0.0 +16016,10,31,21,0.0 +16016,60,34,30,0.0 +16016,56,38,39,0.0 +16016,17,39,6,0.0 +16016,7,30,16,0.0 +16016,3,10,28,0.0 +16016,34,14,31,0.0 +16016,71,21.5,30,0.0 +16016,74,10,42,0.0 +16016,6,25,35,0.0 +16016,15,15.5,13,0.0 +16016,27,43.9,31,0.0 +16016,20,81,15,0.0 +16016,72,34.8,9,0.0 +16016,36,19,35,0.0 +16016,5,21.35,22,0.0 +16016,46,12,17,0.0 +16016,51,53,15,0.0 +16016,40,18.4,25,0.0 +16016,52,7,26,0.0 +16016,30,25.89,18,0.0 +16016,67,14,31,0.0 +16016,54,7.45,35,0.0 +16016,28,45.6,49,0.0 +16016,26,31.23,28,0.0 +16016,39,18,26,0.0 +16016,49,20,13,0.0 +16016,31,12.5,43,0.0 +16016,65,21.05,13,0.0 +16016,14,23.25,34,0.0 +16016,77,13,26,0.0 +16016,44,19.45,10,0.0 +16016,22,21,2,0.0 +16016,66,17,45,0.0 +16016,62,49.3,15,0.0 +16016,12,38,44,0.0 +16016,68,12.5,15,0.0 +16016,29,123.79,23,0.0 +16017,70,15,46,0.0 +16017,41,9.65,3,0.0 +16017,19,9.2,13,0.0 +16017,30,25.89,32,0.0 +16017,48,12.75,31,0.0 +16017,26,31.23,41,0.0 +16017,20,81,24,0.0 +16017,2,19,31,0.0 +16017,22,21,14,0.0 +16017,39,18,44,0.0 +16017,76,18,10,0.0 +16018,3,10,4,0.0 +16018,25,14,4,0.0 +16018,54,7.45,21,0.0 +16018,77,13,24,0.0 +16018,12,38,13,0.0 +16018,48,12.75,35,0.0 +16018,1,18,18,0.0 +16018,52,7,35,0.0 +16018,59,55,20,0.0 +16018,43,46,32,0.0 +16018,75,7.75,4,0.0 +16018,34,14,28,0.0 +16018,71,21.5,41,0.0 +16018,64,33.25,30,0.0 +16018,31,12.5,32,0.0 +16018,10,31,38,0.0 +16018,24,4.5,47,0.0 +16018,55,24,23,0.0 +16018,39,18,38,0.0 +16018,67,14,13,0.0 +16018,51,53,19,0.0 +16018,58,13.25,50,0.0 +16018,65,21.05,30,0.0 +16018,62,49.3,29,0.0 +16018,27,43.9,35,0.0 +16018,7,30,15,0.0 +16018,63,43.9,15,0.0 +16018,32,32,2,0.0 +16018,66,17,41,0.0 +16018,33,2.5,26,0.0 +16018,8,40,26,0.0 +16018,45,9.5,47,0.0 +16018,11,21,45,0.0 +16018,35,18,25,0.0 +16018,18,62.5,20,0.0 +16018,53,32.8,43,0.0 +16018,17,39,49,0.0 +16018,42,14,3,0.0 +16018,72,34.8,8,0.0 +16018,14,23.25,16,0.0 +16018,6,25,21,0.0 +16018,22,21,47,0.0 +16018,70,15,2,0.0 +16018,29,123.79,6,0.0 +16018,46,12,49,0.0 +16018,60,34,30,0.0 +16018,2,19,29,0.0 +16018,40,18.4,17,0.0 +16018,20,81,41,0.0 +16018,28,45.6,44,0.0 +16018,44,19.45,17,0.0 +16018,76,18,18,0.0 +16018,69,36,31,0.0 +16018,41,9.65,27,0.0 +16019,23,9,29,0.0 +16019,55,24,8,0.0 +16019,20,81,42,0.0 +16019,40,18.4,38,0.0 +16019,1,18,9,0.0 +16019,32,32,42,0.0 +16019,18,62.5,29,0.0 +16019,71,21.5,5,0.0 +16019,56,38,14,0.0 +16019,21,10,36,0.0 +16019,37,26,10,0.0 +16019,12,38,2,0.0 +16019,9,97,48,0.0 +16019,3,10,14,0.0 +16019,57,19.5,10,0.0 +16019,70,15,22,0.0 +16019,34,14,44,0.0 +16019,76,18,41,0.0 +16019,49,20,35,0.0 +16019,51,53,50,0.0 +16019,46,12,5,0.0 +16019,38,263.5,4,0.0 +16019,66,17,20,0.0 +16019,6,25,13,0.0 +16019,24,4.5,22,0.0 +16019,25,14,6,0.0 +16019,14,23.25,47,0.0 +16019,27,43.9,43,0.0 +16019,39,18,47,0.0 +16019,13,6,13,0.0 +16019,8,40,43,0.0 +16019,26,31.23,1,0.0 +16019,54,7.45,17,0.0 +16019,72,34.8,9,0.0 +16019,30,25.89,2,0.0 +16019,31,12.5,29,0.0 +16019,43,46,4,0.0 +16019,47,9.5,47,0.0 +16019,67,14,20,0.0 +16019,61,28.5,1,0.0 +16019,2,19,17,0.0 +16019,16,17.45,49,0.0 +16019,35,18,9,0.0 +16019,75,7.75,8,0.0 +16019,15,15.5,17,0.0 +16019,45,9.5,4,0.0 +16019,69,36,34,0.0 +16019,77,13,28,0.0 +16019,42,14,4,0.0 +16019,19,9.2,44,0.0 +16019,60,34,42,0.0 +16019,59,55,23,0.0 +16019,62,49.3,38,0.0 +16019,63,43.9,41,0.0 +16020,1,18,49,0.0 +16020,53,32.8,37,0.0 +16020,46,12,1,0.0 +16020,69,36,25,0.0 +16020,55,24,40,0.0 +16020,28,45.6,12,0.0 +16020,77,13,6,0.0 +16020,60,34,41,0.0 +16020,58,13.25,1,0.0 +16020,14,23.25,41,0.0 +16020,2,19,28,0.0 +16020,75,7.75,8,0.0 +16020,34,14,6,0.0 +16020,9,97,3,0.0 +16020,44,19.45,16,0.0 +16020,37,26,48,0.0 +16020,30,25.89,50,0.0 +16020,65,21.05,25,0.0 +16020,18,62.5,21,0.0 +16020,43,46,47,0.0 +16020,35,18,14,0.0 +16020,24,4.5,40,0.0 +16020,21,10,41,0.0 +16020,71,21.5,49,0.0 +16020,25,14,1,0.0 +16020,63,43.9,9,0.0 +16020,66,17,19,0.0 +16020,39,18,24,0.0 +16020,7,30,27,0.0 +16020,67,14,40,0.0 +16020,12,38,37,0.0 +16020,26,31.23,46,0.0 +16020,31,12.5,28,0.0 +16020,6,25,39,0.0 +16020,51,53,18,0.0 +16020,8,40,18,0.0 +16020,45,9.5,28,0.0 +16020,23,9,8,0.0 +16020,17,39,29,0.0 +16020,41,9.65,49,0.0 +16020,64,33.25,32,0.0 +16020,3,10,1,0.0 +16020,4,22,47,0.0 +16020,48,12.75,6,0.0 +16020,13,6,23,0.0 +16020,62,49.3,45,0.0 +16020,73,15,3,0.0 +16020,15,15.5,19,0.0 +16020,74,10,26,0.0 +16021,45,9.5,37,0.0 +16021,12,38,16,0.0 +16021,68,12.5,5,0.0 +16021,52,7,30,0.0 +16021,43,46,45,0.0 +16021,61,28.5,41,0.0 +16021,59,55,37,0.0 +16021,11,21,24,0.0 +16021,6,25,7,0.0 +16021,64,33.25,31,0.0 +16021,15,15.5,30,0.0 +16021,19,9.2,40,0.0 +16021,75,7.75,10,0.0 +16021,42,14,19,0.0 +16021,8,40,3,0.0 +16021,26,31.23,34,0.0 +16021,63,43.9,27,0.0 +16021,17,39,19,0.0 +16021,33,2.5,43,0.0 +16021,44,19.45,5,0.0 +16021,38,263.5,15,0.0 +16021,30,25.89,27,0.0 +16021,13,6,44,0.0 +16021,57,19.5,10,0.0 +16021,7,30,26,0.0 +16021,23,9,21,0.0 +16021,31,12.5,14,0.0 +16021,1,18,32,0.0 +16021,4,22,28,0.0 +16021,16,17.45,25,0.0 +16021,71,21.5,45,0.0 +16021,36,19,17,0.0 +16021,5,21.35,4,0.0 +16021,53,32.8,36,0.0 +16021,14,23.25,40,0.0 +16021,49,20,27,0.0 +16021,70,15,6,0.0 +16021,40,18.4,29,0.0 +16021,32,32,29,0.0 +16021,76,18,5,0.0 +16021,10,31,35,0.0 +16021,69,36,31,0.0 +16021,39,18,47,0.0 +16021,58,13.25,27,0.0 +16021,34,14,33,0.0 +16021,72,34.8,50,0.0 +16021,51,53,40,0.0 +16021,54,7.45,38,0.0 +16021,74,10,20,0.0 +16021,62,49.3,44,0.0 +16021,65,21.05,24,0.0 +16021,60,34,7,0.0 +16021,56,38,3,0.0 +16021,28,45.6,41,0.0 +16021,66,17,6,0.0 +16021,22,21,41,0.0 +16021,50,16.25,11,0.0 +16021,46,12,10,0.0 +16021,24,4.5,32,0.0 +16021,48,12.75,45,0.0 +16021,67,14,39,0.0 +16021,21,10,35,0.0 +16021,2,19,40,0.0 +16021,55,24,47,0.0 +16021,3,10,5,0.0 +16021,9,97,49,0.0 +16021,41,9.65,8,0.0 +16021,18,62.5,18,0.0 +16021,27,43.9,32,0.0 +16021,37,26,46,0.0 +16021,20,81,37,0.0 +16021,29,123.79,1,0.0 +16021,73,15,16,0.0 +16021,35,18,36,0.0 +16021,25,14,14,0.0 +16021,47,9.5,7,0.0 +16022,76,18,33,0.0 +16022,43,46,21,0.0 +16022,16,17.45,22,0.0 +16022,73,15,8,0.0 +16022,39,18,46,0.0 +16022,12,38,40,0.0 +16022,26,31.23,44,0.0 +16022,1,18,10,0.0 +16022,42,14,49,0.0 +16022,33,2.5,20,0.0 +16022,38,263.5,34,0.0 +16022,17,39,5,0.0 +16022,29,123.79,32,0.0 +16022,65,21.05,47,0.0 +16022,62,49.3,31,0.0 +16022,44,19.45,36,0.0 +16022,63,43.9,47,0.0 +16022,14,23.25,15,0.0 +16022,30,25.89,49,0.0 +16022,46,12,12,0.0 +16022,5,21.35,45,0.0 +16022,10,31,17,0.0 +16022,52,7,12,0.0 +16022,55,24,20,0.0 +16022,53,32.8,38,0.0 +16022,32,32,14,0.0 +16022,61,28.5,48,0.0 +16022,3,10,8,0.0 +16022,21,10,30,0.0 +16022,72,34.8,14,0.0 +16022,66,17,37,0.0 +16022,31,12.5,34,0.0 +16022,15,15.5,33,0.0 +16022,64,33.25,12,0.0 +16022,47,9.5,44,0.0 +16022,4,22,49,0.0 +16022,37,26,36,0.0 +16022,54,7.45,8,0.0 +16022,69,36,33,0.0 +16022,77,13,39,0.0 +16022,24,4.5,34,0.0 +16022,11,21,16,0.0 +16022,34,14,23,0.0 +16022,25,14,27,0.0 +16022,50,16.25,14,0.0 +16022,67,14,27,0.0 +16022,40,18.4,37,0.0 +16022,35,18,15,0.0 +16022,49,20,19,0.0 +16022,75,7.75,39,0.0 +16022,22,21,45,0.0 +16022,8,40,20,0.0 +16022,57,19.5,38,0.0 +16022,23,9,31,0.0 +16022,60,34,14,0.0 +16022,70,15,12,0.0 +16022,41,9.65,49,0.0 +16022,58,13.25,12,0.0 +16022,71,21.5,10,0.0 +16022,7,30,46,0.0 +16022,59,55,43,0.0 +16023,70,15,26,0.0 +16023,20,81,31,0.0 +16023,67,14,38,0.0 +16023,9,97,8,0.0 +16023,76,18,10,0.0 +16023,2,19,1,0.0 +16023,65,21.05,19,0.0 +16023,75,7.75,4,0.0 +16023,16,17.45,32,0.0 +16023,64,33.25,3,0.0 +16024,58,13.25,40,0.0 +16024,10,31,41,0.0 +16024,53,32.8,22,0.0 +16024,19,9.2,42,0.0 +16024,16,17.45,26,0.0 +16024,9,97,25,0.0 +16024,75,7.75,27,0.0 +16024,18,62.5,28,0.0 +16024,66,17,43,0.0 +16024,39,18,25,0.0 +16024,15,15.5,11,0.0 +16024,2,19,1,0.0 +16024,51,53,4,0.0 +16024,4,22,4,0.0 +16024,22,21,27,0.0 +16024,36,19,13,0.0 +16024,30,25.89,45,0.0 +16024,41,9.65,50,0.0 +16024,26,31.23,5,0.0 +16024,60,34,35,0.0 +16024,38,263.5,8,0.0 +16024,8,40,12,0.0 +16024,24,4.5,18,0.0 +16024,25,14,32,0.0 +16024,68,12.5,26,0.0 +16024,1,18,9,0.0 +16024,32,32,45,0.0 +16024,42,14,8,0.0 +16024,21,10,7,0.0 +16024,35,18,42,0.0 +16024,33,2.5,36,0.0 +16024,14,23.25,41,0.0 +16024,69,36,43,0.0 +16024,55,24,32,0.0 +16024,29,123.79,39,0.0 +16024,52,7,24,0.0 +16024,64,33.25,26,0.0 +16024,48,12.75,6,0.0 +16024,34,14,17,0.0 +16024,23,9,11,0.0 +16024,44,19.45,47,0.0 +16024,11,21,8,0.0 +16024,73,15,19,0.0 +16024,43,46,50,0.0 +16024,28,45.6,14,0.0 +16024,6,25,35,0.0 +16024,76,18,9,0.0 +16024,13,6,40,0.0 +16024,3,10,50,0.0 +16024,40,18.4,34,0.0 +16024,54,7.45,21,0.0 +16024,63,43.9,43,0.0 +16024,47,9.5,46,0.0 +16024,59,55,34,0.0 +16024,57,19.5,34,0.0 +16024,77,13,5,0.0 +16024,17,39,33,0.0 +16024,37,26,19,0.0 +16024,5,21.35,3,0.0 +16024,65,21.05,9,0.0 +16024,46,12,49,0.0 +16024,67,14,19,0.0 +16024,50,16.25,40,0.0 +16024,7,30,39,0.0 +16024,20,81,37,0.0 +16024,62,49.3,19,0.0 +16025,1,18,12,0.0 +16025,51,53,47,0.0 +16025,41,9.65,40,0.0 +16025,43,46,43,0.0 +16025,77,13,16,0.0 +16025,56,38,33,0.0 +16025,46,12,10,0.0 +16025,75,7.75,3,0.0 +16025,57,19.5,4,0.0 +16025,55,24,33,0.0 +16025,9,97,27,0.0 +16025,22,21,32,0.0 +16025,40,18.4,13,0.0 +16025,67,14,15,0.0 +16025,26,31.23,15,0.0 +16025,33,2.5,30,0.0 +16025,16,17.45,13,0.0 +16025,58,13.25,12,0.0 +16025,52,7,21,0.0 +16025,23,9,44,0.0 +16025,64,33.25,26,0.0 +16025,60,34,50,0.0 +16025,70,15,31,0.0 +16025,29,123.79,6,0.0 +16025,37,26,8,0.0 +16025,74,10,25,0.0 +16025,76,18,21,0.0 +16025,24,4.5,30,0.0 +16025,27,43.9,42,0.0 +16025,28,45.6,21,0.0 +16025,30,25.89,22,0.0 +16025,66,17,8,0.0 +16025,34,14,14,0.0 +16025,49,20,39,0.0 +16025,4,22,3,0.0 +16025,21,10,35,0.0 +16025,25,14,19,0.0 +16025,3,10,4,0.0 +16026,29,123.79,35,0.0 +16026,49,20,29,0.0 +16026,46,12,27,0.0 +16026,37,26,24,0.0 +16026,43,46,20,0.0 +16027,57,19.5,10,0.0 +16027,38,263.5,40,0.0 +16027,29,123.79,50,0.0 +16027,44,19.45,45,0.0 +16027,21,10,46,0.0 +16027,67,14,35,0.0 +16027,48,12.75,32,0.0 +16027,51,53,50,0.0 +16027,16,17.45,9,0.0 +16027,54,7.45,42,0.0 +16027,30,25.89,17,0.0 +16027,73,15,40,0.0 +16027,56,38,41,0.0 +16027,14,23.25,38,0.0 +16027,64,33.25,4,0.0 +16027,50,16.25,37,0.0 +16027,58,13.25,5,0.0 +16027,19,9.2,7,0.0 +16027,17,39,37,0.0 +16027,41,9.65,4,0.0 +16027,53,32.8,2,0.0 +16027,9,97,43,0.0 +16027,27,43.9,37,0.0 +16027,35,18,30,0.0 +16027,31,12.5,29,0.0 +16027,49,20,21,0.0 +16028,17,39,3,0.0 +16028,28,45.6,24,0.0 +16028,35,18,2,0.0 +16028,15,15.5,7,0.0 +16028,20,81,3,0.0 +16028,10,31,12,0.0 +16028,3,10,25,0.0 +16028,68,12.5,12,0.0 +16028,7,30,41,0.0 +16028,14,23.25,47,0.0 +16028,42,14,2,0.0 +16029,15,15.5,34,0.0 +16029,12,38,1,0.0 +16029,76,18,30,0.0 +16029,16,17.45,8,0.0 +16029,62,49.3,36,0.0 +16029,18,62.5,29,0.0 +16029,64,33.25,1,0.0 +16029,48,12.75,32,0.0 +16029,57,19.5,21,0.0 +16029,55,24,44,0.0 +16029,11,21,19,0.0 +16029,45,9.5,11,0.0 +16029,10,31,48,0.0 +16029,32,32,4,0.0 +16029,2,19,11,0.0 +16029,5,21.35,5,0.0 +16029,37,26,43,0.0 +16029,75,7.75,37,0.0 +16029,19,9.2,35,0.0 +16029,61,28.5,14,0.0 +16029,31,12.5,5,0.0 +16029,72,34.8,8,0.0 +16029,27,43.9,42,0.0 +16029,71,21.5,50,0.0 +16029,63,43.9,7,0.0 +16029,29,123.79,19,0.0 +16029,8,40,11,0.0 +16029,7,30,3,0.0 +16029,17,39,33,0.0 +16029,38,263.5,37,0.0 +16029,24,4.5,49,0.0 +16029,23,9,37,0.0 +16029,20,81,23,0.0 +16029,69,36,4,0.0 +16029,3,10,4,0.0 +16029,49,20,27,0.0 +16029,74,10,16,0.0 +16029,60,34,5,0.0 +16029,22,21,16,0.0 +16029,73,15,29,0.0 +16029,46,12,39,0.0 +16029,44,19.45,23,0.0 +16029,1,18,7,0.0 +16029,56,38,13,0.0 +16029,70,15,41,0.0 +16029,34,14,30,0.0 +16029,67,14,6,0.0 +16029,6,25,16,0.0 +16029,52,7,23,0.0 +16029,65,21.05,32,0.0 +16029,13,6,43,0.0 +16029,42,14,35,0.0 +16029,40,18.4,40,0.0 +16029,47,9.5,2,0.0 +16029,51,53,42,0.0 +16029,41,9.65,38,0.0 +16029,9,97,18,0.0 +16029,43,46,50,0.0 +16029,77,13,40,0.0 +16029,21,10,19,0.0 +16029,30,25.89,33,0.0 +16029,26,31.23,27,0.0 +16029,39,18,20,0.0 +16029,36,19,45,0.0 +16029,28,45.6,21,0.0 +16029,50,16.25,38,0.0 +16029,66,17,8,0.0 +16030,40,18.4,34,0.0 +16030,2,19,14,0.0 +16030,59,55,3,0.0 +16030,15,15.5,3,0.0 +16030,54,7.45,37,0.0 +16030,3,10,19,0.0 +16030,26,31.23,45,0.0 +16030,76,18,40,0.0 +16030,17,39,20,0.0 +16030,13,6,10,0.0 +16030,28,45.6,7,0.0 +16030,16,17.45,45,0.0 +16030,42,14,28,0.0 +16030,65,21.05,31,0.0 +16030,1,18,43,0.0 +16030,24,4.5,16,0.0 +16030,36,19,29,0.0 +16030,23,9,44,0.0 +16030,33,2.5,10,0.0 +16030,37,26,9,0.0 +16030,22,21,23,0.0 +16030,18,62.5,35,0.0 +16030,77,13,3,0.0 +16030,35,18,31,0.0 +16030,21,10,8,0.0 +16030,30,25.89,48,0.0 +16030,66,17,40,0.0 +16030,62,49.3,45,0.0 +16030,25,14,45,0.0 +16030,6,25,36,0.0 +16030,70,15,17,0.0 +16030,73,15,16,0.0 +16030,10,31,28,0.0 +16030,75,7.75,15,0.0 +16030,53,32.8,47,0.0 +16030,19,9.2,40,0.0 +16030,50,16.25,46,0.0 +16030,20,81,4,0.0 +16030,51,53,37,0.0 +16030,60,34,19,0.0 +16030,45,9.5,28,0.0 +16030,48,12.75,42,0.0 +16030,67,14,26,0.0 +16030,14,23.25,33,0.0 +16030,43,46,4,0.0 +16030,32,32,3,0.0 +16030,63,43.9,16,0.0 +16030,49,20,10,0.0 +16030,38,263.5,16,0.0 +16030,31,12.5,13,0.0 +16030,29,123.79,19,0.0 +16030,47,9.5,32,0.0 +16030,11,21,15,0.0 +16030,9,97,36,0.0 +16030,69,36,15,0.0 +16030,4,22,37,0.0 +16030,68,12.5,5,0.0 +16030,44,19.45,8,0.0 +16030,52,7,32,0.0 +16030,41,9.65,2,0.0 +16030,74,10,11,0.0 +16030,71,21.5,7,0.0 +16030,72,34.8,17,0.0 +16030,34,14,22,0.0 +16030,57,19.5,47,0.0 +16031,28,45.6,25,0.0 +16031,40,18.4,24,0.0 +16031,30,25.89,26,0.0 +16031,26,31.23,13,0.0 +16031,52,7,48,0.0 +16031,24,4.5,40,0.0 +16031,21,10,4,0.0 +16031,77,13,38,0.0 +16031,54,7.45,29,0.0 +16031,25,14,46,0.0 +16031,39,18,50,0.0 +16031,42,14,15,0.0 +16031,1,18,44,0.0 +16031,49,20,17,0.0 +16031,69,36,36,0.0 +16031,70,15,47,0.0 +16031,73,15,11,0.0 +16031,64,33.25,7,0.0 +16031,15,15.5,34,0.0 +16031,23,9,21,0.0 +16031,17,39,19,0.0 +16031,56,38,22,0.0 +16031,16,17.45,21,0.0 +16031,6,25,12,0.0 +16031,47,9.5,11,0.0 +16031,62,49.3,7,0.0 +16031,63,43.9,38,0.0 +16031,76,18,22,0.0 +16031,74,10,45,0.0 +16031,48,12.75,10,0.0 +16031,36,19,7,0.0 +16031,68,12.5,35,0.0 +16031,55,24,30,0.0 +16031,37,26,10,0.0 +16031,10,31,44,0.0 +16031,7,30,26,0.0 +16031,34,14,49,0.0 +16031,12,38,31,0.0 +16031,11,21,11,0.0 +16031,58,13.25,24,0.0 +16031,75,7.75,22,0.0 +16031,22,21,15,0.0 +16031,5,21.35,13,0.0 +16031,67,14,16,0.0 +16031,8,40,36,0.0 +16031,38,263.5,3,0.0 +16031,33,2.5,22,0.0 +16031,29,123.79,46,0.0 +16031,18,62.5,24,0.0 +16031,2,19,13,0.0 +16031,31,12.5,37,0.0 +16031,57,19.5,10,0.0 +16031,41,9.65,11,0.0 +16031,51,53,25,0.0 +16031,66,17,25,0.0 +16031,19,9.2,30,0.0 +16031,72,34.8,4,0.0 +16031,50,16.25,27,0.0 +16031,60,34,44,0.0 +16031,65,21.05,38,0.0 +16031,3,10,11,0.0 +16031,61,28.5,12,0.0 +16032,66,17,12,0.0 +16032,57,19.5,29,0.0 +16032,46,12,43,0.0 +16032,23,9,7,0.0 +16032,63,43.9,30,0.0 +16032,73,15,6,0.0 +16032,61,28.5,20,0.0 +16032,60,34,31,0.0 +16032,10,31,37,0.0 +16032,4,22,23,0.0 +16032,49,20,37,0.0 +16032,67,14,23,0.0 +16032,2,19,6,0.0 +16032,14,23.25,25,0.0 +16032,44,19.45,7,0.0 +16032,32,32,20,0.0 +16032,51,53,32,0.0 +16033,60,34,13,0.0 +16033,39,18,45,0.0 +16033,44,19.45,44,0.0 +16033,25,14,20,0.0 +16033,77,13,45,0.0 +16033,2,19,2,0.0 +16033,33,2.5,12,0.0 +16033,49,20,22,0.0 +16033,45,9.5,43,0.0 +16033,63,43.9,14,0.0 +16033,9,97,18,0.0 +16033,66,17,25,0.0 +16033,16,17.45,21,0.0 +16033,19,9.2,44,0.0 +16033,71,21.5,49,0.0 +16033,58,13.25,43,0.0 +16033,73,15,39,0.0 +16033,42,14,3,0.0 +16033,8,40,23,0.0 +16033,18,62.5,5,0.0 +16033,31,12.5,25,0.0 +16033,72,34.8,7,0.0 +16033,59,55,27,0.0 +16033,32,32,19,0.0 +16033,20,81,23,0.0 +16033,14,23.25,17,0.0 +16033,17,39,38,0.0 +16033,54,7.45,34,0.0 +16033,4,22,13,0.0 +16033,40,18.4,6,0.0 +16033,1,18,22,0.0 +16033,62,49.3,43,0.0 +16033,43,46,6,0.0 +16033,29,123.79,34,0.0 +16033,56,38,11,0.0 +16033,38,263.5,43,0.0 +16033,69,36,48,0.0 +16033,11,21,1,0.0 +16033,5,21.35,42,0.0 +16033,57,19.5,34,0.0 +16033,7,30,41,0.0 +16033,13,6,34,0.0 +16033,15,15.5,43,0.0 +16033,26,31.23,47,0.0 +16033,68,12.5,36,0.0 +16033,46,12,6,0.0 +16033,36,19,4,0.0 +16033,76,18,3,0.0 +16033,10,31,44,0.0 +16033,37,26,48,0.0 +16033,48,12.75,39,0.0 +16033,12,38,17,0.0 +16033,30,25.89,22,0.0 +16033,24,4.5,30,0.0 +16033,3,10,3,0.0 +16033,74,10,18,0.0 +16033,75,7.75,31,0.0 +16033,6,25,46,0.0 +16033,35,18,5,0.0 +16033,70,15,28,0.0 +16033,27,43.9,36,0.0 +16033,53,32.8,24,0.0 +16033,64,33.25,3,0.0 +16033,52,7,30,0.0 +16033,61,28.5,42,0.0 +16034,43,46,31,0.0 +16034,58,13.25,32,0.0 +16034,2,19,26,0.0 +16034,33,2.5,15,0.0 +16034,61,28.5,11,0.0 +16034,14,23.25,12,0.0 +16034,57,19.5,26,0.0 +16034,50,16.25,28,0.0 +16034,51,53,46,0.0 +16034,11,21,20,0.0 +16034,59,55,34,0.0 +16034,21,10,36,0.0 +16034,28,45.6,29,0.0 +16034,60,34,20,0.0 +16034,56,38,37,0.0 +16034,30,25.89,1,0.0 +16034,45,9.5,7,0.0 +16034,32,32,28,0.0 +16034,68,12.5,50,0.0 +16034,27,43.9,21,0.0 +16034,38,263.5,44,0.0 +16034,66,17,5,0.0 +16034,54,7.45,36,0.0 +16034,41,9.65,26,0.0 +16034,39,18,42,0.0 +16034,3,10,20,0.0 +16034,23,9,10,0.0 +16034,4,22,28,0.0 +16034,1,18,16,0.0 +16034,63,43.9,23,0.0 +16034,47,9.5,21,0.0 +16034,9,97,3,0.0 +16034,25,14,7,0.0 +16034,19,9.2,15,0.0 +16034,64,33.25,15,0.0 +16034,13,6,35,0.0 +16034,75,7.75,44,0.0 +16034,35,18,29,0.0 +16034,22,21,36,0.0 +16034,70,15,35,0.0 +16034,34,14,3,0.0 +16034,17,39,20,0.0 +16034,77,13,9,0.0 +16034,55,24,22,0.0 +16034,76,18,4,0.0 +16034,37,26,3,0.0 +16034,71,21.5,32,0.0 +16034,18,62.5,37,0.0 +16034,49,20,37,0.0 +16034,24,4.5,29,0.0 +16034,40,18.4,24,0.0 +16034,20,81,8,0.0 +16034,72,34.8,31,0.0 +16034,16,17.45,26,0.0 +16034,29,123.79,25,0.0 +16034,65,21.05,31,0.0 +16034,42,14,35,0.0 +16034,73,15,11,0.0 +16034,48,12.75,35,0.0 +16034,12,38,15,0.0 +16034,53,32.8,46,0.0 +16034,7,30,8,0.0 +16034,44,19.45,34,0.0 +16035,2,19,23,0.0 +16035,77,13,41,0.0 +16035,6,25,28,0.0 +16035,26,31.23,21,0.0 +16035,73,15,41,0.0 +16035,60,34,23,0.0 +16035,61,28.5,2,0.0 +16035,42,14,36,0.0 +16035,57,19.5,37,0.0 +16035,54,7.45,22,0.0 +16035,50,16.25,38,0.0 +16035,18,62.5,23,0.0 +16035,21,10,23,0.0 +16035,25,14,18,0.0 +16035,14,23.25,29,0.0 +16035,43,46,20,0.0 +16035,20,81,30,0.0 +16035,19,9.2,17,0.0 +16036,61,28.5,10,0.0 +16036,30,25.89,26,0.0 +16036,40,18.4,20,0.0 +16036,74,10,27,0.0 +16036,35,18,18,0.0 +16036,66,17,26,0.0 +16036,43,46,44,0.0 +16036,41,9.65,23,0.0 +16036,52,7,34,0.0 +16036,49,20,13,0.0 +16036,55,24,41,0.0 +16036,60,34,12,0.0 +16036,34,14,15,0.0 +16036,19,9.2,9,0.0 +16036,33,2.5,15,0.0 +16036,50,16.25,9,0.0 +16036,37,26,7,0.0 +16036,51,53,1,0.0 +16036,57,19.5,13,0.0 +16036,45,9.5,37,0.0 +16036,17,39,15,0.0 +16036,23,9,20,0.0 +16036,56,38,2,0.0 +16036,29,123.79,13,0.0 +16036,26,31.23,16,0.0 +16036,76,18,19,0.0 +16036,18,62.5,38,0.0 +16036,13,6,10,0.0 +16036,77,13,29,0.0 +16036,25,14,31,0.0 +16036,16,17.45,40,0.0 +16036,72,34.8,14,0.0 +16036,4,22,8,0.0 +16036,73,15,35,0.0 +16036,58,13.25,49,0.0 +16036,5,21.35,8,0.0 +16036,38,263.5,30,0.0 +16036,67,14,17,0.0 +16036,39,18,36,0.0 +16036,42,14,50,0.0 +16036,21,10,11,0.0 +16036,70,15,35,0.0 +16036,24,4.5,9,0.0 +16036,75,7.75,4,0.0 +16036,36,19,39,0.0 +16036,71,21.5,13,0.0 +16036,8,40,18,0.0 +16036,64,33.25,34,0.0 +16036,28,45.6,7,0.0 +16036,32,32,25,0.0 +16036,12,38,17,0.0 +16036,63,43.9,21,0.0 +16036,62,49.3,37,0.0 +16036,59,55,41,0.0 +16036,54,7.45,6,0.0 +16036,2,19,29,0.0 +16036,10,31,31,0.0 +16036,7,30,18,0.0 +16036,22,21,36,0.0 +16037,57,19.5,50,0.0 +16037,11,21,27,0.0 +16037,21,10,3,0.0 +16037,75,7.75,1,0.0 +16037,46,12,39,0.0 +16037,33,2.5,21,0.0 +16037,55,24,31,0.0 +16037,35,18,5,0.0 +16037,51,53,16,0.0 +16037,45,9.5,38,0.0 +16037,40,18.4,15,0.0 +16037,9,97,19,0.0 +16037,6,25,13,0.0 +16037,19,9.2,50,0.0 +16037,43,46,40,0.0 +16037,37,26,13,0.0 +16037,38,263.5,8,0.0 +16037,32,32,20,0.0 +16037,39,18,24,0.0 +16037,58,13.25,36,0.0 +16037,18,62.5,4,0.0 +16037,3,10,48,0.0 +16037,25,14,18,0.0 +16037,14,23.25,6,0.0 +16037,54,7.45,35,0.0 +16037,12,38,12,0.0 +16037,48,12.75,12,0.0 +16037,66,17,34,0.0 +16037,5,21.35,23,0.0 +16037,15,15.5,30,0.0 +16037,74,10,2,0.0 +16037,7,30,7,0.0 +16037,65,21.05,16,0.0 +16037,2,19,14,0.0 +16037,76,18,40,0.0 +16037,67,14,15,0.0 +16037,4,22,4,0.0 +16037,53,32.8,34,0.0 +16037,16,17.45,3,0.0 +16037,34,14,48,0.0 +16037,62,49.3,42,0.0 +16037,31,12.5,11,0.0 +16037,69,36,2,0.0 +16037,77,13,48,0.0 +16037,59,55,5,0.0 +16037,27,43.9,38,0.0 +16037,47,9.5,14,0.0 +16037,20,81,26,0.0 +16037,60,34,12,0.0 +16037,44,19.45,43,0.0 +16037,72,34.8,14,0.0 +16037,30,25.89,39,0.0 +16037,52,7,38,0.0 +16037,41,9.65,50,0.0 +16038,19,9.2,12,0.0 +16038,75,7.75,9,0.0 +16038,60,34,1,0.0 +16038,52,7,20,0.0 +16038,45,9.5,10,0.0 +16038,13,6,2,0.0 +16038,29,123.79,32,0.0 +16038,42,14,2,0.0 +16038,57,19.5,20,0.0 +16038,66,17,47,0.0 +16038,1,18,26,0.0 +16038,20,81,16,0.0 +16038,22,21,9,0.0 +16038,72,34.8,31,0.0 +16038,64,33.25,29,0.0 +16038,31,12.5,48,0.0 +16038,10,31,40,0.0 +16038,38,263.5,33,0.0 +16038,39,18,48,0.0 +16038,68,12.5,40,0.0 +16038,55,24,11,0.0 +16038,3,10,8,0.0 +16038,18,62.5,13,0.0 +16038,26,31.23,14,0.0 +16038,15,15.5,23,0.0 +16038,6,25,45,0.0 +16038,16,17.45,30,0.0 +16038,27,43.9,43,0.0 +16038,21,10,3,0.0 +16038,46,12,44,0.0 +16038,63,43.9,8,0.0 +16038,76,18,48,0.0 +16038,17,39,17,0.0 +16038,70,15,20,0.0 +16038,44,19.45,33,0.0 +16038,36,19,27,0.0 +16038,2,19,26,0.0 +16038,62,49.3,35,0.0 +16038,49,20,11,0.0 +16038,53,32.8,23,0.0 +16038,77,13,28,0.0 +16039,8,40,26,0.0 +16039,11,21,20,0.0 +16039,25,14,18,0.0 +16039,32,32,24,0.0 +16039,46,12,40,0.0 +16039,44,19.45,21,0.0 +16039,5,21.35,18,0.0 +16039,64,33.25,29,0.0 +16039,6,25,41,0.0 +16039,1,18,3,0.0 +16039,55,24,39,0.0 +16039,71,21.5,14,0.0 +16039,7,30,22,0.0 +16039,77,13,36,0.0 +16039,74,10,29,0.0 +16039,76,18,45,0.0 +16039,66,17,36,0.0 +16039,33,2.5,27,0.0 +16039,26,31.23,11,0.0 +16039,39,18,14,0.0 +16039,42,14,20,0.0 +16039,54,7.45,5,0.0 +16039,23,9,9,0.0 +16039,69,36,22,0.0 +16039,10,31,11,0.0 +16039,51,53,37,0.0 +16039,45,9.5,44,0.0 +16039,18,62.5,38,0.0 +16039,59,55,8,0.0 +16039,50,16.25,5,0.0 +16039,56,38,25,0.0 +16039,31,12.5,8,0.0 +16039,3,10,22,0.0 +16039,19,9.2,23,0.0 +16039,14,23.25,32,0.0 +16039,36,19,18,0.0 +16039,65,21.05,34,0.0 +16039,37,26,27,0.0 +16039,13,6,9,0.0 +16039,30,25.89,17,0.0 +16039,70,15,45,0.0 +16039,72,34.8,33,0.0 +16039,47,9.5,37,0.0 +16039,60,34,13,0.0 +16039,41,9.65,10,0.0 +16039,22,21,25,0.0 +16039,48,12.75,17,0.0 +16039,15,15.5,39,0.0 +16039,28,45.6,49,0.0 +16039,40,18.4,3,0.0 +16039,20,81,24,0.0 +16039,52,7,6,0.0 +16039,49,20,49,0.0 +16039,73,15,2,0.0 +16039,75,7.75,28,0.0 +16039,57,19.5,24,0.0 +16039,17,39,28,0.0 +16039,24,4.5,3,0.0 +16039,21,10,26,0.0 +16039,35,18,25,0.0 +16039,53,32.8,19,0.0 +16040,31,12.5,24,0.0 +16040,3,10,11,0.0 +16040,41,9.65,39,0.0 +16040,20,81,43,0.0 +16040,76,18,3,0.0 +16040,59,55,29,0.0 +16040,53,32.8,47,0.0 +16040,74,10,6,0.0 +16040,10,31,25,0.0 +16040,37,26,35,0.0 +16040,35,18,27,0.0 +16040,30,25.89,33,0.0 +16040,1,18,45,0.0 +16040,52,7,20,0.0 +16040,48,12.75,36,0.0 +16040,51,53,34,0.0 +16040,25,14,25,0.0 +16040,15,15.5,16,0.0 +16040,9,97,9,0.0 +16040,69,36,24,0.0 +16040,36,19,34,0.0 +16040,67,14,40,0.0 +16040,43,46,43,0.0 +16040,18,62.5,22,0.0 +16040,77,13,11,0.0 +16040,7,30,3,0.0 +16040,19,9.2,48,0.0 +16040,63,43.9,41,0.0 +16040,24,4.5,46,0.0 +16040,38,263.5,33,0.0 +16040,58,13.25,4,0.0 +16040,70,15,7,0.0 +16040,72,34.8,34,0.0 +16040,64,33.25,24,0.0 +16040,13,6,17,0.0 +16040,17,39,18,0.0 +16040,68,12.5,49,0.0 +16040,21,10,39,0.0 +16040,66,17,18,0.0 +16040,56,38,43,0.0 +16040,26,31.23,21,0.0 +16040,65,21.05,44,0.0 +16040,47,9.5,34,0.0 +16040,49,20,32,0.0 +16040,14,23.25,29,0.0 +16040,16,17.45,22,0.0 +16040,29,123.79,39,0.0 +16040,34,14,20,0.0 +16040,23,9,50,0.0 +16040,22,21,18,0.0 +16040,61,28.5,26,0.0 +16040,42,14,12,0.0 +16040,32,32,11,0.0 +16040,62,49.3,22,0.0 +16040,71,21.5,10,0.0 +16040,39,18,22,0.0 +16041,7,30,33,0.0 +16041,56,38,39,0.0 +16041,47,9.5,12,0.0 +16041,59,55,26,0.0 +16041,13,6,49,0.0 +16041,68,12.5,43,0.0 +16041,73,15,11,0.0 +16041,38,263.5,26,0.0 +16041,9,97,9,0.0 +16041,22,21,41,0.0 +16041,37,26,25,0.0 +16041,57,19.5,39,0.0 +16041,23,9,46,0.0 +16041,28,45.6,7,0.0 +16041,65,21.05,23,0.0 +16041,66,17,48,0.0 +16041,25,14,31,0.0 +16041,72,34.8,15,0.0 +16041,5,21.35,17,0.0 +16041,33,2.5,48,0.0 +16041,70,15,3,0.0 +16041,48,12.75,17,0.0 +16041,52,7,7,0.0 +16041,44,19.45,40,0.0 +16041,14,23.25,17,0.0 +16041,26,31.23,1,0.0 +16041,54,7.45,10,0.0 +16041,74,10,24,0.0 +16041,71,21.5,15,0.0 +16041,20,81,23,0.0 +16041,43,46,33,0.0 +16041,63,43.9,18,0.0 +16041,2,19,24,0.0 +16041,30,25.89,33,0.0 +16041,36,19,39,0.0 +16041,19,9.2,26,0.0 +16041,3,10,21,0.0 +16041,76,18,19,0.0 +16041,11,21,13,0.0 +16041,77,13,1,0.0 +16041,46,12,24,0.0 +16041,4,22,4,0.0 +16041,64,33.25,33,0.0 +16041,45,9.5,3,0.0 +16041,67,14,39,0.0 +16041,16,17.45,47,0.0 +16041,62,49.3,30,0.0 +16041,27,43.9,46,0.0 +16041,40,18.4,30,0.0 +16041,24,4.5,4,0.0 +16041,51,53,43,0.0 +16041,61,28.5,9,0.0 +16041,12,38,14,0.0 +16041,18,62.5,31,0.0 +16041,42,14,9,0.0 +16042,25,14,30,0.0 +16042,20,81,47,0.0 +16042,8,40,37,0.0 +16042,36,19,17,0.0 +16042,24,4.5,26,0.0 +16042,46,12,10,0.0 +16042,39,18,3,0.0 +16042,75,7.75,2,0.0 +16042,67,14,18,0.0 +16042,35,18,7,0.0 +16042,27,43.9,16,0.0 +16042,71,21.5,22,0.0 +16042,63,43.9,35,0.0 +16042,7,30,15,0.0 +16042,70,15,6,0.0 +16042,9,97,17,0.0 +16042,4,22,41,0.0 +16042,32,32,24,0.0 +16042,44,19.45,2,0.0 +16042,57,19.5,3,0.0 +16042,16,17.45,48,0.0 +16043,68,12.5,48,0.0 +16043,25,14,17,0.0 +16043,65,21.05,20,0.0 +16043,8,40,11,0.0 +16043,14,23.25,46,0.0 +16043,3,10,49,0.0 +16043,76,18,41,0.0 +16043,53,32.8,10,0.0 +16043,26,31.23,45,0.0 +16043,66,17,29,0.0 +16043,48,12.75,10,0.0 +16043,12,38,5,0.0 +16043,15,15.5,31,0.0 +16043,69,36,22,0.0 +16043,24,4.5,18,0.0 +16043,64,33.25,1,0.0 +16043,49,20,12,0.0 +16043,5,21.35,31,0.0 +16043,28,45.6,47,0.0 +16043,39,18,9,0.0 +16043,41,9.65,35,0.0 +16043,60,34,36,0.0 +16043,37,26,1,0.0 +16043,75,7.75,15,0.0 +16043,17,39,34,0.0 +16043,45,9.5,15,0.0 +16043,47,9.5,9,0.0 +16043,29,123.79,34,0.0 +16043,4,22,16,0.0 +16043,1,18,20,0.0 +16043,35,18,11,0.0 +16043,67,14,38,0.0 +16043,38,263.5,20,0.0 +16043,70,15,7,0.0 +16043,30,25.89,37,0.0 +16043,71,21.5,35,0.0 +16043,9,97,36,0.0 +16043,27,43.9,48,0.0 +16043,10,31,19,0.0 +16043,36,19,3,0.0 +16043,77,13,14,0.0 +16043,11,21,36,0.0 +16043,56,38,26,0.0 +16043,18,62.5,3,0.0 +16043,55,24,21,0.0 +16043,2,19,36,0.0 +16043,44,19.45,14,0.0 +16043,16,17.45,9,0.0 +16043,23,9,34,0.0 +16043,62,49.3,45,0.0 +16044,23,9,15,0.0 +16044,37,26,1,0.0 +16044,53,32.8,9,0.0 +16044,43,46,2,0.0 +16044,66,17,1,0.0 +16044,77,13,30,0.0 +16044,63,43.9,6,0.0 +16044,17,39,27,0.0 +16044,9,97,24,0.0 +16044,5,21.35,33,0.0 +16044,68,12.5,14,0.0 +16044,35,18,24,0.0 +16044,25,14,18,0.0 +16044,33,2.5,36,0.0 +16044,22,21,7,0.0 +16044,64,33.25,33,0.0 +16044,29,123.79,11,0.0 +16044,56,38,47,0.0 +16044,47,9.5,49,0.0 +16044,12,38,17,0.0 +16044,74,10,33,0.0 +16045,19,9.2,13,0.0 +16045,38,263.5,29,0.0 +16045,7,30,12,0.0 +16045,9,97,7,0.0 +16045,64,33.25,32,0.0 +16045,25,14,28,0.0 +16045,39,18,20,0.0 +16045,1,18,22,0.0 +16045,23,9,34,0.0 +16045,31,12.5,37,0.0 +16045,45,9.5,49,0.0 +16045,61,28.5,48,0.0 +16045,27,43.9,5,0.0 +16045,36,19,25,0.0 +16045,26,31.23,26,0.0 +16045,8,40,3,0.0 +16045,24,4.5,22,0.0 +16045,5,21.35,17,0.0 +16045,13,6,22,0.0 +16045,48,12.75,27,0.0 +16045,20,81,50,0.0 +16045,67,14,13,0.0 +16045,63,43.9,23,0.0 +16045,43,46,18,0.0 +16045,54,7.45,48,0.0 +16045,76,18,17,0.0 +16045,4,22,35,0.0 +16045,52,7,5,0.0 +16045,58,13.25,47,0.0 +16045,30,25.89,3,0.0 +16045,34,14,1,0.0 +16045,73,15,47,0.0 +16045,6,25,17,0.0 +16045,55,24,32,0.0 +16045,75,7.75,49,0.0 +16045,22,21,1,0.0 +16045,33,2.5,4,0.0 +16045,14,23.25,24,0.0 +16045,50,16.25,19,0.0 +16045,53,32.8,15,0.0 +16045,49,20,50,0.0 +16045,18,62.5,22,0.0 +16045,40,18.4,25,0.0 +16045,68,12.5,45,0.0 +16045,46,12,43,0.0 +16045,51,53,20,0.0 +16045,10,31,48,0.0 +16045,29,123.79,10,0.0 +16045,65,21.05,9,0.0 +16045,42,14,6,0.0 +16045,70,15,1,0.0 +16045,21,10,35,0.0 +16045,16,17.45,11,0.0 +16045,3,10,39,0.0 +16045,72,34.8,12,0.0 +16045,37,26,46,0.0 +16045,12,38,42,0.0 +16045,71,21.5,40,0.0 +16045,60,34,24,0.0 +16045,15,15.5,12,0.0 +16045,41,9.65,14,0.0 +16045,59,55,18,0.0 +16045,77,13,3,0.0 +16045,74,10,5,0.0 +16045,44,19.45,18,0.0 +16046,61,28.5,44,0.0 +16046,53,32.8,24,0.0 +16046,74,10,30,0.0 +16046,75,7.75,23,0.0 +16046,37,26,10,0.0 +16046,7,30,11,0.0 +16046,1,18,3,0.0 +16046,76,18,44,0.0 +16046,22,21,9,0.0 +16046,17,39,18,0.0 +16046,10,31,28,0.0 +16046,25,14,37,0.0 +16046,31,12.5,13,0.0 +16046,47,9.5,36,0.0 +16046,19,9.2,19,0.0 +16046,70,15,3,0.0 +16046,6,25,25,0.0 +16046,71,21.5,9,0.0 +16046,16,17.45,39,0.0 +16046,36,19,7,0.0 +16046,3,10,6,0.0 +16046,14,23.25,18,0.0 +16046,77,13,15,0.0 +16046,57,19.5,7,0.0 +16046,26,31.23,17,0.0 +16046,56,38,15,0.0 +16046,51,53,14,0.0 +16046,54,7.45,42,0.0 +16046,46,12,18,0.0 +16046,2,19,14,0.0 +16046,55,24,22,0.0 +16046,62,49.3,28,0.0 +16046,13,6,37,0.0 +16046,49,20,49,0.0 +16046,27,43.9,20,0.0 +16046,33,2.5,10,0.0 +16046,35,18,44,0.0 +16046,68,12.5,20,0.0 +16046,72,34.8,49,0.0 +16046,20,81,34,0.0 +16046,23,9,17,0.0 +16046,34,14,33,0.0 +16046,58,13.25,22,0.0 +16046,11,21,11,0.0 +16046,29,123.79,10,0.0 +16047,77,13,47,0.0 +16047,45,9.5,38,0.0 +16047,63,43.9,39,0.0 +16047,21,10,15,0.0 +16047,64,33.25,17,0.0 +16047,12,38,50,0.0 +16047,13,6,4,0.0 +16047,65,21.05,35,0.0 +16047,27,43.9,12,0.0 +16047,57,19.5,44,0.0 +16047,74,10,19,0.0 +16047,9,97,21,0.0 +16047,23,9,19,0.0 +16047,38,263.5,38,0.0 +16047,42,14,21,0.0 +16047,33,2.5,45,0.0 +16047,54,7.45,28,0.0 +16047,7,30,36,0.0 +16047,34,14,41,0.0 +16047,68,12.5,45,0.0 +16047,75,7.75,22,0.0 +16047,15,15.5,23,0.0 +16047,29,123.79,24,0.0 +16047,31,12.5,40,0.0 +16047,6,25,17,0.0 +16047,59,55,3,0.0 +16047,70,15,50,0.0 +16047,18,62.5,27,0.0 +16047,61,28.5,8,0.0 +16047,25,14,40,0.0 +16047,72,34.8,8,0.0 +16047,3,10,38,0.0 +16047,17,39,40,0.0 +16047,5,21.35,4,0.0 +16047,60,34,23,0.0 +16047,46,12,21,0.0 +16047,67,14,47,0.0 +16047,10,31,42,0.0 +16047,71,21.5,13,0.0 +16047,28,45.6,15,0.0 +16047,73,15,21,0.0 +16047,56,38,31,0.0 +16047,20,81,3,0.0 +16047,37,26,21,0.0 +16047,66,17,19,0.0 +16047,44,19.45,36,0.0 +16047,35,18,18,0.0 +16047,58,13.25,22,0.0 +16047,52,7,41,0.0 +16047,8,40,46,0.0 +16047,22,21,12,0.0 +16047,36,19,40,0.0 +16047,47,9.5,21,0.0 +16047,55,24,36,0.0 +16047,11,21,16,0.0 +16047,24,4.5,12,0.0 +16047,32,32,34,0.0 +16047,2,19,7,0.0 +16047,19,9.2,49,0.0 +16047,39,18,4,0.0 +16047,4,22,32,0.0 +16048,27,43.9,45,0.0 +16048,52,7,26,0.0 +16048,34,14,4,0.0 +16048,13,6,15,0.0 +16048,29,123.79,8,0.0 +16048,60,34,32,0.0 +16048,33,2.5,38,0.0 +16048,39,18,30,0.0 +16048,22,21,22,0.0 +16048,51,53,22,0.0 +16048,56,38,10,0.0 +16048,70,15,4,0.0 +16048,53,32.8,44,0.0 +16048,20,81,43,0.0 +16048,76,18,27,0.0 +16048,16,17.45,45,0.0 +16048,69,36,38,0.0 +16048,32,32,19,0.0 +16048,24,4.5,22,0.0 +16048,30,25.89,14,0.0 +16048,54,7.45,32,0.0 +16048,14,23.25,34,0.0 +16048,74,10,14,0.0 +16048,12,38,45,0.0 +16048,50,16.25,23,0.0 +16048,23,9,33,0.0 +16048,65,21.05,17,0.0 +16048,61,28.5,31,0.0 +16048,48,12.75,38,0.0 +16048,19,9.2,39,0.0 +16048,15,15.5,32,0.0 +16048,55,24,13,0.0 +16048,41,9.65,35,0.0 +16048,26,31.23,10,0.0 +16048,43,46,17,0.0 +16048,9,97,35,0.0 +16048,21,10,7,0.0 +16048,75,7.75,45,0.0 +16048,18,62.5,36,0.0 +16048,49,20,2,0.0 +16048,31,12.5,49,0.0 +16048,71,21.5,45,0.0 +16048,25,14,8,0.0 +16048,63,43.9,27,0.0 +16048,8,40,11,0.0 +16048,11,21,15,0.0 +16048,1,18,30,0.0 +16048,68,12.5,39,0.0 +16048,40,18.4,24,0.0 +16048,47,9.5,42,0.0 +16048,64,33.25,16,0.0 +16048,44,19.45,17,0.0 +16048,4,22,37,0.0 +16048,72,34.8,28,0.0 +16048,35,18,5,0.0 +16048,45,9.5,32,0.0 +16048,5,21.35,17,0.0 +16048,58,13.25,41,0.0 +16048,59,55,12,0.0 +16048,2,19,35,0.0 +16048,36,19,26,0.0 +16048,28,45.6,22,0.0 +16048,73,15,32,0.0 +16048,3,10,45,0.0 +16048,7,30,47,0.0 +16048,46,12,16,0.0 +16048,66,17,35,0.0 +16048,10,31,32,0.0 +16048,57,19.5,14,0.0 +16049,25,14,16,0.0 +16049,61,28.5,33,0.0 +16049,12,38,11,0.0 +16049,5,21.35,17,0.0 +16049,49,20,9,0.0 +16049,42,14,44,0.0 +16049,8,40,17,0.0 +16049,43,46,31,0.0 +16049,56,38,14,0.0 +16049,18,62.5,18,0.0 +16049,28,45.6,4,0.0 +16049,1,18,45,0.0 +16049,50,16.25,12,0.0 +16049,27,43.9,15,0.0 +16049,53,32.8,20,0.0 +16049,57,19.5,4,0.0 +16049,52,7,7,0.0 +16049,26,31.23,25,0.0 +16049,46,12,23,0.0 +16049,17,39,5,0.0 +16049,69,36,31,0.0 +16049,74,10,48,0.0 +16049,55,24,32,0.0 +16049,66,17,24,0.0 +16049,11,21,49,0.0 +16049,13,6,42,0.0 +16049,62,49.3,28,0.0 +16049,45,9.5,2,0.0 +16049,51,53,11,0.0 +16049,2,19,25,0.0 +16049,63,43.9,23,0.0 +16049,7,30,39,0.0 +16049,70,15,35,0.0 +16049,72,34.8,20,0.0 +16049,47,9.5,17,0.0 +16049,68,12.5,45,0.0 +16049,44,19.45,29,0.0 +16049,32,32,41,0.0 +16049,23,9,46,0.0 +16049,65,21.05,11,0.0 +16049,21,10,28,0.0 +16049,60,34,10,0.0 +16049,24,4.5,3,0.0 +16049,29,123.79,39,0.0 +16049,67,14,44,0.0 +16049,3,10,6,0.0 +16049,20,81,28,0.0 +16049,10,31,47,0.0 +16049,37,26,40,0.0 +16049,33,2.5,26,0.0 +16049,19,9.2,33,0.0 +16049,48,12.75,7,0.0 +16049,31,12.5,41,0.0 +16049,15,15.5,46,0.0 +16049,4,22,12,0.0 +16049,58,13.25,22,0.0 +16049,41,9.65,18,0.0 +16049,22,21,18,0.0 +16049,73,15,45,0.0 +16049,39,18,33,0.0 +16049,16,17.45,43,0.0 +16049,76,18,35,0.0 +16049,35,18,25,0.0 +16049,77,13,29,0.0 +16049,36,19,13,0.0 +16049,75,7.75,45,0.0 +16049,14,23.25,14,0.0 +16049,38,263.5,3,0.0 +16049,40,18.4,17,0.0 +16050,64,33.25,8,0.0 +16050,2,19,17,0.0 +16050,38,263.5,1,0.0 +16050,51,53,21,0.0 +16050,68,12.5,37,0.0 +16050,36,19,17,0.0 +16050,55,24,40,0.0 +16050,11,21,13,0.0 +16050,67,14,36,0.0 +16050,4,22,40,0.0 +16050,62,49.3,22,0.0 +16050,8,40,19,0.0 +16050,28,45.6,15,0.0 +16050,66,17,29,0.0 +16050,13,6,35,0.0 +16050,45,9.5,49,0.0 +16050,22,21,41,0.0 +16050,57,19.5,38,0.0 +16050,15,15.5,1,0.0 +16050,69,36,24,0.0 +16050,60,34,16,0.0 +16050,49,20,2,0.0 +16050,50,16.25,36,0.0 +16050,19,9.2,43,0.0 +16050,21,10,46,0.0 +16051,77,13,34,0.0 +16051,33,2.5,26,0.0 +16051,44,19.45,2,0.0 +16051,61,28.5,28,0.0 +16051,20,81,38,0.0 +16051,68,12.5,13,0.0 +16051,60,34,13,0.0 +16051,26,31.23,42,0.0 +16051,72,34.8,49,0.0 +16051,13,6,23,0.0 +16051,35,18,9,0.0 +16051,75,7.75,15,0.0 +16051,4,22,6,0.0 +16051,11,21,35,0.0 +16051,39,18,26,0.0 +16051,3,10,23,0.0 +16051,14,23.25,17,0.0 +16051,50,16.25,13,0.0 +16051,10,31,23,0.0 +16051,51,53,39,0.0 +16051,45,9.5,48,0.0 +16051,30,25.89,37,0.0 +16051,70,15,33,0.0 +16051,9,97,2,0.0 +16051,54,7.45,35,0.0 +16051,25,14,3,0.0 +16051,65,21.05,22,0.0 +16051,12,38,28,0.0 +16051,32,32,19,0.0 +16051,22,21,25,0.0 +16051,43,46,39,0.0 +16051,16,17.45,11,0.0 +16051,34,14,37,0.0 +16051,31,12.5,1,0.0 +16051,37,26,15,0.0 +16051,1,18,44,0.0 +16051,28,45.6,5,0.0 +16051,15,15.5,11,0.0 +16051,62,49.3,13,0.0 +16051,5,21.35,40,0.0 +16051,21,10,12,0.0 +16051,57,19.5,4,0.0 +16051,42,14,27,0.0 +16051,46,12,37,0.0 +16051,49,20,45,0.0 +16051,64,33.25,46,0.0 +16051,73,15,24,0.0 +16051,38,263.5,9,0.0 +16051,40,18.4,9,0.0 +16051,7,30,47,0.0 +16051,27,43.9,2,0.0 +16051,23,9,43,0.0 +16051,52,7,23,0.0 +16051,76,18,17,0.0 +16051,53,32.8,21,0.0 +16052,34,14,49,0.0 +16052,7,30,13,0.0 +16052,16,17.45,20,0.0 +16052,65,21.05,32,0.0 +16052,4,22,4,0.0 +16052,10,31,34,0.0 +16052,27,43.9,10,0.0 +16052,64,33.25,12,0.0 +16052,56,38,19,0.0 +16052,72,34.8,5,0.0 +16052,17,39,16,0.0 +16052,69,36,17,0.0 +16052,24,4.5,49,0.0 +16052,43,46,39,0.0 +16052,12,38,10,0.0 +16052,71,21.5,44,0.0 +16052,26,31.23,20,0.0 +16053,57,19.5,6,0.0 +16053,4,22,7,0.0 +16053,62,49.3,45,0.0 +16053,14,23.25,39,0.0 +16053,26,31.23,38,0.0 +16053,39,18,20,0.0 +16053,33,2.5,3,0.0 +16053,47,9.5,28,0.0 +16053,24,4.5,13,0.0 +16053,73,15,22,0.0 +16053,7,30,33,0.0 +16053,44,19.45,33,0.0 +16053,28,45.6,41,0.0 +16053,19,9.2,23,0.0 +16053,48,12.75,41,0.0 +16053,12,38,6,0.0 +16053,70,15,26,0.0 +16053,2,19,37,0.0 +16053,38,263.5,19,0.0 +16053,69,36,32,0.0 +16053,9,97,46,0.0 +16053,3,10,46,0.0 +16053,65,21.05,34,0.0 +16053,66,17,20,0.0 +16053,5,21.35,48,0.0 +16053,20,81,5,0.0 +16053,50,16.25,17,0.0 +16053,34,14,6,0.0 +16053,31,12.5,39,0.0 +16053,74,10,31,0.0 +16053,17,39,28,0.0 +16053,53,32.8,2,0.0 +16053,16,17.45,6,0.0 +16053,75,7.75,5,0.0 +16053,21,10,16,0.0 +16053,71,21.5,27,0.0 +16053,59,55,48,0.0 +16053,15,15.5,15,0.0 +16053,77,13,39,0.0 +16053,68,12.5,6,0.0 +16053,64,33.25,3,0.0 +16053,49,20,4,0.0 +16053,13,6,22,0.0 +16053,56,38,47,0.0 +16053,55,24,31,0.0 +16053,54,7.45,45,0.0 +16053,61,28.5,19,0.0 +16054,34,14,7,0.0 +16054,12,38,33,0.0 +16054,69,36,6,0.0 +16054,6,25,28,0.0 +16055,31,12.5,36,0.0 +16055,15,15.5,12,0.0 +16055,18,62.5,44,0.0 +16055,20,81,7,0.0 +16055,37,26,1,0.0 +16056,50,16.25,25,0.0 +16056,11,21,31,0.0 +16056,40,18.4,1,0.0 +16057,69,36,1,0.0 +16057,76,18,11,0.0 +16057,4,22,30,0.0 +16057,60,34,5,0.0 +16057,57,19.5,35,0.0 +16057,18,62.5,25,0.0 +16057,19,9.2,47,0.0 +16057,71,21.5,36,0.0 +16057,3,10,18,0.0 +16057,38,263.5,31,0.0 +16057,66,17,48,0.0 +16057,52,7,40,0.0 +16057,53,32.8,8,0.0 +16057,35,18,26,0.0 +16057,72,34.8,8,0.0 +16057,58,13.25,39,0.0 +16057,23,9,18,0.0 +16057,55,24,15,0.0 +16057,27,43.9,2,0.0 +16057,24,4.5,4,0.0 +16057,44,19.45,28,0.0 +16057,21,10,7,0.0 +16057,67,14,10,0.0 +16057,10,31,16,0.0 +16057,6,25,13,0.0 +16057,41,9.65,36,0.0 +16057,5,21.35,22,0.0 +16057,54,7.45,28,0.0 +16057,11,21,44,0.0 +16057,22,21,2,0.0 +16057,61,28.5,49,0.0 +16057,65,21.05,12,0.0 +16057,75,7.75,21,0.0 +16057,59,55,33,0.0 +16057,33,2.5,12,0.0 +16057,50,16.25,41,0.0 +16057,43,46,38,0.0 +16057,1,18,35,0.0 +16057,29,123.79,21,0.0 +16057,13,6,34,0.0 +16057,45,9.5,12,0.0 +16057,34,14,3,0.0 +16057,12,38,9,0.0 +16057,77,13,37,0.0 +16057,40,18.4,42,0.0 +16057,28,45.6,42,0.0 +16057,70,15,15,0.0 +16057,56,38,35,0.0 +16057,73,15,40,0.0 +16057,9,97,8,0.0 +16057,68,12.5,17,0.0 +16057,14,23.25,11,0.0 +16058,7,30,37,0.0 +16058,24,4.5,11,0.0 +16058,14,23.25,22,0.0 +16058,38,263.5,23,0.0 +16058,36,19,8,0.0 +16058,39,18,17,0.0 +16058,19,9.2,1,0.0 +16058,26,31.23,1,0.0 +16058,54,7.45,14,0.0 +16058,25,14,39,0.0 +16058,34,14,7,0.0 +16058,59,55,28,0.0 +16058,73,15,15,0.0 +16058,63,43.9,5,0.0 +16058,44,19.45,45,0.0 +16058,20,81,17,0.0 +16058,70,15,10,0.0 +16058,58,13.25,5,0.0 +16058,37,26,27,0.0 +16058,5,21.35,49,0.0 +16058,48,12.75,16,0.0 +16058,21,10,2,0.0 +16058,3,10,21,0.0 +16058,77,13,13,0.0 +16058,4,22,33,0.0 +16058,51,53,41,0.0 +16058,43,46,42,0.0 +16058,66,17,30,0.0 +16058,47,9.5,18,0.0 +16058,2,19,30,0.0 +16058,10,31,46,0.0 +16058,31,12.5,44,0.0 +16058,72,34.8,44,0.0 +16058,15,15.5,43,0.0 +16058,12,38,34,0.0 +16058,45,9.5,20,0.0 +16058,65,21.05,8,0.0 +16058,71,21.5,10,0.0 +16058,32,32,50,0.0 +16058,60,34,1,0.0 +16058,27,43.9,4,0.0 +16058,29,123.79,16,0.0 +16058,61,28.5,5,0.0 +16058,56,38,17,0.0 +16058,75,7.75,29,0.0 +16058,18,62.5,17,0.0 +16058,55,24,35,0.0 +16058,64,33.25,10,0.0 +16058,57,19.5,12,0.0 +16058,30,25.89,30,0.0 +16058,6,25,15,0.0 +16058,68,12.5,23,0.0 +16058,69,36,6,0.0 +16058,62,49.3,34,0.0 +16058,23,9,29,0.0 +16058,76,18,31,0.0 +16058,74,10,37,0.0 +16058,67,14,34,0.0 +16058,46,12,42,0.0 +16058,16,17.45,46,0.0 +16058,22,21,40,0.0 +16058,9,97,30,0.0 +16058,35,18,13,0.0 +16058,53,32.8,13,0.0 +16058,42,14,13,0.0 +16058,11,21,15,0.0 +16058,49,20,16,0.0 +16059,47,9.5,25,0.0 +16059,38,263.5,16,0.0 +16059,61,28.5,13,0.0 +16059,37,26,40,0.0 +16060,33,2.5,12,0.0 +16060,55,24,7,0.0 +16060,66,17,46,0.0 +16060,19,9.2,34,0.0 +16060,41,9.65,12,0.0 +16060,12,38,18,0.0 +16060,24,4.5,11,0.0 +16060,71,21.5,22,0.0 +16060,21,10,41,0.0 +16060,28,45.6,50,0.0 +16060,75,7.75,1,0.0 +16060,69,36,22,0.0 +16060,7,30,11,0.0 +16060,38,263.5,7,0.0 +16060,67,14,19,0.0 +16060,56,38,11,0.0 +16060,13,6,47,0.0 +16060,34,14,20,0.0 +16060,64,33.25,2,0.0 +16060,23,9,12,0.0 +16060,49,20,24,0.0 +16060,5,21.35,30,0.0 +16060,42,14,38,0.0 +16060,11,21,50,0.0 +16060,63,43.9,27,0.0 +16060,76,18,4,0.0 +16060,15,15.5,5,0.0 +16060,45,9.5,39,0.0 +16060,72,34.8,50,0.0 +16061,1,18,31,0.0 +16061,40,18.4,29,0.0 +16062,34,14,43,0.0 +16062,69,36,14,0.0 +16063,64,33.25,35,0.0 +16063,29,123.79,22,0.0 +16063,59,55,12,0.0 +16063,35,18,4,0.0 +16063,25,14,8,0.0 +16063,66,17,17,0.0 +16063,17,39,10,0.0 +16063,45,9.5,23,0.0 +16063,9,97,17,0.0 +16063,30,25.89,34,0.0 +16063,54,7.45,28,0.0 +16063,46,12,14,0.0 +16063,57,19.5,42,0.0 +16063,19,9.2,40,0.0 +16063,42,14,5,0.0 +16063,16,17.45,20,0.0 +16063,70,15,50,0.0 +16063,14,23.25,44,0.0 +16063,33,2.5,20,0.0 +16063,41,9.65,6,0.0 +16063,72,34.8,14,0.0 +16063,61,28.5,1,0.0 +16063,20,81,27,0.0 +16063,11,21,1,0.0 +16063,18,62.5,49,0.0 +16063,10,31,37,0.0 +16063,48,12.75,12,0.0 +16063,34,14,7,0.0 +16063,55,24,20,0.0 +16063,67,14,40,0.0 +16063,13,6,2,0.0 +16063,26,31.23,32,0.0 +16063,40,18.4,27,0.0 +16063,27,43.9,16,0.0 +16063,21,10,50,0.0 +16063,2,19,10,0.0 +16063,6,25,9,0.0 +16063,76,18,41,0.0 +16063,32,32,6,0.0 +16063,51,53,25,0.0 +16063,31,12.5,20,0.0 +16063,43,46,33,0.0 +16063,74,10,40,0.0 +16063,75,7.75,35,0.0 +16064,50,16.25,27,0.0 +16064,54,7.45,40,0.0 +16064,68,12.5,38,0.0 +16064,30,25.89,32,0.0 +16064,75,7.75,4,0.0 +16064,59,55,50,0.0 +16064,21,10,14,0.0 +16064,28,45.6,43,0.0 +16064,31,12.5,41,0.0 +16064,72,34.8,17,0.0 +16064,18,62.5,13,0.0 +16064,40,18.4,50,0.0 +16064,58,13.25,3,0.0 +16064,64,33.25,13,0.0 +16064,53,32.8,27,0.0 +16064,7,30,25,0.0 +16064,43,46,45,0.0 +16064,10,31,31,0.0 +16064,3,10,27,0.0 +16064,22,21,30,0.0 +16064,51,53,40,0.0 +16064,52,7,5,0.0 +16064,61,28.5,46,0.0 +16064,73,15,30,0.0 +16064,14,23.25,11,0.0 +16064,34,14,24,0.0 +16064,26,31.23,20,0.0 +16064,25,14,4,0.0 +16064,41,9.65,17,0.0 +16064,4,22,11,0.0 +16064,77,13,50,0.0 +16064,55,24,19,0.0 +16064,36,19,35,0.0 +16064,44,19.45,37,0.0 +16064,13,6,24,0.0 +16065,8,40,29,0.0 +16065,52,7,1,0.0 +16065,53,32.8,13,0.0 +16065,34,14,11,0.0 +16065,39,18,22,0.0 +16065,69,36,33,0.0 +16065,16,17.45,45,0.0 +16065,32,32,12,0.0 +16065,30,25.89,18,0.0 +16065,23,9,8,0.0 +16065,35,18,9,0.0 +16065,75,7.75,12,0.0 +16065,77,13,8,0.0 +16065,62,49.3,17,0.0 +16065,41,9.65,23,0.0 +16065,54,7.45,39,0.0 +16065,12,38,3,0.0 +16065,2,19,26,0.0 +16065,17,39,4,0.0 +16065,50,16.25,8,0.0 +16065,29,123.79,46,0.0 +16065,27,43.9,30,0.0 +16065,67,14,28,0.0 +16065,66,17,50,0.0 +16065,68,12.5,47,0.0 +16065,46,12,43,0.0 +16065,44,19.45,35,0.0 +16065,18,62.5,38,0.0 +16065,73,15,49,0.0 +16065,21,10,24,0.0 +16065,45,9.5,11,0.0 +16065,65,21.05,28,0.0 +16066,16,17.45,13,0.0 +16066,21,10,12,0.0 +16066,13,6,18,0.0 +16066,36,19,10,0.0 +16066,10,31,17,0.0 +16066,53,32.8,21,0.0 +16066,11,21,28,0.0 +16066,44,19.45,39,0.0 +16066,27,43.9,47,0.0 +16066,50,16.25,13,0.0 +16066,28,45.6,1,0.0 +16066,68,12.5,4,0.0 +16066,55,24,17,0.0 +16066,40,18.4,36,0.0 +16066,30,25.89,16,0.0 +16066,2,19,7,0.0 +16066,57,19.5,23,0.0 +16066,42,14,13,0.0 +16066,58,13.25,25,0.0 +16066,26,31.23,5,0.0 +16066,61,28.5,44,0.0 +16066,7,30,23,0.0 +16066,48,12.75,49,0.0 +16066,77,13,21,0.0 +16066,63,43.9,6,0.0 +16066,12,38,7,0.0 +16066,45,9.5,21,0.0 +16066,9,97,7,0.0 +16066,60,34,44,0.0 +16066,15,15.5,24,0.0 +16066,29,123.79,32,0.0 +16067,63,43.9,9,0.0 +16067,1,18,23,0.0 +16067,21,10,25,0.0 +16067,77,13,35,0.0 +16067,18,62.5,43,0.0 +16067,37,26,14,0.0 +16067,59,55,50,0.0 +16067,60,34,13,0.0 +16067,4,22,44,0.0 +16067,61,28.5,50,0.0 +16067,2,19,25,0.0 +16067,70,15,14,0.0 +16067,41,9.65,46,0.0 +16067,71,21.5,4,0.0 +16067,62,49.3,9,0.0 +16067,9,97,43,0.0 +16067,47,9.5,19,0.0 +16067,43,46,43,0.0 +16067,76,18,46,0.0 +16067,12,38,14,0.0 +16067,44,19.45,34,0.0 +16067,34,14,36,0.0 +16067,28,45.6,44,0.0 +16067,72,34.8,19,0.0 +16067,7,30,31,0.0 +16067,27,43.9,15,0.0 +16067,33,2.5,3,0.0 +16067,32,32,10,0.0 +16067,5,21.35,39,0.0 +16067,64,33.25,49,0.0 +16067,16,17.45,37,0.0 +16067,67,14,18,0.0 +16067,24,4.5,39,0.0 +16067,74,10,44,0.0 +16067,49,20,44,0.0 +16067,52,7,36,0.0 +16067,23,9,25,0.0 +16067,50,16.25,14,0.0 +16067,73,15,4,0.0 +16067,11,21,15,0.0 +16067,17,39,25,0.0 +16067,13,6,17,0.0 +16067,57,19.5,37,0.0 +16067,6,25,30,0.0 +16067,39,18,40,0.0 +16067,58,13.25,20,0.0 +16067,35,18,18,0.0 +16067,42,14,3,0.0 +16067,66,17,46,0.0 +16067,36,19,9,0.0 +16067,15,15.5,20,0.0 +16067,65,21.05,39,0.0 +16067,46,12,21,0.0 +16067,25,14,19,0.0 +16067,31,12.5,31,0.0 +16067,22,21,30,0.0 +16067,53,32.8,38,0.0 +16067,75,7.75,4,0.0 +16067,45,9.5,10,0.0 +16067,19,9.2,22,0.0 +16067,68,12.5,28,0.0 +16067,14,23.25,9,0.0 +16067,48,12.75,38,0.0 +16067,56,38,24,0.0 +16067,54,7.45,42,0.0 +16067,8,40,44,0.0 +16067,55,24,14,0.0 +16067,20,81,4,0.0 +16067,38,263.5,38,0.0 +16067,26,31.23,35,0.0 +16067,29,123.79,23,0.0 +16067,10,31,22,0.0 +16067,30,25.89,6,0.0 +16067,51,53,5,0.0 +16067,3,10,38,0.0 +16068,5,21.35,18,0.0 +16068,48,12.75,26,0.0 +16068,63,43.9,7,0.0 +16068,13,6,2,0.0 +16068,76,18,14,0.0 +16068,67,14,29,0.0 +16068,40,18.4,18,0.0 +16068,19,9.2,46,0.0 +16068,8,40,30,0.0 +16068,4,22,2,0.0 +16068,55,24,42,0.0 +16068,52,7,20,0.0 +16068,53,32.8,46,0.0 +16068,11,21,11,0.0 +16068,14,23.25,27,0.0 +16068,37,26,38,0.0 +16068,29,123.79,44,0.0 +16068,15,15.5,17,0.0 +16068,74,10,37,0.0 +16068,20,81,40,0.0 +16068,31,12.5,19,0.0 +16068,77,13,33,0.0 +16068,18,62.5,3,0.0 +16068,17,39,37,0.0 +16068,28,45.6,33,0.0 +16068,70,15,26,0.0 +16068,45,9.5,28,0.0 +16068,50,16.25,15,0.0 +16068,9,97,42,0.0 +16068,27,43.9,11,0.0 +16068,56,38,3,0.0 +16068,22,21,45,0.0 +16068,30,25.89,48,0.0 +16068,46,12,15,0.0 +16068,25,14,50,0.0 +16068,1,18,49,0.0 +16068,65,21.05,42,0.0 +16068,73,15,4,0.0 +16068,62,49.3,31,0.0 +16068,68,12.5,9,0.0 +16068,54,7.45,18,0.0 +16068,38,263.5,30,0.0 +16068,64,33.25,8,0.0 +16068,75,7.75,49,0.0 +16068,72,34.8,44,0.0 +16068,66,17,2,0.0 +16068,34,14,12,0.0 +16068,59,55,3,0.0 +16068,36,19,25,0.0 +16068,7,30,46,0.0 +16068,71,21.5,23,0.0 +16068,60,34,46,0.0 +16068,35,18,49,0.0 +16068,51,53,44,0.0 +16068,69,36,33,0.0 +16068,43,46,29,0.0 +16068,23,9,40,0.0 +16068,49,20,35,0.0 +16068,24,4.5,27,0.0 +16068,16,17.45,12,0.0 +16068,39,18,5,0.0 +16068,3,10,27,0.0 +16068,32,32,26,0.0 +16068,21,10,16,0.0 +16068,33,2.5,2,0.0 +16068,57,19.5,36,0.0 +16069,11,21,18,0.0 +16069,60,34,49,0.0 +16069,43,46,16,0.0 +16069,66,17,35,0.0 +16069,17,39,31,0.0 +16069,32,32,27,0.0 +16069,36,19,4,0.0 +16069,45,9.5,4,0.0 +16069,18,62.5,22,0.0 +16069,33,2.5,47,0.0 +16069,19,9.2,21,0.0 +16069,47,9.5,10,0.0 +16069,27,43.9,10,0.0 +16069,71,21.5,49,0.0 +16069,1,18,38,0.0 +16070,72,34.8,37,0.0 +16070,42,14,28,0.0 +16070,17,39,32,0.0 +16070,63,43.9,35,0.0 +16070,11,21,23,0.0 +16070,75,7.75,48,0.0 +16070,71,21.5,7,0.0 +16070,60,34,1,0.0 +16070,4,22,37,0.0 +16070,12,38,8,0.0 +16070,10,31,22,0.0 +16070,21,10,1,0.0 +16070,68,12.5,34,0.0 +16070,14,23.25,15,0.0 +16070,54,7.45,33,0.0 +16070,47,9.5,39,0.0 +16070,76,18,21,0.0 +16070,30,25.89,41,0.0 +16070,45,9.5,42,0.0 +16070,13,6,11,0.0 +16070,61,28.5,35,0.0 +16070,37,26,8,0.0 +16070,73,15,15,0.0 +16070,50,16.25,30,0.0 +16070,46,12,1,0.0 +16070,3,10,7,0.0 +16070,66,17,13,0.0 +16070,59,55,4,0.0 +16070,70,15,32,0.0 +16070,22,21,50,0.0 +16070,5,21.35,46,0.0 +16070,36,19,41,0.0 +16070,34,14,38,0.0 +16070,2,19,16,0.0 +16070,9,97,8,0.0 +16070,24,4.5,29,0.0 +16070,40,18.4,39,0.0 +16070,77,13,34,0.0 +16070,52,7,30,0.0 +16070,23,9,25,0.0 +16070,55,24,18,0.0 +16070,49,20,46,0.0 +16070,56,38,33,0.0 +16070,62,49.3,21,0.0 +16070,51,53,32,0.0 +16070,67,14,22,0.0 +16070,19,9.2,20,0.0 +16070,6,25,1,0.0 +16070,7,30,28,0.0 +16071,75,7.75,42,0.0 +16071,53,32.8,49,0.0 +16071,47,9.5,8,0.0 +16071,14,23.25,5,0.0 +16071,31,12.5,25,0.0 +16071,28,45.6,46,0.0 +16071,17,39,11,0.0 +16071,73,15,38,0.0 +16071,71,21.5,14,0.0 +16071,37,26,26,0.0 +16071,69,36,33,0.0 +16071,40,18.4,44,0.0 +16071,19,9.2,39,0.0 +16071,20,81,6,0.0 +16071,12,38,30,0.0 +16071,60,34,20,0.0 +16071,35,18,33,0.0 +16072,62,49.3,11,0.0 +16072,11,21,5,0.0 +16072,22,21,3,0.0 +16072,65,21.05,31,0.0 +16072,69,36,29,0.0 +16072,75,7.75,11,0.0 +16072,43,46,32,0.0 +16072,3,10,50,0.0 +16072,25,14,18,0.0 +16072,31,12.5,46,0.0 +16072,67,14,43,0.0 +16072,6,25,49,0.0 +16072,51,53,6,0.0 +16072,21,10,41,0.0 +16072,46,12,13,0.0 +16072,56,38,39,0.0 +16072,14,23.25,21,0.0 +16072,53,32.8,22,0.0 +16072,41,9.65,19,0.0 +16072,5,21.35,17,0.0 +16072,74,10,13,0.0 +16072,19,9.2,47,0.0 +16072,18,62.5,26,0.0 +16072,1,18,33,0.0 +16072,30,25.89,26,0.0 +16072,58,13.25,1,0.0 +16072,42,14,1,0.0 +16072,60,34,3,0.0 +16072,29,123.79,40,0.0 +16072,38,263.5,44,0.0 +16072,32,32,47,0.0 +16072,37,26,47,0.0 +16072,16,17.45,12,0.0 +16072,44,19.45,31,0.0 +16072,64,33.25,43,0.0 +16072,66,17,41,0.0 +16072,45,9.5,41,0.0 +16072,9,97,30,0.0 +16072,35,18,25,0.0 +16072,52,7,15,0.0 +16072,34,14,45,0.0 +16072,76,18,25,0.0 +16072,50,16.25,28,0.0 +16072,27,43.9,44,0.0 +16072,57,19.5,35,0.0 +16072,61,28.5,7,0.0 +16072,8,40,40,0.0 +16072,63,43.9,19,0.0 +16072,12,38,31,0.0 +16072,70,15,45,0.0 +16072,59,55,28,0.0 +16072,73,15,47,0.0 +16072,7,30,50,0.0 +16072,39,18,11,0.0 +16072,68,12.5,22,0.0 +16072,72,34.8,43,0.0 +16072,4,22,40,0.0 +16072,17,39,21,0.0 +16072,23,9,7,0.0 +16072,15,15.5,3,0.0 +16072,40,18.4,33,0.0 +16072,36,19,41,0.0 +16072,49,20,40,0.0 +16072,55,24,41,0.0 +16072,26,31.23,43,0.0 +16072,13,6,26,0.0 +16073,51,53,25,0.0 +16073,6,25,14,0.0 +16073,63,43.9,37,0.0 +16073,64,33.25,45,0.0 +16073,35,18,2,0.0 +16073,11,21,43,0.0 +16073,49,20,10,0.0 +16073,18,62.5,31,0.0 +16073,27,43.9,16,0.0 +16073,69,36,34,0.0 +16073,25,14,37,0.0 +16073,14,23.25,10,0.0 +16073,5,21.35,14,0.0 +16073,22,21,49,0.0 +16073,40,18.4,25,0.0 +16073,62,49.3,35,0.0 +16073,13,6,27,0.0 +16073,17,39,28,0.0 +16073,60,34,28,0.0 +16073,37,26,37,0.0 +16073,29,123.79,36,0.0 +16073,71,21.5,41,0.0 +16073,68,12.5,47,0.0 +16073,7,30,5,0.0 +16073,30,25.89,30,0.0 +16073,76,18,10,0.0 +16073,75,7.75,12,0.0 +16073,59,55,21,0.0 +16073,44,19.45,6,0.0 +16073,46,12,27,0.0 +16073,67,14,1,0.0 +16073,72,34.8,34,0.0 +16073,26,31.23,34,0.0 +16073,32,32,4,0.0 +16073,12,38,50,0.0 +16073,70,15,47,0.0 +16073,48,12.75,1,0.0 +16073,52,7,29,0.0 +16073,42,14,26,0.0 +16073,57,19.5,5,0.0 +16073,65,21.05,49,0.0 +16073,54,7.45,3,0.0 +16073,39,18,23,0.0 +16074,59,55,9,0.0 +16074,25,14,40,0.0 +16074,76,18,42,0.0 +16074,46,12,4,0.0 +16074,73,15,50,0.0 +16074,7,30,3,0.0 +16074,18,62.5,33,0.0 +16074,75,7.75,27,0.0 +16074,29,123.79,40,0.0 +16074,45,9.5,5,0.0 +16074,71,21.5,22,0.0 +16075,13,6,9,0.0 +16075,25,14,23,0.0 +16075,1,18,31,0.0 +16075,38,263.5,50,0.0 +16075,65,21.05,10,0.0 +16075,20,81,42,0.0 +16075,36,19,27,0.0 +16075,8,40,17,0.0 +16075,30,25.89,28,0.0 +16075,48,12.75,35,0.0 +16075,39,18,32,0.0 +16075,47,9.5,46,0.0 +16075,62,49.3,25,0.0 +16075,6,25,10,0.0 +16075,2,19,8,0.0 +16075,73,15,40,0.0 +16075,53,32.8,41,0.0 +16075,26,31.23,4,0.0 +16075,59,55,42,0.0 +16075,24,4.5,44,0.0 +16075,17,39,35,0.0 +16075,37,26,42,0.0 +16075,64,33.25,35,0.0 +16075,75,7.75,49,0.0 +16075,41,9.65,39,0.0 +16075,51,53,37,0.0 +16075,58,13.25,4,0.0 +16075,54,7.45,29,0.0 +16075,31,12.5,40,0.0 +16075,33,2.5,27,0.0 +16075,43,46,24,0.0 +16075,32,32,5,0.0 +16075,56,38,35,0.0 +16075,69,36,46,0.0 +16075,57,19.5,18,0.0 +16075,16,17.45,42,0.0 +16075,5,21.35,42,0.0 +16075,42,14,10,0.0 +16075,74,10,5,0.0 +16075,19,9.2,40,0.0 +16075,71,21.5,42,0.0 +16076,36,19,2,0.0 +16076,26,31.23,2,0.0 +16076,37,26,23,0.0 +16076,15,15.5,39,0.0 +16076,45,9.5,27,0.0 +16076,10,31,48,0.0 +16076,46,12,24,0.0 +16076,16,17.45,28,0.0 +16076,7,30,13,0.0 +16076,54,7.45,21,0.0 +16076,70,15,36,0.0 +16076,76,18,38,0.0 +16076,40,18.4,45,0.0 +16076,51,53,23,0.0 +16076,67,14,31,0.0 +16076,69,36,28,0.0 +16076,17,39,4,0.0 +16076,50,16.25,14,0.0 +16076,58,13.25,29,0.0 +16076,42,14,25,0.0 +16076,47,9.5,37,0.0 +16077,32,32,13,0.0 +16077,12,38,7,0.0 +16077,22,21,32,0.0 +16077,23,9,38,0.0 +16077,47,9.5,9,0.0 +16077,2,19,32,0.0 +16077,51,53,25,0.0 +16077,3,10,41,0.0 +16077,61,28.5,23,0.0 +16077,54,7.45,22,0.0 +16077,72,34.8,29,0.0 +16077,18,62.5,24,0.0 +16077,59,55,4,0.0 +16077,20,81,8,0.0 +16077,58,13.25,10,0.0 +16077,52,7,14,0.0 +16077,38,263.5,50,0.0 +16077,13,6,16,0.0 +16077,6,25,2,0.0 +16077,11,21,3,0.0 +16077,37,26,41,0.0 +16077,40,18.4,5,0.0 +16077,39,18,31,0.0 +16077,49,20,18,0.0 +16077,26,31.23,20,0.0 +16077,64,33.25,43,0.0 +16077,36,19,37,0.0 +16077,67,14,5,0.0 +16077,55,24,50,0.0 +16077,77,13,35,0.0 +16077,30,25.89,10,0.0 +16077,68,12.5,24,0.0 +16077,70,15,18,0.0 +16077,44,19.45,30,0.0 +16077,66,17,49,0.0 +16077,74,10,44,0.0 +16077,48,12.75,50,0.0 +16077,73,15,12,0.0 +16077,31,12.5,13,0.0 +16077,69,36,26,0.0 +16077,42,14,20,0.0 +16077,56,38,48,0.0 +16077,27,43.9,5,0.0 +16077,15,15.5,44,0.0 +16077,33,2.5,40,0.0 +16077,29,123.79,10,0.0 +16077,25,14,17,0.0 +16077,50,16.25,36,0.0 +16077,46,12,45,0.0 +16077,5,21.35,48,0.0 +16077,10,31,39,0.0 +16077,24,4.5,42,0.0 +16077,60,34,36,0.0 +16077,76,18,50,0.0 +16077,17,39,12,0.0 +16077,16,17.45,46,0.0 +16077,62,49.3,4,0.0 +16077,53,32.8,21,0.0 +16077,75,7.75,48,0.0 +16078,72,34.8,43,0.0 +16078,8,40,39,0.0 +16078,49,20,23,0.0 +16078,28,45.6,32,0.0 +16078,37,26,20,0.0 +16078,9,97,49,0.0 +16078,61,28.5,18,0.0 +16078,7,30,16,0.0 +16078,69,36,28,0.0 +16078,24,4.5,9,0.0 +16078,20,81,44,0.0 +16078,36,19,27,0.0 +16078,12,38,9,0.0 +16078,73,15,42,0.0 +16078,64,33.25,15,0.0 +16078,54,7.45,2,0.0 +16078,25,14,9,0.0 +16078,1,18,19,0.0 +16078,15,15.5,43,0.0 +16078,13,6,16,0.0 +16078,75,7.75,5,0.0 +16078,4,22,14,0.0 +16078,74,10,7,0.0 +16078,35,18,3,0.0 +16078,39,18,16,0.0 +16078,42,14,38,0.0 +16078,31,12.5,13,0.0 +16078,70,15,48,0.0 +16078,11,21,7,0.0 +16078,77,13,28,0.0 +16078,21,10,4,0.0 +16078,27,43.9,30,0.0 +16078,33,2.5,42,0.0 +16078,67,14,48,0.0 +16078,47,9.5,23,0.0 +16078,50,16.25,33,0.0 +16078,65,21.05,2,0.0 +16079,73,15,13,0.0 +16079,31,12.5,33,0.0 +16079,2,19,3,0.0 +16079,28,45.6,9,0.0 +16079,21,10,11,0.0 +16079,77,13,31,0.0 +16079,38,263.5,30,0.0 +16079,32,32,34,0.0 +16079,63,43.9,40,0.0 +16079,34,14,29,0.0 +16079,40,18.4,46,0.0 +16079,47,9.5,14,0.0 +16079,39,18,9,0.0 +16079,64,33.25,5,0.0 +16079,48,12.75,8,0.0 +16079,29,123.79,23,0.0 +16079,41,9.65,35,0.0 +16079,68,12.5,25,0.0 +16079,27,43.9,26,0.0 +16079,69,36,17,0.0 +16079,13,6,33,0.0 +16079,4,22,43,0.0 +16079,26,31.23,39,0.0 +16079,10,31,36,0.0 +16079,7,30,44,0.0 +16079,17,39,32,0.0 +16079,60,34,35,0.0 +16079,24,4.5,24,0.0 +16079,12,38,11,0.0 +16079,53,32.8,15,0.0 +16079,55,24,16,0.0 +16079,65,21.05,9,0.0 +16079,49,20,5,0.0 +16079,6,25,46,0.0 +16079,9,97,28,0.0 +16079,15,15.5,48,0.0 +16079,42,14,46,0.0 +16079,1,18,19,0.0 +16079,66,17,47,0.0 +16079,36,19,1,0.0 +16079,76,18,43,0.0 +16079,52,7,43,0.0 +16079,20,81,43,0.0 +16079,75,7.75,14,0.0 +16079,43,46,20,0.0 +16079,67,14,49,0.0 +16079,8,40,16,0.0 +16079,74,10,36,0.0 +16079,37,26,19,0.0 +16079,25,14,21,0.0 +16079,33,2.5,35,0.0 +16079,23,9,43,0.0 +16079,50,16.25,15,0.0 +16079,16,17.45,40,0.0 +16079,72,34.8,39,0.0 +16079,57,19.5,35,0.0 +16079,45,9.5,27,0.0 +16079,3,10,7,0.0 +16079,54,7.45,36,0.0 +16079,35,18,29,0.0 +16079,22,21,27,0.0 +16079,44,19.45,6,0.0 +16079,14,23.25,32,0.0 +16079,11,21,29,0.0 +16079,5,21.35,13,0.0 +16079,62,49.3,20,0.0 +16080,25,14,9,0.0 +16080,69,36,14,0.0 +16080,53,32.8,37,0.0 +16080,44,19.45,15,0.0 +16080,62,49.3,49,0.0 +16080,59,55,22,0.0 +16080,36,19,27,0.0 +16080,52,7,43,0.0 +16080,3,10,31,0.0 +16080,20,81,21,0.0 +16080,37,26,29,0.0 +16080,64,33.25,39,0.0 +16080,72,34.8,23,0.0 +16080,75,7.75,49,0.0 +16080,27,43.9,43,0.0 +16080,41,9.65,9,0.0 +16080,70,15,30,0.0 +16080,6,25,15,0.0 +16081,51,53,17,0.0 +16081,65,21.05,47,0.0 +16081,72,34.8,41,0.0 +16081,45,9.5,48,0.0 +16081,60,34,46,0.0 +16081,19,9.2,27,0.0 +16081,67,14,8,0.0 +16081,12,38,45,0.0 +16081,58,13.25,1,0.0 +16081,56,38,37,0.0 +16081,64,33.25,18,0.0 +16081,41,9.65,41,0.0 +16081,69,36,31,0.0 +16081,6,25,33,0.0 +16081,23,9,12,0.0 +16081,32,32,44,0.0 +16081,24,4.5,29,0.0 +16081,46,12,36,0.0 +16081,16,17.45,10,0.0 +16081,40,18.4,9,0.0 +16081,38,263.5,49,0.0 +16081,34,14,19,0.0 +16081,70,15,35,0.0 +16081,18,62.5,11,0.0 +16081,30,25.89,41,0.0 +16081,13,6,42,0.0 +16081,1,18,18,0.0 +16081,29,123.79,40,0.0 +16081,57,19.5,19,0.0 +16081,25,14,42,0.0 +16081,63,43.9,5,0.0 +16081,8,40,28,0.0 +16081,55,24,21,0.0 +16081,47,9.5,48,0.0 +16081,76,18,4,0.0 +16081,15,15.5,48,0.0 +16081,20,81,40,0.0 +16081,17,39,38,0.0 +16081,4,22,10,0.0 +16081,7,30,44,0.0 +16081,49,20,9,0.0 +16081,36,19,15,0.0 +16081,27,43.9,44,0.0 +16081,14,23.25,17,0.0 +16081,66,17,5,0.0 +16081,21,10,13,0.0 +16081,73,15,1,0.0 +16081,42,14,4,0.0 +16081,35,18,7,0.0 +16081,54,7.45,45,0.0 +16081,39,18,16,0.0 +16081,37,26,27,0.0 +16081,3,10,44,0.0 +16081,26,31.23,15,0.0 +16081,2,19,18,0.0 +16081,48,12.75,36,0.0 +16081,9,97,47,0.0 +16081,74,10,17,0.0 +16081,43,46,20,0.0 +16081,5,21.35,10,0.0 +16081,52,7,25,0.0 +16081,28,45.6,24,0.0 +16081,59,55,22,0.0 +16081,53,32.8,12,0.0 +16081,44,19.45,2,0.0 +16081,31,12.5,20,0.0 +16081,71,21.5,18,0.0 +16081,10,31,50,0.0 +16081,61,28.5,43,0.0 +16081,62,49.3,5,0.0 +16081,11,21,40,0.0 +16081,33,2.5,17,0.0 +16082,35,18,42,0.0 +16082,32,32,27,0.0 +16082,45,9.5,39,0.0 +16082,6,25,40,0.0 +16082,12,38,12,0.0 +16082,74,10,1,0.0 +16082,73,15,31,0.0 +16082,40,18.4,16,0.0 +16082,28,45.6,44,0.0 +16082,26,31.23,19,0.0 +16082,36,19,21,0.0 +16082,72,34.8,22,0.0 +16082,30,25.89,29,0.0 +16082,63,43.9,23,0.0 +16082,31,12.5,29,0.0 +16082,52,7,8,0.0 +16082,34,14,5,0.0 +16082,54,7.45,24,0.0 +16082,1,18,30,0.0 +16082,15,15.5,16,0.0 +16082,2,19,12,0.0 +16082,3,10,43,0.0 +16082,51,53,7,0.0 +16082,58,13.25,24,0.0 +16082,11,21,24,0.0 +16082,21,10,36,0.0 +16082,60,34,31,0.0 +16082,68,12.5,8,0.0 +16082,64,33.25,34,0.0 +16082,39,18,36,0.0 +16082,44,19.45,47,0.0 +16082,41,9.65,16,0.0 +16082,29,123.79,1,0.0 +16082,16,17.45,41,0.0 +16082,65,21.05,37,0.0 +16082,33,2.5,6,0.0 +16082,7,30,49,0.0 +16082,42,14,46,0.0 +16082,27,43.9,42,0.0 +16082,55,24,24,0.0 +16082,37,26,5,0.0 +16082,17,39,19,0.0 +16082,71,21.5,7,0.0 +16082,53,32.8,43,0.0 +16082,70,15,46,0.0 +16083,18,62.5,46,0.0 +16083,52,7,44,0.0 +16083,72,34.8,40,0.0 +16083,65,21.05,45,0.0 +16083,55,24,50,0.0 +16083,77,13,28,0.0 +16083,41,9.65,43,0.0 +16083,15,15.5,5,0.0 +16083,22,21,23,0.0 +16083,45,9.5,10,0.0 +16083,1,18,3,0.0 +16083,67,14,48,0.0 +16083,35,18,35,0.0 +16083,12,38,19,0.0 +16083,61,28.5,36,0.0 +16083,27,43.9,17,0.0 +16083,54,7.45,36,0.0 +16083,38,263.5,26,0.0 +16083,57,19.5,44,0.0 +16083,23,9,14,0.0 +16083,16,17.45,10,0.0 +16083,32,32,44,0.0 +16083,6,25,47,0.0 +16084,12,38,43,0.0 +16084,62,49.3,31,0.0 +16084,61,28.5,38,0.0 +16084,35,18,22,0.0 +16084,54,7.45,45,0.0 +16084,23,9,14,0.0 +16084,27,43.9,24,0.0 +16084,48,12.75,12,0.0 +16084,17,39,31,0.0 +16084,3,10,19,0.0 +16084,49,20,41,0.0 +16084,33,2.5,14,0.0 +16084,18,62.5,26,0.0 +16084,72,34.8,40,0.0 +16084,4,22,9,0.0 +16084,32,32,5,0.0 +16084,44,19.45,3,0.0 +16084,70,15,10,0.0 +16084,71,21.5,5,0.0 +16084,13,6,19,0.0 +16084,28,45.6,17,0.0 +16084,5,21.35,34,0.0 +16084,19,9.2,20,0.0 +16084,42,14,37,0.0 +16084,45,9.5,14,0.0 +16084,8,40,23,0.0 +16084,25,14,15,0.0 +16084,75,7.75,9,0.0 +16084,51,53,13,0.0 +16084,47,9.5,23,0.0 +16084,52,7,41,0.0 +16084,46,12,34,0.0 +16084,9,97,50,0.0 +16084,21,10,12,0.0 +16084,38,263.5,17,0.0 +16084,63,43.9,23,0.0 +16084,14,23.25,50,0.0 +16084,26,31.23,12,0.0 +16084,55,24,48,0.0 +16084,60,34,43,0.0 +16084,65,21.05,32,0.0 +16084,57,19.5,32,0.0 +16084,69,36,3,0.0 +16085,75,7.75,20,0.0 +16085,3,10,49,0.0 +16085,49,20,38,0.0 +16085,58,13.25,1,0.0 +16085,63,43.9,8,0.0 +16085,43,46,19,0.0 +16085,41,9.65,32,0.0 +16085,61,28.5,50,0.0 +16085,70,15,41,0.0 +16085,27,43.9,8,0.0 +16085,55,24,42,0.0 +16085,4,22,6,0.0 +16085,47,9.5,37,0.0 +16085,26,31.23,26,0.0 +16085,16,17.45,9,0.0 +16085,60,34,31,0.0 +16085,1,18,29,0.0 +16085,29,123.79,18,0.0 +16085,18,62.5,7,0.0 +16085,62,49.3,7,0.0 +16085,57,19.5,37,0.0 +16085,8,40,50,0.0 +16085,13,6,35,0.0 +16085,37,26,31,0.0 +16085,39,18,32,0.0 +16085,17,39,14,0.0 +16085,19,9.2,1,0.0 +16085,42,14,12,0.0 +16085,59,55,46,0.0 +16085,44,19.45,28,0.0 +16085,28,45.6,13,0.0 +16085,32,32,17,0.0 +16085,48,12.75,5,0.0 +16085,46,12,33,0.0 +16085,53,32.8,50,0.0 +16085,72,34.8,32,0.0 +16085,40,18.4,48,0.0 +16085,50,16.25,40,0.0 +16085,31,12.5,12,0.0 +16085,34,14,45,0.0 +16085,5,21.35,49,0.0 +16085,30,25.89,25,0.0 +16085,23,9,18,0.0 +16085,74,10,42,0.0 +16085,20,81,12,0.0 +16085,38,263.5,45,0.0 +16085,35,18,45,0.0 +16085,21,10,37,0.0 +16085,9,97,40,0.0 +16085,67,14,24,0.0 +16085,45,9.5,10,0.0 +16085,66,17,36,0.0 +16085,7,30,3,0.0 +16085,15,15.5,8,0.0 +16085,14,23.25,18,0.0 +16085,65,21.05,5,0.0 +16085,11,21,41,0.0 +16085,77,13,6,0.0 +16085,51,53,42,0.0 +16085,10,31,35,0.0 +16085,22,21,50,0.0 +16086,34,14,8,0.0 +16086,20,81,14,0.0 +16086,70,15,49,0.0 +16086,64,33.25,22,0.0 +16086,27,43.9,50,0.0 +16086,26,31.23,42,0.0 +16086,23,9,7,0.0 +16086,63,43.9,6,0.0 +16086,5,21.35,42,0.0 +16086,11,21,2,0.0 +16086,49,20,50,0.0 +16086,76,18,16,0.0 +16086,66,17,35,0.0 +16086,21,10,37,0.0 +16086,8,40,35,0.0 +16086,14,23.25,45,0.0 +16086,43,46,33,0.0 +16086,73,15,27,0.0 +16086,3,10,45,0.0 +16086,24,4.5,48,0.0 +16087,51,53,40,0.0 +16087,74,10,6,0.0 +16087,38,263.5,29,0.0 +16087,11,21,36,0.0 +16087,31,12.5,29,0.0 +16087,14,23.25,5,0.0 +16087,52,7,4,0.0 +16088,53,32.8,44,0.0 +16088,43,46,44,0.0 +16088,50,16.25,4,0.0 +16088,35,18,37,0.0 +16088,17,39,33,0.0 +16088,19,9.2,30,0.0 +16088,40,18.4,49,0.0 +16089,15,15.5,39,0.0 +16089,34,14,16,0.0 +16089,1,18,11,0.0 +16089,65,21.05,49,0.0 +16089,44,19.45,33,0.0 +16089,35,18,29,0.0 +16089,77,13,20,0.0 +16089,75,7.75,14,0.0 +16089,9,97,42,0.0 +16089,76,18,26,0.0 +16089,24,4.5,43,0.0 +16089,56,38,42,0.0 +16089,30,25.89,35,0.0 +16089,39,18,17,0.0 +16089,19,9.2,49,0.0 +16089,29,123.79,21,0.0 +16089,63,43.9,40,0.0 +16089,16,17.45,38,0.0 +16089,60,34,48,0.0 +16089,61,28.5,13,0.0 +16089,17,39,42,0.0 +16089,18,62.5,40,0.0 +16089,42,14,38,0.0 +16089,22,21,6,0.0 +16089,57,19.5,42,0.0 +16089,68,12.5,20,0.0 +16089,70,15,5,0.0 +16089,67,14,25,0.0 +16089,69,36,27,0.0 +16089,8,40,49,0.0 +16089,32,32,39,0.0 +16089,6,25,1,0.0 +16089,40,18.4,2,0.0 +16089,62,49.3,24,0.0 +16089,54,7.45,5,0.0 +16089,55,24,48,0.0 +16089,7,30,36,0.0 +16089,25,14,39,0.0 +16089,36,19,31,0.0 +16089,10,31,2,0.0 +16089,73,15,4,0.0 +16089,47,9.5,3,0.0 +16089,53,32.8,16,0.0 +16089,33,2.5,11,0.0 +16089,41,9.65,20,0.0 +16089,46,12,19,0.0 +16089,31,12.5,12,0.0 +16089,64,33.25,34,0.0 +16089,5,21.35,20,0.0 +16089,12,38,10,0.0 +16090,64,33.25,32,0.0 +16090,12,38,9,0.0 +16090,21,10,30,0.0 +16090,52,7,18,0.0 +16090,23,9,15,0.0 +16090,37,26,39,0.0 +16090,31,12.5,25,0.0 +16090,72,34.8,41,0.0 +16090,33,2.5,47,0.0 +16090,68,12.5,36,0.0 +16090,30,25.89,32,0.0 +16090,1,18,22,0.0 +16090,62,49.3,13,0.0 +16090,54,7.45,10,0.0 +16090,48,12.75,26,0.0 +16090,32,32,3,0.0 +16090,6,25,35,0.0 +16090,73,15,37,0.0 +16090,16,17.45,21,0.0 +16090,50,16.25,47,0.0 +16090,43,46,6,0.0 +16090,59,55,15,0.0 +16090,38,263.5,35,0.0 +16090,42,14,12,0.0 +16090,51,53,38,0.0 +16090,61,28.5,22,0.0 +16090,5,21.35,30,0.0 +16090,74,10,1,0.0 +16090,65,21.05,19,0.0 +16090,60,34,40,0.0 +16090,22,21,20,0.0 +16090,8,40,8,0.0 +16090,69,36,24,0.0 +16090,15,15.5,29,0.0 +16090,26,31.23,6,0.0 +16090,27,43.9,42,0.0 +16090,75,7.75,18,0.0 +16090,76,18,13,0.0 +16090,36,19,29,0.0 +16090,24,4.5,26,0.0 +16090,70,15,3,0.0 +16090,4,22,25,0.0 +16090,58,13.25,19,0.0 +16090,44,19.45,18,0.0 +16090,3,10,46,0.0 +16090,20,81,32,0.0 +16090,46,12,25,0.0 +16090,34,14,3,0.0 +16090,77,13,19,0.0 +16090,41,9.65,9,0.0 +16091,39,18,19,0.0 +16091,46,12,17,0.0 +16091,30,25.89,14,0.0 +16091,27,43.9,18,0.0 +16091,68,12.5,11,0.0 +16091,58,13.25,5,0.0 +16091,77,13,14,0.0 +16091,26,31.23,14,0.0 +16091,63,43.9,36,0.0 +16091,40,18.4,20,0.0 +16091,38,263.5,17,0.0 +16091,22,21,6,0.0 +16091,41,9.65,3,0.0 +16091,70,15,22,0.0 +16091,48,12.75,5,0.0 +16091,24,4.5,37,0.0 +16091,2,19,22,0.0 +16091,33,2.5,24,0.0 +16091,15,15.5,31,0.0 +16091,31,12.5,6,0.0 +16091,8,40,39,0.0 +16091,17,39,46,0.0 +16091,4,22,22,0.0 +16091,71,21.5,16,0.0 +16091,12,38,12,0.0 +16091,67,14,19,0.0 +16091,76,18,20,0.0 +16091,29,123.79,35,0.0 +16091,69,36,5,0.0 +16091,21,10,38,0.0 +16091,35,18,43,0.0 +16091,3,10,4,0.0 +16091,23,9,3,0.0 +16091,34,14,50,0.0 +16091,73,15,21,0.0 +16091,1,18,21,0.0 +16091,64,33.25,3,0.0 +16091,28,45.6,4,0.0 +16091,10,31,8,0.0 +16091,6,25,49,0.0 +16091,11,21,37,0.0 +16091,72,34.8,44,0.0 +16091,9,97,11,0.0 +16091,52,7,48,0.0 +16092,44,19.45,38,0.0 +16092,14,23.25,22,0.0 +16092,52,7,3,0.0 +16092,57,19.5,17,0.0 +16092,58,13.25,40,0.0 +16092,6,25,41,0.0 +16092,49,20,7,0.0 +16092,72,34.8,22,0.0 +16092,48,12.75,50,0.0 +16092,7,30,2,0.0 +16092,75,7.75,33,0.0 +16092,42,14,36,0.0 +16092,70,15,11,0.0 +16092,24,4.5,48,0.0 +16092,41,9.65,37,0.0 +16092,11,21,10,0.0 +16092,35,18,10,0.0 +16092,67,14,2,0.0 +16092,36,19,34,0.0 +16092,39,18,21,0.0 +16092,32,32,19,0.0 +16092,47,9.5,38,0.0 +16092,30,25.89,49,0.0 +16092,12,38,33,0.0 +16092,3,10,10,0.0 +16092,43,46,7,0.0 +16092,27,43.9,41,0.0 +16092,16,17.45,36,0.0 +16092,13,6,42,0.0 +16092,5,21.35,27,0.0 +16092,31,12.5,11,0.0 +16092,65,21.05,44,0.0 +16092,71,21.5,33,0.0 +16092,28,45.6,10,0.0 +16092,74,10,45,0.0 +16092,38,263.5,50,0.0 +16092,29,123.79,39,0.0 +16092,2,19,44,0.0 +16092,33,2.5,15,0.0 +16092,64,33.25,49,0.0 +16092,1,18,43,0.0 +16092,20,81,34,0.0 +16092,4,22,27,0.0 +16092,15,15.5,27,0.0 +16092,37,26,2,0.0 +16092,77,13,41,0.0 +16092,8,40,8,0.0 +16092,40,18.4,48,0.0 +16092,73,15,10,0.0 +16092,17,39,49,0.0 +16092,69,36,32,0.0 +16092,21,10,30,0.0 +16092,25,14,49,0.0 +16093,9,97,48,0.0 +16093,76,18,45,0.0 +16093,15,15.5,8,0.0 +16093,48,12.75,8,0.0 +16093,23,9,3,0.0 +16093,62,49.3,25,0.0 +16093,73,15,47,0.0 +16093,59,55,30,0.0 +16093,43,46,19,0.0 +16093,34,14,5,0.0 +16093,16,17.45,45,0.0 +16093,31,12.5,31,0.0 +16094,49,20,26,0.0 +16094,76,18,50,0.0 +16094,69,36,45,0.0 +16094,22,21,17,0.0 +16094,11,21,31,0.0 +16094,19,9.2,42,0.0 +16094,30,25.89,23,0.0 +16094,65,21.05,26,0.0 +16094,74,10,17,0.0 +16094,32,32,22,0.0 +16094,39,18,39,0.0 +16094,1,18,24,0.0 +16094,24,4.5,15,0.0 +16094,2,19,31,0.0 +16094,68,12.5,4,0.0 +16094,20,81,48,0.0 +16094,67,14,40,0.0 +16094,6,25,16,0.0 +16094,60,34,36,0.0 +16094,4,22,22,0.0 +16094,72,34.8,6,0.0 +16094,21,10,39,0.0 +16094,7,30,43,0.0 +16094,52,7,49,0.0 +16094,13,6,8,0.0 +16094,16,17.45,14,0.0 +16095,67,14,42,0.0 +16095,73,15,49,0.0 +16095,51,53,2,0.0 +16095,11,21,7,0.0 +16095,6,25,19,0.0 +16095,26,31.23,34,0.0 +16095,13,6,6,0.0 +16095,44,19.45,34,0.0 +16095,24,4.5,30,0.0 +16095,66,17,22,0.0 +16095,20,81,17,0.0 +16095,65,21.05,8,0.0 +16095,38,263.5,5,0.0 +16095,8,40,18,0.0 +16095,47,9.5,21,0.0 +16095,33,2.5,25,0.0 +16095,1,18,1,0.0 +16096,40,18.4,13,0.0 +16096,45,9.5,37,0.0 +16096,49,20,43,0.0 +16096,66,17,9,0.0 +16096,12,38,47,0.0 +16096,16,17.45,17,0.0 +16096,59,55,16,0.0 +16096,76,18,8,0.0 +16096,47,9.5,14,0.0 +16096,70,15,6,0.0 +16096,71,21.5,16,0.0 +16096,77,13,48,0.0 +16096,63,43.9,18,0.0 +16096,65,21.05,45,0.0 +16096,64,33.25,6,0.0 +16096,24,4.5,41,0.0 +16096,11,21,10,0.0 +16096,31,12.5,26,0.0 +16096,67,14,33,0.0 +16096,51,53,18,0.0 +16096,69,36,3,0.0 +16096,62,49.3,15,0.0 +16096,57,19.5,34,0.0 +16096,29,123.79,12,0.0 +16096,36,19,10,0.0 +16096,61,28.5,41,0.0 +16096,19,9.2,33,0.0 +16096,7,30,7,0.0 +16096,27,43.9,30,0.0 +16096,23,9,47,0.0 +16096,17,39,13,0.0 +16096,18,62.5,45,0.0 +16096,15,15.5,18,0.0 +16096,4,22,23,0.0 +16096,43,46,47,0.0 +16096,56,38,39,0.0 +16096,37,26,28,0.0 +16096,60,34,17,0.0 +16096,33,2.5,45,0.0 +16096,5,21.35,33,0.0 +16096,54,7.45,5,0.0 +16096,44,19.45,49,0.0 +16096,6,25,17,0.0 +16096,14,23.25,9,0.0 +16096,2,19,24,0.0 +16096,53,32.8,50,0.0 +16096,28,45.6,15,0.0 +16096,30,25.89,10,0.0 +16096,48,12.75,3,0.0 +16096,58,13.25,39,0.0 +16096,10,31,48,0.0 +16096,34,14,42,0.0 +16096,8,40,2,0.0 +16097,57,19.5,1,0.0 +16097,28,45.6,10,0.0 +16097,15,15.5,37,0.0 +16097,2,19,50,0.0 +16097,58,13.25,23,0.0 +16097,59,55,18,0.0 +16097,3,10,3,0.0 +16097,67,14,15,0.0 +16097,5,21.35,18,0.0 +16097,75,7.75,37,0.0 +16097,43,46,30,0.0 +16097,38,263.5,3,0.0 +16097,6,25,45,0.0 +16097,61,28.5,17,0.0 +16097,49,20,20,0.0 +16097,8,40,13,0.0 +16097,66,17,25,0.0 +16097,30,25.89,8,0.0 +16097,37,26,23,0.0 +16097,39,18,33,0.0 +16097,55,24,46,0.0 +16097,32,32,29,0.0 +16097,64,33.25,15,0.0 +16097,45,9.5,46,0.0 +16097,23,9,13,0.0 +16097,36,19,8,0.0 +16098,30,25.89,17,0.0 +16098,38,263.5,12,0.0 +16098,24,4.5,6,0.0 +16098,13,6,34,0.0 +16098,77,13,35,0.0 +16098,10,31,39,0.0 +16098,49,20,50,0.0 +16098,54,7.45,23,0.0 +16098,15,15.5,49,0.0 +16098,58,13.25,3,0.0 +16098,26,31.23,45,0.0 +16098,50,16.25,30,0.0 +16098,62,49.3,33,0.0 +16098,69,36,11,0.0 +16098,5,21.35,19,0.0 +16098,3,10,2,0.0 +16098,51,53,32,0.0 +16098,2,19,12,0.0 +16098,11,21,16,0.0 +16098,61,28.5,14,0.0 +16098,31,12.5,46,0.0 +16098,8,40,24,0.0 +16098,53,32.8,18,0.0 +16098,16,17.45,19,0.0 +16098,48,12.75,20,0.0 +16098,46,12,50,0.0 +16098,43,46,50,0.0 +16098,63,43.9,41,0.0 +16098,56,38,15,0.0 +16098,29,123.79,34,0.0 +16098,9,97,22,0.0 +16098,25,14,16,0.0 +16098,14,23.25,46,0.0 +16098,32,32,29,0.0 +16098,34,14,18,0.0 +16098,36,19,27,0.0 +16098,1,18,11,0.0 +16098,28,45.6,40,0.0 +16098,70,15,12,0.0 +16099,42,14,4,0.0 +16099,71,21.5,23,0.0 +16099,52,7,36,0.0 +16099,22,21,50,0.0 +16099,35,18,43,0.0 +16099,74,10,42,0.0 +16099,19,9.2,26,0.0 +16099,69,36,9,0.0 +16099,77,13,19,0.0 +16099,56,38,3,0.0 +16099,45,9.5,15,0.0 +16099,21,10,19,0.0 +16099,20,81,3,0.0 +16100,68,12.5,31,0.0 +16100,75,7.75,22,0.0 +16100,41,9.65,31,0.0 +16100,12,38,40,0.0 +16100,53,32.8,2,0.0 +16100,59,55,16,0.0 +16100,54,7.45,8,0.0 +16100,72,34.8,6,0.0 +16100,20,81,6,0.0 +16100,67,14,21,0.0 +16100,63,43.9,27,0.0 +16100,50,16.25,32,0.0 +16100,47,9.5,9,0.0 +16100,48,12.75,10,0.0 +16100,70,15,3,0.0 +16100,21,10,35,0.0 +16100,61,28.5,17,0.0 +16100,14,23.25,1,0.0 +16100,58,13.25,25,0.0 +16100,29,123.79,1,0.0 +16100,30,25.89,17,0.0 +16100,34,14,7,0.0 +16100,22,21,31,0.0 +16100,46,12,49,0.0 +16100,45,9.5,33,0.0 +16100,57,19.5,44,0.0 +16100,42,14,9,0.0 +16100,8,40,28,0.0 +16100,9,97,10,0.0 +16100,16,17.45,16,0.0 +16100,18,62.5,6,0.0 +16100,27,43.9,22,0.0 +16100,35,18,24,0.0 +16100,17,39,17,0.0 +16100,73,15,28,0.0 +16100,51,53,7,0.0 +16100,36,19,45,0.0 +16100,13,6,13,0.0 +16100,2,19,9,0.0 +16100,5,21.35,23,0.0 +16100,32,32,6,0.0 +16100,55,24,9,0.0 +16100,56,38,32,0.0 +16100,60,34,35,0.0 +16100,28,45.6,1,0.0 +16100,66,17,44,0.0 +16100,62,49.3,27,0.0 +16100,38,263.5,29,0.0 +16100,65,21.05,1,0.0 +16100,52,7,24,0.0 +16100,4,22,24,0.0 +16100,10,31,13,0.0 +16100,3,10,12,0.0 +16101,70,15,43,0.0 +16101,57,19.5,11,0.0 +16101,74,10,44,0.0 +16101,43,46,27,0.0 +16101,41,9.65,45,0.0 +16101,60,34,25,0.0 +16101,34,14,45,0.0 +16101,75,7.75,44,0.0 +16101,65,21.05,1,0.0 +16101,20,81,34,0.0 +16101,11,21,21,0.0 +16101,47,9.5,18,0.0 +16101,17,39,46,0.0 +16101,23,9,45,0.0 +16101,1,18,49,0.0 +16101,16,17.45,36,0.0 +16101,7,30,29,0.0 +16101,64,33.25,4,0.0 +16101,53,32.8,50,0.0 +16101,12,38,36,0.0 +16101,42,14,45,0.0 +16101,35,18,7,0.0 +16101,71,21.5,5,0.0 +16101,33,2.5,13,0.0 +16101,6,25,29,0.0 +16101,13,6,2,0.0 +16101,8,40,31,0.0 +16101,62,49.3,50,0.0 +16101,50,16.25,39,0.0 +16101,44,19.45,12,0.0 +16101,38,263.5,3,0.0 +16101,73,15,35,0.0 +16101,54,7.45,16,0.0 +16101,59,55,42,0.0 +16101,58,13.25,23,0.0 +16101,37,26,5,0.0 +16101,46,12,35,0.0 +16101,51,53,46,0.0 +16101,15,15.5,38,0.0 +16101,24,4.5,13,0.0 +16101,45,9.5,40,0.0 +16101,29,123.79,42,0.0 +16101,48,12.75,15,0.0 +16101,36,19,14,0.0 +16101,14,23.25,27,0.0 +16101,19,9.2,19,0.0 +16101,22,21,34,0.0 +16101,9,97,6,0.0 +16101,30,25.89,1,0.0 +16101,69,36,42,0.0 +16101,26,31.23,40,0.0 +16101,72,34.8,31,0.0 +16101,27,43.9,48,0.0 +16101,32,32,26,0.0 +16101,40,18.4,6,0.0 +16102,45,9.5,34,0.0 +16102,14,23.25,47,0.0 +16102,52,7,12,0.0 +16102,30,25.89,6,0.0 +16102,55,24,7,0.0 +16102,49,20,46,0.0 +16102,70,15,13,0.0 +16102,73,15,45,0.0 +16102,72,34.8,14,0.0 +16102,48,12.75,33,0.0 +16102,24,4.5,43,0.0 +16102,5,21.35,47,0.0 +16102,61,28.5,23,0.0 +16102,28,45.6,46,0.0 +16102,26,31.23,11,0.0 +16102,33,2.5,9,0.0 +16102,50,16.25,25,0.0 +16102,42,14,50,0.0 +16102,62,49.3,35,0.0 +16102,25,14,12,0.0 +16102,31,12.5,36,0.0 +16102,46,12,12,0.0 +16102,29,123.79,10,0.0 +16102,71,21.5,3,0.0 +16102,40,18.4,22,0.0 +16102,20,81,11,0.0 +16102,13,6,6,0.0 +16102,2,19,43,0.0 +16102,63,43.9,30,0.0 +16102,3,10,40,0.0 +16102,21,10,36,0.0 +16102,34,14,41,0.0 +16102,10,31,43,0.0 +16102,1,18,6,0.0 +16102,59,55,22,0.0 +16102,60,34,16,0.0 +16102,9,97,26,0.0 +16102,53,32.8,31,0.0 +16102,19,9.2,23,0.0 +16102,77,13,25,0.0 +16102,64,33.25,50,0.0 +16102,37,26,29,0.0 +16102,32,32,44,0.0 +16102,18,62.5,26,0.0 +16103,23,9,50,0.0 +16103,50,16.25,27,0.0 +16103,3,10,36,0.0 +16103,32,32,22,0.0 +16103,24,4.5,44,0.0 +16103,12,38,22,0.0 +16103,26,31.23,39,0.0 +16103,15,15.5,7,0.0 +16103,57,19.5,5,0.0 +16103,51,53,11,0.0 +16103,11,21,25,0.0 +16103,70,15,44,0.0 +16103,41,9.65,37,0.0 +16103,29,123.79,39,0.0 +16103,66,17,37,0.0 +16103,71,21.5,44,0.0 +16103,6,25,19,0.0 +16103,40,18.4,24,0.0 +16103,35,18,17,0.0 +16103,55,24,44,0.0 +16103,61,28.5,24,0.0 +16103,38,263.5,11,0.0 +16103,17,39,46,0.0 +16103,54,7.45,2,0.0 +16103,74,10,29,0.0 +16103,30,25.89,12,0.0 +16103,5,21.35,28,0.0 +16103,16,17.45,29,0.0 +16103,49,20,10,0.0 +16103,56,38,7,0.0 +16103,73,15,24,0.0 +16103,27,43.9,40,0.0 +16103,4,22,37,0.0 +16103,77,13,32,0.0 +16103,67,14,23,0.0 +16103,20,81,25,0.0 +16104,32,32,25,0.0 +16104,57,19.5,1,0.0 +16104,73,15,48,0.0 +16104,67,14,42,0.0 +16104,48,12.75,13,0.0 +16104,54,7.45,27,0.0 +16104,66,17,46,0.0 +16104,34,14,31,0.0 +16104,12,38,32,0.0 +16104,11,21,8,0.0 +16104,30,25.89,47,0.0 +16104,41,9.65,24,0.0 +16104,74,10,46,0.0 +16104,38,263.5,30,0.0 +16104,26,31.23,11,0.0 +16104,53,32.8,6,0.0 +16104,9,97,27,0.0 +16104,43,46,32,0.0 +16104,40,18.4,19,0.0 +16104,60,34,46,0.0 +16105,16,17.45,44,0.0 +16105,32,32,32,0.0 +16105,51,53,6,0.0 +16105,38,263.5,12,0.0 +16105,53,32.8,13,0.0 +16105,13,6,13,0.0 +16105,31,12.5,26,0.0 +16105,73,15,3,0.0 +16105,54,7.45,15,0.0 +16105,46,12,3,0.0 +16105,74,10,46,0.0 +16105,36,19,33,0.0 +16105,9,97,41,0.0 +16105,45,9.5,28,0.0 +16105,15,15.5,45,0.0 +16105,67,14,47,0.0 +16105,52,7,19,0.0 +16105,7,30,13,0.0 +16105,4,22,44,0.0 +16105,39,18,26,0.0 +16105,23,9,42,0.0 +16105,56,38,47,0.0 +16105,30,25.89,12,0.0 +16105,25,14,13,0.0 +16105,48,12.75,39,0.0 +16105,29,123.79,23,0.0 +16105,10,31,21,0.0 +16105,40,18.4,31,0.0 +16105,62,49.3,42,0.0 +16105,35,18,30,0.0 +16105,2,19,30,0.0 +16105,63,43.9,17,0.0 +16105,60,34,23,0.0 +16105,33,2.5,37,0.0 +16105,44,19.45,2,0.0 +16105,1,18,50,0.0 +16105,24,4.5,15,0.0 +16105,50,16.25,22,0.0 +16105,5,21.35,3,0.0 +16105,3,10,11,0.0 +16105,37,26,49,0.0 +16105,65,21.05,6,0.0 +16105,42,14,48,0.0 +16105,22,21,36,0.0 +16105,76,18,48,0.0 +16105,43,46,31,0.0 +16105,75,7.75,2,0.0 +16105,20,81,40,0.0 +16105,17,39,24,0.0 +16105,77,13,45,0.0 +16105,61,28.5,4,0.0 +16105,55,24,21,0.0 +16105,49,20,34,0.0 +16105,69,36,48,0.0 +16105,41,9.65,47,0.0 +16105,58,13.25,20,0.0 +16105,59,55,33,0.0 +16105,26,31.23,11,0.0 +16105,27,43.9,16,0.0 +16105,47,9.5,19,0.0 +16105,6,25,17,0.0 +16105,34,14,6,0.0 +16105,66,17,40,0.0 +16105,14,23.25,46,0.0 +16105,21,10,8,0.0 +16105,18,62.5,36,0.0 +16105,71,21.5,45,0.0 +16105,11,21,25,0.0 +16105,28,45.6,1,0.0 +16105,72,34.8,42,0.0 +16105,12,38,44,0.0 +16105,64,33.25,5,0.0 +16105,68,12.5,5,0.0 +16105,19,9.2,44,0.0 +16105,8,40,35,0.0 +16105,57,19.5,22,0.0 +16105,70,15,10,0.0 +16106,19,9.2,16,0.0 +16106,60,34,16,0.0 +16106,61,28.5,10,0.0 +16106,25,14,13,0.0 +16106,28,45.6,45,0.0 +16106,10,31,35,0.0 +16106,20,81,30,0.0 +16106,8,40,46,0.0 +16106,13,6,8,0.0 +16106,2,19,40,0.0 +16106,47,9.5,28,0.0 +16106,31,12.5,44,0.0 +16106,77,13,33,0.0 +16106,55,24,43,0.0 +16106,45,9.5,4,0.0 +16106,62,49.3,26,0.0 +16106,15,15.5,27,0.0 +16106,66,17,6,0.0 +16106,29,123.79,28,0.0 +16106,37,26,29,0.0 +16106,57,19.5,34,0.0 +16106,32,32,39,0.0 +16106,22,21,16,0.0 +16106,35,18,39,0.0 +16106,38,263.5,48,0.0 +16106,6,25,34,0.0 +16106,40,18.4,12,0.0 +16106,70,15,2,0.0 +16106,48,12.75,23,0.0 +16106,69,36,14,0.0 +16106,30,25.89,41,0.0 +16106,36,19,13,0.0 +16106,51,53,49,0.0 +16106,73,15,24,0.0 +16107,18,62.5,9,0.0 +16107,16,17.45,37,0.0 +16107,35,18,27,0.0 +16107,31,12.5,34,0.0 +16107,37,26,18,0.0 +16107,38,263.5,9,0.0 +16107,2,19,48,0.0 +16107,55,24,46,0.0 +16107,4,22,9,0.0 +16107,44,19.45,6,0.0 +16107,64,33.25,26,0.0 +16107,63,43.9,33,0.0 +16107,32,32,17,0.0 +16107,56,38,46,0.0 +16107,74,10,29,0.0 +16107,69,36,44,0.0 +16107,73,15,37,0.0 +16107,59,55,46,0.0 +16107,58,13.25,29,0.0 +16107,25,14,13,0.0 +16107,49,20,12,0.0 +16107,47,9.5,23,0.0 +16107,11,21,26,0.0 +16107,12,38,17,0.0 +16107,46,12,49,0.0 +16107,66,17,5,0.0 +16107,76,18,34,0.0 +16107,17,39,32,0.0 +16107,61,28.5,26,0.0 +16107,42,14,31,0.0 +16107,26,31.23,12,0.0 +16107,67,14,11,0.0 +16107,7,30,34,0.0 +16107,1,18,23,0.0 +16107,43,46,42,0.0 +16107,5,21.35,9,0.0 +16107,30,25.89,40,0.0 +16107,45,9.5,48,0.0 +16107,15,15.5,24,0.0 +16107,60,34,50,0.0 +16107,29,123.79,32,0.0 +16107,14,23.25,3,0.0 +16107,71,21.5,9,0.0 +16107,65,21.05,38,0.0 +16107,20,81,43,0.0 +16107,51,53,20,0.0 +16107,57,19.5,1,0.0 +16107,9,97,25,0.0 +16107,48,12.75,10,0.0 +16107,22,21,1,0.0 +16107,39,18,32,0.0 +16107,50,16.25,17,0.0 +16107,21,10,11,0.0 +16107,62,49.3,43,0.0 +16107,10,31,33,0.0 +16107,34,14,20,0.0 +16107,3,10,29,0.0 +16107,8,40,38,0.0 +16107,19,9.2,16,0.0 +16107,54,7.45,3,0.0 +16107,52,7,14,0.0 +16107,68,12.5,2,0.0 +16107,75,7.75,28,0.0 +16107,41,9.65,15,0.0 +16107,23,9,3,0.0 +16107,27,43.9,5,0.0 +16107,33,2.5,26,0.0 +16107,72,34.8,47,0.0 +16107,13,6,14,0.0 +16107,40,18.4,9,0.0 +16108,64,33.25,17,0.0 +16108,16,17.45,23,0.0 +16108,52,7,2,0.0 +16108,58,13.25,23,0.0 +16108,53,32.8,8,0.0 +16108,27,43.9,25,0.0 +16108,59,55,19,0.0 +16108,24,4.5,42,0.0 +16108,40,18.4,6,0.0 +16108,72,34.8,31,0.0 +16108,55,24,17,0.0 +16108,56,38,19,0.0 +16108,28,45.6,18,0.0 +16108,23,9,27,0.0 +16108,3,10,47,0.0 +16108,18,62.5,26,0.0 +16108,29,123.79,8,0.0 +16108,37,26,6,0.0 +16108,71,21.5,14,0.0 +16108,63,43.9,22,0.0 +16108,12,38,36,0.0 +16108,47,9.5,40,0.0 +16108,1,18,9,0.0 +16108,8,40,2,0.0 +16108,38,263.5,3,0.0 +16108,48,12.75,7,0.0 +16108,74,10,36,0.0 +16108,4,22,16,0.0 +16108,67,14,20,0.0 +16108,39,18,44,0.0 +16108,70,15,6,0.0 +16109,6,25,50,0.0 +16109,56,38,41,0.0 +16109,34,14,5,0.0 +16109,20,81,37,0.0 +16109,60,34,1,0.0 +16109,68,12.5,19,0.0 +16109,5,21.35,11,0.0 +16109,17,39,38,0.0 +16109,42,14,41,0.0 +16109,12,38,36,0.0 +16109,64,33.25,26,0.0 +16109,1,18,1,0.0 +16109,2,19,9,0.0 +16109,13,6,18,0.0 +16109,75,7.75,44,0.0 +16109,36,19,22,0.0 +16109,21,10,38,0.0 +16109,48,12.75,48,0.0 +16109,53,32.8,5,0.0 +16109,39,18,7,0.0 +16109,32,32,50,0.0 +16109,57,19.5,33,0.0 +16109,58,13.25,39,0.0 +16109,50,16.25,10,0.0 +16109,22,21,4,0.0 +16109,28,45.6,44,0.0 +16110,20,81,37,0.0 +16110,6,25,49,0.0 +16110,14,23.25,22,0.0 +16110,59,55,21,0.0 +16110,49,20,4,0.0 +16110,11,21,42,0.0 +16110,3,10,6,0.0 +16110,55,24,14,0.0 +16110,36,19,19,0.0 +16110,52,7,39,0.0 +16110,12,38,7,0.0 +16110,25,14,47,0.0 +16110,51,53,41,0.0 +16110,18,62.5,7,0.0 +16110,41,9.65,48,0.0 +16110,70,15,4,0.0 +16110,66,17,39,0.0 +16110,69,36,48,0.0 +16110,16,17.45,45,0.0 +16110,71,21.5,23,0.0 +16110,63,43.9,2,0.0 +16110,75,7.75,24,0.0 +16110,54,7.45,42,0.0 +16110,46,12,10,0.0 +16110,64,33.25,19,0.0 +16110,50,16.25,3,0.0 +16110,22,21,8,0.0 +16110,38,263.5,47,0.0 +16110,7,30,4,0.0 +16110,30,25.89,10,0.0 +16110,28,45.6,45,0.0 +16110,44,19.45,7,0.0 +16110,58,13.25,45,0.0 +16110,40,18.4,50,0.0 +16110,23,9,31,0.0 +16110,60,34,6,0.0 +16110,2,19,15,0.0 +16110,42,14,1,0.0 +16110,32,32,22,0.0 +16110,21,10,27,0.0 +16110,17,39,49,0.0 +16110,34,14,43,0.0 +16110,43,46,39,0.0 +16110,53,32.8,13,0.0 +16110,45,9.5,50,0.0 +16110,13,6,48,0.0 +16110,9,97,6,0.0 +16110,31,12.5,17,0.0 +16110,39,18,25,0.0 +16110,33,2.5,13,0.0 +16110,1,18,6,0.0 +16110,56,38,34,0.0 +16110,77,13,30,0.0 +16110,68,12.5,28,0.0 +16110,57,19.5,16,0.0 +16110,5,21.35,42,0.0 +16110,67,14,46,0.0 +16111,7,30,3,0.0 +16111,20,81,19,0.0 +16111,56,38,28,0.0 +16111,13,6,10,0.0 +16111,39,18,35,0.0 +16111,25,14,13,0.0 +16111,38,263.5,20,0.0 +16111,51,53,14,0.0 +16111,5,21.35,42,0.0 +16111,18,62.5,7,0.0 +16111,15,15.5,33,0.0 +16111,36,19,29,0.0 +16111,73,15,48,0.0 +16111,55,24,30,0.0 +16111,14,23.25,43,0.0 +16111,62,49.3,14,0.0 +16111,50,16.25,5,0.0 +16111,48,12.75,46,0.0 +16111,70,15,6,0.0 +16111,21,10,41,0.0 +16111,77,13,48,0.0 +16111,24,4.5,5,0.0 +16111,76,18,18,0.0 +16111,29,123.79,9,0.0 +16111,71,21.5,41,0.0 +16111,67,14,38,0.0 +16111,60,34,26,0.0 +16111,69,36,37,0.0 +16111,44,19.45,5,0.0 +16111,28,45.6,24,0.0 +16111,8,40,12,0.0 +16111,41,9.65,9,0.0 +16111,30,25.89,23,0.0 +16111,64,33.25,33,0.0 +16111,40,18.4,50,0.0 +16111,65,21.05,39,0.0 +16111,11,21,33,0.0 +16111,63,43.9,38,0.0 +16111,47,9.5,31,0.0 +16112,34,14,31,0.0 +16112,51,53,36,0.0 +16112,36,19,31,0.0 +16112,1,18,38,0.0 +16112,41,9.65,21,0.0 +16112,39,18,50,0.0 +16112,28,45.6,19,0.0 +16112,50,16.25,30,0.0 +16112,66,17,12,0.0 +16112,64,33.25,24,0.0 +16112,17,39,5,0.0 +16112,43,46,27,0.0 +16112,11,21,36,0.0 +16112,58,13.25,22,0.0 +16112,40,18.4,30,0.0 +16112,59,55,11,0.0 +16112,69,36,22,0.0 +16112,77,13,44,0.0 +16112,9,97,18,0.0 +16112,12,38,19,0.0 +16112,44,19.45,19,0.0 +16112,27,43.9,26,0.0 +16112,53,32.8,37,0.0 +16112,54,7.45,16,0.0 +16112,21,10,44,0.0 +16112,22,21,12,0.0 +16112,30,25.89,38,0.0 +16112,15,15.5,49,0.0 +16112,76,18,12,0.0 +16112,19,9.2,40,0.0 +16112,35,18,27,0.0 +16112,57,19.5,38,0.0 +16112,13,6,30,0.0 +16112,31,12.5,3,0.0 +16112,52,7,32,0.0 +16112,61,28.5,40,0.0 +16112,38,263.5,45,0.0 +16112,2,19,7,0.0 +16112,71,21.5,33,0.0 +16112,25,14,18,0.0 +16112,42,14,9,0.0 +16112,6,25,46,0.0 +16112,56,38,43,0.0 +16112,24,4.5,3,0.0 +16112,45,9.5,4,0.0 +16112,70,15,37,0.0 +16112,48,12.75,1,0.0 +16112,68,12.5,35,0.0 +16112,67,14,41,0.0 +16112,32,32,16,0.0 +16112,55,24,29,0.0 +16112,16,17.45,45,0.0 +16112,26,31.23,13,0.0 +16112,72,34.8,25,0.0 +16112,47,9.5,47,0.0 +16112,74,10,42,0.0 +16112,62,49.3,31,0.0 +16112,73,15,6,0.0 +16112,14,23.25,46,0.0 +16112,65,21.05,33,0.0 +16112,18,62.5,30,0.0 +16112,23,9,40,0.0 +16112,33,2.5,20,0.0 +16112,10,31,46,0.0 +16112,29,123.79,33,0.0 +16113,7,30,9,0.0 +16113,38,263.5,22,0.0 +16113,42,14,14,0.0 +16113,67,14,43,0.0 +16113,39,18,36,0.0 +16113,19,9.2,14,0.0 +16113,51,53,36,0.0 +16113,2,19,46,0.0 +16113,20,81,6,0.0 +16113,23,9,39,0.0 +16113,48,12.75,40,0.0 +16113,16,17.45,45,0.0 +16113,61,28.5,19,0.0 +16113,33,2.5,45,0.0 +16113,31,12.5,41,0.0 +16113,54,7.45,1,0.0 +16113,21,10,41,0.0 +16113,77,13,28,0.0 +16113,34,14,49,0.0 +16113,71,21.5,47,0.0 +16113,30,25.89,36,0.0 +16113,5,21.35,17,0.0 +16113,25,14,34,0.0 +16113,15,15.5,17,0.0 +16113,47,9.5,35,0.0 +16113,75,7.75,28,0.0 +16113,6,25,16,0.0 +16113,28,45.6,35,0.0 +16113,53,32.8,33,0.0 +16113,43,46,46,0.0 +16113,44,19.45,48,0.0 +16113,45,9.5,43,0.0 +16113,69,36,23,0.0 +16113,72,34.8,47,0.0 +16113,35,18,42,0.0 +16113,66,17,16,0.0 +16113,63,43.9,7,0.0 +16113,68,12.5,16,0.0 +16113,32,32,27,0.0 +16113,9,97,6,0.0 +16113,11,21,11,0.0 +16113,12,38,22,0.0 +16113,40,18.4,8,0.0 +16113,62,49.3,31,0.0 +16113,37,26,14,0.0 +16113,8,40,33,0.0 +16113,4,22,45,0.0 +16113,24,4.5,35,0.0 +16113,22,21,50,0.0 +16113,70,15,17,0.0 +16113,56,38,48,0.0 +16113,13,6,45,0.0 +16113,49,20,40,0.0 +16113,58,13.25,40,0.0 +16113,29,123.79,7,0.0 +16113,74,10,8,0.0 +16113,55,24,33,0.0 +16113,27,43.9,26,0.0 +16113,1,18,17,0.0 +16113,64,33.25,47,0.0 +16113,26,31.23,10,0.0 +16113,57,19.5,35,0.0 +16113,65,21.05,46,0.0 +16113,41,9.65,12,0.0 +16114,22,21,48,0.0 +16114,31,12.5,22,0.0 +16114,35,18,21,0.0 +16114,5,21.35,50,0.0 +16114,41,9.65,2,0.0 +16114,29,123.79,50,0.0 +16114,51,53,12,0.0 +16114,21,10,17,0.0 +16114,72,34.8,42,0.0 +16114,75,7.75,24,0.0 +16114,70,15,12,0.0 +16114,27,43.9,47,0.0 +16114,55,24,12,0.0 +16114,24,4.5,41,0.0 +16114,44,19.45,5,0.0 +16114,62,49.3,46,0.0 +16114,2,19,23,0.0 +16114,16,17.45,10,0.0 +16114,38,263.5,17,0.0 +16114,13,6,12,0.0 +16114,71,21.5,49,0.0 +16114,25,14,37,0.0 +16114,11,21,9,0.0 +16114,40,18.4,7,0.0 +16114,58,13.25,9,0.0 +16114,56,38,39,0.0 +16114,18,62.5,48,0.0 +16114,63,43.9,39,0.0 +16114,47,9.5,12,0.0 +16114,32,32,22,0.0 +16114,20,81,12,0.0 +16114,74,10,21,0.0 +16114,43,46,47,0.0 +16114,14,23.25,2,0.0 +16114,19,9.2,31,0.0 +16114,26,31.23,18,0.0 +16114,8,40,38,0.0 +16114,61,28.5,48,0.0 +16114,57,19.5,42,0.0 +16114,49,20,46,0.0 +16114,53,32.8,1,0.0 +16114,59,55,9,0.0 +16114,48,12.75,48,0.0 +16114,77,13,13,0.0 +16114,6,25,16,0.0 +16114,76,18,6,0.0 +16114,4,22,22,0.0 +16114,33,2.5,26,0.0 +16114,54,7.45,16,0.0 +16114,39,18,22,0.0 +16114,45,9.5,26,0.0 +16114,67,14,10,0.0 +16114,12,38,38,0.0 +16114,23,9,28,0.0 +16114,64,33.25,25,0.0 +16114,73,15,3,0.0 +16114,50,16.25,11,0.0 +16114,65,21.05,37,0.0 +16114,66,17,30,0.0 +16114,34,14,7,0.0 +16114,60,34,8,0.0 +16115,16,17.45,26,0.0 +16115,50,16.25,30,0.0 +16115,10,31,36,0.0 +16115,39,18,43,0.0 +16115,2,19,49,0.0 +16115,62,49.3,50,0.0 +16115,74,10,1,0.0 +16115,49,20,5,0.0 +16115,4,22,30,0.0 +16115,36,19,4,0.0 +16115,32,32,31,0.0 +16115,59,55,10,0.0 +16115,55,24,2,0.0 +16115,9,97,5,0.0 +16115,30,25.89,16,0.0 +16115,21,10,8,0.0 +16115,47,9.5,24,0.0 +16115,63,43.9,23,0.0 +16115,8,40,9,0.0 +16115,26,31.23,21,0.0 +16115,35,18,15,0.0 +16115,29,123.79,36,0.0 +16115,57,19.5,49,0.0 +16115,15,15.5,37,0.0 +16115,12,38,24,0.0 +16115,22,21,32,0.0 +16115,73,15,30,0.0 +16115,11,21,17,0.0 +16115,18,62.5,29,0.0 +16115,24,4.5,21,0.0 +16115,28,45.6,36,0.0 +16115,33,2.5,28,0.0 +16115,44,19.45,12,0.0 +16115,3,10,1,0.0 +16115,60,34,11,0.0 +16115,75,7.75,43,0.0 +16115,19,9.2,21,0.0 +16115,31,12.5,4,0.0 +16115,76,18,37,0.0 +16115,43,46,48,0.0 +16115,66,17,35,0.0 +16115,1,18,13,0.0 +16115,38,263.5,30,0.0 +16115,14,23.25,9,0.0 +16115,56,38,35,0.0 +16115,5,21.35,3,0.0 +16115,17,39,12,0.0 +16115,54,7.45,36,0.0 +16115,27,43.9,26,0.0 +16115,68,12.5,13,0.0 +16115,40,18.4,4,0.0 +16115,53,32.8,9,0.0 +16115,6,25,10,0.0 +16115,65,21.05,37,0.0 +16115,7,30,4,0.0 +16115,37,26,9,0.0 +16115,58,13.25,10,0.0 +16115,67,14,31,0.0 +16115,34,14,6,0.0 +16115,77,13,42,0.0 +16115,46,12,1,0.0 +16115,23,9,3,0.0 +16115,42,14,2,0.0 +16115,48,12.75,4,0.0 +16115,45,9.5,28,0.0 +16116,19,9.2,30,0.0 +16116,56,38,38,0.0 +16116,11,21,20,0.0 +16116,30,25.89,12,0.0 +16116,51,53,4,0.0 +16116,31,12.5,3,0.0 +16116,22,21,23,0.0 +16116,75,7.75,9,0.0 +16116,17,39,38,0.0 +16116,53,32.8,23,0.0 +16116,64,33.25,5,0.0 +16116,58,13.25,3,0.0 +16116,72,34.8,4,0.0 +16116,68,12.5,48,0.0 +16116,52,7,17,0.0 +16116,32,32,29,0.0 +16116,63,43.9,4,0.0 +16116,33,2.5,47,0.0 +16116,54,7.45,49,0.0 +16116,24,4.5,22,0.0 +16116,44,19.45,18,0.0 +16116,66,17,4,0.0 +16116,7,30,13,0.0 +16116,47,9.5,33,0.0 +16116,3,10,40,0.0 +16116,1,18,3,0.0 +16116,5,21.35,46,0.0 +16116,57,19.5,2,0.0 +16116,60,34,47,0.0 +16116,42,14,21,0.0 +16116,10,31,44,0.0 +16116,73,15,49,0.0 +16116,49,20,25,0.0 +16116,59,55,23,0.0 +16116,29,123.79,16,0.0 +16116,6,25,36,0.0 +16116,25,14,5,0.0 +16116,40,18.4,48,0.0 +16116,77,13,38,0.0 +16116,71,21.5,12,0.0 +16116,76,18,50,0.0 +16116,4,22,12,0.0 +16116,48,12.75,19,0.0 +16116,27,43.9,26,0.0 +16116,9,97,10,0.0 +16116,34,14,36,0.0 +16116,74,10,33,0.0 +16116,46,12,7,0.0 +16116,14,23.25,7,0.0 +16116,62,49.3,12,0.0 +16116,37,26,27,0.0 +16116,15,15.5,26,0.0 +16116,45,9.5,24,0.0 +16116,23,9,26,0.0 +16116,12,38,40,0.0 +16116,43,46,26,0.0 +16116,35,18,48,0.0 +16116,18,62.5,41,0.0 +16116,70,15,46,0.0 +16116,50,16.25,47,0.0 +16116,41,9.65,22,0.0 +16116,28,45.6,18,0.0 +16117,55,24,10,0.0 +16117,76,18,32,0.0 +16117,67,14,21,0.0 +16117,47,9.5,28,0.0 +16117,58,13.25,19,0.0 +16117,43,46,36,0.0 +16117,42,14,31,0.0 +16117,70,15,20,0.0 +16117,12,38,7,0.0 +16117,56,38,12,0.0 +16117,59,55,26,0.0 +16117,49,20,20,0.0 +16117,35,18,2,0.0 +16117,11,21,31,0.0 +16117,71,21.5,17,0.0 +16117,52,7,28,0.0 +16117,13,6,8,0.0 +16117,72,34.8,9,0.0 +16117,30,25.89,12,0.0 +16117,27,43.9,40,0.0 +16117,7,30,8,0.0 +16117,75,7.75,9,0.0 +16117,6,25,4,0.0 +16117,54,7.45,8,0.0 +16117,3,10,43,0.0 +16117,41,9.65,41,0.0 +16117,60,34,35,0.0 +16117,74,10,43,0.0 +16117,21,10,8,0.0 +16117,39,18,41,0.0 +16117,48,12.75,22,0.0 +16117,17,39,41,0.0 +16117,50,16.25,45,0.0 +16117,9,97,13,0.0 +16117,28,45.6,8,0.0 +16117,25,14,3,0.0 +16117,61,28.5,7,0.0 +16117,62,49.3,50,0.0 +16117,22,21,30,0.0 +16117,44,19.45,39,0.0 +16117,53,32.8,20,0.0 +16117,63,43.9,49,0.0 +16117,1,18,1,0.0 +16117,8,40,36,0.0 +16117,37,26,29,0.0 +16117,77,13,14,0.0 +16118,36,19,27,0.0 +16118,32,32,13,0.0 +16118,4,22,46,0.0 +16118,38,263.5,38,0.0 +16118,5,21.35,21,0.0 +16118,6,25,1,0.0 +16118,42,14,48,0.0 +16118,33,2.5,12,0.0 +16118,26,31.23,50,0.0 +16118,72,34.8,35,0.0 +16118,10,31,39,0.0 +16118,76,18,38,0.0 +16118,61,28.5,19,0.0 +16118,23,9,46,0.0 +16118,22,21,21,0.0 +16119,21,10,32,0.0 +16119,22,21,44,0.0 +16119,68,12.5,14,0.0 +16119,3,10,3,0.0 +16119,1,18,8,0.0 +16119,67,14,8,0.0 +16119,43,46,26,0.0 +16119,27,43.9,23,0.0 +16119,63,43.9,13,0.0 +16119,49,20,43,0.0 +16119,66,17,9,0.0 +16119,18,62.5,42,0.0 +16119,51,53,38,0.0 +16119,20,81,20,0.0 +16119,48,12.75,37,0.0 +16119,45,9.5,20,0.0 +16119,2,19,14,0.0 +16119,12,38,19,0.0 +16119,16,17.45,40,0.0 +16119,39,18,43,0.0 +16119,41,9.65,15,0.0 +16119,17,39,16,0.0 +16119,47,9.5,31,0.0 +16119,61,28.5,7,0.0 +16119,52,7,29,0.0 +16119,73,15,44,0.0 +16119,60,34,13,0.0 +16119,34,14,40,0.0 +16120,45,9.5,26,0.0 +16120,19,9.2,40,0.0 +16120,68,12.5,20,0.0 +16120,57,19.5,23,0.0 +16120,20,81,13,0.0 +16120,30,25.89,35,0.0 +16120,54,7.45,39,0.0 +16120,22,21,48,0.0 +16120,12,38,47,0.0 +16120,28,45.6,44,0.0 +16120,32,32,37,0.0 +16120,65,21.05,29,0.0 +16120,43,46,16,0.0 +16120,11,21,9,0.0 +16120,37,26,44,0.0 +16120,17,39,13,0.0 +16120,69,36,7,0.0 +16120,26,31.23,39,0.0 +16120,55,24,33,0.0 +16120,29,123.79,9,0.0 +16120,77,13,24,0.0 +16120,72,34.8,17,0.0 +16120,44,19.45,3,0.0 +16120,33,2.5,33,0.0 +16121,77,13,48,0.0 +16121,70,15,10,0.0 +16121,33,2.5,45,0.0 +16121,39,18,9,0.0 +16121,20,81,44,0.0 +16121,14,23.25,37,0.0 +16121,59,55,23,0.0 +16121,54,7.45,35,0.0 +16121,44,19.45,38,0.0 +16121,58,13.25,28,0.0 +16121,1,18,33,0.0 +16121,9,97,38,0.0 +16121,21,10,41,0.0 +16121,27,43.9,42,0.0 +16121,35,18,42,0.0 +16121,23,9,48,0.0 +16121,47,9.5,5,0.0 +16121,16,17.45,4,0.0 +16121,56,38,38,0.0 +16121,42,14,5,0.0 +16121,17,39,14,0.0 +16121,37,26,12,0.0 +16121,43,46,23,0.0 +16121,30,25.89,19,0.0 +16121,38,263.5,41,0.0 +16121,64,33.25,16,0.0 +16121,46,12,10,0.0 +16121,75,7.75,39,0.0 +16121,49,20,16,0.0 +16121,48,12.75,37,0.0 +16121,40,18.4,25,0.0 +16121,72,34.8,1,0.0 +16121,34,14,12,0.0 +16121,18,62.5,41,0.0 +16121,25,14,47,0.0 +16121,71,21.5,1,0.0 +16121,41,9.65,46,0.0 +16121,29,123.79,38,0.0 +16121,22,21,6,0.0 +16121,2,19,27,0.0 +16121,76,18,24,0.0 +16121,10,31,13,0.0 +16121,63,43.9,15,0.0 +16121,53,32.8,41,0.0 +16121,50,16.25,44,0.0 +16121,3,10,19,0.0 +16121,68,12.5,47,0.0 +16121,7,30,48,0.0 +16121,6,25,16,0.0 +16121,73,15,18,0.0 +16121,4,22,38,0.0 +16121,62,49.3,6,0.0 +16121,15,15.5,5,0.0 +16121,55,24,13,0.0 +16121,52,7,1,0.0 +16121,31,12.5,41,0.0 +16121,45,9.5,2,0.0 +16121,61,28.5,21,0.0 +16121,19,9.2,5,0.0 +16121,60,34,28,0.0 +16121,69,36,42,0.0 +16121,51,53,45,0.0 +16121,36,19,24,0.0 +16121,66,17,35,0.0 +16121,65,21.05,10,0.0 +16121,5,21.35,23,0.0 +16122,14,23.25,48,0.0 +16122,2,19,10,0.0 +16122,29,123.79,3,0.0 +16122,58,13.25,48,0.0 +16122,47,9.5,49,0.0 +16122,76,18,50,0.0 +16122,17,39,43,0.0 +16122,16,17.45,7,0.0 +16122,28,45.6,40,0.0 +16122,12,38,4,0.0 +16122,65,21.05,31,0.0 +16122,73,15,26,0.0 +16122,62,49.3,37,0.0 +16122,61,28.5,46,0.0 +16122,57,19.5,38,0.0 +16122,56,38,39,0.0 +16122,13,6,34,0.0 +16122,66,17,20,0.0 +16122,53,32.8,18,0.0 +16122,41,9.65,36,0.0 +16122,54,7.45,36,0.0 +16122,37,26,29,0.0 +16122,25,14,22,0.0 +16122,1,18,26,0.0 +16122,8,40,42,0.0 +16122,26,31.23,8,0.0 +16122,21,10,16,0.0 +16122,51,53,46,0.0 +16122,9,97,34,0.0 +16122,48,12.75,5,0.0 +16122,22,21,47,0.0 +16122,7,30,22,0.0 +16122,60,34,16,0.0 +16122,44,19.45,17,0.0 +16122,19,9.2,33,0.0 +16122,45,9.5,18,0.0 +16122,24,4.5,31,0.0 +16122,38,263.5,28,0.0 +16122,31,12.5,28,0.0 +16122,71,21.5,6,0.0 +16122,64,33.25,23,0.0 +16122,6,25,39,0.0 +16122,70,15,22,0.0 +16122,72,34.8,13,0.0 +16122,40,18.4,29,0.0 +16122,27,43.9,33,0.0 +16122,36,19,35,0.0 +16122,50,16.25,44,0.0 +16122,59,55,21,0.0 +16122,10,31,2,0.0 +16122,35,18,49,0.0 +16122,3,10,6,0.0 +16122,15,15.5,45,0.0 +16122,33,2.5,42,0.0 +16122,34,14,6,0.0 +16122,68,12.5,31,0.0 +16122,46,12,12,0.0 +16122,49,20,43,0.0 +16122,55,24,16,0.0 +16122,75,7.75,25,0.0 +16122,42,14,27,0.0 +16122,20,81,5,0.0 +16122,23,9,50,0.0 +16122,18,62.5,7,0.0 +16122,77,13,17,0.0 +16122,43,46,36,0.0 +16122,69,36,41,0.0 +16123,69,36,20,0.0 +16123,6,25,39,0.0 +16123,7,30,34,0.0 +16123,29,123.79,1,0.0 +16123,17,39,48,0.0 +16123,2,19,35,0.0 +16123,41,9.65,13,0.0 +16123,58,13.25,5,0.0 +16123,55,24,37,0.0 +16123,21,10,38,0.0 +16123,62,49.3,18,0.0 +16123,13,6,2,0.0 +16123,52,7,46,0.0 +16123,3,10,26,0.0 +16123,77,13,2,0.0 +16123,27,43.9,17,0.0 +16123,14,23.25,50,0.0 +16123,57,19.5,9,0.0 +16123,31,12.5,25,0.0 +16123,33,2.5,7,0.0 +16123,4,22,18,0.0 +16123,44,19.45,12,0.0 +16123,65,21.05,9,0.0 +16123,1,18,17,0.0 +16123,10,31,24,0.0 +16123,75,7.75,45,0.0 +16123,34,14,20,0.0 +16123,50,16.25,50,0.0 +16123,39,18,17,0.0 +16123,30,25.89,39,0.0 +16123,9,97,32,0.0 +16123,18,62.5,22,0.0 +16123,60,34,29,0.0 +16123,56,38,34,0.0 +16123,20,81,37,0.0 +16123,26,31.23,49,0.0 +16123,11,21,37,0.0 +16123,51,53,47,0.0 +16123,54,7.45,16,0.0 +16123,46,12,46,0.0 +16123,47,9.5,43,0.0 +16123,25,14,22,0.0 +16123,72,34.8,7,0.0 +16123,63,43.9,9,0.0 +16123,43,46,35,0.0 +16123,12,38,1,0.0 +16123,66,17,44,0.0 +16123,38,263.5,10,0.0 +16123,48,12.75,44,0.0 +16123,73,15,48,0.0 +16123,8,40,11,0.0 +16123,42,14,34,0.0 +16123,37,26,25,0.0 +16123,71,21.5,30,0.0 +16123,32,32,29,0.0 +16123,23,9,25,0.0 +16123,68,12.5,16,0.0 +16123,19,9.2,42,0.0 +16123,22,21,11,0.0 +16123,28,45.6,29,0.0 +16123,40,18.4,13,0.0 +16123,64,33.25,45,0.0 +16123,61,28.5,47,0.0 +16123,36,19,30,0.0 +16123,16,17.45,1,0.0 +16123,15,15.5,9,0.0 +16123,70,15,20,0.0 +16124,3,10,46,0.0 +16124,48,12.75,13,0.0 +16124,9,97,7,0.0 +16124,13,6,7,0.0 +16124,24,4.5,10,0.0 +16124,10,31,50,0.0 +16124,21,10,31,0.0 +16124,56,38,37,0.0 +16124,61,28.5,39,0.0 +16124,23,9,3,0.0 +16124,2,19,5,0.0 +16124,26,31.23,11,0.0 +16124,32,32,26,0.0 +16124,18,62.5,1,0.0 +16124,1,18,3,0.0 +16124,73,15,46,0.0 +16124,40,18.4,5,0.0 +16124,35,18,40,0.0 +16124,29,123.79,22,0.0 +16124,25,14,18,0.0 +16124,71,21.5,3,0.0 +16124,5,21.35,29,0.0 +16124,74,10,46,0.0 +16124,19,9.2,31,0.0 +16124,52,7,46,0.0 +16124,62,49.3,26,0.0 +16124,65,21.05,12,0.0 +16124,16,17.45,16,0.0 +16124,75,7.75,38,0.0 +16124,77,13,33,0.0 +16124,57,19.5,24,0.0 +16124,76,18,14,0.0 +16124,36,19,42,0.0 +16124,39,18,10,0.0 +16124,49,20,48,0.0 +16124,67,14,12,0.0 +16124,27,43.9,17,0.0 +16124,14,23.25,29,0.0 +16124,11,21,50,0.0 +16124,6,25,10,0.0 +16124,34,14,4,0.0 +16124,47,9.5,36,0.0 +16124,44,19.45,21,0.0 +16124,31,12.5,28,0.0 +16124,28,45.6,6,0.0 +16124,8,40,46,0.0 +16124,17,39,11,0.0 +16124,15,15.5,11,0.0 +16124,51,53,6,0.0 +16124,22,21,38,0.0 +16124,12,38,17,0.0 +16124,70,15,29,0.0 +16124,60,34,38,0.0 +16124,72,34.8,7,0.0 +16124,59,55,28,0.0 +16124,37,26,31,0.0 +16124,69,36,26,0.0 +16124,38,263.5,49,0.0 +16124,63,43.9,32,0.0 +16124,54,7.45,41,0.0 +16124,55,24,9,0.0 +16124,7,30,3,0.0 +16124,53,32.8,41,0.0 +16124,50,16.25,10,0.0 +16124,42,14,35,0.0 +16124,58,13.25,17,0.0 +16124,33,2.5,43,0.0 +16124,30,25.89,17,0.0 +16124,46,12,27,0.0 +16124,66,17,27,0.0 +16124,43,46,34,0.0 +16125,30,25.89,34,0.0 +16125,74,10,11,0.0 +16125,40,18.4,22,0.0 +16125,62,49.3,17,0.0 +16125,22,21,23,0.0 +16125,48,12.75,46,0.0 +16125,21,10,49,0.0 +16125,32,32,24,0.0 +16125,70,15,39,0.0 +16125,11,21,8,0.0 +16125,69,36,46,0.0 +16125,23,9,27,0.0 +16125,49,20,42,0.0 +16125,28,45.6,30,0.0 +16125,35,18,6,0.0 +16125,68,12.5,43,0.0 +16125,6,25,27,0.0 +16125,18,62.5,49,0.0 +16125,67,14,45,0.0 +16125,13,6,30,0.0 +16125,15,15.5,5,0.0 +16125,26,31.23,9,0.0 +16125,17,39,45,0.0 +16125,10,31,17,0.0 +16125,5,21.35,45,0.0 +16125,19,9.2,27,0.0 +16125,29,123.79,48,0.0 +16125,45,9.5,6,0.0 +16125,52,7,8,0.0 +16125,12,38,31,0.0 +16125,50,16.25,35,0.0 +16125,2,19,28,0.0 +16125,14,23.25,3,0.0 +16125,55,24,21,0.0 +16125,72,34.8,29,0.0 +16125,9,97,48,0.0 +16125,27,43.9,14,0.0 +16125,53,32.8,34,0.0 +16125,1,18,3,0.0 +16125,3,10,10,0.0 +16125,63,43.9,21,0.0 +16125,20,81,32,0.0 +16125,77,13,49,0.0 +16125,33,2.5,50,0.0 +16125,25,14,6,0.0 +16125,56,38,2,0.0 +16125,44,19.45,5,0.0 +16125,57,19.5,4,0.0 +16125,59,55,48,0.0 +16125,51,53,29,0.0 +16125,16,17.45,10,0.0 +16125,37,26,42,0.0 +16125,60,34,14,0.0 +16125,73,15,2,0.0 +16125,41,9.65,41,0.0 +16125,38,263.5,17,0.0 +16125,61,28.5,44,0.0 +16125,65,21.05,21,0.0 +16125,34,14,22,0.0 +16125,39,18,3,0.0 +16126,68,12.5,21,0.0 +16126,25,14,5,0.0 +16126,67,14,27,0.0 +16126,12,38,38,0.0 +16126,48,12.75,6,0.0 +16126,29,123.79,3,0.0 +16126,18,62.5,23,0.0 +16126,49,20,49,0.0 +16126,69,36,23,0.0 +16126,59,55,16,0.0 +16126,10,31,23,0.0 +16126,50,16.25,14,0.0 +16126,14,23.25,37,0.0 +16126,56,38,40,0.0 +16126,77,13,10,0.0 +16126,4,22,18,0.0 +16126,60,34,32,0.0 +16126,35,18,33,0.0 +16126,32,32,36,0.0 +16126,45,9.5,43,0.0 +16126,28,45.6,25,0.0 +16126,11,21,34,0.0 +16126,54,7.45,12,0.0 +16126,55,24,20,0.0 +16126,33,2.5,26,0.0 +16126,30,25.89,38,0.0 +16126,46,12,11,0.0 +16126,19,9.2,35,0.0 +16126,65,21.05,21,0.0 +16126,43,46,16,0.0 +16126,20,81,8,0.0 +16126,76,18,25,0.0 +16126,47,9.5,3,0.0 +16126,2,19,42,0.0 +16126,75,7.75,28,0.0 +16126,44,19.45,49,0.0 +16126,63,43.9,10,0.0 +16126,42,14,43,0.0 +16126,27,43.9,46,0.0 +16126,57,19.5,3,0.0 +16126,23,9,21,0.0 +16126,61,28.5,42,0.0 +16126,22,21,45,0.0 +16126,37,26,1,0.0 +16126,13,6,36,0.0 +16126,1,18,43,0.0 +16126,5,21.35,33,0.0 +16126,39,18,43,0.0 +16126,8,40,15,0.0 +16126,38,263.5,2,0.0 +16126,62,49.3,44,0.0 +16126,7,30,47,0.0 +16126,51,53,5,0.0 +16126,6,25,36,0.0 +16126,36,19,48,0.0 +16127,75,7.75,17,0.0 +16127,48,12.75,37,0.0 +16127,24,4.5,46,0.0 +16127,37,26,39,0.0 +16127,67,14,38,0.0 +16127,72,34.8,31,0.0 +16127,26,31.23,9,0.0 +16127,2,19,1,0.0 +16127,56,38,7,0.0 +16127,73,15,2,0.0 +16127,62,49.3,45,0.0 +16127,31,12.5,5,0.0 +16127,17,39,31,0.0 +16127,3,10,3,0.0 +16127,4,22,16,0.0 +16127,40,18.4,18,0.0 +16127,41,9.65,32,0.0 +16127,16,17.45,38,0.0 +16127,15,15.5,12,0.0 +16127,12,38,11,0.0 +16127,23,9,6,0.0 +16127,22,21,2,0.0 +16127,18,62.5,49,0.0 +16127,49,20,18,0.0 +16127,45,9.5,6,0.0 +16127,34,14,32,0.0 +16127,7,30,5,0.0 +16127,38,263.5,1,0.0 +16127,71,21.5,27,0.0 +16127,39,18,15,0.0 +16127,70,15,14,0.0 +16128,50,16.25,35,0.0 +16128,34,14,21,0.0 +16128,2,19,21,0.0 +16128,20,81,49,0.0 +16128,37,26,1,0.0 +16128,11,21,4,0.0 +16128,52,7,50,0.0 +16128,9,97,4,0.0 +16128,29,123.79,34,0.0 +16128,10,31,29,0.0 +16128,36,19,10,0.0 +16128,67,14,48,0.0 +16128,66,17,31,0.0 +16128,57,19.5,41,0.0 +16128,32,32,32,0.0 +16128,65,21.05,50,0.0 +16128,1,18,31,0.0 +16128,30,25.89,35,0.0 +16128,28,45.6,39,0.0 +16128,62,49.3,32,0.0 +16128,60,34,25,0.0 +16128,23,9,50,0.0 +16128,51,53,9,0.0 +16128,70,15,41,0.0 +16128,72,34.8,3,0.0 +16128,56,38,25,0.0 +16129,14,23.25,33,0.0 +16129,35,18,9,0.0 +16129,52,7,16,0.0 +16129,63,43.9,30,0.0 +16129,22,21,28,0.0 +16129,53,32.8,22,0.0 +16129,40,18.4,44,0.0 +16129,77,13,15,0.0 +16129,76,18,24,0.0 +16129,70,15,10,0.0 +16129,10,31,25,0.0 +16129,1,18,27,0.0 +16129,2,19,45,0.0 +16129,75,7.75,14,0.0 +16129,58,13.25,40,0.0 +16129,23,9,24,0.0 +16129,57,19.5,33,0.0 +16129,69,36,35,0.0 +16129,48,12.75,13,0.0 +16129,25,14,11,0.0 +16129,27,43.9,25,0.0 +16129,39,18,22,0.0 +16129,73,15,37,0.0 +16129,41,9.65,10,0.0 +16129,47,9.5,34,0.0 +16129,43,46,43,0.0 +16129,19,9.2,24,0.0 +16129,33,2.5,34,0.0 +16129,51,53,22,0.0 +16129,55,24,18,0.0 +16129,28,45.6,4,0.0 +16129,26,31.23,5,0.0 +16129,8,40,15,0.0 +16129,30,25.89,14,0.0 +16129,37,26,8,0.0 +16129,5,21.35,39,0.0 +16129,29,123.79,4,0.0 +16129,66,17,50,0.0 +16129,60,34,22,0.0 +16129,74,10,7,0.0 +16129,12,38,2,0.0 +16129,44,19.45,38,0.0 +16129,61,28.5,37,0.0 +16129,46,12,15,0.0 +16129,65,21.05,10,0.0 +16129,38,263.5,33,0.0 +16129,21,10,31,0.0 +16129,49,20,28,0.0 +16129,59,55,11,0.0 +16129,32,32,30,0.0 +16129,31,12.5,26,0.0 +16129,72,34.8,6,0.0 +16129,13,6,26,0.0 +16129,20,81,30,0.0 +16129,17,39,3,0.0 +16129,15,15.5,19,0.0 +16129,4,22,1,0.0 +16130,60,34,18,0.0 +16130,56,38,7,0.0 +16130,66,17,37,0.0 +16130,31,12.5,36,0.0 +16130,5,21.35,25,0.0 +16130,16,17.45,43,0.0 +16130,49,20,40,0.0 +16130,42,14,49,0.0 +16130,67,14,14,0.0 +16130,41,9.65,10,0.0 +16130,14,23.25,37,0.0 +16130,57,19.5,48,0.0 +16130,40,18.4,38,0.0 +16130,47,9.5,23,0.0 +16130,52,7,44,0.0 +16130,54,7.45,19,0.0 +16130,4,22,1,0.0 +16130,36,19,32,0.0 +16130,13,6,4,0.0 +16130,29,123.79,43,0.0 +16130,53,32.8,16,0.0 +16130,8,40,26,0.0 +16130,33,2.5,41,0.0 +16131,38,263.5,7,0.0 +16131,33,2.5,39,0.0 +16131,16,17.45,47,0.0 +16131,37,26,30,0.0 +16131,71,21.5,26,0.0 +16131,60,34,32,0.0 +16131,29,123.79,21,0.0 +16131,73,15,20,0.0 +16131,55,24,20,0.0 +16131,23,9,8,0.0 +16131,44,19.45,5,0.0 +16131,30,25.89,33,0.0 +16131,19,9.2,6,0.0 +16131,66,17,14,0.0 +16131,41,9.65,19,0.0 +16131,36,19,15,0.0 +16131,18,62.5,29,0.0 +16131,11,21,43,0.0 +16131,3,10,29,0.0 +16131,45,9.5,31,0.0 +16131,59,55,20,0.0 +16131,57,19.5,19,0.0 +16131,70,15,21,0.0 +16131,13,6,10,0.0 +16131,12,38,18,0.0 +16131,63,43.9,50,0.0 +16131,31,12.5,24,0.0 +16131,20,81,17,0.0 +16131,46,12,31,0.0 +16131,61,28.5,10,0.0 +16131,24,4.5,47,0.0 +16131,65,21.05,30,0.0 +16131,7,30,25,0.0 +16132,32,32,40,0.0 +16132,9,97,11,0.0 +16132,8,40,38,0.0 +16132,2,19,21,0.0 +16132,53,32.8,39,0.0 +16132,20,81,44,0.0 +16132,29,123.79,22,0.0 +16132,64,33.25,10,0.0 +16132,24,4.5,44,0.0 +16132,70,15,1,0.0 +16132,39,18,50,0.0 +16132,23,9,48,0.0 +16132,54,7.45,40,0.0 +16132,45,9.5,45,0.0 +16132,63,43.9,8,0.0 +16132,16,17.45,13,0.0 +16132,33,2.5,41,0.0 +16132,43,46,33,0.0 +16133,4,22,25,0.0 +16133,34,14,30,0.0 +16133,55,24,6,0.0 +16133,75,7.75,25,0.0 +16133,48,12.75,15,0.0 +16133,19,9.2,19,0.0 +16133,24,4.5,13,0.0 +16133,45,9.5,33,0.0 +16133,77,13,33,0.0 +16133,41,9.65,8,0.0 +16133,63,43.9,48,0.0 +16133,57,19.5,25,0.0 +16133,52,7,16,0.0 +16133,69,36,27,0.0 +16133,44,19.45,21,0.0 +16133,35,18,33,0.0 +16133,50,16.25,23,0.0 +16133,65,21.05,37,0.0 +16133,27,43.9,31,0.0 +16133,8,40,25,0.0 +16133,49,20,8,0.0 +16133,23,9,21,0.0 +16133,66,17,47,0.0 +16133,73,15,25,0.0 +16133,30,25.89,25,0.0 +16133,21,10,21,0.0 +16133,9,97,26,0.0 +16133,13,6,26,0.0 +16133,71,21.5,48,0.0 +16133,62,49.3,23,0.0 +16133,76,18,44,0.0 +16133,2,19,13,0.0 +16133,12,38,38,0.0 +16133,74,10,40,0.0 +16133,58,13.25,37,0.0 +16133,36,19,12,0.0 +16133,7,30,18,0.0 +16133,18,62.5,5,0.0 +16133,6,25,32,0.0 +16133,68,12.5,22,0.0 +16133,53,32.8,40,0.0 +16133,38,263.5,35,0.0 +16134,62,49.3,45,0.0 +16134,15,15.5,13,0.0 +16134,30,25.89,29,0.0 +16134,65,21.05,48,0.0 +16134,74,10,44,0.0 +16134,36,19,38,0.0 +16134,39,18,23,0.0 +16134,35,18,45,0.0 +16134,4,22,36,0.0 +16134,6,25,33,0.0 +16135,21,10,28,0.0 +16135,58,13.25,46,0.0 +16135,7,30,21,0.0 +16135,44,19.45,15,0.0 +16135,61,28.5,17,0.0 +16135,9,97,1,0.0 +16135,72,34.8,27,0.0 +16135,75,7.75,32,0.0 +16135,28,45.6,46,0.0 +16135,77,13,41,0.0 +16135,56,38,27,0.0 +16135,51,53,19,0.0 +16135,62,49.3,25,0.0 +16135,12,38,5,0.0 +16135,30,25.89,14,0.0 +16135,36,19,21,0.0 +16135,42,14,44,0.0 +16135,67,14,3,0.0 +16135,19,9.2,2,0.0 +16135,63,43.9,22,0.0 +16135,70,15,35,0.0 +16135,50,16.25,47,0.0 +16135,55,24,17,0.0 +16135,18,62.5,44,0.0 +16135,73,15,36,0.0 +16135,6,25,31,0.0 +16135,54,7.45,27,0.0 +16135,59,55,15,0.0 +16135,11,21,42,0.0 +16135,4,22,6,0.0 +16135,47,9.5,50,0.0 +16135,10,31,26,0.0 +16136,47,9.5,23,0.0 +16136,73,15,49,0.0 +16136,64,33.25,36,0.0 +16136,72,34.8,13,0.0 +16136,15,15.5,5,0.0 +16136,16,17.45,2,0.0 +16136,24,4.5,8,0.0 +16136,14,23.25,23,0.0 +16136,3,10,13,0.0 +16136,10,31,16,0.0 +16136,9,97,17,0.0 +16136,59,55,13,0.0 +16136,62,49.3,39,0.0 +16136,53,32.8,26,0.0 +16136,35,18,44,0.0 +16136,7,30,1,0.0 +16136,58,13.25,39,0.0 +16136,48,12.75,13,0.0 +16136,63,43.9,3,0.0 +16137,28,45.6,16,0.0 +16137,68,12.5,46,0.0 +16137,66,17,3,0.0 +16137,15,15.5,11,0.0 +16137,72,34.8,33,0.0 +16137,43,46,6,0.0 +16137,42,14,19,0.0 +16137,34,14,20,0.0 +16137,58,13.25,7,0.0 +16137,62,49.3,15,0.0 +16137,13,6,43,0.0 +16137,71,21.5,12,0.0 +16137,53,32.8,1,0.0 +16137,56,38,44,0.0 +16137,73,15,12,0.0 +16137,5,21.35,47,0.0 +16137,38,263.5,4,0.0 +16137,51,53,40,0.0 +16137,55,24,31,0.0 +16137,59,55,35,0.0 +16137,17,39,24,0.0 +16137,10,31,18,0.0 +16137,67,14,45,0.0 +16137,60,34,32,0.0 +16137,45,9.5,31,0.0 +16137,49,20,3,0.0 +16137,12,38,32,0.0 +16137,36,19,1,0.0 +16137,33,2.5,17,0.0 +16137,26,31.23,14,0.0 +16137,39,18,10,0.0 +16137,14,23.25,11,0.0 +16137,57,19.5,3,0.0 +16137,23,9,37,0.0 +16137,21,10,45,0.0 +16137,40,18.4,7,0.0 +16137,35,18,47,0.0 +16137,1,18,31,0.0 +16137,31,12.5,26,0.0 +16137,2,19,44,0.0 +16137,70,15,22,0.0 +16137,22,21,25,0.0 +16137,6,25,28,0.0 +16137,54,7.45,8,0.0 +16137,64,33.25,28,0.0 +16137,50,16.25,48,0.0 +16137,8,40,19,0.0 +16138,51,53,42,0.0 +16138,38,263.5,29,0.0 +16138,77,13,29,0.0 +16138,47,9.5,2,0.0 +16138,18,62.5,32,0.0 +16138,72,34.8,35,0.0 +16138,7,30,47,0.0 +16138,59,55,34,0.0 +16138,60,34,1,0.0 +16138,8,40,28,0.0 +16138,5,21.35,31,0.0 +16138,30,25.89,8,0.0 +16138,25,14,25,0.0 +16138,41,9.65,3,0.0 +16138,4,22,20,0.0 +16138,17,39,31,0.0 +16138,1,18,32,0.0 +16138,66,17,5,0.0 +16139,69,36,25,0.0 +16139,39,18,27,0.0 +16139,74,10,45,0.0 +16139,3,10,15,0.0 +16139,18,62.5,31,0.0 +16139,7,30,13,0.0 +16139,30,25.89,22,0.0 +16139,52,7,39,0.0 +16139,58,13.25,14,0.0 +16139,37,26,23,0.0 +16139,72,34.8,46,0.0 +16139,34,14,19,0.0 +16139,25,14,1,0.0 +16139,68,12.5,28,0.0 +16139,32,32,24,0.0 +16139,20,81,48,0.0 +16139,60,34,23,0.0 +16139,14,23.25,44,0.0 +16139,41,9.65,37,0.0 +16139,15,15.5,50,0.0 +16139,9,97,30,0.0 +16139,2,19,36,0.0 +16139,8,40,30,0.0 +16139,50,16.25,23,0.0 +16139,45,9.5,48,0.0 +16139,76,18,4,0.0 +16139,46,12,32,0.0 +16139,77,13,15,0.0 +16139,13,6,11,0.0 +16139,63,43.9,50,0.0 +16139,57,19.5,46,0.0 +16139,1,18,5,0.0 +16139,6,25,3,0.0 +16139,49,20,28,0.0 +16139,42,14,24,0.0 +16139,66,17,44,0.0 +16139,67,14,35,0.0 +16140,30,25.89,5,0.0 +16140,24,4.5,39,0.0 +16140,16,17.45,10,0.0 +16140,35,18,5,0.0 +16140,38,263.5,21,0.0 +16140,72,34.8,21,0.0 +16140,75,7.75,37,0.0 +16140,10,31,1,0.0 +16140,57,19.5,8,0.0 +16140,48,12.75,5,0.0 +16140,9,97,47,0.0 +16140,44,19.45,28,0.0 +16140,21,10,20,0.0 +16140,8,40,43,0.0 +16140,29,123.79,50,0.0 +16140,70,15,22,0.0 +16140,34,14,39,0.0 +16140,4,22,35,0.0 +16140,19,9.2,4,0.0 +16140,46,12,43,0.0 +16140,59,55,7,0.0 +16140,47,9.5,26,0.0 +16140,15,15.5,22,0.0 +16140,71,21.5,22,0.0 +16140,66,17,3,0.0 +16140,28,45.6,48,0.0 +16140,1,18,30,0.0 +16140,32,32,44,0.0 +16140,63,43.9,1,0.0 +16140,11,21,19,0.0 +16140,45,9.5,19,0.0 +16140,77,13,43,0.0 +16140,51,53,38,0.0 +16140,49,20,23,0.0 +16140,52,7,14,0.0 +16140,3,10,28,0.0 +16140,39,18,19,0.0 +16140,60,34,36,0.0 +16140,12,38,24,0.0 +16140,20,81,11,0.0 +16140,69,36,31,0.0 +16140,42,14,12,0.0 +16140,17,39,7,0.0 +16140,73,15,25,0.0 +16140,43,46,35,0.0 +16140,68,12.5,46,0.0 +16140,62,49.3,44,0.0 +16140,31,12.5,34,0.0 +16140,61,28.5,43,0.0 +16140,27,43.9,33,0.0 +16140,56,38,25,0.0 +16140,64,33.25,46,0.0 +16140,37,26,36,0.0 +16140,5,21.35,37,0.0 +16140,13,6,11,0.0 +16140,74,10,30,0.0 +16140,26,31.23,29,0.0 +16140,58,13.25,40,0.0 +16140,67,14,32,0.0 +16140,36,19,12,0.0 +16140,18,62.5,27,0.0 +16140,6,25,3,0.0 +16140,33,2.5,13,0.0 +16140,2,19,5,0.0 +16140,53,32.8,1,0.0 +16140,25,14,17,0.0 +16140,55,24,18,0.0 +16140,76,18,6,0.0 +16140,23,9,10,0.0 +16140,40,18.4,14,0.0 +16141,56,38,33,0.0 +16141,32,32,37,0.0 +16141,44,19.45,27,0.0 +16141,4,22,26,0.0 +16141,33,2.5,25,0.0 +16141,66,17,18,0.0 +16141,61,28.5,21,0.0 +16141,47,9.5,38,0.0 +16141,62,49.3,4,0.0 +16141,11,21,24,0.0 +16141,48,12.75,28,0.0 +16141,28,45.6,33,0.0 +16141,67,14,48,0.0 +16141,12,38,3,0.0 +16141,27,43.9,21,0.0 +16141,42,14,30,0.0 +16141,71,21.5,17,0.0 +16141,58,13.25,42,0.0 +16141,34,14,50,0.0 +16141,26,31.23,17,0.0 +16141,29,123.79,22,0.0 +16141,22,21,29,0.0 +16141,60,34,22,0.0 +16141,69,36,12,0.0 +16141,72,34.8,24,0.0 +16141,40,18.4,34,0.0 +16141,17,39,27,0.0 +16141,25,14,29,0.0 +16141,52,7,31,0.0 +16141,41,9.65,44,0.0 +16141,70,15,2,0.0 +16141,23,9,36,0.0 +16141,55,24,39,0.0 +16141,46,12,15,0.0 +16141,77,13,16,0.0 +16141,68,12.5,27,0.0 +16141,36,19,40,0.0 +16141,15,15.5,20,0.0 +16141,65,21.05,42,0.0 +16141,13,6,17,0.0 +16141,8,40,43,0.0 +16141,59,55,26,0.0 +16141,3,10,19,0.0 +16141,6,25,26,0.0 +16141,24,4.5,34,0.0 +16141,35,18,47,0.0 +16141,37,26,17,0.0 +16141,21,10,33,0.0 +16141,74,10,30,0.0 +16141,10,31,23,0.0 +16141,38,263.5,44,0.0 +16141,45,9.5,18,0.0 +16141,7,30,11,0.0 +16141,43,46,32,0.0 +16141,63,43.9,45,0.0 +16141,1,18,20,0.0 +16142,67,14,27,0.0 +16142,58,13.25,50,0.0 +16142,49,20,25,0.0 +16142,16,17.45,3,0.0 +16142,1,18,19,0.0 +16142,63,43.9,35,0.0 +16142,19,9.2,2,0.0 +16142,8,40,49,0.0 +16142,10,31,23,0.0 +16142,74,10,35,0.0 +16142,75,7.75,4,0.0 +16142,71,21.5,37,0.0 +16142,13,6,2,0.0 +16142,9,97,43,0.0 +16142,59,55,29,0.0 +16142,7,30,5,0.0 +16142,50,16.25,26,0.0 +16142,70,15,29,0.0 +16142,40,18.4,11,0.0 +16142,61,28.5,37,0.0 +16142,72,34.8,40,0.0 +16142,14,23.25,33,0.0 +16143,45,9.5,19,0.0 +16143,48,12.75,42,0.0 +16143,9,97,25,0.0 +16143,33,2.5,31,0.0 +16143,68,12.5,6,0.0 +16143,73,15,11,0.0 +16143,70,15,11,0.0 +16143,46,12,14,0.0 +16143,49,20,27,0.0 +16143,24,4.5,14,0.0 +16143,51,53,44,0.0 +16143,63,43.9,39,0.0 +16143,60,34,21,0.0 +16143,12,38,40,0.0 +16144,68,12.5,12,0.0 +16144,19,9.2,39,0.0 +16144,76,18,20,0.0 +16144,29,123.79,43,0.0 +16144,73,15,19,0.0 +16144,5,21.35,6,0.0 +16144,40,18.4,34,0.0 +16144,61,28.5,1,0.0 +16144,59,55,10,0.0 +16144,3,10,27,0.0 +16144,22,21,29,0.0 +16144,49,20,38,0.0 +16144,58,13.25,42,0.0 +16144,53,32.8,42,0.0 +16144,43,46,11,0.0 +16144,62,49.3,37,0.0 +16144,21,10,14,0.0 +16144,66,17,9,0.0 +16144,14,23.25,6,0.0 +16144,56,38,27,0.0 +16144,55,24,10,0.0 +16144,37,26,39,0.0 +16144,69,36,38,0.0 +16144,39,18,30,0.0 +16144,20,81,24,0.0 +16144,45,9.5,40,0.0 +16144,26,31.23,10,0.0 +16144,16,17.45,7,0.0 +16144,27,43.9,34,0.0 +16144,25,14,23,0.0 +16144,10,31,36,0.0 +16144,44,19.45,47,0.0 +16144,52,7,31,0.0 +16144,38,263.5,23,0.0 +16144,57,19.5,31,0.0 +16144,12,38,49,0.0 +16144,74,10,44,0.0 +16144,18,62.5,12,0.0 +16144,70,15,20,0.0 +16144,2,19,34,0.0 +16144,24,4.5,12,0.0 +16144,77,13,48,0.0 +16144,34,14,25,0.0 +16144,35,18,31,0.0 +16144,51,53,34,0.0 +16144,7,30,26,0.0 +16144,47,9.5,30,0.0 +16144,65,21.05,9,0.0 +16144,60,34,1,0.0 +16144,11,21,29,0.0 +16144,33,2.5,34,0.0 +16144,75,7.75,22,0.0 +16145,1,18,33,0.0 +16145,48,12.75,40,0.0 +16145,56,38,8,0.0 +16145,44,19.45,40,0.0 +16145,17,39,11,0.0 +16145,77,13,49,0.0 +16145,75,7.75,20,0.0 +16145,12,38,34,0.0 +16145,10,31,16,0.0 +16145,30,25.89,36,0.0 +16145,26,31.23,12,0.0 +16145,64,33.25,13,0.0 +16145,70,15,23,0.0 +16145,28,45.6,35,0.0 +16145,67,14,18,0.0 +16145,4,22,39,0.0 +16145,52,7,46,0.0 +16145,20,81,38,0.0 +16145,66,17,44,0.0 +16145,49,20,27,0.0 +16145,25,14,5,0.0 +16145,40,18.4,16,0.0 +16145,53,32.8,40,0.0 +16145,35,18,31,0.0 +16145,68,12.5,22,0.0 +16145,46,12,30,0.0 +16145,21,10,44,0.0 +16145,62,49.3,38,0.0 +16145,24,4.5,13,0.0 +16145,36,19,8,0.0 +16145,50,16.25,6,0.0 +16145,45,9.5,40,0.0 +16145,65,21.05,8,0.0 +16145,39,18,30,0.0 +16145,41,9.65,50,0.0 +16145,74,10,15,0.0 +16145,19,9.2,26,0.0 +16145,61,28.5,14,0.0 +16145,23,9,1,0.0 +16145,8,40,25,0.0 +16145,22,21,21,0.0 +16145,43,46,37,0.0 +16145,11,21,10,0.0 +16145,34,14,25,0.0 +16145,7,30,6,0.0 +16145,57,19.5,27,0.0 +16145,27,43.9,21,0.0 +16145,71,21.5,9,0.0 +16145,60,34,16,0.0 +16145,13,6,24,0.0 +16145,5,21.35,46,0.0 +16145,58,13.25,27,0.0 +16145,9,97,34,0.0 +16145,59,55,42,0.0 +16145,73,15,14,0.0 +16145,15,15.5,10,0.0 +16145,47,9.5,36,0.0 +16145,51,53,40,0.0 +16145,69,36,34,0.0 +16145,16,17.45,33,0.0 +16145,6,25,38,0.0 +16145,3,10,12,0.0 +16145,72,34.8,24,0.0 +16145,2,19,10,0.0 +16145,55,24,28,0.0 +16145,31,12.5,36,0.0 +16145,32,32,46,0.0 +16145,38,263.5,47,0.0 +16145,54,7.45,21,0.0 +16145,29,123.79,13,0.0 +16145,18,62.5,8,0.0 +16145,63,43.9,39,0.0 +16145,76,18,28,0.0 +16146,69,36,18,0.0 +16146,7,30,13,0.0 +16146,41,9.65,34,0.0 +16146,15,15.5,4,0.0 +16146,50,16.25,19,0.0 +16146,17,39,46,0.0 +16146,74,10,27,0.0 +16146,45,9.5,10,0.0 +16146,59,55,30,0.0 +16146,76,18,11,0.0 +16146,47,9.5,22,0.0 +16146,1,18,47,0.0 +16146,13,6,21,0.0 +16146,60,34,43,0.0 +16146,16,17.45,44,0.0 +16146,49,20,6,0.0 +16146,66,17,41,0.0 +16146,64,33.25,45,0.0 +16146,72,34.8,14,0.0 +16146,61,28.5,8,0.0 +16146,71,21.5,39,0.0 +16146,57,19.5,7,0.0 +16146,21,10,10,0.0 +16146,23,9,35,0.0 +16146,55,24,31,0.0 +16146,42,14,35,0.0 +16146,8,40,33,0.0 +16146,46,12,2,0.0 +16146,3,10,27,0.0 +16146,51,53,48,0.0 +16146,9,97,24,0.0 +16146,2,19,17,0.0 +16146,19,9.2,4,0.0 +16146,48,12.75,5,0.0 +16146,34,14,10,0.0 +16146,63,43.9,43,0.0 +16146,37,26,47,0.0 +16146,77,13,46,0.0 +16146,38,263.5,31,0.0 +16146,39,18,28,0.0 +16146,56,38,38,0.0 +16146,32,32,39,0.0 +16146,31,12.5,22,0.0 +16146,30,25.89,8,0.0 +16146,24,4.5,25,0.0 +16146,14,23.25,32,0.0 +16146,70,15,3,0.0 +16146,10,31,44,0.0 +16146,6,25,50,0.0 +16146,52,7,30,0.0 +16146,26,31.23,15,0.0 +16146,20,81,8,0.0 +16146,40,18.4,20,0.0 +16146,5,21.35,2,0.0 +16146,33,2.5,28,0.0 +16146,11,21,25,0.0 +16146,62,49.3,28,0.0 +16146,54,7.45,43,0.0 +16147,33,2.5,43,0.0 +16147,54,7.45,49,0.0 +16147,72,34.8,50,0.0 +16147,3,10,12,0.0 +16147,64,33.25,41,0.0 +16147,16,17.45,22,0.0 +16147,59,55,38,0.0 +16147,22,21,39,0.0 +16147,60,34,18,0.0 +16147,74,10,39,0.0 +16147,62,49.3,36,0.0 +16147,71,21.5,12,0.0 +16147,23,9,4,0.0 +16147,6,25,3,0.0 +16147,40,18.4,35,0.0 +16147,39,18,34,0.0 +16147,46,12,42,0.0 +16147,26,31.23,46,0.0 +16147,25,14,17,0.0 +16147,63,43.9,24,0.0 +16147,73,15,42,0.0 +16147,11,21,25,0.0 +16147,35,18,14,0.0 +16147,66,17,18,0.0 +16147,75,7.75,25,0.0 +16147,45,9.5,30,0.0 +16147,76,18,13,0.0 +16147,28,45.6,27,0.0 +16147,67,14,5,0.0 +16147,48,12.75,33,0.0 +16147,68,12.5,28,0.0 +16147,47,9.5,31,0.0 +16147,32,32,16,0.0 +16147,51,53,7,0.0 +16147,36,19,11,0.0 +16147,52,7,28,0.0 +16147,49,20,7,0.0 +16147,8,40,44,0.0 +16147,55,24,14,0.0 +16147,9,97,40,0.0 +16147,34,14,13,0.0 +16147,14,23.25,38,0.0 +16147,31,12.5,48,0.0 +16147,18,62.5,38,0.0 +16147,1,18,2,0.0 +16147,37,26,9,0.0 +16147,41,9.65,40,0.0 +16147,69,36,39,0.0 +16147,50,16.25,8,0.0 +16148,39,18,34,0.0 +16148,2,19,6,0.0 +16148,68,12.5,28,0.0 +16148,28,45.6,11,0.0 +16148,15,15.5,33,0.0 +16148,23,9,9,0.0 +16148,42,14,28,0.0 +16148,47,9.5,11,0.0 +16148,10,31,25,0.0 +16148,21,10,33,0.0 +16148,38,263.5,10,0.0 +16148,54,7.45,37,0.0 +16148,26,31.23,34,0.0 +16148,6,25,50,0.0 +16148,72,34.8,12,0.0 +16148,52,7,14,0.0 +16148,14,23.25,12,0.0 +16148,61,28.5,5,0.0 +16148,57,19.5,32,0.0 +16148,37,26,23,0.0 +16148,1,18,42,0.0 +16148,45,9.5,39,0.0 +16148,44,19.45,29,0.0 +16148,32,32,48,0.0 +16148,35,18,15,0.0 +16148,66,17,16,0.0 +16148,46,12,30,0.0 +16148,65,21.05,29,0.0 +16148,8,40,32,0.0 +16148,53,32.8,8,0.0 +16148,5,21.35,43,0.0 +16148,51,53,28,0.0 +16148,60,34,4,0.0 +16148,7,30,44,0.0 +16148,59,55,15,0.0 +16148,50,16.25,29,0.0 +16148,49,20,3,0.0 +16148,48,12.75,30,0.0 +16148,17,39,31,0.0 +16148,34,14,47,0.0 +16148,71,21.5,26,0.0 +16148,69,36,9,0.0 +16148,13,6,27,0.0 +16148,18,62.5,14,0.0 +16148,56,38,40,0.0 +16148,29,123.79,15,0.0 +16148,24,4.5,48,0.0 +16148,25,14,8,0.0 +16148,55,24,15,0.0 +16148,31,12.5,48,0.0 +16148,67,14,5,0.0 +16148,19,9.2,29,0.0 +16148,33,2.5,21,0.0 +16148,76,18,45,0.0 +16148,9,97,31,0.0 +16148,30,25.89,17,0.0 +16148,11,21,15,0.0 +16149,29,123.79,21,0.0 +16149,18,62.5,23,0.0 +16149,25,14,23,0.0 +16149,75,7.75,11,0.0 +16149,19,9.2,10,0.0 +16149,65,21.05,23,0.0 +16149,42,14,32,0.0 +16149,40,18.4,17,0.0 +16149,23,9,29,0.0 +16149,77,13,6,0.0 +16149,62,49.3,11,0.0 +16149,32,32,4,0.0 +16149,36,19,19,0.0 +16149,37,26,3,0.0 +16150,7,30,18,0.0 +16150,22,21,33,0.0 +16150,49,20,3,0.0 +16150,62,49.3,50,0.0 +16150,26,31.23,1,0.0 +16150,63,43.9,13,0.0 +16150,27,43.9,4,0.0 +16150,76,18,16,0.0 +16150,52,7,8,0.0 +16150,29,123.79,27,0.0 +16150,71,21.5,50,0.0 +16150,53,32.8,14,0.0 +16150,30,25.89,43,0.0 +16150,33,2.5,6,0.0 +16150,64,33.25,25,0.0 +16150,58,13.25,20,0.0 +16150,13,6,48,0.0 +16150,25,14,14,0.0 +16150,61,28.5,41,0.0 +16150,14,23.25,24,0.0 +16150,24,4.5,23,0.0 +16150,8,40,17,0.0 +16150,40,18.4,48,0.0 +16150,77,13,11,0.0 +16150,23,9,35,0.0 +16150,2,19,1,0.0 +16150,75,7.75,44,0.0 +16150,19,9.2,28,0.0 +16150,16,17.45,49,0.0 +16150,59,55,4,0.0 +16150,46,12,8,0.0 +16150,56,38,2,0.0 +16150,73,15,32,0.0 +16150,37,26,25,0.0 +16150,9,97,42,0.0 +16150,51,53,39,0.0 +16150,45,9.5,24,0.0 +16150,11,21,1,0.0 +16150,54,7.45,30,0.0 +16150,43,46,21,0.0 +16150,17,39,5,0.0 +16150,34,14,37,0.0 +16150,32,32,31,0.0 +16150,18,62.5,18,0.0 +16150,48,12.75,11,0.0 +16150,44,19.45,40,0.0 +16150,15,15.5,38,0.0 +16150,41,9.65,23,0.0 +16151,2,19,39,0.0 +16151,6,25,38,0.0 +16151,50,16.25,22,0.0 +16152,14,23.25,35,0.0 +16152,63,43.9,29,0.0 +16152,44,19.45,31,0.0 +16152,40,18.4,4,0.0 +16152,30,25.89,21,0.0 +16152,54,7.45,4,0.0 +16152,36,19,22,0.0 +16152,34,14,43,0.0 +16152,55,24,42,0.0 +16152,32,32,10,0.0 +16152,25,14,50,0.0 +16152,24,4.5,45,0.0 +16152,60,34,21,0.0 +16152,31,12.5,36,0.0 +16152,49,20,26,0.0 +16152,73,15,38,0.0 +16152,47,9.5,17,0.0 +16152,17,39,5,0.0 +16152,23,9,47,0.0 +16152,13,6,33,0.0 +16152,12,38,42,0.0 +16152,6,25,26,0.0 +16152,71,21.5,5,0.0 +16152,33,2.5,20,0.0 +16152,26,31.23,48,0.0 +16152,8,40,50,0.0 +16152,72,34.8,13,0.0 +16152,41,9.65,5,0.0 +16152,10,31,20,0.0 +16152,28,45.6,10,0.0 +16152,64,33.25,43,0.0 +16152,48,12.75,37,0.0 +16152,75,7.75,7,0.0 +16152,4,22,14,0.0 +16152,50,16.25,40,0.0 +16152,42,14,30,0.0 +16152,21,10,48,0.0 +16152,68,12.5,35,0.0 +16152,22,21,18,0.0 +16152,45,9.5,47,0.0 +16152,46,12,26,0.0 +16152,3,10,4,0.0 +16152,20,81,12,0.0 +16152,2,19,16,0.0 +16152,76,18,44,0.0 +16152,19,9.2,6,0.0 +16152,56,38,32,0.0 +16152,15,15.5,26,0.0 +16152,70,15,20,0.0 +16152,66,17,42,0.0 +16152,74,10,46,0.0 +16152,5,21.35,35,0.0 +16152,7,30,3,0.0 +16153,70,15,8,0.0 +16153,58,13.25,32,0.0 +16153,20,81,9,0.0 +16153,41,9.65,25,0.0 +16153,30,25.89,9,0.0 +16153,37,26,21,0.0 +16153,48,12.75,44,0.0 +16153,9,97,26,0.0 +16153,63,43.9,24,0.0 +16153,36,19,8,0.0 +16153,32,32,41,0.0 +16153,7,30,48,0.0 +16153,43,46,2,0.0 +16153,3,10,38,0.0 +16153,76,18,10,0.0 +16153,4,22,48,0.0 +16153,40,18.4,3,0.0 +16153,22,21,23,0.0 +16153,44,19.45,9,0.0 +16153,5,21.35,49,0.0 +16153,66,17,8,0.0 +16153,60,34,50,0.0 +16153,55,24,42,0.0 +16153,46,12,1,0.0 +16153,57,19.5,47,0.0 +16153,14,23.25,17,0.0 +16153,56,38,8,0.0 +16153,1,18,14,0.0 +16153,13,6,6,0.0 +16153,59,55,17,0.0 +16153,47,9.5,49,0.0 +16153,15,15.5,16,0.0 +16153,11,21,49,0.0 +16153,74,10,35,0.0 +16153,73,15,4,0.0 +16153,31,12.5,33,0.0 +16153,10,31,4,0.0 +16153,67,14,18,0.0 +16153,34,14,47,0.0 +16154,7,30,23,0.0 +16154,68,12.5,2,0.0 +16154,51,53,20,0.0 +16154,44,19.45,5,0.0 +16154,43,46,15,0.0 +16154,36,19,16,0.0 +16154,25,14,17,0.0 +16154,30,25.89,40,0.0 +16154,46,12,33,0.0 +16154,19,9.2,49,0.0 +16154,34,14,30,0.0 +16154,63,43.9,42,0.0 +16154,39,18,38,0.0 +16154,1,18,22,0.0 +16154,66,17,41,0.0 +16154,41,9.65,30,0.0 +16154,74,10,26,0.0 +16154,56,38,16,0.0 +16154,49,20,8,0.0 +16154,61,28.5,2,0.0 +16154,38,263.5,43,0.0 +16154,53,32.8,14,0.0 +16154,40,18.4,49,0.0 +16154,20,81,28,0.0 +16154,71,21.5,32,0.0 +16154,75,7.75,6,0.0 +16154,3,10,26,0.0 +16154,37,26,5,0.0 +16154,60,34,27,0.0 +16154,77,13,18,0.0 +16154,33,2.5,38,0.0 +16154,76,18,26,0.0 +16154,65,21.05,8,0.0 +16154,29,123.79,17,0.0 +16154,42,14,15,0.0 +16154,4,22,26,0.0 +16154,70,15,14,0.0 +16154,45,9.5,19,0.0 +16154,27,43.9,4,0.0 +16154,15,15.5,48,0.0 +16154,2,19,16,0.0 +16154,10,31,26,0.0 +16154,26,31.23,1,0.0 +16154,58,13.25,19,0.0 +16154,57,19.5,10,0.0 +16154,12,38,6,0.0 +16154,17,39,49,0.0 +16154,72,34.8,39,0.0 +16154,24,4.5,1,0.0 +16155,40,18.4,42,0.0 +16155,20,81,16,0.0 +16155,23,9,25,0.0 +16155,37,26,11,0.0 +16155,6,25,25,0.0 +16155,26,31.23,6,0.0 +16155,60,34,27,0.0 +16155,68,12.5,24,0.0 +16155,9,97,11,0.0 +16155,13,6,40,0.0 +16155,19,9.2,10,0.0 +16155,54,7.45,21,0.0 +16156,58,13.25,7,0.0 +16156,44,19.45,38,0.0 +16156,8,40,17,0.0 +16156,60,34,12,0.0 +16156,50,16.25,18,0.0 +16156,4,22,9,0.0 +16156,61,28.5,1,0.0 +16156,14,23.25,37,0.0 +16156,28,45.6,26,0.0 +16156,38,263.5,21,0.0 +16156,27,43.9,37,0.0 +16156,23,9,22,0.0 +16156,30,25.89,38,0.0 +16156,49,20,27,0.0 +16156,55,24,15,0.0 +16156,36,19,6,0.0 +16156,74,10,37,0.0 +16156,33,2.5,1,0.0 +16156,15,15.5,24,0.0 +16156,77,13,28,0.0 +16156,31,12.5,13,0.0 +16156,9,97,49,0.0 +16156,12,38,40,0.0 +16156,71,21.5,9,0.0 +16156,64,33.25,32,0.0 +16156,73,15,4,0.0 +16156,67,14,12,0.0 +16156,29,123.79,17,0.0 +16156,11,21,50,0.0 +16156,25,14,36,0.0 +16156,32,32,40,0.0 +16156,40,18.4,10,0.0 +16156,37,26,8,0.0 +16156,5,21.35,1,0.0 +16156,57,19.5,35,0.0 +16156,16,17.45,4,0.0 +16156,56,38,42,0.0 +16156,3,10,7,0.0 +16156,34,14,11,0.0 +16156,48,12.75,21,0.0 +16156,66,17,22,0.0 +16156,63,43.9,39,0.0 +16156,17,39,1,0.0 +16156,24,4.5,2,0.0 +16156,35,18,45,0.0 +16156,46,12,6,0.0 +16156,65,21.05,10,0.0 +16156,54,7.45,35,0.0 +16156,18,62.5,23,0.0 +16156,53,32.8,28,0.0 +16156,52,7,23,0.0 +16156,42,14,47,0.0 +16156,76,18,17,0.0 +16156,62,49.3,12,0.0 +16156,22,21,18,0.0 +16156,20,81,30,0.0 +16156,26,31.23,9,0.0 +16157,36,19,30,0.0 +16157,12,38,11,0.0 +16157,18,62.5,20,0.0 +16157,23,9,40,0.0 +16157,69,36,5,0.0 +16157,9,97,38,0.0 +16157,25,14,4,0.0 +16157,31,12.5,29,0.0 +16157,3,10,20,0.0 +16157,60,34,37,0.0 +16157,53,32.8,27,0.0 +16157,33,2.5,4,0.0 +16157,75,7.75,38,0.0 +16157,58,13.25,41,0.0 +16157,71,21.5,10,0.0 +16157,70,15,40,0.0 +16157,66,17,29,0.0 +16157,39,18,16,0.0 +16157,43,46,35,0.0 +16157,61,28.5,44,0.0 +16157,77,13,37,0.0 +16157,19,9.2,5,0.0 +16157,49,20,27,0.0 +16157,52,7,42,0.0 +16157,24,4.5,12,0.0 +16157,16,17.45,17,0.0 +16157,32,32,45,0.0 +16157,51,53,29,0.0 +16157,45,9.5,12,0.0 +16157,67,14,24,0.0 +16157,7,30,5,0.0 +16157,29,123.79,18,0.0 +16157,8,40,12,0.0 +16157,20,81,2,0.0 +16157,4,22,11,0.0 +16157,26,31.23,47,0.0 +16157,10,31,12,0.0 +16157,47,9.5,47,0.0 +16157,74,10,47,0.0 +16157,73,15,32,0.0 +16157,65,21.05,49,0.0 +16157,2,19,2,0.0 +16157,1,18,18,0.0 +16157,11,21,22,0.0 +16157,68,12.5,22,0.0 +16157,6,25,45,0.0 +16157,46,12,39,0.0 +16157,37,26,14,0.0 +16157,44,19.45,3,0.0 +16157,72,34.8,31,0.0 +16157,17,39,15,0.0 +16157,55,24,35,0.0 +16157,48,12.75,6,0.0 +16157,76,18,43,0.0 +16157,35,18,21,0.0 +16157,63,43.9,38,0.0 +16157,62,49.3,33,0.0 +16157,57,19.5,17,0.0 +16157,64,33.25,32,0.0 +16157,14,23.25,16,0.0 +16157,13,6,1,0.0 +16157,38,263.5,20,0.0 +16157,5,21.35,19,0.0 +16157,54,7.45,10,0.0 +16157,59,55,1,0.0 +16157,28,45.6,40,0.0 +16157,30,25.89,26,0.0 +16157,42,14,23,0.0 +16158,57,19.5,27,0.0 +16158,44,19.45,42,0.0 +16158,5,21.35,35,0.0 +16158,4,22,40,0.0 +16158,1,18,35,0.0 +16158,50,16.25,7,0.0 +16158,68,12.5,24,0.0 +16158,43,46,17,0.0 +16158,69,36,30,0.0 +16158,54,7.45,28,0.0 +16158,20,81,19,0.0 +16158,53,32.8,2,0.0 +16158,62,49.3,20,0.0 +16158,37,26,32,0.0 +16158,41,9.65,2,0.0 +16158,45,9.5,8,0.0 +16158,13,6,35,0.0 +16158,73,15,27,0.0 +16158,11,21,35,0.0 +16158,22,21,39,0.0 +16158,8,40,6,0.0 +16158,46,12,34,0.0 +16158,32,32,44,0.0 +16158,21,10,38,0.0 +16158,52,7,5,0.0 +16158,74,10,39,0.0 +16158,60,34,1,0.0 +16158,35,18,45,0.0 +16158,47,9.5,16,0.0 +16158,15,15.5,26,0.0 +16158,19,9.2,42,0.0 +16158,28,45.6,24,0.0 +16158,31,12.5,13,0.0 +16158,55,24,36,0.0 +16159,31,12.5,47,0.0 +16159,65,21.05,48,0.0 +16159,7,30,26,0.0 +16159,18,62.5,40,0.0 +16159,1,18,42,0.0 +16159,57,19.5,50,0.0 +16159,71,21.5,3,0.0 +16159,30,25.89,6,0.0 +16159,70,15,17,0.0 +16159,61,28.5,48,0.0 +16159,60,34,45,0.0 +16159,77,13,50,0.0 +16159,27,43.9,6,0.0 +16159,16,17.45,14,0.0 +16159,42,14,32,0.0 +16159,23,9,24,0.0 +16159,11,21,27,0.0 +16159,15,15.5,26,0.0 +16159,53,32.8,31,0.0 +16159,43,46,16,0.0 +16159,26,31.23,23,0.0 +16159,24,4.5,45,0.0 +16159,33,2.5,35,0.0 +16159,39,18,17,0.0 +16159,5,21.35,3,0.0 +16159,22,21,40,0.0 +16159,52,7,5,0.0 +16159,73,15,26,0.0 +16159,74,10,45,0.0 +16159,45,9.5,18,0.0 +16159,37,26,42,0.0 +16159,67,14,47,0.0 +16159,69,36,20,0.0 +16159,36,19,39,0.0 +16159,21,10,9,0.0 +16159,12,38,13,0.0 +16159,48,12.75,42,0.0 +16159,46,12,19,0.0 +16159,47,9.5,40,0.0 +16159,3,10,17,0.0 +16159,25,14,15,0.0 +16159,13,6,24,0.0 +16159,66,17,17,0.0 +16159,41,9.65,26,0.0 +16159,55,24,8,0.0 +16159,2,19,20,0.0 +16159,35,18,18,0.0 +16159,28,45.6,44,0.0 +16159,38,263.5,9,0.0 +16159,59,55,34,0.0 +16159,20,81,1,0.0 +16159,40,18.4,48,0.0 +16159,17,39,33,0.0 +16159,19,9.2,42,0.0 +16159,29,123.79,35,0.0 +16159,34,14,46,0.0 +16159,10,31,19,0.0 +16159,14,23.25,2,0.0 +16159,68,12.5,29,0.0 +16159,56,38,26,0.0 +16159,4,22,20,0.0 +16159,6,25,19,0.0 +16159,54,7.45,40,0.0 +16159,32,32,17,0.0 +16159,76,18,10,0.0 +16159,50,16.25,48,0.0 +16159,44,19.45,20,0.0 +16159,64,33.25,31,0.0 +16159,75,7.75,21,0.0 +16159,58,13.25,46,0.0 +16160,51,53,22,0.0 +16160,31,12.5,20,0.0 +16160,70,15,30,0.0 +16160,69,36,31,0.0 +16160,74,10,23,0.0 +16160,62,49.3,32,0.0 +16160,75,7.75,24,0.0 +16160,18,62.5,40,0.0 +16160,39,18,32,0.0 +16160,13,6,10,0.0 +16160,11,21,19,0.0 +16160,53,32.8,50,0.0 +16160,36,19,6,0.0 +16160,46,12,32,0.0 +16160,6,25,21,0.0 +16160,21,10,17,0.0 +16160,14,23.25,33,0.0 +16160,30,25.89,29,0.0 +16160,45,9.5,44,0.0 +16160,47,9.5,10,0.0 +16160,7,30,28,0.0 +16160,49,20,33,0.0 +16160,41,9.65,25,0.0 +16160,34,14,4,0.0 +16160,64,33.25,6,0.0 +16160,48,12.75,3,0.0 +16160,4,22,47,0.0 +16160,63,43.9,20,0.0 +16160,37,26,48,0.0 +16160,59,55,8,0.0 +16160,72,34.8,21,0.0 +16160,38,263.5,43,0.0 +16160,2,19,45,0.0 +16160,68,12.5,18,0.0 +16160,23,9,23,0.0 +16160,35,18,5,0.0 +16160,33,2.5,47,0.0 +16160,76,18,27,0.0 +16160,22,21,12,0.0 +16160,56,38,50,0.0 +16160,43,46,11,0.0 +16160,42,14,27,0.0 +16160,10,31,6,0.0 +16160,71,21.5,31,0.0 +16160,54,7.45,28,0.0 +16160,77,13,9,0.0 +16160,67,14,12,0.0 +16160,19,9.2,36,0.0 +16160,52,7,11,0.0 +16160,9,97,19,0.0 +16160,50,16.25,39,0.0 +16160,17,39,30,0.0 +16160,58,13.25,23,0.0 +16160,26,31.23,41,0.0 +16160,1,18,44,0.0 +16160,29,123.79,49,0.0 +16160,60,34,10,0.0 +16160,44,19.45,44,0.0 +16160,28,45.6,41,0.0 +16160,61,28.5,43,0.0 +16160,12,38,29,0.0 +16160,3,10,10,0.0 +16160,24,4.5,32,0.0 +16160,8,40,11,0.0 +16160,66,17,25,0.0 +16160,15,15.5,7,0.0 +16160,55,24,32,0.0 +16160,20,81,26,0.0 +16160,65,21.05,41,0.0 +16160,32,32,22,0.0 +16160,73,15,12,0.0 +16160,57,19.5,11,0.0 +16160,16,17.45,31,0.0 +16160,25,14,17,0.0 +16160,40,18.4,36,0.0 +16160,27,43.9,42,0.0 +16161,44,19.45,38,0.0 +16161,1,18,34,0.0 +16161,55,24,9,0.0 +16161,24,4.5,42,0.0 +16161,50,16.25,49,0.0 +16161,6,25,32,0.0 +16161,73,15,18,0.0 +16161,43,46,4,0.0 +16161,54,7.45,6,0.0 +16161,15,15.5,2,0.0 +16161,21,10,48,0.0 +16161,75,7.75,36,0.0 +16161,16,17.45,4,0.0 +16161,5,21.35,31,0.0 +16161,65,21.05,24,0.0 +16161,77,13,18,0.0 +16161,10,31,35,0.0 +16161,2,19,22,0.0 +16161,42,14,27,0.0 +16161,12,38,18,0.0 +16161,31,12.5,3,0.0 +16161,38,263.5,29,0.0 +16161,11,21,4,0.0 +16161,27,43.9,44,0.0 +16161,48,12.75,6,0.0 +16161,4,22,27,0.0 +16161,76,18,50,0.0 +16161,58,13.25,40,0.0 +16161,37,26,19,0.0 +16161,30,25.89,42,0.0 +16161,34,14,45,0.0 +16161,70,15,44,0.0 +16161,18,62.5,38,0.0 +16162,18,62.5,29,0.0 +16162,74,10,48,0.0 +16162,49,20,16,0.0 +16162,65,21.05,38,0.0 +16162,66,17,10,0.0 +16162,55,24,28,0.0 +16162,29,123.79,19,0.0 +16162,72,34.8,10,0.0 +16162,73,15,7,0.0 +16162,37,26,8,0.0 +16162,57,19.5,28,0.0 +16162,15,15.5,42,0.0 +16162,20,81,38,0.0 +16162,34,14,28,0.0 +16162,21,10,5,0.0 +16162,52,7,12,0.0 +16162,6,25,23,0.0 +16162,38,263.5,30,0.0 +16162,11,21,32,0.0 +16162,54,7.45,28,0.0 +16162,42,14,49,0.0 +16162,68,12.5,21,0.0 +16163,72,34.8,38,0.0 +16163,74,10,47,0.0 +16163,31,12.5,16,0.0 +16164,24,4.5,1,0.0 +16164,64,33.25,37,0.0 +16164,17,39,27,0.0 +16164,11,21,10,0.0 +16164,21,10,28,0.0 +16164,6,25,36,0.0 +16164,19,9.2,20,0.0 +16164,29,123.79,28,0.0 +16164,31,12.5,27,0.0 +16164,28,45.6,29,0.0 +16164,53,32.8,12,0.0 +16164,69,36,24,0.0 +16164,51,53,12,0.0 +16164,77,13,15,0.0 +16164,13,6,9,0.0 +16164,55,24,16,0.0 +16164,23,9,38,0.0 +16164,5,21.35,26,0.0 +16164,22,21,20,0.0 +16164,39,18,38,0.0 +16164,38,263.5,42,0.0 +16164,4,22,9,0.0 +16164,25,14,33,0.0 +16164,2,19,7,0.0 +16164,15,15.5,50,0.0 +16164,44,19.45,3,0.0 +16164,36,19,16,0.0 +16164,45,9.5,26,0.0 +16164,58,13.25,28,0.0 +16164,57,19.5,4,0.0 +16164,67,14,2,0.0 +16164,7,30,6,0.0 +16164,35,18,28,0.0 +16164,47,9.5,40,0.0 +16164,59,55,20,0.0 +16164,14,23.25,28,0.0 +16164,18,62.5,43,0.0 +16164,42,14,22,0.0 +16164,1,18,27,0.0 +16164,30,25.89,9,0.0 +16164,74,10,27,0.0 +16165,10,31,31,0.0 +16165,59,55,32,0.0 +16165,58,13.25,19,0.0 +16165,63,43.9,23,0.0 +16165,67,14,50,0.0 +16165,21,10,37,0.0 +16165,46,12,16,0.0 +16165,69,36,6,0.0 +16165,62,49.3,39,0.0 +16165,45,9.5,45,0.0 +16165,7,30,30,0.0 +16165,54,7.45,39,0.0 +16165,72,34.8,34,0.0 +16165,26,31.23,19,0.0 +16165,50,16.25,48,0.0 +16165,39,18,33,0.0 +16165,64,33.25,47,0.0 +16165,18,62.5,12,0.0 +16165,31,12.5,44,0.0 +16165,49,20,36,0.0 +16165,23,9,36,0.0 +16165,9,97,35,0.0 +16165,76,18,41,0.0 +16165,68,12.5,35,0.0 +16165,14,23.25,18,0.0 +16165,37,26,45,0.0 +16165,24,4.5,50,0.0 +16165,41,9.65,48,0.0 +16165,38,263.5,8,0.0 +16165,22,21,35,0.0 +16165,20,81,40,0.0 +16165,12,38,36,0.0 +16165,8,40,21,0.0 +16165,60,34,9,0.0 +16165,30,25.89,19,0.0 +16165,19,9.2,4,0.0 +16165,29,123.79,21,0.0 +16166,45,9.5,12,0.0 +16166,20,81,36,0.0 +16166,4,22,34,0.0 +16166,65,21.05,44,0.0 +16166,61,28.5,30,0.0 +16166,9,97,19,0.0 +16166,60,34,19,0.0 +16166,39,18,12,0.0 +16166,47,9.5,43,0.0 +16166,42,14,1,0.0 +16166,41,9.65,43,0.0 +16166,25,14,12,0.0 +16166,37,26,46,0.0 +16166,11,21,46,0.0 +16166,22,21,7,0.0 +16166,16,17.45,34,0.0 +16166,8,40,14,0.0 +16166,34,14,48,0.0 +16166,63,43.9,43,0.0 +16166,55,24,2,0.0 +16166,64,33.25,45,0.0 +16166,32,32,22,0.0 +16166,17,39,25,0.0 +16166,21,10,1,0.0 +16166,52,7,45,0.0 +16166,1,18,1,0.0 +16166,50,16.25,48,0.0 +16166,71,21.5,2,0.0 +16166,35,18,21,0.0 +16166,77,13,30,0.0 +16166,13,6,38,0.0 +16166,57,19.5,19,0.0 +16166,54,7.45,16,0.0 +16166,66,17,46,0.0 +16166,53,32.8,8,0.0 +16166,5,21.35,24,0.0 +16166,36,19,42,0.0 +16166,56,38,26,0.0 +16166,3,10,26,0.0 +16166,30,25.89,49,0.0 +16166,43,46,12,0.0 +16166,48,12.75,7,0.0 +16166,76,18,14,0.0 +16166,72,34.8,28,0.0 +16166,29,123.79,11,0.0 +16166,46,12,22,0.0 +16166,14,23.25,38,0.0 +16166,18,62.5,41,0.0 +16166,15,15.5,23,0.0 +16166,70,15,45,0.0 +16166,49,20,33,0.0 +16166,68,12.5,28,0.0 +16166,7,30,40,0.0 +16166,40,18.4,3,0.0 +16166,31,12.5,46,0.0 +16166,19,9.2,10,0.0 +16166,75,7.75,18,0.0 +16166,23,9,46,0.0 +16167,25,14,25,0.0 +16167,1,18,32,0.0 +16167,29,123.79,35,0.0 +16167,44,19.45,26,0.0 +16167,40,18.4,25,0.0 +16167,74,10,39,0.0 +16168,1,18,3,0.0 +16168,67,14,40,0.0 +16168,51,53,24,0.0 +16168,16,17.45,38,0.0 +16168,37,26,42,0.0 +16168,31,12.5,46,0.0 +16168,15,15.5,25,0.0 +16168,64,33.25,40,0.0 +16168,43,46,18,0.0 +16168,14,23.25,17,0.0 +16168,58,13.25,29,0.0 +16168,25,14,4,0.0 +16168,44,19.45,47,0.0 +16168,27,43.9,26,0.0 +16168,55,24,28,0.0 +16168,46,12,22,0.0 +16168,57,19.5,50,0.0 +16168,11,21,46,0.0 +16168,39,18,16,0.0 +16168,61,28.5,45,0.0 +16168,63,43.9,36,0.0 +16168,21,10,40,0.0 +16168,72,34.8,5,0.0 +16168,8,40,44,0.0 +16168,20,81,19,0.0 +16168,34,14,5,0.0 +16168,26,31.23,18,0.0 +16168,59,55,29,0.0 +16168,76,18,16,0.0 +16168,52,7,27,0.0 +16168,4,22,39,0.0 +16168,42,14,20,0.0 +16168,13,6,50,0.0 +16168,30,25.89,37,0.0 +16168,10,31,48,0.0 +16168,49,20,6,0.0 +16168,77,13,20,0.0 +16168,60,34,1,0.0 +16168,19,9.2,22,0.0 +16168,9,97,20,0.0 +16168,33,2.5,34,0.0 +16168,35,18,41,0.0 +16168,18,62.5,13,0.0 +16168,70,15,45,0.0 +16168,38,263.5,2,0.0 +16168,53,32.8,26,0.0 +16168,48,12.75,48,0.0 +16168,75,7.75,41,0.0 +16168,41,9.65,6,0.0 +16168,17,39,24,0.0 +16168,29,123.79,9,0.0 +16168,65,21.05,38,0.0 +16168,3,10,39,0.0 +16168,23,9,47,0.0 +16169,2,19,32,0.0 +16169,53,32.8,11,0.0 +16169,22,21,9,0.0 +16169,65,21.05,22,0.0 +16169,45,9.5,8,0.0 +16169,19,9.2,47,0.0 +16169,55,24,20,0.0 +16169,42,14,50,0.0 +16169,68,12.5,48,0.0 +16169,6,25,3,0.0 +16169,33,2.5,24,0.0 +16169,74,10,10,0.0 +16169,52,7,20,0.0 +16169,47,9.5,14,0.0 +16169,11,21,36,0.0 +16169,73,15,5,0.0 +16169,35,18,23,0.0 +16169,49,20,38,0.0 +16169,9,97,28,0.0 +16169,60,34,6,0.0 +16169,67,14,10,0.0 +16169,72,34.8,46,0.0 +16169,4,22,8,0.0 +16169,3,10,16,0.0 +16169,17,39,3,0.0 +16169,66,17,15,0.0 +16169,41,9.65,11,0.0 +16169,69,36,34,0.0 +16169,61,28.5,42,0.0 +16169,76,18,42,0.0 +16169,56,38,9,0.0 +16169,37,26,25,0.0 +16169,28,45.6,2,0.0 +16169,43,46,25,0.0 +16169,62,49.3,6,0.0 +16169,57,19.5,44,0.0 +16169,71,21.5,22,0.0 +16169,24,4.5,44,0.0 +16169,1,18,18,0.0 +16169,63,43.9,13,0.0 +16169,8,40,23,0.0 +16169,20,81,23,0.0 +16169,7,30,4,0.0 +16169,26,31.23,36,0.0 +16169,48,12.75,26,0.0 +16169,46,12,20,0.0 +16169,30,25.89,28,0.0 +16169,31,12.5,49,0.0 +16169,21,10,42,0.0 +16169,34,14,20,0.0 +16169,58,13.25,27,0.0 +16169,39,18,1,0.0 +16169,64,33.25,38,0.0 +16169,27,43.9,4,0.0 +16169,40,18.4,50,0.0 +16169,5,21.35,37,0.0 +16169,32,32,39,0.0 +16169,59,55,10,0.0 +16169,51,53,46,0.0 +16169,50,16.25,20,0.0 +16169,16,17.45,35,0.0 +16169,10,31,11,0.0 +16169,25,14,20,0.0 +16169,23,9,6,0.0 +16169,70,15,36,0.0 +16169,14,23.25,2,0.0 +16169,36,19,45,0.0 +16169,54,7.45,29,0.0 +16169,13,6,49,0.0 +16169,77,13,19,0.0 +16169,29,123.79,35,0.0 +16169,38,263.5,48,0.0 +16169,15,15.5,43,0.0 +16170,68,12.5,35,0.0 +16170,13,6,24,0.0 +16170,43,46,29,0.0 +16170,9,97,8,0.0 +16170,61,28.5,42,0.0 +16170,39,18,9,0.0 +16170,45,9.5,26,0.0 +16170,56,38,34,0.0 +16170,3,10,39,0.0 +16170,2,19,1,0.0 +16170,30,25.89,5,0.0 +16170,22,21,50,0.0 +16170,19,9.2,24,0.0 +16170,14,23.25,14,0.0 +16170,20,81,5,0.0 +16170,29,123.79,49,0.0 +16170,31,12.5,42,0.0 +16170,59,55,4,0.0 +16170,42,14,39,0.0 +16170,65,21.05,6,0.0 +16170,57,19.5,26,0.0 +16170,76,18,6,0.0 +16170,77,13,26,0.0 +16171,33,2.5,28,0.0 +16171,29,123.79,39,0.0 +16171,69,36,16,0.0 +16171,64,33.25,8,0.0 +16171,32,32,4,0.0 +16171,49,20,19,0.0 +16171,41,9.65,22,0.0 +16171,13,6,15,0.0 +16171,55,24,34,0.0 +16171,76,18,39,0.0 +16171,50,16.25,47,0.0 +16171,17,39,27,0.0 +16171,26,31.23,34,0.0 +16171,28,45.6,21,0.0 +16171,53,32.8,25,0.0 +16171,20,81,41,0.0 +16171,3,10,40,0.0 +16171,27,43.9,6,0.0 +16171,54,7.45,36,0.0 +16171,37,26,49,0.0 +16171,77,13,48,0.0 +16171,48,12.75,33,0.0 +16171,16,17.45,12,0.0 +16171,46,12,6,0.0 +16171,58,13.25,49,0.0 +16171,57,19.5,23,0.0 +16172,39,18,5,0.0 +16172,34,14,7,0.0 +16172,50,16.25,13,0.0 +16172,64,33.25,28,0.0 +16172,36,19,7,0.0 +16172,41,9.65,24,0.0 +16172,12,38,43,0.0 +16172,13,6,15,0.0 +16172,5,21.35,24,0.0 +16172,35,18,8,0.0 +16172,4,22,1,0.0 +16172,32,32,1,0.0 +16172,58,13.25,35,0.0 +16172,77,13,10,0.0 +16172,1,18,10,0.0 +16172,33,2.5,19,0.0 +16172,26,31.23,22,0.0 +16173,1,18,31,0.0 +16173,49,20,49,0.0 +16173,23,9,20,0.0 +16173,39,18,11,0.0 +16173,41,9.65,26,0.0 +16173,38,263.5,25,0.0 +16173,19,9.2,46,0.0 +16173,6,25,44,0.0 +16173,4,22,22,0.0 +16173,15,15.5,36,0.0 +16173,24,4.5,14,0.0 +16173,66,17,36,0.0 +16173,73,15,7,0.0 +16173,51,53,24,0.0 +16173,12,38,6,0.0 +16173,33,2.5,41,0.0 +16173,35,18,47,0.0 +16173,55,24,9,0.0 +16173,32,32,23,0.0 +16173,72,34.8,1,0.0 +16173,68,12.5,48,0.0 +16173,31,12.5,20,0.0 +16173,13,6,29,0.0 +16173,76,18,41,0.0 +16173,9,97,7,0.0 +16173,60,34,46,0.0 +16173,75,7.75,4,0.0 +16173,36,19,13,0.0 +16173,70,15,21,0.0 +16173,77,13,13,0.0 +16173,64,33.25,4,0.0 +16173,28,45.6,43,0.0 +16173,61,28.5,5,0.0 +16173,11,21,19,0.0 +16173,63,43.9,10,0.0 +16173,45,9.5,1,0.0 +16173,65,21.05,5,0.0 +16173,16,17.45,39,0.0 +16173,17,39,42,0.0 +16173,14,23.25,47,0.0 +16173,52,7,43,0.0 +16173,40,18.4,14,0.0 +16173,29,123.79,41,0.0 +16173,47,9.5,23,0.0 +16173,59,55,27,0.0 +16173,69,36,47,0.0 +16173,27,43.9,7,0.0 +16173,46,12,30,0.0 +16174,2,19,49,0.0 +16174,62,49.3,41,0.0 +16174,77,13,11,0.0 +16174,22,21,8,0.0 +16174,75,7.75,39,0.0 +16174,44,19.45,34,0.0 +16174,70,15,10,0.0 +16174,58,13.25,7,0.0 +16174,40,18.4,5,0.0 +16174,25,14,33,0.0 +16174,30,25.89,29,0.0 +16174,37,26,4,0.0 +16174,59,55,25,0.0 +16174,18,62.5,32,0.0 +16175,63,43.9,44,0.0 +16175,43,46,35,0.0 +16175,58,13.25,28,0.0 +16175,54,7.45,48,0.0 +16175,22,21,2,0.0 +16175,39,18,23,0.0 +16175,51,53,3,0.0 +16175,34,14,33,0.0 +16175,19,9.2,18,0.0 +16175,69,36,3,0.0 +16175,66,17,50,0.0 +16175,21,10,21,0.0 +16175,44,19.45,30,0.0 +16175,18,62.5,40,0.0 +16175,55,24,48,0.0 +16175,38,263.5,24,0.0 +16175,7,30,44,0.0 +16175,77,13,47,0.0 +16175,49,20,23,0.0 +16175,56,38,4,0.0 +16175,33,2.5,30,0.0 +16175,67,14,13,0.0 +16175,73,15,44,0.0 +16175,50,16.25,49,0.0 +16176,19,9.2,33,0.0 +16176,65,21.05,18,0.0 +16176,24,4.5,24,0.0 +16176,71,21.5,20,0.0 +16176,50,16.25,40,0.0 +16176,27,43.9,45,0.0 +16176,40,18.4,42,0.0 +16176,8,40,8,0.0 +16176,62,49.3,33,0.0 +16176,60,34,43,0.0 +16176,39,18,32,0.0 +16176,32,32,10,0.0 +16176,34,14,20,0.0 +16176,52,7,50,0.0 +16176,70,15,17,0.0 +16176,55,24,14,0.0 +16176,28,45.6,10,0.0 +16176,36,19,16,0.0 +16176,49,20,12,0.0 +16176,6,25,47,0.0 +16176,57,19.5,5,0.0 +16176,72,34.8,41,0.0 +16176,48,12.75,43,0.0 +16176,12,38,30,0.0 +16176,15,15.5,4,0.0 +16176,58,13.25,46,0.0 +16176,23,9,24,0.0 +16176,76,18,19,0.0 +16176,26,31.23,38,0.0 +16176,25,14,12,0.0 +16176,51,53,14,0.0 +16176,59,55,36,0.0 +16176,18,62.5,37,0.0 +16176,17,39,23,0.0 +16176,29,123.79,48,0.0 +16176,16,17.45,3,0.0 +16176,46,12,23,0.0 +16176,56,38,11,0.0 +16176,68,12.5,20,0.0 +16176,45,9.5,37,0.0 +16176,73,15,19,0.0 +16176,44,19.45,28,0.0 +16176,75,7.75,2,0.0 +16176,41,9.65,5,0.0 +16176,7,30,1,0.0 +16177,3,10,29,0.0 +16177,74,10,34,0.0 +16177,62,49.3,24,0.0 +16177,72,34.8,40,0.0 +16177,15,15.5,43,0.0 +16177,76,18,43,0.0 +16177,24,4.5,28,0.0 +16177,42,14,11,0.0 +16177,53,32.8,33,0.0 +16177,5,21.35,49,0.0 +16177,43,46,3,0.0 +16177,38,263.5,26,0.0 +16177,35,18,18,0.0 +16177,21,10,47,0.0 +16177,54,7.45,36,0.0 +16177,39,18,18,0.0 +16177,51,53,16,0.0 +16177,28,45.6,37,0.0 +16177,77,13,16,0.0 +16177,34,14,25,0.0 +16177,66,17,35,0.0 +16177,48,12.75,12,0.0 +16177,25,14,37,0.0 +16177,47,9.5,14,0.0 +16177,1,18,11,0.0 +16177,2,19,4,0.0 +16177,45,9.5,29,0.0 +16177,69,36,2,0.0 +16177,59,55,27,0.0 +16177,58,13.25,35,0.0 +16177,19,9.2,8,0.0 +16177,30,25.89,13,0.0 +16178,42,14,23,0.0 +16178,7,30,33,0.0 +16179,1,18,16,0.0 +16179,31,12.5,38,0.0 +16179,9,97,16,0.0 +16179,72,34.8,8,0.0 +16179,51,53,39,0.0 +16179,64,33.25,45,0.0 +16179,37,26,50,0.0 +16179,4,22,17,0.0 +16179,5,21.35,43,0.0 +16179,23,9,27,0.0 +16179,71,21.5,36,0.0 +16180,13,6,19,0.0 +16180,73,15,23,0.0 +16180,32,32,13,0.0 +16180,20,81,1,0.0 +16180,27,43.9,33,0.0 +16180,62,49.3,26,0.0 +16180,49,20,50,0.0 +16180,9,97,24,0.0 +16180,77,13,6,0.0 +16180,22,21,41,0.0 +16180,57,19.5,16,0.0 +16180,63,43.9,45,0.0 +16180,71,21.5,19,0.0 +16180,16,17.45,6,0.0 +16180,68,12.5,40,0.0 +16180,4,22,17,0.0 +16180,3,10,5,0.0 +16180,11,21,38,0.0 +16180,56,38,24,0.0 +16180,65,21.05,40,0.0 +16180,41,9.65,21,0.0 +16180,6,25,6,0.0 +16180,46,12,13,0.0 +16180,28,45.6,36,0.0 +16180,26,31.23,31,0.0 +16180,5,21.35,6,0.0 +16180,38,263.5,4,0.0 +16180,34,14,43,0.0 +16180,36,19,14,0.0 +16180,23,9,42,0.0 +16180,47,9.5,12,0.0 +16180,8,40,11,0.0 +16180,21,10,42,0.0 +16180,53,32.8,50,0.0 +16180,70,15,47,0.0 +16180,40,18.4,13,0.0 +16180,55,24,11,0.0 +16180,25,14,19,0.0 +16180,43,46,40,0.0 +16180,15,15.5,17,0.0 +16180,50,16.25,30,0.0 +16180,52,7,12,0.0 +16180,45,9.5,15,0.0 +16180,33,2.5,39,0.0 +16180,61,28.5,50,0.0 +16180,74,10,10,0.0 +16180,35,18,17,0.0 +16180,1,18,6,0.0 +16180,12,38,19,0.0 +16180,24,4.5,20,0.0 +16180,10,31,12,0.0 +16180,2,19,48,0.0 +16180,7,30,22,0.0 +16180,60,34,50,0.0 +16180,30,25.89,50,0.0 +16180,66,17,2,0.0 +16180,58,13.25,44,0.0 +16180,48,12.75,50,0.0 +16180,44,19.45,39,0.0 +16180,54,7.45,49,0.0 +16180,18,62.5,17,0.0 +16180,72,34.8,7,0.0 +16180,64,33.25,15,0.0 +16180,14,23.25,49,0.0 +16180,17,39,45,0.0 +16180,75,7.75,5,0.0 +16180,19,9.2,44,0.0 +16180,59,55,17,0.0 +16180,76,18,8,0.0 +16180,67,14,12,0.0 +16180,69,36,29,0.0 +16180,31,12.5,41,0.0 +16180,37,26,15,0.0 +16180,29,123.79,5,0.0 +16181,10,31,14,0.0 +16181,54,7.45,26,0.0 +16181,34,14,24,0.0 +16181,35,18,41,0.0 +16181,2,19,50,0.0 +16181,26,31.23,9,0.0 +16181,58,13.25,2,0.0 +16181,14,23.25,45,0.0 +16181,37,26,38,0.0 +16181,68,12.5,13,0.0 +16182,6,25,26,0.0 +16182,76,18,43,0.0 +16182,68,12.5,25,0.0 +16182,36,19,33,0.0 +16182,3,10,33,0.0 +16182,26,31.23,2,0.0 +16182,35,18,22,0.0 +16182,69,36,2,0.0 +16182,58,13.25,21,0.0 +16182,67,14,37,0.0 +16182,21,10,28,0.0 +16182,44,19.45,20,0.0 +16182,53,32.8,32,0.0 +16182,20,81,31,0.0 +16182,63,43.9,41,0.0 +16182,66,17,12,0.0 +16182,65,21.05,5,0.0 +16182,70,15,28,0.0 +16182,59,55,30,0.0 +16182,27,43.9,50,0.0 +16182,50,16.25,46,0.0 +16182,73,15,44,0.0 +16182,4,22,21,0.0 +16182,52,7,37,0.0 +16182,16,17.45,48,0.0 +16182,60,34,27,0.0 +16182,19,9.2,2,0.0 +16182,18,62.5,9,0.0 +16182,47,9.5,29,0.0 +16182,43,46,25,0.0 +16182,28,45.6,39,0.0 +16182,55,24,15,0.0 +16182,22,21,27,0.0 +16182,1,18,19,0.0 +16182,23,9,40,0.0 +16182,62,49.3,2,0.0 +16182,10,31,38,0.0 +16182,31,12.5,39,0.0 +16182,54,7.45,24,0.0 +16182,39,18,43,0.0 +16182,7,30,47,0.0 +16182,38,263.5,31,0.0 +16182,42,14,39,0.0 +16182,8,40,11,0.0 +16182,37,26,30,0.0 +16182,48,12.75,48,0.0 +16182,12,38,49,0.0 +16182,71,21.5,6,0.0 +16182,32,32,38,0.0 +16182,41,9.65,47,0.0 +16182,40,18.4,42,0.0 +16182,64,33.25,38,0.0 +16182,61,28.5,22,0.0 +16182,51,53,37,0.0 +16182,29,123.79,11,0.0 +16182,17,39,26,0.0 +16183,42,14,43,0.0 +16183,12,38,17,0.0 +16183,50,16.25,20,0.0 +16184,32,32,36,0.0 +16184,48,12.75,17,0.0 +16184,14,23.25,40,0.0 +16184,69,36,22,0.0 +16184,33,2.5,48,0.0 +16184,56,38,34,0.0 +16184,47,9.5,33,0.0 +16185,25,14,32,0.0 +16185,45,9.5,11,0.0 +16185,39,18,23,0.0 +16185,36,19,4,0.0 +16185,73,15,41,0.0 +16185,29,123.79,17,0.0 +16185,42,14,23,0.0 +16185,32,32,21,0.0 +16185,4,22,32,0.0 +16185,64,33.25,9,0.0 +16185,37,26,44,0.0 +16185,8,40,2,0.0 +16185,6,25,22,0.0 +16185,12,38,3,0.0 +16185,49,20,32,0.0 +16185,14,23.25,3,0.0 +16185,75,7.75,18,0.0 +16185,15,15.5,24,0.0 +16185,21,10,4,0.0 +16185,54,7.45,13,0.0 +16185,50,16.25,27,0.0 +16185,65,21.05,19,0.0 +16185,20,81,38,0.0 +16185,51,53,47,0.0 +16185,38,263.5,9,0.0 +16185,77,13,32,0.0 +16185,3,10,14,0.0 +16185,33,2.5,3,0.0 +16185,43,46,4,0.0 +16185,44,19.45,34,0.0 +16185,27,43.9,11,0.0 +16185,16,17.45,13,0.0 +16185,66,17,45,0.0 +16185,71,21.5,45,0.0 +16185,34,14,9,0.0 +16185,63,43.9,6,0.0 +16185,70,15,10,0.0 +16185,2,19,23,0.0 +16186,8,40,12,0.0 +16186,6,25,30,0.0 +16186,54,7.45,32,0.0 +16186,28,45.6,50,0.0 +16186,73,15,22,0.0 +16186,47,9.5,24,0.0 +16186,69,36,13,0.0 +16186,17,39,31,0.0 +16186,7,30,48,0.0 +16186,44,19.45,15,0.0 +16186,77,13,48,0.0 +16186,39,18,19,0.0 +16186,19,9.2,29,0.0 +16186,20,81,30,0.0 +16186,14,23.25,1,0.0 +16186,41,9.65,28,0.0 +16186,21,10,13,0.0 +16186,18,62.5,26,0.0 +16186,27,43.9,11,0.0 +16186,42,14,38,0.0 +16186,50,16.25,26,0.0 +16186,23,9,45,0.0 +16186,49,20,30,0.0 +16186,55,24,40,0.0 +16186,68,12.5,27,0.0 +16186,46,12,33,0.0 +16186,72,34.8,21,0.0 +16186,37,26,22,0.0 +16186,48,12.75,24,0.0 +16186,76,18,50,0.0 +16186,33,2.5,6,0.0 +16186,75,7.75,48,0.0 +16186,51,53,39,0.0 +16186,3,10,37,0.0 +16186,9,97,11,0.0 +16186,25,14,40,0.0 +16186,43,46,40,0.0 +16186,26,31.23,46,0.0 +16186,4,22,39,0.0 +16186,22,21,40,0.0 +16186,65,21.05,42,0.0 +16186,32,32,38,0.0 +16186,35,18,17,0.0 +16186,36,19,43,0.0 +16186,67,14,42,0.0 +16186,16,17.45,11,0.0 +16186,11,21,18,0.0 +16186,30,25.89,41,0.0 +16186,40,18.4,47,0.0 +16186,58,13.25,15,0.0 +16186,59,55,1,0.0 +16186,53,32.8,37,0.0 +16186,13,6,14,0.0 +16186,34,14,5,0.0 +16186,52,7,40,0.0 +16186,38,263.5,41,0.0 +16186,2,19,20,0.0 +16186,1,18,43,0.0 +16186,63,43.9,37,0.0 +16186,57,19.5,35,0.0 +16186,5,21.35,17,0.0 +16186,56,38,9,0.0 +16186,29,123.79,47,0.0 +16186,71,21.5,33,0.0 +16186,15,15.5,18,0.0 +16186,66,17,24,0.0 +16186,31,12.5,36,0.0 +16186,60,34,48,0.0 +16186,12,38,2,0.0 +16186,24,4.5,48,0.0 +16186,10,31,27,0.0 +16186,74,10,6,0.0 +16186,45,9.5,35,0.0 +16186,62,49.3,42,0.0 +16187,11,21,27,0.0 +16187,24,4.5,48,0.0 +16187,64,33.25,22,0.0 +16187,33,2.5,46,0.0 +16187,12,38,25,0.0 +16187,57,19.5,30,0.0 +16187,27,43.9,13,0.0 +16187,8,40,41,0.0 +16187,40,18.4,20,0.0 +16187,25,14,13,0.0 +16187,66,17,14,0.0 +16187,37,26,31,0.0 +16187,58,13.25,46,0.0 +16187,1,18,47,0.0 +16187,54,7.45,2,0.0 +16187,48,12.75,3,0.0 +16187,72,34.8,34,0.0 +16187,30,25.89,11,0.0 +16187,61,28.5,1,0.0 +16187,35,18,24,0.0 +16187,17,39,7,0.0 +16187,18,62.5,32,0.0 +16187,26,31.23,13,0.0 +16187,4,22,46,0.0 +16187,39,18,24,0.0 +16187,9,97,16,0.0 +16187,68,12.5,29,0.0 +16187,77,13,29,0.0 +16187,7,30,17,0.0 +16187,36,19,10,0.0 +16187,52,7,32,0.0 +16187,3,10,23,0.0 +16187,51,53,39,0.0 +16187,10,31,17,0.0 +16187,14,23.25,38,0.0 +16187,20,81,11,0.0 +16187,49,20,18,0.0 +16187,74,10,35,0.0 +16187,62,49.3,1,0.0 +16187,71,21.5,30,0.0 +16187,43,46,43,0.0 +16187,44,19.45,47,0.0 +16187,16,17.45,39,0.0 +16187,38,263.5,41,0.0 +16188,41,9.65,37,0.0 +16188,66,17,18,0.0 +16188,76,18,3,0.0 +16188,31,12.5,1,0.0 +16188,54,7.45,34,0.0 +16188,77,13,38,0.0 +16188,72,34.8,42,0.0 +16188,62,49.3,44,0.0 +16188,70,15,49,0.0 +16188,71,21.5,27,0.0 +16188,1,18,2,0.0 +16188,39,18,30,0.0 +16188,47,9.5,47,0.0 +16188,4,22,18,0.0 +16188,26,31.23,5,0.0 +16188,16,17.45,29,0.0 +16188,46,12,4,0.0 +16188,30,25.89,1,0.0 +16188,15,15.5,9,0.0 +16188,40,18.4,23,0.0 +16188,44,19.45,19,0.0 +16188,21,10,42,0.0 +16188,50,16.25,17,0.0 +16188,36,19,6,0.0 +16188,35,18,33,0.0 +16188,11,21,40,0.0 +16188,34,14,43,0.0 +16188,60,34,37,0.0 +16188,58,13.25,21,0.0 +16188,51,53,49,0.0 +16188,59,55,20,0.0 +16188,55,24,34,0.0 +16188,57,19.5,44,0.0 +16188,7,30,30,0.0 +16188,5,21.35,19,0.0 +16188,75,7.75,34,0.0 +16188,20,81,42,0.0 +16188,52,7,9,0.0 +16188,48,12.75,20,0.0 +16188,22,21,39,0.0 +16188,25,14,49,0.0 +16188,8,40,2,0.0 +16188,14,23.25,36,0.0 +16188,42,14,15,0.0 +16188,73,15,8,0.0 +16188,28,45.6,38,0.0 +16188,33,2.5,20,0.0 +16189,31,12.5,9,0.0 +16189,1,18,5,0.0 +16189,55,24,8,0.0 +16189,27,43.9,47,0.0 +16189,25,14,29,0.0 +16189,18,62.5,11,0.0 +16189,57,19.5,40,0.0 +16189,58,13.25,30,0.0 +16189,44,19.45,42,0.0 +16189,36,19,26,0.0 +16189,4,22,38,0.0 +16189,67,14,16,0.0 +16190,56,38,50,0.0 +16190,9,97,12,0.0 +16190,10,31,22,0.0 +16190,40,18.4,14,0.0 +16190,54,7.45,27,0.0 +16190,21,10,10,0.0 +16190,34,14,49,0.0 +16190,74,10,37,0.0 +16190,55,24,10,0.0 +16190,28,45.6,21,0.0 +16190,62,49.3,26,0.0 +16190,1,18,46,0.0 +16190,61,28.5,17,0.0 +16190,65,21.05,46,0.0 +16190,58,13.25,29,0.0 +16190,29,123.79,24,0.0 +16190,47,9.5,15,0.0 +16190,2,19,4,0.0 +16190,19,9.2,17,0.0 +16190,16,17.45,17,0.0 +16190,45,9.5,42,0.0 +16190,36,19,29,0.0 +16190,31,12.5,28,0.0 +16190,5,21.35,39,0.0 +16190,39,18,36,0.0 +16190,24,4.5,25,0.0 +16190,23,9,33,0.0 +16190,51,53,30,0.0 +16190,25,14,19,0.0 +16190,20,81,14,0.0 +16190,26,31.23,17,0.0 +16190,13,6,13,0.0 +16190,32,32,24,0.0 +16190,8,40,1,0.0 +16190,44,19.45,24,0.0 +16190,60,34,11,0.0 +16190,17,39,33,0.0 +16190,30,25.89,4,0.0 +16190,69,36,35,0.0 +16190,59,55,18,0.0 +16191,18,62.5,37,0.0 +16191,36,19,29,0.0 +16191,25,14,49,0.0 +16191,9,97,30,0.0 +16191,12,38,33,0.0 +16191,21,10,23,0.0 +16191,2,19,36,0.0 +16191,8,40,9,0.0 +16191,61,28.5,38,0.0 +16191,34,14,15,0.0 +16191,31,12.5,11,0.0 +16191,49,20,14,0.0 +16191,46,12,4,0.0 +16191,35,18,2,0.0 +16191,41,9.65,40,0.0 +16191,15,15.5,7,0.0 +16191,57,19.5,34,0.0 +16191,16,17.45,27,0.0 +16191,77,13,47,0.0 +16191,58,13.25,8,0.0 +16191,42,14,11,0.0 +16191,28,45.6,6,0.0 +16191,63,43.9,20,0.0 +16191,5,21.35,41,0.0 +16191,76,18,9,0.0 +16191,74,10,46,0.0 +16191,59,55,28,0.0 +16191,68,12.5,8,0.0 +16191,72,34.8,24,0.0 +16191,51,53,39,0.0 +16191,43,46,27,0.0 +16191,70,15,12,0.0 +16191,24,4.5,26,0.0 +16191,39,18,38,0.0 +16191,44,19.45,24,0.0 +16191,1,18,6,0.0 +16191,32,32,19,0.0 +16191,13,6,12,0.0 +16191,38,263.5,30,0.0 +16191,45,9.5,31,0.0 +16191,19,9.2,28,0.0 +16191,60,34,28,0.0 +16191,55,24,18,0.0 +16191,73,15,30,0.0 +16191,14,23.25,4,0.0 +16191,50,16.25,12,0.0 +16191,56,38,44,0.0 +16191,40,18.4,21,0.0 +16191,33,2.5,6,0.0 +16191,23,9,20,0.0 +16191,7,30,11,0.0 +16191,29,123.79,4,0.0 +16191,37,26,49,0.0 +16191,69,36,44,0.0 +16191,47,9.5,41,0.0 +16191,53,32.8,9,0.0 +16191,22,21,5,0.0 +16191,11,21,27,0.0 +16191,20,81,43,0.0 +16191,75,7.75,18,0.0 +16191,71,21.5,35,0.0 +16191,3,10,8,0.0 +16191,6,25,9,0.0 +16192,76,18,25,0.0 +16192,41,9.65,45,0.0 +16192,18,62.5,32,0.0 +16192,70,15,8,0.0 +16192,31,12.5,49,0.0 +16192,24,4.5,13,0.0 +16192,14,23.25,37,0.0 +16192,55,24,2,0.0 +16192,52,7,5,0.0 +16192,1,18,35,0.0 +16192,35,18,47,0.0 +16192,22,21,28,0.0 +16192,58,13.25,28,0.0 +16192,67,14,8,0.0 +16192,47,9.5,30,0.0 +16192,43,46,16,0.0 +16192,21,10,22,0.0 +16192,71,21.5,37,0.0 +16192,39,18,48,0.0 +16192,11,21,35,0.0 +16192,74,10,49,0.0 +16192,27,43.9,22,0.0 +16192,33,2.5,8,0.0 +16192,45,9.5,40,0.0 +16192,42,14,30,0.0 +16192,2,19,35,0.0 +16192,60,34,30,0.0 +16192,51,53,40,0.0 +16192,68,12.5,35,0.0 +16192,29,123.79,48,0.0 +16192,66,17,30,0.0 +16192,56,38,41,0.0 +16192,48,12.75,8,0.0 +16192,17,39,5,0.0 +16192,40,18.4,2,0.0 +16192,49,20,25,0.0 +16192,30,25.89,9,0.0 +16192,37,26,18,0.0 +16192,3,10,22,0.0 +16192,19,9.2,33,0.0 +16192,46,12,47,0.0 +16192,16,17.45,23,0.0 +16192,15,15.5,19,0.0 +16192,53,32.8,25,0.0 +16193,74,10,48,0.0 +16193,47,9.5,16,0.0 +16193,16,17.45,8,0.0 +16193,69,36,28,0.0 +16193,28,45.6,13,0.0 +16193,14,23.25,17,0.0 +16193,61,28.5,48,0.0 +16193,76,18,41,0.0 +16193,77,13,40,0.0 +16193,65,21.05,13,0.0 +16193,63,43.9,35,0.0 +16193,43,46,40,0.0 +16193,51,53,33,0.0 +16193,54,7.45,14,0.0 +16193,48,12.75,48,0.0 +16193,34,14,5,0.0 +16193,21,10,35,0.0 +16193,9,97,28,0.0 +16194,77,13,5,0.0 +16194,74,10,6,0.0 +16194,60,34,28,0.0 +16194,75,7.75,30,0.0 +16194,44,19.45,35,0.0 +16194,50,16.25,5,0.0 +16194,39,18,24,0.0 +16194,56,38,42,0.0 +16194,36,19,50,0.0 +16194,4,22,48,0.0 +16194,67,14,7,0.0 +16194,32,32,26,0.0 +16194,66,17,7,0.0 +16194,47,9.5,19,0.0 +16194,13,6,44,0.0 +16194,63,43.9,1,0.0 +16194,11,21,48,0.0 +16194,42,14,13,0.0 +16194,43,46,40,0.0 +16194,21,10,50,0.0 +16194,10,31,32,0.0 +16194,54,7.45,42,0.0 +16194,46,12,39,0.0 +16194,31,12.5,2,0.0 +16194,45,9.5,27,0.0 +16194,33,2.5,23,0.0 +16194,3,10,2,0.0 +16194,49,20,33,0.0 +16194,73,15,44,0.0 +16194,68,12.5,25,0.0 +16194,22,21,21,0.0 +16194,70,15,15,0.0 +16194,64,33.25,4,0.0 +16194,29,123.79,7,0.0 +16194,71,21.5,35,0.0 +16194,16,17.45,24,0.0 +16194,17,39,39,0.0 +16194,15,15.5,49,0.0 +16194,48,12.75,12,0.0 +16194,27,43.9,45,0.0 +16194,72,34.8,49,0.0 +16194,8,40,26,0.0 +16194,51,53,45,0.0 +16194,65,21.05,30,0.0 +16194,30,25.89,3,0.0 +16194,9,97,30,0.0 +16194,26,31.23,16,0.0 +16194,52,7,14,0.0 +16194,24,4.5,3,0.0 +16194,34,14,10,0.0 +16194,2,19,5,0.0 +16194,20,81,1,0.0 +16194,61,28.5,36,0.0 +16194,38,263.5,47,0.0 +16194,69,36,38,0.0 +16194,53,32.8,14,0.0 +16194,41,9.65,3,0.0 +16194,14,23.25,35,0.0 +16194,19,9.2,38,0.0 +16194,7,30,11,0.0 +16194,58,13.25,36,0.0 +16194,18,62.5,18,0.0 +16194,35,18,16,0.0 +16194,6,25,50,0.0 +16194,62,49.3,18,0.0 +16194,59,55,33,0.0 +16194,57,19.5,3,0.0 +16194,25,14,22,0.0 +16194,12,38,29,0.0 +16194,1,18,26,0.0 +16195,49,20,4,0.0 +16195,42,14,18,0.0 +16195,72,34.8,40,0.0 +16195,58,13.25,19,0.0 +16195,40,18.4,34,0.0 +16195,70,15,12,0.0 +16195,35,18,43,0.0 +16195,39,18,17,0.0 +16195,24,4.5,21,0.0 +16195,41,9.65,44,0.0 +16195,25,14,32,0.0 +16195,56,38,6,0.0 +16195,46,12,32,0.0 +16195,18,62.5,2,0.0 +16195,67,14,25,0.0 +16195,7,30,30,0.0 +16195,63,43.9,15,0.0 +16195,51,53,32,0.0 +16195,28,45.6,10,0.0 +16195,8,40,28,0.0 +16195,52,7,43,0.0 +16195,77,13,3,0.0 +16196,65,21.05,36,0.0 +16196,12,38,31,0.0 +16196,71,21.5,11,0.0 +16196,48,12.75,4,0.0 +16196,62,49.3,19,0.0 +16196,51,53,5,0.0 +16196,43,46,47,0.0 +16196,56,38,29,0.0 +16196,45,9.5,29,0.0 +16196,21,10,3,0.0 +16196,2,19,6,0.0 +16196,64,33.25,45,0.0 +16196,18,62.5,35,0.0 +16196,69,36,36,0.0 +16196,38,263.5,8,0.0 +16196,39,18,19,0.0 +16196,52,7,13,0.0 +16196,26,31.23,48,0.0 +16196,24,4.5,3,0.0 +16196,19,9.2,19,0.0 +16196,33,2.5,35,0.0 +16196,40,18.4,48,0.0 +16196,15,15.5,50,0.0 +16196,53,32.8,30,0.0 +16196,76,18,34,0.0 +16196,34,14,38,0.0 +16196,57,19.5,27,0.0 +16196,75,7.75,4,0.0 +16196,70,15,20,0.0 +16196,66,17,19,0.0 +16196,28,45.6,35,0.0 +16197,12,38,30,0.0 +16197,30,25.89,41,0.0 +16197,29,123.79,35,0.0 +16197,52,7,34,0.0 +16197,58,13.25,34,0.0 +16197,72,34.8,50,0.0 +16197,11,21,45,0.0 +16197,48,12.75,40,0.0 +16197,60,34,6,0.0 +16197,40,18.4,8,0.0 +16197,32,32,34,0.0 +16197,62,49.3,19,0.0 +16197,68,12.5,4,0.0 +16197,19,9.2,10,0.0 +16197,54,7.45,8,0.0 +16197,3,10,5,0.0 +16197,64,33.25,48,0.0 +16197,24,4.5,45,0.0 +16197,75,7.75,6,0.0 +16197,38,263.5,40,0.0 +16197,56,38,46,0.0 +16197,14,23.25,13,0.0 +16197,46,12,18,0.0 +16197,47,9.5,22,0.0 +16197,42,14,45,0.0 +16197,33,2.5,8,0.0 +16197,69,36,50,0.0 +16197,55,24,27,0.0 +16197,22,21,35,0.0 +16197,6,25,23,0.0 +16197,41,9.65,7,0.0 +16197,17,39,50,0.0 +16197,10,31,4,0.0 +16197,73,15,13,0.0 +16197,31,12.5,36,0.0 +16197,49,20,2,0.0 +16197,57,19.5,43,0.0 +16197,5,21.35,35,0.0 +16197,8,40,43,0.0 +16197,20,81,7,0.0 +16197,76,18,8,0.0 +16197,9,97,17,0.0 +16197,70,15,11,0.0 +16197,2,19,21,0.0 +16197,61,28.5,11,0.0 +16197,18,62.5,19,0.0 +16197,28,45.6,38,0.0 +16197,15,15.5,30,0.0 +16197,16,17.45,5,0.0 +16197,51,53,17,0.0 +16197,67,14,2,0.0 +16197,1,18,1,0.0 +16197,45,9.5,8,0.0 +16197,74,10,10,0.0 +16197,50,16.25,36,0.0 +16197,35,18,2,0.0 +16197,63,43.9,16,0.0 +16197,23,9,9,0.0 +16197,21,10,33,0.0 +16197,65,21.05,37,0.0 +16197,26,31.23,10,0.0 +16197,37,26,2,0.0 +16197,25,14,40,0.0 +16197,34,14,20,0.0 +16197,59,55,38,0.0 +16197,36,19,21,0.0 +16197,39,18,31,0.0 +16197,71,21.5,41,0.0 +16197,77,13,46,0.0 +16197,66,17,29,0.0 +16198,3,10,10,0.0 +16198,21,10,46,0.0 +16198,68,12.5,44,0.0 +16198,8,40,46,0.0 +16198,70,15,49,0.0 +16198,9,97,12,0.0 +16198,4,22,4,0.0 +16198,22,21,28,0.0 +16198,26,31.23,28,0.0 +16198,5,21.35,18,0.0 +16198,2,19,19,0.0 +16198,49,20,31,0.0 +16198,6,25,31,0.0 +16198,56,38,46,0.0 +16198,38,263.5,49,0.0 +16198,29,123.79,26,0.0 +16198,57,19.5,26,0.0 +16198,45,9.5,27,0.0 +16198,37,26,5,0.0 +16198,53,32.8,12,0.0 +16198,15,15.5,30,0.0 +16198,60,34,36,0.0 +16198,55,24,11,0.0 +16198,1,18,50,0.0 +16198,46,12,27,0.0 +16198,76,18,17,0.0 +16198,73,15,39,0.0 +16198,40,18.4,41,0.0 +16198,58,13.25,47,0.0 +16198,17,39,5,0.0 +16198,63,43.9,38,0.0 +16198,59,55,22,0.0 +16198,18,62.5,46,0.0 +16198,27,43.9,14,0.0 +16198,74,10,48,0.0 +16198,48,12.75,6,0.0 +16198,75,7.75,15,0.0 +16199,6,25,40,0.0 +16199,27,43.9,35,0.0 +16199,48,12.75,48,0.0 +16199,17,39,47,0.0 +16199,25,14,6,0.0 +16199,32,32,16,0.0 +16199,41,9.65,19,0.0 +16199,13,6,12,0.0 +16199,19,9.2,27,0.0 +16199,7,30,18,0.0 +16199,63,43.9,13,0.0 +16199,74,10,21,0.0 +16199,9,97,5,0.0 +16199,22,21,33,0.0 +16199,42,14,3,0.0 +16199,59,55,1,0.0 +16199,28,45.6,44,0.0 +16199,16,17.45,14,0.0 +16199,21,10,43,0.0 +16199,18,62.5,32,0.0 +16199,50,16.25,2,0.0 +16199,56,38,26,0.0 +16200,18,62.5,2,0.0 +16200,72,34.8,9,0.0 +16200,10,31,44,0.0 +16200,47,9.5,40,0.0 +16200,31,12.5,12,0.0 +16200,8,40,20,0.0 +16200,76,18,33,0.0 +16200,69,36,48,0.0 +16200,55,24,4,0.0 +16200,9,97,27,0.0 +16200,71,21.5,35,0.0 +16200,63,43.9,12,0.0 +16200,24,4.5,16,0.0 +16200,75,7.75,31,0.0 +16200,15,15.5,50,0.0 +16200,38,263.5,46,0.0 +16200,59,55,15,0.0 +16200,36,19,35,0.0 +16200,66,17,36,0.0 +16200,1,18,4,0.0 +16200,33,2.5,31,0.0 +16200,44,19.45,48,0.0 +16200,53,32.8,31,0.0 +16200,43,46,32,0.0 +16200,77,13,40,0.0 +16200,6,25,25,0.0 +16200,3,10,44,0.0 +16200,70,15,36,0.0 +16200,30,25.89,38,0.0 +16200,51,53,34,0.0 +16200,54,7.45,13,0.0 +16200,5,21.35,28,0.0 +16200,41,9.65,45,0.0 +16200,49,20,41,0.0 +16200,48,12.75,15,0.0 +16200,35,18,50,0.0 +16200,42,14,18,0.0 +16200,19,9.2,16,0.0 +16200,61,28.5,22,0.0 +16200,64,33.25,29,0.0 +16200,34,14,1,0.0 +16200,50,16.25,24,0.0 +16200,7,30,46,0.0 +16200,16,17.45,49,0.0 +16200,28,45.6,11,0.0 +16200,23,9,14,0.0 +16200,11,21,3,0.0 +16200,17,39,10,0.0 +16200,13,6,9,0.0 +16200,29,123.79,28,0.0 +16200,2,19,50,0.0 +16200,56,38,46,0.0 +16200,68,12.5,25,0.0 +16200,58,13.25,13,0.0 +16200,20,81,40,0.0 +16200,62,49.3,23,0.0 +16200,12,38,30,0.0 +16200,39,18,43,0.0 +16200,52,7,38,0.0 +16200,74,10,48,0.0 +16200,26,31.23,14,0.0 +16200,65,21.05,45,0.0 +16200,27,43.9,22,0.0 +16200,73,15,38,0.0 +16200,60,34,18,0.0 +16200,37,26,7,0.0 +16200,40,18.4,40,0.0 +16200,4,22,14,0.0 +16201,37,26,12,0.0 +16201,77,13,5,0.0 +16201,16,17.45,35,0.0 +16201,42,14,23,0.0 +16201,40,18.4,19,0.0 +16201,65,21.05,39,0.0 +16201,24,4.5,1,0.0 +16201,21,10,22,0.0 +16201,10,31,43,0.0 +16201,41,9.65,21,0.0 +16201,71,21.5,2,0.0 +16201,56,38,25,0.0 +16201,17,39,26,0.0 +16201,3,10,20,0.0 +16201,61,28.5,45,0.0 +16201,19,9.2,9,0.0 +16201,20,81,3,0.0 +16201,72,34.8,6,0.0 +16201,49,20,6,0.0 +16201,34,14,38,0.0 +16201,36,19,21,0.0 +16201,43,46,23,0.0 +16201,30,25.89,22,0.0 +16201,22,21,30,0.0 +16201,32,32,23,0.0 +16201,27,43.9,5,0.0 +16201,18,62.5,29,0.0 +16201,2,19,21,0.0 +16201,51,53,36,0.0 +16201,35,18,22,0.0 +16201,58,13.25,5,0.0 +16201,7,30,43,0.0 +16201,50,16.25,6,0.0 +16201,33,2.5,24,0.0 +16201,11,21,27,0.0 +16201,47,9.5,36,0.0 +16201,68,12.5,39,0.0 +16201,52,7,14,0.0 +16201,62,49.3,39,0.0 +16201,28,45.6,35,0.0 +16201,39,18,23,0.0 +16201,60,34,49,0.0 +16201,23,9,5,0.0 +16201,44,19.45,3,0.0 +16201,64,33.25,39,0.0 +16201,75,7.75,47,0.0 +16201,73,15,45,0.0 +16201,6,25,46,0.0 +16201,48,12.75,6,0.0 +16201,54,7.45,37,0.0 +16201,5,21.35,15,0.0 +16201,53,32.8,31,0.0 +16201,25,14,35,0.0 +16201,9,97,19,0.0 +16201,57,19.5,37,0.0 +16201,66,17,4,0.0 +16201,1,18,39,0.0 +16201,55,24,17,0.0 +16201,76,18,42,0.0 +16201,12,38,44,0.0 +16201,4,22,40,0.0 +16201,67,14,11,0.0 +16201,74,10,16,0.0 +16201,45,9.5,20,0.0 +16201,63,43.9,3,0.0 +16201,14,23.25,1,0.0 +16201,31,12.5,1,0.0 +16201,13,6,46,0.0 +16201,15,15.5,44,0.0 +16201,46,12,37,0.0 +16201,8,40,2,0.0 +16201,59,55,19,0.0 +16202,14,23.25,28,0.0 +16202,73,15,1,0.0 +16202,29,123.79,41,0.0 +16202,5,21.35,18,0.0 +16202,67,14,19,0.0 +16202,13,6,12,0.0 +16202,54,7.45,24,0.0 +16202,46,12,18,0.0 +16202,61,28.5,3,0.0 +16202,23,9,29,0.0 +16202,18,62.5,44,0.0 +16202,39,18,45,0.0 +16202,56,38,16,0.0 +16202,77,13,20,0.0 +16202,50,16.25,17,0.0 +16202,70,15,40,0.0 +16202,43,46,39,0.0 +16202,33,2.5,10,0.0 +16202,9,97,38,0.0 +16202,64,33.25,10,0.0 +16202,51,53,36,0.0 +16202,17,39,3,0.0 +16202,25,14,6,0.0 +16202,71,21.5,45,0.0 +16202,69,36,23,0.0 +16202,26,31.23,47,0.0 +16202,30,25.89,46,0.0 +16202,40,18.4,47,0.0 +16202,16,17.45,35,0.0 +16202,65,21.05,32,0.0 +16202,37,26,37,0.0 +16202,11,21,2,0.0 +16202,76,18,22,0.0 +16202,53,32.8,25,0.0 +16202,22,21,19,0.0 +16202,4,22,2,0.0 +16202,28,45.6,13,0.0 +16202,45,9.5,47,0.0 +16202,68,12.5,2,0.0 +16202,60,34,47,0.0 +16202,49,20,41,0.0 +16202,21,10,33,0.0 +16202,52,7,14,0.0 +16202,1,18,9,0.0 +16202,8,40,15,0.0 +16202,15,15.5,14,0.0 +16202,31,12.5,7,0.0 +16202,57,19.5,28,0.0 +16202,36,19,41,0.0 +16202,34,14,42,0.0 +16202,74,10,17,0.0 +16202,63,43.9,4,0.0 +16202,10,31,12,0.0 +16203,20,81,12,0.0 +16203,51,53,19,0.0 +16203,43,46,38,0.0 +16203,12,38,34,0.0 +16203,66,17,27,0.0 +16203,76,18,45,0.0 +16203,47,9.5,31,0.0 +16203,60,34,49,0.0 +16203,69,36,39,0.0 +16203,26,31.23,35,0.0 +16203,42,14,31,0.0 +16203,24,4.5,30,0.0 +16203,56,38,2,0.0 +16203,64,33.25,34,0.0 +16203,8,40,27,0.0 +16203,46,12,13,0.0 +16203,49,20,50,0.0 +16203,19,9.2,22,0.0 +16203,11,21,26,0.0 +16203,7,30,33,0.0 +16203,34,14,6,0.0 +16203,58,13.25,8,0.0 +16203,59,55,2,0.0 +16203,77,13,48,0.0 +16203,50,16.25,26,0.0 +16203,48,12.75,1,0.0 +16203,16,17.45,48,0.0 +16203,74,10,37,0.0 +16203,70,15,21,0.0 +16203,3,10,39,0.0 +16203,45,9.5,32,0.0 +16203,36,19,22,0.0 +16203,21,10,29,0.0 +16203,38,263.5,8,0.0 +16203,75,7.75,13,0.0 +16203,30,25.89,6,0.0 +16203,72,34.8,34,0.0 +16203,6,25,39,0.0 +16203,71,21.5,13,0.0 +16203,53,32.8,21,0.0 +16203,37,26,9,0.0 +16203,28,45.6,16,0.0 +16203,4,22,2,0.0 +16203,18,62.5,45,0.0 +16203,2,19,41,0.0 +16203,44,19.45,48,0.0 +16203,10,31,29,0.0 +16203,5,21.35,42,0.0 +16203,35,18,11,0.0 +16203,52,7,23,0.0 +16203,14,23.25,1,0.0 +16203,23,9,37,0.0 +16203,67,14,46,0.0 +16203,73,15,47,0.0 +16203,57,19.5,35,0.0 +16203,62,49.3,11,0.0 +16203,39,18,38,0.0 +16203,31,12.5,11,0.0 +16203,27,43.9,7,0.0 +16203,65,21.05,30,0.0 +16203,17,39,32,0.0 +16203,40,18.4,6,0.0 +16203,25,14,23,0.0 +16203,68,12.5,40,0.0 +16203,22,21,31,0.0 +16203,9,97,37,0.0 +16203,33,2.5,45,0.0 +16203,1,18,47,0.0 +16203,63,43.9,17,0.0 +16203,55,24,43,0.0 +16203,13,6,37,0.0 +16203,29,123.79,6,0.0 +16203,61,28.5,1,0.0 +16203,54,7.45,26,0.0 +16203,15,15.5,37,0.0 +16204,47,9.5,24,0.0 +16204,61,28.5,39,0.0 +16204,66,17,42,0.0 +16204,70,15,3,0.0 +16204,44,19.45,36,0.0 +16204,7,30,3,0.0 +16204,36,19,11,0.0 +16204,31,12.5,14,0.0 +16204,75,7.75,6,0.0 +16204,14,23.25,28,0.0 +16204,77,13,23,0.0 +16204,24,4.5,36,0.0 +16204,63,43.9,15,0.0 +16204,9,97,47,0.0 +16204,39,18,42,0.0 +16204,41,9.65,39,0.0 +16204,37,26,16,0.0 +16204,56,38,34,0.0 +16204,73,15,17,0.0 +16204,51,53,8,0.0 +16204,11,21,28,0.0 +16204,46,12,20,0.0 +16204,57,19.5,17,0.0 +16204,26,31.23,37,0.0 +16204,38,263.5,36,0.0 +16204,10,31,44,0.0 +16204,30,25.89,49,0.0 +16204,29,123.79,14,0.0 +16204,18,62.5,39,0.0 +16204,27,43.9,38,0.0 +16204,16,17.45,44,0.0 +16204,1,18,44,0.0 +16204,69,36,44,0.0 +16204,74,10,4,0.0 +16204,62,49.3,11,0.0 +16204,58,13.25,43,0.0 +16204,55,24,34,0.0 +16204,64,33.25,9,0.0 +16204,25,14,42,0.0 +16204,17,39,28,0.0 +16204,2,19,38,0.0 +16204,72,34.8,40,0.0 +16205,13,6,49,0.0 +16205,14,23.25,10,0.0 +16205,42,14,45,0.0 +16205,3,10,30,0.0 +16205,47,9.5,17,0.0 +16205,23,9,49,0.0 +16205,40,18.4,43,0.0 +16205,70,15,7,0.0 +16205,44,19.45,9,0.0 +16205,27,43.9,15,0.0 +16205,28,45.6,11,0.0 +16205,46,12,10,0.0 +16205,8,40,47,0.0 +16205,51,53,32,0.0 +16205,73,15,24,0.0 +16205,31,12.5,9,0.0 +16205,43,46,2,0.0 +16205,58,13.25,10,0.0 +16205,52,7,45,0.0 +16205,64,33.25,49,0.0 +16205,69,36,13,0.0 +16205,2,19,31,0.0 +16205,55,24,12,0.0 +16205,33,2.5,18,0.0 +16205,24,4.5,40,0.0 +16205,54,7.45,46,0.0 +16205,6,25,31,0.0 +16205,12,38,41,0.0 +16205,30,25.89,18,0.0 +16205,71,21.5,26,0.0 +16205,32,32,33,0.0 +16205,10,31,17,0.0 +16205,48,12.75,2,0.0 +16205,49,20,50,0.0 +16205,59,55,38,0.0 +16205,36,19,28,0.0 +16205,74,10,42,0.0 +16205,26,31.23,6,0.0 +16205,37,26,44,0.0 +16205,65,21.05,41,0.0 +16205,15,15.5,48,0.0 +16205,35,18,13,0.0 +16205,16,17.45,14,0.0 +16205,21,10,5,0.0 +16205,11,21,40,0.0 +16205,25,14,6,0.0 +16205,53,32.8,48,0.0 +16205,77,13,16,0.0 +16205,22,21,50,0.0 +16205,5,21.35,8,0.0 +16205,63,43.9,4,0.0 +16205,68,12.5,17,0.0 +16205,20,81,46,0.0 +16205,61,28.5,50,0.0 +16205,19,9.2,6,0.0 +16205,57,19.5,37,0.0 +16205,62,49.3,36,0.0 +16205,18,62.5,49,0.0 +16205,38,263.5,30,0.0 +16205,72,34.8,7,0.0 +16205,75,7.75,39,0.0 +16205,66,17,50,0.0 +16205,60,34,12,0.0 +16205,39,18,32,0.0 +16205,1,18,46,0.0 +16205,67,14,46,0.0 +16205,17,39,33,0.0 +16205,29,123.79,9,0.0 +16205,45,9.5,44,0.0 +16205,50,16.25,10,0.0 +16205,34,14,22,0.0 +16205,7,30,17,0.0 +16205,4,22,8,0.0 +16205,56,38,4,0.0 +16205,41,9.65,46,0.0 +16205,76,18,10,0.0 +16205,9,97,3,0.0 +16206,7,30,47,0.0 +16206,47,9.5,28,0.0 +16206,28,45.6,24,0.0 +16206,16,17.45,46,0.0 +16206,26,31.23,3,0.0 +16206,71,21.5,20,0.0 +16206,50,16.25,18,0.0 +16206,9,97,11,0.0 +16206,32,32,50,0.0 +16206,2,19,10,0.0 +16206,76,18,48,0.0 +16206,22,21,42,0.0 +16206,12,38,22,0.0 +16206,64,33.25,8,0.0 +16206,46,12,31,0.0 +16206,74,10,35,0.0 +16206,72,34.8,5,0.0 +16206,34,14,47,0.0 +16206,61,28.5,11,0.0 +16206,52,7,41,0.0 +16206,20,81,8,0.0 +16206,17,39,40,0.0 +16206,53,32.8,44,0.0 +16206,6,25,31,0.0 +16206,59,55,4,0.0 +16206,36,19,18,0.0 +16206,41,9.65,6,0.0 +16206,33,2.5,37,0.0 +16206,25,14,24,0.0 +16206,69,36,11,0.0 +16206,40,18.4,36,0.0 +16206,27,43.9,38,0.0 +16206,68,12.5,46,0.0 +16206,15,15.5,21,0.0 +16206,56,38,13,0.0 +16206,57,19.5,43,0.0 +16206,42,14,18,0.0 +16206,60,34,30,0.0 +16206,24,4.5,28,0.0 +16206,58,13.25,13,0.0 +16207,25,14,30,0.0 +16207,21,10,12,0.0 +16207,60,34,39,0.0 +16207,2,19,44,0.0 +16207,17,39,23,0.0 +16207,68,12.5,9,0.0 +16207,5,21.35,21,0.0 +16207,57,19.5,18,0.0 +16207,53,32.8,8,0.0 +16207,62,49.3,16,0.0 +16207,26,31.23,14,0.0 +16207,40,18.4,8,0.0 +16207,59,55,10,0.0 +16207,38,263.5,22,0.0 +16207,37,26,40,0.0 +16207,63,43.9,26,0.0 +16207,1,18,43,0.0 +16207,51,53,24,0.0 +16207,15,15.5,43,0.0 +16207,32,32,40,0.0 +16207,71,21.5,41,0.0 +16207,50,16.25,47,0.0 +16207,35,18,29,0.0 +16207,77,13,33,0.0 +16207,3,10,21,0.0 +16207,64,33.25,6,0.0 +16207,9,97,48,0.0 +16207,45,9.5,38,0.0 +16207,72,34.8,22,0.0 +16207,20,81,15,0.0 +16207,46,12,21,0.0 +16207,65,21.05,38,0.0 +16207,16,17.45,11,0.0 +16207,29,123.79,43,0.0 +16207,66,17,39,0.0 +16207,18,62.5,41,0.0 +16207,33,2.5,9,0.0 +16207,43,46,43,0.0 +16207,19,9.2,37,0.0 +16207,56,38,17,0.0 +16207,49,20,39,0.0 +16207,6,25,44,0.0 +16207,54,7.45,44,0.0 +16207,48,12.75,8,0.0 +16207,73,15,34,0.0 +16207,31,12.5,39,0.0 +16207,76,18,3,0.0 +16207,12,38,1,0.0 +16207,39,18,40,0.0 +16207,14,23.25,19,0.0 +16207,42,14,7,0.0 +16207,7,30,24,0.0 +16207,34,14,25,0.0 +16208,68,12.5,7,0.0 +16208,1,18,10,0.0 +16208,27,43.9,16,0.0 +16208,2,19,1,0.0 +16208,48,12.75,8,0.0 +16208,9,97,40,0.0 +16208,49,20,33,0.0 +16208,17,39,19,0.0 +16208,38,263.5,32,0.0 +16208,15,15.5,46,0.0 +16208,74,10,20,0.0 +16208,59,55,31,0.0 +16208,39,18,22,0.0 +16208,31,12.5,44,0.0 +16208,33,2.5,23,0.0 +16208,24,4.5,31,0.0 +16208,3,10,19,0.0 +16208,16,17.45,30,0.0 +16208,11,21,50,0.0 +16208,58,13.25,43,0.0 +16208,77,13,38,0.0 +16208,21,10,19,0.0 +16208,18,62.5,33,0.0 +16208,53,32.8,10,0.0 +16208,25,14,39,0.0 +16208,36,19,13,0.0 +16208,32,32,43,0.0 +16208,8,40,20,0.0 +16208,54,7.45,8,0.0 +16208,7,30,2,0.0 +16208,26,31.23,34,0.0 +16208,5,21.35,38,0.0 +16208,22,21,9,0.0 +16208,14,23.25,20,0.0 +16208,43,46,3,0.0 +16208,72,34.8,31,0.0 +16208,28,45.6,45,0.0 +16208,55,24,11,0.0 +16208,46,12,49,0.0 +16208,12,38,11,0.0 +16208,40,18.4,45,0.0 +16208,65,21.05,6,0.0 +16208,20,81,1,0.0 +16208,45,9.5,35,0.0 +16208,76,18,12,0.0 +16208,62,49.3,26,0.0 +16208,4,22,38,0.0 +16208,13,6,7,0.0 +16208,63,43.9,2,0.0 +16209,71,21.5,47,0.0 +16209,40,18.4,40,0.0 +16209,26,31.23,37,0.0 +16209,46,12,27,0.0 +16209,32,32,23,0.0 +16209,73,15,31,0.0 +16209,6,25,17,0.0 +16209,42,14,15,0.0 +16209,2,19,14,0.0 +16209,43,46,16,0.0 +16209,25,14,24,0.0 +16209,17,39,27,0.0 +16209,9,97,15,0.0 +16209,4,22,46,0.0 +16209,11,21,40,0.0 +16209,15,15.5,23,0.0 +16209,36,19,29,0.0 +16209,44,19.45,5,0.0 +16209,59,55,50,0.0 +16209,76,18,27,0.0 +16209,18,62.5,36,0.0 +16209,34,14,1,0.0 +16209,3,10,6,0.0 +16209,75,7.75,47,0.0 +16209,10,31,16,0.0 +16210,66,17,48,0.0 +16210,43,46,1,0.0 +16210,7,30,18,0.0 +16210,50,16.25,50,0.0 +16210,19,9.2,45,0.0 +16210,6,25,22,0.0 +16210,52,7,14,0.0 +16210,49,20,7,0.0 +16210,11,21,41,0.0 +16210,27,43.9,35,0.0 +16210,41,9.65,32,0.0 +16210,69,36,46,0.0 +16210,30,25.89,35,0.0 +16210,13,6,49,0.0 +16210,48,12.75,31,0.0 +16210,2,19,9,0.0 +16210,68,12.5,5,0.0 +16210,65,21.05,1,0.0 +16210,67,14,38,0.0 +16210,72,34.8,12,0.0 +16210,51,53,27,0.0 +16210,26,31.23,17,0.0 +16210,62,49.3,31,0.0 +16210,76,18,1,0.0 +16210,32,32,12,0.0 +16210,40,18.4,33,0.0 +16210,29,123.79,37,0.0 +16210,28,45.6,45,0.0 +16210,45,9.5,39,0.0 +16210,71,21.5,49,0.0 +16210,46,12,43,0.0 +16210,39,18,24,0.0 +16210,25,14,45,0.0 +16210,18,62.5,15,0.0 +16210,35,18,13,0.0 +16210,63,43.9,32,0.0 +16210,17,39,13,0.0 +16210,22,21,1,0.0 +16210,56,38,26,0.0 +16210,42,14,42,0.0 +16210,59,55,10,0.0 +16210,31,12.5,46,0.0 +16210,37,26,33,0.0 +16210,24,4.5,41,0.0 +16210,44,19.45,42,0.0 +16210,47,9.5,16,0.0 +16210,4,22,7,0.0 +16210,14,23.25,2,0.0 +16210,9,97,46,0.0 +16210,36,19,5,0.0 +16210,12,38,17,0.0 +16210,75,7.75,44,0.0 +16210,15,15.5,21,0.0 +16210,74,10,30,0.0 +16210,5,21.35,38,0.0 +16210,64,33.25,15,0.0 +16210,77,13,48,0.0 +16210,57,19.5,2,0.0 +16210,16,17.45,29,0.0 +16210,20,81,37,0.0 +16211,19,9.2,25,0.0 +16211,1,18,34,0.0 +16211,73,15,39,0.0 +16211,23,9,38,0.0 +16211,16,17.45,1,0.0 +16211,62,49.3,18,0.0 +16211,22,21,35,0.0 +16211,34,14,15,0.0 +16211,20,81,37,0.0 +16211,50,16.25,39,0.0 +16211,7,30,8,0.0 +16211,43,46,11,0.0 +16211,42,14,22,0.0 +16211,57,19.5,50,0.0 +16211,53,32.8,49,0.0 +16211,24,4.5,5,0.0 +16211,56,38,25,0.0 +16211,13,6,43,0.0 +16211,4,22,17,0.0 +16211,2,19,23,0.0 +16211,61,28.5,16,0.0 +16211,46,12,43,0.0 +16211,29,123.79,28,0.0 +16211,68,12.5,27,0.0 +16211,6,25,18,0.0 +16211,55,24,31,0.0 +16211,11,21,30,0.0 +16211,71,21.5,19,0.0 +16211,36,19,31,0.0 +16211,38,263.5,21,0.0 +16211,41,9.65,48,0.0 +16211,21,10,33,0.0 +16212,16,17.45,41,0.0 +16212,13,6,49,0.0 +16212,18,62.5,24,0.0 +16212,9,97,39,0.0 +16212,56,38,45,0.0 +16212,11,21,2,0.0 +16212,14,23.25,11,0.0 +16212,17,39,6,0.0 +16212,43,46,37,0.0 +16212,27,43.9,7,0.0 +16212,72,34.8,35,0.0 +16212,32,32,33,0.0 +16212,62,49.3,28,0.0 +16212,6,25,38,0.0 +16212,52,7,11,0.0 +16212,34,14,50,0.0 +16212,50,16.25,3,0.0 +16212,25,14,40,0.0 +16212,75,7.75,48,0.0 +16212,10,31,14,0.0 +16212,22,21,38,0.0 +16212,41,9.65,30,0.0 +16212,24,4.5,23,0.0 +16212,1,18,30,0.0 +16212,5,21.35,3,0.0 +16212,39,18,16,0.0 +16212,44,19.45,24,0.0 +16212,59,55,9,0.0 +16212,69,36,4,0.0 +16212,53,32.8,49,0.0 +16212,42,14,41,0.0 +16212,8,40,39,0.0 +16212,73,15,26,0.0 +16212,77,13,44,0.0 +16212,33,2.5,1,0.0 +16212,74,10,20,0.0 +16212,58,13.25,8,0.0 +16212,12,38,3,0.0 +16212,54,7.45,27,0.0 +16212,76,18,37,0.0 +16212,21,10,8,0.0 +16212,47,9.5,24,0.0 +16212,15,15.5,13,0.0 +16212,64,33.25,37,0.0 +16212,30,25.89,3,0.0 +16212,19,9.2,20,0.0 +16212,35,18,10,0.0 +16212,63,43.9,37,0.0 +16212,28,45.6,10,0.0 +16212,55,24,9,0.0 +16212,60,34,15,0.0 +16212,65,21.05,29,0.0 +16212,67,14,42,0.0 +16212,4,22,31,0.0 +16212,48,12.75,13,0.0 +16212,51,53,19,0.0 +16212,61,28.5,22,0.0 +16212,68,12.5,37,0.0 +16212,71,21.5,20,0.0 +16212,57,19.5,32,0.0 +16212,20,81,40,0.0 +16212,29,123.79,40,0.0 +16212,66,17,26,0.0 +16212,37,26,4,0.0 +16212,23,9,19,0.0 +16212,7,30,8,0.0 +16212,36,19,17,0.0 +16212,70,15,34,0.0 +16212,40,18.4,29,0.0 +16212,3,10,2,0.0 +16213,57,19.5,9,0.0 +16213,77,13,48,0.0 +16213,50,16.25,18,0.0 +16213,16,17.45,11,0.0 +16213,5,21.35,23,0.0 +16213,26,31.23,24,0.0 +16213,65,21.05,11,0.0 +16213,75,7.75,13,0.0 +16213,33,2.5,5,0.0 +16213,2,19,27,0.0 +16213,7,30,22,0.0 +16213,17,39,45,0.0 +16213,47,9.5,16,0.0 +16213,21,10,19,0.0 +16213,20,81,45,0.0 +16213,55,24,49,0.0 +16213,3,10,4,0.0 +16213,37,26,14,0.0 +16213,45,9.5,16,0.0 +16213,68,12.5,1,0.0 +16213,42,14,49,0.0 +16213,31,12.5,49,0.0 +16213,4,22,44,0.0 +16213,28,45.6,30,0.0 +16213,36,19,7,0.0 +16213,61,28.5,15,0.0 +16213,73,15,33,0.0 +16213,56,38,19,0.0 +16213,71,21.5,41,0.0 +16213,76,18,11,0.0 +16213,11,21,7,0.0 +16213,9,97,35,0.0 +16213,34,14,20,0.0 +16214,18,62.5,11,0.0 +16214,30,25.89,49,0.0 +16214,22,21,50,0.0 +16214,12,38,12,0.0 +16214,54,7.45,24,0.0 +16214,65,21.05,49,0.0 +16214,19,9.2,26,0.0 +16214,14,23.25,4,0.0 +16214,59,55,27,0.0 +16214,21,10,46,0.0 +16214,33,2.5,20,0.0 +16214,45,9.5,25,0.0 +16214,56,38,29,0.0 +16214,3,10,20,0.0 +16214,77,13,35,0.0 +16214,5,21.35,50,0.0 +16214,20,81,37,0.0 +16214,2,19,32,0.0 +16214,75,7.75,25,0.0 +16214,53,32.8,33,0.0 +16214,23,9,46,0.0 +16214,39,18,34,0.0 +16214,72,34.8,30,0.0 +16214,38,263.5,22,0.0 +16214,70,15,21,0.0 +16214,29,123.79,17,0.0 +16214,60,34,3,0.0 +16214,15,15.5,6,0.0 +16214,50,16.25,16,0.0 +16214,6,25,35,0.0 +16214,10,31,43,0.0 +16214,9,97,46,0.0 +16214,40,18.4,42,0.0 +16214,26,31.23,19,0.0 +16214,24,4.5,49,0.0 +16214,35,18,23,0.0 +16214,74,10,45,0.0 +16214,25,14,13,0.0 +16214,69,36,8,0.0 +16214,27,43.9,36,0.0 +16214,55,24,24,0.0 +16214,11,21,12,0.0 +16214,44,19.45,37,0.0 +16214,31,12.5,49,0.0 +16214,58,13.25,4,0.0 +16214,17,39,14,0.0 +16214,8,40,49,0.0 +16214,64,33.25,37,0.0 +16214,1,18,45,0.0 +16214,71,21.5,19,0.0 +16214,48,12.75,26,0.0 +16214,4,22,30,0.0 +16214,51,53,11,0.0 +16214,68,12.5,20,0.0 +16214,46,12,12,0.0 +16215,24,4.5,14,0.0 +16215,22,21,19,0.0 +16215,39,18,9,0.0 +16215,28,45.6,33,0.0 +16215,16,17.45,25,0.0 +16215,54,7.45,38,0.0 +16215,4,22,20,0.0 +16215,70,15,11,0.0 +16215,34,14,41,0.0 +16215,19,9.2,3,0.0 +16215,31,12.5,38,0.0 +16215,61,28.5,49,0.0 +16215,14,23.25,29,0.0 +16215,68,12.5,17,0.0 +16215,10,31,50,0.0 +16215,38,263.5,32,0.0 +16215,62,49.3,11,0.0 +16215,6,25,50,0.0 +16215,77,13,20,0.0 +16215,35,18,18,0.0 +16215,59,55,5,0.0 +16215,72,34.8,27,0.0 +16215,48,12.75,45,0.0 +16215,37,26,41,0.0 +16215,76,18,12,0.0 +16215,25,14,35,0.0 +16215,17,39,36,0.0 +16215,27,43.9,50,0.0 +16215,41,9.65,43,0.0 +16215,42,14,26,0.0 +16215,21,10,29,0.0 +16215,71,21.5,42,0.0 +16215,7,30,47,0.0 +16215,73,15,38,0.0 +16216,10,31,13,0.0 +16216,7,30,43,0.0 +16216,54,7.45,35,0.0 +16216,69,36,39,0.0 +16216,27,43.9,40,0.0 +16216,59,55,13,0.0 +16216,24,4.5,45,0.0 +16216,42,14,14,0.0 +16216,73,15,8,0.0 +16216,15,15.5,2,0.0 +16216,57,19.5,21,0.0 +16216,74,10,18,0.0 +16216,29,123.79,50,0.0 +16216,44,19.45,47,0.0 +16216,17,39,33,0.0 +16216,70,15,3,0.0 +16216,2,19,46,0.0 +16216,32,32,40,0.0 +16216,47,9.5,36,0.0 +16216,65,21.05,46,0.0 +16216,63,43.9,34,0.0 +16216,39,18,37,0.0 +16216,56,38,5,0.0 +16216,49,20,14,0.0 +16216,8,40,16,0.0 +16216,4,22,49,0.0 +16216,20,81,4,0.0 +16216,43,46,26,0.0 +16216,68,12.5,44,0.0 +16216,14,23.25,6,0.0 +16216,37,26,16,0.0 +16216,51,53,50,0.0 +16216,25,14,13,0.0 +16216,11,21,31,0.0 +16216,62,49.3,37,0.0 +16216,36,19,26,0.0 +16216,19,9.2,23,0.0 +16216,40,18.4,49,0.0 +16216,77,13,42,0.0 +16216,12,38,2,0.0 +16216,55,24,12,0.0 +16216,50,16.25,38,0.0 +16216,22,21,34,0.0 +16216,52,7,16,0.0 +16216,41,9.65,11,0.0 +16216,61,28.5,12,0.0 +16216,72,34.8,22,0.0 +16217,10,31,40,0.0 +16217,71,21.5,8,0.0 +16217,36,19,31,0.0 +16217,7,30,5,0.0 +16217,23,9,26,0.0 +16217,13,6,6,0.0 +16217,2,19,36,0.0 +16217,38,263.5,33,0.0 +16217,52,7,35,0.0 +16217,5,21.35,11,0.0 +16217,22,21,47,0.0 +16217,20,81,37,0.0 +16217,15,15.5,33,0.0 +16217,54,7.45,22,0.0 +16217,25,14,17,0.0 +16217,32,32,42,0.0 +16217,47,9.5,34,0.0 +16217,63,43.9,48,0.0 +16217,8,40,14,0.0 +16217,50,16.25,1,0.0 +16217,48,12.75,35,0.0 +16217,31,12.5,27,0.0 +16217,46,12,32,0.0 +16217,61,28.5,17,0.0 +16217,28,45.6,21,0.0 +16217,75,7.75,25,0.0 +16217,34,14,13,0.0 +16217,57,19.5,6,0.0 +16217,17,39,17,0.0 +16217,62,49.3,25,0.0 +16217,55,24,15,0.0 +16217,30,25.89,14,0.0 +16217,56,38,42,0.0 +16217,33,2.5,41,0.0 +16217,12,38,24,0.0 +16217,66,17,25,0.0 +16217,3,10,30,0.0 +16217,19,9.2,44,0.0 +16217,16,17.45,28,0.0 +16217,42,14,25,0.0 +16217,49,20,40,0.0 +16217,24,4.5,5,0.0 +16217,74,10,10,0.0 +16217,76,18,41,0.0 +16217,29,123.79,19,0.0 +16217,65,21.05,24,0.0 +16217,9,97,10,0.0 +16217,6,25,24,0.0 +16217,27,43.9,23,0.0 +16217,44,19.45,42,0.0 +16217,72,34.8,39,0.0 +16217,58,13.25,22,0.0 +16217,64,33.25,26,0.0 +16217,21,10,2,0.0 +16217,53,32.8,32,0.0 +16217,45,9.5,1,0.0 +16217,4,22,39,0.0 +16217,51,53,28,0.0 +16218,65,21.05,41,0.0 +16218,56,38,26,0.0 +16218,59,55,32,0.0 +16218,18,62.5,15,0.0 +16218,11,21,31,0.0 +16218,40,18.4,4,0.0 +16219,29,123.79,28,0.0 +16219,57,19.5,22,0.0 +16219,19,9.2,26,0.0 +16219,75,7.75,40,0.0 +16219,58,13.25,23,0.0 +16219,56,38,2,0.0 +16219,36,19,46,0.0 +16219,64,33.25,3,0.0 +16219,21,10,25,0.0 +16219,67,14,22,0.0 +16219,70,15,19,0.0 +16219,13,6,39,0.0 +16219,16,17.45,18,0.0 +16219,33,2.5,31,0.0 +16219,4,22,40,0.0 +16219,72,34.8,24,0.0 +16219,20,81,33,0.0 +16219,34,14,41,0.0 +16219,8,40,11,0.0 +16219,7,30,24,0.0 +16219,9,97,4,0.0 +16219,66,17,34,0.0 +16219,50,16.25,24,0.0 +16219,55,24,22,0.0 +16219,71,21.5,6,0.0 +16219,1,18,4,0.0 +16219,26,31.23,25,0.0 +16219,47,9.5,8,0.0 +16219,25,14,30,0.0 +16219,24,4.5,11,0.0 +16219,52,7,19,0.0 +16219,12,38,24,0.0 +16219,15,15.5,21,0.0 +16219,23,9,32,0.0 +16219,44,19.45,23,0.0 +16219,30,25.89,20,0.0 +16219,63,43.9,38,0.0 +16219,54,7.45,10,0.0 +16219,41,9.65,46,0.0 +16219,76,18,49,0.0 +16219,49,20,21,0.0 +16219,69,36,23,0.0 +16219,45,9.5,48,0.0 +16219,18,62.5,29,0.0 +16219,39,18,45,0.0 +16219,61,28.5,35,0.0 +16219,73,15,38,0.0 +16219,60,34,2,0.0 +16219,74,10,18,0.0 +16219,62,49.3,1,0.0 +16219,38,263.5,32,0.0 +16219,31,12.5,9,0.0 +16219,46,12,39,0.0 +16219,43,46,2,0.0 +16220,59,55,48,0.0 +16220,50,16.25,29,0.0 +16220,3,10,20,0.0 +16220,4,22,20,0.0 +16220,75,7.75,14,0.0 +16220,40,18.4,6,0.0 +16220,65,21.05,10,0.0 +16220,6,25,25,0.0 +16220,27,43.9,45,0.0 +16220,28,45.6,34,0.0 +16220,42,14,49,0.0 +16220,53,32.8,6,0.0 +16220,60,34,29,0.0 +16220,45,9.5,32,0.0 +16220,66,17,46,0.0 +16220,51,53,8,0.0 +16220,10,31,22,0.0 +16220,44,19.45,3,0.0 +16220,57,19.5,42,0.0 +16220,23,9,46,0.0 +16220,49,20,43,0.0 +16221,39,18,49,0.0 +16221,43,46,6,0.0 +16221,48,12.75,46,0.0 +16221,61,28.5,13,0.0 +16221,21,10,5,0.0 +16221,57,19.5,16,0.0 +16221,67,14,46,0.0 +16221,35,18,50,0.0 +16221,16,17.45,11,0.0 +16221,64,33.25,28,0.0 +16221,60,34,49,0.0 +16221,28,45.6,8,0.0 +16221,37,26,49,0.0 +16221,76,18,28,0.0 +16221,51,53,46,0.0 +16221,6,25,23,0.0 +16221,63,43.9,5,0.0 +16221,20,81,5,0.0 +16221,68,12.5,46,0.0 +16221,30,25.89,25,0.0 +16221,62,49.3,15,0.0 +16221,41,9.65,15,0.0 +16221,2,19,24,0.0 +16221,5,21.35,45,0.0 +16221,33,2.5,2,0.0 +16221,65,21.05,32,0.0 +16221,29,123.79,38,0.0 +16221,54,7.45,30,0.0 +16221,46,12,13,0.0 +16221,40,18.4,30,0.0 +16221,26,31.23,19,0.0 +16221,36,19,15,0.0 +16221,1,18,44,0.0 +16221,72,34.8,7,0.0 +16221,13,6,46,0.0 +16221,11,21,38,0.0 +16221,66,17,46,0.0 +16221,25,14,24,0.0 +16221,47,9.5,23,0.0 +16221,75,7.75,48,0.0 +16221,77,13,2,0.0 +16221,17,39,50,0.0 +16221,69,36,29,0.0 +16221,73,15,14,0.0 +16221,9,97,33,0.0 +16221,56,38,11,0.0 +16221,53,32.8,22,0.0 +16221,71,21.5,35,0.0 +16221,74,10,9,0.0 +16221,10,31,16,0.0 +16221,59,55,37,0.0 +16221,18,62.5,37,0.0 +16221,32,32,47,0.0 +16221,12,38,13,0.0 +16221,22,21,16,0.0 +16221,49,20,19,0.0 +16221,19,9.2,8,0.0 +16221,55,24,40,0.0 +16221,23,9,25,0.0 +16222,43,46,20,0.0 +16222,50,16.25,38,0.0 +16222,36,19,44,0.0 +16222,31,12.5,21,0.0 +16222,64,33.25,45,0.0 +16222,63,43.9,4,0.0 +16222,14,23.25,12,0.0 +16222,42,14,21,0.0 +16222,28,45.6,21,0.0 +16222,38,263.5,5,0.0 +16222,56,38,28,0.0 +16222,77,13,24,0.0 +16222,69,36,50,0.0 +16222,15,15.5,18,0.0 +16222,66,17,23,0.0 +16222,20,81,7,0.0 +16222,19,9.2,14,0.0 +16222,68,12.5,10,0.0 +16222,3,10,36,0.0 +16222,34,14,40,0.0 +16222,39,18,23,0.0 +16222,73,15,15,0.0 +16222,18,62.5,31,0.0 +16222,11,21,24,0.0 +16222,46,12,50,0.0 +16222,51,53,28,0.0 +16222,6,25,23,0.0 +16222,23,9,15,0.0 +16222,41,9.65,41,0.0 +16222,71,21.5,47,0.0 +16222,67,14,35,0.0 +16222,26,31.23,34,0.0 +16222,65,21.05,13,0.0 +16222,61,28.5,2,0.0 +16222,52,7,25,0.0 +16222,22,21,29,0.0 +16222,60,34,10,0.0 +16222,58,13.25,16,0.0 +16222,12,38,43,0.0 +16222,9,97,42,0.0 +16222,27,43.9,5,0.0 +16222,55,24,45,0.0 +16222,5,21.35,11,0.0 +16222,72,34.8,10,0.0 +16222,76,18,12,0.0 +16222,59,55,43,0.0 +16222,53,32.8,49,0.0 +16222,57,19.5,12,0.0 +16222,4,22,38,0.0 +16222,45,9.5,6,0.0 +16222,48,12.75,4,0.0 +16222,2,19,35,0.0 +16222,25,14,49,0.0 +16222,16,17.45,42,0.0 +16222,47,9.5,30,0.0 +16222,7,30,36,0.0 +16222,13,6,2,0.0 +16222,70,15,37,0.0 +16222,74,10,30,0.0 +16222,33,2.5,8,0.0 +16222,37,26,43,0.0 +16222,17,39,39,0.0 +16222,8,40,23,0.0 +16222,21,10,13,0.0 +16222,32,32,35,0.0 +16222,35,18,40,0.0 +16223,53,32.8,25,0.0 +16223,3,10,3,0.0 +16223,12,38,48,0.0 +16223,16,17.45,41,0.0 +16223,68,12.5,37,0.0 +16223,73,15,46,0.0 +16223,56,38,39,0.0 +16223,57,19.5,21,0.0 +16223,24,4.5,33,0.0 +16223,8,40,47,0.0 +16223,70,15,31,0.0 +16223,41,9.65,1,0.0 +16223,72,34.8,42,0.0 +16223,62,49.3,9,0.0 +16223,26,31.23,38,0.0 +16223,65,21.05,48,0.0 +16223,13,6,41,0.0 +16223,58,13.25,3,0.0 +16223,15,15.5,11,0.0 +16223,23,9,46,0.0 +16223,71,21.5,5,0.0 +16223,27,43.9,7,0.0 +16223,50,16.25,46,0.0 +16223,59,55,12,0.0 +16223,40,18.4,44,0.0 +16223,38,263.5,47,0.0 +16223,14,23.25,12,0.0 +16223,29,123.79,44,0.0 +16223,19,9.2,29,0.0 +16224,76,18,5,0.0 +16224,26,31.23,23,0.0 +16224,1,18,9,0.0 +16224,46,12,35,0.0 +16224,73,15,43,0.0 +16224,10,31,3,0.0 +16224,63,43.9,46,0.0 +16224,19,9.2,33,0.0 +16224,14,23.25,22,0.0 +16224,60,34,4,0.0 +16224,8,40,20,0.0 +16224,71,21.5,46,0.0 +16224,48,12.75,13,0.0 +16224,65,21.05,23,0.0 +16224,58,13.25,44,0.0 +16224,39,18,5,0.0 +16224,69,36,4,0.0 +16224,54,7.45,19,0.0 +16224,18,62.5,8,0.0 +16224,11,21,31,0.0 +16224,38,263.5,27,0.0 +16224,15,15.5,47,0.0 +16224,28,45.6,10,0.0 +16224,61,28.5,20,0.0 +16224,2,19,45,0.0 +16224,67,14,34,0.0 +16224,47,9.5,17,0.0 +16224,62,49.3,50,0.0 +16224,43,46,20,0.0 +16224,30,25.89,5,0.0 +16224,22,21,28,0.0 +16224,5,21.35,18,0.0 +16224,45,9.5,42,0.0 +16224,77,13,22,0.0 +16224,40,18.4,31,0.0 +16224,7,30,12,0.0 +16224,52,7,6,0.0 +16224,25,14,27,0.0 +16224,56,38,12,0.0 +16225,6,25,42,0.0 +16225,30,25.89,30,0.0 +16225,19,9.2,20,0.0 +16225,37,26,5,0.0 +16225,16,17.45,30,0.0 +16225,61,28.5,6,0.0 +16225,71,21.5,18,0.0 +16225,5,21.35,47,0.0 +16225,23,9,41,0.0 +16225,58,13.25,4,0.0 +16225,11,21,1,0.0 +16225,39,18,22,0.0 +16225,63,43.9,50,0.0 +16225,47,9.5,29,0.0 +16225,45,9.5,39,0.0 +16225,62,49.3,16,0.0 +16225,12,38,39,0.0 +16225,72,34.8,16,0.0 +16225,36,19,3,0.0 +16225,29,123.79,7,0.0 +16225,49,20,30,0.0 +16225,42,14,31,0.0 +16225,65,21.05,50,0.0 +16225,52,7,6,0.0 +16225,77,13,42,0.0 +16225,25,14,4,0.0 +16225,64,33.25,39,0.0 +16226,68,12.5,19,0.0 +16226,5,21.35,42,0.0 +16226,19,9.2,17,0.0 +16226,49,20,35,0.0 +16226,50,16.25,2,0.0 +16226,57,19.5,19,0.0 +16226,77,13,21,0.0 +16226,54,7.45,14,0.0 +16226,59,55,3,0.0 +16226,39,18,4,0.0 +16226,55,24,45,0.0 +16226,71,21.5,19,0.0 +16226,2,19,44,0.0 +16226,15,15.5,48,0.0 +16226,48,12.75,7,0.0 +16226,38,263.5,39,0.0 +16226,10,31,42,0.0 +16226,4,22,15,0.0 +16226,25,14,6,0.0 +16226,26,31.23,4,0.0 +16226,9,97,9,0.0 +16226,72,34.8,49,0.0 +16226,76,18,31,0.0 +16226,69,36,50,0.0 +16226,61,28.5,48,0.0 +16226,73,15,7,0.0 +16226,12,38,28,0.0 +16226,37,26,47,0.0 +16226,56,38,26,0.0 +16226,40,18.4,23,0.0 +16226,66,17,28,0.0 +16226,67,14,3,0.0 +16226,36,19,28,0.0 +16226,74,10,16,0.0 +16226,21,10,11,0.0 +16226,75,7.75,27,0.0 +16226,53,32.8,2,0.0 +16226,44,19.45,45,0.0 +16226,31,12.5,33,0.0 +16226,6,25,18,0.0 +16226,28,45.6,23,0.0 +16226,30,25.89,48,0.0 +16226,32,32,39,0.0 +16226,27,43.9,25,0.0 +16226,18,62.5,25,0.0 +16226,7,30,36,0.0 +16226,64,33.25,46,0.0 +16226,63,43.9,5,0.0 +16226,17,39,22,0.0 +16227,45,9.5,37,0.0 +16227,57,19.5,21,0.0 +16227,19,9.2,23,0.0 +16227,18,62.5,2,0.0 +16227,60,34,27,0.0 +16227,17,39,33,0.0 +16227,76,18,34,0.0 +16227,72,34.8,24,0.0 +16227,38,263.5,22,0.0 +16227,66,17,39,0.0 +16227,36,19,20,0.0 +16227,1,18,45,0.0 +16227,44,19.45,16,0.0 +16227,58,13.25,10,0.0 +16227,20,81,46,0.0 +16227,9,97,2,0.0 +16227,3,10,20,0.0 +16227,5,21.35,38,0.0 +16227,68,12.5,20,0.0 +16227,28,45.6,34,0.0 +16228,57,19.5,44,0.0 +16228,39,18,8,0.0 +16228,50,16.25,30,0.0 +16228,47,9.5,1,0.0 +16228,43,46,25,0.0 +16228,14,23.25,28,0.0 +16228,64,33.25,26,0.0 +16228,41,9.65,35,0.0 +16228,70,15,23,0.0 +16228,13,6,18,0.0 +16228,1,18,27,0.0 +16228,18,62.5,20,0.0 +16228,76,18,39,0.0 +16228,38,263.5,43,0.0 +16228,52,7,29,0.0 +16228,35,18,11,0.0 +16228,6,25,17,0.0 +16228,11,21,7,0.0 +16228,45,9.5,30,0.0 +16228,62,49.3,26,0.0 +16228,22,21,39,0.0 +16228,72,34.8,6,0.0 +16228,63,43.9,23,0.0 +16228,2,19,41,0.0 +16228,34,14,8,0.0 +16228,56,38,17,0.0 +16228,58,13.25,9,0.0 +16228,27,43.9,15,0.0 +16228,54,7.45,8,0.0 +16228,48,12.75,33,0.0 +16228,12,38,41,0.0 +16228,49,20,28,0.0 +16228,15,15.5,36,0.0 +16228,20,81,27,0.0 +16228,23,9,29,0.0 +16228,73,15,31,0.0 +16228,67,14,7,0.0 +16228,26,31.23,39,0.0 +16228,8,40,47,0.0 +16228,19,9.2,27,0.0 +16228,71,21.5,34,0.0 +16228,7,30,3,0.0 +16228,36,19,46,0.0 +16228,44,19.45,3,0.0 +16228,24,4.5,17,0.0 +16228,31,12.5,39,0.0 +16228,66,17,37,0.0 +16229,40,18.4,40,0.0 +16229,53,32.8,6,0.0 +16229,54,7.45,47,0.0 +16229,71,21.5,5,0.0 +16229,31,12.5,29,0.0 +16229,15,15.5,5,0.0 +16229,60,34,43,0.0 +16229,35,18,11,0.0 +16229,58,13.25,29,0.0 +16229,17,39,17,0.0 +16229,33,2.5,28,0.0 +16229,63,43.9,31,0.0 +16229,70,15,37,0.0 +16229,10,31,6,0.0 +16229,48,12.75,15,0.0 +16229,5,21.35,30,0.0 +16229,25,14,34,0.0 +16229,44,19.45,21,0.0 +16229,49,20,2,0.0 +16229,75,7.75,44,0.0 +16229,62,49.3,33,0.0 +16229,26,31.23,43,0.0 +16229,45,9.5,8,0.0 +16229,21,10,39,0.0 +16229,27,43.9,12,0.0 +16229,55,24,36,0.0 +16229,51,53,26,0.0 +16229,1,18,47,0.0 +16229,9,97,21,0.0 +16229,74,10,40,0.0 +16229,34,14,11,0.0 +16229,52,7,24,0.0 +16229,2,19,25,0.0 +16230,74,10,16,0.0 +16230,1,18,11,0.0 +16230,62,49.3,40,0.0 +16230,35,18,40,0.0 +16230,63,43.9,27,0.0 +16230,16,17.45,38,0.0 +16230,54,7.45,18,0.0 +16230,24,4.5,33,0.0 +16230,17,39,15,0.0 +16230,21,10,30,0.0 +16230,72,34.8,9,0.0 +16230,38,263.5,29,0.0 +16230,2,19,42,0.0 +16230,64,33.25,4,0.0 +16230,12,38,18,0.0 +16230,68,12.5,19,0.0 +16230,10,31,48,0.0 +16230,69,36,37,0.0 +16230,52,7,13,0.0 +16230,76,18,42,0.0 +16230,7,30,17,0.0 +16230,71,21.5,31,0.0 +16230,20,81,9,0.0 +16230,11,21,35,0.0 +16230,65,21.05,11,0.0 +16230,58,13.25,8,0.0 +16230,77,13,48,0.0 +16230,4,22,25,0.0 +16231,43,46,30,0.0 +16231,65,21.05,21,0.0 +16231,48,12.75,41,0.0 +16231,13,6,32,0.0 +16231,46,12,8,0.0 +16231,51,53,17,0.0 +16232,64,33.25,12,0.0 +16232,55,24,35,0.0 +16232,58,13.25,40,0.0 +16232,60,34,31,0.0 +16232,33,2.5,39,0.0 +16232,14,23.25,12,0.0 +16232,61,28.5,5,0.0 +16232,35,18,30,0.0 +16232,5,21.35,24,0.0 +16232,36,19,14,0.0 +16232,62,49.3,5,0.0 +16232,52,7,40,0.0 +16232,6,25,12,0.0 +16232,42,14,9,0.0 +16232,3,10,2,0.0 +16232,59,55,50,0.0 +16232,39,18,5,0.0 +16232,69,36,16,0.0 +16232,40,18.4,46,0.0 +16232,43,46,33,0.0 +16232,76,18,23,0.0 +16232,75,7.75,49,0.0 +16232,71,21.5,1,0.0 +16232,41,9.65,7,0.0 +16232,49,20,17,0.0 +16232,25,14,48,0.0 +16232,37,26,30,0.0 +16232,9,97,47,0.0 +16232,66,17,33,0.0 +16232,1,18,31,0.0 +16232,7,30,41,0.0 +16232,21,10,32,0.0 +16232,19,9.2,21,0.0 +16232,51,53,20,0.0 +16232,45,9.5,49,0.0 +16232,12,38,7,0.0 +16232,17,39,18,0.0 +16232,26,31.23,15,0.0 +16232,47,9.5,37,0.0 +16232,67,14,48,0.0 +16232,77,13,15,0.0 +16232,48,12.75,49,0.0 +16232,46,12,24,0.0 +16232,24,4.5,13,0.0 +16232,15,15.5,27,0.0 +16232,10,31,27,0.0 +16232,44,19.45,6,0.0 +16232,29,123.79,33,0.0 +16232,34,14,19,0.0 +16232,2,19,24,0.0 +16232,22,21,49,0.0 +16232,53,32.8,29,0.0 +16232,70,15,33,0.0 +16232,11,21,44,0.0 +16232,74,10,47,0.0 +16232,23,9,25,0.0 +16232,4,22,18,0.0 +16232,13,6,10,0.0 +16232,20,81,18,0.0 +16232,27,43.9,1,0.0 +16232,63,43.9,24,0.0 +16232,72,34.8,5,0.0 +16232,65,21.05,27,0.0 +16232,32,32,37,0.0 +16232,73,15,17,0.0 +16232,31,12.5,24,0.0 +16232,50,16.25,27,0.0 +16232,28,45.6,21,0.0 +16232,38,263.5,31,0.0 +16232,8,40,3,0.0 +16232,54,7.45,47,0.0 +16232,18,62.5,17,0.0 +16232,30,25.89,5,0.0 +16232,56,38,28,0.0 +16233,63,43.9,1,0.0 +16233,71,21.5,49,0.0 +16233,43,46,31,0.0 +16233,22,21,44,0.0 +16233,76,18,46,0.0 +16233,15,15.5,40,0.0 +16233,23,9,13,0.0 +16233,45,9.5,11,0.0 +16233,57,19.5,12,0.0 +16233,65,21.05,41,0.0 +16233,11,21,14,0.0 +16233,39,18,32,0.0 +16233,30,25.89,38,0.0 +16233,12,38,38,0.0 +16233,61,28.5,29,0.0 +16233,5,21.35,27,0.0 +16233,58,13.25,50,0.0 +16233,29,123.79,2,0.0 +16233,16,17.45,17,0.0 +16233,73,15,16,0.0 +16233,54,7.45,21,0.0 +16233,3,10,33,0.0 +16233,48,12.75,31,0.0 +16233,50,16.25,47,0.0 +16233,13,6,35,0.0 +16233,6,25,1,0.0 +16233,55,24,33,0.0 +16233,8,40,26,0.0 +16233,18,62.5,43,0.0 +16233,26,31.23,45,0.0 +16233,70,15,47,0.0 +16233,75,7.75,28,0.0 +16233,1,18,7,0.0 +16233,9,97,24,0.0 +16233,51,53,15,0.0 +16233,17,39,50,0.0 +16233,27,43.9,38,0.0 +16233,38,263.5,5,0.0 +16233,36,19,32,0.0 +16233,28,45.6,20,0.0 +16233,74,10,50,0.0 +16233,52,7,13,0.0 +16233,21,10,47,0.0 +16233,14,23.25,4,0.0 +16233,49,20,17,0.0 +16233,40,18.4,47,0.0 +16233,19,9.2,12,0.0 +16233,77,13,6,0.0 +16233,34,14,15,0.0 +16233,47,9.5,5,0.0 +16233,42,14,22,0.0 +16233,60,34,7,0.0 +16233,69,36,26,0.0 +16233,2,19,34,0.0 +16233,56,38,35,0.0 +16233,67,14,23,0.0 +16233,35,18,14,0.0 +16233,32,32,41,0.0 +16233,66,17,46,0.0 +16233,24,4.5,40,0.0 +16233,53,32.8,2,0.0 +16233,59,55,41,0.0 +16233,10,31,14,0.0 +16233,33,2.5,3,0.0 +16233,20,81,1,0.0 +16233,72,34.8,11,0.0 +16233,31,12.5,34,0.0 +16233,41,9.65,37,0.0 +16233,44,19.45,22,0.0 +16233,62,49.3,12,0.0 +16233,25,14,39,0.0 +16233,37,26,12,0.0 +16234,45,9.5,18,0.0 +16234,28,45.6,21,0.0 +16234,52,7,48,0.0 +16234,41,9.65,19,0.0 +16234,22,21,42,0.0 +16234,57,19.5,42,0.0 +16234,27,43.9,29,0.0 +16234,53,32.8,12,0.0 +16234,12,38,2,0.0 +16234,24,4.5,26,0.0 +16234,54,7.45,39,0.0 +16234,72,34.8,25,0.0 +16234,32,32,15,0.0 +16234,76,18,39,0.0 +16234,1,18,34,0.0 +16234,23,9,9,0.0 +16234,33,2.5,44,0.0 +16234,18,62.5,44,0.0 +16234,51,53,33,0.0 +16234,60,34,21,0.0 +16234,30,25.89,41,0.0 +16234,77,13,22,0.0 +16234,3,10,16,0.0 +16234,63,43.9,33,0.0 +16234,36,19,45,0.0 +16234,64,33.25,12,0.0 +16234,4,22,42,0.0 +16234,70,15,31,0.0 +16234,49,20,46,0.0 +16234,15,15.5,41,0.0 +16234,7,30,43,0.0 +16234,67,14,10,0.0 +16234,19,9.2,39,0.0 +16234,8,40,5,0.0 +16234,73,15,44,0.0 +16234,50,16.25,45,0.0 +16234,46,12,28,0.0 +16234,25,14,26,0.0 +16234,42,14,31,0.0 +16234,2,19,18,0.0 +16234,71,21.5,40,0.0 +16234,5,21.35,8,0.0 +16234,47,9.5,27,0.0 +16234,74,10,15,0.0 +16234,11,21,37,0.0 +16234,65,21.05,47,0.0 +16234,34,14,4,0.0 +16234,59,55,12,0.0 +16234,21,10,8,0.0 +16234,13,6,23,0.0 +16234,66,17,49,0.0 +16234,69,36,12,0.0 +16234,16,17.45,42,0.0 +16234,17,39,18,0.0 +16234,35,18,48,0.0 +16234,58,13.25,46,0.0 +16234,29,123.79,33,0.0 +16234,68,12.5,24,0.0 +16234,20,81,48,0.0 +16234,26,31.23,39,0.0 +16234,37,26,19,0.0 +16235,33,2.5,48,0.0 +16235,7,30,45,0.0 +16235,22,21,29,0.0 +16235,14,23.25,29,0.0 +16235,20,81,26,0.0 +16235,47,9.5,31,0.0 +16235,16,17.45,9,0.0 +16235,58,13.25,44,0.0 +16235,9,97,17,0.0 +16235,46,12,12,0.0 +16235,44,19.45,21,0.0 +16235,66,17,28,0.0 +16235,21,10,31,0.0 +16235,43,46,24,0.0 +16235,49,20,12,0.0 +16235,61,28.5,25,0.0 +16235,11,21,16,0.0 +16235,76,18,3,0.0 +16235,18,62.5,42,0.0 +16235,50,16.25,10,0.0 +16235,64,33.25,8,0.0 +16235,57,19.5,32,0.0 +16235,17,39,42,0.0 +16235,30,25.89,36,0.0 +16235,28,45.6,18,0.0 +16235,70,15,19,0.0 +16235,1,18,22,0.0 +16235,48,12.75,9,0.0 +16235,67,14,42,0.0 +16235,10,31,1,0.0 +16235,52,7,42,0.0 +16235,2,19,45,0.0 +16235,75,7.75,7,0.0 +16235,63,43.9,43,0.0 +16236,15,15.5,33,0.0 +16236,66,17,49,0.0 +16236,67,14,9,0.0 +16236,50,16.25,19,0.0 +16236,60,34,3,0.0 +16236,2,19,3,0.0 +16236,45,9.5,9,0.0 +16236,19,9.2,4,0.0 +16236,38,263.5,24,0.0 +16236,53,32.8,23,0.0 +16236,12,38,20,0.0 +16236,74,10,23,0.0 +16236,39,18,41,0.0 +16236,69,36,39,0.0 +16236,21,10,40,0.0 +16236,59,55,2,0.0 +16236,71,21.5,38,0.0 +16236,29,123.79,30,0.0 +16236,40,18.4,1,0.0 +16236,6,25,50,0.0 +16236,41,9.65,47,0.0 +16236,42,14,13,0.0 +16236,33,2.5,47,0.0 +16236,28,45.6,46,0.0 +16236,61,28.5,35,0.0 +16236,72,34.8,6,0.0 +16236,47,9.5,44,0.0 +16236,37,26,44,0.0 +16236,56,38,34,0.0 +16236,13,6,27,0.0 +16236,70,15,38,0.0 +16236,9,97,19,0.0 +16236,48,12.75,50,0.0 +16236,30,25.89,4,0.0 +16236,23,9,27,0.0 +16236,5,21.35,43,0.0 +16236,36,19,43,0.0 +16236,14,23.25,6,0.0 +16236,43,46,38,0.0 +16236,58,13.25,10,0.0 +16236,22,21,21,0.0 +16236,54,7.45,43,0.0 +16236,51,53,45,0.0 +16236,10,31,11,0.0 +16236,20,81,43,0.0 +16236,64,33.25,3,0.0 +16236,4,22,26,0.0 +16236,46,12,30,0.0 +16236,63,43.9,5,0.0 +16236,27,43.9,29,0.0 +16236,57,19.5,30,0.0 +16236,49,20,15,0.0 +16236,8,40,34,0.0 +16236,65,21.05,18,0.0 +16236,31,12.5,6,0.0 +16236,25,14,17,0.0 +16236,68,12.5,2,0.0 +16237,67,14,30,0.0 +16237,25,14,23,0.0 +16237,62,49.3,47,0.0 +16237,17,39,34,0.0 +16237,5,21.35,35,0.0 +16237,54,7.45,14,0.0 +16237,73,15,23,0.0 +16237,29,123.79,5,0.0 +16237,21,10,42,0.0 +16237,50,16.25,7,0.0 +16237,41,9.65,24,0.0 +16237,26,31.23,17,0.0 +16237,46,12,5,0.0 +16237,20,81,27,0.0 +16237,65,21.05,44,0.0 +16237,10,31,29,0.0 +16237,53,32.8,28,0.0 +16237,63,43.9,9,0.0 +16237,60,34,42,0.0 +16237,6,25,43,0.0 +16237,9,97,41,0.0 +16237,32,32,21,0.0 +16237,74,10,37,0.0 +16237,39,18,34,0.0 +16237,43,46,30,0.0 +16237,37,26,31,0.0 +16237,40,18.4,34,0.0 +16237,57,19.5,34,0.0 +16237,76,18,2,0.0 +16237,12,38,32,0.0 +16237,18,62.5,40,0.0 +16237,8,40,20,0.0 +16237,24,4.5,25,0.0 +16237,48,12.75,42,0.0 +16237,66,17,46,0.0 +16237,55,24,29,0.0 +16237,33,2.5,38,0.0 +16237,28,45.6,11,0.0 +16238,22,21,4,0.0 +16238,42,14,39,0.0 +16238,35,18,32,0.0 +16238,38,263.5,6,0.0 +16238,39,18,12,0.0 +16238,17,39,45,0.0 +16238,11,21,11,0.0 +16238,63,43.9,42,0.0 +16238,24,4.5,49,0.0 +16238,64,33.25,7,0.0 +16238,7,30,9,0.0 +16238,51,53,24,0.0 +16238,10,31,10,0.0 +16238,46,12,15,0.0 +16238,41,9.65,31,0.0 +16238,19,9.2,33,0.0 +16238,68,12.5,25,0.0 +16238,14,23.25,33,0.0 +16238,18,62.5,9,0.0 +16238,31,12.5,20,0.0 +16238,32,32,40,0.0 +16238,66,17,27,0.0 +16238,60,34,7,0.0 +16238,49,20,31,0.0 +16238,53,32.8,30,0.0 +16238,16,17.45,23,0.0 +16238,55,24,9,0.0 +16238,72,34.8,6,0.0 +16238,6,25,15,0.0 +16238,76,18,10,0.0 +16238,1,18,33,0.0 +16238,3,10,30,0.0 +16238,4,22,9,0.0 +16238,71,21.5,4,0.0 +16238,8,40,30,0.0 +16238,50,16.25,35,0.0 +16238,28,45.6,8,0.0 +16238,48,12.75,6,0.0 +16239,6,25,36,0.0 +16239,38,263.5,4,0.0 +16239,23,9,1,0.0 +16239,56,38,50,0.0 +16239,13,6,14,0.0 +16239,46,12,8,0.0 +16239,73,15,22,0.0 +16239,66,17,39,0.0 +16239,43,46,28,0.0 +16239,69,36,18,0.0 +16239,49,20,12,0.0 +16239,18,62.5,26,0.0 +16239,40,18.4,8,0.0 +16239,62,49.3,14,0.0 +16239,24,4.5,3,0.0 +16239,34,14,14,0.0 +16239,25,14,30,0.0 +16239,70,15,3,0.0 +16239,60,34,14,0.0 +16239,74,10,39,0.0 +16239,39,18,26,0.0 +16239,47,9.5,12,0.0 +16239,77,13,16,0.0 +16239,65,21.05,40,0.0 +16239,53,32.8,22,0.0 +16239,64,33.25,2,0.0 +16239,4,22,27,0.0 +16239,17,39,28,0.0 +16239,45,9.5,4,0.0 +16239,5,21.35,44,0.0 +16239,20,81,23,0.0 +16239,16,17.45,45,0.0 +16239,10,31,27,0.0 +16239,31,12.5,7,0.0 +16240,71,21.5,27,0.0 +16240,41,9.65,48,0.0 +16240,48,12.75,30,0.0 +16240,40,18.4,35,0.0 +16240,12,38,33,0.0 +16240,56,38,44,0.0 +16240,77,13,29,0.0 +16240,1,18,6,0.0 +16240,42,14,43,0.0 +16240,39,18,20,0.0 +16240,59,55,41,0.0 +16240,58,13.25,48,0.0 +16240,5,21.35,6,0.0 +16240,8,40,2,0.0 +16240,6,25,31,0.0 +16240,9,97,44,0.0 +16240,43,46,20,0.0 +16240,75,7.75,26,0.0 +16240,68,12.5,2,0.0 +16240,3,10,22,0.0 +16240,28,45.6,13,0.0 +16240,66,17,21,0.0 +16240,29,123.79,39,0.0 +16240,70,15,46,0.0 +16240,52,7,22,0.0 +16240,26,31.23,26,0.0 +16240,74,10,20,0.0 +16240,61,28.5,32,0.0 +16240,35,18,28,0.0 +16240,55,24,18,0.0 +16240,23,9,33,0.0 +16240,24,4.5,50,0.0 +16240,53,32.8,12,0.0 +16240,36,19,12,0.0 +16240,14,23.25,26,0.0 +16240,46,12,26,0.0 +16240,44,19.45,1,0.0 +16240,49,20,34,0.0 +16240,60,34,15,0.0 +16240,17,39,22,0.0 +16240,31,12.5,35,0.0 +16240,32,32,46,0.0 +16240,19,9.2,29,0.0 +16240,16,17.45,37,0.0 +16240,25,14,4,0.0 +16240,13,6,21,0.0 +16240,54,7.45,22,0.0 +16240,37,26,38,0.0 +16240,73,15,11,0.0 +16240,51,53,21,0.0 +16240,50,16.25,29,0.0 +16241,13,6,7,0.0 +16241,10,31,9,0.0 +16241,33,2.5,18,0.0 +16241,24,4.5,47,0.0 +16241,55,24,14,0.0 +16241,56,38,27,0.0 +16241,18,62.5,40,0.0 +16241,30,25.89,6,0.0 +16241,20,81,14,0.0 +16241,42,14,20,0.0 +16241,77,13,35,0.0 +16241,76,18,28,0.0 +16241,4,22,2,0.0 +16241,28,45.6,34,0.0 +16241,37,26,18,0.0 +16241,21,10,30,0.0 +16241,60,34,16,0.0 +16241,40,18.4,37,0.0 +16241,2,19,23,0.0 +16241,11,21,18,0.0 +16241,36,19,7,0.0 +16241,70,15,49,0.0 +16241,53,32.8,11,0.0 +16241,44,19.45,48,0.0 +16241,58,13.25,7,0.0 +16241,23,9,20,0.0 +16241,69,36,13,0.0 +16241,34,14,36,0.0 +16241,54,7.45,39,0.0 +16241,66,17,38,0.0 +16241,63,43.9,34,0.0 +16241,32,32,1,0.0 +16241,22,21,32,0.0 +16241,52,7,6,0.0 +16241,47,9.5,41,0.0 +16241,68,12.5,29,0.0 +16241,48,12.75,37,0.0 +16241,57,19.5,13,0.0 +16241,35,18,9,0.0 +16241,38,263.5,38,0.0 +16241,41,9.65,4,0.0 +16241,67,14,36,0.0 +16241,64,33.25,24,0.0 +16241,1,18,46,0.0 +16241,27,43.9,28,0.0 +16241,46,12,13,0.0 +16241,7,30,3,0.0 +16241,31,12.5,35,0.0 +16241,8,40,45,0.0 +16241,17,39,13,0.0 +16241,65,21.05,19,0.0 +16241,5,21.35,41,0.0 +16241,26,31.23,21,0.0 +16241,74,10,33,0.0 +16242,14,23.25,21,0.0 +16242,11,21,29,0.0 +16242,61,28.5,34,0.0 +16243,20,81,43,0.0 +16243,67,14,32,0.0 +16243,56,38,1,0.0 +16243,1,18,25,0.0 +16243,47,9.5,24,0.0 +16243,16,17.45,9,0.0 +16243,60,34,18,0.0 +16243,28,45.6,44,0.0 +16243,12,38,44,0.0 +16243,61,28.5,9,0.0 +16243,73,15,5,0.0 +16243,51,53,33,0.0 +16243,62,49.3,37,0.0 +16243,66,17,11,0.0 +16243,35,18,16,0.0 +16244,22,21,40,0.0 +16244,58,13.25,25,0.0 +16244,68,12.5,49,0.0 +16244,76,18,7,0.0 +16244,75,7.75,10,0.0 +16244,5,21.35,43,0.0 +16244,44,19.45,10,0.0 +16244,49,20,18,0.0 +16244,34,14,44,0.0 +16244,50,16.25,5,0.0 +16244,28,45.6,21,0.0 +16244,53,32.8,34,0.0 +16244,46,12,8,0.0 +16244,13,6,8,0.0 +16244,32,32,23,0.0 +16244,12,38,34,0.0 +16244,25,14,30,0.0 +16244,62,49.3,17,0.0 +16244,31,12.5,9,0.0 +16244,47,9.5,1,0.0 +16244,24,4.5,47,0.0 +16244,9,97,22,0.0 +16244,37,26,38,0.0 +16245,26,31.23,35,0.0 +16245,49,20,21,0.0 +16245,39,18,12,0.0 +16245,24,4.5,28,0.0 +16245,30,25.89,30,0.0 +16245,33,2.5,40,0.0 +16245,62,49.3,1,0.0 +16245,15,15.5,49,0.0 +16245,14,23.25,28,0.0 +16245,32,32,6,0.0 +16245,55,24,41,0.0 +16245,57,19.5,15,0.0 +16245,40,18.4,2,0.0 +16245,41,9.65,34,0.0 +16245,9,97,45,0.0 +16245,72,34.8,14,0.0 +16245,23,9,32,0.0 +16245,77,13,20,0.0 +16245,5,21.35,28,0.0 +16245,29,123.79,5,0.0 +16245,11,21,19,0.0 +16245,17,39,24,0.0 +16245,64,33.25,40,0.0 +16245,7,30,37,0.0 +16245,36,19,5,0.0 +16245,61,28.5,2,0.0 +16245,50,16.25,42,0.0 +16245,47,9.5,12,0.0 +16245,43,46,12,0.0 +16245,19,9.2,16,0.0 +16245,38,263.5,35,0.0 +16245,13,6,40,0.0 +16245,56,38,14,0.0 +16245,25,14,45,0.0 +16245,6,25,38,0.0 +16245,52,7,1,0.0 +16245,20,81,39,0.0 +16245,42,14,40,0.0 +16245,44,19.45,35,0.0 +16245,48,12.75,4,0.0 +16245,45,9.5,2,0.0 +16245,35,18,4,0.0 +16245,69,36,43,0.0 +16245,34,14,22,0.0 +16246,39,18,50,0.0 +16246,16,17.45,28,0.0 +16246,32,32,28,0.0 +16246,76,18,47,0.0 +16246,64,33.25,3,0.0 +16246,48,12.75,45,0.0 +16246,70,15,14,0.0 +16246,28,45.6,20,0.0 +16246,13,6,32,0.0 +16246,69,36,44,0.0 +16246,25,14,14,0.0 +16246,12,38,1,0.0 +16246,55,24,9,0.0 +16246,60,34,19,0.0 +16246,15,15.5,34,0.0 +16246,23,9,45,0.0 +16246,73,15,24,0.0 +16246,62,49.3,3,0.0 +16246,71,21.5,27,0.0 +16246,9,97,41,0.0 +16246,22,21,49,0.0 +16246,1,18,17,0.0 +16246,54,7.45,50,0.0 +16246,46,12,19,0.0 +16246,17,39,15,0.0 +16246,65,21.05,13,0.0 +16246,11,21,13,0.0 +16246,7,30,48,0.0 +16246,35,18,25,0.0 +16246,61,28.5,11,0.0 +16246,14,23.25,7,0.0 +16246,77,13,47,0.0 +16246,45,9.5,31,0.0 +16246,34,14,24,0.0 +16246,57,19.5,24,0.0 +16246,74,10,25,0.0 +16246,52,7,47,0.0 +16246,49,20,12,0.0 +16246,42,14,50,0.0 +16246,37,26,25,0.0 +16247,4,22,42,0.0 +16247,32,32,7,0.0 +16247,73,15,47,0.0 +16247,46,12,6,0.0 +16247,49,20,18,0.0 +16247,34,14,46,0.0 +16247,77,13,39,0.0 +16247,60,34,46,0.0 +16247,8,40,49,0.0 +16248,25,14,10,0.0 +16248,48,12.75,47,0.0 +16248,54,7.45,26,0.0 +16248,73,15,39,0.0 +16248,41,9.65,14,0.0 +16248,36,19,48,0.0 +16248,68,12.5,23,0.0 +16248,60,34,46,0.0 +16248,2,19,9,0.0 +16248,4,22,13,0.0 +16248,43,46,30,0.0 +16248,12,38,8,0.0 +16248,6,25,5,0.0 +16249,29,123.79,12,0.0 +16249,42,14,34,0.0 +16249,64,33.25,30,0.0 +16249,34,14,9,0.0 +16249,8,40,9,0.0 +16249,11,21,25,0.0 +16249,51,53,14,0.0 +16249,24,4.5,4,0.0 +16249,75,7.75,38,0.0 +16249,19,9.2,29,0.0 +16249,13,6,2,0.0 +16249,9,97,14,0.0 +16249,36,19,20,0.0 +16250,70,15,33,0.0 +16250,57,19.5,20,0.0 +16250,22,21,12,0.0 +16250,47,9.5,18,0.0 +16250,50,16.25,14,0.0 +16250,38,263.5,6,0.0 +16250,39,18,47,0.0 +16250,64,33.25,10,0.0 +16250,17,39,9,0.0 +16250,14,23.25,34,0.0 +16250,30,25.89,42,0.0 +16250,40,18.4,42,0.0 +16250,55,24,29,0.0 +16250,31,12.5,31,0.0 +16250,16,17.45,6,0.0 +16250,49,20,31,0.0 +16250,11,21,50,0.0 +16250,73,15,14,0.0 +16250,33,2.5,9,0.0 +16250,69,36,43,0.0 +16250,54,7.45,46,0.0 +16250,35,18,41,0.0 +16250,18,62.5,47,0.0 +16250,23,9,6,0.0 +16251,18,62.5,5,0.0 +16251,19,9.2,16,0.0 +16251,55,24,7,0.0 +16251,48,12.75,22,0.0 +16251,75,7.75,6,0.0 +16251,45,9.5,50,0.0 +16251,64,33.25,23,0.0 +16251,59,55,16,0.0 +16251,47,9.5,36,0.0 +16251,20,81,46,0.0 +16251,8,40,16,0.0 +16251,66,17,50,0.0 +16251,34,14,49,0.0 +16251,24,4.5,36,0.0 +16251,36,19,4,0.0 +16251,63,43.9,25,0.0 +16251,49,20,14,0.0 +16251,23,9,28,0.0 +16251,38,263.5,23,0.0 +16251,2,19,10,0.0 +16251,61,28.5,1,0.0 +16251,56,38,21,0.0 +16251,35,18,31,0.0 +16251,62,49.3,10,0.0 +16251,33,2.5,2,0.0 +16251,31,12.5,39,0.0 +16251,26,31.23,39,0.0 +16251,54,7.45,8,0.0 +16251,4,22,19,0.0 +16251,68,12.5,23,0.0 +16251,1,18,11,0.0 +16251,10,31,25,0.0 +16251,57,19.5,32,0.0 +16251,29,123.79,30,0.0 +16251,14,23.25,23,0.0 +16251,70,15,29,0.0 +16251,53,32.8,14,0.0 +16251,39,18,10,0.0 +16252,71,21.5,33,0.0 +16252,72,34.8,35,0.0 +16252,8,40,5,0.0 +16252,68,12.5,17,0.0 +16252,58,13.25,37,0.0 +16252,57,19.5,23,0.0 +16252,46,12,23,0.0 +16252,35,18,45,0.0 +16252,17,39,38,0.0 +16253,23,9,18,0.0 +16253,50,16.25,42,0.0 +16253,65,21.05,42,0.0 +16253,31,12.5,23,0.0 +16253,43,46,46,0.0 +16253,5,21.35,47,0.0 +16253,16,17.45,25,0.0 +16253,19,9.2,28,0.0 +16253,63,43.9,18,0.0 +16253,62,49.3,28,0.0 +16253,36,19,21,0.0 +16253,17,39,35,0.0 +16253,56,38,23,0.0 +16253,35,18,41,0.0 +16253,48,12.75,3,0.0 +16253,18,62.5,3,0.0 +16253,10,31,22,0.0 +16253,77,13,22,0.0 +16253,72,34.8,2,0.0 +16253,26,31.23,47,0.0 +16253,59,55,35,0.0 +16253,45,9.5,4,0.0 +16253,34,14,45,0.0 +16253,74,10,21,0.0 +16253,60,34,13,0.0 +16253,37,26,7,0.0 +16253,29,123.79,24,0.0 +16253,21,10,1,0.0 +16253,30,25.89,46,0.0 +16253,42,14,50,0.0 +16253,57,19.5,37,0.0 +16253,9,97,22,0.0 +16253,24,4.5,33,0.0 +16253,68,12.5,5,0.0 +16253,25,14,5,0.0 +16253,11,21,40,0.0 +16253,54,7.45,36,0.0 +16253,69,36,35,0.0 +16253,28,45.6,3,0.0 +16253,64,33.25,34,0.0 +16253,66,17,15,0.0 +16254,7,30,32,0.0 +16254,34,14,4,0.0 +16254,73,15,47,0.0 +16254,32,32,9,0.0 +16254,29,123.79,39,0.0 +16254,33,2.5,6,0.0 +16254,21,10,39,0.0 +16254,11,21,37,0.0 +16254,43,46,40,0.0 +16254,67,14,5,0.0 +16254,65,21.05,44,0.0 +16254,49,20,33,0.0 +16254,50,16.25,5,0.0 +16254,66,17,20,0.0 +16254,59,55,18,0.0 +16254,39,18,34,0.0 +16254,10,31,37,0.0 +16254,57,19.5,33,0.0 +16254,36,19,22,0.0 +16254,69,36,28,0.0 +16254,3,10,35,0.0 +16254,27,43.9,5,0.0 +16254,1,18,36,0.0 +16254,15,15.5,25,0.0 +16254,54,7.45,44,0.0 +16254,48,12.75,32,0.0 +16254,68,12.5,44,0.0 +16254,35,18,20,0.0 +16254,25,14,39,0.0 +16254,64,33.25,27,0.0 +16254,46,12,12,0.0 +16254,61,28.5,3,0.0 +16254,53,32.8,20,0.0 +16254,17,39,15,0.0 +16254,31,12.5,31,0.0 +16254,14,23.25,50,0.0 +16254,12,38,41,0.0 +16254,30,25.89,8,0.0 +16254,19,9.2,40,0.0 +16254,58,13.25,31,0.0 +16254,75,7.75,41,0.0 +16254,71,21.5,26,0.0 +16254,6,25,34,0.0 +16254,45,9.5,5,0.0 +16254,52,7,12,0.0 +16254,55,24,26,0.0 +16254,5,21.35,15,0.0 +16254,28,45.6,48,0.0 +16254,41,9.65,33,0.0 +16254,23,9,19,0.0 +16254,76,18,50,0.0 +16254,20,81,27,0.0 +16254,16,17.45,5,0.0 +16254,13,6,37,0.0 +16254,9,97,42,0.0 +16254,42,14,2,0.0 +16254,26,31.23,47,0.0 +16254,63,43.9,45,0.0 +16254,4,22,47,0.0 +16254,56,38,10,0.0 +16254,38,263.5,16,0.0 +16254,62,49.3,34,0.0 +16254,60,34,48,0.0 +16254,44,19.45,38,0.0 +16254,77,13,18,0.0 +16254,74,10,34,0.0 +16255,43,46,13,0.0 +16255,61,28.5,30,0.0 +16255,62,49.3,6,0.0 +16255,49,20,30,0.0 +16255,1,18,48,0.0 +16255,58,13.25,6,0.0 +16255,40,18.4,35,0.0 +16255,55,24,7,0.0 +16255,29,123.79,23,0.0 +16255,53,32.8,17,0.0 +16255,57,19.5,18,0.0 +16255,3,10,22,0.0 +16255,77,13,28,0.0 +16255,6,25,29,0.0 +16255,42,14,29,0.0 +16255,19,9.2,23,0.0 +16255,30,25.89,38,0.0 +16255,13,6,22,0.0 +16255,73,15,20,0.0 +16255,4,22,26,0.0 +16255,31,12.5,35,0.0 +16255,15,15.5,18,0.0 +16255,74,10,8,0.0 +16255,17,39,14,0.0 +16255,32,32,6,0.0 +16255,5,21.35,43,0.0 +16255,48,12.75,34,0.0 +16255,50,16.25,25,0.0 +16255,25,14,23,0.0 +16255,66,17,3,0.0 +16255,46,12,28,0.0 +16255,68,12.5,6,0.0 +16255,7,30,27,0.0 +16255,23,9,32,0.0 +16255,52,7,43,0.0 +16255,34,14,34,0.0 +16255,11,21,1,0.0 +16255,38,263.5,43,0.0 +16255,36,19,43,0.0 +16255,72,34.8,45,0.0 +16255,35,18,5,0.0 +16255,59,55,31,0.0 +16255,20,81,13,0.0 +16255,63,43.9,6,0.0 +16255,8,40,44,0.0 +16255,9,97,32,0.0 +16255,60,34,43,0.0 +16255,76,18,12,0.0 +16255,33,2.5,50,0.0 +16255,51,53,18,0.0 +16255,37,26,35,0.0 +16255,27,43.9,46,0.0 +16255,64,33.25,46,0.0 +16255,69,36,42,0.0 +16255,45,9.5,43,0.0 +16255,18,62.5,22,0.0 +16255,24,4.5,17,0.0 +16255,47,9.5,50,0.0 +16255,75,7.75,20,0.0 +16255,70,15,13,0.0 +16255,67,14,11,0.0 +16255,54,7.45,6,0.0 +16255,56,38,33,0.0 +16255,44,19.45,18,0.0 +16255,12,38,24,0.0 +16255,39,18,41,0.0 +16255,10,31,45,0.0 +16255,14,23.25,9,0.0 +16255,65,21.05,47,0.0 +16255,26,31.23,2,0.0 +16255,21,10,13,0.0 +16255,22,21,41,0.0 +16255,16,17.45,24,0.0 +16255,28,45.6,31,0.0 +16255,2,19,40,0.0 +16255,41,9.65,23,0.0 +16256,19,9.2,19,0.0 +16256,47,9.5,3,0.0 +16256,7,30,3,0.0 +16256,59,55,44,0.0 +16256,23,9,16,0.0 +16256,3,10,44,0.0 +16256,70,15,37,0.0 +16256,39,18,35,0.0 +16256,45,9.5,4,0.0 +16256,8,40,34,0.0 +16256,18,62.5,36,0.0 +16257,2,19,10,0.0 +16257,14,23.25,28,0.0 +16257,24,4.5,33,0.0 +16257,67,14,33,0.0 +16257,59,55,35,0.0 +16257,75,7.75,12,0.0 +16257,71,21.5,42,0.0 +16257,69,36,45,0.0 +16257,42,14,27,0.0 +16257,12,38,31,0.0 +16257,53,32.8,48,0.0 +16257,61,28.5,20,0.0 +16257,60,34,23,0.0 +16257,40,18.4,1,0.0 +16257,47,9.5,30,0.0 +16257,58,13.25,8,0.0 +16257,45,9.5,35,0.0 +16257,28,45.6,49,0.0 +16257,51,53,30,0.0 +16257,66,17,9,0.0 +16257,27,43.9,20,0.0 +16257,64,33.25,22,0.0 +16257,57,19.5,19,0.0 +16257,33,2.5,18,0.0 +16257,30,25.89,22,0.0 +16257,34,14,37,0.0 +16257,72,34.8,18,0.0 +16257,8,40,9,0.0 +16257,74,10,1,0.0 +16257,46,12,23,0.0 +16257,4,22,1,0.0 +16257,43,46,33,0.0 +16257,49,20,43,0.0 +16257,31,12.5,49,0.0 +16257,19,9.2,34,0.0 +16257,25,14,6,0.0 +16257,77,13,3,0.0 +16257,76,18,11,0.0 +16257,73,15,47,0.0 +16257,62,49.3,45,0.0 +16257,15,15.5,5,0.0 +16257,9,97,32,0.0 +16257,38,263.5,43,0.0 +16257,32,32,18,0.0 +16257,52,7,19,0.0 +16257,55,24,25,0.0 +16257,29,123.79,36,0.0 +16258,70,15,20,0.0 +16258,51,53,45,0.0 +16258,30,25.89,49,0.0 +16258,37,26,17,0.0 +16258,52,7,34,0.0 +16258,5,21.35,45,0.0 +16258,23,9,47,0.0 +16258,25,14,20,0.0 +16258,46,12,24,0.0 +16258,53,32.8,19,0.0 +16258,69,36,7,0.0 +16258,28,45.6,10,0.0 +16259,12,38,33,0.0 +16259,60,34,25,0.0 +16259,71,21.5,41,0.0 +16259,76,18,21,0.0 +16259,68,12.5,41,0.0 +16259,3,10,49,0.0 +16259,14,23.25,46,0.0 +16259,37,26,18,0.0 +16259,7,30,17,0.0 +16259,21,10,33,0.0 +16259,23,9,21,0.0 +16259,73,15,12,0.0 +16259,64,33.25,12,0.0 +16259,59,55,13,0.0 +16259,70,15,33,0.0 +16259,28,45.6,16,0.0 +16259,52,7,8,0.0 +16259,51,53,45,0.0 +16259,2,19,2,0.0 +16259,67,14,36,0.0 +16259,40,18.4,38,0.0 +16259,58,13.25,9,0.0 +16259,18,62.5,42,0.0 +16259,22,21,42,0.0 +16259,32,32,28,0.0 +16259,4,22,36,0.0 +16259,75,7.75,38,0.0 +16259,43,46,1,0.0 +16259,41,9.65,47,0.0 +16259,61,28.5,3,0.0 +16259,11,21,19,0.0 +16259,38,263.5,2,0.0 +16259,33,2.5,21,0.0 +16259,26,31.23,37,0.0 +16259,54,7.45,30,0.0 +16259,8,40,19,0.0 +16259,27,43.9,5,0.0 +16259,46,12,24,0.0 +16259,10,31,7,0.0 +16259,65,21.05,36,0.0 +16259,39,18,5,0.0 +16259,53,32.8,27,0.0 +16259,9,97,19,0.0 +16259,47,9.5,7,0.0 +16259,5,21.35,28,0.0 +16259,16,17.45,1,0.0 +16259,69,36,42,0.0 +16259,6,25,23,0.0 +16259,15,15.5,46,0.0 +16259,30,25.89,43,0.0 +16259,74,10,3,0.0 +16259,25,14,17,0.0 +16259,31,12.5,8,0.0 +16259,20,81,25,0.0 +16259,55,24,1,0.0 +16259,1,18,23,0.0 +16259,48,12.75,16,0.0 +16259,72,34.8,47,0.0 +16259,56,38,1,0.0 +16259,29,123.79,44,0.0 +16259,62,49.3,39,0.0 +16259,49,20,1,0.0 +16259,34,14,14,0.0 +16259,35,18,7,0.0 +16259,17,39,48,0.0 +16259,63,43.9,17,0.0 +16259,57,19.5,20,0.0 +16259,13,6,48,0.0 +16259,36,19,42,0.0 +16259,50,16.25,16,0.0 +16259,42,14,37,0.0 +16259,77,13,32,0.0 +16259,66,17,48,0.0 +16260,58,13.25,4,0.0 +16260,69,36,38,0.0 +16260,23,9,16,0.0 +16260,62,49.3,25,0.0 +16260,45,9.5,11,0.0 +16260,8,40,27,0.0 +16260,6,25,37,0.0 +16260,74,10,7,0.0 +16260,38,263.5,20,0.0 +16260,41,9.65,5,0.0 +16260,18,62.5,14,0.0 +16260,48,12.75,17,0.0 +16260,31,12.5,33,0.0 +16260,3,10,29,0.0 +16260,46,12,49,0.0 +16260,63,43.9,34,0.0 +16260,49,20,2,0.0 +16260,1,18,27,0.0 +16260,43,46,11,0.0 +16260,54,7.45,30,0.0 +16260,13,6,17,0.0 +16260,67,14,10,0.0 +16260,25,14,12,0.0 +16260,16,17.45,33,0.0 +16260,24,4.5,43,0.0 +16260,22,21,31,0.0 +16260,61,28.5,48,0.0 +16260,40,18.4,31,0.0 +16260,70,15,4,0.0 +16260,59,55,4,0.0 +16260,72,34.8,13,0.0 +16260,12,38,40,0.0 +16260,27,43.9,16,0.0 +16260,5,21.35,39,0.0 +16260,55,24,39,0.0 +16260,52,7,27,0.0 +16260,65,21.05,24,0.0 +16260,29,123.79,19,0.0 +16260,60,34,20,0.0 +16260,35,18,5,0.0 +16260,64,33.25,16,0.0 +16260,30,25.89,29,0.0 +16260,4,22,28,0.0 +16260,77,13,18,0.0 +16260,28,45.6,43,0.0 +16260,15,15.5,21,0.0 +16260,10,31,1,0.0 +16260,44,19.45,20,0.0 +16260,20,81,41,0.0 +16260,11,21,30,0.0 +16260,76,18,28,0.0 +16260,26,31.23,22,0.0 +16261,33,2.5,28,0.0 +16261,22,21,34,0.0 +16261,34,14,37,0.0 +16261,15,15.5,39,0.0 +16261,14,23.25,8,0.0 +16261,46,12,10,0.0 +16261,71,21.5,48,0.0 +16261,72,34.8,23,0.0 +16261,7,30,43,0.0 +16261,17,39,19,0.0 +16261,70,15,42,0.0 +16261,58,13.25,41,0.0 +16261,75,7.75,21,0.0 +16261,53,32.8,42,0.0 +16261,76,18,50,0.0 +16261,64,33.25,26,0.0 +16261,56,38,28,0.0 +16261,44,19.45,40,0.0 +16261,10,31,40,0.0 +16261,60,34,31,0.0 +16261,21,10,35,0.0 +16261,36,19,49,0.0 +16261,55,24,29,0.0 +16261,73,15,48,0.0 +16261,32,32,38,0.0 +16261,38,263.5,50,0.0 +16261,37,26,46,0.0 +16261,13,6,15,0.0 +16261,23,9,4,0.0 +16261,11,21,38,0.0 +16261,30,25.89,5,0.0 +16261,42,14,39,0.0 +16261,6,25,2,0.0 +16261,26,31.23,27,0.0 +16261,5,21.35,6,0.0 +16261,31,12.5,2,0.0 +16261,43,46,46,0.0 +16261,47,9.5,26,0.0 +16261,59,55,20,0.0 +16261,29,123.79,36,0.0 +16261,54,7.45,17,0.0 +16261,65,21.05,4,0.0 +16261,49,20,4,0.0 +16261,51,53,28,0.0 +16261,19,9.2,23,0.0 +16261,9,97,49,0.0 +16261,52,7,50,0.0 +16261,66,17,1,0.0 +16261,16,17.45,13,0.0 +16261,57,19.5,14,0.0 +16261,63,43.9,41,0.0 +16261,1,18,47,0.0 +16261,77,13,50,0.0 +16261,2,19,24,0.0 +16261,27,43.9,30,0.0 +16261,35,18,18,0.0 +16261,50,16.25,48,0.0 +16261,48,12.75,8,0.0 +16261,39,18,28,0.0 +16261,3,10,12,0.0 +16261,69,36,46,0.0 +16261,18,62.5,46,0.0 +16261,12,38,17,0.0 +16261,25,14,15,0.0 +16261,24,4.5,37,0.0 +16261,20,81,13,0.0 +16261,61,28.5,50,0.0 +16262,26,31.23,22,0.0 +16262,46,12,50,0.0 +16262,10,31,22,0.0 +16262,14,23.25,29,0.0 +16262,16,17.45,42,0.0 +16262,76,18,20,0.0 +16262,22,21,48,0.0 +16262,41,9.65,4,0.0 +16262,24,4.5,47,0.0 +16262,63,43.9,14,0.0 +16262,6,25,8,0.0 +16262,60,34,7,0.0 +16262,17,39,48,0.0 +16262,9,97,12,0.0 +16262,36,19,46,0.0 +16262,27,43.9,20,0.0 +16262,12,38,23,0.0 +16263,10,31,44,0.0 +16263,5,21.35,12,0.0 +16263,33,2.5,40,0.0 +16263,42,14,9,0.0 +16263,8,40,16,0.0 +16263,28,45.6,19,0.0 +16263,53,32.8,16,0.0 +16263,45,9.5,49,0.0 +16263,70,15,18,0.0 +16263,19,9.2,35,0.0 +16263,23,9,41,0.0 +16263,68,12.5,49,0.0 +16263,38,263.5,5,0.0 +16263,49,20,32,0.0 +16263,54,7.45,3,0.0 +16263,17,39,32,0.0 +16263,55,24,14,0.0 +16263,21,10,3,0.0 +16263,34,14,4,0.0 +16263,47,9.5,31,0.0 +16263,50,16.25,44,0.0 +16263,35,18,45,0.0 +16263,32,32,28,0.0 +16263,69,36,1,0.0 +16263,2,19,40,0.0 +16263,60,34,50,0.0 +16263,41,9.65,29,0.0 +16263,37,26,33,0.0 +16263,27,43.9,32,0.0 +16263,29,123.79,33,0.0 +16263,16,17.45,6,0.0 +16263,30,25.89,46,0.0 +16263,46,12,41,0.0 +16263,71,21.5,4,0.0 +16263,22,21,42,0.0 +16264,65,21.05,8,0.0 +16264,45,9.5,22,0.0 +16264,4,22,8,0.0 +16264,50,16.25,40,0.0 +16264,17,39,43,0.0 +16264,72,34.8,23,0.0 +16264,76,18,36,0.0 +16264,54,7.45,38,0.0 +16264,30,25.89,33,0.0 +16264,10,31,33,0.0 +16264,18,62.5,16,0.0 +16264,19,9.2,21,0.0 +16264,58,13.25,10,0.0 +16264,49,20,43,0.0 +16264,75,7.75,15,0.0 +16264,73,15,29,0.0 +16264,27,43.9,5,0.0 +16264,25,14,29,0.0 +16264,16,17.45,45,0.0 +16264,5,21.35,45,0.0 +16264,69,36,21,0.0 +16264,8,40,24,0.0 +16264,55,24,9,0.0 +16264,34,14,33,0.0 +16264,11,21,20,0.0 +16264,59,55,32,0.0 +16264,1,18,18,0.0 +16264,53,32.8,26,0.0 +16264,33,2.5,49,0.0 +16264,35,18,31,0.0 +16264,63,43.9,33,0.0 +16264,66,17,6,0.0 +16264,40,18.4,13,0.0 +16264,68,12.5,39,0.0 +16264,31,12.5,41,0.0 +16264,14,23.25,6,0.0 +16264,43,46,49,0.0 +16264,12,38,32,0.0 +16264,71,21.5,46,0.0 +16264,3,10,38,0.0 +16264,28,45.6,25,0.0 +16264,61,28.5,24,0.0 +16264,67,14,7,0.0 +16264,48,12.75,28,0.0 +16264,70,15,39,0.0 +16264,74,10,10,0.0 +16264,44,19.45,6,0.0 +16264,29,123.79,40,0.0 +16264,52,7,18,0.0 +16264,7,30,16,0.0 +16264,51,53,43,0.0 +16264,62,49.3,35,0.0 +16264,32,32,37,0.0 +16264,24,4.5,48,0.0 +16264,26,31.23,47,0.0 +16264,15,15.5,1,0.0 +16264,23,9,33,0.0 +16264,21,10,24,0.0 +16264,56,38,26,0.0 +16264,39,18,28,0.0 +16264,47,9.5,42,0.0 +16264,77,13,7,0.0 +16264,36,19,8,0.0 +16264,46,12,39,0.0 +16264,37,26,50,0.0 +16265,61,28.5,5,0.0 +16265,47,9.5,16,0.0 +16265,40,18.4,41,0.0 +16265,59,55,6,0.0 +16265,57,19.5,37,0.0 +16265,66,17,23,0.0 +16265,65,21.05,3,0.0 +16265,32,32,18,0.0 +16265,3,10,45,0.0 +16265,39,18,30,0.0 +16265,77,13,34,0.0 +16265,14,23.25,47,0.0 +16265,34,14,4,0.0 +16265,29,123.79,4,0.0 +16265,31,12.5,31,0.0 +16265,33,2.5,12,0.0 +16265,48,12.75,23,0.0 +16265,10,31,43,0.0 +16265,24,4.5,50,0.0 +16265,72,34.8,25,0.0 +16265,11,21,8,0.0 +16265,53,32.8,43,0.0 +16265,49,20,20,0.0 +16265,22,21,29,0.0 +16266,70,15,10,0.0 +16266,14,23.25,17,0.0 +16266,26,31.23,9,0.0 +16266,9,97,6,0.0 +16266,75,7.75,16,0.0 +16266,2,19,40,0.0 +16266,58,13.25,18,0.0 +16266,52,7,12,0.0 +16266,48,12.75,33,0.0 +16266,13,6,19,0.0 +16266,34,14,12,0.0 +16266,65,21.05,43,0.0 +16266,7,30,42,0.0 +16266,40,18.4,26,0.0 +16266,27,43.9,41,0.0 +16266,33,2.5,43,0.0 +16266,22,21,37,0.0 +16266,28,45.6,24,0.0 +16266,35,18,42,0.0 +16266,1,18,34,0.0 +16266,50,16.25,38,0.0 +16266,11,21,31,0.0 +16266,49,20,4,0.0 +16266,59,55,10,0.0 +16266,60,34,24,0.0 +16266,20,81,34,0.0 +16266,45,9.5,6,0.0 +16266,42,14,3,0.0 +16266,5,21.35,8,0.0 +16266,39,18,35,0.0 +16266,4,22,45,0.0 +16266,8,40,32,0.0 +16266,16,17.45,41,0.0 +16266,19,9.2,26,0.0 +16266,67,14,47,0.0 +16266,10,31,39,0.0 +16266,77,13,24,0.0 +16266,6,25,25,0.0 +16266,74,10,3,0.0 +16266,55,24,42,0.0 +16266,37,26,36,0.0 +16266,57,19.5,22,0.0 +16266,32,32,18,0.0 +16266,47,9.5,16,0.0 +16266,51,53,27,0.0 +16266,64,33.25,11,0.0 +16266,46,12,30,0.0 +16266,38,263.5,6,0.0 +16266,63,43.9,30,0.0 +16266,71,21.5,19,0.0 +16266,54,7.45,50,0.0 +16266,15,15.5,10,0.0 +16266,73,15,5,0.0 +16266,44,19.45,47,0.0 +16266,29,123.79,1,0.0 +16266,31,12.5,24,0.0 +16266,21,10,47,0.0 +16266,24,4.5,29,0.0 +16266,17,39,45,0.0 +16266,3,10,4,0.0 +16266,69,36,21,0.0 +16266,12,38,41,0.0 +16266,72,34.8,10,0.0 +16266,30,25.89,44,0.0 +16266,76,18,23,0.0 +16266,41,9.65,2,0.0 +16266,53,32.8,40,0.0 +16266,61,28.5,10,0.0 +16267,66,17,15,0.0 +16267,24,4.5,13,0.0 +16267,43,46,48,0.0 +16267,59,55,46,0.0 +16267,74,10,10,0.0 +16267,71,21.5,38,0.0 +16267,45,9.5,5,0.0 +16267,60,34,42,0.0 +16267,51,53,38,0.0 +16267,40,18.4,50,0.0 +16267,19,9.2,41,0.0 +16267,77,13,10,0.0 +16267,41,9.65,47,0.0 +16267,34,14,45,0.0 +16267,68,12.5,8,0.0 +16267,16,17.45,27,0.0 +16267,50,16.25,30,0.0 +16267,65,21.05,16,0.0 +16267,8,40,35,0.0 +16267,10,31,48,0.0 +16267,29,123.79,28,0.0 +16267,53,32.8,36,0.0 +16267,57,19.5,47,0.0 +16267,62,49.3,27,0.0 +16267,69,36,21,0.0 +16267,47,9.5,46,0.0 +16267,55,24,39,0.0 +16267,31,12.5,6,0.0 +16267,25,14,19,0.0 +16267,35,18,48,0.0 +16267,7,30,37,0.0 +16267,72,34.8,46,0.0 +16267,42,14,31,0.0 +16267,52,7,7,0.0 +16267,73,15,3,0.0 +16267,75,7.75,47,0.0 +16267,37,26,30,0.0 +16267,20,81,7,0.0 +16267,6,25,35,0.0 +16267,27,43.9,11,0.0 +16267,26,31.23,33,0.0 +16267,23,9,22,0.0 +16267,12,38,10,0.0 +16267,49,20,11,0.0 +16267,28,45.6,5,0.0 +16267,9,97,33,0.0 +16267,38,263.5,35,0.0 +16267,44,19.45,4,0.0 +16267,14,23.25,44,0.0 +16267,22,21,7,0.0 +16267,1,18,12,0.0 +16267,64,33.25,24,0.0 +16267,5,21.35,6,0.0 +16267,3,10,19,0.0 +16267,46,12,21,0.0 +16267,61,28.5,43,0.0 +16267,58,13.25,3,0.0 +16267,32,32,48,0.0 +16267,63,43.9,9,0.0 +16267,2,19,29,0.0 +16267,54,7.45,18,0.0 +16267,33,2.5,25,0.0 +16267,67,14,11,0.0 +16267,17,39,27,0.0 +16267,56,38,36,0.0 +16267,4,22,12,0.0 +16267,15,15.5,50,0.0 +16267,36,19,39,0.0 +16267,11,21,42,0.0 +16267,21,10,3,0.0 +16267,30,25.89,32,0.0 +16268,68,12.5,26,0.0 +16268,8,40,2,0.0 +16268,41,9.65,18,0.0 +16268,23,9,44,0.0 +16268,15,15.5,14,0.0 +16268,19,9.2,43,0.0 +16268,64,33.25,46,0.0 +16268,53,32.8,10,0.0 +16268,16,17.45,24,0.0 +16268,7,30,13,0.0 +16268,73,15,9,0.0 +16268,71,21.5,13,0.0 +16268,10,31,46,0.0 +16268,4,22,17,0.0 +16268,24,4.5,42,0.0 +16268,25,14,43,0.0 +16268,69,36,10,0.0 +16268,39,18,44,0.0 +16268,43,46,4,0.0 +16268,38,263.5,2,0.0 +16268,2,19,16,0.0 +16268,26,31.23,18,0.0 +16268,9,97,6,0.0 +16268,75,7.75,50,0.0 +16268,28,45.6,38,0.0 +16268,36,19,9,0.0 +16268,55,24,29,0.0 +16268,45,9.5,20,0.0 +16268,44,19.45,24,0.0 +16268,70,15,47,0.0 +16268,65,21.05,11,0.0 +16268,35,18,50,0.0 +16268,14,23.25,8,0.0 +16268,51,53,5,0.0 +16268,72,34.8,19,0.0 +16268,52,7,40,0.0 +16268,6,25,18,0.0 +16268,61,28.5,12,0.0 +16269,75,7.75,32,0.0 +16269,7,30,46,0.0 +16269,20,81,28,0.0 +16269,42,14,10,0.0 +16269,11,21,11,0.0 +16269,28,45.6,2,0.0 +16269,31,12.5,38,0.0 +16269,13,6,48,0.0 +16269,57,19.5,43,0.0 +16269,26,31.23,5,0.0 +16269,30,25.89,48,0.0 +16269,71,21.5,25,0.0 +16269,63,43.9,15,0.0 +16269,3,10,22,0.0 +16269,70,15,6,0.0 +16269,24,4.5,37,0.0 +16269,74,10,31,0.0 +16269,37,26,21,0.0 +16269,15,15.5,40,0.0 +16269,64,33.25,20,0.0 +16269,56,38,3,0.0 +16269,34,14,35,0.0 +16269,76,18,12,0.0 +16269,25,14,46,0.0 +16269,16,17.45,13,0.0 +16269,38,263.5,1,0.0 +16269,65,21.05,14,0.0 +16269,21,10,17,0.0 +16269,73,15,42,0.0 +16269,32,32,37,0.0 +16269,14,23.25,25,0.0 +16269,36,19,12,0.0 +16269,45,9.5,7,0.0 +16269,27,43.9,11,0.0 +16269,49,20,30,0.0 +16269,5,21.35,1,0.0 +16269,41,9.65,31,0.0 +16269,6,25,38,0.0 +16269,51,53,36,0.0 +16269,8,40,34,0.0 +16269,17,39,5,0.0 +16269,4,22,14,0.0 +16269,60,34,2,0.0 +16269,55,24,19,0.0 +16269,43,46,19,0.0 +16269,2,19,48,0.0 +16269,77,13,45,0.0 +16269,12,38,22,0.0 +16269,19,9.2,12,0.0 +16269,59,55,37,0.0 +16269,10,31,40,0.0 +16269,35,18,31,0.0 +16269,22,21,32,0.0 +16269,40,18.4,21,0.0 +16269,1,18,36,0.0 +16269,46,12,20,0.0 +16269,47,9.5,19,0.0 +16269,50,16.25,21,0.0 +16269,67,14,47,0.0 +16269,54,7.45,8,0.0 +16269,39,18,6,0.0 +16269,9,97,24,0.0 +16269,53,32.8,17,0.0 +16269,23,9,39,0.0 +16269,72,34.8,40,0.0 +16269,33,2.5,31,0.0 +16269,62,49.3,34,0.0 +16269,68,12.5,4,0.0 +16269,69,36,41,0.0 +16269,44,19.45,44,0.0 +16269,48,12.75,11,0.0 +16270,64,33.25,43,0.0 +16270,44,19.45,21,0.0 +16270,10,31,17,0.0 +16270,25,14,26,0.0 +16270,58,13.25,7,0.0 +16270,43,46,16,0.0 +16270,60,34,3,0.0 +16270,6,25,36,0.0 +16270,21,10,36,0.0 +16270,22,21,32,0.0 +16270,26,31.23,24,0.0 +16270,17,39,37,0.0 +16270,46,12,33,0.0 +16270,29,123.79,7,0.0 +16270,20,81,40,0.0 +16270,16,17.45,44,0.0 +16270,35,18,35,0.0 +16270,30,25.89,43,0.0 +16270,23,9,35,0.0 +16270,15,15.5,10,0.0 +16270,8,40,44,0.0 +16270,41,9.65,9,0.0 +16270,9,97,3,0.0 +16270,2,19,13,0.0 +16270,65,21.05,3,0.0 +16270,32,32,28,0.0 +16270,76,18,11,0.0 +16270,14,23.25,11,0.0 +16270,50,16.25,17,0.0 +16270,33,2.5,22,0.0 +16270,5,21.35,17,0.0 +16270,69,36,42,0.0 +16270,48,12.75,40,0.0 +16270,3,10,28,0.0 +16270,13,6,23,0.0 +16270,51,53,46,0.0 +16270,68,12.5,43,0.0 +16270,36,19,37,0.0 +16270,77,13,39,0.0 +16270,39,18,29,0.0 +16270,49,20,23,0.0 +16270,53,32.8,24,0.0 +16270,47,9.5,44,0.0 +16270,62,49.3,4,0.0 +16270,37,26,8,0.0 +16270,72,34.8,4,0.0 +16270,55,24,2,0.0 +16270,38,263.5,36,0.0 +16270,24,4.5,37,0.0 +16270,73,15,2,0.0 +16270,18,62.5,20,0.0 +16270,28,45.6,2,0.0 +16270,63,43.9,21,0.0 +16270,66,17,11,0.0 +16270,40,18.4,1,0.0 +16270,71,21.5,17,0.0 +16270,45,9.5,7,0.0 +16270,61,28.5,26,0.0 +16270,52,7,43,0.0 +16270,57,19.5,22,0.0 +16270,67,14,24,0.0 +16270,31,12.5,28,0.0 +16270,27,43.9,21,0.0 +16270,59,55,44,0.0 +16270,70,15,4,0.0 +16270,75,7.75,8,0.0 +16270,11,21,10,0.0 +16270,56,38,3,0.0 +16270,12,38,15,0.0 +16270,34,14,33,0.0 +16270,1,18,9,0.0 +16270,54,7.45,50,0.0 +16270,19,9.2,43,0.0 +16270,74,10,20,0.0 +16270,42,14,10,0.0 +16270,7,30,31,0.0 +16270,4,22,11,0.0 +16271,27,43.9,45,0.0 +16271,2,19,3,0.0 +16271,72,34.8,44,0.0 +16271,28,45.6,13,0.0 +16271,71,21.5,36,0.0 +16271,63,43.9,36,0.0 +16271,73,15,2,0.0 +16271,76,18,8,0.0 +16271,1,18,21,0.0 +16271,70,15,19,0.0 +16271,5,21.35,12,0.0 +16271,41,9.65,10,0.0 +16271,15,15.5,32,0.0 +16271,77,13,26,0.0 +16271,35,18,32,0.0 +16271,54,7.45,32,0.0 +16271,38,263.5,32,0.0 +16271,30,25.89,33,0.0 +16271,6,25,28,0.0 +16271,64,33.25,38,0.0 +16271,67,14,18,0.0 +16271,69,36,16,0.0 +16271,44,19.45,12,0.0 +16271,16,17.45,15,0.0 +16271,34,14,29,0.0 +16271,33,2.5,13,0.0 +16271,11,21,2,0.0 +16271,68,12.5,19,0.0 +16272,59,55,9,0.0 +16272,28,45.6,19,0.0 +16272,43,46,41,0.0 +16272,51,53,10,0.0 +16272,25,14,21,0.0 +16272,35,18,49,0.0 +16272,77,13,40,0.0 +16272,60,34,40,0.0 +16272,66,17,13,0.0 +16272,16,17.45,22,0.0 +16272,7,30,49,0.0 +16272,44,19.45,6,0.0 +16272,36,19,17,0.0 +16272,31,12.5,28,0.0 +16272,11,21,12,0.0 +16272,58,13.25,42,0.0 +16272,13,6,12,0.0 +16272,6,25,27,0.0 +16272,74,10,29,0.0 +16272,10,31,32,0.0 +16272,39,18,6,0.0 +16272,22,21,6,0.0 +16272,24,4.5,8,0.0 +16272,50,16.25,38,0.0 +16272,26,31.23,27,0.0 +16272,57,19.5,37,0.0 +16272,15,15.5,33,0.0 +16272,1,18,6,0.0 +16272,75,7.75,16,0.0 +16272,12,38,36,0.0 +16273,32,32,14,0.0 +16273,68,12.5,24,0.0 +16273,44,19.45,25,0.0 +16273,38,263.5,16,0.0 +16273,28,45.6,8,0.0 +16273,42,14,27,0.0 +16273,36,19,8,0.0 +16273,15,15.5,41,0.0 +16273,52,7,29,0.0 +16273,54,7.45,38,0.0 +16273,66,17,1,0.0 +16273,67,14,26,0.0 +16273,6,25,29,0.0 +16273,63,43.9,25,0.0 +16273,55,24,6,0.0 +16273,25,14,38,0.0 +16273,65,21.05,3,0.0 +16273,35,18,4,0.0 +16273,14,23.25,29,0.0 +16273,16,17.45,45,0.0 +16273,13,6,42,0.0 +16273,40,18.4,47,0.0 +16273,43,46,9,0.0 +16273,4,22,1,0.0 +16273,34,14,22,0.0 +16273,45,9.5,33,0.0 +16273,9,97,31,0.0 +16273,8,40,12,0.0 +16273,64,33.25,9,0.0 +16273,46,12,26,0.0 +16273,51,53,13,0.0 +16273,75,7.75,41,0.0 +16273,61,28.5,11,0.0 +16273,58,13.25,22,0.0 +16273,22,21,50,0.0 +16273,19,9.2,44,0.0 +16273,72,34.8,10,0.0 +16273,56,38,33,0.0 +16273,11,21,38,0.0 +16273,53,32.8,34,0.0 +16273,23,9,24,0.0 +16273,41,9.65,4,0.0 +16273,62,49.3,29,0.0 +16273,10,31,29,0.0 +16274,4,22,14,0.0 +16274,60,34,6,0.0 +16274,25,14,11,0.0 +16274,12,38,6,0.0 +16274,72,34.8,22,0.0 +16274,48,12.75,46,0.0 +16274,64,33.25,41,0.0 +16274,57,19.5,10,0.0 +16274,10,31,10,0.0 +16274,36,19,41,0.0 +16274,22,21,48,0.0 +16274,5,21.35,15,0.0 +16274,17,39,36,0.0 +16274,32,32,28,0.0 +16274,45,9.5,1,0.0 +16274,13,6,35,0.0 +16274,52,7,42,0.0 +16274,71,21.5,1,0.0 +16274,41,9.65,12,0.0 +16274,47,9.5,26,0.0 +16274,42,14,6,0.0 +16274,65,21.05,35,0.0 +16274,56,38,40,0.0 +16274,14,23.25,32,0.0 +16274,23,9,21,0.0 +16274,40,18.4,19,0.0 +16274,3,10,1,0.0 +16274,69,36,5,0.0 +16274,55,24,7,0.0 +16274,62,49.3,10,0.0 +16274,49,20,21,0.0 +16274,50,16.25,6,0.0 +16274,53,32.8,21,0.0 +16274,44,19.45,49,0.0 +16274,21,10,21,0.0 +16274,9,97,14,0.0 +16274,28,45.6,50,0.0 +16274,19,9.2,20,0.0 +16274,8,40,25,0.0 +16274,76,18,45,0.0 +16274,63,43.9,50,0.0 +16274,30,25.89,33,0.0 +16274,66,17,19,0.0 +16274,38,263.5,13,0.0 +16274,11,21,8,0.0 +16274,33,2.5,6,0.0 +16275,43,46,35,0.0 +16275,30,25.89,50,0.0 +16275,15,15.5,32,0.0 +16275,31,12.5,41,0.0 +16275,54,7.45,24,0.0 +16275,71,21.5,19,0.0 +16275,49,20,5,0.0 +16275,40,18.4,33,0.0 +16275,46,12,49,0.0 +16275,4,22,10,0.0 +16275,76,18,43,0.0 +16275,24,4.5,37,0.0 +16275,50,16.25,43,0.0 +16275,69,36,39,0.0 +16275,2,19,26,0.0 +16275,65,21.05,35,0.0 +16275,37,26,26,0.0 +16275,51,53,45,0.0 +16275,12,38,8,0.0 +16275,9,97,9,0.0 +16275,75,7.75,11,0.0 +16275,27,43.9,10,0.0 +16275,35,18,26,0.0 +16275,6,25,34,0.0 +16275,36,19,37,0.0 +16275,32,32,7,0.0 +16275,17,39,41,0.0 +16275,64,33.25,45,0.0 +16275,39,18,20,0.0 +16275,14,23.25,9,0.0 +16275,68,12.5,24,0.0 +16275,10,31,26,0.0 +16275,41,9.65,27,0.0 +16275,20,81,22,0.0 +16275,5,21.35,8,0.0 +16275,8,40,50,0.0 +16275,48,12.75,27,0.0 +16275,45,9.5,30,0.0 +16275,42,14,3,0.0 +16275,72,34.8,32,0.0 +16275,47,9.5,18,0.0 +16275,77,13,6,0.0 +16275,66,17,21,0.0 +16275,25,14,47,0.0 +16275,62,49.3,37,0.0 +16275,59,55,15,0.0 +16275,13,6,49,0.0 +16275,23,9,48,0.0 +16275,1,18,6,0.0 +16275,22,21,20,0.0 +16275,67,14,10,0.0 +16275,55,24,33,0.0 +16275,34,14,50,0.0 +16275,29,123.79,27,0.0 +16275,56,38,15,0.0 +16275,21,10,7,0.0 +16275,52,7,45,0.0 +16275,61,28.5,1,0.0 +16275,70,15,25,0.0 +16275,73,15,34,0.0 +16275,44,19.45,16,0.0 +16276,72,34.8,10,0.0 +16276,15,15.5,20,0.0 +16276,69,36,35,0.0 +16276,55,24,50,0.0 +16276,28,45.6,2,0.0 +16276,19,9.2,42,0.0 +16276,26,31.23,10,0.0 +16276,11,21,44,0.0 +16276,73,15,50,0.0 +16276,1,18,21,0.0 +16276,32,32,44,0.0 +16276,38,263.5,41,0.0 +16276,49,20,2,0.0 +16276,64,33.25,16,0.0 +16276,57,19.5,32,0.0 +16276,36,19,2,0.0 +16276,58,13.25,22,0.0 +16276,63,43.9,33,0.0 +16276,4,22,5,0.0 +16276,41,9.65,31,0.0 +16276,27,43.9,46,0.0 +16276,50,16.25,1,0.0 +16276,75,7.75,46,0.0 +16276,13,6,12,0.0 +16276,5,21.35,16,0.0 +16276,61,28.5,44,0.0 +16276,7,30,48,0.0 +16276,45,9.5,48,0.0 +16276,43,46,28,0.0 +16276,33,2.5,4,0.0 +16276,67,14,50,0.0 +16276,34,14,45,0.0 +16276,52,7,29,0.0 +16276,21,10,1,0.0 +16276,6,25,6,0.0 +16276,39,18,24,0.0 +16276,23,9,24,0.0 +16276,65,21.05,42,0.0 +16276,12,38,39,0.0 +16276,77,13,44,0.0 +16276,10,31,5,0.0 +16276,30,25.89,26,0.0 +16276,18,62.5,42,0.0 +16276,53,32.8,16,0.0 +16276,74,10,33,0.0 +16276,71,21.5,21,0.0 +16276,35,18,42,0.0 +16276,31,12.5,15,0.0 +16276,2,19,30,0.0 +16276,76,18,5,0.0 +16276,44,19.45,16,0.0 +16276,42,14,27,0.0 +16276,70,15,30,0.0 +16276,3,10,12,0.0 +16276,20,81,18,0.0 +16276,24,4.5,42,0.0 +16276,40,18.4,46,0.0 +16276,14,23.25,28,0.0 +16276,59,55,44,0.0 +16276,8,40,38,0.0 +16276,46,12,11,0.0 +16276,54,7.45,14,0.0 +16276,68,12.5,29,0.0 +16276,16,17.45,15,0.0 +16276,29,123.79,45,0.0 +16277,40,18.4,48,0.0 +16277,5,21.35,22,0.0 +16277,49,20,31,0.0 +16277,3,10,33,0.0 +16277,60,34,16,0.0 +16277,29,123.79,21,0.0 +16277,21,10,19,0.0 +16277,20,81,11,0.0 +16277,2,19,1,0.0 +16277,50,16.25,19,0.0 +16277,58,13.25,49,0.0 +16277,52,7,17,0.0 +16277,69,36,4,0.0 +16277,56,38,17,0.0 +16277,32,32,36,0.0 +16277,4,22,40,0.0 +16277,1,18,37,0.0 +16277,6,25,3,0.0 +16277,28,45.6,7,0.0 +16277,65,21.05,27,0.0 +16277,73,15,13,0.0 +16277,64,33.25,14,0.0 +16277,11,21,26,0.0 +16277,54,7.45,33,0.0 +16277,33,2.5,26,0.0 +16277,46,12,10,0.0 +16277,38,263.5,48,0.0 +16277,53,32.8,5,0.0 +16277,14,23.25,20,0.0 +16277,68,12.5,24,0.0 +16277,57,19.5,49,0.0 +16277,48,12.75,9,0.0 +16277,61,28.5,5,0.0 +16277,9,97,6,0.0 +16277,22,21,44,0.0 +16277,77,13,46,0.0 +16277,51,53,8,0.0 +16277,36,19,12,0.0 +16277,23,9,27,0.0 +16277,55,24,41,0.0 +16277,35,18,11,0.0 +16277,34,14,27,0.0 +16277,30,25.89,17,0.0 +16277,70,15,47,0.0 +16277,42,14,41,0.0 +16277,37,26,42,0.0 +16277,25,14,16,0.0 +16277,31,12.5,40,0.0 +16277,10,31,6,0.0 +16277,45,9.5,33,0.0 +16277,59,55,45,0.0 +16277,16,17.45,8,0.0 +16278,68,12.5,19,0.0 +16278,22,21,28,0.0 +16278,24,4.5,48,0.0 +16278,5,21.35,28,0.0 +16278,51,53,17,0.0 +16278,72,34.8,5,0.0 +16278,32,32,4,0.0 +16278,52,7,13,0.0 +16278,61,28.5,12,0.0 +16278,73,15,12,0.0 +16278,12,38,45,0.0 +16278,6,25,9,0.0 +16278,33,2.5,38,0.0 +16278,34,14,25,0.0 +16278,35,18,41,0.0 +16278,43,46,12,0.0 +16278,4,22,43,0.0 +16278,75,7.75,34,0.0 +16278,63,43.9,2,0.0 +16278,66,17,12,0.0 +16278,39,18,45,0.0 +16278,58,13.25,11,0.0 +16278,41,9.65,47,0.0 +16278,15,15.5,47,0.0 +16278,14,23.25,2,0.0 +16278,7,30,26,0.0 +16278,20,81,48,0.0 +16278,53,32.8,47,0.0 +16278,47,9.5,2,0.0 +16278,21,10,40,0.0 +16278,45,9.5,44,0.0 +16278,69,36,39,0.0 +16278,19,9.2,21,0.0 +16278,23,9,21,0.0 +16278,65,21.05,47,0.0 +16278,11,21,43,0.0 +16278,31,12.5,10,0.0 +16278,60,34,4,0.0 +16278,27,43.9,20,0.0 +16278,76,18,32,0.0 +16278,48,12.75,22,0.0 +16278,17,39,20,0.0 +16278,10,31,47,0.0 +16278,38,263.5,42,0.0 +16278,77,13,40,0.0 +16278,57,19.5,16,0.0 +16278,74,10,5,0.0 +16278,26,31.23,22,0.0 +16278,59,55,50,0.0 +16278,1,18,5,0.0 +16278,18,62.5,4,0.0 +16278,55,24,14,0.0 +16278,13,6,35,0.0 +16278,54,7.45,16,0.0 +16278,62,49.3,5,0.0 +16278,9,97,12,0.0 +16278,28,45.6,34,0.0 +16278,71,21.5,47,0.0 +16278,29,123.79,28,0.0 +16278,44,19.45,18,0.0 +16278,64,33.25,45,0.0 +16278,16,17.45,41,0.0 +16278,37,26,6,0.0 +16278,67,14,6,0.0 +16278,30,25.89,9,0.0 +16278,3,10,41,0.0 +16278,40,18.4,40,0.0 +16278,56,38,18,0.0 +16278,42,14,43,0.0 +16278,2,19,3,0.0 +16279,36,19,5,0.0 +16279,35,18,42,0.0 +16279,8,40,7,0.0 +16279,47,9.5,38,0.0 +16279,27,43.9,32,0.0 +16279,67,14,14,0.0 +16279,6,25,43,0.0 +16279,75,7.75,12,0.0 +16279,70,15,36,0.0 +16279,33,2.5,39,0.0 +16279,62,49.3,9,0.0 +16279,18,62.5,9,0.0 +16279,71,21.5,15,0.0 +16279,51,53,49,0.0 +16279,40,18.4,19,0.0 +16279,11,21,29,0.0 +16279,24,4.5,35,0.0 +16279,10,31,26,0.0 +16279,77,13,30,0.0 +16279,60,34,6,0.0 +16279,38,263.5,47,0.0 +16279,54,7.45,34,0.0 +16279,3,10,44,0.0 +16279,32,32,30,0.0 +16279,55,24,26,0.0 +16279,57,19.5,35,0.0 +16279,23,9,27,0.0 +16279,69,36,12,0.0 +16279,12,38,46,0.0 +16279,13,6,17,0.0 +16279,49,20,48,0.0 +16279,14,23.25,42,0.0 +16279,46,12,43,0.0 +16279,44,19.45,37,0.0 +16279,17,39,2,0.0 +16279,28,45.6,49,0.0 +16279,43,46,14,0.0 +16279,68,12.5,8,0.0 +16279,56,38,44,0.0 +16279,58,13.25,26,0.0 +16279,59,55,33,0.0 +16279,16,17.45,17,0.0 +16279,31,12.5,14,0.0 +16279,21,10,36,0.0 +16279,42,14,9,0.0 +16279,53,32.8,29,0.0 +16279,19,9.2,25,0.0 +16279,4,22,33,0.0 +16279,9,97,15,0.0 +16279,66,17,14,0.0 +16280,60,34,20,0.0 +16280,35,18,17,0.0 +16280,40,18.4,22,0.0 +16280,65,21.05,14,0.0 +16280,22,21,39,0.0 +16280,23,9,6,0.0 +16280,42,14,32,0.0 +16280,44,19.45,50,0.0 +16280,68,12.5,20,0.0 +16280,70,15,44,0.0 +16280,57,19.5,34,0.0 +16280,50,16.25,7,0.0 +16280,73,15,5,0.0 +16280,11,21,22,0.0 +16280,15,15.5,37,0.0 +16280,29,123.79,13,0.0 +16280,19,9.2,24,0.0 +16280,1,18,49,0.0 +16280,28,45.6,10,0.0 +16280,64,33.25,50,0.0 +16280,38,263.5,49,0.0 +16280,10,31,12,0.0 +16280,37,26,21,0.0 +16280,13,6,19,0.0 +16280,47,9.5,30,0.0 +16280,58,13.25,29,0.0 +16280,77,13,31,0.0 +16280,63,43.9,10,0.0 +16280,34,14,8,0.0 +16280,51,53,26,0.0 +16280,25,14,26,0.0 +16280,2,19,30,0.0 +16280,43,46,41,0.0 +16280,55,24,11,0.0 +16280,18,62.5,33,0.0 +16280,56,38,1,0.0 +16280,74,10,44,0.0 +16280,33,2.5,2,0.0 +16280,3,10,20,0.0 +16280,21,10,35,0.0 +16280,66,17,4,0.0 +16280,17,39,40,0.0 +16280,59,55,14,0.0 +16280,27,43.9,5,0.0 +16280,67,14,7,0.0 +16280,54,7.45,20,0.0 +16280,9,97,17,0.0 +16281,31,12.5,43,0.0 +16281,19,9.2,24,0.0 +16281,17,39,41,0.0 +16281,34,14,15,0.0 +16281,29,123.79,48,0.0 +16281,54,7.45,24,0.0 +16281,68,12.5,13,0.0 +16281,41,9.65,41,0.0 +16281,20,81,47,0.0 +16281,22,21,45,0.0 +16281,61,28.5,47,0.0 +16281,36,19,12,0.0 +16281,8,40,39,0.0 +16281,62,49.3,21,0.0 +16281,60,34,6,0.0 +16281,52,7,13,0.0 +16281,6,25,28,0.0 +16281,14,23.25,31,0.0 +16281,46,12,30,0.0 +16281,12,38,13,0.0 +16281,32,32,8,0.0 +16281,43,46,9,0.0 +16281,4,22,9,0.0 +16281,23,9,30,0.0 +16281,75,7.75,28,0.0 +16281,77,13,25,0.0 +16281,15,15.5,7,0.0 +16281,64,33.25,12,0.0 +16281,27,43.9,36,0.0 +16281,50,16.25,49,0.0 +16281,66,17,23,0.0 +16281,7,30,30,0.0 +16282,72,34.8,1,0.0 +16282,67,14,36,0.0 +16282,75,7.75,8,0.0 +16282,70,15,37,0.0 +16282,6,25,18,0.0 +16282,46,12,23,0.0 +16282,32,32,47,0.0 +16282,59,55,34,0.0 +16282,39,18,37,0.0 +16282,77,13,42,0.0 +16282,43,46,22,0.0 +16282,13,6,27,0.0 +16282,23,9,43,0.0 +16282,71,21.5,25,0.0 +16282,52,7,27,0.0 +16282,65,21.05,43,0.0 +16282,68,12.5,39,0.0 +16282,16,17.45,24,0.0 +16282,4,22,49,0.0 +16282,37,26,3,0.0 +16282,63,43.9,37,0.0 +16282,53,32.8,25,0.0 +16282,17,39,15,0.0 +16283,27,43.9,41,0.0 +16283,76,18,28,0.0 +16283,33,2.5,6,0.0 +16283,52,7,26,0.0 +16283,71,21.5,12,0.0 +16283,39,18,27,0.0 +16283,51,53,28,0.0 +16283,18,62.5,31,0.0 +16283,7,30,14,0.0 +16283,24,4.5,50,0.0 +16283,58,13.25,37,0.0 +16283,60,34,16,0.0 +16283,8,40,44,0.0 +16283,56,38,1,0.0 +16283,74,10,50,0.0 +16283,14,23.25,16,0.0 +16283,6,25,16,0.0 +16283,42,14,16,0.0 +16283,25,14,32,0.0 +16283,63,43.9,14,0.0 +16283,9,97,43,0.0 +16283,15,15.5,40,0.0 +16283,77,13,15,0.0 +16283,30,25.89,32,0.0 +16283,35,18,41,0.0 +16283,62,49.3,27,0.0 +16283,28,45.6,41,0.0 +16283,36,19,30,0.0 +16283,67,14,16,0.0 +16283,19,9.2,24,0.0 +16283,66,17,15,0.0 +16283,3,10,5,0.0 +16283,45,9.5,49,0.0 +16283,44,19.45,39,0.0 +16283,10,31,44,0.0 +16283,59,55,30,0.0 +16283,53,32.8,42,0.0 +16283,41,9.65,3,0.0 +16283,29,123.79,10,0.0 +16283,34,14,27,0.0 +16283,61,28.5,26,0.0 +16283,46,12,39,0.0 +16283,68,12.5,33,0.0 +16283,75,7.75,25,0.0 +16283,50,16.25,39,0.0 +16283,40,18.4,1,0.0 +16283,47,9.5,15,0.0 +16283,64,33.25,7,0.0 +16283,48,12.75,23,0.0 +16283,2,19,15,0.0 +16283,26,31.23,20,0.0 +16283,23,9,23,0.0 +16283,12,38,20,0.0 +16283,43,46,2,0.0 +16284,61,28.5,9,0.0 +16284,68,12.5,9,0.0 +16284,34,14,36,0.0 +16284,77,13,30,0.0 +16284,69,36,8,0.0 +16284,28,45.6,4,0.0 +16284,44,19.45,15,0.0 +16284,1,18,33,0.0 +16284,73,15,27,0.0 +16284,38,263.5,29,0.0 +16284,16,17.45,35,0.0 +16284,45,9.5,25,0.0 +16284,29,123.79,24,0.0 +16284,74,10,36,0.0 +16284,41,9.65,12,0.0 +16284,71,21.5,36,0.0 +16284,25,14,48,0.0 +16284,17,39,7,0.0 +16284,32,32,35,0.0 +16284,11,21,25,0.0 +16284,6,25,7,0.0 +16284,36,19,38,0.0 +16284,55,24,11,0.0 +16284,67,14,29,0.0 +16284,21,10,4,0.0 +16284,70,15,11,0.0 +16284,53,32.8,41,0.0 +16284,51,53,32,0.0 +16284,42,14,24,0.0 +16284,54,7.45,2,0.0 +16284,2,19,15,0.0 +16284,26,31.23,10,0.0 +16284,8,40,27,0.0 +16284,50,16.25,43,0.0 +16284,59,55,16,0.0 +16284,52,7,9,0.0 +16284,65,21.05,13,0.0 +16284,46,12,29,0.0 +16284,33,2.5,12,0.0 +16284,15,15.5,18,0.0 +16284,66,17,7,0.0 +16284,23,9,39,0.0 +16284,48,12.75,7,0.0 +16284,49,20,15,0.0 +16284,47,9.5,28,0.0 +16284,63,43.9,7,0.0 +16284,19,9.2,6,0.0 +16284,37,26,49,0.0 +16284,4,22,23,0.0 +16284,5,21.35,49,0.0 +16284,7,30,29,0.0 +16284,76,18,20,0.0 +16284,24,4.5,27,0.0 +16284,64,33.25,49,0.0 +16284,31,12.5,48,0.0 +16284,14,23.25,30,0.0 +16284,10,31,3,0.0 +16284,40,18.4,37,0.0 +16284,3,10,30,0.0 +16284,75,7.75,38,0.0 +16284,13,6,48,0.0 +16285,18,62.5,46,0.0 +16285,13,6,11,0.0 +16285,37,26,24,0.0 +16285,49,20,32,0.0 +16285,66,17,26,0.0 +16285,22,21,33,0.0 +16285,58,13.25,38,0.0 +16285,42,14,10,0.0 +16285,50,16.25,27,0.0 +16285,70,15,15,0.0 +16285,46,12,17,0.0 +16285,29,123.79,18,0.0 +16285,31,12.5,20,0.0 +16285,15,15.5,38,0.0 +16285,56,38,44,0.0 +16285,53,32.8,22,0.0 +16285,67,14,38,0.0 +16285,64,33.25,19,0.0 +16285,45,9.5,50,0.0 +16285,1,18,20,0.0 +16285,77,13,40,0.0 +16285,74,10,36,0.0 +16285,5,21.35,6,0.0 +16285,62,49.3,38,0.0 +16285,3,10,1,0.0 +16285,38,263.5,1,0.0 +16285,19,9.2,44,0.0 +16285,55,24,17,0.0 +16285,11,21,29,0.0 +16285,59,55,32,0.0 +16285,17,39,1,0.0 +16285,73,15,17,0.0 +16285,72,34.8,36,0.0 +16285,30,25.89,17,0.0 +16285,71,21.5,13,0.0 +16285,48,12.75,37,0.0 +16285,52,7,14,0.0 +16285,24,4.5,46,0.0 +16285,16,17.45,27,0.0 +16285,4,22,35,0.0 +16285,35,18,29,0.0 +16285,28,45.6,50,0.0 +16285,47,9.5,19,0.0 +16285,61,28.5,45,0.0 +16285,36,19,40,0.0 +16285,7,30,23,0.0 +16285,69,36,12,0.0 +16285,20,81,7,0.0 +16285,76,18,7,0.0 +16285,44,19.45,34,0.0 +16285,6,25,42,0.0 +16285,75,7.75,29,0.0 +16285,10,31,45,0.0 +16285,14,23.25,29,0.0 +16285,51,53,37,0.0 +16285,54,7.45,39,0.0 +16285,34,14,9,0.0 +16285,23,9,8,0.0 +16285,26,31.23,2,0.0 +16285,39,18,2,0.0 +16285,68,12.5,30,0.0 +16285,25,14,44,0.0 +16286,26,31.23,1,0.0 +16286,65,21.05,11,0.0 +16286,45,9.5,21,0.0 +16286,67,14,42,0.0 +16286,71,21.5,32,0.0 +16286,2,19,36,0.0 +16286,10,31,13,0.0 +16286,77,13,16,0.0 +16286,19,9.2,20,0.0 +16286,51,53,10,0.0 +16286,46,12,13,0.0 +16286,22,21,22,0.0 +16286,8,40,26,0.0 +16287,24,4.5,19,0.0 +16287,4,22,7,0.0 +16287,39,18,16,0.0 +16287,16,17.45,27,0.0 +16287,48,12.75,6,0.0 +16287,3,10,5,0.0 +16287,49,20,7,0.0 +16287,47,9.5,22,0.0 +16287,6,25,26,0.0 +16287,57,19.5,8,0.0 +16287,32,32,44,0.0 +16287,38,263.5,14,0.0 +16287,36,19,16,0.0 +16287,40,18.4,25,0.0 +16287,53,32.8,41,0.0 +16287,67,14,5,0.0 +16287,19,9.2,6,0.0 +16287,1,18,40,0.0 +16287,65,21.05,47,0.0 +16287,34,14,21,0.0 +16287,74,10,25,0.0 +16287,28,45.6,44,0.0 +16287,68,12.5,42,0.0 +16287,33,2.5,46,0.0 +16287,26,31.23,35,0.0 +16287,10,31,50,0.0 +16287,44,19.45,30,0.0 +16287,17,39,22,0.0 +16287,20,81,12,0.0 +16288,73,15,14,0.0 +16288,32,32,37,0.0 +16288,31,12.5,15,0.0 +16288,39,18,30,0.0 +16288,18,62.5,49,0.0 +16288,17,39,6,0.0 +16288,1,18,49,0.0 +16288,48,12.75,3,0.0 +16288,44,19.45,30,0.0 +16288,19,9.2,11,0.0 +16288,60,34,23,0.0 +16288,50,16.25,12,0.0 +16288,11,21,11,0.0 +16288,40,18.4,28,0.0 +16288,36,19,2,0.0 +16288,76,18,35,0.0 +16288,75,7.75,3,0.0 +16288,53,32.8,42,0.0 +16288,5,21.35,26,0.0 +16288,51,53,36,0.0 +16288,28,45.6,14,0.0 +16288,49,20,34,0.0 +16288,54,7.45,50,0.0 +16288,13,6,10,0.0 +16288,66,17,21,0.0 +16288,4,22,47,0.0 +16288,29,123.79,28,0.0 +16288,69,36,27,0.0 +16288,34,14,4,0.0 +16288,38,263.5,22,0.0 +16288,59,55,30,0.0 +16288,16,17.45,26,0.0 +16288,71,21.5,9,0.0 +16288,41,9.65,24,0.0 +16288,25,14,16,0.0 +16288,65,21.05,4,0.0 +16288,77,13,43,0.0 +16288,74,10,34,0.0 +16288,33,2.5,5,0.0 +16288,70,15,36,0.0 +16288,12,38,14,0.0 +16288,46,12,44,0.0 +16288,43,46,28,0.0 +16288,8,40,42,0.0 +16288,64,33.25,36,0.0 +16288,58,13.25,48,0.0 +16288,15,15.5,26,0.0 +16288,37,26,48,0.0 +16288,63,43.9,17,0.0 +16288,27,43.9,35,0.0 +16288,23,9,21,0.0 +16288,14,23.25,9,0.0 +16288,10,31,8,0.0 +16288,45,9.5,43,0.0 +16288,24,4.5,13,0.0 +16288,42,14,27,0.0 +16288,20,81,35,0.0 +16288,68,12.5,37,0.0 +16288,57,19.5,34,0.0 +16288,9,97,45,0.0 +16288,52,7,1,0.0 +16288,21,10,7,0.0 +16289,2,19,23,0.0 +16289,13,6,41,0.0 +16289,12,38,41,0.0 +16289,70,15,48,0.0 +16289,14,23.25,46,0.0 +16289,62,49.3,34,0.0 +16289,46,12,34,0.0 +16289,55,24,14,0.0 +16289,10,31,42,0.0 +16289,64,33.25,28,0.0 +16289,25,14,2,0.0 +16289,39,18,35,0.0 +16289,50,16.25,35,0.0 +16289,8,40,46,0.0 +16290,24,4.5,21,0.0 +16290,61,28.5,1,0.0 +16290,6,25,50,0.0 +16290,9,97,48,0.0 +16290,11,21,44,0.0 +16290,10,31,6,0.0 +16290,8,40,50,0.0 +16290,46,12,9,0.0 +16290,38,263.5,29,0.0 +16290,18,62.5,30,0.0 +16290,58,13.25,28,0.0 +16290,35,18,27,0.0 +16290,41,9.65,41,0.0 +16290,32,32,11,0.0 +16290,68,12.5,9,0.0 +16290,22,21,8,0.0 +16290,62,49.3,2,0.0 +16290,34,14,27,0.0 +16290,31,12.5,25,0.0 +16290,4,22,45,0.0 +16290,17,39,6,0.0 +16290,74,10,25,0.0 +16290,20,81,32,0.0 +16291,40,18.4,46,0.0 +16291,5,21.35,17,0.0 +16291,74,10,25,0.0 +16291,36,19,40,0.0 +16291,50,16.25,42,0.0 +16291,24,4.5,50,0.0 +16291,2,19,26,0.0 +16291,54,7.45,36,0.0 +16291,47,9.5,27,0.0 +16291,60,34,40,0.0 +16291,77,13,47,0.0 +16291,69,36,5,0.0 +16291,10,31,38,0.0 +16291,12,38,11,0.0 +16291,67,14,36,0.0 +16291,52,7,42,0.0 +16291,29,123.79,28,0.0 +16291,57,19.5,6,0.0 +16291,14,23.25,13,0.0 +16291,70,15,34,0.0 +16291,11,21,49,0.0 +16291,28,45.6,49,0.0 +16291,23,9,16,0.0 +16291,7,30,30,0.0 +16291,17,39,28,0.0 +16291,59,55,1,0.0 +16291,58,13.25,50,0.0 +16291,73,15,22,0.0 +16291,64,33.25,39,0.0 +16291,43,46,49,0.0 +16291,46,12,32,0.0 +16291,22,21,7,0.0 +16291,20,81,13,0.0 +16291,21,10,30,0.0 +16291,65,21.05,33,0.0 +16291,55,24,22,0.0 +16291,71,21.5,25,0.0 +16291,56,38,28,0.0 +16291,30,25.89,35,0.0 +16291,3,10,2,0.0 +16291,27,43.9,3,0.0 +16291,75,7.75,34,0.0 +16291,4,22,34,0.0 +16291,1,18,13,0.0 +16291,68,12.5,45,0.0 +16291,66,17,2,0.0 +16291,61,28.5,42,0.0 +16291,72,34.8,2,0.0 +16291,49,20,32,0.0 +16292,68,12.5,17,0.0 +16293,15,15.5,39,0.0 +16293,75,7.75,48,0.0 +16293,63,43.9,34,0.0 +16293,6,25,19,0.0 +16293,40,18.4,36,0.0 +16293,4,22,50,0.0 +16293,67,14,40,0.0 +16293,5,21.35,41,0.0 +16293,21,10,33,0.0 +16293,57,19.5,17,0.0 +16293,20,81,13,0.0 +16293,18,62.5,23,0.0 +16293,36,19,28,0.0 +16293,49,20,39,0.0 +16293,69,36,50,0.0 +16293,45,9.5,34,0.0 +16293,76,18,5,0.0 +16293,58,13.25,43,0.0 +16293,7,30,26,0.0 +16293,35,18,9,0.0 +16293,54,7.45,28,0.0 +16293,31,12.5,27,0.0 +16293,10,31,8,0.0 +16293,34,14,32,0.0 +16293,27,43.9,38,0.0 +16293,29,123.79,35,0.0 +16293,30,25.89,9,0.0 +16293,32,32,14,0.0 +16293,23,9,47,0.0 +16293,11,21,34,0.0 +16293,43,46,2,0.0 +16293,24,4.5,26,0.0 +16293,74,10,17,0.0 +16293,22,21,42,0.0 +16293,38,263.5,23,0.0 +16293,37,26,3,0.0 +16293,53,32.8,48,0.0 +16293,61,28.5,12,0.0 +16293,59,55,23,0.0 +16293,56,38,44,0.0 +16293,12,38,26,0.0 +16293,47,9.5,49,0.0 +16293,60,34,21,0.0 +16293,17,39,49,0.0 +16293,33,2.5,37,0.0 +16293,73,15,7,0.0 +16293,13,6,50,0.0 +16293,26,31.23,9,0.0 +16293,65,21.05,6,0.0 +16293,41,9.65,46,0.0 +16293,25,14,23,0.0 +16293,16,17.45,28,0.0 +16293,3,10,25,0.0 +16293,51,53,44,0.0 +16293,2,19,50,0.0 +16293,48,12.75,39,0.0 +16293,64,33.25,16,0.0 +16293,72,34.8,16,0.0 +16293,55,24,27,0.0 +16293,50,16.25,18,0.0 +16293,28,45.6,27,0.0 +16293,62,49.3,41,0.0 +16293,46,12,23,0.0 +16293,14,23.25,8,0.0 +16293,42,14,33,0.0 +16293,44,19.45,3,0.0 +16293,71,21.5,1,0.0 +16293,19,9.2,41,0.0 +16293,68,12.5,11,0.0 +16293,1,18,47,0.0 +16293,9,97,43,0.0 +16293,39,18,33,0.0 +16293,77,13,12,0.0 +16293,8,40,37,0.0 +16293,66,17,26,0.0 +16293,52,7,16,0.0 +16294,52,7,44,0.0 +16294,4,22,12,0.0 +16295,50,16.25,38,0.0 +16295,65,21.05,25,0.0 +16295,56,38,24,0.0 +16295,70,15,26,0.0 +16295,47,9.5,38,0.0 +16295,66,17,14,0.0 +16295,34,14,27,0.0 +16295,32,32,11,0.0 +16295,36,19,5,0.0 +16295,77,13,12,0.0 +16295,23,9,46,0.0 +16295,73,15,40,0.0 +16295,25,14,27,0.0 +16295,42,14,50,0.0 +16295,17,39,35,0.0 +16295,75,7.75,13,0.0 +16295,3,10,49,0.0 +16295,30,25.89,41,0.0 +16295,51,53,36,0.0 +16295,53,32.8,14,0.0 +16295,16,17.45,7,0.0 +16295,12,38,32,0.0 +16295,55,24,12,0.0 +16295,22,21,47,0.0 +16295,60,34,3,0.0 +16296,44,19.45,2,0.0 +16296,50,16.25,43,0.0 +16296,71,21.5,24,0.0 +16296,20,81,9,0.0 +16296,31,12.5,47,0.0 +16296,45,9.5,43,0.0 +16296,42,14,14,0.0 +16296,52,7,21,0.0 +16296,24,4.5,15,0.0 +16296,4,22,9,0.0 +16296,29,123.79,31,0.0 +16296,47,9.5,32,0.0 +16296,11,21,45,0.0 +16296,77,13,34,0.0 +16296,37,26,15,0.0 +16296,68,12.5,35,0.0 +16296,2,19,48,0.0 +16296,27,43.9,21,0.0 +16296,5,21.35,9,0.0 +16296,66,17,26,0.0 +16296,49,20,12,0.0 +16296,3,10,20,0.0 +16296,36,19,41,0.0 +16296,74,10,17,0.0 +16296,23,9,35,0.0 +16296,69,36,6,0.0 +16296,73,15,16,0.0 +16296,30,25.89,38,0.0 +16296,13,6,21,0.0 +16296,59,55,12,0.0 +16296,35,18,46,0.0 +16296,63,43.9,4,0.0 +16296,22,21,17,0.0 +16296,61,28.5,15,0.0 +16296,54,7.45,11,0.0 +16296,34,14,39,0.0 +16296,55,24,39,0.0 +16296,16,17.45,47,0.0 +16296,39,18,33,0.0 +16296,10,31,6,0.0 +16296,43,46,50,0.0 +16296,56,38,46,0.0 +16296,6,25,2,0.0 +16297,68,12.5,23,0.0 +16298,44,19.45,33,0.0 +16299,33,2.5,22,0.0 +16299,44,19.45,43,0.0 +16299,43,46,41,0.0 +16299,42,14,36,0.0 +16299,41,9.65,7,0.0 +16299,13,6,43,0.0 +16299,37,26,19,0.0 +16299,36,19,11,0.0 +16299,53,32.8,25,0.0 +16299,17,39,38,0.0 +16299,11,21,30,0.0 +16299,31,12.5,41,0.0 +16299,40,18.4,9,0.0 +16299,69,36,4,0.0 +16299,47,9.5,14,0.0 +16299,21,10,24,0.0 +16299,63,43.9,30,0.0 +16299,29,123.79,17,0.0 +16299,9,97,34,0.0 +16299,32,32,39,0.0 +16299,48,12.75,43,0.0 +16299,24,4.5,33,0.0 +16299,4,22,14,0.0 +16299,23,9,11,0.0 +16299,57,19.5,50,0.0 +16299,5,21.35,8,0.0 +16299,75,7.75,45,0.0 +16299,39,18,35,0.0 +16299,64,33.25,25,0.0 +16299,71,21.5,30,0.0 +16299,60,34,15,0.0 +16299,61,28.5,30,0.0 +16299,73,15,47,0.0 +16299,3,10,35,0.0 +16299,70,15,39,0.0 +16299,30,25.89,37,0.0 +16299,68,12.5,26,0.0 +16299,7,30,8,0.0 +16299,28,45.6,14,0.0 +16299,74,10,31,0.0 +16299,34,14,10,0.0 +16299,15,15.5,3,0.0 +16299,16,17.45,38,0.0 +16299,77,13,9,0.0 +16299,65,21.05,50,0.0 +16299,14,23.25,33,0.0 +16299,46,12,26,0.0 +16299,52,7,18,0.0 +16299,55,24,10,0.0 +16299,35,18,6,0.0 +16299,54,7.45,27,0.0 +16299,50,16.25,32,0.0 +16299,26,31.23,7,0.0 +16299,2,19,24,0.0 +16299,51,53,13,0.0 +16299,49,20,18,0.0 +16299,25,14,6,0.0 +16299,76,18,28,0.0 +16299,12,38,47,0.0 +16299,1,18,30,0.0 +16299,8,40,23,0.0 +16299,27,43.9,29,0.0 +16299,10,31,24,0.0 +16299,22,21,28,0.0 +16299,58,13.25,2,0.0 +16299,19,9.2,15,0.0 +16299,56,38,18,0.0 +16299,72,34.8,44,0.0 +16299,62,49.3,27,0.0 +16299,66,17,19,0.0 +16299,45,9.5,23,0.0 +16300,30,25.89,28,0.0 +16300,20,81,23,0.0 +16300,37,26,31,0.0 +16301,55,24,15,0.0 +16301,52,7,24,0.0 +16301,59,55,29,0.0 +16301,40,18.4,11,0.0 +16301,24,4.5,21,0.0 +16301,65,21.05,26,0.0 +16301,68,12.5,26,0.0 +16301,54,7.45,4,0.0 +16301,58,13.25,10,0.0 +16301,14,23.25,10,0.0 +16301,72,34.8,4,0.0 +16301,73,15,2,0.0 +16301,67,14,37,0.0 +16301,61,28.5,44,0.0 +16301,13,6,31,0.0 +16301,9,97,2,0.0 +16301,45,9.5,3,0.0 +16301,69,36,33,0.0 +16301,47,9.5,19,0.0 +16301,46,12,33,0.0 +16301,53,32.8,31,0.0 +16301,63,43.9,5,0.0 +16301,29,123.79,1,0.0 +16301,56,38,47,0.0 +16301,23,9,12,0.0 +16301,20,81,4,0.0 +16301,51,53,43,0.0 +16301,7,30,49,0.0 +16301,3,10,33,0.0 +16301,36,19,50,0.0 +16301,12,38,34,0.0 +16301,4,22,29,0.0 +16301,57,19.5,16,0.0 +16301,71,21.5,10,0.0 +16301,62,49.3,39,0.0 +16301,41,9.65,20,0.0 +16301,33,2.5,19,0.0 +16301,28,45.6,14,0.0 +16301,75,7.75,31,0.0 +16301,43,46,43,0.0 +16301,32,32,6,0.0 +16301,27,43.9,48,0.0 +16301,49,20,50,0.0 +16301,76,18,45,0.0 +16301,66,17,46,0.0 +16302,18,62.5,28,0.0 +16302,33,2.5,48,0.0 +16302,37,26,38,0.0 +16302,45,9.5,20,0.0 +16302,3,10,47,0.0 +16302,36,19,31,0.0 +16302,69,36,4,0.0 +16302,40,18.4,39,0.0 +16302,24,4.5,36,0.0 +16302,50,16.25,49,0.0 +16302,25,14,41,0.0 +16302,73,15,15,0.0 +16302,44,19.45,8,0.0 +16302,4,22,11,0.0 +16302,2,19,20,0.0 +16302,55,24,7,0.0 +16302,52,7,19,0.0 +16302,41,9.65,1,0.0 +16302,21,10,34,0.0 +16302,60,34,7,0.0 +16302,10,31,19,0.0 +16302,54,7.45,45,0.0 +16302,19,9.2,26,0.0 +16302,76,18,46,0.0 +16302,6,25,3,0.0 +16302,42,14,22,0.0 +16302,29,123.79,39,0.0 +16302,64,33.25,10,0.0 +16302,51,53,10,0.0 +16302,20,81,28,0.0 +16302,14,23.25,18,0.0 +16302,56,38,10,0.0 +16302,31,12.5,24,0.0 +16302,15,15.5,20,0.0 +16302,22,21,29,0.0 +16302,12,38,37,0.0 +16302,34,14,10,0.0 +16302,39,18,16,0.0 +16302,53,32.8,15,0.0 +16302,13,6,40,0.0 +16302,72,34.8,32,0.0 +16302,23,9,35,0.0 +16302,65,21.05,20,0.0 +16302,75,7.75,21,0.0 +16302,16,17.45,1,0.0 +16302,5,21.35,38,0.0 +16302,74,10,22,0.0 +16302,43,46,20,0.0 +16302,68,12.5,8,0.0 +16302,9,97,27,0.0 +16302,67,14,44,0.0 +16302,26,31.23,3,0.0 +16302,71,21.5,30,0.0 +16302,1,18,19,0.0 +16302,49,20,13,0.0 +16302,59,55,42,0.0 +16302,66,17,25,0.0 +16302,8,40,30,0.0 +16302,30,25.89,10,0.0 +16302,17,39,13,0.0 +16302,57,19.5,46,0.0 +16302,7,30,13,0.0 +16302,70,15,14,0.0 +16302,61,28.5,14,0.0 +16302,27,43.9,2,0.0 +16302,63,43.9,18,0.0 +16302,11,21,18,0.0 +16302,35,18,49,0.0 +16302,28,45.6,2,0.0 +16302,32,32,16,0.0 +16302,47,9.5,33,0.0 +16302,62,49.3,26,0.0 +16302,46,12,38,0.0 +16302,58,13.25,49,0.0 +16302,77,13,25,0.0 +16302,38,263.5,42,0.0 +16302,48,12.75,37,0.0 +16303,29,123.79,18,0.0 +16303,45,9.5,33,0.0 +16303,71,21.5,16,0.0 +16303,53,32.8,16,0.0 +16303,73,15,4,0.0 +16303,67,14,8,0.0 +16303,32,32,30,0.0 +16303,30,25.89,12,0.0 +16303,49,20,17,0.0 +16303,58,13.25,9,0.0 +16303,44,19.45,9,0.0 +16303,46,12,20,0.0 +16303,33,2.5,48,0.0 +16303,18,62.5,15,0.0 +16303,69,36,37,0.0 +16303,43,46,44,0.0 +16303,50,16.25,39,0.0 +16303,15,15.5,7,0.0 +16303,10,31,24,0.0 +16303,19,9.2,26,0.0 +16303,6,25,35,0.0 +16303,40,18.4,32,0.0 +16303,54,7.45,39,0.0 +16303,9,97,15,0.0 +16303,63,43.9,48,0.0 +16303,52,7,4,0.0 +16303,41,9.65,6,0.0 +16303,2,19,47,0.0 +16303,24,4.5,25,0.0 +16303,37,26,4,0.0 +16303,77,13,43,0.0 +16303,51,53,38,0.0 +16303,36,19,1,0.0 +16303,22,21,15,0.0 +16303,7,30,29,0.0 +16303,68,12.5,47,0.0 +16303,57,19.5,8,0.0 +16303,42,14,24,0.0 +16303,39,18,27,0.0 +16303,70,15,47,0.0 +16303,13,6,1,0.0 +16303,34,14,4,0.0 +16303,11,21,27,0.0 +16303,26,31.23,17,0.0 +16303,17,39,39,0.0 +16303,27,43.9,26,0.0 +16303,55,24,14,0.0 +16303,1,18,23,0.0 +16303,12,38,33,0.0 +16303,59,55,24,0.0 +16303,56,38,48,0.0 +16303,76,18,33,0.0 +16303,20,81,17,0.0 +16303,65,21.05,45,0.0 +16303,66,17,35,0.0 +16303,61,28.5,49,0.0 +16303,8,40,20,0.0 +16303,64,33.25,12,0.0 +16303,23,9,20,0.0 +16303,74,10,24,0.0 +16303,60,34,37,0.0 +16303,31,12.5,6,0.0 +16303,75,7.75,33,0.0 +16303,5,21.35,10,0.0 +16303,25,14,14,0.0 +16303,14,23.25,28,0.0 +16304,14,23.25,43,0.0 +16304,65,21.05,32,0.0 +16304,21,10,45,0.0 +16304,42,14,15,0.0 +16304,16,17.45,48,0.0 +16304,50,16.25,26,0.0 +16304,26,31.23,21,0.0 +16304,74,10,6,0.0 +16304,31,12.5,24,0.0 +16304,53,32.8,32,0.0 +16304,19,9.2,34,0.0 +16304,58,13.25,24,0.0 +16304,51,53,20,0.0 +16304,30,25.89,41,0.0 +16304,38,263.5,5,0.0 +16304,43,46,21,0.0 +16304,6,25,38,0.0 +16304,20,81,28,0.0 +16304,8,40,42,0.0 +16304,77,13,7,0.0 +16304,49,20,13,0.0 +16304,72,34.8,43,0.0 +16304,15,15.5,4,0.0 +16304,47,9.5,40,0.0 +16304,63,43.9,9,0.0 +16304,69,36,4,0.0 +16304,36,19,34,0.0 +16304,54,7.45,20,0.0 +16304,44,19.45,35,0.0 +16304,64,33.25,11,0.0 +16304,22,21,1,0.0 +16304,9,97,24,0.0 +16304,56,38,32,0.0 +16304,27,43.9,8,0.0 +16304,33,2.5,47,0.0 +16304,73,15,21,0.0 +16304,10,31,15,0.0 +16304,24,4.5,50,0.0 +16304,66,17,35,0.0 +16304,52,7,8,0.0 +16304,62,49.3,10,0.0 +16304,61,28.5,41,0.0 +16304,76,18,49,0.0 +16304,41,9.65,30,0.0 +16304,34,14,4,0.0 +16304,45,9.5,29,0.0 +16304,12,38,23,0.0 +16304,18,62.5,50,0.0 +16304,23,9,14,0.0 +16304,13,6,10,0.0 +16304,68,12.5,38,0.0 +16304,75,7.75,37,0.0 +16304,11,21,17,0.0 +16304,32,32,12,0.0 +16304,71,21.5,33,0.0 +16304,7,30,31,0.0 +16304,37,26,15,0.0 +16304,25,14,5,0.0 +16304,2,19,39,0.0 +16304,1,18,6,0.0 +16304,39,18,14,0.0 +16304,35,18,27,0.0 +16304,28,45.6,33,0.0 +16304,70,15,27,0.0 +16304,55,24,43,0.0 +16304,59,55,19,0.0 +16304,57,19.5,39,0.0 +16304,67,14,28,0.0 +16304,4,22,25,0.0 +16304,60,34,11,0.0 +16304,17,39,31,0.0 +16304,5,21.35,13,0.0 +16305,7,30,50,0.0 +16305,58,13.25,45,0.0 +16305,22,21,36,0.0 +16305,49,20,42,0.0 +16305,56,38,11,0.0 +16305,71,21.5,37,0.0 +16305,26,31.23,25,0.0 +16305,57,19.5,19,0.0 +16305,35,18,49,0.0 +16305,40,18.4,23,0.0 +16305,51,53,1,0.0 +16305,32,32,5,0.0 +16305,2,19,40,0.0 +16305,66,17,23,0.0 +16305,59,55,24,0.0 +16305,69,36,37,0.0 +16305,76,18,7,0.0 +16305,54,7.45,6,0.0 +16305,1,18,50,0.0 +16305,31,12.5,42,0.0 +16305,14,23.25,3,0.0 +16305,34,14,44,0.0 +16305,38,263.5,21,0.0 +16305,46,12,47,0.0 +16305,41,9.65,9,0.0 +16305,12,38,20,0.0 +16305,27,43.9,33,0.0 +16305,30,25.89,23,0.0 +16305,25,14,38,0.0 +16305,36,19,13,0.0 +16305,16,17.45,48,0.0 +16305,33,2.5,22,0.0 +16305,63,43.9,3,0.0 +16305,21,10,42,0.0 +16305,15,15.5,12,0.0 +16305,44,19.45,20,0.0 +16305,29,123.79,20,0.0 +16305,10,31,30,0.0 +16305,42,14,17,0.0 +16305,64,33.25,39,0.0 +16305,48,12.75,36,0.0 +16305,6,25,46,0.0 +16305,8,40,31,0.0 +16305,60,34,19,0.0 +16305,72,34.8,34,0.0 +16305,24,4.5,43,0.0 +16305,37,26,50,0.0 +16305,75,7.75,13,0.0 +16305,3,10,12,0.0 +16305,47,9.5,30,0.0 +16305,11,21,23,0.0 +16305,68,12.5,36,0.0 +16305,50,16.25,50,0.0 +16305,45,9.5,31,0.0 +16305,67,14,3,0.0 +16305,65,21.05,1,0.0 +16305,4,22,37,0.0 +16305,52,7,41,0.0 +16305,43,46,25,0.0 +16305,70,15,43,0.0 +16306,70,15,2,0.0 +16306,55,24,13,0.0 +16306,60,34,39,0.0 +16306,48,12.75,49,0.0 +16306,11,21,33,0.0 +16306,54,7.45,5,0.0 +16306,63,43.9,31,0.0 +16306,36,19,2,0.0 +16306,13,6,16,0.0 +16306,8,40,20,0.0 +16306,68,12.5,43,0.0 +16306,32,32,13,0.0 +16306,72,34.8,34,0.0 +16306,28,45.6,36,0.0 +16306,33,2.5,46,0.0 +16306,15,15.5,34,0.0 +16306,73,15,45,0.0 +16306,58,13.25,22,0.0 +16306,71,21.5,40,0.0 +16306,65,21.05,13,0.0 +16306,56,38,23,0.0 +16306,19,9.2,15,0.0 +16306,41,9.65,34,0.0 +16306,67,14,33,0.0 +16306,25,14,34,0.0 +16306,30,25.89,11,0.0 +16306,44,19.45,10,0.0 +16306,77,13,29,0.0 +16306,18,62.5,19,0.0 +16306,17,39,48,0.0 +16306,23,9,26,0.0 +16306,53,32.8,10,0.0 +16306,12,38,27,0.0 +16306,20,81,34,0.0 +16306,31,12.5,7,0.0 +16306,24,4.5,17,0.0 +16306,34,14,26,0.0 +16306,50,16.25,7,0.0 +16306,64,33.25,25,0.0 +16306,1,18,20,0.0 +16306,45,9.5,7,0.0 +16306,37,26,49,0.0 +16306,16,17.45,30,0.0 +16306,26,31.23,46,0.0 +16306,76,18,3,0.0 +16306,75,7.75,29,0.0 +16306,2,19,33,0.0 +16306,6,25,9,0.0 +16306,21,10,19,0.0 +16306,29,123.79,26,0.0 +16306,52,7,25,0.0 +16306,7,30,9,0.0 +16306,59,55,31,0.0 +16306,43,46,22,0.0 +16306,14,23.25,20,0.0 +16306,38,263.5,48,0.0 +16306,69,36,45,0.0 +16306,4,22,30,0.0 +16307,62,49.3,49,0.0 +16307,64,33.25,2,0.0 +16307,19,9.2,36,0.0 +16307,36,19,38,0.0 +16307,66,17,29,0.0 +16307,7,30,46,0.0 +16307,22,21,2,0.0 +16307,48,12.75,11,0.0 +16307,59,55,21,0.0 +16307,42,14,47,0.0 +16308,16,17.45,24,0.0 +16308,33,2.5,38,0.0 +16308,71,21.5,11,0.0 +16308,62,49.3,1,0.0 +16308,6,25,22,0.0 +16308,52,7,15,0.0 +16308,7,30,39,0.0 +16308,61,28.5,11,0.0 +16308,46,12,33,0.0 +16308,53,32.8,34,0.0 +16308,8,40,43,0.0 +16309,61,28.5,44,0.0 +16309,70,15,22,0.0 +16309,65,21.05,16,0.0 +16309,66,17,20,0.0 +16309,15,15.5,39,0.0 +16309,67,14,13,0.0 +16309,54,7.45,49,0.0 +16309,28,45.6,27,0.0 +16309,42,14,50,0.0 +16309,43,46,34,0.0 +16309,33,2.5,46,0.0 +16309,22,21,23,0.0 +16309,8,40,9,0.0 +16309,34,14,29,0.0 +16309,75,7.75,3,0.0 +16309,7,30,26,0.0 +16309,1,18,24,0.0 +16309,74,10,45,0.0 +16309,17,39,22,0.0 +16309,23,9,45,0.0 +16309,63,43.9,11,0.0 +16309,51,53,47,0.0 +16309,68,12.5,18,0.0 +16309,30,25.89,14,0.0 +16309,69,36,44,0.0 +16309,49,20,18,0.0 +16309,11,21,47,0.0 +16309,9,97,41,0.0 +16309,21,10,6,0.0 +16309,47,9.5,37,0.0 +16309,50,16.25,21,0.0 +16310,70,15,32,0.0 +16310,34,14,50,0.0 +16310,13,6,42,0.0 +16310,71,21.5,11,0.0 +16310,60,34,44,0.0 +16310,63,43.9,43,0.0 +16310,11,21,49,0.0 +16310,58,13.25,8,0.0 +16310,37,26,34,0.0 +16310,59,55,14,0.0 +16310,25,14,10,0.0 +16310,36,19,11,0.0 +16310,73,15,1,0.0 +16310,76,18,14,0.0 +16310,5,21.35,49,0.0 +16310,48,12.75,50,0.0 +16310,61,28.5,24,0.0 +16310,9,97,16,0.0 +16310,18,62.5,32,0.0 +16310,12,38,34,0.0 +16310,19,9.2,20,0.0 +16310,27,43.9,39,0.0 +16310,51,53,14,0.0 +16311,77,13,21,0.0 +16311,61,28.5,24,0.0 +16311,70,15,40,0.0 +16311,29,123.79,48,0.0 +16311,6,25,20,0.0 +16311,21,10,25,0.0 +16311,36,19,1,0.0 +16311,71,21.5,50,0.0 +16311,17,39,13,0.0 +16311,31,12.5,5,0.0 +16311,27,43.9,6,0.0 +16311,26,31.23,45,0.0 +16311,16,17.45,46,0.0 +16311,69,36,12,0.0 +16311,5,21.35,26,0.0 +16311,12,38,33,0.0 +16311,23,9,24,0.0 +16311,42,14,12,0.0 +16311,1,18,50,0.0 +16311,49,20,29,0.0 +16311,68,12.5,3,0.0 +16311,13,6,21,0.0 +16311,35,18,9,0.0 +16311,3,10,5,0.0 +16311,7,30,17,0.0 +16311,38,263.5,29,0.0 +16311,43,46,47,0.0 +16311,32,32,44,0.0 +16311,24,4.5,25,0.0 +16311,75,7.75,29,0.0 +16311,65,21.05,33,0.0 +16311,9,97,24,0.0 +16311,72,34.8,11,0.0 +16311,47,9.5,45,0.0 +16311,53,32.8,13,0.0 +16311,60,34,38,0.0 +16311,63,43.9,34,0.0 +16311,14,23.25,44,0.0 +16311,52,7,6,0.0 +16311,51,53,25,0.0 +16311,66,17,13,0.0 +16311,56,38,28,0.0 +16311,25,14,8,0.0 +16311,18,62.5,47,0.0 +16311,15,15.5,41,0.0 +16311,33,2.5,6,0.0 +16311,58,13.25,20,0.0 +16311,37,26,10,0.0 +16311,41,9.65,22,0.0 +16311,10,31,11,0.0 +16311,76,18,9,0.0 +16311,11,21,7,0.0 +16311,64,33.25,14,0.0 +16311,73,15,12,0.0 +16311,54,7.45,11,0.0 +16311,67,14,31,0.0 +16311,59,55,47,0.0 +16311,39,18,13,0.0 +16311,34,14,50,0.0 +16311,62,49.3,50,0.0 +16311,22,21,21,0.0 +16311,28,45.6,47,0.0 +16311,4,22,22,0.0 +16311,57,19.5,19,0.0 +16311,45,9.5,24,0.0 +16311,2,19,39,0.0 +16311,50,16.25,11,0.0 +16311,40,18.4,30,0.0 +16311,8,40,50,0.0 +16311,44,19.45,35,0.0 +16311,30,25.89,11,0.0 +16311,46,12,7,0.0 +16311,74,10,38,0.0 +16312,29,123.79,11,0.0 +16312,75,7.75,26,0.0 +16312,4,22,10,0.0 +16312,13,6,32,0.0 +16312,61,28.5,41,0.0 +16312,40,18.4,32,0.0 +16312,28,45.6,28,0.0 +16312,76,18,6,0.0 +16312,10,31,4,0.0 +16312,73,15,18,0.0 +16312,53,32.8,33,0.0 +16312,65,21.05,46,0.0 +16312,36,19,1,0.0 +16312,45,9.5,43,0.0 +16312,52,7,19,0.0 +16312,15,15.5,32,0.0 +16312,26,31.23,37,0.0 +16312,12,38,45,0.0 +16312,2,19,3,0.0 +16312,1,18,32,0.0 +16312,21,10,38,0.0 +16312,25,14,20,0.0 +16312,24,4.5,35,0.0 +16312,38,263.5,45,0.0 +16312,43,46,48,0.0 +16312,11,21,14,0.0 +16312,20,81,32,0.0 +16312,44,19.45,33,0.0 +16312,3,10,35,0.0 +16312,35,18,34,0.0 +16312,46,12,13,0.0 +16312,74,10,47,0.0 +16312,41,9.65,27,0.0 +16313,14,23.25,7,0.0 +16313,66,17,46,0.0 +16313,24,4.5,32,0.0 +16313,38,263.5,8,0.0 +16313,28,45.6,34,0.0 +16313,35,18,34,0.0 +16313,4,22,30,0.0 +16313,16,17.45,4,0.0 +16313,72,34.8,31,0.0 +16313,65,21.05,30,0.0 +16314,7,30,37,0.0 +16315,42,14,9,0.0 +16315,15,15.5,3,0.0 +16315,33,2.5,28,0.0 +16315,9,97,24,0.0 +16315,25,14,36,0.0 +16315,39,18,8,0.0 +16315,29,123.79,3,0.0 +16315,76,18,5,0.0 +16315,55,24,38,0.0 +16315,18,62.5,26,0.0 +16315,10,31,9,0.0 +16315,60,34,26,0.0 +16315,16,17.45,2,0.0 +16315,5,21.35,10,0.0 +16315,12,38,10,0.0 +16315,41,9.65,33,0.0 +16315,70,15,38,0.0 +16315,19,9.2,10,0.0 +16315,61,28.5,44,0.0 +16315,32,32,47,0.0 +16316,70,15,8,0.0 +16316,71,21.5,39,0.0 +16316,66,17,2,0.0 +16316,38,263.5,27,0.0 +16316,28,45.6,47,0.0 +16316,16,17.45,31,0.0 +16316,44,19.45,19,0.0 +16316,24,4.5,49,0.0 +16316,54,7.45,45,0.0 +16316,4,22,33,0.0 +16316,52,7,49,0.0 +16316,23,9,12,0.0 +16316,8,40,26,0.0 +16316,72,34.8,4,0.0 +16316,67,14,27,0.0 +16316,13,6,21,0.0 +16316,60,34,3,0.0 +16316,40,18.4,22,0.0 +16316,7,30,2,0.0 +16316,57,19.5,44,0.0 +16316,27,43.9,26,0.0 +16316,26,31.23,32,0.0 +16316,61,28.5,24,0.0 +16316,12,38,39,0.0 +16316,20,81,30,0.0 +16316,10,31,12,0.0 +16316,43,46,46,0.0 +16316,62,49.3,33,0.0 +16316,18,62.5,1,0.0 +16316,22,21,10,0.0 +16316,15,15.5,41,0.0 +16316,69,36,15,0.0 +16316,29,123.79,12,0.0 +16316,68,12.5,45,0.0 +16316,51,53,36,0.0 +16316,35,18,24,0.0 +16316,76,18,42,0.0 +16316,9,97,25,0.0 +16316,6,25,46,0.0 +16316,5,21.35,46,0.0 +16316,14,23.25,33,0.0 +16316,1,18,49,0.0 +16316,55,24,47,0.0 +16316,30,25.89,4,0.0 +16316,21,10,19,0.0 +16316,53,32.8,33,0.0 +16316,50,16.25,28,0.0 +16316,19,9.2,24,0.0 +16316,48,12.75,50,0.0 +16316,74,10,26,0.0 +16316,59,55,17,0.0 +16316,75,7.75,29,0.0 +16316,41,9.65,28,0.0 +16316,56,38,21,0.0 +16316,31,12.5,3,0.0 +16316,3,10,7,0.0 +16316,25,14,17,0.0 +16316,63,43.9,41,0.0 +16316,33,2.5,41,0.0 +16316,64,33.25,9,0.0 +16316,42,14,36,0.0 +16316,77,13,34,0.0 +16316,47,9.5,30,0.0 +16316,58,13.25,20,0.0 +16316,36,19,22,0.0 +16316,32,32,7,0.0 +16316,17,39,48,0.0 +16316,39,18,30,0.0 +16316,11,21,37,0.0 +16316,46,12,34,0.0 +16316,73,15,24,0.0 +16317,47,9.5,14,0.0 +16317,24,4.5,46,0.0 +16317,58,13.25,12,0.0 +16317,33,2.5,48,0.0 +16317,3,10,15,0.0 +16317,35,18,39,0.0 +16317,53,32.8,26,0.0 +16317,42,14,5,0.0 +16317,50,16.25,9,0.0 +16317,19,9.2,29,0.0 +16317,9,97,28,0.0 +16317,68,12.5,30,0.0 +16317,77,13,20,0.0 +16317,7,30,34,0.0 +16317,65,21.05,9,0.0 +16317,70,15,10,0.0 +16317,18,62.5,14,0.0 +16317,16,17.45,46,0.0 +16317,32,32,23,0.0 +16317,64,33.25,17,0.0 +16318,7,30,50,0.0 +16318,16,17.45,43,0.0 +16318,70,15,16,0.0 +16318,75,7.75,6,0.0 +16318,14,23.25,43,0.0 +16318,53,32.8,5,0.0 +16318,59,55,3,0.0 +16318,52,7,22,0.0 +16318,73,15,34,0.0 +16318,55,24,8,0.0 +16318,60,34,22,0.0 +16318,2,19,35,0.0 +16318,1,18,41,0.0 +16318,77,13,41,0.0 +16318,49,20,26,0.0 +16318,36,19,7,0.0 +16318,43,46,50,0.0 +16318,13,6,26,0.0 +16318,6,25,43,0.0 +16318,31,12.5,19,0.0 +16318,30,25.89,12,0.0 +16318,57,19.5,19,0.0 +16318,26,31.23,7,0.0 +16318,32,32,17,0.0 +16318,48,12.75,14,0.0 +16318,69,36,36,0.0 +16318,11,21,22,0.0 +16318,62,49.3,49,0.0 +16318,41,9.65,23,0.0 +16318,15,15.5,34,0.0 +16318,24,4.5,49,0.0 +16318,63,43.9,5,0.0 +16318,22,21,12,0.0 +16318,4,22,40,0.0 +16318,72,34.8,18,0.0 +16319,57,19.5,49,0.0 +16319,9,97,31,0.0 +16319,61,28.5,38,0.0 +16319,25,14,47,0.0 +16319,76,18,15,0.0 +16319,10,31,5,0.0 +16319,7,30,29,0.0 +16319,44,19.45,17,0.0 +16319,56,38,9,0.0 +16319,18,62.5,45,0.0 +16319,52,7,40,0.0 +16319,50,16.25,44,0.0 +16319,3,10,38,0.0 +16319,65,21.05,28,0.0 +16319,35,18,39,0.0 +16319,16,17.45,36,0.0 +16319,17,39,42,0.0 +16319,21,10,25,0.0 +16319,33,2.5,46,0.0 +16319,46,12,8,0.0 +16319,11,21,31,0.0 +16319,58,13.25,34,0.0 +16319,45,9.5,33,0.0 +16319,64,33.25,12,0.0 +16319,36,19,34,0.0 +16319,39,18,43,0.0 +16319,6,25,3,0.0 +16319,4,22,39,0.0 +16319,22,21,31,0.0 +16319,1,18,36,0.0 +16319,60,34,6,0.0 +16319,27,43.9,15,0.0 +16319,23,9,50,0.0 +16319,70,15,11,0.0 +16319,14,23.25,47,0.0 +16319,69,36,47,0.0 +16319,15,15.5,48,0.0 +16319,55,24,11,0.0 +16319,67,14,37,0.0 +16319,66,17,48,0.0 +16320,32,32,23,0.0 +16320,75,7.75,21,0.0 +16320,70,15,8,0.0 +16320,52,7,4,0.0 +16320,62,49.3,6,0.0 +16320,74,10,46,0.0 +16320,58,13.25,2,0.0 +16320,77,13,30,0.0 +16320,3,10,48,0.0 +16320,27,43.9,4,0.0 +16320,8,40,3,0.0 +16320,49,20,46,0.0 +16320,46,12,34,0.0 +16320,61,28.5,31,0.0 +16320,14,23.25,48,0.0 +16321,19,9.2,42,0.0 +16321,77,13,36,0.0 +16321,53,32.8,47,0.0 +16321,13,6,37,0.0 +16321,61,28.5,13,0.0 +16321,9,97,35,0.0 +16321,59,55,30,0.0 +16321,20,81,5,0.0 +16321,37,26,15,0.0 +16321,36,19,9,0.0 +16321,42,14,50,0.0 +16321,23,9,33,0.0 +16321,38,263.5,35,0.0 +16321,28,45.6,29,0.0 +16321,7,30,49,0.0 +16321,5,21.35,6,0.0 +16321,21,10,21,0.0 +16321,52,7,26,0.0 +16321,48,12.75,13,0.0 +16321,55,24,16,0.0 +16321,6,25,43,0.0 +16321,4,22,14,0.0 +16321,56,38,42,0.0 +16321,14,23.25,15,0.0 +16321,58,13.25,7,0.0 +16321,26,31.23,14,0.0 +16321,65,21.05,42,0.0 +16322,25,14,34,0.0 +16322,22,21,31,0.0 +16322,31,12.5,35,0.0 +16322,75,7.75,7,0.0 +16322,1,18,44,0.0 +16322,47,9.5,46,0.0 +16322,49,20,4,0.0 +16322,55,24,23,0.0 +16322,23,9,35,0.0 +16322,40,18.4,11,0.0 +16322,37,26,29,0.0 +16322,27,43.9,41,0.0 +16322,46,12,48,0.0 +16322,56,38,43,0.0 +16322,28,45.6,39,0.0 +16322,48,12.75,25,0.0 +16322,17,39,9,0.0 +16322,21,10,37,0.0 +16322,61,28.5,3,0.0 +16322,72,34.8,43,0.0 +16322,62,49.3,5,0.0 +16322,10,31,20,0.0 +16322,63,43.9,11,0.0 +16322,65,21.05,34,0.0 +16322,64,33.25,23,0.0 +16322,38,263.5,16,0.0 +16322,41,9.65,47,0.0 +16322,43,46,41,0.0 +16322,14,23.25,11,0.0 +16322,20,81,27,0.0 +16322,9,97,9,0.0 +16322,13,6,1,0.0 +16322,50,16.25,25,0.0 +16322,57,19.5,27,0.0 +16322,74,10,22,0.0 +16322,24,4.5,50,0.0 +16322,15,15.5,48,0.0 +16322,70,15,21,0.0 +16322,51,53,17,0.0 +16322,16,17.45,44,0.0 +16322,71,21.5,15,0.0 +16322,34,14,42,0.0 +16322,5,21.35,50,0.0 +16322,69,36,48,0.0 +16322,29,123.79,25,0.0 +16322,26,31.23,44,0.0 +16322,66,17,37,0.0 +16322,39,18,25,0.0 +16322,3,10,4,0.0 +16322,76,18,31,0.0 +16322,44,19.45,13,0.0 +16322,77,13,42,0.0 +16322,30,25.89,26,0.0 +16322,6,25,27,0.0 +16322,19,9.2,23,0.0 +16322,60,34,44,0.0 +16322,33,2.5,28,0.0 +16322,2,19,14,0.0 +16322,68,12.5,44,0.0 +16322,58,13.25,41,0.0 +16322,12,38,8,0.0 +16322,67,14,27,0.0 +16323,77,13,3,0.0 +16323,17,39,38,0.0 +16323,61,28.5,36,0.0 +16323,1,18,15,0.0 +16323,41,9.65,50,0.0 +16323,54,7.45,10,0.0 +16323,15,15.5,47,0.0 +16323,7,30,25,0.0 +16323,30,25.89,31,0.0 +16323,53,32.8,33,0.0 +16323,13,6,12,0.0 +16323,26,31.23,8,0.0 +16323,31,12.5,19,0.0 +16323,71,21.5,49,0.0 +16323,50,16.25,22,0.0 +16323,16,17.45,18,0.0 +16323,11,21,4,0.0 +16324,12,38,9,0.0 +16324,33,2.5,19,0.0 +16324,22,21,32,0.0 +16324,63,43.9,38,0.0 +16324,39,18,7,0.0 +16324,28,45.6,1,0.0 +16324,2,19,1,0.0 +16324,30,25.89,18,0.0 +16324,19,9.2,8,0.0 +16324,6,25,42,0.0 +16324,54,7.45,24,0.0 +16324,20,81,27,0.0 +16324,10,31,32,0.0 +16324,25,14,17,0.0 +16324,16,17.45,14,0.0 +16324,15,15.5,19,0.0 +16325,65,21.05,26,0.0 +16325,74,10,14,0.0 +16325,58,13.25,43,0.0 +16325,64,33.25,21,0.0 +16325,73,15,41,0.0 +16325,77,13,11,0.0 +16325,12,38,20,0.0 +16325,57,19.5,7,0.0 +16325,76,18,41,0.0 +16325,61,28.5,48,0.0 +16325,46,12,46,0.0 +16325,21,10,28,0.0 +16325,23,9,13,0.0 +16325,53,32.8,37,0.0 +16325,25,14,12,0.0 +16325,49,20,30,0.0 +16325,48,12.75,42,0.0 +16325,60,34,41,0.0 +16325,35,18,30,0.0 +16325,56,38,27,0.0 +16325,26,31.23,24,0.0 +16325,31,12.5,3,0.0 +16326,64,33.25,37,0.0 +16326,66,17,24,0.0 +16326,9,97,21,0.0 +16326,76,18,45,0.0 +16326,30,25.89,27,0.0 +16326,10,31,21,0.0 +16326,2,19,46,0.0 +16326,47,9.5,11,0.0 +16326,51,53,16,0.0 +16326,37,26,15,0.0 +16326,60,34,2,0.0 +16326,69,36,33,0.0 +16326,73,15,16,0.0 +16326,14,23.25,28,0.0 +16326,65,21.05,24,0.0 +16326,58,13.25,1,0.0 +16326,22,21,48,0.0 +16326,26,31.23,48,0.0 +16326,13,6,31,0.0 +16326,35,18,3,0.0 +16326,17,39,42,0.0 +16326,61,28.5,19,0.0 +16326,42,14,45,0.0 +16326,38,263.5,42,0.0 +16326,15,15.5,24,0.0 +16326,67,14,13,0.0 +16326,20,81,43,0.0 +16326,5,21.35,39,0.0 +16326,39,18,36,0.0 +16326,23,9,46,0.0 +16326,19,9.2,44,0.0 +16326,41,9.65,15,0.0 +16326,25,14,49,0.0 +16327,56,38,27,0.0 +16327,55,24,12,0.0 +16327,60,34,28,0.0 +16327,16,17.45,36,0.0 +16327,18,62.5,22,0.0 +16327,2,19,44,0.0 +16327,57,19.5,50,0.0 +16327,8,40,3,0.0 +16327,50,16.25,25,0.0 +16327,43,46,39,0.0 +16327,6,25,10,0.0 +16327,46,12,43,0.0 +16327,54,7.45,34,0.0 +16328,20,81,26,0.0 +16328,51,53,34,0.0 +16328,31,12.5,20,0.0 +16328,50,16.25,27,0.0 +16328,49,20,41,0.0 +16328,55,24,29,0.0 +16328,4,22,32,0.0 +16328,73,15,21,0.0 +16328,77,13,48,0.0 +16328,70,15,50,0.0 +16328,57,19.5,14,0.0 +16328,43,46,2,0.0 +16328,1,18,9,0.0 +16328,35,18,14,0.0 +16328,40,18.4,45,0.0 +16328,5,21.35,40,0.0 +16328,15,15.5,6,0.0 +16328,42,14,37,0.0 +16328,69,36,31,0.0 +16328,67,14,23,0.0 +16328,38,263.5,9,0.0 +16328,56,38,39,0.0 +16328,19,9.2,34,0.0 +16328,3,10,36,0.0 +16328,21,10,13,0.0 +16328,48,12.75,12,0.0 +16328,23,9,15,0.0 +16328,17,39,44,0.0 +16328,11,21,38,0.0 +16328,29,123.79,47,0.0 +16328,14,23.25,13,0.0 +16328,16,17.45,13,0.0 +16328,33,2.5,19,0.0 +16328,58,13.25,37,0.0 +16328,62,49.3,20,0.0 +16328,6,25,41,0.0 +16328,66,17,49,0.0 +16328,52,7,36,0.0 +16328,60,34,48,0.0 +16328,65,21.05,37,0.0 +16328,34,14,50,0.0 +16328,61,28.5,12,0.0 +16328,10,31,19,0.0 +16328,72,34.8,27,0.0 +16328,64,33.25,3,0.0 +16328,37,26,36,0.0 +16328,12,38,13,0.0 +16328,47,9.5,5,0.0 +16328,22,21,16,0.0 +16328,25,14,19,0.0 +16328,7,30,41,0.0 +16328,13,6,17,0.0 +16328,54,7.45,40,0.0 +16328,27,43.9,39,0.0 +16328,39,18,10,0.0 +16328,32,32,33,0.0 +16328,71,21.5,27,0.0 +16328,28,45.6,32,0.0 +16328,36,19,46,0.0 +16329,59,55,27,0.0 +16329,72,34.8,45,0.0 +16329,46,12,39,0.0 +16329,29,123.79,1,0.0 +16329,76,18,5,0.0 +16329,36,19,46,0.0 +16329,62,49.3,1,0.0 +16329,42,14,20,0.0 +16329,30,25.89,27,0.0 +16329,37,26,14,0.0 +16329,41,9.65,42,0.0 +16329,11,21,49,0.0 +16329,39,18,40,0.0 +16329,4,22,41,0.0 +16329,28,45.6,15,0.0 +16329,21,10,36,0.0 +16329,40,18.4,26,0.0 +16329,54,7.45,23,0.0 +16329,48,12.75,36,0.0 +16329,20,81,34,0.0 +16329,49,20,47,0.0 +16329,18,62.5,50,0.0 +16329,64,33.25,21,0.0 +16329,8,40,41,0.0 +16329,70,15,23,0.0 +16329,47,9.5,39,0.0 +16329,50,16.25,47,0.0 +16329,26,31.23,45,0.0 +16329,68,12.5,8,0.0 +16329,22,21,13,0.0 +16329,2,19,25,0.0 +16329,44,19.45,39,0.0 +16329,14,23.25,1,0.0 +16329,12,38,1,0.0 +16329,75,7.75,25,0.0 +16329,1,18,2,0.0 +16329,65,21.05,21,0.0 +16329,43,46,46,0.0 +16329,19,9.2,37,0.0 +16329,16,17.45,25,0.0 +16329,24,4.5,26,0.0 +16329,33,2.5,25,0.0 +16329,27,43.9,29,0.0 +16329,63,43.9,27,0.0 +16329,66,17,1,0.0 +16329,77,13,12,0.0 +16329,45,9.5,24,0.0 +16329,67,14,6,0.0 +16329,35,18,11,0.0 +16329,38,263.5,42,0.0 +16329,5,21.35,35,0.0 +16329,6,25,47,0.0 +16329,74,10,6,0.0 +16329,15,15.5,28,0.0 +16329,51,53,35,0.0 +16330,31,12.5,10,0.0 +16330,29,123.79,43,0.0 +16330,46,12,29,0.0 +16330,33,2.5,24,0.0 +16330,4,22,14,0.0 +16330,52,7,19,0.0 +16330,28,45.6,44,0.0 +16330,37,26,18,0.0 +16330,13,6,48,0.0 +16330,22,21,32,0.0 +16330,35,18,31,0.0 +16330,41,9.65,25,0.0 +16330,62,49.3,21,0.0 +16330,65,21.05,30,0.0 +16330,76,18,13,0.0 +16330,64,33.25,46,0.0 +16330,32,32,5,0.0 +16330,17,39,29,0.0 +16330,75,7.75,8,0.0 +16330,2,19,13,0.0 +16330,19,9.2,24,0.0 +16330,56,38,39,0.0 +16330,68,12.5,45,0.0 +16330,43,46,44,0.0 +16330,1,18,12,0.0 +16330,45,9.5,46,0.0 +16330,36,19,22,0.0 +16330,26,31.23,20,0.0 +16330,8,40,29,0.0 +16330,20,81,44,0.0 +16330,49,20,46,0.0 +16330,5,21.35,23,0.0 +16330,7,30,37,0.0 +16330,70,15,2,0.0 +16330,50,16.25,36,0.0 +16330,3,10,39,0.0 +16330,27,43.9,27,0.0 +16330,38,263.5,12,0.0 +16330,58,13.25,1,0.0 +16330,14,23.25,24,0.0 +16330,59,55,17,0.0 +16330,24,4.5,9,0.0 +16330,47,9.5,9,0.0 +16330,10,31,38,0.0 +16330,39,18,37,0.0 +16330,16,17.45,41,0.0 +16330,53,32.8,45,0.0 +16330,63,43.9,32,0.0 +16330,54,7.45,6,0.0 +16330,18,62.5,30,0.0 +16330,34,14,50,0.0 +16330,66,17,29,0.0 +16330,73,15,1,0.0 +16330,61,28.5,16,0.0 +16330,25,14,15,0.0 +16330,6,25,35,0.0 +16330,12,38,17,0.0 +16330,40,18.4,7,0.0 +16330,67,14,46,0.0 +16330,23,9,33,0.0 +16330,51,53,32,0.0 +16330,77,13,42,0.0 +16330,30,25.89,50,0.0 +16330,57,19.5,27,0.0 +16330,44,19.45,36,0.0 +16331,12,38,30,0.0 +16331,19,9.2,39,0.0 +16331,30,25.89,31,0.0 +16331,21,10,50,0.0 +16331,77,13,34,0.0 +16331,44,19.45,27,0.0 +16331,7,30,21,0.0 +16331,62,49.3,14,0.0 +16331,41,9.65,36,0.0 +16331,55,24,15,0.0 +16331,15,15.5,28,0.0 +16331,35,18,37,0.0 +16331,46,12,45,0.0 +16331,40,18.4,6,0.0 +16331,66,17,1,0.0 +16331,42,14,25,0.0 +16331,76,18,40,0.0 +16331,14,23.25,3,0.0 +16331,13,6,30,0.0 +16331,45,9.5,9,0.0 +16331,10,31,43,0.0 +16331,49,20,4,0.0 +16331,27,43.9,24,0.0 +16331,63,43.9,8,0.0 +16331,6,25,32,0.0 +16331,57,19.5,19,0.0 +16331,17,39,37,0.0 +16331,32,32,31,0.0 +16331,5,21.35,50,0.0 +16331,9,97,48,0.0 +16331,75,7.75,13,0.0 +16331,52,7,11,0.0 +16331,25,14,38,0.0 +16331,37,26,42,0.0 +16331,64,33.25,49,0.0 +16331,16,17.45,28,0.0 +16331,60,34,31,0.0 +16331,51,53,11,0.0 +16331,28,45.6,41,0.0 +16331,43,46,47,0.0 +16331,72,34.8,37,0.0 +16331,24,4.5,39,0.0 +16331,58,13.25,19,0.0 +16331,8,40,46,0.0 +16331,65,21.05,22,0.0 +16331,1,18,48,0.0 +16331,48,12.75,20,0.0 +16331,50,16.25,48,0.0 +16331,4,22,40,0.0 +16331,36,19,9,0.0 +16332,20,81,27,0.0 +16332,8,40,31,0.0 +16332,7,30,1,0.0 +16332,14,23.25,46,0.0 +16332,73,15,8,0.0 +16332,21,10,23,0.0 +16332,43,46,48,0.0 +16332,37,26,11,0.0 +16332,42,14,24,0.0 +16332,22,21,42,0.0 +16332,23,9,2,0.0 +16332,13,6,46,0.0 +16332,41,9.65,13,0.0 +16332,52,7,25,0.0 +16332,53,32.8,20,0.0 +16332,49,20,43,0.0 +16333,45,9.5,47,0.0 +16333,67,14,38,0.0 +16333,27,43.9,18,0.0 +16333,31,12.5,39,0.0 +16333,40,18.4,25,0.0 +16333,20,81,44,0.0 +16333,32,32,13,0.0 +16333,65,21.05,44,0.0 +16333,75,7.75,26,0.0 +16333,48,12.75,17,0.0 +16333,59,55,7,0.0 +16333,12,38,40,0.0 +16333,37,26,7,0.0 +16333,36,19,47,0.0 +16333,39,18,44,0.0 +16333,17,39,31,0.0 +16333,3,10,45,0.0 +16333,62,49.3,48,0.0 +16333,44,19.45,11,0.0 +16333,34,14,16,0.0 +16333,35,18,21,0.0 +16333,61,28.5,35,0.0 +16333,54,7.45,7,0.0 +16333,47,9.5,39,0.0 +16333,55,24,20,0.0 +16333,43,46,36,0.0 +16333,49,20,22,0.0 +16333,56,38,27,0.0 +16333,52,7,15,0.0 +16333,29,123.79,17,0.0 +16333,42,14,47,0.0 +16333,26,31.23,48,0.0 +16333,22,21,19,0.0 +16333,70,15,37,0.0 +16333,63,43.9,16,0.0 +16333,7,30,27,0.0 +16333,74,10,42,0.0 +16333,30,25.89,3,0.0 +16333,72,34.8,26,0.0 +16333,58,13.25,19,0.0 +16333,53,32.8,13,0.0 +16333,19,9.2,27,0.0 +16333,41,9.65,5,0.0 +16333,1,18,42,0.0 +16333,69,36,44,0.0 +16333,57,19.5,9,0.0 +16333,33,2.5,18,0.0 +16334,67,14,31,0.0 +16334,69,36,45,0.0 +16334,46,12,48,0.0 +16334,59,55,28,0.0 +16334,75,7.75,35,0.0 +16334,71,21.5,26,0.0 +16335,68,12.5,16,0.0 +16335,63,43.9,44,0.0 +16335,66,17,15,0.0 +16335,26,31.23,23,0.0 +16335,32,32,34,0.0 +16335,45,9.5,29,0.0 +16335,8,40,11,0.0 +16335,29,123.79,26,0.0 +16335,14,23.25,29,0.0 +16335,39,18,21,0.0 +16335,38,263.5,3,0.0 +16335,28,45.6,6,0.0 +16335,3,10,50,0.0 +16335,65,21.05,48,0.0 +16335,57,19.5,32,0.0 +16335,24,4.5,16,0.0 +16335,51,53,29,0.0 +16335,73,15,20,0.0 +16335,22,21,29,0.0 +16335,18,62.5,44,0.0 +16335,31,12.5,30,0.0 +16335,21,10,42,0.0 +16335,50,16.25,21,0.0 +16335,76,18,26,0.0 +16335,16,17.45,32,0.0 +16335,25,14,14,0.0 +16335,43,46,27,0.0 +16335,42,14,35,0.0 +16335,61,28.5,19,0.0 +16335,30,25.89,6,0.0 +16335,19,9.2,39,0.0 +16335,5,21.35,9,0.0 +16335,56,38,3,0.0 +16335,67,14,20,0.0 +16335,75,7.75,5,0.0 +16335,70,15,5,0.0 +16335,60,34,6,0.0 +16335,12,38,31,0.0 +16335,69,36,5,0.0 +16335,10,31,22,0.0 +16335,7,30,26,0.0 +16335,74,10,18,0.0 +16335,11,21,31,0.0 +16335,17,39,30,0.0 +16335,48,12.75,23,0.0 +16335,13,6,1,0.0 +16335,77,13,31,0.0 +16335,37,26,18,0.0 +16335,64,33.25,3,0.0 +16335,27,43.9,49,0.0 +16335,35,18,2,0.0 +16335,46,12,42,0.0 +16335,36,19,34,0.0 +16335,15,15.5,16,0.0 +16335,20,81,39,0.0 +16335,71,21.5,13,0.0 +16335,34,14,21,0.0 +16335,6,25,43,0.0 +16335,72,34.8,18,0.0 +16335,23,9,7,0.0 +16335,59,55,48,0.0 +16335,4,22,16,0.0 +16335,53,32.8,47,0.0 +16335,58,13.25,21,0.0 +16335,40,18.4,4,0.0 +16335,44,19.45,14,0.0 +16336,64,33.25,30,0.0 +16336,75,7.75,27,0.0 +16336,25,14,49,0.0 +16336,59,55,26,0.0 +16336,15,15.5,13,0.0 +16336,63,43.9,16,0.0 +16336,1,18,50,0.0 +16336,42,14,30,0.0 +16336,71,21.5,40,0.0 +16336,53,32.8,42,0.0 +16336,10,31,7,0.0 +16336,13,6,39,0.0 +16336,20,81,29,0.0 +16336,6,25,24,0.0 +16336,69,36,43,0.0 +16336,33,2.5,39,0.0 +16336,3,10,14,0.0 +16336,22,21,7,0.0 +16336,56,38,9,0.0 +16336,40,18.4,11,0.0 +16336,60,34,20,0.0 +16336,51,53,41,0.0 +16336,11,21,43,0.0 +16336,8,40,16,0.0 +16336,52,7,30,0.0 +16336,30,25.89,2,0.0 +16336,57,19.5,10,0.0 +16336,19,9.2,22,0.0 +16336,72,34.8,46,0.0 +16336,18,62.5,3,0.0 +16336,38,263.5,36,0.0 +16336,68,12.5,13,0.0 +16336,55,24,17,0.0 +16336,61,28.5,13,0.0 +16336,39,18,26,0.0 +16336,74,10,10,0.0 +16336,54,7.45,39,0.0 +16336,70,15,11,0.0 +16336,48,12.75,6,0.0 +16336,5,21.35,7,0.0 +16336,28,45.6,14,0.0 +16336,65,21.05,9,0.0 +16336,29,123.79,34,0.0 +16336,66,17,16,0.0 +16336,21,10,28,0.0 +16336,49,20,49,0.0 +16336,77,13,49,0.0 +16336,17,39,7,0.0 +16336,32,32,35,0.0 +16336,46,12,1,0.0 +16336,16,17.45,5,0.0 +16336,73,15,12,0.0 +16336,76,18,25,0.0 +16336,41,9.65,42,0.0 +16336,12,38,44,0.0 +16336,50,16.25,31,0.0 +16336,36,19,15,0.0 +16336,24,4.5,14,0.0 +16336,35,18,21,0.0 +16336,67,14,30,0.0 +16336,7,30,42,0.0 +16336,27,43.9,22,0.0 +16336,45,9.5,20,0.0 +16336,62,49.3,37,0.0 +16336,58,13.25,45,0.0 +16336,31,12.5,9,0.0 +16336,34,14,7,0.0 +16336,2,19,48,0.0 +16336,9,97,35,0.0 +16336,26,31.23,22,0.0 +16336,44,19.45,11,0.0 +16336,37,26,15,0.0 +16336,4,22,49,0.0 +16336,23,9,24,0.0 +16336,14,23.25,1,0.0 +16336,47,9.5,3,0.0 +16336,43,46,5,0.0 +16337,49,20,34,0.0 +16337,70,15,20,0.0 +16337,46,12,20,0.0 +16337,40,18.4,25,0.0 +16337,3,10,3,0.0 +16337,76,18,5,0.0 +16337,55,24,39,0.0 +16337,63,43.9,27,0.0 +16337,61,28.5,26,0.0 +16337,12,38,42,0.0 +16337,16,17.45,33,0.0 +16337,62,49.3,18,0.0 +16337,41,9.65,31,0.0 +16337,32,32,12,0.0 +16337,69,36,23,0.0 +16337,26,31.23,13,0.0 +16337,34,14,21,0.0 +16338,51,53,13,0.0 +16338,8,40,2,0.0 +16338,55,24,28,0.0 +16338,60,34,33,0.0 +16338,71,21.5,8,0.0 +16338,45,9.5,32,0.0 +16338,57,19.5,1,0.0 +16338,31,12.5,49,0.0 +16338,28,45.6,28,0.0 +16338,19,9.2,46,0.0 +16338,40,18.4,49,0.0 +16338,75,7.75,2,0.0 +16338,11,21,3,0.0 +16338,39,18,8,0.0 +16338,42,14,46,0.0 +16338,35,18,44,0.0 +16338,23,9,32,0.0 +16338,49,20,39,0.0 +16338,38,263.5,6,0.0 +16338,58,13.25,35,0.0 +16338,12,38,7,0.0 +16338,46,12,16,0.0 +16338,62,49.3,49,0.0 +16338,29,123.79,43,0.0 +16338,13,6,11,0.0 +16338,18,62.5,4,0.0 +16338,1,18,29,0.0 +16338,56,38,28,0.0 +16338,47,9.5,34,0.0 +16338,33,2.5,13,0.0 +16338,6,25,5,0.0 +16338,17,39,4,0.0 +16338,36,19,47,0.0 +16338,61,28.5,48,0.0 +16338,68,12.5,16,0.0 +16338,43,46,42,0.0 +16338,44,19.45,1,0.0 +16338,53,32.8,29,0.0 +16339,26,31.23,26,0.0 +16339,22,21,24,0.0 +16339,63,43.9,30,0.0 +16339,19,9.2,38,0.0 +16339,28,45.6,11,0.0 +16340,5,21.35,10,0.0 +16340,38,263.5,21,0.0 +16340,56,38,3,0.0 +16340,31,12.5,8,0.0 +16340,54,7.45,19,0.0 +16340,35,18,46,0.0 +16340,72,34.8,49,0.0 +16340,22,21,42,0.0 +16340,2,19,27,0.0 +16340,44,19.45,36,0.0 +16340,71,21.5,50,0.0 +16340,40,18.4,27,0.0 +16340,1,18,39,0.0 +16340,29,123.79,4,0.0 +16340,48,12.75,13,0.0 +16340,9,97,42,0.0 +16340,67,14,44,0.0 +16340,20,81,35,0.0 +16340,76,18,38,0.0 +16340,74,10,41,0.0 +16340,18,62.5,42,0.0 +16340,50,16.25,35,0.0 +16340,57,19.5,37,0.0 +16340,42,14,43,0.0 +16340,11,21,30,0.0 +16340,24,4.5,35,0.0 +16340,23,9,25,0.0 +16340,59,55,21,0.0 +16340,45,9.5,22,0.0 +16340,34,14,21,0.0 +16340,32,32,22,0.0 +16340,14,23.25,25,0.0 +16340,17,39,22,0.0 +16340,21,10,24,0.0 +16340,6,25,11,0.0 +16340,28,45.6,49,0.0 +16340,47,9.5,2,0.0 +16340,63,43.9,14,0.0 +16340,65,21.05,45,0.0 +16340,10,31,22,0.0 +16340,41,9.65,26,0.0 +16340,26,31.23,50,0.0 +16340,36,19,21,0.0 +16340,60,34,1,0.0 +16340,77,13,39,0.0 +16340,43,46,48,0.0 +16340,55,24,13,0.0 +16340,58,13.25,31,0.0 +16340,61,28.5,26,0.0 +16340,19,9.2,47,0.0 +16340,4,22,15,0.0 +16340,64,33.25,43,0.0 +16340,27,43.9,31,0.0 +16340,3,10,10,0.0 +16341,23,9,17,0.0 +16341,15,15.5,34,0.0 +16341,9,97,11,0.0 +16341,41,9.65,25,0.0 +16341,61,28.5,38,0.0 +16341,30,25.89,24,0.0 +16341,1,18,25,0.0 +16341,22,21,13,0.0 +16341,70,15,35,0.0 +16341,74,10,9,0.0 +16341,56,38,29,0.0 +16341,19,9.2,1,0.0 +16341,51,53,46,0.0 +16341,35,18,43,0.0 +16341,63,43.9,47,0.0 +16341,8,40,50,0.0 +16341,27,43.9,36,0.0 +16341,68,12.5,33,0.0 +16341,72,34.8,9,0.0 +16341,28,45.6,40,0.0 +16341,3,10,44,0.0 +16341,32,32,35,0.0 +16341,10,31,1,0.0 +16342,46,12,30,0.0 +16342,42,14,1,0.0 +16342,16,17.45,40,0.0 +16342,3,10,49,0.0 +16342,19,9.2,33,0.0 +16342,36,19,2,0.0 +16342,6,25,13,0.0 +16342,54,7.45,7,0.0 +16342,49,20,39,0.0 +16342,44,19.45,46,0.0 +16342,4,22,10,0.0 +16342,74,10,22,0.0 +16342,34,14,17,0.0 +16342,68,12.5,7,0.0 +16342,70,15,43,0.0 +16342,77,13,43,0.0 +16342,72,34.8,10,0.0 +16342,50,16.25,13,0.0 +16342,45,9.5,16,0.0 +16342,59,55,15,0.0 +16342,20,81,3,0.0 +16342,10,31,37,0.0 +16342,76,18,40,0.0 +16342,47,9.5,42,0.0 +16342,7,30,21,0.0 +16342,26,31.23,14,0.0 +16342,14,23.25,27,0.0 +16342,53,32.8,36,0.0 +16342,43,46,9,0.0 +16342,11,21,38,0.0 +16342,71,21.5,16,0.0 +16342,38,263.5,35,0.0 +16342,65,21.05,21,0.0 +16342,58,13.25,36,0.0 +16342,57,19.5,35,0.0 +16342,60,34,6,0.0 +16342,27,43.9,21,0.0 +16342,8,40,25,0.0 +16342,31,12.5,36,0.0 +16342,24,4.5,37,0.0 +16342,56,38,10,0.0 +16342,23,9,36,0.0 +16342,55,24,48,0.0 +16342,52,7,3,0.0 +16342,5,21.35,14,0.0 +16342,73,15,38,0.0 +16342,41,9.65,5,0.0 +16342,18,62.5,39,0.0 +16342,30,25.89,10,0.0 +16342,48,12.75,1,0.0 +16342,75,7.75,17,0.0 +16342,62,49.3,20,0.0 +16342,1,18,40,0.0 +16342,2,19,14,0.0 +16342,61,28.5,49,0.0 +16342,13,6,29,0.0 +16342,32,32,27,0.0 +16342,33,2.5,19,0.0 +16342,22,21,38,0.0 +16342,25,14,23,0.0 +16342,12,38,28,0.0 +16342,35,18,46,0.0 +16342,21,10,5,0.0 +16343,57,19.5,12,0.0 +16343,52,7,42,0.0 +16343,67,14,27,0.0 +16343,25,14,47,0.0 +16343,45,9.5,50,0.0 +16343,61,28.5,21,0.0 +16343,71,21.5,36,0.0 +16343,65,21.05,43,0.0 +16343,30,25.89,22,0.0 +16343,4,22,12,0.0 +16343,37,26,43,0.0 +16343,11,21,44,0.0 +16343,39,18,23,0.0 +16343,23,9,9,0.0 +16343,34,14,45,0.0 +16343,41,9.65,13,0.0 +16343,44,19.45,9,0.0 +16343,3,10,21,0.0 +16343,14,23.25,27,0.0 +16343,27,43.9,4,0.0 +16343,31,12.5,16,0.0 +16343,46,12,31,0.0 +16343,59,55,25,0.0 +16343,40,18.4,23,0.0 +16343,19,9.2,22,0.0 +16343,7,30,48,0.0 +16343,75,7.75,16,0.0 +16343,33,2.5,5,0.0 +16343,18,62.5,1,0.0 +16343,56,38,25,0.0 +16343,53,32.8,39,0.0 +16343,63,43.9,15,0.0 +16343,60,34,48,0.0 +16343,64,33.25,20,0.0 +16343,20,81,50,0.0 +16343,36,19,31,0.0 +16343,29,123.79,8,0.0 +16343,8,40,26,0.0 +16343,35,18,1,0.0 +16343,10,31,14,0.0 +16343,62,49.3,17,0.0 +16343,70,15,40,0.0 +16343,17,39,19,0.0 +16343,1,18,22,0.0 +16343,5,21.35,25,0.0 +16343,28,45.6,30,0.0 +16343,68,12.5,42,0.0 +16343,58,13.25,15,0.0 +16343,66,17,44,0.0 +16343,38,263.5,20,0.0 +16344,56,38,47,0.0 +16344,7,30,48,0.0 +16344,21,10,45,0.0 +16344,32,32,22,0.0 +16344,8,40,30,0.0 +16344,67,14,10,0.0 +16344,45,9.5,5,0.0 +16344,1,18,20,0.0 +16344,49,20,2,0.0 +16344,22,21,18,0.0 +16344,43,46,33,0.0 +16344,75,7.75,16,0.0 +16344,55,24,14,0.0 +16344,53,32.8,6,0.0 +16344,68,12.5,41,0.0 +16344,65,21.05,15,0.0 +16344,10,31,18,0.0 +16344,48,12.75,20,0.0 +16344,77,13,8,0.0 +16344,57,19.5,47,0.0 +16345,6,25,13,0.0 +16345,15,15.5,13,0.0 +16345,57,19.5,41,0.0 +16345,33,2.5,49,0.0 +16345,68,12.5,26,0.0 +16345,39,18,45,0.0 +16345,3,10,16,0.0 +16345,34,14,46,0.0 +16345,17,39,48,0.0 +16345,16,17.45,7,0.0 +16346,48,12.75,39,0.0 +16346,3,10,19,0.0 +16346,22,21,5,0.0 +16346,46,12,22,0.0 +16346,56,38,44,0.0 +16346,54,7.45,4,0.0 +16346,29,123.79,39,0.0 +16346,23,9,9,0.0 +16346,44,19.45,42,0.0 +16346,71,21.5,49,0.0 +16346,4,22,20,0.0 +16346,21,10,50,0.0 +16346,30,25.89,17,0.0 +16346,9,97,22,0.0 +16346,41,9.65,40,0.0 +16346,77,13,34,0.0 +16346,66,17,50,0.0 +16346,28,45.6,8,0.0 +16346,25,14,35,0.0 +16346,34,14,20,0.0 +16346,11,21,40,0.0 +16346,47,9.5,8,0.0 +16346,32,32,37,0.0 +16346,1,18,13,0.0 +16346,57,19.5,3,0.0 +16346,2,19,11,0.0 +16346,15,15.5,28,0.0 +16346,67,14,25,0.0 +16346,39,18,29,0.0 +16346,74,10,9,0.0 +16346,73,15,30,0.0 +16346,72,34.8,27,0.0 +16346,68,12.5,2,0.0 +16346,13,6,25,0.0 +16346,61,28.5,11,0.0 +16346,43,46,46,0.0 +16346,12,38,7,0.0 +16346,17,39,19,0.0 +16346,60,34,45,0.0 +16346,24,4.5,45,0.0 +16346,20,81,12,0.0 +16346,38,263.5,44,0.0 +16346,59,55,36,0.0 +16346,58,13.25,4,0.0 +16346,27,43.9,22,0.0 +16346,18,62.5,49,0.0 +16346,49,20,44,0.0 +16346,14,23.25,44,0.0 +16346,76,18,36,0.0 +16346,37,26,13,0.0 +16346,40,18.4,10,0.0 +16346,31,12.5,26,0.0 +16346,8,40,47,0.0 +16346,69,36,33,0.0 +16346,64,33.25,36,0.0 +16346,75,7.75,26,0.0 +16346,16,17.45,36,0.0 +16346,36,19,43,0.0 +16346,55,24,42,0.0 +16347,25,14,41,0.0 +16347,34,14,45,0.0 +16347,75,7.75,8,0.0 +16347,18,62.5,15,0.0 +16347,30,25.89,14,0.0 +16347,3,10,18,0.0 +16347,60,34,36,0.0 +16347,29,123.79,1,0.0 +16347,70,15,39,0.0 +16347,11,21,17,0.0 +16347,58,13.25,27,0.0 +16347,7,30,16,0.0 +16347,15,15.5,40,0.0 +16347,45,9.5,35,0.0 +16347,23,9,38,0.0 +16347,9,97,3,0.0 +16347,2,19,49,0.0 +16347,40,18.4,35,0.0 +16347,56,38,49,0.0 +16347,33,2.5,2,0.0 +16347,42,14,11,0.0 +16347,47,9.5,3,0.0 +16347,19,9.2,26,0.0 +16347,20,81,2,0.0 +16347,26,31.23,15,0.0 +16347,49,20,14,0.0 +16347,36,19,42,0.0 +16347,71,21.5,47,0.0 +16347,62,49.3,44,0.0 +16347,8,40,29,0.0 +16347,16,17.45,45,0.0 +16347,54,7.45,11,0.0 +16347,31,12.5,48,0.0 +16347,59,55,25,0.0 +16347,53,32.8,23,0.0 +16347,68,12.5,31,0.0 +16347,48,12.75,19,0.0 +16348,12,38,44,0.0 +16348,50,16.25,35,0.0 +16348,64,33.25,13,0.0 +16348,4,22,21,0.0 +16348,22,21,49,0.0 +16348,29,123.79,20,0.0 +16348,47,9.5,16,0.0 +16348,51,53,13,0.0 +16348,27,43.9,35,0.0 +16348,5,21.35,49,0.0 +16348,34,14,3,0.0 +16348,7,30,13,0.0 +16348,62,49.3,35,0.0 +16348,28,45.6,14,0.0 +16348,74,10,45,0.0 +16348,13,6,40,0.0 +16348,8,40,33,0.0 +16348,43,46,2,0.0 +16348,2,19,23,0.0 +16348,60,34,15,0.0 +16348,40,18.4,23,0.0 +16348,20,81,34,0.0 +16348,55,24,42,0.0 +16348,15,15.5,24,0.0 +16348,25,14,44,0.0 +16348,21,10,38,0.0 +16348,36,19,31,0.0 +16348,39,18,8,0.0 +16348,77,13,6,0.0 +16348,69,36,40,0.0 +16348,17,39,23,0.0 +16348,6,25,23,0.0 +16348,32,32,47,0.0 +16348,75,7.75,5,0.0 +16348,54,7.45,13,0.0 +16348,49,20,20,0.0 +16349,66,17,37,0.0 +16349,44,19.45,11,0.0 +16349,38,263.5,35,0.0 +16349,69,36,10,0.0 +16349,56,38,48,0.0 +16349,27,43.9,22,0.0 +16349,42,14,31,0.0 +16349,7,30,30,0.0 +16349,25,14,23,0.0 +16349,39,18,21,0.0 +16349,9,97,50,0.0 +16349,43,46,37,0.0 +16349,1,18,22,0.0 +16349,18,62.5,8,0.0 +16349,37,26,19,0.0 +16349,61,28.5,48,0.0 +16349,24,4.5,12,0.0 +16349,17,39,5,0.0 +16349,70,15,8,0.0 +16349,13,6,33,0.0 +16349,29,123.79,7,0.0 +16349,55,24,16,0.0 +16349,75,7.75,7,0.0 +16349,3,10,3,0.0 +16349,23,9,48,0.0 +16349,12,38,23,0.0 +16349,15,15.5,6,0.0 +16349,67,14,14,0.0 +16349,60,34,5,0.0 +16349,49,20,16,0.0 +16349,41,9.65,43,0.0 +16349,74,10,31,0.0 +16349,58,13.25,10,0.0 +16349,47,9.5,17,0.0 +16349,32,32,26,0.0 +16349,51,53,11,0.0 +16349,5,21.35,25,0.0 +16349,52,7,17,0.0 +16349,14,23.25,44,0.0 +16349,40,18.4,41,0.0 +16349,64,33.25,50,0.0 +16349,57,19.5,13,0.0 +16349,54,7.45,3,0.0 +16349,10,31,50,0.0 +16349,48,12.75,42,0.0 +16349,65,21.05,13,0.0 +16349,31,12.5,5,0.0 +16349,36,19,41,0.0 +16349,20,81,21,0.0 +16349,33,2.5,27,0.0 +16349,4,22,34,0.0 +16349,72,34.8,10,0.0 +16349,22,21,17,0.0 +16349,30,25.89,36,0.0 +16349,6,25,48,0.0 +16349,77,13,18,0.0 +16349,62,49.3,29,0.0 +16349,76,18,6,0.0 +16349,21,10,22,0.0 +16349,28,45.6,3,0.0 +16349,68,12.5,15,0.0 +16349,50,16.25,44,0.0 +16349,59,55,17,0.0 +16349,53,32.8,42,0.0 +16349,34,14,14,0.0 +16349,11,21,15,0.0 +16349,45,9.5,10,0.0 +16349,8,40,4,0.0 +16349,63,43.9,24,0.0 +16349,2,19,45,0.0 +16349,71,21.5,7,0.0 +16349,73,15,16,0.0 +16349,46,12,21,0.0 +16349,26,31.23,41,0.0 +16349,16,17.45,45,0.0 +16349,35,18,8,0.0 +16349,19,9.2,3,0.0 +16350,63,43.9,34,0.0 +16350,9,97,11,0.0 +16350,43,46,22,0.0 +16350,27,43.9,23,0.0 +16350,76,18,48,0.0 +16350,3,10,25,0.0 +16350,56,38,5,0.0 +16350,74,10,15,0.0 +16350,64,33.25,24,0.0 +16350,36,19,11,0.0 +16350,66,17,15,0.0 +16350,1,18,6,0.0 +16350,38,263.5,24,0.0 +16350,6,25,42,0.0 +16350,2,19,29,0.0 +16350,29,123.79,32,0.0 +16350,70,15,23,0.0 +16350,73,15,5,0.0 +16350,21,10,30,0.0 +16350,25,14,44,0.0 +16350,59,55,44,0.0 +16350,52,7,28,0.0 +16350,16,17.45,3,0.0 +16350,11,21,25,0.0 +16350,67,14,8,0.0 +16350,14,23.25,37,0.0 +16350,5,21.35,13,0.0 +16350,17,39,42,0.0 +16350,62,49.3,28,0.0 +16350,51,53,23,0.0 +16350,55,24,32,0.0 +16350,47,9.5,21,0.0 +16350,30,25.89,14,0.0 +16350,12,38,6,0.0 +16350,58,13.25,19,0.0 +16350,48,12.75,44,0.0 +16350,7,30,3,0.0 +16350,42,14,16,0.0 +16350,4,22,23,0.0 +16350,19,9.2,8,0.0 +16350,20,81,27,0.0 +16350,18,62.5,1,0.0 +16350,49,20,34,0.0 +16350,31,12.5,5,0.0 +16350,75,7.75,27,0.0 +16351,16,17.45,43,0.0 +16351,10,31,14,0.0 +16351,13,6,25,0.0 +16351,66,17,19,0.0 +16351,64,33.25,8,0.0 +16351,18,62.5,15,0.0 +16351,42,14,43,0.0 +16351,53,32.8,30,0.0 +16351,22,21,29,0.0 +16351,67,14,40,0.0 +16351,24,4.5,46,0.0 +16351,23,9,39,0.0 +16351,17,39,22,0.0 +16351,7,30,4,0.0 +16351,29,123.79,16,0.0 +16351,59,55,42,0.0 +16351,8,40,30,0.0 +16351,34,14,37,0.0 +16351,68,12.5,14,0.0 +16351,46,12,30,0.0 +16351,76,18,38,0.0 +16351,39,18,49,0.0 +16351,15,15.5,42,0.0 +16351,26,31.23,19,0.0 +16351,54,7.45,40,0.0 +16351,63,43.9,43,0.0 +16351,27,43.9,49,0.0 +16351,51,53,6,0.0 +16351,73,15,4,0.0 +16351,19,9.2,44,0.0 +16351,5,21.35,38,0.0 +16351,36,19,12,0.0 +16351,61,28.5,23,0.0 +16351,20,81,21,0.0 +16351,31,12.5,45,0.0 +16351,25,14,43,0.0 +16351,74,10,31,0.0 +16351,21,10,27,0.0 +16351,30,25.89,7,0.0 +16351,75,7.75,35,0.0 +16351,9,97,18,0.0 +16351,48,12.75,27,0.0 +16351,65,21.05,44,0.0 +16351,3,10,19,0.0 +16351,43,46,48,0.0 +16351,2,19,39,0.0 +16351,35,18,16,0.0 +16351,52,7,13,0.0 +16351,1,18,22,0.0 +16351,11,21,34,0.0 +16351,50,16.25,34,0.0 +16351,41,9.65,24,0.0 +16351,6,25,42,0.0 +16351,49,20,47,0.0 +16351,47,9.5,45,0.0 +16351,70,15,6,0.0 +16351,4,22,42,0.0 +16351,33,2.5,44,0.0 +16351,14,23.25,39,0.0 +16351,77,13,41,0.0 +16351,38,263.5,26,0.0 +16351,56,38,38,0.0 +16351,37,26,24,0.0 +16351,44,19.45,32,0.0 +16351,45,9.5,18,0.0 +16351,40,18.4,12,0.0 +16351,71,21.5,49,0.0 +16351,62,49.3,45,0.0 +16351,72,34.8,11,0.0 +16351,32,32,19,0.0 +16351,60,34,8,0.0 +16351,58,13.25,6,0.0 +16351,28,45.6,32,0.0 +16352,13,6,7,0.0 +16352,44,19.45,3,0.0 +16352,46,12,40,0.0 +16352,29,123.79,4,0.0 +16352,14,23.25,30,0.0 +16352,73,15,43,0.0 +16352,25,14,14,0.0 +16352,70,15,44,0.0 +16352,27,43.9,8,0.0 +16352,5,21.35,38,0.0 +16352,35,18,24,0.0 +16352,41,9.65,42,0.0 +16352,64,33.25,15,0.0 +16352,11,21,2,0.0 +16352,1,18,49,0.0 +16352,34,14,36,0.0 +16352,20,81,8,0.0 +16352,33,2.5,50,0.0 +16352,48,12.75,2,0.0 +16352,12,38,9,0.0 +16352,66,17,16,0.0 +16352,50,16.25,36,0.0 +16352,49,20,25,0.0 +16352,56,38,18,0.0 +16352,39,18,10,0.0 +16352,60,34,50,0.0 +16352,26,31.23,14,0.0 +16352,21,10,43,0.0 +16352,74,10,30,0.0 +16352,67,14,5,0.0 +16352,8,40,7,0.0 +16352,40,18.4,50,0.0 +16352,76,18,12,0.0 +16352,17,39,49,0.0 +16352,47,9.5,48,0.0 +16352,58,13.25,23,0.0 +16352,59,55,15,0.0 +16352,38,263.5,21,0.0 +16352,37,26,24,0.0 +16352,71,21.5,28,0.0 +16352,51,53,50,0.0 +16352,19,9.2,32,0.0 +16352,42,14,33,0.0 +16352,52,7,14,0.0 +16352,75,7.75,45,0.0 +16353,72,34.8,32,0.0 +16353,75,7.75,33,0.0 +16353,10,31,16,0.0 +16353,67,14,5,0.0 +16353,48,12.75,43,0.0 +16353,15,15.5,48,0.0 +16353,20,81,29,0.0 +16353,54,7.45,35,0.0 +16353,27,43.9,7,0.0 +16353,21,10,14,0.0 +16353,8,40,27,0.0 +16353,69,36,33,0.0 +16353,65,21.05,27,0.0 +16353,5,21.35,45,0.0 +16353,56,38,38,0.0 +16353,37,26,10,0.0 +16353,53,32.8,43,0.0 +16353,7,30,11,0.0 +16353,22,21,23,0.0 +16353,35,18,46,0.0 +16353,74,10,28,0.0 +16353,11,21,17,0.0 +16353,55,24,5,0.0 +16353,40,18.4,4,0.0 +16353,49,20,50,0.0 +16353,45,9.5,50,0.0 +16353,44,19.45,49,0.0 +16353,61,28.5,38,0.0 +16353,42,14,15,0.0 +16353,26,31.23,33,0.0 +16353,14,23.25,40,0.0 +16353,6,25,44,0.0 +16353,19,9.2,28,0.0 +16353,24,4.5,47,0.0 +16353,12,38,43,0.0 +16353,71,21.5,49,0.0 +16354,6,25,44,0.0 +16354,61,28.5,14,0.0 +16354,8,40,25,0.0 +16354,2,19,2,0.0 +16354,15,15.5,22,0.0 +16354,69,36,36,0.0 +16354,30,25.89,49,0.0 +16354,55,24,24,0.0 +16354,74,10,42,0.0 +16354,50,16.25,39,0.0 +16354,77,13,22,0.0 +16354,65,21.05,21,0.0 +16354,34,14,3,0.0 +16354,48,12.75,49,0.0 +16354,52,7,8,0.0 +16354,41,9.65,19,0.0 +16354,21,10,39,0.0 +16354,4,22,13,0.0 +16354,54,7.45,18,0.0 +16354,62,49.3,18,0.0 +16354,26,31.23,21,0.0 +16354,40,18.4,18,0.0 +16354,56,38,41,0.0 +16354,20,81,43,0.0 +16354,24,4.5,18,0.0 +16354,11,21,17,0.0 +16354,23,9,9,0.0 +16354,71,21.5,46,0.0 +16354,17,39,50,0.0 +16354,57,19.5,26,0.0 +16354,58,13.25,17,0.0 +16354,67,14,14,0.0 +16354,64,33.25,43,0.0 +16354,10,31,49,0.0 +16354,9,97,50,0.0 +16354,5,21.35,18,0.0 +16354,27,43.9,1,0.0 +16354,70,15,46,0.0 +16354,33,2.5,32,0.0 +16354,73,15,17,0.0 +16354,76,18,20,0.0 +16354,1,18,22,0.0 +16354,16,17.45,48,0.0 +16354,63,43.9,47,0.0 +16354,51,53,31,0.0 +16354,59,55,47,0.0 +16354,60,34,4,0.0 +16354,39,18,25,0.0 +16354,36,19,50,0.0 +16354,42,14,34,0.0 +16354,12,38,28,0.0 +16354,45,9.5,45,0.0 +16354,29,123.79,21,0.0 +16354,68,12.5,42,0.0 +16354,18,62.5,10,0.0 +16354,72,34.8,28,0.0 +16354,47,9.5,34,0.0 +16354,25,14,7,0.0 +16354,13,6,30,0.0 +16354,19,9.2,17,0.0 +16354,43,46,25,0.0 +16354,66,17,11,0.0 +16354,31,12.5,37,0.0 +16354,37,26,8,0.0 +16354,32,32,3,0.0 +16354,22,21,26,0.0 +16354,49,20,45,0.0 +16354,14,23.25,8,0.0 +16354,35,18,10,0.0 +16354,75,7.75,12,0.0 +16354,3,10,36,0.0 +16354,53,32.8,50,0.0 +16355,38,263.5,15,0.0 +16355,68,12.5,42,0.0 +16356,41,9.65,33,0.0 +16356,66,17,6,0.0 +16356,69,36,32,0.0 +16356,15,15.5,37,0.0 +16356,8,40,50,0.0 +16356,75,7.75,15,0.0 +16356,34,14,32,0.0 +16356,26,31.23,15,0.0 +16356,37,26,32,0.0 +16356,2,19,10,0.0 +16356,28,45.6,14,0.0 +16356,24,4.5,30,0.0 +16356,40,18.4,20,0.0 +16356,49,20,20,0.0 +16356,42,14,11,0.0 +16356,6,25,4,0.0 +16356,59,55,37,0.0 +16356,60,34,22,0.0 +16356,45,9.5,34,0.0 +16356,61,28.5,49,0.0 +16356,30,25.89,37,0.0 +16356,29,123.79,18,0.0 +16356,65,21.05,8,0.0 +16356,56,38,47,0.0 +16356,71,21.5,17,0.0 +16356,68,12.5,36,0.0 +16356,13,6,30,0.0 +16356,73,15,6,0.0 +16356,46,12,20,0.0 +16356,35,18,27,0.0 +16356,74,10,36,0.0 +16356,50,16.25,29,0.0 +16356,14,23.25,3,0.0 +16356,38,263.5,14,0.0 +16356,17,39,31,0.0 +16356,23,9,48,0.0 +16356,20,81,37,0.0 +16356,39,18,38,0.0 +16356,55,24,41,0.0 +16356,64,33.25,50,0.0 +16357,9,97,16,0.0 +16357,6,25,44,0.0 +16357,30,25.89,46,0.0 +16357,45,9.5,10,0.0 +16357,74,10,47,0.0 +16357,75,7.75,12,0.0 +16357,36,19,34,0.0 +16357,70,15,8,0.0 +16357,5,21.35,6,0.0 +16357,57,19.5,43,0.0 +16357,16,17.45,47,0.0 +16357,28,45.6,16,0.0 +16357,19,9.2,33,0.0 +16357,50,16.25,10,0.0 +16357,26,31.23,11,0.0 +16357,4,22,47,0.0 +16357,21,10,15,0.0 +16357,49,20,4,0.0 +16357,46,12,23,0.0 +16357,18,62.5,20,0.0 +16357,61,28.5,23,0.0 +16357,31,12.5,22,0.0 +16357,68,12.5,23,0.0 +16357,59,55,39,0.0 +16357,34,14,22,0.0 +16357,69,36,6,0.0 +16357,62,49.3,41,0.0 +16357,38,263.5,9,0.0 +16357,25,14,50,0.0 +16357,53,32.8,25,0.0 +16358,13,6,26,0.0 +16358,33,2.5,47,0.0 +16358,65,21.05,11,0.0 +16358,5,21.35,16,0.0 +16358,23,9,12,0.0 +16358,2,19,23,0.0 +16358,1,18,5,0.0 +16358,21,10,29,0.0 +16358,47,9.5,1,0.0 +16358,15,15.5,37,0.0 +16358,62,49.3,29,0.0 +16358,26,31.23,32,0.0 +16358,24,4.5,31,0.0 +16358,11,21,29,0.0 +16358,72,34.8,33,0.0 +16358,51,53,33,0.0 +16358,57,19.5,19,0.0 +16358,50,16.25,35,0.0 +16358,3,10,9,0.0 +16358,60,34,7,0.0 +16358,48,12.75,16,0.0 +16358,9,97,28,0.0 +16358,42,14,50,0.0 +16358,56,38,42,0.0 +16358,37,26,9,0.0 +16358,53,32.8,42,0.0 +16358,4,22,17,0.0 +16358,75,7.75,21,0.0 +16358,58,13.25,8,0.0 +16358,22,21,12,0.0 +16358,61,28.5,43,0.0 +16358,28,45.6,34,0.0 +16358,30,25.89,29,0.0 +16358,10,31,6,0.0 +16358,18,62.5,15,0.0 +16358,45,9.5,23,0.0 +16358,74,10,34,0.0 +16358,68,12.5,10,0.0 +16358,17,39,24,0.0 +16358,76,18,44,0.0 +16358,20,81,43,0.0 +16358,40,18.4,1,0.0 +16358,55,24,10,0.0 +16358,7,30,26,0.0 +16358,52,7,12,0.0 +16358,39,18,33,0.0 +16358,8,40,43,0.0 +16358,14,23.25,39,0.0 +16358,31,12.5,29,0.0 +16358,77,13,17,0.0 +16358,46,12,2,0.0 +16358,66,17,15,0.0 +16358,44,19.45,12,0.0 +16358,29,123.79,20,0.0 +16358,59,55,8,0.0 +16358,43,46,46,0.0 +16359,35,18,23,0.0 +16359,12,38,34,0.0 +16359,61,28.5,35,0.0 +16359,51,53,37,0.0 +16359,30,25.89,43,0.0 +16359,10,31,48,0.0 +16359,3,10,49,0.0 +16359,56,38,45,0.0 +16359,74,10,37,0.0 +16359,27,43.9,19,0.0 +16359,4,22,24,0.0 +16359,16,17.45,27,0.0 +16359,14,23.25,30,0.0 +16359,25,14,2,0.0 +16359,6,25,20,0.0 +16359,21,10,47,0.0 +16359,72,34.8,15,0.0 +16359,44,19.45,24,0.0 +16359,39,18,40,0.0 +16359,53,32.8,30,0.0 +16359,73,15,15,0.0 +16359,5,21.35,27,0.0 +16359,24,4.5,11,0.0 +16359,69,36,44,0.0 +16359,40,18.4,1,0.0 +16359,47,9.5,14,0.0 +16359,38,263.5,2,0.0 +16359,36,19,28,0.0 +16359,67,14,23,0.0 +16359,43,46,47,0.0 +16359,76,18,35,0.0 +16359,54,7.45,45,0.0 +16359,75,7.75,9,0.0 +16359,68,12.5,46,0.0 +16359,20,81,1,0.0 +16359,29,123.79,29,0.0 +16359,28,45.6,12,0.0 +16359,13,6,14,0.0 +16359,62,49.3,15,0.0 +16359,77,13,47,0.0 +16359,7,30,19,0.0 +16360,45,9.5,31,0.0 +16360,6,25,41,0.0 +16360,47,9.5,4,0.0 +16360,60,34,34,0.0 +16360,35,18,19,0.0 +16360,61,28.5,36,0.0 +16360,41,9.65,32,0.0 +16360,39,18,43,0.0 +16360,34,14,12,0.0 +16360,24,4.5,2,0.0 +16360,63,43.9,15,0.0 +16360,38,263.5,41,0.0 +16360,70,15,27,0.0 +16360,42,14,31,0.0 +16360,27,43.9,45,0.0 +16360,17,39,4,0.0 +16360,30,25.89,50,0.0 +16360,2,19,19,0.0 +16360,7,30,12,0.0 +16360,51,53,6,0.0 +16360,33,2.5,27,0.0 +16360,43,46,48,0.0 +16360,69,36,9,0.0 +16360,32,32,23,0.0 +16360,25,14,20,0.0 +16360,26,31.23,9,0.0 +16360,76,18,3,0.0 +16360,75,7.75,31,0.0 +16360,56,38,7,0.0 +16360,11,21,49,0.0 +16360,8,40,30,0.0 +16360,10,31,32,0.0 +16360,28,45.6,49,0.0 +16360,18,62.5,29,0.0 +16360,12,38,2,0.0 +16360,55,24,21,0.0 +16360,58,13.25,45,0.0 +16360,15,15.5,4,0.0 +16360,57,19.5,17,0.0 +16360,31,12.5,49,0.0 +16360,65,21.05,6,0.0 +16360,54,7.45,2,0.0 +16360,48,12.75,35,0.0 +16360,67,14,45,0.0 +16360,1,18,48,0.0 +16360,5,21.35,19,0.0 +16360,50,16.25,38,0.0 +16360,19,9.2,42,0.0 +16360,74,10,44,0.0 +16360,44,19.45,44,0.0 +16360,13,6,9,0.0 +16360,3,10,3,0.0 +16360,46,12,8,0.0 +16360,77,13,11,0.0 +16360,71,21.5,35,0.0 +16360,36,19,26,0.0 +16360,20,81,20,0.0 +16360,49,20,22,0.0 +16360,73,15,11,0.0 +16360,9,97,26,0.0 +16360,14,23.25,1,0.0 +16360,68,12.5,26,0.0 +16360,52,7,17,0.0 +16360,23,9,39,0.0 +16360,40,18.4,17,0.0 +16360,21,10,7,0.0 +16360,29,123.79,33,0.0 +16360,53,32.8,12,0.0 +16360,16,17.45,7,0.0 +16360,62,49.3,40,0.0 +16361,14,23.25,49,0.0 +16361,9,97,4,0.0 +16361,61,28.5,20,0.0 +16361,16,17.45,21,0.0 +16361,72,34.8,3,0.0 +16361,69,36,38,0.0 +16361,54,7.45,5,0.0 +16361,55,24,5,0.0 +16361,11,21,32,0.0 +16361,76,18,37,0.0 +16361,42,14,47,0.0 +16361,32,32,3,0.0 +16361,60,34,28,0.0 +16361,48,12.75,30,0.0 +16361,25,14,11,0.0 +16361,21,10,13,0.0 +16361,15,15.5,19,0.0 +16361,39,18,25,0.0 +16361,41,9.65,38,0.0 +16361,67,14,23,0.0 +16361,51,53,30,0.0 +16361,43,46,32,0.0 +16361,5,21.35,31,0.0 +16361,47,9.5,18,0.0 +16361,18,62.5,3,0.0 +16361,66,17,4,0.0 +16361,12,38,5,0.0 +16361,8,40,41,0.0 +16361,7,30,50,0.0 +16361,45,9.5,15,0.0 +16361,52,7,3,0.0 +16361,75,7.75,47,0.0 +16361,31,12.5,33,0.0 +16361,70,15,12,0.0 +16361,62,49.3,35,0.0 +16361,53,32.8,37,0.0 +16361,30,25.89,35,0.0 +16361,77,13,32,0.0 +16361,38,263.5,2,0.0 +16361,26,31.23,8,0.0 +16361,37,26,33,0.0 +16361,20,81,11,0.0 +16361,36,19,3,0.0 +16361,56,38,30,0.0 +16361,34,14,50,0.0 +16361,2,19,12,0.0 +16361,6,25,19,0.0 +16361,27,43.9,16,0.0 +16361,57,19.5,34,0.0 +16361,64,33.25,35,0.0 +16361,40,18.4,9,0.0 +16361,65,21.05,2,0.0 +16361,46,12,34,0.0 +16362,70,15,18,0.0 +16362,36,19,38,0.0 +16362,11,21,33,0.0 +16362,19,9.2,48,0.0 +16362,8,40,10,0.0 +16362,53,32.8,22,0.0 +16362,68,12.5,28,0.0 +16362,69,36,22,0.0 +16362,59,55,29,0.0 +16362,40,18.4,46,0.0 +16362,57,19.5,34,0.0 +16362,3,10,14,0.0 +16362,61,28.5,32,0.0 +16362,54,7.45,23,0.0 +16362,20,81,24,0.0 +16362,18,62.5,33,0.0 +16362,24,4.5,38,0.0 +16362,23,9,50,0.0 +16362,39,18,9,0.0 +16362,25,14,33,0.0 +16362,10,31,18,0.0 +16362,12,38,29,0.0 +16362,42,14,2,0.0 +16362,13,6,16,0.0 +16362,38,263.5,22,0.0 +16362,31,12.5,25,0.0 +16362,67,14,27,0.0 +16362,4,22,19,0.0 +16363,47,9.5,21,0.0 +16363,48,12.75,33,0.0 +16363,77,13,31,0.0 +16363,41,9.65,21,0.0 +16363,51,53,23,0.0 +16363,70,15,46,0.0 +16363,66,17,7,0.0 +16363,29,123.79,5,0.0 +16363,56,38,26,0.0 +16363,67,14,48,0.0 +16363,63,43.9,13,0.0 +16363,53,32.8,29,0.0 +16363,9,97,23,0.0 +16363,45,9.5,22,0.0 +16363,42,14,49,0.0 +16363,69,36,12,0.0 +16363,50,16.25,44,0.0 +16363,74,10,14,0.0 +16363,19,9.2,5,0.0 +16363,62,49.3,6,0.0 +16363,30,25.89,1,0.0 +16363,22,21,30,0.0 +16363,10,31,7,0.0 +16363,43,46,48,0.0 +16363,6,25,30,0.0 +16363,8,40,40,0.0 +16363,33,2.5,45,0.0 +16363,76,18,26,0.0 +16363,54,7.45,9,0.0 +16363,49,20,35,0.0 +16363,25,14,38,0.0 +16363,39,18,26,0.0 +16363,52,7,33,0.0 +16363,16,17.45,20,0.0 +16363,14,23.25,30,0.0 +16363,15,15.5,48,0.0 +16363,2,19,34,0.0 +16363,28,45.6,7,0.0 +16363,13,6,6,0.0 +16363,7,30,31,0.0 +16363,55,24,32,0.0 +16363,5,21.35,17,0.0 +16363,24,4.5,19,0.0 +16363,23,9,18,0.0 +16363,34,14,34,0.0 +16363,59,55,6,0.0 +16363,57,19.5,37,0.0 +16363,32,32,16,0.0 +16363,31,12.5,10,0.0 +16363,61,28.5,7,0.0 +16363,35,18,6,0.0 +16363,12,38,50,0.0 +16363,68,12.5,9,0.0 +16363,37,26,18,0.0 +16363,40,18.4,21,0.0 +16363,36,19,17,0.0 +16363,58,13.25,12,0.0 +16363,38,263.5,7,0.0 +16363,3,10,14,0.0 +16363,26,31.23,50,0.0 +16363,71,21.5,46,0.0 +16363,4,22,48,0.0 +16363,65,21.05,47,0.0 +16363,1,18,19,0.0 +16363,73,15,22,0.0 +16363,44,19.45,1,0.0 +16363,60,34,5,0.0 +16363,72,34.8,27,0.0 +16363,11,21,17,0.0 +16363,27,43.9,42,0.0 +16363,64,33.25,22,0.0 +16363,46,12,2,0.0 +16363,21,10,31,0.0 +16363,17,39,38,0.0 +16364,56,38,3,0.0 +16364,3,10,35,0.0 +16364,1,18,34,0.0 +16364,44,19.45,6,0.0 +16364,49,20,29,0.0 +16364,40,18.4,24,0.0 +16364,34,14,9,0.0 +16364,6,25,4,0.0 +16364,57,19.5,39,0.0 +16364,14,23.25,14,0.0 +16364,47,9.5,41,0.0 +16364,9,97,37,0.0 +16364,8,40,16,0.0 +16364,25,14,19,0.0 +16364,76,18,34,0.0 +16364,33,2.5,22,0.0 +16364,63,43.9,5,0.0 +16364,39,18,5,0.0 +16364,19,9.2,20,0.0 +16364,20,81,20,0.0 +16364,51,53,7,0.0 +16364,24,4.5,41,0.0 +16364,22,21,45,0.0 +16364,16,17.45,37,0.0 +16364,68,12.5,38,0.0 +16364,21,10,32,0.0 +16364,7,30,39,0.0 +16364,65,21.05,22,0.0 +16364,37,26,50,0.0 +16364,69,36,4,0.0 +16364,60,34,33,0.0 +16364,77,13,50,0.0 +16364,38,263.5,29,0.0 +16364,45,9.5,37,0.0 +16364,55,24,28,0.0 +16364,12,38,12,0.0 +16364,59,55,20,0.0 +16364,26,31.23,14,0.0 +16364,62,49.3,3,0.0 +16364,73,15,36,0.0 +16364,23,9,37,0.0 +16364,5,21.35,21,0.0 +16364,75,7.75,19,0.0 +16364,30,25.89,41,0.0 +16364,54,7.45,33,0.0 +16364,10,31,28,0.0 +16364,35,18,21,0.0 +16364,13,6,14,0.0 +16364,58,13.25,3,0.0 +16364,46,12,37,0.0 +16364,48,12.75,29,0.0 +16364,74,10,24,0.0 +16364,53,32.8,14,0.0 +16364,11,21,3,0.0 +16364,29,123.79,1,0.0 +16364,4,22,14,0.0 +16364,17,39,6,0.0 +16364,66,17,6,0.0 +16364,71,21.5,36,0.0 +16364,67,14,7,0.0 +16364,42,14,18,0.0 +16364,43,46,39,0.0 +16364,36,19,40,0.0 +16364,50,16.25,15,0.0 +16364,70,15,33,0.0 +16364,18,62.5,17,0.0 +16364,52,7,50,0.0 +16364,2,19,19,0.0 +16364,27,43.9,9,0.0 +16364,28,45.6,41,0.0 +16364,15,15.5,30,0.0 +16364,32,32,12,0.0 +16365,64,33.25,38,0.0 +16365,50,16.25,21,0.0 +16365,7,30,14,0.0 +16365,53,32.8,24,0.0 +16365,14,23.25,13,0.0 +16365,67,14,34,0.0 +16365,60,34,41,0.0 +16365,34,14,37,0.0 +16365,65,21.05,1,0.0 +16365,24,4.5,38,0.0 +16365,18,62.5,12,0.0 +16365,57,19.5,25,0.0 +16365,28,45.6,38,0.0 +16365,46,12,22,0.0 +16365,72,34.8,9,0.0 +16365,77,13,17,0.0 +16365,54,7.45,23,0.0 +16365,42,14,50,0.0 +16365,39,18,10,0.0 +16365,69,36,22,0.0 +16365,25,14,30,0.0 +16365,55,24,45,0.0 +16365,11,21,16,0.0 +16365,38,263.5,50,0.0 +16365,26,31.23,17,0.0 +16365,6,25,33,0.0 +16365,5,21.35,46,0.0 +16365,22,21,39,0.0 +16365,36,19,16,0.0 +16365,48,12.75,28,0.0 +16365,20,81,48,0.0 +16365,32,32,8,0.0 +16365,27,43.9,7,0.0 +16365,3,10,14,0.0 +16365,52,7,20,0.0 +16365,58,13.25,24,0.0 +16365,8,40,39,0.0 +16365,70,15,24,0.0 +16365,43,46,29,0.0 +16365,9,97,26,0.0 +16365,76,18,30,0.0 +16365,63,43.9,14,0.0 +16365,16,17.45,8,0.0 +16365,13,6,40,0.0 +16365,4,22,19,0.0 +16365,40,18.4,4,0.0 +16365,59,55,30,0.0 +16365,30,25.89,38,0.0 +16366,1,18,19,0.0 +16366,13,6,49,0.0 +16366,24,4.5,43,0.0 +16366,22,21,7,0.0 +16366,29,123.79,3,0.0 +16366,51,53,9,0.0 +16366,61,28.5,18,0.0 +16366,4,22,31,0.0 +16366,9,97,45,0.0 +16366,64,33.25,40,0.0 +16366,12,38,3,0.0 +16366,74,10,5,0.0 +16366,16,17.45,21,0.0 +16366,57,19.5,29,0.0 +16366,45,9.5,3,0.0 +16366,31,12.5,40,0.0 +16367,10,31,44,0.0 +16367,24,4.5,47,0.0 +16367,22,21,19,0.0 +16367,13,6,16,0.0 +16367,12,38,47,0.0 +16367,45,9.5,49,0.0 +16367,3,10,35,0.0 +16367,53,32.8,16,0.0 +16367,2,19,8,0.0 +16367,61,28.5,45,0.0 +16367,8,40,41,0.0 +16367,43,46,30,0.0 +16367,36,19,11,0.0 +16367,7,30,37,0.0 +16367,63,43.9,8,0.0 +16367,62,49.3,31,0.0 +16367,40,18.4,5,0.0 +16367,49,20,33,0.0 +16367,5,21.35,36,0.0 +16368,58,13.25,7,0.0 +16368,14,23.25,17,0.0 +16368,46,12,39,0.0 +16368,7,30,22,0.0 +16368,49,20,39,0.0 +16368,27,43.9,8,0.0 +16368,74,10,25,0.0 +16368,37,26,38,0.0 +16368,2,19,11,0.0 +16368,12,38,21,0.0 +16368,52,7,23,0.0 +16368,75,7.75,39,0.0 +16368,9,97,33,0.0 +16368,40,18.4,30,0.0 +16368,54,7.45,23,0.0 +16368,67,14,36,0.0 +16368,48,12.75,37,0.0 +16368,16,17.45,21,0.0 +16368,77,13,4,0.0 +16368,42,14,24,0.0 +16368,11,21,37,0.0 +16368,65,21.05,11,0.0 +16368,61,28.5,15,0.0 +16368,56,38,30,0.0 +16368,17,39,8,0.0 +16368,8,40,19,0.0 +16368,38,263.5,48,0.0 +16368,53,32.8,21,0.0 +16368,3,10,11,0.0 +16368,41,9.65,48,0.0 +16368,51,53,46,0.0 +16368,45,9.5,42,0.0 +16368,29,123.79,29,0.0 +16368,35,18,18,0.0 +16368,23,9,29,0.0 +16368,57,19.5,17,0.0 +16368,31,12.5,35,0.0 +16368,71,21.5,49,0.0 +16368,33,2.5,20,0.0 +16368,43,46,30,0.0 +16368,63,43.9,41,0.0 +16368,1,18,43,0.0 +16368,59,55,6,0.0 +16368,34,14,23,0.0 +16368,72,34.8,3,0.0 +16368,30,25.89,48,0.0 +16368,69,36,24,0.0 +16368,26,31.23,25,0.0 +16368,6,25,22,0.0 +16368,60,34,19,0.0 +16368,76,18,16,0.0 +16368,50,16.25,36,0.0 +16368,25,14,21,0.0 +16368,10,31,34,0.0 +16368,22,21,6,0.0 +16368,20,81,21,0.0 +16368,55,24,50,0.0 +16368,28,45.6,37,0.0 +16368,5,21.35,21,0.0 +16368,39,18,35,0.0 +16368,64,33.25,45,0.0 +16368,73,15,7,0.0 +16368,70,15,34,0.0 +16368,4,22,14,0.0 +16368,13,6,26,0.0 +16368,21,10,28,0.0 +16368,36,19,50,0.0 +16368,47,9.5,36,0.0 +16368,19,9.2,41,0.0 +16368,62,49.3,5,0.0 +16369,1,18,16,0.0 +16369,23,9,20,0.0 +16369,43,46,35,0.0 +16369,55,24,38,0.0 +16369,2,19,38,0.0 +16369,42,14,21,0.0 +16369,36,19,32,0.0 +16369,68,12.5,38,0.0 +16369,67,14,19,0.0 +16369,12,38,32,0.0 +16369,16,17.45,1,0.0 +16369,10,31,43,0.0 +16369,39,18,14,0.0 +16369,58,13.25,19,0.0 +16369,18,62.5,3,0.0 +16369,46,12,1,0.0 +16369,30,25.89,40,0.0 +16369,37,26,2,0.0 +16369,34,14,10,0.0 +16369,6,25,29,0.0 +16369,72,34.8,1,0.0 +16369,51,53,33,0.0 +16369,9,97,4,0.0 +16369,17,39,14,0.0 +16369,29,123.79,13,0.0 +16369,64,33.25,14,0.0 +16369,26,31.23,43,0.0 +16369,54,7.45,31,0.0 +16369,40,18.4,9,0.0 +16369,60,34,29,0.0 +16369,27,43.9,17,0.0 +16369,70,15,8,0.0 +16369,4,22,20,0.0 +16369,38,263.5,48,0.0 +16369,47,9.5,4,0.0 +16369,71,21.5,30,0.0 +16369,7,30,26,0.0 +16369,45,9.5,12,0.0 +16369,41,9.65,30,0.0 +16369,65,21.05,3,0.0 +16369,49,20,24,0.0 +16369,5,21.35,50,0.0 +16369,20,81,6,0.0 +16369,8,40,36,0.0 +16369,50,16.25,26,0.0 +16369,11,21,26,0.0 +16369,77,13,41,0.0 +16369,31,12.5,35,0.0 +16369,66,17,15,0.0 +16369,15,15.5,50,0.0 +16369,61,28.5,29,0.0 +16369,59,55,27,0.0 +16369,63,43.9,44,0.0 +16369,3,10,39,0.0 +16369,52,7,25,0.0 +16369,69,36,31,0.0 +16369,21,10,27,0.0 +16369,28,45.6,33,0.0 +16369,62,49.3,46,0.0 +16369,53,32.8,23,0.0 +16369,57,19.5,12,0.0 +16369,44,19.45,31,0.0 +16369,56,38,12,0.0 +16369,13,6,19,0.0 +16369,22,21,22,0.0 +16369,35,18,6,0.0 +16369,14,23.25,49,0.0 +16369,48,12.75,17,0.0 +16369,32,32,43,0.0 +16369,25,14,7,0.0 +16369,33,2.5,17,0.0 +16369,76,18,32,0.0 +16369,75,7.75,41,0.0 +16369,73,15,38,0.0 +16370,7,30,24,0.0 +16370,47,9.5,17,0.0 +16370,73,15,21,0.0 +16370,29,123.79,29,0.0 +16370,30,25.89,25,0.0 +16370,57,19.5,46,0.0 +16370,75,7.75,50,0.0 +16371,66,17,45,0.0 +16371,5,21.35,7,0.0 +16371,67,14,31,0.0 +16371,26,31.23,43,0.0 +16371,30,25.89,16,0.0 +16371,72,34.8,10,0.0 +16371,70,15,2,0.0 +16371,48,12.75,9,0.0 +16371,65,21.05,6,0.0 +16371,69,36,28,0.0 +16371,52,7,31,0.0 +16371,45,9.5,17,0.0 +16371,75,7.75,21,0.0 +16371,40,18.4,27,0.0 +16371,31,12.5,25,0.0 +16371,21,10,26,0.0 +16371,34,14,40,0.0 +16371,50,16.25,16,0.0 +16371,32,32,26,0.0 +16371,10,31,33,0.0 +16371,64,33.25,23,0.0 +16371,4,22,44,0.0 +16371,61,28.5,26,0.0 +16371,24,4.5,14,0.0 +16371,37,26,12,0.0 +16371,27,43.9,39,0.0 +16371,59,55,17,0.0 +16371,46,12,14,0.0 +16371,7,30,13,0.0 +16371,11,21,16,0.0 +16371,56,38,18,0.0 +16371,76,18,11,0.0 +16371,9,97,39,0.0 +16371,58,13.25,35,0.0 +16371,73,15,5,0.0 +16371,33,2.5,39,0.0 +16371,17,39,31,0.0 +16371,23,9,9,0.0 +16371,42,14,5,0.0 +16371,36,19,27,0.0 +16371,55,24,12,0.0 +16372,60,34,27,0.0 +16372,55,24,38,0.0 +16372,48,12.75,4,0.0 +16372,63,43.9,27,0.0 +16372,18,62.5,2,0.0 +16372,70,15,24,0.0 +16372,53,32.8,9,0.0 +16372,21,10,39,0.0 +16372,29,123.79,49,0.0 +16372,73,15,13,0.0 +16372,59,55,34,0.0 +16372,61,28.5,15,0.0 +16373,49,20,50,0.0 +16373,31,12.5,11,0.0 +16373,6,25,38,0.0 +16373,54,7.45,50,0.0 +16373,44,19.45,8,0.0 +16373,41,9.65,31,0.0 +16373,29,123.79,47,0.0 +16373,2,19,36,0.0 +16373,51,53,15,0.0 +16373,5,21.35,12,0.0 +16373,9,97,9,0.0 +16373,60,34,37,0.0 +16373,47,9.5,11,0.0 +16373,10,31,49,0.0 +16373,16,17.45,42,0.0 +16373,34,14,44,0.0 +16373,59,55,41,0.0 +16373,12,38,29,0.0 +16373,69,36,8,0.0 +16373,33,2.5,44,0.0 +16373,48,12.75,10,0.0 +16373,50,16.25,5,0.0 +16373,77,13,42,0.0 +16373,71,21.5,3,0.0 +16373,30,25.89,2,0.0 +16373,7,30,37,0.0 +16373,36,19,38,0.0 +16373,67,14,50,0.0 +16373,37,26,29,0.0 +16373,39,18,23,0.0 +16373,4,22,7,0.0 +16373,24,4.5,35,0.0 +16373,42,14,14,0.0 +16373,43,46,9,0.0 +16373,21,10,18,0.0 +16373,19,9.2,10,0.0 +16373,14,23.25,44,0.0 +16373,38,263.5,20,0.0 +16373,73,15,21,0.0 +16373,70,15,42,0.0 +16373,28,45.6,9,0.0 +16373,76,18,3,0.0 +16373,13,6,3,0.0 +16373,35,18,47,0.0 +16373,40,18.4,1,0.0 +16373,75,7.75,19,0.0 +16373,25,14,22,0.0 +16373,58,13.25,36,0.0 +16373,65,21.05,38,0.0 +16373,20,81,44,0.0 +16373,46,12,14,0.0 +16373,8,40,36,0.0 +16373,18,62.5,17,0.0 +16373,26,31.23,49,0.0 +16373,57,19.5,13,0.0 +16373,11,21,36,0.0 +16373,1,18,17,0.0 +16373,72,34.8,21,0.0 +16373,45,9.5,28,0.0 +16373,3,10,19,0.0 +16373,17,39,35,0.0 +16373,55,24,5,0.0 +16373,68,12.5,13,0.0 +16373,63,43.9,3,0.0 +16373,64,33.25,48,0.0 +16373,15,15.5,5,0.0 +16373,62,49.3,31,0.0 +16373,61,28.5,12,0.0 +16373,66,17,9,0.0 +16373,22,21,35,0.0 +16373,27,43.9,16,0.0 +16373,74,10,8,0.0 +16373,32,32,34,0.0 +16373,56,38,21,0.0 +16373,53,32.8,25,0.0 +16374,33,2.5,41,0.0 +16374,68,12.5,14,0.0 +16374,30,25.89,25,0.0 +16374,70,15,29,0.0 +16374,9,97,26,0.0 +16374,41,9.65,7,0.0 +16374,10,31,43,0.0 +16374,43,46,39,0.0 +16374,49,20,3,0.0 +16374,72,34.8,28,0.0 +16374,32,32,5,0.0 +16374,12,38,30,0.0 +16374,54,7.45,47,0.0 +16374,50,16.25,14,0.0 +16374,8,40,32,0.0 +16374,27,43.9,39,0.0 +16374,71,21.5,12,0.0 +16374,57,19.5,29,0.0 +16374,47,9.5,8,0.0 +16374,13,6,2,0.0 +16374,7,30,44,0.0 +16374,63,43.9,29,0.0 +16374,48,12.75,12,0.0 +16374,64,33.25,7,0.0 +16374,61,28.5,42,0.0 +16374,35,18,12,0.0 +16374,31,12.5,40,0.0 +16374,75,7.75,37,0.0 +16374,42,14,46,0.0 +16374,40,18.4,26,0.0 +16374,17,39,10,0.0 +16374,62,49.3,36,0.0 +16374,3,10,20,0.0 +16374,4,22,16,0.0 +16374,36,19,35,0.0 +16374,44,19.45,26,0.0 +16374,29,123.79,2,0.0 +16374,20,81,15,0.0 +16374,39,18,28,0.0 +16374,56,38,48,0.0 +16374,18,62.5,10,0.0 +16374,22,21,22,0.0 +16374,6,25,48,0.0 +16374,51,53,14,0.0 +16374,58,13.25,5,0.0 +16374,11,21,36,0.0 +16374,59,55,3,0.0 +16374,28,45.6,28,0.0 +16374,69,36,17,0.0 +16374,34,14,31,0.0 +16374,26,31.23,29,0.0 +16374,25,14,31,0.0 +16374,66,17,39,0.0 +16374,73,15,31,0.0 +16374,1,18,18,0.0 +16374,37,26,34,0.0 +16374,2,19,22,0.0 +16374,15,15.5,39,0.0 +16374,5,21.35,40,0.0 +16374,38,263.5,17,0.0 +16374,24,4.5,9,0.0 +16374,67,14,38,0.0 +16374,74,10,9,0.0 +16374,77,13,7,0.0 +16374,76,18,13,0.0 +16374,16,17.45,49,0.0 +16374,46,12,49,0.0 +16374,21,10,15,0.0 +16374,45,9.5,6,0.0 +16374,52,7,2,0.0 +16375,71,21.5,45,0.0 +16375,15,15.5,34,0.0 +16375,72,34.8,15,0.0 +16375,34,14,38,0.0 +16375,39,18,6,0.0 +16375,36,19,8,0.0 +16375,75,7.75,31,0.0 +16375,45,9.5,47,0.0 +16375,65,21.05,24,0.0 +16375,62,49.3,13,0.0 +16375,48,12.75,44,0.0 +16375,47,9.5,37,0.0 +16375,4,22,24,0.0 +16375,16,17.45,39,0.0 +16375,70,15,9,0.0 +16375,28,45.6,4,0.0 +16375,5,21.35,23,0.0 +16375,64,33.25,17,0.0 +16375,77,13,26,0.0 +16375,13,6,14,0.0 +16375,26,31.23,28,0.0 +16375,29,123.79,37,0.0 +16375,76,18,27,0.0 +16375,43,46,7,0.0 +16375,27,43.9,33,0.0 +16375,69,36,2,0.0 +16375,55,24,14,0.0 +16375,32,32,24,0.0 +16375,54,7.45,7,0.0 +16375,50,16.25,3,0.0 +16375,8,40,48,0.0 +16375,9,97,5,0.0 +16375,24,4.5,43,0.0 +16375,51,53,1,0.0 +16375,7,30,28,0.0 +16375,58,13.25,33,0.0 +16375,12,38,38,0.0 +16375,44,19.45,48,0.0 +16375,63,43.9,15,0.0 +16375,59,55,39,0.0 +16375,17,39,13,0.0 +16375,56,38,25,0.0 +16375,23,9,15,0.0 +16375,41,9.65,44,0.0 +16375,14,23.25,10,0.0 +16375,20,81,14,0.0 +16375,31,12.5,28,0.0 +16375,57,19.5,29,0.0 +16375,61,28.5,7,0.0 +16375,42,14,40,0.0 +16375,19,9.2,21,0.0 +16375,66,17,44,0.0 +16375,73,15,3,0.0 +16375,10,31,10,0.0 +16375,52,7,4,0.0 +16375,49,20,20,0.0 +16375,6,25,23,0.0 +16375,18,62.5,8,0.0 +16375,2,19,18,0.0 +16375,40,18.4,41,0.0 +16375,21,10,23,0.0 +16375,46,12,40,0.0 +16375,38,263.5,33,0.0 +16375,30,25.89,28,0.0 +16375,68,12.5,2,0.0 +16375,37,26,48,0.0 +16375,67,14,26,0.0 +16375,25,14,14,0.0 +16375,53,32.8,16,0.0 +16375,74,10,45,0.0 +16375,11,21,1,0.0 +16375,35,18,5,0.0 +16375,22,21,5,0.0 +16375,3,10,34,0.0 +16375,1,18,45,0.0 +16376,34,14,49,0.0 +16376,10,31,9,0.0 +16376,30,25.89,5,0.0 +16376,44,19.45,35,0.0 +16376,16,17.45,42,0.0 +16376,38,263.5,23,0.0 +16376,67,14,17,0.0 +16376,7,30,50,0.0 +16376,58,13.25,9,0.0 +16376,37,26,7,0.0 +16376,76,18,10,0.0 +16376,19,9.2,21,0.0 +16376,65,21.05,38,0.0 +16376,12,38,43,0.0 +16376,2,19,35,0.0 +16376,20,81,18,0.0 +16376,9,97,18,0.0 +16376,50,16.25,17,0.0 +16376,53,32.8,36,0.0 +16376,74,10,1,0.0 +16376,18,62.5,40,0.0 +16376,15,15.5,45,0.0 +16376,23,9,48,0.0 +16376,24,4.5,45,0.0 +16376,56,38,48,0.0 +16376,13,6,40,0.0 +16376,28,45.6,26,0.0 +16376,8,40,28,0.0 +16376,41,9.65,31,0.0 +16376,69,36,7,0.0 +16376,61,28.5,45,0.0 +16376,26,31.23,21,0.0 +16376,75,7.75,10,0.0 +16376,60,34,35,0.0 +16376,25,14,21,0.0 +16376,35,18,47,0.0 +16376,62,49.3,42,0.0 +16376,73,15,46,0.0 +16376,39,18,39,0.0 +16376,66,17,44,0.0 +16376,27,43.9,8,0.0 +16376,70,15,16,0.0 +16376,72,34.8,11,0.0 +16376,71,21.5,16,0.0 +16376,48,12.75,29,0.0 +16376,42,14,37,0.0 +16376,11,21,16,0.0 +16376,43,46,22,0.0 +16376,17,39,43,0.0 +16376,32,32,14,0.0 +16376,33,2.5,48,0.0 +16376,54,7.45,46,0.0 +16376,59,55,32,0.0 +16376,77,13,31,0.0 +16376,5,21.35,41,0.0 +16376,51,53,5,0.0 +16376,6,25,40,0.0 +16377,71,21.5,33,0.0 +16377,65,21.05,34,0.0 +16377,16,17.45,10,0.0 +16377,27,43.9,31,0.0 +16377,41,9.65,37,0.0 +16377,5,21.35,1,0.0 +16377,21,10,49,0.0 +16377,56,38,12,0.0 +16377,64,33.25,18,0.0 +16377,19,9.2,43,0.0 +16377,23,9,50,0.0 +16377,66,17,6,0.0 +16377,52,7,40,0.0 +16377,1,18,8,0.0 +16377,76,18,6,0.0 +16377,35,18,17,0.0 +16377,25,14,14,0.0 +16377,39,18,19,0.0 +16377,20,81,40,0.0 +16377,67,14,37,0.0 +16377,37,26,24,0.0 +16377,8,40,6,0.0 +16377,4,22,8,0.0 +16377,61,28.5,2,0.0 +16377,3,10,49,0.0 +16377,43,46,5,0.0 +16377,51,53,29,0.0 +16377,72,34.8,41,0.0 +16377,24,4.5,21,0.0 +16377,15,15.5,10,0.0 +16377,77,13,3,0.0 +16377,31,12.5,11,0.0 +16377,47,9.5,35,0.0 +16377,18,62.5,13,0.0 +16377,62,49.3,7,0.0 +16377,59,55,24,0.0 +16377,48,12.75,26,0.0 +16377,49,20,38,0.0 +16377,42,14,47,0.0 +16377,53,32.8,48,0.0 +16377,2,19,42,0.0 +16377,73,15,16,0.0 +16377,17,39,7,0.0 +16377,7,30,24,0.0 +16377,36,19,37,0.0 +16377,26,31.23,49,0.0 +16377,6,25,13,0.0 +16378,15,15.5,43,0.0 +16378,68,12.5,34,0.0 +16378,25,14,34,0.0 +16378,55,24,33,0.0 +16378,54,7.45,8,0.0 +16378,19,9.2,19,0.0 +16378,61,28.5,34,0.0 +16378,52,7,41,0.0 +16378,76,18,2,0.0 +16378,57,19.5,48,0.0 +16378,32,32,27,0.0 +16378,53,32.8,20,0.0 +16379,61,28.5,15,0.0 +16379,56,38,14,0.0 +16379,72,34.8,43,0.0 +16379,23,9,31,0.0 +16379,25,14,26,0.0 +16379,35,18,35,0.0 +16379,12,38,23,0.0 +16379,22,21,23,0.0 +16379,7,30,2,0.0 +16379,9,97,34,0.0 +16379,18,62.5,47,0.0 +16379,50,16.25,1,0.0 +16379,65,21.05,48,0.0 +16379,30,25.89,25,0.0 +16379,62,49.3,45,0.0 +16379,48,12.75,47,0.0 +16379,74,10,48,0.0 +16379,3,10,35,0.0 +16379,21,10,49,0.0 +16379,73,15,6,0.0 +16379,44,19.45,25,0.0 +16379,77,13,50,0.0 +16379,59,55,26,0.0 +16379,69,36,15,0.0 +16379,13,6,7,0.0 +16379,75,7.75,9,0.0 +16379,45,9.5,27,0.0 +16379,34,14,29,0.0 +16379,19,9.2,15,0.0 +16379,39,18,26,0.0 +16379,55,24,41,0.0 +16379,71,21.5,11,0.0 +16379,64,33.25,25,0.0 +16379,28,45.6,5,0.0 +16379,54,7.45,20,0.0 +16379,38,263.5,5,0.0 +16379,15,15.5,19,0.0 +16379,76,18,15,0.0 +16379,49,20,9,0.0 +16379,29,123.79,36,0.0 +16379,26,31.23,20,0.0 +16379,41,9.65,45,0.0 +16380,21,10,26,0.0 +16380,12,38,14,0.0 +16380,7,30,4,0.0 +16380,13,6,41,0.0 +16380,27,43.9,44,0.0 +16380,67,14,6,0.0 +16380,47,9.5,26,0.0 +16380,61,28.5,47,0.0 +16380,20,81,26,0.0 +16380,2,19,50,0.0 +16380,62,49.3,42,0.0 +16380,58,13.25,5,0.0 +16380,49,20,35,0.0 +16380,64,33.25,1,0.0 +16380,14,23.25,2,0.0 +16380,70,15,3,0.0 +16380,40,18.4,2,0.0 +16380,5,21.35,48,0.0 +16380,46,12,43,0.0 +16380,38,263.5,5,0.0 +16380,17,39,48,0.0 +16380,3,10,33,0.0 +16380,53,32.8,35,0.0 +16380,37,26,7,0.0 +16380,32,32,22,0.0 +16380,44,19.45,28,0.0 +16380,52,7,43,0.0 +16380,29,123.79,43,0.0 +16380,50,16.25,42,0.0 +16380,30,25.89,48,0.0 +16380,45,9.5,30,0.0 +16380,22,21,10,0.0 +16380,43,46,50,0.0 +16380,77,13,26,0.0 +16380,71,21.5,34,0.0 +16380,34,14,32,0.0 +16380,16,17.45,41,0.0 +16380,6,25,29,0.0 +16380,65,21.05,49,0.0 +16380,72,34.8,19,0.0 +16380,26,31.23,29,0.0 +16380,57,19.5,30,0.0 +16380,28,45.6,38,0.0 +16380,48,12.75,24,0.0 +16380,75,7.75,20,0.0 +16380,74,10,38,0.0 +16380,56,38,2,0.0 +16380,36,19,29,0.0 +16380,24,4.5,23,0.0 +16380,8,40,44,0.0 +16380,73,15,46,0.0 +16380,35,18,6,0.0 +16380,33,2.5,20,0.0 +16380,59,55,31,0.0 +16380,54,7.45,30,0.0 +16380,18,62.5,11,0.0 +16380,10,31,49,0.0 +16380,23,9,29,0.0 +16380,68,12.5,13,0.0 +16380,63,43.9,25,0.0 +16380,69,36,17,0.0 +16381,36,19,32,0.0 +16381,48,12.75,18,0.0 +16381,21,10,35,0.0 +16381,11,21,5,0.0 +16381,56,38,20,0.0 +16381,45,9.5,7,0.0 +16381,7,30,27,0.0 +16381,38,263.5,40,0.0 +16381,46,12,17,0.0 +16381,47,9.5,42,0.0 +16381,75,7.75,25,0.0 +16381,31,12.5,24,0.0 +16381,9,97,40,0.0 +16381,17,39,25,0.0 +16381,30,25.89,47,0.0 +16381,71,21.5,47,0.0 +16381,34,14,23,0.0 +16381,3,10,44,0.0 +16381,67,14,47,0.0 +16381,64,33.25,46,0.0 +16381,41,9.65,44,0.0 +16381,53,32.8,4,0.0 +16381,58,13.25,7,0.0 +16381,26,31.23,24,0.0 +16381,40,18.4,16,0.0 +16381,15,15.5,28,0.0 +16381,39,18,7,0.0 +16381,18,62.5,30,0.0 +16381,42,14,13,0.0 +16381,43,46,2,0.0 +16381,66,17,4,0.0 +16381,19,9.2,10,0.0 +16381,44,19.45,12,0.0 +16381,29,123.79,44,0.0 +16381,6,25,4,0.0 +16381,49,20,4,0.0 +16381,32,32,29,0.0 +16381,16,17.45,40,0.0 +16381,10,31,18,0.0 +16381,63,43.9,16,0.0 +16381,5,21.35,48,0.0 +16381,52,7,14,0.0 +16382,63,43.9,43,0.0 +16382,75,7.75,37,0.0 +16382,7,30,38,0.0 +16382,38,263.5,7,0.0 +16382,45,9.5,42,0.0 +16382,48,12.75,39,0.0 +16382,2,19,17,0.0 +16382,6,25,26,0.0 +16382,20,81,47,0.0 +16382,76,18,13,0.0 +16382,17,39,37,0.0 +16382,60,34,39,0.0 +16382,8,40,11,0.0 +16382,15,15.5,29,0.0 +16382,35,18,38,0.0 +16382,57,19.5,15,0.0 +16382,70,15,41,0.0 +16382,40,18.4,27,0.0 +16382,4,22,4,0.0 +16382,58,13.25,30,0.0 +16382,47,9.5,44,0.0 +16382,24,4.5,37,0.0 +16382,37,26,4,0.0 +16382,10,31,43,0.0 +16382,33,2.5,38,0.0 +16382,32,32,11,0.0 +16382,61,28.5,17,0.0 +16382,74,10,30,0.0 +16382,72,34.8,8,0.0 +16382,67,14,14,0.0 +16382,16,17.45,38,0.0 +16382,18,62.5,37,0.0 +16382,64,33.25,44,0.0 +16382,25,14,30,0.0 +16382,21,10,17,0.0 +16382,54,7.45,41,0.0 +16382,66,17,10,0.0 +16382,26,31.23,29,0.0 +16382,59,55,47,0.0 +16382,51,53,15,0.0 +16382,39,18,19,0.0 +16382,31,12.5,31,0.0 +16382,1,18,16,0.0 +16382,30,25.89,40,0.0 +16382,71,21.5,40,0.0 +16382,69,36,39,0.0 +16382,12,38,25,0.0 +16382,73,15,24,0.0 +16382,36,19,5,0.0 +16382,42,14,33,0.0 +16382,11,21,40,0.0 +16382,29,123.79,19,0.0 +16382,68,12.5,18,0.0 +16382,50,16.25,42,0.0 +16382,53,32.8,12,0.0 +16382,65,21.05,4,0.0 +16382,27,43.9,33,0.0 +16382,22,21,47,0.0 +16382,13,6,22,0.0 +16382,5,21.35,37,0.0 +16383,41,9.65,41,0.0 +16383,28,45.6,21,0.0 +16383,51,53,50,0.0 +16383,6,25,47,0.0 +16383,24,4.5,14,0.0 +16383,43,46,32,0.0 +16383,67,14,40,0.0 +16383,65,21.05,19,0.0 +16383,52,7,36,0.0 +16383,33,2.5,11,0.0 +16383,66,17,2,0.0 +16383,45,9.5,30,0.0 +16383,20,81,14,0.0 +16383,29,123.79,23,0.0 +16383,70,15,10,0.0 +16383,11,21,7,0.0 +16383,19,9.2,11,0.0 +16383,77,13,25,0.0 +16383,16,17.45,17,0.0 +16383,64,33.25,21,0.0 +16383,3,10,36,0.0 +16383,18,62.5,28,0.0 +16383,12,38,3,0.0 +16383,42,14,44,0.0 +16383,2,19,26,0.0 +16383,22,21,38,0.0 +16383,13,6,28,0.0 +16383,54,7.45,28,0.0 +16383,25,14,8,0.0 +16383,8,40,43,0.0 +16383,36,19,6,0.0 +16383,48,12.75,13,0.0 +16383,47,9.5,41,0.0 +16383,26,31.23,21,0.0 +16383,1,18,22,0.0 +16383,31,12.5,15,0.0 +16383,50,16.25,27,0.0 +16383,61,28.5,9,0.0 +16383,39,18,1,0.0 +16383,14,23.25,30,0.0 +16383,10,31,42,0.0 +16383,44,19.45,46,0.0 +16384,34,14,16,0.0 +16384,8,40,8,0.0 +16384,19,9.2,34,0.0 +16384,5,21.35,39,0.0 +16384,1,18,38,0.0 +16384,69,36,38,0.0 +16384,57,19.5,44,0.0 +16384,63,43.9,36,0.0 +16385,8,40,24,0.0 +16385,31,12.5,18,0.0 +16385,62,49.3,14,0.0 +16385,27,43.9,8,0.0 +16385,75,7.75,20,0.0 +16385,37,26,44,0.0 +16385,55,24,1,0.0 +16385,72,34.8,11,0.0 +16385,76,18,43,0.0 +16385,69,36,4,0.0 +16385,67,14,17,0.0 +16385,42,14,4,0.0 +16385,35,18,20,0.0 +16385,71,21.5,4,0.0 +16385,30,25.89,34,0.0 +16385,33,2.5,24,0.0 +16385,45,9.5,28,0.0 +16385,59,55,15,0.0 +16385,5,21.35,36,0.0 +16385,24,4.5,21,0.0 +16385,51,53,1,0.0 +16385,2,19,45,0.0 +16385,17,39,42,0.0 +16385,58,13.25,49,0.0 +16385,47,9.5,29,0.0 +16385,36,19,34,0.0 +16385,13,6,4,0.0 +16385,16,17.45,27,0.0 +16385,3,10,49,0.0 +16385,40,18.4,17,0.0 +16385,28,45.6,27,0.0 +16385,1,18,7,0.0 +16385,74,10,18,0.0 +16385,38,263.5,34,0.0 +16385,63,43.9,49,0.0 +16385,9,97,25,0.0 +16385,54,7.45,37,0.0 +16385,66,17,19,0.0 +16385,70,15,33,0.0 +16385,29,123.79,32,0.0 +16385,77,13,17,0.0 +16385,65,21.05,15,0.0 +16385,61,28.5,2,0.0 +16386,21,10,11,0.0 +16386,39,18,40,0.0 +16386,29,123.79,8,0.0 +16386,75,7.75,16,0.0 +16386,30,25.89,39,0.0 +16386,24,4.5,13,0.0 +16386,9,97,15,0.0 +16386,60,34,22,0.0 +16386,38,263.5,27,0.0 +16386,19,9.2,35,0.0 +16386,66,17,20,0.0 +16386,8,40,40,0.0 +16386,4,22,45,0.0 +16386,10,31,15,0.0 +16386,71,21.5,8,0.0 +16386,47,9.5,32,0.0 +16386,57,19.5,40,0.0 +16386,12,38,19,0.0 +16386,54,7.45,27,0.0 +16386,28,45.6,4,0.0 +16386,55,24,40,0.0 +16386,17,39,14,0.0 +16387,48,12.75,6,0.0 +16387,75,7.75,16,0.0 +16387,60,34,24,0.0 +16387,53,32.8,17,0.0 +16387,36,19,42,0.0 +16387,33,2.5,12,0.0 +16387,67,14,19,0.0 +16387,5,21.35,50,0.0 +16387,10,31,38,0.0 +16387,49,20,28,0.0 +16387,58,13.25,9,0.0 +16387,32,32,47,0.0 +16387,54,7.45,25,0.0 +16387,63,43.9,39,0.0 +16387,8,40,43,0.0 +16387,7,30,36,0.0 +16387,69,36,23,0.0 +16387,47,9.5,32,0.0 +16387,21,10,14,0.0 +16387,12,38,7,0.0 +16387,65,21.05,9,0.0 +16387,66,17,27,0.0 +16387,51,53,23,0.0 +16387,74,10,34,0.0 +16387,40,18.4,33,0.0 +16387,30,25.89,44,0.0 +16387,59,55,13,0.0 +16387,46,12,37,0.0 +16387,39,18,39,0.0 +16387,61,28.5,47,0.0 +16387,52,7,28,0.0 +16387,27,43.9,25,0.0 +16387,50,16.25,36,0.0 +16387,35,18,28,0.0 +16387,62,49.3,43,0.0 +16387,6,25,44,0.0 +16387,9,97,49,0.0 +16387,42,14,23,0.0 +16387,73,15,50,0.0 +16387,20,81,41,0.0 +16387,77,13,41,0.0 +16387,1,18,32,0.0 +16387,3,10,37,0.0 +16387,38,263.5,41,0.0 +16388,52,7,2,0.0 +16388,74,10,16,0.0 +16388,68,12.5,9,0.0 +16388,47,9.5,9,0.0 +16388,25,14,34,0.0 +16388,72,34.8,4,0.0 +16388,18,62.5,33,0.0 +16388,11,21,3,0.0 +16388,22,21,4,0.0 +16388,6,25,14,0.0 +16388,54,7.45,37,0.0 +16388,19,9.2,1,0.0 +16388,30,25.89,37,0.0 +16388,10,31,8,0.0 +16388,17,39,2,0.0 +16388,48,12.75,42,0.0 +16388,3,10,21,0.0 +16388,33,2.5,49,0.0 +16388,27,43.9,3,0.0 +16388,65,21.05,26,0.0 +16388,4,22,16,0.0 +16388,62,49.3,43,0.0 +16388,20,81,49,0.0 +16388,55,24,14,0.0 +16388,61,28.5,28,0.0 +16388,70,15,46,0.0 +16388,66,17,46,0.0 +16388,34,14,34,0.0 +16388,73,15,40,0.0 +16388,51,53,42,0.0 +16388,58,13.25,1,0.0 +16388,24,4.5,37,0.0 +16388,12,38,5,0.0 +16388,60,34,18,0.0 +16388,7,30,1,0.0 +16388,49,20,23,0.0 +16388,28,45.6,13,0.0 +16388,40,18.4,15,0.0 +16388,23,9,11,0.0 +16388,13,6,37,0.0 +16388,43,46,18,0.0 +16388,50,16.25,16,0.0 +16388,71,21.5,50,0.0 +16388,56,38,11,0.0 +16388,64,33.25,27,0.0 +16388,29,123.79,31,0.0 +16388,41,9.65,31,0.0 +16388,45,9.5,47,0.0 +16388,39,18,5,0.0 +16388,35,18,46,0.0 +16388,37,26,16,0.0 +16388,57,19.5,3,0.0 +16388,5,21.35,21,0.0 +16388,15,15.5,19,0.0 +16388,36,19,41,0.0 +16388,44,19.45,32,0.0 +16388,42,14,41,0.0 +16388,76,18,5,0.0 +16388,2,19,16,0.0 +16388,59,55,13,0.0 +16388,67,14,31,0.0 +16388,75,7.75,44,0.0 +16388,16,17.45,35,0.0 +16389,50,16.25,43,0.0 +16389,42,14,10,0.0 +16389,34,14,46,0.0 +16389,60,34,44,0.0 +16389,6,25,13,0.0 +16389,19,9.2,45,0.0 +16389,53,32.8,29,0.0 +16389,26,31.23,38,0.0 +16389,70,15,40,0.0 +16389,32,32,10,0.0 +16389,4,22,42,0.0 +16389,20,81,29,0.0 +16389,54,7.45,44,0.0 +16389,5,21.35,27,0.0 +16389,41,9.65,33,0.0 +16389,17,39,3,0.0 +16389,56,38,34,0.0 +16389,9,97,42,0.0 +16389,57,19.5,6,0.0 +16389,68,12.5,24,0.0 +16389,37,26,7,0.0 +16389,7,30,32,0.0 +16389,29,123.79,28,0.0 +16389,27,43.9,26,0.0 +16389,49,20,26,0.0 +16389,30,25.89,44,0.0 +16389,11,21,6,0.0 +16389,55,24,21,0.0 +16389,51,53,30,0.0 +16389,67,14,42,0.0 +16389,52,7,30,0.0 +16389,74,10,29,0.0 +16389,46,12,20,0.0 +16389,33,2.5,37,0.0 +16389,66,17,44,0.0 +16389,61,28.5,14,0.0 +16389,72,34.8,20,0.0 +16389,64,33.25,31,0.0 +16389,8,40,12,0.0 +16389,76,18,46,0.0 +16389,69,36,15,0.0 +16389,47,9.5,31,0.0 +16389,10,31,22,0.0 +16389,21,10,28,0.0 +16389,14,23.25,5,0.0 +16389,16,17.45,12,0.0 +16389,35,18,30,0.0 +16389,28,45.6,37,0.0 +16389,18,62.5,13,0.0 +16389,23,9,47,0.0 +16389,48,12.75,5,0.0 +16389,38,263.5,19,0.0 +16389,31,12.5,19,0.0 +16389,59,55,50,0.0 +16389,1,18,39,0.0 +16389,12,38,43,0.0 +16389,65,21.05,31,0.0 +16389,44,19.45,21,0.0 +16389,24,4.5,28,0.0 +16389,58,13.25,11,0.0 +16389,13,6,41,0.0 +16389,71,21.5,1,0.0 +16389,62,49.3,30,0.0 +16389,40,18.4,48,0.0 +16390,67,14,20,0.0 +16390,16,17.45,50,0.0 +16390,32,32,47,0.0 +16390,58,13.25,50,0.0 +16390,38,263.5,1,0.0 +16390,27,43.9,15,0.0 +16390,54,7.45,49,0.0 +16390,61,28.5,11,0.0 +16390,56,38,22,0.0 +16390,66,17,11,0.0 +16390,2,19,17,0.0 +16390,68,12.5,15,0.0 +16390,12,38,17,0.0 +16390,53,32.8,18,0.0 +16390,50,16.25,24,0.0 +16390,26,31.23,41,0.0 +16390,5,21.35,28,0.0 +16390,17,39,30,0.0 +16390,23,9,24,0.0 +16390,60,34,11,0.0 +16390,44,19.45,16,0.0 +16390,73,15,34,0.0 +16390,28,45.6,23,0.0 +16390,7,30,11,0.0 +16390,65,21.05,14,0.0 +16390,33,2.5,5,0.0 +16390,57,19.5,29,0.0 +16390,62,49.3,32,0.0 +16390,11,21,36,0.0 +16390,37,26,34,0.0 +16390,40,18.4,18,0.0 +16390,9,97,29,0.0 +16390,48,12.75,2,0.0 +16390,1,18,14,0.0 +16390,6,25,2,0.0 +16390,46,12,10,0.0 +16390,18,62.5,36,0.0 +16390,76,18,26,0.0 +16390,14,23.25,15,0.0 +16390,71,21.5,45,0.0 +16390,24,4.5,18,0.0 +16390,15,15.5,49,0.0 +16390,29,123.79,27,0.0 +16390,45,9.5,12,0.0 +16390,70,15,21,0.0 +16390,47,9.5,43,0.0 +16390,72,34.8,18,0.0 +16390,10,31,41,0.0 +16390,22,21,4,0.0 +16390,49,20,23,0.0 +16390,69,36,49,0.0 +16390,4,22,20,0.0 +16390,74,10,21,0.0 +16390,21,10,17,0.0 +16390,35,18,41,0.0 +16390,3,10,15,0.0 +16390,51,53,27,0.0 +16390,13,6,50,0.0 +16390,42,14,37,0.0 +16390,77,13,13,0.0 +16390,8,40,23,0.0 +16390,63,43.9,44,0.0 +16390,59,55,27,0.0 +16390,39,18,6,0.0 +16391,7,30,32,0.0 +16391,12,38,15,0.0 +16391,13,6,9,0.0 +16391,42,14,45,0.0 +16391,36,19,45,0.0 +16391,67,14,8,0.0 +16391,69,36,8,0.0 +16392,33,2.5,11,0.0 +16392,48,12.75,10,0.0 +16392,26,31.23,10,0.0 +16392,45,9.5,8,0.0 +16392,20,81,22,0.0 +16392,59,55,37,0.0 +16392,51,53,21,0.0 +16392,62,49.3,9,0.0 +16392,56,38,30,0.0 +16392,7,30,2,0.0 +16392,14,23.25,34,0.0 +16392,24,4.5,49,0.0 +16392,55,24,31,0.0 +16392,12,38,35,0.0 +16392,47,9.5,8,0.0 +16392,21,10,11,0.0 +16392,4,22,39,0.0 +16392,22,21,18,0.0 +16392,61,28.5,13,0.0 +16392,30,25.89,31,0.0 +16392,77,13,9,0.0 +16392,23,9,10,0.0 +16392,70,15,47,0.0 +16392,37,26,2,0.0 +16392,72,34.8,31,0.0 +16392,38,263.5,23,0.0 +16392,43,46,24,0.0 +16392,32,32,12,0.0 +16392,34,14,46,0.0 +16392,31,12.5,9,0.0 +16392,40,18.4,35,0.0 +16392,3,10,10,0.0 +16392,50,16.25,20,0.0 +16392,73,15,3,0.0 +16392,76,18,19,0.0 +16392,25,14,9,0.0 +16392,54,7.45,17,0.0 +16392,15,15.5,20,0.0 +16392,6,25,32,0.0 +16393,66,17,20,0.0 +16393,3,10,10,0.0 +16393,21,10,23,0.0 +16393,55,24,9,0.0 +16393,47,9.5,15,0.0 +16393,12,38,12,0.0 +16393,16,17.45,48,0.0 +16393,22,21,27,0.0 +16393,48,12.75,39,0.0 +16393,43,46,47,0.0 +16393,28,45.6,49,0.0 +16393,56,38,38,0.0 +16393,36,19,32,0.0 +16393,45,9.5,19,0.0 +16393,15,15.5,49,0.0 +16393,27,43.9,21,0.0 +16393,6,25,18,0.0 +16393,1,18,24,0.0 +16393,10,31,11,0.0 +16393,52,7,38,0.0 +16393,23,9,47,0.0 +16393,39,18,16,0.0 +16393,67,14,24,0.0 +16393,64,33.25,50,0.0 +16393,35,18,42,0.0 +16393,61,28.5,10,0.0 +16393,42,14,50,0.0 +16393,34,14,30,0.0 +16393,65,21.05,21,0.0 +16393,14,23.25,45,0.0 +16393,4,22,28,0.0 +16393,7,30,24,0.0 +16393,29,123.79,7,0.0 +16393,46,12,20,0.0 +16393,70,15,3,0.0 +16393,75,7.75,24,0.0 +16393,11,21,3,0.0 +16393,77,13,46,0.0 +16393,38,263.5,41,0.0 +16393,60,34,34,0.0 +16393,32,32,18,0.0 +16393,40,18.4,17,0.0 +16393,76,18,33,0.0 +16393,73,15,25,0.0 +16393,69,36,3,0.0 +16393,2,19,25,0.0 +16393,62,49.3,39,0.0 +16393,54,7.45,37,0.0 +16393,49,20,16,0.0 +16393,72,34.8,35,0.0 +16393,58,13.25,31,0.0 +16394,59,55,15,0.0 +16394,77,13,49,0.0 +16394,44,19.45,36,0.0 +16394,4,22,18,0.0 +16394,7,30,25,0.0 +16394,28,45.6,20,0.0 +16394,17,39,38,0.0 +16394,2,19,42,0.0 +16394,46,12,2,0.0 +16394,26,31.23,40,0.0 +16394,65,21.05,49,0.0 +16394,75,7.75,22,0.0 +16394,5,21.35,9,0.0 +16394,45,9.5,16,0.0 +16394,66,17,32,0.0 +16394,36,19,18,0.0 +16394,29,123.79,34,0.0 +16394,74,10,27,0.0 +16394,20,81,27,0.0 +16395,64,33.25,42,0.0 +16395,46,12,38,0.0 +16395,54,7.45,32,0.0 +16395,32,32,34,0.0 +16395,23,9,46,0.0 +16395,58,13.25,33,0.0 +16395,28,45.6,13,0.0 +16395,25,14,10,0.0 +16395,62,49.3,40,0.0 +16395,17,39,2,0.0 +16395,29,123.79,17,0.0 +16395,6,25,27,0.0 +16395,12,38,36,0.0 +16395,69,36,9,0.0 +16395,41,9.65,1,0.0 +16395,22,21,13,0.0 +16395,10,31,10,0.0 +16395,57,19.5,43,0.0 +16395,18,62.5,43,0.0 +16395,61,28.5,33,0.0 +16395,65,21.05,25,0.0 +16395,38,263.5,5,0.0 +16395,51,53,39,0.0 +16395,77,13,44,0.0 +16395,59,55,46,0.0 +16395,20,81,16,0.0 +16395,71,21.5,16,0.0 +16395,16,17.45,17,0.0 +16395,68,12.5,41,0.0 +16395,8,40,46,0.0 +16395,42,14,34,0.0 +16395,36,19,18,0.0 +16395,60,34,33,0.0 +16395,21,10,47,0.0 +16395,48,12.75,3,0.0 +16395,3,10,35,0.0 +16395,52,7,5,0.0 +16395,66,17,10,0.0 +16395,43,46,14,0.0 +16395,47,9.5,42,0.0 +16395,2,19,26,0.0 +16395,44,19.45,40,0.0 +16395,33,2.5,23,0.0 +16395,40,18.4,40,0.0 +16395,72,34.8,29,0.0 +16395,15,15.5,9,0.0 +16395,9,97,33,0.0 +16395,30,25.89,20,0.0 +16395,24,4.5,40,0.0 +16395,63,43.9,32,0.0 +16395,31,12.5,39,0.0 +16395,14,23.25,15,0.0 +16395,37,26,20,0.0 +16395,35,18,11,0.0 +16395,49,20,15,0.0 +16395,53,32.8,31,0.0 +16395,13,6,42,0.0 +16395,1,18,50,0.0 +16395,19,9.2,38,0.0 +16395,11,21,7,0.0 +16395,45,9.5,4,0.0 +16395,5,21.35,40,0.0 +16395,75,7.75,49,0.0 +16395,50,16.25,42,0.0 +16395,4,22,4,0.0 +16395,74,10,4,0.0 +16395,55,24,15,0.0 +16395,39,18,10,0.0 +16395,26,31.23,47,0.0 +16396,74,10,16,0.0 +16396,11,21,31,0.0 +16396,50,16.25,14,0.0 +16396,28,45.6,48,0.0 +16396,42,14,7,0.0 +16396,9,97,33,0.0 +16396,65,21.05,47,0.0 +16396,12,38,44,0.0 +16396,36,19,38,0.0 +16396,25,14,31,0.0 +16396,7,30,33,0.0 +16396,44,19.45,47,0.0 +16396,30,25.89,43,0.0 +16396,1,18,33,0.0 +16396,29,123.79,45,0.0 +16396,39,18,20,0.0 +16396,58,13.25,33,0.0 +16396,40,18.4,26,0.0 +16396,49,20,48,0.0 +16396,70,15,5,0.0 +16396,17,39,10,0.0 +16396,54,7.45,41,0.0 +16396,64,33.25,43,0.0 +16396,22,21,28,0.0 +16396,56,38,19,0.0 +16396,38,263.5,50,0.0 +16396,34,14,7,0.0 +16396,20,81,18,0.0 +16396,14,23.25,5,0.0 +16396,33,2.5,23,0.0 +16396,62,49.3,14,0.0 +16396,10,31,5,0.0 +16396,59,55,49,0.0 +16396,26,31.23,23,0.0 +16396,41,9.65,9,0.0 +16396,73,15,45,0.0 +16396,16,17.45,25,0.0 +16396,32,32,40,0.0 +16396,66,17,34,0.0 +16396,45,9.5,39,0.0 +16396,13,6,20,0.0 +16396,35,18,23,0.0 +16396,27,43.9,16,0.0 +16396,57,19.5,11,0.0 +16396,53,32.8,2,0.0 +16396,72,34.8,27,0.0 +16396,3,10,7,0.0 +16396,18,62.5,10,0.0 +16397,62,49.3,34,0.0 +16397,28,45.6,39,0.0 +16397,74,10,21,0.0 +16397,77,13,49,0.0 +16397,8,40,39,0.0 +16397,45,9.5,47,0.0 +16397,75,7.75,45,0.0 +16397,35,18,7,0.0 +16397,69,36,9,0.0 +16397,36,19,16,0.0 +16397,73,15,2,0.0 +16397,66,17,14,0.0 +16397,6,25,2,0.0 +16397,31,12.5,47,0.0 +16397,21,10,25,0.0 +16397,60,34,2,0.0 +16397,26,31.23,18,0.0 +16397,30,25.89,35,0.0 +16397,71,21.5,16,0.0 +16397,25,14,1,0.0 +16397,52,7,15,0.0 +16397,56,38,34,0.0 +16397,63,43.9,34,0.0 +16397,53,32.8,30,0.0 +16397,4,22,2,0.0 +16397,50,16.25,37,0.0 +16397,27,43.9,42,0.0 +16397,54,7.45,46,0.0 +16397,12,38,25,0.0 +16397,33,2.5,5,0.0 +16397,22,21,47,0.0 +16397,42,14,2,0.0 +16397,49,20,34,0.0 +16397,9,97,29,0.0 +16397,47,9.5,13,0.0 +16397,68,12.5,23,0.0 +16397,43,46,6,0.0 +16397,65,21.05,32,0.0 +16397,20,81,18,0.0 +16397,38,263.5,44,0.0 +16397,39,18,35,0.0 +16397,48,12.75,41,0.0 +16397,72,34.8,47,0.0 +16397,29,123.79,37,0.0 +16397,32,32,45,0.0 +16397,18,62.5,43,0.0 +16397,34,14,49,0.0 +16397,13,6,20,0.0 +16397,46,12,13,0.0 +16397,59,55,17,0.0 +16397,57,19.5,27,0.0 +16397,11,21,14,0.0 +16397,41,9.65,12,0.0 +16397,19,9.2,25,0.0 +16397,40,18.4,47,0.0 +16397,44,19.45,27,0.0 +16397,7,30,43,0.0 +16397,14,23.25,22,0.0 +16397,55,24,49,0.0 +16397,3,10,49,0.0 +16397,67,14,22,0.0 +16397,37,26,18,0.0 +16397,15,15.5,12,0.0 +16397,16,17.45,23,0.0 +16398,70,15,19,0.0 +16398,67,14,6,0.0 +16398,2,19,16,0.0 +16398,51,53,38,0.0 +16398,41,9.65,25,0.0 +16398,63,43.9,36,0.0 +16398,57,19.5,2,0.0 +16398,68,12.5,6,0.0 +16398,11,21,24,0.0 +16398,32,32,32,0.0 +16398,34,14,27,0.0 +16398,24,4.5,38,0.0 +16398,58,13.25,29,0.0 +16398,26,31.23,23,0.0 +16398,53,32.8,35,0.0 +16398,54,7.45,2,0.0 +16398,72,34.8,13,0.0 +16398,75,7.75,30,0.0 +16398,76,18,24,0.0 +16398,7,30,15,0.0 +16398,14,23.25,48,0.0 +16398,8,40,16,0.0 +16398,50,16.25,4,0.0 +16398,20,81,44,0.0 +16398,31,12.5,19,0.0 +16398,61,28.5,49,0.0 +16398,43,46,8,0.0 +16398,74,10,35,0.0 +16398,44,19.45,2,0.0 +16398,40,18.4,28,0.0 +16398,15,15.5,10,0.0 +16398,17,39,37,0.0 +16398,69,36,46,0.0 +16398,62,49.3,10,0.0 +16398,1,18,20,0.0 +16398,21,10,45,0.0 +16398,25,14,43,0.0 +16398,36,19,3,0.0 +16398,22,21,49,0.0 +16398,37,26,44,0.0 +16398,52,7,5,0.0 +16398,65,21.05,31,0.0 +16398,28,45.6,7,0.0 +16398,42,14,23,0.0 +16399,23,9,13,0.0 +16399,38,263.5,8,0.0 +16399,30,25.89,43,0.0 +16399,21,10,35,0.0 +16399,25,14,1,0.0 +16399,56,38,23,0.0 +16399,8,40,29,0.0 +16399,62,49.3,17,0.0 +16399,7,30,32,0.0 +16399,52,7,41,0.0 +16399,42,14,17,0.0 +16399,70,15,37,0.0 +16399,66,17,12,0.0 +16399,59,55,9,0.0 +16399,32,32,31,0.0 +16399,37,26,31,0.0 +16399,77,13,9,0.0 +16399,49,20,27,0.0 +16399,68,12.5,8,0.0 +16400,60,34,11,0.0 +16400,24,4.5,48,0.0 +16400,31,12.5,28,0.0 +16401,31,12.5,15,0.0 +16401,38,263.5,6,0.0 +16401,63,43.9,27,0.0 +16401,27,43.9,12,0.0 +16401,21,10,23,0.0 +16401,17,39,6,0.0 +16401,23,9,7,0.0 +16401,36,19,8,0.0 +16401,30,25.89,2,0.0 +16401,66,17,6,0.0 +16401,75,7.75,29,0.0 +16401,35,18,19,0.0 +16401,6,25,2,0.0 +16401,3,10,35,0.0 +16401,47,9.5,44,0.0 +16401,41,9.65,28,0.0 +16401,55,24,39,0.0 +16401,20,81,3,0.0 +16401,40,18.4,29,0.0 +16401,33,2.5,36,0.0 +16401,45,9.5,37,0.0 +16401,52,7,19,0.0 +16401,26,31.23,26,0.0 +16401,5,21.35,33,0.0 +16401,56,38,40,0.0 +16401,62,49.3,18,0.0 +16401,15,15.5,13,0.0 +16401,53,32.8,2,0.0 +16401,57,19.5,13,0.0 +16401,39,18,37,0.0 +16401,48,12.75,36,0.0 +16401,54,7.45,36,0.0 +16401,69,36,14,0.0 +16401,14,23.25,30,0.0 +16401,2,19,8,0.0 +16401,34,14,44,0.0 +16401,51,53,4,0.0 +16401,64,33.25,1,0.0 +16401,76,18,17,0.0 +16401,29,123.79,18,0.0 +16401,12,38,33,0.0 +16401,70,15,15,0.0 +16402,58,13.25,18,0.0 +16402,33,2.5,11,0.0 +16402,40,18.4,42,0.0 +16402,43,46,44,0.0 +16402,27,43.9,42,0.0 +16402,62,49.3,48,0.0 +16402,25,14,31,0.0 +16402,77,13,46,0.0 +16402,7,30,9,0.0 +16402,17,39,34,0.0 +16402,47,9.5,6,0.0 +16402,35,18,4,0.0 +16402,2,19,17,0.0 +16402,75,7.75,28,0.0 +16402,21,10,44,0.0 +16402,66,17,21,0.0 +16402,57,19.5,15,0.0 +16402,24,4.5,44,0.0 +16402,46,12,33,0.0 +16402,31,12.5,30,0.0 +16402,68,12.5,15,0.0 +16402,37,26,47,0.0 +16402,56,38,31,0.0 +16402,55,24,10,0.0 +16402,64,33.25,4,0.0 +16402,45,9.5,34,0.0 +16402,29,123.79,10,0.0 +16402,49,20,41,0.0 +16402,70,15,34,0.0 +16402,11,21,46,0.0 +16402,12,38,28,0.0 +16402,6,25,3,0.0 +16402,8,40,35,0.0 +16402,71,21.5,29,0.0 +16402,72,34.8,38,0.0 +16402,9,97,32,0.0 +16402,16,17.45,12,0.0 +16402,63,43.9,42,0.0 +16402,65,21.05,4,0.0 +16402,59,55,22,0.0 +16402,44,19.45,8,0.0 +16402,10,31,29,0.0 +16402,20,81,16,0.0 +16402,19,9.2,18,0.0 +16402,4,22,43,0.0 +16402,5,21.35,24,0.0 +16402,32,32,14,0.0 +16402,67,14,22,0.0 +16402,54,7.45,6,0.0 +16402,15,15.5,22,0.0 +16402,60,34,42,0.0 +16402,23,9,16,0.0 +16402,1,18,17,0.0 +16402,73,15,47,0.0 +16402,76,18,12,0.0 +16402,13,6,11,0.0 +16402,38,263.5,47,0.0 +16402,36,19,42,0.0 +16402,52,7,37,0.0 +16402,48,12.75,31,0.0 +16402,26,31.23,40,0.0 +16402,42,14,15,0.0 +16402,3,10,34,0.0 +16402,14,23.25,30,0.0 +16402,69,36,13,0.0 +16402,22,21,13,0.0 +16402,50,16.25,20,0.0 +16403,63,43.9,45,0.0 +16403,19,9.2,21,0.0 +16403,61,28.5,30,0.0 +16403,38,263.5,16,0.0 +16403,43,46,17,0.0 +16403,14,23.25,1,0.0 +16403,2,19,22,0.0 +16403,73,15,3,0.0 +16403,40,18.4,40,0.0 +16403,8,40,24,0.0 +16403,20,81,13,0.0 +16403,27,43.9,19,0.0 +16403,77,13,21,0.0 +16403,75,7.75,34,0.0 +16403,36,19,7,0.0 +16403,3,10,12,0.0 +16403,62,49.3,32,0.0 +16403,44,19.45,31,0.0 +16403,59,55,26,0.0 +16403,54,7.45,9,0.0 +16403,66,17,9,0.0 +16403,37,26,13,0.0 +16403,10,31,44,0.0 +16403,42,14,20,0.0 +16403,55,24,23,0.0 +16403,18,62.5,45,0.0 +16403,26,31.23,6,0.0 +16403,12,38,31,0.0 +16403,47,9.5,44,0.0 +16403,22,21,28,0.0 +16403,65,21.05,42,0.0 +16403,67,14,41,0.0 +16403,32,32,36,0.0 +16403,64,33.25,12,0.0 +16403,70,15,17,0.0 +16403,72,34.8,40,0.0 +16403,71,21.5,34,0.0 +16403,11,21,37,0.0 +16403,46,12,50,0.0 +16403,24,4.5,23,0.0 +16403,7,30,12,0.0 +16403,17,39,42,0.0 +16403,51,53,16,0.0 +16403,34,14,16,0.0 +16403,76,18,33,0.0 +16403,33,2.5,9,0.0 +16403,29,123.79,21,0.0 +16403,23,9,18,0.0 +16403,45,9.5,10,0.0 +16403,53,32.8,12,0.0 +16403,69,36,43,0.0 +16403,31,12.5,46,0.0 +16403,52,7,19,0.0 +16403,4,22,14,0.0 +16403,74,10,10,0.0 +16403,1,18,24,0.0 +16403,28,45.6,43,0.0 +16403,68,12.5,41,0.0 +16403,15,15.5,3,0.0 +16403,30,25.89,3,0.0 +16403,49,20,9,0.0 +16404,41,9.65,17,0.0 +16404,5,21.35,22,0.0 +16404,44,19.45,46,0.0 +16404,4,22,49,0.0 +16404,7,30,15,0.0 +16404,12,38,7,0.0 +16404,62,49.3,21,0.0 +16404,54,7.45,30,0.0 +16404,47,9.5,20,0.0 +16404,74,10,20,0.0 +16404,32,32,26,0.0 +16404,18,62.5,4,0.0 +16404,14,23.25,18,0.0 +16404,38,263.5,48,0.0 +16404,69,36,34,0.0 +16404,28,45.6,38,0.0 +16404,63,43.9,29,0.0 +16404,23,9,9,0.0 +16404,50,16.25,15,0.0 +16404,59,55,19,0.0 +16404,51,53,46,0.0 +16404,3,10,34,0.0 +16404,15,15.5,22,0.0 +16404,65,21.05,23,0.0 +16404,76,18,12,0.0 +16404,57,19.5,21,0.0 +16404,52,7,7,0.0 +16404,13,6,40,0.0 +16404,24,4.5,44,0.0 +16404,49,20,23,0.0 +16404,45,9.5,9,0.0 +16404,25,14,22,0.0 +16404,35,18,12,0.0 +16404,40,18.4,36,0.0 +16404,77,13,6,0.0 +16404,53,32.8,3,0.0 +16404,22,21,29,0.0 +16404,66,17,25,0.0 +16404,9,97,28,0.0 +16404,61,28.5,27,0.0 +16404,21,10,8,0.0 +16404,67,14,9,0.0 +16404,39,18,24,0.0 +16404,48,12.75,24,0.0 +16404,72,34.8,24,0.0 +16404,8,40,35,0.0 +16404,70,15,32,0.0 +16404,26,31.23,5,0.0 +16404,56,38,12,0.0 +16404,33,2.5,12,0.0 +16404,71,21.5,42,0.0 +16404,6,25,3,0.0 +16404,55,24,44,0.0 +16404,2,19,48,0.0 +16404,34,14,45,0.0 +16404,16,17.45,27,0.0 +16404,73,15,9,0.0 +16404,10,31,16,0.0 +16404,37,26,15,0.0 +16404,68,12.5,32,0.0 +16404,43,46,10,0.0 +16404,11,21,30,0.0 +16404,30,25.89,16,0.0 +16404,20,81,7,0.0 +16404,36,19,30,0.0 +16404,1,18,25,0.0 +16405,46,12,26,0.0 +16405,8,40,39,0.0 +16405,19,9.2,3,0.0 +16405,63,43.9,28,0.0 +16405,24,4.5,21,0.0 +16405,76,18,23,0.0 +16405,43,46,36,0.0 +16405,7,30,25,0.0 +16405,75,7.75,11,0.0 +16405,38,263.5,38,0.0 +16405,66,17,1,0.0 +16405,14,23.25,26,0.0 +16405,73,15,7,0.0 +16405,29,123.79,38,0.0 +16405,3,10,19,0.0 +16405,62,49.3,46,0.0 +16405,59,55,18,0.0 +16405,56,38,40,0.0 +16405,11,21,21,0.0 +16405,12,38,34,0.0 +16405,27,43.9,25,0.0 +16405,13,6,6,0.0 +16405,30,25.89,11,0.0 +16405,28,45.6,1,0.0 +16405,64,33.25,4,0.0 +16405,42,14,26,0.0 +16405,52,7,26,0.0 +16405,9,97,36,0.0 +16405,41,9.65,46,0.0 +16405,4,22,48,0.0 +16405,32,32,9,0.0 +16405,51,53,45,0.0 +16405,35,18,11,0.0 +16405,16,17.45,26,0.0 +16405,65,21.05,49,0.0 +16405,36,19,26,0.0 +16405,25,14,46,0.0 +16405,68,12.5,38,0.0 +16405,69,36,9,0.0 +16405,2,19,5,0.0 +16405,15,15.5,32,0.0 +16405,22,21,20,0.0 +16405,18,62.5,23,0.0 +16405,6,25,29,0.0 +16405,1,18,4,0.0 +16405,54,7.45,11,0.0 +16405,49,20,17,0.0 +16405,50,16.25,47,0.0 +16405,10,31,20,0.0 +16405,70,15,8,0.0 +16405,33,2.5,25,0.0 +16406,41,9.65,12,0.0 +16406,16,17.45,9,0.0 +16406,45,9.5,23,0.0 +16406,42,14,24,0.0 +16406,7,30,2,0.0 +16406,5,21.35,34,0.0 +16406,23,9,10,0.0 +16406,27,43.9,34,0.0 +16406,3,10,43,0.0 +16406,35,18,30,0.0 +16406,62,49.3,29,0.0 +16406,8,40,35,0.0 +16406,21,10,2,0.0 +16406,39,18,19,0.0 +16406,47,9.5,13,0.0 +16406,11,21,30,0.0 +16406,70,15,22,0.0 +16406,9,97,48,0.0 +16406,24,4.5,37,0.0 +16406,57,19.5,6,0.0 +16406,66,17,5,0.0 +16406,55,24,45,0.0 +16406,73,15,29,0.0 +16406,36,19,27,0.0 +16406,15,15.5,32,0.0 +16406,50,16.25,9,0.0 +16406,6,25,40,0.0 +16406,38,263.5,34,0.0 +16406,32,32,31,0.0 +16406,37,26,25,0.0 +16406,48,12.75,6,0.0 +16407,43,46,26,0.0 +16407,18,62.5,47,0.0 +16407,26,31.23,14,0.0 +16407,60,34,28,0.0 +16407,10,31,37,0.0 +16407,13,6,11,0.0 +16407,41,9.65,13,0.0 +16407,36,19,23,0.0 +16407,68,12.5,33,0.0 +16407,34,14,31,0.0 +16407,45,9.5,41,0.0 +16407,6,25,6,0.0 +16407,21,10,16,0.0 +16407,24,4.5,35,0.0 +16407,55,24,50,0.0 +16407,74,10,25,0.0 +16407,20,81,40,0.0 +16407,70,15,5,0.0 +16407,30,25.89,29,0.0 +16407,29,123.79,32,0.0 +16407,75,7.75,6,0.0 +16407,19,9.2,33,0.0 +16407,69,36,22,0.0 +16407,23,9,37,0.0 +16407,27,43.9,24,0.0 +16407,31,12.5,15,0.0 +16407,46,12,3,0.0 +16407,52,7,23,0.0 +16407,44,19.45,40,0.0 +16407,38,263.5,36,0.0 +16407,35,18,8,0.0 +16407,40,18.4,22,0.0 +16407,37,26,33,0.0 +16407,11,21,2,0.0 +16407,9,97,11,0.0 +16407,71,21.5,13,0.0 +16407,42,14,4,0.0 +16407,28,45.6,49,0.0 +16407,2,19,25,0.0 +16407,5,21.35,13,0.0 +16407,15,15.5,15,0.0 +16407,63,43.9,17,0.0 +16407,61,28.5,32,0.0 +16407,22,21,7,0.0 +16407,25,14,40,0.0 +16407,59,55,37,0.0 +16407,39,18,38,0.0 +16407,14,23.25,17,0.0 +16407,67,14,4,0.0 +16407,32,32,24,0.0 +16407,49,20,31,0.0 +16407,57,19.5,43,0.0 +16407,65,21.05,37,0.0 +16407,58,13.25,4,0.0 +16407,17,39,14,0.0 +16407,77,13,47,0.0 +16407,8,40,40,0.0 +16407,12,38,49,0.0 +16407,33,2.5,31,0.0 +16407,66,17,36,0.0 +16407,72,34.8,42,0.0 +16407,48,12.75,13,0.0 +16407,54,7.45,48,0.0 +16407,62,49.3,45,0.0 +16407,53,32.8,46,0.0 +16407,64,33.25,18,0.0 +16407,7,30,34,0.0 +16407,51,53,11,0.0 +16407,76,18,28,0.0 +16407,73,15,1,0.0 +16407,50,16.25,32,0.0 +16407,4,22,21,0.0 +16408,51,53,33,0.0 +16408,64,33.25,2,0.0 +16408,18,62.5,9,0.0 +16408,71,21.5,25,0.0 +16408,1,18,5,0.0 +16408,30,25.89,22,0.0 +16408,59,55,22,0.0 +16408,49,20,32,0.0 +16408,32,32,37,0.0 +16408,44,19.45,6,0.0 +16408,62,49.3,37,0.0 +16408,39,18,1,0.0 +16408,63,43.9,46,0.0 +16408,23,9,4,0.0 +16408,47,9.5,40,0.0 +16408,52,7,39,0.0 +16408,28,45.6,21,0.0 +16408,57,19.5,36,0.0 +16408,29,123.79,4,0.0 +16408,54,7.45,12,0.0 +16408,14,23.25,28,0.0 +16408,74,10,4,0.0 +16408,37,26,34,0.0 +16408,21,10,19,0.0 +16408,19,9.2,11,0.0 +16408,10,31,35,0.0 +16408,13,6,11,0.0 +16408,65,21.05,17,0.0 +16408,53,32.8,2,0.0 +16408,73,15,37,0.0 +16408,24,4.5,48,0.0 +16408,16,17.45,1,0.0 +16408,38,263.5,40,0.0 +16408,75,7.75,49,0.0 +16408,69,36,16,0.0 +16408,31,12.5,32,0.0 +16408,41,9.65,6,0.0 +16408,36,19,13,0.0 +16408,40,18.4,13,0.0 +16408,25,14,29,0.0 +16408,58,13.25,6,0.0 +16408,66,17,33,0.0 +16408,76,18,26,0.0 +16408,46,12,39,0.0 +16408,11,21,29,0.0 +16408,72,34.8,49,0.0 +16408,2,19,50,0.0 +16408,77,13,7,0.0 +16408,22,21,18,0.0 +16408,34,14,50,0.0 +16408,27,43.9,20,0.0 +16408,26,31.23,32,0.0 +16408,35,18,36,0.0 +16408,43,46,20,0.0 +16408,60,34,5,0.0 +16408,61,28.5,34,0.0 +16408,6,25,46,0.0 +16408,20,81,34,0.0 +16409,47,9.5,46,0.0 +16409,52,7,9,0.0 +16409,20,81,13,0.0 +16409,45,9.5,32,0.0 +16409,4,22,28,0.0 +16409,63,43.9,39,0.0 +16409,62,49.3,39,0.0 +16409,33,2.5,30,0.0 +16409,16,17.45,42,0.0 +16409,67,14,16,0.0 +16409,42,14,13,0.0 +16409,60,34,44,0.0 +16409,13,6,28,0.0 +16409,55,24,1,0.0 +16409,31,12.5,49,0.0 +16409,28,45.6,18,0.0 +16409,56,38,2,0.0 +16409,44,19.45,46,0.0 +16410,1,18,15,0.0 +16410,69,36,39,0.0 +16410,13,6,11,0.0 +16410,48,12.75,10,0.0 +16410,59,55,40,0.0 +16410,51,53,50,0.0 +16410,17,39,46,0.0 +16410,62,49.3,31,0.0 +16410,11,21,3,0.0 +16410,77,13,6,0.0 +16410,65,21.05,3,0.0 +16410,39,18,6,0.0 +16410,75,7.75,34,0.0 +16410,24,4.5,3,0.0 +16410,10,31,26,0.0 +16410,3,10,26,0.0 +16410,19,9.2,5,0.0 +16410,32,32,48,0.0 +16410,36,19,7,0.0 +16410,63,43.9,1,0.0 +16410,72,34.8,40,0.0 +16410,64,33.25,33,0.0 +16410,50,16.25,32,0.0 +16410,33,2.5,44,0.0 +16410,45,9.5,8,0.0 +16410,61,28.5,34,0.0 +16410,38,263.5,30,0.0 +16410,66,17,8,0.0 +16410,16,17.45,33,0.0 +16410,57,19.5,44,0.0 +16410,37,26,22,0.0 +16410,73,15,36,0.0 +16410,60,34,33,0.0 +16410,20,81,17,0.0 +16410,9,97,38,0.0 +16410,52,7,4,0.0 +16410,31,12.5,31,0.0 +16410,47,9.5,19,0.0 +16410,53,32.8,26,0.0 +16410,41,9.65,22,0.0 +16410,4,22,1,0.0 +16410,67,14,4,0.0 +16410,74,10,14,0.0 +16410,46,12,49,0.0 +16410,22,21,20,0.0 +16410,5,21.35,34,0.0 +16410,44,19.45,42,0.0 +16410,27,43.9,6,0.0 +16410,28,45.6,25,0.0 +16410,30,25.89,8,0.0 +16410,26,31.23,23,0.0 +16410,8,40,26,0.0 +16410,29,123.79,9,0.0 +16410,34,14,1,0.0 +16410,55,24,44,0.0 +16410,71,21.5,24,0.0 +16410,18,62.5,23,0.0 +16410,56,38,12,0.0 +16410,12,38,43,0.0 +16410,25,14,43,0.0 +16410,76,18,20,0.0 +16410,15,15.5,32,0.0 +16410,35,18,4,0.0 +16410,54,7.45,23,0.0 +16410,14,23.25,1,0.0 +16410,23,9,10,0.0 +16410,70,15,49,0.0 +16410,43,46,2,0.0 +16411,64,33.25,50,0.0 +16412,33,2.5,36,0.0 +16412,29,123.79,29,0.0 +16412,54,7.45,25,0.0 +16412,25,14,33,0.0 +16412,6,25,5,0.0 +16412,38,263.5,30,0.0 +16412,64,33.25,30,0.0 +16412,72,34.8,36,0.0 +16412,7,30,39,0.0 +16412,50,16.25,25,0.0 +16412,65,21.05,36,0.0 +16412,8,40,29,0.0 +16412,49,20,7,0.0 +16412,2,19,8,0.0 +16412,35,18,5,0.0 +16412,47,9.5,41,0.0 +16412,63,43.9,7,0.0 +16412,18,62.5,11,0.0 +16412,34,14,24,0.0 +16412,66,17,1,0.0 +16412,4,22,16,0.0 +16412,51,53,23,0.0 +16412,45,9.5,40,0.0 +16412,11,21,5,0.0 +16412,37,26,42,0.0 +16412,52,7,20,0.0 +16412,22,21,28,0.0 +16412,31,12.5,36,0.0 +16412,69,36,48,0.0 +16412,60,34,50,0.0 +16412,36,19,15,0.0 +16412,12,38,21,0.0 +16412,39,18,36,0.0 +16412,32,32,39,0.0 +16412,73,15,3,0.0 +16412,55,24,4,0.0 +16412,77,13,11,0.0 +16412,19,9.2,11,0.0 +16412,17,39,9,0.0 +16412,14,23.25,10,0.0 +16412,70,15,49,0.0 +16412,15,15.5,39,0.0 +16412,41,9.65,47,0.0 +16412,74,10,28,0.0 +16412,27,43.9,29,0.0 +16412,23,9,30,0.0 +16412,24,4.5,10,0.0 +16412,75,7.75,47,0.0 +16412,71,21.5,39,0.0 +16412,10,31,31,0.0 +16412,67,14,15,0.0 +16412,57,19.5,24,0.0 +16412,62,49.3,29,0.0 +16413,28,45.6,19,0.0 +16413,41,9.65,32,0.0 +16413,32,32,5,0.0 +16413,73,15,11,0.0 +16413,75,7.75,42,0.0 +16413,62,49.3,16,0.0 +16413,71,21.5,39,0.0 +16413,55,24,19,0.0 +16413,46,12,29,0.0 +16414,67,14,32,0.0 +16414,57,19.5,10,0.0 +16414,24,4.5,7,0.0 +16414,70,15,38,0.0 +16414,44,19.45,38,0.0 +16414,71,21.5,40,0.0 +16414,30,25.89,6,0.0 +16414,59,55,17,0.0 +16414,2,19,28,0.0 +16414,31,12.5,49,0.0 +16414,14,23.25,48,0.0 +16414,22,21,33,0.0 +16414,55,24,44,0.0 +16414,64,33.25,38,0.0 +16414,58,13.25,28,0.0 +16414,8,40,22,0.0 +16414,36,19,44,0.0 +16414,45,9.5,16,0.0 +16414,77,13,16,0.0 +16414,60,34,31,0.0 +16414,74,10,22,0.0 +16414,20,81,26,0.0 +16414,29,123.79,30,0.0 +16414,34,14,20,0.0 +16414,48,12.75,14,0.0 +16414,65,21.05,27,0.0 +16414,38,263.5,39,0.0 +16414,49,20,11,0.0 +16414,47,9.5,36,0.0 +16414,21,10,4,0.0 +16414,6,25,42,0.0 +16414,42,14,41,0.0 +16414,25,14,19,0.0 +16414,5,21.35,46,0.0 +16414,15,15.5,43,0.0 +16414,62,49.3,8,0.0 +16414,75,7.75,3,0.0 +16414,66,17,26,0.0 +16414,33,2.5,38,0.0 +16414,7,30,31,0.0 +16414,52,7,37,0.0 +16414,63,43.9,26,0.0 +16414,61,28.5,46,0.0 +16414,26,31.23,15,0.0 +16414,3,10,2,0.0 +16414,69,36,13,0.0 +16414,11,21,39,0.0 +16414,10,31,11,0.0 +16414,56,38,7,0.0 +16414,17,39,19,0.0 +16414,27,43.9,21,0.0 +16414,37,26,38,0.0 +16414,73,15,44,0.0 +16414,9,97,49,0.0 +16414,53,32.8,26,0.0 +16414,76,18,34,0.0 +16414,54,7.45,41,0.0 +16414,4,22,48,0.0 +16414,46,12,47,0.0 +16414,72,34.8,11,0.0 +16414,40,18.4,39,0.0 +16414,32,32,20,0.0 +16414,41,9.65,8,0.0 +16414,23,9,15,0.0 +16414,1,18,22,0.0 +16415,9,97,48,0.0 +16415,5,21.35,48,0.0 +16415,1,18,10,0.0 +16415,53,32.8,22,0.0 +16415,16,17.45,9,0.0 +16415,12,38,29,0.0 +16415,39,18,4,0.0 +16415,63,43.9,7,0.0 +16415,74,10,37,0.0 +16415,24,4.5,35,0.0 +16415,25,14,9,0.0 +16415,55,24,33,0.0 +16415,62,49.3,2,0.0 +16415,10,31,22,0.0 +16415,54,7.45,20,0.0 +16415,19,9.2,38,0.0 +16415,65,21.05,43,0.0 +16415,11,21,27,0.0 +16415,22,21,46,0.0 +16415,72,34.8,46,0.0 +16415,30,25.89,29,0.0 +16416,77,13,49,0.0 +16416,58,13.25,40,0.0 +16416,49,20,35,0.0 +16416,33,2.5,20,0.0 +16416,1,18,10,0.0 +16416,35,18,38,0.0 +16416,71,21.5,10,0.0 +16416,3,10,40,0.0 +16416,25,14,40,0.0 +16416,2,19,24,0.0 +16416,44,19.45,19,0.0 +16416,28,45.6,22,0.0 +16416,65,21.05,41,0.0 +16416,16,17.45,25,0.0 +16416,46,12,50,0.0 +16416,37,26,14,0.0 +16416,45,9.5,15,0.0 +16416,72,34.8,39,0.0 +16416,14,23.25,45,0.0 +16416,15,15.5,6,0.0 +16416,76,18,24,0.0 +16416,27,43.9,45,0.0 +16416,73,15,48,0.0 +16416,38,263.5,21,0.0 +16416,4,22,42,0.0 +16416,41,9.65,9,0.0 +16416,50,16.25,30,0.0 +16416,30,25.89,6,0.0 +16416,34,14,28,0.0 +16416,12,38,12,0.0 +16416,20,81,16,0.0 +16416,31,12.5,36,0.0 +16416,23,9,32,0.0 +16416,55,24,18,0.0 +16416,57,19.5,15,0.0 +16416,17,39,39,0.0 +16416,11,21,21,0.0 +16416,47,9.5,19,0.0 +16416,36,19,16,0.0 +16416,19,9.2,37,0.0 +16416,26,31.23,48,0.0 +16417,8,40,15,0.0 +16417,72,34.8,34,0.0 +16417,14,23.25,17,0.0 +16417,62,49.3,7,0.0 +16417,53,32.8,1,0.0 +16417,46,12,20,0.0 +16417,71,21.5,42,0.0 +16417,5,21.35,37,0.0 +16417,32,32,28,0.0 +16417,28,45.6,28,0.0 +16417,73,15,18,0.0 +16417,65,21.05,27,0.0 +16417,50,16.25,24,0.0 +16417,45,9.5,6,0.0 +16417,76,18,35,0.0 +16417,10,31,25,0.0 +16418,13,6,35,0.0 +16418,46,12,33,0.0 +16418,44,19.45,17,0.0 +16418,66,17,38,0.0 +16418,34,14,20,0.0 +16418,67,14,26,0.0 +16418,39,18,16,0.0 +16418,40,18.4,39,0.0 +16418,54,7.45,40,0.0 +16418,17,39,26,0.0 +16418,12,38,2,0.0 +16418,31,12.5,19,0.0 +16418,73,15,29,0.0 +16418,58,13.25,37,0.0 +16418,59,55,46,0.0 +16418,65,21.05,47,0.0 +16418,25,14,6,0.0 +16418,68,12.5,27,0.0 +16418,38,263.5,41,0.0 +16418,51,53,14,0.0 +16418,48,12.75,27,0.0 +16418,60,34,32,0.0 +16419,45,9.5,32,0.0 +16419,32,32,4,0.0 +16419,47,9.5,22,0.0 +16419,33,2.5,22,0.0 +16419,42,14,39,0.0 +16419,49,20,47,0.0 +16419,72,34.8,39,0.0 +16419,57,19.5,10,0.0 +16419,3,10,46,0.0 +16419,19,9.2,42,0.0 +16420,46,12,39,0.0 +16420,27,43.9,5,0.0 +16420,38,263.5,49,0.0 +16420,33,2.5,27,0.0 +16420,62,49.3,15,0.0 +16420,45,9.5,29,0.0 +16420,2,19,23,0.0 +16420,66,17,4,0.0 +16420,41,9.65,46,0.0 +16420,51,53,10,0.0 +16420,44,19.45,49,0.0 +16420,12,38,34,0.0 +16420,16,17.45,34,0.0 +16420,61,28.5,7,0.0 +16420,69,36,44,0.0 +16420,71,21.5,27,0.0 +16420,17,39,5,0.0 +16420,48,12.75,3,0.0 +16420,43,46,2,0.0 +16420,37,26,28,0.0 +16420,39,18,30,0.0 +16420,56,38,50,0.0 +16420,57,19.5,9,0.0 +16420,49,20,28,0.0 +16420,5,21.35,5,0.0 +16420,67,14,5,0.0 +16420,35,18,22,0.0 +16420,47,9.5,14,0.0 +16420,76,18,44,0.0 +16420,26,31.23,5,0.0 +16420,75,7.75,5,0.0 +16420,20,81,16,0.0 +16420,40,18.4,10,0.0 +16420,21,10,46,0.0 +16420,54,7.45,29,0.0 +16420,73,15,15,0.0 +16420,59,55,31,0.0 +16420,31,12.5,15,0.0 +16420,74,10,29,0.0 +16420,9,97,50,0.0 +16420,65,21.05,12,0.0 +16420,13,6,3,0.0 +16420,58,13.25,18,0.0 +16420,77,13,14,0.0 +16420,19,9.2,9,0.0 +16420,25,14,11,0.0 +16421,30,25.89,36,0.0 +16421,29,123.79,40,0.0 +16421,77,13,43,0.0 +16421,11,21,17,0.0 +16421,70,15,39,0.0 +16421,6,25,28,0.0 +16421,3,10,33,0.0 +16421,16,17.45,8,0.0 +16421,22,21,50,0.0 +16421,51,53,29,0.0 +16421,15,15.5,17,0.0 +16421,63,43.9,1,0.0 +16421,66,17,13,0.0 +16421,14,23.25,28,0.0 +16421,72,34.8,25,0.0 +16421,74,10,16,0.0 +16421,43,46,5,0.0 +16421,25,14,20,0.0 +16421,39,18,14,0.0 +16421,73,15,19,0.0 +16421,65,21.05,21,0.0 +16421,48,12.75,13,0.0 +16421,20,81,42,0.0 +16421,41,9.65,31,0.0 +16421,33,2.5,15,0.0 +16421,34,14,29,0.0 +16421,12,38,14,0.0 +16421,45,9.5,43,0.0 +16421,17,39,46,0.0 +16421,19,9.2,21,0.0 +16421,28,45.6,45,0.0 +16421,69,36,50,0.0 +16421,23,9,14,0.0 +16421,67,14,17,0.0 +16421,53,32.8,36,0.0 +16421,58,13.25,30,0.0 +16421,21,10,2,0.0 +16421,18,62.5,49,0.0 +16421,56,38,45,0.0 +16421,36,19,13,0.0 +16421,68,12.5,44,0.0 +16421,62,49.3,6,0.0 +16421,61,28.5,34,0.0 +16421,44,19.45,21,0.0 +16421,54,7.45,25,0.0 +16421,38,263.5,21,0.0 +16421,27,43.9,16,0.0 +16421,76,18,41,0.0 +16421,1,18,37,0.0 +16421,47,9.5,6,0.0 +16421,8,40,35,0.0 +16421,59,55,11,0.0 +16421,24,4.5,5,0.0 +16421,57,19.5,15,0.0 +16421,4,22,2,0.0 +16421,46,12,15,0.0 +16421,49,20,10,0.0 +16421,13,6,34,0.0 +16422,31,12.5,35,0.0 +16423,39,18,49,0.0 +16423,44,19.45,12,0.0 +16423,10,31,2,0.0 +16423,16,17.45,46,0.0 +16423,68,12.5,12,0.0 +16423,2,19,33,0.0 +16423,20,81,7,0.0 +16423,49,20,9,0.0 +16423,1,18,25,0.0 +16423,66,17,28,0.0 +16423,34,14,42,0.0 +16423,67,14,44,0.0 +16423,41,9.65,44,0.0 +16423,50,16.25,30,0.0 +16423,38,263.5,19,0.0 +16423,74,10,40,0.0 +16423,31,12.5,30,0.0 +16423,71,21.5,10,0.0 +16423,18,62.5,5,0.0 +16423,21,10,48,0.0 +16423,53,32.8,44,0.0 +16423,28,45.6,39,0.0 +16423,32,32,25,0.0 +16423,47,9.5,1,0.0 +16423,45,9.5,34,0.0 +16423,9,97,43,0.0 +16423,8,40,5,0.0 +16423,77,13,18,0.0 +16423,60,34,16,0.0 +16423,12,38,41,0.0 +16423,57,19.5,10,0.0 +16423,3,10,23,0.0 +16423,43,46,2,0.0 +16423,35,18,37,0.0 +16423,7,30,18,0.0 +16423,37,26,49,0.0 +16423,15,15.5,27,0.0 +16423,42,14,43,0.0 +16423,48,12.75,37,0.0 +16423,13,6,9,0.0 +16423,69,36,5,0.0 +16423,76,18,47,0.0 +16423,4,22,45,0.0 +16423,29,123.79,39,0.0 +16423,26,31.23,42,0.0 +16423,40,18.4,14,0.0 +16423,72,34.8,49,0.0 +16424,57,19.5,17,0.0 +16424,59,55,19,0.0 +16424,9,97,35,0.0 +16424,26,31.23,46,0.0 +16424,62,49.3,50,0.0 +16424,69,36,16,0.0 +16424,14,23.25,27,0.0 +16424,25,14,31,0.0 +16424,31,12.5,30,0.0 +16424,8,40,30,0.0 +16424,27,43.9,11,0.0 +16424,46,12,21,0.0 +16424,33,2.5,8,0.0 +16424,32,32,39,0.0 +16424,15,15.5,49,0.0 +16424,63,43.9,25,0.0 +16424,11,21,25,0.0 +16424,67,14,7,0.0 +16424,68,12.5,34,0.0 +16424,39,18,26,0.0 +16424,53,32.8,19,0.0 +16424,40,18.4,13,0.0 +16424,71,21.5,22,0.0 +16424,55,24,32,0.0 +16424,51,53,41,0.0 +16424,54,7.45,35,0.0 +16424,45,9.5,21,0.0 +16424,12,38,26,0.0 +16424,43,46,20,0.0 +16424,37,26,17,0.0 +16424,34,14,43,0.0 +16424,41,9.65,9,0.0 +16424,23,9,13,0.0 +16424,42,14,37,0.0 +16424,22,21,43,0.0 +16424,5,21.35,2,0.0 +16424,2,19,48,0.0 +16424,49,20,7,0.0 +16424,77,13,3,0.0 +16424,6,25,21,0.0 +16424,38,263.5,47,0.0 +16424,36,19,41,0.0 +16424,74,10,13,0.0 +16424,61,28.5,34,0.0 +16424,3,10,6,0.0 +16424,60,34,47,0.0 +16424,29,123.79,25,0.0 +16424,7,30,28,0.0 +16424,24,4.5,36,0.0 +16424,21,10,33,0.0 +16424,58,13.25,3,0.0 +16424,30,25.89,4,0.0 +16424,73,15,14,0.0 +16424,52,7,31,0.0 +16424,18,62.5,49,0.0 +16424,70,15,24,0.0 +16424,44,19.45,4,0.0 +16425,62,49.3,19,0.0 +16425,47,9.5,44,0.0 +16425,32,32,11,0.0 +16425,7,30,27,0.0 +16425,57,19.5,50,0.0 +16425,54,7.45,40,0.0 +16425,72,34.8,19,0.0 +16425,12,38,32,0.0 +16425,70,15,1,0.0 +16425,2,19,22,0.0 +16425,31,12.5,19,0.0 +16425,46,12,41,0.0 +16425,50,16.25,50,0.0 +16425,43,46,33,0.0 +16425,55,24,25,0.0 +16425,44,19.45,40,0.0 +16425,9,97,17,0.0 +16425,61,28.5,40,0.0 +16425,21,10,1,0.0 +16425,19,9.2,45,0.0 +16425,39,18,22,0.0 +16425,75,7.75,37,0.0 +16425,35,18,49,0.0 +16425,38,263.5,17,0.0 +16425,42,14,12,0.0 +16426,52,7,30,0.0 +16426,26,31.23,38,0.0 +16426,70,15,21,0.0 +16426,75,7.75,6,0.0 +16426,18,62.5,43,0.0 +16426,9,97,39,0.0 +16426,32,32,20,0.0 +16426,74,10,19,0.0 +16426,17,39,38,0.0 +16426,22,21,50,0.0 +16426,1,18,38,0.0 +16426,11,21,19,0.0 +16426,58,13.25,1,0.0 +16426,14,23.25,8,0.0 +16426,44,19.45,39,0.0 +16427,64,33.25,5,0.0 +16427,68,12.5,16,0.0 +16427,11,21,12,0.0 +16427,33,2.5,36,0.0 +16427,28,45.6,18,0.0 +16427,42,14,20,0.0 +16427,16,17.45,50,0.0 +16427,69,36,22,0.0 +16427,4,22,16,0.0 +16427,6,25,12,0.0 +16427,52,7,34,0.0 +16427,15,15.5,26,0.0 +16427,34,14,33,0.0 +16427,21,10,12,0.0 +16427,47,9.5,31,0.0 +16427,19,9.2,7,0.0 +16427,44,19.45,12,0.0 +16427,76,18,9,0.0 +16427,23,9,15,0.0 +16427,37,26,18,0.0 +16427,35,18,26,0.0 +16427,49,20,31,0.0 +16427,57,19.5,32,0.0 +16427,72,34.8,36,0.0 +16427,27,43.9,22,0.0 +16427,62,49.3,29,0.0 +16427,36,19,21,0.0 +16427,10,31,10,0.0 +16427,3,10,42,0.0 +16427,22,21,9,0.0 +16427,14,23.25,40,0.0 +16427,67,14,38,0.0 +16427,41,9.65,42,0.0 +16427,29,123.79,42,0.0 +16427,24,4.5,29,0.0 +16427,1,18,11,0.0 +16427,56,38,27,0.0 +16427,61,28.5,26,0.0 +16427,74,10,20,0.0 +16427,65,21.05,41,0.0 +16427,59,55,47,0.0 +16427,40,18.4,49,0.0 +16427,63,43.9,18,0.0 +16427,20,81,37,0.0 +16427,73,15,41,0.0 +16427,58,13.25,12,0.0 +16427,25,14,11,0.0 +16427,7,30,22,0.0 +16427,39,18,20,0.0 +16427,66,17,27,0.0 +16427,77,13,14,0.0 +16427,43,46,13,0.0 +16427,26,31.23,7,0.0 +16427,18,62.5,47,0.0 +16427,75,7.75,7,0.0 +16427,32,32,39,0.0 +16427,48,12.75,4,0.0 +16427,55,24,7,0.0 +16428,43,46,15,0.0 +16428,29,123.79,28,0.0 +16428,48,12.75,32,0.0 +16428,63,43.9,28,0.0 +16428,55,24,46,0.0 +16428,32,32,9,0.0 +16428,5,21.35,27,0.0 +16428,59,55,49,0.0 +16428,70,15,37,0.0 +16428,65,21.05,44,0.0 +16428,27,43.9,30,0.0 +16428,26,31.23,9,0.0 +16428,61,28.5,40,0.0 +16428,66,17,9,0.0 +16428,12,38,38,0.0 +16429,62,49.3,19,0.0 +16429,67,14,14,0.0 +16429,43,46,10,0.0 +16429,41,9.65,26,0.0 +16429,63,43.9,31,0.0 +16429,4,22,37,0.0 +16429,19,9.2,36,0.0 +16429,12,38,24,0.0 +16429,74,10,26,0.0 +16429,11,21,33,0.0 +16429,77,13,44,0.0 +16429,22,21,46,0.0 +16429,2,19,10,0.0 +16430,76,18,2,0.0 +16430,59,55,45,0.0 +16430,30,25.89,24,0.0 +16430,25,14,2,0.0 +16430,49,20,48,0.0 +16430,69,36,23,0.0 +16430,12,38,24,0.0 +16430,8,40,2,0.0 +16430,16,17.45,49,0.0 +16430,74,10,10,0.0 +16430,63,43.9,9,0.0 +16430,38,263.5,21,0.0 +16430,33,2.5,7,0.0 +16430,32,32,24,0.0 +16430,66,17,41,0.0 +16430,35,18,17,0.0 +16430,43,46,15,0.0 +16430,58,13.25,33,0.0 +16430,57,19.5,16,0.0 +16430,39,18,45,0.0 +16430,14,23.25,1,0.0 +16430,34,14,9,0.0 +16430,10,31,11,0.0 +16430,75,7.75,10,0.0 +16430,9,97,43,0.0 +16430,71,21.5,15,0.0 +16430,21,10,11,0.0 +16430,48,12.75,24,0.0 +16430,44,19.45,17,0.0 +16430,17,39,7,0.0 +16430,42,14,25,0.0 +16430,2,19,32,0.0 +16430,18,62.5,2,0.0 +16430,70,15,35,0.0 +16430,29,123.79,39,0.0 +16430,64,33.25,43,0.0 +16430,53,32.8,38,0.0 +16430,61,28.5,30,0.0 +16430,3,10,37,0.0 +16430,67,14,18,0.0 +16430,41,9.65,18,0.0 +16430,52,7,21,0.0 +16430,36,19,15,0.0 +16430,5,21.35,25,0.0 +16430,27,43.9,38,0.0 +16430,19,9.2,38,0.0 +16430,15,15.5,23,0.0 +16430,7,30,20,0.0 +16430,23,9,39,0.0 +16430,50,16.25,46,0.0 +16430,46,12,12,0.0 +16430,4,22,29,0.0 +16430,62,49.3,12,0.0 +16430,72,34.8,8,0.0 +16430,13,6,39,0.0 +16430,37,26,2,0.0 +16430,47,9.5,34,0.0 +16430,51,53,25,0.0 +16430,28,45.6,12,0.0 +16430,45,9.5,46,0.0 +16430,54,7.45,48,0.0 +16430,77,13,2,0.0 +16430,11,21,41,0.0 +16430,68,12.5,22,0.0 +16430,60,34,42,0.0 +16430,40,18.4,21,0.0 +16431,33,2.5,3,0.0 +16431,58,13.25,12,0.0 +16431,52,7,37,0.0 +16431,76,18,50,0.0 +16431,70,15,47,0.0 +16431,68,12.5,23,0.0 +16431,35,18,41,0.0 +16431,5,21.35,49,0.0 +16431,30,25.89,35,0.0 +16431,15,15.5,9,0.0 +16431,13,6,33,0.0 +16431,60,34,9,0.0 +16431,71,21.5,38,0.0 +16431,4,22,23,0.0 +16431,18,62.5,31,0.0 +16431,73,15,26,0.0 +16431,59,55,14,0.0 +16431,75,7.75,4,0.0 +16431,23,9,14,0.0 +16431,7,30,41,0.0 +16431,20,81,43,0.0 +16431,56,38,45,0.0 +16431,42,14,4,0.0 +16431,26,31.23,39,0.0 +16431,41,9.65,1,0.0 +16431,19,9.2,48,0.0 +16431,29,123.79,44,0.0 +16431,11,21,42,0.0 +16431,63,43.9,49,0.0 +16431,31,12.5,43,0.0 +16431,74,10,10,0.0 +16431,47,9.5,37,0.0 +16431,67,14,24,0.0 +16431,72,34.8,20,0.0 +16431,36,19,21,0.0 +16431,50,16.25,18,0.0 +16431,64,33.25,16,0.0 +16431,14,23.25,7,0.0 +16431,43,46,17,0.0 +16431,66,17,9,0.0 +16431,54,7.45,22,0.0 +16431,77,13,28,0.0 +16431,2,19,22,0.0 +16431,55,24,35,0.0 +16432,49,20,17,0.0 +16432,5,21.35,42,0.0 +16432,69,36,41,0.0 +16432,3,10,32,0.0 +16432,22,21,20,0.0 +16432,57,19.5,19,0.0 +16432,74,10,2,0.0 +16432,28,45.6,47,0.0 +16432,75,7.75,40,0.0 +16432,48,12.75,39,0.0 +16432,13,6,11,0.0 +16432,63,43.9,22,0.0 +16432,76,18,33,0.0 +16432,52,7,23,0.0 +16432,71,21.5,11,0.0 +16432,68,12.5,47,0.0 +16432,61,28.5,14,0.0 +16432,73,15,4,0.0 +16432,54,7.45,28,0.0 +16432,27,43.9,30,0.0 +16432,16,17.45,25,0.0 +16432,1,18,19,0.0 +16432,24,4.5,49,0.0 +16432,66,17,21,0.0 +16432,44,19.45,26,0.0 +16432,50,16.25,33,0.0 +16432,42,14,16,0.0 +16432,65,21.05,34,0.0 +16432,55,24,17,0.0 +16432,18,62.5,17,0.0 +16432,43,46,31,0.0 +16432,26,31.23,2,0.0 +16432,10,31,13,0.0 +16432,14,23.25,41,0.0 +16432,45,9.5,6,0.0 +16432,36,19,16,0.0 +16432,70,15,39,0.0 +16433,70,15,9,0.0 +16433,21,10,32,0.0 +16433,51,53,35,0.0 +16433,20,81,39,0.0 +16433,45,9.5,38,0.0 +16433,23,9,5,0.0 +16433,16,17.45,50,0.0 +16433,71,21.5,39,0.0 +16433,76,18,4,0.0 +16433,6,25,23,0.0 +16433,13,6,22,0.0 +16433,36,19,44,0.0 +16433,50,16.25,19,0.0 +16433,75,7.75,18,0.0 +16433,56,38,17,0.0 +16433,14,23.25,28,0.0 +16433,68,12.5,42,0.0 +16433,12,38,9,0.0 +16433,58,13.25,22,0.0 +16433,69,36,19,0.0 +16433,48,12.75,34,0.0 +16433,31,12.5,3,0.0 +16433,66,17,49,0.0 +16433,57,19.5,26,0.0 +16433,47,9.5,31,0.0 +16433,64,33.25,39,0.0 +16433,24,4.5,31,0.0 +16433,39,18,1,0.0 +16433,44,19.45,33,0.0 +16433,65,21.05,35,0.0 +16433,26,31.23,4,0.0 +16433,62,49.3,47,0.0 +16433,29,123.79,48,0.0 +16433,8,40,14,0.0 +16433,9,97,32,0.0 +16433,38,263.5,21,0.0 +16433,19,9.2,21,0.0 +16433,32,32,27,0.0 +16433,54,7.45,37,0.0 +16433,25,14,29,0.0 +16433,59,55,31,0.0 +16433,11,21,31,0.0 +16433,18,62.5,49,0.0 +16433,3,10,1,0.0 +16433,7,30,34,0.0 +16433,63,43.9,36,0.0 +16433,1,18,9,0.0 +16433,30,25.89,40,0.0 +16433,41,9.65,16,0.0 +16433,5,21.35,33,0.0 +16433,10,31,25,0.0 +16433,4,22,49,0.0 +16433,22,21,37,0.0 +16433,28,45.6,47,0.0 +16433,74,10,19,0.0 +16433,37,26,50,0.0 +16433,17,39,47,0.0 +16433,53,32.8,38,0.0 +16433,55,24,27,0.0 +16433,33,2.5,22,0.0 +16433,42,14,17,0.0 +16433,67,14,19,0.0 +16433,34,14,9,0.0 +16433,35,18,6,0.0 +16433,43,46,27,0.0 +16433,60,34,30,0.0 +16433,77,13,36,0.0 +16433,2,19,35,0.0 +16433,46,12,49,0.0 +16433,72,34.8,35,0.0 +16433,15,15.5,8,0.0 +16433,73,15,20,0.0 +16433,27,43.9,33,0.0 +16434,71,21.5,26,0.0 +16434,7,30,38,0.0 +16434,64,33.25,29,0.0 +16434,46,12,32,0.0 +16434,72,34.8,21,0.0 +16434,5,21.35,44,0.0 +16434,52,7,4,0.0 +16434,58,13.25,13,0.0 +16434,66,17,6,0.0 +16434,21,10,17,0.0 +16434,38,263.5,28,0.0 +16434,77,13,31,0.0 +16434,11,21,5,0.0 +16434,67,14,25,0.0 +16434,48,12.75,36,0.0 +16434,2,19,46,0.0 +16434,22,21,27,0.0 +16434,12,38,22,0.0 +16434,13,6,37,0.0 +16434,15,15.5,12,0.0 +16434,25,14,39,0.0 +16434,16,17.45,6,0.0 +16434,65,21.05,33,0.0 +16434,4,22,24,0.0 +16434,39,18,39,0.0 +16434,76,18,6,0.0 +16434,20,81,1,0.0 +16434,55,24,27,0.0 +16434,31,12.5,32,0.0 +16434,3,10,1,0.0 +16434,74,10,17,0.0 +16434,56,38,45,0.0 +16434,50,16.25,11,0.0 +16434,14,23.25,37,0.0 +16434,9,97,3,0.0 +16434,68,12.5,22,0.0 +16434,41,9.65,48,0.0 +16434,60,34,44,0.0 +16434,49,20,12,0.0 +16434,6,25,33,0.0 +16434,44,19.45,28,0.0 +16434,42,14,45,0.0 +16434,57,19.5,7,0.0 +16434,53,32.8,31,0.0 +16434,69,36,50,0.0 +16434,63,43.9,17,0.0 +16434,73,15,39,0.0 +16434,17,39,25,0.0 +16434,30,25.89,24,0.0 +16434,27,43.9,1,0.0 +16434,51,53,34,0.0 +16434,75,7.75,30,0.0 +16434,29,123.79,17,0.0 +16435,31,12.5,17,0.0 +16435,26,31.23,37,0.0 +16435,70,15,16,0.0 +16435,58,13.25,46,0.0 +16435,63,43.9,7,0.0 +16435,73,15,14,0.0 +16435,36,19,39,0.0 +16435,23,9,42,0.0 +16435,52,7,48,0.0 +16435,66,17,11,0.0 +16435,37,26,39,0.0 +16435,44,19.45,7,0.0 +16435,30,25.89,50,0.0 +16435,24,4.5,21,0.0 +16435,27,43.9,32,0.0 +16435,1,18,16,0.0 +16435,33,2.5,40,0.0 +16435,3,10,10,0.0 +16435,14,23.25,28,0.0 +16435,28,45.6,1,0.0 +16435,68,12.5,7,0.0 +16435,76,18,29,0.0 +16435,49,20,42,0.0 +16435,2,19,2,0.0 +16435,19,9.2,42,0.0 +16435,61,28.5,2,0.0 +16435,46,12,24,0.0 +16435,42,14,12,0.0 +16435,4,22,16,0.0 +16435,47,9.5,25,0.0 +16435,45,9.5,25,0.0 +16435,12,38,47,0.0 +16435,59,55,8,0.0 +16435,48,12.75,38,0.0 +16435,51,53,49,0.0 +16435,50,16.25,30,0.0 +16435,39,18,46,0.0 +16435,65,21.05,37,0.0 +16435,29,123.79,2,0.0 +16435,41,9.65,25,0.0 +16435,40,18.4,50,0.0 +16435,6,25,37,0.0 +16435,53,32.8,39,0.0 +16435,75,7.75,18,0.0 +16435,35,18,35,0.0 +16435,38,263.5,32,0.0 +16435,62,49.3,49,0.0 +16435,8,40,11,0.0 +16435,77,13,36,0.0 +16435,16,17.45,26,0.0 +16435,57,19.5,11,0.0 +16435,11,21,31,0.0 +16435,21,10,28,0.0 +16435,55,24,23,0.0 +16435,18,62.5,19,0.0 +16435,71,21.5,31,0.0 +16435,72,34.8,17,0.0 +16435,67,14,41,0.0 +16435,54,7.45,22,0.0 +16435,9,97,32,0.0 +16436,56,38,1,0.0 +16436,45,9.5,43,0.0 +16436,28,45.6,26,0.0 +16436,50,16.25,47,0.0 +16436,2,19,40,0.0 +16436,30,25.89,35,0.0 +16436,70,15,41,0.0 +16436,38,263.5,7,0.0 +16436,20,81,25,0.0 +16436,48,12.75,47,0.0 +16436,26,31.23,20,0.0 +16436,27,43.9,24,0.0 +16436,18,62.5,37,0.0 +16436,22,21,7,0.0 +16436,11,21,16,0.0 +16436,72,34.8,48,0.0 +16436,66,17,12,0.0 +16437,26,31.23,41,0.0 +16437,23,9,1,0.0 +16437,60,34,13,0.0 +16437,27,43.9,17,0.0 +16437,62,49.3,50,0.0 +16437,71,21.5,20,0.0 +16437,30,25.89,5,0.0 +16437,43,46,3,0.0 +16437,24,4.5,32,0.0 +16437,49,20,12,0.0 +16437,19,9.2,47,0.0 +16437,55,24,24,0.0 +16437,34,14,27,0.0 +16437,61,28.5,38,0.0 +16437,75,7.75,44,0.0 +16437,29,123.79,11,0.0 +16437,20,81,13,0.0 +16437,6,25,49,0.0 +16437,46,12,3,0.0 +16437,68,12.5,8,0.0 +16437,12,38,42,0.0 +16437,40,18.4,45,0.0 +16437,18,62.5,5,0.0 +16437,32,32,19,0.0 +16437,36,19,20,0.0 +16437,66,17,16,0.0 +16437,59,55,25,0.0 +16437,64,33.25,49,0.0 +16437,3,10,34,0.0 +16437,8,40,12,0.0 +16437,15,15.5,25,0.0 +16437,35,18,41,0.0 +16437,56,38,39,0.0 +16437,2,19,25,0.0 +16437,57,19.5,1,0.0 +16437,42,14,36,0.0 +16437,45,9.5,49,0.0 +16437,1,18,38,0.0 +16437,5,21.35,7,0.0 +16437,22,21,19,0.0 +16437,70,15,27,0.0 +16437,39,18,27,0.0 +16437,50,16.25,39,0.0 +16437,41,9.65,29,0.0 +16437,76,18,14,0.0 +16437,4,22,11,0.0 +16437,63,43.9,41,0.0 +16437,65,21.05,20,0.0 +16437,67,14,14,0.0 +16437,13,6,34,0.0 +16437,58,13.25,30,0.0 +16437,77,13,28,0.0 +16437,38,263.5,5,0.0 +16437,72,34.8,16,0.0 +16437,9,97,1,0.0 +16437,25,14,45,0.0 +16437,44,19.45,3,0.0 +16437,51,53,43,0.0 +16437,33,2.5,41,0.0 +16437,48,12.75,43,0.0 +16437,54,7.45,44,0.0 +16437,37,26,8,0.0 +16437,53,32.8,13,0.0 +16437,11,21,33,0.0 +16437,73,15,42,0.0 +16437,31,12.5,40,0.0 +16437,52,7,26,0.0 +16437,69,36,41,0.0 +16437,10,31,27,0.0 +16437,21,10,48,0.0 +16437,74,10,13,0.0 +16438,60,34,28,0.0 +16438,45,9.5,2,0.0 +16438,6,25,14,0.0 +16438,36,19,34,0.0 +16438,69,36,44,0.0 +16438,63,43.9,3,0.0 +16438,29,123.79,43,0.0 +16438,9,97,47,0.0 +16438,7,30,29,0.0 +16438,46,12,39,0.0 +16438,74,10,33,0.0 +16438,12,38,50,0.0 +16438,62,49.3,46,0.0 +16438,37,26,27,0.0 +16438,64,33.25,15,0.0 +16438,65,21.05,20,0.0 +16438,42,14,38,0.0 +16438,72,34.8,23,0.0 +16438,50,16.25,39,0.0 +16438,21,10,39,0.0 +16438,13,6,32,0.0 +16438,32,32,42,0.0 +16438,23,9,21,0.0 +16438,14,23.25,7,0.0 +16438,16,17.45,16,0.0 +16438,71,21.5,21,0.0 +16438,73,15,14,0.0 +16438,55,24,35,0.0 +16438,2,19,47,0.0 +16438,18,62.5,48,0.0 +16438,53,32.8,35,0.0 +16438,34,14,12,0.0 +16438,27,43.9,22,0.0 +16438,3,10,3,0.0 +16438,31,12.5,33,0.0 +16438,48,12.75,20,0.0 +16438,49,20,40,0.0 +16438,22,21,10,0.0 +16438,4,22,10,0.0 +16438,33,2.5,41,0.0 +16438,47,9.5,18,0.0 +16438,61,28.5,45,0.0 +16438,52,7,32,0.0 +16438,24,4.5,22,0.0 +16438,75,7.75,17,0.0 +16438,44,19.45,46,0.0 +16438,66,17,19,0.0 +16438,41,9.65,43,0.0 +16438,51,53,45,0.0 +16438,70,15,43,0.0 +16439,64,33.25,28,0.0 +16440,20,81,48,0.0 +16440,64,33.25,8,0.0 +16440,13,6,22,0.0 +16440,37,26,11,0.0 +16440,33,2.5,45,0.0 +16440,77,13,13,0.0 +16440,5,21.35,42,0.0 +16440,7,30,26,0.0 +16440,66,17,8,0.0 +16440,53,32.8,3,0.0 +16440,14,23.25,16,0.0 +16440,18,62.5,16,0.0 +16440,49,20,48,0.0 +16440,3,10,12,0.0 +16440,40,18.4,11,0.0 +16440,2,19,44,0.0 +16440,46,12,30,0.0 +16440,12,38,20,0.0 +16440,74,10,40,0.0 +16440,10,31,24,0.0 +16440,34,14,4,0.0 +16440,61,28.5,47,0.0 +16440,50,16.25,33,0.0 +16440,32,32,38,0.0 +16440,38,263.5,21,0.0 +16440,19,9.2,19,0.0 +16440,60,34,26,0.0 +16440,27,43.9,25,0.0 +16440,48,12.75,30,0.0 +16440,11,21,48,0.0 +16440,75,7.75,33,0.0 +16440,43,46,13,0.0 +16440,30,25.89,35,0.0 +16440,25,14,21,0.0 +16440,65,21.05,46,0.0 +16440,42,14,23,0.0 +16440,51,53,23,0.0 +16440,55,24,3,0.0 +16440,22,21,15,0.0 +16440,62,49.3,44,0.0 +16440,29,123.79,23,0.0 +16440,56,38,32,0.0 +16440,9,97,15,0.0 +16440,26,31.23,46,0.0 +16440,1,18,6,0.0 +16441,67,14,44,0.0 +16441,36,19,17,0.0 +16441,24,4.5,5,0.0 +16441,28,45.6,40,0.0 +16441,64,33.25,21,0.0 +16441,16,17.45,46,0.0 +16441,55,24,31,0.0 +16441,57,19.5,37,0.0 +16441,74,10,3,0.0 +16441,47,9.5,37,0.0 +16441,70,15,2,0.0 +16441,3,10,29,0.0 +16441,54,7.45,27,0.0 +16441,62,49.3,8,0.0 +16441,8,40,8,0.0 +16441,66,17,5,0.0 +16441,21,10,41,0.0 +16441,34,14,48,0.0 +16441,56,38,22,0.0 +16441,58,13.25,41,0.0 +16441,42,14,4,0.0 +16441,68,12.5,36,0.0 +16441,53,32.8,33,0.0 +16441,75,7.75,19,0.0 +16441,48,12.75,20,0.0 +16441,50,16.25,39,0.0 +16441,46,12,8,0.0 +16441,52,7,42,0.0 +16441,6,25,7,0.0 +16442,77,13,29,0.0 +16442,13,6,40,0.0 +16442,21,10,47,0.0 +16442,3,10,41,0.0 +16442,35,18,1,0.0 +16442,11,21,24,0.0 +16442,34,14,48,0.0 +16442,14,23.25,26,0.0 +16442,22,21,17,0.0 +16442,64,33.25,7,0.0 +16442,57,19.5,47,0.0 +16442,68,12.5,26,0.0 +16442,70,15,24,0.0 +16442,1,18,50,0.0 +16442,20,81,13,0.0 +16442,47,9.5,31,0.0 +16442,52,7,6,0.0 +16442,4,22,45,0.0 +16442,56,38,38,0.0 +16442,60,34,19,0.0 +16442,49,20,2,0.0 +16442,75,7.75,18,0.0 +16442,36,19,19,0.0 +16442,61,28.5,33,0.0 +16442,73,15,28,0.0 +16442,25,14,4,0.0 +16442,19,9.2,3,0.0 +16442,44,19.45,38,0.0 +16442,33,2.5,38,0.0 +16442,6,25,24,0.0 +16442,37,26,46,0.0 +16442,63,43.9,23,0.0 +16442,45,9.5,23,0.0 +16442,32,32,8,0.0 +16442,41,9.65,3,0.0 +16442,55,24,49,0.0 +16442,38,263.5,43,0.0 +16442,24,4.5,28,0.0 +16442,30,25.89,34,0.0 +16442,54,7.45,32,0.0 +16442,8,40,46,0.0 +16442,12,38,49,0.0 +16442,39,18,11,0.0 +16443,47,9.5,11,0.0 +16443,45,9.5,36,0.0 +16443,5,21.35,12,0.0 +16443,63,43.9,38,0.0 +16443,29,123.79,8,0.0 +16443,59,55,12,0.0 +16443,12,38,24,0.0 +16443,56,38,9,0.0 +16443,64,33.25,46,0.0 +16443,50,16.25,24,0.0 +16443,36,19,3,0.0 +16443,31,12.5,44,0.0 +16443,39,18,16,0.0 +16443,21,10,35,0.0 +16443,66,17,48,0.0 +16443,74,10,26,0.0 +16443,70,15,42,0.0 +16443,8,40,50,0.0 +16443,19,9.2,47,0.0 +16443,30,25.89,3,0.0 +16443,3,10,38,0.0 +16443,73,15,36,0.0 +16443,22,21,44,0.0 +16443,58,13.25,42,0.0 +16443,65,21.05,48,0.0 +16443,11,21,23,0.0 +16443,67,14,15,0.0 +16443,61,28.5,48,0.0 +16443,28,45.6,1,0.0 +16443,37,26,43,0.0 +16443,7,30,1,0.0 +16443,41,9.65,28,0.0 +16443,33,2.5,37,0.0 +16443,72,34.8,27,0.0 +16443,32,32,24,0.0 +16443,40,18.4,19,0.0 +16443,18,62.5,47,0.0 +16443,49,20,21,0.0 +16443,46,12,31,0.0 +16443,1,18,27,0.0 +16443,17,39,22,0.0 +16443,43,46,18,0.0 +16443,60,34,14,0.0 +16443,24,4.5,14,0.0 +16443,71,21.5,13,0.0 +16443,23,9,6,0.0 +16443,75,7.75,22,0.0 +16443,76,18,2,0.0 +16443,69,36,15,0.0 +16443,6,25,25,0.0 +16443,14,23.25,17,0.0 +16443,26,31.23,9,0.0 +16443,68,12.5,37,0.0 +16443,38,263.5,8,0.0 +16443,2,19,38,0.0 +16443,52,7,19,0.0 +16443,34,14,39,0.0 +16443,57,19.5,19,0.0 +16443,27,43.9,19,0.0 +16443,16,17.45,40,0.0 +16443,13,6,3,0.0 +16443,48,12.75,8,0.0 +16443,77,13,43,0.0 +16443,25,14,25,0.0 +16443,20,81,10,0.0 +16444,46,12,29,0.0 +16444,75,7.75,47,0.0 +16444,63,43.9,12,0.0 +16444,59,55,41,0.0 +16444,36,19,35,0.0 +16444,53,32.8,3,0.0 +16444,1,18,37,0.0 +16444,73,15,42,0.0 +16444,43,46,39,0.0 +16444,65,21.05,14,0.0 +16444,22,21,1,0.0 +16444,21,10,20,0.0 +16444,30,25.89,31,0.0 +16444,61,28.5,7,0.0 +16444,40,18.4,43,0.0 +16444,23,9,10,0.0 +16444,18,62.5,26,0.0 +16444,12,38,40,0.0 +16444,74,10,13,0.0 +16444,76,18,45,0.0 +16444,31,12.5,31,0.0 +16444,15,15.5,17,0.0 +16444,17,39,34,0.0 +16444,14,23.25,23,0.0 +16444,35,18,10,0.0 +16444,68,12.5,9,0.0 +16444,7,30,11,0.0 +16444,50,16.25,7,0.0 +16444,71,21.5,11,0.0 +16444,28,45.6,14,0.0 +16444,5,21.35,48,0.0 +16444,77,13,3,0.0 +16444,57,19.5,3,0.0 +16444,38,263.5,21,0.0 +16444,13,6,16,0.0 +16444,37,26,12,0.0 +16444,10,31,46,0.0 +16444,6,25,34,0.0 +16444,51,53,6,0.0 +16444,66,17,47,0.0 +16444,25,14,16,0.0 +16444,33,2.5,9,0.0 +16444,60,34,46,0.0 +16444,39,18,33,0.0 +16444,9,97,12,0.0 +16444,48,12.75,32,0.0 +16444,27,43.9,9,0.0 +16444,64,33.25,48,0.0 +16444,3,10,1,0.0 +16444,24,4.5,33,0.0 +16444,8,40,32,0.0 +16444,29,123.79,48,0.0 +16444,11,21,42,0.0 +16444,26,31.23,39,0.0 +16444,70,15,7,0.0 +16444,4,22,49,0.0 +16444,69,36,43,0.0 +16444,41,9.65,25,0.0 +16444,44,19.45,26,0.0 +16444,34,14,17,0.0 +16444,47,9.5,34,0.0 +16444,32,32,17,0.0 +16445,12,38,48,0.0 +16445,54,7.45,11,0.0 +16445,19,9.2,31,0.0 +16445,15,15.5,4,0.0 +16445,7,30,24,0.0 +16445,63,43.9,36,0.0 +16445,26,31.23,28,0.0 +16445,28,45.6,3,0.0 +16445,30,25.89,17,0.0 +16445,14,23.25,7,0.0 +16445,21,10,3,0.0 +16445,23,9,15,0.0 +16445,45,9.5,21,0.0 +16445,77,13,14,0.0 +16445,69,36,7,0.0 +16445,60,34,5,0.0 +16445,65,21.05,40,0.0 +16445,13,6,49,0.0 +16445,35,18,24,0.0 +16445,36,19,8,0.0 +16445,27,43.9,26,0.0 +16445,74,10,27,0.0 +16445,44,19.45,2,0.0 +16445,58,13.25,5,0.0 +16445,43,46,42,0.0 +16445,41,9.65,34,0.0 +16445,75,7.75,35,0.0 +16445,57,19.5,2,0.0 +16445,18,62.5,44,0.0 +16446,50,16.25,42,0.0 +16446,23,9,20,0.0 +16446,35,18,47,0.0 +16446,69,36,36,0.0 +16446,37,26,5,0.0 +16446,7,30,44,0.0 +16446,67,14,10,0.0 +16446,64,33.25,19,0.0 +16446,46,12,27,0.0 +16446,33,2.5,49,0.0 +16446,25,14,36,0.0 +16446,5,21.35,14,0.0 +16446,40,18.4,34,0.0 +16446,15,15.5,31,0.0 +16446,60,34,34,0.0 +16446,52,7,46,0.0 +16446,4,22,10,0.0 +16446,8,40,24,0.0 +16446,22,21,21,0.0 +16446,63,43.9,44,0.0 +16446,10,31,42,0.0 +16446,49,20,13,0.0 +16446,72,34.8,29,0.0 +16446,6,25,24,0.0 +16446,48,12.75,17,0.0 +16446,11,21,11,0.0 +16446,53,32.8,19,0.0 +16446,73,15,47,0.0 +16446,66,17,15,0.0 +16446,42,14,28,0.0 +16446,16,17.45,31,0.0 +16446,74,10,21,0.0 +16446,29,123.79,3,0.0 +16446,36,19,38,0.0 +16446,55,24,43,0.0 +16446,75,7.75,14,0.0 +16446,3,10,24,0.0 +16446,27,43.9,45,0.0 +16446,31,12.5,34,0.0 +16446,19,9.2,45,0.0 +16446,34,14,22,0.0 +16446,9,97,2,0.0 +16446,30,25.89,8,0.0 +16446,17,39,41,0.0 +16446,58,13.25,4,0.0 +16446,21,10,21,0.0 +16446,39,18,43,0.0 +16446,20,81,18,0.0 +16446,45,9.5,32,0.0 +16446,18,62.5,28,0.0 +16446,43,46,47,0.0 +16446,2,19,7,0.0 +16446,26,31.23,49,0.0 +16446,1,18,47,0.0 +16446,28,45.6,20,0.0 +16446,76,18,8,0.0 +16446,47,9.5,2,0.0 +16446,24,4.5,29,0.0 +16446,12,38,31,0.0 +16446,56,38,4,0.0 +16446,41,9.65,5,0.0 +16446,77,13,24,0.0 +16446,71,21.5,49,0.0 +16446,59,55,28,0.0 +16446,54,7.45,41,0.0 +16446,44,19.45,6,0.0 +16446,62,49.3,6,0.0 +16447,65,21.05,43,0.0 +16447,4,22,5,0.0 +16447,48,12.75,34,0.0 +16447,75,7.75,39,0.0 +16447,67,14,40,0.0 +16447,34,14,49,0.0 +16447,76,18,36,0.0 +16447,26,31.23,46,0.0 +16447,40,18.4,9,0.0 +16447,55,24,26,0.0 +16447,14,23.25,9,0.0 +16447,73,15,39,0.0 +16447,50,16.25,26,0.0 +16447,68,12.5,47,0.0 +16447,66,17,38,0.0 +16447,27,43.9,30,0.0 +16447,19,9.2,29,0.0 +16447,32,32,16,0.0 +16447,39,18,32,0.0 +16447,44,19.45,46,0.0 +16447,31,12.5,21,0.0 +16447,12,38,45,0.0 +16447,2,19,20,0.0 +16447,46,12,13,0.0 +16447,1,18,14,0.0 +16447,51,53,29,0.0 +16447,41,9.65,25,0.0 +16447,8,40,13,0.0 +16447,72,34.8,49,0.0 +16447,15,15.5,18,0.0 +16447,20,81,41,0.0 +16447,18,62.5,48,0.0 +16447,38,263.5,45,0.0 +16447,28,45.6,5,0.0 +16447,3,10,34,0.0 +16447,25,14,30,0.0 +16447,5,21.35,27,0.0 +16447,16,17.45,35,0.0 +16447,17,39,11,0.0 +16447,57,19.5,5,0.0 +16447,45,9.5,41,0.0 +16447,36,19,1,0.0 +16447,64,33.25,49,0.0 +16447,6,25,39,0.0 +16447,9,97,32,0.0 +16447,59,55,2,0.0 +16448,25,14,40,0.0 +16448,67,14,42,0.0 +16448,19,9.2,50,0.0 +16448,56,38,12,0.0 +16448,14,23.25,40,0.0 +16448,37,26,40,0.0 +16448,23,9,47,0.0 +16448,49,20,32,0.0 +16448,26,31.23,8,0.0 +16448,70,15,12,0.0 +16448,3,10,19,0.0 +16448,52,7,7,0.0 +16448,50,16.25,36,0.0 +16448,48,12.75,15,0.0 +16448,5,21.35,42,0.0 +16448,6,25,8,0.0 +16448,44,19.45,29,0.0 +16448,60,34,34,0.0 +16448,61,28.5,34,0.0 +16448,76,18,16,0.0 +16448,10,31,39,0.0 +16448,45,9.5,25,0.0 +16448,24,4.5,6,0.0 +16448,66,17,35,0.0 +16448,41,9.65,21,0.0 +16448,39,18,48,0.0 +16448,1,18,49,0.0 +16448,31,12.5,8,0.0 +16448,77,13,19,0.0 +16448,53,32.8,21,0.0 +16448,68,12.5,47,0.0 +16448,54,7.45,42,0.0 +16448,32,32,44,0.0 +16448,22,21,36,0.0 +16448,11,21,23,0.0 +16448,17,39,40,0.0 +16448,28,45.6,10,0.0 +16448,12,38,43,0.0 +16448,74,10,27,0.0 +16448,13,6,45,0.0 +16448,46,12,4,0.0 +16448,65,21.05,8,0.0 +16448,58,13.25,33,0.0 +16448,8,40,27,0.0 +16448,34,14,33,0.0 +16448,55,24,6,0.0 +16449,3,10,32,0.0 +16449,31,12.5,3,0.0 +16449,7,30,23,0.0 +16449,42,14,16,0.0 +16449,71,21.5,34,0.0 +16449,16,17.45,43,0.0 +16449,54,7.45,43,0.0 +16449,5,21.35,32,0.0 +16449,15,15.5,39,0.0 +16449,53,32.8,31,0.0 +16449,8,40,50,0.0 +16449,39,18,21,0.0 +16449,49,20,22,0.0 +16449,76,18,22,0.0 +16449,47,9.5,37,0.0 +16449,50,16.25,30,0.0 +16449,23,9,20,0.0 +16449,45,9.5,21,0.0 +16449,68,12.5,32,0.0 +16449,24,4.5,7,0.0 +16449,58,13.25,41,0.0 +16449,12,38,29,0.0 +16449,28,45.6,43,0.0 +16449,21,10,5,0.0 +16449,25,14,13,0.0 +16449,38,263.5,29,0.0 +16449,77,13,23,0.0 +16449,4,22,19,0.0 +16450,14,23.25,23,0.0 +16450,45,9.5,3,0.0 +16450,26,31.23,34,0.0 +16450,73,15,18,0.0 +16450,22,21,34,0.0 +16450,68,12.5,7,0.0 +16450,61,28.5,35,0.0 +16450,31,12.5,48,0.0 +16450,69,36,29,0.0 +16450,39,18,41,0.0 +16450,20,81,31,0.0 +16450,4,22,1,0.0 +16450,57,19.5,46,0.0 +16450,56,38,9,0.0 +16450,65,21.05,9,0.0 +16450,70,15,2,0.0 +16450,16,17.45,8,0.0 +16450,52,7,21,0.0 +16450,24,4.5,49,0.0 +16450,18,62.5,39,0.0 +16450,75,7.75,9,0.0 +16450,6,25,37,0.0 +16450,64,33.25,29,0.0 +16450,5,21.35,50,0.0 +16450,77,13,38,0.0 +16450,76,18,13,0.0 +16450,60,34,17,0.0 +16450,15,15.5,32,0.0 +16450,50,16.25,39,0.0 +16450,55,24,21,0.0 +16450,32,32,36,0.0 +16450,29,123.79,24,0.0 +16450,17,39,30,0.0 +16450,43,46,22,0.0 +16450,40,18.4,36,0.0 +16450,19,9.2,17,0.0 +16450,72,34.8,12,0.0 +16450,9,97,22,0.0 +16450,30,25.89,12,0.0 +16450,51,53,30,0.0 +16450,2,19,19,0.0 +16450,3,10,6,0.0 +16450,7,30,20,0.0 +16450,27,43.9,15,0.0 +16450,38,263.5,6,0.0 +16450,66,17,11,0.0 +16450,63,43.9,26,0.0 +16450,11,21,28,0.0 +16450,1,18,30,0.0 +16450,12,38,37,0.0 +16450,71,21.5,6,0.0 +16450,37,26,5,0.0 +16450,62,49.3,25,0.0 +16450,33,2.5,33,0.0 +16450,21,10,4,0.0 +16450,67,14,47,0.0 +16450,74,10,31,0.0 +16450,10,31,37,0.0 +16451,27,43.9,45,0.0 +16451,42,14,30,0.0 +16451,19,9.2,23,0.0 +16451,74,10,7,0.0 +16451,16,17.45,16,0.0 +16451,4,22,41,0.0 +16451,51,53,38,0.0 +16451,31,12.5,21,0.0 +16451,24,4.5,18,0.0 +16452,38,263.5,6,0.0 +16452,12,38,36,0.0 +16452,24,4.5,2,0.0 +16452,2,19,18,0.0 +16452,60,34,27,0.0 +16452,31,12.5,13,0.0 +16452,44,19.45,44,0.0 +16452,28,45.6,33,0.0 +16452,57,19.5,18,0.0 +16452,42,14,38,0.0 +16452,3,10,4,0.0 +16452,8,40,41,0.0 +16452,19,9.2,33,0.0 +16452,70,15,49,0.0 +16452,36,19,45,0.0 +16452,16,17.45,22,0.0 +16452,59,55,50,0.0 +16452,29,123.79,5,0.0 +16452,35,18,46,0.0 +16452,26,31.23,18,0.0 +16452,41,9.65,36,0.0 +16452,75,7.75,40,0.0 +16452,64,33.25,33,0.0 +16452,68,12.5,37,0.0 +16452,72,34.8,45,0.0 +16452,43,46,44,0.0 +16452,7,30,41,0.0 +16452,10,31,38,0.0 +16452,58,13.25,50,0.0 +16452,14,23.25,30,0.0 +16452,1,18,33,0.0 +16452,22,21,30,0.0 +16452,67,14,5,0.0 +16452,63,43.9,26,0.0 +16453,72,34.8,13,0.0 +16453,42,14,24,0.0 +16453,3,10,14,0.0 +16453,21,10,32,0.0 +16453,33,2.5,30,0.0 +16453,28,45.6,10,0.0 +16453,14,23.25,42,0.0 +16453,8,40,8,0.0 +16453,5,21.35,17,0.0 +16453,30,25.89,33,0.0 +16453,65,21.05,42,0.0 +16453,41,9.65,20,0.0 +16453,7,30,29,0.0 +16453,43,46,4,0.0 +16453,1,18,35,0.0 +16453,55,24,17,0.0 +16453,61,28.5,40,0.0 +16453,70,15,18,0.0 +16453,34,14,13,0.0 +16453,49,20,36,0.0 +16453,77,13,24,0.0 +16453,13,6,3,0.0 +16453,6,25,3,0.0 +16453,26,31.23,39,0.0 +16453,11,21,20,0.0 +16453,53,32.8,13,0.0 +16453,50,16.25,20,0.0 +16453,16,17.45,43,0.0 +16453,15,15.5,38,0.0 +16453,45,9.5,18,0.0 +16453,47,9.5,46,0.0 +16453,17,39,35,0.0 +16453,51,53,36,0.0 +16453,68,12.5,24,0.0 +16453,62,49.3,38,0.0 +16453,18,62.5,39,0.0 +16453,57,19.5,1,0.0 +16453,39,18,37,0.0 +16453,19,9.2,49,0.0 +16453,37,26,46,0.0 +16453,9,97,38,0.0 +16453,44,19.45,28,0.0 +16453,67,14,41,0.0 +16453,24,4.5,7,0.0 +16453,71,21.5,47,0.0 +16453,63,43.9,26,0.0 +16453,35,18,46,0.0 +16453,59,55,42,0.0 +16453,76,18,48,0.0 +16453,75,7.75,26,0.0 +16453,74,10,5,0.0 +16453,60,34,27,0.0 +16453,38,263.5,16,0.0 +16453,56,38,43,0.0 +16454,60,34,44,0.0 +16454,34,14,47,0.0 +16454,4,22,42,0.0 +16454,9,97,8,0.0 +16454,19,9.2,37,0.0 +16454,76,18,4,0.0 +16454,39,18,42,0.0 +16454,74,10,15,0.0 +16454,49,20,42,0.0 +16454,32,32,10,0.0 +16454,47,9.5,26,0.0 +16454,59,55,44,0.0 +16454,64,33.25,11,0.0 +16454,70,15,11,0.0 +16454,40,18.4,3,0.0 +16454,14,23.25,12,0.0 +16454,23,9,40,0.0 +16454,28,45.6,11,0.0 +16454,55,24,28,0.0 +16455,69,36,17,0.0 +16455,57,19.5,32,0.0 +16455,20,81,1,0.0 +16455,74,10,42,0.0 +16455,17,39,24,0.0 +16455,35,18,38,0.0 +16455,5,21.35,16,0.0 +16455,3,10,41,0.0 +16455,50,16.25,44,0.0 +16455,48,12.75,33,0.0 +16455,18,62.5,15,0.0 +16455,29,123.79,7,0.0 +16455,51,53,32,0.0 +16455,28,45.6,11,0.0 +16455,40,18.4,39,0.0 +16455,41,9.65,34,0.0 +16455,37,26,6,0.0 +16455,21,10,37,0.0 +16455,65,21.05,17,0.0 +16455,60,34,6,0.0 +16455,23,9,31,0.0 +16455,1,18,6,0.0 +16455,13,6,49,0.0 +16455,9,97,35,0.0 +16455,24,4.5,50,0.0 +16455,10,31,23,0.0 +16455,32,32,10,0.0 +16455,22,21,28,0.0 +16455,67,14,10,0.0 +16455,76,18,9,0.0 +16455,55,24,23,0.0 +16455,16,17.45,12,0.0 +16455,61,28.5,41,0.0 +16455,72,34.8,6,0.0 +16456,63,43.9,28,0.0 +16456,17,39,46,0.0 +16456,68,12.5,34,0.0 +16456,44,19.45,32,0.0 +16456,41,9.65,26,0.0 +16456,62,49.3,41,0.0 +16456,73,15,13,0.0 +16456,39,18,25,0.0 +16456,47,9.5,4,0.0 +16456,4,22,37,0.0 +16456,49,20,18,0.0 +16456,8,40,27,0.0 +16456,77,13,15,0.0 +16456,46,12,46,0.0 +16456,21,10,32,0.0 +16456,29,123.79,49,0.0 +16456,66,17,35,0.0 +16456,64,33.25,4,0.0 +16456,22,21,27,0.0 +16456,45,9.5,25,0.0 +16456,61,28.5,46,0.0 +16456,60,34,28,0.0 +16456,42,14,3,0.0 +16456,40,18.4,1,0.0 +16456,55,24,17,0.0 +16456,28,45.6,3,0.0 +16456,5,21.35,4,0.0 +16456,67,14,14,0.0 +16456,71,21.5,39,0.0 +16456,24,4.5,8,0.0 +16456,38,263.5,2,0.0 +16456,69,36,17,0.0 +16456,35,18,49,0.0 +16456,19,9.2,26,0.0 +16456,15,15.5,24,0.0 +16456,16,17.45,14,0.0 +16456,50,16.25,16,0.0 +16456,48,12.75,13,0.0 +16456,36,19,1,0.0 +16456,12,38,32,0.0 +16456,76,18,25,0.0 +16456,31,12.5,6,0.0 +16456,20,81,20,0.0 +16456,59,55,43,0.0 +16456,70,15,12,0.0 +16456,57,19.5,11,0.0 +16456,2,19,11,0.0 +16456,30,25.89,26,0.0 +16456,10,31,38,0.0 +16456,54,7.45,16,0.0 +16456,23,9,6,0.0 +16456,51,53,11,0.0 +16456,6,25,26,0.0 +16456,11,21,31,0.0 +16456,75,7.75,19,0.0 +16456,14,23.25,12,0.0 +16456,56,38,9,0.0 +16456,58,13.25,11,0.0 +16456,43,46,20,0.0 +16456,52,7,11,0.0 +16457,23,9,11,0.0 +16457,71,21.5,15,0.0 +16457,77,13,19,0.0 +16457,55,24,15,0.0 +16457,47,9.5,39,0.0 +16457,70,15,28,0.0 +16457,30,25.89,26,0.0 +16457,73,15,44,0.0 +16457,13,6,36,0.0 +16457,51,53,45,0.0 +16457,12,38,41,0.0 +16457,26,31.23,41,0.0 +16457,52,7,16,0.0 +16457,29,123.79,8,0.0 +16457,62,49.3,7,0.0 +16457,64,33.25,42,0.0 +16457,40,18.4,5,0.0 +16457,18,62.5,37,0.0 +16457,14,23.25,41,0.0 +16457,11,21,7,0.0 +16457,75,7.75,48,0.0 +16457,16,17.45,19,0.0 +16457,32,32,8,0.0 +16457,36,19,22,0.0 +16457,39,18,13,0.0 +16457,37,26,29,0.0 +16457,46,12,43,0.0 +16457,2,19,14,0.0 +16457,21,10,30,0.0 +16457,57,19.5,39,0.0 +16457,49,20,42,0.0 +16457,38,263.5,1,0.0 +16457,9,97,4,0.0 +16457,4,22,14,0.0 +16457,15,15.5,50,0.0 +16457,60,34,44,0.0 +16457,72,34.8,48,0.0 +16457,45,9.5,46,0.0 +16457,20,81,46,0.0 +16457,8,40,13,0.0 +16457,53,32.8,12,0.0 +16457,56,38,35,0.0 +16457,66,17,27,0.0 +16457,69,36,12,0.0 +16457,63,43.9,37,0.0 +16457,65,21.05,17,0.0 +16457,44,19.45,24,0.0 +16457,33,2.5,33,0.0 +16457,58,13.25,10,0.0 +16458,75,7.75,45,0.0 +16458,55,24,40,0.0 +16458,24,4.5,12,0.0 +16458,59,55,21,0.0 +16458,61,28.5,34,0.0 +16458,77,13,50,0.0 +16458,72,34.8,21,0.0 +16458,43,46,40,0.0 +16459,16,17.45,35,0.0 +16459,1,18,8,0.0 +16459,29,123.79,29,0.0 +16459,48,12.75,46,0.0 +16459,22,21,13,0.0 +16459,27,43.9,27,0.0 +16459,75,7.75,37,0.0 +16459,77,13,30,0.0 +16459,51,53,16,0.0 +16459,34,14,28,0.0 +16459,57,19.5,17,0.0 +16459,54,7.45,31,0.0 +16459,7,30,14,0.0 +16459,76,18,8,0.0 +16459,28,45.6,22,0.0 +16459,56,38,37,0.0 +16459,30,25.89,1,0.0 +16459,9,97,15,0.0 +16459,23,9,10,0.0 +16459,32,32,33,0.0 +16459,44,19.45,19,0.0 +16459,58,13.25,29,0.0 +16459,50,16.25,12,0.0 +16459,20,81,42,0.0 +16459,67,14,31,0.0 +16459,55,24,21,0.0 +16459,18,62.5,16,0.0 +16459,65,21.05,3,0.0 +16459,39,18,28,0.0 +16459,35,18,38,0.0 +16459,52,7,28,0.0 +16459,60,34,8,0.0 +16459,74,10,25,0.0 +16459,2,19,38,0.0 +16459,5,21.35,12,0.0 +16459,14,23.25,50,0.0 +16459,42,14,48,0.0 +16459,19,9.2,30,0.0 +16459,61,28.5,27,0.0 +16459,11,21,24,0.0 +16459,26,31.23,50,0.0 +16459,62,49.3,16,0.0 +16459,38,263.5,48,0.0 +16459,24,4.5,6,0.0 +16459,33,2.5,12,0.0 +16459,71,21.5,48,0.0 +16459,12,38,44,0.0 +16459,6,25,33,0.0 +16459,15,15.5,12,0.0 +16459,41,9.65,4,0.0 +16459,66,17,38,0.0 +16459,43,46,32,0.0 +16460,41,9.65,42,0.0 +16461,36,19,16,0.0 +16461,43,46,39,0.0 +16461,75,7.75,29,0.0 +16461,26,31.23,22,0.0 +16461,5,21.35,43,0.0 +16461,10,31,28,0.0 +16461,7,30,2,0.0 +16461,11,21,14,0.0 +16461,14,23.25,47,0.0 +16461,20,81,15,0.0 +16461,57,19.5,14,0.0 +16461,37,26,35,0.0 +16461,64,33.25,7,0.0 +16461,63,43.9,14,0.0 +16461,13,6,15,0.0 +16461,67,14,29,0.0 +16461,59,55,27,0.0 +16461,35,18,19,0.0 +16461,71,21.5,16,0.0 +16461,46,12,12,0.0 +16461,8,40,32,0.0 +16461,17,39,42,0.0 +16461,16,17.45,9,0.0 +16461,45,9.5,31,0.0 +16462,21,10,46,0.0 +16462,41,9.65,39,0.0 +16462,66,17,28,0.0 +16462,30,25.89,23,0.0 +16462,60,34,4,0.0 +16462,46,12,18,0.0 +16462,76,18,38,0.0 +16462,52,7,13,0.0 +16462,63,43.9,9,0.0 +16462,28,45.6,20,0.0 +16462,70,15,28,0.0 +16462,23,9,35,0.0 +16462,7,30,4,0.0 +16462,9,97,24,0.0 +16462,5,21.35,50,0.0 +16462,16,17.45,11,0.0 +16462,48,12.75,9,0.0 +16462,33,2.5,16,0.0 +16462,3,10,24,0.0 +16462,2,19,49,0.0 +16462,69,36,17,0.0 +16463,62,49.3,14,0.0 +16463,33,2.5,40,0.0 +16463,73,15,38,0.0 +16464,75,7.75,8,0.0 +16464,29,123.79,12,0.0 +16464,38,263.5,46,0.0 +16464,19,9.2,30,0.0 +16464,3,10,37,0.0 +16464,30,25.89,42,0.0 +16464,12,38,49,0.0 +16464,53,32.8,47,0.0 +16464,74,10,28,0.0 +16464,16,17.45,22,0.0 +16464,24,4.5,15,0.0 +16464,40,18.4,4,0.0 +16464,11,21,24,0.0 +16464,64,33.25,22,0.0 +16464,76,18,37,0.0 +16464,65,21.05,45,0.0 +16464,63,43.9,45,0.0 +16464,45,9.5,7,0.0 +16464,35,18,44,0.0 +16464,44,19.45,49,0.0 +16464,73,15,18,0.0 +16464,6,25,46,0.0 +16464,4,22,42,0.0 +16464,15,15.5,41,0.0 +16464,23,9,2,0.0 +16465,70,15,30,0.0 +16465,15,15.5,50,0.0 +16465,38,263.5,24,0.0 +16465,24,4.5,12,0.0 +16465,66,17,8,0.0 +16465,76,18,12,0.0 +16465,46,12,43,0.0 +16465,42,14,49,0.0 +16465,30,25.89,12,0.0 +16465,41,9.65,15,0.0 +16465,50,16.25,35,0.0 +16465,32,32,10,0.0 +16465,54,7.45,14,0.0 +16465,59,55,42,0.0 +16465,35,18,21,0.0 +16465,29,123.79,40,0.0 +16465,34,14,21,0.0 +16465,73,15,38,0.0 +16465,25,14,21,0.0 +16465,39,18,3,0.0 +16465,22,21,12,0.0 +16465,47,9.5,40,0.0 +16465,51,53,10,0.0 +16465,2,19,44,0.0 +16465,26,31.23,32,0.0 +16465,69,36,5,0.0 +16465,9,97,44,0.0 +16465,44,19.45,8,0.0 +16465,12,38,18,0.0 +16465,63,43.9,18,0.0 +16465,5,21.35,10,0.0 +16465,62,49.3,19,0.0 +16465,64,33.25,6,0.0 +16465,68,12.5,32,0.0 +16465,45,9.5,9,0.0 +16465,56,38,34,0.0 +16465,1,18,50,0.0 +16465,18,62.5,45,0.0 +16465,72,34.8,12,0.0 +16466,44,19.45,38,0.0 +16466,66,17,23,0.0 +16466,25,14,34,0.0 +16466,69,36,48,0.0 +16466,14,23.25,43,0.0 +16466,24,4.5,11,0.0 +16466,63,43.9,10,0.0 +16467,34,14,9,0.0 +16467,36,19,22,0.0 +16467,54,7.45,4,0.0 +16467,23,9,34,0.0 +16467,48,12.75,39,0.0 +16467,47,9.5,34,0.0 +16467,5,21.35,27,0.0 +16467,43,46,45,0.0 +16467,18,62.5,50,0.0 +16467,71,21.5,42,0.0 +16467,13,6,42,0.0 +16467,53,32.8,11,0.0 +16467,68,12.5,1,0.0 +16467,11,21,24,0.0 +16467,31,12.5,28,0.0 +16467,8,40,40,0.0 +16467,22,21,39,0.0 +16467,65,21.05,45,0.0 +16467,42,14,37,0.0 +16467,58,13.25,36,0.0 +16467,69,36,20,0.0 +16467,52,7,34,0.0 +16467,75,7.75,4,0.0 +16467,27,43.9,23,0.0 +16467,67,14,39,0.0 +16467,56,38,31,0.0 +16467,70,15,7,0.0 +16467,15,15.5,35,0.0 +16467,37,26,2,0.0 +16467,44,19.45,1,0.0 +16467,40,18.4,15,0.0 +16467,59,55,19,0.0 +16467,51,53,15,0.0 +16467,30,25.89,19,0.0 +16467,39,18,47,0.0 +16467,60,34,35,0.0 +16467,4,22,29,0.0 +16467,57,19.5,34,0.0 +16467,29,123.79,3,0.0 +16467,3,10,9,0.0 +16467,17,39,18,0.0 +16467,63,43.9,33,0.0 +16467,72,34.8,50,0.0 +16467,12,38,46,0.0 +16467,20,81,50,0.0 +16467,19,9.2,11,0.0 +16467,76,18,12,0.0 +16467,2,19,7,0.0 +16467,46,12,42,0.0 +16467,16,17.45,9,0.0 +16467,32,32,21,0.0 +16467,73,15,11,0.0 +16467,74,10,21,0.0 +16467,49,20,40,0.0 +16467,33,2.5,25,0.0 +16467,62,49.3,23,0.0 +16467,55,24,6,0.0 +16467,7,30,1,0.0 +16467,61,28.5,45,0.0 +16467,26,31.23,28,0.0 +16467,25,14,13,0.0 +16467,64,33.25,45,0.0 +16467,1,18,11,0.0 +16467,66,17,20,0.0 +16468,18,62.5,30,0.0 +16468,7,30,28,0.0 +16468,75,7.75,47,0.0 +16468,48,12.75,50,0.0 +16468,28,45.6,42,0.0 +16468,76,18,25,0.0 +16468,74,10,35,0.0 +16468,60,34,37,0.0 +16468,22,21,35,0.0 +16468,43,46,19,0.0 +16468,37,26,2,0.0 +16468,16,17.45,11,0.0 +16468,61,28.5,7,0.0 +16468,69,36,34,0.0 +16468,21,10,32,0.0 +16468,57,19.5,38,0.0 +16468,45,9.5,16,0.0 +16468,46,12,22,0.0 +16468,62,49.3,31,0.0 +16468,39,18,22,0.0 +16468,58,13.25,1,0.0 +16468,33,2.5,40,0.0 +16468,24,4.5,34,0.0 +16468,54,7.45,5,0.0 +16468,23,9,26,0.0 +16468,42,14,13,0.0 +16468,4,22,46,0.0 +16468,41,9.65,44,0.0 +16468,65,21.05,1,0.0 +16468,52,7,12,0.0 +16468,72,34.8,44,0.0 +16468,26,31.23,43,0.0 +16468,31,12.5,41,0.0 +16468,56,38,32,0.0 +16468,29,123.79,8,0.0 +16468,2,19,15,0.0 +16468,6,25,25,0.0 +16468,25,14,21,0.0 +16468,13,6,48,0.0 +16468,10,31,49,0.0 +16468,12,38,28,0.0 +16468,30,25.89,10,0.0 +16468,71,21.5,46,0.0 +16468,17,39,19,0.0 +16468,27,43.9,2,0.0 +16468,15,15.5,20,0.0 +16468,9,97,38,0.0 +16468,36,19,5,0.0 +16468,40,18.4,41,0.0 +16468,53,32.8,16,0.0 +16468,34,14,7,0.0 +16468,19,9.2,28,0.0 +16468,44,19.45,3,0.0 +16468,5,21.35,49,0.0 +16468,38,263.5,39,0.0 +16468,67,14,8,0.0 +16468,49,20,28,0.0 +16468,14,23.25,21,0.0 +16468,63,43.9,48,0.0 +16468,77,13,11,0.0 +16468,8,40,36,0.0 +16468,64,33.25,10,0.0 +16468,32,32,8,0.0 +16468,20,81,28,0.0 +16468,73,15,32,0.0 +16468,59,55,24,0.0 +16468,11,21,4,0.0 +16468,51,53,44,0.0 +16468,66,17,47,0.0 +16468,1,18,20,0.0 +16468,47,9.5,46,0.0 +16468,55,24,17,0.0 +16468,70,15,31,0.0 +16468,68,12.5,23,0.0 +16468,35,18,42,0.0 +16469,15,15.5,48,0.0 +16469,45,9.5,25,0.0 +16469,55,24,18,0.0 +16470,25,14,15,0.0 +16470,13,6,14,0.0 +16470,74,10,43,0.0 +16470,9,97,26,0.0 +16470,24,4.5,9,0.0 +16470,61,28.5,39,0.0 +16470,26,31.23,14,0.0 +16470,43,46,37,0.0 +16470,23,9,17,0.0 +16470,10,31,50,0.0 +16470,55,24,12,0.0 +16470,40,18.4,28,0.0 +16470,2,19,28,0.0 +16470,15,15.5,28,0.0 +16470,69,36,31,0.0 +16470,72,34.8,31,0.0 +16470,33,2.5,2,0.0 +16470,54,7.45,12,0.0 +16470,17,39,21,0.0 +16470,11,21,25,0.0 +16470,35,18,6,0.0 +16470,14,23.25,46,0.0 +16470,28,45.6,32,0.0 +16470,48,12.75,44,0.0 +16470,45,9.5,27,0.0 +16470,29,123.79,10,0.0 +16470,6,25,44,0.0 +16470,73,15,20,0.0 +16470,7,30,50,0.0 +16470,32,32,49,0.0 +16470,77,13,37,0.0 +16470,12,38,9,0.0 +16470,21,10,31,0.0 +16470,41,9.65,13,0.0 +16470,27,43.9,37,0.0 +16470,51,53,35,0.0 +16470,36,19,19,0.0 +16470,59,55,24,0.0 +16470,60,34,24,0.0 +16470,20,81,47,0.0 +16470,5,21.35,22,0.0 +16470,37,26,14,0.0 +16470,38,263.5,38,0.0 +16470,57,19.5,8,0.0 +16470,42,14,16,0.0 +16470,19,9.2,17,0.0 +16470,16,17.45,6,0.0 +16470,52,7,6,0.0 +16470,49,20,14,0.0 +16470,63,43.9,31,0.0 +16470,34,14,5,0.0 +16470,31,12.5,5,0.0 +16470,56,38,17,0.0 +16470,30,25.89,29,0.0 +16470,50,16.25,30,0.0 +16470,47,9.5,4,0.0 +16470,46,12,1,0.0 +16470,22,21,28,0.0 +16470,68,12.5,46,0.0 +16470,71,21.5,43,0.0 +16471,56,38,29,0.0 +16471,10,31,1,0.0 +16471,71,21.5,29,0.0 +16471,76,18,47,0.0 +16471,60,34,25,0.0 +16471,62,49.3,49,0.0 +16471,69,36,3,0.0 +16471,70,15,49,0.0 +16471,43,46,23,0.0 +16471,30,25.89,33,0.0 +16471,58,13.25,18,0.0 +16471,50,16.25,19,0.0 +16471,49,20,15,0.0 +16471,67,14,15,0.0 +16471,20,81,17,0.0 +16471,14,23.25,41,0.0 +16471,3,10,5,0.0 +16471,1,18,47,0.0 +16471,33,2.5,29,0.0 +16471,19,9.2,16,0.0 +16471,77,13,16,0.0 +16471,34,14,17,0.0 +16471,72,34.8,25,0.0 +16471,64,33.25,11,0.0 +16471,66,17,36,0.0 +16471,59,55,45,0.0 +16471,57,19.5,45,0.0 +16471,54,7.45,14,0.0 +16471,73,15,24,0.0 +16471,15,15.5,34,0.0 +16471,24,4.5,24,0.0 +16471,31,12.5,12,0.0 +16471,65,21.05,30,0.0 +16471,26,31.23,42,0.0 +16471,52,7,3,0.0 +16471,46,12,36,0.0 +16471,16,17.45,27,0.0 +16471,75,7.75,18,0.0 +16471,36,19,45,0.0 +16471,41,9.65,19,0.0 +16471,63,43.9,49,0.0 +16471,68,12.5,43,0.0 +16471,18,62.5,45,0.0 +16471,45,9.5,24,0.0 +16471,21,10,4,0.0 +16471,44,19.45,16,0.0 +16471,48,12.75,27,0.0 +16471,25,14,6,0.0 +16471,35,18,20,0.0 +16471,17,39,39,0.0 +16471,4,22,14,0.0 +16471,6,25,35,0.0 +16471,13,6,28,0.0 +16471,32,32,12,0.0 +16471,61,28.5,12,0.0 +16471,51,53,26,0.0 +16471,37,26,36,0.0 +16471,47,9.5,47,0.0 +16472,49,20,18,0.0 +16472,68,12.5,27,0.0 +16472,48,12.75,39,0.0 +16472,20,81,19,0.0 +16472,53,32.8,10,0.0 +16472,40,18.4,35,0.0 +16472,59,55,32,0.0 +16472,44,19.45,42,0.0 +16472,58,13.25,34,0.0 +16472,42,14,28,0.0 +16472,4,22,11,0.0 +16472,36,19,17,0.0 +16472,9,97,2,0.0 +16472,39,18,9,0.0 +16472,8,40,30,0.0 +16472,3,10,33,0.0 +16472,76,18,48,0.0 +16472,19,9.2,23,0.0 +16472,18,62.5,15,0.0 +16472,31,12.5,34,0.0 +16472,2,19,14,0.0 +16472,22,21,39,0.0 +16472,5,21.35,3,0.0 +16472,67,14,24,0.0 +16472,7,30,23,0.0 +16472,63,43.9,18,0.0 +16472,51,53,16,0.0 +16472,66,17,37,0.0 +16472,26,31.23,26,0.0 +16472,10,31,48,0.0 +16472,6,25,10,0.0 +16472,54,7.45,28,0.0 +16472,57,19.5,2,0.0 +16472,15,15.5,12,0.0 +16472,27,43.9,8,0.0 +16472,28,45.6,35,0.0 +16472,71,21.5,1,0.0 +16472,43,46,3,0.0 +16472,56,38,22,0.0 +16473,16,17.45,45,0.0 +16473,28,45.6,16,0.0 +16473,19,9.2,23,0.0 +16473,65,21.05,33,0.0 +16473,27,43.9,43,0.0 +16473,51,53,48,0.0 +16473,35,18,40,0.0 +16473,67,14,20,0.0 +16473,75,7.75,5,0.0 +16473,31,12.5,15,0.0 +16473,57,19.5,37,0.0 +16473,64,33.25,28,0.0 +16473,77,13,30,0.0 +16473,54,7.45,37,0.0 +16473,63,43.9,49,0.0 +16473,34,14,29,0.0 +16473,52,7,45,0.0 +16473,29,123.79,4,0.0 +16473,7,30,12,0.0 +16473,36,19,32,0.0 +16473,21,10,27,0.0 +16473,1,18,11,0.0 +16473,73,15,22,0.0 +16473,15,15.5,43,0.0 +16473,20,81,33,0.0 +16473,13,6,14,0.0 +16473,30,25.89,14,0.0 +16473,40,18.4,17,0.0 +16473,42,14,10,0.0 +16474,29,123.79,28,0.0 +16474,19,9.2,44,0.0 +16474,62,49.3,11,0.0 +16474,26,31.23,32,0.0 +16474,10,31,35,0.0 +16474,67,14,42,0.0 +16474,12,38,21,0.0 +16474,18,62.5,30,0.0 +16474,17,39,38,0.0 +16474,55,24,17,0.0 +16474,52,7,5,0.0 +16474,70,15,15,0.0 +16474,4,22,8,0.0 +16474,66,17,44,0.0 +16474,57,19.5,35,0.0 +16474,9,97,49,0.0 +16474,46,12,40,0.0 +16474,21,10,22,0.0 +16474,56,38,33,0.0 +16474,20,81,1,0.0 +16474,30,25.89,13,0.0 +16474,49,20,33,0.0 +16474,63,43.9,11,0.0 +16474,73,15,15,0.0 +16474,54,7.45,42,0.0 +16474,68,12.5,36,0.0 +16474,36,19,48,0.0 +16474,33,2.5,49,0.0 +16474,48,12.75,3,0.0 +16474,43,46,6,0.0 +16474,34,14,1,0.0 +16474,32,32,46,0.0 +16474,13,6,37,0.0 +16474,22,21,23,0.0 +16474,41,9.65,24,0.0 +16474,77,13,3,0.0 +16474,1,18,9,0.0 +16474,35,18,2,0.0 +16474,45,9.5,41,0.0 +16474,6,25,25,0.0 +16474,11,21,8,0.0 +16474,59,55,5,0.0 +16474,61,28.5,24,0.0 +16474,28,45.6,26,0.0 +16474,75,7.75,31,0.0 +16474,65,21.05,45,0.0 +16474,71,21.5,37,0.0 +16474,2,19,16,0.0 +16474,44,19.45,40,0.0 +16474,69,36,16,0.0 +16474,8,40,16,0.0 +16474,27,43.9,26,0.0 +16474,25,14,16,0.0 +16474,31,12.5,33,0.0 +16474,7,30,38,0.0 +16474,53,32.8,36,0.0 +16474,15,15.5,2,0.0 +16474,51,53,21,0.0 +16474,5,21.35,50,0.0 +16474,72,34.8,21,0.0 +16474,16,17.45,37,0.0 +16474,3,10,30,0.0 +16475,12,38,27,0.0 +16475,16,17.45,45,0.0 +16475,38,263.5,19,0.0 +16475,24,4.5,29,0.0 +16475,63,43.9,50,0.0 +16475,36,19,37,0.0 +16475,58,13.25,18,0.0 +16475,55,24,1,0.0 +16475,21,10,9,0.0 +16475,44,19.45,21,0.0 +16475,26,31.23,28,0.0 +16475,4,22,43,0.0 +16475,57,19.5,49,0.0 +16475,60,34,24,0.0 +16475,54,7.45,20,0.0 +16475,3,10,39,0.0 +16475,14,23.25,33,0.0 +16475,13,6,37,0.0 +16475,9,97,36,0.0 +16475,8,40,21,0.0 +16475,50,16.25,18,0.0 +16475,7,30,45,0.0 +16475,39,18,13,0.0 +16475,28,45.6,36,0.0 +16475,6,25,47,0.0 +16475,2,19,6,0.0 +16475,40,18.4,7,0.0 +16475,64,33.25,42,0.0 +16475,65,21.05,46,0.0 +16475,15,15.5,36,0.0 +16475,52,7,2,0.0 +16475,51,53,6,0.0 +16475,42,14,15,0.0 +16475,48,12.75,30,0.0 +16475,18,62.5,25,0.0 +16475,34,14,6,0.0 +16475,20,81,23,0.0 +16475,75,7.75,40,0.0 +16475,66,17,21,0.0 +16475,46,12,29,0.0 +16475,32,32,31,0.0 +16475,56,38,9,0.0 +16475,41,9.65,26,0.0 +16475,53,32.8,8,0.0 +16475,74,10,37,0.0 +16475,5,21.35,20,0.0 +16475,27,43.9,3,0.0 +16475,35,18,49,0.0 +16475,33,2.5,30,0.0 +16475,71,21.5,43,0.0 +16475,59,55,35,0.0 +16475,69,36,28,0.0 +16475,77,13,4,0.0 +16475,29,123.79,49,0.0 +16475,45,9.5,25,0.0 +16475,22,21,27,0.0 +16475,43,46,29,0.0 +16475,1,18,24,0.0 +16476,74,10,45,0.0 +16476,72,34.8,20,0.0 +16476,31,12.5,10,0.0 +16476,36,19,8,0.0 +16476,12,38,18,0.0 +16476,37,26,48,0.0 +16476,33,2.5,38,0.0 +16476,65,21.05,24,0.0 +16476,6,25,2,0.0 +16476,5,21.35,50,0.0 +16476,28,45.6,30,0.0 +16476,51,53,28,0.0 +16476,75,7.75,6,0.0 +16476,41,9.65,11,0.0 +16476,18,62.5,12,0.0 +16476,45,9.5,15,0.0 +16476,1,18,40,0.0 +16476,76,18,8,0.0 +16476,71,21.5,3,0.0 +16476,15,15.5,41,0.0 +16476,16,17.45,34,0.0 +16476,20,81,28,0.0 +16476,48,12.75,37,0.0 +16476,42,14,8,0.0 +16476,68,12.5,13,0.0 +16476,55,24,43,0.0 +16476,62,49.3,49,0.0 +16476,11,21,50,0.0 +16476,21,10,15,0.0 +16476,40,18.4,18,0.0 +16476,38,263.5,39,0.0 +16476,22,21,30,0.0 +16476,67,14,19,0.0 +16476,19,9.2,19,0.0 +16476,14,23.25,28,0.0 +16476,49,20,46,0.0 +16476,50,16.25,37,0.0 +16476,64,33.25,37,0.0 +16476,60,34,35,0.0 +16476,23,9,2,0.0 +16476,52,7,7,0.0 +16476,66,17,26,0.0 +16476,59,55,27,0.0 +16476,17,39,27,0.0 +16476,44,19.45,38,0.0 +16476,2,19,1,0.0 +16476,10,31,3,0.0 +16476,30,25.89,15,0.0 +16476,57,19.5,22,0.0 +16476,43,46,48,0.0 +16476,25,14,31,0.0 +16476,4,22,15,0.0 +16476,32,32,34,0.0 +16476,63,43.9,46,0.0 +16476,7,30,21,0.0 +16477,49,20,43,0.0 +16477,37,26,30,0.0 +16477,2,19,25,0.0 +16477,15,15.5,41,0.0 +16477,44,19.45,9,0.0 +16478,11,21,10,0.0 +16478,66,17,20,0.0 +16478,4,22,49,0.0 +16478,34,14,16,0.0 +16478,60,34,10,0.0 +16478,52,7,28,0.0 +16478,58,13.25,17,0.0 +16478,15,15.5,5,0.0 +16478,37,26,23,0.0 +16478,72,34.8,7,0.0 +16478,14,23.25,46,0.0 +16478,70,15,33,0.0 +16478,65,21.05,5,0.0 +16478,42,14,2,0.0 +16478,25,14,10,0.0 +16478,53,32.8,38,0.0 +16478,6,25,27,0.0 +16478,76,18,41,0.0 +16478,47,9.5,22,0.0 +16478,21,10,19,0.0 +16478,64,33.25,46,0.0 +16478,29,123.79,25,0.0 +16478,32,32,41,0.0 +16478,57,19.5,42,0.0 +16478,27,43.9,13,0.0 +16478,19,9.2,21,0.0 +16478,26,31.23,41,0.0 +16478,46,12,10,0.0 +16478,51,53,6,0.0 +16478,48,12.75,40,0.0 +16478,36,19,12,0.0 +16478,22,21,48,0.0 +16478,17,39,11,0.0 +16478,61,28.5,8,0.0 +16478,30,25.89,30,0.0 +16478,28,45.6,35,0.0 +16478,55,24,24,0.0 +16478,3,10,3,0.0 +16478,50,16.25,27,0.0 +16478,44,19.45,40,0.0 +16478,73,15,33,0.0 +16478,38,263.5,40,0.0 +16478,68,12.5,20,0.0 +16478,9,97,39,0.0 +16478,23,9,5,0.0 +16478,10,31,19,0.0 +16478,67,14,50,0.0 +16478,16,17.45,34,0.0 +16478,13,6,10,0.0 +16478,56,38,15,0.0 +16478,35,18,2,0.0 +16478,77,13,13,0.0 +16478,54,7.45,37,0.0 +16478,45,9.5,37,0.0 +16478,31,12.5,50,0.0 +16478,1,18,14,0.0 +16478,63,43.9,24,0.0 +16478,39,18,48,0.0 +16478,18,62.5,27,0.0 +16478,71,21.5,40,0.0 +16478,7,30,30,0.0 +16478,59,55,28,0.0 +16478,8,40,42,0.0 +16478,33,2.5,4,0.0 +16478,41,9.65,25,0.0 +16478,12,38,33,0.0 +16478,40,18.4,26,0.0 +16478,20,81,46,0.0 +16478,69,36,44,0.0 +16478,43,46,18,0.0 +16479,23,9,33,0.0 +16479,43,46,6,0.0 +16479,75,7.75,21,0.0 +16479,76,18,33,0.0 +16479,21,10,26,0.0 +16479,30,25.89,11,0.0 +16479,12,38,19,0.0 +16479,62,49.3,10,0.0 +16479,13,6,47,0.0 +16479,17,39,11,0.0 +16479,54,7.45,24,0.0 +16479,15,15.5,35,0.0 +16479,68,12.5,21,0.0 +16479,3,10,43,0.0 +16479,51,53,45,0.0 +16479,31,12.5,46,0.0 +16479,29,123.79,27,0.0 +16479,71,21.5,20,0.0 +16479,25,14,10,0.0 +16479,28,45.6,1,0.0 +16479,59,55,23,0.0 +16479,24,4.5,48,0.0 +16479,49,20,45,0.0 +16479,66,17,25,0.0 +16479,77,13,19,0.0 +16479,46,12,38,0.0 +16479,36,19,5,0.0 +16479,74,10,44,0.0 +16479,53,32.8,28,0.0 +16479,65,21.05,43,0.0 +16479,33,2.5,42,0.0 +16479,69,36,38,0.0 +16479,8,40,41,0.0 +16479,58,13.25,50,0.0 +16479,60,34,44,0.0 +16479,34,14,50,0.0 +16479,63,43.9,46,0.0 +16479,39,18,32,0.0 +16479,72,34.8,1,0.0 +16480,70,15,48,0.0 +16480,42,14,29,0.0 +16481,39,18,32,0.0 +16481,47,9.5,18,0.0 +16481,68,12.5,47,0.0 +16481,10,31,44,0.0 +16481,2,19,49,0.0 +16481,6,25,45,0.0 +16481,22,21,7,0.0 +16481,59,55,1,0.0 +16481,63,43.9,14,0.0 +16481,56,38,40,0.0 +16481,65,21.05,25,0.0 +16481,77,13,13,0.0 +16481,72,34.8,20,0.0 +16481,45,9.5,19,0.0 +16481,14,23.25,14,0.0 +16481,25,14,4,0.0 +16481,66,17,50,0.0 +16481,75,7.75,47,0.0 +16481,27,43.9,48,0.0 +16481,35,18,34,0.0 +16481,23,9,18,0.0 +16481,8,40,25,0.0 +16481,11,21,20,0.0 +16481,46,12,1,0.0 +16481,50,16.25,44,0.0 +16481,31,12.5,44,0.0 +16481,51,53,14,0.0 +16481,12,38,42,0.0 +16481,29,123.79,46,0.0 +16481,33,2.5,28,0.0 +16481,42,14,10,0.0 +16481,48,12.75,32,0.0 +16481,54,7.45,29,0.0 +16481,49,20,32,0.0 +16481,52,7,28,0.0 +16481,40,18.4,50,0.0 +16481,53,32.8,30,0.0 +16481,24,4.5,2,0.0 +16481,19,9.2,47,0.0 +16481,62,49.3,43,0.0 +16481,71,21.5,38,0.0 +16481,20,81,13,0.0 +16481,30,25.89,19,0.0 +16481,61,28.5,7,0.0 +16481,15,15.5,40,0.0 +16481,76,18,2,0.0 +16481,13,6,22,0.0 +16481,73,15,9,0.0 +16481,41,9.65,29,0.0 +16481,18,62.5,26,0.0 +16481,74,10,6,0.0 +16481,37,26,30,0.0 +16481,21,10,23,0.0 +16481,38,263.5,33,0.0 +16481,34,14,46,0.0 +16481,28,45.6,18,0.0 +16481,16,17.45,16,0.0 +16481,26,31.23,16,0.0 +16482,41,9.65,27,0.0 +16482,18,62.5,25,0.0 +16482,10,31,16,0.0 +16482,33,2.5,9,0.0 +16482,22,21,34,0.0 +16482,67,14,45,0.0 +16482,46,12,6,0.0 +16482,20,81,35,0.0 +16482,34,14,43,0.0 +16482,52,7,29,0.0 +16482,40,18.4,22,0.0 +16482,69,36,24,0.0 +16482,19,9.2,48,0.0 +16482,13,6,29,0.0 +16482,15,15.5,5,0.0 +16482,17,39,11,0.0 +16482,49,20,23,0.0 +16482,16,17.45,16,0.0 +16482,39,18,14,0.0 +16482,2,19,2,0.0 +16482,62,49.3,48,0.0 +16482,51,53,3,0.0 +16482,43,46,32,0.0 +16482,30,25.89,26,0.0 +16482,57,19.5,21,0.0 +16483,59,55,47,0.0 +16483,32,32,31,0.0 +16483,34,14,8,0.0 +16483,26,31.23,39,0.0 +16483,43,46,45,0.0 +16483,73,15,47,0.0 +16483,77,13,2,0.0 +16483,3,10,15,0.0 +16483,70,15,40,0.0 +16483,5,21.35,21,0.0 +16483,30,25.89,48,0.0 +16483,11,21,24,0.0 +16483,55,24,38,0.0 +16483,4,22,7,0.0 +16483,47,9.5,25,0.0 +16483,37,26,21,0.0 +16483,54,7.45,46,0.0 +16483,41,9.65,15,0.0 +16483,75,7.75,15,0.0 +16483,25,14,25,0.0 +16483,2,19,28,0.0 +16483,27,43.9,45,0.0 +16483,51,53,9,0.0 +16483,16,17.45,21,0.0 +16483,36,19,45,0.0 +16483,18,62.5,48,0.0 +16483,12,38,9,0.0 +16483,29,123.79,16,0.0 +16483,76,18,46,0.0 +16483,45,9.5,48,0.0 +16483,57,19.5,46,0.0 +16483,64,33.25,19,0.0 +16483,6,25,44,0.0 +16483,60,34,20,0.0 +16483,68,12.5,4,0.0 +16483,72,34.8,30,0.0 +16483,49,20,7,0.0 +16483,23,9,20,0.0 +16483,39,18,23,0.0 +16483,56,38,24,0.0 +16483,15,15.5,22,0.0 +16483,67,14,45,0.0 +16483,48,12.75,6,0.0 +16483,50,16.25,9,0.0 +16483,53,32.8,15,0.0 +16483,65,21.05,21,0.0 +16483,17,39,25,0.0 +16483,19,9.2,31,0.0 +16483,66,17,24,0.0 +16483,58,13.25,27,0.0 +16483,42,14,43,0.0 +16483,7,30,37,0.0 +16483,13,6,10,0.0 +16483,9,97,7,0.0 +16483,14,23.25,27,0.0 +16483,38,263.5,12,0.0 +16483,63,43.9,43,0.0 +16483,31,12.5,26,0.0 +16483,10,31,3,0.0 +16483,71,21.5,16,0.0 +16483,35,18,11,0.0 +16483,69,36,35,0.0 +16483,1,18,49,0.0 +16483,62,49.3,29,0.0 +16483,22,21,33,0.0 +16483,20,81,45,0.0 +16483,8,40,6,0.0 +16483,74,10,13,0.0 +16483,28,45.6,46,0.0 +16483,61,28.5,35,0.0 +16483,40,18.4,20,0.0 +16483,46,12,30,0.0 +16483,33,2.5,42,0.0 +16483,21,10,44,0.0 +16484,4,22,33,0.0 +16484,73,15,15,0.0 +16484,72,34.8,18,0.0 +16484,71,21.5,27,0.0 +16484,75,7.75,5,0.0 +16484,56,38,17,0.0 +16484,34,14,1,0.0 +16484,50,16.25,31,0.0 +16484,3,10,3,0.0 +16484,62,49.3,17,0.0 +16484,61,28.5,48,0.0 +16484,11,21,12,0.0 +16484,64,33.25,44,0.0 +16484,8,40,18,0.0 +16484,12,38,48,0.0 +16484,5,21.35,5,0.0 +16484,48,12.75,38,0.0 +16484,49,20,14,0.0 +16484,46,12,36,0.0 +16484,52,7,48,0.0 +16484,42,14,48,0.0 +16484,28,45.6,22,0.0 +16484,76,18,43,0.0 +16484,18,62.5,41,0.0 +16484,57,19.5,15,0.0 +16484,37,26,26,0.0 +16484,67,14,34,0.0 +16484,39,18,31,0.0 +16484,54,7.45,5,0.0 +16484,20,81,36,0.0 +16484,33,2.5,24,0.0 +16484,32,32,42,0.0 +16484,29,123.79,4,0.0 +16484,60,34,32,0.0 +16484,55,24,47,0.0 +16484,7,30,33,0.0 +16484,77,13,2,0.0 +16484,51,53,47,0.0 +16484,59,55,6,0.0 +16484,65,21.05,29,0.0 +16484,63,43.9,27,0.0 +16484,44,19.45,47,0.0 +16484,31,12.5,9,0.0 +16484,41,9.65,44,0.0 +16484,13,6,5,0.0 +16484,17,39,41,0.0 +16484,14,23.25,31,0.0 +16484,74,10,3,0.0 +16484,9,97,29,0.0 +16484,47,9.5,17,0.0 +16484,6,25,42,0.0 +16484,69,36,36,0.0 +16484,1,18,43,0.0 +16484,53,32.8,14,0.0 +16484,26,31.23,48,0.0 +16484,68,12.5,11,0.0 +16485,22,21,42,0.0 +16485,69,36,41,0.0 +16485,51,53,7,0.0 +16485,8,40,9,0.0 +16485,67,14,49,0.0 +16485,4,22,4,0.0 +16485,64,33.25,19,0.0 +16485,62,49.3,2,0.0 +16485,31,12.5,5,0.0 +16485,12,38,46,0.0 +16485,32,32,37,0.0 +16485,70,15,20,0.0 +16485,59,55,38,0.0 +16485,76,18,14,0.0 +16485,17,39,43,0.0 +16485,61,28.5,47,0.0 +16485,73,15,12,0.0 +16485,9,97,36,0.0 +16485,58,13.25,24,0.0 +16485,34,14,33,0.0 +16485,43,46,36,0.0 +16485,20,81,29,0.0 +16485,26,31.23,25,0.0 +16485,18,62.5,12,0.0 +16485,75,7.75,35,0.0 +16485,60,34,47,0.0 +16485,56,38,3,0.0 +16485,15,15.5,46,0.0 +16485,10,31,28,0.0 +16485,21,10,3,0.0 +16485,35,18,18,0.0 +16485,50,16.25,19,0.0 +16485,19,9.2,13,0.0 +16485,63,43.9,43,0.0 +16485,40,18.4,42,0.0 +16485,74,10,3,0.0 +16485,49,20,39,0.0 +16485,48,12.75,45,0.0 +16485,39,18,12,0.0 +16485,68,12.5,28,0.0 +16485,54,7.45,14,0.0 +16486,9,97,20,0.0 +16486,34,14,50,0.0 +16486,60,34,9,0.0 +16486,30,25.89,17,0.0 +16486,15,15.5,24,0.0 +16486,57,19.5,11,0.0 +16486,65,21.05,35,0.0 +16486,58,13.25,16,0.0 +16486,10,31,15,0.0 +16486,27,43.9,12,0.0 +16486,52,7,17,0.0 +16486,68,12.5,1,0.0 +16486,31,12.5,13,0.0 +16486,44,19.45,7,0.0 +16486,59,55,7,0.0 +16486,28,45.6,38,0.0 +16486,23,9,33,0.0 +16486,50,16.25,2,0.0 +16486,13,6,16,0.0 +16486,24,4.5,28,0.0 +16486,61,28.5,28,0.0 +16486,7,30,22,0.0 +16486,74,10,1,0.0 +16486,63,43.9,20,0.0 +16486,12,38,41,0.0 +16486,29,123.79,14,0.0 +16486,76,18,2,0.0 +16486,2,19,23,0.0 +16486,43,46,38,0.0 +16486,67,14,2,0.0 +16486,17,39,7,0.0 +16486,16,17.45,30,0.0 +16486,54,7.45,45,0.0 +16486,32,32,36,0.0 +16486,19,9.2,8,0.0 +16486,48,12.75,7,0.0 +16486,73,15,3,0.0 +16486,35,18,9,0.0 +16486,4,22,13,0.0 +16486,11,21,10,0.0 +16486,1,18,50,0.0 +16486,14,23.25,17,0.0 +16486,77,13,19,0.0 +16486,37,26,12,0.0 +16486,41,9.65,46,0.0 +16486,55,24,4,0.0 +16486,71,21.5,29,0.0 +16486,21,10,33,0.0 +16486,45,9.5,35,0.0 +16486,53,32.8,47,0.0 +16486,64,33.25,33,0.0 +16486,36,19,50,0.0 +16486,3,10,21,0.0 +16486,6,25,9,0.0 +16487,23,9,1,0.0 +16487,61,28.5,7,0.0 +16487,49,20,37,0.0 +16487,63,43.9,33,0.0 +16487,31,12.5,2,0.0 +16487,22,21,20,0.0 +16487,66,17,18,0.0 +16487,50,16.25,17,0.0 +16487,42,14,4,0.0 +16487,39,18,33,0.0 +16487,24,4.5,28,0.0 +16487,73,15,42,0.0 +16487,4,22,9,0.0 +16487,35,18,14,0.0 +16487,41,9.65,44,0.0 +16487,26,31.23,43,0.0 +16487,12,38,36,0.0 +16487,56,38,36,0.0 +16487,36,19,48,0.0 +16487,59,55,6,0.0 +16487,25,14,1,0.0 +16487,65,21.05,36,0.0 +16487,40,18.4,49,0.0 +16487,15,15.5,40,0.0 +16488,61,28.5,33,0.0 +16488,8,40,46,0.0 +16488,51,53,30,0.0 +16488,4,22,46,0.0 +16488,54,7.45,15,0.0 +16488,3,10,8,0.0 +16488,48,12.75,42,0.0 +16488,20,81,20,0.0 +16488,1,18,7,0.0 +16488,19,9.2,34,0.0 +16489,19,9.2,14,0.0 +16489,10,31,17,0.0 +16489,27,43.9,19,0.0 +16489,53,32.8,43,0.0 +16489,29,123.79,49,0.0 +16489,1,18,38,0.0 +16489,71,21.5,38,0.0 +16489,28,45.6,19,0.0 +16489,61,28.5,32,0.0 +16489,4,22,33,0.0 +16489,66,17,30,0.0 +16489,38,263.5,33,0.0 +16489,30,25.89,30,0.0 +16489,23,9,48,0.0 +16489,6,25,7,0.0 +16489,59,55,11,0.0 +16489,50,16.25,19,0.0 +16489,44,19.45,18,0.0 +16489,3,10,1,0.0 +16489,57,19.5,47,0.0 +16489,2,19,4,0.0 +16489,11,21,16,0.0 +16489,17,39,50,0.0 +16489,7,30,9,0.0 +16489,16,17.45,25,0.0 +16489,15,15.5,45,0.0 +16489,55,24,36,0.0 +16490,72,34.8,7,0.0 +16490,43,46,46,0.0 +16490,49,20,41,0.0 +16490,57,19.5,46,0.0 +16490,4,22,9,0.0 +16490,37,26,23,0.0 +16490,45,9.5,4,0.0 +16490,58,13.25,12,0.0 +16490,33,2.5,41,0.0 +16490,27,43.9,47,0.0 +16490,14,23.25,37,0.0 +16490,76,18,4,0.0 +16490,54,7.45,36,0.0 +16490,68,12.5,34,0.0 +16490,53,32.8,16,0.0 +16490,62,49.3,50,0.0 +16490,42,14,48,0.0 +16490,66,17,44,0.0 +16490,71,21.5,29,0.0 +16490,21,10,23,0.0 +16490,61,28.5,23,0.0 +16490,59,55,18,0.0 +16490,2,19,50,0.0 +16490,64,33.25,13,0.0 +16490,50,16.25,36,0.0 +16490,12,38,47,0.0 +16490,1,18,1,0.0 +16490,36,19,2,0.0 +16490,38,263.5,48,0.0 +16490,73,15,20,0.0 +16490,48,12.75,15,0.0 +16490,15,15.5,34,0.0 +16490,18,62.5,42,0.0 +16490,10,31,32,0.0 +16490,40,18.4,41,0.0 +16490,51,53,23,0.0 +16490,74,10,34,0.0 +16490,6,25,19,0.0 +16490,19,9.2,49,0.0 +16490,9,97,36,0.0 +16490,3,10,43,0.0 +16490,23,9,16,0.0 +16490,69,36,26,0.0 +16491,9,97,1,0.0 +16491,76,18,29,0.0 +16491,50,16.25,14,0.0 +16491,32,32,27,0.0 +16491,12,38,46,0.0 +16491,56,38,9,0.0 +16491,1,18,6,0.0 +16491,20,81,48,0.0 +16491,13,6,48,0.0 +16491,67,14,36,0.0 +16491,7,30,12,0.0 +16491,35,18,12,0.0 +16491,77,13,21,0.0 +16491,63,43.9,41,0.0 +16491,6,25,3,0.0 +16491,51,53,10,0.0 +16491,8,40,6,0.0 +16491,58,13.25,39,0.0 +16491,62,49.3,12,0.0 +16491,33,2.5,8,0.0 +16491,25,14,19,0.0 +16491,75,7.75,16,0.0 +16491,19,9.2,50,0.0 +16491,72,34.8,37,0.0 +16491,44,19.45,17,0.0 +16491,39,18,44,0.0 +16491,41,9.65,24,0.0 +16491,54,7.45,43,0.0 +16491,18,62.5,17,0.0 +16491,46,12,7,0.0 +16491,36,19,43,0.0 +16491,3,10,39,0.0 +16491,47,9.5,38,0.0 +16491,10,31,42,0.0 +16491,16,17.45,48,0.0 +16491,24,4.5,45,0.0 +16491,48,12.75,3,0.0 +16491,45,9.5,36,0.0 +16491,34,14,35,0.0 +16491,66,17,49,0.0 +16491,23,9,4,0.0 +16491,61,28.5,32,0.0 +16491,71,21.5,29,0.0 +16491,69,36,16,0.0 +16491,31,12.5,12,0.0 +16491,2,19,31,0.0 +16491,74,10,12,0.0 +16491,28,45.6,45,0.0 +16491,5,21.35,9,0.0 +16491,22,21,40,0.0 +16491,53,32.8,25,0.0 +16491,43,46,28,0.0 +16491,55,24,6,0.0 +16491,29,123.79,44,0.0 +16491,15,15.5,21,0.0 +16491,52,7,46,0.0 +16491,40,18.4,6,0.0 +16491,64,33.25,47,0.0 +16491,42,14,31,0.0 +16491,65,21.05,32,0.0 +16491,60,34,46,0.0 +16491,11,21,1,0.0 +16491,59,55,45,0.0 +16491,14,23.25,14,0.0 +16491,70,15,38,0.0 +16491,37,26,38,0.0 +16491,30,25.89,29,0.0 +16491,68,12.5,34,0.0 +16491,17,39,41,0.0 +16491,57,19.5,40,0.0 +16491,38,263.5,31,0.0 +16492,2,19,14,0.0 +16492,55,24,31,0.0 +16492,12,38,2,0.0 +16492,3,10,30,0.0 +16492,14,23.25,27,0.0 +16492,77,13,13,0.0 +16492,44,19.45,32,0.0 +16492,5,21.35,36,0.0 +16492,59,55,38,0.0 +16492,47,9.5,3,0.0 +16492,39,18,12,0.0 +16492,71,21.5,33,0.0 +16492,58,13.25,31,0.0 +16492,37,26,23,0.0 +16492,13,6,24,0.0 +16492,36,19,39,0.0 +16492,23,9,47,0.0 +16492,66,17,9,0.0 +16492,30,25.89,7,0.0 +16492,76,18,44,0.0 +16492,43,46,33,0.0 +16492,41,9.65,38,0.0 +16492,28,45.6,4,0.0 +16492,25,14,22,0.0 +16492,27,43.9,28,0.0 +16492,42,14,34,0.0 +16492,61,28.5,9,0.0 +16493,42,14,48,0.0 +16493,46,12,3,0.0 +16493,57,19.5,36,0.0 +16493,12,38,7,0.0 +16493,71,21.5,12,0.0 +16493,11,21,15,0.0 +16493,23,9,24,0.0 +16493,35,18,39,0.0 +16493,9,97,4,0.0 +16493,31,12.5,16,0.0 +16493,73,15,49,0.0 +16493,14,23.25,39,0.0 +16493,38,263.5,18,0.0 +16493,20,81,25,0.0 +16493,64,33.25,30,0.0 +16493,60,34,16,0.0 +16493,53,32.8,31,0.0 +16493,6,25,43,0.0 +16493,5,21.35,37,0.0 +16493,50,16.25,49,0.0 +16493,30,25.89,6,0.0 +16493,52,7,27,0.0 +16493,8,40,14,0.0 +16493,76,18,49,0.0 +16493,66,17,44,0.0 +16493,18,62.5,44,0.0 +16493,22,21,44,0.0 +16493,33,2.5,8,0.0 +16493,39,18,24,0.0 +16493,48,12.75,27,0.0 +16493,19,9.2,17,0.0 +16493,59,55,32,0.0 +16493,68,12.5,47,0.0 +16493,62,49.3,23,0.0 +16493,74,10,46,0.0 +16493,70,15,2,0.0 +16493,15,15.5,18,0.0 +16493,47,9.5,11,0.0 +16493,24,4.5,46,0.0 +16493,72,34.8,28,0.0 +16493,75,7.75,46,0.0 +16493,44,19.45,6,0.0 +16493,7,30,13,0.0 +16493,2,19,37,0.0 +16493,58,13.25,1,0.0 +16493,65,21.05,8,0.0 +16493,67,14,8,0.0 +16493,63,43.9,9,0.0 +16493,29,123.79,5,0.0 +16493,49,20,4,0.0 +16493,56,38,10,0.0 +16493,51,53,2,0.0 +16493,26,31.23,29,0.0 +16493,55,24,48,0.0 +16493,61,28.5,27,0.0 +16493,36,19,36,0.0 +16493,54,7.45,30,0.0 +16493,21,10,48,0.0 +16493,10,31,29,0.0 +16493,3,10,3,0.0 +16493,1,18,48,0.0 +16493,4,22,7,0.0 +16493,40,18.4,12,0.0 +16493,17,39,11,0.0 +16494,34,14,29,0.0 +16494,59,55,29,0.0 +16494,9,97,1,0.0 +16494,8,40,9,0.0 +16494,31,12.5,12,0.0 +16494,57,19.5,44,0.0 +16494,18,62.5,32,0.0 +16494,66,17,47,0.0 +16494,62,49.3,42,0.0 +16494,13,6,46,0.0 +16494,35,18,27,0.0 +16494,7,30,6,0.0 +16494,45,9.5,40,0.0 +16494,11,21,41,0.0 +16494,51,53,18,0.0 +16494,77,13,1,0.0 +16494,22,21,22,0.0 +16494,53,32.8,20,0.0 +16494,47,9.5,47,0.0 +16494,76,18,46,0.0 +16494,4,22,23,0.0 +16495,74,10,10,0.0 +16495,10,31,13,0.0 +16495,11,21,19,0.0 +16495,76,18,9,0.0 +16495,49,20,34,0.0 +16495,21,10,7,0.0 +16495,60,34,30,0.0 +16495,20,81,21,0.0 +16495,27,43.9,27,0.0 +16495,64,33.25,14,0.0 +16495,77,13,15,0.0 +16495,72,34.8,3,0.0 +16495,50,16.25,41,0.0 +16495,5,21.35,48,0.0 +16495,34,14,6,0.0 +16495,8,40,25,0.0 +16495,36,19,16,0.0 +16495,62,49.3,13,0.0 +16495,48,12.75,35,0.0 +16495,45,9.5,16,0.0 +16495,41,9.65,38,0.0 +16495,66,17,39,0.0 +16495,65,21.05,3,0.0 +16495,35,18,13,0.0 +16495,13,6,45,0.0 +16495,3,10,49,0.0 +16495,2,19,30,0.0 +16495,42,14,11,0.0 +16495,24,4.5,16,0.0 +16495,37,26,48,0.0 +16495,63,43.9,20,0.0 +16495,70,15,13,0.0 +16495,40,18.4,18,0.0 +16495,47,9.5,24,0.0 +16495,33,2.5,6,0.0 +16495,71,21.5,48,0.0 +16495,25,14,7,0.0 +16495,12,38,32,0.0 +16495,19,9.2,16,0.0 +16495,14,23.25,42,0.0 +16495,54,7.45,13,0.0 +16495,16,17.45,24,0.0 +16495,17,39,31,0.0 +16495,46,12,42,0.0 +16495,51,53,30,0.0 +16495,59,55,36,0.0 +16495,55,24,35,0.0 +16495,28,45.6,46,0.0 +16495,52,7,4,0.0 +16495,53,32.8,26,0.0 +16495,15,15.5,35,0.0 +16495,44,19.45,10,0.0 +16495,18,62.5,20,0.0 +16495,43,46,34,0.0 +16495,9,97,37,0.0 +16495,29,123.79,11,0.0 +16495,69,36,5,0.0 +16495,67,14,22,0.0 +16495,1,18,49,0.0 +16495,32,32,31,0.0 +16495,56,38,47,0.0 +16495,31,12.5,11,0.0 +16495,58,13.25,18,0.0 +16495,23,9,35,0.0 +16495,7,30,37,0.0 +16495,68,12.5,2,0.0 +16495,6,25,48,0.0 +16495,39,18,40,0.0 +16495,38,263.5,43,0.0 +16495,75,7.75,28,0.0 +16496,4,22,32,0.0 +16496,17,39,6,0.0 +16496,6,25,13,0.0 +16496,15,15.5,3,0.0 +16496,46,12,27,0.0 +16496,23,9,36,0.0 +16496,47,9.5,13,0.0 +16497,15,15.5,38,0.0 +16497,8,40,43,0.0 +16497,35,18,43,0.0 +16497,14,23.25,37,0.0 +16497,48,12.75,21,0.0 +16497,45,9.5,18,0.0 +16497,64,33.25,11,0.0 +16497,28,45.6,50,0.0 +16497,29,123.79,20,0.0 +16497,38,263.5,42,0.0 +16497,75,7.75,35,0.0 +16497,55,24,3,0.0 +16497,27,43.9,16,0.0 +16497,73,15,31,0.0 +16497,61,28.5,17,0.0 +16497,33,2.5,30,0.0 +16497,51,53,15,0.0 +16497,22,21,14,0.0 +16497,72,34.8,32,0.0 +16497,6,25,49,0.0 +16497,54,7.45,22,0.0 +16497,13,6,45,0.0 +16497,11,21,17,0.0 +16497,49,20,31,0.0 +16497,47,9.5,14,0.0 +16497,69,36,15,0.0 +16497,50,16.25,17,0.0 +16497,2,19,25,0.0 +16497,62,49.3,38,0.0 +16497,63,43.9,17,0.0 +16497,19,9.2,16,0.0 +16497,25,14,20,0.0 +16497,59,55,48,0.0 +16497,60,34,31,0.0 +16497,42,14,12,0.0 +16497,67,14,35,0.0 +16497,34,14,19,0.0 +16497,23,9,15,0.0 +16497,68,12.5,2,0.0 +16497,76,18,47,0.0 +16497,5,21.35,29,0.0 +16497,71,21.5,1,0.0 +16497,44,19.45,9,0.0 +16497,65,21.05,34,0.0 +16497,52,7,20,0.0 +16497,1,18,43,0.0 +16497,32,32,27,0.0 +16497,37,26,4,0.0 +16497,53,32.8,29,0.0 +16497,57,19.5,5,0.0 +16497,36,19,35,0.0 +16497,46,12,31,0.0 +16497,40,18.4,46,0.0 +16497,77,13,2,0.0 +16497,20,81,11,0.0 +16497,66,17,31,0.0 +16497,21,10,44,0.0 +16497,24,4.5,5,0.0 +16497,4,22,32,0.0 +16497,9,97,47,0.0 +16497,12,38,6,0.0 +16497,10,31,43,0.0 +16497,7,30,16,0.0 +16497,41,9.65,11,0.0 +16498,9,97,20,0.0 +16498,25,14,29,0.0 +16498,10,31,21,0.0 +16498,41,9.65,18,0.0 +16498,58,13.25,45,0.0 +16498,3,10,31,0.0 +16498,20,81,34,0.0 +16498,40,18.4,13,0.0 +16498,49,20,45,0.0 +16498,26,31.23,39,0.0 +16498,59,55,21,0.0 +16498,4,22,32,0.0 +16498,24,4.5,7,0.0 +16498,56,38,23,0.0 +16498,48,12.75,36,0.0 +16498,55,24,7,0.0 +16498,35,18,32,0.0 +16498,47,9.5,30,0.0 +16498,63,43.9,37,0.0 +16498,29,123.79,2,0.0 +16498,33,2.5,15,0.0 +16499,54,7.45,41,0.0 +16499,65,21.05,38,0.0 +16499,63,43.9,29,0.0 +16499,28,45.6,47,0.0 +16499,46,12,42,0.0 +16499,55,24,23,0.0 +16499,16,17.45,20,0.0 +16499,34,14,44,0.0 +16499,72,34.8,23,0.0 +16499,19,9.2,26,0.0 +16499,37,26,11,0.0 +16499,42,14,21,0.0 +16499,61,28.5,29,0.0 +16499,5,21.35,38,0.0 +16499,4,22,11,0.0 +16499,18,62.5,20,0.0 +16499,36,19,9,0.0 +16499,56,38,4,0.0 +16499,43,46,48,0.0 +16499,50,16.25,44,0.0 +16499,23,9,46,0.0 +16499,6,25,32,0.0 +16499,1,18,20,0.0 +16499,31,12.5,8,0.0 +16499,52,7,48,0.0 +16499,41,9.65,28,0.0 +16499,69,36,41,0.0 +16499,48,12.75,15,0.0 +16499,64,33.25,4,0.0 +16499,49,20,6,0.0 +16499,53,32.8,43,0.0 +16499,60,34,16,0.0 +16499,40,18.4,41,0.0 +16499,71,21.5,15,0.0 +16499,33,2.5,20,0.0 +16499,27,43.9,46,0.0 +16499,77,13,39,0.0 +16499,7,30,5,0.0 +16499,74,10,30,0.0 +16499,59,55,24,0.0 +16499,3,10,48,0.0 +16499,38,263.5,48,0.0 +16499,20,81,36,0.0 +16499,29,123.79,38,0.0 +16499,68,12.5,11,0.0 +16499,26,31.23,41,0.0 +16499,9,97,46,0.0 +16499,2,19,33,0.0 +16499,12,38,21,0.0 +16499,66,17,49,0.0 +16499,15,15.5,7,0.0 +16499,25,14,43,0.0 +16499,13,6,20,0.0 +16499,73,15,32,0.0 +16499,39,18,13,0.0 +16499,58,13.25,7,0.0 +16499,51,53,22,0.0 +16499,75,7.75,22,0.0 +16500,57,19.5,13,0.0 +16500,20,81,19,0.0 +16500,48,12.75,46,0.0 +16500,62,49.3,25,0.0 +16500,65,21.05,26,0.0 +16500,14,23.25,41,0.0 +16500,33,2.5,33,0.0 +16500,28,45.6,21,0.0 +16500,24,4.5,24,0.0 +16500,27,43.9,6,0.0 +16500,73,15,41,0.0 +16500,77,13,23,0.0 +16500,31,12.5,29,0.0 +16500,44,19.45,28,0.0 +16500,6,25,39,0.0 +16500,76,18,14,0.0 +16500,67,14,36,0.0 +16500,22,21,26,0.0 +16500,45,9.5,41,0.0 +16500,32,32,22,0.0 +16500,7,30,20,0.0 +16500,21,10,1,0.0 +16500,72,34.8,19,0.0 +16500,46,12,38,0.0 +16500,23,9,35,0.0 +16500,74,10,32,0.0 +16500,51,53,1,0.0 +16500,37,26,28,0.0 +16500,52,7,43,0.0 +16500,1,18,20,0.0 +16500,9,97,30,0.0 +16500,36,19,49,0.0 +16501,4,22,32,0.0 +16501,35,18,31,0.0 +16501,45,9.5,9,0.0 +16501,15,15.5,30,0.0 +16501,19,9.2,26,0.0 +16501,39,18,3,0.0 +16501,47,9.5,42,0.0 +16501,69,36,10,0.0 +16501,46,12,25,0.0 +16501,11,21,19,0.0 +16501,72,34.8,35,0.0 +16501,26,31.23,30,0.0 +16501,62,49.3,20,0.0 +16501,21,10,13,0.0 +16501,23,9,37,0.0 +16501,52,7,18,0.0 +16501,14,23.25,38,0.0 +16501,74,10,18,0.0 +16501,5,21.35,14,0.0 +16501,42,14,1,0.0 +16501,10,31,45,0.0 +16501,63,43.9,2,0.0 +16501,18,62.5,33,0.0 +16501,20,81,43,0.0 +16501,49,20,14,0.0 +16501,13,6,39,0.0 +16501,53,32.8,50,0.0 +16501,54,7.45,1,0.0 +16501,27,43.9,31,0.0 +16501,16,17.45,50,0.0 +16501,31,12.5,45,0.0 +16501,41,9.65,27,0.0 +16501,59,55,43,0.0 +16501,3,10,25,0.0 +16501,57,19.5,9,0.0 +16501,75,7.75,22,0.0 +16501,2,19,21,0.0 +16501,77,13,42,0.0 +16501,66,17,37,0.0 +16501,9,97,4,0.0 +16501,24,4.5,44,0.0 +16501,68,12.5,1,0.0 +16501,22,21,24,0.0 +16501,48,12.75,24,0.0 +16501,29,123.79,40,0.0 +16501,32,32,4,0.0 +16501,50,16.25,18,0.0 +16501,67,14,4,0.0 +16501,60,34,25,0.0 +16501,33,2.5,5,0.0 +16501,56,38,12,0.0 +16501,44,19.45,24,0.0 +16501,6,25,48,0.0 +16501,8,40,49,0.0 +16501,43,46,34,0.0 +16501,17,39,34,0.0 +16501,1,18,44,0.0 +16501,7,30,41,0.0 +16501,64,33.25,25,0.0 +16501,30,25.89,41,0.0 +16501,34,14,30,0.0 +16501,12,38,49,0.0 +16501,40,18.4,16,0.0 +16501,51,53,40,0.0 +16502,42,14,1,0.0 +16502,64,33.25,27,0.0 +16502,61,28.5,49,0.0 +16502,52,7,1,0.0 +16502,23,9,10,0.0 +16502,30,25.89,31,0.0 +16502,13,6,11,0.0 +16503,26,31.23,23,0.0 +16503,42,14,19,0.0 +16503,44,19.45,3,0.0 +16503,76,18,48,0.0 +16503,39,18,21,0.0 +16503,22,21,11,0.0 +16503,54,7.45,49,0.0 +16503,75,7.75,37,0.0 +16503,43,46,26,0.0 +16503,34,14,45,0.0 +16503,49,20,44,0.0 +16503,30,25.89,8,0.0 +16503,25,14,16,0.0 +16503,77,13,24,0.0 +16503,32,32,8,0.0 +16503,15,15.5,17,0.0 +16503,62,49.3,48,0.0 +16503,59,55,7,0.0 +16503,64,33.25,5,0.0 +16503,60,34,4,0.0 +16503,73,15,12,0.0 +16503,36,19,43,0.0 +16503,5,21.35,16,0.0 +16503,13,6,8,0.0 +16503,23,9,20,0.0 +16503,56,38,24,0.0 +16503,40,18.4,16,0.0 +16503,72,34.8,47,0.0 +16503,50,16.25,10,0.0 +16503,68,12.5,3,0.0 +16503,58,13.25,44,0.0 +16503,38,263.5,41,0.0 +16503,35,18,29,0.0 +16503,19,9.2,34,0.0 +16503,33,2.5,3,0.0 +16503,24,4.5,2,0.0 +16503,3,10,23,0.0 +16503,61,28.5,47,0.0 +16503,14,23.25,29,0.0 +16504,71,21.5,10,0.0 +16504,50,16.25,4,0.0 +16504,42,14,17,0.0 +16504,4,22,31,0.0 +16504,5,21.35,44,0.0 +16504,41,9.65,10,0.0 +16504,39,18,25,0.0 +16504,27,43.9,35,0.0 +16504,60,34,45,0.0 +16504,35,18,44,0.0 +16504,6,25,34,0.0 +16504,13,6,37,0.0 +16504,75,7.75,27,0.0 +16504,25,14,15,0.0 +16504,54,7.45,3,0.0 +16504,7,30,32,0.0 +16504,66,17,42,0.0 +16504,59,55,6,0.0 +16504,46,12,28,0.0 +16504,29,123.79,37,0.0 +16504,63,43.9,2,0.0 +16504,2,19,8,0.0 +16504,70,15,15,0.0 +16504,33,2.5,33,0.0 +16504,65,21.05,40,0.0 +16504,69,36,20,0.0 +16504,20,81,41,0.0 +16504,19,9.2,37,0.0 +16504,67,14,41,0.0 +16504,15,15.5,37,0.0 +16504,68,12.5,32,0.0 +16504,31,12.5,10,0.0 +16504,53,32.8,4,0.0 +16505,5,21.35,3,0.0 +16505,74,10,23,0.0 +16505,23,9,11,0.0 +16505,51,53,6,0.0 +16505,4,22,12,0.0 +16505,46,12,25,0.0 +16505,10,31,47,0.0 +16505,48,12.75,32,0.0 +16505,57,19.5,50,0.0 +16505,44,19.45,34,0.0 +16505,62,49.3,37,0.0 +16505,77,13,11,0.0 +16505,61,28.5,22,0.0 +16505,66,17,19,0.0 +16505,71,21.5,30,0.0 +16505,70,15,37,0.0 +16505,13,6,43,0.0 +16505,19,9.2,50,0.0 +16505,32,32,39,0.0 +16505,64,33.25,48,0.0 +16505,33,2.5,48,0.0 +16505,21,10,45,0.0 +16505,2,19,7,0.0 +16505,22,21,48,0.0 +16505,39,18,6,0.0 +16505,37,26,35,0.0 +16505,68,12.5,32,0.0 +16505,63,43.9,15,0.0 +16505,28,45.6,37,0.0 +16505,42,14,32,0.0 +16505,3,10,25,0.0 +16505,25,14,7,0.0 +16505,54,7.45,15,0.0 +16505,59,55,4,0.0 +16505,11,21,16,0.0 +16505,36,19,14,0.0 +16505,6,25,4,0.0 +16505,75,7.75,9,0.0 +16505,16,17.45,19,0.0 +16505,47,9.5,30,0.0 +16505,27,43.9,50,0.0 +16505,55,24,41,0.0 +16505,38,263.5,33,0.0 +16505,52,7,42,0.0 +16505,26,31.23,24,0.0 +16505,24,4.5,22,0.0 +16505,40,18.4,12,0.0 +16505,60,34,9,0.0 +16505,41,9.65,46,0.0 +16505,69,36,29,0.0 +16505,43,46,12,0.0 +16505,7,30,33,0.0 +16505,65,21.05,9,0.0 +16505,12,38,4,0.0 +16505,53,32.8,14,0.0 +16505,34,14,9,0.0 +16505,31,12.5,2,0.0 +16505,20,81,46,0.0 +16505,9,97,50,0.0 +16505,45,9.5,15,0.0 +16505,15,15.5,13,0.0 +16505,35,18,13,0.0 +16505,67,14,33,0.0 +16505,50,16.25,50,0.0 +16505,29,123.79,19,0.0 +16505,17,39,21,0.0 +16505,30,25.89,19,0.0 +16505,1,18,47,0.0 +16505,49,20,20,0.0 +16505,76,18,37,0.0 +16505,58,13.25,36,0.0 +16505,8,40,1,0.0 +16505,56,38,3,0.0 +16505,14,23.25,48,0.0 +16505,18,62.5,3,0.0 +16505,72,34.8,9,0.0 +16506,52,7,8,0.0 +16506,50,16.25,29,0.0 +16506,14,23.25,9,0.0 +16506,53,32.8,29,0.0 +16506,31,12.5,15,0.0 +16506,10,31,4,0.0 +16506,44,19.45,19,0.0 +16506,64,33.25,22,0.0 +16506,66,17,36,0.0 +16506,73,15,12,0.0 +16506,61,28.5,1,0.0 +16506,62,49.3,4,0.0 +16506,24,4.5,19,0.0 +16506,16,17.45,40,0.0 +16506,65,21.05,50,0.0 +16506,43,46,39,0.0 +16506,54,7.45,39,0.0 +16506,35,18,28,0.0 +16506,56,38,27,0.0 +16506,32,32,31,0.0 +16506,63,43.9,37,0.0 +16506,68,12.5,41,0.0 +16506,4,22,21,0.0 +16506,5,21.35,7,0.0 +16506,39,18,43,0.0 +16506,13,6,8,0.0 +16506,47,9.5,16,0.0 +16506,46,12,39,0.0 +16506,2,19,27,0.0 +16506,45,9.5,49,0.0 +16506,27,43.9,21,0.0 +16506,70,15,30,0.0 +16506,36,19,21,0.0 +16506,8,40,42,0.0 +16506,59,55,8,0.0 +16506,6,25,20,0.0 +16506,49,20,27,0.0 +16507,21,10,23,0.0 +16507,27,43.9,15,0.0 +16507,47,9.5,12,0.0 +16507,45,9.5,45,0.0 +16507,54,7.45,6,0.0 +16507,60,34,40,0.0 +16507,69,36,5,0.0 +16507,66,17,21,0.0 +16507,13,6,37,0.0 +16507,59,55,46,0.0 +16507,15,15.5,11,0.0 +16507,61,28.5,37,0.0 +16507,51,53,41,0.0 +16507,72,34.8,23,0.0 +16507,40,18.4,19,0.0 +16507,11,21,21,0.0 +16507,19,9.2,46,0.0 +16507,8,40,19,0.0 +16507,2,19,34,0.0 +16507,14,23.25,38,0.0 +16507,62,49.3,18,0.0 +16507,12,38,4,0.0 +16507,52,7,19,0.0 +16507,64,33.25,35,0.0 +16507,35,18,22,0.0 +16507,9,97,36,0.0 +16507,75,7.75,49,0.0 +16507,5,21.35,12,0.0 +16507,37,26,49,0.0 +16507,16,17.45,37,0.0 +16507,18,62.5,40,0.0 +16507,39,18,45,0.0 +16507,34,14,27,0.0 +16507,76,18,41,0.0 +16507,24,4.5,41,0.0 +16507,33,2.5,48,0.0 +16507,58,13.25,25,0.0 +16507,23,9,14,0.0 +16507,30,25.89,23,0.0 +16507,36,19,6,0.0 +16507,49,20,48,0.0 +16507,42,14,42,0.0 +16507,46,12,17,0.0 +16508,32,32,16,0.0 +16508,6,25,12,0.0 +16508,56,38,7,0.0 +16508,7,30,9,0.0 +16508,71,21.5,26,0.0 +16508,42,14,15,0.0 +16508,53,32.8,28,0.0 +16508,29,123.79,3,0.0 +16508,22,21,21,0.0 +16508,54,7.45,11,0.0 +16508,63,43.9,11,0.0 +16508,75,7.75,44,0.0 +16508,1,18,3,0.0 +16508,60,34,10,0.0 +16508,58,13.25,11,0.0 +16508,72,34.8,20,0.0 +16508,67,14,39,0.0 +16508,37,26,22,0.0 +16508,12,38,42,0.0 +16508,20,81,3,0.0 +16508,18,62.5,44,0.0 +16508,36,19,7,0.0 +16508,28,45.6,35,0.0 +16508,14,23.25,9,0.0 +16508,8,40,40,0.0 +16508,3,10,43,0.0 +16508,41,9.65,5,0.0 +16508,59,55,14,0.0 +16508,23,9,21,0.0 +16508,5,21.35,13,0.0 +16508,76,18,34,0.0 +16508,62,49.3,43,0.0 +16508,46,12,31,0.0 +16508,43,46,6,0.0 +16508,15,15.5,33,0.0 +16508,51,53,34,0.0 +16508,55,24,30,0.0 +16508,30,25.89,44,0.0 +16508,50,16.25,23,0.0 +16508,33,2.5,50,0.0 +16508,52,7,26,0.0 +16508,48,12.75,24,0.0 +16508,38,263.5,27,0.0 +16508,34,14,3,0.0 +16508,31,12.5,33,0.0 +16508,35,18,40,0.0 +16508,2,19,23,0.0 +16508,11,21,4,0.0 +16508,73,15,10,0.0 +16508,13,6,24,0.0 +16509,61,28.5,45,0.0 +16509,12,38,25,0.0 +16509,8,40,33,0.0 +16509,58,13.25,2,0.0 +16509,27,43.9,22,0.0 +16509,55,24,13,0.0 +16509,9,97,8,0.0 +16509,17,39,43,0.0 +16509,18,62.5,39,0.0 +16509,1,18,25,0.0 +16509,69,36,34,0.0 +16509,10,31,50,0.0 +16509,2,19,38,0.0 +16509,57,19.5,25,0.0 +16510,4,22,32,0.0 +16510,71,21.5,37,0.0 +16510,41,9.65,35,0.0 +16510,50,16.25,19,0.0 +16510,63,43.9,42,0.0 +16510,7,30,8,0.0 +16510,51,53,11,0.0 +16510,46,12,8,0.0 +16510,52,7,39,0.0 +16510,32,32,3,0.0 +16510,30,25.89,10,0.0 +16510,65,21.05,28,0.0 +16510,6,25,30,0.0 +16510,76,18,7,0.0 +16510,47,9.5,38,0.0 +16510,34,14,46,0.0 +16510,19,9.2,2,0.0 +16510,25,14,42,0.0 +16510,35,18,2,0.0 +16510,58,13.25,10,0.0 +16510,61,28.5,30,0.0 +16510,49,20,37,0.0 +16510,38,263.5,48,0.0 +16510,74,10,8,0.0 +16510,42,14,16,0.0 +16510,24,4.5,9,0.0 +16510,73,15,33,0.0 +16510,20,81,25,0.0 +16510,21,10,10,0.0 +16510,22,21,15,0.0 +16510,77,13,25,0.0 +16510,31,12.5,36,0.0 +16510,45,9.5,21,0.0 +16510,62,49.3,10,0.0 +16510,36,19,15,0.0 +16510,53,32.8,49,0.0 +16510,70,15,39,0.0 +16510,16,17.45,21,0.0 +16510,23,9,13,0.0 +16510,26,31.23,43,0.0 +16510,12,38,13,0.0 +16510,13,6,7,0.0 +16510,29,123.79,25,0.0 +16510,8,40,29,0.0 +16510,64,33.25,17,0.0 +16510,33,2.5,9,0.0 +16510,1,18,14,0.0 +16510,68,12.5,46,0.0 +16510,44,19.45,1,0.0 +16510,39,18,44,0.0 +16510,59,55,9,0.0 +16510,75,7.75,10,0.0 +16510,9,97,27,0.0 +16510,54,7.45,35,0.0 +16510,72,34.8,16,0.0 +16510,66,17,26,0.0 +16510,40,18.4,8,0.0 +16510,27,43.9,24,0.0 +16510,15,15.5,9,0.0 +16511,45,9.5,25,0.0 +16511,38,263.5,32,0.0 +16511,37,26,47,0.0 +16511,16,17.45,39,0.0 +16511,61,28.5,2,0.0 +16511,46,12,47,0.0 +16511,39,18,32,0.0 +16511,74,10,24,0.0 +16511,64,33.25,9,0.0 +16511,67,14,28,0.0 +16511,24,4.5,41,0.0 +16511,56,38,38,0.0 +16511,36,19,9,0.0 +16511,47,9.5,41,0.0 +16511,50,16.25,19,0.0 +16511,29,123.79,10,0.0 +16511,27,43.9,37,0.0 +16511,5,21.35,1,0.0 +16511,68,12.5,10,0.0 +16511,49,20,41,0.0 +16511,53,32.8,10,0.0 +16511,21,10,40,0.0 +16511,35,18,9,0.0 +16511,65,21.05,30,0.0 +16511,3,10,43,0.0 +16511,34,14,1,0.0 +16511,41,9.65,8,0.0 +16511,66,17,31,0.0 +16511,25,14,44,0.0 +16511,23,9,36,0.0 +16511,4,22,40,0.0 +16511,32,32,4,0.0 +16511,54,7.45,20,0.0 +16511,70,15,44,0.0 +16511,11,21,49,0.0 +16511,19,9.2,46,0.0 +16511,76,18,48,0.0 +16511,69,36,42,0.0 +16511,20,81,37,0.0 +16511,59,55,6,0.0 +16511,48,12.75,6,0.0 +16511,31,12.5,38,0.0 +16511,55,24,4,0.0 +16511,57,19.5,26,0.0 +16511,51,53,36,0.0 +16511,28,45.6,39,0.0 +16511,72,34.8,39,0.0 +16511,18,62.5,8,0.0 +16511,14,23.25,9,0.0 +16511,52,7,38,0.0 +16511,2,19,44,0.0 +16511,42,14,36,0.0 +16511,63,43.9,40,0.0 +16512,23,9,28,0.0 +16512,46,12,2,0.0 +16512,47,9.5,15,0.0 +16512,44,19.45,48,0.0 +16512,38,263.5,12,0.0 +16512,2,19,23,0.0 +16512,22,21,7,0.0 +16512,24,4.5,16,0.0 +16512,29,123.79,48,0.0 +16512,62,49.3,19,0.0 +16512,5,21.35,48,0.0 +16513,7,30,28,0.0 +16513,72,34.8,23,0.0 +16513,53,32.8,33,0.0 +16513,55,24,5,0.0 +16513,51,53,24,0.0 +16513,21,10,31,0.0 +16513,2,19,20,0.0 +16513,50,16.25,42,0.0 +16513,11,21,38,0.0 +16513,8,40,17,0.0 +16513,31,12.5,32,0.0 +16513,76,18,45,0.0 +16513,46,12,9,0.0 +16513,15,15.5,49,0.0 +16513,74,10,36,0.0 +16513,73,15,7,0.0 +16513,43,46,27,0.0 +16513,25,14,23,0.0 +16513,22,21,36,0.0 +16513,61,28.5,6,0.0 +16513,18,62.5,41,0.0 +16513,9,97,42,0.0 +16513,63,43.9,21,0.0 +16513,56,38,4,0.0 +16513,33,2.5,47,0.0 +16513,67,14,20,0.0 +16513,14,23.25,7,0.0 +16513,59,55,46,0.0 +16513,35,18,6,0.0 +16513,62,49.3,38,0.0 +16513,75,7.75,17,0.0 +16513,36,19,22,0.0 +16513,64,33.25,17,0.0 +16513,20,81,9,0.0 +16513,28,45.6,43,0.0 +16513,70,15,10,0.0 +16513,4,22,10,0.0 +16513,5,21.35,14,0.0 +16513,16,17.45,15,0.0 +16513,30,25.89,7,0.0 +16513,12,38,21,0.0 +16513,6,25,18,0.0 +16513,68,12.5,26,0.0 +16513,58,13.25,46,0.0 +16513,65,21.05,3,0.0 +16513,27,43.9,15,0.0 +16513,45,9.5,44,0.0 +16513,42,14,4,0.0 +16513,48,12.75,21,0.0 +16513,39,18,36,0.0 +16513,34,14,33,0.0 +16513,26,31.23,35,0.0 +16513,47,9.5,24,0.0 +16513,3,10,26,0.0 +16513,44,19.45,40,0.0 +16513,54,7.45,33,0.0 +16513,40,18.4,35,0.0 +16513,17,39,8,0.0 +16513,38,263.5,34,0.0 +16513,49,20,39,0.0 +16513,37,26,24,0.0 +16513,66,17,34,0.0 +16513,19,9.2,35,0.0 +16513,1,18,16,0.0 +16513,29,123.79,24,0.0 +16513,23,9,36,0.0 +16513,71,21.5,18,0.0 +16513,77,13,33,0.0 +16513,32,32,21,0.0 +16514,22,21,26,0.0 +16514,6,25,12,0.0 +16514,46,12,13,0.0 +16514,53,32.8,19,0.0 +16514,19,9.2,32,0.0 +16514,33,2.5,11,0.0 +16514,70,15,26,0.0 +16514,11,21,14,0.0 +16514,66,17,3,0.0 +16514,76,18,19,0.0 +16514,63,43.9,37,0.0 +16514,36,19,20,0.0 +16514,49,20,2,0.0 +16514,56,38,27,0.0 +16514,25,14,29,0.0 +16514,58,13.25,35,0.0 +16514,26,31.23,30,0.0 +16515,56,38,24,0.0 +16515,8,40,25,0.0 +16515,61,28.5,10,0.0 +16515,75,7.75,9,0.0 +16515,5,21.35,45,0.0 +16515,36,19,31,0.0 +16515,23,9,11,0.0 +16515,11,21,1,0.0 +16515,74,10,50,0.0 +16515,29,123.79,27,0.0 +16515,31,12.5,47,0.0 +16515,71,21.5,8,0.0 +16515,9,97,42,0.0 +16515,14,23.25,31,0.0 +16515,58,13.25,39,0.0 +16515,19,9.2,48,0.0 +16515,42,14,34,0.0 +16515,77,13,24,0.0 +16515,65,21.05,22,0.0 +16515,67,14,38,0.0 +16515,73,15,25,0.0 +16515,72,34.8,16,0.0 +16515,7,30,23,0.0 +16515,12,38,5,0.0 +16515,63,43.9,17,0.0 +16515,60,34,14,0.0 +16515,50,16.25,8,0.0 +16515,41,9.65,30,0.0 +16515,3,10,26,0.0 +16515,53,32.8,6,0.0 +16515,66,17,37,0.0 +16515,6,25,23,0.0 +16516,5,21.35,1,0.0 +16516,15,15.5,10,0.0 +16516,65,21.05,18,0.0 +16516,28,45.6,50,0.0 +16516,76,18,49,0.0 +16516,68,12.5,23,0.0 +16516,38,263.5,13,0.0 +16516,9,97,40,0.0 +16516,29,123.79,29,0.0 +16516,58,13.25,27,0.0 +16516,74,10,42,0.0 +16516,3,10,35,0.0 +16516,51,53,3,0.0 +16516,54,7.45,26,0.0 +16516,64,33.25,3,0.0 +16516,16,17.45,17,0.0 +16516,50,16.25,21,0.0 +16516,46,12,16,0.0 +16516,71,21.5,31,0.0 +16516,62,49.3,13,0.0 +16516,23,9,38,0.0 +16516,37,26,40,0.0 +16516,75,7.75,43,0.0 +16516,8,40,25,0.0 +16516,17,39,47,0.0 +16516,20,81,3,0.0 +16516,26,31.23,50,0.0 +16516,49,20,21,0.0 +16516,52,7,42,0.0 +16516,27,43.9,50,0.0 +16516,10,31,17,0.0 +16516,13,6,4,0.0 +16516,77,13,48,0.0 +16516,44,19.45,9,0.0 +16516,59,55,48,0.0 +16516,39,18,13,0.0 +16516,73,15,25,0.0 +16516,11,21,50,0.0 +16516,60,34,31,0.0 +16516,31,12.5,50,0.0 +16516,24,4.5,16,0.0 +16516,33,2.5,23,0.0 +16516,6,25,43,0.0 +16516,18,62.5,17,0.0 +16516,21,10,22,0.0 +16516,36,19,33,0.0 +16516,47,9.5,46,0.0 +16516,56,38,22,0.0 +16516,19,9.2,37,0.0 +16516,35,18,42,0.0 +16516,48,12.75,40,0.0 +16516,4,22,38,0.0 +16516,67,14,45,0.0 +16516,53,32.8,35,0.0 +16516,72,34.8,18,0.0 +16516,12,38,45,0.0 +16516,30,25.89,25,0.0 +16517,19,9.2,49,0.0 +16517,40,18.4,2,0.0 +16517,5,21.35,14,0.0 +16517,47,9.5,28,0.0 +16517,24,4.5,39,0.0 +16517,76,18,27,0.0 +16517,74,10,41,0.0 +16517,23,9,10,0.0 +16517,36,19,49,0.0 +16517,11,21,5,0.0 +16517,34,14,11,0.0 +16517,32,32,31,0.0 +16517,18,62.5,44,0.0 +16517,46,12,11,0.0 +16517,52,7,47,0.0 +16517,42,14,2,0.0 +16517,51,53,38,0.0 +16517,3,10,25,0.0 +16517,67,14,35,0.0 +16517,50,16.25,46,0.0 +16517,63,43.9,21,0.0 +16517,73,15,24,0.0 +16517,7,30,8,0.0 +16517,26,31.23,11,0.0 +16517,59,55,2,0.0 +16517,53,32.8,45,0.0 +16517,60,34,8,0.0 +16517,39,18,40,0.0 +16517,30,25.89,33,0.0 +16517,14,23.25,44,0.0 +16517,27,43.9,47,0.0 +16517,28,45.6,36,0.0 +16517,56,38,11,0.0 +16517,58,13.25,10,0.0 +16517,41,9.65,31,0.0 +16518,3,10,25,0.0 +16518,59,55,27,0.0 +16518,50,16.25,46,0.0 +16518,55,24,31,0.0 +16518,7,30,6,0.0 +16518,51,53,40,0.0 +16518,31,12.5,30,0.0 +16518,8,40,37,0.0 +16518,13,6,20,0.0 +16518,23,9,11,0.0 +16518,12,38,36,0.0 +16518,49,20,9,0.0 +16518,76,18,40,0.0 +16518,46,12,32,0.0 +16518,34,14,6,0.0 +16518,11,21,26,0.0 +16518,66,17,42,0.0 +16518,4,22,15,0.0 +16518,44,19.45,29,0.0 +16518,41,9.65,41,0.0 +16518,48,12.75,16,0.0 +16518,52,7,40,0.0 +16518,1,18,3,0.0 +16518,67,14,13,0.0 +16518,19,9.2,33,0.0 +16518,65,21.05,21,0.0 +16518,68,12.5,24,0.0 +16518,15,15.5,31,0.0 +16518,14,23.25,12,0.0 +16518,35,18,42,0.0 +16518,60,34,47,0.0 +16518,6,25,11,0.0 +16518,28,45.6,12,0.0 +16518,74,10,29,0.0 +16518,10,31,50,0.0 +16518,33,2.5,44,0.0 +16518,57,19.5,23,0.0 +16518,20,81,35,0.0 +16518,29,123.79,39,0.0 +16518,69,36,35,0.0 +16518,21,10,34,0.0 +16518,62,49.3,10,0.0 +16518,36,19,46,0.0 +16518,32,32,48,0.0 +16518,73,15,20,0.0 +16518,18,62.5,4,0.0 +16518,47,9.5,34,0.0 +16518,42,14,12,0.0 +16518,40,18.4,47,0.0 +16518,61,28.5,46,0.0 +16518,38,263.5,35,0.0 +16518,77,13,26,0.0 +16518,25,14,41,0.0 +16518,30,25.89,50,0.0 +16518,53,32.8,48,0.0 +16518,75,7.75,24,0.0 +16518,27,43.9,9,0.0 +16518,39,18,1,0.0 +16518,64,33.25,43,0.0 +16518,24,4.5,40,0.0 +16518,26,31.23,46,0.0 +16518,71,21.5,37,0.0 +16518,45,9.5,36,0.0 +16519,76,18,48,0.0 +16519,26,31.23,24,0.0 +16519,44,19.45,24,0.0 +16519,40,18.4,23,0.0 +16519,39,18,19,0.0 +16519,71,21.5,4,0.0 +16519,50,16.25,18,0.0 +16519,18,62.5,16,0.0 +16519,3,10,6,0.0 +16519,33,2.5,11,0.0 +16519,61,28.5,40,0.0 +16519,67,14,19,0.0 +16519,58,13.25,46,0.0 +16519,69,36,36,0.0 +16519,23,9,12,0.0 +16519,34,14,29,0.0 +16519,5,21.35,9,0.0 +16519,25,14,22,0.0 +16519,52,7,9,0.0 +16519,12,38,46,0.0 +16519,30,25.89,23,0.0 +16519,6,25,22,0.0 +16519,11,21,19,0.0 +16519,60,34,33,0.0 +16519,55,24,16,0.0 +16519,45,9.5,34,0.0 +16519,62,49.3,34,0.0 +16519,37,26,5,0.0 +16519,63,43.9,2,0.0 +16519,68,12.5,48,0.0 +16519,53,32.8,28,0.0 +16519,15,15.5,14,0.0 +16519,66,17,8,0.0 +16519,28,45.6,11,0.0 +16519,47,9.5,50,0.0 +16519,46,12,35,0.0 +16519,32,32,5,0.0 +16519,72,34.8,49,0.0 +16519,75,7.75,36,0.0 +16519,74,10,40,0.0 +16519,42,14,28,0.0 +16519,7,30,8,0.0 +16519,36,19,10,0.0 +16519,38,263.5,16,0.0 +16519,4,22,6,0.0 +16519,20,81,10,0.0 +16519,65,21.05,46,0.0 +16519,73,15,50,0.0 +16519,22,21,31,0.0 +16519,21,10,10,0.0 +16519,14,23.25,19,0.0 +16519,29,123.79,49,0.0 +16519,77,13,19,0.0 +16519,51,53,12,0.0 +16519,49,20,35,0.0 +16519,70,15,2,0.0 +16519,1,18,42,0.0 +16519,64,33.25,35,0.0 +16519,24,4.5,36,0.0 +16519,27,43.9,3,0.0 +16519,35,18,14,0.0 +16519,9,97,47,0.0 +16520,56,38,46,0.0 +16520,20,81,37,0.0 +16520,59,55,31,0.0 +16520,23,9,26,0.0 +16520,43,46,1,0.0 +16520,17,39,3,0.0 +16520,57,19.5,40,0.0 +16520,24,4.5,39,0.0 +16520,10,31,17,0.0 +16520,48,12.75,39,0.0 +16520,27,43.9,30,0.0 +16520,65,21.05,36,0.0 +16520,47,9.5,47,0.0 +16520,25,14,2,0.0 +16520,32,32,1,0.0 +16520,40,18.4,31,0.0 +16520,36,19,49,0.0 +16520,19,9.2,23,0.0 +16520,9,97,25,0.0 +16520,34,14,4,0.0 +16520,3,10,20,0.0 +16520,71,21.5,13,0.0 +16520,13,6,24,0.0 +16520,44,19.45,47,0.0 +16520,12,38,2,0.0 +16520,52,7,23,0.0 +16520,33,2.5,26,0.0 +16520,67,14,18,0.0 +16520,11,21,7,0.0 +16520,77,13,24,0.0 +16520,35,18,29,0.0 +16520,72,34.8,41,0.0 +16520,7,30,26,0.0 +16520,58,13.25,48,0.0 +16520,46,12,32,0.0 +16520,18,62.5,11,0.0 +16520,73,15,49,0.0 +16521,21,10,21,0.0 +16521,49,20,39,0.0 +16521,65,21.05,6,0.0 +16521,74,10,19,0.0 +16521,2,19,40,0.0 +16521,45,9.5,7,0.0 +16521,69,36,11,0.0 +16521,56,38,15,0.0 +16521,22,21,8,0.0 +16521,55,24,45,0.0 +16521,43,46,12,0.0 +16521,8,40,37,0.0 +16521,3,10,48,0.0 +16521,47,9.5,6,0.0 +16521,40,18.4,26,0.0 +16521,15,15.5,46,0.0 +16521,28,45.6,37,0.0 +16521,42,14,35,0.0 +16521,27,43.9,5,0.0 +16521,64,33.25,41,0.0 +16521,37,26,1,0.0 +16521,54,7.45,25,0.0 +16521,20,81,11,0.0 +16521,24,4.5,35,0.0 +16521,1,18,46,0.0 +16521,35,18,38,0.0 +16521,30,25.89,39,0.0 +16521,75,7.75,29,0.0 +16521,14,23.25,18,0.0 +16521,31,12.5,15,0.0 +16521,77,13,4,0.0 +16521,19,9.2,13,0.0 +16521,48,12.75,40,0.0 +16521,76,18,38,0.0 +16521,50,16.25,28,0.0 +16521,68,12.5,24,0.0 +16521,58,13.25,17,0.0 +16521,7,30,50,0.0 +16521,11,21,27,0.0 +16521,26,31.23,49,0.0 +16521,34,14,48,0.0 +16521,41,9.65,8,0.0 +16521,6,25,13,0.0 +16521,10,31,11,0.0 +16521,61,28.5,31,0.0 +16521,53,32.8,1,0.0 +16521,67,14,4,0.0 +16521,18,62.5,31,0.0 +16521,33,2.5,24,0.0 +16521,59,55,4,0.0 +16521,44,19.45,22,0.0 +16521,38,263.5,34,0.0 +16521,12,38,35,0.0 +16521,70,15,3,0.0 +16521,71,21.5,15,0.0 +16521,73,15,12,0.0 +16521,32,32,13,0.0 +16521,36,19,9,0.0 +16521,46,12,23,0.0 +16521,25,14,44,0.0 +16521,9,97,20,0.0 +16521,51,53,33,0.0 +16521,60,34,45,0.0 +16521,13,6,37,0.0 +16521,16,17.45,28,0.0 +16521,39,18,45,0.0 +16521,17,39,35,0.0 +16521,23,9,20,0.0 +16521,72,34.8,5,0.0 +16521,5,21.35,11,0.0 +16521,29,123.79,50,0.0 +16521,63,43.9,38,0.0 +16521,52,7,27,0.0 +16521,62,49.3,47,0.0 +16521,57,19.5,6,0.0 +16522,14,23.25,8,0.0 +16522,66,17,21,0.0 +16522,51,53,38,0.0 +16523,4,22,23,0.0 +16523,57,19.5,48,0.0 +16523,28,45.6,39,0.0 +16523,74,10,17,0.0 +16523,16,17.45,42,0.0 +16523,77,13,4,0.0 +16523,42,14,41,0.0 +16523,21,10,20,0.0 +16523,10,31,34,0.0 +16523,40,18.4,37,0.0 +16523,39,18,15,0.0 +16523,32,32,10,0.0 +16523,35,18,38,0.0 +16523,20,81,8,0.0 +16523,2,19,26,0.0 +16523,9,97,22,0.0 +16523,26,31.23,1,0.0 +16523,51,53,16,0.0 +16523,76,18,10,0.0 +16523,50,16.25,8,0.0 +16523,54,7.45,30,0.0 +16523,72,34.8,35,0.0 +16523,22,21,17,0.0 +16523,70,15,26,0.0 +16523,60,34,38,0.0 +16523,25,14,40,0.0 +16523,48,12.75,47,0.0 +16523,14,23.25,43,0.0 +16523,73,15,37,0.0 +16523,12,38,20,0.0 +16523,63,43.9,30,0.0 +16523,13,6,23,0.0 +16523,65,21.05,40,0.0 +16523,75,7.75,29,0.0 +16523,61,28.5,40,0.0 +16523,43,46,6,0.0 +16523,3,10,20,0.0 +16523,53,32.8,17,0.0 +16523,67,14,34,0.0 +16523,55,24,27,0.0 +16523,24,4.5,19,0.0 +16523,64,33.25,10,0.0 +16523,69,36,31,0.0 +16523,62,49.3,29,0.0 +16523,56,38,6,0.0 +16523,38,263.5,3,0.0 +16523,58,13.25,38,0.0 +16523,46,12,50,0.0 +16523,8,40,47,0.0 +16523,5,21.35,32,0.0 +16523,37,26,28,0.0 +16523,36,19,31,0.0 +16524,10,31,22,0.0 +16524,29,123.79,41,0.0 +16524,6,25,38,0.0 +16524,14,23.25,28,0.0 +16524,70,15,4,0.0 +16524,58,13.25,7,0.0 +16524,56,38,23,0.0 +16524,59,55,15,0.0 +16524,36,19,28,0.0 +16524,62,49.3,39,0.0 +16524,27,43.9,11,0.0 +16524,39,18,2,0.0 +16524,51,53,46,0.0 +16524,68,12.5,22,0.0 +16524,77,13,13,0.0 +16524,57,19.5,15,0.0 +16524,21,10,46,0.0 +16524,20,81,35,0.0 +16524,9,97,36,0.0 +16524,66,17,40,0.0 +16524,45,9.5,49,0.0 +16524,49,20,23,0.0 +16524,26,31.23,5,0.0 +16524,32,32,41,0.0 +16524,23,9,4,0.0 +16524,48,12.75,25,0.0 +16524,4,22,19,0.0 +16524,50,16.25,37,0.0 +16524,31,12.5,46,0.0 +16524,65,21.05,8,0.0 +16524,55,24,1,0.0 +16524,7,30,46,0.0 +16524,35,18,6,0.0 +16525,19,9.2,20,0.0 +16525,2,19,19,0.0 +16525,66,17,22,0.0 +16525,42,14,19,0.0 +16525,61,28.5,45,0.0 +16525,65,21.05,6,0.0 +16525,30,25.89,8,0.0 +16525,9,97,11,0.0 +16525,56,38,35,0.0 +16525,75,7.75,11,0.0 +16525,27,43.9,30,0.0 +16525,33,2.5,33,0.0 +16525,55,24,37,0.0 +16525,24,4.5,13,0.0 +16525,37,26,37,0.0 +16526,67,14,2,0.0 +16526,16,17.45,46,0.0 +16526,23,9,50,0.0 +16526,70,15,48,0.0 +16526,63,43.9,17,0.0 +16526,13,6,50,0.0 +16526,5,21.35,18,0.0 +16526,65,21.05,39,0.0 +16526,47,9.5,31,0.0 +16526,51,53,6,0.0 +16526,69,36,13,0.0 +16526,35,18,4,0.0 +16526,68,12.5,34,0.0 +16526,61,28.5,2,0.0 +16526,17,39,48,0.0 +16526,34,14,14,0.0 +16526,60,34,40,0.0 +16526,26,31.23,22,0.0 +16526,54,7.45,4,0.0 +16526,39,18,8,0.0 +16526,55,24,8,0.0 +16526,44,19.45,20,0.0 +16526,14,23.25,41,0.0 +16526,4,22,19,0.0 +16526,59,55,1,0.0 +16526,57,19.5,22,0.0 +16526,37,26,13,0.0 +16526,30,25.89,16,0.0 +16526,18,62.5,20,0.0 +16526,73,15,1,0.0 +16527,45,9.5,22,0.0 +16527,72,34.8,5,0.0 +16527,14,23.25,10,0.0 +16527,61,28.5,13,0.0 +16527,31,12.5,6,0.0 +16527,48,12.75,8,0.0 +16527,11,21,42,0.0 +16527,55,24,40,0.0 +16527,58,13.25,24,0.0 +16527,10,31,35,0.0 +16527,52,7,42,0.0 +16527,17,39,9,0.0 +16527,36,19,10,0.0 +16527,43,46,7,0.0 +16527,77,13,12,0.0 +16527,19,9.2,42,0.0 +16527,9,97,14,0.0 +16527,66,17,49,0.0 +16527,2,19,41,0.0 +16527,22,21,23,0.0 +16527,35,18,25,0.0 +16527,37,26,17,0.0 +16527,59,55,6,0.0 +16527,67,14,38,0.0 +16527,29,123.79,37,0.0 +16527,1,18,3,0.0 +16527,70,15,6,0.0 +16528,50,16.25,6,0.0 +16528,73,15,22,0.0 +16528,67,14,39,0.0 +16528,32,32,38,0.0 +16528,15,15.5,29,0.0 +16528,75,7.75,12,0.0 +16528,33,2.5,10,0.0 +16528,54,7.45,33,0.0 +16528,39,18,16,0.0 +16528,29,123.79,17,0.0 +16528,43,46,28,0.0 +16528,38,263.5,10,0.0 +16528,47,9.5,49,0.0 +16528,44,19.45,23,0.0 +16528,58,13.25,15,0.0 +16528,66,17,34,0.0 +16528,21,10,12,0.0 +16528,3,10,9,0.0 +16528,76,18,18,0.0 +16528,34,14,25,0.0 +16528,26,31.23,14,0.0 +16528,35,18,5,0.0 +16528,61,28.5,48,0.0 +16528,1,18,2,0.0 +16528,16,17.45,4,0.0 +16528,46,12,12,0.0 +16528,41,9.65,17,0.0 +16528,51,53,41,0.0 +16528,37,26,9,0.0 +16528,71,21.5,7,0.0 +16528,55,24,3,0.0 +16528,12,38,33,0.0 +16528,13,6,32,0.0 +16529,24,4.5,9,0.0 +16529,70,15,47,0.0 +16529,19,9.2,20,0.0 +16529,22,21,26,0.0 +16529,32,32,19,0.0 +16529,68,12.5,30,0.0 +16529,76,18,4,0.0 +16529,50,16.25,3,0.0 +16529,63,43.9,43,0.0 +16529,37,26,3,0.0 +16529,51,53,27,0.0 +16529,5,21.35,21,0.0 +16529,45,9.5,38,0.0 +16529,31,12.5,11,0.0 +16529,15,15.5,30,0.0 +16529,62,49.3,45,0.0 +16529,65,21.05,4,0.0 +16529,64,33.25,48,0.0 +16529,54,7.45,27,0.0 +16529,57,19.5,10,0.0 +16529,55,24,37,0.0 +16529,21,10,11,0.0 +16529,74,10,21,0.0 +16529,11,21,45,0.0 +16529,28,45.6,4,0.0 +16529,20,81,4,0.0 +16529,40,18.4,16,0.0 +16529,27,43.9,27,0.0 +16529,14,23.25,5,0.0 +16529,23,9,19,0.0 +16529,9,97,3,0.0 +16529,49,20,35,0.0 +16529,73,15,28,0.0 +16529,58,13.25,39,0.0 +16529,18,62.5,47,0.0 +16529,4,22,5,0.0 +16529,46,12,24,0.0 +16529,66,17,13,0.0 +16529,29,123.79,45,0.0 +16529,75,7.75,4,0.0 +16529,26,31.23,28,0.0 +16529,36,19,16,0.0 +16529,39,18,45,0.0 +16529,7,30,24,0.0 +16529,35,18,47,0.0 +16529,2,19,6,0.0 +16529,10,31,18,0.0 +16529,8,40,42,0.0 +16529,52,7,28,0.0 +16529,17,39,37,0.0 +16529,38,263.5,41,0.0 +16529,71,21.5,8,0.0 +16529,42,14,21,0.0 +16529,6,25,50,0.0 +16529,60,34,48,0.0 +16529,67,14,44,0.0 +16529,43,46,34,0.0 +16529,1,18,20,0.0 +16529,12,38,22,0.0 +16529,34,14,16,0.0 +16529,30,25.89,40,0.0 +16529,47,9.5,37,0.0 +16529,41,9.65,34,0.0 +16529,16,17.45,18,0.0 +16529,59,55,31,0.0 +16529,13,6,15,0.0 +16529,61,28.5,8,0.0 +16529,69,36,22,0.0 +16529,48,12.75,13,0.0 +16529,56,38,23,0.0 +16529,53,32.8,14,0.0 +16529,72,34.8,33,0.0 +16529,3,10,3,0.0 +16529,77,13,7,0.0 +16529,33,2.5,9,0.0 +16530,36,19,10,0.0 +16530,34,14,27,0.0 +16530,38,263.5,29,0.0 +16530,42,14,34,0.0 +16531,43,46,12,0.0 +16531,56,38,30,0.0 +16531,20,81,36,0.0 +16531,59,55,27,0.0 +16531,63,43.9,7,0.0 +16531,33,2.5,16,0.0 +16531,65,21.05,45,0.0 +16532,77,13,31,0.0 +16532,20,81,21,0.0 +16532,70,15,28,0.0 +16532,12,38,40,0.0 +16532,40,18.4,48,0.0 +16532,47,9.5,47,0.0 +16532,55,24,37,0.0 +16532,49,20,41,0.0 +16532,27,43.9,49,0.0 +16532,39,18,28,0.0 +16532,21,10,45,0.0 +16532,57,19.5,18,0.0 +16532,30,25.89,1,0.0 +16532,75,7.75,36,0.0 +16532,6,25,13,0.0 +16532,33,2.5,16,0.0 +16532,17,39,22,0.0 +16532,10,31,13,0.0 +16532,44,19.45,25,0.0 +16532,53,32.8,49,0.0 +16532,4,22,6,0.0 +16532,13,6,14,0.0 +16532,54,7.45,20,0.0 +16532,19,9.2,38,0.0 +16532,37,26,48,0.0 +16532,3,10,37,0.0 +16532,36,19,6,0.0 +16532,22,21,43,0.0 +16533,36,19,37,0.0 +16533,41,9.65,15,0.0 +16533,59,55,28,0.0 +16533,69,36,39,0.0 +16533,68,12.5,33,0.0 +16533,20,81,25,0.0 +16533,31,12.5,11,0.0 +16533,54,7.45,32,0.0 +16533,73,15,34,0.0 +16533,1,18,6,0.0 +16533,15,15.5,44,0.0 +16533,6,25,34,0.0 +16533,75,7.75,17,0.0 +16533,35,18,25,0.0 +16533,3,10,36,0.0 +16533,12,38,41,0.0 +16533,26,31.23,41,0.0 +16533,28,45.6,39,0.0 +16533,51,53,50,0.0 +16533,42,14,5,0.0 +16533,62,49.3,23,0.0 +16533,63,43.9,48,0.0 +16533,56,38,2,0.0 +16533,50,16.25,50,0.0 +16533,47,9.5,50,0.0 +16533,10,31,19,0.0 +16533,2,19,25,0.0 +16533,67,14,33,0.0 +16533,55,24,3,0.0 +16533,13,6,28,0.0 +16533,33,2.5,31,0.0 +16533,44,19.45,10,0.0 +16533,66,17,36,0.0 +16533,46,12,30,0.0 +16533,25,14,32,0.0 +16533,32,32,37,0.0 +16533,61,28.5,21,0.0 +16533,74,10,18,0.0 +16533,7,30,5,0.0 +16533,29,123.79,29,0.0 +16533,60,34,2,0.0 +16533,57,19.5,26,0.0 +16533,21,10,15,0.0 +16533,22,21,16,0.0 +16533,18,62.5,17,0.0 +16533,4,22,30,0.0 +16533,65,21.05,27,0.0 +16533,5,21.35,24,0.0 +16533,40,18.4,50,0.0 +16533,48,12.75,19,0.0 +16533,70,15,33,0.0 +16533,53,32.8,17,0.0 +16533,16,17.45,1,0.0 +16533,14,23.25,31,0.0 +16533,37,26,13,0.0 +16533,77,13,9,0.0 +16533,11,21,26,0.0 +16533,72,34.8,24,0.0 +16533,24,4.5,4,0.0 +16533,38,263.5,35,0.0 +16533,52,7,15,0.0 +16533,17,39,26,0.0 +16533,39,18,4,0.0 +16533,34,14,10,0.0 +16533,45,9.5,49,0.0 +16533,49,20,28,0.0 +16533,76,18,12,0.0 +16533,19,9.2,13,0.0 +16533,71,21.5,34,0.0 +16533,58,13.25,17,0.0 +16533,43,46,18,0.0 +16533,30,25.89,48,0.0 +16533,8,40,38,0.0 +16533,23,9,8,0.0 +16533,9,97,11,0.0 +16533,27,43.9,37,0.0 +16533,64,33.25,21,0.0 +16534,62,49.3,27,0.0 +16534,66,17,19,0.0 +16534,16,17.45,15,0.0 +16534,39,18,11,0.0 +16534,63,43.9,22,0.0 +16534,22,21,10,0.0 +16534,8,40,10,0.0 +16534,17,39,37,0.0 +16534,19,9.2,47,0.0 +16534,52,7,50,0.0 +16534,13,6,8,0.0 +16534,75,7.75,41,0.0 +16534,7,30,34,0.0 +16534,49,20,18,0.0 +16534,53,32.8,11,0.0 +16534,47,9.5,43,0.0 +16534,14,23.25,22,0.0 +16534,56,38,16,0.0 +16534,59,55,40,0.0 +16535,54,7.45,42,0.0 +16535,60,34,15,0.0 +16535,45,9.5,3,0.0 +16535,49,20,2,0.0 +16535,35,18,40,0.0 +16535,28,45.6,43,0.0 +16535,19,9.2,18,0.0 +16535,18,62.5,30,0.0 +16535,12,38,24,0.0 +16535,75,7.75,3,0.0 +16535,29,123.79,41,0.0 +16535,24,4.5,10,0.0 +16535,26,31.23,29,0.0 +16535,58,13.25,49,0.0 +16535,52,7,48,0.0 +16535,62,49.3,41,0.0 +16535,53,32.8,7,0.0 +16535,72,34.8,41,0.0 +16535,56,38,22,0.0 +16535,30,25.89,14,0.0 +16535,27,43.9,48,0.0 +16535,47,9.5,39,0.0 +16535,23,9,14,0.0 +16535,42,14,45,0.0 +16535,25,14,25,0.0 +16535,10,31,27,0.0 +16535,9,97,45,0.0 +16535,41,9.65,3,0.0 +16535,43,46,16,0.0 +16535,57,19.5,16,0.0 +16535,11,21,9,0.0 +16535,40,18.4,45,0.0 +16535,64,33.25,21,0.0 +16535,67,14,22,0.0 +16535,44,19.45,39,0.0 +16535,77,13,8,0.0 +16535,33,2.5,2,0.0 +16535,36,19,35,0.0 +16535,31,12.5,50,0.0 +16535,7,30,1,0.0 +16535,74,10,50,0.0 +16535,22,21,38,0.0 +16535,50,16.25,5,0.0 +16535,68,12.5,1,0.0 +16535,59,55,14,0.0 +16535,63,43.9,16,0.0 +16536,58,13.25,35,0.0 +16536,51,53,16,0.0 +16536,13,6,24,0.0 +16536,2,19,24,0.0 +16536,3,10,30,0.0 +16536,29,123.79,27,0.0 +16536,8,40,43,0.0 +16536,32,32,27,0.0 +16536,77,13,27,0.0 +16536,65,21.05,30,0.0 +16536,33,2.5,10,0.0 +16536,35,18,23,0.0 +16536,14,23.25,4,0.0 +16536,57,19.5,10,0.0 +16536,31,12.5,45,0.0 +16536,71,21.5,37,0.0 +16536,39,18,39,0.0 +16536,70,15,50,0.0 +16536,4,22,15,0.0 +16536,7,30,3,0.0 +16536,76,18,21,0.0 +16536,59,55,15,0.0 +16536,10,31,30,0.0 +16536,44,19.45,37,0.0 +16536,36,19,26,0.0 +16536,6,25,43,0.0 +16536,73,15,41,0.0 +16536,19,9.2,23,0.0 +16536,22,21,10,0.0 +16536,67,14,27,0.0 +16536,45,9.5,5,0.0 +16536,24,4.5,40,0.0 +16536,46,12,48,0.0 +16536,11,21,42,0.0 +16536,18,62.5,25,0.0 +16536,49,20,2,0.0 +16536,25,14,16,0.0 +16536,34,14,32,0.0 +16536,60,34,27,0.0 +16536,12,38,20,0.0 +16536,17,39,43,0.0 +16536,52,7,23,0.0 +16536,42,14,26,0.0 +16536,40,18.4,34,0.0 +16536,20,81,18,0.0 +16536,16,17.45,21,0.0 +16536,61,28.5,36,0.0 +16536,30,25.89,8,0.0 +16536,5,21.35,8,0.0 +16536,48,12.75,16,0.0 +16536,75,7.75,30,0.0 +16536,1,18,6,0.0 +16536,50,16.25,45,0.0 +16536,72,34.8,3,0.0 +16536,66,17,16,0.0 +16536,54,7.45,14,0.0 +16536,41,9.65,1,0.0 +16536,43,46,10,0.0 +16536,63,43.9,43,0.0 +16536,47,9.5,11,0.0 +16536,28,45.6,25,0.0 +16536,55,24,24,0.0 +16536,62,49.3,2,0.0 +16536,53,32.8,32,0.0 +16536,69,36,10,0.0 +16536,15,15.5,2,0.0 +16536,38,263.5,17,0.0 +16536,68,12.5,45,0.0 +16536,26,31.23,1,0.0 +16536,9,97,29,0.0 +16536,37,26,18,0.0 +16536,21,10,32,0.0 +16536,74,10,26,0.0 +16536,23,9,11,0.0 +16536,64,33.25,35,0.0 +16536,27,43.9,4,0.0 +16537,24,4.5,34,0.0 +16537,67,14,10,0.0 +16537,43,46,39,0.0 +16537,35,18,45,0.0 +16537,52,7,21,0.0 +16537,23,9,4,0.0 +16537,18,62.5,7,0.0 +16537,28,45.6,2,0.0 +16537,10,31,48,0.0 +16537,1,18,48,0.0 +16537,41,9.65,4,0.0 +16537,30,25.89,14,0.0 +16537,53,32.8,13,0.0 +16537,17,39,30,0.0 +16537,6,25,45,0.0 +16537,7,30,40,0.0 +16537,2,19,50,0.0 +16537,44,19.45,48,0.0 +16537,20,81,13,0.0 +16537,13,6,8,0.0 +16537,63,43.9,16,0.0 +16537,15,15.5,26,0.0 +16537,9,97,25,0.0 +16537,26,31.23,20,0.0 +16537,55,24,15,0.0 +16537,40,18.4,11,0.0 +16537,64,33.25,32,0.0 +16537,38,263.5,27,0.0 +16537,12,38,7,0.0 +16537,4,22,43,0.0 +16537,32,32,31,0.0 +16537,42,14,47,0.0 +16537,48,12.75,31,0.0 +16537,8,40,41,0.0 +16537,45,9.5,39,0.0 +16537,14,23.25,37,0.0 +16538,50,16.25,27,0.0 +16538,7,30,3,0.0 +16538,25,14,24,0.0 +16538,63,43.9,32,0.0 +16538,8,40,42,0.0 +16538,65,21.05,5,0.0 +16538,42,14,20,0.0 +16538,51,53,2,0.0 +16538,20,81,38,0.0 +16538,44,19.45,16,0.0 +16538,69,36,45,0.0 +16538,38,263.5,8,0.0 +16538,77,13,39,0.0 +16538,49,20,6,0.0 +16538,21,10,50,0.0 +16538,37,26,17,0.0 +16538,13,6,30,0.0 +16538,52,7,50,0.0 +16538,62,49.3,39,0.0 +16538,19,9.2,27,0.0 +16538,68,12.5,17,0.0 +16538,72,34.8,49,0.0 +16538,31,12.5,27,0.0 +16538,35,18,23,0.0 +16538,34,14,27,0.0 +16538,28,45.6,11,0.0 +16538,57,19.5,1,0.0 +16538,66,17,29,0.0 +16538,24,4.5,6,0.0 +16538,1,18,44,0.0 +16538,46,12,11,0.0 +16538,16,17.45,6,0.0 +16538,43,46,21,0.0 +16538,40,18.4,38,0.0 +16538,32,32,44,0.0 +16538,39,18,37,0.0 +16538,30,25.89,2,0.0 +16538,54,7.45,26,0.0 +16539,16,17.45,13,0.0 +16539,56,38,19,0.0 +16539,59,55,21,0.0 +16539,75,7.75,32,0.0 +16539,50,16.25,48,0.0 +16539,55,24,35,0.0 +16539,29,123.79,4,0.0 +16539,21,10,45,0.0 +16539,7,30,37,0.0 +16539,60,34,37,0.0 +16539,32,32,15,0.0 +16539,57,19.5,49,0.0 +16539,8,40,23,0.0 +16539,9,97,39,0.0 +16539,38,263.5,40,0.0 +16539,42,14,19,0.0 +16539,12,38,37,0.0 +16539,1,18,29,0.0 +16539,73,15,21,0.0 +16539,36,19,45,0.0 +16539,64,33.25,41,0.0 +16539,77,13,41,0.0 +16539,5,21.35,36,0.0 +16539,53,32.8,48,0.0 +16539,11,21,39,0.0 +16539,22,21,36,0.0 +16539,30,25.89,48,0.0 +16539,17,39,42,0.0 +16539,10,31,35,0.0 +16539,44,19.45,34,0.0 +16539,4,22,20,0.0 +16539,62,49.3,43,0.0 +16539,69,36,36,0.0 +16539,25,14,16,0.0 +16539,37,26,38,0.0 +16539,34,14,5,0.0 +16539,65,21.05,28,0.0 +16539,66,17,45,0.0 +16539,74,10,42,0.0 +16539,41,9.65,1,0.0 +16539,54,7.45,25,0.0 +16539,3,10,26,0.0 +16539,70,15,22,0.0 +16539,19,9.2,49,0.0 +16540,71,21.5,16,0.0 +16540,10,31,32,0.0 +16540,51,53,14,0.0 +16540,6,25,24,0.0 +16540,4,22,20,0.0 +16540,66,17,36,0.0 +16540,2,19,43,0.0 +16540,7,30,40,0.0 +16540,3,10,5,0.0 +16540,76,18,50,0.0 +16540,22,21,24,0.0 +16540,55,24,16,0.0 +16540,13,6,43,0.0 +16540,24,4.5,15,0.0 +16540,8,40,30,0.0 +16540,15,15.5,42,0.0 +16540,50,16.25,46,0.0 +16540,18,62.5,38,0.0 +16540,72,34.8,13,0.0 +16540,37,26,10,0.0 +16540,69,36,43,0.0 +16540,52,7,30,0.0 +16540,27,43.9,40,0.0 +16540,9,97,42,0.0 +16540,41,9.65,6,0.0 +16540,19,9.2,22,0.0 +16540,61,28.5,19,0.0 +16540,73,15,2,0.0 +16540,48,12.75,8,0.0 +16540,63,43.9,7,0.0 +16540,33,2.5,19,0.0 +16540,42,14,48,0.0 +16540,11,21,38,0.0 +16540,58,13.25,21,0.0 +16540,47,9.5,22,0.0 +16540,26,31.23,18,0.0 +16540,12,38,5,0.0 +16540,16,17.45,37,0.0 +16540,23,9,30,0.0 +16540,54,7.45,6,0.0 +16540,14,23.25,15,0.0 +16540,56,38,43,0.0 +16540,43,46,20,0.0 +16540,70,15,44,0.0 +16541,76,18,48,0.0 +16541,61,28.5,28,0.0 +16541,51,53,31,0.0 +16541,40,18.4,1,0.0 +16541,42,14,34,0.0 +16541,14,23.25,46,0.0 +16541,10,31,22,0.0 +16541,36,19,27,0.0 +16541,73,15,48,0.0 +16541,64,33.25,1,0.0 +16541,19,9.2,5,0.0 +16541,68,12.5,4,0.0 +16541,24,4.5,7,0.0 +16541,60,34,40,0.0 +16541,52,7,49,0.0 +16541,2,19,6,0.0 +16541,56,38,22,0.0 +16541,77,13,3,0.0 +16541,55,24,48,0.0 +16541,30,25.89,8,0.0 +16541,49,20,12,0.0 +16541,54,7.45,3,0.0 +16542,45,9.5,45,0.0 +16542,67,14,16,0.0 +16542,55,24,39,0.0 +16543,72,34.8,16,0.0 +16543,50,16.25,45,0.0 +16543,4,22,45,0.0 +16543,54,7.45,43,0.0 +16543,40,18.4,24,0.0 +16543,58,13.25,7,0.0 +16543,65,21.05,21,0.0 +16543,73,15,32,0.0 +16543,66,17,11,0.0 +16543,71,21.5,36,0.0 +16543,15,15.5,7,0.0 +16543,68,12.5,18,0.0 +16543,30,25.89,46,0.0 +16543,12,38,7,0.0 +16543,47,9.5,32,0.0 +16543,56,38,21,0.0 +16543,63,43.9,30,0.0 +16543,67,14,32,0.0 +16543,61,28.5,30,0.0 +16543,60,34,25,0.0 +16543,24,4.5,9,0.0 +16543,49,20,24,0.0 +16543,20,81,36,0.0 +16543,39,18,2,0.0 +16543,33,2.5,15,0.0 +16543,38,263.5,30,0.0 +16543,46,12,17,0.0 +16543,23,9,7,0.0 +16543,5,21.35,3,0.0 +16543,31,12.5,34,0.0 +16543,9,97,48,0.0 +16543,11,21,31,0.0 +16543,3,10,40,0.0 +16543,19,9.2,18,0.0 +16544,26,31.23,16,0.0 +16544,58,13.25,16,0.0 +16544,64,33.25,14,0.0 +16544,75,7.75,22,0.0 +16544,23,9,13,0.0 +16544,39,18,35,0.0 +16544,76,18,36,0.0 +16544,33,2.5,45,0.0 +16544,34,14,49,0.0 +16544,11,21,47,0.0 +16544,54,7.45,25,0.0 +16544,47,9.5,3,0.0 +16544,1,18,29,0.0 +16544,25,14,15,0.0 +16544,52,7,8,0.0 +16544,24,4.5,12,0.0 +16544,18,62.5,48,0.0 +16544,66,17,8,0.0 +16544,30,25.89,34,0.0 +16544,12,38,26,0.0 +16544,69,36,1,0.0 +16544,29,123.79,27,0.0 +16544,42,14,26,0.0 +16544,60,34,28,0.0 +16544,32,32,17,0.0 +16544,57,19.5,7,0.0 +16544,31,12.5,23,0.0 +16544,37,26,2,0.0 +16544,62,49.3,28,0.0 +16544,67,14,45,0.0 +16544,4,22,32,0.0 +16544,44,19.45,19,0.0 +16544,19,9.2,35,0.0 +16544,9,97,35,0.0 +16544,48,12.75,2,0.0 +16544,55,24,6,0.0 +16544,20,81,19,0.0 +16544,38,263.5,5,0.0 +16544,16,17.45,18,0.0 +16544,70,15,2,0.0 +16544,49,20,35,0.0 +16544,65,21.05,34,0.0 +16544,74,10,23,0.0 +16544,21,10,35,0.0 +16544,8,40,14,0.0 +16544,27,43.9,29,0.0 +16544,63,43.9,8,0.0 +16544,43,46,8,0.0 +16544,73,15,5,0.0 +16544,17,39,40,0.0 +16544,7,30,22,0.0 +16544,59,55,49,0.0 +16544,15,15.5,12,0.0 +16544,72,34.8,13,0.0 +16544,61,28.5,46,0.0 +16544,56,38,12,0.0 +16544,2,19,43,0.0 +16544,5,21.35,38,0.0 +16544,77,13,29,0.0 +16544,22,21,16,0.0 +16544,45,9.5,49,0.0 +16544,68,12.5,50,0.0 +16544,6,25,36,0.0 +16544,13,6,43,0.0 +16545,61,28.5,45,0.0 +16545,72,34.8,10,0.0 +16545,62,49.3,34,0.0 +16545,35,18,5,0.0 +16545,13,6,27,0.0 +16545,52,7,37,0.0 +16545,23,9,38,0.0 +16545,65,21.05,37,0.0 +16545,37,26,33,0.0 +16545,1,18,19,0.0 +16545,71,21.5,33,0.0 +16545,58,13.25,26,0.0 +16545,55,24,43,0.0 +16545,73,15,34,0.0 +16545,19,9.2,37,0.0 +16545,11,21,14,0.0 +16545,60,34,44,0.0 +16545,45,9.5,47,0.0 +16545,2,19,17,0.0 +16545,40,18.4,9,0.0 +16545,21,10,3,0.0 +16545,56,38,46,0.0 +16545,33,2.5,48,0.0 +16545,8,40,27,0.0 +16545,49,20,27,0.0 +16545,69,36,37,0.0 +16545,54,7.45,27,0.0 +16545,76,18,22,0.0 +16545,27,43.9,31,0.0 +16545,70,15,39,0.0 +16545,22,21,49,0.0 +16545,36,19,6,0.0 +16545,66,17,35,0.0 +16545,57,19.5,42,0.0 +16545,28,45.6,42,0.0 +16545,29,123.79,45,0.0 +16545,6,25,6,0.0 +16545,48,12.75,11,0.0 +16545,46,12,50,0.0 +16545,25,14,19,0.0 +16545,42,14,35,0.0 +16545,32,32,13,0.0 +16545,59,55,22,0.0 +16545,15,15.5,35,0.0 +16545,20,81,17,0.0 +16545,75,7.75,3,0.0 +16545,9,97,38,0.0 +16545,34,14,43,0.0 +16545,10,31,34,0.0 +16545,41,9.65,6,0.0 +16545,47,9.5,2,0.0 +16545,18,62.5,24,0.0 +16545,5,21.35,38,0.0 +16545,68,12.5,31,0.0 +16545,74,10,23,0.0 +16545,17,39,3,0.0 +16545,67,14,17,0.0 +16545,50,16.25,2,0.0 +16545,12,38,23,0.0 +16545,3,10,47,0.0 +16545,30,25.89,7,0.0 +16545,53,32.8,45,0.0 +16545,26,31.23,6,0.0 +16545,63,43.9,40,0.0 +16545,64,33.25,20,0.0 +16545,43,46,32,0.0 +16545,24,4.5,17,0.0 +16546,51,53,32,0.0 +16546,64,33.25,39,0.0 +16546,29,123.79,6,0.0 +16546,16,17.45,37,0.0 +16546,74,10,23,0.0 +16546,48,12.75,6,0.0 +16546,54,7.45,17,0.0 +16546,62,49.3,2,0.0 +16546,43,46,13,0.0 +16546,32,32,24,0.0 +16546,52,7,1,0.0 +16546,42,14,44,0.0 +16546,7,30,44,0.0 +16546,20,81,23,0.0 +16546,50,16.25,49,0.0 +16546,4,22,36,0.0 +16546,6,25,35,0.0 +16546,60,34,1,0.0 +16546,2,19,31,0.0 +16546,47,9.5,11,0.0 +16546,38,263.5,12,0.0 +16546,28,45.6,42,0.0 +16546,23,9,22,0.0 +16546,12,38,21,0.0 +16546,25,14,39,0.0 +16546,31,12.5,26,0.0 +16546,19,9.2,19,0.0 +16546,13,6,43,0.0 +16546,34,14,29,0.0 +16546,65,21.05,19,0.0 +16546,11,21,38,0.0 +16546,55,24,31,0.0 +16546,73,15,23,0.0 +16546,75,7.75,15,0.0 +16546,18,62.5,49,0.0 +16546,21,10,37,0.0 +16546,5,21.35,36,0.0 +16546,30,25.89,36,0.0 +16546,9,97,22,0.0 +16546,40,18.4,44,0.0 +16546,44,19.45,22,0.0 +16546,63,43.9,19,0.0 +16546,67,14,11,0.0 +16546,49,20,36,0.0 +16546,35,18,14,0.0 +16546,1,18,43,0.0 +16546,57,19.5,29,0.0 +16546,70,15,41,0.0 +16547,7,30,36,0.0 +16547,42,14,11,0.0 +16547,52,7,39,0.0 +16547,10,31,45,0.0 +16547,43,46,5,0.0 +16547,23,9,40,0.0 +16547,74,10,15,0.0 +16547,63,43.9,36,0.0 +16547,38,263.5,33,0.0 +16547,39,18,6,0.0 +16547,32,32,35,0.0 +16547,73,15,24,0.0 +16547,53,32.8,37,0.0 +16547,41,9.65,32,0.0 +16547,3,10,46,0.0 +16547,44,19.45,33,0.0 +16547,31,12.5,36,0.0 +16547,65,21.05,42,0.0 +16547,64,33.25,6,0.0 +16547,12,38,48,0.0 +16547,25,14,10,0.0 +16547,26,31.23,36,0.0 +16547,69,36,16,0.0 +16547,9,97,44,0.0 +16547,49,20,47,0.0 +16547,14,23.25,49,0.0 +16547,16,17.45,39,0.0 +16547,51,53,12,0.0 +16547,29,123.79,24,0.0 +16547,1,18,25,0.0 +16547,59,55,48,0.0 +16547,37,26,28,0.0 +16547,70,15,20,0.0 +16547,34,14,47,0.0 +16547,45,9.5,33,0.0 +16547,60,34,22,0.0 +16547,33,2.5,25,0.0 +16547,5,21.35,33,0.0 +16547,17,39,16,0.0 +16547,66,17,21,0.0 +16547,24,4.5,23,0.0 +16547,6,25,32,0.0 +16547,40,18.4,44,0.0 +16547,15,15.5,12,0.0 +16547,13,6,14,0.0 +16547,22,21,44,0.0 +16547,56,38,10,0.0 +16548,10,31,49,0.0 +16548,14,23.25,20,0.0 +16548,27,43.9,30,0.0 +16548,70,15,6,0.0 +16548,22,21,19,0.0 +16548,45,9.5,9,0.0 +16548,55,24,33,0.0 +16548,73,15,36,0.0 +16548,67,14,8,0.0 +16548,21,10,29,0.0 +16548,58,13.25,16,0.0 +16548,50,16.25,34,0.0 +16548,36,19,10,0.0 +16548,66,17,13,0.0 +16548,7,30,13,0.0 +16548,56,38,10,0.0 +16548,52,7,18,0.0 +16548,33,2.5,27,0.0 +16548,4,22,18,0.0 +16548,40,18.4,6,0.0 +16548,63,43.9,39,0.0 +16548,65,21.05,27,0.0 +16548,61,28.5,40,0.0 +16548,68,12.5,40,0.0 +16548,31,12.5,8,0.0 +16548,1,18,4,0.0 +16548,23,9,25,0.0 +16548,71,21.5,49,0.0 +16548,8,40,27,0.0 +16549,44,19.45,32,0.0 +16549,71,21.5,29,0.0 +16549,41,9.65,33,0.0 +16549,59,55,15,0.0 +16549,12,38,14,0.0 +16549,69,36,12,0.0 +16549,33,2.5,6,0.0 +16549,34,14,19,0.0 +16549,18,62.5,4,0.0 +16549,7,30,29,0.0 +16549,20,81,40,0.0 +16549,2,19,14,0.0 +16549,11,21,22,0.0 +16549,55,24,8,0.0 +16549,58,13.25,10,0.0 +16549,32,32,12,0.0 +16549,22,21,21,0.0 +16549,10,31,26,0.0 +16549,17,39,2,0.0 +16549,25,14,33,0.0 +16549,39,18,16,0.0 +16549,54,7.45,23,0.0 +16549,67,14,46,0.0 +16549,49,20,24,0.0 +16549,62,49.3,6,0.0 +16549,40,18.4,42,0.0 +16549,53,32.8,4,0.0 +16549,76,18,22,0.0 +16549,6,25,18,0.0 +16549,70,15,36,0.0 +16549,3,10,17,0.0 +16549,26,31.23,33,0.0 +16549,60,34,31,0.0 +16549,9,97,28,0.0 +16549,14,23.25,1,0.0 +16549,15,15.5,18,0.0 +16549,46,12,32,0.0 +16549,1,18,28,0.0 +16549,5,21.35,35,0.0 +16549,52,7,49,0.0 +16549,63,43.9,34,0.0 +16549,68,12.5,41,0.0 +16549,50,16.25,26,0.0 +16549,73,15,2,0.0 +16549,36,19,7,0.0 +16549,23,9,38,0.0 +16549,16,17.45,29,0.0 +16549,19,9.2,5,0.0 +16549,72,34.8,13,0.0 +16549,37,26,48,0.0 +16549,74,10,12,0.0 +16549,8,40,29,0.0 +16549,4,22,10,0.0 +16549,13,6,16,0.0 +16549,28,45.6,29,0.0 +16549,65,21.05,14,0.0 +16549,27,43.9,48,0.0 +16549,47,9.5,14,0.0 +16550,40,18.4,34,0.0 +16550,66,17,4,0.0 +16550,8,40,23,0.0 +16550,26,31.23,35,0.0 +16550,44,19.45,26,0.0 +16550,16,17.45,49,0.0 +16550,1,18,34,0.0 +16550,61,28.5,45,0.0 +16550,64,33.25,15,0.0 +16550,14,23.25,23,0.0 +16550,33,2.5,11,0.0 +16550,72,34.8,29,0.0 +16550,7,30,44,0.0 +16550,31,12.5,23,0.0 +16550,43,46,41,0.0 +16550,73,15,2,0.0 +16550,10,31,42,0.0 +16550,34,14,31,0.0 +16550,23,9,39,0.0 +16550,27,43.9,34,0.0 +16550,75,7.75,50,0.0 +16550,59,55,2,0.0 +16550,70,15,2,0.0 +16550,13,6,28,0.0 +16550,5,21.35,34,0.0 +16550,30,25.89,47,0.0 +16550,6,25,13,0.0 +16550,52,7,8,0.0 +16550,37,26,45,0.0 +16550,77,13,26,0.0 +16550,76,18,26,0.0 +16550,12,38,47,0.0 +16550,2,19,11,0.0 +16550,41,9.65,10,0.0 +16550,56,38,1,0.0 +16550,35,18,27,0.0 +16550,19,9.2,13,0.0 +16550,21,10,5,0.0 +16550,74,10,27,0.0 +16550,17,39,14,0.0 +16550,57,19.5,7,0.0 +16550,47,9.5,32,0.0 +16550,46,12,4,0.0 +16550,51,53,4,0.0 +16550,25,14,49,0.0 +16550,36,19,28,0.0 +16550,58,13.25,42,0.0 +16550,62,49.3,5,0.0 +16550,4,22,11,0.0 +16551,39,18,48,0.0 +16551,51,53,42,0.0 +16551,34,14,34,0.0 +16551,63,43.9,6,0.0 +16551,28,45.6,21,0.0 +16551,22,21,32,0.0 +16551,50,16.25,47,0.0 +16551,46,12,29,0.0 +16551,38,263.5,43,0.0 +16551,68,12.5,37,0.0 +16551,42,14,42,0.0 +16551,73,15,7,0.0 +16551,65,21.05,12,0.0 +16551,60,34,3,0.0 +16551,71,21.5,37,0.0 +16551,56,38,46,0.0 +16551,59,55,18,0.0 +16552,6,25,26,0.0 +16552,60,34,3,0.0 +16552,54,7.45,46,0.0 +16552,44,19.45,32,0.0 +16552,46,12,26,0.0 +16552,66,17,36,0.0 +16552,13,6,12,0.0 +16552,18,62.5,31,0.0 +16552,7,30,35,0.0 +16552,74,10,5,0.0 +16552,14,23.25,4,0.0 +16552,26,31.23,15,0.0 +16552,35,18,30,0.0 +16552,25,14,27,0.0 +16552,39,18,6,0.0 +16552,49,20,50,0.0 +16552,28,45.6,17,0.0 +16552,34,14,27,0.0 +16552,15,15.5,42,0.0 +16552,70,15,34,0.0 +16552,57,19.5,21,0.0 +16552,9,97,9,0.0 +16552,27,43.9,47,0.0 +16552,33,2.5,34,0.0 +16552,45,9.5,42,0.0 +16552,12,38,8,0.0 +16552,69,36,3,0.0 +16552,53,32.8,20,0.0 +16552,5,21.35,46,0.0 +16552,37,26,2,0.0 +16552,20,81,16,0.0 +16552,8,40,32,0.0 +16552,29,123.79,50,0.0 +16552,16,17.45,12,0.0 +16552,3,10,20,0.0 +16552,40,18.4,17,0.0 +16552,36,19,39,0.0 +16552,23,9,24,0.0 +16552,58,13.25,6,0.0 +16552,72,34.8,44,0.0 +16552,68,12.5,30,0.0 +16552,77,13,34,0.0 +16552,31,12.5,13,0.0 +16552,21,10,26,0.0 +16552,67,14,25,0.0 +16552,42,14,39,0.0 +16552,32,32,30,0.0 +16552,10,31,2,0.0 +16552,43,46,31,0.0 +16552,63,43.9,27,0.0 +16552,19,9.2,39,0.0 +16552,71,21.5,50,0.0 +16552,56,38,24,0.0 +16552,73,15,17,0.0 +16552,52,7,24,0.0 +16552,55,24,2,0.0 +16552,41,9.65,48,0.0 +16552,76,18,39,0.0 +16552,4,22,35,0.0 +16552,1,18,46,0.0 +16552,48,12.75,4,0.0 +16552,11,21,12,0.0 +16552,75,7.75,31,0.0 +16552,47,9.5,28,0.0 +16552,62,49.3,37,0.0 +16552,65,21.05,15,0.0 +16552,61,28.5,30,0.0 +16552,51,53,30,0.0 +16552,24,4.5,15,0.0 +16552,30,25.89,23,0.0 +16552,22,21,47,0.0 +16552,50,16.25,19,0.0 +16552,2,19,34,0.0 +16552,59,55,43,0.0 +16552,17,39,50,0.0 +16553,25,14,43,0.0 +16553,45,9.5,49,0.0 +16553,67,14,12,0.0 +16553,10,31,11,0.0 +16553,58,13.25,13,0.0 +16553,7,30,28,0.0 +16554,12,38,46,0.0 +16554,26,31.23,24,0.0 +16554,65,21.05,13,0.0 +16554,51,53,44,0.0 +16554,21,10,6,0.0 +16554,76,18,38,0.0 +16554,71,21.5,41,0.0 +16554,73,15,44,0.0 +16554,41,9.65,7,0.0 +16554,67,14,14,0.0 +16554,16,17.45,50,0.0 +16554,53,32.8,24,0.0 +16554,10,31,44,0.0 +16554,27,43.9,28,0.0 +16554,14,23.25,35,0.0 +16554,70,15,49,0.0 +16554,63,43.9,40,0.0 +16554,25,14,48,0.0 +16554,43,46,13,0.0 +16554,4,22,41,0.0 +16554,59,55,5,0.0 +16554,57,19.5,46,0.0 +16554,35,18,13,0.0 +16554,3,10,14,0.0 +16554,13,6,23,0.0 +16554,34,14,35,0.0 +16555,24,4.5,35,0.0 +16555,55,24,49,0.0 +16555,1,18,48,0.0 +16555,7,30,23,0.0 +16555,13,6,14,0.0 +16555,32,32,18,0.0 +16555,23,9,16,0.0 +16555,72,34.8,28,0.0 +16555,16,17.45,44,0.0 +16555,2,19,25,0.0 +16555,39,18,15,0.0 +16555,73,15,20,0.0 +16555,19,9.2,46,0.0 +16555,59,55,18,0.0 +16555,46,12,36,0.0 +16555,41,9.65,33,0.0 +16555,62,49.3,15,0.0 +16555,4,22,7,0.0 +16555,51,53,4,0.0 +16555,35,18,5,0.0 +16555,5,21.35,10,0.0 +16555,25,14,6,0.0 +16555,77,13,9,0.0 +16555,64,33.25,49,0.0 +16555,74,10,1,0.0 +16555,40,18.4,27,0.0 +16555,12,38,45,0.0 +16555,11,21,10,0.0 +16555,8,40,21,0.0 +16555,42,14,46,0.0 +16555,36,19,22,0.0 +16555,37,26,17,0.0 +16555,49,20,22,0.0 +16555,50,16.25,22,0.0 +16555,44,19.45,32,0.0 +16555,15,15.5,1,0.0 +16555,38,263.5,8,0.0 +16555,28,45.6,32,0.0 +16555,58,13.25,38,0.0 +16555,3,10,19,0.0 +16555,57,19.5,15,0.0 +16556,30,25.89,24,0.0 +16556,32,32,34,0.0 +16556,33,2.5,8,0.0 +16556,20,81,33,0.0 +16556,49,20,44,0.0 +16556,57,19.5,42,0.0 +16556,17,39,47,0.0 +16556,69,36,37,0.0 +16556,64,33.25,30,0.0 +16556,74,10,1,0.0 +16556,52,7,47,0.0 +16556,43,46,11,0.0 +16556,2,19,8,0.0 +16556,15,15.5,38,0.0 +16556,35,18,4,0.0 +16556,75,7.75,48,0.0 +16556,68,12.5,25,0.0 +16556,70,15,30,0.0 +16556,31,12.5,13,0.0 +16556,19,9.2,13,0.0 +16556,40,18.4,26,0.0 +16556,72,34.8,14,0.0 +16556,25,14,12,0.0 +16556,37,26,11,0.0 +16556,27,43.9,25,0.0 +16556,1,18,23,0.0 +16557,5,21.35,10,0.0 +16557,24,4.5,44,0.0 +16557,72,34.8,15,0.0 +16557,25,14,45,0.0 +16557,63,43.9,13,0.0 +16557,75,7.75,15,0.0 +16557,69,36,31,0.0 +16557,16,17.45,38,0.0 +16557,3,10,38,0.0 +16557,51,53,32,0.0 +16557,45,9.5,42,0.0 +16557,18,62.5,32,0.0 +16557,4,22,33,0.0 +16557,55,24,6,0.0 +16557,21,10,40,0.0 +16557,66,17,7,0.0 +16557,22,21,39,0.0 +16557,53,32.8,11,0.0 +16557,19,9.2,48,0.0 +16557,47,9.5,8,0.0 +16557,37,26,23,0.0 +16557,71,21.5,11,0.0 +16557,59,55,6,0.0 +16557,20,81,45,0.0 +16557,48,12.75,48,0.0 +16557,35,18,29,0.0 +16557,62,49.3,7,0.0 +16557,7,30,41,0.0 +16557,32,32,2,0.0 +16557,42,14,8,0.0 +16557,26,31.23,43,0.0 +16557,49,20,20,0.0 +16557,70,15,35,0.0 +16557,27,43.9,22,0.0 +16557,74,10,44,0.0 +16557,8,40,14,0.0 +16557,29,123.79,34,0.0 +16557,40,18.4,4,0.0 +16557,57,19.5,11,0.0 +16557,34,14,23,0.0 +16557,50,16.25,1,0.0 +16557,52,7,45,0.0 +16557,9,97,30,0.0 +16557,14,23.25,4,0.0 +16557,1,18,17,0.0 +16557,46,12,41,0.0 +16557,61,28.5,6,0.0 +16557,33,2.5,48,0.0 +16557,76,18,9,0.0 +16557,39,18,29,0.0 +16557,11,21,35,0.0 +16557,64,33.25,43,0.0 +16557,23,9,1,0.0 +16557,6,25,43,0.0 +16557,36,19,35,0.0 +16557,17,39,13,0.0 +16557,43,46,3,0.0 +16557,28,45.6,44,0.0 +16557,58,13.25,15,0.0 +16557,41,9.65,9,0.0 +16557,2,19,17,0.0 +16557,30,25.89,19,0.0 +16557,10,31,34,0.0 +16557,12,38,43,0.0 +16557,56,38,6,0.0 +16557,31,12.5,3,0.0 +16557,54,7.45,50,0.0 +16557,44,19.45,3,0.0 +16557,15,15.5,27,0.0 +16558,32,32,50,0.0 +16558,73,15,15,0.0 +16558,56,38,28,0.0 +16558,4,22,22,0.0 +16558,45,9.5,30,0.0 +16558,33,2.5,16,0.0 +16558,5,21.35,7,0.0 +16558,49,20,35,0.0 +16558,64,33.25,17,0.0 +16558,68,12.5,5,0.0 +16558,29,123.79,15,0.0 +16558,1,18,4,0.0 +16558,76,18,9,0.0 +16558,8,40,22,0.0 +16559,46,12,47,0.0 +16559,53,32.8,28,0.0 +16559,36,19,34,0.0 +16559,68,12.5,38,0.0 +16559,7,30,30,0.0 +16559,1,18,29,0.0 +16559,66,17,19,0.0 +16559,42,14,38,0.0 +16559,60,34,36,0.0 +16559,51,53,25,0.0 +16559,29,123.79,19,0.0 +16559,77,13,7,0.0 +16559,11,21,1,0.0 +16559,34,14,49,0.0 +16559,14,23.25,4,0.0 +16559,70,15,44,0.0 +16559,59,55,26,0.0 +16559,37,26,36,0.0 +16559,18,62.5,34,0.0 +16559,45,9.5,22,0.0 +16559,13,6,39,0.0 +16559,57,19.5,27,0.0 +16559,3,10,3,0.0 +16559,44,19.45,49,0.0 +16559,55,24,21,0.0 +16559,8,40,20,0.0 +16559,52,7,19,0.0 +16559,20,81,19,0.0 +16559,5,21.35,20,0.0 +16559,2,19,46,0.0 +16559,69,36,18,0.0 +16559,41,9.65,43,0.0 +16559,25,14,50,0.0 +16559,40,18.4,39,0.0 +16559,54,7.45,14,0.0 +16559,39,18,45,0.0 +16559,49,20,46,0.0 +16560,31,12.5,46,0.0 +16560,24,4.5,15,0.0 +16560,38,263.5,21,0.0 +16560,34,14,18,0.0 +16560,39,18,34,0.0 +16560,66,17,36,0.0 +16560,69,36,24,0.0 +16560,54,7.45,41,0.0 +16560,10,31,44,0.0 +16561,66,17,22,0.0 +16561,32,32,43,0.0 +16561,48,12.75,24,0.0 +16561,6,25,34,0.0 +16561,36,19,4,0.0 +16561,2,19,15,0.0 +16561,34,14,11,0.0 +16561,72,34.8,14,0.0 +16561,13,6,8,0.0 +16561,7,30,30,0.0 +16561,8,40,50,0.0 +16561,68,12.5,44,0.0 +16561,51,53,5,0.0 +16561,43,46,20,0.0 +16561,52,7,31,0.0 +16561,60,34,22,0.0 +16561,41,9.65,8,0.0 +16561,23,9,29,0.0 +16561,16,17.45,46,0.0 +16561,17,39,26,0.0 +16561,71,21.5,19,0.0 +16561,40,18.4,48,0.0 +16561,12,38,17,0.0 +16561,69,36,10,0.0 +16561,76,18,23,0.0 +16561,9,97,24,0.0 +16561,53,32.8,42,0.0 +16561,20,81,9,0.0 +16561,15,15.5,29,0.0 +16561,56,38,22,0.0 +16561,44,19.45,41,0.0 +16561,73,15,5,0.0 +16561,45,9.5,2,0.0 +16562,41,9.65,8,0.0 +16562,10,31,17,0.0 +16562,33,2.5,45,0.0 +16562,38,263.5,37,0.0 +16562,34,14,38,0.0 +16562,5,21.35,1,0.0 +16562,35,18,33,0.0 +16562,74,10,36,0.0 +16562,65,21.05,4,0.0 +16562,76,18,22,0.0 +16562,28,45.6,36,0.0 +16562,37,26,27,0.0 +16562,44,19.45,2,0.0 +16562,17,39,34,0.0 +16562,56,38,15,0.0 +16562,58,13.25,16,0.0 +16562,8,40,42,0.0 +16562,67,14,38,0.0 +16562,13,6,6,0.0 +16562,51,53,3,0.0 +16562,70,15,10,0.0 +16562,72,34.8,34,0.0 +16562,39,18,38,0.0 +16562,12,38,25,0.0 +16562,73,15,16,0.0 +16562,27,43.9,18,0.0 +16562,40,18.4,8,0.0 +16562,4,22,4,0.0 +16562,18,62.5,34,0.0 +16562,20,81,31,0.0 +16562,77,13,9,0.0 +16562,1,18,32,0.0 +16562,16,17.45,13,0.0 +16562,23,9,40,0.0 +16562,22,21,13,0.0 +16562,49,20,48,0.0 +16562,7,30,48,0.0 +16562,30,25.89,14,0.0 +16562,32,32,31,0.0 +16562,25,14,7,0.0 +16562,66,17,42,0.0 +16562,6,25,27,0.0 +16562,11,21,13,0.0 +16562,69,36,38,0.0 +16562,46,12,28,0.0 +16562,36,19,4,0.0 +16562,42,14,49,0.0 +16562,47,9.5,48,0.0 +16562,9,97,10,0.0 +16562,24,4.5,49,0.0 +16562,45,9.5,26,0.0 +16562,57,19.5,35,0.0 +16562,48,12.75,46,0.0 +16562,26,31.23,8,0.0 +16562,53,32.8,36,0.0 +16562,62,49.3,44,0.0 +16562,64,33.25,26,0.0 +16562,60,34,44,0.0 +16562,3,10,21,0.0 +16562,29,123.79,33,0.0 +16562,21,10,31,0.0 +16562,43,46,28,0.0 +16562,14,23.25,47,0.0 +16562,55,24,43,0.0 +16562,50,16.25,43,0.0 +16562,54,7.45,11,0.0 +16562,71,21.5,49,0.0 +16562,75,7.75,19,0.0 +16562,19,9.2,30,0.0 +16562,68,12.5,45,0.0 +16562,59,55,12,0.0 +16562,61,28.5,4,0.0 +16562,2,19,17,0.0 +16562,63,43.9,1,0.0 +16562,31,12.5,37,0.0 +16562,52,7,35,0.0 +16563,46,12,33,0.0 +16563,77,13,43,0.0 +16563,17,39,27,0.0 +16563,31,12.5,21,0.0 +16563,30,25.89,10,0.0 +16563,43,46,22,0.0 +16563,6,25,28,0.0 +16563,61,28.5,17,0.0 +16563,12,38,49,0.0 +16563,55,24,11,0.0 +16563,44,19.45,5,0.0 +16563,14,23.25,26,0.0 +16563,1,18,38,0.0 +16563,69,36,28,0.0 +16563,29,123.79,30,0.0 +16563,2,19,12,0.0 +16563,13,6,12,0.0 +16563,9,97,43,0.0 +16563,71,21.5,5,0.0 +16563,67,14,18,0.0 +16563,3,10,25,0.0 +16563,37,26,9,0.0 +16563,49,20,16,0.0 +16563,64,33.25,19,0.0 +16563,50,16.25,43,0.0 +16563,20,81,32,0.0 +16563,40,18.4,27,0.0 +16563,4,22,48,0.0 +16563,41,9.65,31,0.0 +16563,7,30,9,0.0 +16563,16,17.45,32,0.0 +16563,5,21.35,22,0.0 +16563,63,43.9,2,0.0 +16563,35,18,48,0.0 +16563,26,31.23,38,0.0 +16563,62,49.3,17,0.0 +16563,21,10,23,0.0 +16563,58,13.25,20,0.0 +16563,36,19,11,0.0 +16563,48,12.75,40,0.0 +16563,53,32.8,3,0.0 +16563,33,2.5,14,0.0 +16563,25,14,45,0.0 +16563,19,9.2,28,0.0 +16563,57,19.5,23,0.0 +16563,56,38,33,0.0 +16563,70,15,2,0.0 +16563,74,10,40,0.0 +16563,15,15.5,21,0.0 +16563,76,18,47,0.0 +16563,60,34,23,0.0 +16563,23,9,6,0.0 +16563,39,18,30,0.0 +16563,22,21,39,0.0 +16563,27,43.9,1,0.0 +16563,52,7,27,0.0 +16563,34,14,38,0.0 +16563,59,55,14,0.0 +16563,73,15,34,0.0 +16563,8,40,2,0.0 +16563,11,21,17,0.0 +16563,18,62.5,3,0.0 +16563,66,17,3,0.0 +16563,54,7.45,43,0.0 +16563,42,14,48,0.0 +16563,68,12.5,34,0.0 +16563,28,45.6,1,0.0 +16563,65,21.05,5,0.0 +16563,47,9.5,17,0.0 +16563,32,32,35,0.0 +16564,59,55,36,0.0 +16564,67,14,5,0.0 +16564,20,81,2,0.0 +16564,8,40,11,0.0 +16564,57,19.5,2,0.0 +16564,29,123.79,5,0.0 +16564,52,7,34,0.0 +16564,9,97,39,0.0 +16564,51,53,49,0.0 +16564,21,10,23,0.0 +16564,61,28.5,6,0.0 +16564,49,20,20,0.0 +16564,17,39,33,0.0 +16564,33,2.5,34,0.0 +16564,45,9.5,6,0.0 +16564,2,19,13,0.0 +16564,72,34.8,37,0.0 +16564,43,46,31,0.0 +16564,38,263.5,4,0.0 +16564,13,6,47,0.0 +16564,63,43.9,13,0.0 +16564,3,10,40,0.0 +16564,53,32.8,18,0.0 +16564,46,12,5,0.0 +16564,58,13.25,15,0.0 +16564,73,15,41,0.0 +16564,30,25.89,49,0.0 +16564,15,15.5,12,0.0 +16564,77,13,46,0.0 +16564,10,31,5,0.0 +16564,39,18,10,0.0 +16564,34,14,16,0.0 +16564,65,21.05,10,0.0 +16564,26,31.23,13,0.0 +16564,66,17,33,0.0 +16564,44,19.45,10,0.0 +16564,70,15,6,0.0 +16564,31,12.5,3,0.0 +16564,68,12.5,26,0.0 +16564,69,36,8,0.0 +16564,71,21.5,17,0.0 +16564,64,33.25,33,0.0 +16564,4,22,36,0.0 +16564,36,19,29,0.0 +16564,55,24,28,0.0 +16564,40,18.4,10,0.0 +16564,6,25,5,0.0 +16564,16,17.45,35,0.0 +16564,25,14,31,0.0 +16564,28,45.6,35,0.0 +16564,62,49.3,46,0.0 +16564,7,30,47,0.0 +16564,11,21,16,0.0 +16564,14,23.25,38,0.0 +16564,41,9.65,9,0.0 +16564,54,7.45,9,0.0 +16564,27,43.9,29,0.0 +16564,60,34,2,0.0 +16564,74,10,32,0.0 +16564,19,9.2,24,0.0 +16564,35,18,22,0.0 +16564,56,38,29,0.0 +16565,35,18,19,0.0 +16565,39,18,39,0.0 +16565,61,28.5,8,0.0 +16565,72,34.8,11,0.0 +16565,30,25.89,10,0.0 +16565,76,18,46,0.0 +16565,3,10,20,0.0 +16565,55,24,3,0.0 +16565,6,25,19,0.0 +16565,74,10,39,0.0 +16565,11,21,41,0.0 +16565,7,30,9,0.0 +16565,53,32.8,16,0.0 +16565,33,2.5,18,0.0 +16565,64,33.25,44,0.0 +16565,20,81,29,0.0 +16565,44,19.45,30,0.0 +16565,66,17,40,0.0 +16565,19,9.2,18,0.0 +16565,58,13.25,18,0.0 +16565,57,19.5,18,0.0 +16565,73,15,8,0.0 +16565,31,12.5,20,0.0 +16565,77,13,14,0.0 +16565,65,21.05,28,0.0 +16565,8,40,8,0.0 +16565,43,46,48,0.0 +16565,52,7,21,0.0 +16565,69,36,50,0.0 +16565,75,7.75,25,0.0 +16565,70,15,23,0.0 +16565,15,15.5,20,0.0 +16565,67,14,26,0.0 +16565,38,263.5,9,0.0 +16565,14,23.25,37,0.0 +16565,2,19,44,0.0 +16565,26,31.23,17,0.0 +16565,42,14,35,0.0 +16565,56,38,32,0.0 +16565,23,9,40,0.0 +16565,45,9.5,43,0.0 +16565,63,43.9,6,0.0 +16565,4,22,46,0.0 +16565,46,12,25,0.0 +16565,51,53,39,0.0 +16565,27,43.9,17,0.0 +16565,40,18.4,29,0.0 +16565,36,19,36,0.0 +16565,47,9.5,48,0.0 +16565,68,12.5,13,0.0 +16565,32,32,10,0.0 +16565,21,10,17,0.0 +16565,41,9.65,34,0.0 +16565,17,39,14,0.0 +16566,2,19,30,0.0 +16566,59,55,48,0.0 +16566,44,19.45,15,0.0 +16566,3,10,15,0.0 +16566,32,32,43,0.0 +16566,38,263.5,45,0.0 +16566,72,34.8,26,0.0 +16566,74,10,49,0.0 +16567,51,53,45,0.0 +16567,6,25,27,0.0 +16567,50,16.25,13,0.0 +16567,25,14,28,0.0 +16567,27,43.9,21,0.0 +16567,75,7.75,18,0.0 +16567,70,15,6,0.0 +16567,4,22,7,0.0 +16567,22,21,9,0.0 +16567,11,21,35,0.0 +16567,72,34.8,10,0.0 +16567,42,14,19,0.0 +16567,69,36,10,0.0 +16567,44,19.45,46,0.0 +16567,33,2.5,41,0.0 +16567,40,18.4,18,0.0 +16567,66,17,23,0.0 +16567,31,12.5,5,0.0 +16567,55,24,47,0.0 +16567,58,13.25,44,0.0 +16567,12,38,47,0.0 +16567,30,25.89,5,0.0 +16567,14,23.25,39,0.0 +16567,7,30,4,0.0 +16567,53,32.8,26,0.0 +16567,64,33.25,29,0.0 +16567,17,39,3,0.0 +16567,43,46,6,0.0 +16567,34,14,6,0.0 +16567,47,9.5,42,0.0 +16567,54,7.45,41,0.0 +16567,73,15,18,0.0 +16567,10,31,49,0.0 +16567,65,21.05,10,0.0 +16567,36,19,43,0.0 +16567,49,20,30,0.0 +16567,76,18,37,0.0 +16567,62,49.3,11,0.0 +16567,56,38,9,0.0 +16567,37,26,1,0.0 +16567,21,10,19,0.0 +16568,1,18,11,0.0 +16568,73,15,4,0.0 +16568,17,39,38,0.0 +16568,27,43.9,11,0.0 +16568,59,55,22,0.0 +16568,55,24,18,0.0 +16568,16,17.45,15,0.0 +16568,8,40,23,0.0 +16569,16,17.45,49,0.0 +16569,63,43.9,44,0.0 +16569,40,18.4,42,0.0 +16569,9,97,24,0.0 +16569,57,19.5,9,0.0 +16569,18,62.5,36,0.0 +16569,70,15,9,0.0 +16569,32,32,12,0.0 +16569,38,263.5,7,0.0 +16569,67,14,49,0.0 +16569,13,6,25,0.0 +16569,24,4.5,10,0.0 +16569,60,34,10,0.0 +16569,75,7.75,46,0.0 +16569,19,9.2,30,0.0 +16569,47,9.5,36,0.0 +16569,27,43.9,40,0.0 +16569,71,21.5,44,0.0 +16569,17,39,14,0.0 +16569,20,81,7,0.0 +16569,45,9.5,34,0.0 +16569,55,24,43,0.0 +16569,61,28.5,35,0.0 +16569,44,19.45,35,0.0 +16569,50,16.25,29,0.0 +16569,66,17,19,0.0 +16569,77,13,23,0.0 +16569,46,12,16,0.0 +16569,30,25.89,37,0.0 +16569,21,10,37,0.0 +16569,52,7,8,0.0 +16569,1,18,34,0.0 +16569,68,12.5,2,0.0 +16569,41,9.65,46,0.0 +16569,15,15.5,24,0.0 +16569,59,55,42,0.0 +16569,31,12.5,49,0.0 +16569,8,40,2,0.0 +16569,10,31,10,0.0 +16569,11,21,27,0.0 +16569,7,30,42,0.0 +16569,64,33.25,3,0.0 +16569,4,22,11,0.0 +16569,48,12.75,41,0.0 +16569,2,19,21,0.0 +16569,34,14,30,0.0 +16569,22,21,3,0.0 +16569,5,21.35,17,0.0 +16570,19,9.2,15,0.0 +16570,27,43.9,28,0.0 +16570,39,18,39,0.0 +16570,62,49.3,22,0.0 +16570,64,33.25,3,0.0 +16570,74,10,16,0.0 +16570,34,14,36,0.0 +16570,77,13,30,0.0 +16570,60,34,24,0.0 +16570,18,62.5,6,0.0 +16570,13,6,6,0.0 +16570,24,4.5,34,0.0 +16570,58,13.25,10,0.0 +16570,28,45.6,10,0.0 +16570,7,30,5,0.0 +16570,57,19.5,37,0.0 +16570,35,18,5,0.0 +16570,42,14,1,0.0 +16570,46,12,45,0.0 +16570,23,9,7,0.0 +16570,70,15,28,0.0 +16570,52,7,12,0.0 +16570,31,12.5,48,0.0 +16570,8,40,39,0.0 +16570,69,36,47,0.0 +16570,44,19.45,11,0.0 +16570,21,10,3,0.0 +16570,61,28.5,17,0.0 +16570,10,31,48,0.0 +16570,75,7.75,9,0.0 +16570,51,53,36,0.0 +16570,11,21,29,0.0 +16570,72,34.8,15,0.0 +16570,37,26,26,0.0 +16570,16,17.45,12,0.0 +16570,9,97,11,0.0 +16570,71,21.5,27,0.0 +16570,26,31.23,5,0.0 +16570,67,14,17,0.0 +16570,68,12.5,49,0.0 +16570,45,9.5,13,0.0 +16570,33,2.5,37,0.0 +16570,15,15.5,16,0.0 +16570,59,55,50,0.0 +16570,14,23.25,16,0.0 +16570,40,18.4,6,0.0 +16570,30,25.89,42,0.0 +16570,53,32.8,2,0.0 +16570,54,7.45,12,0.0 +16570,41,9.65,30,0.0 +16570,65,21.05,6,0.0 +16570,49,20,9,0.0 +16570,2,19,12,0.0 +16570,12,38,31,0.0 +16570,36,19,44,0.0 +16570,47,9.5,24,0.0 +16570,1,18,45,0.0 +16571,61,28.5,23,0.0 +16571,3,10,24,0.0 +16571,16,17.45,4,0.0 +16571,50,16.25,32,0.0 +16571,42,14,25,0.0 +16571,41,9.65,45,0.0 +16571,52,7,13,0.0 +16571,23,9,3,0.0 +16571,4,22,16,0.0 +16571,28,45.6,49,0.0 +16571,8,40,41,0.0 +16571,18,62.5,25,0.0 +16571,74,10,4,0.0 +16571,2,19,50,0.0 +16571,62,49.3,10,0.0 +16571,72,34.8,33,0.0 +16571,76,18,3,0.0 +16571,56,38,6,0.0 +16571,22,21,18,0.0 +16571,47,9.5,16,0.0 +16571,64,33.25,49,0.0 +16572,21,10,3,0.0 +16572,77,13,11,0.0 +16572,6,25,46,0.0 +16572,31,12.5,45,0.0 +16572,42,14,3,0.0 +16572,68,12.5,7,0.0 +16572,57,19.5,42,0.0 +16572,51,53,45,0.0 +16572,43,46,18,0.0 +16572,28,45.6,4,0.0 +16572,75,7.75,31,0.0 +16572,20,81,41,0.0 +16572,66,17,8,0.0 +16572,46,12,6,0.0 +16572,19,9.2,42,0.0 +16572,2,19,33,0.0 +16572,23,9,27,0.0 +16572,41,9.65,22,0.0 +16572,4,22,49,0.0 +16572,72,34.8,5,0.0 +16572,9,97,50,0.0 +16572,5,21.35,13,0.0 +16572,32,32,29,0.0 +16572,16,17.45,30,0.0 +16572,7,30,44,0.0 +16572,44,19.45,32,0.0 +16572,59,55,50,0.0 +16572,76,18,24,0.0 +16572,17,39,10,0.0 +16572,67,14,44,0.0 +16572,73,15,32,0.0 +16572,36,19,20,0.0 +16572,55,24,11,0.0 +16572,12,38,44,0.0 +16572,69,36,23,0.0 +16572,35,18,17,0.0 +16572,34,14,49,0.0 +16572,26,31.23,40,0.0 +16572,1,18,25,0.0 +16572,3,10,21,0.0 +16572,22,21,17,0.0 +16572,52,7,37,0.0 +16572,64,33.25,37,0.0 +16572,11,21,24,0.0 +16572,14,23.25,2,0.0 +16573,52,7,4,0.0 +16573,2,19,16,0.0 +16573,61,28.5,11,0.0 +16573,8,40,6,0.0 +16573,33,2.5,1,0.0 +16573,24,4.5,11,0.0 +16573,37,26,40,0.0 +16573,64,33.25,28,0.0 +16573,19,9.2,1,0.0 +16573,21,10,6,0.0 +16573,39,18,27,0.0 +16573,14,23.25,44,0.0 +16573,12,38,20,0.0 +16573,9,97,34,0.0 +16573,69,36,2,0.0 +16573,59,55,49,0.0 +16573,29,123.79,19,0.0 +16573,76,18,21,0.0 +16573,10,31,20,0.0 +16573,60,34,23,0.0 +16573,23,9,30,0.0 +16573,15,15.5,29,0.0 +16573,63,43.9,35,0.0 +16573,57,19.5,5,0.0 +16573,44,19.45,34,0.0 +16573,25,14,34,0.0 +16573,42,14,38,0.0 +16573,66,17,2,0.0 +16573,7,30,48,0.0 +16573,77,13,24,0.0 +16573,72,34.8,8,0.0 +16573,34,14,29,0.0 +16573,1,18,45,0.0 +16573,62,49.3,7,0.0 +16573,43,46,37,0.0 +16573,4,22,21,0.0 +16574,21,10,27,0.0 +16574,63,43.9,35,0.0 +16574,33,2.5,44,0.0 +16574,68,12.5,14,0.0 +16574,2,19,40,0.0 +16574,6,25,41,0.0 +16574,22,21,31,0.0 +16574,51,53,25,0.0 +16574,62,49.3,42,0.0 +16574,74,10,25,0.0 +16574,16,17.45,7,0.0 +16574,64,33.25,13,0.0 +16574,50,16.25,1,0.0 +16574,65,21.05,6,0.0 +16574,76,18,33,0.0 +16574,17,39,23,0.0 +16574,71,21.5,44,0.0 +16574,70,15,13,0.0 +16574,44,19.45,32,0.0 +16574,59,55,30,0.0 +16574,31,12.5,33,0.0 +16574,47,9.5,16,0.0 +16574,7,30,12,0.0 +16574,40,18.4,23,0.0 +16574,61,28.5,39,0.0 +16574,26,31.23,48,0.0 +16574,34,14,15,0.0 +16574,72,34.8,42,0.0 +16574,75,7.75,40,0.0 +16574,69,36,13,0.0 +16574,11,21,16,0.0 +16574,39,18,29,0.0 +16575,26,31.23,17,0.0 +16576,6,25,46,0.0 +16576,50,16.25,4,0.0 +16576,31,12.5,17,0.0 +16576,30,25.89,20,0.0 +16576,3,10,11,0.0 +16576,42,14,10,0.0 +16576,77,13,11,0.0 +16576,64,33.25,41,0.0 +16576,48,12.75,13,0.0 +16576,60,34,24,0.0 +16576,16,17.45,36,0.0 +16576,9,97,8,0.0 +16576,75,7.75,33,0.0 +16576,66,17,27,0.0 +16576,18,62.5,32,0.0 +16576,28,45.6,48,0.0 +16576,53,32.8,27,0.0 +16576,29,123.79,40,0.0 +16576,20,81,19,0.0 +16576,24,4.5,1,0.0 +16576,76,18,11,0.0 +16576,33,2.5,32,0.0 +16576,37,26,32,0.0 +16576,73,15,18,0.0 +16576,38,263.5,34,0.0 +16576,45,9.5,45,0.0 +16576,7,30,12,0.0 +16576,11,21,19,0.0 +16576,32,32,11,0.0 +16576,1,18,44,0.0 +16576,56,38,38,0.0 +16576,4,22,33,0.0 +16576,34,14,41,0.0 +16576,40,18.4,42,0.0 +16576,2,19,37,0.0 +16576,70,15,26,0.0 +16576,57,19.5,43,0.0 +16577,27,43.9,41,0.0 +16577,16,17.45,13,0.0 +16577,59,55,40,0.0 +16577,72,34.8,35,0.0 +16577,17,39,8,0.0 +16577,11,21,38,0.0 +16577,39,18,50,0.0 +16577,25,14,9,0.0 +16577,40,18.4,47,0.0 +16577,73,15,16,0.0 +16577,41,9.65,11,0.0 +16577,55,24,37,0.0 +16577,68,12.5,40,0.0 +16577,61,28.5,3,0.0 +16577,34,14,35,0.0 +16577,44,19.45,20,0.0 +16577,37,26,34,0.0 +16577,49,20,9,0.0 +16577,4,22,9,0.0 +16577,69,36,20,0.0 +16577,48,12.75,9,0.0 +16577,60,34,3,0.0 +16577,22,21,50,0.0 +16577,29,123.79,25,0.0 +16577,67,14,35,0.0 +16577,65,21.05,27,0.0 +16577,24,4.5,42,0.0 +16577,18,62.5,24,0.0 +16577,9,97,32,0.0 +16577,21,10,36,0.0 +16577,52,7,18,0.0 +16577,76,18,15,0.0 +16577,63,43.9,44,0.0 +16577,31,12.5,1,0.0 +16577,8,40,46,0.0 +16577,45,9.5,16,0.0 +16577,10,31,24,0.0 +16577,46,12,43,0.0 +16577,74,10,11,0.0 +16578,22,21,17,0.0 +16578,39,18,45,0.0 +16578,11,21,8,0.0 +16578,35,18,3,0.0 +16578,19,9.2,24,0.0 +16578,4,22,14,0.0 +16578,3,10,50,0.0 +16578,42,14,29,0.0 +16578,75,7.75,2,0.0 +16578,66,17,40,0.0 +16578,13,6,42,0.0 +16578,24,4.5,21,0.0 +16578,10,31,21,0.0 +16578,55,24,15,0.0 +16578,73,15,29,0.0 +16578,32,32,49,0.0 +16579,39,18,1,0.0 +16579,74,10,35,0.0 +16579,68,12.5,45,0.0 +16579,45,9.5,9,0.0 +16579,50,16.25,13,0.0 +16579,24,4.5,26,0.0 +16579,54,7.45,13,0.0 +16579,14,23.25,12,0.0 +16579,18,62.5,19,0.0 +16579,8,40,3,0.0 +16579,26,31.23,42,0.0 +16579,75,7.75,16,0.0 +16579,70,15,28,0.0 +16579,41,9.65,9,0.0 +16579,59,55,7,0.0 +16579,55,24,11,0.0 +16579,32,32,22,0.0 +16579,3,10,29,0.0 +16579,35,18,27,0.0 +16579,57,19.5,10,0.0 +16579,2,19,28,0.0 +16579,66,17,46,0.0 +16579,71,21.5,27,0.0 +16579,73,15,10,0.0 +16579,46,12,34,0.0 +16579,49,20,46,0.0 +16579,64,33.25,25,0.0 +16579,6,25,35,0.0 +16579,61,28.5,44,0.0 +16579,53,32.8,6,0.0 +16579,29,123.79,36,0.0 +16579,37,26,6,0.0 +16579,10,31,45,0.0 +16579,11,21,22,0.0 +16579,69,36,44,0.0 +16579,19,9.2,19,0.0 +16579,77,13,40,0.0 +16579,30,25.89,3,0.0 +16579,42,14,29,0.0 +16579,52,7,35,0.0 +16579,56,38,11,0.0 +16579,4,22,17,0.0 +16579,67,14,26,0.0 +16579,47,9.5,14,0.0 +16579,33,2.5,33,0.0 +16579,48,12.75,6,0.0 +16579,22,21,49,0.0 +16579,1,18,30,0.0 +16579,34,14,26,0.0 +16579,13,6,48,0.0 +16579,16,17.45,47,0.0 +16579,27,43.9,34,0.0 +16579,58,13.25,40,0.0 +16579,51,53,9,0.0 +16579,7,30,12,0.0 +16579,21,10,44,0.0 +16579,31,12.5,23,0.0 +16579,25,14,31,0.0 +16579,15,15.5,10,0.0 +16579,72,34.8,3,0.0 +16579,62,49.3,37,0.0 +16579,36,19,1,0.0 +16579,5,21.35,14,0.0 +16579,44,19.45,32,0.0 +16579,20,81,38,0.0 +16579,65,21.05,8,0.0 +16579,60,34,32,0.0 +16579,43,46,25,0.0 +16579,63,43.9,39,0.0 +16579,40,18.4,6,0.0 +16579,28,45.6,5,0.0 +16579,12,38,13,0.0 +16579,9,97,43,0.0 +16579,38,263.5,3,0.0 +16580,32,32,15,0.0 +16580,57,19.5,26,0.0 +16580,23,9,21,0.0 +16580,67,14,8,0.0 +16580,74,10,40,0.0 +16580,35,18,7,0.0 +16580,64,33.25,1,0.0 +16580,16,17.45,31,0.0 +16580,48,12.75,40,0.0 +16580,71,21.5,8,0.0 +16580,11,21,18,0.0 +16580,34,14,17,0.0 +16580,25,14,24,0.0 +16580,53,32.8,46,0.0 +16580,41,9.65,41,0.0 +16580,24,4.5,29,0.0 +16580,49,20,2,0.0 +16580,39,18,22,0.0 +16580,5,21.35,32,0.0 +16580,50,16.25,28,0.0 +16580,27,43.9,20,0.0 +16580,29,123.79,1,0.0 +16580,18,62.5,23,0.0 +16580,51,53,30,0.0 +16580,65,21.05,17,0.0 +16580,13,6,7,0.0 +16580,21,10,19,0.0 +16580,22,21,26,0.0 +16580,10,31,49,0.0 +16580,76,18,11,0.0 +16580,42,14,24,0.0 +16580,26,31.23,16,0.0 +16580,15,15.5,10,0.0 +16580,2,19,35,0.0 +16580,43,46,6,0.0 +16580,19,9.2,29,0.0 +16580,40,18.4,50,0.0 +16580,7,30,48,0.0 +16580,6,25,2,0.0 +16580,52,7,7,0.0 +16580,69,36,4,0.0 +16580,45,9.5,5,0.0 +16580,72,34.8,42,0.0 +16580,77,13,11,0.0 +16580,60,34,47,0.0 +16580,44,19.45,18,0.0 +16580,30,25.89,11,0.0 +16580,47,9.5,41,0.0 +16580,14,23.25,18,0.0 +16580,17,39,34,0.0 +16580,33,2.5,36,0.0 +16580,36,19,22,0.0 +16580,3,10,4,0.0 +16580,59,55,4,0.0 +16580,1,18,7,0.0 +16580,75,7.75,20,0.0 +16580,70,15,26,0.0 +16580,8,40,43,0.0 +16581,77,13,5,0.0 +16581,57,19.5,32,0.0 +16581,48,12.75,6,0.0 +16581,74,10,24,0.0 +16581,75,7.75,11,0.0 +16581,56,38,45,0.0 +16581,63,43.9,5,0.0 +16581,69,36,39,0.0 +16581,50,16.25,1,0.0 +16581,36,19,6,0.0 +16581,4,22,29,0.0 +16581,2,19,29,0.0 +16581,73,15,19,0.0 +16581,44,19.45,20,0.0 +16581,40,18.4,3,0.0 +16581,72,34.8,2,0.0 +16581,13,6,19,0.0 +16581,24,4.5,4,0.0 +16581,15,15.5,7,0.0 +16581,64,33.25,6,0.0 +16581,37,26,46,0.0 +16581,8,40,13,0.0 +16581,3,10,44,0.0 +16581,11,21,42,0.0 +16581,67,14,20,0.0 +16581,53,32.8,49,0.0 +16581,31,12.5,31,0.0 +16581,43,46,21,0.0 +16581,60,34,42,0.0 +16581,42,14,30,0.0 +16581,45,9.5,13,0.0 +16581,10,31,50,0.0 +16582,71,21.5,6,0.0 +16582,67,14,19,0.0 +16582,77,13,50,0.0 +16582,20,81,21,0.0 +16582,40,18.4,13,0.0 +16582,75,7.75,37,0.0 +16582,4,22,33,0.0 +16582,62,49.3,31,0.0 +16582,59,55,39,0.0 +16582,64,33.25,26,0.0 +16582,41,9.65,18,0.0 +16582,6,25,7,0.0 +16582,58,13.25,50,0.0 +16582,57,19.5,29,0.0 +16582,42,14,20,0.0 +16582,46,12,48,0.0 +16582,2,19,18,0.0 +16582,15,15.5,28,0.0 +16582,10,31,45,0.0 +16582,48,12.75,30,0.0 +16582,29,123.79,27,0.0 +16582,39,18,39,0.0 +16582,76,18,22,0.0 +16582,25,14,42,0.0 +16582,19,9.2,13,0.0 +16582,69,36,15,0.0 +16582,27,43.9,14,0.0 +16582,37,26,49,0.0 +16582,5,21.35,14,0.0 +16582,44,19.45,7,0.0 +16582,55,24,7,0.0 +16582,12,38,43,0.0 +16582,70,15,4,0.0 +16582,31,12.5,13,0.0 +16582,1,18,50,0.0 +16582,16,17.45,2,0.0 +16582,65,21.05,29,0.0 +16582,30,25.89,50,0.0 +16583,20,81,34,0.0 +16583,56,38,13,0.0 +16583,54,7.45,9,0.0 +16583,53,32.8,34,0.0 +16583,14,23.25,49,0.0 +16583,58,13.25,46,0.0 +16583,16,17.45,15,0.0 +16583,60,34,36,0.0 +16583,57,19.5,45,0.0 +16583,40,18.4,46,0.0 +16583,8,40,20,0.0 +16583,33,2.5,20,0.0 +16583,26,31.23,15,0.0 +16583,23,9,19,0.0 +16583,15,15.5,23,0.0 +16583,34,14,47,0.0 +16583,72,34.8,10,0.0 +16583,3,10,30,0.0 +16583,44,19.45,20,0.0 +16583,46,12,42,0.0 +16583,38,263.5,5,0.0 +16583,74,10,22,0.0 +16583,31,12.5,27,0.0 +16583,6,25,37,0.0 +16583,37,26,48,0.0 +16583,62,49.3,1,0.0 +16583,19,9.2,12,0.0 +16584,69,36,8,0.0 +16584,10,31,43,0.0 +16584,29,123.79,41,0.0 +16584,40,18.4,8,0.0 +16584,25,14,47,0.0 +16584,36,19,5,0.0 +16584,39,18,45,0.0 +16584,73,15,18,0.0 +16584,52,7,14,0.0 +16584,71,21.5,13,0.0 +16584,16,17.45,30,0.0 +16584,74,10,9,0.0 +16584,15,15.5,5,0.0 +16584,53,32.8,16,0.0 +16584,9,97,40,0.0 +16584,60,34,17,0.0 +16584,70,15,45,0.0 +16584,45,9.5,41,0.0 +16584,4,22,36,0.0 +16584,59,55,39,0.0 +16584,20,81,1,0.0 +16584,38,263.5,14,0.0 +16584,24,4.5,16,0.0 +16584,35,18,7,0.0 +16584,11,21,40,0.0 +16584,46,12,19,0.0 +16584,17,39,47,0.0 +16584,50,16.25,1,0.0 +16584,26,31.23,24,0.0 +16584,34,14,21,0.0 +16584,42,14,26,0.0 +16584,28,45.6,18,0.0 +16584,33,2.5,16,0.0 +16584,30,25.89,36,0.0 +16584,66,17,30,0.0 +16584,1,18,48,0.0 +16584,41,9.65,15,0.0 +16584,14,23.25,44,0.0 +16585,37,26,22,0.0 +16585,52,7,7,0.0 +16585,5,21.35,7,0.0 +16585,29,123.79,45,0.0 +16585,38,263.5,8,0.0 +16585,41,9.65,22,0.0 +16585,18,62.5,35,0.0 +16585,49,20,17,0.0 +16585,28,45.6,40,0.0 +16585,75,7.75,41,0.0 +16585,23,9,29,0.0 +16585,63,43.9,35,0.0 +16585,43,46,36,0.0 +16585,44,19.45,18,0.0 +16585,19,9.2,30,0.0 +16585,14,23.25,41,0.0 +16585,20,81,48,0.0 +16585,10,31,19,0.0 +16585,36,19,28,0.0 +16585,68,12.5,8,0.0 +16585,66,17,39,0.0 +16585,34,14,6,0.0 +16585,26,31.23,36,0.0 +16585,21,10,49,0.0 +16585,32,32,27,0.0 +16585,11,21,48,0.0 +16585,50,16.25,18,0.0 +16585,27,43.9,8,0.0 +16585,6,25,35,0.0 +16585,56,38,14,0.0 +16585,15,15.5,26,0.0 +16585,61,28.5,35,0.0 +16585,2,19,10,0.0 +16585,77,13,22,0.0 +16585,76,18,15,0.0 +16585,40,18.4,29,0.0 +16585,16,17.45,26,0.0 +16585,62,49.3,8,0.0 +16585,35,18,23,0.0 +16585,17,39,6,0.0 +16585,46,12,27,0.0 +16585,42,14,35,0.0 +16585,33,2.5,9,0.0 +16586,34,14,38,0.0 +16586,73,15,23,0.0 +16586,4,22,16,0.0 +16586,76,18,8,0.0 +16586,29,123.79,49,0.0 +16586,66,17,36,0.0 +16586,14,23.25,39,0.0 +16586,27,43.9,40,0.0 +16586,17,39,29,0.0 +16586,59,55,42,0.0 +16586,22,21,39,0.0 +16586,11,21,11,0.0 +16586,45,9.5,38,0.0 +16586,37,26,1,0.0 +16586,33,2.5,30,0.0 +16586,16,17.45,3,0.0 +16586,65,21.05,46,0.0 +16586,12,38,30,0.0 +16586,39,18,46,0.0 +16586,62,49.3,32,0.0 +16586,58,13.25,17,0.0 +16586,3,10,3,0.0 +16586,55,24,39,0.0 +16586,32,32,9,0.0 +16586,38,263.5,19,0.0 +16586,1,18,44,0.0 +16586,50,16.25,1,0.0 +16586,77,13,20,0.0 +16586,51,53,5,0.0 +16586,13,6,22,0.0 +16586,40,18.4,13,0.0 +16586,63,43.9,25,0.0 +16586,26,31.23,2,0.0 +16586,60,34,31,0.0 +16586,21,10,39,0.0 +16586,43,46,27,0.0 +16586,28,45.6,14,0.0 +16586,56,38,7,0.0 +16587,17,39,14,0.0 +16587,73,15,36,0.0 +16587,14,23.25,17,0.0 +16587,32,32,16,0.0 +16587,51,53,23,0.0 +16587,71,21.5,44,0.0 +16587,39,18,7,0.0 +16587,25,14,40,0.0 +16587,63,43.9,3,0.0 +16587,48,12.75,24,0.0 +16587,12,38,42,0.0 +16587,15,15.5,26,0.0 +16587,76,18,14,0.0 +16587,68,12.5,15,0.0 +16587,10,31,26,0.0 +16587,57,19.5,12,0.0 +16587,28,45.6,5,0.0 +16587,5,21.35,23,0.0 +16587,11,21,37,0.0 +16587,65,21.05,23,0.0 +16587,13,6,9,0.0 +16587,41,9.65,1,0.0 +16587,16,17.45,3,0.0 +16587,45,9.5,41,0.0 +16587,35,18,3,0.0 +16587,24,4.5,23,0.0 +16587,8,40,22,0.0 +16587,40,18.4,27,0.0 +16587,75,7.75,22,0.0 +16587,23,9,15,0.0 +16587,60,34,14,0.0 +16587,31,12.5,7,0.0 +16587,74,10,4,0.0 +16587,4,22,40,0.0 +16587,56,38,3,0.0 +16587,34,14,5,0.0 +16587,67,14,24,0.0 +16587,55,24,1,0.0 +16587,66,17,7,0.0 +16587,18,62.5,26,0.0 +16587,7,30,37,0.0 +16587,62,49.3,15,0.0 +16587,64,33.25,19,0.0 +16587,61,28.5,41,0.0 +16587,69,36,13,0.0 +16587,9,97,14,0.0 +16587,46,12,15,0.0 +16587,52,7,5,0.0 +16587,42,14,47,0.0 +16587,53,32.8,50,0.0 +16587,29,123.79,43,0.0 +16587,50,16.25,48,0.0 +16587,26,31.23,11,0.0 +16587,20,81,11,0.0 +16587,72,34.8,39,0.0 +16587,38,263.5,31,0.0 +16587,2,19,25,0.0 +16587,49,20,12,0.0 +16587,21,10,49,0.0 +16587,1,18,16,0.0 +16587,27,43.9,36,0.0 +16587,54,7.45,43,0.0 +16587,22,21,11,0.0 +16587,19,9.2,34,0.0 +16587,47,9.5,1,0.0 +16587,77,13,10,0.0 +16588,58,13.25,45,0.0 +16588,34,14,5,0.0 +16588,16,17.45,45,0.0 +16588,74,10,27,0.0 +16588,28,45.6,39,0.0 +16588,72,34.8,45,0.0 +16588,71,21.5,12,0.0 +16588,44,19.45,19,0.0 +16588,20,81,46,0.0 +16588,49,20,49,0.0 +16588,68,12.5,1,0.0 +16588,13,6,11,0.0 +16588,61,28.5,46,0.0 +16588,11,21,48,0.0 +16588,64,33.25,40,0.0 +16588,10,31,43,0.0 +16588,77,13,24,0.0 +16588,46,12,22,0.0 +16588,14,23.25,28,0.0 +16588,56,38,1,0.0 +16588,37,26,27,0.0 +16588,1,18,34,0.0 +16588,65,21.05,28,0.0 +16588,55,24,24,0.0 +16588,75,7.75,1,0.0 +16589,66,17,10,0.0 +16589,2,19,10,0.0 +16589,20,81,3,0.0 +16589,55,24,32,0.0 +16589,29,123.79,38,0.0 +16589,3,10,50,0.0 +16589,33,2.5,8,0.0 +16589,61,28.5,28,0.0 +16589,42,14,36,0.0 +16589,63,43.9,44,0.0 +16589,56,38,9,0.0 +16589,41,9.65,3,0.0 +16589,26,31.23,4,0.0 +16589,49,20,6,0.0 +16589,24,4.5,46,0.0 +16589,31,12.5,8,0.0 +16589,77,13,21,0.0 +16590,53,32.8,44,0.0 +16590,29,123.79,40,0.0 +16590,17,39,26,0.0 +16590,66,17,30,0.0 +16590,25,14,2,0.0 +16590,11,21,29,0.0 +16590,41,9.65,1,0.0 +16590,39,18,38,0.0 +16590,61,28.5,1,0.0 +16590,45,9.5,50,0.0 +16590,27,43.9,47,0.0 +16590,76,18,25,0.0 +16590,13,6,48,0.0 +16590,65,21.05,42,0.0 +16590,20,81,14,0.0 +16590,33,2.5,16,0.0 +16590,54,7.45,31,0.0 +16590,2,19,22,0.0 +16590,6,25,44,0.0 +16590,67,14,44,0.0 +16590,73,15,43,0.0 +16590,50,16.25,43,0.0 +16590,31,12.5,44,0.0 +16590,38,263.5,8,0.0 +16590,58,13.25,24,0.0 +16590,70,15,23,0.0 +16590,1,18,27,0.0 +16590,51,53,25,0.0 +16590,63,43.9,15,0.0 +16590,34,14,9,0.0 +16590,56,38,12,0.0 +16590,7,30,4,0.0 +16590,44,19.45,7,0.0 +16590,71,21.5,35,0.0 +16590,10,31,44,0.0 +16590,16,17.45,18,0.0 +16590,62,49.3,37,0.0 +16590,19,9.2,19,0.0 +16590,48,12.75,25,0.0 +16590,14,23.25,31,0.0 +16590,74,10,15,0.0 +16590,49,20,21,0.0 +16590,32,32,44,0.0 +16590,75,7.75,49,0.0 +16590,64,33.25,40,0.0 +16590,37,26,17,0.0 +16590,8,40,50,0.0 +16590,40,18.4,47,0.0 +16590,5,21.35,14,0.0 +16590,60,34,17,0.0 +16590,22,21,8,0.0 +16590,15,15.5,44,0.0 +16590,55,24,50,0.0 +16590,12,38,18,0.0 +16591,33,2.5,34,0.0 +16591,52,7,13,0.0 +16591,12,38,11,0.0 +16591,50,16.25,19,0.0 +16591,1,18,46,0.0 +16591,46,12,11,0.0 +16591,66,17,25,0.0 +16591,22,21,18,0.0 +16591,63,43.9,35,0.0 +16591,67,14,35,0.0 +16591,71,21.5,49,0.0 +16591,2,19,23,0.0 +16591,57,19.5,43,0.0 +16591,9,97,29,0.0 +16591,21,10,37,0.0 +16591,76,18,9,0.0 +16591,56,38,6,0.0 +16591,77,13,3,0.0 +16591,17,39,25,0.0 +16591,18,62.5,19,0.0 +16591,8,40,41,0.0 +16591,74,10,45,0.0 +16591,28,45.6,46,0.0 +16591,13,6,19,0.0 +16592,10,31,23,0.0 +16592,55,24,6,0.0 +16592,1,18,10,0.0 +16592,15,15.5,22,0.0 +16592,47,9.5,17,0.0 +16592,75,7.75,43,0.0 +16592,52,7,10,0.0 +16592,6,25,43,0.0 +16592,65,21.05,17,0.0 +16592,64,33.25,7,0.0 +16592,13,6,6,0.0 +16592,28,45.6,47,0.0 +16592,51,53,1,0.0 +16592,70,15,4,0.0 +16592,42,14,49,0.0 +16592,34,14,6,0.0 +16592,59,55,41,0.0 +16592,74,10,32,0.0 +16592,49,20,3,0.0 +16592,38,263.5,21,0.0 +16592,58,13.25,42,0.0 +16592,37,26,34,0.0 +16592,46,12,49,0.0 +16592,76,18,19,0.0 +16592,16,17.45,2,0.0 +16592,14,23.25,44,0.0 +16592,60,34,44,0.0 +16592,22,21,43,0.0 +16592,62,49.3,4,0.0 +16592,26,31.23,26,0.0 +16592,40,18.4,26,0.0 +16592,12,38,7,0.0 +16592,73,15,44,0.0 +16592,36,19,39,0.0 +16592,77,13,39,0.0 +16592,45,9.5,13,0.0 +16592,69,36,19,0.0 +16592,61,28.5,36,0.0 +16592,43,46,25,0.0 +16592,72,34.8,15,0.0 +16592,23,9,36,0.0 +16592,54,7.45,12,0.0 +16592,7,30,48,0.0 +16592,4,22,24,0.0 +16592,50,16.25,30,0.0 +16592,31,12.5,36,0.0 +16592,71,21.5,30,0.0 +16592,33,2.5,31,0.0 +16592,29,123.79,13,0.0 +16592,57,19.5,15,0.0 +16592,18,62.5,8,0.0 +16592,27,43.9,10,0.0 +16592,41,9.65,1,0.0 +16592,44,19.45,33,0.0 +16592,56,38,17,0.0 +16592,32,32,10,0.0 +16592,11,21,46,0.0 +16592,9,97,19,0.0 +16593,57,19.5,21,0.0 +16593,50,16.25,47,0.0 +16593,54,7.45,29,0.0 +16593,43,46,32,0.0 +16593,15,15.5,4,0.0 +16593,9,97,29,0.0 +16593,73,15,38,0.0 +16593,62,49.3,35,0.0 +16593,4,22,8,0.0 +16593,59,55,7,0.0 +16593,12,38,22,0.0 +16593,56,38,27,0.0 +16593,63,43.9,20,0.0 +16593,19,9.2,16,0.0 +16593,18,62.5,1,0.0 +16593,32,32,21,0.0 +16593,46,12,16,0.0 +16593,48,12.75,4,0.0 +16593,49,20,43,0.0 +16593,21,10,41,0.0 +16593,36,19,31,0.0 +16593,72,34.8,16,0.0 +16593,60,34,23,0.0 +16593,10,31,9,0.0 +16593,53,32.8,34,0.0 +16593,42,14,1,0.0 +16593,25,14,7,0.0 +16593,39,18,36,0.0 +16593,68,12.5,40,0.0 +16593,75,7.75,21,0.0 +16593,8,40,14,0.0 +16593,26,31.23,38,0.0 +16593,28,45.6,42,0.0 +16593,23,9,40,0.0 +16593,67,14,20,0.0 +16593,71,21.5,13,0.0 +16594,56,38,14,0.0 +16594,11,21,17,0.0 +16594,64,33.25,40,0.0 +16594,60,34,35,0.0 +16594,1,18,23,0.0 +16594,29,123.79,6,0.0 +16594,40,18.4,27,0.0 +16594,48,12.75,48,0.0 +16594,72,34.8,16,0.0 +16594,8,40,41,0.0 +16594,49,20,40,0.0 +16594,63,43.9,27,0.0 +16594,21,10,22,0.0 +16594,53,32.8,49,0.0 +16594,61,28.5,4,0.0 +16594,6,25,36,0.0 +16594,25,14,17,0.0 +16594,73,15,23,0.0 +16594,55,24,23,0.0 +16594,33,2.5,43,0.0 +16594,44,19.45,38,0.0 +16594,42,14,14,0.0 +16594,52,7,8,0.0 +16595,76,18,31,0.0 +16595,29,123.79,2,0.0 +16595,19,9.2,32,0.0 +16595,24,4.5,33,0.0 +16595,14,23.25,10,0.0 +16595,45,9.5,45,0.0 +16595,15,15.5,35,0.0 +16595,52,7,32,0.0 +16595,60,34,11,0.0 +16595,27,43.9,2,0.0 +16595,62,49.3,41,0.0 +16595,50,16.25,14,0.0 +16595,5,21.35,22,0.0 +16595,39,18,32,0.0 +16595,35,18,47,0.0 +16595,47,9.5,4,0.0 +16595,64,33.25,44,0.0 +16595,17,39,26,0.0 +16595,12,38,8,0.0 +16595,7,30,40,0.0 +16595,74,10,31,0.0 +16595,77,13,36,0.0 +16595,53,32.8,44,0.0 +16595,43,46,17,0.0 +16595,16,17.45,5,0.0 +16595,40,18.4,39,0.0 +16595,38,263.5,9,0.0 +16595,30,25.89,47,0.0 +16595,71,21.5,3,0.0 +16595,54,7.45,30,0.0 +16595,22,21,34,0.0 +16595,21,10,42,0.0 +16595,49,20,15,0.0 +16595,56,38,23,0.0 +16595,37,26,11,0.0 +16595,55,24,30,0.0 +16595,31,12.5,50,0.0 +16595,59,55,41,0.0 +16595,28,45.6,5,0.0 +16595,69,36,35,0.0 +16595,11,21,16,0.0 +16595,2,19,42,0.0 +16595,70,15,16,0.0 +16595,63,43.9,30,0.0 +16595,57,19.5,35,0.0 +16595,8,40,12,0.0 +16595,34,14,50,0.0 +16595,73,15,47,0.0 +16595,48,12.75,19,0.0 +16595,18,62.5,9,0.0 +16595,41,9.65,35,0.0 +16595,25,14,9,0.0 +16595,33,2.5,44,0.0 +16595,3,10,38,0.0 +16595,51,53,41,0.0 +16595,68,12.5,30,0.0 +16595,65,21.05,27,0.0 +16595,23,9,5,0.0 +16595,26,31.23,3,0.0 +16595,6,25,20,0.0 +16595,44,19.45,24,0.0 +16595,1,18,39,0.0 +16595,61,28.5,30,0.0 +16595,32,32,32,0.0 +16596,7,30,23,0.0 +16596,24,4.5,7,0.0 +16596,57,19.5,49,0.0 +16596,54,7.45,31,0.0 +16596,4,22,4,0.0 +16596,45,9.5,3,0.0 +16597,17,39,17,0.0 +16597,16,17.45,1,0.0 +16597,36,19,25,0.0 +16597,4,22,42,0.0 +16597,6,25,20,0.0 +16597,13,6,21,0.0 +16597,5,21.35,35,0.0 +16598,18,62.5,26,0.0 +16598,56,38,39,0.0 +16598,37,26,20,0.0 +16598,51,53,43,0.0 +16598,17,39,21,0.0 +16598,76,18,6,0.0 +16598,19,9.2,45,0.0 +16598,71,21.5,42,0.0 +16598,48,12.75,20,0.0 +16598,46,12,18,0.0 +16598,15,15.5,47,0.0 +16598,33,2.5,20,0.0 +16598,38,263.5,43,0.0 +16598,53,32.8,37,0.0 +16598,12,38,35,0.0 +16598,47,9.5,27,0.0 +16598,27,43.9,2,0.0 +16598,40,18.4,14,0.0 +16598,57,19.5,9,0.0 +16598,14,23.25,2,0.0 +16598,55,24,17,0.0 +16598,54,7.45,21,0.0 +16598,43,46,12,0.0 +16598,60,34,13,0.0 +16598,26,31.23,35,0.0 +16598,29,123.79,44,0.0 +16598,39,18,47,0.0 +16598,67,14,14,0.0 +16598,72,34.8,44,0.0 +16598,21,10,3,0.0 +16598,7,30,8,0.0 +16598,42,14,31,0.0 +16598,63,43.9,9,0.0 +16598,62,49.3,27,0.0 +16598,75,7.75,33,0.0 +16598,10,31,9,0.0 +16598,22,21,24,0.0 +16598,45,9.5,3,0.0 +16598,3,10,44,0.0 +16598,68,12.5,20,0.0 +16598,2,19,4,0.0 +16598,20,81,30,0.0 +16598,65,21.05,47,0.0 +16598,77,13,29,0.0 +16598,9,97,28,0.0 +16598,58,13.25,25,0.0 +16598,50,16.25,17,0.0 +16598,66,17,9,0.0 +16598,25,14,15,0.0 +16598,5,21.35,8,0.0 +16598,11,21,5,0.0 +16598,6,25,22,0.0 +16598,31,12.5,3,0.0 +16598,52,7,24,0.0 +16599,6,25,29,0.0 +16599,45,9.5,6,0.0 +16599,24,4.5,24,0.0 +16599,35,18,50,0.0 +16599,58,13.25,29,0.0 +16599,32,32,5,0.0 +16599,53,32.8,3,0.0 +16599,3,10,2,0.0 +16599,77,13,20,0.0 +16599,48,12.75,23,0.0 +16599,60,34,38,0.0 +16599,63,43.9,11,0.0 +16599,67,14,38,0.0 +16599,57,19.5,14,0.0 +16599,11,21,5,0.0 +16599,66,17,7,0.0 +16599,25,14,23,0.0 +16599,71,21.5,42,0.0 +16599,55,24,6,0.0 +16599,9,97,31,0.0 +16599,5,21.35,44,0.0 +16599,17,39,7,0.0 +16599,16,17.45,28,0.0 +16599,37,26,3,0.0 +16599,12,38,46,0.0 +16599,42,14,33,0.0 +16599,22,21,49,0.0 +16599,7,30,1,0.0 +16599,47,9.5,4,0.0 +16599,38,263.5,22,0.0 +16599,69,36,26,0.0 +16599,15,15.5,8,0.0 +16599,36,19,13,0.0 +16599,31,12.5,18,0.0 +16599,51,53,3,0.0 +16599,33,2.5,49,0.0 +16599,44,19.45,39,0.0 +16599,59,55,19,0.0 +16599,29,123.79,9,0.0 +16599,14,23.25,44,0.0 +16600,22,21,20,0.0 +16600,30,25.89,44,0.0 +16600,21,10,40,0.0 +16600,49,20,2,0.0 +16600,8,40,26,0.0 +16600,9,97,10,0.0 +16600,5,21.35,10,0.0 +16600,34,14,3,0.0 +16600,10,31,8,0.0 +16600,65,21.05,28,0.0 +16600,46,12,42,0.0 +16600,12,38,7,0.0 +16600,60,34,3,0.0 +16600,66,17,41,0.0 +16600,15,15.5,49,0.0 +16600,38,263.5,25,0.0 +16600,56,38,2,0.0 +16600,68,12.5,35,0.0 +16600,75,7.75,15,0.0 +16600,58,13.25,49,0.0 +16600,32,32,21,0.0 +16600,77,13,48,0.0 +16600,19,9.2,23,0.0 +16600,1,18,27,0.0 +16600,73,15,41,0.0 +16600,4,22,18,0.0 +16601,20,81,6,0.0 +16601,66,17,21,0.0 +16601,28,45.6,37,0.0 +16601,43,46,46,0.0 +16601,23,9,33,0.0 +16601,38,263.5,19,0.0 +16601,60,34,31,0.0 +16601,16,17.45,16,0.0 +16601,13,6,19,0.0 +16601,58,13.25,26,0.0 +16601,61,28.5,23,0.0 +16601,54,7.45,40,0.0 +16601,59,55,44,0.0 +16601,73,15,48,0.0 +16601,21,10,37,0.0 +16601,57,19.5,39,0.0 +16601,2,19,11,0.0 +16601,33,2.5,24,0.0 +16601,45,9.5,49,0.0 +16601,44,19.45,2,0.0 +16601,22,21,18,0.0 +16601,11,21,5,0.0 +16601,64,33.25,8,0.0 +16601,51,53,24,0.0 +16601,39,18,5,0.0 +16601,3,10,45,0.0 +16601,19,9.2,26,0.0 +16601,24,4.5,20,0.0 +16601,10,31,44,0.0 +16601,35,18,29,0.0 +16601,42,14,10,0.0 +16601,65,21.05,22,0.0 +16601,12,38,31,0.0 +16601,25,14,41,0.0 +16601,31,12.5,23,0.0 +16601,71,21.5,9,0.0 +16601,62,49.3,42,0.0 +16601,56,38,26,0.0 +16601,8,40,22,0.0 +16601,37,26,35,0.0 +16601,6,25,17,0.0 +16601,48,12.75,46,0.0 +16601,46,12,32,0.0 +16601,36,19,47,0.0 +16601,69,36,36,0.0 +16601,9,97,32,0.0 +16601,55,24,30,0.0 +16601,49,20,27,0.0 +16601,41,9.65,34,0.0 +16601,32,32,9,0.0 +16601,53,32.8,23,0.0 +16601,72,34.8,11,0.0 +16601,30,25.89,27,0.0 +16601,27,43.9,11,0.0 +16601,4,22,2,0.0 +16601,18,62.5,24,0.0 +16601,17,39,45,0.0 +16601,74,10,11,0.0 +16601,26,31.23,21,0.0 +16601,68,12.5,10,0.0 +16601,52,7,46,0.0 +16601,15,15.5,34,0.0 +16601,40,18.4,33,0.0 +16601,34,14,9,0.0 +16601,67,14,26,0.0 +16601,5,21.35,47,0.0 +16601,1,18,35,0.0 +16601,75,7.75,11,0.0 +16601,63,43.9,30,0.0 +16601,77,13,44,0.0 +16602,37,26,22,0.0 +16602,19,9.2,26,0.0 +16602,36,19,18,0.0 +16602,13,6,39,0.0 +16602,1,18,38,0.0 +16602,69,36,13,0.0 +16602,74,10,1,0.0 +16602,57,19.5,10,0.0 +16602,48,12.75,10,0.0 +16602,44,19.45,24,0.0 +16602,71,21.5,6,0.0 +16602,26,31.23,25,0.0 +16602,12,38,46,0.0 +16602,75,7.75,18,0.0 +16602,27,43.9,38,0.0 +16602,77,13,16,0.0 +16602,51,53,36,0.0 +16602,76,18,5,0.0 +16602,4,22,45,0.0 +16602,62,49.3,13,0.0 +16602,35,18,27,0.0 +16602,15,15.5,40,0.0 +16602,39,18,50,0.0 +16602,30,25.89,11,0.0 +16602,28,45.6,39,0.0 +16602,55,24,37,0.0 +16602,47,9.5,32,0.0 +16602,32,32,43,0.0 +16602,5,21.35,18,0.0 +16602,3,10,14,0.0 +16602,2,19,36,0.0 +16602,17,39,47,0.0 +16602,38,263.5,27,0.0 +16602,65,21.05,1,0.0 +16602,66,17,38,0.0 +16602,29,123.79,16,0.0 +16602,45,9.5,22,0.0 +16602,61,28.5,40,0.0 +16602,22,21,42,0.0 +16602,63,43.9,27,0.0 +16602,72,34.8,7,0.0 +16602,68,12.5,13,0.0 +16602,25,14,50,0.0 +16602,18,62.5,42,0.0 +16602,42,14,27,0.0 +16602,31,12.5,3,0.0 +16602,60,34,42,0.0 +16602,64,33.25,39,0.0 +16602,52,7,47,0.0 +16602,41,9.65,6,0.0 +16602,59,55,28,0.0 +16602,24,4.5,13,0.0 +16602,40,18.4,9,0.0 +16602,54,7.45,23,0.0 +16602,67,14,22,0.0 +16603,68,12.5,37,0.0 +16603,11,21,31,0.0 +16603,45,9.5,32,0.0 +16603,1,18,31,0.0 +16603,40,18.4,23,0.0 +16603,66,17,31,0.0 +16603,41,9.65,37,0.0 +16603,27,43.9,17,0.0 +16603,53,32.8,26,0.0 +16603,60,34,42,0.0 +16603,6,25,12,0.0 +16603,65,21.05,28,0.0 +16603,12,38,6,0.0 +16603,24,4.5,35,0.0 +16603,69,36,4,0.0 +16604,25,14,12,0.0 +16604,53,32.8,18,0.0 +16604,58,13.25,43,0.0 +16604,54,7.45,42,0.0 +16604,51,53,14,0.0 +16604,10,31,16,0.0 +16604,57,19.5,33,0.0 +16604,28,45.6,2,0.0 +16604,14,23.25,50,0.0 +16604,21,10,32,0.0 +16604,50,16.25,19,0.0 +16604,45,9.5,24,0.0 +16604,68,12.5,26,0.0 +16604,44,19.45,40,0.0 +16604,52,7,24,0.0 +16604,19,9.2,12,0.0 +16604,27,43.9,31,0.0 +16604,18,62.5,16,0.0 +16604,17,39,17,0.0 +16604,4,22,22,0.0 +16604,30,25.89,36,0.0 +16604,40,18.4,13,0.0 +16604,47,9.5,24,0.0 +16604,43,46,45,0.0 +16604,32,32,20,0.0 +16604,36,19,18,0.0 +16604,16,17.45,39,0.0 +16604,24,4.5,12,0.0 +16604,67,14,26,0.0 +16604,48,12.75,23,0.0 +16604,8,40,40,0.0 +16604,41,9.65,33,0.0 +16604,9,97,46,0.0 +16604,71,21.5,39,0.0 +16604,29,123.79,45,0.0 +16604,20,81,46,0.0 +16604,65,21.05,26,0.0 +16604,74,10,18,0.0 +16604,64,33.25,29,0.0 +16605,5,21.35,37,0.0 +16605,51,53,25,0.0 +16605,21,10,17,0.0 +16605,66,17,40,0.0 +16605,2,19,12,0.0 +16605,45,9.5,23,0.0 +16605,17,39,23,0.0 +16605,70,15,49,0.0 +16605,73,15,3,0.0 +16605,46,12,45,0.0 +16605,65,21.05,28,0.0 +16605,58,13.25,16,0.0 +16605,30,25.89,35,0.0 +16605,76,18,49,0.0 +16605,44,19.45,48,0.0 +16605,77,13,9,0.0 +16605,60,34,32,0.0 +16605,29,123.79,41,0.0 +16605,1,18,22,0.0 +16605,68,12.5,47,0.0 +16605,63,43.9,14,0.0 +16605,4,22,37,0.0 +16605,71,21.5,15,0.0 +16605,16,17.45,6,0.0 +16605,39,18,39,0.0 +16605,49,20,35,0.0 +16605,64,33.25,30,0.0 +16605,14,23.25,20,0.0 +16605,53,32.8,41,0.0 +16605,33,2.5,24,0.0 +16605,11,21,9,0.0 +16605,36,19,48,0.0 +16605,32,32,37,0.0 +16605,74,10,43,0.0 +16605,41,9.65,39,0.0 +16605,10,31,23,0.0 +16605,31,12.5,8,0.0 +16605,54,7.45,11,0.0 +16605,13,6,23,0.0 +16605,25,14,24,0.0 +16605,8,40,3,0.0 +16605,18,62.5,1,0.0 +16605,42,14,24,0.0 +16605,19,9.2,8,0.0 +16605,6,25,22,0.0 +16605,40,18.4,20,0.0 +16605,20,81,30,0.0 +16605,27,43.9,16,0.0 +16605,15,15.5,12,0.0 +16605,47,9.5,13,0.0 +16605,56,38,7,0.0 +16605,59,55,27,0.0 +16605,50,16.25,2,0.0 +16605,34,14,37,0.0 +16605,43,46,18,0.0 +16606,26,31.23,49,0.0 +16606,49,20,26,0.0 +16606,37,26,3,0.0 +16606,14,23.25,34,0.0 +16606,2,19,30,0.0 +16606,7,30,48,0.0 +16606,20,81,32,0.0 +16606,43,46,13,0.0 +16606,36,19,45,0.0 +16606,51,53,13,0.0 +16606,22,21,4,0.0 +16606,44,19.45,3,0.0 +16606,59,55,3,0.0 +16606,66,17,17,0.0 +16606,21,10,50,0.0 +16606,55,24,46,0.0 +16606,76,18,18,0.0 +16606,32,32,7,0.0 +16606,3,10,14,0.0 +16606,69,36,10,0.0 +16607,28,45.6,31,0.0 +16607,59,55,34,0.0 +16607,10,31,13,0.0 +16607,52,7,5,0.0 +16607,8,40,9,0.0 +16607,33,2.5,19,0.0 +16608,26,31.23,48,0.0 +16608,68,12.5,29,0.0 +16608,73,15,22,0.0 +16608,12,38,11,0.0 +16608,32,32,15,0.0 +16608,52,7,45,0.0 +16608,62,49.3,30,0.0 +16608,48,12.75,28,0.0 +16608,22,21,45,0.0 +16608,77,13,8,0.0 +16608,70,15,14,0.0 +16608,24,4.5,22,0.0 +16608,17,39,26,0.0 +16608,63,43.9,6,0.0 +16608,69,36,37,0.0 +16608,51,53,23,0.0 +16608,11,21,32,0.0 +16608,37,26,20,0.0 +16608,53,32.8,19,0.0 +16608,56,38,41,0.0 +16608,39,18,39,0.0 +16608,2,19,26,0.0 +16608,66,17,20,0.0 +16608,67,14,28,0.0 +16608,58,13.25,11,0.0 +16608,42,14,24,0.0 +16608,43,46,9,0.0 +16608,60,34,48,0.0 +16608,3,10,22,0.0 +16608,71,21.5,36,0.0 +16608,72,34.8,8,0.0 +16608,76,18,26,0.0 +16608,8,40,40,0.0 +16608,5,21.35,10,0.0 +16608,61,28.5,29,0.0 +16608,28,45.6,39,0.0 +16608,27,43.9,43,0.0 +16608,47,9.5,3,0.0 +16608,13,6,26,0.0 +16608,44,19.45,26,0.0 +16608,65,21.05,26,0.0 +16608,74,10,8,0.0 +16608,41,9.65,34,0.0 +16608,54,7.45,47,0.0 +16608,29,123.79,28,0.0 +16608,34,14,49,0.0 +16608,14,23.25,40,0.0 +16608,23,9,14,0.0 +16608,38,263.5,27,0.0 +16608,6,25,13,0.0 +16609,31,12.5,39,0.0 +16609,47,9.5,28,0.0 +16609,58,13.25,34,0.0 +16609,73,15,24,0.0 +16609,48,12.75,28,0.0 +16609,5,21.35,8,0.0 +16609,39,18,9,0.0 +16609,45,9.5,1,0.0 +16609,46,12,24,0.0 +16609,30,25.89,5,0.0 +16609,25,14,38,0.0 +16609,60,34,28,0.0 +16609,72,34.8,31,0.0 +16609,51,53,22,0.0 +16609,37,26,49,0.0 +16609,75,7.75,32,0.0 +16609,21,10,46,0.0 +16609,8,40,3,0.0 +16609,24,4.5,17,0.0 +16609,64,33.25,32,0.0 +16609,67,14,16,0.0 +16609,70,15,48,0.0 +16609,7,30,6,0.0 +16609,2,19,19,0.0 +16609,32,32,34,0.0 +16609,10,31,19,0.0 +16609,29,123.79,28,0.0 +16609,35,18,22,0.0 +16609,69,36,40,0.0 +16609,61,28.5,5,0.0 +16609,59,55,31,0.0 +16609,56,38,1,0.0 +16609,77,13,27,0.0 +16609,3,10,19,0.0 +16609,52,7,9,0.0 +16610,3,10,41,0.0 +16610,1,18,27,0.0 +16610,73,15,48,0.0 +16610,72,34.8,33,0.0 +16610,71,21.5,5,0.0 +16610,14,23.25,36,0.0 +16610,19,9.2,44,0.0 +16610,28,45.6,22,0.0 +16610,13,6,36,0.0 +16610,41,9.65,7,0.0 +16610,64,33.25,32,0.0 +16610,20,81,33,0.0 +16610,63,43.9,7,0.0 +16610,37,26,32,0.0 +16610,25,14,10,0.0 +16610,61,28.5,45,0.0 +16610,56,38,40,0.0 +16610,31,12.5,20,0.0 +16610,62,49.3,1,0.0 +16610,74,10,21,0.0 +16610,54,7.45,49,0.0 +16610,66,17,23,0.0 +16610,23,9,50,0.0 +16610,21,10,42,0.0 +16610,6,25,33,0.0 +16610,9,97,18,0.0 +16610,51,53,15,0.0 +16610,22,21,38,0.0 +16610,10,31,29,0.0 +16610,45,9.5,15,0.0 +16610,43,46,33,0.0 +16610,57,19.5,22,0.0 +16610,68,12.5,31,0.0 +16610,2,19,20,0.0 +16610,30,25.89,20,0.0 +16610,26,31.23,39,0.0 +16610,39,18,15,0.0 +16610,44,19.45,46,0.0 +16610,34,14,7,0.0 +16610,76,18,47,0.0 +16610,33,2.5,41,0.0 +16610,11,21,25,0.0 +16610,35,18,50,0.0 +16610,18,62.5,50,0.0 +16610,55,24,41,0.0 +16610,50,16.25,10,0.0 +16610,7,30,43,0.0 +16610,15,15.5,7,0.0 +16610,8,40,33,0.0 +16610,40,18.4,1,0.0 +16610,5,21.35,28,0.0 +16610,46,12,5,0.0 +16611,70,15,47,0.0 +16611,48,12.75,39,0.0 +16611,1,18,3,0.0 +16611,30,25.89,25,0.0 +16611,45,9.5,12,0.0 +16611,63,43.9,1,0.0 +16611,33,2.5,7,0.0 +16611,43,46,9,0.0 +16611,62,49.3,20,0.0 +16611,19,9.2,1,0.0 +16611,18,62.5,35,0.0 +16611,60,34,13,0.0 +16611,8,40,46,0.0 +16611,12,38,21,0.0 +16611,41,9.65,32,0.0 +16611,15,15.5,10,0.0 +16611,38,263.5,41,0.0 +16611,57,19.5,20,0.0 +16611,4,22,14,0.0 +16611,54,7.45,22,0.0 +16611,2,19,4,0.0 +16611,61,28.5,46,0.0 +16611,46,12,26,0.0 +16611,6,25,10,0.0 +16611,53,32.8,26,0.0 +16611,55,24,38,0.0 +16611,20,81,45,0.0 +16611,51,53,16,0.0 +16611,17,39,33,0.0 +16611,40,18.4,38,0.0 +16611,3,10,13,0.0 +16611,67,14,37,0.0 +16611,56,38,24,0.0 +16611,29,123.79,47,0.0 +16611,10,31,25,0.0 +16611,22,21,44,0.0 +16611,35,18,38,0.0 +16611,52,7,14,0.0 +16611,13,6,19,0.0 +16611,68,12.5,50,0.0 +16611,77,13,19,0.0 +16611,65,21.05,19,0.0 +16611,11,21,10,0.0 +16611,73,15,42,0.0 +16611,16,17.45,28,0.0 +16611,25,14,15,0.0 +16611,32,32,15,0.0 +16611,7,30,41,0.0 +16611,64,33.25,2,0.0 +16611,42,14,47,0.0 +16611,76,18,40,0.0 +16611,26,31.23,38,0.0 +16611,34,14,1,0.0 +16611,14,23.25,5,0.0 +16611,24,4.5,4,0.0 +16612,12,38,19,0.0 +16612,52,7,38,0.0 +16612,77,13,14,0.0 +16612,18,62.5,23,0.0 +16612,35,18,32,0.0 +16612,8,40,33,0.0 +16612,63,43.9,32,0.0 +16612,51,53,18,0.0 +16612,21,10,12,0.0 +16612,5,21.35,27,0.0 +16612,34,14,24,0.0 +16612,57,19.5,39,0.0 +16612,56,38,5,0.0 +16612,75,7.75,21,0.0 +16612,70,15,23,0.0 +16612,1,18,17,0.0 +16612,7,30,33,0.0 +16612,20,81,5,0.0 +16612,49,20,12,0.0 +16612,43,46,21,0.0 +16612,71,21.5,23,0.0 +16612,42,14,18,0.0 +16612,16,17.45,39,0.0 +16612,72,34.8,39,0.0 +16612,36,19,47,0.0 +16612,44,19.45,37,0.0 +16612,11,21,8,0.0 +16612,46,12,23,0.0 +16612,64,33.25,3,0.0 +16612,48,12.75,2,0.0 +16612,13,6,6,0.0 +16612,59,55,17,0.0 +16612,14,23.25,44,0.0 +16612,37,26,34,0.0 +16612,39,18,49,0.0 +16612,22,21,28,0.0 +16612,3,10,23,0.0 +16612,9,97,50,0.0 +16612,69,36,43,0.0 +16612,62,49.3,43,0.0 +16612,66,17,26,0.0 +16612,31,12.5,30,0.0 +16612,58,13.25,37,0.0 +16612,28,45.6,17,0.0 +16612,47,9.5,3,0.0 +16612,45,9.5,42,0.0 +16612,15,15.5,11,0.0 +16612,29,123.79,35,0.0 +16612,30,25.89,34,0.0 +16612,54,7.45,16,0.0 +16612,41,9.65,38,0.0 +16612,76,18,1,0.0 +16612,55,24,18,0.0 +16612,61,28.5,1,0.0 +16612,73,15,48,0.0 +16612,17,39,36,0.0 +16612,68,12.5,25,0.0 +16612,27,43.9,8,0.0 +16612,60,34,26,0.0 +16612,4,22,27,0.0 +16613,66,17,5,0.0 +16613,60,34,38,0.0 +16613,55,24,29,0.0 +16613,11,21,9,0.0 +16613,33,2.5,19,0.0 +16613,46,12,23,0.0 +16613,68,12.5,21,0.0 +16613,14,23.25,12,0.0 +16613,45,9.5,13,0.0 +16613,12,38,42,0.0 +16613,53,32.8,20,0.0 +16613,52,7,8,0.0 +16613,30,25.89,47,0.0 +16613,69,36,12,0.0 +16613,10,31,37,0.0 +16613,19,9.2,9,0.0 +16613,1,18,14,0.0 +16613,76,18,17,0.0 +16613,32,32,11,0.0 +16613,3,10,37,0.0 +16613,18,62.5,50,0.0 +16613,59,55,26,0.0 +16613,70,15,13,0.0 +16613,2,19,18,0.0 +16613,36,19,35,0.0 +16613,26,31.23,33,0.0 +16613,34,14,34,0.0 +16613,29,123.79,17,0.0 +16613,6,25,36,0.0 +16613,23,9,50,0.0 +16613,7,30,2,0.0 +16613,4,22,37,0.0 +16613,74,10,47,0.0 +16613,25,14,49,0.0 +16613,62,49.3,39,0.0 +16613,41,9.65,29,0.0 +16613,56,38,41,0.0 +16613,50,16.25,23,0.0 +16613,63,43.9,1,0.0 +16613,24,4.5,31,0.0 +16613,43,46,10,0.0 +16613,67,14,39,0.0 +16613,31,12.5,9,0.0 +16613,15,15.5,37,0.0 +16613,44,19.45,41,0.0 +16613,49,20,4,0.0 +16613,9,97,35,0.0 +16613,77,13,7,0.0 +16613,58,13.25,16,0.0 +16613,47,9.5,50,0.0 +16613,57,19.5,21,0.0 +16613,51,53,31,0.0 +16613,72,34.8,7,0.0 +16613,21,10,12,0.0 +16613,65,21.05,48,0.0 +16613,48,12.75,19,0.0 +16613,27,43.9,33,0.0 +16613,5,21.35,33,0.0 +16613,61,28.5,10,0.0 +16613,8,40,33,0.0 +16613,16,17.45,38,0.0 +16613,35,18,47,0.0 +16613,13,6,30,0.0 +16613,42,14,29,0.0 +16613,38,263.5,44,0.0 +16613,17,39,25,0.0 +16613,73,15,42,0.0 +16613,64,33.25,39,0.0 +16613,22,21,48,0.0 +16613,28,45.6,22,0.0 +16613,37,26,40,0.0 +16613,75,7.75,13,0.0 +16613,20,81,36,0.0 +16614,77,13,10,0.0 +16614,61,28.5,36,0.0 +16614,52,7,50,0.0 +16614,13,6,7,0.0 +16614,71,21.5,35,0.0 +16614,12,38,46,0.0 +16614,43,46,45,0.0 +16614,50,16.25,25,0.0 +16614,20,81,32,0.0 +16614,63,43.9,23,0.0 +16614,47,9.5,26,0.0 +16614,28,45.6,19,0.0 +16614,57,19.5,39,0.0 +16614,59,55,15,0.0 +16614,33,2.5,32,0.0 +16614,2,19,10,0.0 +16614,53,32.8,30,0.0 +16614,29,123.79,15,0.0 +16614,55,24,31,0.0 +16614,6,25,24,0.0 +16614,40,18.4,32,0.0 +16614,23,9,24,0.0 +16614,5,21.35,22,0.0 +16614,73,15,23,0.0 +16614,24,4.5,39,0.0 +16614,46,12,22,0.0 +16614,51,53,10,0.0 +16614,45,9.5,44,0.0 +16614,3,10,31,0.0 +16614,56,38,21,0.0 +16614,21,10,3,0.0 +16614,15,15.5,15,0.0 +16614,64,33.25,29,0.0 +16614,22,21,7,0.0 +16614,69,36,17,0.0 +16614,36,19,8,0.0 +16614,7,30,29,0.0 +16614,34,14,23,0.0 +16614,42,14,33,0.0 +16614,76,18,47,0.0 +16614,38,263.5,13,0.0 +16614,39,18,7,0.0 +16614,11,21,10,0.0 +16614,35,18,17,0.0 +16614,17,39,32,0.0 +16614,67,14,5,0.0 +16614,48,12.75,40,0.0 +16614,10,31,22,0.0 +16614,18,62.5,22,0.0 +16614,9,97,48,0.0 +16614,30,25.89,18,0.0 +16614,27,43.9,35,0.0 +16614,75,7.75,19,0.0 +16614,49,20,45,0.0 +16614,65,21.05,18,0.0 +16614,54,7.45,42,0.0 +16614,72,34.8,6,0.0 +16614,32,32,22,0.0 +16614,8,40,45,0.0 +16614,70,15,19,0.0 +16615,52,7,35,0.0 +16615,58,13.25,24,0.0 +16615,41,9.65,34,0.0 +16615,66,17,9,0.0 +16615,11,21,43,0.0 +16615,32,32,22,0.0 +16615,51,53,43,0.0 +16615,70,15,44,0.0 +16615,7,30,42,0.0 +16615,62,49.3,19,0.0 +16615,33,2.5,14,0.0 +16615,44,19.45,12,0.0 +16615,16,17.45,7,0.0 +16615,60,34,22,0.0 +16615,50,16.25,28,0.0 +16615,40,18.4,10,0.0 +16615,12,38,1,0.0 +16615,43,46,43,0.0 +16615,22,21,50,0.0 +16615,47,9.5,36,0.0 +16615,42,14,37,0.0 +16615,24,4.5,40,0.0 +16615,30,25.89,36,0.0 +16615,26,31.23,18,0.0 +16615,1,18,45,0.0 +16615,38,263.5,22,0.0 +16615,76,18,3,0.0 +16615,15,15.5,16,0.0 +16615,37,26,42,0.0 +16615,25,14,2,0.0 +16615,20,81,35,0.0 +16615,36,19,39,0.0 +16615,73,15,22,0.0 +16615,75,7.75,46,0.0 +16615,6,25,39,0.0 +16615,10,31,6,0.0 +16615,61,28.5,41,0.0 +16615,68,12.5,28,0.0 +16615,34,14,38,0.0 +16615,45,9.5,31,0.0 +16615,9,97,45,0.0 +16615,74,10,5,0.0 +16615,64,33.25,50,0.0 +16615,31,12.5,13,0.0 +16615,55,24,5,0.0 +16615,14,23.25,39,0.0 +16615,53,32.8,15,0.0 +16615,23,9,3,0.0 +16615,28,45.6,32,0.0 +16615,59,55,41,0.0 +16615,77,13,24,0.0 +16615,5,21.35,10,0.0 +16615,54,7.45,45,0.0 +16615,17,39,22,0.0 +16615,48,12.75,32,0.0 +16615,46,12,41,0.0 +16615,72,34.8,28,0.0 +16615,65,21.05,49,0.0 +16615,67,14,12,0.0 +16615,57,19.5,47,0.0 +16615,21,10,9,0.0 +16615,35,18,28,0.0 +16615,13,6,46,0.0 +16615,63,43.9,8,0.0 +16615,39,18,37,0.0 +16615,8,40,7,0.0 +16615,3,10,30,0.0 +16615,2,19,4,0.0 +16615,19,9.2,43,0.0 +16615,71,21.5,11,0.0 +16615,27,43.9,3,0.0 +16615,49,20,28,0.0 +16615,29,123.79,49,0.0 +16615,18,62.5,13,0.0 +16616,32,32,41,0.0 +16616,52,7,33,0.0 +16616,31,12.5,10,0.0 +16616,50,16.25,22,0.0 +16616,25,14,23,0.0 +16616,1,18,36,0.0 +16616,71,21.5,42,0.0 +16616,16,17.45,35,0.0 +16616,6,25,37,0.0 +16616,18,62.5,12,0.0 +16616,53,32.8,1,0.0 +16616,33,2.5,29,0.0 +16616,2,19,38,0.0 +16616,45,9.5,3,0.0 +16616,54,7.45,43,0.0 +16616,27,43.9,27,0.0 +16616,8,40,14,0.0 +16616,34,14,45,0.0 +16616,61,28.5,24,0.0 +16616,44,19.45,14,0.0 +16616,22,21,48,0.0 +16616,29,123.79,39,0.0 +16616,17,39,43,0.0 +16616,10,31,40,0.0 +16616,30,25.89,35,0.0 +16616,48,12.75,5,0.0 +16616,47,9.5,1,0.0 +16616,74,10,24,0.0 +16616,28,45.6,40,0.0 +16616,9,97,15,0.0 +16616,41,9.65,29,0.0 +16616,5,21.35,39,0.0 +16616,23,9,39,0.0 +16616,21,10,43,0.0 +16616,3,10,18,0.0 +16616,69,36,10,0.0 +16616,14,23.25,33,0.0 +16616,46,12,37,0.0 +16616,76,18,5,0.0 +16616,51,53,17,0.0 +16616,63,43.9,42,0.0 +16616,11,21,7,0.0 +16616,15,15.5,41,0.0 +16616,68,12.5,46,0.0 +16616,59,55,31,0.0 +16616,24,4.5,13,0.0 +16616,55,24,3,0.0 +16616,70,15,39,0.0 +16616,37,26,23,0.0 +16616,36,19,40,0.0 +16616,72,34.8,25,0.0 +16616,40,18.4,41,0.0 +16616,66,17,29,0.0 +16616,57,19.5,49,0.0 +16616,38,263.5,37,0.0 +16617,29,123.79,16,0.0 +16617,32,32,41,0.0 +16617,58,13.25,29,0.0 +16617,1,18,39,0.0 +16618,24,4.5,50,0.0 +16618,15,15.5,45,0.0 +16618,58,13.25,28,0.0 +16618,17,39,37,0.0 +16618,2,19,5,0.0 +16618,46,12,43,0.0 +16618,13,6,45,0.0 +16618,42,14,29,0.0 +16619,41,9.65,29,0.0 +16619,28,45.6,22,0.0 +16619,12,38,8,0.0 +16619,42,14,4,0.0 +16619,32,32,6,0.0 +16619,8,40,37,0.0 +16619,39,18,22,0.0 +16619,67,14,21,0.0 +16619,45,9.5,25,0.0 +16619,34,14,39,0.0 +16619,53,32.8,29,0.0 +16619,10,31,44,0.0 +16619,49,20,29,0.0 +16619,21,10,38,0.0 +16619,43,46,2,0.0 +16619,6,25,22,0.0 +16619,70,15,28,0.0 +16619,76,18,7,0.0 +16619,36,19,2,0.0 +16619,58,13.25,33,0.0 +16619,68,12.5,11,0.0 +16619,57,19.5,26,0.0 +16619,69,36,23,0.0 +16619,29,123.79,40,0.0 +16619,55,24,26,0.0 +16619,25,14,15,0.0 +16619,19,9.2,38,0.0 +16619,54,7.45,9,0.0 +16619,13,6,4,0.0 +16619,35,18,16,0.0 +16619,5,21.35,40,0.0 +16619,74,10,50,0.0 +16619,44,19.45,32,0.0 +16619,4,22,17,0.0 +16619,50,16.25,46,0.0 +16619,15,15.5,18,0.0 +16619,77,13,28,0.0 +16619,46,12,16,0.0 +16619,51,53,5,0.0 +16619,47,9.5,19,0.0 +16619,63,43.9,20,0.0 +16619,17,39,25,0.0 +16619,23,9,43,0.0 +16619,37,26,10,0.0 +16619,73,15,10,0.0 +16619,14,23.25,11,0.0 +16619,61,28.5,23,0.0 +16619,56,38,33,0.0 +16619,20,81,32,0.0 +16619,1,18,27,0.0 +16619,7,30,25,0.0 +16619,24,4.5,11,0.0 +16619,72,34.8,18,0.0 +16619,52,7,37,0.0 +16619,3,10,7,0.0 +16619,26,31.23,28,0.0 +16619,38,263.5,48,0.0 +16619,75,7.75,15,0.0 +16619,62,49.3,15,0.0 +16619,64,33.25,46,0.0 +16619,27,43.9,10,0.0 +16619,11,21,21,0.0 +16619,31,12.5,34,0.0 +16619,18,62.5,20,0.0 +16619,16,17.45,16,0.0 +16619,9,97,16,0.0 +16619,71,21.5,4,0.0 +16619,33,2.5,33,0.0 +16620,53,32.8,16,0.0 +16620,15,15.5,8,0.0 +16620,49,20,46,0.0 +16620,64,33.25,49,0.0 +16620,70,15,16,0.0 +16620,33,2.5,40,0.0 +16620,4,22,41,0.0 +16620,77,13,42,0.0 +16620,72,34.8,50,0.0 +16620,23,9,16,0.0 +16620,17,39,12,0.0 +16620,69,36,41,0.0 +16620,55,24,8,0.0 +16620,73,15,3,0.0 +16620,10,31,33,0.0 +16620,38,263.5,36,0.0 +16620,71,21.5,42,0.0 +16620,54,7.45,10,0.0 +16620,37,26,15,0.0 +16620,34,14,24,0.0 +16620,45,9.5,15,0.0 +16620,11,21,16,0.0 +16620,3,10,6,0.0 +16620,50,16.25,3,0.0 +16620,56,38,13,0.0 +16620,44,19.45,43,0.0 +16620,25,14,29,0.0 +16620,21,10,1,0.0 +16620,75,7.75,34,0.0 +16620,5,21.35,17,0.0 +16620,40,18.4,22,0.0 +16620,1,18,34,0.0 +16620,7,30,33,0.0 +16620,41,9.65,43,0.0 +16620,30,25.89,34,0.0 +16620,28,45.6,13,0.0 +16620,22,21,23,0.0 +16620,8,40,24,0.0 +16620,74,10,39,0.0 +16620,13,6,2,0.0 +16620,35,18,17,0.0 +16620,57,19.5,21,0.0 +16620,68,12.5,50,0.0 +16620,18,62.5,28,0.0 +16620,39,18,30,0.0 +16620,24,4.5,46,0.0 +16620,6,25,12,0.0 +16620,32,32,5,0.0 +16621,72,34.8,20,0.0 +16621,48,12.75,5,0.0 +16621,56,38,34,0.0 +16621,42,14,46,0.0 +16621,13,6,19,0.0 +16621,5,21.35,26,0.0 +16621,31,12.5,14,0.0 +16621,25,14,36,0.0 +16621,37,26,14,0.0 +16621,57,19.5,42,0.0 +16621,40,18.4,44,0.0 +16621,45,9.5,36,0.0 +16621,74,10,29,0.0 +16621,50,16.25,48,0.0 +16621,55,24,26,0.0 +16621,26,31.23,13,0.0 +16621,44,19.45,36,0.0 +16621,60,34,42,0.0 +16621,76,18,24,0.0 +16621,12,38,7,0.0 +16621,27,43.9,18,0.0 +16621,61,28.5,29,0.0 +16621,20,81,38,0.0 +16621,1,18,44,0.0 +16621,49,20,47,0.0 +16621,18,62.5,18,0.0 +16621,6,25,19,0.0 +16621,70,15,9,0.0 +16621,4,22,14,0.0 +16621,8,40,26,0.0 +16621,46,12,47,0.0 +16621,58,13.25,34,0.0 +16621,52,7,16,0.0 +16621,11,21,45,0.0 +16621,28,45.6,19,0.0 +16621,65,21.05,36,0.0 +16621,68,12.5,27,0.0 +16621,36,19,17,0.0 +16621,34,14,46,0.0 +16621,77,13,23,0.0 +16621,67,14,47,0.0 +16621,64,33.25,16,0.0 +16621,32,32,41,0.0 +16621,66,17,17,0.0 +16621,15,15.5,4,0.0 +16621,43,46,4,0.0 +16621,7,30,44,0.0 +16621,9,97,17,0.0 +16621,19,9.2,12,0.0 +16621,73,15,42,0.0 +16621,2,19,14,0.0 +16621,59,55,33,0.0 +16621,41,9.65,19,0.0 +16621,53,32.8,41,0.0 +16621,47,9.5,11,0.0 +16621,75,7.75,19,0.0 +16621,3,10,25,0.0 +16621,17,39,48,0.0 +16621,29,123.79,2,0.0 +16621,63,43.9,14,0.0 +16622,12,38,44,0.0 +16622,68,12.5,18,0.0 +16622,36,19,47,0.0 +16622,43,46,17,0.0 +16622,51,53,32,0.0 +16622,18,62.5,46,0.0 +16622,42,14,11,0.0 +16622,20,81,23,0.0 +16622,50,16.25,39,0.0 +16623,53,32.8,37,0.0 +16623,51,53,17,0.0 +16623,18,62.5,13,0.0 +16623,65,21.05,44,0.0 +16623,45,9.5,35,0.0 +16623,69,36,48,0.0 +16623,23,9,50,0.0 +16623,21,10,4,0.0 +16623,13,6,46,0.0 +16623,55,24,45,0.0 +16623,20,81,27,0.0 +16623,27,43.9,26,0.0 +16623,31,12.5,10,0.0 +16623,73,15,21,0.0 +16623,12,38,18,0.0 +16623,7,30,33,0.0 +16623,15,15.5,41,0.0 +16623,67,14,15,0.0 +16623,48,12.75,2,0.0 +16623,52,7,15,0.0 +16623,30,25.89,50,0.0 +16623,62,49.3,13,0.0 +16623,4,22,6,0.0 +16623,26,31.23,1,0.0 +16623,1,18,32,0.0 +16623,38,263.5,38,0.0 +16623,43,46,8,0.0 +16623,75,7.75,26,0.0 +16624,29,123.79,50,0.0 +16624,74,10,35,0.0 +16624,60,34,30,0.0 +16624,12,38,25,0.0 +16624,69,36,12,0.0 +16624,14,23.25,24,0.0 +16624,18,62.5,5,0.0 +16624,38,263.5,48,0.0 +16624,52,7,5,0.0 +16624,19,9.2,3,0.0 +16624,66,17,40,0.0 +16624,26,31.23,4,0.0 +16624,5,21.35,41,0.0 +16624,30,25.89,24,0.0 +16624,40,18.4,3,0.0 +16624,48,12.75,45,0.0 +16624,27,43.9,11,0.0 +16624,59,55,14,0.0 +16624,11,21,43,0.0 +16624,61,28.5,23,0.0 +16624,25,14,33,0.0 +16624,57,19.5,22,0.0 +16624,22,21,39,0.0 +16624,76,18,16,0.0 +16624,13,6,3,0.0 +16624,63,43.9,20,0.0 +16624,73,15,29,0.0 +16624,49,20,49,0.0 +16624,65,21.05,17,0.0 +16624,4,22,9,0.0 +16624,45,9.5,20,0.0 +16624,72,34.8,6,0.0 +16624,68,12.5,23,0.0 +16624,71,21.5,12,0.0 +16624,58,13.25,35,0.0 +16624,31,12.5,23,0.0 +16624,1,18,39,0.0 +16624,10,31,16,0.0 +16624,33,2.5,43,0.0 +16624,51,53,4,0.0 +16624,55,24,27,0.0 +16624,20,81,6,0.0 +16624,34,14,47,0.0 +16624,7,30,26,0.0 +16624,16,17.45,7,0.0 +16624,67,14,27,0.0 +16624,17,39,48,0.0 +16624,3,10,48,0.0 +16624,37,26,15,0.0 +16624,24,4.5,21,0.0 +16624,53,32.8,28,0.0 +16624,47,9.5,8,0.0 +16624,21,10,21,0.0 +16624,56,38,26,0.0 +16624,9,97,50,0.0 +16624,39,18,36,0.0 +16624,44,19.45,2,0.0 +16624,43,46,23,0.0 +16624,50,16.25,10,0.0 +16624,28,45.6,23,0.0 +16624,41,9.65,49,0.0 +16625,35,18,14,0.0 +16625,42,14,37,0.0 +16625,39,18,35,0.0 +16625,53,32.8,19,0.0 +16625,50,16.25,44,0.0 +16625,69,36,6,0.0 +16625,11,21,43,0.0 +16625,46,12,25,0.0 +16625,31,12.5,16,0.0 +16625,56,38,7,0.0 +16625,65,21.05,18,0.0 +16625,44,19.45,45,0.0 +16625,74,10,45,0.0 +16625,38,263.5,26,0.0 +16625,7,30,25,0.0 +16625,13,6,46,0.0 +16625,71,21.5,20,0.0 +16625,72,34.8,8,0.0 +16625,16,17.45,35,0.0 +16625,19,9.2,24,0.0 +16625,20,81,26,0.0 +16625,45,9.5,42,0.0 +16625,25,14,40,0.0 +16625,33,2.5,42,0.0 +16625,23,9,21,0.0 +16625,1,18,21,0.0 +16625,68,12.5,14,0.0 +16625,47,9.5,24,0.0 +16625,26,31.23,47,0.0 +16625,66,17,3,0.0 +16625,55,24,44,0.0 +16625,27,43.9,30,0.0 +16625,6,25,40,0.0 +16625,21,10,24,0.0 +16625,14,23.25,28,0.0 +16625,4,22,5,0.0 +16625,10,31,48,0.0 +16625,54,7.45,37,0.0 +16625,58,13.25,29,0.0 +16625,24,4.5,42,0.0 +16625,76,18,25,0.0 +16625,40,18.4,36,0.0 +16625,32,32,36,0.0 +16625,64,33.25,2,0.0 +16625,18,62.5,10,0.0 +16625,62,49.3,25,0.0 +16625,2,19,1,0.0 +16625,67,14,10,0.0 +16625,9,97,9,0.0 +16625,30,25.89,4,0.0 +16625,48,12.75,49,0.0 +16625,70,15,35,0.0 +16625,51,53,48,0.0 +16625,36,19,40,0.0 +16625,28,45.6,13,0.0 +16625,41,9.65,48,0.0 +16625,77,13,23,0.0 +16625,73,15,12,0.0 +16625,57,19.5,20,0.0 +16625,17,39,33,0.0 +16625,12,38,17,0.0 +16625,63,43.9,33,0.0 +16626,34,14,20,0.0 +16626,46,12,45,0.0 +16626,50,16.25,37,0.0 +16626,66,17,5,0.0 +16626,27,43.9,37,0.0 +16626,63,43.9,26,0.0 +16626,35,18,9,0.0 +16626,48,12.75,35,0.0 +16626,51,53,4,0.0 +16626,13,6,43,0.0 +16626,39,18,10,0.0 +16626,53,32.8,12,0.0 +16626,75,7.75,4,0.0 +16626,67,14,7,0.0 +16626,21,10,48,0.0 +16626,59,55,49,0.0 +16626,56,38,30,0.0 +16626,20,81,38,0.0 +16626,68,12.5,24,0.0 +16626,7,30,16,0.0 +16626,15,15.5,39,0.0 +16626,44,19.45,46,0.0 +16626,9,97,31,0.0 +16626,10,31,19,0.0 +16626,55,24,50,0.0 +16626,69,36,22,0.0 +16626,40,18.4,29,0.0 +16626,47,9.5,35,0.0 +16626,43,46,18,0.0 +16626,49,20,43,0.0 +16626,28,45.6,16,0.0 +16626,62,49.3,17,0.0 +16626,3,10,38,0.0 +16626,25,14,1,0.0 +16626,60,34,43,0.0 +16626,52,7,16,0.0 +16626,6,25,47,0.0 +16626,54,7.45,4,0.0 +16626,14,23.25,25,0.0 +16626,29,123.79,23,0.0 +16626,57,19.5,28,0.0 +16626,77,13,3,0.0 +16626,72,34.8,1,0.0 +16626,1,18,39,0.0 +16626,19,9.2,18,0.0 +16626,64,33.25,47,0.0 +16626,38,263.5,26,0.0 +16626,58,13.25,49,0.0 +16626,70,15,33,0.0 +16626,41,9.65,1,0.0 +16626,31,12.5,45,0.0 +16626,16,17.45,26,0.0 +16626,61,28.5,26,0.0 +16626,33,2.5,16,0.0 +16626,26,31.23,35,0.0 +16626,37,26,10,0.0 +16626,2,19,9,0.0 +16626,45,9.5,48,0.0 +16626,17,39,32,0.0 +16626,30,25.89,15,0.0 +16626,11,21,15,0.0 +16626,5,21.35,18,0.0 +16626,22,21,5,0.0 +16626,71,21.5,33,0.0 +16626,18,62.5,48,0.0 +16626,73,15,13,0.0 +16626,12,38,35,0.0 +16626,8,40,18,0.0 +16626,36,19,36,0.0 +16626,4,22,13,0.0 +16626,32,32,50,0.0 +16626,74,10,13,0.0 +16626,76,18,5,0.0 +16626,23,9,49,0.0 +16626,24,4.5,16,0.0 +16626,42,14,44,0.0 +16627,66,17,38,0.0 +16627,50,16.25,12,0.0 +16627,26,31.23,32,0.0 +16627,67,14,24,0.0 +16627,14,23.25,28,0.0 +16627,25,14,34,0.0 +16627,72,34.8,47,0.0 +16627,12,38,17,0.0 +16627,43,46,15,0.0 +16627,57,19.5,34,0.0 +16627,55,24,13,0.0 +16627,31,12.5,14,0.0 +16627,47,9.5,23,0.0 +16627,58,13.25,7,0.0 +16627,70,15,17,0.0 +16627,33,2.5,17,0.0 +16627,41,9.65,7,0.0 +16627,35,18,44,0.0 +16627,48,12.75,43,0.0 +16627,6,25,15,0.0 +16627,15,15.5,35,0.0 +16627,69,36,43,0.0 +16627,54,7.45,28,0.0 +16627,49,20,24,0.0 +16627,20,81,8,0.0 +16627,19,9.2,9,0.0 +16627,4,22,36,0.0 +16627,18,62.5,24,0.0 +16627,3,10,48,0.0 +16627,53,32.8,29,0.0 +16627,2,19,48,0.0 +16627,13,6,49,0.0 +16627,51,53,9,0.0 +16627,8,40,25,0.0 +16627,60,34,17,0.0 +16627,77,13,38,0.0 +16627,65,21.05,45,0.0 +16627,30,25.89,23,0.0 +16627,21,10,4,0.0 +16627,68,12.5,18,0.0 +16627,10,31,16,0.0 +16627,34,14,3,0.0 +16627,17,39,24,0.0 +16627,22,21,23,0.0 +16627,63,43.9,12,0.0 +16627,71,21.5,24,0.0 +16627,45,9.5,24,0.0 +16627,42,14,41,0.0 +16627,74,10,15,0.0 +16627,44,19.45,26,0.0 +16627,24,4.5,28,0.0 +16627,36,19,46,0.0 +16627,29,123.79,23,0.0 +16627,1,18,36,0.0 +16627,27,43.9,25,0.0 +16627,59,55,21,0.0 +16627,46,12,29,0.0 +16627,23,9,16,0.0 +16627,16,17.45,14,0.0 +16627,75,7.75,2,0.0 +16627,11,21,45,0.0 +16627,64,33.25,18,0.0 +16627,28,45.6,3,0.0 +16627,62,49.3,5,0.0 +16627,76,18,33,0.0 +16627,40,18.4,29,0.0 +16627,56,38,9,0.0 +16628,33,2.5,17,0.0 +16628,53,32.8,4,0.0 +16628,68,12.5,21,0.0 +16628,75,7.75,37,0.0 +16628,23,9,50,0.0 +16628,66,17,33,0.0 +16628,47,9.5,5,0.0 +16628,44,19.45,21,0.0 +16628,39,18,21,0.0 +16628,21,10,14,0.0 +16628,24,4.5,47,0.0 +16628,13,6,37,0.0 +16628,2,19,39,0.0 +16628,14,23.25,37,0.0 +16628,55,24,36,0.0 +16628,6,25,12,0.0 +16628,64,33.25,24,0.0 +16628,27,43.9,7,0.0 +16628,57,19.5,38,0.0 +16628,54,7.45,6,0.0 +16628,37,26,12,0.0 +16628,60,34,22,0.0 +16628,34,14,27,0.0 +16628,42,14,5,0.0 +16629,62,49.3,32,0.0 +16629,60,34,27,0.0 +16629,22,21,8,0.0 +16629,20,81,31,0.0 +16629,72,34.8,18,0.0 +16629,32,32,42,0.0 +16629,26,31.23,7,0.0 +16629,67,14,11,0.0 +16629,68,12.5,29,0.0 +16629,55,24,26,0.0 +16629,48,12.75,46,0.0 +16629,39,18,12,0.0 +16629,35,18,23,0.0 +16629,5,21.35,37,0.0 +16629,29,123.79,29,0.0 +16629,40,18.4,21,0.0 +16629,65,21.05,1,0.0 +16629,63,43.9,4,0.0 +16629,12,38,49,0.0 +16629,43,46,33,0.0 +16629,6,25,43,0.0 +16629,53,32.8,16,0.0 +16629,17,39,39,0.0 +16629,34,14,43,0.0 +16629,15,15.5,1,0.0 +16629,19,9.2,43,0.0 +16629,4,22,12,0.0 +16629,36,19,39,0.0 +16629,56,38,33,0.0 +16629,33,2.5,18,0.0 +16629,18,62.5,25,0.0 +16629,38,263.5,33,0.0 +16629,58,13.25,30,0.0 +16629,59,55,46,0.0 +16629,47,9.5,32,0.0 +16629,74,10,48,0.0 +16629,57,19.5,12,0.0 +16629,66,17,20,0.0 +16629,9,97,21,0.0 +16629,30,25.89,17,0.0 +16629,44,19.45,8,0.0 +16629,14,23.25,34,0.0 +16629,28,45.6,31,0.0 +16629,21,10,27,0.0 +16629,46,12,45,0.0 +16629,31,12.5,46,0.0 +16629,8,40,46,0.0 +16629,70,15,11,0.0 +16629,76,18,36,0.0 +16629,64,33.25,10,0.0 +16629,54,7.45,29,0.0 +16629,42,14,47,0.0 +16629,51,53,29,0.0 +16629,16,17.45,37,0.0 +16629,45,9.5,25,0.0 +16629,71,21.5,35,0.0 +16629,50,16.25,27,0.0 +16629,52,7,14,0.0 +16629,24,4.5,26,0.0 +16629,7,30,28,0.0 +16629,10,31,44,0.0 +16629,69,36,29,0.0 +16629,3,10,22,0.0 +16629,41,9.65,18,0.0 +16629,61,28.5,22,0.0 +16629,2,19,15,0.0 +16629,11,21,7,0.0 +16629,73,15,21,0.0 +16629,13,6,2,0.0 +16629,37,26,48,0.0 +16629,23,9,16,0.0 +16629,77,13,33,0.0 +16630,41,9.65,11,0.0 +16630,42,14,27,0.0 +16630,15,15.5,36,0.0 +16630,77,13,49,0.0 +16630,58,13.25,29,0.0 +16630,39,18,11,0.0 +16630,60,34,44,0.0 +16630,38,263.5,2,0.0 +16630,9,97,45,0.0 +16631,2,19,29,0.0 +16631,17,39,35,0.0 +16631,18,62.5,47,0.0 +16631,10,31,27,0.0 +16631,3,10,23,0.0 +16631,60,34,35,0.0 +16631,8,40,36,0.0 +16631,74,10,37,0.0 +16631,16,17.45,23,0.0 +16631,44,19.45,23,0.0 +16631,66,17,48,0.0 +16631,43,46,50,0.0 +16631,72,34.8,11,0.0 +16631,29,123.79,19,0.0 +16631,41,9.65,38,0.0 +16631,22,21,17,0.0 +16631,71,21.5,32,0.0 +16631,65,21.05,14,0.0 +16631,53,32.8,21,0.0 +16631,57,19.5,21,0.0 +16631,37,26,40,0.0 +16631,11,21,50,0.0 +16631,36,19,47,0.0 +16631,59,55,50,0.0 +16631,25,14,4,0.0 +16631,39,18,6,0.0 +16631,75,7.75,11,0.0 +16631,13,6,46,0.0 +16632,14,23.25,36,0.0 +16632,67,14,35,0.0 +16632,3,10,43,0.0 +16632,5,21.35,18,0.0 +16632,45,9.5,2,0.0 +16632,63,43.9,21,0.0 +16632,59,55,17,0.0 +16632,64,33.25,38,0.0 +16632,24,4.5,23,0.0 +16632,28,45.6,43,0.0 +16632,52,7,19,0.0 +16632,35,18,30,0.0 +16632,8,40,19,0.0 +16632,55,24,3,0.0 +16632,12,38,8,0.0 +16632,68,12.5,6,0.0 +16632,29,123.79,23,0.0 +16632,4,22,20,0.0 +16632,40,18.4,42,0.0 +16632,57,19.5,11,0.0 +16632,75,7.75,14,0.0 +16632,30,25.89,46,0.0 +16632,27,43.9,10,0.0 +16632,7,30,1,0.0 +16632,69,36,10,0.0 +16632,17,39,50,0.0 +16632,73,15,4,0.0 +16632,42,14,43,0.0 +16632,21,10,14,0.0 +16632,71,21.5,26,0.0 +16632,39,18,11,0.0 +16632,48,12.75,50,0.0 +16632,54,7.45,23,0.0 +16632,74,10,1,0.0 +16632,66,17,37,0.0 +16632,50,16.25,25,0.0 +16632,65,21.05,30,0.0 +16632,44,19.45,19,0.0 +16632,49,20,20,0.0 +16633,75,7.75,15,0.0 +16633,54,7.45,11,0.0 +16633,27,43.9,32,0.0 +16633,21,10,15,0.0 +16633,55,24,48,0.0 +16633,29,123.79,19,0.0 +16633,5,21.35,36,0.0 +16633,46,12,5,0.0 +16633,49,20,7,0.0 +16633,16,17.45,47,0.0 +16633,34,14,35,0.0 +16633,73,15,6,0.0 +16633,6,25,11,0.0 +16633,32,32,16,0.0 +16633,60,34,49,0.0 +16633,35,18,4,0.0 +16633,9,97,49,0.0 +16633,51,53,36,0.0 +16633,43,46,5,0.0 +16633,8,40,2,0.0 +16633,26,31.23,3,0.0 +16633,52,7,27,0.0 +16633,38,263.5,10,0.0 +16633,69,36,42,0.0 +16633,23,9,24,0.0 +16633,50,16.25,17,0.0 +16633,17,39,3,0.0 +16633,71,21.5,46,0.0 +16633,76,18,24,0.0 +16633,63,43.9,19,0.0 +16633,25,14,33,0.0 +16633,28,45.6,50,0.0 +16633,3,10,34,0.0 +16633,19,9.2,47,0.0 +16633,39,18,45,0.0 +16633,44,19.45,34,0.0 +16633,64,33.25,15,0.0 +16634,54,7.45,19,0.0 +16634,1,18,11,0.0 +16634,47,9.5,46,0.0 +16635,69,36,28,0.0 +16635,66,17,41,0.0 +16636,38,263.5,5,0.0 +16636,9,97,46,0.0 +16636,29,123.79,1,0.0 +16636,11,21,47,0.0 +16636,5,21.35,8,0.0 +16636,24,4.5,41,0.0 +16636,63,43.9,6,0.0 +16636,49,20,11,0.0 +16636,27,43.9,29,0.0 +16636,44,19.45,30,0.0 +16636,8,40,35,0.0 +16636,35,18,19,0.0 +16636,69,36,47,0.0 +16636,22,21,29,0.0 +16636,73,15,3,0.0 +16636,52,7,35,0.0 +16636,59,55,6,0.0 +16636,66,17,11,0.0 +16636,33,2.5,46,0.0 +16636,51,53,22,0.0 +16636,25,14,12,0.0 +16636,7,30,19,0.0 +16636,45,9.5,13,0.0 +16636,70,15,22,0.0 +16636,50,16.25,1,0.0 +16636,56,38,29,0.0 +16636,6,25,35,0.0 +16636,46,12,41,0.0 +16636,40,18.4,13,0.0 +16636,13,6,41,0.0 +16636,60,34,49,0.0 +16636,53,32.8,40,0.0 +16636,4,22,35,0.0 +16636,17,39,20,0.0 +16636,39,18,27,0.0 +16636,48,12.75,34,0.0 +16636,14,23.25,37,0.0 +16636,37,26,47,0.0 +16636,65,21.05,25,0.0 +16636,15,15.5,35,0.0 +16636,74,10,3,0.0 +16636,36,19,10,0.0 +16636,21,10,11,0.0 +16636,12,38,30,0.0 +16636,58,13.25,38,0.0 +16636,47,9.5,48,0.0 +16636,3,10,31,0.0 +16636,75,7.75,16,0.0 +16636,57,19.5,4,0.0 +16636,10,31,12,0.0 +16636,1,18,25,0.0 +16636,62,49.3,46,0.0 +16636,54,7.45,34,0.0 +16636,28,45.6,12,0.0 +16636,43,46,1,0.0 +16636,31,12.5,19,0.0 +16636,61,28.5,9,0.0 +16636,55,24,32,0.0 +16636,76,18,45,0.0 +16636,16,17.45,25,0.0 +16636,77,13,50,0.0 +16636,2,19,34,0.0 +16636,20,81,42,0.0 +16636,23,9,13,0.0 +16636,67,14,39,0.0 +16636,68,12.5,38,0.0 +16636,72,34.8,48,0.0 +16636,26,31.23,43,0.0 +16636,18,62.5,34,0.0 +16636,41,9.65,46,0.0 +16636,64,33.25,1,0.0 +16636,19,9.2,14,0.0 +16636,42,14,16,0.0 +16637,70,15,14,0.0 +16637,6,25,42,0.0 +16637,5,21.35,44,0.0 +16637,3,10,30,0.0 +16637,36,19,7,0.0 +16637,8,40,42,0.0 +16637,13,6,32,0.0 +16637,50,16.25,32,0.0 +16637,15,15.5,5,0.0 +16637,33,2.5,31,0.0 +16637,63,43.9,13,0.0 +16637,45,9.5,40,0.0 +16637,57,19.5,24,0.0 +16637,38,263.5,27,0.0 +16637,69,36,7,0.0 +16637,58,13.25,40,0.0 +16637,26,31.23,2,0.0 +16637,53,32.8,1,0.0 +16637,9,97,23,0.0 +16637,71,21.5,18,0.0 +16637,76,18,11,0.0 +16637,72,34.8,20,0.0 +16637,11,21,13,0.0 +16637,62,49.3,48,0.0 +16637,64,33.25,33,0.0 +16637,44,19.45,20,0.0 +16637,4,22,41,0.0 +16637,37,26,47,0.0 +16637,51,53,45,0.0 +16637,7,30,33,0.0 +16637,31,12.5,10,0.0 +16637,60,34,50,0.0 +16637,17,39,36,0.0 +16637,54,7.45,17,0.0 +16637,22,21,32,0.0 +16637,65,21.05,42,0.0 +16637,66,17,12,0.0 +16637,20,81,35,0.0 +16638,73,15,33,0.0 +16638,53,32.8,50,0.0 +16638,6,25,6,0.0 +16638,76,18,9,0.0 +16638,58,13.25,36,0.0 +16638,13,6,18,0.0 +16638,4,22,39,0.0 +16638,49,20,24,0.0 +16638,26,31.23,21,0.0 +16638,59,55,23,0.0 +16638,51,53,49,0.0 +16638,25,14,31,0.0 +16638,28,45.6,10,0.0 +16638,44,19.45,23,0.0 +16638,15,15.5,15,0.0 +16638,48,12.75,8,0.0 +16638,55,24,50,0.0 +16638,72,34.8,31,0.0 +16638,69,36,20,0.0 +16638,61,28.5,47,0.0 +16638,24,4.5,42,0.0 +16638,14,23.25,7,0.0 +16638,27,43.9,8,0.0 +16638,71,21.5,23,0.0 +16638,33,2.5,23,0.0 +16638,18,62.5,26,0.0 +16638,57,19.5,24,0.0 +16639,27,43.9,43,0.0 +16639,13,6,21,0.0 +16639,21,10,11,0.0 +16639,67,14,42,0.0 +16639,71,21.5,17,0.0 +16639,17,39,29,0.0 +16639,24,4.5,23,0.0 +16639,66,17,50,0.0 +16639,12,38,12,0.0 +16639,63,43.9,10,0.0 +16639,18,62.5,6,0.0 +16639,23,9,10,0.0 +16639,36,19,12,0.0 +16639,47,9.5,39,0.0 +16639,38,263.5,22,0.0 +16639,49,20,8,0.0 +16639,42,14,12,0.0 +16639,39,18,33,0.0 +16639,11,21,41,0.0 +16639,64,33.25,42,0.0 +16639,33,2.5,23,0.0 +16639,59,55,34,0.0 +16639,70,15,28,0.0 +16639,43,46,4,0.0 +16639,37,26,3,0.0 +16639,75,7.75,19,0.0 +16639,57,19.5,18,0.0 +16639,61,28.5,30,0.0 +16639,9,97,26,0.0 +16639,20,81,38,0.0 +16639,55,24,9,0.0 +16639,31,12.5,1,0.0 +16639,52,7,36,0.0 +16639,50,16.25,27,0.0 +16639,62,49.3,47,0.0 +16639,30,25.89,30,0.0 +16639,2,19,9,0.0 +16639,3,10,5,0.0 +16639,76,18,5,0.0 +16639,29,123.79,24,0.0 +16639,26,31.23,11,0.0 +16639,77,13,4,0.0 +16639,48,12.75,23,0.0 +16639,44,19.45,20,0.0 +16639,35,18,31,0.0 +16639,16,17.45,6,0.0 +16639,34,14,8,0.0 +16639,60,34,45,0.0 +16639,73,15,12,0.0 +16639,69,36,24,0.0 +16639,14,23.25,31,0.0 +16639,45,9.5,27,0.0 +16639,41,9.65,16,0.0 +16640,61,28.5,32,0.0 +16640,52,7,31,0.0 +16640,67,14,27,0.0 +16640,69,36,22,0.0 +16640,1,18,12,0.0 +16640,22,21,9,0.0 +16640,13,6,39,0.0 +16640,50,16.25,27,0.0 +16640,31,12.5,38,0.0 +16640,10,31,29,0.0 +16640,76,18,36,0.0 +16640,24,4.5,42,0.0 +16640,55,24,15,0.0 +16640,42,14,6,0.0 +16640,34,14,28,0.0 +16640,74,10,18,0.0 +16640,68,12.5,30,0.0 +16640,75,7.75,28,0.0 +16640,30,25.89,1,0.0 +16640,56,38,40,0.0 +16640,36,19,16,0.0 +16640,33,2.5,37,0.0 +16640,58,13.25,43,0.0 +16640,59,55,3,0.0 +16640,26,31.23,8,0.0 +16640,35,18,3,0.0 +16640,17,39,30,0.0 +16640,18,62.5,25,0.0 +16640,44,19.45,48,0.0 +16640,70,15,2,0.0 +16640,54,7.45,32,0.0 +16640,60,34,20,0.0 +16640,2,19,16,0.0 +16640,23,9,43,0.0 +16640,19,9.2,47,0.0 +16640,46,12,25,0.0 +16640,5,21.35,47,0.0 +16640,8,40,3,0.0 +16640,77,13,3,0.0 +16640,48,12.75,24,0.0 +16640,47,9.5,47,0.0 +16640,37,26,33,0.0 +16640,11,21,24,0.0 +16640,27,43.9,46,0.0 +16640,15,15.5,18,0.0 +16640,9,97,37,0.0 +16640,7,30,42,0.0 +16640,53,32.8,42,0.0 +16640,28,45.6,40,0.0 +16640,62,49.3,9,0.0 +16641,38,263.5,29,0.0 +16641,54,7.45,12,0.0 +16641,51,53,3,0.0 +16641,66,17,11,0.0 +16641,49,20,46,0.0 +16641,68,12.5,9,0.0 +16641,36,19,40,0.0 +16641,5,21.35,8,0.0 +16641,25,14,20,0.0 +16641,20,81,42,0.0 +16641,27,43.9,46,0.0 +16641,24,4.5,43,0.0 +16641,9,97,22,0.0 +16641,75,7.75,21,0.0 +16641,70,15,22,0.0 +16641,2,19,23,0.0 +16641,56,38,14,0.0 +16641,1,18,24,0.0 +16641,30,25.89,8,0.0 +16641,73,15,2,0.0 +16641,22,21,33,0.0 +16641,67,14,38,0.0 +16641,61,28.5,25,0.0 +16641,44,19.45,32,0.0 +16641,32,32,45,0.0 +16641,41,9.65,19,0.0 +16641,50,16.25,34,0.0 +16641,10,31,36,0.0 +16641,6,25,3,0.0 +16641,33,2.5,38,0.0 +16641,17,39,34,0.0 +16641,77,13,20,0.0 +16641,37,26,22,0.0 +16641,23,9,34,0.0 +16641,29,123.79,24,0.0 +16641,31,12.5,42,0.0 +16641,3,10,6,0.0 +16641,43,46,16,0.0 +16641,8,40,44,0.0 +16641,13,6,5,0.0 +16641,52,7,32,0.0 +16641,15,15.5,23,0.0 +16641,58,13.25,13,0.0 +16641,62,49.3,29,0.0 +16641,64,33.25,9,0.0 +16641,60,34,16,0.0 +16641,19,9.2,8,0.0 +16641,46,12,10,0.0 +16641,40,18.4,48,0.0 +16641,59,55,19,0.0 +16641,18,62.5,27,0.0 +16641,74,10,50,0.0 +16641,4,22,12,0.0 +16641,11,21,21,0.0 +16641,45,9.5,46,0.0 +16641,48,12.75,42,0.0 +16641,71,21.5,4,0.0 +16641,76,18,37,0.0 +16641,34,14,20,0.0 +16641,72,34.8,38,0.0 +16641,16,17.45,9,0.0 +16641,14,23.25,13,0.0 +16641,39,18,45,0.0 +16641,26,31.23,32,0.0 +16641,65,21.05,25,0.0 +16641,47,9.5,47,0.0 +16641,55,24,4,0.0 +16641,28,45.6,36,0.0 +16641,42,14,46,0.0 +16641,12,38,25,0.0 +16641,63,43.9,49,0.0 +16641,57,19.5,50,0.0 +16641,35,18,37,0.0 +16641,21,10,31,0.0 +16641,53,32.8,27,0.0 +16642,39,18,36,0.0 +16642,1,18,37,0.0 +16642,43,46,50,0.0 +16642,18,62.5,50,0.0 +16642,14,23.25,25,0.0 +16642,65,21.05,24,0.0 +16642,64,33.25,1,0.0 +16642,72,34.8,45,0.0 +16642,76,18,1,0.0 +16642,21,10,22,0.0 +16642,11,21,18,0.0 +16642,45,9.5,25,0.0 +16642,57,19.5,27,0.0 +16642,13,6,33,0.0 +16642,30,25.89,18,0.0 +16642,12,38,41,0.0 +16642,63,43.9,45,0.0 +16642,68,12.5,9,0.0 +16642,40,18.4,2,0.0 +16642,67,14,37,0.0 +16642,31,12.5,38,0.0 +16642,6,25,49,0.0 +16642,77,13,9,0.0 +16642,59,55,32,0.0 +16642,27,43.9,39,0.0 +16642,75,7.75,38,0.0 +16642,26,31.23,23,0.0 +16642,28,45.6,28,0.0 +16642,8,40,43,0.0 +16642,15,15.5,47,0.0 +16642,58,13.25,24,0.0 +16642,61,28.5,48,0.0 +16642,36,19,32,0.0 +16642,69,36,17,0.0 +16642,10,31,6,0.0 +16642,16,17.45,22,0.0 +16642,53,32.8,19,0.0 +16642,9,97,32,0.0 +16642,23,9,29,0.0 +16642,56,38,44,0.0 +16642,19,9.2,22,0.0 +16642,41,9.65,10,0.0 +16642,25,14,20,0.0 +16643,77,13,31,0.0 +16643,23,9,49,0.0 +16643,10,31,49,0.0 +16643,73,15,9,0.0 +16643,21,10,41,0.0 +16643,42,14,34,0.0 +16643,74,10,7,0.0 +16643,40,18.4,35,0.0 +16643,22,21,3,0.0 +16643,18,62.5,29,0.0 +16643,29,123.79,12,0.0 +16643,59,55,18,0.0 +16643,75,7.75,8,0.0 +16643,12,38,50,0.0 +16643,43,46,10,0.0 +16643,63,43.9,46,0.0 +16643,58,13.25,15,0.0 +16643,34,14,9,0.0 +16643,1,18,12,0.0 +16643,25,14,5,0.0 +16643,72,34.8,42,0.0 +16643,69,36,13,0.0 +16643,44,19.45,22,0.0 +16643,11,21,47,0.0 +16643,3,10,37,0.0 +16644,2,19,1,0.0 +16644,49,20,13,0.0 +16644,58,13.25,26,0.0 +16644,55,24,1,0.0 +16644,73,15,34,0.0 +16644,62,49.3,35,0.0 +16644,45,9.5,8,0.0 +16644,36,19,27,0.0 +16644,42,14,45,0.0 +16644,75,7.75,45,0.0 +16644,6,25,39,0.0 +16644,68,12.5,21,0.0 +16644,18,62.5,34,0.0 +16644,5,21.35,23,0.0 +16644,52,7,26,0.0 +16644,65,21.05,45,0.0 +16644,29,123.79,15,0.0 +16644,46,12,39,0.0 +16644,21,10,13,0.0 +16644,69,36,47,0.0 +16644,14,23.25,12,0.0 +16644,54,7.45,34,0.0 +16644,7,30,28,0.0 +16644,43,46,47,0.0 +16644,10,31,20,0.0 +16645,39,18,23,0.0 +16645,33,2.5,36,0.0 +16645,21,10,15,0.0 +16645,46,12,5,0.0 +16645,2,19,3,0.0 +16645,28,45.6,43,0.0 +16645,31,12.5,38,0.0 +16645,10,31,3,0.0 +16645,73,15,16,0.0 +16645,49,20,27,0.0 +16645,71,21.5,43,0.0 +16645,24,4.5,38,0.0 +16645,40,18.4,23,0.0 +16645,18,62.5,8,0.0 +16645,52,7,17,0.0 +16645,56,38,21,0.0 +16645,55,24,4,0.0 +16645,7,30,39,0.0 +16645,50,16.25,35,0.0 +16645,69,36,9,0.0 +16645,11,21,30,0.0 +16645,60,34,39,0.0 +16645,15,15.5,1,0.0 +16645,43,46,50,0.0 +16645,76,18,28,0.0 +16645,66,17,35,0.0 +16645,8,40,24,0.0 +16645,57,19.5,11,0.0 +16645,27,43.9,50,0.0 +16645,42,14,1,0.0 +16645,45,9.5,41,0.0 +16645,5,21.35,50,0.0 +16645,44,19.45,15,0.0 +16645,35,18,34,0.0 +16645,70,15,48,0.0 +16645,16,17.45,27,0.0 +16645,14,23.25,45,0.0 +16645,22,21,32,0.0 +16645,72,34.8,19,0.0 +16645,77,13,33,0.0 +16645,26,31.23,20,0.0 +16645,36,19,22,0.0 +16645,41,9.65,36,0.0 +16645,58,13.25,4,0.0 +16645,9,97,28,0.0 +16645,51,53,9,0.0 +16646,31,12.5,34,0.0 +16646,77,13,10,0.0 +16646,38,263.5,31,0.0 +16646,35,18,37,0.0 +16646,39,18,26,0.0 +16646,66,17,14,0.0 +16646,55,24,12,0.0 +16646,68,12.5,46,0.0 +16646,58,13.25,4,0.0 +16646,18,62.5,46,0.0 +16646,19,9.2,1,0.0 +16646,65,21.05,10,0.0 +16646,5,21.35,14,0.0 +16646,71,21.5,47,0.0 +16646,28,45.6,37,0.0 +16646,47,9.5,31,0.0 +16646,60,34,12,0.0 +16646,12,38,30,0.0 +16646,64,33.25,35,0.0 +16646,41,9.65,15,0.0 +16646,21,10,29,0.0 +16646,6,25,31,0.0 +16646,27,43.9,18,0.0 +16646,52,7,34,0.0 +16646,26,31.23,48,0.0 +16646,1,18,37,0.0 +16646,67,14,6,0.0 +16646,45,9.5,25,0.0 +16646,8,40,32,0.0 +16646,29,123.79,29,0.0 +16646,76,18,20,0.0 +16646,51,53,48,0.0 +16646,15,15.5,14,0.0 +16646,10,31,32,0.0 +16646,50,16.25,48,0.0 +16647,76,18,38,0.0 +16647,34,14,24,0.0 +16647,75,7.75,27,0.0 +16647,60,34,32,0.0 +16647,48,12.75,16,0.0 +16647,68,12.5,22,0.0 +16647,41,9.65,41,0.0 +16647,71,21.5,29,0.0 +16647,18,62.5,30,0.0 +16647,65,21.05,4,0.0 +16647,25,14,50,0.0 +16647,10,31,38,0.0 +16647,19,9.2,5,0.0 +16647,30,25.89,48,0.0 +16647,40,18.4,37,0.0 +16647,44,19.45,36,0.0 +16647,64,33.25,33,0.0 +16647,51,53,43,0.0 +16647,23,9,11,0.0 +16647,7,30,50,0.0 +16647,28,45.6,42,0.0 +16647,55,24,5,0.0 +16647,63,43.9,17,0.0 +16647,73,15,35,0.0 +16647,42,14,45,0.0 +16647,66,17,42,0.0 +16647,43,46,37,0.0 +16647,38,263.5,28,0.0 +16647,49,20,38,0.0 +16647,11,21,50,0.0 +16647,47,9.5,46,0.0 +16647,3,10,40,0.0 +16647,16,17.45,43,0.0 +16647,4,22,39,0.0 +16647,69,36,15,0.0 +16647,70,15,22,0.0 +16648,34,14,6,0.0 +16648,11,21,15,0.0 +16648,61,28.5,6,0.0 +16648,2,19,18,0.0 +16649,22,21,32,0.0 +16649,57,19.5,25,0.0 +16649,49,20,39,0.0 +16649,1,18,44,0.0 +16649,41,9.65,29,0.0 +16649,5,21.35,8,0.0 +16649,66,17,48,0.0 +16649,60,34,50,0.0 +16649,29,123.79,6,0.0 +16649,46,12,9,0.0 +16649,27,43.9,32,0.0 +16649,9,97,20,0.0 +16649,65,21.05,12,0.0 +16649,44,19.45,3,0.0 +16649,68,12.5,7,0.0 +16649,18,62.5,39,0.0 +16649,40,18.4,38,0.0 +16649,16,17.45,4,0.0 +16649,23,9,21,0.0 +16649,51,53,25,0.0 +16649,71,21.5,12,0.0 +16649,62,49.3,50,0.0 +16649,42,14,8,0.0 +16649,47,9.5,29,0.0 +16649,11,21,9,0.0 +16649,31,12.5,11,0.0 +16649,70,15,30,0.0 +16649,24,4.5,36,0.0 +16649,15,15.5,22,0.0 +16649,4,22,8,0.0 +16649,14,23.25,24,0.0 +16649,59,55,22,0.0 +16649,54,7.45,18,0.0 +16649,48,12.75,25,0.0 +16649,73,15,15,0.0 +16649,10,31,40,0.0 +16649,43,46,40,0.0 +16649,56,38,1,0.0 +16649,67,14,23,0.0 +16649,8,40,4,0.0 +16649,50,16.25,3,0.0 +16649,35,18,33,0.0 +16649,17,39,1,0.0 +16649,45,9.5,32,0.0 +16649,6,25,11,0.0 +16649,38,263.5,35,0.0 +16649,61,28.5,26,0.0 +16649,63,43.9,20,0.0 +16649,77,13,6,0.0 +16649,55,24,1,0.0 +16649,58,13.25,31,0.0 +16649,76,18,43,0.0 +16649,32,32,35,0.0 +16649,74,10,35,0.0 +16649,28,45.6,22,0.0 +16649,26,31.23,22,0.0 +16649,13,6,32,0.0 +16649,33,2.5,44,0.0 +16649,7,30,24,0.0 +16649,72,34.8,35,0.0 +16649,53,32.8,17,0.0 +16649,21,10,46,0.0 +16649,2,19,12,0.0 +16649,36,19,11,0.0 +16649,34,14,30,0.0 +16649,64,33.25,1,0.0 +16649,37,26,28,0.0 +16649,39,18,9,0.0 +16649,25,14,24,0.0 +16649,30,25.89,6,0.0 +16649,52,7,33,0.0 +16649,75,7.75,29,0.0 +16649,19,9.2,3,0.0 +16649,12,38,9,0.0 +16649,3,10,10,0.0 +16650,2,19,40,0.0 +16650,48,12.75,10,0.0 +16650,36,19,10,0.0 +16650,67,14,32,0.0 +16650,70,15,29,0.0 +16650,16,17.45,48,0.0 +16651,9,97,47,0.0 +16651,29,123.79,33,0.0 +16651,15,15.5,34,0.0 +16651,47,9.5,13,0.0 +16651,30,25.89,25,0.0 +16651,32,32,15,0.0 +16651,56,38,25,0.0 +16651,40,18.4,2,0.0 +16651,70,15,39,0.0 +16651,61,28.5,9,0.0 +16651,55,24,30,0.0 +16651,49,20,5,0.0 +16651,72,34.8,2,0.0 +16651,7,30,18,0.0 +16652,33,2.5,11,0.0 +16652,73,15,5,0.0 +16652,50,16.25,35,0.0 +16652,65,21.05,36,0.0 +16652,17,39,15,0.0 +16652,12,38,34,0.0 +16652,10,31,48,0.0 +16652,47,9.5,21,0.0 +16652,22,21,15,0.0 +16652,28,45.6,18,0.0 +16652,62,49.3,30,0.0 +16652,2,19,18,0.0 +16652,63,43.9,43,0.0 +16652,4,22,41,0.0 +16652,26,31.23,9,0.0 +16652,44,19.45,29,0.0 +16652,52,7,4,0.0 +16652,6,25,9,0.0 +16652,45,9.5,22,0.0 +16652,21,10,48,0.0 +16652,76,18,21,0.0 +16652,20,81,19,0.0 +16652,34,14,20,0.0 +16653,61,28.5,48,0.0 +16653,25,14,40,0.0 +16653,72,34.8,7,0.0 +16653,14,23.25,41,0.0 +16653,51,53,21,0.0 +16653,59,55,11,0.0 +16653,54,7.45,18,0.0 +16653,8,40,3,0.0 +16653,34,14,7,0.0 +16653,6,25,47,0.0 +16653,45,9.5,44,0.0 +16653,39,18,14,0.0 +16653,26,31.23,17,0.0 +16653,66,17,3,0.0 +16653,44,19.45,22,0.0 +16653,4,22,20,0.0 +16653,15,15.5,34,0.0 +16653,10,31,31,0.0 +16653,60,34,13,0.0 +16653,64,33.25,7,0.0 +16653,36,19,3,0.0 +16653,21,10,38,0.0 +16653,20,81,2,0.0 +16653,70,15,14,0.0 +16653,24,4.5,38,0.0 +16653,48,12.75,45,0.0 +16653,74,10,5,0.0 +16653,52,7,28,0.0 +16653,53,32.8,33,0.0 +16653,1,18,21,0.0 +16653,2,19,38,0.0 +16653,47,9.5,49,0.0 +16653,43,46,27,0.0 +16653,65,21.05,9,0.0 +16653,19,9.2,42,0.0 +16653,18,62.5,32,0.0 +16653,16,17.45,45,0.0 +16653,28,45.6,4,0.0 +16653,40,18.4,17,0.0 +16653,76,18,11,0.0 +16653,27,43.9,18,0.0 +16654,40,18.4,47,0.0 +16654,46,12,22,0.0 +16654,73,15,18,0.0 +16654,15,15.5,32,0.0 +16654,69,36,30,0.0 +16654,3,10,8,0.0 +16654,27,43.9,5,0.0 +16654,35,18,25,0.0 +16654,77,13,14,0.0 +16654,51,53,47,0.0 +16654,31,12.5,31,0.0 +16654,30,25.89,25,0.0 +16654,16,17.45,5,0.0 +16654,55,24,50,0.0 +16654,28,45.6,26,0.0 +16654,43,46,38,0.0 +16654,42,14,36,0.0 +16654,19,9.2,25,0.0 +16654,21,10,35,0.0 +16654,24,4.5,14,0.0 +16654,44,19.45,46,0.0 +16654,5,21.35,41,0.0 +16654,64,33.25,38,0.0 +16654,20,81,25,0.0 +16654,52,7,42,0.0 +16654,74,10,42,0.0 +16654,36,19,8,0.0 +16654,17,39,5,0.0 +16654,22,21,13,0.0 +16654,72,34.8,36,0.0 +16654,47,9.5,10,0.0 +16654,70,15,1,0.0 +16654,2,19,23,0.0 +16654,32,32,34,0.0 +16654,63,43.9,33,0.0 +16654,29,123.79,36,0.0 +16654,11,21,5,0.0 +16654,25,14,15,0.0 +16654,37,26,35,0.0 +16654,1,18,22,0.0 +16654,4,22,37,0.0 +16654,56,38,25,0.0 +16654,68,12.5,37,0.0 +16654,39,18,6,0.0 +16654,8,40,27,0.0 +16654,62,49.3,28,0.0 +16654,54,7.45,50,0.0 +16654,48,12.75,8,0.0 +16654,71,21.5,15,0.0 +16654,53,32.8,20,0.0 +16654,67,14,24,0.0 +16654,57,19.5,7,0.0 +16654,61,28.5,5,0.0 +16654,26,31.23,2,0.0 +16654,7,30,29,0.0 +16654,45,9.5,4,0.0 +16654,58,13.25,22,0.0 +16655,74,10,23,0.0 +16655,70,15,32,0.0 +16655,36,19,42,0.0 +16655,2,19,35,0.0 +16655,67,14,43,0.0 +16655,60,34,21,0.0 +16655,38,263.5,15,0.0 +16655,46,12,17,0.0 +16655,17,39,21,0.0 +16655,1,18,21,0.0 +16655,24,4.5,2,0.0 +16655,61,28.5,47,0.0 +16655,6,25,10,0.0 +16655,11,21,21,0.0 +16655,62,49.3,20,0.0 +16655,55,24,14,0.0 +16655,5,21.35,26,0.0 +16655,53,32.8,21,0.0 +16655,28,45.6,47,0.0 +16655,50,16.25,14,0.0 +16655,33,2.5,43,0.0 +16655,52,7,15,0.0 +16655,4,22,20,0.0 +16655,29,123.79,8,0.0 +16656,60,34,36,0.0 +16656,55,24,1,0.0 +16656,25,14,33,0.0 +16656,43,46,11,0.0 +16656,28,45.6,39,0.0 +16656,24,4.5,20,0.0 +16656,33,2.5,8,0.0 +16656,20,81,6,0.0 +16656,19,9.2,44,0.0 +16656,48,12.75,11,0.0 +16656,45,9.5,20,0.0 +16657,25,14,34,0.0 +16657,68,12.5,10,0.0 +16657,4,22,20,0.0 +16657,9,97,3,0.0 +16657,63,43.9,37,0.0 +16657,18,62.5,42,0.0 +16657,31,12.5,44,0.0 +16657,2,19,31,0.0 +16657,76,18,41,0.0 +16657,5,21.35,13,0.0 +16657,48,12.75,37,0.0 +16657,40,18.4,13,0.0 +16657,69,36,33,0.0 +16657,39,18,10,0.0 +16657,32,32,42,0.0 +16657,54,7.45,24,0.0 +16657,6,25,23,0.0 +16657,27,43.9,50,0.0 +16657,12,38,32,0.0 +16658,2,19,39,0.0 +16658,29,123.79,39,0.0 +16658,51,53,22,0.0 +16658,65,21.05,1,0.0 +16658,71,21.5,30,0.0 +16658,64,33.25,11,0.0 +16658,19,9.2,35,0.0 +16658,13,6,5,0.0 +16658,14,23.25,3,0.0 +16658,7,30,35,0.0 +16658,57,19.5,44,0.0 +16658,63,43.9,35,0.0 +16658,4,22,3,0.0 +16658,21,10,24,0.0 +16658,15,15.5,14,0.0 +16658,58,13.25,49,0.0 +16658,24,4.5,47,0.0 +16658,75,7.75,8,0.0 +16658,73,15,7,0.0 +16658,41,9.65,43,0.0 +16658,5,21.35,14,0.0 +16658,40,18.4,10,0.0 +16658,32,32,21,0.0 +16658,66,17,46,0.0 +16658,23,9,39,0.0 +16658,31,12.5,30,0.0 +16658,28,45.6,19,0.0 +16658,38,263.5,38,0.0 +16658,1,18,46,0.0 +16658,34,14,12,0.0 +16658,62,49.3,34,0.0 +16658,72,34.8,14,0.0 +16658,35,18,15,0.0 +16658,37,26,30,0.0 +16658,26,31.23,30,0.0 +16658,77,13,44,0.0 +16658,9,97,10,0.0 +16658,17,39,7,0.0 +16658,74,10,14,0.0 +16658,68,12.5,22,0.0 +16658,27,43.9,2,0.0 +16658,61,28.5,17,0.0 +16658,52,7,10,0.0 +16658,8,40,43,0.0 +16658,10,31,27,0.0 +16658,56,38,15,0.0 +16658,16,17.45,25,0.0 +16658,76,18,5,0.0 +16658,30,25.89,4,0.0 +16658,53,32.8,46,0.0 +16658,54,7.45,20,0.0 +16658,25,14,32,0.0 +16658,39,18,36,0.0 +16658,60,34,19,0.0 +16658,3,10,40,0.0 +16658,36,19,13,0.0 +16658,55,24,21,0.0 +16658,50,16.25,46,0.0 +16658,44,19.45,16,0.0 +16658,46,12,22,0.0 +16658,59,55,11,0.0 +16658,12,38,17,0.0 +16658,70,15,39,0.0 +16658,67,14,14,0.0 +16658,45,9.5,24,0.0 +16658,22,21,37,0.0 +16658,20,81,3,0.0 +16658,47,9.5,42,0.0 +16658,43,46,38,0.0 +16658,18,62.5,42,0.0 +16658,69,36,47,0.0 +16658,49,20,16,0.0 +16659,31,12.5,45,0.0 +16659,3,10,19,0.0 +16659,48,12.75,12,0.0 +16659,29,123.79,23,0.0 +16659,23,9,41,0.0 +16659,12,38,29,0.0 +16659,11,21,9,0.0 +16659,39,18,39,0.0 +16659,2,19,41,0.0 +16659,66,17,38,0.0 +16659,10,31,22,0.0 +16659,43,46,33,0.0 +16659,27,43.9,27,0.0 +16659,58,13.25,1,0.0 +16659,40,18.4,10,0.0 +16659,64,33.25,5,0.0 +16659,42,14,47,0.0 +16659,75,7.75,22,0.0 +16659,50,16.25,22,0.0 +16659,77,13,17,0.0 +16659,22,21,8,0.0 +16659,71,21.5,19,0.0 +16659,5,21.35,50,0.0 +16659,18,62.5,24,0.0 +16659,47,9.5,43,0.0 +16659,32,32,36,0.0 +16659,34,14,14,0.0 +16659,44,19.45,39,0.0 +16659,70,15,38,0.0 +16659,36,19,41,0.0 +16659,38,263.5,37,0.0 +16659,33,2.5,21,0.0 +16659,63,43.9,17,0.0 +16659,72,34.8,10,0.0 +16659,69,36,31,0.0 +16659,57,19.5,12,0.0 +16659,45,9.5,40,0.0 +16659,15,15.5,22,0.0 +16659,62,49.3,34,0.0 +16660,49,20,23,0.0 +16660,2,19,29,0.0 +16660,71,21.5,24,0.0 +16660,7,30,48,0.0 +16660,44,19.45,30,0.0 +16660,10,31,4,0.0 +16660,37,26,9,0.0 +16660,25,14,37,0.0 +16660,68,12.5,5,0.0 +16661,44,19.45,42,0.0 +16661,3,10,45,0.0 +16661,43,46,26,0.0 +16661,33,2.5,10,0.0 +16661,50,16.25,17,0.0 +16661,75,7.75,48,0.0 +16661,25,14,9,0.0 +16661,4,22,40,0.0 +16661,21,10,12,0.0 +16661,22,21,11,0.0 +16661,18,62.5,35,0.0 +16661,59,55,31,0.0 +16661,49,20,1,0.0 +16661,39,18,32,0.0 +16661,47,9.5,50,0.0 +16661,26,31.23,44,0.0 +16661,71,21.5,43,0.0 +16661,27,43.9,7,0.0 +16661,74,10,31,0.0 +16661,29,123.79,6,0.0 +16661,63,43.9,23,0.0 +16661,54,7.45,37,0.0 +16661,68,12.5,21,0.0 +16661,76,18,50,0.0 +16661,34,14,21,0.0 +16661,51,53,6,0.0 +16661,52,7,31,0.0 +16661,64,33.25,24,0.0 +16661,9,97,49,0.0 +16661,31,12.5,35,0.0 +16661,17,39,5,0.0 +16661,58,13.25,35,0.0 +16661,57,19.5,3,0.0 +16661,41,9.65,38,0.0 +16661,6,25,18,0.0 +16661,37,26,37,0.0 +16661,24,4.5,12,0.0 +16661,1,18,2,0.0 +16661,15,15.5,27,0.0 +16661,13,6,30,0.0 +16661,30,25.89,5,0.0 +16661,67,14,31,0.0 +16661,56,38,33,0.0 +16661,73,15,21,0.0 +16661,53,32.8,33,0.0 +16661,72,34.8,26,0.0 +16661,23,9,12,0.0 +16661,2,19,8,0.0 +16661,62,49.3,10,0.0 +16661,28,45.6,45,0.0 +16661,61,28.5,38,0.0 +16661,77,13,12,0.0 +16661,69,36,18,0.0 +16662,34,14,34,0.0 +16662,11,21,4,0.0 +16662,14,23.25,39,0.0 +16662,12,38,26,0.0 +16662,27,43.9,6,0.0 +16662,30,25.89,15,0.0 +16662,55,24,15,0.0 +16662,70,15,49,0.0 +16662,5,21.35,50,0.0 +16662,64,33.25,11,0.0 +16662,61,28.5,30,0.0 +16662,16,17.45,50,0.0 +16662,35,18,4,0.0 +16662,53,32.8,28,0.0 +16662,62,49.3,45,0.0 +16662,50,16.25,10,0.0 +16662,42,14,33,0.0 +16662,8,40,31,0.0 +16662,65,21.05,33,0.0 +16662,52,7,3,0.0 +16662,54,7.45,38,0.0 +16662,73,15,22,0.0 +16662,26,31.23,42,0.0 +16662,36,19,43,0.0 +16662,25,14,47,0.0 +16662,46,12,14,0.0 +16662,2,19,2,0.0 +16662,58,13.25,10,0.0 +16662,57,19.5,32,0.0 +16662,59,55,50,0.0 +16662,33,2.5,23,0.0 +16662,69,36,21,0.0 +16662,47,9.5,38,0.0 +16662,7,30,41,0.0 +16662,32,32,33,0.0 +16662,44,19.45,26,0.0 +16662,23,9,47,0.0 +16662,41,9.65,17,0.0 +16662,48,12.75,4,0.0 +16662,29,123.79,7,0.0 +16662,6,25,18,0.0 +16662,22,21,4,0.0 +16662,51,53,15,0.0 +16662,77,13,4,0.0 +16662,15,15.5,15,0.0 +16662,74,10,37,0.0 +16662,40,18.4,18,0.0 +16662,45,9.5,42,0.0 +16662,37,26,45,0.0 +16662,4,22,37,0.0 +16662,63,43.9,9,0.0 +16662,43,46,24,0.0 +16662,3,10,30,0.0 +16662,75,7.75,12,0.0 +16662,13,6,36,0.0 +16662,19,9.2,9,0.0 +16662,9,97,36,0.0 +16662,1,18,4,0.0 +16662,17,39,41,0.0 +16662,20,81,3,0.0 +16662,71,21.5,6,0.0 +16662,49,20,39,0.0 +16662,31,12.5,34,0.0 +16662,24,4.5,46,0.0 +16662,56,38,20,0.0 +16662,18,62.5,27,0.0 +16662,72,34.8,35,0.0 +16662,76,18,30,0.0 +16662,10,31,18,0.0 +16662,68,12.5,43,0.0 +16662,60,34,33,0.0 +16662,67,14,27,0.0 +16662,66,17,38,0.0 +16662,38,263.5,47,0.0 +16662,28,45.6,44,0.0 +16662,21,10,15,0.0 +16662,39,18,43,0.0 +16663,23,9,45,0.0 +16663,49,20,33,0.0 +16663,53,32.8,39,0.0 +16663,45,9.5,14,0.0 +16663,63,43.9,41,0.0 +16663,33,2.5,40,0.0 +16663,17,39,21,0.0 +16663,68,12.5,46,0.0 +16663,44,19.45,50,0.0 +16663,73,15,47,0.0 +16663,71,21.5,15,0.0 +16663,61,28.5,30,0.0 +16663,40,18.4,3,0.0 +16663,67,14,6,0.0 +16663,55,24,22,0.0 +16663,76,18,12,0.0 +16663,31,12.5,1,0.0 +16663,26,31.23,42,0.0 +16663,52,7,1,0.0 +16663,16,17.45,12,0.0 +16663,2,19,50,0.0 +16663,36,19,36,0.0 +16663,25,14,2,0.0 +16663,51,53,21,0.0 +16663,32,32,36,0.0 +16663,50,16.25,29,0.0 +16663,24,4.5,41,0.0 +16663,75,7.75,4,0.0 +16663,9,97,3,0.0 +16663,14,23.25,38,0.0 +16663,19,9.2,39,0.0 +16663,18,62.5,49,0.0 +16663,41,9.65,23,0.0 +16663,34,14,28,0.0 +16663,6,25,10,0.0 +16663,38,263.5,2,0.0 +16663,37,26,43,0.0 +16663,20,81,46,0.0 +16663,60,34,23,0.0 +16663,48,12.75,18,0.0 +16663,70,15,5,0.0 +16663,5,21.35,37,0.0 +16663,1,18,22,0.0 +16663,56,38,45,0.0 +16663,42,14,38,0.0 +16663,7,30,22,0.0 +16663,13,6,39,0.0 +16664,64,33.25,41,0.0 +16664,76,18,1,0.0 +16664,58,13.25,2,0.0 +16664,33,2.5,13,0.0 +16664,1,18,24,0.0 +16664,55,24,22,0.0 +16664,51,53,25,0.0 +16664,13,6,42,0.0 +16664,77,13,19,0.0 +16664,19,9.2,25,0.0 +16664,12,38,50,0.0 +16664,47,9.5,33,0.0 +16664,63,43.9,15,0.0 +16664,66,17,21,0.0 +16664,54,7.45,10,0.0 +16664,34,14,39,0.0 +16664,8,40,12,0.0 +16664,73,15,18,0.0 +16664,14,23.25,47,0.0 +16664,65,21.05,30,0.0 +16664,11,21,30,0.0 +16664,72,34.8,35,0.0 +16664,39,18,1,0.0 +16664,42,14,34,0.0 +16664,74,10,34,0.0 +16664,26,31.23,42,0.0 +16664,20,81,27,0.0 +16664,9,97,33,0.0 +16664,10,31,24,0.0 +16664,6,25,22,0.0 +16664,7,30,24,0.0 +16664,4,22,23,0.0 +16664,31,12.5,41,0.0 +16664,24,4.5,12,0.0 +16664,30,25.89,31,0.0 +16664,17,39,15,0.0 +16664,3,10,24,0.0 +16664,37,26,41,0.0 +16664,53,32.8,28,0.0 +16664,60,34,36,0.0 +16664,25,14,24,0.0 +16664,2,19,15,0.0 +16664,18,62.5,7,0.0 +16664,57,19.5,20,0.0 +16664,59,55,32,0.0 +16664,50,16.25,16,0.0 +16664,16,17.45,39,0.0 +16664,40,18.4,21,0.0 +16664,48,12.75,48,0.0 +16665,61,28.5,40,0.0 +16665,33,2.5,48,0.0 +16665,49,20,12,0.0 +16665,38,263.5,12,0.0 +16665,40,18.4,13,0.0 +16665,6,25,38,0.0 +16665,29,123.79,24,0.0 +16665,72,34.8,20,0.0 +16665,5,21.35,28,0.0 +16665,62,49.3,11,0.0 +16665,30,25.89,30,0.0 +16665,9,97,7,0.0 +16665,71,21.5,25,0.0 +16665,13,6,6,0.0 +16665,34,14,6,0.0 +16665,44,19.45,20,0.0 +16665,48,12.75,34,0.0 +16665,64,33.25,13,0.0 +16665,67,14,39,0.0 +16665,63,43.9,25,0.0 +16665,17,39,23,0.0 +16665,47,9.5,28,0.0 +16665,56,38,47,0.0 +16665,51,53,33,0.0 +16665,28,45.6,39,0.0 +16665,69,36,43,0.0 +16665,25,14,15,0.0 +16665,12,38,37,0.0 +16665,16,17.45,25,0.0 +16665,22,21,45,0.0 +16666,26,31.23,45,0.0 +16666,13,6,16,0.0 +16666,72,34.8,42,0.0 +16666,76,18,3,0.0 +16666,52,7,2,0.0 +16666,49,20,3,0.0 +16666,29,123.79,38,0.0 +16666,74,10,38,0.0 +16666,46,12,16,0.0 +16666,66,17,44,0.0 +16666,36,19,45,0.0 +16666,53,32.8,42,0.0 +16666,11,21,6,0.0 +16666,32,32,4,0.0 +16666,65,21.05,41,0.0 +16666,62,49.3,31,0.0 +16666,15,15.5,19,0.0 +16666,16,17.45,47,0.0 +16666,61,28.5,23,0.0 +16666,45,9.5,36,0.0 +16666,19,9.2,46,0.0 +16666,59,55,32,0.0 +16666,41,9.65,19,0.0 +16666,23,9,2,0.0 +16666,55,24,15,0.0 +16666,77,13,42,0.0 +16666,34,14,21,0.0 +16666,44,19.45,43,0.0 +16666,33,2.5,4,0.0 +16666,3,10,1,0.0 +16666,40,18.4,21,0.0 +16666,69,36,2,0.0 +16666,60,34,27,0.0 +16666,8,40,14,0.0 +16666,18,62.5,47,0.0 +16666,64,33.25,14,0.0 +16666,39,18,20,0.0 +16666,71,21.5,47,0.0 +16666,58,13.25,34,0.0 +16666,5,21.35,19,0.0 +16666,1,18,28,0.0 +16666,14,23.25,40,0.0 +16666,6,25,7,0.0 +16666,47,9.5,23,0.0 +16666,42,14,38,0.0 +16666,75,7.75,22,0.0 +16666,12,38,8,0.0 +16666,28,45.6,15,0.0 +16667,38,263.5,38,0.0 +16667,61,28.5,18,0.0 +16667,20,81,33,0.0 +16667,40,18.4,19,0.0 +16667,64,33.25,39,0.0 +16667,8,40,45,0.0 +16667,76,18,18,0.0 +16667,25,14,16,0.0 +16667,6,25,10,0.0 +16667,75,7.75,29,0.0 +16668,22,21,11,0.0 +16668,61,28.5,8,0.0 +16668,7,30,9,0.0 +16668,14,23.25,43,0.0 +16668,8,40,1,0.0 +16668,70,15,42,0.0 +16668,28,45.6,25,0.0 +16668,40,18.4,20,0.0 +16668,52,7,5,0.0 +16668,2,19,37,0.0 +16668,36,19,19,0.0 +16668,6,25,23,0.0 +16668,11,21,45,0.0 +16668,77,13,21,0.0 +16669,37,26,43,0.0 +16669,30,25.89,33,0.0 +16669,69,36,20,0.0 +16669,54,7.45,39,0.0 +16669,9,97,15,0.0 +16669,16,17.45,31,0.0 +16669,64,33.25,44,0.0 +16669,59,55,40,0.0 +16669,62,49.3,19,0.0 +16669,77,13,14,0.0 +16669,24,4.5,26,0.0 +16669,51,53,50,0.0 +16669,38,263.5,41,0.0 +16669,29,123.79,24,0.0 +16669,47,9.5,18,0.0 +16669,27,43.9,43,0.0 +16669,13,6,33,0.0 +16669,50,16.25,3,0.0 +16669,35,18,46,0.0 +16669,48,12.75,25,0.0 +16669,3,10,30,0.0 +16669,60,34,19,0.0 +16669,5,21.35,23,0.0 +16669,19,9.2,30,0.0 +16669,68,12.5,3,0.0 +16669,17,39,25,0.0 +16669,15,15.5,35,0.0 +16669,14,23.25,29,0.0 +16669,28,45.6,1,0.0 +16669,20,81,5,0.0 +16669,63,43.9,23,0.0 +16669,2,19,11,0.0 +16669,40,18.4,3,0.0 +16669,4,22,38,0.0 +16669,21,10,13,0.0 +16669,1,18,8,0.0 +16669,73,15,25,0.0 +16669,32,32,18,0.0 +16669,8,40,17,0.0 +16669,7,30,39,0.0 +16669,36,19,49,0.0 +16670,51,53,1,0.0 +16670,55,24,8,0.0 +16670,60,34,24,0.0 +16670,17,39,27,0.0 +16670,35,18,22,0.0 +16670,32,32,3,0.0 +16670,8,40,17,0.0 +16670,75,7.75,44,0.0 +16670,20,81,34,0.0 +16670,4,22,10,0.0 +16670,70,15,22,0.0 +16670,44,19.45,1,0.0 +16670,38,263.5,35,0.0 +16670,19,9.2,44,0.0 +16670,61,28.5,43,0.0 +16670,73,15,11,0.0 +16670,76,18,1,0.0 +16670,66,17,29,0.0 +16670,56,38,49,0.0 +16670,27,43.9,2,0.0 +16670,58,13.25,9,0.0 +16670,28,45.6,30,0.0 +16670,31,12.5,35,0.0 +16670,2,19,45,0.0 +16670,65,21.05,49,0.0 +16670,16,17.45,19,0.0 +16670,71,21.5,33,0.0 +16670,64,33.25,8,0.0 +16670,53,32.8,29,0.0 +16670,43,46,12,0.0 +16670,13,6,41,0.0 +16670,6,25,11,0.0 +16670,54,7.45,33,0.0 +16670,18,62.5,11,0.0 +16670,23,9,8,0.0 +16670,40,18.4,21,0.0 +16670,74,10,41,0.0 +16670,57,19.5,30,0.0 +16670,7,30,23,0.0 +16670,41,9.65,6,0.0 +16670,39,18,49,0.0 +16670,77,13,38,0.0 +16670,47,9.5,35,0.0 +16670,50,16.25,2,0.0 +16670,63,43.9,8,0.0 +16670,37,26,2,0.0 +16670,5,21.35,17,0.0 +16670,46,12,11,0.0 +16670,3,10,46,0.0 +16670,48,12.75,2,0.0 +16670,24,4.5,5,0.0 +16670,36,19,48,0.0 +16670,42,14,42,0.0 +16670,29,123.79,38,0.0 +16670,25,14,24,0.0 +16670,59,55,5,0.0 +16670,9,97,30,0.0 +16670,15,15.5,44,0.0 +16670,1,18,43,0.0 +16670,10,31,27,0.0 +16670,69,36,28,0.0 +16670,33,2.5,46,0.0 +16670,22,21,17,0.0 +16670,21,10,50,0.0 +16670,52,7,30,0.0 +16670,12,38,49,0.0 +16670,68,12.5,7,0.0 +16670,49,20,49,0.0 +16670,34,14,12,0.0 +16670,11,21,39,0.0 +16670,72,34.8,12,0.0 +16670,14,23.25,49,0.0 +16670,30,25.89,50,0.0 +16670,26,31.23,3,0.0 +16670,67,14,36,0.0 +16670,62,49.3,27,0.0 +16670,45,9.5,20,0.0 +16671,71,21.5,42,0.0 +16671,67,14,23,0.0 +16671,9,97,47,0.0 +16671,48,12.75,34,0.0 +16671,30,25.89,26,0.0 +16671,37,26,19,0.0 +16671,40,18.4,5,0.0 +16671,17,39,14,0.0 +16671,43,46,2,0.0 +16671,70,15,29,0.0 +16671,12,38,44,0.0 +16671,57,19.5,44,0.0 +16671,63,43.9,32,0.0 +16671,10,31,46,0.0 +16671,27,43.9,4,0.0 +16671,61,28.5,38,0.0 +16671,65,21.05,18,0.0 +16671,74,10,31,0.0 +16671,68,12.5,25,0.0 +16671,46,12,19,0.0 +16671,49,20,33,0.0 +16671,36,19,2,0.0 +16671,56,38,31,0.0 +16671,47,9.5,14,0.0 +16671,20,81,36,0.0 +16671,16,17.45,3,0.0 +16671,39,18,20,0.0 +16671,45,9.5,4,0.0 +16671,41,9.65,46,0.0 +16672,72,34.8,28,0.0 +16672,54,7.45,21,0.0 +16672,62,49.3,44,0.0 +16672,77,13,29,0.0 +16672,67,14,2,0.0 +16672,35,18,14,0.0 +16672,68,12.5,26,0.0 +16672,32,32,43,0.0 +16672,6,25,7,0.0 +16672,69,36,19,0.0 +16672,59,55,1,0.0 +16672,22,21,19,0.0 +16672,66,17,36,0.0 +16672,1,18,12,0.0 +16672,30,25.89,49,0.0 +16672,37,26,16,0.0 +16672,56,38,1,0.0 +16672,60,34,20,0.0 +16672,13,6,15,0.0 +16672,39,18,42,0.0 +16672,26,31.23,5,0.0 +16672,64,33.25,22,0.0 +16672,43,46,34,0.0 +16672,40,18.4,49,0.0 +16672,50,16.25,10,0.0 +16672,18,62.5,23,0.0 +16672,38,263.5,14,0.0 +16672,12,38,34,0.0 +16672,2,19,23,0.0 +16672,46,12,12,0.0 +16672,36,19,4,0.0 +16672,33,2.5,13,0.0 +16672,49,20,29,0.0 +16672,11,21,10,0.0 +16672,25,14,28,0.0 +16672,71,21.5,39,0.0 +16672,28,45.6,32,0.0 +16672,29,123.79,17,0.0 +16672,74,10,23,0.0 +16672,76,18,5,0.0 +16672,4,22,15,0.0 +16672,53,32.8,45,0.0 +16672,27,43.9,27,0.0 +16672,14,23.25,1,0.0 +16672,5,21.35,10,0.0 +16672,17,39,41,0.0 +16672,15,15.5,39,0.0 +16673,55,24,47,0.0 +16673,36,19,42,0.0 +16673,28,45.6,32,0.0 +16673,75,7.75,43,0.0 +16673,16,17.45,24,0.0 +16673,71,21.5,25,0.0 +16673,10,31,20,0.0 +16673,64,33.25,36,0.0 +16673,39,18,20,0.0 +16673,45,9.5,48,0.0 +16673,22,21,26,0.0 +16673,5,21.35,38,0.0 +16673,11,21,1,0.0 +16673,42,14,13,0.0 +16673,77,13,9,0.0 +16673,27,43.9,42,0.0 +16673,63,43.9,50,0.0 +16673,18,62.5,50,0.0 +16673,3,10,33,0.0 +16673,56,38,34,0.0 +16673,12,38,4,0.0 +16673,29,123.79,21,0.0 +16673,13,6,10,0.0 +16673,62,49.3,50,0.0 +16673,15,15.5,35,0.0 +16673,69,36,35,0.0 +16673,61,28.5,13,0.0 +16673,32,32,9,0.0 +16673,68,12.5,14,0.0 +16673,7,30,7,0.0 +16673,31,12.5,47,0.0 +16673,1,18,37,0.0 +16673,33,2.5,37,0.0 +16673,25,14,19,0.0 +16673,50,16.25,16,0.0 +16673,57,19.5,10,0.0 +16673,52,7,19,0.0 +16673,24,4.5,33,0.0 +16673,2,19,19,0.0 +16673,44,19.45,7,0.0 +16673,17,39,28,0.0 +16673,23,9,46,0.0 +16673,58,13.25,34,0.0 +16673,19,9.2,1,0.0 +16673,20,81,31,0.0 +16673,54,7.45,47,0.0 +16674,54,7.45,15,0.0 +16674,14,23.25,44,0.0 +16674,63,43.9,28,0.0 +16674,36,19,36,0.0 +16674,29,123.79,13,0.0 +16674,13,6,36,0.0 +16674,30,25.89,9,0.0 +16674,25,14,28,0.0 +16674,53,32.8,31,0.0 +16674,56,38,23,0.0 +16674,37,26,50,0.0 +16674,17,39,30,0.0 +16674,41,9.65,24,0.0 +16674,66,17,34,0.0 +16674,72,34.8,20,0.0 +16674,6,25,26,0.0 +16674,33,2.5,26,0.0 +16674,43,46,21,0.0 +16674,3,10,38,0.0 +16674,9,97,24,0.0 +16674,15,15.5,47,0.0 +16674,76,18,9,0.0 +16674,73,15,5,0.0 +16674,31,12.5,37,0.0 +16674,40,18.4,19,0.0 +16674,34,14,22,0.0 +16674,19,9.2,2,0.0 +16674,67,14,21,0.0 +16674,7,30,40,0.0 +16674,46,12,46,0.0 +16674,60,34,17,0.0 +16674,5,21.35,42,0.0 +16674,49,20,9,0.0 +16674,20,81,4,0.0 +16674,2,19,7,0.0 +16674,4,22,34,0.0 +16674,39,18,27,0.0 +16674,24,4.5,47,0.0 +16674,55,24,15,0.0 +16674,38,263.5,12,0.0 +16674,74,10,41,0.0 +16674,45,9.5,48,0.0 +16674,64,33.25,36,0.0 +16674,22,21,23,0.0 +16674,62,49.3,45,0.0 +16674,77,13,1,0.0 +16674,18,62.5,37,0.0 +16674,57,19.5,3,0.0 +16674,35,18,20,0.0 +16675,57,19.5,17,0.0 +16675,38,263.5,18,0.0 +16675,13,6,45,0.0 +16675,49,20,21,0.0 +16675,60,34,26,0.0 +16675,36,19,27,0.0 +16675,63,43.9,43,0.0 +16675,26,31.23,40,0.0 +16675,53,32.8,1,0.0 +16675,43,46,48,0.0 +16675,20,81,46,0.0 +16675,21,10,44,0.0 +16675,6,25,10,0.0 +16675,18,62.5,22,0.0 +16675,46,12,3,0.0 +16675,39,18,33,0.0 +16675,64,33.25,7,0.0 +16675,76,18,34,0.0 +16675,11,21,43,0.0 +16675,59,55,40,0.0 +16676,24,4.5,15,0.0 +16676,76,18,21,0.0 +16676,74,10,33,0.0 +16676,65,21.05,3,0.0 +16676,59,55,37,0.0 +16676,52,7,13,0.0 +16676,46,12,20,0.0 +16676,73,15,18,0.0 +16676,49,20,46,0.0 +16676,41,9.65,12,0.0 +16676,23,9,44,0.0 +16676,44,19.45,44,0.0 +16676,4,22,27,0.0 +16676,5,21.35,19,0.0 +16676,27,43.9,34,0.0 +16676,20,81,14,0.0 +16676,51,53,33,0.0 +16676,58,13.25,5,0.0 +16676,75,7.75,21,0.0 +16676,25,14,6,0.0 +16676,16,17.45,39,0.0 +16676,64,33.25,4,0.0 +16676,17,39,45,0.0 +16676,35,18,20,0.0 +16677,35,18,15,0.0 +16677,54,7.45,8,0.0 +16677,62,49.3,12,0.0 +16677,40,18.4,48,0.0 +16677,8,40,15,0.0 +16677,76,18,36,0.0 +16677,53,32.8,16,0.0 +16677,52,7,8,0.0 +16677,1,18,32,0.0 +16677,36,19,37,0.0 +16677,60,34,1,0.0 +16677,69,36,37,0.0 +16677,41,9.65,4,0.0 +16677,2,19,3,0.0 +16677,51,53,25,0.0 +16677,10,31,32,0.0 +16677,68,12.5,20,0.0 +16677,30,25.89,25,0.0 +16677,70,15,42,0.0 +16677,29,123.79,4,0.0 +16677,32,32,29,0.0 +16677,58,13.25,28,0.0 +16677,15,15.5,45,0.0 +16677,65,21.05,15,0.0 +16677,28,45.6,49,0.0 +16677,59,55,2,0.0 +16677,77,13,41,0.0 +16677,34,14,31,0.0 +16677,31,12.5,15,0.0 +16677,11,21,45,0.0 +16677,61,28.5,1,0.0 +16677,55,24,23,0.0 +16677,16,17.45,33,0.0 +16677,72,34.8,37,0.0 +16677,26,31.23,47,0.0 +16677,14,23.25,12,0.0 +16677,67,14,27,0.0 +16677,48,12.75,11,0.0 +16677,19,9.2,43,0.0 +16677,50,16.25,43,0.0 +16677,75,7.75,6,0.0 +16677,42,14,17,0.0 +16677,74,10,15,0.0 +16677,3,10,24,0.0 +16677,49,20,50,0.0 +16677,56,38,13,0.0 +16677,6,25,9,0.0 +16677,7,30,10,0.0 +16677,13,6,17,0.0 +16677,25,14,5,0.0 +16677,46,12,19,0.0 +16677,37,26,33,0.0 +16677,47,9.5,10,0.0 +16677,9,97,50,0.0 +16677,22,21,4,0.0 +16678,63,43.9,5,0.0 +16678,7,30,22,0.0 +16678,73,15,10,0.0 +16678,16,17.45,49,0.0 +16678,31,12.5,32,0.0 +16678,40,18.4,17,0.0 +16678,57,19.5,20,0.0 +16678,23,9,12,0.0 +16678,55,24,4,0.0 +16678,28,45.6,27,0.0 +16678,10,31,47,0.0 +16678,51,53,8,0.0 +16678,35,18,8,0.0 +16678,46,12,8,0.0 +16678,19,9.2,50,0.0 +16678,70,15,17,0.0 +16678,2,19,20,0.0 +16678,60,34,10,0.0 +16678,30,25.89,33,0.0 +16678,34,14,30,0.0 +16678,22,21,41,0.0 +16678,52,7,33,0.0 +16678,61,28.5,31,0.0 +16678,71,21.5,43,0.0 +16678,74,10,42,0.0 +16678,15,15.5,40,0.0 +16678,3,10,31,0.0 +16678,25,14,23,0.0 +16678,8,40,41,0.0 +16678,68,12.5,19,0.0 +16678,72,34.8,10,0.0 +16678,32,32,34,0.0 +16679,70,15,34,0.0 +16679,62,49.3,46,0.0 +16679,69,36,3,0.0 +16679,66,17,34,0.0 +16679,41,9.65,44,0.0 +16679,51,53,24,0.0 +16679,60,34,48,0.0 +16679,68,12.5,40,0.0 +16679,2,19,8,0.0 +16679,57,19.5,25,0.0 +16679,3,10,15,0.0 +16679,25,14,9,0.0 +16679,72,34.8,33,0.0 +16679,40,18.4,21,0.0 +16679,22,21,24,0.0 +16679,24,4.5,45,0.0 +16679,21,10,2,0.0 +16679,10,31,34,0.0 +16679,64,33.25,35,0.0 +16679,29,123.79,17,0.0 +16679,52,7,5,0.0 +16679,34,14,25,0.0 +16679,5,21.35,25,0.0 +16679,43,46,3,0.0 +16679,33,2.5,14,0.0 +16679,16,17.45,21,0.0 +16679,53,32.8,36,0.0 +16680,63,43.9,38,0.0 +16680,43,46,2,0.0 +16680,55,24,47,0.0 +16680,19,9.2,23,0.0 +16680,47,9.5,6,0.0 +16680,59,55,15,0.0 +16680,5,21.35,33,0.0 +16680,32,32,41,0.0 +16680,61,28.5,50,0.0 +16680,73,15,31,0.0 +16680,17,39,29,0.0 +16680,3,10,2,0.0 +16680,76,18,43,0.0 +16680,77,13,27,0.0 +16680,20,81,3,0.0 +16680,58,13.25,41,0.0 +16680,14,23.25,36,0.0 +16680,9,97,16,0.0 +16681,39,18,14,0.0 +16681,74,10,48,0.0 +16681,47,9.5,27,0.0 +16681,73,15,17,0.0 +16681,62,49.3,3,0.0 +16681,27,43.9,37,0.0 +16681,67,14,17,0.0 +16681,35,18,26,0.0 +16681,38,263.5,30,0.0 +16681,75,7.75,18,0.0 +16681,71,21.5,16,0.0 +16681,40,18.4,39,0.0 +16681,50,16.25,35,0.0 +16681,7,30,45,0.0 +16681,5,21.35,46,0.0 +16681,68,12.5,40,0.0 +16681,49,20,49,0.0 +16681,13,6,18,0.0 +16681,8,40,45,0.0 +16681,20,81,30,0.0 +16681,18,62.5,29,0.0 +16681,4,22,35,0.0 +16681,51,53,10,0.0 +16681,41,9.65,39,0.0 +16681,1,18,25,0.0 +16681,53,32.8,8,0.0 +16681,57,19.5,10,0.0 +16681,31,12.5,15,0.0 +16681,42,14,13,0.0 +16681,14,23.25,25,0.0 +16681,17,39,43,0.0 +16681,61,28.5,25,0.0 +16681,43,46,5,0.0 +16681,6,25,42,0.0 +16681,25,14,27,0.0 +16681,33,2.5,43,0.0 +16681,12,38,17,0.0 +16681,32,32,3,0.0 +16681,2,19,41,0.0 +16681,37,26,11,0.0 +16681,72,34.8,25,0.0 +16681,70,15,40,0.0 +16681,34,14,19,0.0 +16681,44,19.45,50,0.0 +16681,54,7.45,10,0.0 +16681,30,25.89,49,0.0 +16681,52,7,9,0.0 +16681,11,21,35,0.0 +16681,45,9.5,44,0.0 +16681,76,18,30,0.0 +16681,15,15.5,26,0.0 +16681,29,123.79,12,0.0 +16681,69,36,15,0.0 +16681,23,9,12,0.0 +16681,28,45.6,3,0.0 +16681,22,21,25,0.0 +16681,24,4.5,45,0.0 +16681,60,34,19,0.0 +16681,21,10,42,0.0 +16681,36,19,41,0.0 +16681,3,10,2,0.0 +16681,26,31.23,40,0.0 +16681,16,17.45,20,0.0 +16681,64,33.25,36,0.0 +16681,77,13,27,0.0 +16681,55,24,39,0.0 +16681,65,21.05,17,0.0 +16681,66,17,31,0.0 +16681,46,12,38,0.0 +16681,10,31,45,0.0 +16681,48,12.75,40,0.0 +16681,9,97,45,0.0 +16681,63,43.9,17,0.0 +16682,39,18,49,0.0 +16682,5,21.35,43,0.0 +16682,45,9.5,4,0.0 +16682,32,32,27,0.0 +16683,9,97,35,0.0 +16683,58,13.25,47,0.0 +16683,35,18,36,0.0 +16683,25,14,48,0.0 +16683,7,30,45,0.0 +16683,14,23.25,43,0.0 +16683,48,12.75,21,0.0 +16683,15,15.5,19,0.0 +16683,66,17,44,0.0 +16683,4,22,10,0.0 +16683,19,9.2,18,0.0 +16683,50,16.25,21,0.0 +16683,28,45.6,37,0.0 +16683,65,21.05,10,0.0 +16683,12,38,25,0.0 +16683,1,18,5,0.0 +16683,56,38,23,0.0 +16683,27,43.9,34,0.0 +16683,11,21,16,0.0 +16683,34,14,44,0.0 +16683,43,46,13,0.0 +16683,16,17.45,26,0.0 +16683,18,62.5,19,0.0 +16683,59,55,30,0.0 +16683,40,18.4,21,0.0 +16683,51,53,25,0.0 +16683,24,4.5,4,0.0 +16684,58,13.25,38,0.0 +16684,73,15,48,0.0 +16684,51,53,45,0.0 +16684,3,10,27,0.0 +16684,11,21,33,0.0 +16684,48,12.75,41,0.0 +16684,12,38,37,0.0 +16684,50,16.25,34,0.0 +16684,29,123.79,46,0.0 +16684,45,9.5,14,0.0 +16684,67,14,50,0.0 +16684,6,25,21,0.0 +16684,33,2.5,21,0.0 +16684,35,18,33,0.0 +16684,39,18,37,0.0 +16684,8,40,1,0.0 +16684,49,20,38,0.0 +16684,23,9,34,0.0 +16684,46,12,35,0.0 +16684,14,23.25,41,0.0 +16684,57,19.5,24,0.0 +16684,42,14,26,0.0 +16684,52,7,1,0.0 +16684,22,21,26,0.0 +16684,56,38,19,0.0 +16684,25,14,14,0.0 +16684,28,45.6,20,0.0 +16684,62,49.3,34,0.0 +16684,21,10,40,0.0 +16684,69,36,14,0.0 +16684,53,32.8,2,0.0 +16684,18,62.5,8,0.0 +16684,68,12.5,10,0.0 +16684,47,9.5,42,0.0 +16684,27,43.9,31,0.0 +16684,10,31,25,0.0 +16684,44,19.45,4,0.0 +16684,34,14,43,0.0 +16684,59,55,35,0.0 +16684,77,13,27,0.0 +16684,55,24,44,0.0 +16684,65,21.05,23,0.0 +16684,16,17.45,16,0.0 +16684,37,26,23,0.0 +16684,32,32,21,0.0 +16684,40,18.4,23,0.0 +16684,70,15,21,0.0 +16684,1,18,16,0.0 +16684,26,31.23,21,0.0 +16684,20,81,19,0.0 +16684,9,97,37,0.0 +16684,30,25.89,31,0.0 +16684,75,7.75,38,0.0 +16684,7,30,22,0.0 +16684,71,21.5,14,0.0 +16684,74,10,32,0.0 +16684,5,21.35,23,0.0 +16684,4,22,4,0.0 +16684,41,9.65,22,0.0 +16684,17,39,5,0.0 +16684,15,15.5,16,0.0 +16684,66,17,15,0.0 +16684,72,34.8,5,0.0 +16684,13,6,27,0.0 +16684,2,19,7,0.0 +16684,54,7.45,46,0.0 +16684,43,46,31,0.0 +16684,61,28.5,49,0.0 +16684,36,19,35,0.0 +16684,31,12.5,14,0.0 +16684,63,43.9,4,0.0 +16684,60,34,22,0.0 +16685,37,26,4,0.0 +16685,61,28.5,8,0.0 +16685,24,4.5,19,0.0 +16685,17,39,45,0.0 +16685,76,18,12,0.0 +16685,39,18,41,0.0 +16685,54,7.45,23,0.0 +16686,36,19,16,0.0 +16686,71,21.5,7,0.0 +16686,42,14,30,0.0 +16686,38,263.5,27,0.0 +16686,7,30,43,0.0 +16686,41,9.65,38,0.0 +16686,69,36,15,0.0 +16686,74,10,14,0.0 +16686,39,18,48,0.0 +16686,59,55,46,0.0 +16686,19,9.2,1,0.0 +16686,3,10,1,0.0 +16686,48,12.75,42,0.0 +16686,20,81,42,0.0 +16686,11,21,44,0.0 +16686,66,17,14,0.0 +16686,49,20,48,0.0 +16686,6,25,33,0.0 +16686,72,34.8,46,0.0 +16686,25,14,19,0.0 +16686,44,19.45,27,0.0 +16686,16,17.45,43,0.0 +16686,31,12.5,49,0.0 +16686,32,32,17,0.0 +16686,40,18.4,6,0.0 +16686,5,21.35,15,0.0 +16686,67,14,4,0.0 +16686,57,19.5,3,0.0 +16686,45,9.5,29,0.0 +16686,24,4.5,40,0.0 +16686,15,15.5,19,0.0 +16686,62,49.3,27,0.0 +16686,30,25.89,2,0.0 +16686,21,10,15,0.0 +16686,76,18,21,0.0 +16687,2,19,11,0.0 +16687,7,30,14,0.0 +16687,43,46,7,0.0 +16687,71,21.5,26,0.0 +16687,8,40,22,0.0 +16687,27,43.9,33,0.0 +16687,55,24,40,0.0 +16687,19,9.2,11,0.0 +16687,35,18,44,0.0 +16687,9,97,31,0.0 +16687,67,14,5,0.0 +16687,5,21.35,23,0.0 +16687,47,9.5,10,0.0 +16687,32,32,50,0.0 +16687,57,19.5,11,0.0 +16687,12,38,39,0.0 +16687,3,10,4,0.0 +16687,13,6,7,0.0 +16687,20,81,7,0.0 +16687,69,36,38,0.0 +16687,70,15,16,0.0 +16687,76,18,40,0.0 +16687,24,4.5,39,0.0 +16687,44,19.45,5,0.0 +16687,52,7,42,0.0 +16687,36,19,44,0.0 +16687,62,49.3,13,0.0 +16687,42,14,42,0.0 +16687,6,25,21,0.0 +16687,40,18.4,27,0.0 +16687,63,43.9,38,0.0 +16687,45,9.5,19,0.0 +16687,22,21,30,0.0 +16687,61,28.5,33,0.0 +16687,74,10,40,0.0 +16687,4,22,43,0.0 +16687,60,34,14,0.0 +16687,41,9.65,29,0.0 +16687,75,7.75,48,0.0 +16687,46,12,2,0.0 +16687,37,26,12,0.0 +16687,73,15,13,0.0 +16687,10,31,7,0.0 +16687,11,21,26,0.0 +16687,50,16.25,19,0.0 +16687,29,123.79,37,0.0 +16687,14,23.25,28,0.0 +16687,64,33.25,50,0.0 +16687,30,25.89,32,0.0 +16687,31,12.5,3,0.0 +16687,38,263.5,33,0.0 +16687,53,32.8,35,0.0 +16687,49,20,16,0.0 +16687,23,9,30,0.0 +16687,1,18,45,0.0 +16687,28,45.6,39,0.0 +16687,17,39,39,0.0 +16687,21,10,34,0.0 +16687,26,31.23,15,0.0 +16687,16,17.45,43,0.0 +16687,66,17,11,0.0 +16687,48,12.75,39,0.0 +16687,39,18,33,0.0 +16687,18,62.5,49,0.0 +16687,58,13.25,48,0.0 +16687,68,12.5,30,0.0 +16688,64,33.25,10,0.0 +16688,70,15,49,0.0 +16688,40,18.4,42,0.0 +16688,3,10,22,0.0 +16688,42,14,11,0.0 +16688,24,4.5,37,0.0 +16688,71,21.5,38,0.0 +16688,74,10,31,0.0 +16688,47,9.5,29,0.0 +16688,32,32,21,0.0 +16688,28,45.6,20,0.0 +16688,61,28.5,42,0.0 +16688,19,9.2,28,0.0 +16688,46,12,40,0.0 +16688,43,46,46,0.0 +16688,8,40,22,0.0 +16688,73,15,38,0.0 +16688,53,32.8,11,0.0 +16688,75,7.75,9,0.0 +16688,45,9.5,35,0.0 +16688,57,19.5,24,0.0 +16688,18,62.5,38,0.0 +16688,54,7.45,30,0.0 +16688,52,7,12,0.0 +16688,66,17,20,0.0 +16688,16,17.45,44,0.0 +16688,9,97,16,0.0 +16688,44,19.45,9,0.0 +16688,2,19,25,0.0 +16688,15,15.5,48,0.0 +16688,72,34.8,1,0.0 +16688,36,19,41,0.0 +16688,13,6,42,0.0 +16688,23,9,20,0.0 +16688,35,18,35,0.0 +16688,31,12.5,29,0.0 +16688,59,55,31,0.0 +16688,27,43.9,27,0.0 +16689,56,38,2,0.0 +16689,15,15.5,44,0.0 +16689,44,19.45,9,0.0 +16689,59,55,5,0.0 +16689,40,18.4,30,0.0 +16689,6,25,25,0.0 +16689,70,15,22,0.0 +16689,45,9.5,4,0.0 +16689,49,20,22,0.0 +16689,41,9.65,22,0.0 +16689,48,12.75,4,0.0 +16689,34,14,24,0.0 +16689,16,17.45,19,0.0 +16689,65,21.05,3,0.0 +16689,75,7.75,13,0.0 +16689,64,33.25,32,0.0 +16689,20,81,4,0.0 +16689,23,9,38,0.0 +16690,69,36,19,0.0 +16690,21,10,47,0.0 +16690,32,32,11,0.0 +16690,70,15,22,0.0 +16690,10,31,40,0.0 +16690,38,263.5,47,0.0 +16690,8,40,1,0.0 +16690,7,30,38,0.0 +16690,18,62.5,22,0.0 +16690,16,17.45,2,0.0 +16690,30,25.89,14,0.0 +16690,9,97,11,0.0 +16690,73,15,1,0.0 +16690,66,17,32,0.0 +16690,74,10,21,0.0 +16690,39,18,48,0.0 +16690,51,53,16,0.0 +16690,44,19.45,5,0.0 +16690,12,38,12,0.0 +16690,19,9.2,11,0.0 +16690,49,20,14,0.0 +16690,47,9.5,44,0.0 +16690,43,46,26,0.0 +16690,29,123.79,17,0.0 +16690,37,26,14,0.0 +16690,56,38,9,0.0 +16691,58,13.25,40,0.0 +16691,25,14,44,0.0 +16691,39,18,23,0.0 +16691,42,14,36,0.0 +16691,75,7.75,27,0.0 +16691,47,9.5,41,0.0 +16691,18,62.5,45,0.0 +16691,76,18,22,0.0 +16691,61,28.5,19,0.0 +16691,67,14,48,0.0 +16691,7,30,6,0.0 +16691,37,26,25,0.0 +16691,74,10,16,0.0 +16691,3,10,23,0.0 +16691,13,6,15,0.0 +16691,1,18,50,0.0 +16691,36,19,46,0.0 +16691,29,123.79,49,0.0 +16691,19,9.2,12,0.0 +16691,11,21,3,0.0 +16691,28,45.6,8,0.0 +16691,59,55,23,0.0 +16691,50,16.25,7,0.0 +16691,16,17.45,5,0.0 +16691,69,36,26,0.0 +16691,60,34,5,0.0 +16691,65,21.05,14,0.0 +16691,73,15,35,0.0 +16691,20,81,17,0.0 +16691,4,22,15,0.0 +16691,52,7,39,0.0 +16691,15,15.5,50,0.0 +16692,65,21.05,28,0.0 +16692,2,19,19,0.0 +16692,23,9,41,0.0 +16692,34,14,14,0.0 +16692,13,6,6,0.0 +16692,43,46,14,0.0 +16692,56,38,31,0.0 +16692,39,18,20,0.0 +16692,70,15,37,0.0 +16692,21,10,4,0.0 +16692,36,19,8,0.0 +16692,33,2.5,11,0.0 +16692,30,25.89,45,0.0 +16692,11,21,24,0.0 +16692,52,7,43,0.0 +16692,31,12.5,32,0.0 +16692,71,21.5,34,0.0 +16692,47,9.5,23,0.0 +16692,41,9.65,6,0.0 +16692,28,45.6,3,0.0 +16692,29,123.79,43,0.0 +16692,68,12.5,32,0.0 +16692,40,18.4,36,0.0 +16692,19,9.2,1,0.0 +16692,37,26,27,0.0 +16692,73,15,10,0.0 +16692,64,33.25,49,0.0 +16692,62,49.3,13,0.0 +16692,66,17,38,0.0 +16692,44,19.45,21,0.0 +16692,4,22,29,0.0 +16692,5,21.35,19,0.0 +16692,60,34,29,0.0 +16692,15,15.5,42,0.0 +16692,7,30,27,0.0 +16692,38,263.5,37,0.0 +16692,20,81,24,0.0 +16692,58,13.25,6,0.0 +16692,46,12,12,0.0 +16692,75,7.75,41,0.0 +16692,12,38,15,0.0 +16692,22,21,12,0.0 +16693,40,18.4,21,0.0 +16693,16,17.45,4,0.0 +16693,35,18,50,0.0 +16693,68,12.5,36,0.0 +16693,62,49.3,35,0.0 +16693,9,97,50,0.0 +16693,37,26,7,0.0 +16693,71,21.5,47,0.0 +16693,69,36,6,0.0 +16693,48,12.75,26,0.0 +16693,21,10,35,0.0 +16693,53,32.8,24,0.0 +16693,12,38,21,0.0 +16693,72,34.8,44,0.0 +16693,29,123.79,13,0.0 +16693,46,12,8,0.0 +16693,28,45.6,17,0.0 +16693,8,40,50,0.0 +16693,14,23.25,29,0.0 +16693,15,15.5,22,0.0 +16693,32,32,22,0.0 +16693,2,19,25,0.0 +16694,1,18,30,0.0 +16694,10,31,19,0.0 +16694,59,55,5,0.0 +16694,12,38,32,0.0 +16694,53,32.8,44,0.0 +16694,24,4.5,37,0.0 +16694,33,2.5,50,0.0 +16694,73,15,28,0.0 +16694,56,38,34,0.0 +16694,19,9.2,30,0.0 +16694,44,19.45,10,0.0 +16694,39,18,50,0.0 +16694,31,12.5,45,0.0 +16694,77,13,21,0.0 +16694,8,40,46,0.0 +16694,43,46,2,0.0 +16694,28,45.6,22,0.0 +16694,69,36,9,0.0 +16694,60,34,28,0.0 +16694,25,14,20,0.0 +16694,42,14,23,0.0 +16694,75,7.75,8,0.0 +16694,30,25.89,10,0.0 +16694,57,19.5,10,0.0 +16694,4,22,46,0.0 +16694,74,10,14,0.0 +16694,46,12,39,0.0 +16694,63,43.9,12,0.0 +16694,47,9.5,48,0.0 +16694,76,18,40,0.0 +16694,14,23.25,28,0.0 +16694,64,33.25,28,0.0 +16694,68,12.5,50,0.0 +16694,17,39,13,0.0 +16694,49,20,44,0.0 +16694,13,6,32,0.0 +16694,40,18.4,12,0.0 +16694,21,10,31,0.0 +16694,65,21.05,21,0.0 +16694,71,21.5,33,0.0 +16694,3,10,17,0.0 +16694,67,14,43,0.0 +16694,27,43.9,48,0.0 +16694,18,62.5,18,0.0 +16694,5,21.35,16,0.0 +16694,51,53,4,0.0 +16694,15,15.5,36,0.0 +16694,32,32,5,0.0 +16694,26,31.23,10,0.0 +16695,66,17,4,0.0 +16695,53,32.8,22,0.0 +16695,24,4.5,14,0.0 +16695,76,18,42,0.0 +16695,8,40,13,0.0 +16695,64,33.25,36,0.0 +16695,12,38,29,0.0 +16695,56,38,39,0.0 +16695,67,14,11,0.0 +16695,4,22,12,0.0 +16695,72,34.8,7,0.0 +16695,69,36,41,0.0 +16695,70,15,34,0.0 +16695,71,21.5,43,0.0 +16695,18,62.5,47,0.0 +16695,10,31,29,0.0 +16695,20,81,36,0.0 +16695,63,43.9,2,0.0 +16695,59,55,32,0.0 +16695,2,19,5,0.0 +16695,57,19.5,14,0.0 +16695,75,7.75,26,0.0 +16695,43,46,28,0.0 +16695,16,17.45,14,0.0 +16695,23,9,47,0.0 +16695,25,14,5,0.0 +16695,5,21.35,6,0.0 +16695,62,49.3,9,0.0 +16695,11,21,38,0.0 +16695,42,14,32,0.0 +16695,35,18,13,0.0 +16696,72,34.8,1,0.0 +16696,35,18,50,0.0 +16696,28,45.6,31,0.0 +16696,51,53,40,0.0 +16696,6,25,24,0.0 +16696,10,31,40,0.0 +16696,45,9.5,19,0.0 +16696,15,15.5,31,0.0 +16696,14,23.25,43,0.0 +16696,9,97,47,0.0 +16696,32,32,38,0.0 +16696,23,9,43,0.0 +16696,22,21,20,0.0 +16696,13,6,10,0.0 +16696,20,81,14,0.0 +16696,77,13,30,0.0 +16696,29,123.79,2,0.0 +16696,59,55,19,0.0 +16696,7,30,40,0.0 +16696,50,16.25,29,0.0 +16696,27,43.9,40,0.0 +16696,17,39,48,0.0 +16696,41,9.65,47,0.0 +16696,30,25.89,21,0.0 +16696,47,9.5,34,0.0 +16696,11,21,1,0.0 +16696,64,33.25,14,0.0 +16696,65,21.05,13,0.0 +16696,75,7.75,29,0.0 +16696,46,12,35,0.0 +16696,5,21.35,29,0.0 +16696,3,10,44,0.0 +16696,18,62.5,37,0.0 +16696,49,20,10,0.0 +16696,62,49.3,49,0.0 +16696,74,10,48,0.0 +16696,71,21.5,21,0.0 +16696,56,38,25,0.0 +16696,2,19,42,0.0 +16696,60,34,23,0.0 +16696,34,14,13,0.0 +16696,69,36,19,0.0 +16696,63,43.9,48,0.0 +16696,76,18,2,0.0 +16696,53,32.8,45,0.0 +16697,28,45.6,9,0.0 +16697,77,13,16,0.0 +16697,6,25,8,0.0 +16697,45,9.5,16,0.0 +16697,53,32.8,32,0.0 +16697,62,49.3,10,0.0 +16697,7,30,24,0.0 +16697,67,14,32,0.0 +16697,13,6,9,0.0 +16697,51,53,36,0.0 +16697,22,21,7,0.0 +16697,69,36,8,0.0 +16697,37,26,33,0.0 +16697,20,81,22,0.0 +16697,14,23.25,15,0.0 +16697,24,4.5,5,0.0 +16697,31,12.5,47,0.0 +16697,66,17,38,0.0 +16697,10,31,24,0.0 +16697,52,7,36,0.0 +16697,50,16.25,50,0.0 +16697,39,18,18,0.0 +16697,46,12,40,0.0 +16697,12,38,9,0.0 +16697,75,7.75,44,0.0 +16697,48,12.75,8,0.0 +16698,5,21.35,40,0.0 +16698,13,6,27,0.0 +16698,23,9,24,0.0 +16698,63,43.9,31,0.0 +16698,57,19.5,36,0.0 +16698,38,263.5,8,0.0 +16698,44,19.45,45,0.0 +16698,75,7.75,23,0.0 +16698,29,123.79,47,0.0 +16698,40,18.4,37,0.0 +16698,17,39,9,0.0 +16698,52,7,22,0.0 +16698,45,9.5,45,0.0 +16698,4,22,23,0.0 +16698,47,9.5,38,0.0 +16698,16,17.45,19,0.0 +16698,53,32.8,29,0.0 +16698,64,33.25,22,0.0 +16698,3,10,50,0.0 +16698,74,10,49,0.0 +16698,76,18,19,0.0 +16698,11,21,33,0.0 +16698,42,14,24,0.0 +16698,60,34,27,0.0 +16698,72,34.8,38,0.0 +16698,6,25,4,0.0 +16698,68,12.5,41,0.0 +16698,37,26,32,0.0 +16698,49,20,44,0.0 +16698,59,55,43,0.0 +16698,69,36,34,0.0 +16698,34,14,13,0.0 +16698,55,24,45,0.0 +16698,77,13,37,0.0 +16698,19,9.2,17,0.0 +16698,33,2.5,44,0.0 +16698,24,4.5,21,0.0 +16698,1,18,4,0.0 +16698,66,17,18,0.0 +16698,36,19,25,0.0 +16698,70,15,8,0.0 +16698,31,12.5,41,0.0 +16698,30,25.89,29,0.0 +16698,71,21.5,14,0.0 +16698,18,62.5,17,0.0 +16698,58,13.25,4,0.0 +16698,21,10,18,0.0 +16698,9,97,30,0.0 +16698,43,46,7,0.0 +16698,35,18,29,0.0 +16698,7,30,5,0.0 +16698,39,18,40,0.0 +16698,62,49.3,35,0.0 +16699,37,26,43,0.0 +16699,10,31,22,0.0 +16699,2,19,2,0.0 +16699,75,7.75,12,0.0 +16699,53,32.8,16,0.0 +16699,49,20,11,0.0 +16699,59,55,1,0.0 +16699,9,97,33,0.0 +16699,68,12.5,20,0.0 +16699,35,18,21,0.0 +16699,15,15.5,26,0.0 +16699,67,14,19,0.0 +16699,25,14,27,0.0 +16699,45,9.5,4,0.0 +16699,41,9.65,39,0.0 +16699,31,12.5,44,0.0 +16699,71,21.5,42,0.0 +16699,63,43.9,27,0.0 +16699,43,46,26,0.0 +16699,66,17,36,0.0 +16699,51,53,10,0.0 +16699,62,49.3,23,0.0 +16699,77,13,21,0.0 +16699,73,15,49,0.0 +16699,7,30,2,0.0 +16699,21,10,24,0.0 +16699,20,81,23,0.0 +16699,54,7.45,40,0.0 +16699,29,123.79,16,0.0 +16699,6,25,26,0.0 +16699,46,12,31,0.0 +16699,27,43.9,44,0.0 +16699,69,36,36,0.0 +16699,56,38,2,0.0 +16699,70,15,7,0.0 +16699,32,32,48,0.0 +16699,58,13.25,11,0.0 +16699,12,38,34,0.0 +16699,33,2.5,21,0.0 +16699,39,18,22,0.0 +16699,40,18.4,44,0.0 +16699,64,33.25,46,0.0 +16699,13,6,32,0.0 +16699,57,19.5,10,0.0 +16699,74,10,37,0.0 +16699,48,12.75,22,0.0 +16699,4,22,33,0.0 +16699,19,9.2,4,0.0 +16699,22,21,21,0.0 +16700,54,7.45,45,0.0 +16700,49,20,16,0.0 +16700,25,14,45,0.0 +16700,3,10,3,0.0 +16700,23,9,20,0.0 +16700,34,14,35,0.0 +16700,53,32.8,15,0.0 +16700,71,21.5,7,0.0 +16700,21,10,27,0.0 +16700,74,10,17,0.0 +16700,39,18,19,0.0 +16700,56,38,28,0.0 +16700,62,49.3,28,0.0 +16700,22,21,29,0.0 +16700,61,28.5,42,0.0 +16700,16,17.45,10,0.0 +16700,63,43.9,42,0.0 +16700,31,12.5,30,0.0 +16700,66,17,6,0.0 +16700,27,43.9,17,0.0 +16700,17,39,31,0.0 +16700,29,123.79,6,0.0 +16700,70,15,16,0.0 +16700,69,36,37,0.0 +16700,32,32,22,0.0 +16700,11,21,41,0.0 +16700,9,97,46,0.0 +16700,4,22,29,0.0 +16700,10,31,1,0.0 +16700,50,16.25,16,0.0 +16700,44,19.45,16,0.0 +16700,60,34,50,0.0 +16700,76,18,49,0.0 +16700,59,55,3,0.0 +16700,7,30,49,0.0 +16700,52,7,14,0.0 +16700,51,53,2,0.0 +16701,10,31,16,0.0 +16701,13,6,6,0.0 +16701,68,12.5,41,0.0 +16701,64,33.25,28,0.0 +16701,70,15,40,0.0 +16701,74,10,14,0.0 +16702,18,62.5,46,0.0 +16702,37,26,18,0.0 +16702,65,21.05,46,0.0 +16702,50,16.25,50,0.0 +16702,23,9,8,0.0 +16702,44,19.45,42,0.0 +16702,47,9.5,25,0.0 +16702,14,23.25,31,0.0 +16702,25,14,27,0.0 +16702,45,9.5,30,0.0 +16702,52,7,17,0.0 +16702,15,15.5,27,0.0 +16702,29,123.79,48,0.0 +16702,64,33.25,2,0.0 +16702,3,10,17,0.0 +16702,74,10,48,0.0 +16702,53,32.8,34,0.0 +16702,56,38,42,0.0 +16702,77,13,25,0.0 +16702,20,81,13,0.0 +16702,66,17,48,0.0 +16702,11,21,31,0.0 +16702,48,12.75,49,0.0 +16702,61,28.5,40,0.0 +16702,1,18,10,0.0 +16702,75,7.75,7,0.0 +16702,60,34,38,0.0 +16702,41,9.65,43,0.0 +16702,12,38,24,0.0 +16702,9,97,2,0.0 +16702,54,7.45,31,0.0 +16702,43,46,30,0.0 +16702,57,19.5,17,0.0 +16702,72,34.8,2,0.0 +16702,51,53,13,0.0 +16702,62,49.3,4,0.0 +16702,21,10,23,0.0 +16702,7,30,41,0.0 +16702,38,263.5,20,0.0 +16702,59,55,47,0.0 +16702,27,43.9,28,0.0 +16702,68,12.5,3,0.0 +16702,28,45.6,26,0.0 +16702,30,25.89,16,0.0 +16702,71,21.5,27,0.0 +16702,26,31.23,40,0.0 +16702,73,15,9,0.0 +16702,19,9.2,16,0.0 +16702,34,14,28,0.0 +16702,2,19,3,0.0 +16702,32,32,18,0.0 +16702,24,4.5,23,0.0 +16702,31,12.5,16,0.0 +16702,55,24,3,0.0 +16702,39,18,49,0.0 +16702,16,17.45,23,0.0 +16702,13,6,38,0.0 +16702,63,43.9,37,0.0 +16702,33,2.5,42,0.0 +16702,67,14,15,0.0 +16702,6,25,25,0.0 +16702,4,22,39,0.0 +16702,46,12,25,0.0 +16702,42,14,12,0.0 +16702,35,18,10,0.0 +16702,76,18,4,0.0 +16702,8,40,33,0.0 +16702,40,18.4,3,0.0 +16702,10,31,10,0.0 +16702,36,19,35,0.0 +16703,57,19.5,31,0.0 +16703,59,55,1,0.0 +16703,10,31,17,0.0 +16703,74,10,29,0.0 +16703,31,12.5,25,0.0 +16703,15,15.5,39,0.0 +16703,55,24,29,0.0 +16703,54,7.45,26,0.0 +16703,25,14,21,0.0 +16703,7,30,30,0.0 +16703,63,43.9,34,0.0 +16703,5,21.35,23,0.0 +16703,30,25.89,4,0.0 +16703,8,40,38,0.0 +16703,71,21.5,50,0.0 +16703,49,20,40,0.0 +16703,64,33.25,24,0.0 +16703,70,15,3,0.0 +16703,67,14,44,0.0 +16703,53,32.8,20,0.0 +16703,1,18,22,0.0 +16703,52,7,36,0.0 +16703,22,21,13,0.0 +16703,72,34.8,9,0.0 +16703,29,123.79,21,0.0 +16703,50,16.25,9,0.0 +16703,3,10,19,0.0 +16703,76,18,33,0.0 +16703,39,18,11,0.0 +16703,32,32,44,0.0 +16703,45,9.5,28,0.0 +16703,34,14,6,0.0 +16703,44,19.45,37,0.0 +16703,47,9.5,40,0.0 +16703,17,39,24,0.0 +16703,28,45.6,4,0.0 +16703,19,9.2,35,0.0 +16703,41,9.65,7,0.0 +16703,77,13,43,0.0 +16703,48,12.75,35,0.0 +16703,51,53,38,0.0 +16703,21,10,21,0.0 +16703,65,21.05,7,0.0 +16703,33,2.5,35,0.0 +16703,16,17.45,11,0.0 +16703,62,49.3,5,0.0 +16703,37,26,46,0.0 +16703,35,18,29,0.0 +16703,66,17,35,0.0 +16703,20,81,15,0.0 +16703,13,6,38,0.0 +16703,46,12,37,0.0 +16703,9,97,36,0.0 +16703,73,15,25,0.0 +16704,64,33.25,32,0.0 +16704,72,34.8,25,0.0 +16704,74,10,43,0.0 +16704,49,20,5,0.0 +16704,2,19,41,0.0 +16704,9,97,13,0.0 +16704,46,12,31,0.0 +16704,54,7.45,8,0.0 +16704,67,14,43,0.0 +16704,19,9.2,9,0.0 +16704,16,17.45,27,0.0 +16704,58,13.25,2,0.0 +16704,20,81,34,0.0 +16704,15,15.5,23,0.0 +16704,5,21.35,20,0.0 +16704,43,46,47,0.0 +16704,57,19.5,50,0.0 +16704,6,25,9,0.0 +16704,34,14,22,0.0 +16704,59,55,49,0.0 +16704,7,30,6,0.0 +16704,47,9.5,2,0.0 +16704,36,19,17,0.0 +16704,8,40,40,0.0 +16704,3,10,4,0.0 +16704,66,17,1,0.0 +16704,40,18.4,3,0.0 +16704,22,21,5,0.0 +16704,18,62.5,34,0.0 +16704,11,21,37,0.0 +16704,44,19.45,24,0.0 +16704,38,263.5,16,0.0 +16704,10,31,39,0.0 +16704,71,21.5,3,0.0 +16704,13,6,26,0.0 +16704,75,7.75,42,0.0 +16704,52,7,28,0.0 +16704,27,43.9,9,0.0 +16704,42,14,23,0.0 +16704,37,26,36,0.0 +16704,62,49.3,11,0.0 +16704,31,12.5,11,0.0 +16704,45,9.5,11,0.0 +16704,51,53,1,0.0 +16704,77,13,17,0.0 +16704,39,18,40,0.0 +16704,26,31.23,50,0.0 +16704,21,10,9,0.0 +16704,65,21.05,35,0.0 +16704,56,38,33,0.0 +16704,60,34,9,0.0 +16704,50,16.25,22,0.0 +16704,61,28.5,9,0.0 +16704,24,4.5,9,0.0 +16704,76,18,20,0.0 +16704,32,32,22,0.0 +16704,35,18,11,0.0 +16704,12,38,48,0.0 +16704,70,15,49,0.0 +16704,48,12.75,15,0.0 +16704,29,123.79,2,0.0 +16705,58,13.25,20,0.0 +16705,44,19.45,18,0.0 +16705,33,2.5,37,0.0 +16705,55,24,11,0.0 +16705,53,32.8,43,0.0 +16705,69,36,36,0.0 +16705,26,31.23,12,0.0 +16705,70,15,45,0.0 +16705,16,17.45,7,0.0 +16705,11,21,22,0.0 +16705,41,9.65,13,0.0 +16705,73,15,33,0.0 +16705,42,14,15,0.0 +16705,31,12.5,9,0.0 +16705,15,15.5,42,0.0 +16705,23,9,39,0.0 +16705,60,34,23,0.0 +16705,5,21.35,8,0.0 +16705,18,62.5,4,0.0 +16705,35,18,20,0.0 +16705,74,10,27,0.0 +16705,75,7.75,44,0.0 +16705,61,28.5,29,0.0 +16705,2,19,4,0.0 +16705,48,12.75,30,0.0 +16705,62,49.3,50,0.0 +16705,8,40,41,0.0 +16705,10,31,45,0.0 +16705,24,4.5,14,0.0 +16705,39,18,16,0.0 +16705,52,7,10,0.0 +16705,72,34.8,37,0.0 +16705,59,55,45,0.0 +16705,1,18,1,0.0 +16705,77,13,8,0.0 +16705,47,9.5,3,0.0 +16706,76,18,30,0.0 +16706,41,9.65,2,0.0 +16706,31,12.5,19,0.0 +16706,42,14,30,0.0 +16707,73,15,7,0.0 +16707,22,21,30,0.0 +16707,9,97,48,0.0 +16707,8,40,14,0.0 +16707,64,33.25,46,0.0 +16707,55,24,1,0.0 +16707,57,19.5,14,0.0 +16707,15,15.5,49,0.0 +16707,69,36,20,0.0 +16707,77,13,12,0.0 +16707,66,17,48,0.0 +16707,21,10,36,0.0 +16707,74,10,30,0.0 +16707,46,12,22,0.0 +16707,18,62.5,48,0.0 +16707,13,6,8,0.0 +16707,37,26,16,0.0 +16707,3,10,27,0.0 +16707,43,46,21,0.0 +16707,39,18,9,0.0 +16707,25,14,25,0.0 +16707,48,12.75,26,0.0 +16707,12,38,34,0.0 +16707,32,32,2,0.0 +16707,58,13.25,32,0.0 +16708,14,23.25,4,0.0 +16708,4,22,50,0.0 +16708,9,97,3,0.0 +16708,58,13.25,19,0.0 +16708,51,53,5,0.0 +16708,77,13,6,0.0 +16708,37,26,35,0.0 +16708,42,14,28,0.0 +16708,44,19.45,40,0.0 +16708,72,34.8,40,0.0 +16708,19,9.2,31,0.0 +16708,5,21.35,22,0.0 +16708,15,15.5,19,0.0 +16708,41,9.65,31,0.0 +16708,16,17.45,48,0.0 +16708,50,16.25,23,0.0 +16708,18,62.5,1,0.0 +16708,64,33.25,44,0.0 +16708,46,12,4,0.0 +16708,68,12.5,42,0.0 +16708,56,38,7,0.0 +16708,34,14,31,0.0 +16708,13,6,1,0.0 +16708,17,39,31,0.0 +16708,59,55,49,0.0 +16708,26,31.23,27,0.0 +16708,49,20,11,0.0 +16708,29,123.79,3,0.0 +16708,74,10,22,0.0 +16708,70,15,38,0.0 +16708,11,21,48,0.0 +16708,38,263.5,38,0.0 +16708,52,7,39,0.0 +16708,43,46,14,0.0 +16708,3,10,11,0.0 +16708,12,38,35,0.0 +16708,21,10,7,0.0 +16708,73,15,4,0.0 +16708,55,24,10,0.0 +16708,30,25.89,12,0.0 +16708,45,9.5,14,0.0 +16708,35,18,10,0.0 +16708,76,18,47,0.0 +16708,23,9,7,0.0 +16708,62,49.3,49,0.0 +16708,61,28.5,2,0.0 +16709,46,12,39,0.0 +16709,11,21,28,0.0 +16709,71,21.5,42,0.0 +16709,6,25,24,0.0 +16709,24,4.5,21,0.0 +16709,30,25.89,2,0.0 +16709,23,9,12,0.0 +16709,2,19,6,0.0 +16709,3,10,34,0.0 +16709,37,26,35,0.0 +16709,5,21.35,12,0.0 +16709,21,10,29,0.0 +16709,72,34.8,23,0.0 +16709,63,43.9,29,0.0 +16709,34,14,27,0.0 +16709,47,9.5,25,0.0 +16709,61,28.5,8,0.0 +16709,59,55,29,0.0 +16709,1,18,46,0.0 +16709,56,38,1,0.0 +16709,54,7.45,34,0.0 +16709,36,19,32,0.0 +16709,7,30,9,0.0 +16709,77,13,9,0.0 +16709,20,81,21,0.0 +16709,10,31,35,0.0 +16709,73,15,50,0.0 +16709,67,14,33,0.0 +16709,62,49.3,5,0.0 +16709,57,19.5,12,0.0 +16709,44,19.45,26,0.0 +16709,19,9.2,43,0.0 +16709,52,7,17,0.0 +16709,75,7.75,31,0.0 +16709,74,10,2,0.0 +16709,31,12.5,2,0.0 +16709,68,12.5,35,0.0 +16709,15,15.5,40,0.0 +16709,29,123.79,15,0.0 +16709,43,46,41,0.0 +16709,45,9.5,14,0.0 +16709,42,14,14,0.0 +16709,58,13.25,17,0.0 +16709,26,31.23,18,0.0 +16709,33,2.5,35,0.0 +16709,32,32,27,0.0 +16709,55,24,39,0.0 +16710,22,21,44,0.0 +16710,77,13,3,0.0 +16710,55,24,32,0.0 +16710,32,32,7,0.0 +16711,52,7,40,0.0 +16711,71,21.5,26,0.0 +16711,35,18,49,0.0 +16711,51,53,42,0.0 +16711,48,12.75,41,0.0 +16711,39,18,49,0.0 +16711,73,15,9,0.0 +16711,76,18,14,0.0 +16711,16,17.45,39,0.0 +16711,36,19,40,0.0 +16711,68,12.5,39,0.0 +16711,67,14,5,0.0 +16711,31,12.5,11,0.0 +16711,27,43.9,7,0.0 +16711,74,10,38,0.0 +16711,30,25.89,47,0.0 +16711,62,49.3,30,0.0 +16711,19,9.2,10,0.0 +16711,60,34,10,0.0 +16711,32,32,15,0.0 +16711,34,14,50,0.0 +16711,77,13,47,0.0 +16711,61,28.5,42,0.0 +16711,25,14,49,0.0 +16711,47,9.5,43,0.0 +16711,57,19.5,42,0.0 +16711,28,45.6,15,0.0 +16711,7,30,49,0.0 +16711,29,123.79,42,0.0 +16711,33,2.5,5,0.0 +16711,9,97,14,0.0 +16711,59,55,41,0.0 +16711,4,22,22,0.0 +16711,8,40,41,0.0 +16711,63,43.9,25,0.0 +16711,53,32.8,13,0.0 +16711,2,19,12,0.0 +16711,70,15,21,0.0 +16711,26,31.23,24,0.0 +16711,10,31,9,0.0 +16711,17,39,2,0.0 +16711,38,263.5,12,0.0 +16711,65,21.05,18,0.0 +16711,37,26,33,0.0 +16711,21,10,47,0.0 +16711,6,25,9,0.0 +16711,58,13.25,4,0.0 +16711,43,46,13,0.0 +16711,54,7.45,48,0.0 +16711,44,19.45,19,0.0 +16711,55,24,34,0.0 +16711,18,62.5,50,0.0 +16711,14,23.25,37,0.0 +16711,72,34.8,34,0.0 +16712,46,12,40,0.0 +16712,23,9,49,0.0 +16712,51,53,50,0.0 +16712,3,10,30,0.0 +16712,68,12.5,43,0.0 +16712,58,13.25,26,0.0 +16712,53,32.8,25,0.0 +16712,5,21.35,38,0.0 +16712,65,21.05,37,0.0 +16712,37,26,28,0.0 +16712,69,36,39,0.0 +16712,28,45.6,48,0.0 +16712,62,49.3,29,0.0 +16712,17,39,37,0.0 +16712,16,17.45,47,0.0 +16712,70,15,23,0.0 +16713,52,7,23,0.0 +16713,31,12.5,37,0.0 +16713,24,4.5,16,0.0 +16713,34,14,29,0.0 +16713,46,12,43,0.0 +16713,8,40,2,0.0 +16713,60,34,18,0.0 +16713,67,14,7,0.0 +16713,21,10,4,0.0 +16713,43,46,48,0.0 +16713,44,19.45,42,0.0 +16714,47,9.5,9,0.0 +16714,5,21.35,24,0.0 +16714,37,26,9,0.0 +16714,30,25.89,23,0.0 +16714,66,17,21,0.0 +16714,32,32,42,0.0 +16714,10,31,39,0.0 +16714,49,20,32,0.0 +16714,14,23.25,30,0.0 +16714,67,14,32,0.0 +16714,34,14,37,0.0 +16714,11,21,23,0.0 +16714,27,43.9,18,0.0 +16714,1,18,23,0.0 +16714,3,10,48,0.0 +16714,77,13,32,0.0 +16714,74,10,49,0.0 +16714,72,34.8,24,0.0 +16714,8,40,12,0.0 +16714,57,19.5,24,0.0 +16714,71,21.5,21,0.0 +16714,48,12.75,9,0.0 +16714,15,15.5,15,0.0 +16714,9,97,31,0.0 +16714,63,43.9,24,0.0 +16714,64,33.25,41,0.0 +16714,23,9,36,0.0 +16714,54,7.45,33,0.0 +16714,45,9.5,7,0.0 +16714,43,46,13,0.0 +16714,41,9.65,6,0.0 +16714,22,21,33,0.0 +16714,21,10,18,0.0 +16714,42,14,37,0.0 +16714,28,45.6,21,0.0 +16714,7,30,30,0.0 +16714,18,62.5,21,0.0 +16714,46,12,23,0.0 +16714,52,7,26,0.0 +16714,51,53,18,0.0 +16714,29,123.79,1,0.0 +16714,4,22,40,0.0 +16714,44,19.45,49,0.0 +16714,59,55,28,0.0 +16714,65,21.05,42,0.0 +16714,16,17.45,20,0.0 +16714,58,13.25,35,0.0 +16714,39,18,14,0.0 +16714,13,6,44,0.0 +16714,25,14,17,0.0 +16714,56,38,19,0.0 +16714,70,15,36,0.0 +16714,50,16.25,35,0.0 +16714,75,7.75,38,0.0 +16714,36,19,46,0.0 +16714,31,12.5,36,0.0 +16714,76,18,31,0.0 +16714,6,25,8,0.0 +16714,24,4.5,50,0.0 +16714,12,38,20,0.0 +16715,15,15.5,25,0.0 +16716,47,9.5,1,0.0 +16716,75,7.75,39,0.0 +16716,11,21,18,0.0 +16716,76,18,48,0.0 +16716,22,21,20,0.0 +16716,14,23.25,32,0.0 +16716,63,43.9,29,0.0 +16716,71,21.5,41,0.0 +16716,31,12.5,46,0.0 +16716,54,7.45,19,0.0 +16716,44,19.45,21,0.0 +16716,2,19,7,0.0 +16716,35,18,1,0.0 +16716,67,14,17,0.0 +16716,16,17.45,31,0.0 +16716,17,39,16,0.0 +16716,59,55,3,0.0 +16716,26,31.23,10,0.0 +16716,24,4.5,37,0.0 +16716,62,49.3,3,0.0 +16716,69,36,11,0.0 +16716,55,24,50,0.0 +16716,33,2.5,42,0.0 +16716,25,14,23,0.0 +16716,52,7,40,0.0 +16716,70,15,7,0.0 +16716,51,53,38,0.0 +16716,72,34.8,35,0.0 +16716,4,22,45,0.0 +16716,7,30,16,0.0 +16716,27,43.9,4,0.0 +16716,8,40,5,0.0 +16716,18,62.5,46,0.0 +16716,29,123.79,29,0.0 +16716,20,81,47,0.0 +16716,6,25,3,0.0 +16716,41,9.65,34,0.0 +16716,37,26,35,0.0 +16716,12,38,50,0.0 +16716,19,9.2,12,0.0 +16716,40,18.4,6,0.0 +16716,64,33.25,40,0.0 +16716,73,15,6,0.0 +16716,23,9,18,0.0 +16716,74,10,50,0.0 +16716,36,19,26,0.0 +16716,3,10,19,0.0 +16716,46,12,37,0.0 +16716,28,45.6,19,0.0 +16716,77,13,22,0.0 +16716,53,32.8,2,0.0 +16716,1,18,2,0.0 +16716,5,21.35,50,0.0 +16716,9,97,24,0.0 +16716,15,15.5,1,0.0 +16716,10,31,31,0.0 +16716,56,38,35,0.0 +16716,38,263.5,27,0.0 +16716,50,16.25,32,0.0 +16716,30,25.89,45,0.0 +16716,57,19.5,13,0.0 +16716,58,13.25,4,0.0 +16716,61,28.5,16,0.0 +16716,34,14,2,0.0 +16716,45,9.5,10,0.0 +16716,13,6,24,0.0 +16716,49,20,8,0.0 +16716,68,12.5,42,0.0 +16716,48,12.75,8,0.0 +16716,65,21.05,42,0.0 +16716,43,46,32,0.0 +16716,60,34,8,0.0 +16717,64,33.25,26,0.0 +16717,75,7.75,28,0.0 +16717,44,19.45,37,0.0 +16717,59,55,7,0.0 +16717,10,31,13,0.0 +16717,31,12.5,33,0.0 +16717,26,31.23,31,0.0 +16717,28,45.6,41,0.0 +16717,56,38,30,0.0 +16717,7,30,48,0.0 +16717,50,16.25,42,0.0 +16717,63,43.9,25,0.0 +16717,4,22,47,0.0 +16717,47,9.5,14,0.0 +16717,76,18,28,0.0 +16717,19,9.2,45,0.0 +16717,11,21,6,0.0 +16717,34,14,21,0.0 +16717,69,36,38,0.0 +16717,35,18,34,0.0 +16717,41,9.65,16,0.0 +16717,6,25,18,0.0 +16717,71,21.5,13,0.0 +16717,52,7,18,0.0 +16717,43,46,30,0.0 +16717,33,2.5,21,0.0 +16717,66,17,8,0.0 +16717,20,81,49,0.0 +16718,22,21,12,0.0 +16718,37,26,25,0.0 +16718,50,16.25,12,0.0 +16718,75,7.75,47,0.0 +16718,12,38,21,0.0 +16718,1,18,34,0.0 +16718,33,2.5,38,0.0 +16718,24,4.5,15,0.0 +16718,14,23.25,34,0.0 +16718,25,14,5,0.0 +16718,27,43.9,4,0.0 +16718,51,53,30,0.0 +16718,19,9.2,26,0.0 +16719,9,97,38,0.0 +16720,59,55,23,0.0 +16720,58,13.25,9,0.0 +16720,21,10,1,0.0 +16720,76,18,5,0.0 +16720,16,17.45,10,0.0 +16720,39,18,2,0.0 +16720,15,15.5,33,0.0 +16720,9,97,45,0.0 +16720,57,19.5,45,0.0 +16720,69,36,14,0.0 +16720,7,30,50,0.0 +16720,10,31,41,0.0 +16720,25,14,9,0.0 +16720,30,25.89,35,0.0 +16720,49,20,37,0.0 +16720,40,18.4,22,0.0 +16720,48,12.75,13,0.0 +16720,4,22,25,0.0 +16720,45,9.5,25,0.0 +16720,67,14,15,0.0 +16720,72,34.8,2,0.0 +16720,1,18,48,0.0 +16720,51,53,9,0.0 +16720,52,7,17,0.0 +16720,23,9,36,0.0 +16720,50,16.25,32,0.0 +16720,29,123.79,31,0.0 +16720,33,2.5,22,0.0 +16720,35,18,40,0.0 +16720,60,34,47,0.0 +16720,42,14,8,0.0 +16720,44,19.45,8,0.0 +16720,56,38,12,0.0 +16720,6,25,16,0.0 +16720,28,45.6,27,0.0 +16720,70,15,5,0.0 +16720,65,21.05,42,0.0 +16720,19,9.2,42,0.0 +16720,24,4.5,11,0.0 +16720,47,9.5,8,0.0 +16720,3,10,32,0.0 +16720,37,26,3,0.0 +16720,20,81,18,0.0 +16720,8,40,23,0.0 +16720,31,12.5,4,0.0 +16720,36,19,32,0.0 +16720,54,7.45,23,0.0 +16720,53,32.8,46,0.0 +16720,61,28.5,45,0.0 +16720,71,21.5,16,0.0 +16720,68,12.5,39,0.0 +16720,74,10,50,0.0 +16720,5,21.35,6,0.0 +16720,27,43.9,3,0.0 +16720,41,9.65,18,0.0 +16720,73,15,5,0.0 +16720,14,23.25,41,0.0 +16720,38,263.5,40,0.0 +16720,18,62.5,50,0.0 +16720,43,46,28,0.0 +16720,77,13,6,0.0 +16720,63,43.9,39,0.0 +16720,34,14,9,0.0 +16720,26,31.23,25,0.0 +16720,11,21,4,0.0 +16720,17,39,28,0.0 +16720,75,7.75,14,0.0 +16720,22,21,39,0.0 +16721,12,38,8,0.0 +16721,58,13.25,42,0.0 +16721,55,24,15,0.0 +16721,24,4.5,35,0.0 +16721,51,53,24,0.0 +16721,17,39,34,0.0 +16721,48,12.75,1,0.0 +16721,9,97,11,0.0 +16721,52,7,24,0.0 +16721,33,2.5,30,0.0 +16721,6,25,43,0.0 +16721,7,30,25,0.0 +16721,62,49.3,45,0.0 +16721,76,18,39,0.0 +16721,37,26,18,0.0 +16721,28,45.6,33,0.0 +16721,70,15,34,0.0 +16721,27,43.9,50,0.0 +16721,71,21.5,3,0.0 +16721,57,19.5,2,0.0 +16721,68,12.5,10,0.0 +16721,13,6,26,0.0 +16721,1,18,2,0.0 +16721,19,9.2,13,0.0 +16721,18,62.5,38,0.0 +16721,43,46,34,0.0 +16721,25,14,2,0.0 +16721,23,9,29,0.0 +16721,8,40,25,0.0 +16721,73,15,49,0.0 +16721,34,14,16,0.0 +16721,67,14,27,0.0 +16721,5,21.35,17,0.0 +16721,35,18,32,0.0 +16721,21,10,29,0.0 +16721,29,123.79,49,0.0 +16721,10,31,4,0.0 +16721,4,22,50,0.0 +16721,72,34.8,22,0.0 +16721,50,16.25,8,0.0 +16721,11,21,42,0.0 +16721,32,32,35,0.0 +16721,39,18,16,0.0 +16721,61,28.5,34,0.0 +16721,38,263.5,37,0.0 +16721,46,12,36,0.0 +16721,42,14,4,0.0 +16721,74,10,21,0.0 +16721,20,81,3,0.0 +16721,40,18.4,27,0.0 +16721,36,19,44,0.0 +16721,59,55,5,0.0 +16721,63,43.9,49,0.0 +16721,54,7.45,9,0.0 +16721,77,13,50,0.0 +16721,31,12.5,39,0.0 +16721,45,9.5,22,0.0 +16722,71,21.5,7,0.0 +16722,63,43.9,2,0.0 +16722,46,12,14,0.0 +16722,70,15,26,0.0 +16722,7,30,23,0.0 +16722,65,21.05,47,0.0 +16722,35,18,4,0.0 +16722,55,24,36,0.0 +16722,58,13.25,17,0.0 +16722,48,12.75,26,0.0 +16722,15,15.5,9,0.0 +16722,29,123.79,8,0.0 +16722,49,20,18,0.0 +16722,74,10,3,0.0 +16722,39,18,50,0.0 +16723,41,9.65,45,0.0 +16723,45,9.5,24,0.0 +16723,6,25,7,0.0 +16723,60,34,16,0.0 +16723,13,6,47,0.0 +16723,55,24,39,0.0 +16723,14,23.25,8,0.0 +16723,32,32,38,0.0 +16723,77,13,42,0.0 +16723,34,14,12,0.0 +16723,23,9,2,0.0 +16723,27,43.9,1,0.0 +16723,20,81,17,0.0 +16723,43,46,37,0.0 +16723,46,12,26,0.0 +16723,72,34.8,40,0.0 +16723,44,19.45,44,0.0 +16723,16,17.45,50,0.0 +16723,1,18,9,0.0 +16723,10,31,3,0.0 +16723,75,7.75,35,0.0 +16723,51,53,42,0.0 +16723,3,10,36,0.0 +16723,38,263.5,32,0.0 +16723,52,7,25,0.0 +16723,69,36,25,0.0 +16723,22,21,41,0.0 +16723,7,30,39,0.0 +16723,50,16.25,34,0.0 +16723,62,49.3,11,0.0 +16723,9,97,40,0.0 +16723,48,12.75,50,0.0 +16723,28,45.6,7,0.0 +16723,56,38,48,0.0 +16723,8,40,7,0.0 +16723,30,25.89,1,0.0 +16723,24,4.5,45,0.0 +16723,4,22,37,0.0 +16723,39,18,48,0.0 +16723,65,21.05,31,0.0 +16723,26,31.23,50,0.0 +16723,42,14,3,0.0 +16723,67,14,38,0.0 +16723,29,123.79,46,0.0 +16723,54,7.45,23,0.0 +16723,40,18.4,38,0.0 +16723,63,43.9,45,0.0 +16723,58,13.25,26,0.0 +16723,15,15.5,5,0.0 +16723,49,20,41,0.0 +16723,68,12.5,42,0.0 +16723,57,19.5,34,0.0 +16723,37,26,1,0.0 +16723,21,10,48,0.0 +16723,18,62.5,50,0.0 +16723,59,55,9,0.0 +16723,11,21,16,0.0 +16723,76,18,32,0.0 +16723,53,32.8,7,0.0 +16723,19,9.2,28,0.0 +16723,47,9.5,15,0.0 +16723,71,21.5,20,0.0 +16723,12,38,8,0.0 +16723,74,10,16,0.0 +16723,61,28.5,35,0.0 +16723,35,18,2,0.0 +16723,70,15,50,0.0 +16723,2,19,17,0.0 +16723,31,12.5,41,0.0 +16723,73,15,37,0.0 +16723,5,21.35,9,0.0 +16724,74,10,30,0.0 +16724,29,123.79,31,0.0 +16724,31,12.5,47,0.0 +16724,77,13,27,0.0 +16724,60,34,16,0.0 +16724,41,9.65,21,0.0 +16724,38,263.5,6,0.0 +16724,72,34.8,13,0.0 +16724,76,18,11,0.0 +16724,10,31,32,0.0 +16724,37,26,23,0.0 +16724,32,32,14,0.0 +16724,47,9.5,49,0.0 +16724,75,7.75,15,0.0 +16724,70,15,3,0.0 +16724,7,30,36,0.0 +16724,4,22,27,0.0 +16724,44,19.45,5,0.0 +16724,46,12,18,0.0 +16724,16,17.45,50,0.0 +16724,8,40,4,0.0 +16724,50,16.25,38,0.0 +16724,23,9,4,0.0 +16724,56,38,41,0.0 +16724,6,25,8,0.0 +16724,3,10,47,0.0 +16724,62,49.3,8,0.0 +16724,69,36,16,0.0 +16724,24,4.5,46,0.0 +16724,42,14,22,0.0 +16724,27,43.9,40,0.0 +16725,71,21.5,28,0.0 +16725,17,39,23,0.0 +16725,65,21.05,27,0.0 +16725,59,55,32,0.0 +16725,41,9.65,15,0.0 +16725,9,97,6,0.0 +16725,38,263.5,12,0.0 +16725,75,7.75,6,0.0 +16725,28,45.6,32,0.0 +16725,72,34.8,20,0.0 +16725,19,9.2,39,0.0 +16725,58,13.25,13,0.0 +16725,34,14,35,0.0 +16725,11,21,31,0.0 +16725,26,31.23,39,0.0 +16725,7,30,36,0.0 +16725,47,9.5,42,0.0 +16725,23,9,21,0.0 +16725,42,14,20,0.0 +16725,21,10,16,0.0 +16725,44,19.45,23,0.0 +16725,68,12.5,3,0.0 +16725,29,123.79,40,0.0 +16725,33,2.5,17,0.0 +16725,35,18,27,0.0 +16725,22,21,2,0.0 +16725,32,32,31,0.0 +16725,52,7,32,0.0 +16725,64,33.25,13,0.0 +16725,27,43.9,38,0.0 +16725,31,12.5,26,0.0 +16725,15,15.5,38,0.0 +16725,5,21.35,26,0.0 +16725,14,23.25,21,0.0 +16725,69,36,33,0.0 +16725,18,62.5,30,0.0 +16725,45,9.5,3,0.0 +16725,37,26,11,0.0 +16725,20,81,12,0.0 +16725,24,4.5,32,0.0 +16725,67,14,4,0.0 +16725,48,12.75,17,0.0 +16725,70,15,23,0.0 +16725,16,17.45,6,0.0 +16725,73,15,8,0.0 +16725,61,28.5,46,0.0 +16725,77,13,18,0.0 +16725,3,10,47,0.0 +16725,54,7.45,39,0.0 +16725,46,12,18,0.0 +16725,10,31,27,0.0 +16725,60,34,39,0.0 +16725,39,18,44,0.0 +16725,76,18,32,0.0 +16725,56,38,4,0.0 +16725,1,18,29,0.0 +16725,66,17,11,0.0 +16726,22,21,16,0.0 +16726,40,18.4,15,0.0 +16726,7,30,40,0.0 +16726,21,10,29,0.0 +16726,72,34.8,12,0.0 +16726,55,24,37,0.0 +16726,45,9.5,45,0.0 +16726,14,23.25,29,0.0 +16726,23,9,17,0.0 +16726,76,18,12,0.0 +16726,73,15,7,0.0 +16726,9,97,34,0.0 +16726,29,123.79,12,0.0 +16726,20,81,34,0.0 +16726,65,21.05,45,0.0 +16726,52,7,36,0.0 +16726,63,43.9,3,0.0 +16726,61,28.5,7,0.0 +16726,35,18,40,0.0 +16726,44,19.45,24,0.0 +16726,47,9.5,37,0.0 +16726,27,43.9,10,0.0 +16726,71,21.5,6,0.0 +16726,38,263.5,29,0.0 +16726,70,15,8,0.0 +16726,8,40,29,0.0 +16726,75,7.75,39,0.0 +16726,59,55,50,0.0 +16726,53,32.8,31,0.0 +16726,68,12.5,50,0.0 +16726,1,18,30,0.0 +16726,43,46,10,0.0 +16726,39,18,40,0.0 +16726,62,49.3,11,0.0 +16726,30,25.89,31,0.0 +16726,11,21,8,0.0 +16726,25,14,47,0.0 +16726,60,34,11,0.0 +16726,12,38,35,0.0 +16726,49,20,14,0.0 +16726,26,31.23,17,0.0 +16726,46,12,9,0.0 +16726,36,19,8,0.0 +16726,66,17,35,0.0 +16726,42,14,1,0.0 +16726,4,22,3,0.0 +16726,67,14,14,0.0 +16726,32,32,19,0.0 +16726,15,15.5,21,0.0 +16726,58,13.25,35,0.0 +16726,69,36,35,0.0 +16726,56,38,31,0.0 +16726,41,9.65,40,0.0 +16726,24,4.5,7,0.0 +16726,17,39,47,0.0 +16726,50,16.25,41,0.0 +16726,54,7.45,5,0.0 +16726,13,6,26,0.0 +16726,6,25,18,0.0 +16726,3,10,2,0.0 +16726,48,12.75,44,0.0 +16726,77,13,10,0.0 +16726,19,9.2,18,0.0 +16726,10,31,19,0.0 +16726,5,21.35,1,0.0 +16726,74,10,5,0.0 +16726,34,14,34,0.0 +16726,2,19,36,0.0 +16726,31,12.5,29,0.0 +16726,57,19.5,30,0.0 +16726,33,2.5,48,0.0 +16726,51,53,35,0.0 +16726,64,33.25,35,0.0 +16726,37,26,38,0.0 +16727,51,53,43,0.0 +16727,67,14,22,0.0 +16727,41,9.65,42,0.0 +16727,77,13,45,0.0 +16727,20,81,45,0.0 +16727,17,39,1,0.0 +16727,63,43.9,18,0.0 +16727,48,12.75,11,0.0 +16727,11,21,28,0.0 +16727,65,21.05,1,0.0 +16727,39,18,35,0.0 +16727,3,10,14,0.0 +16727,45,9.5,41,0.0 +16727,43,46,29,0.0 +16727,30,25.89,27,0.0 +16727,22,21,34,0.0 +16727,21,10,34,0.0 +16727,7,30,29,0.0 +16727,31,12.5,34,0.0 +16727,6,25,8,0.0 +16727,69,36,49,0.0 +16727,49,20,33,0.0 +16727,28,45.6,46,0.0 +16727,54,7.45,27,0.0 +16727,46,12,38,0.0 +16727,70,15,31,0.0 +16727,29,123.79,9,0.0 +16727,50,16.25,47,0.0 +16727,72,34.8,43,0.0 +16727,71,21.5,20,0.0 +16727,13,6,50,0.0 +16727,42,14,22,0.0 +16727,26,31.23,15,0.0 +16727,14,23.25,39,0.0 +16727,62,49.3,11,0.0 +16727,66,17,3,0.0 +16727,76,18,23,0.0 +16727,58,13.25,37,0.0 +16727,75,7.75,24,0.0 +16727,12,38,28,0.0 +16727,37,26,2,0.0 +16727,38,263.5,12,0.0 +16727,16,17.45,30,0.0 +16727,55,24,50,0.0 +16727,34,14,14,0.0 +16727,1,18,20,0.0 +16727,15,15.5,38,0.0 +16727,59,55,21,0.0 +16727,64,33.25,17,0.0 +16727,4,22,25,0.0 +16727,60,34,5,0.0 +16727,32,32,33,0.0 +16727,9,97,39,0.0 +16727,19,9.2,37,0.0 +16727,18,62.5,50,0.0 +16727,53,32.8,37,0.0 +16727,68,12.5,15,0.0 +16727,61,28.5,7,0.0 +16727,52,7,5,0.0 +16728,71,21.5,14,0.0 +16729,5,21.35,35,0.0 +16729,69,36,6,0.0 +16729,36,19,15,0.0 +16729,11,21,36,0.0 +16729,73,15,27,0.0 +16729,28,45.6,23,0.0 +16729,52,7,48,0.0 +16729,58,13.25,22,0.0 +16729,35,18,34,0.0 +16729,15,15.5,27,0.0 +16729,41,9.65,1,0.0 +16729,2,19,9,0.0 +16729,43,46,50,0.0 +16729,10,31,34,0.0 +16729,76,18,3,0.0 +16729,71,21.5,48,0.0 +16729,21,10,18,0.0 +16729,12,38,18,0.0 +16729,9,97,9,0.0 +16729,48,12.75,13,0.0 +16729,72,34.8,2,0.0 +16729,45,9.5,24,0.0 +16729,8,40,40,0.0 +16729,17,39,23,0.0 +16729,22,21,4,0.0 +16729,4,22,37,0.0 +16729,63,43.9,46,0.0 +16729,31,12.5,19,0.0 +16729,67,14,50,0.0 +16729,74,10,14,0.0 +16729,66,17,46,0.0 +16729,55,24,9,0.0 +16729,18,62.5,8,0.0 +16729,40,18.4,2,0.0 +16729,20,81,29,0.0 +16730,6,25,22,0.0 +16730,61,28.5,13,0.0 +16730,26,31.23,50,0.0 +16730,72,34.8,11,0.0 +16730,60,34,21,0.0 +16730,57,19.5,41,0.0 +16730,41,9.65,41,0.0 +16730,69,36,24,0.0 +16730,64,33.25,12,0.0 +16730,2,19,6,0.0 +16730,8,40,41,0.0 +16730,31,12.5,24,0.0 +16730,66,17,1,0.0 +16730,29,123.79,35,0.0 +16730,33,2.5,35,0.0 +16730,12,38,24,0.0 +16730,20,81,46,0.0 +16730,74,10,30,0.0 +16730,65,21.05,30,0.0 +16730,59,55,16,0.0 +16730,40,18.4,6,0.0 +16730,54,7.45,19,0.0 +16730,30,25.89,37,0.0 +16730,21,10,27,0.0 +16730,25,14,20,0.0 +16730,45,9.5,2,0.0 +16730,4,22,26,0.0 +16730,15,15.5,47,0.0 +16730,70,15,31,0.0 +16730,49,20,23,0.0 +16730,48,12.75,35,0.0 +16730,3,10,40,0.0 +16730,58,13.25,17,0.0 +16730,14,23.25,11,0.0 +16730,77,13,8,0.0 +16730,35,18,42,0.0 +16730,75,7.75,3,0.0 +16730,17,39,14,0.0 +16730,53,32.8,21,0.0 +16730,63,43.9,4,0.0 +16730,23,9,17,0.0 +16730,56,38,22,0.0 +16730,10,31,31,0.0 +16730,38,263.5,24,0.0 +16730,34,14,41,0.0 +16730,55,24,28,0.0 +16730,7,30,28,0.0 +16730,51,53,22,0.0 +16730,19,9.2,16,0.0 +16730,22,21,30,0.0 +16730,1,18,5,0.0 +16730,47,9.5,42,0.0 +16730,39,18,35,0.0 +16730,73,15,18,0.0 +16730,68,12.5,44,0.0 +16730,28,45.6,39,0.0 +16730,67,14,14,0.0 +16730,36,19,29,0.0 +16730,50,16.25,8,0.0 +16730,46,12,45,0.0 +16730,71,21.5,14,0.0 +16731,37,26,37,0.0 +16731,69,36,49,0.0 +16731,18,62.5,47,0.0 +16731,76,18,44,0.0 +16731,34,14,50,0.0 +16731,48,12.75,16,0.0 +16731,6,25,40,0.0 +16731,27,43.9,1,0.0 +16731,64,33.25,17,0.0 +16731,74,10,7,0.0 +16731,15,15.5,12,0.0 +16731,33,2.5,7,0.0 +16731,63,43.9,2,0.0 +16731,9,97,2,0.0 +16731,26,31.23,24,0.0 +16731,25,14,26,0.0 +16731,47,9.5,2,0.0 +16731,16,17.45,45,0.0 +16731,28,45.6,28,0.0 +16731,39,18,32,0.0 +16731,5,21.35,3,0.0 +16731,56,38,34,0.0 +16731,2,19,49,0.0 +16731,73,15,10,0.0 +16731,14,23.25,30,0.0 +16731,36,19,6,0.0 +16731,49,20,26,0.0 +16731,8,40,37,0.0 +16731,40,18.4,34,0.0 +16731,4,22,14,0.0 +16731,61,28.5,42,0.0 +16731,45,9.5,17,0.0 +16731,23,9,50,0.0 +16731,24,4.5,29,0.0 +16731,75,7.75,10,0.0 +16731,66,17,36,0.0 +16731,3,10,32,0.0 +16731,54,7.45,40,0.0 +16731,55,24,1,0.0 +16731,51,53,27,0.0 +16731,22,21,40,0.0 +16731,72,34.8,8,0.0 +16731,11,21,36,0.0 +16731,57,19.5,32,0.0 +16731,71,21.5,45,0.0 +16731,12,38,12,0.0 +16731,31,12.5,24,0.0 +16731,21,10,31,0.0 +16731,29,123.79,35,0.0 +16731,46,12,42,0.0 +16731,59,55,11,0.0 +16731,70,15,17,0.0 +16731,42,14,8,0.0 +16731,58,13.25,9,0.0 +16731,52,7,28,0.0 +16731,43,46,12,0.0 +16731,35,18,44,0.0 +16731,41,9.65,29,0.0 +16731,68,12.5,6,0.0 +16731,17,39,35,0.0 +16731,44,19.45,15,0.0 +16731,50,16.25,36,0.0 +16731,30,25.89,28,0.0 +16731,62,49.3,18,0.0 +16731,13,6,2,0.0 +16731,20,81,28,0.0 +16731,53,32.8,25,0.0 +16731,60,34,40,0.0 +16731,65,21.05,5,0.0 +16731,10,31,1,0.0 +16731,19,9.2,44,0.0 +16731,32,32,34,0.0 +16731,67,14,6,0.0 +16732,15,15.5,13,0.0 +16732,75,7.75,19,0.0 +16732,22,21,5,0.0 +16732,13,6,16,0.0 +16732,21,10,42,0.0 +16732,51,53,38,0.0 +16732,50,16.25,7,0.0 +16732,57,19.5,25,0.0 +16732,37,26,44,0.0 +16732,68,12.5,40,0.0 +16732,40,18.4,12,0.0 +16732,64,33.25,49,0.0 +16732,60,34,29,0.0 +16732,14,23.25,44,0.0 +16732,16,17.45,23,0.0 +16732,56,38,18,0.0 +16732,41,9.65,22,0.0 +16732,46,12,17,0.0 +16732,72,34.8,11,0.0 +16732,32,32,23,0.0 +16732,8,40,31,0.0 +16732,54,7.45,44,0.0 +16732,70,15,46,0.0 +16732,66,17,50,0.0 +16732,31,12.5,21,0.0 +16732,33,2.5,46,0.0 +16732,30,25.89,24,0.0 +16732,42,14,27,0.0 +16732,53,32.8,47,0.0 +16732,17,39,37,0.0 +16732,10,31,16,0.0 +16732,69,36,21,0.0 +16732,48,12.75,39,0.0 +16732,47,9.5,47,0.0 +16732,5,21.35,31,0.0 +16732,23,9,48,0.0 +16732,71,21.5,31,0.0 +16732,73,15,19,0.0 +16732,62,49.3,48,0.0 +16732,19,9.2,44,0.0 +16732,49,20,39,0.0 +16732,77,13,32,0.0 +16733,13,6,20,0.0 +16733,50,16.25,19,0.0 +16733,40,18.4,8,0.0 +16733,25,14,31,0.0 +16733,59,55,12,0.0 +16733,22,21,21,0.0 +16733,27,43.9,16,0.0 +16733,32,32,10,0.0 +16733,10,31,8,0.0 +16733,77,13,30,0.0 +16733,64,33.25,19,0.0 +16733,35,18,32,0.0 +16733,62,49.3,4,0.0 +16733,8,40,33,0.0 +16733,16,17.45,49,0.0 +16733,52,7,1,0.0 +16733,54,7.45,8,0.0 +16733,5,21.35,50,0.0 +16733,17,39,23,0.0 +16733,7,30,12,0.0 +16733,24,4.5,35,0.0 +16733,66,17,9,0.0 +16733,11,21,19,0.0 +16733,75,7.75,35,0.0 +16733,72,34.8,22,0.0 +16733,43,46,47,0.0 +16733,6,25,6,0.0 +16733,53,32.8,24,0.0 +16733,73,15,10,0.0 +16733,34,14,43,0.0 +16733,67,14,15,0.0 +16733,42,14,11,0.0 +16733,68,12.5,14,0.0 +16733,58,13.25,16,0.0 +16733,63,43.9,16,0.0 +16733,38,263.5,6,0.0 +16733,41,9.65,23,0.0 +16733,1,18,48,0.0 +16733,46,12,6,0.0 +16733,30,25.89,3,0.0 +16733,15,15.5,41,0.0 +16733,57,19.5,29,0.0 +16734,51,53,6,0.0 +16734,43,46,45,0.0 +16734,29,123.79,25,0.0 +16734,1,18,1,0.0 +16734,38,263.5,1,0.0 +16734,27,43.9,38,0.0 +16735,14,23.25,50,0.0 +16735,16,17.45,11,0.0 +16735,34,14,45,0.0 +16735,18,62.5,37,0.0 +16735,36,19,23,0.0 +16735,15,15.5,16,0.0 +16735,46,12,17,0.0 +16735,62,49.3,49,0.0 +16735,39,18,24,0.0 +16735,22,21,5,0.0 +16735,32,32,37,0.0 +16735,43,46,46,0.0 +16735,73,15,25,0.0 +16735,61,28.5,42,0.0 +16735,29,123.79,19,0.0 +16735,70,15,23,0.0 +16735,10,31,36,0.0 +16735,67,14,45,0.0 +16735,11,21,5,0.0 +16735,20,81,20,0.0 +16735,55,24,2,0.0 +16735,4,22,24,0.0 +16735,74,10,28,0.0 +16735,27,43.9,30,0.0 +16735,17,39,6,0.0 +16735,8,40,30,0.0 +16735,35,18,9,0.0 +16735,50,16.25,43,0.0 +16735,24,4.5,48,0.0 +16735,51,53,20,0.0 +16735,7,30,31,0.0 +16735,1,18,42,0.0 +16735,2,19,13,0.0 +16735,21,10,33,0.0 +16735,6,25,16,0.0 +16735,41,9.65,41,0.0 +16735,3,10,27,0.0 +16735,13,6,27,0.0 +16735,28,45.6,25,0.0 +16735,57,19.5,40,0.0 +16735,44,19.45,37,0.0 +16735,12,38,42,0.0 +16735,49,20,27,0.0 +16735,53,32.8,8,0.0 +16735,45,9.5,10,0.0 +16735,60,34,43,0.0 +16735,37,26,26,0.0 +16735,66,17,32,0.0 +16735,38,263.5,44,0.0 +16735,75,7.75,49,0.0 +16735,76,18,49,0.0 +16736,50,16.25,11,0.0 +16736,13,6,28,0.0 +16736,40,18.4,43,0.0 +16736,34,14,24,0.0 +16736,38,263.5,17,0.0 +16736,31,12.5,40,0.0 +16736,73,15,47,0.0 +16736,35,18,46,0.0 +16736,48,12.75,35,0.0 +16736,18,62.5,12,0.0 +16736,42,14,23,0.0 +16736,22,21,50,0.0 +16736,69,36,13,0.0 +16736,12,38,3,0.0 +16736,30,25.89,35,0.0 +16736,10,31,30,0.0 +16736,49,20,44,0.0 +16736,45,9.5,27,0.0 +16736,66,17,43,0.0 +16736,60,34,46,0.0 +16736,21,10,39,0.0 +16736,44,19.45,10,0.0 +16736,24,4.5,20,0.0 +16736,61,28.5,41,0.0 +16736,55,24,50,0.0 +16736,71,21.5,17,0.0 +16736,64,33.25,5,0.0 +16736,27,43.9,33,0.0 +16736,15,15.5,19,0.0 +16736,62,49.3,16,0.0 +16736,5,21.35,44,0.0 +16736,76,18,43,0.0 +16736,70,15,38,0.0 +16736,72,34.8,3,0.0 +16736,65,21.05,48,0.0 +16736,7,30,23,0.0 +16736,46,12,25,0.0 +16736,3,10,44,0.0 +16736,19,9.2,39,0.0 +16736,53,32.8,8,0.0 +16736,43,46,49,0.0 +16736,57,19.5,19,0.0 +16736,47,9.5,30,0.0 +16736,36,19,29,0.0 +16736,17,39,37,0.0 +16736,52,7,30,0.0 +16736,1,18,9,0.0 +16737,46,12,40,0.0 +16737,57,19.5,13,0.0 +16737,19,9.2,45,0.0 +16737,8,40,30,0.0 +16737,4,22,35,0.0 +16737,39,18,49,0.0 +16737,25,14,41,0.0 +16737,34,14,40,0.0 +16737,26,31.23,21,0.0 +16737,62,49.3,45,0.0 +16737,51,53,16,0.0 +16737,59,55,18,0.0 +16737,74,10,29,0.0 +16737,1,18,13,0.0 +16737,6,25,24,0.0 +16737,56,38,20,0.0 +16738,26,31.23,7,0.0 +16738,10,31,2,0.0 +16738,9,97,40,0.0 +16738,3,10,10,0.0 +16738,16,17.45,44,0.0 +16738,63,43.9,6,0.0 +16738,56,38,4,0.0 +16738,14,23.25,38,0.0 +16738,43,46,14,0.0 +16738,2,19,45,0.0 +16738,33,2.5,9,0.0 +16738,77,13,5,0.0 +16738,4,22,22,0.0 +16738,55,24,30,0.0 +16738,38,263.5,47,0.0 +16738,76,18,33,0.0 +16738,32,32,40,0.0 +16738,54,7.45,37,0.0 +16738,66,17,37,0.0 +16738,24,4.5,48,0.0 +16738,13,6,19,0.0 +16738,49,20,3,0.0 +16738,17,39,3,0.0 +16738,74,10,43,0.0 +16738,75,7.75,36,0.0 +16738,48,12.75,16,0.0 +16738,64,33.25,13,0.0 +16738,22,21,50,0.0 +16739,46,12,32,0.0 +16739,55,24,34,0.0 +16739,34,14,18,0.0 +16739,66,17,14,0.0 +16739,60,34,50,0.0 +16739,2,19,21,0.0 +16739,38,263.5,28,0.0 +16739,18,62.5,17,0.0 +16739,49,20,37,0.0 +16739,71,21.5,48,0.0 +16739,20,81,19,0.0 +16739,70,15,18,0.0 +16739,6,25,29,0.0 +16739,7,30,3,0.0 +16739,17,39,40,0.0 +16739,73,15,39,0.0 +16739,16,17.45,17,0.0 +16739,11,21,46,0.0 +16739,9,97,37,0.0 +16739,5,21.35,29,0.0 +16739,41,9.65,9,0.0 +16739,15,15.5,2,0.0 +16739,10,31,43,0.0 +16739,39,18,50,0.0 +16739,28,45.6,4,0.0 +16739,23,9,11,0.0 +16739,50,16.25,10,0.0 +16739,14,23.25,11,0.0 +16739,26,31.23,2,0.0 +16739,51,53,22,0.0 +16739,45,9.5,46,0.0 +16739,40,18.4,13,0.0 +16739,76,18,19,0.0 +16739,29,123.79,30,0.0 +16739,22,21,35,0.0 +16739,69,36,26,0.0 +16739,53,32.8,16,0.0 +16739,4,22,50,0.0 +16739,68,12.5,12,0.0 +16739,61,28.5,13,0.0 +16739,36,19,43,0.0 +16739,13,6,48,0.0 +16739,52,7,49,0.0 +16739,32,32,32,0.0 +16739,35,18,5,0.0 +16739,37,26,27,0.0 +16739,47,9.5,31,0.0 +16739,12,38,20,0.0 +16739,75,7.75,8,0.0 +16739,64,33.25,20,0.0 +16739,43,46,3,0.0 +16739,31,12.5,15,0.0 +16739,58,13.25,26,0.0 +16739,72,34.8,47,0.0 +16739,67,14,10,0.0 +16739,33,2.5,2,0.0 +16739,63,43.9,29,0.0 +16739,24,4.5,5,0.0 +16739,27,43.9,42,0.0 +16739,25,14,6,0.0 +16739,8,40,3,0.0 +16739,21,10,26,0.0 +16739,30,25.89,18,0.0 +16739,44,19.45,32,0.0 +16739,62,49.3,30,0.0 +16739,57,19.5,29,0.0 +16739,42,14,8,0.0 +16739,48,12.75,21,0.0 +16739,77,13,28,0.0 +16739,56,38,5,0.0 +16739,74,10,23,0.0 +16740,72,34.8,9,0.0 +16740,40,18.4,26,0.0 +16740,60,34,25,0.0 +16740,59,55,20,0.0 +16740,50,16.25,8,0.0 +16740,19,9.2,23,0.0 +16740,61,28.5,2,0.0 +16741,15,15.5,29,0.0 +16741,16,17.45,4,0.0 +16741,10,31,8,0.0 +16741,74,10,22,0.0 +16741,18,62.5,21,0.0 +16741,40,18.4,48,0.0 +16741,44,19.45,39,0.0 +16741,12,38,50,0.0 +16741,22,21,29,0.0 +16741,45,9.5,27,0.0 +16741,28,45.6,17,0.0 +16741,75,7.75,47,0.0 +16741,34,14,45,0.0 +16741,6,25,6,0.0 +16741,1,18,34,0.0 +16741,7,30,21,0.0 +16741,30,25.89,27,0.0 +16741,58,13.25,6,0.0 +16741,67,14,21,0.0 +16741,66,17,40,0.0 +16741,47,9.5,22,0.0 +16742,70,15,22,0.0 +16742,61,28.5,20,0.0 +16742,20,81,32,0.0 +16742,49,20,8,0.0 +16742,24,4.5,5,0.0 +16742,65,21.05,23,0.0 +16742,10,31,37,0.0 +16742,57,19.5,44,0.0 +16742,50,16.25,50,0.0 +16742,23,9,23,0.0 +16742,77,13,19,0.0 +16742,71,21.5,33,0.0 +16742,32,32,7,0.0 +16742,29,123.79,22,0.0 +16742,41,9.65,2,0.0 +16742,30,25.89,45,0.0 +16742,22,21,13,0.0 +16742,19,9.2,7,0.0 +16742,51,53,7,0.0 +16742,44,19.45,30,0.0 +16742,14,23.25,8,0.0 +16742,55,24,28,0.0 +16742,17,39,16,0.0 +16742,36,19,44,0.0 +16742,11,21,19,0.0 +16742,76,18,14,0.0 +16742,5,21.35,36,0.0 +16742,27,43.9,37,0.0 +16742,9,97,49,0.0 +16742,64,33.25,1,0.0 +16742,1,18,37,0.0 +16742,26,31.23,43,0.0 +16742,67,14,23,0.0 +16742,52,7,40,0.0 +16742,13,6,25,0.0 +16742,43,46,41,0.0 +16742,16,17.45,28,0.0 +16743,51,53,29,0.0 +16743,41,9.65,5,0.0 +16743,36,19,40,0.0 +16743,53,32.8,43,0.0 +16743,65,21.05,16,0.0 +16743,17,39,2,0.0 +16743,3,10,48,0.0 +16743,44,19.45,41,0.0 +16743,26,31.23,33,0.0 +16743,14,23.25,9,0.0 +16743,16,17.45,3,0.0 +16743,32,32,46,0.0 +16743,75,7.75,42,0.0 +16743,66,17,4,0.0 +16743,35,18,13,0.0 +16743,58,13.25,42,0.0 +16743,24,4.5,2,0.0 +16743,68,12.5,13,0.0 +16743,60,34,5,0.0 +16743,7,30,3,0.0 +16743,6,25,36,0.0 +16743,38,263.5,14,0.0 +16743,70,15,27,0.0 +16743,15,15.5,16,0.0 +16743,19,9.2,42,0.0 +16743,39,18,4,0.0 +16743,33,2.5,28,0.0 +16743,40,18.4,33,0.0 +16743,2,19,38,0.0 +16743,63,43.9,7,0.0 +16743,31,12.5,43,0.0 +16743,8,40,28,0.0 +16743,5,21.35,12,0.0 +16743,69,36,17,0.0 +16743,43,46,38,0.0 +16743,61,28.5,22,0.0 +16743,64,33.25,6,0.0 +16743,55,24,40,0.0 +16743,4,22,34,0.0 +16743,22,21,45,0.0 +16743,48,12.75,32,0.0 +16743,71,21.5,37,0.0 +16743,28,45.6,43,0.0 +16743,54,7.45,16,0.0 +16743,45,9.5,5,0.0 +16743,72,34.8,41,0.0 +16743,37,26,38,0.0 +16743,30,25.89,3,0.0 +16743,10,31,32,0.0 +16743,52,7,5,0.0 +16743,23,9,47,0.0 +16743,57,19.5,42,0.0 +16743,1,18,41,0.0 +16743,20,81,24,0.0 +16743,76,18,25,0.0 +16743,9,97,8,0.0 +16743,34,14,5,0.0 +16743,11,21,35,0.0 +16743,49,20,6,0.0 +16743,62,49.3,38,0.0 +16743,42,14,20,0.0 +16744,72,34.8,30,0.0 +16744,16,17.45,42,0.0 +16744,61,28.5,12,0.0 +16744,47,9.5,38,0.0 +16745,33,2.5,8,0.0 +16745,29,123.79,16,0.0 +16745,25,14,16,0.0 +16745,69,36,26,0.0 +16745,38,263.5,50,0.0 +16745,60,34,30,0.0 +16745,58,13.25,36,0.0 +16745,61,28.5,44,0.0 +16745,6,25,3,0.0 +16745,64,33.25,14,0.0 +16745,24,4.5,11,0.0 +16745,56,38,19,0.0 +16745,3,10,16,0.0 +16745,39,18,50,0.0 +16745,54,7.45,7,0.0 +16745,70,15,7,0.0 +16745,31,12.5,46,0.0 +16745,22,21,35,0.0 +16745,62,49.3,22,0.0 +16745,14,23.25,23,0.0 +16745,2,19,22,0.0 +16745,37,26,49,0.0 +16745,32,32,26,0.0 +16745,15,15.5,49,0.0 +16745,49,20,21,0.0 +16745,21,10,27,0.0 +16745,52,7,7,0.0 +16745,12,38,44,0.0 +16745,75,7.75,47,0.0 +16745,45,9.5,37,0.0 +16745,41,9.65,31,0.0 +16745,51,53,14,0.0 +16745,28,45.6,17,0.0 +16745,11,21,28,0.0 +16745,9,97,18,0.0 +16745,4,22,18,0.0 +16745,8,40,16,0.0 +16746,23,9,49,0.0 +16746,3,10,16,0.0 +16746,61,28.5,27,0.0 +16746,75,7.75,27,0.0 +16746,18,62.5,3,0.0 +16746,35,18,6,0.0 +16746,48,12.75,26,0.0 +16746,47,9.5,7,0.0 +16746,40,18.4,47,0.0 +16746,63,43.9,24,0.0 +16746,6,25,29,0.0 +16746,13,6,49,0.0 +16746,22,21,11,0.0 +16746,2,19,20,0.0 +16746,31,12.5,45,0.0 +16746,70,15,28,0.0 +16746,76,18,5,0.0 +16746,73,15,39,0.0 +16746,26,31.23,28,0.0 +16746,57,19.5,19,0.0 +16746,46,12,44,0.0 +16746,33,2.5,22,0.0 +16746,14,23.25,22,0.0 +16746,44,19.45,46,0.0 +16746,72,34.8,21,0.0 +16746,25,14,30,0.0 +16746,24,4.5,30,0.0 +16746,45,9.5,14,0.0 +16746,1,18,4,0.0 +16746,12,38,48,0.0 +16746,30,25.89,45,0.0 +16746,19,9.2,11,0.0 +16746,65,21.05,44,0.0 +16746,66,17,35,0.0 +16746,34,14,20,0.0 +16746,60,34,3,0.0 +16746,59,55,15,0.0 +16746,28,45.6,16,0.0 +16746,11,21,50,0.0 +16746,43,46,44,0.0 +16746,17,39,12,0.0 +16746,21,10,24,0.0 +16746,68,12.5,17,0.0 +16746,37,26,21,0.0 +16746,16,17.45,21,0.0 +16746,38,263.5,41,0.0 +16746,50,16.25,23,0.0 +16746,51,53,9,0.0 +16746,49,20,6,0.0 +16746,54,7.45,2,0.0 +16746,29,123.79,19,0.0 +16746,20,81,47,0.0 +16746,67,14,25,0.0 +16746,64,33.25,30,0.0 +16746,41,9.65,46,0.0 +16746,7,30,40,0.0 +16746,9,97,43,0.0 +16746,10,31,35,0.0 +16747,73,15,1,0.0 +16747,31,12.5,26,0.0 +16747,25,14,9,0.0 +16747,54,7.45,17,0.0 +16747,56,38,7,0.0 +16747,30,25.89,15,0.0 +16747,9,97,28,0.0 +16747,17,39,31,0.0 +16747,20,81,20,0.0 +16747,13,6,4,0.0 +16747,46,12,28,0.0 +16747,38,263.5,41,0.0 +16747,1,18,5,0.0 +16747,14,23.25,46,0.0 +16747,65,21.05,26,0.0 +16747,6,25,29,0.0 +16747,77,13,47,0.0 +16747,32,32,16,0.0 +16747,37,26,47,0.0 +16747,61,28.5,4,0.0 +16747,62,49.3,50,0.0 +16747,53,32.8,2,0.0 +16747,39,18,12,0.0 +16747,5,21.35,17,0.0 +16747,45,9.5,11,0.0 +16747,34,14,6,0.0 +16747,59,55,37,0.0 +16747,10,31,1,0.0 +16747,21,10,32,0.0 +16747,35,18,43,0.0 +16747,68,12.5,36,0.0 +16747,29,123.79,34,0.0 +16748,53,32.8,11,0.0 +16748,55,24,8,0.0 +16748,30,25.89,5,0.0 +16748,22,21,44,0.0 +16748,69,36,46,0.0 +16748,26,31.23,34,0.0 +16748,38,263.5,16,0.0 +16748,32,32,34,0.0 +16748,65,21.05,31,0.0 +16748,68,12.5,20,0.0 +16748,25,14,37,0.0 +16748,37,26,18,0.0 +16748,8,40,24,0.0 +16748,47,9.5,5,0.0 +16748,56,38,7,0.0 +16748,63,43.9,36,0.0 +16749,30,25.89,44,0.0 +16749,58,13.25,1,0.0 +16749,75,7.75,47,0.0 +16749,65,21.05,19,0.0 +16749,64,33.25,36,0.0 +16749,37,26,15,0.0 +16749,2,19,2,0.0 +16749,12,38,8,0.0 +16749,43,46,1,0.0 +16749,73,15,38,0.0 +16749,24,4.5,48,0.0 +16749,20,81,44,0.0 +16749,8,40,47,0.0 +16749,27,43.9,14,0.0 +16749,45,9.5,21,0.0 +16749,51,53,32,0.0 +16749,6,25,10,0.0 +16749,32,32,49,0.0 +16749,42,14,49,0.0 +16750,3,10,7,0.0 +16750,14,23.25,33,0.0 +16750,69,36,43,0.0 +16750,36,19,44,0.0 +16750,1,18,20,0.0 +16750,46,12,29,0.0 +16750,50,16.25,8,0.0 +16750,53,32.8,32,0.0 +16750,52,7,38,0.0 +16750,44,19.45,18,0.0 +16750,41,9.65,2,0.0 +16750,66,17,1,0.0 +16750,27,43.9,7,0.0 +16750,18,62.5,2,0.0 +16750,2,19,22,0.0 +16750,40,18.4,3,0.0 +16750,25,14,32,0.0 +16750,8,40,33,0.0 +16750,58,13.25,24,0.0 +16750,15,15.5,7,0.0 +16750,60,34,18,0.0 +16750,65,21.05,49,0.0 +16750,74,10,48,0.0 +16750,77,13,46,0.0 +16750,75,7.75,25,0.0 +16750,45,9.5,3,0.0 +16750,70,15,43,0.0 +16750,7,30,41,0.0 +16750,20,81,7,0.0 +16750,6,25,10,0.0 +16750,28,45.6,3,0.0 +16750,76,18,4,0.0 +16750,32,32,4,0.0 +16750,5,21.35,43,0.0 +16750,19,9.2,22,0.0 +16750,51,53,12,0.0 +16750,71,21.5,37,0.0 +16750,39,18,13,0.0 +16750,37,26,26,0.0 +16750,67,14,39,0.0 +16750,10,31,20,0.0 +16750,43,46,26,0.0 +16750,31,12.5,17,0.0 +16750,54,7.45,29,0.0 +16750,24,4.5,44,0.0 +16750,61,28.5,38,0.0 +16750,48,12.75,34,0.0 +16750,73,15,9,0.0 +16750,47,9.5,11,0.0 +16750,12,38,12,0.0 +16751,7,30,31,0.0 +16751,1,18,14,0.0 +16751,67,14,11,0.0 +16751,59,55,2,0.0 +16751,35,18,45,0.0 +16751,64,33.25,36,0.0 +16751,66,17,50,0.0 +16751,58,13.25,21,0.0 +16751,54,7.45,10,0.0 +16751,73,15,18,0.0 +16751,36,19,11,0.0 +16751,39,18,9,0.0 +16751,42,14,2,0.0 +16752,39,18,9,0.0 +16752,10,31,28,0.0 +16752,7,30,14,0.0 +16752,51,53,33,0.0 +16752,72,34.8,9,0.0 +16752,76,18,5,0.0 +16752,61,28.5,4,0.0 +16752,60,34,6,0.0 +16752,40,18.4,48,0.0 +16752,32,32,44,0.0 +16752,18,62.5,29,0.0 +16752,71,21.5,27,0.0 +16752,65,21.05,34,0.0 +16752,41,9.65,19,0.0 +16752,43,46,49,0.0 +16752,74,10,32,0.0 +16752,16,17.45,17,0.0 +16752,54,7.45,40,0.0 +16752,5,21.35,9,0.0 +16752,70,15,23,0.0 +16752,22,21,2,0.0 +16752,77,13,1,0.0 +16752,13,6,24,0.0 +16752,46,12,26,0.0 +16752,69,36,16,0.0 +16752,52,7,15,0.0 +16752,3,10,46,0.0 +16752,30,25.89,22,0.0 +16752,68,12.5,18,0.0 +16752,63,43.9,31,0.0 +16752,36,19,44,0.0 +16752,47,9.5,8,0.0 +16752,33,2.5,3,0.0 +16752,20,81,8,0.0 +16752,75,7.75,24,0.0 +16752,50,16.25,16,0.0 +16752,15,15.5,6,0.0 +16752,17,39,37,0.0 +16752,2,19,34,0.0 +16752,12,38,21,0.0 +16752,49,20,46,0.0 +16752,24,4.5,27,0.0 +16752,25,14,16,0.0 +16752,53,32.8,1,0.0 +16752,11,21,22,0.0 +16752,73,15,24,0.0 +16752,44,19.45,36,0.0 +16753,60,34,9,0.0 +16753,48,12.75,39,0.0 +16753,20,81,16,0.0 +16753,38,263.5,46,0.0 +16753,33,2.5,17,0.0 +16753,3,10,26,0.0 +16753,55,24,17,0.0 +16753,12,38,23,0.0 +16753,22,21,23,0.0 +16753,52,7,34,0.0 +16753,39,18,14,0.0 +16753,51,53,29,0.0 +16753,16,17.45,27,0.0 +16753,40,18.4,20,0.0 +16753,50,16.25,29,0.0 +16753,73,15,8,0.0 +16753,15,15.5,18,0.0 +16753,14,23.25,44,0.0 +16753,54,7.45,29,0.0 +16753,5,21.35,2,0.0 +16753,7,30,36,0.0 +16753,61,28.5,21,0.0 +16753,71,21.5,32,0.0 +16753,17,39,6,0.0 +16753,57,19.5,25,0.0 +16753,11,21,27,0.0 +16753,63,43.9,5,0.0 +16753,65,21.05,7,0.0 +16753,74,10,22,0.0 +16753,70,15,46,0.0 +16753,62,49.3,24,0.0 +16753,2,19,1,0.0 +16753,31,12.5,24,0.0 +16753,34,14,32,0.0 +16753,21,10,38,0.0 +16753,43,46,16,0.0 +16753,30,25.89,29,0.0 +16753,56,38,43,0.0 +16753,19,9.2,4,0.0 +16753,67,14,39,0.0 +16753,18,62.5,21,0.0 +16753,23,9,46,0.0 +16753,68,12.5,10,0.0 +16753,59,55,43,0.0 +16753,9,97,38,0.0 +16753,41,9.65,29,0.0 +16753,36,19,43,0.0 +16753,28,45.6,9,0.0 +16753,29,123.79,14,0.0 +16753,6,25,28,0.0 +16753,42,14,9,0.0 +16753,75,7.75,32,0.0 +16753,27,43.9,19,0.0 +16753,77,13,20,0.0 +16753,47,9.5,40,0.0 +16753,44,19.45,34,0.0 +16753,53,32.8,40,0.0 +16753,46,12,31,0.0 +16753,25,14,23,0.0 +16753,64,33.25,3,0.0 +16753,10,31,18,0.0 +16753,4,22,36,0.0 +16753,24,4.5,36,0.0 +16753,35,18,2,0.0 +16753,69,36,50,0.0 +16753,13,6,44,0.0 +16753,72,34.8,25,0.0 +16753,1,18,17,0.0 +16753,26,31.23,40,0.0 +16753,58,13.25,12,0.0 +16753,66,17,17,0.0 +16754,13,6,40,0.0 +16754,38,263.5,15,0.0 +16754,18,62.5,36,0.0 +16754,51,53,28,0.0 +16754,67,14,26,0.0 +16754,20,81,20,0.0 +16754,72,34.8,23,0.0 +16754,1,18,25,0.0 +16754,23,9,4,0.0 +16754,7,30,6,0.0 +16754,39,18,18,0.0 +16754,50,16.25,23,0.0 +16754,40,18.4,4,0.0 +16754,71,21.5,28,0.0 +16754,41,9.65,3,0.0 +16754,25,14,35,0.0 +16754,34,14,42,0.0 +16754,28,45.6,26,0.0 +16754,12,38,46,0.0 +16754,65,21.05,37,0.0 +16754,49,20,19,0.0 +16754,2,19,8,0.0 +16754,75,7.75,39,0.0 +16754,14,23.25,42,0.0 +16754,66,17,37,0.0 +16754,44,19.45,5,0.0 +16754,16,17.45,8,0.0 +16754,15,15.5,16,0.0 +16754,57,19.5,44,0.0 +16754,59,55,35,0.0 +16754,43,46,17,0.0 +16754,68,12.5,32,0.0 +16754,5,21.35,4,0.0 +16754,36,19,8,0.0 +16754,53,32.8,38,0.0 +16754,70,15,6,0.0 +16754,21,10,29,0.0 +16754,6,25,30,0.0 +16754,60,34,40,0.0 +16754,56,38,26,0.0 +16754,4,22,50,0.0 +16754,61,28.5,40,0.0 +16754,37,26,47,0.0 +16754,30,25.89,32,0.0 +16754,29,123.79,9,0.0 +16754,55,24,32,0.0 +16754,42,14,14,0.0 +16754,58,13.25,28,0.0 +16754,31,12.5,29,0.0 +16754,54,7.45,33,0.0 +16754,74,10,21,0.0 +16754,45,9.5,25,0.0 +16754,46,12,50,0.0 +16754,76,18,50,0.0 +16754,63,43.9,20,0.0 +16754,19,9.2,18,0.0 +16754,24,4.5,21,0.0 +16754,11,21,44,0.0 +16754,22,21,21,0.0 +16754,8,40,6,0.0 +16754,17,39,49,0.0 +16754,69,36,8,0.0 +16754,47,9.5,22,0.0 +16754,73,15,44,0.0 +16754,64,33.25,18,0.0 +16754,10,31,39,0.0 +16754,32,32,22,0.0 +16754,9,97,16,0.0 +16754,48,12.75,3,0.0 +16754,33,2.5,33,0.0 +16754,3,10,38,0.0 +16754,27,43.9,50,0.0 +16755,31,12.5,14,0.0 +16755,54,7.45,37,0.0 +16755,62,49.3,32,0.0 +16755,71,21.5,22,0.0 +16755,14,23.25,2,0.0 +16755,70,15,3,0.0 +16755,17,39,41,0.0 +16755,68,12.5,33,0.0 +16755,12,38,20,0.0 +16755,75,7.75,41,0.0 +16755,24,4.5,12,0.0 +16755,72,34.8,21,0.0 +16755,45,9.5,19,0.0 +16755,41,9.65,16,0.0 +16755,63,43.9,4,0.0 +16755,39,18,40,0.0 +16755,7,30,24,0.0 +16755,6,25,20,0.0 +16755,61,28.5,50,0.0 +16755,67,14,41,0.0 +16755,53,32.8,34,0.0 +16756,13,6,23,0.0 +16756,65,21.05,29,0.0 +16756,63,43.9,32,0.0 +16756,64,33.25,11,0.0 +16756,10,31,36,0.0 +16756,37,26,16,0.0 +16756,32,32,10,0.0 +16756,66,17,47,0.0 +16756,22,21,40,0.0 +16756,25,14,10,0.0 +16756,69,36,16,0.0 +16756,33,2.5,9,0.0 +16756,61,28.5,28,0.0 +16756,56,38,13,0.0 +16756,30,25.89,3,0.0 +16756,50,16.25,18,0.0 +16756,11,21,35,0.0 +16756,27,43.9,28,0.0 +16756,19,9.2,23,0.0 +16756,8,40,44,0.0 +16756,21,10,6,0.0 +16756,17,39,35,0.0 +16756,45,9.5,39,0.0 +16756,4,22,40,0.0 +16756,49,20,20,0.0 +16757,27,43.9,18,0.0 +16757,63,43.9,7,0.0 +16757,8,40,40,0.0 +16757,15,15.5,17,0.0 +16757,25,14,38,0.0 +16757,46,12,13,0.0 +16757,12,38,33,0.0 +16757,43,46,7,0.0 +16757,5,21.35,34,0.0 +16757,55,24,45,0.0 +16757,9,97,11,0.0 +16757,68,12.5,35,0.0 +16757,23,9,12,0.0 +16757,36,19,16,0.0 +16757,62,49.3,10,0.0 +16757,53,32.8,13,0.0 +16757,65,21.05,37,0.0 +16757,74,10,18,0.0 +16757,20,81,35,0.0 +16757,2,19,34,0.0 +16757,40,18.4,16,0.0 +16757,1,18,35,0.0 +16757,49,20,2,0.0 +16757,13,6,28,0.0 +16757,38,263.5,2,0.0 +16757,41,9.65,11,0.0 +16757,52,7,31,0.0 +16757,3,10,39,0.0 +16757,59,55,36,0.0 +16757,58,13.25,21,0.0 +16757,32,32,1,0.0 +16757,17,39,41,0.0 +16757,75,7.75,31,0.0 +16757,7,30,21,0.0 +16757,37,26,33,0.0 +16757,69,36,37,0.0 +16757,56,38,13,0.0 +16757,66,17,7,0.0 +16757,31,12.5,27,0.0 +16757,73,15,22,0.0 +16757,48,12.75,33,0.0 +16757,71,21.5,46,0.0 +16757,30,25.89,1,0.0 +16757,24,4.5,2,0.0 +16757,61,28.5,10,0.0 +16757,77,13,28,0.0 +16757,11,21,7,0.0 +16757,50,16.25,15,0.0 +16757,39,18,27,0.0 +16757,14,23.25,48,0.0 +16757,51,53,34,0.0 +16757,22,21,5,0.0 +16757,28,45.6,23,0.0 +16757,70,15,36,0.0 +16757,21,10,6,0.0 +16757,64,33.25,14,0.0 +16757,26,31.23,38,0.0 +16757,34,14,46,0.0 +16757,6,25,30,0.0 +16757,4,22,20,0.0 +16757,60,34,24,0.0 +16757,72,34.8,18,0.0 +16757,33,2.5,6,0.0 +16758,4,22,18,0.0 +16758,45,9.5,37,0.0 +16758,76,18,50,0.0 +16758,12,38,43,0.0 +16758,5,21.35,4,0.0 +16758,10,31,28,0.0 +16758,11,21,40,0.0 +16758,50,16.25,3,0.0 +16758,3,10,24,0.0 +16758,30,25.89,33,0.0 +16758,25,14,27,0.0 +16758,40,18.4,35,0.0 +16758,31,12.5,43,0.0 +16758,8,40,20,0.0 +16758,37,26,9,0.0 +16758,43,46,20,0.0 +16758,69,36,50,0.0 +16758,21,10,14,0.0 +16758,41,9.65,27,0.0 +16758,54,7.45,44,0.0 +16758,27,43.9,31,0.0 +16758,23,9,35,0.0 +16758,14,23.25,33,0.0 +16758,70,15,28,0.0 +16758,33,2.5,11,0.0 +16758,49,20,1,0.0 +16758,20,81,32,0.0 +16758,16,17.45,20,0.0 +16758,47,9.5,35,0.0 +16758,28,45.6,37,0.0 +16758,66,17,16,0.0 +16758,19,9.2,49,0.0 +16758,7,30,34,0.0 +16758,18,62.5,4,0.0 +16758,72,34.8,31,0.0 +16758,71,21.5,10,0.0 +16758,62,49.3,42,0.0 +16759,48,12.75,45,0.0 +16759,26,31.23,24,0.0 +16759,28,45.6,34,0.0 +16759,74,10,50,0.0 +16759,72,34.8,32,0.0 +16759,4,22,46,0.0 +16759,20,81,50,0.0 +16759,11,21,34,0.0 +16759,25,14,40,0.0 +16759,27,43.9,44,0.0 +16759,18,62.5,36,0.0 +16759,17,39,44,0.0 +16759,68,12.5,14,0.0 +16759,70,15,6,0.0 +16759,12,38,13,0.0 +16759,7,30,32,0.0 +16759,49,20,15,0.0 +16759,77,13,29,0.0 +16759,60,34,50,0.0 +16759,71,21.5,15,0.0 +16759,23,9,49,0.0 +16759,22,21,24,0.0 +16759,37,26,19,0.0 +16759,9,97,5,0.0 +16759,55,24,47,0.0 +16759,38,263.5,9,0.0 +16759,57,19.5,27,0.0 +16759,65,21.05,44,0.0 +16759,40,18.4,14,0.0 +16759,36,19,38,0.0 +16759,39,18,17,0.0 +16759,64,33.25,22,0.0 +16759,50,16.25,4,0.0 +16759,52,7,23,0.0 +16759,42,14,36,0.0 +16759,33,2.5,47,0.0 +16759,14,23.25,1,0.0 +16759,76,18,22,0.0 +16759,73,15,8,0.0 +16759,15,15.5,37,0.0 +16759,43,46,37,0.0 +16759,51,53,30,0.0 +16759,67,14,17,0.0 +16759,45,9.5,11,0.0 +16759,63,43.9,27,0.0 +16759,44,19.45,28,0.0 +16759,46,12,23,0.0 +16759,35,18,10,0.0 +16759,3,10,6,0.0 +16759,66,17,29,0.0 +16759,69,36,40,0.0 +16759,5,21.35,3,0.0 +16759,30,25.89,4,0.0 +16759,29,123.79,1,0.0 +16759,8,40,1,0.0 +16759,62,49.3,43,0.0 +16759,56,38,45,0.0 +16759,6,25,43,0.0 +16759,59,55,4,0.0 +16759,58,13.25,1,0.0 +16759,31,12.5,37,0.0 +16759,16,17.45,40,0.0 +16759,41,9.65,31,0.0 +16759,1,18,26,0.0 +16759,47,9.5,48,0.0 +16759,21,10,46,0.0 +16759,10,31,20,0.0 +16759,75,7.75,45,0.0 +16759,13,6,9,0.0 +16759,24,4.5,49,0.0 +16759,19,9.2,29,0.0 +16759,2,19,46,0.0 +16759,54,7.45,11,0.0 +16760,64,33.25,37,0.0 +16760,32,32,45,0.0 +16760,47,9.5,7,0.0 +16760,59,55,16,0.0 +16760,36,19,30,0.0 +16760,25,14,48,0.0 +16760,73,15,16,0.0 +16760,38,263.5,2,0.0 +16760,70,15,6,0.0 +16760,8,40,14,0.0 +16760,57,19.5,40,0.0 +16760,4,22,2,0.0 +16760,74,10,21,0.0 +16760,24,4.5,17,0.0 +16760,29,123.79,37,0.0 +16761,29,123.79,47,0.0 +16761,16,17.45,29,0.0 +16761,76,18,37,0.0 +16761,38,263.5,9,0.0 +16761,9,97,31,0.0 +16761,61,28.5,2,0.0 +16761,28,45.6,10,0.0 +16761,52,7,14,0.0 +16761,23,9,1,0.0 +16761,18,62.5,15,0.0 +16761,57,19.5,28,0.0 +16761,25,14,10,0.0 +16761,72,34.8,31,0.0 +16761,49,20,12,0.0 +16761,7,30,6,0.0 +16761,10,31,12,0.0 +16761,2,19,10,0.0 +16761,31,12.5,23,0.0 +16762,63,43.9,30,0.0 +16762,16,17.45,5,0.0 +16762,77,13,7,0.0 +16762,70,15,36,0.0 +16762,61,28.5,48,0.0 +16762,49,20,12,0.0 +16762,46,12,40,0.0 +16762,71,21.5,24,0.0 +16762,17,39,34,0.0 +16762,34,14,2,0.0 +16762,33,2.5,37,0.0 +16762,10,31,3,0.0 +16762,75,7.75,15,0.0 +16762,72,34.8,47,0.0 +16762,1,18,17,0.0 +16762,39,18,40,0.0 +16762,53,32.8,26,0.0 +16762,22,21,2,0.0 +16762,36,19,49,0.0 +16762,62,49.3,16,0.0 +16762,40,18.4,42,0.0 +16762,65,21.05,30,0.0 +16762,41,9.65,48,0.0 +16762,7,30,9,0.0 +16762,32,32,28,0.0 +16762,60,34,15,0.0 +16762,27,43.9,33,0.0 +16762,30,25.89,19,0.0 +16762,2,19,38,0.0 +16762,43,46,23,0.0 +16762,15,15.5,29,0.0 +16762,56,38,36,0.0 +16762,21,10,15,0.0 +16762,64,33.25,36,0.0 +16762,38,263.5,15,0.0 +16762,25,14,47,0.0 +16762,35,18,18,0.0 +16762,4,22,30,0.0 +16762,18,62.5,28,0.0 +16762,6,25,1,0.0 +16762,47,9.5,13,0.0 +16762,58,13.25,38,0.0 +16762,66,17,1,0.0 +16762,50,16.25,31,0.0 +16762,28,45.6,39,0.0 +16762,44,19.45,35,0.0 +16762,48,12.75,6,0.0 +16762,20,81,14,0.0 +16762,52,7,6,0.0 +16762,68,12.5,28,0.0 +16762,76,18,47,0.0 +16762,9,97,38,0.0 +16762,3,10,49,0.0 +16762,54,7.45,43,0.0 +16762,37,26,8,0.0 +16762,55,24,25,0.0 +16762,11,21,44,0.0 +16762,69,36,30,0.0 +16762,42,14,3,0.0 +16762,26,31.23,22,0.0 +16763,51,53,39,0.0 +16763,25,14,13,0.0 +16763,28,45.6,9,0.0 +16763,36,19,1,0.0 +16763,7,30,28,0.0 +16763,13,6,44,0.0 +16763,50,16.25,28,0.0 +16763,2,19,7,0.0 +16763,11,21,5,0.0 +16763,1,18,48,0.0 +16763,58,13.25,23,0.0 +16763,9,97,17,0.0 +16763,29,123.79,35,0.0 +16763,15,15.5,24,0.0 +16763,12,38,29,0.0 +16763,24,4.5,14,0.0 +16763,20,81,43,0.0 +16763,14,23.25,28,0.0 +16763,52,7,43,0.0 +16763,8,40,19,0.0 +16763,32,32,16,0.0 +16763,72,34.8,27,0.0 +16763,61,28.5,33,0.0 +16763,55,24,50,0.0 +16763,56,38,14,0.0 +16763,37,26,35,0.0 +16763,22,21,5,0.0 +16763,62,49.3,38,0.0 +16763,53,32.8,17,0.0 +16763,4,22,44,0.0 +16763,48,12.75,41,0.0 +16763,47,9.5,13,0.0 +16763,76,18,12,0.0 +16763,66,17,49,0.0 +16763,21,10,27,0.0 +16763,71,21.5,26,0.0 +16763,67,14,9,0.0 +16763,75,7.75,49,0.0 +16763,73,15,34,0.0 +16763,49,20,21,0.0 +16763,31,12.5,24,0.0 +16763,35,18,38,0.0 +16763,23,9,12,0.0 +16763,63,43.9,39,0.0 +16763,5,21.35,45,0.0 +16763,27,43.9,45,0.0 +16763,10,31,15,0.0 +16763,54,7.45,28,0.0 +16763,43,46,23,0.0 +16763,59,55,7,0.0 +16763,39,18,6,0.0 +16763,3,10,28,0.0 +16763,60,34,23,0.0 +16764,73,15,45,0.0 +16764,31,12.5,12,0.0 +16764,22,21,12,0.0 +16764,46,12,33,0.0 +16764,2,19,11,0.0 +16764,10,31,13,0.0 +16764,54,7.45,16,0.0 +16764,28,45.6,45,0.0 +16764,64,33.25,14,0.0 +16764,30,25.89,8,0.0 +16764,26,31.23,41,0.0 +16764,71,21.5,46,0.0 +16764,23,9,10,0.0 +16764,65,21.05,47,0.0 +16764,58,13.25,32,0.0 +16764,72,34.8,29,0.0 +16764,6,25,15,0.0 +16764,47,9.5,47,0.0 +16764,62,49.3,7,0.0 +16764,21,10,2,0.0 +16764,57,19.5,17,0.0 +16764,75,7.75,7,0.0 +16764,19,9.2,7,0.0 +16764,67,14,27,0.0 +16764,4,22,28,0.0 +16764,33,2.5,1,0.0 +16764,42,14,25,0.0 +16764,35,18,40,0.0 +16764,11,21,24,0.0 +16764,38,263.5,13,0.0 +16764,34,14,40,0.0 +16764,44,19.45,33,0.0 +16764,45,9.5,6,0.0 +16764,39,18,42,0.0 +16764,76,18,46,0.0 +16764,61,28.5,11,0.0 +16764,18,62.5,27,0.0 +16764,20,81,3,0.0 +16764,77,13,13,0.0 +16764,41,9.65,2,0.0 +16764,59,55,8,0.0 +16764,36,19,36,0.0 +16764,48,12.75,10,0.0 +16764,9,97,26,0.0 +16764,1,18,28,0.0 +16764,63,43.9,40,0.0 +16764,29,123.79,28,0.0 +16764,66,17,30,0.0 +16764,15,15.5,40,0.0 +16764,7,30,40,0.0 +16764,27,43.9,43,0.0 +16764,17,39,7,0.0 +16764,3,10,31,0.0 +16764,24,4.5,39,0.0 +16764,70,15,41,0.0 +16764,74,10,18,0.0 +16764,50,16.25,3,0.0 +16764,13,6,27,0.0 +16764,8,40,42,0.0 +16764,68,12.5,24,0.0 +16764,56,38,31,0.0 +16764,52,7,7,0.0 +16764,69,36,4,0.0 +16764,55,24,27,0.0 +16764,25,14,3,0.0 +16765,36,19,26,0.0 +16765,28,45.6,12,0.0 +16765,48,12.75,6,0.0 +16765,61,28.5,1,0.0 +16765,53,32.8,15,0.0 +16765,71,21.5,3,0.0 +16765,19,9.2,5,0.0 +16765,59,55,35,0.0 +16765,17,39,9,0.0 +16765,75,7.75,4,0.0 +16765,16,17.45,11,0.0 +16765,23,9,33,0.0 +16765,18,62.5,4,0.0 +16765,26,31.23,26,0.0 +16765,73,15,22,0.0 +16765,41,9.65,14,0.0 +16765,34,14,40,0.0 +16765,40,18.4,7,0.0 +16765,65,21.05,36,0.0 +16765,68,12.5,35,0.0 +16765,11,21,1,0.0 +16765,77,13,5,0.0 +16765,35,18,50,0.0 +16765,60,34,32,0.0 +16765,29,123.79,5,0.0 +16765,14,23.25,3,0.0 +16765,27,43.9,36,0.0 +16765,12,38,4,0.0 +16765,70,15,11,0.0 +16765,47,9.5,26,0.0 +16765,10,31,6,0.0 +16765,69,36,38,0.0 +16765,8,40,50,0.0 +16765,32,32,42,0.0 +16765,45,9.5,35,0.0 +16765,64,33.25,2,0.0 +16765,3,10,45,0.0 +16765,66,17,6,0.0 +16765,15,15.5,23,0.0 +16765,57,19.5,34,0.0 +16765,9,97,36,0.0 +16765,54,7.45,12,0.0 +16765,21,10,47,0.0 +16765,25,14,34,0.0 +16765,2,19,25,0.0 +16765,67,14,43,0.0 +16765,46,12,45,0.0 +16766,49,20,24,0.0 +16766,15,15.5,1,0.0 +16766,12,38,22,0.0 +16766,56,38,40,0.0 +16766,72,34.8,35,0.0 +16766,22,21,7,0.0 +16766,4,22,23,0.0 +16766,42,14,16,0.0 +16766,16,17.45,8,0.0 +16766,57,19.5,41,0.0 +16766,35,18,31,0.0 +16766,66,17,23,0.0 +16766,37,26,25,0.0 +16766,32,32,43,0.0 +16766,26,31.23,35,0.0 +16766,60,34,32,0.0 +16766,8,40,25,0.0 +16766,55,24,9,0.0 +16766,10,31,31,0.0 +16766,29,123.79,30,0.0 +16766,51,53,17,0.0 +16766,28,45.6,34,0.0 +16766,5,21.35,2,0.0 +16766,9,97,44,0.0 +16766,3,10,42,0.0 +16766,33,2.5,39,0.0 +16766,61,28.5,44,0.0 +16766,25,14,13,0.0 +16766,2,19,25,0.0 +16766,68,12.5,1,0.0 +16766,58,13.25,32,0.0 +16766,24,4.5,20,0.0 +16766,70,15,11,0.0 +16766,44,19.45,21,0.0 +16766,30,25.89,44,0.0 +16766,48,12.75,29,0.0 +16766,54,7.45,50,0.0 +16766,65,21.05,20,0.0 +16766,62,49.3,29,0.0 +16767,38,263.5,43,0.0 +16767,40,18.4,24,0.0 +16767,27,43.9,6,0.0 +16767,9,97,28,0.0 +16767,18,62.5,24,0.0 +16767,41,9.65,32,0.0 +16767,42,14,11,0.0 +16767,20,81,29,0.0 +16767,13,6,46,0.0 +16767,45,9.5,15,0.0 +16767,33,2.5,19,0.0 +16767,64,33.25,41,0.0 +16767,10,31,28,0.0 +16767,15,15.5,17,0.0 +16767,59,55,30,0.0 +16767,77,13,42,0.0 +16767,7,30,16,0.0 +16767,3,10,18,0.0 +16767,54,7.45,47,0.0 +16767,49,20,13,0.0 +16767,36,19,46,0.0 +16767,14,23.25,8,0.0 +16767,11,21,14,0.0 +16767,5,21.35,37,0.0 +16767,63,43.9,3,0.0 +16767,67,14,26,0.0 +16767,31,12.5,2,0.0 +16767,74,10,48,0.0 +16767,22,21,8,0.0 +16767,37,26,23,0.0 +16767,48,12.75,44,0.0 +16767,47,9.5,12,0.0 +16767,69,36,6,0.0 +16767,4,22,20,0.0 +16767,62,49.3,41,0.0 +16767,6,25,23,0.0 +16767,53,32.8,39,0.0 +16767,35,18,19,0.0 +16767,43,46,26,0.0 +16767,29,123.79,16,0.0 +16767,32,32,16,0.0 +16767,57,19.5,7,0.0 +16767,23,9,30,0.0 +16767,66,17,12,0.0 +16767,52,7,42,0.0 +16767,26,31.23,27,0.0 +16767,50,16.25,12,0.0 +16767,30,25.89,34,0.0 +16767,60,34,49,0.0 +16767,51,53,26,0.0 +16767,8,40,16,0.0 +16767,17,39,38,0.0 +16767,70,15,33,0.0 +16767,19,9.2,23,0.0 +16767,12,38,27,0.0 +16767,55,24,32,0.0 +16767,58,13.25,27,0.0 +16767,68,12.5,25,0.0 +16767,16,17.45,39,0.0 +16767,61,28.5,37,0.0 +16767,25,14,18,0.0 +16767,56,38,31,0.0 +16767,72,34.8,2,0.0 +16767,28,45.6,33,0.0 +16767,44,19.45,26,0.0 +16767,65,21.05,36,0.0 +16768,40,18.4,47,0.0 +16768,8,40,41,0.0 +16768,29,123.79,32,0.0 +16768,61,28.5,33,0.0 +16768,56,38,34,0.0 +16768,6,25,11,0.0 +16768,14,23.25,47,0.0 +16768,43,46,34,0.0 +16768,46,12,17,0.0 +16768,77,13,11,0.0 +16768,33,2.5,50,0.0 +16768,23,9,27,0.0 +16768,59,55,46,0.0 +16768,68,12.5,43,0.0 +16768,7,30,39,0.0 +16768,36,19,26,0.0 +16768,22,21,21,0.0 +16768,48,12.75,26,0.0 +16768,26,31.23,19,0.0 +16768,50,16.25,25,0.0 +16768,73,15,14,0.0 +16768,74,10,31,0.0 +16768,60,34,44,0.0 +16768,1,18,35,0.0 +16768,19,9.2,27,0.0 +16768,10,31,28,0.0 +16768,34,14,11,0.0 +16768,42,14,13,0.0 +16768,72,34.8,10,0.0 +16768,51,53,3,0.0 +16768,35,18,20,0.0 +16768,70,15,19,0.0 +16768,62,49.3,7,0.0 +16768,58,13.25,50,0.0 +16768,39,18,17,0.0 +16768,49,20,39,0.0 +16768,67,14,34,0.0 +16768,41,9.65,6,0.0 +16768,12,38,10,0.0 +16768,44,19.45,18,0.0 +16768,47,9.5,37,0.0 +16768,54,7.45,7,0.0 +16768,75,7.75,44,0.0 +16768,21,10,10,0.0 +16768,24,4.5,23,0.0 +16768,3,10,3,0.0 +16768,13,6,41,0.0 +16768,53,32.8,45,0.0 +16768,30,25.89,25,0.0 +16768,69,36,2,0.0 +16768,9,97,41,0.0 +16768,65,21.05,30,0.0 +16768,37,26,22,0.0 +16768,45,9.5,3,0.0 +16768,76,18,4,0.0 +16768,32,32,3,0.0 +16768,15,15.5,32,0.0 +16768,52,7,18,0.0 +16768,27,43.9,15,0.0 +16768,2,19,44,0.0 +16768,25,14,47,0.0 +16768,20,81,5,0.0 +16768,55,24,14,0.0 +16768,57,19.5,29,0.0 +16768,63,43.9,11,0.0 +16768,18,62.5,43,0.0 +16768,31,12.5,13,0.0 +16768,11,21,4,0.0 +16768,28,45.6,12,0.0 +16768,71,21.5,20,0.0 +16768,38,263.5,44,0.0 +16768,5,21.35,1,0.0 +16768,64,33.25,9,0.0 +16768,16,17.45,4,0.0 +16768,4,22,6,0.0 +16768,66,17,15,0.0 +16769,56,38,16,0.0 +16769,24,4.5,27,0.0 +16769,69,36,16,0.0 +16769,26,31.23,30,0.0 +16769,49,20,41,0.0 +16769,5,21.35,47,0.0 +16769,22,21,42,0.0 +16769,68,12.5,18,0.0 +16769,45,9.5,44,0.0 +16769,71,21.5,32,0.0 +16769,16,17.45,38,0.0 +16769,11,21,25,0.0 +16769,37,26,9,0.0 +16769,33,2.5,5,0.0 +16769,38,263.5,36,0.0 +16769,50,16.25,37,0.0 +16769,77,13,43,0.0 +16769,34,14,33,0.0 +16770,60,34,30,0.0 +16770,35,18,44,0.0 +16770,65,21.05,8,0.0 +16770,9,97,20,0.0 +16770,39,18,33,0.0 +16770,75,7.75,48,0.0 +16770,50,16.25,40,0.0 +16770,38,263.5,31,0.0 +16770,72,34.8,39,0.0 +16770,7,30,45,0.0 +16770,33,2.5,8,0.0 +16770,11,21,24,0.0 +16770,43,46,2,0.0 +16770,40,18.4,34,0.0 +16770,67,14,48,0.0 +16770,69,36,38,0.0 +16770,70,15,31,0.0 +16770,63,43.9,25,0.0 +16770,20,81,46,0.0 +16770,41,9.65,24,0.0 +16770,74,10,35,0.0 +16770,17,39,28,0.0 +16770,66,17,13,0.0 +16770,15,15.5,20,0.0 +16770,3,10,17,0.0 +16770,52,7,38,0.0 +16770,59,55,39,0.0 +16770,47,9.5,10,0.0 +16770,73,15,27,0.0 +16770,34,14,38,0.0 +16770,37,26,12,0.0 +16770,25,14,25,0.0 +16770,49,20,15,0.0 +16770,22,21,38,0.0 +16770,30,25.89,11,0.0 +16770,19,9.2,32,0.0 +16770,48,12.75,28,0.0 +16770,29,123.79,5,0.0 +16770,36,19,43,0.0 +16770,1,18,41,0.0 +16770,5,21.35,44,0.0 +16771,77,13,9,0.0 +16771,38,263.5,10,0.0 +16771,39,18,5,0.0 +16771,24,4.5,26,0.0 +16771,68,12.5,21,0.0 +16771,5,21.35,48,0.0 +16771,43,46,28,0.0 +16771,44,19.45,14,0.0 +16771,18,62.5,1,0.0 +16771,20,81,7,0.0 +16771,29,123.79,28,0.0 +16771,12,38,4,0.0 +16771,26,31.23,41,0.0 +16771,63,43.9,47,0.0 +16771,33,2.5,17,0.0 +16771,22,21,39,0.0 +16771,57,19.5,17,0.0 +16771,8,40,10,0.0 +16771,17,39,15,0.0 +16771,50,16.25,8,0.0 +16771,32,32,31,0.0 +16771,53,32.8,30,0.0 +16771,6,25,32,0.0 +16771,2,19,42,0.0 +16772,46,12,23,0.0 +16772,68,12.5,7,0.0 +16772,47,9.5,1,0.0 +16772,37,26,24,0.0 +16772,58,13.25,6,0.0 +16772,53,32.8,34,0.0 +16772,13,6,42,0.0 +16772,24,4.5,11,0.0 +16772,22,21,35,0.0 +16772,45,9.5,29,0.0 +16772,11,21,25,0.0 +16772,21,10,34,0.0 +16772,28,45.6,33,0.0 +16772,70,15,39,0.0 +16772,74,10,33,0.0 +16772,50,16.25,28,0.0 +16772,43,46,30,0.0 +16772,77,13,39,0.0 +16772,55,24,33,0.0 +16772,9,97,1,0.0 +16772,41,9.65,30,0.0 +16772,56,38,40,0.0 +16772,67,14,5,0.0 +16772,72,34.8,33,0.0 +16772,35,18,2,0.0 +16772,23,9,49,0.0 +16772,17,39,19,0.0 +16772,59,55,40,0.0 +16772,2,19,40,0.0 +16772,14,23.25,34,0.0 +16772,27,43.9,44,0.0 +16772,40,18.4,36,0.0 +16772,62,49.3,24,0.0 +16772,16,17.45,42,0.0 +16772,69,36,8,0.0 +16772,6,25,29,0.0 +16772,34,14,43,0.0 +16772,7,30,37,0.0 +16772,12,38,12,0.0 +16772,65,21.05,23,0.0 +16772,10,31,30,0.0 +16772,20,81,35,0.0 +16772,44,19.45,11,0.0 +16772,5,21.35,47,0.0 +16773,36,19,22,0.0 +16773,60,34,4,0.0 +16773,13,6,16,0.0 +16773,28,45.6,39,0.0 +16773,66,17,5,0.0 +16773,42,14,35,0.0 +16773,15,15.5,49,0.0 +16773,51,53,10,0.0 +16773,38,263.5,26,0.0 +16773,57,19.5,15,0.0 +16773,3,10,27,0.0 +16773,45,9.5,37,0.0 +16773,55,24,13,0.0 +16773,72,34.8,5,0.0 +16773,70,15,4,0.0 +16773,77,13,30,0.0 +16773,47,9.5,28,0.0 +16773,32,32,3,0.0 +16773,34,14,12,0.0 +16773,30,25.89,17,0.0 +16773,54,7.45,48,0.0 +16773,2,19,30,0.0 +16773,52,7,14,0.0 +16773,61,28.5,13,0.0 +16773,4,22,9,0.0 +16773,49,20,42,0.0 +16773,40,18.4,32,0.0 +16773,50,16.25,9,0.0 +16773,76,18,50,0.0 +16773,11,21,23,0.0 +16773,26,31.23,37,0.0 +16773,10,31,4,0.0 +16773,39,18,13,0.0 +16773,9,97,7,0.0 +16773,29,123.79,44,0.0 +16773,59,55,27,0.0 +16773,27,43.9,30,0.0 +16773,65,21.05,21,0.0 +16773,19,9.2,17,0.0 +16773,53,32.8,45,0.0 +16773,21,10,40,0.0 +16773,33,2.5,40,0.0 +16773,23,9,16,0.0 +16773,1,18,26,0.0 +16773,67,14,35,0.0 +16773,12,38,29,0.0 +16773,14,23.25,39,0.0 +16773,63,43.9,46,0.0 +16773,22,21,12,0.0 +16773,73,15,12,0.0 +16773,56,38,14,0.0 +16773,35,18,11,0.0 +16773,17,39,44,0.0 +16773,25,14,8,0.0 +16773,58,13.25,50,0.0 +16774,48,12.75,26,0.0 +16774,5,21.35,31,0.0 +16774,11,21,37,0.0 +16774,74,10,38,0.0 +16774,4,22,48,0.0 +16774,50,16.25,15,0.0 +16774,8,40,6,0.0 +16774,51,53,43,0.0 +16774,44,19.45,47,0.0 +16774,41,9.65,16,0.0 +16774,1,18,2,0.0 +16774,65,21.05,24,0.0 +16774,25,14,30,0.0 +16774,68,12.5,14,0.0 +16774,21,10,8,0.0 +16774,33,2.5,3,0.0 +16774,54,7.45,43,0.0 +16774,14,23.25,4,0.0 +16774,27,43.9,31,0.0 +16774,59,55,24,0.0 +16774,45,9.5,29,0.0 +16774,17,39,5,0.0 +16774,34,14,42,0.0 +16774,46,12,46,0.0 +16774,37,26,38,0.0 +16774,55,24,48,0.0 +16774,49,20,30,0.0 +16774,72,34.8,1,0.0 +16774,20,81,36,0.0 +16774,73,15,19,0.0 +16774,75,7.75,23,0.0 +16774,47,9.5,13,0.0 +16774,24,4.5,25,0.0 +16774,69,36,26,0.0 +16774,23,9,13,0.0 +16774,62,49.3,14,0.0 +16774,19,9.2,11,0.0 +16774,13,6,17,0.0 +16774,31,12.5,49,0.0 +16774,18,62.5,37,0.0 +16774,3,10,9,0.0 +16774,56,38,36,0.0 +16774,2,19,38,0.0 +16774,36,19,26,0.0 +16774,15,15.5,1,0.0 +16774,6,25,21,0.0 +16774,40,18.4,37,0.0 +16774,42,14,5,0.0 +16774,61,28.5,2,0.0 +16774,9,97,10,0.0 +16774,16,17.45,23,0.0 +16774,30,25.89,46,0.0 +16774,7,30,45,0.0 +16774,32,32,44,0.0 +16774,77,13,9,0.0 +16774,53,32.8,9,0.0 +16774,70,15,25,0.0 +16774,28,45.6,38,0.0 +16774,43,46,2,0.0 +16774,67,14,49,0.0 +16774,66,17,12,0.0 +16774,12,38,41,0.0 +16774,35,18,17,0.0 +16774,60,34,22,0.0 +16774,58,13.25,18,0.0 +16775,61,28.5,26,0.0 +16775,12,38,9,0.0 +16775,10,31,5,0.0 +16775,50,16.25,38,0.0 +16775,38,263.5,8,0.0 +16775,29,123.79,22,0.0 +16775,58,13.25,16,0.0 +16775,51,53,33,0.0 +16775,55,24,28,0.0 +16775,42,14,47,0.0 +16775,68,12.5,45,0.0 +16775,7,30,36,0.0 +16775,23,9,28,0.0 +16775,59,55,35,0.0 +16775,32,32,33,0.0 +16775,67,14,49,0.0 +16775,4,22,43,0.0 +16775,71,21.5,43,0.0 +16775,21,10,3,0.0 +16775,30,25.89,8,0.0 +16775,41,9.65,45,0.0 +16775,72,34.8,44,0.0 +16775,34,14,44,0.0 +16775,14,23.25,16,0.0 +16775,25,14,39,0.0 +16775,57,19.5,10,0.0 +16775,73,15,47,0.0 +16775,8,40,22,0.0 +16775,75,7.75,14,0.0 +16775,22,21,33,0.0 +16775,77,13,2,0.0 +16775,63,43.9,2,0.0 +16775,3,10,39,0.0 +16775,45,9.5,13,0.0 +16775,70,15,27,0.0 +16775,39,18,8,0.0 +16775,36,19,15,0.0 +16775,15,15.5,32,0.0 +16775,76,18,8,0.0 +16775,11,21,7,0.0 +16775,53,32.8,37,0.0 +16775,16,17.45,42,0.0 +16775,44,19.45,11,0.0 +16775,62,49.3,18,0.0 +16775,5,21.35,3,0.0 +16775,56,38,10,0.0 +16775,6,25,16,0.0 +16775,37,26,38,0.0 +16775,35,18,35,0.0 +16775,46,12,7,0.0 +16775,48,12.75,32,0.0 +16775,65,21.05,3,0.0 +16775,1,18,37,0.0 +16775,13,6,31,0.0 +16775,49,20,9,0.0 +16775,28,45.6,22,0.0 +16775,24,4.5,10,0.0 +16775,74,10,14,0.0 +16775,20,81,44,0.0 +16775,60,34,22,0.0 +16775,40,18.4,12,0.0 +16775,17,39,38,0.0 +16775,2,19,16,0.0 +16775,18,62.5,15,0.0 +16775,52,7,30,0.0 +16775,9,97,49,0.0 +16775,31,12.5,42,0.0 +16775,19,9.2,14,0.0 +16775,54,7.45,22,0.0 +16775,47,9.5,50,0.0 +16775,43,46,44,0.0 +16775,26,31.23,34,0.0 +16775,27,43.9,8,0.0 +16775,69,36,2,0.0 +16775,64,33.25,6,0.0 +16776,56,38,14,0.0 +16776,13,6,20,0.0 +16776,42,14,17,0.0 +16776,47,9.5,21,0.0 +16776,58,13.25,15,0.0 +16776,45,9.5,39,0.0 +16776,9,97,35,0.0 +16776,11,21,47,0.0 +16776,28,45.6,31,0.0 +16776,46,12,14,0.0 +16776,72,34.8,49,0.0 +16776,66,17,2,0.0 +16776,37,26,23,0.0 +16776,69,36,21,0.0 +16776,49,20,45,0.0 +16776,19,9.2,21,0.0 +16776,32,32,11,0.0 +16776,1,18,48,0.0 +16776,34,14,33,0.0 +16776,22,21,36,0.0 +16776,5,21.35,30,0.0 +16776,61,28.5,36,0.0 +16776,48,12.75,5,0.0 +16776,15,15.5,22,0.0 +16776,27,43.9,35,0.0 +16776,25,14,44,0.0 +16776,24,4.5,47,0.0 +16776,40,18.4,9,0.0 +16776,8,40,33,0.0 +16776,30,25.89,39,0.0 +16776,41,9.65,18,0.0 +16776,50,16.25,3,0.0 +16776,43,46,39,0.0 +16776,62,49.3,15,0.0 +16776,3,10,15,0.0 +16776,39,18,29,0.0 +16776,33,2.5,36,0.0 +16776,4,22,12,0.0 +16776,76,18,18,0.0 +16777,49,20,1,0.0 +16777,57,19.5,29,0.0 +16777,62,49.3,29,0.0 +16777,15,15.5,36,0.0 +16777,77,13,15,0.0 +16778,28,45.6,5,0.0 +16778,76,18,32,0.0 +16778,50,16.25,24,0.0 +16778,67,14,36,0.0 +16778,62,49.3,4,0.0 +16778,7,30,3,0.0 +16778,16,17.45,34,0.0 +16779,57,19.5,11,0.0 +16779,53,32.8,8,0.0 +16779,69,36,17,0.0 +16779,70,15,8,0.0 +16779,60,34,7,0.0 +16779,18,62.5,14,0.0 +16779,34,14,12,0.0 +16779,24,4.5,2,0.0 +16779,37,26,44,0.0 +16779,76,18,16,0.0 +16779,64,33.25,47,0.0 +16779,10,31,49,0.0 +16779,16,17.45,4,0.0 +16779,31,12.5,20,0.0 +16779,5,21.35,7,0.0 +16779,61,28.5,32,0.0 +16779,38,263.5,32,0.0 +16779,25,14,42,0.0 +16779,58,13.25,45,0.0 +16779,20,81,44,0.0 +16779,48,12.75,22,0.0 +16779,75,7.75,48,0.0 +16779,49,20,46,0.0 +16779,32,32,16,0.0 +16779,77,13,31,0.0 +16779,66,17,22,0.0 +16779,9,97,16,0.0 +16779,13,6,21,0.0 +16779,55,24,33,0.0 +16779,65,21.05,9,0.0 +16779,59,55,5,0.0 +16779,44,19.45,34,0.0 +16779,15,15.5,31,0.0 +16779,1,18,49,0.0 +16779,22,21,9,0.0 +16780,25,14,38,0.0 +16780,3,10,44,0.0 +16780,33,2.5,8,0.0 +16780,51,53,46,0.0 +16780,58,13.25,38,0.0 +16780,24,4.5,46,0.0 +16780,75,7.75,1,0.0 +16780,32,32,9,0.0 +16780,21,10,25,0.0 +16780,56,38,33,0.0 +16780,6,25,1,0.0 +16780,18,62.5,21,0.0 +16780,43,46,13,0.0 +16780,7,30,31,0.0 +16780,64,33.25,31,0.0 +16780,53,32.8,21,0.0 +16781,48,12.75,11,0.0 +16781,64,33.25,23,0.0 +16781,74,10,29,0.0 +16781,2,19,9,0.0 +16781,5,21.35,5,0.0 +16781,24,4.5,21,0.0 +16781,4,22,7,0.0 +16781,70,15,11,0.0 +16781,20,81,29,0.0 +16781,61,28.5,47,0.0 +16781,28,45.6,43,0.0 +16781,67,14,27,0.0 +16781,18,62.5,46,0.0 +16781,63,43.9,19,0.0 +16781,71,21.5,42,0.0 +16781,6,25,32,0.0 +16781,55,24,20,0.0 +16781,66,17,21,0.0 +16781,27,43.9,34,0.0 +16781,53,32.8,38,0.0 +16781,14,23.25,7,0.0 +16781,62,49.3,47,0.0 +16781,52,7,23,0.0 +16781,10,31,19,0.0 +16781,77,13,24,0.0 +16781,34,14,39,0.0 +16781,9,97,36,0.0 +16781,12,38,9,0.0 +16781,75,7.75,12,0.0 +16781,58,13.25,28,0.0 +16781,51,53,24,0.0 +16781,47,9.5,19,0.0 +16781,26,31.23,49,0.0 +16781,69,36,28,0.0 +16781,7,30,42,0.0 +16781,40,18.4,29,0.0 +16781,73,15,46,0.0 +16781,39,18,6,0.0 +16781,57,19.5,14,0.0 +16781,50,16.25,7,0.0 +16781,32,32,26,0.0 +16781,56,38,18,0.0 +16781,16,17.45,34,0.0 +16782,62,49.3,9,0.0 +16782,11,21,8,0.0 +16782,29,123.79,37,0.0 +16782,27,43.9,37,0.0 +16782,32,32,14,0.0 +16782,49,20,13,0.0 +16782,57,19.5,41,0.0 +16782,40,18.4,12,0.0 +16782,3,10,11,0.0 +16782,2,19,39,0.0 +16782,35,18,30,0.0 +16782,54,7.45,18,0.0 +16782,47,9.5,43,0.0 +16782,8,40,20,0.0 +16782,55,24,14,0.0 +16782,38,263.5,11,0.0 +16782,16,17.45,14,0.0 +16782,25,14,45,0.0 +16782,18,62.5,40,0.0 +16782,19,9.2,37,0.0 +16782,46,12,12,0.0 +16782,50,16.25,34,0.0 +16782,13,6,43,0.0 +16782,73,15,18,0.0 +16782,37,26,14,0.0 +16782,15,15.5,18,0.0 +16782,12,38,21,0.0 +16782,28,45.6,2,0.0 +16782,71,21.5,8,0.0 +16782,45,9.5,39,0.0 +16782,24,4.5,38,0.0 +16782,9,97,7,0.0 +16782,64,33.25,2,0.0 +16782,33,2.5,25,0.0 +16782,20,81,29,0.0 +16782,70,15,50,0.0 +16782,63,43.9,27,0.0 +16782,58,13.25,13,0.0 +16782,21,10,15,0.0 +16782,68,12.5,16,0.0 +16782,48,12.75,30,0.0 +16782,69,36,7,0.0 +16782,72,34.8,4,0.0 +16782,44,19.45,14,0.0 +16782,22,21,34,0.0 +16782,30,25.89,32,0.0 +16782,39,18,3,0.0 +16782,61,28.5,43,0.0 +16782,51,53,43,0.0 +16782,60,34,40,0.0 +16782,6,25,29,0.0 +16782,77,13,2,0.0 +16782,4,22,24,0.0 +16782,66,17,8,0.0 +16782,17,39,20,0.0 +16782,74,10,4,0.0 +16782,14,23.25,23,0.0 +16782,7,30,33,0.0 +16782,53,32.8,36,0.0 +16782,65,21.05,21,0.0 +16782,76,18,7,0.0 +16782,56,38,36,0.0 +16782,41,9.65,47,0.0 +16783,68,12.5,16,0.0 +16783,27,43.9,26,0.0 +16783,50,16.25,12,0.0 +16783,64,33.25,6,0.0 +16783,4,22,49,0.0 +16783,37,26,10,0.0 +16783,30,25.89,7,0.0 +16783,24,4.5,47,0.0 +16783,59,55,40,0.0 +16783,6,25,26,0.0 +16783,74,10,21,0.0 +16783,57,19.5,46,0.0 +16783,73,15,23,0.0 +16783,9,97,11,0.0 +16783,33,2.5,8,0.0 +16783,20,81,41,0.0 +16783,15,15.5,26,0.0 +16783,47,9.5,33,0.0 +16784,8,40,29,0.0 +16784,12,38,18,0.0 +16784,33,2.5,36,0.0 +16784,67,14,14,0.0 +16784,4,22,39,0.0 +16784,29,123.79,10,0.0 +16784,59,55,2,0.0 +16784,47,9.5,6,0.0 +16784,32,32,16,0.0 +16784,31,12.5,42,0.0 +16784,6,25,9,0.0 +16784,48,12.75,1,0.0 +16784,10,31,18,0.0 +16784,71,21.5,36,0.0 +16784,75,7.75,39,0.0 +16784,74,10,11,0.0 +16784,77,13,33,0.0 +16784,54,7.45,49,0.0 +16784,43,46,27,0.0 +16784,13,6,15,0.0 +16784,37,26,24,0.0 +16784,64,33.25,23,0.0 +16784,34,14,27,0.0 +16784,42,14,48,0.0 +16784,14,23.25,42,0.0 +16784,19,9.2,39,0.0 +16784,27,43.9,3,0.0 +16784,69,36,5,0.0 +16784,66,17,7,0.0 +16784,68,12.5,21,0.0 +16784,63,43.9,25,0.0 +16784,40,18.4,40,0.0 +16784,17,39,8,0.0 +16784,11,21,3,0.0 +16784,76,18,9,0.0 +16784,1,18,44,0.0 +16784,46,12,15,0.0 +16784,30,25.89,16,0.0 +16784,44,19.45,14,0.0 +16784,60,34,47,0.0 +16784,52,7,23,0.0 +16784,18,62.5,42,0.0 +16784,16,17.45,46,0.0 +16784,58,13.25,34,0.0 +16784,7,30,13,0.0 +16784,73,15,48,0.0 +16784,38,263.5,45,0.0 +16784,20,81,7,0.0 +16784,65,21.05,4,0.0 +16784,49,20,2,0.0 +16784,57,19.5,32,0.0 +16784,56,38,22,0.0 +16784,45,9.5,1,0.0 +16785,49,20,32,0.0 +16785,18,62.5,44,0.0 +16785,26,31.23,37,0.0 +16785,8,40,30,0.0 +16785,63,43.9,49,0.0 +16785,27,43.9,47,0.0 +16785,40,18.4,27,0.0 +16785,28,45.6,24,0.0 +16785,3,10,32,0.0 +16785,66,17,15,0.0 +16785,74,10,33,0.0 +16785,58,13.25,8,0.0 +16785,16,17.45,25,0.0 +16785,35,18,46,0.0 +16785,73,15,24,0.0 +16785,24,4.5,6,0.0 +16785,46,12,3,0.0 +16785,48,12.75,30,0.0 +16785,44,19.45,39,0.0 +16785,14,23.25,41,0.0 +16785,67,14,11,0.0 +16785,54,7.45,45,0.0 +16785,15,15.5,35,0.0 +16785,47,9.5,39,0.0 +16785,34,14,28,0.0 +16785,33,2.5,10,0.0 +16785,69,36,32,0.0 +16785,22,21,4,0.0 +16785,10,31,41,0.0 +16785,65,21.05,27,0.0 +16785,20,81,37,0.0 +16785,51,53,11,0.0 +16785,12,38,43,0.0 +16785,56,38,34,0.0 +16785,36,19,21,0.0 +16785,7,30,6,0.0 +16785,53,32.8,36,0.0 +16785,9,97,12,0.0 +16785,29,123.79,42,0.0 +16785,38,263.5,44,0.0 +16785,71,21.5,17,0.0 +16785,60,34,19,0.0 +16785,52,7,47,0.0 +16785,68,12.5,46,0.0 +16786,20,81,10,0.0 +16786,60,34,16,0.0 +16787,29,123.79,20,0.0 +16787,24,4.5,41,0.0 +16787,56,38,23,0.0 +16787,4,22,49,0.0 +16787,33,2.5,25,0.0 +16787,66,17,22,0.0 +16787,9,97,2,0.0 +16787,65,21.05,45,0.0 +16787,72,34.8,44,0.0 +16787,3,10,30,0.0 +16787,51,53,46,0.0 +16787,63,43.9,39,0.0 +16787,60,34,31,0.0 +16787,42,14,17,0.0 +16787,11,21,32,0.0 +16787,48,12.75,49,0.0 +16787,10,31,48,0.0 +16787,50,16.25,12,0.0 +16787,45,9.5,6,0.0 +16787,69,36,35,0.0 +16787,34,14,4,0.0 +16788,12,38,36,0.0 +16788,6,25,24,0.0 +16788,67,14,50,0.0 +16788,64,33.25,15,0.0 +16788,65,21.05,28,0.0 +16788,46,12,9,0.0 +16788,54,7.45,8,0.0 +16788,2,19,12,0.0 +16788,13,6,32,0.0 +16788,72,34.8,22,0.0 +16788,22,21,34,0.0 +16788,59,55,1,0.0 +16788,10,31,48,0.0 +16788,76,18,44,0.0 +16788,1,18,49,0.0 +16788,39,18,5,0.0 +16788,7,30,27,0.0 +16788,74,10,18,0.0 +16788,68,12.5,38,0.0 +16788,3,10,34,0.0 +16788,35,18,24,0.0 +16788,37,26,25,0.0 +16788,20,81,9,0.0 +16788,77,13,17,0.0 +16788,52,7,15,0.0 +16788,24,4.5,28,0.0 +16788,28,45.6,1,0.0 +16788,31,12.5,30,0.0 +16788,34,14,36,0.0 +16788,58,13.25,24,0.0 +16788,70,15,24,0.0 +16788,50,16.25,29,0.0 +16788,48,12.75,23,0.0 +16788,33,2.5,30,0.0 +16788,29,123.79,8,0.0 +16788,16,17.45,43,0.0 +16788,43,46,29,0.0 +16788,21,10,27,0.0 +16788,8,40,37,0.0 +16788,71,21.5,23,0.0 +16788,11,21,17,0.0 +16788,38,263.5,20,0.0 +16788,51,53,24,0.0 +16788,75,7.75,28,0.0 +16788,49,20,31,0.0 +16788,36,19,19,0.0 +16788,5,21.35,50,0.0 +16788,18,62.5,10,0.0 +16788,57,19.5,34,0.0 +16788,41,9.65,35,0.0 +16788,40,18.4,24,0.0 +16788,56,38,21,0.0 +16788,66,17,50,0.0 +16789,74,10,35,0.0 +16789,18,62.5,13,0.0 +16789,66,17,27,0.0 +16789,5,21.35,7,0.0 +16789,39,18,35,0.0 +16789,8,40,2,0.0 +16789,1,18,30,0.0 +16789,35,18,37,0.0 +16789,30,25.89,40,0.0 +16789,4,22,26,0.0 +16789,32,32,33,0.0 +16789,2,19,22,0.0 +16789,23,9,48,0.0 +16789,37,26,48,0.0 +16789,47,9.5,18,0.0 +16789,6,25,33,0.0 +16789,16,17.45,11,0.0 +16789,67,14,13,0.0 +16789,29,123.79,8,0.0 +16789,36,19,36,0.0 +16789,49,20,16,0.0 +16789,19,9.2,39,0.0 +16789,38,263.5,49,0.0 +16789,52,7,42,0.0 +16789,71,21.5,37,0.0 +16789,64,33.25,9,0.0 +16789,25,14,33,0.0 +16789,76,18,5,0.0 +16789,41,9.65,25,0.0 +16789,42,14,45,0.0 +16789,72,34.8,30,0.0 +16789,77,13,4,0.0 +16789,51,53,26,0.0 +16789,17,39,11,0.0 +16789,20,81,39,0.0 +16789,58,13.25,41,0.0 +16789,34,14,22,0.0 +16789,11,21,38,0.0 +16789,73,15,15,0.0 +16789,62,49.3,49,0.0 +16789,54,7.45,45,0.0 +16789,75,7.75,20,0.0 +16789,53,32.8,24,0.0 +16789,70,15,10,0.0 +16790,72,34.8,11,0.0 +16790,14,23.25,27,0.0 +16790,63,43.9,9,0.0 +16790,26,31.23,22,0.0 +16790,12,38,48,0.0 +16790,62,49.3,11,0.0 +16790,52,7,16,0.0 +16790,19,9.2,43,0.0 +16790,67,14,22,0.0 +16790,68,12.5,21,0.0 +16790,38,263.5,29,0.0 +16790,45,9.5,8,0.0 +16790,65,21.05,15,0.0 +16790,46,12,11,0.0 +16790,15,15.5,26,0.0 +16790,71,21.5,9,0.0 +16790,2,19,50,0.0 +16790,34,14,31,0.0 +16790,18,62.5,38,0.0 +16790,60,34,21,0.0 +16790,75,7.75,32,0.0 +16790,28,45.6,11,0.0 +16790,55,24,7,0.0 +16790,47,9.5,21,0.0 +16790,59,55,31,0.0 +16790,57,19.5,49,0.0 +16790,24,4.5,46,0.0 +16790,9,97,36,0.0 +16790,36,19,34,0.0 +16790,66,17,3,0.0 +16790,64,33.25,45,0.0 +16790,49,20,10,0.0 +16790,35,18,42,0.0 +16790,48,12.75,25,0.0 +16790,8,40,27,0.0 +16790,70,15,47,0.0 +16790,54,7.45,34,0.0 +16790,40,18.4,30,0.0 +16790,77,13,22,0.0 +16790,29,123.79,26,0.0 +16790,3,10,47,0.0 +16790,13,6,8,0.0 +16790,50,16.25,17,0.0 +16790,33,2.5,38,0.0 +16790,32,32,41,0.0 +16790,11,21,6,0.0 +16790,74,10,19,0.0 +16790,30,25.89,12,0.0 +16790,37,26,25,0.0 +16790,56,38,36,0.0 +16790,1,18,33,0.0 +16790,41,9.65,4,0.0 +16790,7,30,20,0.0 +16790,27,43.9,46,0.0 +16790,16,17.45,39,0.0 +16790,42,14,22,0.0 +16790,4,22,25,0.0 +16790,25,14,5,0.0 +16790,53,32.8,31,0.0 +16790,61,28.5,22,0.0 +16791,26,31.23,37,0.0 +16791,75,7.75,42,0.0 +16791,50,16.25,46,0.0 +16791,9,97,46,0.0 +16791,34,14,39,0.0 +16791,67,14,30,0.0 +16791,48,12.75,31,0.0 +16791,61,28.5,26,0.0 +16791,27,43.9,6,0.0 +16791,15,15.5,43,0.0 +16791,51,53,39,0.0 +16791,11,21,26,0.0 +16791,4,22,12,0.0 +16791,71,21.5,29,0.0 +16791,37,26,3,0.0 +16791,29,123.79,39,0.0 +16791,22,21,43,0.0 +16791,21,10,20,0.0 +16791,46,12,12,0.0 +16791,47,9.5,41,0.0 +16791,33,2.5,12,0.0 +16791,35,18,21,0.0 +16791,18,62.5,14,0.0 +16791,5,21.35,13,0.0 +16791,8,40,9,0.0 +16791,2,19,50,0.0 +16791,62,49.3,42,0.0 +16791,32,32,50,0.0 +16791,73,15,43,0.0 +16791,6,25,49,0.0 +16791,64,33.25,14,0.0 +16791,74,10,16,0.0 +16791,66,17,19,0.0 +16792,14,23.25,49,0.0 +16792,24,4.5,7,0.0 +16792,72,34.8,28,0.0 +16792,32,32,47,0.0 +16792,56,38,39,0.0 +16792,63,43.9,19,0.0 +16792,47,9.5,16,0.0 +16792,8,40,46,0.0 +16792,13,6,22,0.0 +16792,69,36,3,0.0 +16792,46,12,16,0.0 +16792,50,16.25,31,0.0 +16792,17,39,8,0.0 +16792,48,12.75,48,0.0 +16792,61,28.5,45,0.0 +16792,67,14,33,0.0 +16792,19,9.2,41,0.0 +16792,2,19,16,0.0 +16792,76,18,7,0.0 +16792,23,9,11,0.0 +16792,36,19,37,0.0 +16792,41,9.65,44,0.0 +16792,60,34,36,0.0 +16792,35,18,43,0.0 +16792,1,18,13,0.0 +16792,49,20,45,0.0 +16792,45,9.5,4,0.0 +16792,31,12.5,44,0.0 +16792,40,18.4,38,0.0 +16792,59,55,14,0.0 +16792,30,25.89,5,0.0 +16792,53,32.8,19,0.0 +16792,33,2.5,10,0.0 +16792,75,7.75,23,0.0 +16792,28,45.6,19,0.0 +16792,18,62.5,41,0.0 +16792,3,10,34,0.0 +16792,37,26,50,0.0 +16792,25,14,12,0.0 +16792,9,97,27,0.0 +16792,54,7.45,16,0.0 +16792,65,21.05,23,0.0 +16792,73,15,38,0.0 +16793,32,32,36,0.0 +16793,12,38,21,0.0 +16793,55,24,6,0.0 +16793,2,19,29,0.0 +16793,20,81,48,0.0 +16793,69,36,29,0.0 +16793,61,28.5,9,0.0 +16793,38,263.5,33,0.0 +16793,73,15,9,0.0 +16793,57,19.5,16,0.0 +16793,71,21.5,8,0.0 +16793,52,7,8,0.0 +16793,31,12.5,31,0.0 +16793,40,18.4,21,0.0 +16793,77,13,26,0.0 +16793,48,12.75,15,0.0 +16793,27,43.9,10,0.0 +16793,10,31,33,0.0 +16793,5,21.35,15,0.0 +16793,56,38,23,0.0 +16793,47,9.5,10,0.0 +16793,30,25.89,44,0.0 +16793,44,19.45,12,0.0 +16794,7,30,47,0.0 +16794,19,9.2,50,0.0 +16794,2,19,35,0.0 +16794,26,31.23,32,0.0 +16794,55,24,45,0.0 +16794,29,123.79,40,0.0 +16794,64,33.25,20,0.0 +16794,21,10,48,0.0 +16794,25,14,20,0.0 +16794,32,32,4,0.0 +16794,6,25,18,0.0 +16794,35,18,10,0.0 +16794,14,23.25,32,0.0 +16794,43,46,1,0.0 +16794,18,62.5,48,0.0 +16794,28,45.6,8,0.0 +16794,49,20,43,0.0 +16794,62,49.3,16,0.0 +16794,34,14,25,0.0 +16794,10,31,39,0.0 +16794,9,97,16,0.0 +16794,31,12.5,31,0.0 +16794,40,18.4,13,0.0 +16794,72,34.8,28,0.0 +16794,44,19.45,7,0.0 +16794,47,9.5,47,0.0 +16794,58,13.25,38,0.0 +16794,66,17,50,0.0 +16794,61,28.5,31,0.0 +16794,59,55,38,0.0 +16794,13,6,30,0.0 +16794,39,18,50,0.0 +16794,71,21.5,3,0.0 +16794,38,263.5,17,0.0 +16794,69,36,5,0.0 +16794,22,21,7,0.0 +16794,45,9.5,12,0.0 +16794,70,15,33,0.0 +16794,52,7,44,0.0 +16794,42,14,2,0.0 +16794,17,39,40,0.0 +16794,67,14,31,0.0 +16794,20,81,17,0.0 +16794,3,10,47,0.0 +16794,41,9.65,50,0.0 +16794,4,22,12,0.0 +16794,15,15.5,27,0.0 +16794,27,43.9,13,0.0 +16794,8,40,18,0.0 +16794,76,18,42,0.0 +16794,5,21.35,17,0.0 +16794,60,34,27,0.0 +16794,48,12.75,18,0.0 +16794,33,2.5,17,0.0 +16794,57,19.5,21,0.0 +16794,63,43.9,44,0.0 +16794,24,4.5,50,0.0 +16794,65,21.05,10,0.0 +16794,11,21,46,0.0 +16794,30,25.89,14,0.0 +16794,56,38,35,0.0 +16794,77,13,10,0.0 +16794,50,16.25,31,0.0 +16795,6,25,26,0.0 +16795,10,31,24,0.0 +16795,33,2.5,27,0.0 +16795,5,21.35,27,0.0 +16795,37,26,11,0.0 +16795,65,21.05,34,0.0 +16795,29,123.79,34,0.0 +16795,41,9.65,9,0.0 +16795,17,39,50,0.0 +16795,75,7.75,29,0.0 +16795,44,19.45,15,0.0 +16795,12,38,2,0.0 +16795,9,97,49,0.0 +16795,22,21,25,0.0 +16795,19,9.2,48,0.0 +16796,24,4.5,6,0.0 +16796,16,17.45,46,0.0 +16796,70,15,32,0.0 +16796,46,12,34,0.0 +16796,43,46,37,0.0 +16796,18,62.5,14,0.0 +16796,37,26,48,0.0 +16796,44,19.45,5,0.0 +16796,69,36,25,0.0 +16796,66,17,33,0.0 +16796,65,21.05,9,0.0 +16796,11,21,19,0.0 +16796,1,18,27,0.0 +16796,59,55,35,0.0 +16796,56,38,49,0.0 +16796,4,22,14,0.0 +16796,7,30,23,0.0 +16796,41,9.65,47,0.0 +16796,2,19,49,0.0 +16796,39,18,2,0.0 +16796,77,13,6,0.0 +16796,49,20,41,0.0 +16796,21,10,1,0.0 +16796,22,21,25,0.0 +16796,62,49.3,50,0.0 +16796,51,53,8,0.0 +16796,71,21.5,9,0.0 +16796,67,14,38,0.0 +16796,35,18,16,0.0 +16796,48,12.75,6,0.0 +16796,68,12.5,21,0.0 +16796,14,23.25,37,0.0 +16796,26,31.23,14,0.0 +16796,15,15.5,10,0.0 +16797,36,19,36,0.0 +16797,49,20,3,0.0 +16797,72,34.8,10,0.0 +16797,62,49.3,46,0.0 +16797,64,33.25,17,0.0 +16797,5,21.35,10,0.0 +16797,8,40,16,0.0 +16797,53,32.8,2,0.0 +16797,58,13.25,21,0.0 +16797,32,32,40,0.0 +16797,23,9,43,0.0 +16797,57,19.5,43,0.0 +16797,70,15,40,0.0 +16797,55,24,41,0.0 +16797,15,15.5,14,0.0 +16797,60,34,14,0.0 +16798,2,19,46,0.0 +16798,34,14,16,0.0 +16798,60,34,4,0.0 +16798,70,15,1,0.0 +16798,22,21,25,0.0 +16798,7,30,3,0.0 +16798,9,97,44,0.0 +16798,71,21.5,23,0.0 +16798,19,9.2,42,0.0 +16798,64,33.25,22,0.0 +16798,45,9.5,42,0.0 +16798,37,26,6,0.0 +16798,66,17,42,0.0 +16798,58,13.25,21,0.0 +16798,35,18,8,0.0 +16798,21,10,29,0.0 +16798,63,43.9,42,0.0 +16798,55,24,26,0.0 +16798,65,21.05,13,0.0 +16798,43,46,31,0.0 +16798,44,19.45,47,0.0 +16798,75,7.75,32,0.0 +16798,29,123.79,35,0.0 +16798,59,55,6,0.0 +16798,8,40,50,0.0 +16798,30,25.89,49,0.0 +16798,50,16.25,46,0.0 +16798,23,9,37,0.0 +16798,74,10,10,0.0 +16798,11,21,37,0.0 +16798,57,19.5,2,0.0 +16798,36,19,30,0.0 +16798,72,34.8,27,0.0 +16798,28,45.6,16,0.0 +16798,77,13,39,0.0 +16798,61,28.5,27,0.0 +16798,13,6,34,0.0 +16798,48,12.75,38,0.0 +16798,52,7,1,0.0 +16798,31,12.5,5,0.0 +16798,4,22,41,0.0 +16798,68,12.5,50,0.0 +16798,51,53,15,0.0 +16798,53,32.8,40,0.0 +16798,38,263.5,39,0.0 +16798,73,15,39,0.0 +16798,62,49.3,17,0.0 +16798,3,10,37,0.0 +16798,17,39,4,0.0 +16798,47,9.5,36,0.0 +16798,5,21.35,43,0.0 +16798,24,4.5,39,0.0 +16798,67,14,7,0.0 +16798,25,14,15,0.0 +16798,46,12,31,0.0 +16798,6,25,17,0.0 +16798,1,18,15,0.0 +16798,33,2.5,39,0.0 +16798,69,36,30,0.0 +16798,76,18,4,0.0 +16798,12,38,30,0.0 +16798,42,14,43,0.0 +16798,27,43.9,22,0.0 +16798,54,7.45,21,0.0 +16798,14,23.25,29,0.0 +16798,15,15.5,6,0.0 +16798,41,9.65,14,0.0 +16798,56,38,10,0.0 +16798,32,32,44,0.0 +16798,49,20,17,0.0 +16798,26,31.23,10,0.0 +16799,23,9,40,0.0 +16799,60,34,18,0.0 +16799,6,25,40,0.0 +16799,76,18,50,0.0 +16799,20,81,44,0.0 +16799,71,21.5,7,0.0 +16799,69,36,35,0.0 +16799,70,15,15,0.0 +16799,42,14,18,0.0 +16799,74,10,14,0.0 +16799,13,6,43,0.0 +16799,35,18,32,0.0 +16799,16,17.45,43,0.0 +16799,39,18,7,0.0 +16799,26,31.23,9,0.0 +16799,67,14,43,0.0 +16799,9,97,50,0.0 +16799,40,18.4,50,0.0 +16799,19,9.2,37,0.0 +16799,57,19.5,10,0.0 +16799,15,15.5,25,0.0 +16799,65,21.05,7,0.0 +16799,52,7,17,0.0 +16799,68,12.5,9,0.0 +16799,28,45.6,44,0.0 +16799,62,49.3,10,0.0 +16799,14,23.25,43,0.0 +16799,22,21,19,0.0 +16799,75,7.75,12,0.0 +16799,58,13.25,47,0.0 +16799,63,43.9,27,0.0 +16799,55,24,18,0.0 +16799,36,19,11,0.0 +16799,46,12,3,0.0 +16799,56,38,5,0.0 +16799,72,34.8,32,0.0 +16799,77,13,4,0.0 +16799,38,263.5,37,0.0 +16799,48,12.75,40,0.0 +16799,10,31,3,0.0 +16799,31,12.5,17,0.0 +16799,2,19,44,0.0 +16799,21,10,46,0.0 +16799,45,9.5,3,0.0 +16799,30,25.89,36,0.0 +16799,53,32.8,7,0.0 +16799,43,46,2,0.0 +16799,7,30,10,0.0 +16799,12,38,47,0.0 +16799,4,22,14,0.0 +16799,33,2.5,33,0.0 +16799,3,10,18,0.0 +16799,24,4.5,40,0.0 +16799,25,14,32,0.0 +16799,47,9.5,50,0.0 +16799,32,32,24,0.0 +16799,11,21,43,0.0 +16799,66,17,7,0.0 +16799,41,9.65,12,0.0 +16799,34,14,42,0.0 +16799,61,28.5,10,0.0 +16799,1,18,4,0.0 +16799,50,16.25,39,0.0 +16799,29,123.79,43,0.0 +16800,31,12.5,10,0.0 +16800,74,10,46,0.0 +16800,25,14,18,0.0 +16800,49,20,12,0.0 +16800,7,30,21,0.0 +16800,32,32,43,0.0 +16800,39,18,47,0.0 +16800,59,55,7,0.0 +16800,16,17.45,45,0.0 +16800,4,22,32,0.0 +16800,5,21.35,21,0.0 +16800,71,21.5,4,0.0 +16800,42,14,44,0.0 +16800,21,10,10,0.0 +16800,67,14,39,0.0 +16800,50,16.25,36,0.0 +16800,13,6,39,0.0 +16800,27,43.9,6,0.0 +16800,72,34.8,42,0.0 +16800,44,19.45,47,0.0 +16800,1,18,23,0.0 +16800,38,263.5,11,0.0 +16800,43,46,18,0.0 +16800,58,13.25,8,0.0 +16800,30,25.89,28,0.0 +16800,34,14,16,0.0 +16800,53,32.8,7,0.0 +16800,3,10,9,0.0 +16801,13,6,47,0.0 +16801,2,19,3,0.0 +16801,47,9.5,13,0.0 +16801,69,36,47,0.0 +16801,23,9,9,0.0 +16801,65,21.05,14,0.0 +16801,62,49.3,36,0.0 +16801,18,62.5,26,0.0 +16801,54,7.45,37,0.0 +16801,52,7,17,0.0 +16801,68,12.5,4,0.0 +16801,70,15,8,0.0 +16801,44,19.45,22,0.0 +16801,31,12.5,27,0.0 +16801,14,23.25,24,0.0 +16801,6,25,36,0.0 +16801,73,15,44,0.0 +16801,72,34.8,6,0.0 +16801,27,43.9,33,0.0 +16801,58,13.25,11,0.0 +16801,38,263.5,36,0.0 +16801,15,15.5,20,0.0 +16801,60,34,2,0.0 +16801,19,9.2,42,0.0 +16802,7,30,48,0.0 +16802,4,22,40,0.0 +16803,66,17,1,0.0 +16803,63,43.9,19,0.0 +16803,43,46,48,0.0 +16803,15,15.5,1,0.0 +16803,76,18,9,0.0 +16803,47,9.5,13,0.0 +16803,39,18,44,0.0 +16803,71,21.5,12,0.0 +16803,46,12,30,0.0 +16803,48,12.75,5,0.0 +16803,31,12.5,8,0.0 +16803,12,38,20,0.0 +16803,6,25,27,0.0 +16803,45,9.5,27,0.0 +16803,61,28.5,17,0.0 +16803,21,10,30,0.0 +16803,51,53,22,0.0 +16803,17,39,21,0.0 +16803,18,62.5,29,0.0 +16803,58,13.25,12,0.0 +16803,52,7,33,0.0 +16803,65,21.05,31,0.0 +16803,67,14,31,0.0 +16803,73,15,29,0.0 +16803,19,9.2,31,0.0 +16803,23,9,18,0.0 +16803,11,21,2,0.0 +16803,24,4.5,49,0.0 +16803,62,49.3,29,0.0 +16803,56,38,24,0.0 +16803,22,21,20,0.0 +16803,27,43.9,4,0.0 +16803,38,263.5,16,0.0 +16803,40,18.4,23,0.0 +16803,72,34.8,18,0.0 +16803,32,32,23,0.0 +16803,16,17.45,42,0.0 +16803,7,30,43,0.0 +16803,57,19.5,34,0.0 +16803,33,2.5,7,0.0 +16803,77,13,23,0.0 +16803,2,19,39,0.0 +16803,26,31.23,24,0.0 +16803,10,31,29,0.0 +16803,75,7.75,43,0.0 +16803,36,19,14,0.0 +16803,54,7.45,45,0.0 +16803,30,25.89,44,0.0 +16803,3,10,30,0.0 +16803,53,32.8,43,0.0 +16803,42,14,1,0.0 +16803,20,81,34,0.0 +16803,14,23.25,34,0.0 +16803,1,18,43,0.0 +16803,28,45.6,21,0.0 +16803,50,16.25,38,0.0 +16803,29,123.79,46,0.0 +16803,34,14,35,0.0 +16803,4,22,36,0.0 +16803,25,14,23,0.0 +16803,41,9.65,25,0.0 +16803,49,20,2,0.0 +16803,64,33.25,27,0.0 +16803,44,19.45,6,0.0 +16803,70,15,25,0.0 +16803,55,24,27,0.0 +16803,35,18,29,0.0 +16803,60,34,44,0.0 +16803,59,55,14,0.0 +16803,68,12.5,11,0.0 +16803,5,21.35,10,0.0 +16803,9,97,33,0.0 +16803,13,6,20,0.0 +16803,69,36,41,0.0 +16803,8,40,48,0.0 +16803,37,26,33,0.0 +16803,74,10,32,0.0 +16804,24,4.5,22,0.0 +16804,44,19.45,7,0.0 +16804,58,13.25,16,0.0 +16804,32,32,29,0.0 +16804,16,17.45,7,0.0 +16804,75,7.75,14,0.0 +16804,49,20,40,0.0 +16804,19,9.2,40,0.0 +16804,17,39,36,0.0 +16804,20,81,33,0.0 +16804,77,13,23,0.0 +16804,66,17,3,0.0 +16804,72,34.8,6,0.0 +16804,68,12.5,5,0.0 +16804,51,53,37,0.0 +16804,27,43.9,11,0.0 +16804,47,9.5,21,0.0 +16804,22,21,6,0.0 +16804,64,33.25,4,0.0 +16804,67,14,32,0.0 +16804,5,21.35,49,0.0 +16804,28,45.6,8,0.0 +16804,18,62.5,11,0.0 +16804,29,123.79,9,0.0 +16804,76,18,33,0.0 +16804,7,30,1,0.0 +16804,9,97,19,0.0 +16804,59,55,48,0.0 +16804,30,25.89,34,0.0 +16804,54,7.45,11,0.0 +16804,39,18,5,0.0 +16804,70,15,25,0.0 +16804,11,21,32,0.0 +16804,71,21.5,31,0.0 +16804,60,34,18,0.0 +16804,61,28.5,38,0.0 +16804,34,14,43,0.0 +16804,37,26,4,0.0 +16804,69,36,21,0.0 +16804,50,16.25,27,0.0 +16804,14,23.25,22,0.0 +16804,40,18.4,25,0.0 +16804,57,19.5,4,0.0 +16804,55,24,8,0.0 +16804,1,18,33,0.0 +16804,45,9.5,19,0.0 +16804,21,10,16,0.0 +16804,38,263.5,14,0.0 +16804,10,31,1,0.0 +16804,8,40,9,0.0 +16804,23,9,25,0.0 +16804,25,14,17,0.0 +16804,26,31.23,6,0.0 +16804,65,21.05,1,0.0 +16804,6,25,18,0.0 +16804,36,19,37,0.0 +16804,3,10,12,0.0 +16805,18,62.5,4,0.0 +16805,19,9.2,27,0.0 +16805,28,45.6,11,0.0 +16805,9,97,19,0.0 +16805,67,14,20,0.0 +16805,7,30,46,0.0 +16805,35,18,35,0.0 +16805,56,38,18,0.0 +16805,20,81,38,0.0 +16805,16,17.45,44,0.0 +16805,46,12,41,0.0 +16805,40,18.4,16,0.0 +16805,30,25.89,50,0.0 +16805,38,263.5,20,0.0 +16805,33,2.5,35,0.0 +16805,11,21,19,0.0 +16805,68,12.5,29,0.0 +16805,42,14,18,0.0 +16805,14,23.25,27,0.0 +16805,23,9,48,0.0 +16805,58,13.25,15,0.0 +16805,41,9.65,23,0.0 +16805,48,12.75,17,0.0 +16805,22,21,27,0.0 +16805,64,33.25,29,0.0 +16805,63,43.9,24,0.0 +16805,69,36,1,0.0 +16805,32,32,36,0.0 +16805,55,24,22,0.0 +16805,6,25,15,0.0 +16805,29,123.79,8,0.0 +16805,75,7.75,24,0.0 +16805,1,18,37,0.0 +16805,51,53,14,0.0 +16805,12,38,45,0.0 +16805,24,4.5,15,0.0 +16805,27,43.9,41,0.0 +16805,21,10,2,0.0 +16805,73,15,31,0.0 +16805,4,22,35,0.0 +16805,76,18,7,0.0 +16805,74,10,48,0.0 +16805,2,19,24,0.0 +16805,71,21.5,5,0.0 +16805,10,31,16,0.0 +16805,26,31.23,45,0.0 +16805,77,13,42,0.0 +16805,72,34.8,33,0.0 +16805,66,17,38,0.0 +16805,44,19.45,32,0.0 +16805,15,15.5,15,0.0 +16805,53,32.8,50,0.0 +16805,37,26,32,0.0 +16805,70,15,42,0.0 +16805,8,40,40,0.0 +16805,31,12.5,36,0.0 +16805,49,20,17,0.0 +16805,5,21.35,20,0.0 +16805,59,55,41,0.0 +16805,43,46,20,0.0 +16806,55,24,47,0.0 +16806,18,62.5,49,0.0 +16806,7,30,11,0.0 +16806,20,81,22,0.0 +16806,65,21.05,2,0.0 +16806,42,14,11,0.0 +16806,22,21,12,0.0 +16806,24,4.5,15,0.0 +16806,2,19,9,0.0 +16806,60,34,12,0.0 +16806,10,31,45,0.0 +16806,54,7.45,5,0.0 +16806,39,18,33,0.0 +16806,56,38,17,0.0 +16806,57,19.5,34,0.0 +16806,23,9,12,0.0 +16806,69,36,12,0.0 +16806,19,9.2,37,0.0 +16806,26,31.23,36,0.0 +16807,17,39,48,0.0 +16807,37,26,10,0.0 +16807,19,9.2,39,0.0 +16807,30,25.89,26,0.0 +16807,9,97,7,0.0 +16807,65,21.05,18,0.0 +16807,16,17.45,21,0.0 +16807,52,7,24,0.0 +16807,14,23.25,37,0.0 +16807,75,7.75,3,0.0 +16807,22,21,22,0.0 +16807,61,28.5,2,0.0 +16807,74,10,15,0.0 +16807,41,9.65,27,0.0 +16807,12,38,15,0.0 +16807,23,9,2,0.0 +16807,67,14,16,0.0 +16807,28,45.6,50,0.0 +16807,25,14,48,0.0 +16807,21,10,38,0.0 +16807,33,2.5,13,0.0 +16807,13,6,18,0.0 +16807,77,13,16,0.0 +16807,6,25,27,0.0 +16807,5,21.35,33,0.0 +16807,36,19,4,0.0 +16807,20,81,35,0.0 +16807,42,14,45,0.0 +16807,73,15,41,0.0 +16807,32,32,27,0.0 +16807,2,19,50,0.0 +16807,34,14,46,0.0 +16807,45,9.5,35,0.0 +16807,56,38,39,0.0 +16807,49,20,6,0.0 +16807,76,18,30,0.0 +16807,63,43.9,32,0.0 +16807,38,263.5,34,0.0 +16807,59,55,13,0.0 +16807,43,46,49,0.0 +16807,62,49.3,16,0.0 +16807,18,62.5,33,0.0 +16807,57,19.5,6,0.0 +16807,47,9.5,13,0.0 +16807,3,10,1,0.0 +16807,10,31,1,0.0 +16807,24,4.5,27,0.0 +16807,72,34.8,9,0.0 +16807,35,18,48,0.0 +16808,9,97,28,0.0 +16808,28,45.6,46,0.0 +16808,21,10,25,0.0 +16808,27,43.9,36,0.0 +16808,58,13.25,33,0.0 +16808,64,33.25,11,0.0 +16808,24,4.5,1,0.0 +16808,55,24,2,0.0 +16808,11,21,21,0.0 +16808,7,30,1,0.0 +16808,31,12.5,4,0.0 +16808,65,21.05,41,0.0 +16808,48,12.75,7,0.0 +16808,77,13,18,0.0 +16808,74,10,28,0.0 +16808,26,31.23,6,0.0 +16808,45,9.5,7,0.0 +16808,37,26,31,0.0 +16808,44,19.45,46,0.0 +16808,46,12,43,0.0 +16808,16,17.45,38,0.0 +16808,73,15,18,0.0 +16808,35,18,16,0.0 +16808,33,2.5,13,0.0 +16808,42,14,34,0.0 +16808,72,34.8,48,0.0 +16808,20,81,28,0.0 +16808,51,53,7,0.0 +16808,76,18,22,0.0 +16808,61,28.5,48,0.0 +16808,23,9,40,0.0 +16808,70,15,29,0.0 +16808,13,6,16,0.0 +16808,49,20,29,0.0 +16808,3,10,19,0.0 +16808,12,38,20,0.0 +16808,29,123.79,13,0.0 +16808,50,16.25,7,0.0 +16808,36,19,4,0.0 +16808,75,7.75,19,0.0 +16808,17,39,13,0.0 +16808,8,40,3,0.0 +16808,71,21.5,37,0.0 +16808,25,14,44,0.0 +16808,62,49.3,11,0.0 +16808,67,14,4,0.0 +16808,56,38,24,0.0 +16808,52,7,15,0.0 +16808,18,62.5,39,0.0 +16808,66,17,25,0.0 +16808,63,43.9,32,0.0 +16808,38,263.5,3,0.0 +16808,39,18,40,0.0 +16808,69,36,7,0.0 +16808,34,14,21,0.0 +16808,32,32,29,0.0 +16808,68,12.5,27,0.0 +16808,57,19.5,46,0.0 +16808,59,55,49,0.0 +16808,5,21.35,38,0.0 +16808,4,22,49,0.0 +16808,60,34,38,0.0 +16808,22,21,1,0.0 +16808,14,23.25,20,0.0 +16808,10,31,6,0.0 +16808,47,9.5,13,0.0 +16808,19,9.2,17,0.0 +16808,2,19,22,0.0 +16808,53,32.8,10,0.0 +16808,40,18.4,24,0.0 +16809,12,38,38,0.0 +16809,69,36,4,0.0 +16809,13,6,37,0.0 +16809,26,31.23,46,0.0 +16809,2,19,24,0.0 +16809,72,34.8,33,0.0 +16809,14,23.25,48,0.0 +16809,5,21.35,33,0.0 +16809,47,9.5,20,0.0 +16809,30,25.89,12,0.0 +16809,18,62.5,12,0.0 +16809,31,12.5,46,0.0 +16809,63,43.9,32,0.0 +16809,29,123.79,18,0.0 +16809,54,7.45,25,0.0 +16809,6,25,43,0.0 +16809,52,7,30,0.0 +16809,74,10,33,0.0 +16809,24,4.5,17,0.0 +16809,46,12,19,0.0 +16809,11,21,1,0.0 +16809,16,17.45,16,0.0 +16809,38,263.5,4,0.0 +16809,34,14,15,0.0 +16809,23,9,27,0.0 +16809,33,2.5,7,0.0 +16809,25,14,15,0.0 +16809,27,43.9,4,0.0 +16809,66,17,12,0.0 +16809,60,34,46,0.0 +16809,62,49.3,22,0.0 +16809,22,21,18,0.0 +16809,1,18,29,0.0 +16809,51,53,22,0.0 +16809,53,32.8,33,0.0 +16809,3,10,45,0.0 +16809,67,14,47,0.0 +16809,4,22,10,0.0 +16809,28,45.6,6,0.0 +16809,44,19.45,39,0.0 +16809,61,28.5,30,0.0 +16809,20,81,12,0.0 +16809,68,12.5,34,0.0 +16810,67,14,10,0.0 +16810,49,20,49,0.0 +16810,43,46,49,0.0 +16810,24,4.5,7,0.0 +16810,19,9.2,20,0.0 +16810,73,15,30,0.0 +16810,20,81,38,0.0 +16810,55,24,49,0.0 +16810,1,18,44,0.0 +16810,9,97,15,0.0 +16810,7,30,33,0.0 +16810,42,14,27,0.0 +16810,47,9.5,28,0.0 +16810,29,123.79,21,0.0 +16810,77,13,21,0.0 +16810,3,10,11,0.0 +16810,33,2.5,39,0.0 +16810,17,39,41,0.0 +16810,53,32.8,30,0.0 +16810,48,12.75,26,0.0 +16810,66,17,12,0.0 +16810,57,19.5,44,0.0 +16810,32,32,31,0.0 +16810,58,13.25,43,0.0 +16810,30,25.89,8,0.0 +16810,10,31,15,0.0 +16810,51,53,28,0.0 +16810,23,9,13,0.0 +16810,27,43.9,46,0.0 +16810,4,22,14,0.0 +16810,45,9.5,41,0.0 +16810,28,45.6,44,0.0 +16810,63,43.9,24,0.0 +16810,46,12,33,0.0 +16810,15,15.5,6,0.0 +16810,8,40,17,0.0 +16810,18,62.5,2,0.0 +16810,60,34,30,0.0 +16810,31,12.5,31,0.0 +16810,68,12.5,47,0.0 +16810,26,31.23,36,0.0 +16810,59,55,17,0.0 +16810,21,10,13,0.0 +16810,5,21.35,30,0.0 +16810,35,18,26,0.0 +16810,54,7.45,8,0.0 +16810,75,7.75,41,0.0 +16810,34,14,5,0.0 +16810,52,7,9,0.0 +16810,13,6,46,0.0 +16810,40,18.4,17,0.0 +16810,69,36,18,0.0 +16811,57,19.5,27,0.0 +16811,63,43.9,50,0.0 +16811,37,26,45,0.0 +16811,27,43.9,18,0.0 +16811,18,62.5,31,0.0 +16811,32,32,20,0.0 +16811,40,18.4,7,0.0 +16811,2,19,23,0.0 +16811,22,21,7,0.0 +16811,39,18,18,0.0 +16811,31,12.5,15,0.0 +16811,7,30,11,0.0 +16811,61,28.5,21,0.0 +16811,14,23.25,27,0.0 +16811,59,55,34,0.0 +16811,38,263.5,7,0.0 +16811,33,2.5,31,0.0 +16812,54,7.45,34,0.0 +16812,6,25,26,0.0 +16812,34,14,33,0.0 +16812,22,21,34,0.0 +16812,71,21.5,50,0.0 +16812,58,13.25,28,0.0 +16812,74,10,17,0.0 +16812,12,38,11,0.0 +16812,10,31,1,0.0 +16812,35,18,2,0.0 +16813,21,10,5,0.0 +16813,18,62.5,21,0.0 +16813,6,25,2,0.0 +16813,69,36,20,0.0 +16813,41,9.65,27,0.0 +16813,12,38,9,0.0 +16813,40,18.4,47,0.0 +16813,28,45.6,31,0.0 +16813,43,46,40,0.0 +16813,51,53,26,0.0 +16813,52,7,50,0.0 +16813,30,25.89,42,0.0 +16813,22,21,3,0.0 +16813,8,40,42,0.0 +16813,56,38,9,0.0 +16813,48,12.75,5,0.0 +16813,20,81,39,0.0 +16813,42,14,9,0.0 +16813,46,12,49,0.0 +16813,15,15.5,18,0.0 +16813,63,43.9,24,0.0 +16813,77,13,24,0.0 +16813,7,30,10,0.0 +16813,1,18,48,0.0 +16813,67,14,11,0.0 +16813,5,21.35,47,0.0 +16813,24,4.5,15,0.0 +16813,73,15,26,0.0 +16813,55,24,30,0.0 +16813,17,39,6,0.0 +16813,45,9.5,35,0.0 +16814,9,97,24,0.0 +16815,64,33.25,32,0.0 +16815,65,21.05,43,0.0 +16815,15,15.5,13,0.0 +16815,52,7,16,0.0 +16815,4,22,48,0.0 +16815,2,19,25,0.0 +16815,73,15,10,0.0 +16815,38,263.5,3,0.0 +16815,44,19.45,3,0.0 +16815,24,4.5,5,0.0 +16815,53,32.8,19,0.0 +16815,29,123.79,34,0.0 +16815,54,7.45,46,0.0 +16815,60,34,3,0.0 +16815,32,32,48,0.0 +16815,50,16.25,50,0.0 +16815,58,13.25,19,0.0 +16815,48,12.75,45,0.0 +16815,68,12.5,39,0.0 +16815,33,2.5,47,0.0 +16815,55,24,39,0.0 +16816,59,55,48,0.0 +16816,69,36,32,0.0 +16816,43,46,38,0.0 +16816,75,7.75,33,0.0 +16816,10,31,20,0.0 +16816,55,24,22,0.0 +16816,53,32.8,34,0.0 +16816,7,30,12,0.0 +16816,39,18,46,0.0 +16816,48,12.75,25,0.0 +16816,71,21.5,24,0.0 +16816,6,25,18,0.0 +16816,63,43.9,9,0.0 +16816,4,22,47,0.0 +16816,24,4.5,36,0.0 +16816,11,21,34,0.0 +16816,3,10,35,0.0 +16816,62,49.3,39,0.0 +16816,30,25.89,23,0.0 +16816,34,14,27,0.0 +16816,32,32,9,0.0 +16816,41,9.65,4,0.0 +16816,27,43.9,46,0.0 +16816,44,19.45,23,0.0 +16816,40,18.4,40,0.0 +16816,45,9.5,39,0.0 +16816,35,18,8,0.0 +16816,29,123.79,43,0.0 +16816,13,6,11,0.0 +16816,57,19.5,24,0.0 +16816,28,45.6,13,0.0 +16816,20,81,6,0.0 +16816,14,23.25,34,0.0 +16816,56,38,40,0.0 +16816,76,18,25,0.0 +16816,15,15.5,16,0.0 +16816,37,26,13,0.0 +16816,8,40,6,0.0 +16816,38,263.5,40,0.0 +16817,45,9.5,20,0.0 +16817,36,19,7,0.0 +16817,5,21.35,24,0.0 +16817,32,32,9,0.0 +16817,2,19,6,0.0 +16817,44,19.45,19,0.0 +16817,60,34,45,0.0 +16817,10,31,36,0.0 +16817,63,43.9,28,0.0 +16817,54,7.45,50,0.0 +16817,24,4.5,13,0.0 +16817,39,18,18,0.0 +16817,20,81,7,0.0 +16817,35,18,47,0.0 +16817,62,49.3,35,0.0 +16817,17,39,36,0.0 +16817,47,9.5,42,0.0 +16817,30,25.89,40,0.0 +16817,38,263.5,27,0.0 +16817,73,15,33,0.0 +16817,29,123.79,34,0.0 +16817,4,22,43,0.0 +16817,56,38,24,0.0 +16817,51,53,43,0.0 +16817,26,31.23,41,0.0 +16817,27,43.9,25,0.0 +16817,76,18,9,0.0 +16817,16,17.45,47,0.0 +16817,25,14,20,0.0 +16817,59,55,9,0.0 +16817,55,24,38,0.0 +16817,3,10,25,0.0 +16817,23,9,1,0.0 +16817,11,21,29,0.0 +16817,21,10,40,0.0 +16817,22,21,25,0.0 +16817,74,10,49,0.0 +16817,70,15,49,0.0 +16817,15,15.5,7,0.0 +16817,53,32.8,34,0.0 +16817,43,46,37,0.0 +16817,61,28.5,6,0.0 +16817,18,62.5,24,0.0 +16817,7,30,31,0.0 +16817,31,12.5,39,0.0 +16817,12,38,6,0.0 +16817,41,9.65,4,0.0 +16817,67,14,16,0.0 +16817,69,36,49,0.0 +16817,19,9.2,33,0.0 +16817,33,2.5,37,0.0 +16817,65,21.05,27,0.0 +16817,6,25,39,0.0 +16817,46,12,21,0.0 +16817,14,23.25,47,0.0 +16817,52,7,49,0.0 +16817,28,45.6,17,0.0 +16817,71,21.5,23,0.0 +16818,59,55,42,0.0 +16818,51,53,49,0.0 +16818,37,26,9,0.0 +16818,55,24,28,0.0 +16818,6,25,12,0.0 +16818,41,9.65,3,0.0 +16818,29,123.79,27,0.0 +16818,60,34,46,0.0 +16818,56,38,29,0.0 +16818,2,19,47,0.0 +16818,30,25.89,36,0.0 +16818,5,21.35,30,0.0 +16818,73,15,3,0.0 +16818,14,23.25,18,0.0 +16818,71,21.5,8,0.0 +16818,47,9.5,13,0.0 +16818,26,31.23,20,0.0 +16818,74,10,45,0.0 +16818,76,18,42,0.0 +16818,27,43.9,38,0.0 +16818,50,16.25,12,0.0 +16818,57,19.5,45,0.0 +16818,28,45.6,36,0.0 +16818,36,19,10,0.0 +16818,53,32.8,30,0.0 +16818,43,46,2,0.0 +16818,12,38,32,0.0 +16818,75,7.75,25,0.0 +16818,62,49.3,14,0.0 +16818,65,21.05,14,0.0 +16818,25,14,42,0.0 +16818,40,18.4,20,0.0 +16818,1,18,30,0.0 +16818,45,9.5,31,0.0 +16818,13,6,42,0.0 +16818,31,12.5,49,0.0 +16818,34,14,2,0.0 +16818,35,18,20,0.0 +16818,54,7.45,6,0.0 +16818,64,33.25,14,0.0 +16818,52,7,5,0.0 +16818,10,31,32,0.0 +16818,67,14,47,0.0 +16818,72,34.8,28,0.0 +16818,70,15,39,0.0 +16818,3,10,40,0.0 +16818,39,18,31,0.0 +16818,24,4.5,5,0.0 +16818,69,36,17,0.0 +16818,22,21,24,0.0 +16818,23,9,41,0.0 +16818,8,40,28,0.0 +16818,18,62.5,13,0.0 +16818,61,28.5,36,0.0 +16818,77,13,25,0.0 +16818,9,97,38,0.0 +16818,48,12.75,3,0.0 +16818,19,9.2,34,0.0 +16818,58,13.25,12,0.0 +16818,20,81,29,0.0 +16818,16,17.45,4,0.0 +16818,44,19.45,49,0.0 +16819,53,32.8,39,0.0 +16819,8,40,25,0.0 +16819,35,18,36,0.0 +16819,42,14,42,0.0 +16819,66,17,9,0.0 +16819,33,2.5,49,0.0 +16819,69,36,34,0.0 +16819,25,14,13,0.0 +16819,2,19,40,0.0 +16819,34,14,32,0.0 +16819,48,12.75,2,0.0 +16819,44,19.45,27,0.0 +16819,7,30,34,0.0 +16819,54,7.45,9,0.0 +16819,41,9.65,26,0.0 +16819,64,33.25,1,0.0 +16819,56,38,19,0.0 +16819,9,97,33,0.0 +16819,38,263.5,1,0.0 +16819,73,15,19,0.0 +16819,40,18.4,7,0.0 +16819,10,31,19,0.0 +16819,19,9.2,38,0.0 +16819,70,15,29,0.0 +16819,26,31.23,37,0.0 +16819,24,4.5,43,0.0 +16819,62,49.3,11,0.0 +16819,77,13,49,0.0 +16819,55,24,30,0.0 +16819,39,18,2,0.0 +16819,37,26,14,0.0 +16819,28,45.6,38,0.0 +16819,14,23.25,28,0.0 +16819,5,21.35,15,0.0 +16819,27,43.9,31,0.0 +16819,43,46,33,0.0 +16819,36,19,45,0.0 +16819,61,28.5,14,0.0 +16819,52,7,1,0.0 +16819,74,10,11,0.0 +16819,72,34.8,33,0.0 +16819,68,12.5,9,0.0 +16819,46,12,22,0.0 +16819,50,16.25,22,0.0 +16819,3,10,39,0.0 +16819,75,7.75,31,0.0 +16819,71,21.5,4,0.0 +16819,59,55,34,0.0 +16819,11,21,20,0.0 +16819,18,62.5,31,0.0 +16820,7,30,15,0.0 +16820,37,26,39,0.0 +16820,9,97,32,0.0 +16820,8,40,50,0.0 +16821,34,14,17,0.0 +16821,75,7.75,28,0.0 +16821,40,18.4,19,0.0 +16821,19,9.2,13,0.0 +16821,42,14,46,0.0 +16821,6,25,14,0.0 +16821,62,49.3,20,0.0 +16821,3,10,7,0.0 +16821,39,18,20,0.0 +16821,47,9.5,31,0.0 +16821,32,32,5,0.0 +16821,22,21,22,0.0 +16821,53,32.8,22,0.0 +16821,7,30,17,0.0 +16821,11,21,45,0.0 +16821,56,38,34,0.0 +16821,9,97,5,0.0 +16821,2,19,26,0.0 +16821,29,123.79,2,0.0 +16821,70,15,50,0.0 +16821,66,17,39,0.0 +16821,54,7.45,15,0.0 +16821,73,15,37,0.0 +16821,33,2.5,14,0.0 +16821,21,10,40,0.0 +16821,71,21.5,32,0.0 +16821,30,25.89,35,0.0 +16821,23,9,6,0.0 +16821,59,55,4,0.0 +16821,58,13.25,49,0.0 +16821,8,40,22,0.0 +16821,28,45.6,16,0.0 +16821,5,21.35,44,0.0 +16821,57,19.5,16,0.0 +16821,74,10,34,0.0 +16821,49,20,42,0.0 +16821,60,34,39,0.0 +16822,12,38,16,0.0 +16822,6,25,12,0.0 +16822,7,30,34,0.0 +16822,40,18.4,7,0.0 +16822,47,9.5,15,0.0 +16822,67,14,37,0.0 +16822,14,23.25,36,0.0 +16822,53,32.8,31,0.0 +16822,35,18,26,0.0 +16822,9,97,6,0.0 +16822,29,123.79,5,0.0 +16822,46,12,39,0.0 +16822,59,55,26,0.0 +16822,63,43.9,13,0.0 +16822,4,22,38,0.0 +16822,11,21,40,0.0 +16822,57,19.5,36,0.0 +16822,42,14,27,0.0 +16822,56,38,32,0.0 +16822,60,34,50,0.0 +16822,26,31.23,19,0.0 +16822,66,17,15,0.0 +16822,8,40,48,0.0 +16822,27,43.9,6,0.0 +16822,77,13,46,0.0 +16822,23,9,42,0.0 +16822,61,28.5,13,0.0 +16822,64,33.25,31,0.0 +16822,24,4.5,24,0.0 +16822,71,21.5,31,0.0 +16822,1,18,39,0.0 +16822,65,21.05,18,0.0 +16822,38,263.5,1,0.0 +16822,44,19.45,34,0.0 +16822,39,18,32,0.0 +16822,76,18,14,0.0 +16822,50,16.25,23,0.0 +16822,5,21.35,19,0.0 +16822,36,19,20,0.0 +16822,16,17.45,23,0.0 +16822,20,81,38,0.0 +16822,55,24,46,0.0 +16822,37,26,25,0.0 +16822,69,36,22,0.0 +16822,13,6,1,0.0 +16822,75,7.75,1,0.0 +16822,62,49.3,6,0.0 +16822,18,62.5,31,0.0 +16822,30,25.89,46,0.0 +16822,73,15,38,0.0 +16822,2,19,22,0.0 +16822,45,9.5,22,0.0 +16822,15,15.5,41,0.0 +16822,68,12.5,40,0.0 +16822,74,10,38,0.0 +16822,33,2.5,46,0.0 +16822,28,45.6,36,0.0 +16822,22,21,32,0.0 +16822,51,53,24,0.0 +16822,72,34.8,4,0.0 +16822,49,20,43,0.0 +16822,41,9.65,8,0.0 +16822,43,46,13,0.0 +16822,48,12.75,27,0.0 +16823,8,40,45,0.0 +16823,69,36,39,0.0 +16823,68,12.5,45,0.0 +16823,23,9,36,0.0 +16823,42,14,47,0.0 +16823,34,14,18,0.0 +16823,32,32,3,0.0 +16823,39,18,17,0.0 +16823,45,9.5,25,0.0 +16823,59,55,42,0.0 +16823,38,263.5,44,0.0 +16823,18,62.5,9,0.0 +16823,74,10,18,0.0 +16823,19,9.2,49,0.0 +16823,4,22,8,0.0 +16823,24,4.5,27,0.0 +16823,76,18,15,0.0 +16823,30,25.89,40,0.0 +16823,75,7.75,41,0.0 +16823,20,81,26,0.0 +16823,64,33.25,37,0.0 +16823,43,46,21,0.0 +16823,44,19.45,10,0.0 +16823,26,31.23,10,0.0 +16823,50,16.25,14,0.0 +16823,13,6,15,0.0 +16823,70,15,39,0.0 +16823,55,24,30,0.0 +16823,22,21,8,0.0 +16823,63,43.9,16,0.0 +16823,11,21,32,0.0 +16823,72,34.8,22,0.0 +16823,65,21.05,13,0.0 +16824,11,21,45,0.0 +16824,44,19.45,37,0.0 +16824,71,21.5,33,0.0 +16824,40,18.4,21,0.0 +16824,57,19.5,2,0.0 +16824,29,123.79,9,0.0 +16824,22,21,44,0.0 +16824,7,30,30,0.0 +16824,38,263.5,27,0.0 +16824,17,39,36,0.0 +16824,28,45.6,39,0.0 +16824,69,36,10,0.0 +16824,27,43.9,47,0.0 +16824,48,12.75,33,0.0 +16824,55,24,2,0.0 +16824,10,31,46,0.0 +16824,31,12.5,28,0.0 +16824,45,9.5,11,0.0 +16824,25,14,21,0.0 +16824,51,53,46,0.0 +16824,15,15.5,38,0.0 +16824,76,18,49,0.0 +16824,34,14,20,0.0 +16824,63,43.9,45,0.0 +16824,61,28.5,13,0.0 +16824,30,25.89,50,0.0 +16824,50,16.25,28,0.0 +16824,58,13.25,2,0.0 +16824,72,34.8,37,0.0 +16824,66,17,15,0.0 +16824,73,15,2,0.0 +16824,23,9,20,0.0 +16825,36,19,11,0.0 +16825,54,7.45,21,0.0 +16825,29,123.79,3,0.0 +16825,38,263.5,48,0.0 +16825,70,15,13,0.0 +16825,40,18.4,48,0.0 +16825,52,7,6,0.0 +16825,67,14,18,0.0 +16825,74,10,34,0.0 +16825,59,55,47,0.0 +16825,24,4.5,38,0.0 +16825,12,38,49,0.0 +16825,71,21.5,3,0.0 +16825,10,31,20,0.0 +16825,58,13.25,15,0.0 +16825,11,21,41,0.0 +16825,16,17.45,37,0.0 +16825,37,26,21,0.0 +16825,72,34.8,16,0.0 +16825,18,62.5,32,0.0 +16825,63,43.9,12,0.0 +16826,72,34.8,6,0.0 +16826,24,4.5,16,0.0 +16826,21,10,45,0.0 +16826,44,19.45,38,0.0 +16826,70,15,8,0.0 +16826,56,38,20,0.0 +16826,20,81,17,0.0 +16826,14,23.25,29,0.0 +16826,22,21,5,0.0 +16826,25,14,35,0.0 +16826,74,10,32,0.0 +16826,13,6,34,0.0 +16826,58,13.25,50,0.0 +16826,28,45.6,19,0.0 +16826,45,9.5,37,0.0 +16826,54,7.45,11,0.0 +16826,65,21.05,9,0.0 +16826,18,62.5,45,0.0 +16826,77,13,36,0.0 +16826,33,2.5,49,0.0 +16826,73,15,26,0.0 +16826,67,14,21,0.0 +16826,37,26,4,0.0 +16826,48,12.75,37,0.0 +16826,11,21,49,0.0 +16826,30,25.89,16,0.0 +16826,32,32,41,0.0 +16826,61,28.5,3,0.0 +16826,52,7,15,0.0 +16826,64,33.25,10,0.0 +16826,39,18,6,0.0 +16826,57,19.5,16,0.0 +16826,17,39,36,0.0 +16826,43,46,43,0.0 +16826,68,12.5,8,0.0 +16826,15,15.5,47,0.0 +16826,29,123.79,4,0.0 +16826,71,21.5,10,0.0 +16826,8,40,47,0.0 +16826,63,43.9,8,0.0 +16826,60,34,14,0.0 +16826,16,17.45,5,0.0 +16826,41,9.65,5,0.0 +16826,3,10,6,0.0 +16826,66,17,39,0.0 +16826,34,14,30,0.0 +16826,76,18,49,0.0 +16826,19,9.2,1,0.0 +16826,9,97,4,0.0 +16826,7,30,45,0.0 +16826,26,31.23,23,0.0 +16826,40,18.4,44,0.0 +16826,51,53,20,0.0 +16826,47,9.5,20,0.0 +16826,46,12,26,0.0 +16826,55,24,8,0.0 +16826,10,31,15,0.0 +16827,72,34.8,31,0.0 +16827,9,97,10,0.0 +16827,31,12.5,3,0.0 +16827,18,62.5,2,0.0 +16827,53,32.8,35,0.0 +16827,33,2.5,41,0.0 +16827,47,9.5,3,0.0 +16827,57,19.5,38,0.0 +16827,23,9,38,0.0 +16827,4,22,8,0.0 +16827,22,21,3,0.0 +16827,25,14,48,0.0 +16827,67,14,21,0.0 +16827,27,43.9,36,0.0 +16827,2,19,25,0.0 +16827,51,53,20,0.0 +16827,48,12.75,22,0.0 +16827,12,38,16,0.0 +16827,71,21.5,37,0.0 +16827,45,9.5,4,0.0 +16827,73,15,33,0.0 +16827,69,36,24,0.0 +16827,40,18.4,5,0.0 +16827,16,17.45,24,0.0 +16827,39,18,39,0.0 +16827,19,9.2,41,0.0 +16827,5,21.35,14,0.0 +16827,77,13,24,0.0 +16827,74,10,16,0.0 +16827,42,14,24,0.0 +16827,14,23.25,20,0.0 +16827,62,49.3,46,0.0 +16827,37,26,35,0.0 +16827,58,13.25,41,0.0 +16827,68,12.5,46,0.0 +16827,46,12,39,0.0 +16827,59,55,10,0.0 +16827,24,4.5,40,0.0 +16827,38,263.5,20,0.0 +16827,20,81,50,0.0 +16827,56,38,20,0.0 +16827,30,25.89,35,0.0 +16827,65,21.05,43,0.0 +16827,13,6,25,0.0 +16827,64,33.25,13,0.0 +16827,15,15.5,50,0.0 +16827,1,18,31,0.0 +16827,34,14,46,0.0 +16827,11,21,25,0.0 +16827,55,24,30,0.0 +16827,28,45.6,21,0.0 +16827,36,19,43,0.0 +16828,77,13,26,0.0 +16828,62,49.3,44,0.0 +16828,23,9,29,0.0 +16828,72,34.8,4,0.0 +16828,70,15,17,0.0 +16828,47,9.5,33,0.0 +16828,55,24,17,0.0 +16828,32,32,45,0.0 +16828,22,21,45,0.0 +16828,17,39,20,0.0 +16828,26,31.23,24,0.0 +16828,66,17,7,0.0 +16828,60,34,45,0.0 +16828,75,7.75,14,0.0 +16828,13,6,22,0.0 +16828,30,25.89,35,0.0 +16828,21,10,26,0.0 +16828,31,12.5,47,0.0 +16828,68,12.5,47,0.0 +16828,6,25,9,0.0 +16828,38,263.5,42,0.0 +16828,20,81,10,0.0 +16828,24,4.5,43,0.0 +16828,49,20,26,0.0 +16828,58,13.25,29,0.0 +16828,41,9.65,11,0.0 +16828,59,55,50,0.0 +16828,40,18.4,16,0.0 +16828,45,9.5,5,0.0 +16828,63,43.9,25,0.0 +16828,34,14,1,0.0 +16828,11,21,10,0.0 +16828,54,7.45,44,0.0 +16828,57,19.5,36,0.0 +16828,29,123.79,3,0.0 +16828,67,14,28,0.0 +16828,1,18,21,0.0 +16828,39,18,35,0.0 +16828,36,19,3,0.0 +16828,28,45.6,36,0.0 +16828,50,16.25,14,0.0 +16828,43,46,11,0.0 +16828,64,33.25,12,0.0 +16828,15,15.5,23,0.0 +16828,12,38,20,0.0 +16828,4,22,44,0.0 +16828,25,14,47,0.0 +16828,14,23.25,36,0.0 +16828,71,21.5,35,0.0 +16828,27,43.9,30,0.0 +16828,7,30,27,0.0 +16828,10,31,15,0.0 +16828,44,19.45,7,0.0 +16828,33,2.5,23,0.0 +16828,46,12,2,0.0 +16828,56,38,2,0.0 +16828,8,40,1,0.0 +16828,69,36,50,0.0 +16828,19,9.2,29,0.0 +16828,53,32.8,28,0.0 +16828,73,15,46,0.0 +16828,51,53,42,0.0 +16828,74,10,35,0.0 +16828,76,18,47,0.0 +16828,18,62.5,45,0.0 +16828,35,18,41,0.0 +16828,2,19,23,0.0 +16828,61,28.5,46,0.0 +16828,3,10,27,0.0 +16828,52,7,47,0.0 +16828,37,26,33,0.0 +16828,48,12.75,10,0.0 +16828,42,14,11,0.0 +16829,75,7.75,39,0.0 +16829,42,14,35,0.0 +16829,31,12.5,39,0.0 +16829,22,21,47,0.0 +16829,15,15.5,28,0.0 +16829,45,9.5,13,0.0 +16829,37,26,41,0.0 +16829,59,55,15,0.0 +16829,34,14,50,0.0 +16829,73,15,21,0.0 +16829,76,18,25,0.0 +16829,23,9,39,0.0 +16829,62,49.3,43,0.0 +16829,52,7,50,0.0 +16829,77,13,37,0.0 +16829,72,34.8,13,0.0 +16829,43,46,2,0.0 +16829,58,13.25,10,0.0 +16829,47,9.5,32,0.0 +16829,40,18.4,29,0.0 +16829,27,43.9,6,0.0 +16829,39,18,27,0.0 +16829,12,38,16,0.0 +16829,13,6,1,0.0 +16829,38,263.5,44,0.0 +16829,8,40,14,0.0 +16829,18,62.5,43,0.0 +16829,48,12.75,10,0.0 +16829,41,9.65,25,0.0 +16829,16,17.45,8,0.0 +16829,21,10,47,0.0 +16829,1,18,32,0.0 +16829,10,31,42,0.0 +16829,28,45.6,31,0.0 +16829,71,21.5,32,0.0 +16829,29,123.79,37,0.0 +16829,69,36,18,0.0 +16829,2,19,6,0.0 +16829,63,43.9,43,0.0 +16829,14,23.25,50,0.0 +16830,76,18,45,0.0 +16830,19,9.2,1,0.0 +16830,32,32,1,0.0 +16830,3,10,42,0.0 +16830,20,81,17,0.0 +16830,34,14,14,0.0 +16830,6,25,9,0.0 +16830,70,15,32,0.0 +16830,14,23.25,28,0.0 +16830,51,53,46,0.0 +16830,2,19,6,0.0 +16830,40,18.4,16,0.0 +16830,68,12.5,41,0.0 +16830,54,7.45,1,0.0 +16830,44,19.45,41,0.0 +16830,48,12.75,1,0.0 +16830,22,21,34,0.0 +16830,52,7,8,0.0 +16830,17,39,47,0.0 +16830,58,13.25,44,0.0 +16830,8,40,15,0.0 +16830,75,7.75,24,0.0 +16830,21,10,10,0.0 +16830,13,6,47,0.0 +16830,27,43.9,34,0.0 +16830,25,14,37,0.0 +16830,41,9.65,48,0.0 +16830,55,24,20,0.0 +16830,67,14,30,0.0 +16830,31,12.5,29,0.0 +16830,64,33.25,15,0.0 +16830,33,2.5,38,0.0 +16830,28,45.6,44,0.0 +16830,12,38,7,0.0 +16830,77,13,25,0.0 +16830,5,21.35,42,0.0 +16830,18,62.5,39,0.0 +16830,7,30,3,0.0 +16830,26,31.23,27,0.0 +16830,62,49.3,7,0.0 +16830,43,46,50,0.0 +16830,29,123.79,45,0.0 +16830,23,9,28,0.0 +16830,65,21.05,26,0.0 +16830,59,55,2,0.0 +16830,73,15,24,0.0 +16830,72,34.8,31,0.0 +16830,30,25.89,19,0.0 +16830,47,9.5,7,0.0 +16831,52,7,50,0.0 +16831,34,14,7,0.0 +16831,25,14,47,0.0 +16831,39,18,48,0.0 +16831,4,22,11,0.0 +16831,60,34,32,0.0 +16831,36,19,48,0.0 +16831,26,31.23,34,0.0 +16831,66,17,1,0.0 +16831,27,43.9,43,0.0 +16831,1,18,33,0.0 +16831,63,43.9,18,0.0 +16831,55,24,19,0.0 +16831,47,9.5,26,0.0 +16831,19,9.2,6,0.0 +16831,29,123.79,7,0.0 +16831,65,21.05,42,0.0 +16831,18,62.5,19,0.0 +16831,15,15.5,43,0.0 +16831,75,7.75,16,0.0 +16831,33,2.5,17,0.0 +16831,61,28.5,32,0.0 +16831,71,21.5,26,0.0 +16831,2,19,17,0.0 +16831,13,6,50,0.0 +16831,48,12.75,12,0.0 +16831,69,36,7,0.0 +16831,5,21.35,50,0.0 +16831,44,19.45,22,0.0 +16831,28,45.6,45,0.0 +16831,32,32,25,0.0 +16831,10,31,14,0.0 +16831,74,10,14,0.0 +16831,64,33.25,3,0.0 +16831,53,32.8,27,0.0 +16831,37,26,20,0.0 +16831,38,263.5,11,0.0 +16831,3,10,14,0.0 +16831,21,10,23,0.0 +16832,31,12.5,17,0.0 +16832,9,97,11,0.0 +16832,72,34.8,3,0.0 +16832,11,21,40,0.0 +16832,68,12.5,44,0.0 +16832,64,33.25,19,0.0 +16832,24,4.5,34,0.0 +16832,49,20,48,0.0 +16832,22,21,44,0.0 +16832,69,36,43,0.0 +16832,26,31.23,38,0.0 +16832,17,39,4,0.0 +16832,44,19.45,8,0.0 +16832,30,25.89,40,0.0 +16832,6,25,33,0.0 +16833,74,10,26,0.0 +16833,66,17,19,0.0 +16833,36,19,9,0.0 +16833,33,2.5,8,0.0 +16833,20,81,38,0.0 +16833,58,13.25,31,0.0 +16833,5,21.35,17,0.0 +16833,55,24,20,0.0 +16833,30,25.89,12,0.0 +16833,41,9.65,35,0.0 +16833,38,263.5,50,0.0 +16833,51,53,26,0.0 +16833,75,7.75,48,0.0 +16833,40,18.4,26,0.0 +16833,29,123.79,7,0.0 +16833,3,10,10,0.0 +16833,65,21.05,16,0.0 +16833,61,28.5,36,0.0 +16833,22,21,25,0.0 +16833,56,38,44,0.0 +16833,10,31,39,0.0 +16833,64,33.25,8,0.0 +16833,35,18,26,0.0 +16833,15,15.5,44,0.0 +16833,11,21,39,0.0 +16833,21,10,38,0.0 +16833,34,14,6,0.0 +16833,73,15,27,0.0 +16833,9,97,47,0.0 +16833,18,62.5,44,0.0 +16833,12,38,13,0.0 +16833,32,32,23,0.0 +16833,7,30,4,0.0 +16833,23,9,7,0.0 +16833,17,39,49,0.0 +16833,53,32.8,47,0.0 +16833,54,7.45,26,0.0 +16833,37,26,46,0.0 +16833,50,16.25,4,0.0 +16833,44,19.45,10,0.0 +16833,67,14,48,0.0 +16833,2,19,37,0.0 +16833,59,55,39,0.0 +16833,14,23.25,1,0.0 +16833,57,19.5,21,0.0 +16833,1,18,47,0.0 +16834,53,32.8,37,0.0 +16834,44,19.45,44,0.0 +16834,45,9.5,32,0.0 +16834,6,25,27,0.0 +16834,71,21.5,34,0.0 +16834,36,19,37,0.0 +16834,30,25.89,47,0.0 +16834,9,97,29,0.0 +16834,5,21.35,19,0.0 +16834,50,16.25,12,0.0 +16834,16,17.45,26,0.0 +16834,59,55,21,0.0 +16834,20,81,4,0.0 +16834,65,21.05,50,0.0 +16834,19,9.2,46,0.0 +16834,46,12,32,0.0 +16834,72,34.8,27,0.0 +16834,29,123.79,30,0.0 +16834,3,10,8,0.0 +16834,34,14,2,0.0 +16834,73,15,13,0.0 +16834,55,24,11,0.0 +16834,23,9,15,0.0 +16834,40,18.4,21,0.0 +16834,27,43.9,28,0.0 +16834,11,21,25,0.0 +16834,18,62.5,50,0.0 +16834,54,7.45,31,0.0 +16834,77,13,42,0.0 +16834,58,13.25,18,0.0 +16834,69,36,44,0.0 +16834,49,20,33,0.0 +16834,32,32,18,0.0 +16834,41,9.65,17,0.0 +16834,10,31,28,0.0 +16834,62,49.3,2,0.0 +16834,15,15.5,49,0.0 +16834,61,28.5,3,0.0 +16834,42,14,44,0.0 +16834,37,26,24,0.0 +16834,60,34,17,0.0 +16834,63,43.9,39,0.0 +16834,76,18,40,0.0 +16834,52,7,39,0.0 +16834,21,10,11,0.0 +16834,33,2.5,24,0.0 +16834,17,39,48,0.0 +16834,68,12.5,38,0.0 +16834,39,18,22,0.0 +16834,14,23.25,33,0.0 +16835,66,17,32,0.0 +16835,65,21.05,13,0.0 +16835,52,7,45,0.0 +16835,46,12,32,0.0 +16835,26,31.23,49,0.0 +16835,18,62.5,42,0.0 +16835,59,55,41,0.0 +16835,76,18,19,0.0 +16835,17,39,9,0.0 +16835,39,18,49,0.0 +16835,72,34.8,43,0.0 +16835,54,7.45,44,0.0 +16835,33,2.5,36,0.0 +16835,31,12.5,28,0.0 +16835,5,21.35,36,0.0 +16835,57,19.5,47,0.0 +16835,71,21.5,12,0.0 +16835,27,43.9,43,0.0 +16835,69,36,22,0.0 +16835,63,43.9,32,0.0 +16835,77,13,20,0.0 +16836,3,10,35,0.0 +16836,60,34,47,0.0 +16836,28,45.6,42,0.0 +16836,58,13.25,10,0.0 +16836,14,23.25,42,0.0 +16836,25,14,40,0.0 +16836,29,123.79,5,0.0 +16836,75,7.75,15,0.0 +16836,51,53,44,0.0 +16836,11,21,20,0.0 +16836,15,15.5,18,0.0 +16836,47,9.5,35,0.0 +16836,54,7.45,11,0.0 +16836,27,43.9,18,0.0 +16836,40,18.4,5,0.0 +16836,71,21.5,4,0.0 +16836,44,19.45,46,0.0 +16836,18,62.5,6,0.0 +16836,16,17.45,10,0.0 +16836,26,31.23,26,0.0 +16836,56,38,3,0.0 +16836,61,28.5,29,0.0 +16836,50,16.25,50,0.0 +16836,19,9.2,33,0.0 +16836,10,31,16,0.0 +16836,76,18,14,0.0 +16836,39,18,35,0.0 +16836,65,21.05,27,0.0 +16836,13,6,13,0.0 +16836,53,32.8,33,0.0 +16836,70,15,36,0.0 +16836,67,14,41,0.0 +16836,22,21,39,0.0 +16836,24,4.5,12,0.0 +16836,12,38,9,0.0 +16836,1,18,13,0.0 +16836,7,30,16,0.0 +16836,5,21.35,5,0.0 +16836,64,33.25,1,0.0 +16836,52,7,17,0.0 +16836,21,10,29,0.0 +16836,23,9,18,0.0 +16836,77,13,25,0.0 +16836,42,14,26,0.0 +16836,9,97,2,0.0 +16836,38,263.5,4,0.0 +16836,66,17,27,0.0 +16836,8,40,45,0.0 +16836,49,20,40,0.0 +16836,48,12.75,49,0.0 +16836,20,81,43,0.0 +16836,2,19,15,0.0 +16836,46,12,19,0.0 +16836,41,9.65,4,0.0 +16836,59,55,45,0.0 +16836,31,12.5,18,0.0 +16836,17,39,37,0.0 +16836,36,19,4,0.0 +16836,55,24,33,0.0 +16836,62,49.3,1,0.0 +16836,73,15,44,0.0 +16836,32,32,22,0.0 +16837,2,19,42,0.0 +16837,73,15,39,0.0 +16837,46,12,46,0.0 +16837,25,14,42,0.0 +16837,13,6,10,0.0 +16837,57,19.5,6,0.0 +16837,32,32,3,0.0 +16837,8,40,37,0.0 +16837,50,16.25,43,0.0 +16837,39,18,8,0.0 +16837,71,21.5,12,0.0 +16837,15,15.5,17,0.0 +16837,28,45.6,25,0.0 +16837,5,21.35,6,0.0 +16837,52,7,11,0.0 +16837,75,7.75,22,0.0 +16837,69,36,5,0.0 +16837,26,31.23,24,0.0 +16837,16,17.45,40,0.0 +16837,61,28.5,10,0.0 +16837,29,123.79,40,0.0 +16837,47,9.5,28,0.0 +16837,62,49.3,48,0.0 +16837,21,10,15,0.0 +16837,55,24,9,0.0 +16837,27,43.9,21,0.0 +16837,23,9,39,0.0 +16837,36,19,24,0.0 +16837,65,21.05,42,0.0 +16837,54,7.45,30,0.0 +16837,60,34,28,0.0 +16837,59,55,12,0.0 +16837,10,31,41,0.0 +16837,20,81,39,0.0 +16837,14,23.25,2,0.0 +16837,66,17,7,0.0 +16837,7,30,6,0.0 +16837,3,10,17,0.0 +16837,51,53,3,0.0 +16837,67,14,44,0.0 +16837,9,97,22,0.0 +16837,77,13,30,0.0 +16837,53,32.8,2,0.0 +16837,35,18,24,0.0 +16837,48,12.75,12,0.0 +16837,43,46,46,0.0 +16837,30,25.89,39,0.0 +16837,37,26,41,0.0 +16837,12,38,17,0.0 +16837,38,263.5,30,0.0 +16838,42,14,39,0.0 +16838,65,21.05,38,0.0 +16838,14,23.25,38,0.0 +16838,34,14,36,0.0 +16838,40,18.4,11,0.0 +16838,1,18,28,0.0 +16838,21,10,9,0.0 +16838,23,9,31,0.0 +16838,39,18,46,0.0 +16838,64,33.25,3,0.0 +16838,71,21.5,24,0.0 +16838,67,14,18,0.0 +16838,44,19.45,42,0.0 +16838,22,21,37,0.0 +16838,10,31,20,0.0 +16838,60,34,12,0.0 +16838,2,19,43,0.0 +16838,5,21.35,21,0.0 +16838,47,9.5,4,0.0 +16838,20,81,3,0.0 +16838,41,9.65,4,0.0 +16838,58,13.25,17,0.0 +16838,24,4.5,11,0.0 +16838,63,43.9,4,0.0 +16838,11,21,40,0.0 +16838,51,53,3,0.0 +16838,55,24,8,0.0 +16838,32,32,47,0.0 +16838,46,12,49,0.0 +16838,68,12.5,46,0.0 +16838,76,18,48,0.0 +16838,45,9.5,42,0.0 +16838,29,123.79,29,0.0 +16838,7,30,14,0.0 +16838,31,12.5,8,0.0 +16838,30,25.89,21,0.0 +16838,43,46,5,0.0 +16838,28,45.6,12,0.0 +16838,59,55,11,0.0 +16838,66,17,30,0.0 +16838,27,43.9,3,0.0 +16838,12,38,22,0.0 +16838,56,38,11,0.0 +16838,3,10,21,0.0 +16838,53,32.8,49,0.0 +16838,50,16.25,29,0.0 +16838,69,36,33,0.0 +16838,48,12.75,37,0.0 +16838,38,263.5,9,0.0 +16838,77,13,50,0.0 +16838,57,19.5,50,0.0 +16838,61,28.5,49,0.0 +16838,13,6,39,0.0 +16838,25,14,7,0.0 +16838,8,40,36,0.0 +16838,16,17.45,47,0.0 +16838,62,49.3,19,0.0 +16838,6,25,25,0.0 +16838,49,20,5,0.0 +16838,35,18,31,0.0 +16838,26,31.23,47,0.0 +16838,4,22,1,0.0 +16838,18,62.5,41,0.0 +16838,15,15.5,29,0.0 +16838,70,15,6,0.0 +16838,74,10,22,0.0 +16838,72,34.8,11,0.0 +16838,36,19,41,0.0 +16838,75,7.75,34,0.0 +16838,54,7.45,40,0.0 +16838,73,15,9,0.0 +16838,17,39,19,0.0 +16838,9,97,37,0.0 +16839,37,26,26,0.0 +16839,11,21,37,0.0 +16839,28,45.6,23,0.0 +16839,8,40,33,0.0 +16839,4,22,28,0.0 +16839,62,49.3,20,0.0 +16839,75,7.75,6,0.0 +16839,22,21,4,0.0 +16839,5,21.35,36,0.0 +16839,12,38,49,0.0 +16839,10,31,30,0.0 +16839,27,43.9,30,0.0 +16839,16,17.45,30,0.0 +16839,3,10,25,0.0 +16839,70,15,50,0.0 +16840,58,13.25,26,0.0 +16840,5,21.35,25,0.0 +16840,53,32.8,48,0.0 +16840,66,17,39,0.0 +16840,27,43.9,1,0.0 +16840,1,18,19,0.0 +16840,12,38,1,0.0 +16840,31,12.5,5,0.0 +16840,14,23.25,13,0.0 +16840,22,21,48,0.0 +16841,61,28.5,14,0.0 +16841,70,15,19,0.0 +16841,43,46,6,0.0 +16841,7,30,41,0.0 +16841,25,14,42,0.0 +16841,75,7.75,6,0.0 +16841,20,81,3,0.0 +16841,69,36,47,0.0 +16841,64,33.25,38,0.0 +16841,5,21.35,5,0.0 +16841,8,40,28,0.0 +16841,68,12.5,33,0.0 +16841,51,53,25,0.0 +16841,52,7,27,0.0 +16841,17,39,29,0.0 +16841,47,9.5,34,0.0 +16841,6,25,13,0.0 +16841,31,12.5,14,0.0 +16841,72,34.8,42,0.0 +16841,27,43.9,23,0.0 +16841,59,55,2,0.0 +16841,40,18.4,40,0.0 +16841,1,18,13,0.0 +16841,16,17.45,1,0.0 +16841,76,18,49,0.0 +16841,50,16.25,5,0.0 +16841,66,17,22,0.0 +16841,24,4.5,16,0.0 +16841,36,19,3,0.0 +16841,10,31,50,0.0 +16841,18,62.5,46,0.0 +16841,26,31.23,39,0.0 +16841,15,15.5,27,0.0 +16841,9,97,22,0.0 +16841,29,123.79,18,0.0 +16841,30,25.89,5,0.0 +16841,14,23.25,28,0.0 +16841,73,15,27,0.0 +16841,45,9.5,44,0.0 +16841,28,45.6,3,0.0 +16841,37,26,39,0.0 +16841,19,9.2,21,0.0 +16842,34,14,15,0.0 +16842,4,22,22,0.0 +16842,46,12,1,0.0 +16842,5,21.35,28,0.0 +16842,37,26,33,0.0 +16842,26,31.23,31,0.0 +16842,74,10,16,0.0 +16842,32,32,26,0.0 +16842,3,10,11,0.0 +16842,67,14,29,0.0 +16842,50,16.25,37,0.0 +16842,66,17,41,0.0 +16842,13,6,33,0.0 +16842,77,13,17,0.0 +16842,40,18.4,10,0.0 +16842,49,20,30,0.0 +16842,22,21,11,0.0 +16842,23,9,15,0.0 +16842,71,21.5,33,0.0 +16842,38,263.5,14,0.0 +16842,24,4.5,3,0.0 +16842,59,55,31,0.0 +16842,2,19,14,0.0 +16842,15,15.5,32,0.0 +16842,31,12.5,1,0.0 +16842,27,43.9,15,0.0 +16842,11,21,10,0.0 +16842,57,19.5,44,0.0 +16842,73,15,13,0.0 +16842,20,81,44,0.0 +16842,18,62.5,13,0.0 +16842,1,18,1,0.0 +16842,16,17.45,13,0.0 +16842,28,45.6,45,0.0 +16842,60,34,46,0.0 +16842,55,24,20,0.0 +16842,45,9.5,28,0.0 +16842,6,25,48,0.0 +16842,54,7.45,28,0.0 +16842,10,31,46,0.0 +16842,76,18,3,0.0 +16842,63,43.9,18,0.0 +16842,35,18,7,0.0 +16843,28,45.6,18,0.0 +16843,71,21.5,28,0.0 +16843,8,40,13,0.0 +16843,10,31,12,0.0 +16843,45,9.5,29,0.0 +16843,3,10,2,0.0 +16843,39,18,10,0.0 +16843,76,18,50,0.0 +16843,51,53,29,0.0 +16843,2,19,11,0.0 +16843,46,12,16,0.0 +16843,70,15,36,0.0 +16843,13,6,36,0.0 +16843,19,9.2,36,0.0 +16843,43,46,46,0.0 +16843,17,39,45,0.0 +16843,73,15,5,0.0 +16843,74,10,31,0.0 +16843,52,7,4,0.0 +16843,68,12.5,7,0.0 +16843,33,2.5,31,0.0 +16843,62,49.3,29,0.0 +16843,72,34.8,44,0.0 +16843,1,18,41,0.0 +16843,57,19.5,46,0.0 +16843,41,9.65,7,0.0 +16843,60,34,35,0.0 +16843,31,12.5,45,0.0 +16843,18,62.5,24,0.0 +16843,55,24,31,0.0 +16843,36,19,45,0.0 +16843,75,7.75,2,0.0 +16843,77,13,25,0.0 +16843,69,36,41,0.0 +16843,14,23.25,50,0.0 +16843,30,25.89,6,0.0 +16843,65,21.05,11,0.0 +16844,52,7,21,0.0 +16844,58,13.25,33,0.0 +16844,34,14,3,0.0 +16844,65,21.05,31,0.0 +16844,18,62.5,43,0.0 +16844,72,34.8,16,0.0 +16844,71,21.5,44,0.0 +16844,67,14,49,0.0 +16844,76,18,22,0.0 +16844,57,19.5,49,0.0 +16844,8,40,34,0.0 +16844,48,12.75,13,0.0 +16844,14,23.25,30,0.0 +16844,6,25,29,0.0 +16844,10,31,46,0.0 +16844,42,14,28,0.0 +16844,40,18.4,10,0.0 +16844,19,9.2,34,0.0 +16844,4,22,50,0.0 +16844,41,9.65,47,0.0 +16844,37,26,2,0.0 +16844,38,263.5,17,0.0 +16844,56,38,29,0.0 +16844,11,21,1,0.0 +16844,33,2.5,29,0.0 +16844,1,18,7,0.0 +16844,68,12.5,38,0.0 +16844,32,32,19,0.0 +16844,73,15,30,0.0 +16844,23,9,11,0.0 +16844,46,12,29,0.0 +16844,2,19,37,0.0 +16844,59,55,38,0.0 +16844,27,43.9,1,0.0 +16844,49,20,12,0.0 +16844,45,9.5,24,0.0 +16844,63,43.9,2,0.0 +16844,30,25.89,6,0.0 +16844,62,49.3,31,0.0 +16844,39,18,33,0.0 +16844,43,46,9,0.0 +16844,7,30,41,0.0 +16844,66,17,36,0.0 +16844,13,6,8,0.0 +16844,64,33.25,37,0.0 +16844,75,7.75,44,0.0 +16844,50,16.25,22,0.0 +16844,25,14,47,0.0 +16844,24,4.5,20,0.0 +16844,44,19.45,31,0.0 +16844,55,24,9,0.0 +16844,12,38,4,0.0 +16844,29,123.79,1,0.0 +16844,28,45.6,14,0.0 +16844,51,53,4,0.0 +16844,21,10,15,0.0 +16844,54,7.45,5,0.0 +16844,61,28.5,37,0.0 +16844,3,10,15,0.0 +16844,20,81,36,0.0 +16844,35,18,49,0.0 +16844,70,15,21,0.0 +16844,77,13,3,0.0 +16844,9,97,40,0.0 +16844,31,12.5,11,0.0 +16845,73,15,12,0.0 +16845,43,46,48,0.0 +16845,65,21.05,8,0.0 +16845,42,14,16,0.0 +16845,45,9.5,14,0.0 +16845,9,97,13,0.0 +16845,57,19.5,48,0.0 +16845,11,21,21,0.0 +16845,51,53,38,0.0 +16845,60,34,25,0.0 +16845,38,263.5,38,0.0 +16845,8,40,9,0.0 +16845,49,20,11,0.0 +16845,19,9.2,10,0.0 +16845,23,9,26,0.0 +16845,63,43.9,32,0.0 +16845,36,19,38,0.0 +16845,59,55,41,0.0 +16845,7,30,1,0.0 +16845,2,19,15,0.0 +16845,61,28.5,2,0.0 +16845,13,6,5,0.0 +16845,47,9.5,20,0.0 +16845,15,15.5,29,0.0 +16845,16,17.45,50,0.0 +16845,53,32.8,12,0.0 +16845,77,13,3,0.0 +16845,1,18,5,0.0 +16845,30,25.89,32,0.0 +16845,29,123.79,19,0.0 +16845,55,24,43,0.0 +16845,10,31,48,0.0 +16845,6,25,50,0.0 +16845,3,10,36,0.0 +16845,41,9.65,49,0.0 +16845,52,7,33,0.0 +16846,31,12.5,31,0.0 +16846,38,263.5,24,0.0 +16846,33,2.5,43,0.0 +16846,20,81,29,0.0 +16846,70,15,6,0.0 +16846,16,17.45,7,0.0 +16846,66,17,31,0.0 +16846,1,18,32,0.0 +16846,76,18,11,0.0 +16846,11,21,44,0.0 +16846,51,53,36,0.0 +16846,77,13,30,0.0 +16846,68,12.5,5,0.0 +16846,49,20,41,0.0 +16846,21,10,33,0.0 +16846,75,7.75,5,0.0 +16846,27,43.9,20,0.0 +16846,56,38,20,0.0 +16846,26,31.23,47,0.0 +16846,30,25.89,34,0.0 +16846,41,9.65,34,0.0 +16846,29,123.79,20,0.0 +16846,59,55,43,0.0 +16846,54,7.45,34,0.0 +16846,19,9.2,14,0.0 +16846,55,24,17,0.0 +16846,57,19.5,3,0.0 +16846,15,15.5,6,0.0 +16846,4,22,5,0.0 +16846,62,49.3,3,0.0 +16846,13,6,7,0.0 +16846,39,18,19,0.0 +16846,28,45.6,32,0.0 +16846,47,9.5,14,0.0 +16846,34,14,7,0.0 +16846,36,19,25,0.0 +16846,10,31,49,0.0 +16846,60,34,38,0.0 +16846,42,14,50,0.0 +16846,65,21.05,32,0.0 +16846,25,14,16,0.0 +16846,67,14,47,0.0 +16846,24,4.5,31,0.0 +16846,32,32,45,0.0 +16846,69,36,24,0.0 +16846,18,62.5,40,0.0 +16847,64,33.25,1,0.0 +16847,46,12,46,0.0 +16847,63,43.9,27,0.0 +16847,54,7.45,39,0.0 +16847,37,26,34,0.0 +16847,17,39,20,0.0 +16847,1,18,34,0.0 +16847,70,15,30,0.0 +16847,59,55,33,0.0 +16847,36,19,16,0.0 +16847,62,49.3,38,0.0 +16847,52,7,3,0.0 +16847,39,18,14,0.0 +16847,2,19,5,0.0 +16847,27,43.9,35,0.0 +16847,48,12.75,30,0.0 +16847,24,4.5,3,0.0 +16847,41,9.65,11,0.0 +16847,66,17,6,0.0 +16847,58,13.25,14,0.0 +16847,29,123.79,36,0.0 +16847,55,24,22,0.0 +16847,16,17.45,44,0.0 +16847,45,9.5,23,0.0 +16847,22,21,15,0.0 +16847,11,21,11,0.0 +16847,75,7.75,37,0.0 +16847,44,19.45,20,0.0 +16847,7,30,14,0.0 +16847,60,34,30,0.0 +16847,8,40,30,0.0 +16847,10,31,6,0.0 +16847,74,10,4,0.0 +16847,51,53,43,0.0 +16847,50,16.25,1,0.0 +16847,5,21.35,21,0.0 +16847,15,15.5,10,0.0 +16847,68,12.5,33,0.0 +16847,38,263.5,12,0.0 +16847,18,62.5,40,0.0 +16847,19,9.2,28,0.0 +16847,33,2.5,43,0.0 +16847,57,19.5,14,0.0 +16847,49,20,38,0.0 +16847,13,6,19,0.0 +16847,43,46,43,0.0 +16847,26,31.23,37,0.0 +16847,4,22,34,0.0 +16847,3,10,34,0.0 +16847,21,10,31,0.0 +16847,56,38,38,0.0 +16847,6,25,13,0.0 +16848,50,16.25,50,0.0 +16848,29,123.79,36,0.0 +16848,33,2.5,30,0.0 +16848,24,4.5,7,0.0 +16848,5,21.35,16,0.0 +16848,31,12.5,43,0.0 +16848,66,17,44,0.0 +16848,9,97,33,0.0 +16848,3,10,16,0.0 +16848,46,12,27,0.0 +16848,53,32.8,29,0.0 +16848,25,14,10,0.0 +16848,35,18,10,0.0 +16848,67,14,24,0.0 +16848,10,31,15,0.0 +16848,62,49.3,35,0.0 +16848,75,7.75,42,0.0 +16848,4,22,20,0.0 +16848,13,6,8,0.0 +16848,32,32,8,0.0 +16848,56,38,24,0.0 +16848,38,263.5,5,0.0 +16848,44,19.45,5,0.0 +16848,47,9.5,37,0.0 +16848,12,38,6,0.0 +16848,39,18,23,0.0 +16848,34,14,22,0.0 +16848,1,18,30,0.0 +16848,17,39,50,0.0 +16848,69,36,14,0.0 +16848,71,21.5,10,0.0 +16848,19,9.2,47,0.0 +16848,54,7.45,21,0.0 +16848,60,34,21,0.0 +16848,51,53,21,0.0 +16848,70,15,34,0.0 +16848,76,18,14,0.0 +16848,52,7,16,0.0 +16848,77,13,28,0.0 +16848,28,45.6,33,0.0 +16848,59,55,26,0.0 +16848,8,40,4,0.0 +16848,68,12.5,24,0.0 +16848,57,19.5,18,0.0 +16848,22,21,22,0.0 +16848,45,9.5,20,0.0 +16848,73,15,32,0.0 +16848,41,9.65,18,0.0 +16848,64,33.25,14,0.0 +16848,36,19,45,0.0 +16849,8,40,44,0.0 +16849,65,21.05,42,0.0 +16849,39,18,18,0.0 +16849,5,21.35,14,0.0 +16849,3,10,15,0.0 +16850,62,49.3,45,0.0 +16850,77,13,25,0.0 +16850,59,55,30,0.0 +16850,42,14,39,0.0 +16850,14,23.25,21,0.0 +16850,39,18,13,0.0 +16850,66,17,46,0.0 +16850,10,31,9,0.0 +16850,27,43.9,23,0.0 +16850,30,25.89,1,0.0 +16850,2,19,7,0.0 +16850,70,15,28,0.0 +16850,40,18.4,28,0.0 +16850,46,12,49,0.0 +16850,23,9,46,0.0 +16850,12,38,27,0.0 +16850,21,10,30,0.0 +16850,73,15,24,0.0 +16850,58,13.25,36,0.0 +16850,49,20,24,0.0 +16850,9,97,32,0.0 +16850,60,34,5,0.0 +16850,31,12.5,33,0.0 +16850,37,26,35,0.0 +16850,74,10,32,0.0 +16850,50,16.25,8,0.0 +16850,51,53,40,0.0 +16850,13,6,35,0.0 +16850,44,19.45,15,0.0 +16850,53,32.8,39,0.0 +16850,8,40,4,0.0 +16850,55,24,24,0.0 +16850,19,9.2,13,0.0 +16850,41,9.65,28,0.0 +16850,64,33.25,33,0.0 +16850,48,12.75,35,0.0 +16850,56,38,46,0.0 +16850,3,10,29,0.0 +16850,5,21.35,45,0.0 +16850,52,7,49,0.0 +16850,25,14,46,0.0 +16850,24,4.5,43,0.0 +16850,57,19.5,50,0.0 +16850,18,62.5,19,0.0 +16850,34,14,18,0.0 +16850,71,21.5,41,0.0 +16850,68,12.5,28,0.0 +16850,35,18,26,0.0 +16850,7,30,32,0.0 +16850,29,123.79,10,0.0 +16850,20,81,15,0.0 +16850,11,21,44,0.0 +16850,22,21,34,0.0 +16850,32,32,24,0.0 +16850,33,2.5,4,0.0 +16850,16,17.45,19,0.0 +16850,1,18,22,0.0 +16850,43,46,37,0.0 +16850,76,18,12,0.0 +16850,69,36,21,0.0 +16850,4,22,14,0.0 +16850,28,45.6,13,0.0 +16850,17,39,44,0.0 +16850,65,21.05,15,0.0 +16851,10,31,44,0.0 +16851,35,18,34,0.0 +16851,16,17.45,8,0.0 +16851,22,21,48,0.0 +16851,9,97,1,0.0 +16852,71,21.5,22,0.0 +16853,67,14,6,0.0 +16853,15,15.5,33,0.0 +16853,20,81,2,0.0 +16853,7,30,26,0.0 +16853,56,38,43,0.0 +16853,73,15,5,0.0 +16853,21,10,44,0.0 +16853,25,14,43,0.0 +16853,45,9.5,49,0.0 +16853,32,32,43,0.0 +16853,40,18.4,34,0.0 +16853,42,14,20,0.0 +16853,50,16.25,33,0.0 +16853,39,18,49,0.0 +16853,64,33.25,48,0.0 +16853,46,12,44,0.0 +16853,30,25.89,41,0.0 +16853,71,21.5,15,0.0 +16853,4,22,48,0.0 +16853,6,25,36,0.0 +16853,48,12.75,36,0.0 +16853,23,9,6,0.0 +16853,12,38,13,0.0 +16854,5,21.35,43,0.0 +16854,20,81,22,0.0 +16854,49,20,21,0.0 +16854,70,15,39,0.0 +16854,52,7,38,0.0 +16854,19,9.2,7,0.0 +16854,68,12.5,43,0.0 +16854,44,19.45,38,0.0 +16854,15,15.5,10,0.0 +16854,45,9.5,50,0.0 +16854,41,9.65,34,0.0 +16854,2,19,21,0.0 +16854,10,31,20,0.0 +16854,11,21,42,0.0 +16854,58,13.25,44,0.0 +16854,14,23.25,22,0.0 +16855,13,6,40,0.0 +16855,10,31,15,0.0 +16855,68,12.5,26,0.0 +16855,50,16.25,20,0.0 +16855,35,18,22,0.0 +16855,77,13,30,0.0 +16855,46,12,50,0.0 +16855,28,45.6,42,0.0 +16855,36,19,47,0.0 +16855,40,18.4,31,0.0 +16855,42,14,6,0.0 +16855,45,9.5,5,0.0 +16855,11,21,2,0.0 +16855,67,14,9,0.0 +16855,26,31.23,30,0.0 +16855,2,19,15,0.0 +16855,39,18,20,0.0 +16855,9,97,43,0.0 +16855,63,43.9,6,0.0 +16855,44,19.45,35,0.0 +16855,33,2.5,34,0.0 +16855,15,15.5,44,0.0 +16855,4,22,31,0.0 +16855,55,24,26,0.0 +16855,48,12.75,21,0.0 +16855,47,9.5,31,0.0 +16855,6,25,38,0.0 +16855,29,123.79,21,0.0 +16855,64,33.25,28,0.0 +16855,18,62.5,31,0.0 +16855,31,12.5,43,0.0 +16855,76,18,31,0.0 +16855,12,38,13,0.0 +16855,43,46,46,0.0 +16855,19,9.2,13,0.0 +16855,14,23.25,11,0.0 +16855,54,7.45,41,0.0 +16855,34,14,34,0.0 +16855,20,81,34,0.0 +16855,75,7.75,34,0.0 +16855,27,43.9,20,0.0 +16855,30,25.89,8,0.0 +16855,8,40,4,0.0 +16855,74,10,37,0.0 +16855,72,34.8,6,0.0 +16855,70,15,2,0.0 +16855,16,17.45,23,0.0 +16855,1,18,39,0.0 +16855,38,263.5,41,0.0 +16855,56,38,12,0.0 +16855,41,9.65,14,0.0 +16855,62,49.3,33,0.0 +16855,24,4.5,17,0.0 +16856,61,28.5,16,0.0 +16856,26,31.23,40,0.0 +16856,12,38,38,0.0 +16856,41,9.65,5,0.0 +16856,52,7,11,0.0 +16856,11,21,8,0.0 +16856,32,32,15,0.0 +16856,70,15,40,0.0 +16856,67,14,50,0.0 +16856,17,39,7,0.0 +16856,28,45.6,34,0.0 +16856,43,46,5,0.0 +16856,39,18,13,0.0 +16856,8,40,45,0.0 +16856,13,6,29,0.0 +16856,45,9.5,27,0.0 +16856,51,53,30,0.0 +16856,59,55,22,0.0 +16856,71,21.5,50,0.0 +16856,5,21.35,45,0.0 +16856,65,21.05,26,0.0 +16856,49,20,32,0.0 +16856,75,7.75,40,0.0 +16856,4,22,21,0.0 +16856,46,12,29,0.0 +16856,1,18,46,0.0 +16856,22,21,18,0.0 +16856,33,2.5,44,0.0 +16856,29,123.79,7,0.0 +16856,37,26,8,0.0 +16856,20,81,37,0.0 +16856,57,19.5,15,0.0 +16856,47,9.5,13,0.0 +16856,15,15.5,24,0.0 +16856,64,33.25,19,0.0 +16856,56,38,3,0.0 +16856,54,7.45,4,0.0 +16856,24,4.5,29,0.0 +16856,62,49.3,38,0.0 +16856,30,25.89,15,0.0 +16856,31,12.5,47,0.0 +16857,8,40,36,0.0 +16857,45,9.5,32,0.0 +16857,63,43.9,46,0.0 +16857,11,21,37,0.0 +16857,77,13,31,0.0 +16857,38,263.5,2,0.0 +16857,23,9,7,0.0 +16857,22,21,35,0.0 +16857,70,15,26,0.0 +16857,44,19.45,6,0.0 +16857,46,12,36,0.0 +16857,34,14,30,0.0 +16857,26,31.23,33,0.0 +16857,64,33.25,46,0.0 +16857,55,24,21,0.0 +16857,50,16.25,26,0.0 +16857,35,18,9,0.0 +16857,71,21.5,35,0.0 +16857,68,12.5,8,0.0 +16857,31,12.5,30,0.0 +16857,15,15.5,38,0.0 +16857,42,14,19,0.0 +16857,48,12.75,20,0.0 +16857,65,21.05,7,0.0 +16857,75,7.75,26,0.0 +16857,61,28.5,41,0.0 +16857,32,32,10,0.0 +16857,74,10,41,0.0 +16857,40,18.4,25,0.0 +16857,3,10,15,0.0 +16857,29,123.79,5,0.0 +16857,1,18,36,0.0 +16857,60,34,28,0.0 +16857,28,45.6,11,0.0 +16857,49,20,12,0.0 +16857,7,30,50,0.0 +16857,76,18,11,0.0 +16857,37,26,16,0.0 +16857,41,9.65,32,0.0 +16857,57,19.5,33,0.0 +16857,43,46,43,0.0 +16857,51,53,36,0.0 +16857,27,43.9,36,0.0 +16857,67,14,24,0.0 +16857,17,39,50,0.0 +16857,73,15,45,0.0 +16857,10,31,19,0.0 +16857,54,7.45,28,0.0 +16857,59,55,7,0.0 +16857,2,19,29,0.0 +16857,53,32.8,12,0.0 +16857,18,62.5,29,0.0 +16857,6,25,50,0.0 +16857,66,17,48,0.0 +16857,39,18,32,0.0 +16858,1,18,5,0.0 +16858,29,123.79,26,0.0 +16858,73,15,25,0.0 +16858,55,24,34,0.0 +16858,12,38,31,0.0 +16858,54,7.45,34,0.0 +16858,25,14,7,0.0 +16858,24,4.5,25,0.0 +16858,53,32.8,43,0.0 +16858,65,21.05,12,0.0 +16858,69,36,20,0.0 +16858,57,19.5,38,0.0 +16858,22,21,48,0.0 +16858,74,10,3,0.0 +16859,56,38,14,0.0 +16859,31,12.5,30,0.0 +16859,71,21.5,9,0.0 +16859,44,19.45,1,0.0 +16859,58,13.25,30,0.0 +16859,60,34,42,0.0 +16859,45,9.5,48,0.0 +16859,2,19,37,0.0 +16859,65,21.05,16,0.0 +16859,49,20,37,0.0 +16859,28,45.6,29,0.0 +16859,40,18.4,13,0.0 +16859,62,49.3,33,0.0 +16859,17,39,21,0.0 +16859,13,6,6,0.0 +16859,55,24,35,0.0 +16859,48,12.75,20,0.0 +16859,66,17,23,0.0 +16859,7,30,32,0.0 +16859,61,28.5,12,0.0 +16859,11,21,6,0.0 +16859,8,40,8,0.0 +16859,47,9.5,30,0.0 +16859,50,16.25,19,0.0 +16859,75,7.75,20,0.0 +16859,52,7,43,0.0 +16859,30,25.89,37,0.0 +16859,4,22,43,0.0 +16859,3,10,36,0.0 +16859,73,15,8,0.0 +16859,15,15.5,17,0.0 +16859,39,18,4,0.0 +16860,52,7,27,0.0 +16860,21,10,9,0.0 +16860,10,31,5,0.0 +16860,40,18.4,32,0.0 +16860,77,13,43,0.0 +16860,13,6,43,0.0 +16860,49,20,30,0.0 +16860,68,12.5,12,0.0 +16860,28,45.6,45,0.0 +16860,46,12,29,0.0 +16860,31,12.5,39,0.0 +16860,11,21,39,0.0 +16860,24,4.5,47,0.0 +16860,37,26,27,0.0 +16860,72,34.8,12,0.0 +16860,32,32,42,0.0 +16860,50,16.25,50,0.0 +16860,62,49.3,24,0.0 +16860,4,22,49,0.0 +16860,16,17.45,48,0.0 +16860,54,7.45,14,0.0 +16860,26,31.23,2,0.0 +16860,22,21,29,0.0 +16860,18,62.5,23,0.0 +16861,66,17,46,0.0 +16861,73,15,38,0.0 +16861,72,34.8,3,0.0 +16861,11,21,37,0.0 +16861,32,32,33,0.0 +16861,53,32.8,17,0.0 +16861,67,14,1,0.0 +16861,75,7.75,12,0.0 +16861,47,9.5,5,0.0 +16861,14,23.25,15,0.0 +16861,71,21.5,8,0.0 +16861,43,46,29,0.0 +16861,2,19,9,0.0 +16861,21,10,50,0.0 +16861,52,7,46,0.0 +16861,59,55,6,0.0 +16861,45,9.5,19,0.0 +16861,64,33.25,24,0.0 +16862,33,2.5,21,0.0 +16862,72,34.8,7,0.0 +16862,73,15,30,0.0 +16862,66,17,22,0.0 +16862,32,32,28,0.0 +16862,30,25.89,35,0.0 +16862,47,9.5,34,0.0 +16862,8,40,21,0.0 +16862,74,10,35,0.0 +16862,18,62.5,32,0.0 +16862,70,15,47,0.0 +16862,65,21.05,10,0.0 +16862,59,55,18,0.0 +16862,76,18,28,0.0 +16862,5,21.35,42,0.0 +16862,69,36,49,0.0 +16862,56,38,32,0.0 +16862,11,21,4,0.0 +16862,34,14,44,0.0 +16862,31,12.5,11,0.0 +16862,40,18.4,40,0.0 +16862,29,123.79,3,0.0 +16862,4,22,34,0.0 +16862,21,10,18,0.0 +16862,38,263.5,40,0.0 +16862,17,39,14,0.0 +16862,37,26,43,0.0 +16863,36,19,25,0.0 +16863,14,23.25,29,0.0 +16863,19,9.2,20,0.0 +16863,74,10,27,0.0 +16863,51,53,27,0.0 +16863,27,43.9,30,0.0 +16863,42,14,12,0.0 +16863,47,9.5,11,0.0 +16863,6,25,20,0.0 +16863,52,7,9,0.0 +16863,54,7.45,24,0.0 +16863,23,9,32,0.0 +16863,77,13,45,0.0 +16863,60,34,24,0.0 +16863,48,12.75,4,0.0 +16863,63,43.9,30,0.0 +16863,71,21.5,42,0.0 +16863,12,38,16,0.0 +16863,72,34.8,19,0.0 +16863,49,20,26,0.0 +16863,18,62.5,33,0.0 +16863,53,32.8,48,0.0 +16863,38,263.5,32,0.0 +16863,8,40,44,0.0 +16863,16,17.45,36,0.0 +16863,24,4.5,45,0.0 +16863,70,15,41,0.0 +16863,30,25.89,32,0.0 +16863,37,26,35,0.0 +16863,57,19.5,21,0.0 +16863,3,10,23,0.0 +16863,44,19.45,16,0.0 +16863,58,13.25,48,0.0 +16863,22,21,30,0.0 +16863,35,18,21,0.0 +16863,20,81,35,0.0 +16863,45,9.5,34,0.0 +16864,45,9.5,32,0.0 +16864,57,19.5,23,0.0 +16864,31,12.5,22,0.0 +16864,56,38,22,0.0 +16864,24,4.5,48,0.0 +16864,68,12.5,44,0.0 +16864,67,14,30,0.0 +16864,3,10,9,0.0 +16864,47,9.5,7,0.0 +16864,12,38,44,0.0 +16864,20,81,42,0.0 +16864,5,21.35,32,0.0 +16864,48,12.75,15,0.0 +16864,60,34,49,0.0 +16864,11,21,9,0.0 +16864,42,14,26,0.0 +16864,34,14,26,0.0 +16864,1,18,10,0.0 +16864,17,39,30,0.0 +16864,73,15,12,0.0 +16864,41,9.65,8,0.0 +16864,49,20,8,0.0 +16864,9,97,37,0.0 +16864,15,15.5,2,0.0 +16864,29,123.79,43,0.0 +16864,10,31,9,0.0 +16864,8,40,50,0.0 +16864,51,53,18,0.0 +16864,27,43.9,21,0.0 +16864,44,19.45,23,0.0 +16864,4,22,23,0.0 +16864,2,19,19,0.0 +16864,19,9.2,39,0.0 +16864,66,17,44,0.0 +16864,52,7,11,0.0 +16864,58,13.25,36,0.0 +16864,16,17.45,29,0.0 +16864,39,18,8,0.0 +16864,32,32,13,0.0 +16864,71,21.5,41,0.0 +16864,23,9,3,0.0 +16864,36,19,5,0.0 +16864,53,32.8,43,0.0 +16864,38,263.5,25,0.0 +16864,26,31.23,43,0.0 +16864,46,12,26,0.0 +16864,63,43.9,47,0.0 +16864,61,28.5,12,0.0 +16864,33,2.5,45,0.0 +16864,74,10,30,0.0 +16864,50,16.25,31,0.0 +16864,7,30,32,0.0 +16864,22,21,22,0.0 +16864,28,45.6,23,0.0 +16864,54,7.45,46,0.0 +16864,70,15,24,0.0 +16864,75,7.75,50,0.0 +16864,69,36,36,0.0 +16864,6,25,6,0.0 +16864,13,6,9,0.0 +16864,62,49.3,31,0.0 +16864,72,34.8,6,0.0 +16865,47,9.5,9,0.0 +16865,15,15.5,40,0.0 +16865,5,21.35,21,0.0 +16865,1,18,38,0.0 +16865,2,19,46,0.0 +16865,77,13,34,0.0 +16865,18,62.5,24,0.0 +16865,61,28.5,30,0.0 +16865,71,21.5,10,0.0 +16865,34,14,43,0.0 +16865,74,10,37,0.0 +16865,20,81,42,0.0 +16865,59,55,25,0.0 +16865,58,13.25,4,0.0 +16865,57,19.5,5,0.0 +16865,44,19.45,34,0.0 +16865,73,15,30,0.0 +16865,75,7.75,27,0.0 +16865,6,25,2,0.0 +16865,17,39,2,0.0 +16865,16,17.45,10,0.0 +16865,42,14,9,0.0 +16865,69,36,42,0.0 +16866,62,49.3,15,0.0 +16866,68,12.5,23,0.0 +16866,56,38,19,0.0 +16866,36,19,23,0.0 +16866,27,43.9,4,0.0 +16866,12,38,27,0.0 +16866,48,12.75,13,0.0 +16866,4,22,26,0.0 +16866,47,9.5,8,0.0 +16866,8,40,49,0.0 +16866,64,33.25,16,0.0 +16866,53,32.8,11,0.0 +16866,57,19.5,20,0.0 +16866,14,23.25,16,0.0 +16866,61,28.5,10,0.0 +16866,33,2.5,39,0.0 +16866,22,21,37,0.0 +16866,29,123.79,35,0.0 +16866,58,13.25,36,0.0 +16866,44,19.45,33,0.0 +16866,19,9.2,13,0.0 +16866,25,14,1,0.0 +16866,13,6,44,0.0 +16866,39,18,30,0.0 +16866,76,18,4,0.0 +16866,24,4.5,44,0.0 +16866,72,34.8,25,0.0 +16866,74,10,22,0.0 +16866,38,263.5,43,0.0 +16866,2,19,41,0.0 +16866,59,55,7,0.0 +16866,45,9.5,39,0.0 +16866,37,26,38,0.0 +16866,1,18,46,0.0 +16866,77,13,8,0.0 +16866,50,16.25,2,0.0 +16866,30,25.89,41,0.0 +16866,71,21.5,28,0.0 +16866,52,7,41,0.0 +16866,69,36,20,0.0 +16866,63,43.9,7,0.0 +16866,43,46,13,0.0 +16866,46,12,20,0.0 +16866,49,20,38,0.0 +16866,54,7.45,33,0.0 +16866,65,21.05,49,0.0 +16866,17,39,40,0.0 +16866,67,14,25,0.0 +16866,11,21,27,0.0 +16866,28,45.6,29,0.0 +16866,40,18.4,1,0.0 +16866,60,34,24,0.0 +16866,21,10,1,0.0 +16866,7,30,13,0.0 +16866,23,9,28,0.0 +16866,35,18,31,0.0 +16866,66,17,15,0.0 +16866,15,15.5,32,0.0 +16866,41,9.65,31,0.0 +16866,10,31,49,0.0 +16866,31,12.5,11,0.0 +16866,34,14,47,0.0 +16866,75,7.75,31,0.0 +16866,73,15,18,0.0 +16866,3,10,15,0.0 +16866,55,24,17,0.0 +16866,18,62.5,3,0.0 +16866,51,53,31,0.0 +16866,16,17.45,15,0.0 +16866,26,31.23,10,0.0 +16866,9,97,24,0.0 +16866,6,25,19,0.0 +16866,42,14,13,0.0 +16866,5,21.35,21,0.0 +16866,70,15,17,0.0 +16866,32,32,17,0.0 +16867,75,7.75,28,0.0 +16867,29,123.79,19,0.0 +16867,59,55,20,0.0 +16867,68,12.5,37,0.0 +16867,55,24,15,0.0 +16867,8,40,5,0.0 +16867,21,10,26,0.0 +16867,28,45.6,40,0.0 +16867,30,25.89,41,0.0 +16867,45,9.5,6,0.0 +16867,37,26,28,0.0 +16867,23,9,17,0.0 +16867,6,25,16,0.0 +16867,70,15,13,0.0 +16867,52,7,47,0.0 +16867,74,10,13,0.0 +16867,36,19,10,0.0 +16867,39,18,49,0.0 +16867,47,9.5,8,0.0 +16867,9,97,43,0.0 +16867,72,34.8,19,0.0 +16867,14,23.25,46,0.0 +16867,12,38,49,0.0 +16867,41,9.65,1,0.0 +16867,15,15.5,25,0.0 +16867,33,2.5,47,0.0 +16867,40,18.4,34,0.0 +16867,4,22,27,0.0 +16867,54,7.45,17,0.0 +16867,57,19.5,9,0.0 +16867,71,21.5,13,0.0 +16867,53,32.8,18,0.0 +16867,22,21,41,0.0 +16867,3,10,1,0.0 +16867,17,39,33,0.0 +16867,62,49.3,5,0.0 +16867,24,4.5,2,0.0 +16867,64,33.25,7,0.0 +16867,73,15,22,0.0 +16867,51,53,49,0.0 +16867,34,14,31,0.0 +16867,48,12.75,8,0.0 +16867,42,14,9,0.0 +16867,69,36,28,0.0 +16867,20,81,18,0.0 +16867,2,19,36,0.0 +16867,67,14,5,0.0 +16867,50,16.25,11,0.0 +16867,10,31,18,0.0 +16867,63,43.9,50,0.0 +16867,35,18,1,0.0 +16867,76,18,34,0.0 +16867,77,13,45,0.0 +16867,13,6,26,0.0 +16867,61,28.5,26,0.0 +16867,43,46,50,0.0 +16867,19,9.2,22,0.0 +16867,1,18,6,0.0 +16867,25,14,41,0.0 +16867,66,17,2,0.0 +16867,46,12,18,0.0 +16867,49,20,10,0.0 +16867,31,12.5,48,0.0 +16867,26,31.23,6,0.0 +16868,37,26,6,0.0 +16868,12,38,41,0.0 +16868,13,6,11,0.0 +16868,53,32.8,20,0.0 +16868,49,20,18,0.0 +16868,44,19.45,9,0.0 +16868,22,21,30,0.0 +16868,7,30,11,0.0 +16868,8,40,10,0.0 +16868,6,25,2,0.0 +16868,39,18,2,0.0 +16868,5,21.35,14,0.0 +16868,30,25.89,26,0.0 +16868,4,22,3,0.0 +16868,43,46,37,0.0 +16868,63,43.9,11,0.0 +16868,71,21.5,19,0.0 +16868,69,36,45,0.0 +16868,57,19.5,49,0.0 +16868,52,7,3,0.0 +16868,64,33.25,8,0.0 +16868,10,31,1,0.0 +16868,67,14,38,0.0 +16868,36,19,10,0.0 +16868,60,34,35,0.0 +16868,21,10,29,0.0 +16868,65,21.05,43,0.0 +16868,27,43.9,39,0.0 +16868,24,4.5,38,0.0 +16868,14,23.25,33,0.0 +16868,76,18,29,0.0 +16868,2,19,41,0.0 +16868,41,9.65,4,0.0 +16868,38,263.5,4,0.0 +16869,9,97,15,0.0 +16869,45,9.5,12,0.0 +16869,57,19.5,10,0.0 +16869,2,19,3,0.0 +16869,26,31.23,19,0.0 +16869,58,13.25,13,0.0 +16869,21,10,49,0.0 +16869,13,6,18,0.0 +16869,19,9.2,22,0.0 +16869,28,45.6,19,0.0 +16869,24,4.5,44,0.0 +16869,55,24,37,0.0 +16869,53,32.8,31,0.0 +16869,41,9.65,20,0.0 +16869,67,14,16,0.0 +16869,50,16.25,41,0.0 +16869,61,28.5,45,0.0 +16869,74,10,30,0.0 +16869,36,19,18,0.0 +16869,25,14,23,0.0 +16869,40,18.4,46,0.0 +16869,35,18,22,0.0 +16869,7,30,15,0.0 +16869,38,263.5,1,0.0 +16869,33,2.5,25,0.0 +16869,56,38,11,0.0 +16869,63,43.9,3,0.0 +16869,47,9.5,45,0.0 +16869,29,123.79,22,0.0 +16869,46,12,44,0.0 +16869,31,12.5,17,0.0 +16869,54,7.45,27,0.0 +16869,39,18,3,0.0 +16869,20,81,48,0.0 +16869,17,39,29,0.0 +16869,51,53,28,0.0 +16869,68,12.5,20,0.0 +16869,14,23.25,45,0.0 +16869,30,25.89,9,0.0 +16870,53,32.8,19,0.0 +16870,69,36,28,0.0 +16870,75,7.75,33,0.0 +16870,4,22,35,0.0 +16870,51,53,25,0.0 +16870,40,18.4,14,0.0 +16870,62,49.3,33,0.0 +16870,56,38,45,0.0 +16870,37,26,17,0.0 +16870,72,34.8,26,0.0 +16870,19,9.2,9,0.0 +16870,9,97,22,0.0 +16870,59,55,24,0.0 +16870,18,62.5,12,0.0 +16870,2,19,33,0.0 +16870,23,9,35,0.0 +16870,6,25,18,0.0 +16870,26,31.23,27,0.0 +16870,71,21.5,29,0.0 +16870,13,6,47,0.0 +16870,14,23.25,5,0.0 +16870,48,12.75,30,0.0 +16870,39,18,23,0.0 +16870,12,38,40,0.0 +16870,49,20,17,0.0 +16870,29,123.79,31,0.0 +16870,63,43.9,18,0.0 +16870,61,28.5,32,0.0 +16870,31,12.5,5,0.0 +16870,3,10,20,0.0 +16870,50,16.25,16,0.0 +16870,58,13.25,5,0.0 +16870,28,45.6,30,0.0 +16870,38,263.5,47,0.0 +16870,55,24,39,0.0 +16871,52,7,43,0.0 +16871,51,53,9,0.0 +16871,75,7.75,43,0.0 +16871,31,12.5,16,0.0 +16871,60,34,2,0.0 +16871,1,18,39,0.0 +16871,15,15.5,40,0.0 +16871,11,21,34,0.0 +16871,7,30,34,0.0 +16871,55,24,33,0.0 +16871,35,18,46,0.0 +16871,69,36,35,0.0 +16871,62,49.3,34,0.0 +16871,67,14,11,0.0 +16871,74,10,35,0.0 +16871,58,13.25,15,0.0 +16871,50,16.25,18,0.0 +16871,45,9.5,35,0.0 +16871,37,26,45,0.0 +16871,8,40,23,0.0 +16871,40,18.4,18,0.0 +16871,61,28.5,25,0.0 +16871,14,23.25,23,0.0 +16871,66,17,41,0.0 +16871,6,25,48,0.0 +16871,70,15,40,0.0 +16871,24,4.5,36,0.0 +16871,26,31.23,33,0.0 +16871,16,17.45,35,0.0 +16871,20,81,8,0.0 +16871,46,12,23,0.0 +16871,2,19,38,0.0 +16871,9,97,42,0.0 +16871,68,12.5,13,0.0 +16871,64,33.25,31,0.0 +16871,48,12.75,31,0.0 +16871,41,9.65,42,0.0 +16871,36,19,36,0.0 +16871,77,13,18,0.0 +16871,21,10,27,0.0 +16871,63,43.9,47,0.0 +16871,22,21,20,0.0 +16871,34,14,13,0.0 +16871,56,38,29,0.0 +16871,38,263.5,4,0.0 +16871,72,34.8,13,0.0 +16871,49,20,9,0.0 +16871,23,9,26,0.0 +16871,17,39,49,0.0 +16871,25,14,41,0.0 +16871,47,9.5,31,0.0 +16871,65,21.05,26,0.0 +16871,44,19.45,7,0.0 +16871,3,10,38,0.0 +16871,59,55,33,0.0 +16871,13,6,15,0.0 +16871,39,18,18,0.0 +16871,53,32.8,49,0.0 +16871,54,7.45,36,0.0 +16871,42,14,35,0.0 +16871,32,32,4,0.0 +16871,18,62.5,17,0.0 +16871,27,43.9,31,0.0 +16871,19,9.2,29,0.0 +16871,29,123.79,19,0.0 +16871,28,45.6,36,0.0 +16871,12,38,16,0.0 +16872,74,10,18,0.0 +16872,16,17.45,34,0.0 +16873,46,12,31,0.0 +16873,72,34.8,36,0.0 +16873,75,7.75,9,0.0 +16873,31,12.5,2,0.0 +16873,55,24,36,0.0 +16873,49,20,43,0.0 +16873,3,10,3,0.0 +16873,71,21.5,19,0.0 +16873,9,97,19,0.0 +16873,77,13,32,0.0 +16873,8,40,32,0.0 +16873,17,39,44,0.0 +16873,73,15,5,0.0 +16873,4,22,3,0.0 +16873,20,81,50,0.0 +16873,63,43.9,44,0.0 +16873,67,14,9,0.0 +16873,76,18,3,0.0 +16873,54,7.45,23,0.0 +16873,28,45.6,31,0.0 +16873,65,21.05,31,0.0 +16873,52,7,37,0.0 +16873,34,14,45,0.0 +16873,25,14,10,0.0 +16873,2,19,10,0.0 +16873,14,23.25,20,0.0 +16873,37,26,27,0.0 +16873,19,9.2,16,0.0 +16873,60,34,23,0.0 +16873,39,18,47,0.0 +16873,33,2.5,6,0.0 +16873,7,30,19,0.0 +16873,24,4.5,13,0.0 +16873,43,46,32,0.0 +16873,74,10,35,0.0 +16873,51,53,28,0.0 +16873,35,18,29,0.0 +16873,44,19.45,10,0.0 +16873,57,19.5,23,0.0 +16873,36,19,27,0.0 +16873,41,9.65,14,0.0 +16873,18,62.5,19,0.0 +16873,62,49.3,35,0.0 +16873,45,9.5,43,0.0 +16873,32,32,2,0.0 +16873,23,9,22,0.0 +16873,29,123.79,2,0.0 +16873,11,21,30,0.0 +16874,45,9.5,22,0.0 +16874,46,12,29,0.0 +16874,38,263.5,41,0.0 +16874,35,18,39,0.0 +16874,14,23.25,48,0.0 +16874,20,81,45,0.0 +16875,51,53,40,0.0 +16875,74,10,13,0.0 +16875,66,17,38,0.0 +16875,69,36,12,0.0 +16875,40,18.4,36,0.0 +16875,59,55,44,0.0 +16875,15,15.5,18,0.0 +16875,5,21.35,12,0.0 +16875,64,33.25,39,0.0 +16875,17,39,45,0.0 +16875,14,23.25,37,0.0 +16875,4,22,4,0.0 +16875,70,15,5,0.0 +16875,38,263.5,41,0.0 +16876,18,62.5,3,0.0 +16876,68,12.5,4,0.0 +16877,27,43.9,43,0.0 +16877,62,49.3,17,0.0 +16877,16,17.45,13,0.0 +16877,69,36,3,0.0 +16878,77,13,22,0.0 +16878,44,19.45,29,0.0 +16878,10,31,10,0.0 +16878,4,22,2,0.0 +16878,64,33.25,19,0.0 +16878,7,30,47,0.0 +16878,59,55,9,0.0 +16878,72,34.8,21,0.0 +16878,73,15,21,0.0 +16878,61,28.5,24,0.0 +16878,3,10,33,0.0 +16878,32,32,1,0.0 +16878,50,16.25,24,0.0 +16878,47,9.5,45,0.0 +16878,43,46,24,0.0 +16878,30,25.89,14,0.0 +16878,21,10,34,0.0 +16878,52,7,46,0.0 +16878,42,14,3,0.0 +16878,33,2.5,26,0.0 +16878,6,25,41,0.0 +16878,2,19,43,0.0 +16878,39,18,28,0.0 +16878,36,19,26,0.0 +16879,57,19.5,36,0.0 +16879,17,39,46,0.0 +16879,2,19,10,0.0 +16880,69,36,39,0.0 +16880,43,46,3,0.0 +16880,4,22,41,0.0 +16881,52,7,43,0.0 +16881,5,21.35,15,0.0 +16881,72,34.8,12,0.0 +16881,69,36,7,0.0 +16881,26,31.23,50,0.0 +16881,12,38,19,0.0 +16881,13,6,43,0.0 +16881,62,49.3,30,0.0 +16881,74,10,19,0.0 +16881,65,21.05,1,0.0 +16881,39,18,23,0.0 +16881,28,45.6,8,0.0 +16881,7,30,27,0.0 +16881,53,32.8,4,0.0 +16881,61,28.5,29,0.0 +16881,22,21,9,0.0 +16881,37,26,33,0.0 +16881,54,7.45,9,0.0 +16881,19,9.2,35,0.0 +16881,20,81,9,0.0 +16881,18,62.5,39,0.0 +16881,6,25,24,0.0 +16881,45,9.5,11,0.0 +16881,43,46,24,0.0 +16881,56,38,38,0.0 +16881,42,14,31,0.0 +16881,21,10,9,0.0 +16881,14,23.25,7,0.0 +16881,2,19,7,0.0 +16881,47,9.5,31,0.0 +16881,49,20,26,0.0 +16881,16,17.45,32,0.0 +16882,73,15,25,0.0 +16882,15,15.5,4,0.0 +16882,22,21,48,0.0 +16882,12,38,1,0.0 +16882,40,18.4,48,0.0 +16882,14,23.25,6,0.0 +16882,53,32.8,27,0.0 +16882,1,18,1,0.0 +16882,41,9.65,18,0.0 +16882,2,19,28,0.0 +16882,76,18,6,0.0 +16882,32,32,7,0.0 +16882,38,263.5,7,0.0 +16882,57,19.5,29,0.0 +16882,8,40,13,0.0 +16882,30,25.89,2,0.0 +16882,39,18,21,0.0 +16882,11,21,17,0.0 +16882,31,12.5,40,0.0 +16882,62,49.3,14,0.0 +16882,7,30,46,0.0 +16882,36,19,34,0.0 +16882,72,34.8,30,0.0 +16882,34,14,26,0.0 +16882,23,9,28,0.0 +16882,71,21.5,41,0.0 +16882,24,4.5,41,0.0 +16882,42,14,39,0.0 +16882,63,43.9,33,0.0 +16882,26,31.23,12,0.0 +16882,69,36,19,0.0 +16882,17,39,23,0.0 +16882,3,10,7,0.0 +16882,44,19.45,47,0.0 +16882,47,9.5,26,0.0 +16882,55,24,11,0.0 +16882,61,28.5,15,0.0 +16882,46,12,2,0.0 +16882,75,7.75,32,0.0 +16882,64,33.25,15,0.0 +16882,6,25,19,0.0 +16882,74,10,46,0.0 +16882,33,2.5,23,0.0 +16882,28,45.6,30,0.0 +16882,5,21.35,40,0.0 +16882,35,18,22,0.0 +16882,52,7,18,0.0 +16882,27,43.9,18,0.0 +16882,65,21.05,17,0.0 +16882,18,62.5,27,0.0 +16882,58,13.25,18,0.0 +16882,51,53,18,0.0 +16882,29,123.79,19,0.0 +16882,21,10,6,0.0 +16882,67,14,37,0.0 +16882,50,16.25,43,0.0 +16882,13,6,33,0.0 +16882,43,46,48,0.0 +16882,37,26,4,0.0 +16882,20,81,22,0.0 +16882,45,9.5,49,0.0 +16882,9,97,24,0.0 +16882,4,22,39,0.0 +16882,59,55,4,0.0 +16882,56,38,47,0.0 +16882,16,17.45,27,0.0 +16882,68,12.5,2,0.0 +16882,70,15,33,0.0 +16882,10,31,3,0.0 +16882,54,7.45,4,0.0 +16882,77,13,3,0.0 +16883,48,12.75,27,0.0 +16883,6,25,17,0.0 +16883,32,32,21,0.0 +16883,63,43.9,41,0.0 +16883,75,7.75,25,0.0 +16883,13,6,47,0.0 +16883,50,16.25,19,0.0 +16883,23,9,14,0.0 +16883,12,38,45,0.0 +16883,27,43.9,43,0.0 +16883,18,62.5,13,0.0 +16883,49,20,9,0.0 +16883,65,21.05,17,0.0 +16883,37,26,26,0.0 +16883,35,18,19,0.0 +16883,24,4.5,19,0.0 +16883,17,39,32,0.0 +16883,33,2.5,25,0.0 +16883,43,46,37,0.0 +16883,46,12,19,0.0 +16883,25,14,21,0.0 +16883,77,13,15,0.0 +16883,26,31.23,7,0.0 +16883,42,14,15,0.0 +16883,7,30,32,0.0 +16883,29,123.79,19,0.0 +16883,52,7,43,0.0 +16883,44,19.45,34,0.0 +16883,2,19,24,0.0 +16883,11,21,26,0.0 +16883,9,97,21,0.0 +16883,51,53,18,0.0 +16883,16,17.45,41,0.0 +16883,20,81,29,0.0 +16883,39,18,36,0.0 +16883,76,18,4,0.0 +16883,54,7.45,1,0.0 +16883,73,15,47,0.0 +16883,64,33.25,3,0.0 +16883,3,10,48,0.0 +16883,41,9.65,41,0.0 +16883,61,28.5,26,0.0 +16883,28,45.6,1,0.0 +16883,38,263.5,30,0.0 +16883,56,38,19,0.0 +16883,1,18,38,0.0 +16883,68,12.5,6,0.0 +16883,47,9.5,50,0.0 +16883,5,21.35,3,0.0 +16883,19,9.2,44,0.0 +16883,70,15,35,0.0 +16883,60,34,26,0.0 +16883,72,34.8,15,0.0 +16883,57,19.5,35,0.0 +16883,8,40,34,0.0 +16883,53,32.8,26,0.0 +16883,45,9.5,8,0.0 +16883,62,49.3,38,0.0 +16883,36,19,30,0.0 +16883,74,10,5,0.0 +16883,15,15.5,19,0.0 +16883,66,17,49,0.0 +16883,31,12.5,37,0.0 +16883,22,21,47,0.0 +16883,10,31,45,0.0 +16883,30,25.89,30,0.0 +16883,34,14,4,0.0 +16883,58,13.25,45,0.0 +16883,55,24,40,0.0 +16883,4,22,7,0.0 +16883,69,36,23,0.0 +16883,59,55,26,0.0 +16884,45,9.5,20,0.0 +16884,56,38,39,0.0 +16884,27,43.9,35,0.0 +16884,6,25,26,0.0 +16884,42,14,41,0.0 +16884,34,14,46,0.0 +16884,75,7.75,31,0.0 +16884,20,81,27,0.0 +16884,38,263.5,14,0.0 +16884,16,17.45,1,0.0 +16884,29,123.79,1,0.0 +16884,43,46,29,0.0 +16884,44,19.45,9,0.0 +16885,63,43.9,4,0.0 +16885,11,21,38,0.0 +16885,70,15,23,0.0 +16885,15,15.5,33,0.0 +16885,64,33.25,48,0.0 +16885,35,18,50,0.0 +16885,38,263.5,39,0.0 +16885,21,10,19,0.0 +16885,55,24,19,0.0 +16885,6,25,14,0.0 +16885,18,62.5,28,0.0 +16885,17,39,11,0.0 +16885,47,9.5,20,0.0 +16885,8,40,33,0.0 +16885,76,18,28,0.0 +16885,12,38,7,0.0 +16885,1,18,33,0.0 +16885,68,12.5,21,0.0 +16885,13,6,43,0.0 +16885,32,32,4,0.0 +16885,72,34.8,9,0.0 +16885,45,9.5,36,0.0 +16885,36,19,46,0.0 +16885,16,17.45,45,0.0 +16885,26,31.23,36,0.0 +16885,57,19.5,31,0.0 +16885,65,21.05,15,0.0 +16886,31,12.5,8,0.0 +16886,54,7.45,10,0.0 +16886,36,19,41,0.0 +16887,69,36,40,0.0 +16887,42,14,26,0.0 +16887,4,22,23,0.0 +16887,41,9.65,14,0.0 +16887,26,31.23,8,0.0 +16887,55,24,3,0.0 +16887,38,263.5,18,0.0 +16887,12,38,12,0.0 +16887,66,17,20,0.0 +16887,30,25.89,49,0.0 +16887,44,19.45,50,0.0 +16887,63,43.9,2,0.0 +16887,46,12,12,0.0 +16887,18,62.5,3,0.0 +16887,39,18,6,0.0 +16887,15,15.5,16,0.0 +16887,54,7.45,44,0.0 +16887,1,18,46,0.0 +16887,49,20,30,0.0 +16887,71,21.5,9,0.0 +16887,3,10,42,0.0 +16887,51,53,5,0.0 +16887,45,9.5,9,0.0 +16887,2,19,2,0.0 +16887,64,33.25,21,0.0 +16887,19,9.2,41,0.0 +16887,27,43.9,37,0.0 +16887,9,97,29,0.0 +16887,74,10,7,0.0 +16887,40,18.4,41,0.0 +16887,23,9,46,0.0 +16887,20,81,23,0.0 +16887,70,15,42,0.0 +16887,6,25,35,0.0 +16887,68,12.5,39,0.0 +16887,59,55,35,0.0 +16887,60,34,24,0.0 +16887,52,7,17,0.0 +16887,7,30,24,0.0 +16887,48,12.75,35,0.0 +16887,65,21.05,5,0.0 +16887,32,32,11,0.0 +16887,72,34.8,15,0.0 +16887,73,15,10,0.0 +16887,61,28.5,20,0.0 +16887,77,13,17,0.0 +16887,22,21,42,0.0 +16887,35,18,44,0.0 +16887,8,40,32,0.0 +16888,14,23.25,41,0.0 +16888,8,40,36,0.0 +16888,1,18,36,0.0 +16888,53,32.8,43,0.0 +16888,57,19.5,38,0.0 +16888,6,25,22,0.0 +16888,61,28.5,47,0.0 +16888,62,49.3,45,0.0 +16888,26,31.23,2,0.0 +16888,71,21.5,16,0.0 +16888,56,38,4,0.0 +16888,18,62.5,22,0.0 +16888,77,13,50,0.0 +16888,15,15.5,20,0.0 +16888,47,9.5,33,0.0 +16888,4,22,24,0.0 +16888,2,19,50,0.0 +16888,20,81,48,0.0 +16888,23,9,33,0.0 +16888,11,21,29,0.0 +16888,52,7,7,0.0 +16888,5,21.35,39,0.0 +16889,9,97,25,0.0 +16889,23,9,16,0.0 +16889,49,20,24,0.0 +16889,24,4.5,37,0.0 +16889,30,25.89,29,0.0 +16889,57,19.5,14,0.0 +16889,58,13.25,29,0.0 +16889,21,10,12,0.0 +16889,28,45.6,46,0.0 +16889,54,7.45,26,0.0 +16889,47,9.5,47,0.0 +16889,44,19.45,5,0.0 +16889,11,21,16,0.0 +16889,5,21.35,30,0.0 +16889,51,53,40,0.0 +16889,36,19,35,0.0 +16889,13,6,34,0.0 +16889,77,13,2,0.0 +16889,65,21.05,34,0.0 +16889,45,9.5,19,0.0 +16889,46,12,43,0.0 +16889,61,28.5,10,0.0 +16889,20,81,43,0.0 +16889,3,10,45,0.0 +16890,17,39,11,0.0 +16890,63,43.9,37,0.0 +16890,6,25,42,0.0 +16890,69,36,6,0.0 +16890,72,34.8,34,0.0 +16890,36,19,2,0.0 +16890,23,9,43,0.0 +16890,7,30,1,0.0 +16890,70,15,45,0.0 +16890,40,18.4,19,0.0 +16890,71,21.5,10,0.0 +16890,14,23.25,21,0.0 +16890,55,24,43,0.0 +16890,65,21.05,36,0.0 +16890,9,97,47,0.0 +16890,24,4.5,28,0.0 +16890,16,17.45,44,0.0 +16890,41,9.65,35,0.0 +16890,67,14,44,0.0 +16890,20,81,24,0.0 +16890,28,45.6,20,0.0 +16890,27,43.9,40,0.0 +16890,57,19.5,45,0.0 +16890,31,12.5,8,0.0 +16890,54,7.45,24,0.0 +16890,59,55,47,0.0 +16890,61,28.5,40,0.0 +16890,62,49.3,26,0.0 +16890,50,16.25,1,0.0 +16890,35,18,45,0.0 +16890,53,32.8,45,0.0 +16890,68,12.5,34,0.0 +16890,49,20,29,0.0 +16890,32,32,14,0.0 +16890,13,6,39,0.0 +16890,56,38,30,0.0 +16890,25,14,23,0.0 +16890,58,13.25,41,0.0 +16890,3,10,35,0.0 +16890,52,7,47,0.0 +16890,51,53,5,0.0 +16890,15,15.5,2,0.0 +16890,75,7.75,2,0.0 +16890,2,19,5,0.0 +16890,46,12,49,0.0 +16890,48,12.75,24,0.0 +16891,55,24,21,0.0 +16891,29,123.79,1,0.0 +16891,57,19.5,6,0.0 +16891,71,21.5,28,0.0 +16891,19,9.2,20,0.0 +16891,9,97,42,0.0 +16891,49,20,4,0.0 +16891,40,18.4,50,0.0 +16891,27,43.9,10,0.0 +16891,70,15,37,0.0 +16891,44,19.45,26,0.0 +16891,18,62.5,11,0.0 +16891,7,30,21,0.0 +16891,41,9.65,12,0.0 +16891,52,7,35,0.0 +16891,77,13,8,0.0 +16891,4,22,31,0.0 +16891,45,9.5,17,0.0 +16891,23,9,2,0.0 +16891,8,40,44,0.0 +16891,73,15,42,0.0 +16891,62,49.3,40,0.0 +16891,50,16.25,8,0.0 +16891,42,14,32,0.0 +16891,5,21.35,27,0.0 +16891,43,46,12,0.0 +16891,69,36,45,0.0 +16891,2,19,4,0.0 +16891,13,6,4,0.0 +16891,17,39,8,0.0 +16891,64,33.25,7,0.0 +16891,3,10,31,0.0 +16891,25,14,38,0.0 +16891,22,21,45,0.0 +16891,20,81,8,0.0 +16891,31,12.5,49,0.0 +16891,54,7.45,44,0.0 +16891,75,7.75,24,0.0 +16891,58,13.25,2,0.0 +16891,48,12.75,46,0.0 +16891,38,263.5,13,0.0 +16891,76,18,11,0.0 +16891,30,25.89,35,0.0 +16891,16,17.45,45,0.0 +16891,65,21.05,24,0.0 +16891,34,14,46,0.0 +16891,67,14,44,0.0 +16891,72,34.8,49,0.0 +16891,10,31,45,0.0 +16891,53,32.8,39,0.0 +16891,1,18,50,0.0 +16891,11,21,22,0.0 +16891,33,2.5,23,0.0 +16891,37,26,12,0.0 +16891,39,18,10,0.0 +16891,66,17,2,0.0 +16891,47,9.5,36,0.0 +16891,59,55,27,0.0 +16891,36,19,47,0.0 +16891,12,38,30,0.0 +16891,46,12,20,0.0 +16891,28,45.6,41,0.0 +16891,51,53,8,0.0 +16891,68,12.5,27,0.0 +16891,26,31.23,6,0.0 +16891,6,25,29,0.0 +16891,60,34,18,0.0 +16891,56,38,21,0.0 +16891,15,15.5,16,0.0 +16891,74,10,2,0.0 +16891,61,28.5,35,0.0 +16891,32,32,4,0.0 +16891,21,10,18,0.0 +16891,14,23.25,48,0.0 +16891,24,4.5,14,0.0 +16891,63,43.9,8,0.0 +16892,44,19.45,11,0.0 +16892,21,10,39,0.0 +16892,31,12.5,16,0.0 +16892,50,16.25,32,0.0 +16892,37,26,40,0.0 +16892,69,36,25,0.0 +16892,38,263.5,6,0.0 +16892,27,43.9,24,0.0 +16892,33,2.5,2,0.0 +16892,9,97,11,0.0 +16892,7,30,20,0.0 +16892,12,38,12,0.0 +16892,64,33.25,43,0.0 +16892,52,7,50,0.0 +16892,3,10,48,0.0 +16892,24,4.5,8,0.0 +16892,4,22,47,0.0 +16892,48,12.75,43,0.0 +16892,29,123.79,46,0.0 +16892,56,38,28,0.0 +16892,74,10,15,0.0 +16892,51,53,35,0.0 +16892,41,9.65,36,0.0 +16892,53,32.8,8,0.0 +16892,20,81,1,0.0 +16892,6,25,25,0.0 +16892,35,18,18,0.0 +16892,23,9,27,0.0 +16892,60,34,40,0.0 +16892,70,15,26,0.0 +16892,19,9.2,17,0.0 +16892,30,25.89,37,0.0 +16892,22,21,38,0.0 +16892,61,28.5,17,0.0 +16892,40,18.4,27,0.0 +16892,43,46,47,0.0 +16892,57,19.5,14,0.0 +16892,45,9.5,4,0.0 +16892,76,18,17,0.0 +16892,54,7.45,44,0.0 +16892,16,17.45,12,0.0 +16892,25,14,45,0.0 +16892,75,7.75,42,0.0 +16892,67,14,29,0.0 +16892,36,19,26,0.0 +16892,2,19,3,0.0 +16892,62,49.3,11,0.0 +16892,11,21,9,0.0 +16892,49,20,1,0.0 +16892,63,43.9,29,0.0 +16892,10,31,46,0.0 +16893,13,6,6,0.0 +16893,19,9.2,24,0.0 +16893,36,19,25,0.0 +16893,31,12.5,35,0.0 +16893,59,55,48,0.0 +16893,75,7.75,2,0.0 +16893,10,31,10,0.0 +16893,4,22,9,0.0 +16893,56,38,50,0.0 +16893,26,31.23,12,0.0 +16893,29,123.79,6,0.0 +16893,53,32.8,40,0.0 +16893,77,13,14,0.0 +16893,62,49.3,3,0.0 +16893,16,17.45,10,0.0 +16893,8,40,20,0.0 +16893,57,19.5,15,0.0 +16893,33,2.5,46,0.0 +16893,51,53,45,0.0 +16893,65,21.05,10,0.0 +16893,9,97,34,0.0 +16893,34,14,17,0.0 +16893,70,15,1,0.0 +16893,54,7.45,19,0.0 +16893,43,46,20,0.0 +16893,52,7,35,0.0 +16893,21,10,26,0.0 +16893,72,34.8,17,0.0 +16893,66,17,30,0.0 +16893,61,28.5,12,0.0 +16893,44,19.45,3,0.0 +16893,48,12.75,36,0.0 +16893,2,19,43,0.0 +16893,67,14,13,0.0 +16893,49,20,49,0.0 +16893,12,38,40,0.0 +16893,68,12.5,35,0.0 +16893,35,18,12,0.0 +16893,22,21,32,0.0 +16893,45,9.5,31,0.0 +16893,27,43.9,1,0.0 +16893,55,24,21,0.0 +16893,3,10,5,0.0 +16893,46,12,37,0.0 +16893,69,36,34,0.0 +16893,64,33.25,37,0.0 +16893,37,26,7,0.0 +16893,47,9.5,46,0.0 +16893,38,263.5,3,0.0 +16893,11,21,41,0.0 +16893,58,13.25,10,0.0 +16893,1,18,5,0.0 +16893,71,21.5,36,0.0 +16893,50,16.25,26,0.0 +16893,42,14,2,0.0 +16893,39,18,22,0.0 +16893,15,15.5,35,0.0 +16893,20,81,49,0.0 +16893,5,21.35,9,0.0 +16893,74,10,8,0.0 +16893,30,25.89,13,0.0 +16893,41,9.65,26,0.0 +16893,25,14,11,0.0 +16894,74,10,36,0.0 +16894,46,12,36,0.0 +16894,65,21.05,18,0.0 +16894,23,9,4,0.0 +16894,70,15,1,0.0 +16894,61,28.5,9,0.0 +16894,68,12.5,29,0.0 +16894,4,22,32,0.0 +16894,54,7.45,11,0.0 +16894,26,31.23,13,0.0 +16894,66,17,31,0.0 +16894,57,19.5,45,0.0 +16894,14,23.25,27,0.0 +16894,41,9.65,33,0.0 +16894,52,7,25,0.0 +16894,6,25,42,0.0 +16894,1,18,35,0.0 +16894,51,53,30,0.0 +16894,12,38,11,0.0 +16894,18,62.5,48,0.0 +16894,15,15.5,43,0.0 +16894,29,123.79,8,0.0 +16894,48,12.75,23,0.0 +16894,73,15,26,0.0 +16894,43,46,35,0.0 +16894,75,7.75,14,0.0 +16894,62,49.3,28,0.0 +16894,28,45.6,23,0.0 +16894,22,21,20,0.0 +16894,36,19,17,0.0 +16894,3,10,24,0.0 +16894,16,17.45,26,0.0 +16894,38,263.5,35,0.0 +16894,35,18,15,0.0 +16894,63,43.9,48,0.0 +16894,45,9.5,48,0.0 +16894,55,24,41,0.0 +16894,42,14,43,0.0 +16894,49,20,22,0.0 +16894,77,13,48,0.0 +16894,25,14,21,0.0 +16894,34,14,24,0.0 +16894,39,18,43,0.0 +16894,53,32.8,16,0.0 +16894,10,31,7,0.0 +16894,58,13.25,15,0.0 +16894,24,4.5,38,0.0 +16894,13,6,46,0.0 +16894,64,33.25,15,0.0 +16894,59,55,33,0.0 +16894,7,30,16,0.0 +16894,37,26,13,0.0 +16894,40,18.4,33,0.0 +16894,47,9.5,23,0.0 +16894,8,40,46,0.0 +16894,31,12.5,22,0.0 +16894,9,97,40,0.0 +16894,76,18,45,0.0 +16894,30,25.89,37,0.0 +16894,32,32,41,0.0 +16894,44,19.45,31,0.0 +16894,27,43.9,15,0.0 +16894,56,38,29,0.0 +16895,9,97,42,0.0 +16895,33,2.5,42,0.0 +16895,18,62.5,14,0.0 +16895,30,25.89,30,0.0 +16895,8,40,36,0.0 +16895,68,12.5,18,0.0 +16895,47,9.5,36,0.0 +16895,77,13,3,0.0 +16895,25,14,47,0.0 +16895,15,15.5,42,0.0 +16895,65,21.05,42,0.0 +16895,72,34.8,40,0.0 +16895,3,10,31,0.0 +16895,34,14,41,0.0 +16895,23,9,27,0.0 +16895,61,28.5,19,0.0 +16895,20,81,47,0.0 +16895,41,9.65,50,0.0 +16895,60,34,23,0.0 +16895,74,10,39,0.0 +16895,4,22,11,0.0 +16895,6,25,45,0.0 +16895,54,7.45,30,0.0 +16895,52,7,14,0.0 +16896,13,6,3,0.0 +16896,71,21.5,2,0.0 +16896,17,39,31,0.0 +16896,23,9,2,0.0 +16896,43,46,24,0.0 +16896,44,19.45,20,0.0 +16896,60,34,41,0.0 +16896,16,17.45,15,0.0 +16896,15,15.5,43,0.0 +16896,65,21.05,4,0.0 +16896,52,7,16,0.0 +16896,75,7.75,7,0.0 +16896,41,9.65,29,0.0 +16896,28,45.6,22,0.0 +16896,3,10,26,0.0 +16896,27,43.9,23,0.0 +16896,10,31,33,0.0 +16896,37,26,25,0.0 +16896,48,12.75,18,0.0 +16896,68,12.5,28,0.0 +16896,34,14,5,0.0 +16897,22,21,13,0.0 +16897,38,263.5,9,0.0 +16897,50,16.25,26,0.0 +16897,32,32,42,0.0 +16897,68,12.5,16,0.0 +16897,16,17.45,33,0.0 +16897,30,25.89,3,0.0 +16897,26,31.23,31,0.0 +16897,47,9.5,6,0.0 +16897,73,15,17,0.0 +16897,70,15,50,0.0 +16897,65,21.05,16,0.0 +16897,61,28.5,28,0.0 +16897,45,9.5,8,0.0 +16897,56,38,3,0.0 +16897,9,97,9,0.0 +16897,49,20,21,0.0 +16897,36,19,11,0.0 +16897,37,26,44,0.0 +16897,31,12.5,28,0.0 +16897,24,4.5,26,0.0 +16897,62,49.3,50,0.0 +16897,57,19.5,15,0.0 +16897,43,46,43,0.0 +16897,63,43.9,16,0.0 +16897,46,12,40,0.0 +16897,23,9,21,0.0 +16897,42,14,11,0.0 +16897,3,10,21,0.0 +16897,15,15.5,35,0.0 +16898,14,23.25,30,0.0 +16898,36,19,6,0.0 +16898,4,22,32,0.0 +16898,6,25,18,0.0 +16898,49,20,22,0.0 +16898,54,7.45,48,0.0 +16898,47,9.5,27,0.0 +16899,5,21.35,9,0.0 +16899,32,32,27,0.0 +16899,35,18,46,0.0 +16899,7,30,15,0.0 +16899,50,16.25,23,0.0 +16899,41,9.65,3,0.0 +16899,39,18,36,0.0 +16899,27,43.9,8,0.0 +16899,36,19,29,0.0 +16899,65,21.05,2,0.0 +16899,40,18.4,23,0.0 +16899,18,62.5,33,0.0 +16899,52,7,13,0.0 +16899,75,7.75,26,0.0 +16899,70,15,4,0.0 +16899,72,34.8,38,0.0 +16899,17,39,29,0.0 +16899,63,43.9,43,0.0 +16899,71,21.5,23,0.0 +16899,57,19.5,30,0.0 +16899,15,15.5,45,0.0 +16899,77,13,44,0.0 +16899,64,33.25,1,0.0 +16899,13,6,35,0.0 +16899,74,10,2,0.0 +16899,43,46,27,0.0 +16899,1,18,5,0.0 +16899,59,55,7,0.0 +16899,56,38,32,0.0 +16899,24,4.5,42,0.0 +16899,33,2.5,43,0.0 +16899,10,31,7,0.0 +16899,11,21,3,0.0 +16899,12,38,40,0.0 +16899,46,12,28,0.0 +16899,6,25,50,0.0 +16899,30,25.89,25,0.0 +16899,20,81,38,0.0 +16899,8,40,8,0.0 +16899,42,14,36,0.0 +16899,16,17.45,38,0.0 +16899,21,10,20,0.0 +16899,68,12.5,37,0.0 +16899,29,123.79,23,0.0 +16899,51,53,4,0.0 +16899,22,21,5,0.0 +16899,53,32.8,33,0.0 +16899,14,23.25,39,0.0 +16899,69,36,1,0.0 +16899,76,18,22,0.0 +16899,34,14,10,0.0 +16899,60,34,25,0.0 +16899,4,22,43,0.0 +16899,9,97,27,0.0 +16899,61,28.5,29,0.0 +16899,44,19.45,45,0.0 +16899,31,12.5,22,0.0 +16899,49,20,17,0.0 +16899,73,15,46,0.0 +16899,48,12.75,41,0.0 +16899,23,9,33,0.0 +16899,55,24,45,0.0 +16899,25,14,33,0.0 +16899,19,9.2,22,0.0 +16899,3,10,42,0.0 +16899,66,17,37,0.0 +16899,62,49.3,43,0.0 +16899,45,9.5,9,0.0 +16899,47,9.5,9,0.0 +16899,58,13.25,36,0.0 +16899,2,19,28,0.0 +16900,19,9.2,29,0.0 +16900,30,25.89,39,0.0 +16900,26,31.23,48,0.0 +16900,10,31,26,0.0 +16900,3,10,8,0.0 +16900,17,39,42,0.0 +16900,51,53,22,0.0 +16900,49,20,49,0.0 +16900,56,38,20,0.0 +16900,46,12,14,0.0 +16900,22,21,30,0.0 +16900,9,97,26,0.0 +16900,14,23.25,21,0.0 +16900,68,12.5,33,0.0 +16900,32,32,16,0.0 +16900,11,21,27,0.0 +16900,59,55,5,0.0 +16900,55,24,47,0.0 +16900,39,18,42,0.0 +16900,37,26,29,0.0 +16900,54,7.45,12,0.0 +16900,28,45.6,12,0.0 +16900,25,14,40,0.0 +16900,45,9.5,28,0.0 +16900,35,18,24,0.0 +16900,38,263.5,30,0.0 +16900,21,10,29,0.0 +16900,43,46,37,0.0 +16900,12,38,8,0.0 +16900,63,43.9,45,0.0 +16900,69,36,7,0.0 +16900,72,34.8,50,0.0 +16900,42,14,22,0.0 +16900,65,21.05,47,0.0 +16900,5,21.35,31,0.0 +16900,2,19,26,0.0 +16900,67,14,24,0.0 +16900,66,17,35,0.0 +16900,29,123.79,47,0.0 +16900,27,43.9,37,0.0 +16900,33,2.5,28,0.0 +16900,44,19.45,3,0.0 +16901,5,21.35,45,0.0 +16901,20,81,42,0.0 +16901,10,31,34,0.0 +16901,71,21.5,42,0.0 +16901,50,16.25,3,0.0 +16901,21,10,48,0.0 +16902,53,32.8,44,0.0 +16902,72,34.8,3,0.0 +16902,12,38,49,0.0 +16902,38,263.5,10,0.0 +16902,45,9.5,28,0.0 +16902,10,31,42,0.0 +16902,65,21.05,31,0.0 +16902,48,12.75,36,0.0 +16902,64,33.25,3,0.0 +16902,66,17,26,0.0 +16902,41,9.65,47,0.0 +16902,21,10,33,0.0 +16902,76,18,43,0.0 +16902,44,19.45,14,0.0 +16902,67,14,42,0.0 +16902,20,81,36,0.0 +16902,60,34,23,0.0 +16902,28,45.6,27,0.0 +16902,24,4.5,8,0.0 +16902,13,6,28,0.0 +16902,27,43.9,17,0.0 +16902,3,10,39,0.0 +16902,42,14,48,0.0 +16902,35,18,39,0.0 +16902,26,31.23,17,0.0 +16902,50,16.25,6,0.0 +16902,14,23.25,40,0.0 +16902,29,123.79,41,0.0 +16902,15,15.5,49,0.0 +16902,49,20,23,0.0 +16902,58,13.25,8,0.0 +16902,70,15,5,0.0 +16902,36,19,35,0.0 +16902,4,22,38,0.0 +16902,40,18.4,21,0.0 +16902,55,24,42,0.0 +16902,18,62.5,20,0.0 +16902,39,18,45,0.0 +16902,5,21.35,37,0.0 +16902,62,49.3,26,0.0 +16902,47,9.5,11,0.0 +16902,11,21,37,0.0 +16902,23,9,14,0.0 +16903,77,13,29,0.0 +16903,71,21.5,2,0.0 +16903,31,12.5,12,0.0 +16903,70,15,10,0.0 +16903,45,9.5,35,0.0 +16903,39,18,45,0.0 +16903,36,19,40,0.0 +16903,11,21,33,0.0 +16903,55,24,30,0.0 +16903,38,263.5,46,0.0 +16903,65,21.05,15,0.0 +16903,59,55,44,0.0 +16903,17,39,46,0.0 +16903,75,7.75,33,0.0 +16903,64,33.25,28,0.0 +16903,52,7,7,0.0 +16903,48,12.75,14,0.0 +16903,21,10,30,0.0 +16903,69,36,5,0.0 +16903,2,19,39,0.0 +16903,73,15,12,0.0 +16903,56,38,48,0.0 +16903,35,18,4,0.0 +16903,12,38,48,0.0 +16903,74,10,47,0.0 +16903,33,2.5,25,0.0 +16903,63,43.9,15,0.0 +16903,41,9.65,45,0.0 +16903,30,25.89,13,0.0 +16903,1,18,24,0.0 +16903,61,28.5,27,0.0 +16903,72,34.8,7,0.0 +16903,18,62.5,35,0.0 +16903,19,9.2,47,0.0 +16903,57,19.5,25,0.0 +16903,68,12.5,40,0.0 +16903,9,97,6,0.0 +16903,14,23.25,30,0.0 +16903,24,4.5,9,0.0 +16904,17,39,46,0.0 +16904,37,26,13,0.0 +16904,6,25,50,0.0 +16904,51,53,9,0.0 +16904,28,45.6,20,0.0 +16904,10,31,33,0.0 +16904,27,43.9,40,0.0 +16904,58,13.25,18,0.0 +16904,7,30,37,0.0 +16905,6,25,11,0.0 +16905,68,12.5,22,0.0 +16905,21,10,21,0.0 +16905,23,9,3,0.0 +16905,60,34,15,0.0 +16905,76,18,18,0.0 +16905,30,25.89,41,0.0 +16906,34,14,44,0.0 +16906,24,4.5,44,0.0 +16906,48,12.75,29,0.0 +16907,18,62.5,44,0.0 +16907,23,9,47,0.0 +16907,40,18.4,8,0.0 +16907,70,15,16,0.0 +16907,27,43.9,22,0.0 +16907,2,19,14,0.0 +16907,21,10,17,0.0 +16907,13,6,48,0.0 +16907,54,7.45,26,0.0 +16907,37,26,31,0.0 +16907,55,24,32,0.0 +16907,52,7,28,0.0 +16907,57,19.5,26,0.0 +16907,41,9.65,45,0.0 +16907,68,12.5,27,0.0 +16907,26,31.23,7,0.0 +16907,4,22,35,0.0 +16907,22,21,7,0.0 +16907,77,13,9,0.0 +16907,59,55,42,0.0 +16907,34,14,42,0.0 +16907,12,38,40,0.0 +16907,65,21.05,42,0.0 +16907,24,4.5,41,0.0 +16907,60,34,35,0.0 +16907,50,16.25,43,0.0 +16907,30,25.89,16,0.0 +16907,48,12.75,47,0.0 +16907,56,38,7,0.0 +16907,42,14,8,0.0 +16907,5,21.35,26,0.0 +16907,15,15.5,50,0.0 +16907,46,12,2,0.0 +16907,3,10,21,0.0 +16907,7,30,47,0.0 +16907,51,53,14,0.0 +16907,32,32,32,0.0 +16907,53,32.8,22,0.0 +16907,17,39,45,0.0 +16907,38,263.5,47,0.0 +16907,31,12.5,38,0.0 +16907,67,14,40,0.0 +16907,20,81,49,0.0 +16907,71,21.5,28,0.0 +16907,43,46,9,0.0 +16907,33,2.5,8,0.0 +16907,73,15,32,0.0 +16907,64,33.25,31,0.0 +16907,16,17.45,10,0.0 +16907,49,20,23,0.0 +16907,45,9.5,15,0.0 +16907,25,14,24,0.0 +16907,72,34.8,38,0.0 +16907,35,18,41,0.0 +16907,76,18,47,0.0 +16907,63,43.9,28,0.0 +16907,36,19,39,0.0 +16907,19,9.2,33,0.0 +16907,28,45.6,10,0.0 +16907,39,18,22,0.0 +16907,8,40,13,0.0 +16908,43,46,33,0.0 +16908,59,55,28,0.0 +16908,28,45.6,50,0.0 +16908,56,38,30,0.0 +16908,32,32,19,0.0 +16908,12,38,35,0.0 +16908,14,23.25,37,0.0 +16908,44,19.45,2,0.0 +16908,24,4.5,23,0.0 +16908,76,18,25,0.0 +16908,39,18,17,0.0 +16908,71,21.5,35,0.0 +16908,34,14,34,0.0 +16908,63,43.9,10,0.0 +16908,31,12.5,43,0.0 +16908,38,263.5,48,0.0 +16908,10,31,47,0.0 +16908,36,19,3,0.0 +16908,77,13,28,0.0 +16908,5,21.35,12,0.0 +16908,11,21,28,0.0 +16908,25,14,49,0.0 +16908,33,2.5,37,0.0 +16908,30,25.89,12,0.0 +16908,73,15,50,0.0 +16908,52,7,29,0.0 +16908,54,7.45,4,0.0 +16908,62,49.3,47,0.0 +16908,66,17,50,0.0 +16908,57,19.5,41,0.0 +16908,9,97,29,0.0 +16908,64,33.25,14,0.0 +16908,45,9.5,1,0.0 +16908,72,34.8,27,0.0 +16908,40,18.4,8,0.0 +16908,27,43.9,13,0.0 +16908,48,12.75,2,0.0 +16908,6,25,36,0.0 +16908,23,9,46,0.0 +16908,21,10,44,0.0 +16908,58,13.25,19,0.0 +16908,1,18,12,0.0 +16908,19,9.2,37,0.0 +16908,20,81,48,0.0 +16908,26,31.23,39,0.0 +16908,70,15,43,0.0 +16908,3,10,49,0.0 +16908,49,20,15,0.0 +16908,2,19,29,0.0 +16908,35,18,40,0.0 +16908,46,12,28,0.0 +16908,75,7.75,4,0.0 +16908,65,21.05,14,0.0 +16908,51,53,37,0.0 +16909,12,38,22,0.0 +16909,17,39,41,0.0 +16909,53,32.8,14,0.0 +16909,74,10,46,0.0 +16909,62,49.3,24,0.0 +16909,72,34.8,16,0.0 +16909,7,30,17,0.0 +16909,54,7.45,45,0.0 +16909,77,13,8,0.0 +16909,75,7.75,18,0.0 +16909,16,17.45,6,0.0 +16909,29,123.79,46,0.0 +16909,5,21.35,4,0.0 +16909,60,34,41,0.0 +16909,15,15.5,48,0.0 +16909,35,18,27,0.0 +16909,24,4.5,48,0.0 +16909,18,62.5,42,0.0 +16909,11,21,43,0.0 +16909,42,14,22,0.0 +16909,55,24,13,0.0 +16909,20,81,37,0.0 +16909,3,10,47,0.0 +16909,10,31,21,0.0 +16909,69,36,5,0.0 +16909,49,20,30,0.0 +16909,9,97,32,0.0 +16909,65,21.05,49,0.0 +16909,14,23.25,1,0.0 +16909,1,18,25,0.0 +16909,2,19,41,0.0 +16909,43,46,2,0.0 +16909,25,14,14,0.0 +16909,73,15,8,0.0 +16909,32,32,48,0.0 +16909,34,14,33,0.0 +16909,37,26,48,0.0 +16909,48,12.75,48,0.0 +16909,63,43.9,11,0.0 +16909,6,25,43,0.0 +16909,19,9.2,31,0.0 +16909,76,18,4,0.0 +16909,67,14,1,0.0 +16909,4,22,9,0.0 +16909,36,19,43,0.0 +16909,71,21.5,21,0.0 +16909,22,21,9,0.0 +16909,70,15,10,0.0 +16910,36,19,28,0.0 +16910,21,10,22,0.0 +16910,9,97,46,0.0 +16910,35,18,36,0.0 +16910,62,49.3,13,0.0 +16910,77,13,18,0.0 +16910,68,12.5,50,0.0 +16910,25,14,43,0.0 +16910,10,31,18,0.0 +16910,65,21.05,28,0.0 +16910,69,36,28,0.0 +16910,23,9,48,0.0 +16910,59,55,3,0.0 +16910,56,38,7,0.0 +16910,53,32.8,25,0.0 +16910,34,14,36,0.0 +16910,8,40,47,0.0 +16910,3,10,45,0.0 +16910,73,15,2,0.0 +16910,26,31.23,19,0.0 +16910,19,9.2,23,0.0 +16910,58,13.25,19,0.0 +16910,5,21.35,45,0.0 +16910,18,62.5,47,0.0 +16910,70,15,22,0.0 +16910,75,7.75,18,0.0 +16910,43,46,6,0.0 +16910,7,30,20,0.0 +16910,66,17,31,0.0 +16910,76,18,48,0.0 +16910,24,4.5,10,0.0 +16910,52,7,9,0.0 +16910,28,45.6,50,0.0 +16910,50,16.25,28,0.0 +16910,44,19.45,5,0.0 +16910,57,19.5,23,0.0 +16910,1,18,35,0.0 +16910,48,12.75,5,0.0 +16910,6,25,10,0.0 +16910,74,10,49,0.0 +16910,55,24,43,0.0 +16910,37,26,20,0.0 +16910,39,18,8,0.0 +16910,13,6,2,0.0 +16910,72,34.8,34,0.0 +16910,61,28.5,30,0.0 +16910,49,20,5,0.0 +16910,4,22,18,0.0 +16910,32,32,15,0.0 +16910,20,81,30,0.0 +16910,71,21.5,17,0.0 +16910,45,9.5,33,0.0 +16910,16,17.45,49,0.0 +16910,33,2.5,18,0.0 +16910,15,15.5,48,0.0 +16910,31,12.5,24,0.0 +16910,63,43.9,40,0.0 +16910,30,25.89,33,0.0 +16910,67,14,18,0.0 +16910,2,19,46,0.0 +16910,60,34,18,0.0 +16910,40,18.4,10,0.0 +16910,11,21,9,0.0 +16910,42,14,2,0.0 +16910,29,123.79,46,0.0 +16910,54,7.45,33,0.0 +16910,64,33.25,2,0.0 +16910,12,38,17,0.0 +16911,10,31,39,0.0 +16911,52,7,5,0.0 +16911,32,32,39,0.0 +16911,24,4.5,18,0.0 +16911,77,13,3,0.0 +16911,9,97,31,0.0 +16911,58,13.25,1,0.0 +16911,51,53,34,0.0 +16911,5,21.35,47,0.0 +16911,4,22,24,0.0 +16911,73,15,8,0.0 +16911,30,25.89,13,0.0 +16911,42,14,24,0.0 +16911,45,9.5,4,0.0 +16911,3,10,9,0.0 +16911,55,24,8,0.0 +16911,48,12.75,40,0.0 +16911,60,34,14,0.0 +16911,40,18.4,8,0.0 +16911,26,31.23,11,0.0 +16911,65,21.05,25,0.0 +16911,76,18,27,0.0 +16911,1,18,50,0.0 +16911,59,55,23,0.0 +16911,11,21,50,0.0 +16911,49,20,44,0.0 +16911,18,62.5,28,0.0 +16911,22,21,21,0.0 +16911,33,2.5,47,0.0 +16911,34,14,33,0.0 +16911,2,19,12,0.0 +16911,23,9,5,0.0 +16911,71,21.5,44,0.0 +16911,47,9.5,8,0.0 +16911,57,19.5,10,0.0 +16911,12,38,14,0.0 +16911,13,6,38,0.0 +16911,54,7.45,33,0.0 +16911,35,18,17,0.0 +16911,53,32.8,34,0.0 +16911,36,19,15,0.0 +16911,64,33.25,7,0.0 +16911,61,28.5,11,0.0 +16911,25,14,2,0.0 +16911,67,14,50,0.0 +16911,63,43.9,22,0.0 +16911,50,16.25,49,0.0 +16911,16,17.45,2,0.0 +16911,19,9.2,6,0.0 +16911,15,15.5,31,0.0 +16911,28,45.6,31,0.0 +16911,41,9.65,24,0.0 +16911,75,7.75,42,0.0 +16911,38,263.5,17,0.0 +16911,37,26,27,0.0 +16911,74,10,45,0.0 +16911,31,12.5,36,0.0 +16911,27,43.9,44,0.0 +16911,66,17,29,0.0 +16911,44,19.45,45,0.0 +16911,43,46,47,0.0 +16911,29,123.79,10,0.0 +16911,7,30,4,0.0 +16911,17,39,2,0.0 +16911,62,49.3,27,0.0 +16911,8,40,24,0.0 +16911,69,36,13,0.0 +16911,21,10,44,0.0 +16911,20,81,15,0.0 +16911,6,25,40,0.0 +16911,14,23.25,35,0.0 +16911,56,38,25,0.0 +16912,15,15.5,25,0.0 +16912,31,12.5,19,0.0 +16912,40,18.4,37,0.0 +16912,66,17,40,0.0 +16912,61,28.5,18,0.0 +16912,69,36,11,0.0 +16912,27,43.9,22,0.0 +16912,19,9.2,32,0.0 +16912,26,31.23,28,0.0 +16912,28,45.6,46,0.0 +16912,33,2.5,21,0.0 +16912,49,20,48,0.0 +16912,16,17.45,9,0.0 +16912,32,32,28,0.0 +16912,38,263.5,4,0.0 +16912,53,32.8,14,0.0 +16912,47,9.5,36,0.0 +16912,50,16.25,19,0.0 +16912,72,34.8,31,0.0 +16912,35,18,38,0.0 +16912,29,123.79,40,0.0 +16913,42,14,34,0.0 +16913,55,24,31,0.0 +16913,71,21.5,43,0.0 +16913,72,34.8,41,0.0 +16913,65,21.05,4,0.0 +16913,64,33.25,17,0.0 +16913,67,14,8,0.0 +16914,7,30,40,0.0 +16914,59,55,3,0.0 +16914,27,43.9,30,0.0 +16914,3,10,34,0.0 +16914,39,18,28,0.0 +16914,36,19,42,0.0 +16914,4,22,12,0.0 +16914,75,7.75,12,0.0 +16914,35,18,21,0.0 +16914,74,10,43,0.0 +16914,30,25.89,39,0.0 +16914,16,17.45,35,0.0 +16914,37,26,48,0.0 +16914,58,13.25,32,0.0 +16914,34,14,14,0.0 +16914,47,9.5,38,0.0 +16914,54,7.45,41,0.0 +16914,9,97,16,0.0 +16914,14,23.25,45,0.0 +16914,44,19.45,47,0.0 +16914,32,32,50,0.0 +16914,64,33.25,39,0.0 +16914,5,21.35,5,0.0 +16914,21,10,42,0.0 +16914,65,21.05,26,0.0 +16914,28,45.6,7,0.0 +16914,13,6,22,0.0 +16914,29,123.79,9,0.0 +16914,42,14,4,0.0 +16914,53,32.8,38,0.0 +16914,8,40,6,0.0 +16914,66,17,31,0.0 +16914,23,9,14,0.0 +16914,41,9.65,49,0.0 +16914,20,81,19,0.0 +16914,57,19.5,7,0.0 +16914,61,28.5,9,0.0 +16914,60,34,27,0.0 +16914,2,19,32,0.0 +16914,62,49.3,48,0.0 +16914,43,46,43,0.0 +16914,77,13,28,0.0 +16914,40,18.4,36,0.0 +16914,67,14,25,0.0 +16914,10,31,44,0.0 +16914,6,25,6,0.0 +16914,33,2.5,8,0.0 +16914,50,16.25,11,0.0 +16914,38,263.5,47,0.0 +16914,25,14,50,0.0 +16914,76,18,32,0.0 +16914,22,21,46,0.0 +16914,31,12.5,16,0.0 +16914,52,7,49,0.0 +16914,18,62.5,2,0.0 +16914,55,24,44,0.0 +16914,70,15,32,0.0 +16914,11,21,37,0.0 +16914,51,53,34,0.0 +16914,45,9.5,29,0.0 +16915,22,21,40,0.0 +16915,27,43.9,24,0.0 +16915,74,10,22,0.0 +16915,23,9,18,0.0 +16915,47,9.5,24,0.0 +16915,28,45.6,35,0.0 +16915,61,28.5,11,0.0 +16915,34,14,29,0.0 +16915,56,38,26,0.0 +16915,76,18,37,0.0 +16915,43,46,37,0.0 +16916,77,13,49,0.0 +16916,70,15,25,0.0 +16916,31,12.5,37,0.0 +16916,6,25,41,0.0 +16916,24,4.5,40,0.0 +16916,57,19.5,28,0.0 +16916,30,25.89,49,0.0 +16916,54,7.45,1,0.0 +16916,27,43.9,15,0.0 +16916,48,12.75,46,0.0 +16916,61,28.5,33,0.0 +16916,22,21,20,0.0 +16916,38,263.5,41,0.0 +16916,68,12.5,14,0.0 +16916,66,17,46,0.0 +16916,21,10,15,0.0 +16916,20,81,38,0.0 +16916,34,14,21,0.0 +16916,44,19.45,38,0.0 +16916,73,15,11,0.0 +16916,1,18,50,0.0 +16916,13,6,8,0.0 +16916,43,46,23,0.0 +16916,47,9.5,17,0.0 +16916,50,16.25,42,0.0 +16916,39,18,1,0.0 +16916,5,21.35,9,0.0 +16916,17,39,36,0.0 +16916,28,45.6,31,0.0 +16916,11,21,7,0.0 +16916,19,9.2,25,0.0 +16916,58,13.25,21,0.0 +16916,4,22,48,0.0 +16916,32,32,35,0.0 +16916,12,38,24,0.0 +16916,40,18.4,25,0.0 +16916,46,12,30,0.0 +16916,72,34.8,47,0.0 +16916,74,10,41,0.0 +16916,25,14,3,0.0 +16916,41,9.65,18,0.0 +16917,7,30,42,0.0 +16917,64,33.25,20,0.0 +16917,61,28.5,42,0.0 +16917,31,12.5,25,0.0 +16917,48,12.75,34,0.0 +16917,69,36,32,0.0 +16917,4,22,2,0.0 +16917,9,97,36,0.0 +16917,23,9,17,0.0 +16917,74,10,11,0.0 +16917,72,34.8,34,0.0 +16917,63,43.9,17,0.0 +16917,26,31.23,32,0.0 +16917,22,21,35,0.0 +16917,18,62.5,40,0.0 +16917,36,19,18,0.0 +16917,52,7,5,0.0 +16917,19,9.2,29,0.0 +16917,33,2.5,3,0.0 +16917,39,18,1,0.0 +16917,2,19,4,0.0 +16917,32,32,37,0.0 +16917,20,81,15,0.0 +16917,56,38,7,0.0 +16917,70,15,8,0.0 +16917,14,23.25,12,0.0 +16917,57,19.5,20,0.0 +16917,24,4.5,22,0.0 +16917,42,14,1,0.0 +16917,77,13,1,0.0 +16917,3,10,47,0.0 +16917,13,6,37,0.0 +16917,34,14,36,0.0 +16917,67,14,10,0.0 +16917,65,21.05,49,0.0 +16917,68,12.5,19,0.0 +16917,55,24,14,0.0 +16917,28,45.6,35,0.0 +16917,25,14,29,0.0 +16917,46,12,19,0.0 +16917,40,18.4,31,0.0 +16917,75,7.75,40,0.0 +16917,16,17.45,46,0.0 +16917,11,21,14,0.0 +16917,58,13.25,44,0.0 +16917,49,20,31,0.0 +16917,51,53,28,0.0 +16917,21,10,12,0.0 +16917,53,32.8,3,0.0 +16917,76,18,26,0.0 +16917,5,21.35,3,0.0 +16917,17,39,9,0.0 +16917,62,49.3,38,0.0 +16917,37,26,8,0.0 +16917,6,25,31,0.0 +16917,73,15,50,0.0 +16917,35,18,25,0.0 +16917,1,18,38,0.0 +16917,50,16.25,36,0.0 +16917,59,55,3,0.0 +16917,30,25.89,41,0.0 +16917,66,17,50,0.0 +16917,45,9.5,45,0.0 +16918,26,31.23,31,0.0 +16918,46,12,35,0.0 +16918,3,10,27,0.0 +16918,61,28.5,7,0.0 +16918,18,62.5,43,0.0 +16918,65,21.05,9,0.0 +16918,25,14,45,0.0 +16918,49,20,13,0.0 +16918,6,25,21,0.0 +16918,24,4.5,3,0.0 +16918,1,18,25,0.0 +16918,55,24,6,0.0 +16918,9,97,43,0.0 +16918,63,43.9,31,0.0 +16918,74,10,44,0.0 +16918,56,38,1,0.0 +16918,39,18,1,0.0 +16918,37,26,11,0.0 +16918,20,81,41,0.0 +16918,60,34,11,0.0 +16918,43,46,42,0.0 +16918,22,21,43,0.0 +16918,59,55,19,0.0 +16918,29,123.79,3,0.0 +16918,73,15,6,0.0 +16918,72,34.8,34,0.0 +16918,7,30,4,0.0 +16918,45,9.5,34,0.0 +16918,53,32.8,32,0.0 +16918,42,14,49,0.0 +16918,16,17.45,35,0.0 +16918,62,49.3,39,0.0 +16918,64,33.25,17,0.0 +16918,67,14,15,0.0 +16918,5,21.35,18,0.0 +16918,19,9.2,38,0.0 +16918,38,263.5,41,0.0 +16918,33,2.5,29,0.0 +16918,11,21,46,0.0 +16918,14,23.25,17,0.0 +16918,4,22,39,0.0 +16918,54,7.45,6,0.0 +16918,21,10,20,0.0 +16918,30,25.89,18,0.0 +16918,76,18,20,0.0 +16918,23,9,15,0.0 +16918,40,18.4,5,0.0 +16918,44,19.45,12,0.0 +16918,70,15,11,0.0 +16918,12,38,24,0.0 +16918,77,13,45,0.0 +16918,32,32,45,0.0 +16918,10,31,50,0.0 +16918,36,19,18,0.0 +16918,68,12.5,41,0.0 +16918,27,43.9,26,0.0 +16918,34,14,30,0.0 +16918,17,39,17,0.0 +16918,57,19.5,16,0.0 +16918,15,15.5,49,0.0 +16918,31,12.5,22,0.0 +16918,50,16.25,14,0.0 +16918,2,19,15,0.0 +16919,61,28.5,38,0.0 +16919,16,17.45,37,0.0 +16919,42,14,33,0.0 +16919,40,18.4,47,0.0 +16919,36,19,21,0.0 +16919,58,13.25,28,0.0 +16919,31,12.5,5,0.0 +16919,26,31.23,30,0.0 +16919,65,21.05,41,0.0 +16919,33,2.5,4,0.0 +16919,53,32.8,47,0.0 +16919,49,20,35,0.0 +16919,25,14,30,0.0 +16919,47,9.5,9,0.0 +16919,22,21,24,0.0 +16919,75,7.75,36,0.0 +16919,10,31,34,0.0 +16919,23,9,48,0.0 +16919,3,10,37,0.0 +16919,1,18,47,0.0 +16919,8,40,17,0.0 +16919,63,43.9,48,0.0 +16919,2,19,8,0.0 +16919,29,123.79,38,0.0 +16919,5,21.35,13,0.0 +16919,20,81,43,0.0 +16919,45,9.5,37,0.0 +16919,18,62.5,30,0.0 +16919,60,34,1,0.0 +16919,12,38,45,0.0 +16919,21,10,4,0.0 +16919,54,7.45,5,0.0 +16919,41,9.65,30,0.0 +16919,51,53,19,0.0 +16919,24,4.5,33,0.0 +16919,37,26,47,0.0 +16919,6,25,45,0.0 +16919,17,39,35,0.0 +16919,27,43.9,22,0.0 +16919,77,13,43,0.0 +16919,19,9.2,39,0.0 +16919,52,7,4,0.0 +16919,69,36,27,0.0 +16919,35,18,23,0.0 +16920,51,53,33,0.0 +16920,45,9.5,20,0.0 +16920,36,19,12,0.0 +16920,29,123.79,41,0.0 +16920,57,19.5,7,0.0 +16920,35,18,39,0.0 +16920,48,12.75,18,0.0 +16920,5,21.35,5,0.0 +16920,52,7,37,0.0 +16920,30,25.89,35,0.0 +16920,49,20,34,0.0 +16920,70,15,5,0.0 +16920,75,7.75,23,0.0 +16920,37,26,10,0.0 +16920,63,43.9,18,0.0 +16920,4,22,36,0.0 +16920,22,21,18,0.0 +16920,66,17,47,0.0 +16920,26,31.23,8,0.0 +16920,39,18,25,0.0 +16920,65,21.05,3,0.0 +16920,27,43.9,15,0.0 +16920,10,31,28,0.0 +16920,56,38,10,0.0 +16920,47,9.5,6,0.0 +16920,68,12.5,28,0.0 +16920,1,18,8,0.0 +16920,34,14,17,0.0 +16920,23,9,32,0.0 +16920,64,33.25,12,0.0 +16920,28,45.6,30,0.0 +16920,25,14,28,0.0 +16920,59,55,7,0.0 +16920,46,12,19,0.0 +16920,55,24,43,0.0 +16920,50,16.25,34,0.0 +16920,62,49.3,28,0.0 +16920,13,6,50,0.0 +16920,2,19,9,0.0 +16920,60,34,6,0.0 +16920,61,28.5,50,0.0 +16920,74,10,33,0.0 +16920,44,19.45,3,0.0 +16920,24,4.5,15,0.0 +16920,11,21,21,0.0 +16920,41,9.65,40,0.0 +16920,58,13.25,35,0.0 +16920,38,263.5,25,0.0 +16920,9,97,24,0.0 +16920,17,39,31,0.0 +16920,32,32,20,0.0 +16920,8,40,24,0.0 +16920,76,18,6,0.0 +16920,54,7.45,28,0.0 +16920,19,9.2,10,0.0 +16920,73,15,42,0.0 +16920,14,23.25,10,0.0 +16920,31,12.5,43,0.0 +16920,12,38,34,0.0 +16920,53,32.8,4,0.0 +16920,6,25,25,0.0 +16920,15,15.5,31,0.0 +16920,71,21.5,50,0.0 +16920,20,81,17,0.0 +16920,77,13,9,0.0 +16920,69,36,47,0.0 +16921,55,24,7,0.0 +16921,57,19.5,38,0.0 +16921,22,21,18,0.0 +16921,65,21.05,36,0.0 +16921,34,14,46,0.0 +16921,44,19.45,33,0.0 +16921,21,10,33,0.0 +16921,7,30,7,0.0 +16921,64,33.25,33,0.0 +16921,73,15,26,0.0 +16921,63,43.9,6,0.0 +16921,19,9.2,46,0.0 +16921,54,7.45,13,0.0 +16921,36,19,19,0.0 +16921,35,18,12,0.0 +16921,50,16.25,45,0.0 +16921,56,38,15,0.0 +16921,60,34,4,0.0 +16921,47,9.5,48,0.0 +16921,48,12.75,23,0.0 +16921,8,40,50,0.0 +16921,2,19,38,0.0 +16921,23,9,26,0.0 +16921,26,31.23,48,0.0 +16921,11,21,45,0.0 +16921,20,81,40,0.0 +16921,29,123.79,24,0.0 +16921,27,43.9,27,0.0 +16921,30,25.89,23,0.0 +16921,38,263.5,43,0.0 +16921,62,49.3,29,0.0 +16921,5,21.35,22,0.0 +16921,59,55,44,0.0 +16921,43,46,20,0.0 +16921,51,53,14,0.0 +16921,72,34.8,30,0.0 +16921,58,13.25,18,0.0 +16921,18,62.5,3,0.0 +16921,75,7.75,27,0.0 +16921,53,32.8,2,0.0 +16921,46,12,26,0.0 +16921,33,2.5,40,0.0 +16921,76,18,18,0.0 +16921,37,26,15,0.0 +16921,14,23.25,43,0.0 +16921,52,7,50,0.0 +16921,45,9.5,20,0.0 +16921,41,9.65,50,0.0 +16921,25,14,6,0.0 +16921,4,22,45,0.0 +16921,70,15,41,0.0 +16921,40,18.4,18,0.0 +16921,12,38,10,0.0 +16921,42,14,18,0.0 +16921,24,4.5,2,0.0 +16921,77,13,7,0.0 +16921,69,36,38,0.0 +16921,68,12.5,27,0.0 +16921,15,15.5,18,0.0 +16921,9,97,29,0.0 +16921,13,6,14,0.0 +16921,39,18,11,0.0 +16922,42,14,18,0.0 +16922,21,10,38,0.0 +16922,18,62.5,6,0.0 +16922,30,25.89,43,0.0 +16922,38,263.5,46,0.0 +16922,15,15.5,27,0.0 +16922,47,9.5,6,0.0 +16922,52,7,49,0.0 +16922,61,28.5,47,0.0 +16922,66,17,17,0.0 +16922,13,6,35,0.0 +16922,44,19.45,31,0.0 +16922,62,49.3,30,0.0 +16922,17,39,3,0.0 +16922,54,7.45,3,0.0 +16922,75,7.75,45,0.0 +16922,10,31,2,0.0 +16922,59,55,7,0.0 +16922,22,21,39,0.0 +16922,70,15,33,0.0 +16922,76,18,33,0.0 +16922,64,33.25,26,0.0 +16922,51,53,48,0.0 +16922,2,19,31,0.0 +16922,9,97,2,0.0 +16922,53,32.8,49,0.0 +16922,24,4.5,7,0.0 +16922,49,20,1,0.0 +16922,4,22,23,0.0 +16922,63,43.9,23,0.0 +16922,28,45.6,38,0.0 +16922,48,12.75,18,0.0 +16922,65,21.05,16,0.0 +16922,33,2.5,31,0.0 +16922,37,26,33,0.0 +16922,1,18,32,0.0 +16922,6,25,11,0.0 +16922,40,18.4,41,0.0 +16922,50,16.25,17,0.0 +16922,71,21.5,37,0.0 +16922,23,9,11,0.0 +16922,41,9.65,40,0.0 +16922,58,13.25,9,0.0 +16922,77,13,17,0.0 +16922,55,24,7,0.0 +16922,8,40,16,0.0 +16922,36,19,31,0.0 +16922,39,18,41,0.0 +16922,34,14,5,0.0 +16922,25,14,6,0.0 +16922,12,38,47,0.0 +16922,5,21.35,29,0.0 +16922,60,34,30,0.0 +16922,69,36,19,0.0 +16922,67,14,33,0.0 +16922,43,46,43,0.0 +16922,35,18,50,0.0 +16922,20,81,21,0.0 +16922,32,32,4,0.0 +16922,45,9.5,1,0.0 +16922,74,10,26,0.0 +16922,11,21,20,0.0 +16922,7,30,34,0.0 +16922,16,17.45,38,0.0 +16922,56,38,37,0.0 +16922,27,43.9,10,0.0 +16922,31,12.5,8,0.0 +16922,68,12.5,44,0.0 +16922,46,12,45,0.0 +16922,14,23.25,34,0.0 +16922,26,31.23,42,0.0 +16922,72,34.8,22,0.0 +16922,29,123.79,7,0.0 +16922,57,19.5,23,0.0 +16923,7,30,1,0.0 +16923,5,21.35,39,0.0 +16923,31,12.5,30,0.0 +16923,22,21,47,0.0 +16923,23,9,47,0.0 +16923,68,12.5,33,0.0 +16923,1,18,38,0.0 +16923,24,4.5,36,0.0 +16923,63,43.9,18,0.0 +16923,26,31.23,40,0.0 +16923,16,17.45,2,0.0 +16923,3,10,13,0.0 +16923,60,34,44,0.0 +16923,72,34.8,40,0.0 +16923,34,14,13,0.0 +16923,39,18,34,0.0 +16923,11,21,38,0.0 +16923,19,9.2,41,0.0 +16923,64,33.25,8,0.0 +16923,50,16.25,28,0.0 +16923,47,9.5,33,0.0 +16923,56,38,32,0.0 +16923,15,15.5,25,0.0 +16923,21,10,3,0.0 +16923,61,28.5,45,0.0 +16923,32,32,30,0.0 +16923,37,26,40,0.0 +16923,49,20,49,0.0 +16923,76,18,38,0.0 +16923,48,12.75,25,0.0 +16923,57,19.5,18,0.0 +16923,59,55,24,0.0 +16923,6,25,40,0.0 +16923,58,13.25,24,0.0 +16923,67,14,30,0.0 +16923,35,18,20,0.0 +16923,71,21.5,22,0.0 +16923,10,31,35,0.0 +16923,29,123.79,36,0.0 +16923,13,6,3,0.0 +16923,55,24,19,0.0 +16923,66,17,20,0.0 +16923,36,19,44,0.0 +16923,65,21.05,17,0.0 +16923,25,14,8,0.0 +16923,27,43.9,30,0.0 +16923,4,22,38,0.0 +16923,46,12,8,0.0 +16923,75,7.75,20,0.0 +16923,43,46,34,0.0 +16923,30,25.89,36,0.0 +16923,70,15,11,0.0 +16923,45,9.5,48,0.0 +16923,41,9.65,21,0.0 +16923,53,32.8,23,0.0 +16923,9,97,28,0.0 +16923,51,53,47,0.0 +16923,74,10,37,0.0 +16923,42,14,23,0.0 +16923,40,18.4,2,0.0 +16923,44,19.45,21,0.0 +16923,33,2.5,16,0.0 +16924,54,7.45,30,0.0 +16924,57,19.5,14,0.0 +16924,69,36,16,0.0 +16924,16,17.45,43,0.0 +16924,64,33.25,15,0.0 +16924,13,6,26,0.0 +16924,38,263.5,8,0.0 +16924,39,18,16,0.0 +16924,45,9.5,20,0.0 +16924,60,34,26,0.0 +16924,8,40,18,0.0 +16924,76,18,7,0.0 +16924,28,45.6,23,0.0 +16924,29,123.79,3,0.0 +16924,26,31.23,40,0.0 +16924,37,26,26,0.0 +16924,41,9.65,34,0.0 +16924,34,14,31,0.0 +16924,58,13.25,16,0.0 +16924,70,15,38,0.0 +16924,15,15.5,29,0.0 +16924,2,19,41,0.0 +16924,6,25,16,0.0 +16924,48,12.75,39,0.0 +16924,4,22,19,0.0 +16924,77,13,3,0.0 +16924,47,9.5,26,0.0 +16924,59,55,28,0.0 +16924,52,7,38,0.0 +16924,43,46,48,0.0 +16924,10,31,7,0.0 +16924,9,97,1,0.0 +16924,1,18,9,0.0 +16924,74,10,27,0.0 +16924,40,18.4,6,0.0 +16924,7,30,30,0.0 +16924,56,38,46,0.0 +16924,42,14,30,0.0 +16924,63,43.9,22,0.0 +16924,55,24,35,0.0 +16924,5,21.35,23,0.0 +16924,20,81,27,0.0 +16924,73,15,39,0.0 +16924,71,21.5,47,0.0 +16924,35,18,36,0.0 +16924,72,34.8,12,0.0 +16924,49,20,33,0.0 +16924,12,38,32,0.0 +16924,53,32.8,48,0.0 +16924,23,9,30,0.0 +16924,21,10,5,0.0 +16924,61,28.5,48,0.0 +16924,3,10,18,0.0 +16924,68,12.5,24,0.0 +16924,66,17,34,0.0 +16924,67,14,22,0.0 +16924,44,19.45,50,0.0 +16924,51,53,27,0.0 +16924,75,7.75,40,0.0 +16924,11,21,8,0.0 +16924,62,49.3,45,0.0 +16924,17,39,24,0.0 +16924,19,9.2,1,0.0 +16924,50,16.25,30,0.0 +16924,25,14,47,0.0 +16924,46,12,10,0.0 +16924,33,2.5,47,0.0 +16924,32,32,30,0.0 +16924,18,62.5,4,0.0 +16924,22,21,30,0.0 +16924,27,43.9,44,0.0 +16924,31,12.5,26,0.0 +16924,24,4.5,16,0.0 +16924,30,25.89,7,0.0 +16924,36,19,31,0.0 +16924,65,21.05,1,0.0 +16924,14,23.25,35,0.0 +16925,76,18,41,0.0 +16925,2,19,6,0.0 +16925,75,7.75,23,0.0 +16925,6,25,16,0.0 +16925,74,10,35,0.0 +16925,68,12.5,46,0.0 +16925,39,18,8,0.0 +16925,20,81,37,0.0 +16925,1,18,18,0.0 +16925,25,14,38,0.0 +16925,17,39,8,0.0 +16925,47,9.5,26,0.0 +16925,31,12.5,25,0.0 +16925,13,6,25,0.0 +16925,69,36,48,0.0 +16925,77,13,2,0.0 +16925,37,26,16,0.0 +16925,72,34.8,49,0.0 +16926,16,17.45,28,0.0 +16926,50,16.25,5,0.0 +16926,9,97,16,0.0 +16926,15,15.5,5,0.0 +16926,4,22,1,0.0 +16926,7,30,18,0.0 +16926,68,12.5,34,0.0 +16926,73,15,30,0.0 +16926,31,12.5,43,0.0 +16926,62,49.3,7,0.0 +16926,24,4.5,2,0.0 +16926,43,46,30,0.0 +16926,67,14,42,0.0 +16926,64,33.25,15,0.0 +16926,6,25,48,0.0 +16926,37,26,3,0.0 +16926,53,32.8,10,0.0 +16926,60,34,33,0.0 +16926,32,32,40,0.0 +16926,72,34.8,46,0.0 +16926,26,31.23,25,0.0 +16926,58,13.25,44,0.0 +16926,38,263.5,23,0.0 +16926,55,24,39,0.0 +16926,13,6,1,0.0 +16926,46,12,21,0.0 +16926,74,10,3,0.0 +16926,14,23.25,7,0.0 +16926,66,17,50,0.0 +16926,54,7.45,5,0.0 +16926,47,9.5,2,0.0 +16926,35,18,47,0.0 +16926,65,21.05,26,0.0 +16927,17,39,20,0.0 +16927,70,15,2,0.0 +16927,34,14,8,0.0 +16927,66,17,50,0.0 +16927,57,19.5,38,0.0 +16927,10,31,35,0.0 +16927,24,4.5,9,0.0 +16927,35,18,40,0.0 +16927,72,34.8,24,0.0 +16927,9,97,16,0.0 +16927,27,43.9,18,0.0 +16927,52,7,5,0.0 +16927,7,30,24,0.0 +16927,50,16.25,22,0.0 +16927,28,45.6,12,0.0 +16927,56,38,11,0.0 +16927,44,19.45,1,0.0 +16927,71,21.5,9,0.0 +16927,45,9.5,50,0.0 +16927,51,53,48,0.0 +16927,13,6,40,0.0 +16927,36,19,8,0.0 +16927,14,23.25,35,0.0 +16927,63,43.9,30,0.0 +16927,23,9,29,0.0 +16927,69,36,32,0.0 +16927,75,7.75,32,0.0 +16927,68,12.5,1,0.0 +16927,48,12.75,32,0.0 +16927,39,18,35,0.0 +16927,53,32.8,49,0.0 +16927,65,21.05,35,0.0 +16927,12,38,32,0.0 +16927,16,17.45,16,0.0 +16927,3,10,43,0.0 +16927,55,24,43,0.0 +16927,58,13.25,28,0.0 +16927,5,21.35,9,0.0 +16927,74,10,11,0.0 +16927,25,14,49,0.0 +16927,30,25.89,38,0.0 +16927,38,263.5,36,0.0 +16927,8,40,22,0.0 +16927,77,13,31,0.0 +16927,59,55,18,0.0 +16927,33,2.5,38,0.0 +16927,15,15.5,27,0.0 +16927,49,20,10,0.0 +16927,37,26,41,0.0 +16927,6,25,47,0.0 +16927,32,32,33,0.0 +16927,54,7.45,6,0.0 +16927,60,34,33,0.0 +16927,76,18,23,0.0 +16927,31,12.5,22,0.0 +16927,41,9.65,29,0.0 +16927,4,22,22,0.0 +16927,67,14,50,0.0 +16927,42,14,14,0.0 +16927,18,62.5,26,0.0 +16927,73,15,45,0.0 +16927,61,28.5,19,0.0 +16928,76,18,50,0.0 +16928,27,43.9,26,0.0 +16928,21,10,2,0.0 +16928,55,24,25,0.0 +16928,48,12.75,8,0.0 +16928,1,18,31,0.0 +16928,30,25.89,4,0.0 +16928,51,53,30,0.0 +16928,40,18.4,14,0.0 +16928,17,39,10,0.0 +16928,12,38,16,0.0 +16928,41,9.65,11,0.0 +16928,32,32,9,0.0 +16928,46,12,43,0.0 +16928,57,19.5,13,0.0 +16928,35,18,31,0.0 +16928,75,7.75,37,0.0 +16928,68,12.5,29,0.0 +16928,11,21,36,0.0 +16928,33,2.5,47,0.0 +16928,42,14,32,0.0 +16928,13,6,47,0.0 +16928,7,30,39,0.0 +16928,8,40,8,0.0 +16928,62,49.3,18,0.0 +16928,54,7.45,49,0.0 +16928,69,36,25,0.0 +16928,4,22,26,0.0 +16928,22,21,20,0.0 +16928,64,33.25,16,0.0 +16928,45,9.5,14,0.0 +16928,72,34.8,22,0.0 +16929,27,43.9,19,0.0 +16929,55,24,10,0.0 +16929,21,10,28,0.0 +16929,6,25,30,0.0 +16929,12,38,37,0.0 +16929,41,9.65,41,0.0 +16929,43,46,37,0.0 +16929,51,53,32,0.0 +16929,7,30,8,0.0 +16929,34,14,20,0.0 +16929,10,31,13,0.0 +16929,61,28.5,5,0.0 +16929,14,23.25,30,0.0 +16929,76,18,4,0.0 +16929,32,32,25,0.0 +16929,26,31.23,23,0.0 +16929,16,17.45,6,0.0 +16929,66,17,40,0.0 +16929,4,22,18,0.0 +16929,59,55,28,0.0 +16929,60,34,47,0.0 +16929,40,18.4,13,0.0 +16929,70,15,39,0.0 +16929,52,7,8,0.0 +16929,46,12,47,0.0 +16929,5,21.35,28,0.0 +16929,30,25.89,14,0.0 +16929,57,19.5,40,0.0 +16930,9,97,50,0.0 +16930,65,21.05,9,0.0 +16930,74,10,22,0.0 +16930,37,26,23,0.0 +16930,19,9.2,3,0.0 +16930,60,34,6,0.0 +16930,69,36,12,0.0 +16930,43,46,27,0.0 +16930,14,23.25,18,0.0 +16930,75,7.75,46,0.0 +16930,30,25.89,24,0.0 +16930,25,14,28,0.0 +16930,51,53,7,0.0 +16930,21,10,33,0.0 +16930,32,32,44,0.0 +16930,45,9.5,15,0.0 +16930,26,31.23,47,0.0 +16930,76,18,12,0.0 +16930,67,14,50,0.0 +16930,58,13.25,3,0.0 +16930,57,19.5,12,0.0 +16930,10,31,15,0.0 +16930,15,15.5,16,0.0 +16930,11,21,13,0.0 +16930,23,9,1,0.0 +16930,70,15,1,0.0 +16930,35,18,20,0.0 +16930,55,24,1,0.0 +16930,2,19,43,0.0 +16930,54,7.45,38,0.0 +16930,6,25,10,0.0 +16930,42,14,34,0.0 +16930,64,33.25,50,0.0 +16930,66,17,35,0.0 +16930,53,32.8,17,0.0 +16930,22,21,11,0.0 +16930,31,12.5,27,0.0 +16930,47,9.5,38,0.0 +16930,56,38,27,0.0 +16930,44,19.45,39,0.0 +16930,41,9.65,13,0.0 +16930,52,7,26,0.0 +16930,40,18.4,1,0.0 +16930,61,28.5,14,0.0 +16931,49,20,34,0.0 +16931,74,10,49,0.0 +16931,28,45.6,20,0.0 +16931,1,18,40,0.0 +16931,40,18.4,6,0.0 +16931,29,123.79,5,0.0 +16931,73,15,33,0.0 +16931,67,14,49,0.0 +16931,23,9,50,0.0 +16931,48,12.75,4,0.0 +16931,61,28.5,44,0.0 +16931,11,21,35,0.0 +16931,75,7.75,30,0.0 +16931,21,10,13,0.0 +16931,76,18,50,0.0 +16931,46,12,6,0.0 +16931,8,40,37,0.0 +16931,18,62.5,4,0.0 +16931,19,9.2,26,0.0 +16931,41,9.65,36,0.0 +16931,59,55,6,0.0 +16931,33,2.5,36,0.0 +16931,43,46,41,0.0 +16931,31,12.5,33,0.0 +16931,54,7.45,9,0.0 +16931,7,30,15,0.0 +16931,2,19,50,0.0 +16931,70,15,45,0.0 +16931,42,14,49,0.0 +16931,50,16.25,46,0.0 +16931,71,21.5,33,0.0 +16931,14,23.25,33,0.0 +16932,60,34,11,0.0 +16932,70,15,28,0.0 +16932,42,14,9,0.0 +16932,52,7,48,0.0 +16932,16,17.45,50,0.0 +16932,37,26,48,0.0 +16932,38,263.5,3,0.0 +16932,5,21.35,13,0.0 +16932,25,14,49,0.0 +16932,77,13,8,0.0 +16932,65,21.05,18,0.0 +16932,19,9.2,33,0.0 +16932,35,18,50,0.0 +16932,18,62.5,8,0.0 +16932,21,10,28,0.0 +16932,73,15,12,0.0 +16932,75,7.75,47,0.0 +16932,24,4.5,16,0.0 +16932,7,30,1,0.0 +16932,23,9,20,0.0 +16932,76,18,33,0.0 +16932,13,6,31,0.0 +16932,40,18.4,26,0.0 +16932,44,19.45,13,0.0 +16932,59,55,23,0.0 +16932,55,24,22,0.0 +16932,45,9.5,25,0.0 +16932,61,28.5,34,0.0 +16932,33,2.5,35,0.0 +16932,11,21,48,0.0 +16932,67,14,22,0.0 +16932,41,9.65,48,0.0 +16932,62,49.3,3,0.0 +16932,9,97,40,0.0 +16932,66,17,35,0.0 +16932,10,31,32,0.0 +16932,14,23.25,25,0.0 +16932,36,19,8,0.0 +16932,31,12.5,28,0.0 +16932,20,81,15,0.0 +16932,6,25,14,0.0 +16932,30,25.89,9,0.0 +16932,46,12,45,0.0 +16932,39,18,3,0.0 +16932,4,22,31,0.0 +16932,64,33.25,27,0.0 +16932,57,19.5,11,0.0 +16933,58,13.25,45,0.0 +16933,31,12.5,7,0.0 +16933,70,15,25,0.0 +16933,37,26,19,0.0 +16933,39,18,1,0.0 +16933,33,2.5,28,0.0 +16933,47,9.5,4,0.0 +16933,73,15,16,0.0 +16933,17,39,16,0.0 +16933,3,10,24,0.0 +16933,38,263.5,45,0.0 +16933,62,49.3,20,0.0 +16933,59,55,13,0.0 +16933,43,46,37,0.0 +16933,54,7.45,1,0.0 +16933,45,9.5,41,0.0 +16933,55,24,4,0.0 +16933,42,14,30,0.0 +16933,69,36,11,0.0 +16933,6,25,19,0.0 +16933,7,30,47,0.0 +16933,23,9,17,0.0 +16933,71,21.5,29,0.0 +16933,57,19.5,18,0.0 +16933,44,19.45,2,0.0 +16933,64,33.25,7,0.0 +16933,10,31,30,0.0 +16933,65,21.05,19,0.0 +16933,50,16.25,18,0.0 +16933,32,32,23,0.0 +16933,72,34.8,7,0.0 +16933,53,32.8,35,0.0 +16933,8,40,14,0.0 +16933,49,20,5,0.0 +16933,13,6,12,0.0 +16933,60,34,39,0.0 +16933,18,62.5,34,0.0 +16933,11,21,49,0.0 +16933,34,14,38,0.0 +16933,22,21,33,0.0 +16933,12,38,50,0.0 +16933,24,4.5,10,0.0 +16933,14,23.25,41,0.0 +16933,19,9.2,24,0.0 +16933,68,12.5,44,0.0 +16933,4,22,28,0.0 +16933,9,97,47,0.0 +16933,63,43.9,49,0.0 +16933,35,18,4,0.0 +16933,76,18,40,0.0 +16933,40,18.4,42,0.0 +16933,77,13,38,0.0 +16933,28,45.6,9,0.0 +16933,56,38,50,0.0 +16933,74,10,20,0.0 +16933,15,15.5,9,0.0 +16933,25,14,32,0.0 +16933,66,17,18,0.0 +16933,67,14,3,0.0 +16933,1,18,45,0.0 +16933,26,31.23,24,0.0 +16933,48,12.75,24,0.0 +16933,75,7.75,16,0.0 +16933,52,7,35,0.0 +16933,36,19,19,0.0 +16933,29,123.79,19,0.0 +16933,30,25.89,2,0.0 +16933,27,43.9,6,0.0 +16933,21,10,30,0.0 +16933,46,12,23,0.0 +16933,61,28.5,46,0.0 +16933,41,9.65,48,0.0 +16933,16,17.45,45,0.0 +16933,2,19,35,0.0 +16933,20,81,22,0.0 +16934,44,19.45,5,0.0 +16934,28,45.6,37,0.0 +16934,16,17.45,31,0.0 +16934,12,38,40,0.0 +16934,30,25.89,48,0.0 +16934,20,81,41,0.0 +16934,67,14,40,0.0 +16934,60,34,23,0.0 +16934,27,43.9,35,0.0 +16934,40,18.4,16,0.0 +16934,66,17,17,0.0 +16934,25,14,1,0.0 +16934,43,46,5,0.0 +16934,11,21,18,0.0 +16934,47,9.5,19,0.0 +16934,74,10,31,0.0 +16934,22,21,35,0.0 +16934,54,7.45,47,0.0 +16934,23,9,39,0.0 +16934,3,10,22,0.0 +16934,42,14,5,0.0 +16934,8,40,49,0.0 +16934,36,19,23,0.0 +16934,46,12,16,0.0 +16934,49,20,29,0.0 +16934,65,21.05,47,0.0 +16934,56,38,11,0.0 +16934,31,12.5,21,0.0 +16934,13,6,17,0.0 +16934,38,263.5,9,0.0 +16934,15,15.5,17,0.0 +16934,39,18,10,0.0 +16934,70,15,23,0.0 +16934,51,53,33,0.0 +16934,75,7.75,27,0.0 +16934,9,97,5,0.0 +16934,18,62.5,39,0.0 +16934,50,16.25,2,0.0 +16934,48,12.75,15,0.0 +16934,63,43.9,26,0.0 +16934,76,18,25,0.0 +16934,35,18,40,0.0 +16934,24,4.5,35,0.0 +16934,64,33.25,9,0.0 +16934,69,36,7,0.0 +16934,62,49.3,29,0.0 +16934,52,7,34,0.0 +16934,55,24,6,0.0 +16934,4,22,5,0.0 +16934,29,123.79,30,0.0 +16934,10,31,22,0.0 +16934,33,2.5,47,0.0 +16934,19,9.2,48,0.0 +16934,6,25,14,0.0 +16934,77,13,4,0.0 +16934,58,13.25,6,0.0 +16934,41,9.65,28,0.0 +16935,31,12.5,24,0.0 +16935,44,19.45,41,0.0 +16935,48,12.75,46,0.0 +16935,17,39,32,0.0 +16935,52,7,47,0.0 +16935,24,4.5,38,0.0 +16935,20,81,49,0.0 +16935,40,18.4,7,0.0 +16935,8,40,30,0.0 +16935,58,13.25,1,0.0 +16935,5,21.35,30,0.0 +16935,51,53,43,0.0 +16935,49,20,1,0.0 +16935,75,7.75,22,0.0 +16935,19,9.2,43,0.0 +16935,30,25.89,48,0.0 +16935,15,15.5,24,0.0 +16935,54,7.45,21,0.0 +16935,61,28.5,2,0.0 +16935,32,32,21,0.0 +16935,76,18,22,0.0 +16935,36,19,30,0.0 +16935,39,18,17,0.0 +16935,23,9,4,0.0 +16935,35,18,5,0.0 +16935,67,14,30,0.0 +16935,27,43.9,2,0.0 +16935,18,62.5,25,0.0 +16935,6,25,19,0.0 +16935,14,23.25,46,0.0 +16935,64,33.25,16,0.0 +16935,16,17.45,28,0.0 +16935,28,45.6,40,0.0 +16935,25,14,33,0.0 +16935,47,9.5,50,0.0 +16935,73,15,2,0.0 +16935,55,24,24,0.0 +16935,53,32.8,15,0.0 +16935,57,19.5,28,0.0 +16935,68,12.5,45,0.0 +16935,56,38,45,0.0 +16935,3,10,29,0.0 +16935,74,10,3,0.0 +16935,2,19,47,0.0 +16935,43,46,19,0.0 +16935,46,12,11,0.0 +16935,13,6,3,0.0 +16935,72,34.8,21,0.0 +16935,37,26,18,0.0 +16935,59,55,44,0.0 +16935,69,36,12,0.0 +16935,41,9.65,8,0.0 +16935,29,123.79,45,0.0 +16935,77,13,3,0.0 +16935,4,22,31,0.0 +16935,62,49.3,5,0.0 +16935,12,38,35,0.0 +16935,34,14,7,0.0 +16936,76,18,50,0.0 +16936,13,6,7,0.0 +16936,65,21.05,2,0.0 +16936,49,20,7,0.0 +16936,3,10,30,0.0 +16936,17,39,22,0.0 +16936,55,24,3,0.0 +16936,28,45.6,19,0.0 +16936,59,55,6,0.0 +16936,19,9.2,35,0.0 +16936,41,9.65,11,0.0 +16936,77,13,29,0.0 +16936,35,18,48,0.0 +16936,12,38,8,0.0 +16936,52,7,36,0.0 +16936,10,31,10,0.0 +16936,72,34.8,35,0.0 +16936,62,49.3,6,0.0 +16936,73,15,38,0.0 +16936,37,26,13,0.0 +16936,69,36,17,0.0 +16936,5,21.35,50,0.0 +16936,45,9.5,27,0.0 +16936,20,81,21,0.0 +16936,61,28.5,24,0.0 +16936,74,10,22,0.0 +16936,18,62.5,23,0.0 +16936,58,13.25,26,0.0 +16936,63,43.9,22,0.0 +16936,23,9,37,0.0 +16936,33,2.5,26,0.0 +16936,60,34,43,0.0 +16936,42,14,18,0.0 +16936,15,15.5,5,0.0 +16936,75,7.75,34,0.0 +16936,40,18.4,27,0.0 +16936,38,263.5,3,0.0 +16936,11,21,32,0.0 +16936,56,38,34,0.0 +16936,64,33.25,48,0.0 +16936,2,19,43,0.0 +16936,67,14,41,0.0 +16936,43,46,29,0.0 +16936,24,4.5,50,0.0 +16936,71,21.5,28,0.0 +16936,47,9.5,2,0.0 +16936,8,40,2,0.0 +16936,34,14,47,0.0 +16936,31,12.5,4,0.0 +16936,70,15,29,0.0 +16936,7,30,8,0.0 +16936,54,7.45,18,0.0 +16936,6,25,5,0.0 +16936,25,14,2,0.0 +16936,44,19.45,34,0.0 +16936,66,17,38,0.0 +16936,9,97,39,0.0 +16936,16,17.45,50,0.0 +16937,39,18,34,0.0 +16937,18,62.5,50,0.0 +16937,62,49.3,25,0.0 +16937,66,17,1,0.0 +16937,26,31.23,23,0.0 +16937,41,9.65,42,0.0 +16937,37,26,36,0.0 +16937,47,9.5,19,0.0 +16937,6,25,35,0.0 +16937,33,2.5,41,0.0 +16937,64,33.25,23,0.0 +16937,5,21.35,13,0.0 +16937,59,55,43,0.0 +16937,50,16.25,44,0.0 +16937,21,10,15,0.0 +16937,74,10,42,0.0 +16937,51,53,26,0.0 +16937,1,18,2,0.0 +16937,65,21.05,41,0.0 +16937,34,14,41,0.0 +16937,54,7.45,50,0.0 +16937,31,12.5,44,0.0 +16937,35,18,17,0.0 +16937,10,31,48,0.0 +16937,48,12.75,14,0.0 +16937,20,81,36,0.0 +16937,36,19,10,0.0 +16937,55,24,44,0.0 +16937,76,18,14,0.0 +16937,56,38,19,0.0 +16938,43,46,21,0.0 +16938,39,18,48,0.0 +16938,30,25.89,35,0.0 +16938,18,62.5,39,0.0 +16938,48,12.75,12,0.0 +16938,72,34.8,45,0.0 +16938,67,14,47,0.0 +16938,45,9.5,21,0.0 +16938,15,15.5,25,0.0 +16938,63,43.9,27,0.0 +16938,51,53,16,0.0 +16938,19,9.2,2,0.0 +16938,74,10,14,0.0 +16938,37,26,34,0.0 +16938,23,9,31,0.0 +16938,28,45.6,29,0.0 +16938,77,13,23,0.0 +16938,60,34,19,0.0 +16938,10,31,43,0.0 +16938,52,7,17,0.0 +16938,24,4.5,15,0.0 +16938,34,14,50,0.0 +16938,7,30,19,0.0 +16938,55,24,31,0.0 +16938,68,12.5,19,0.0 +16938,3,10,2,0.0 +16938,22,21,13,0.0 +16938,76,18,27,0.0 +16938,11,21,44,0.0 +16938,42,14,24,0.0 +16938,57,19.5,50,0.0 +16938,71,21.5,49,0.0 +16938,46,12,32,0.0 +16938,69,36,22,0.0 +16938,49,20,28,0.0 +16938,58,13.25,33,0.0 +16938,6,25,24,0.0 +16938,53,32.8,24,0.0 +16938,13,6,9,0.0 +16938,70,15,31,0.0 +16939,19,9.2,29,0.0 +16939,55,24,18,0.0 +16939,59,55,32,0.0 +16939,54,7.45,44,0.0 +16939,74,10,32,0.0 +16939,41,9.65,26,0.0 +16939,25,14,39,0.0 +16939,48,12.75,47,0.0 +16939,61,28.5,26,0.0 +16939,15,15.5,42,0.0 +16939,30,25.89,30,0.0 +16939,16,17.45,46,0.0 +16939,12,38,14,0.0 +16939,26,31.23,15,0.0 +16939,7,30,16,0.0 +16939,42,14,50,0.0 +16939,60,34,33,0.0 +16939,13,6,30,0.0 +16939,66,17,15,0.0 +16939,64,33.25,11,0.0 +16939,47,9.5,48,0.0 +16939,52,7,27,0.0 +16939,1,18,36,0.0 +16939,37,26,8,0.0 +16939,46,12,26,0.0 +16939,2,19,43,0.0 +16939,14,23.25,7,0.0 +16939,20,81,29,0.0 +16939,73,15,48,0.0 +16939,28,45.6,49,0.0 +16939,68,12.5,24,0.0 +16939,36,19,24,0.0 +16939,44,19.45,26,0.0 +16939,10,31,22,0.0 +16939,22,21,17,0.0 +16939,53,32.8,40,0.0 +16939,45,9.5,2,0.0 +16939,6,25,44,0.0 +16939,72,34.8,40,0.0 +16939,50,16.25,48,0.0 +16939,51,53,1,0.0 +16939,35,18,10,0.0 +16939,75,7.75,25,0.0 +16939,63,43.9,19,0.0 +16939,49,20,37,0.0 +16939,18,62.5,20,0.0 +16939,34,14,30,0.0 +16939,21,10,24,0.0 +16939,38,263.5,24,0.0 +16939,33,2.5,41,0.0 +16939,40,18.4,41,0.0 +16939,62,49.3,49,0.0 +16939,70,15,17,0.0 +16939,24,4.5,5,0.0 +16939,27,43.9,19,0.0 +16939,11,21,25,0.0 +16939,56,38,2,0.0 +16939,4,22,4,0.0 +16939,77,13,45,0.0 +16939,32,32,16,0.0 +16939,8,40,45,0.0 +16939,39,18,32,0.0 +16939,3,10,12,0.0 +16939,43,46,14,0.0 +16939,67,14,26,0.0 +16939,69,36,28,0.0 +16939,9,97,24,0.0 +16939,5,21.35,1,0.0 +16939,57,19.5,33,0.0 +16939,58,13.25,21,0.0 +16940,18,62.5,31,0.0 +16940,11,21,49,0.0 +16940,39,18,49,0.0 +16940,53,32.8,50,0.0 +16940,29,123.79,30,0.0 +16940,33,2.5,34,0.0 +16940,63,43.9,6,0.0 +16940,62,49.3,35,0.0 +16941,65,21.05,34,0.0 +16941,76,18,30,0.0 +16941,59,55,47,0.0 +16941,74,10,11,0.0 +16941,8,40,2,0.0 +16941,2,19,9,0.0 +16941,9,97,26,0.0 +16941,51,53,16,0.0 +16941,38,263.5,22,0.0 +16941,22,21,25,0.0 +16941,46,12,30,0.0 +16941,75,7.75,38,0.0 +16941,16,17.45,21,0.0 +16941,56,38,46,0.0 +16941,66,17,16,0.0 +16941,49,20,24,0.0 +16941,30,25.89,41,0.0 +16941,47,9.5,2,0.0 +16941,4,22,18,0.0 +16941,57,19.5,13,0.0 +16941,77,13,14,0.0 +16941,34,14,2,0.0 +16941,10,31,19,0.0 +16941,13,6,41,0.0 +16941,37,26,21,0.0 +16941,61,28.5,37,0.0 +16941,40,18.4,46,0.0 +16941,23,9,23,0.0 +16941,58,13.25,2,0.0 +16941,5,21.35,43,0.0 +16941,68,12.5,34,0.0 +16941,29,123.79,11,0.0 +16941,27,43.9,20,0.0 +16941,60,34,47,0.0 +16941,69,36,8,0.0 +16941,31,12.5,21,0.0 +16941,43,46,50,0.0 +16941,32,32,20,0.0 +16941,24,4.5,18,0.0 +16941,14,23.25,12,0.0 +16941,67,14,39,0.0 +16941,50,16.25,32,0.0 +16941,63,43.9,22,0.0 +16941,25,14,6,0.0 +16941,1,18,5,0.0 +16941,18,62.5,49,0.0 +16941,41,9.65,37,0.0 +16941,73,15,34,0.0 +16941,64,33.25,15,0.0 +16941,3,10,19,0.0 +16941,44,19.45,47,0.0 +16941,48,12.75,48,0.0 +16941,21,10,43,0.0 +16941,42,14,18,0.0 +16941,71,21.5,24,0.0 +16941,54,7.45,13,0.0 +16941,11,21,48,0.0 +16941,55,24,38,0.0 +16941,45,9.5,13,0.0 +16941,35,18,22,0.0 +16941,15,15.5,28,0.0 +16941,36,19,38,0.0 +16941,7,30,38,0.0 +16942,39,18,45,0.0 +16942,38,263.5,38,0.0 +16942,14,23.25,19,0.0 +16942,10,31,7,0.0 +16942,67,14,16,0.0 +16942,40,18.4,14,0.0 +16942,42,14,40,0.0 +16942,77,13,20,0.0 +16942,45,9.5,31,0.0 +16942,4,22,39,0.0 +16942,13,6,47,0.0 +16942,71,21.5,34,0.0 +16942,8,40,18,0.0 +16942,11,21,6,0.0 +16942,64,33.25,6,0.0 +16942,46,12,18,0.0 +16942,9,97,50,0.0 +16942,27,43.9,2,0.0 +16942,23,9,34,0.0 +16942,69,36,48,0.0 +16942,22,21,27,0.0 +16942,59,55,14,0.0 +16942,48,12.75,40,0.0 +16942,18,62.5,28,0.0 +16942,51,53,11,0.0 +16942,55,24,43,0.0 +16942,60,34,7,0.0 +16942,56,38,30,0.0 +16942,68,12.5,35,0.0 +16942,52,7,26,0.0 +16942,73,15,38,0.0 +16942,1,18,43,0.0 +16942,49,20,49,0.0 +16942,17,39,47,0.0 +16942,3,10,48,0.0 +16942,41,9.65,37,0.0 +16942,72,34.8,48,0.0 +16942,34,14,45,0.0 +16942,74,10,10,0.0 +16942,61,28.5,19,0.0 +16942,47,9.5,2,0.0 +16942,53,32.8,10,0.0 +16942,36,19,37,0.0 +16942,19,9.2,7,0.0 +16942,26,31.23,40,0.0 +16942,70,15,4,0.0 +16942,65,21.05,2,0.0 +16942,29,123.79,1,0.0 +16942,58,13.25,48,0.0 +16942,25,14,31,0.0 +16942,24,4.5,32,0.0 +16942,15,15.5,6,0.0 +16942,12,38,45,0.0 +16942,66,17,3,0.0 +16942,35,18,19,0.0 +16943,10,31,44,0.0 +16943,40,18.4,13,0.0 +16943,18,62.5,11,0.0 +16943,8,40,5,0.0 +16943,54,7.45,34,0.0 +16943,75,7.75,5,0.0 +16943,73,15,23,0.0 +16943,47,9.5,36,0.0 +16943,66,17,9,0.0 +16943,3,10,32,0.0 +16943,19,9.2,30,0.0 +16943,57,19.5,19,0.0 +16943,13,6,25,0.0 +16943,27,43.9,49,0.0 +16943,25,14,50,0.0 +16943,42,14,20,0.0 +16943,14,23.25,50,0.0 +16943,37,26,40,0.0 +16943,46,12,34,0.0 +16943,50,16.25,3,0.0 +16943,33,2.5,42,0.0 +16943,61,28.5,26,0.0 +16943,6,25,18,0.0 +16943,23,9,49,0.0 +16943,60,34,34,0.0 +16943,17,39,46,0.0 +16943,35,18,48,0.0 +16943,30,25.89,37,0.0 +16943,51,53,21,0.0 +16943,70,15,7,0.0 +16944,61,28.5,2,0.0 +16944,72,34.8,31,0.0 +16944,31,12.5,35,0.0 +16944,65,21.05,41,0.0 +16944,52,7,30,0.0 +16944,38,263.5,34,0.0 +16944,75,7.75,49,0.0 +16944,5,21.35,39,0.0 +16944,55,24,39,0.0 +16944,56,38,10,0.0 +16944,37,26,47,0.0 +16944,14,23.25,44,0.0 +16944,50,16.25,18,0.0 +16944,48,12.75,45,0.0 +16944,77,13,44,0.0 +16944,27,43.9,47,0.0 +16944,71,21.5,25,0.0 +16944,35,18,36,0.0 +16944,32,32,25,0.0 +16944,51,53,13,0.0 +16944,41,9.65,47,0.0 +16944,25,14,49,0.0 +16944,63,43.9,40,0.0 +16944,47,9.5,33,0.0 +16944,36,19,45,0.0 +16944,10,31,22,0.0 +16944,11,21,47,0.0 +16944,34,14,26,0.0 +16944,30,25.89,41,0.0 +16944,9,97,4,0.0 +16944,45,9.5,29,0.0 +16944,3,10,31,0.0 +16944,6,25,36,0.0 +16944,39,18,19,0.0 +16944,1,18,48,0.0 +16944,29,123.79,44,0.0 +16944,69,36,48,0.0 +16944,66,17,3,0.0 +16944,20,81,27,0.0 +16944,16,17.45,16,0.0 +16944,15,15.5,37,0.0 +16944,19,9.2,2,0.0 +16944,59,55,45,0.0 +16944,62,49.3,10,0.0 +16944,68,12.5,44,0.0 +16944,44,19.45,6,0.0 +16944,74,10,44,0.0 +16945,62,49.3,29,0.0 +16945,27,43.9,18,0.0 +16945,54,7.45,26,0.0 +16945,51,53,3,0.0 +16945,69,36,45,0.0 +16945,3,10,38,0.0 +16945,44,19.45,8,0.0 +16945,4,22,22,0.0 +16945,10,31,13,0.0 +16945,53,32.8,18,0.0 +16945,8,40,34,0.0 +16945,12,38,43,0.0 +16945,21,10,2,0.0 +16945,41,9.65,24,0.0 +16945,22,21,9,0.0 +16945,30,25.89,21,0.0 +16945,64,33.25,48,0.0 +16945,29,123.79,16,0.0 +16945,71,21.5,9,0.0 +16945,24,4.5,34,0.0 +16945,73,15,12,0.0 +16945,39,18,10,0.0 +16945,28,45.6,5,0.0 +16945,5,21.35,27,0.0 +16945,13,6,39,0.0 +16945,42,14,8,0.0 +16945,34,14,45,0.0 +16945,31,12.5,35,0.0 +16945,11,21,48,0.0 +16945,66,17,28,0.0 +16945,15,15.5,6,0.0 +16945,19,9.2,10,0.0 +16945,38,263.5,30,0.0 +16945,46,12,44,0.0 +16945,2,19,20,0.0 +16945,9,97,7,0.0 +16945,75,7.75,1,0.0 +16945,61,28.5,14,0.0 +16945,63,43.9,11,0.0 +16945,1,18,31,0.0 +16945,20,81,37,0.0 +16945,68,12.5,48,0.0 +16945,26,31.23,21,0.0 +16945,57,19.5,10,0.0 +16945,36,19,37,0.0 +16945,32,32,24,0.0 +16945,56,38,3,0.0 +16945,6,25,21,0.0 +16945,45,9.5,22,0.0 +16945,60,34,43,0.0 +16945,76,18,16,0.0 +16945,55,24,30,0.0 +16946,49,20,25,0.0 +16946,50,16.25,4,0.0 +16946,5,21.35,4,0.0 +16946,77,13,1,0.0 +16946,39,18,28,0.0 +16946,22,21,19,0.0 +16946,30,25.89,10,0.0 +16946,8,40,35,0.0 +16946,60,34,32,0.0 +16946,54,7.45,13,0.0 +16946,36,19,42,0.0 +16946,52,7,45,0.0 +16946,37,26,26,0.0 +16946,63,43.9,42,0.0 +16946,11,21,6,0.0 +16946,67,14,19,0.0 +16946,45,9.5,39,0.0 +16946,59,55,6,0.0 +16946,74,10,44,0.0 +16946,3,10,40,0.0 +16946,38,263.5,40,0.0 +16946,23,9,41,0.0 +16946,2,19,50,0.0 +16946,70,15,35,0.0 +16946,35,18,7,0.0 +16946,42,14,43,0.0 +16946,14,23.25,17,0.0 +16946,71,21.5,36,0.0 +16946,57,19.5,2,0.0 +16946,40,18.4,33,0.0 +16946,43,46,26,0.0 +16946,51,53,24,0.0 +16946,53,32.8,11,0.0 +16946,68,12.5,25,0.0 +16946,1,18,2,0.0 +16946,26,31.23,31,0.0 +16946,25,14,42,0.0 +16946,4,22,36,0.0 +16946,75,7.75,2,0.0 +16946,56,38,36,0.0 +16946,15,15.5,36,0.0 +16946,58,13.25,31,0.0 +16946,33,2.5,19,0.0 +16946,7,30,22,0.0 +16946,9,97,42,0.0 +16946,47,9.5,50,0.0 +16946,44,19.45,20,0.0 +16946,18,62.5,20,0.0 +16946,12,38,32,0.0 +16947,51,53,12,0.0 +16947,52,7,8,0.0 +16947,58,13.25,19,0.0 +16947,64,33.25,41,0.0 +16947,46,12,50,0.0 +16947,21,10,6,0.0 +16947,27,43.9,38,0.0 +16947,49,20,43,0.0 +16947,22,21,38,0.0 +16947,6,25,17,0.0 +16947,56,38,27,0.0 +16947,63,43.9,4,0.0 +16947,69,36,27,0.0 +16947,77,13,7,0.0 +16947,54,7.45,2,0.0 +16947,35,18,13,0.0 +16947,44,19.45,2,0.0 +16947,67,14,46,0.0 +16947,24,4.5,28,0.0 +16947,38,263.5,39,0.0 +16947,7,30,3,0.0 +16947,4,22,22,0.0 +16948,3,10,50,0.0 +16948,42,14,11,0.0 +16948,27,43.9,31,0.0 +16948,17,39,15,0.0 +16948,65,21.05,19,0.0 +16948,20,81,39,0.0 +16948,66,17,27,0.0 +16948,7,30,47,0.0 +16948,60,34,23,0.0 +16948,2,19,32,0.0 +16948,62,49.3,37,0.0 +16948,76,18,26,0.0 +16948,49,20,1,0.0 +16948,74,10,30,0.0 +16948,35,18,42,0.0 +16948,68,12.5,41,0.0 +16948,73,15,33,0.0 +16948,25,14,45,0.0 +16948,46,12,28,0.0 +16948,72,34.8,18,0.0 +16948,39,18,20,0.0 +16948,11,21,19,0.0 +16948,45,9.5,5,0.0 +16948,15,15.5,4,0.0 +16948,40,18.4,41,0.0 +16948,30,25.89,27,0.0 +16948,8,40,21,0.0 +16948,32,32,30,0.0 +16948,50,16.25,39,0.0 +16948,67,14,13,0.0 +16948,13,6,48,0.0 +16948,58,13.25,48,0.0 +16948,12,38,9,0.0 +16948,6,25,15,0.0 +16948,29,123.79,42,0.0 +16948,26,31.23,36,0.0 +16948,54,7.45,21,0.0 +16948,64,33.25,13,0.0 +16948,9,97,14,0.0 +16948,21,10,6,0.0 +16948,43,46,42,0.0 +16948,44,19.45,1,0.0 +16948,47,9.5,24,0.0 +16948,41,9.65,33,0.0 +16948,48,12.75,42,0.0 +16948,38,263.5,2,0.0 +16948,34,14,4,0.0 +16948,19,9.2,31,0.0 +16949,46,12,9,0.0 +16949,28,45.6,27,0.0 +16949,19,9.2,13,0.0 +16949,36,19,36,0.0 +16949,67,14,16,0.0 +16949,37,26,12,0.0 +16949,77,13,11,0.0 +16949,47,9.5,13,0.0 +16949,20,81,36,0.0 +16949,32,32,29,0.0 +16949,70,15,16,0.0 +16949,40,18.4,39,0.0 +16949,41,9.65,49,0.0 +16949,73,15,20,0.0 +16949,24,4.5,5,0.0 +16949,30,25.89,2,0.0 +16949,12,38,28,0.0 +16950,46,12,13,0.0 +16950,64,33.25,8,0.0 +16950,51,53,43,0.0 +16950,12,38,4,0.0 +16950,22,21,14,0.0 +16950,33,2.5,11,0.0 +16950,52,7,42,0.0 +16950,59,55,14,0.0 +16950,1,18,48,0.0 +16950,73,15,6,0.0 +16950,7,30,17,0.0 +16950,27,43.9,22,0.0 +16950,41,9.65,25,0.0 +16950,48,12.75,15,0.0 +16950,58,13.25,13,0.0 +16950,39,18,31,0.0 +16950,16,17.45,30,0.0 +16950,77,13,43,0.0 +16950,35,18,41,0.0 +16950,76,18,30,0.0 +16950,37,26,33,0.0 +16950,61,28.5,24,0.0 +16950,50,16.25,49,0.0 +16950,20,81,5,0.0 +16950,5,21.35,12,0.0 +16950,15,15.5,45,0.0 +16950,29,123.79,16,0.0 +16950,21,10,25,0.0 +16950,34,14,5,0.0 +16950,26,31.23,12,0.0 +16950,28,45.6,15,0.0 +16950,43,46,3,0.0 +16950,71,21.5,45,0.0 +16950,19,9.2,19,0.0 +16950,6,25,10,0.0 +16950,74,10,44,0.0 +16950,65,21.05,49,0.0 +16950,44,19.45,25,0.0 +16950,14,23.25,4,0.0 +16950,72,34.8,43,0.0 +16950,54,7.45,37,0.0 +16950,63,43.9,16,0.0 +16950,56,38,27,0.0 +16950,62,49.3,32,0.0 +16950,38,263.5,9,0.0 +16950,67,14,32,0.0 +16950,9,97,37,0.0 +16950,8,40,29,0.0 +16950,49,20,37,0.0 +16950,68,12.5,24,0.0 +16950,25,14,19,0.0 +16950,4,22,32,0.0 +16950,53,32.8,10,0.0 +16950,70,15,40,0.0 +16950,47,9.5,16,0.0 +16950,3,10,19,0.0 +16950,13,6,42,0.0 +16950,23,9,45,0.0 +16950,55,24,28,0.0 +16950,17,39,20,0.0 +16950,32,32,17,0.0 +16950,2,19,31,0.0 +16950,42,14,27,0.0 +16950,36,19,19,0.0 +16950,69,36,11,0.0 +16950,10,31,2,0.0 +16950,31,12.5,3,0.0 +16950,60,34,14,0.0 +16950,66,17,21,0.0 +16950,30,25.89,24,0.0 +16950,18,62.5,45,0.0 +16950,24,4.5,3,0.0 +16950,40,18.4,6,0.0 +16950,45,9.5,7,0.0 +16950,11,21,37,0.0 +16950,75,7.75,29,0.0 +16950,57,19.5,32,0.0 +16951,28,45.6,26,0.0 +16951,35,18,42,0.0 +16951,25,14,2,0.0 +16951,11,21,46,0.0 +16951,2,19,23,0.0 +16951,7,30,14,0.0 +16951,4,22,31,0.0 +16951,66,17,45,0.0 +16951,21,10,49,0.0 +16951,56,38,26,0.0 +16951,36,19,14,0.0 +16951,32,32,20,0.0 +16951,44,19.45,12,0.0 +16951,34,14,22,0.0 +16951,19,9.2,29,0.0 +16951,18,62.5,20,0.0 +16951,50,16.25,46,0.0 +16951,39,18,40,0.0 +16951,9,97,23,0.0 +16951,45,9.5,48,0.0 +16951,1,18,31,0.0 +16951,43,46,35,0.0 +16951,30,25.89,7,0.0 +16951,15,15.5,40,0.0 +16951,26,31.23,14,0.0 +16951,14,23.25,29,0.0 +16951,5,21.35,16,0.0 +16951,72,34.8,46,0.0 +16951,71,21.5,22,0.0 +16951,27,43.9,3,0.0 +16951,31,12.5,24,0.0 +16951,68,12.5,46,0.0 +16951,77,13,18,0.0 +16951,29,123.79,17,0.0 +16951,73,15,44,0.0 +16951,49,20,20,0.0 +16951,69,36,32,0.0 +16951,8,40,23,0.0 +16951,55,24,22,0.0 +16951,61,28.5,33,0.0 +16951,24,4.5,31,0.0 +16951,20,81,41,0.0 +16951,48,12.75,34,0.0 +16951,3,10,16,0.0 +16951,37,26,5,0.0 +16951,53,32.8,41,0.0 +16951,76,18,41,0.0 +16951,47,9.5,8,0.0 +16951,41,9.65,2,0.0 +16951,22,21,25,0.0 +16951,65,21.05,40,0.0 +16951,17,39,7,0.0 +16951,42,14,40,0.0 +16951,58,13.25,39,0.0 +16951,63,43.9,4,0.0 +16951,54,7.45,23,0.0 +16951,12,38,13,0.0 +16951,62,49.3,8,0.0 +16951,52,7,11,0.0 +16951,33,2.5,40,0.0 +16951,75,7.75,40,0.0 +16951,38,263.5,33,0.0 +16951,67,14,3,0.0 +16951,6,25,4,0.0 +16951,10,31,40,0.0 +16951,60,34,28,0.0 +16951,40,18.4,2,0.0 +16951,16,17.45,21,0.0 +16952,30,25.89,33,0.0 +16952,68,12.5,17,0.0 +16952,69,36,34,0.0 +16952,49,20,50,0.0 +16952,50,16.25,29,0.0 +16952,54,7.45,40,0.0 +16952,14,23.25,3,0.0 +16952,70,15,25,0.0 +16952,60,34,36,0.0 +16952,11,21,31,0.0 +16952,67,14,30,0.0 +16952,24,4.5,7,0.0 +16952,77,13,7,0.0 +16952,59,55,26,0.0 +16952,7,30,38,0.0 +16952,74,10,39,0.0 +16952,63,43.9,23,0.0 +16952,18,62.5,12,0.0 +16952,65,21.05,8,0.0 +16952,25,14,49,0.0 +16952,73,15,44,0.0 +16952,1,18,22,0.0 +16952,51,53,22,0.0 +16952,10,31,31,0.0 +16952,31,12.5,34,0.0 +16952,72,34.8,5,0.0 +16952,43,46,16,0.0 +16952,61,28.5,4,0.0 +16952,64,33.25,9,0.0 +16952,6,25,35,0.0 +16952,23,9,48,0.0 +16952,35,18,9,0.0 +16952,2,19,30,0.0 +16952,47,9.5,39,0.0 +16952,29,123.79,37,0.0 +16952,8,40,22,0.0 +16952,5,21.35,45,0.0 +16952,40,18.4,26,0.0 +16952,19,9.2,16,0.0 +16952,38,263.5,18,0.0 +16952,71,21.5,12,0.0 +16952,57,19.5,8,0.0 +16952,15,15.5,16,0.0 +16952,3,10,45,0.0 +16952,42,14,49,0.0 +16952,41,9.65,22,0.0 +16952,53,32.8,23,0.0 +16952,17,39,12,0.0 +16952,13,6,50,0.0 +16952,37,26,6,0.0 +16952,46,12,37,0.0 +16952,66,17,38,0.0 +16952,58,13.25,25,0.0 +16952,27,43.9,47,0.0 +16952,16,17.45,29,0.0 +16952,32,32,23,0.0 +16952,4,22,28,0.0 +16952,34,14,33,0.0 +16952,39,18,12,0.0 +16952,12,38,16,0.0 +16952,52,7,34,0.0 +16952,45,9.5,24,0.0 +16952,48,12.75,19,0.0 +16952,76,18,47,0.0 +16952,28,45.6,34,0.0 +16953,57,19.5,16,0.0 +16953,1,18,33,0.0 +16953,51,53,40,0.0 +16953,65,21.05,47,0.0 +16953,23,9,15,0.0 +16953,26,31.23,29,0.0 +16953,71,21.5,49,0.0 +16953,18,62.5,36,0.0 +16953,39,18,19,0.0 +16953,43,46,2,0.0 +16953,40,18.4,36,0.0 +16953,67,14,13,0.0 +16953,56,38,42,0.0 +16953,14,23.25,20,0.0 +16953,54,7.45,39,0.0 +16953,63,43.9,8,0.0 +16953,75,7.75,30,0.0 +16953,73,15,6,0.0 +16953,45,9.5,22,0.0 +16953,20,81,1,0.0 +16953,53,32.8,44,0.0 +16953,59,55,38,0.0 +16953,69,36,25,0.0 +16953,68,12.5,38,0.0 +16953,25,14,9,0.0 +16953,12,38,47,0.0 +16953,76,18,50,0.0 +16953,21,10,19,0.0 +16953,3,10,36,0.0 +16953,60,34,25,0.0 +16953,29,123.79,43,0.0 +16953,58,13.25,13,0.0 +16953,44,19.45,6,0.0 +16953,8,40,34,0.0 +16953,74,10,4,0.0 +16953,27,43.9,48,0.0 +16953,31,12.5,27,0.0 +16953,48,12.75,42,0.0 +16953,42,14,32,0.0 +16953,30,25.89,6,0.0 +16953,41,9.65,6,0.0 +16953,55,24,26,0.0 +16954,3,10,17,0.0 +16954,36,19,21,0.0 +16954,63,43.9,44,0.0 +16954,60,34,14,0.0 +16954,47,9.5,32,0.0 +16954,56,38,16,0.0 +16954,43,46,9,0.0 +16954,24,4.5,13,0.0 +16954,77,13,32,0.0 +16954,48,12.75,32,0.0 +16954,65,21.05,31,0.0 +16954,66,17,21,0.0 +16954,70,15,29,0.0 +16954,8,40,48,0.0 +16954,52,7,42,0.0 +16954,61,28.5,45,0.0 +16954,34,14,44,0.0 +16954,22,21,8,0.0 +16954,76,18,32,0.0 +16954,74,10,44,0.0 +16954,75,7.75,4,0.0 +16954,30,25.89,47,0.0 +16954,27,43.9,20,0.0 +16954,32,32,30,0.0 +16954,31,12.5,18,0.0 +16954,49,20,42,0.0 +16954,37,26,38,0.0 +16954,44,19.45,19,0.0 +16954,42,14,26,0.0 +16954,59,55,39,0.0 +16954,17,39,18,0.0 +16954,71,21.5,44,0.0 +16954,9,97,34,0.0 +16954,69,36,20,0.0 +16954,40,18.4,1,0.0 +16954,13,6,15,0.0 +16954,5,21.35,21,0.0 +16954,58,13.25,6,0.0 +16954,50,16.25,35,0.0 +16954,2,19,1,0.0 +16954,73,15,24,0.0 +16954,23,9,8,0.0 +16954,10,31,49,0.0 +16954,18,62.5,47,0.0 +16954,41,9.65,41,0.0 +16954,25,14,50,0.0 +16954,7,30,16,0.0 +16954,19,9.2,46,0.0 +16954,72,34.8,43,0.0 +16954,62,49.3,48,0.0 +16954,35,18,38,0.0 +16954,15,15.5,17,0.0 +16954,51,53,35,0.0 +16954,54,7.45,14,0.0 +16954,28,45.6,16,0.0 +16954,29,123.79,43,0.0 +16954,46,12,37,0.0 +16954,26,31.23,9,0.0 +16954,68,12.5,13,0.0 +16954,11,21,40,0.0 +16954,45,9.5,4,0.0 +16954,53,32.8,4,0.0 +16954,57,19.5,48,0.0 +16954,6,25,50,0.0 +16954,1,18,3,0.0 +16954,38,263.5,27,0.0 +16954,21,10,11,0.0 +16955,58,13.25,29,0.0 +16955,40,18.4,41,0.0 +16955,63,43.9,42,0.0 +16955,50,16.25,32,0.0 +16955,34,14,19,0.0 +16955,31,12.5,40,0.0 +16955,75,7.75,40,0.0 +16955,21,10,5,0.0 +16956,18,62.5,17,0.0 +16956,2,19,2,0.0 +16956,3,10,20,0.0 +16956,21,10,29,0.0 +16956,40,18.4,40,0.0 +16956,31,12.5,42,0.0 +16956,51,53,45,0.0 +16956,67,14,7,0.0 +16956,1,18,39,0.0 +16956,49,20,13,0.0 +16956,75,7.75,41,0.0 +16956,56,38,46,0.0 +16956,35,18,15,0.0 +16956,74,10,35,0.0 +16956,28,45.6,46,0.0 +16956,12,38,14,0.0 +16956,7,30,42,0.0 +16956,8,40,38,0.0 +16956,68,12.5,25,0.0 +16956,11,21,50,0.0 +16956,24,4.5,34,0.0 +16956,72,34.8,27,0.0 +16956,27,43.9,7,0.0 +16956,62,49.3,15,0.0 +16956,33,2.5,36,0.0 +16956,30,25.89,10,0.0 +16956,15,15.5,45,0.0 +16956,38,263.5,34,0.0 +16956,58,13.25,6,0.0 +16956,50,16.25,27,0.0 +16956,19,9.2,32,0.0 +16956,63,43.9,33,0.0 +16956,10,31,20,0.0 +16956,61,28.5,31,0.0 +16956,66,17,13,0.0 +16956,57,19.5,30,0.0 +16956,29,123.79,9,0.0 +16956,45,9.5,2,0.0 +16956,76,18,2,0.0 +16956,41,9.65,22,0.0 +16956,16,17.45,39,0.0 +16956,43,46,4,0.0 +16956,39,18,41,0.0 +16956,6,25,23,0.0 +16956,25,14,19,0.0 +16956,48,12.75,29,0.0 +16956,17,39,16,0.0 +16956,13,6,10,0.0 +16956,77,13,37,0.0 +16956,55,24,18,0.0 +16956,52,7,27,0.0 +16956,26,31.23,9,0.0 +16956,37,26,44,0.0 +16956,32,32,48,0.0 +16956,71,21.5,19,0.0 +16956,54,7.45,18,0.0 +16956,4,22,15,0.0 +16956,69,36,35,0.0 +16956,36,19,42,0.0 +16956,64,33.25,27,0.0 +16956,73,15,20,0.0 +16956,42,14,26,0.0 +16956,14,23.25,41,0.0 +16956,46,12,41,0.0 +16956,34,14,20,0.0 +16956,53,32.8,44,0.0 +16956,65,21.05,35,0.0 +16956,23,9,29,0.0 +16957,77,13,23,0.0 +16957,58,13.25,7,0.0 +16957,26,31.23,46,0.0 +16957,76,18,11,0.0 +16957,70,15,46,0.0 +16957,45,9.5,48,0.0 +16957,18,62.5,10,0.0 +16957,68,12.5,9,0.0 +16957,62,49.3,31,0.0 +16957,17,39,36,0.0 +16957,63,43.9,30,0.0 +16957,29,123.79,2,0.0 +16957,1,18,41,0.0 +16957,28,45.6,19,0.0 +16957,46,12,46,0.0 +16957,33,2.5,35,0.0 +16957,36,19,18,0.0 +16957,73,15,8,0.0 +16957,2,19,27,0.0 +16957,3,10,19,0.0 +16957,65,21.05,41,0.0 +16957,9,97,50,0.0 +16957,56,38,50,0.0 +16957,32,32,45,0.0 +16957,47,9.5,39,0.0 +16957,10,31,9,0.0 +16957,72,34.8,23,0.0 +16957,30,25.89,41,0.0 +16957,43,46,17,0.0 +16957,31,12.5,25,0.0 +16957,48,12.75,1,0.0 +16957,50,16.25,30,0.0 +16957,34,14,19,0.0 +16957,54,7.45,50,0.0 +16957,64,33.25,42,0.0 +16957,59,55,26,0.0 +16957,66,17,3,0.0 +16957,52,7,20,0.0 +16957,13,6,2,0.0 +16957,71,21.5,16,0.0 +16957,51,53,10,0.0 +16957,75,7.75,22,0.0 +16957,44,19.45,21,0.0 +16957,53,32.8,3,0.0 +16957,42,14,2,0.0 +16957,22,21,22,0.0 +16957,7,30,48,0.0 +16957,41,9.65,23,0.0 +16957,67,14,12,0.0 +16957,60,34,26,0.0 +16957,21,10,7,0.0 +16957,8,40,42,0.0 +16957,24,4.5,11,0.0 +16957,14,23.25,42,0.0 +16957,12,38,18,0.0 +16957,69,36,13,0.0 +16958,34,14,42,0.0 +16958,15,15.5,4,0.0 +16958,8,40,40,0.0 +16958,13,6,26,0.0 +16958,38,263.5,18,0.0 +16958,46,12,14,0.0 +16958,48,12.75,29,0.0 +16958,77,13,48,0.0 +16958,32,32,32,0.0 +16958,2,19,29,0.0 +16958,66,17,30,0.0 +16958,14,23.25,45,0.0 +16958,30,25.89,40,0.0 +16958,28,45.6,14,0.0 +16958,42,14,39,0.0 +16958,27,43.9,42,0.0 +16958,3,10,28,0.0 +16958,58,13.25,29,0.0 +16958,75,7.75,36,0.0 +16958,73,15,6,0.0 +16958,44,19.45,38,0.0 +16958,64,33.25,29,0.0 +16958,51,53,17,0.0 +16958,69,36,10,0.0 +16958,70,15,37,0.0 +16958,33,2.5,30,0.0 +16958,6,25,46,0.0 +16958,55,24,36,0.0 +16958,18,62.5,14,0.0 +16958,24,4.5,13,0.0 +16958,47,9.5,35,0.0 +16959,27,43.9,2,0.0 +16959,21,10,22,0.0 +16959,14,23.25,43,0.0 +16959,42,14,18,0.0 +16959,67,14,24,0.0 +16959,26,31.23,23,0.0 +16959,51,53,10,0.0 +16959,74,10,42,0.0 +16959,11,21,20,0.0 +16959,47,9.5,20,0.0 +16959,2,19,26,0.0 +16959,36,19,4,0.0 +16959,70,15,49,0.0 +16959,16,17.45,10,0.0 +16959,75,7.75,15,0.0 +16959,19,9.2,41,0.0 +16959,12,38,17,0.0 +16959,29,123.79,2,0.0 +16959,66,17,17,0.0 +16959,58,13.25,11,0.0 +16959,73,15,39,0.0 +16959,63,43.9,21,0.0 +16959,35,18,31,0.0 +16959,68,12.5,1,0.0 +16959,28,45.6,38,0.0 +16959,40,18.4,28,0.0 +16959,34,14,9,0.0 +16959,8,40,42,0.0 +16959,31,12.5,48,0.0 +16959,56,38,39,0.0 +16959,65,21.05,17,0.0 +16959,46,12,33,0.0 +16959,39,18,34,0.0 +16959,15,15.5,22,0.0 +16959,10,31,11,0.0 +16959,4,22,17,0.0 +16959,45,9.5,8,0.0 +16959,7,30,30,0.0 +16959,5,21.35,37,0.0 +16959,24,4.5,46,0.0 +16959,64,33.25,43,0.0 +16959,44,19.45,41,0.0 +16959,50,16.25,33,0.0 +16959,49,20,14,0.0 +16959,71,21.5,26,0.0 +16959,6,25,31,0.0 +16959,23,9,47,0.0 +16959,13,6,32,0.0 +16959,55,24,5,0.0 +16959,53,32.8,50,0.0 +16959,3,10,12,0.0 +16959,18,62.5,13,0.0 +16959,25,14,33,0.0 +16959,76,18,50,0.0 +16959,38,263.5,11,0.0 +16959,41,9.65,17,0.0 +16959,33,2.5,25,0.0 +16959,48,12.75,39,0.0 +16959,9,97,34,0.0 +16960,58,13.25,37,0.0 +16960,37,26,7,0.0 +16960,65,21.05,27,0.0 +16960,2,19,13,0.0 +16960,56,38,9,0.0 +16960,28,45.6,46,0.0 +16960,51,53,26,0.0 +16960,23,9,2,0.0 +16960,53,32.8,29,0.0 +16960,67,14,39,0.0 +16960,17,39,41,0.0 +16960,38,263.5,9,0.0 +16960,73,15,1,0.0 +16960,69,36,7,0.0 +16960,74,10,46,0.0 +16960,25,14,16,0.0 +16960,59,55,20,0.0 +16960,21,10,35,0.0 +16960,47,9.5,3,0.0 +16960,11,21,39,0.0 +16960,24,4.5,7,0.0 +16960,71,21.5,28,0.0 +16960,13,6,27,0.0 +16960,26,31.23,49,0.0 +16960,50,16.25,9,0.0 +16961,1,18,42,0.0 +16961,39,18,20,0.0 +16961,32,32,48,0.0 +16961,35,18,42,0.0 +16961,45,9.5,22,0.0 +16962,51,53,37,0.0 +16962,28,45.6,4,0.0 +16962,16,17.45,33,0.0 +16962,66,17,30,0.0 +16962,72,34.8,35,0.0 +16962,23,9,41,0.0 +16962,7,30,2,0.0 +16962,2,19,4,0.0 +16962,22,21,50,0.0 +16962,35,18,14,0.0 +16962,63,43.9,11,0.0 +16962,24,4.5,36,0.0 +16962,10,31,39,0.0 +16962,11,21,35,0.0 +16962,4,22,8,0.0 +16962,65,21.05,2,0.0 +16962,27,43.9,5,0.0 +16962,12,38,23,0.0 +16962,57,19.5,24,0.0 +16962,36,19,33,0.0 +16962,8,40,37,0.0 +16962,31,12.5,38,0.0 +16962,39,18,23,0.0 +16962,73,15,14,0.0 +16962,43,46,44,0.0 +16962,26,31.23,4,0.0 +16962,54,7.45,29,0.0 +16962,1,18,6,0.0 +16962,18,62.5,36,0.0 +16962,17,39,37,0.0 +16963,53,32.8,41,0.0 +16963,29,123.79,7,0.0 +16963,71,21.5,41,0.0 +16963,36,19,49,0.0 +16963,8,40,5,0.0 +16963,15,15.5,23,0.0 +16963,46,12,45,0.0 +16963,23,9,43,0.0 +16963,5,21.35,33,0.0 +16963,25,14,22,0.0 +16963,14,23.25,33,0.0 +16963,75,7.75,32,0.0 +16963,28,45.6,8,0.0 +16963,63,43.9,20,0.0 +16963,41,9.65,47,0.0 +16963,61,28.5,16,0.0 +16963,35,18,38,0.0 +16963,20,81,35,0.0 +16963,1,18,5,0.0 +16963,7,30,38,0.0 +16963,38,263.5,50,0.0 +16963,44,19.45,50,0.0 +16963,3,10,23,0.0 +16964,72,34.8,26,0.0 +16964,53,32.8,43,0.0 +16964,33,2.5,38,0.0 +16964,28,45.6,22,0.0 +16964,13,6,2,0.0 +16964,49,20,43,0.0 +16964,65,21.05,46,0.0 +16964,6,25,47,0.0 +16964,59,55,7,0.0 +16964,73,15,9,0.0 +16964,25,14,26,0.0 +16964,14,23.25,18,0.0 +16964,21,10,19,0.0 +16964,56,38,14,0.0 +16964,39,18,17,0.0 +16964,61,28.5,13,0.0 +16964,43,46,34,0.0 +16964,5,21.35,24,0.0 +16964,17,39,37,0.0 +16964,40,18.4,41,0.0 +16964,8,40,9,0.0 +16964,64,33.25,35,0.0 +16964,74,10,22,0.0 +16964,66,17,30,0.0 +16964,15,15.5,39,0.0 +16964,52,7,26,0.0 +16964,44,19.45,33,0.0 +16964,57,19.5,8,0.0 +16964,23,9,13,0.0 +16964,12,38,1,0.0 +16964,24,4.5,28,0.0 +16964,20,81,15,0.0 +16964,26,31.23,33,0.0 +16964,58,13.25,26,0.0 +16964,11,21,23,0.0 +16964,70,15,39,0.0 +16964,45,9.5,6,0.0 +16964,76,18,38,0.0 +16964,48,12.75,6,0.0 +16964,75,7.75,37,0.0 +16964,69,36,26,0.0 +16964,50,16.25,37,0.0 +16964,77,13,17,0.0 +16964,60,34,26,0.0 +16964,47,9.5,38,0.0 +16964,3,10,4,0.0 +16964,68,12.5,16,0.0 +16964,16,17.45,42,0.0 +16964,51,53,38,0.0 +16964,1,18,4,0.0 +16964,10,31,36,0.0 +16964,31,12.5,49,0.0 +16964,4,22,30,0.0 +16964,22,21,18,0.0 +16964,42,14,44,0.0 +16964,7,30,45,0.0 +16964,18,62.5,46,0.0 +16964,9,97,6,0.0 +16964,67,14,46,0.0 +16964,37,26,34,0.0 +16964,32,32,26,0.0 +16964,71,21.5,8,0.0 +16964,54,7.45,41,0.0 +16964,63,43.9,43,0.0 +16964,38,263.5,37,0.0 +16964,36,19,40,0.0 +16964,19,9.2,11,0.0 +16964,62,49.3,9,0.0 +16964,35,18,33,0.0 +16964,2,19,9,0.0 +16964,30,25.89,21,0.0 +16964,27,43.9,47,0.0 +16965,58,13.25,41,0.0 +16965,17,39,31,0.0 +16965,8,40,40,0.0 +16965,50,16.25,27,0.0 +16965,6,25,27,0.0 +16965,13,6,14,0.0 +16965,45,9.5,39,0.0 +16965,43,46,19,0.0 +16965,5,21.35,43,0.0 +16965,11,21,23,0.0 +16965,70,15,2,0.0 +16965,68,12.5,1,0.0 +16965,38,263.5,49,0.0 +16965,47,9.5,16,0.0 +16965,26,31.23,15,0.0 +16965,60,34,41,0.0 +16965,51,53,21,0.0 +16965,21,10,46,0.0 +16965,69,36,44,0.0 +16965,37,26,27,0.0 +16965,16,17.45,41,0.0 +16965,52,7,30,0.0 +16965,23,9,37,0.0 +16965,7,30,19,0.0 +16965,53,32.8,37,0.0 +16965,24,4.5,11,0.0 +16965,32,32,48,0.0 +16965,9,97,42,0.0 +16965,39,18,26,0.0 +16965,72,34.8,35,0.0 +16965,25,14,25,0.0 +16965,3,10,33,0.0 +16965,12,38,3,0.0 +16965,67,14,31,0.0 +16965,35,18,41,0.0 +16965,54,7.45,13,0.0 +16965,41,9.65,50,0.0 +16965,46,12,25,0.0 +16965,27,43.9,37,0.0 +16965,66,17,31,0.0 +16965,29,123.79,18,0.0 +16965,36,19,47,0.0 +16965,64,33.25,36,0.0 +16965,73,15,21,0.0 +16965,40,18.4,35,0.0 +16965,1,18,32,0.0 +16965,62,49.3,5,0.0 +16965,44,19.45,30,0.0 +16965,63,43.9,1,0.0 +16965,31,12.5,27,0.0 +16965,56,38,39,0.0 +16965,59,55,48,0.0 +16965,48,12.75,9,0.0 +16965,20,81,34,0.0 +16965,33,2.5,13,0.0 +16965,42,14,41,0.0 +16965,4,22,13,0.0 +16965,65,21.05,25,0.0 +16965,74,10,33,0.0 +16965,61,28.5,13,0.0 +16965,75,7.75,10,0.0 +16965,77,13,2,0.0 +16965,28,45.6,28,0.0 +16965,22,21,1,0.0 +16965,71,21.5,27,0.0 +16965,55,24,31,0.0 +16965,30,25.89,19,0.0 +16965,57,19.5,10,0.0 +16965,49,20,4,0.0 +16966,74,10,48,0.0 +16966,59,55,13,0.0 +16966,70,15,27,0.0 +16966,69,36,48,0.0 +16966,37,26,43,0.0 +16966,1,18,50,0.0 +16966,29,123.79,15,0.0 +16966,45,9.5,25,0.0 +16966,64,33.25,33,0.0 +16966,36,19,34,0.0 +16966,57,19.5,17,0.0 +16966,39,18,13,0.0 +16966,60,34,29,0.0 +16966,52,7,13,0.0 +16966,38,263.5,32,0.0 +16966,47,9.5,16,0.0 +16966,33,2.5,40,0.0 +16966,43,46,34,0.0 +16966,50,16.25,42,0.0 +16966,25,14,50,0.0 +16966,66,17,9,0.0 +16966,21,10,22,0.0 +16966,32,32,47,0.0 +16966,5,21.35,41,0.0 +16966,65,21.05,23,0.0 +16966,9,97,50,0.0 +16966,53,32.8,19,0.0 +16966,20,81,16,0.0 +16966,4,22,11,0.0 +16966,8,40,36,0.0 +16966,22,21,6,0.0 +16966,13,6,24,0.0 +16966,63,43.9,10,0.0 +16966,44,19.45,43,0.0 +16966,46,12,6,0.0 +16967,70,15,15,0.0 +16967,18,62.5,9,0.0 +16967,77,13,28,0.0 +16967,66,17,11,0.0 +16967,49,20,32,0.0 +16967,38,263.5,45,0.0 +16967,67,14,3,0.0 +16967,52,7,8,0.0 +16967,69,36,19,0.0 +16967,4,22,39,0.0 +16967,8,40,25,0.0 +16967,27,43.9,4,0.0 +16967,12,38,45,0.0 +16967,1,18,12,0.0 +16967,26,31.23,5,0.0 +16967,75,7.75,25,0.0 +16967,40,18.4,5,0.0 +16967,61,28.5,5,0.0 +16967,47,9.5,39,0.0 +16967,6,25,7,0.0 +16967,24,4.5,48,0.0 +16967,57,19.5,7,0.0 +16967,71,21.5,13,0.0 +16967,55,24,31,0.0 +16967,36,19,8,0.0 +16967,31,12.5,46,0.0 +16967,41,9.65,23,0.0 +16967,22,21,43,0.0 +16967,76,18,23,0.0 +16967,59,55,15,0.0 +16967,72,34.8,9,0.0 +16968,37,26,6,0.0 +16968,1,18,34,0.0 +16968,8,40,40,0.0 +16968,22,21,33,0.0 +16968,9,97,28,0.0 +16968,30,25.89,7,0.0 +16968,32,32,12,0.0 +16968,48,12.75,17,0.0 +16968,65,21.05,35,0.0 +16968,52,7,44,0.0 +16968,18,62.5,48,0.0 +16968,4,22,44,0.0 +16968,31,12.5,45,0.0 +16968,67,14,25,0.0 +16968,70,15,40,0.0 +16968,68,12.5,24,0.0 +16968,41,9.65,32,0.0 +16968,69,36,11,0.0 +16968,72,34.8,32,0.0 +16968,44,19.45,15,0.0 +16968,55,24,1,0.0 +16968,76,18,40,0.0 +16968,42,14,42,0.0 +16968,43,46,8,0.0 +16968,54,7.45,32,0.0 +16968,71,21.5,24,0.0 +16968,38,263.5,21,0.0 +16968,59,55,11,0.0 +16969,37,26,3,0.0 +16969,7,30,28,0.0 +16969,10,31,39,0.0 +16969,66,17,6,0.0 +16969,35,18,21,0.0 +16969,5,21.35,35,0.0 +16969,70,15,9,0.0 +16969,67,14,11,0.0 +16969,22,21,5,0.0 +16969,63,43.9,19,0.0 +16969,41,9.65,25,0.0 +16969,43,46,36,0.0 +16969,27,43.9,47,0.0 +16969,42,14,21,0.0 +16969,18,62.5,7,0.0 +16969,48,12.75,11,0.0 +16969,17,39,4,0.0 +16969,28,45.6,25,0.0 +16969,1,18,48,0.0 +16969,8,40,17,0.0 +16969,73,15,10,0.0 +16969,52,7,28,0.0 +16969,11,21,39,0.0 +16969,14,23.25,22,0.0 +16969,21,10,26,0.0 +16969,61,28.5,34,0.0 +16969,26,31.23,15,0.0 +16969,3,10,3,0.0 +16969,75,7.75,36,0.0 +16969,39,18,39,0.0 +16969,68,12.5,5,0.0 +16969,64,33.25,25,0.0 +16969,24,4.5,27,0.0 +16969,2,19,23,0.0 +16969,33,2.5,17,0.0 +16969,12,38,44,0.0 +16969,20,81,47,0.0 +16969,56,38,4,0.0 +16969,51,53,48,0.0 +16969,62,49.3,29,0.0 +16969,25,14,31,0.0 +16969,29,123.79,9,0.0 +16969,44,19.45,30,0.0 +16969,55,24,1,0.0 +16969,32,32,8,0.0 +16969,9,97,26,0.0 +16969,45,9.5,25,0.0 +16969,77,13,46,0.0 +16969,49,20,34,0.0 +16969,16,17.45,9,0.0 +16969,6,25,37,0.0 +16969,36,19,25,0.0 +16969,38,263.5,36,0.0 +16969,72,34.8,35,0.0 +16969,71,21.5,27,0.0 +16969,60,34,16,0.0 +16969,15,15.5,33,0.0 +16969,58,13.25,28,0.0 +16969,69,36,22,0.0 +16969,30,25.89,37,0.0 +16969,23,9,32,0.0 +16969,34,14,27,0.0 +16969,59,55,46,0.0 +16969,31,12.5,41,0.0 +16969,47,9.5,9,0.0 +16969,46,12,12,0.0 +16969,57,19.5,37,0.0 +16969,13,6,33,0.0 +16969,65,21.05,39,0.0 +16969,50,16.25,40,0.0 +16969,74,10,32,0.0 +16969,40,18.4,39,0.0 +16969,54,7.45,43,0.0 +16969,76,18,8,0.0 +16969,19,9.2,34,0.0 +16969,53,32.8,3,0.0 +16970,52,7,40,0.0 +16970,39,18,2,0.0 +16970,3,10,21,0.0 +16970,77,13,15,0.0 +16970,17,39,43,0.0 +16970,59,55,44,0.0 +16970,69,36,41,0.0 +16970,35,18,33,0.0 +16970,72,34.8,5,0.0 +16970,10,31,5,0.0 +16970,30,25.89,13,0.0 +16970,11,21,23,0.0 +16970,49,20,21,0.0 +16970,36,19,2,0.0 +16970,57,19.5,11,0.0 +16970,53,32.8,2,0.0 +16970,18,62.5,45,0.0 +16970,23,9,46,0.0 +16970,21,10,12,0.0 +16970,15,15.5,28,0.0 +16970,60,34,8,0.0 +16970,75,7.75,40,0.0 +16970,47,9.5,38,0.0 +16970,25,14,11,0.0 +16970,26,31.23,4,0.0 +16970,48,12.75,27,0.0 +16970,40,18.4,40,0.0 +16970,5,21.35,43,0.0 +16970,73,15,31,0.0 +16970,33,2.5,20,0.0 +16970,63,43.9,9,0.0 +16970,9,97,47,0.0 +16970,55,24,30,0.0 +16970,29,123.79,42,0.0 +16970,65,21.05,22,0.0 +16970,50,16.25,25,0.0 +16970,6,25,27,0.0 +16970,31,12.5,34,0.0 +16970,8,40,26,0.0 +16970,64,33.25,31,0.0 +16970,70,15,1,0.0 +16970,28,45.6,8,0.0 +16970,44,19.45,26,0.0 +16970,61,28.5,13,0.0 +16970,62,49.3,15,0.0 +16970,4,22,31,0.0 +16970,2,19,23,0.0 +16970,1,18,10,0.0 +16970,45,9.5,13,0.0 +16970,16,17.45,37,0.0 +16970,14,23.25,8,0.0 +16970,34,14,11,0.0 +16970,66,17,47,0.0 +16970,24,4.5,10,0.0 +16970,56,38,14,0.0 +16970,76,18,39,0.0 +16970,67,14,30,0.0 +16970,43,46,11,0.0 +16970,32,32,32,0.0 +16970,27,43.9,3,0.0 +16970,54,7.45,19,0.0 +16970,58,13.25,23,0.0 +16970,42,14,42,0.0 +16970,12,38,9,0.0 +16970,51,53,28,0.0 +16970,74,10,13,0.0 +16970,38,263.5,11,0.0 +16970,7,30,36,0.0 +16971,14,23.25,2,0.0 +16971,51,53,26,0.0 +16971,29,123.79,20,0.0 +16971,36,19,45,0.0 +16971,38,263.5,10,0.0 +16971,43,46,45,0.0 +16971,35,18,45,0.0 +16971,42,14,27,0.0 +16971,57,19.5,40,0.0 +16971,65,21.05,7,0.0 +16971,8,40,21,0.0 +16971,13,6,47,0.0 +16971,39,18,7,0.0 +16971,75,7.75,24,0.0 +16971,46,12,9,0.0 +16971,24,4.5,46,0.0 +16971,7,30,25,0.0 +16971,9,97,44,0.0 +16971,20,81,11,0.0 +16971,71,21.5,10,0.0 +16971,4,22,30,0.0 +16971,47,9.5,18,0.0 +16971,22,21,5,0.0 +16971,17,39,7,0.0 +16971,69,36,49,0.0 +16971,41,9.65,1,0.0 +16971,76,18,15,0.0 +16971,77,13,13,0.0 +16971,70,15,13,0.0 +16971,19,9.2,48,0.0 +16971,2,19,22,0.0 +16971,59,55,1,0.0 +16971,55,24,14,0.0 +16971,63,43.9,8,0.0 +16971,16,17.45,27,0.0 +16972,74,10,12,0.0 +16972,30,25.89,5,0.0 +16972,4,22,18,0.0 +16972,69,36,41,0.0 +16972,35,18,14,0.0 +16972,23,9,29,0.0 +16972,3,10,41,0.0 +16972,67,14,24,0.0 +16972,37,26,47,0.0 +16972,58,13.25,48,0.0 +16972,47,9.5,12,0.0 +16972,18,62.5,36,0.0 +16972,46,12,35,0.0 +16972,26,31.23,31,0.0 +16972,19,9.2,40,0.0 +16972,24,4.5,3,0.0 +16972,72,34.8,17,0.0 +16972,15,15.5,33,0.0 +16972,25,14,47,0.0 +16972,53,32.8,19,0.0 +16972,10,31,7,0.0 +16972,54,7.45,30,0.0 +16972,71,21.5,20,0.0 +16972,33,2.5,46,0.0 +16972,1,18,20,0.0 +16972,49,20,11,0.0 +16972,11,21,8,0.0 +16972,48,12.75,25,0.0 +16972,7,30,10,0.0 +16972,38,263.5,38,0.0 +16972,73,15,42,0.0 +16972,52,7,14,0.0 +16972,59,55,3,0.0 +16972,43,46,34,0.0 +16972,27,43.9,4,0.0 +16972,66,17,42,0.0 +16972,32,32,2,0.0 +16972,34,14,41,0.0 +16972,45,9.5,43,0.0 +16972,63,43.9,48,0.0 +16972,76,18,43,0.0 +16972,31,12.5,39,0.0 +16972,29,123.79,49,0.0 +16972,5,21.35,4,0.0 +16972,9,97,49,0.0 +16972,55,24,4,0.0 +16972,44,19.45,12,0.0 +16972,50,16.25,45,0.0 +16972,57,19.5,17,0.0 +16972,62,49.3,19,0.0 +16972,39,18,21,0.0 +16972,12,38,3,0.0 +16972,8,40,22,0.0 +16972,70,15,8,0.0 +16972,51,53,12,0.0 +16972,42,14,32,0.0 +16972,61,28.5,10,0.0 +16972,16,17.45,20,0.0 +16972,41,9.65,46,0.0 +16972,77,13,16,0.0 +16973,10,31,36,0.0 +16973,68,12.5,6,0.0 +16973,22,21,19,0.0 +16973,7,30,14,0.0 +16973,50,16.25,40,0.0 +16973,27,43.9,32,0.0 +16973,40,18.4,6,0.0 +16973,45,9.5,48,0.0 +16973,31,12.5,1,0.0 +16973,44,19.45,8,0.0 +16973,35,18,18,0.0 +16973,20,81,7,0.0 +16973,19,9.2,36,0.0 +16973,36,19,41,0.0 +16973,53,32.8,35,0.0 +16973,21,10,23,0.0 +16973,5,21.35,5,0.0 +16973,54,7.45,11,0.0 +16973,69,36,35,0.0 +16973,74,10,46,0.0 +16973,28,45.6,32,0.0 +16973,61,28.5,11,0.0 +16973,29,123.79,7,0.0 +16973,42,14,3,0.0 +16973,41,9.65,32,0.0 +16973,1,18,13,0.0 +16973,59,55,46,0.0 +16973,76,18,8,0.0 +16974,59,55,6,0.0 +16974,66,17,16,0.0 +16974,15,15.5,29,0.0 +16974,36,19,15,0.0 +16974,27,43.9,38,0.0 +16974,37,26,27,0.0 +16974,29,123.79,20,0.0 +16974,33,2.5,14,0.0 +16974,11,21,37,0.0 +16974,77,13,14,0.0 +16974,44,19.45,5,0.0 +16974,43,46,45,0.0 +16974,46,12,41,0.0 +16974,1,18,47,0.0 +16974,64,33.25,9,0.0 +16974,22,21,46,0.0 +16974,74,10,31,0.0 +16974,48,12.75,15,0.0 +16974,30,25.89,15,0.0 +16974,52,7,9,0.0 +16974,20,81,33,0.0 +16974,62,49.3,46,0.0 +16974,5,21.35,4,0.0 +16974,34,14,17,0.0 +16974,25,14,36,0.0 +16974,56,38,12,0.0 +16974,14,23.25,30,0.0 +16974,7,30,46,0.0 +16974,76,18,14,0.0 +16974,16,17.45,21,0.0 +16974,54,7.45,44,0.0 +16974,71,21.5,47,0.0 +16974,12,38,43,0.0 +16974,4,22,44,0.0 +16974,69,36,1,0.0 +16974,55,24,4,0.0 +16974,41,9.65,50,0.0 +16974,65,21.05,19,0.0 +16974,70,15,5,0.0 +16974,19,9.2,32,0.0 +16974,60,34,31,0.0 +16974,28,45.6,41,0.0 +16974,73,15,42,0.0 +16974,47,9.5,25,0.0 +16974,67,14,10,0.0 +16974,6,25,9,0.0 +16974,51,53,3,0.0 +16974,57,19.5,1,0.0 +16974,61,28.5,17,0.0 +16974,39,18,24,0.0 +16974,50,16.25,6,0.0 +16974,40,18.4,48,0.0 +16974,26,31.23,1,0.0 +16974,53,32.8,37,0.0 +16974,63,43.9,31,0.0 +16974,75,7.75,46,0.0 +16974,35,18,16,0.0 +16974,68,12.5,39,0.0 +16974,2,19,3,0.0 +16974,42,14,28,0.0 +16974,58,13.25,12,0.0 +16974,32,32,44,0.0 +16974,24,4.5,9,0.0 +16974,45,9.5,10,0.0 +16974,3,10,30,0.0 +16974,18,62.5,6,0.0 +16974,72,34.8,41,0.0 +16974,31,12.5,35,0.0 +16974,49,20,19,0.0 +16974,21,10,20,0.0 +16974,9,97,26,0.0 +16974,23,9,24,0.0 +16974,8,40,10,0.0 +16974,38,263.5,13,0.0 +16975,73,15,5,0.0 +16975,19,9.2,32,0.0 +16975,35,18,2,0.0 +16975,25,14,37,0.0 +16975,8,40,5,0.0 +16975,56,38,34,0.0 +16975,49,20,28,0.0 +16975,44,19.45,11,0.0 +16975,66,17,50,0.0 +16975,3,10,44,0.0 +16975,71,21.5,22,0.0 +16975,41,9.65,21,0.0 +16975,24,4.5,34,0.0 +16975,46,12,22,0.0 +16975,6,25,37,0.0 +16975,2,19,21,0.0 +16975,22,21,33,0.0 +16975,12,38,43,0.0 +16975,33,2.5,29,0.0 +16975,7,30,17,0.0 +16975,51,53,48,0.0 +16975,27,43.9,39,0.0 +16975,76,18,41,0.0 +16975,17,39,3,0.0 +16975,39,18,2,0.0 +16975,69,36,3,0.0 +16975,21,10,34,0.0 +16975,9,97,22,0.0 +16975,68,12.5,21,0.0 +16975,48,12.75,44,0.0 +16975,42,14,10,0.0 +16975,62,49.3,46,0.0 +16975,72,34.8,19,0.0 +16975,43,46,36,0.0 +16975,47,9.5,11,0.0 +16975,59,55,15,0.0 +16975,4,22,40,0.0 +16975,58,13.25,23,0.0 +16975,37,26,6,0.0 +16975,60,34,47,0.0 +16975,53,32.8,34,0.0 +16975,54,7.45,34,0.0 +16975,77,13,46,0.0 +16975,64,33.25,13,0.0 +16975,15,15.5,14,0.0 +16975,14,23.25,4,0.0 +16975,45,9.5,44,0.0 +16975,63,43.9,11,0.0 +16975,30,25.89,11,0.0 +16975,11,21,34,0.0 +16975,40,18.4,15,0.0 +16975,20,81,26,0.0 +16975,1,18,4,0.0 +16975,32,32,24,0.0 +16975,67,14,14,0.0 +16975,28,45.6,10,0.0 +16975,13,6,37,0.0 +16975,29,123.79,15,0.0 +16975,57,19.5,15,0.0 +16975,50,16.25,48,0.0 +16975,10,31,17,0.0 +16976,53,32.8,43,0.0 +16976,55,24,10,0.0 +16976,66,17,17,0.0 +16976,44,19.45,13,0.0 +16976,17,39,24,0.0 +16976,4,22,14,0.0 +16976,36,19,32,0.0 +16976,70,15,34,0.0 +16976,3,10,34,0.0 +16976,7,30,17,0.0 +16976,27,43.9,49,0.0 +16976,2,19,11,0.0 +16976,29,123.79,47,0.0 +16976,69,36,4,0.0 +16976,58,13.25,30,0.0 +16976,51,53,1,0.0 +16976,10,31,32,0.0 +16976,46,12,27,0.0 +16976,72,34.8,12,0.0 +16976,28,45.6,48,0.0 +16976,26,31.23,43,0.0 +16976,60,34,17,0.0 +16976,77,13,3,0.0 +16976,65,21.05,18,0.0 +16977,50,16.25,23,0.0 +16977,51,53,35,0.0 +16977,23,9,23,0.0 +16977,41,9.65,18,0.0 +16977,15,15.5,48,0.0 +16977,68,12.5,16,0.0 +16977,37,26,34,0.0 +16977,26,31.23,45,0.0 +16977,55,24,24,0.0 +16977,64,33.25,25,0.0 +16977,18,62.5,1,0.0 +16977,63,43.9,34,0.0 +16977,4,22,22,0.0 +16977,61,28.5,33,0.0 +16977,34,14,42,0.0 +16977,76,18,42,0.0 +16977,59,55,23,0.0 +16977,52,7,14,0.0 +16977,57,19.5,5,0.0 +16977,6,25,14,0.0 +16977,74,10,31,0.0 +16977,3,10,50,0.0 +16977,27,43.9,27,0.0 +16977,69,36,28,0.0 +16977,72,34.8,34,0.0 +16977,14,23.25,24,0.0 +16977,12,38,24,0.0 +16977,70,15,50,0.0 +16977,24,4.5,21,0.0 +16977,58,13.25,30,0.0 +16977,38,263.5,49,0.0 +16977,13,6,48,0.0 +16977,60,34,1,0.0 +16977,16,17.45,33,0.0 +16977,35,18,27,0.0 +16977,5,21.35,11,0.0 +16977,40,18.4,9,0.0 +16977,75,7.75,42,0.0 +16977,9,97,18,0.0 +16977,25,14,45,0.0 +16977,31,12.5,20,0.0 +16977,32,32,33,0.0 +16977,54,7.45,16,0.0 +16977,2,19,9,0.0 +16977,28,45.6,15,0.0 +16977,42,14,43,0.0 +16977,53,32.8,4,0.0 +16977,48,12.75,13,0.0 +16977,71,21.5,47,0.0 +16977,46,12,3,0.0 +16977,39,18,15,0.0 +16977,66,17,22,0.0 +16977,10,31,34,0.0 +16977,62,49.3,31,0.0 +16977,1,18,14,0.0 +16977,44,19.45,6,0.0 +16977,67,14,1,0.0 +16977,56,38,40,0.0 +16977,43,46,44,0.0 +16977,77,13,25,0.0 +16977,17,39,3,0.0 +16977,21,10,11,0.0 +16977,19,9.2,22,0.0 +16977,73,15,42,0.0 +16977,22,21,45,0.0 +16977,7,30,30,0.0 +16977,29,123.79,49,0.0 +16978,38,263.5,17,0.0 +16978,71,21.5,10,0.0 +16978,53,32.8,11,0.0 +16978,17,39,17,0.0 +16978,49,20,18,0.0 +16978,5,21.35,49,0.0 +16978,25,14,33,0.0 +16978,51,53,20,0.0 +16978,56,38,46,0.0 +16978,76,18,24,0.0 +16978,68,12.5,24,0.0 +16978,52,7,35,0.0 +16978,37,26,49,0.0 +16978,9,97,43,0.0 +16978,19,9.2,16,0.0 +16978,40,18.4,5,0.0 +16978,13,6,15,0.0 +16978,2,19,40,0.0 +16978,7,30,30,0.0 +16978,36,19,8,0.0 +16978,55,24,34,0.0 +16978,58,13.25,40,0.0 +16978,41,9.65,25,0.0 +16978,35,18,47,0.0 +16978,72,34.8,19,0.0 +16978,3,10,32,0.0 +16978,61,28.5,38,0.0 +16978,15,15.5,42,0.0 +16978,10,31,5,0.0 +16978,74,10,32,0.0 +16978,20,81,10,0.0 +16978,54,7.45,20,0.0 +16978,23,9,30,0.0 +16978,44,19.45,23,0.0 +16978,39,18,45,0.0 +16978,75,7.75,32,0.0 +16978,43,46,12,0.0 +16978,47,9.5,44,0.0 +16978,27,43.9,32,0.0 +16978,46,12,32,0.0 +16978,21,10,27,0.0 +16978,66,17,12,0.0 +16978,33,2.5,15,0.0 +16978,65,21.05,38,0.0 +16978,50,16.25,23,0.0 +16978,28,45.6,38,0.0 +16978,26,31.23,5,0.0 +16978,16,17.45,48,0.0 +16978,69,36,43,0.0 +16978,1,18,13,0.0 +16978,63,43.9,48,0.0 +16978,31,12.5,44,0.0 +16978,32,32,13,0.0 +16978,14,23.25,41,0.0 +16978,64,33.25,14,0.0 +16978,18,62.5,26,0.0 +16978,30,25.89,44,0.0 +16978,48,12.75,14,0.0 +16978,12,38,33,0.0 +16978,62,49.3,23,0.0 +16978,11,21,13,0.0 +16978,57,19.5,39,0.0 +16978,59,55,1,0.0 +16978,24,4.5,7,0.0 +16978,22,21,47,0.0 +16978,70,15,8,0.0 +16978,45,9.5,37,0.0 +16978,77,13,30,0.0 +16979,33,2.5,33,0.0 +16979,66,17,13,0.0 +16979,68,12.5,36,0.0 +16979,9,97,5,0.0 +16979,77,13,48,0.0 +16979,72,34.8,27,0.0 +16979,49,20,34,0.0 +16979,69,36,36,0.0 +16979,8,40,10,0.0 +16979,59,55,42,0.0 +16979,73,15,34,0.0 +16979,13,6,15,0.0 +16979,58,13.25,44,0.0 +16979,67,14,37,0.0 +16979,63,43.9,22,0.0 +16979,18,62.5,40,0.0 +16979,15,15.5,48,0.0 +16979,54,7.45,32,0.0 +16979,28,45.6,28,0.0 +16979,53,32.8,26,0.0 +16979,74,10,8,0.0 +16979,39,18,38,0.0 +16979,43,46,7,0.0 +16979,44,19.45,26,0.0 +16979,46,12,29,0.0 +16979,48,12.75,2,0.0 +16979,20,81,14,0.0 +16979,7,30,44,0.0 +16979,3,10,25,0.0 +16979,50,16.25,43,0.0 +16979,4,22,17,0.0 +16979,55,24,28,0.0 +16979,25,14,47,0.0 +16979,64,33.25,4,0.0 +16980,38,263.5,19,0.0 +16980,44,19.45,22,0.0 +16980,60,34,11,0.0 +16980,3,10,46,0.0 +16980,55,24,38,0.0 +16980,62,49.3,44,0.0 +16980,35,18,24,0.0 +16980,59,55,47,0.0 +16980,45,9.5,39,0.0 +16980,53,32.8,33,0.0 +16980,2,19,4,0.0 +16980,49,20,3,0.0 +16980,48,12.75,7,0.0 +16980,32,32,22,0.0 +16980,40,18.4,18,0.0 +16980,28,45.6,23,0.0 +16980,68,12.5,8,0.0 +16980,61,28.5,12,0.0 +16980,1,18,48,0.0 +16980,23,9,30,0.0 +16980,75,7.75,18,0.0 +16980,46,12,5,0.0 +16980,70,15,48,0.0 +16980,47,9.5,34,0.0 +16980,19,9.2,29,0.0 +16980,34,14,4,0.0 +16980,11,21,40,0.0 +16980,77,13,24,0.0 +16980,56,38,6,0.0 +16980,43,46,2,0.0 +16980,37,26,48,0.0 +16980,41,9.65,45,0.0 +16980,39,18,22,0.0 +16980,29,123.79,16,0.0 +16980,5,21.35,18,0.0 +16980,57,19.5,50,0.0 +16980,4,22,17,0.0 +16980,20,81,44,0.0 +16980,31,12.5,45,0.0 +16980,51,53,3,0.0 +16980,72,34.8,45,0.0 +16980,74,10,11,0.0 +16980,18,62.5,48,0.0 +16980,24,4.5,31,0.0 +16980,8,40,37,0.0 +16980,17,39,31,0.0 +16980,10,31,34,0.0 +16980,50,16.25,30,0.0 +16980,21,10,27,0.0 +16980,9,97,27,0.0 +16980,52,7,41,0.0 +16981,20,81,27,0.0 +16981,49,20,1,0.0 +16981,62,49.3,19,0.0 +16981,50,16.25,20,0.0 +16981,58,13.25,9,0.0 +16981,18,62.5,24,0.0 +16981,13,6,1,0.0 +16981,28,45.6,41,0.0 +16981,4,22,15,0.0 +16981,73,15,18,0.0 +16981,42,14,2,0.0 +16981,56,38,40,0.0 +16981,16,17.45,6,0.0 +16981,64,33.25,39,0.0 +16981,14,23.25,35,0.0 +16981,31,12.5,12,0.0 +16981,25,14,18,0.0 +16981,22,21,44,0.0 +16981,27,43.9,24,0.0 +16981,11,21,11,0.0 +16981,54,7.45,45,0.0 +16981,72,34.8,39,0.0 +16981,10,31,35,0.0 +16981,37,26,34,0.0 +16981,75,7.75,13,0.0 +16981,53,32.8,26,0.0 +16981,55,24,37,0.0 +16981,7,30,24,0.0 +16981,23,9,31,0.0 +16981,67,14,50,0.0 +16981,65,21.05,6,0.0 +16981,38,263.5,32,0.0 +16981,3,10,39,0.0 +16981,29,123.79,10,0.0 +16981,36,19,15,0.0 +16981,40,18.4,6,0.0 +16981,74,10,32,0.0 +16981,19,9.2,26,0.0 +16981,77,13,34,0.0 +16981,66,17,25,0.0 +16981,1,18,20,0.0 +16981,44,19.45,26,0.0 +16981,5,21.35,32,0.0 +16981,71,21.5,30,0.0 +16981,32,32,35,0.0 +16981,35,18,50,0.0 +16981,6,25,31,0.0 +16981,69,36,39,0.0 +16981,24,4.5,33,0.0 +16981,48,12.75,5,0.0 +16981,33,2.5,17,0.0 +16981,60,34,24,0.0 +16981,8,40,19,0.0 +16982,34,14,31,0.0 +16982,24,4.5,26,0.0 +16982,66,17,13,0.0 +16982,72,34.8,36,0.0 +16982,75,7.75,21,0.0 +16982,31,12.5,4,0.0 +16982,21,10,17,0.0 +16982,1,18,45,0.0 +16982,77,13,42,0.0 +16982,25,14,24,0.0 +16982,50,16.25,6,0.0 +16982,47,9.5,39,0.0 +16982,71,21.5,16,0.0 +16982,46,12,35,0.0 +16982,73,15,22,0.0 +16982,23,9,48,0.0 +16982,55,24,16,0.0 +16982,3,10,39,0.0 +16982,74,10,41,0.0 +16982,29,123.79,1,0.0 +16982,54,7.45,45,0.0 +16982,62,49.3,21,0.0 +16982,39,18,14,0.0 +16982,18,62.5,34,0.0 +16982,22,21,21,0.0 +16982,8,40,34,0.0 +16982,51,53,33,0.0 +16983,39,18,8,0.0 +16983,71,21.5,38,0.0 +16983,2,19,48,0.0 +16983,51,53,15,0.0 +16983,34,14,42,0.0 +16983,1,18,30,0.0 +16983,47,9.5,22,0.0 +16983,48,12.75,14,0.0 +16984,24,4.5,38,0.0 +16984,60,34,1,0.0 +16984,25,14,38,0.0 +16984,22,21,49,0.0 +16984,44,19.45,31,0.0 +16984,31,12.5,2,0.0 +16985,33,2.5,4,0.0 +16985,15,15.5,2,0.0 +16985,45,9.5,27,0.0 +16985,63,43.9,25,0.0 +16985,67,14,21,0.0 +16985,20,81,8,0.0 +16985,39,18,28,0.0 +16985,72,34.8,24,0.0 +16985,36,19,9,0.0 +16985,40,18.4,29,0.0 +16985,75,7.75,20,0.0 +16985,76,18,1,0.0 +16985,37,26,5,0.0 +16985,11,21,35,0.0 +16985,68,12.5,25,0.0 +16985,22,21,17,0.0 +16985,69,36,41,0.0 +16985,46,12,26,0.0 +16985,8,40,27,0.0 +16985,43,46,35,0.0 +16985,18,62.5,17,0.0 +16985,66,17,18,0.0 +16985,9,97,26,0.0 +16985,14,23.25,22,0.0 +16985,44,19.45,30,0.0 +16985,35,18,43,0.0 +16985,25,14,40,0.0 +16985,49,20,14,0.0 +16985,70,15,35,0.0 +16985,16,17.45,45,0.0 +16985,4,22,16,0.0 +16985,56,38,45,0.0 +16985,3,10,1,0.0 +16985,24,4.5,31,0.0 +16985,23,9,21,0.0 +16985,28,45.6,47,0.0 +16985,59,55,44,0.0 +16985,42,14,32,0.0 +16985,77,13,42,0.0 +16985,19,9.2,29,0.0 +16985,29,123.79,47,0.0 +16985,6,25,27,0.0 +16985,21,10,12,0.0 +16985,38,263.5,47,0.0 +16985,52,7,28,0.0 +16985,50,16.25,22,0.0 +16985,1,18,9,0.0 +16985,71,21.5,34,0.0 +16985,54,7.45,50,0.0 +16985,27,43.9,25,0.0 +16985,2,19,2,0.0 +16985,41,9.65,39,0.0 +16985,73,15,8,0.0 +16985,26,31.23,6,0.0 +16985,48,12.75,21,0.0 +16985,53,32.8,28,0.0 +16985,10,31,3,0.0 +16985,7,30,5,0.0 +16985,60,34,35,0.0 +16985,12,38,5,0.0 +16985,65,21.05,43,0.0 +16985,64,33.25,46,0.0 +16985,17,39,25,0.0 +16986,42,14,9,0.0 +16986,36,19,42,0.0 +16986,66,17,11,0.0 +16986,21,10,33,0.0 +16986,56,38,28,0.0 +16986,29,123.79,49,0.0 +16986,47,9.5,46,0.0 +16986,70,15,42,0.0 +16986,67,14,46,0.0 +16986,18,62.5,36,0.0 +16986,26,31.23,25,0.0 +16986,16,17.45,33,0.0 +16986,27,43.9,38,0.0 +16986,13,6,11,0.0 +16986,22,21,32,0.0 +16986,17,39,29,0.0 +16986,37,26,11,0.0 +16986,34,14,19,0.0 +16986,1,18,39,0.0 +16986,31,12.5,21,0.0 +16986,49,20,39,0.0 +16986,52,7,8,0.0 +16986,63,43.9,23,0.0 +16986,33,2.5,5,0.0 +16986,74,10,48,0.0 +16986,54,7.45,39,0.0 +16986,69,36,15,0.0 +16986,39,18,22,0.0 +16986,57,19.5,25,0.0 +16986,30,25.89,46,0.0 +16986,10,31,38,0.0 +16986,8,40,15,0.0 +16986,41,9.65,35,0.0 +16986,68,12.5,34,0.0 +16986,14,23.25,43,0.0 +16986,72,34.8,8,0.0 +16986,76,18,32,0.0 +16986,46,12,9,0.0 +16986,23,9,45,0.0 +16986,12,38,28,0.0 +16986,45,9.5,9,0.0 +16986,19,9.2,21,0.0 +16986,53,32.8,19,0.0 +16986,73,15,35,0.0 +16986,5,21.35,26,0.0 +16986,64,33.25,3,0.0 +16986,62,49.3,50,0.0 +16986,59,55,41,0.0 +16987,16,17.45,1,0.0 +16987,24,4.5,35,0.0 +16987,10,31,35,0.0 +16987,28,45.6,14,0.0 +16987,43,46,6,0.0 +16987,53,32.8,36,0.0 +16987,14,23.25,14,0.0 +16987,57,19.5,36,0.0 +16987,59,55,15,0.0 +16987,29,123.79,14,0.0 +16987,17,39,40,0.0 +16987,55,24,36,0.0 +16987,21,10,22,0.0 +16987,30,25.89,28,0.0 +16987,58,13.25,14,0.0 +16987,13,6,25,0.0 +16987,75,7.75,48,0.0 +16987,64,33.25,28,0.0 +16987,22,21,31,0.0 +16987,38,263.5,8,0.0 +16987,12,38,32,0.0 +16987,73,15,36,0.0 +16987,25,14,24,0.0 +16987,63,43.9,45,0.0 +16987,3,10,48,0.0 +16988,21,10,30,0.0 +16988,40,18.4,23,0.0 +16988,27,43.9,25,0.0 +16988,7,30,14,0.0 +16988,77,13,33,0.0 +16988,72,34.8,4,0.0 +16988,73,15,50,0.0 +16988,25,14,32,0.0 +16988,17,39,7,0.0 +16988,1,18,21,0.0 +16988,71,21.5,36,0.0 +16988,5,21.35,9,0.0 +16988,23,9,41,0.0 +16988,31,12.5,24,0.0 +16988,51,53,15,0.0 +16988,3,10,5,0.0 +16988,9,97,27,0.0 +16988,15,15.5,49,0.0 +16988,63,43.9,12,0.0 +16988,69,36,44,0.0 +16988,47,9.5,2,0.0 +16988,14,23.25,40,0.0 +16988,32,32,11,0.0 +16988,22,21,18,0.0 +16988,10,31,25,0.0 +16988,37,26,45,0.0 +16988,61,28.5,15,0.0 +16988,45,9.5,15,0.0 +16988,62,49.3,41,0.0 +16988,11,21,6,0.0 +16988,70,15,27,0.0 +16988,8,40,36,0.0 +16988,39,18,22,0.0 +16988,44,19.45,37,0.0 +16988,52,7,1,0.0 +16988,67,14,46,0.0 +16988,33,2.5,20,0.0 +16988,36,19,32,0.0 +16988,43,46,4,0.0 +16988,16,17.45,44,0.0 +16988,55,24,9,0.0 +16988,34,14,40,0.0 +16988,20,81,20,0.0 +16988,38,263.5,43,0.0 +16988,42,14,19,0.0 +16988,65,21.05,50,0.0 +16988,64,33.25,18,0.0 +16988,58,13.25,46,0.0 +16988,66,17,50,0.0 +16988,57,19.5,38,0.0 +16988,12,38,41,0.0 +16988,50,16.25,16,0.0 +16988,30,25.89,50,0.0 +16988,54,7.45,11,0.0 +16988,76,18,45,0.0 +16988,59,55,17,0.0 +16988,29,123.79,21,0.0 +16988,19,9.2,8,0.0 +16988,2,19,3,0.0 +16988,53,32.8,3,0.0 +16988,4,22,37,0.0 +16988,24,4.5,32,0.0 +16988,18,62.5,36,0.0 +16988,28,45.6,23,0.0 +16988,35,18,20,0.0 +16988,60,34,5,0.0 +16988,48,12.75,33,0.0 +16989,18,62.5,39,0.0 +16989,24,4.5,12,0.0 +16989,67,14,41,0.0 +16989,38,263.5,24,0.0 +16989,66,17,49,0.0 +16989,7,30,48,0.0 +16989,36,19,48,0.0 +16989,75,7.75,36,0.0 +16989,41,9.65,45,0.0 +16989,27,43.9,16,0.0 +16989,45,9.5,10,0.0 +16989,49,20,42,0.0 +16989,57,19.5,38,0.0 +16989,29,123.79,20,0.0 +16989,21,10,35,0.0 +16989,14,23.25,35,0.0 +16989,54,7.45,7,0.0 +16989,63,43.9,7,0.0 +16989,8,40,4,0.0 +16989,51,53,1,0.0 +16989,32,32,50,0.0 +16989,33,2.5,33,0.0 +16989,20,81,40,0.0 +16989,55,24,44,0.0 +16989,2,19,48,0.0 +16989,43,46,4,0.0 +16989,42,14,46,0.0 +16989,40,18.4,24,0.0 +16989,28,45.6,43,0.0 +16989,69,36,23,0.0 +16989,65,21.05,23,0.0 +16989,71,21.5,11,0.0 +16989,68,12.5,28,0.0 +16989,62,49.3,18,0.0 +16989,23,9,6,0.0 +16989,26,31.23,18,0.0 +16989,76,18,27,0.0 +16989,30,25.89,27,0.0 +16989,16,17.45,32,0.0 +16989,4,22,16,0.0 +16989,47,9.5,24,0.0 +16989,74,10,36,0.0 +16989,50,16.25,30,0.0 +16989,44,19.45,17,0.0 +16989,59,55,24,0.0 +16989,39,18,12,0.0 +16989,61,28.5,2,0.0 +16989,72,34.8,45,0.0 +16989,48,12.75,12,0.0 +16989,34,14,18,0.0 +16989,35,18,39,0.0 +16989,37,26,44,0.0 +16989,58,13.25,14,0.0 +16989,3,10,10,0.0 +16989,22,21,42,0.0 +16989,77,13,29,0.0 +16989,19,9.2,18,0.0 +16989,13,6,37,0.0 +16989,9,97,2,0.0 +16989,53,32.8,43,0.0 +16989,5,21.35,12,0.0 +16989,25,14,21,0.0 +16989,31,12.5,20,0.0 +16989,11,21,5,0.0 +16989,70,15,49,0.0 +16989,52,7,14,0.0 +16989,60,34,38,0.0 +16989,12,38,19,0.0 +16989,64,33.25,41,0.0 +16989,10,31,29,0.0 +16989,73,15,2,0.0 +16990,45,9.5,8,0.0 +16990,70,15,48,0.0 +16990,13,6,34,0.0 +16990,76,18,45,0.0 +16990,53,32.8,28,0.0 +16990,21,10,33,0.0 +16990,68,12.5,28,0.0 +16990,63,43.9,37,0.0 +16990,71,21.5,23,0.0 +16990,36,19,22,0.0 +16990,48,12.75,13,0.0 +16990,39,18,31,0.0 +16990,37,26,33,0.0 +16990,46,12,2,0.0 +16990,59,55,39,0.0 +16990,42,14,2,0.0 +16990,52,7,32,0.0 +16990,75,7.75,9,0.0 +16990,4,22,28,0.0 +16990,17,39,12,0.0 +16990,41,9.65,15,0.0 +16990,35,18,8,0.0 +16990,32,32,13,0.0 +16990,55,24,46,0.0 +16990,66,17,50,0.0 +16990,56,38,6,0.0 +16990,72,34.8,34,0.0 +16990,60,34,1,0.0 +16990,26,31.23,26,0.0 +16990,73,15,17,0.0 +16990,61,28.5,34,0.0 +16990,18,62.5,1,0.0 +16990,3,10,45,0.0 +16990,8,40,47,0.0 +16990,11,21,31,0.0 +16990,7,30,11,0.0 +16990,74,10,15,0.0 +16990,44,19.45,39,0.0 +16990,62,49.3,40,0.0 +16990,69,36,45,0.0 +16990,24,4.5,34,0.0 +16990,58,13.25,7,0.0 +16990,30,25.89,21,0.0 +16990,28,45.6,6,0.0 +16990,1,18,4,0.0 +16990,19,9.2,40,0.0 +16990,38,263.5,36,0.0 +16990,67,14,19,0.0 +16990,51,53,4,0.0 +16990,22,21,49,0.0 +16990,54,7.45,12,0.0 +16990,2,19,45,0.0 +16990,10,31,28,0.0 +16990,77,13,5,0.0 +16990,43,46,7,0.0 +16990,23,9,27,0.0 +16990,14,23.25,2,0.0 +16990,5,21.35,7,0.0 +16990,27,43.9,10,0.0 +16990,20,81,12,0.0 +16990,64,33.25,43,0.0 +16990,25,14,8,0.0 +16990,34,14,44,0.0 +16990,16,17.45,8,0.0 +16990,12,38,1,0.0 +16990,33,2.5,1,0.0 +16991,44,19.45,25,0.0 +16991,77,13,20,0.0 +16991,71,21.5,17,0.0 +16991,59,55,16,0.0 +16991,54,7.45,8,0.0 +16991,61,28.5,33,0.0 +16991,8,40,12,0.0 +16991,12,38,9,0.0 +16991,18,62.5,34,0.0 +16991,29,123.79,19,0.0 +16991,49,20,40,0.0 +16991,67,14,12,0.0 +16991,6,25,5,0.0 +16991,5,21.35,1,0.0 +16991,53,32.8,37,0.0 +16991,74,10,42,0.0 +16991,2,19,18,0.0 +16991,19,9.2,14,0.0 +16992,47,9.5,1,0.0 +16992,77,13,21,0.0 +16992,48,12.75,29,0.0 +16992,54,7.45,17,0.0 +16992,73,15,41,0.0 +16992,60,34,40,0.0 +16992,53,32.8,45,0.0 +16992,19,9.2,17,0.0 +16992,45,9.5,8,0.0 +16992,11,21,16,0.0 +16992,12,38,22,0.0 +16992,32,32,29,0.0 +16992,36,19,10,0.0 +16992,72,34.8,18,0.0 +16992,8,40,21,0.0 +16992,71,21.5,28,0.0 +16992,39,18,14,0.0 +16992,26,31.23,17,0.0 +16992,40,18.4,30,0.0 +16992,22,21,11,0.0 +16992,52,7,11,0.0 +16992,27,43.9,21,0.0 +16992,42,14,21,0.0 +16992,1,18,47,0.0 +16992,10,31,17,0.0 +16992,2,19,49,0.0 +16992,25,14,15,0.0 +16992,15,15.5,46,0.0 +16992,57,19.5,25,0.0 +16993,41,9.65,4,0.0 +16993,8,40,43,0.0 +16993,72,34.8,34,0.0 +16993,30,25.89,15,0.0 +16993,33,2.5,17,0.0 +16993,10,31,28,0.0 +16993,35,18,42,0.0 +16993,23,9,33,0.0 +16993,14,23.25,13,0.0 +16993,26,31.23,11,0.0 +16993,36,19,48,0.0 +16993,45,9.5,37,0.0 +16993,57,19.5,24,0.0 +16993,70,15,4,0.0 +16993,43,46,49,0.0 +16993,59,55,3,0.0 +16993,32,32,12,0.0 +16993,16,17.45,28,0.0 +16994,74,10,21,0.0 +16994,54,7.45,38,0.0 +16994,50,16.25,48,0.0 +16994,44,19.45,33,0.0 +16994,75,7.75,9,0.0 +16994,19,9.2,40,0.0 +16994,59,55,13,0.0 +16994,28,45.6,19,0.0 +16994,6,25,35,0.0 +16994,5,21.35,31,0.0 +16994,25,14,40,0.0 +16994,3,10,6,0.0 +16994,13,6,1,0.0 +16994,31,12.5,30,0.0 +16994,64,33.25,38,0.0 +16994,67,14,36,0.0 +16994,14,23.25,4,0.0 +16994,43,46,17,0.0 +16994,38,263.5,32,0.0 +16994,46,12,23,0.0 +16994,20,81,26,0.0 +16994,4,22,13,0.0 +16994,60,34,38,0.0 +16994,40,18.4,38,0.0 +16994,8,40,45,0.0 +16994,62,49.3,42,0.0 +16994,17,39,6,0.0 +16994,39,18,21,0.0 +16994,26,31.23,4,0.0 +16994,21,10,23,0.0 +16994,24,4.5,8,0.0 +16994,2,19,50,0.0 +16994,22,21,14,0.0 +16994,71,21.5,12,0.0 +16994,52,7,45,0.0 +16994,23,9,43,0.0 +16994,68,12.5,28,0.0 +16994,36,19,10,0.0 +16994,7,30,32,0.0 +16994,18,62.5,9,0.0 +16994,42,14,22,0.0 +16994,56,38,6,0.0 +16994,10,31,12,0.0 +16994,9,97,2,0.0 +16994,30,25.89,1,0.0 +16994,72,34.8,3,0.0 +16994,1,18,5,0.0 +16994,45,9.5,19,0.0 +16994,49,20,36,0.0 +16994,37,26,5,0.0 +16994,55,24,10,0.0 +16994,51,53,31,0.0 +16994,76,18,3,0.0 +16994,58,13.25,4,0.0 +16994,27,43.9,46,0.0 +16994,61,28.5,7,0.0 +16994,70,15,14,0.0 +16994,41,9.65,40,0.0 +16994,65,21.05,10,0.0 +16994,47,9.5,20,0.0 +16994,15,15.5,15,0.0 +16994,33,2.5,49,0.0 +16994,57,19.5,44,0.0 +16994,35,18,28,0.0 +16994,16,17.45,1,0.0 +16994,48,12.75,26,0.0 +16994,29,123.79,20,0.0 +16994,11,21,8,0.0 +16994,34,14,38,0.0 +16994,53,32.8,15,0.0 +16994,63,43.9,29,0.0 +16994,73,15,8,0.0 +16995,38,263.5,10,0.0 +16995,1,18,14,0.0 +16995,5,21.35,46,0.0 +16995,56,38,23,0.0 +16995,73,15,36,0.0 +16995,34,14,32,0.0 +16995,7,30,11,0.0 +16995,37,26,15,0.0 +16995,69,36,23,0.0 +16995,22,21,27,0.0 +16995,15,15.5,20,0.0 +16995,2,19,44,0.0 +16995,60,34,14,0.0 +16995,16,17.45,50,0.0 +16995,49,20,19,0.0 +16995,8,40,47,0.0 +16995,62,49.3,25,0.0 +16995,4,22,2,0.0 +16995,67,14,19,0.0 +16995,46,12,35,0.0 +16995,11,21,31,0.0 +16995,26,31.23,39,0.0 +16995,65,21.05,38,0.0 +16995,27,43.9,36,0.0 +16995,13,6,11,0.0 +16995,17,39,47,0.0 +16995,33,2.5,23,0.0 +16995,59,55,15,0.0 +16995,54,7.45,29,0.0 +16995,29,123.79,17,0.0 +16995,68,12.5,41,0.0 +16995,74,10,32,0.0 +16995,61,28.5,5,0.0 +16995,24,4.5,34,0.0 +16995,30,25.89,10,0.0 +16995,57,19.5,36,0.0 +16995,55,24,48,0.0 +16995,50,16.25,42,0.0 +16995,23,9,10,0.0 +16995,18,62.5,28,0.0 +16995,39,18,39,0.0 +16995,75,7.75,3,0.0 +16995,71,21.5,22,0.0 +16995,19,9.2,1,0.0 +16995,48,12.75,45,0.0 +16995,40,18.4,2,0.0 +16995,72,34.8,20,0.0 +16995,35,18,11,0.0 +16995,42,14,10,0.0 +16995,47,9.5,47,0.0 +16995,51,53,24,0.0 +16995,25,14,28,0.0 +16995,32,32,43,0.0 +16995,70,15,20,0.0 +16995,14,23.25,8,0.0 +16995,76,18,28,0.0 +16995,43,46,47,0.0 +16995,9,97,26,0.0 +16995,36,19,2,0.0 +16995,3,10,16,0.0 +16995,12,38,40,0.0 +16995,52,7,10,0.0 +16995,44,19.45,50,0.0 +16995,45,9.5,15,0.0 +16995,20,81,23,0.0 +16995,77,13,23,0.0 +16995,53,32.8,22,0.0 +16995,21,10,16,0.0 +16995,66,17,25,0.0 +16995,10,31,44,0.0 +16995,28,45.6,3,0.0 +16995,64,33.25,22,0.0 +16996,68,12.5,30,0.0 +16996,18,62.5,2,0.0 +16996,41,9.65,6,0.0 +16996,43,46,6,0.0 +16996,9,97,3,0.0 +16996,66,17,12,0.0 +16996,57,19.5,2,0.0 +16996,74,10,12,0.0 +16996,28,45.6,33,0.0 +16996,29,123.79,42,0.0 +16996,34,14,44,0.0 +16996,47,9.5,45,0.0 +16996,11,21,38,0.0 +16996,31,12.5,41,0.0 +16996,40,18.4,42,0.0 +16996,72,34.8,32,0.0 +16996,35,18,9,0.0 +16996,63,43.9,43,0.0 +16996,52,7,45,0.0 +16996,46,12,29,0.0 +16996,36,19,22,0.0 +16996,37,26,5,0.0 +16996,25,14,31,0.0 +16996,62,49.3,21,0.0 +16997,34,14,48,0.0 +16997,60,34,30,0.0 +16997,16,17.45,22,0.0 +16997,55,24,41,0.0 +16997,2,19,28,0.0 +16997,59,55,28,0.0 +16997,73,15,10,0.0 +16997,63,43.9,4,0.0 +16997,71,21.5,2,0.0 +16997,31,12.5,43,0.0 +16997,61,28.5,38,0.0 +16997,28,45.6,7,0.0 +16997,24,4.5,25,0.0 +16997,48,12.75,39,0.0 +16997,53,32.8,7,0.0 +16997,22,21,33,0.0 +16997,46,12,14,0.0 +16997,30,25.89,39,0.0 +16997,23,9,36,0.0 +16997,47,9.5,13,0.0 +16997,35,18,35,0.0 +16997,49,20,36,0.0 +16997,62,49.3,6,0.0 +16997,52,7,41,0.0 +16997,14,23.25,33,0.0 +16997,1,18,9,0.0 +16997,41,9.65,48,0.0 +16997,36,19,26,0.0 +16997,75,7.75,21,0.0 +16997,12,38,26,0.0 +16997,33,2.5,18,0.0 +16997,27,43.9,14,0.0 +16997,45,9.5,26,0.0 +16997,42,14,19,0.0 +16997,51,53,37,0.0 +16997,38,263.5,40,0.0 +16997,72,34.8,45,0.0 +16997,21,10,29,0.0 +16997,17,39,18,0.0 +16997,44,19.45,42,0.0 +16997,6,25,12,0.0 +16997,57,19.5,50,0.0 +16997,13,6,42,0.0 +16997,64,33.25,15,0.0 +16997,67,14,2,0.0 +16997,70,15,20,0.0 +16997,5,21.35,26,0.0 +16997,65,21.05,18,0.0 +16997,20,81,5,0.0 +16997,32,32,39,0.0 +16997,66,17,12,0.0 +16997,69,36,40,0.0 +16997,56,38,2,0.0 +16997,77,13,7,0.0 +16997,40,18.4,8,0.0 +16997,25,14,43,0.0 +16997,37,26,4,0.0 +16998,51,53,22,0.0 +16999,37,26,4,0.0 +16999,3,10,45,0.0 +16999,25,14,30,0.0 +16999,57,19.5,13,0.0 +16999,20,81,24,0.0 +16999,66,17,39,0.0 +16999,67,14,13,0.0 +16999,21,10,40,0.0 +16999,60,34,14,0.0 +16999,36,19,32,0.0 +16999,22,21,38,0.0 +16999,17,39,33,0.0 +16999,27,43.9,30,0.0 +16999,15,15.5,30,0.0 +16999,69,36,21,0.0 +16999,51,53,42,0.0 +16999,63,43.9,32,0.0 +16999,39,18,14,0.0 +16999,32,32,12,0.0 +16999,68,12.5,1,0.0 +16999,41,9.65,38,0.0 +16999,45,9.5,36,0.0 +16999,50,16.25,27,0.0 +16999,48,12.75,48,0.0 +16999,46,12,44,0.0 +16999,26,31.23,36,0.0 +16999,62,49.3,1,0.0 +16999,64,33.25,47,0.0 +16999,49,20,23,0.0 +16999,19,9.2,17,0.0 +16999,42,14,4,0.0 +16999,10,31,10,0.0 +16999,11,21,41,0.0 +16999,73,15,39,0.0 +16999,28,45.6,50,0.0 +16999,58,13.25,38,0.0 +16999,55,24,7,0.0 +16999,75,7.75,5,0.0 +16999,71,21.5,22,0.0 +16999,29,123.79,8,0.0 +16999,16,17.45,25,0.0 +16999,53,32.8,45,0.0 +16999,5,21.35,43,0.0 +16999,47,9.5,34,0.0 +16999,52,7,17,0.0 +16999,8,40,6,0.0 +16999,33,2.5,28,0.0 +16999,56,38,44,0.0 +16999,59,55,13,0.0 +16999,30,25.89,39,0.0 +16999,61,28.5,38,0.0 +16999,4,22,32,0.0 +16999,1,18,41,0.0 +16999,76,18,48,0.0 +16999,77,13,24,0.0 +16999,7,30,24,0.0 +16999,13,6,31,0.0 +16999,70,15,34,0.0 +16999,38,263.5,50,0.0 +16999,44,19.45,42,0.0 +16999,65,21.05,11,0.0 +16999,31,12.5,17,0.0 +16999,35,18,16,0.0 +16999,23,9,29,0.0 +16999,14,23.25,47,0.0 +16999,9,97,34,0.0 +17000,53,32.8,33,0.0 +17000,35,18,43,0.0 +17000,18,62.5,50,0.0 +17000,42,14,30,0.0 +17000,24,4.5,32,0.0 +17000,34,14,16,0.0 +17000,29,123.79,8,0.0 +17000,4,22,39,0.0 +17000,51,53,42,0.0 +17000,63,43.9,41,0.0 +17000,13,6,23,0.0 +17000,28,45.6,10,0.0 +17000,14,23.25,5,0.0 +17000,37,26,42,0.0 +17000,54,7.45,16,0.0 +17000,21,10,47,0.0 +17000,59,55,26,0.0 +17000,48,12.75,11,0.0 +17000,17,39,1,0.0 +17000,74,10,45,0.0 +17000,5,21.35,26,0.0 +17000,9,97,11,0.0 +17000,70,15,28,0.0 +17000,46,12,50,0.0 +17000,32,32,15,0.0 +17000,61,28.5,31,0.0 +17000,49,20,30,0.0 +17000,8,40,12,0.0 +17000,57,19.5,20,0.0 +17000,50,16.25,47,0.0 +17000,56,38,41,0.0 +17000,64,33.25,50,0.0 +17000,71,21.5,50,0.0 +17000,23,9,39,0.0 +17000,2,19,13,0.0 +17000,31,12.5,11,0.0 +17000,55,24,32,0.0 +17000,7,30,15,0.0 +17000,72,34.8,9,0.0 +17000,36,19,11,0.0 +17000,22,21,5,0.0 +17000,12,38,32,0.0 +17000,20,81,46,0.0 +17000,45,9.5,19,0.0 +17000,33,2.5,33,0.0 +17000,1,18,29,0.0 +17001,47,9.5,4,0.0 +17001,67,14,18,0.0 +17001,68,12.5,38,0.0 +17001,9,97,42,0.0 +17001,5,21.35,9,0.0 +17001,50,16.25,17,0.0 +17001,39,18,5,0.0 +17001,46,12,6,0.0 +17001,64,33.25,23,0.0 +17001,36,19,5,0.0 +17001,23,9,1,0.0 +17001,34,14,45,0.0 +17001,30,25.89,39,0.0 +17001,1,18,29,0.0 +17001,25,14,28,0.0 +17001,7,30,40,0.0 +17001,53,32.8,44,0.0 +17001,61,28.5,7,0.0 +17001,22,21,43,0.0 +17001,43,46,25,0.0 +17001,41,9.65,12,0.0 +17001,57,19.5,19,0.0 +17001,62,49.3,45,0.0 +17001,75,7.75,29,0.0 +17001,74,10,49,0.0 +17001,38,263.5,6,0.0 +17001,71,21.5,4,0.0 +17001,10,31,10,0.0 +17001,72,34.8,27,0.0 +17001,6,25,24,0.0 +17001,15,15.5,47,0.0 +17001,3,10,29,0.0 +17001,51,53,41,0.0 +17001,44,19.45,41,0.0 +17001,45,9.5,8,0.0 +17001,4,22,46,0.0 +17001,76,18,16,0.0 +17001,52,7,8,0.0 +17001,17,39,29,0.0 +17001,37,26,15,0.0 +17001,14,23.25,47,0.0 +17001,58,13.25,8,0.0 +17001,60,34,13,0.0 +17001,33,2.5,16,0.0 +17001,49,20,14,0.0 +17001,56,38,11,0.0 +17001,59,55,35,0.0 +17001,77,13,22,0.0 +17001,21,10,24,0.0 +17001,70,15,12,0.0 +17001,11,21,11,0.0 +17001,16,17.45,43,0.0 +17001,42,14,31,0.0 +17001,24,4.5,13,0.0 +17001,20,81,45,0.0 +17001,69,36,26,0.0 +17001,27,43.9,43,0.0 +17001,32,32,33,0.0 +17001,31,12.5,30,0.0 +17001,29,123.79,25,0.0 +17001,2,19,39,0.0 +17001,35,18,1,0.0 +17001,55,24,37,0.0 +17001,28,45.6,8,0.0 +17001,54,7.45,1,0.0 +17001,26,31.23,36,0.0 +17001,63,43.9,38,0.0 +17001,40,18.4,11,0.0 +17001,18,62.5,1,0.0 +17001,13,6,13,0.0 +17001,73,15,30,0.0 +17001,66,17,44,0.0 +17001,8,40,16,0.0 +17001,12,38,33,0.0 +17001,19,9.2,8,0.0 +17002,1,18,14,0.0 +17002,63,43.9,14,0.0 +17002,19,9.2,38,0.0 +17002,21,10,27,0.0 +17002,75,7.75,24,0.0 +17003,12,38,15,0.0 +17003,69,36,30,0.0 +17003,62,49.3,46,0.0 +17003,53,32.8,3,0.0 +17003,61,28.5,32,0.0 +17003,65,21.05,39,0.0 +17003,13,6,13,0.0 +17003,39,18,27,0.0 +17003,31,12.5,45,0.0 +17003,57,19.5,31,0.0 +17003,6,25,2,0.0 +17003,8,40,4,0.0 +17003,2,19,40,0.0 +17003,40,18.4,36,0.0 +17003,68,12.5,25,0.0 +17003,11,21,43,0.0 +17003,41,9.65,4,0.0 +17003,59,55,48,0.0 +17003,51,53,49,0.0 +17003,63,43.9,37,0.0 +17003,77,13,44,0.0 +17003,52,7,23,0.0 +17003,27,43.9,14,0.0 +17003,9,97,36,0.0 +17003,19,9.2,16,0.0 +17003,21,10,47,0.0 +17003,55,24,2,0.0 +17003,24,4.5,38,0.0 +17003,46,12,35,0.0 +17003,14,23.25,17,0.0 +17003,76,18,31,0.0 +17003,70,15,32,0.0 +17003,50,16.25,33,0.0 +17003,67,14,41,0.0 +17003,5,21.35,26,0.0 +17003,56,38,45,0.0 +17003,71,21.5,35,0.0 +17003,30,25.89,46,0.0 +17003,35,18,24,0.0 +17003,26,31.23,16,0.0 +17003,29,123.79,50,0.0 +17003,16,17.45,17,0.0 +17003,72,34.8,47,0.0 +17003,47,9.5,4,0.0 +17003,7,30,14,0.0 +17003,36,19,27,0.0 +17003,45,9.5,15,0.0 +17003,22,21,12,0.0 +17003,3,10,39,0.0 +17003,37,26,24,0.0 +17003,23,9,27,0.0 +17003,32,32,38,0.0 +17003,25,14,28,0.0 +17003,73,15,31,0.0 +17004,76,18,21,0.0 +17004,48,12.75,46,0.0 +17004,12,38,24,0.0 +17004,5,21.35,6,0.0 +17004,4,22,45,0.0 +17004,51,53,11,0.0 +17004,34,14,34,0.0 +17004,66,17,9,0.0 +17004,59,55,12,0.0 +17004,10,31,19,0.0 +17004,21,10,44,0.0 +17004,20,81,9,0.0 +17004,55,24,8,0.0 +17004,28,45.6,18,0.0 +17004,73,15,27,0.0 +17004,32,32,30,0.0 +17004,24,4.5,17,0.0 +17004,44,19.45,29,0.0 +17004,41,9.65,39,0.0 +17004,8,40,7,0.0 +17004,57,19.5,15,0.0 +17004,14,23.25,7,0.0 +17004,74,10,23,0.0 +17004,47,9.5,6,0.0 +17004,38,263.5,45,0.0 +17004,7,30,11,0.0 +17004,33,2.5,37,0.0 +17004,29,123.79,19,0.0 +17004,63,43.9,6,0.0 +17004,18,62.5,22,0.0 +17004,1,18,28,0.0 +17004,25,14,16,0.0 +17004,45,9.5,42,0.0 +17004,69,36,12,0.0 +17004,22,21,42,0.0 +17004,16,17.45,25,0.0 +17004,13,6,50,0.0 +17004,15,15.5,32,0.0 +17004,62,49.3,46,0.0 +17004,70,15,7,0.0 +17004,42,14,28,0.0 +17004,35,18,31,0.0 +17004,49,20,27,0.0 +17004,11,21,49,0.0 +17004,26,31.23,8,0.0 +17004,60,34,17,0.0 +17004,53,32.8,45,0.0 +17004,43,46,35,0.0 +17004,64,33.25,47,0.0 +17004,23,9,34,0.0 +17004,39,18,49,0.0 +17004,2,19,45,0.0 +17004,61,28.5,3,0.0 +17004,27,43.9,34,0.0 +17004,40,18.4,12,0.0 +17004,37,26,4,0.0 +17004,30,25.89,6,0.0 +17004,72,34.8,16,0.0 +17004,6,25,29,0.0 +17004,71,21.5,21,0.0 +17004,36,19,31,0.0 +17004,19,9.2,37,0.0 +17004,77,13,49,0.0 +17004,67,14,16,0.0 +17004,46,12,2,0.0 +17004,31,12.5,45,0.0 +17004,17,39,39,0.0 +17004,56,38,2,0.0 +17004,58,13.25,3,0.0 +17004,54,7.45,6,0.0 +17004,50,16.25,28,0.0 +17004,75,7.75,23,0.0 +17004,65,21.05,24,0.0 +17004,68,12.5,33,0.0 +17004,3,10,46,0.0 +17004,9,97,9,0.0 +17005,46,12,30,0.0 +17005,51,53,4,0.0 +17005,50,16.25,34,0.0 +17005,68,12.5,45,0.0 +17005,19,9.2,20,0.0 +17006,5,21.35,36,0.0 +17006,32,32,13,0.0 +17006,58,13.25,36,0.0 +17006,17,39,2,0.0 +17006,9,97,32,0.0 +17006,15,15.5,26,0.0 +17006,68,12.5,39,0.0 +17006,61,28.5,20,0.0 +17006,4,22,6,0.0 +17006,7,30,6,0.0 +17006,53,32.8,8,0.0 +17006,48,12.75,26,0.0 +17006,66,17,35,0.0 +17006,18,62.5,43,0.0 +17006,24,4.5,43,0.0 +17006,44,19.45,28,0.0 +17006,63,43.9,31,0.0 +17006,60,34,11,0.0 +17006,33,2.5,35,0.0 +17006,64,33.25,32,0.0 +17006,76,18,4,0.0 +17006,52,7,5,0.0 +17006,10,31,2,0.0 +17006,34,14,25,0.0 +17006,51,53,47,0.0 +17006,56,38,7,0.0 +17006,47,9.5,15,0.0 +17006,46,12,48,0.0 +17006,43,46,7,0.0 +17006,14,23.25,4,0.0 +17006,59,55,21,0.0 +17006,6,25,48,0.0 +17006,62,49.3,43,0.0 +17006,3,10,9,0.0 +17006,70,15,42,0.0 +17006,73,15,35,0.0 +17006,36,19,44,0.0 +17006,39,18,44,0.0 +17006,1,18,14,0.0 +17006,21,10,39,0.0 +17006,77,13,30,0.0 +17006,8,40,9,0.0 +17006,27,43.9,32,0.0 +17006,54,7.45,31,0.0 +17006,35,18,23,0.0 +17006,74,10,32,0.0 +17006,72,34.8,1,0.0 +17006,67,14,17,0.0 +17006,50,16.25,37,0.0 +17006,42,14,3,0.0 +17006,20,81,18,0.0 +17006,38,263.5,24,0.0 +17006,29,123.79,34,0.0 +17006,57,19.5,13,0.0 +17006,12,38,21,0.0 +17006,31,12.5,18,0.0 +17006,69,36,17,0.0 +17006,16,17.45,39,0.0 +17006,19,9.2,49,0.0 +17006,40,18.4,25,0.0 +17006,37,26,17,0.0 +17006,30,25.89,20,0.0 +17006,55,24,8,0.0 +17006,65,21.05,4,0.0 +17006,2,19,30,0.0 +17006,45,9.5,12,0.0 +17006,26,31.23,1,0.0 +17006,13,6,16,0.0 +17006,71,21.5,18,0.0 +17006,22,21,6,0.0 +17007,38,263.5,33,0.0 +17007,67,14,40,0.0 +17007,53,32.8,7,0.0 +17007,43,46,45,0.0 +17007,60,34,28,0.0 +17007,6,25,16,0.0 +17007,29,123.79,9,0.0 +17007,57,19.5,38,0.0 +17007,48,12.75,43,0.0 +17007,37,26,19,0.0 +17007,35,18,36,0.0 +17007,17,39,2,0.0 +17007,42,14,31,0.0 +17007,8,40,18,0.0 +17007,7,30,42,0.0 +17007,61,28.5,8,0.0 +17007,27,43.9,22,0.0 +17007,20,81,13,0.0 +17007,4,22,26,0.0 +17007,13,6,45,0.0 +17007,33,2.5,24,0.0 +17007,12,38,50,0.0 +17007,9,97,6,0.0 +17007,64,33.25,35,0.0 +17007,56,38,32,0.0 +17007,70,15,2,0.0 +17007,47,9.5,45,0.0 +17007,34,14,39,0.0 +17007,24,4.5,41,0.0 +17007,69,36,8,0.0 +17007,51,53,34,0.0 +17007,23,9,25,0.0 +17007,58,13.25,32,0.0 +17007,16,17.45,28,0.0 +17007,32,32,20,0.0 +17007,5,21.35,47,0.0 +17007,46,12,22,0.0 +17007,49,20,40,0.0 +17007,26,31.23,11,0.0 +17007,75,7.75,30,0.0 +17007,19,9.2,39,0.0 +17007,41,9.65,5,0.0 +17007,45,9.5,39,0.0 +17007,71,21.5,24,0.0 +17007,54,7.45,24,0.0 +17007,50,16.25,23,0.0 +17007,22,21,12,0.0 +17007,21,10,20,0.0 +17007,40,18.4,2,0.0 +17007,73,15,38,0.0 +17007,36,19,30,0.0 +17007,68,12.5,1,0.0 +17007,30,25.89,19,0.0 +17007,31,12.5,42,0.0 +17007,3,10,24,0.0 +17007,76,18,34,0.0 +17007,44,19.45,10,0.0 +17007,77,13,46,0.0 +17007,63,43.9,33,0.0 +17007,1,18,32,0.0 +17007,65,21.05,50,0.0 +17007,66,17,6,0.0 +17008,54,7.45,44,0.0 +17008,77,13,44,0.0 +17009,29,123.79,13,0.0 +17009,58,13.25,39,0.0 +17009,20,81,6,0.0 +17009,53,32.8,4,0.0 +17009,14,23.25,18,0.0 +17009,52,7,14,0.0 +17009,2,19,31,0.0 +17009,45,9.5,8,0.0 +17009,65,21.05,46,0.0 +17009,48,12.75,15,0.0 +17009,51,53,33,0.0 +17009,27,43.9,2,0.0 +17009,56,38,25,0.0 +17009,16,17.45,44,0.0 +17009,4,22,28,0.0 +17009,38,263.5,33,0.0 +17009,28,45.6,38,0.0 +17010,26,31.23,1,0.0 +17010,70,15,37,0.0 +17010,24,4.5,18,0.0 +17010,40,18.4,32,0.0 +17010,36,19,9,0.0 +17010,41,9.65,43,0.0 +17010,20,81,35,0.0 +17010,73,15,42,0.0 +17010,71,21.5,38,0.0 +17010,9,97,37,0.0 +17010,76,18,39,0.0 +17010,21,10,6,0.0 +17010,6,25,33,0.0 +17010,19,9.2,15,0.0 +17010,58,13.25,28,0.0 +17010,75,7.75,30,0.0 +17010,39,18,17,0.0 +17010,1,18,28,0.0 +17010,10,31,12,0.0 +17010,28,45.6,17,0.0 +17010,77,13,38,0.0 +17010,11,21,2,0.0 +17010,13,6,5,0.0 +17010,38,263.5,5,0.0 +17010,67,14,11,0.0 +17010,50,16.25,35,0.0 +17010,27,43.9,42,0.0 +17010,69,36,9,0.0 +17010,2,19,39,0.0 +17010,23,9,47,0.0 +17010,7,30,2,0.0 +17010,53,32.8,13,0.0 +17010,60,34,14,0.0 +17010,49,20,6,0.0 +17010,61,28.5,35,0.0 +17010,34,14,13,0.0 +17010,47,9.5,16,0.0 +17010,64,33.25,19,0.0 +17010,65,21.05,43,0.0 +17010,59,55,39,0.0 +17010,5,21.35,9,0.0 +17010,74,10,17,0.0 +17010,54,7.45,29,0.0 +17010,68,12.5,22,0.0 +17010,57,19.5,39,0.0 +17010,44,19.45,3,0.0 +17010,45,9.5,30,0.0 +17010,15,15.5,41,0.0 +17010,43,46,8,0.0 +17010,42,14,48,0.0 +17010,22,21,15,0.0 +17010,18,62.5,4,0.0 +17010,62,49.3,28,0.0 +17010,30,25.89,6,0.0 +17010,12,38,17,0.0 +17010,56,38,7,0.0 +17010,32,32,28,0.0 +17010,48,12.75,42,0.0 +17010,72,34.8,11,0.0 +17010,55,24,35,0.0 +17010,37,26,22,0.0 +17010,66,17,2,0.0 +17010,33,2.5,34,0.0 +17010,51,53,44,0.0 +17010,52,7,11,0.0 +17010,25,14,28,0.0 +17010,46,12,12,0.0 +17010,29,123.79,15,0.0 +17010,31,12.5,38,0.0 +17010,4,22,11,0.0 +17010,3,10,15,0.0 +17010,63,43.9,18,0.0 +17011,58,13.25,39,0.0 +17011,61,28.5,11,0.0 +17011,2,19,14,0.0 +17011,68,12.5,27,0.0 +17011,53,32.8,36,0.0 +17011,76,18,41,0.0 +17011,29,123.79,19,0.0 +17011,32,32,13,0.0 +17011,26,31.23,9,0.0 +17012,54,7.45,36,0.0 +17012,51,53,39,0.0 +17012,27,43.9,21,0.0 +17012,19,9.2,48,0.0 +17012,32,32,25,0.0 +17012,48,12.75,44,0.0 +17012,55,24,45,0.0 +17012,68,12.5,47,0.0 +17012,40,18.4,49,0.0 +17012,75,7.75,45,0.0 +17012,56,38,32,0.0 +17012,28,45.6,22,0.0 +17012,8,40,18,0.0 +17012,65,21.05,34,0.0 +17012,35,18,41,0.0 +17012,36,19,47,0.0 +17012,69,36,20,0.0 +17012,50,16.25,5,0.0 +17012,72,34.8,19,0.0 +17012,12,38,17,0.0 +17012,3,10,17,0.0 +17012,74,10,17,0.0 +17012,34,14,6,0.0 +17012,59,55,35,0.0 +17012,9,97,29,0.0 +17012,44,19.45,25,0.0 +17012,5,21.35,14,0.0 +17012,29,123.79,8,0.0 +17012,33,2.5,49,0.0 +17012,49,20,9,0.0 +17012,39,18,6,0.0 +17012,53,32.8,12,0.0 +17012,7,30,30,0.0 +17012,62,49.3,32,0.0 +17012,47,9.5,24,0.0 +17012,1,18,14,0.0 +17012,11,21,13,0.0 +17012,70,15,35,0.0 +17012,77,13,44,0.0 +17012,20,81,37,0.0 +17012,18,62.5,34,0.0 +17012,57,19.5,3,0.0 +17012,30,25.89,15,0.0 +17012,43,46,34,0.0 +17012,41,9.65,26,0.0 +17012,10,31,26,0.0 +17012,25,14,36,0.0 +17012,76,18,11,0.0 +17012,46,12,28,0.0 +17012,63,43.9,12,0.0 +17012,31,12.5,16,0.0 +17012,71,21.5,12,0.0 +17012,24,4.5,36,0.0 +17012,21,10,5,0.0 +17012,58,13.25,35,0.0 +17012,61,28.5,11,0.0 +17012,13,6,18,0.0 +17012,16,17.45,28,0.0 +17012,60,34,21,0.0 +17012,52,7,32,0.0 +17012,15,15.5,40,0.0 +17012,45,9.5,22,0.0 +17012,22,21,8,0.0 +17012,14,23.25,4,0.0 +17012,2,19,32,0.0 +17012,6,25,23,0.0 +17012,64,33.25,3,0.0 +17012,38,263.5,10,0.0 +17012,4,22,41,0.0 +17012,67,14,49,0.0 +17012,42,14,31,0.0 +17012,73,15,48,0.0 +17012,23,9,27,0.0 +17012,66,17,1,0.0 +17012,26,31.23,46,0.0 +17012,17,39,27,0.0 +17012,37,26,39,0.0 +17013,24,4.5,35,0.0 +17013,9,97,38,0.0 +17013,41,9.65,21,0.0 +17013,45,9.5,12,0.0 +17013,37,26,38,0.0 +17013,10,31,24,0.0 +17013,36,19,37,0.0 +17013,5,21.35,43,0.0 +17013,14,23.25,3,0.0 +17013,19,9.2,23,0.0 +17013,23,9,44,0.0 +17013,25,14,41,0.0 +17013,42,14,21,0.0 +17013,59,55,15,0.0 +17013,18,62.5,12,0.0 +17013,15,15.5,30,0.0 +17013,26,31.23,12,0.0 +17013,65,21.05,25,0.0 +17013,74,10,4,0.0 +17013,43,46,25,0.0 +17013,6,25,21,0.0 +17013,58,13.25,35,0.0 +17013,54,7.45,32,0.0 +17013,1,18,18,0.0 +17013,57,19.5,19,0.0 +17013,8,40,24,0.0 +17013,51,53,15,0.0 +17013,16,17.45,16,0.0 +17013,62,49.3,2,0.0 +17013,68,12.5,42,0.0 +17013,53,32.8,22,0.0 +17013,38,263.5,16,0.0 +17013,7,30,37,0.0 +17014,55,24,36,0.0 +17014,31,12.5,31,0.0 +17014,45,9.5,37,0.0 +17014,51,53,16,0.0 +17014,26,31.23,39,0.0 +17014,59,55,46,0.0 +17014,73,15,33,0.0 +17014,63,43.9,1,0.0 +17014,3,10,38,0.0 +17014,49,20,3,0.0 +17014,9,97,23,0.0 +17014,5,21.35,42,0.0 +17014,48,12.75,26,0.0 +17014,46,12,8,0.0 +17014,32,32,38,0.0 +17014,40,18.4,49,0.0 +17014,54,7.45,8,0.0 +17014,13,6,19,0.0 +17014,20,81,37,0.0 +17014,14,23.25,22,0.0 +17014,62,49.3,1,0.0 +17014,47,9.5,5,0.0 +17014,30,25.89,30,0.0 +17014,18,62.5,32,0.0 +17014,23,9,29,0.0 +17014,71,21.5,33,0.0 +17014,50,16.25,49,0.0 +17014,37,26,11,0.0 +17014,11,21,7,0.0 +17014,10,31,35,0.0 +17014,43,46,40,0.0 +17014,36,19,22,0.0 +17014,4,22,18,0.0 +17014,25,14,46,0.0 +17014,33,2.5,42,0.0 +17014,65,21.05,39,0.0 +17014,8,40,38,0.0 +17014,35,18,13,0.0 +17014,24,4.5,38,0.0 +17014,17,39,39,0.0 +17014,42,14,49,0.0 +17014,16,17.45,41,0.0 +17014,70,15,28,0.0 +17014,69,36,17,0.0 +17014,38,263.5,26,0.0 +17014,22,21,18,0.0 +17014,76,18,24,0.0 +17014,57,19.5,37,0.0 +17014,56,38,49,0.0 +17014,77,13,40,0.0 +17014,12,38,43,0.0 +17014,21,10,29,0.0 +17014,7,30,43,0.0 +17014,66,17,9,0.0 +17014,2,19,43,0.0 +17014,67,14,16,0.0 +17014,19,9.2,31,0.0 +17014,39,18,7,0.0 +17014,15,15.5,4,0.0 +17014,60,34,28,0.0 +17014,68,12.5,16,0.0 +17015,67,14,33,0.0 +17015,37,26,37,0.0 +17015,3,10,41,0.0 +17015,68,12.5,27,0.0 +17015,6,25,15,0.0 +17015,17,39,9,0.0 +17015,72,34.8,45,0.0 +17015,19,9.2,16,0.0 +17015,24,4.5,1,0.0 +17015,16,17.45,33,0.0 +17015,60,34,32,0.0 +17015,74,10,44,0.0 +17015,49,20,37,0.0 +17015,75,7.75,6,0.0 +17015,34,14,6,0.0 +17015,23,9,47,0.0 +17015,47,9.5,22,0.0 +17015,9,97,19,0.0 +17015,73,15,14,0.0 +17015,62,49.3,26,0.0 +17015,14,23.25,1,0.0 +17015,27,43.9,6,0.0 +17015,36,19,15,0.0 +17015,59,55,25,0.0 +17015,15,15.5,16,0.0 +17015,63,43.9,35,0.0 +17015,1,18,44,0.0 +17015,76,18,19,0.0 +17015,71,21.5,37,0.0 +17015,10,31,18,0.0 +17015,4,22,34,0.0 +17015,66,17,22,0.0 +17015,2,19,8,0.0 +17015,32,32,23,0.0 +17015,64,33.25,49,0.0 +17015,51,53,25,0.0 +17015,58,13.25,1,0.0 +17015,12,38,48,0.0 +17015,57,19.5,31,0.0 +17015,46,12,22,0.0 +17015,69,36,35,0.0 +17015,25,14,39,0.0 +17015,30,25.89,11,0.0 +17015,55,24,19,0.0 +17015,18,62.5,1,0.0 +17015,77,13,34,0.0 +17015,54,7.45,9,0.0 +17015,50,16.25,50,0.0 +17015,53,32.8,41,0.0 +17015,33,2.5,19,0.0 +17015,65,21.05,32,0.0 +17015,61,28.5,21,0.0 +17015,20,81,42,0.0 +17015,8,40,17,0.0 +17015,5,21.35,29,0.0 +17015,31,12.5,43,0.0 +17016,41,9.65,19,0.0 +17016,14,23.25,50,0.0 +17016,53,32.8,22,0.0 +17016,66,17,41,0.0 +17016,15,15.5,13,0.0 +17016,48,12.75,2,0.0 +17016,20,81,9,0.0 +17016,29,123.79,42,0.0 +17016,76,18,49,0.0 +17016,19,9.2,17,0.0 +17016,45,9.5,45,0.0 +17016,50,16.25,5,0.0 +17016,69,36,4,0.0 +17016,61,28.5,31,0.0 +17016,70,15,16,0.0 +17016,31,12.5,44,0.0 +17016,2,19,48,0.0 +17016,65,21.05,31,0.0 +17016,25,14,29,0.0 +17016,55,24,17,0.0 +17016,68,12.5,33,0.0 +17016,32,32,21,0.0 +17016,23,9,13,0.0 +17016,18,62.5,38,0.0 +17016,46,12,50,0.0 +17016,47,9.5,1,0.0 +17016,26,31.23,33,0.0 +17016,11,21,4,0.0 +17016,36,19,47,0.0 +17016,28,45.6,11,0.0 +17016,22,21,50,0.0 +17016,62,49.3,44,0.0 +17016,37,26,5,0.0 +17017,38,263.5,8,0.0 +17017,17,39,45,0.0 +17017,23,9,50,0.0 +17017,20,81,19,0.0 +17017,73,15,5,0.0 +17017,6,25,9,0.0 +17017,51,53,18,0.0 +17017,29,123.79,49,0.0 +17017,40,18.4,29,0.0 +17017,61,28.5,49,0.0 +17017,31,12.5,49,0.0 +17017,14,23.25,34,0.0 +17017,70,15,10,0.0 +17017,53,32.8,33,0.0 +17017,8,40,37,0.0 +17017,48,12.75,38,0.0 +17017,47,9.5,37,0.0 +17017,32,32,19,0.0 +17017,59,55,41,0.0 +17018,52,7,21,0.0 +17018,77,13,25,0.0 +17018,56,38,15,0.0 +17018,1,18,28,0.0 +17018,24,4.5,2,0.0 +17018,16,17.45,13,0.0 +17018,46,12,41,0.0 +17018,41,9.65,12,0.0 +17018,45,9.5,40,0.0 +17018,7,30,42,0.0 +17018,18,62.5,36,0.0 +17018,20,81,22,0.0 +17018,35,18,44,0.0 +17018,40,18.4,43,0.0 +17018,23,9,38,0.0 +17018,22,21,12,0.0 +17018,73,15,6,0.0 +17018,50,16.25,48,0.0 +17018,65,21.05,14,0.0 +17018,39,18,15,0.0 +17018,69,36,7,0.0 +17018,72,34.8,1,0.0 +17018,48,12.75,17,0.0 +17018,51,53,47,0.0 +17018,68,12.5,14,0.0 +17018,11,21,20,0.0 +17018,63,43.9,21,0.0 +17018,58,13.25,26,0.0 +17018,5,21.35,19,0.0 +17018,19,9.2,9,0.0 +17018,2,19,43,0.0 +17018,53,32.8,22,0.0 +17018,38,263.5,17,0.0 +17018,60,34,23,0.0 +17018,31,12.5,40,0.0 +17018,33,2.5,34,0.0 +17018,59,55,20,0.0 +17018,61,28.5,16,0.0 +17018,75,7.75,7,0.0 +17018,13,6,44,0.0 +17018,64,33.25,13,0.0 +17018,44,19.45,34,0.0 +17018,4,22,26,0.0 +17018,25,14,16,0.0 +17018,3,10,38,0.0 +17018,49,20,39,0.0 +17018,8,40,26,0.0 +17018,42,14,11,0.0 +17018,14,23.25,7,0.0 +17018,47,9.5,25,0.0 +17018,67,14,45,0.0 +17018,66,17,23,0.0 +17019,10,31,2,0.0 +17019,27,43.9,40,0.0 +17019,50,16.25,45,0.0 +17019,67,14,2,0.0 +17019,76,18,12,0.0 +17019,41,9.65,17,0.0 +17019,25,14,20,0.0 +17019,1,18,28,0.0 +17019,13,6,26,0.0 +17019,34,14,27,0.0 +17019,20,81,40,0.0 +17019,45,9.5,33,0.0 +17019,42,14,22,0.0 +17019,43,46,39,0.0 +17019,16,17.45,10,0.0 +17019,15,15.5,34,0.0 +17019,29,123.79,9,0.0 +17019,58,13.25,25,0.0 +17019,38,263.5,25,0.0 +17019,52,7,36,0.0 +17020,34,14,19,0.0 +17020,56,38,20,0.0 +17020,50,16.25,14,0.0 +17020,5,21.35,16,0.0 +17020,7,30,40,0.0 +17020,58,13.25,5,0.0 +17020,73,15,26,0.0 +17020,24,4.5,38,0.0 +17020,40,18.4,21,0.0 +17020,13,6,47,0.0 +17020,67,14,5,0.0 +17020,45,9.5,15,0.0 +17020,10,31,22,0.0 +17020,71,21.5,39,0.0 +17020,59,55,13,0.0 +17020,47,9.5,15,0.0 +17020,44,19.45,16,0.0 +17020,39,18,5,0.0 +17020,61,28.5,38,0.0 +17020,17,39,45,0.0 +17020,52,7,13,0.0 +17020,16,17.45,50,0.0 +17020,55,24,33,0.0 +17020,15,15.5,29,0.0 +17020,18,62.5,7,0.0 +17020,28,45.6,4,0.0 +17020,36,19,27,0.0 +17020,4,22,22,0.0 +17020,54,7.45,13,0.0 +17020,22,21,17,0.0 +17020,9,97,12,0.0 +17020,35,18,22,0.0 +17020,62,49.3,37,0.0 +17020,42,14,23,0.0 +17020,53,32.8,30,0.0 +17020,41,9.65,23,0.0 +17020,48,12.75,10,0.0 +17020,6,25,38,0.0 +17020,21,10,19,0.0 +17020,3,10,16,0.0 +17020,57,19.5,49,0.0 +17020,51,53,9,0.0 +17020,76,18,18,0.0 +17020,33,2.5,9,0.0 +17020,30,25.89,46,0.0 +17020,43,46,33,0.0 +17020,38,263.5,43,0.0 +17020,65,21.05,7,0.0 +17020,32,32,40,0.0 +17020,72,34.8,26,0.0 +17020,70,15,44,0.0 +17020,26,31.23,28,0.0 +17020,20,81,19,0.0 +17020,74,10,31,0.0 +17020,14,23.25,30,0.0 +17020,29,123.79,25,0.0 +17020,49,20,15,0.0 +17020,37,26,12,0.0 +17020,8,40,31,0.0 +17020,69,36,38,0.0 +17020,27,43.9,49,0.0 +17020,23,9,6,0.0 +17020,12,38,26,0.0 +17020,19,9.2,12,0.0 +17020,64,33.25,14,0.0 +17020,31,12.5,38,0.0 +17020,1,18,38,0.0 +17020,25,14,14,0.0 +17020,60,34,40,0.0 +17020,66,17,24,0.0 +17020,2,19,18,0.0 +17020,77,13,41,0.0 +17020,63,43.9,45,0.0 +17020,68,12.5,6,0.0 +17020,11,21,31,0.0 +17020,75,7.75,41,0.0 +17020,46,12,32,0.0 +17021,66,17,49,0.0 +17021,18,62.5,21,0.0 +17021,45,9.5,22,0.0 +17021,42,14,36,0.0 +17021,73,15,49,0.0 +17021,8,40,25,0.0 +17021,17,39,34,0.0 +17021,77,13,18,0.0 +17021,7,30,19,0.0 +17021,32,32,38,0.0 +17021,30,25.89,13,0.0 +17021,67,14,28,0.0 +17021,49,20,12,0.0 +17021,64,33.25,20,0.0 +17021,28,45.6,41,0.0 +17021,63,43.9,21,0.0 +17021,2,19,34,0.0 +17021,43,46,14,0.0 +17021,68,12.5,27,0.0 +17021,53,32.8,7,0.0 +17021,22,21,18,0.0 +17021,29,123.79,11,0.0 +17021,57,19.5,29,0.0 +17021,76,18,49,0.0 +17021,41,9.65,6,0.0 +17021,25,14,4,0.0 +17021,1,18,1,0.0 +17021,40,18.4,44,0.0 +17021,60,34,28,0.0 +17021,19,9.2,3,0.0 +17021,23,9,47,0.0 +17021,56,38,27,0.0 +17021,37,26,12,0.0 +17021,44,19.45,49,0.0 +17021,74,10,46,0.0 +17021,52,7,15,0.0 +17021,38,263.5,16,0.0 +17021,21,10,41,0.0 +17021,65,21.05,42,0.0 +17021,58,13.25,14,0.0 +17021,15,15.5,19,0.0 +17021,59,55,39,0.0 +17021,14,23.25,8,0.0 +17021,27,43.9,4,0.0 +17021,35,18,30,0.0 +17021,4,22,30,0.0 +17021,13,6,38,0.0 +17021,71,21.5,49,0.0 +17021,50,16.25,8,0.0 +17021,16,17.45,34,0.0 +17021,34,14,36,0.0 +17021,72,34.8,17,0.0 +17021,51,53,11,0.0 +17021,33,2.5,8,0.0 +17021,55,24,46,0.0 +17021,11,21,6,0.0 +17021,69,36,42,0.0 +17021,48,12.75,49,0.0 +17021,5,21.35,4,0.0 +17021,61,28.5,28,0.0 +17021,75,7.75,37,0.0 +17021,54,7.45,31,0.0 +17021,62,49.3,7,0.0 +17021,31,12.5,21,0.0 +17021,12,38,14,0.0 +17021,3,10,48,0.0 +17021,24,4.5,21,0.0 +17021,26,31.23,15,0.0 +17021,46,12,36,0.0 +17021,10,31,39,0.0 +17021,6,25,30,0.0 +17021,39,18,9,0.0 +17021,47,9.5,39,0.0 +17021,20,81,18,0.0 +17021,36,19,15,0.0 +17021,70,15,15,0.0 +17022,54,7.45,44,0.0 +17022,46,12,4,0.0 +17022,41,9.65,37,0.0 +17022,61,28.5,5,0.0 +17022,50,16.25,3,0.0 +17022,62,49.3,4,0.0 +17022,47,9.5,50,0.0 +17022,75,7.75,26,0.0 +17022,32,32,15,0.0 +17022,51,53,10,0.0 +17022,63,43.9,43,0.0 +17022,11,21,41,0.0 +17022,40,18.4,25,0.0 +17022,10,31,40,0.0 +17022,67,14,1,0.0 +17022,9,97,23,0.0 +17022,35,18,23,0.0 +17022,20,81,32,0.0 +17022,29,123.79,47,0.0 +17022,59,55,32,0.0 +17022,22,21,8,0.0 +17022,14,23.25,43,0.0 +17022,25,14,27,0.0 +17022,28,45.6,31,0.0 +17022,7,30,7,0.0 +17022,71,21.5,45,0.0 +17022,44,19.45,24,0.0 +17022,17,39,29,0.0 +17022,66,17,48,0.0 +17022,33,2.5,23,0.0 +17022,18,62.5,33,0.0 +17022,69,36,32,0.0 +17022,48,12.75,12,0.0 +17022,65,21.05,50,0.0 +17022,53,32.8,45,0.0 +17022,4,22,44,0.0 +17022,39,18,31,0.0 +17022,19,9.2,35,0.0 +17022,16,17.45,25,0.0 +17023,38,263.5,30,0.0 +17023,4,22,41,0.0 +17023,70,15,34,0.0 +17023,14,23.25,33,0.0 +17023,15,15.5,32,0.0 +17023,74,10,7,0.0 +17023,35,18,43,0.0 +17023,59,55,28,0.0 +17023,64,33.25,5,0.0 +17023,62,49.3,31,0.0 +17023,72,34.8,32,0.0 +17023,5,21.35,38,0.0 +17023,18,62.5,30,0.0 +17023,50,16.25,48,0.0 +17024,28,45.6,20,0.0 +17024,69,36,39,0.0 +17024,36,19,37,0.0 +17024,31,12.5,32,0.0 +17024,44,19.45,22,0.0 +17024,40,18.4,47,0.0 +17024,21,10,24,0.0 +17024,30,25.89,17,0.0 +17025,14,23.25,4,0.0 +17025,13,6,33,0.0 +17025,62,49.3,8,0.0 +17025,72,34.8,9,0.0 +17025,40,18.4,48,0.0 +17025,33,2.5,35,0.0 +17025,23,9,29,0.0 +17025,61,28.5,2,0.0 +17025,47,9.5,16,0.0 +17025,71,21.5,29,0.0 +17025,44,19.45,21,0.0 +17025,12,38,26,0.0 +17025,74,10,30,0.0 +17025,30,25.89,35,0.0 +17025,11,21,12,0.0 +17025,42,14,32,0.0 +17025,25,14,22,0.0 +17025,65,21.05,6,0.0 +17025,39,18,50,0.0 +17025,17,39,39,0.0 +17025,63,43.9,34,0.0 +17025,77,13,21,0.0 +17025,68,12.5,27,0.0 +17025,19,9.2,27,0.0 +17025,75,7.75,44,0.0 +17025,22,21,28,0.0 +17025,48,12.75,15,0.0 +17025,41,9.65,3,0.0 +17025,4,22,38,0.0 +17025,70,15,7,0.0 +17025,54,7.45,10,0.0 +17025,50,16.25,38,0.0 +17025,7,30,4,0.0 +17025,67,14,44,0.0 +17025,3,10,41,0.0 +17025,6,25,36,0.0 +17025,43,46,11,0.0 +17025,10,31,48,0.0 +17025,18,62.5,33,0.0 +17025,56,38,39,0.0 +17025,51,53,50,0.0 +17025,55,24,44,0.0 +17025,66,17,31,0.0 +17025,27,43.9,24,0.0 +17025,73,15,39,0.0 +17025,34,14,8,0.0 +17025,60,34,47,0.0 +17025,64,33.25,10,0.0 +17025,32,32,28,0.0 +17025,5,21.35,25,0.0 +17025,58,13.25,16,0.0 +17025,2,19,33,0.0 +17025,16,17.45,27,0.0 +17025,31,12.5,35,0.0 +17026,53,32.8,30,0.0 +17026,27,43.9,16,0.0 +17026,67,14,14,0.0 +17026,62,49.3,49,0.0 +17026,22,21,2,0.0 +17026,63,43.9,46,0.0 +17026,39,18,32,0.0 +17026,59,55,47,0.0 +17026,24,4.5,25,0.0 +17026,50,16.25,23,0.0 +17026,55,24,20,0.0 +17026,70,15,14,0.0 +17026,8,40,30,0.0 +17026,58,13.25,19,0.0 +17026,4,22,37,0.0 +17026,23,9,21,0.0 +17026,16,17.45,1,0.0 +17026,60,34,19,0.0 +17026,29,123.79,12,0.0 +17026,19,9.2,47,0.0 +17026,41,9.65,28,0.0 +17026,18,62.5,31,0.0 +17026,7,30,44,0.0 +17026,12,38,23,0.0 +17027,34,14,2,0.0 +17027,67,14,23,0.0 +17027,61,28.5,1,0.0 +17027,33,2.5,38,0.0 +17027,62,49.3,41,0.0 +17027,3,10,14,0.0 +17027,74,10,1,0.0 +17027,48,12.75,6,0.0 +17027,20,81,6,0.0 +17027,8,40,37,0.0 +17027,26,31.23,1,0.0 +17027,23,9,39,0.0 +17027,70,15,3,0.0 +17027,28,45.6,27,0.0 +17027,45,9.5,30,0.0 +17027,22,21,25,0.0 +17027,40,18.4,24,0.0 +17027,41,9.65,6,0.0 +17027,69,36,45,0.0 +17027,55,24,31,0.0 +17027,25,14,30,0.0 +17027,42,14,20,0.0 +17027,38,263.5,21,0.0 +17027,66,17,8,0.0 +17027,71,21.5,2,0.0 +17027,39,18,38,0.0 +17027,76,18,39,0.0 +17027,35,18,9,0.0 +17027,9,97,35,0.0 +17027,72,34.8,50,0.0 +17027,59,55,7,0.0 +17027,68,12.5,22,0.0 +17027,27,43.9,13,0.0 +17027,15,15.5,2,0.0 +17027,12,38,38,0.0 +17027,64,33.25,6,0.0 +17027,56,38,47,0.0 +17027,51,53,44,0.0 +17027,29,123.79,32,0.0 +17027,44,19.45,18,0.0 +17027,49,20,22,0.0 +17027,57,19.5,39,0.0 +17027,77,13,19,0.0 +17027,7,30,32,0.0 +17027,31,12.5,22,0.0 +17028,56,38,31,0.0 +17028,11,21,4,0.0 +17028,70,15,39,0.0 +17028,28,45.6,32,0.0 +17028,51,53,45,0.0 +17028,4,22,18,0.0 +17028,47,9.5,25,0.0 +17028,43,46,20,0.0 +17028,60,34,48,0.0 +17028,57,19.5,7,0.0 +17028,69,36,46,0.0 +17028,72,34.8,45,0.0 +17028,54,7.45,25,0.0 +17028,23,9,25,0.0 +17028,22,21,12,0.0 +17028,10,31,23,0.0 +17028,14,23.25,12,0.0 +17028,73,15,29,0.0 +17028,46,12,1,0.0 +17028,45,9.5,38,0.0 +17028,71,21.5,2,0.0 +17028,9,97,41,0.0 +17028,1,18,6,0.0 +17028,58,13.25,39,0.0 +17028,38,263.5,49,0.0 +17028,32,32,18,0.0 +17028,33,2.5,1,0.0 +17028,12,38,17,0.0 +17028,24,4.5,1,0.0 +17028,27,43.9,45,0.0 +17028,2,19,41,0.0 +17028,65,21.05,41,0.0 +17028,37,26,33,0.0 +17028,62,49.3,29,0.0 +17028,29,123.79,21,0.0 +17028,52,7,3,0.0 +17028,25,14,43,0.0 +17028,13,6,8,0.0 +17028,44,19.45,49,0.0 +17028,34,14,31,0.0 +17028,16,17.45,43,0.0 +17028,18,62.5,27,0.0 +17028,53,32.8,28,0.0 +17028,48,12.75,23,0.0 +17028,5,21.35,23,0.0 +17028,19,9.2,12,0.0 +17028,67,14,21,0.0 +17028,61,28.5,47,0.0 +17028,63,43.9,41,0.0 +17028,35,18,1,0.0 +17028,6,25,5,0.0 +17028,15,15.5,21,0.0 +17028,77,13,12,0.0 +17028,75,7.75,35,0.0 +17028,66,17,49,0.0 +17028,41,9.65,30,0.0 +17028,50,16.25,50,0.0 +17028,7,30,19,0.0 +17028,76,18,3,0.0 +17028,3,10,7,0.0 +17028,59,55,38,0.0 +17028,42,14,7,0.0 +17028,20,81,33,0.0 +17028,30,25.89,44,0.0 +17028,26,31.23,35,0.0 +17028,21,10,30,0.0 +17028,8,40,35,0.0 +17028,40,18.4,21,0.0 +17028,39,18,50,0.0 +17028,17,39,7,0.0 +17028,36,19,2,0.0 +17029,69,36,3,0.0 +17029,41,9.65,16,0.0 +17029,14,23.25,3,0.0 +17029,40,18.4,32,0.0 +17029,15,15.5,33,0.0 +17029,51,53,27,0.0 +17029,57,19.5,25,0.0 +17029,19,9.2,37,0.0 +17029,73,15,34,0.0 +17029,26,31.23,48,0.0 +17029,61,28.5,6,0.0 +17029,46,12,14,0.0 +17029,8,40,22,0.0 +17029,39,18,3,0.0 +17029,7,30,30,0.0 +17029,1,18,18,0.0 +17029,71,21.5,8,0.0 +17029,11,21,35,0.0 +17029,24,4.5,30,0.0 +17029,35,18,36,0.0 +17029,20,81,33,0.0 +17029,77,13,13,0.0 +17029,62,49.3,1,0.0 +17029,52,7,21,0.0 +17029,31,12.5,29,0.0 +17029,67,14,4,0.0 +17029,5,21.35,5,0.0 +17029,37,26,7,0.0 +17029,25,14,5,0.0 +17029,76,18,32,0.0 +17029,48,12.75,11,0.0 +17029,66,17,25,0.0 +17029,22,21,33,0.0 +17029,72,34.8,20,0.0 +17029,47,9.5,33,0.0 +17029,23,9,34,0.0 +17029,3,10,25,0.0 +17029,21,10,45,0.0 +17029,6,25,29,0.0 +17029,42,14,42,0.0 +17029,53,32.8,40,0.0 +17029,4,22,34,0.0 +17029,29,123.79,14,0.0 +17029,12,38,45,0.0 +17029,16,17.45,49,0.0 +17029,30,25.89,11,0.0 +17029,45,9.5,11,0.0 +17029,75,7.75,46,0.0 +17029,74,10,15,0.0 +17029,33,2.5,26,0.0 +17029,10,31,1,0.0 +17029,13,6,8,0.0 +17029,38,263.5,10,0.0 +17029,65,21.05,22,0.0 +17029,17,39,49,0.0 +17029,70,15,16,0.0 +17029,56,38,15,0.0 +17029,36,19,10,0.0 +17029,60,34,41,0.0 +17029,68,12.5,37,0.0 +17029,50,16.25,43,0.0 +17029,34,14,25,0.0 +17029,58,13.25,45,0.0 +17029,55,24,36,0.0 +17030,23,9,42,0.0 +17030,22,21,49,0.0 +17030,3,10,21,0.0 +17030,39,18,13,0.0 +17030,67,14,35,0.0 +17030,68,12.5,34,0.0 +17030,74,10,8,0.0 +17030,18,62.5,35,0.0 +17030,35,18,41,0.0 +17030,27,43.9,34,0.0 +17030,30,25.89,26,0.0 +17030,21,10,21,0.0 +17030,72,34.8,26,0.0 +17030,24,4.5,38,0.0 +17030,10,31,1,0.0 +17030,25,14,42,0.0 +17030,7,30,1,0.0 +17030,40,18.4,25,0.0 +17030,54,7.45,50,0.0 +17030,37,26,35,0.0 +17030,66,17,14,0.0 +17030,44,19.45,32,0.0 +17030,16,17.45,44,0.0 +17030,41,9.65,17,0.0 +17030,1,18,34,0.0 +17030,11,21,4,0.0 +17030,6,25,5,0.0 +17030,45,9.5,40,0.0 +17030,26,31.23,22,0.0 +17030,53,32.8,47,0.0 +17030,12,38,44,0.0 +17030,38,263.5,22,0.0 +17030,33,2.5,12,0.0 +17030,28,45.6,16,0.0 +17030,50,16.25,10,0.0 +17030,48,12.75,24,0.0 +17030,73,15,7,0.0 +17030,36,19,39,0.0 +17030,57,19.5,1,0.0 +17030,52,7,28,0.0 +17030,43,46,24,0.0 +17030,63,43.9,13,0.0 +17030,64,33.25,7,0.0 +17030,58,13.25,45,0.0 +17030,70,15,21,0.0 +17030,61,28.5,6,0.0 +17030,76,18,10,0.0 +17030,4,22,37,0.0 +17030,56,38,2,0.0 +17030,20,81,16,0.0 +17030,59,55,28,0.0 +17030,62,49.3,32,0.0 +17030,13,6,5,0.0 +17030,77,13,41,0.0 +17030,47,9.5,37,0.0 +17030,19,9.2,50,0.0 +17030,42,14,18,0.0 +17030,75,7.75,16,0.0 +17030,51,53,49,0.0 +17030,49,20,25,0.0 +17031,67,14,1,0.0 +17031,48,12.75,46,0.0 +17031,34,14,32,0.0 +17031,51,53,21,0.0 +17031,75,7.75,46,0.0 +17031,53,32.8,3,0.0 +17031,14,23.25,13,0.0 +17031,1,18,46,0.0 +17031,9,97,49,0.0 +17031,31,12.5,22,0.0 +17031,59,55,3,0.0 +17031,25,14,40,0.0 +17031,37,26,39,0.0 +17031,65,21.05,17,0.0 +17031,46,12,33,0.0 +17031,17,39,23,0.0 +17031,47,9.5,13,0.0 +17031,16,17.45,44,0.0 +17031,60,34,23,0.0 +17031,69,36,44,0.0 +17031,7,30,21,0.0 +17031,10,31,38,0.0 +17031,20,81,43,0.0 +17031,29,123.79,8,0.0 +17031,72,34.8,42,0.0 +17031,64,33.25,49,0.0 +17031,45,9.5,28,0.0 +17031,38,263.5,44,0.0 +17031,21,10,49,0.0 +17031,70,15,12,0.0 +17031,44,19.45,30,0.0 +17031,3,10,22,0.0 +17031,74,10,10,0.0 +17031,54,7.45,18,0.0 +17031,71,21.5,39,0.0 +17031,50,16.25,44,0.0 +17031,58,13.25,17,0.0 +17031,27,43.9,7,0.0 +17031,49,20,24,0.0 +17031,8,40,46,0.0 +17031,40,18.4,46,0.0 +17031,30,25.89,5,0.0 +17031,12,38,36,0.0 +17031,63,43.9,48,0.0 +17031,18,62.5,23,0.0 +17031,77,13,46,0.0 +17031,6,25,50,0.0 +17031,52,7,6,0.0 +17031,15,15.5,6,0.0 +17031,23,9,25,0.0 +17031,62,49.3,38,0.0 +17031,56,38,12,0.0 +17031,5,21.35,13,0.0 +17032,39,18,14,0.0 +17032,17,39,3,0.0 +17032,8,40,1,0.0 +17032,29,123.79,47,0.0 +17032,22,21,47,0.0 +17032,11,21,12,0.0 +17032,15,15.5,32,0.0 +17032,31,12.5,37,0.0 +17032,74,10,13,0.0 +17032,72,34.8,36,0.0 +17032,23,9,40,0.0 +17032,63,43.9,4,0.0 +17032,48,12.75,43,0.0 +17032,77,13,22,0.0 +17032,36,19,14,0.0 +17032,41,9.65,16,0.0 +17032,61,28.5,39,0.0 +17032,51,53,16,0.0 +17032,58,13.25,22,0.0 +17032,50,16.25,40,0.0 +17032,34,14,24,0.0 +17032,46,12,36,0.0 +17032,47,9.5,46,0.0 +17032,19,9.2,1,0.0 +17032,1,18,33,0.0 +17032,12,38,46,0.0 +17032,27,43.9,28,0.0 +17032,38,263.5,47,0.0 +17032,32,32,18,0.0 +17032,53,32.8,46,0.0 +17032,54,7.45,10,0.0 +17032,75,7.75,48,0.0 +17032,73,15,1,0.0 +17032,30,25.89,24,0.0 +17032,69,36,7,0.0 +17032,59,55,43,0.0 +17032,76,18,49,0.0 +17032,24,4.5,39,0.0 +17033,15,15.5,12,0.0 +17033,4,22,7,0.0 +17033,52,7,8,0.0 +17033,7,30,21,0.0 +17033,46,12,46,0.0 +17033,43,46,33,0.0 +17033,6,25,13,0.0 +17033,41,9.65,35,0.0 +17033,17,39,13,0.0 +17033,77,13,17,0.0 +17033,11,21,7,0.0 +17033,51,53,3,0.0 +17033,24,4.5,40,0.0 +17033,49,20,32,0.0 +17033,56,38,11,0.0 +17033,27,43.9,27,0.0 +17033,39,18,13,0.0 +17033,44,19.45,12,0.0 +17033,35,18,26,0.0 +17033,59,55,31,0.0 +17033,14,23.25,34,0.0 +17033,38,263.5,38,0.0 +17033,37,26,14,0.0 +17033,34,14,1,0.0 +17033,5,21.35,18,0.0 +17033,40,18.4,30,0.0 +17033,76,18,37,0.0 +17033,8,40,8,0.0 +17033,20,81,8,0.0 +17033,50,16.25,11,0.0 +17033,18,62.5,40,0.0 +17033,45,9.5,40,0.0 +17033,13,6,2,0.0 +17033,3,10,19,0.0 +17033,63,43.9,36,0.0 +17033,23,9,41,0.0 +17033,42,14,14,0.0 +17033,64,33.25,20,0.0 +17033,30,25.89,42,0.0 +17033,33,2.5,3,0.0 +17033,62,49.3,22,0.0 +17033,22,21,2,0.0 +17033,25,14,9,0.0 +17033,69,36,39,0.0 +17033,31,12.5,36,0.0 +17033,26,31.23,48,0.0 +17033,75,7.75,42,0.0 +17033,74,10,26,0.0 +17033,58,13.25,16,0.0 +17033,19,9.2,28,0.0 +17033,55,24,20,0.0 +17034,25,14,41,0.0 +17034,76,18,3,0.0 +17034,59,55,24,0.0 +17034,53,32.8,3,0.0 +17034,64,33.25,24,0.0 +17034,42,14,21,0.0 +17034,10,31,1,0.0 +17034,36,19,18,0.0 +17034,16,17.45,37,0.0 +17034,57,19.5,21,0.0 +17034,14,23.25,50,0.0 +17034,52,7,31,0.0 +17034,31,12.5,2,0.0 +17034,18,62.5,15,0.0 +17034,26,31.23,42,0.0 +17034,75,7.75,40,0.0 +17034,70,15,20,0.0 +17034,77,13,18,0.0 +17034,58,13.25,30,0.0 +17034,48,12.75,49,0.0 +17034,39,18,18,0.0 +17034,68,12.5,24,0.0 +17034,4,22,27,0.0 +17035,44,19.45,49,0.0 +17035,19,9.2,23,0.0 +17035,65,21.05,4,0.0 +17035,71,21.5,21,0.0 +17035,55,24,37,0.0 +17035,32,32,20,0.0 +17035,40,18.4,12,0.0 +17035,4,22,4,0.0 +17035,61,28.5,30,0.0 +17035,46,12,23,0.0 +17035,69,36,10,0.0 +17035,33,2.5,32,0.0 +17035,8,40,18,0.0 +17035,9,97,6,0.0 +17035,51,53,19,0.0 +17035,66,17,28,0.0 +17035,26,31.23,36,0.0 +17035,47,9.5,24,0.0 +17035,72,34.8,10,0.0 +17035,62,49.3,27,0.0 +17035,53,32.8,10,0.0 +17035,28,45.6,2,0.0 +17035,48,12.75,35,0.0 +17035,37,26,39,0.0 +17035,27,43.9,28,0.0 +17035,17,39,48,0.0 +17035,5,21.35,37,0.0 +17035,23,9,42,0.0 +17035,2,19,18,0.0 +17035,21,10,48,0.0 +17035,35,18,2,0.0 +17035,6,25,6,0.0 +17035,24,4.5,29,0.0 +17035,45,9.5,34,0.0 +17035,10,31,11,0.0 +17035,42,14,3,0.0 +17035,75,7.75,5,0.0 +17035,25,14,17,0.0 +17035,74,10,14,0.0 +17035,7,30,9,0.0 +17035,57,19.5,27,0.0 +17035,76,18,26,0.0 +17035,18,62.5,28,0.0 +17035,14,23.25,23,0.0 +17035,60,34,43,0.0 +17035,31,12.5,27,0.0 +17035,15,15.5,27,0.0 +17035,54,7.45,41,0.0 +17035,3,10,31,0.0 +17035,38,263.5,11,0.0 +17035,77,13,45,0.0 +17035,22,21,13,0.0 +17035,29,123.79,36,0.0 +17035,64,33.25,14,0.0 +17036,1,18,17,0.0 +17036,44,19.45,21,0.0 +17036,66,17,24,0.0 +17036,75,7.75,49,0.0 +17036,54,7.45,3,0.0 +17036,21,10,1,0.0 +17036,8,40,41,0.0 +17036,11,21,50,0.0 +17036,37,26,7,0.0 +17036,38,263.5,39,0.0 +17036,64,33.25,21,0.0 +17036,30,25.89,48,0.0 +17036,72,34.8,42,0.0 +17036,14,23.25,35,0.0 +17036,69,36,32,0.0 +17036,9,97,44,0.0 +17037,7,30,41,0.0 +17037,57,19.5,3,0.0 +17037,58,13.25,7,0.0 +17037,62,49.3,37,0.0 +17037,10,31,29,0.0 +17037,22,21,42,0.0 +17037,3,10,3,0.0 +17037,38,263.5,31,0.0 +17038,15,15.5,20,0.0 +17038,59,55,22,0.0 +17038,76,18,43,0.0 +17038,68,12.5,6,0.0 +17038,2,19,48,0.0 +17039,46,12,6,0.0 +17039,20,81,25,0.0 +17039,37,26,14,0.0 +17039,55,24,16,0.0 +17039,63,43.9,7,0.0 +17039,67,14,36,0.0 +17039,23,9,43,0.0 +17039,53,32.8,46,0.0 +17039,74,10,19,0.0 +17039,15,15.5,24,0.0 +17039,48,12.75,25,0.0 +17039,4,22,24,0.0 +17039,52,7,32,0.0 +17039,11,21,10,0.0 +17039,22,21,21,0.0 +17039,28,45.6,22,0.0 +17039,7,30,1,0.0 +17039,25,14,21,0.0 +17039,2,19,39,0.0 +17039,18,62.5,50,0.0 +17039,49,20,18,0.0 +17039,16,17.45,48,0.0 +17039,38,263.5,3,0.0 +17039,10,31,37,0.0 +17039,77,13,17,0.0 +17039,30,25.89,1,0.0 +17039,66,17,48,0.0 +17039,40,18.4,33,0.0 +17039,21,10,31,0.0 +17039,64,33.25,36,0.0 +17039,60,34,5,0.0 +17039,41,9.65,5,0.0 +17039,5,21.35,24,0.0 +17039,33,2.5,38,0.0 +17039,32,32,26,0.0 +17039,24,4.5,32,0.0 +17039,17,39,50,0.0 +17039,54,7.45,38,0.0 +17039,13,6,10,0.0 +17039,45,9.5,33,0.0 +17040,17,39,26,0.0 +17040,56,38,31,0.0 +17040,67,14,7,0.0 +17040,44,19.45,44,0.0 +17040,54,7.45,14,0.0 +17040,38,263.5,34,0.0 +17040,9,97,10,0.0 +17040,76,18,48,0.0 +17040,51,53,9,0.0 +17040,70,15,8,0.0 +17040,19,9.2,32,0.0 +17040,16,17.45,3,0.0 +17040,55,24,47,0.0 +17040,1,18,24,0.0 +17040,41,9.65,6,0.0 +17040,47,9.5,2,0.0 +17040,42,14,48,0.0 +17040,64,33.25,50,0.0 +17040,31,12.5,9,0.0 +17040,65,21.05,48,0.0 +17040,24,4.5,16,0.0 +17040,39,18,4,0.0 +17040,37,26,16,0.0 +17040,27,43.9,49,0.0 +17040,75,7.75,11,0.0 +17040,25,14,29,0.0 +17040,26,31.23,49,0.0 +17040,29,123.79,32,0.0 +17040,58,13.25,17,0.0 +17040,71,21.5,14,0.0 +17040,59,55,15,0.0 +17040,5,21.35,33,0.0 +17040,63,43.9,38,0.0 +17040,57,19.5,1,0.0 +17040,32,32,33,0.0 +17040,4,22,46,0.0 +17040,13,6,18,0.0 +17040,7,30,43,0.0 +17040,61,28.5,38,0.0 +17040,11,21,20,0.0 +17040,14,23.25,23,0.0 +17040,21,10,38,0.0 +17040,49,20,18,0.0 +17040,66,17,10,0.0 +17040,10,31,8,0.0 +17040,2,19,10,0.0 +17040,52,7,7,0.0 +17040,6,25,14,0.0 +17040,48,12.75,39,0.0 +17040,69,36,30,0.0 +17040,33,2.5,9,0.0 +17040,36,19,9,0.0 +17040,40,18.4,24,0.0 +17040,35,18,39,0.0 +17040,45,9.5,35,0.0 +17040,62,49.3,30,0.0 +17040,8,40,9,0.0 +17040,23,9,41,0.0 +17040,68,12.5,40,0.0 +17040,18,62.5,1,0.0 +17040,73,15,17,0.0 +17040,34,14,7,0.0 +17040,20,81,5,0.0 +17040,46,12,47,0.0 +17040,60,34,36,0.0 +17040,28,45.6,27,0.0 +17040,22,21,18,0.0 +17040,12,38,42,0.0 +17040,77,13,34,0.0 +17040,72,34.8,18,0.0 +17041,3,10,17,0.0 +17041,66,17,25,0.0 +17041,45,9.5,48,0.0 +17041,64,33.25,42,0.0 +17041,43,46,7,0.0 +17041,5,21.35,30,0.0 +17041,7,30,26,0.0 +17041,52,7,25,0.0 +17041,37,26,7,0.0 +17041,49,20,5,0.0 +17041,75,7.75,16,0.0 +17041,19,9.2,47,0.0 +17041,1,18,2,0.0 +17041,8,40,27,0.0 +17041,4,22,13,0.0 +17041,48,12.75,15,0.0 +17041,35,18,29,0.0 +17042,73,15,36,0.0 +17042,76,18,21,0.0 +17043,42,14,1,0.0 +17043,49,20,44,0.0 +17043,60,34,47,0.0 +17043,61,28.5,3,0.0 +17043,67,14,50,0.0 +17043,3,10,37,0.0 +17044,36,19,36,0.0 +17044,69,36,23,0.0 +17044,72,34.8,9,0.0 +17044,34,14,33,0.0 +17044,56,38,48,0.0 +17044,22,21,13,0.0 +17044,53,32.8,46,0.0 +17044,26,31.23,30,0.0 +17044,75,7.75,21,0.0 +17044,7,30,49,0.0 +17044,3,10,15,0.0 +17044,55,24,23,0.0 +17044,18,62.5,27,0.0 +17044,39,18,32,0.0 +17044,73,15,16,0.0 +17044,49,20,26,0.0 +17045,70,15,19,0.0 +17045,56,38,44,0.0 +17045,13,6,32,0.0 +17046,74,10,21,0.0 +17046,4,22,40,0.0 +17046,48,12.75,43,0.0 +17046,32,32,31,0.0 +17046,67,14,49,0.0 +17046,26,31.23,22,0.0 +17046,31,12.5,5,0.0 +17046,10,31,2,0.0 +17046,14,23.25,38,0.0 +17046,18,62.5,23,0.0 +17046,21,10,20,0.0 +17046,47,9.5,26,0.0 +17046,58,13.25,33,0.0 +17046,72,34.8,47,0.0 +17046,63,43.9,2,0.0 +17046,44,19.45,45,0.0 +17046,33,2.5,38,0.0 +17046,43,46,18,0.0 +17046,56,38,1,0.0 +17046,39,18,17,0.0 +17046,36,19,4,0.0 +17046,1,18,26,0.0 +17046,77,13,25,0.0 +17046,24,4.5,11,0.0 +17046,22,21,40,0.0 +17046,19,9.2,41,0.0 +17046,50,16.25,21,0.0 +17046,52,7,27,0.0 +17046,69,36,44,0.0 +17046,62,49.3,1,0.0 +17046,68,12.5,32,0.0 +17046,3,10,15,0.0 +17046,42,14,48,0.0 +17046,64,33.25,41,0.0 +17046,61,28.5,1,0.0 +17046,57,19.5,28,0.0 +17046,46,12,11,0.0 +17046,40,18.4,43,0.0 +17046,6,25,15,0.0 +17046,17,39,13,0.0 +17046,53,32.8,32,0.0 +17046,5,21.35,45,0.0 +17046,7,30,37,0.0 +17046,38,263.5,31,0.0 +17046,16,17.45,18,0.0 +17046,41,9.65,5,0.0 +17046,76,18,29,0.0 +17046,20,81,3,0.0 +17046,49,20,7,0.0 +17046,29,123.79,26,0.0 +17046,30,25.89,31,0.0 +17046,37,26,23,0.0 +17046,13,6,8,0.0 +17046,23,9,10,0.0 +17046,8,40,33,0.0 +17046,65,21.05,12,0.0 +17046,60,34,34,0.0 +17046,12,38,50,0.0 +17046,34,14,36,0.0 +17046,11,21,5,0.0 +17046,9,97,27,0.0 +17046,73,15,16,0.0 +17046,59,55,34,0.0 +17047,65,21.05,43,0.0 +17047,51,53,25,0.0 +17047,1,18,45,0.0 +17047,66,17,49,0.0 +17047,18,62.5,45,0.0 +17047,6,25,7,0.0 +17047,4,22,11,0.0 +17047,58,13.25,5,0.0 +17047,56,38,1,0.0 +17047,7,30,48,0.0 +17047,20,81,13,0.0 +17047,53,32.8,31,0.0 +17047,9,97,39,0.0 +17047,28,45.6,13,0.0 +17047,68,12.5,16,0.0 +17047,33,2.5,15,0.0 +17047,62,49.3,43,0.0 +17047,8,40,39,0.0 +17047,76,18,6,0.0 +17047,52,7,42,0.0 +17047,25,14,35,0.0 +17047,10,31,4,0.0 +17047,69,36,12,0.0 +17047,60,34,4,0.0 +17047,61,28.5,13,0.0 +17047,15,15.5,35,0.0 +17047,23,9,14,0.0 +17047,17,39,46,0.0 +17047,75,7.75,37,0.0 +17047,3,10,28,0.0 +17047,16,17.45,24,0.0 +17047,21,10,40,0.0 +17047,71,21.5,22,0.0 +17047,38,263.5,5,0.0 +17047,48,12.75,17,0.0 +17047,50,16.25,23,0.0 +17047,40,18.4,28,0.0 +17048,3,10,1,0.0 +17048,50,16.25,44,0.0 +17048,65,21.05,37,0.0 +17048,34,14,24,0.0 +17048,73,15,47,0.0 +17048,11,21,10,0.0 +17048,17,39,8,0.0 +17048,22,21,9,0.0 +17048,13,6,13,0.0 +17048,61,28.5,48,0.0 +17048,40,18.4,26,0.0 +17048,39,18,42,0.0 +17048,25,14,43,0.0 +17048,77,13,41,0.0 +17048,12,38,36,0.0 +17048,72,34.8,25,0.0 +17048,38,263.5,33,0.0 +17048,48,12.75,5,0.0 +17048,15,15.5,12,0.0 +17048,60,34,2,0.0 +17048,8,40,50,0.0 +17048,44,19.45,27,0.0 +17048,54,7.45,45,0.0 +17048,19,9.2,7,0.0 +17048,56,38,7,0.0 +17048,66,17,38,0.0 +17048,33,2.5,38,0.0 +17048,69,36,6,0.0 +17048,45,9.5,2,0.0 +17048,62,49.3,39,0.0 +17048,46,12,32,0.0 +17048,27,43.9,12,0.0 +17048,41,9.65,48,0.0 +17048,26,31.23,8,0.0 +17048,30,25.89,9,0.0 +17048,37,26,29,0.0 +17048,21,10,41,0.0 +17048,1,18,16,0.0 +17048,55,24,32,0.0 +17048,49,20,4,0.0 +17048,2,19,38,0.0 +17048,71,21.5,50,0.0 +17048,43,46,12,0.0 +17048,35,18,33,0.0 +17048,64,33.25,18,0.0 +17048,36,19,15,0.0 +17048,18,62.5,16,0.0 +17048,31,12.5,26,0.0 +17048,42,14,6,0.0 +17048,47,9.5,34,0.0 +17048,57,19.5,4,0.0 +17048,16,17.45,7,0.0 +17048,4,22,49,0.0 +17048,52,7,44,0.0 +17048,32,32,28,0.0 +17048,6,25,14,0.0 +17048,28,45.6,40,0.0 +17048,9,97,27,0.0 +17048,53,32.8,13,0.0 +17049,17,39,36,0.0 +17049,3,10,19,0.0 +17049,71,21.5,20,0.0 +17049,35,18,39,0.0 +17049,31,12.5,10,0.0 +17049,5,21.35,14,0.0 +17049,59,55,35,0.0 +17049,38,263.5,46,0.0 +17049,70,15,28,0.0 +17049,18,62.5,35,0.0 +17049,9,97,19,0.0 +17049,58,13.25,9,0.0 +17049,73,15,18,0.0 +17049,2,19,38,0.0 +17049,63,43.9,49,0.0 +17049,37,26,46,0.0 +17049,4,22,23,0.0 +17049,46,12,3,0.0 +17049,12,38,8,0.0 +17049,16,17.45,12,0.0 +17049,28,45.6,10,0.0 +17049,76,18,49,0.0 +17049,15,15.5,32,0.0 +17049,66,17,49,0.0 +17049,67,14,25,0.0 +17049,19,9.2,36,0.0 +17049,64,33.25,23,0.0 +17049,24,4.5,1,0.0 +17049,77,13,3,0.0 +17049,7,30,3,0.0 +17049,45,9.5,44,0.0 +17049,65,21.05,10,0.0 +17049,56,38,13,0.0 +17049,1,18,11,0.0 +17049,52,7,4,0.0 +17049,47,9.5,30,0.0 +17049,72,34.8,17,0.0 +17049,27,43.9,17,0.0 +17049,21,10,28,0.0 +17049,44,19.45,39,0.0 +17049,75,7.75,40,0.0 +17049,34,14,1,0.0 +17049,53,32.8,6,0.0 +17049,55,24,33,0.0 +17049,39,18,28,0.0 +17049,10,31,46,0.0 +17049,62,49.3,29,0.0 +17049,69,36,2,0.0 +17049,51,53,38,0.0 +17049,25,14,27,0.0 +17049,43,46,6,0.0 +17049,68,12.5,8,0.0 +17049,41,9.65,15,0.0 +17049,6,25,34,0.0 +17049,30,25.89,15,0.0 +17049,60,34,30,0.0 +17049,49,20,31,0.0 +17049,20,81,7,0.0 +17049,61,28.5,17,0.0 +17049,11,21,21,0.0 +17049,74,10,44,0.0 +17049,32,32,42,0.0 +17050,56,38,25,0.0 +17050,54,7.45,17,0.0 +17050,75,7.75,4,0.0 +17050,30,25.89,18,0.0 +17050,43,46,10,0.0 +17050,53,32.8,14,0.0 +17050,40,18.4,32,0.0 +17050,26,31.23,12,0.0 +17050,55,24,7,0.0 +17050,58,13.25,22,0.0 +17050,62,49.3,21,0.0 +17050,51,53,48,0.0 +17050,50,16.25,6,0.0 +17050,22,21,20,0.0 +17050,18,62.5,26,0.0 +17050,59,55,6,0.0 +17050,37,26,9,0.0 +17050,36,19,3,0.0 +17051,2,19,38,0.0 +17051,29,123.79,35,0.0 +17051,24,4.5,7,0.0 +17051,15,15.5,33,0.0 +17051,57,19.5,22,0.0 +17051,52,7,12,0.0 +17051,4,22,35,0.0 +17051,49,20,25,0.0 +17051,20,81,27,0.0 +17051,14,23.25,7,0.0 +17051,63,43.9,43,0.0 +17051,8,40,31,0.0 +17051,43,46,38,0.0 +17051,50,16.25,38,0.0 +17051,77,13,18,0.0 +17051,22,21,25,0.0 +17051,36,19,4,0.0 +17051,33,2.5,40,0.0 +17051,17,39,29,0.0 +17051,54,7.45,37,0.0 +17051,3,10,28,0.0 +17051,39,18,38,0.0 +17051,60,34,26,0.0 +17051,47,9.5,27,0.0 +17051,27,43.9,48,0.0 +17051,61,28.5,11,0.0 +17051,45,9.5,48,0.0 +17051,67,14,10,0.0 +17051,44,19.45,8,0.0 +17051,71,21.5,22,0.0 +17051,75,7.75,24,0.0 +17051,16,17.45,43,0.0 +17051,21,10,31,0.0 +17051,62,49.3,10,0.0 +17051,9,97,4,0.0 +17051,28,45.6,49,0.0 +17051,58,13.25,48,0.0 +17051,66,17,1,0.0 +17051,37,26,20,0.0 +17051,25,14,35,0.0 +17051,26,31.23,34,0.0 +17051,31,12.5,39,0.0 +17051,32,32,50,0.0 +17051,46,12,3,0.0 +17051,48,12.75,34,0.0 +17051,18,62.5,26,0.0 +17051,42,14,19,0.0 +17051,53,32.8,27,0.0 +17051,6,25,37,0.0 +17051,76,18,1,0.0 +17051,7,30,34,0.0 +17051,56,38,24,0.0 +17052,46,12,26,0.0 +17052,55,24,46,0.0 +17052,30,25.89,10,0.0 +17052,9,97,5,0.0 +17052,48,12.75,44,0.0 +17052,35,18,1,0.0 +17052,8,40,14,0.0 +17052,77,13,17,0.0 +17052,38,263.5,23,0.0 +17052,73,15,39,0.0 +17052,10,31,39,0.0 +17052,39,18,35,0.0 +17052,51,53,46,0.0 +17052,42,14,15,0.0 +17052,76,18,11,0.0 +17052,68,12.5,7,0.0 +17052,32,32,13,0.0 +17052,33,2.5,44,0.0 +17052,22,21,25,0.0 +17052,52,7,34,0.0 +17052,59,55,40,0.0 +17052,25,14,18,0.0 +17052,71,21.5,21,0.0 +17052,12,38,40,0.0 +17052,27,43.9,47,0.0 +17052,1,18,31,0.0 +17052,50,16.25,48,0.0 +17052,58,13.25,26,0.0 +17052,17,39,36,0.0 +17052,5,21.35,37,0.0 +17052,49,20,12,0.0 +17052,43,46,28,0.0 +17052,67,14,4,0.0 +17052,72,34.8,13,0.0 +17052,40,18.4,12,0.0 +17052,15,15.5,3,0.0 +17052,21,10,49,0.0 +17052,44,19.45,18,0.0 +17052,23,9,35,0.0 +17052,41,9.65,6,0.0 +17052,64,33.25,22,0.0 +17052,36,19,19,0.0 +17053,29,123.79,12,0.0 +17053,41,9.65,22,0.0 +17053,74,10,28,0.0 +17053,51,53,13,0.0 +17053,40,18.4,39,0.0 +17053,1,18,26,0.0 +17053,49,20,1,0.0 +17053,20,81,33,0.0 +17053,42,14,23,0.0 +17053,62,49.3,34,0.0 +17053,63,43.9,32,0.0 +17053,10,31,31,0.0 +17053,23,9,19,0.0 +17053,77,13,33,0.0 +17053,8,40,41,0.0 +17053,72,34.8,47,0.0 +17053,3,10,22,0.0 +17053,47,9.5,3,0.0 +17053,13,6,35,0.0 +17053,32,32,24,0.0 +17053,44,19.45,34,0.0 +17053,55,24,31,0.0 +17053,21,10,46,0.0 +17053,59,55,21,0.0 +17053,36,19,16,0.0 +17053,65,21.05,36,0.0 +17053,75,7.75,39,0.0 +17053,12,38,23,0.0 +17053,22,21,3,0.0 +17053,48,12.75,15,0.0 +17053,16,17.45,28,0.0 +17053,24,4.5,39,0.0 +17053,4,22,19,0.0 +17053,31,12.5,45,0.0 +17053,19,9.2,27,0.0 +17053,66,17,22,0.0 +17053,28,45.6,47,0.0 +17053,76,18,38,0.0 +17053,39,18,40,0.0 +17053,34,14,20,0.0 +17053,56,38,22,0.0 +17053,45,9.5,5,0.0 +17053,73,15,37,0.0 +17053,38,263.5,2,0.0 +17053,46,12,33,0.0 +17053,67,14,40,0.0 +17053,26,31.23,2,0.0 +17053,18,62.5,36,0.0 +17053,2,19,5,0.0 +17053,11,21,21,0.0 +17053,61,28.5,6,0.0 +17053,53,32.8,46,0.0 +17053,7,30,27,0.0 +17053,30,25.89,49,0.0 +17053,71,21.5,19,0.0 +17054,58,13.25,8,0.0 +17054,52,7,20,0.0 +17054,2,19,1,0.0 +17054,60,34,43,0.0 +17054,13,6,45,0.0 +17054,34,14,19,0.0 +17054,68,12.5,46,0.0 +17054,19,9.2,36,0.0 +17054,76,18,37,0.0 +17054,77,13,11,0.0 +17054,39,18,25,0.0 +17054,56,38,32,0.0 +17054,45,9.5,3,0.0 +17054,41,9.65,34,0.0 +17054,57,19.5,5,0.0 +17054,59,55,16,0.0 +17054,21,10,49,0.0 +17054,74,10,12,0.0 +17054,46,12,39,0.0 +17054,63,43.9,30,0.0 +17054,28,45.6,2,0.0 +17054,38,263.5,36,0.0 +17054,10,31,31,0.0 +17054,61,28.5,4,0.0 +17054,55,24,32,0.0 +17054,4,22,16,0.0 +17054,26,31.23,32,0.0 +17054,15,15.5,40,0.0 +17054,70,15,30,0.0 +17055,40,18.4,1,0.0 +17055,39,18,19,0.0 +17055,65,21.05,26,0.0 +17055,13,6,12,0.0 +17055,59,55,28,0.0 +17055,44,19.45,43,0.0 +17055,22,21,27,0.0 +17055,55,24,47,0.0 +17055,57,19.5,5,0.0 +17055,5,21.35,7,0.0 +17055,77,13,8,0.0 +17055,73,15,18,0.0 +17055,48,12.75,30,0.0 +17056,69,36,21,0.0 +17056,49,20,42,0.0 +17056,54,7.45,50,0.0 +17056,63,43.9,28,0.0 +17056,51,53,11,0.0 +17056,13,6,42,0.0 +17056,65,21.05,7,0.0 +17056,60,34,22,0.0 +17056,62,49.3,14,0.0 +17056,66,17,40,0.0 +17056,1,18,42,0.0 +17056,3,10,42,0.0 +17056,75,7.75,20,0.0 +17056,50,16.25,43,0.0 +17056,34,14,42,0.0 +17056,23,9,12,0.0 +17056,72,34.8,9,0.0 +17056,45,9.5,39,0.0 +17056,17,39,36,0.0 +17056,39,18,17,0.0 +17056,21,10,13,0.0 +17056,41,9.65,31,0.0 +17056,10,31,46,0.0 +17056,22,21,27,0.0 +17056,48,12.75,22,0.0 +17056,44,19.45,25,0.0 +17056,74,10,22,0.0 +17056,38,263.5,43,0.0 +17056,31,12.5,49,0.0 +17056,33,2.5,5,0.0 +17056,18,62.5,4,0.0 +17056,76,18,38,0.0 +17056,53,32.8,11,0.0 +17056,37,26,3,0.0 +17056,7,30,50,0.0 +17056,68,12.5,43,0.0 +17057,40,18.4,27,0.0 +17057,11,21,14,0.0 +17057,12,38,21,0.0 +17057,61,28.5,36,0.0 +17057,52,7,46,0.0 +17057,70,15,9,0.0 +17057,68,12.5,8,0.0 +17057,18,62.5,41,0.0 +17057,20,81,3,0.0 +17057,5,21.35,35,0.0 +17057,22,21,27,0.0 +17057,35,18,15,0.0 +17057,6,25,28,0.0 +17057,74,10,16,0.0 +17057,29,123.79,19,0.0 +17057,67,14,49,0.0 +17057,8,40,17,0.0 +17057,43,46,19,0.0 +17057,50,16.25,35,0.0 +17057,46,12,16,0.0 +17057,76,18,31,0.0 +17057,44,19.45,34,0.0 +17057,77,13,35,0.0 +17057,75,7.75,44,0.0 +17057,53,32.8,2,0.0 +17057,9,97,23,0.0 +17057,56,38,5,0.0 +17057,38,263.5,10,0.0 +17057,19,9.2,49,0.0 +17057,54,7.45,49,0.0 +17057,58,13.25,7,0.0 +17057,62,49.3,44,0.0 +17057,60,34,30,0.0 +17057,55,24,13,0.0 +17057,10,31,38,0.0 +17057,30,25.89,26,0.0 +17057,57,19.5,26,0.0 +17057,25,14,20,0.0 +17057,73,15,1,0.0 +17057,2,19,46,0.0 +17057,49,20,35,0.0 +17057,39,18,3,0.0 +17057,71,21.5,17,0.0 +17057,45,9.5,46,0.0 +17057,1,18,35,0.0 +17057,48,12.75,45,0.0 +17057,17,39,47,0.0 +17057,14,23.25,17,0.0 +17057,23,9,46,0.0 +17057,42,14,33,0.0 +17057,21,10,38,0.0 +17057,32,32,1,0.0 +17057,28,45.6,19,0.0 +17057,27,43.9,41,0.0 +17057,72,34.8,31,0.0 +17057,65,21.05,44,0.0 +17057,31,12.5,5,0.0 +17057,36,19,40,0.0 +17057,34,14,25,0.0 +17057,3,10,22,0.0 +17057,51,53,45,0.0 +17057,33,2.5,7,0.0 +17057,4,22,35,0.0 +17057,47,9.5,4,0.0 +17057,64,33.25,33,0.0 +17057,15,15.5,3,0.0 +17057,69,36,28,0.0 +17057,59,55,41,0.0 +17057,63,43.9,47,0.0 +17057,26,31.23,27,0.0 +17057,24,4.5,30,0.0 +17057,66,17,20,0.0 +17057,13,6,36,0.0 +17057,37,26,2,0.0 +17057,7,30,17,0.0 +17057,41,9.65,40,0.0 +17057,16,17.45,2,0.0 +17058,26,31.23,26,0.0 +17058,18,62.5,41,0.0 +17058,4,22,46,0.0 +17058,60,34,41,0.0 +17058,59,55,26,0.0 +17058,40,18.4,3,0.0 +17058,2,19,17,0.0 +17058,5,21.35,23,0.0 +17058,55,24,6,0.0 +17058,38,263.5,46,0.0 +17058,65,21.05,6,0.0 +17058,42,14,9,0.0 +17058,75,7.75,3,0.0 +17058,3,10,38,0.0 +17058,36,19,25,0.0 +17058,30,25.89,26,0.0 +17058,11,21,5,0.0 +17058,12,38,10,0.0 +17058,61,28.5,2,0.0 +17058,23,9,18,0.0 +17058,72,34.8,40,0.0 +17058,52,7,19,0.0 +17058,13,6,19,0.0 +17058,47,9.5,23,0.0 +17058,29,123.79,20,0.0 +17058,67,14,9,0.0 +17058,54,7.45,12,0.0 +17058,45,9.5,45,0.0 +17058,68,12.5,21,0.0 +17058,58,13.25,43,0.0 +17058,64,33.25,11,0.0 +17058,7,30,4,0.0 +17058,28,45.6,41,0.0 +17058,19,9.2,38,0.0 +17058,70,15,28,0.0 +17058,49,20,4,0.0 +17058,16,17.45,4,0.0 +17058,77,13,46,0.0 +17058,25,14,3,0.0 +17058,37,26,27,0.0 +17058,39,18,36,0.0 +17058,69,36,20,0.0 +17058,66,17,17,0.0 +17058,1,18,39,0.0 +17058,46,12,16,0.0 +17058,33,2.5,45,0.0 +17058,6,25,41,0.0 +17058,14,23.25,14,0.0 +17058,53,32.8,6,0.0 +17058,9,97,31,0.0 +17058,24,4.5,14,0.0 +17058,71,21.5,48,0.0 +17058,76,18,29,0.0 +17058,32,32,17,0.0 +17058,51,53,43,0.0 +17058,21,10,36,0.0 +17058,48,12.75,6,0.0 +17058,44,19.45,11,0.0 +17058,22,21,3,0.0 +17058,8,40,33,0.0 +17059,29,123.79,16,0.0 +17059,28,45.6,30,0.0 +17059,61,28.5,21,0.0 +17059,56,38,41,0.0 +17059,14,23.25,2,0.0 +17059,48,12.75,9,0.0 +17059,60,34,21,0.0 +17059,1,18,35,0.0 +17059,65,21.05,47,0.0 +17059,52,7,24,0.0 +17059,9,97,24,0.0 +17059,77,13,28,0.0 +17059,73,15,5,0.0 +17059,59,55,2,0.0 +17059,2,19,27,0.0 +17059,51,53,44,0.0 +17059,55,24,33,0.0 +17059,38,263.5,22,0.0 +17059,70,15,22,0.0 +17059,35,18,27,0.0 +17059,49,20,6,0.0 +17059,18,62.5,10,0.0 +17059,13,6,31,0.0 +17059,12,38,44,0.0 +17059,11,21,10,0.0 +17059,47,9.5,43,0.0 +17059,20,81,17,0.0 +17059,6,25,19,0.0 +17059,27,43.9,49,0.0 +17059,71,21.5,45,0.0 +17059,22,21,6,0.0 +17059,69,36,32,0.0 +17059,19,9.2,9,0.0 +17059,23,9,22,0.0 +17059,21,10,29,0.0 +17059,32,32,50,0.0 +17059,75,7.75,21,0.0 +17059,16,17.45,4,0.0 +17059,10,31,25,0.0 +17059,63,43.9,40,0.0 +17059,53,32.8,35,0.0 +17059,74,10,16,0.0 +17059,45,9.5,9,0.0 +17059,43,46,8,0.0 +17059,54,7.45,33,0.0 +17059,33,2.5,47,0.0 +17059,42,14,22,0.0 +17059,17,39,17,0.0 +17059,50,16.25,3,0.0 +17059,64,33.25,11,0.0 +17059,15,15.5,17,0.0 +17059,25,14,32,0.0 +17059,5,21.35,29,0.0 +17059,8,40,20,0.0 +17059,68,12.5,8,0.0 +17059,24,4.5,1,0.0 +17059,31,12.5,15,0.0 +17059,66,17,40,0.0 +17059,57,19.5,19,0.0 +17059,46,12,48,0.0 +17059,26,31.23,27,0.0 +17059,37,26,38,0.0 +17059,3,10,38,0.0 +17059,39,18,12,0.0 +17059,36,19,11,0.0 +17059,40,18.4,39,0.0 +17059,44,19.45,44,0.0 +17059,76,18,46,0.0 +17059,41,9.65,37,0.0 +17059,72,34.8,41,0.0 +17059,62,49.3,48,0.0 +17059,67,14,34,0.0 +17059,58,13.25,11,0.0 +17059,7,30,44,0.0 +17060,33,2.5,46,0.0 +17060,19,9.2,13,0.0 +17060,24,4.5,16,0.0 +17060,59,55,21,0.0 +17060,12,38,36,0.0 +17060,40,18.4,5,0.0 +17060,29,123.79,4,0.0 +17060,26,31.23,48,0.0 +17060,9,97,45,0.0 +17060,35,18,5,0.0 +17060,25,14,22,0.0 +17060,5,21.35,14,0.0 +17060,68,12.5,44,0.0 +17060,22,21,36,0.0 +17060,66,17,14,0.0 +17060,47,9.5,23,0.0 +17060,77,13,5,0.0 +17060,10,31,39,0.0 +17060,61,28.5,32,0.0 +17060,38,263.5,18,0.0 +17060,76,18,19,0.0 +17060,20,81,17,0.0 +17060,57,19.5,25,0.0 +17060,3,10,14,0.0 +17060,65,21.05,7,0.0 +17060,70,15,18,0.0 +17060,49,20,22,0.0 +17060,53,32.8,20,0.0 +17060,21,10,50,0.0 +17060,17,39,17,0.0 +17060,1,18,10,0.0 +17060,34,14,21,0.0 +17060,64,33.25,40,0.0 +17060,27,43.9,8,0.0 +17060,69,36,14,0.0 +17060,75,7.75,5,0.0 +17060,74,10,34,0.0 +17060,41,9.65,33,0.0 +17060,55,24,28,0.0 +17060,8,40,15,0.0 +17060,18,62.5,30,0.0 +17060,45,9.5,3,0.0 +17060,56,38,3,0.0 +17061,57,19.5,32,0.0 +17061,8,40,24,0.0 +17061,52,7,15,0.0 +17061,70,15,14,0.0 +17061,36,19,10,0.0 +17061,58,13.25,36,0.0 +17061,53,32.8,39,0.0 +17061,12,38,32,0.0 +17061,41,9.65,29,0.0 +17061,10,31,36,0.0 +17061,69,36,33,0.0 +17061,40,18.4,26,0.0 +17061,48,12.75,14,0.0 +17061,9,97,39,0.0 +17061,72,34.8,45,0.0 +17061,20,81,30,0.0 +17061,44,19.45,20,0.0 +17061,51,53,15,0.0 +17061,6,25,48,0.0 +17061,42,14,37,0.0 +17061,16,17.45,41,0.0 +17061,7,30,46,0.0 +17061,68,12.5,6,0.0 +17061,54,7.45,18,0.0 +17061,22,21,8,0.0 +17061,33,2.5,8,0.0 +17061,56,38,20,0.0 +17061,77,13,2,0.0 +17061,75,7.75,2,0.0 +17061,19,9.2,29,0.0 +17061,21,10,6,0.0 +17061,39,18,37,0.0 +17061,74,10,9,0.0 +17061,49,20,15,0.0 +17061,61,28.5,21,0.0 +17061,31,12.5,15,0.0 +17061,18,62.5,39,0.0 +17061,71,21.5,13,0.0 +17061,5,21.35,24,0.0 +17061,73,15,36,0.0 +17061,28,45.6,35,0.0 +17061,13,6,39,0.0 +17061,25,14,33,0.0 +17061,45,9.5,7,0.0 +17061,50,16.25,11,0.0 +17061,32,32,23,0.0 +17061,34,14,32,0.0 +17061,65,21.05,5,0.0 +17061,2,19,1,0.0 +17062,76,18,41,0.0 +17062,32,32,14,0.0 +17062,30,25.89,45,0.0 +17062,41,9.65,32,0.0 +17062,19,9.2,8,0.0 +17062,31,12.5,4,0.0 +17062,35,18,47,0.0 +17062,23,9,6,0.0 +17062,73,15,14,0.0 +17062,11,21,44,0.0 +17062,45,9.5,31,0.0 +17062,72,34.8,27,0.0 +17062,68,12.5,44,0.0 +17062,28,45.6,15,0.0 +17062,4,22,2,0.0 +17062,52,7,9,0.0 +17062,27,43.9,6,0.0 +17062,46,12,48,0.0 +17062,26,31.23,11,0.0 +17062,13,6,10,0.0 +17062,29,123.79,45,0.0 +17063,68,12.5,10,0.0 +17063,50,16.25,17,0.0 +17063,23,9,9,0.0 +17063,13,6,31,0.0 +17063,20,81,11,0.0 +17063,9,97,5,0.0 +17063,26,31.23,6,0.0 +17063,36,19,26,0.0 +17063,2,19,31,0.0 +17063,55,24,2,0.0 +17063,32,32,37,0.0 +17063,43,46,19,0.0 +17063,33,2.5,27,0.0 +17063,73,15,45,0.0 +17063,38,263.5,27,0.0 +17063,65,21.05,32,0.0 +17063,48,12.75,21,0.0 +17063,14,23.25,47,0.0 +17063,25,14,33,0.0 +17063,44,19.45,50,0.0 +17063,5,21.35,30,0.0 +17063,67,14,35,0.0 +17063,63,43.9,12,0.0 +17063,69,36,45,0.0 +17063,22,21,2,0.0 +17063,42,14,30,0.0 +17063,28,45.6,3,0.0 +17063,57,19.5,4,0.0 +17063,11,21,39,0.0 +17063,16,17.45,20,0.0 +17063,12,38,25,0.0 +17063,54,7.45,27,0.0 +17063,34,14,15,0.0 +17063,37,26,50,0.0 +17063,72,34.8,38,0.0 +17063,52,7,12,0.0 +17063,41,9.65,7,0.0 +17063,66,17,50,0.0 +17063,17,39,18,0.0 +17063,40,18.4,3,0.0 +17063,10,31,28,0.0 +17063,59,55,33,0.0 +17063,1,18,10,0.0 +17063,29,123.79,47,0.0 +17063,39,18,1,0.0 +17063,74,10,26,0.0 +17063,60,34,22,0.0 +17063,4,22,43,0.0 +17063,61,28.5,16,0.0 +17063,35,18,20,0.0 +17063,49,20,38,0.0 +17063,70,15,6,0.0 +17063,64,33.25,47,0.0 +17063,62,49.3,25,0.0 +17063,21,10,42,0.0 +17063,76,18,16,0.0 +17063,18,62.5,18,0.0 +17063,45,9.5,23,0.0 +17063,46,12,3,0.0 +17063,51,53,48,0.0 +17063,47,9.5,46,0.0 +17063,56,38,42,0.0 +17063,8,40,29,0.0 +17063,19,9.2,44,0.0 +17063,7,30,42,0.0 +17063,6,25,17,0.0 +17063,15,15.5,21,0.0 +17063,53,32.8,15,0.0 +17063,58,13.25,43,0.0 +17063,24,4.5,38,0.0 +17063,75,7.75,49,0.0 +17063,71,21.5,19,0.0 +17063,27,43.9,39,0.0 +17063,3,10,10,0.0 +17063,30,25.89,17,0.0 +17063,77,13,22,0.0 +17063,31,12.5,39,0.0 +17064,6,25,15,0.0 +17064,17,39,30,0.0 +17064,46,12,7,0.0 +17064,47,9.5,31,0.0 +17064,77,13,5,0.0 +17064,54,7.45,33,0.0 +17064,71,21.5,48,0.0 +17064,36,19,32,0.0 +17064,10,31,41,0.0 +17065,20,81,11,0.0 +17065,60,34,33,0.0 +17065,6,25,2,0.0 +17065,70,15,36,0.0 +17065,65,21.05,47,0.0 +17065,17,39,15,0.0 +17065,16,17.45,2,0.0 +17065,19,9.2,45,0.0 +17065,77,13,15,0.0 +17065,11,21,26,0.0 +17065,35,18,3,0.0 +17065,47,9.5,1,0.0 +17065,48,12.75,22,0.0 +17065,34,14,23,0.0 +17065,76,18,9,0.0 +17065,49,20,18,0.0 +17065,72,34.8,48,0.0 +17065,59,55,8,0.0 +17065,23,9,27,0.0 +17065,46,12,43,0.0 +17065,61,28.5,17,0.0 +17065,73,15,6,0.0 +17065,57,19.5,29,0.0 +17065,4,22,18,0.0 +17065,45,9.5,22,0.0 +17065,66,17,16,0.0 +17065,75,7.75,3,0.0 +17065,10,31,8,0.0 +17065,53,32.8,16,0.0 +17065,40,18.4,7,0.0 +17065,8,40,44,0.0 +17065,38,263.5,47,0.0 +17065,28,45.6,16,0.0 +17065,56,38,48,0.0 +17065,26,31.23,15,0.0 +17065,22,21,46,0.0 +17065,27,43.9,35,0.0 +17065,41,9.65,19,0.0 +17065,2,19,44,0.0 +17065,12,38,21,0.0 +17065,43,46,3,0.0 +17065,42,14,15,0.0 +17065,18,62.5,3,0.0 +17065,68,12.5,19,0.0 +17065,54,7.45,50,0.0 +17065,30,25.89,14,0.0 +17065,69,36,30,0.0 +17065,36,19,9,0.0 +17065,21,10,45,0.0 +17065,14,23.25,48,0.0 +17065,37,26,21,0.0 +17065,52,7,29,0.0 +17065,39,18,17,0.0 +17065,29,123.79,24,0.0 +17065,9,97,23,0.0 +17065,33,2.5,46,0.0 +17065,1,18,47,0.0 +17065,74,10,14,0.0 +17065,62,49.3,43,0.0 +17065,7,30,48,0.0 +17065,13,6,5,0.0 +17065,50,16.25,21,0.0 +17065,31,12.5,35,0.0 +17065,44,19.45,46,0.0 +17065,63,43.9,30,0.0 +17065,24,4.5,5,0.0 +17065,55,24,41,0.0 +17065,25,14,19,0.0 +17065,64,33.25,5,0.0 +17065,58,13.25,17,0.0 +17065,71,21.5,5,0.0 +17065,51,53,21,0.0 +17065,5,21.35,2,0.0 +17065,3,10,12,0.0 +17065,15,15.5,9,0.0 +17066,2,19,18,0.0 +17066,16,17.45,16,0.0 +17066,45,9.5,33,0.0 +17066,56,38,50,0.0 +17066,69,36,31,0.0 +17066,1,18,6,0.0 +17066,38,263.5,9,0.0 +17066,40,18.4,8,0.0 +17066,76,18,46,0.0 +17066,77,13,30,0.0 +17066,28,45.6,10,0.0 +17066,19,9.2,21,0.0 +17066,11,21,29,0.0 +17066,4,22,27,0.0 +17066,25,14,50,0.0 +17066,41,9.65,29,0.0 +17066,5,21.35,29,0.0 +17066,6,25,7,0.0 +17066,17,39,44,0.0 +17066,13,6,39,0.0 +17066,54,7.45,32,0.0 +17066,67,14,24,0.0 +17066,35,18,17,0.0 +17066,74,10,49,0.0 +17066,36,19,21,0.0 +17066,30,25.89,41,0.0 +17066,44,19.45,19,0.0 +17066,9,97,44,0.0 +17066,58,13.25,24,0.0 +17066,47,9.5,4,0.0 +17066,51,53,3,0.0 +17066,33,2.5,29,0.0 +17066,55,24,42,0.0 +17066,65,21.05,22,0.0 +17066,64,33.25,39,0.0 +17066,46,12,28,0.0 +17066,70,15,33,0.0 +17066,43,46,19,0.0 +17066,7,30,34,0.0 +17066,62,49.3,23,0.0 +17066,68,12.5,34,0.0 +17066,48,12.75,39,0.0 +17066,53,32.8,3,0.0 +17066,18,62.5,2,0.0 +17066,26,31.23,43,0.0 +17066,22,21,41,0.0 +17066,63,43.9,6,0.0 +17066,12,38,42,0.0 +17066,75,7.75,43,0.0 +17066,23,9,11,0.0 +17067,2,19,48,0.0 +17067,47,9.5,22,0.0 +17067,35,18,14,0.0 +17067,25,14,45,0.0 +17067,16,17.45,27,0.0 +17067,24,4.5,46,0.0 +17067,46,12,15,0.0 +17067,72,34.8,21,0.0 +17067,33,2.5,8,0.0 +17067,30,25.89,21,0.0 +17067,28,45.6,31,0.0 +17067,55,24,38,0.0 +17067,22,21,25,0.0 +17067,12,38,6,0.0 +17067,66,17,46,0.0 +17067,43,46,40,0.0 +17067,73,15,25,0.0 +17067,38,263.5,21,0.0 +17067,63,43.9,11,0.0 +17067,17,39,9,0.0 +17067,57,19.5,2,0.0 +17067,50,16.25,48,0.0 +17067,61,28.5,47,0.0 +17067,64,33.25,22,0.0 +17067,18,62.5,14,0.0 +17067,59,55,19,0.0 +17067,27,43.9,34,0.0 +17067,76,18,1,0.0 +17067,74,10,39,0.0 +17067,56,38,49,0.0 +17067,3,10,16,0.0 +17067,14,23.25,20,0.0 +17067,77,13,33,0.0 +17067,9,97,11,0.0 +17067,51,53,27,0.0 +17067,67,14,28,0.0 +17067,11,21,19,0.0 +17067,65,21.05,34,0.0 +17067,1,18,20,0.0 +17067,48,12.75,14,0.0 +17067,60,34,29,0.0 +17067,19,9.2,38,0.0 +17067,4,22,50,0.0 +17067,52,7,32,0.0 +17067,41,9.65,28,0.0 +17067,40,18.4,45,0.0 +17067,29,123.79,35,0.0 +17067,71,21.5,31,0.0 +17067,10,31,4,0.0 +17067,20,81,27,0.0 +17067,49,20,2,0.0 +17067,5,21.35,45,0.0 +17067,37,26,32,0.0 +17067,53,32.8,3,0.0 +17067,69,36,30,0.0 +17067,15,15.5,46,0.0 +17067,23,9,23,0.0 +17067,75,7.75,31,0.0 +17067,13,6,38,0.0 +17067,7,30,39,0.0 +17067,8,40,12,0.0 +17067,34,14,20,0.0 +17068,43,46,38,0.0 +17068,10,31,5,0.0 +17068,38,263.5,21,0.0 +17068,34,14,30,0.0 +17068,39,18,11,0.0 +17068,77,13,3,0.0 +17068,53,32.8,8,0.0 +17068,32,32,47,0.0 +17068,23,9,43,0.0 +17068,45,9.5,50,0.0 +17068,5,21.35,35,0.0 +17068,14,23.25,40,0.0 +17068,62,49.3,30,0.0 +17068,64,33.25,6,0.0 +17068,59,55,16,0.0 +17068,22,21,11,0.0 +17068,16,17.45,6,0.0 +17068,31,12.5,45,0.0 +17068,63,43.9,34,0.0 +17068,49,20,7,0.0 +17068,42,14,3,0.0 +17069,7,30,10,0.0 +17069,19,9.2,41,0.0 +17069,43,46,41,0.0 +17069,17,39,25,0.0 +17069,49,20,28,0.0 +17069,13,6,47,0.0 +17069,55,24,31,0.0 +17069,14,23.25,14,0.0 +17069,62,49.3,19,0.0 +17069,50,16.25,3,0.0 +17069,15,15.5,33,0.0 +17069,77,13,42,0.0 +17069,22,21,1,0.0 +17069,5,21.35,40,0.0 +17069,1,18,14,0.0 +17069,48,12.75,9,0.0 +17069,44,19.45,11,0.0 +17069,73,15,35,0.0 +17069,27,43.9,22,0.0 +17069,34,14,21,0.0 +17069,60,34,25,0.0 +17069,32,32,10,0.0 +17069,40,18.4,28,0.0 +17069,35,18,49,0.0 +17069,29,123.79,12,0.0 +17069,2,19,50,0.0 +17069,41,9.65,37,0.0 +17069,70,15,32,0.0 +17069,21,10,32,0.0 +17069,11,21,8,0.0 +17069,61,28.5,27,0.0 +17069,52,7,4,0.0 +17069,24,4.5,11,0.0 +17069,51,53,31,0.0 +17069,64,33.25,4,0.0 +17069,33,2.5,7,0.0 +17069,23,9,5,0.0 +17069,67,14,46,0.0 +17069,53,32.8,48,0.0 +17069,10,31,17,0.0 +17069,36,19,4,0.0 +17069,56,38,11,0.0 +17069,28,45.6,8,0.0 +17069,30,25.89,27,0.0 +17069,6,25,35,0.0 +17069,45,9.5,8,0.0 +17069,46,12,18,0.0 +17069,63,43.9,32,0.0 +17069,59,55,15,0.0 +17069,66,17,50,0.0 +17069,58,13.25,24,0.0 +17069,57,19.5,47,0.0 +17069,38,263.5,42,0.0 +17069,8,40,41,0.0 +17069,54,7.45,44,0.0 +17069,69,36,18,0.0 +17069,18,62.5,20,0.0 +17069,25,14,41,0.0 +17069,72,34.8,23,0.0 +17069,65,21.05,25,0.0 +17069,68,12.5,39,0.0 +17069,39,18,30,0.0 +17069,3,10,49,0.0 +17069,47,9.5,34,0.0 +17069,16,17.45,38,0.0 +17069,9,97,13,0.0 +17069,42,14,28,0.0 +17069,12,38,14,0.0 +17069,31,12.5,42,0.0 +17069,74,10,41,0.0 +17069,26,31.23,19,0.0 +17069,76,18,33,0.0 +17070,45,9.5,9,0.0 +17070,30,25.89,39,0.0 +17070,29,123.79,3,0.0 +17070,68,12.5,1,0.0 +17070,49,20,11,0.0 +17070,74,10,39,0.0 +17070,15,15.5,11,0.0 +17070,55,24,19,0.0 +17070,42,14,37,0.0 +17070,20,81,8,0.0 +17070,34,14,33,0.0 +17070,67,14,1,0.0 +17070,6,25,35,0.0 +17070,58,13.25,41,0.0 +17070,16,17.45,3,0.0 +17070,70,15,11,0.0 +17070,37,26,8,0.0 +17070,40,18.4,49,0.0 +17070,46,12,15,0.0 +17070,23,9,19,0.0 +17070,41,9.65,13,0.0 +17070,62,49.3,14,0.0 +17070,63,43.9,20,0.0 +17070,47,9.5,20,0.0 +17070,8,40,45,0.0 +17070,18,62.5,17,0.0 +17070,61,28.5,20,0.0 +17070,69,36,42,0.0 +17070,59,55,37,0.0 +17070,77,13,39,0.0 +17070,54,7.45,15,0.0 +17070,24,4.5,32,0.0 +17070,21,10,23,0.0 +17070,65,21.05,5,0.0 +17070,7,30,46,0.0 +17070,9,97,50,0.0 +17070,31,12.5,5,0.0 +17070,73,15,12,0.0 +17070,44,19.45,9,0.0 +17070,66,17,50,0.0 +17070,25,14,13,0.0 +17070,39,18,2,0.0 +17070,28,45.6,26,0.0 +17070,19,9.2,10,0.0 +17070,5,21.35,5,0.0 +17070,36,19,13,0.0 +17070,32,32,20,0.0 +17070,51,53,24,0.0 +17070,76,18,4,0.0 +17070,13,6,20,0.0 +17070,75,7.75,22,0.0 +17070,35,18,25,0.0 +17071,37,26,17,0.0 +17071,15,15.5,5,0.0 +17071,42,14,2,0.0 +17071,23,9,15,0.0 +17071,10,31,29,0.0 +17071,77,13,20,0.0 +17071,66,17,19,0.0 +17071,29,123.79,23,0.0 +17071,32,32,13,0.0 +17071,64,33.25,43,0.0 +17071,5,21.35,49,0.0 +17071,47,9.5,16,0.0 +17071,54,7.45,21,0.0 +17071,69,36,44,0.0 +17071,74,10,7,0.0 +17071,6,25,26,0.0 +17071,57,19.5,5,0.0 +17071,51,53,3,0.0 +17071,19,9.2,50,0.0 +17071,72,34.8,24,0.0 +17071,48,12.75,40,0.0 +17071,1,18,15,0.0 +17071,45,9.5,8,0.0 +17072,27,43.9,31,0.0 +17072,36,19,13,0.0 +17072,11,21,15,0.0 +17073,59,55,25,0.0 +17073,3,10,28,0.0 +17073,76,18,1,0.0 +17073,4,22,35,0.0 +17073,62,49.3,29,0.0 +17073,73,15,10,0.0 +17073,47,9.5,41,0.0 +17073,22,21,36,0.0 +17074,53,32.8,31,0.0 +17074,64,33.25,11,0.0 +17074,75,7.75,20,0.0 +17074,59,55,21,0.0 +17074,39,18,16,0.0 +17074,72,34.8,39,0.0 +17074,31,12.5,47,0.0 +17074,41,9.65,42,0.0 +17074,68,12.5,40,0.0 +17074,30,25.89,49,0.0 +17074,20,81,21,0.0 +17074,65,21.05,7,0.0 +17074,25,14,29,0.0 +17074,21,10,44,0.0 +17074,27,43.9,11,0.0 +17074,58,13.25,41,0.0 +17074,23,9,46,0.0 +17074,6,25,46,0.0 +17074,19,9.2,49,0.0 +17074,40,18.4,25,0.0 +17074,74,10,45,0.0 +17074,37,26,36,0.0 +17074,61,28.5,25,0.0 +17074,4,22,28,0.0 +17074,50,16.25,35,0.0 +17074,18,62.5,21,0.0 +17074,17,39,3,0.0 +17074,13,6,16,0.0 +17074,11,21,40,0.0 +17074,32,32,46,0.0 +17074,76,18,5,0.0 +17074,28,45.6,6,0.0 +17074,26,31.23,11,0.0 +17074,3,10,25,0.0 +17074,69,36,33,0.0 +17074,9,97,37,0.0 +17074,42,14,33,0.0 +17074,56,38,28,0.0 +17074,24,4.5,11,0.0 +17074,46,12,40,0.0 +17074,49,20,6,0.0 +17074,7,30,50,0.0 +17074,12,38,34,0.0 +17074,33,2.5,43,0.0 +17074,5,21.35,18,0.0 +17074,54,7.45,24,0.0 +17074,48,12.75,6,0.0 +17074,29,123.79,2,0.0 +17074,10,31,23,0.0 +17074,62,49.3,22,0.0 +17074,77,13,1,0.0 +17074,63,43.9,26,0.0 +17075,13,6,27,0.0 +17075,70,15,2,0.0 +17075,46,12,27,0.0 +17075,72,34.8,14,0.0 +17075,1,18,26,0.0 +17075,8,40,46,0.0 +17075,27,43.9,10,0.0 +17075,34,14,29,0.0 +17075,24,4.5,28,0.0 +17075,30,25.89,31,0.0 +17075,39,18,4,0.0 +17075,29,123.79,21,0.0 +17075,21,10,15,0.0 +17075,75,7.75,26,0.0 +17075,65,21.05,11,0.0 +17075,40,18.4,35,0.0 +17075,26,31.23,11,0.0 +17075,10,31,41,0.0 +17075,45,9.5,11,0.0 +17075,71,21.5,40,0.0 +17075,2,19,45,0.0 +17075,31,12.5,16,0.0 +17075,48,12.75,30,0.0 +17075,23,9,48,0.0 +17075,17,39,27,0.0 +17076,34,14,7,0.0 +17076,47,9.5,25,0.0 +17076,15,15.5,28,0.0 +17076,10,31,1,0.0 +17076,23,9,38,0.0 +17076,74,10,4,0.0 +17076,11,21,13,0.0 +17076,19,9.2,12,0.0 +17076,67,14,25,0.0 +17076,42,14,7,0.0 +17076,68,12.5,46,0.0 +17076,43,46,33,0.0 +17076,61,28.5,32,0.0 +17076,22,21,46,0.0 +17076,27,43.9,23,0.0 +17076,36,19,8,0.0 +17076,24,4.5,1,0.0 +17076,5,21.35,8,0.0 +17076,12,38,6,0.0 +17077,18,62.5,32,0.0 +17077,27,43.9,34,0.0 +17077,77,13,4,0.0 +17077,42,14,18,0.0 +17077,46,12,27,0.0 +17077,68,12.5,8,0.0 +17077,47,9.5,37,0.0 +17077,6,25,2,0.0 +17077,48,12.75,9,0.0 +17077,30,25.89,10,0.0 +17077,33,2.5,37,0.0 +17077,35,18,18,0.0 +17077,37,26,50,0.0 +17077,61,28.5,30,0.0 +17077,38,263.5,50,0.0 +17077,64,33.25,6,0.0 +17077,43,46,49,0.0 +17077,17,39,35,0.0 +17077,5,21.35,24,0.0 +17077,4,22,4,0.0 +17077,21,10,24,0.0 +17078,43,46,20,0.0 +17078,70,15,5,0.0 +17078,37,26,23,0.0 +17078,32,32,32,0.0 +17078,3,10,21,0.0 +17078,33,2.5,15,0.0 +17078,31,12.5,42,0.0 +17078,40,18.4,2,0.0 +17078,39,18,49,0.0 +17078,72,34.8,47,0.0 +17078,8,40,45,0.0 +17078,4,22,28,0.0 +17078,57,19.5,24,0.0 +17079,36,19,6,0.0 +17079,35,18,28,0.0 +17079,60,34,2,0.0 +17079,57,19.5,17,0.0 +17079,3,10,3,0.0 +17079,74,10,9,0.0 +17079,64,33.25,3,0.0 +17079,63,43.9,22,0.0 +17079,9,97,17,0.0 +17079,56,38,3,0.0 +17079,59,55,17,0.0 +17079,29,123.79,15,0.0 +17079,14,23.25,46,0.0 +17079,42,14,26,0.0 +17079,30,25.89,20,0.0 +17079,47,9.5,33,0.0 +17079,45,9.5,23,0.0 +17079,51,53,21,0.0 +17079,25,14,36,0.0 +17079,50,16.25,39,0.0 +17079,37,26,23,0.0 +17079,27,43.9,36,0.0 +17079,43,46,11,0.0 +17079,28,45.6,24,0.0 +17079,58,13.25,34,0.0 +17080,55,24,6,0.0 +17080,17,39,31,0.0 +17080,18,62.5,20,0.0 +17080,64,33.25,41,0.0 +17080,46,12,2,0.0 +17080,6,25,14,0.0 +17080,9,97,12,0.0 +17080,63,43.9,17,0.0 +17080,62,49.3,24,0.0 +17080,2,19,48,0.0 +17080,24,4.5,9,0.0 +17080,5,21.35,37,0.0 +17080,43,46,17,0.0 +17080,70,15,49,0.0 +17080,35,18,3,0.0 +17080,57,19.5,3,0.0 +17080,12,38,18,0.0 +17080,67,14,11,0.0 +17080,8,40,30,0.0 +17080,45,9.5,35,0.0 +17080,30,25.89,29,0.0 +17080,11,21,24,0.0 +17080,47,9.5,48,0.0 +17080,27,43.9,18,0.0 +17080,52,7,10,0.0 +17080,61,28.5,23,0.0 +17080,76,18,16,0.0 +17080,48,12.75,21,0.0 +17080,66,17,33,0.0 +17080,69,36,50,0.0 +17081,62,49.3,49,0.0 +17081,49,20,32,0.0 +17081,34,14,23,0.0 +17081,44,19.45,47,0.0 +17081,24,4.5,49,0.0 +17081,42,14,15,0.0 +17081,23,9,3,0.0 +17081,57,19.5,25,0.0 +17081,50,16.25,33,0.0 +17081,52,7,45,0.0 +17081,36,19,46,0.0 +17081,3,10,3,0.0 +17081,66,17,44,0.0 +17081,16,17.45,2,0.0 +17081,17,39,47,0.0 +17081,27,43.9,43,0.0 +17081,8,40,3,0.0 +17081,30,25.89,13,0.0 +17081,20,81,28,0.0 +17081,55,24,41,0.0 +17081,69,36,43,0.0 +17081,5,21.35,7,0.0 +17081,6,25,20,0.0 +17081,56,38,6,0.0 +17081,72,34.8,31,0.0 +17081,60,34,3,0.0 +17081,47,9.5,11,0.0 +17081,77,13,21,0.0 +17081,21,10,7,0.0 +17081,71,21.5,47,0.0 +17081,74,10,28,0.0 +17081,28,45.6,22,0.0 +17081,15,15.5,37,0.0 +17081,75,7.75,27,0.0 +17081,19,9.2,3,0.0 +17081,64,33.25,46,0.0 +17081,4,22,43,0.0 +17081,35,18,35,0.0 +17081,9,97,12,0.0 +17081,1,18,40,0.0 +17081,61,28.5,8,0.0 +17081,46,12,3,0.0 +17081,43,46,27,0.0 +17081,38,263.5,12,0.0 +17081,25,14,2,0.0 +17081,65,21.05,47,0.0 +17081,67,14,34,0.0 +17081,48,12.75,37,0.0 +17081,54,7.45,35,0.0 +17081,70,15,37,0.0 +17081,11,21,38,0.0 +17081,32,32,14,0.0 +17081,29,123.79,19,0.0 +17081,58,13.25,41,0.0 +17081,37,26,50,0.0 +17081,45,9.5,49,0.0 +17081,51,53,43,0.0 +17082,28,45.6,41,0.0 +17082,60,34,1,0.0 +17082,33,2.5,42,0.0 +17082,24,4.5,38,0.0 +17082,50,16.25,28,0.0 +17082,41,9.65,33,0.0 +17082,30,25.89,29,0.0 +17082,55,24,3,0.0 +17082,4,22,43,0.0 +17082,67,14,8,0.0 +17083,29,123.79,39,0.0 +17083,58,13.25,9,0.0 +17083,33,2.5,11,0.0 +17083,55,24,43,0.0 +17083,68,12.5,49,0.0 +17083,31,12.5,16,0.0 +17083,13,6,27,0.0 +17083,24,4.5,37,0.0 +17083,45,9.5,37,0.0 +17083,67,14,12,0.0 +17083,6,25,34,0.0 +17083,40,18.4,35,0.0 +17083,66,17,9,0.0 +17083,44,19.45,36,0.0 +17083,17,39,41,0.0 +17083,42,14,11,0.0 +17083,62,49.3,38,0.0 +17083,49,20,46,0.0 +17083,57,19.5,31,0.0 +17083,70,15,7,0.0 +17083,5,21.35,15,0.0 +17083,48,12.75,32,0.0 +17083,63,43.9,48,0.0 +17083,12,38,37,0.0 +17083,59,55,9,0.0 +17083,77,13,44,0.0 +17083,51,53,17,0.0 +17083,19,9.2,34,0.0 +17083,46,12,24,0.0 +17083,43,46,47,0.0 +17083,7,30,34,0.0 +17083,76,18,30,0.0 +17083,9,97,7,0.0 +17083,65,21.05,20,0.0 +17083,74,10,33,0.0 +17083,53,32.8,13,0.0 +17083,71,21.5,31,0.0 +17083,56,38,4,0.0 +17083,30,25.89,50,0.0 +17084,26,31.23,2,0.0 +17084,36,19,36,0.0 +17084,61,28.5,50,0.0 +17084,37,26,22,0.0 +17084,53,32.8,49,0.0 +17084,59,55,9,0.0 +17084,63,43.9,50,0.0 +17084,43,46,27,0.0 +17084,21,10,3,0.0 +17085,8,40,34,0.0 +17085,54,7.45,3,0.0 +17085,30,25.89,11,0.0 +17085,68,12.5,38,0.0 +17085,50,16.25,27,0.0 +17085,16,17.45,6,0.0 +17085,23,9,42,0.0 +17085,73,15,7,0.0 +17085,66,17,4,0.0 +17085,40,18.4,13,0.0 +17085,60,34,42,0.0 +17085,55,24,5,0.0 +17085,3,10,35,0.0 +17085,7,30,6,0.0 +17085,53,32.8,45,0.0 +17085,70,15,23,0.0 +17085,15,15.5,18,0.0 +17085,76,18,1,0.0 +17085,28,45.6,13,0.0 +17085,22,21,3,0.0 +17085,27,43.9,26,0.0 +17085,21,10,27,0.0 +17085,26,31.23,14,0.0 +17085,51,53,14,0.0 +17085,58,13.25,11,0.0 +17085,31,12.5,26,0.0 +17085,14,23.25,5,0.0 +17085,5,21.35,47,0.0 +17086,13,6,49,0.0 +17086,56,38,19,0.0 +17086,60,34,14,0.0 +17086,59,55,10,0.0 +17086,55,24,33,0.0 +17086,74,10,16,0.0 +17086,77,13,37,0.0 +17086,38,263.5,7,0.0 +17086,51,53,23,0.0 +17086,42,14,33,0.0 +17086,37,26,8,0.0 +17086,22,21,8,0.0 +17086,15,15.5,47,0.0 +17086,47,9.5,7,0.0 +17086,1,18,32,0.0 +17086,72,34.8,43,0.0 +17086,29,123.79,36,0.0 +17086,40,18.4,5,0.0 +17086,19,9.2,46,0.0 +17086,73,15,5,0.0 +17086,11,21,25,0.0 +17086,6,25,13,0.0 +17086,70,15,30,0.0 +17086,5,21.35,33,0.0 +17086,71,21.5,38,0.0 +17086,75,7.75,9,0.0 +17086,2,19,5,0.0 +17086,8,40,33,0.0 +17086,27,43.9,29,0.0 +17086,14,23.25,7,0.0 +17086,21,10,15,0.0 +17086,10,31,29,0.0 +17086,62,49.3,21,0.0 +17086,4,22,45,0.0 +17086,16,17.45,19,0.0 +17086,31,12.5,16,0.0 +17086,34,14,16,0.0 +17086,44,19.45,32,0.0 +17086,48,12.75,46,0.0 +17086,54,7.45,4,0.0 +17086,39,18,38,0.0 +17086,3,10,12,0.0 +17086,67,14,9,0.0 +17086,41,9.65,47,0.0 +17086,52,7,38,0.0 +17086,69,36,50,0.0 +17086,43,46,10,0.0 +17086,46,12,42,0.0 +17086,68,12.5,40,0.0 +17086,63,43.9,36,0.0 +17086,49,20,45,0.0 +17086,50,16.25,8,0.0 +17086,23,9,3,0.0 +17086,30,25.89,18,0.0 +17086,36,19,14,0.0 +17086,58,13.25,8,0.0 +17086,66,17,1,0.0 +17086,17,39,45,0.0 +17086,20,81,14,0.0 +17086,65,21.05,44,0.0 +17086,61,28.5,44,0.0 +17086,12,38,17,0.0 +17086,18,62.5,49,0.0 +17086,57,19.5,4,0.0 +17086,32,32,31,0.0 +17086,45,9.5,43,0.0 +17086,33,2.5,4,0.0 +17086,76,18,4,0.0 +17086,26,31.23,25,0.0 +17086,25,14,48,0.0 +17086,28,45.6,23,0.0 +17086,64,33.25,36,0.0 +17087,71,21.5,31,0.0 +17087,49,20,33,0.0 +17087,46,12,12,0.0 +17087,40,18.4,47,0.0 +17087,1,18,9,0.0 +17087,13,6,24,0.0 +17087,2,19,10,0.0 +17087,52,7,43,0.0 +17087,27,43.9,45,0.0 +17087,38,263.5,27,0.0 +17087,8,40,37,0.0 +17087,36,19,32,0.0 +17087,73,15,50,0.0 +17087,62,49.3,29,0.0 +17087,17,39,25,0.0 +17087,15,15.5,13,0.0 +17087,76,18,21,0.0 +17087,16,17.45,27,0.0 +17088,11,21,27,0.0 +17088,33,2.5,46,0.0 +17088,51,53,23,0.0 +17088,49,20,38,0.0 +17088,17,39,27,0.0 +17088,16,17.45,38,0.0 +17088,72,34.8,8,0.0 +17088,27,43.9,33,0.0 +17088,14,23.25,48,0.0 +17088,10,31,19,0.0 +17088,64,33.25,11,0.0 +17088,2,19,7,0.0 +17088,1,18,28,0.0 +17088,55,24,49,0.0 +17088,20,81,19,0.0 +17088,15,15.5,2,0.0 +17088,19,9.2,7,0.0 +17088,29,123.79,20,0.0 +17088,43,46,35,0.0 +17088,25,14,12,0.0 +17088,7,30,18,0.0 +17088,6,25,40,0.0 +17088,58,13.25,11,0.0 +17088,38,263.5,47,0.0 +17088,60,34,26,0.0 +17088,44,19.45,23,0.0 +17088,74,10,4,0.0 +17088,32,32,15,0.0 +17089,71,21.5,3,0.0 +17089,17,39,35,0.0 +17089,52,7,25,0.0 +17089,13,6,43,0.0 +17089,32,32,37,0.0 +17089,9,97,43,0.0 +17089,69,36,41,0.0 +17089,27,43.9,35,0.0 +17089,46,12,3,0.0 +17089,55,24,32,0.0 +17089,54,7.45,27,0.0 +17089,68,12.5,32,0.0 +17089,12,38,42,0.0 +17089,49,20,15,0.0 +17089,21,10,24,0.0 +17089,64,33.25,17,0.0 +17089,72,34.8,46,0.0 +17089,60,34,49,0.0 +17089,4,22,32,0.0 +17089,24,4.5,21,0.0 +17089,42,14,29,0.0 +17089,30,25.89,25,0.0 +17089,26,31.23,9,0.0 +17089,70,15,40,0.0 +17089,50,16.25,34,0.0 +17089,11,21,47,0.0 +17089,48,12.75,39,0.0 +17089,66,17,37,0.0 +17089,51,53,28,0.0 +17089,56,38,47,0.0 +17089,29,123.79,16,0.0 +17089,16,17.45,30,0.0 +17089,44,19.45,49,0.0 +17089,15,15.5,21,0.0 +17089,38,263.5,38,0.0 +17089,77,13,29,0.0 +17089,67,14,25,0.0 +17089,47,9.5,47,0.0 +17089,33,2.5,3,0.0 +17089,2,19,11,0.0 +17089,19,9.2,23,0.0 +17089,14,23.25,7,0.0 +17089,1,18,14,0.0 +17089,73,15,17,0.0 +17089,61,28.5,35,0.0 +17089,35,18,19,0.0 +17089,37,26,4,0.0 +17089,28,45.6,15,0.0 +17090,47,9.5,33,0.0 +17090,24,4.5,41,0.0 +17090,10,31,41,0.0 +17090,43,46,48,0.0 +17090,34,14,28,0.0 +17090,68,12.5,42,0.0 +17090,35,18,4,0.0 +17090,75,7.75,10,0.0 +17090,17,39,33,0.0 +17090,70,15,50,0.0 +17090,67,14,3,0.0 +17090,16,17.45,7,0.0 +17090,73,15,2,0.0 +17090,18,62.5,40,0.0 +17090,58,13.25,15,0.0 +17090,9,97,8,0.0 +17090,29,123.79,38,0.0 +17090,56,38,36,0.0 +17090,41,9.65,47,0.0 +17091,46,12,34,0.0 +17091,58,13.25,17,0.0 +17091,21,10,39,0.0 +17091,16,17.45,14,0.0 +17091,29,123.79,26,0.0 +17091,56,38,48,0.0 +17091,24,4.5,27,0.0 +17091,44,19.45,21,0.0 +17091,18,62.5,22,0.0 +17091,41,9.65,2,0.0 +17091,43,46,40,0.0 +17091,40,18.4,37,0.0 +17091,47,9.5,9,0.0 +17091,37,26,27,0.0 +17091,53,32.8,16,0.0 +17091,15,15.5,25,0.0 +17091,71,21.5,29,0.0 +17091,77,13,43,0.0 +17091,27,43.9,23,0.0 +17091,48,12.75,16,0.0 +17091,1,18,33,0.0 +17091,61,28.5,44,0.0 +17091,59,55,29,0.0 +17091,50,16.25,21,0.0 +17091,14,23.25,50,0.0 +17092,74,10,21,0.0 +17092,69,36,37,0.0 +17092,48,12.75,13,0.0 +17092,65,21.05,45,0.0 +17092,26,31.23,11,0.0 +17092,10,31,26,0.0 +17092,61,28.5,38,0.0 +17092,76,18,28,0.0 +17092,36,19,35,0.0 +17092,18,62.5,9,0.0 +17092,53,32.8,45,0.0 +17092,20,81,38,0.0 +17092,34,14,1,0.0 +17092,17,39,17,0.0 +17092,59,55,25,0.0 +17092,24,4.5,1,0.0 +17092,68,12.5,46,0.0 +17092,71,21.5,3,0.0 +17092,49,20,35,0.0 +17092,75,7.75,43,0.0 +17092,50,16.25,45,0.0 +17092,27,43.9,28,0.0 +17092,33,2.5,47,0.0 +17092,35,18,43,0.0 +17092,25,14,33,0.0 +17092,15,15.5,48,0.0 +17092,46,12,35,0.0 +17092,64,33.25,3,0.0 +17092,57,19.5,8,0.0 +17092,73,15,27,0.0 +17092,58,13.25,23,0.0 +17092,13,6,2,0.0 +17092,14,23.25,33,0.0 +17092,63,43.9,34,0.0 +17092,56,38,47,0.0 +17092,62,49.3,15,0.0 +17092,31,12.5,40,0.0 +17092,40,18.4,17,0.0 +17092,4,22,16,0.0 +17092,44,19.45,37,0.0 +17092,60,34,44,0.0 +17092,55,24,36,0.0 +17092,12,38,50,0.0 +17092,9,97,43,0.0 +17093,74,10,36,0.0 +17093,41,9.65,19,0.0 +17093,47,9.5,11,0.0 +17093,52,7,45,0.0 +17094,31,12.5,30,0.0 +17094,42,14,47,0.0 +17094,22,21,10,0.0 +17094,11,21,1,0.0 +17094,34,14,3,0.0 +17094,56,38,36,0.0 +17094,5,21.35,30,0.0 +17094,68,12.5,25,0.0 +17094,14,23.25,2,0.0 +17094,2,19,43,0.0 +17094,36,19,29,0.0 +17094,26,31.23,31,0.0 +17094,7,30,1,0.0 +17094,12,38,18,0.0 +17094,43,46,8,0.0 +17094,23,9,17,0.0 +17094,73,15,30,0.0 +17094,38,263.5,27,0.0 +17094,8,40,38,0.0 +17094,66,17,17,0.0 +17094,77,13,47,0.0 +17094,20,81,4,0.0 +17094,54,7.45,7,0.0 +17094,47,9.5,41,0.0 +17094,35,18,13,0.0 +17094,4,22,6,0.0 +17094,61,28.5,3,0.0 +17094,65,21.05,49,0.0 +17094,76,18,7,0.0 +17094,44,19.45,19,0.0 +17094,32,32,23,0.0 +17094,46,12,7,0.0 +17094,74,10,25,0.0 +17094,70,15,4,0.0 +17094,28,45.6,30,0.0 +17094,15,15.5,29,0.0 +17094,59,55,5,0.0 +17094,55,24,3,0.0 +17094,58,13.25,5,0.0 +17094,51,53,19,0.0 +17095,17,39,3,0.0 +17095,9,97,9,0.0 +17095,15,15.5,4,0.0 +17095,37,26,21,0.0 +17095,3,10,11,0.0 +17095,12,38,26,0.0 +17095,1,18,46,0.0 +17095,35,18,37,0.0 +17095,6,25,10,0.0 +17095,45,9.5,43,0.0 +17095,19,9.2,23,0.0 +17095,63,43.9,6,0.0 +17095,27,43.9,49,0.0 +17095,48,12.75,45,0.0 +17095,72,34.8,48,0.0 +17095,56,38,8,0.0 +17095,20,81,20,0.0 +17095,57,19.5,34,0.0 +17095,7,30,22,0.0 +17095,32,32,16,0.0 +17095,61,28.5,27,0.0 +17095,18,62.5,6,0.0 +17095,25,14,43,0.0 +17095,26,31.23,42,0.0 +17095,41,9.65,39,0.0 +17095,68,12.5,26,0.0 +17095,13,6,50,0.0 +17095,62,49.3,22,0.0 +17095,69,36,29,0.0 +17095,66,17,13,0.0 +17095,30,25.89,44,0.0 +17095,58,13.25,42,0.0 +17095,77,13,9,0.0 +17095,14,23.25,38,0.0 +17095,71,21.5,48,0.0 +17095,67,14,2,0.0 +17095,47,9.5,15,0.0 +17095,73,15,45,0.0 +17095,22,21,26,0.0 +17095,54,7.45,45,0.0 +17095,34,14,12,0.0 +17095,70,15,25,0.0 +17095,21,10,6,0.0 +17095,74,10,3,0.0 +17095,38,263.5,13,0.0 +17095,51,53,10,0.0 +17095,5,21.35,41,0.0 +17095,39,18,16,0.0 +17095,28,45.6,42,0.0 +17095,10,31,2,0.0 +17095,59,55,44,0.0 +17095,46,12,20,0.0 +17095,11,21,39,0.0 +17095,60,34,19,0.0 +17095,65,21.05,43,0.0 +17095,16,17.45,6,0.0 +17095,64,33.25,9,0.0 +17096,43,46,36,0.0 +17096,23,9,25,0.0 +17096,17,39,36,0.0 +17096,46,12,12,0.0 +17096,22,21,29,0.0 +17096,73,15,27,0.0 +17096,16,17.45,1,0.0 +17096,27,43.9,44,0.0 +17096,52,7,33,0.0 +17096,45,9.5,21,0.0 +17096,67,14,49,0.0 +17096,71,21.5,26,0.0 +17096,12,38,49,0.0 +17096,29,123.79,12,0.0 +17096,47,9.5,16,0.0 +17096,5,21.35,16,0.0 +17096,37,26,50,0.0 +17096,59,55,46,0.0 +17096,9,97,11,0.0 +17096,6,25,42,0.0 +17096,70,15,29,0.0 +17096,7,30,17,0.0 +17096,49,20,33,0.0 +17096,48,12.75,9,0.0 +17096,35,18,30,0.0 +17096,66,17,41,0.0 +17096,13,6,27,0.0 +17096,38,263.5,7,0.0 +17096,28,45.6,40,0.0 +17096,18,62.5,45,0.0 +17097,39,18,8,0.0 +17097,53,32.8,28,0.0 +17097,9,97,31,0.0 +17097,36,19,40,0.0 +17097,62,49.3,6,0.0 +17097,6,25,5,0.0 +17097,38,263.5,16,0.0 +17097,30,25.89,15,0.0 +17097,75,7.75,33,0.0 +17097,35,18,36,0.0 +17097,63,43.9,10,0.0 +17097,43,46,17,0.0 +17097,29,123.79,21,0.0 +17097,13,6,1,0.0 +17098,36,19,39,0.0 +17098,51,53,36,0.0 +17099,29,123.79,2,0.0 +17099,42,14,39,0.0 +17099,68,12.5,24,0.0 +17099,75,7.75,19,0.0 +17099,1,18,48,0.0 +17099,71,21.5,36,0.0 +17099,66,17,25,0.0 +17099,54,7.45,2,0.0 +17099,27,43.9,3,0.0 +17099,33,2.5,47,0.0 +17099,18,62.5,38,0.0 +17099,52,7,16,0.0 +17099,3,10,16,0.0 +17099,9,97,46,0.0 +17099,45,9.5,7,0.0 +17099,16,17.45,24,0.0 +17100,49,20,26,0.0 +17100,74,10,39,0.0 +17100,42,14,49,0.0 +17100,63,43.9,34,0.0 +17100,55,24,21,0.0 +17100,21,10,34,0.0 +17100,60,34,12,0.0 +17100,17,39,30,0.0 +17100,31,12.5,9,0.0 +17100,26,31.23,27,0.0 +17100,35,18,42,0.0 +17100,45,9.5,20,0.0 +17100,46,12,37,0.0 +17100,39,18,16,0.0 +17100,11,21,49,0.0 +17100,15,15.5,14,0.0 +17100,10,31,9,0.0 +17100,37,26,37,0.0 +17100,72,34.8,45,0.0 +17100,4,22,27,0.0 +17100,12,38,39,0.0 +17100,68,12.5,29,0.0 +17100,2,19,39,0.0 +17100,67,14,28,0.0 +17100,70,15,13,0.0 +17100,75,7.75,2,0.0 +17100,41,9.65,33,0.0 +17100,71,21.5,29,0.0 +17100,18,62.5,9,0.0 +17100,8,40,7,0.0 +17100,44,19.45,49,0.0 +17100,64,33.25,32,0.0 +17100,24,4.5,31,0.0 +17100,30,25.89,29,0.0 +17100,22,21,7,0.0 +17100,61,28.5,8,0.0 +17100,32,32,1,0.0 +17100,23,9,46,0.0 +17100,5,21.35,46,0.0 +17100,77,13,36,0.0 +17100,16,17.45,35,0.0 +17100,65,21.05,31,0.0 +17100,51,53,45,0.0 +17100,36,19,6,0.0 +17100,43,46,1,0.0 +17100,57,19.5,41,0.0 +17100,56,38,9,0.0 +17100,29,123.79,48,0.0 +17100,73,15,5,0.0 +17100,14,23.25,40,0.0 +17100,13,6,34,0.0 +17100,58,13.25,33,0.0 +17100,3,10,41,0.0 +17100,7,30,28,0.0 +17100,9,97,28,0.0 +17100,34,14,14,0.0 +17100,48,12.75,44,0.0 +17100,50,16.25,35,0.0 +17100,6,25,8,0.0 +17100,53,32.8,8,0.0 +17100,27,43.9,13,0.0 +17100,47,9.5,45,0.0 +17100,1,18,8,0.0 +17100,52,7,4,0.0 +17100,40,18.4,16,0.0 +17101,77,13,45,0.0 +17101,19,9.2,3,0.0 +17101,50,16.25,31,0.0 +17101,51,53,37,0.0 +17101,5,21.35,5,0.0 +17101,72,34.8,21,0.0 +17101,8,40,50,0.0 +17101,63,43.9,47,0.0 +17101,7,30,8,0.0 +17101,58,13.25,25,0.0 +17101,53,32.8,23,0.0 +17101,35,18,39,0.0 +17101,66,17,10,0.0 +17101,30,25.89,48,0.0 +17101,10,31,42,0.0 +17101,6,25,43,0.0 +17101,22,21,40,0.0 +17101,2,19,27,0.0 +17101,45,9.5,34,0.0 +17102,51,53,21,0.0 +17102,34,14,48,0.0 +17102,1,18,28,0.0 +17102,46,12,22,0.0 +17102,17,39,38,0.0 +17102,52,7,21,0.0 +17102,6,25,34,0.0 +17102,30,25.89,3,0.0 +17102,32,32,23,0.0 +17102,61,28.5,40,0.0 +17102,65,21.05,33,0.0 +17102,29,123.79,17,0.0 +17102,48,12.75,8,0.0 +17102,68,12.5,48,0.0 +17102,39,18,37,0.0 +17102,40,18.4,18,0.0 +17102,5,21.35,45,0.0 +17102,3,10,18,0.0 +17102,66,17,24,0.0 +17102,18,62.5,4,0.0 +17102,47,9.5,9,0.0 +17102,35,18,10,0.0 +17102,38,263.5,30,0.0 +17102,57,19.5,36,0.0 +17102,72,34.8,43,0.0 +17102,63,43.9,10,0.0 +17102,16,17.45,49,0.0 +17102,42,14,30,0.0 +17102,28,45.6,8,0.0 +17102,76,18,23,0.0 +17102,44,19.45,50,0.0 +17102,60,34,10,0.0 +17103,22,21,41,0.0 +17103,69,36,28,0.0 +17103,61,28.5,48,0.0 +17103,29,123.79,30,0.0 +17103,70,15,27,0.0 +17103,4,22,17,0.0 +17103,73,15,49,0.0 +17103,36,19,8,0.0 +17103,52,7,39,0.0 +17103,55,24,6,0.0 +17103,54,7.45,10,0.0 +17103,35,18,27,0.0 +17103,7,30,20,0.0 +17103,46,12,30,0.0 +17103,74,10,21,0.0 +17103,2,19,47,0.0 +17103,11,21,41,0.0 +17103,49,20,20,0.0 +17103,77,13,36,0.0 +17103,75,7.75,24,0.0 +17103,30,25.89,31,0.0 +17103,33,2.5,8,0.0 +17103,21,10,15,0.0 +17103,19,9.2,22,0.0 +17103,27,43.9,48,0.0 +17103,53,32.8,8,0.0 +17103,40,18.4,4,0.0 +17103,3,10,26,0.0 +17103,56,38,21,0.0 +17103,50,16.25,37,0.0 +17103,31,12.5,10,0.0 +17103,39,18,2,0.0 +17103,72,34.8,41,0.0 +17103,47,9.5,28,0.0 +17103,59,55,48,0.0 +17103,43,46,29,0.0 +17103,32,32,15,0.0 +17104,17,39,35,0.0 +17104,1,18,47,0.0 +17104,13,6,5,0.0 +17104,15,15.5,48,0.0 +17104,73,15,33,0.0 +17104,28,45.6,35,0.0 +17104,65,21.05,19,0.0 +17104,72,34.8,32,0.0 +17104,67,14,26,0.0 +17104,23,9,15,0.0 +17104,61,28.5,2,0.0 +17104,10,31,25,0.0 +17104,64,33.25,32,0.0 +17104,5,21.35,28,0.0 +17104,54,7.45,27,0.0 +17104,56,38,24,0.0 +17104,51,53,43,0.0 +17104,57,19.5,32,0.0 +17104,69,36,34,0.0 +17104,39,18,14,0.0 +17104,62,49.3,34,0.0 +17104,75,7.75,14,0.0 +17104,22,21,16,0.0 +17104,19,9.2,31,0.0 +17105,73,15,38,0.0 +17105,61,28.5,44,0.0 +17105,65,21.05,49,0.0 +17105,55,24,15,0.0 +17105,24,4.5,34,0.0 +17105,52,7,30,0.0 +17105,43,46,45,0.0 +17105,26,31.23,23,0.0 +17105,10,31,39,0.0 +17105,25,14,18,0.0 +17105,4,22,1,0.0 +17105,51,53,7,0.0 +17105,8,40,41,0.0 +17105,31,12.5,11,0.0 +17105,27,43.9,1,0.0 +17105,62,49.3,27,0.0 +17105,15,15.5,14,0.0 +17105,21,10,45,0.0 +17105,11,21,20,0.0 +17105,5,21.35,48,0.0 +17105,40,18.4,25,0.0 +17105,42,14,49,0.0 +17105,72,34.8,12,0.0 +17105,45,9.5,18,0.0 +17105,67,14,3,0.0 +17105,76,18,21,0.0 +17105,30,25.89,48,0.0 +17105,46,12,36,0.0 +17105,74,10,36,0.0 +17105,32,32,48,0.0 +17105,14,23.25,47,0.0 +17105,12,38,35,0.0 +17105,36,19,19,0.0 +17105,34,14,15,0.0 +17105,48,12.75,35,0.0 +17105,1,18,45,0.0 +17105,37,26,36,0.0 +17105,28,45.6,29,0.0 +17105,6,25,42,0.0 +17105,57,19.5,36,0.0 +17105,58,13.25,19,0.0 +17105,77,13,14,0.0 +17105,60,34,7,0.0 +17105,66,17,36,0.0 +17105,64,33.25,33,0.0 +17105,41,9.65,38,0.0 +17105,3,10,31,0.0 +17105,56,38,27,0.0 +17105,70,15,12,0.0 +17105,49,20,38,0.0 +17105,59,55,44,0.0 +17105,53,32.8,5,0.0 +17105,16,17.45,18,0.0 +17105,2,19,45,0.0 +17105,39,18,27,0.0 +17105,47,9.5,46,0.0 +17105,33,2.5,3,0.0 +17105,19,9.2,39,0.0 +17105,63,43.9,6,0.0 +17106,62,49.3,33,0.0 +17106,44,19.45,25,0.0 +17106,19,9.2,23,0.0 +17106,60,34,45,0.0 +17106,38,263.5,7,0.0 +17106,12,38,4,0.0 +17106,26,31.23,1,0.0 +17106,67,14,7,0.0 +17106,5,21.35,27,0.0 +17106,70,15,16,0.0 +17106,25,14,38,0.0 +17106,8,40,14,0.0 +17106,29,123.79,2,0.0 +17106,23,9,49,0.0 +17106,75,7.75,27,0.0 +17106,61,28.5,27,0.0 +17106,69,36,5,0.0 +17106,3,10,22,0.0 +17106,54,7.45,21,0.0 +17106,7,30,37,0.0 +17106,17,39,44,0.0 +17106,50,16.25,34,0.0 +17106,9,97,37,0.0 +17107,70,15,22,0.0 +17107,13,6,33,0.0 +17107,22,21,41,0.0 +17107,38,263.5,35,0.0 +17107,76,18,18,0.0 +17107,44,19.45,28,0.0 +17107,65,21.05,8,0.0 +17107,52,7,15,0.0 +17107,23,9,50,0.0 +17107,28,45.6,23,0.0 +17107,24,4.5,10,0.0 +17107,49,20,5,0.0 +17107,73,15,7,0.0 +17107,7,30,2,0.0 +17107,19,9.2,43,0.0 +17107,11,21,42,0.0 +17107,61,28.5,24,0.0 +17107,59,55,23,0.0 +17107,9,97,23,0.0 +17107,30,25.89,40,0.0 +17107,16,17.45,7,0.0 +17107,2,19,18,0.0 +17107,45,9.5,14,0.0 +17107,46,12,27,0.0 +17107,47,9.5,17,0.0 +17107,5,21.35,17,0.0 +17107,60,34,29,0.0 +17107,32,32,32,0.0 +17107,21,10,18,0.0 +17107,35,18,19,0.0 +17107,37,26,3,0.0 +17107,15,15.5,15,0.0 +17107,41,9.65,41,0.0 +17107,14,23.25,11,0.0 +17107,33,2.5,41,0.0 +17107,51,53,43,0.0 +17107,69,36,47,0.0 +17107,62,49.3,12,0.0 +17107,55,24,27,0.0 +17107,54,7.45,4,0.0 +17107,26,31.23,28,0.0 +17107,67,14,9,0.0 +17107,6,25,1,0.0 +17107,40,18.4,38,0.0 +17107,53,32.8,19,0.0 +17107,48,12.75,12,0.0 +17107,56,38,22,0.0 +17107,71,21.5,45,0.0 +17107,77,13,44,0.0 +17107,39,18,17,0.0 +17107,64,33.25,40,0.0 +17107,63,43.9,42,0.0 +17107,58,13.25,22,0.0 +17107,18,62.5,37,0.0 +17107,68,12.5,44,0.0 +17107,31,12.5,13,0.0 +17107,1,18,22,0.0 +17107,8,40,5,0.0 +17107,3,10,27,0.0 +17107,50,16.25,26,0.0 +17107,34,14,38,0.0 +17107,57,19.5,33,0.0 +17107,20,81,33,0.0 +17107,17,39,46,0.0 +17107,72,34.8,14,0.0 +17107,10,31,28,0.0 +17107,4,22,7,0.0 +17107,27,43.9,8,0.0 +17108,59,55,32,0.0 +17108,25,14,26,0.0 +17108,9,97,13,0.0 +17108,35,18,18,0.0 +17108,20,81,47,0.0 +17108,10,31,25,0.0 +17108,73,15,9,0.0 +17108,53,32.8,12,0.0 +17108,39,18,28,0.0 +17108,24,4.5,25,0.0 +17108,28,45.6,31,0.0 +17108,1,18,19,0.0 +17108,48,12.75,35,0.0 +17108,44,19.45,37,0.0 +17108,11,21,6,0.0 +17109,36,19,40,0.0 +17109,22,21,15,0.0 +17109,24,4.5,9,0.0 +17109,8,40,50,0.0 +17109,64,33.25,27,0.0 +17109,16,17.45,48,0.0 +17109,11,21,8,0.0 +17109,33,2.5,44,0.0 +17109,3,10,17,0.0 +17109,53,32.8,24,0.0 +17109,9,97,40,0.0 +17109,68,12.5,33,0.0 +17109,41,9.65,38,0.0 +17109,75,7.75,26,0.0 +17109,67,14,5,0.0 +17109,44,19.45,26,0.0 +17109,14,23.25,28,0.0 +17109,71,21.5,29,0.0 +17109,55,24,13,0.0 +17109,4,22,34,0.0 +17109,28,45.6,24,0.0 +17109,17,39,28,0.0 +17109,2,19,2,0.0 +17109,61,28.5,24,0.0 +17109,73,15,10,0.0 +17109,23,9,50,0.0 +17109,51,53,21,0.0 +17109,20,81,35,0.0 +17109,25,14,21,0.0 +17109,7,30,34,0.0 +17109,52,7,47,0.0 +17109,38,263.5,12,0.0 +17109,40,18.4,48,0.0 +17109,74,10,11,0.0 +17109,58,13.25,38,0.0 +17109,27,43.9,46,0.0 +17109,54,7.45,36,0.0 +17109,39,18,14,0.0 +17109,65,21.05,12,0.0 +17109,56,38,24,0.0 +17109,13,6,14,0.0 +17109,77,13,20,0.0 +17109,47,9.5,5,0.0 +17109,15,15.5,37,0.0 +17109,60,34,29,0.0 +17109,72,34.8,37,0.0 +17109,34,14,7,0.0 +17109,19,9.2,42,0.0 +17109,5,21.35,48,0.0 +17109,6,25,27,0.0 +17109,35,18,23,0.0 +17109,46,12,48,0.0 +17109,42,14,21,0.0 +17109,43,46,37,0.0 +17109,49,20,36,0.0 +17109,69,36,38,0.0 +17109,10,31,49,0.0 +17109,18,62.5,34,0.0 +17109,45,9.5,16,0.0 +17109,29,123.79,29,0.0 +17109,30,25.89,15,0.0 +17109,32,32,2,0.0 +17109,76,18,18,0.0 +17109,66,17,3,0.0 +17109,48,12.75,36,0.0 +17109,62,49.3,42,0.0 +17109,37,26,17,0.0 +17109,1,18,18,0.0 +17109,70,15,30,0.0 +17110,40,18.4,45,0.0 +17110,43,46,43,0.0 +17110,70,15,22,0.0 +17110,63,43.9,25,0.0 +17110,65,21.05,38,0.0 +17110,49,20,35,0.0 +17110,26,31.23,11,0.0 +17110,15,15.5,42,0.0 +17110,75,7.75,10,0.0 +17110,66,17,36,0.0 +17110,58,13.25,27,0.0 +17110,56,38,22,0.0 +17110,19,9.2,48,0.0 +17110,47,9.5,16,0.0 +17110,67,14,9,0.0 +17110,17,39,9,0.0 +17110,23,9,22,0.0 +17110,60,34,40,0.0 +17110,21,10,33,0.0 +17110,34,14,20,0.0 +17110,18,62.5,16,0.0 +17110,48,12.75,44,0.0 +17110,57,19.5,10,0.0 +17110,33,2.5,49,0.0 +17110,71,21.5,2,0.0 +17110,42,14,2,0.0 +17110,10,31,40,0.0 +17110,53,32.8,8,0.0 +17110,72,34.8,21,0.0 +17110,16,17.45,3,0.0 +17110,74,10,38,0.0 +17111,73,15,14,0.0 +17111,52,7,29,0.0 +17111,32,32,49,0.0 +17111,54,7.45,28,0.0 +17111,74,10,40,0.0 +17111,50,16.25,30,0.0 +17111,31,12.5,37,0.0 +17111,53,32.8,15,0.0 +17111,8,40,39,0.0 +17111,66,17,8,0.0 +17111,75,7.75,7,0.0 +17111,49,20,37,0.0 +17111,69,36,32,0.0 +17111,12,38,9,0.0 +17111,15,15.5,11,0.0 +17111,24,4.5,21,0.0 +17111,34,14,20,0.0 +17111,41,9.65,19,0.0 +17111,67,14,50,0.0 +17111,47,9.5,48,0.0 +17111,35,18,45,0.0 +17111,55,24,3,0.0 +17111,46,12,31,0.0 +17111,38,263.5,8,0.0 +17111,63,43.9,49,0.0 +17111,39,18,1,0.0 +17111,13,6,32,0.0 +17111,59,55,13,0.0 +17111,42,14,5,0.0 +17111,30,25.89,4,0.0 +17111,51,53,48,0.0 +17111,22,21,5,0.0 +17111,29,123.79,14,0.0 +17111,40,18.4,49,0.0 +17111,18,62.5,11,0.0 +17111,77,13,16,0.0 +17111,16,17.45,26,0.0 +17111,17,39,25,0.0 +17111,61,28.5,28,0.0 +17112,71,21.5,40,0.0 +17112,2,19,25,0.0 +17112,55,24,42,0.0 +17112,32,32,10,0.0 +17112,50,16.25,50,0.0 +17112,26,31.23,27,0.0 +17112,72,34.8,40,0.0 +17112,22,21,16,0.0 +17112,45,9.5,46,0.0 +17112,47,9.5,20,0.0 +17112,63,43.9,38,0.0 +17112,49,20,15,0.0 +17112,54,7.45,29,0.0 +17112,69,36,8,0.0 +17112,30,25.89,15,0.0 +17112,43,46,38,0.0 +17112,44,19.45,36,0.0 +17112,21,10,8,0.0 +17112,61,28.5,1,0.0 +17112,11,21,14,0.0 +17112,66,17,26,0.0 +17112,25,14,44,0.0 +17112,57,19.5,2,0.0 +17112,70,15,47,0.0 +17113,22,21,46,0.0 +17113,32,32,20,0.0 +17113,27,43.9,47,0.0 +17113,50,16.25,11,0.0 +17114,47,9.5,24,0.0 +17114,17,39,46,0.0 +17114,32,32,48,0.0 +17114,61,28.5,5,0.0 +17114,22,21,35,0.0 +17114,36,19,26,0.0 +17114,10,31,41,0.0 +17114,50,16.25,41,0.0 +17114,37,26,31,0.0 +17114,1,18,35,0.0 +17114,29,123.79,21,0.0 +17114,11,21,48,0.0 +17114,53,32.8,1,0.0 +17114,3,10,30,0.0 +17114,70,15,3,0.0 +17114,76,18,4,0.0 +17114,39,18,36,0.0 +17114,33,2.5,4,0.0 +17114,20,81,18,0.0 +17114,45,9.5,47,0.0 +17114,73,15,50,0.0 +17114,40,18.4,46,0.0 +17114,8,40,8,0.0 +17114,18,62.5,21,0.0 +17114,62,49.3,25,0.0 +17114,25,14,14,0.0 +17114,26,31.23,50,0.0 +17114,15,15.5,4,0.0 +17114,74,10,20,0.0 +17114,72,34.8,23,0.0 +17114,14,23.25,26,0.0 +17114,77,13,36,0.0 +17114,65,21.05,2,0.0 +17114,9,97,41,0.0 +17114,49,20,6,0.0 +17114,68,12.5,39,0.0 +17114,43,46,32,0.0 +17114,6,25,8,0.0 +17114,13,6,27,0.0 +17114,31,12.5,41,0.0 +17114,24,4.5,1,0.0 +17114,38,263.5,44,0.0 +17114,69,36,11,0.0 +17114,30,25.89,19,0.0 +17114,54,7.45,3,0.0 +17114,41,9.65,13,0.0 +17114,46,12,24,0.0 +17114,59,55,26,0.0 +17114,27,43.9,13,0.0 +17114,60,34,10,0.0 +17114,28,45.6,32,0.0 +17114,35,18,46,0.0 +17114,71,21.5,32,0.0 +17114,19,9.2,21,0.0 +17114,23,9,45,0.0 +17114,51,53,6,0.0 +17114,21,10,33,0.0 +17114,2,19,39,0.0 +17114,64,33.25,13,0.0 +17114,16,17.45,15,0.0 +17114,67,14,27,0.0 +17114,66,17,36,0.0 +17114,75,7.75,39,0.0 +17114,12,38,41,0.0 +17114,52,7,40,0.0 +17114,63,43.9,10,0.0 +17114,4,22,9,0.0 +17115,43,46,46,0.0 +17115,60,34,47,0.0 +17115,76,18,13,0.0 +17115,39,18,12,0.0 +17115,17,39,24,0.0 +17115,13,6,42,0.0 +17115,77,13,3,0.0 +17115,33,2.5,13,0.0 +17115,24,4.5,45,0.0 +17115,75,7.75,41,0.0 +17115,37,26,42,0.0 +17115,16,17.45,34,0.0 +17115,52,7,33,0.0 +17115,42,14,36,0.0 +17115,40,18.4,44,0.0 +17115,41,9.65,28,0.0 +17115,45,9.5,17,0.0 +17115,11,21,33,0.0 +17115,22,21,9,0.0 +17115,19,9.2,5,0.0 +17115,69,36,49,0.0 +17115,67,14,27,0.0 +17115,48,12.75,46,0.0 +17115,5,21.35,1,0.0 +17115,31,12.5,34,0.0 +17116,63,43.9,15,0.0 +17116,71,21.5,36,0.0 +17116,37,26,5,0.0 +17116,5,21.35,23,0.0 +17116,30,25.89,17,0.0 +17116,76,18,3,0.0 +17116,24,4.5,30,0.0 +17116,73,15,37,0.0 +17116,50,16.25,46,0.0 +17116,15,15.5,9,0.0 +17116,57,19.5,43,0.0 +17116,42,14,49,0.0 +17116,4,22,3,0.0 +17116,75,7.75,15,0.0 +17116,13,6,19,0.0 +17116,20,81,42,0.0 +17116,51,53,24,0.0 +17116,56,38,13,0.0 +17116,31,12.5,40,0.0 +17116,29,123.79,5,0.0 +17116,18,62.5,14,0.0 +17116,44,19.45,20,0.0 +17116,41,9.65,31,0.0 +17116,59,55,20,0.0 +17116,3,10,34,0.0 +17116,39,18,35,0.0 +17116,26,31.23,31,0.0 +17116,43,46,31,0.0 +17116,49,20,25,0.0 +17116,69,36,19,0.0 +17116,25,14,27,0.0 +17116,61,28.5,49,0.0 +17116,40,18.4,27,0.0 +17116,2,19,42,0.0 +17116,1,18,10,0.0 +17116,70,15,15,0.0 +17116,58,13.25,20,0.0 +17116,12,38,26,0.0 +17116,28,45.6,18,0.0 +17116,66,17,36,0.0 +17116,32,32,28,0.0 +17116,74,10,15,0.0 +17116,46,12,43,0.0 +17116,68,12.5,30,0.0 +17116,72,34.8,12,0.0 +17116,9,97,48,0.0 +17116,53,32.8,1,0.0 +17116,27,43.9,34,0.0 +17116,22,21,30,0.0 +17116,38,263.5,1,0.0 +17116,14,23.25,17,0.0 +17116,77,13,23,0.0 +17116,62,49.3,41,0.0 +17116,34,14,28,0.0 +17116,54,7.45,10,0.0 +17116,16,17.45,16,0.0 +17116,55,24,13,0.0 +17116,21,10,29,0.0 +17116,19,9.2,45,0.0 +17116,11,21,33,0.0 +17117,34,14,41,0.0 +17117,8,40,50,0.0 +17117,48,12.75,4,0.0 +17117,12,38,38,0.0 +17117,26,31.23,49,0.0 +17117,21,10,8,0.0 +17117,30,25.89,37,0.0 +17117,65,21.05,28,0.0 +17117,44,19.45,22,0.0 +17117,45,9.5,47,0.0 +17117,50,16.25,17,0.0 +17117,55,24,2,0.0 +17117,59,55,15,0.0 +17117,67,14,46,0.0 +17117,64,33.25,30,0.0 +17117,43,46,36,0.0 +17117,35,18,19,0.0 +17117,60,34,49,0.0 +17117,16,17.45,14,0.0 +17117,25,14,7,0.0 +17117,54,7.45,23,0.0 +17117,33,2.5,32,0.0 +17117,41,9.65,45,0.0 +17117,32,32,2,0.0 +17117,13,6,13,0.0 +17117,68,12.5,36,0.0 +17117,20,81,41,0.0 +17117,3,10,6,0.0 +17117,71,21.5,2,0.0 +17117,14,23.25,46,0.0 +17117,56,38,26,0.0 +17117,38,263.5,34,0.0 +17117,23,9,11,0.0 +17117,66,17,43,0.0 +17117,49,20,43,0.0 +17117,53,32.8,9,0.0 +17117,70,15,33,0.0 +17117,11,21,5,0.0 +17117,24,4.5,47,0.0 +17117,9,97,5,0.0 +17117,1,18,25,0.0 +17117,29,123.79,31,0.0 +17117,57,19.5,7,0.0 +17117,10,31,32,0.0 +17117,72,34.8,21,0.0 +17117,76,18,33,0.0 +17117,6,25,16,0.0 +17117,37,26,25,0.0 +17117,69,36,16,0.0 +17117,51,53,13,0.0 +17117,58,13.25,11,0.0 +17117,73,15,35,0.0 +17117,2,19,31,0.0 +17117,77,13,7,0.0 +17117,7,30,5,0.0 +17117,40,18.4,28,0.0 +17117,62,49.3,43,0.0 +17117,74,10,29,0.0 +17117,39,18,46,0.0 +17117,52,7,3,0.0 +17117,22,21,17,0.0 +17117,28,45.6,47,0.0 +17117,27,43.9,30,0.0 +17117,18,62.5,33,0.0 +17117,46,12,13,0.0 +17117,17,39,31,0.0 +17118,33,2.5,46,0.0 +17118,51,53,24,0.0 +17118,60,34,30,0.0 +17118,7,30,36,0.0 +17118,14,23.25,27,0.0 +17118,46,12,22,0.0 +17118,68,12.5,37,0.0 +17118,49,20,2,0.0 +17118,39,18,11,0.0 +17118,10,31,39,0.0 +17118,50,16.25,10,0.0 +17118,67,14,5,0.0 +17118,72,34.8,41,0.0 +17118,77,13,24,0.0 +17118,26,31.23,30,0.0 +17118,57,19.5,18,0.0 +17118,59,55,6,0.0 +17118,15,15.5,27,0.0 +17118,47,9.5,46,0.0 +17118,13,6,46,0.0 +17118,65,21.05,44,0.0 +17118,16,17.45,33,0.0 +17118,21,10,3,0.0 +17118,3,10,26,0.0 +17118,37,26,15,0.0 +17118,4,22,20,0.0 +17118,11,21,40,0.0 +17119,9,97,47,0.0 +17119,57,19.5,41,0.0 +17119,59,55,23,0.0 +17119,29,123.79,23,0.0 +17119,45,9.5,32,0.0 +17119,31,12.5,5,0.0 +17119,7,30,31,0.0 +17119,75,7.75,4,0.0 +17119,15,15.5,30,0.0 +17119,38,263.5,37,0.0 +17119,16,17.45,46,0.0 +17119,49,20,46,0.0 +17119,24,4.5,32,0.0 +17119,39,18,43,0.0 +17119,69,36,10,0.0 +17119,5,21.35,39,0.0 +17119,19,9.2,45,0.0 +17119,3,10,31,0.0 +17119,10,31,31,0.0 +17119,42,14,30,0.0 +17119,55,24,19,0.0 +17119,53,32.8,26,0.0 +17119,6,25,17,0.0 +17119,61,28.5,50,0.0 +17119,40,18.4,30,0.0 +17119,11,21,35,0.0 +17119,36,19,42,0.0 +17119,47,9.5,10,0.0 +17120,47,9.5,18,0.0 +17120,25,14,13,0.0 +17120,20,81,14,0.0 +17120,31,12.5,45,0.0 +17120,74,10,25,0.0 +17120,52,7,36,0.0 +17120,29,123.79,25,0.0 +17120,10,31,11,0.0 +17120,34,14,36,0.0 +17120,43,46,13,0.0 +17120,18,62.5,5,0.0 +17120,8,40,10,0.0 +17120,19,9.2,3,0.0 +17120,23,9,24,0.0 +17120,59,55,34,0.0 +17120,1,18,45,0.0 +17120,46,12,47,0.0 +17120,24,4.5,35,0.0 +17120,76,18,49,0.0 +17120,75,7.75,15,0.0 +17120,4,22,42,0.0 +17120,53,32.8,12,0.0 +17120,63,43.9,17,0.0 +17120,70,15,11,0.0 +17120,7,30,6,0.0 +17120,73,15,16,0.0 +17120,69,36,40,0.0 +17120,39,18,50,0.0 +17120,57,19.5,40,0.0 +17120,65,21.05,45,0.0 +17120,27,43.9,35,0.0 +17120,33,2.5,22,0.0 +17120,21,10,29,0.0 +17120,51,53,35,0.0 +17120,37,26,37,0.0 +17120,2,19,32,0.0 +17120,14,23.25,4,0.0 +17120,28,45.6,50,0.0 +17120,56,38,36,0.0 +17120,22,21,39,0.0 +17120,26,31.23,40,0.0 +17120,62,49.3,21,0.0 +17120,5,21.35,27,0.0 +17120,35,18,37,0.0 +17120,44,19.45,15,0.0 +17120,49,20,6,0.0 +17120,13,6,45,0.0 +17120,36,19,41,0.0 +17120,48,12.75,30,0.0 +17120,54,7.45,20,0.0 +17120,72,34.8,43,0.0 +17120,6,25,37,0.0 +17120,71,21.5,48,0.0 +17121,72,34.8,35,0.0 +17121,75,7.75,34,0.0 +17121,38,263.5,2,0.0 +17121,6,25,29,0.0 +17121,59,55,2,0.0 +17121,30,25.89,23,0.0 +17121,41,9.65,8,0.0 +17121,54,7.45,1,0.0 +17121,48,12.75,45,0.0 +17121,56,38,32,0.0 +17121,71,21.5,27,0.0 +17121,4,22,16,0.0 +17121,25,14,21,0.0 +17121,76,18,3,0.0 +17121,5,21.35,20,0.0 +17121,61,28.5,21,0.0 +17121,42,14,5,0.0 +17121,50,16.25,31,0.0 +17121,43,46,42,0.0 +17121,46,12,20,0.0 +17121,44,19.45,15,0.0 +17121,35,18,1,0.0 +17121,47,9.5,36,0.0 +17121,37,26,21,0.0 +17121,3,10,1,0.0 +17121,10,31,24,0.0 +17121,28,45.6,6,0.0 +17121,16,17.45,25,0.0 +17121,52,7,11,0.0 +17121,34,14,12,0.0 +17121,1,18,46,0.0 +17121,26,31.23,41,0.0 +17121,27,43.9,11,0.0 +17121,22,21,6,0.0 +17121,49,20,32,0.0 +17121,63,43.9,27,0.0 +17121,69,36,1,0.0 +17121,65,21.05,32,0.0 +17121,68,12.5,46,0.0 +17121,11,21,8,0.0 +17121,21,10,45,0.0 +17121,2,19,20,0.0 +17121,57,19.5,36,0.0 +17121,8,40,47,0.0 +17121,20,81,12,0.0 +17121,18,62.5,50,0.0 +17121,64,33.25,30,0.0 +17121,29,123.79,3,0.0 +17121,60,34,6,0.0 +17121,17,39,36,0.0 +17121,9,97,19,0.0 +17121,36,19,44,0.0 +17121,74,10,41,0.0 +17121,23,9,17,0.0 +17121,66,17,34,0.0 +17121,32,32,17,0.0 +17121,31,12.5,15,0.0 +17121,19,9.2,19,0.0 +17121,58,13.25,13,0.0 +17122,75,7.75,43,0.0 +17122,60,34,1,0.0 +17122,69,36,1,0.0 +17122,14,23.25,11,0.0 +17122,33,2.5,17,0.0 +17122,37,26,4,0.0 +17122,59,55,3,0.0 +17122,20,81,19,0.0 +17122,5,21.35,38,0.0 +17122,54,7.45,8,0.0 +17122,16,17.45,21,0.0 +17122,49,20,40,0.0 +17122,15,15.5,36,0.0 +17122,51,53,30,0.0 +17122,10,31,10,0.0 +17122,76,18,45,0.0 +17122,71,21.5,13,0.0 +17122,26,31.23,30,0.0 +17122,73,15,14,0.0 +17122,25,14,11,0.0 +17122,70,15,15,0.0 +17122,77,13,20,0.0 +17122,43,46,28,0.0 +17122,40,18.4,27,0.0 +17122,55,24,34,0.0 +17122,63,43.9,18,0.0 +17123,58,13.25,48,0.0 +17123,28,45.6,15,0.0 +17123,77,13,16,0.0 +17123,13,6,3,0.0 +17123,11,21,48,0.0 +17123,73,15,37,0.0 +17123,7,30,12,0.0 +17123,31,12.5,44,0.0 +17123,18,62.5,47,0.0 +17123,54,7.45,10,0.0 +17123,10,31,16,0.0 +17123,62,49.3,20,0.0 +17123,27,43.9,46,0.0 +17123,2,19,47,0.0 +17123,22,21,37,0.0 +17123,44,19.45,39,0.0 +17123,41,9.65,22,0.0 +17123,74,10,38,0.0 +17123,4,22,11,0.0 +17123,3,10,19,0.0 +17123,6,25,15,0.0 +17123,63,43.9,13,0.0 +17123,47,9.5,42,0.0 +17123,9,97,16,0.0 +17123,48,12.75,8,0.0 +17123,8,40,7,0.0 +17123,46,12,47,0.0 +17123,67,14,30,0.0 +17123,45,9.5,50,0.0 +17123,29,123.79,46,0.0 +17123,23,9,47,0.0 +17123,12,38,2,0.0 +17123,37,26,35,0.0 +17123,19,9.2,49,0.0 +17123,60,34,15,0.0 +17123,1,18,39,0.0 +17123,72,34.8,18,0.0 +17123,5,21.35,47,0.0 +17123,71,21.5,28,0.0 +17123,21,10,13,0.0 +17123,66,17,8,0.0 +17123,65,21.05,38,0.0 +17123,49,20,33,0.0 +17123,76,18,24,0.0 +17123,53,32.8,26,0.0 +17123,50,16.25,36,0.0 +17123,36,19,48,0.0 +17123,64,33.25,7,0.0 +17123,38,263.5,23,0.0 +17123,24,4.5,13,0.0 +17123,70,15,32,0.0 +17123,59,55,3,0.0 +17123,34,14,46,0.0 +17123,32,32,49,0.0 +17123,17,39,23,0.0 +17123,39,18,32,0.0 +17123,16,17.45,30,0.0 +17123,40,18.4,45,0.0 +17123,26,31.23,17,0.0 +17123,52,7,27,0.0 +17123,56,38,24,0.0 +17123,55,24,34,0.0 +17123,25,14,17,0.0 +17123,51,53,23,0.0 +17123,75,7.75,50,0.0 +17123,14,23.25,30,0.0 +17123,33,2.5,27,0.0 +17123,15,15.5,45,0.0 +17123,61,28.5,29,0.0 +17123,42,14,12,0.0 +17123,30,25.89,19,0.0 +17123,69,36,45,0.0 +17123,20,81,13,0.0 +17124,41,9.65,38,0.0 +17124,67,14,1,0.0 +17124,52,7,8,0.0 +17124,65,21.05,18,0.0 +17124,16,17.45,38,0.0 +17124,38,263.5,50,0.0 +17124,58,13.25,48,0.0 +17124,2,19,22,0.0 +17124,19,9.2,22,0.0 +17124,54,7.45,40,0.0 +17124,56,38,49,0.0 +17124,11,21,36,0.0 +17124,21,10,36,0.0 +17124,26,31.23,3,0.0 +17124,35,18,8,0.0 +17124,23,9,17,0.0 +17124,3,10,31,0.0 +17124,13,6,24,0.0 +17124,27,43.9,34,0.0 +17124,6,25,6,0.0 +17124,29,123.79,26,0.0 +17124,74,10,32,0.0 +17124,75,7.75,40,0.0 +17124,59,55,35,0.0 +17124,46,12,36,0.0 +17124,49,20,43,0.0 +17124,37,26,24,0.0 +17124,36,19,21,0.0 +17124,57,19.5,20,0.0 +17124,51,53,27,0.0 +17124,30,25.89,9,0.0 +17124,14,23.25,2,0.0 +17124,63,43.9,38,0.0 +17124,48,12.75,9,0.0 +17124,24,4.5,21,0.0 +17124,8,40,15,0.0 +17124,62,49.3,36,0.0 +17124,77,13,47,0.0 +17124,71,21.5,37,0.0 +17124,5,21.35,35,0.0 +17124,70,15,34,0.0 +17124,68,12.5,29,0.0 +17124,17,39,31,0.0 +17124,43,46,50,0.0 +17124,55,24,28,0.0 +17124,31,12.5,30,0.0 +17124,12,38,15,0.0 +17124,60,34,12,0.0 +17124,1,18,44,0.0 +17124,10,31,40,0.0 +17124,42,14,32,0.0 +17124,20,81,49,0.0 +17124,47,9.5,14,0.0 +17124,33,2.5,19,0.0 +17124,9,97,36,0.0 +17124,45,9.5,24,0.0 +17124,32,32,25,0.0 +17124,50,16.25,42,0.0 +17124,73,15,30,0.0 +17124,66,17,37,0.0 +17124,39,18,32,0.0 +17124,15,15.5,2,0.0 +17124,76,18,3,0.0 +17124,28,45.6,3,0.0 +17124,53,32.8,26,0.0 +17124,4,22,24,0.0 +17124,64,33.25,46,0.0 +17124,25,14,6,0.0 +17124,44,19.45,41,0.0 +17124,18,62.5,27,0.0 +17124,40,18.4,40,0.0 +17124,61,28.5,14,0.0 +17125,59,55,4,0.0 +17125,56,38,50,0.0 +17125,40,18.4,5,0.0 +17125,20,81,7,0.0 +17125,29,123.79,33,0.0 +17125,70,15,27,0.0 +17125,8,40,22,0.0 +17125,41,9.65,44,0.0 +17125,63,43.9,31,0.0 +17125,36,19,32,0.0 +17125,3,10,20,0.0 +17125,1,18,39,0.0 +17125,13,6,13,0.0 +17125,64,33.25,39,0.0 +17125,4,22,28,0.0 +17125,65,21.05,39,0.0 +17125,68,12.5,39,0.0 +17125,34,14,19,0.0 +17125,60,34,3,0.0 +17125,15,15.5,41,0.0 +17125,47,9.5,16,0.0 +17125,51,53,10,0.0 +17125,50,16.25,10,0.0 +17125,69,36,28,0.0 +17125,28,45.6,17,0.0 +17125,33,2.5,25,0.0 +17125,23,9,32,0.0 +17125,25,14,8,0.0 +17125,52,7,48,0.0 +17125,76,18,10,0.0 +17125,53,32.8,44,0.0 +17125,48,12.75,6,0.0 +17125,30,25.89,10,0.0 +17125,66,17,16,0.0 +17125,61,28.5,6,0.0 +17125,18,62.5,36,0.0 +17125,43,46,50,0.0 +17125,54,7.45,6,0.0 +17126,56,38,23,0.0 +17126,76,18,6,0.0 +17126,14,23.25,48,0.0 +17126,4,22,21,0.0 +17126,6,25,37,0.0 +17126,67,14,28,0.0 +17126,25,14,18,0.0 +17126,47,9.5,25,0.0 +17126,35,18,33,0.0 +17126,77,13,27,0.0 +17126,46,12,31,0.0 +17126,75,7.75,8,0.0 +17126,72,34.8,43,0.0 +17126,15,15.5,4,0.0 +17126,11,21,3,0.0 +17126,68,12.5,4,0.0 +17126,73,15,15,0.0 +17126,53,32.8,25,0.0 +17126,12,38,28,0.0 +17126,59,55,16,0.0 +17126,63,43.9,35,0.0 +17126,18,62.5,23,0.0 +17126,69,36,30,0.0 +17126,43,46,4,0.0 +17126,61,28.5,42,0.0 +17126,33,2.5,32,0.0 +17126,22,21,2,0.0 +17126,31,12.5,49,0.0 +17126,58,13.25,9,0.0 +17126,44,19.45,2,0.0 +17126,70,15,2,0.0 +17126,10,31,15,0.0 +17126,24,4.5,17,0.0 +17126,37,26,42,0.0 +17126,29,123.79,13,0.0 +17126,65,21.05,26,0.0 +17126,32,32,40,0.0 +17126,3,10,28,0.0 +17126,30,25.89,11,0.0 +17126,1,18,11,0.0 +17126,57,19.5,38,0.0 +17126,64,33.25,19,0.0 +17126,40,18.4,21,0.0 +17126,38,263.5,36,0.0 +17126,20,81,33,0.0 +17126,62,49.3,48,0.0 +17126,71,21.5,37,0.0 +17126,60,34,12,0.0 +17126,41,9.65,14,0.0 +17126,2,19,31,0.0 +17126,48,12.75,32,0.0 +17126,8,40,15,0.0 +17126,21,10,1,0.0 +17126,42,14,26,0.0 +17126,7,30,24,0.0 +17126,54,7.45,6,0.0 +17126,49,20,19,0.0 +17126,16,17.45,9,0.0 +17126,5,21.35,13,0.0 +17126,36,19,28,0.0 +17126,52,7,39,0.0 +17126,50,16.25,42,0.0 +17127,22,21,11,0.0 +17127,47,9.5,33,0.0 +17127,70,15,12,0.0 +17127,40,18.4,11,0.0 +17127,62,49.3,28,0.0 +17127,42,14,45,0.0 +17127,34,14,30,0.0 +17127,54,7.45,15,0.0 +17127,8,40,3,0.0 +17127,77,13,46,0.0 +17127,20,81,9,0.0 +17127,19,9.2,34,0.0 +17127,5,21.35,5,0.0 +17127,61,28.5,30,0.0 +17127,49,20,13,0.0 +17127,67,14,14,0.0 +17127,35,18,38,0.0 +17127,50,16.25,21,0.0 +17127,11,21,14,0.0 +17127,14,23.25,36,0.0 +17127,39,18,18,0.0 +17127,58,13.25,31,0.0 +17127,3,10,7,0.0 +17127,33,2.5,11,0.0 +17127,44,19.45,31,0.0 +17127,10,31,3,0.0 +17127,13,6,18,0.0 +17127,28,45.6,1,0.0 +17127,55,24,45,0.0 +17127,74,10,38,0.0 +17127,4,22,29,0.0 +17127,17,39,4,0.0 +17127,24,4.5,5,0.0 +17127,12,38,31,0.0 +17127,30,25.89,48,0.0 +17127,64,33.25,22,0.0 +17127,60,34,30,0.0 +17127,59,55,4,0.0 +17127,37,26,20,0.0 +17127,52,7,50,0.0 +17127,56,38,35,0.0 +17127,43,46,5,0.0 +17128,74,10,12,0.0 +17128,16,17.45,15,0.0 +17128,66,17,32,0.0 +17128,34,14,5,0.0 +17128,27,43.9,42,0.0 +17128,9,97,3,0.0 +17128,18,62.5,15,0.0 +17128,72,34.8,21,0.0 +17128,51,53,10,0.0 +17128,55,24,34,0.0 +17128,35,18,23,0.0 +17128,20,81,1,0.0 +17128,71,21.5,13,0.0 +17128,26,31.23,14,0.0 +17129,8,40,35,0.0 +17129,59,55,6,0.0 +17129,5,21.35,1,0.0 +17129,67,14,42,0.0 +17129,7,30,21,0.0 +17129,14,23.25,4,0.0 +17129,23,9,18,0.0 +17129,40,18.4,29,0.0 +17129,46,12,46,0.0 +17129,33,2.5,49,0.0 +17129,9,97,43,0.0 +17129,25,14,30,0.0 +17129,27,43.9,25,0.0 +17129,56,38,3,0.0 +17129,15,15.5,49,0.0 +17129,69,36,16,0.0 +17129,20,81,4,0.0 +17129,71,21.5,14,0.0 +17129,53,32.8,8,0.0 +17129,47,9.5,37,0.0 +17129,75,7.75,27,0.0 +17129,13,6,25,0.0 +17129,29,123.79,29,0.0 +17129,77,13,3,0.0 +17129,1,18,23,0.0 +17129,60,34,1,0.0 +17129,21,10,42,0.0 +17129,76,18,7,0.0 +17129,68,12.5,19,0.0 +17129,58,13.25,10,0.0 +17129,28,45.6,12,0.0 +17130,7,30,32,0.0 +17130,28,45.6,31,0.0 +17130,69,36,18,0.0 +17130,61,28.5,48,0.0 +17130,43,46,27,0.0 +17130,55,24,21,0.0 +17130,35,18,20,0.0 +17130,8,40,40,0.0 +17130,24,4.5,25,0.0 +17130,26,31.23,7,0.0 +17130,39,18,22,0.0 +17130,3,10,41,0.0 +17130,52,7,18,0.0 +17130,15,15.5,10,0.0 +17130,18,62.5,11,0.0 +17130,33,2.5,10,0.0 +17130,68,12.5,27,0.0 +17130,57,19.5,7,0.0 +17130,10,31,17,0.0 +17130,73,15,45,0.0 +17130,42,14,2,0.0 +17130,65,21.05,48,0.0 +17130,37,26,36,0.0 +17131,56,38,18,0.0 +17131,14,23.25,9,0.0 +17131,23,9,15,0.0 +17131,51,53,23,0.0 +17131,12,38,7,0.0 +17131,76,18,9,0.0 +17131,32,32,2,0.0 +17131,48,12.75,37,0.0 +17131,27,43.9,24,0.0 +17131,26,31.23,43,0.0 +17131,74,10,20,0.0 +17131,19,9.2,10,0.0 +17131,8,40,4,0.0 +17131,72,34.8,45,0.0 +17131,17,39,24,0.0 +17131,29,123.79,11,0.0 +17131,16,17.45,10,0.0 +17131,20,81,19,0.0 +17131,37,26,2,0.0 +17131,60,34,19,0.0 +17131,77,13,47,0.0 +17132,28,45.6,38,0.0 +17132,62,49.3,42,0.0 +17132,38,263.5,32,0.0 +17132,75,7.75,33,0.0 +17132,71,21.5,32,0.0 +17132,40,18.4,22,0.0 +17132,57,19.5,13,0.0 +17132,3,10,31,0.0 +17132,67,14,39,0.0 +17132,53,32.8,40,0.0 +17132,73,15,31,0.0 +17132,68,12.5,10,0.0 +17132,50,16.25,11,0.0 +17132,7,30,43,0.0 +17132,34,14,26,0.0 +17132,51,53,45,0.0 +17132,17,39,28,0.0 +17132,8,40,8,0.0 +17132,55,24,42,0.0 +17132,56,38,34,0.0 +17132,41,9.65,24,0.0 +17132,37,26,46,0.0 +17132,16,17.45,20,0.0 +17132,59,55,4,0.0 +17132,43,46,49,0.0 +17132,65,21.05,22,0.0 +17132,12,38,32,0.0 +17132,23,9,16,0.0 +17132,5,21.35,36,0.0 +17132,33,2.5,49,0.0 +17132,27,43.9,11,0.0 +17132,11,21,20,0.0 +17132,76,18,14,0.0 +17132,69,36,27,0.0 +17132,9,97,25,0.0 +17132,15,15.5,33,0.0 +17132,22,21,10,0.0 +17132,54,7.45,20,0.0 +17132,44,19.45,23,0.0 +17132,63,43.9,12,0.0 +17132,36,19,36,0.0 +17132,10,31,5,0.0 +17132,35,18,30,0.0 +17132,18,62.5,18,0.0 +17133,45,9.5,30,0.0 +17133,8,40,23,0.0 +17133,9,97,8,0.0 +17133,59,55,10,0.0 +17133,64,33.25,18,0.0 +17133,73,15,24,0.0 +17133,27,43.9,10,0.0 +17133,47,9.5,24,0.0 +17133,69,36,26,0.0 +17133,11,21,8,0.0 +17133,16,17.45,14,0.0 +17133,66,17,15,0.0 +17133,52,7,26,0.0 +17133,17,39,32,0.0 +17133,65,21.05,49,0.0 +17133,25,14,24,0.0 +17133,51,53,1,0.0 +17133,53,32.8,41,0.0 +17133,72,34.8,27,0.0 +17133,76,18,49,0.0 +17133,48,12.75,40,0.0 +17133,26,31.23,23,0.0 +17133,62,49.3,24,0.0 +17133,54,7.45,40,0.0 +17133,13,6,32,0.0 +17133,28,45.6,29,0.0 +17133,31,12.5,39,0.0 +17134,27,43.9,26,0.0 +17134,63,43.9,14,0.0 +17134,24,4.5,49,0.0 +17134,64,33.25,27,0.0 +17134,21,10,49,0.0 +17134,34,14,45,0.0 +17134,47,9.5,30,0.0 +17135,25,14,15,0.0 +17135,73,15,15,0.0 +17135,27,43.9,31,0.0 +17135,63,43.9,33,0.0 +17135,21,10,21,0.0 +17135,55,24,25,0.0 +17135,18,62.5,27,0.0 +17135,6,25,30,0.0 +17135,19,9.2,24,0.0 +17135,52,7,29,0.0 +17135,8,40,40,0.0 +17135,57,19.5,9,0.0 +17135,39,18,3,0.0 +17135,61,28.5,36,0.0 +17135,48,12.75,13,0.0 +17135,7,30,12,0.0 +17135,67,14,14,0.0 +17135,51,53,32,0.0 +17135,11,21,11,0.0 +17135,45,9.5,49,0.0 +17135,75,7.75,47,0.0 +17135,9,97,32,0.0 +17136,61,28.5,27,0.0 +17136,28,45.6,20,0.0 +17136,31,12.5,16,0.0 +17136,63,43.9,24,0.0 +17136,10,31,47,0.0 +17136,52,7,30,0.0 +17136,73,15,10,0.0 +17136,1,18,5,0.0 +17136,46,12,16,0.0 +17136,66,17,20,0.0 +17136,5,21.35,25,0.0 +17136,4,22,31,0.0 +17136,2,19,2,0.0 +17136,3,10,15,0.0 +17136,70,15,39,0.0 +17136,41,9.65,15,0.0 +17136,43,46,16,0.0 +17136,34,14,43,0.0 +17136,21,10,39,0.0 +17136,68,12.5,42,0.0 +17136,44,19.45,39,0.0 +17136,32,32,13,0.0 +17136,36,19,47,0.0 +17136,49,20,15,0.0 +17136,45,9.5,39,0.0 +17136,33,2.5,21,0.0 +17136,19,9.2,37,0.0 +17136,26,31.23,12,0.0 +17136,27,43.9,25,0.0 +17136,37,26,18,0.0 +17136,16,17.45,27,0.0 +17136,40,18.4,10,0.0 +17136,69,36,2,0.0 +17136,8,40,46,0.0 +17136,30,25.89,4,0.0 +17136,51,53,5,0.0 +17136,71,21.5,49,0.0 +17136,14,23.25,3,0.0 +17136,77,13,8,0.0 +17136,60,34,49,0.0 +17136,7,30,22,0.0 +17136,12,38,50,0.0 +17136,53,32.8,44,0.0 +17136,39,18,37,0.0 +17136,17,39,1,0.0 +17136,59,55,20,0.0 +17136,75,7.75,8,0.0 +17136,6,25,25,0.0 +17136,22,21,16,0.0 +17136,67,14,34,0.0 +17136,62,49.3,8,0.0 +17136,72,34.8,26,0.0 +17136,65,21.05,4,0.0 +17136,23,9,14,0.0 +17136,50,16.25,47,0.0 +17136,76,18,27,0.0 +17136,55,24,36,0.0 +17136,13,6,17,0.0 +17136,29,123.79,45,0.0 +17136,74,10,30,0.0 +17136,47,9.5,19,0.0 +17136,57,19.5,15,0.0 +17136,35,18,34,0.0 +17136,15,15.5,33,0.0 +17136,64,33.25,16,0.0 +17136,24,4.5,25,0.0 +17136,48,12.75,33,0.0 +17136,18,62.5,29,0.0 +17136,42,14,27,0.0 +17136,9,97,6,0.0 +17136,58,13.25,20,0.0 +17136,38,263.5,15,0.0 +17136,25,14,18,0.0 +17136,11,21,38,0.0 +17136,54,7.45,5,0.0 +17136,20,81,34,0.0 +17137,52,7,41,0.0 +17137,56,38,27,0.0 +17137,74,10,38,0.0 +17137,63,43.9,8,0.0 +17137,7,30,46,0.0 +17137,67,14,33,0.0 +17137,5,21.35,24,0.0 +17137,35,18,18,0.0 +17137,76,18,4,0.0 +17137,2,19,23,0.0 +17137,44,19.45,37,0.0 +17137,47,9.5,2,0.0 +17137,15,15.5,37,0.0 +17137,33,2.5,2,0.0 +17137,4,22,38,0.0 +17137,31,12.5,16,0.0 +17137,38,263.5,41,0.0 +17137,57,19.5,33,0.0 +17137,14,23.25,48,0.0 +17137,43,46,39,0.0 +17137,24,4.5,26,0.0 +17137,54,7.45,49,0.0 +17137,51,53,26,0.0 +17137,3,10,41,0.0 +17137,41,9.65,43,0.0 +17137,49,20,42,0.0 +17137,28,45.6,28,0.0 +17137,39,18,19,0.0 +17137,10,31,30,0.0 +17137,70,15,31,0.0 +17137,77,13,44,0.0 +17137,73,15,27,0.0 +17137,32,32,19,0.0 +17137,29,123.79,2,0.0 +17137,75,7.75,19,0.0 +17137,19,9.2,22,0.0 +17137,58,13.25,36,0.0 +17137,34,14,23,0.0 +17137,62,49.3,10,0.0 +17137,23,9,33,0.0 +17137,68,12.5,35,0.0 +17137,50,16.25,18,0.0 +17137,64,33.25,3,0.0 +17137,21,10,45,0.0 +17137,9,97,37,0.0 +17137,8,40,40,0.0 +17137,26,31.23,35,0.0 +17137,72,34.8,50,0.0 +17137,37,26,45,0.0 +17137,30,25.89,7,0.0 +17137,71,21.5,26,0.0 +17137,27,43.9,5,0.0 +17137,6,25,47,0.0 +17137,65,21.05,37,0.0 +17137,45,9.5,11,0.0 +17138,5,21.35,44,0.0 +17138,14,23.25,37,0.0 +17138,74,10,2,0.0 +17138,8,40,45,0.0 +17138,15,15.5,25,0.0 +17138,39,18,3,0.0 +17138,35,18,2,0.0 +17138,46,12,22,0.0 +17138,28,45.6,39,0.0 +17138,27,43.9,4,0.0 +17138,63,43.9,45,0.0 +17138,48,12.75,30,0.0 +17138,58,13.25,43,0.0 +17138,24,4.5,23,0.0 +17138,29,123.79,21,0.0 +17138,43,46,18,0.0 +17138,36,19,8,0.0 +17138,3,10,14,0.0 +17138,26,31.23,9,0.0 +17138,56,38,21,0.0 +17138,73,15,50,0.0 +17138,34,14,23,0.0 +17138,11,21,49,0.0 +17139,25,14,24,0.0 +17139,48,12.75,1,0.0 +17139,74,10,3,0.0 +17139,72,34.8,34,0.0 +17139,42,14,24,0.0 +17139,6,25,4,0.0 +17139,22,21,50,0.0 +17139,12,38,22,0.0 +17139,32,32,7,0.0 +17139,4,22,2,0.0 +17139,69,36,45,0.0 +17139,18,62.5,20,0.0 +17139,65,21.05,12,0.0 +17139,50,16.25,7,0.0 +17139,49,20,19,0.0 +17139,15,15.5,24,0.0 +17139,70,15,2,0.0 +17139,31,12.5,45,0.0 +17139,16,17.45,17,0.0 +17139,3,10,18,0.0 +17139,68,12.5,42,0.0 +17139,37,26,21,0.0 +17139,14,23.25,32,0.0 +17139,43,46,37,0.0 +17139,40,18.4,37,0.0 +17139,66,17,46,0.0 +17140,70,15,35,0.0 +17140,4,22,9,0.0 +17140,10,31,12,0.0 +17140,28,45.6,1,0.0 +17140,54,7.45,23,0.0 +17140,77,13,13,0.0 +17140,58,13.25,13,0.0 +17140,6,25,39,0.0 +17140,57,19.5,14,0.0 +17140,30,25.89,3,0.0 +17140,24,4.5,11,0.0 +17140,61,28.5,42,0.0 +17140,27,43.9,44,0.0 +17140,16,17.45,1,0.0 +17140,51,53,42,0.0 +17140,29,123.79,30,0.0 +17140,31,12.5,32,0.0 +17140,65,21.05,42,0.0 +17140,50,16.25,15,0.0 +17140,48,12.75,18,0.0 +17140,74,10,4,0.0 +17140,75,7.75,3,0.0 +17140,69,36,48,0.0 +17140,12,38,3,0.0 +17140,36,19,7,0.0 +17140,59,55,3,0.0 +17140,72,34.8,14,0.0 +17140,49,20,14,0.0 +17140,56,38,17,0.0 +17140,5,21.35,23,0.0 +17140,3,10,11,0.0 +17140,43,46,11,0.0 +17140,7,30,25,0.0 +17140,21,10,33,0.0 +17140,64,33.25,47,0.0 +17140,17,39,48,0.0 +17140,38,263.5,24,0.0 +17140,62,49.3,15,0.0 +17140,32,32,3,0.0 +17140,71,21.5,16,0.0 +17140,20,81,11,0.0 +17140,73,15,1,0.0 +17140,46,12,16,0.0 +17140,44,19.45,50,0.0 +17140,23,9,46,0.0 +17140,2,19,17,0.0 +17140,9,97,23,0.0 +17140,14,23.25,44,0.0 +17140,8,40,47,0.0 +17140,68,12.5,48,0.0 +17140,41,9.65,46,0.0 +17140,35,18,4,0.0 +17140,26,31.23,45,0.0 +17140,25,14,27,0.0 +17140,76,18,23,0.0 +17140,15,15.5,35,0.0 +17140,22,21,6,0.0 +17140,66,17,14,0.0 +17140,47,9.5,41,0.0 +17140,67,14,37,0.0 +17140,52,7,14,0.0 +17140,33,2.5,36,0.0 +17140,11,21,37,0.0 +17141,2,19,33,0.0 +17141,70,15,49,0.0 +17141,23,9,4,0.0 +17141,74,10,3,0.0 +17141,37,26,36,0.0 +17141,33,2.5,6,0.0 +17141,76,18,17,0.0 +17141,8,40,7,0.0 +17141,24,4.5,35,0.0 +17141,31,12.5,44,0.0 +17141,57,19.5,20,0.0 +17141,19,9.2,11,0.0 +17141,71,21.5,11,0.0 +17141,9,97,6,0.0 +17141,43,46,20,0.0 +17141,41,9.65,1,0.0 +17141,63,43.9,22,0.0 +17141,32,32,3,0.0 +17141,28,45.6,16,0.0 +17141,69,36,46,0.0 +17141,58,13.25,20,0.0 +17141,3,10,12,0.0 +17141,15,15.5,39,0.0 +17141,27,43.9,3,0.0 +17141,51,53,26,0.0 +17141,64,33.25,13,0.0 +17141,36,19,26,0.0 +17141,45,9.5,34,0.0 +17141,4,22,39,0.0 +17141,1,18,18,0.0 +17141,52,7,37,0.0 +17141,22,21,7,0.0 +17141,11,21,18,0.0 +17141,12,38,1,0.0 +17141,13,6,21,0.0 +17141,48,12.75,45,0.0 +17141,53,32.8,43,0.0 +17142,4,22,41,0.0 +17142,2,19,35,0.0 +17142,5,21.35,40,0.0 +17142,44,19.45,28,0.0 +17142,18,62.5,27,0.0 +17142,39,18,25,0.0 +17143,40,18.4,47,0.0 +17143,59,55,26,0.0 +17143,9,97,23,0.0 +17143,74,10,11,0.0 +17143,65,21.05,23,0.0 +17143,36,19,38,0.0 +17143,22,21,32,0.0 +17143,1,18,24,0.0 +17143,44,19.45,14,0.0 +17143,39,18,7,0.0 +17143,58,13.25,2,0.0 +17143,14,23.25,48,0.0 +17143,62,49.3,15,0.0 +17143,52,7,29,0.0 +17143,72,34.8,25,0.0 +17143,30,25.89,23,0.0 +17143,54,7.45,43,0.0 +17143,68,12.5,46,0.0 +17143,4,22,42,0.0 +17143,73,15,2,0.0 +17143,76,18,39,0.0 +17143,47,9.5,11,0.0 +17143,20,81,40,0.0 +17143,45,9.5,31,0.0 +17143,3,10,21,0.0 +17143,63,43.9,47,0.0 +17143,38,263.5,18,0.0 +17143,17,39,6,0.0 +17143,32,32,12,0.0 +17143,71,21.5,2,0.0 +17143,37,26,23,0.0 +17143,60,34,24,0.0 +17143,16,17.45,38,0.0 +17143,10,31,14,0.0 +17143,66,17,39,0.0 +17143,2,19,37,0.0 +17143,55,24,5,0.0 +17143,75,7.75,19,0.0 +17143,33,2.5,19,0.0 +17143,25,14,19,0.0 +17143,29,123.79,14,0.0 +17143,18,62.5,24,0.0 +17143,51,53,28,0.0 +17143,61,28.5,25,0.0 +17143,26,31.23,10,0.0 +17143,69,36,10,0.0 +17143,42,14,8,0.0 +17143,48,12.75,18,0.0 +17143,12,38,24,0.0 +17144,57,19.5,18,0.0 +17144,60,34,8,0.0 +17144,3,10,3,0.0 +17144,12,38,45,0.0 +17144,6,25,2,0.0 +17144,4,22,37,0.0 +17144,36,19,10,0.0 +17144,30,25.89,3,0.0 +17144,65,21.05,5,0.0 +17144,19,9.2,34,0.0 +17144,35,18,31,0.0 +17144,2,19,45,0.0 +17144,18,62.5,6,0.0 +17144,73,15,2,0.0 +17144,49,20,5,0.0 +17144,75,7.75,1,0.0 +17144,8,40,47,0.0 +17144,72,34.8,21,0.0 +17144,16,17.45,39,0.0 +17144,63,43.9,18,0.0 +17144,68,12.5,41,0.0 +17144,40,18.4,37,0.0 +17144,71,21.5,16,0.0 +17144,55,24,11,0.0 +17144,14,23.25,15,0.0 +17144,28,45.6,24,0.0 +17144,21,10,13,0.0 +17144,77,13,39,0.0 +17144,47,9.5,38,0.0 +17144,1,18,32,0.0 +17144,23,9,18,0.0 +17144,62,49.3,46,0.0 +17144,15,15.5,26,0.0 +17144,34,14,15,0.0 +17144,7,30,44,0.0 +17144,25,14,47,0.0 +17144,41,9.65,40,0.0 +17144,52,7,30,0.0 +17144,64,33.25,10,0.0 +17144,24,4.5,12,0.0 +17145,31,12.5,48,0.0 +17145,24,4.5,28,0.0 +17145,23,9,42,0.0 +17145,22,21,23,0.0 +17145,45,9.5,1,0.0 +17145,37,26,37,0.0 +17145,38,263.5,10,0.0 +17145,53,32.8,3,0.0 +17145,77,13,6,0.0 +17145,64,33.25,17,0.0 +17145,26,31.23,38,0.0 +17145,10,31,1,0.0 +17145,71,21.5,23,0.0 +17145,52,7,18,0.0 +17145,61,28.5,18,0.0 +17145,3,10,41,0.0 +17145,6,25,35,0.0 +17145,59,55,33,0.0 +17145,74,10,29,0.0 +17145,72,34.8,37,0.0 +17145,2,19,44,0.0 +17145,62,49.3,2,0.0 +17145,73,15,12,0.0 +17145,7,30,47,0.0 +17145,65,21.05,46,0.0 +17145,44,19.45,27,0.0 +17145,48,12.75,14,0.0 +17145,18,62.5,3,0.0 +17145,5,21.35,19,0.0 +17145,35,18,5,0.0 +17145,17,39,10,0.0 +17145,42,14,30,0.0 +17145,15,15.5,21,0.0 +17145,68,12.5,29,0.0 +17145,70,15,50,0.0 +17145,67,14,46,0.0 +17145,75,7.75,8,0.0 +17145,63,43.9,29,0.0 +17145,43,46,46,0.0 +17145,33,2.5,1,0.0 +17145,57,19.5,2,0.0 +17145,19,9.2,30,0.0 +17145,60,34,25,0.0 +17145,8,40,50,0.0 +17145,55,24,3,0.0 +17145,69,36,23,0.0 +17145,12,38,9,0.0 +17145,58,13.25,44,0.0 +17145,4,22,36,0.0 +17145,40,18.4,33,0.0 +17145,27,43.9,12,0.0 +17145,46,12,43,0.0 +17145,34,14,26,0.0 +17146,57,19.5,9,0.0 +17146,3,10,27,0.0 +17146,40,18.4,29,0.0 +17147,21,10,5,0.0 +17147,52,7,14,0.0 +17147,44,19.45,13,0.0 +17147,51,53,37,0.0 +17147,56,38,4,0.0 +17147,36,19,26,0.0 +17147,64,33.25,19,0.0 +17147,2,19,37,0.0 +17147,25,14,24,0.0 +17147,62,49.3,12,0.0 +17147,45,9.5,22,0.0 +17147,30,25.89,41,0.0 +17147,3,10,38,0.0 +17147,29,123.79,26,0.0 +17147,37,26,23,0.0 +17147,53,32.8,15,0.0 +17147,58,13.25,27,0.0 +17147,48,12.75,28,0.0 +17147,61,28.5,36,0.0 +17147,11,21,1,0.0 +17147,38,263.5,20,0.0 +17147,74,10,6,0.0 +17147,31,12.5,21,0.0 +17147,67,14,7,0.0 +17147,14,23.25,28,0.0 +17147,24,4.5,34,0.0 +17147,77,13,49,0.0 +17147,70,15,23,0.0 +17148,12,38,31,0.0 +17148,23,9,39,0.0 +17148,59,55,11,0.0 +17148,5,21.35,49,0.0 +17148,7,30,24,0.0 +17148,20,81,36,0.0 +17148,45,9.5,7,0.0 +17148,9,97,27,0.0 +17148,19,9.2,6,0.0 +17148,54,7.45,35,0.0 +17148,69,36,12,0.0 +17148,53,32.8,11,0.0 +17148,55,24,40,0.0 +17148,17,39,47,0.0 +17148,21,10,30,0.0 +17148,32,32,14,0.0 +17148,2,19,19,0.0 +17148,52,7,32,0.0 +17148,13,6,44,0.0 +17148,14,23.25,29,0.0 +17148,4,22,22,0.0 +17148,51,53,22,0.0 +17148,34,14,10,0.0 +17148,74,10,31,0.0 +17148,46,12,15,0.0 +17148,77,13,37,0.0 +17148,48,12.75,29,0.0 +17148,57,19.5,36,0.0 +17148,35,18,8,0.0 +17148,40,18.4,22,0.0 +17148,63,43.9,20,0.0 +17148,38,263.5,19,0.0 +17148,37,26,37,0.0 +17148,25,14,7,0.0 +17148,6,25,10,0.0 +17148,15,15.5,50,0.0 +17148,24,4.5,11,0.0 +17148,73,15,31,0.0 +17148,60,34,10,0.0 +17148,22,21,11,0.0 +17148,58,13.25,48,0.0 +17148,39,18,37,0.0 +17148,28,45.6,41,0.0 +17148,76,18,28,0.0 +17148,49,20,46,0.0 +17148,56,38,37,0.0 +17148,27,43.9,18,0.0 +17148,41,9.65,27,0.0 +17148,16,17.45,27,0.0 +17148,47,9.5,20,0.0 +17148,31,12.5,11,0.0 +17148,71,21.5,3,0.0 +17148,29,123.79,21,0.0 +17148,61,28.5,29,0.0 +17148,8,40,10,0.0 +17148,43,46,3,0.0 +17148,26,31.23,49,0.0 +17148,62,49.3,4,0.0 +17148,11,21,19,0.0 +17148,44,19.45,23,0.0 +17148,42,14,22,0.0 +17148,66,17,31,0.0 +17148,18,62.5,44,0.0 +17148,10,31,15,0.0 +17148,3,10,38,0.0 +17148,36,19,41,0.0 +17148,33,2.5,22,0.0 +17148,65,21.05,19,0.0 +17148,1,18,38,0.0 +17148,68,12.5,3,0.0 +17148,75,7.75,41,0.0 +17148,72,34.8,3,0.0 +17149,72,34.8,47,0.0 +17149,59,55,27,0.0 +17149,10,31,50,0.0 +17149,8,40,32,0.0 +17149,9,97,32,0.0 +17149,34,14,9,0.0 +17149,51,53,7,0.0 +17149,54,7.45,21,0.0 +17149,63,43.9,30,0.0 +17149,31,12.5,21,0.0 +17149,46,12,30,0.0 +17149,49,20,12,0.0 +17149,39,18,17,0.0 +17149,43,46,2,0.0 +17149,44,19.45,17,0.0 +17149,16,17.45,15,0.0 +17149,55,24,16,0.0 +17149,23,9,10,0.0 +17149,64,33.25,30,0.0 +17149,42,14,17,0.0 +17149,4,22,31,0.0 +17149,73,15,27,0.0 +17149,1,18,50,0.0 +17149,25,14,11,0.0 +17149,15,15.5,7,0.0 +17149,33,2.5,7,0.0 +17149,27,43.9,26,0.0 +17149,70,15,39,0.0 +17149,6,25,41,0.0 +17149,29,123.79,48,0.0 +17149,74,10,15,0.0 +17149,77,13,45,0.0 +17149,22,21,39,0.0 +17149,5,21.35,24,0.0 +17149,48,12.75,17,0.0 +17149,47,9.5,20,0.0 +17150,36,19,28,0.0 +17150,35,18,2,0.0 +17150,65,21.05,20,0.0 +17150,38,263.5,25,0.0 +17150,30,25.89,44,0.0 +17150,66,17,22,0.0 +17150,59,55,27,0.0 +17150,31,12.5,12,0.0 +17150,55,24,19,0.0 +17150,71,21.5,50,0.0 +17150,76,18,35,0.0 +17150,6,25,46,0.0 +17150,21,10,26,0.0 +17150,63,43.9,31,0.0 +17150,51,53,14,0.0 +17150,32,32,39,0.0 +17150,61,28.5,22,0.0 +17150,10,31,6,0.0 +17150,13,6,38,0.0 +17150,7,30,7,0.0 +17150,5,21.35,15,0.0 +17150,46,12,29,0.0 +17150,60,34,45,0.0 +17150,4,22,25,0.0 +17150,17,39,43,0.0 +17150,2,19,17,0.0 +17150,3,10,3,0.0 +17150,24,4.5,48,0.0 +17150,28,45.6,50,0.0 +17150,77,13,16,0.0 +17150,69,36,8,0.0 +17150,12,38,12,0.0 +17150,29,123.79,27,0.0 +17150,33,2.5,17,0.0 +17150,74,10,30,0.0 +17150,58,13.25,36,0.0 +17150,45,9.5,17,0.0 +17150,18,62.5,23,0.0 +17150,57,19.5,12,0.0 +17150,73,15,14,0.0 +17150,9,97,14,0.0 +17150,27,43.9,1,0.0 +17150,20,81,6,0.0 +17150,52,7,38,0.0 +17150,43,46,37,0.0 +17150,53,32.8,22,0.0 +17150,15,15.5,38,0.0 +17150,50,16.25,44,0.0 +17150,48,12.75,33,0.0 +17150,25,14,27,0.0 +17150,23,9,3,0.0 +17150,72,34.8,13,0.0 +17150,44,19.45,6,0.0 +17150,75,7.75,18,0.0 +17150,56,38,47,0.0 +17150,64,33.25,40,0.0 +17150,22,21,26,0.0 +17150,41,9.65,11,0.0 +17150,42,14,49,0.0 +17150,62,49.3,44,0.0 +17150,68,12.5,29,0.0 +17150,39,18,40,0.0 +17150,8,40,24,0.0 +17150,14,23.25,38,0.0 +17150,70,15,11,0.0 +17150,26,31.23,23,0.0 +17150,1,18,47,0.0 +17150,47,9.5,26,0.0 +17150,54,7.45,44,0.0 +17150,49,20,2,0.0 +17150,34,14,1,0.0 +17150,37,26,34,0.0 +17150,19,9.2,39,0.0 +17150,40,18.4,50,0.0 +17150,16,17.45,35,0.0 +17150,11,21,30,0.0 +17151,56,38,19,0.0 +17151,74,10,8,0.0 +17151,14,23.25,21,0.0 +17151,47,9.5,30,0.0 +17151,31,12.5,9,0.0 +17151,63,43.9,14,0.0 +17151,32,32,40,0.0 +17151,33,2.5,27,0.0 +17151,3,10,22,0.0 +17151,64,33.25,33,0.0 +17151,10,31,48,0.0 +17151,35,18,36,0.0 +17151,7,30,28,0.0 +17151,73,15,46,0.0 +17151,65,21.05,42,0.0 +17151,54,7.45,7,0.0 +17151,1,18,8,0.0 +17151,36,19,39,0.0 +17151,41,9.65,13,0.0 +17151,21,10,8,0.0 +17151,27,43.9,1,0.0 +17151,51,53,3,0.0 +17151,22,21,3,0.0 +17151,44,19.45,36,0.0 +17151,38,263.5,40,0.0 +17151,12,38,13,0.0 +17151,4,22,39,0.0 +17151,23,9,26,0.0 +17151,55,24,28,0.0 +17151,40,18.4,27,0.0 +17151,25,14,33,0.0 +17151,68,12.5,5,0.0 +17151,71,21.5,3,0.0 +17151,37,26,36,0.0 +17151,46,12,7,0.0 +17151,52,7,42,0.0 +17151,17,39,12,0.0 +17151,30,25.89,35,0.0 +17151,60,34,40,0.0 +17151,67,14,44,0.0 +17151,42,14,50,0.0 +17151,62,49.3,25,0.0 +17151,29,123.79,32,0.0 +17151,9,97,22,0.0 +17151,19,9.2,7,0.0 +17151,66,17,41,0.0 +17151,5,21.35,12,0.0 +17151,34,14,39,0.0 +17151,28,45.6,6,0.0 +17151,75,7.75,4,0.0 +17151,11,21,23,0.0 +17151,58,13.25,28,0.0 +17151,20,81,4,0.0 +17151,59,55,14,0.0 +17151,72,34.8,20,0.0 +17151,50,16.25,37,0.0 +17151,43,46,3,0.0 +17151,18,62.5,44,0.0 +17152,31,12.5,19,0.0 +17152,13,6,31,0.0 +17152,7,30,24,0.0 +17152,48,12.75,16,0.0 +17152,20,81,48,0.0 +17152,77,13,21,0.0 +17152,33,2.5,32,0.0 +17152,70,15,30,0.0 +17152,55,24,44,0.0 +17152,44,19.45,43,0.0 +17152,50,16.25,36,0.0 +17152,68,12.5,45,0.0 +17152,74,10,42,0.0 +17152,25,14,13,0.0 +17152,27,43.9,30,0.0 +17152,8,40,22,0.0 +17152,63,43.9,7,0.0 +17152,41,9.65,5,0.0 +17152,21,10,1,0.0 +17152,62,49.3,46,0.0 +17152,51,53,15,0.0 +17152,12,38,7,0.0 +17152,49,20,32,0.0 +17152,35,18,15,0.0 +17152,17,39,9,0.0 +17152,57,19.5,36,0.0 +17152,69,36,24,0.0 +17152,61,28.5,4,0.0 +17152,14,23.25,46,0.0 +17152,53,32.8,35,0.0 +17152,76,18,9,0.0 +17152,9,97,35,0.0 +17152,32,32,15,0.0 +17152,23,9,22,0.0 +17152,38,263.5,49,0.0 +17152,26,31.23,28,0.0 +17152,30,25.89,18,0.0 +17152,10,31,22,0.0 +17152,24,4.5,2,0.0 +17152,66,17,30,0.0 +17152,37,26,18,0.0 +17152,43,46,5,0.0 +17152,18,62.5,8,0.0 +17152,59,55,29,0.0 +17152,11,21,35,0.0 +17152,3,10,31,0.0 +17152,47,9.5,25,0.0 +17152,71,21.5,24,0.0 +17152,64,33.25,14,0.0 +17152,16,17.45,6,0.0 +17152,42,14,45,0.0 +17152,40,18.4,40,0.0 +17152,28,45.6,40,0.0 +17152,2,19,17,0.0 +17152,56,38,11,0.0 +17152,46,12,43,0.0 +17152,5,21.35,16,0.0 +17152,15,15.5,30,0.0 +17152,65,21.05,10,0.0 +17152,52,7,24,0.0 +17152,19,9.2,11,0.0 +17152,73,15,22,0.0 +17152,36,19,5,0.0 +17152,39,18,32,0.0 +17152,75,7.75,1,0.0 +17152,54,7.45,41,0.0 +17152,22,21,4,0.0 +17152,58,13.25,26,0.0 +17152,29,123.79,45,0.0 +17152,45,9.5,5,0.0 +17152,4,22,37,0.0 +17152,67,14,36,0.0 +17152,60,34,34,0.0 +17152,1,18,7,0.0 +17153,27,43.9,46,0.0 +17153,55,24,12,0.0 +17153,19,9.2,23,0.0 +17153,51,53,29,0.0 +17153,75,7.75,1,0.0 +17153,24,4.5,43,0.0 +17153,17,39,8,0.0 +17153,18,62.5,20,0.0 +17153,74,10,49,0.0 +17153,41,9.65,25,0.0 +17153,69,36,19,0.0 +17153,34,14,30,0.0 +17153,38,263.5,14,0.0 +17153,31,12.5,3,0.0 +17153,54,7.45,39,0.0 +17153,1,18,36,0.0 +17153,47,9.5,31,0.0 +17153,52,7,31,0.0 +17153,5,21.35,47,0.0 +17153,7,30,22,0.0 +17153,44,19.45,28,0.0 +17153,4,22,38,0.0 +17153,35,18,6,0.0 +17153,53,32.8,50,0.0 +17153,39,18,31,0.0 +17153,16,17.45,12,0.0 +17153,73,15,34,0.0 +17153,2,19,19,0.0 +17153,21,10,33,0.0 +17153,36,19,46,0.0 +17153,3,10,1,0.0 +17153,12,38,12,0.0 +17153,48,12.75,46,0.0 +17153,57,19.5,33,0.0 +17153,49,20,42,0.0 +17153,25,14,26,0.0 +17153,62,49.3,25,0.0 +17153,6,25,2,0.0 +17153,30,25.89,27,0.0 +17153,43,46,40,0.0 +17153,77,13,43,0.0 +17153,15,15.5,14,0.0 +17153,42,14,9,0.0 +17153,76,18,40,0.0 +17153,14,23.25,8,0.0 +17153,11,21,42,0.0 +17153,61,28.5,43,0.0 +17153,40,18.4,33,0.0 +17153,64,33.25,9,0.0 +17153,66,17,39,0.0 +17153,13,6,30,0.0 +17153,32,32,30,0.0 +17153,23,9,24,0.0 +17153,33,2.5,12,0.0 +17153,59,55,2,0.0 +17153,56,38,2,0.0 +17154,20,81,44,0.0 +17154,30,25.89,44,0.0 +17155,32,32,3,0.0 +17155,57,19.5,17,0.0 +17155,12,38,37,0.0 +17155,6,25,32,0.0 +17155,54,7.45,10,0.0 +17155,46,12,45,0.0 +17155,14,23.25,38,0.0 +17155,52,7,23,0.0 +17155,68,12.5,37,0.0 +17155,4,22,44,0.0 +17155,26,31.23,6,0.0 +17155,55,24,5,0.0 +17155,31,12.5,19,0.0 +17155,9,97,36,0.0 +17155,38,263.5,36,0.0 +17155,44,19.45,36,0.0 +17155,33,2.5,39,0.0 +17155,48,12.75,36,0.0 +17155,5,21.35,13,0.0 +17155,7,30,29,0.0 +17155,11,21,18,0.0 +17155,30,25.89,6,0.0 +17155,76,18,20,0.0 +17155,77,13,33,0.0 +17155,60,34,12,0.0 +17155,43,46,25,0.0 +17155,21,10,26,0.0 +17155,18,62.5,23,0.0 +17155,19,9.2,13,0.0 +17155,36,19,46,0.0 +17155,50,16.25,31,0.0 +17155,42,14,39,0.0 +17155,41,9.65,40,0.0 +17155,65,21.05,19,0.0 +17155,10,31,39,0.0 +17155,39,18,43,0.0 +17156,26,31.23,41,0.0 +17156,39,18,18,0.0 +17156,30,25.89,50,0.0 +17156,66,17,38,0.0 +17156,60,34,17,0.0 +17156,46,12,7,0.0 +17156,3,10,13,0.0 +17157,74,10,15,0.0 +17157,4,22,39,0.0 +17157,16,17.45,44,0.0 +17157,48,12.75,21,0.0 +17157,56,38,31,0.0 +17157,66,17,4,0.0 +17157,52,7,23,0.0 +17157,40,18.4,30,0.0 +17157,37,26,14,0.0 +17157,12,38,46,0.0 +17157,29,123.79,38,0.0 +17157,63,43.9,27,0.0 +17157,14,23.25,24,0.0 +17157,70,15,24,0.0 +17158,62,49.3,34,0.0 +17158,65,21.05,19,0.0 +17158,60,34,11,0.0 +17158,38,263.5,24,0.0 +17158,64,33.25,15,0.0 +17158,45,9.5,24,0.0 +17158,66,17,46,0.0 +17158,37,26,42,0.0 +17158,63,43.9,40,0.0 +17158,16,17.45,16,0.0 +17158,30,25.89,3,0.0 +17158,67,14,38,0.0 +17159,4,22,20,0.0 +17159,76,18,36,0.0 +17159,25,14,10,0.0 +17159,24,4.5,34,0.0 +17159,27,43.9,19,0.0 +17159,55,24,32,0.0 +17159,8,40,27,0.0 +17159,56,38,43,0.0 +17159,18,62.5,47,0.0 +17159,30,25.89,29,0.0 +17159,45,9.5,6,0.0 +17159,48,12.75,2,0.0 +17159,11,21,1,0.0 +17160,71,21.5,23,0.0 +17160,40,18.4,48,0.0 +17160,47,9.5,33,0.0 +17160,63,43.9,45,0.0 +17160,22,21,15,0.0 +17160,58,13.25,14,0.0 +17160,12,38,21,0.0 +17160,50,16.25,10,0.0 +17160,31,12.5,28,0.0 +17160,23,9,31,0.0 +17160,69,36,19,0.0 +17160,72,34.8,21,0.0 +17160,28,45.6,20,0.0 +17160,46,12,6,0.0 +17160,44,19.45,46,0.0 +17160,64,33.25,49,0.0 +17160,67,14,32,0.0 +17160,3,10,8,0.0 +17160,60,34,20,0.0 +17160,41,9.65,19,0.0 +17160,9,97,23,0.0 +17160,13,6,1,0.0 +17160,1,18,40,0.0 +17160,56,38,23,0.0 +17160,75,7.75,2,0.0 +17160,77,13,23,0.0 +17160,68,12.5,48,0.0 +17160,18,62.5,35,0.0 +17160,29,123.79,6,0.0 +17160,16,17.45,43,0.0 +17160,51,53,9,0.0 +17160,25,14,38,0.0 +17160,21,10,47,0.0 +17160,32,32,33,0.0 +17160,61,28.5,4,0.0 +17160,17,39,49,0.0 +17160,57,19.5,48,0.0 +17160,37,26,1,0.0 +17160,52,7,26,0.0 +17160,4,22,27,0.0 +17160,74,10,44,0.0 +17160,26,31.23,3,0.0 +17160,53,32.8,46,0.0 +17160,48,12.75,38,0.0 +17160,15,15.5,33,0.0 +17160,27,43.9,28,0.0 +17160,14,23.25,24,0.0 +17160,8,40,34,0.0 +17160,62,49.3,26,0.0 +17160,42,14,33,0.0 +17160,73,15,46,0.0 +17160,38,263.5,31,0.0 +17160,2,19,12,0.0 +17160,39,18,16,0.0 +17160,20,81,50,0.0 +17160,65,21.05,32,0.0 +17160,30,25.89,22,0.0 +17160,70,15,34,0.0 +17160,34,14,32,0.0 +17160,43,46,22,0.0 +17160,33,2.5,39,0.0 +17160,45,9.5,7,0.0 +17160,59,55,43,0.0 +17160,6,25,36,0.0 +17160,35,18,15,0.0 +17160,7,30,19,0.0 +17160,66,17,6,0.0 +17161,70,15,22,0.0 +17161,29,123.79,1,0.0 +17161,55,24,29,0.0 +17161,76,18,47,0.0 +17161,68,12.5,10,0.0 +17161,26,31.23,35,0.0 +17161,5,21.35,34,0.0 +17161,6,25,3,0.0 +17161,7,30,28,0.0 +17162,58,13.25,3,0.0 +17162,26,31.23,28,0.0 +17162,8,40,28,0.0 +17162,45,9.5,34,0.0 +17162,47,9.5,39,0.0 +17162,43,46,23,0.0 +17162,14,23.25,19,0.0 +17162,10,31,30,0.0 +17162,28,45.6,49,0.0 +17162,67,14,48,0.0 +17162,13,6,39,0.0 +17162,52,7,27,0.0 +17162,2,19,33,0.0 +17162,44,19.45,1,0.0 +17162,12,38,46,0.0 +17162,38,263.5,8,0.0 +17162,69,36,24,0.0 +17162,36,19,27,0.0 +17162,32,32,30,0.0 +17162,21,10,38,0.0 +17162,15,15.5,19,0.0 +17162,77,13,47,0.0 +17162,33,2.5,3,0.0 +17162,66,17,20,0.0 +17162,75,7.75,8,0.0 +17162,34,14,6,0.0 +17162,19,9.2,6,0.0 +17162,73,15,21,0.0 +17162,31,12.5,32,0.0 +17162,9,97,2,0.0 +17162,40,18.4,47,0.0 +17162,72,34.8,36,0.0 +17162,22,21,25,0.0 +17162,4,22,47,0.0 +17162,11,21,48,0.0 +17162,53,32.8,32,0.0 +17162,63,43.9,20,0.0 +17162,20,81,14,0.0 +17162,59,55,23,0.0 +17162,41,9.65,32,0.0 +17162,62,49.3,2,0.0 +17162,30,25.89,45,0.0 +17162,50,16.25,12,0.0 +17162,37,26,40,0.0 +17162,46,12,23,0.0 +17162,42,14,20,0.0 +17162,60,34,10,0.0 +17162,16,17.45,25,0.0 +17162,39,18,21,0.0 +17162,76,18,13,0.0 +17162,61,28.5,49,0.0 +17162,55,24,47,0.0 +17162,24,4.5,15,0.0 +17162,71,21.5,9,0.0 +17162,29,123.79,10,0.0 +17162,6,25,28,0.0 +17162,68,12.5,29,0.0 +17162,18,62.5,31,0.0 +17162,65,21.05,44,0.0 +17162,56,38,5,0.0 +17162,51,53,17,0.0 +17162,25,14,8,0.0 +17162,27,43.9,36,0.0 +17163,18,62.5,8,0.0 +17163,26,31.23,9,0.0 +17163,55,24,33,0.0 +17163,68,12.5,37,0.0 +17163,39,18,3,0.0 +17163,56,38,35,0.0 +17163,11,21,17,0.0 +17163,9,97,41,0.0 +17163,74,10,46,0.0 +17163,17,39,16,0.0 +17163,2,19,7,0.0 +17163,46,12,21,0.0 +17163,33,2.5,37,0.0 +17163,13,6,12,0.0 +17163,20,81,39,0.0 +17163,15,15.5,14,0.0 +17163,40,18.4,22,0.0 +17163,69,36,15,0.0 +17163,22,21,19,0.0 +17163,5,21.35,34,0.0 +17163,8,40,22,0.0 +17163,45,9.5,41,0.0 +17163,70,15,4,0.0 +17163,63,43.9,29,0.0 +17163,35,18,6,0.0 +17163,16,17.45,21,0.0 +17163,30,25.89,3,0.0 +17163,44,19.45,49,0.0 +17163,71,21.5,3,0.0 +17163,32,32,32,0.0 +17163,51,53,14,0.0 +17164,35,18,46,0.0 +17164,57,19.5,3,0.0 +17164,53,32.8,40,0.0 +17164,23,9,47,0.0 +17164,77,13,42,0.0 +17164,67,14,50,0.0 +17164,33,2.5,48,0.0 +17164,38,263.5,31,0.0 +17164,56,38,21,0.0 +17164,4,22,5,0.0 +17164,48,12.75,19,0.0 +17164,49,20,38,0.0 +17164,6,25,48,0.0 +17164,50,16.25,36,0.0 +17164,9,97,32,0.0 +17164,10,31,22,0.0 +17164,11,21,1,0.0 +17164,12,38,35,0.0 +17164,60,34,32,0.0 +17164,20,81,41,0.0 +17164,65,21.05,16,0.0 +17164,75,7.75,17,0.0 +17164,43,46,5,0.0 +17164,28,45.6,32,0.0 +17164,45,9.5,10,0.0 +17164,42,14,28,0.0 +17164,46,12,32,0.0 +17164,76,18,45,0.0 +17164,31,12.5,45,0.0 +17164,40,18.4,47,0.0 +17164,68,12.5,19,0.0 +17164,29,123.79,42,0.0 +17164,64,33.25,20,0.0 +17164,55,24,44,0.0 +17164,3,10,30,0.0 +17164,47,9.5,48,0.0 +17164,8,40,42,0.0 +17164,32,32,48,0.0 +17164,34,14,19,0.0 +17164,69,36,13,0.0 +17164,30,25.89,16,0.0 +17164,5,21.35,27,0.0 +17164,37,26,30,0.0 +17164,52,7,36,0.0 +17164,41,9.65,9,0.0 +17164,51,53,22,0.0 +17164,66,17,4,0.0 +17164,72,34.8,41,0.0 +17164,58,13.25,13,0.0 +17164,25,14,35,0.0 +17164,71,21.5,29,0.0 +17164,44,19.45,18,0.0 +17164,15,15.5,17,0.0 +17164,2,19,44,0.0 +17164,13,6,19,0.0 +17164,27,43.9,24,0.0 +17164,26,31.23,20,0.0 +17164,1,18,22,0.0 +17164,54,7.45,5,0.0 +17164,22,21,26,0.0 +17164,61,28.5,23,0.0 +17164,59,55,24,0.0 +17164,73,15,5,0.0 +17164,74,10,30,0.0 +17164,24,4.5,46,0.0 +17164,14,23.25,14,0.0 +17164,19,9.2,9,0.0 +17165,37,26,9,0.0 +17165,11,21,47,0.0 +17165,35,18,43,0.0 +17165,58,13.25,8,0.0 +17165,54,7.45,28,0.0 +17165,24,4.5,39,0.0 +17165,59,55,43,0.0 +17165,76,18,37,0.0 +17165,12,38,28,0.0 +17165,57,19.5,40,0.0 +17165,28,45.6,18,0.0 +17165,74,10,25,0.0 +17165,1,18,33,0.0 +17165,34,14,11,0.0 +17165,39,18,29,0.0 +17165,13,6,8,0.0 +17165,3,10,34,0.0 +17165,5,21.35,29,0.0 +17165,6,25,39,0.0 +17165,23,9,36,0.0 +17165,38,263.5,44,0.0 +17165,65,21.05,18,0.0 +17165,63,43.9,38,0.0 +17165,14,23.25,9,0.0 +17165,64,33.25,9,0.0 +17165,22,21,9,0.0 +17165,56,38,28,0.0 +17165,10,31,48,0.0 +17165,43,46,39,0.0 +17165,33,2.5,25,0.0 +17165,8,40,28,0.0 +17165,30,25.89,15,0.0 +17165,7,30,10,0.0 +17165,18,62.5,23,0.0 +17165,32,32,18,0.0 +17165,41,9.65,50,0.0 +17165,40,18.4,35,0.0 +17165,75,7.75,12,0.0 +17165,20,81,33,0.0 +17165,2,19,49,0.0 +17165,60,34,21,0.0 +17165,19,9.2,44,0.0 +17165,55,24,50,0.0 +17165,51,53,15,0.0 +17165,52,7,44,0.0 +17165,67,14,28,0.0 +17165,31,12.5,10,0.0 +17165,26,31.23,7,0.0 +17165,53,32.8,21,0.0 +17165,61,28.5,31,0.0 +17165,49,20,8,0.0 +17165,70,15,25,0.0 +17165,62,49.3,2,0.0 +17165,66,17,41,0.0 +17165,48,12.75,17,0.0 +17165,50,16.25,33,0.0 +17165,4,22,21,0.0 +17165,29,123.79,30,0.0 +17165,42,14,5,0.0 +17165,21,10,30,0.0 +17165,15,15.5,29,0.0 +17165,77,13,10,0.0 +17165,71,21.5,19,0.0 +17165,68,12.5,4,0.0 +17165,27,43.9,28,0.0 +17165,44,19.45,32,0.0 +17165,69,36,39,0.0 +17165,16,17.45,34,0.0 +17165,36,19,36,0.0 +17165,45,9.5,15,0.0 +17166,13,6,15,0.0 +17166,35,18,23,0.0 +17166,7,30,35,0.0 +17166,21,10,9,0.0 +17166,4,22,48,0.0 +17166,46,12,23,0.0 +17166,54,7.45,20,0.0 +17166,6,25,24,0.0 +17166,56,38,19,0.0 +17166,14,23.25,36,0.0 +17166,61,28.5,4,0.0 +17166,31,12.5,33,0.0 +17166,16,17.45,40,0.0 +17166,55,24,12,0.0 +17166,39,18,19,0.0 +17166,26,31.23,36,0.0 +17166,11,21,10,0.0 +17167,77,13,45,0.0 +17167,4,22,3,0.0 +17167,70,15,5,0.0 +17167,51,53,43,0.0 +17167,73,15,44,0.0 +17167,74,10,37,0.0 +17168,67,14,24,0.0 +17168,71,21.5,13,0.0 +17168,59,55,30,0.0 +17168,34,14,28,0.0 +17168,24,4.5,41,0.0 +17168,7,30,22,0.0 +17168,22,21,29,0.0 +17168,65,21.05,27,0.0 +17168,29,123.79,47,0.0 +17168,49,20,16,0.0 +17168,58,13.25,44,0.0 +17168,62,49.3,41,0.0 +17168,25,14,39,0.0 +17168,52,7,40,0.0 +17168,31,12.5,49,0.0 +17168,44,19.45,40,0.0 +17168,27,43.9,2,0.0 +17168,70,15,31,0.0 +17168,21,10,15,0.0 +17168,9,97,31,0.0 +17168,35,18,19,0.0 +17168,74,10,9,0.0 +17168,20,81,12,0.0 +17168,17,39,25,0.0 +17168,47,9.5,2,0.0 +17168,48,12.75,45,0.0 +17168,26,31.23,6,0.0 +17168,8,40,44,0.0 +17168,43,46,28,0.0 +17168,23,9,5,0.0 +17168,30,25.89,46,0.0 +17168,40,18.4,6,0.0 +17168,60,34,4,0.0 +17168,68,12.5,44,0.0 +17168,41,9.65,42,0.0 +17168,13,6,11,0.0 +17168,38,263.5,3,0.0 +17169,36,19,44,0.0 +17169,59,55,27,0.0 +17169,4,22,36,0.0 +17169,2,19,16,0.0 +17169,39,18,2,0.0 +17169,64,33.25,31,0.0 +17169,17,39,12,0.0 +17169,53,32.8,8,0.0 +17169,18,62.5,14,0.0 +17169,21,10,1,0.0 +17169,46,12,39,0.0 +17169,71,21.5,17,0.0 +17169,69,36,23,0.0 +17169,60,34,25,0.0 +17169,45,9.5,33,0.0 +17169,57,19.5,45,0.0 +17169,49,20,33,0.0 +17169,24,4.5,33,0.0 +17169,75,7.75,43,0.0 +17169,19,9.2,41,0.0 +17169,52,7,4,0.0 +17169,37,26,25,0.0 +17169,70,15,42,0.0 +17169,12,38,40,0.0 +17169,20,81,7,0.0 +17169,73,15,20,0.0 +17169,23,9,22,0.0 +17169,1,18,9,0.0 +17169,13,6,45,0.0 +17169,55,24,6,0.0 +17169,62,49.3,35,0.0 +17169,30,25.89,40,0.0 +17170,22,21,17,0.0 +17170,48,12.75,23,0.0 +17170,56,38,42,0.0 +17170,42,14,24,0.0 +17170,72,34.8,25,0.0 +17170,51,53,21,0.0 +17170,68,12.5,40,0.0 +17170,32,32,28,0.0 +17170,66,17,38,0.0 +17170,31,12.5,31,0.0 +17170,37,26,47,0.0 +17170,75,7.75,17,0.0 +17170,11,21,42,0.0 +17170,27,43.9,22,0.0 +17170,29,123.79,49,0.0 +17170,34,14,47,0.0 +17170,53,32.8,7,0.0 +17170,13,6,20,0.0 +17170,10,31,16,0.0 +17170,16,17.45,2,0.0 +17170,50,16.25,2,0.0 +17170,73,15,18,0.0 +17170,74,10,9,0.0 +17170,67,14,37,0.0 +17170,28,45.6,25,0.0 +17170,47,9.5,41,0.0 +17170,8,40,18,0.0 +17170,4,22,6,0.0 +17170,61,28.5,39,0.0 +17170,59,55,40,0.0 +17170,69,36,20,0.0 +17170,5,21.35,44,0.0 +17170,18,62.5,35,0.0 +17170,25,14,5,0.0 +17170,33,2.5,28,0.0 +17170,58,13.25,13,0.0 +17170,3,10,50,0.0 +17170,41,9.65,38,0.0 +17170,43,46,36,0.0 +17170,15,15.5,14,0.0 +17170,60,34,29,0.0 +17170,45,9.5,18,0.0 +17170,2,19,11,0.0 +17170,14,23.25,37,0.0 +17170,76,18,35,0.0 +17170,20,81,7,0.0 +17170,21,10,17,0.0 +17170,44,19.45,48,0.0 +17170,77,13,9,0.0 +17170,54,7.45,31,0.0 +17170,46,12,46,0.0 +17170,38,263.5,17,0.0 +17170,12,38,17,0.0 +17170,64,33.25,32,0.0 +17171,52,7,45,0.0 +17171,56,38,32,0.0 +17171,65,21.05,6,0.0 +17171,3,10,44,0.0 +17171,55,24,34,0.0 +17171,30,25.89,8,0.0 +17171,46,12,36,0.0 +17171,28,45.6,3,0.0 +17171,34,14,25,0.0 +17171,39,18,24,0.0 +17171,47,9.5,34,0.0 +17171,35,18,4,0.0 +17171,38,263.5,1,0.0 +17171,16,17.45,5,0.0 +17171,21,10,22,0.0 +17171,53,32.8,48,0.0 +17171,20,81,50,0.0 +17171,67,14,22,0.0 +17171,43,46,25,0.0 +17171,4,22,4,0.0 +17171,13,6,15,0.0 +17171,23,9,23,0.0 +17171,1,18,41,0.0 +17172,39,18,37,0.0 +17172,29,123.79,40,0.0 +17172,56,38,33,0.0 +17172,10,31,1,0.0 +17172,19,9.2,26,0.0 +17172,48,12.75,30,0.0 +17172,69,36,16,0.0 +17172,57,19.5,8,0.0 +17172,60,34,21,0.0 +17172,72,34.8,32,0.0 +17172,44,19.45,46,0.0 +17172,15,15.5,19,0.0 +17172,30,25.89,6,0.0 +17172,52,7,10,0.0 +17172,53,32.8,7,0.0 +17172,34,14,48,0.0 +17172,13,6,44,0.0 +17172,50,16.25,26,0.0 +17172,27,43.9,4,0.0 +17172,64,33.25,5,0.0 +17172,59,55,13,0.0 +17172,63,43.9,4,0.0 +17172,17,39,47,0.0 +17172,26,31.23,44,0.0 +17172,4,22,7,0.0 +17172,73,15,11,0.0 +17172,65,21.05,20,0.0 +17172,54,7.45,23,0.0 +17172,76,18,6,0.0 +17172,47,9.5,16,0.0 +17172,21,10,45,0.0 +17172,8,40,17,0.0 +17172,28,45.6,2,0.0 +17172,33,2.5,23,0.0 +17172,7,30,7,0.0 +17172,5,21.35,38,0.0 +17172,25,14,27,0.0 +17172,3,10,22,0.0 +17172,66,17,6,0.0 +17172,43,46,28,0.0 +17172,37,26,9,0.0 +17172,20,81,31,0.0 +17172,38,263.5,49,0.0 +17172,32,32,19,0.0 +17172,77,13,27,0.0 +17172,55,24,26,0.0 +17172,6,25,40,0.0 +17172,2,19,9,0.0 +17172,68,12.5,18,0.0 +17172,31,12.5,11,0.0 +17172,9,97,22,0.0 +17172,16,17.45,38,0.0 +17172,49,20,31,0.0 +17172,36,19,7,0.0 +17172,12,38,33,0.0 +17172,58,13.25,11,0.0 +17172,42,14,46,0.0 +17172,41,9.65,42,0.0 +17172,61,28.5,37,0.0 +17172,45,9.5,33,0.0 +17172,71,21.5,50,0.0 +17172,70,15,4,0.0 +17172,67,14,44,0.0 +17172,74,10,20,0.0 +17173,36,19,2,0.0 +17173,75,7.75,31,0.0 +17173,23,9,40,0.0 +17173,48,12.75,19,0.0 +17173,40,18.4,34,0.0 +17173,45,9.5,22,0.0 +17173,47,9.5,48,0.0 +17173,35,18,35,0.0 +17173,1,18,41,0.0 +17173,37,26,49,0.0 +17173,31,12.5,47,0.0 +17173,69,36,15,0.0 +17173,56,38,11,0.0 +17173,58,13.25,17,0.0 +17173,42,14,2,0.0 +17173,72,34.8,8,0.0 +17173,15,15.5,23,0.0 +17173,16,17.45,6,0.0 +17173,19,9.2,48,0.0 +17173,6,25,3,0.0 +17173,52,7,45,0.0 +17173,25,14,20,0.0 +17173,38,263.5,48,0.0 +17173,32,32,21,0.0 +17173,43,46,26,0.0 +17173,22,21,19,0.0 +17173,62,49.3,48,0.0 +17173,24,4.5,46,0.0 +17173,12,38,34,0.0 +17173,29,123.79,50,0.0 +17173,74,10,15,0.0 +17173,63,43.9,29,0.0 +17173,21,10,15,0.0 +17173,4,22,37,0.0 +17173,39,18,14,0.0 +17173,46,12,23,0.0 +17173,20,81,49,0.0 +17173,17,39,49,0.0 +17173,44,19.45,31,0.0 +17173,7,30,31,0.0 +17173,9,97,32,0.0 +17173,10,31,3,0.0 +17173,34,14,5,0.0 +17173,59,55,18,0.0 +17173,8,40,18,0.0 +17173,68,12.5,13,0.0 +17173,66,17,30,0.0 +17173,65,21.05,12,0.0 +17173,67,14,39,0.0 +17173,30,25.89,38,0.0 +17173,33,2.5,17,0.0 +17173,14,23.25,9,0.0 +17173,18,62.5,17,0.0 +17173,28,45.6,4,0.0 +17173,49,20,30,0.0 +17173,73,15,36,0.0 +17173,51,53,40,0.0 +17173,26,31.23,39,0.0 +17173,27,43.9,49,0.0 +17173,53,32.8,10,0.0 +17174,28,45.6,43,0.0 +17174,72,34.8,18,0.0 +17174,49,20,6,0.0 +17174,21,10,35,0.0 +17174,57,19.5,34,0.0 +17175,35,18,37,0.0 +17175,72,34.8,17,0.0 +17175,2,19,39,0.0 +17175,6,25,17,0.0 +17175,4,22,7,0.0 +17175,66,17,5,0.0 +17175,55,24,14,0.0 +17175,26,31.23,46,0.0 +17175,73,15,30,0.0 +17175,31,12.5,25,0.0 +17175,17,39,3,0.0 +17176,60,34,19,0.0 +17176,7,30,7,0.0 +17176,57,19.5,39,0.0 +17176,9,97,13,0.0 +17176,8,40,14,0.0 +17176,34,14,21,0.0 +17176,32,32,44,0.0 +17176,31,12.5,2,0.0 +17176,70,15,48,0.0 +17176,40,18.4,43,0.0 +17176,64,33.25,8,0.0 +17176,19,9.2,5,0.0 +17176,22,21,40,0.0 +17176,44,19.45,5,0.0 +17176,67,14,21,0.0 +17176,10,31,29,0.0 +17176,6,25,12,0.0 +17176,45,9.5,47,0.0 +17176,3,10,30,0.0 +17176,38,263.5,9,0.0 +17176,27,43.9,37,0.0 +17176,35,18,43,0.0 +17176,54,7.45,40,0.0 +17176,21,10,45,0.0 +17176,56,38,18,0.0 +17176,20,81,29,0.0 +17176,46,12,14,0.0 +17176,14,23.25,35,0.0 +17176,23,9,30,0.0 +17176,49,20,17,0.0 +17176,25,14,24,0.0 +17176,66,17,44,0.0 +17176,15,15.5,6,0.0 +17176,13,6,18,0.0 +17176,41,9.65,19,0.0 +17176,28,45.6,32,0.0 +17176,12,38,23,0.0 +17176,42,14,7,0.0 +17176,75,7.75,34,0.0 +17176,24,4.5,27,0.0 +17176,68,12.5,23,0.0 +17176,39,18,6,0.0 +17176,43,46,45,0.0 +17176,50,16.25,50,0.0 +17176,72,34.8,14,0.0 +17176,61,28.5,24,0.0 +17176,26,31.23,30,0.0 +17176,77,13,38,0.0 +17176,55,24,22,0.0 +17176,47,9.5,40,0.0 +17176,63,43.9,27,0.0 +17176,4,22,2,0.0 +17176,69,36,12,0.0 +17176,29,123.79,8,0.0 +17176,73,15,8,0.0 +17176,17,39,21,0.0 +17176,18,62.5,19,0.0 +17176,48,12.75,35,0.0 +17176,76,18,1,0.0 +17176,16,17.45,46,0.0 +17176,5,21.35,18,0.0 +17177,75,7.75,45,0.0 +17177,22,21,45,0.0 +17177,8,40,1,0.0 +17177,12,38,45,0.0 +17177,50,16.25,48,0.0 +17177,46,12,42,0.0 +17177,13,6,12,0.0 +17177,24,4.5,30,0.0 +17177,11,21,43,0.0 +17177,3,10,17,0.0 +17177,27,43.9,3,0.0 +17177,68,12.5,41,0.0 +17177,36,19,25,0.0 +17178,2,19,14,0.0 +17178,64,33.25,50,0.0 +17178,36,19,41,0.0 +17178,75,7.75,41,0.0 +17178,26,31.23,31,0.0 +17178,18,62.5,25,0.0 +17179,14,23.25,23,0.0 +17179,35,18,22,0.0 +17179,46,12,37,0.0 +17179,59,55,32,0.0 +17179,53,32.8,7,0.0 +17179,20,81,27,0.0 +17179,72,34.8,20,0.0 +17179,50,16.25,20,0.0 +17179,23,9,49,0.0 +17179,42,14,19,0.0 +17179,22,21,42,0.0 +17179,11,21,41,0.0 +17179,56,38,40,0.0 +17179,39,18,32,0.0 +17179,43,46,21,0.0 +17179,29,123.79,6,0.0 +17179,70,15,18,0.0 +17179,12,38,26,0.0 +17179,16,17.45,27,0.0 +17179,28,45.6,41,0.0 +17179,52,7,7,0.0 +17179,73,15,16,0.0 +17179,76,18,9,0.0 +17179,65,21.05,22,0.0 +17179,19,9.2,20,0.0 +17179,40,18.4,41,0.0 +17179,1,18,35,0.0 +17179,47,9.5,10,0.0 +17179,62,49.3,13,0.0 +17179,5,21.35,39,0.0 +17179,18,62.5,33,0.0 +17179,8,40,28,0.0 +17179,30,25.89,44,0.0 +17179,36,19,36,0.0 +17179,7,30,41,0.0 +17179,44,19.45,4,0.0 +17179,26,31.23,40,0.0 +17179,6,25,29,0.0 +17179,15,15.5,38,0.0 +17179,64,33.25,24,0.0 +17179,34,14,30,0.0 +17179,57,19.5,14,0.0 +17179,63,43.9,30,0.0 +17179,48,12.75,47,0.0 +17179,2,19,23,0.0 +17179,45,9.5,29,0.0 +17179,66,17,26,0.0 +17179,41,9.65,4,0.0 +17179,61,28.5,9,0.0 +17179,49,20,11,0.0 +17179,67,14,29,0.0 +17179,71,21.5,9,0.0 +17179,9,97,47,0.0 +17179,31,12.5,11,0.0 +17179,10,31,28,0.0 +17179,54,7.45,36,0.0 +17179,32,32,32,0.0 +17179,77,13,17,0.0 +17179,13,6,22,0.0 +17179,75,7.75,21,0.0 +17180,30,25.89,21,0.0 +17180,17,39,1,0.0 +17180,23,9,49,0.0 +17180,19,9.2,6,0.0 +17180,41,9.65,34,0.0 +17180,33,2.5,19,0.0 +17180,48,12.75,48,0.0 +17180,75,7.75,21,0.0 +17180,46,12,13,0.0 +17180,5,21.35,6,0.0 +17180,54,7.45,34,0.0 +17180,2,19,32,0.0 +17180,73,15,41,0.0 +17180,27,43.9,9,0.0 +17180,7,30,27,0.0 +17180,10,31,36,0.0 +17180,3,10,15,0.0 +17180,11,21,8,0.0 +17180,59,55,35,0.0 +17180,58,13.25,18,0.0 +17180,42,14,47,0.0 +17180,24,4.5,4,0.0 +17180,13,6,27,0.0 +17180,35,18,36,0.0 +17180,63,43.9,8,0.0 +17180,47,9.5,31,0.0 +17180,66,17,2,0.0 +17180,25,14,41,0.0 +17180,37,26,50,0.0 +17180,40,18.4,44,0.0 +17180,44,19.45,14,0.0 +17180,32,32,22,0.0 +17180,9,97,30,0.0 +17180,62,49.3,44,0.0 +17180,12,38,21,0.0 +17180,39,18,17,0.0 +17180,67,14,20,0.0 +17180,53,32.8,41,0.0 +17180,29,123.79,19,0.0 +17180,38,263.5,18,0.0 +17180,15,15.5,29,0.0 +17180,21,10,46,0.0 +17180,52,7,17,0.0 +17180,71,21.5,31,0.0 +17180,18,62.5,35,0.0 +17180,1,18,30,0.0 +17180,69,36,30,0.0 +17180,55,24,17,0.0 +17180,43,46,39,0.0 +17180,28,45.6,29,0.0 +17180,72,34.8,14,0.0 +17180,60,34,7,0.0 +17180,4,22,42,0.0 +17180,45,9.5,7,0.0 +17180,68,12.5,34,0.0 +17180,34,14,23,0.0 +17180,70,15,31,0.0 +17180,77,13,28,0.0 +17180,57,19.5,30,0.0 +17180,50,16.25,21,0.0 +17180,36,19,32,0.0 +17180,51,53,34,0.0 +17180,14,23.25,39,0.0 +17180,22,21,9,0.0 +17180,64,33.25,43,0.0 +17180,61,28.5,13,0.0 +17180,6,25,37,0.0 +17181,8,40,19,0.0 +17181,33,2.5,25,0.0 +17181,40,18.4,15,0.0 +17181,3,10,18,0.0 +17181,50,16.25,4,0.0 +17181,60,34,27,0.0 +17181,23,9,19,0.0 +17181,32,32,20,0.0 +17181,62,49.3,11,0.0 +17181,52,7,28,0.0 +17181,10,31,32,0.0 +17181,68,12.5,12,0.0 +17181,56,38,28,0.0 +17181,31,12.5,21,0.0 +17181,51,53,20,0.0 +17181,64,33.25,6,0.0 +17181,38,263.5,49,0.0 +17181,55,24,12,0.0 +17181,75,7.75,46,0.0 +17181,42,14,40,0.0 +17181,15,15.5,25,0.0 +17181,66,17,31,0.0 +17181,9,97,38,0.0 +17181,16,17.45,5,0.0 +17181,59,55,10,0.0 +17182,55,24,49,0.0 +17182,41,9.65,27,0.0 +17182,37,26,31,0.0 +17182,14,23.25,27,0.0 +17182,77,13,14,0.0 +17182,48,12.75,29,0.0 +17182,27,43.9,16,0.0 +17182,30,25.89,19,0.0 +17182,15,15.5,1,0.0 +17182,63,43.9,36,0.0 +17182,60,34,12,0.0 +17183,59,55,9,0.0 +17183,32,32,20,0.0 +17183,62,49.3,5,0.0 +17183,33,2.5,15,0.0 +17183,67,14,43,0.0 +17183,19,9.2,2,0.0 +17183,70,15,2,0.0 +17183,39,18,25,0.0 +17183,54,7.45,3,0.0 +17183,10,31,28,0.0 +17183,43,46,36,0.0 +17183,8,40,17,0.0 +17183,49,20,16,0.0 +17183,15,15.5,44,0.0 +17183,31,12.5,27,0.0 +17183,28,45.6,22,0.0 +17183,24,4.5,8,0.0 +17183,74,10,45,0.0 +17183,66,17,3,0.0 +17183,35,18,34,0.0 +17183,64,33.25,9,0.0 +17183,5,21.35,45,0.0 +17183,75,7.75,48,0.0 +17183,50,16.25,49,0.0 +17183,21,10,48,0.0 +17183,40,18.4,37,0.0 +17183,1,18,36,0.0 +17183,58,13.25,37,0.0 +17183,16,17.45,22,0.0 +17183,42,14,13,0.0 +17183,11,21,21,0.0 +17183,63,43.9,46,0.0 +17183,36,19,25,0.0 +17183,30,25.89,39,0.0 +17183,77,13,38,0.0 +17183,48,12.75,27,0.0 +17183,53,32.8,16,0.0 +17183,4,22,38,0.0 +17183,17,39,47,0.0 +17183,18,62.5,6,0.0 +17183,47,9.5,16,0.0 +17183,13,6,12,0.0 +17183,6,25,39,0.0 +17183,29,123.79,38,0.0 +17183,2,19,33,0.0 +17183,73,15,26,0.0 +17183,37,26,42,0.0 +17183,65,21.05,23,0.0 +17183,46,12,7,0.0 +17183,51,53,13,0.0 +17183,71,21.5,39,0.0 +17183,60,34,45,0.0 +17183,57,19.5,25,0.0 +17183,52,7,23,0.0 +17183,20,81,7,0.0 +17183,9,97,40,0.0 +17184,73,15,29,0.0 +17184,39,18,33,0.0 +17184,2,19,30,0.0 +17184,34,14,19,0.0 +17184,60,34,16,0.0 +17184,62,49.3,48,0.0 +17184,50,16.25,33,0.0 +17184,8,40,45,0.0 +17184,65,21.05,9,0.0 +17184,72,34.8,37,0.0 +17184,54,7.45,26,0.0 +17184,27,43.9,16,0.0 +17184,4,22,31,0.0 +17184,61,28.5,11,0.0 +17184,22,21,23,0.0 +17184,33,2.5,39,0.0 +17184,46,12,39,0.0 +17184,24,4.5,35,0.0 +17184,25,14,11,0.0 +17184,66,17,13,0.0 +17184,18,62.5,48,0.0 +17184,16,17.45,4,0.0 +17184,59,55,37,0.0 +17184,19,9.2,11,0.0 +17184,9,97,7,0.0 +17184,20,81,37,0.0 +17184,75,7.75,2,0.0 +17184,69,36,18,0.0 +17184,35,18,30,0.0 +17184,43,46,10,0.0 +17184,49,20,40,0.0 +17184,38,263.5,5,0.0 +17184,1,18,25,0.0 +17184,40,18.4,20,0.0 +17184,41,9.65,32,0.0 +17184,71,21.5,19,0.0 +17184,31,12.5,48,0.0 +17184,36,19,23,0.0 +17184,53,32.8,35,0.0 +17184,6,25,50,0.0 +17184,37,26,50,0.0 +17184,44,19.45,18,0.0 +17184,3,10,32,0.0 +17184,14,23.25,40,0.0 +17184,30,25.89,50,0.0 +17184,64,33.25,30,0.0 +17184,10,31,30,0.0 +17184,47,9.5,5,0.0 +17184,70,15,47,0.0 +17184,21,10,18,0.0 +17184,52,7,49,0.0 +17184,67,14,27,0.0 +17184,26,31.23,19,0.0 +17184,58,13.25,48,0.0 +17184,11,21,44,0.0 +17185,33,2.5,12,0.0 +17185,67,14,45,0.0 +17185,21,10,20,0.0 +17185,72,34.8,26,0.0 +17185,62,49.3,29,0.0 +17185,58,13.25,38,0.0 +17185,36,19,48,0.0 +17185,43,46,21,0.0 +17185,24,4.5,20,0.0 +17185,16,17.45,28,0.0 +17185,23,9,11,0.0 +17185,52,7,23,0.0 +17185,17,39,2,0.0 +17185,4,22,8,0.0 +17185,39,18,4,0.0 +17185,32,32,20,0.0 +17185,69,36,3,0.0 +17185,77,13,10,0.0 +17185,27,43.9,28,0.0 +17185,35,18,37,0.0 +17185,71,21.5,43,0.0 +17185,46,12,37,0.0 +17185,65,21.05,48,0.0 +17185,54,7.45,48,0.0 +17185,12,38,22,0.0 +17185,53,32.8,7,0.0 +17185,20,81,9,0.0 +17185,11,21,14,0.0 +17185,26,31.23,4,0.0 +17185,10,31,42,0.0 +17185,60,34,20,0.0 +17185,70,15,22,0.0 +17185,37,26,4,0.0 +17185,55,24,17,0.0 +17185,3,10,38,0.0 +17185,38,263.5,44,0.0 +17185,2,19,46,0.0 +17185,7,30,13,0.0 +17185,40,18.4,46,0.0 +17185,6,25,34,0.0 +17185,13,6,45,0.0 +17185,1,18,17,0.0 +17185,44,19.45,21,0.0 +17185,42,14,7,0.0 +17185,14,23.25,8,0.0 +17185,22,21,39,0.0 +17185,31,12.5,23,0.0 +17185,63,43.9,37,0.0 +17185,66,17,31,0.0 +17185,18,62.5,46,0.0 +17185,9,97,4,0.0 +17185,5,21.35,23,0.0 +17185,57,19.5,3,0.0 +17185,75,7.75,33,0.0 +17185,59,55,15,0.0 +17185,47,9.5,37,0.0 +17185,28,45.6,15,0.0 +17185,76,18,15,0.0 +17185,50,16.25,21,0.0 +17186,61,28.5,47,0.0 +17186,1,18,16,0.0 +17186,75,7.75,30,0.0 +17186,72,34.8,16,0.0 +17186,15,15.5,21,0.0 +17186,58,13.25,50,0.0 +17186,51,53,48,0.0 +17186,13,6,35,0.0 +17186,11,21,32,0.0 +17186,28,45.6,24,0.0 +17186,70,15,30,0.0 +17186,36,19,34,0.0 +17186,54,7.45,11,0.0 +17186,34,14,37,0.0 +17186,49,20,15,0.0 +17186,68,12.5,16,0.0 +17186,44,19.45,38,0.0 +17186,27,43.9,17,0.0 +17186,71,21.5,21,0.0 +17186,66,17,6,0.0 +17186,46,12,34,0.0 +17186,42,14,25,0.0 +17186,32,32,34,0.0 +17186,73,15,30,0.0 +17186,20,81,32,0.0 +17186,62,49.3,45,0.0 +17186,31,12.5,9,0.0 +17186,2,19,39,0.0 +17186,41,9.65,22,0.0 +17186,69,36,26,0.0 +17186,47,9.5,21,0.0 +17186,26,31.23,39,0.0 +17186,38,263.5,42,0.0 +17186,29,123.79,18,0.0 +17186,12,38,21,0.0 +17186,3,10,27,0.0 +17186,37,26,13,0.0 +17187,57,19.5,45,0.0 +17187,54,7.45,19,0.0 +17187,14,23.25,38,0.0 +17187,18,62.5,38,0.0 +17187,42,14,40,0.0 +17187,41,9.65,33,0.0 +17187,73,15,31,0.0 +17187,24,4.5,40,0.0 +17187,11,21,30,0.0 +17187,56,38,34,0.0 +17187,59,55,11,0.0 +17187,50,16.25,36,0.0 +17187,15,15.5,20,0.0 +17187,60,34,15,0.0 +17187,23,9,1,0.0 +17187,33,2.5,23,0.0 +17187,77,13,43,0.0 +17187,53,32.8,41,0.0 +17187,1,18,22,0.0 +17187,10,31,1,0.0 +17187,49,20,7,0.0 +17187,26,31.23,40,0.0 +17187,7,30,13,0.0 +17187,65,21.05,3,0.0 +17187,38,263.5,25,0.0 +17188,72,34.8,34,0.0 +17188,46,12,24,0.0 +17188,1,18,39,0.0 +17188,53,32.8,25,0.0 +17188,16,17.45,46,0.0 +17188,71,21.5,38,0.0 +17188,11,21,46,0.0 +17188,56,38,5,0.0 +17188,22,21,10,0.0 +17188,75,7.75,24,0.0 +17188,48,12.75,31,0.0 +17188,9,97,19,0.0 +17188,31,12.5,41,0.0 +17188,17,39,18,0.0 +17188,36,19,35,0.0 +17188,58,13.25,21,0.0 +17188,35,18,3,0.0 +17189,67,14,20,0.0 +17189,11,21,13,0.0 +17189,47,9.5,34,0.0 +17189,29,123.79,46,0.0 +17189,10,31,38,0.0 +17189,71,21.5,36,0.0 +17189,7,30,32,0.0 +17189,57,19.5,4,0.0 +17189,28,45.6,20,0.0 +17189,18,62.5,48,0.0 +17189,19,9.2,21,0.0 +17189,37,26,21,0.0 +17189,24,4.5,23,0.0 +17189,34,14,9,0.0 +17189,3,10,33,0.0 +17189,16,17.45,36,0.0 +17189,23,9,24,0.0 +17189,59,55,22,0.0 +17189,60,34,16,0.0 +17189,48,12.75,27,0.0 +17189,44,19.45,30,0.0 +17189,49,20,11,0.0 +17189,32,32,35,0.0 +17189,66,17,5,0.0 +17189,43,46,19,0.0 +17189,76,18,38,0.0 +17189,41,9.65,40,0.0 +17189,20,81,48,0.0 +17189,1,18,42,0.0 +17189,14,23.25,46,0.0 +17189,25,14,33,0.0 +17189,55,24,33,0.0 +17189,4,22,10,0.0 +17189,2,19,19,0.0 +17189,6,25,50,0.0 +17189,51,53,50,0.0 +17189,30,25.89,3,0.0 +17189,15,15.5,6,0.0 +17189,33,2.5,29,0.0 +17189,8,40,4,0.0 +17189,72,34.8,1,0.0 +17189,38,263.5,6,0.0 +17189,52,7,32,0.0 +17189,13,6,25,0.0 +17189,75,7.75,45,0.0 +17189,35,18,50,0.0 +17189,39,18,27,0.0 +17189,65,21.05,42,0.0 +17189,50,16.25,30,0.0 +17189,42,14,43,0.0 +17189,63,43.9,19,0.0 +17189,74,10,42,0.0 +17189,36,19,5,0.0 +17189,61,28.5,4,0.0 +17189,22,21,5,0.0 +17189,73,15,50,0.0 +17189,5,21.35,14,0.0 +17189,21,10,14,0.0 +17189,31,12.5,20,0.0 +17189,12,38,46,0.0 +17189,45,9.5,2,0.0 +17189,27,43.9,44,0.0 +17189,62,49.3,7,0.0 +17190,76,18,49,0.0 +17190,39,18,19,0.0 +17190,61,28.5,15,0.0 +17190,7,30,33,0.0 +17190,16,17.45,18,0.0 +17190,6,25,6,0.0 +17190,4,22,42,0.0 +17190,44,19.45,4,0.0 +17190,67,14,15,0.0 +17190,5,21.35,28,0.0 +17190,66,17,37,0.0 +17190,48,12.75,40,0.0 +17190,59,55,22,0.0 +17190,51,53,3,0.0 +17190,28,45.6,4,0.0 +17190,8,40,8,0.0 +17190,50,16.25,5,0.0 +17190,68,12.5,48,0.0 +17190,32,32,12,0.0 +17190,65,21.05,30,0.0 +17190,69,36,10,0.0 +17190,70,15,41,0.0 +17190,63,43.9,49,0.0 +17190,37,26,26,0.0 +17190,56,38,25,0.0 +17190,33,2.5,13,0.0 +17190,17,39,13,0.0 +17190,15,15.5,31,0.0 +17190,71,21.5,14,0.0 +17190,24,4.5,18,0.0 +17190,57,19.5,50,0.0 +17190,30,25.89,45,0.0 +17190,26,31.23,17,0.0 +17190,40,18.4,36,0.0 +17190,64,33.25,2,0.0 +17190,25,14,50,0.0 +17190,13,6,38,0.0 +17190,62,49.3,6,0.0 +17190,75,7.75,22,0.0 +17190,23,9,39,0.0 +17190,18,62.5,50,0.0 +17190,52,7,43,0.0 +17190,27,43.9,27,0.0 +17190,35,18,28,0.0 +17190,60,34,39,0.0 +17190,3,10,45,0.0 +17190,42,14,25,0.0 +17190,22,21,38,0.0 +17190,41,9.65,18,0.0 +17191,34,14,43,0.0 +17191,74,10,44,0.0 +17191,14,23.25,24,0.0 +17191,57,19.5,3,0.0 +17191,4,22,19,0.0 +17191,73,15,36,0.0 +17191,54,7.45,41,0.0 +17191,69,36,1,0.0 +17191,19,9.2,15,0.0 +17191,21,10,31,0.0 +17191,42,14,43,0.0 +17191,27,43.9,10,0.0 +17191,2,19,23,0.0 +17191,8,40,23,0.0 +17191,12,38,45,0.0 +17191,66,17,40,0.0 +17191,47,9.5,20,0.0 +17191,5,21.35,7,0.0 +17191,41,9.65,48,0.0 +17191,16,17.45,26,0.0 +17191,29,123.79,44,0.0 +17191,68,12.5,5,0.0 +17191,55,24,47,0.0 +17191,49,20,21,0.0 +17191,72,34.8,34,0.0 +17192,41,9.65,32,0.0 +17192,59,55,5,0.0 +17192,73,15,50,0.0 +17192,69,36,18,0.0 +17192,28,45.6,12,0.0 +17192,8,40,8,0.0 +17192,15,15.5,7,0.0 +17192,23,9,48,0.0 +17192,34,14,18,0.0 +17192,47,9.5,1,0.0 +17192,54,7.45,12,0.0 +17192,42,14,44,0.0 +17192,30,25.89,5,0.0 +17192,6,25,25,0.0 +17192,13,6,9,0.0 +17192,57,19.5,8,0.0 +17192,60,34,24,0.0 +17192,10,31,18,0.0 +17192,43,46,49,0.0 +17192,7,30,1,0.0 +17192,14,23.25,25,0.0 +17192,5,21.35,10,0.0 +17192,12,38,12,0.0 +17192,65,21.05,28,0.0 +17192,2,19,28,0.0 +17192,19,9.2,29,0.0 +17192,46,12,40,0.0 +17192,53,32.8,16,0.0 +17192,52,7,1,0.0 +17192,38,263.5,38,0.0 +17192,71,21.5,14,0.0 +17192,17,39,8,0.0 +17193,4,22,26,0.0 +17193,35,18,10,0.0 +17193,14,23.25,43,0.0 +17193,25,14,45,0.0 +17193,9,97,45,0.0 +17193,2,19,28,0.0 +17193,23,9,48,0.0 +17193,43,46,12,0.0 +17193,44,19.45,38,0.0 +17193,19,9.2,3,0.0 +17193,77,13,46,0.0 +17193,68,12.5,4,0.0 +17193,50,16.25,4,0.0 +17193,47,9.5,8,0.0 +17193,42,14,2,0.0 +17193,22,21,17,0.0 +17193,20,81,35,0.0 +17193,1,18,5,0.0 +17193,21,10,43,0.0 +17193,73,15,44,0.0 +17193,41,9.65,19,0.0 +17193,15,15.5,18,0.0 +17193,59,55,19,0.0 +17193,7,30,48,0.0 +17193,28,45.6,41,0.0 +17193,70,15,20,0.0 +17193,12,38,1,0.0 +17193,38,263.5,32,0.0 +17193,65,21.05,36,0.0 +17193,33,2.5,33,0.0 +17193,69,36,8,0.0 +17193,16,17.45,20,0.0 +17193,27,43.9,39,0.0 +17193,66,17,5,0.0 +17193,54,7.45,42,0.0 +17193,74,10,31,0.0 +17193,57,19.5,34,0.0 +17193,39,18,30,0.0 +17193,64,33.25,12,0.0 +17193,75,7.75,49,0.0 +17193,17,39,45,0.0 +17193,34,14,6,0.0 +17193,76,18,5,0.0 +17193,60,34,11,0.0 +17193,62,49.3,26,0.0 +17193,72,34.8,40,0.0 +17193,11,21,15,0.0 +17193,24,4.5,38,0.0 +17193,29,123.79,3,0.0 +17193,6,25,40,0.0 +17193,46,12,19,0.0 +17193,61,28.5,22,0.0 +17193,32,32,6,0.0 +17193,67,14,34,0.0 +17193,36,19,13,0.0 +17193,52,7,11,0.0 +17193,40,18.4,50,0.0 +17193,8,40,39,0.0 +17193,58,13.25,29,0.0 +17193,37,26,15,0.0 +17193,51,53,8,0.0 +17193,63,43.9,19,0.0 +17193,30,25.89,14,0.0 +17193,3,10,8,0.0 +17193,45,9.5,13,0.0 +17193,53,32.8,13,0.0 +17193,13,6,1,0.0 +17193,18,62.5,8,0.0 +17193,55,24,1,0.0 +17193,10,31,9,0.0 +17193,56,38,29,0.0 +17193,49,20,43,0.0 +17193,71,21.5,45,0.0 +17193,48,12.75,18,0.0 +17193,5,21.35,39,0.0 +17193,31,12.5,30,0.0 +17194,13,6,15,0.0 +17194,29,123.79,17,0.0 +17194,63,43.9,22,0.0 +17194,22,21,30,0.0 +17194,14,23.25,22,0.0 +17194,75,7.75,24,0.0 +17194,48,12.75,4,0.0 +17194,52,7,47,0.0 +17194,30,25.89,22,0.0 +17194,24,4.5,6,0.0 +17194,36,19,27,0.0 +17194,72,34.8,22,0.0 +17194,68,12.5,9,0.0 +17194,12,38,26,0.0 +17194,28,45.6,11,0.0 +17194,46,12,49,0.0 +17194,1,18,12,0.0 +17194,73,15,48,0.0 +17194,33,2.5,9,0.0 +17194,51,53,21,0.0 +17194,64,33.25,34,0.0 +17194,55,24,47,0.0 +17194,39,18,44,0.0 +17194,15,15.5,43,0.0 +17194,6,25,26,0.0 +17194,42,14,35,0.0 +17194,37,26,10,0.0 +17194,8,40,28,0.0 +17194,50,16.25,28,0.0 +17194,74,10,5,0.0 +17194,44,19.45,3,0.0 +17194,25,14,27,0.0 +17194,40,18.4,6,0.0 +17194,34,14,25,0.0 +17194,61,28.5,43,0.0 +17194,4,22,10,0.0 +17194,66,17,38,0.0 +17194,62,49.3,28,0.0 +17194,21,10,4,0.0 +17194,54,7.45,42,0.0 +17194,38,263.5,41,0.0 +17194,45,9.5,8,0.0 +17194,57,19.5,9,0.0 +17194,70,15,30,0.0 +17194,27,43.9,36,0.0 +17194,5,21.35,49,0.0 +17194,16,17.45,16,0.0 +17194,17,39,29,0.0 +17194,71,21.5,50,0.0 +17194,11,21,48,0.0 +17194,53,32.8,49,0.0 +17194,41,9.65,24,0.0 +17194,10,31,12,0.0 +17194,65,21.05,7,0.0 +17194,76,18,48,0.0 +17194,9,97,32,0.0 +17195,4,22,9,0.0 +17195,47,9.5,3,0.0 +17195,11,21,48,0.0 +17195,52,7,10,0.0 +17195,51,53,37,0.0 +17195,32,32,22,0.0 +17195,24,4.5,4,0.0 +17195,39,18,36,0.0 +17195,21,10,1,0.0 +17195,12,38,21,0.0 +17195,72,34.8,24,0.0 +17195,38,263.5,1,0.0 +17195,40,18.4,13,0.0 +17195,20,81,36,0.0 +17195,50,16.25,25,0.0 +17195,68,12.5,39,0.0 +17195,25,14,48,0.0 +17195,6,25,21,0.0 +17195,73,15,39,0.0 +17195,8,40,14,0.0 +17195,61,28.5,14,0.0 +17195,7,30,14,0.0 +17195,49,20,22,0.0 +17195,48,12.75,17,0.0 +17195,37,26,30,0.0 +17195,64,33.25,34,0.0 +17195,10,31,49,0.0 +17195,42,14,3,0.0 +17195,65,21.05,46,0.0 +17195,54,7.45,8,0.0 +17195,53,32.8,3,0.0 +17195,58,13.25,49,0.0 +17195,1,18,37,0.0 +17195,44,19.45,41,0.0 +17195,34,14,17,0.0 +17195,45,9.5,38,0.0 +17195,74,10,14,0.0 +17195,67,14,26,0.0 +17195,18,62.5,12,0.0 +17195,69,36,38,0.0 +17195,55,24,35,0.0 +17195,30,25.89,16,0.0 +17195,59,55,2,0.0 +17195,3,10,4,0.0 +17195,63,43.9,24,0.0 +17195,75,7.75,23,0.0 +17195,29,123.79,11,0.0 +17195,41,9.65,28,0.0 +17195,13,6,40,0.0 +17195,28,45.6,1,0.0 +17195,14,23.25,9,0.0 +17195,5,21.35,1,0.0 +17195,26,31.23,50,0.0 +17196,37,26,25,0.0 +17196,2,19,17,0.0 +17196,32,32,10,0.0 +17196,22,21,50,0.0 +17196,29,123.79,10,0.0 +17196,42,14,34,0.0 +17196,72,34.8,34,0.0 +17196,57,19.5,11,0.0 +17196,75,7.75,7,0.0 +17196,23,9,29,0.0 +17196,43,46,15,0.0 +17196,15,15.5,29,0.0 +17196,16,17.45,42,0.0 +17196,62,49.3,41,0.0 +17196,41,9.65,44,0.0 +17196,39,18,27,0.0 +17196,54,7.45,40,0.0 +17196,64,33.25,8,0.0 +17196,76,18,11,0.0 +17197,45,9.5,37,0.0 +17197,29,123.79,50,0.0 +17197,25,14,22,0.0 +17197,50,16.25,24,0.0 +17197,54,7.45,26,0.0 +17197,39,18,13,0.0 +17197,61,28.5,34,0.0 +17197,16,17.45,27,0.0 +17197,52,7,18,0.0 +17197,15,15.5,7,0.0 +17197,24,4.5,27,0.0 +17197,74,10,43,0.0 +17197,42,14,26,0.0 +17197,13,6,35,0.0 +17197,3,10,41,0.0 +17197,46,12,9,0.0 +17197,8,40,5,0.0 +17197,49,20,19,0.0 +17197,38,263.5,28,0.0 +17197,41,9.65,36,0.0 +17197,73,15,14,0.0 +17197,57,19.5,2,0.0 +17197,36,19,18,0.0 +17197,76,18,39,0.0 +17197,12,38,35,0.0 +17197,64,33.25,50,0.0 +17197,67,14,29,0.0 +17197,4,22,37,0.0 +17197,47,9.5,19,0.0 +17197,71,21.5,13,0.0 +17197,63,43.9,33,0.0 +17197,34,14,14,0.0 +17197,60,34,15,0.0 +17197,43,46,47,0.0 +17197,21,10,40,0.0 +17197,5,21.35,37,0.0 +17197,37,26,15,0.0 +17197,65,21.05,14,0.0 +17197,68,12.5,7,0.0 +17197,10,31,27,0.0 +17197,6,25,26,0.0 +17197,48,12.75,4,0.0 +17197,32,32,24,0.0 +17197,35,18,35,0.0 +17197,33,2.5,4,0.0 +17197,30,25.89,20,0.0 +17197,77,13,11,0.0 +17197,23,9,19,0.0 +17197,70,15,35,0.0 +17197,75,7.75,16,0.0 +17197,40,18.4,32,0.0 +17197,9,97,9,0.0 +17197,1,18,24,0.0 +17197,55,24,46,0.0 +17197,26,31.23,12,0.0 +17197,53,32.8,21,0.0 +17197,7,30,44,0.0 +17197,44,19.45,44,0.0 +17197,51,53,4,0.0 +17197,59,55,27,0.0 +17197,17,39,48,0.0 +17197,66,17,5,0.0 +17197,31,12.5,47,0.0 +17197,69,36,40,0.0 +17197,20,81,17,0.0 +17197,72,34.8,19,0.0 +17197,62,49.3,4,0.0 +17197,22,21,44,0.0 +17197,27,43.9,18,0.0 +17197,56,38,3,0.0 +17197,11,21,12,0.0 +17197,14,23.25,14,0.0 +17197,2,19,1,0.0 +17197,18,62.5,37,0.0 +17197,58,13.25,48,0.0 +17197,19,9.2,17,0.0 +17197,28,45.6,43,0.0 +17198,7,30,36,0.0 +17198,16,17.45,41,0.0 +17198,69,36,47,0.0 +17198,26,31.23,14,0.0 +17198,53,32.8,30,0.0 +17198,46,12,46,0.0 +17198,15,15.5,26,0.0 +17198,34,14,33,0.0 +17198,60,34,43,0.0 +17198,21,10,37,0.0 +17198,36,19,40,0.0 +17198,39,18,9,0.0 +17198,72,34.8,7,0.0 +17198,6,25,35,0.0 +17198,9,97,42,0.0 +17198,24,4.5,33,0.0 +17198,65,21.05,7,0.0 +17198,50,16.25,41,0.0 +17198,52,7,16,0.0 +17198,71,21.5,3,0.0 +17198,3,10,18,0.0 +17198,64,33.25,18,0.0 +17198,8,40,35,0.0 +17198,28,45.6,26,0.0 +17198,32,32,9,0.0 +17198,56,38,29,0.0 +17199,17,39,20,0.0 +17199,18,62.5,48,0.0 +17199,38,263.5,13,0.0 +17199,66,17,21,0.0 +17199,16,17.45,4,0.0 +17199,2,19,7,0.0 +17199,1,18,27,0.0 +17199,23,9,11,0.0 +17199,14,23.25,34,0.0 +17199,55,24,22,0.0 +17199,21,10,28,0.0 +17199,7,30,12,0.0 +17199,52,7,37,0.0 +17199,58,13.25,5,0.0 +17199,27,43.9,11,0.0 +17199,61,28.5,19,0.0 +17199,50,16.25,38,0.0 +17199,39,18,46,0.0 +17199,67,14,32,0.0 +17199,43,46,13,0.0 +17199,70,15,12,0.0 +17199,69,36,8,0.0 +17199,4,22,29,0.0 +17199,25,14,12,0.0 +17199,19,9.2,36,0.0 +17199,51,53,5,0.0 +17200,15,15.5,44,0.0 +17200,46,12,42,0.0 +17200,44,19.45,11,0.0 +17200,8,40,30,0.0 +17200,56,38,23,0.0 +17200,32,32,10,0.0 +17200,77,13,31,0.0 +17200,43,46,49,0.0 +17200,27,43.9,17,0.0 +17200,67,14,42,0.0 +17200,74,10,10,0.0 +17200,29,123.79,8,0.0 +17200,62,49.3,35,0.0 +17200,45,9.5,49,0.0 +17200,39,18,50,0.0 +17200,50,16.25,10,0.0 +17200,53,32.8,29,0.0 +17200,60,34,15,0.0 +17200,16,17.45,8,0.0 +17200,26,31.23,41,0.0 +17200,3,10,18,0.0 +17200,17,39,28,0.0 +17200,41,9.65,47,0.0 +17200,54,7.45,18,0.0 +17201,53,32.8,20,0.0 +17201,29,123.79,49,0.0 +17201,4,22,26,0.0 +17201,77,13,35,0.0 +17201,45,9.5,19,0.0 +17201,9,97,21,0.0 +17201,14,23.25,5,0.0 +17201,48,12.75,33,0.0 +17201,75,7.75,38,0.0 +17201,10,31,7,0.0 +17201,2,19,17,0.0 +17201,36,19,18,0.0 +17201,18,62.5,34,0.0 +17201,17,39,21,0.0 +17201,72,34.8,1,0.0 +17201,39,18,26,0.0 +17201,5,21.35,35,0.0 +17201,70,15,18,0.0 +17201,62,49.3,20,0.0 +17201,74,10,41,0.0 +17201,3,10,26,0.0 +17201,44,19.45,49,0.0 +17201,49,20,38,0.0 +17201,50,16.25,11,0.0 +17201,59,55,30,0.0 +17201,32,32,12,0.0 +17201,41,9.65,2,0.0 +17201,20,81,22,0.0 +17201,64,33.25,24,0.0 +17201,61,28.5,15,0.0 +17201,56,38,44,0.0 +17201,51,53,47,0.0 +17201,11,21,10,0.0 +17202,6,25,41,0.0 +17202,63,43.9,13,0.0 +17202,25,14,21,0.0 +17202,20,81,41,0.0 +17202,67,14,42,0.0 +17202,19,9.2,38,0.0 +17202,35,18,10,0.0 +17202,4,22,45,0.0 +17202,61,28.5,49,0.0 +17202,56,38,14,0.0 +17202,66,17,43,0.0 +17202,3,10,22,0.0 +17202,73,15,31,0.0 +17202,44,19.45,34,0.0 +17202,24,4.5,18,0.0 +17202,17,39,42,0.0 +17202,42,14,35,0.0 +17202,37,26,40,0.0 +17202,74,10,11,0.0 +17202,22,21,49,0.0 +17202,16,17.45,30,0.0 +17202,26,31.23,29,0.0 +17202,34,14,44,0.0 +17202,10,31,49,0.0 +17202,33,2.5,34,0.0 +17202,14,23.25,8,0.0 +17202,69,36,37,0.0 +17202,51,53,27,0.0 +17203,45,9.5,2,0.0 +17203,34,14,26,0.0 +17203,41,9.65,34,0.0 +17203,46,12,14,0.0 +17203,5,21.35,49,0.0 +17203,68,12.5,49,0.0 +17203,58,13.25,31,0.0 +17203,25,14,31,0.0 +17203,32,32,38,0.0 +17203,71,21.5,26,0.0 +17203,59,55,39,0.0 +17203,47,9.5,40,0.0 +17203,1,18,38,0.0 +17203,13,6,26,0.0 +17203,77,13,10,0.0 +17203,69,36,23,0.0 +17203,7,30,32,0.0 +17203,48,12.75,49,0.0 +17203,72,34.8,1,0.0 +17203,21,10,31,0.0 +17203,52,7,50,0.0 +17203,51,53,37,0.0 +17203,29,123.79,6,0.0 +17203,64,33.25,34,0.0 +17203,73,15,40,0.0 +17203,53,32.8,6,0.0 +17203,31,12.5,44,0.0 +17203,60,34,22,0.0 +17203,19,9.2,14,0.0 +17203,70,15,42,0.0 +17203,17,39,6,0.0 +17203,65,21.05,16,0.0 +17203,11,21,24,0.0 +17203,38,263.5,21,0.0 +17203,8,40,38,0.0 +17203,22,21,45,0.0 +17203,18,62.5,5,0.0 +17203,57,19.5,19,0.0 +17203,23,9,3,0.0 +17203,6,25,18,0.0 +17203,16,17.45,34,0.0 +17203,56,38,30,0.0 +17203,28,45.6,25,0.0 +17203,75,7.75,15,0.0 +17203,49,20,25,0.0 +17203,43,46,2,0.0 +17203,67,14,47,0.0 +17203,50,16.25,5,0.0 +17203,66,17,1,0.0 +17204,22,21,4,0.0 +17204,54,7.45,1,0.0 +17204,65,21.05,7,0.0 +17204,7,30,20,0.0 +17204,25,14,47,0.0 +17204,71,21.5,13,0.0 +17204,9,97,28,0.0 +17204,34,14,38,0.0 +17204,51,53,3,0.0 +17204,19,9.2,39,0.0 +17204,69,36,3,0.0 +17204,32,32,21,0.0 +17204,13,6,19,0.0 +17204,76,18,3,0.0 +17204,49,20,27,0.0 +17205,34,14,36,0.0 +17205,1,18,14,0.0 +17205,42,14,31,0.0 +17205,50,16.25,26,0.0 +17205,71,21.5,12,0.0 +17205,75,7.75,22,0.0 +17205,13,6,37,0.0 +17205,12,38,48,0.0 +17205,49,20,25,0.0 +17206,2,19,17,0.0 +17206,38,263.5,4,0.0 +17206,69,36,46,0.0 +17206,77,13,34,0.0 +17206,23,9,48,0.0 +17206,4,22,25,0.0 +17206,60,34,3,0.0 +17206,9,97,37,0.0 +17206,43,46,5,0.0 +17206,10,31,9,0.0 +17206,11,21,27,0.0 +17206,8,40,34,0.0 +17206,36,19,10,0.0 +17206,16,17.45,32,0.0 +17206,50,16.25,42,0.0 +17206,67,14,5,0.0 +17206,15,15.5,2,0.0 +17206,59,55,25,0.0 +17206,35,18,5,0.0 +17206,31,12.5,20,0.0 +17206,71,21.5,7,0.0 +17206,29,123.79,32,0.0 +17206,55,24,18,0.0 +17206,45,9.5,19,0.0 +17206,5,21.35,45,0.0 +17206,28,45.6,38,0.0 +17206,14,23.25,35,0.0 +17206,30,25.89,45,0.0 +17206,37,26,43,0.0 +17206,65,21.05,28,0.0 +17206,63,43.9,7,0.0 +17206,13,6,31,0.0 +17206,12,38,35,0.0 +17206,25,14,40,0.0 +17206,19,9.2,48,0.0 +17206,24,4.5,22,0.0 +17206,49,20,10,0.0 +17206,66,17,34,0.0 +17206,42,14,35,0.0 +17206,68,12.5,27,0.0 +17206,39,18,31,0.0 +17206,21,10,14,0.0 +17206,1,18,16,0.0 +17207,55,24,4,0.0 +17207,61,28.5,6,0.0 +17207,64,33.25,23,0.0 +17207,44,19.45,7,0.0 +17207,19,9.2,49,0.0 +17207,45,9.5,13,0.0 +17207,68,12.5,33,0.0 +17207,25,14,29,0.0 +17207,39,18,34,0.0 +17207,18,62.5,12,0.0 +17208,50,16.25,23,0.0 +17208,46,12,42,0.0 +17208,5,21.35,44,0.0 +17208,60,34,45,0.0 +17208,36,19,47,0.0 +17208,38,263.5,20,0.0 +17208,63,43.9,24,0.0 +17208,77,13,26,0.0 +17208,7,30,16,0.0 +17208,44,19.45,42,0.0 +17208,6,25,25,0.0 +17208,18,62.5,47,0.0 +17208,68,12.5,46,0.0 +17208,3,10,3,0.0 +17208,56,38,43,0.0 +17208,31,12.5,19,0.0 +17208,66,17,21,0.0 +17208,14,23.25,48,0.0 +17208,42,14,35,0.0 +17208,2,19,13,0.0 +17208,26,31.23,29,0.0 +17208,39,18,17,0.0 +17208,74,10,29,0.0 +17208,23,9,45,0.0 +17208,17,39,32,0.0 +17208,30,25.89,42,0.0 +17208,65,21.05,30,0.0 +17208,15,15.5,43,0.0 +17208,13,6,15,0.0 +17208,61,28.5,49,0.0 +17208,72,34.8,9,0.0 +17208,27,43.9,8,0.0 +17208,12,38,22,0.0 +17208,43,46,48,0.0 +17208,52,7,47,0.0 +17208,71,21.5,16,0.0 +17208,11,21,19,0.0 +17208,32,32,24,0.0 +17208,55,24,29,0.0 +17208,59,55,34,0.0 +17208,75,7.75,3,0.0 +17208,45,9.5,5,0.0 +17208,49,20,5,0.0 +17208,25,14,47,0.0 +17208,19,9.2,45,0.0 +17208,24,4.5,41,0.0 +17208,4,22,10,0.0 +17208,34,14,42,0.0 +17208,29,123.79,18,0.0 +17208,53,32.8,29,0.0 +17208,1,18,40,0.0 +17208,9,97,28,0.0 +17208,40,18.4,20,0.0 +17208,21,10,10,0.0 +17208,57,19.5,21,0.0 +17208,16,17.45,43,0.0 +17208,58,13.25,27,0.0 +17208,64,33.25,13,0.0 +17208,62,49.3,30,0.0 +17208,35,18,13,0.0 +17208,22,21,32,0.0 +17208,54,7.45,12,0.0 +17208,67,14,5,0.0 +17208,70,15,47,0.0 +17208,48,12.75,39,0.0 +17208,37,26,39,0.0 +17209,8,40,14,0.0 +17209,55,24,31,0.0 +17209,31,12.5,12,0.0 +17209,75,7.75,30,0.0 +17209,46,12,30,0.0 +17209,49,20,9,0.0 +17209,77,13,35,0.0 +17209,7,30,29,0.0 +17209,70,15,13,0.0 +17209,4,22,34,0.0 +17209,69,36,15,0.0 +17209,20,81,4,0.0 +17209,26,31.23,22,0.0 +17209,23,9,2,0.0 +17209,71,21.5,21,0.0 +17209,65,21.05,33,0.0 +17209,60,34,20,0.0 +17209,47,9.5,29,0.0 +17209,56,38,14,0.0 +17209,41,9.65,11,0.0 +17210,49,20,38,0.0 +17210,19,9.2,13,0.0 +17210,36,19,9,0.0 +17210,25,14,19,0.0 +17210,7,30,25,0.0 +17210,52,7,20,0.0 +17210,5,21.35,11,0.0 +17210,53,32.8,19,0.0 +17210,12,38,9,0.0 +17210,77,13,1,0.0 +17210,17,39,4,0.0 +17210,4,22,11,0.0 +17210,72,34.8,38,0.0 +17210,45,9.5,13,0.0 +17210,67,14,5,0.0 +17210,29,123.79,23,0.0 +17210,75,7.75,14,0.0 +17210,11,21,43,0.0 +17210,8,40,10,0.0 +17210,26,31.23,25,0.0 +17210,63,43.9,23,0.0 +17210,42,14,25,0.0 +17210,23,9,36,0.0 +17210,56,38,34,0.0 +17210,18,62.5,1,0.0 +17210,70,15,48,0.0 +17210,43,46,5,0.0 +17210,37,26,39,0.0 +17210,40,18.4,44,0.0 +17210,24,4.5,18,0.0 +17210,65,21.05,5,0.0 +17210,58,13.25,28,0.0 +17210,3,10,13,0.0 +17210,66,17,15,0.0 +17210,60,34,3,0.0 +17210,22,21,20,0.0 +17210,21,10,46,0.0 +17210,28,45.6,7,0.0 +17210,64,33.25,48,0.0 +17210,55,24,37,0.0 +17210,10,31,42,0.0 +17210,41,9.65,2,0.0 +17210,38,263.5,21,0.0 +17210,33,2.5,34,0.0 +17210,57,19.5,13,0.0 +17210,15,15.5,22,0.0 +17210,2,19,19,0.0 +17210,16,17.45,8,0.0 +17211,14,23.25,10,0.0 +17211,38,263.5,43,0.0 +17211,27,43.9,29,0.0 +17211,4,22,12,0.0 +17211,5,21.35,7,0.0 +17211,21,10,48,0.0 +17211,56,38,24,0.0 +17211,64,33.25,1,0.0 +17211,61,28.5,46,0.0 +17211,51,53,27,0.0 +17211,68,12.5,28,0.0 +17211,46,12,5,0.0 +17211,12,38,48,0.0 +17211,31,12.5,8,0.0 +17211,65,21.05,49,0.0 +17211,67,14,1,0.0 +17211,11,21,23,0.0 +17211,76,18,9,0.0 +17211,70,15,8,0.0 +17211,73,15,17,0.0 +17211,43,46,24,0.0 +17211,18,62.5,8,0.0 +17211,28,45.6,45,0.0 +17211,45,9.5,4,0.0 +17211,30,25.89,39,0.0 +17211,17,39,17,0.0 +17211,40,18.4,30,0.0 +17211,69,36,34,0.0 +17211,72,34.8,9,0.0 +17211,58,13.25,39,0.0 +17211,42,14,24,0.0 +17211,59,55,46,0.0 +17211,71,21.5,14,0.0 +17211,66,17,24,0.0 +17211,9,97,17,0.0 +17211,55,24,21,0.0 +17211,22,21,35,0.0 +17212,21,10,41,0.0 +17212,31,12.5,45,0.0 +17212,27,43.9,11,0.0 +17212,6,25,18,0.0 +17212,54,7.45,23,0.0 +17212,65,21.05,36,0.0 +17212,73,15,47,0.0 +17212,9,97,19,0.0 +17212,1,18,48,0.0 +17212,17,39,17,0.0 +17212,61,28.5,3,0.0 +17212,19,9.2,44,0.0 +17212,3,10,43,0.0 +17212,13,6,44,0.0 +17213,40,18.4,27,0.0 +17213,39,18,1,0.0 +17213,32,32,36,0.0 +17213,8,40,12,0.0 +17213,61,28.5,12,0.0 +17213,62,49.3,14,0.0 +17213,28,45.6,28,0.0 +17213,3,10,47,0.0 +17213,25,14,1,0.0 +17213,18,62.5,20,0.0 +17213,48,12.75,35,0.0 +17213,74,10,31,0.0 +17213,29,123.79,43,0.0 +17213,50,16.25,5,0.0 +17213,10,31,4,0.0 +17213,41,9.65,29,0.0 +17213,49,20,33,0.0 +17213,2,19,38,0.0 +17213,51,53,20,0.0 +17213,77,13,42,0.0 +17213,68,12.5,25,0.0 +17213,76,18,16,0.0 +17213,20,81,23,0.0 +17213,46,12,49,0.0 +17213,69,36,20,0.0 +17213,21,10,20,0.0 +17213,9,97,11,0.0 +17214,27,43.9,37,0.0 +17214,53,32.8,11,0.0 +17214,23,9,42,0.0 +17214,75,7.75,42,0.0 +17214,59,55,24,0.0 +17214,26,31.23,4,0.0 +17214,24,4.5,17,0.0 +17214,62,49.3,50,0.0 +17214,67,14,45,0.0 +17214,25,14,5,0.0 +17214,36,19,24,0.0 +17214,13,6,14,0.0 +17214,41,9.65,14,0.0 +17214,77,13,25,0.0 +17214,33,2.5,6,0.0 +17214,63,43.9,14,0.0 +17214,3,10,34,0.0 +17214,66,17,18,0.0 +17214,6,25,2,0.0 +17214,50,16.25,16,0.0 +17214,31,12.5,26,0.0 +17214,43,46,24,0.0 +17214,12,38,19,0.0 +17214,17,39,22,0.0 +17214,38,263.5,24,0.0 +17214,57,19.5,11,0.0 +17214,15,15.5,11,0.0 +17214,73,15,38,0.0 +17214,56,38,2,0.0 +17214,19,9.2,10,0.0 +17214,32,32,38,0.0 +17214,45,9.5,23,0.0 +17214,76,18,14,0.0 +17214,49,20,30,0.0 +17214,4,22,26,0.0 +17214,55,24,43,0.0 +17214,30,25.89,7,0.0 +17214,22,21,36,0.0 +17214,7,30,3,0.0 +17214,54,7.45,22,0.0 +17214,61,28.5,24,0.0 +17214,69,36,4,0.0 +17214,28,45.6,46,0.0 +17214,60,34,12,0.0 +17214,16,17.45,12,0.0 +17214,37,26,12,0.0 +17214,42,14,11,0.0 +17214,47,9.5,30,0.0 +17214,21,10,19,0.0 +17214,14,23.25,5,0.0 +17214,29,123.79,2,0.0 +17214,74,10,8,0.0 +17214,1,18,49,0.0 +17214,40,18.4,22,0.0 +17214,46,12,23,0.0 +17214,39,18,34,0.0 +17214,8,40,5,0.0 +17214,34,14,24,0.0 +17214,44,19.45,49,0.0 +17214,70,15,5,0.0 +17214,5,21.35,8,0.0 +17214,52,7,1,0.0 +17214,2,19,27,0.0 +17214,71,21.5,14,0.0 +17214,65,21.05,18,0.0 +17214,18,62.5,1,0.0 +17214,58,13.25,20,0.0 +17214,48,12.75,12,0.0 +17214,68,12.5,41,0.0 +17214,10,31,5,0.0 +17214,35,18,8,0.0 +17214,9,97,25,0.0 +17214,11,21,11,0.0 +17214,64,33.25,21,0.0 +17215,77,13,21,0.0 +17215,11,21,49,0.0 +17215,62,49.3,27,0.0 +17215,3,10,36,0.0 +17215,41,9.65,39,0.0 +17215,14,23.25,18,0.0 +17215,70,15,25,0.0 +17215,67,14,26,0.0 +17215,46,12,42,0.0 +17215,48,12.75,41,0.0 +17215,1,18,14,0.0 +17215,8,40,23,0.0 +17215,50,16.25,6,0.0 +17215,69,36,34,0.0 +17215,55,24,43,0.0 +17215,59,55,36,0.0 +17215,9,97,30,0.0 +17215,74,10,22,0.0 +17215,25,14,34,0.0 +17215,42,14,49,0.0 +17215,60,34,21,0.0 +17215,31,12.5,49,0.0 +17215,54,7.45,1,0.0 +17216,13,6,22,0.0 +17216,9,97,23,0.0 +17216,26,31.23,8,0.0 +17216,11,21,39,0.0 +17216,32,32,13,0.0 +17216,54,7.45,2,0.0 +17216,33,2.5,23,0.0 +17216,77,13,37,0.0 +17216,45,9.5,7,0.0 +17216,57,19.5,33,0.0 +17216,36,19,21,0.0 +17216,35,18,44,0.0 +17216,7,30,27,0.0 +17216,48,12.75,50,0.0 +17216,14,23.25,17,0.0 +17216,25,14,11,0.0 +17216,63,43.9,41,0.0 +17216,52,7,39,0.0 +17216,71,21.5,16,0.0 +17216,39,18,12,0.0 +17216,58,13.25,16,0.0 +17216,60,34,45,0.0 +17216,50,16.25,48,0.0 +17216,5,21.35,29,0.0 +17216,73,15,22,0.0 +17216,64,33.25,17,0.0 +17216,41,9.65,32,0.0 +17216,1,18,33,0.0 +17216,59,55,34,0.0 +17216,53,32.8,38,0.0 +17216,3,10,38,0.0 +17216,68,12.5,5,0.0 +17216,42,14,14,0.0 +17216,49,20,15,0.0 +17216,18,62.5,24,0.0 +17216,10,31,7,0.0 +17216,21,10,16,0.0 +17216,40,18.4,20,0.0 +17216,29,123.79,15,0.0 +17216,15,15.5,1,0.0 +17216,55,24,40,0.0 +17216,66,17,11,0.0 +17216,8,40,49,0.0 +17216,24,4.5,41,0.0 +17216,12,38,29,0.0 +17216,47,9.5,15,0.0 +17216,23,9,26,0.0 +17216,16,17.45,2,0.0 +17216,69,36,49,0.0 +17216,46,12,11,0.0 +17216,61,28.5,13,0.0 +17216,30,25.89,30,0.0 +17216,28,45.6,32,0.0 +17216,75,7.75,21,0.0 +17216,38,263.5,26,0.0 +17216,4,22,1,0.0 +17216,62,49.3,38,0.0 +17216,20,81,39,0.0 +17216,72,34.8,21,0.0 +17216,51,53,39,0.0 +17216,56,38,1,0.0 +17216,44,19.45,37,0.0 +17216,2,19,35,0.0 +17216,19,9.2,49,0.0 +17216,17,39,18,0.0 +17216,34,14,35,0.0 +17216,6,25,48,0.0 +17216,67,14,22,0.0 +17216,22,21,22,0.0 +17217,62,49.3,5,0.0 +17217,38,263.5,36,0.0 +17217,68,12.5,49,0.0 +17217,34,14,3,0.0 +17217,48,12.75,12,0.0 +17217,71,21.5,6,0.0 +17217,15,15.5,10,0.0 +17217,14,23.25,20,0.0 +17217,56,38,3,0.0 +17217,35,18,44,0.0 +17217,26,31.23,49,0.0 +17217,61,28.5,6,0.0 +17217,41,9.65,37,0.0 +17217,70,15,47,0.0 +17217,75,7.75,22,0.0 +17217,37,26,30,0.0 +17217,19,9.2,35,0.0 +17217,57,19.5,16,0.0 +17217,46,12,48,0.0 +17217,11,21,27,0.0 +17217,8,40,21,0.0 +17217,60,34,49,0.0 +17217,29,123.79,2,0.0 +17217,4,22,37,0.0 +17217,16,17.45,50,0.0 +17217,59,55,41,0.0 +17217,36,19,35,0.0 +17217,10,31,18,0.0 +17217,27,43.9,17,0.0 +17217,45,9.5,47,0.0 +17217,2,19,14,0.0 +17217,39,18,13,0.0 +17217,69,36,47,0.0 +17217,67,14,10,0.0 +17217,64,33.25,42,0.0 +17217,7,30,11,0.0 +17217,58,13.25,1,0.0 +17217,54,7.45,33,0.0 +17217,24,4.5,49,0.0 +17217,44,19.45,4,0.0 +17217,65,21.05,16,0.0 +17217,50,16.25,43,0.0 +17217,33,2.5,17,0.0 +17217,72,34.8,45,0.0 +17217,53,32.8,12,0.0 +17217,1,18,32,0.0 +17217,3,10,18,0.0 +17217,42,14,30,0.0 +17217,17,39,35,0.0 +17217,32,32,34,0.0 +17217,13,6,5,0.0 +17217,74,10,11,0.0 +17217,18,62.5,45,0.0 +17217,21,10,42,0.0 +17217,76,18,38,0.0 +17217,25,14,27,0.0 +17217,47,9.5,21,0.0 +17217,12,38,41,0.0 +17217,22,21,11,0.0 +17217,30,25.89,30,0.0 +17217,66,17,13,0.0 +17217,55,24,3,0.0 +17217,77,13,18,0.0 +17217,43,46,24,0.0 +17218,76,18,22,0.0 +17218,26,31.23,3,0.0 +17218,10,31,13,0.0 +17218,55,24,48,0.0 +17218,62,49.3,18,0.0 +17218,77,13,8,0.0 +17218,29,123.79,14,0.0 +17218,25,14,46,0.0 +17218,7,30,1,0.0 +17218,43,46,24,0.0 +17218,49,20,44,0.0 +17218,28,45.6,7,0.0 +17218,56,38,19,0.0 +17218,5,21.35,23,0.0 +17218,6,25,42,0.0 +17218,16,17.45,43,0.0 +17218,24,4.5,31,0.0 +17218,46,12,40,0.0 +17218,36,19,27,0.0 +17218,72,34.8,31,0.0 +17218,37,26,43,0.0 +17218,75,7.75,49,0.0 +17218,48,12.75,25,0.0 +17219,19,9.2,3,0.0 +17219,28,45.6,41,0.0 +17219,68,12.5,36,0.0 +17219,75,7.75,9,0.0 +17219,22,21,19,0.0 +17219,42,14,49,0.0 +17219,12,38,16,0.0 +17219,69,36,41,0.0 +17219,37,26,22,0.0 +17219,72,34.8,42,0.0 +17219,76,18,27,0.0 +17219,53,32.8,18,0.0 +17219,27,43.9,9,0.0 +17219,66,17,37,0.0 +17219,16,17.45,6,0.0 +17219,63,43.9,38,0.0 +17219,29,123.79,16,0.0 +17219,58,13.25,8,0.0 +17219,65,21.05,12,0.0 +17219,21,10,29,0.0 +17219,50,16.25,1,0.0 +17219,32,32,2,0.0 +17219,4,22,23,0.0 +17219,67,14,39,0.0 +17219,34,14,19,0.0 +17219,9,97,11,0.0 +17219,48,12.75,50,0.0 +17219,44,19.45,16,0.0 +17219,36,19,27,0.0 +17219,2,19,38,0.0 +17219,25,14,47,0.0 +17219,30,25.89,48,0.0 +17219,24,4.5,42,0.0 +17219,6,25,19,0.0 +17219,70,15,44,0.0 +17219,39,18,29,0.0 +17219,57,19.5,5,0.0 +17219,59,55,17,0.0 +17219,62,49.3,8,0.0 +17219,23,9,25,0.0 +17219,51,53,37,0.0 +17219,61,28.5,47,0.0 +17219,17,39,35,0.0 +17219,11,21,30,0.0 +17219,7,30,13,0.0 +17219,35,18,1,0.0 +17219,43,46,25,0.0 +17219,55,24,30,0.0 +17219,54,7.45,34,0.0 +17219,74,10,46,0.0 +17219,14,23.25,27,0.0 +17220,2,19,22,0.0 +17220,49,20,19,0.0 +17220,42,14,21,0.0 +17220,61,28.5,8,0.0 +17220,25,14,20,0.0 +17221,7,30,17,0.0 +17221,59,55,8,0.0 +17221,50,16.25,30,0.0 +17221,21,10,32,0.0 +17221,76,18,11,0.0 +17221,30,25.89,42,0.0 +17221,67,14,33,0.0 +17221,37,26,41,0.0 +17221,51,53,48,0.0 +17221,64,33.25,17,0.0 +17221,2,19,50,0.0 +17221,58,13.25,37,0.0 +17221,55,24,49,0.0 +17221,40,18.4,20,0.0 +17221,16,17.45,30,0.0 +17221,62,49.3,3,0.0 +17221,77,13,27,0.0 +17221,36,19,13,0.0 +17221,28,45.6,48,0.0 +17221,63,43.9,47,0.0 +17221,32,32,33,0.0 +17221,49,20,20,0.0 +17221,13,6,38,0.0 +17221,1,18,42,0.0 +17221,25,14,7,0.0 +17221,5,21.35,3,0.0 +17221,61,28.5,36,0.0 +17221,70,15,18,0.0 +17221,19,9.2,32,0.0 +17221,44,19.45,9,0.0 +17221,72,34.8,48,0.0 +17221,56,38,25,0.0 +17221,35,18,44,0.0 +17221,27,43.9,6,0.0 +17221,41,9.65,14,0.0 +17221,68,12.5,4,0.0 +17221,65,21.05,11,0.0 +17221,33,2.5,1,0.0 +17221,26,31.23,5,0.0 +17221,31,12.5,11,0.0 +17221,38,263.5,8,0.0 +17221,66,17,18,0.0 +17221,15,15.5,26,0.0 +17221,9,97,3,0.0 +17221,6,25,5,0.0 +17221,39,18,15,0.0 +17221,12,38,32,0.0 +17221,74,10,20,0.0 +17221,57,19.5,25,0.0 +17221,60,34,18,0.0 +17221,3,10,10,0.0 +17221,29,123.79,35,0.0 +17221,34,14,24,0.0 +17222,19,9.2,1,0.0 +17222,47,9.5,48,0.0 +17222,38,263.5,36,0.0 +17222,76,18,22,0.0 +17222,32,32,35,0.0 +17222,64,33.25,48,0.0 +17222,48,12.75,3,0.0 +17222,65,21.05,6,0.0 +17222,37,26,29,0.0 +17222,25,14,37,0.0 +17222,23,9,38,0.0 +17222,71,21.5,3,0.0 +17222,61,28.5,4,0.0 +17222,11,21,1,0.0 +17222,5,21.35,25,0.0 +17222,33,2.5,32,0.0 +17222,6,25,23,0.0 +17222,51,53,26,0.0 +17222,14,23.25,25,0.0 +17222,41,9.65,37,0.0 +17222,3,10,43,0.0 +17222,29,123.79,29,0.0 +17222,72,34.8,15,0.0 +17222,26,31.23,48,0.0 +17222,73,15,18,0.0 +17222,15,15.5,49,0.0 +17222,45,9.5,18,0.0 +17222,49,20,11,0.0 +17222,55,24,15,0.0 +17222,13,6,9,0.0 +17222,67,14,7,0.0 +17222,2,19,46,0.0 +17222,58,13.25,18,0.0 +17222,4,22,24,0.0 +17222,31,12.5,10,0.0 +17222,66,17,30,0.0 +17222,43,46,48,0.0 +17222,35,18,47,0.0 +17222,77,13,27,0.0 +17223,59,55,5,0.0 +17223,65,21.05,23,0.0 +17223,71,21.5,24,0.0 +17223,42,14,46,0.0 +17223,74,10,38,0.0 +17223,13,6,46,0.0 +17223,41,9.65,38,0.0 +17223,16,17.45,9,0.0 +17223,4,22,27,0.0 +17223,49,20,12,0.0 +17223,15,15.5,46,0.0 +17224,47,9.5,28,0.0 +17224,53,32.8,12,0.0 +17224,50,16.25,25,0.0 +17224,54,7.45,13,0.0 +17224,45,9.5,15,0.0 +17224,11,21,46,0.0 +17224,29,123.79,14,0.0 +17224,32,32,46,0.0 +17224,61,28.5,14,0.0 +17224,60,34,31,0.0 +17224,16,17.45,7,0.0 +17224,44,19.45,42,0.0 +17224,68,12.5,30,0.0 +17224,7,30,28,0.0 +17224,42,14,3,0.0 +17224,8,40,35,0.0 +17224,10,31,34,0.0 +17224,41,9.65,28,0.0 +17224,59,55,44,0.0 +17224,27,43.9,39,0.0 +17224,37,26,24,0.0 +17224,14,23.25,24,0.0 +17224,20,81,1,0.0 +17224,22,21,27,0.0 +17224,13,6,8,0.0 +17224,46,12,33,0.0 +17224,31,12.5,37,0.0 +17224,21,10,45,0.0 +17224,18,62.5,11,0.0 +17225,43,46,15,0.0 +17225,33,2.5,8,0.0 +17226,41,9.65,29,0.0 +17226,59,55,48,0.0 +17226,37,26,30,0.0 +17226,63,43.9,45,0.0 +17226,40,18.4,2,0.0 +17226,16,17.45,19,0.0 +17226,50,16.25,45,0.0 +17226,51,53,15,0.0 +17226,39,18,1,0.0 +17226,36,19,38,0.0 +17226,72,34.8,32,0.0 +17226,29,123.79,4,0.0 +17226,47,9.5,1,0.0 +17226,22,21,14,0.0 +17226,68,12.5,33,0.0 +17226,9,97,48,0.0 +17226,65,21.05,29,0.0 +17226,11,21,7,0.0 +17226,69,36,21,0.0 +17226,76,18,12,0.0 +17226,43,46,19,0.0 +17226,14,23.25,14,0.0 +17226,27,43.9,35,0.0 +17226,60,34,45,0.0 +17226,73,15,5,0.0 +17226,33,2.5,26,0.0 +17226,17,39,9,0.0 +17226,56,38,4,0.0 +17226,71,21.5,3,0.0 +17226,55,24,8,0.0 +17226,57,19.5,37,0.0 +17226,28,45.6,30,0.0 +17226,31,12.5,27,0.0 +17226,5,21.35,15,0.0 +17226,26,31.23,26,0.0 +17226,25,14,24,0.0 +17226,23,9,19,0.0 +17226,44,19.45,12,0.0 +17226,3,10,36,0.0 +17226,34,14,33,0.0 +17226,8,40,13,0.0 +17226,61,28.5,31,0.0 +17226,20,81,39,0.0 +17226,64,33.25,18,0.0 +17226,24,4.5,35,0.0 +17226,52,7,1,0.0 +17226,13,6,5,0.0 +17226,32,32,21,0.0 +17226,10,31,48,0.0 +17226,77,13,34,0.0 +17226,4,22,44,0.0 +17226,46,12,26,0.0 +17226,58,13.25,21,0.0 +17226,1,18,33,0.0 +17226,7,30,48,0.0 +17226,19,9.2,32,0.0 +17226,54,7.45,21,0.0 +17227,40,18.4,4,0.0 +17227,16,17.45,17,0.0 +17227,5,21.35,23,0.0 +17227,38,263.5,44,0.0 +17227,69,36,4,0.0 +17227,29,123.79,11,0.0 +17227,72,34.8,36,0.0 +17228,46,12,43,0.0 +17228,67,14,10,0.0 +17228,10,31,44,0.0 +17228,16,17.45,43,0.0 +17228,64,33.25,49,0.0 +17228,7,30,34,0.0 +17228,37,26,9,0.0 +17228,65,21.05,6,0.0 +17228,66,17,25,0.0 +17228,48,12.75,11,0.0 +17228,72,34.8,46,0.0 +17228,33,2.5,33,0.0 +17228,32,32,22,0.0 +17228,8,40,11,0.0 +17228,19,9.2,16,0.0 +17228,18,62.5,11,0.0 +17228,24,4.5,17,0.0 +17228,28,45.6,50,0.0 +17228,31,12.5,10,0.0 +17228,69,36,9,0.0 +17228,59,55,18,0.0 +17228,45,9.5,8,0.0 +17228,11,21,40,0.0 +17228,17,39,3,0.0 +17228,58,13.25,43,0.0 +17228,15,15.5,45,0.0 +17228,21,10,20,0.0 +17228,63,43.9,12,0.0 +17228,30,25.89,28,0.0 +17228,51,53,43,0.0 +17228,27,43.9,11,0.0 +17228,25,14,46,0.0 +17228,9,97,1,0.0 +17228,39,18,24,0.0 +17228,40,18.4,18,0.0 +17228,52,7,31,0.0 +17228,54,7.45,46,0.0 +17228,42,14,32,0.0 +17228,44,19.45,48,0.0 +17228,23,9,32,0.0 +17228,68,12.5,50,0.0 +17228,71,21.5,38,0.0 +17228,1,18,27,0.0 +17228,73,15,22,0.0 +17228,60,34,13,0.0 +17228,43,46,4,0.0 +17228,12,38,50,0.0 +17228,36,19,33,0.0 +17228,3,10,19,0.0 +17228,56,38,44,0.0 +17228,2,19,33,0.0 +17228,75,7.75,5,0.0 +17228,61,28.5,23,0.0 +17228,29,123.79,14,0.0 +17228,20,81,21,0.0 +17228,70,15,26,0.0 +17228,38,263.5,25,0.0 +17228,47,9.5,43,0.0 +17228,77,13,19,0.0 +17228,50,16.25,8,0.0 +17228,57,19.5,50,0.0 +17228,76,18,37,0.0 +17228,4,22,24,0.0 +17228,13,6,26,0.0 +17228,55,24,34,0.0 +17228,41,9.65,13,0.0 +17228,35,18,37,0.0 +17228,14,23.25,5,0.0 +17228,22,21,3,0.0 +17228,5,21.35,40,0.0 +17228,6,25,16,0.0 +17228,34,14,21,0.0 +17228,26,31.23,40,0.0 +17228,74,10,37,0.0 +17228,62,49.3,23,0.0 +17229,70,15,15,0.0 +17229,4,22,31,0.0 +17229,19,9.2,21,0.0 +17229,43,46,43,0.0 +17229,71,21.5,10,0.0 +17229,37,26,11,0.0 +17229,38,263.5,8,0.0 +17229,26,31.23,34,0.0 +17229,50,16.25,16,0.0 +17229,63,43.9,32,0.0 +17229,61,28.5,34,0.0 +17229,3,10,20,0.0 +17229,35,18,24,0.0 +17229,25,14,33,0.0 +17229,41,9.65,47,0.0 +17229,56,38,43,0.0 +17229,73,15,21,0.0 +17229,21,10,46,0.0 +17229,20,81,50,0.0 +17229,68,12.5,26,0.0 +17229,53,32.8,26,0.0 +17229,11,21,40,0.0 +17229,16,17.45,39,0.0 +17229,5,21.35,31,0.0 +17229,33,2.5,20,0.0 +17229,57,19.5,35,0.0 +17229,6,25,29,0.0 +17229,75,7.75,24,0.0 +17229,9,97,4,0.0 +17229,22,21,42,0.0 +17229,66,17,19,0.0 +17229,36,19,17,0.0 +17229,49,20,18,0.0 +17229,64,33.25,19,0.0 +17229,40,18.4,17,0.0 +17229,1,18,23,0.0 +17229,46,12,26,0.0 +17229,47,9.5,5,0.0 +17229,29,123.79,35,0.0 +17229,2,19,48,0.0 +17229,60,34,11,0.0 +17229,67,14,33,0.0 +17229,51,53,32,0.0 +17229,45,9.5,17,0.0 +17229,54,7.45,32,0.0 +17229,77,13,45,0.0 +17229,55,24,28,0.0 +17229,48,12.75,16,0.0 +17229,65,21.05,45,0.0 +17229,13,6,37,0.0 +17229,52,7,11,0.0 +17229,69,36,47,0.0 +17229,12,38,31,0.0 +17230,32,32,48,0.0 +17230,52,7,45,0.0 +17230,64,33.25,38,0.0 +17230,77,13,4,0.0 +17230,68,12.5,22,0.0 +17230,49,20,27,0.0 +17230,54,7.45,21,0.0 +17230,69,36,18,0.0 +17230,30,25.89,19,0.0 +17230,55,24,34,0.0 +17230,21,10,26,0.0 +17230,53,32.8,1,0.0 +17230,24,4.5,26,0.0 +17230,3,10,8,0.0 +17230,23,9,1,0.0 +17230,37,26,44,0.0 +17230,38,263.5,6,0.0 +17230,39,18,36,0.0 +17230,17,39,1,0.0 +17230,20,81,40,0.0 +17230,45,9.5,33,0.0 +17230,18,62.5,45,0.0 +17230,11,21,33,0.0 +17231,53,32.8,13,0.0 +17231,77,13,42,0.0 +17231,36,19,40,0.0 +17231,27,43.9,24,0.0 +17231,14,23.25,21,0.0 +17231,63,43.9,41,0.0 +17231,2,19,39,0.0 +17231,23,9,30,0.0 +17231,50,16.25,40,0.0 +17231,57,19.5,19,0.0 +17231,39,18,43,0.0 +17231,67,14,49,0.0 +17231,7,30,37,0.0 +17231,26,31.23,32,0.0 +17231,25,14,8,0.0 +17231,17,39,24,0.0 +17231,19,9.2,33,0.0 +17231,44,19.45,24,0.0 +17231,62,49.3,18,0.0 +17231,11,21,1,0.0 +17231,18,62.5,45,0.0 +17231,5,21.35,36,0.0 +17231,3,10,2,0.0 +17231,12,38,42,0.0 +17231,48,12.75,14,0.0 +17231,60,34,31,0.0 +17231,42,14,3,0.0 +17231,66,17,39,0.0 +17231,61,28.5,41,0.0 +17231,75,7.75,2,0.0 +17231,34,14,47,0.0 +17231,47,9.5,29,0.0 +17231,9,97,44,0.0 +17231,64,33.25,45,0.0 +17231,4,22,12,0.0 +17231,1,18,15,0.0 +17231,38,263.5,36,0.0 +17231,6,25,4,0.0 +17231,24,4.5,6,0.0 +17231,15,15.5,47,0.0 +17231,54,7.45,13,0.0 +17231,65,21.05,22,0.0 +17231,8,40,48,0.0 +17231,43,46,23,0.0 +17231,31,12.5,49,0.0 +17231,40,18.4,33,0.0 +17231,52,7,19,0.0 +17231,58,13.25,14,0.0 +17231,76,18,19,0.0 +17231,13,6,28,0.0 +17232,66,17,46,0.0 +17232,60,34,7,0.0 +17232,68,12.5,47,0.0 +17232,52,7,34,0.0 +17232,19,9.2,13,0.0 +17232,5,21.35,43,0.0 +17232,11,21,47,0.0 +17232,77,13,2,0.0 +17232,12,38,12,0.0 +17232,30,25.89,36,0.0 +17232,7,30,8,0.0 +17232,50,16.25,43,0.0 +17232,49,20,21,0.0 +17232,29,123.79,14,0.0 +17232,8,40,31,0.0 +17233,31,12.5,40,0.0 +17233,36,19,19,0.0 +17233,10,31,23,0.0 +17233,9,97,38,0.0 +17233,49,20,3,0.0 +17233,67,14,3,0.0 +17233,23,9,16,0.0 +17233,5,21.35,16,0.0 +17233,20,81,43,0.0 +17233,22,21,40,0.0 +17233,13,6,48,0.0 +17233,54,7.45,28,0.0 +17233,53,32.8,17,0.0 +17233,7,30,25,0.0 +17233,21,10,22,0.0 +17233,76,18,4,0.0 +17233,46,12,22,0.0 +17233,77,13,39,0.0 +17233,41,9.65,38,0.0 +17233,24,4.5,23,0.0 +17233,62,49.3,40,0.0 +17233,33,2.5,18,0.0 +17233,34,14,47,0.0 +17233,2,19,26,0.0 +17233,69,36,16,0.0 +17233,45,9.5,44,0.0 +17233,26,31.23,25,0.0 +17233,30,25.89,46,0.0 +17233,56,38,11,0.0 +17233,8,40,15,0.0 +17233,37,26,17,0.0 +17233,64,33.25,34,0.0 +17233,61,28.5,24,0.0 +17233,73,15,5,0.0 +17233,38,263.5,19,0.0 +17233,60,34,11,0.0 +17233,55,24,6,0.0 +17233,19,9.2,49,0.0 +17233,4,22,38,0.0 +17233,59,55,13,0.0 +17233,75,7.75,20,0.0 +17233,14,23.25,32,0.0 +17233,27,43.9,30,0.0 +17233,66,17,44,0.0 +17233,32,32,1,0.0 +17233,29,123.79,38,0.0 +17233,12,38,33,0.0 +17233,43,46,19,0.0 +17233,40,18.4,11,0.0 +17233,52,7,19,0.0 +17233,28,45.6,44,0.0 +17233,11,21,31,0.0 +17233,50,16.25,2,0.0 +17233,17,39,11,0.0 +17233,72,34.8,40,0.0 +17233,25,14,32,0.0 +17233,6,25,44,0.0 +17233,42,14,4,0.0 +17233,57,19.5,16,0.0 +17233,51,53,31,0.0 +17233,35,18,14,0.0 +17233,63,43.9,17,0.0 +17233,15,15.5,4,0.0 +17233,48,12.75,6,0.0 +17234,28,45.6,25,0.0 +17234,3,10,22,0.0 +17234,77,13,25,0.0 +17234,41,9.65,41,0.0 +17234,59,55,40,0.0 +17234,27,43.9,41,0.0 +17234,55,24,46,0.0 +17234,63,43.9,19,0.0 +17234,20,81,43,0.0 +17234,19,9.2,20,0.0 +17234,31,12.5,17,0.0 +17234,5,21.35,11,0.0 +17234,16,17.45,20,0.0 +17234,49,20,11,0.0 +17234,6,25,9,0.0 +17234,66,17,31,0.0 +17234,21,10,42,0.0 +17234,43,46,37,0.0 +17234,65,21.05,30,0.0 +17234,39,18,35,0.0 +17234,42,14,32,0.0 +17234,34,14,32,0.0 +17234,47,9.5,43,0.0 +17234,50,16.25,25,0.0 +17234,22,21,50,0.0 +17234,71,21.5,35,0.0 +17234,2,19,17,0.0 +17234,56,38,28,0.0 +17234,32,32,17,0.0 +17234,76,18,33,0.0 +17234,23,9,47,0.0 +17234,72,34.8,22,0.0 +17234,24,4.5,37,0.0 +17234,4,22,29,0.0 +17234,11,21,34,0.0 +17234,18,62.5,39,0.0 +17234,64,33.25,21,0.0 +17234,25,14,19,0.0 +17234,52,7,50,0.0 +17234,10,31,18,0.0 +17234,17,39,15,0.0 +17234,29,123.79,22,0.0 +17234,30,25.89,44,0.0 +17234,67,14,34,0.0 +17234,48,12.75,9,0.0 +17234,57,19.5,38,0.0 +17234,58,13.25,20,0.0 +17234,33,2.5,7,0.0 +17234,7,30,12,0.0 +17234,44,19.45,30,0.0 +17234,74,10,50,0.0 +17234,68,12.5,35,0.0 +17234,40,18.4,9,0.0 +17235,37,26,47,0.0 +17235,44,19.45,37,0.0 +17235,13,6,19,0.0 +17235,61,28.5,29,0.0 +17235,14,23.25,47,0.0 +17235,59,55,16,0.0 +17235,8,40,43,0.0 +17235,70,15,34,0.0 +17235,62,49.3,12,0.0 +17235,75,7.75,50,0.0 +17235,67,14,9,0.0 +17235,72,34.8,46,0.0 +17235,46,12,11,0.0 +17235,76,18,2,0.0 +17235,25,14,9,0.0 +17235,1,18,3,0.0 +17235,7,30,28,0.0 +17235,41,9.65,24,0.0 +17235,57,19.5,14,0.0 +17235,39,18,40,0.0 +17235,36,19,3,0.0 +17235,33,2.5,41,0.0 +17236,54,7.45,2,0.0 +17236,71,21.5,36,0.0 +17236,66,17,6,0.0 +17236,46,12,9,0.0 +17236,36,19,31,0.0 +17236,27,43.9,42,0.0 +17236,45,9.5,35,0.0 +17236,50,16.25,27,0.0 +17236,77,13,39,0.0 +17236,18,62.5,47,0.0 +17236,14,23.25,48,0.0 +17236,33,2.5,23,0.0 +17237,55,24,17,0.0 +17237,49,20,42,0.0 +17237,10,31,33,0.0 +17237,29,123.79,48,0.0 +17237,56,38,38,0.0 +17237,37,26,23,0.0 +17237,57,19.5,25,0.0 +17237,35,18,37,0.0 +17237,61,28.5,34,0.0 +17237,71,21.5,18,0.0 +17237,6,25,49,0.0 +17237,24,4.5,8,0.0 +17237,65,21.05,47,0.0 +17237,8,40,26,0.0 +17237,76,18,41,0.0 +17237,1,18,14,0.0 +17237,5,21.35,20,0.0 +17237,64,33.25,18,0.0 +17237,14,23.25,34,0.0 +17237,31,12.5,4,0.0 +17237,41,9.65,23,0.0 +17237,19,9.2,12,0.0 +17237,15,15.5,26,0.0 +17237,73,15,15,0.0 +17237,27,43.9,25,0.0 +17237,59,55,32,0.0 +17237,7,30,4,0.0 +17237,45,9.5,19,0.0 +17237,74,10,39,0.0 +17237,62,49.3,27,0.0 +17237,28,45.6,1,0.0 +17237,32,32,28,0.0 +17237,25,14,14,0.0 +17237,51,53,41,0.0 +17237,77,13,21,0.0 +17237,36,19,48,0.0 +17237,53,32.8,2,0.0 +17237,58,13.25,47,0.0 +17237,11,21,10,0.0 +17237,26,31.23,15,0.0 +17237,44,19.45,3,0.0 +17237,22,21,43,0.0 +17237,66,17,5,0.0 +17237,68,12.5,9,0.0 +17237,39,18,8,0.0 +17237,46,12,24,0.0 +17237,42,14,10,0.0 +17237,9,97,5,0.0 +17237,33,2.5,33,0.0 +17237,21,10,38,0.0 +17237,20,81,20,0.0 +17237,50,16.25,32,0.0 +17237,13,6,44,0.0 +17237,47,9.5,41,0.0 +17237,2,19,16,0.0 +17237,67,14,1,0.0 +17237,17,39,37,0.0 +17237,16,17.45,30,0.0 +17237,70,15,17,0.0 +17237,38,263.5,21,0.0 +17237,18,62.5,48,0.0 +17237,40,18.4,34,0.0 +17237,3,10,7,0.0 +17237,48,12.75,2,0.0 +17237,23,9,35,0.0 +17238,54,7.45,38,0.0 +17238,68,12.5,38,0.0 +17238,19,9.2,43,0.0 +17238,43,46,22,0.0 +17238,3,10,46,0.0 +17238,69,36,17,0.0 +17238,28,45.6,37,0.0 +17238,16,17.45,11,0.0 +17238,60,34,41,0.0 +17238,26,31.23,20,0.0 +17238,75,7.75,24,0.0 +17238,59,55,19,0.0 +17238,5,21.35,11,0.0 +17238,65,21.05,13,0.0 +17238,21,10,33,0.0 +17239,28,45.6,23,0.0 +17239,33,2.5,22,0.0 +17239,14,23.25,30,0.0 +17239,71,21.5,38,0.0 +17239,73,15,2,0.0 +17239,59,55,16,0.0 +17239,10,31,18,0.0 +17239,62,49.3,12,0.0 +17239,20,81,17,0.0 +17239,40,18.4,36,0.0 +17239,11,21,40,0.0 +17239,32,32,35,0.0 +17239,9,97,17,0.0 +17239,26,31.23,34,0.0 +17239,52,7,26,0.0 +17239,12,38,29,0.0 +17239,7,30,5,0.0 +17239,46,12,6,0.0 +17239,1,18,25,0.0 +17239,39,18,9,0.0 +17239,22,21,17,0.0 +17239,17,39,46,0.0 +17239,67,14,16,0.0 +17239,5,21.35,34,0.0 +17239,69,36,42,0.0 +17239,13,6,1,0.0 +17239,31,12.5,45,0.0 +17239,16,17.45,43,0.0 +17239,61,28.5,8,0.0 +17239,35,18,10,0.0 +17239,21,10,50,0.0 +17239,30,25.89,25,0.0 +17239,66,17,49,0.0 +17239,37,26,50,0.0 +17239,23,9,11,0.0 +17239,49,20,3,0.0 +17239,68,12.5,16,0.0 +17239,6,25,26,0.0 +17239,65,21.05,18,0.0 +17239,56,38,41,0.0 +17239,51,53,39,0.0 +17239,15,15.5,27,0.0 +17239,41,9.65,21,0.0 +17239,47,9.5,30,0.0 +17239,19,9.2,19,0.0 +17240,42,14,43,0.0 +17240,16,17.45,42,0.0 +17240,27,43.9,5,0.0 +17240,49,20,44,0.0 +17240,8,40,49,0.0 +17240,52,7,28,0.0 +17240,7,30,49,0.0 +17240,51,53,41,0.0 +17240,61,28.5,25,0.0 +17240,54,7.45,30,0.0 +17240,48,12.75,5,0.0 +17240,29,123.79,24,0.0 +17240,28,45.6,46,0.0 +17240,19,9.2,15,0.0 +17240,6,25,10,0.0 +17241,70,15,46,0.0 +17241,58,13.25,38,0.0 +17241,8,40,35,0.0 +17242,74,10,27,0.0 +17242,46,12,44,0.0 +17242,30,25.89,37,0.0 +17242,4,22,9,0.0 +17242,8,40,49,0.0 +17242,38,263.5,27,0.0 +17242,32,32,27,0.0 +17242,40,18.4,34,0.0 +17242,62,49.3,44,0.0 +17242,61,28.5,19,0.0 +17242,56,38,2,0.0 +17242,16,17.45,39,0.0 +17242,10,31,47,0.0 +17242,12,38,46,0.0 +17242,13,6,43,0.0 +17242,34,14,39,0.0 +17242,63,43.9,15,0.0 +17242,65,21.05,21,0.0 +17242,42,14,7,0.0 +17242,33,2.5,9,0.0 +17242,29,123.79,22,0.0 +17242,18,62.5,26,0.0 +17242,71,21.5,16,0.0 +17242,77,13,9,0.0 +17242,70,15,16,0.0 +17242,49,20,23,0.0 +17242,25,14,20,0.0 +17242,67,14,10,0.0 +17242,55,24,32,0.0 +17242,43,46,37,0.0 +17242,50,16.25,7,0.0 +17242,15,15.5,50,0.0 +17242,17,39,10,0.0 +17242,7,30,25,0.0 +17242,21,10,34,0.0 +17242,39,18,33,0.0 +17242,75,7.75,36,0.0 +17242,14,23.25,6,0.0 +17242,58,13.25,45,0.0 +17242,2,19,13,0.0 +17242,54,7.45,35,0.0 +17242,11,21,33,0.0 +17242,22,21,35,0.0 +17242,64,33.25,12,0.0 +17242,19,9.2,50,0.0 +17242,48,12.75,12,0.0 +17242,53,32.8,37,0.0 +17242,57,19.5,11,0.0 +17242,45,9.5,38,0.0 +17242,44,19.45,32,0.0 +17242,23,9,17,0.0 +17242,60,34,45,0.0 +17242,26,31.23,2,0.0 +17242,36,19,15,0.0 +17242,41,9.65,30,0.0 +17242,73,15,7,0.0 +17242,9,97,1,0.0 +17242,27,43.9,24,0.0 +17242,69,36,33,0.0 +17242,6,25,49,0.0 +17242,76,18,34,0.0 +17242,35,18,50,0.0 +17242,31,12.5,29,0.0 +17242,3,10,46,0.0 +17243,62,49.3,20,0.0 +17243,61,28.5,9,0.0 +17243,50,16.25,49,0.0 +17243,7,30,37,0.0 +17243,28,45.6,24,0.0 +17243,69,36,41,0.0 +17243,44,19.45,15,0.0 +17243,46,12,23,0.0 +17243,4,22,28,0.0 +17243,25,14,33,0.0 +17243,60,34,8,0.0 +17243,5,21.35,33,0.0 +17243,63,43.9,24,0.0 +17243,33,2.5,39,0.0 +17243,6,25,39,0.0 +17243,64,33.25,43,0.0 +17243,45,9.5,21,0.0 +17244,73,15,3,0.0 +17244,57,19.5,24,0.0 +17244,10,31,16,0.0 +17244,69,36,16,0.0 +17244,59,55,10,0.0 +17244,25,14,24,0.0 +17244,35,18,24,0.0 +17244,50,16.25,5,0.0 +17244,48,12.75,10,0.0 +17244,27,43.9,46,0.0 +17244,22,21,13,0.0 +17244,11,21,40,0.0 +17244,44,19.45,13,0.0 +17244,2,19,3,0.0 +17244,42,14,6,0.0 +17244,34,14,18,0.0 +17244,24,4.5,44,0.0 +17244,46,12,46,0.0 +17244,68,12.5,4,0.0 +17244,26,31.23,4,0.0 +17244,36,19,48,0.0 +17244,30,25.89,25,0.0 +17244,41,9.65,6,0.0 +17244,61,28.5,40,0.0 +17244,62,49.3,46,0.0 +17244,16,17.45,22,0.0 +17244,4,22,47,0.0 +17244,60,34,34,0.0 +17244,18,62.5,25,0.0 +17244,6,25,41,0.0 +17244,17,39,25,0.0 +17244,14,23.25,20,0.0 +17244,33,2.5,46,0.0 +17244,28,45.6,12,0.0 +17244,47,9.5,16,0.0 +17244,1,18,14,0.0 +17244,43,46,10,0.0 +17244,3,10,27,0.0 +17244,31,12.5,9,0.0 +17244,71,21.5,10,0.0 +17244,52,7,13,0.0 +17244,75,7.75,29,0.0 +17244,49,20,36,0.0 +17244,56,38,25,0.0 +17245,64,33.25,5,0.0 +17245,76,18,21,0.0 +17245,19,9.2,9,0.0 +17245,51,53,34,0.0 +17245,20,81,14,0.0 +17245,54,7.45,21,0.0 +17245,42,14,42,0.0 +17245,58,13.25,30,0.0 +17245,60,34,20,0.0 +17245,52,7,40,0.0 +17245,66,17,45,0.0 +17245,47,9.5,29,0.0 +17245,38,263.5,36,0.0 +17245,67,14,11,0.0 +17245,45,9.5,28,0.0 +17245,13,6,1,0.0 +17245,65,21.05,22,0.0 +17245,35,18,29,0.0 +17245,77,13,10,0.0 +17246,37,26,29,0.0 +17246,2,19,14,0.0 +17246,51,53,27,0.0 +17246,17,39,35,0.0 +17246,59,55,34,0.0 +17246,60,34,50,0.0 +17246,58,13.25,9,0.0 +17246,39,18,34,0.0 +17246,19,9.2,42,0.0 +17246,72,34.8,26,0.0 +17246,26,31.23,19,0.0 +17246,41,9.65,48,0.0 +17246,43,46,41,0.0 +17246,6,25,47,0.0 +17246,38,263.5,11,0.0 +17246,66,17,46,0.0 +17246,48,12.75,17,0.0 +17246,45,9.5,17,0.0 +17246,32,32,48,0.0 +17246,12,38,1,0.0 +17246,75,7.75,16,0.0 +17246,11,21,40,0.0 +17246,10,31,11,0.0 +17246,74,10,32,0.0 +17246,64,33.25,3,0.0 +17246,44,19.45,29,0.0 +17246,62,49.3,23,0.0 +17246,23,9,44,0.0 +17246,65,21.05,2,0.0 +17246,69,36,40,0.0 +17246,73,15,7,0.0 +17246,53,32.8,46,0.0 +17246,76,18,45,0.0 +17246,68,12.5,46,0.0 +17246,14,23.25,16,0.0 +17246,70,15,49,0.0 +17246,25,14,4,0.0 +17246,55,24,9,0.0 +17246,50,16.25,20,0.0 +17246,46,12,48,0.0 +17246,8,40,47,0.0 +17246,5,21.35,13,0.0 +17246,57,19.5,33,0.0 +17246,42,14,46,0.0 +17246,21,10,48,0.0 +17246,22,21,39,0.0 +17246,71,21.5,20,0.0 +17246,7,30,20,0.0 +17246,18,62.5,42,0.0 +17246,49,20,20,0.0 +17246,1,18,50,0.0 +17246,35,18,19,0.0 +17246,28,45.6,12,0.0 +17246,47,9.5,9,0.0 +17246,31,12.5,15,0.0 +17246,4,22,44,0.0 +17246,9,97,6,0.0 +17246,54,7.45,13,0.0 +17246,30,25.89,29,0.0 +17246,52,7,48,0.0 +17246,16,17.45,9,0.0 +17246,77,13,27,0.0 +17246,67,14,20,0.0 +17246,3,10,6,0.0 +17246,63,43.9,22,0.0 +17246,20,81,25,0.0 +17246,24,4.5,17,0.0 +17246,13,6,5,0.0 +17246,15,15.5,12,0.0 +17246,56,38,35,0.0 +17246,34,14,48,0.0 +17246,27,43.9,27,0.0 +17247,41,9.65,27,0.0 +17247,60,34,43,0.0 +17247,42,14,9,0.0 +17247,39,18,35,0.0 +17247,44,19.45,36,0.0 +17247,51,53,41,0.0 +17247,27,43.9,16,0.0 +17247,61,28.5,5,0.0 +17247,34,14,22,0.0 +17247,31,12.5,29,0.0 +17247,67,14,39,0.0 +17247,22,21,10,0.0 +17247,24,4.5,35,0.0 +17247,66,17,8,0.0 +17247,45,9.5,42,0.0 +17247,54,7.45,43,0.0 +17247,59,55,22,0.0 +17247,69,36,43,0.0 +17247,35,18,15,0.0 +17247,36,19,35,0.0 +17247,75,7.75,1,0.0 +17247,12,38,37,0.0 +17247,20,81,14,0.0 +17247,76,18,40,0.0 +17247,5,21.35,8,0.0 +17247,65,21.05,13,0.0 +17247,10,31,4,0.0 +17247,26,31.23,31,0.0 +17247,17,39,41,0.0 +17247,56,38,40,0.0 +17247,71,21.5,34,0.0 +17247,23,9,18,0.0 +17247,49,20,42,0.0 +17247,43,46,46,0.0 +17247,3,10,46,0.0 +17247,11,21,35,0.0 +17248,26,31.23,11,0.0 +17248,51,53,31,0.0 +17248,15,15.5,20,0.0 +17248,53,32.8,25,0.0 +17248,25,14,34,0.0 +17248,58,13.25,5,0.0 +17248,70,15,26,0.0 +17248,57,19.5,2,0.0 +17248,46,12,50,0.0 +17248,38,263.5,40,0.0 +17248,74,10,19,0.0 +17248,17,39,42,0.0 +17248,9,97,40,0.0 +17248,2,19,21,0.0 +17248,72,34.8,35,0.0 +17248,7,30,20,0.0 +17248,24,4.5,28,0.0 +17248,73,15,33,0.0 +17248,14,23.25,49,0.0 +17248,39,18,11,0.0 +17248,71,21.5,8,0.0 +17248,10,31,21,0.0 +17248,18,62.5,34,0.0 +17248,33,2.5,2,0.0 +17248,43,46,7,0.0 +17248,5,21.35,27,0.0 +17248,32,32,17,0.0 +17248,60,34,42,0.0 +17248,40,18.4,33,0.0 +17248,56,38,46,0.0 +17248,48,12.75,2,0.0 +17248,65,21.05,7,0.0 +17248,76,18,27,0.0 +17248,45,9.5,39,0.0 +17248,50,16.25,7,0.0 +17248,6,25,40,0.0 +17248,30,25.89,12,0.0 +17249,47,9.5,11,0.0 +17249,18,62.5,29,0.0 +17249,2,19,47,0.0 +17249,24,4.5,6,0.0 +17249,77,13,18,0.0 +17249,76,18,44,0.0 +17249,16,17.45,25,0.0 +17249,51,53,18,0.0 +17249,6,25,21,0.0 +17249,54,7.45,43,0.0 +17249,36,19,1,0.0 +17249,34,14,41,0.0 +17249,62,49.3,10,0.0 +17249,10,31,16,0.0 +17249,13,6,19,0.0 +17249,66,17,45,0.0 +17249,23,9,28,0.0 +17249,35,18,34,0.0 +17249,5,21.35,38,0.0 +17249,71,21.5,37,0.0 +17249,58,13.25,21,0.0 +17249,72,34.8,15,0.0 +17249,44,19.45,12,0.0 +17249,3,10,45,0.0 +17249,75,7.75,3,0.0 +17249,31,12.5,20,0.0 +17249,59,55,3,0.0 +17249,64,33.25,40,0.0 +17249,73,15,45,0.0 +17249,70,15,18,0.0 +17249,29,123.79,47,0.0 +17249,55,24,23,0.0 +17249,49,20,32,0.0 +17249,52,7,42,0.0 +17249,22,21,2,0.0 +17249,25,14,1,0.0 +17249,26,31.23,28,0.0 +17249,65,21.05,19,0.0 +17249,45,9.5,45,0.0 +17249,19,9.2,30,0.0 +17249,61,28.5,9,0.0 +17249,68,12.5,28,0.0 +17249,33,2.5,47,0.0 +17249,12,38,29,0.0 +17249,56,38,46,0.0 +17249,20,81,12,0.0 +17249,30,25.89,33,0.0 +17249,46,12,10,0.0 +17249,60,34,19,0.0 +17249,15,15.5,6,0.0 +17249,8,40,14,0.0 +17249,28,45.6,16,0.0 +17249,32,32,2,0.0 +17249,50,16.25,23,0.0 +17249,1,18,39,0.0 +17249,69,36,9,0.0 +17249,67,14,41,0.0 +17249,38,263.5,43,0.0 +17249,63,43.9,13,0.0 +17249,43,46,22,0.0 +17249,37,26,4,0.0 +17249,40,18.4,17,0.0 +17249,27,43.9,37,0.0 +17249,4,22,14,0.0 +17249,21,10,32,0.0 +17249,7,30,39,0.0 +17249,39,18,1,0.0 +17249,41,9.65,3,0.0 +17249,42,14,3,0.0 +17249,74,10,6,0.0 +17249,57,19.5,3,0.0 +17249,9,97,10,0.0 +17249,14,23.25,42,0.0 +17249,53,32.8,4,0.0 +17249,11,21,47,0.0 +17250,63,43.9,9,0.0 +17250,70,15,9,0.0 +17250,42,14,7,0.0 +17250,18,62.5,5,0.0 +17250,15,15.5,50,0.0 +17250,55,24,47,0.0 +17250,36,19,21,0.0 +17250,50,16.25,24,0.0 +17250,49,20,6,0.0 +17250,28,45.6,17,0.0 +17250,68,12.5,22,0.0 +17250,48,12.75,32,0.0 +17250,20,81,27,0.0 +17250,19,9.2,35,0.0 +17250,61,28.5,10,0.0 +17250,16,17.45,23,0.0 +17250,71,21.5,13,0.0 +17250,7,30,41,0.0 +17250,38,263.5,8,0.0 +17250,62,49.3,13,0.0 +17250,65,21.05,43,0.0 +17250,53,32.8,3,0.0 +17250,2,19,29,0.0 +17250,34,14,50,0.0 +17250,69,36,27,0.0 +17250,21,10,48,0.0 +17250,45,9.5,40,0.0 +17250,52,7,44,0.0 +17250,1,18,2,0.0 +17250,22,21,14,0.0 +17250,12,38,27,0.0 +17250,54,7.45,1,0.0 +17250,77,13,49,0.0 +17250,6,25,12,0.0 +17250,25,14,29,0.0 +17250,59,55,40,0.0 +17250,66,17,41,0.0 +17250,8,40,14,0.0 +17250,11,21,22,0.0 +17250,44,19.45,19,0.0 +17250,64,33.25,8,0.0 +17250,4,22,19,0.0 +17250,60,34,5,0.0 +17250,74,10,8,0.0 +17250,43,46,48,0.0 +17250,27,43.9,21,0.0 +17250,5,21.35,35,0.0 +17250,29,123.79,29,0.0 +17250,57,19.5,17,0.0 +17250,13,6,27,0.0 +17250,47,9.5,50,0.0 +17251,12,38,48,0.0 +17251,40,18.4,15,0.0 +17251,17,39,36,0.0 +17251,18,62.5,14,0.0 +17251,46,12,34,0.0 +17251,19,9.2,46,0.0 +17251,70,15,23,0.0 +17251,57,19.5,2,0.0 +17251,67,14,28,0.0 +17251,36,19,23,0.0 +17251,41,9.65,30,0.0 +17251,13,6,30,0.0 +17251,1,18,12,0.0 +17251,3,10,32,0.0 +17251,51,53,11,0.0 +17251,75,7.75,42,0.0 +17251,71,21.5,13,0.0 +17251,4,22,39,0.0 +17251,43,46,40,0.0 +17251,65,21.05,2,0.0 +17251,10,31,36,0.0 +17251,5,21.35,44,0.0 +17251,59,55,1,0.0 +17251,37,26,27,0.0 +17251,22,21,9,0.0 +17251,26,31.23,2,0.0 +17251,27,43.9,44,0.0 +17251,72,34.8,26,0.0 +17251,49,20,10,0.0 +17251,14,23.25,17,0.0 +17251,29,123.79,21,0.0 +17251,24,4.5,31,0.0 +17251,48,12.75,26,0.0 +17251,62,49.3,43,0.0 +17251,76,18,9,0.0 +17251,31,12.5,32,0.0 +17251,30,25.89,49,0.0 +17251,53,32.8,47,0.0 +17251,69,36,14,0.0 +17251,54,7.45,5,0.0 +17251,35,18,7,0.0 +17251,32,32,45,0.0 +17251,56,38,50,0.0 +17251,25,14,5,0.0 +17251,28,45.6,32,0.0 +17251,44,19.45,21,0.0 +17251,77,13,9,0.0 +17251,15,15.5,26,0.0 +17251,33,2.5,35,0.0 +17251,39,18,50,0.0 +17251,16,17.45,45,0.0 +17251,8,40,17,0.0 +17251,52,7,10,0.0 +17251,50,16.25,32,0.0 +17252,52,7,8,0.0 +17252,37,26,18,0.0 +17252,14,23.25,25,0.0 +17252,12,38,11,0.0 +17252,9,97,37,0.0 +17252,10,31,25,0.0 +17252,42,14,27,0.0 +17252,45,9.5,17,0.0 +17252,11,21,22,0.0 +17252,26,31.23,11,0.0 +17252,16,17.45,45,0.0 +17252,4,22,47,0.0 +17252,39,18,33,0.0 +17252,5,21.35,45,0.0 +17252,68,12.5,15,0.0 +17252,20,81,32,0.0 +17252,25,14,42,0.0 +17252,60,34,19,0.0 +17252,57,19.5,37,0.0 +17252,35,18,22,0.0 +17252,71,21.5,4,0.0 +17252,47,9.5,1,0.0 +17252,67,14,37,0.0 +17252,61,28.5,33,0.0 +17252,7,30,34,0.0 +17252,41,9.65,36,0.0 +17252,29,123.79,47,0.0 +17252,22,21,44,0.0 +17253,50,16.25,10,0.0 +17253,64,33.25,27,0.0 +17253,52,7,31,0.0 +17253,40,18.4,5,0.0 +17253,45,9.5,42,0.0 +17253,62,49.3,38,0.0 +17253,8,40,45,0.0 +17253,54,7.45,19,0.0 +17253,17,39,44,0.0 +17253,22,21,43,0.0 +17253,12,38,8,0.0 +17253,16,17.45,17,0.0 +17253,34,14,35,0.0 +17253,20,81,16,0.0 +17253,36,19,37,0.0 +17253,44,19.45,5,0.0 +17253,9,97,27,0.0 +17253,11,21,14,0.0 +17253,28,45.6,35,0.0 +17253,30,25.89,46,0.0 +17253,58,13.25,44,0.0 +17253,42,14,32,0.0 +17253,72,34.8,48,0.0 +17253,56,38,3,0.0 +17253,23,9,41,0.0 +17253,37,26,44,0.0 +17253,29,123.79,45,0.0 +17253,69,36,8,0.0 +17253,19,9.2,29,0.0 +17253,66,17,19,0.0 +17253,33,2.5,46,0.0 +17253,14,23.25,7,0.0 +17253,73,15,2,0.0 +17253,75,7.75,27,0.0 +17253,51,53,25,0.0 +17253,48,12.75,49,0.0 +17253,67,14,15,0.0 +17253,10,31,42,0.0 +17253,2,19,50,0.0 +17253,4,22,45,0.0 +17253,13,6,31,0.0 +17253,25,14,44,0.0 +17253,57,19.5,50,0.0 +17253,31,12.5,25,0.0 +17253,41,9.65,13,0.0 +17253,24,4.5,20,0.0 +17253,71,21.5,33,0.0 +17253,21,10,42,0.0 +17253,68,12.5,44,0.0 +17253,3,10,36,0.0 +17253,63,43.9,7,0.0 +17253,7,30,19,0.0 +17253,70,15,3,0.0 +17253,46,12,5,0.0 +17253,5,21.35,21,0.0 +17253,47,9.5,18,0.0 +17253,74,10,4,0.0 +17253,60,34,6,0.0 +17253,15,15.5,8,0.0 +17253,32,32,7,0.0 +17253,43,46,37,0.0 +17253,1,18,12,0.0 +17253,27,43.9,28,0.0 +17253,65,21.05,40,0.0 +17254,25,14,27,0.0 +17254,5,21.35,36,0.0 +17254,27,43.9,37,0.0 +17254,73,15,29,0.0 +17254,6,25,11,0.0 +17254,21,10,46,0.0 +17254,2,19,9,0.0 +17254,36,19,24,0.0 +17254,43,46,4,0.0 +17254,23,9,9,0.0 +17254,53,32.8,43,0.0 +17254,49,20,1,0.0 +17254,52,7,12,0.0 +17254,42,14,39,0.0 +17254,34,14,9,0.0 +17254,4,22,25,0.0 +17254,15,15.5,24,0.0 +17254,41,9.65,28,0.0 +17254,46,12,19,0.0 +17254,63,43.9,24,0.0 +17254,18,62.5,5,0.0 +17254,30,25.89,35,0.0 +17254,26,31.23,34,0.0 +17254,56,38,44,0.0 +17254,11,21,13,0.0 +17254,51,53,18,0.0 +17254,10,31,29,0.0 +17254,39,18,17,0.0 +17254,33,2.5,47,0.0 +17254,69,36,26,0.0 +17254,68,12.5,46,0.0 +17254,32,32,38,0.0 +17254,35,18,46,0.0 +17254,19,9.2,16,0.0 +17254,61,28.5,15,0.0 +17254,62,49.3,7,0.0 +17254,22,21,14,0.0 +17254,57,19.5,8,0.0 +17254,67,14,49,0.0 +17254,45,9.5,35,0.0 +17254,31,12.5,30,0.0 +17254,65,21.05,39,0.0 +17255,47,9.5,49,0.0 +17256,8,40,40,0.0 +17256,4,22,49,0.0 +17256,60,34,29,0.0 +17256,63,43.9,30,0.0 +17256,55,24,8,0.0 +17256,46,12,39,0.0 +17256,57,19.5,3,0.0 +17256,47,9.5,19,0.0 +17256,13,6,45,0.0 +17256,62,49.3,37,0.0 +17256,48,12.75,15,0.0 +17256,66,17,32,0.0 +17256,27,43.9,13,0.0 +17256,11,21,32,0.0 +17256,72,34.8,27,0.0 +17256,58,13.25,8,0.0 +17256,17,39,25,0.0 +17256,9,97,40,0.0 +17256,49,20,1,0.0 +17256,32,32,49,0.0 +17256,65,21.05,27,0.0 +17256,37,26,3,0.0 +17256,22,21,5,0.0 +17256,36,19,21,0.0 +17256,38,263.5,27,0.0 +17256,24,4.5,11,0.0 +17256,61,28.5,37,0.0 +17256,16,17.45,25,0.0 +17256,77,13,33,0.0 +17256,69,36,21,0.0 +17256,73,15,22,0.0 +17256,75,7.75,42,0.0 +17256,26,31.23,45,0.0 +17256,12,38,3,0.0 +17256,71,21.5,45,0.0 +17256,70,15,16,0.0 +17256,76,18,25,0.0 +17256,10,31,49,0.0 +17256,34,14,22,0.0 +17256,33,2.5,6,0.0 +17256,21,10,37,0.0 +17256,25,14,5,0.0 +17256,59,55,27,0.0 +17256,43,46,49,0.0 +17256,30,25.89,11,0.0 +17256,31,12.5,36,0.0 +17256,51,53,33,0.0 +17256,50,16.25,5,0.0 +17256,1,18,16,0.0 +17256,64,33.25,16,0.0 +17256,45,9.5,38,0.0 +17256,19,9.2,4,0.0 +17256,2,19,17,0.0 +17256,41,9.65,37,0.0 +17256,5,21.35,42,0.0 +17256,42,14,9,0.0 +17256,74,10,48,0.0 +17256,53,32.8,35,0.0 +17256,44,19.45,30,0.0 +17256,7,30,5,0.0 +17256,3,10,10,0.0 +17256,39,18,27,0.0 +17257,41,9.65,28,0.0 +17257,40,18.4,38,0.0 +17257,3,10,35,0.0 +17257,44,19.45,6,0.0 +17257,33,2.5,14,0.0 +17257,77,13,23,0.0 +17257,76,18,43,0.0 +17257,70,15,10,0.0 +17257,61,28.5,35,0.0 +17257,12,38,39,0.0 +17257,18,62.5,49,0.0 +17257,58,13.25,5,0.0 +17257,38,263.5,4,0.0 +17257,21,10,6,0.0 +17257,2,19,30,0.0 +17257,34,14,39,0.0 +17257,45,9.5,49,0.0 +17257,64,33.25,26,0.0 +17257,73,15,16,0.0 +17257,14,23.25,44,0.0 +17257,9,97,34,0.0 +17257,56,38,7,0.0 +17257,1,18,36,0.0 +17257,29,123.79,27,0.0 +17257,75,7.75,7,0.0 +17257,25,14,9,0.0 +17257,26,31.23,41,0.0 +17257,10,31,39,0.0 +17257,72,34.8,25,0.0 +17257,7,30,21,0.0 +17257,71,21.5,28,0.0 +17257,8,40,33,0.0 +17257,32,32,12,0.0 +17257,11,21,38,0.0 +17257,65,21.05,9,0.0 +17257,24,4.5,37,0.0 +17257,31,12.5,22,0.0 +17257,17,39,2,0.0 +17257,20,81,31,0.0 +17257,55,24,6,0.0 +17257,5,21.35,21,0.0 +17257,49,20,33,0.0 +17257,43,46,32,0.0 +17258,25,14,42,0.0 +17258,62,49.3,33,0.0 +17258,38,263.5,38,0.0 +17258,29,123.79,3,0.0 +17258,24,4.5,14,0.0 +17258,73,15,30,0.0 +17258,71,21.5,5,0.0 +17258,44,19.45,46,0.0 +17258,45,9.5,30,0.0 +17258,59,55,45,0.0 +17258,20,81,28,0.0 +17258,68,12.5,6,0.0 +17258,39,18,45,0.0 +17258,11,21,32,0.0 +17258,26,31.23,45,0.0 +17258,63,43.9,37,0.0 +17258,76,18,30,0.0 +17259,53,32.8,3,0.0 +17259,26,31.23,11,0.0 +17259,62,49.3,4,0.0 +17259,24,4.5,28,0.0 +17259,34,14,16,0.0 +17259,21,10,28,0.0 +17259,11,21,6,0.0 +17259,7,30,3,0.0 +17259,37,26,28,0.0 +17259,31,12.5,27,0.0 +17259,61,28.5,30,0.0 +17259,22,21,50,0.0 +17259,71,21.5,20,0.0 +17259,18,62.5,50,0.0 +17259,10,31,13,0.0 +17259,68,12.5,8,0.0 +17259,46,12,25,0.0 +17259,57,19.5,22,0.0 +17259,52,7,3,0.0 +17259,32,32,16,0.0 +17259,20,81,4,0.0 +17259,74,10,41,0.0 +17259,25,14,33,0.0 +17259,67,14,18,0.0 +17259,69,36,4,0.0 +17259,33,2.5,44,0.0 +17259,59,55,19,0.0 +17259,66,17,24,0.0 +17259,51,53,16,0.0 +17259,65,21.05,11,0.0 +17259,63,43.9,23,0.0 +17259,35,18,14,0.0 +17259,64,33.25,10,0.0 +17259,36,19,47,0.0 +17259,5,21.35,33,0.0 +17259,28,45.6,30,0.0 +17259,17,39,14,0.0 +17259,60,34,7,0.0 +17259,50,16.25,20,0.0 +17259,9,97,4,0.0 +17259,42,14,36,0.0 +17259,6,25,5,0.0 +17259,47,9.5,27,0.0 +17259,44,19.45,49,0.0 +17259,39,18,49,0.0 +17259,29,123.79,32,0.0 +17259,48,12.75,28,0.0 +17259,56,38,6,0.0 +17259,13,6,19,0.0 +17260,24,4.5,16,0.0 +17260,13,6,1,0.0 +17260,47,9.5,40,0.0 +17260,77,13,6,0.0 +17260,59,55,43,0.0 +17260,11,21,6,0.0 +17260,53,32.8,23,0.0 +17260,1,18,50,0.0 +17260,6,25,22,0.0 +17261,47,9.5,15,0.0 +17261,33,2.5,20,0.0 +17261,72,34.8,30,0.0 +17261,73,15,21,0.0 +17261,20,81,38,0.0 +17261,11,21,21,0.0 +17261,48,12.75,29,0.0 +17261,17,39,32,0.0 +17261,42,14,35,0.0 +17261,3,10,44,0.0 +17261,60,34,46,0.0 +17261,9,97,17,0.0 +17261,68,12.5,29,0.0 +17261,27,43.9,11,0.0 +17261,45,9.5,44,0.0 +17261,37,26,42,0.0 +17261,76,18,12,0.0 +17261,58,13.25,5,0.0 +17261,53,32.8,26,0.0 +17261,1,18,50,0.0 +17261,40,18.4,14,0.0 +17261,6,25,31,0.0 +17261,28,45.6,34,0.0 +17261,39,18,27,0.0 +17261,43,46,17,0.0 +17261,25,14,46,0.0 +17261,8,40,20,0.0 +17261,15,15.5,44,0.0 +17261,51,53,24,0.0 +17261,67,14,3,0.0 +17261,21,10,2,0.0 +17262,38,263.5,16,0.0 +17262,52,7,16,0.0 +17262,49,20,40,0.0 +17262,76,18,32,0.0 +17262,27,43.9,6,0.0 +17263,26,31.23,31,0.0 +17263,37,26,8,0.0 +17263,71,21.5,27,0.0 +17263,76,18,17,0.0 +17263,16,17.45,8,0.0 +17263,9,97,14,0.0 +17263,77,13,41,0.0 +17263,38,263.5,20,0.0 +17263,66,17,7,0.0 +17263,46,12,39,0.0 +17264,18,62.5,20,0.0 +17264,13,6,50,0.0 +17264,21,10,27,0.0 +17264,50,16.25,29,0.0 +17264,72,34.8,6,0.0 +17264,16,17.45,47,0.0 +17264,65,21.05,27,0.0 +17264,8,40,32,0.0 +17264,51,53,36,0.0 +17264,27,43.9,19,0.0 +17264,54,7.45,40,0.0 +17264,33,2.5,38,0.0 +17264,55,24,30,0.0 +17264,3,10,35,0.0 +17264,44,19.45,35,0.0 +17264,14,23.25,40,0.0 +17264,32,32,36,0.0 +17264,4,22,6,0.0 +17264,67,14,32,0.0 +17264,9,97,12,0.0 +17264,23,9,23,0.0 +17264,69,36,40,0.0 +17264,7,30,36,0.0 +17264,49,20,50,0.0 +17264,48,12.75,42,0.0 +17264,70,15,19,0.0 +17264,2,19,18,0.0 +17264,24,4.5,30,0.0 +17264,1,18,11,0.0 +17264,39,18,17,0.0 +17264,59,55,25,0.0 +17264,28,45.6,46,0.0 +17264,46,12,23,0.0 +17264,5,21.35,49,0.0 +17264,15,15.5,45,0.0 +17264,12,38,18,0.0 +17264,19,9.2,48,0.0 +17264,56,38,32,0.0 +17264,73,15,26,0.0 +17264,31,12.5,10,0.0 +17264,11,21,38,0.0 +17264,68,12.5,47,0.0 +17264,66,17,23,0.0 +17264,37,26,49,0.0 +17264,30,25.89,8,0.0 +17264,53,32.8,42,0.0 +17264,60,34,45,0.0 +17264,74,10,32,0.0 +17264,43,46,21,0.0 +17264,58,13.25,39,0.0 +17264,35,18,33,0.0 +17264,41,9.65,4,0.0 +17264,76,18,27,0.0 +17264,75,7.75,3,0.0 +17264,22,21,5,0.0 +17264,10,31,19,0.0 +17264,42,14,42,0.0 +17264,47,9.5,1,0.0 +17264,6,25,6,0.0 +17264,38,263.5,26,0.0 +17264,26,31.23,42,0.0 +17264,62,49.3,32,0.0 +17264,17,39,25,0.0 +17264,20,81,27,0.0 +17264,36,19,45,0.0 +17264,45,9.5,10,0.0 +17264,29,123.79,20,0.0 +17264,61,28.5,1,0.0 +17264,77,13,18,0.0 +17264,25,14,37,0.0 +17264,40,18.4,13,0.0 +17264,63,43.9,15,0.0 +17264,64,33.25,20,0.0 +17264,34,14,37,0.0 +17265,53,32.8,46,0.0 +17265,2,19,50,0.0 +17266,46,12,47,0.0 +17266,55,24,46,0.0 +17266,42,14,30,0.0 +17266,7,30,44,0.0 +17266,25,14,41,0.0 +17266,49,20,3,0.0 +17266,27,43.9,37,0.0 +17266,14,23.25,30,0.0 +17266,28,45.6,45,0.0 +17266,58,13.25,17,0.0 +17266,35,18,17,0.0 +17266,1,18,20,0.0 +17266,67,14,48,0.0 +17266,30,25.89,49,0.0 +17266,23,9,39,0.0 +17266,9,97,9,0.0 +17266,75,7.75,6,0.0 +17266,45,9.5,48,0.0 +17266,44,19.45,8,0.0 +17266,39,18,29,0.0 +17266,71,21.5,25,0.0 +17266,51,53,46,0.0 +17266,47,9.5,48,0.0 +17266,24,4.5,2,0.0 +17266,50,16.25,28,0.0 +17266,11,21,20,0.0 +17266,40,18.4,19,0.0 +17266,60,34,46,0.0 +17266,5,21.35,16,0.0 +17266,52,7,2,0.0 +17266,2,19,11,0.0 +17266,72,34.8,31,0.0 +17266,33,2.5,13,0.0 +17266,56,38,49,0.0 +17266,66,17,27,0.0 +17266,57,19.5,50,0.0 +17266,37,26,44,0.0 +17266,15,15.5,38,0.0 +17266,65,21.05,22,0.0 +17266,63,43.9,48,0.0 +17266,18,62.5,47,0.0 +17266,22,21,7,0.0 +17266,48,12.75,49,0.0 +17266,64,33.25,16,0.0 +17266,19,9.2,18,0.0 +17266,34,14,3,0.0 +17266,76,18,49,0.0 +17266,68,12.5,40,0.0 +17266,26,31.23,14,0.0 +17266,54,7.45,10,0.0 +17266,6,25,8,0.0 +17266,41,9.65,8,0.0 +17266,38,263.5,11,0.0 +17266,17,39,4,0.0 +17266,43,46,50,0.0 +17266,4,22,34,0.0 +17266,73,15,38,0.0 +17266,77,13,46,0.0 +17266,70,15,5,0.0 +17266,3,10,29,0.0 +17266,32,32,1,0.0 +17266,59,55,12,0.0 +17266,8,40,42,0.0 +17266,20,81,22,0.0 +17266,10,31,43,0.0 +17266,29,123.79,12,0.0 +17266,21,10,25,0.0 +17266,13,6,13,0.0 +17267,65,21.05,36,0.0 +17267,18,62.5,5,0.0 +17267,49,20,27,0.0 +17267,28,45.6,33,0.0 +17267,61,28.5,1,0.0 +17267,41,9.65,44,0.0 +17267,20,81,20,0.0 +17267,25,14,46,0.0 +17267,4,22,13,0.0 +17267,43,46,27,0.0 +17267,8,40,12,0.0 +17267,51,53,30,0.0 +17267,50,16.25,8,0.0 +17267,66,17,44,0.0 +17268,61,28.5,35,0.0 +17268,34,14,48,0.0 +17268,25,14,25,0.0 +17268,70,15,3,0.0 +17268,43,46,13,0.0 +17268,35,18,9,0.0 +17268,77,13,22,0.0 +17268,24,4.5,18,0.0 +17268,7,30,14,0.0 +17268,64,33.25,24,0.0 +17268,46,12,26,0.0 +17268,22,21,31,0.0 +17268,30,25.89,41,0.0 +17268,56,38,3,0.0 +17268,76,18,26,0.0 +17268,27,43.9,14,0.0 +17268,48,12.75,19,0.0 +17268,51,53,41,0.0 +17268,50,16.25,41,0.0 +17268,11,21,1,0.0 +17268,62,49.3,31,0.0 +17268,10,31,43,0.0 +17268,58,13.25,6,0.0 +17268,31,12.5,18,0.0 +17268,74,10,43,0.0 +17268,3,10,3,0.0 +17268,65,21.05,39,0.0 +17268,60,34,35,0.0 +17268,67,14,23,0.0 +17268,17,39,47,0.0 +17268,1,18,46,0.0 +17268,75,7.75,36,0.0 +17268,63,43.9,44,0.0 +17268,5,21.35,49,0.0 +17268,2,19,1,0.0 +17268,68,12.5,50,0.0 +17268,49,20,8,0.0 +17268,72,34.8,34,0.0 +17268,59,55,34,0.0 +17268,21,10,42,0.0 +17268,71,21.5,45,0.0 +17268,16,17.45,21,0.0 +17268,23,9,43,0.0 +17268,4,22,7,0.0 +17268,36,19,22,0.0 +17268,9,97,9,0.0 +17268,29,123.79,49,0.0 +17268,66,17,4,0.0 +17268,55,24,15,0.0 +17268,44,19.45,48,0.0 +17268,45,9.5,46,0.0 +17268,12,38,21,0.0 +17268,53,32.8,47,0.0 +17268,37,26,28,0.0 +17268,28,45.6,12,0.0 +17268,47,9.5,36,0.0 +17269,26,31.23,17,0.0 +17269,9,97,6,0.0 +17269,22,21,6,0.0 +17269,66,17,14,0.0 +17269,64,33.25,28,0.0 +17270,68,12.5,29,0.0 +17270,4,22,15,0.0 +17270,67,14,37,0.0 +17270,13,6,33,0.0 +17270,27,43.9,40,0.0 +17270,30,25.89,38,0.0 +17270,20,81,25,0.0 +17270,55,24,29,0.0 +17270,18,62.5,48,0.0 +17270,38,263.5,5,0.0 +17270,56,38,23,0.0 +17270,8,40,33,0.0 +17270,1,18,28,0.0 +17270,26,31.23,27,0.0 +17270,11,21,12,0.0 +17270,14,23.25,49,0.0 +17270,32,32,41,0.0 +17270,75,7.75,25,0.0 +17270,17,39,45,0.0 +17270,49,20,15,0.0 +17270,60,34,32,0.0 +17270,46,12,15,0.0 +17270,72,34.8,42,0.0 +17270,48,12.75,39,0.0 +17270,58,13.25,24,0.0 +17270,35,18,35,0.0 +17270,41,9.65,36,0.0 +17270,54,7.45,23,0.0 +17270,73,15,4,0.0 +17270,23,9,43,0.0 +17270,57,19.5,6,0.0 +17270,50,16.25,19,0.0 +17270,70,15,24,0.0 +17270,42,14,37,0.0 +17270,45,9.5,38,0.0 +17270,77,13,10,0.0 +17270,12,38,28,0.0 +17270,65,21.05,14,0.0 +17270,64,33.25,20,0.0 +17270,47,9.5,38,0.0 +17270,19,9.2,26,0.0 +17270,21,10,43,0.0 +17270,52,7,1,0.0 +17270,24,4.5,8,0.0 +17270,29,123.79,46,0.0 +17270,31,12.5,27,0.0 +17270,36,19,10,0.0 +17270,16,17.45,3,0.0 +17270,33,2.5,19,0.0 +17270,61,28.5,39,0.0 +17270,6,25,8,0.0 +17270,22,21,17,0.0 +17270,7,30,30,0.0 +17270,51,53,33,0.0 +17270,69,36,46,0.0 +17270,76,18,2,0.0 +17270,34,14,24,0.0 +17270,71,21.5,32,0.0 +17270,44,19.45,12,0.0 +17270,59,55,19,0.0 +17270,28,45.6,28,0.0 +17270,74,10,22,0.0 +17270,53,32.8,30,0.0 +17270,63,43.9,44,0.0 +17270,25,14,46,0.0 +17270,40,18.4,4,0.0 +17270,2,19,30,0.0 +17270,5,21.35,43,0.0 +17270,15,15.5,37,0.0 +17270,3,10,21,0.0 +17270,39,18,47,0.0 +17270,66,17,19,0.0 +17270,10,31,40,0.0 +17270,9,97,25,0.0 +17270,43,46,36,0.0 +17270,37,26,45,0.0 +17270,62,49.3,34,0.0 +17271,4,22,43,0.0 +17271,14,23.25,16,0.0 +17271,63,43.9,42,0.0 +17271,41,9.65,40,0.0 +17271,74,10,22,0.0 +17271,11,21,14,0.0 +17271,12,38,15,0.0 +17271,20,81,40,0.0 +17271,68,12.5,21,0.0 +17271,71,21.5,41,0.0 +17271,69,36,36,0.0 +17271,15,15.5,39,0.0 +17271,36,19,5,0.0 +17271,76,18,14,0.0 +17271,67,14,29,0.0 +17271,33,2.5,27,0.0 +17271,61,28.5,8,0.0 +17271,10,31,11,0.0 +17271,48,12.75,39,0.0 +17271,47,9.5,20,0.0 +17272,25,14,41,0.0 +17272,64,33.25,25,0.0 +17272,46,12,18,0.0 +17272,57,19.5,35,0.0 +17272,59,55,24,0.0 +17272,66,17,35,0.0 +17272,51,53,42,0.0 +17272,4,22,6,0.0 +17272,34,14,31,0.0 +17272,10,31,37,0.0 +17272,2,19,50,0.0 +17272,28,45.6,16,0.0 +17272,62,49.3,8,0.0 +17272,15,15.5,7,0.0 +17272,68,12.5,19,0.0 +17272,36,19,33,0.0 +17272,8,40,46,0.0 +17272,52,7,29,0.0 +17272,67,14,40,0.0 +17272,77,13,26,0.0 +17272,9,97,19,0.0 +17272,14,23.25,25,0.0 +17272,18,62.5,16,0.0 +17272,23,9,35,0.0 +17272,76,18,2,0.0 +17272,54,7.45,46,0.0 +17272,65,21.05,38,0.0 +17273,42,14,7,0.0 +17273,47,9.5,39,0.0 +17273,22,21,43,0.0 +17273,21,10,31,0.0 +17273,54,7.45,42,0.0 +17273,76,18,32,0.0 +17273,56,38,19,0.0 +17273,67,14,37,0.0 +17273,33,2.5,9,0.0 +17273,32,32,25,0.0 +17273,2,19,30,0.0 +17273,75,7.75,33,0.0 +17273,36,19,30,0.0 +17274,17,39,16,0.0 +17274,24,4.5,32,0.0 +17274,76,18,14,0.0 +17274,47,9.5,18,0.0 +17274,12,38,4,0.0 +17275,1,18,40,0.0 +17275,52,7,46,0.0 +17275,2,19,19,0.0 +17275,64,33.25,11,0.0 +17275,45,9.5,29,0.0 +17275,15,15.5,35,0.0 +17275,33,2.5,14,0.0 +17275,20,81,37,0.0 +17275,23,9,25,0.0 +17275,59,55,13,0.0 +17275,58,13.25,19,0.0 +17275,30,25.89,40,0.0 +17275,68,12.5,28,0.0 +17275,22,21,24,0.0 +17275,4,22,50,0.0 +17275,12,38,23,0.0 +17275,16,17.45,46,0.0 +17275,34,14,43,0.0 +17275,14,23.25,46,0.0 +17275,76,18,34,0.0 +17275,10,31,20,0.0 +17275,3,10,15,0.0 +17275,70,15,4,0.0 +17275,72,34.8,50,0.0 +17275,75,7.75,31,0.0 +17275,25,14,19,0.0 +17275,32,32,29,0.0 +17275,47,9.5,3,0.0 +17275,54,7.45,39,0.0 +17275,27,43.9,41,0.0 +17275,50,16.25,39,0.0 +17275,8,40,28,0.0 +17275,5,21.35,19,0.0 +17275,38,263.5,13,0.0 +17275,61,28.5,16,0.0 +17275,24,4.5,29,0.0 +17275,53,32.8,28,0.0 +17275,28,45.6,17,0.0 +17276,54,7.45,25,0.0 +17276,36,19,23,0.0 +17276,6,25,17,0.0 +17276,55,24,29,0.0 +17276,34,14,14,0.0 +17276,57,19.5,48,0.0 +17276,21,10,46,0.0 +17276,44,19.45,47,0.0 +17276,48,12.75,9,0.0 +17276,74,10,22,0.0 +17276,65,21.05,19,0.0 +17276,32,32,49,0.0 +17276,25,14,10,0.0 +17276,51,53,40,0.0 +17276,1,18,10,0.0 +17276,61,28.5,14,0.0 +17276,23,9,10,0.0 +17276,64,33.25,43,0.0 +17276,69,36,11,0.0 +17276,4,22,14,0.0 +17276,49,20,25,0.0 +17276,2,19,12,0.0 +17276,73,15,46,0.0 +17276,53,32.8,42,0.0 +17276,19,9.2,17,0.0 +17276,62,49.3,45,0.0 +17276,41,9.65,33,0.0 +17276,37,26,31,0.0 +17276,3,10,46,0.0 +17276,77,13,39,0.0 +17276,14,23.25,5,0.0 +17276,45,9.5,47,0.0 +17276,71,21.5,35,0.0 +17276,70,15,22,0.0 +17277,50,16.25,19,0.0 +17277,15,15.5,47,0.0 +17277,1,18,22,0.0 +17277,61,28.5,36,0.0 +17277,49,20,19,0.0 +17277,59,55,35,0.0 +17277,48,12.75,18,0.0 +17277,9,97,41,0.0 +17277,25,14,25,0.0 +17277,18,62.5,45,0.0 +17277,22,21,35,0.0 +17277,26,31.23,6,0.0 +17277,56,38,38,0.0 +17277,31,12.5,15,0.0 +17277,67,14,32,0.0 +17277,46,12,50,0.0 +17277,4,22,27,0.0 +17277,28,45.6,12,0.0 +17277,55,24,12,0.0 +17277,69,36,11,0.0 +17277,44,19.45,2,0.0 +17277,74,10,31,0.0 +17277,17,39,22,0.0 +17277,14,23.25,7,0.0 +17277,75,7.75,11,0.0 +17277,13,6,9,0.0 +17277,7,30,10,0.0 +17277,35,18,30,0.0 +17277,33,2.5,5,0.0 +17277,21,10,6,0.0 +17277,62,49.3,40,0.0 +17277,77,13,5,0.0 +17277,40,18.4,43,0.0 +17277,41,9.65,46,0.0 +17277,38,263.5,23,0.0 +17277,3,10,48,0.0 +17277,10,31,36,0.0 +17277,73,15,18,0.0 +17278,76,18,50,0.0 +17278,21,10,15,0.0 +17278,27,43.9,45,0.0 +17278,46,12,45,0.0 +17278,13,6,6,0.0 +17278,62,49.3,40,0.0 +17278,69,36,38,0.0 +17278,41,9.65,39,0.0 +17278,70,15,43,0.0 +17278,30,25.89,45,0.0 +17278,12,38,43,0.0 +17278,2,19,18,0.0 +17278,61,28.5,8,0.0 +17278,28,45.6,50,0.0 +17278,53,32.8,11,0.0 +17278,63,43.9,8,0.0 +17278,15,15.5,21,0.0 +17278,24,4.5,31,0.0 +17278,33,2.5,21,0.0 +17279,39,18,7,0.0 +17279,6,25,43,0.0 +17279,10,31,12,0.0 +17279,46,12,41,0.0 +17279,1,18,43,0.0 +17279,66,17,19,0.0 +17279,67,14,36,0.0 +17279,72,34.8,29,0.0 +17279,56,38,35,0.0 +17279,45,9.5,26,0.0 +17279,65,21.05,33,0.0 +17279,61,28.5,6,0.0 +17279,20,81,20,0.0 +17279,51,53,24,0.0 +17279,5,21.35,24,0.0 +17279,73,15,27,0.0 +17279,17,39,4,0.0 +17279,59,55,39,0.0 +17279,3,10,6,0.0 +17279,18,62.5,10,0.0 +17279,29,123.79,3,0.0 +17279,75,7.75,3,0.0 +17279,68,12.5,17,0.0 +17279,27,43.9,34,0.0 +17279,23,9,38,0.0 +17279,11,21,11,0.0 +17279,37,26,29,0.0 +17279,28,45.6,17,0.0 +17279,63,43.9,21,0.0 +17279,48,12.75,7,0.0 +17279,62,49.3,1,0.0 +17279,47,9.5,41,0.0 +17279,12,38,5,0.0 +17279,58,13.25,5,0.0 +17279,50,16.25,25,0.0 +17279,43,46,39,0.0 +17279,26,31.23,21,0.0 +17279,74,10,43,0.0 +17279,76,18,19,0.0 +17279,52,7,46,0.0 +17279,2,19,45,0.0 +17279,22,21,2,0.0 +17279,13,6,9,0.0 +17279,57,19.5,35,0.0 +17279,77,13,33,0.0 +17279,8,40,45,0.0 +17279,49,20,46,0.0 +17279,32,32,37,0.0 +17279,9,97,7,0.0 +17279,36,19,27,0.0 +17279,35,18,30,0.0 +17279,64,33.25,11,0.0 +17279,7,30,35,0.0 +17279,54,7.45,45,0.0 +17279,34,14,47,0.0 +17279,38,263.5,1,0.0 +17279,33,2.5,6,0.0 +17279,31,12.5,4,0.0 +17279,53,32.8,33,0.0 +17279,16,17.45,34,0.0 +17279,40,18.4,20,0.0 +17279,25,14,8,0.0 +17279,60,34,12,0.0 +17280,57,19.5,20,0.0 +17280,37,26,33,0.0 +17280,8,40,44,0.0 +17280,58,13.25,24,0.0 +17280,20,81,14,0.0 +17280,46,12,47,0.0 +17280,12,38,15,0.0 +17280,60,34,9,0.0 +17280,55,24,20,0.0 +17280,54,7.45,47,0.0 +17280,76,18,22,0.0 +17280,47,9.5,18,0.0 +17280,16,17.45,46,0.0 +17280,69,36,43,0.0 +17280,65,21.05,22,0.0 +17280,27,43.9,3,0.0 +17280,30,25.89,3,0.0 +17280,15,15.5,43,0.0 +17280,50,16.25,34,0.0 +17280,41,9.65,18,0.0 +17280,56,38,14,0.0 +17280,63,43.9,33,0.0 +17280,61,28.5,37,0.0 +17280,3,10,2,0.0 +17280,23,9,48,0.0 +17280,68,12.5,37,0.0 +17280,33,2.5,27,0.0 +17281,77,13,46,0.0 +17281,44,19.45,7,0.0 +17281,51,53,10,0.0 +17281,8,40,5,0.0 +17281,20,81,38,0.0 +17281,31,12.5,38,0.0 +17281,49,20,10,0.0 +17282,11,21,21,0.0 +17282,60,34,37,0.0 +17282,6,25,31,0.0 +17282,48,12.75,18,0.0 +17282,62,49.3,13,0.0 +17282,10,31,12,0.0 +17282,53,32.8,46,0.0 +17282,56,38,27,0.0 +17282,3,10,8,0.0 +17282,28,45.6,20,0.0 +17282,43,46,1,0.0 +17282,68,12.5,35,0.0 +17282,47,9.5,4,0.0 +17282,49,20,27,0.0 +17282,54,7.45,23,0.0 +17282,44,19.45,33,0.0 +17282,32,32,18,0.0 +17282,52,7,33,0.0 +17282,9,97,16,0.0 +17282,5,21.35,8,0.0 +17282,72,34.8,42,0.0 +17282,1,18,23,0.0 +17282,61,28.5,6,0.0 +17282,2,19,47,0.0 +17282,25,14,31,0.0 +17282,24,4.5,28,0.0 +17282,38,263.5,16,0.0 +17282,77,13,33,0.0 +17282,45,9.5,27,0.0 +17282,69,36,36,0.0 +17282,30,25.89,50,0.0 +17282,42,14,9,0.0 +17282,31,12.5,20,0.0 +17282,13,6,30,0.0 +17282,46,12,35,0.0 +17282,12,38,3,0.0 +17282,64,33.25,6,0.0 +17282,74,10,27,0.0 +17282,17,39,49,0.0 +17282,41,9.65,16,0.0 +17282,21,10,19,0.0 +17282,16,17.45,4,0.0 +17282,63,43.9,26,0.0 +17282,39,18,1,0.0 +17282,8,40,24,0.0 +17283,38,263.5,6,0.0 +17283,19,9.2,23,0.0 +17283,76,18,26,0.0 +17283,3,10,40,0.0 +17283,43,46,48,0.0 +17283,63,43.9,2,0.0 +17283,25,14,20,0.0 +17283,7,30,39,0.0 +17283,57,19.5,49,0.0 +17283,21,10,2,0.0 +17283,49,20,31,0.0 +17283,37,26,27,0.0 +17283,42,14,41,0.0 +17283,9,97,3,0.0 +17283,22,21,48,0.0 +17283,64,33.25,17,0.0 +17283,27,43.9,25,0.0 +17283,28,45.6,33,0.0 +17283,29,123.79,20,0.0 +17283,41,9.65,28,0.0 +17283,51,53,14,0.0 +17283,16,17.45,38,0.0 +17283,30,25.89,14,0.0 +17283,18,62.5,17,0.0 +17283,77,13,50,0.0 +17283,24,4.5,48,0.0 +17283,62,49.3,32,0.0 +17283,70,15,16,0.0 +17283,40,18.4,44,0.0 +17283,14,23.25,2,0.0 +17283,6,25,7,0.0 +17283,17,39,29,0.0 +17283,20,81,42,0.0 +17283,5,21.35,9,0.0 +17283,12,38,15,0.0 +17283,74,10,46,0.0 +17283,36,19,4,0.0 +17283,56,38,46,0.0 +17283,46,12,23,0.0 +17283,13,6,13,0.0 +17283,50,16.25,23,0.0 +17283,73,15,2,0.0 +17283,32,32,46,0.0 +17283,55,24,13,0.0 +17283,68,12.5,38,0.0 +17283,47,9.5,23,0.0 +17283,71,21.5,47,0.0 +17283,2,19,47,0.0 +17283,45,9.5,42,0.0 +17283,31,12.5,4,0.0 +17283,23,9,19,0.0 +17283,72,34.8,38,0.0 +17283,69,36,14,0.0 +17283,4,22,36,0.0 +17283,34,14,25,0.0 +17283,61,28.5,1,0.0 +17283,11,21,16,0.0 +17283,10,31,3,0.0 +17283,26,31.23,4,0.0 +17283,60,34,47,0.0 +17283,66,17,23,0.0 +17283,1,18,11,0.0 +17283,54,7.45,45,0.0 +17283,39,18,25,0.0 +17283,15,15.5,49,0.0 +17283,53,32.8,2,0.0 +17283,59,55,29,0.0 +17283,58,13.25,36,0.0 +17284,64,33.25,50,0.0 +17284,39,18,29,0.0 +17284,51,53,18,0.0 +17284,3,10,28,0.0 +17284,17,39,9,0.0 +17284,41,9.65,19,0.0 +17284,40,18.4,17,0.0 +17284,13,6,36,0.0 +17284,72,34.8,43,0.0 +17284,9,97,10,0.0 +17284,33,2.5,27,0.0 +17284,10,31,41,0.0 +17284,43,46,46,0.0 +17284,65,21.05,26,0.0 +17284,18,62.5,7,0.0 +17284,77,13,3,0.0 +17284,48,12.75,1,0.0 +17284,57,19.5,28,0.0 +17284,70,15,34,0.0 +17284,54,7.45,11,0.0 +17284,71,21.5,28,0.0 +17284,35,18,45,0.0 +17284,50,16.25,5,0.0 +17284,60,34,49,0.0 +17284,26,31.23,16,0.0 +17284,11,21,39,0.0 +17284,7,30,28,0.0 +17284,53,32.8,25,0.0 +17284,1,18,12,0.0 +17284,21,10,49,0.0 +17284,49,20,38,0.0 +17285,42,14,18,0.0 +17285,7,30,22,0.0 +17285,76,18,22,0.0 +17285,53,32.8,41,0.0 +17285,46,12,22,0.0 +17285,8,40,47,0.0 +17285,70,15,2,0.0 +17285,65,21.05,12,0.0 +17285,54,7.45,38,0.0 +17285,60,34,4,0.0 +17285,9,97,26,0.0 +17285,68,12.5,33,0.0 +17285,6,25,9,0.0 +17285,51,53,1,0.0 +17285,36,19,18,0.0 +17285,20,81,13,0.0 +17285,66,17,34,0.0 +17285,17,39,17,0.0 +17285,75,7.75,5,0.0 +17285,71,21.5,44,0.0 +17285,74,10,5,0.0 +17285,15,15.5,33,0.0 +17285,47,9.5,17,0.0 +17285,40,18.4,39,0.0 +17285,33,2.5,13,0.0 +17285,21,10,23,0.0 +17285,48,12.75,23,0.0 +17285,25,14,36,0.0 +17285,11,21,43,0.0 +17285,32,32,12,0.0 +17285,1,18,42,0.0 +17285,38,263.5,23,0.0 +17285,30,25.89,36,0.0 +17285,69,36,50,0.0 +17285,63,43.9,11,0.0 +17285,52,7,11,0.0 +17285,3,10,23,0.0 +17285,24,4.5,28,0.0 +17285,55,24,33,0.0 +17285,19,9.2,1,0.0 +17285,29,123.79,47,0.0 +17285,31,12.5,2,0.0 +17285,49,20,31,0.0 +17285,73,15,24,0.0 +17285,10,31,6,0.0 +17285,72,34.8,22,0.0 +17285,16,17.45,14,0.0 +17285,13,6,26,0.0 +17285,59,55,48,0.0 +17285,35,18,4,0.0 +17285,23,9,27,0.0 +17285,50,16.25,42,0.0 +17285,45,9.5,45,0.0 +17285,39,18,37,0.0 +17285,77,13,42,0.0 +17285,12,38,42,0.0 +17285,26,31.23,49,0.0 +17285,14,23.25,2,0.0 +17285,4,22,34,0.0 +17285,44,19.45,22,0.0 +17285,22,21,38,0.0 +17285,34,14,32,0.0 +17285,5,21.35,46,0.0 +17285,41,9.65,40,0.0 +17285,18,62.5,25,0.0 +17285,57,19.5,33,0.0 +17285,62,49.3,43,0.0 +17285,56,38,30,0.0 +17285,37,26,22,0.0 +17285,64,33.25,1,0.0 +17285,28,45.6,50,0.0 +17285,58,13.25,34,0.0 +17285,43,46,18,0.0 +17285,2,19,18,0.0 +17285,67,14,32,0.0 +17285,61,28.5,20,0.0 +17286,5,21.35,28,0.0 +17286,26,31.23,29,0.0 +17286,74,10,48,0.0 +17286,52,7,42,0.0 +17286,57,19.5,40,0.0 +17286,34,14,7,0.0 +17286,37,26,1,0.0 +17286,71,21.5,27,0.0 +17286,30,25.89,35,0.0 +17286,21,10,15,0.0 +17286,27,43.9,40,0.0 +17286,33,2.5,16,0.0 +17286,3,10,13,0.0 +17286,7,30,43,0.0 +17286,19,9.2,19,0.0 +17286,46,12,20,0.0 +17286,13,6,37,0.0 +17286,28,45.6,18,0.0 +17286,41,9.65,8,0.0 +17286,58,13.25,43,0.0 +17286,64,33.25,12,0.0 +17286,63,43.9,3,0.0 +17286,66,17,34,0.0 +17286,20,81,6,0.0 +17286,77,13,38,0.0 +17286,31,12.5,41,0.0 +17286,76,18,19,0.0 +17286,75,7.75,30,0.0 +17286,9,97,14,0.0 +17286,23,9,3,0.0 +17286,29,123.79,44,0.0 +17286,60,34,45,0.0 +17286,53,32.8,4,0.0 +17286,16,17.45,12,0.0 +17286,38,263.5,25,0.0 +17286,48,12.75,46,0.0 +17286,49,20,17,0.0 +17286,43,46,50,0.0 +17286,6,25,17,0.0 +17286,18,62.5,24,0.0 +17286,44,19.45,12,0.0 +17286,62,49.3,42,0.0 +17286,72,34.8,32,0.0 +17286,45,9.5,26,0.0 +17286,54,7.45,23,0.0 +17286,69,36,5,0.0 +17286,61,28.5,33,0.0 +17286,2,19,1,0.0 +17286,24,4.5,11,0.0 +17286,50,16.25,39,0.0 +17286,47,9.5,43,0.0 +17286,22,21,13,0.0 +17286,10,31,22,0.0 +17286,67,14,38,0.0 +17286,68,12.5,28,0.0 +17286,25,14,43,0.0 +17286,32,32,24,0.0 +17286,56,38,2,0.0 +17286,14,23.25,16,0.0 +17286,39,18,7,0.0 +17286,12,38,10,0.0 +17286,40,18.4,45,0.0 +17286,55,24,4,0.0 +17286,1,18,11,0.0 +17286,17,39,29,0.0 +17286,70,15,13,0.0 +17286,65,21.05,6,0.0 +17286,11,21,39,0.0 +17286,35,18,16,0.0 +17286,73,15,47,0.0 +17287,65,21.05,47,0.0 +17287,29,123.79,48,0.0 +17287,59,55,15,0.0 +17287,6,25,8,0.0 +17287,75,7.75,4,0.0 +17287,38,263.5,42,0.0 +17287,76,18,44,0.0 +17287,25,14,20,0.0 +17287,44,19.45,12,0.0 +17287,9,97,37,0.0 +17287,2,19,27,0.0 +17287,42,14,39,0.0 +17287,46,12,38,0.0 +17287,5,21.35,5,0.0 +17287,14,23.25,14,0.0 +17287,4,22,25,0.0 +17287,64,33.25,37,0.0 +17287,27,43.9,46,0.0 +17287,15,15.5,5,0.0 +17287,62,49.3,4,0.0 +17287,39,18,37,0.0 +17287,41,9.65,11,0.0 +17287,24,4.5,41,0.0 +17287,3,10,20,0.0 +17287,55,24,22,0.0 +17287,63,43.9,2,0.0 +17287,26,31.23,23,0.0 +17287,52,7,32,0.0 +17287,56,38,1,0.0 +17287,20,81,11,0.0 +17287,35,18,10,0.0 +17287,50,16.25,29,0.0 +17287,49,20,9,0.0 +17287,70,15,49,0.0 +17287,23,9,2,0.0 +17287,48,12.75,31,0.0 +17287,7,30,13,0.0 +17287,16,17.45,31,0.0 +17287,73,15,48,0.0 +17287,19,9.2,23,0.0 +17287,11,21,45,0.0 +17287,58,13.25,38,0.0 +17287,12,38,43,0.0 +17287,13,6,33,0.0 +17287,34,14,28,0.0 +17287,8,40,29,0.0 +17287,40,18.4,27,0.0 +17287,43,46,40,0.0 +17287,22,21,32,0.0 +17287,45,9.5,31,0.0 +17287,47,9.5,14,0.0 +17288,51,53,45,0.0 +17288,29,123.79,5,0.0 +17288,34,14,19,0.0 +17288,42,14,48,0.0 +17288,33,2.5,47,0.0 +17288,9,97,43,0.0 +17288,37,26,45,0.0 +17288,43,46,18,0.0 +17288,47,9.5,11,0.0 +17288,41,9.65,49,0.0 +17288,13,6,6,0.0 +17288,69,36,37,0.0 +17288,55,24,33,0.0 +17288,60,34,21,0.0 +17288,30,25.89,28,0.0 +17288,21,10,3,0.0 +17288,15,15.5,13,0.0 +17288,8,40,28,0.0 +17288,31,12.5,6,0.0 +17288,19,9.2,25,0.0 +17288,52,7,42,0.0 +17288,11,21,24,0.0 +17288,39,18,19,0.0 +17288,76,18,46,0.0 +17288,66,17,3,0.0 +17288,45,9.5,31,0.0 +17288,56,38,8,0.0 +17288,40,18.4,6,0.0 +17288,38,263.5,13,0.0 +17288,1,18,27,0.0 +17288,68,12.5,43,0.0 +17288,24,4.5,11,0.0 +17288,5,21.35,21,0.0 +17288,12,38,18,0.0 +17288,67,14,4,0.0 +17288,27,43.9,30,0.0 +17288,26,31.23,19,0.0 +17288,46,12,12,0.0 +17288,32,32,7,0.0 +17288,77,13,18,0.0 +17288,74,10,31,0.0 +17288,57,19.5,50,0.0 +17288,73,15,33,0.0 +17288,36,19,46,0.0 +17288,20,81,19,0.0 +17288,72,34.8,36,0.0 +17288,14,23.25,40,0.0 +17288,10,31,31,0.0 +17288,16,17.45,16,0.0 +17288,58,13.25,37,0.0 +17288,17,39,36,0.0 +17288,23,9,9,0.0 +17288,44,19.45,29,0.0 +17288,61,28.5,40,0.0 +17288,62,49.3,50,0.0 +17288,71,21.5,30,0.0 +17288,25,14,15,0.0 +17288,3,10,49,0.0 +17288,50,16.25,44,0.0 +17288,65,21.05,10,0.0 +17288,64,33.25,5,0.0 +17289,16,17.45,37,0.0 +17289,13,6,33,0.0 +17289,6,25,29,0.0 +17289,17,39,36,0.0 +17289,27,43.9,11,0.0 +17289,62,49.3,43,0.0 +17289,37,26,12,0.0 +17289,73,15,34,0.0 +17289,22,21,41,0.0 +17289,5,21.35,27,0.0 +17289,45,9.5,22,0.0 +17289,23,9,20,0.0 +17289,26,31.23,38,0.0 +17289,76,18,40,0.0 +17289,20,81,21,0.0 +17289,11,21,44,0.0 +17289,56,38,29,0.0 +17289,68,12.5,29,0.0 +17289,55,24,14,0.0 +17289,10,31,32,0.0 +17290,36,19,8,0.0 +17290,57,19.5,16,0.0 +17290,63,43.9,36,0.0 +17290,18,62.5,20,0.0 +17290,1,18,19,0.0 +17290,65,21.05,5,0.0 +17290,37,26,11,0.0 +17290,54,7.45,33,0.0 +17290,38,263.5,30,0.0 +17290,29,123.79,44,0.0 +17290,49,20,39,0.0 +17290,34,14,32,0.0 +17290,25,14,8,0.0 +17290,14,23.25,9,0.0 +17290,31,12.5,48,0.0 +17290,5,21.35,24,0.0 +17290,26,31.23,22,0.0 +17290,32,32,38,0.0 +17290,52,7,11,0.0 +17290,3,10,34,0.0 +17290,58,13.25,27,0.0 +17290,8,40,9,0.0 +17290,56,38,10,0.0 +17290,10,31,7,0.0 +17290,6,25,37,0.0 +17291,76,18,28,0.0 +17291,26,31.23,3,0.0 +17291,43,46,37,0.0 +17291,72,34.8,31,0.0 +17291,20,81,43,0.0 +17291,51,53,12,0.0 +17291,15,15.5,34,0.0 +17291,77,13,4,0.0 +17291,50,16.25,23,0.0 +17291,34,14,45,0.0 +17291,2,19,43,0.0 +17291,30,25.89,17,0.0 +17291,16,17.45,16,0.0 +17291,33,2.5,40,0.0 +17291,55,24,44,0.0 +17291,19,9.2,46,0.0 +17291,24,4.5,9,0.0 +17291,63,43.9,8,0.0 +17291,35,18,17,0.0 +17291,59,55,26,0.0 +17291,31,12.5,24,0.0 +17291,71,21.5,21,0.0 +17291,45,9.5,19,0.0 +17291,14,23.25,45,0.0 +17291,11,21,41,0.0 +17291,39,18,5,0.0 +17291,28,45.6,8,0.0 +17291,22,21,49,0.0 +17291,57,19.5,28,0.0 +17291,5,21.35,18,0.0 +17291,6,25,7,0.0 +17291,36,19,1,0.0 +17291,4,22,25,0.0 +17291,58,13.25,26,0.0 +17291,54,7.45,18,0.0 +17291,1,18,11,0.0 +17291,70,15,6,0.0 +17291,52,7,20,0.0 +17291,13,6,46,0.0 +17291,46,12,11,0.0 +17291,32,32,5,0.0 +17291,47,9.5,8,0.0 +17291,66,17,20,0.0 +17291,61,28.5,29,0.0 +17291,42,14,15,0.0 +17291,38,263.5,17,0.0 +17291,25,14,8,0.0 +17291,7,30,26,0.0 +17291,75,7.75,7,0.0 +17291,3,10,35,0.0 +17291,27,43.9,16,0.0 +17291,74,10,29,0.0 +17291,18,62.5,39,0.0 +17291,73,15,47,0.0 +17291,68,12.5,35,0.0 +17291,49,20,49,0.0 +17291,56,38,16,0.0 +17291,44,19.45,43,0.0 +17291,23,9,47,0.0 +17291,53,32.8,9,0.0 +17291,65,21.05,37,0.0 +17291,67,14,31,0.0 +17291,37,26,46,0.0 +17291,10,31,39,0.0 +17291,21,10,49,0.0 +17291,17,39,1,0.0 +17291,48,12.75,48,0.0 +17291,12,38,12,0.0 +17291,29,123.79,21,0.0 +17291,9,97,40,0.0 +17291,62,49.3,32,0.0 +17291,69,36,4,0.0 +17291,8,40,16,0.0 +17291,60,34,2,0.0 +17291,40,18.4,7,0.0 +17292,60,34,6,0.0 +17292,8,40,28,0.0 +17292,19,9.2,7,0.0 +17292,71,21.5,1,0.0 +17292,37,26,46,0.0 +17292,45,9.5,44,0.0 +17292,32,32,32,0.0 +17292,38,263.5,2,0.0 +17292,6,25,40,0.0 +17292,34,14,17,0.0 +17292,29,123.79,17,0.0 +17292,22,21,8,0.0 +17292,36,19,15,0.0 +17292,43,46,5,0.0 +17292,18,62.5,5,0.0 +17292,69,36,19,0.0 +17292,53,32.8,10,0.0 +17292,70,15,11,0.0 +17292,59,55,11,0.0 +17292,56,38,40,0.0 +17292,16,17.45,12,0.0 +17292,26,31.23,27,0.0 +17292,72,34.8,19,0.0 +17292,77,13,44,0.0 +17292,73,15,24,0.0 +17292,2,19,20,0.0 +17292,5,21.35,31,0.0 +17292,35,18,36,0.0 +17292,76,18,4,0.0 +17292,63,43.9,22,0.0 +17292,3,10,27,0.0 +17292,66,17,5,0.0 +17292,7,30,41,0.0 +17292,4,22,18,0.0 +17292,20,81,29,0.0 +17292,41,9.65,15,0.0 +17292,1,18,44,0.0 +17292,40,18.4,19,0.0 +17292,61,28.5,19,0.0 +17292,68,12.5,6,0.0 +17292,50,16.25,23,0.0 +17292,52,7,44,0.0 +17292,13,6,47,0.0 +17292,39,18,30,0.0 +17292,57,19.5,40,0.0 +17292,42,14,46,0.0 +17292,67,14,32,0.0 +17292,54,7.45,40,0.0 +17292,12,38,40,0.0 +17293,36,19,28,0.0 +17293,58,13.25,15,0.0 +17293,35,18,44,0.0 +17293,1,18,2,0.0 +17293,65,21.05,16,0.0 +17293,9,97,49,0.0 +17293,2,19,10,0.0 +17293,71,21.5,4,0.0 +17293,6,25,45,0.0 +17294,61,28.5,20,0.0 +17294,73,15,33,0.0 +17294,38,263.5,19,0.0 +17294,17,39,37,0.0 +17294,40,18.4,19,0.0 +17294,47,9.5,14,0.0 +17294,25,14,49,0.0 +17294,33,2.5,9,0.0 +17294,26,31.23,40,0.0 +17294,65,21.05,35,0.0 +17294,46,12,30,0.0 +17294,45,9.5,30,0.0 +17294,15,15.5,34,0.0 +17294,20,81,37,0.0 +17294,3,10,41,0.0 +17294,58,13.25,21,0.0 +17294,53,32.8,33,0.0 +17294,12,38,5,0.0 +17294,6,25,32,0.0 +17294,2,19,15,0.0 +17294,1,18,9,0.0 +17294,10,31,12,0.0 +17294,62,49.3,2,0.0 +17294,42,14,12,0.0 +17294,18,62.5,1,0.0 +17294,13,6,46,0.0 +17294,9,97,11,0.0 +17294,72,34.8,10,0.0 +17294,37,26,21,0.0 +17294,56,38,40,0.0 +17294,5,21.35,2,0.0 +17294,22,21,48,0.0 +17294,27,43.9,22,0.0 +17294,34,14,15,0.0 +17294,74,10,34,0.0 +17294,21,10,11,0.0 +17294,63,43.9,27,0.0 +17294,28,45.6,22,0.0 +17294,35,18,8,0.0 +17294,51,53,30,0.0 +17294,30,25.89,38,0.0 +17294,44,19.45,19,0.0 +17294,23,9,30,0.0 +17294,76,18,17,0.0 +17294,11,21,21,0.0 +17294,55,24,43,0.0 +17295,4,22,25,0.0 +17295,66,17,10,0.0 +17295,26,31.23,13,0.0 +17295,21,10,6,0.0 +17295,32,32,42,0.0 +17296,63,43.9,34,0.0 +17296,39,18,28,0.0 +17296,74,10,6,0.0 +17297,40,18.4,10,0.0 +17297,57,19.5,21,0.0 +17297,61,28.5,17,0.0 +17297,64,33.25,1,0.0 +17297,20,81,24,0.0 +17297,32,32,10,0.0 +17297,66,17,42,0.0 +17297,36,19,19,0.0 +17297,11,21,1,0.0 +17297,72,34.8,25,0.0 +17297,38,263.5,23,0.0 +17297,21,10,47,0.0 +17297,74,10,22,0.0 +17297,3,10,35,0.0 +17297,26,31.23,45,0.0 +17297,45,9.5,4,0.0 +17297,23,9,7,0.0 +17297,4,22,23,0.0 +17297,51,53,43,0.0 +17297,6,25,3,0.0 +17297,35,18,42,0.0 +17297,8,40,39,0.0 +17297,7,30,21,0.0 +17297,63,43.9,46,0.0 +17297,59,55,1,0.0 +17297,43,46,35,0.0 +17297,54,7.45,48,0.0 +17297,49,20,32,0.0 +17297,14,23.25,41,0.0 +17297,39,18,41,0.0 +17297,17,39,2,0.0 +17297,42,14,45,0.0 +17297,1,18,31,0.0 +17297,15,15.5,32,0.0 +17297,28,45.6,19,0.0 +17297,67,14,4,0.0 +17297,60,34,14,0.0 +17297,31,12.5,11,0.0 +17297,69,36,27,0.0 +17297,50,16.25,38,0.0 +17297,24,4.5,28,0.0 +17297,27,43.9,28,0.0 +17297,75,7.75,10,0.0 +17297,34,14,14,0.0 +17297,13,6,43,0.0 +17297,73,15,32,0.0 +17297,25,14,38,0.0 +17297,37,26,2,0.0 +17297,10,31,40,0.0 +17297,71,21.5,35,0.0 +17297,76,18,42,0.0 +17297,41,9.65,7,0.0 +17297,47,9.5,23,0.0 +17297,16,17.45,46,0.0 +17297,30,25.89,26,0.0 +17297,22,21,21,0.0 +17297,70,15,44,0.0 +17297,9,97,2,0.0 +17297,18,62.5,22,0.0 +17297,2,19,4,0.0 +17297,55,24,40,0.0 +17298,55,24,16,0.0 +17298,42,14,1,0.0 +17298,22,21,12,0.0 +17298,52,7,5,0.0 +17298,19,9.2,34,0.0 +17298,7,30,3,0.0 +17298,62,49.3,25,0.0 +17298,49,20,40,0.0 +17298,20,81,41,0.0 +17298,38,263.5,4,0.0 +17298,16,17.45,31,0.0 +17298,71,21.5,46,0.0 +17298,56,38,43,0.0 +17298,8,40,15,0.0 +17298,37,26,49,0.0 +17298,36,19,2,0.0 +17298,47,9.5,27,0.0 +17298,74,10,6,0.0 +17298,27,43.9,41,0.0 +17298,29,123.79,10,0.0 +17298,54,7.45,46,0.0 +17298,69,36,30,0.0 +17298,58,13.25,46,0.0 +17298,10,31,41,0.0 +17298,15,15.5,45,0.0 +17298,21,10,2,0.0 +17298,4,22,3,0.0 +17298,40,18.4,21,0.0 +17298,13,6,17,0.0 +17298,44,19.45,16,0.0 +17298,57,19.5,10,0.0 +17298,73,15,44,0.0 +17298,60,34,25,0.0 +17298,68,12.5,48,0.0 +17298,25,14,15,0.0 +17298,23,9,20,0.0 +17298,76,18,27,0.0 +17298,31,12.5,29,0.0 +17298,43,46,21,0.0 +17298,61,28.5,17,0.0 +17298,28,45.6,9,0.0 +17298,33,2.5,50,0.0 +17298,63,43.9,40,0.0 +17298,77,13,8,0.0 +17298,75,7.75,15,0.0 +17298,45,9.5,15,0.0 +17298,32,32,13,0.0 +17298,64,33.25,23,0.0 +17298,39,18,12,0.0 +17298,53,32.8,45,0.0 +17298,50,16.25,50,0.0 +17298,70,15,14,0.0 +17298,34,14,1,0.0 +17298,66,17,16,0.0 +17298,14,23.25,50,0.0 +17298,51,53,50,0.0 +17298,24,4.5,1,0.0 +17298,3,10,23,0.0 +17298,30,25.89,7,0.0 +17298,2,19,23,0.0 +17298,6,25,20,0.0 +17298,26,31.23,6,0.0 +17298,12,38,29,0.0 +17298,72,34.8,40,0.0 +17298,35,18,44,0.0 +17298,46,12,15,0.0 +17298,67,14,17,0.0 +17298,9,97,44,0.0 +17298,18,62.5,20,0.0 +17298,11,21,38,0.0 +17298,41,9.65,49,0.0 +17298,17,39,6,0.0 +17298,65,21.05,25,0.0 +17298,48,12.75,27,0.0 +17298,59,55,17,0.0 +17298,5,21.35,3,0.0 +17299,12,38,24,0.0 +17299,18,62.5,9,0.0 +17299,68,12.5,26,0.0 +17299,30,25.89,8,0.0 +17299,29,123.79,46,0.0 +17299,56,38,27,0.0 +17299,3,10,49,0.0 +17299,14,23.25,7,0.0 +17300,58,13.25,15,0.0 +17300,46,12,10,0.0 +17301,77,13,50,0.0 +17301,18,62.5,13,0.0 +17301,22,21,19,0.0 +17301,47,9.5,16,0.0 +17301,25,14,38,0.0 +17301,2,19,19,0.0 +17301,42,14,27,0.0 +17301,23,9,37,0.0 +17301,44,19.45,4,0.0 +17301,61,28.5,28,0.0 +17301,43,46,17,0.0 +17301,55,24,33,0.0 +17301,17,39,8,0.0 +17301,11,21,49,0.0 +17301,5,21.35,19,0.0 +17301,53,32.8,36,0.0 +17302,52,7,43,0.0 +17302,62,49.3,22,0.0 +17302,29,123.79,43,0.0 +17302,49,20,7,0.0 +17302,65,21.05,36,0.0 +17302,14,23.25,46,0.0 +17302,42,14,6,0.0 +17302,55,24,34,0.0 +17302,31,12.5,1,0.0 +17302,18,62.5,18,0.0 +17302,44,19.45,28,0.0 +17302,37,26,36,0.0 +17302,53,32.8,37,0.0 +17302,75,7.75,28,0.0 +17302,69,36,34,0.0 +17302,43,46,33,0.0 +17302,50,16.25,20,0.0 +17302,17,39,46,0.0 +17302,71,21.5,39,0.0 +17302,4,22,38,0.0 +17302,27,43.9,5,0.0 +17302,8,40,22,0.0 +17302,26,31.23,28,0.0 +17302,47,9.5,35,0.0 +17302,38,263.5,7,0.0 +17302,22,21,6,0.0 +17302,63,43.9,36,0.0 +17302,11,21,10,0.0 +17302,24,4.5,15,0.0 +17302,15,15.5,5,0.0 +17302,39,18,13,0.0 +17302,3,10,46,0.0 +17302,73,15,8,0.0 +17302,46,12,13,0.0 +17302,19,9.2,38,0.0 +17302,9,97,8,0.0 +17302,58,13.25,2,0.0 +17302,32,32,19,0.0 +17302,20,81,41,0.0 +17302,6,25,14,0.0 +17302,56,38,33,0.0 +17302,67,14,40,0.0 +17302,12,38,47,0.0 +17302,1,18,45,0.0 +17302,57,19.5,43,0.0 +17302,41,9.65,46,0.0 +17302,76,18,38,0.0 +17302,13,6,29,0.0 +17302,59,55,43,0.0 +17302,66,17,15,0.0 +17302,60,34,10,0.0 +17302,25,14,27,0.0 +17302,36,19,21,0.0 +17302,28,45.6,25,0.0 +17302,16,17.45,4,0.0 +17302,45,9.5,32,0.0 +17302,7,30,33,0.0 +17303,48,12.75,21,0.0 +17303,27,43.9,3,0.0 +17303,62,49.3,21,0.0 +17303,33,2.5,21,0.0 +17303,44,19.45,32,0.0 +17303,40,18.4,28,0.0 +17303,4,22,35,0.0 +17303,57,19.5,15,0.0 +17303,67,14,16,0.0 +17303,46,12,15,0.0 +17303,58,13.25,15,0.0 +17303,71,21.5,1,0.0 +17303,24,4.5,32,0.0 +17303,17,39,42,0.0 +17304,26,31.23,49,0.0 +17304,38,263.5,41,0.0 +17304,50,16.25,41,0.0 +17304,42,14,39,0.0 +17304,41,9.65,36,0.0 +17304,69,36,29,0.0 +17304,54,7.45,36,0.0 +17304,4,22,39,0.0 +17304,64,33.25,44,0.0 +17304,11,21,26,0.0 +17304,2,19,1,0.0 +17304,49,20,24,0.0 +17304,7,30,38,0.0 +17304,23,9,34,0.0 +17304,65,21.05,15,0.0 +17304,15,15.5,39,0.0 +17304,57,19.5,39,0.0 +17304,58,13.25,33,0.0 +17304,61,28.5,22,0.0 +17304,25,14,39,0.0 +17304,60,34,3,0.0 +17304,29,123.79,8,0.0 +17304,35,18,15,0.0 +17304,21,10,36,0.0 +17304,20,81,34,0.0 +17304,39,18,29,0.0 +17304,43,46,1,0.0 +17304,72,34.8,41,0.0 +17304,24,4.5,10,0.0 +17304,27,43.9,50,0.0 +17304,59,55,10,0.0 +17305,22,21,37,0.0 +17305,49,20,19,0.0 +17305,44,19.45,29,0.0 +17305,62,49.3,1,0.0 +17305,1,18,5,0.0 +17305,5,21.35,8,0.0 +17305,25,14,6,0.0 +17305,76,18,5,0.0 +17305,77,13,36,0.0 +17305,47,9.5,41,0.0 +17305,68,12.5,34,0.0 +17305,6,25,34,0.0 +17305,27,43.9,27,0.0 +17305,38,263.5,14,0.0 +17305,75,7.75,44,0.0 +17305,24,4.5,32,0.0 +17305,54,7.45,27,0.0 +17305,28,45.6,4,0.0 +17305,15,15.5,12,0.0 +17305,16,17.45,46,0.0 +17305,71,21.5,33,0.0 +17305,35,18,29,0.0 +17305,36,19,20,0.0 +17305,30,25.89,33,0.0 +17305,37,26,6,0.0 +17305,31,12.5,36,0.0 +17305,45,9.5,18,0.0 +17305,40,18.4,18,0.0 +17305,17,39,40,0.0 +17305,61,28.5,16,0.0 +17305,67,14,50,0.0 +17305,66,17,41,0.0 +17305,43,46,7,0.0 +17305,70,15,50,0.0 +17305,20,81,5,0.0 +17305,34,14,8,0.0 +17305,39,18,31,0.0 +17305,60,34,37,0.0 +17305,3,10,35,0.0 +17305,59,55,27,0.0 +17305,11,21,26,0.0 +17305,53,32.8,50,0.0 +17305,2,19,38,0.0 +17305,51,53,50,0.0 +17305,14,23.25,20,0.0 +17305,13,6,22,0.0 +17305,10,31,32,0.0 +17305,8,40,26,0.0 +17305,29,123.79,25,0.0 +17305,55,24,40,0.0 +17305,63,43.9,48,0.0 +17305,52,7,11,0.0 +17305,42,14,49,0.0 +17305,4,22,15,0.0 +17305,64,33.25,35,0.0 +17305,58,13.25,22,0.0 +17305,21,10,3,0.0 +17305,23,9,11,0.0 +17305,72,34.8,38,0.0 +17305,69,36,44,0.0 +17305,65,21.05,38,0.0 +17305,57,19.5,11,0.0 +17305,18,62.5,30,0.0 +17305,48,12.75,9,0.0 +17305,73,15,47,0.0 +17306,49,20,12,0.0 +17306,20,81,41,0.0 +17306,36,19,9,0.0 +17306,38,263.5,42,0.0 +17306,23,9,46,0.0 +17306,37,26,25,0.0 +17306,40,18.4,12,0.0 +17306,62,49.3,42,0.0 +17306,27,43.9,48,0.0 +17306,28,45.6,37,0.0 +17306,32,32,20,0.0 +17306,34,14,39,0.0 +17306,25,14,32,0.0 +17306,35,18,31,0.0 +17306,14,23.25,48,0.0 +17306,8,40,15,0.0 +17306,1,18,33,0.0 +17306,50,16.25,18,0.0 +17306,33,2.5,48,0.0 +17306,55,24,2,0.0 +17306,57,19.5,6,0.0 +17306,59,55,45,0.0 +17306,13,6,39,0.0 +17306,5,21.35,47,0.0 +17306,51,53,27,0.0 +17306,39,18,5,0.0 +17306,4,22,3,0.0 +17306,41,9.65,15,0.0 +17306,44,19.45,12,0.0 +17306,45,9.5,5,0.0 +17306,52,7,26,0.0 +17306,17,39,10,0.0 +17306,24,4.5,13,0.0 +17306,9,97,1,0.0 +17306,29,123.79,18,0.0 +17306,56,38,41,0.0 +17306,65,21.05,46,0.0 +17306,16,17.45,21,0.0 +17306,22,21,16,0.0 +17306,12,38,14,0.0 +17306,47,9.5,27,0.0 +17306,54,7.45,27,0.0 +17306,66,17,29,0.0 +17306,30,25.89,15,0.0 +17306,26,31.23,46,0.0 +17306,72,34.8,35,0.0 +17306,19,9.2,3,0.0 +17306,73,15,13,0.0 +17306,74,10,34,0.0 +17306,10,31,11,0.0 +17306,6,25,4,0.0 +17306,15,15.5,18,0.0 +17306,21,10,28,0.0 +17306,67,14,36,0.0 +17306,69,36,4,0.0 +17306,53,32.8,37,0.0 +17306,3,10,17,0.0 +17306,2,19,34,0.0 +17306,18,62.5,18,0.0 +17306,68,12.5,12,0.0 +17306,64,33.25,26,0.0 +17306,7,30,40,0.0 +17306,75,7.75,30,0.0 +17306,77,13,19,0.0 +17306,46,12,32,0.0 +17306,76,18,43,0.0 +17306,71,21.5,25,0.0 +17306,42,14,43,0.0 +17306,63,43.9,35,0.0 +17306,11,21,3,0.0 +17306,58,13.25,6,0.0 +17306,60,34,19,0.0 +17306,31,12.5,37,0.0 +17306,61,28.5,3,0.0 +17306,70,15,39,0.0 +17306,43,46,16,0.0 +17307,46,12,13,0.0 +17307,60,34,12,0.0 +17307,1,18,43,0.0 +17307,17,39,23,0.0 +17307,25,14,29,0.0 +17307,8,40,35,0.0 +17307,15,15.5,49,0.0 +17307,35,18,49,0.0 +17307,3,10,43,0.0 +17307,75,7.75,6,0.0 +17307,31,12.5,35,0.0 +17307,6,25,7,0.0 +17307,44,19.45,15,0.0 +17307,47,9.5,8,0.0 +17307,34,14,24,0.0 +17307,62,49.3,34,0.0 +17307,77,13,40,0.0 +17307,32,32,7,0.0 +17307,22,21,41,0.0 +17307,41,9.65,13,0.0 +17307,33,2.5,29,0.0 +17307,53,32.8,18,0.0 +17307,71,21.5,23,0.0 +17307,7,30,4,0.0 +17307,50,16.25,14,0.0 +17307,16,17.45,15,0.0 +17307,42,14,36,0.0 +17307,37,26,30,0.0 +17307,67,14,17,0.0 +17308,29,123.79,50,0.0 +17308,41,9.65,24,0.0 +17308,7,30,16,0.0 +17308,28,45.6,30,0.0 +17308,40,18.4,38,0.0 +17308,67,14,34,0.0 +17308,76,18,19,0.0 +17308,4,22,27,0.0 +17308,15,15.5,14,0.0 +17308,33,2.5,9,0.0 +17308,13,6,48,0.0 +17308,57,19.5,16,0.0 +17308,30,25.89,28,0.0 +17308,44,19.45,10,0.0 +17308,66,17,50,0.0 +17308,27,43.9,45,0.0 +17308,70,15,28,0.0 +17308,37,26,38,0.0 +17308,64,33.25,6,0.0 +17308,25,14,31,0.0 +17308,23,9,8,0.0 +17308,58,13.25,7,0.0 +17308,14,23.25,46,0.0 +17308,63,43.9,33,0.0 +17308,9,97,47,0.0 +17308,50,16.25,22,0.0 +17308,51,53,34,0.0 +17308,56,38,50,0.0 +17308,38,263.5,11,0.0 +17308,6,25,45,0.0 +17308,45,9.5,20,0.0 +17308,49,20,50,0.0 +17308,22,21,21,0.0 +17308,61,28.5,3,0.0 +17308,71,21.5,45,0.0 +17308,65,21.05,17,0.0 +17308,59,55,25,0.0 +17308,35,18,34,0.0 +17308,1,18,31,0.0 +17308,55,24,7,0.0 +17308,54,7.45,30,0.0 +17308,24,4.5,32,0.0 +17308,47,9.5,48,0.0 +17308,18,62.5,2,0.0 +17308,42,14,9,0.0 +17308,26,31.23,33,0.0 +17308,21,10,45,0.0 +17308,17,39,27,0.0 +17308,39,18,3,0.0 +17308,20,81,15,0.0 +17308,74,10,16,0.0 +17308,2,19,28,0.0 +17308,46,12,33,0.0 +17308,16,17.45,43,0.0 +17308,60,34,22,0.0 +17308,53,32.8,29,0.0 +17308,72,34.8,26,0.0 +17308,36,19,34,0.0 +17308,34,14,12,0.0 +17308,62,49.3,38,0.0 +17308,52,7,7,0.0 +17308,77,13,14,0.0 +17308,43,46,19,0.0 +17308,11,21,2,0.0 +17308,73,15,49,0.0 +17308,12,38,7,0.0 +17309,28,45.6,39,0.0 +17309,60,34,37,0.0 +17309,13,6,35,0.0 +17309,76,18,43,0.0 +17309,65,21.05,15,0.0 +17309,43,46,50,0.0 +17309,23,9,13,0.0 +17309,16,17.45,39,0.0 +17309,29,123.79,29,0.0 +17309,49,20,36,0.0 +17309,24,4.5,20,0.0 +17310,36,19,45,0.0 +17310,41,9.65,40,0.0 +17310,72,34.8,16,0.0 +17310,65,21.05,6,0.0 +17310,30,25.89,48,0.0 +17310,44,19.45,20,0.0 +17310,26,31.23,40,0.0 +17310,63,43.9,31,0.0 +17310,23,9,22,0.0 +17310,59,55,17,0.0 +17310,10,31,47,0.0 +17310,38,263.5,24,0.0 +17310,8,40,13,0.0 +17310,27,43.9,18,0.0 +17310,22,21,49,0.0 +17310,7,30,46,0.0 +17310,71,21.5,15,0.0 +17310,50,16.25,35,0.0 +17310,21,10,19,0.0 +17310,13,6,24,0.0 +17310,51,53,4,0.0 +17310,57,19.5,41,0.0 +17310,15,15.5,50,0.0 +17310,67,14,50,0.0 +17310,18,62.5,47,0.0 +17310,68,12.5,27,0.0 +17310,64,33.25,21,0.0 +17310,2,19,48,0.0 +17310,16,17.45,48,0.0 +17310,47,9.5,42,0.0 +17310,45,9.5,9,0.0 +17310,34,14,39,0.0 +17310,32,32,30,0.0 +17310,54,7.45,38,0.0 +17310,69,36,10,0.0 +17310,29,123.79,36,0.0 +17310,19,9.2,49,0.0 +17310,35,18,26,0.0 +17310,37,26,37,0.0 +17310,74,10,38,0.0 +17310,39,18,46,0.0 +17310,40,18.4,25,0.0 +17310,62,49.3,18,0.0 +17310,11,21,1,0.0 +17310,9,97,13,0.0 +17310,20,81,28,0.0 +17310,60,34,25,0.0 +17310,46,12,41,0.0 +17310,73,15,1,0.0 +17310,52,7,35,0.0 +17310,24,4.5,47,0.0 +17310,55,24,22,0.0 +17310,5,21.35,2,0.0 +17310,6,25,21,0.0 +17310,4,22,21,0.0 +17310,76,18,31,0.0 +17310,12,38,50,0.0 +17310,75,7.75,9,0.0 +17310,14,23.25,29,0.0 +17310,3,10,15,0.0 +17310,49,20,39,0.0 +17310,48,12.75,16,0.0 +17310,31,12.5,47,0.0 +17310,77,13,33,0.0 +17310,42,14,19,0.0 +17311,38,263.5,7,0.0 +17311,68,12.5,18,0.0 +17311,49,20,41,0.0 +17311,57,19.5,16,0.0 +17311,76,18,49,0.0 +17311,9,97,5,0.0 +17311,51,53,35,0.0 +17311,15,15.5,44,0.0 +17311,41,9.65,34,0.0 +17311,73,15,38,0.0 +17311,39,18,17,0.0 +17311,70,15,33,0.0 +17311,66,17,48,0.0 +17312,69,36,35,0.0 +17312,30,25.89,5,0.0 +17312,74,10,27,0.0 +17312,60,34,5,0.0 +17312,3,10,6,0.0 +17312,34,14,44,0.0 +17312,19,9.2,6,0.0 +17312,68,12.5,1,0.0 +17313,33,2.5,47,0.0 +17313,60,34,15,0.0 +17313,11,21,7,0.0 +17313,12,38,12,0.0 +17313,35,18,34,0.0 +17313,63,43.9,45,0.0 +17313,67,14,43,0.0 +17313,24,4.5,14,0.0 +17313,16,17.45,8,0.0 +17313,68,12.5,2,0.0 +17313,32,32,19,0.0 +17313,20,81,1,0.0 +17313,75,7.75,43,0.0 +17313,36,19,18,0.0 +17313,50,16.25,35,0.0 +17313,59,55,18,0.0 +17313,66,17,23,0.0 +17313,8,40,9,0.0 +17313,18,62.5,29,0.0 +17313,55,24,29,0.0 +17313,10,31,44,0.0 +17314,14,23.25,49,0.0 +17314,57,19.5,47,0.0 +17314,62,49.3,38,0.0 +17314,49,20,10,0.0 +17314,73,15,41,0.0 +17314,67,14,10,0.0 +17314,75,7.75,29,0.0 +17314,50,16.25,19,0.0 +17314,22,21,4,0.0 +17314,26,31.23,22,0.0 +17314,17,39,45,0.0 +17314,35,18,12,0.0 +17314,71,21.5,3,0.0 +17314,70,15,47,0.0 +17314,27,43.9,20,0.0 +17314,1,18,6,0.0 +17314,58,13.25,37,0.0 +17314,63,43.9,9,0.0 +17314,54,7.45,28,0.0 +17314,61,28.5,35,0.0 +17314,21,10,8,0.0 +17314,9,97,46,0.0 +17314,12,38,6,0.0 +17314,4,22,47,0.0 +17314,64,33.25,37,0.0 +17314,52,7,14,0.0 +17314,77,13,10,0.0 +17314,13,6,3,0.0 +17314,39,18,18,0.0 +17314,69,36,9,0.0 +17314,19,9.2,50,0.0 +17314,42,14,15,0.0 +17314,25,14,7,0.0 +17314,5,21.35,34,0.0 +17314,72,34.8,22,0.0 +17314,6,25,26,0.0 +17314,7,30,18,0.0 +17314,76,18,6,0.0 +17314,3,10,30,0.0 +17314,51,53,50,0.0 +17314,55,24,47,0.0 +17314,37,26,21,0.0 +17314,24,4.5,22,0.0 +17314,59,55,5,0.0 +17314,56,38,30,0.0 +17314,34,14,49,0.0 +17314,43,46,34,0.0 +17314,66,17,42,0.0 +17314,60,34,44,0.0 +17314,28,45.6,4,0.0 +17314,33,2.5,6,0.0 +17314,65,21.05,44,0.0 +17314,8,40,48,0.0 +17314,40,18.4,26,0.0 +17314,68,12.5,33,0.0 +17314,48,12.75,20,0.0 +17314,20,81,21,0.0 +17314,53,32.8,25,0.0 +17314,23,9,12,0.0 +17314,18,62.5,17,0.0 +17314,47,9.5,34,0.0 +17315,17,39,39,0.0 +17315,41,9.65,32,0.0 +17315,25,14,33,0.0 +17316,70,15,49,0.0 +17316,72,34.8,31,0.0 +17316,44,19.45,8,0.0 +17316,30,25.89,46,0.0 +17316,75,7.75,50,0.0 +17316,31,12.5,14,0.0 +17316,60,34,18,0.0 +17316,34,14,6,0.0 +17316,6,25,8,0.0 +17316,48,12.75,27,0.0 +17316,35,18,46,0.0 +17316,76,18,3,0.0 +17316,3,10,11,0.0 +17316,53,32.8,5,0.0 +17316,62,49.3,33,0.0 +17316,77,13,13,0.0 +17316,63,43.9,29,0.0 +17316,9,97,48,0.0 +17316,12,38,4,0.0 +17316,19,9.2,29,0.0 +17316,68,12.5,36,0.0 +17316,59,55,15,0.0 +17316,11,21,10,0.0 +17316,28,45.6,9,0.0 +17316,4,22,27,0.0 +17316,40,18.4,35,0.0 +17316,47,9.5,48,0.0 +17316,67,14,13,0.0 +17316,26,31.23,7,0.0 +17316,23,9,11,0.0 +17316,1,18,5,0.0 +17316,71,21.5,20,0.0 +17316,58,13.25,39,0.0 +17316,33,2.5,49,0.0 +17316,65,21.05,7,0.0 +17316,16,17.45,34,0.0 +17316,56,38,2,0.0 +17317,60,34,7,0.0 +17317,3,10,16,0.0 +17317,77,13,23,0.0 +17317,23,9,1,0.0 +17317,70,15,50,0.0 +17317,12,38,26,0.0 +17317,51,53,24,0.0 +17317,45,9.5,13,0.0 +17317,44,19.45,7,0.0 +17317,18,62.5,5,0.0 +17317,46,12,26,0.0 +17317,6,25,22,0.0 +17318,7,30,1,0.0 +17318,68,12.5,28,0.0 +17318,32,32,14,0.0 +17318,9,97,13,0.0 +17319,22,21,45,0.0 +17319,12,38,17,0.0 +17319,5,21.35,11,0.0 +17319,48,12.75,2,0.0 +17319,53,32.8,1,0.0 +17319,28,45.6,8,0.0 +17319,13,6,9,0.0 +17319,70,15,23,0.0 +17319,59,55,14,0.0 +17319,19,9.2,12,0.0 +17319,23,9,14,0.0 +17319,10,31,38,0.0 +17319,49,20,18,0.0 +17319,77,13,22,0.0 +17319,73,15,23,0.0 +17319,58,13.25,43,0.0 +17319,36,19,39,0.0 +17319,61,28.5,13,0.0 +17319,42,14,28,0.0 +17319,37,26,42,0.0 +17319,55,24,29,0.0 +17319,18,62.5,4,0.0 +17319,34,14,40,0.0 +17319,43,46,48,0.0 +17319,54,7.45,34,0.0 +17319,14,23.25,23,0.0 +17319,76,18,22,0.0 +17319,51,53,8,0.0 +17319,46,12,8,0.0 +17319,72,34.8,24,0.0 +17319,68,12.5,5,0.0 +17319,8,40,27,0.0 +17319,31,12.5,37,0.0 +17319,25,14,49,0.0 +17319,26,31.23,32,0.0 +17319,20,81,7,0.0 +17319,6,25,38,0.0 +17319,62,49.3,25,0.0 +17319,35,18,50,0.0 +17319,69,36,41,0.0 +17319,75,7.75,21,0.0 +17319,41,9.65,47,0.0 +17319,52,7,13,0.0 +17319,66,17,42,0.0 +17319,44,19.45,6,0.0 +17319,4,22,29,0.0 +17319,2,19,21,0.0 +17319,33,2.5,41,0.0 +17319,40,18.4,27,0.0 +17319,21,10,28,0.0 +17319,60,34,48,0.0 +17319,67,14,48,0.0 +17319,50,16.25,24,0.0 +17320,30,25.89,50,0.0 +17320,63,43.9,16,0.0 +17320,53,32.8,11,0.0 +17321,48,12.75,7,0.0 +17321,27,43.9,45,0.0 +17321,8,40,6,0.0 +17321,64,33.25,50,0.0 +17321,39,18,50,0.0 +17321,51,53,31,0.0 +17321,68,12.5,26,0.0 +17321,17,39,5,0.0 +17322,61,28.5,23,0.0 +17322,39,18,16,0.0 +17322,38,263.5,34,0.0 +17322,57,19.5,43,0.0 +17322,3,10,14,0.0 +17322,34,14,42,0.0 +17322,30,25.89,2,0.0 +17322,64,33.25,39,0.0 +17322,44,19.45,10,0.0 +17322,70,15,29,0.0 +17322,42,14,9,0.0 +17322,63,43.9,27,0.0 +17322,68,12.5,13,0.0 +17322,21,10,39,0.0 +17322,67,14,34,0.0 +17322,37,26,16,0.0 +17322,45,9.5,12,0.0 +17322,59,55,32,0.0 +17323,68,12.5,29,0.0 +17323,29,123.79,46,0.0 +17323,58,13.25,35,0.0 +17323,76,18,35,0.0 +17323,38,263.5,33,0.0 +17323,4,22,4,0.0 +17323,74,10,45,0.0 +17323,5,21.35,34,0.0 +17323,72,34.8,13,0.0 +17323,66,17,48,0.0 +17323,64,33.25,1,0.0 +17323,21,10,29,0.0 +17323,37,26,16,0.0 +17323,69,36,35,0.0 +17323,46,12,12,0.0 +17323,31,12.5,47,0.0 +17323,33,2.5,15,0.0 +17323,50,16.25,34,0.0 +17323,77,13,31,0.0 +17323,8,40,47,0.0 +17323,10,31,20,0.0 +17323,30,25.89,48,0.0 +17323,24,4.5,22,0.0 +17323,59,55,38,0.0 +17323,73,15,1,0.0 +17323,51,53,5,0.0 +17323,54,7.45,24,0.0 +17323,70,15,40,0.0 +17324,69,36,32,0.0 +17324,9,97,26,0.0 +17324,11,21,50,0.0 +17324,7,30,25,0.0 +17324,29,123.79,40,0.0 +17324,13,6,22,0.0 +17324,66,17,40,0.0 +17324,40,18.4,42,0.0 +17324,22,21,8,0.0 +17324,70,15,30,0.0 +17324,50,16.25,37,0.0 +17324,58,13.25,22,0.0 +17324,26,31.23,7,0.0 +17324,16,17.45,44,0.0 +17324,37,26,17,0.0 +17324,60,34,4,0.0 +17324,33,2.5,37,0.0 +17324,24,4.5,42,0.0 +17324,3,10,32,0.0 +17324,34,14,19,0.0 +17324,1,18,22,0.0 +17324,63,43.9,22,0.0 +17324,25,14,5,0.0 +17324,42,14,50,0.0 +17324,77,13,32,0.0 +17324,45,9.5,50,0.0 +17324,67,14,10,0.0 +17324,43,46,44,0.0 +17324,72,34.8,10,0.0 +17324,48,12.75,36,0.0 +17324,75,7.75,31,0.0 +17324,47,9.5,9,0.0 +17324,6,25,23,0.0 +17324,53,32.8,31,0.0 +17324,52,7,6,0.0 +17324,44,19.45,15,0.0 +17324,2,19,45,0.0 +17324,31,12.5,23,0.0 +17324,76,18,12,0.0 +17324,38,263.5,7,0.0 +17324,49,20,43,0.0 +17324,36,19,42,0.0 +17325,51,53,23,0.0 +17325,73,15,31,0.0 +17325,54,7.45,39,0.0 +17325,72,34.8,11,0.0 +17325,70,15,1,0.0 +17325,76,18,14,0.0 +17325,58,13.25,6,0.0 +17325,64,33.25,6,0.0 +17325,53,32.8,12,0.0 +17325,1,18,31,0.0 +17325,7,30,49,0.0 +17325,20,81,6,0.0 +17325,26,31.23,29,0.0 +17325,66,17,12,0.0 +17325,31,12.5,5,0.0 +17325,11,21,25,0.0 +17325,12,38,22,0.0 +17325,29,123.79,29,0.0 +17325,28,45.6,8,0.0 +17326,63,43.9,23,0.0 +17326,30,25.89,13,0.0 +17326,60,34,36,0.0 +17326,11,21,41,0.0 +17326,16,17.45,44,0.0 +17326,21,10,9,0.0 +17326,20,81,45,0.0 +17326,46,12,6,0.0 +17326,58,13.25,40,0.0 +17326,68,12.5,10,0.0 +17326,15,15.5,38,0.0 +17326,23,9,5,0.0 +17326,62,49.3,21,0.0 +17327,54,7.45,49,0.0 +17327,33,2.5,15,0.0 +17327,27,43.9,37,0.0 +17327,13,6,8,0.0 +17327,39,18,20,0.0 +17327,35,18,10,0.0 +17328,44,19.45,19,0.0 +17328,43,46,28,0.0 +17328,70,15,36,0.0 +17328,42,14,23,0.0 +17328,62,49.3,26,0.0 +17328,4,22,48,0.0 +17328,72,34.8,21,0.0 +17328,65,21.05,38,0.0 +17328,31,12.5,4,0.0 +17328,41,9.65,11,0.0 +17328,64,33.25,22,0.0 +17328,50,16.25,26,0.0 +17328,57,19.5,36,0.0 +17328,33,2.5,21,0.0 +17328,34,14,23,0.0 +17328,25,14,34,0.0 +17328,52,7,34,0.0 +17328,28,45.6,36,0.0 +17328,46,12,38,0.0 +17328,32,32,8,0.0 +17328,75,7.75,40,0.0 +17328,6,25,45,0.0 +17328,15,15.5,33,0.0 +17328,24,4.5,9,0.0 +17328,73,15,42,0.0 +17328,26,31.23,23,0.0 +17328,23,9,45,0.0 +17328,37,26,47,0.0 +17328,53,32.8,26,0.0 +17328,63,43.9,42,0.0 +17328,45,9.5,18,0.0 +17328,61,28.5,47,0.0 +17328,68,12.5,15,0.0 +17328,60,34,10,0.0 +17328,16,17.45,30,0.0 +17328,66,17,40,0.0 +17329,10,31,3,0.0 +17329,38,263.5,31,0.0 +17329,53,32.8,17,0.0 +17329,29,123.79,1,0.0 +17329,68,12.5,49,0.0 +17329,37,26,10,0.0 +17329,36,19,14,0.0 +17329,17,39,11,0.0 +17329,30,25.89,17,0.0 +17329,5,21.35,36,0.0 +17329,7,30,47,0.0 +17329,69,36,5,0.0 +17329,28,45.6,22,0.0 +17329,12,38,46,0.0 +17329,51,53,22,0.0 +17329,35,18,30,0.0 +17329,11,21,25,0.0 +17329,71,21.5,28,0.0 +17329,67,14,48,0.0 +17329,9,97,9,0.0 +17329,26,31.23,50,0.0 +17329,42,14,9,0.0 +17329,64,33.25,14,0.0 +17329,54,7.45,13,0.0 +17329,22,21,37,0.0 +17329,61,28.5,7,0.0 +17329,3,10,46,0.0 +17329,14,23.25,34,0.0 +17329,18,62.5,3,0.0 +17329,4,22,34,0.0 +17329,27,43.9,17,0.0 +17329,39,18,26,0.0 +17329,34,14,8,0.0 +17329,52,7,21,0.0 +17329,16,17.45,9,0.0 +17329,48,12.75,29,0.0 +17329,1,18,47,0.0 +17329,8,40,24,0.0 +17329,58,13.25,39,0.0 +17329,32,32,11,0.0 +17329,21,10,15,0.0 +17329,75,7.75,10,0.0 +17329,33,2.5,13,0.0 +17329,59,55,8,0.0 +17329,73,15,8,0.0 +17329,76,18,4,0.0 +17329,49,20,33,0.0 +17329,2,19,4,0.0 +17329,20,81,34,0.0 +17329,43,46,43,0.0 +17329,62,49.3,11,0.0 +17329,40,18.4,16,0.0 +17329,46,12,48,0.0 +17329,63,43.9,25,0.0 +17329,70,15,43,0.0 +17329,77,13,37,0.0 +17329,74,10,3,0.0 +17329,41,9.65,8,0.0 +17329,19,9.2,49,0.0 +17329,55,24,11,0.0 +17329,23,9,33,0.0 +17329,60,34,9,0.0 +17329,31,12.5,16,0.0 +17329,65,21.05,10,0.0 +17329,72,34.8,33,0.0 +17329,57,19.5,44,0.0 +17330,47,9.5,18,0.0 +17330,15,15.5,13,0.0 +17330,35,18,7,0.0 +17330,76,18,19,0.0 +17330,4,22,50,0.0 +17330,34,14,48,0.0 +17330,9,97,49,0.0 +17330,58,13.25,33,0.0 +17330,30,25.89,25,0.0 +17330,40,18.4,10,0.0 +17330,17,39,15,0.0 +17330,74,10,2,0.0 +17330,2,19,43,0.0 +17330,1,18,28,0.0 +17330,67,14,31,0.0 +17330,56,38,2,0.0 +17330,10,31,40,0.0 +17330,42,14,40,0.0 +17330,32,32,17,0.0 +17330,71,21.5,45,0.0 +17330,36,19,2,0.0 +17330,38,263.5,11,0.0 +17330,3,10,26,0.0 +17330,50,16.25,7,0.0 +17330,44,19.45,47,0.0 +17330,63,43.9,11,0.0 +17330,29,123.79,14,0.0 +17330,46,12,20,0.0 +17330,62,49.3,11,0.0 +17330,23,9,23,0.0 +17330,57,19.5,46,0.0 +17330,20,81,27,0.0 +17330,60,34,28,0.0 +17330,61,28.5,11,0.0 +17330,28,45.6,21,0.0 +17330,45,9.5,25,0.0 +17330,8,40,4,0.0 +17330,70,15,22,0.0 +17330,12,38,17,0.0 +17330,21,10,34,0.0 +17330,33,2.5,30,0.0 +17330,75,7.75,15,0.0 +17330,39,18,35,0.0 +17330,5,21.35,37,0.0 +17330,37,26,27,0.0 +17330,55,24,37,0.0 +17330,69,36,12,0.0 +17331,58,13.25,26,0.0 +17331,32,32,30,0.0 +17331,37,26,21,0.0 +17331,30,25.89,28,0.0 +17331,17,39,32,0.0 +17331,26,31.23,47,0.0 +17331,35,18,25,0.0 +17331,62,49.3,33,0.0 +17332,76,18,16,0.0 +17332,18,62.5,2,0.0 +17332,55,24,32,0.0 +17332,25,14,9,0.0 +17332,7,30,33,0.0 +17332,65,21.05,50,0.0 +17332,72,34.8,1,0.0 +17332,32,32,11,0.0 +17332,1,18,13,0.0 +17332,46,12,11,0.0 +17332,75,7.75,7,0.0 +17332,4,22,41,0.0 +17332,62,49.3,34,0.0 +17332,26,31.23,21,0.0 +17332,41,9.65,42,0.0 +17332,45,9.5,25,0.0 +17332,68,12.5,30,0.0 +17332,49,20,25,0.0 +17332,40,18.4,23,0.0 +17332,21,10,18,0.0 +17332,39,18,11,0.0 +17332,12,38,1,0.0 +17332,54,7.45,9,0.0 +17332,52,7,50,0.0 +17332,44,19.45,24,0.0 +17332,71,21.5,50,0.0 +17332,3,10,23,0.0 +17332,34,14,21,0.0 +17332,2,19,1,0.0 +17332,64,33.25,37,0.0 +17332,9,97,2,0.0 +17332,17,39,12,0.0 +17332,8,40,2,0.0 +17332,43,46,13,0.0 +17332,5,21.35,20,0.0 +17333,59,55,22,0.0 +17333,37,26,18,0.0 +17333,4,22,45,0.0 +17333,20,81,41,0.0 +17333,75,7.75,38,0.0 +17333,61,28.5,45,0.0 +17333,28,45.6,19,0.0 +17333,40,18.4,2,0.0 +17333,68,12.5,34,0.0 +17333,38,263.5,17,0.0 +17333,33,2.5,31,0.0 +17333,15,15.5,36,0.0 +17333,6,25,19,0.0 +17333,74,10,46,0.0 +17333,46,12,50,0.0 +17333,3,10,33,0.0 +17333,47,9.5,38,0.0 +17334,23,9,42,0.0 +17334,16,17.45,42,0.0 +17334,20,81,38,0.0 +17334,22,21,30,0.0 +17334,12,38,50,0.0 +17334,46,12,22,0.0 +17334,32,32,25,0.0 +17334,48,12.75,5,0.0 +17334,29,123.79,35,0.0 +17334,9,97,27,0.0 +17334,64,33.25,18,0.0 +17334,33,2.5,5,0.0 +17334,52,7,8,0.0 +17334,66,17,3,0.0 +17334,24,4.5,21,0.0 +17334,1,18,8,0.0 +17334,47,9.5,12,0.0 +17334,31,12.5,40,0.0 +17334,63,43.9,24,0.0 +17334,26,31.23,19,0.0 +17334,34,14,40,0.0 +17334,65,21.05,30,0.0 +17334,27,43.9,27,0.0 +17334,18,62.5,23,0.0 +17334,39,18,25,0.0 +17334,43,46,44,0.0 +17334,4,22,31,0.0 +17334,36,19,7,0.0 +17334,28,45.6,46,0.0 +17334,38,263.5,35,0.0 +17334,74,10,30,0.0 +17334,30,25.89,24,0.0 +17334,44,19.45,42,0.0 +17334,42,14,12,0.0 +17335,47,9.5,46,0.0 +17335,77,13,49,0.0 +17335,64,33.25,28,0.0 +17335,40,18.4,8,0.0 +17335,17,39,27,0.0 +17335,58,13.25,8,0.0 +17335,34,14,30,0.0 +17335,52,7,20,0.0 +17335,25,14,11,0.0 +17335,59,55,48,0.0 +17335,11,21,10,0.0 +17335,15,15.5,30,0.0 +17335,28,45.6,31,0.0 +17335,22,21,30,0.0 +17335,66,17,48,0.0 +17335,12,38,2,0.0 +17335,74,10,38,0.0 +17335,29,123.79,7,0.0 +17335,16,17.45,27,0.0 +17335,44,19.45,7,0.0 +17335,18,62.5,25,0.0 +17335,5,21.35,46,0.0 +17335,31,12.5,49,0.0 +17335,43,46,34,0.0 +17335,26,31.23,33,0.0 +17335,42,14,5,0.0 +17335,7,30,34,0.0 +17335,6,25,50,0.0 +17335,65,21.05,9,0.0 +17335,27,43.9,29,0.0 +17335,3,10,47,0.0 +17335,57,19.5,38,0.0 +17335,45,9.5,50,0.0 +17335,14,23.25,28,0.0 +17335,2,19,22,0.0 +17335,38,263.5,24,0.0 +17335,68,12.5,46,0.0 +17335,21,10,12,0.0 +17335,13,6,25,0.0 +17335,53,32.8,23,0.0 +17335,51,53,49,0.0 +17335,49,20,39,0.0 +17335,46,12,14,0.0 +17335,8,40,26,0.0 +17335,10,31,33,0.0 +17335,75,7.75,33,0.0 +17335,71,21.5,32,0.0 +17335,32,32,20,0.0 +17335,61,28.5,24,0.0 +17335,36,19,21,0.0 +17335,70,15,34,0.0 +17335,41,9.65,18,0.0 +17335,67,14,27,0.0 +17335,19,9.2,9,0.0 +17335,73,15,20,0.0 +17335,62,49.3,26,0.0 +17335,72,34.8,29,0.0 +17335,69,36,24,0.0 +17335,56,38,36,0.0 +17335,20,81,43,0.0 +17335,50,16.25,27,0.0 +17335,60,34,42,0.0 +17335,54,7.45,47,0.0 +17335,48,12.75,5,0.0 +17335,4,22,6,0.0 +17335,63,43.9,44,0.0 +17335,1,18,46,0.0 +17336,59,55,28,0.0 +17336,68,12.5,37,0.0 +17336,25,14,28,0.0 +17336,14,23.25,24,0.0 +17336,75,7.75,2,0.0 +17336,44,19.45,9,0.0 +17336,27,43.9,49,0.0 +17336,24,4.5,49,0.0 +17336,45,9.5,28,0.0 +17336,8,40,50,0.0 +17336,62,49.3,23,0.0 +17336,50,16.25,40,0.0 +17336,73,15,19,0.0 +17336,16,17.45,41,0.0 +17336,32,32,5,0.0 +17336,29,123.79,4,0.0 +17336,20,81,21,0.0 +17336,54,7.45,34,0.0 +17336,19,9.2,35,0.0 +17336,38,263.5,8,0.0 +17336,15,15.5,26,0.0 +17336,52,7,12,0.0 +17336,37,26,21,0.0 +17336,71,21.5,30,0.0 +17336,36,19,28,0.0 +17336,42,14,2,0.0 +17336,55,24,40,0.0 +17336,23,9,37,0.0 +17336,11,21,30,0.0 +17336,51,53,11,0.0 +17336,6,25,39,0.0 +17336,17,39,1,0.0 +17336,33,2.5,12,0.0 +17337,41,9.65,48,0.0 +17337,51,53,12,0.0 +17337,61,28.5,8,0.0 +17337,53,32.8,24,0.0 +17337,8,40,48,0.0 +17337,50,16.25,22,0.0 +17337,56,38,48,0.0 +17337,39,18,38,0.0 +17337,22,21,22,0.0 +17337,52,7,10,0.0 +17337,34,14,6,0.0 +17337,37,26,27,0.0 +17337,31,12.5,29,0.0 +17337,66,17,6,0.0 +17337,76,18,49,0.0 +17337,9,97,31,0.0 +17337,29,123.79,33,0.0 +17337,36,19,19,0.0 +17337,16,17.45,3,0.0 +17337,40,18.4,37,0.0 +17337,17,39,34,0.0 +17337,4,22,10,0.0 +17338,26,31.23,36,0.0 +17338,21,10,24,0.0 +17338,54,7.45,48,0.0 +17338,60,34,17,0.0 +17338,37,26,28,0.0 +17338,58,13.25,40,0.0 +17338,18,62.5,9,0.0 +17338,33,2.5,18,0.0 +17338,53,32.8,32,0.0 +17338,25,14,40,0.0 +17338,29,123.79,43,0.0 +17338,42,14,39,0.0 +17338,1,18,45,0.0 +17338,56,38,35,0.0 +17338,5,21.35,13,0.0 +17338,14,23.25,10,0.0 +17338,44,19.45,50,0.0 +17338,20,81,7,0.0 +17338,6,25,10,0.0 +17338,59,55,10,0.0 +17338,47,9.5,39,0.0 +17338,38,263.5,36,0.0 +17338,77,13,7,0.0 +17338,64,33.25,23,0.0 +17338,72,34.8,11,0.0 +17338,12,38,35,0.0 +17338,31,12.5,4,0.0 +17338,52,7,33,0.0 +17338,36,19,17,0.0 +17338,50,16.25,14,0.0 +17338,32,32,34,0.0 +17339,63,43.9,47,0.0 +17339,59,55,9,0.0 +17339,1,18,11,0.0 +17339,25,14,14,0.0 +17339,13,6,2,0.0 +17339,6,25,46,0.0 +17339,23,9,33,0.0 +17339,54,7.45,12,0.0 +17339,4,22,17,0.0 +17339,32,32,5,0.0 +17339,51,53,21,0.0 +17339,12,38,40,0.0 +17339,68,12.5,16,0.0 +17339,62,49.3,10,0.0 +17339,7,30,23,0.0 +17339,52,7,38,0.0 +17339,27,43.9,5,0.0 +17339,67,14,18,0.0 +17339,5,21.35,38,0.0 +17339,66,17,35,0.0 +17339,75,7.75,24,0.0 +17339,71,21.5,13,0.0 +17339,16,17.45,12,0.0 +17339,31,12.5,7,0.0 +17339,33,2.5,24,0.0 +17339,19,9.2,40,0.0 +17339,17,39,22,0.0 +17339,60,34,47,0.0 +17339,55,24,24,0.0 +17339,38,263.5,7,0.0 +17339,65,21.05,10,0.0 +17339,43,46,43,0.0 +17339,74,10,39,0.0 +17339,18,62.5,20,0.0 +17339,40,18.4,19,0.0 +17339,15,15.5,4,0.0 +17339,77,13,32,0.0 +17339,49,20,11,0.0 +17339,58,13.25,9,0.0 +17339,24,4.5,36,0.0 +17339,57,19.5,35,0.0 +17339,21,10,26,0.0 +17339,8,40,14,0.0 +17339,42,14,19,0.0 +17339,76,18,7,0.0 +17339,47,9.5,18,0.0 +17339,22,21,21,0.0 +17339,3,10,45,0.0 +17339,2,19,20,0.0 +17339,73,15,42,0.0 +17339,9,97,19,0.0 +17339,41,9.65,50,0.0 +17339,70,15,29,0.0 +17339,35,18,6,0.0 +17339,39,18,15,0.0 +17339,11,21,32,0.0 +17339,72,34.8,50,0.0 +17339,26,31.23,31,0.0 +17339,28,45.6,12,0.0 +17339,50,16.25,17,0.0 +17339,44,19.45,2,0.0 +17339,36,19,44,0.0 +17340,36,19,36,0.0 +17340,77,13,50,0.0 +17340,74,10,23,0.0 +17340,38,263.5,45,0.0 +17340,24,4.5,21,0.0 +17340,5,21.35,16,0.0 +17340,75,7.75,20,0.0 +17340,45,9.5,14,0.0 +17340,59,55,12,0.0 +17340,17,39,1,0.0 +17340,6,25,34,0.0 +17340,23,9,19,0.0 +17340,40,18.4,13,0.0 +17340,48,12.75,24,0.0 +17340,44,19.45,8,0.0 +17340,9,97,3,0.0 +17340,69,36,18,0.0 +17340,54,7.45,12,0.0 +17340,55,24,40,0.0 +17340,39,18,17,0.0 +17340,31,12.5,4,0.0 +17340,11,21,42,0.0 +17340,20,81,26,0.0 +17340,27,43.9,25,0.0 +17340,32,32,28,0.0 +17340,66,17,40,0.0 +17340,8,40,46,0.0 +17340,37,26,23,0.0 +17340,58,13.25,35,0.0 +17340,61,28.5,9,0.0 +17340,21,10,2,0.0 +17340,42,14,12,0.0 +17341,63,43.9,15,0.0 +17341,2,19,4,0.0 +17341,55,24,32,0.0 +17341,67,14,28,0.0 +17341,17,39,1,0.0 +17341,41,9.65,34,0.0 +17341,66,17,8,0.0 +17341,68,12.5,15,0.0 +17341,38,263.5,3,0.0 +17341,6,25,17,0.0 +17341,73,15,45,0.0 +17341,10,31,43,0.0 +17341,53,32.8,2,0.0 +17341,72,34.8,18,0.0 +17341,62,49.3,6,0.0 +17341,71,21.5,49,0.0 +17341,29,123.79,5,0.0 +17341,46,12,2,0.0 +17341,33,2.5,13,0.0 +17341,56,38,11,0.0 +17341,36,19,26,0.0 +17341,44,19.45,9,0.0 +17341,54,7.45,9,0.0 +17341,39,18,1,0.0 +17341,32,32,48,0.0 +17341,74,10,36,0.0 +17341,52,7,47,0.0 +17341,28,45.6,49,0.0 +17341,76,18,41,0.0 +17341,49,20,11,0.0 +17341,24,4.5,8,0.0 +17341,25,14,30,0.0 +17341,3,10,50,0.0 +17341,30,25.89,24,0.0 +17341,31,12.5,5,0.0 +17341,42,14,31,0.0 +17341,64,33.25,39,0.0 +17341,77,13,33,0.0 +17341,7,30,11,0.0 +17341,69,36,25,0.0 +17341,48,12.75,1,0.0 +17342,5,21.35,5,0.0 +17342,7,30,6,0.0 +17342,62,49.3,14,0.0 +17342,65,21.05,1,0.0 +17342,10,31,27,0.0 +17342,49,20,45,0.0 +17342,11,21,48,0.0 +17342,19,9.2,27,0.0 +17342,58,13.25,42,0.0 +17342,32,32,41,0.0 +17342,31,12.5,39,0.0 +17342,59,55,28,0.0 +17342,76,18,3,0.0 +17342,14,23.25,30,0.0 +17342,60,34,25,0.0 +17342,45,9.5,15,0.0 +17342,18,62.5,19,0.0 +17342,57,19.5,28,0.0 +17342,51,53,23,0.0 +17342,15,15.5,27,0.0 +17343,6,25,14,0.0 +17343,13,6,23,0.0 +17343,16,17.45,1,0.0 +17343,5,21.35,38,0.0 +17343,37,26,45,0.0 +17343,15,15.5,20,0.0 +17343,45,9.5,39,0.0 +17343,35,18,12,0.0 +17343,70,15,8,0.0 +17343,63,43.9,44,0.0 +17343,50,16.25,50,0.0 +17343,21,10,50,0.0 +17343,30,25.89,38,0.0 +17343,9,97,22,0.0 +17343,69,36,3,0.0 +17343,52,7,33,0.0 +17343,33,2.5,18,0.0 +17343,28,45.6,37,0.0 +17343,17,39,47,0.0 +17343,66,17,16,0.0 +17343,19,9.2,25,0.0 +17343,14,23.25,31,0.0 +17343,24,4.5,32,0.0 +17343,67,14,36,0.0 +17344,29,123.79,39,0.0 +17344,75,7.75,4,0.0 +17344,34,14,5,0.0 +17344,77,13,19,0.0 +17344,55,24,23,0.0 +17344,30,25.89,41,0.0 +17344,67,14,8,0.0 +17344,46,12,42,0.0 +17344,13,6,12,0.0 +17344,3,10,2,0.0 +17344,6,25,29,0.0 +17344,28,45.6,3,0.0 +17345,53,32.8,15,0.0 +17345,6,25,18,0.0 +17345,42,14,14,0.0 +17345,77,13,40,0.0 +17345,24,4.5,22,0.0 +17345,37,26,29,0.0 +17345,69,36,49,0.0 +17345,35,18,49,0.0 +17345,15,15.5,38,0.0 +17345,8,40,45,0.0 +17345,11,21,7,0.0 +17345,19,9.2,37,0.0 +17345,43,46,7,0.0 +17345,22,21,6,0.0 +17345,47,9.5,44,0.0 +17345,64,33.25,45,0.0 +17345,54,7.45,32,0.0 +17345,30,25.89,5,0.0 +17345,10,31,31,0.0 +17345,65,21.05,25,0.0 +17345,71,21.5,33,0.0 +17345,75,7.75,24,0.0 +17345,23,9,36,0.0 +17345,40,18.4,14,0.0 +17346,37,26,49,0.0 +17346,36,19,15,0.0 +17346,34,14,21,0.0 +17346,33,2.5,27,0.0 +17346,58,13.25,39,0.0 +17346,62,49.3,10,0.0 +17346,27,43.9,40,0.0 +17346,7,30,30,0.0 +17346,8,40,30,0.0 +17346,52,7,15,0.0 +17346,68,12.5,19,0.0 +17346,74,10,37,0.0 +17346,48,12.75,29,0.0 +17346,1,18,43,0.0 +17346,30,25.89,13,0.0 +17346,2,19,26,0.0 +17346,66,17,43,0.0 +17346,46,12,11,0.0 +17346,72,34.8,20,0.0 +17346,65,21.05,45,0.0 +17346,13,6,12,0.0 +17346,23,9,47,0.0 +17346,73,15,44,0.0 +17346,26,31.23,46,0.0 +17346,38,263.5,25,0.0 +17346,12,38,5,0.0 +17346,69,36,50,0.0 +17346,21,10,18,0.0 +17346,16,17.45,45,0.0 +17346,56,38,26,0.0 +17346,24,4.5,10,0.0 +17346,20,81,14,0.0 +17346,45,9.5,22,0.0 +17346,75,7.75,10,0.0 +17346,14,23.25,1,0.0 +17346,77,13,39,0.0 +17346,28,45.6,16,0.0 +17346,3,10,45,0.0 +17346,19,9.2,31,0.0 +17346,50,16.25,35,0.0 +17346,67,14,30,0.0 +17346,42,14,46,0.0 +17346,22,21,27,0.0 +17346,32,32,10,0.0 +17346,60,34,15,0.0 +17346,35,18,31,0.0 +17346,47,9.5,35,0.0 +17346,41,9.65,16,0.0 +17346,17,39,48,0.0 +17346,76,18,9,0.0 +17346,25,14,13,0.0 +17346,15,15.5,50,0.0 +17346,55,24,5,0.0 +17346,9,97,1,0.0 +17346,11,21,27,0.0 +17346,5,21.35,20,0.0 +17346,10,31,36,0.0 +17346,59,55,2,0.0 +17346,53,32.8,26,0.0 +17346,4,22,12,0.0 +17346,70,15,46,0.0 +17346,49,20,46,0.0 +17346,61,28.5,11,0.0 +17346,40,18.4,45,0.0 +17346,31,12.5,7,0.0 +17346,29,123.79,46,0.0 +17346,44,19.45,4,0.0 +17346,43,46,9,0.0 +17346,51,53,5,0.0 +17346,64,33.25,10,0.0 +17346,6,25,34,0.0 +17346,71,21.5,31,0.0 +17346,54,7.45,20,0.0 +17346,57,19.5,41,0.0 +17346,39,18,40,0.0 +17346,18,62.5,20,0.0 +17346,63,43.9,15,0.0 +17347,30,25.89,22,0.0 +17347,66,17,3,0.0 +17347,26,31.23,16,0.0 +17347,50,16.25,43,0.0 +17347,12,38,19,0.0 +17347,28,45.6,20,0.0 +17347,3,10,8,0.0 +17347,5,21.35,33,0.0 +17347,65,21.05,50,0.0 +17347,37,26,5,0.0 +17347,71,21.5,7,0.0 +17347,53,32.8,17,0.0 +17347,36,19,25,0.0 +17347,45,9.5,21,0.0 +17347,52,7,38,0.0 +17347,22,21,46,0.0 +17347,2,19,42,0.0 +17347,57,19.5,25,0.0 +17347,73,15,31,0.0 +17347,17,39,32,0.0 +17347,48,12.75,33,0.0 +17347,31,12.5,48,0.0 +17347,20,81,32,0.0 +17347,4,22,39,0.0 +17347,34,14,28,0.0 +17347,43,46,35,0.0 +17347,56,38,31,0.0 +17347,39,18,36,0.0 +17347,77,13,33,0.0 +17347,6,25,48,0.0 +17347,69,36,50,0.0 +17347,16,17.45,45,0.0 +17347,27,43.9,44,0.0 +17347,46,12,48,0.0 +17347,25,14,34,0.0 +17347,49,20,33,0.0 +17347,59,55,34,0.0 +17347,33,2.5,23,0.0 +17347,42,14,4,0.0 +17347,40,18.4,26,0.0 +17347,23,9,12,0.0 +17347,63,43.9,4,0.0 +17347,44,19.45,4,0.0 +17347,9,97,38,0.0 +17347,54,7.45,23,0.0 +17347,15,15.5,16,0.0 +17347,18,62.5,26,0.0 +17347,11,21,24,0.0 +17347,58,13.25,5,0.0 +17347,76,18,4,0.0 +17347,62,49.3,28,0.0 +17347,35,18,4,0.0 +17347,1,18,46,0.0 +17347,32,32,49,0.0 +17347,64,33.25,4,0.0 +17347,55,24,4,0.0 +17347,41,9.65,49,0.0 +17347,19,9.2,45,0.0 +17347,10,31,9,0.0 +17347,61,28.5,29,0.0 +17347,13,6,34,0.0 +17347,74,10,16,0.0 +17347,51,53,44,0.0 +17347,60,34,21,0.0 +17348,45,9.5,29,0.0 +17348,61,28.5,34,0.0 +17348,22,21,7,0.0 +17348,24,4.5,39,0.0 +17348,35,18,39,0.0 +17348,46,12,10,0.0 +17348,68,12.5,3,0.0 +17348,10,31,10,0.0 +17348,59,55,6,0.0 +17348,14,23.25,36,0.0 +17348,6,25,6,0.0 +17348,9,97,16,0.0 +17349,14,23.25,9,0.0 +17349,5,21.35,24,0.0 +17349,67,14,19,0.0 +17349,46,12,43,0.0 +17349,66,17,23,0.0 +17349,60,34,16,0.0 +17349,38,263.5,14,0.0 +17349,69,36,3,0.0 +17349,3,10,16,0.0 +17349,41,9.65,36,0.0 +17349,17,39,19,0.0 +17349,7,30,28,0.0 +17349,34,14,46,0.0 +17349,53,32.8,50,0.0 +17349,13,6,29,0.0 +17349,30,25.89,33,0.0 +17349,76,18,20,0.0 +17349,4,22,38,0.0 +17349,44,19.45,38,0.0 +17349,27,43.9,41,0.0 +17349,45,9.5,36,0.0 +17349,22,21,34,0.0 +17349,33,2.5,8,0.0 +17349,47,9.5,22,0.0 +17349,61,28.5,32,0.0 +17349,77,13,39,0.0 +17349,65,21.05,18,0.0 +17349,35,18,41,0.0 +17349,48,12.75,30,0.0 +17349,18,62.5,16,0.0 +17349,75,7.75,40,0.0 +17349,42,14,30,0.0 +17349,16,17.45,15,0.0 +17349,72,34.8,45,0.0 +17349,12,38,48,0.0 +17349,28,45.6,1,0.0 +17349,20,81,42,0.0 +17350,56,38,39,0.0 +17350,57,19.5,23,0.0 +17350,10,31,42,0.0 +17350,24,4.5,42,0.0 +17350,22,21,18,0.0 +17350,45,9.5,38,0.0 +17350,49,20,41,0.0 +17350,44,19.45,21,0.0 +17350,47,9.5,19,0.0 +17350,33,2.5,11,0.0 +17350,4,22,40,0.0 +17350,68,12.5,3,0.0 +17350,11,21,24,0.0 +17350,3,10,49,0.0 +17350,6,25,33,0.0 +17350,12,38,18,0.0 +17350,30,25.89,41,0.0 +17350,20,81,32,0.0 +17350,60,34,25,0.0 +17350,51,53,18,0.0 +17350,14,23.25,21,0.0 +17350,38,263.5,21,0.0 +17350,55,24,37,0.0 +17350,8,40,7,0.0 +17350,46,12,24,0.0 +17350,42,14,23,0.0 +17350,62,49.3,24,0.0 +17350,32,32,26,0.0 +17350,37,26,23,0.0 +17350,66,17,47,0.0 +17350,5,21.35,32,0.0 +17350,21,10,23,0.0 +17350,9,97,45,0.0 +17350,2,19,37,0.0 +17350,43,46,18,0.0 +17350,72,34.8,27,0.0 +17350,76,18,13,0.0 +17350,31,12.5,15,0.0 +17350,26,31.23,21,0.0 +17350,13,6,25,0.0 +17350,34,14,23,0.0 +17350,7,30,37,0.0 +17350,15,15.5,12,0.0 +17350,19,9.2,12,0.0 +17350,23,9,10,0.0 +17350,17,39,31,0.0 +17350,48,12.75,45,0.0 +17351,1,18,50,0.0 +17351,68,12.5,26,0.0 +17351,3,10,34,0.0 +17351,50,16.25,17,0.0 +17351,47,9.5,23,0.0 +17351,74,10,41,0.0 +17351,38,263.5,4,0.0 +17351,5,21.35,30,0.0 +17351,75,7.75,11,0.0 +17351,67,14,31,0.0 +17351,18,62.5,41,0.0 +17351,6,25,4,0.0 +17351,26,31.23,15,0.0 +17351,77,13,19,0.0 +17351,4,22,4,0.0 +17351,13,6,19,0.0 +17351,25,14,47,0.0 +17351,72,34.8,20,0.0 +17351,21,10,41,0.0 +17351,9,97,35,0.0 +17351,41,9.65,44,0.0 +17351,53,32.8,38,0.0 +17351,64,33.25,36,0.0 +17351,48,12.75,1,0.0 +17351,8,40,5,0.0 +17351,40,18.4,4,0.0 +17351,2,19,3,0.0 +17351,23,9,31,0.0 +17351,44,19.45,9,0.0 +17351,57,19.5,1,0.0 +17351,35,18,46,0.0 +17351,34,14,21,0.0 +17351,54,7.45,47,0.0 +17351,70,15,50,0.0 +17351,65,21.05,22,0.0 +17351,60,34,44,0.0 +17351,32,32,2,0.0 +17351,59,55,10,0.0 +17351,45,9.5,38,0.0 +17351,56,38,7,0.0 +17351,69,36,29,0.0 +17351,11,21,26,0.0 +17351,46,12,42,0.0 +17351,73,15,1,0.0 +17351,36,19,38,0.0 +17351,66,17,24,0.0 +17351,27,43.9,45,0.0 +17351,51,53,11,0.0 +17351,62,49.3,6,0.0 +17351,37,26,2,0.0 +17351,58,13.25,27,0.0 +17351,61,28.5,41,0.0 +17351,22,21,45,0.0 +17351,42,14,4,0.0 +17351,52,7,50,0.0 +17351,14,23.25,39,0.0 +17351,10,31,26,0.0 +17351,30,25.89,40,0.0 +17352,32,32,26,0.0 +17352,5,21.35,10,0.0 +17352,54,7.45,12,0.0 +17352,46,12,38,0.0 +17352,36,19,5,0.0 +17352,66,17,41,0.0 +17352,72,34.8,40,0.0 +17352,27,43.9,22,0.0 +17352,56,38,7,0.0 +17352,17,39,18,0.0 +17352,42,14,7,0.0 +17352,43,46,29,0.0 +17352,71,21.5,18,0.0 +17352,64,33.25,37,0.0 +17352,65,21.05,47,0.0 +17352,70,15,8,0.0 +17352,6,25,3,0.0 +17352,37,26,27,0.0 +17352,73,15,5,0.0 +17352,30,25.89,3,0.0 +17352,67,14,34,0.0 +17352,22,21,3,0.0 +17352,48,12.75,30,0.0 +17352,1,18,19,0.0 +17352,14,23.25,16,0.0 +17352,19,9.2,4,0.0 +17352,12,38,30,0.0 +17352,52,7,39,0.0 +17352,49,20,50,0.0 +17352,55,24,3,0.0 +17352,45,9.5,39,0.0 +17352,76,18,5,0.0 +17352,53,32.8,17,0.0 +17352,21,10,17,0.0 +17352,10,31,23,0.0 +17352,7,30,40,0.0 +17352,57,19.5,25,0.0 +17352,69,36,23,0.0 +17352,28,45.6,33,0.0 +17352,41,9.65,49,0.0 +17352,31,12.5,49,0.0 +17352,15,15.5,29,0.0 +17352,33,2.5,3,0.0 +17352,24,4.5,28,0.0 +17352,8,40,8,0.0 +17352,50,16.25,17,0.0 +17352,58,13.25,8,0.0 +17352,9,97,34,0.0 +17352,34,14,29,0.0 +17352,63,43.9,23,0.0 +17352,26,31.23,39,0.0 +17352,18,62.5,25,0.0 +17352,4,22,4,0.0 +17352,77,13,34,0.0 +17352,75,7.75,26,0.0 +17352,60,34,48,0.0 +17352,38,263.5,16,0.0 +17352,62,49.3,26,0.0 +17352,51,53,32,0.0 +17352,13,6,47,0.0 +17352,2,19,37,0.0 +17352,16,17.45,14,0.0 +17352,61,28.5,25,0.0 +17352,35,18,19,0.0 +17352,23,9,40,0.0 +17352,3,10,28,0.0 +17352,25,14,47,0.0 +17352,40,18.4,35,0.0 +17352,20,81,38,0.0 +17352,39,18,19,0.0 +17352,47,9.5,1,0.0 +17352,29,123.79,46,0.0 +17352,59,55,49,0.0 +17352,68,12.5,27,0.0 +17352,74,10,31,0.0 +17352,44,19.45,19,0.0 +17353,77,13,4,0.0 +17353,34,14,22,0.0 +17353,41,9.65,27,0.0 +17353,14,23.25,2,0.0 +17353,53,32.8,35,0.0 +17353,59,55,34,0.0 +17353,17,39,39,0.0 +17353,61,28.5,18,0.0 +17353,47,9.5,37,0.0 +17353,66,17,25,0.0 +17353,7,30,47,0.0 +17353,69,36,20,0.0 +17353,62,49.3,33,0.0 +17353,44,19.45,16,0.0 +17353,37,26,37,0.0 +17353,39,18,45,0.0 +17353,22,21,7,0.0 +17353,42,14,46,0.0 +17353,25,14,8,0.0 +17353,49,20,6,0.0 +17353,11,21,36,0.0 +17353,32,32,36,0.0 +17353,35,18,15,0.0 +17353,20,81,1,0.0 +17353,4,22,2,0.0 +17353,73,15,15,0.0 +17353,27,43.9,11,0.0 +17353,56,38,5,0.0 +17353,15,15.5,44,0.0 +17353,26,31.23,44,0.0 +17353,6,25,32,0.0 +17353,8,40,19,0.0 +17353,58,13.25,7,0.0 +17353,24,4.5,24,0.0 +17353,71,21.5,38,0.0 +17353,29,123.79,15,0.0 +17353,36,19,23,0.0 +17354,53,32.8,9,0.0 +17354,67,14,33,0.0 +17354,66,17,42,0.0 +17354,22,21,45,0.0 +17354,71,21.5,25,0.0 +17354,39,18,8,0.0 +17354,65,21.05,40,0.0 +17354,55,24,24,0.0 +17354,26,31.23,34,0.0 +17354,11,21,19,0.0 +17354,43,46,29,0.0 +17354,12,38,1,0.0 +17354,45,9.5,15,0.0 +17354,25,14,49,0.0 +17354,14,23.25,36,0.0 +17354,56,38,16,0.0 +17354,51,53,12,0.0 +17355,6,25,1,0.0 +17355,44,19.45,36,0.0 +17355,18,62.5,36,0.0 +17355,22,21,3,0.0 +17355,15,15.5,6,0.0 +17355,26,31.23,4,0.0 +17355,73,15,23,0.0 +17355,77,13,38,0.0 +17355,19,9.2,13,0.0 +17356,25,14,24,0.0 +17356,21,10,27,0.0 +17356,4,22,31,0.0 +17356,70,15,32,0.0 +17357,23,9,40,0.0 +17357,5,21.35,17,0.0 +17357,63,43.9,30,0.0 +17357,53,32.8,12,0.0 +17357,75,7.75,27,0.0 +17357,51,53,34,0.0 +17357,40,18.4,2,0.0 +17357,43,46,45,0.0 +17357,47,9.5,48,0.0 +17358,62,49.3,46,0.0 +17358,43,46,25,0.0 +17358,32,32,28,0.0 +17358,45,9.5,4,0.0 +17358,51,53,41,0.0 +17358,10,31,8,0.0 +17358,64,33.25,14,0.0 +17358,31,12.5,24,0.0 +17358,71,21.5,46,0.0 +17358,57,19.5,9,0.0 +17358,75,7.75,10,0.0 +17358,12,38,20,0.0 +17358,2,19,15,0.0 +17358,3,10,24,0.0 +17358,18,62.5,9,0.0 +17358,20,81,45,0.0 +17358,63,43.9,4,0.0 +17358,56,38,31,0.0 +17358,61,28.5,12,0.0 +17358,46,12,33,0.0 +17359,62,49.3,38,0.0 +17359,32,32,37,0.0 +17359,33,2.5,12,0.0 +17359,38,263.5,10,0.0 +17359,70,15,11,0.0 +17359,72,34.8,50,0.0 +17359,14,23.25,49,0.0 +17359,29,123.79,1,0.0 +17359,61,28.5,5,0.0 +17359,59,55,6,0.0 +17359,64,33.25,33,0.0 +17359,41,9.65,46,0.0 +17359,37,26,20,0.0 +17359,1,18,10,0.0 +17359,48,12.75,36,0.0 +17359,68,12.5,37,0.0 +17359,45,9.5,42,0.0 +17359,12,38,28,0.0 +17359,71,21.5,34,0.0 +17359,36,19,33,0.0 +17359,67,14,4,0.0 +17359,28,45.6,27,0.0 +17359,54,7.45,12,0.0 +17359,40,18.4,28,0.0 +17359,50,16.25,45,0.0 +17359,11,21,18,0.0 +17359,73,15,31,0.0 +17359,43,46,27,0.0 +17359,35,18,23,0.0 +17359,7,30,32,0.0 +17359,55,24,10,0.0 +17359,21,10,42,0.0 +17359,63,43.9,34,0.0 +17360,27,43.9,45,0.0 +17360,55,24,39,0.0 +17360,44,19.45,13,0.0 +17360,57,19.5,1,0.0 +17360,49,20,39,0.0 +17360,19,9.2,34,0.0 +17360,31,12.5,11,0.0 +17360,47,9.5,48,0.0 +17361,10,31,44,0.0 +17361,71,21.5,7,0.0 +17361,45,9.5,6,0.0 +17361,51,53,35,0.0 +17361,55,24,3,0.0 +17361,34,14,13,0.0 +17361,36,19,43,0.0 +17361,58,13.25,48,0.0 +17362,38,263.5,37,0.0 +17362,74,10,15,0.0 +17362,9,97,41,0.0 +17362,46,12,29,0.0 +17362,35,18,11,0.0 +17362,19,9.2,21,0.0 +17362,56,38,21,0.0 +17362,5,21.35,17,0.0 +17363,15,15.5,11,0.0 +17363,72,34.8,1,0.0 +17363,73,15,23,0.0 +17363,76,18,12,0.0 +17363,44,19.45,43,0.0 +17363,21,10,35,0.0 +17363,53,32.8,15,0.0 +17363,13,6,29,0.0 +17363,9,97,21,0.0 +17363,47,9.5,41,0.0 +17363,74,10,4,0.0 +17363,1,18,40,0.0 +17363,22,21,33,0.0 +17363,32,32,29,0.0 +17363,20,81,42,0.0 +17363,68,12.5,13,0.0 +17363,40,18.4,13,0.0 +17363,17,39,19,0.0 +17363,19,9.2,36,0.0 +17363,77,13,1,0.0 +17363,14,23.25,1,0.0 +17363,45,9.5,37,0.0 +17363,8,40,49,0.0 +17363,66,17,18,0.0 +17363,39,18,13,0.0 +17363,43,46,26,0.0 +17363,69,36,1,0.0 +17363,23,9,14,0.0 +17363,75,7.75,6,0.0 +17363,34,14,47,0.0 +17363,46,12,26,0.0 +17363,33,2.5,15,0.0 +17363,59,55,35,0.0 +17363,28,45.6,18,0.0 +17363,18,62.5,22,0.0 +17363,36,19,6,0.0 +17363,12,38,3,0.0 +17363,10,31,48,0.0 +17363,24,4.5,36,0.0 +17363,7,30,40,0.0 +17363,70,15,9,0.0 +17363,25,14,7,0.0 +17363,56,38,19,0.0 +17363,3,10,21,0.0 +17363,26,31.23,22,0.0 +17363,60,34,29,0.0 +17363,65,21.05,37,0.0 +17363,48,12.75,45,0.0 +17363,30,25.89,8,0.0 +17364,67,14,33,0.0 +17364,39,18,19,0.0 +17364,40,18.4,43,0.0 +17364,37,26,42,0.0 +17364,66,17,34,0.0 +17364,38,263.5,45,0.0 +17364,45,9.5,7,0.0 +17364,44,19.45,48,0.0 +17364,9,97,4,0.0 +17364,48,12.75,28,0.0 +17364,35,18,31,0.0 +17364,18,62.5,37,0.0 +17364,47,9.5,48,0.0 +17364,75,7.75,1,0.0 +17364,12,38,12,0.0 +17364,59,55,48,0.0 +17364,70,15,18,0.0 +17364,69,36,8,0.0 +17364,76,18,48,0.0 +17364,14,23.25,9,0.0 +17364,34,14,12,0.0 +17364,16,17.45,1,0.0 +17364,6,25,6,0.0 +17364,5,21.35,28,0.0 +17364,50,16.25,7,0.0 +17364,26,31.23,41,0.0 +17364,28,45.6,44,0.0 +17364,62,49.3,18,0.0 +17364,23,9,38,0.0 +17364,64,33.25,27,0.0 +17364,33,2.5,45,0.0 +17364,19,9.2,8,0.0 +17364,7,30,14,0.0 +17364,60,34,5,0.0 +17364,52,7,26,0.0 +17364,46,12,17,0.0 +17364,53,32.8,27,0.0 +17364,20,81,46,0.0 +17364,21,10,33,0.0 +17365,70,15,29,0.0 +17365,61,28.5,31,0.0 +17365,15,15.5,10,0.0 +17365,11,21,36,0.0 +17365,26,31.23,22,0.0 +17365,56,38,13,0.0 +17365,38,263.5,3,0.0 +17366,40,18.4,1,0.0 +17366,17,39,11,0.0 +17366,34,14,42,0.0 +17366,8,40,42,0.0 +17366,18,62.5,16,0.0 +17366,54,7.45,33,0.0 +17366,62,49.3,8,0.0 +17366,56,38,15,0.0 +17366,73,15,17,0.0 +17366,26,31.23,17,0.0 +17366,42,14,33,0.0 +17366,12,38,29,0.0 +17366,68,12.5,12,0.0 +17366,9,97,48,0.0 +17366,28,45.6,27,0.0 +17366,41,9.65,35,0.0 +17366,39,18,39,0.0 +17366,52,7,31,0.0 +17366,15,15.5,32,0.0 +17366,16,17.45,29,0.0 +17366,38,263.5,23,0.0 +17366,76,18,3,0.0 +17366,58,13.25,33,0.0 +17366,30,25.89,28,0.0 +17366,3,10,37,0.0 +17366,46,12,36,0.0 +17366,31,12.5,7,0.0 +17366,1,18,36,0.0 +17366,13,6,42,0.0 +17366,19,9.2,13,0.0 +17366,35,18,48,0.0 +17366,55,24,37,0.0 +17366,24,4.5,5,0.0 +17366,11,21,12,0.0 +17366,21,10,33,0.0 +17366,59,55,9,0.0 +17366,50,16.25,16,0.0 +17366,29,123.79,22,0.0 +17366,10,31,21,0.0 +17366,4,22,35,0.0 +17366,22,21,13,0.0 +17366,48,12.75,50,0.0 +17366,61,28.5,5,0.0 +17366,32,32,33,0.0 +17366,2,19,11,0.0 +17366,43,46,1,0.0 +17366,27,43.9,50,0.0 +17366,23,9,48,0.0 +17366,74,10,41,0.0 +17366,49,20,35,0.0 +17366,25,14,3,0.0 +17366,75,7.75,40,0.0 +17366,45,9.5,45,0.0 +17366,33,2.5,33,0.0 +17366,51,53,43,0.0 +17367,3,10,38,0.0 +17367,69,36,10,0.0 +17367,48,12.75,13,0.0 +17367,18,62.5,7,0.0 +17367,67,14,14,0.0 +17367,66,17,4,0.0 +17367,19,9.2,16,0.0 +17367,14,23.25,47,0.0 +17367,28,45.6,48,0.0 +17367,7,30,36,0.0 +17367,76,18,6,0.0 +17367,31,12.5,6,0.0 +17367,20,81,19,0.0 +17367,11,21,16,0.0 +17367,23,9,13,0.0 +17367,63,43.9,7,0.0 +17367,24,4.5,38,0.0 +17367,22,21,4,0.0 +17368,29,123.79,21,0.0 +17368,11,21,3,0.0 +17368,28,45.6,35,0.0 +17368,66,17,48,0.0 +17368,19,9.2,4,0.0 +17368,2,19,19,0.0 +17368,43,46,23,0.0 +17368,34,14,34,0.0 +17368,8,40,33,0.0 +17368,45,9.5,34,0.0 +17368,33,2.5,32,0.0 +17368,46,12,22,0.0 +17368,62,49.3,49,0.0 +17368,16,17.45,37,0.0 +17369,46,12,34,0.0 +17369,64,33.25,27,0.0 +17369,33,2.5,40,0.0 +17369,8,40,21,0.0 +17369,75,7.75,15,0.0 +17369,66,17,19,0.0 +17369,6,25,27,0.0 +17369,49,20,42,0.0 +17369,15,15.5,15,0.0 +17369,34,14,44,0.0 +17369,25,14,10,0.0 +17369,76,18,15,0.0 +17369,58,13.25,44,0.0 +17369,41,9.65,29,0.0 +17369,24,4.5,13,0.0 +17369,48,12.75,43,0.0 +17369,10,31,2,0.0 +17369,7,30,10,0.0 +17369,63,43.9,8,0.0 +17369,68,12.5,9,0.0 +17369,70,15,11,0.0 +17369,11,21,44,0.0 +17369,56,38,13,0.0 +17369,69,36,24,0.0 +17369,20,81,6,0.0 +17369,44,19.45,13,0.0 +17369,22,21,20,0.0 +17369,3,10,3,0.0 +17369,55,24,26,0.0 +17369,12,38,47,0.0 +17369,73,15,16,0.0 +17369,54,7.45,12,0.0 +17369,71,21.5,49,0.0 +17369,72,34.8,16,0.0 +17369,21,10,34,0.0 +17369,37,26,19,0.0 +17369,17,39,2,0.0 +17369,32,32,34,0.0 +17369,67,14,13,0.0 +17369,18,62.5,50,0.0 +17369,53,32.8,18,0.0 +17369,45,9.5,38,0.0 +17369,27,43.9,21,0.0 +17369,47,9.5,5,0.0 +17369,1,18,16,0.0 +17369,52,7,23,0.0 +17369,65,21.05,30,0.0 +17369,31,12.5,49,0.0 +17369,62,49.3,30,0.0 +17369,50,16.25,24,0.0 +17369,51,53,32,0.0 +17369,42,14,19,0.0 +17369,43,46,18,0.0 +17369,29,123.79,15,0.0 +17369,39,18,7,0.0 +17369,23,9,5,0.0 +17369,36,19,21,0.0 +17369,77,13,23,0.0 +17369,13,6,23,0.0 +17369,14,23.25,20,0.0 +17369,5,21.35,16,0.0 +17369,9,97,14,0.0 +17370,12,38,34,0.0 +17370,22,21,4,0.0 +17370,74,10,6,0.0 +17370,17,39,22,0.0 +17370,27,43.9,28,0.0 +17370,45,9.5,19,0.0 +17370,49,20,8,0.0 +17370,6,25,12,0.0 +17370,21,10,29,0.0 +17370,60,34,19,0.0 +17370,34,14,26,0.0 +17370,30,25.89,32,0.0 +17370,16,17.45,14,0.0 +17370,61,28.5,46,0.0 +17370,70,15,25,0.0 +17370,9,97,30,0.0 +17370,14,23.25,42,0.0 +17371,21,10,29,0.0 +17371,65,21.05,25,0.0 +17371,25,14,49,0.0 +17371,35,18,43,0.0 +17371,5,21.35,27,0.0 +17371,14,23.25,45,0.0 +17371,44,19.45,28,0.0 +17371,11,21,23,0.0 +17371,51,53,36,0.0 +17371,67,14,8,0.0 +17371,36,19,25,0.0 +17371,13,6,9,0.0 +17371,10,31,14,0.0 +17371,62,49.3,50,0.0 +17371,66,17,21,0.0 +17371,28,45.6,18,0.0 +17371,27,43.9,29,0.0 +17371,69,36,44,0.0 +17371,24,4.5,4,0.0 +17371,34,14,43,0.0 +17371,46,12,15,0.0 +17371,42,14,48,0.0 +17371,1,18,38,0.0 +17371,47,9.5,21,0.0 +17371,61,28.5,8,0.0 +17371,52,7,47,0.0 +17371,31,12.5,1,0.0 +17371,59,55,41,0.0 +17371,38,263.5,9,0.0 +17371,3,10,9,0.0 +17371,18,62.5,32,0.0 +17371,40,18.4,19,0.0 +17371,41,9.65,28,0.0 +17371,70,15,38,0.0 +17371,9,97,22,0.0 +17371,48,12.75,18,0.0 +17371,37,26,20,0.0 +17371,26,31.23,22,0.0 +17371,63,43.9,50,0.0 +17371,29,123.79,33,0.0 +17371,76,18,2,0.0 +17371,68,12.5,2,0.0 +17371,60,34,13,0.0 +17371,33,2.5,18,0.0 +17371,77,13,40,0.0 +17371,74,10,30,0.0 +17371,54,7.45,17,0.0 +17371,49,20,45,0.0 +17371,23,9,2,0.0 +17371,7,30,38,0.0 +17371,50,16.25,17,0.0 +17371,30,25.89,36,0.0 +17371,12,38,44,0.0 +17371,56,38,45,0.0 +17371,2,19,19,0.0 +17372,10,31,9,0.0 +17372,63,43.9,50,0.0 +17372,29,123.79,17,0.0 +17372,59,55,3,0.0 +17372,37,26,7,0.0 +17372,71,21.5,34,0.0 +17372,6,25,18,0.0 +17372,13,6,6,0.0 +17372,26,31.23,10,0.0 +17372,30,25.89,37,0.0 +17372,5,21.35,2,0.0 +17372,34,14,41,0.0 +17372,15,15.5,13,0.0 +17372,52,7,5,0.0 +17372,44,19.45,35,0.0 +17372,55,24,23,0.0 +17372,47,9.5,43,0.0 +17372,56,38,38,0.0 +17372,42,14,47,0.0 +17372,27,43.9,8,0.0 +17372,46,12,24,0.0 +17372,11,21,6,0.0 +17372,58,13.25,5,0.0 +17372,22,21,10,0.0 +17372,38,263.5,45,0.0 +17372,7,30,35,0.0 +17372,31,12.5,41,0.0 +17372,14,23.25,7,0.0 +17372,64,33.25,33,0.0 +17372,24,4.5,22,0.0 +17372,77,13,28,0.0 +17372,45,9.5,16,0.0 +17372,1,18,3,0.0 +17372,21,10,18,0.0 +17372,49,20,47,0.0 +17372,65,21.05,2,0.0 +17372,48,12.75,19,0.0 +17372,36,19,25,0.0 +17372,25,14,23,0.0 +17373,42,14,27,0.0 +17373,43,46,48,0.0 +17373,18,62.5,39,0.0 +17373,31,12.5,41,0.0 +17373,10,31,34,0.0 +17373,41,9.65,25,0.0 +17373,5,21.35,42,0.0 +17373,61,28.5,50,0.0 +17373,33,2.5,5,0.0 +17373,30,25.89,16,0.0 +17373,23,9,22,0.0 +17373,7,30,24,0.0 +17373,25,14,4,0.0 +17373,69,36,50,0.0 +17373,67,14,24,0.0 +17373,57,19.5,14,0.0 +17373,38,263.5,25,0.0 +17373,14,23.25,2,0.0 +17373,70,15,23,0.0 +17373,44,19.45,1,0.0 +17373,6,25,26,0.0 +17373,60,34,4,0.0 +17373,55,24,35,0.0 +17373,19,9.2,23,0.0 +17373,66,17,7,0.0 +17373,52,7,33,0.0 +17373,26,31.23,42,0.0 +17373,49,20,12,0.0 +17373,75,7.75,20,0.0 +17373,77,13,21,0.0 +17373,74,10,46,0.0 +17373,2,19,26,0.0 +17373,58,13.25,26,0.0 +17373,53,32.8,29,0.0 +17373,35,18,35,0.0 +17373,29,123.79,31,0.0 +17373,50,16.25,26,0.0 +17373,22,21,12,0.0 +17373,13,6,25,0.0 +17373,16,17.45,42,0.0 +17373,11,21,2,0.0 +17373,15,15.5,47,0.0 +17373,56,38,13,0.0 +17373,37,26,6,0.0 +17373,8,40,19,0.0 +17373,47,9.5,16,0.0 +17373,63,43.9,15,0.0 +17373,34,14,7,0.0 +17373,51,53,30,0.0 +17373,27,43.9,6,0.0 +17373,12,38,27,0.0 +17373,39,18,45,0.0 +17374,48,12.75,41,0.0 +17374,21,10,37,0.0 +17374,31,12.5,1,0.0 +17374,60,34,6,0.0 +17374,3,10,15,0.0 +17374,52,7,38,0.0 +17374,7,30,49,0.0 +17374,9,97,43,0.0 +17374,77,13,17,0.0 +17374,62,49.3,3,0.0 +17374,68,12.5,34,0.0 +17374,45,9.5,27,0.0 +17374,40,18.4,29,0.0 +17374,26,31.23,18,0.0 +17374,47,9.5,3,0.0 +17374,44,19.45,34,0.0 +17374,42,14,38,0.0 +17374,14,23.25,16,0.0 +17374,70,15,30,0.0 +17374,8,40,4,0.0 +17374,18,62.5,12,0.0 +17374,53,32.8,9,0.0 +17374,76,18,39,0.0 +17374,10,31,42,0.0 +17374,2,19,16,0.0 +17374,50,16.25,25,0.0 +17374,41,9.65,46,0.0 +17374,69,36,49,0.0 +17374,56,38,7,0.0 +17374,30,25.89,21,0.0 +17374,16,17.45,35,0.0 +17374,37,26,6,0.0 +17374,73,15,21,0.0 +17374,32,32,7,0.0 +17374,58,13.25,4,0.0 +17374,6,25,26,0.0 +17374,67,14,36,0.0 +17374,54,7.45,1,0.0 +17374,38,263.5,3,0.0 +17374,11,21,21,0.0 +17374,19,9.2,27,0.0 +17374,13,6,12,0.0 +17374,17,39,45,0.0 +17374,61,28.5,26,0.0 +17374,28,45.6,25,0.0 +17374,66,17,16,0.0 +17374,23,9,48,0.0 +17374,55,24,8,0.0 +17374,74,10,19,0.0 +17374,71,21.5,14,0.0 +17374,36,19,32,0.0 +17374,51,53,21,0.0 +17374,5,21.35,44,0.0 +17374,59,55,29,0.0 +17374,20,81,7,0.0 +17374,65,21.05,38,0.0 +17374,22,21,41,0.0 +17375,23,9,27,0.0 +17375,30,25.89,43,0.0 +17375,34,14,12,0.0 +17375,16,17.45,19,0.0 +17376,60,34,47,0.0 +17376,33,2.5,49,0.0 +17376,42,14,38,0.0 +17376,35,18,3,0.0 +17376,54,7.45,41,0.0 +17376,63,43.9,7,0.0 +17376,5,21.35,11,0.0 +17376,65,21.05,29,0.0 +17376,32,32,1,0.0 +17376,58,13.25,5,0.0 +17376,29,123.79,16,0.0 +17376,20,81,20,0.0 +17376,46,12,8,0.0 +17376,17,39,9,0.0 +17376,23,9,10,0.0 +17376,77,13,43,0.0 +17376,3,10,44,0.0 +17376,49,20,46,0.0 +17376,11,21,48,0.0 +17376,30,25.89,2,0.0 +17376,67,14,12,0.0 +17376,2,19,12,0.0 +17377,59,55,29,0.0 +17377,15,15.5,7,0.0 +17377,30,25.89,28,0.0 +17377,62,49.3,38,0.0 +17377,13,6,32,0.0 +17377,54,7.45,19,0.0 +17377,75,7.75,23,0.0 +17377,41,9.65,44,0.0 +17377,12,38,37,0.0 +17377,42,14,8,0.0 +17377,74,10,19,0.0 +17377,56,38,48,0.0 +17377,38,263.5,22,0.0 +17377,77,13,11,0.0 +17377,65,21.05,7,0.0 +17377,68,12.5,29,0.0 +17377,47,9.5,14,0.0 +17377,61,28.5,9,0.0 +17377,6,25,40,0.0 +17377,72,34.8,23,0.0 +17377,50,16.25,49,0.0 +17377,4,22,10,0.0 +17377,28,45.6,40,0.0 +17377,18,62.5,25,0.0 +17377,39,18,27,0.0 +17377,63,43.9,9,0.0 +17377,16,17.45,45,0.0 +17377,35,18,20,0.0 +17377,40,18.4,26,0.0 +17377,27,43.9,14,0.0 +17377,66,17,43,0.0 +17377,44,19.45,24,0.0 +17377,46,12,49,0.0 +17377,69,36,14,0.0 +17377,55,24,26,0.0 +17377,1,18,13,0.0 +17377,52,7,38,0.0 +17377,70,15,17,0.0 +17377,21,10,15,0.0 +17377,20,81,11,0.0 +17377,26,31.23,12,0.0 +17377,10,31,10,0.0 +17377,51,53,27,0.0 +17377,53,32.8,7,0.0 +17377,67,14,31,0.0 +17377,29,123.79,43,0.0 +17377,43,46,46,0.0 +17377,76,18,37,0.0 +17377,57,19.5,34,0.0 +17377,3,10,12,0.0 +17377,32,32,30,0.0 +17377,2,19,29,0.0 +17377,49,20,40,0.0 +17377,23,9,46,0.0 +17377,22,21,37,0.0 +17377,48,12.75,29,0.0 +17377,71,21.5,12,0.0 +17377,17,39,7,0.0 +17377,73,15,25,0.0 +17377,36,19,28,0.0 +17378,14,23.25,22,0.0 +17378,24,4.5,33,0.0 +17378,67,14,1,0.0 +17378,2,19,29,0.0 +17378,56,38,25,0.0 +17378,68,12.5,20,0.0 +17378,63,43.9,11,0.0 +17378,53,32.8,24,0.0 +17378,19,9.2,36,0.0 +17378,28,45.6,24,0.0 +17378,75,7.75,33,0.0 +17378,25,14,20,0.0 +17379,28,45.6,43,0.0 +17379,63,43.9,44,0.0 +17379,29,123.79,1,0.0 +17379,77,13,8,0.0 +17379,53,32.8,43,0.0 +17379,32,32,7,0.0 +17379,40,18.4,41,0.0 +17379,31,12.5,7,0.0 +17379,75,7.75,45,0.0 +17379,11,21,43,0.0 +17379,35,18,34,0.0 +17379,54,7.45,1,0.0 +17379,50,16.25,35,0.0 +17379,9,97,25,0.0 +17379,74,10,45,0.0 +17379,56,38,28,0.0 +17379,61,28.5,27,0.0 +17379,46,12,14,0.0 +17379,3,10,37,0.0 +17379,33,2.5,6,0.0 +17379,66,17,33,0.0 +17379,38,263.5,24,0.0 +17379,21,10,42,0.0 +17380,43,46,35,0.0 +17380,74,10,14,0.0 +17380,47,9.5,17,0.0 +17380,49,20,31,0.0 +17380,9,97,37,0.0 +17380,34,14,35,0.0 +17380,67,14,11,0.0 +17380,3,10,25,0.0 +17380,36,19,30,0.0 +17380,12,38,10,0.0 +17380,30,25.89,49,0.0 +17380,10,31,2,0.0 +17380,77,13,28,0.0 +17380,58,13.25,18,0.0 +17380,13,6,2,0.0 +17380,21,10,2,0.0 +17380,54,7.45,37,0.0 +17380,73,15,16,0.0 +17380,57,19.5,10,0.0 +17380,52,7,45,0.0 +17380,19,9.2,21,0.0 +17380,59,55,36,0.0 +17380,25,14,8,0.0 +17380,32,32,50,0.0 +17380,69,36,7,0.0 +17380,8,40,11,0.0 +17380,35,18,31,0.0 +17380,50,16.25,45,0.0 +17380,45,9.5,37,0.0 +17380,24,4.5,36,0.0 +17380,22,21,50,0.0 +17380,31,12.5,18,0.0 +17380,42,14,29,0.0 +17380,62,49.3,5,0.0 +17380,11,21,24,0.0 +17380,27,43.9,6,0.0 +17380,63,43.9,12,0.0 +17380,68,12.5,33,0.0 +17380,39,18,45,0.0 +17381,64,33.25,47,0.0 +17381,36,19,26,0.0 +17381,54,7.45,5,0.0 +17381,77,13,42,0.0 +17381,72,34.8,34,0.0 +17381,56,38,5,0.0 +17381,4,22,20,0.0 +17381,16,17.45,17,0.0 +17381,60,34,31,0.0 +17381,73,15,19,0.0 +17381,10,31,9,0.0 +17381,5,21.35,34,0.0 +17381,50,16.25,1,0.0 +17382,64,33.25,45,0.0 +17382,62,49.3,18,0.0 +17382,33,2.5,8,0.0 +17382,15,15.5,12,0.0 +17382,32,32,13,0.0 +17382,13,6,19,0.0 +17382,18,62.5,2,0.0 +17382,74,10,17,0.0 +17382,29,123.79,20,0.0 +17382,9,97,48,0.0 +17382,21,10,20,0.0 +17382,14,23.25,47,0.0 +17382,63,43.9,3,0.0 +17382,66,17,24,0.0 +17382,48,12.75,31,0.0 +17382,11,21,24,0.0 +17382,56,38,26,0.0 +17382,59,55,47,0.0 +17382,26,31.23,36,0.0 +17382,38,263.5,18,0.0 +17382,44,19.45,33,0.0 +17382,2,19,17,0.0 +17382,22,21,20,0.0 +17382,73,15,34,0.0 +17382,36,19,43,0.0 +17382,17,39,29,0.0 +17382,61,28.5,1,0.0 +17382,46,12,8,0.0 +17382,35,18,1,0.0 +17382,41,9.65,48,0.0 +17382,49,20,23,0.0 +17382,50,16.25,50,0.0 +17382,12,38,39,0.0 +17382,23,9,35,0.0 +17382,65,21.05,25,0.0 +17382,45,9.5,9,0.0 +17382,28,45.6,9,0.0 +17382,76,18,4,0.0 +17382,54,7.45,39,0.0 +17382,6,25,29,0.0 +17382,47,9.5,12,0.0 +17382,75,7.75,47,0.0 +17382,4,22,21,0.0 +17382,52,7,32,0.0 +17382,27,43.9,8,0.0 +17382,71,21.5,25,0.0 +17382,43,46,18,0.0 +17382,19,9.2,46,0.0 +17382,40,18.4,45,0.0 +17382,30,25.89,43,0.0 +17382,34,14,49,0.0 +17382,77,13,6,0.0 +17383,7,30,12,0.0 +17383,15,15.5,47,0.0 +17383,65,21.05,3,0.0 +17383,41,9.65,9,0.0 +17383,9,97,20,0.0 +17383,18,62.5,42,0.0 +17383,39,18,9,0.0 +17383,30,25.89,33,0.0 +17383,37,26,49,0.0 +17383,5,21.35,23,0.0 +17383,11,21,12,0.0 +17383,68,12.5,21,0.0 +17383,46,12,16,0.0 +17383,60,34,20,0.0 +17383,69,36,30,0.0 +17383,20,81,21,0.0 +17383,17,39,50,0.0 +17383,58,13.25,16,0.0 +17383,23,9,50,0.0 +17383,56,38,24,0.0 +17383,35,18,31,0.0 +17383,45,9.5,20,0.0 +17383,49,20,33,0.0 +17383,71,21.5,47,0.0 +17383,27,43.9,44,0.0 +17383,25,14,2,0.0 +17383,73,15,18,0.0 +17383,52,7,50,0.0 +17383,32,32,14,0.0 +17383,72,34.8,30,0.0 +17383,74,10,38,0.0 +17383,70,15,8,0.0 +17383,24,4.5,39,0.0 +17383,64,33.25,33,0.0 +17383,53,32.8,6,0.0 +17383,75,7.75,50,0.0 +17383,33,2.5,34,0.0 +17383,40,18.4,44,0.0 +17383,10,31,20,0.0 +17383,12,38,21,0.0 +17383,77,13,4,0.0 +17383,47,9.5,43,0.0 +17383,16,17.45,14,0.0 +17383,67,14,33,0.0 +17383,66,17,17,0.0 +17383,14,23.25,16,0.0 +17383,54,7.45,41,0.0 +17383,31,12.5,16,0.0 +17383,42,14,9,0.0 +17383,26,31.23,18,0.0 +17383,3,10,40,0.0 +17383,6,25,4,0.0 +17383,4,22,38,0.0 +17383,34,14,2,0.0 +17383,13,6,39,0.0 +17383,55,24,50,0.0 +17384,9,97,24,0.0 +17384,71,21.5,41,0.0 +17384,11,21,39,0.0 +17384,27,43.9,24,0.0 +17384,8,40,43,0.0 +17384,74,10,16,0.0 +17384,19,9.2,18,0.0 +17384,76,18,16,0.0 +17384,37,26,8,0.0 +17384,3,10,49,0.0 +17384,46,12,29,0.0 +17384,42,14,29,0.0 +17384,48,12.75,20,0.0 +17384,39,18,24,0.0 +17384,20,81,12,0.0 +17384,49,20,48,0.0 +17384,70,15,48,0.0 +17384,1,18,37,0.0 +17384,53,32.8,25,0.0 +17384,69,36,42,0.0 +17384,34,14,45,0.0 +17384,4,22,23,0.0 +17384,52,7,39,0.0 +17384,47,9.5,2,0.0 +17384,75,7.75,8,0.0 +17384,54,7.45,42,0.0 +17384,51,53,6,0.0 +17384,10,31,28,0.0 +17384,6,25,18,0.0 +17384,61,28.5,16,0.0 +17385,32,32,30,0.0 +17385,55,24,39,0.0 +17385,10,31,18,0.0 +17385,65,21.05,34,0.0 +17385,63,43.9,4,0.0 +17385,39,18,38,0.0 +17385,21,10,41,0.0 +17385,59,55,46,0.0 +17385,8,40,23,0.0 +17385,48,12.75,20,0.0 +17385,36,19,47,0.0 +17385,27,43.9,4,0.0 +17385,28,45.6,1,0.0 +17385,76,18,15,0.0 +17385,22,21,14,0.0 +17385,66,17,7,0.0 +17385,40,18.4,37,0.0 +17385,74,10,41,0.0 +17385,72,34.8,48,0.0 +17385,34,14,6,0.0 +17385,45,9.5,42,0.0 +17385,18,62.5,1,0.0 +17385,19,9.2,43,0.0 +17385,11,21,21,0.0 +17385,23,9,13,0.0 +17385,67,14,48,0.0 +17385,15,15.5,1,0.0 +17385,50,16.25,29,0.0 +17385,68,12.5,21,0.0 +17385,30,25.89,40,0.0 +17385,73,15,41,0.0 +17385,20,81,3,0.0 +17385,61,28.5,30,0.0 +17385,54,7.45,35,0.0 +17385,53,32.8,50,0.0 +17385,38,263.5,30,0.0 +17385,1,18,1,0.0 +17385,51,53,14,0.0 +17385,13,6,22,0.0 +17385,70,15,33,0.0 +17385,69,36,24,0.0 +17385,35,18,49,0.0 +17385,6,25,29,0.0 +17385,52,7,49,0.0 +17385,37,26,38,0.0 +17385,58,13.25,10,0.0 +17385,3,10,36,0.0 +17385,33,2.5,4,0.0 +17385,43,46,31,0.0 +17385,47,9.5,11,0.0 +17385,49,20,46,0.0 +17385,31,12.5,26,0.0 +17385,41,9.65,21,0.0 +17385,42,14,10,0.0 +17385,62,49.3,36,0.0 +17385,2,19,20,0.0 +17385,57,19.5,15,0.0 +17385,25,14,18,0.0 +17385,71,21.5,41,0.0 +17385,12,38,41,0.0 +17385,9,97,22,0.0 +17386,43,46,38,0.0 +17386,68,12.5,13,0.0 +17386,15,15.5,48,0.0 +17386,9,97,47,0.0 +17386,58,13.25,44,0.0 +17386,5,21.35,34,0.0 +17386,13,6,32,0.0 +17386,36,19,31,0.0 +17386,51,53,37,0.0 +17386,35,18,38,0.0 +17386,49,20,28,0.0 +17386,7,30,27,0.0 +17386,20,81,18,0.0 +17386,22,21,15,0.0 +17386,50,16.25,18,0.0 +17386,57,19.5,44,0.0 +17386,76,18,35,0.0 +17386,63,43.9,28,0.0 +17386,16,17.45,24,0.0 +17386,54,7.45,7,0.0 +17386,41,9.65,43,0.0 +17386,61,28.5,34,0.0 +17386,26,31.23,27,0.0 +17386,33,2.5,36,0.0 +17386,62,49.3,12,0.0 +17386,19,9.2,37,0.0 +17386,18,62.5,24,0.0 +17386,30,25.89,33,0.0 +17386,75,7.75,40,0.0 +17386,71,21.5,50,0.0 +17386,53,32.8,23,0.0 +17386,48,12.75,26,0.0 +17386,23,9,40,0.0 +17386,72,34.8,22,0.0 +17386,73,15,37,0.0 +17386,1,18,48,0.0 +17386,11,21,16,0.0 +17386,6,25,9,0.0 +17386,64,33.25,5,0.0 +17386,42,14,25,0.0 +17386,74,10,22,0.0 +17387,6,25,45,0.0 +17387,2,19,3,0.0 +17387,11,21,41,0.0 +17387,67,14,26,0.0 +17387,17,39,38,0.0 +17387,9,97,38,0.0 +17387,23,9,11,0.0 +17387,57,19.5,41,0.0 +17387,35,18,43,0.0 +17387,66,17,26,0.0 +17387,60,34,35,0.0 +17387,7,30,13,0.0 +17387,77,13,42,0.0 +17387,74,10,25,0.0 +17387,45,9.5,23,0.0 +17387,41,9.65,26,0.0 +17387,1,18,46,0.0 +17387,40,18.4,5,0.0 +17387,54,7.45,45,0.0 +17387,44,19.45,25,0.0 +17387,10,31,4,0.0 +17387,64,33.25,33,0.0 +17387,49,20,43,0.0 +17387,14,23.25,27,0.0 +17387,26,31.23,37,0.0 +17387,21,10,33,0.0 +17387,42,14,11,0.0 +17387,13,6,39,0.0 +17387,24,4.5,15,0.0 +17387,76,18,41,0.0 +17387,62,49.3,10,0.0 +17387,34,14,12,0.0 +17387,30,25.89,36,0.0 +17387,48,12.75,5,0.0 +17387,69,36,1,0.0 +17387,53,32.8,16,0.0 +17387,3,10,50,0.0 +17387,52,7,39,0.0 +17387,12,38,46,0.0 +17387,22,21,4,0.0 +17387,33,2.5,19,0.0 +17387,59,55,44,0.0 +17387,20,81,25,0.0 +17387,38,263.5,18,0.0 +17387,5,21.35,16,0.0 +17387,28,45.6,30,0.0 +17387,18,62.5,19,0.0 +17387,63,43.9,19,0.0 +17387,50,16.25,49,0.0 +17387,55,24,44,0.0 +17387,15,15.5,48,0.0 +17387,37,26,13,0.0 +17387,70,15,23,0.0 +17387,31,12.5,19,0.0 +17388,14,23.25,19,0.0 +17388,19,9.2,46,0.0 +17388,4,22,12,0.0 +17388,7,30,45,0.0 +17388,28,45.6,42,0.0 +17388,6,25,23,0.0 +17388,52,7,44,0.0 +17388,26,31.23,8,0.0 +17388,3,10,32,0.0 +17388,56,38,25,0.0 +17388,51,53,14,0.0 +17388,44,19.45,34,0.0 +17388,64,33.25,26,0.0 +17388,69,36,46,0.0 +17388,53,32.8,36,0.0 +17388,31,12.5,18,0.0 +17388,63,43.9,26,0.0 +17388,21,10,42,0.0 +17388,65,21.05,16,0.0 +17388,25,14,2,0.0 +17388,62,49.3,5,0.0 +17388,48,12.75,17,0.0 +17388,46,12,3,0.0 +17389,72,34.8,34,0.0 +17389,18,62.5,45,0.0 +17389,10,31,31,0.0 +17389,48,12.75,11,0.0 +17389,17,39,40,0.0 +17389,42,14,27,0.0 +17389,56,38,30,0.0 +17389,23,9,29,0.0 +17389,29,123.79,37,0.0 +17389,28,45.6,33,0.0 +17389,44,19.45,47,0.0 +17389,74,10,9,0.0 +17389,13,6,26,0.0 +17389,16,17.45,7,0.0 +17389,25,14,43,0.0 +17389,6,25,4,0.0 +17389,31,12.5,1,0.0 +17389,47,9.5,24,0.0 +17389,21,10,6,0.0 +17389,59,55,24,0.0 +17389,68,12.5,32,0.0 +17389,63,43.9,38,0.0 +17389,57,19.5,49,0.0 +17389,36,19,10,0.0 +17389,70,15,36,0.0 +17389,7,30,9,0.0 +17389,32,32,50,0.0 +17389,64,33.25,48,0.0 +17389,2,19,31,0.0 +17389,54,7.45,37,0.0 +17389,41,9.65,37,0.0 +17389,60,34,29,0.0 +17389,12,38,27,0.0 +17389,22,21,10,0.0 +17389,67,14,29,0.0 +17389,8,40,44,0.0 +17389,5,21.35,41,0.0 +17389,37,26,20,0.0 +17389,3,10,6,0.0 +17389,19,9.2,20,0.0 +17389,45,9.5,34,0.0 +17389,30,25.89,44,0.0 +17389,62,49.3,34,0.0 +17389,52,7,21,0.0 +17389,20,81,29,0.0 +17389,46,12,43,0.0 +17389,65,21.05,31,0.0 +17389,66,17,39,0.0 +17389,24,4.5,50,0.0 +17389,51,53,49,0.0 +17389,75,7.75,4,0.0 +17389,1,18,20,0.0 +17389,73,15,7,0.0 +17389,69,36,19,0.0 +17389,71,21.5,28,0.0 +17389,55,24,10,0.0 +17389,39,18,30,0.0 +17389,43,46,23,0.0 +17389,14,23.25,32,0.0 +17389,9,97,44,0.0 +17389,76,18,10,0.0 +17389,49,20,43,0.0 +17389,77,13,42,0.0 +17389,15,15.5,1,0.0 +17389,11,21,13,0.0 +17389,33,2.5,28,0.0 +17389,53,32.8,37,0.0 +17389,58,13.25,33,0.0 +17389,26,31.23,46,0.0 +17389,50,16.25,10,0.0 +17389,61,28.5,37,0.0 +17390,35,18,13,0.0 +17390,63,43.9,16,0.0 +17390,6,25,22,0.0 +17390,38,263.5,49,0.0 +17391,5,21.35,45,0.0 +17391,41,9.65,46,0.0 +17391,20,81,6,0.0 +17391,19,9.2,40,0.0 +17391,12,38,39,0.0 +17391,24,4.5,32,0.0 +17391,77,13,35,0.0 +17391,16,17.45,5,0.0 +17391,51,53,26,0.0 +17391,26,31.23,37,0.0 +17391,71,21.5,4,0.0 +17391,46,12,49,0.0 +17391,74,10,16,0.0 +17391,23,9,27,0.0 +17391,31,12.5,10,0.0 +17391,39,18,40,0.0 +17391,54,7.45,9,0.0 +17391,42,14,37,0.0 +17391,73,15,38,0.0 +17391,21,10,8,0.0 +17391,70,15,47,0.0 +17391,7,30,13,0.0 +17391,10,31,9,0.0 +17391,37,26,16,0.0 +17391,72,34.8,15,0.0 +17391,64,33.25,3,0.0 +17391,47,9.5,41,0.0 +17391,1,18,6,0.0 +17391,65,21.05,25,0.0 +17391,4,22,31,0.0 +17391,32,32,34,0.0 +17391,69,36,9,0.0 +17391,57,19.5,30,0.0 +17391,18,62.5,2,0.0 +17391,3,10,17,0.0 +17391,43,46,8,0.0 +17391,40,18.4,50,0.0 +17391,60,34,34,0.0 +17391,14,23.25,47,0.0 +17391,13,6,33,0.0 +17391,76,18,31,0.0 +17391,44,19.45,8,0.0 +17391,25,14,29,0.0 +17391,61,28.5,9,0.0 +17391,38,263.5,50,0.0 +17391,56,38,21,0.0 +17391,58,13.25,25,0.0 +17391,45,9.5,3,0.0 +17391,68,12.5,47,0.0 +17391,8,40,38,0.0 +17391,27,43.9,5,0.0 +17391,62,49.3,1,0.0 +17391,35,18,18,0.0 +17391,33,2.5,6,0.0 +17391,29,123.79,9,0.0 +17391,66,17,4,0.0 +17391,49,20,36,0.0 +17391,11,21,11,0.0 +17391,59,55,12,0.0 +17391,48,12.75,7,0.0 +17391,53,32.8,8,0.0 +17391,15,15.5,44,0.0 +17391,22,21,39,0.0 +17391,34,14,38,0.0 +17391,6,25,27,0.0 +17391,50,16.25,13,0.0 +17391,75,7.75,41,0.0 +17391,36,19,44,0.0 +17391,55,24,14,0.0 +17391,52,7,12,0.0 +17391,17,39,31,0.0 +17391,30,25.89,14,0.0 +17391,63,43.9,2,0.0 +17391,28,45.6,11,0.0 +17391,9,97,11,0.0 +17391,2,19,38,0.0 +17391,67,14,10,0.0 +17392,19,9.2,17,0.0 +17392,54,7.45,11,0.0 +17392,3,10,33,0.0 +17392,35,18,9,0.0 +17392,1,18,27,0.0 +17392,40,18.4,50,0.0 +17392,74,10,7,0.0 +17392,25,14,26,0.0 +17392,52,7,32,0.0 +17392,58,13.25,2,0.0 +17392,21,10,20,0.0 +17392,57,19.5,29,0.0 +17392,48,12.75,2,0.0 +17392,30,25.89,43,0.0 +17392,60,34,37,0.0 +17392,8,40,47,0.0 +17392,34,14,36,0.0 +17392,59,55,47,0.0 +17392,77,13,7,0.0 +17392,63,43.9,25,0.0 +17392,20,81,44,0.0 +17392,53,32.8,15,0.0 +17392,6,25,25,0.0 +17392,18,62.5,26,0.0 +17392,51,53,43,0.0 +17392,75,7.75,47,0.0 +17392,15,15.5,32,0.0 +17392,36,19,16,0.0 +17392,50,16.25,27,0.0 +17392,27,43.9,11,0.0 +17392,69,36,1,0.0 +17392,45,9.5,37,0.0 +17392,29,123.79,3,0.0 +17392,38,263.5,10,0.0 +17392,70,15,23,0.0 +17392,37,26,9,0.0 +17392,23,9,12,0.0 +17392,73,15,43,0.0 +17392,10,31,7,0.0 +17392,61,28.5,39,0.0 +17392,4,22,16,0.0 +17392,17,39,25,0.0 +17392,12,38,25,0.0 +17392,76,18,11,0.0 +17392,22,21,34,0.0 +17392,39,18,31,0.0 +17392,68,12.5,44,0.0 +17392,14,23.25,35,0.0 +17392,32,32,42,0.0 +17392,5,21.35,1,0.0 +17392,49,20,47,0.0 +17392,47,9.5,25,0.0 +17392,13,6,29,0.0 +17392,9,97,17,0.0 +17392,43,46,12,0.0 +17392,28,45.6,15,0.0 +17392,41,9.65,9,0.0 +17392,7,30,19,0.0 +17392,72,34.8,34,0.0 +17392,56,38,48,0.0 +17392,31,12.5,46,0.0 +17392,67,14,15,0.0 +17392,26,31.23,28,0.0 +17392,65,21.05,40,0.0 +17392,16,17.45,6,0.0 +17392,46,12,16,0.0 +17392,62,49.3,6,0.0 +17392,42,14,48,0.0 +17392,33,2.5,41,0.0 +17392,44,19.45,32,0.0 +17392,11,21,26,0.0 +17392,55,24,47,0.0 +17393,61,28.5,10,0.0 +17393,37,26,30,0.0 +17393,67,14,37,0.0 +17393,31,12.5,27,0.0 +17393,39,18,23,0.0 +17393,77,13,3,0.0 +17393,20,81,43,0.0 +17393,50,16.25,9,0.0 +17393,47,9.5,16,0.0 +17393,74,10,43,0.0 +17393,63,43.9,28,0.0 +17393,15,15.5,24,0.0 +17393,41,9.65,30,0.0 +17393,12,38,6,0.0 +17393,7,30,17,0.0 +17393,17,39,32,0.0 +17393,55,24,41,0.0 +17393,5,21.35,6,0.0 +17393,73,15,46,0.0 +17393,64,33.25,39,0.0 +17393,71,21.5,16,0.0 +17393,27,43.9,1,0.0 +17393,65,21.05,2,0.0 +17393,62,49.3,32,0.0 +17393,48,12.75,35,0.0 +17393,58,13.25,32,0.0 +17393,42,14,47,0.0 +17393,23,9,1,0.0 +17393,6,25,20,0.0 +17393,53,32.8,47,0.0 +17393,1,18,45,0.0 +17393,4,22,1,0.0 +17393,68,12.5,44,0.0 +17393,57,19.5,24,0.0 +17393,24,4.5,27,0.0 +17393,59,55,8,0.0 +17394,11,21,32,0.0 +17394,2,19,8,0.0 +17394,58,13.25,48,0.0 +17394,26,31.23,47,0.0 +17394,5,21.35,16,0.0 +17394,57,19.5,46,0.0 +17394,3,10,49,0.0 +17394,35,18,45,0.0 +17394,71,21.5,22,0.0 +17394,47,9.5,30,0.0 +17394,33,2.5,14,0.0 +17394,6,25,48,0.0 +17394,45,9.5,31,0.0 +17394,24,4.5,34,0.0 +17394,52,7,42,0.0 +17394,21,10,48,0.0 +17394,8,40,21,0.0 +17394,56,38,21,0.0 +17394,54,7.45,27,0.0 +17394,15,15.5,47,0.0 +17394,4,22,16,0.0 +17394,40,18.4,19,0.0 +17394,29,123.79,31,0.0 +17394,23,9,40,0.0 +17394,17,39,23,0.0 +17394,25,14,23,0.0 +17394,49,20,28,0.0 +17394,1,18,46,0.0 +17394,32,32,22,0.0 +17394,69,36,5,0.0 +17394,30,25.89,29,0.0 +17394,66,17,22,0.0 +17394,44,19.45,40,0.0 +17395,49,20,21,0.0 +17395,46,12,45,0.0 +17395,34,14,32,0.0 +17395,14,23.25,49,0.0 +17395,11,21,5,0.0 +17395,48,12.75,26,0.0 +17395,47,9.5,46,0.0 +17395,16,17.45,31,0.0 +17395,5,21.35,11,0.0 +17395,62,49.3,1,0.0 +17395,2,19,7,0.0 +17395,33,2.5,25,0.0 +17395,21,10,22,0.0 +17395,27,43.9,12,0.0 +17395,31,12.5,16,0.0 +17395,10,31,39,0.0 +17395,1,18,10,0.0 +17395,63,43.9,46,0.0 +17395,19,9.2,33,0.0 +17395,65,21.05,4,0.0 +17396,10,31,18,0.0 +17396,64,33.25,38,0.0 +17396,41,9.65,18,0.0 +17396,57,19.5,20,0.0 +17396,72,34.8,33,0.0 +17396,45,9.5,43,0.0 +17396,69,36,26,0.0 +17396,29,123.79,34,0.0 +17396,58,13.25,20,0.0 +17396,13,6,37,0.0 +17396,48,12.75,25,0.0 +17396,42,14,41,0.0 +17396,73,15,25,0.0 +17396,55,24,8,0.0 +17396,20,81,15,0.0 +17396,43,46,11,0.0 +17396,77,13,17,0.0 +17396,22,21,45,0.0 +17396,15,15.5,16,0.0 +17396,19,9.2,39,0.0 +17396,44,19.45,16,0.0 +17396,53,32.8,17,0.0 +17396,50,16.25,35,0.0 +17396,33,2.5,32,0.0 +17396,60,34,40,0.0 +17396,39,18,47,0.0 +17396,9,97,32,0.0 +17396,17,39,6,0.0 +17396,16,17.45,2,0.0 +17396,54,7.45,34,0.0 +17396,59,55,21,0.0 +17396,61,28.5,1,0.0 +17396,75,7.75,41,0.0 +17396,25,14,10,0.0 +17396,30,25.89,7,0.0 +17396,47,9.5,43,0.0 +17396,12,38,29,0.0 +17396,40,18.4,36,0.0 +17396,52,7,43,0.0 +17396,27,43.9,26,0.0 +17396,56,38,45,0.0 +17396,21,10,14,0.0 +17396,46,12,33,0.0 +17396,32,32,34,0.0 +17396,62,49.3,20,0.0 +17396,8,40,41,0.0 +17396,11,21,10,0.0 +17396,67,14,42,0.0 +17396,71,21.5,38,0.0 +17396,23,9,37,0.0 +17396,74,10,7,0.0 +17396,66,17,50,0.0 +17396,37,26,25,0.0 +17396,4,22,6,0.0 +17396,68,12.5,4,0.0 +17396,34,14,29,0.0 +17396,70,15,40,0.0 +17396,26,31.23,6,0.0 +17396,31,12.5,42,0.0 +17397,17,39,2,0.0 +17397,30,25.89,48,0.0 +17397,63,43.9,50,0.0 +17397,40,18.4,30,0.0 +17397,75,7.75,7,0.0 +17397,37,26,37,0.0 +17397,41,9.65,31,0.0 +17397,48,12.75,42,0.0 +17397,66,17,12,0.0 +17397,54,7.45,1,0.0 +17397,26,31.23,29,0.0 +17397,24,4.5,31,0.0 +17397,65,21.05,40,0.0 +17397,19,9.2,46,0.0 +17397,12,38,38,0.0 +17397,23,9,43,0.0 +17397,22,21,15,0.0 +17397,21,10,46,0.0 +17397,7,30,6,0.0 +17397,1,18,16,0.0 +17397,55,24,24,0.0 +17397,42,14,37,0.0 +17397,36,19,18,0.0 +17397,20,81,20,0.0 +17397,10,31,42,0.0 +17397,13,6,14,0.0 +17397,2,19,47,0.0 +17397,46,12,29,0.0 +17397,38,263.5,3,0.0 +17397,27,43.9,25,0.0 +17397,15,15.5,9,0.0 +17397,9,97,49,0.0 +17397,72,34.8,36,0.0 +17397,58,13.25,3,0.0 +17397,32,32,16,0.0 +17397,29,123.79,31,0.0 +17397,64,33.25,50,0.0 +17397,70,15,47,0.0 +17397,33,2.5,33,0.0 +17397,53,32.8,45,0.0 +17397,62,49.3,38,0.0 +17398,62,49.3,31,0.0 +17398,65,21.05,39,0.0 +17398,50,16.25,43,0.0 +17398,23,9,29,0.0 +17398,66,17,42,0.0 +17398,45,9.5,25,0.0 +17398,48,12.75,9,0.0 +17398,15,15.5,34,0.0 +17398,17,39,1,0.0 +17398,64,33.25,16,0.0 +17398,36,19,29,0.0 +17398,2,19,17,0.0 +17398,19,9.2,27,0.0 +17398,14,23.25,41,0.0 +17398,39,18,8,0.0 +17398,35,18,36,0.0 +17398,18,62.5,12,0.0 +17398,59,55,35,0.0 +17398,22,21,8,0.0 +17398,24,4.5,37,0.0 +17398,29,123.79,3,0.0 +17398,1,18,43,0.0 +17398,60,34,13,0.0 +17398,49,20,26,0.0 +17398,11,21,40,0.0 +17398,52,7,30,0.0 +17398,46,12,23,0.0 +17398,58,13.25,33,0.0 +17398,10,31,26,0.0 +17398,41,9.65,12,0.0 +17398,43,46,29,0.0 +17398,28,45.6,36,0.0 +17398,67,14,41,0.0 +17398,61,28.5,7,0.0 +17398,54,7.45,43,0.0 +17398,55,24,46,0.0 +17398,21,10,40,0.0 +17398,68,12.5,28,0.0 +17399,57,19.5,35,0.0 +17399,70,15,34,0.0 +17399,2,19,10,0.0 +17399,60,34,13,0.0 +17399,29,123.79,9,0.0 +17399,22,21,24,0.0 +17399,16,17.45,35,0.0 +17399,26,31.23,23,0.0 +17399,4,22,36,0.0 +17399,62,49.3,6,0.0 +17399,76,18,21,0.0 +17399,73,15,11,0.0 +17399,72,34.8,16,0.0 +17399,8,40,21,0.0 +17399,64,33.25,39,0.0 +17400,58,13.25,24,0.0 +17400,68,12.5,4,0.0 +17400,23,9,46,0.0 +17400,14,23.25,32,0.0 +17400,63,43.9,24,0.0 +17400,11,21,43,0.0 +17400,60,34,38,0.0 +17400,24,4.5,25,0.0 +17400,52,7,3,0.0 +17400,8,40,42,0.0 +17400,28,45.6,23,0.0 +17400,4,22,39,0.0 +17400,46,12,41,0.0 +17400,54,7.45,46,0.0 +17400,50,16.25,28,0.0 +17400,18,62.5,17,0.0 +17400,48,12.75,28,0.0 +17400,61,28.5,22,0.0 +17400,15,15.5,37,0.0 +17400,51,53,10,0.0 +17400,35,18,20,0.0 +17400,77,13,41,0.0 +17400,33,2.5,39,0.0 +17400,40,18.4,3,0.0 +17400,19,9.2,31,0.0 +17400,3,10,49,0.0 +17400,62,49.3,23,0.0 +17400,38,263.5,17,0.0 +17400,55,24,18,0.0 +17400,17,39,35,0.0 +17400,30,25.89,14,0.0 +17400,74,10,22,0.0 +17400,16,17.45,25,0.0 +17401,57,19.5,15,0.0 +17401,73,15,12,0.0 +17401,66,17,48,0.0 +17401,41,9.65,8,0.0 +17401,29,123.79,12,0.0 +17401,64,33.25,45,0.0 +17401,18,62.5,3,0.0 +17401,4,22,23,0.0 +17401,40,18.4,39,0.0 +17401,70,15,9,0.0 +17401,38,263.5,18,0.0 +17401,61,28.5,42,0.0 +17401,53,32.8,25,0.0 +17401,42,14,23,0.0 +17402,12,38,19,0.0 +17402,61,28.5,34,0.0 +17402,8,40,21,0.0 +17402,28,45.6,21,0.0 +17402,38,263.5,33,0.0 +17402,21,10,11,0.0 +17402,57,19.5,40,0.0 +17402,29,123.79,24,0.0 +17402,51,53,33,0.0 +17402,58,13.25,9,0.0 +17402,14,23.25,47,0.0 +17402,34,14,13,0.0 +17402,17,39,16,0.0 +17402,73,15,16,0.0 +17402,15,15.5,45,0.0 +17402,50,16.25,41,0.0 +17402,77,13,44,0.0 +17402,9,97,40,0.0 +17402,23,9,1,0.0 +17402,56,38,28,0.0 +17402,32,32,24,0.0 +17402,71,21.5,49,0.0 +17402,11,21,49,0.0 +17402,74,10,40,0.0 +17402,59,55,14,0.0 +17402,19,9.2,28,0.0 +17402,5,21.35,49,0.0 +17402,68,12.5,47,0.0 +17402,18,62.5,36,0.0 +17402,55,24,7,0.0 +17402,16,17.45,17,0.0 +17402,65,21.05,33,0.0 +17402,70,15,42,0.0 +17402,7,30,7,0.0 +17402,67,14,35,0.0 +17402,64,33.25,17,0.0 +17402,72,34.8,50,0.0 +17402,41,9.65,5,0.0 +17402,4,22,21,0.0 +17402,49,20,35,0.0 +17402,60,34,34,0.0 +17402,48,12.75,26,0.0 +17402,75,7.75,16,0.0 +17402,3,10,6,0.0 +17402,13,6,43,0.0 +17402,44,19.45,34,0.0 +17402,39,18,16,0.0 +17402,30,25.89,49,0.0 +17402,43,46,20,0.0 +17402,33,2.5,22,0.0 +17402,20,81,47,0.0 +17402,63,43.9,5,0.0 +17402,54,7.45,21,0.0 +17402,1,18,19,0.0 +17402,40,18.4,12,0.0 +17402,2,19,36,0.0 +17402,26,31.23,25,0.0 +17402,27,43.9,35,0.0 +17402,42,14,25,0.0 +17402,31,12.5,42,0.0 +17402,45,9.5,27,0.0 +17402,47,9.5,34,0.0 +17402,66,17,27,0.0 +17402,36,19,30,0.0 +17402,76,18,38,0.0 +17402,10,31,10,0.0 +17402,52,7,12,0.0 +17402,53,32.8,26,0.0 +17402,25,14,12,0.0 +17402,6,25,9,0.0 +17402,22,21,30,0.0 +17402,24,4.5,22,0.0 +17402,37,26,15,0.0 +17403,14,23.25,2,0.0 +17403,57,19.5,47,0.0 +17403,9,97,2,0.0 +17403,70,15,16,0.0 +17403,45,9.5,47,0.0 +17403,38,263.5,3,0.0 +17403,67,14,12,0.0 +17403,46,12,48,0.0 +17403,59,55,26,0.0 +17403,77,13,17,0.0 +17403,27,43.9,42,0.0 +17403,35,18,6,0.0 +17403,76,18,40,0.0 +17403,49,20,48,0.0 +17403,64,33.25,44,0.0 +17403,56,38,30,0.0 +17403,22,21,45,0.0 +17403,41,9.65,33,0.0 +17403,54,7.45,38,0.0 +17403,42,14,3,0.0 +17403,8,40,49,0.0 +17403,28,45.6,46,0.0 +17403,63,43.9,8,0.0 +17403,6,25,44,0.0 +17403,21,10,4,0.0 +17403,10,31,16,0.0 +17403,18,62.5,20,0.0 +17403,60,34,37,0.0 +17403,39,18,13,0.0 +17403,74,10,39,0.0 +17403,37,26,49,0.0 +17403,75,7.75,1,0.0 +17403,73,15,18,0.0 +17403,40,18.4,44,0.0 +17403,68,12.5,25,0.0 +17403,20,81,1,0.0 +17403,30,25.89,17,0.0 +17403,65,21.05,20,0.0 +17403,72,34.8,37,0.0 +17404,63,43.9,35,0.0 +17404,42,14,11,0.0 +17404,70,15,49,0.0 +17404,73,15,12,0.0 +17404,52,7,30,0.0 +17404,47,9.5,4,0.0 +17404,65,21.05,40,0.0 +17404,58,13.25,22,0.0 +17404,64,33.25,33,0.0 +17404,34,14,1,0.0 +17404,5,21.35,38,0.0 +17404,30,25.89,23,0.0 +17404,23,9,42,0.0 +17404,14,23.25,49,0.0 +17404,41,9.65,38,0.0 +17404,27,43.9,8,0.0 +17404,67,14,9,0.0 +17404,16,17.45,19,0.0 +17404,54,7.45,32,0.0 +17404,17,39,6,0.0 +17404,46,12,6,0.0 +17404,43,46,22,0.0 +17404,6,25,41,0.0 +17404,11,21,34,0.0 +17404,24,4.5,25,0.0 +17404,59,55,9,0.0 +17404,22,21,12,0.0 +17404,51,53,18,0.0 +17404,21,10,45,0.0 +17404,1,18,11,0.0 +17404,56,38,40,0.0 +17404,38,263.5,5,0.0 +17404,72,34.8,33,0.0 +17404,68,12.5,15,0.0 +17404,57,19.5,47,0.0 +17404,32,32,32,0.0 +17404,15,15.5,44,0.0 +17404,50,16.25,27,0.0 +17404,3,10,1,0.0 +17404,9,97,31,0.0 +17404,37,26,30,0.0 +17404,69,36,36,0.0 +17404,25,14,31,0.0 +17404,10,31,14,0.0 +17404,77,13,45,0.0 +17404,40,18.4,7,0.0 +17404,74,10,49,0.0 +17404,29,123.79,18,0.0 +17404,13,6,31,0.0 +17404,61,28.5,32,0.0 +17404,18,62.5,43,0.0 +17404,31,12.5,35,0.0 +17404,53,32.8,38,0.0 +17404,7,30,15,0.0 +17404,33,2.5,15,0.0 +17404,35,18,25,0.0 +17404,62,49.3,9,0.0 +17404,20,81,31,0.0 +17404,2,19,46,0.0 +17404,60,34,6,0.0 +17404,12,38,36,0.0 +17404,26,31.23,26,0.0 +17404,28,45.6,28,0.0 +17404,66,17,6,0.0 +17405,64,33.25,45,0.0 +17405,18,62.5,3,0.0 +17405,15,15.5,2,0.0 +17405,2,19,33,0.0 +17405,16,17.45,37,0.0 +17405,53,32.8,43,0.0 +17405,6,25,28,0.0 +17406,3,10,47,0.0 +17406,59,55,39,0.0 +17406,10,31,19,0.0 +17406,39,18,8,0.0 +17406,29,123.79,24,0.0 +17406,14,23.25,47,0.0 +17406,53,32.8,15,0.0 +17406,15,15.5,42,0.0 +17406,34,14,13,0.0 +17406,20,81,15,0.0 +17406,32,32,26,0.0 +17406,37,26,6,0.0 +17406,27,43.9,12,0.0 +17406,71,21.5,7,0.0 +17406,52,7,42,0.0 +17406,25,14,32,0.0 +17406,74,10,39,0.0 +17406,41,9.65,10,0.0 +17406,66,17,49,0.0 +17406,65,21.05,22,0.0 +17406,38,263.5,17,0.0 +17406,75,7.75,38,0.0 +17406,56,38,12,0.0 +17406,42,14,19,0.0 +17406,49,20,11,0.0 +17406,6,25,27,0.0 +17406,17,39,34,0.0 +17406,36,19,33,0.0 +17406,13,6,8,0.0 +17407,57,19.5,34,0.0 +17407,38,263.5,46,0.0 +17407,72,34.8,36,0.0 +17407,17,39,15,0.0 +17407,7,30,37,0.0 +17407,46,12,46,0.0 +17407,52,7,28,0.0 +17407,77,13,44,0.0 +17408,37,26,2,0.0 +17408,1,18,48,0.0 +17408,34,14,43,0.0 +17408,24,4.5,44,0.0 +17408,13,6,31,0.0 +17408,60,34,24,0.0 +17408,48,12.75,37,0.0 +17408,36,19,38,0.0 +17408,55,24,18,0.0 +17408,57,19.5,27,0.0 +17408,9,97,8,0.0 +17408,73,15,27,0.0 +17408,15,15.5,5,0.0 +17408,38,263.5,46,0.0 +17408,53,32.8,21,0.0 +17408,40,18.4,24,0.0 +17408,16,17.45,14,0.0 +17408,45,9.5,37,0.0 +17408,64,33.25,5,0.0 +17408,29,123.79,34,0.0 +17408,35,18,34,0.0 +17408,52,7,28,0.0 +17408,67,14,17,0.0 +17408,56,38,36,0.0 +17408,21,10,38,0.0 +17408,19,9.2,37,0.0 +17408,27,43.9,31,0.0 +17408,5,21.35,39,0.0 +17408,68,12.5,21,0.0 +17408,71,21.5,32,0.0 +17408,50,16.25,31,0.0 +17408,59,55,3,0.0 +17408,11,21,29,0.0 +17408,77,13,9,0.0 +17408,51,53,17,0.0 +17408,76,18,1,0.0 +17408,61,28.5,30,0.0 +17408,4,22,48,0.0 +17408,43,46,12,0.0 +17408,23,9,3,0.0 +17408,2,19,4,0.0 +17408,14,23.25,37,0.0 +17408,30,25.89,47,0.0 +17408,39,18,12,0.0 +17409,4,22,28,0.0 +17409,31,12.5,4,0.0 +17409,70,15,8,0.0 +17409,43,46,1,0.0 +17409,53,32.8,35,0.0 +17409,34,14,30,0.0 +17409,10,31,13,0.0 +17409,23,9,6,0.0 +17409,39,18,25,0.0 +17409,2,19,26,0.0 +17409,62,49.3,28,0.0 +17409,77,13,39,0.0 +17409,7,30,38,0.0 +17409,49,20,2,0.0 +17409,54,7.45,43,0.0 +17409,25,14,36,0.0 +17409,55,24,47,0.0 +17409,37,26,32,0.0 +17409,57,19.5,11,0.0 +17409,45,9.5,1,0.0 +17410,17,39,18,0.0 +17410,68,12.5,42,0.0 +17410,43,46,48,0.0 +17410,72,34.8,30,0.0 +17410,21,10,16,0.0 +17410,18,62.5,6,0.0 +17410,67,14,29,0.0 +17410,27,43.9,39,0.0 +17410,63,43.9,33,0.0 +17410,7,30,28,0.0 +17410,45,9.5,10,0.0 +17410,26,31.23,35,0.0 +17410,14,23.25,16,0.0 +17410,44,19.45,36,0.0 +17410,13,6,16,0.0 +17410,71,21.5,24,0.0 +17410,60,34,49,0.0 +17410,49,20,18,0.0 +17410,34,14,21,0.0 +17410,74,10,8,0.0 +17410,76,18,20,0.0 +17410,19,9.2,16,0.0 +17410,2,19,30,0.0 +17410,38,263.5,48,0.0 +17410,48,12.75,8,0.0 +17410,69,36,15,0.0 +17410,58,13.25,38,0.0 +17410,29,123.79,43,0.0 +17410,32,32,41,0.0 +17410,33,2.5,10,0.0 +17410,70,15,25,0.0 +17410,25,14,1,0.0 +17410,28,45.6,28,0.0 +17410,11,21,12,0.0 +17410,55,24,48,0.0 +17411,9,97,7,0.0 +17411,55,24,30,0.0 +17411,38,263.5,34,0.0 +17411,61,28.5,7,0.0 +17411,67,14,5,0.0 +17411,49,20,10,0.0 +17411,51,53,30,0.0 +17411,15,15.5,16,0.0 +17411,29,123.79,6,0.0 +17411,73,15,31,0.0 +17411,16,17.45,16,0.0 +17411,12,38,37,0.0 +17411,63,43.9,3,0.0 +17411,46,12,28,0.0 +17411,57,19.5,9,0.0 +17411,14,23.25,23,0.0 +17411,7,30,6,0.0 +17411,23,9,18,0.0 +17411,74,10,37,0.0 +17411,66,17,20,0.0 +17411,35,18,25,0.0 +17411,68,12.5,27,0.0 +17411,41,9.65,43,0.0 +17411,77,13,19,0.0 +17411,44,19.45,40,0.0 +17411,34,14,31,0.0 +17411,24,4.5,1,0.0 +17411,50,16.25,39,0.0 +17411,21,10,49,0.0 +17411,8,40,19,0.0 +17411,71,21.5,27,0.0 +17411,58,13.25,1,0.0 +17411,42,14,30,0.0 +17411,69,36,43,0.0 +17411,76,18,49,0.0 +17411,32,32,13,0.0 +17411,43,46,28,0.0 +17411,75,7.75,12,0.0 +17411,19,9.2,42,0.0 +17411,53,32.8,6,0.0 +17411,22,21,5,0.0 +17411,18,62.5,21,0.0 +17411,62,49.3,19,0.0 +17411,72,34.8,37,0.0 +17411,4,22,33,0.0 +17411,13,6,17,0.0 +17411,25,14,24,0.0 +17411,48,12.75,45,0.0 +17411,65,21.05,36,0.0 +17411,54,7.45,13,0.0 +17411,30,25.89,8,0.0 +17411,1,18,3,0.0 +17411,56,38,23,0.0 +17411,27,43.9,36,0.0 +17411,47,9.5,6,0.0 +17411,5,21.35,17,0.0 +17411,36,19,4,0.0 +17411,45,9.5,23,0.0 +17411,11,21,15,0.0 +17411,17,39,8,0.0 +17411,6,25,10,0.0 +17411,10,31,43,0.0 +17411,3,10,31,0.0 +17411,28,45.6,22,0.0 +17411,70,15,25,0.0 +17411,39,18,33,0.0 +17411,37,26,46,0.0 +17411,52,7,1,0.0 +17411,40,18.4,48,0.0 +17411,59,55,8,0.0 +17411,20,81,47,0.0 +17411,60,34,29,0.0 +17411,64,33.25,14,0.0 +17411,2,19,17,0.0 +17411,26,31.23,31,0.0 +17411,31,12.5,19,0.0 +17412,28,45.6,25,0.0 +17412,41,9.65,28,0.0 +17412,17,39,50,0.0 +17412,50,16.25,12,0.0 +17412,55,24,12,0.0 +17412,5,21.35,17,0.0 +17412,23,9,8,0.0 +17412,49,20,30,0.0 +17412,58,13.25,1,0.0 +17412,36,19,16,0.0 +17412,64,33.25,44,0.0 +17412,48,12.75,31,0.0 +17412,40,18.4,23,0.0 +17412,27,43.9,6,0.0 +17412,75,7.75,23,0.0 +17412,1,18,27,0.0 +17412,69,36,43,0.0 +17412,68,12.5,36,0.0 +17412,57,19.5,20,0.0 +17412,39,18,7,0.0 +17412,37,26,5,0.0 +17412,66,17,46,0.0 +17412,26,31.23,47,0.0 +17412,77,13,37,0.0 +17412,35,18,25,0.0 +17412,2,19,40,0.0 +17412,34,14,30,0.0 +17412,3,10,10,0.0 +17412,60,34,2,0.0 +17412,76,18,17,0.0 +17412,74,10,49,0.0 +17412,73,15,39,0.0 +17412,32,32,35,0.0 +17413,36,19,35,0.0 +17413,34,14,1,0.0 +17413,64,33.25,47,0.0 +17413,62,49.3,29,0.0 +17413,14,23.25,7,0.0 +17413,55,24,16,0.0 +17413,52,7,41,0.0 +17413,70,15,46,0.0 +17413,61,28.5,46,0.0 +17413,19,9.2,1,0.0 +17413,23,9,32,0.0 +17413,71,21.5,5,0.0 +17413,1,18,34,0.0 +17413,60,34,38,0.0 +17413,18,62.5,46,0.0 +17413,42,14,36,0.0 +17413,40,18.4,9,0.0 +17413,44,19.45,7,0.0 +17413,38,263.5,42,0.0 +17413,10,31,4,0.0 +17413,27,43.9,2,0.0 +17413,25,14,41,0.0 +17413,28,45.6,14,0.0 +17413,30,25.89,14,0.0 +17413,77,13,17,0.0 +17413,39,18,29,0.0 +17413,63,43.9,20,0.0 +17413,73,15,45,0.0 +17413,49,20,50,0.0 +17413,8,40,21,0.0 +17414,60,34,45,0.0 +17414,42,14,34,0.0 +17414,72,34.8,10,0.0 +17414,24,4.5,19,0.0 +17414,57,19.5,17,0.0 +17414,75,7.75,10,0.0 +17414,1,18,13,0.0 +17414,14,23.25,48,0.0 +17414,40,18.4,34,0.0 +17414,53,32.8,42,0.0 +17414,48,12.75,35,0.0 +17414,62,49.3,28,0.0 +17414,28,45.6,22,0.0 +17414,67,14,44,0.0 +17414,7,30,2,0.0 +17414,29,123.79,9,0.0 +17414,22,21,9,0.0 +17414,16,17.45,46,0.0 +17414,4,22,13,0.0 +17414,12,38,4,0.0 +17414,77,13,29,0.0 +17414,52,7,4,0.0 +17414,36,19,1,0.0 +17414,61,28.5,1,0.0 +17414,25,14,24,0.0 +17414,33,2.5,48,0.0 +17414,76,18,37,0.0 +17414,8,40,36,0.0 +17414,13,6,14,0.0 +17414,43,46,16,0.0 +17414,49,20,39,0.0 +17414,63,43.9,47,0.0 +17414,11,21,34,0.0 +17414,64,33.25,31,0.0 +17414,26,31.23,49,0.0 +17414,51,53,29,0.0 +17414,32,32,31,0.0 +17414,46,12,24,0.0 +17414,59,55,3,0.0 +17414,45,9.5,43,0.0 +17414,69,36,42,0.0 +17414,34,14,3,0.0 +17414,71,21.5,50,0.0 +17414,18,62.5,42,0.0 +17414,54,7.45,22,0.0 +17414,44,19.45,23,0.0 +17414,55,24,12,0.0 +17414,37,26,26,0.0 +17414,27,43.9,6,0.0 +17414,38,263.5,33,0.0 +17414,30,25.89,24,0.0 +17414,31,12.5,23,0.0 +17414,58,13.25,27,0.0 +17414,21,10,7,0.0 +17414,23,9,12,0.0 +17414,5,21.35,18,0.0 +17414,47,9.5,12,0.0 +17414,73,15,49,0.0 +17414,56,38,21,0.0 +17414,6,25,34,0.0 +17414,66,17,38,0.0 +17414,70,15,2,0.0 +17414,68,12.5,4,0.0 +17414,19,9.2,42,0.0 +17414,9,97,15,0.0 +17415,50,16.25,17,0.0 +17415,75,7.75,26,0.0 +17415,70,15,30,0.0 +17415,40,18.4,37,0.0 +17415,46,12,39,0.0 +17415,14,23.25,26,0.0 +17415,33,2.5,3,0.0 +17415,26,31.23,46,0.0 +17415,58,13.25,25,0.0 +17415,67,14,11,0.0 +17415,28,45.6,13,0.0 +17415,18,62.5,3,0.0 +17415,16,17.45,29,0.0 +17415,64,33.25,17,0.0 +17415,4,22,3,0.0 +17415,21,10,49,0.0 +17415,44,19.45,40,0.0 +17415,15,15.5,21,0.0 +17415,39,18,28,0.0 +17415,5,21.35,19,0.0 +17415,76,18,38,0.0 +17415,10,31,39,0.0 +17415,34,14,48,0.0 +17415,61,28.5,32,0.0 +17415,69,36,38,0.0 +17415,20,81,12,0.0 +17415,1,18,46,0.0 +17415,2,19,36,0.0 +17415,73,15,11,0.0 +17415,42,14,23,0.0 +17415,6,25,27,0.0 +17415,8,40,45,0.0 +17415,23,9,14,0.0 +17415,55,24,28,0.0 +17416,47,9.5,20,0.0 +17416,57,19.5,5,0.0 +17416,45,9.5,6,0.0 +17416,16,17.45,33,0.0 +17416,64,33.25,9,0.0 +17416,24,4.5,45,0.0 +17416,10,31,5,0.0 +17416,25,14,44,0.0 +17416,40,18.4,42,0.0 +17416,49,20,32,0.0 +17416,7,30,43,0.0 +17416,77,13,4,0.0 +17416,70,15,17,0.0 +17416,43,46,33,0.0 +17416,68,12.5,30,0.0 +17416,33,2.5,29,0.0 +17416,23,9,6,0.0 +17416,69,36,34,0.0 +17417,13,6,11,0.0 +17417,4,22,48,0.0 +17417,41,9.65,2,0.0 +17417,33,2.5,36,0.0 +17417,73,15,19,0.0 +17417,34,14,6,0.0 +17417,54,7.45,33,0.0 +17417,59,55,15,0.0 +17418,38,263.5,12,0.0 +17418,32,32,49,0.0 +17418,49,20,40,0.0 +17418,2,19,45,0.0 +17418,53,32.8,13,0.0 +17418,75,7.75,29,0.0 +17418,12,38,49,0.0 +17418,77,13,21,0.0 +17418,64,33.25,16,0.0 +17418,40,18.4,45,0.0 +17418,61,28.5,26,0.0 +17418,58,13.25,11,0.0 +17418,14,23.25,33,0.0 +17418,60,34,9,0.0 +17418,62,49.3,24,0.0 +17418,34,14,33,0.0 +17418,44,19.45,11,0.0 +17418,5,21.35,37,0.0 +17418,65,21.05,15,0.0 +17418,71,21.5,13,0.0 +17418,35,18,42,0.0 +17418,11,21,16,0.0 +17418,41,9.65,37,0.0 +17418,68,12.5,9,0.0 +17418,39,18,12,0.0 +17418,52,7,50,0.0 +17418,33,2.5,42,0.0 +17418,30,25.89,9,0.0 +17418,13,6,2,0.0 +17418,26,31.23,50,0.0 +17418,74,10,45,0.0 +17418,46,12,22,0.0 +17418,23,9,3,0.0 +17418,45,9.5,10,0.0 +17418,29,123.79,10,0.0 +17418,66,17,22,0.0 +17418,20,81,14,0.0 +17418,17,39,40,0.0 +17418,28,45.6,28,0.0 +17418,18,62.5,3,0.0 +17418,70,15,15,0.0 +17418,21,10,16,0.0 +17418,9,97,39,0.0 +17418,1,18,2,0.0 +17418,56,38,47,0.0 +17418,48,12.75,41,0.0 +17418,22,21,39,0.0 +17418,3,10,10,0.0 +17418,19,9.2,9,0.0 +17418,63,43.9,7,0.0 +17418,15,15.5,3,0.0 +17418,55,24,40,0.0 +17418,25,14,44,0.0 +17418,67,14,19,0.0 +17418,31,12.5,25,0.0 +17418,6,25,1,0.0 +17418,43,46,32,0.0 +17418,42,14,12,0.0 +17418,73,15,10,0.0 +17418,24,4.5,1,0.0 +17418,54,7.45,27,0.0 +17418,10,31,13,0.0 +17419,4,22,6,0.0 +17419,47,9.5,16,0.0 +17419,58,13.25,26,0.0 +17419,72,34.8,13,0.0 +17419,11,21,42,0.0 +17419,62,49.3,44,0.0 +17419,35,18,48,0.0 +17419,38,263.5,6,0.0 +17419,33,2.5,27,0.0 +17419,16,17.45,9,0.0 +17419,20,81,12,0.0 +17419,63,43.9,1,0.0 +17419,14,23.25,39,0.0 +17419,71,21.5,6,0.0 +17419,17,39,6,0.0 +17419,75,7.75,32,0.0 +17419,70,15,31,0.0 +17419,41,9.65,29,0.0 +17419,6,25,34,0.0 +17419,24,4.5,25,0.0 +17419,1,18,31,0.0 +17419,39,18,43,0.0 +17420,27,43.9,17,0.0 +17420,1,18,41,0.0 +17420,17,39,2,0.0 +17420,21,10,10,0.0 +17420,76,18,1,0.0 +17420,55,24,20,0.0 +17420,40,18.4,43,0.0 +17421,38,263.5,30,0.0 +17421,35,18,21,0.0 +17421,61,28.5,24,0.0 +17421,29,123.79,2,0.0 +17421,45,9.5,15,0.0 +17421,49,20,13,0.0 +17421,73,15,21,0.0 +17421,20,81,49,0.0 +17421,13,6,42,0.0 +17421,39,18,30,0.0 +17421,60,34,35,0.0 +17422,56,38,37,0.0 +17422,57,19.5,39,0.0 +17422,15,15.5,24,0.0 +17422,2,19,10,0.0 +17422,49,20,47,0.0 +17422,36,19,28,0.0 +17422,35,18,4,0.0 +17422,37,26,15,0.0 +17422,1,18,6,0.0 +17422,8,40,23,0.0 +17422,6,25,33,0.0 +17422,72,34.8,11,0.0 +17422,23,9,15,0.0 +17422,64,33.25,31,0.0 +17422,20,81,25,0.0 +17422,43,46,38,0.0 +17422,62,49.3,39,0.0 +17422,61,28.5,29,0.0 +17422,59,55,14,0.0 +17422,28,45.6,18,0.0 +17422,18,62.5,34,0.0 +17422,27,43.9,43,0.0 +17422,55,24,19,0.0 +17422,31,12.5,20,0.0 +17422,10,31,1,0.0 +17422,41,9.65,25,0.0 +17422,3,10,39,0.0 +17422,73,15,27,0.0 +17422,68,12.5,12,0.0 +17422,60,34,30,0.0 +17422,25,14,43,0.0 +17422,26,31.23,44,0.0 +17422,54,7.45,49,0.0 +17422,44,19.45,47,0.0 +17422,11,21,25,0.0 +17422,53,32.8,11,0.0 +17422,14,23.25,39,0.0 +17422,52,7,15,0.0 +17422,75,7.75,9,0.0 +17422,46,12,41,0.0 +17422,45,9.5,49,0.0 +17422,48,12.75,31,0.0 +17422,42,14,4,0.0 +17422,30,25.89,15,0.0 +17422,77,13,3,0.0 +17422,40,18.4,8,0.0 +17422,47,9.5,46,0.0 +17422,16,17.45,20,0.0 +17422,58,13.25,49,0.0 +17422,74,10,10,0.0 +17422,24,4.5,2,0.0 +17422,29,123.79,40,0.0 +17422,34,14,25,0.0 +17422,51,53,30,0.0 +17422,9,97,39,0.0 +17422,63,43.9,6,0.0 +17422,5,21.35,25,0.0 +17422,4,22,19,0.0 +17422,12,38,38,0.0 +17422,67,14,20,0.0 +17422,17,39,32,0.0 +17422,13,6,24,0.0 +17422,38,263.5,35,0.0 +17422,70,15,34,0.0 +17422,50,16.25,26,0.0 +17422,22,21,8,0.0 +17422,7,30,41,0.0 +17422,66,17,36,0.0 +17422,69,36,25,0.0 +17422,21,10,26,0.0 +17422,39,18,32,0.0 +17422,71,21.5,6,0.0 +17423,4,22,45,0.0 +17423,31,12.5,33,0.0 +17423,70,15,19,0.0 +17423,52,7,42,0.0 +17423,55,24,42,0.0 +17423,60,34,40,0.0 +17423,62,49.3,44,0.0 +17423,6,25,14,0.0 +17423,1,18,13,0.0 +17423,28,45.6,28,0.0 +17423,37,26,43,0.0 +17423,69,36,43,0.0 +17423,29,123.79,32,0.0 +17423,76,18,24,0.0 +17423,16,17.45,31,0.0 +17423,21,10,48,0.0 +17423,51,53,3,0.0 +17423,36,19,12,0.0 +17423,42,14,49,0.0 +17423,74,10,16,0.0 +17423,45,9.5,21,0.0 +17423,53,32.8,13,0.0 +17423,54,7.45,46,0.0 +17423,14,23.25,43,0.0 +17423,75,7.75,11,0.0 +17423,59,55,10,0.0 +17423,24,4.5,27,0.0 +17423,32,32,48,0.0 +17423,67,14,20,0.0 +17423,3,10,10,0.0 +17423,26,31.23,15,0.0 +17423,40,18.4,21,0.0 +17423,22,21,38,0.0 +17423,9,97,21,0.0 +17423,23,9,31,0.0 +17423,15,15.5,36,0.0 +17423,11,21,10,0.0 +17423,13,6,9,0.0 +17423,35,18,33,0.0 +17423,12,38,4,0.0 +17423,25,14,8,0.0 +17423,71,21.5,25,0.0 +17423,33,2.5,50,0.0 +17423,61,28.5,39,0.0 +17423,39,18,32,0.0 +17423,58,13.25,13,0.0 +17423,57,19.5,29,0.0 +17423,8,40,27,0.0 +17423,66,17,5,0.0 +17423,19,9.2,35,0.0 +17423,5,21.35,17,0.0 +17424,44,19.45,19,0.0 +17424,48,12.75,8,0.0 +17424,13,6,41,0.0 +17424,77,13,10,0.0 +17424,49,20,29,0.0 +17424,56,38,32,0.0 +17424,73,15,14,0.0 +17424,71,21.5,3,0.0 +17424,29,123.79,40,0.0 +17424,10,31,30,0.0 +17424,24,4.5,42,0.0 +17424,9,97,12,0.0 +17424,31,12.5,28,0.0 +17424,5,21.35,37,0.0 +17424,57,19.5,34,0.0 +17424,25,14,6,0.0 +17424,4,22,18,0.0 +17424,15,15.5,50,0.0 +17424,22,21,22,0.0 +17424,46,12,7,0.0 +17424,32,32,25,0.0 +17424,66,17,21,0.0 +17424,75,7.75,18,0.0 +17424,26,31.23,7,0.0 +17424,53,32.8,44,0.0 +17424,70,15,32,0.0 +17424,55,24,10,0.0 +17424,16,17.45,10,0.0 +17424,21,10,25,0.0 +17424,42,14,35,0.0 +17424,2,19,4,0.0 +17424,54,7.45,25,0.0 +17424,58,13.25,26,0.0 +17424,68,12.5,9,0.0 +17424,69,36,11,0.0 +17424,40,18.4,29,0.0 +17424,65,21.05,28,0.0 +17424,33,2.5,3,0.0 +17424,63,43.9,20,0.0 +17424,12,38,11,0.0 +17424,52,7,31,0.0 +17424,47,9.5,7,0.0 +17424,6,25,31,0.0 +17424,19,9.2,39,0.0 +17424,62,49.3,1,0.0 +17424,67,14,15,0.0 +17424,30,25.89,47,0.0 +17424,50,16.25,37,0.0 +17424,76,18,45,0.0 +17424,35,18,15,0.0 +17424,60,34,22,0.0 +17424,28,45.6,11,0.0 +17424,17,39,11,0.0 +17424,72,34.8,5,0.0 +17424,14,23.25,3,0.0 +17424,61,28.5,27,0.0 +17424,11,21,32,0.0 +17424,41,9.65,23,0.0 +17424,34,14,10,0.0 +17424,7,30,31,0.0 +17424,36,19,15,0.0 +17424,45,9.5,17,0.0 +17424,27,43.9,49,0.0 +17424,38,263.5,45,0.0 +17424,8,40,9,0.0 +17424,3,10,28,0.0 +17424,20,81,49,0.0 +17424,59,55,18,0.0 +17424,1,18,28,0.0 +17424,64,33.25,33,0.0 +17424,18,62.5,34,0.0 +17424,39,18,11,0.0 +17424,23,9,4,0.0 +17425,5,21.35,1,0.0 +17425,39,18,28,0.0 +17425,12,38,41,0.0 +17425,65,21.05,39,0.0 +17425,19,9.2,29,0.0 +17425,24,4.5,32,0.0 +17425,44,19.45,45,0.0 +17425,25,14,37,0.0 +17425,66,17,18,0.0 +17425,48,12.75,3,0.0 +17425,40,18.4,10,0.0 +17425,70,15,50,0.0 +17425,53,32.8,37,0.0 +17425,2,19,33,0.0 +17425,18,62.5,6,0.0 +17425,7,30,47,0.0 +17425,62,49.3,45,0.0 +17425,51,53,46,0.0 +17425,31,12.5,14,0.0 +17425,72,34.8,6,0.0 +17425,73,15,11,0.0 +17425,60,34,28,0.0 +17425,75,7.75,22,0.0 +17425,63,43.9,2,0.0 +17425,26,31.23,2,0.0 +17425,77,13,10,0.0 +17425,41,9.65,13,0.0 +17426,16,17.45,44,0.0 +17426,64,33.25,37,0.0 +17426,10,31,13,0.0 +17426,43,46,49,0.0 +17426,6,25,29,0.0 +17426,48,12.75,9,0.0 +17426,56,38,31,0.0 +17426,41,9.65,29,0.0 +17426,35,18,47,0.0 +17426,7,30,3,0.0 +17426,28,45.6,36,0.0 +17426,44,19.45,37,0.0 +17426,23,9,21,0.0 +17426,40,18.4,32,0.0 +17426,39,18,1,0.0 +17426,66,17,11,0.0 +17426,69,36,2,0.0 +17426,8,40,44,0.0 +17426,12,38,37,0.0 +17426,59,55,10,0.0 +17426,31,12.5,44,0.0 +17426,25,14,44,0.0 +17426,18,62.5,13,0.0 +17426,33,2.5,16,0.0 +17426,42,14,12,0.0 +17426,9,97,30,0.0 +17426,72,34.8,45,0.0 +17426,22,21,6,0.0 +17426,1,18,21,0.0 +17426,27,43.9,34,0.0 +17426,46,12,21,0.0 +17426,47,9.5,1,0.0 +17426,20,81,3,0.0 +17426,63,43.9,12,0.0 +17426,15,15.5,4,0.0 +17426,34,14,48,0.0 +17426,24,4.5,25,0.0 +17426,68,12.5,23,0.0 +17426,19,9.2,32,0.0 +17426,4,22,38,0.0 +17426,17,39,23,0.0 +17426,76,18,34,0.0 +17427,72,34.8,26,0.0 +17427,34,14,47,0.0 +17427,59,55,38,0.0 +17427,58,13.25,43,0.0 +17427,24,4.5,48,0.0 +17427,64,33.25,49,0.0 +17427,70,15,50,0.0 +17427,31,12.5,30,0.0 +17427,12,38,8,0.0 +17427,50,16.25,24,0.0 +17427,18,62.5,42,0.0 +17427,11,21,7,0.0 +17427,37,26,38,0.0 +17427,40,18.4,14,0.0 +17427,73,15,44,0.0 +17427,61,28.5,14,0.0 +17427,49,20,9,0.0 +17427,20,81,35,0.0 +17427,60,34,23,0.0 +17427,30,25.89,27,0.0 +17427,28,45.6,1,0.0 +17427,1,18,19,0.0 +17427,75,7.75,29,0.0 +17427,21,10,19,0.0 +17427,56,38,46,0.0 +17427,47,9.5,2,0.0 +17427,35,18,13,0.0 +17427,48,12.75,35,0.0 +17427,45,9.5,45,0.0 +17427,38,263.5,24,0.0 +17427,77,13,18,0.0 +17427,32,32,14,0.0 +17427,10,31,19,0.0 +17427,67,14,23,0.0 +17428,69,36,9,0.0 +17428,58,13.25,42,0.0 +17428,29,123.79,28,0.0 +17428,70,15,35,0.0 +17428,22,21,37,0.0 +17428,8,40,19,0.0 +17428,57,19.5,8,0.0 +17428,49,20,1,0.0 +17428,67,14,29,0.0 +17428,60,34,1,0.0 +17428,10,31,25,0.0 +17428,3,10,30,0.0 +17428,62,49.3,17,0.0 +17428,23,9,9,0.0 +17428,7,30,41,0.0 +17428,51,53,2,0.0 +17428,32,32,28,0.0 +17428,61,28.5,37,0.0 +17428,71,21.5,46,0.0 +17428,73,15,16,0.0 +17428,39,18,38,0.0 +17428,14,23.25,45,0.0 +17428,19,9.2,40,0.0 +17428,52,7,40,0.0 +17428,63,43.9,5,0.0 +17428,46,12,14,0.0 +17428,75,7.75,35,0.0 +17428,77,13,29,0.0 +17428,11,21,34,0.0 +17428,38,263.5,35,0.0 +17428,12,38,46,0.0 +17428,1,18,34,0.0 +17428,43,46,10,0.0 +17428,56,38,10,0.0 +17428,5,21.35,20,0.0 +17428,13,6,44,0.0 +17428,72,34.8,5,0.0 +17428,48,12.75,6,0.0 +17428,33,2.5,6,0.0 +17428,25,14,20,0.0 +17428,30,25.89,2,0.0 +17428,24,4.5,17,0.0 +17428,76,18,12,0.0 +17428,44,19.45,24,0.0 +17428,27,43.9,7,0.0 +17428,9,97,15,0.0 +17428,20,81,28,0.0 +17428,36,19,6,0.0 +17428,21,10,7,0.0 +17428,34,14,18,0.0 +17428,54,7.45,49,0.0 +17428,18,62.5,39,0.0 +17428,45,9.5,38,0.0 +17429,11,21,48,0.0 +17429,48,12.75,31,0.0 +17429,29,123.79,18,0.0 +17429,76,18,25,0.0 +17429,36,19,39,0.0 +17429,47,9.5,27,0.0 +17429,18,62.5,23,0.0 +17429,17,39,32,0.0 +17429,49,20,34,0.0 +17429,8,40,40,0.0 +17429,22,21,12,0.0 +17429,75,7.75,18,0.0 +17429,77,13,13,0.0 +17429,68,12.5,23,0.0 +17429,72,34.8,29,0.0 +17429,30,25.89,26,0.0 +17429,28,45.6,17,0.0 +17429,41,9.65,35,0.0 +17429,50,16.25,4,0.0 +17429,59,55,24,0.0 +17429,37,26,12,0.0 +17429,64,33.25,26,0.0 +17429,14,23.25,10,0.0 +17429,45,9.5,2,0.0 +17429,26,31.23,22,0.0 +17429,3,10,39,0.0 +17429,23,9,2,0.0 +17429,9,97,22,0.0 +17429,52,7,21,0.0 +17429,12,38,31,0.0 +17429,66,17,34,0.0 +17429,1,18,48,0.0 +17429,54,7.45,34,0.0 +17429,74,10,32,0.0 +17429,73,15,5,0.0 +17429,51,53,20,0.0 +17429,61,28.5,48,0.0 +17429,38,263.5,13,0.0 +17429,67,14,14,0.0 +17429,53,32.8,50,0.0 +17429,24,4.5,36,0.0 +17429,34,14,6,0.0 +17429,5,21.35,19,0.0 +17429,69,36,37,0.0 +17429,56,38,41,0.0 +17429,13,6,16,0.0 +17429,21,10,46,0.0 +17429,40,18.4,17,0.0 +17429,33,2.5,9,0.0 +17429,42,14,42,0.0 +17429,16,17.45,42,0.0 +17429,65,21.05,37,0.0 +17429,35,18,28,0.0 +17429,10,31,40,0.0 +17429,31,12.5,6,0.0 +17429,43,46,30,0.0 +17429,20,81,45,0.0 +17429,39,18,49,0.0 +17429,63,43.9,7,0.0 +17429,60,34,47,0.0 +17429,62,49.3,19,0.0 +17429,25,14,7,0.0 +17429,46,12,4,0.0 +17429,19,9.2,39,0.0 +17429,57,19.5,13,0.0 +17429,55,24,40,0.0 +17429,7,30,9,0.0 +17429,2,19,39,0.0 +17430,72,34.8,40,0.0 +17430,27,43.9,36,0.0 +17430,70,15,22,0.0 +17430,29,123.79,24,0.0 +17430,53,32.8,42,0.0 +17430,64,33.25,35,0.0 +17430,40,18.4,6,0.0 +17430,52,7,26,0.0 +17430,61,28.5,20,0.0 +17430,34,14,14,0.0 +17430,21,10,39,0.0 +17430,76,18,41,0.0 +17430,48,12.75,10,0.0 +17430,24,4.5,8,0.0 +17430,12,38,29,0.0 +17430,6,25,16,0.0 +17430,57,19.5,46,0.0 +17430,63,43.9,31,0.0 +17430,41,9.65,35,0.0 +17430,54,7.45,11,0.0 +17430,77,13,36,0.0 +17431,62,49.3,20,0.0 +17431,64,33.25,18,0.0 +17431,18,62.5,31,0.0 +17431,15,15.5,48,0.0 +17431,57,19.5,49,0.0 +17431,4,22,5,0.0 +17431,7,30,11,0.0 +17432,46,12,3,0.0 +17432,5,21.35,38,0.0 +17432,10,31,43,0.0 +17432,20,81,15,0.0 +17432,15,15.5,44,0.0 +17432,41,9.65,19,0.0 +17432,54,7.45,47,0.0 +17432,53,32.8,17,0.0 +17432,18,62.5,20,0.0 +17432,40,18.4,21,0.0 +17432,58,13.25,31,0.0 +17432,70,15,1,0.0 +17432,2,19,46,0.0 +17432,25,14,20,0.0 +17432,30,25.89,11,0.0 +17432,8,40,50,0.0 +17432,61,28.5,6,0.0 +17432,44,19.45,24,0.0 +17432,36,19,40,0.0 +17432,6,25,48,0.0 +17432,34,14,6,0.0 +17432,26,31.23,24,0.0 +17433,31,12.5,12,0.0 +17433,63,43.9,8,0.0 +17433,34,14,1,0.0 +17433,32,32,48,0.0 +17433,47,9.5,21,0.0 +17433,12,38,33,0.0 +17433,72,34.8,8,0.0 +17433,54,7.45,13,0.0 +17433,35,18,17,0.0 +17433,62,49.3,19,0.0 +17433,41,9.65,2,0.0 +17433,6,25,12,0.0 +17433,55,24,26,0.0 +17433,57,19.5,23,0.0 +17433,37,26,26,0.0 +17433,36,19,25,0.0 +17433,46,12,41,0.0 +17433,65,21.05,19,0.0 +17433,22,21,27,0.0 +17433,11,21,19,0.0 +17433,50,16.25,3,0.0 +17433,40,18.4,31,0.0 +17433,76,18,12,0.0 +17433,77,13,16,0.0 +17433,17,39,11,0.0 +17433,43,46,49,0.0 +17433,4,22,27,0.0 +17433,70,15,21,0.0 +17433,2,19,19,0.0 +17433,64,33.25,14,0.0 +17433,59,55,19,0.0 +17433,25,14,11,0.0 +17433,13,6,47,0.0 +17433,58,13.25,12,0.0 +17433,48,12.75,48,0.0 +17433,1,18,8,0.0 +17433,7,30,13,0.0 +17433,38,263.5,11,0.0 +17433,15,15.5,16,0.0 +17433,39,18,14,0.0 +17433,21,10,39,0.0 +17433,67,14,49,0.0 +17433,27,43.9,18,0.0 +17433,28,45.6,2,0.0 +17433,42,14,49,0.0 +17433,14,23.25,35,0.0 +17433,60,34,31,0.0 +17433,19,9.2,41,0.0 +17433,61,28.5,43,0.0 +17433,29,123.79,48,0.0 +17433,45,9.5,4,0.0 +17433,30,25.89,2,0.0 +17433,71,21.5,46,0.0 +17433,5,21.35,40,0.0 +17433,56,38,24,0.0 +17433,24,4.5,23,0.0 +17433,51,53,41,0.0 +17433,10,31,23,0.0 +17433,52,7,7,0.0 +17433,23,9,23,0.0 +17433,18,62.5,41,0.0 +17433,49,20,27,0.0 +17433,26,31.23,29,0.0 +17433,73,15,29,0.0 +17433,66,17,41,0.0 +17433,33,2.5,28,0.0 +17433,75,7.75,18,0.0 +17433,20,81,5,0.0 +17433,68,12.5,50,0.0 +17433,3,10,27,0.0 +17433,74,10,47,0.0 +17434,37,26,6,0.0 +17434,10,31,8,0.0 +17434,62,49.3,46,0.0 +17434,35,18,14,0.0 +17434,34,14,16,0.0 +17434,60,34,13,0.0 +17434,9,97,47,0.0 +17434,7,30,29,0.0 +17434,28,45.6,49,0.0 +17434,53,32.8,26,0.0 +17434,23,9,21,0.0 +17434,58,13.25,8,0.0 +17434,6,25,30,0.0 +17434,32,32,11,0.0 +17434,21,10,2,0.0 +17434,14,23.25,26,0.0 +17434,73,15,24,0.0 +17434,41,9.65,11,0.0 +17434,29,123.79,46,0.0 +17434,18,62.5,26,0.0 +17434,47,9.5,9,0.0 +17434,63,43.9,11,0.0 +17434,12,38,29,0.0 +17434,64,33.25,11,0.0 +17434,42,14,29,0.0 +17434,24,4.5,42,0.0 +17434,56,38,17,0.0 +17434,77,13,5,0.0 +17434,51,53,34,0.0 +17434,44,19.45,29,0.0 +17434,57,19.5,15,0.0 +17434,5,21.35,39,0.0 +17434,65,21.05,23,0.0 +17434,2,19,17,0.0 +17434,49,20,49,0.0 +17434,54,7.45,47,0.0 +17434,46,12,38,0.0 +17434,43,46,11,0.0 +17435,50,16.25,45,0.0 +17435,25,14,18,0.0 +17435,22,21,41,0.0 +17435,12,38,19,0.0 +17435,35,18,39,0.0 +17435,2,19,23,0.0 +17435,58,13.25,39,0.0 +17435,40,18.4,11,0.0 +17435,51,53,40,0.0 +17435,62,49.3,32,0.0 +17435,34,14,41,0.0 +17435,32,32,8,0.0 +17435,59,55,14,0.0 +17435,46,12,25,0.0 +17435,61,28.5,40,0.0 +17435,77,13,3,0.0 +17435,49,20,39,0.0 +17435,53,32.8,1,0.0 +17435,31,12.5,4,0.0 +17435,56,38,30,0.0 +17435,14,23.25,15,0.0 +17435,4,22,25,0.0 +17435,16,17.45,11,0.0 +17435,68,12.5,2,0.0 +17435,36,19,32,0.0 +17435,18,62.5,38,0.0 +17435,55,24,18,0.0 +17435,65,21.05,6,0.0 +17435,21,10,27,0.0 +17435,3,10,36,0.0 +17435,15,15.5,37,0.0 +17435,23,9,27,0.0 +17435,43,46,19,0.0 +17435,1,18,10,0.0 +17435,71,21.5,20,0.0 +17435,39,18,41,0.0 +17435,33,2.5,3,0.0 +17435,57,19.5,14,0.0 +17435,5,21.35,29,0.0 +17435,70,15,31,0.0 +17435,6,25,12,0.0 +17435,8,40,47,0.0 +17435,10,31,44,0.0 +17435,48,12.75,20,0.0 +17435,64,33.25,34,0.0 +17435,67,14,16,0.0 +17436,3,10,2,0.0 +17436,42,14,24,0.0 +17436,51,53,37,0.0 +17436,34,14,38,0.0 +17436,45,9.5,8,0.0 +17436,56,38,27,0.0 +17436,60,34,43,0.0 +17436,31,12.5,10,0.0 +17436,23,9,40,0.0 +17436,2,19,8,0.0 +17436,67,14,16,0.0 +17436,24,4.5,17,0.0 +17436,11,21,38,0.0 +17436,58,13.25,7,0.0 +17436,73,15,36,0.0 +17436,71,21.5,10,0.0 +17436,14,23.25,41,0.0 +17436,75,7.75,5,0.0 +17436,77,13,10,0.0 +17436,9,97,1,0.0 +17436,18,62.5,33,0.0 +17436,46,12,15,0.0 +17436,37,26,39,0.0 +17436,19,9.2,36,0.0 +17436,61,28.5,34,0.0 +17436,20,81,37,0.0 +17436,10,31,47,0.0 +17436,48,12.75,20,0.0 +17436,5,21.35,30,0.0 +17436,57,19.5,21,0.0 +17436,4,22,42,0.0 +17436,63,43.9,5,0.0 +17436,68,12.5,7,0.0 +17436,59,55,40,0.0 +17436,69,36,50,0.0 +17436,52,7,11,0.0 +17436,74,10,11,0.0 +17436,76,18,3,0.0 +17436,66,17,49,0.0 +17436,25,14,39,0.0 +17436,72,34.8,13,0.0 +17436,62,49.3,12,0.0 +17436,21,10,21,0.0 +17436,29,123.79,17,0.0 +17436,43,46,2,0.0 +17436,1,18,26,0.0 +17436,54,7.45,17,0.0 +17436,41,9.65,43,0.0 +17436,15,15.5,30,0.0 +17436,7,30,16,0.0 +17436,13,6,6,0.0 +17436,44,19.45,18,0.0 +17436,12,38,44,0.0 +17436,50,16.25,37,0.0 +17436,38,263.5,25,0.0 +17436,70,15,12,0.0 +17436,28,45.6,16,0.0 +17436,53,32.8,7,0.0 +17436,65,21.05,8,0.0 +17436,30,25.89,7,0.0 +17436,39,18,36,0.0 +17436,6,25,10,0.0 +17436,27,43.9,22,0.0 +17436,22,21,10,0.0 +17436,16,17.45,49,0.0 +17436,36,19,20,0.0 +17436,26,31.23,29,0.0 +17436,55,24,49,0.0 +17436,33,2.5,38,0.0 +17436,32,32,8,0.0 +17436,17,39,42,0.0 +17436,40,18.4,8,0.0 +17436,47,9.5,3,0.0 +17436,8,40,43,0.0 +17436,49,20,8,0.0 +17437,62,49.3,25,0.0 +17437,37,26,39,0.0 +17437,70,15,26,0.0 +17437,43,46,41,0.0 +17437,44,19.45,5,0.0 +17437,23,9,14,0.0 +17437,2,19,19,0.0 +17437,21,10,7,0.0 +17437,30,25.89,16,0.0 +17437,39,18,9,0.0 +17437,51,53,30,0.0 +17437,57,19.5,36,0.0 +17437,60,34,30,0.0 +17437,46,12,25,0.0 +17437,54,7.45,43,0.0 +17437,3,10,27,0.0 +17438,17,39,41,0.0 +17438,73,15,15,0.0 +17438,68,12.5,42,0.0 +17438,6,25,5,0.0 +17438,58,13.25,45,0.0 +17438,21,10,7,0.0 +17438,54,7.45,28,0.0 +17438,77,13,33,0.0 +17438,72,34.8,29,0.0 +17438,46,12,1,0.0 +17438,65,21.05,45,0.0 +17438,41,9.65,23,0.0 +17438,4,22,12,0.0 +17438,67,14,34,0.0 +17438,52,7,37,0.0 +17438,60,34,26,0.0 +17438,63,43.9,3,0.0 +17438,28,45.6,46,0.0 +17438,29,123.79,12,0.0 +17438,32,32,6,0.0 +17438,42,14,36,0.0 +17438,76,18,46,0.0 +17438,61,28.5,24,0.0 +17438,24,4.5,33,0.0 +17438,31,12.5,40,0.0 +17438,35,18,28,0.0 +17438,57,19.5,28,0.0 +17438,8,40,32,0.0 +17438,2,19,37,0.0 +17438,40,18.4,45,0.0 +17438,56,38,3,0.0 +17439,19,9.2,23,0.0 +17439,53,32.8,38,0.0 +17439,12,38,16,0.0 +17439,65,21.05,10,0.0 +17440,46,12,24,0.0 +17440,37,26,47,0.0 +17440,55,24,8,0.0 +17440,73,15,9,0.0 +17440,52,7,33,0.0 +17440,72,34.8,1,0.0 +17440,56,38,46,0.0 +17440,50,16.25,40,0.0 +17440,61,28.5,31,0.0 +17440,74,10,4,0.0 +17440,24,4.5,24,0.0 +17440,64,33.25,50,0.0 +17440,38,263.5,8,0.0 +17440,4,22,13,0.0 +17440,21,10,28,0.0 +17440,25,14,4,0.0 +17440,71,21.5,22,0.0 +17440,16,17.45,28,0.0 +17440,35,18,38,0.0 +17440,1,18,20,0.0 +17440,5,21.35,43,0.0 +17440,32,32,13,0.0 +17440,13,6,41,0.0 +17440,10,31,48,0.0 +17440,7,30,28,0.0 +17440,53,32.8,8,0.0 +17440,70,15,28,0.0 +17440,3,10,39,0.0 +17440,45,9.5,19,0.0 +17440,54,7.45,18,0.0 +17440,17,39,8,0.0 +17440,67,14,19,0.0 +17440,19,9.2,1,0.0 +17440,60,34,33,0.0 +17440,9,97,15,0.0 +17440,30,25.89,43,0.0 +17440,44,19.45,36,0.0 +17440,41,9.65,1,0.0 +17440,42,14,24,0.0 +17440,76,18,28,0.0 +17440,69,36,30,0.0 +17440,62,49.3,8,0.0 +17440,33,2.5,6,0.0 +17440,12,38,38,0.0 +17440,63,43.9,30,0.0 +17440,23,9,36,0.0 +17440,11,21,43,0.0 +17440,8,40,41,0.0 +17440,36,19,9,0.0 +17440,75,7.75,22,0.0 +17440,26,31.23,46,0.0 +17440,47,9.5,50,0.0 +17440,15,15.5,15,0.0 +17440,18,62.5,18,0.0 +17440,48,12.75,11,0.0 +17440,57,19.5,37,0.0 +17440,28,45.6,36,0.0 +17440,34,14,50,0.0 +17440,14,23.25,25,0.0 +17440,40,18.4,12,0.0 +17440,58,13.25,44,0.0 +17440,66,17,14,0.0 +17440,22,21,38,0.0 +17440,20,81,44,0.0 +17440,31,12.5,4,0.0 +17441,33,2.5,45,0.0 +17441,2,19,38,0.0 +17441,71,21.5,42,0.0 +17441,37,26,6,0.0 +17441,49,20,27,0.0 +17441,68,12.5,40,0.0 +17441,67,14,40,0.0 +17441,39,18,42,0.0 +17441,5,21.35,2,0.0 +17441,61,28.5,3,0.0 +17441,60,34,10,0.0 +17441,24,4.5,6,0.0 +17441,53,32.8,13,0.0 +17441,8,40,1,0.0 +17441,7,30,23,0.0 +17441,48,12.75,44,0.0 +17441,50,16.25,37,0.0 +17441,6,25,15,0.0 +17441,46,12,6,0.0 +17441,4,22,38,0.0 +17441,27,43.9,3,0.0 +17441,40,18.4,30,0.0 +17441,18,62.5,38,0.0 +17441,28,45.6,5,0.0 +17441,32,32,25,0.0 +17441,22,21,40,0.0 +17441,31,12.5,46,0.0 +17441,21,10,5,0.0 +17441,57,19.5,16,0.0 +17441,73,15,2,0.0 +17441,70,15,17,0.0 +17441,47,9.5,26,0.0 +17441,41,9.65,22,0.0 +17441,11,21,11,0.0 +17441,64,33.25,5,0.0 +17441,14,23.25,3,0.0 +17441,3,10,46,0.0 +17441,52,7,28,0.0 +17441,77,13,21,0.0 +17441,16,17.45,16,0.0 +17441,56,38,15,0.0 +17441,62,49.3,45,0.0 +17441,45,9.5,10,0.0 +17441,36,19,41,0.0 +17441,43,46,44,0.0 +17441,42,14,15,0.0 +17441,29,123.79,46,0.0 +17441,9,97,47,0.0 +17441,55,24,4,0.0 +17441,74,10,46,0.0 +17441,20,81,14,0.0 +17441,1,18,38,0.0 +17441,76,18,21,0.0 +17441,23,9,31,0.0 +17441,66,17,27,0.0 +17441,35,18,39,0.0 +17441,75,7.75,19,0.0 +17441,59,55,4,0.0 +17441,69,36,26,0.0 +17441,30,25.89,45,0.0 +17441,15,15.5,33,0.0 +17441,65,21.05,50,0.0 +17441,26,31.23,20,0.0 +17441,12,38,44,0.0 +17441,17,39,15,0.0 +17441,19,9.2,44,0.0 +17441,72,34.8,27,0.0 +17441,10,31,22,0.0 +17441,44,19.45,41,0.0 +17441,25,14,32,0.0 +17441,34,14,30,0.0 +17442,17,39,3,0.0 +17442,36,19,26,0.0 +17442,16,17.45,33,0.0 +17442,53,32.8,23,0.0 +17442,51,53,2,0.0 +17442,15,15.5,50,0.0 +17442,10,31,42,0.0 +17442,64,33.25,48,0.0 +17442,40,18.4,2,0.0 +17442,6,25,7,0.0 +17442,4,22,18,0.0 +17442,61,28.5,33,0.0 +17442,44,19.45,13,0.0 +17442,23,9,9,0.0 +17442,35,18,42,0.0 +17442,19,9.2,16,0.0 +17442,75,7.75,6,0.0 +17442,65,21.05,6,0.0 +17443,26,31.23,23,0.0 +17443,62,49.3,32,0.0 +17443,56,38,10,0.0 +17443,35,18,23,0.0 +17443,1,18,8,0.0 +17443,20,81,32,0.0 +17443,17,39,37,0.0 +17443,14,23.25,32,0.0 +17443,67,14,1,0.0 +17443,55,24,2,0.0 +17443,76,18,3,0.0 +17443,12,38,36,0.0 +17443,73,15,44,0.0 +17443,39,18,1,0.0 +17443,44,19.45,17,0.0 +17443,49,20,13,0.0 +17443,74,10,43,0.0 +17443,37,26,10,0.0 +17443,3,10,16,0.0 +17443,4,22,2,0.0 +17443,42,14,38,0.0 +17443,53,32.8,36,0.0 +17443,72,34.8,14,0.0 +17443,18,62.5,14,0.0 +17443,52,7,33,0.0 +17443,28,45.6,7,0.0 +17443,71,21.5,38,0.0 +17443,46,12,15,0.0 +17443,32,32,4,0.0 +17443,6,25,8,0.0 +17443,30,25.89,29,0.0 +17443,22,21,31,0.0 +17443,10,31,12,0.0 +17443,58,13.25,13,0.0 +17443,34,14,40,0.0 +17443,13,6,3,0.0 +17443,60,34,5,0.0 +17443,11,21,31,0.0 +17443,50,16.25,15,0.0 +17443,45,9.5,28,0.0 +17443,59,55,41,0.0 +17443,41,9.65,20,0.0 +17443,66,17,45,0.0 +17443,61,28.5,41,0.0 +17443,9,97,8,0.0 +17443,21,10,20,0.0 +17443,31,12.5,50,0.0 +17443,75,7.75,3,0.0 +17443,38,263.5,20,0.0 +17443,33,2.5,11,0.0 +17443,69,36,26,0.0 +17443,19,9.2,29,0.0 +17443,5,21.35,19,0.0 +17443,2,19,15,0.0 +17443,16,17.45,27,0.0 +17443,63,43.9,28,0.0 +17443,27,43.9,15,0.0 +17443,65,21.05,37,0.0 +17443,8,40,14,0.0 +17443,36,19,9,0.0 +17443,57,19.5,26,0.0 +17443,51,53,45,0.0 +17443,77,13,38,0.0 +17443,7,30,31,0.0 +17444,61,28.5,22,0.0 +17444,40,18.4,16,0.0 +17444,68,12.5,4,0.0 +17444,50,16.25,16,0.0 +17444,62,49.3,40,0.0 +17444,21,10,38,0.0 +17444,42,14,34,0.0 +17444,41,9.65,29,0.0 +17444,29,123.79,32,0.0 +17444,6,25,12,0.0 +17444,74,10,8,0.0 +17444,43,46,46,0.0 +17444,67,14,36,0.0 +17444,10,31,15,0.0 +17444,55,24,24,0.0 +17444,2,19,39,0.0 +17444,73,15,35,0.0 +17444,19,9.2,34,0.0 +17444,53,32.8,21,0.0 +17444,8,40,14,0.0 +17444,15,15.5,17,0.0 +17444,54,7.45,22,0.0 +17444,11,21,28,0.0 +17444,20,81,15,0.0 +17444,44,19.45,43,0.0 +17444,35,18,11,0.0 +17444,4,22,11,0.0 +17444,31,12.5,45,0.0 +17444,5,21.35,5,0.0 +17444,64,33.25,3,0.0 +17444,47,9.5,47,0.0 +17444,71,21.5,37,0.0 +17444,56,38,19,0.0 +17444,51,53,31,0.0 +17444,28,45.6,48,0.0 +17444,39,18,10,0.0 +17444,33,2.5,25,0.0 +17444,45,9.5,9,0.0 +17444,66,17,21,0.0 +17444,7,30,35,0.0 +17444,60,34,11,0.0 +17444,14,23.25,26,0.0 +17444,57,19.5,37,0.0 +17444,13,6,48,0.0 +17444,34,14,2,0.0 +17444,76,18,12,0.0 +17444,65,21.05,5,0.0 +17444,23,9,37,0.0 +17444,22,21,9,0.0 +17444,52,7,15,0.0 +17444,32,32,47,0.0 +17444,18,62.5,12,0.0 +17444,26,31.23,9,0.0 +17444,49,20,11,0.0 +17444,36,19,34,0.0 +17444,17,39,11,0.0 +17444,3,10,50,0.0 +17444,9,97,37,0.0 +17444,38,263.5,18,0.0 +17444,63,43.9,30,0.0 +17444,16,17.45,11,0.0 +17444,48,12.75,2,0.0 +17444,46,12,32,0.0 +17444,12,38,46,0.0 +17444,1,18,13,0.0 +17444,77,13,29,0.0 +17445,3,10,8,0.0 +17445,53,32.8,31,0.0 +17445,38,263.5,16,0.0 +17445,1,18,49,0.0 +17445,52,7,46,0.0 +17445,47,9.5,2,0.0 +17445,9,97,11,0.0 +17446,61,28.5,40,0.0 +17446,36,19,29,0.0 +17446,29,123.79,46,0.0 +17446,12,38,50,0.0 +17446,38,263.5,36,0.0 +17446,62,49.3,22,0.0 +17446,75,7.75,40,0.0 +17446,35,18,16,0.0 +17446,71,21.5,9,0.0 +17446,11,21,13,0.0 +17447,43,46,38,0.0 +17447,25,14,19,0.0 +17447,54,7.45,33,0.0 +17447,74,10,41,0.0 +17447,18,62.5,9,0.0 +17447,51,53,23,0.0 +17447,49,20,9,0.0 +17447,50,16.25,21,0.0 +17447,56,38,34,0.0 +17447,41,9.65,28,0.0 +17447,24,4.5,48,0.0 +17447,5,21.35,29,0.0 +17447,2,19,46,0.0 +17447,32,32,26,0.0 +17447,71,21.5,6,0.0 +17447,34,14,29,0.0 +17447,65,21.05,23,0.0 +17447,9,97,30,0.0 +17447,26,31.23,20,0.0 +17447,66,17,6,0.0 +17447,7,30,21,0.0 +17447,17,39,20,0.0 +17447,22,21,16,0.0 +17447,40,18.4,6,0.0 +17447,33,2.5,30,0.0 +17447,12,38,39,0.0 +17447,31,12.5,26,0.0 +17447,67,14,47,0.0 +17447,75,7.75,12,0.0 +17447,8,40,2,0.0 +17447,77,13,46,0.0 +17447,30,25.89,19,0.0 +17447,57,19.5,11,0.0 +17447,53,32.8,24,0.0 +17447,64,33.25,32,0.0 +17447,55,24,26,0.0 +17447,59,55,27,0.0 +17447,68,12.5,9,0.0 +17447,37,26,37,0.0 +17447,70,15,16,0.0 +17447,58,13.25,1,0.0 +17447,47,9.5,19,0.0 +17447,21,10,32,0.0 +17447,6,25,1,0.0 +17447,11,21,43,0.0 +17447,48,12.75,47,0.0 +17447,42,14,21,0.0 +17447,13,6,22,0.0 +17447,1,18,21,0.0 +17447,23,9,17,0.0 +17447,52,7,24,0.0 +17447,15,15.5,23,0.0 +17447,10,31,42,0.0 +17447,76,18,18,0.0 +17447,20,81,48,0.0 +17447,19,9.2,41,0.0 +17447,14,23.25,50,0.0 +17448,43,46,9,0.0 +17448,58,13.25,5,0.0 +17448,64,33.25,8,0.0 +17448,26,31.23,37,0.0 +17448,59,55,42,0.0 +17448,5,21.35,44,0.0 +17448,71,21.5,14,0.0 +17448,22,21,20,0.0 +17448,45,9.5,27,0.0 +17448,44,19.45,30,0.0 +17448,56,38,12,0.0 +17448,15,15.5,48,0.0 +17448,11,21,33,0.0 +17448,7,30,37,0.0 +17448,16,17.45,28,0.0 +17448,42,14,36,0.0 +17448,3,10,45,0.0 +17448,40,18.4,50,0.0 +17448,36,19,2,0.0 +17448,34,14,9,0.0 +17448,49,20,19,0.0 +17448,66,17,25,0.0 +17448,10,31,35,0.0 +17448,2,19,17,0.0 +17448,27,43.9,48,0.0 +17448,29,123.79,16,0.0 +17448,41,9.65,12,0.0 +17448,75,7.75,25,0.0 +17448,13,6,36,0.0 +17448,54,7.45,22,0.0 +17448,39,18,14,0.0 +17448,12,38,37,0.0 +17448,33,2.5,46,0.0 +17448,1,18,49,0.0 +17448,4,22,26,0.0 +17448,50,16.25,42,0.0 +17448,65,21.05,21,0.0 +17448,52,7,47,0.0 +17448,8,40,38,0.0 +17448,28,45.6,8,0.0 +17448,25,14,16,0.0 +17448,6,25,42,0.0 +17448,24,4.5,33,0.0 +17448,51,53,41,0.0 +17448,67,14,29,0.0 +17448,37,26,34,0.0 +17448,73,15,40,0.0 +17448,62,49.3,2,0.0 +17448,55,24,36,0.0 +17448,47,9.5,9,0.0 +17448,38,263.5,31,0.0 +17448,35,18,11,0.0 +17448,61,28.5,8,0.0 +17448,17,39,36,0.0 +17448,68,12.5,29,0.0 +17448,76,18,15,0.0 +17448,31,12.5,16,0.0 +17448,18,62.5,13,0.0 +17449,3,10,42,0.0 +17449,6,25,37,0.0 +17449,62,49.3,46,0.0 +17449,75,7.75,13,0.0 +17449,8,40,22,0.0 +17449,66,17,44,0.0 +17449,28,45.6,9,0.0 +17449,61,28.5,38,0.0 +17449,43,46,47,0.0 +17449,57,19.5,11,0.0 +17449,63,43.9,17,0.0 +17449,21,10,11,0.0 +17449,12,38,4,0.0 +17449,10,31,44,0.0 +17449,33,2.5,43,0.0 +17449,30,25.89,38,0.0 +17449,72,34.8,45,0.0 +17449,16,17.45,26,0.0 +17449,7,30,25,0.0 +17449,29,123.79,24,0.0 +17449,24,4.5,28,0.0 +17449,18,62.5,31,0.0 +17449,42,14,38,0.0 +17449,71,21.5,39,0.0 +17449,58,13.25,8,0.0 +17449,2,19,43,0.0 +17449,52,7,28,0.0 +17449,74,10,29,0.0 +17449,50,16.25,11,0.0 +17449,45,9.5,32,0.0 +17449,55,24,25,0.0 +17449,15,15.5,46,0.0 +17449,5,21.35,41,0.0 +17449,26,31.23,36,0.0 +17449,20,81,19,0.0 +17449,37,26,19,0.0 +17449,41,9.65,40,0.0 +17449,60,34,28,0.0 +17449,17,39,32,0.0 +17449,76,18,4,0.0 +17449,4,22,10,0.0 +17449,48,12.75,15,0.0 +17449,68,12.5,49,0.0 +17449,19,9.2,49,0.0 +17449,59,55,1,0.0 +17449,56,38,13,0.0 +17449,69,36,16,0.0 +17449,22,21,1,0.0 +17449,44,19.45,10,0.0 +17449,27,43.9,43,0.0 +17449,11,21,42,0.0 +17449,14,23.25,31,0.0 +17449,70,15,35,0.0 +17450,44,19.45,32,0.0 +17450,38,263.5,40,0.0 +17450,58,13.25,38,0.0 +17450,4,22,28,0.0 +17450,24,4.5,45,0.0 +17450,35,18,35,0.0 +17450,32,32,6,0.0 +17450,51,53,40,0.0 +17450,11,21,9,0.0 +17450,54,7.45,48,0.0 +17450,45,9.5,19,0.0 +17450,10,31,33,0.0 +17450,36,19,49,0.0 +17450,30,25.89,45,0.0 +17450,1,18,9,0.0 +17450,68,12.5,30,0.0 +17450,41,9.65,10,0.0 +17450,7,30,33,0.0 +17450,13,6,21,0.0 +17450,18,62.5,5,0.0 +17450,40,18.4,32,0.0 +17450,49,20,36,0.0 +17450,25,14,10,0.0 +17450,74,10,7,0.0 +17450,59,55,18,0.0 +17450,70,15,16,0.0 +17450,67,14,40,0.0 +17450,63,43.9,26,0.0 +17450,73,15,12,0.0 +17450,27,43.9,44,0.0 +17450,34,14,19,0.0 +17450,42,14,35,0.0 +17450,72,34.8,46,0.0 +17450,6,25,8,0.0 +17450,76,18,16,0.0 +17450,69,36,4,0.0 +17451,11,21,22,0.0 +17451,51,53,38,0.0 +17451,75,7.75,46,0.0 +17451,23,9,9,0.0 +17451,50,16.25,15,0.0 +17451,7,30,25,0.0 +17451,36,19,34,0.0 +17451,18,62.5,8,0.0 +17451,56,38,49,0.0 +17451,62,49.3,9,0.0 +17451,43,46,48,0.0 +17451,42,14,7,0.0 +17451,73,15,30,0.0 +17451,2,19,45,0.0 +17451,41,9.65,35,0.0 +17451,69,36,16,0.0 +17451,60,34,12,0.0 +17451,8,40,38,0.0 +17451,65,21.05,35,0.0 +17451,22,21,31,0.0 +17451,61,28.5,32,0.0 +17451,37,26,24,0.0 +17451,68,12.5,34,0.0 +17451,35,18,42,0.0 +17451,25,14,17,0.0 +17451,34,14,1,0.0 +17451,32,32,24,0.0 +17451,67,14,48,0.0 +17451,53,32.8,25,0.0 +17451,20,81,16,0.0 +17451,71,21.5,44,0.0 +17451,27,43.9,31,0.0 +17451,64,33.25,8,0.0 +17451,54,7.45,42,0.0 +17451,10,31,7,0.0 +17451,45,9.5,30,0.0 +17451,63,43.9,9,0.0 +17451,47,9.5,5,0.0 +17451,24,4.5,28,0.0 +17451,31,12.5,7,0.0 +17451,6,25,16,0.0 +17451,13,6,18,0.0 +17451,28,45.6,28,0.0 +17451,74,10,33,0.0 +17451,4,22,29,0.0 +17451,3,10,25,0.0 +17451,17,39,7,0.0 +17451,19,9.2,44,0.0 +17451,57,19.5,26,0.0 +17452,59,55,8,0.0 +17452,43,46,25,0.0 +17452,24,4.5,31,0.0 +17452,60,34,31,0.0 +17452,66,17,16,0.0 +17452,22,21,9,0.0 +17452,5,21.35,5,0.0 +17452,23,9,17,0.0 +17452,14,23.25,14,0.0 +17452,11,21,12,0.0 +17452,21,10,5,0.0 +17453,5,21.35,9,0.0 +17453,65,21.05,27,0.0 +17453,11,21,1,0.0 +17453,29,123.79,43,0.0 +17453,51,53,12,0.0 +17453,27,43.9,10,0.0 +17453,19,9.2,8,0.0 +17453,4,22,7,0.0 +17453,20,81,6,0.0 +17453,26,31.23,28,0.0 +17453,6,25,37,0.0 +17453,57,19.5,39,0.0 +17453,18,62.5,34,0.0 +17453,13,6,40,0.0 +17453,12,38,7,0.0 +17453,50,16.25,24,0.0 +17453,32,32,49,0.0 +17453,61,28.5,29,0.0 +17453,75,7.75,33,0.0 +17453,74,10,7,0.0 +17453,77,13,31,0.0 +17453,46,12,8,0.0 +17453,28,45.6,23,0.0 +17453,41,9.65,47,0.0 +17453,64,33.25,22,0.0 +17453,7,30,41,0.0 +17453,76,18,17,0.0 +17453,23,9,18,0.0 +17453,59,55,11,0.0 +17453,15,15.5,10,0.0 +17453,67,14,19,0.0 +17453,72,34.8,17,0.0 +17453,17,39,42,0.0 +17453,21,10,8,0.0 +17453,43,46,49,0.0 +17453,14,23.25,13,0.0 +17453,60,34,41,0.0 +17453,33,2.5,30,0.0 +17453,40,18.4,38,0.0 +17453,55,24,46,0.0 +17453,66,17,45,0.0 +17453,45,9.5,40,0.0 +17453,31,12.5,24,0.0 +17453,8,40,30,0.0 +17453,71,21.5,15,0.0 +17453,9,97,34,0.0 +17453,56,38,32,0.0 +17453,35,18,39,0.0 +17453,68,12.5,9,0.0 +17453,70,15,30,0.0 +17453,39,18,39,0.0 +17453,73,15,33,0.0 +17453,49,20,16,0.0 +17453,36,19,16,0.0 +17453,69,36,28,0.0 +17453,3,10,4,0.0 +17453,58,13.25,7,0.0 +17453,16,17.45,5,0.0 +17453,52,7,9,0.0 +17453,30,25.89,40,0.0 +17453,47,9.5,46,0.0 +17453,62,49.3,33,0.0 +17453,63,43.9,28,0.0 +17453,25,14,25,0.0 +17454,39,18,8,0.0 +17454,33,2.5,30,0.0 +17454,3,10,21,0.0 +17454,1,18,11,0.0 +17454,60,34,1,0.0 +17454,65,21.05,5,0.0 +17454,27,43.9,26,0.0 +17454,57,19.5,41,0.0 +17454,61,28.5,50,0.0 +17454,75,7.75,15,0.0 +17454,68,12.5,48,0.0 +17454,17,39,17,0.0 +17454,46,12,22,0.0 +17454,12,38,25,0.0 +17454,58,13.25,16,0.0 +17454,4,22,21,0.0 +17454,64,33.25,41,0.0 +17454,26,31.23,49,0.0 +17454,77,13,42,0.0 +17454,24,4.5,20,0.0 +17454,16,17.45,28,0.0 +17454,30,25.89,33,0.0 +17454,15,15.5,23,0.0 +17454,11,21,14,0.0 +17454,70,15,17,0.0 +17454,23,9,19,0.0 +17454,31,12.5,28,0.0 +17454,7,30,37,0.0 +17454,36,19,36,0.0 +17454,56,38,18,0.0 +17454,49,20,8,0.0 +17454,37,26,31,0.0 +17454,54,7.45,7,0.0 +17454,44,19.45,5,0.0 +17454,6,25,44,0.0 +17454,69,36,29,0.0 +17454,55,24,13,0.0 +17454,20,81,50,0.0 +17454,59,55,16,0.0 +17454,72,34.8,1,0.0 +17454,41,9.65,5,0.0 +17454,32,32,9,0.0 +17454,67,14,46,0.0 +17455,42,14,33,0.0 +17455,34,14,16,0.0 +17455,43,46,47,0.0 +17455,30,25.89,19,0.0 +17455,18,62.5,26,0.0 +17455,65,21.05,43,0.0 +17455,63,43.9,18,0.0 +17455,5,21.35,42,0.0 +17455,25,14,1,0.0 +17455,49,20,9,0.0 +17455,12,38,28,0.0 +17455,46,12,49,0.0 +17455,52,7,37,0.0 +17455,28,45.6,26,0.0 +17455,16,17.45,16,0.0 +17455,19,9.2,31,0.0 +17455,41,9.65,5,0.0 +17455,33,2.5,44,0.0 +17455,40,18.4,12,0.0 +17455,24,4.5,45,0.0 +17455,62,49.3,43,0.0 +17455,23,9,21,0.0 +17455,37,26,43,0.0 +17455,4,22,45,0.0 +17455,66,17,41,0.0 +17455,8,40,45,0.0 +17455,9,97,11,0.0 +17455,22,21,29,0.0 +17455,73,15,15,0.0 +17455,60,34,6,0.0 +17455,69,36,13,0.0 +17455,53,32.8,4,0.0 +17455,13,6,41,0.0 +17455,44,19.45,38,0.0 +17455,47,9.5,34,0.0 +17455,56,38,6,0.0 +17455,59,55,32,0.0 +17455,32,32,10,0.0 +17455,45,9.5,46,0.0 +17455,20,81,29,0.0 +17455,14,23.25,30,0.0 +17455,10,31,48,0.0 +17455,68,12.5,17,0.0 +17455,31,12.5,46,0.0 +17455,76,18,34,0.0 +17455,71,21.5,49,0.0 +17455,1,18,33,0.0 +17455,15,15.5,40,0.0 +17455,77,13,47,0.0 +17455,3,10,24,0.0 +17455,39,18,40,0.0 +17455,26,31.23,21,0.0 +17455,2,19,39,0.0 +17455,70,15,11,0.0 +17455,11,21,13,0.0 +17455,55,24,37,0.0 +17455,27,43.9,1,0.0 +17455,72,34.8,6,0.0 +17455,51,53,18,0.0 +17455,35,18,11,0.0 +17455,74,10,9,0.0 +17455,67,14,49,0.0 +17455,17,39,4,0.0 +17455,36,19,27,0.0 +17455,58,13.25,47,0.0 +17455,54,7.45,46,0.0 +17455,38,263.5,33,0.0 +17455,7,30,26,0.0 +17455,57,19.5,38,0.0 +17455,21,10,42,0.0 +17455,61,28.5,6,0.0 +17455,6,25,46,0.0 +17455,64,33.25,2,0.0 +17455,29,123.79,25,0.0 +17455,50,16.25,35,0.0 +17455,48,12.75,30,0.0 +17455,75,7.75,33,0.0 +17456,68,12.5,21,0.0 +17456,62,49.3,20,0.0 +17456,58,13.25,26,0.0 +17456,53,32.8,39,0.0 +17456,22,21,27,0.0 +17456,27,43.9,48,0.0 +17456,28,45.6,15,0.0 +17456,64,33.25,1,0.0 +17456,71,21.5,18,0.0 +17456,50,16.25,39,0.0 +17456,10,31,25,0.0 +17456,9,97,36,0.0 +17456,39,18,22,0.0 +17456,34,14,26,0.0 +17456,70,15,31,0.0 +17456,72,34.8,16,0.0 +17456,21,10,9,0.0 +17456,45,9.5,10,0.0 +17456,51,53,39,0.0 +17456,19,9.2,20,0.0 +17456,32,32,9,0.0 +17456,17,39,30,0.0 +17456,59,55,14,0.0 +17456,75,7.75,11,0.0 +17456,67,14,6,0.0 +17456,73,15,17,0.0 +17456,31,12.5,38,0.0 +17456,74,10,26,0.0 +17456,60,34,15,0.0 +17456,23,9,10,0.0 +17456,3,10,18,0.0 +17457,38,263.5,27,0.0 +17457,68,12.5,21,0.0 +17457,6,25,3,0.0 +17457,61,28.5,22,0.0 +17457,37,26,29,0.0 +17457,45,9.5,35,0.0 +17457,26,31.23,30,0.0 +17457,54,7.45,1,0.0 +17457,23,9,33,0.0 +17457,42,14,38,0.0 +17457,28,45.6,45,0.0 +17457,21,10,30,0.0 +17457,1,18,33,0.0 +17457,12,38,46,0.0 +17457,33,2.5,32,0.0 +17457,19,9.2,27,0.0 +17457,69,36,15,0.0 +17457,57,19.5,34,0.0 +17457,36,19,18,0.0 +17457,24,4.5,30,0.0 +17457,70,15,44,0.0 +17457,63,43.9,17,0.0 +17457,76,18,1,0.0 +17457,53,32.8,23,0.0 +17457,65,21.05,46,0.0 +17457,4,22,49,0.0 +17457,7,30,6,0.0 +17457,34,14,8,0.0 +17457,18,62.5,31,0.0 +17457,49,20,8,0.0 +17457,51,53,39,0.0 +17457,50,16.25,32,0.0 +17457,71,21.5,44,0.0 +17457,20,81,25,0.0 +17457,52,7,21,0.0 +17457,44,19.45,30,0.0 +17457,60,34,3,0.0 +17457,73,15,26,0.0 +17457,17,39,11,0.0 +17457,41,9.65,35,0.0 +17457,72,34.8,14,0.0 +17457,59,55,24,0.0 +17457,31,12.5,6,0.0 +17458,33,2.5,3,0.0 +17458,69,36,12,0.0 +17458,58,13.25,9,0.0 +17458,18,62.5,37,0.0 +17458,66,17,8,0.0 +17458,38,263.5,47,0.0 +17458,36,19,28,0.0 +17458,75,7.75,3,0.0 +17458,48,12.75,47,0.0 +17458,60,34,5,0.0 +17458,43,46,39,0.0 +17458,72,34.8,36,0.0 +17458,32,32,50,0.0 +17458,74,10,50,0.0 +17458,3,10,33,0.0 +17458,57,19.5,40,0.0 +17458,2,19,39,0.0 +17458,42,14,13,0.0 +17458,71,21.5,27,0.0 +17458,6,25,29,0.0 +17458,62,49.3,49,0.0 +17458,59,55,9,0.0 +17458,46,12,41,0.0 +17458,73,15,17,0.0 +17458,55,24,25,0.0 +17458,45,9.5,41,0.0 +17458,27,43.9,32,0.0 +17458,12,38,34,0.0 +17458,76,18,4,0.0 +17458,39,18,42,0.0 +17458,30,25.89,36,0.0 +17458,68,12.5,8,0.0 +17458,34,14,2,0.0 +17458,8,40,46,0.0 +17458,17,39,7,0.0 +17458,11,21,13,0.0 +17458,53,32.8,44,0.0 +17458,65,21.05,42,0.0 +17458,61,28.5,15,0.0 +17458,15,15.5,27,0.0 +17458,5,21.35,46,0.0 +17458,23,9,17,0.0 +17458,51,53,13,0.0 +17458,25,14,38,0.0 +17458,52,7,41,0.0 +17458,22,21,3,0.0 +17458,14,23.25,24,0.0 +17458,29,123.79,20,0.0 +17458,41,9.65,21,0.0 +17458,21,10,33,0.0 +17458,37,26,16,0.0 +17458,50,16.25,36,0.0 +17458,26,31.23,37,0.0 +17458,7,30,28,0.0 +17458,16,17.45,10,0.0 +17458,70,15,18,0.0 +17458,35,18,11,0.0 +17458,24,4.5,27,0.0 +17458,67,14,10,0.0 +17458,40,18.4,23,0.0 +17458,64,33.25,1,0.0 +17458,49,20,33,0.0 +17458,31,12.5,37,0.0 +17458,56,38,15,0.0 +17458,63,43.9,50,0.0 +17458,4,22,25,0.0 +17458,1,18,18,0.0 +17458,20,81,25,0.0 +17459,50,16.25,30,0.0 +17459,27,43.9,34,0.0 +17459,53,32.8,46,0.0 +17459,65,21.05,21,0.0 +17459,16,17.45,2,0.0 +17459,39,18,50,0.0 +17459,8,40,16,0.0 +17459,40,18.4,10,0.0 +17459,55,24,34,0.0 +17459,76,18,18,0.0 +17459,41,9.65,11,0.0 +17459,31,12.5,3,0.0 +17459,63,43.9,48,0.0 +17459,47,9.5,46,0.0 +17459,49,20,39,0.0 +17459,52,7,4,0.0 +17459,74,10,9,0.0 +17459,43,46,14,0.0 +17459,54,7.45,23,0.0 +17459,62,49.3,2,0.0 +17459,36,19,24,0.0 +17459,60,34,35,0.0 +17459,38,263.5,19,0.0 +17459,11,21,15,0.0 +17459,2,19,48,0.0 +17459,26,31.23,42,0.0 +17459,66,17,3,0.0 +17459,5,21.35,34,0.0 +17459,77,13,35,0.0 +17459,22,21,11,0.0 +17459,42,14,45,0.0 +17459,21,10,47,0.0 +17459,1,18,42,0.0 +17459,14,23.25,39,0.0 +17459,33,2.5,21,0.0 +17459,34,14,49,0.0 +17459,69,36,47,0.0 +17459,3,10,20,0.0 +17459,23,9,40,0.0 +17459,56,38,1,0.0 +17459,46,12,22,0.0 +17459,75,7.75,48,0.0 +17459,67,14,25,0.0 +17459,72,34.8,20,0.0 +17459,57,19.5,41,0.0 +17459,58,13.25,22,0.0 +17459,6,25,28,0.0 +17459,18,62.5,17,0.0 +17459,32,32,14,0.0 +17459,64,33.25,28,0.0 +17460,57,19.5,19,0.0 +17460,20,81,13,0.0 +17460,22,21,38,0.0 +17460,46,12,9,0.0 +17460,27,43.9,6,0.0 +17460,65,21.05,50,0.0 +17460,49,20,24,0.0 +17460,16,17.45,22,0.0 +17460,54,7.45,27,0.0 +17460,1,18,13,0.0 +17460,29,123.79,6,0.0 +17460,44,19.45,7,0.0 +17460,63,43.9,47,0.0 +17460,28,45.6,22,0.0 +17460,15,15.5,38,0.0 +17460,12,38,24,0.0 +17460,48,12.75,3,0.0 +17460,43,46,17,0.0 +17460,52,7,43,0.0 +17460,45,9.5,17,0.0 +17460,72,34.8,47,0.0 +17460,53,32.8,32,0.0 +17460,51,53,44,0.0 +17460,38,263.5,10,0.0 +17460,26,31.23,18,0.0 +17460,8,40,48,0.0 +17460,47,9.5,17,0.0 +17460,59,55,31,0.0 +17460,30,25.89,37,0.0 +17460,10,31,28,0.0 +17460,18,62.5,48,0.0 +17460,75,7.75,14,0.0 +17460,41,9.65,1,0.0 +17460,70,15,9,0.0 +17460,7,30,13,0.0 +17460,40,18.4,4,0.0 +17460,76,18,46,0.0 +17460,4,22,32,0.0 +17460,73,15,22,0.0 +17460,3,10,49,0.0 +17460,33,2.5,19,0.0 +17460,31,12.5,24,0.0 +17460,60,34,34,0.0 +17461,17,39,31,0.0 +17461,25,14,40,0.0 +17461,34,14,19,0.0 +17461,59,55,14,0.0 +17461,57,19.5,14,0.0 +17461,50,16.25,11,0.0 +17461,12,38,45,0.0 +17461,32,32,37,0.0 +17461,30,25.89,44,0.0 +17461,16,17.45,29,0.0 +17461,56,38,5,0.0 +17461,4,22,29,0.0 +17461,23,9,9,0.0 +17461,18,62.5,26,0.0 +17461,54,7.45,12,0.0 +17461,3,10,14,0.0 +17461,31,12.5,7,0.0 +17461,66,17,48,0.0 +17461,58,13.25,2,0.0 +17461,76,18,35,0.0 +17461,71,21.5,17,0.0 +17461,2,19,38,0.0 +17461,15,15.5,37,0.0 +17461,40,18.4,45,0.0 +17461,73,15,38,0.0 +17461,41,9.65,41,0.0 +17461,75,7.75,14,0.0 +17461,72,34.8,17,0.0 +17461,27,43.9,32,0.0 +17461,67,14,15,0.0 +17461,55,24,18,0.0 +17461,11,21,21,0.0 +17461,69,36,33,0.0 +17461,44,19.45,11,0.0 +17461,33,2.5,6,0.0 +17461,68,12.5,7,0.0 +17461,28,45.6,1,0.0 +17461,37,26,34,0.0 +17461,63,43.9,9,0.0 +17461,10,31,22,0.0 +17461,45,9.5,34,0.0 +17461,29,123.79,41,0.0 +17461,5,21.35,7,0.0 +17461,51,53,9,0.0 +17461,7,30,25,0.0 +17461,22,21,15,0.0 +17461,52,7,3,0.0 +17461,14,23.25,41,0.0 +17461,6,25,4,0.0 +17461,24,4.5,18,0.0 +17461,1,18,24,0.0 +17461,60,34,20,0.0 +17461,38,263.5,19,0.0 +17461,47,9.5,17,0.0 +17461,13,6,18,0.0 +17461,36,19,49,0.0 +17461,77,13,14,0.0 +17461,65,21.05,29,0.0 +17461,39,18,13,0.0 +17461,53,32.8,8,0.0 +17461,9,97,39,0.0 +17461,74,10,32,0.0 +17461,70,15,27,0.0 +17461,64,33.25,32,0.0 +17461,49,20,11,0.0 +17461,21,10,28,0.0 +17461,48,12.75,23,0.0 +17461,62,49.3,45,0.0 +17461,35,18,26,0.0 +17461,20,81,26,0.0 +17461,26,31.23,5,0.0 +17461,46,12,2,0.0 +17461,61,28.5,10,0.0 +17461,42,14,41,0.0 +17461,8,40,11,0.0 +17462,64,33.25,13,0.0 +17462,45,9.5,12,0.0 +17462,5,21.35,25,0.0 +17462,51,53,39,0.0 +17462,17,39,6,0.0 +17462,19,9.2,5,0.0 +17462,34,14,28,0.0 +17462,77,13,8,0.0 +17462,26,31.23,9,0.0 +17462,20,81,18,0.0 +17462,12,38,27,0.0 +17462,63,43.9,28,0.0 +17462,14,23.25,15,0.0 +17462,48,12.75,35,0.0 +17462,3,10,33,0.0 +17462,7,30,15,0.0 +17462,22,21,48,0.0 +17462,61,28.5,49,0.0 +17462,46,12,6,0.0 +17462,56,38,15,0.0 +17463,54,7.45,20,0.0 +17463,55,24,37,0.0 +17463,52,7,24,0.0 +17463,72,34.8,16,0.0 +17463,13,6,23,0.0 +17463,1,18,35,0.0 +17463,40,18.4,20,0.0 +17463,49,20,43,0.0 +17463,19,9.2,26,0.0 +17463,36,19,13,0.0 +17463,4,22,46,0.0 +17463,33,2.5,10,0.0 +17463,32,32,16,0.0 +17463,21,10,20,0.0 +17463,27,43.9,20,0.0 +17463,68,12.5,4,0.0 +17463,62,49.3,7,0.0 +17463,51,53,8,0.0 +17463,38,263.5,16,0.0 +17463,10,31,17,0.0 +17463,28,45.6,5,0.0 +17463,61,28.5,14,0.0 +17463,35,18,30,0.0 +17463,2,19,9,0.0 +17463,50,16.25,18,0.0 +17463,45,9.5,19,0.0 +17463,65,21.05,38,0.0 +17463,20,81,43,0.0 +17463,69,36,44,0.0 +17463,43,46,19,0.0 +17463,66,17,44,0.0 +17463,59,55,8,0.0 +17463,57,19.5,8,0.0 +17463,41,9.65,45,0.0 +17463,29,123.79,1,0.0 +17463,37,26,17,0.0 +17463,70,15,17,0.0 +17463,39,18,2,0.0 +17463,12,38,31,0.0 +17463,5,21.35,47,0.0 +17463,6,25,27,0.0 +17463,63,43.9,13,0.0 +17463,56,38,45,0.0 +17463,15,15.5,49,0.0 +17463,24,4.5,3,0.0 +17463,25,14,30,0.0 +17463,16,17.45,37,0.0 +17463,8,40,7,0.0 +17463,30,25.89,39,0.0 +17463,3,10,42,0.0 +17463,31,12.5,28,0.0 +17463,48,12.75,15,0.0 +17463,58,13.25,38,0.0 +17463,53,32.8,20,0.0 +17463,67,14,28,0.0 +17463,23,9,32,0.0 +17463,9,97,38,0.0 +17463,17,39,34,0.0 +17463,60,34,49,0.0 +17463,76,18,11,0.0 +17463,14,23.25,30,0.0 +17463,47,9.5,47,0.0 +17463,73,15,24,0.0 +17463,11,21,15,0.0 +17463,22,21,38,0.0 +17463,44,19.45,21,0.0 +17463,64,33.25,44,0.0 +17463,18,62.5,11,0.0 +17463,46,12,35,0.0 +17463,75,7.75,49,0.0 +17464,46,12,49,0.0 +17464,24,4.5,15,0.0 +17464,41,9.65,44,0.0 +17464,72,34.8,5,0.0 +17464,16,17.45,19,0.0 +17464,54,7.45,9,0.0 +17464,42,14,12,0.0 +17464,33,2.5,21,0.0 +17464,74,10,15,0.0 +17464,32,32,5,0.0 +17464,61,28.5,30,0.0 +17464,44,19.45,10,0.0 +17464,43,46,49,0.0 +17464,23,9,45,0.0 +17464,64,33.25,21,0.0 +17464,31,12.5,26,0.0 +17464,35,18,28,0.0 +17464,45,9.5,16,0.0 +17464,50,16.25,29,0.0 +17464,71,21.5,10,0.0 +17464,27,43.9,39,0.0 +17464,20,81,19,0.0 +17464,69,36,11,0.0 +17464,75,7.75,15,0.0 +17464,52,7,43,0.0 +17464,51,53,14,0.0 +17464,49,20,35,0.0 +17464,6,25,49,0.0 +17464,12,38,50,0.0 +17464,47,9.5,5,0.0 +17464,11,21,47,0.0 +17464,65,21.05,29,0.0 +17464,13,6,37,0.0 +17464,21,10,15,0.0 +17464,57,19.5,9,0.0 +17464,3,10,36,0.0 +17464,22,21,28,0.0 +17464,39,18,37,0.0 +17464,53,32.8,47,0.0 +17464,17,39,15,0.0 +17464,40,18.4,18,0.0 +17464,38,263.5,48,0.0 +17464,56,38,38,0.0 +17464,76,18,31,0.0 +17464,34,14,34,0.0 +17464,18,62.5,44,0.0 +17464,19,9.2,45,0.0 +17465,19,9.2,30,0.0 +17465,22,21,48,0.0 +17465,29,123.79,45,0.0 +17465,40,18.4,25,0.0 +17465,49,20,40,0.0 +17465,59,55,19,0.0 +17465,53,32.8,46,0.0 +17465,17,39,40,0.0 +17465,14,23.25,15,0.0 +17465,18,62.5,13,0.0 +17465,47,9.5,46,0.0 +17465,52,7,17,0.0 +17465,35,18,44,0.0 +17465,3,10,7,0.0 +17465,75,7.75,18,0.0 +17465,27,43.9,24,0.0 +17465,70,15,14,0.0 +17465,62,49.3,25,0.0 +17465,65,21.05,4,0.0 +17465,46,12,41,0.0 +17465,9,97,46,0.0 +17465,38,263.5,6,0.0 +17465,63,43.9,47,0.0 +17465,24,4.5,39,0.0 +17465,33,2.5,38,0.0 +17465,23,9,33,0.0 +17465,31,12.5,17,0.0 +17465,67,14,2,0.0 +17465,55,24,21,0.0 +17465,57,19.5,9,0.0 +17465,11,21,27,0.0 +17465,5,21.35,6,0.0 +17465,72,34.8,27,0.0 +17465,25,14,41,0.0 +17465,4,22,22,0.0 +17465,51,53,1,0.0 +17465,13,6,2,0.0 +17465,41,9.65,41,0.0 +17465,71,21.5,13,0.0 +17465,16,17.45,36,0.0 +17465,77,13,3,0.0 +17465,2,19,49,0.0 +17465,32,32,49,0.0 +17465,34,14,32,0.0 +17465,10,31,8,0.0 +17465,69,36,13,0.0 +17465,8,40,9,0.0 +17465,37,26,26,0.0 +17465,15,15.5,50,0.0 +17465,66,17,12,0.0 +17465,73,15,25,0.0 +17465,1,18,11,0.0 +17465,76,18,50,0.0 +17466,42,14,7,0.0 +17466,72,34.8,44,0.0 +17466,36,19,23,0.0 +17466,8,40,15,0.0 +17466,25,14,16,0.0 +17466,39,18,29,0.0 +17466,59,55,14,0.0 +17466,66,17,28,0.0 +17466,54,7.45,1,0.0 +17466,48,12.75,36,0.0 +17466,46,12,22,0.0 +17466,30,25.89,41,0.0 +17466,10,31,23,0.0 +17466,28,45.6,20,0.0 +17466,55,24,35,0.0 +17466,1,18,44,0.0 +17466,53,32.8,19,0.0 +17466,37,26,29,0.0 +17466,77,13,7,0.0 +17466,47,9.5,15,0.0 +17466,60,34,16,0.0 +17466,35,18,49,0.0 +17466,13,6,6,0.0 +17466,44,19.45,23,0.0 +17466,45,9.5,25,0.0 +17466,74,10,6,0.0 +17466,32,32,45,0.0 +17466,68,12.5,21,0.0 +17466,56,38,4,0.0 +17466,75,7.75,8,0.0 +17466,14,23.25,9,0.0 +17466,5,21.35,10,0.0 +17466,49,20,12,0.0 +17466,41,9.65,12,0.0 +17466,20,81,44,0.0 +17466,15,15.5,28,0.0 +17466,4,22,29,0.0 +17467,14,23.25,38,0.0 +17467,43,46,21,0.0 +17467,57,19.5,22,0.0 +17467,63,43.9,2,0.0 +17467,72,34.8,43,0.0 +17467,55,24,2,0.0 +17467,53,32.8,16,0.0 +17467,6,25,47,0.0 +17467,61,28.5,20,0.0 +17467,1,18,14,0.0 +17467,44,19.45,5,0.0 +17467,28,45.6,50,0.0 +17467,32,32,14,0.0 +17467,31,12.5,31,0.0 +17467,60,34,34,0.0 +17467,16,17.45,15,0.0 +17467,65,21.05,3,0.0 +17467,58,13.25,31,0.0 +17467,73,15,33,0.0 +17467,19,9.2,26,0.0 +17467,45,9.5,46,0.0 +17467,64,33.25,34,0.0 +17467,74,10,6,0.0 +17467,54,7.45,24,0.0 +17467,52,7,42,0.0 +17467,21,10,48,0.0 +17467,24,4.5,32,0.0 +17467,30,25.89,36,0.0 +17467,59,55,27,0.0 +17467,48,12.75,32,0.0 +17467,8,40,21,0.0 +17467,12,38,36,0.0 +17467,56,38,23,0.0 +17467,69,36,8,0.0 +17467,22,21,33,0.0 +17467,37,26,46,0.0 +17467,4,22,8,0.0 +17467,23,9,8,0.0 +17467,62,49.3,39,0.0 +17467,38,263.5,4,0.0 +17467,66,17,29,0.0 +17467,18,62.5,9,0.0 +17467,33,2.5,7,0.0 +17467,15,15.5,45,0.0 +17468,18,62.5,44,0.0 +17468,41,9.65,18,0.0 +17468,52,7,34,0.0 +17468,3,10,28,0.0 +17468,10,31,4,0.0 +17468,23,9,5,0.0 +17468,57,19.5,20,0.0 +17468,24,4.5,18,0.0 +17468,65,21.05,32,0.0 +17468,42,14,10,0.0 +17468,4,22,50,0.0 +17468,40,18.4,17,0.0 +17468,71,21.5,18,0.0 +17468,15,15.5,41,0.0 +17468,1,18,27,0.0 +17468,67,14,21,0.0 +17468,72,34.8,20,0.0 +17468,75,7.75,16,0.0 +17468,70,15,25,0.0 +17468,45,9.5,45,0.0 +17468,60,34,5,0.0 +17468,29,123.79,41,0.0 +17468,27,43.9,42,0.0 +17468,69,36,20,0.0 +17468,46,12,29,0.0 +17468,53,32.8,9,0.0 +17468,11,21,31,0.0 +17468,32,32,43,0.0 +17468,7,30,27,0.0 +17468,62,49.3,17,0.0 +17468,37,26,34,0.0 +17468,17,39,18,0.0 +17468,66,17,2,0.0 +17468,9,97,19,0.0 +17468,51,53,43,0.0 +17468,68,12.5,18,0.0 +17468,77,13,47,0.0 +17468,49,20,26,0.0 +17468,22,21,26,0.0 +17468,28,45.6,2,0.0 +17468,6,25,35,0.0 +17468,58,13.25,36,0.0 +17468,38,263.5,36,0.0 +17468,61,28.5,35,0.0 +17468,44,19.45,1,0.0 +17468,47,9.5,40,0.0 +17468,73,15,26,0.0 +17468,2,19,42,0.0 +17468,13,6,2,0.0 +17468,26,31.23,15,0.0 +17468,63,43.9,11,0.0 +17468,21,10,44,0.0 +17468,33,2.5,24,0.0 +17468,12,38,13,0.0 +17468,16,17.45,42,0.0 +17468,35,18,26,0.0 +17468,43,46,49,0.0 +17468,74,10,37,0.0 +17468,55,24,39,0.0 +17468,20,81,27,0.0 +17468,5,21.35,19,0.0 +17468,39,18,20,0.0 +17468,8,40,14,0.0 +17468,59,55,36,0.0 +17468,64,33.25,42,0.0 +17468,36,19,31,0.0 +17468,19,9.2,40,0.0 +17468,54,7.45,14,0.0 +17468,30,25.89,39,0.0 +17468,56,38,6,0.0 +17468,31,12.5,14,0.0 +17468,76,18,8,0.0 +17469,38,263.5,22,0.0 +17469,17,39,16,0.0 +17469,75,7.75,35,0.0 +17469,67,14,19,0.0 +17469,64,33.25,24,0.0 +17469,69,36,6,0.0 +17469,21,10,18,0.0 +17469,14,23.25,12,0.0 +17469,33,2.5,47,0.0 +17469,18,62.5,47,0.0 +17469,4,22,32,0.0 +17469,76,18,35,0.0 +17469,35,18,10,0.0 +17469,24,4.5,28,0.0 +17469,52,7,28,0.0 +17469,74,10,35,0.0 +17469,73,15,28,0.0 +17469,28,45.6,18,0.0 +17469,56,38,1,0.0 +17469,54,7.45,22,0.0 +17469,65,21.05,39,0.0 +17469,41,9.65,27,0.0 +17469,59,55,36,0.0 +17469,44,19.45,31,0.0 +17469,29,123.79,27,0.0 +17469,45,9.5,27,0.0 +17469,32,32,42,0.0 +17469,8,40,47,0.0 +17469,2,19,27,0.0 +17469,5,21.35,4,0.0 +17469,39,18,46,0.0 +17469,50,16.25,37,0.0 +17469,15,15.5,13,0.0 +17469,43,46,32,0.0 +17469,58,13.25,6,0.0 +17469,77,13,35,0.0 +17469,53,32.8,11,0.0 +17469,57,19.5,17,0.0 +17469,26,31.23,43,0.0 +17469,23,9,7,0.0 +17469,61,28.5,26,0.0 +17469,46,12,49,0.0 +17469,13,6,46,0.0 +17469,1,18,14,0.0 +17469,63,43.9,7,0.0 +17469,60,34,24,0.0 +17469,11,21,13,0.0 +17469,47,9.5,14,0.0 +17469,7,30,41,0.0 +17469,20,81,6,0.0 +17469,51,53,41,0.0 +17469,36,19,9,0.0 +17469,27,43.9,30,0.0 +17469,31,12.5,48,0.0 +17469,40,18.4,16,0.0 +17469,34,14,34,0.0 +17469,72,34.8,10,0.0 +17469,25,14,48,0.0 +17470,38,263.5,16,0.0 +17470,25,14,5,0.0 +17470,44,19.45,11,0.0 +17470,66,17,22,0.0 +17470,53,32.8,22,0.0 +17470,43,46,41,0.0 +17470,73,15,40,0.0 +17470,45,9.5,14,0.0 +17470,54,7.45,45,0.0 +17470,16,17.45,17,0.0 +17470,58,13.25,5,0.0 +17470,18,62.5,37,0.0 +17470,4,22,31,0.0 +17470,6,25,25,0.0 +17470,11,21,23,0.0 +17470,12,38,47,0.0 +17470,23,9,50,0.0 +17470,41,9.65,46,0.0 +17470,74,10,48,0.0 +17470,59,55,44,0.0 +17470,32,32,49,0.0 +17470,46,12,40,0.0 +17470,70,15,47,0.0 +17470,28,45.6,35,0.0 +17470,15,15.5,45,0.0 +17470,68,12.5,25,0.0 +17470,51,53,45,0.0 +17470,42,14,14,0.0 +17470,5,21.35,34,0.0 +17470,17,39,25,0.0 +17470,29,123.79,11,0.0 +17470,34,14,30,0.0 +17470,10,31,17,0.0 +17470,13,6,24,0.0 +17470,48,12.75,38,0.0 +17470,57,19.5,36,0.0 +17470,24,4.5,5,0.0 +17470,19,9.2,20,0.0 +17470,7,30,21,0.0 +17470,2,19,21,0.0 +17470,40,18.4,43,0.0 +17470,75,7.75,32,0.0 +17470,56,38,44,0.0 +17470,20,81,8,0.0 +17470,39,18,28,0.0 +17470,76,18,44,0.0 +17470,35,18,15,0.0 +17470,61,28.5,8,0.0 +17470,47,9.5,48,0.0 +17470,37,26,6,0.0 +17470,26,31.23,31,0.0 +17470,31,12.5,7,0.0 +17470,27,43.9,50,0.0 +17470,30,25.89,47,0.0 +17470,33,2.5,35,0.0 +17470,49,20,28,0.0 +17470,69,36,33,0.0 +17470,50,16.25,13,0.0 +17470,63,43.9,44,0.0 +17470,64,33.25,17,0.0 +17470,1,18,40,0.0 +17470,52,7,50,0.0 +17471,72,34.8,40,0.0 +17471,66,17,14,0.0 +17471,64,33.25,10,0.0 +17471,11,21,43,0.0 +17471,16,17.45,23,0.0 +17471,69,36,37,0.0 +17471,76,18,35,0.0 +17471,48,12.75,32,0.0 +17471,31,12.5,4,0.0 +17471,59,55,3,0.0 +17471,50,16.25,23,0.0 +17471,32,32,32,0.0 +17471,43,46,43,0.0 +17471,46,12,44,0.0 +17471,8,40,15,0.0 +17471,33,2.5,3,0.0 +17471,36,19,32,0.0 +17471,51,53,46,0.0 +17471,30,25.89,15,0.0 +17471,3,10,40,0.0 +17471,17,39,16,0.0 +17471,35,18,12,0.0 +17471,47,9.5,15,0.0 +17471,56,38,37,0.0 +17471,58,13.25,17,0.0 +17471,40,18.4,9,0.0 +17471,57,19.5,9,0.0 +17471,77,13,48,0.0 +17471,25,14,5,0.0 +17471,18,62.5,40,0.0 +17471,39,18,15,0.0 +17471,22,21,7,0.0 +17471,52,7,34,0.0 +17471,34,14,4,0.0 +17471,45,9.5,30,0.0 +17471,1,18,19,0.0 +17471,29,123.79,16,0.0 +17471,23,9,27,0.0 +17471,6,25,46,0.0 +17471,21,10,50,0.0 +17471,14,23.25,32,0.0 +17471,12,38,11,0.0 +17471,2,19,44,0.0 +17471,41,9.65,46,0.0 +17471,15,15.5,32,0.0 +17471,74,10,43,0.0 +17471,7,30,17,0.0 +17471,10,31,23,0.0 +17471,24,4.5,23,0.0 +17471,4,22,27,0.0 +17471,20,81,43,0.0 +17471,75,7.75,2,0.0 +17471,42,14,9,0.0 +17471,68,12.5,22,0.0 +17471,70,15,24,0.0 +17471,71,21.5,32,0.0 +17471,19,9.2,1,0.0 +17471,65,21.05,37,0.0 +17472,76,18,24,0.0 +17472,62,49.3,20,0.0 +17472,50,16.25,40,0.0 +17472,41,9.65,7,0.0 +17472,25,14,28,0.0 +17472,64,33.25,40,0.0 +17472,66,17,15,0.0 +17472,22,21,31,0.0 +17472,52,7,15,0.0 +17472,24,4.5,15,0.0 +17472,70,15,15,0.0 +17472,72,34.8,41,0.0 +17473,9,97,43,0.0 +17473,19,9.2,48,0.0 +17473,36,19,13,0.0 +17473,17,39,41,0.0 +17473,13,6,42,0.0 +17473,59,55,8,0.0 +17473,37,26,30,0.0 +17473,7,30,16,0.0 +17473,56,38,14,0.0 +17473,10,31,19,0.0 +17473,57,19.5,23,0.0 +17473,68,12.5,49,0.0 +17473,15,15.5,17,0.0 +17473,2,19,6,0.0 +17473,6,25,43,0.0 +17473,23,9,25,0.0 +17473,66,17,19,0.0 +17473,58,13.25,40,0.0 +17473,60,34,2,0.0 +17473,3,10,9,0.0 +17473,30,25.89,26,0.0 +17473,47,9.5,46,0.0 +17473,70,15,29,0.0 +17473,73,15,42,0.0 +17473,14,23.25,7,0.0 +17473,45,9.5,9,0.0 +17473,26,31.23,10,0.0 +17473,74,10,19,0.0 +17473,34,14,4,0.0 +17473,44,19.45,10,0.0 +17473,12,38,9,0.0 +17473,5,21.35,2,0.0 +17473,31,12.5,45,0.0 +17473,27,43.9,13,0.0 +17473,65,21.05,30,0.0 +17473,29,123.79,36,0.0 +17473,61,28.5,24,0.0 +17473,43,46,13,0.0 +17473,24,4.5,48,0.0 +17473,67,14,13,0.0 +17473,50,16.25,15,0.0 +17473,52,7,35,0.0 +17473,22,21,22,0.0 +17473,40,18.4,45,0.0 +17473,42,14,22,0.0 +17473,16,17.45,40,0.0 +17473,72,34.8,21,0.0 +17473,33,2.5,42,0.0 +17473,55,24,17,0.0 +17473,76,18,15,0.0 +17473,71,21.5,5,0.0 +17473,35,18,46,0.0 +17473,49,20,39,0.0 +17473,25,14,44,0.0 +17473,28,45.6,24,0.0 +17473,32,32,1,0.0 +17473,51,53,36,0.0 +17473,63,43.9,27,0.0 +17473,8,40,37,0.0 +17473,77,13,32,0.0 +17473,20,81,13,0.0 +17473,54,7.45,5,0.0 +17473,46,12,26,0.0 +17473,75,7.75,20,0.0 +17473,4,22,39,0.0 +17473,18,62.5,30,0.0 +17473,21,10,42,0.0 +17473,69,36,47,0.0 +17473,62,49.3,36,0.0 +17473,53,32.8,47,0.0 +17473,1,18,5,0.0 +17473,48,12.75,38,0.0 +17473,41,9.65,12,0.0 +17473,64,33.25,31,0.0 +17474,22,21,11,0.0 +17474,61,28.5,9,0.0 +17474,25,14,43,0.0 +17474,23,9,15,0.0 +17474,64,33.25,40,0.0 +17474,63,43.9,12,0.0 +17474,44,19.45,4,0.0 +17474,28,45.6,36,0.0 +17474,10,31,46,0.0 +17474,53,32.8,1,0.0 +17474,70,15,20,0.0 +17474,17,39,11,0.0 +17474,31,12.5,2,0.0 +17474,26,31.23,14,0.0 +17474,47,9.5,18,0.0 +17474,15,15.5,1,0.0 +17474,74,10,42,0.0 +17474,46,12,31,0.0 +17474,40,18.4,43,0.0 +17474,41,9.65,11,0.0 +17474,43,46,29,0.0 +17474,67,14,28,0.0 +17474,76,18,1,0.0 +17474,38,263.5,12,0.0 +17474,51,53,8,0.0 +17474,5,21.35,35,0.0 +17474,37,26,35,0.0 +17474,68,12.5,28,0.0 +17474,77,13,7,0.0 +17474,30,25.89,44,0.0 +17474,58,13.25,24,0.0 +17474,49,20,48,0.0 +17474,39,18,42,0.0 +17474,9,97,38,0.0 +17474,4,22,35,0.0 +17474,59,55,10,0.0 +17474,32,32,19,0.0 +17474,6,25,20,0.0 +17474,12,38,44,0.0 +17474,34,14,27,0.0 +17474,21,10,40,0.0 +17474,60,34,43,0.0 +17474,20,81,45,0.0 +17474,8,40,15,0.0 +17474,1,18,22,0.0 +17474,71,21.5,26,0.0 +17474,69,36,22,0.0 +17474,24,4.5,22,0.0 +17474,36,19,22,0.0 +17474,19,9.2,15,0.0 +17474,50,16.25,10,0.0 +17474,2,19,17,0.0 +17474,14,23.25,32,0.0 +17474,35,18,38,0.0 +17474,54,7.45,40,0.0 +17474,7,30,49,0.0 +17474,55,24,36,0.0 +17474,13,6,46,0.0 +17474,3,10,3,0.0 +17474,33,2.5,41,0.0 +17474,45,9.5,26,0.0 +17474,48,12.75,45,0.0 +17474,52,7,46,0.0 +17474,75,7.75,7,0.0 +17474,66,17,45,0.0 +17474,56,38,30,0.0 +17474,29,123.79,5,0.0 +17474,16,17.45,13,0.0 +17474,27,43.9,26,0.0 +17474,11,21,18,0.0 +17474,62,49.3,43,0.0 +17474,73,15,43,0.0 +17475,26,31.23,6,0.0 +17475,22,21,41,0.0 +17475,32,32,34,0.0 +17475,9,97,35,0.0 +17475,14,23.25,21,0.0 +17475,55,24,23,0.0 +17475,40,18.4,29,0.0 +17475,66,17,29,0.0 +17475,52,7,1,0.0 +17475,1,18,2,0.0 +17475,46,12,6,0.0 +17475,56,38,37,0.0 +17475,6,25,9,0.0 +17475,74,10,24,0.0 +17475,37,26,40,0.0 +17475,50,16.25,31,0.0 +17475,2,19,29,0.0 +17475,42,14,35,0.0 +17475,62,49.3,21,0.0 +17475,7,30,11,0.0 +17475,11,21,42,0.0 +17475,23,9,34,0.0 +17475,72,34.8,20,0.0 +17475,21,10,17,0.0 +17475,70,15,47,0.0 +17475,10,31,31,0.0 +17475,59,55,35,0.0 +17475,13,6,24,0.0 +17475,27,43.9,36,0.0 +17475,4,22,30,0.0 +17475,36,19,15,0.0 +17475,49,20,8,0.0 +17475,12,38,2,0.0 +17475,53,32.8,27,0.0 +17475,30,25.89,29,0.0 +17475,63,43.9,4,0.0 +17475,65,21.05,43,0.0 +17476,74,10,28,0.0 +17476,38,263.5,42,0.0 +17476,75,7.75,4,0.0 +17476,3,10,50,0.0 +17476,68,12.5,32,0.0 +17476,56,38,44,0.0 +17476,69,36,39,0.0 +17476,42,14,48,0.0 +17476,72,34.8,40,0.0 +17476,51,53,49,0.0 +17476,32,32,25,0.0 +17476,64,33.25,21,0.0 +17476,34,14,1,0.0 +17476,25,14,15,0.0 +17476,29,123.79,28,0.0 +17476,50,16.25,27,0.0 +17476,67,14,21,0.0 +17476,19,9.2,42,0.0 +17477,26,31.23,18,0.0 +17477,6,25,34,0.0 +17477,65,21.05,6,0.0 +17477,38,263.5,45,0.0 +17477,30,25.89,17,0.0 +17477,32,32,33,0.0 +17477,8,40,36,0.0 +17477,48,12.75,35,0.0 +17477,4,22,9,0.0 +17477,28,45.6,18,0.0 +17477,34,14,5,0.0 +17477,57,19.5,4,0.0 +17477,73,15,3,0.0 +17477,31,12.5,34,0.0 +17477,11,21,8,0.0 +17477,5,21.35,34,0.0 +17477,37,26,25,0.0 +17477,68,12.5,11,0.0 +17477,70,15,32,0.0 +17477,76,18,22,0.0 +17477,45,9.5,31,0.0 +17477,27,43.9,39,0.0 +17477,18,62.5,50,0.0 +17477,39,18,6,0.0 +17477,74,10,34,0.0 +17477,29,123.79,49,0.0 +17477,50,16.25,2,0.0 +17477,62,49.3,32,0.0 +17477,12,38,2,0.0 +17477,61,28.5,26,0.0 +17477,16,17.45,41,0.0 +17477,40,18.4,26,0.0 +17477,44,19.45,3,0.0 +17477,17,39,47,0.0 +17477,64,33.25,8,0.0 +17477,20,81,7,0.0 +17477,24,4.5,30,0.0 +17477,67,14,10,0.0 +17477,58,13.25,50,0.0 +17477,59,55,42,0.0 +17477,35,18,16,0.0 +17477,13,6,33,0.0 +17477,33,2.5,41,0.0 +17477,47,9.5,44,0.0 +17477,49,20,38,0.0 +17477,3,10,11,0.0 +17477,60,34,8,0.0 +17477,72,34.8,43,0.0 +17477,77,13,30,0.0 +17477,69,36,36,0.0 +17477,10,31,6,0.0 +17477,19,9.2,9,0.0 +17477,42,14,34,0.0 +17477,25,14,2,0.0 +17477,22,21,26,0.0 +17477,75,7.75,3,0.0 +17477,53,32.8,4,0.0 +17477,54,7.45,6,0.0 +17477,2,19,15,0.0 +17477,52,7,47,0.0 +17477,51,53,39,0.0 +17477,9,97,24,0.0 +17477,66,17,39,0.0 +17477,41,9.65,35,0.0 +17477,43,46,19,0.0 +17477,14,23.25,36,0.0 +17477,63,43.9,24,0.0 +17477,7,30,7,0.0 +17477,23,9,20,0.0 +17477,56,38,21,0.0 +17477,55,24,27,0.0 +17477,36,19,26,0.0 +17478,71,21.5,42,0.0 +17478,58,13.25,17,0.0 +17478,52,7,16,0.0 +17478,15,15.5,3,0.0 +17478,57,19.5,2,0.0 +17478,16,17.45,33,0.0 +17478,65,21.05,25,0.0 +17478,14,23.25,28,0.0 +17478,41,9.65,2,0.0 +17478,3,10,5,0.0 +17478,6,25,12,0.0 +17478,61,28.5,31,0.0 +17478,33,2.5,32,0.0 +17478,53,32.8,20,0.0 +17478,34,14,12,0.0 +17478,73,15,20,0.0 +17478,31,12.5,11,0.0 +17478,59,55,36,0.0 +17478,21,10,33,0.0 +17478,8,40,6,0.0 +17478,44,19.45,19,0.0 +17479,11,21,31,0.0 +17479,58,13.25,46,0.0 +17479,70,15,30,0.0 +17479,49,20,42,0.0 +17479,17,39,15,0.0 +17479,28,45.6,3,0.0 +17479,51,53,16,0.0 +17479,61,28.5,37,0.0 +17479,63,43.9,37,0.0 +17479,24,4.5,10,0.0 +17479,16,17.45,24,0.0 +17479,9,97,1,0.0 +17479,26,31.23,31,0.0 +17479,76,18,31,0.0 +17479,47,9.5,13,0.0 +17479,46,12,30,0.0 +17479,71,21.5,11,0.0 +17479,66,17,27,0.0 +17479,39,18,50,0.0 +17480,22,21,36,0.0 +17480,63,43.9,32,0.0 +17480,6,25,16,0.0 +17480,53,32.8,21,0.0 +17480,70,15,20,0.0 +17480,46,12,32,0.0 +17480,32,32,17,0.0 +17480,14,23.25,50,0.0 +17480,19,9.2,15,0.0 +17480,41,9.65,38,0.0 +17480,8,40,30,0.0 +17480,1,18,22,0.0 +17480,10,31,9,0.0 +17480,49,20,35,0.0 +17480,50,16.25,45,0.0 +17480,29,123.79,48,0.0 +17480,66,17,11,0.0 +17480,44,19.45,49,0.0 +17480,7,30,14,0.0 +17480,74,10,47,0.0 +17480,54,7.45,44,0.0 +17480,16,17.45,49,0.0 +17480,51,53,50,0.0 +17480,24,4.5,25,0.0 +17480,75,7.75,27,0.0 +17480,77,13,22,0.0 +17480,9,97,45,0.0 +17480,31,12.5,19,0.0 +17480,65,21.05,17,0.0 +17480,61,28.5,29,0.0 +17480,26,31.23,26,0.0 +17480,67,14,7,0.0 +17480,71,21.5,29,0.0 +17480,12,38,5,0.0 +17480,2,19,38,0.0 +17480,43,46,1,0.0 +17480,4,22,8,0.0 +17480,33,2.5,19,0.0 +17480,3,10,36,0.0 +17480,52,7,9,0.0 +17480,34,14,32,0.0 +17480,13,6,44,0.0 +17480,40,18.4,5,0.0 +17480,57,19.5,31,0.0 +17480,30,25.89,32,0.0 +17480,18,62.5,17,0.0 +17480,15,15.5,1,0.0 +17480,47,9.5,1,0.0 +17480,48,12.75,4,0.0 +17480,72,34.8,41,0.0 +17480,21,10,48,0.0 +17480,73,15,6,0.0 +17480,62,49.3,17,0.0 +17480,35,18,41,0.0 +17480,17,39,24,0.0 +17480,59,55,10,0.0 +17480,39,18,47,0.0 +17480,60,34,8,0.0 +17480,20,81,15,0.0 +17480,36,19,36,0.0 +17480,69,36,10,0.0 +17480,27,43.9,24,0.0 +17481,7,30,47,0.0 +17481,52,7,37,0.0 +17481,67,14,13,0.0 +17481,33,2.5,24,0.0 +17481,41,9.65,26,0.0 +17481,39,18,20,0.0 +17481,75,7.75,35,0.0 +17481,63,43.9,19,0.0 +17481,26,31.23,12,0.0 +17481,64,33.25,22,0.0 +17481,21,10,33,0.0 +17481,42,14,4,0.0 +17481,17,39,34,0.0 +17481,66,17,16,0.0 +17481,13,6,21,0.0 +17481,36,19,48,0.0 +17481,14,23.25,30,0.0 +17481,22,21,40,0.0 +17481,45,9.5,25,0.0 +17481,23,9,26,0.0 +17481,77,13,8,0.0 +17481,47,9.5,34,0.0 +17481,62,49.3,40,0.0 +17481,74,10,20,0.0 +17481,68,12.5,37,0.0 +17481,60,34,6,0.0 +17481,28,45.6,43,0.0 +17481,5,21.35,25,0.0 +17481,2,19,32,0.0 +17481,55,24,8,0.0 +17481,11,21,39,0.0 +17481,3,10,17,0.0 +17481,6,25,26,0.0 +17481,46,12,8,0.0 +17481,31,12.5,21,0.0 +17481,16,17.45,1,0.0 +17481,73,15,42,0.0 +17481,12,38,15,0.0 +17482,52,7,11,0.0 +17482,20,81,42,0.0 +17482,30,25.89,1,0.0 +17482,31,12.5,13,0.0 +17482,35,18,31,0.0 +17482,25,14,29,0.0 +17482,3,10,32,0.0 +17482,4,22,11,0.0 +17482,42,14,23,0.0 +17482,53,32.8,23,0.0 +17482,61,28.5,6,0.0 +17482,19,9.2,34,0.0 +17482,66,17,40,0.0 +17482,69,36,2,0.0 +17482,16,17.45,19,0.0 +17482,33,2.5,41,0.0 +17482,77,13,44,0.0 +17482,73,15,39,0.0 +17482,12,38,42,0.0 +17482,32,32,16,0.0 +17482,48,12.75,32,0.0 +17482,50,16.25,39,0.0 +17482,34,14,40,0.0 +17482,15,15.5,18,0.0 +17482,64,33.25,18,0.0 +17482,18,62.5,30,0.0 +17482,13,6,12,0.0 +17482,62,49.3,10,0.0 +17482,17,39,40,0.0 +17482,72,34.8,37,0.0 +17482,39,18,17,0.0 +17482,44,19.45,45,0.0 +17482,10,31,22,0.0 +17482,57,19.5,38,0.0 +17482,59,55,16,0.0 +17482,21,10,16,0.0 +17482,51,53,49,0.0 +17482,26,31.23,22,0.0 +17482,11,21,11,0.0 +17482,70,15,23,0.0 +17482,36,19,9,0.0 +17482,2,19,9,0.0 +17482,28,45.6,12,0.0 +17482,8,40,46,0.0 +17482,71,21.5,9,0.0 +17482,60,34,4,0.0 +17482,6,25,43,0.0 +17482,23,9,23,0.0 +17482,14,23.25,22,0.0 +17482,54,7.45,24,0.0 +17482,58,13.25,37,0.0 +17482,49,20,7,0.0 +17482,5,21.35,29,0.0 +17482,75,7.75,8,0.0 +17482,29,123.79,40,0.0 +17482,40,18.4,25,0.0 +17482,27,43.9,42,0.0 +17482,1,18,33,0.0 +17482,68,12.5,37,0.0 +17482,45,9.5,1,0.0 +17482,41,9.65,12,0.0 +17482,55,24,32,0.0 +17482,38,263.5,19,0.0 +17482,65,21.05,5,0.0 +17482,24,4.5,50,0.0 +17482,22,21,42,0.0 +17482,74,10,11,0.0 +17482,47,9.5,22,0.0 +17482,37,26,44,0.0 +17482,76,18,1,0.0 +17482,43,46,20,0.0 +17482,67,14,4,0.0 +17483,70,15,2,0.0 +17483,14,23.25,29,0.0 +17483,54,7.45,27,0.0 +17483,74,10,32,0.0 +17483,55,24,13,0.0 +17483,6,25,28,0.0 +17483,22,21,13,0.0 +17483,3,10,44,0.0 +17483,60,34,6,0.0 +17483,20,81,10,0.0 +17483,36,19,43,0.0 +17483,49,20,20,0.0 +17483,40,18.4,3,0.0 +17483,61,28.5,1,0.0 +17483,43,46,15,0.0 +17483,46,12,10,0.0 +17483,30,25.89,7,0.0 +17483,62,49.3,46,0.0 +17483,42,14,40,0.0 +17483,50,16.25,14,0.0 +17483,64,33.25,11,0.0 +17483,53,32.8,31,0.0 +17483,35,18,31,0.0 +17483,10,31,23,0.0 +17483,76,18,36,0.0 +17483,39,18,50,0.0 +17483,41,9.65,39,0.0 +17483,63,43.9,41,0.0 +17483,9,97,47,0.0 +17483,34,14,43,0.0 +17483,66,17,30,0.0 +17483,11,21,26,0.0 +17483,15,15.5,27,0.0 +17483,2,19,26,0.0 +17483,38,263.5,40,0.0 +17483,23,9,12,0.0 +17483,73,15,44,0.0 +17483,72,34.8,12,0.0 +17483,65,21.05,50,0.0 +17483,12,38,19,0.0 +17483,18,62.5,12,0.0 +17483,37,26,25,0.0 +17483,25,14,22,0.0 +17483,28,45.6,24,0.0 +17483,51,53,9,0.0 +17483,59,55,35,0.0 +17483,24,4.5,44,0.0 +17483,71,21.5,19,0.0 +17483,58,13.25,33,0.0 +17483,21,10,21,0.0 +17483,13,6,27,0.0 +17483,33,2.5,35,0.0 +17484,17,39,13,0.0 +17484,18,62.5,32,0.0 +17484,68,12.5,3,0.0 +17484,28,45.6,41,0.0 +17484,66,17,3,0.0 +17484,60,34,30,0.0 +17484,13,6,50,0.0 +17484,43,46,33,0.0 +17484,37,26,50,0.0 +17484,59,55,31,0.0 +17484,30,25.89,37,0.0 +17484,42,14,18,0.0 +17484,24,4.5,32,0.0 +17484,9,97,43,0.0 +17484,8,40,28,0.0 +17484,48,12.75,46,0.0 +17484,27,43.9,35,0.0 +17484,21,10,28,0.0 +17485,13,6,26,0.0 +17485,2,19,32,0.0 +17485,4,22,48,0.0 +17486,25,14,48,0.0 +17486,39,18,34,0.0 +17486,66,17,40,0.0 +17486,61,28.5,26,0.0 +17486,23,9,8,0.0 +17486,48,12.75,18,0.0 +17486,51,53,22,0.0 +17486,37,26,19,0.0 +17486,77,13,47,0.0 +17486,63,43.9,25,0.0 +17486,49,20,6,0.0 +17486,58,13.25,36,0.0 +17486,27,43.9,39,0.0 +17486,68,12.5,48,0.0 +17486,31,12.5,16,0.0 +17486,52,7,25,0.0 +17486,18,62.5,30,0.0 +17486,60,34,35,0.0 +17486,29,123.79,15,0.0 +17486,69,36,7,0.0 +17486,1,18,49,0.0 +17486,34,14,46,0.0 +17486,75,7.75,16,0.0 +17486,4,22,11,0.0 +17486,26,31.23,26,0.0 +17486,47,9.5,18,0.0 +17486,21,10,39,0.0 +17486,28,45.6,13,0.0 +17486,22,21,4,0.0 +17486,33,2.5,25,0.0 +17486,71,21.5,13,0.0 +17486,15,15.5,48,0.0 +17486,64,33.25,22,0.0 +17486,10,31,9,0.0 +17486,45,9.5,19,0.0 +17486,55,24,30,0.0 +17486,19,9.2,10,0.0 +17486,3,10,31,0.0 +17486,56,38,37,0.0 +17486,76,18,29,0.0 +17486,44,19.45,37,0.0 +17486,36,19,17,0.0 +17486,5,21.35,28,0.0 +17486,70,15,40,0.0 +17486,24,4.5,47,0.0 +17486,17,39,30,0.0 +17486,57,19.5,18,0.0 +17486,9,97,7,0.0 +17486,35,18,35,0.0 +17486,43,46,5,0.0 +17486,73,15,39,0.0 +17486,62,49.3,5,0.0 +17486,41,9.65,33,0.0 +17486,38,263.5,40,0.0 +17486,72,34.8,9,0.0 +17486,11,21,7,0.0 +17486,7,30,9,0.0 +17486,65,21.05,19,0.0 +17486,12,38,34,0.0 +17486,42,14,8,0.0 +17486,40,18.4,22,0.0 +17486,13,6,49,0.0 +17486,2,19,33,0.0 +17487,31,12.5,33,0.0 +17487,19,9.2,31,0.0 +17487,30,25.89,2,0.0 +17488,11,21,9,0.0 +17488,59,55,5,0.0 +17488,71,21.5,24,0.0 +17488,58,13.25,1,0.0 +17488,31,12.5,16,0.0 +17488,8,40,36,0.0 +17488,34,14,5,0.0 +17488,17,39,48,0.0 +17488,62,49.3,2,0.0 +17488,42,14,49,0.0 +17488,47,9.5,12,0.0 +17488,46,12,9,0.0 +17488,61,28.5,25,0.0 +17488,24,4.5,42,0.0 +17488,2,19,44,0.0 +17488,30,25.89,23,0.0 +17488,9,97,39,0.0 +17488,51,53,28,0.0 +17488,66,17,3,0.0 +17488,49,20,10,0.0 +17488,12,38,5,0.0 +17488,60,34,4,0.0 +17488,67,14,11,0.0 +17488,21,10,14,0.0 +17488,41,9.65,27,0.0 +17488,65,21.05,7,0.0 +17488,27,43.9,45,0.0 +17488,75,7.75,23,0.0 +17488,40,18.4,49,0.0 +17488,7,30,2,0.0 +17488,48,12.75,41,0.0 +17488,36,19,37,0.0 +17488,5,21.35,36,0.0 +17488,13,6,18,0.0 +17488,1,18,30,0.0 +17488,19,9.2,49,0.0 +17488,20,81,32,0.0 +17488,6,25,34,0.0 +17488,37,26,35,0.0 +17488,28,45.6,44,0.0 +17488,77,13,38,0.0 +17488,63,43.9,40,0.0 +17488,57,19.5,26,0.0 +17488,18,62.5,24,0.0 +17488,55,24,41,0.0 +17488,39,18,24,0.0 +17488,4,22,17,0.0 +17488,70,15,36,0.0 +17488,74,10,47,0.0 +17488,26,31.23,35,0.0 +17488,50,16.25,15,0.0 +17488,43,46,21,0.0 +17488,25,14,41,0.0 +17488,10,31,13,0.0 +17489,76,18,6,0.0 +17489,2,19,20,0.0 +17489,4,22,33,0.0 +17489,19,9.2,37,0.0 +17489,66,17,5,0.0 +17489,57,19.5,44,0.0 +17489,64,33.25,3,0.0 +17489,27,43.9,45,0.0 +17489,69,36,1,0.0 +17489,53,32.8,34,0.0 +17489,61,28.5,3,0.0 +17489,16,17.45,27,0.0 +17489,42,14,22,0.0 +17489,77,13,34,0.0 +17489,39,18,49,0.0 +17489,13,6,44,0.0 +17489,26,31.23,2,0.0 +17489,40,18.4,18,0.0 +17489,68,12.5,3,0.0 +17489,50,16.25,24,0.0 +17489,36,19,10,0.0 +17489,6,25,3,0.0 +17489,5,21.35,4,0.0 +17489,73,15,5,0.0 +17489,45,9.5,15,0.0 +17489,9,97,48,0.0 +17489,70,15,15,0.0 +17489,46,12,26,0.0 +17489,60,34,26,0.0 +17489,63,43.9,20,0.0 +17489,22,21,2,0.0 +17489,43,46,7,0.0 +17489,8,40,1,0.0 +17489,35,18,5,0.0 +17489,41,9.65,8,0.0 +17489,23,9,37,0.0 +17489,65,21.05,36,0.0 +17489,32,32,31,0.0 +17489,67,14,38,0.0 +17489,21,10,27,0.0 +17489,52,7,39,0.0 +17489,51,53,13,0.0 +17489,24,4.5,5,0.0 +17489,59,55,12,0.0 +17489,3,10,5,0.0 +17489,14,23.25,20,0.0 +17489,1,18,20,0.0 +17489,34,14,2,0.0 +17489,44,19.45,21,0.0 +17489,7,30,42,0.0 +17489,62,49.3,2,0.0 +17489,11,21,14,0.0 +17489,38,263.5,15,0.0 +17489,18,62.5,17,0.0 +17489,37,26,12,0.0 +17489,49,20,28,0.0 +17489,48,12.75,15,0.0 +17489,56,38,28,0.0 +17489,33,2.5,35,0.0 +17489,58,13.25,7,0.0 +17489,28,45.6,8,0.0 +17489,72,34.8,1,0.0 +17490,46,12,30,0.0 +17490,68,12.5,30,0.0 +17490,9,97,3,0.0 +17490,54,7.45,33,0.0 +17490,27,43.9,38,0.0 +17490,6,25,44,0.0 +17490,16,17.45,50,0.0 +17491,70,15,25,0.0 +17491,74,10,20,0.0 +17491,69,36,44,0.0 +17491,5,21.35,7,0.0 +17491,48,12.75,34,0.0 +17491,23,9,10,0.0 +17491,18,62.5,28,0.0 +17491,19,9.2,23,0.0 +17491,13,6,33,0.0 +17491,32,32,35,0.0 +17491,36,19,18,0.0 +17491,11,21,30,0.0 +17491,72,34.8,22,0.0 +17491,44,19.45,6,0.0 +17491,29,123.79,44,0.0 +17491,56,38,4,0.0 +17491,66,17,12,0.0 +17491,46,12,41,0.0 +17491,28,45.6,3,0.0 +17491,15,15.5,15,0.0 +17491,7,30,15,0.0 +17491,54,7.45,47,0.0 +17491,35,18,35,0.0 +17491,41,9.65,40,0.0 +17491,20,81,20,0.0 +17491,3,10,38,0.0 +17491,58,13.25,17,0.0 +17491,6,25,45,0.0 +17491,52,7,18,0.0 +17491,49,20,29,0.0 +17491,50,16.25,4,0.0 +17491,33,2.5,24,0.0 +17491,37,26,46,0.0 +17491,47,9.5,47,0.0 +17491,31,12.5,17,0.0 +17491,57,19.5,21,0.0 +17491,45,9.5,44,0.0 +17491,12,38,1,0.0 +17491,21,10,32,0.0 +17491,25,14,16,0.0 +17491,61,28.5,46,0.0 +17491,67,14,8,0.0 +17491,60,34,11,0.0 +17491,8,40,5,0.0 +17491,71,21.5,25,0.0 +17491,55,24,31,0.0 +17491,51,53,24,0.0 +17491,73,15,42,0.0 +17491,14,23.25,47,0.0 +17491,27,43.9,50,0.0 +17491,77,13,13,0.0 +17491,24,4.5,24,0.0 +17491,16,17.45,35,0.0 +17491,75,7.75,19,0.0 +17491,1,18,4,0.0 +17491,39,18,26,0.0 +17491,2,19,38,0.0 +17491,30,25.89,7,0.0 +17491,22,21,30,0.0 +17491,64,33.25,50,0.0 +17492,39,18,7,0.0 +17492,68,12.5,43,0.0 +17492,43,46,50,0.0 +17492,71,21.5,29,0.0 +17492,23,9,39,0.0 +17492,38,263.5,35,0.0 +17492,22,21,19,0.0 +17492,13,6,26,0.0 +17492,14,23.25,46,0.0 +17492,72,34.8,15,0.0 +17492,11,21,46,0.0 +17492,27,43.9,36,0.0 +17492,32,32,33,0.0 +17492,36,19,15,0.0 +17492,77,13,8,0.0 +17492,60,34,8,0.0 +17492,25,14,25,0.0 +17492,45,9.5,33,0.0 +17492,55,24,20,0.0 +17492,73,15,30,0.0 +17492,74,10,25,0.0 +17492,44,19.45,22,0.0 +17492,46,12,48,0.0 +17492,35,18,32,0.0 +17492,12,38,8,0.0 +17492,70,15,28,0.0 +17492,49,20,45,0.0 +17492,64,33.25,23,0.0 +17492,10,31,38,0.0 +17492,33,2.5,24,0.0 +17492,29,123.79,46,0.0 +17492,42,14,35,0.0 +17492,57,19.5,2,0.0 +17492,51,53,41,0.0 +17493,59,55,2,0.0 +17493,63,43.9,48,0.0 +17493,32,32,25,0.0 +17493,65,21.05,16,0.0 +17493,28,45.6,3,0.0 +17493,11,21,17,0.0 +17493,71,21.5,28,0.0 +17493,17,39,37,0.0 +17493,15,15.5,8,0.0 +17493,33,2.5,33,0.0 +17493,19,9.2,19,0.0 +17493,36,19,22,0.0 +17493,57,19.5,2,0.0 +17493,41,9.65,42,0.0 +17493,70,15,5,0.0 +17493,74,10,4,0.0 +17493,58,13.25,40,0.0 +17493,38,263.5,34,0.0 +17493,67,14,50,0.0 +17493,34,14,48,0.0 +17493,29,123.79,3,0.0 +17493,55,24,10,0.0 +17493,51,53,50,0.0 +17493,21,10,27,0.0 +17493,60,34,4,0.0 +17493,42,14,48,0.0 +17493,56,38,21,0.0 +17493,46,12,33,0.0 +17493,25,14,40,0.0 +17493,6,25,10,0.0 +17493,72,34.8,4,0.0 +17493,54,7.45,10,0.0 +17493,18,62.5,43,0.0 +17493,69,36,2,0.0 +17493,31,12.5,36,0.0 +17493,24,4.5,25,0.0 +17493,76,18,44,0.0 +17493,52,7,32,0.0 +17493,44,19.45,39,0.0 +17493,53,32.8,24,0.0 +17493,16,17.45,14,0.0 +17493,77,13,28,0.0 +17493,49,20,14,0.0 +17493,66,17,43,0.0 +17493,37,26,38,0.0 +17493,48,12.75,33,0.0 +17493,26,31.23,50,0.0 +17493,1,18,34,0.0 +17493,23,9,4,0.0 +17493,27,43.9,28,0.0 +17493,10,31,15,0.0 +17493,50,16.25,24,0.0 +17493,9,97,8,0.0 +17493,61,28.5,24,0.0 +17493,4,22,4,0.0 +17493,13,6,13,0.0 +17493,64,33.25,7,0.0 +17493,2,19,40,0.0 +17493,40,18.4,7,0.0 +17493,14,23.25,5,0.0 +17493,39,18,20,0.0 +17493,20,81,47,0.0 +17493,7,30,3,0.0 +17494,36,19,4,0.0 +17494,34,14,32,0.0 +17494,74,10,24,0.0 +17494,65,21.05,21,0.0 +17494,23,9,32,0.0 +17494,8,40,29,0.0 +17494,24,4.5,49,0.0 +17494,49,20,15,0.0 +17494,46,12,47,0.0 +17494,64,33.25,6,0.0 +17494,43,46,36,0.0 +17494,50,16.25,33,0.0 +17494,70,15,1,0.0 +17494,40,18.4,5,0.0 +17494,18,62.5,20,0.0 +17494,39,18,31,0.0 +17494,22,21,26,0.0 +17494,12,38,35,0.0 +17494,16,17.45,12,0.0 +17494,5,21.35,39,0.0 +17494,21,10,12,0.0 +17494,69,36,38,0.0 +17494,77,13,18,0.0 +17494,57,19.5,18,0.0 +17494,29,123.79,30,0.0 +17494,67,14,6,0.0 +17494,6,25,8,0.0 +17494,66,17,4,0.0 +17494,32,32,42,0.0 +17494,63,43.9,38,0.0 +17494,35,18,5,0.0 +17494,3,10,21,0.0 +17494,25,14,30,0.0 +17494,54,7.45,21,0.0 +17494,56,38,46,0.0 +17494,20,81,21,0.0 +17494,73,15,19,0.0 +17494,13,6,39,0.0 +17494,26,31.23,23,0.0 +17494,11,21,6,0.0 +17494,62,49.3,30,0.0 +17494,9,97,35,0.0 +17495,61,28.5,31,0.0 +17495,31,12.5,35,0.0 +17495,45,9.5,14,0.0 +17495,23,9,1,0.0 +17495,18,62.5,21,0.0 +17495,11,21,8,0.0 +17495,77,13,43,0.0 +17495,13,6,7,0.0 +17495,70,15,20,0.0 +17495,21,10,24,0.0 +17495,26,31.23,21,0.0 +17495,32,32,8,0.0 +17495,44,19.45,37,0.0 +17495,62,49.3,44,0.0 +17495,10,31,31,0.0 +17495,65,21.05,10,0.0 +17495,20,81,34,0.0 +17495,58,13.25,20,0.0 +17495,56,38,28,0.0 +17495,19,9.2,46,0.0 +17495,1,18,36,0.0 +17495,50,16.25,10,0.0 +17495,64,33.25,50,0.0 +17495,55,24,7,0.0 +17495,36,19,38,0.0 +17495,52,7,42,0.0 +17495,22,21,32,0.0 +17495,37,26,15,0.0 +17495,48,12.75,12,0.0 +17495,25,14,15,0.0 +17495,7,30,43,0.0 +17495,42,14,43,0.0 +17495,63,43.9,34,0.0 +17495,29,123.79,48,0.0 +17495,71,21.5,29,0.0 +17495,35,18,42,0.0 +17495,9,97,12,0.0 +17495,17,39,6,0.0 +17495,3,10,13,0.0 +17495,59,55,28,0.0 +17495,46,12,31,0.0 +17495,41,9.65,24,0.0 +17495,27,43.9,35,0.0 +17496,3,10,42,0.0 +17496,29,123.79,1,0.0 +17496,72,34.8,7,0.0 +17496,65,21.05,13,0.0 +17496,24,4.5,10,0.0 +17496,40,18.4,32,0.0 +17496,22,21,20,0.0 +17496,13,6,18,0.0 +17496,4,22,24,0.0 +17496,1,18,15,0.0 +17496,50,16.25,14,0.0 +17496,33,2.5,50,0.0 +17497,69,36,1,0.0 +17497,65,21.05,4,0.0 +17497,16,17.45,23,0.0 +17497,28,45.6,9,0.0 +17497,39,18,27,0.0 +17497,40,18.4,35,0.0 +17497,12,38,30,0.0 +17497,22,21,37,0.0 +17497,71,21.5,35,0.0 +17497,61,28.5,32,0.0 +17497,1,18,30,0.0 +17497,26,31.23,8,0.0 +17497,24,4.5,20,0.0 +17497,38,263.5,14,0.0 +17497,32,32,26,0.0 +17497,9,97,22,0.0 +17497,35,18,44,0.0 +17497,57,19.5,13,0.0 +17497,25,14,50,0.0 +17497,34,14,47,0.0 +17497,11,21,38,0.0 +17497,63,43.9,23,0.0 +17497,76,18,40,0.0 +17497,10,31,12,0.0 +17497,23,9,17,0.0 +17497,27,43.9,26,0.0 +17497,51,53,24,0.0 +17497,56,38,23,0.0 +17497,67,14,16,0.0 +17497,3,10,5,0.0 +17497,59,55,50,0.0 +17497,42,14,27,0.0 +17497,60,34,38,0.0 +17497,13,6,19,0.0 +17497,30,25.89,11,0.0 +17497,49,20,35,0.0 +17497,33,2.5,36,0.0 +17497,72,34.8,35,0.0 +17497,47,9.5,1,0.0 +17497,55,24,13,0.0 +17497,62,49.3,49,0.0 +17497,19,9.2,10,0.0 +17498,25,14,30,0.0 +17498,59,55,40,0.0 +17498,34,14,37,0.0 +17498,29,123.79,6,0.0 +17499,40,18.4,14,0.0 +17499,63,43.9,13,0.0 +17499,36,19,42,0.0 +17499,10,31,36,0.0 +17499,44,19.45,4,0.0 +17499,30,25.89,23,0.0 +17499,69,36,21,0.0 +17499,74,10,22,0.0 +17499,62,49.3,5,0.0 +17499,1,18,32,0.0 +17499,65,21.05,20,0.0 +17499,73,15,4,0.0 +17499,31,12.5,8,0.0 +17499,42,14,10,0.0 +17499,2,19,9,0.0 +17499,20,81,39,0.0 +17499,43,46,28,0.0 +17499,26,31.23,8,0.0 +17499,67,14,14,0.0 +17499,53,32.8,49,0.0 +17499,60,34,27,0.0 +17499,54,7.45,21,0.0 +17499,15,15.5,19,0.0 +17499,17,39,28,0.0 +17499,76,18,37,0.0 +17499,49,20,10,0.0 +17499,72,34.8,34,0.0 +17499,25,14,41,0.0 +17499,9,97,41,0.0 +17499,4,22,32,0.0 +17499,7,30,9,0.0 +17499,33,2.5,23,0.0 +17499,50,16.25,22,0.0 +17499,45,9.5,5,0.0 +17499,52,7,8,0.0 +17499,3,10,33,0.0 +17499,32,32,13,0.0 +17499,16,17.45,26,0.0 +17499,34,14,46,0.0 +17499,57,19.5,30,0.0 +17499,22,21,45,0.0 +17499,18,62.5,41,0.0 +17500,37,26,33,0.0 +17500,73,15,20,0.0 +17500,53,32.8,6,0.0 +17500,52,7,1,0.0 +17500,54,7.45,12,0.0 +17500,33,2.5,8,0.0 +17500,76,18,45,0.0 +17500,45,9.5,6,0.0 +17500,58,13.25,3,0.0 +17500,2,19,11,0.0 +17500,3,10,45,0.0 +17500,77,13,19,0.0 +17500,70,15,41,0.0 +17500,26,31.23,37,0.0 +17500,41,9.65,8,0.0 +17500,18,62.5,2,0.0 +17500,14,23.25,11,0.0 +17500,30,25.89,30,0.0 +17500,8,40,46,0.0 +17500,23,9,11,0.0 +17500,15,15.5,6,0.0 +17500,10,31,37,0.0 +17500,13,6,30,0.0 +17500,21,10,47,0.0 +17501,1,18,2,0.0 +17501,72,34.8,14,0.0 +17501,34,14,35,0.0 +17501,65,21.05,18,0.0 +17501,76,18,7,0.0 +17501,35,18,34,0.0 +17501,53,32.8,28,0.0 +17501,55,24,24,0.0 +17501,43,46,18,0.0 +17501,46,12,31,0.0 +17501,30,25.89,9,0.0 +17501,47,9.5,7,0.0 +17501,60,34,20,0.0 +17501,4,22,31,0.0 +17501,42,14,9,0.0 +17501,27,43.9,24,0.0 +17501,25,14,8,0.0 +17501,24,4.5,50,0.0 +17501,66,17,33,0.0 +17501,18,62.5,46,0.0 +17501,71,21.5,33,0.0 +17501,13,6,31,0.0 +17501,54,7.45,41,0.0 +17501,48,12.75,38,0.0 +17501,36,19,1,0.0 +17501,15,15.5,43,0.0 +17501,64,33.25,29,0.0 +17501,22,21,30,0.0 +17501,74,10,7,0.0 +17501,19,9.2,32,0.0 +17501,31,12.5,39,0.0 +17501,50,16.25,40,0.0 +17501,67,14,17,0.0 +17501,8,40,4,0.0 +17501,37,26,3,0.0 +17501,23,9,6,0.0 +17501,51,53,19,0.0 +17501,3,10,32,0.0 +17501,45,9.5,37,0.0 +17501,7,30,3,0.0 +17501,56,38,17,0.0 +17501,40,18.4,32,0.0 +17501,33,2.5,14,0.0 +17501,14,23.25,18,0.0 +17501,38,263.5,7,0.0 +17501,75,7.75,34,0.0 +17501,17,39,17,0.0 +17502,32,32,23,0.0 +17502,65,21.05,9,0.0 +17502,58,13.25,14,0.0 +17502,20,81,32,0.0 +17502,16,17.45,29,0.0 +17502,59,55,50,0.0 +17502,8,40,24,0.0 +17502,18,62.5,26,0.0 +17502,45,9.5,27,0.0 +17502,46,12,33,0.0 +17502,24,4.5,23,0.0 +17502,73,15,48,0.0 +17502,39,18,33,0.0 +17502,13,6,19,0.0 +17502,44,19.45,41,0.0 +17502,60,34,12,0.0 +17502,53,32.8,45,0.0 +17502,11,21,4,0.0 +17502,57,19.5,47,0.0 +17502,52,7,23,0.0 +17502,43,46,48,0.0 +17502,72,34.8,10,0.0 +17502,35,18,25,0.0 +17502,62,49.3,15,0.0 +17502,61,28.5,23,0.0 +17502,37,26,47,0.0 +17502,21,10,4,0.0 +17502,23,9,28,0.0 +17502,14,23.25,42,0.0 +17502,41,9.65,1,0.0 +17502,28,45.6,40,0.0 +17502,55,24,37,0.0 +17502,71,21.5,50,0.0 +17502,4,22,3,0.0 +17502,77,13,46,0.0 +17502,10,31,35,0.0 +17502,64,33.25,12,0.0 +17502,25,14,6,0.0 +17502,5,21.35,42,0.0 +17502,1,18,14,0.0 +17502,6,25,4,0.0 +17502,48,12.75,10,0.0 +17502,70,15,35,0.0 +17502,17,39,37,0.0 +17502,3,10,49,0.0 +17502,31,12.5,5,0.0 +17502,49,20,43,0.0 +17502,56,38,29,0.0 +17502,50,16.25,6,0.0 +17502,27,43.9,9,0.0 +17502,66,17,13,0.0 +17502,15,15.5,30,0.0 +17502,69,36,23,0.0 +17502,51,53,14,0.0 +17502,47,9.5,36,0.0 +17502,42,14,21,0.0 +17502,22,21,17,0.0 +17502,12,38,6,0.0 +17502,63,43.9,48,0.0 +17502,75,7.75,16,0.0 +17502,74,10,20,0.0 +17502,30,25.89,3,0.0 +17502,67,14,35,0.0 +17502,19,9.2,13,0.0 +17502,2,19,34,0.0 +17502,34,14,17,0.0 +17502,76,18,42,0.0 +17502,7,30,27,0.0 +17502,33,2.5,25,0.0 +17502,36,19,17,0.0 +17502,38,263.5,33,0.0 +17503,68,12.5,11,0.0 +17503,33,2.5,22,0.0 +17503,60,34,18,0.0 +17503,49,20,7,0.0 +17503,2,19,2,0.0 +17503,18,62.5,9,0.0 +17503,36,19,26,0.0 +17503,47,9.5,19,0.0 +17503,30,25.89,22,0.0 +17503,26,31.23,12,0.0 +17503,63,43.9,28,0.0 +17503,6,25,41,0.0 +17503,25,14,45,0.0 +17503,22,21,4,0.0 +17503,77,13,6,0.0 +17503,1,18,48,0.0 +17503,43,46,24,0.0 +17503,54,7.45,24,0.0 +17503,73,15,2,0.0 +17503,29,123.79,1,0.0 +17503,37,26,28,0.0 +17503,69,36,44,0.0 +17503,55,24,10,0.0 +17503,27,43.9,1,0.0 +17503,4,22,44,0.0 +17503,72,34.8,5,0.0 +17503,61,28.5,24,0.0 +17503,57,19.5,12,0.0 +17503,5,21.35,33,0.0 +17503,12,38,24,0.0 +17503,16,17.45,10,0.0 +17503,50,16.25,38,0.0 +17503,31,12.5,8,0.0 +17503,46,12,24,0.0 +17503,8,40,31,0.0 +17503,59,55,7,0.0 +17503,19,9.2,10,0.0 +17504,22,21,15,0.0 +17504,43,46,5,0.0 +17504,49,20,49,0.0 +17504,77,13,50,0.0 +17504,70,15,40,0.0 +17504,39,18,14,0.0 +17504,62,49.3,32,0.0 +17504,65,21.05,8,0.0 +17504,14,23.25,11,0.0 +17504,24,4.5,13,0.0 +17504,52,7,13,0.0 +17504,46,12,11,0.0 +17504,5,21.35,37,0.0 +17504,53,32.8,10,0.0 +17504,60,34,44,0.0 +17504,66,17,30,0.0 +17504,64,33.25,8,0.0 +17504,9,97,34,0.0 +17504,17,39,20,0.0 +17504,71,21.5,41,0.0 +17504,6,25,25,0.0 +17504,68,12.5,46,0.0 +17504,76,18,25,0.0 +17504,12,38,3,0.0 +17504,19,9.2,3,0.0 +17504,34,14,5,0.0 +17504,13,6,7,0.0 +17504,75,7.75,29,0.0 +17504,45,9.5,29,0.0 +17504,35,18,13,0.0 +17504,73,15,31,0.0 +17504,33,2.5,40,0.0 +17504,54,7.45,20,0.0 +17504,32,32,26,0.0 +17504,61,28.5,44,0.0 +17504,63,43.9,12,0.0 +17504,27,43.9,14,0.0 +17504,25,14,40,0.0 +17504,23,9,5,0.0 +17504,51,53,24,0.0 +17504,10,31,44,0.0 +17504,58,13.25,16,0.0 +17504,69,36,1,0.0 +17504,42,14,26,0.0 +17504,20,81,30,0.0 +17504,21,10,10,0.0 +17504,74,10,42,0.0 +17504,40,18.4,37,0.0 +17504,48,12.75,28,0.0 +17504,31,12.5,23,0.0 +17504,26,31.23,9,0.0 +17504,72,34.8,18,0.0 +17504,2,19,11,0.0 +17504,55,24,35,0.0 +17504,8,40,27,0.0 +17504,59,55,36,0.0 +17505,71,21.5,14,0.0 +17505,75,7.75,29,0.0 +17505,41,9.65,14,0.0 +17505,52,7,49,0.0 +17505,56,38,19,0.0 +17505,35,18,29,0.0 +17505,43,46,7,0.0 +17505,5,21.35,18,0.0 +17505,44,19.45,28,0.0 +17505,11,21,35,0.0 +17505,48,12.75,3,0.0 +17505,49,20,1,0.0 +17505,53,32.8,30,0.0 +17506,40,18.4,8,0.0 +17506,32,32,15,0.0 +17506,72,34.8,16,0.0 +17506,19,9.2,40,0.0 +17506,63,43.9,48,0.0 +17506,33,2.5,25,0.0 +17506,31,12.5,50,0.0 +17506,45,9.5,47,0.0 +17506,20,81,17,0.0 +17506,73,15,28,0.0 +17506,67,14,1,0.0 +17506,49,20,32,0.0 +17506,18,62.5,5,0.0 +17506,23,9,12,0.0 +17506,66,17,16,0.0 +17506,37,26,14,0.0 +17506,52,7,19,0.0 +17506,44,19.45,11,0.0 +17506,21,10,15,0.0 +17506,54,7.45,1,0.0 +17506,62,49.3,46,0.0 +17506,68,12.5,20,0.0 +17506,24,4.5,23,0.0 +17506,36,19,39,0.0 +17506,41,9.65,32,0.0 +17506,56,38,9,0.0 +17506,58,13.25,24,0.0 +17506,65,21.05,17,0.0 +17506,29,123.79,36,0.0 +17506,70,15,39,0.0 +17506,15,15.5,38,0.0 +17506,12,38,49,0.0 +17506,69,36,45,0.0 +17506,17,39,17,0.0 +17506,53,32.8,35,0.0 +17506,76,18,21,0.0 +17506,51,53,30,0.0 +17506,55,24,44,0.0 +17506,13,6,20,0.0 +17506,6,25,23,0.0 +17506,60,34,4,0.0 +17506,26,31.23,6,0.0 +17507,10,31,11,0.0 +17507,6,25,28,0.0 +17507,47,9.5,1,0.0 +17507,49,20,45,0.0 +17507,39,18,46,0.0 +17507,36,19,16,0.0 +17507,34,14,42,0.0 +17507,5,21.35,22,0.0 +17507,32,32,4,0.0 +17507,16,17.45,18,0.0 +17507,27,43.9,3,0.0 +17507,42,14,3,0.0 +17507,53,32.8,47,0.0 +17507,73,15,39,0.0 +17507,12,38,24,0.0 +17507,77,13,19,0.0 +17507,9,97,37,0.0 +17507,18,62.5,25,0.0 +17507,37,26,18,0.0 +17507,33,2.5,26,0.0 +17507,3,10,23,0.0 +17507,43,46,29,0.0 +17507,26,31.23,28,0.0 +17507,66,17,36,0.0 +17507,23,9,19,0.0 +17507,35,18,8,0.0 +17507,74,10,23,0.0 +17507,62,49.3,14,0.0 +17507,31,12.5,48,0.0 +17507,21,10,36,0.0 +17507,45,9.5,13,0.0 +17507,13,6,1,0.0 +17508,7,30,18,0.0 +17508,1,18,7,0.0 +17508,55,24,10,0.0 +17508,41,9.65,13,0.0 +17508,60,34,20,0.0 +17508,59,55,13,0.0 +17508,62,49.3,16,0.0 +17508,22,21,34,0.0 +17508,51,53,8,0.0 +17508,58,13.25,24,0.0 +17508,9,97,40,0.0 +17508,53,32.8,23,0.0 +17508,61,28.5,12,0.0 +17508,3,10,50,0.0 +17508,30,25.89,50,0.0 +17508,74,10,21,0.0 +17508,4,22,32,0.0 +17508,29,123.79,36,0.0 +17508,23,9,36,0.0 +17508,38,263.5,37,0.0 +17509,40,18.4,8,0.0 +17509,34,14,25,0.0 +17509,55,24,26,0.0 +17509,60,34,36,0.0 +17509,11,21,23,0.0 +17509,62,49.3,28,0.0 +17509,49,20,8,0.0 +17509,77,13,33,0.0 +17509,51,53,14,0.0 +17509,45,9.5,45,0.0 +17509,19,9.2,12,0.0 +17509,24,4.5,15,0.0 +17509,2,19,15,0.0 +17509,53,32.8,36,0.0 +17509,9,97,40,0.0 +17509,36,19,30,0.0 +17509,37,26,32,0.0 +17509,41,9.65,39,0.0 +17510,39,18,9,0.0 +17510,24,4.5,42,0.0 +17510,1,18,39,0.0 +17510,7,30,28,0.0 +17510,45,9.5,36,0.0 +17510,49,20,13,0.0 +17510,38,263.5,9,0.0 +17510,76,18,17,0.0 +17510,16,17.45,25,0.0 +17511,3,10,28,0.0 +17511,55,24,20,0.0 +17511,41,9.65,27,0.0 +17511,73,15,10,0.0 +17511,67,14,35,0.0 +17511,31,12.5,50,0.0 +17511,21,10,44,0.0 +17511,10,31,11,0.0 +17511,77,13,13,0.0 +17511,66,17,18,0.0 +17511,42,14,3,0.0 +17511,14,23.25,42,0.0 +17511,19,9.2,14,0.0 +17511,61,28.5,27,0.0 +17511,8,40,12,0.0 +17511,37,26,16,0.0 +17511,25,14,2,0.0 +17511,62,49.3,40,0.0 +17511,17,39,17,0.0 +17511,72,34.8,31,0.0 +17511,65,21.05,27,0.0 +17511,24,4.5,36,0.0 +17511,33,2.5,28,0.0 +17511,12,38,35,0.0 +17511,64,33.25,15,0.0 +17512,11,21,37,0.0 +17512,28,45.6,30,0.0 +17512,1,18,24,0.0 +17512,36,19,21,0.0 +17512,43,46,11,0.0 +17512,67,14,21,0.0 +17512,50,16.25,24,0.0 +17512,71,21.5,26,0.0 +17512,17,39,11,0.0 +17512,20,81,7,0.0 +17512,13,6,29,0.0 +17512,6,25,40,0.0 +17512,42,14,28,0.0 +17512,18,62.5,44,0.0 +17512,68,12.5,38,0.0 +17512,76,18,20,0.0 +17512,60,34,45,0.0 +17512,63,43.9,9,0.0 +17512,56,38,4,0.0 +17512,38,263.5,17,0.0 +17512,29,123.79,19,0.0 +17512,73,15,28,0.0 +17512,77,13,38,0.0 +17512,58,13.25,35,0.0 +17512,72,34.8,1,0.0 +17512,49,20,13,0.0 +17512,35,18,20,0.0 +17512,53,32.8,47,0.0 +17512,33,2.5,29,0.0 +17512,24,4.5,45,0.0 +17512,8,40,32,0.0 +17512,4,22,15,0.0 +17512,62,49.3,22,0.0 +17512,16,17.45,11,0.0 +17512,7,30,42,0.0 +17512,40,18.4,27,0.0 +17512,65,21.05,45,0.0 +17512,12,38,27,0.0 +17512,23,9,43,0.0 +17512,52,7,29,0.0 +17512,34,14,23,0.0 +17512,47,9.5,16,0.0 +17512,21,10,22,0.0 +17512,19,9.2,14,0.0 +17512,30,25.89,47,0.0 +17512,3,10,30,0.0 +17512,74,10,45,0.0 +17512,57,19.5,41,0.0 +17512,66,17,30,0.0 +17512,10,31,33,0.0 +17512,59,55,48,0.0 +17512,69,36,1,0.0 +17512,48,12.75,24,0.0 +17512,15,15.5,36,0.0 +17512,70,15,50,0.0 +17512,54,7.45,28,0.0 +17512,37,26,28,0.0 +17512,26,31.23,6,0.0 +17512,27,43.9,2,0.0 +17512,75,7.75,41,0.0 +17512,9,97,20,0.0 +17512,39,18,9,0.0 +17512,46,12,39,0.0 +17512,25,14,39,0.0 +17512,22,21,34,0.0 +17512,55,24,20,0.0 +17512,2,19,26,0.0 +17512,31,12.5,20,0.0 +17512,5,21.35,50,0.0 +17512,14,23.25,38,0.0 +17512,61,28.5,8,0.0 +17513,64,33.25,44,0.0 +17513,32,32,36,0.0 +17513,27,43.9,17,0.0 +17513,20,81,18,0.0 +17513,37,26,44,0.0 +17513,6,25,23,0.0 +17513,46,12,2,0.0 +17513,60,34,46,0.0 +17513,40,18.4,36,0.0 +17513,65,21.05,50,0.0 +17513,31,12.5,28,0.0 +17513,12,38,14,0.0 +17513,55,24,35,0.0 +17513,67,14,38,0.0 +17513,47,9.5,34,0.0 +17513,26,31.23,40,0.0 +17513,22,21,25,0.0 +17513,68,12.5,50,0.0 +17513,13,6,24,0.0 +17513,73,15,9,0.0 +17513,44,19.45,34,0.0 +17513,59,55,43,0.0 +17513,63,43.9,33,0.0 +17513,51,53,36,0.0 +17513,49,20,14,0.0 +17513,38,263.5,44,0.0 +17513,36,19,12,0.0 +17513,48,12.75,28,0.0 +17513,50,16.25,5,0.0 +17513,18,62.5,34,0.0 +17513,76,18,16,0.0 +17513,28,45.6,8,0.0 +17513,1,18,35,0.0 +17513,10,31,30,0.0 +17513,69,36,36,0.0 +17513,24,4.5,15,0.0 +17513,45,9.5,44,0.0 +17513,4,22,16,0.0 +17513,41,9.65,39,0.0 +17513,33,2.5,35,0.0 +17513,77,13,3,0.0 +17513,15,15.5,7,0.0 +17513,7,30,24,0.0 +17513,66,17,18,0.0 +17513,9,97,2,0.0 +17513,75,7.75,37,0.0 +17513,2,19,18,0.0 +17513,30,25.89,39,0.0 +17513,57,19.5,45,0.0 +17513,61,28.5,50,0.0 +17513,16,17.45,49,0.0 +17513,17,39,47,0.0 +17513,72,34.8,26,0.0 +17513,43,46,36,0.0 +17513,3,10,8,0.0 +17513,58,13.25,7,0.0 +17513,52,7,10,0.0 +17513,74,10,11,0.0 +17513,21,10,39,0.0 +17513,34,14,22,0.0 +17513,5,21.35,42,0.0 +17513,19,9.2,41,0.0 +17513,54,7.45,17,0.0 +17513,23,9,8,0.0 +17513,29,123.79,44,0.0 +17513,11,21,39,0.0 +17513,62,49.3,46,0.0 +17513,25,14,30,0.0 +17513,70,15,31,0.0 +17513,35,18,22,0.0 +17513,39,18,37,0.0 +17513,42,14,15,0.0 +17513,53,32.8,13,0.0 +17514,10,31,26,0.0 +17514,75,7.75,23,0.0 +17514,73,15,28,0.0 +17514,7,30,34,0.0 +17514,74,10,44,0.0 +17515,14,23.25,28,0.0 +17515,42,14,11,0.0 +17515,75,7.75,50,0.0 +17515,63,43.9,24,0.0 +17515,45,9.5,36,0.0 +17515,57,19.5,28,0.0 +17515,64,33.25,34,0.0 +17515,65,21.05,36,0.0 +17515,25,14,43,0.0 +17515,26,31.23,41,0.0 +17515,28,45.6,36,0.0 +17515,6,25,30,0.0 +17515,41,9.65,16,0.0 +17515,46,12,6,0.0 +17515,29,123.79,40,0.0 +17515,67,14,26,0.0 +17515,66,17,24,0.0 +17515,51,53,25,0.0 +17515,74,10,40,0.0 +17515,27,43.9,36,0.0 +17515,5,21.35,24,0.0 +17515,69,36,19,0.0 +17515,48,12.75,16,0.0 +17515,36,19,15,0.0 +17515,49,20,25,0.0 +17515,18,62.5,17,0.0 +17515,4,22,21,0.0 +17515,34,14,14,0.0 +17515,33,2.5,19,0.0 +17515,56,38,21,0.0 +17515,62,49.3,15,0.0 +17515,7,30,28,0.0 +17515,59,55,39,0.0 +17515,43,46,24,0.0 +17515,24,4.5,27,0.0 +17515,9,97,33,0.0 +17516,35,18,6,0.0 +17516,71,21.5,10,0.0 +17516,6,25,40,0.0 +17516,53,32.8,36,0.0 +17516,63,43.9,3,0.0 +17516,73,15,34,0.0 +17516,13,6,1,0.0 +17516,17,39,27,0.0 +17516,41,9.65,42,0.0 +17516,44,19.45,17,0.0 +17516,22,21,37,0.0 +17516,10,31,3,0.0 +17516,25,14,38,0.0 +17516,29,123.79,31,0.0 +17516,58,13.25,8,0.0 +17516,16,17.45,18,0.0 +17516,28,45.6,12,0.0 +17516,23,9,47,0.0 +17516,11,21,35,0.0 +17516,55,24,3,0.0 +17516,74,10,8,0.0 +17516,37,26,45,0.0 +17516,4,22,23,0.0 +17516,57,19.5,11,0.0 +17516,18,62.5,23,0.0 +17516,14,23.25,45,0.0 +17516,27,43.9,37,0.0 +17516,49,20,35,0.0 +17516,38,263.5,49,0.0 +17516,66,17,11,0.0 +17516,7,30,9,0.0 +17516,21,10,20,0.0 +17516,72,34.8,30,0.0 +17516,61,28.5,45,0.0 +17516,42,14,39,0.0 +17516,39,18,46,0.0 +17516,47,9.5,5,0.0 +17516,32,32,23,0.0 +17516,75,7.75,16,0.0 +17516,51,53,43,0.0 +17516,31,12.5,11,0.0 +17516,34,14,36,0.0 +17516,76,18,40,0.0 +17516,70,15,6,0.0 +17516,40,18.4,32,0.0 +17516,59,55,29,0.0 +17516,2,19,20,0.0 +17516,33,2.5,25,0.0 +17516,69,36,38,0.0 +17516,30,25.89,20,0.0 +17516,77,13,43,0.0 +17516,62,49.3,16,0.0 +17516,1,18,38,0.0 +17516,60,34,13,0.0 +17516,15,15.5,30,0.0 +17516,20,81,37,0.0 +17516,67,14,32,0.0 +17516,43,46,34,0.0 +17516,65,21.05,3,0.0 +17516,5,21.35,44,0.0 +17516,56,38,37,0.0 +17516,54,7.45,23,0.0 +17516,48,12.75,21,0.0 +17516,45,9.5,18,0.0 +17516,52,7,35,0.0 +17516,36,19,36,0.0 +17516,19,9.2,16,0.0 +17516,12,38,13,0.0 +17516,64,33.25,42,0.0 +17516,8,40,5,0.0 +17516,50,16.25,36,0.0 +17516,26,31.23,16,0.0 +17516,68,12.5,40,0.0 +17516,24,4.5,18,0.0 +17516,9,97,17,0.0 +17516,3,10,9,0.0 +17516,46,12,15,0.0 +17517,28,45.6,1,0.0 +17517,45,9.5,29,0.0 +17518,64,33.25,43,0.0 +17518,49,20,33,0.0 +17518,35,18,45,0.0 +17518,76,18,33,0.0 +17518,38,263.5,46,0.0 +17518,77,13,24,0.0 +17518,73,15,42,0.0 +17518,22,21,33,0.0 +17518,17,39,44,0.0 +17518,70,15,35,0.0 +17518,4,22,22,0.0 +17518,23,9,10,0.0 +17518,25,14,25,0.0 +17518,16,17.45,21,0.0 +17518,59,55,9,0.0 +17518,41,9.65,50,0.0 +17518,13,6,32,0.0 +17518,40,18.4,23,0.0 +17518,24,4.5,41,0.0 +17518,75,7.75,31,0.0 +17518,50,16.25,17,0.0 +17518,20,81,6,0.0 +17518,18,62.5,9,0.0 +17518,58,13.25,24,0.0 +17518,6,25,28,0.0 +17518,62,49.3,37,0.0 +17518,39,18,41,0.0 +17518,26,31.23,47,0.0 +17519,11,21,40,0.0 +17519,73,15,4,0.0 +17519,10,31,45,0.0 +17519,13,6,15,0.0 +17519,56,38,7,0.0 +17519,55,24,29,0.0 +17519,43,46,41,0.0 +17519,68,12.5,25,0.0 +17519,41,9.65,22,0.0 +17519,20,81,3,0.0 +17519,35,18,43,0.0 +17519,7,30,5,0.0 +17519,63,43.9,18,0.0 +17519,58,13.25,41,0.0 +17519,36,19,28,0.0 +17519,40,18.4,48,0.0 +17519,16,17.45,28,0.0 +17519,18,62.5,8,0.0 +17520,54,7.45,25,0.0 +17520,7,30,7,0.0 +17520,61,28.5,7,0.0 +17520,6,25,1,0.0 +17520,35,18,14,0.0 +17520,45,9.5,41,0.0 +17520,22,21,38,0.0 +17520,51,53,33,0.0 +17520,33,2.5,50,0.0 +17520,32,32,14,0.0 +17520,72,34.8,24,0.0 +17520,17,39,25,0.0 +17520,14,23.25,16,0.0 +17520,62,49.3,10,0.0 +17520,8,40,39,0.0 +17520,3,10,21,0.0 +17520,19,9.2,35,0.0 +17520,28,45.6,49,0.0 +17520,60,34,40,0.0 +17520,74,10,14,0.0 +17520,68,12.5,16,0.0 +17520,71,21.5,38,0.0 +17520,41,9.65,42,0.0 +17520,70,15,41,0.0 +17520,4,22,7,0.0 +17520,25,14,49,0.0 +17520,34,14,47,0.0 +17520,26,31.23,6,0.0 +17520,37,26,44,0.0 +17520,50,16.25,19,0.0 +17520,48,12.75,12,0.0 +17520,59,55,49,0.0 +17520,15,15.5,12,0.0 +17520,38,263.5,28,0.0 +17520,36,19,31,0.0 +17520,73,15,1,0.0 +17520,63,43.9,38,0.0 +17520,47,9.5,7,0.0 +17520,2,19,32,0.0 +17520,46,12,18,0.0 +17520,20,81,8,0.0 +17520,55,24,29,0.0 +17520,64,33.25,23,0.0 +17520,18,62.5,16,0.0 +17520,13,6,41,0.0 +17520,1,18,29,0.0 +17520,30,25.89,40,0.0 +17520,43,46,49,0.0 +17520,31,12.5,37,0.0 +17520,76,18,15,0.0 +17520,52,7,3,0.0 +17520,5,21.35,10,0.0 +17520,40,18.4,32,0.0 +17520,9,97,43,0.0 +17520,69,36,12,0.0 +17520,56,38,14,0.0 +17520,66,17,45,0.0 +17520,24,4.5,48,0.0 +17520,42,14,47,0.0 +17520,29,123.79,46,0.0 +17520,27,43.9,36,0.0 +17520,10,31,27,0.0 +17520,65,21.05,5,0.0 +17520,58,13.25,43,0.0 +17520,39,18,22,0.0 +17521,65,21.05,13,0.0 +17521,59,55,7,0.0 +17521,72,34.8,22,0.0 +17521,27,43.9,10,0.0 +17521,45,9.5,26,0.0 +17521,76,18,45,0.0 +17521,63,43.9,48,0.0 +17521,26,31.23,38,0.0 +17521,50,16.25,40,0.0 +17521,69,36,17,0.0 +17521,31,12.5,32,0.0 +17521,43,46,5,0.0 +17521,30,25.89,5,0.0 +17521,42,14,27,0.0 +17521,67,14,3,0.0 +17521,13,6,27,0.0 +17521,18,62.5,6,0.0 +17521,61,28.5,43,0.0 +17521,38,263.5,15,0.0 +17521,62,49.3,19,0.0 +17521,36,19,29,0.0 +17521,77,13,4,0.0 +17521,58,13.25,30,0.0 +17521,29,123.79,23,0.0 +17521,51,53,9,0.0 +17521,64,33.25,39,0.0 +17521,6,25,46,0.0 +17521,2,19,29,0.0 +17521,34,14,40,0.0 +17521,5,21.35,24,0.0 +17521,71,21.5,10,0.0 +17521,14,23.25,42,0.0 +17521,22,21,19,0.0 +17521,15,15.5,41,0.0 +17521,66,17,45,0.0 +17521,3,10,30,0.0 +17521,16,17.45,27,0.0 +17521,21,10,28,0.0 +17521,46,12,26,0.0 +17521,12,38,8,0.0 +17521,48,12.75,12,0.0 +17521,39,18,25,0.0 +17521,57,19.5,18,0.0 +17521,41,9.65,28,0.0 +17521,35,18,10,0.0 +17521,52,7,20,0.0 +17521,55,24,21,0.0 +17521,60,34,32,0.0 +17521,33,2.5,48,0.0 +17521,32,32,1,0.0 +17521,20,81,47,0.0 +17521,73,15,26,0.0 +17521,11,21,9,0.0 +17521,56,38,1,0.0 +17521,23,9,10,0.0 +17521,44,19.45,48,0.0 +17521,1,18,7,0.0 +17521,10,31,3,0.0 +17521,40,18.4,46,0.0 +17521,7,30,22,0.0 +17521,68,12.5,23,0.0 +17521,75,7.75,24,0.0 +17521,54,7.45,21,0.0 +17522,2,19,14,0.0 +17522,68,12.5,13,0.0 +17522,15,15.5,34,0.0 +17522,74,10,4,0.0 +17522,67,14,4,0.0 +17522,73,15,12,0.0 +17522,18,62.5,50,0.0 +17522,66,17,27,0.0 +17522,42,14,14,0.0 +17522,22,21,33,0.0 +17522,12,38,10,0.0 +17522,56,38,19,0.0 +17522,9,97,48,0.0 +17522,52,7,7,0.0 +17522,3,10,5,0.0 +17522,37,26,23,0.0 +17522,63,43.9,23,0.0 +17522,76,18,7,0.0 +17522,70,15,21,0.0 +17522,7,30,13,0.0 +17522,39,18,37,0.0 +17522,30,25.89,21,0.0 +17522,65,21.05,3,0.0 +17522,10,31,7,0.0 +17522,45,9.5,22,0.0 +17522,25,14,34,0.0 +17522,1,18,23,0.0 +17522,26,31.23,23,0.0 +17522,33,2.5,38,0.0 +17522,19,9.2,13,0.0 +17522,50,16.25,24,0.0 +17522,17,39,20,0.0 +17522,51,53,30,0.0 +17522,11,21,6,0.0 +17522,6,25,4,0.0 +17522,28,45.6,19,0.0 +17523,61,28.5,25,0.0 +17523,62,49.3,12,0.0 +17523,21,10,25,0.0 +17523,74,10,19,0.0 +17523,19,9.2,19,0.0 +17523,41,9.65,28,0.0 +17523,31,12.5,35,0.0 +17523,68,12.5,30,0.0 +17523,28,45.6,6,0.0 +17523,2,19,13,0.0 +17523,25,14,49,0.0 +17523,26,31.23,39,0.0 +17523,58,13.25,35,0.0 +17523,15,15.5,8,0.0 +17523,67,14,40,0.0 +17523,20,81,24,0.0 +17523,9,97,41,0.0 +17523,38,263.5,9,0.0 +17523,45,9.5,35,0.0 +17523,7,30,16,0.0 +17523,66,17,11,0.0 +17523,75,7.75,25,0.0 +17523,56,38,16,0.0 +17523,24,4.5,28,0.0 +17523,69,36,50,0.0 +17523,5,21.35,17,0.0 +17523,8,40,23,0.0 +17523,18,62.5,3,0.0 +17523,76,18,1,0.0 +17523,71,21.5,43,0.0 +17523,10,31,46,0.0 +17523,6,25,5,0.0 +17523,36,19,42,0.0 +17523,53,32.8,37,0.0 +17523,13,6,7,0.0 +17523,50,16.25,5,0.0 +17523,49,20,44,0.0 +17523,12,38,21,0.0 +17523,51,53,5,0.0 +17523,46,12,35,0.0 +17523,70,15,1,0.0 +17523,14,23.25,13,0.0 +17523,1,18,41,0.0 +17523,39,18,7,0.0 +17523,65,21.05,36,0.0 +17523,32,32,30,0.0 +17523,47,9.5,43,0.0 +17523,27,43.9,43,0.0 +17523,23,9,34,0.0 +17523,16,17.45,13,0.0 +17523,37,26,22,0.0 +17523,59,55,34,0.0 +17523,64,33.25,50,0.0 +17523,22,21,2,0.0 +17523,52,7,43,0.0 +17523,3,10,35,0.0 +17523,11,21,50,0.0 +17523,77,13,17,0.0 +17523,34,14,5,0.0 +17523,57,19.5,1,0.0 +17523,30,25.89,44,0.0 +17523,40,18.4,3,0.0 +17523,42,14,12,0.0 +17523,33,2.5,2,0.0 +17523,55,24,38,0.0 +17523,60,34,10,0.0 +17523,72,34.8,33,0.0 +17523,17,39,43,0.0 +17523,48,12.75,30,0.0 +17524,28,45.6,14,0.0 +17524,29,123.79,23,0.0 +17524,25,14,32,0.0 +17524,46,12,11,0.0 +17524,33,2.5,22,0.0 +17524,5,21.35,37,0.0 +17524,56,38,49,0.0 +17524,39,18,10,0.0 +17524,13,6,39,0.0 +17524,17,39,13,0.0 +17524,62,49.3,41,0.0 +17524,26,31.23,27,0.0 +17524,9,97,15,0.0 +17524,64,33.25,35,0.0 +17524,20,81,18,0.0 +17524,16,17.45,27,0.0 +17524,71,21.5,14,0.0 +17524,18,62.5,2,0.0 +17524,32,32,29,0.0 +17524,41,9.65,28,0.0 +17524,63,43.9,33,0.0 +17524,19,9.2,50,0.0 +17524,4,22,43,0.0 +17524,12,38,15,0.0 +17524,52,7,40,0.0 +17524,6,25,33,0.0 +17524,72,34.8,36,0.0 +17524,70,15,46,0.0 +17524,48,12.75,16,0.0 +17524,43,46,20,0.0 +17524,53,32.8,41,0.0 +17524,36,19,45,0.0 +17524,77,13,37,0.0 +17524,38,263.5,37,0.0 +17524,24,4.5,32,0.0 +17524,45,9.5,4,0.0 +17524,21,10,10,0.0 +17524,37,26,33,0.0 +17524,11,21,32,0.0 +17524,51,53,13,0.0 +17524,35,18,14,0.0 +17524,73,15,16,0.0 +17524,67,14,49,0.0 +17524,40,18.4,36,0.0 +17524,65,21.05,23,0.0 +17524,7,30,30,0.0 +17524,57,19.5,28,0.0 +17525,37,26,41,0.0 +17525,23,9,13,0.0 +17525,21,10,7,0.0 +17525,4,22,34,0.0 +17525,11,21,25,0.0 +17525,30,25.89,7,0.0 +17525,17,39,6,0.0 +17525,36,19,42,0.0 +17525,43,46,5,0.0 +17525,14,23.25,2,0.0 +17525,71,21.5,27,0.0 +17525,44,19.45,14,0.0 +17525,52,7,50,0.0 +17525,29,123.79,12,0.0 +17525,49,20,20,0.0 +17525,13,6,35,0.0 +17525,22,21,27,0.0 +17525,40,18.4,27,0.0 +17525,47,9.5,32,0.0 +17525,56,38,21,0.0 +17525,57,19.5,16,0.0 +17525,35,18,48,0.0 +17525,20,81,35,0.0 +17525,3,10,24,0.0 +17525,5,21.35,13,0.0 +17525,28,45.6,40,0.0 +17525,48,12.75,19,0.0 +17525,7,30,43,0.0 +17525,24,4.5,50,0.0 +17525,74,10,37,0.0 +17525,61,28.5,16,0.0 +17525,55,24,26,0.0 +17525,62,49.3,1,0.0 +17525,63,43.9,42,0.0 +17525,19,9.2,13,0.0 +17525,68,12.5,45,0.0 +17525,6,25,45,0.0 +17525,34,14,12,0.0 +17525,75,7.75,47,0.0 +17525,41,9.65,19,0.0 +17525,76,18,42,0.0 +17525,38,263.5,50,0.0 +17525,66,17,42,0.0 +17525,16,17.45,5,0.0 +17525,8,40,28,0.0 +17525,26,31.23,10,0.0 +17525,53,32.8,29,0.0 +17525,73,15,39,0.0 +17525,15,15.5,49,0.0 +17525,2,19,7,0.0 +17525,9,97,49,0.0 +17525,59,55,36,0.0 +17525,65,21.05,20,0.0 +17525,31,12.5,1,0.0 +17525,69,36,5,0.0 +17525,27,43.9,48,0.0 +17525,51,53,21,0.0 +17525,77,13,28,0.0 +17525,12,38,49,0.0 +17525,45,9.5,33,0.0 +17525,10,31,6,0.0 +17525,72,34.8,10,0.0 +17525,18,62.5,17,0.0 +17525,46,12,31,0.0 +17525,1,18,22,0.0 +17525,32,32,25,0.0 +17525,67,14,42,0.0 +17525,64,33.25,37,0.0 +17525,25,14,37,0.0 +17525,50,16.25,20,0.0 +17525,58,13.25,29,0.0 +17525,39,18,30,0.0 +17525,33,2.5,31,0.0 +17525,60,34,16,0.0 +17525,42,14,25,0.0 +17525,54,7.45,33,0.0 +17525,70,15,33,0.0 +17526,53,32.8,39,0.0 +17526,74,10,46,0.0 +17526,31,12.5,41,0.0 +17526,36,19,31,0.0 +17526,45,9.5,50,0.0 +17526,17,39,34,0.0 +17526,55,24,40,0.0 +17526,56,38,41,0.0 +17526,75,7.75,11,0.0 +17526,44,19.45,49,0.0 +17526,68,12.5,1,0.0 +17526,12,38,43,0.0 +17526,29,123.79,49,0.0 +17526,3,10,8,0.0 +17526,69,36,25,0.0 +17526,72,34.8,9,0.0 +17526,32,32,18,0.0 +17526,38,263.5,40,0.0 +17526,62,49.3,28,0.0 +17526,61,28.5,24,0.0 +17526,63,43.9,37,0.0 +17526,48,12.75,41,0.0 +17526,66,17,13,0.0 +17526,13,6,19,0.0 +17526,47,9.5,42,0.0 +17526,10,31,13,0.0 +17526,26,31.23,32,0.0 +17526,9,97,31,0.0 +17526,54,7.45,38,0.0 +17526,16,17.45,45,0.0 +17526,59,55,36,0.0 +17526,67,14,13,0.0 +17526,21,10,21,0.0 +17526,52,7,7,0.0 +17526,15,15.5,24,0.0 +17526,77,13,26,0.0 +17526,20,81,44,0.0 +17526,34,14,17,0.0 +17526,1,18,46,0.0 +17526,4,22,28,0.0 +17526,70,15,37,0.0 +17526,6,25,36,0.0 +17526,73,15,30,0.0 +17526,2,19,36,0.0 +17526,11,21,39,0.0 +17526,7,30,42,0.0 +17526,46,12,3,0.0 +17526,43,46,5,0.0 +17526,5,21.35,49,0.0 +17526,28,45.6,12,0.0 +17526,14,23.25,20,0.0 +17526,64,33.25,37,0.0 +17526,42,14,50,0.0 +17526,58,13.25,4,0.0 +17526,49,20,35,0.0 +17526,57,19.5,6,0.0 +17526,19,9.2,16,0.0 +17526,39,18,22,0.0 +17526,40,18.4,40,0.0 +17526,18,62.5,24,0.0 +17527,72,34.8,18,0.0 +17527,50,16.25,8,0.0 +17527,56,38,37,0.0 +17527,17,39,11,0.0 +17527,28,45.6,37,0.0 +17527,25,14,36,0.0 +17527,31,12.5,3,0.0 +17527,77,13,29,0.0 +17527,27,43.9,26,0.0 +17527,26,31.23,17,0.0 +17527,4,22,40,0.0 +17527,36,19,38,0.0 +17527,22,21,27,0.0 +17527,1,18,2,0.0 +17527,71,21.5,28,0.0 +17527,23,9,23,0.0 +17527,21,10,39,0.0 +17527,30,25.89,9,0.0 +17527,58,13.25,42,0.0 +17527,24,4.5,7,0.0 +17527,8,40,23,0.0 +17527,5,21.35,1,0.0 +17527,16,17.45,24,0.0 +17527,68,12.5,17,0.0 +17527,57,19.5,47,0.0 +17527,34,14,19,0.0 +17527,55,24,34,0.0 +17527,53,32.8,41,0.0 +17527,43,46,16,0.0 +17527,20,81,50,0.0 +17527,15,15.5,37,0.0 +17527,35,18,12,0.0 +17528,22,21,26,0.0 +17528,41,9.65,13,0.0 +17528,36,19,5,0.0 +17528,75,7.75,34,0.0 +17528,57,19.5,2,0.0 +17528,26,31.23,40,0.0 +17528,24,4.5,14,0.0 +17528,44,19.45,7,0.0 +17528,63,43.9,45,0.0 +17528,43,46,11,0.0 +17528,19,9.2,9,0.0 +17528,18,62.5,15,0.0 +17528,69,36,30,0.0 +17528,23,9,19,0.0 +17528,77,13,50,0.0 +17528,47,9.5,21,0.0 +17528,42,14,37,0.0 +17528,25,14,19,0.0 +17528,7,30,46,0.0 +17528,21,10,7,0.0 +17528,1,18,30,0.0 +17528,76,18,3,0.0 +17528,17,39,31,0.0 +17529,11,21,14,0.0 +17529,75,7.75,8,0.0 +17529,3,10,35,0.0 +17529,50,16.25,24,0.0 +17530,63,43.9,12,0.0 +17530,61,28.5,16,0.0 +17530,19,9.2,17,0.0 +17530,49,20,33,0.0 +17530,2,19,7,0.0 +17530,11,21,44,0.0 +17530,23,9,24,0.0 +17530,71,21.5,34,0.0 +17530,34,14,45,0.0 +17530,41,9.65,10,0.0 +17530,13,6,35,0.0 +17530,57,19.5,46,0.0 +17530,46,12,9,0.0 +17530,35,18,38,0.0 +17530,40,18.4,39,0.0 +17530,54,7.45,18,0.0 +17530,50,16.25,48,0.0 +17530,58,13.25,45,0.0 +17530,66,17,1,0.0 +17530,14,23.25,40,0.0 +17530,15,15.5,14,0.0 +17530,43,46,47,0.0 +17530,68,12.5,32,0.0 +17530,27,43.9,46,0.0 +17530,7,30,13,0.0 +17530,65,21.05,29,0.0 +17530,47,9.5,39,0.0 +17530,20,81,36,0.0 +17530,31,12.5,16,0.0 +17530,3,10,49,0.0 +17530,33,2.5,4,0.0 +17530,37,26,5,0.0 +17530,62,49.3,44,0.0 +17530,24,4.5,28,0.0 +17530,48,12.75,36,0.0 +17530,75,7.75,44,0.0 +17530,73,15,27,0.0 +17530,17,39,3,0.0 +17530,70,15,31,0.0 +17530,44,19.45,23,0.0 +17530,38,263.5,33,0.0 +17530,74,10,43,0.0 +17530,39,18,26,0.0 +17530,67,14,27,0.0 +17530,60,34,50,0.0 +17530,42,14,11,0.0 +17530,64,33.25,42,0.0 +17530,59,55,39,0.0 +17531,71,21.5,22,0.0 +17531,25,14,37,0.0 +17531,52,7,32,0.0 +17531,32,32,11,0.0 +17531,8,40,47,0.0 +17531,31,12.5,6,0.0 +17531,27,43.9,29,0.0 +17531,47,9.5,47,0.0 +17531,43,46,6,0.0 +17531,5,21.35,48,0.0 +17531,69,36,30,0.0 +17531,54,7.45,36,0.0 +17531,7,30,34,0.0 +17531,67,14,46,0.0 +17531,70,15,42,0.0 +17531,12,38,23,0.0 +17531,39,18,36,0.0 +17531,22,21,32,0.0 +17531,50,16.25,43,0.0 +17531,24,4.5,46,0.0 +17531,62,49.3,35,0.0 +17531,37,26,23,0.0 +17531,51,53,41,0.0 +17531,23,9,18,0.0 +17531,56,38,18,0.0 +17531,17,39,32,0.0 +17531,63,43.9,34,0.0 +17531,10,31,20,0.0 +17531,73,15,47,0.0 +17531,2,19,19,0.0 +17531,42,14,11,0.0 +17531,64,33.25,28,0.0 +17531,30,25.89,47,0.0 +17531,19,9.2,23,0.0 +17531,60,34,1,0.0 +17531,28,45.6,39,0.0 +17531,14,23.25,8,0.0 +17531,74,10,48,0.0 +17531,48,12.75,25,0.0 +17531,75,7.75,41,0.0 +17531,36,19,38,0.0 +17531,58,13.25,10,0.0 +17531,57,19.5,39,0.0 +17531,46,12,19,0.0 +17531,66,17,48,0.0 +17531,55,24,18,0.0 +17531,13,6,40,0.0 +17531,77,13,46,0.0 +17531,40,18.4,34,0.0 +17531,29,123.79,6,0.0 +17531,76,18,18,0.0 +17531,6,25,20,0.0 +17531,11,21,31,0.0 +17531,1,18,23,0.0 +17531,20,81,21,0.0 +17531,72,34.8,30,0.0 +17532,77,13,41,0.0 +17532,16,17.45,18,0.0 +17532,28,45.6,10,0.0 +17532,63,43.9,9,0.0 +17532,13,6,40,0.0 +17532,12,38,35,0.0 +17532,25,14,37,0.0 +17532,43,46,48,0.0 +17532,31,12.5,39,0.0 +17532,33,2.5,33,0.0 +17532,22,21,14,0.0 +17532,52,7,9,0.0 +17532,47,9.5,40,0.0 +17532,54,7.45,23,0.0 +17532,3,10,43,0.0 +17532,7,30,12,0.0 +17532,36,19,12,0.0 +17532,67,14,48,0.0 +17532,27,43.9,16,0.0 +17532,68,12.5,33,0.0 +17532,42,14,40,0.0 +17532,58,13.25,11,0.0 +17532,30,25.89,27,0.0 +17532,69,36,14,0.0 +17532,72,34.8,44,0.0 +17532,24,4.5,31,0.0 +17532,35,18,15,0.0 +17532,55,24,8,0.0 +17532,73,15,47,0.0 +17532,37,26,4,0.0 +17532,75,7.75,19,0.0 +17532,60,34,12,0.0 +17532,50,16.25,38,0.0 +17532,29,123.79,28,0.0 +17532,19,9.2,10,0.0 +17532,2,19,22,0.0 +17532,15,15.5,12,0.0 +17532,14,23.25,16,0.0 +17532,76,18,16,0.0 +17532,5,21.35,3,0.0 +17532,66,17,46,0.0 +17532,21,10,50,0.0 +17532,57,19.5,8,0.0 +17532,70,15,7,0.0 +17532,18,62.5,8,0.0 +17532,32,32,21,0.0 +17532,51,53,10,0.0 +17532,46,12,41,0.0 +17532,26,31.23,7,0.0 +17532,20,81,42,0.0 +17532,4,22,16,0.0 +17532,6,25,16,0.0 +17532,61,28.5,35,0.0 +17532,65,21.05,23,0.0 +17532,53,32.8,38,0.0 +17532,56,38,7,0.0 +17532,1,18,37,0.0 +17532,40,18.4,47,0.0 +17532,64,33.25,24,0.0 +17532,38,263.5,17,0.0 +17532,62,49.3,8,0.0 +17532,44,19.45,46,0.0 +17532,59,55,45,0.0 +17532,17,39,31,0.0 +17532,8,40,10,0.0 +17532,49,20,21,0.0 +17532,10,31,9,0.0 +17532,74,10,17,0.0 +17532,45,9.5,25,0.0 +17532,9,97,13,0.0 +17532,48,12.75,32,0.0 +17532,23,9,43,0.0 +17532,11,21,42,0.0 +17532,41,9.65,4,0.0 +17533,67,14,40,0.0 +17533,37,26,8,0.0 +17533,75,7.75,30,0.0 +17533,38,263.5,23,0.0 +17533,71,21.5,7,0.0 +17533,28,45.6,23,0.0 +17533,29,123.79,48,0.0 +17533,47,9.5,31,0.0 +17533,64,33.25,44,0.0 +17533,20,81,34,0.0 +17533,22,21,46,0.0 +17533,33,2.5,24,0.0 +17533,57,19.5,28,0.0 +17533,58,13.25,14,0.0 +17533,39,18,43,0.0 +17533,35,18,39,0.0 +17533,14,23.25,18,0.0 +17533,42,14,3,0.0 +17533,19,9.2,9,0.0 +17533,46,12,29,0.0 +17533,51,53,35,0.0 +17533,68,12.5,36,0.0 +17533,56,38,29,0.0 +17533,24,4.5,37,0.0 +17533,63,43.9,41,0.0 +17533,2,19,50,0.0 +17533,31,12.5,12,0.0 +17533,70,15,28,0.0 +17533,25,14,21,0.0 +17533,15,15.5,26,0.0 +17533,11,21,33,0.0 +17533,6,25,5,0.0 +17533,17,39,20,0.0 +17533,8,40,4,0.0 +17533,73,15,48,0.0 +17534,48,12.75,41,0.0 +17534,32,32,20,0.0 +17534,56,38,9,0.0 +17534,25,14,18,0.0 +17534,21,10,34,0.0 +17534,1,18,32,0.0 +17534,12,38,30,0.0 +17534,15,15.5,49,0.0 +17534,63,43.9,23,0.0 +17534,67,14,19,0.0 +17534,36,19,32,0.0 +17534,19,9.2,22,0.0 +17534,61,28.5,18,0.0 +17534,2,19,49,0.0 +17534,52,7,7,0.0 +17534,11,21,44,0.0 +17534,44,19.45,15,0.0 +17534,10,31,41,0.0 +17534,51,53,7,0.0 +17534,34,14,37,0.0 +17534,70,15,44,0.0 +17534,66,17,50,0.0 +17534,39,18,7,0.0 +17534,46,12,4,0.0 +17534,75,7.75,35,0.0 +17534,45,9.5,11,0.0 +17534,62,49.3,46,0.0 +17534,13,6,24,0.0 +17534,43,46,4,0.0 +17534,72,34.8,27,0.0 +17534,17,39,30,0.0 +17534,28,45.6,8,0.0 +17534,38,263.5,20,0.0 +17534,65,21.05,12,0.0 +17534,64,33.25,4,0.0 +17534,26,31.23,41,0.0 +17534,27,43.9,4,0.0 +17534,54,7.45,13,0.0 +17534,57,19.5,21,0.0 +17534,59,55,27,0.0 +17535,12,38,30,0.0 +17535,57,19.5,2,0.0 +17535,24,4.5,17,0.0 +17535,15,15.5,8,0.0 +17535,75,7.75,9,0.0 +17535,16,17.45,9,0.0 +17535,77,13,21,0.0 +17535,53,32.8,15,0.0 +17535,61,28.5,9,0.0 +17535,11,21,49,0.0 +17535,19,9.2,11,0.0 +17535,49,20,27,0.0 +17535,34,14,39,0.0 +17535,71,21.5,33,0.0 +17535,66,17,32,0.0 +17535,33,2.5,30,0.0 +17535,23,9,14,0.0 +17535,76,18,25,0.0 +17535,36,19,39,0.0 +17535,70,15,42,0.0 +17535,1,18,45,0.0 +17536,17,39,3,0.0 +17536,60,34,40,0.0 +17536,63,43.9,30,0.0 +17536,47,9.5,22,0.0 +17536,40,18.4,39,0.0 +17536,44,19.45,40,0.0 +17536,42,14,14,0.0 +17536,27,43.9,30,0.0 +17536,13,6,32,0.0 +17536,9,97,2,0.0 +17536,22,21,42,0.0 +17536,72,34.8,43,0.0 +17536,39,18,18,0.0 +17536,23,9,44,0.0 +17536,41,9.65,18,0.0 +17536,48,12.75,14,0.0 +17536,12,38,24,0.0 +17536,2,19,41,0.0 +17536,7,30,37,0.0 +17536,51,53,16,0.0 +17536,70,15,36,0.0 +17536,26,31.23,45,0.0 +17536,43,46,41,0.0 +17536,19,9.2,13,0.0 +17536,20,81,9,0.0 +17536,68,12.5,39,0.0 +17537,74,10,19,0.0 +17537,48,12.75,33,0.0 +17537,17,39,31,0.0 +17537,50,16.25,8,0.0 +17537,55,24,47,0.0 +17537,26,31.23,4,0.0 +17537,7,30,43,0.0 +17537,12,38,46,0.0 +17537,34,14,7,0.0 +17537,49,20,25,0.0 +17537,58,13.25,31,0.0 +17537,59,55,13,0.0 +17537,28,45.6,41,0.0 +17537,66,17,40,0.0 +17537,3,10,19,0.0 +17537,32,32,22,0.0 +17537,56,38,22,0.0 +17537,62,49.3,7,0.0 +17537,76,18,23,0.0 +17537,39,18,22,0.0 +17537,6,25,34,0.0 +17537,19,9.2,41,0.0 +17537,24,4.5,22,0.0 +17537,72,34.8,3,0.0 +17537,54,7.45,30,0.0 +17537,47,9.5,6,0.0 +17537,1,18,16,0.0 +17537,18,62.5,50,0.0 +17537,77,13,36,0.0 +17537,10,31,32,0.0 +17537,27,43.9,9,0.0 +17537,35,18,37,0.0 +17537,33,2.5,30,0.0 +17537,69,36,46,0.0 +17537,41,9.65,50,0.0 +17537,14,23.25,7,0.0 +17537,36,19,44,0.0 +17537,75,7.75,19,0.0 +17537,61,28.5,26,0.0 +17537,71,21.5,25,0.0 +17537,20,81,34,0.0 +17537,16,17.45,15,0.0 +17538,6,25,27,0.0 +17538,14,23.25,28,0.0 +17538,65,21.05,4,0.0 +17538,7,30,11,0.0 +17538,4,22,34,0.0 +17538,48,12.75,30,0.0 +17538,61,28.5,31,0.0 +17538,23,9,25,0.0 +17538,52,7,40,0.0 +17538,39,18,9,0.0 +17538,12,38,15,0.0 +17538,68,12.5,2,0.0 +17538,3,10,32,0.0 +17538,71,21.5,24,0.0 +17538,16,17.45,50,0.0 +17538,29,123.79,26,0.0 +17538,58,13.25,29,0.0 +17538,32,32,10,0.0 +17538,54,7.45,38,0.0 +17538,34,14,48,0.0 +17538,8,40,30,0.0 +17538,5,21.35,47,0.0 +17538,33,2.5,35,0.0 +17538,49,20,16,0.0 +17538,9,97,11,0.0 +17538,41,9.65,18,0.0 +17539,4,22,46,0.0 +17539,2,19,34,0.0 +17539,61,28.5,43,0.0 +17539,12,38,7,0.0 +17539,55,24,22,0.0 +17539,53,32.8,32,0.0 +17539,35,18,15,0.0 +17539,75,7.75,5,0.0 +17539,7,30,44,0.0 +17539,39,18,33,0.0 +17539,24,4.5,28,0.0 +17539,62,49.3,47,0.0 +17539,32,32,18,0.0 +17539,46,12,23,0.0 +17539,5,21.35,45,0.0 +17539,72,34.8,48,0.0 +17539,23,9,22,0.0 +17539,27,43.9,43,0.0 +17539,74,10,27,0.0 +17539,59,55,39,0.0 +17539,13,6,46,0.0 +17539,57,19.5,48,0.0 +17539,77,13,4,0.0 +17539,45,9.5,3,0.0 +17539,33,2.5,45,0.0 +17539,38,263.5,23,0.0 +17539,20,81,18,0.0 +17539,64,33.25,7,0.0 +17539,65,21.05,20,0.0 +17539,31,12.5,36,0.0 +17539,60,34,39,0.0 +17539,16,17.45,11,0.0 +17539,36,19,5,0.0 +17539,42,14,43,0.0 +17539,67,14,35,0.0 +17539,19,9.2,49,0.0 +17539,10,31,43,0.0 +17539,25,14,34,0.0 +17539,22,21,16,0.0 +17539,41,9.65,5,0.0 +17539,18,62.5,41,0.0 +17539,17,39,18,0.0 +17539,29,123.79,44,0.0 +17540,58,13.25,24,0.0 +17540,22,21,34,0.0 +17540,46,12,31,0.0 +17540,44,19.45,46,0.0 +17540,31,12.5,9,0.0 +17540,5,21.35,40,0.0 +17540,65,21.05,17,0.0 +17540,49,20,39,0.0 +17540,23,9,43,0.0 +17540,55,24,21,0.0 +17540,72,34.8,42,0.0 +17540,51,53,23,0.0 +17540,64,33.25,27,0.0 +17540,3,10,37,0.0 +17540,54,7.45,25,0.0 +17540,71,21.5,14,0.0 +17540,19,9.2,6,0.0 +17540,39,18,5,0.0 +17540,4,22,38,0.0 +17540,53,32.8,36,0.0 +17540,35,18,11,0.0 +17540,61,28.5,49,0.0 +17540,63,43.9,10,0.0 +17540,12,38,42,0.0 +17540,16,17.45,36,0.0 +17540,57,19.5,50,0.0 +17540,17,39,20,0.0 +17540,69,36,49,0.0 +17540,41,9.65,49,0.0 +17540,76,18,8,0.0 +17540,13,6,48,0.0 +17540,36,19,30,0.0 +17540,6,25,24,0.0 +17540,48,12.75,6,0.0 +17540,67,14,6,0.0 +17540,18,62.5,44,0.0 +17540,27,43.9,14,0.0 +17540,38,263.5,43,0.0 +17540,11,21,21,0.0 +17540,30,25.89,2,0.0 +17540,26,31.23,26,0.0 +17540,66,17,44,0.0 +17540,47,9.5,11,0.0 +17540,56,38,37,0.0 +17540,42,14,48,0.0 +17540,68,12.5,34,0.0 +17540,20,81,37,0.0 +17540,8,40,31,0.0 +17540,60,34,26,0.0 +17540,1,18,32,0.0 +17540,33,2.5,47,0.0 +17540,45,9.5,29,0.0 +17540,21,10,50,0.0 +17540,73,15,23,0.0 +17540,28,45.6,17,0.0 +17540,2,19,48,0.0 +17540,77,13,29,0.0 +17540,70,15,50,0.0 +17540,7,30,47,0.0 +17540,40,18.4,33,0.0 +17540,24,4.5,26,0.0 +17540,59,55,17,0.0 +17540,14,23.25,16,0.0 +17540,75,7.75,50,0.0 +17540,74,10,12,0.0 +17540,9,97,11,0.0 +17540,25,14,37,0.0 +17540,37,26,5,0.0 +17540,52,7,18,0.0 +17540,32,32,21,0.0 +17540,34,14,48,0.0 +17540,29,123.79,32,0.0 +17540,62,49.3,11,0.0 +17540,43,46,5,0.0 +17540,10,31,15,0.0 +17541,74,10,15,0.0 +17541,11,21,5,0.0 +17541,48,12.75,3,0.0 +17541,43,46,40,0.0 +17541,36,19,8,0.0 +17541,77,13,43,0.0 +17541,13,6,9,0.0 +17541,53,32.8,32,0.0 +17541,24,4.5,27,0.0 +17541,20,81,27,0.0 +17541,21,10,34,0.0 +17541,49,20,2,0.0 +17541,1,18,17,0.0 +17541,38,263.5,4,0.0 +17541,66,17,47,0.0 +17541,34,14,22,0.0 +17541,14,23.25,21,0.0 +17541,59,55,50,0.0 +17541,46,12,47,0.0 +17541,16,17.45,23,0.0 +17541,28,45.6,2,0.0 +17541,26,31.23,14,0.0 +17541,7,30,11,0.0 +17541,75,7.75,2,0.0 +17541,4,22,46,0.0 +17541,76,18,44,0.0 +17541,41,9.65,49,0.0 +17541,35,18,10,0.0 +17541,39,18,47,0.0 +17541,8,40,38,0.0 +17541,40,18.4,42,0.0 +17541,5,21.35,40,0.0 +17541,44,19.45,37,0.0 +17541,57,19.5,22,0.0 +17541,23,9,31,0.0 +17541,61,28.5,37,0.0 +17541,2,19,36,0.0 +17541,69,36,25,0.0 +17541,32,32,47,0.0 +17541,56,38,28,0.0 +17541,67,14,35,0.0 +17541,31,12.5,12,0.0 +17541,50,16.25,23,0.0 +17541,22,21,13,0.0 +17541,10,31,33,0.0 +17541,51,53,17,0.0 +17541,54,7.45,18,0.0 +17541,12,38,37,0.0 +17541,9,97,10,0.0 +17541,3,10,28,0.0 +17541,70,15,49,0.0 +17542,5,21.35,17,0.0 +17542,8,40,40,0.0 +17542,23,9,20,0.0 +17542,4,22,3,0.0 +17542,57,19.5,26,0.0 +17542,13,6,48,0.0 +17542,32,32,5,0.0 +17542,76,18,38,0.0 +17542,33,2.5,3,0.0 +17542,49,20,7,0.0 +17542,25,14,1,0.0 +17542,64,33.25,35,0.0 +17542,39,18,14,0.0 +17542,14,23.25,6,0.0 +17542,56,38,32,0.0 +17542,67,14,14,0.0 +17542,73,15,49,0.0 +17542,2,19,14,0.0 +17542,42,14,22,0.0 +17542,68,12.5,49,0.0 +17542,38,263.5,15,0.0 +17542,27,43.9,49,0.0 +17542,36,19,6,0.0 +17543,72,34.8,42,0.0 +17543,16,17.45,14,0.0 +17543,75,7.75,18,0.0 +17543,29,123.79,12,0.0 +17543,74,10,38,0.0 +17543,32,32,35,0.0 +17543,24,4.5,17,0.0 +17544,5,21.35,36,0.0 +17544,6,25,10,0.0 +17544,25,14,49,0.0 +17544,3,10,35,0.0 +17544,9,97,14,0.0 +17544,44,19.45,37,0.0 +17544,38,263.5,31,0.0 +17544,31,12.5,34,0.0 +17544,66,17,20,0.0 +17544,17,39,20,0.0 +17544,67,14,16,0.0 +17544,41,9.65,19,0.0 +17544,26,31.23,49,0.0 +17545,24,4.5,41,0.0 +17545,30,25.89,47,0.0 +17545,50,16.25,10,0.0 +17545,58,13.25,33,0.0 +17545,11,21,24,0.0 +17545,17,39,5,0.0 +17545,52,7,15,0.0 +17545,8,40,49,0.0 +17545,34,14,31,0.0 +17545,10,31,5,0.0 +17545,53,32.8,47,0.0 +17545,9,97,27,0.0 +17545,75,7.75,46,0.0 +17545,28,45.6,31,0.0 +17545,46,12,50,0.0 +17545,54,7.45,42,0.0 +17545,71,21.5,9,0.0 +17545,45,9.5,9,0.0 +17545,57,19.5,29,0.0 +17545,40,18.4,17,0.0 +17545,68,12.5,7,0.0 +17545,2,19,9,0.0 +17545,37,26,14,0.0 +17545,72,34.8,30,0.0 +17545,33,2.5,12,0.0 +17545,5,21.35,24,0.0 +17545,56,38,47,0.0 +17545,73,15,29,0.0 +17545,44,19.45,44,0.0 +17545,18,62.5,45,0.0 +17545,67,14,39,0.0 +17545,23,9,7,0.0 +17545,61,28.5,47,0.0 +17545,7,30,3,0.0 +17545,76,18,48,0.0 +17545,6,25,31,0.0 +17545,1,18,5,0.0 +17545,39,18,49,0.0 +17545,35,18,3,0.0 +17545,12,38,12,0.0 +17545,4,22,32,0.0 +17545,63,43.9,46,0.0 +17545,19,9.2,49,0.0 +17545,65,21.05,3,0.0 +17545,38,263.5,43,0.0 +17545,77,13,28,0.0 +17545,69,36,9,0.0 +17545,59,55,27,0.0 +17545,47,9.5,14,0.0 +17545,42,14,16,0.0 +17545,21,10,28,0.0 +17545,29,123.79,42,0.0 +17545,14,23.25,23,0.0 +17545,15,15.5,48,0.0 +17545,41,9.65,41,0.0 +17545,3,10,31,0.0 +17545,13,6,27,0.0 +17545,48,12.75,38,0.0 +17545,49,20,28,0.0 +17545,70,15,30,0.0 +17545,55,24,42,0.0 +17545,74,10,17,0.0 +17545,16,17.45,1,0.0 +17546,8,40,4,0.0 +17546,64,33.25,19,0.0 +17546,34,14,3,0.0 +17546,38,263.5,43,0.0 +17546,44,19.45,22,0.0 +17546,42,14,14,0.0 +17546,37,26,27,0.0 +17546,68,12.5,41,0.0 +17546,71,21.5,12,0.0 +17546,60,34,44,0.0 +17546,26,31.23,5,0.0 +17546,66,17,2,0.0 +17546,75,7.75,8,0.0 +17546,11,21,15,0.0 +17546,24,4.5,34,0.0 +17546,22,21,9,0.0 +17546,19,9.2,32,0.0 +17546,10,31,2,0.0 +17546,6,25,4,0.0 +17546,61,28.5,29,0.0 +17546,35,18,11,0.0 +17546,2,19,26,0.0 +17546,33,2.5,44,0.0 +17546,76,18,1,0.0 +17546,7,30,18,0.0 +17546,43,46,37,0.0 +17546,69,36,47,0.0 +17546,48,12.75,3,0.0 +17546,49,20,23,0.0 +17546,55,24,42,0.0 +17546,72,34.8,16,0.0 +17546,23,9,18,0.0 +17546,59,55,35,0.0 +17546,32,32,39,0.0 +17546,4,22,35,0.0 +17546,31,12.5,20,0.0 +17546,40,18.4,50,0.0 +17546,28,45.6,49,0.0 +17546,18,62.5,5,0.0 +17546,50,16.25,35,0.0 +17546,47,9.5,1,0.0 +17546,62,49.3,3,0.0 +17546,15,15.5,50,0.0 +17546,70,15,43,0.0 +17546,54,7.45,32,0.0 +17546,14,23.25,2,0.0 +17546,36,19,5,0.0 +17546,39,18,37,0.0 +17546,73,15,3,0.0 +17546,77,13,15,0.0 +17546,1,18,35,0.0 +17546,41,9.65,3,0.0 +17546,27,43.9,34,0.0 +17546,46,12,10,0.0 +17546,63,43.9,47,0.0 +17546,74,10,34,0.0 +17547,35,18,48,0.0 +17547,32,32,50,0.0 +17547,46,12,36,0.0 +17547,62,49.3,5,0.0 +17547,43,46,10,0.0 +17547,51,53,9,0.0 +17547,61,28.5,25,0.0 +17547,68,12.5,16,0.0 +17547,49,20,34,0.0 +17547,66,17,12,0.0 +17547,31,12.5,34,0.0 +17547,72,34.8,26,0.0 +17547,54,7.45,50,0.0 +17547,58,13.25,7,0.0 +17547,33,2.5,7,0.0 +17547,67,14,33,0.0 +17547,6,25,13,0.0 +17547,13,6,30,0.0 +17547,39,18,32,0.0 +17547,48,12.75,45,0.0 +17547,26,31.23,24,0.0 +17547,52,7,45,0.0 +17547,21,10,34,0.0 +17547,57,19.5,3,0.0 +17547,36,19,49,0.0 +17547,37,26,46,0.0 +17547,9,97,40,0.0 +17547,29,123.79,1,0.0 +17547,59,55,23,0.0 +17547,63,43.9,19,0.0 +17547,77,13,11,0.0 +17548,4,22,35,0.0 +17548,58,13.25,50,0.0 +17548,8,40,20,0.0 +17548,37,26,21,0.0 +17548,42,14,32,0.0 +17548,53,32.8,5,0.0 +17548,28,45.6,40,0.0 +17548,9,97,11,0.0 +17548,23,9,36,0.0 +17548,33,2.5,20,0.0 +17548,29,123.79,50,0.0 +17548,20,81,43,0.0 +17548,19,9.2,14,0.0 +17548,16,17.45,19,0.0 +17548,54,7.45,27,0.0 +17548,45,9.5,1,0.0 +17548,64,33.25,34,0.0 +17548,66,17,43,0.0 +17548,32,32,37,0.0 +17548,21,10,20,0.0 +17548,34,14,10,0.0 +17548,40,18.4,41,0.0 +17548,7,30,37,0.0 +17548,10,31,42,0.0 +17548,68,12.5,19,0.0 +17548,15,15.5,32,0.0 +17548,55,24,11,0.0 +17548,24,4.5,44,0.0 +17548,63,43.9,5,0.0 +17548,47,9.5,21,0.0 +17548,35,18,25,0.0 +17548,39,18,31,0.0 +17548,1,18,43,0.0 +17548,30,25.89,35,0.0 +17548,12,38,45,0.0 +17548,61,28.5,22,0.0 +17548,73,15,48,0.0 +17548,3,10,5,0.0 +17549,13,6,28,0.0 +17549,69,36,9,0.0 +17549,14,23.25,13,0.0 +17549,24,4.5,19,0.0 +17549,55,24,34,0.0 +17549,27,43.9,12,0.0 +17549,52,7,5,0.0 +17549,44,19.45,37,0.0 +17549,72,34.8,33,0.0 +17549,16,17.45,49,0.0 +17549,19,9.2,39,0.0 +17549,47,9.5,28,0.0 +17549,21,10,27,0.0 +17549,58,13.25,44,0.0 +17549,38,263.5,29,0.0 +17549,65,21.05,17,0.0 +17549,41,9.65,12,0.0 +17549,42,14,17,0.0 +17549,76,18,18,0.0 +17549,18,62.5,4,0.0 +17549,50,16.25,3,0.0 +17549,20,81,8,0.0 +17549,62,49.3,10,0.0 +17549,48,12.75,30,0.0 +17549,66,17,13,0.0 +17549,12,38,22,0.0 +17549,57,19.5,33,0.0 +17549,74,10,35,0.0 +17549,1,18,12,0.0 +17549,30,25.89,33,0.0 +17549,37,26,2,0.0 +17549,22,21,31,0.0 +17549,67,14,24,0.0 +17549,10,31,43,0.0 +17549,28,45.6,14,0.0 +17549,26,31.23,38,0.0 +17549,35,18,23,0.0 +17549,5,21.35,44,0.0 +17549,56,38,15,0.0 +17549,45,9.5,47,0.0 +17549,40,18.4,28,0.0 +17549,6,25,29,0.0 +17549,39,18,20,0.0 +17549,2,19,38,0.0 +17549,54,7.45,50,0.0 +17549,23,9,36,0.0 +17549,59,55,28,0.0 +17549,73,15,4,0.0 +17549,4,22,25,0.0 +17549,3,10,49,0.0 +17549,68,12.5,48,0.0 +17549,75,7.75,6,0.0 +17549,63,43.9,49,0.0 +17549,71,21.5,39,0.0 +17549,33,2.5,28,0.0 +17550,22,21,19,0.0 +17550,59,55,49,0.0 +17550,60,34,28,0.0 +17550,11,21,27,0.0 +17550,24,4.5,42,0.0 +17550,51,53,49,0.0 +17550,45,9.5,35,0.0 +17550,35,18,21,0.0 +17550,12,38,1,0.0 +17550,58,13.25,16,0.0 +17550,57,19.5,49,0.0 +17550,18,62.5,43,0.0 +17550,39,18,37,0.0 +17550,41,9.65,13,0.0 +17550,8,40,25,0.0 +17550,54,7.45,23,0.0 +17550,44,19.45,19,0.0 +17550,17,39,35,0.0 +17550,65,21.05,11,0.0 +17550,40,18.4,18,0.0 +17550,52,7,4,0.0 +17550,68,12.5,39,0.0 +17550,73,15,29,0.0 +17550,20,81,30,0.0 +17550,14,23.25,36,0.0 +17550,10,31,22,0.0 +17550,4,22,30,0.0 +17550,31,12.5,4,0.0 +17550,61,28.5,50,0.0 +17550,23,9,15,0.0 +17550,66,17,21,0.0 +17550,15,15.5,34,0.0 +17550,71,21.5,15,0.0 +17550,56,38,5,0.0 +17550,30,25.89,21,0.0 +17550,7,30,15,0.0 +17550,19,9.2,28,0.0 +17550,29,123.79,6,0.0 +17550,36,19,28,0.0 +17550,26,31.23,41,0.0 +17550,13,6,3,0.0 +17550,28,45.6,23,0.0 +17550,2,19,2,0.0 +17550,27,43.9,21,0.0 +17550,49,20,36,0.0 +17550,47,9.5,13,0.0 +17550,32,32,45,0.0 +17550,75,7.75,20,0.0 +17550,38,263.5,34,0.0 +17550,77,13,42,0.0 +17550,72,34.8,11,0.0 +17550,69,36,30,0.0 +17550,6,25,11,0.0 +17550,1,18,32,0.0 +17550,74,10,34,0.0 +17551,22,21,35,0.0 +17551,77,13,4,0.0 +17551,10,31,30,0.0 +17551,6,25,21,0.0 +17551,26,31.23,20,0.0 +17551,43,46,35,0.0 +17551,64,33.25,15,0.0 +17551,13,6,39,0.0 +17551,11,21,28,0.0 +17551,59,55,34,0.0 +17551,1,18,27,0.0 +17551,17,39,42,0.0 +17551,53,32.8,47,0.0 +17551,61,28.5,4,0.0 +17551,42,14,27,0.0 +17551,56,38,26,0.0 +17551,44,19.45,31,0.0 +17551,4,22,28,0.0 +17551,16,17.45,4,0.0 +17551,30,25.89,14,0.0 +17551,40,18.4,13,0.0 +17551,20,81,4,0.0 +17551,63,43.9,25,0.0 +17551,48,12.75,10,0.0 +17551,68,12.5,20,0.0 +17551,66,17,25,0.0 +17551,50,16.25,9,0.0 +17551,2,19,50,0.0 +17551,12,38,16,0.0 +17551,67,14,46,0.0 +17551,19,9.2,4,0.0 +17551,75,7.75,41,0.0 +17551,35,18,48,0.0 +17551,31,12.5,19,0.0 +17551,5,21.35,41,0.0 +17551,49,20,5,0.0 +17551,3,10,12,0.0 +17551,18,62.5,44,0.0 +17551,7,30,19,0.0 +17551,39,18,49,0.0 +17551,76,18,43,0.0 +17551,28,45.6,1,0.0 +17552,40,18.4,40,0.0 +17552,14,23.25,24,0.0 +17552,76,18,41,0.0 +17552,47,9.5,28,0.0 +17552,65,21.05,17,0.0 +17552,70,15,34,0.0 +17552,36,19,39,0.0 +17552,26,31.23,17,0.0 +17552,34,14,4,0.0 +17552,1,18,31,0.0 +17552,59,55,12,0.0 +17552,29,123.79,17,0.0 +17552,58,13.25,37,0.0 +17552,37,26,1,0.0 +17552,24,4.5,20,0.0 +17552,13,6,37,0.0 +17552,55,24,45,0.0 +17552,69,36,12,0.0 +17552,6,25,8,0.0 +17552,35,18,23,0.0 +17552,22,21,48,0.0 +17552,72,34.8,29,0.0 +17552,27,43.9,25,0.0 +17552,21,10,4,0.0 +17552,57,19.5,2,0.0 +17552,50,16.25,25,0.0 +17552,61,28.5,46,0.0 +17552,67,14,20,0.0 +17552,74,10,15,0.0 +17552,77,13,5,0.0 +17552,64,33.25,44,0.0 +17552,45,9.5,26,0.0 +17552,42,14,41,0.0 +17552,66,17,49,0.0 +17552,62,49.3,11,0.0 +17552,4,22,20,0.0 +17552,54,7.45,13,0.0 +17552,56,38,17,0.0 +17552,12,38,49,0.0 +17552,18,62.5,8,0.0 +17552,60,34,36,0.0 +17552,48,12.75,30,0.0 +17552,46,12,10,0.0 +17552,53,32.8,28,0.0 +17552,17,39,49,0.0 +17552,19,9.2,30,0.0 +17552,11,21,30,0.0 +17552,31,12.5,15,0.0 +17552,49,20,35,0.0 +17552,9,97,18,0.0 +17552,39,18,1,0.0 +17552,25,14,10,0.0 +17552,38,263.5,31,0.0 +17552,33,2.5,11,0.0 +17552,2,19,41,0.0 +17552,28,45.6,42,0.0 +17552,73,15,46,0.0 +17552,7,30,40,0.0 +17552,8,40,5,0.0 +17552,10,31,15,0.0 +17552,44,19.45,28,0.0 +17552,75,7.75,44,0.0 +17552,30,25.89,38,0.0 +17552,71,21.5,33,0.0 +17552,51,53,42,0.0 +17552,41,9.65,11,0.0 +17552,15,15.5,39,0.0 +17552,20,81,8,0.0 +17552,16,17.45,16,0.0 +17552,68,12.5,11,0.0 +17552,63,43.9,42,0.0 +17553,75,7.75,23,0.0 +17553,53,32.8,32,0.0 +17553,10,31,50,0.0 +17553,49,20,38,0.0 +17553,41,9.65,45,0.0 +17553,51,53,38,0.0 +17553,67,14,2,0.0 +17553,34,14,28,0.0 +17553,62,49.3,23,0.0 +17553,28,45.6,40,0.0 +17553,72,34.8,45,0.0 +17553,69,36,12,0.0 +17553,52,7,5,0.0 +17553,15,15.5,18,0.0 +17553,76,18,41,0.0 +17553,20,81,26,0.0 +17553,57,19.5,4,0.0 +17553,31,12.5,44,0.0 +17553,2,19,9,0.0 +17553,70,15,36,0.0 +17553,66,17,6,0.0 +17553,5,21.35,19,0.0 +17553,61,28.5,43,0.0 +17553,18,62.5,4,0.0 +17553,45,9.5,12,0.0 +17553,6,25,13,0.0 +17553,29,123.79,13,0.0 +17553,26,31.23,36,0.0 +17553,33,2.5,25,0.0 +17553,17,39,17,0.0 +17553,3,10,9,0.0 +17553,44,19.45,11,0.0 +17553,46,12,30,0.0 +17553,54,7.45,19,0.0 +17553,38,263.5,3,0.0 +17553,23,9,14,0.0 +17553,25,14,47,0.0 +17553,21,10,28,0.0 +17553,11,21,28,0.0 +17553,37,26,7,0.0 +17553,47,9.5,1,0.0 +17553,74,10,29,0.0 +17553,39,18,21,0.0 +17553,73,15,31,0.0 +17553,35,18,20,0.0 +17553,13,6,50,0.0 +17553,63,43.9,20,0.0 +17553,22,21,15,0.0 +17553,16,17.45,22,0.0 +17553,27,43.9,24,0.0 +17553,71,21.5,23,0.0 +17553,65,21.05,13,0.0 +17553,64,33.25,38,0.0 +17553,55,24,16,0.0 +17553,58,13.25,38,0.0 +17553,32,32,21,0.0 +17553,68,12.5,34,0.0 +17553,50,16.25,7,0.0 +17553,24,4.5,16,0.0 +17554,1,18,46,0.0 +17554,17,39,28,0.0 +17554,44,19.45,3,0.0 +17554,73,15,5,0.0 +17554,19,9.2,17,0.0 +17554,51,53,19,0.0 +17554,7,30,26,0.0 +17554,33,2.5,13,0.0 +17554,76,18,20,0.0 +17554,64,33.25,6,0.0 +17554,43,46,38,0.0 +17554,20,81,9,0.0 +17554,10,31,3,0.0 +17554,16,17.45,33,0.0 +17554,62,49.3,20,0.0 +17554,72,34.8,42,0.0 +17554,60,34,40,0.0 +17554,63,43.9,21,0.0 +17554,75,7.75,41,0.0 +17554,68,12.5,26,0.0 +17554,50,16.25,50,0.0 +17554,32,32,35,0.0 +17554,25,14,8,0.0 +17554,29,123.79,10,0.0 +17554,69,36,35,0.0 +17554,55,24,44,0.0 +17554,31,12.5,17,0.0 +17554,14,23.25,6,0.0 +17554,4,22,21,0.0 +17555,3,10,9,0.0 +17555,52,7,13,0.0 +17555,27,43.9,36,0.0 +17555,67,14,37,0.0 +17555,74,10,4,0.0 +17555,36,19,25,0.0 +17555,11,21,32,0.0 +17555,55,24,27,0.0 +17555,41,9.65,22,0.0 +17555,1,18,10,0.0 +17555,42,14,13,0.0 +17555,5,21.35,37,0.0 +17555,39,18,12,0.0 +17555,44,19.45,18,0.0 +17555,64,33.25,41,0.0 +17555,14,23.25,19,0.0 +17555,22,21,27,0.0 +17555,51,53,50,0.0 +17555,9,97,22,0.0 +17555,26,31.23,6,0.0 +17555,2,19,22,0.0 +17555,58,13.25,3,0.0 +17555,32,32,10,0.0 +17555,77,13,15,0.0 +17555,12,38,50,0.0 +17555,56,38,30,0.0 +17555,76,18,16,0.0 +17555,54,7.45,26,0.0 +17555,63,43.9,2,0.0 +17555,53,32.8,24,0.0 +17555,66,17,9,0.0 +17555,33,2.5,37,0.0 +17555,23,9,24,0.0 +17555,10,31,9,0.0 +17555,50,16.25,45,0.0 +17555,30,25.89,41,0.0 +17555,60,34,13,0.0 +17555,24,4.5,14,0.0 +17555,7,30,41,0.0 +17555,20,81,36,0.0 +17555,18,62.5,24,0.0 +17555,35,18,1,0.0 +17555,72,34.8,14,0.0 +17555,46,12,2,0.0 +17555,31,12.5,21,0.0 +17555,8,40,39,0.0 +17555,15,15.5,40,0.0 +17555,40,18.4,24,0.0 +17555,16,17.45,45,0.0 +17555,37,26,2,0.0 +17555,69,36,39,0.0 +17555,49,20,21,0.0 +17555,28,45.6,45,0.0 +17555,43,46,19,0.0 +17555,71,21.5,12,0.0 +17555,75,7.75,34,0.0 +17555,47,9.5,49,0.0 +17556,1,18,4,0.0 +17556,2,19,28,0.0 +17556,68,12.5,34,0.0 +17556,18,62.5,1,0.0 +17556,27,43.9,50,0.0 +17556,48,12.75,15,0.0 +17556,70,15,35,0.0 +17556,63,43.9,45,0.0 +17556,44,19.45,26,0.0 +17556,4,22,39,0.0 +17556,23,9,50,0.0 +17556,7,30,43,0.0 +17556,43,46,22,0.0 +17556,30,25.89,10,0.0 +17556,58,13.25,49,0.0 +17556,32,32,33,0.0 +17556,37,26,13,0.0 +17556,8,40,22,0.0 +17556,41,9.65,42,0.0 +17556,15,15.5,39,0.0 +17556,76,18,1,0.0 +17556,17,39,19,0.0 +17556,9,97,41,0.0 +17556,64,33.25,2,0.0 +17556,55,24,40,0.0 +17556,75,7.75,49,0.0 +17556,14,23.25,24,0.0 +17556,20,81,6,0.0 +17556,40,18.4,14,0.0 +17556,51,53,19,0.0 +17556,52,7,17,0.0 +17556,31,12.5,47,0.0 +17557,53,32.8,24,0.0 +17557,75,7.75,4,0.0 +17557,54,7.45,3,0.0 +17557,13,6,42,0.0 +17557,55,24,7,0.0 +17557,57,19.5,32,0.0 +17557,45,9.5,5,0.0 +17557,72,34.8,49,0.0 +17557,37,26,9,0.0 +17557,59,55,40,0.0 +17557,44,19.45,24,0.0 +17557,70,15,6,0.0 +17557,22,21,2,0.0 +17557,20,81,29,0.0 +17557,49,20,15,0.0 +17557,16,17.45,9,0.0 +17557,51,53,5,0.0 +17558,19,9.2,9,0.0 +17558,61,28.5,12,0.0 +17558,15,15.5,22,0.0 +17558,48,12.75,5,0.0 +17558,75,7.75,44,0.0 +17558,52,7,29,0.0 +17558,76,18,30,0.0 +17558,39,18,1,0.0 +17558,72,34.8,48,0.0 +17558,34,14,32,0.0 +17558,35,18,48,0.0 +17558,38,263.5,10,0.0 +17558,25,14,47,0.0 +17558,53,32.8,2,0.0 +17558,74,10,39,0.0 +17558,21,10,4,0.0 +17558,58,13.25,37,0.0 +17558,49,20,42,0.0 +17558,12,38,15,0.0 +17558,30,25.89,22,0.0 +17558,77,13,37,0.0 +17558,63,43.9,26,0.0 +17558,10,31,29,0.0 +17559,65,21.05,47,0.0 +17559,18,62.5,40,0.0 +17559,39,18,21,0.0 +17559,5,21.35,25,0.0 +17559,71,21.5,20,0.0 +17559,33,2.5,1,0.0 +17559,15,15.5,5,0.0 +17559,76,18,49,0.0 +17559,11,21,2,0.0 +17559,60,34,33,0.0 +17559,6,25,48,0.0 +17559,55,24,13,0.0 +17559,35,18,25,0.0 +17559,38,263.5,3,0.0 +17559,26,31.23,4,0.0 +17559,72,34.8,43,0.0 +17559,62,49.3,39,0.0 +17559,17,39,15,0.0 +17559,73,15,32,0.0 +17559,37,26,17,0.0 +17559,41,9.65,4,0.0 +17559,64,33.25,39,0.0 +17559,69,36,12,0.0 +17559,22,21,33,0.0 +17559,12,38,46,0.0 +17559,25,14,15,0.0 +17559,31,12.5,9,0.0 +17559,44,19.45,29,0.0 +17559,28,45.6,17,0.0 +17559,77,13,10,0.0 +17559,1,18,27,0.0 +17559,42,14,25,0.0 +17559,63,43.9,16,0.0 +17559,74,10,38,0.0 +17560,39,18,19,0.0 +17560,52,7,12,0.0 +17560,41,9.65,49,0.0 +17560,24,4.5,49,0.0 +17560,37,26,48,0.0 +17560,36,19,15,0.0 +17560,8,40,35,0.0 +17560,61,28.5,40,0.0 +17560,25,14,3,0.0 +17560,45,9.5,17,0.0 +17560,74,10,12,0.0 +17560,15,15.5,29,0.0 +17560,59,55,17,0.0 +17560,22,21,24,0.0 +17560,17,39,8,0.0 +17560,31,12.5,45,0.0 +17560,14,23.25,9,0.0 +17560,40,18.4,15,0.0 +17560,21,10,6,0.0 +17560,60,34,38,0.0 +17560,5,21.35,42,0.0 +17560,34,14,18,0.0 +17560,44,19.45,13,0.0 +17560,71,21.5,10,0.0 +17560,49,20,16,0.0 +17560,1,18,12,0.0 +17560,20,81,42,0.0 +17560,42,14,39,0.0 +17560,77,13,4,0.0 +17560,30,25.89,38,0.0 +17560,16,17.45,36,0.0 +17560,4,22,3,0.0 +17560,76,18,7,0.0 +17560,66,17,39,0.0 +17560,33,2.5,32,0.0 +17560,70,15,39,0.0 +17560,28,45.6,11,0.0 +17561,22,21,32,0.0 +17561,27,43.9,19,0.0 +17561,30,25.89,36,0.0 +17561,41,9.65,50,0.0 +17561,74,10,33,0.0 +17561,75,7.75,50,0.0 +17561,4,22,45,0.0 +17561,21,10,1,0.0 +17561,16,17.45,4,0.0 +17561,24,4.5,9,0.0 +17561,38,263.5,19,0.0 +17561,37,26,43,0.0 +17561,52,7,34,0.0 +17561,64,33.25,49,0.0 +17561,28,45.6,47,0.0 +17561,72,34.8,31,0.0 +17561,31,12.5,30,0.0 +17561,68,12.5,19,0.0 +17561,29,123.79,27,0.0 +17561,60,34,36,0.0 +17561,26,31.23,50,0.0 +17561,51,53,40,0.0 +17561,65,21.05,34,0.0 +17561,62,49.3,29,0.0 +17561,14,23.25,36,0.0 +17561,45,9.5,32,0.0 +17561,1,18,45,0.0 +17561,5,21.35,8,0.0 +17561,54,7.45,39,0.0 +17561,34,14,48,0.0 +17561,13,6,40,0.0 +17561,46,12,36,0.0 +17561,8,40,46,0.0 +17561,44,19.45,42,0.0 +17561,59,55,31,0.0 +17561,19,9.2,3,0.0 +17561,48,12.75,14,0.0 +17561,36,19,30,0.0 +17561,70,15,1,0.0 +17561,9,97,47,0.0 +17561,20,81,36,0.0 +17561,6,25,45,0.0 +17561,12,38,6,0.0 +17561,25,14,16,0.0 +17561,67,14,35,0.0 +17561,58,13.25,37,0.0 +17561,66,17,1,0.0 +17562,33,2.5,1,0.0 +17562,56,38,23,0.0 +17562,37,26,47,0.0 +17562,58,13.25,40,0.0 +17562,77,13,28,0.0 +17562,43,46,41,0.0 +17562,35,18,19,0.0 +17562,26,31.23,49,0.0 +17562,13,6,22,0.0 +17562,8,40,38,0.0 +17562,22,21,38,0.0 +17562,7,30,8,0.0 +17562,60,34,41,0.0 +17562,63,43.9,3,0.0 +17562,47,9.5,18,0.0 +17562,9,97,10,0.0 +17562,75,7.75,32,0.0 +17562,50,16.25,14,0.0 +17562,39,18,27,0.0 +17562,51,53,7,0.0 +17562,36,19,35,0.0 +17562,14,23.25,45,0.0 +17562,46,12,43,0.0 +17562,23,9,28,0.0 +17562,65,21.05,11,0.0 +17562,5,21.35,2,0.0 +17562,52,7,25,0.0 +17562,3,10,50,0.0 +17562,24,4.5,34,0.0 +17562,30,25.89,13,0.0 +17562,53,32.8,19,0.0 +17562,17,39,43,0.0 +17562,41,9.65,3,0.0 +17562,25,14,4,0.0 +17562,70,15,25,0.0 +17562,72,34.8,26,0.0 +17562,66,17,5,0.0 +17562,12,38,49,0.0 +17562,20,81,35,0.0 +17562,40,18.4,37,0.0 +17562,11,21,42,0.0 +17562,74,10,41,0.0 +17562,48,12.75,31,0.0 +17562,15,15.5,25,0.0 +17562,59,55,11,0.0 +17562,61,28.5,15,0.0 +17563,18,62.5,21,0.0 +17563,49,20,11,0.0 +17563,58,13.25,14,0.0 +17563,73,15,12,0.0 +17563,53,32.8,13,0.0 +17563,35,18,38,0.0 +17563,27,43.9,43,0.0 +17563,24,4.5,25,0.0 +17563,36,19,25,0.0 +17563,48,12.75,23,0.0 +17563,16,17.45,20,0.0 +17563,57,19.5,12,0.0 +17563,66,17,2,0.0 +17563,39,18,1,0.0 +17563,15,15.5,36,0.0 +17563,51,53,44,0.0 +17563,5,21.35,47,0.0 +17563,61,28.5,7,0.0 +17563,55,24,34,0.0 +17563,74,10,25,0.0 +17563,17,39,30,0.0 +17563,65,21.05,21,0.0 +17563,41,9.65,11,0.0 +17563,30,25.89,4,0.0 +17563,70,15,27,0.0 +17563,42,14,24,0.0 +17563,76,18,42,0.0 +17563,22,21,13,0.0 +17563,11,21,15,0.0 +17563,23,9,10,0.0 +17563,31,12.5,50,0.0 +17563,1,18,35,0.0 +17563,60,34,16,0.0 +17563,69,36,8,0.0 +17563,19,9.2,4,0.0 +17563,13,6,31,0.0 +17563,2,19,15,0.0 +17563,20,81,23,0.0 +17563,12,38,24,0.0 +17563,40,18.4,49,0.0 +17563,63,43.9,12,0.0 +17563,64,33.25,32,0.0 +17563,33,2.5,14,0.0 +17563,59,55,16,0.0 +17564,22,21,16,0.0 +17564,23,9,15,0.0 +17564,15,15.5,7,0.0 +17564,21,10,14,0.0 +17564,61,28.5,22,0.0 +17564,49,20,34,0.0 +17564,37,26,18,0.0 +17564,74,10,16,0.0 +17564,24,4.5,26,0.0 +17564,56,38,9,0.0 +17564,8,40,27,0.0 +17564,12,38,43,0.0 +17564,48,12.75,35,0.0 +17564,36,19,47,0.0 +17564,18,62.5,46,0.0 +17564,69,36,15,0.0 +17564,45,9.5,49,0.0 +17564,60,34,27,0.0 +17564,39,18,35,0.0 +17564,77,13,44,0.0 +17564,51,53,20,0.0 +17564,40,18.4,49,0.0 +17564,3,10,2,0.0 +17564,44,19.45,6,0.0 +17564,68,12.5,16,0.0 +17564,54,7.45,16,0.0 +17564,30,25.89,8,0.0 +17564,66,17,14,0.0 +17564,38,263.5,13,0.0 +17564,50,16.25,34,0.0 +17564,31,12.5,16,0.0 +17564,32,32,14,0.0 +17564,2,19,4,0.0 +17564,70,15,31,0.0 +17564,53,32.8,26,0.0 +17564,76,18,36,0.0 +17564,62,49.3,25,0.0 +17564,10,31,10,0.0 +17564,63,43.9,48,0.0 +17564,7,30,36,0.0 +17564,5,21.35,6,0.0 +17564,55,24,42,0.0 +17564,17,39,5,0.0 +17564,41,9.65,45,0.0 +17564,59,55,7,0.0 +17564,28,45.6,27,0.0 +17564,42,14,1,0.0 +17564,29,123.79,21,0.0 +17564,67,14,33,0.0 +17564,72,34.8,12,0.0 +17564,71,21.5,32,0.0 +17564,65,21.05,32,0.0 +17564,46,12,5,0.0 +17564,25,14,39,0.0 +17564,11,21,18,0.0 +17564,6,25,9,0.0 +17564,16,17.45,27,0.0 +17564,19,9.2,4,0.0 +17564,35,18,40,0.0 +17564,43,46,17,0.0 +17564,26,31.23,7,0.0 +17564,75,7.75,35,0.0 +17564,4,22,24,0.0 +17564,20,81,5,0.0 +17564,58,13.25,26,0.0 +17564,9,97,43,0.0 +17564,52,7,7,0.0 +17565,9,97,1,0.0 +17565,1,18,12,0.0 +17565,38,263.5,11,0.0 +17565,53,32.8,32,0.0 +17565,23,9,30,0.0 +17565,72,34.8,38,0.0 +17565,31,12.5,13,0.0 +17565,40,18.4,50,0.0 +17565,68,12.5,10,0.0 +17565,20,81,44,0.0 +17565,74,10,37,0.0 +17565,76,18,7,0.0 +17565,4,22,40,0.0 +17565,6,25,9,0.0 +17565,63,43.9,37,0.0 +17565,71,21.5,41,0.0 +17565,10,31,1,0.0 +17565,12,38,4,0.0 +17565,33,2.5,13,0.0 +17565,47,9.5,13,0.0 +17565,17,39,29,0.0 +17565,57,19.5,31,0.0 +17565,58,13.25,25,0.0 +17565,77,13,19,0.0 +17565,7,30,5,0.0 +17565,21,10,34,0.0 +17565,3,10,15,0.0 +17565,59,55,33,0.0 +17565,66,17,45,0.0 +17565,35,18,32,0.0 +17565,46,12,19,0.0 +17565,49,20,41,0.0 +17565,69,36,38,0.0 +17565,45,9.5,2,0.0 +17565,52,7,27,0.0 +17565,11,21,39,0.0 +17565,27,43.9,37,0.0 +17565,25,14,49,0.0 +17565,24,4.5,3,0.0 +17565,44,19.45,11,0.0 +17565,37,26,2,0.0 +17565,62,49.3,6,0.0 +17565,73,15,48,0.0 +17565,41,9.65,29,0.0 +17565,61,28.5,35,0.0 +17565,16,17.45,17,0.0 +17565,70,15,37,0.0 +17565,8,40,8,0.0 +17565,29,123.79,49,0.0 +17565,30,25.89,46,0.0 +17565,48,12.75,31,0.0 +17565,51,53,27,0.0 +17565,60,34,46,0.0 +17565,19,9.2,22,0.0 +17565,32,32,38,0.0 +17565,43,46,37,0.0 +17565,15,15.5,44,0.0 +17565,18,62.5,43,0.0 +17565,22,21,19,0.0 +17565,75,7.75,1,0.0 +17565,13,6,8,0.0 +17565,36,19,26,0.0 +17565,67,14,8,0.0 +17565,56,38,49,0.0 +17565,2,19,41,0.0 +17566,37,26,11,0.0 +17566,77,13,33,0.0 +17566,69,36,28,0.0 +17566,2,19,28,0.0 +17566,28,45.6,8,0.0 +17566,20,81,48,0.0 +17566,7,30,29,0.0 +17566,24,4.5,35,0.0 +17566,10,31,37,0.0 +17566,17,39,27,0.0 +17566,74,10,28,0.0 +17566,12,38,17,0.0 +17566,18,62.5,2,0.0 +17566,53,32.8,6,0.0 +17566,51,53,48,0.0 +17566,45,9.5,16,0.0 +17566,35,18,29,0.0 +17567,19,9.2,50,0.0 +17567,24,4.5,10,0.0 +17567,27,43.9,13,0.0 +17567,12,38,3,0.0 +17567,51,53,41,0.0 +17567,60,34,13,0.0 +17567,62,49.3,38,0.0 +17567,32,32,2,0.0 +17567,17,39,1,0.0 +17567,30,25.89,40,0.0 +17567,29,123.79,6,0.0 +17567,69,36,12,0.0 +17567,41,9.65,21,0.0 +17567,57,19.5,49,0.0 +17567,4,22,31,0.0 +17567,43,46,2,0.0 +17567,36,19,44,0.0 +17567,31,12.5,42,0.0 +17567,66,17,2,0.0 +17567,28,45.6,44,0.0 +17567,56,38,11,0.0 +17567,65,21.05,44,0.0 +17567,34,14,12,0.0 +17567,2,19,35,0.0 +17567,22,21,11,0.0 +17567,61,28.5,48,0.0 +17567,53,32.8,14,0.0 +17567,72,34.8,44,0.0 +17568,60,34,44,0.0 +17568,43,46,2,0.0 +17568,16,17.45,7,0.0 +17568,2,19,43,0.0 +17568,22,21,45,0.0 +17568,63,43.9,41,0.0 +17568,41,9.65,21,0.0 +17568,27,43.9,19,0.0 +17568,68,12.5,8,0.0 +17568,58,13.25,22,0.0 +17568,45,9.5,37,0.0 +17568,42,14,46,0.0 +17568,33,2.5,7,0.0 +17568,4,22,35,0.0 +17568,8,40,18,0.0 +17568,50,16.25,3,0.0 +17568,51,53,49,0.0 +17568,48,12.75,24,0.0 +17568,6,25,44,0.0 +17568,15,15.5,1,0.0 +17568,65,21.05,3,0.0 +17568,52,7,39,0.0 +17568,31,12.5,49,0.0 +17568,21,10,42,0.0 +17568,9,97,36,0.0 +17568,7,30,47,0.0 +17568,55,24,21,0.0 +17568,5,21.35,31,0.0 +17568,57,19.5,2,0.0 +17568,39,18,47,0.0 +17568,25,14,11,0.0 +17568,37,26,40,0.0 +17568,77,13,20,0.0 +17568,28,45.6,30,0.0 +17568,17,39,19,0.0 +17568,29,123.79,39,0.0 +17568,71,21.5,7,0.0 +17568,38,263.5,12,0.0 +17568,19,9.2,11,0.0 +17568,11,21,5,0.0 +17568,3,10,26,0.0 +17568,56,38,43,0.0 +17568,23,9,20,0.0 +17568,67,14,13,0.0 +17568,62,49.3,26,0.0 +17568,44,19.45,36,0.0 +17568,76,18,10,0.0 +17568,1,18,3,0.0 +17568,47,9.5,25,0.0 +17568,40,18.4,5,0.0 +17568,35,18,48,0.0 +17568,32,32,4,0.0 +17568,20,81,13,0.0 +17568,73,15,6,0.0 +17568,49,20,49,0.0 +17568,10,31,15,0.0 +17568,18,62.5,36,0.0 +17568,72,34.8,12,0.0 +17568,69,36,6,0.0 +17568,34,14,22,0.0 +17568,70,15,50,0.0 +17568,14,23.25,46,0.0 +17568,13,6,41,0.0 +17568,12,38,28,0.0 +17568,36,19,17,0.0 +17568,74,10,37,0.0 +17568,30,25.89,42,0.0 +17568,61,28.5,26,0.0 +17568,26,31.23,6,0.0 +17568,54,7.45,38,0.0 +17568,66,17,22,0.0 +17568,75,7.75,49,0.0 +17568,59,55,44,0.0 +17568,64,33.25,20,0.0 +17568,46,12,21,0.0 +17568,24,4.5,15,0.0 +17569,72,34.8,36,0.0 +17569,22,21,27,0.0 +17569,35,18,1,0.0 +17569,40,18.4,48,0.0 +17569,26,31.23,19,0.0 +17569,42,14,44,0.0 +17569,76,18,46,0.0 +17569,71,21.5,38,0.0 +17569,61,28.5,8,0.0 +17569,18,62.5,33,0.0 +17569,14,23.25,41,0.0 +17569,41,9.65,6,0.0 +17569,44,19.45,45,0.0 +17569,77,13,19,0.0 +17569,25,14,47,0.0 +17569,12,38,33,0.0 +17569,45,9.5,30,0.0 +17569,53,32.8,8,0.0 +17569,73,15,21,0.0 +17569,23,9,5,0.0 +17569,46,12,36,0.0 +17569,49,20,6,0.0 +17569,58,13.25,37,0.0 +17569,10,31,43,0.0 +17569,62,49.3,28,0.0 +17569,68,12.5,31,0.0 +17569,70,15,45,0.0 +17569,15,15.5,41,0.0 +17569,65,21.05,14,0.0 +17569,66,17,43,0.0 +17569,57,19.5,27,0.0 +17569,36,19,13,0.0 +17569,74,10,33,0.0 +17569,8,40,4,0.0 +17569,47,9.5,5,0.0 +17569,56,38,10,0.0 +17569,30,25.89,20,0.0 +17569,4,22,49,0.0 +17569,48,12.75,19,0.0 +17569,11,21,1,0.0 +17569,55,24,25,0.0 +17569,21,10,11,0.0 +17569,64,33.25,34,0.0 +17569,38,263.5,45,0.0 +17569,51,53,26,0.0 +17569,13,6,26,0.0 +17569,32,32,32,0.0 +17569,1,18,38,0.0 +17569,54,7.45,36,0.0 +17569,39,18,41,0.0 +17569,29,123.79,23,0.0 +17569,9,97,33,0.0 +17569,2,19,33,0.0 +17569,7,30,43,0.0 +17569,52,7,4,0.0 +17569,59,55,42,0.0 +17569,63,43.9,15,0.0 +17569,28,45.6,1,0.0 +17569,50,16.25,47,0.0 +17569,34,14,42,0.0 +17569,16,17.45,41,0.0 +17569,67,14,1,0.0 +17569,75,7.75,35,0.0 +17569,60,34,30,0.0 +17569,5,21.35,22,0.0 +17569,37,26,8,0.0 +17569,33,2.5,5,0.0 +17569,27,43.9,6,0.0 +17570,36,19,50,0.0 +17570,10,31,22,0.0 +17570,39,18,34,0.0 +17570,35,18,7,0.0 +17570,52,7,27,0.0 +17570,50,16.25,31,0.0 +17571,20,81,26,0.0 +17571,23,9,22,0.0 +17571,63,43.9,1,0.0 +17571,55,24,5,0.0 +17571,2,19,40,0.0 +17571,28,45.6,31,0.0 +17571,51,53,5,0.0 +17571,41,9.65,1,0.0 +17571,59,55,23,0.0 +17571,5,21.35,47,0.0 +17571,13,6,8,0.0 +17571,37,26,28,0.0 +17571,22,21,28,0.0 +17571,14,23.25,40,0.0 +17571,48,12.75,23,0.0 +17571,38,263.5,7,0.0 +17571,60,34,46,0.0 +17571,58,13.25,1,0.0 +17571,53,32.8,27,0.0 +17571,10,31,45,0.0 +17571,71,21.5,28,0.0 +17571,30,25.89,14,0.0 +17571,73,15,16,0.0 +17571,62,49.3,20,0.0 +17571,40,18.4,38,0.0 +17571,9,97,30,0.0 +17571,33,2.5,8,0.0 +17571,70,15,1,0.0 +17571,65,21.05,33,0.0 +17571,12,38,15,0.0 +17571,31,12.5,46,0.0 +17571,35,18,50,0.0 +17571,18,62.5,10,0.0 +17571,16,17.45,10,0.0 +17571,11,21,35,0.0 +17571,49,20,2,0.0 +17571,42,14,28,0.0 +17571,7,30,49,0.0 +17571,46,12,45,0.0 +17571,17,39,3,0.0 +17571,64,33.25,49,0.0 +17571,6,25,43,0.0 +17571,76,18,47,0.0 +17571,32,32,14,0.0 +17571,68,12.5,3,0.0 +17571,77,13,23,0.0 +17571,72,34.8,12,0.0 +17571,54,7.45,33,0.0 +17571,4,22,14,0.0 +17571,67,14,3,0.0 +17571,34,14,35,0.0 +17571,21,10,38,0.0 +17571,69,36,8,0.0 +17571,61,28.5,1,0.0 +17571,24,4.5,33,0.0 +17572,28,45.6,7,0.0 +17572,70,15,21,0.0 +17572,64,33.25,27,0.0 +17572,38,263.5,46,0.0 +17572,37,26,3,0.0 +17572,29,123.79,24,0.0 +17572,51,53,47,0.0 +17572,12,38,5,0.0 +17572,16,17.45,25,0.0 +17572,30,25.89,34,0.0 +17572,56,38,3,0.0 +17572,21,10,22,0.0 +17572,26,31.23,11,0.0 +17572,32,32,9,0.0 +17572,52,7,7,0.0 +17572,48,12.75,3,0.0 +17572,4,22,44,0.0 +17572,10,31,10,0.0 +17572,39,18,19,0.0 +17572,17,39,2,0.0 +17572,36,19,37,0.0 +17572,46,12,13,0.0 +17572,8,40,7,0.0 +17572,63,43.9,31,0.0 +17572,3,10,34,0.0 +17572,24,4.5,9,0.0 +17572,9,97,32,0.0 +17572,41,9.65,35,0.0 +17572,6,25,33,0.0 +17572,31,12.5,33,0.0 +17572,7,30,7,0.0 +17572,23,9,50,0.0 +17572,33,2.5,23,0.0 +17572,59,55,35,0.0 +17572,20,81,6,0.0 +17572,66,17,14,0.0 +17572,74,10,15,0.0 +17572,14,23.25,9,0.0 +17572,73,15,11,0.0 +17572,13,6,48,0.0 +17572,15,15.5,42,0.0 +17572,68,12.5,7,0.0 +17572,75,7.75,45,0.0 +17572,35,18,13,0.0 +17572,50,16.25,50,0.0 +17572,49,20,5,0.0 +17572,67,14,8,0.0 +17572,61,28.5,17,0.0 +17572,53,32.8,7,0.0 +17572,22,21,10,0.0 +17572,1,18,35,0.0 +17572,55,24,28,0.0 +17572,57,19.5,16,0.0 +17572,54,7.45,38,0.0 +17573,62,49.3,48,0.0 +17573,61,28.5,14,0.0 +17573,23,9,41,0.0 +17573,77,13,7,0.0 +17573,64,33.25,40,0.0 +17573,73,15,29,0.0 +17573,47,9.5,12,0.0 +17573,56,38,10,0.0 +17573,45,9.5,44,0.0 +17573,35,18,17,0.0 +17573,9,97,29,0.0 +17573,38,263.5,9,0.0 +17573,24,4.5,36,0.0 +17573,41,9.65,10,0.0 +17573,69,36,25,0.0 +17573,67,14,12,0.0 +17573,36,19,8,0.0 +17573,44,19.45,27,0.0 +17573,76,18,29,0.0 +17573,27,43.9,47,0.0 +17574,2,19,50,0.0 +17574,50,16.25,22,0.0 +17574,10,31,42,0.0 +17574,37,26,1,0.0 +17574,68,12.5,39,0.0 +17574,41,9.65,2,0.0 +17574,25,14,50,0.0 +17574,72,34.8,30,0.0 +17574,70,15,22,0.0 +17574,55,24,30,0.0 +17574,47,9.5,44,0.0 +17574,59,55,13,0.0 +17574,48,12.75,41,0.0 +17574,32,32,25,0.0 +17574,22,21,15,0.0 +17574,76,18,36,0.0 +17574,30,25.89,49,0.0 +17574,45,9.5,43,0.0 +17574,52,7,2,0.0 +17574,23,9,12,0.0 +17574,26,31.23,16,0.0 +17574,20,81,36,0.0 +17574,12,38,28,0.0 +17574,64,33.25,14,0.0 +17574,42,14,48,0.0 +17574,58,13.25,22,0.0 +17574,14,23.25,44,0.0 +17574,4,22,36,0.0 +17574,31,12.5,14,0.0 +17574,73,15,28,0.0 +17574,7,30,28,0.0 +17574,21,10,38,0.0 +17574,75,7.75,20,0.0 +17574,19,9.2,15,0.0 +17574,63,43.9,19,0.0 +17574,16,17.45,4,0.0 +17574,57,19.5,5,0.0 +17574,17,39,21,0.0 +17574,44,19.45,17,0.0 +17575,28,45.6,50,0.0 +17575,5,21.35,2,0.0 +17575,17,39,32,0.0 +17575,11,21,48,0.0 +17575,45,9.5,24,0.0 +17575,69,36,11,0.0 +17575,61,28.5,3,0.0 +17575,39,18,12,0.0 +17575,52,7,27,0.0 +17575,66,17,34,0.0 +17575,48,12.75,7,0.0 +17575,34,14,31,0.0 +17575,59,55,18,0.0 +17575,37,26,33,0.0 +17575,20,81,33,0.0 +17575,57,19.5,31,0.0 +17575,15,15.5,40,0.0 +17575,13,6,32,0.0 +17575,27,43.9,30,0.0 +17575,51,53,47,0.0 +17575,44,19.45,27,0.0 +17575,7,30,32,0.0 +17575,4,22,22,0.0 +17575,65,21.05,33,0.0 +17575,24,4.5,40,0.0 +17575,18,62.5,44,0.0 +17575,74,10,32,0.0 +17576,69,36,2,0.0 +17576,55,24,36,0.0 +17576,64,33.25,8,0.0 +17576,14,23.25,29,0.0 +17576,35,18,8,0.0 +17576,71,21.5,9,0.0 +17576,68,12.5,28,0.0 +17577,50,16.25,29,0.0 +17577,49,20,22,0.0 +17577,77,13,3,0.0 +17577,53,32.8,29,0.0 +17577,7,30,16,0.0 +17577,22,21,19,0.0 +17577,24,4.5,29,0.0 +17577,28,45.6,29,0.0 +17577,75,7.75,24,0.0 +17577,25,14,47,0.0 +17577,13,6,29,0.0 +17577,9,97,33,0.0 +17577,3,10,10,0.0 +17577,65,21.05,1,0.0 +17577,67,14,13,0.0 +17577,41,9.65,41,0.0 +17577,19,9.2,8,0.0 +17577,39,18,7,0.0 +17577,14,23.25,23,0.0 +17577,8,40,23,0.0 +17577,16,17.45,26,0.0 +17577,20,81,18,0.0 +17577,17,39,14,0.0 +17577,59,55,43,0.0 +17577,54,7.45,34,0.0 +17577,26,31.23,14,0.0 +17577,35,18,44,0.0 +17577,62,49.3,2,0.0 +17577,43,46,49,0.0 +17577,55,24,44,0.0 +17577,74,10,2,0.0 +17577,42,14,26,0.0 +17577,30,25.89,26,0.0 +17577,66,17,11,0.0 +17577,10,31,6,0.0 +17577,34,14,9,0.0 +17577,47,9.5,2,0.0 +17577,31,12.5,18,0.0 +17578,56,38,41,0.0 +17578,39,18,16,0.0 +17578,54,7.45,11,0.0 +17578,17,39,16,0.0 +17578,30,25.89,8,0.0 +17578,22,21,10,0.0 +17578,53,32.8,15,0.0 +17578,31,12.5,47,0.0 +17578,44,19.45,8,0.0 +17578,42,14,35,0.0 +17578,74,10,20,0.0 +17578,47,9.5,33,0.0 +17578,61,28.5,26,0.0 +17578,50,16.25,7,0.0 +17578,70,15,9,0.0 +17578,59,55,13,0.0 +17578,52,7,2,0.0 +17578,45,9.5,1,0.0 +17578,7,30,38,0.0 +17578,20,81,40,0.0 +17579,32,32,25,0.0 +17579,30,25.89,40,0.0 +17579,48,12.75,40,0.0 +17579,77,13,47,0.0 +17579,5,21.35,20,0.0 +17579,33,2.5,1,0.0 +17579,39,18,39,0.0 +17579,58,13.25,46,0.0 +17579,41,9.65,42,0.0 +17579,61,28.5,38,0.0 +17579,69,36,8,0.0 +17579,53,32.8,1,0.0 +17579,52,7,43,0.0 +17579,22,21,33,0.0 +17579,4,22,46,0.0 +17579,10,31,42,0.0 +17579,28,45.6,47,0.0 +17579,26,31.23,4,0.0 +17579,67,14,29,0.0 +17579,56,38,18,0.0 +17579,21,10,47,0.0 +17579,65,21.05,42,0.0 +17579,42,14,39,0.0 +17579,45,9.5,29,0.0 +17579,63,43.9,15,0.0 +17579,50,16.25,12,0.0 +17579,59,55,7,0.0 +17579,68,12.5,33,0.0 +17579,25,14,45,0.0 +17579,57,19.5,6,0.0 +17579,23,9,8,0.0 +17579,27,43.9,17,0.0 +17579,19,9.2,48,0.0 +17579,55,24,9,0.0 +17579,31,12.5,34,0.0 +17579,8,40,39,0.0 +17579,38,263.5,50,0.0 +17579,2,19,13,0.0 +17579,29,123.79,24,0.0 +17579,76,18,49,0.0 +17579,36,19,33,0.0 +17579,75,7.75,14,0.0 +17579,72,34.8,32,0.0 +17579,14,23.25,35,0.0 +17579,24,4.5,6,0.0 +17579,3,10,4,0.0 +17579,60,34,25,0.0 +17579,66,17,38,0.0 +17579,43,46,34,0.0 +17579,15,15.5,36,0.0 +17579,46,12,47,0.0 +17579,1,18,21,0.0 +17579,37,26,29,0.0 +17579,51,53,1,0.0 +17579,18,62.5,46,0.0 +17579,20,81,45,0.0 +17579,12,38,23,0.0 +17579,47,9.5,38,0.0 +17579,44,19.45,9,0.0 +17579,74,10,44,0.0 +17579,34,14,23,0.0 +17579,9,97,20,0.0 +17579,13,6,10,0.0 +17579,71,21.5,25,0.0 +17579,35,18,1,0.0 +17580,24,4.5,4,0.0 +17580,5,21.35,13,0.0 +17580,11,21,46,0.0 +17580,50,16.25,13,0.0 +17580,74,10,6,0.0 +17580,58,13.25,25,0.0 +17580,66,17,8,0.0 +17580,28,45.6,29,0.0 +17580,59,55,34,0.0 +17580,22,21,19,0.0 +17580,6,25,45,0.0 +17580,73,15,1,0.0 +17580,42,14,44,0.0 +17580,17,39,23,0.0 +17580,60,34,40,0.0 +17580,45,9.5,32,0.0 +17580,34,14,33,0.0 +17580,21,10,50,0.0 +17580,29,123.79,14,0.0 +17580,54,7.45,47,0.0 +17580,68,12.5,13,0.0 +17581,20,81,7,0.0 +17581,73,15,47,0.0 +17581,43,46,31,0.0 +17581,14,23.25,43,0.0 +17581,52,7,1,0.0 +17581,66,17,28,0.0 +17581,51,53,8,0.0 +17581,75,7.75,29,0.0 +17581,53,32.8,14,0.0 +17581,33,2.5,12,0.0 +17581,17,39,37,0.0 +17581,32,32,10,0.0 +17581,39,18,47,0.0 +17581,22,21,28,0.0 +17581,70,15,11,0.0 +17581,48,12.75,27,0.0 +17581,54,7.45,48,0.0 +17581,3,10,49,0.0 +17581,57,19.5,3,0.0 +17581,60,34,32,0.0 +17581,19,9.2,17,0.0 +17581,50,16.25,13,0.0 +17581,18,62.5,18,0.0 +17581,68,12.5,42,0.0 +17581,12,38,4,0.0 +17581,67,14,31,0.0 +17581,65,21.05,34,0.0 +17581,41,9.65,21,0.0 +17581,45,9.5,14,0.0 +17581,23,9,24,0.0 +17581,74,10,35,0.0 +17581,31,12.5,33,0.0 +17581,30,25.89,6,0.0 +17581,77,13,42,0.0 +17581,44,19.45,18,0.0 +17581,42,14,44,0.0 +17581,47,9.5,50,0.0 +17581,38,263.5,8,0.0 +17581,63,43.9,14,0.0 +17581,61,28.5,19,0.0 +17581,4,22,2,0.0 +17581,46,12,50,0.0 +17581,15,15.5,36,0.0 +17581,36,19,22,0.0 +17581,35,18,22,0.0 +17581,9,97,10,0.0 +17581,55,24,22,0.0 +17581,10,31,32,0.0 +17581,62,49.3,28,0.0 +17581,5,21.35,1,0.0 +17581,34,14,14,0.0 +17581,2,19,41,0.0 +17581,69,36,8,0.0 +17581,56,38,11,0.0 +17581,71,21.5,46,0.0 +17582,10,31,6,0.0 +17582,24,4.5,23,0.0 +17582,64,33.25,9,0.0 +17582,53,32.8,28,0.0 +17582,67,14,22,0.0 +17582,61,28.5,28,0.0 +17582,45,9.5,35,0.0 +17582,12,38,19,0.0 +17582,23,9,50,0.0 +17582,6,25,23,0.0 +17582,66,17,42,0.0 +17582,77,13,46,0.0 +17582,34,14,31,0.0 +17582,5,21.35,38,0.0 +17582,1,18,39,0.0 +17582,54,7.45,3,0.0 +17582,36,19,36,0.0 +17582,15,15.5,11,0.0 +17582,63,43.9,10,0.0 +17582,47,9.5,11,0.0 +17582,49,20,1,0.0 +17582,41,9.65,35,0.0 +17582,40,18.4,18,0.0 +17582,46,12,3,0.0 +17582,44,19.45,32,0.0 +17582,25,14,6,0.0 +17582,29,123.79,19,0.0 +17582,39,18,25,0.0 +17582,65,21.05,47,0.0 +17582,4,22,50,0.0 +17582,31,12.5,1,0.0 +17582,69,36,35,0.0 +17582,30,25.89,44,0.0 +17582,28,45.6,4,0.0 +17582,51,53,21,0.0 +17582,57,19.5,48,0.0 +17582,60,34,3,0.0 +17582,8,40,48,0.0 +17582,75,7.75,1,0.0 +17582,35,18,8,0.0 +17582,68,12.5,22,0.0 +17582,26,31.23,42,0.0 +17582,58,13.25,31,0.0 +17582,9,97,21,0.0 +17582,19,9.2,13,0.0 +17582,20,81,40,0.0 +17582,16,17.45,44,0.0 +17582,32,32,32,0.0 +17582,33,2.5,39,0.0 +17582,38,263.5,7,0.0 +17582,14,23.25,37,0.0 +17582,37,26,7,0.0 +17582,72,34.8,45,0.0 +17582,22,21,29,0.0 +17582,59,55,18,0.0 +17582,48,12.75,25,0.0 +17583,4,22,19,0.0 +17583,67,14,9,0.0 +17583,45,9.5,26,0.0 +17583,29,123.79,35,0.0 +17583,27,43.9,43,0.0 +17583,55,24,14,0.0 +17583,43,46,43,0.0 +17583,65,21.05,8,0.0 +17583,61,28.5,34,0.0 +17583,22,21,14,0.0 +17583,14,23.25,15,0.0 +17583,44,19.45,23,0.0 +17583,60,34,29,0.0 +17583,16,17.45,18,0.0 +17583,54,7.45,30,0.0 +17583,49,20,50,0.0 +17583,40,18.4,47,0.0 +17583,46,12,31,0.0 +17583,30,25.89,6,0.0 +17583,33,2.5,3,0.0 +17583,74,10,9,0.0 +17583,39,18,35,0.0 +17583,7,30,8,0.0 +17583,6,25,38,0.0 +17583,41,9.65,13,0.0 +17583,9,97,34,0.0 +17583,26,31.23,31,0.0 +17583,11,21,17,0.0 +17583,56,38,8,0.0 +17583,66,17,42,0.0 +17583,18,62.5,37,0.0 +17583,24,4.5,19,0.0 +17583,35,18,9,0.0 +17583,75,7.75,23,0.0 +17583,12,38,45,0.0 +17583,71,21.5,8,0.0 +17583,13,6,6,0.0 +17583,2,19,28,0.0 +17583,19,9.2,15,0.0 +17583,42,14,33,0.0 +17583,34,14,33,0.0 +17583,47,9.5,4,0.0 +17583,28,45.6,12,0.0 +17583,73,15,37,0.0 +17583,1,18,27,0.0 +17583,32,32,28,0.0 +17583,17,39,30,0.0 +17584,12,38,35,0.0 +17584,26,31.23,42,0.0 +17584,15,15.5,26,0.0 +17584,40,18.4,7,0.0 +17584,75,7.75,39,0.0 +17584,43,46,27,0.0 +17584,5,21.35,24,0.0 +17584,20,81,16,0.0 +17584,60,34,13,0.0 +17584,61,28.5,23,0.0 +17584,47,9.5,44,0.0 +17584,54,7.45,1,0.0 +17584,37,26,30,0.0 +17584,28,45.6,29,0.0 +17584,72,34.8,2,0.0 +17584,3,10,19,0.0 +17584,42,14,41,0.0 +17584,17,39,21,0.0 +17584,48,12.75,41,0.0 +17584,14,23.25,35,0.0 +17584,23,9,43,0.0 +17584,50,16.25,12,0.0 +17584,65,21.05,49,0.0 +17584,67,14,3,0.0 +17584,13,6,49,0.0 +17584,25,14,10,0.0 +17584,59,55,24,0.0 +17584,52,7,18,0.0 +17584,29,123.79,15,0.0 +17584,66,17,12,0.0 +17584,56,38,27,0.0 +17584,8,40,21,0.0 +17584,30,25.89,33,0.0 +17584,49,20,19,0.0 +17584,6,25,46,0.0 +17585,47,9.5,35,0.0 +17585,27,43.9,8,0.0 +17585,46,12,39,0.0 +17585,35,18,6,0.0 +17585,50,16.25,45,0.0 +17585,75,7.75,48,0.0 +17585,67,14,3,0.0 +17585,55,24,18,0.0 +17585,31,12.5,37,0.0 +17585,69,36,2,0.0 +17585,43,46,34,0.0 +17585,66,17,27,0.0 +17585,37,26,34,0.0 +17585,36,19,14,0.0 +17585,72,34.8,16,0.0 +17585,58,13.25,24,0.0 +17585,52,7,1,0.0 +17585,13,6,6,0.0 +17585,56,38,14,0.0 +17585,42,14,10,0.0 +17585,20,81,40,0.0 +17585,45,9.5,44,0.0 +17585,5,21.35,41,0.0 +17585,19,9.2,24,0.0 +17585,39,18,50,0.0 +17585,4,22,40,0.0 +17585,41,9.65,40,0.0 +17585,26,31.23,24,0.0 +17585,14,23.25,26,0.0 +17585,59,55,6,0.0 +17585,60,34,7,0.0 +17585,48,12.75,14,0.0 +17585,65,21.05,41,0.0 +17585,62,49.3,13,0.0 +17585,68,12.5,30,0.0 +17585,18,62.5,38,0.0 +17585,23,9,37,0.0 +17585,7,30,25,0.0 +17586,69,36,32,0.0 +17586,55,24,48,0.0 +17586,73,15,17,0.0 +17586,51,53,49,0.0 +17586,7,30,28,0.0 +17586,63,43.9,37,0.0 +17586,59,55,11,0.0 +17586,37,26,21,0.0 +17586,43,46,5,0.0 +17586,77,13,36,0.0 +17586,2,19,35,0.0 +17586,20,81,22,0.0 +17586,27,43.9,34,0.0 +17586,35,18,23,0.0 +17586,40,18.4,41,0.0 +17586,57,19.5,18,0.0 +17586,15,15.5,24,0.0 +17586,25,14,48,0.0 +17586,74,10,35,0.0 +17586,70,15,12,0.0 +17586,64,33.25,11,0.0 +17586,54,7.45,30,0.0 +17586,4,22,29,0.0 +17586,12,38,30,0.0 +17586,75,7.75,39,0.0 +17586,19,9.2,26,0.0 +17586,29,123.79,34,0.0 +17586,32,32,40,0.0 +17586,21,10,44,0.0 +17587,50,16.25,23,0.0 +17587,55,24,11,0.0 +17587,68,12.5,2,0.0 +17587,38,263.5,24,0.0 +17587,76,18,15,0.0 +17587,37,26,35,0.0 +17587,22,21,28,0.0 +17587,16,17.45,23,0.0 +17587,21,10,40,0.0 +17587,49,20,44,0.0 +17587,69,36,22,0.0 +17587,44,19.45,12,0.0 +17587,56,38,3,0.0 +17587,7,30,13,0.0 +17587,23,9,9,0.0 +17587,77,13,22,0.0 +17587,72,34.8,42,0.0 +17587,48,12.75,47,0.0 +17588,53,32.8,49,0.0 +17588,42,14,34,0.0 +17588,47,9.5,50,0.0 +17588,56,38,26,0.0 +17588,17,39,50,0.0 +17588,77,13,13,0.0 +17588,43,46,25,0.0 +17588,71,21.5,42,0.0 +17588,41,9.65,41,0.0 +17588,72,34.8,45,0.0 +17588,66,17,32,0.0 +17588,60,34,35,0.0 +17588,19,9.2,14,0.0 +17588,55,24,42,0.0 +17588,22,21,24,0.0 +17588,7,30,21,0.0 +17588,20,81,39,0.0 +17588,50,16.25,47,0.0 +17588,3,10,49,0.0 +17588,34,14,19,0.0 +17588,23,9,14,0.0 +17589,52,7,26,0.0 +17589,15,15.5,10,0.0 +17589,25,14,50,0.0 +17589,66,17,39,0.0 +17590,58,13.25,6,0.0 +17590,70,15,31,0.0 +17590,76,18,31,0.0 +17590,57,19.5,50,0.0 +17590,68,12.5,32,0.0 +17590,17,39,38,0.0 +17590,22,21,40,0.0 +17590,64,33.25,18,0.0 +17590,39,18,42,0.0 +17590,11,21,16,0.0 +17590,62,49.3,28,0.0 +17590,43,46,40,0.0 +17590,10,31,29,0.0 +17590,6,25,8,0.0 +17590,54,7.45,27,0.0 +17590,5,21.35,33,0.0 +17590,75,7.75,48,0.0 +17590,63,43.9,46,0.0 +17590,19,9.2,37,0.0 +17590,48,12.75,46,0.0 +17590,67,14,6,0.0 +17590,8,40,48,0.0 +17590,1,18,50,0.0 +17590,41,9.65,45,0.0 +17590,26,31.23,42,0.0 +17590,18,62.5,50,0.0 +17590,34,14,31,0.0 +17590,37,26,46,0.0 +17590,23,9,16,0.0 +17590,15,15.5,37,0.0 +17590,59,55,13,0.0 +17590,61,28.5,49,0.0 +17590,3,10,16,0.0 +17590,31,12.5,39,0.0 +17590,16,17.45,22,0.0 +17590,60,34,2,0.0 +17590,24,4.5,45,0.0 +17590,38,263.5,28,0.0 +17590,27,43.9,9,0.0 +17590,55,24,28,0.0 +17590,13,6,39,0.0 +17590,35,18,1,0.0 +17590,20,81,41,0.0 +17590,44,19.45,44,0.0 +17590,47,9.5,26,0.0 +17590,14,23.25,5,0.0 +17590,49,20,21,0.0 +17590,36,19,9,0.0 +17590,56,38,2,0.0 +17590,50,16.25,1,0.0 +17590,33,2.5,38,0.0 +17590,40,18.4,21,0.0 +17590,53,32.8,37,0.0 +17590,71,21.5,36,0.0 +17590,21,10,38,0.0 +17590,29,123.79,50,0.0 +17590,45,9.5,15,0.0 +17590,28,45.6,7,0.0 +17590,32,32,46,0.0 +17590,65,21.05,23,0.0 +17590,9,97,22,0.0 +17590,12,38,29,0.0 +17590,46,12,28,0.0 +17590,52,7,4,0.0 +17590,42,14,16,0.0 +17590,69,36,6,0.0 +17590,30,25.89,40,0.0 +17590,66,17,43,0.0 +17590,2,19,20,0.0 +17591,76,18,33,0.0 +17591,11,21,50,0.0 +17591,41,9.65,5,0.0 +17591,59,55,35,0.0 +17591,72,34.8,10,0.0 +17591,28,45.6,32,0.0 +17591,5,21.35,15,0.0 +17591,67,14,25,0.0 +17591,1,18,50,0.0 +17591,37,26,8,0.0 +17591,18,62.5,13,0.0 +17591,71,21.5,5,0.0 +17591,46,12,41,0.0 +17591,8,40,24,0.0 +17591,12,38,12,0.0 +17591,17,39,47,0.0 +17591,49,20,32,0.0 +17591,13,6,8,0.0 +17591,48,12.75,47,0.0 +17591,26,31.23,3,0.0 +17591,36,19,19,0.0 +17591,4,22,3,0.0 +17591,75,7.75,41,0.0 +17591,21,10,36,0.0 +17591,43,46,44,0.0 +17591,10,31,31,0.0 +17591,45,9.5,39,0.0 +17591,40,18.4,14,0.0 +17591,62,49.3,11,0.0 +17591,42,14,28,0.0 +17591,51,53,4,0.0 +17591,66,17,20,0.0 +17591,61,28.5,42,0.0 +17591,53,32.8,39,0.0 +17591,14,23.25,31,0.0 +17591,27,43.9,5,0.0 +17591,74,10,42,0.0 +17591,60,34,30,0.0 +17591,54,7.45,3,0.0 +17591,50,16.25,50,0.0 +17591,55,24,26,0.0 +17591,24,4.5,8,0.0 +17591,25,14,35,0.0 +17591,57,19.5,15,0.0 +17591,15,15.5,40,0.0 +17591,20,81,22,0.0 +17591,23,9,33,0.0 +17591,77,13,30,0.0 +17591,64,33.25,7,0.0 +17591,30,25.89,12,0.0 +17591,39,18,2,0.0 +17591,16,17.45,39,0.0 +17591,3,10,33,0.0 +17591,2,19,27,0.0 +17591,19,9.2,46,0.0 +17591,69,36,15,0.0 +17591,58,13.25,29,0.0 +17591,52,7,3,0.0 +17591,29,123.79,39,0.0 +17592,52,7,28,0.0 +17592,16,17.45,45,0.0 +17592,70,15,21,0.0 +17592,67,14,37,0.0 +17592,49,20,28,0.0 +17592,28,45.6,12,0.0 +17592,47,9.5,49,0.0 +17592,21,10,5,0.0 +17592,26,31.23,48,0.0 +17592,34,14,48,0.0 +17592,35,18,16,0.0 +17592,48,12.75,12,0.0 +17592,57,19.5,7,0.0 +17592,3,10,6,0.0 +17592,27,43.9,19,0.0 +17592,4,22,34,0.0 +17592,71,21.5,39,0.0 +17592,11,21,27,0.0 +17592,32,32,44,0.0 +17592,60,34,22,0.0 +17592,74,10,32,0.0 +17592,69,36,18,0.0 +17592,30,25.89,45,0.0 +17592,37,26,21,0.0 +17592,72,34.8,25,0.0 +17592,10,31,49,0.0 +17592,24,4.5,10,0.0 +17592,66,17,26,0.0 +17592,7,30,45,0.0 +17592,45,9.5,39,0.0 +17592,14,23.25,22,0.0 +17592,63,43.9,15,0.0 +17592,73,15,18,0.0 +17592,44,19.45,24,0.0 +17592,5,21.35,20,0.0 +17592,53,32.8,18,0.0 +17592,51,53,47,0.0 +17592,64,33.25,10,0.0 +17592,40,18.4,39,0.0 +17592,12,38,41,0.0 +17592,46,12,19,0.0 +17592,13,6,15,0.0 +17592,17,39,24,0.0 +17592,18,62.5,37,0.0 +17592,59,55,16,0.0 +17592,50,16.25,42,0.0 +17592,68,12.5,15,0.0 +17592,39,18,24,0.0 +17592,15,15.5,41,0.0 +17592,42,14,44,0.0 +17592,22,21,45,0.0 +17592,56,38,45,0.0 +17592,41,9.65,32,0.0 +17592,2,19,27,0.0 +17592,61,28.5,41,0.0 +17592,62,49.3,25,0.0 +17592,65,21.05,27,0.0 +17592,54,7.45,39,0.0 +17592,20,81,11,0.0 +17592,76,18,40,0.0 +17592,6,25,30,0.0 +17592,38,263.5,28,0.0 +17592,9,97,6,0.0 +17592,75,7.75,41,0.0 +17592,43,46,44,0.0 +17592,77,13,35,0.0 +17592,8,40,46,0.0 +17592,58,13.25,43,0.0 +17593,50,16.25,44,0.0 +17593,59,55,20,0.0 +17593,13,6,7,0.0 +17593,68,12.5,36,0.0 +17593,19,9.2,3,0.0 +17593,1,18,2,0.0 +17593,63,43.9,1,0.0 +17593,32,32,27,0.0 +17593,56,38,3,0.0 +17593,53,32.8,17,0.0 +17593,14,23.25,42,0.0 +17593,72,34.8,23,0.0 +17593,4,22,47,0.0 +17593,47,9.5,28,0.0 +17593,62,49.3,45,0.0 +17593,52,7,23,0.0 +17593,65,21.05,32,0.0 +17593,22,21,37,0.0 +17593,25,14,21,0.0 +17593,61,28.5,15,0.0 +17593,69,36,45,0.0 +17593,26,31.23,41,0.0 +17593,57,19.5,15,0.0 +17593,18,62.5,15,0.0 +17593,39,18,39,0.0 +17593,12,38,14,0.0 +17593,42,14,40,0.0 +17593,60,34,39,0.0 +17593,38,263.5,10,0.0 +17593,64,33.25,23,0.0 +17593,41,9.65,22,0.0 +17593,21,10,46,0.0 +17593,48,12.75,38,0.0 +17593,16,17.45,43,0.0 +17593,77,13,48,0.0 +17593,2,19,19,0.0 +17593,28,45.6,11,0.0 +17593,75,7.75,22,0.0 +17593,45,9.5,11,0.0 +17593,71,21.5,10,0.0 +17593,55,24,1,0.0 +17593,40,18.4,38,0.0 +17593,29,123.79,47,0.0 +17593,20,81,12,0.0 +17593,31,12.5,38,0.0 +17593,74,10,4,0.0 +17593,37,26,35,0.0 +17593,23,9,14,0.0 +17593,11,21,26,0.0 +17593,5,21.35,36,0.0 +17593,9,97,12,0.0 +17593,54,7.45,32,0.0 +17593,35,18,50,0.0 +17593,51,53,37,0.0 +17593,34,14,28,0.0 +17593,58,13.25,4,0.0 +17593,6,25,25,0.0 +17593,7,30,37,0.0 +17593,73,15,41,0.0 +17593,43,46,27,0.0 +17593,44,19.45,7,0.0 +17593,15,15.5,27,0.0 +17593,24,4.5,50,0.0 +17593,30,25.89,10,0.0 +17593,46,12,13,0.0 +17593,70,15,22,0.0 +17593,76,18,6,0.0 +17593,33,2.5,47,0.0 +17593,10,31,19,0.0 +17593,17,39,9,0.0 +17594,77,13,30,0.0 +17594,37,26,24,0.0 +17594,22,21,6,0.0 +17594,74,10,10,0.0 +17594,42,14,33,0.0 +17594,13,6,13,0.0 +17594,20,81,13,0.0 +17594,70,15,28,0.0 +17594,10,31,24,0.0 +17594,67,14,39,0.0 +17594,36,19,29,0.0 +17594,24,4.5,46,0.0 +17594,15,15.5,14,0.0 +17594,49,20,27,0.0 +17594,59,55,11,0.0 +17594,32,32,5,0.0 +17594,41,9.65,2,0.0 +17594,25,14,41,0.0 +17594,60,34,48,0.0 +17594,2,19,20,0.0 +17595,49,20,30,0.0 +17595,43,46,50,0.0 +17595,70,15,6,0.0 +17595,36,19,42,0.0 +17595,12,38,30,0.0 +17595,5,21.35,3,0.0 +17595,67,14,47,0.0 +17595,24,4.5,13,0.0 +17595,64,33.25,24,0.0 +17595,2,19,48,0.0 +17595,18,62.5,24,0.0 +17595,76,18,28,0.0 +17595,41,9.65,34,0.0 +17595,13,6,46,0.0 +17595,53,32.8,25,0.0 +17595,7,30,27,0.0 +17595,4,22,45,0.0 +17595,10,31,16,0.0 +17595,38,263.5,50,0.0 +17595,30,25.89,1,0.0 +17595,58,13.25,23,0.0 +17595,77,13,48,0.0 +17595,16,17.45,10,0.0 +17595,42,14,46,0.0 +17595,62,49.3,42,0.0 +17595,3,10,26,0.0 +17595,19,9.2,50,0.0 +17595,21,10,43,0.0 +17595,55,24,17,0.0 +17595,63,43.9,2,0.0 +17595,51,53,31,0.0 +17595,32,32,11,0.0 +17595,48,12.75,3,0.0 +17595,17,39,12,0.0 +17595,72,34.8,21,0.0 +17595,75,7.75,48,0.0 +17595,9,97,31,0.0 +17595,46,12,18,0.0 +17595,23,9,29,0.0 +17595,37,26,44,0.0 +17595,59,55,2,0.0 +17595,1,18,36,0.0 +17595,50,16.25,10,0.0 +17595,20,81,40,0.0 +17595,34,14,15,0.0 +17595,35,18,3,0.0 +17595,66,17,1,0.0 +17596,10,31,27,0.0 +17596,45,9.5,30,0.0 +17596,3,10,44,0.0 +17596,60,34,6,0.0 +17596,24,4.5,39,0.0 +17596,56,38,29,0.0 +17596,9,97,44,0.0 +17596,59,55,12,0.0 +17596,17,39,36,0.0 +17596,23,9,21,0.0 +17596,65,21.05,16,0.0 +17596,14,23.25,39,0.0 +17596,46,12,26,0.0 +17596,72,34.8,30,0.0 +17596,11,21,39,0.0 +17596,37,26,31,0.0 +17596,58,13.25,20,0.0 +17596,53,32.8,50,0.0 +17596,52,7,1,0.0 +17596,68,12.5,14,0.0 +17596,73,15,25,0.0 +17596,6,25,36,0.0 +17596,25,14,21,0.0 +17596,71,21.5,43,0.0 +17596,43,46,11,0.0 +17596,13,6,25,0.0 +17596,47,9.5,45,0.0 +17596,66,17,10,0.0 +17596,36,19,47,0.0 +17596,35,18,47,0.0 +17596,50,16.25,42,0.0 +17596,41,9.65,19,0.0 +17596,48,12.75,16,0.0 +17596,5,21.35,48,0.0 +17596,8,40,49,0.0 +17596,12,38,21,0.0 +17596,34,14,4,0.0 +17596,7,30,18,0.0 +17596,54,7.45,4,0.0 +17596,16,17.45,39,0.0 +17596,19,9.2,38,0.0 +17596,40,18.4,21,0.0 +17596,64,33.25,4,0.0 +17596,1,18,49,0.0 +17596,18,62.5,20,0.0 +17596,44,19.45,8,0.0 +17596,38,263.5,24,0.0 +17596,21,10,23,0.0 +17596,31,12.5,41,0.0 +17596,75,7.75,35,0.0 +17596,27,43.9,22,0.0 +17596,22,21,30,0.0 +17596,70,15,47,0.0 +17596,15,15.5,39,0.0 +17596,62,49.3,20,0.0 +17596,28,45.6,11,0.0 +17596,49,20,10,0.0 +17596,39,18,45,0.0 +17596,4,22,32,0.0 +17596,29,123.79,49,0.0 +17596,51,53,48,0.0 +17596,26,31.23,47,0.0 +17596,76,18,11,0.0 +17596,67,14,38,0.0 +17596,63,43.9,45,0.0 +17596,77,13,7,0.0 +17596,2,19,48,0.0 +17596,57,19.5,41,0.0 +17596,74,10,44,0.0 +17596,33,2.5,45,0.0 +17596,20,81,47,0.0 +17596,69,36,48,0.0 +17596,42,14,37,0.0 +17596,55,24,46,0.0 +17596,30,25.89,28,0.0 +17596,61,28.5,10,0.0 +17596,32,32,1,0.0 +17597,2,19,6,0.0 +17597,57,19.5,25,0.0 +17597,29,123.79,11,0.0 +17597,64,33.25,39,0.0 +17597,22,21,25,0.0 +17597,5,21.35,38,0.0 +17597,30,25.89,45,0.0 +17597,66,17,8,0.0 +17597,71,21.5,34,0.0 +17597,60,34,6,0.0 +17597,62,49.3,31,0.0 +17597,40,18.4,28,0.0 +17597,15,15.5,34,0.0 +17597,63,43.9,7,0.0 +17597,77,13,15,0.0 +17597,3,10,45,0.0 +17597,20,81,20,0.0 +17597,49,20,5,0.0 +17597,56,38,10,0.0 +17597,34,14,35,0.0 +17597,19,9.2,39,0.0 +17597,54,7.45,10,0.0 +17597,68,12.5,43,0.0 +17597,47,9.5,38,0.0 +17597,44,19.45,29,0.0 +17597,37,26,48,0.0 +17597,16,17.45,13,0.0 +17597,61,28.5,7,0.0 +17597,6,25,44,0.0 +17597,75,7.75,25,0.0 +17597,9,97,21,0.0 +17597,45,9.5,32,0.0 +17597,4,22,1,0.0 +17597,21,10,38,0.0 +17597,13,6,17,0.0 +17597,69,36,4,0.0 +17597,12,38,40,0.0 +17597,55,24,32,0.0 +17597,76,18,13,0.0 +17597,7,30,50,0.0 +17597,41,9.65,15,0.0 +17597,24,4.5,31,0.0 +17597,73,15,12,0.0 +17597,25,14,13,0.0 +17597,18,62.5,15,0.0 +17597,50,16.25,7,0.0 +17597,8,40,25,0.0 +17597,74,10,4,0.0 +17597,39,18,4,0.0 +17597,14,23.25,29,0.0 +17597,42,14,13,0.0 +17597,48,12.75,19,0.0 +17597,58,13.25,23,0.0 +17597,51,53,13,0.0 +17597,46,12,24,0.0 +17597,38,263.5,39,0.0 +17597,28,45.6,38,0.0 +17597,70,15,48,0.0 +17597,65,21.05,12,0.0 +17597,36,19,47,0.0 +17597,43,46,33,0.0 +17597,59,55,22,0.0 +17598,35,18,48,0.0 +17598,22,21,38,0.0 +17598,33,2.5,46,0.0 +17598,67,14,47,0.0 +17598,16,17.45,31,0.0 +17598,34,14,42,0.0 +17598,68,12.5,9,0.0 +17598,39,18,9,0.0 +17598,7,30,26,0.0 +17598,49,20,42,0.0 +17598,74,10,31,0.0 +17598,51,53,25,0.0 +17598,9,97,7,0.0 +17598,31,12.5,9,0.0 +17598,24,4.5,16,0.0 +17598,50,16.25,19,0.0 +17598,43,46,37,0.0 +17598,21,10,43,0.0 +17598,72,34.8,15,0.0 +17598,48,12.75,40,0.0 +17598,73,15,5,0.0 +17598,62,49.3,4,0.0 +17598,41,9.65,2,0.0 +17598,10,31,12,0.0 +17598,70,15,14,0.0 +17598,26,31.23,45,0.0 +17598,17,39,5,0.0 +17598,36,19,32,0.0 +17598,13,6,45,0.0 +17598,14,23.25,33,0.0 +17598,12,38,40,0.0 +17598,44,19.45,33,0.0 +17598,56,38,31,0.0 +17598,25,14,8,0.0 +17598,18,62.5,30,0.0 +17598,28,45.6,31,0.0 +17598,23,9,24,0.0 +17598,20,81,49,0.0 +17599,49,20,41,0.0 +17599,51,53,35,0.0 +17599,18,62.5,39,0.0 +17599,62,49.3,4,0.0 +17599,58,13.25,10,0.0 +17599,13,6,14,0.0 +17599,47,9.5,30,0.0 +17599,71,21.5,47,0.0 +17599,57,19.5,39,0.0 +17599,41,9.65,32,0.0 +17599,60,34,19,0.0 +17599,2,19,22,0.0 +17599,30,25.89,31,0.0 +17599,48,12.75,26,0.0 +17599,10,31,25,0.0 +17599,76,18,41,0.0 +17599,11,21,15,0.0 +17599,39,18,47,0.0 +17599,28,45.6,21,0.0 +17599,45,9.5,15,0.0 +17599,6,25,43,0.0 +17599,20,81,3,0.0 +17599,8,40,44,0.0 +17599,55,24,49,0.0 +17599,35,18,36,0.0 +17599,36,19,8,0.0 +17599,56,38,33,0.0 +17599,75,7.75,24,0.0 +17599,64,33.25,32,0.0 +17599,27,43.9,35,0.0 +17599,21,10,25,0.0 +17599,19,9.2,42,0.0 +17599,32,32,11,0.0 +17599,5,21.35,20,0.0 +17599,46,12,36,0.0 +17599,38,263.5,16,0.0 +17599,14,23.25,43,0.0 +17599,15,15.5,6,0.0 +17599,63,43.9,17,0.0 +17599,29,123.79,15,0.0 +17599,34,14,40,0.0 +17599,42,14,48,0.0 +17599,4,22,35,0.0 +17599,17,39,14,0.0 +17599,73,15,8,0.0 +17599,67,14,26,0.0 +17599,1,18,17,0.0 +17599,31,12.5,1,0.0 +17599,77,13,35,0.0 +17599,50,16.25,17,0.0 +17599,33,2.5,11,0.0 +17599,59,55,22,0.0 +17599,26,31.23,23,0.0 +17599,16,17.45,43,0.0 +17599,52,7,47,0.0 +17599,23,9,49,0.0 +17599,43,46,19,0.0 +17599,69,36,36,0.0 +17599,61,28.5,31,0.0 +17599,37,26,43,0.0 +17599,3,10,2,0.0 +17599,74,10,5,0.0 +17599,53,32.8,7,0.0 +17599,40,18.4,41,0.0 +17599,7,30,4,0.0 +17599,66,17,19,0.0 +17599,22,21,21,0.0 +17599,9,97,40,0.0 +17599,54,7.45,16,0.0 +17599,65,21.05,29,0.0 +17599,72,34.8,9,0.0 +17599,70,15,3,0.0 +17599,24,4.5,36,0.0 +17599,25,14,13,0.0 +17599,44,19.45,35,0.0 +17599,68,12.5,18,0.0 +17599,12,38,7,0.0 +17600,4,22,37,0.0 +17600,67,14,6,0.0 +17600,72,34.8,5,0.0 +17600,60,34,6,0.0 +17600,10,31,43,0.0 +17600,65,21.05,35,0.0 +17600,59,55,16,0.0 +17600,33,2.5,34,0.0 +17600,14,23.25,7,0.0 +17600,22,21,46,0.0 +17600,49,20,21,0.0 +17600,66,17,42,0.0 +17600,23,9,36,0.0 +17600,39,18,29,0.0 +17600,1,18,29,0.0 +17600,20,81,29,0.0 +17600,50,16.25,12,0.0 +17600,37,26,3,0.0 +17601,29,123.79,41,0.0 +17601,28,45.6,27,0.0 +17601,14,23.25,46,0.0 +17601,33,2.5,30,0.0 +17601,8,40,5,0.0 +17601,38,263.5,30,0.0 +17601,55,24,21,0.0 +17601,51,53,8,0.0 +17601,41,9.65,38,0.0 +17601,44,19.45,23,0.0 +17601,67,14,10,0.0 +17601,3,10,45,0.0 +17601,12,38,37,0.0 +17601,46,12,24,0.0 +17601,56,38,43,0.0 +17601,72,34.8,20,0.0 +17601,40,18.4,20,0.0 +17601,27,43.9,2,0.0 +17601,65,21.05,15,0.0 +17601,23,9,34,0.0 +17601,50,16.25,28,0.0 +17601,7,30,40,0.0 +17601,60,34,6,0.0 +17601,26,31.23,27,0.0 +17601,59,55,20,0.0 +17601,68,12.5,27,0.0 +17601,31,12.5,45,0.0 +17601,15,15.5,25,0.0 +17601,42,14,48,0.0 +17601,36,19,12,0.0 +17601,77,13,36,0.0 +17601,57,19.5,18,0.0 +17601,66,17,36,0.0 +17601,70,15,2,0.0 +17601,32,32,50,0.0 +17601,10,31,14,0.0 +17601,69,36,19,0.0 +17601,63,43.9,45,0.0 +17601,17,39,48,0.0 +17601,54,7.45,24,0.0 +17601,75,7.75,14,0.0 +17601,49,20,42,0.0 +17601,53,32.8,6,0.0 +17601,37,26,24,0.0 +17601,4,22,29,0.0 +17601,39,18,46,0.0 +17601,19,9.2,2,0.0 +17601,76,18,30,0.0 +17601,2,19,22,0.0 +17601,45,9.5,20,0.0 +17601,34,14,3,0.0 +17601,22,21,42,0.0 +17601,43,46,22,0.0 +17601,9,97,4,0.0 +17601,35,18,4,0.0 +17601,24,4.5,35,0.0 +17601,16,17.45,44,0.0 +17601,30,25.89,33,0.0 +17601,6,25,49,0.0 +17601,73,15,26,0.0 +17601,13,6,12,0.0 +17601,47,9.5,43,0.0 +17601,74,10,10,0.0 +17601,62,49.3,35,0.0 +17601,25,14,18,0.0 +17601,1,18,25,0.0 +17601,71,21.5,34,0.0 +17601,5,21.35,7,0.0 +17601,48,12.75,5,0.0 +17601,64,33.25,9,0.0 +17601,21,10,17,0.0 +17602,20,81,18,0.0 +17602,27,43.9,32,0.0 +17602,33,2.5,38,0.0 +17602,29,123.79,45,0.0 +17602,49,20,30,0.0 +17602,46,12,20,0.0 +17602,67,14,26,0.0 +17602,31,12.5,29,0.0 +17602,40,18.4,12,0.0 +17602,5,21.35,22,0.0 +17602,26,31.23,43,0.0 +17602,22,21,13,0.0 +17602,30,25.89,40,0.0 +17602,51,53,45,0.0 +17602,11,21,37,0.0 +17602,7,30,21,0.0 +17602,65,21.05,24,0.0 +17602,74,10,41,0.0 +17602,17,39,30,0.0 +17602,1,18,2,0.0 +17602,53,32.8,42,0.0 +17602,28,45.6,3,0.0 +17602,42,14,34,0.0 +17602,75,7.75,11,0.0 +17602,41,9.65,10,0.0 +17602,8,40,45,0.0 +17602,70,15,48,0.0 +17602,4,22,14,0.0 +17602,38,263.5,31,0.0 +17602,9,97,10,0.0 +17603,47,9.5,10,0.0 +17603,10,31,24,0.0 +17603,2,19,38,0.0 +17603,6,25,50,0.0 +17603,65,21.05,13,0.0 +17603,74,10,25,0.0 +17603,25,14,28,0.0 +17603,49,20,6,0.0 +17603,28,45.6,24,0.0 +17603,73,15,44,0.0 +17603,64,33.25,41,0.0 +17603,32,32,38,0.0 +17603,37,26,14,0.0 +17603,17,39,15,0.0 +17603,13,6,36,0.0 +17603,39,18,21,0.0 +17603,5,21.35,6,0.0 +17603,30,25.89,19,0.0 +17603,21,10,25,0.0 +17603,52,7,42,0.0 +17603,55,24,29,0.0 +17603,8,40,16,0.0 +17603,31,12.5,21,0.0 +17603,27,43.9,23,0.0 +17603,57,19.5,36,0.0 +17603,71,21.5,48,0.0 +17603,18,62.5,21,0.0 +17603,45,9.5,4,0.0 +17603,35,18,28,0.0 +17603,53,32.8,47,0.0 +17603,66,17,1,0.0 +17603,59,55,21,0.0 +17603,50,16.25,38,0.0 +17603,67,14,15,0.0 +17603,26,31.23,17,0.0 +17603,11,21,46,0.0 +17603,16,17.45,1,0.0 +17603,14,23.25,7,0.0 +17603,23,9,25,0.0 +17603,72,34.8,30,0.0 +17603,60,34,17,0.0 +17603,3,10,37,0.0 +17603,7,30,48,0.0 +17603,43,46,22,0.0 +17603,20,81,26,0.0 +17603,33,2.5,14,0.0 +17603,38,263.5,24,0.0 +17603,42,14,24,0.0 +17603,44,19.45,35,0.0 +17603,4,22,39,0.0 +17603,77,13,18,0.0 +17603,62,49.3,4,0.0 +17603,68,12.5,27,0.0 +17603,61,28.5,13,0.0 +17603,1,18,25,0.0 +17603,12,38,40,0.0 +17603,54,7.45,42,0.0 +17603,69,36,2,0.0 +17603,70,15,26,0.0 +17603,15,15.5,25,0.0 +17603,51,53,30,0.0 +17603,9,97,47,0.0 +17603,63,43.9,1,0.0 +17603,24,4.5,11,0.0 +17603,48,12.75,9,0.0 +17603,56,38,10,0.0 +17603,46,12,13,0.0 +17603,76,18,22,0.0 +17603,41,9.65,49,0.0 +17603,34,14,6,0.0 +17603,40,18.4,23,0.0 +17603,75,7.75,2,0.0 +17604,40,18.4,31,0.0 +17604,69,36,4,0.0 +17604,50,16.25,37,0.0 +17604,62,49.3,38,0.0 +17604,49,20,15,0.0 +17604,10,31,20,0.0 +17604,52,7,3,0.0 +17604,24,4.5,1,0.0 +17604,47,9.5,10,0.0 +17604,8,40,23,0.0 +17604,48,12.75,21,0.0 +17604,4,22,41,0.0 +17604,68,12.5,15,0.0 +17604,15,15.5,16,0.0 +17605,65,21.05,44,0.0 +17605,51,53,49,0.0 +17605,21,10,10,0.0 +17605,31,12.5,27,0.0 +17605,26,31.23,25,0.0 +17605,53,32.8,3,0.0 +17605,29,123.79,29,0.0 +17605,13,6,35,0.0 +17605,10,31,16,0.0 +17605,35,18,29,0.0 +17605,8,40,12,0.0 +17605,61,28.5,13,0.0 +17605,42,14,29,0.0 +17605,11,21,40,0.0 +17605,74,10,24,0.0 +17605,24,4.5,24,0.0 +17606,30,25.89,5,0.0 +17606,50,16.25,46,0.0 +17606,1,18,35,0.0 +17606,26,31.23,50,0.0 +17606,13,6,47,0.0 +17606,64,33.25,33,0.0 +17606,31,12.5,24,0.0 +17606,61,28.5,1,0.0 +17606,46,12,14,0.0 +17606,19,9.2,44,0.0 +17606,23,9,38,0.0 +17606,17,39,11,0.0 +17606,45,9.5,3,0.0 +17606,34,14,15,0.0 +17606,36,19,1,0.0 +17606,52,7,28,0.0 +17606,8,40,26,0.0 +17606,35,18,14,0.0 +17606,18,62.5,21,0.0 +17606,47,9.5,7,0.0 +17606,14,23.25,45,0.0 +17606,21,10,5,0.0 +17606,43,46,6,0.0 +17606,51,53,43,0.0 +17606,24,4.5,23,0.0 +17606,15,15.5,13,0.0 +17606,6,25,18,0.0 +17606,55,24,28,0.0 +17606,37,26,2,0.0 +17606,75,7.75,26,0.0 +17606,54,7.45,36,0.0 +17606,22,21,34,0.0 +17606,41,9.65,35,0.0 +17606,57,19.5,23,0.0 +17606,74,10,12,0.0 +17606,9,97,26,0.0 +17606,62,49.3,50,0.0 +17606,48,12.75,13,0.0 +17606,59,55,47,0.0 +17606,58,13.25,43,0.0 +17606,72,34.8,13,0.0 +17606,60,34,11,0.0 +17606,70,15,10,0.0 +17606,42,14,30,0.0 +17606,10,31,46,0.0 +17606,66,17,34,0.0 +17606,32,32,26,0.0 +17606,33,2.5,6,0.0 +17606,56,38,41,0.0 +17606,69,36,16,0.0 +17606,29,123.79,33,0.0 +17606,49,20,35,0.0 +17606,38,263.5,25,0.0 +17606,5,21.35,14,0.0 +17606,76,18,38,0.0 +17606,53,32.8,21,0.0 +17606,77,13,12,0.0 +17606,40,18.4,11,0.0 +17606,12,38,30,0.0 +17606,2,19,19,0.0 +17606,73,15,44,0.0 +17606,67,14,30,0.0 +17606,25,14,20,0.0 +17606,4,22,34,0.0 +17606,68,12.5,23,0.0 +17606,16,17.45,6,0.0 +17606,44,19.45,36,0.0 +17606,27,43.9,24,0.0 +17606,7,30,2,0.0 +17606,39,18,2,0.0 +17606,28,45.6,31,0.0 +17607,61,28.5,2,0.0 +17607,21,10,45,0.0 +17607,66,17,12,0.0 +17607,17,39,10,0.0 +17607,11,21,10,0.0 +17607,2,19,28,0.0 +17607,27,43.9,50,0.0 +17607,73,15,11,0.0 +17607,53,32.8,21,0.0 +17608,35,18,23,0.0 +17608,8,40,24,0.0 +17608,57,19.5,19,0.0 +17608,53,32.8,25,0.0 +17608,63,43.9,25,0.0 +17608,28,45.6,22,0.0 +17608,77,13,29,0.0 +17608,43,46,23,0.0 +17608,58,13.25,29,0.0 +17608,21,10,28,0.0 +17608,27,43.9,21,0.0 +17608,70,15,14,0.0 +17608,67,14,1,0.0 +17608,37,26,36,0.0 +17608,6,25,12,0.0 +17608,32,32,2,0.0 +17608,52,7,31,0.0 +17608,31,12.5,32,0.0 +17608,13,6,25,0.0 +17608,41,9.65,32,0.0 +17608,30,25.89,7,0.0 +17608,51,53,26,0.0 +17608,11,21,27,0.0 +17608,76,18,29,0.0 +17608,7,30,2,0.0 +17608,22,21,25,0.0 +17608,25,14,39,0.0 +17608,19,9.2,6,0.0 +17608,39,18,12,0.0 +17608,33,2.5,26,0.0 +17608,71,21.5,23,0.0 +17608,14,23.25,1,0.0 +17608,17,39,50,0.0 +17608,50,16.25,21,0.0 +17608,55,24,11,0.0 +17608,5,21.35,50,0.0 +17608,42,14,22,0.0 +17609,32,32,15,0.0 +17609,9,97,31,0.0 +17609,11,21,26,0.0 +17610,39,18,31,0.0 +17610,16,17.45,35,0.0 +17610,6,25,40,0.0 +17610,74,10,24,0.0 +17610,14,23.25,19,0.0 +17610,76,18,32,0.0 +17610,22,21,21,0.0 +17610,12,38,39,0.0 +17610,25,14,20,0.0 +17610,20,81,46,0.0 +17610,23,9,14,0.0 +17610,35,18,24,0.0 +17610,70,15,32,0.0 +17610,61,28.5,50,0.0 +17610,37,26,32,0.0 +17610,31,12.5,16,0.0 +17610,67,14,48,0.0 +17610,46,12,18,0.0 +17610,68,12.5,40,0.0 +17610,44,19.45,50,0.0 +17610,33,2.5,12,0.0 +17610,34,14,18,0.0 +17610,30,25.89,41,0.0 +17610,57,19.5,21,0.0 +17610,11,21,9,0.0 +17610,36,19,19,0.0 +17610,48,12.75,28,0.0 +17610,60,34,43,0.0 +17610,26,31.23,46,0.0 +17610,50,16.25,39,0.0 +17610,21,10,6,0.0 +17610,43,46,46,0.0 +17610,5,21.35,22,0.0 +17610,24,4.5,10,0.0 +17610,59,55,34,0.0 +17610,51,53,11,0.0 +17610,72,34.8,37,0.0 +17610,69,36,27,0.0 +17610,77,13,7,0.0 +17610,2,19,7,0.0 +17610,62,49.3,25,0.0 +17610,7,30,30,0.0 +17610,1,18,46,0.0 +17610,40,18.4,10,0.0 +17610,29,123.79,4,0.0 +17610,4,22,4,0.0 +17610,38,263.5,25,0.0 +17611,34,14,30,0.0 +17611,26,31.23,25,0.0 +17611,38,263.5,38,0.0 +17611,6,25,15,0.0 +17611,55,24,11,0.0 +17611,41,9.65,5,0.0 +17611,70,15,44,0.0 +17611,45,9.5,24,0.0 +17611,35,18,42,0.0 +17611,2,19,13,0.0 +17611,73,15,40,0.0 +17611,57,19.5,45,0.0 +17611,29,123.79,15,0.0 +17611,10,31,11,0.0 +17611,54,7.45,2,0.0 +17611,25,14,2,0.0 +17611,24,4.5,23,0.0 +17611,11,21,40,0.0 +17611,42,14,16,0.0 +17611,33,2.5,17,0.0 +17611,44,19.45,21,0.0 +17611,40,18.4,47,0.0 +17611,46,12,40,0.0 +17611,74,10,11,0.0 +17611,51,53,2,0.0 +17611,39,18,32,0.0 +17611,30,25.89,14,0.0 +17611,14,23.25,41,0.0 +17611,49,20,14,0.0 +17611,56,38,38,0.0 +17611,60,34,25,0.0 +17611,28,45.6,15,0.0 +17611,62,49.3,36,0.0 +17611,5,21.35,36,0.0 +17611,15,15.5,1,0.0 +17611,37,26,20,0.0 +17611,22,21,18,0.0 +17611,53,32.8,20,0.0 +17611,65,21.05,43,0.0 +17611,66,17,44,0.0 +17612,50,16.25,2,0.0 +17612,63,43.9,50,0.0 +17612,41,9.65,39,0.0 +17612,22,21,6,0.0 +17612,12,38,25,0.0 +17612,66,17,3,0.0 +17612,54,7.45,26,0.0 +17613,27,43.9,21,0.0 +17613,66,17,39,0.0 +17613,71,21.5,18,0.0 +17613,8,40,5,0.0 +17613,37,26,48,0.0 +17613,30,25.89,37,0.0 +17613,2,19,14,0.0 +17613,16,17.45,32,0.0 +17613,59,55,3,0.0 +17613,64,33.25,38,0.0 +17613,38,263.5,40,0.0 +17613,6,25,34,0.0 +17613,5,21.35,36,0.0 +17613,43,46,46,0.0 +17613,42,14,49,0.0 +17613,3,10,33,0.0 +17613,10,31,23,0.0 +17613,9,97,4,0.0 +17613,34,14,17,0.0 +17613,54,7.45,17,0.0 +17613,51,53,6,0.0 +17613,65,21.05,47,0.0 +17613,28,45.6,47,0.0 +17613,23,9,13,0.0 +17613,13,6,45,0.0 +17613,22,21,16,0.0 +17613,20,81,48,0.0 +17613,68,12.5,1,0.0 +17613,4,22,13,0.0 +17613,73,15,19,0.0 +17613,11,21,31,0.0 +17613,56,38,3,0.0 +17613,67,14,18,0.0 +17613,77,13,43,0.0 +17613,58,13.25,21,0.0 +17613,39,18,14,0.0 +17613,18,62.5,6,0.0 +17613,41,9.65,10,0.0 +17613,57,19.5,49,0.0 +17613,32,32,19,0.0 +17613,61,28.5,50,0.0 +17613,72,34.8,46,0.0 +17614,58,13.25,47,0.0 +17614,25,14,21,0.0 +17614,4,22,16,0.0 +17614,41,9.65,50,0.0 +17614,13,6,48,0.0 +17614,2,19,7,0.0 +17614,23,9,24,0.0 +17614,42,14,33,0.0 +17614,73,15,13,0.0 +17614,9,97,32,0.0 +17614,27,43.9,14,0.0 +17614,31,12.5,37,0.0 +17614,50,16.25,26,0.0 +17614,46,12,1,0.0 +17614,12,38,40,0.0 +17614,64,33.25,35,0.0 +17615,9,97,16,0.0 +17615,26,31.23,12,0.0 +17615,43,46,4,0.0 +17615,59,55,50,0.0 +17615,21,10,33,0.0 +17615,41,9.65,23,0.0 +17615,39,18,27,0.0 +17615,75,7.75,47,0.0 +17615,20,81,27,0.0 +17615,4,22,47,0.0 +17615,14,23.25,24,0.0 +17615,45,9.5,34,0.0 +17615,34,14,23,0.0 +17615,68,12.5,9,0.0 +17615,74,10,20,0.0 +17616,20,81,28,0.0 +17616,49,20,25,0.0 +17616,68,12.5,19,0.0 +17616,37,26,6,0.0 +17616,27,43.9,37,0.0 +17616,25,14,35,0.0 +17616,31,12.5,16,0.0 +17616,38,263.5,22,0.0 +17616,6,25,31,0.0 +17616,63,43.9,47,0.0 +17616,10,31,20,0.0 +17616,62,49.3,20,0.0 +17616,55,24,13,0.0 +17616,1,18,8,0.0 +17616,48,12.75,33,0.0 +17616,69,36,13,0.0 +17617,10,31,32,0.0 +17617,43,46,43,0.0 +17617,57,19.5,33,0.0 +17617,30,25.89,10,0.0 +17617,9,97,42,0.0 +17617,60,34,27,0.0 +17617,56,38,42,0.0 +17617,34,14,16,0.0 +17617,27,43.9,20,0.0 +17617,3,10,12,0.0 +17617,42,14,26,0.0 +17617,20,81,36,0.0 +17617,40,18.4,1,0.0 +17617,41,9.65,3,0.0 +17617,17,39,8,0.0 +17617,1,18,2,0.0 +17617,21,10,13,0.0 +17617,53,32.8,6,0.0 +17617,77,13,13,0.0 +17617,50,16.25,31,0.0 +17617,8,40,29,0.0 +17618,9,97,36,0.0 +17618,29,123.79,13,0.0 +17618,70,15,25,0.0 +17618,59,55,14,0.0 +17618,65,21.05,28,0.0 +17618,11,21,23,0.0 +17618,74,10,4,0.0 +17618,68,12.5,40,0.0 +17618,14,23.25,27,0.0 +17618,7,30,23,0.0 +17618,26,31.23,24,0.0 +17618,18,62.5,3,0.0 +17618,22,21,37,0.0 +17618,69,36,13,0.0 +17618,12,38,24,0.0 +17618,38,263.5,3,0.0 +17618,63,43.9,11,0.0 +17618,46,12,46,0.0 +17618,75,7.75,28,0.0 +17618,58,13.25,25,0.0 +17618,3,10,44,0.0 +17618,48,12.75,4,0.0 +17618,41,9.65,34,0.0 +17618,42,14,47,0.0 +17618,13,6,19,0.0 +17618,56,38,50,0.0 +17618,61,28.5,6,0.0 +17618,39,18,45,0.0 +17618,24,4.5,19,0.0 +17618,15,15.5,21,0.0 +17618,37,26,34,0.0 +17618,43,46,30,0.0 +17618,10,31,25,0.0 +17618,21,10,46,0.0 +17618,19,9.2,8,0.0 +17618,67,14,22,0.0 +17618,34,14,4,0.0 +17618,25,14,17,0.0 +17619,67,14,7,0.0 +17619,66,17,31,0.0 +17619,3,10,28,0.0 +17619,56,38,34,0.0 +17619,1,18,47,0.0 +17619,36,19,37,0.0 +17619,18,62.5,18,0.0 +17619,30,25.89,5,0.0 +17619,24,4.5,36,0.0 +17619,50,16.25,28,0.0 +17619,16,17.45,7,0.0 +17619,59,55,24,0.0 +17619,64,33.25,46,0.0 +17619,45,9.5,11,0.0 +17619,27,43.9,50,0.0 +17619,10,31,26,0.0 +17619,23,9,11,0.0 +17619,76,18,3,0.0 +17619,43,46,12,0.0 +17619,12,38,21,0.0 +17619,69,36,12,0.0 +17619,22,21,43,0.0 +17619,15,15.5,23,0.0 +17619,71,21.5,15,0.0 +17619,73,15,32,0.0 +17619,74,10,44,0.0 +17619,20,81,39,0.0 +17619,63,43.9,34,0.0 +17619,75,7.75,7,0.0 +17619,77,13,12,0.0 +17619,51,53,15,0.0 +17619,2,19,9,0.0 +17619,62,49.3,7,0.0 +17619,34,14,41,0.0 +17619,61,28.5,44,0.0 +17619,13,6,45,0.0 +17619,46,12,29,0.0 +17619,53,32.8,7,0.0 +17619,65,21.05,25,0.0 +17619,68,12.5,21,0.0 +17619,11,21,37,0.0 +17619,21,10,26,0.0 +17619,6,25,8,0.0 +17619,49,20,2,0.0 +17619,70,15,48,0.0 +17619,7,30,40,0.0 +17619,40,18.4,29,0.0 +17619,26,31.23,12,0.0 +17619,17,39,10,0.0 +17619,57,19.5,38,0.0 +17619,19,9.2,24,0.0 +17619,25,14,7,0.0 +17619,52,7,26,0.0 +17619,9,97,46,0.0 +17619,42,14,14,0.0 +17619,8,40,27,0.0 +17619,54,7.45,18,0.0 +17619,58,13.25,47,0.0 +17619,33,2.5,35,0.0 +17619,14,23.25,33,0.0 +17619,31,12.5,4,0.0 +17619,28,45.6,27,0.0 +17619,5,21.35,10,0.0 +17619,39,18,45,0.0 +17619,29,123.79,10,0.0 +17619,47,9.5,40,0.0 +17620,9,97,7,0.0 +17620,40,18.4,27,0.0 +17620,18,62.5,31,0.0 +17620,55,24,27,0.0 +17620,75,7.75,48,0.0 +17620,61,28.5,48,0.0 +17620,76,18,10,0.0 +17620,46,12,12,0.0 +17620,16,17.45,39,0.0 +17620,41,9.65,30,0.0 +17620,33,2.5,42,0.0 +17620,28,45.6,5,0.0 +17620,5,21.35,13,0.0 +17620,14,23.25,19,0.0 +17620,77,13,34,0.0 +17620,70,15,48,0.0 +17620,34,14,26,0.0 +17620,8,40,43,0.0 +17620,49,20,9,0.0 +17620,30,25.89,12,0.0 +17620,57,19.5,18,0.0 +17620,48,12.75,49,0.0 +17620,50,16.25,23,0.0 +17620,21,10,2,0.0 +17620,54,7.45,29,0.0 +17620,4,22,39,0.0 +17620,71,21.5,48,0.0 +17620,10,31,5,0.0 +17620,62,49.3,11,0.0 +17620,67,14,50,0.0 +17620,38,263.5,26,0.0 +17620,45,9.5,5,0.0 +17620,73,15,21,0.0 +17620,58,13.25,42,0.0 +17620,32,32,28,0.0 +17620,60,34,25,0.0 +17620,2,19,19,0.0 +17620,72,34.8,45,0.0 +17620,69,36,15,0.0 +17620,35,18,38,0.0 +17620,27,43.9,30,0.0 +17620,22,21,36,0.0 +17620,59,55,7,0.0 +17620,63,43.9,42,0.0 +17620,44,19.45,10,0.0 +17620,1,18,35,0.0 +17620,17,39,30,0.0 +17620,31,12.5,26,0.0 +17620,20,81,25,0.0 +17620,64,33.25,16,0.0 +17620,11,21,21,0.0 +17620,6,25,11,0.0 +17620,15,15.5,26,0.0 +17620,47,9.5,31,0.0 +17620,25,14,4,0.0 +17620,53,32.8,35,0.0 +17620,56,38,40,0.0 +17620,13,6,47,0.0 +17620,7,30,21,0.0 +17620,74,10,33,0.0 +17620,26,31.23,32,0.0 +17620,24,4.5,36,0.0 +17620,19,9.2,3,0.0 +17620,43,46,13,0.0 +17620,29,123.79,36,0.0 +17620,52,7,3,0.0 +17620,36,19,9,0.0 +17620,65,21.05,48,0.0 +17620,66,17,4,0.0 +17620,3,10,17,0.0 +17621,37,26,50,0.0 +17621,50,16.25,24,0.0 +17621,29,123.79,11,0.0 +17621,55,24,41,0.0 +17621,19,9.2,49,0.0 +17621,22,21,46,0.0 +17622,41,9.65,8,0.0 +17622,59,55,22,0.0 +17622,55,24,46,0.0 +17622,3,10,14,0.0 +17622,77,13,24,0.0 +17622,48,12.75,38,0.0 +17622,54,7.45,23,0.0 +17622,51,53,33,0.0 +17622,67,14,21,0.0 +17622,22,21,23,0.0 +17622,65,21.05,15,0.0 +17622,11,21,24,0.0 +17622,6,25,13,0.0 +17622,23,9,2,0.0 +17622,69,36,18,0.0 +17622,26,31.23,18,0.0 +17622,60,34,34,0.0 +17622,31,12.5,6,0.0 +17622,36,19,37,0.0 +17622,42,14,7,0.0 +17622,4,22,13,0.0 +17622,35,18,7,0.0 +17622,20,81,28,0.0 +17622,57,19.5,18,0.0 +17622,45,9.5,13,0.0 +17622,14,23.25,2,0.0 +17622,37,26,28,0.0 +17622,61,28.5,45,0.0 +17622,10,31,4,0.0 +17622,52,7,43,0.0 +17622,63,43.9,36,0.0 +17622,53,32.8,13,0.0 +17622,71,21.5,8,0.0 +17622,66,17,14,0.0 +17622,75,7.75,40,0.0 +17622,9,97,23,0.0 +17622,2,19,21,0.0 +17622,7,30,13,0.0 +17622,44,19.45,46,0.0 +17622,50,16.25,38,0.0 +17622,49,20,23,0.0 +17622,8,40,4,0.0 +17622,1,18,23,0.0 +17622,24,4.5,28,0.0 +17622,70,15,4,0.0 +17622,25,14,24,0.0 +17622,46,12,17,0.0 +17622,17,39,50,0.0 +17622,62,49.3,46,0.0 +17622,13,6,14,0.0 +17622,56,38,27,0.0 +17622,34,14,36,0.0 +17622,16,17.45,21,0.0 +17622,15,15.5,12,0.0 +17622,32,32,3,0.0 +17622,47,9.5,50,0.0 +17622,30,25.89,47,0.0 +17622,43,46,7,0.0 +17622,18,62.5,47,0.0 +17622,33,2.5,10,0.0 +17622,74,10,1,0.0 +17622,21,10,36,0.0 +17622,38,263.5,23,0.0 +17623,75,7.75,26,0.0 +17623,28,45.6,40,0.0 +17623,48,12.75,10,0.0 +17623,17,39,36,0.0 +17623,74,10,27,0.0 +17623,42,14,38,0.0 +17623,26,31.23,48,0.0 +17623,41,9.65,42,0.0 +17623,27,43.9,10,0.0 +17623,40,18.4,1,0.0 +17623,70,15,17,0.0 +17623,13,6,37,0.0 +17623,31,12.5,16,0.0 +17623,52,7,18,0.0 +17623,44,19.45,22,0.0 +17623,23,9,50,0.0 +17623,5,21.35,8,0.0 +17623,65,21.05,50,0.0 +17623,25,14,21,0.0 +17623,39,18,27,0.0 +17623,49,20,32,0.0 +17623,18,62.5,10,0.0 +17623,73,15,29,0.0 +17623,43,46,3,0.0 +17623,64,33.25,27,0.0 +17623,11,21,27,0.0 +17623,6,25,50,0.0 +17623,22,21,44,0.0 +17623,30,25.89,37,0.0 +17623,56,38,32,0.0 +17623,16,17.45,3,0.0 +17623,8,40,13,0.0 +17623,62,49.3,20,0.0 +17623,68,12.5,6,0.0 +17623,50,16.25,37,0.0 +17623,55,24,43,0.0 +17623,32,32,21,0.0 +17623,57,19.5,15,0.0 +17623,77,13,45,0.0 +17623,1,18,3,0.0 +17623,14,23.25,43,0.0 +17623,51,53,23,0.0 +17623,29,123.79,42,0.0 +17623,59,55,32,0.0 +17623,76,18,48,0.0 +17623,35,18,38,0.0 +17623,66,17,25,0.0 +17623,33,2.5,23,0.0 +17623,20,81,20,0.0 +17624,69,36,19,0.0 +17624,47,9.5,7,0.0 +17624,29,123.79,42,0.0 +17624,67,14,21,0.0 +17624,77,13,8,0.0 +17624,37,26,25,0.0 +17624,1,18,33,0.0 +17624,71,21.5,14,0.0 +17624,62,49.3,29,0.0 +17624,13,6,31,0.0 +17624,52,7,44,0.0 +17624,75,7.75,43,0.0 +17624,42,14,20,0.0 +17624,68,12.5,43,0.0 +17624,55,24,40,0.0 +17624,46,12,3,0.0 +17624,39,18,34,0.0 +17624,60,34,36,0.0 +17624,63,43.9,45,0.0 +17624,28,45.6,29,0.0 +17624,76,18,29,0.0 +17624,21,10,23,0.0 +17624,11,21,10,0.0 +17624,36,19,17,0.0 +17624,54,7.45,32,0.0 +17624,14,23.25,5,0.0 +17624,27,43.9,5,0.0 +17624,24,4.5,8,0.0 +17624,26,31.23,19,0.0 +17624,31,12.5,11,0.0 +17624,7,30,6,0.0 +17624,50,16.25,29,0.0 +17625,71,21.5,9,0.0 +17625,8,40,43,0.0 +17625,43,46,26,0.0 +17625,64,33.25,41,0.0 +17625,18,62.5,28,0.0 +17625,46,12,11,0.0 +17625,36,19,12,0.0 +17625,12,38,40,0.0 +17625,73,15,40,0.0 +17625,47,9.5,48,0.0 +17625,68,12.5,35,0.0 +17625,9,97,31,0.0 +17625,74,10,23,0.0 +17625,6,25,29,0.0 +17625,65,21.05,7,0.0 +17625,31,12.5,38,0.0 +17625,38,263.5,48,0.0 +17625,48,12.75,9,0.0 +17625,63,43.9,2,0.0 +17625,7,30,8,0.0 +17625,77,13,41,0.0 +17625,23,9,46,0.0 +17625,55,24,49,0.0 +17625,61,28.5,33,0.0 +17625,37,26,6,0.0 +17625,16,17.45,23,0.0 +17625,39,18,48,0.0 +17625,33,2.5,19,0.0 +17625,57,19.5,1,0.0 +17625,75,7.75,8,0.0 +17625,35,18,11,0.0 +17625,44,19.45,12,0.0 +17625,13,6,24,0.0 +17625,21,10,21,0.0 +17625,2,19,20,0.0 +17625,54,7.45,1,0.0 +17625,30,25.89,46,0.0 +17625,66,17,8,0.0 +17625,72,34.8,43,0.0 +17625,27,43.9,19,0.0 +17625,5,21.35,18,0.0 +17625,45,9.5,3,0.0 +17625,50,16.25,33,0.0 +17625,15,15.5,6,0.0 +17625,28,45.6,14,0.0 +17625,60,34,32,0.0 +17625,70,15,38,0.0 +17625,49,20,47,0.0 +17625,22,21,44,0.0 +17625,3,10,33,0.0 +17625,10,31,9,0.0 +17625,4,22,19,0.0 +17625,62,49.3,38,0.0 +17625,41,9.65,8,0.0 +17625,17,39,1,0.0 +17625,56,38,36,0.0 +17625,11,21,47,0.0 +17625,1,18,12,0.0 +17625,24,4.5,4,0.0 +17625,58,13.25,3,0.0 +17625,20,81,41,0.0 +17625,19,9.2,35,0.0 +17625,59,55,18,0.0 +17625,34,14,43,0.0 +17625,42,14,21,0.0 +17625,76,18,1,0.0 +17625,26,31.23,4,0.0 +17625,25,14,23,0.0 +17625,29,123.79,44,0.0 +17626,8,40,36,0.0 +17626,12,38,20,0.0 +17627,19,9.2,5,0.0 +17627,11,21,32,0.0 +17627,15,15.5,13,0.0 +17627,20,81,48,0.0 +17627,73,15,46,0.0 +17627,57,19.5,35,0.0 +17627,41,9.65,33,0.0 +17627,16,17.45,1,0.0 +17627,4,22,27,0.0 +17627,44,19.45,9,0.0 +17627,2,19,20,0.0 +17627,22,21,26,0.0 +17627,38,263.5,11,0.0 +17627,58,13.25,20,0.0 +17627,76,18,16,0.0 +17627,9,97,2,0.0 +17627,55,24,22,0.0 +17627,60,34,16,0.0 +17627,6,25,12,0.0 +17627,23,9,23,0.0 +17627,28,45.6,17,0.0 +17627,68,12.5,1,0.0 +17627,42,14,24,0.0 +17627,30,25.89,27,0.0 +17627,1,18,43,0.0 +17627,35,18,2,0.0 +17627,12,38,10,0.0 +17627,64,33.25,16,0.0 +17627,8,40,19,0.0 +17627,50,16.25,33,0.0 +17627,31,12.5,7,0.0 +17627,5,21.35,43,0.0 +17627,59,55,36,0.0 +17627,24,4.5,18,0.0 +17627,7,30,34,0.0 +17627,72,34.8,9,0.0 +17627,65,21.05,26,0.0 +17627,77,13,42,0.0 +17628,36,19,10,0.0 +17628,42,14,8,0.0 +17628,46,12,21,0.0 +17628,44,19.45,15,0.0 +17628,8,40,34,0.0 +17628,73,15,30,0.0 +17628,47,9.5,43,0.0 +17628,6,25,26,0.0 +17628,54,7.45,20,0.0 +17628,59,55,10,0.0 +17628,53,32.8,14,0.0 +17628,63,43.9,29,0.0 +17628,38,263.5,47,0.0 +17628,14,23.25,44,0.0 +17628,31,12.5,10,0.0 +17628,45,9.5,5,0.0 +17628,5,21.35,50,0.0 +17628,2,19,23,0.0 +17628,60,34,26,0.0 +17628,39,18,38,0.0 +17628,57,19.5,19,0.0 +17628,52,7,48,0.0 +17628,64,33.25,24,0.0 +17628,68,12.5,40,0.0 +17628,19,9.2,6,0.0 +17628,65,21.05,46,0.0 +17628,12,38,48,0.0 +17628,10,31,45,0.0 +17628,76,18,4,0.0 +17628,43,46,29,0.0 +17628,40,18.4,12,0.0 +17628,27,43.9,45,0.0 +17628,29,123.79,31,0.0 +17628,55,24,29,0.0 +17628,26,31.23,12,0.0 +17628,51,53,6,0.0 +17628,28,45.6,46,0.0 +17628,24,4.5,18,0.0 +17628,69,36,2,0.0 +17628,32,32,42,0.0 +17628,70,15,49,0.0 +17628,72,34.8,35,0.0 +17628,48,12.75,28,0.0 +17628,30,25.89,2,0.0 +17628,35,18,15,0.0 +17628,23,9,23,0.0 +17628,15,15.5,5,0.0 +17628,71,21.5,46,0.0 +17628,17,39,20,0.0 +17628,75,7.75,5,0.0 +17628,56,38,8,0.0 +17628,21,10,10,0.0 +17628,22,21,30,0.0 +17628,61,28.5,15,0.0 +17628,49,20,18,0.0 +17628,7,30,32,0.0 +17628,13,6,22,0.0 +17628,16,17.45,15,0.0 +17628,37,26,47,0.0 +17628,4,22,17,0.0 +17628,62,49.3,27,0.0 +17629,3,10,37,0.0 +17629,54,7.45,10,0.0 +17629,12,38,21,0.0 +17629,62,49.3,15,0.0 +17629,50,16.25,39,0.0 +17629,23,9,13,0.0 +17629,75,7.75,35,0.0 +17629,55,24,29,0.0 +17629,76,18,49,0.0 +17629,17,39,50,0.0 +17629,47,9.5,6,0.0 +17629,65,21.05,34,0.0 +17629,14,23.25,31,0.0 +17629,15,15.5,46,0.0 +17629,39,18,37,0.0 +17629,53,32.8,15,0.0 +17629,24,4.5,11,0.0 +17629,69,36,45,0.0 +17629,13,6,28,0.0 +17629,46,12,25,0.0 +17629,73,15,39,0.0 +17629,58,13.25,50,0.0 +17629,56,38,26,0.0 +17629,25,14,25,0.0 +17629,1,18,50,0.0 +17629,52,7,2,0.0 +17629,42,14,26,0.0 +17629,43,46,21,0.0 +17629,44,19.45,15,0.0 +17629,37,26,20,0.0 +17629,4,22,43,0.0 +17629,57,19.5,6,0.0 +17629,10,31,41,0.0 +17629,38,263.5,23,0.0 +17630,56,38,24,0.0 +17630,6,25,10,0.0 +17630,53,32.8,16,0.0 +17630,68,12.5,27,0.0 +17630,44,19.45,49,0.0 +17630,12,38,22,0.0 +17630,75,7.75,23,0.0 +17630,36,19,30,0.0 +17630,40,18.4,26,0.0 +17630,71,21.5,28,0.0 +17630,7,30,47,0.0 +17630,48,12.75,15,0.0 +17630,19,9.2,44,0.0 +17630,46,12,17,0.0 +17630,73,15,17,0.0 +17630,47,9.5,25,0.0 +17630,39,18,29,0.0 +17630,66,17,6,0.0 +17630,21,10,50,0.0 +17630,42,14,44,0.0 +17631,62,49.3,50,0.0 +17631,36,19,29,0.0 +17631,58,13.25,23,0.0 +17631,48,12.75,18,0.0 +17631,65,21.05,50,0.0 +17631,6,25,24,0.0 +17631,26,31.23,2,0.0 +17631,31,12.5,15,0.0 +17631,66,17,10,0.0 +17631,56,38,15,0.0 +17631,9,97,37,0.0 +17631,60,34,4,0.0 +17631,25,14,27,0.0 +17631,16,17.45,47,0.0 +17631,29,123.79,15,0.0 +17631,44,19.45,1,0.0 +17631,22,21,42,0.0 +17631,23,9,44,0.0 +17631,70,15,39,0.0 +17631,74,10,35,0.0 +17631,69,36,20,0.0 +17631,2,19,6,0.0 +17631,76,18,4,0.0 +17631,68,12.5,39,0.0 +17631,45,9.5,19,0.0 +17631,41,9.65,50,0.0 +17631,61,28.5,27,0.0 +17631,20,81,18,0.0 +17631,43,46,28,0.0 +17632,77,13,15,0.0 +17632,44,19.45,47,0.0 +17632,40,18.4,23,0.0 +17632,71,21.5,35,0.0 +17632,4,22,46,0.0 +17632,64,33.25,9,0.0 +17632,17,39,40,0.0 +17632,9,97,24,0.0 +17632,62,49.3,45,0.0 +17632,65,21.05,41,0.0 +17632,22,21,2,0.0 +17632,26,31.23,4,0.0 +17633,4,22,40,0.0 +17633,25,14,26,0.0 +17633,54,7.45,20,0.0 +17633,72,34.8,1,0.0 +17633,70,15,40,0.0 +17633,67,14,29,0.0 +17633,28,45.6,16,0.0 +17633,77,13,41,0.0 +17633,49,20,37,0.0 +17633,40,18.4,2,0.0 +17633,42,14,23,0.0 +17633,52,7,45,0.0 +17633,44,19.45,45,0.0 +17633,47,9.5,29,0.0 +17633,30,25.89,15,0.0 +17633,21,10,25,0.0 +17633,32,32,31,0.0 +17633,23,9,44,0.0 +17633,58,13.25,29,0.0 +17633,62,49.3,23,0.0 +17633,31,12.5,21,0.0 +17633,45,9.5,18,0.0 +17633,18,62.5,27,0.0 +17633,6,25,12,0.0 +17633,12,38,45,0.0 +17633,38,263.5,39,0.0 +17633,73,15,20,0.0 +17633,36,19,31,0.0 +17633,7,30,31,0.0 +17633,11,21,13,0.0 +17633,33,2.5,17,0.0 +17633,16,17.45,37,0.0 +17633,64,33.25,38,0.0 +17633,10,31,19,0.0 +17634,74,10,39,0.0 +17634,55,24,8,0.0 +17634,76,18,41,0.0 +17634,32,32,20,0.0 +17634,3,10,44,0.0 +17634,41,9.65,24,0.0 +17634,52,7,30,0.0 +17634,53,32.8,48,0.0 +17634,14,23.25,1,0.0 +17634,77,13,31,0.0 +17634,13,6,43,0.0 +17634,29,123.79,38,0.0 +17634,8,40,38,0.0 +17634,44,19.45,4,0.0 +17634,75,7.75,28,0.0 +17634,50,16.25,31,0.0 +17634,21,10,40,0.0 +17634,22,21,41,0.0 +17634,68,12.5,1,0.0 +17634,43,46,19,0.0 +17634,34,14,25,0.0 +17634,62,49.3,48,0.0 +17634,38,263.5,27,0.0 +17634,40,18.4,46,0.0 +17634,61,28.5,27,0.0 +17634,27,43.9,37,0.0 +17634,56,38,48,0.0 +17634,16,17.45,21,0.0 +17634,57,19.5,49,0.0 +17634,24,4.5,5,0.0 +17634,59,55,17,0.0 +17634,25,14,20,0.0 +17634,65,21.05,11,0.0 +17634,49,20,23,0.0 +17634,66,17,3,0.0 +17634,51,53,33,0.0 +17634,15,15.5,5,0.0 +17634,10,31,25,0.0 +17634,35,18,14,0.0 +17634,69,36,23,0.0 +17634,37,26,35,0.0 +17635,21,10,33,0.0 +17635,62,49.3,34,0.0 +17635,24,4.5,14,0.0 +17635,56,38,33,0.0 +17635,15,15.5,2,0.0 +17635,46,12,13,0.0 +17635,58,13.25,28,0.0 +17635,57,19.5,3,0.0 +17635,38,263.5,20,0.0 +17635,41,9.65,12,0.0 +17635,29,123.79,25,0.0 +17635,28,45.6,10,0.0 +17635,45,9.5,4,0.0 +17635,34,14,4,0.0 +17635,2,19,3,0.0 +17635,50,16.25,10,0.0 +17635,7,30,27,0.0 +17635,73,15,46,0.0 +17635,61,28.5,12,0.0 +17635,18,62.5,18,0.0 +17635,32,32,30,0.0 +17635,63,43.9,34,0.0 +17635,40,18.4,37,0.0 +17635,8,40,35,0.0 +17635,64,33.25,4,0.0 +17635,9,97,4,0.0 +17635,42,14,34,0.0 +17635,77,13,23,0.0 +17635,74,10,1,0.0 +17635,14,23.25,23,0.0 +17635,23,9,10,0.0 +17635,6,25,35,0.0 +17635,11,21,43,0.0 +17635,17,39,50,0.0 +17635,48,12.75,20,0.0 +17635,53,32.8,10,0.0 +17635,68,12.5,1,0.0 +17636,23,9,23,0.0 +17636,19,9.2,37,0.0 +17636,54,7.45,34,0.0 +17636,17,39,21,0.0 +17636,71,21.5,29,0.0 +17636,32,32,26,0.0 +17636,8,40,48,0.0 +17636,69,36,48,0.0 +17636,33,2.5,28,0.0 +17636,53,32.8,49,0.0 +17636,51,53,3,0.0 +17636,27,43.9,6,0.0 +17636,34,14,1,0.0 +17636,14,23.25,14,0.0 +17636,76,18,48,0.0 +17636,70,15,23,0.0 +17636,29,123.79,48,0.0 +17636,43,46,45,0.0 +17636,61,28.5,41,0.0 +17636,56,38,13,0.0 +17636,47,9.5,16,0.0 +17636,48,12.75,45,0.0 +17636,74,10,29,0.0 +17636,13,6,4,0.0 +17636,60,34,1,0.0 +17636,5,21.35,26,0.0 +17636,75,7.75,8,0.0 +17636,18,62.5,1,0.0 +17636,1,18,12,0.0 +17636,68,12.5,39,0.0 +17636,38,263.5,45,0.0 +17636,49,20,20,0.0 +17636,63,43.9,50,0.0 +17636,58,13.25,50,0.0 +17636,16,17.45,17,0.0 +17637,18,62.5,35,0.0 +17637,5,21.35,20,0.0 +17637,9,97,29,0.0 +17637,29,123.79,37,0.0 +17637,19,9.2,18,0.0 +17637,50,16.25,30,0.0 +17637,73,15,46,0.0 +17637,70,15,32,0.0 +17637,25,14,3,0.0 +17637,36,19,31,0.0 +17637,11,21,33,0.0 +17637,8,40,22,0.0 +17637,23,9,36,0.0 +17637,26,31.23,21,0.0 +17637,13,6,21,0.0 +17637,59,55,12,0.0 +17637,33,2.5,40,0.0 +17637,61,28.5,23,0.0 +17637,66,17,26,0.0 +17637,71,21.5,33,0.0 +17637,47,9.5,8,0.0 +17637,7,30,41,0.0 +17637,34,14,35,0.0 +17637,44,19.45,19,0.0 +17637,67,14,24,0.0 +17637,45,9.5,32,0.0 +17637,16,17.45,50,0.0 +17637,28,45.6,32,0.0 +17637,69,36,18,0.0 +17637,74,10,12,0.0 +17637,51,53,29,0.0 +17637,3,10,39,0.0 +17637,20,81,30,0.0 +17637,58,13.25,32,0.0 +17637,12,38,5,0.0 +17637,37,26,19,0.0 +17637,57,19.5,26,0.0 +17637,77,13,7,0.0 +17637,53,32.8,42,0.0 +17637,48,12.75,36,0.0 +17637,27,43.9,44,0.0 +17637,38,263.5,4,0.0 +17637,22,21,4,0.0 +17637,72,34.8,38,0.0 +17637,15,15.5,31,0.0 +17637,65,21.05,49,0.0 +17637,17,39,29,0.0 +17637,40,18.4,10,0.0 +17637,55,24,40,0.0 +17637,2,19,17,0.0 +17637,54,7.45,48,0.0 +17637,76,18,33,0.0 +17637,21,10,17,0.0 +17637,63,43.9,22,0.0 +17637,52,7,37,0.0 +17637,64,33.25,9,0.0 +17637,30,25.89,22,0.0 +17637,75,7.75,34,0.0 +17637,46,12,43,0.0 +17637,10,31,13,0.0 +17637,43,46,37,0.0 +17637,32,32,32,0.0 +17637,1,18,50,0.0 +17637,68,12.5,5,0.0 +17637,31,12.5,7,0.0 +17638,24,4.5,45,0.0 +17638,29,123.79,17,0.0 +17638,35,18,19,0.0 +17638,9,97,33,0.0 +17638,15,15.5,14,0.0 +17638,62,49.3,15,0.0 +17638,49,20,16,0.0 +17638,77,13,9,0.0 +17638,75,7.75,34,0.0 +17638,53,32.8,24,0.0 +17638,44,19.45,10,0.0 +17638,59,55,39,0.0 +17638,21,10,21,0.0 +17638,57,19.5,28,0.0 +17638,2,19,35,0.0 +17638,73,15,24,0.0 +17638,60,34,23,0.0 +17638,26,31.23,24,0.0 +17638,30,25.89,8,0.0 +17638,61,28.5,17,0.0 +17638,71,21.5,27,0.0 +17638,76,18,18,0.0 +17638,11,21,42,0.0 +17638,50,16.25,15,0.0 +17638,5,21.35,15,0.0 +17638,64,33.25,25,0.0 +17638,17,39,13,0.0 +17638,12,38,26,0.0 +17638,41,9.65,23,0.0 +17638,32,32,24,0.0 +17638,1,18,3,0.0 +17639,36,19,35,0.0 +17639,26,31.23,8,0.0 +17639,23,9,5,0.0 +17639,15,15.5,48,0.0 +17639,60,34,7,0.0 +17639,64,33.25,22,0.0 +17639,58,13.25,46,0.0 +17639,47,9.5,43,0.0 +17639,6,25,46,0.0 +17639,43,46,11,0.0 +17639,4,22,39,0.0 +17639,39,18,43,0.0 +17639,25,14,33,0.0 +17639,22,21,9,0.0 +17639,42,14,28,0.0 +17639,40,18.4,2,0.0 +17639,70,15,46,0.0 +17639,72,34.8,11,0.0 +17639,41,9.65,32,0.0 +17640,27,43.9,30,0.0 +17640,16,17.45,23,0.0 +17640,44,19.45,33,0.0 +17640,33,2.5,8,0.0 +17640,56,38,50,0.0 +17640,74,10,11,0.0 +17640,18,62.5,6,0.0 +17640,6,25,25,0.0 +17640,62,49.3,22,0.0 +17640,41,9.65,15,0.0 +17640,52,7,4,0.0 +17640,68,12.5,21,0.0 +17640,29,123.79,29,0.0 +17640,63,43.9,41,0.0 +17640,36,19,30,0.0 +17640,42,14,49,0.0 +17640,59,55,19,0.0 +17640,54,7.45,17,0.0 +17640,20,81,20,0.0 +17640,53,32.8,42,0.0 +17640,57,19.5,33,0.0 +17640,67,14,50,0.0 +17640,43,46,18,0.0 +17640,4,22,42,0.0 +17640,34,14,14,0.0 +17640,64,33.25,34,0.0 +17640,14,23.25,10,0.0 +17640,7,30,5,0.0 +17640,23,9,45,0.0 +17640,73,15,26,0.0 +17640,48,12.75,10,0.0 +17640,21,10,14,0.0 +17640,75,7.75,47,0.0 +17640,8,40,43,0.0 +17640,15,15.5,21,0.0 +17640,47,9.5,35,0.0 +17640,39,18,16,0.0 +17640,31,12.5,41,0.0 +17640,77,13,14,0.0 +17640,66,17,42,0.0 +17640,12,38,36,0.0 +17640,35,18,47,0.0 +17640,28,45.6,44,0.0 +17640,50,16.25,29,0.0 +17640,37,26,12,0.0 +17640,11,21,20,0.0 +17640,38,263.5,4,0.0 +17641,21,10,43,0.0 +17641,22,21,27,0.0 +17641,74,10,11,0.0 +17641,52,7,2,0.0 +17641,41,9.65,10,0.0 +17641,77,13,24,0.0 +17641,31,12.5,12,0.0 +17641,42,14,40,0.0 +17641,16,17.45,45,0.0 +17641,64,33.25,32,0.0 +17641,65,21.05,20,0.0 +17641,45,9.5,13,0.0 +17641,19,9.2,20,0.0 +17641,43,46,18,0.0 +17641,72,34.8,31,0.0 +17641,68,12.5,50,0.0 +17641,18,62.5,38,0.0 +17641,47,9.5,24,0.0 +17641,70,15,23,0.0 +17641,56,38,41,0.0 +17641,57,19.5,29,0.0 +17641,6,25,12,0.0 +17641,35,18,35,0.0 +17641,69,36,9,0.0 +17641,32,32,13,0.0 +17641,30,25.89,11,0.0 +17641,37,26,48,0.0 +17641,66,17,16,0.0 +17642,62,49.3,49,0.0 +17642,35,18,18,0.0 +17642,9,97,12,0.0 +17642,20,81,5,0.0 +17642,63,43.9,29,0.0 +17642,11,21,8,0.0 +17642,21,10,6,0.0 +17642,33,2.5,28,0.0 +17642,73,15,44,0.0 +17642,46,12,16,0.0 +17642,25,14,30,0.0 +17642,76,18,8,0.0 +17642,7,30,47,0.0 +17642,72,34.8,17,0.0 +17642,45,9.5,3,0.0 +17642,40,18.4,8,0.0 +17642,36,19,19,0.0 +17642,30,25.89,10,0.0 +17642,59,55,19,0.0 +17642,64,33.25,49,0.0 +17642,3,10,38,0.0 +17642,4,22,43,0.0 +17642,74,10,40,0.0 +17642,1,18,25,0.0 +17642,48,12.75,43,0.0 +17642,29,123.79,31,0.0 +17643,16,17.45,20,0.0 +17643,61,28.5,21,0.0 +17643,46,12,6,0.0 +17643,23,9,42,0.0 +17643,28,45.6,34,0.0 +17643,34,14,38,0.0 +17643,66,17,47,0.0 +17643,7,30,11,0.0 +17643,55,24,29,0.0 +17643,12,38,45,0.0 +17643,6,25,46,0.0 +17643,33,2.5,46,0.0 +17643,56,38,15,0.0 +17643,68,12.5,38,0.0 +17643,60,34,28,0.0 +17643,48,12.75,12,0.0 +17643,44,19.45,36,0.0 +17643,9,97,44,0.0 +17643,62,49.3,4,0.0 +17643,35,18,39,0.0 +17643,36,19,35,0.0 +17643,39,18,45,0.0 +17643,40,18.4,35,0.0 +17643,32,32,11,0.0 +17643,71,21.5,9,0.0 +17643,69,36,11,0.0 +17643,50,16.25,27,0.0 +17643,30,25.89,19,0.0 +17643,64,33.25,3,0.0 +17643,37,26,43,0.0 +17643,27,43.9,38,0.0 +17643,1,18,36,0.0 +17643,77,13,10,0.0 +17643,29,123.79,46,0.0 +17643,22,21,29,0.0 +17643,49,20,25,0.0 +17643,45,9.5,33,0.0 +17643,2,19,8,0.0 +17643,25,14,46,0.0 +17643,74,10,19,0.0 +17643,14,23.25,9,0.0 +17643,41,9.65,31,0.0 +17643,51,53,43,0.0 +17643,11,21,5,0.0 +17643,24,4.5,27,0.0 +17643,67,14,26,0.0 +17643,3,10,46,0.0 +17643,5,21.35,34,0.0 +17643,52,7,23,0.0 +17643,57,19.5,44,0.0 +17643,73,15,6,0.0 +17643,26,31.23,46,0.0 +17644,44,19.45,16,0.0 +17644,9,97,28,0.0 +17644,4,22,26,0.0 +17644,64,33.25,17,0.0 +17644,31,12.5,18,0.0 +17644,76,18,31,0.0 +17644,33,2.5,14,0.0 +17644,8,40,42,0.0 +17644,7,30,28,0.0 +17644,30,25.89,37,0.0 +17644,11,21,40,0.0 +17644,43,46,43,0.0 +17644,55,24,4,0.0 +17644,27,43.9,2,0.0 +17644,51,53,6,0.0 +17644,67,14,2,0.0 +17644,40,18.4,33,0.0 +17644,50,16.25,35,0.0 +17644,39,18,21,0.0 +17644,53,32.8,40,0.0 +17644,46,12,2,0.0 +17644,3,10,12,0.0 +17644,24,4.5,10,0.0 +17644,57,19.5,2,0.0 +17644,65,21.05,1,0.0 +17644,69,36,47,0.0 +17644,41,9.65,15,0.0 +17644,17,39,31,0.0 +17644,66,17,48,0.0 +17644,70,15,5,0.0 +17644,23,9,50,0.0 +17644,29,123.79,17,0.0 +17644,54,7.45,38,0.0 +17644,59,55,25,0.0 +17644,38,263.5,10,0.0 +17644,10,31,29,0.0 +17644,1,18,31,0.0 +17644,14,23.25,33,0.0 +17644,36,19,32,0.0 +17644,47,9.5,23,0.0 +17644,75,7.75,5,0.0 +17644,73,15,44,0.0 +17644,12,38,50,0.0 +17644,32,32,42,0.0 +17644,52,7,15,0.0 +17644,18,62.5,42,0.0 +17644,56,38,1,0.0 +17644,26,31.23,6,0.0 +17644,63,43.9,1,0.0 +17644,74,10,29,0.0 +17644,13,6,45,0.0 +17644,62,49.3,47,0.0 +17644,35,18,8,0.0 +17644,37,26,4,0.0 +17644,28,45.6,11,0.0 +17644,5,21.35,33,0.0 +17644,58,13.25,44,0.0 +17644,77,13,13,0.0 +17644,34,14,6,0.0 +17644,61,28.5,50,0.0 +17644,71,21.5,44,0.0 +17644,72,34.8,10,0.0 +17645,75,7.75,40,0.0 +17645,12,38,41,0.0 +17645,67,14,19,0.0 +17645,58,13.25,24,0.0 +17645,56,38,26,0.0 +17645,43,46,35,0.0 +17645,62,49.3,48,0.0 +17645,22,21,34,0.0 +17645,49,20,32,0.0 +17645,30,25.89,7,0.0 +17645,61,28.5,35,0.0 +17645,34,14,14,0.0 +17645,33,2.5,43,0.0 +17645,57,19.5,27,0.0 +17645,13,6,22,0.0 +17645,51,53,4,0.0 +17645,9,97,2,0.0 +17645,8,40,33,0.0 +17645,21,10,13,0.0 +17645,27,43.9,42,0.0 +17645,65,21.05,34,0.0 +17645,53,32.8,42,0.0 +17646,76,18,8,0.0 +17646,58,13.25,19,0.0 +17646,2,19,4,0.0 +17646,37,26,32,0.0 +17646,73,15,1,0.0 +17646,24,4.5,42,0.0 +17646,40,18.4,5,0.0 +17646,65,21.05,38,0.0 +17646,60,34,44,0.0 +17646,27,43.9,5,0.0 +17646,57,19.5,24,0.0 +17646,31,12.5,17,0.0 +17646,14,23.25,45,0.0 +17646,36,19,3,0.0 +17646,45,9.5,20,0.0 +17646,15,15.5,32,0.0 +17646,49,20,8,0.0 +17646,77,13,41,0.0 +17646,41,9.65,49,0.0 +17646,66,17,10,0.0 +17646,1,18,23,0.0 +17646,51,53,11,0.0 +17646,19,9.2,26,0.0 +17646,64,33.25,44,0.0 +17646,61,28.5,7,0.0 +17646,68,12.5,45,0.0 +17646,33,2.5,23,0.0 +17646,53,32.8,23,0.0 +17646,6,25,30,0.0 +17646,17,39,1,0.0 +17646,63,43.9,27,0.0 +17646,28,45.6,13,0.0 +17646,47,9.5,32,0.0 +17646,26,31.23,8,0.0 +17646,59,55,18,0.0 +17646,5,21.35,29,0.0 +17646,34,14,32,0.0 +17646,25,14,27,0.0 +17646,48,12.75,13,0.0 +17646,54,7.45,28,0.0 +17646,18,62.5,4,0.0 +17646,7,30,24,0.0 +17646,13,6,20,0.0 +17646,46,12,28,0.0 +17646,29,123.79,23,0.0 +17646,3,10,16,0.0 +17646,9,97,21,0.0 +17646,72,34.8,40,0.0 +17646,71,21.5,35,0.0 +17646,50,16.25,15,0.0 +17646,56,38,20,0.0 +17646,16,17.45,11,0.0 +17646,11,21,18,0.0 +17646,21,10,29,0.0 +17646,42,14,46,0.0 +17646,44,19.45,32,0.0 +17646,55,24,12,0.0 +17646,67,14,24,0.0 +17646,20,81,47,0.0 +17646,39,18,33,0.0 +17646,74,10,5,0.0 +17646,70,15,22,0.0 +17646,8,40,20,0.0 +17646,32,32,14,0.0 +17646,10,31,34,0.0 +17646,38,263.5,10,0.0 +17646,23,9,44,0.0 +17647,23,9,38,0.0 +17647,70,15,44,0.0 +17647,35,18,8,0.0 +17647,67,14,14,0.0 +17647,72,34.8,4,0.0 +17647,66,17,46,0.0 +17647,1,18,20,0.0 +17647,24,4.5,38,0.0 +17647,44,19.45,34,0.0 +17647,8,40,35,0.0 +17647,53,32.8,38,0.0 +17647,59,55,38,0.0 +17647,13,6,42,0.0 +17647,75,7.75,32,0.0 +17647,45,9.5,49,0.0 +17647,77,13,30,0.0 +17647,25,14,50,0.0 +17647,27,43.9,45,0.0 +17647,18,62.5,18,0.0 +17647,5,21.35,21,0.0 +17647,19,9.2,26,0.0 +17647,51,53,32,0.0 +17647,41,9.65,39,0.0 +17647,74,10,35,0.0 +17647,47,9.5,8,0.0 +17647,17,39,35,0.0 +17647,55,24,28,0.0 +17647,2,19,21,0.0 +17647,11,21,23,0.0 +17647,37,26,47,0.0 +17647,39,18,6,0.0 +17647,38,263.5,23,0.0 +17647,63,43.9,44,0.0 +17647,36,19,12,0.0 +17647,10,31,47,0.0 +17647,42,14,18,0.0 +17647,54,7.45,26,0.0 +17647,26,31.23,36,0.0 +17647,61,28.5,12,0.0 +17647,3,10,35,0.0 +17647,69,36,44,0.0 +17647,33,2.5,9,0.0 +17647,48,12.75,21,0.0 +17647,65,21.05,42,0.0 +17647,40,18.4,33,0.0 +17647,49,20,44,0.0 +17647,12,38,47,0.0 +17647,29,123.79,42,0.0 +17648,45,9.5,33,0.0 +17648,31,12.5,36,0.0 +17648,22,21,11,0.0 +17648,40,18.4,26,0.0 +17648,74,10,35,0.0 +17648,21,10,49,0.0 +17648,36,19,16,0.0 +17648,56,38,24,0.0 +17648,26,31.23,10,0.0 +17648,24,4.5,32,0.0 +17648,8,40,27,0.0 +17648,19,9.2,37,0.0 +17648,66,17,19,0.0 +17648,60,34,49,0.0 +17648,41,9.65,32,0.0 +17648,20,81,12,0.0 +17648,25,14,50,0.0 +17648,62,49.3,15,0.0 +17648,46,12,10,0.0 +17648,63,43.9,17,0.0 +17648,49,20,24,0.0 +17648,48,12.75,27,0.0 +17648,4,22,45,0.0 +17648,33,2.5,20,0.0 +17648,43,46,42,0.0 +17648,32,32,5,0.0 +17648,54,7.45,20,0.0 +17648,51,53,33,0.0 +17648,58,13.25,2,0.0 +17648,9,97,24,0.0 +17648,2,19,11,0.0 +17648,67,14,50,0.0 +17648,18,62.5,39,0.0 +17648,76,18,9,0.0 +17648,23,9,1,0.0 +17648,28,45.6,46,0.0 +17648,77,13,5,0.0 +17649,22,21,40,0.0 +17649,34,14,1,0.0 +17649,7,30,26,0.0 +17649,5,21.35,40,0.0 +17649,49,20,9,0.0 +17649,35,18,28,0.0 +17649,16,17.45,22,0.0 +17649,29,123.79,12,0.0 +17649,17,39,40,0.0 +17649,42,14,28,0.0 +17649,76,18,44,0.0 +17649,15,15.5,26,0.0 +17649,41,9.65,1,0.0 +17649,60,34,47,0.0 +17649,28,45.6,1,0.0 +17649,12,38,3,0.0 +17649,54,7.45,4,0.0 +17649,4,22,24,0.0 +17649,14,23.25,15,0.0 +17649,70,15,1,0.0 +17649,56,38,47,0.0 +17649,61,28.5,28,0.0 +17649,66,17,36,0.0 +17649,19,9.2,38,0.0 +17649,32,32,14,0.0 +17649,11,21,39,0.0 +17649,50,16.25,3,0.0 +17649,21,10,23,0.0 +17649,77,13,39,0.0 +17649,23,9,6,0.0 +17649,46,12,38,0.0 +17649,73,15,45,0.0 +17649,71,21.5,10,0.0 +17649,44,19.45,49,0.0 +17649,2,19,40,0.0 +17649,26,31.23,39,0.0 +17649,20,81,23,0.0 +17649,9,97,31,0.0 +17649,36,19,2,0.0 +17649,10,31,37,0.0 +17649,68,12.5,3,0.0 +17649,57,19.5,34,0.0 +17650,14,23.25,40,0.0 +17650,48,12.75,36,0.0 +17650,16,17.45,9,0.0 +17650,34,14,34,0.0 +17650,9,97,39,0.0 +17650,31,12.5,29,0.0 +17650,6,25,2,0.0 +17650,63,43.9,7,0.0 +17650,74,10,39,0.0 +17650,71,21.5,11,0.0 +17650,46,12,3,0.0 +17650,45,9.5,29,0.0 +17650,27,43.9,8,0.0 +17650,55,24,26,0.0 +17650,20,81,8,0.0 +17650,26,31.23,41,0.0 +17650,37,26,14,0.0 +17650,21,10,47,0.0 +17650,69,36,2,0.0 +17650,50,16.25,17,0.0 +17650,32,32,6,0.0 +17650,64,33.25,21,0.0 +17650,52,7,11,0.0 +17650,72,34.8,24,0.0 +17650,51,53,23,0.0 +17650,44,19.45,9,0.0 +17650,41,9.65,42,0.0 +17650,24,4.5,24,0.0 +17650,77,13,23,0.0 +17650,54,7.45,25,0.0 +17650,49,20,33,0.0 +17650,22,21,28,0.0 +17650,2,19,13,0.0 +17650,59,55,22,0.0 +17650,42,14,43,0.0 +17650,56,38,2,0.0 +17650,70,15,1,0.0 +17651,69,36,8,0.0 +17651,53,32.8,38,0.0 +17651,50,16.25,36,0.0 +17651,15,15.5,38,0.0 +17651,45,9.5,30,0.0 +17651,43,46,48,0.0 +17651,64,33.25,23,0.0 +17651,51,53,25,0.0 +17651,58,13.25,40,0.0 +17651,17,39,24,0.0 +17651,11,21,22,0.0 +17651,36,19,20,0.0 +17651,10,31,20,0.0 +17651,70,15,3,0.0 +17651,77,13,25,0.0 +17651,62,49.3,10,0.0 +17651,56,38,32,0.0 +17651,29,123.79,38,0.0 +17651,67,14,43,0.0 +17651,37,26,34,0.0 +17651,27,43.9,12,0.0 +17651,76,18,12,0.0 +17651,68,12.5,11,0.0 +17651,34,14,16,0.0 +17651,48,12.75,39,0.0 +17651,4,22,11,0.0 +17651,3,10,33,0.0 +17651,73,15,36,0.0 +17651,38,263.5,25,0.0 +17651,13,6,8,0.0 +17651,6,25,41,0.0 +17651,39,18,30,0.0 +17651,22,21,44,0.0 +17651,46,12,14,0.0 +17651,32,32,38,0.0 +17651,40,18.4,32,0.0 +17651,30,25.89,1,0.0 +17651,49,20,27,0.0 +17651,66,17,11,0.0 +17652,65,21.05,23,0.0 +17652,34,14,9,0.0 +17652,53,32.8,4,0.0 +17652,16,17.45,9,0.0 +17652,12,38,27,0.0 +17652,30,25.89,48,0.0 +17652,37,26,5,0.0 +17652,13,6,5,0.0 +17652,67,14,8,0.0 +17652,47,9.5,22,0.0 +17652,43,46,12,0.0 +17652,8,40,33,0.0 +17652,36,19,11,0.0 +17652,50,16.25,23,0.0 +17652,32,32,23,0.0 +17652,76,18,29,0.0 +17652,58,13.25,25,0.0 +17652,40,18.4,42,0.0 +17652,71,21.5,15,0.0 +17652,22,21,33,0.0 +17652,73,15,21,0.0 +17652,75,7.75,39,0.0 +17652,61,28.5,42,0.0 +17652,72,34.8,28,0.0 +17652,11,21,19,0.0 +17652,66,17,6,0.0 +17652,44,19.45,24,0.0 +17652,3,10,27,0.0 +17653,17,39,42,0.0 +17653,60,34,21,0.0 +17653,57,19.5,20,0.0 +17653,41,9.65,9,0.0 +17653,61,28.5,43,0.0 +17653,5,21.35,50,0.0 +17653,58,13.25,45,0.0 +17653,26,31.23,17,0.0 +17653,62,49.3,41,0.0 +17653,23,9,30,0.0 +17653,13,6,41,0.0 +17653,76,18,19,0.0 +17653,44,19.45,34,0.0 +17653,28,45.6,39,0.0 +17653,36,19,40,0.0 +17653,35,18,30,0.0 +17653,7,30,37,0.0 +17653,32,32,11,0.0 +17653,14,23.25,34,0.0 +17653,59,55,19,0.0 +17653,19,9.2,8,0.0 +17653,34,14,13,0.0 +17653,25,14,10,0.0 +17653,39,18,20,0.0 +17653,31,12.5,24,0.0 +17653,37,26,16,0.0 +17653,16,17.45,27,0.0 +17653,1,18,23,0.0 +17653,65,21.05,11,0.0 +17653,49,20,22,0.0 +17653,20,81,23,0.0 +17653,52,7,29,0.0 +17653,21,10,19,0.0 +17653,51,53,15,0.0 +17653,68,12.5,46,0.0 +17653,42,14,37,0.0 +17653,74,10,6,0.0 +17653,29,123.79,44,0.0 +17653,53,32.8,3,0.0 +17653,43,46,41,0.0 +17653,73,15,2,0.0 +17653,63,43.9,15,0.0 +17653,30,25.89,8,0.0 +17653,3,10,25,0.0 +17653,72,34.8,32,0.0 +17653,67,14,9,0.0 +17653,45,9.5,4,0.0 +17653,10,31,11,0.0 +17653,55,24,45,0.0 +17653,27,43.9,8,0.0 +17653,75,7.75,16,0.0 +17653,56,38,11,0.0 +17653,77,13,10,0.0 +17653,4,22,40,0.0 +17653,71,21.5,10,0.0 +17653,40,18.4,37,0.0 +17653,46,12,32,0.0 +17653,66,17,11,0.0 +17653,24,4.5,39,0.0 +17653,47,9.5,18,0.0 +17653,18,62.5,3,0.0 +17653,33,2.5,48,0.0 +17653,50,16.25,45,0.0 +17653,48,12.75,6,0.0 +17654,24,4.5,22,0.0 +17654,67,14,14,0.0 +17654,15,15.5,26,0.0 +17654,9,97,20,0.0 +17654,14,23.25,10,0.0 +17654,70,15,10,0.0 +17654,53,32.8,29,0.0 +17654,54,7.45,6,0.0 +17654,33,2.5,37,0.0 +17654,31,12.5,45,0.0 +17654,28,45.6,30,0.0 +17654,32,32,26,0.0 +17654,11,21,45,0.0 +17654,12,38,14,0.0 +17654,69,36,25,0.0 +17654,76,18,18,0.0 +17654,26,31.23,35,0.0 +17654,58,13.25,13,0.0 +17654,6,25,9,0.0 +17654,52,7,4,0.0 +17654,61,28.5,14,0.0 +17654,17,39,11,0.0 +17654,59,55,30,0.0 +17654,49,20,2,0.0 +17654,46,12,31,0.0 +17654,39,18,21,0.0 +17654,68,12.5,48,0.0 +17654,72,34.8,6,0.0 +17654,38,263.5,44,0.0 +17654,43,46,21,0.0 +17654,21,10,8,0.0 +17654,65,21.05,27,0.0 +17654,18,62.5,34,0.0 +17654,2,19,4,0.0 +17654,10,31,29,0.0 +17654,66,17,45,0.0 +17654,1,18,29,0.0 +17654,19,9.2,1,0.0 +17654,57,19.5,21,0.0 +17654,62,49.3,21,0.0 +17654,34,14,36,0.0 +17654,3,10,42,0.0 +17654,41,9.65,20,0.0 +17654,48,12.75,19,0.0 +17654,20,81,49,0.0 +17654,35,18,9,0.0 +17654,51,53,27,0.0 +17654,42,14,19,0.0 +17654,73,15,5,0.0 +17654,30,25.89,17,0.0 +17654,47,9.5,33,0.0 +17654,71,21.5,40,0.0 +17654,45,9.5,24,0.0 +17654,74,10,49,0.0 +17654,29,123.79,25,0.0 +17654,4,22,45,0.0 +17654,36,19,47,0.0 +17654,50,16.25,14,0.0 +17654,77,13,15,0.0 +17654,27,43.9,21,0.0 +17654,56,38,35,0.0 +17655,17,39,45,0.0 +17655,70,15,23,0.0 +17655,41,9.65,48,0.0 +17655,26,31.23,27,0.0 +17655,36,19,16,0.0 +17655,15,15.5,38,0.0 +17655,8,40,15,0.0 +17655,44,19.45,49,0.0 +17655,21,10,10,0.0 +17655,40,18.4,12,0.0 +17655,30,25.89,16,0.0 +17655,18,62.5,32,0.0 +17655,35,18,31,0.0 +17655,63,43.9,21,0.0 +17656,45,9.5,23,0.0 +17656,62,49.3,20,0.0 +17656,71,21.5,37,0.0 +17656,21,10,9,0.0 +17656,23,9,24,0.0 +17656,69,36,48,0.0 +17656,17,39,34,0.0 +17656,19,9.2,25,0.0 +17656,44,19.45,44,0.0 +17656,61,28.5,36,0.0 +17656,39,18,47,0.0 +17656,67,14,32,0.0 +17656,4,22,2,0.0 +17656,77,13,47,0.0 +17656,60,34,19,0.0 +17656,27,43.9,30,0.0 +17656,34,14,16,0.0 +17656,22,21,42,0.0 +17656,29,123.79,16,0.0 +17656,24,4.5,21,0.0 +17656,74,10,9,0.0 +17656,72,34.8,49,0.0 +17656,76,18,43,0.0 +17656,32,32,5,0.0 +17656,66,17,37,0.0 +17656,75,7.75,44,0.0 +17656,9,97,33,0.0 +17656,16,17.45,11,0.0 +17657,53,32.8,2,0.0 +17657,65,21.05,31,0.0 +17658,12,38,36,0.0 +17658,16,17.45,44,0.0 +17658,45,9.5,49,0.0 +17658,56,38,5,0.0 +17658,67,14,6,0.0 +17658,41,9.65,44,0.0 +17658,31,12.5,20,0.0 +17658,36,19,11,0.0 +17658,60,34,17,0.0 +17658,65,21.05,26,0.0 +17658,28,45.6,43,0.0 +17658,62,49.3,26,0.0 +17658,48,12.75,48,0.0 +17658,75,7.75,19,0.0 +17658,76,18,31,0.0 +17658,57,19.5,5,0.0 +17658,22,21,45,0.0 +17658,3,10,19,0.0 +17658,25,14,48,0.0 +17658,24,4.5,18,0.0 +17658,49,20,41,0.0 +17658,77,13,9,0.0 +17658,34,14,22,0.0 +17658,35,18,44,0.0 +17659,46,12,2,0.0 +17659,43,46,30,0.0 +17659,59,55,38,0.0 +17659,18,62.5,34,0.0 +17659,57,19.5,39,0.0 +17659,56,38,33,0.0 +17659,74,10,19,0.0 +17659,50,16.25,17,0.0 +17659,48,12.75,27,0.0 +17659,72,34.8,6,0.0 +17659,62,49.3,5,0.0 +17659,52,7,6,0.0 +17659,53,32.8,35,0.0 +17659,47,9.5,1,0.0 +17659,33,2.5,19,0.0 +17659,31,12.5,23,0.0 +17659,6,25,47,0.0 +17659,28,45.6,46,0.0 +17659,29,123.79,11,0.0 +17659,19,9.2,7,0.0 +17659,75,7.75,15,0.0 +17659,55,24,26,0.0 +17659,71,21.5,25,0.0 +17659,21,10,34,0.0 +17659,25,14,7,0.0 +17659,36,19,39,0.0 +17659,22,21,37,0.0 +17659,61,28.5,44,0.0 +17659,41,9.65,12,0.0 +17659,69,36,2,0.0 +17659,14,23.25,43,0.0 +17659,39,18,46,0.0 +17659,58,13.25,9,0.0 +17659,63,43.9,19,0.0 +17659,13,6,34,0.0 +17659,64,33.25,43,0.0 +17659,37,26,35,0.0 +17660,64,33.25,36,0.0 +17660,34,14,41,0.0 +17660,40,18.4,6,0.0 +17660,38,263.5,21,0.0 +17660,12,38,37,0.0 +17660,26,31.23,13,0.0 +17660,53,32.8,4,0.0 +17660,41,9.65,30,0.0 +17660,4,22,34,0.0 +17660,20,81,46,0.0 +17660,1,18,47,0.0 +17660,33,2.5,36,0.0 +17660,42,14,41,0.0 +17660,69,36,28,0.0 +17660,19,9.2,14,0.0 +17660,39,18,29,0.0 +17660,16,17.45,33,0.0 +17660,10,31,27,0.0 +17660,27,43.9,34,0.0 +17660,61,28.5,29,0.0 +17660,36,19,14,0.0 +17660,21,10,43,0.0 +17660,45,9.5,6,0.0 +17660,57,19.5,49,0.0 +17660,28,45.6,25,0.0 +17660,62,49.3,43,0.0 +17660,15,15.5,1,0.0 +17660,24,4.5,49,0.0 +17661,74,10,31,0.0 +17661,53,32.8,33,0.0 +17661,65,21.05,48,0.0 +17661,40,18.4,46,0.0 +17661,61,28.5,40,0.0 +17661,50,16.25,28,0.0 +17661,49,20,40,0.0 +17661,10,31,2,0.0 +17661,52,7,33,0.0 +17661,6,25,25,0.0 +17661,32,32,10,0.0 +17661,1,18,28,0.0 +17661,66,17,14,0.0 +17661,25,14,17,0.0 +17661,72,34.8,20,0.0 +17661,76,18,33,0.0 +17661,54,7.45,4,0.0 +17661,20,81,16,0.0 +17661,26,31.23,38,0.0 +17661,7,30,13,0.0 +17661,39,18,43,0.0 +17661,3,10,32,0.0 +17661,44,19.45,5,0.0 +17661,36,19,4,0.0 +17661,38,263.5,40,0.0 +17661,27,43.9,18,0.0 +17661,29,123.79,38,0.0 +17661,68,12.5,20,0.0 +17661,46,12,10,0.0 +17661,9,97,35,0.0 +17661,5,21.35,20,0.0 +17661,14,23.25,10,0.0 +17661,41,9.65,14,0.0 +17661,45,9.5,6,0.0 +17661,63,43.9,45,0.0 +17661,51,53,40,0.0 +17661,33,2.5,28,0.0 +17661,19,9.2,8,0.0 +17661,24,4.5,16,0.0 +17661,75,7.75,23,0.0 +17661,59,55,45,0.0 +17661,8,40,18,0.0 +17661,55,24,37,0.0 +17661,47,9.5,18,0.0 +17661,31,12.5,1,0.0 +17661,21,10,46,0.0 +17661,11,21,25,0.0 +17661,64,33.25,13,0.0 +17661,56,38,10,0.0 +17661,13,6,32,0.0 +17661,12,38,50,0.0 +17661,2,19,22,0.0 +17661,4,22,7,0.0 +17661,37,26,48,0.0 +17661,42,14,21,0.0 +17661,62,49.3,28,0.0 +17661,48,12.75,29,0.0 +17661,23,9,47,0.0 +17661,69,36,25,0.0 +17661,30,25.89,24,0.0 +17661,71,21.5,46,0.0 +17661,18,62.5,15,0.0 +17661,34,14,17,0.0 +17661,35,18,14,0.0 +17661,57,19.5,20,0.0 +17661,17,39,38,0.0 +17662,13,6,46,0.0 +17662,39,18,19,0.0 +17662,43,46,38,0.0 +17662,8,40,32,0.0 +17662,70,15,42,0.0 +17662,56,38,12,0.0 +17662,60,34,16,0.0 +17662,59,55,39,0.0 +17662,34,14,47,0.0 +17662,62,49.3,36,0.0 +17662,23,9,15,0.0 +17662,53,32.8,37,0.0 +17662,46,12,48,0.0 +17662,65,21.05,25,0.0 +17662,32,32,8,0.0 +17662,58,13.25,10,0.0 +17662,55,24,28,0.0 +17662,15,15.5,7,0.0 +17662,21,10,45,0.0 +17662,14,23.25,35,0.0 +17663,24,4.5,7,0.0 +17663,32,32,50,0.0 +17663,30,25.89,9,0.0 +17663,62,49.3,48,0.0 +17663,31,12.5,41,0.0 +17663,40,18.4,10,0.0 +17663,67,14,9,0.0 +17663,29,123.79,50,0.0 +17663,41,9.65,22,0.0 +17663,28,45.6,32,0.0 +17663,25,14,25,0.0 +17663,22,21,50,0.0 +17663,42,14,45,0.0 +17663,5,21.35,14,0.0 +17663,74,10,9,0.0 +17663,49,20,42,0.0 +17663,3,10,6,0.0 +17663,17,39,17,0.0 +17663,59,55,27,0.0 +17663,58,13.25,48,0.0 +17663,56,38,8,0.0 +17663,10,31,28,0.0 +17663,2,19,31,0.0 +17663,55,24,1,0.0 +17663,7,30,8,0.0 +17663,19,9.2,34,0.0 +17663,76,18,47,0.0 +17663,68,12.5,45,0.0 +17663,27,43.9,43,0.0 +17663,43,46,6,0.0 +17663,70,15,35,0.0 +17663,6,25,33,0.0 +17663,44,19.45,47,0.0 +17664,47,9.5,48,0.0 +17664,54,7.45,12,0.0 +17664,32,32,8,0.0 +17664,75,7.75,42,0.0 +17664,24,4.5,30,0.0 +17664,9,97,4,0.0 +17664,35,18,32,0.0 +17664,61,28.5,24,0.0 +17664,34,14,19,0.0 +17664,57,19.5,19,0.0 +17664,12,38,19,0.0 +17664,11,21,47,0.0 +17664,8,40,8,0.0 +17664,55,24,9,0.0 +17664,7,30,39,0.0 +17664,10,31,12,0.0 +17664,40,18.4,27,0.0 +17664,20,81,18,0.0 +17664,29,123.79,32,0.0 +17664,25,14,31,0.0 +17664,51,53,22,0.0 +17664,50,16.25,12,0.0 +17664,30,25.89,7,0.0 +17664,53,32.8,39,0.0 +17664,49,20,19,0.0 +17664,77,13,40,0.0 +17664,5,21.35,28,0.0 +17664,4,22,16,0.0 +17664,72,34.8,45,0.0 +17664,71,21.5,21,0.0 +17665,53,32.8,3,0.0 +17665,64,33.25,23,0.0 +17665,37,26,50,0.0 +17665,63,43.9,21,0.0 +17665,20,81,44,0.0 +17665,72,34.8,50,0.0 +17665,31,12.5,49,0.0 +17665,6,25,22,0.0 +17665,17,39,3,0.0 +17665,44,19.45,14,0.0 +17665,66,17,21,0.0 +17665,57,19.5,29,0.0 +17665,25,14,25,0.0 +17665,3,10,41,0.0 +17665,59,55,47,0.0 +17665,34,14,1,0.0 +17665,73,15,44,0.0 +17665,77,13,13,0.0 +17665,67,14,45,0.0 +17665,62,49.3,24,0.0 +17665,29,123.79,14,0.0 +17665,56,38,33,0.0 +17665,22,21,45,0.0 +17665,13,6,45,0.0 +17665,47,9.5,27,0.0 +17665,30,25.89,28,0.0 +17665,18,62.5,27,0.0 +17665,51,53,18,0.0 +17665,28,45.6,48,0.0 +17665,41,9.65,32,0.0 +17665,61,28.5,7,0.0 +17665,26,31.23,14,0.0 +17665,46,12,41,0.0 +17665,4,22,35,0.0 +17665,33,2.5,44,0.0 +17665,71,21.5,3,0.0 +17665,65,21.05,43,0.0 +17665,39,18,44,0.0 +17665,23,9,29,0.0 +17665,43,46,29,0.0 +17665,68,12.5,27,0.0 +17665,75,7.75,15,0.0 +17665,16,17.45,14,0.0 +17665,76,18,50,0.0 +17665,70,15,2,0.0 +17665,5,21.35,27,0.0 +17665,9,97,4,0.0 +17665,2,19,21,0.0 +17665,8,40,31,0.0 +17665,10,31,26,0.0 +17665,60,34,21,0.0 +17665,35,18,15,0.0 +17665,40,18.4,4,0.0 +17665,7,30,19,0.0 +17665,38,263.5,19,0.0 +17665,42,14,36,0.0 +17665,55,24,27,0.0 +17665,11,21,48,0.0 +17665,21,10,8,0.0 +17665,50,16.25,11,0.0 +17665,24,4.5,16,0.0 +17665,45,9.5,31,0.0 +17665,1,18,37,0.0 +17665,12,38,4,0.0 +17665,19,9.2,25,0.0 +17665,49,20,3,0.0 +17665,36,19,44,0.0 +17666,28,45.6,4,0.0 +17666,64,33.25,50,0.0 +17666,20,81,33,0.0 +17666,10,31,43,0.0 +17666,58,13.25,21,0.0 +17666,75,7.75,1,0.0 +17666,55,24,33,0.0 +17666,44,19.45,39,0.0 +17666,59,55,35,0.0 +17666,35,18,7,0.0 +17666,49,20,7,0.0 +17666,56,38,27,0.0 +17667,19,9.2,4,0.0 +17667,22,21,40,0.0 +17667,76,18,44,0.0 +17667,67,14,49,0.0 +17667,77,13,9,0.0 +17667,2,19,47,0.0 +17667,24,4.5,38,0.0 +17667,64,33.25,49,0.0 +17667,26,31.23,17,0.0 +17667,46,12,40,0.0 +17667,12,38,28,0.0 +17667,5,21.35,29,0.0 +17667,47,9.5,44,0.0 +17667,68,12.5,28,0.0 +17667,51,53,11,0.0 +17667,7,30,37,0.0 +17667,44,19.45,35,0.0 +17667,50,16.25,34,0.0 +17667,31,12.5,29,0.0 +17667,39,18,46,0.0 +17667,53,32.8,40,0.0 +17667,55,24,17,0.0 +17667,74,10,38,0.0 +17667,33,2.5,11,0.0 +17667,57,19.5,41,0.0 +17667,13,6,35,0.0 +17667,28,45.6,14,0.0 +17667,48,12.75,28,0.0 +17667,40,18.4,8,0.0 +17667,41,9.65,26,0.0 +17667,3,10,9,0.0 +17667,56,38,25,0.0 +17667,32,32,35,0.0 +17667,62,49.3,25,0.0 +17667,4,22,3,0.0 +17667,27,43.9,21,0.0 +17667,16,17.45,10,0.0 +17667,17,39,10,0.0 +17667,34,14,15,0.0 +17667,65,21.05,22,0.0 +17667,69,36,50,0.0 +17667,61,28.5,23,0.0 +17667,54,7.45,34,0.0 +17667,52,7,24,0.0 +17667,60,34,24,0.0 +17667,11,21,11,0.0 +17667,30,25.89,40,0.0 +17667,23,9,49,0.0 +17667,15,15.5,50,0.0 +17667,58,13.25,18,0.0 +17667,8,40,49,0.0 +17668,20,81,20,0.0 +17668,24,4.5,42,0.0 +17668,25,14,18,0.0 +17668,23,9,4,0.0 +17668,71,21.5,39,0.0 +17668,1,18,27,0.0 +17668,48,12.75,15,0.0 +17668,60,34,16,0.0 +17668,39,18,18,0.0 +17668,59,55,7,0.0 +17668,15,15.5,23,0.0 +17668,73,15,17,0.0 +17668,35,18,10,0.0 +17668,57,19.5,37,0.0 +17668,52,7,22,0.0 +17668,55,24,44,0.0 +17668,62,49.3,18,0.0 +17668,28,45.6,22,0.0 +17668,40,18.4,31,0.0 +17668,7,30,20,0.0 +17668,5,21.35,17,0.0 +17668,14,23.25,12,0.0 +17668,8,40,39,0.0 +17668,70,15,12,0.0 +17668,17,39,1,0.0 +17668,77,13,40,0.0 +17668,22,21,32,0.0 +17668,66,17,7,0.0 +17668,4,22,26,0.0 +17668,34,14,27,0.0 +17668,51,53,48,0.0 +17668,42,14,28,0.0 +17668,56,38,32,0.0 +17668,32,32,14,0.0 +17668,50,16.25,15,0.0 +17668,18,62.5,15,0.0 +17668,6,25,8,0.0 +17668,64,33.25,34,0.0 +17668,36,19,17,0.0 +17668,46,12,33,0.0 +17668,19,9.2,40,0.0 +17668,33,2.5,33,0.0 +17668,3,10,23,0.0 +17668,47,9.5,21,0.0 +17668,44,19.45,34,0.0 +17668,31,12.5,46,0.0 +17668,10,31,46,0.0 +17668,74,10,48,0.0 +17668,43,46,50,0.0 +17668,26,31.23,44,0.0 +17668,53,32.8,37,0.0 +17668,21,10,17,0.0 +17668,27,43.9,41,0.0 +17668,41,9.65,37,0.0 +17668,38,263.5,40,0.0 +17668,69,36,9,0.0 +17668,30,25.89,24,0.0 +17668,9,97,16,0.0 +17668,49,20,12,0.0 +17668,67,14,12,0.0 +17668,11,21,23,0.0 +17668,75,7.75,2,0.0 +17668,65,21.05,50,0.0 +17668,61,28.5,23,0.0 +17668,68,12.5,44,0.0 +17668,29,123.79,20,0.0 +17669,6,25,22,0.0 +17669,21,10,39,0.0 +17669,4,22,29,0.0 +17669,23,9,45,0.0 +17669,64,33.25,38,0.0 +17669,42,14,46,0.0 +17669,66,17,42,0.0 +17669,43,46,29,0.0 +17669,73,15,50,0.0 +17669,55,24,35,0.0 +17669,31,12.5,31,0.0 +17669,59,55,2,0.0 +17669,24,4.5,34,0.0 +17669,60,34,22,0.0 +17669,15,15.5,31,0.0 +17669,38,263.5,30,0.0 +17669,74,10,1,0.0 +17669,35,18,2,0.0 +17669,5,21.35,28,0.0 +17669,41,9.65,48,0.0 +17669,10,31,17,0.0 +17669,28,45.6,13,0.0 +17669,70,15,8,0.0 +17669,14,23.25,8,0.0 +17669,3,10,11,0.0 +17670,75,7.75,11,0.0 +17670,68,12.5,14,0.0 +17670,62,49.3,26,0.0 +17670,21,10,48,0.0 +17670,25,14,38,0.0 +17670,53,32.8,17,0.0 +17670,42,14,48,0.0 +17670,20,81,1,0.0 +17670,60,34,6,0.0 +17670,63,43.9,11,0.0 +17670,9,97,47,0.0 +17670,30,25.89,30,0.0 +17670,61,28.5,39,0.0 +17670,40,18.4,33,0.0 +17670,54,7.45,30,0.0 +17670,18,62.5,7,0.0 +17670,24,4.5,25,0.0 +17670,1,18,35,0.0 +17670,71,21.5,32,0.0 +17670,34,14,8,0.0 +17670,22,21,13,0.0 +17670,27,43.9,38,0.0 +17670,55,24,45,0.0 +17670,44,19.45,21,0.0 +17670,72,34.8,1,0.0 +17670,8,40,17,0.0 +17670,33,2.5,46,0.0 +17670,76,18,34,0.0 +17670,16,17.45,37,0.0 +17670,12,38,11,0.0 +17670,48,12.75,9,0.0 +17670,73,15,50,0.0 +17670,70,15,41,0.0 +17670,52,7,49,0.0 +17670,26,31.23,46,0.0 +17670,58,13.25,38,0.0 +17670,43,46,37,0.0 +17670,41,9.65,45,0.0 +17670,66,17,4,0.0 +17670,10,31,10,0.0 +17670,56,38,37,0.0 +17670,39,18,26,0.0 +17670,7,30,16,0.0 +17670,31,12.5,9,0.0 +17670,11,21,31,0.0 +17670,47,9.5,7,0.0 +17670,45,9.5,19,0.0 +17670,67,14,41,0.0 +17670,77,13,25,0.0 +17670,29,123.79,13,0.0 +17670,4,22,2,0.0 +17670,51,53,38,0.0 +17670,37,26,42,0.0 +17670,64,33.25,22,0.0 +17671,38,263.5,46,0.0 +17671,10,31,9,0.0 +17671,75,7.75,5,0.0 +17671,8,40,28,0.0 +17672,1,18,18,0.0 +17672,25,14,32,0.0 +17672,14,23.25,37,0.0 +17672,38,263.5,10,0.0 +17672,30,25.89,46,0.0 +17672,57,19.5,47,0.0 +17672,9,97,26,0.0 +17672,40,18.4,37,0.0 +17672,37,26,7,0.0 +17672,7,30,22,0.0 +17672,50,16.25,24,0.0 +17672,64,33.25,28,0.0 +17672,13,6,47,0.0 +17672,34,14,18,0.0 +17672,35,18,40,0.0 +17672,2,19,39,0.0 +17672,4,22,37,0.0 +17672,39,18,47,0.0 +17672,70,15,2,0.0 +17672,72,34.8,18,0.0 +17672,44,19.45,4,0.0 +17672,53,32.8,10,0.0 +17672,61,28.5,1,0.0 +17672,42,14,18,0.0 +17672,46,12,43,0.0 +17672,19,9.2,5,0.0 +17673,67,14,38,0.0 +17673,64,33.25,26,0.0 +17673,52,7,10,0.0 +17673,19,9.2,44,0.0 +17673,32,32,23,0.0 +17673,75,7.75,34,0.0 +17673,28,45.6,24,0.0 +17673,49,20,16,0.0 +17673,36,19,38,0.0 +17673,23,9,2,0.0 +17673,43,46,20,0.0 +17673,34,14,43,0.0 +17673,15,15.5,17,0.0 +17673,22,21,29,0.0 +17673,77,13,21,0.0 +17673,25,14,22,0.0 +17673,2,19,45,0.0 +17673,6,25,49,0.0 +17673,76,18,26,0.0 +17673,37,26,36,0.0 +17673,27,43.9,49,0.0 +17673,26,31.23,37,0.0 +17673,17,39,34,0.0 +17673,53,32.8,18,0.0 +17673,41,9.65,16,0.0 +17673,21,10,25,0.0 +17673,54,7.45,46,0.0 +17673,59,55,20,0.0 +17673,63,43.9,25,0.0 +17673,12,38,25,0.0 +17673,29,123.79,35,0.0 +17673,44,19.45,28,0.0 +17673,40,18.4,37,0.0 +17673,7,30,16,0.0 +17673,31,12.5,14,0.0 +17673,50,16.25,46,0.0 +17673,3,10,50,0.0 +17673,18,62.5,47,0.0 +17673,38,263.5,48,0.0 +17673,4,22,8,0.0 +17673,33,2.5,4,0.0 +17673,68,12.5,12,0.0 +17673,56,38,34,0.0 +17673,55,24,25,0.0 +17673,61,28.5,15,0.0 +17673,46,12,31,0.0 +17673,39,18,40,0.0 +17673,30,25.89,36,0.0 +17673,70,15,39,0.0 +17673,24,4.5,27,0.0 +17673,62,49.3,19,0.0 +17673,35,18,47,0.0 +17673,14,23.25,50,0.0 +17673,72,34.8,37,0.0 +17673,9,97,43,0.0 +17673,58,13.25,38,0.0 +17673,11,21,32,0.0 +17673,69,36,10,0.0 +17673,60,34,30,0.0 +17673,47,9.5,9,0.0 +17673,13,6,10,0.0 +17673,71,21.5,12,0.0 +17673,51,53,37,0.0 +17673,57,19.5,25,0.0 +17673,8,40,22,0.0 +17673,65,21.05,1,0.0 +17673,42,14,9,0.0 +17673,74,10,24,0.0 +17673,20,81,32,0.0 +17673,66,17,11,0.0 +17673,10,31,16,0.0 +17673,5,21.35,30,0.0 +17673,48,12.75,35,0.0 +17673,73,15,18,0.0 +17673,16,17.45,10,0.0 +17674,29,123.79,37,0.0 +17674,27,43.9,13,0.0 +17674,21,10,12,0.0 +17674,64,33.25,37,0.0 +17674,17,39,48,0.0 +17674,54,7.45,38,0.0 +17674,1,18,21,0.0 +17674,26,31.23,22,0.0 +17674,53,32.8,50,0.0 +17674,3,10,21,0.0 +17674,68,12.5,2,0.0 +17674,24,4.5,49,0.0 +17674,55,24,42,0.0 +17674,43,46,29,0.0 +17674,22,21,42,0.0 +17674,48,12.75,12,0.0 +17674,8,40,37,0.0 +17674,73,15,17,0.0 +17674,57,19.5,45,0.0 +17674,13,6,4,0.0 +17674,52,7,17,0.0 +17674,74,10,23,0.0 +17674,6,25,44,0.0 +17674,47,9.5,32,0.0 +17674,9,97,46,0.0 +17674,39,18,7,0.0 +17674,77,13,32,0.0 +17674,28,45.6,5,0.0 +17674,65,21.05,29,0.0 +17674,20,81,29,0.0 +17674,36,19,23,0.0 +17674,60,34,36,0.0 +17674,49,20,49,0.0 +17674,50,16.25,28,0.0 +17674,19,9.2,36,0.0 +17674,67,14,27,0.0 +17674,59,55,33,0.0 +17674,46,12,6,0.0 +17674,71,21.5,35,0.0 +17674,7,30,32,0.0 +17674,37,26,35,0.0 +17674,5,21.35,47,0.0 +17674,41,9.65,28,0.0 +17674,35,18,49,0.0 +17674,62,49.3,13,0.0 +17674,2,19,13,0.0 +17674,58,13.25,5,0.0 +17674,56,38,36,0.0 +17674,31,12.5,22,0.0 +17674,44,19.45,4,0.0 +17674,4,22,2,0.0 +17674,63,43.9,19,0.0 +17674,51,53,20,0.0 +17674,32,32,34,0.0 +17674,45,9.5,1,0.0 +17674,11,21,7,0.0 +17674,34,14,48,0.0 +17674,69,36,48,0.0 +17674,25,14,33,0.0 +17674,12,38,32,0.0 +17674,61,28.5,30,0.0 +17674,72,34.8,40,0.0 +17674,42,14,15,0.0 +17674,15,15.5,16,0.0 +17674,70,15,38,0.0 +17674,23,9,44,0.0 +17675,45,9.5,23,0.0 +17675,42,14,18,0.0 +17675,37,26,5,0.0 +17675,13,6,41,0.0 +17675,8,40,22,0.0 +17675,40,18.4,17,0.0 +17675,53,32.8,30,0.0 +17675,36,19,47,0.0 +17675,51,53,4,0.0 +17675,7,30,5,0.0 +17675,38,263.5,7,0.0 +17675,56,38,28,0.0 +17675,77,13,6,0.0 +17675,72,34.8,1,0.0 +17675,49,20,29,0.0 +17675,33,2.5,13,0.0 +17675,29,123.79,19,0.0 +17675,67,14,1,0.0 +17675,75,7.75,48,0.0 +17675,44,19.45,12,0.0 +17675,19,9.2,6,0.0 +17675,39,18,12,0.0 +17675,4,22,2,0.0 +17675,69,36,33,0.0 +17675,61,28.5,37,0.0 +17675,74,10,7,0.0 +17675,6,25,28,0.0 +17675,60,34,35,0.0 +17675,59,55,31,0.0 +17675,30,25.89,15,0.0 +17675,14,23.25,24,0.0 +17675,31,12.5,45,0.0 +17675,66,17,44,0.0 +17675,1,18,4,0.0 +17675,23,9,21,0.0 +17675,10,31,48,0.0 +17675,32,32,31,0.0 +17675,63,43.9,25,0.0 +17675,68,12.5,21,0.0 +17675,41,9.65,29,0.0 +17675,27,43.9,2,0.0 +17675,2,19,45,0.0 +17675,25,14,36,0.0 +17676,55,24,24,0.0 +17676,13,6,47,0.0 +17676,29,123.79,2,0.0 +17676,19,9.2,1,0.0 +17676,9,97,30,0.0 +17676,68,12.5,3,0.0 +17676,7,30,42,0.0 +17676,8,40,26,0.0 +17676,56,38,5,0.0 +17676,18,62.5,39,0.0 +17676,69,36,29,0.0 +17676,39,18,48,0.0 +17676,3,10,47,0.0 +17677,66,17,6,0.0 +17677,35,18,27,0.0 +17677,74,10,29,0.0 +17677,25,14,49,0.0 +17677,2,19,9,0.0 +17677,52,7,26,0.0 +17677,53,32.8,17,0.0 +17677,4,22,36,0.0 +17677,10,31,40,0.0 +17677,13,6,22,0.0 +17677,38,263.5,48,0.0 +17677,3,10,24,0.0 +17677,49,20,5,0.0 +17677,60,34,46,0.0 +17677,63,43.9,6,0.0 +17677,54,7.45,3,0.0 +17677,17,39,12,0.0 +17677,28,45.6,38,0.0 +17677,57,19.5,11,0.0 +17677,18,62.5,44,0.0 +17677,69,36,19,0.0 +17677,73,15,21,0.0 +17677,72,34.8,23,0.0 +17677,45,9.5,12,0.0 +17677,19,9.2,27,0.0 +17677,33,2.5,23,0.0 +17677,20,81,13,0.0 +17677,61,28.5,11,0.0 +17677,76,18,42,0.0 +17677,39,18,20,0.0 +17677,56,38,4,0.0 +17677,22,21,32,0.0 +17677,42,14,28,0.0 +17677,59,55,28,0.0 +17678,61,28.5,23,0.0 +17678,45,9.5,3,0.0 +17678,76,18,14,0.0 +17678,49,20,24,0.0 +17678,59,55,41,0.0 +17678,44,19.45,31,0.0 +17678,26,31.23,15,0.0 +17678,34,14,39,0.0 +17678,53,32.8,11,0.0 +17678,37,26,43,0.0 +17678,31,12.5,5,0.0 +17678,60,34,43,0.0 +17678,23,9,39,0.0 +17678,10,31,50,0.0 +17678,57,19.5,45,0.0 +17678,11,21,10,0.0 +17678,41,9.65,14,0.0 +17678,29,123.79,24,0.0 +17678,3,10,13,0.0 +17678,17,39,25,0.0 +17678,30,25.89,5,0.0 +17678,42,14,37,0.0 +17678,55,24,42,0.0 +17678,9,97,13,0.0 +17678,75,7.75,43,0.0 +17678,71,21.5,3,0.0 +17678,14,23.25,41,0.0 +17678,70,15,28,0.0 +17678,2,19,21,0.0 +17678,52,7,17,0.0 +17678,6,25,44,0.0 +17678,56,38,8,0.0 +17678,8,40,5,0.0 +17678,22,21,47,0.0 +17678,7,30,37,0.0 +17679,25,14,48,0.0 +17679,4,22,21,0.0 +17679,59,55,18,0.0 +17679,12,38,35,0.0 +17679,72,34.8,47,0.0 +17679,35,18,26,0.0 +17679,54,7.45,32,0.0 +17679,75,7.75,49,0.0 +17679,38,263.5,38,0.0 +17679,55,24,26,0.0 +17679,36,19,24,0.0 +17679,1,18,22,0.0 +17679,53,32.8,24,0.0 +17679,41,9.65,35,0.0 +17679,11,21,25,0.0 +17679,64,33.25,6,0.0 +17679,28,45.6,35,0.0 +17679,21,10,49,0.0 +17679,23,9,38,0.0 +17679,14,23.25,10,0.0 +17679,3,10,11,0.0 +17679,18,62.5,22,0.0 +17679,44,19.45,45,0.0 +17679,26,31.23,21,0.0 +17679,30,25.89,6,0.0 +17679,42,14,3,0.0 +17679,33,2.5,48,0.0 +17679,32,32,48,0.0 +17679,52,7,19,0.0 +17679,13,6,15,0.0 +17679,47,9.5,9,0.0 +17679,7,30,45,0.0 +17679,39,18,5,0.0 +17679,15,15.5,50,0.0 +17679,70,15,29,0.0 +17679,69,36,6,0.0 +17679,65,21.05,40,0.0 +17679,17,39,31,0.0 +17679,58,13.25,6,0.0 +17679,31,12.5,49,0.0 +17679,24,4.5,14,0.0 +17679,29,123.79,35,0.0 +17679,46,12,18,0.0 +17679,40,18.4,16,0.0 +17679,8,40,37,0.0 +17679,9,97,33,0.0 +17679,27,43.9,27,0.0 +17679,76,18,3,0.0 +17679,57,19.5,17,0.0 +17679,63,43.9,39,0.0 +17679,6,25,9,0.0 +17679,49,20,24,0.0 +17679,56,38,11,0.0 +17679,10,31,31,0.0 +17679,60,34,26,0.0 +17679,20,81,45,0.0 +17679,50,16.25,23,0.0 +17679,43,46,5,0.0 +17679,34,14,30,0.0 +17679,77,13,27,0.0 +17679,51,53,23,0.0 +17679,68,12.5,50,0.0 +17679,67,14,32,0.0 +17679,2,19,6,0.0 +17679,74,10,25,0.0 +17679,66,17,42,0.0 +17679,37,26,36,0.0 +17679,45,9.5,6,0.0 +17679,62,49.3,37,0.0 +17679,16,17.45,13,0.0 +17679,19,9.2,21,0.0 +17679,22,21,26,0.0 +17679,5,21.35,24,0.0 +17679,71,21.5,47,0.0 +17680,10,31,29,0.0 +17680,68,12.5,13,0.0 +17680,51,53,37,0.0 +17680,74,10,11,0.0 +17680,38,263.5,27,0.0 +17680,29,123.79,41,0.0 +17680,61,28.5,4,0.0 +17680,31,12.5,3,0.0 +17680,57,19.5,29,0.0 +17680,50,16.25,14,0.0 +17680,40,18.4,27,0.0 +17680,56,38,20,0.0 +17680,63,43.9,46,0.0 +17680,18,62.5,15,0.0 +17680,58,13.25,17,0.0 +17680,42,14,19,0.0 +17680,47,9.5,47,0.0 +17680,30,25.89,1,0.0 +17680,72,34.8,4,0.0 +17680,1,18,37,0.0 +17680,27,43.9,20,0.0 +17680,7,30,28,0.0 +17680,35,18,50,0.0 +17680,52,7,37,0.0 +17680,20,81,17,0.0 +17680,36,19,48,0.0 +17681,11,21,50,0.0 +17681,9,97,45,0.0 +17681,51,53,2,0.0 +17681,1,18,32,0.0 +17681,56,38,9,0.0 +17681,49,20,2,0.0 +17681,38,263.5,29,0.0 +17681,73,15,23,0.0 +17681,69,36,22,0.0 +17681,26,31.23,8,0.0 +17681,14,23.25,50,0.0 +17681,58,13.25,11,0.0 +17681,5,21.35,6,0.0 +17681,74,10,22,0.0 +17681,10,31,30,0.0 +17681,31,12.5,32,0.0 +17681,63,43.9,8,0.0 +17681,21,10,50,0.0 +17681,32,32,39,0.0 +17681,64,33.25,22,0.0 +17681,17,39,1,0.0 +17681,18,62.5,42,0.0 +17681,77,13,42,0.0 +17681,53,32.8,33,0.0 +17682,23,9,34,0.0 +17682,38,263.5,35,0.0 +17682,15,15.5,27,0.0 +17682,65,21.05,13,0.0 +17682,9,97,1,0.0 +17682,39,18,1,0.0 +17682,75,7.75,39,0.0 +17682,51,53,26,0.0 +17682,67,14,29,0.0 +17682,49,20,24,0.0 +17682,68,12.5,8,0.0 +17682,4,22,11,0.0 +17682,74,10,15,0.0 +17682,35,18,46,0.0 +17682,66,17,49,0.0 +17682,55,24,3,0.0 +17682,3,10,13,0.0 +17682,61,28.5,12,0.0 +17682,64,33.25,44,0.0 +17682,44,19.45,8,0.0 +17682,27,43.9,11,0.0 +17682,77,13,6,0.0 +17682,33,2.5,9,0.0 +17682,32,32,9,0.0 +17682,28,45.6,23,0.0 +17682,60,34,28,0.0 +17682,30,25.89,46,0.0 +17682,5,21.35,28,0.0 +17682,14,23.25,9,0.0 +17682,41,9.65,22,0.0 +17682,20,81,33,0.0 +17682,62,49.3,17,0.0 +17682,13,6,35,0.0 +17682,40,18.4,8,0.0 +17682,1,18,47,0.0 +17682,29,123.79,4,0.0 +17682,18,62.5,46,0.0 +17683,11,21,6,0.0 +17683,9,97,8,0.0 +17683,74,10,29,0.0 +17683,16,17.45,2,0.0 +17683,31,12.5,24,0.0 +17683,27,43.9,41,0.0 +17683,7,30,39,0.0 +17683,64,33.25,34,0.0 +17683,45,9.5,14,0.0 +17683,6,25,11,0.0 +17683,69,36,46,0.0 +17683,13,6,20,0.0 +17683,37,26,49,0.0 +17683,71,21.5,47,0.0 +17683,5,21.35,29,0.0 +17683,44,19.45,45,0.0 +17683,59,55,9,0.0 +17683,63,43.9,24,0.0 +17683,62,49.3,6,0.0 +17683,50,16.25,34,0.0 +17683,34,14,39,0.0 +17683,3,10,46,0.0 +17683,17,39,10,0.0 +17683,46,12,7,0.0 +17683,39,18,4,0.0 +17683,38,263.5,35,0.0 +17683,14,23.25,28,0.0 +17683,21,10,5,0.0 +17683,24,4.5,42,0.0 +17683,35,18,14,0.0 +17683,61,28.5,50,0.0 +17683,66,17,15,0.0 +17683,32,32,40,0.0 +17683,48,12.75,21,0.0 +17683,4,22,47,0.0 +17683,77,13,2,0.0 +17683,29,123.79,5,0.0 +17683,15,15.5,42,0.0 +17683,70,15,28,0.0 +17683,57,19.5,33,0.0 +17683,19,9.2,48,0.0 +17683,20,81,33,0.0 +17683,53,32.8,26,0.0 +17683,75,7.75,36,0.0 +17683,51,53,42,0.0 +17683,36,19,3,0.0 +17683,40,18.4,18,0.0 +17683,58,13.25,31,0.0 +17683,54,7.45,36,0.0 +17683,8,40,5,0.0 +17683,28,45.6,38,0.0 +17683,42,14,9,0.0 +17683,26,31.23,42,0.0 +17683,49,20,15,0.0 +17683,25,14,25,0.0 +17683,43,46,40,0.0 +17683,60,34,10,0.0 +17683,18,62.5,26,0.0 +17683,76,18,19,0.0 +17683,52,7,19,0.0 +17683,22,21,48,0.0 +17683,72,34.8,37,0.0 +17683,2,19,16,0.0 +17683,33,2.5,19,0.0 +17683,73,15,31,0.0 +17683,56,38,3,0.0 +17683,47,9.5,46,0.0 +17683,65,21.05,45,0.0 +17683,68,12.5,12,0.0 +17683,1,18,2,0.0 +17684,52,7,6,0.0 +17684,70,15,47,0.0 +17684,65,21.05,21,0.0 +17684,12,38,29,0.0 +17684,7,30,39,0.0 +17684,55,24,37,0.0 +17684,40,18.4,5,0.0 +17684,76,18,37,0.0 +17684,54,7.45,26,0.0 +17684,35,18,50,0.0 +17684,26,31.23,8,0.0 +17684,2,19,24,0.0 +17684,20,81,49,0.0 +17684,30,25.89,23,0.0 +17684,53,32.8,31,0.0 +17684,39,18,28,0.0 +17684,6,25,6,0.0 +17684,37,26,41,0.0 +17684,44,19.45,27,0.0 +17684,33,2.5,9,0.0 +17684,15,15.5,5,0.0 +17684,11,21,48,0.0 +17684,71,21.5,43,0.0 +17684,42,14,32,0.0 +17684,3,10,47,0.0 +17684,14,23.25,43,0.0 +17684,64,33.25,47,0.0 +17684,66,17,25,0.0 +17684,68,12.5,19,0.0 +17684,8,40,7,0.0 +17684,23,9,26,0.0 +17684,27,43.9,24,0.0 +17684,41,9.65,40,0.0 +17684,45,9.5,9,0.0 +17684,31,12.5,20,0.0 +17684,74,10,26,0.0 +17684,25,14,25,0.0 +17684,60,34,11,0.0 +17684,4,22,48,0.0 +17684,47,9.5,33,0.0 +17684,21,10,11,0.0 +17684,73,15,16,0.0 +17684,57,19.5,21,0.0 +17684,10,31,13,0.0 +17684,77,13,10,0.0 +17684,34,14,42,0.0 +17684,63,43.9,35,0.0 +17684,59,55,29,0.0 +17684,19,9.2,50,0.0 +17684,72,34.8,22,0.0 +17684,16,17.45,12,0.0 +17684,18,62.5,44,0.0 +17684,67,14,23,0.0 +17684,62,49.3,8,0.0 +17684,5,21.35,12,0.0 +17684,61,28.5,47,0.0 +17684,69,36,9,0.0 +17684,51,53,39,0.0 +17684,28,45.6,19,0.0 +17684,13,6,8,0.0 +17684,49,20,20,0.0 +17684,32,32,16,0.0 +17684,22,21,15,0.0 +17684,17,39,42,0.0 +17684,58,13.25,30,0.0 +17684,43,46,5,0.0 +17684,48,12.75,16,0.0 +17684,50,16.25,34,0.0 +17684,36,19,45,0.0 +17684,29,123.79,20,0.0 +17684,75,7.75,30,0.0 +17684,1,18,8,0.0 +17684,46,12,48,0.0 +17684,38,263.5,35,0.0 +17684,56,38,47,0.0 +17684,9,97,18,0.0 +17684,24,4.5,26,0.0 +17685,14,23.25,1,0.0 +17685,24,4.5,9,0.0 +17685,33,2.5,48,0.0 +17685,16,17.45,45,0.0 +17685,32,32,43,0.0 +17685,26,31.23,43,0.0 +17685,28,45.6,40,0.0 +17685,65,21.05,41,0.0 +17685,10,31,25,0.0 +17685,52,7,42,0.0 +17685,76,18,45,0.0 +17685,2,19,15,0.0 +17685,63,43.9,19,0.0 +17685,11,21,22,0.0 +17685,42,14,19,0.0 +17685,37,26,45,0.0 +17685,51,53,47,0.0 +17685,59,55,30,0.0 +17685,50,16.25,35,0.0 +17685,56,38,29,0.0 +17685,66,17,31,0.0 +17685,69,36,36,0.0 +17685,30,25.89,25,0.0 +17685,17,39,34,0.0 +17686,49,20,44,0.0 +17686,66,17,11,0.0 +17686,26,31.23,33,0.0 +17686,18,62.5,39,0.0 +17686,6,25,47,0.0 +17686,17,39,35,0.0 +17686,19,9.2,38,0.0 +17686,73,15,8,0.0 +17686,53,32.8,43,0.0 +17686,27,43.9,49,0.0 +17686,76,18,23,0.0 +17686,64,33.25,7,0.0 +17686,55,24,26,0.0 +17686,5,21.35,30,0.0 +17686,72,34.8,47,0.0 +17686,36,19,37,0.0 +17686,47,9.5,43,0.0 +17686,69,36,41,0.0 +17686,13,6,39,0.0 +17686,15,15.5,20,0.0 +17686,11,21,25,0.0 +17686,45,9.5,21,0.0 +17686,32,32,37,0.0 +17686,51,53,45,0.0 +17686,48,12.75,18,0.0 +17686,70,15,3,0.0 +17686,24,4.5,21,0.0 +17686,10,31,31,0.0 +17686,29,123.79,20,0.0 +17686,50,16.25,9,0.0 +17686,1,18,44,0.0 +17686,41,9.65,30,0.0 +17686,75,7.75,38,0.0 +17686,60,34,12,0.0 +17686,37,26,7,0.0 +17686,3,10,25,0.0 +17686,61,28.5,41,0.0 +17686,57,19.5,30,0.0 +17686,7,30,28,0.0 +17686,30,25.89,47,0.0 +17686,23,9,3,0.0 +17686,58,13.25,29,0.0 +17686,4,22,37,0.0 +17686,14,23.25,6,0.0 +17686,46,12,34,0.0 +17686,28,45.6,30,0.0 +17686,2,19,26,0.0 +17686,65,21.05,24,0.0 +17686,71,21.5,47,0.0 +17686,77,13,33,0.0 +17686,63,43.9,23,0.0 +17686,40,18.4,37,0.0 +17686,59,55,32,0.0 +17686,52,7,43,0.0 +17686,25,14,43,0.0 +17686,68,12.5,43,0.0 +17686,38,263.5,26,0.0 +17686,74,10,11,0.0 +17686,54,7.45,39,0.0 +17686,62,49.3,40,0.0 +17686,31,12.5,4,0.0 +17686,9,97,23,0.0 +17686,12,38,32,0.0 +17686,33,2.5,13,0.0 +17686,35,18,41,0.0 +17687,66,17,50,0.0 +17687,37,26,35,0.0 +17688,43,46,43,0.0 +17688,52,7,24,0.0 +17688,72,34.8,34,0.0 +17688,36,19,23,0.0 +17688,63,43.9,21,0.0 +17688,17,39,13,0.0 +17688,1,18,24,0.0 +17688,32,32,5,0.0 +17688,71,21.5,1,0.0 +17688,23,9,2,0.0 +17688,56,38,28,0.0 +17688,42,14,37,0.0 +17688,16,17.45,1,0.0 +17688,58,13.25,19,0.0 +17688,4,22,44,0.0 +17688,22,21,30,0.0 +17688,60,34,6,0.0 +17688,64,33.25,41,0.0 +17688,27,43.9,16,0.0 +17688,6,25,24,0.0 +17688,29,123.79,42,0.0 +17688,76,18,32,0.0 +17688,38,263.5,6,0.0 +17688,37,26,29,0.0 +17688,24,4.5,43,0.0 +17688,11,21,38,0.0 +17688,9,97,34,0.0 +17688,48,12.75,24,0.0 +17688,55,24,2,0.0 +17688,54,7.45,42,0.0 +17688,25,14,26,0.0 +17688,59,55,18,0.0 +17688,14,23.25,34,0.0 +17688,5,21.35,18,0.0 +17688,12,38,11,0.0 +17688,3,10,26,0.0 +17688,45,9.5,15,0.0 +17688,65,21.05,41,0.0 +17688,10,31,49,0.0 +17688,20,81,19,0.0 +17688,57,19.5,27,0.0 +17688,66,17,36,0.0 +17688,40,18.4,16,0.0 +17688,26,31.23,25,0.0 +17688,19,9.2,8,0.0 +17688,62,49.3,27,0.0 +17688,50,16.25,34,0.0 +17688,61,28.5,37,0.0 +17688,46,12,1,0.0 +17688,70,15,35,0.0 +17688,35,18,16,0.0 +17688,33,2.5,29,0.0 +17688,53,32.8,19,0.0 +17688,44,19.45,48,0.0 +17688,47,9.5,23,0.0 +17688,15,15.5,27,0.0 +17688,30,25.89,33,0.0 +17688,69,36,24,0.0 +17688,67,14,26,0.0 +17688,8,40,48,0.0 +17688,41,9.65,28,0.0 +17688,18,62.5,42,0.0 +17688,2,19,24,0.0 +17688,73,15,39,0.0 +17688,68,12.5,9,0.0 +17688,49,20,34,0.0 +17688,75,7.75,40,0.0 +17688,34,14,12,0.0 +17688,31,12.5,39,0.0 +17688,13,6,46,0.0 +17688,7,30,3,0.0 +17688,74,10,45,0.0 +17688,28,45.6,4,0.0 +17688,77,13,12,0.0 +17688,51,53,20,0.0 +17688,39,18,25,0.0 +17688,21,10,26,0.0 +17689,23,9,6,0.0 +17689,7,30,37,0.0 +17689,6,25,6,0.0 +17689,47,9.5,1,0.0 +17689,63,43.9,46,0.0 +17689,24,4.5,49,0.0 +17689,19,9.2,22,0.0 +17689,8,40,17,0.0 +17689,69,36,36,0.0 +17689,40,18.4,15,0.0 +17689,25,14,10,0.0 +17689,74,10,45,0.0 +17689,61,28.5,6,0.0 +17689,54,7.45,13,0.0 +17689,68,12.5,30,0.0 +17689,52,7,10,0.0 +17689,35,18,32,0.0 +17689,38,263.5,30,0.0 +17689,41,9.65,35,0.0 +17689,71,21.5,17,0.0 +17689,36,19,34,0.0 +17689,30,25.89,2,0.0 +17689,22,21,17,0.0 +17689,4,22,37,0.0 +17689,72,34.8,49,0.0 +17689,73,15,7,0.0 +17689,12,38,33,0.0 +17689,15,15.5,3,0.0 +17689,58,13.25,16,0.0 +17689,57,19.5,21,0.0 +17689,46,12,36,0.0 +17689,49,20,23,0.0 +17689,45,9.5,48,0.0 +17689,3,10,15,0.0 +17689,44,19.45,45,0.0 +17689,5,21.35,40,0.0 +17689,53,32.8,18,0.0 +17689,14,23.25,6,0.0 +17689,26,31.23,42,0.0 +17689,65,21.05,25,0.0 +17689,48,12.75,8,0.0 +17689,50,16.25,2,0.0 +17689,59,55,45,0.0 +17689,16,17.45,43,0.0 +17689,39,18,30,0.0 +17689,64,33.25,50,0.0 +17689,76,18,45,0.0 +17689,1,18,49,0.0 +17689,43,46,17,0.0 +17689,37,26,31,0.0 +17689,27,43.9,41,0.0 +17689,34,14,4,0.0 +17689,32,32,14,0.0 +17689,31,12.5,42,0.0 +17689,51,53,38,0.0 +17689,10,31,7,0.0 +17689,17,39,38,0.0 +17689,67,14,48,0.0 +17689,18,62.5,15,0.0 +17689,56,38,47,0.0 +17689,70,15,16,0.0 +17689,21,10,19,0.0 +17689,60,34,24,0.0 +17689,75,7.75,3,0.0 +17689,55,24,27,0.0 +17689,13,6,42,0.0 +17689,33,2.5,46,0.0 +17690,59,55,6,0.0 +17690,62,49.3,24,0.0 +17690,6,25,43,0.0 +17690,67,14,39,0.0 +17690,55,24,16,0.0 +17690,5,21.35,44,0.0 +17690,2,19,46,0.0 +17690,74,10,41,0.0 +17690,8,40,39,0.0 +17690,7,30,34,0.0 +17690,52,7,13,0.0 +17690,70,15,23,0.0 +17690,71,21.5,47,0.0 +17690,17,39,39,0.0 +17690,24,4.5,15,0.0 +17690,25,14,48,0.0 +17690,3,10,49,0.0 +17690,73,15,27,0.0 +17690,14,23.25,10,0.0 +17690,41,9.65,41,0.0 +17690,23,9,25,0.0 +17690,15,15.5,3,0.0 +17690,26,31.23,15,0.0 +17690,37,26,25,0.0 +17690,12,38,37,0.0 +17690,43,46,49,0.0 +17690,9,97,41,0.0 +17690,40,18.4,33,0.0 +17690,34,14,14,0.0 +17690,27,43.9,10,0.0 +17690,20,81,14,0.0 +17690,72,34.8,35,0.0 +17690,77,13,19,0.0 +17690,30,25.89,22,0.0 +17690,19,9.2,17,0.0 +17691,74,10,26,0.0 +17691,42,14,15,0.0 +17691,20,81,33,0.0 +17691,51,53,39,0.0 +17691,43,46,3,0.0 +17691,52,7,33,0.0 +17691,13,6,23,0.0 +17691,15,15.5,31,0.0 +17691,55,24,26,0.0 +17691,3,10,17,0.0 +17691,30,25.89,19,0.0 +17691,2,19,29,0.0 +17691,27,43.9,7,0.0 +17691,14,23.25,48,0.0 +17691,76,18,44,0.0 +17691,77,13,47,0.0 +17691,59,55,18,0.0 +17691,65,21.05,20,0.0 +17691,75,7.75,34,0.0 +17691,67,14,18,0.0 +17692,56,38,5,0.0 +17692,23,9,26,0.0 +17692,50,16.25,26,0.0 +17692,61,28.5,28,0.0 +17692,64,33.25,14,0.0 +17692,4,22,12,0.0 +17692,51,53,43,0.0 +17692,24,4.5,4,0.0 +17692,6,25,39,0.0 +17692,54,7.45,6,0.0 +17692,46,12,10,0.0 +17693,75,7.75,25,0.0 +17693,56,38,35,0.0 +17693,57,19.5,18,0.0 +17693,1,18,46,0.0 +17693,6,25,48,0.0 +17693,65,21.05,38,0.0 +17693,66,17,22,0.0 +17693,33,2.5,14,0.0 +17693,74,10,21,0.0 +17693,29,123.79,26,0.0 +17693,50,16.25,38,0.0 +17693,2,19,27,0.0 +17693,71,21.5,9,0.0 +17693,54,7.45,37,0.0 +17693,55,24,27,0.0 +17693,11,21,30,0.0 +17693,62,49.3,4,0.0 +17693,30,25.89,25,0.0 +17693,76,18,34,0.0 +17693,38,263.5,30,0.0 +17693,64,33.25,35,0.0 +17693,13,6,49,0.0 +17693,22,21,33,0.0 +17693,69,36,5,0.0 +17693,61,28.5,3,0.0 +17693,39,18,29,0.0 +17693,3,10,2,0.0 +17693,40,18.4,43,0.0 +17693,37,26,9,0.0 +17694,7,30,5,0.0 +17694,32,32,19,0.0 +17694,4,22,6,0.0 +17694,52,7,46,0.0 +17694,65,21.05,26,0.0 +17694,20,81,27,0.0 +17694,31,12.5,5,0.0 +17694,37,26,34,0.0 +17694,44,19.45,5,0.0 +17694,77,13,25,0.0 +17694,15,15.5,24,0.0 +17694,19,9.2,24,0.0 +17694,60,34,18,0.0 +17694,16,17.45,38,0.0 +17694,57,19.5,50,0.0 +17694,49,20,33,0.0 +17694,26,31.23,20,0.0 +17694,58,13.25,34,0.0 +17694,69,36,18,0.0 +17694,24,4.5,39,0.0 +17694,42,14,17,0.0 +17694,34,14,19,0.0 +17694,53,32.8,48,0.0 +17694,64,33.25,42,0.0 +17694,41,9.65,34,0.0 +17694,11,21,44,0.0 +17694,21,10,24,0.0 +17694,6,25,32,0.0 +17694,74,10,44,0.0 +17694,35,18,26,0.0 +17694,55,24,16,0.0 +17694,27,43.9,25,0.0 +17694,59,55,6,0.0 +17694,63,43.9,36,0.0 +17694,61,28.5,33,0.0 +17694,25,14,41,0.0 +17694,17,39,1,0.0 +17694,14,23.25,29,0.0 +17694,30,25.89,19,0.0 +17694,1,18,13,0.0 +17694,5,21.35,48,0.0 +17694,76,18,11,0.0 +17694,22,21,38,0.0 +17694,47,9.5,42,0.0 +17694,29,123.79,15,0.0 +17694,2,19,31,0.0 +17694,39,18,9,0.0 +17694,48,12.75,38,0.0 +17694,9,97,23,0.0 +17694,3,10,34,0.0 +17694,70,15,35,0.0 +17694,28,45.6,5,0.0 +17694,40,18.4,39,0.0 +17694,33,2.5,10,0.0 +17694,66,17,29,0.0 +17694,72,34.8,49,0.0 +17694,67,14,18,0.0 +17694,12,38,4,0.0 +17694,38,263.5,7,0.0 +17694,18,62.5,27,0.0 +17694,62,49.3,10,0.0 +17694,50,16.25,41,0.0 +17694,75,7.75,38,0.0 +17694,68,12.5,2,0.0 +17694,10,31,31,0.0 +17694,45,9.5,18,0.0 +17694,46,12,42,0.0 +17694,71,21.5,18,0.0 +17694,56,38,47,0.0 +17694,23,9,3,0.0 +17694,13,6,19,0.0 +17694,54,7.45,20,0.0 +17694,43,46,26,0.0 +17694,8,40,20,0.0 +17695,65,21.05,21,0.0 +17695,32,32,42,0.0 +17695,21,10,42,0.0 +17695,22,21,41,0.0 +17695,15,15.5,40,0.0 +17695,5,21.35,28,0.0 +17695,14,23.25,26,0.0 +17695,55,24,49,0.0 +17695,70,15,32,0.0 +17695,44,19.45,48,0.0 +17695,63,43.9,50,0.0 +17695,77,13,49,0.0 +17695,7,30,25,0.0 +17695,69,36,28,0.0 +17695,1,18,10,0.0 +17695,4,22,11,0.0 +17695,46,12,4,0.0 +17695,71,21.5,21,0.0 +17695,56,38,38,0.0 +17695,73,15,42,0.0 +17695,57,19.5,20,0.0 +17695,41,9.65,42,0.0 +17695,12,38,43,0.0 +17695,35,18,4,0.0 +17695,40,18.4,28,0.0 +17695,43,46,4,0.0 +17695,39,18,34,0.0 +17695,10,31,49,0.0 +17695,11,21,23,0.0 +17695,52,7,22,0.0 +17695,45,9.5,24,0.0 +17695,76,18,45,0.0 +17695,48,12.75,32,0.0 +17695,61,28.5,50,0.0 +17695,9,97,45,0.0 +17695,29,123.79,2,0.0 +17695,23,9,34,0.0 +17695,50,16.25,1,0.0 +17695,68,12.5,28,0.0 +17695,24,4.5,32,0.0 +17695,72,34.8,7,0.0 +17695,62,49.3,23,0.0 +17695,54,7.45,45,0.0 +17695,66,17,44,0.0 +17695,34,14,41,0.0 +17695,25,14,19,0.0 +17695,59,55,11,0.0 +17695,30,25.89,41,0.0 +17695,37,26,10,0.0 +17695,53,32.8,12,0.0 +17695,20,81,12,0.0 +17695,31,12.5,25,0.0 +17695,17,39,17,0.0 +17695,75,7.75,46,0.0 +17695,74,10,38,0.0 +17695,3,10,25,0.0 +17695,64,33.25,2,0.0 +17695,60,34,27,0.0 +17695,27,43.9,19,0.0 +17695,33,2.5,35,0.0 +17695,19,9.2,10,0.0 +17695,36,19,14,0.0 +17695,26,31.23,18,0.0 +17696,29,123.79,3,0.0 +17696,36,19,35,0.0 +17696,60,34,12,0.0 +17696,69,36,8,0.0 +17696,62,49.3,24,0.0 +17696,18,62.5,36,0.0 +17696,40,18.4,8,0.0 +17696,43,46,37,0.0 +17696,28,45.6,47,0.0 +17696,49,20,24,0.0 +17696,38,263.5,46,0.0 +17696,53,32.8,29,0.0 +17696,51,53,14,0.0 +17696,26,31.23,37,0.0 +17696,48,12.75,10,0.0 +17696,50,16.25,18,0.0 +17696,71,21.5,32,0.0 +17696,20,81,42,0.0 +17696,52,7,42,0.0 +17696,31,12.5,6,0.0 +17696,61,28.5,22,0.0 +17696,22,21,42,0.0 +17696,1,18,34,0.0 +17696,3,10,25,0.0 +17696,4,22,44,0.0 +17696,57,19.5,29,0.0 +17696,30,25.89,23,0.0 +17696,12,38,20,0.0 +17696,15,15.5,46,0.0 +17696,74,10,15,0.0 +17696,45,9.5,28,0.0 +17696,21,10,19,0.0 +17696,54,7.45,4,0.0 +17696,75,7.75,36,0.0 +17696,24,4.5,29,0.0 +17696,72,34.8,14,0.0 +17696,73,15,21,0.0 +17696,7,30,33,0.0 +17696,63,43.9,17,0.0 +17696,2,19,38,0.0 +17696,37,26,20,0.0 +17696,70,15,8,0.0 +17696,56,38,48,0.0 +17696,25,14,45,0.0 +17696,19,9.2,27,0.0 +17696,58,13.25,41,0.0 +17696,42,14,42,0.0 +17696,44,19.45,14,0.0 +17696,55,24,30,0.0 +17696,46,12,20,0.0 +17696,5,21.35,8,0.0 +17696,27,43.9,41,0.0 +17696,9,97,23,0.0 +17696,39,18,18,0.0 +17696,14,23.25,32,0.0 +17696,11,21,50,0.0 +17696,66,17,12,0.0 +17696,41,9.65,20,0.0 +17696,10,31,19,0.0 +17696,8,40,24,0.0 +17696,35,18,7,0.0 +17696,17,39,34,0.0 +17696,6,25,48,0.0 +17696,23,9,15,0.0 +17696,59,55,11,0.0 +17696,13,6,40,0.0 +17696,76,18,2,0.0 +17697,60,34,25,0.0 +17697,1,18,20,0.0 +17697,6,25,28,0.0 +17697,39,18,28,0.0 +17697,27,43.9,16,0.0 +17697,17,39,15,0.0 +17697,62,49.3,38,0.0 +17697,22,21,48,0.0 +17697,52,7,50,0.0 +17697,56,38,17,0.0 +17697,12,38,24,0.0 +17697,32,32,31,0.0 +17697,42,14,49,0.0 +17697,29,123.79,5,0.0 +17697,15,15.5,11,0.0 +17697,13,6,43,0.0 +17697,7,30,24,0.0 +17697,43,46,4,0.0 +17697,57,19.5,40,0.0 +17697,3,10,41,0.0 +17697,33,2.5,41,0.0 +17697,8,40,23,0.0 +17697,46,12,41,0.0 +17697,64,33.25,32,0.0 +17697,36,19,28,0.0 +17697,71,21.5,32,0.0 +17697,76,18,12,0.0 +17697,9,97,27,0.0 +17697,31,12.5,44,0.0 +17697,23,9,2,0.0 +17697,77,13,7,0.0 +17697,28,45.6,25,0.0 +17697,74,10,24,0.0 +17697,10,31,31,0.0 +17697,16,17.45,41,0.0 +17697,73,15,7,0.0 +17697,45,9.5,2,0.0 +17697,58,13.25,48,0.0 +17697,20,81,33,0.0 +17697,38,263.5,28,0.0 +17697,37,26,26,0.0 +17697,25,14,16,0.0 +17698,28,45.6,21,0.0 +17698,15,15.5,18,0.0 +17698,63,43.9,2,0.0 +17698,44,19.45,14,0.0 +17698,52,7,28,0.0 +17698,12,38,2,0.0 +17698,30,25.89,23,0.0 +17698,38,263.5,42,0.0 +17698,4,22,28,0.0 +17698,26,31.23,25,0.0 +17698,64,33.25,19,0.0 +17698,3,10,41,0.0 +17698,65,21.05,16,0.0 +17698,35,18,10,0.0 +17698,8,40,28,0.0 +17698,41,9.65,41,0.0 +17698,74,10,48,0.0 +17698,33,2.5,10,0.0 +17698,55,24,23,0.0 +17698,31,12.5,40,0.0 +17698,17,39,46,0.0 +17698,24,4.5,48,0.0 +17698,23,9,5,0.0 +17698,60,34,9,0.0 +17698,77,13,38,0.0 +17698,18,62.5,35,0.0 +17698,49,20,39,0.0 +17698,71,21.5,31,0.0 +17698,67,14,2,0.0 +17698,34,14,4,0.0 +17698,51,53,20,0.0 +17698,56,38,44,0.0 +17698,69,36,45,0.0 +17698,37,26,9,0.0 +17698,20,81,30,0.0 +17698,43,46,32,0.0 +17698,54,7.45,1,0.0 +17698,5,21.35,49,0.0 +17698,32,32,8,0.0 +17698,58,13.25,37,0.0 +17698,6,25,39,0.0 +17698,9,97,45,0.0 +17698,57,19.5,26,0.0 +17698,75,7.75,26,0.0 +17698,48,12.75,11,0.0 +17698,16,17.45,29,0.0 +17698,46,12,31,0.0 +17698,36,19,18,0.0 +17699,67,14,19,0.0 +17699,28,45.6,28,0.0 +17699,75,7.75,45,0.0 +17699,5,21.35,9,0.0 +17699,39,18,37,0.0 +17699,65,21.05,2,0.0 +17699,15,15.5,7,0.0 +17699,32,32,32,0.0 +17699,72,34.8,1,0.0 +17699,52,7,37,0.0 +17699,54,7.45,40,0.0 +17699,62,49.3,30,0.0 +17699,69,36,36,0.0 +17699,20,81,19,0.0 +17699,50,16.25,20,0.0 +17699,47,9.5,8,0.0 +17699,61,28.5,46,0.0 +17699,77,13,47,0.0 +17699,17,39,27,0.0 +17699,74,10,42,0.0 +17699,2,19,32,0.0 +17699,16,17.45,49,0.0 +17699,53,32.8,50,0.0 +17699,3,10,34,0.0 +17699,18,62.5,34,0.0 +17699,30,25.89,11,0.0 +17699,35,18,5,0.0 +17699,60,34,22,0.0 +17699,12,38,30,0.0 +17699,71,21.5,20,0.0 +17699,25,14,10,0.0 +17699,76,18,35,0.0 +17699,34,14,26,0.0 +17699,10,31,2,0.0 +17699,24,4.5,17,0.0 +17699,57,19.5,44,0.0 +17699,21,10,14,0.0 +17699,26,31.23,10,0.0 +17699,7,30,46,0.0 +17699,4,22,45,0.0 +17699,6,25,44,0.0 +17699,51,53,5,0.0 +17699,40,18.4,48,0.0 +17699,29,123.79,33,0.0 +17699,59,55,5,0.0 +17699,64,33.25,22,0.0 +17699,19,9.2,35,0.0 +17699,1,18,45,0.0 +17700,49,20,25,0.0 +17700,76,18,11,0.0 +17700,63,43.9,7,0.0 +17700,64,33.25,24,0.0 +17700,6,25,34,0.0 +17700,71,21.5,7,0.0 +17700,33,2.5,32,0.0 +17700,15,15.5,40,0.0 +17700,3,10,34,0.0 +17700,47,9.5,31,0.0 +17700,24,4.5,35,0.0 +17700,55,24,45,0.0 +17700,50,16.25,3,0.0 +17700,11,21,40,0.0 +17700,31,12.5,22,0.0 +17700,53,32.8,24,0.0 +17700,69,36,9,0.0 +17700,28,45.6,48,0.0 +17700,21,10,4,0.0 +17700,1,18,32,0.0 +17700,68,12.5,8,0.0 +17701,17,39,15,0.0 +17701,53,32.8,40,0.0 +17701,55,24,3,0.0 +17701,2,19,42,0.0 +17701,32,32,19,0.0 +17701,58,13.25,9,0.0 +17701,75,7.75,36,0.0 +17701,14,23.25,36,0.0 +17701,47,9.5,21,0.0 +17701,12,38,17,0.0 +17701,45,9.5,21,0.0 +17702,30,25.89,8,0.0 +17702,38,263.5,24,0.0 +17702,28,45.6,2,0.0 +17702,6,25,6,0.0 +17702,7,30,18,0.0 +17702,54,7.45,6,0.0 +17702,72,34.8,17,0.0 +17702,73,15,5,0.0 +17702,51,53,34,0.0 +17702,21,10,46,0.0 +17702,5,21.35,27,0.0 +17702,66,17,40,0.0 +17702,20,81,42,0.0 +17702,36,19,30,0.0 +17702,19,9.2,20,0.0 +17702,33,2.5,24,0.0 +17702,27,43.9,7,0.0 +17702,10,31,10,0.0 +17702,41,9.65,45,0.0 +17702,67,14,28,0.0 +17702,31,12.5,29,0.0 +17702,11,21,27,0.0 +17702,34,14,11,0.0 +17702,23,9,23,0.0 +17702,16,17.45,26,0.0 +17703,2,19,6,0.0 +17703,10,31,16,0.0 +17703,3,10,45,0.0 +17703,43,46,14,0.0 +17703,76,18,47,0.0 +17703,22,21,23,0.0 +17703,57,19.5,8,0.0 +17703,54,7.45,28,0.0 +17703,39,18,50,0.0 +17703,59,55,45,0.0 +17703,68,12.5,40,0.0 +17703,60,34,22,0.0 +17704,29,123.79,19,0.0 +17704,71,21.5,47,0.0 +17704,62,49.3,13,0.0 +17704,76,18,14,0.0 +17704,43,46,37,0.0 +17704,38,263.5,48,0.0 +17704,66,17,16,0.0 +17704,26,31.23,38,0.0 +17704,75,7.75,40,0.0 +17704,32,32,11,0.0 +17704,58,13.25,21,0.0 +17704,46,12,24,0.0 +17704,22,21,49,0.0 +17704,41,9.65,18,0.0 +17704,65,21.05,25,0.0 +17704,6,25,47,0.0 +17704,4,22,7,0.0 +17704,40,18.4,5,0.0 +17704,70,15,33,0.0 +17704,64,33.25,26,0.0 +17704,9,97,26,0.0 +17704,51,53,48,0.0 +17704,35,18,20,0.0 +17704,18,62.5,2,0.0 +17704,54,7.45,17,0.0 +17704,50,16.25,29,0.0 +17704,57,19.5,27,0.0 +17704,20,81,50,0.0 +17704,25,14,2,0.0 +17704,36,19,5,0.0 +17704,16,17.45,33,0.0 +17704,23,9,19,0.0 +17704,42,14,28,0.0 +17704,47,9.5,18,0.0 +17704,2,19,13,0.0 +17704,45,9.5,50,0.0 +17704,49,20,1,0.0 +17704,72,34.8,14,0.0 +17704,33,2.5,36,0.0 +17704,10,31,39,0.0 +17704,56,38,30,0.0 +17704,55,24,17,0.0 +17704,69,36,45,0.0 +17704,53,32.8,34,0.0 +17704,5,21.35,11,0.0 +17704,44,19.45,36,0.0 +17704,13,6,2,0.0 +17704,68,12.5,10,0.0 +17704,3,10,6,0.0 +17704,1,18,50,0.0 +17704,37,26,33,0.0 +17704,24,4.5,27,0.0 +17704,77,13,23,0.0 +17704,73,15,32,0.0 +17704,60,34,28,0.0 +17704,67,14,33,0.0 +17704,12,38,15,0.0 +17704,17,39,13,0.0 +17704,63,43.9,10,0.0 +17704,27,43.9,1,0.0 +17704,74,10,35,0.0 +17704,61,28.5,18,0.0 +17704,19,9.2,12,0.0 +17704,14,23.25,7,0.0 +17704,30,25.89,24,0.0 +17704,31,12.5,21,0.0 +17704,39,18,17,0.0 +17704,8,40,19,0.0 +17704,59,55,49,0.0 +17704,48,12.75,30,0.0 +17704,52,7,18,0.0 +17704,28,45.6,2,0.0 +17704,15,15.5,3,0.0 +17704,7,30,4,0.0 +17704,34,14,16,0.0 +17704,21,10,5,0.0 +17704,11,21,4,0.0 +17705,30,25.89,20,0.0 +17705,53,32.8,16,0.0 +17705,47,9.5,7,0.0 +17705,8,40,46,0.0 +17705,55,24,22,0.0 +17705,44,19.45,3,0.0 +17705,26,31.23,36,0.0 +17705,3,10,31,0.0 +17705,9,97,48,0.0 +17705,2,19,4,0.0 +17705,36,19,18,0.0 +17705,50,16.25,49,0.0 +17705,24,4.5,45,0.0 +17705,63,43.9,5,0.0 +17705,1,18,36,0.0 +17705,7,30,49,0.0 +17705,17,39,47,0.0 +17706,13,6,32,0.0 +17706,56,38,30,0.0 +17706,19,9.2,34,0.0 +17706,63,43.9,12,0.0 +17706,68,12.5,2,0.0 +17706,38,263.5,19,0.0 +17706,35,18,50,0.0 +17706,5,21.35,11,0.0 +17706,49,20,19,0.0 +17706,6,25,44,0.0 +17706,43,46,27,0.0 +17706,36,19,10,0.0 +17706,41,9.65,8,0.0 +17706,2,19,2,0.0 +17706,62,49.3,36,0.0 +17706,66,17,11,0.0 +17706,22,21,19,0.0 +17706,51,53,21,0.0 +17706,57,19.5,49,0.0 +17706,65,21.05,41,0.0 +17706,24,4.5,31,0.0 +17706,67,14,33,0.0 +17706,42,14,20,0.0 +17706,52,7,7,0.0 +17706,29,123.79,2,0.0 +17706,48,12.75,11,0.0 +17706,12,38,7,0.0 +17706,30,25.89,49,0.0 +17706,11,21,49,0.0 +17706,55,24,25,0.0 +17706,40,18.4,44,0.0 +17706,70,15,19,0.0 +17706,33,2.5,46,0.0 +17706,4,22,13,0.0 +17706,27,43.9,14,0.0 +17706,28,45.6,35,0.0 +17706,15,15.5,11,0.0 +17706,60,34,41,0.0 +17707,57,19.5,22,0.0 +17707,56,38,12,0.0 +17707,65,21.05,29,0.0 +17707,9,97,14,0.0 +17707,61,28.5,47,0.0 +17707,14,23.25,18,0.0 +17707,22,21,31,0.0 +17707,35,18,14,0.0 +17707,47,9.5,23,0.0 +17707,71,21.5,31,0.0 +17707,25,14,39,0.0 +17707,48,12.75,43,0.0 +17707,1,18,7,0.0 +17707,44,19.45,42,0.0 +17707,66,17,9,0.0 +17707,55,24,47,0.0 +17707,17,39,41,0.0 +17707,63,43.9,31,0.0 +17707,36,19,30,0.0 +17707,11,21,28,0.0 +17707,13,6,47,0.0 +17707,4,22,11,0.0 +17707,32,32,50,0.0 +17707,42,14,9,0.0 +17707,7,30,8,0.0 +17707,30,25.89,1,0.0 +17707,15,15.5,35,0.0 +17707,24,4.5,19,0.0 +17707,29,123.79,20,0.0 +17707,60,34,11,0.0 +17707,6,25,34,0.0 +17707,39,18,38,0.0 +17707,26,31.23,23,0.0 +17707,58,13.25,27,0.0 +17707,19,9.2,48,0.0 +17707,75,7.75,10,0.0 +17707,76,18,23,0.0 +17707,49,20,30,0.0 +17707,67,14,13,0.0 +17707,41,9.65,42,0.0 +17707,46,12,3,0.0 +17707,59,55,35,0.0 +17707,52,7,39,0.0 +17707,50,16.25,50,0.0 +17707,37,26,33,0.0 +17707,3,10,35,0.0 +17707,51,53,29,0.0 +17707,38,263.5,44,0.0 +17707,12,38,41,0.0 +17707,31,12.5,19,0.0 +17707,8,40,47,0.0 +17707,54,7.45,3,0.0 +17707,23,9,7,0.0 +17707,10,31,37,0.0 +17708,28,45.6,7,0.0 +17708,32,32,22,0.0 +17708,74,10,30,0.0 +17708,60,34,47,0.0 +17708,14,23.25,33,0.0 +17708,72,34.8,38,0.0 +17708,55,24,34,0.0 +17708,49,20,23,0.0 +17708,59,55,48,0.0 +17708,56,38,19,0.0 +17708,17,39,28,0.0 +17708,30,25.89,10,0.0 +17708,1,18,16,0.0 +17708,16,17.45,50,0.0 +17708,77,13,5,0.0 +17708,40,18.4,32,0.0 +17708,19,9.2,47,0.0 +17708,26,31.23,11,0.0 +17708,20,81,6,0.0 +17708,31,12.5,27,0.0 +17708,35,18,19,0.0 +17708,39,18,6,0.0 +17708,64,33.25,8,0.0 +17708,38,263.5,3,0.0 +17708,25,14,32,0.0 +17708,44,19.45,39,0.0 +17708,29,123.79,30,0.0 +17708,33,2.5,29,0.0 +17708,67,14,25,0.0 +17708,3,10,42,0.0 +17708,43,46,35,0.0 +17708,70,15,14,0.0 +17708,42,14,2,0.0 +17708,47,9.5,9,0.0 +17708,5,21.35,26,0.0 +17708,37,26,15,0.0 +17708,15,15.5,26,0.0 +17708,2,19,25,0.0 +17708,66,17,12,0.0 +17708,11,21,37,0.0 +17708,22,21,28,0.0 +17708,9,97,6,0.0 +17708,52,7,48,0.0 +17708,48,12.75,23,0.0 +17708,8,40,41,0.0 +17708,73,15,25,0.0 +17708,58,13.25,19,0.0 +17708,10,31,30,0.0 +17708,61,28.5,4,0.0 +17708,76,18,10,0.0 +17709,57,19.5,42,0.0 +17709,14,23.25,23,0.0 +17709,8,40,8,0.0 +17709,66,17,24,0.0 +17709,70,15,17,0.0 +17709,48,12.75,2,0.0 +17709,43,46,30,0.0 +17709,4,22,48,0.0 +17709,45,9.5,47,0.0 +17709,16,17.45,36,0.0 +17709,55,24,25,0.0 +17709,68,12.5,37,0.0 +17709,76,18,28,0.0 +17709,50,16.25,18,0.0 +17709,13,6,29,0.0 +17709,61,28.5,7,0.0 +17709,56,38,26,0.0 +17709,62,49.3,9,0.0 +17709,32,32,14,0.0 +17709,5,21.35,1,0.0 +17709,36,19,49,0.0 +17709,65,21.05,24,0.0 +17709,12,38,42,0.0 +17709,72,34.8,11,0.0 +17710,39,18,36,0.0 +17710,5,21.35,23,0.0 +17710,64,33.25,27,0.0 +17710,46,12,2,0.0 +17710,66,17,7,0.0 +17710,34,14,32,0.0 +17710,62,49.3,2,0.0 +17710,73,15,15,0.0 +17710,59,55,27,0.0 +17710,48,12.75,44,0.0 +17710,36,19,7,0.0 +17710,58,13.25,38,0.0 +17710,44,19.45,41,0.0 +17710,55,24,32,0.0 +17710,33,2.5,39,0.0 +17710,32,32,47,0.0 +17710,77,13,23,0.0 +17710,69,36,29,0.0 +17710,61,28.5,19,0.0 +17710,31,12.5,9,0.0 +17710,22,21,5,0.0 +17710,24,4.5,10,0.0 +17710,12,38,2,0.0 +17710,6,25,34,0.0 +17710,45,9.5,24,0.0 +17710,63,43.9,47,0.0 +17710,47,9.5,18,0.0 +17710,52,7,15,0.0 +17710,68,12.5,9,0.0 +17710,40,18.4,46,0.0 +17710,38,263.5,47,0.0 +17710,54,7.45,40,0.0 +17710,57,19.5,17,0.0 +17710,67,14,7,0.0 +17710,26,31.23,37,0.0 +17710,42,14,3,0.0 +17710,49,20,48,0.0 +17710,56,38,41,0.0 +17710,41,9.65,32,0.0 +17710,71,21.5,24,0.0 +17710,8,40,46,0.0 +17710,30,25.89,24,0.0 +17710,53,32.8,48,0.0 +17710,72,34.8,7,0.0 +17710,25,14,8,0.0 +17710,19,9.2,50,0.0 +17710,10,31,2,0.0 +17710,76,18,1,0.0 +17710,35,18,22,0.0 +17710,20,81,21,0.0 +17710,4,22,41,0.0 +17710,11,21,49,0.0 +17710,50,16.25,36,0.0 +17710,70,15,17,0.0 +17710,3,10,4,0.0 +17710,7,30,30,0.0 +17710,60,34,37,0.0 +17710,2,19,38,0.0 +17710,23,9,15,0.0 +17710,13,6,48,0.0 +17710,43,46,35,0.0 +17710,74,10,10,0.0 +17710,75,7.75,19,0.0 +17710,18,62.5,41,0.0 +17710,16,17.45,32,0.0 +17710,1,18,6,0.0 +17710,37,26,25,0.0 +17710,9,97,22,0.0 +17710,21,10,42,0.0 +17710,14,23.25,21,0.0 +17710,28,45.6,13,0.0 +17710,17,39,5,0.0 +17710,29,123.79,10,0.0 +17710,27,43.9,44,0.0 +17710,65,21.05,43,0.0 +17710,15,15.5,34,0.0 +17710,51,53,10,0.0 +17711,59,55,32,0.0 +17711,24,4.5,47,0.0 +17711,27,43.9,20,0.0 +17711,76,18,48,0.0 +17711,72,34.8,48,0.0 +17711,51,53,24,0.0 +17711,29,123.79,12,0.0 +17711,3,10,42,0.0 +17711,6,25,33,0.0 +17711,18,62.5,1,0.0 +17711,12,38,14,0.0 +17711,16,17.45,31,0.0 +17711,19,9.2,19,0.0 +17711,60,34,17,0.0 +17711,7,30,28,0.0 +17711,67,14,13,0.0 +17711,5,21.35,43,0.0 +17711,66,17,6,0.0 +17711,57,19.5,20,0.0 +17711,15,15.5,22,0.0 +17711,23,9,29,0.0 +17711,65,21.05,50,0.0 +17711,26,31.23,23,0.0 +17711,48,12.75,47,0.0 +17711,64,33.25,48,0.0 +17711,38,263.5,7,0.0 +17711,25,14,37,0.0 +17711,73,15,7,0.0 +17711,43,46,17,0.0 +17711,28,45.6,40,0.0 +17711,11,21,10,0.0 +17711,62,49.3,25,0.0 +17711,49,20,46,0.0 +17711,13,6,22,0.0 +17711,4,22,28,0.0 +17711,21,10,40,0.0 +17711,58,13.25,46,0.0 +17711,70,15,7,0.0 +17711,46,12,18,0.0 +17711,8,40,21,0.0 +17711,36,19,25,0.0 +17711,54,7.45,33,0.0 +17711,61,28.5,5,0.0 +17711,63,43.9,34,0.0 +17711,42,14,35,0.0 +17711,41,9.65,49,0.0 +17711,9,97,11,0.0 +17711,14,23.25,3,0.0 +17712,44,19.45,30,0.0 +17712,38,263.5,23,0.0 +17712,69,36,32,0.0 +17712,2,19,8,0.0 +17712,21,10,27,0.0 +17712,39,18,17,0.0 +17712,20,81,44,0.0 +17712,46,12,9,0.0 +17712,34,14,5,0.0 +17712,40,18.4,1,0.0 +17712,42,14,49,0.0 +17712,61,28.5,33,0.0 +17712,18,62.5,5,0.0 +17712,27,43.9,32,0.0 +17712,48,12.75,34,0.0 +17712,22,21,35,0.0 +17712,65,21.05,29,0.0 +17712,25,14,38,0.0 +17712,28,45.6,23,0.0 +17712,4,22,9,0.0 +17712,16,17.45,35,0.0 +17712,70,15,13,0.0 +17712,72,34.8,41,0.0 +17712,24,4.5,18,0.0 +17712,1,18,38,0.0 +17712,37,26,1,0.0 +17712,7,30,34,0.0 +17712,19,9.2,47,0.0 +17712,50,16.25,30,0.0 +17712,63,43.9,44,0.0 +17712,15,15.5,42,0.0 +17712,3,10,34,0.0 +17712,56,38,47,0.0 +17712,14,23.25,26,0.0 +17712,33,2.5,45,0.0 +17712,75,7.75,20,0.0 +17712,59,55,28,0.0 +17712,35,18,12,0.0 +17712,64,33.25,44,0.0 +17712,51,53,41,0.0 +17712,6,25,36,0.0 +17712,29,123.79,12,0.0 +17712,54,7.45,46,0.0 +17712,12,38,37,0.0 +17712,47,9.5,15,0.0 +17712,30,25.89,10,0.0 +17712,58,13.25,30,0.0 +17712,36,19,48,0.0 +17712,68,12.5,9,0.0 +17712,60,34,30,0.0 +17713,6,25,11,0.0 +17713,20,81,39,0.0 +17713,42,14,29,0.0 +17713,59,55,48,0.0 +17713,21,10,21,0.0 +17713,58,13.25,16,0.0 +17713,73,15,43,0.0 +17713,60,34,3,0.0 +17713,66,17,36,0.0 +17713,69,36,20,0.0 +17713,63,43.9,41,0.0 +17713,67,14,5,0.0 +17713,51,53,39,0.0 +17713,24,4.5,15,0.0 +17713,26,31.23,26,0.0 +17713,72,34.8,5,0.0 +17714,19,9.2,24,0.0 +17714,21,10,32,0.0 +17714,2,19,6,0.0 +17714,15,15.5,32,0.0 +17714,50,16.25,5,0.0 +17714,64,33.25,50,0.0 +17714,48,12.75,48,0.0 +17714,46,12,23,0.0 +17714,67,14,23,0.0 +17714,7,30,44,0.0 +17714,72,34.8,1,0.0 +17714,5,21.35,49,0.0 +17714,55,24,5,0.0 +17714,33,2.5,29,0.0 +17714,43,46,25,0.0 +17714,34,14,30,0.0 +17714,57,19.5,40,0.0 +17714,42,14,34,0.0 +17714,29,123.79,21,0.0 +17714,25,14,22,0.0 +17714,54,7.45,18,0.0 +17714,70,15,48,0.0 +17714,22,21,24,0.0 +17714,27,43.9,15,0.0 +17714,65,21.05,6,0.0 +17714,20,81,23,0.0 +17714,18,62.5,30,0.0 +17714,59,55,6,0.0 +17714,17,39,41,0.0 +17714,41,9.65,50,0.0 +17714,77,13,24,0.0 +17714,69,36,42,0.0 +17714,10,31,50,0.0 +17714,45,9.5,17,0.0 +17714,4,22,32,0.0 +17714,9,97,9,0.0 +17714,53,32.8,32,0.0 +17714,56,38,7,0.0 +17714,58,13.25,14,0.0 +17714,76,18,47,0.0 +17714,26,31.23,6,0.0 +17714,31,12.5,11,0.0 +17714,51,53,38,0.0 +17714,37,26,38,0.0 +17714,8,40,19,0.0 +17714,40,18.4,46,0.0 +17714,49,20,41,0.0 +17714,38,263.5,40,0.0 +17714,24,4.5,50,0.0 +17714,16,17.45,9,0.0 +17714,30,25.89,14,0.0 +17714,61,28.5,24,0.0 +17715,24,4.5,50,0.0 +17715,54,7.45,37,0.0 +17715,1,18,42,0.0 +17715,55,24,26,0.0 +17715,8,40,2,0.0 +17715,62,49.3,3,0.0 +17715,16,17.45,49,0.0 +17715,10,31,47,0.0 +17715,39,18,8,0.0 +17715,61,28.5,25,0.0 +17715,44,19.45,21,0.0 +17715,12,38,39,0.0 +17715,32,32,3,0.0 +17715,30,25.89,15,0.0 +17715,57,19.5,49,0.0 +17715,43,46,35,0.0 +17715,35,18,32,0.0 +17715,36,19,36,0.0 +17715,3,10,47,0.0 +17715,37,26,50,0.0 +17715,65,21.05,39,0.0 +17715,75,7.75,12,0.0 +17715,68,12.5,5,0.0 +17715,49,20,35,0.0 +17715,70,15,43,0.0 +17715,13,6,49,0.0 +17715,34,14,9,0.0 +17715,40,18.4,35,0.0 +17715,60,34,23,0.0 +17715,46,12,44,0.0 +17715,7,30,8,0.0 +17715,2,19,10,0.0 +17715,47,9.5,41,0.0 +17715,11,21,48,0.0 +17715,18,62.5,34,0.0 +17715,41,9.65,11,0.0 +17715,31,12.5,11,0.0 +17715,69,36,12,0.0 +17715,6,25,27,0.0 +17715,4,22,49,0.0 +17715,64,33.25,25,0.0 +17715,19,9.2,34,0.0 +17715,77,13,26,0.0 +17715,66,17,11,0.0 +17715,33,2.5,14,0.0 +17715,53,32.8,40,0.0 +17715,52,7,8,0.0 +17715,28,45.6,39,0.0 +17715,20,81,2,0.0 +17715,76,18,30,0.0 +17715,42,14,16,0.0 +17715,17,39,48,0.0 +17715,56,38,36,0.0 +17715,15,15.5,35,0.0 +17715,27,43.9,33,0.0 +17715,26,31.23,8,0.0 +17715,63,43.9,9,0.0 +17715,51,53,2,0.0 +17715,67,14,33,0.0 +17715,23,9,10,0.0 +17715,73,15,6,0.0 +17715,59,55,31,0.0 +17715,38,263.5,3,0.0 +17715,9,97,5,0.0 +17715,48,12.75,5,0.0 +17715,50,16.25,35,0.0 +17715,74,10,48,0.0 +17715,58,13.25,25,0.0 +17715,45,9.5,28,0.0 +17715,5,21.35,19,0.0 +17716,52,7,26,0.0 +17716,64,33.25,5,0.0 +17716,34,14,16,0.0 +17716,55,24,24,0.0 +17716,48,12.75,19,0.0 +17716,56,38,18,0.0 +17716,58,13.25,33,0.0 +17716,29,123.79,32,0.0 +17716,12,38,15,0.0 +17716,57,19.5,18,0.0 +17716,45,9.5,18,0.0 +17716,43,46,19,0.0 +17716,30,25.89,10,0.0 +17716,59,55,5,0.0 +17716,35,18,44,0.0 +17716,53,32.8,16,0.0 +17716,6,25,45,0.0 +17716,61,28.5,41,0.0 +17716,39,18,29,0.0 +17716,18,62.5,15,0.0 +17716,7,30,31,0.0 +17716,3,10,6,0.0 +17716,75,7.75,7,0.0 +17716,26,31.23,17,0.0 +17716,71,21.5,13,0.0 +17716,62,49.3,23,0.0 +17716,72,34.8,44,0.0 +17716,25,14,26,0.0 +17716,47,9.5,40,0.0 +17716,44,19.45,39,0.0 +17716,36,19,32,0.0 +17716,23,9,11,0.0 +17716,32,32,17,0.0 +17716,16,17.45,38,0.0 +17716,37,26,6,0.0 +17716,4,22,32,0.0 +17716,9,97,43,0.0 +17716,76,18,11,0.0 +17716,49,20,45,0.0 +17717,45,9.5,7,0.0 +17717,66,17,49,0.0 +17717,12,38,7,0.0 +17717,16,17.45,35,0.0 +17717,56,38,30,0.0 +17717,57,19.5,16,0.0 +17717,58,13.25,9,0.0 +17717,40,18.4,14,0.0 +17717,75,7.75,47,0.0 +17717,22,21,25,0.0 +17717,67,14,30,0.0 +17717,15,15.5,26,0.0 +17718,46,12,14,0.0 +17718,29,123.79,14,0.0 +17718,22,21,22,0.0 +17718,17,39,36,0.0 +17718,38,263.5,25,0.0 +17718,31,12.5,12,0.0 +17718,12,38,8,0.0 +17718,21,10,26,0.0 +17718,36,19,14,0.0 +17718,7,30,47,0.0 +17718,24,4.5,49,0.0 +17718,43,46,18,0.0 +17718,63,43.9,10,0.0 +17718,76,18,9,0.0 +17718,58,13.25,48,0.0 +17718,37,26,6,0.0 +17718,13,6,26,0.0 +17719,14,23.25,1,0.0 +17719,27,43.9,30,0.0 +17719,37,26,42,0.0 +17719,6,25,25,0.0 +17719,34,14,29,0.0 +17719,71,21.5,43,0.0 +17719,39,18,19,0.0 +17719,62,49.3,21,0.0 +17719,1,18,20,0.0 +17719,45,9.5,29,0.0 +17719,54,7.45,28,0.0 +17719,25,14,46,0.0 +17719,11,21,16,0.0 +17719,72,34.8,46,0.0 +17719,44,19.45,42,0.0 +17719,16,17.45,7,0.0 +17719,63,43.9,37,0.0 +17719,9,97,9,0.0 +17719,4,22,31,0.0 +17719,73,15,2,0.0 +17719,70,15,33,0.0 +17719,46,12,41,0.0 +17720,7,30,33,0.0 +17720,60,34,36,0.0 +17720,76,18,46,0.0 +17720,26,31.23,23,0.0 +17720,47,9.5,29,0.0 +17720,19,9.2,49,0.0 +17720,27,43.9,5,0.0 +17720,11,21,9,0.0 +17720,52,7,48,0.0 +17720,71,21.5,44,0.0 +17721,59,55,13,0.0 +17721,63,43.9,38,0.0 +17721,43,46,36,0.0 +17721,19,9.2,2,0.0 +17721,48,12.75,31,0.0 +17721,25,14,39,0.0 +17721,69,36,44,0.0 +17721,35,18,7,0.0 +17721,49,20,18,0.0 +17721,61,28.5,10,0.0 +17721,70,15,37,0.0 +17721,9,97,19,0.0 +17721,66,17,2,0.0 +17721,3,10,29,0.0 +17721,71,21.5,18,0.0 +17721,75,7.75,30,0.0 +17721,53,32.8,7,0.0 +17721,32,32,20,0.0 +17721,65,21.05,13,0.0 +17721,28,45.6,12,0.0 +17721,23,9,10,0.0 +17721,40,18.4,41,0.0 +17721,60,34,2,0.0 +17721,58,13.25,25,0.0 +17721,55,24,44,0.0 +17721,21,10,49,0.0 +17721,34,14,31,0.0 +17721,50,16.25,22,0.0 +17721,68,12.5,8,0.0 +17721,8,40,49,0.0 +17721,57,19.5,1,0.0 +17721,7,30,31,0.0 +17721,33,2.5,6,0.0 +17721,36,19,3,0.0 +17721,14,23.25,33,0.0 +17721,13,6,50,0.0 +17722,54,7.45,11,0.0 +17722,39,18,37,0.0 +17722,69,36,40,0.0 +17722,36,19,32,0.0 +17722,55,24,10,0.0 +17722,45,9.5,40,0.0 +17722,16,17.45,27,0.0 +17722,61,28.5,9,0.0 +17722,13,6,35,0.0 +17722,49,20,28,0.0 +17722,37,26,6,0.0 +17722,26,31.23,41,0.0 +17722,38,263.5,16,0.0 +17722,50,16.25,25,0.0 +17722,5,21.35,30,0.0 +17722,2,19,36,0.0 +17722,17,39,49,0.0 +17722,3,10,34,0.0 +17722,18,62.5,18,0.0 +17722,46,12,14,0.0 +17722,22,21,34,0.0 +17722,41,9.65,15,0.0 +17722,27,43.9,47,0.0 +17722,1,18,14,0.0 +17722,47,9.5,22,0.0 +17722,53,32.8,15,0.0 +17722,68,12.5,25,0.0 +17722,59,55,50,0.0 +17722,9,97,26,0.0 +17722,51,53,25,0.0 +17722,72,34.8,8,0.0 +17722,24,4.5,35,0.0 +17722,76,18,37,0.0 +17722,58,13.25,9,0.0 +17722,33,2.5,28,0.0 +17722,30,25.89,10,0.0 +17722,77,13,18,0.0 +17722,35,18,9,0.0 +17722,15,15.5,27,0.0 +17722,62,49.3,37,0.0 +17722,10,31,14,0.0 +17722,63,43.9,45,0.0 +17722,57,19.5,17,0.0 +17722,21,10,5,0.0 +17722,19,9.2,8,0.0 +17722,8,40,19,0.0 +17722,28,45.6,17,0.0 +17722,48,12.75,17,0.0 +17722,32,32,47,0.0 +17722,40,18.4,28,0.0 +17722,4,22,35,0.0 +17722,11,21,8,0.0 +17722,20,81,50,0.0 +17722,31,12.5,19,0.0 +17722,6,25,2,0.0 +17722,74,10,25,0.0 +17722,34,14,30,0.0 +17722,25,14,17,0.0 +17722,71,21.5,11,0.0 +17722,73,15,3,0.0 +17722,56,38,1,0.0 +17722,42,14,26,0.0 +17722,65,21.05,44,0.0 +17722,43,46,19,0.0 +17722,75,7.75,37,0.0 +17722,12,38,18,0.0 +17722,67,14,16,0.0 +17722,60,34,5,0.0 +17723,55,24,14,0.0 +17723,61,28.5,13,0.0 +17723,29,123.79,19,0.0 +17723,35,18,44,0.0 +17723,58,13.25,22,0.0 +17723,34,14,12,0.0 +17723,51,53,43,0.0 +17723,2,19,12,0.0 +17723,18,62.5,22,0.0 +17723,42,14,30,0.0 +17723,64,33.25,15,0.0 +17723,22,21,44,0.0 +17723,6,25,7,0.0 +17723,21,10,43,0.0 +17723,9,97,49,0.0 +17723,59,55,38,0.0 +17723,72,34.8,49,0.0 +17723,63,43.9,43,0.0 +17723,73,15,30,0.0 +17723,8,40,15,0.0 +17724,47,9.5,39,0.0 +17724,60,34,15,0.0 +17724,21,10,24,0.0 +17724,54,7.45,50,0.0 +17724,40,18.4,1,0.0 +17724,30,25.89,46,0.0 +17724,37,26,7,0.0 +17724,16,17.45,48,0.0 +17724,41,9.65,22,0.0 +17724,12,38,37,0.0 +17724,3,10,3,0.0 +17724,8,40,48,0.0 +17724,2,19,6,0.0 +17724,38,263.5,18,0.0 +17724,61,28.5,35,0.0 +17724,10,31,5,0.0 +17724,75,7.75,30,0.0 +17725,7,30,47,0.0 +17725,35,18,24,0.0 +17725,45,9.5,7,0.0 +17725,5,21.35,30,0.0 +17725,49,20,3,0.0 +17725,60,34,46,0.0 +17725,10,31,20,0.0 +17725,54,7.45,43,0.0 +17725,25,14,6,0.0 +17725,3,10,42,0.0 +17725,48,12.75,22,0.0 +17725,39,18,7,0.0 +17725,59,55,18,0.0 +17725,62,49.3,17,0.0 +17725,18,62.5,50,0.0 +17725,66,17,47,0.0 +17725,52,7,46,0.0 +17725,21,10,12,0.0 +17725,33,2.5,34,0.0 +17725,63,43.9,16,0.0 +17725,69,36,8,0.0 +17725,36,19,13,0.0 +17725,27,43.9,18,0.0 +17725,71,21.5,24,0.0 +17725,30,25.89,28,0.0 +17725,2,19,12,0.0 +17725,51,53,5,0.0 +17725,19,9.2,22,0.0 +17725,34,14,37,0.0 +17725,28,45.6,31,0.0 +17725,41,9.65,11,0.0 +17725,8,40,45,0.0 +17725,75,7.75,45,0.0 +17725,23,9,40,0.0 +17725,24,4.5,15,0.0 +17725,12,38,12,0.0 +17725,4,22,20,0.0 +17725,77,13,32,0.0 +17725,1,18,19,0.0 +17725,26,31.23,39,0.0 +17725,57,19.5,13,0.0 +17725,15,15.5,18,0.0 +17725,9,97,27,0.0 +17725,47,9.5,2,0.0 +17725,70,15,18,0.0 +17725,46,12,46,0.0 +17725,6,25,36,0.0 +17725,37,26,29,0.0 +17725,55,24,22,0.0 +17725,16,17.45,25,0.0 +17725,44,19.45,50,0.0 +17725,20,81,28,0.0 +17725,32,32,8,0.0 +17725,43,46,37,0.0 +17725,50,16.25,33,0.0 +17725,38,263.5,22,0.0 +17725,53,32.8,14,0.0 +17725,56,38,34,0.0 +17725,61,28.5,10,0.0 +17725,58,13.25,31,0.0 +17725,65,21.05,24,0.0 +17725,64,33.25,26,0.0 +17725,42,14,40,0.0 +17725,11,21,13,0.0 +17726,19,9.2,10,0.0 +17726,17,39,17,0.0 +17726,55,24,49,0.0 +17726,28,45.6,35,0.0 +17726,42,14,34,0.0 +17726,70,15,40,0.0 +17726,76,18,9,0.0 +17726,73,15,1,0.0 +17726,32,32,36,0.0 +17726,71,21.5,21,0.0 +17726,18,62.5,1,0.0 +17726,77,13,44,0.0 +17726,11,21,6,0.0 +17726,65,21.05,25,0.0 +17726,12,38,46,0.0 +17726,51,53,28,0.0 +17726,45,9.5,22,0.0 +17726,39,18,24,0.0 +17726,58,13.25,4,0.0 +17726,56,38,38,0.0 +17726,27,43.9,48,0.0 +17726,66,17,46,0.0 +17726,69,36,47,0.0 +17726,47,9.5,6,0.0 +17726,59,55,20,0.0 +17726,30,25.89,4,0.0 +17726,25,14,12,0.0 +17726,60,34,37,0.0 +17726,16,17.45,34,0.0 +17726,52,7,41,0.0 +17726,44,19.45,49,0.0 +17726,64,33.25,4,0.0 +17726,31,12.5,2,0.0 +17726,29,123.79,35,0.0 +17726,10,31,39,0.0 +17726,53,32.8,30,0.0 +17726,75,7.75,14,0.0 +17726,34,14,48,0.0 +17726,8,40,18,0.0 +17726,35,18,6,0.0 +17726,20,81,11,0.0 +17726,4,22,6,0.0 +17726,67,14,49,0.0 +17726,15,15.5,48,0.0 +17726,50,16.25,11,0.0 +17726,46,12,21,0.0 +17726,23,9,25,0.0 +17726,40,18.4,11,0.0 +17726,13,6,16,0.0 +17726,3,10,16,0.0 +17726,41,9.65,39,0.0 +17726,38,263.5,25,0.0 +17726,72,34.8,45,0.0 +17726,54,7.45,45,0.0 +17726,22,21,4,0.0 +17726,63,43.9,20,0.0 +17726,61,28.5,8,0.0 +17726,37,26,21,0.0 +17726,1,18,16,0.0 +17726,14,23.25,32,0.0 +17726,5,21.35,46,0.0 +17726,7,30,38,0.0 +17726,26,31.23,8,0.0 +17726,62,49.3,19,0.0 +17726,33,2.5,1,0.0 +17727,4,22,42,0.0 +17727,6,25,49,0.0 +17727,18,62.5,26,0.0 +17727,36,19,37,0.0 +17727,24,4.5,46,0.0 +17727,29,123.79,31,0.0 +17727,12,38,21,0.0 +17727,75,7.75,16,0.0 +17727,3,10,50,0.0 +17727,26,31.23,34,0.0 +17727,57,19.5,31,0.0 +17727,38,263.5,25,0.0 +17727,17,39,8,0.0 +17727,34,14,44,0.0 +17727,77,13,28,0.0 +17727,73,15,4,0.0 +17727,10,31,34,0.0 +17727,7,30,46,0.0 +17727,46,12,21,0.0 +17727,15,15.5,8,0.0 +17727,56,38,35,0.0 +17727,52,7,22,0.0 +17727,9,97,48,0.0 +17727,76,18,8,0.0 +17727,2,19,3,0.0 +17727,33,2.5,11,0.0 +17727,55,24,7,0.0 +17727,71,21.5,14,0.0 +17727,69,36,28,0.0 +17727,61,28.5,16,0.0 +17727,32,32,42,0.0 +17727,39,18,23,0.0 +17727,47,9.5,21,0.0 +17727,19,9.2,41,0.0 +17727,54,7.45,22,0.0 +17727,42,14,3,0.0 +17727,28,45.6,21,0.0 +17727,68,12.5,27,0.0 +17727,22,21,13,0.0 +17727,27,43.9,24,0.0 +17727,40,18.4,41,0.0 +17727,44,19.45,42,0.0 +17727,37,26,46,0.0 +17727,51,53,26,0.0 +17727,48,12.75,15,0.0 +17727,63,43.9,40,0.0 +17727,25,14,4,0.0 +17727,11,21,49,0.0 +17727,21,10,30,0.0 +17727,74,10,34,0.0 +17727,30,25.89,9,0.0 +17727,35,18,11,0.0 +17727,58,13.25,43,0.0 +17727,53,32.8,38,0.0 +17727,67,14,6,0.0 +17727,62,49.3,41,0.0 +17727,70,15,3,0.0 +17727,16,17.45,29,0.0 +17727,23,9,45,0.0 +17727,60,34,10,0.0 +17727,59,55,10,0.0 +17727,49,20,2,0.0 +17727,66,17,36,0.0 +17727,45,9.5,28,0.0 +17727,65,21.05,43,0.0 +17728,54,7.45,27,0.0 +17728,59,55,32,0.0 +17729,71,21.5,30,0.0 +17729,5,21.35,37,0.0 +17729,75,7.75,49,0.0 +17729,51,53,35,0.0 +17729,34,14,3,0.0 +17729,43,46,24,0.0 +17729,24,4.5,5,0.0 +17729,33,2.5,32,0.0 +17729,67,14,2,0.0 +17729,55,24,19,0.0 +17729,9,97,14,0.0 +17729,50,16.25,13,0.0 +17729,49,20,49,0.0 +17729,45,9.5,46,0.0 +17729,22,21,39,0.0 +17729,72,34.8,43,0.0 +17729,70,15,21,0.0 +17729,21,10,36,0.0 +17729,1,18,35,0.0 +17729,2,19,20,0.0 +17729,69,36,27,0.0 +17729,10,31,31,0.0 +17729,25,14,44,0.0 +17729,12,38,15,0.0 +17729,57,19.5,48,0.0 +17729,38,263.5,5,0.0 +17729,20,81,7,0.0 +17729,52,7,30,0.0 +17729,41,9.65,11,0.0 +17729,11,21,4,0.0 +17729,46,12,9,0.0 +17729,27,43.9,42,0.0 +17729,59,55,32,0.0 +17729,39,18,17,0.0 +17729,42,14,11,0.0 +17729,66,17,40,0.0 +17729,17,39,11,0.0 +17729,23,9,11,0.0 +17729,18,62.5,40,0.0 +17729,15,15.5,13,0.0 +17729,7,30,13,0.0 +17729,16,17.45,1,0.0 +17729,14,23.25,11,0.0 +17729,29,123.79,48,0.0 +17729,62,49.3,22,0.0 +17729,26,31.23,38,0.0 +17729,3,10,14,0.0 +17729,28,45.6,2,0.0 +17729,58,13.25,19,0.0 +17729,60,34,39,0.0 +17729,40,18.4,40,0.0 +17729,8,40,19,0.0 +17729,13,6,36,0.0 +17730,5,21.35,5,0.0 +17730,43,46,2,0.0 +17730,72,34.8,31,0.0 +17730,48,12.75,38,0.0 +17730,73,15,34,0.0 +17730,37,26,46,0.0 +17730,71,21.5,29,0.0 +17730,26,31.23,12,0.0 +17730,59,55,29,0.0 +17730,60,34,49,0.0 +17730,19,9.2,2,0.0 +17730,77,13,34,0.0 +17730,50,16.25,15,0.0 +17730,63,43.9,48,0.0 +17730,70,15,8,0.0 +17730,2,19,44,0.0 +17730,23,9,3,0.0 +17730,69,36,14,0.0 +17730,61,28.5,35,0.0 +17730,64,33.25,5,0.0 +17730,7,30,48,0.0 +17730,9,97,37,0.0 +17730,44,19.45,31,0.0 +17731,29,123.79,18,0.0 +17731,14,23.25,4,0.0 +17731,54,7.45,30,0.0 +17731,1,18,32,0.0 +17731,34,14,36,0.0 +17731,11,21,34,0.0 +17731,27,43.9,23,0.0 +17731,70,15,5,0.0 +17731,16,17.45,26,0.0 +17731,39,18,28,0.0 +17731,55,24,41,0.0 +17731,73,15,36,0.0 +17731,74,10,36,0.0 +17731,60,34,31,0.0 +17731,51,53,25,0.0 +17731,67,14,8,0.0 +17731,52,7,41,0.0 +17731,68,12.5,38,0.0 +17731,28,45.6,2,0.0 +17731,71,21.5,6,0.0 +17731,75,7.75,4,0.0 +17731,17,39,4,0.0 +17731,31,12.5,6,0.0 +17731,44,19.45,16,0.0 +17731,32,32,43,0.0 +17731,66,17,22,0.0 +17731,48,12.75,2,0.0 +17731,6,25,22,0.0 +17731,22,21,43,0.0 +17731,36,19,44,0.0 +17731,61,28.5,8,0.0 +17731,12,38,1,0.0 +17731,65,21.05,47,0.0 +17731,7,30,38,0.0 +17731,3,10,36,0.0 +17731,56,38,47,0.0 +17731,57,19.5,47,0.0 +17731,9,97,42,0.0 +17731,21,10,24,0.0 +17731,77,13,2,0.0 +17731,49,20,1,0.0 +17731,58,13.25,13,0.0 +17731,26,31.23,7,0.0 +17731,41,9.65,1,0.0 +17731,2,19,46,0.0 +17731,37,26,31,0.0 +17731,43,46,16,0.0 +17731,5,21.35,37,0.0 +17731,23,9,43,0.0 +17731,20,81,43,0.0 +17731,47,9.5,30,0.0 +17731,46,12,42,0.0 +17731,64,33.25,19,0.0 +17731,63,43.9,31,0.0 +17731,24,4.5,44,0.0 +17731,30,25.89,27,0.0 +17731,72,34.8,9,0.0 +17731,53,32.8,23,0.0 +17731,33,2.5,29,0.0 +17731,50,16.25,13,0.0 +17731,15,15.5,47,0.0 +17731,42,14,29,0.0 +17731,45,9.5,32,0.0 +17731,25,14,40,0.0 +17731,40,18.4,2,0.0 +17731,19,9.2,47,0.0 +17731,10,31,46,0.0 +17731,18,62.5,27,0.0 +17731,69,36,9,0.0 +17731,8,40,45,0.0 +17731,76,18,9,0.0 +17731,59,55,32,0.0 +17731,13,6,45,0.0 +17731,62,49.3,3,0.0 +17731,35,18,28,0.0 +17732,26,31.23,4,0.0 +17732,46,12,43,0.0 +17732,18,62.5,49,0.0 +17732,27,43.9,15,0.0 +17732,52,7,6,0.0 +17732,57,19.5,14,0.0 +17732,64,33.25,3,0.0 +17732,17,39,24,0.0 +17732,62,49.3,32,0.0 +17732,4,22,43,0.0 +17732,63,43.9,30,0.0 +17732,30,25.89,9,0.0 +17732,58,13.25,44,0.0 +17732,37,26,37,0.0 +17732,20,81,22,0.0 +17732,41,9.65,19,0.0 +17732,47,9.5,3,0.0 +17732,61,28.5,36,0.0 +17732,31,12.5,44,0.0 +17732,24,4.5,49,0.0 +17732,29,123.79,26,0.0 +17732,16,17.45,7,0.0 +17732,55,24,7,0.0 +17732,72,34.8,38,0.0 +17732,44,19.45,46,0.0 +17732,38,263.5,28,0.0 +17732,21,10,6,0.0 +17732,70,15,2,0.0 +17732,23,9,6,0.0 +17732,65,21.05,13,0.0 +17732,14,23.25,3,0.0 +17732,59,55,36,0.0 +17732,71,21.5,15,0.0 +17732,66,17,24,0.0 +17732,2,19,18,0.0 +17732,77,13,17,0.0 +17732,68,12.5,29,0.0 +17732,1,18,20,0.0 +17732,43,46,23,0.0 +17732,40,18.4,16,0.0 +17732,36,19,45,0.0 +17732,22,21,2,0.0 +17732,48,12.75,8,0.0 +17732,75,7.75,44,0.0 +17732,56,38,5,0.0 +17732,32,32,38,0.0 +17732,13,6,36,0.0 +17732,42,14,22,0.0 +17732,7,30,15,0.0 +17732,39,18,16,0.0 +17732,54,7.45,26,0.0 +17732,49,20,14,0.0 +17733,8,40,34,0.0 +17733,39,18,44,0.0 +17733,22,21,12,0.0 +17733,5,21.35,28,0.0 +17733,7,30,47,0.0 +17733,66,17,36,0.0 +17733,2,19,30,0.0 +17733,21,10,28,0.0 +17733,13,6,49,0.0 +17733,72,34.8,18,0.0 +17733,28,45.6,34,0.0 +17733,58,13.25,25,0.0 +17733,27,43.9,45,0.0 +17733,49,20,38,0.0 +17733,3,10,24,0.0 +17733,44,19.45,4,0.0 +17733,16,17.45,10,0.0 +17733,18,62.5,2,0.0 +17733,19,9.2,28,0.0 +17733,74,10,36,0.0 +17733,30,25.89,10,0.0 +17733,65,21.05,23,0.0 +17733,47,9.5,40,0.0 +17733,64,33.25,42,0.0 +17733,6,25,10,0.0 +17733,20,81,45,0.0 +17733,26,31.23,34,0.0 +17733,51,53,19,0.0 +17733,14,23.25,31,0.0 +17733,73,15,26,0.0 +17733,12,38,42,0.0 +17733,69,36,19,0.0 +17733,45,9.5,30,0.0 +17733,60,34,11,0.0 +17733,68,12.5,36,0.0 +17733,40,18.4,1,0.0 +17733,63,43.9,23,0.0 +17733,67,14,50,0.0 +17733,10,31,32,0.0 +17733,33,2.5,39,0.0 +17733,71,21.5,8,0.0 +17733,35,18,16,0.0 +17733,25,14,42,0.0 +17733,70,15,50,0.0 +17733,57,19.5,16,0.0 +17733,11,21,22,0.0 +17733,76,18,16,0.0 +17733,52,7,18,0.0 +17733,43,46,11,0.0 +17733,31,12.5,31,0.0 +17733,53,32.8,19,0.0 +17733,55,24,34,0.0 +17733,41,9.65,8,0.0 +17733,61,28.5,17,0.0 +17733,59,55,13,0.0 +17733,42,14,10,0.0 +17733,48,12.75,6,0.0 +17733,77,13,12,0.0 +17733,54,7.45,44,0.0 +17733,29,123.79,22,0.0 +17733,37,26,27,0.0 +17733,4,22,11,0.0 +17733,9,97,47,0.0 +17733,1,18,44,0.0 +17733,38,263.5,8,0.0 +17733,34,14,38,0.0 +17733,17,39,25,0.0 +17733,56,38,8,0.0 +17733,24,4.5,15,0.0 +17733,36,19,11,0.0 +17734,44,19.45,28,0.0 +17734,63,43.9,50,0.0 +17734,10,31,38,0.0 +17734,20,81,24,0.0 +17735,22,21,40,0.0 +17735,42,14,35,0.0 +17735,77,13,36,0.0 +17735,71,21.5,7,0.0 +17735,50,16.25,34,0.0 +17735,76,18,10,0.0 +17735,12,38,48,0.0 +17735,63,43.9,20,0.0 +17735,9,97,48,0.0 +17735,48,12.75,12,0.0 +17735,17,39,42,0.0 +17735,20,81,21,0.0 +17735,46,12,30,0.0 +17735,74,10,1,0.0 +17735,32,32,26,0.0 +17735,73,15,21,0.0 +17735,34,14,5,0.0 +17735,43,46,23,0.0 +17735,52,7,7,0.0 +17736,36,19,45,0.0 +17736,43,46,3,0.0 +17736,54,7.45,8,0.0 +17736,17,39,21,0.0 +17736,40,18.4,24,0.0 +17736,32,32,36,0.0 +17736,62,49.3,49,0.0 +17736,2,19,36,0.0 +17736,12,38,21,0.0 +17736,41,9.65,41,0.0 +17736,39,18,24,0.0 +17736,71,21.5,7,0.0 +17736,33,2.5,18,0.0 +17736,65,21.05,33,0.0 +17736,24,4.5,39,0.0 +17736,22,21,12,0.0 +17736,38,263.5,24,0.0 +17736,35,18,29,0.0 +17736,45,9.5,43,0.0 +17737,56,38,15,0.0 +17737,9,97,41,0.0 +17737,5,21.35,31,0.0 +17737,65,21.05,40,0.0 +17737,13,6,35,0.0 +17737,11,21,12,0.0 +17737,74,10,26,0.0 +17737,18,62.5,26,0.0 +17737,10,31,50,0.0 +17737,49,20,37,0.0 +17738,42,14,16,0.0 +17738,50,16.25,38,0.0 +17738,43,46,40,0.0 +17738,7,30,25,0.0 +17738,25,14,36,0.0 +17738,77,13,35,0.0 +17738,47,9.5,37,0.0 +17738,5,21.35,42,0.0 +17738,32,32,3,0.0 +17738,45,9.5,24,0.0 +17738,2,19,27,0.0 +17738,27,43.9,7,0.0 +17738,76,18,40,0.0 +17738,52,7,6,0.0 +17738,58,13.25,16,0.0 +17738,22,21,9,0.0 +17738,1,18,18,0.0 +17738,35,18,18,0.0 +17739,15,15.5,3,0.0 +17739,5,21.35,6,0.0 +17739,8,40,19,0.0 +17739,22,21,44,0.0 +17739,4,22,42,0.0 +17739,16,17.45,22,0.0 +17739,58,13.25,5,0.0 +17739,34,14,31,0.0 +17739,66,17,46,0.0 +17739,7,30,2,0.0 +17739,51,53,14,0.0 +17739,39,18,50,0.0 +17739,75,7.75,6,0.0 +17739,71,21.5,2,0.0 +17739,62,49.3,23,0.0 +17739,27,43.9,35,0.0 +17739,26,31.23,20,0.0 +17739,47,9.5,12,0.0 +17739,42,14,38,0.0 +17739,20,81,25,0.0 +17739,56,38,10,0.0 +17739,63,43.9,10,0.0 +17739,31,12.5,9,0.0 +17739,52,7,2,0.0 +17739,29,123.79,33,0.0 +17739,2,19,41,0.0 +17739,44,19.45,35,0.0 +17739,54,7.45,13,0.0 +17739,65,21.05,20,0.0 +17739,36,19,11,0.0 +17739,69,36,16,0.0 +17739,76,18,18,0.0 +17740,25,14,26,0.0 +17740,56,38,14,0.0 +17740,60,34,48,0.0 +17740,21,10,42,0.0 +17740,28,45.6,38,0.0 +17740,66,17,40,0.0 +17741,52,7,8,0.0 +17741,42,14,40,0.0 +17741,65,21.05,13,0.0 +17742,40,18.4,36,0.0 +17742,56,38,15,0.0 +17742,55,24,25,0.0 +17742,53,32.8,27,0.0 +17742,18,62.5,5,0.0 +17742,69,36,23,0.0 +17742,52,7,30,0.0 +17742,9,97,4,0.0 +17742,32,32,17,0.0 +17742,46,12,18,0.0 +17742,17,39,45,0.0 +17742,33,2.5,50,0.0 +17742,4,22,14,0.0 +17742,58,13.25,16,0.0 +17742,34,14,12,0.0 +17742,1,18,28,0.0 +17742,41,9.65,13,0.0 +17742,45,9.5,1,0.0 +17742,27,43.9,17,0.0 +17742,70,15,31,0.0 +17742,2,19,50,0.0 +17742,7,30,36,0.0 +17742,77,13,19,0.0 +17742,73,15,6,0.0 +17742,20,81,32,0.0 +17742,75,7.75,34,0.0 +17742,3,10,9,0.0 +17742,72,34.8,1,0.0 +17742,54,7.45,47,0.0 +17742,5,21.35,17,0.0 +17742,76,18,6,0.0 +17742,63,43.9,48,0.0 +17742,19,9.2,14,0.0 +17742,15,15.5,30,0.0 +17742,26,31.23,26,0.0 +17742,64,33.25,49,0.0 +17742,49,20,28,0.0 +17742,21,10,3,0.0 +17742,67,14,25,0.0 +17742,71,21.5,50,0.0 +17742,13,6,17,0.0 +17742,6,25,38,0.0 +17742,57,19.5,8,0.0 +17742,68,12.5,23,0.0 +17742,30,25.89,2,0.0 +17742,12,38,46,0.0 +17742,28,45.6,3,0.0 +17742,22,21,15,0.0 +17742,59,55,46,0.0 +17742,60,34,35,0.0 +17742,16,17.45,20,0.0 +17742,66,17,16,0.0 +17742,37,26,25,0.0 +17742,35,18,35,0.0 +17742,44,19.45,9,0.0 +17742,38,263.5,25,0.0 +17742,8,40,37,0.0 +17742,62,49.3,8,0.0 +17743,63,43.9,1,0.0 +17743,4,22,2,0.0 +17743,53,32.8,49,0.0 +17743,55,24,1,0.0 +17743,12,38,21,0.0 +17743,1,18,20,0.0 +17743,54,7.45,40,0.0 +17743,34,14,8,0.0 +17743,73,15,39,0.0 +17743,42,14,39,0.0 +17743,45,9.5,31,0.0 +17743,69,36,20,0.0 +17743,39,18,6,0.0 +17743,35,18,36,0.0 +17743,74,10,40,0.0 +17743,14,23.25,24,0.0 +17743,3,10,28,0.0 +17743,16,17.45,32,0.0 +17743,2,19,46,0.0 +17743,6,25,25,0.0 +17743,37,26,11,0.0 +17743,22,21,40,0.0 +17743,64,33.25,20,0.0 +17743,33,2.5,32,0.0 +17743,58,13.25,4,0.0 +17743,51,53,7,0.0 +17743,70,15,32,0.0 +17743,65,21.05,3,0.0 +17743,28,45.6,48,0.0 +17743,77,13,21,0.0 +17744,22,21,31,0.0 +17744,68,12.5,11,0.0 +17744,23,9,9,0.0 +17744,25,14,27,0.0 +17744,27,43.9,16,0.0 +17744,40,18.4,33,0.0 +17744,20,81,5,0.0 +17744,17,39,17,0.0 +17744,66,17,3,0.0 +17744,14,23.25,34,0.0 +17744,43,46,20,0.0 +17744,30,25.89,46,0.0 +17744,10,31,41,0.0 +17744,15,15.5,11,0.0 +17744,37,26,20,0.0 +17744,24,4.5,16,0.0 +17744,73,15,47,0.0 +17744,51,53,29,0.0 +17744,52,7,25,0.0 +17744,55,24,48,0.0 +17744,59,55,25,0.0 +17744,2,19,49,0.0 +17744,44,19.45,49,0.0 +17744,5,21.35,40,0.0 +17744,13,6,20,0.0 +17744,32,32,29,0.0 +17744,7,30,38,0.0 +17744,54,7.45,33,0.0 +17744,28,45.6,12,0.0 +17744,3,10,26,0.0 +17744,58,13.25,41,0.0 +17744,77,13,25,0.0 +17745,20,81,14,0.0 +17745,55,24,28,0.0 +17745,54,7.45,27,0.0 +17745,75,7.75,21,0.0 +17745,2,19,23,0.0 +17745,67,14,11,0.0 +17745,47,9.5,26,0.0 +17745,29,123.79,1,0.0 +17745,9,97,3,0.0 +17745,68,12.5,35,0.0 +17745,17,39,28,0.0 +17745,35,18,14,0.0 +17745,49,20,47,0.0 +17745,57,19.5,30,0.0 +17745,10,31,18,0.0 +17745,6,25,8,0.0 +17745,66,17,40,0.0 +17745,51,53,39,0.0 +17745,37,26,18,0.0 +17745,69,36,47,0.0 +17745,33,2.5,45,0.0 +17745,72,34.8,14,0.0 +17745,5,21.35,49,0.0 +17745,71,21.5,22,0.0 +17745,27,43.9,39,0.0 +17745,60,34,41,0.0 +17745,24,4.5,24,0.0 +17745,73,15,20,0.0 +17745,23,9,35,0.0 +17745,76,18,48,0.0 +17746,14,23.25,36,0.0 +17746,65,21.05,19,0.0 +17746,21,10,17,0.0 +17746,77,13,39,0.0 +17746,76,18,29,0.0 +17746,2,19,21,0.0 +17746,22,21,49,0.0 +17746,69,36,29,0.0 +17746,28,45.6,49,0.0 +17746,5,21.35,34,0.0 +17746,16,17.45,19,0.0 +17746,4,22,37,0.0 +17746,40,18.4,10,0.0 +17746,23,9,18,0.0 +17746,48,12.75,32,0.0 +17746,63,43.9,18,0.0 +17746,29,123.79,39,0.0 +17746,66,17,35,0.0 +17746,42,14,25,0.0 +17747,31,12.5,17,0.0 +17747,36,19,35,0.0 +17747,22,21,14,0.0 +17747,45,9.5,39,0.0 +17747,69,36,20,0.0 +17747,26,31.23,8,0.0 +17747,10,31,12,0.0 +17747,4,22,11,0.0 +17747,3,10,13,0.0 +17747,54,7.45,24,0.0 +17747,66,17,2,0.0 +17747,17,39,38,0.0 +17747,34,14,9,0.0 +17747,14,23.25,23,0.0 +17747,65,21.05,39,0.0 +17747,70,15,46,0.0 +17747,67,14,41,0.0 +17747,33,2.5,18,0.0 +17747,48,12.75,39,0.0 +17747,5,21.35,41,0.0 +17748,59,55,39,0.0 +17748,43,46,47,0.0 +17748,61,28.5,50,0.0 +17748,54,7.45,10,0.0 +17748,35,18,48,0.0 +17748,21,10,2,0.0 +17748,51,53,11,0.0 +17748,10,31,28,0.0 +17748,38,263.5,38,0.0 +17748,72,34.8,42,0.0 +17748,15,15.5,48,0.0 +17748,6,25,27,0.0 +17748,71,21.5,12,0.0 +17748,11,21,16,0.0 +17748,46,12,35,0.0 +17748,32,32,42,0.0 +17748,67,14,2,0.0 +17748,8,40,13,0.0 +17748,26,31.23,49,0.0 +17748,3,10,5,0.0 +17748,7,30,3,0.0 +17748,58,13.25,31,0.0 +17748,25,14,26,0.0 +17748,50,16.25,32,0.0 +17748,14,23.25,8,0.0 +17748,41,9.65,49,0.0 +17748,73,15,10,0.0 +17748,4,22,15,0.0 +17748,13,6,30,0.0 +17748,74,10,15,0.0 +17748,56,38,8,0.0 +17748,9,97,43,0.0 +17748,68,12.5,10,0.0 +17748,12,38,46,0.0 +17748,20,81,6,0.0 +17748,62,49.3,15,0.0 +17748,44,19.45,36,0.0 +17748,55,24,18,0.0 +17748,77,13,50,0.0 +17748,27,43.9,30,0.0 +17748,36,19,46,0.0 +17748,53,32.8,37,0.0 +17748,2,19,41,0.0 +17748,75,7.75,44,0.0 +17748,28,45.6,50,0.0 +17748,30,25.89,18,0.0 +17748,23,9,11,0.0 +17748,22,21,13,0.0 +17748,49,20,19,0.0 +17748,52,7,11,0.0 +17748,1,18,27,0.0 +17748,34,14,33,0.0 +17748,47,9.5,35,0.0 +17748,64,33.25,38,0.0 +17748,5,21.35,34,0.0 +17748,66,17,44,0.0 +17748,18,62.5,19,0.0 +17748,17,39,12,0.0 +17748,40,18.4,42,0.0 +17748,16,17.45,48,0.0 +17748,31,12.5,7,0.0 +17748,33,2.5,36,0.0 +17748,45,9.5,9,0.0 +17748,19,9.2,50,0.0 +17748,42,14,21,0.0 +17748,48,12.75,25,0.0 +17748,24,4.5,27,0.0 +17748,70,15,34,0.0 +17748,29,123.79,13,0.0 +17748,69,36,4,0.0 +17748,63,43.9,14,0.0 +17748,39,18,11,0.0 +17748,37,26,43,0.0 +17748,60,34,7,0.0 +17749,30,25.89,39,0.0 +17749,65,21.05,39,0.0 +17749,16,17.45,31,0.0 +17749,59,55,27,0.0 +17749,11,21,44,0.0 +17749,73,15,43,0.0 +17749,67,14,50,0.0 +17749,71,21.5,19,0.0 +17749,17,39,18,0.0 +17749,23,9,10,0.0 +17749,2,19,30,0.0 +17749,64,33.25,11,0.0 +17749,27,43.9,49,0.0 +17749,33,2.5,13,0.0 +17749,12,38,32,0.0 +17749,49,20,33,0.0 +17749,75,7.75,30,0.0 +17749,20,81,8,0.0 +17749,24,4.5,24,0.0 +17749,15,15.5,14,0.0 +17749,13,6,43,0.0 +17749,37,26,22,0.0 +17749,54,7.45,40,0.0 +17749,46,12,16,0.0 +17749,55,24,1,0.0 +17749,26,31.23,18,0.0 +17749,39,18,42,0.0 +17749,45,9.5,46,0.0 +17749,51,53,16,0.0 +17749,29,123.79,25,0.0 +17749,34,14,17,0.0 +17749,9,97,32,0.0 +17750,8,40,23,0.0 +17750,31,12.5,41,0.0 +17750,70,15,20,0.0 +17750,48,12.75,5,0.0 +17750,58,13.25,48,0.0 +17750,56,38,31,0.0 +17750,37,26,6,0.0 +17750,45,9.5,30,0.0 +17750,33,2.5,9,0.0 +17750,50,16.25,42,0.0 +17750,74,10,12,0.0 +17750,54,7.45,3,0.0 +17750,59,55,17,0.0 +17750,43,46,48,0.0 +17750,67,14,39,0.0 +17750,65,21.05,7,0.0 +17750,71,21.5,6,0.0 +17750,40,18.4,27,0.0 +17750,47,9.5,34,0.0 +17750,28,45.6,10,0.0 +17750,10,31,20,0.0 +17750,2,19,18,0.0 +17750,21,10,4,0.0 +17750,36,19,8,0.0 +17750,76,18,37,0.0 +17750,23,9,36,0.0 +17750,25,14,41,0.0 +17750,22,21,1,0.0 +17750,16,17.45,36,0.0 +17750,4,22,43,0.0 +17750,6,25,14,0.0 +17750,41,9.65,28,0.0 +17750,34,14,40,0.0 +17750,64,33.25,19,0.0 +17750,52,7,39,0.0 +17750,3,10,48,0.0 +17750,12,38,11,0.0 +17750,61,28.5,42,0.0 +17750,75,7.75,47,0.0 +17750,11,21,48,0.0 +17750,29,123.79,12,0.0 +17750,49,20,45,0.0 +17750,19,9.2,19,0.0 +17750,18,62.5,14,0.0 +17750,68,12.5,27,0.0 +17750,77,13,12,0.0 +17750,26,31.23,38,0.0 +17750,20,81,27,0.0 +17750,5,21.35,15,0.0 +17750,60,34,3,0.0 +17750,15,15.5,48,0.0 +17750,1,18,18,0.0 +17750,24,4.5,1,0.0 +17750,38,263.5,2,0.0 +17750,42,14,33,0.0 +17750,72,34.8,25,0.0 +17750,44,19.45,20,0.0 +17750,46,12,2,0.0 +17750,57,19.5,25,0.0 +17751,5,21.35,15,0.0 +17751,4,22,18,0.0 +17751,63,43.9,18,0.0 +17751,57,19.5,16,0.0 +17751,69,36,48,0.0 +17751,34,14,28,0.0 +17751,40,18.4,10,0.0 +17751,43,46,28,0.0 +17751,29,123.79,49,0.0 +17751,60,34,35,0.0 +17751,37,26,3,0.0 +17751,38,263.5,19,0.0 +17751,54,7.45,50,0.0 +17751,44,19.45,30,0.0 +17751,2,19,30,0.0 +17751,10,31,46,0.0 +17751,18,62.5,31,0.0 +17751,74,10,35,0.0 +17751,50,16.25,35,0.0 +17751,49,20,36,0.0 +17751,46,12,30,0.0 +17751,66,17,8,0.0 +17751,23,9,10,0.0 +17751,27,43.9,29,0.0 +17751,65,21.05,1,0.0 +17751,20,81,39,0.0 +17751,53,32.8,32,0.0 +17751,32,32,39,0.0 +17751,19,9.2,13,0.0 +17751,76,18,30,0.0 +17751,41,9.65,23,0.0 +17751,26,31.23,39,0.0 +17751,12,38,46,0.0 +17751,25,14,34,0.0 +17751,71,21.5,22,0.0 +17751,16,17.45,19,0.0 +17751,55,24,9,0.0 +17751,42,14,8,0.0 +17751,33,2.5,40,0.0 +17751,47,9.5,8,0.0 +17751,14,23.25,38,0.0 +17752,11,21,27,0.0 +17752,17,39,11,0.0 +17752,71,21.5,28,0.0 +17752,15,15.5,11,0.0 +17752,32,32,45,0.0 +17752,8,40,41,0.0 +17752,56,38,10,0.0 +17752,48,12.75,20,0.0 +17752,53,32.8,22,0.0 +17752,19,9.2,10,0.0 +17752,67,14,28,0.0 +17752,62,49.3,11,0.0 +17752,38,263.5,26,0.0 +17752,7,30,6,0.0 +17752,58,13.25,44,0.0 +17752,49,20,45,0.0 +17752,41,9.65,18,0.0 +17752,14,23.25,32,0.0 +17752,65,21.05,13,0.0 +17752,37,26,9,0.0 +17752,23,9,11,0.0 +17752,28,45.6,47,0.0 +17752,13,6,37,0.0 +17752,40,18.4,29,0.0 +17752,52,7,47,0.0 +17752,10,31,2,0.0 +17752,70,15,34,0.0 +17752,43,46,27,0.0 +17752,18,62.5,13,0.0 +17752,4,22,12,0.0 +17752,2,19,19,0.0 +17752,12,38,9,0.0 +17752,51,53,29,0.0 +17752,6,25,48,0.0 +17752,69,36,3,0.0 +17752,33,2.5,6,0.0 +17752,76,18,50,0.0 +17752,24,4.5,3,0.0 +17752,64,33.25,22,0.0 +17752,36,19,45,0.0 +17752,50,16.25,18,0.0 +17752,16,17.45,29,0.0 +17752,66,17,3,0.0 +17753,68,12.5,26,0.0 +17753,61,28.5,26,0.0 +17753,29,123.79,49,0.0 +17753,36,19,10,0.0 +17753,60,34,43,0.0 +17753,1,18,25,0.0 +17753,39,18,26,0.0 +17753,23,9,47,0.0 +17753,50,16.25,17,0.0 +17753,49,20,12,0.0 +17753,65,21.05,47,0.0 +17753,20,81,28,0.0 +17753,70,15,49,0.0 +17753,54,7.45,45,0.0 +17753,74,10,17,0.0 +17753,66,17,3,0.0 +17753,69,36,6,0.0 +17753,63,43.9,25,0.0 +17753,33,2.5,16,0.0 +17753,5,21.35,27,0.0 +17753,44,19.45,40,0.0 +17753,40,18.4,10,0.0 +17753,28,45.6,23,0.0 +17753,22,21,6,0.0 +17753,67,14,15,0.0 +17753,53,32.8,3,0.0 +17753,10,31,13,0.0 +17753,26,31.23,34,0.0 +17753,42,14,30,0.0 +17753,64,33.25,50,0.0 +17753,58,13.25,43,0.0 +17753,75,7.75,27,0.0 +17753,7,30,31,0.0 +17753,73,15,46,0.0 +17753,2,19,12,0.0 +17753,71,21.5,48,0.0 +17753,76,18,41,0.0 +17753,21,10,3,0.0 +17753,55,24,35,0.0 +17753,11,21,41,0.0 +17753,13,6,3,0.0 +17753,32,32,43,0.0 +17753,57,19.5,10,0.0 +17753,52,7,16,0.0 +17753,72,34.8,16,0.0 +17753,30,25.89,49,0.0 +17754,24,4.5,7,0.0 +17754,31,12.5,9,0.0 +17755,25,14,34,0.0 +17755,62,49.3,11,0.0 +17755,1,18,15,0.0 +17755,38,263.5,4,0.0 +17755,39,18,44,0.0 +17755,64,33.25,1,0.0 +17755,46,12,28,0.0 +17755,10,31,26,0.0 +17755,61,28.5,27,0.0 +17755,3,10,36,0.0 +17755,67,14,37,0.0 +17755,37,26,24,0.0 +17755,75,7.75,2,0.0 +17755,20,81,28,0.0 +17755,50,16.25,18,0.0 +17755,49,20,3,0.0 +17755,36,19,31,0.0 +17755,63,43.9,18,0.0 +17755,51,53,45,0.0 +17755,31,12.5,28,0.0 +17755,9,97,21,0.0 +17755,29,123.79,5,0.0 +17755,58,13.25,20,0.0 +17755,8,40,18,0.0 +17755,44,19.45,25,0.0 +17755,71,21.5,48,0.0 +17755,14,23.25,37,0.0 +17755,5,21.35,2,0.0 +17755,60,34,20,0.0 +17755,76,18,24,0.0 +17755,42,14,35,0.0 +17755,77,13,37,0.0 +17755,56,38,6,0.0 +17755,48,12.75,37,0.0 +17755,45,9.5,37,0.0 +17755,27,43.9,44,0.0 +17755,35,18,13,0.0 +17755,19,9.2,29,0.0 +17755,57,19.5,45,0.0 +17755,26,31.23,10,0.0 +17755,68,12.5,40,0.0 +17755,59,55,23,0.0 +17755,55,24,49,0.0 +17755,12,38,30,0.0 +17755,40,18.4,40,0.0 +17755,28,45.6,16,0.0 +17755,13,6,31,0.0 +17755,33,2.5,28,0.0 +17755,52,7,39,0.0 +17755,22,21,24,0.0 +17755,74,10,21,0.0 +17755,69,36,18,0.0 +17755,32,32,40,0.0 +17755,70,15,6,0.0 +17755,21,10,39,0.0 +17755,73,15,37,0.0 +17755,17,39,28,0.0 +17755,15,15.5,47,0.0 +17756,15,15.5,13,0.0 +17756,23,9,23,0.0 +17756,4,22,34,0.0 +17756,49,20,33,0.0 +17756,66,17,40,0.0 +17756,59,55,33,0.0 +17756,37,26,32,0.0 +17757,8,40,4,0.0 +17757,76,18,13,0.0 +17757,52,7,42,0.0 +17757,48,12.75,24,0.0 +17757,32,32,15,0.0 +17757,30,25.89,48,0.0 +17757,15,15.5,20,0.0 +17757,27,43.9,24,0.0 +17757,57,19.5,34,0.0 +17757,18,62.5,10,0.0 +17758,71,21.5,45,0.0 +17758,52,7,8,0.0 +17758,4,22,20,0.0 +17758,2,19,49,0.0 +17758,47,9.5,21,0.0 +17758,61,28.5,34,0.0 +17758,7,30,26,0.0 +17758,33,2.5,48,0.0 +17759,62,49.3,26,0.0 +17759,30,25.89,26,0.0 +17759,20,81,46,0.0 +17759,27,43.9,16,0.0 +17759,26,31.23,10,0.0 +17759,76,18,44,0.0 +17759,10,31,15,0.0 +17759,49,20,11,0.0 +17759,22,21,30,0.0 +17759,67,14,38,0.0 +17759,16,17.45,24,0.0 +17759,53,32.8,17,0.0 +17759,39,18,42,0.0 +17759,40,18.4,8,0.0 +17759,63,43.9,26,0.0 +17759,56,38,47,0.0 +17759,32,32,20,0.0 +17759,15,15.5,49,0.0 +17759,51,53,16,0.0 +17759,38,263.5,2,0.0 +17759,64,33.25,19,0.0 +17759,57,19.5,23,0.0 +17759,50,16.25,30,0.0 +17759,61,28.5,38,0.0 +17759,9,97,32,0.0 +17759,24,4.5,21,0.0 +17759,4,22,48,0.0 +17759,47,9.5,36,0.0 +17759,70,15,2,0.0 +17759,25,14,44,0.0 +17759,60,34,31,0.0 +17759,29,123.79,35,0.0 +17759,59,55,19,0.0 +17759,54,7.45,12,0.0 +17759,5,21.35,13,0.0 +17759,65,21.05,35,0.0 +17759,7,30,14,0.0 +17759,28,45.6,42,0.0 +17759,48,12.75,29,0.0 +17759,17,39,28,0.0 +17759,23,9,7,0.0 +17759,21,10,13,0.0 +17759,52,7,12,0.0 +17759,8,40,18,0.0 +17759,55,24,47,0.0 +17759,13,6,48,0.0 +17759,43,46,25,0.0 +17759,18,62.5,7,0.0 +17759,77,13,18,0.0 +17759,46,12,46,0.0 +17759,44,19.45,1,0.0 +17759,12,38,46,0.0 +17759,1,18,15,0.0 +17759,42,14,11,0.0 +17759,66,17,36,0.0 +17759,71,21.5,13,0.0 +17759,34,14,40,0.0 +17759,33,2.5,29,0.0 +17759,73,15,41,0.0 +17759,45,9.5,24,0.0 +17759,72,34.8,49,0.0 +17759,58,13.25,45,0.0 +17759,11,21,10,0.0 +17759,3,10,8,0.0 +17760,20,81,15,0.0 +17760,73,15,39,0.0 +17760,17,39,47,0.0 +17760,69,36,46,0.0 +17760,50,16.25,24,0.0 +17760,60,34,5,0.0 +17760,16,17.45,31,0.0 +17760,44,19.45,30,0.0 +17760,36,19,11,0.0 +17760,61,28.5,21,0.0 +17760,57,19.5,12,0.0 +17760,39,18,1,0.0 +17760,9,97,18,0.0 +17760,5,21.35,10,0.0 +17760,18,62.5,24,0.0 +17760,48,12.75,40,0.0 +17760,43,46,47,0.0 +17760,25,14,36,0.0 +17760,54,7.45,46,0.0 +17761,29,123.79,12,0.0 +17761,76,18,30,0.0 +17761,53,32.8,5,0.0 +17761,42,14,6,0.0 +17762,42,14,37,0.0 +17762,43,46,24,0.0 +17762,21,10,8,0.0 +17762,27,43.9,7,0.0 +17762,26,31.23,42,0.0 +17762,58,13.25,12,0.0 +17762,9,97,42,0.0 +17762,76,18,19,0.0 +17762,59,55,26,0.0 +17762,29,123.79,19,0.0 +17762,57,19.5,9,0.0 +17762,34,14,31,0.0 +17762,39,18,49,0.0 +17762,61,28.5,8,0.0 +17762,24,4.5,19,0.0 +17762,66,17,27,0.0 +17762,60,34,33,0.0 +17762,68,12.5,39,0.0 +17762,50,16.25,47,0.0 +17762,23,9,27,0.0 +17762,10,31,3,0.0 +17762,62,49.3,44,0.0 +17762,16,17.45,5,0.0 +17762,18,62.5,30,0.0 +17762,32,32,2,0.0 +17762,19,9.2,12,0.0 +17762,49,20,47,0.0 +17762,65,21.05,27,0.0 +17762,7,30,9,0.0 +17762,2,19,45,0.0 +17762,44,19.45,3,0.0 +17762,77,13,34,0.0 +17762,73,15,18,0.0 +17762,30,25.89,14,0.0 +17762,51,53,34,0.0 +17762,13,6,5,0.0 +17762,12,38,30,0.0 +17762,35,18,45,0.0 +17762,74,10,45,0.0 +17762,48,12.75,26,0.0 +17762,33,2.5,47,0.0 +17762,41,9.65,31,0.0 +17762,54,7.45,43,0.0 +17762,64,33.25,15,0.0 +17762,11,21,50,0.0 +17762,56,38,22,0.0 +17762,36,19,34,0.0 +17762,63,43.9,1,0.0 +17762,20,81,16,0.0 +17762,28,45.6,15,0.0 +17762,52,7,34,0.0 +17762,1,18,21,0.0 +17762,53,32.8,14,0.0 +17762,4,22,18,0.0 +17762,71,21.5,43,0.0 +17762,22,21,26,0.0 +17763,30,25.89,38,0.0 +17763,9,97,37,0.0 +17763,10,31,25,0.0 +17763,33,2.5,33,0.0 +17763,59,55,3,0.0 +17763,47,9.5,49,0.0 +17763,19,9.2,48,0.0 +17763,5,21.35,29,0.0 +17763,15,15.5,22,0.0 +17763,26,31.23,7,0.0 +17763,46,12,39,0.0 +17763,20,81,50,0.0 +17763,23,9,48,0.0 +17763,45,9.5,39,0.0 +17764,26,31.23,3,0.0 +17764,46,12,34,0.0 +17764,5,21.35,37,0.0 +17764,34,14,21,0.0 +17764,11,21,7,0.0 +17764,25,14,34,0.0 +17764,59,55,48,0.0 +17764,44,19.45,9,0.0 +17764,12,38,30,0.0 +17764,2,19,1,0.0 +17765,41,9.65,41,0.0 +17765,62,49.3,35,0.0 +17765,75,7.75,12,0.0 +17765,51,53,5,0.0 +17765,2,19,39,0.0 +17765,20,81,17,0.0 +17765,17,39,40,0.0 +17765,12,38,25,0.0 +17765,67,14,34,0.0 +17765,5,21.35,41,0.0 +17765,45,9.5,27,0.0 +17765,56,38,43,0.0 +17765,4,22,4,0.0 +17765,37,26,34,0.0 +17765,76,18,36,0.0 +17765,60,34,40,0.0 +17765,48,12.75,15,0.0 +17766,37,26,18,0.0 +17766,23,9,1,0.0 +17766,48,12.75,43,0.0 +17766,33,2.5,26,0.0 +17766,53,32.8,45,0.0 +17766,9,97,43,0.0 +17766,56,38,8,0.0 +17766,28,45.6,34,0.0 +17766,57,19.5,18,0.0 +17766,42,14,43,0.0 +17766,2,19,5,0.0 +17766,30,25.89,14,0.0 +17766,68,12.5,47,0.0 +17766,54,7.45,10,0.0 +17766,60,34,29,0.0 +17766,41,9.65,46,0.0 +17766,63,43.9,49,0.0 +17766,35,18,20,0.0 +17766,59,55,26,0.0 +17766,67,14,15,0.0 +17766,32,32,6,0.0 +17766,43,46,38,0.0 +17766,22,21,37,0.0 +17766,46,12,8,0.0 +17766,11,21,22,0.0 +17766,72,34.8,2,0.0 +17766,6,25,31,0.0 +17766,17,39,34,0.0 +17766,7,30,22,0.0 +17766,49,20,38,0.0 +17766,75,7.75,32,0.0 +17766,27,43.9,42,0.0 +17766,25,14,40,0.0 +17766,76,18,21,0.0 +17766,1,18,11,0.0 +17766,19,9.2,17,0.0 +17766,21,10,28,0.0 +17766,74,10,1,0.0 +17766,18,62.5,3,0.0 +17766,62,49.3,32,0.0 +17766,71,21.5,26,0.0 +17766,12,38,15,0.0 +17766,31,12.5,8,0.0 +17766,47,9.5,18,0.0 +17766,77,13,48,0.0 +17766,24,4.5,6,0.0 +17766,45,9.5,40,0.0 +17766,61,28.5,33,0.0 +17766,38,263.5,13,0.0 +17766,40,18.4,49,0.0 +17766,29,123.79,31,0.0 +17766,20,81,34,0.0 +17766,26,31.23,30,0.0 +17766,52,7,31,0.0 +17766,36,19,8,0.0 +17766,15,15.5,42,0.0 +17766,73,15,3,0.0 +17766,39,18,40,0.0 +17766,55,24,40,0.0 +17766,65,21.05,24,0.0 +17766,70,15,34,0.0 +17766,69,36,44,0.0 +17766,66,17,28,0.0 +17766,8,40,50,0.0 +17766,44,19.45,5,0.0 +17767,50,16.25,11,0.0 +17767,55,24,38,0.0 +17767,62,49.3,33,0.0 +17767,5,21.35,36,0.0 +17767,14,23.25,24,0.0 +17767,39,18,21,0.0 +17767,72,34.8,39,0.0 +17767,47,9.5,22,0.0 +17767,59,55,44,0.0 +17767,61,28.5,36,0.0 +17767,74,10,41,0.0 +17767,34,14,1,0.0 +17767,46,12,4,0.0 +17767,11,21,19,0.0 +17767,1,18,43,0.0 +17767,6,25,31,0.0 +17767,15,15.5,2,0.0 +17767,25,14,20,0.0 +17767,26,31.23,31,0.0 +17767,12,38,1,0.0 +17767,64,33.25,34,0.0 +17767,33,2.5,47,0.0 +17767,40,18.4,1,0.0 +17767,71,21.5,4,0.0 +17767,52,7,44,0.0 +17767,9,97,47,0.0 +17767,57,19.5,27,0.0 +17767,20,81,13,0.0 +17767,2,19,23,0.0 +17767,44,19.45,6,0.0 +17767,35,18,4,0.0 +17767,58,13.25,36,0.0 +17767,36,19,6,0.0 +17767,4,22,15,0.0 +17767,38,263.5,48,0.0 +17767,24,4.5,2,0.0 +17767,16,17.45,49,0.0 +17767,22,21,39,0.0 +17767,63,43.9,20,0.0 +17767,37,26,32,0.0 +17767,27,43.9,31,0.0 +17767,17,39,2,0.0 +17767,49,20,17,0.0 +17767,18,62.5,45,0.0 +17767,19,9.2,18,0.0 +17767,48,12.75,28,0.0 +17768,35,18,3,0.0 +17768,46,12,19,0.0 +17768,7,30,49,0.0 +17768,73,15,19,0.0 +17768,37,26,31,0.0 +17768,62,49.3,26,0.0 +17768,27,43.9,43,0.0 +17768,36,19,11,0.0 +17768,48,12.75,5,0.0 +17768,43,46,49,0.0 +17768,10,31,24,0.0 +17768,22,21,35,0.0 +17768,68,12.5,27,0.0 +17768,51,53,42,0.0 +17768,58,13.25,13,0.0 +17768,50,16.25,16,0.0 +17769,27,43.9,44,0.0 +17769,77,13,26,0.0 +17769,15,15.5,29,0.0 +17769,43,46,26,0.0 +17769,17,39,16,0.0 +17769,72,34.8,13,0.0 +17769,58,13.25,26,0.0 +17769,48,12.75,29,0.0 +17769,1,18,2,0.0 +17769,47,9.5,14,0.0 +17769,26,31.23,5,0.0 +17769,54,7.45,20,0.0 +17769,40,18.4,16,0.0 +17769,41,9.65,35,0.0 +17769,19,9.2,28,0.0 +17769,24,4.5,24,0.0 +17769,46,12,37,0.0 +17769,7,30,15,0.0 +17769,5,21.35,2,0.0 +17769,22,21,17,0.0 +17769,50,16.25,27,0.0 +17769,4,22,22,0.0 +17769,74,10,43,0.0 +17769,34,14,39,0.0 +17769,3,10,37,0.0 +17769,35,18,17,0.0 +17769,45,9.5,16,0.0 +17769,70,15,28,0.0 +17769,11,21,9,0.0 +17769,76,18,28,0.0 +17769,59,55,11,0.0 +17769,69,36,19,0.0 +17769,38,263.5,39,0.0 +17769,73,15,11,0.0 +17769,52,7,2,0.0 +17769,18,62.5,4,0.0 +17769,71,21.5,7,0.0 +17769,8,40,18,0.0 +17769,68,12.5,17,0.0 +17769,9,97,6,0.0 +17769,49,20,32,0.0 +17769,25,14,43,0.0 +17769,64,33.25,9,0.0 +17769,75,7.75,19,0.0 +17769,14,23.25,30,0.0 +17769,61,28.5,15,0.0 +17769,65,21.05,43,0.0 +17769,62,49.3,30,0.0 +17769,20,81,31,0.0 +17769,55,24,11,0.0 +17769,30,25.89,12,0.0 +17769,36,19,36,0.0 +17769,23,9,39,0.0 +17769,31,12.5,18,0.0 +17769,60,34,18,0.0 +17769,32,32,31,0.0 +17769,53,32.8,19,0.0 +17769,66,17,10,0.0 +17769,51,53,38,0.0 +17769,44,19.45,43,0.0 +17769,56,38,2,0.0 +17769,12,38,8,0.0 +17769,6,25,35,0.0 +17769,13,6,17,0.0 +17770,53,32.8,17,0.0 +17770,26,31.23,38,0.0 +17770,60,34,25,0.0 +17770,20,81,11,0.0 +17770,64,33.25,20,0.0 +17770,46,12,15,0.0 +17770,72,34.8,37,0.0 +17770,24,4.5,32,0.0 +17770,38,263.5,9,0.0 +17770,32,32,25,0.0 +17770,54,7.45,38,0.0 +17770,74,10,29,0.0 +17770,71,21.5,35,0.0 +17770,2,19,14,0.0 +17771,43,46,20,0.0 +17771,36,19,7,0.0 +17771,64,33.25,39,0.0 +17771,56,38,3,0.0 +17771,77,13,16,0.0 +17771,48,12.75,46,0.0 +17771,29,123.79,48,0.0 +17771,28,45.6,12,0.0 +17771,27,43.9,35,0.0 +17771,52,7,35,0.0 +17771,33,2.5,49,0.0 +17771,3,10,10,0.0 +17771,2,19,2,0.0 +17771,17,39,45,0.0 +17771,68,12.5,40,0.0 +17771,57,19.5,4,0.0 +17771,41,9.65,4,0.0 +17771,76,18,25,0.0 +17771,14,23.25,32,0.0 +17771,11,21,22,0.0 +17771,30,25.89,45,0.0 +17771,44,19.45,44,0.0 +17771,58,13.25,49,0.0 +17771,35,18,32,0.0 +17771,1,18,23,0.0 +17771,47,9.5,30,0.0 +17771,59,55,20,0.0 +17771,24,4.5,40,0.0 +17771,63,43.9,48,0.0 +17771,25,14,34,0.0 +17771,62,49.3,20,0.0 +17771,12,38,32,0.0 +17771,31,12.5,14,0.0 +17771,40,18.4,27,0.0 +17771,54,7.45,3,0.0 +17771,22,21,22,0.0 +17771,4,22,42,0.0 +17771,9,97,43,0.0 +17771,7,30,32,0.0 +17771,69,36,43,0.0 +17771,32,32,28,0.0 +17771,53,32.8,38,0.0 +17771,50,16.25,30,0.0 +17771,37,26,39,0.0 +17771,61,28.5,40,0.0 +17771,21,10,13,0.0 +17771,8,40,9,0.0 +17771,20,81,21,0.0 +17771,23,9,40,0.0 +17771,74,10,43,0.0 +17771,10,31,34,0.0 +17771,73,15,22,0.0 +17771,51,53,24,0.0 +17771,66,17,18,0.0 +17771,70,15,26,0.0 +17771,16,17.45,47,0.0 +17771,18,62.5,24,0.0 +17771,38,263.5,13,0.0 +17771,46,12,23,0.0 +17771,5,21.35,18,0.0 +17771,65,21.05,38,0.0 +17771,49,20,16,0.0 +17771,60,34,4,0.0 +17771,71,21.5,7,0.0 +17771,72,34.8,30,0.0 +17771,39,18,9,0.0 +17771,19,9.2,40,0.0 +17771,45,9.5,19,0.0 +17771,15,15.5,2,0.0 +17771,34,14,37,0.0 +17771,75,7.75,10,0.0 +17771,42,14,41,0.0 +17771,13,6,30,0.0 +17771,6,25,3,0.0 +17772,42,14,17,0.0 +17773,33,2.5,21,0.0 +17773,21,10,24,0.0 +17773,43,46,49,0.0 +17773,2,19,32,0.0 +17773,11,21,1,0.0 +17773,61,28.5,14,0.0 +17773,1,18,44,0.0 +17773,77,13,33,0.0 +17773,62,49.3,16,0.0 +17773,50,16.25,45,0.0 +17773,67,14,10,0.0 +17773,3,10,1,0.0 +17773,74,10,29,0.0 +17773,5,21.35,42,0.0 +17773,68,12.5,1,0.0 +17773,52,7,24,0.0 +17773,25,14,18,0.0 +17773,53,32.8,43,0.0 +17773,70,15,28,0.0 +17773,34,14,39,0.0 +17773,38,263.5,12,0.0 +17773,49,20,13,0.0 +17773,41,9.65,5,0.0 +17773,63,43.9,6,0.0 +17773,27,43.9,8,0.0 +17773,58,13.25,1,0.0 +17773,30,25.89,6,0.0 +17773,45,9.5,22,0.0 +17773,40,18.4,25,0.0 +17773,22,21,20,0.0 +17773,10,31,29,0.0 +17773,18,62.5,25,0.0 +17773,4,22,30,0.0 +17773,35,18,5,0.0 +17773,59,55,49,0.0 +17773,31,12.5,14,0.0 +17773,6,25,48,0.0 +17773,15,15.5,26,0.0 +17773,44,19.45,8,0.0 +17773,12,38,17,0.0 +17773,51,53,15,0.0 +17773,16,17.45,45,0.0 +17773,24,4.5,22,0.0 +17773,46,12,21,0.0 +17773,29,123.79,20,0.0 +17773,19,9.2,8,0.0 +17773,64,33.25,49,0.0 +17773,39,18,4,0.0 +17773,32,32,49,0.0 +17773,17,39,42,0.0 +17773,8,40,3,0.0 +17773,69,36,38,0.0 +17773,60,34,16,0.0 +17773,13,6,10,0.0 +17773,73,15,1,0.0 +17773,28,45.6,13,0.0 +17773,42,14,20,0.0 +17773,47,9.5,5,0.0 +17773,7,30,42,0.0 +17773,54,7.45,45,0.0 +17773,20,81,19,0.0 +17774,21,10,1,0.0 +17774,45,9.5,34,0.0 +17774,53,32.8,30,0.0 +17774,17,39,50,0.0 +17774,42,14,34,0.0 +17774,74,10,33,0.0 +17774,54,7.45,39,0.0 +17774,8,40,18,0.0 +17774,48,12.75,50,0.0 +17774,23,9,8,0.0 +17774,11,21,31,0.0 +17774,2,19,15,0.0 +17774,44,19.45,13,0.0 +17774,63,43.9,44,0.0 +17774,1,18,40,0.0 +17774,29,123.79,31,0.0 +17774,57,19.5,28,0.0 +17774,52,7,32,0.0 +17774,33,2.5,37,0.0 +17774,6,25,26,0.0 +17774,10,31,49,0.0 +17774,43,46,38,0.0 +17774,46,12,5,0.0 +17774,56,38,18,0.0 +17774,67,14,5,0.0 +17774,4,22,41,0.0 +17774,34,14,18,0.0 +17774,18,62.5,26,0.0 +17774,51,53,30,0.0 +17774,5,21.35,35,0.0 +17774,75,7.75,3,0.0 +17774,66,17,39,0.0 +17774,28,45.6,22,0.0 +17774,36,19,4,0.0 +17774,72,34.8,11,0.0 +17774,47,9.5,47,0.0 +17774,64,33.25,50,0.0 +17774,60,34,31,0.0 +17774,65,21.05,37,0.0 +17774,26,31.23,36,0.0 +17774,3,10,32,0.0 +17774,77,13,6,0.0 +17774,55,24,44,0.0 +17774,12,38,19,0.0 +17774,38,263.5,43,0.0 +17774,50,16.25,41,0.0 +17774,25,14,39,0.0 +17774,16,17.45,27,0.0 +17774,35,18,35,0.0 +17774,20,81,50,0.0 +17774,37,26,5,0.0 +17774,76,18,21,0.0 +17774,24,4.5,27,0.0 +17775,53,32.8,24,0.0 +17775,3,10,38,0.0 +17775,31,12.5,28,0.0 +17775,75,7.75,35,0.0 +17775,67,14,46,0.0 +17775,27,43.9,42,0.0 +17775,62,49.3,35,0.0 +17775,43,46,47,0.0 +17775,66,17,5,0.0 +17775,4,22,18,0.0 +17776,45,9.5,28,0.0 +17776,5,21.35,1,0.0 +17776,1,18,24,0.0 +17776,57,19.5,22,0.0 +17776,39,18,46,0.0 +17776,61,28.5,41,0.0 +17776,55,24,42,0.0 +17776,43,46,29,0.0 +17776,74,10,37,0.0 +17776,21,10,37,0.0 +17776,68,12.5,20,0.0 +17776,59,55,44,0.0 +17776,26,31.23,49,0.0 +17776,49,20,46,0.0 +17776,64,33.25,43,0.0 +17776,52,7,41,0.0 +17776,13,6,49,0.0 +17776,9,97,18,0.0 +17776,41,9.65,50,0.0 +17776,71,21.5,5,0.0 +17776,27,43.9,22,0.0 +17776,50,16.25,13,0.0 +17776,25,14,12,0.0 +17776,54,7.45,32,0.0 +17776,65,21.05,31,0.0 +17776,67,14,2,0.0 +17777,66,17,7,0.0 +17777,51,53,16,0.0 +17777,26,31.23,3,0.0 +17777,62,49.3,12,0.0 +17777,76,18,43,0.0 +17777,72,34.8,28,0.0 +17777,6,25,8,0.0 +17777,30,25.89,12,0.0 +17777,20,81,17,0.0 +17777,58,13.25,28,0.0 +17777,56,38,35,0.0 +17777,34,14,18,0.0 +17777,1,18,6,0.0 +17777,11,21,42,0.0 +17777,35,18,39,0.0 +17777,45,9.5,33,0.0 +17777,33,2.5,19,0.0 +17777,10,31,13,0.0 +17777,3,10,24,0.0 +17777,74,10,48,0.0 +17777,18,62.5,4,0.0 +17777,48,12.75,3,0.0 +17777,38,263.5,30,0.0 +17777,53,32.8,31,0.0 +17777,8,40,5,0.0 +17777,36,19,36,0.0 +17777,54,7.45,20,0.0 +17777,5,21.35,38,0.0 +17777,7,30,27,0.0 +17777,43,46,8,0.0 +17777,63,43.9,13,0.0 +17777,59,55,30,0.0 +17777,61,28.5,44,0.0 +17777,14,23.25,42,0.0 +17777,15,15.5,47,0.0 +17777,73,15,35,0.0 +17777,46,12,39,0.0 +17778,39,18,16,0.0 +17778,38,263.5,28,0.0 +17778,44,19.45,50,0.0 +17778,49,20,14,0.0 +17778,77,13,23,0.0 +17778,22,21,21,0.0 +17778,65,21.05,3,0.0 +17778,59,55,10,0.0 +17778,2,19,10,0.0 +17778,29,123.79,3,0.0 +17778,58,13.25,7,0.0 +17778,70,15,30,0.0 +17778,47,9.5,37,0.0 +17778,60,34,27,0.0 +17778,51,53,29,0.0 +17778,50,16.25,43,0.0 +17778,13,6,8,0.0 +17778,14,23.25,17,0.0 +17778,20,81,50,0.0 +17778,57,19.5,16,0.0 +17778,21,10,46,0.0 +17778,62,49.3,27,0.0 +17778,42,14,33,0.0 +17778,6,25,23,0.0 +17778,56,38,16,0.0 +17778,71,21.5,4,0.0 +17778,8,40,36,0.0 +17778,15,15.5,4,0.0 +17778,16,17.45,41,0.0 +17778,9,97,29,0.0 +17778,11,21,9,0.0 +17778,76,18,21,0.0 +17778,4,22,8,0.0 +17778,64,33.25,48,0.0 +17778,75,7.75,45,0.0 +17778,69,36,17,0.0 +17778,48,12.75,38,0.0 +17778,28,45.6,7,0.0 +17778,7,30,41,0.0 +17778,12,38,20,0.0 +17778,45,9.5,44,0.0 +17778,46,12,35,0.0 +17778,73,15,24,0.0 +17778,35,18,48,0.0 +17778,17,39,8,0.0 +17778,1,18,18,0.0 +17778,66,17,9,0.0 +17778,25,14,40,0.0 +17778,72,34.8,9,0.0 +17778,61,28.5,18,0.0 +17778,63,43.9,1,0.0 +17778,52,7,48,0.0 +17778,10,31,5,0.0 +17778,30,25.89,2,0.0 +17778,26,31.23,10,0.0 +17778,43,46,3,0.0 +17778,24,4.5,21,0.0 +17778,19,9.2,2,0.0 +17778,32,32,1,0.0 +17778,23,9,28,0.0 +17778,37,26,20,0.0 +17778,36,19,48,0.0 +17778,41,9.65,32,0.0 +17778,3,10,16,0.0 +17778,31,12.5,10,0.0 +17778,27,43.9,42,0.0 +17778,34,14,25,0.0 +17778,54,7.45,35,0.0 +17778,67,14,15,0.0 +17778,40,18.4,39,0.0 +17778,68,12.5,15,0.0 +17778,18,62.5,24,0.0 +17778,33,2.5,29,0.0 +17778,55,24,18,0.0 +17778,74,10,12,0.0 +17779,7,30,11,0.0 +17780,71,21.5,15,0.0 +17780,59,55,5,0.0 +17780,56,38,11,0.0 +17780,22,21,14,0.0 +17780,8,40,1,0.0 +17780,73,15,3,0.0 +17780,12,38,3,0.0 +17780,40,18.4,40,0.0 +17780,34,14,49,0.0 +17781,1,18,24,0.0 +17781,75,7.75,30,0.0 +17781,11,21,8,0.0 +17781,70,15,18,0.0 +17781,58,13.25,11,0.0 +17781,18,62.5,31,0.0 +17781,29,123.79,27,0.0 +17781,53,32.8,19,0.0 +17781,68,12.5,33,0.0 +17781,72,34.8,46,0.0 +17781,14,23.25,34,0.0 +17781,63,43.9,7,0.0 +17781,3,10,34,0.0 +17781,10,31,10,0.0 +17781,71,21.5,50,0.0 +17781,47,9.5,10,0.0 +17781,25,14,39,0.0 +17781,56,38,16,0.0 +17781,16,17.45,41,0.0 +17781,51,53,36,0.0 +17781,19,9.2,32,0.0 +17781,33,2.5,30,0.0 +17781,48,12.75,27,0.0 +17781,49,20,21,0.0 +17781,59,55,19,0.0 +17781,73,15,50,0.0 +17781,43,46,44,0.0 +17781,8,40,44,0.0 +17781,66,17,5,0.0 +17781,69,36,23,0.0 +17781,74,10,17,0.0 +17781,17,39,32,0.0 +17781,64,33.25,41,0.0 +17781,65,21.05,7,0.0 +17781,61,28.5,28,0.0 +17781,50,16.25,35,0.0 +17781,15,15.5,7,0.0 +17781,7,30,7,0.0 +17781,40,18.4,6,0.0 +17781,57,19.5,45,0.0 +17781,54,7.45,48,0.0 +17781,39,18,28,0.0 +17781,26,31.23,43,0.0 +17781,22,21,10,0.0 +17781,36,19,17,0.0 +17781,9,97,5,0.0 +17781,67,14,41,0.0 +17782,3,10,44,0.0 +17782,19,9.2,7,0.0 +17782,22,21,45,0.0 +17782,62,49.3,44,0.0 +17782,64,33.25,28,0.0 +17782,25,14,27,0.0 +17782,8,40,14,0.0 +17782,32,32,1,0.0 +17782,50,16.25,45,0.0 +17782,51,53,39,0.0 +17782,43,46,22,0.0 +17782,20,81,16,0.0 +17782,70,15,1,0.0 +17782,38,263.5,21,0.0 +17782,13,6,40,0.0 +17782,33,2.5,13,0.0 +17782,57,19.5,17,0.0 +17782,60,34,31,0.0 +17782,39,18,48,0.0 +17782,42,14,50,0.0 +17783,34,14,2,0.0 +17783,26,31.23,14,0.0 +17783,30,25.89,1,0.0 +17783,16,17.45,37,0.0 +17783,47,9.5,8,0.0 +17783,20,81,16,0.0 +17783,37,26,47,0.0 +17783,70,15,28,0.0 +17783,45,9.5,25,0.0 +17783,71,21.5,46,0.0 +17783,53,32.8,14,0.0 +17783,40,18.4,9,0.0 +17783,35,18,44,0.0 +17783,11,21,30,0.0 +17783,52,7,17,0.0 +17783,22,21,4,0.0 +17783,42,14,27,0.0 +17783,48,12.75,14,0.0 +17783,65,21.05,12,0.0 +17783,27,43.9,33,0.0 +17783,50,16.25,14,0.0 +17783,76,18,1,0.0 +17783,23,9,3,0.0 +17783,3,10,39,0.0 +17783,1,18,19,0.0 +17783,38,263.5,2,0.0 +17783,54,7.45,5,0.0 +17783,74,10,12,0.0 +17783,12,38,3,0.0 +17783,66,17,35,0.0 +17783,4,22,9,0.0 +17783,69,36,12,0.0 +17783,32,32,26,0.0 +17783,57,19.5,32,0.0 +17783,5,21.35,30,0.0 +17783,39,18,16,0.0 +17783,19,9.2,23,0.0 +17783,60,34,35,0.0 +17783,55,24,25,0.0 +17783,13,6,10,0.0 +17783,67,14,35,0.0 +17783,25,14,22,0.0 +17783,31,12.5,49,0.0 +17783,10,31,48,0.0 +17783,36,19,18,0.0 +17784,12,38,20,0.0 +17784,67,14,31,0.0 +17784,35,18,29,0.0 +17784,45,9.5,5,0.0 +17784,4,22,44,0.0 +17784,59,55,31,0.0 +17784,64,33.25,34,0.0 +17784,3,10,5,0.0 +17785,29,123.79,6,0.0 +17785,71,21.5,37,0.0 +17785,7,30,19,0.0 +17785,19,9.2,33,0.0 +17785,46,12,44,0.0 +17785,17,39,28,0.0 +17785,21,10,19,0.0 +17785,10,31,19,0.0 +17785,44,19.45,20,0.0 +17785,64,33.25,10,0.0 +17785,31,12.5,3,0.0 +17785,34,14,42,0.0 +17785,26,31.23,12,0.0 +17785,8,40,23,0.0 +17785,28,45.6,2,0.0 +17785,11,21,13,0.0 +17785,30,25.89,18,0.0 +17785,77,13,27,0.0 +17785,45,9.5,13,0.0 +17785,51,53,27,0.0 +17785,9,97,9,0.0 +17785,47,9.5,27,0.0 +17785,42,14,30,0.0 +17785,48,12.75,16,0.0 +17785,39,18,35,0.0 +17785,25,14,22,0.0 +17785,6,25,12,0.0 +17785,38,263.5,42,0.0 +17785,5,21.35,41,0.0 +17785,63,43.9,6,0.0 +17785,24,4.5,25,0.0 +17785,70,15,21,0.0 +17785,1,18,28,0.0 +17785,36,19,19,0.0 +17785,76,18,8,0.0 +17785,14,23.25,12,0.0 +17785,53,32.8,24,0.0 +17786,19,9.2,13,0.0 +17786,33,2.5,24,0.0 +17786,66,17,36,0.0 +17786,18,62.5,25,0.0 +17786,10,31,10,0.0 +17786,14,23.25,5,0.0 +17786,48,12.75,27,0.0 +17786,68,12.5,9,0.0 +17786,20,81,47,0.0 +17786,56,38,16,0.0 +17786,15,15.5,49,0.0 +17786,5,21.35,35,0.0 +17786,6,25,8,0.0 +17786,31,12.5,26,0.0 +17786,28,45.6,44,0.0 +17786,51,53,5,0.0 +17786,38,263.5,4,0.0 +17786,65,21.05,33,0.0 +17786,67,14,41,0.0 +17786,72,34.8,11,0.0 +17786,69,36,33,0.0 +17786,12,38,21,0.0 +17786,24,4.5,40,0.0 +17786,64,33.25,30,0.0 +17786,52,7,19,0.0 +17786,30,25.89,2,0.0 +17786,40,18.4,14,0.0 +17786,9,97,37,0.0 +17786,35,18,49,0.0 +17786,41,9.65,5,0.0 +17786,77,13,38,0.0 +17786,76,18,39,0.0 +17787,65,21.05,31,0.0 +17787,17,39,8,0.0 +17787,44,19.45,29,0.0 +17787,6,25,2,0.0 +17787,71,21.5,7,0.0 +17787,62,49.3,41,0.0 +17787,12,38,41,0.0 +17787,64,33.25,41,0.0 +17787,73,15,15,0.0 +17787,59,55,40,0.0 +17787,57,19.5,27,0.0 +17787,16,17.45,23,0.0 +17787,5,21.35,31,0.0 +17788,75,7.75,30,0.0 +17788,48,12.75,26,0.0 +17788,20,81,34,0.0 +17788,52,7,43,0.0 +17788,18,62.5,31,0.0 +17788,70,15,6,0.0 +17788,62,49.3,48,0.0 +17788,47,9.5,33,0.0 +17788,12,38,43,0.0 +17788,76,18,50,0.0 +17788,17,39,50,0.0 +17788,15,15.5,50,0.0 +17788,9,97,40,0.0 +17788,65,21.05,29,0.0 +17788,33,2.5,43,0.0 +17788,6,25,33,0.0 +17788,63,43.9,41,0.0 +17788,60,34,26,0.0 +17788,59,55,18,0.0 +17788,64,33.25,48,0.0 +17788,69,36,38,0.0 +17789,13,6,39,0.0 +17789,22,21,10,0.0 +17789,32,32,48,0.0 +17789,12,38,19,0.0 +17789,73,15,26,0.0 +17789,16,17.45,9,0.0 +17789,27,43.9,29,0.0 +17789,40,18.4,23,0.0 +17789,62,49.3,29,0.0 +17789,66,17,5,0.0 +17789,43,46,11,0.0 +17789,52,7,32,0.0 +17789,38,263.5,10,0.0 +17789,59,55,23,0.0 +17789,4,22,39,0.0 +17789,29,123.79,27,0.0 +17789,23,9,35,0.0 +17789,56,38,19,0.0 +17789,42,14,42,0.0 +17789,11,21,25,0.0 +17789,25,14,26,0.0 +17789,37,26,39,0.0 +17789,70,15,36,0.0 +17789,76,18,50,0.0 +17789,49,20,6,0.0 +17789,36,19,30,0.0 +17789,6,25,40,0.0 +17789,45,9.5,47,0.0 +17789,8,40,33,0.0 +17789,55,24,45,0.0 +17789,72,34.8,28,0.0 +17789,69,36,19,0.0 +17789,60,34,1,0.0 +17789,7,30,44,0.0 +17789,18,62.5,22,0.0 +17789,48,12.75,26,0.0 +17790,5,21.35,13,0.0 +17790,39,18,8,0.0 +17790,70,15,26,0.0 +17790,72,34.8,37,0.0 +17790,20,81,31,0.0 +17791,67,14,37,0.0 +17791,68,12.5,43,0.0 +17791,31,12.5,7,0.0 +17791,24,4.5,44,0.0 +17791,32,32,48,0.0 +17791,14,23.25,33,0.0 +17791,21,10,40,0.0 +17791,65,21.05,44,0.0 +17791,28,45.6,43,0.0 +17791,45,9.5,11,0.0 +17791,9,97,27,0.0 +17791,42,14,15,0.0 +17791,11,21,13,0.0 +17791,53,32.8,43,0.0 +17791,4,22,30,0.0 +17791,66,17,4,0.0 +17791,75,7.75,27,0.0 +17791,34,14,2,0.0 +17791,77,13,37,0.0 +17791,76,18,13,0.0 +17791,6,25,11,0.0 +17791,43,46,16,0.0 +17791,29,123.79,1,0.0 +17791,33,2.5,29,0.0 +17791,3,10,15,0.0 +17791,62,49.3,13,0.0 +17791,38,263.5,45,0.0 +17791,7,30,33,0.0 +17791,20,81,18,0.0 +17791,5,21.35,45,0.0 +17791,2,19,30,0.0 +17791,61,28.5,27,0.0 +17791,26,31.23,3,0.0 +17791,60,34,17,0.0 +17791,69,36,49,0.0 +17791,54,7.45,21,0.0 +17791,30,25.89,36,0.0 +17791,1,18,48,0.0 +17792,6,25,11,0.0 +17792,64,33.25,2,0.0 +17792,65,21.05,25,0.0 +17792,9,97,24,0.0 +17792,22,21,12,0.0 +17792,67,14,3,0.0 +17792,7,30,45,0.0 +17792,43,46,20,0.0 +17792,5,21.35,11,0.0 +17792,72,34.8,18,0.0 +17792,41,9.65,31,0.0 +17792,17,39,16,0.0 +17792,2,19,18,0.0 +17792,23,9,5,0.0 +17792,30,25.89,4,0.0 +17792,50,16.25,26,0.0 +17792,38,263.5,44,0.0 +17792,25,14,2,0.0 +17792,45,9.5,10,0.0 +17792,37,26,24,0.0 +17792,20,81,1,0.0 +17792,3,10,46,0.0 +17792,53,32.8,47,0.0 +17793,24,4.5,3,0.0 +17793,70,15,29,0.0 +17793,5,21.35,30,0.0 +17793,51,53,10,0.0 +17793,18,62.5,32,0.0 +17793,66,17,9,0.0 +17793,58,13.25,3,0.0 +17793,64,33.25,50,0.0 +17793,20,81,46,0.0 +17793,3,10,22,0.0 +17793,53,32.8,23,0.0 +17793,26,31.23,48,0.0 +17793,65,21.05,26,0.0 +17793,2,19,1,0.0 +17793,60,34,22,0.0 +17793,23,9,48,0.0 +17793,7,30,43,0.0 +17793,33,2.5,36,0.0 +17793,34,14,19,0.0 +17793,68,12.5,49,0.0 +17793,59,55,3,0.0 +17794,77,13,3,0.0 +17794,1,18,15,0.0 +17794,75,7.75,42,0.0 +17794,69,36,31,0.0 +17794,28,45.6,8,0.0 +17794,9,97,7,0.0 +17794,57,19.5,46,0.0 +17794,11,21,22,0.0 +17794,47,9.5,14,0.0 +17794,45,9.5,30,0.0 +17794,33,2.5,38,0.0 +17794,68,12.5,10,0.0 +17794,24,4.5,3,0.0 +17794,34,14,24,0.0 +17794,73,15,14,0.0 +17794,42,14,8,0.0 +17794,20,81,20,0.0 +17794,18,62.5,29,0.0 +17794,44,19.45,5,0.0 +17794,41,9.65,32,0.0 +17794,61,28.5,41,0.0 +17794,25,14,50,0.0 +17794,21,10,8,0.0 +17794,63,43.9,6,0.0 +17794,66,17,9,0.0 +17794,72,34.8,8,0.0 +17794,32,32,18,0.0 +17794,19,9.2,26,0.0 +17794,71,21.5,33,0.0 +17794,58,13.25,36,0.0 +17794,8,40,15,0.0 +17794,30,25.89,11,0.0 +17794,54,7.45,22,0.0 +17794,60,34,45,0.0 +17794,43,46,44,0.0 +17794,70,15,11,0.0 +17794,56,38,47,0.0 +17794,27,43.9,25,0.0 +17794,31,12.5,29,0.0 +17794,62,49.3,27,0.0 +17794,4,22,21,0.0 +17794,35,18,18,0.0 +17794,15,15.5,21,0.0 +17794,12,38,27,0.0 +17794,3,10,37,0.0 +17794,38,263.5,43,0.0 +17794,67,14,5,0.0 +17794,64,33.25,7,0.0 +17794,2,19,25,0.0 +17794,10,31,24,0.0 +17794,40,18.4,50,0.0 +17794,5,21.35,44,0.0 +17794,55,24,49,0.0 +17794,59,55,29,0.0 +17794,74,10,27,0.0 +17794,50,16.25,37,0.0 +17794,6,25,34,0.0 +17794,16,17.45,32,0.0 +17794,48,12.75,31,0.0 +17794,76,18,37,0.0 +17795,8,40,7,0.0 +17795,50,16.25,26,0.0 +17795,13,6,36,0.0 +17795,22,21,44,0.0 +17795,33,2.5,24,0.0 +17795,28,45.6,49,0.0 +17795,43,46,33,0.0 +17795,45,9.5,11,0.0 +17795,55,24,2,0.0 +17795,51,53,47,0.0 +17795,77,13,37,0.0 +17795,62,49.3,44,0.0 +17795,10,31,27,0.0 +17795,61,28.5,28,0.0 +17795,25,14,17,0.0 +17795,72,34.8,2,0.0 +17795,40,18.4,12,0.0 +17795,30,25.89,9,0.0 +17795,27,43.9,14,0.0 +17795,2,19,15,0.0 +17795,63,43.9,48,0.0 +17795,16,17.45,35,0.0 +17795,12,38,36,0.0 +17795,31,12.5,47,0.0 +17795,7,30,10,0.0 +17795,73,15,16,0.0 +17795,26,31.23,25,0.0 +17795,9,97,16,0.0 +17795,37,26,28,0.0 +17795,11,21,36,0.0 +17795,49,20,14,0.0 +17795,35,18,16,0.0 +17795,24,4.5,14,0.0 +17795,71,21.5,24,0.0 +17795,5,21.35,20,0.0 +17795,3,10,27,0.0 +17795,75,7.75,20,0.0 +17795,42,14,22,0.0 +17795,57,19.5,46,0.0 +17795,58,13.25,38,0.0 +17795,36,19,5,0.0 +17795,1,18,50,0.0 +17795,14,23.25,49,0.0 +17795,23,9,42,0.0 +17795,47,9.5,39,0.0 +17795,53,32.8,5,0.0 +17795,67,14,41,0.0 +17795,56,38,42,0.0 +17795,21,10,20,0.0 +17795,64,33.25,22,0.0 +17795,41,9.65,5,0.0 +17795,4,22,29,0.0 +17795,17,39,26,0.0 +17795,65,21.05,19,0.0 +17795,29,123.79,18,0.0 +17795,20,81,2,0.0 +17795,34,14,6,0.0 +17795,76,18,14,0.0 +17795,44,19.45,38,0.0 +17795,68,12.5,9,0.0 +17795,48,12.75,38,0.0 +17795,18,62.5,28,0.0 +17795,59,55,7,0.0 +17795,74,10,7,0.0 +17795,38,263.5,7,0.0 +17795,15,15.5,18,0.0 +17795,52,7,33,0.0 +17795,6,25,7,0.0 +17795,39,18,7,0.0 +17795,66,17,16,0.0 +17795,70,15,21,0.0 +17795,19,9.2,41,0.0 +17795,60,34,2,0.0 +17796,56,38,12,0.0 +17796,18,62.5,20,0.0 +17796,21,10,27,0.0 +17796,14,23.25,49,0.0 +17796,74,10,48,0.0 +17796,2,19,7,0.0 +17796,43,46,22,0.0 +17796,60,34,10,0.0 +17796,24,4.5,2,0.0 +17796,26,31.23,16,0.0 +17796,66,17,38,0.0 +17796,48,12.75,40,0.0 +17796,68,12.5,3,0.0 +17796,10,31,48,0.0 +17796,59,55,3,0.0 +17796,62,49.3,31,0.0 +17796,55,24,8,0.0 +17796,30,25.89,6,0.0 +17796,52,7,34,0.0 +17796,23,9,19,0.0 +17796,11,21,20,0.0 +17796,32,32,32,0.0 +17796,27,43.9,11,0.0 +17796,7,30,27,0.0 +17796,77,13,37,0.0 +17796,13,6,43,0.0 +17796,35,18,23,0.0 +17796,3,10,19,0.0 +17796,51,53,24,0.0 +17796,72,34.8,47,0.0 +17796,12,38,37,0.0 +17796,25,14,49,0.0 +17796,53,32.8,40,0.0 +17796,76,18,3,0.0 +17796,57,19.5,5,0.0 +17796,34,14,4,0.0 +17796,9,97,14,0.0 +17796,33,2.5,48,0.0 +17796,45,9.5,4,0.0 +17796,16,17.45,20,0.0 +17796,46,12,44,0.0 +17796,22,21,18,0.0 +17796,37,26,15,0.0 +17796,4,22,27,0.0 +17797,36,19,42,0.0 +17798,76,18,8,0.0 +17798,63,43.9,32,0.0 +17798,44,19.45,3,0.0 +17798,48,12.75,31,0.0 +17798,56,38,34,0.0 +17798,75,7.75,11,0.0 +17798,28,45.6,33,0.0 +17798,4,22,15,0.0 +17798,38,263.5,46,0.0 +17798,43,46,39,0.0 +17798,42,14,25,0.0 +17798,12,38,2,0.0 +17798,9,97,42,0.0 +17798,64,33.25,50,0.0 +17798,31,12.5,11,0.0 +17798,62,49.3,2,0.0 +17798,2,19,45,0.0 +17798,13,6,25,0.0 +17798,7,30,48,0.0 +17798,71,21.5,36,0.0 +17798,50,16.25,28,0.0 +17798,61,28.5,13,0.0 +17798,24,4.5,31,0.0 +17798,54,7.45,40,0.0 +17798,34,14,13,0.0 +17798,26,31.23,9,0.0 +17798,25,14,8,0.0 +17798,33,2.5,15,0.0 +17798,46,12,27,0.0 +17798,58,13.25,40,0.0 +17798,45,9.5,30,0.0 +17798,51,53,33,0.0 +17798,59,55,6,0.0 +17798,30,25.89,48,0.0 +17798,47,9.5,26,0.0 +17798,67,14,37,0.0 +17798,65,21.05,41,0.0 +17798,60,34,8,0.0 +17798,18,62.5,28,0.0 +17798,35,18,11,0.0 +17798,73,15,27,0.0 +17798,32,32,26,0.0 +17798,39,18,40,0.0 +17798,27,43.9,2,0.0 +17798,29,123.79,25,0.0 +17798,5,21.35,16,0.0 +17798,55,24,21,0.0 +17798,16,17.45,22,0.0 +17798,19,9.2,6,0.0 +17798,22,21,13,0.0 +17798,37,26,27,0.0 +17799,57,19.5,37,0.0 +17799,47,9.5,5,0.0 +17799,18,62.5,36,0.0 +17799,24,4.5,27,0.0 +17799,17,39,45,0.0 +17799,20,81,36,0.0 +17799,2,19,14,0.0 +17799,35,18,20,0.0 +17799,22,21,40,0.0 +17799,32,32,6,0.0 +17799,62,49.3,9,0.0 +17799,27,43.9,50,0.0 +17799,29,123.79,16,0.0 +17799,56,38,31,0.0 +17799,6,25,50,0.0 +17799,23,9,12,0.0 +17799,61,28.5,48,0.0 +17799,43,46,8,0.0 +17799,66,17,44,0.0 +17799,15,15.5,28,0.0 +17799,44,19.45,5,0.0 +17799,71,21.5,30,0.0 +17799,52,7,46,0.0 +17799,55,24,11,0.0 +17799,25,14,6,0.0 +17799,69,36,22,0.0 +17799,3,10,43,0.0 +17799,58,13.25,48,0.0 +17799,9,97,47,0.0 +17799,74,10,26,0.0 +17799,30,25.89,33,0.0 +17799,1,18,25,0.0 +17799,33,2.5,26,0.0 +17800,70,15,30,0.0 +17800,62,49.3,44,0.0 +17800,47,9.5,22,0.0 +17800,2,19,14,0.0 +17800,3,10,25,0.0 +17800,63,43.9,50,0.0 +17801,23,9,12,0.0 +17801,48,12.75,11,0.0 +17801,56,38,35,0.0 +17801,71,21.5,41,0.0 +17801,73,15,2,0.0 +17801,60,34,7,0.0 +17801,8,40,15,0.0 +17801,63,43.9,19,0.0 +17801,9,97,47,0.0 +17801,36,19,28,0.0 +17801,33,2.5,13,0.0 +17801,41,9.65,10,0.0 +17801,1,18,34,0.0 +17801,32,32,4,0.0 +17801,34,14,49,0.0 +17801,5,21.35,41,0.0 +17801,26,31.23,8,0.0 +17801,43,46,31,0.0 +17801,29,123.79,24,0.0 +17801,67,14,38,0.0 +17801,70,15,18,0.0 +17801,74,10,37,0.0 +17801,25,14,13,0.0 +17801,50,16.25,16,0.0 +17801,52,7,1,0.0 +17801,53,32.8,46,0.0 +17801,38,263.5,25,0.0 +17801,4,22,3,0.0 +17801,75,7.75,10,0.0 +17801,10,31,11,0.0 +17801,47,9.5,18,0.0 +17801,76,18,34,0.0 +17801,31,12.5,48,0.0 +17801,2,19,2,0.0 +17801,61,28.5,47,0.0 +17801,64,33.25,36,0.0 +17801,44,19.45,14,0.0 +17801,39,18,43,0.0 +17801,16,17.45,11,0.0 +17801,24,4.5,6,0.0 +17801,11,21,13,0.0 +17801,49,20,30,0.0 +17801,35,18,22,0.0 +17801,40,18.4,27,0.0 +17801,37,26,46,0.0 +17801,42,14,49,0.0 +17801,59,55,7,0.0 +17801,51,53,42,0.0 +17801,17,39,16,0.0 +17801,66,17,18,0.0 +17802,40,18.4,13,0.0 +17802,7,30,19,0.0 +17802,21,10,41,0.0 +17802,31,12.5,16,0.0 +17802,12,38,40,0.0 +17802,75,7.75,49,0.0 +17802,44,19.45,45,0.0 +17802,48,12.75,26,0.0 +17802,57,19.5,8,0.0 +17802,68,12.5,50,0.0 +17802,65,21.05,37,0.0 +17802,62,49.3,46,0.0 +17802,43,46,45,0.0 +17802,8,40,3,0.0 +17802,54,7.45,49,0.0 +17802,26,31.23,46,0.0 +17802,2,19,38,0.0 +17802,45,9.5,39,0.0 +17802,58,13.25,49,0.0 +17802,19,9.2,29,0.0 +17802,22,21,44,0.0 +17802,29,123.79,33,0.0 +17802,64,33.25,37,0.0 +17802,41,9.65,15,0.0 +17802,9,97,9,0.0 +17802,67,14,47,0.0 +17802,23,9,11,0.0 +17802,50,16.25,28,0.0 +17802,16,17.45,22,0.0 +17802,38,263.5,26,0.0 +17802,72,34.8,13,0.0 +17802,66,17,25,0.0 +17802,52,7,17,0.0 +17802,35,18,19,0.0 +17802,63,43.9,30,0.0 +17802,36,19,23,0.0 +17802,32,32,25,0.0 +17802,47,9.5,29,0.0 +17802,42,14,34,0.0 +17802,24,4.5,28,0.0 +17802,15,15.5,17,0.0 +17802,46,12,50,0.0 +17802,1,18,20,0.0 +17802,73,15,49,0.0 +17802,28,45.6,4,0.0 +17802,56,38,47,0.0 +17802,71,21.5,43,0.0 +17802,14,23.25,12,0.0 +17802,11,21,29,0.0 +17802,55,24,2,0.0 +17802,25,14,47,0.0 +17802,18,62.5,13,0.0 +17802,39,18,44,0.0 +17802,34,14,47,0.0 +17802,6,25,23,0.0 +17802,33,2.5,45,0.0 +17802,77,13,39,0.0 +17802,13,6,28,0.0 +17802,76,18,31,0.0 +17802,37,26,21,0.0 +17802,3,10,11,0.0 +17802,5,21.35,7,0.0 +17802,61,28.5,31,0.0 +17802,20,81,10,0.0 +17802,60,34,26,0.0 +17802,74,10,20,0.0 +17802,53,32.8,21,0.0 +17802,59,55,6,0.0 +17802,17,39,42,0.0 +17802,70,15,42,0.0 +17802,30,25.89,15,0.0 +17802,27,43.9,42,0.0 +17803,59,55,24,0.0 +17803,31,12.5,6,0.0 +17803,73,15,20,0.0 +17803,47,9.5,14,0.0 +17803,75,7.75,2,0.0 +17803,45,9.5,45,0.0 +17803,11,21,14,0.0 +17803,14,23.25,42,0.0 +17803,33,2.5,34,0.0 +17803,3,10,45,0.0 +17803,62,49.3,7,0.0 +17803,13,6,48,0.0 +17803,64,33.25,38,0.0 +17803,30,25.89,35,0.0 +17803,70,15,42,0.0 +17803,12,38,12,0.0 +17803,68,12.5,16,0.0 +17803,52,7,45,0.0 +17803,4,22,39,0.0 +17803,74,10,40,0.0 +17803,22,21,21,0.0 +17803,61,28.5,2,0.0 +17803,25,14,14,0.0 +17803,19,9.2,1,0.0 +17803,16,17.45,16,0.0 +17803,43,46,11,0.0 +17803,36,19,22,0.0 +17803,67,14,50,0.0 +17803,39,18,12,0.0 +17803,23,9,40,0.0 +17803,46,12,30,0.0 +17803,49,20,29,0.0 +17803,63,43.9,46,0.0 +17803,15,15.5,20,0.0 +17803,69,36,6,0.0 +17803,32,32,14,0.0 +17803,77,13,33,0.0 +17803,40,18.4,21,0.0 +17803,55,24,26,0.0 +17803,21,10,36,0.0 +17803,57,19.5,23,0.0 +17803,1,18,33,0.0 +17803,34,14,38,0.0 +17803,26,31.23,31,0.0 +17803,18,62.5,8,0.0 +17803,53,32.8,35,0.0 +17803,5,21.35,2,0.0 +17803,27,43.9,9,0.0 +17803,38,263.5,42,0.0 +17804,43,46,20,0.0 +17804,67,14,14,0.0 +17804,57,19.5,1,0.0 +17804,11,21,8,0.0 +17804,29,123.79,4,0.0 +17804,77,13,23,0.0 +17804,4,22,3,0.0 +17804,32,32,40,0.0 +17804,72,34.8,11,0.0 +17804,27,43.9,19,0.0 +17804,3,10,48,0.0 +17804,17,39,12,0.0 +17804,23,9,13,0.0 +17804,68,12.5,22,0.0 +17804,9,97,14,0.0 +17804,31,12.5,22,0.0 +17804,1,18,6,0.0 +17804,40,18.4,46,0.0 +17804,18,62.5,22,0.0 +17804,16,17.45,3,0.0 +17804,28,45.6,47,0.0 +17804,42,14,14,0.0 +17804,5,21.35,4,0.0 +17804,58,13.25,9,0.0 +17804,39,18,50,0.0 +17804,62,49.3,14,0.0 +17805,70,15,27,0.0 +17805,76,18,29,0.0 +17805,75,7.75,7,0.0 +17805,47,9.5,7,0.0 +17805,58,13.25,40,0.0 +17805,49,20,28,0.0 +17805,17,39,2,0.0 +17805,73,15,3,0.0 +17805,34,14,44,0.0 +17805,45,9.5,21,0.0 +17805,38,263.5,2,0.0 +17805,27,43.9,22,0.0 +17805,3,10,44,0.0 +17805,55,24,40,0.0 +17805,16,17.45,29,0.0 +17805,15,15.5,17,0.0 +17805,51,53,40,0.0 +17805,24,4.5,18,0.0 +17805,36,19,17,0.0 +17805,42,14,1,0.0 +17805,2,19,6,0.0 +17805,30,25.89,37,0.0 +17805,32,32,22,0.0 +17805,19,9.2,35,0.0 +17805,56,38,49,0.0 +17805,1,18,17,0.0 +17805,39,18,11,0.0 +17805,29,123.79,31,0.0 +17805,53,32.8,39,0.0 +17805,43,46,14,0.0 +17805,35,18,10,0.0 +17805,62,49.3,11,0.0 +17806,15,15.5,10,0.0 +17806,26,31.23,37,0.0 +17806,46,12,42,0.0 +17806,36,19,7,0.0 +17806,11,21,13,0.0 +17806,23,9,26,0.0 +17806,66,17,11,0.0 +17806,60,34,34,0.0 +17806,72,34.8,40,0.0 +17806,10,31,34,0.0 +17806,71,21.5,48,0.0 +17806,56,38,15,0.0 +17806,30,25.89,19,0.0 +17806,73,15,8,0.0 +17806,25,14,17,0.0 +17806,75,7.75,36,0.0 +17806,37,26,24,0.0 +17806,33,2.5,30,0.0 +17806,2,19,37,0.0 +17806,38,263.5,35,0.0 +17806,16,17.45,41,0.0 +17806,64,33.25,2,0.0 +17806,34,14,19,0.0 +17806,45,9.5,4,0.0 +17806,70,15,19,0.0 +17806,65,21.05,34,0.0 +17806,47,9.5,48,0.0 +17806,28,45.6,20,0.0 +17806,74,10,30,0.0 +17806,3,10,3,0.0 +17806,27,43.9,19,0.0 +17806,31,12.5,29,0.0 +17806,55,24,46,0.0 +17806,32,32,13,0.0 +17806,48,12.75,12,0.0 +17807,26,31.23,23,0.0 +17807,36,19,34,0.0 +17807,28,45.6,9,0.0 +17807,49,20,48,0.0 +17807,59,55,21,0.0 +17807,70,15,11,0.0 +17807,47,9.5,23,0.0 +17807,2,19,30,0.0 +17808,30,25.89,16,0.0 +17808,59,55,19,0.0 +17808,65,21.05,23,0.0 +17808,10,31,27,0.0 +17808,29,123.79,50,0.0 +17808,77,13,41,0.0 +17808,4,22,33,0.0 +17808,74,10,19,0.0 +17808,38,263.5,43,0.0 +17808,13,6,24,0.0 +17808,31,12.5,27,0.0 +17808,17,39,1,0.0 +17808,41,9.65,38,0.0 +17808,64,33.25,8,0.0 +17808,11,21,46,0.0 +17808,57,19.5,44,0.0 +17808,6,25,38,0.0 +17809,20,81,23,0.0 +17809,63,43.9,38,0.0 +17809,61,28.5,48,0.0 +17809,46,12,23,0.0 +17809,21,10,47,0.0 +17809,44,19.45,17,0.0 +17809,39,18,18,0.0 +17809,68,12.5,50,0.0 +17809,12,38,26,0.0 +17809,66,17,36,0.0 +17809,8,40,2,0.0 +17809,2,19,37,0.0 +17809,32,32,42,0.0 +17809,17,39,42,0.0 +17809,30,25.89,20,0.0 +17809,74,10,37,0.0 +17809,55,24,23,0.0 +17809,3,10,36,0.0 +17809,52,7,9,0.0 +17809,65,21.05,6,0.0 +17809,64,33.25,38,0.0 +17809,56,38,26,0.0 +17809,57,19.5,12,0.0 +17809,5,21.35,23,0.0 +17809,10,31,38,0.0 +17809,4,22,19,0.0 +17809,34,14,30,0.0 +17809,37,26,32,0.0 +17809,26,31.23,25,0.0 +17809,29,123.79,49,0.0 +17809,48,12.75,9,0.0 +17809,38,263.5,24,0.0 +17809,23,9,39,0.0 +17809,70,15,19,0.0 +17809,47,9.5,44,0.0 +17809,41,9.65,38,0.0 +17809,19,9.2,30,0.0 +17809,76,18,17,0.0 +17809,1,18,27,0.0 +17809,27,43.9,15,0.0 +17809,75,7.75,10,0.0 +17809,62,49.3,6,0.0 +17809,72,34.8,35,0.0 +17809,53,32.8,17,0.0 +17809,45,9.5,3,0.0 +17809,69,36,30,0.0 +17809,7,30,16,0.0 +17809,59,55,34,0.0 +17809,40,18.4,16,0.0 +17809,77,13,23,0.0 +17809,33,2.5,47,0.0 +17809,9,97,9,0.0 +17809,31,12.5,44,0.0 +17809,71,21.5,14,0.0 +17809,14,23.25,19,0.0 +17809,60,34,41,0.0 +17809,67,14,12,0.0 +17809,18,62.5,35,0.0 +17809,73,15,38,0.0 +17809,22,21,4,0.0 +17810,27,43.9,33,0.0 +17810,64,33.25,26,0.0 +17810,8,40,24,0.0 +17810,4,22,38,0.0 +17810,59,55,10,0.0 +17810,35,18,29,0.0 +17810,11,21,28,0.0 +17811,40,18.4,20,0.0 +17811,10,31,16,0.0 +17811,43,46,1,0.0 +17811,41,9.65,9,0.0 +17811,15,15.5,17,0.0 +17811,69,36,31,0.0 +17811,20,81,29,0.0 +17811,64,33.25,12,0.0 +17811,58,13.25,17,0.0 +17811,59,55,34,0.0 +17811,56,38,46,0.0 +17811,31,12.5,12,0.0 +17811,75,7.75,29,0.0 +17811,39,18,15,0.0 +17811,47,9.5,16,0.0 +17811,70,15,10,0.0 +17811,22,21,4,0.0 +17811,61,28.5,44,0.0 +17811,24,4.5,28,0.0 +17811,60,34,7,0.0 +17811,27,43.9,28,0.0 +17811,71,21.5,44,0.0 +17811,25,14,2,0.0 +17811,65,21.05,7,0.0 +17811,66,17,33,0.0 +17811,46,12,38,0.0 +17811,23,9,31,0.0 +17811,53,32.8,5,0.0 +17811,12,38,20,0.0 +17811,8,40,30,0.0 +17811,30,25.89,46,0.0 +17811,4,22,8,0.0 +17811,77,13,37,0.0 +17811,36,19,6,0.0 +17811,3,10,3,0.0 +17811,51,53,24,0.0 +17811,37,26,19,0.0 +17811,34,14,7,0.0 +17811,21,10,20,0.0 +17811,28,45.6,47,0.0 +17811,7,30,32,0.0 +17811,72,34.8,43,0.0 +17811,74,10,10,0.0 +17811,48,12.75,1,0.0 +17811,55,24,19,0.0 +17811,17,39,21,0.0 +17811,2,19,12,0.0 +17811,76,18,35,0.0 +17811,38,263.5,38,0.0 +17811,45,9.5,11,0.0 +17811,68,12.5,32,0.0 +17812,27,43.9,28,0.0 +17812,62,49.3,43,0.0 +17812,40,18.4,12,0.0 +17812,25,14,19,0.0 +17812,6,25,3,0.0 +17812,72,34.8,20,0.0 +17812,59,55,26,0.0 +17812,30,25.89,25,0.0 +17812,13,6,28,0.0 +17812,34,14,1,0.0 +17812,49,20,22,0.0 +17812,2,19,6,0.0 +17812,46,12,7,0.0 +17812,16,17.45,8,0.0 +17812,43,46,13,0.0 +17812,33,2.5,7,0.0 +17812,65,21.05,44,0.0 +17812,39,18,35,0.0 +17812,10,31,25,0.0 +17812,18,62.5,28,0.0 +17812,70,15,15,0.0 +17812,42,14,19,0.0 +17812,48,12.75,19,0.0 +17812,26,31.23,28,0.0 +17812,60,34,42,0.0 +17813,32,32,34,0.0 +17813,64,33.25,9,0.0 +17813,18,62.5,29,0.0 +17813,55,24,27,0.0 +17813,14,23.25,39,0.0 +17813,69,36,18,0.0 +17813,62,49.3,5,0.0 +17813,52,7,33,0.0 +17813,12,38,44,0.0 +17813,30,25.89,37,0.0 +17813,9,97,1,0.0 +17813,36,19,34,0.0 +17813,10,31,35,0.0 +17813,51,53,46,0.0 +17813,28,45.6,41,0.0 +17813,42,14,17,0.0 +17813,7,30,15,0.0 +17813,44,19.45,35,0.0 +17813,74,10,43,0.0 +17813,65,21.05,49,0.0 +17813,71,21.5,46,0.0 +17813,17,39,46,0.0 +17813,49,20,6,0.0 +17813,20,81,20,0.0 +17813,22,21,38,0.0 +17813,11,21,40,0.0 +17813,19,9.2,34,0.0 +17813,37,26,1,0.0 +17813,3,10,12,0.0 +17813,57,19.5,13,0.0 +17813,73,15,47,0.0 +17813,56,38,11,0.0 +17813,60,34,18,0.0 +17813,67,14,21,0.0 +17813,50,16.25,3,0.0 +17813,2,19,26,0.0 +17813,68,12.5,6,0.0 +17813,8,40,8,0.0 +17813,46,12,37,0.0 +17813,25,14,25,0.0 +17813,48,12.75,17,0.0 +17813,4,22,33,0.0 +17813,76,18,33,0.0 +17813,38,263.5,40,0.0 +17813,45,9.5,1,0.0 +17813,5,21.35,30,0.0 +17813,15,15.5,42,0.0 +17813,33,2.5,50,0.0 +17813,70,15,7,0.0 +17813,58,13.25,44,0.0 +17813,13,6,44,0.0 +17813,72,34.8,36,0.0 +17813,21,10,11,0.0 +17813,47,9.5,31,0.0 +17813,39,18,42,0.0 +17813,6,25,42,0.0 +17813,23,9,20,0.0 +17813,40,18.4,49,0.0 +17813,63,43.9,47,0.0 +17814,5,21.35,34,0.0 +17814,36,19,14,0.0 +17814,66,17,41,0.0 +17814,16,17.45,13,0.0 +17814,43,46,36,0.0 +17814,48,12.75,46,0.0 +17814,6,25,7,0.0 +17814,63,43.9,35,0.0 +17814,31,12.5,40,0.0 +17814,49,20,38,0.0 +17814,55,24,17,0.0 +17814,1,18,31,0.0 +17814,44,19.45,40,0.0 +17814,13,6,7,0.0 +17814,60,34,10,0.0 +17814,46,12,46,0.0 +17814,45,9.5,23,0.0 +17814,39,18,26,0.0 +17814,68,12.5,27,0.0 +17814,3,10,22,0.0 +17814,20,81,30,0.0 +17814,26,31.23,21,0.0 +17814,21,10,24,0.0 +17814,37,26,17,0.0 +17814,76,18,8,0.0 +17814,51,53,31,0.0 +17814,42,14,39,0.0 +17814,12,38,26,0.0 +17814,15,15.5,35,0.0 +17814,61,28.5,14,0.0 +17814,74,10,16,0.0 +17814,71,21.5,20,0.0 +17814,11,21,2,0.0 +17814,70,15,18,0.0 +17814,57,19.5,5,0.0 +17814,65,21.05,25,0.0 +17814,54,7.45,1,0.0 +17814,28,45.6,35,0.0 +17814,4,22,29,0.0 +17814,35,18,43,0.0 +17814,40,18.4,14,0.0 +17814,33,2.5,8,0.0 +17814,47,9.5,7,0.0 +17814,38,263.5,11,0.0 +17814,75,7.75,48,0.0 +17814,17,39,3,0.0 +17814,7,30,42,0.0 +17814,29,123.79,30,0.0 +17814,62,49.3,26,0.0 +17814,27,43.9,10,0.0 +17814,56,38,15,0.0 +17814,30,25.89,4,0.0 +17814,8,40,15,0.0 +17814,69,36,5,0.0 +17814,22,21,50,0.0 +17814,18,62.5,12,0.0 +17814,34,14,44,0.0 +17814,14,23.25,11,0.0 +17814,19,9.2,38,0.0 +17814,59,55,48,0.0 +17814,53,32.8,40,0.0 +17814,64,33.25,1,0.0 +17814,73,15,38,0.0 +17815,72,34.8,42,0.0 +17815,17,39,9,0.0 +17815,2,19,44,0.0 +17815,62,49.3,40,0.0 +17815,49,20,45,0.0 +17815,63,43.9,23,0.0 +17815,34,14,35,0.0 +17815,31,12.5,37,0.0 +17815,73,15,41,0.0 +17815,26,31.23,12,0.0 +17815,56,38,37,0.0 +17815,8,40,38,0.0 +17815,39,18,1,0.0 +17815,61,28.5,38,0.0 +17815,12,38,36,0.0 +17815,21,10,37,0.0 +17815,69,36,44,0.0 +17815,59,55,15,0.0 +17815,68,12.5,32,0.0 +17815,43,46,22,0.0 +17815,46,12,50,0.0 +17815,25,14,2,0.0 +17815,32,32,37,0.0 +17815,18,62.5,27,0.0 +17815,44,19.45,32,0.0 +17815,3,10,16,0.0 +17815,41,9.65,27,0.0 +17815,6,25,28,0.0 +17815,52,7,33,0.0 +17815,15,15.5,27,0.0 +17815,22,21,5,0.0 +17815,50,16.25,3,0.0 +17815,60,34,11,0.0 +17815,65,21.05,20,0.0 +17815,9,97,13,0.0 +17815,20,81,15,0.0 +17815,74,10,20,0.0 +17815,33,2.5,21,0.0 +17815,53,32.8,41,0.0 +17815,13,6,28,0.0 +17815,66,17,43,0.0 +17815,16,17.45,36,0.0 +17815,58,13.25,49,0.0 +17815,70,15,17,0.0 +17815,24,4.5,7,0.0 +17815,45,9.5,6,0.0 +17815,75,7.75,19,0.0 +17815,28,45.6,24,0.0 +17816,36,19,9,0.0 +17816,18,62.5,41,0.0 +17816,69,36,39,0.0 +17816,23,9,12,0.0 +17816,59,55,30,0.0 +17816,4,22,39,0.0 +17816,30,25.89,6,0.0 +17816,62,49.3,50,0.0 +17816,26,31.23,28,0.0 +17816,46,12,36,0.0 +17816,16,17.45,39,0.0 +17816,41,9.65,1,0.0 +17816,63,43.9,19,0.0 +17816,68,12.5,29,0.0 +17816,38,263.5,46,0.0 +17816,37,26,31,0.0 +17816,74,10,2,0.0 +17816,77,13,19,0.0 +17816,24,4.5,26,0.0 +17816,14,23.25,33,0.0 +17816,45,9.5,32,0.0 +17816,2,19,9,0.0 +17816,72,34.8,32,0.0 +17816,66,17,27,0.0 +17816,61,28.5,45,0.0 +17816,13,6,33,0.0 +17816,75,7.75,13,0.0 +17816,64,33.25,22,0.0 +17816,21,10,35,0.0 +17816,55,24,19,0.0 +17816,31,12.5,11,0.0 +17816,29,123.79,6,0.0 +17816,28,45.6,48,0.0 +17817,51,53,30,0.0 +17817,65,21.05,36,0.0 +17817,52,7,43,0.0 +17818,70,15,22,0.0 +17818,76,18,4,0.0 +17818,41,9.65,34,0.0 +17818,56,38,17,0.0 +17818,24,4.5,11,0.0 +17818,53,32.8,46,0.0 +17818,3,10,1,0.0 +17818,49,20,24,0.0 +17818,72,34.8,31,0.0 +17818,48,12.75,36,0.0 +17818,6,25,21,0.0 +17818,51,53,23,0.0 +17818,35,18,45,0.0 +17818,42,14,12,0.0 +17818,20,81,50,0.0 +17818,61,28.5,6,0.0 +17818,73,15,4,0.0 +17818,2,19,25,0.0 +17818,77,13,12,0.0 +17818,75,7.75,14,0.0 +17818,31,12.5,13,0.0 +17818,27,43.9,18,0.0 +17818,68,12.5,9,0.0 +17818,11,21,48,0.0 +17818,17,39,41,0.0 +17818,15,15.5,29,0.0 +17818,25,14,45,0.0 +17818,19,9.2,24,0.0 +17818,21,10,9,0.0 +17818,26,31.23,13,0.0 +17818,38,263.5,24,0.0 +17818,13,6,39,0.0 +17818,34,14,8,0.0 +17818,60,34,1,0.0 +17818,64,33.25,39,0.0 +17818,8,40,47,0.0 +17818,74,10,38,0.0 +17818,36,19,43,0.0 +17818,59,55,39,0.0 +17818,50,16.25,10,0.0 +17818,54,7.45,50,0.0 +17818,52,7,3,0.0 +17818,30,25.89,32,0.0 +17818,57,19.5,34,0.0 +17818,63,43.9,4,0.0 +17818,12,38,1,0.0 +17818,55,24,6,0.0 +17818,39,18,22,0.0 +17818,62,49.3,40,0.0 +17818,22,21,48,0.0 +17818,10,31,21,0.0 +17818,65,21.05,32,0.0 +17818,18,62.5,46,0.0 +17818,32,32,49,0.0 +17818,45,9.5,28,0.0 +17819,23,9,14,0.0 +17819,30,25.89,18,0.0 +17819,41,9.65,12,0.0 +17819,61,28.5,1,0.0 +17819,47,9.5,17,0.0 +17819,25,14,5,0.0 +17819,54,7.45,22,0.0 +17819,14,23.25,8,0.0 +17819,73,15,45,0.0 +17819,33,2.5,8,0.0 +17819,1,18,29,0.0 +17819,13,6,13,0.0 +17819,62,49.3,19,0.0 +17819,49,20,13,0.0 +17819,68,12.5,36,0.0 +17819,67,14,20,0.0 +17819,28,45.6,43,0.0 +17819,4,22,50,0.0 +17819,63,43.9,49,0.0 +17819,70,15,4,0.0 +17819,38,263.5,39,0.0 +17819,74,10,47,0.0 +17819,15,15.5,41,0.0 +17819,45,9.5,45,0.0 +17819,12,38,26,0.0 +17819,72,34.8,41,0.0 +17819,59,55,46,0.0 +17819,3,10,15,0.0 +17819,31,12.5,35,0.0 +17819,19,9.2,47,0.0 +17820,1,18,22,0.0 +17820,74,10,12,0.0 +17820,13,6,6,0.0 +17820,65,21.05,32,0.0 +17820,34,14,19,0.0 +17820,66,17,50,0.0 +17820,58,13.25,28,0.0 +17820,36,19,46,0.0 +17820,21,10,14,0.0 +17820,25,14,26,0.0 +17820,52,7,9,0.0 +17820,55,24,42,0.0 +17820,3,10,6,0.0 +17820,28,45.6,18,0.0 +17820,71,21.5,36,0.0 +17820,26,31.23,28,0.0 +17820,24,4.5,40,0.0 +17820,46,12,13,0.0 +17820,8,40,34,0.0 +17820,20,81,5,0.0 +17820,72,34.8,30,0.0 +17820,32,32,30,0.0 +17820,54,7.45,5,0.0 +17820,49,20,17,0.0 +17820,56,38,39,0.0 +17820,6,25,14,0.0 +17820,37,26,29,0.0 +17820,38,263.5,19,0.0 +17820,77,13,2,0.0 +17820,27,43.9,42,0.0 +17820,7,30,18,0.0 +17820,18,62.5,30,0.0 +17820,29,123.79,42,0.0 +17820,16,17.45,17,0.0 +17820,45,9.5,30,0.0 +17820,60,34,24,0.0 +17821,49,20,34,0.0 +17821,60,34,42,0.0 +17821,12,38,2,0.0 +17821,37,26,17,0.0 +17821,48,12.75,44,0.0 +17821,29,123.79,26,0.0 +17821,16,17.45,40,0.0 +17821,76,18,24,0.0 +17821,33,2.5,33,0.0 +17821,71,21.5,29,0.0 +17821,9,97,11,0.0 +17821,21,10,14,0.0 +17821,18,62.5,17,0.0 +17821,59,55,49,0.0 +17821,51,53,49,0.0 +17821,54,7.45,46,0.0 +17821,8,40,15,0.0 +17821,64,33.25,29,0.0 +17821,43,46,1,0.0 +17821,74,10,43,0.0 +17821,27,43.9,45,0.0 +17821,41,9.65,28,0.0 +17821,36,19,42,0.0 +17821,13,6,3,0.0 +17821,53,32.8,27,0.0 +17821,73,15,29,0.0 +17821,47,9.5,29,0.0 +17821,4,22,45,0.0 +17821,10,31,37,0.0 +17821,19,9.2,50,0.0 +17821,68,12.5,25,0.0 +17821,65,21.05,12,0.0 +17821,62,49.3,9,0.0 +17821,22,21,18,0.0 +17821,1,18,42,0.0 +17821,57,19.5,48,0.0 +17821,77,13,29,0.0 +17821,34,14,33,0.0 +17821,63,43.9,2,0.0 +17821,3,10,3,0.0 +17821,26,31.23,1,0.0 +17821,35,18,24,0.0 +17821,38,263.5,41,0.0 +17822,56,38,47,0.0 +17822,2,19,9,0.0 +17822,41,9.65,36,0.0 +17822,11,21,47,0.0 +17822,8,40,37,0.0 +17822,27,43.9,36,0.0 +17822,29,123.79,33,0.0 +17822,23,9,37,0.0 +17822,66,17,26,0.0 +17822,40,18.4,16,0.0 +17822,38,263.5,32,0.0 +17822,30,25.89,1,0.0 +17822,32,32,28,0.0 +17822,34,14,28,0.0 +17822,74,10,11,0.0 +17822,58,13.25,24,0.0 +17822,20,81,4,0.0 +17822,7,30,46,0.0 +17822,31,12.5,25,0.0 +17822,73,15,32,0.0 +17822,33,2.5,6,0.0 +17822,36,19,44,0.0 +17823,26,31.23,45,0.0 +17823,20,81,16,0.0 +17823,12,38,46,0.0 +17823,45,9.5,36,0.0 +17823,23,9,22,0.0 +17823,22,21,22,0.0 +17823,51,53,50,0.0 +17823,67,14,29,0.0 +17823,70,15,3,0.0 +17823,43,46,16,0.0 +17823,11,21,3,0.0 +17823,37,26,42,0.0 +17823,10,31,35,0.0 +17823,76,18,12,0.0 +17823,46,12,10,0.0 +17823,24,4.5,34,0.0 +17823,2,19,27,0.0 +17823,18,62.5,50,0.0 +17823,61,28.5,32,0.0 +17823,38,263.5,16,0.0 +17823,54,7.45,12,0.0 +17823,13,6,21,0.0 +17823,77,13,38,0.0 +17823,27,43.9,19,0.0 +17823,65,21.05,37,0.0 +17823,41,9.65,3,0.0 +17823,17,39,4,0.0 +17824,3,10,35,0.0 +17824,24,4.5,49,0.0 +17824,19,9.2,28,0.0 +17824,50,16.25,16,0.0 +17824,64,33.25,8,0.0 +17824,16,17.45,5,0.0 +17825,6,25,9,0.0 +17825,48,12.75,36,0.0 +17825,3,10,30,0.0 +17825,56,38,29,0.0 +17825,16,17.45,27,0.0 +17825,28,45.6,6,0.0 +17825,55,24,37,0.0 +17825,61,28.5,40,0.0 +17825,62,49.3,40,0.0 +17825,60,34,47,0.0 +17825,8,40,44,0.0 +17825,24,4.5,49,0.0 +17825,32,32,10,0.0 +17825,5,21.35,19,0.0 +17825,25,14,50,0.0 +17825,13,6,45,0.0 +17825,33,2.5,38,0.0 +17825,35,18,5,0.0 +17825,1,18,3,0.0 +17825,37,26,30,0.0 +17825,34,14,12,0.0 +17825,76,18,27,0.0 +17825,17,39,36,0.0 +17825,19,9.2,41,0.0 +17825,14,23.25,36,0.0 +17825,22,21,43,0.0 +17825,49,20,6,0.0 +17825,26,31.23,12,0.0 +17825,41,9.65,48,0.0 +17825,2,19,22,0.0 +17825,47,9.5,25,0.0 +17825,77,13,26,0.0 +17825,73,15,22,0.0 +17825,30,25.89,1,0.0 +17825,9,97,36,0.0 +17825,12,38,42,0.0 +17825,74,10,49,0.0 +17825,72,34.8,19,0.0 +17825,38,263.5,3,0.0 +17825,68,12.5,47,0.0 +17825,50,16.25,44,0.0 +17825,15,15.5,30,0.0 +17825,11,21,34,0.0 +17825,29,123.79,21,0.0 +17825,10,31,14,0.0 +17825,21,10,21,0.0 +17825,57,19.5,14,0.0 +17825,64,33.25,13,0.0 +17825,46,12,31,0.0 +17825,23,9,32,0.0 +17826,31,12.5,26,0.0 +17826,42,14,13,0.0 +17826,60,34,14,0.0 +17826,68,12.5,22,0.0 +17826,58,13.25,3,0.0 +17826,59,55,43,0.0 +17826,5,21.35,18,0.0 +17826,21,10,11,0.0 +17826,10,31,11,0.0 +17826,3,10,6,0.0 +17826,7,30,22,0.0 +17826,74,10,6,0.0 +17826,38,263.5,20,0.0 +17826,9,97,18,0.0 +17826,28,45.6,13,0.0 +17826,67,14,20,0.0 +17826,15,15.5,19,0.0 +17826,18,62.5,41,0.0 +17826,56,38,22,0.0 +17826,63,43.9,20,0.0 +17826,2,19,17,0.0 +17826,57,19.5,27,0.0 +17826,36,19,15,0.0 +17826,24,4.5,19,0.0 +17826,51,53,29,0.0 +17826,6,25,10,0.0 +17826,32,32,2,0.0 +17826,25,14,35,0.0 +17826,45,9.5,42,0.0 +17826,62,49.3,9,0.0 +17826,49,20,45,0.0 +17826,37,26,44,0.0 +17826,52,7,27,0.0 +17826,19,9.2,6,0.0 +17826,75,7.75,33,0.0 +17826,23,9,23,0.0 +17826,66,17,25,0.0 +17826,14,23.25,20,0.0 +17826,35,18,36,0.0 +17826,17,39,39,0.0 +17826,76,18,48,0.0 +17826,12,38,10,0.0 +17826,71,21.5,17,0.0 +17826,73,15,15,0.0 +17826,13,6,2,0.0 +17826,64,33.25,36,0.0 +17826,16,17.45,31,0.0 +17826,55,24,33,0.0 +17826,53,32.8,47,0.0 +17826,30,25.89,1,0.0 +17826,29,123.79,7,0.0 +17826,47,9.5,18,0.0 +17826,39,18,33,0.0 +17826,26,31.23,35,0.0 +17826,44,19.45,27,0.0 +17826,77,13,49,0.0 +17826,22,21,20,0.0 +17826,43,46,13,0.0 +17826,4,22,11,0.0 +17826,61,28.5,34,0.0 +17826,54,7.45,34,0.0 +17826,65,21.05,33,0.0 +17826,33,2.5,48,0.0 +17826,27,43.9,27,0.0 +17826,72,34.8,29,0.0 +17826,41,9.65,16,0.0 +17826,40,18.4,28,0.0 +17826,70,15,45,0.0 +17826,20,81,33,0.0 +17826,34,14,4,0.0 +17826,46,12,49,0.0 +17826,11,21,10,0.0 +17826,50,16.25,41,0.0 +17826,48,12.75,42,0.0 +17826,1,18,18,0.0 +17826,8,40,20,0.0 +17826,69,36,33,0.0 +17827,16,17.45,4,0.0 +17827,14,23.25,45,0.0 +17827,22,21,17,0.0 +17827,13,6,20,0.0 +17827,40,18.4,33,0.0 +17827,76,18,30,0.0 +17827,7,30,37,0.0 +17827,49,20,19,0.0 +17827,38,263.5,17,0.0 +17827,25,14,30,0.0 +17827,18,62.5,1,0.0 +17827,65,21.05,6,0.0 +17827,10,31,48,0.0 +17827,41,9.65,43,0.0 +17827,29,123.79,44,0.0 +17827,19,9.2,22,0.0 +17827,35,18,11,0.0 +17827,64,33.25,11,0.0 +17827,68,12.5,8,0.0 +17827,54,7.45,41,0.0 +17827,5,21.35,4,0.0 +17827,75,7.75,4,0.0 +17827,58,13.25,33,0.0 +17827,12,38,28,0.0 +17827,46,12,22,0.0 +17827,59,55,19,0.0 +17827,11,21,19,0.0 +17827,42,14,17,0.0 +17827,61,28.5,25,0.0 +17827,39,18,29,0.0 +17827,55,24,46,0.0 +17827,52,7,47,0.0 +17827,51,53,46,0.0 +17827,1,18,15,0.0 +17827,70,15,29,0.0 +17827,44,19.45,11,0.0 +17827,60,34,17,0.0 +17827,31,12.5,18,0.0 +17827,56,38,4,0.0 +17827,34,14,19,0.0 +17827,45,9.5,22,0.0 +17827,72,34.8,32,0.0 +17827,26,31.23,26,0.0 +17827,50,16.25,41,0.0 +17827,23,9,3,0.0 +17827,27,43.9,20,0.0 +17827,4,22,36,0.0 +17827,24,4.5,2,0.0 +17827,47,9.5,19,0.0 +17828,14,23.25,50,0.0 +17828,16,17.45,17,0.0 +17829,54,7.45,27,0.0 +17829,34,14,15,0.0 +17829,76,18,46,0.0 +17829,57,19.5,18,0.0 +17829,50,16.25,41,0.0 +17829,73,15,42,0.0 +17829,33,2.5,10,0.0 +17829,16,17.45,43,0.0 +17829,41,9.65,31,0.0 +17829,46,12,43,0.0 +17829,30,25.89,25,0.0 +17829,64,33.25,34,0.0 +17829,61,28.5,29,0.0 +17829,42,14,16,0.0 +17829,31,12.5,1,0.0 +17829,53,32.8,42,0.0 +17829,21,10,10,0.0 +17829,69,36,38,0.0 +17829,18,62.5,46,0.0 +17829,51,53,11,0.0 +17829,14,23.25,17,0.0 +17829,58,13.25,38,0.0 +17829,71,21.5,40,0.0 +17829,62,49.3,38,0.0 +17829,1,18,2,0.0 +17829,22,21,43,0.0 +17829,4,22,14,0.0 +17829,74,10,18,0.0 +17829,44,19.45,27,0.0 +17829,15,15.5,34,0.0 +17829,36,19,16,0.0 +17829,40,18.4,1,0.0 +17829,23,9,27,0.0 +17829,45,9.5,33,0.0 +17829,48,12.75,35,0.0 +17829,20,81,21,0.0 +17829,65,21.05,12,0.0 +17829,19,9.2,29,0.0 +17829,29,123.79,46,0.0 +17829,55,24,12,0.0 +17829,28,45.6,2,0.0 +17829,26,31.23,14,0.0 +17829,67,14,32,0.0 +17829,70,15,6,0.0 +17829,11,21,27,0.0 +17829,43,46,26,0.0 +17829,35,18,3,0.0 +17829,37,26,7,0.0 +17829,10,31,46,0.0 +17829,56,38,46,0.0 +17829,13,6,37,0.0 +17829,63,43.9,10,0.0 +17829,5,21.35,27,0.0 +17829,8,40,38,0.0 +17829,59,55,2,0.0 +17829,75,7.75,11,0.0 +17829,49,20,8,0.0 +17829,47,9.5,33,0.0 +17829,38,263.5,19,0.0 +17829,17,39,4,0.0 +17829,77,13,1,0.0 +17829,7,30,21,0.0 +17829,68,12.5,36,0.0 +17829,72,34.8,16,0.0 +17829,6,25,37,0.0 +17829,66,17,28,0.0 +17829,60,34,38,0.0 +17829,9,97,30,0.0 +17829,32,32,48,0.0 +17829,24,4.5,11,0.0 +17830,58,13.25,7,0.0 +17830,66,17,46,0.0 +17830,4,22,36,0.0 +17830,49,20,19,0.0 +17830,34,14,32,0.0 +17830,14,23.25,43,0.0 +17830,18,62.5,1,0.0 +17830,60,34,46,0.0 +17830,13,6,11,0.0 +17830,50,16.25,18,0.0 +17830,63,43.9,33,0.0 +17830,25,14,28,0.0 +17830,19,9.2,10,0.0 +17830,8,40,25,0.0 +17830,10,31,38,0.0 +17830,72,34.8,9,0.0 +17831,9,97,33,0.0 +17831,22,21,45,0.0 +17831,67,14,27,0.0 +17831,57,19.5,42,0.0 +17831,3,10,49,0.0 +17831,65,21.05,5,0.0 +17831,73,15,45,0.0 +17831,39,18,37,0.0 +17831,54,7.45,35,0.0 +17831,11,21,39,0.0 +17831,15,15.5,26,0.0 +17831,61,28.5,48,0.0 +17831,2,19,37,0.0 +17831,16,17.45,13,0.0 +17831,4,22,2,0.0 +17831,77,13,2,0.0 +17831,20,81,35,0.0 +17831,48,12.75,47,0.0 +17831,44,19.45,15,0.0 +17832,75,7.75,49,0.0 +17832,36,19,6,0.0 +17832,42,14,14,0.0 +17832,65,21.05,26,0.0 +17832,77,13,34,0.0 +17832,11,21,44,0.0 +17832,50,16.25,37,0.0 +17832,32,32,19,0.0 +17832,47,9.5,22,0.0 +17832,55,24,16,0.0 +17832,61,28.5,37,0.0 +17832,64,33.25,46,0.0 +17832,51,53,14,0.0 +17832,44,19.45,11,0.0 +17832,30,25.89,49,0.0 +17832,43,46,23,0.0 +17832,15,15.5,12,0.0 +17832,7,30,36,0.0 +17832,23,9,50,0.0 +17832,37,26,34,0.0 +17832,58,13.25,11,0.0 +17832,40,18.4,14,0.0 +17832,46,12,42,0.0 +17832,9,97,31,0.0 +17832,13,6,24,0.0 +17832,8,40,48,0.0 +17832,31,12.5,49,0.0 +17832,21,10,7,0.0 +17832,68,12.5,26,0.0 +17832,28,45.6,24,0.0 +17832,3,10,47,0.0 +17832,62,49.3,3,0.0 +17832,16,17.45,48,0.0 +17832,67,14,29,0.0 +17832,56,38,25,0.0 +17832,39,18,18,0.0 +17832,14,23.25,18,0.0 +17832,49,20,10,0.0 +17832,45,9.5,28,0.0 +17832,53,32.8,22,0.0 +17832,41,9.65,8,0.0 +17832,26,31.23,9,0.0 +17832,4,22,11,0.0 +17832,18,62.5,33,0.0 +17832,19,9.2,32,0.0 +17832,17,39,11,0.0 +17832,59,55,43,0.0 +17832,1,18,5,0.0 +17832,12,38,5,0.0 +17832,74,10,41,0.0 +17832,57,19.5,5,0.0 +17832,10,31,41,0.0 +17832,20,81,10,0.0 +17832,27,43.9,9,0.0 +17832,25,14,33,0.0 +17832,33,2.5,12,0.0 +17832,72,34.8,14,0.0 +17832,2,19,40,0.0 +17832,5,21.35,49,0.0 +17832,34,14,14,0.0 +17832,60,34,45,0.0 +17832,73,15,11,0.0 +17832,63,43.9,6,0.0 +17832,22,21,47,0.0 +17832,66,17,39,0.0 +17832,70,15,6,0.0 +17832,6,25,25,0.0 +17832,54,7.45,19,0.0 +17832,38,263.5,17,0.0 +17833,46,12,2,0.0 +17833,9,97,13,0.0 +17833,51,53,11,0.0 +17833,76,18,43,0.0 +17833,4,22,32,0.0 +17833,27,43.9,29,0.0 +17833,67,14,44,0.0 +17833,54,7.45,23,0.0 +17833,5,21.35,11,0.0 +17833,19,9.2,13,0.0 +17833,49,20,6,0.0 +17833,71,21.5,41,0.0 +17833,72,34.8,19,0.0 +17833,3,10,8,0.0 +17833,37,26,20,0.0 +17833,28,45.6,49,0.0 +17833,16,17.45,5,0.0 +17833,68,12.5,31,0.0 +17833,10,31,13,0.0 +17833,11,21,37,0.0 +17833,45,9.5,2,0.0 +17833,36,19,34,0.0 +17833,43,46,37,0.0 +17833,35,18,40,0.0 +17833,20,81,47,0.0 +17833,38,263.5,39,0.0 +17833,65,21.05,10,0.0 +17833,14,23.25,42,0.0 +17833,15,15.5,23,0.0 +17833,25,14,5,0.0 +17833,75,7.75,38,0.0 +17833,55,24,41,0.0 +17833,24,4.5,8,0.0 +17833,60,34,43,0.0 +17833,7,30,5,0.0 +17833,59,55,17,0.0 +17833,53,32.8,37,0.0 +17833,70,15,16,0.0 +17833,30,25.89,41,0.0 +17833,58,13.25,23,0.0 +17833,69,36,28,0.0 +17833,2,19,18,0.0 +17833,64,33.25,45,0.0 +17833,12,38,47,0.0 +17833,23,9,44,0.0 +17833,31,12.5,30,0.0 +17833,52,7,20,0.0 +17833,44,19.45,3,0.0 +17833,62,49.3,41,0.0 +17833,41,9.65,17,0.0 +17833,61,28.5,46,0.0 +17833,39,18,41,0.0 +17833,13,6,44,0.0 +17833,66,17,21,0.0 +17833,56,38,34,0.0 +17833,8,40,33,0.0 +17833,74,10,18,0.0 +17833,18,62.5,21,0.0 +17833,50,16.25,10,0.0 +17833,26,31.23,30,0.0 +17833,1,18,45,0.0 +17833,32,32,50,0.0 +17833,77,13,20,0.0 +17833,57,19.5,3,0.0 +17833,48,12.75,2,0.0 +17833,63,43.9,5,0.0 +17834,50,16.25,3,0.0 +17834,73,15,20,0.0 +17834,2,19,24,0.0 +17834,29,123.79,20,0.0 +17834,19,9.2,44,0.0 +17834,63,43.9,49,0.0 +17834,33,2.5,23,0.0 +17834,4,22,36,0.0 +17834,74,10,30,0.0 +17834,54,7.45,13,0.0 +17834,45,9.5,3,0.0 +17834,13,6,28,0.0 +17834,69,36,38,0.0 +17834,26,31.23,7,0.0 +17834,55,24,38,0.0 +17834,51,53,41,0.0 +17834,15,15.5,26,0.0 +17834,41,9.65,37,0.0 +17834,7,30,49,0.0 +17834,75,7.75,35,0.0 +17834,53,32.8,48,0.0 +17834,32,32,40,0.0 +17834,12,38,27,0.0 +17834,76,18,23,0.0 +17834,27,43.9,1,0.0 +17834,62,49.3,18,0.0 +17834,43,46,16,0.0 +17835,10,31,33,0.0 +17835,9,97,39,0.0 +17835,35,18,50,0.0 +17835,42,14,14,0.0 +17836,36,19,16,0.0 +17836,57,19.5,15,0.0 +17836,71,21.5,30,0.0 +17837,10,31,45,0.0 +17837,34,14,23,0.0 +17837,42,14,11,0.0 +17837,61,28.5,2,0.0 +17837,19,9.2,12,0.0 +17837,14,23.25,19,0.0 +17838,51,53,15,0.0 +17838,17,39,41,0.0 +17838,38,263.5,41,0.0 +17838,67,14,7,0.0 +17838,41,9.65,13,0.0 +17838,13,6,33,0.0 +17838,63,43.9,14,0.0 +17838,66,17,35,0.0 +17838,57,19.5,46,0.0 +17838,61,28.5,14,0.0 +17838,23,9,26,0.0 +17838,27,43.9,27,0.0 +17838,72,34.8,20,0.0 +17838,70,15,17,0.0 +17838,47,9.5,18,0.0 +17838,28,45.6,48,0.0 +17838,74,10,2,0.0 +17838,54,7.45,12,0.0 +17838,22,21,2,0.0 +17838,49,20,5,0.0 +17838,73,15,8,0.0 +17838,35,18,44,0.0 +17838,14,23.25,31,0.0 +17838,37,26,13,0.0 +17838,48,12.75,33,0.0 +17838,75,7.75,7,0.0 +17838,71,21.5,7,0.0 +17838,40,18.4,32,0.0 +17838,60,34,21,0.0 +17838,50,16.25,33,0.0 +17838,55,24,48,0.0 +17838,44,19.45,46,0.0 +17838,52,7,30,0.0 +17838,64,33.25,39,0.0 +17838,31,12.5,27,0.0 +17838,29,123.79,7,0.0 +17838,5,21.35,6,0.0 +17838,59,55,16,0.0 +17838,12,38,15,0.0 +17838,2,19,10,0.0 +17838,58,13.25,4,0.0 +17838,36,19,1,0.0 +17838,42,14,32,0.0 +17838,43,46,36,0.0 +17838,56,38,25,0.0 +17838,62,49.3,32,0.0 +17838,30,25.89,23,0.0 +17838,4,22,28,0.0 +17838,10,31,23,0.0 +17839,42,14,46,0.0 +17839,59,55,31,0.0 +17839,43,46,1,0.0 +17839,10,31,35,0.0 +17839,55,24,23,0.0 +17839,54,7.45,7,0.0 +17839,7,30,27,0.0 +17839,13,6,21,0.0 +17839,53,32.8,45,0.0 +17839,3,10,35,0.0 +17839,8,40,42,0.0 +17839,11,21,45,0.0 +17839,6,25,36,0.0 +17839,41,9.65,34,0.0 +17839,75,7.75,1,0.0 +17839,57,19.5,47,0.0 +17839,77,13,10,0.0 +17839,31,12.5,20,0.0 +17839,48,12.75,3,0.0 +17839,71,21.5,19,0.0 +17839,1,18,10,0.0 +17839,47,9.5,50,0.0 +17839,36,19,17,0.0 +17839,65,21.05,6,0.0 +17839,72,34.8,11,0.0 +17839,16,17.45,47,0.0 +17839,12,38,26,0.0 +17839,76,18,13,0.0 +17839,29,123.79,5,0.0 +17839,19,9.2,32,0.0 +17839,4,22,34,0.0 +17839,35,18,9,0.0 +17839,74,10,15,0.0 +17839,49,20,13,0.0 +17839,5,21.35,14,0.0 +17839,67,14,13,0.0 +17839,9,97,16,0.0 +17839,32,32,39,0.0 +17839,24,4.5,2,0.0 +17839,66,17,48,0.0 +17839,14,23.25,25,0.0 +17839,68,12.5,9,0.0 +17839,73,15,48,0.0 +17839,69,36,20,0.0 +17839,50,16.25,7,0.0 +17839,52,7,38,0.0 +17839,17,39,42,0.0 +17839,23,9,1,0.0 +17839,70,15,16,0.0 +17839,40,18.4,3,0.0 +17839,2,19,43,0.0 +17839,18,62.5,48,0.0 +17839,34,14,12,0.0 +17839,22,21,11,0.0 +17839,38,263.5,12,0.0 +17839,15,15.5,4,0.0 +17839,51,53,14,0.0 +17840,40,18.4,44,0.0 +17840,46,12,50,0.0 +17840,22,21,26,0.0 +17840,45,9.5,31,0.0 +17840,1,18,8,0.0 +17840,50,16.25,43,0.0 +17840,59,55,6,0.0 +17840,38,263.5,20,0.0 +17840,58,13.25,4,0.0 +17840,44,19.45,17,0.0 +17840,12,38,43,0.0 +17840,77,13,18,0.0 +17840,68,12.5,16,0.0 +17840,52,7,18,0.0 +17840,2,19,6,0.0 +17840,74,10,34,0.0 +17840,69,36,12,0.0 +17840,25,14,4,0.0 +17840,65,21.05,18,0.0 +17840,73,15,36,0.0 +17840,55,24,4,0.0 +17840,75,7.75,13,0.0 +17840,4,22,38,0.0 +17840,34,14,2,0.0 +17840,23,9,12,0.0 +17840,61,28.5,34,0.0 +17840,32,32,2,0.0 +17840,29,123.79,8,0.0 +17840,15,15.5,6,0.0 +17840,8,40,12,0.0 +17840,26,31.23,42,0.0 +17840,31,12.5,35,0.0 +17840,35,18,19,0.0 +17840,67,14,19,0.0 +17840,37,26,21,0.0 +17840,43,46,15,0.0 +17840,11,21,7,0.0 +17840,14,23.25,22,0.0 +17840,49,20,23,0.0 +17840,64,33.25,40,0.0 +17840,28,45.6,44,0.0 +17840,19,9.2,1,0.0 +17840,9,97,38,0.0 +17841,39,18,20,0.0 +17841,14,23.25,4,0.0 +17841,35,18,37,0.0 +17841,31,12.5,28,0.0 +17841,26,31.23,41,0.0 +17841,52,7,46,0.0 +17841,56,38,39,0.0 +17841,72,34.8,19,0.0 +17841,63,43.9,18,0.0 +17841,8,40,36,0.0 +17841,62,49.3,40,0.0 +17841,57,19.5,43,0.0 +17841,49,20,17,0.0 +17841,73,15,2,0.0 +17841,76,18,13,0.0 +17841,37,26,5,0.0 +17841,11,21,47,0.0 +17841,60,34,18,0.0 +17841,58,13.25,14,0.0 +17841,55,24,30,0.0 +17841,24,4.5,14,0.0 +17841,66,17,48,0.0 +17841,13,6,34,0.0 +17841,43,46,28,0.0 +17841,42,14,23,0.0 +17841,10,31,22,0.0 +17841,19,9.2,26,0.0 +17841,68,12.5,41,0.0 +17841,15,15.5,42,0.0 +17841,53,32.8,17,0.0 +17841,50,16.25,15,0.0 +17841,36,19,23,0.0 +17841,18,62.5,30,0.0 +17841,33,2.5,13,0.0 +17841,29,123.79,4,0.0 +17841,23,9,50,0.0 +17841,38,263.5,42,0.0 +17841,61,28.5,24,0.0 +17841,44,19.45,29,0.0 +17841,71,21.5,47,0.0 +17841,67,14,49,0.0 +17841,9,97,35,0.0 +17841,27,43.9,18,0.0 +17841,3,10,19,0.0 +17841,25,14,33,0.0 +17841,41,9.65,34,0.0 +17841,77,13,18,0.0 +17841,16,17.45,14,0.0 +17841,69,36,45,0.0 +17841,1,18,25,0.0 +17841,2,19,2,0.0 +17841,30,25.89,5,0.0 +17841,7,30,8,0.0 +17841,74,10,5,0.0 +17841,40,18.4,38,0.0 +17842,42,14,11,0.0 +17842,16,17.45,23,0.0 +17842,57,19.5,35,0.0 +17842,33,2.5,48,0.0 +17842,5,21.35,23,0.0 +17842,34,14,49,0.0 +17842,3,10,36,0.0 +17842,31,12.5,32,0.0 +17842,71,21.5,35,0.0 +17842,53,32.8,40,0.0 +17842,51,53,27,0.0 +17842,40,18.4,24,0.0 +17842,11,21,35,0.0 +17842,65,21.05,41,0.0 +17842,21,10,18,0.0 +17842,60,34,46,0.0 +17842,47,9.5,23,0.0 +17842,12,38,5,0.0 +17842,15,15.5,49,0.0 +17842,55,24,19,0.0 +17842,52,7,23,0.0 +17842,46,12,14,0.0 +17842,67,14,10,0.0 +17842,59,55,45,0.0 +17842,66,17,21,0.0 +17842,64,33.25,1,0.0 +17842,38,263.5,42,0.0 +17842,37,26,38,0.0 +17842,19,9.2,12,0.0 +17842,6,25,37,0.0 +17842,35,18,5,0.0 +17842,4,22,34,0.0 +17842,72,34.8,2,0.0 +17842,45,9.5,16,0.0 +17842,73,15,30,0.0 +17842,63,43.9,18,0.0 +17842,7,30,7,0.0 +17842,76,18,4,0.0 +17842,39,18,15,0.0 +17842,49,20,41,0.0 +17842,32,32,50,0.0 +17842,62,49.3,31,0.0 +17842,20,81,9,0.0 +17842,36,19,1,0.0 +17842,58,13.25,44,0.0 +17842,30,25.89,21,0.0 +17842,2,19,7,0.0 +17842,69,36,18,0.0 +17842,43,46,43,0.0 +17842,28,45.6,33,0.0 +17842,14,23.25,40,0.0 +17842,18,62.5,20,0.0 +17842,44,19.45,5,0.0 +17843,57,19.5,49,0.0 +17843,24,4.5,26,0.0 +17843,9,97,10,0.0 +17843,4,22,1,0.0 +17843,35,18,4,0.0 +17843,33,2.5,2,0.0 +17843,58,13.25,22,0.0 +17843,37,26,25,0.0 +17843,48,12.75,22,0.0 +17843,17,39,25,0.0 +17843,38,263.5,11,0.0 +17843,25,14,10,0.0 +17843,52,7,45,0.0 +17843,45,9.5,17,0.0 +17843,34,14,27,0.0 +17843,73,15,17,0.0 +17843,31,12.5,50,0.0 +17843,32,32,23,0.0 +17843,12,38,35,0.0 +17843,36,19,48,0.0 +17843,51,53,48,0.0 +17843,40,18.4,21,0.0 +17843,75,7.75,24,0.0 +17843,7,30,43,0.0 +17843,62,49.3,19,0.0 +17843,71,21.5,35,0.0 +17843,76,18,7,0.0 +17843,23,9,47,0.0 +17843,3,10,36,0.0 +17843,14,23.25,37,0.0 +17843,11,21,37,0.0 +17843,10,31,13,0.0 +17843,16,17.45,19,0.0 +17843,47,9.5,7,0.0 +17843,46,12,13,0.0 +17843,44,19.45,32,0.0 +17843,60,34,28,0.0 +17843,1,18,16,0.0 +17843,20,81,21,0.0 +17844,56,38,45,0.0 +17844,57,19.5,41,0.0 +17844,66,17,7,0.0 +17844,54,7.45,31,0.0 +17844,49,20,47,0.0 +17844,58,13.25,12,0.0 +17844,38,263.5,20,0.0 +17844,60,34,21,0.0 +17844,14,23.25,29,0.0 +17844,55,24,5,0.0 +17844,7,30,25,0.0 +17844,65,21.05,10,0.0 +17844,41,9.65,8,0.0 +17844,50,16.25,49,0.0 +17844,17,39,11,0.0 +17844,77,13,4,0.0 +17844,71,21.5,46,0.0 +17844,25,14,21,0.0 +17844,8,40,27,0.0 +17844,59,55,49,0.0 +17844,44,19.45,33,0.0 +17844,16,17.45,11,0.0 +17844,61,28.5,27,0.0 +17844,46,12,5,0.0 +17844,68,12.5,8,0.0 +17845,50,16.25,24,0.0 +17845,40,18.4,10,0.0 +17845,59,55,39,0.0 +17845,12,38,40,0.0 +17845,57,19.5,20,0.0 +17845,42,14,23,0.0 +17845,15,15.5,12,0.0 +17845,58,13.25,10,0.0 +17845,35,18,39,0.0 +17845,56,38,1,0.0 +17845,19,9.2,36,0.0 +17845,4,22,12,0.0 +17845,71,21.5,15,0.0 +17845,61,28.5,12,0.0 +17845,7,30,9,0.0 +17845,21,10,42,0.0 +17845,63,43.9,34,0.0 +17845,51,53,3,0.0 +17845,38,263.5,40,0.0 +17845,25,14,48,0.0 +17845,73,15,27,0.0 +17845,41,9.65,45,0.0 +17845,52,7,46,0.0 +17845,68,12.5,29,0.0 +17845,67,14,50,0.0 +17845,11,21,22,0.0 +17845,66,17,9,0.0 +17846,35,18,48,0.0 +17846,63,43.9,30,0.0 +17846,19,9.2,23,0.0 +17846,57,19.5,38,0.0 +17846,41,9.65,14,0.0 +17846,9,97,23,0.0 +17846,76,18,33,0.0 +17846,67,14,4,0.0 +17846,40,18.4,44,0.0 +17846,36,19,35,0.0 +17846,4,22,34,0.0 +17846,23,9,8,0.0 +17846,55,24,10,0.0 +17846,73,15,2,0.0 +17846,50,16.25,20,0.0 +17846,66,17,8,0.0 +17846,49,20,24,0.0 +17846,29,123.79,33,0.0 +17846,17,39,7,0.0 +17846,18,62.5,43,0.0 +17846,13,6,5,0.0 +17846,15,15.5,20,0.0 +17846,75,7.75,12,0.0 +17846,56,38,15,0.0 +17846,46,12,4,0.0 +17846,8,40,31,0.0 +17846,3,10,6,0.0 +17846,42,14,36,0.0 +17846,7,30,27,0.0 +17846,33,2.5,1,0.0 +17846,68,12.5,1,0.0 +17846,1,18,3,0.0 +17846,45,9.5,46,0.0 +17846,26,31.23,28,0.0 +17846,27,43.9,45,0.0 +17846,70,15,50,0.0 +17846,10,31,29,0.0 +17846,44,19.45,34,0.0 +17846,48,12.75,48,0.0 +17846,22,21,5,0.0 +17846,52,7,27,0.0 +17846,51,53,1,0.0 +17846,59,55,2,0.0 +17846,72,34.8,1,0.0 +17846,62,49.3,41,0.0 +17846,64,33.25,12,0.0 +17846,30,25.89,9,0.0 +17846,69,36,40,0.0 +17846,21,10,42,0.0 +17846,24,4.5,44,0.0 +17846,53,32.8,25,0.0 +17846,34,14,19,0.0 +17846,60,34,49,0.0 +17846,20,81,15,0.0 +17846,6,25,14,0.0 +17846,39,18,39,0.0 +17846,71,21.5,32,0.0 +17846,11,21,31,0.0 +17846,32,32,12,0.0 +17846,74,10,31,0.0 +17846,61,28.5,26,0.0 +17846,77,13,44,0.0 +17846,12,38,21,0.0 +17846,16,17.45,30,0.0 +17846,58,13.25,2,0.0 +17846,43,46,29,0.0 +17846,54,7.45,18,0.0 +17846,38,263.5,39,0.0 +17847,52,7,26,0.0 +17847,23,9,26,0.0 +17847,34,14,37,0.0 +17847,54,7.45,7,0.0 +17847,67,14,11,0.0 +17847,58,13.25,25,0.0 +17847,39,18,45,0.0 +17847,20,81,50,0.0 +17847,42,14,48,0.0 +17847,15,15.5,5,0.0 +17847,73,15,22,0.0 +17847,74,10,11,0.0 +17847,56,38,44,0.0 +17847,76,18,41,0.0 +17847,5,21.35,24,0.0 +17847,46,12,9,0.0 +17847,31,12.5,46,0.0 +17847,18,62.5,3,0.0 +17847,36,19,21,0.0 +17847,22,21,38,0.0 +17847,19,9.2,39,0.0 +17847,10,31,36,0.0 +17847,11,21,6,0.0 +17847,51,53,13,0.0 +17847,55,24,43,0.0 +17847,4,22,32,0.0 +17847,7,30,20,0.0 +17847,64,33.25,1,0.0 +17847,60,34,9,0.0 +17847,65,21.05,14,0.0 +17847,17,39,29,0.0 +17847,12,38,41,0.0 +17847,69,36,19,0.0 +17847,72,34.8,28,0.0 +17847,62,49.3,34,0.0 +17847,32,32,41,0.0 +17847,1,18,26,0.0 +17847,50,16.25,4,0.0 +17847,59,55,43,0.0 +17847,29,123.79,16,0.0 +17847,13,6,19,0.0 +17847,45,9.5,31,0.0 +17847,16,17.45,43,0.0 +17847,28,45.6,43,0.0 +17847,21,10,21,0.0 +17847,47,9.5,2,0.0 +17847,25,14,45,0.0 +17848,49,20,13,0.0 +17848,62,49.3,30,0.0 +17848,47,9.5,30,0.0 +17848,12,38,4,0.0 +17848,55,24,30,0.0 +17848,4,22,8,0.0 +17848,42,14,19,0.0 +17848,63,43.9,12,0.0 +17848,20,81,31,0.0 +17848,27,43.9,47,0.0 +17848,48,12.75,10,0.0 +17848,11,21,17,0.0 +17848,64,33.25,50,0.0 +17848,53,32.8,34,0.0 +17848,61,28.5,37,0.0 +17848,34,14,34,0.0 +17848,29,123.79,7,0.0 +17848,66,17,2,0.0 +17848,18,62.5,45,0.0 +17848,23,9,20,0.0 +17848,26,31.23,37,0.0 +17848,38,263.5,2,0.0 +17848,56,38,20,0.0 +17848,60,34,49,0.0 +17848,68,12.5,19,0.0 +17848,21,10,41,0.0 +17848,36,19,27,0.0 +17848,13,6,43,0.0 +17848,7,30,16,0.0 +17848,32,32,8,0.0 +17848,17,39,8,0.0 +17848,19,9.2,17,0.0 +17848,67,14,17,0.0 +17848,57,19.5,48,0.0 +17848,14,23.25,22,0.0 +17848,77,13,29,0.0 +17848,54,7.45,24,0.0 +17848,41,9.65,49,0.0 +17848,74,10,37,0.0 +17848,1,18,40,0.0 +17848,8,40,6,0.0 +17848,50,16.25,22,0.0 +17848,24,4.5,18,0.0 +17848,31,12.5,42,0.0 +17848,39,18,15,0.0 +17848,46,12,7,0.0 +17848,75,7.75,47,0.0 +17848,10,31,2,0.0 +17848,5,21.35,24,0.0 +17848,2,19,45,0.0 +17848,16,17.45,13,0.0 +17848,35,18,22,0.0 +17848,15,15.5,4,0.0 +17848,58,13.25,47,0.0 +17848,69,36,41,0.0 +17848,51,53,8,0.0 +17848,44,19.45,10,0.0 +17848,40,18.4,32,0.0 +17849,59,55,16,0.0 +17849,28,45.6,24,0.0 +17849,58,13.25,23,0.0 +17849,12,38,4,0.0 +17849,18,62.5,16,0.0 +17849,20,81,9,0.0 +17849,6,25,23,0.0 +17849,55,24,5,0.0 +17849,54,7.45,10,0.0 +17849,10,31,3,0.0 +17849,68,12.5,18,0.0 +17849,64,33.25,41,0.0 +17849,29,123.79,1,0.0 +17849,37,26,48,0.0 +17849,50,16.25,43,0.0 +17849,1,18,44,0.0 +17849,74,10,34,0.0 +17849,19,9.2,5,0.0 +17849,67,14,31,0.0 +17849,48,12.75,47,0.0 +17849,16,17.45,38,0.0 +17849,46,12,26,0.0 +17849,5,21.35,10,0.0 +17849,47,9.5,5,0.0 +17849,44,19.45,9,0.0 +17850,56,38,18,0.0 +17850,60,34,12,0.0 +17850,47,9.5,40,0.0 +17850,38,263.5,11,0.0 +17850,23,9,34,0.0 +17850,25,14,4,0.0 +17850,37,26,15,0.0 +17850,70,15,48,0.0 +17850,76,18,3,0.0 +17850,64,33.25,42,0.0 +17850,8,40,47,0.0 +17850,30,25.89,27,0.0 +17850,63,43.9,5,0.0 +17850,28,45.6,4,0.0 +17850,33,2.5,5,0.0 +17850,27,43.9,8,0.0 +17850,72,34.8,2,0.0 +17850,71,21.5,7,0.0 +17850,9,97,16,0.0 +17850,77,13,14,0.0 +17850,46,12,35,0.0 +17850,10,31,18,0.0 +17850,31,12.5,15,0.0 +17850,35,18,41,0.0 +17850,12,38,23,0.0 +17851,9,97,30,0.0 +17851,18,62.5,4,0.0 +17851,31,12.5,31,0.0 +17851,77,13,7,0.0 +17851,48,12.75,23,0.0 +17851,61,28.5,3,0.0 +17851,76,18,40,0.0 +17851,42,14,34,0.0 +17851,16,17.45,44,0.0 +17851,36,19,4,0.0 +17851,4,22,1,0.0 +17851,11,21,30,0.0 +17851,74,10,13,0.0 +17851,69,36,1,0.0 +17851,24,4.5,33,0.0 +17851,5,21.35,10,0.0 +17851,15,15.5,39,0.0 +17851,44,19.45,48,0.0 +17851,67,14,39,0.0 +17851,6,25,19,0.0 +17851,26,31.23,6,0.0 +17851,63,43.9,3,0.0 +17851,60,34,23,0.0 +17851,50,16.25,37,0.0 +17851,65,21.05,14,0.0 +17851,73,15,50,0.0 +17851,40,18.4,28,0.0 +17851,45,9.5,19,0.0 +17851,39,18,19,0.0 +17851,46,12,8,0.0 +17851,55,24,19,0.0 +17851,12,38,45,0.0 +17851,51,53,21,0.0 +17851,64,33.25,11,0.0 +17851,47,9.5,9,0.0 +17851,8,40,15,0.0 +17851,29,123.79,34,0.0 +17851,54,7.45,31,0.0 +17851,59,55,45,0.0 +17851,7,30,41,0.0 +17851,37,26,17,0.0 +17851,66,17,8,0.0 +17851,1,18,22,0.0 +17851,21,10,8,0.0 +17851,13,6,3,0.0 +17851,2,19,45,0.0 +17851,14,23.25,41,0.0 +17851,23,9,9,0.0 +17851,71,21.5,18,0.0 +17851,17,39,43,0.0 +17851,58,13.25,20,0.0 +17851,53,32.8,12,0.0 +17852,2,19,47,0.0 +17852,23,9,38,0.0 +17852,11,21,38,0.0 +17852,46,12,49,0.0 +17852,60,34,14,0.0 +17852,66,17,26,0.0 +17852,20,81,18,0.0 +17852,54,7.45,23,0.0 +17852,74,10,24,0.0 +17852,61,28.5,3,0.0 +17852,48,12.75,2,0.0 +17852,57,19.5,6,0.0 +17852,6,25,49,0.0 +17852,72,34.8,39,0.0 +17852,28,45.6,47,0.0 +17852,17,39,25,0.0 +17852,56,38,26,0.0 +17852,58,13.25,35,0.0 +17852,13,6,4,0.0 +17852,67,14,47,0.0 +17852,5,21.35,19,0.0 +17852,14,23.25,28,0.0 +17852,71,21.5,29,0.0 +17852,65,21.05,24,0.0 +17852,21,10,12,0.0 +17852,52,7,30,0.0 +17852,26,31.23,7,0.0 +17852,38,263.5,8,0.0 +17852,53,32.8,42,0.0 +17852,64,33.25,36,0.0 +17852,41,9.65,37,0.0 +17852,30,25.89,39,0.0 +17852,12,38,32,0.0 +17852,19,9.2,27,0.0 +17852,3,10,39,0.0 +17852,45,9.5,32,0.0 +17852,22,21,22,0.0 +17852,24,4.5,47,0.0 +17852,73,15,25,0.0 +17852,77,13,44,0.0 +17852,34,14,46,0.0 +17852,10,31,21,0.0 +17852,68,12.5,24,0.0 +17852,15,15.5,8,0.0 +17852,37,26,12,0.0 +17852,49,20,27,0.0 +17852,25,14,27,0.0 +17852,9,97,49,0.0 +17852,1,18,21,0.0 +17852,50,16.25,10,0.0 +17852,63,43.9,27,0.0 +17852,33,2.5,40,0.0 +17852,62,49.3,3,0.0 +17852,75,7.75,43,0.0 +17852,35,18,32,0.0 +17852,70,15,28,0.0 +17852,16,17.45,15,0.0 +17852,29,123.79,35,0.0 +17852,8,40,8,0.0 +17852,36,19,38,0.0 +17852,44,19.45,28,0.0 +17852,59,55,5,0.0 +17852,31,12.5,31,0.0 +17852,7,30,30,0.0 +17852,47,9.5,33,0.0 +17852,39,18,40,0.0 +17852,69,36,50,0.0 +17852,43,46,23,0.0 +17852,42,14,22,0.0 +17852,4,22,1,0.0 +17852,32,32,44,0.0 +17852,55,24,24,0.0 +17852,51,53,20,0.0 +17852,76,18,44,0.0 +17853,25,14,10,0.0 +17853,50,16.25,37,0.0 +17853,40,18.4,10,0.0 +17853,30,25.89,32,0.0 +17853,17,39,48,0.0 +17853,14,23.25,14,0.0 +17853,74,10,39,0.0 +17853,60,34,33,0.0 +17853,47,9.5,30,0.0 +17853,32,32,9,0.0 +17853,5,21.35,8,0.0 +17853,61,28.5,8,0.0 +17854,70,15,27,0.0 +17854,30,25.89,47,0.0 +17854,31,12.5,41,0.0 +17854,19,9.2,26,0.0 +17854,67,14,31,0.0 +17854,16,17.45,23,0.0 +17854,43,46,28,0.0 +17854,8,40,40,0.0 +17854,11,21,22,0.0 +17854,50,16.25,5,0.0 +17854,27,43.9,13,0.0 +17854,18,62.5,28,0.0 +17854,52,7,8,0.0 +17854,14,23.25,34,0.0 +17854,7,30,1,0.0 +17854,39,18,46,0.0 +17854,21,10,43,0.0 +17854,38,263.5,8,0.0 +17854,29,123.79,1,0.0 +17854,37,26,17,0.0 +17854,33,2.5,50,0.0 +17854,34,14,33,0.0 +17854,53,32.8,45,0.0 +17854,77,13,40,0.0 +17854,60,34,20,0.0 +17854,59,55,29,0.0 +17854,13,6,46,0.0 +17854,32,32,28,0.0 +17854,51,53,2,0.0 +17854,58,13.25,45,0.0 +17854,47,9.5,15,0.0 +17854,22,21,47,0.0 +17854,54,7.45,18,0.0 +17854,72,34.8,41,0.0 +17854,2,19,27,0.0 +17854,69,36,1,0.0 +17855,51,53,17,0.0 +17855,45,9.5,37,0.0 +17855,23,9,8,0.0 +17855,56,38,8,0.0 +17855,41,9.65,29,0.0 +17855,60,34,30,0.0 +17855,37,26,4,0.0 +17855,1,18,14,0.0 +17855,59,55,11,0.0 +17855,17,39,18,0.0 +17855,10,31,43,0.0 +17855,6,25,5,0.0 +17855,36,19,27,0.0 +17855,61,28.5,28,0.0 +17855,9,97,30,0.0 +17855,39,18,19,0.0 +17855,3,10,8,0.0 +17855,31,12.5,21,0.0 +17855,71,21.5,29,0.0 +17855,12,38,50,0.0 +17855,30,25.89,3,0.0 +17855,77,13,9,0.0 +17855,26,31.23,9,0.0 +17855,44,19.45,46,0.0 +17855,55,24,2,0.0 +17855,70,15,25,0.0 +17855,63,43.9,11,0.0 +17855,72,34.8,4,0.0 +17855,20,81,29,0.0 +17855,73,15,7,0.0 +17855,49,20,5,0.0 +17855,22,21,11,0.0 +17855,33,2.5,32,0.0 +17855,74,10,18,0.0 +17855,25,14,31,0.0 +17855,11,21,3,0.0 +17855,54,7.45,18,0.0 +17855,64,33.25,22,0.0 +17855,16,17.45,35,0.0 +17855,7,30,28,0.0 +17855,15,15.5,18,0.0 +17855,40,18.4,13,0.0 +17855,4,22,50,0.0 +17855,24,4.5,37,0.0 +17856,46,12,38,0.0 +17856,54,7.45,19,0.0 +17856,9,97,47,0.0 +17856,48,12.75,3,0.0 +17856,58,13.25,26,0.0 +17856,33,2.5,8,0.0 +17856,20,81,23,0.0 +17856,65,21.05,29,0.0 +17856,77,13,47,0.0 +17856,34,14,12,0.0 +17856,42,14,30,0.0 +17856,18,62.5,19,0.0 +17856,4,22,22,0.0 +17856,16,17.45,2,0.0 +17856,17,39,3,0.0 +17856,52,7,43,0.0 +17856,62,49.3,14,0.0 +17856,12,38,46,0.0 +17856,49,20,33,0.0 +17856,30,25.89,5,0.0 +17856,59,55,1,0.0 +17856,73,15,25,0.0 +17856,32,32,26,0.0 +17856,67,14,33,0.0 +17856,63,43.9,50,0.0 +17856,70,15,35,0.0 +17856,29,123.79,42,0.0 +17856,19,9.2,38,0.0 +17856,13,6,9,0.0 +17856,45,9.5,5,0.0 +17856,40,18.4,49,0.0 +17856,57,19.5,35,0.0 +17856,35,18,45,0.0 +17856,21,10,45,0.0 +17856,22,21,25,0.0 +17856,28,45.6,1,0.0 +17856,10,31,22,0.0 +17856,37,26,2,0.0 +17856,23,9,17,0.0 +17856,7,30,17,0.0 +17856,43,46,32,0.0 +17856,25,14,13,0.0 +17856,71,21.5,40,0.0 +17856,66,17,12,0.0 +17856,2,19,19,0.0 +17856,72,34.8,34,0.0 +17856,36,19,10,0.0 +17856,41,9.65,11,0.0 +17856,11,21,38,0.0 +17856,50,16.25,33,0.0 +17856,61,28.5,16,0.0 +17856,64,33.25,27,0.0 +17856,31,12.5,9,0.0 +17856,60,34,18,0.0 +17856,15,15.5,39,0.0 +17856,3,10,27,0.0 +17856,26,31.23,36,0.0 +17856,51,53,14,0.0 +17856,53,32.8,10,0.0 +17856,5,21.35,21,0.0 +17856,56,38,10,0.0 +17856,6,25,9,0.0 +17856,47,9.5,40,0.0 +17856,69,36,18,0.0 +17856,44,19.45,2,0.0 +17856,14,23.25,25,0.0 +17856,76,18,28,0.0 +17857,73,15,47,0.0 +17857,61,28.5,16,0.0 +17857,66,17,6,0.0 +17857,52,7,15,0.0 +17857,37,26,50,0.0 +17857,32,32,36,0.0 +17857,23,9,11,0.0 +17857,48,12.75,26,0.0 +17857,24,4.5,23,0.0 +17857,16,17.45,25,0.0 +17857,42,14,30,0.0 +17857,28,45.6,23,0.0 +17857,7,30,8,0.0 +17857,51,53,42,0.0 +17857,55,24,4,0.0 +17857,62,49.3,28,0.0 +17857,25,14,3,0.0 +17857,3,10,5,0.0 +17857,27,43.9,1,0.0 +17857,50,16.25,2,0.0 +17857,70,15,40,0.0 +17857,53,32.8,14,0.0 +17857,54,7.45,20,0.0 +17857,40,18.4,33,0.0 +17857,26,31.23,10,0.0 +17857,67,14,49,0.0 +17857,68,12.5,47,0.0 +17857,17,39,28,0.0 +17857,9,97,22,0.0 +17857,74,10,33,0.0 +17857,76,18,30,0.0 +17857,1,18,46,0.0 +17857,20,81,29,0.0 +17857,60,34,45,0.0 +17857,29,123.79,26,0.0 +17857,57,19.5,18,0.0 +17857,8,40,17,0.0 +17857,18,62.5,29,0.0 +17857,5,21.35,9,0.0 +17857,22,21,34,0.0 +17857,56,38,14,0.0 +17857,21,10,49,0.0 +17857,34,14,9,0.0 +17857,49,20,6,0.0 +17857,19,9.2,32,0.0 +17857,10,31,36,0.0 +17857,41,9.65,5,0.0 +17857,72,34.8,20,0.0 +17857,71,21.5,10,0.0 +17857,38,263.5,46,0.0 +17857,69,36,8,0.0 +17857,75,7.75,35,0.0 +17857,35,18,46,0.0 +17857,14,23.25,48,0.0 +17857,43,46,43,0.0 +17857,30,25.89,8,0.0 +17857,64,33.25,7,0.0 +17857,63,43.9,18,0.0 +17857,58,13.25,43,0.0 +17857,31,12.5,8,0.0 +17857,77,13,31,0.0 +17857,2,19,35,0.0 +17857,13,6,44,0.0 +17857,36,19,28,0.0 +17857,46,12,38,0.0 +17857,4,22,8,0.0 +17857,44,19.45,24,0.0 +17857,45,9.5,7,0.0 +17857,11,21,31,0.0 +17857,59,55,39,0.0 +17857,6,25,7,0.0 +17858,2,19,30,0.0 +17858,21,10,33,0.0 +17858,73,15,5,0.0 +17858,25,14,46,0.0 +17858,74,10,24,0.0 +17858,19,9.2,2,0.0 +17858,68,12.5,5,0.0 +17858,72,34.8,17,0.0 +17858,65,21.05,24,0.0 +17858,44,19.45,6,0.0 +17858,30,25.89,4,0.0 +17858,35,18,16,0.0 +17858,11,21,6,0.0 +17858,38,263.5,10,0.0 +17858,58,13.25,24,0.0 +17858,71,21.5,38,0.0 +17858,69,36,42,0.0 +17858,64,33.25,13,0.0 +17858,3,10,36,0.0 +17858,34,14,33,0.0 +17858,40,18.4,27,0.0 +17858,1,18,35,0.0 +17858,29,123.79,3,0.0 +17858,43,46,30,0.0 +17858,12,38,9,0.0 +17858,5,21.35,1,0.0 +17858,18,62.5,11,0.0 +17858,24,4.5,31,0.0 +17858,70,15,32,0.0 +17858,39,18,30,0.0 +17858,32,32,26,0.0 +17858,33,2.5,2,0.0 +17858,41,9.65,15,0.0 +17858,50,16.25,20,0.0 +17858,14,23.25,31,0.0 +17858,77,13,16,0.0 +17858,13,6,27,0.0 +17858,23,9,36,0.0 +17858,59,55,48,0.0 +17858,37,26,42,0.0 +17858,28,45.6,42,0.0 +17858,54,7.45,44,0.0 +17858,8,40,10,0.0 +17859,10,31,35,0.0 +17859,19,9.2,37,0.0 +17859,70,15,46,0.0 +17859,61,28.5,36,0.0 +17859,38,263.5,8,0.0 +17859,59,55,38,0.0 +17859,65,21.05,26,0.0 +17859,15,15.5,17,0.0 +17859,56,38,46,0.0 +17859,3,10,21,0.0 +17859,71,21.5,44,0.0 +17859,72,34.8,38,0.0 +17859,22,21,13,0.0 +17859,49,20,15,0.0 +17859,50,16.25,11,0.0 +17859,35,18,43,0.0 +17859,54,7.45,33,0.0 +17859,36,19,36,0.0 +17859,34,14,8,0.0 +17859,23,9,50,0.0 +17859,52,7,8,0.0 +17859,77,13,30,0.0 +17859,17,39,4,0.0 +17859,2,19,45,0.0 +17859,7,30,28,0.0 +17859,8,40,1,0.0 +17859,47,9.5,44,0.0 +17859,18,62.5,1,0.0 +17859,67,14,15,0.0 +17859,73,15,21,0.0 +17859,20,81,50,0.0 +17859,75,7.75,44,0.0 +17859,40,18.4,47,0.0 +17859,33,2.5,8,0.0 +17859,16,17.45,50,0.0 +17859,68,12.5,46,0.0 +17859,30,25.89,46,0.0 +17859,4,22,25,0.0 +17859,11,21,45,0.0 +17859,64,33.25,34,0.0 +17859,26,31.23,16,0.0 +17859,25,14,45,0.0 +17859,5,21.35,13,0.0 +17859,62,49.3,45,0.0 +17859,27,43.9,42,0.0 +17859,43,46,49,0.0 +17859,42,14,50,0.0 +17859,44,19.45,32,0.0 +17859,66,17,25,0.0 +17859,6,25,16,0.0 +17859,60,34,28,0.0 +17859,14,23.25,20,0.0 +17859,28,45.6,37,0.0 +17859,51,53,10,0.0 +17859,29,123.79,17,0.0 +17859,37,26,1,0.0 +17859,24,4.5,13,0.0 +17859,76,18,29,0.0 +17859,39,18,28,0.0 +17859,46,12,47,0.0 +17860,45,9.5,48,0.0 +17860,54,7.45,2,0.0 +17860,37,26,23,0.0 +17860,60,34,18,0.0 +17860,35,18,31,0.0 +17860,28,45.6,40,0.0 +17860,18,62.5,6,0.0 +17860,47,9.5,33,0.0 +17860,5,21.35,43,0.0 +17860,55,24,8,0.0 +17860,58,13.25,12,0.0 +17860,75,7.75,11,0.0 +17860,22,21,45,0.0 +17860,48,12.75,26,0.0 +17860,27,43.9,21,0.0 +17860,56,38,10,0.0 +17860,77,13,46,0.0 +17860,53,32.8,22,0.0 +17860,9,97,14,0.0 +17860,50,16.25,31,0.0 +17860,19,9.2,31,0.0 +17860,70,15,29,0.0 +17860,76,18,17,0.0 +17860,74,10,16,0.0 +17860,2,19,8,0.0 +17860,3,10,25,0.0 +17860,44,19.45,23,0.0 +17860,17,39,42,0.0 +17860,69,36,2,0.0 +17860,62,49.3,42,0.0 +17860,33,2.5,37,0.0 +17860,61,28.5,19,0.0 +17860,36,19,47,0.0 +17860,72,34.8,28,0.0 +17860,64,33.25,32,0.0 +17860,12,38,34,0.0 +17860,71,21.5,36,0.0 +17860,16,17.45,24,0.0 +17860,59,55,39,0.0 +17860,31,12.5,24,0.0 +17860,46,12,31,0.0 +17860,24,4.5,33,0.0 +17860,34,14,20,0.0 +17860,11,21,4,0.0 +17860,14,23.25,34,0.0 +17860,49,20,11,0.0 +17860,63,43.9,40,0.0 +17860,32,32,40,0.0 +17860,42,14,34,0.0 +17860,8,40,9,0.0 +17860,52,7,29,0.0 +17860,10,31,22,0.0 +17860,43,46,46,0.0 +17860,7,30,19,0.0 +17860,68,12.5,26,0.0 +17860,15,15.5,16,0.0 +17860,40,18.4,12,0.0 +17860,29,123.79,14,0.0 +17860,65,21.05,42,0.0 +17860,20,81,4,0.0 +17860,13,6,37,0.0 +17860,39,18,19,0.0 +17860,26,31.23,27,0.0 +17860,30,25.89,2,0.0 +17860,1,18,50,0.0 +17860,51,53,33,0.0 +17860,6,25,22,0.0 +17860,25,14,40,0.0 +17860,66,17,33,0.0 +17861,31,12.5,36,0.0 +17861,46,12,8,0.0 +17861,66,17,29,0.0 +17861,3,10,42,0.0 +17861,71,21.5,8,0.0 +17861,59,55,40,0.0 +17861,49,20,23,0.0 +17861,43,46,17,0.0 +17861,72,34.8,12,0.0 +17861,32,32,43,0.0 +17861,6,25,46,0.0 +17861,74,10,50,0.0 +17861,40,18.4,11,0.0 +17861,8,40,40,0.0 +17861,60,34,48,0.0 +17861,9,97,25,0.0 +17861,58,13.25,25,0.0 +17861,54,7.45,39,0.0 +17861,23,9,17,0.0 +17861,30,25.89,40,0.0 +17861,68,12.5,33,0.0 +17861,27,43.9,30,0.0 +17861,37,26,13,0.0 +17861,34,14,23,0.0 +17861,28,45.6,40,0.0 +17861,36,19,1,0.0 +17861,22,21,5,0.0 +17861,69,36,49,0.0 +17861,77,13,46,0.0 +17861,17,39,38,0.0 +17861,20,81,36,0.0 +17861,44,19.45,30,0.0 +17861,38,263.5,24,0.0 +17861,24,4.5,48,0.0 +17861,7,30,24,0.0 +17861,10,31,46,0.0 +17861,73,15,23,0.0 +17861,19,9.2,20,0.0 +17861,62,49.3,36,0.0 +17861,65,21.05,32,0.0 +17861,63,43.9,21,0.0 +17861,47,9.5,33,0.0 +17861,16,17.45,33,0.0 +17861,25,14,22,0.0 +17861,64,33.25,49,0.0 +17861,76,18,45,0.0 +17861,12,38,10,0.0 +17861,15,15.5,34,0.0 +17861,18,62.5,25,0.0 +17861,4,22,28,0.0 +17861,41,9.65,30,0.0 +17861,56,38,18,0.0 +17861,75,7.75,46,0.0 +17861,51,53,27,0.0 +17861,5,21.35,5,0.0 +17861,42,14,46,0.0 +17861,2,19,31,0.0 +17861,48,12.75,27,0.0 +17861,33,2.5,42,0.0 +17861,61,28.5,25,0.0 +17861,29,123.79,6,0.0 +17861,1,18,49,0.0 +17861,35,18,6,0.0 +17861,21,10,43,0.0 +17861,14,23.25,3,0.0 +17861,67,14,30,0.0 +17861,70,15,11,0.0 +17861,53,32.8,8,0.0 +17861,11,21,32,0.0 +17861,52,7,35,0.0 +17862,24,4.5,30,0.0 +17862,1,18,20,0.0 +17862,59,55,34,0.0 +17862,65,21.05,48,0.0 +17862,69,36,9,0.0 +17862,3,10,42,0.0 +17862,60,34,28,0.0 +17862,27,43.9,18,0.0 +17862,48,12.75,3,0.0 +17862,17,39,28,0.0 +17862,38,263.5,18,0.0 +17862,30,25.89,47,0.0 +17862,43,46,12,0.0 +17862,50,16.25,28,0.0 +17862,15,15.5,15,0.0 +17862,4,22,8,0.0 +17862,51,53,21,0.0 +17862,35,18,22,0.0 +17862,25,14,7,0.0 +17862,14,23.25,24,0.0 +17862,26,31.23,46,0.0 +17862,53,32.8,15,0.0 +17862,63,43.9,13,0.0 +17862,42,14,40,0.0 +17862,19,9.2,15,0.0 +17862,75,7.75,8,0.0 +17862,37,26,1,0.0 +17862,68,12.5,17,0.0 +17862,6,25,31,0.0 +17862,7,30,18,0.0 +17862,22,21,9,0.0 +17862,28,45.6,29,0.0 +17862,58,13.25,16,0.0 +17862,71,21.5,34,0.0 +17862,72,34.8,21,0.0 +17862,13,6,47,0.0 +17862,52,7,37,0.0 +17862,40,18.4,26,0.0 +17862,67,14,47,0.0 +17862,56,38,11,0.0 +17862,20,81,16,0.0 +17862,45,9.5,19,0.0 +17862,55,24,1,0.0 +17862,36,19,45,0.0 +17862,49,20,33,0.0 +17862,39,18,23,0.0 +17862,41,9.65,23,0.0 +17862,18,62.5,14,0.0 +17862,29,123.79,17,0.0 +17862,74,10,41,0.0 +17862,76,18,24,0.0 +17862,12,38,6,0.0 +17862,5,21.35,20,0.0 +17862,16,17.45,48,0.0 +17862,32,32,37,0.0 +17862,33,2.5,32,0.0 +17862,10,31,43,0.0 +17862,2,19,34,0.0 +17862,73,15,13,0.0 +17862,11,21,14,0.0 +17862,31,12.5,29,0.0 +17862,47,9.5,19,0.0 +17862,8,40,22,0.0 +17862,64,33.25,2,0.0 +17862,70,15,32,0.0 +17862,23,9,4,0.0 +17862,61,28.5,32,0.0 +17862,54,7.45,4,0.0 +17862,62,49.3,11,0.0 +17862,9,97,40,0.0 +17862,46,12,8,0.0 +17862,34,14,30,0.0 +17862,44,19.45,27,0.0 +17862,57,19.5,33,0.0 +17862,21,10,47,0.0 +17862,66,17,47,0.0 +17863,9,97,38,0.0 +17863,47,9.5,6,0.0 +17863,32,32,49,0.0 +17863,17,39,9,0.0 +17863,30,25.89,43,0.0 +17863,62,49.3,22,0.0 +17863,56,38,13,0.0 +17863,7,30,6,0.0 +17863,59,55,39,0.0 +17863,43,46,19,0.0 +17863,67,14,42,0.0 +17863,51,53,15,0.0 +17863,40,18.4,7,0.0 +17863,68,12.5,40,0.0 +17863,54,7.45,45,0.0 +17863,8,40,6,0.0 +17863,71,21.5,8,0.0 +17863,26,31.23,44,0.0 +17863,52,7,48,0.0 +17863,35,18,30,0.0 +17863,10,31,4,0.0 +17863,12,38,8,0.0 +17863,28,45.6,37,0.0 +17863,19,9.2,45,0.0 +17863,50,16.25,31,0.0 +17863,5,21.35,3,0.0 +17863,24,4.5,44,0.0 +17863,21,10,2,0.0 +17863,18,62.5,6,0.0 +17863,60,34,10,0.0 +17863,27,43.9,27,0.0 +17863,45,9.5,28,0.0 +17863,11,21,1,0.0 +17863,64,33.25,29,0.0 +17863,42,14,38,0.0 +17863,39,18,38,0.0 +17863,73,15,45,0.0 +17863,34,14,35,0.0 +17863,48,12.75,15,0.0 +17863,65,21.05,12,0.0 +17863,22,21,8,0.0 +17863,13,6,43,0.0 +17863,38,263.5,46,0.0 +17863,61,28.5,37,0.0 +17863,16,17.45,28,0.0 +17863,33,2.5,47,0.0 +17863,20,81,31,0.0 +17863,29,123.79,31,0.0 +17863,31,12.5,41,0.0 +17863,74,10,30,0.0 +17863,14,23.25,31,0.0 +17863,70,15,38,0.0 +17863,44,19.45,25,0.0 +17863,1,18,44,0.0 +17863,72,34.8,7,0.0 +17863,76,18,48,0.0 +17863,63,43.9,24,0.0 +17863,55,24,40,0.0 +17863,37,26,36,0.0 +17863,3,10,37,0.0 +17863,58,13.25,13,0.0 +17863,41,9.65,41,0.0 +17863,53,32.8,3,0.0 +17863,66,17,36,0.0 +17863,46,12,32,0.0 +17863,49,20,40,0.0 +17863,25,14,16,0.0 +17863,6,25,4,0.0 +17864,21,10,41,0.0 +17864,27,43.9,5,0.0 +17865,69,36,9,0.0 +17865,41,9.65,30,0.0 +17865,2,19,21,0.0 +17865,72,34.8,34,0.0 +17865,40,18.4,9,0.0 +17865,8,40,3,0.0 +17865,33,2.5,13,0.0 +17865,48,12.75,23,0.0 +17865,77,13,21,0.0 +17865,56,38,35,0.0 +17865,22,21,50,0.0 +17865,63,43.9,12,0.0 +17865,11,21,33,0.0 +17865,24,4.5,28,0.0 +17865,28,45.6,27,0.0 +17865,26,31.23,38,0.0 +17865,49,20,49,0.0 +17865,67,14,46,0.0 +17865,1,18,50,0.0 +17865,35,18,8,0.0 +17865,9,97,3,0.0 +17865,73,15,33,0.0 +17865,65,21.05,18,0.0 +17865,52,7,9,0.0 +17865,25,14,47,0.0 +17865,62,49.3,23,0.0 +17865,29,123.79,23,0.0 +17865,19,9.2,41,0.0 +17865,27,43.9,20,0.0 +17865,5,21.35,18,0.0 +17865,71,21.5,7,0.0 +17865,45,9.5,46,0.0 +17865,6,25,3,0.0 +17865,34,14,1,0.0 +17865,37,26,38,0.0 +17865,18,62.5,32,0.0 +17865,36,19,49,0.0 +17865,61,28.5,38,0.0 +17865,15,15.5,11,0.0 +17865,68,12.5,42,0.0 +17865,54,7.45,24,0.0 +17865,21,10,11,0.0 +17865,46,12,12,0.0 +17865,44,19.45,13,0.0 +17865,4,22,21,0.0 +17865,23,9,30,0.0 +17865,31,12.5,3,0.0 +17865,76,18,12,0.0 +17865,58,13.25,24,0.0 +17865,14,23.25,38,0.0 +17865,20,81,25,0.0 +17865,50,16.25,50,0.0 +17865,32,32,48,0.0 +17866,47,9.5,18,0.0 +17866,55,24,32,0.0 +17866,48,12.75,8,0.0 +17866,58,13.25,23,0.0 +17866,60,34,28,0.0 +17866,22,21,47,0.0 +17866,11,21,14,0.0 +17866,41,9.65,31,0.0 +17866,66,17,12,0.0 +17866,17,39,2,0.0 +17866,9,97,37,0.0 +17866,1,18,16,0.0 +17866,69,36,32,0.0 +17866,36,19,6,0.0 +17866,30,25.89,44,0.0 +17866,62,49.3,46,0.0 +17866,28,45.6,6,0.0 +17866,33,2.5,37,0.0 +17866,71,21.5,5,0.0 +17866,51,53,17,0.0 +17866,50,16.25,39,0.0 +17866,3,10,49,0.0 +17866,32,32,50,0.0 +17866,45,9.5,10,0.0 +17866,54,7.45,32,0.0 +17866,56,38,21,0.0 +17866,44,19.45,11,0.0 +17866,64,33.25,41,0.0 +17866,52,7,20,0.0 +17866,12,38,34,0.0 +17866,27,43.9,5,0.0 +17867,45,9.5,48,0.0 +17868,14,23.25,26,0.0 +17868,51,53,12,0.0 +17868,53,32.8,26,0.0 +17868,31,12.5,24,0.0 +17868,28,45.6,44,0.0 +17868,15,15.5,43,0.0 +17868,9,97,16,0.0 +17868,16,17.45,28,0.0 +17868,32,32,21,0.0 +17868,11,21,25,0.0 +17868,55,24,20,0.0 +17868,65,21.05,18,0.0 +17868,5,21.35,5,0.0 +17868,36,19,15,0.0 +17868,70,15,17,0.0 +17868,71,21.5,24,0.0 +17868,69,36,20,0.0 +17868,52,7,37,0.0 +17868,42,14,39,0.0 +17868,59,55,28,0.0 +17868,33,2.5,22,0.0 +17868,41,9.65,19,0.0 +17868,39,18,38,0.0 +17868,30,25.89,30,0.0 +17868,57,19.5,10,0.0 +17868,18,62.5,41,0.0 +17868,49,20,22,0.0 +17868,54,7.45,9,0.0 +17868,44,19.45,5,0.0 +17868,8,40,38,0.0 +17868,17,39,10,0.0 +17868,13,6,16,0.0 +17868,63,43.9,24,0.0 +17868,43,46,30,0.0 +17868,40,18.4,37,0.0 +17868,50,16.25,13,0.0 +17869,8,40,23,0.0 +17869,1,18,16,0.0 +17869,35,18,15,0.0 +17869,60,34,42,0.0 +17869,57,19.5,29,0.0 +17869,7,30,38,0.0 +17869,21,10,24,0.0 +17869,63,43.9,36,0.0 +17869,20,81,31,0.0 +17869,56,38,39,0.0 +17869,47,9.5,41,0.0 +17870,60,34,20,0.0 +17870,61,28.5,33,0.0 +17870,38,263.5,39,0.0 +17870,22,21,7,0.0 +17870,48,12.75,27,0.0 +17870,64,33.25,45,0.0 +17870,41,9.65,50,0.0 +17870,35,18,10,0.0 +17870,46,12,23,0.0 +17870,33,2.5,38,0.0 +17870,43,46,25,0.0 +17870,47,9.5,40,0.0 +17870,49,20,20,0.0 +17870,29,123.79,3,0.0 +17870,21,10,15,0.0 +17870,31,12.5,38,0.0 +17870,77,13,18,0.0 +17870,11,21,17,0.0 +17870,51,53,37,0.0 +17870,26,31.23,22,0.0 +17870,19,9.2,50,0.0 +17870,40,18.4,35,0.0 +17870,14,23.25,43,0.0 +17870,52,7,5,0.0 +17870,54,7.45,41,0.0 +17870,3,10,34,0.0 +17870,69,36,33,0.0 +17870,10,31,40,0.0 +17870,24,4.5,8,0.0 +17870,13,6,1,0.0 +17870,59,55,19,0.0 +17870,28,45.6,48,0.0 +17870,73,15,1,0.0 +17870,2,19,44,0.0 +17870,23,9,6,0.0 +17870,16,17.45,14,0.0 +17870,75,7.75,46,0.0 +17870,55,24,24,0.0 +17870,6,25,5,0.0 +17870,44,19.45,29,0.0 +17870,70,15,17,0.0 +17870,7,30,34,0.0 +17870,1,18,20,0.0 +17870,15,15.5,29,0.0 +17870,65,21.05,13,0.0 +17870,68,12.5,26,0.0 +17870,17,39,48,0.0 +17870,27,43.9,23,0.0 +17870,76,18,23,0.0 +17870,30,25.89,37,0.0 +17870,36,19,10,0.0 +17870,74,10,6,0.0 +17870,45,9.5,13,0.0 +17870,67,14,15,0.0 +17870,72,34.8,11,0.0 +17870,12,38,47,0.0 +17870,57,19.5,24,0.0 +17870,9,97,34,0.0 +17870,50,16.25,39,0.0 +17870,63,43.9,32,0.0 +17870,32,32,33,0.0 +17870,42,14,48,0.0 +17870,5,21.35,25,0.0 +17870,20,81,40,0.0 +17870,37,26,18,0.0 +17870,62,49.3,14,0.0 +17870,39,18,48,0.0 +17870,53,32.8,42,0.0 +17870,25,14,26,0.0 +17871,22,21,33,0.0 +17871,16,17.45,45,0.0 +17871,45,9.5,20,0.0 +17871,26,31.23,11,0.0 +17871,53,32.8,41,0.0 +17871,66,17,20,0.0 +17871,27,43.9,8,0.0 +17871,9,97,18,0.0 +17871,17,39,43,0.0 +17871,68,12.5,15,0.0 +17871,72,34.8,9,0.0 +17871,32,32,4,0.0 +17871,61,28.5,46,0.0 +17871,46,12,21,0.0 +17871,70,15,13,0.0 +17871,25,14,10,0.0 +17871,1,18,42,0.0 +17871,51,53,3,0.0 +17871,21,10,37,0.0 +17871,40,18.4,16,0.0 +17871,44,19.45,6,0.0 +17871,13,6,41,0.0 +17871,34,14,11,0.0 +17871,6,25,31,0.0 +17871,54,7.45,12,0.0 +17871,41,9.65,8,0.0 +17871,14,23.25,6,0.0 +17871,77,13,37,0.0 +17871,20,81,31,0.0 +17871,62,49.3,2,0.0 +17871,39,18,10,0.0 +17871,60,34,48,0.0 +17871,57,19.5,16,0.0 +17871,52,7,2,0.0 +17871,55,24,25,0.0 +17871,28,45.6,44,0.0 +17871,5,21.35,46,0.0 +17871,73,15,20,0.0 +17871,30,25.89,21,0.0 +17871,29,123.79,48,0.0 +17872,76,18,6,0.0 +17872,8,40,4,0.0 +17872,2,19,17,0.0 +17872,17,39,30,0.0 +17872,10,31,26,0.0 +17872,66,17,22,0.0 +17872,34,14,33,0.0 +17872,9,97,20,0.0 +17872,18,62.5,21,0.0 +17872,48,12.75,42,0.0 +17872,22,21,7,0.0 +17872,74,10,22,0.0 +17872,7,30,4,0.0 +17872,38,263.5,16,0.0 +17872,19,9.2,3,0.0 +17872,73,15,28,0.0 +17872,49,20,33,0.0 +17872,58,13.25,47,0.0 +17872,60,34,10,0.0 +17872,54,7.45,50,0.0 +17872,5,21.35,2,0.0 +17872,23,9,47,0.0 +17872,55,24,47,0.0 +17872,4,22,10,0.0 +17872,11,21,43,0.0 +17872,26,31.23,26,0.0 +17872,20,81,46,0.0 +17872,29,123.79,38,0.0 +17872,70,15,8,0.0 +17872,1,18,20,0.0 +17872,65,21.05,35,0.0 +17873,43,46,5,0.0 +17873,39,18,29,0.0 +17873,77,13,25,0.0 +17873,36,19,17,0.0 +17873,70,15,43,0.0 +17873,59,55,8,0.0 +17873,21,10,23,0.0 +17873,45,9.5,13,0.0 +17873,76,18,49,0.0 +17873,62,49.3,32,0.0 +17873,30,25.89,28,0.0 +17873,23,9,49,0.0 +17873,4,22,24,0.0 +17873,1,18,16,0.0 +17873,68,12.5,38,0.0 +17873,53,32.8,12,0.0 +17873,58,13.25,16,0.0 +17873,41,9.65,32,0.0 +17873,74,10,35,0.0 +17873,3,10,9,0.0 +17873,63,43.9,48,0.0 +17873,9,97,35,0.0 +17873,40,18.4,19,0.0 +17873,27,43.9,25,0.0 +17873,13,6,6,0.0 +17873,47,9.5,27,0.0 +17874,69,36,5,0.0 +17874,63,43.9,31,0.0 +17874,11,21,17,0.0 +17874,64,33.25,48,0.0 +17874,52,7,49,0.0 +17874,27,43.9,17,0.0 +17874,33,2.5,33,0.0 +17874,1,18,45,0.0 +17874,67,14,9,0.0 +17874,68,12.5,40,0.0 +17874,51,53,11,0.0 +17874,19,9.2,1,0.0 +17874,13,6,37,0.0 +17874,36,19,19,0.0 +17874,66,17,30,0.0 +17874,15,15.5,5,0.0 +17874,8,40,26,0.0 +17874,2,19,49,0.0 +17874,14,23.25,40,0.0 +17874,30,25.89,45,0.0 +17874,47,9.5,37,0.0 +17874,49,20,27,0.0 +17874,6,25,5,0.0 +17874,44,19.45,15,0.0 +17874,61,28.5,22,0.0 +17874,35,18,41,0.0 +17874,57,19.5,34,0.0 +17874,43,46,2,0.0 +17874,41,9.65,32,0.0 +17874,24,4.5,21,0.0 +17874,31,12.5,27,0.0 +17874,12,38,46,0.0 +17874,9,97,31,0.0 +17874,48,12.75,9,0.0 +17874,75,7.75,26,0.0 +17874,21,10,43,0.0 +17875,56,38,45,0.0 +17876,28,45.6,3,0.0 +17876,59,55,3,0.0 +17876,76,18,6,0.0 +17876,77,13,38,0.0 +17876,38,263.5,47,0.0 +17876,36,19,12,0.0 +17876,65,21.05,9,0.0 +17876,25,14,20,0.0 +17876,24,4.5,33,0.0 +17876,18,62.5,34,0.0 +17876,47,9.5,14,0.0 +17876,10,31,25,0.0 +17876,35,18,45,0.0 +17876,66,17,28,0.0 +17876,37,26,29,0.0 +17876,64,33.25,47,0.0 +17876,63,43.9,28,0.0 +17876,41,9.65,32,0.0 +17876,16,17.45,44,0.0 +17876,29,123.79,28,0.0 +17876,69,36,21,0.0 +17876,60,34,20,0.0 +17876,61,28.5,34,0.0 +17876,51,53,41,0.0 +17876,44,19.45,32,0.0 +17876,14,23.25,21,0.0 +17876,1,18,3,0.0 +17876,32,32,21,0.0 +17876,42,14,21,0.0 +17876,45,9.5,21,0.0 +17876,3,10,23,0.0 +17876,55,24,23,0.0 +17876,54,7.45,30,0.0 +17876,72,34.8,10,0.0 +17876,46,12,1,0.0 +17877,38,263.5,10,0.0 +17877,13,6,39,0.0 +17877,73,15,37,0.0 +17877,39,18,4,0.0 +17877,61,28.5,46,0.0 +17877,57,19.5,32,0.0 +17877,77,13,44,0.0 +17877,16,17.45,23,0.0 +17877,36,19,27,0.0 +17877,20,81,12,0.0 +17877,14,23.25,33,0.0 +17877,7,30,45,0.0 +17877,62,49.3,7,0.0 +17877,42,14,22,0.0 +17877,24,4.5,8,0.0 +17877,25,14,26,0.0 +17877,68,12.5,39,0.0 +17877,35,18,17,0.0 +17877,31,12.5,43,0.0 +17877,63,43.9,1,0.0 +17877,12,38,38,0.0 +17877,54,7.45,26,0.0 +17877,70,15,29,0.0 +17877,50,16.25,36,0.0 +17877,1,18,13,0.0 +17877,60,34,6,0.0 +17877,34,14,42,0.0 +17877,26,31.23,24,0.0 +17877,40,18.4,3,0.0 +17877,21,10,44,0.0 +17877,27,43.9,49,0.0 +17877,28,45.6,48,0.0 +17877,11,21,43,0.0 +17877,51,53,25,0.0 +17877,65,21.05,9,0.0 +17877,49,20,12,0.0 +17877,55,24,41,0.0 +17877,41,9.65,22,0.0 +17877,23,9,9,0.0 +17877,15,15.5,3,0.0 +17877,53,32.8,33,0.0 +17877,74,10,4,0.0 +17877,71,21.5,2,0.0 +17877,18,62.5,4,0.0 +17877,32,32,37,0.0 +17877,19,9.2,33,0.0 +17877,8,40,30,0.0 +17877,47,9.5,48,0.0 +17877,17,39,16,0.0 +17877,48,12.75,31,0.0 +17877,46,12,50,0.0 +17877,4,22,17,0.0 +17878,17,39,33,0.0 +17878,20,81,34,0.0 +17878,58,13.25,18,0.0 +17878,41,9.65,25,0.0 +17878,35,18,30,0.0 +17878,14,23.25,38,0.0 +17878,24,4.5,4,0.0 +17878,25,14,13,0.0 +17878,18,62.5,47,0.0 +17878,74,10,37,0.0 +17878,28,45.6,37,0.0 +17878,22,21,44,0.0 +17879,2,19,27,0.0 +17879,26,31.23,35,0.0 +17879,56,38,22,0.0 +17879,69,36,48,0.0 +17879,14,23.25,44,0.0 +17879,28,45.6,18,0.0 +17879,77,13,2,0.0 +17879,9,97,2,0.0 +17879,37,26,26,0.0 +17879,7,30,5,0.0 +17879,18,62.5,40,0.0 +17879,57,19.5,14,0.0 +17879,5,21.35,13,0.0 +17879,24,4.5,34,0.0 +17879,38,263.5,21,0.0 +17879,51,53,4,0.0 +17879,68,12.5,21,0.0 +17879,27,43.9,12,0.0 +17879,31,12.5,6,0.0 +17879,35,18,30,0.0 +17879,16,17.45,22,0.0 +17879,30,25.89,23,0.0 +17879,75,7.75,42,0.0 +17879,71,21.5,43,0.0 +17879,34,14,7,0.0 +17879,32,32,28,0.0 +17879,50,16.25,49,0.0 +17879,44,19.45,50,0.0 +17879,33,2.5,1,0.0 +17879,46,12,33,0.0 +17879,12,38,14,0.0 +17879,25,14,33,0.0 +17879,29,123.79,19,0.0 +17879,48,12.75,32,0.0 +17879,1,18,19,0.0 +17879,74,10,19,0.0 +17879,40,18.4,13,0.0 +17879,45,9.5,45,0.0 +17879,52,7,50,0.0 +17879,15,15.5,6,0.0 +17879,23,9,22,0.0 +17879,72,34.8,36,0.0 +17879,61,28.5,46,0.0 +17879,41,9.65,2,0.0 +17879,3,10,9,0.0 +17879,76,18,11,0.0 +17879,10,31,35,0.0 +17879,20,81,41,0.0 +17879,21,10,25,0.0 +17879,43,46,44,0.0 +17879,36,19,29,0.0 +17879,49,20,25,0.0 +17879,13,6,21,0.0 +17879,47,9.5,6,0.0 +17879,73,15,8,0.0 +17879,8,40,36,0.0 +17879,17,39,25,0.0 +17879,62,49.3,29,0.0 +17880,54,7.45,50,0.0 +17880,9,97,27,0.0 +17880,64,33.25,24,0.0 +17880,18,62.5,13,0.0 +17880,27,43.9,13,0.0 +17880,67,14,13,0.0 +17880,10,31,35,0.0 +17880,62,49.3,29,0.0 +17880,17,39,31,0.0 +17880,73,15,49,0.0 +17880,38,263.5,16,0.0 +17880,11,21,11,0.0 +17880,70,15,5,0.0 +17880,41,9.65,27,0.0 +17880,61,28.5,2,0.0 +17880,23,9,40,0.0 +17880,20,81,10,0.0 +17880,49,20,16,0.0 +17880,45,9.5,29,0.0 +17880,58,13.25,35,0.0 +17880,15,15.5,3,0.0 +17880,77,13,33,0.0 +17880,19,9.2,24,0.0 +17880,66,17,2,0.0 +17880,1,18,13,0.0 +17880,5,21.35,17,0.0 +17880,21,10,13,0.0 +17880,48,12.75,25,0.0 +17880,26,31.23,4,0.0 +17880,25,14,3,0.0 +17880,34,14,13,0.0 +17880,56,38,9,0.0 +17880,50,16.25,23,0.0 +17880,53,32.8,10,0.0 +17880,24,4.5,45,0.0 +17880,39,18,29,0.0 +17880,76,18,40,0.0 +17880,68,12.5,32,0.0 +17880,2,19,11,0.0 +17880,13,6,41,0.0 +17880,14,23.25,26,0.0 +17880,52,7,11,0.0 +17880,51,53,22,0.0 +17880,65,21.05,4,0.0 +17880,47,9.5,22,0.0 +17880,74,10,50,0.0 +17880,59,55,31,0.0 +17880,7,30,11,0.0 +17880,44,19.45,9,0.0 +17880,12,38,36,0.0 +17880,29,123.79,25,0.0 +17880,69,36,28,0.0 +17880,4,22,25,0.0 +17880,42,14,15,0.0 +17880,30,25.89,9,0.0 +17880,35,18,30,0.0 +17881,44,19.45,28,0.0 +17881,54,7.45,22,0.0 +17881,57,19.5,41,0.0 +17881,62,49.3,25,0.0 +17881,56,38,37,0.0 +17881,30,25.89,22,0.0 +17881,1,18,34,0.0 +17881,70,15,35,0.0 +17881,29,123.79,38,0.0 +17881,14,23.25,17,0.0 +17881,59,55,42,0.0 +17881,73,15,46,0.0 +17881,2,19,40,0.0 +17881,60,34,50,0.0 +17881,21,10,46,0.0 +17881,19,9.2,27,0.0 +17881,53,32.8,33,0.0 +17881,6,25,26,0.0 +17881,43,46,49,0.0 +17881,25,14,10,0.0 +17881,52,7,37,0.0 +17881,32,32,20,0.0 +17882,47,9.5,40,0.0 +17882,29,123.79,1,0.0 +17882,24,4.5,10,0.0 +17882,11,21,45,0.0 +17882,67,14,41,0.0 +17882,5,21.35,3,0.0 +17882,32,32,46,0.0 +17882,76,18,30,0.0 +17882,37,26,47,0.0 +17882,26,31.23,50,0.0 +17882,74,10,22,0.0 +17882,33,2.5,17,0.0 +17882,35,18,47,0.0 +17882,2,19,28,0.0 +17882,17,39,6,0.0 +17882,71,21.5,27,0.0 +17882,1,18,44,0.0 +17882,61,28.5,30,0.0 +17882,42,14,50,0.0 +17882,54,7.45,36,0.0 +17882,20,81,31,0.0 +17882,50,16.25,42,0.0 +17882,31,12.5,41,0.0 +17882,28,45.6,27,0.0 +17882,49,20,1,0.0 +17882,12,38,32,0.0 +17882,34,14,12,0.0 +17882,10,31,44,0.0 +17882,62,49.3,38,0.0 +17882,40,18.4,50,0.0 +17882,39,18,43,0.0 +17882,38,263.5,1,0.0 +17882,4,22,36,0.0 +17882,63,43.9,18,0.0 +17882,75,7.75,1,0.0 +17882,3,10,18,0.0 +17882,44,19.45,11,0.0 +17882,56,38,4,0.0 +17882,21,10,9,0.0 +17882,73,15,30,0.0 +17882,57,19.5,10,0.0 +17882,30,25.89,22,0.0 +17882,43,46,1,0.0 +17882,41,9.65,7,0.0 +17882,65,21.05,37,0.0 +17882,48,12.75,25,0.0 +17882,60,34,23,0.0 +17882,22,21,31,0.0 +17882,72,34.8,24,0.0 +17882,19,9.2,36,0.0 +17882,27,43.9,37,0.0 +17882,64,33.25,19,0.0 +17882,6,25,23,0.0 +17882,14,23.25,3,0.0 +17882,13,6,11,0.0 +17882,52,7,10,0.0 +17882,77,13,36,0.0 +17882,36,19,40,0.0 +17882,58,13.25,44,0.0 +17882,46,12,25,0.0 +17882,51,53,44,0.0 +17882,16,17.45,18,0.0 +17882,25,14,7,0.0 +17882,23,9,26,0.0 +17882,15,15.5,41,0.0 +17882,68,12.5,39,0.0 +17882,70,15,12,0.0 +17882,69,36,18,0.0 +17882,9,97,15,0.0 +17882,66,17,16,0.0 +17883,48,12.75,26,0.0 +17883,38,263.5,1,0.0 +17883,50,16.25,25,0.0 +17883,2,19,50,0.0 +17883,30,25.89,30,0.0 +17883,69,36,2,0.0 +17883,64,33.25,33,0.0 +17883,71,21.5,39,0.0 +17883,18,62.5,19,0.0 +17883,32,32,37,0.0 +17883,74,10,17,0.0 +17883,34,14,5,0.0 +17884,28,45.6,37,0.0 +17884,51,53,20,0.0 +17884,53,32.8,45,0.0 +17884,76,18,24,0.0 +17884,55,24,20,0.0 +17884,23,9,19,0.0 +17884,75,7.75,8,0.0 +17884,8,40,15,0.0 +17884,26,31.23,3,0.0 +17884,73,15,17,0.0 +17884,35,18,17,0.0 +17884,68,12.5,40,0.0 +17884,47,9.5,38,0.0 +17884,20,81,18,0.0 +17884,61,28.5,43,0.0 +17884,43,46,49,0.0 +17884,52,7,31,0.0 +17884,6,25,20,0.0 +17884,16,17.45,30,0.0 +17884,74,10,9,0.0 +17884,36,19,17,0.0 +17884,64,33.25,13,0.0 +17884,18,62.5,34,0.0 +17884,50,16.25,48,0.0 +17885,74,10,17,0.0 +17885,10,31,20,0.0 +17885,71,21.5,22,0.0 +17885,12,38,41,0.0 +17885,40,18.4,50,0.0 +17885,29,123.79,22,0.0 +17885,55,24,47,0.0 +17885,1,18,11,0.0 +17885,19,9.2,39,0.0 +17885,41,9.65,36,0.0 +17885,62,49.3,2,0.0 +17885,26,31.23,35,0.0 +17885,49,20,40,0.0 +17885,24,4.5,21,0.0 +17885,47,9.5,42,0.0 +17885,39,18,43,0.0 +17885,57,19.5,9,0.0 +17885,4,22,20,0.0 +17885,63,43.9,4,0.0 +17885,36,19,28,0.0 +17885,2,19,19,0.0 +17885,30,25.89,33,0.0 +17885,3,10,3,0.0 +17885,33,2.5,14,0.0 +17886,19,9.2,24,0.0 +17886,46,12,25,0.0 +17886,48,12.75,26,0.0 +17886,60,34,37,0.0 +17886,28,45.6,25,0.0 +17886,67,14,32,0.0 +17886,26,31.23,30,0.0 +17886,7,30,1,0.0 +17886,23,9,11,0.0 +17886,77,13,42,0.0 +17886,66,17,22,0.0 +17886,1,18,39,0.0 +17886,52,7,46,0.0 +17886,69,36,43,0.0 +17887,32,32,40,0.0 +17887,51,53,6,0.0 +17887,76,18,9,0.0 +17887,13,6,11,0.0 +17887,31,12.5,2,0.0 +17887,49,20,19,0.0 +17888,74,10,31,0.0 +17888,51,53,15,0.0 +17888,6,25,23,0.0 +17888,32,32,50,0.0 +17888,66,17,8,0.0 +17888,2,19,49,0.0 +17888,60,34,27,0.0 +17888,67,14,5,0.0 +17888,54,7.45,27,0.0 +17888,3,10,36,0.0 +17888,39,18,45,0.0 +17888,31,12.5,30,0.0 +17888,20,81,8,0.0 +17888,24,4.5,22,0.0 +17888,40,18.4,25,0.0 +17888,41,9.65,21,0.0 +17888,22,21,1,0.0 +17888,34,14,19,0.0 +17888,1,18,11,0.0 +17888,19,9.2,40,0.0 +17888,59,55,14,0.0 +17888,35,18,32,0.0 +17888,73,15,49,0.0 +17888,14,23.25,9,0.0 +17888,37,26,29,0.0 +17888,62,49.3,16,0.0 +17888,69,36,36,0.0 +17888,53,32.8,41,0.0 +17888,13,6,1,0.0 +17888,48,12.75,15,0.0 +17888,47,9.5,18,0.0 +17888,28,45.6,43,0.0 +17888,58,13.25,38,0.0 +17888,12,38,35,0.0 +17888,27,43.9,7,0.0 +17888,26,31.23,37,0.0 +17888,29,123.79,19,0.0 +17888,65,21.05,43,0.0 +17888,63,43.9,26,0.0 +17888,64,33.25,12,0.0 +17888,75,7.75,28,0.0 +17888,46,12,43,0.0 +17888,77,13,16,0.0 +17888,4,22,23,0.0 +17888,38,263.5,43,0.0 +17888,52,7,19,0.0 +17888,76,18,46,0.0 +17888,16,17.45,12,0.0 +17888,68,12.5,39,0.0 +17888,7,30,36,0.0 +17888,49,20,30,0.0 +17888,61,28.5,33,0.0 +17888,18,62.5,24,0.0 +17888,23,9,48,0.0 +17888,36,19,46,0.0 +17888,72,34.8,45,0.0 +17888,70,15,28,0.0 +17888,25,14,17,0.0 +17888,8,40,22,0.0 +17888,43,46,27,0.0 +17888,71,21.5,38,0.0 +17888,21,10,43,0.0 +17888,50,16.25,9,0.0 +17888,17,39,29,0.0 +17888,55,24,8,0.0 +17888,45,9.5,48,0.0 +17888,9,97,14,0.0 +17888,5,21.35,35,0.0 +17889,21,10,26,0.0 +17889,28,45.6,36,0.0 +17889,58,13.25,40,0.0 +17889,64,33.25,25,0.0 +17889,12,38,22,0.0 +17889,72,34.8,17,0.0 +17889,5,21.35,9,0.0 +17889,8,40,1,0.0 +17889,27,43.9,22,0.0 +17889,15,15.5,20,0.0 +17889,50,16.25,7,0.0 +17889,77,13,36,0.0 +17889,24,4.5,24,0.0 +17889,59,55,25,0.0 +17889,69,36,26,0.0 +17889,6,25,49,0.0 +17889,48,12.75,43,0.0 +17889,1,18,6,0.0 +17889,36,19,32,0.0 +17889,14,23.25,2,0.0 +17889,20,81,21,0.0 +17889,19,9.2,39,0.0 +17889,54,7.45,12,0.0 +17889,67,14,6,0.0 +17889,22,21,38,0.0 +17889,40,18.4,9,0.0 +17889,29,123.79,27,0.0 +17889,41,9.65,48,0.0 +17889,74,10,10,0.0 +17889,46,12,41,0.0 +17889,31,12.5,38,0.0 +17889,9,97,10,0.0 +17889,53,32.8,26,0.0 +17889,44,19.45,23,0.0 +17889,49,20,26,0.0 +17889,47,9.5,41,0.0 +17889,70,15,36,0.0 +17889,33,2.5,4,0.0 +17889,75,7.75,9,0.0 +17889,39,18,50,0.0 +17889,51,53,23,0.0 +17889,60,34,30,0.0 +17889,52,7,21,0.0 +17889,56,38,35,0.0 +17889,62,49.3,10,0.0 +17889,57,19.5,47,0.0 +17889,11,21,26,0.0 +17889,38,263.5,2,0.0 +17889,65,21.05,7,0.0 +17890,67,14,18,0.0 +17890,21,10,40,0.0 +17890,40,18.4,24,0.0 +17890,72,34.8,39,0.0 +17890,69,36,42,0.0 +17890,70,15,13,0.0 +17890,59,55,40,0.0 +17890,16,17.45,38,0.0 +17890,46,12,37,0.0 +17890,39,18,45,0.0 +17890,29,123.79,28,0.0 +17890,66,17,49,0.0 +17890,61,28.5,17,0.0 +17890,42,14,31,0.0 +17890,41,9.65,5,0.0 +17890,19,9.2,1,0.0 +17890,4,22,18,0.0 +17890,43,46,22,0.0 +17890,65,21.05,2,0.0 +17890,9,97,9,0.0 +17891,68,12.5,2,0.0 +17891,72,34.8,23,0.0 +17891,17,39,36,0.0 +17891,69,36,29,0.0 +17891,47,9.5,22,0.0 +17891,57,19.5,3,0.0 +17891,43,46,37,0.0 +17891,19,9.2,3,0.0 +17891,46,12,25,0.0 +17891,62,49.3,37,0.0 +17891,44,19.45,20,0.0 +17891,35,18,21,0.0 +17891,12,38,14,0.0 +17891,58,13.25,27,0.0 +17891,75,7.75,45,0.0 +17891,16,17.45,23,0.0 +17891,42,14,39,0.0 +17891,14,23.25,46,0.0 +17891,56,38,21,0.0 +17891,34,14,25,0.0 +17891,51,53,31,0.0 +17891,26,31.23,21,0.0 +17891,71,21.5,24,0.0 +17891,2,19,29,0.0 +17891,63,43.9,8,0.0 +17891,7,30,7,0.0 +17891,22,21,28,0.0 +17891,13,6,38,0.0 +17891,70,15,22,0.0 +17891,18,62.5,12,0.0 +17891,5,21.35,48,0.0 +17891,24,4.5,4,0.0 +17891,36,19,8,0.0 +17891,39,18,26,0.0 +17891,64,33.25,50,0.0 +17891,38,263.5,5,0.0 +17891,11,21,10,0.0 +17891,3,10,14,0.0 +17891,66,17,50,0.0 +17891,30,25.89,46,0.0 +17891,27,43.9,8,0.0 +17891,60,34,19,0.0 +17892,59,55,45,0.0 +17892,76,18,42,0.0 +17892,33,2.5,12,0.0 +17892,39,18,6,0.0 +17892,66,17,13,0.0 +17892,26,31.23,23,0.0 +17892,15,15.5,33,0.0 +17892,67,14,46,0.0 +17892,61,28.5,43,0.0 +17892,65,21.05,21,0.0 +17893,22,21,29,0.0 +17893,59,55,44,0.0 +17893,43,46,39,0.0 +17893,61,28.5,30,0.0 +17893,36,19,2,0.0 +17893,4,22,21,0.0 +17893,74,10,37,0.0 +17893,38,263.5,36,0.0 +17893,71,21.5,41,0.0 +17893,23,9,39,0.0 +17893,5,21.35,25,0.0 +17893,9,97,3,0.0 +17893,19,9.2,14,0.0 +17893,16,17.45,30,0.0 +17893,3,10,49,0.0 +17893,12,38,42,0.0 +17893,37,26,2,0.0 +17893,58,13.25,24,0.0 +17893,57,19.5,49,0.0 +17893,18,62.5,4,0.0 +17893,10,31,42,0.0 +17893,25,14,1,0.0 +17893,70,15,15,0.0 +17893,28,45.6,29,0.0 +17893,77,13,32,0.0 +17893,69,36,34,0.0 +17893,46,12,43,0.0 +17893,13,6,8,0.0 +17893,21,10,8,0.0 +17893,73,15,39,0.0 +17894,4,22,44,0.0 +17894,73,15,47,0.0 +17894,69,36,4,0.0 +17894,20,81,36,0.0 +17894,72,34.8,24,0.0 +17894,32,32,11,0.0 +17894,44,19.45,47,0.0 +17894,36,19,36,0.0 +17894,68,12.5,39,0.0 +17894,46,12,45,0.0 +17894,30,25.89,48,0.0 +17894,39,18,29,0.0 +17894,53,32.8,32,0.0 +17894,24,4.5,8,0.0 +17894,9,97,36,0.0 +17894,16,17.45,39,0.0 +17894,57,19.5,41,0.0 +17894,33,2.5,26,0.0 +17894,35,18,30,0.0 +17894,34,14,28,0.0 +17894,18,62.5,42,0.0 +17894,17,39,47,0.0 +17894,56,38,8,0.0 +17894,51,53,16,0.0 +17894,6,25,25,0.0 +17894,21,10,19,0.0 +17894,77,13,21,0.0 +17894,54,7.45,33,0.0 +17894,45,9.5,27,0.0 +17894,52,7,35,0.0 +17894,70,15,22,0.0 +17894,65,21.05,6,0.0 +17894,26,31.23,1,0.0 +17894,38,263.5,15,0.0 +17894,13,6,49,0.0 +17894,31,12.5,38,0.0 +17894,66,17,13,0.0 +17894,2,19,47,0.0 +17894,58,13.25,14,0.0 +17894,10,31,12,0.0 +17894,63,43.9,26,0.0 +17894,12,38,26,0.0 +17894,19,9.2,1,0.0 +17895,58,13.25,24,0.0 +17895,57,19.5,27,0.0 +17895,29,123.79,23,0.0 +17895,74,10,41,0.0 +17895,61,28.5,9,0.0 +17895,40,18.4,30,0.0 +17895,22,21,6,0.0 +17895,67,14,3,0.0 +17895,53,32.8,19,0.0 +17895,49,20,49,0.0 +17895,60,34,18,0.0 +17895,20,81,38,0.0 +17895,17,39,20,0.0 +17895,71,21.5,42,0.0 +17896,51,53,15,0.0 +17896,58,13.25,31,0.0 +17896,43,46,21,0.0 +17896,20,81,48,0.0 +17896,68,12.5,42,0.0 +17896,6,25,43,0.0 +17896,49,20,5,0.0 +17896,21,10,3,0.0 +17896,45,9.5,43,0.0 +17896,26,31.23,10,0.0 +17896,69,36,24,0.0 +17896,36,19,36,0.0 +17896,29,123.79,29,0.0 +17896,39,18,23,0.0 +17896,7,30,6,0.0 +17896,73,15,7,0.0 +17896,1,18,34,0.0 +17896,48,12.75,7,0.0 +17896,77,13,45,0.0 +17896,53,32.8,22,0.0 +17896,31,12.5,38,0.0 +17896,57,19.5,8,0.0 +17896,47,9.5,6,0.0 +17896,19,9.2,47,0.0 +17896,54,7.45,37,0.0 +17896,23,9,43,0.0 +17896,74,10,8,0.0 +17896,62,49.3,32,0.0 +17896,50,16.25,8,0.0 +17896,14,23.25,15,0.0 +17896,35,18,40,0.0 +17896,28,45.6,22,0.0 +17896,59,55,42,0.0 +17896,10,31,11,0.0 +17896,55,24,18,0.0 +17896,30,25.89,49,0.0 +17896,67,14,8,0.0 +17896,33,2.5,22,0.0 +17896,17,39,41,0.0 +17896,3,10,39,0.0 +17896,18,62.5,7,0.0 +17896,38,263.5,2,0.0 +17896,71,21.5,26,0.0 +17896,65,21.05,21,0.0 +17896,76,18,28,0.0 +17896,60,34,26,0.0 +17896,25,14,9,0.0 +17896,64,33.25,33,0.0 +17896,42,14,27,0.0 +17897,30,25.89,1,0.0 +17897,59,55,30,0.0 +17897,10,31,19,0.0 +17897,39,18,47,0.0 +17897,48,12.75,22,0.0 +17897,13,6,49,0.0 +17897,6,25,6,0.0 +17897,54,7.45,48,0.0 +17897,17,39,10,0.0 +17897,25,14,49,0.0 +17897,46,12,1,0.0 +17897,49,20,37,0.0 +17897,53,32.8,10,0.0 +17897,33,2.5,21,0.0 +17897,4,22,10,0.0 +17897,42,14,38,0.0 +17897,34,14,36,0.0 +17897,56,38,25,0.0 +17897,76,18,32,0.0 +17897,32,32,40,0.0 +17897,14,23.25,28,0.0 +17897,69,36,24,0.0 +17897,1,18,37,0.0 +17897,64,33.25,38,0.0 +17897,27,43.9,11,0.0 +17897,8,40,5,0.0 +17897,43,46,16,0.0 +17897,23,9,17,0.0 +17897,52,7,14,0.0 +17897,58,13.25,18,0.0 +17897,73,15,50,0.0 +17897,40,18.4,13,0.0 +17897,77,13,43,0.0 +17897,26,31.23,19,0.0 +17897,12,38,35,0.0 +17897,18,62.5,2,0.0 +17897,20,81,19,0.0 +17897,55,24,25,0.0 +17897,11,21,9,0.0 +17897,67,14,50,0.0 +17897,44,19.45,39,0.0 +17897,50,16.25,42,0.0 +17897,28,45.6,36,0.0 +17897,16,17.45,22,0.0 +17897,71,21.5,17,0.0 +17897,47,9.5,46,0.0 +17897,31,12.5,42,0.0 +17897,35,18,17,0.0 +17897,38,263.5,11,0.0 +17897,9,97,7,0.0 +17897,45,9.5,38,0.0 +17897,57,19.5,16,0.0 +17897,21,10,45,0.0 +17897,66,17,7,0.0 +17897,61,28.5,8,0.0 +17897,5,21.35,22,0.0 +17897,65,21.05,6,0.0 +17897,68,12.5,38,0.0 +17897,19,9.2,3,0.0 +17897,22,21,24,0.0 +17897,36,19,38,0.0 +17897,3,10,27,0.0 +17897,72,34.8,4,0.0 +17898,52,7,34,0.0 +17898,13,6,36,0.0 +17898,23,9,11,0.0 +17898,12,38,45,0.0 +17898,8,40,40,0.0 +17898,43,46,46,0.0 +17898,56,38,14,0.0 +17898,74,10,47,0.0 +17898,77,13,16,0.0 +17898,20,81,47,0.0 +17898,63,43.9,32,0.0 +17898,57,19.5,33,0.0 +17898,28,45.6,9,0.0 +17898,65,21.05,3,0.0 +17898,69,36,2,0.0 +17898,46,12,5,0.0 +17898,71,21.5,6,0.0 +17898,22,21,48,0.0 +17898,17,39,25,0.0 +17898,48,12.75,47,0.0 +17898,66,17,12,0.0 +17898,55,24,13,0.0 +17898,34,14,2,0.0 +17898,53,32.8,28,0.0 +17898,31,12.5,42,0.0 +17898,62,49.3,48,0.0 +17898,50,16.25,36,0.0 +17898,58,13.25,41,0.0 +17898,60,34,18,0.0 +17898,24,4.5,2,0.0 +17898,30,25.89,5,0.0 +17898,76,18,32,0.0 +17898,39,18,10,0.0 +17898,75,7.75,19,0.0 +17898,27,43.9,39,0.0 +17898,54,7.45,23,0.0 +17898,10,31,19,0.0 +17898,2,19,16,0.0 +17898,36,19,3,0.0 +17898,40,18.4,31,0.0 +17898,35,18,23,0.0 +17898,5,21.35,35,0.0 +17898,47,9.5,28,0.0 +17898,59,55,14,0.0 +17898,1,18,2,0.0 +17898,26,31.23,45,0.0 +17898,64,33.25,9,0.0 +17898,4,22,36,0.0 +17898,11,21,47,0.0 +17899,12,38,37,0.0 +17899,43,46,31,0.0 +17899,73,15,28,0.0 +17899,60,34,38,0.0 +17899,69,36,45,0.0 +17899,61,28.5,38,0.0 +17899,27,43.9,15,0.0 +17899,36,19,20,0.0 +17899,8,40,5,0.0 +17899,1,18,29,0.0 +17899,20,81,40,0.0 +17899,11,21,36,0.0 +17899,49,20,24,0.0 +17899,62,49.3,48,0.0 +17899,28,45.6,26,0.0 +17899,76,18,12,0.0 +17899,7,30,10,0.0 +17899,9,97,48,0.0 +17899,19,9.2,47,0.0 +17899,33,2.5,33,0.0 +17899,66,17,11,0.0 +17899,64,33.25,28,0.0 +17899,52,7,20,0.0 +17899,16,17.45,3,0.0 +17899,75,7.75,28,0.0 +17899,2,19,42,0.0 +17899,17,39,2,0.0 +17900,31,12.5,1,0.0 +17900,75,7.75,18,0.0 +17900,40,18.4,17,0.0 +17900,70,15,39,0.0 +17900,12,38,35,0.0 +17900,19,9.2,32,0.0 +17900,68,12.5,49,0.0 +17900,46,12,23,0.0 +17900,33,2.5,50,0.0 +17900,20,81,1,0.0 +17901,3,10,4,0.0 +17901,15,15.5,36,0.0 +17901,1,18,42,0.0 +17901,13,6,9,0.0 +17901,62,49.3,27,0.0 +17901,77,13,14,0.0 +17901,58,13.25,29,0.0 +17901,38,263.5,8,0.0 +17901,14,23.25,42,0.0 +17901,21,10,30,0.0 +17901,24,4.5,28,0.0 +17901,25,14,2,0.0 +17901,20,81,25,0.0 +17901,74,10,50,0.0 +17901,64,33.25,32,0.0 +17901,70,15,7,0.0 +17901,30,25.89,43,0.0 +17901,4,22,18,0.0 +17901,53,32.8,19,0.0 +17901,60,34,4,0.0 +17901,69,36,13,0.0 +17901,52,7,31,0.0 +17901,2,19,47,0.0 +17901,63,43.9,20,0.0 +17901,31,12.5,32,0.0 +17901,61,28.5,7,0.0 +17901,12,38,12,0.0 +17901,32,32,5,0.0 +17901,65,21.05,25,0.0 +17901,59,55,20,0.0 +17901,76,18,48,0.0 +17901,6,25,5,0.0 +17901,11,21,41,0.0 +17901,46,12,44,0.0 +17901,72,34.8,22,0.0 +17901,22,21,7,0.0 +17901,54,7.45,31,0.0 +17901,48,12.75,34,0.0 +17902,52,7,23,0.0 +17902,74,10,29,0.0 +17902,12,38,10,0.0 +17902,40,18.4,29,0.0 +17902,6,25,15,0.0 +17902,13,6,42,0.0 +17902,1,18,47,0.0 +17902,62,49.3,42,0.0 +17902,41,9.65,13,0.0 +17902,76,18,18,0.0 +17902,37,26,36,0.0 +17902,38,263.5,35,0.0 +17902,8,40,44,0.0 +17902,59,55,2,0.0 +17902,63,43.9,50,0.0 +17903,8,40,13,0.0 +17903,20,81,2,0.0 +17903,70,15,38,0.0 +17903,31,12.5,43,0.0 +17903,42,14,15,0.0 +17903,7,30,33,0.0 +17903,48,12.75,44,0.0 +17903,3,10,46,0.0 +17903,38,263.5,25,0.0 +17903,75,7.75,32,0.0 +17903,5,21.35,5,0.0 +17903,74,10,33,0.0 +17903,46,12,17,0.0 +17903,76,18,21,0.0 +17903,56,38,35,0.0 +17903,77,13,26,0.0 +17903,17,39,23,0.0 +17903,23,9,15,0.0 +17903,15,15.5,9,0.0 +17903,73,15,23,0.0 +17903,49,20,1,0.0 +17903,60,34,48,0.0 +17904,41,9.65,26,0.0 +17904,32,32,49,0.0 +17904,61,28.5,37,0.0 +17904,1,18,18,0.0 +17904,66,17,19,0.0 +17904,16,17.45,9,0.0 +17904,28,45.6,5,0.0 +17904,40,18.4,2,0.0 +17904,67,14,40,0.0 +17904,62,49.3,46,0.0 +17904,48,12.75,22,0.0 +17904,46,12,45,0.0 +17904,58,13.25,23,0.0 +17904,47,9.5,5,0.0 +17904,12,38,39,0.0 +17904,76,18,19,0.0 +17904,69,36,2,0.0 +17904,5,21.35,29,0.0 +17904,38,263.5,27,0.0 +17904,17,39,15,0.0 +17904,36,19,30,0.0 +17904,19,9.2,49,0.0 +17904,6,25,50,0.0 +17904,37,26,38,0.0 +17904,45,9.5,48,0.0 +17904,39,18,26,0.0 +17904,27,43.9,25,0.0 +17904,57,19.5,9,0.0 +17904,15,15.5,44,0.0 +17904,60,34,41,0.0 +17904,63,43.9,41,0.0 +17904,34,14,37,0.0 +17904,43,46,50,0.0 +17904,49,20,39,0.0 +17904,75,7.75,50,0.0 +17904,50,16.25,40,0.0 +17904,70,15,50,0.0 +17904,71,21.5,45,0.0 +17904,33,2.5,3,0.0 +17904,52,7,44,0.0 +17904,44,19.45,4,0.0 +17904,53,32.8,28,0.0 +17904,23,9,10,0.0 +17904,8,40,8,0.0 +17904,73,15,14,0.0 +17904,72,34.8,20,0.0 +17904,35,18,33,0.0 +17904,25,14,31,0.0 +17904,9,97,33,0.0 +17904,20,81,11,0.0 +17904,24,4.5,24,0.0 +17904,13,6,2,0.0 +17904,59,55,44,0.0 +17904,65,21.05,36,0.0 +17905,75,7.75,47,0.0 +17905,53,32.8,49,0.0 +17905,58,13.25,43,0.0 +17905,7,30,6,0.0 +17905,28,45.6,10,0.0 +17905,26,31.23,19,0.0 +17905,16,17.45,27,0.0 +17905,46,12,7,0.0 +17905,22,21,13,0.0 +17905,8,40,35,0.0 +17905,37,26,31,0.0 +17905,61,28.5,41,0.0 +17905,49,20,6,0.0 +17905,69,36,38,0.0 +17905,55,24,50,0.0 +17905,76,18,3,0.0 +17905,17,39,50,0.0 +17905,13,6,36,0.0 +17905,38,263.5,14,0.0 +17905,39,18,37,0.0 +17905,25,14,6,0.0 +17906,54,7.45,39,0.0 +17906,6,25,39,0.0 +17906,60,34,42,0.0 +17906,35,18,35,0.0 +17906,37,26,17,0.0 +17906,14,23.25,16,0.0 +17906,55,24,10,0.0 +17906,4,22,5,0.0 +17906,19,9.2,45,0.0 +17907,77,13,4,0.0 +17907,24,4.5,20,0.0 +17907,34,14,35,0.0 +17907,47,9.5,40,0.0 +17907,36,19,22,0.0 +17907,3,10,49,0.0 +17907,18,62.5,24,0.0 +17907,44,19.45,31,0.0 +17907,33,2.5,21,0.0 +17907,45,9.5,41,0.0 +17907,11,21,5,0.0 +17907,13,6,41,0.0 +17907,32,32,5,0.0 +17907,22,21,33,0.0 +17907,28,45.6,13,0.0 +17907,66,17,48,0.0 +17907,27,43.9,11,0.0 +17907,56,38,29,0.0 +17907,65,21.05,13,0.0 +17907,72,34.8,8,0.0 +17907,54,7.45,46,0.0 +17907,70,15,31,0.0 +17907,21,10,9,0.0 +17907,69,36,25,0.0 +17907,15,15.5,45,0.0 +17907,20,81,18,0.0 +17907,64,33.25,38,0.0 +17907,30,25.89,41,0.0 +17907,7,30,9,0.0 +17907,48,12.75,19,0.0 +17907,19,9.2,11,0.0 +17907,29,123.79,38,0.0 +17907,59,55,1,0.0 +17907,71,21.5,34,0.0 +17907,25,14,32,0.0 +17907,42,14,36,0.0 +17907,26,31.23,5,0.0 +17907,17,39,20,0.0 +17907,60,34,41,0.0 +17907,35,18,19,0.0 +17907,2,19,32,0.0 +17907,14,23.25,7,0.0 +17907,39,18,42,0.0 +17907,46,12,9,0.0 +17907,4,22,11,0.0 +17907,73,15,3,0.0 +17907,62,49.3,4,0.0 +17907,63,43.9,34,0.0 +17907,55,24,43,0.0 +17907,6,25,5,0.0 +17907,9,97,4,0.0 +17907,58,13.25,40,0.0 +17907,57,19.5,28,0.0 +17907,43,46,41,0.0 +17907,61,28.5,40,0.0 +17907,49,20,22,0.0 +17907,68,12.5,46,0.0 +17907,53,32.8,20,0.0 +17907,31,12.5,16,0.0 +17907,41,9.65,20,0.0 +17907,16,17.45,37,0.0 +17907,52,7,6,0.0 +17907,37,26,34,0.0 +17907,74,10,28,0.0 +17907,67,14,5,0.0 +17907,38,263.5,47,0.0 +17907,5,21.35,17,0.0 +17907,51,53,30,0.0 +17907,50,16.25,33,0.0 +17907,12,38,1,0.0 +17908,16,17.45,11,0.0 +17908,18,62.5,8,0.0 +17908,29,123.79,41,0.0 +17908,28,45.6,23,0.0 +17908,15,15.5,25,0.0 +17908,35,18,34,0.0 +17908,10,31,16,0.0 +17908,12,38,45,0.0 +17908,38,263.5,7,0.0 +17908,70,15,45,0.0 +17908,71,21.5,33,0.0 +17908,33,2.5,19,0.0 +17908,22,21,43,0.0 +17908,41,9.65,28,0.0 +17908,30,25.89,48,0.0 +17908,4,22,1,0.0 +17908,17,39,30,0.0 +17908,6,25,26,0.0 +17908,8,40,41,0.0 +17908,67,14,11,0.0 +17908,9,97,31,0.0 +17908,21,10,34,0.0 +17908,72,34.8,47,0.0 +17908,27,43.9,14,0.0 +17908,34,14,42,0.0 +17908,50,16.25,12,0.0 +17908,73,15,25,0.0 +17908,44,19.45,39,0.0 +17908,69,36,17,0.0 +17908,46,12,8,0.0 +17908,25,14,35,0.0 +17908,13,6,6,0.0 +17908,11,21,47,0.0 +17908,65,21.05,45,0.0 +17908,64,33.25,43,0.0 +17908,32,32,1,0.0 +17908,59,55,13,0.0 +17908,26,31.23,43,0.0 +17908,42,14,35,0.0 +17908,3,10,16,0.0 +17908,37,26,46,0.0 +17908,54,7.45,26,0.0 +17908,7,30,36,0.0 +17908,20,81,49,0.0 +17908,76,18,13,0.0 +17908,48,12.75,21,0.0 +17908,56,38,36,0.0 +17908,19,9.2,36,0.0 +17908,43,46,41,0.0 +17908,77,13,15,0.0 +17908,61,28.5,37,0.0 +17908,63,43.9,48,0.0 +17908,55,24,41,0.0 +17908,47,9.5,49,0.0 +17908,14,23.25,13,0.0 +17908,53,32.8,26,0.0 +17908,51,53,47,0.0 +17908,58,13.25,37,0.0 +17908,52,7,13,0.0 +17909,35,18,50,0.0 +17909,22,21,15,0.0 +17909,45,9.5,27,0.0 +17909,53,32.8,41,0.0 +17909,15,15.5,27,0.0 +17909,43,46,22,0.0 +17909,67,14,49,0.0 +17909,10,31,49,0.0 +17909,19,9.2,3,0.0 +17909,63,43.9,5,0.0 +17909,16,17.45,8,0.0 +17909,47,9.5,32,0.0 +17909,62,49.3,42,0.0 +17909,28,45.6,37,0.0 +17909,65,21.05,36,0.0 +17909,27,43.9,38,0.0 +17909,26,31.23,38,0.0 +17909,9,97,38,0.0 +17909,60,34,29,0.0 +17909,23,9,24,0.0 +17909,59,55,26,0.0 +17909,75,7.75,46,0.0 +17909,17,39,50,0.0 +17909,50,16.25,47,0.0 +17909,73,15,49,0.0 +17909,61,28.5,30,0.0 +17909,13,6,6,0.0 +17909,42,14,26,0.0 +17909,39,18,13,0.0 +17909,38,263.5,33,0.0 +17909,40,18.4,13,0.0 +17909,25,14,50,0.0 +17909,68,12.5,38,0.0 +17909,64,33.25,20,0.0 +17909,54,7.45,8,0.0 +17909,12,38,40,0.0 +17909,1,18,39,0.0 +17909,37,26,41,0.0 +17909,72,34.8,44,0.0 +17909,36,19,47,0.0 +17909,31,12.5,33,0.0 +17909,3,10,43,0.0 +17910,7,30,14,0.0 +17910,15,15.5,5,0.0 +17910,58,13.25,9,0.0 +17910,50,16.25,14,0.0 +17910,41,9.65,5,0.0 +17910,29,123.79,39,0.0 +17910,37,26,5,0.0 +17910,12,38,5,0.0 +17910,30,25.89,34,0.0 +17910,57,19.5,39,0.0 +17910,26,31.23,46,0.0 +17910,55,24,26,0.0 +17910,21,10,17,0.0 +17910,1,18,45,0.0 +17910,27,43.9,30,0.0 +17910,48,12.75,30,0.0 +17910,40,18.4,21,0.0 +17910,13,6,19,0.0 +17910,60,34,20,0.0 +17910,72,34.8,6,0.0 +17910,31,12.5,40,0.0 +17910,73,15,28,0.0 +17910,51,53,34,0.0 +17910,38,263.5,27,0.0 +17910,11,21,4,0.0 +17910,17,39,45,0.0 +17910,46,12,29,0.0 +17910,23,9,10,0.0 +17910,44,19.45,33,0.0 +17910,63,43.9,1,0.0 +17910,14,23.25,15,0.0 +17910,8,40,24,0.0 +17910,35,18,35,0.0 +17910,3,10,19,0.0 +17910,47,9.5,14,0.0 +17910,5,21.35,31,0.0 +17910,74,10,15,0.0 +17910,9,97,38,0.0 +17910,61,28.5,12,0.0 +17910,33,2.5,28,0.0 +17910,32,32,10,0.0 +17910,68,12.5,19,0.0 +17910,19,9.2,30,0.0 +17910,71,21.5,23,0.0 +17910,52,7,49,0.0 +17910,69,36,43,0.0 +17910,53,32.8,36,0.0 +17910,24,4.5,34,0.0 +17910,20,81,3,0.0 +17910,16,17.45,49,0.0 +17910,6,25,46,0.0 +17910,28,45.6,30,0.0 +17910,43,46,13,0.0 +17910,10,31,47,0.0 +17910,64,33.25,34,0.0 +17910,77,13,38,0.0 +17910,76,18,46,0.0 +17910,66,17,3,0.0 +17910,67,14,36,0.0 +17910,4,22,22,0.0 +17910,18,62.5,16,0.0 +17910,54,7.45,45,0.0 +17910,56,38,7,0.0 +17910,45,9.5,9,0.0 +17910,2,19,8,0.0 +17910,59,55,10,0.0 +17910,22,21,43,0.0 +17910,36,19,5,0.0 +17910,34,14,12,0.0 +17910,65,21.05,1,0.0 +17910,25,14,39,0.0 +17910,70,15,22,0.0 +17910,49,20,33,0.0 +17910,75,7.75,29,0.0 +17910,62,49.3,39,0.0 +17911,49,20,5,0.0 +17911,13,6,20,0.0 +17911,66,17,49,0.0 +17911,60,34,42,0.0 +17911,19,9.2,21,0.0 +17911,38,263.5,26,0.0 +17911,30,25.89,27,0.0 +17911,31,12.5,19,0.0 +17911,42,14,32,0.0 +17911,67,14,12,0.0 +17911,48,12.75,2,0.0 +17911,61,28.5,32,0.0 +17911,11,21,2,0.0 +17911,27,43.9,43,0.0 +17911,29,123.79,4,0.0 +17911,70,15,21,0.0 +17911,25,14,31,0.0 +17911,65,21.05,14,0.0 +17911,76,18,21,0.0 +17911,71,21.5,3,0.0 +17911,24,4.5,45,0.0 +17911,52,7,44,0.0 +17911,37,26,32,0.0 +17911,68,12.5,26,0.0 +17911,73,15,20,0.0 +17911,2,19,4,0.0 +17911,69,36,6,0.0 +17911,64,33.25,38,0.0 +17911,28,45.6,32,0.0 +17911,63,43.9,27,0.0 +17911,32,32,9,0.0 +17911,74,10,50,0.0 +17911,22,21,28,0.0 +17911,75,7.75,6,0.0 +17911,46,12,43,0.0 +17911,4,22,5,0.0 +17911,3,10,13,0.0 +17911,10,31,43,0.0 +17911,45,9.5,38,0.0 +17911,47,9.5,12,0.0 +17911,26,31.23,1,0.0 +17911,56,38,46,0.0 +17911,54,7.45,40,0.0 +17911,8,40,19,0.0 +17911,40,18.4,10,0.0 +17911,12,38,30,0.0 +17911,77,13,50,0.0 +17911,15,15.5,4,0.0 +17911,35,18,18,0.0 +17911,36,19,8,0.0 +17911,39,18,25,0.0 +17911,21,10,50,0.0 +17911,50,16.25,22,0.0 +17911,16,17.45,46,0.0 +17911,18,62.5,14,0.0 +17911,72,34.8,4,0.0 +17911,33,2.5,32,0.0 +17911,1,18,45,0.0 +17911,43,46,33,0.0 +17911,53,32.8,35,0.0 +17911,23,9,43,0.0 +17911,20,81,6,0.0 +17912,24,4.5,15,0.0 +17912,49,20,18,0.0 +17912,77,13,18,0.0 +17912,69,36,23,0.0 +17913,29,123.79,28,0.0 +17913,60,34,41,0.0 +17913,35,18,20,0.0 +17913,52,7,20,0.0 +17913,64,33.25,37,0.0 +17913,17,39,10,0.0 +17913,69,36,46,0.0 +17913,7,30,13,0.0 +17913,56,38,13,0.0 +17913,13,6,17,0.0 +17913,36,19,1,0.0 +17913,63,43.9,33,0.0 +17913,30,25.89,12,0.0 +17913,54,7.45,41,0.0 +17913,68,12.5,14,0.0 +17913,62,49.3,1,0.0 +17913,31,12.5,37,0.0 +17913,4,22,7,0.0 +17913,41,9.65,30,0.0 +17913,32,32,47,0.0 +17913,74,10,44,0.0 +17913,72,34.8,24,0.0 +17913,24,4.5,50,0.0 +17913,55,24,39,0.0 +17913,8,40,31,0.0 +17913,67,14,26,0.0 +17913,77,13,20,0.0 +17913,65,21.05,20,0.0 +17913,34,14,50,0.0 +17913,46,12,31,0.0 +17913,76,18,50,0.0 +17913,14,23.25,24,0.0 +17913,3,10,20,0.0 +17913,16,17.45,38,0.0 +17913,70,15,34,0.0 +17913,11,21,3,0.0 +17913,5,21.35,29,0.0 +17913,26,31.23,1,0.0 +17913,9,97,9,0.0 +17913,75,7.75,42,0.0 +17913,19,9.2,3,0.0 +17913,49,20,21,0.0 +17913,6,25,47,0.0 +17913,58,13.25,42,0.0 +17913,28,45.6,25,0.0 +17913,23,9,14,0.0 +17913,48,12.75,35,0.0 +17913,21,10,16,0.0 +17913,50,16.25,2,0.0 +17913,45,9.5,17,0.0 +17914,23,9,33,0.0 +17914,5,21.35,41,0.0 +17914,72,34.8,39,0.0 +17914,19,9.2,31,0.0 +17914,59,55,24,0.0 +17914,27,43.9,9,0.0 +17914,70,15,15,0.0 +17914,4,22,34,0.0 +17914,60,34,36,0.0 +17914,38,263.5,49,0.0 +17914,13,6,16,0.0 +17914,26,31.23,28,0.0 +17914,44,19.45,30,0.0 +17914,69,36,34,0.0 +17914,41,9.65,43,0.0 +17914,20,81,7,0.0 +17914,75,7.75,10,0.0 +17914,65,21.05,33,0.0 +17914,48,12.75,25,0.0 +17914,36,19,35,0.0 +17914,40,18.4,41,0.0 +17914,25,14,29,0.0 +17914,1,18,12,0.0 +17914,37,26,49,0.0 +17914,77,13,47,0.0 +17914,51,53,15,0.0 +17914,7,30,26,0.0 +17914,57,19.5,4,0.0 +17914,30,25.89,41,0.0 +17914,21,10,35,0.0 +17914,56,38,26,0.0 +17914,55,24,23,0.0 +17914,31,12.5,46,0.0 +17914,14,23.25,43,0.0 +17914,16,17.45,9,0.0 +17914,35,18,38,0.0 +17914,17,39,30,0.0 +17914,61,28.5,49,0.0 +17914,76,18,38,0.0 +17914,58,13.25,47,0.0 +17914,39,18,15,0.0 +17914,68,12.5,50,0.0 +17914,10,31,8,0.0 +17914,66,17,42,0.0 +17914,74,10,47,0.0 +17914,29,123.79,10,0.0 +17914,34,14,20,0.0 +17914,12,38,5,0.0 +17914,42,14,40,0.0 +17914,28,45.6,40,0.0 +17914,46,12,44,0.0 +17914,73,15,34,0.0 +17914,43,46,14,0.0 +17914,47,9.5,50,0.0 +17914,24,4.5,40,0.0 +17914,22,21,50,0.0 +17914,54,7.45,33,0.0 +17914,15,15.5,28,0.0 +17914,67,14,10,0.0 +17914,50,16.25,33,0.0 +17914,32,32,4,0.0 +17914,33,2.5,41,0.0 +17914,71,21.5,9,0.0 +17914,9,97,5,0.0 +17914,11,21,19,0.0 +17914,53,32.8,24,0.0 +17914,3,10,9,0.0 +17914,64,33.25,11,0.0 +17914,49,20,50,0.0 +17914,52,7,32,0.0 +17914,8,40,49,0.0 +17914,63,43.9,36,0.0 +17915,36,19,32,0.0 +17915,16,17.45,8,0.0 +17915,76,18,22,0.0 +17915,29,123.79,23,0.0 +17915,54,7.45,13,0.0 +17915,24,4.5,26,0.0 +17915,5,21.35,23,0.0 +17915,12,38,50,0.0 +17915,11,21,1,0.0 +17915,8,40,15,0.0 +17915,57,19.5,19,0.0 +17915,68,12.5,40,0.0 +17915,40,18.4,20,0.0 +17915,23,9,39,0.0 +17915,47,9.5,32,0.0 +17915,58,13.25,38,0.0 +17915,42,14,32,0.0 +17915,73,15,30,0.0 +17915,65,21.05,48,0.0 +17915,56,38,2,0.0 +17915,17,39,40,0.0 +17915,3,10,7,0.0 +17915,10,31,7,0.0 +17915,46,12,43,0.0 +17915,71,21.5,36,0.0 +17915,28,45.6,7,0.0 +17915,38,263.5,20,0.0 +17915,27,43.9,14,0.0 +17915,60,34,47,0.0 +17915,59,55,5,0.0 +17915,25,14,40,0.0 +17915,14,23.25,1,0.0 +17915,9,97,26,0.0 +17915,48,12.75,24,0.0 +17915,67,14,20,0.0 +17915,70,15,18,0.0 +17915,13,6,39,0.0 +17915,51,53,21,0.0 +17915,20,81,38,0.0 +17915,44,19.45,22,0.0 +17915,22,21,29,0.0 +17915,72,34.8,45,0.0 +17915,18,62.5,13,0.0 +17915,37,26,34,0.0 +17915,15,15.5,25,0.0 +17915,30,25.89,20,0.0 +17915,49,20,30,0.0 +17915,7,30,10,0.0 +17915,4,22,17,0.0 +17915,6,25,50,0.0 +17916,50,16.25,1,0.0 +17916,58,13.25,39,0.0 +17916,7,30,33,0.0 +17916,64,33.25,9,0.0 +17916,72,34.8,4,0.0 +17916,31,12.5,1,0.0 +17916,44,19.45,11,0.0 +17916,59,55,33,0.0 +17916,45,9.5,29,0.0 +17916,20,81,22,0.0 +17916,69,36,1,0.0 +17916,9,97,40,0.0 +17916,8,40,7,0.0 +17916,14,23.25,24,0.0 +17916,48,12.75,34,0.0 +17916,70,15,18,0.0 +17916,39,18,33,0.0 +17916,35,18,1,0.0 +17916,38,263.5,4,0.0 +17916,54,7.45,14,0.0 +17916,12,38,50,0.0 +17916,33,2.5,14,0.0 +17916,76,18,28,0.0 +17916,42,14,9,0.0 +17916,1,18,48,0.0 +17916,66,17,14,0.0 +17916,27,43.9,18,0.0 +17916,19,9.2,10,0.0 +17916,5,21.35,30,0.0 +17916,51,53,6,0.0 +17916,41,9.65,12,0.0 +17916,18,62.5,13,0.0 +17916,11,21,37,0.0 +17916,22,21,50,0.0 +17916,26,31.23,3,0.0 +17916,71,21.5,31,0.0 +17916,17,39,4,0.0 +17916,3,10,13,0.0 +17916,25,14,23,0.0 +17916,32,32,19,0.0 +17916,30,25.89,32,0.0 +17916,46,12,9,0.0 +17916,15,15.5,14,0.0 +17916,63,43.9,14,0.0 +17916,29,123.79,8,0.0 +17916,56,38,28,0.0 +17916,62,49.3,46,0.0 +17916,55,24,28,0.0 +17917,7,30,45,0.0 +17917,35,18,45,0.0 +17917,37,26,3,0.0 +17917,46,12,2,0.0 +17917,50,16.25,45,0.0 +17917,18,62.5,44,0.0 +17917,40,18.4,22,0.0 +17917,2,19,11,0.0 +17917,74,10,6,0.0 +17917,13,6,46,0.0 +17917,8,40,7,0.0 +17917,12,38,44,0.0 +17917,41,9.65,5,0.0 +17918,30,25.89,14,0.0 +17918,60,34,40,0.0 +17918,5,21.35,34,0.0 +17918,2,19,30,0.0 +17918,33,2.5,4,0.0 +17918,75,7.75,26,0.0 +17918,36,19,40,0.0 +17918,15,15.5,10,0.0 +17918,12,38,42,0.0 +17918,21,10,7,0.0 +17918,39,18,34,0.0 +17918,25,14,20,0.0 +17918,10,31,29,0.0 +17918,44,19.45,50,0.0 +17918,64,33.25,14,0.0 +17918,53,32.8,3,0.0 +17918,6,25,24,0.0 +17918,48,12.75,43,0.0 +17918,18,62.5,28,0.0 +17918,66,17,14,0.0 +17918,11,21,14,0.0 +17918,45,9.5,50,0.0 +17918,67,14,47,0.0 +17918,24,4.5,24,0.0 +17918,8,40,9,0.0 +17918,7,30,38,0.0 +17918,77,13,22,0.0 +17918,56,38,49,0.0 +17918,19,9.2,9,0.0 +17918,40,18.4,31,0.0 +17918,3,10,33,0.0 +17918,13,6,47,0.0 +17918,31,12.5,39,0.0 +17918,50,16.25,49,0.0 +17918,58,13.25,23,0.0 +17918,51,53,23,0.0 +17918,42,14,35,0.0 +17918,69,36,37,0.0 +17918,27,43.9,16,0.0 +17918,73,15,34,0.0 +17918,59,55,47,0.0 +17918,70,15,13,0.0 +17918,38,263.5,6,0.0 +17918,29,123.79,46,0.0 +17918,65,21.05,42,0.0 +17918,71,21.5,41,0.0 +17918,43,46,22,0.0 +17918,68,12.5,39,0.0 +17918,23,9,1,0.0 +17918,47,9.5,47,0.0 +17918,41,9.65,29,0.0 +17918,54,7.45,1,0.0 +17918,62,49.3,10,0.0 +17918,14,23.25,48,0.0 +17918,35,18,6,0.0 +17918,63,43.9,4,0.0 +17918,57,19.5,43,0.0 +17918,22,21,31,0.0 +17918,49,20,44,0.0 +17918,9,97,8,0.0 +17918,55,24,8,0.0 +17918,4,22,18,0.0 +17918,20,81,25,0.0 +17918,16,17.45,31,0.0 +17918,28,45.6,10,0.0 +17918,61,28.5,10,0.0 +17918,46,12,14,0.0 +17918,32,32,43,0.0 +17918,17,39,16,0.0 +17918,52,7,49,0.0 +17919,77,13,43,0.0 +17919,58,13.25,36,0.0 +17919,28,45.6,30,0.0 +17919,3,10,48,0.0 +17919,45,9.5,29,0.0 +17919,68,12.5,43,0.0 +17919,10,31,31,0.0 +17919,46,12,28,0.0 +17919,35,18,9,0.0 +17919,29,123.79,12,0.0 +17919,2,19,16,0.0 +17919,23,9,32,0.0 +17919,1,18,21,0.0 +17919,25,14,37,0.0 +17919,43,46,46,0.0 +17919,71,21.5,46,0.0 +17919,65,21.05,30,0.0 +17919,73,15,8,0.0 +17919,47,9.5,12,0.0 +17919,18,62.5,36,0.0 +17919,17,39,9,0.0 +17919,33,2.5,46,0.0 +17919,24,4.5,7,0.0 +17919,54,7.45,38,0.0 +17919,39,18,43,0.0 +17919,44,19.45,39,0.0 +17919,16,17.45,28,0.0 +17919,67,14,41,0.0 +17919,22,21,11,0.0 +17919,8,40,24,0.0 +17919,15,15.5,36,0.0 +17919,52,7,47,0.0 +17919,48,12.75,13,0.0 +17919,74,10,9,0.0 +17919,66,17,35,0.0 +17919,5,21.35,41,0.0 +17919,21,10,3,0.0 +17919,34,14,27,0.0 +17919,9,97,26,0.0 +17919,26,31.23,41,0.0 +17919,64,33.25,11,0.0 +17919,53,32.8,38,0.0 +17919,62,49.3,32,0.0 +17919,31,12.5,21,0.0 +17919,51,53,9,0.0 +17919,69,36,3,0.0 +17919,32,32,6,0.0 +17919,59,55,18,0.0 +17919,36,19,14,0.0 +17919,30,25.89,39,0.0 +17919,6,25,5,0.0 +17919,42,14,1,0.0 +17919,11,21,38,0.0 +17919,4,22,47,0.0 +17919,50,16.25,3,0.0 +17919,37,26,7,0.0 +17919,40,18.4,38,0.0 +17919,7,30,13,0.0 +17919,12,38,46,0.0 +17919,20,81,19,0.0 +17919,55,24,50,0.0 +17919,27,43.9,17,0.0 +17920,3,10,20,0.0 +17920,43,46,25,0.0 +17920,7,30,50,0.0 +17920,47,9.5,8,0.0 +17920,2,19,48,0.0 +17920,28,45.6,42,0.0 +17920,66,17,1,0.0 +17920,57,19.5,32,0.0 +17920,51,53,11,0.0 +17920,15,15.5,16,0.0 +17920,42,14,16,0.0 +17920,12,38,41,0.0 +17920,10,31,11,0.0 +17920,62,49.3,40,0.0 +17920,61,28.5,6,0.0 +17920,67,14,46,0.0 +17920,24,4.5,41,0.0 +17920,30,25.89,39,0.0 +17920,55,24,22,0.0 +17920,74,10,45,0.0 +17920,13,6,37,0.0 +17920,58,13.25,30,0.0 +17920,48,12.75,1,0.0 +17920,11,21,42,0.0 +17920,34,14,23,0.0 +17920,44,19.45,20,0.0 +17920,65,21.05,45,0.0 +17920,20,81,49,0.0 +17920,17,39,19,0.0 +17920,49,20,30,0.0 +17920,71,21.5,29,0.0 +17921,36,19,35,0.0 +17921,11,21,20,0.0 +17921,30,25.89,10,0.0 +17921,19,9.2,36,0.0 +17921,71,21.5,19,0.0 +17921,41,9.65,2,0.0 +17921,76,18,24,0.0 +17921,29,123.79,11,0.0 +17921,72,34.8,11,0.0 +17921,39,18,6,0.0 +17921,7,30,2,0.0 +17921,52,7,31,0.0 +17921,54,7.45,30,0.0 +17921,35,18,38,0.0 +17921,21,10,16,0.0 +17921,74,10,42,0.0 +17921,22,21,33,0.0 +17921,25,14,36,0.0 +17921,26,31.23,48,0.0 +17921,47,9.5,6,0.0 +17921,46,12,48,0.0 +17921,73,15,6,0.0 +17921,69,36,4,0.0 +17921,20,81,50,0.0 +17921,14,23.25,42,0.0 +17921,34,14,29,0.0 +17921,3,10,28,0.0 +17921,17,39,39,0.0 +17921,68,12.5,22,0.0 +17921,43,46,31,0.0 +17921,12,38,43,0.0 +17921,33,2.5,24,0.0 +17921,48,12.75,1,0.0 +17921,23,9,41,0.0 +17921,45,9.5,15,0.0 +17921,51,53,2,0.0 +17921,2,19,28,0.0 +17921,44,19.45,46,0.0 +17921,18,62.5,6,0.0 +17921,32,32,5,0.0 +17921,6,25,35,0.0 +17921,13,6,12,0.0 +17921,66,17,25,0.0 +17921,4,22,16,0.0 +17921,56,38,22,0.0 +17921,37,26,6,0.0 +17921,16,17.45,37,0.0 +17921,38,263.5,42,0.0 +17921,75,7.75,41,0.0 +17921,5,21.35,14,0.0 +17921,64,33.25,50,0.0 +17921,67,14,24,0.0 +17921,57,19.5,22,0.0 +17922,6,25,6,0.0 +17922,44,19.45,18,0.0 +17922,5,21.35,41,0.0 +17922,73,15,3,0.0 +17922,49,20,11,0.0 +17922,53,32.8,46,0.0 +17922,19,9.2,50,0.0 +17922,39,18,20,0.0 +17922,63,43.9,37,0.0 +17922,36,19,13,0.0 +17922,70,15,39,0.0 +17922,14,23.25,4,0.0 +17922,42,14,19,0.0 +17922,37,26,46,0.0 +17922,58,13.25,42,0.0 +17922,2,19,49,0.0 +17922,54,7.45,19,0.0 +17922,68,12.5,42,0.0 +17922,50,16.25,6,0.0 +17922,65,21.05,4,0.0 +17922,35,18,48,0.0 +17922,26,31.23,11,0.0 +17922,55,24,6,0.0 +17922,51,53,21,0.0 +17922,1,18,5,0.0 +17922,66,17,43,0.0 +17922,34,14,17,0.0 +17922,8,40,23,0.0 +17922,67,14,33,0.0 +17922,32,32,38,0.0 +17922,24,4.5,9,0.0 +17922,47,9.5,49,0.0 +17923,28,45.6,27,0.0 +17923,9,97,10,0.0 +17923,39,18,35,0.0 +17923,75,7.75,6,0.0 +17923,29,123.79,43,0.0 +17923,13,6,17,0.0 +17923,7,30,18,0.0 +17923,57,19.5,47,0.0 +17923,32,32,12,0.0 +17923,33,2.5,47,0.0 +17924,42,14,37,0.0 +17924,16,17.45,28,0.0 +17924,19,9.2,1,0.0 +17924,29,123.79,13,0.0 +17924,61,28.5,23,0.0 +17924,54,7.45,29,0.0 +17924,65,21.05,27,0.0 +17924,24,4.5,23,0.0 +17924,75,7.75,24,0.0 +17924,6,25,18,0.0 +17924,58,13.25,40,0.0 +17924,14,23.25,9,0.0 +17924,28,45.6,17,0.0 +17924,67,14,48,0.0 +17924,40,18.4,5,0.0 +17924,60,34,6,0.0 +17924,62,49.3,9,0.0 +17924,37,26,43,0.0 +17924,15,15.5,45,0.0 +17924,18,62.5,33,0.0 +17924,59,55,38,0.0 +17924,72,34.8,40,0.0 +17924,25,14,25,0.0 +17924,46,12,5,0.0 +17924,77,13,13,0.0 +17924,74,10,20,0.0 +17924,47,9.5,48,0.0 +17924,8,40,47,0.0 +17924,52,7,47,0.0 +17924,55,24,12,0.0 +17924,39,18,20,0.0 +17924,2,19,24,0.0 +17924,63,43.9,50,0.0 +17924,45,9.5,44,0.0 +17924,44,19.45,42,0.0 +17924,73,15,3,0.0 +17924,1,18,38,0.0 +17924,22,21,28,0.0 +17924,21,10,15,0.0 +17924,27,43.9,30,0.0 +17924,23,9,46,0.0 +17924,76,18,5,0.0 +17925,69,36,46,0.0 +17925,14,23.25,21,0.0 +17925,39,18,17,0.0 +17925,9,97,36,0.0 +17925,8,40,38,0.0 +17925,48,12.75,12,0.0 +17925,35,18,7,0.0 +17925,65,21.05,6,0.0 +17925,51,53,38,0.0 +17925,2,19,25,0.0 +17925,75,7.75,50,0.0 +17925,66,17,44,0.0 +17926,52,7,27,0.0 +17926,43,46,12,0.0 +17926,76,18,26,0.0 +17926,73,15,48,0.0 +17926,44,19.45,4,0.0 +17926,57,19.5,35,0.0 +17926,17,39,30,0.0 +17926,22,21,46,0.0 +17926,66,17,1,0.0 +17926,60,34,37,0.0 +17926,58,13.25,13,0.0 +17926,20,81,29,0.0 +17926,67,14,28,0.0 +17926,38,263.5,12,0.0 +17926,34,14,32,0.0 +17926,41,9.65,25,0.0 +17926,77,13,29,0.0 +17926,3,10,11,0.0 +17926,51,53,36,0.0 +17926,50,16.25,48,0.0 +17926,18,62.5,37,0.0 +17926,35,18,45,0.0 +17926,65,21.05,41,0.0 +17926,7,30,13,0.0 +17926,53,32.8,8,0.0 +17926,72,34.8,18,0.0 +17926,26,31.23,6,0.0 +17926,40,18.4,16,0.0 +17926,19,9.2,20,0.0 +17926,11,21,16,0.0 +17926,28,45.6,25,0.0 +17926,31,12.5,20,0.0 +17926,37,26,25,0.0 +17926,59,55,3,0.0 +17926,21,10,19,0.0 +17926,74,10,27,0.0 +17926,10,31,19,0.0 +17926,55,24,1,0.0 +17926,68,12.5,42,0.0 +17926,8,40,22,0.0 +17926,36,19,45,0.0 +17926,39,18,26,0.0 +17926,30,25.89,1,0.0 +17926,27,43.9,20,0.0 +17926,46,12,37,0.0 +17927,59,55,34,0.0 +17927,61,28.5,45,0.0 +17927,4,22,20,0.0 +17927,20,81,37,0.0 +17927,31,12.5,34,0.0 +17927,66,17,28,0.0 +17927,2,19,41,0.0 +17927,14,23.25,10,0.0 +17927,64,33.25,18,0.0 +17927,10,31,34,0.0 +17927,26,31.23,5,0.0 +17927,3,10,25,0.0 +17927,51,53,28,0.0 +17927,77,13,35,0.0 +17927,47,9.5,1,0.0 +17927,62,49.3,24,0.0 +17927,49,20,6,0.0 +17927,43,46,21,0.0 +17927,74,10,6,0.0 +17927,32,32,14,0.0 +17927,21,10,41,0.0 +17927,27,43.9,19,0.0 +17927,30,25.89,21,0.0 +17927,18,62.5,36,0.0 +17927,71,21.5,14,0.0 +17927,35,18,19,0.0 +17927,13,6,14,0.0 +17927,24,4.5,39,0.0 +17927,55,24,33,0.0 +17927,36,19,44,0.0 +17927,28,45.6,7,0.0 +17927,70,15,31,0.0 +17927,19,9.2,17,0.0 +17927,17,39,47,0.0 +17927,8,40,39,0.0 +17927,72,34.8,25,0.0 +17927,44,19.45,23,0.0 +17927,52,7,1,0.0 +17927,12,38,42,0.0 +17927,42,14,7,0.0 +17927,53,32.8,16,0.0 +17927,63,43.9,1,0.0 +17928,64,33.25,39,0.0 +17928,58,13.25,10,0.0 +17928,66,17,23,0.0 +17928,56,38,22,0.0 +17928,61,28.5,45,0.0 +17928,30,25.89,5,0.0 +17928,74,10,24,0.0 +17928,68,12.5,2,0.0 +17928,38,263.5,38,0.0 +17928,71,21.5,2,0.0 +17928,10,31,11,0.0 +17928,31,12.5,35,0.0 +17928,39,18,31,0.0 +17928,60,34,16,0.0 +17928,17,39,35,0.0 +17928,36,19,35,0.0 +17928,50,16.25,43,0.0 +17928,29,123.79,14,0.0 +17928,69,36,7,0.0 +17928,51,53,22,0.0 +17928,34,14,41,0.0 +17928,45,9.5,28,0.0 +17928,77,13,13,0.0 +17928,59,55,26,0.0 +17928,47,9.5,9,0.0 +17928,6,25,42,0.0 +17928,2,19,41,0.0 +17928,54,7.45,37,0.0 +17928,23,9,19,0.0 +17928,62,49.3,47,0.0 +17928,19,9.2,34,0.0 +17928,28,45.6,50,0.0 +17928,53,32.8,1,0.0 +17928,5,21.35,13,0.0 +17928,37,26,31,0.0 +17928,46,12,21,0.0 +17928,44,19.45,11,0.0 +17928,15,15.5,1,0.0 +17928,24,4.5,15,0.0 +17928,9,97,43,0.0 +17928,20,81,43,0.0 +17928,18,62.5,42,0.0 +17928,12,38,36,0.0 +17928,25,14,16,0.0 +17928,11,21,7,0.0 +17928,26,31.23,45,0.0 +17928,52,7,27,0.0 +17928,73,15,25,0.0 +17928,65,21.05,47,0.0 +17928,43,46,6,0.0 +17928,3,10,19,0.0 +17928,7,30,15,0.0 +17928,42,14,6,0.0 +17928,76,18,25,0.0 +17928,13,6,10,0.0 +17928,49,20,19,0.0 +17928,40,18.4,7,0.0 +17928,75,7.75,32,0.0 +17928,8,40,18,0.0 +17928,55,24,21,0.0 +17928,27,43.9,42,0.0 +17928,21,10,37,0.0 +17928,16,17.45,31,0.0 +17928,63,43.9,30,0.0 +17928,32,32,10,0.0 +17928,41,9.65,4,0.0 +17929,18,62.5,18,0.0 +17929,69,36,5,0.0 +17929,51,53,17,0.0 +17929,68,12.5,35,0.0 +17929,28,45.6,39,0.0 +17929,37,26,26,0.0 +17929,3,10,29,0.0 +17929,23,9,39,0.0 +17929,19,9.2,17,0.0 +17929,9,97,16,0.0 +17929,34,14,18,0.0 +17929,61,28.5,48,0.0 +17929,42,14,36,0.0 +17929,5,21.35,20,0.0 +17929,41,9.65,50,0.0 +17929,4,22,50,0.0 +17929,75,7.75,37,0.0 +17929,6,25,39,0.0 +17930,27,43.9,3,0.0 +17930,19,9.2,9,0.0 +17930,60,34,9,0.0 +17930,47,9.5,31,0.0 +17930,17,39,38,0.0 +17930,5,21.35,41,0.0 +17930,44,19.45,25,0.0 +17930,3,10,20,0.0 +17930,24,4.5,38,0.0 +17930,2,19,16,0.0 +17930,37,26,19,0.0 +17930,11,21,30,0.0 +17930,73,15,8,0.0 +17930,50,16.25,22,0.0 +17930,74,10,14,0.0 +17930,18,62.5,19,0.0 +17930,25,14,31,0.0 +17930,54,7.45,22,0.0 +17930,56,38,23,0.0 +17931,27,43.9,2,0.0 +17931,59,55,3,0.0 +17931,1,18,46,0.0 +17931,70,15,7,0.0 +17931,63,43.9,50,0.0 +17931,68,12.5,38,0.0 +17931,5,21.35,21,0.0 +17931,67,14,15,0.0 +17931,53,32.8,30,0.0 +17931,31,12.5,38,0.0 +17931,34,14,22,0.0 +17931,71,21.5,8,0.0 +17931,38,263.5,26,0.0 +17931,26,31.23,19,0.0 +17931,37,26,24,0.0 +17931,51,53,34,0.0 +17931,20,81,37,0.0 +17931,30,25.89,6,0.0 +17931,52,7,2,0.0 +17931,23,9,41,0.0 +17931,61,28.5,11,0.0 +17931,56,38,21,0.0 +17931,64,33.25,8,0.0 +17931,62,49.3,46,0.0 +17931,35,18,17,0.0 +17931,75,7.75,44,0.0 +17931,12,38,2,0.0 +17931,28,45.6,45,0.0 +17931,49,20,43,0.0 +17931,60,34,22,0.0 +17931,21,10,3,0.0 +17931,33,2.5,28,0.0 +17932,45,9.5,40,0.0 +17932,68,12.5,32,0.0 +17932,70,15,34,0.0 +17932,76,18,27,0.0 +17932,34,14,49,0.0 +17932,17,39,14,0.0 +17932,8,40,11,0.0 +17932,9,97,5,0.0 +17932,62,49.3,17,0.0 +17932,64,33.25,41,0.0 +17932,59,55,46,0.0 +17932,14,23.25,13,0.0 +17933,12,38,12,0.0 +17933,66,17,12,0.0 +17933,33,2.5,35,0.0 +17933,65,21.05,17,0.0 +17933,46,12,34,0.0 +17933,63,43.9,20,0.0 +17933,56,38,13,0.0 +17933,11,21,9,0.0 +17933,58,13.25,12,0.0 +17933,52,7,15,0.0 +17933,60,34,3,0.0 +17933,61,28.5,33,0.0 +17933,41,9.65,34,0.0 +17933,30,25.89,46,0.0 +17933,9,97,18,0.0 +17933,75,7.75,33,0.0 +17933,15,15.5,4,0.0 +17933,70,15,19,0.0 +17933,69,36,27,0.0 +17933,55,24,8,0.0 +17933,34,14,28,0.0 +17933,23,9,21,0.0 +17933,2,19,18,0.0 +17933,72,34.8,27,0.0 +17933,24,4.5,31,0.0 +17933,31,12.5,34,0.0 +17933,13,6,50,0.0 +17933,32,32,47,0.0 +17933,77,13,4,0.0 +17933,73,15,20,0.0 +17933,71,21.5,50,0.0 +17933,54,7.45,16,0.0 +17933,17,39,19,0.0 +17933,35,18,10,0.0 +17933,49,20,20,0.0 +17933,16,17.45,39,0.0 +17933,20,81,47,0.0 +17933,8,40,19,0.0 +17933,19,9.2,34,0.0 +17933,3,10,42,0.0 +17933,53,32.8,1,0.0 +17933,27,43.9,5,0.0 +17933,45,9.5,46,0.0 +17933,68,12.5,10,0.0 +17933,37,26,23,0.0 +17933,38,263.5,38,0.0 +17933,1,18,49,0.0 +17933,62,49.3,18,0.0 +17933,50,16.25,5,0.0 +17933,5,21.35,9,0.0 +17933,51,53,32,0.0 +17933,59,55,12,0.0 +17933,6,25,35,0.0 +17933,25,14,19,0.0 +17933,40,18.4,8,0.0 +17933,28,45.6,46,0.0 +17933,44,19.45,44,0.0 +17933,29,123.79,30,0.0 +17933,10,31,37,0.0 +17933,22,21,50,0.0 +17933,18,62.5,2,0.0 +17933,21,10,20,0.0 +17933,4,22,24,0.0 +17933,48,12.75,19,0.0 +17933,67,14,3,0.0 +17933,14,23.25,40,0.0 +17933,7,30,39,0.0 +17933,47,9.5,39,0.0 +17933,42,14,42,0.0 +17933,74,10,46,0.0 +17933,26,31.23,13,0.0 +17933,36,19,27,0.0 +17933,76,18,13,0.0 +17933,43,46,29,0.0 +17933,64,33.25,50,0.0 +17933,57,19.5,2,0.0 +17933,39,18,7,0.0 +17934,38,263.5,22,0.0 +17934,51,53,18,0.0 +17934,2,19,48,0.0 +17934,1,18,20,0.0 +17934,56,38,1,0.0 +17934,62,49.3,20,0.0 +17934,32,32,32,0.0 +17934,76,18,39,0.0 +17934,70,15,33,0.0 +17934,69,36,13,0.0 +17934,25,14,49,0.0 +17934,72,34.8,15,0.0 +17934,66,17,26,0.0 +17934,40,18.4,6,0.0 +17934,24,4.5,38,0.0 +17934,26,31.23,35,0.0 +17934,30,25.89,36,0.0 +17934,44,19.45,46,0.0 +17934,64,33.25,9,0.0 +17934,29,123.79,9,0.0 +17934,48,12.75,49,0.0 +17934,19,9.2,20,0.0 +17934,28,45.6,42,0.0 +17934,34,14,25,0.0 +17934,27,43.9,23,0.0 +17934,22,21,15,0.0 +17934,39,18,45,0.0 +17934,13,6,48,0.0 +17934,4,22,4,0.0 +17934,45,9.5,18,0.0 +17934,36,19,30,0.0 +17934,16,17.45,7,0.0 +17934,14,23.25,45,0.0 +17934,59,55,34,0.0 +17934,3,10,3,0.0 +17935,49,20,33,0.0 +17935,44,19.45,41,0.0 +17935,69,36,37,0.0 +17935,34,14,18,0.0 +17935,54,7.45,13,0.0 +17935,13,6,46,0.0 +17935,2,19,24,0.0 +17935,29,123.79,2,0.0 +17935,15,15.5,31,0.0 +17935,32,32,22,0.0 +17935,25,14,43,0.0 +17935,26,31.23,34,0.0 +17935,39,18,37,0.0 +17935,37,26,39,0.0 +17935,46,12,17,0.0 +17935,23,9,6,0.0 +17935,9,97,12,0.0 +17935,71,21.5,20,0.0 +17935,52,7,37,0.0 +17935,77,13,32,0.0 +17935,62,49.3,34,0.0 +17935,35,18,33,0.0 +17935,8,40,3,0.0 +17935,70,15,9,0.0 +17935,45,9.5,21,0.0 +17936,65,21.05,3,0.0 +17936,57,19.5,45,0.0 +17936,54,7.45,38,0.0 +17936,72,34.8,8,0.0 +17936,12,38,42,0.0 +17936,43,46,35,0.0 +17936,40,18.4,40,0.0 +17936,36,19,8,0.0 +17936,42,14,5,0.0 +17936,62,49.3,49,0.0 +17936,63,43.9,4,0.0 +17936,46,12,28,0.0 +17936,67,14,27,0.0 +17936,71,21.5,13,0.0 +17936,55,24,27,0.0 +17936,39,18,20,0.0 +17936,24,4.5,36,0.0 +17936,66,17,2,0.0 +17936,69,36,22,0.0 +17936,76,18,50,0.0 +17936,59,55,15,0.0 +17936,53,32.8,38,0.0 +17936,61,28.5,8,0.0 +17936,2,19,34,0.0 +17936,9,97,30,0.0 +17936,3,10,7,0.0 +17936,33,2.5,46,0.0 +17936,49,20,36,0.0 +17936,31,12.5,11,0.0 +17936,11,21,33,0.0 +17936,77,13,43,0.0 +17936,6,25,41,0.0 +17936,20,81,2,0.0 +17936,44,19.45,33,0.0 +17936,7,30,42,0.0 +17936,47,9.5,1,0.0 +17936,74,10,35,0.0 +17936,10,31,31,0.0 +17936,70,15,16,0.0 +17936,73,15,12,0.0 +17936,35,18,20,0.0 +17936,22,21,23,0.0 +17936,64,33.25,11,0.0 +17936,32,32,1,0.0 +17936,56,38,27,0.0 +17936,21,10,5,0.0 +17936,13,6,21,0.0 +17936,19,9.2,33,0.0 +17936,45,9.5,37,0.0 +17936,37,26,2,0.0 +17936,26,31.23,31,0.0 +17936,27,43.9,4,0.0 +17936,68,12.5,13,0.0 +17936,52,7,40,0.0 +17936,1,18,9,0.0 +17936,34,14,20,0.0 +17936,30,25.89,27,0.0 +17936,60,34,4,0.0 +17936,17,39,2,0.0 +17936,16,17.45,16,0.0 +17936,8,40,32,0.0 +17936,4,22,50,0.0 +17936,25,14,32,0.0 +17936,41,9.65,13,0.0 +17936,23,9,42,0.0 +17936,50,16.25,38,0.0 +17936,14,23.25,16,0.0 +17936,48,12.75,46,0.0 +17936,15,15.5,6,0.0 +17936,58,13.25,43,0.0 +17936,18,62.5,8,0.0 +17936,29,123.79,27,0.0 +17936,75,7.75,36,0.0 +17936,51,53,11,0.0 +17936,28,45.6,42,0.0 +17936,38,263.5,24,0.0 +17937,5,21.35,14,0.0 +17937,34,14,39,0.0 +17937,77,13,22,0.0 +17937,66,17,21,0.0 +17937,2,19,18,0.0 +17937,56,38,32,0.0 +17937,21,10,19,0.0 +17937,15,15.5,22,0.0 +17937,58,13.25,47,0.0 +17937,74,10,39,0.0 +17937,42,14,49,0.0 +17937,8,40,35,0.0 +17938,28,45.6,12,0.0 +17938,20,81,11,0.0 +17938,2,19,45,0.0 +17938,9,97,33,0.0 +17938,16,17.45,5,0.0 +17938,15,15.5,15,0.0 +17938,52,7,8,0.0 +17938,57,19.5,10,0.0 +17938,47,9.5,6,0.0 +17938,12,38,23,0.0 +17938,33,2.5,16,0.0 +17938,76,18,27,0.0 +17938,6,25,31,0.0 +17938,24,4.5,28,0.0 +17938,70,15,16,0.0 +17938,14,23.25,48,0.0 +17938,56,38,45,0.0 +17938,3,10,9,0.0 +17938,36,19,49,0.0 +17938,48,12.75,6,0.0 +17938,4,22,9,0.0 +17938,37,26,14,0.0 +17938,18,62.5,37,0.0 +17939,28,45.6,4,0.0 +17939,2,19,37,0.0 +17939,64,33.25,49,0.0 +17939,11,21,50,0.0 +17939,48,12.75,50,0.0 +17939,61,28.5,3,0.0 +17939,66,17,3,0.0 +17939,15,15.5,36,0.0 +17939,73,15,14,0.0 +17939,36,19,36,0.0 +17939,45,9.5,20,0.0 +17939,74,10,32,0.0 +17939,63,43.9,3,0.0 +17939,56,38,43,0.0 +17939,47,9.5,35,0.0 +17939,44,19.45,27,0.0 +17939,7,30,41,0.0 +17939,58,13.25,12,0.0 +17939,75,7.75,41,0.0 +17939,43,46,41,0.0 +17939,5,21.35,45,0.0 +17939,68,12.5,8,0.0 +17939,32,32,36,0.0 +17939,21,10,32,0.0 +17939,9,97,40,0.0 +17939,12,38,5,0.0 +17939,65,21.05,17,0.0 +17939,16,17.45,37,0.0 +17939,77,13,46,0.0 +17939,3,10,15,0.0 +17939,18,62.5,37,0.0 +17939,52,7,32,0.0 +17939,59,55,24,0.0 +17939,38,263.5,6,0.0 +17939,17,39,22,0.0 +17939,72,34.8,8,0.0 +17939,1,18,10,0.0 +17940,30,25.89,11,0.0 +17940,76,18,30,0.0 +17940,45,9.5,38,0.0 +17940,16,17.45,29,0.0 +17940,63,43.9,13,0.0 +17940,12,38,46,0.0 +17940,6,25,26,0.0 +17940,8,40,27,0.0 +17940,14,23.25,34,0.0 +17940,33,2.5,40,0.0 +17940,73,15,32,0.0 +17940,47,9.5,40,0.0 +17940,51,53,31,0.0 +17940,66,17,43,0.0 +17940,55,24,19,0.0 +17940,42,14,41,0.0 +17940,60,34,1,0.0 +17940,44,19.45,46,0.0 +17940,58,13.25,44,0.0 +17940,69,36,46,0.0 +17940,38,263.5,50,0.0 +17940,15,15.5,8,0.0 +17940,29,123.79,16,0.0 +17940,35,18,11,0.0 +17940,11,21,48,0.0 +17940,23,9,19,0.0 +17940,20,81,32,0.0 +17941,44,19.45,13,0.0 +17941,64,33.25,2,0.0 +17941,36,19,10,0.0 +17941,56,38,34,0.0 +17941,17,39,41,0.0 +17941,21,10,25,0.0 +17941,22,21,49,0.0 +17941,3,10,39,0.0 +17941,31,12.5,17,0.0 +17941,29,123.79,37,0.0 +17941,49,20,2,0.0 +17941,69,36,12,0.0 +17941,10,31,38,0.0 +17941,54,7.45,29,0.0 +17942,41,9.65,49,0.0 +17942,43,46,13,0.0 +17942,53,32.8,40,0.0 +17942,16,17.45,6,0.0 +17942,21,10,31,0.0 +17942,39,18,14,0.0 +17942,14,23.25,35,0.0 +17942,75,7.75,7,0.0 +17942,76,18,50,0.0 +17942,51,53,46,0.0 +17942,12,38,14,0.0 +17942,27,43.9,3,0.0 +17942,34,14,6,0.0 +17942,44,19.45,6,0.0 +17942,8,40,42,0.0 +17942,40,18.4,12,0.0 +17942,45,9.5,9,0.0 +17942,68,12.5,44,0.0 +17942,2,19,38,0.0 +17942,1,18,48,0.0 +17942,31,12.5,33,0.0 +17942,69,36,48,0.0 +17942,63,43.9,50,0.0 +17942,24,4.5,2,0.0 +17942,55,24,21,0.0 +17942,57,19.5,34,0.0 +17942,4,22,1,0.0 +17942,26,31.23,10,0.0 +17943,71,21.5,21,0.0 +17943,70,15,44,0.0 +17943,14,23.25,10,0.0 +17943,44,19.45,5,0.0 +17943,19,9.2,45,0.0 +17943,27,43.9,8,0.0 +17943,18,62.5,3,0.0 +17943,23,9,36,0.0 +17943,40,18.4,15,0.0 +17943,65,21.05,32,0.0 +17943,73,15,25,0.0 +17943,33,2.5,35,0.0 +17943,29,123.79,13,0.0 +17943,62,49.3,43,0.0 +17944,40,18.4,25,0.0 +17944,39,18,32,0.0 +17944,48,12.75,39,0.0 +17944,28,45.6,42,0.0 +17944,27,43.9,46,0.0 +17944,76,18,13,0.0 +17944,7,30,38,0.0 +17944,62,49.3,42,0.0 +17944,74,10,11,0.0 +17944,2,19,23,0.0 +17944,47,9.5,40,0.0 +17944,15,15.5,25,0.0 +17944,52,7,49,0.0 +17944,68,12.5,47,0.0 +17944,6,25,30,0.0 +17944,25,14,35,0.0 +17944,24,4.5,7,0.0 +17944,10,31,47,0.0 +17944,44,19.45,20,0.0 +17944,16,17.45,39,0.0 +17944,50,16.25,50,0.0 +17944,46,12,33,0.0 +17944,37,26,41,0.0 +17944,36,19,49,0.0 +17944,61,28.5,16,0.0 +17944,45,9.5,30,0.0 +17944,17,39,29,0.0 +17944,31,12.5,26,0.0 +17944,5,21.35,16,0.0 +17944,55,24,42,0.0 +17944,72,34.8,32,0.0 +17944,30,25.89,39,0.0 +17944,63,43.9,30,0.0 +17944,49,20,44,0.0 +17944,8,40,47,0.0 +17944,56,38,1,0.0 +17944,42,14,7,0.0 +17944,23,9,44,0.0 +17944,70,15,44,0.0 +17944,57,19.5,11,0.0 +17944,29,123.79,26,0.0 +17944,22,21,33,0.0 +17944,33,2.5,23,0.0 +17944,69,36,22,0.0 +17944,67,14,17,0.0 +17945,75,7.75,3,0.0 +17945,32,32,35,0.0 +17945,8,40,4,0.0 +17945,74,10,35,0.0 +17945,9,97,11,0.0 +17945,19,9.2,38,0.0 +17945,3,10,18,0.0 +17945,55,24,21,0.0 +17945,10,31,29,0.0 +17945,66,17,27,0.0 +17945,62,49.3,16,0.0 +17945,46,12,9,0.0 +17945,72,34.8,50,0.0 +17945,25,14,34,0.0 +17945,70,15,30,0.0 +17945,61,28.5,9,0.0 +17945,34,14,7,0.0 +17945,39,18,39,0.0 +17945,13,6,10,0.0 +17945,45,9.5,24,0.0 +17945,38,263.5,9,0.0 +17945,16,17.45,26,0.0 +17945,17,39,20,0.0 +17945,33,2.5,48,0.0 +17945,41,9.65,47,0.0 +17945,58,13.25,36,0.0 +17945,18,62.5,28,0.0 +17945,42,14,14,0.0 +17945,14,23.25,43,0.0 +17945,71,21.5,2,0.0 +17945,76,18,1,0.0 +17945,12,38,14,0.0 +17945,4,22,8,0.0 +17945,63,43.9,26,0.0 +17945,11,21,8,0.0 +17945,29,123.79,13,0.0 +17945,7,30,43,0.0 +17945,52,7,25,0.0 +17945,73,15,48,0.0 +17945,2,19,35,0.0 +17945,65,21.05,48,0.0 +17945,21,10,3,0.0 +17945,20,81,6,0.0 +17945,47,9.5,25,0.0 +17945,26,31.23,29,0.0 +17945,44,19.45,9,0.0 +17945,40,18.4,15,0.0 +17945,54,7.45,29,0.0 +17945,49,20,32,0.0 +17945,37,26,14,0.0 +17945,43,46,24,0.0 +17945,64,33.25,2,0.0 +17945,30,25.89,3,0.0 +17945,68,12.5,28,0.0 +17945,31,12.5,7,0.0 +17945,5,21.35,32,0.0 +17945,60,34,38,0.0 +17945,69,36,17,0.0 +17945,35,18,50,0.0 +17945,36,19,47,0.0 +17945,67,14,11,0.0 +17945,53,32.8,47,0.0 +17945,56,38,5,0.0 +17945,27,43.9,6,0.0 +17945,24,4.5,30,0.0 +17945,1,18,33,0.0 +17946,27,43.9,45,0.0 +17946,24,4.5,46,0.0 +17946,20,81,20,0.0 +17946,60,34,48,0.0 +17946,32,32,35,0.0 +17946,65,21.05,36,0.0 +17946,54,7.45,35,0.0 +17946,28,45.6,45,0.0 +17946,38,263.5,4,0.0 +17946,37,26,35,0.0 +17946,34,14,12,0.0 +17946,1,18,17,0.0 +17946,25,14,18,0.0 +17946,76,18,44,0.0 +17946,75,7.75,30,0.0 +17946,66,17,41,0.0 +17946,70,15,8,0.0 +17946,68,12.5,14,0.0 +17946,59,55,19,0.0 +17946,55,24,28,0.0 +17946,48,12.75,39,0.0 +17946,3,10,16,0.0 +17946,7,30,41,0.0 +17946,16,17.45,15,0.0 +17946,6,25,6,0.0 +17946,14,23.25,42,0.0 +17947,46,12,12,0.0 +17947,69,36,10,0.0 +17947,70,15,7,0.0 +17947,45,9.5,4,0.0 +17947,73,15,31,0.0 +17947,65,21.05,20,0.0 +17947,20,81,17,0.0 +17947,12,38,7,0.0 +17947,60,34,42,0.0 +17947,22,21,40,0.0 +17947,34,14,12,0.0 +17947,8,40,11,0.0 +17947,7,30,19,0.0 +17947,25,14,15,0.0 +17947,30,25.89,20,0.0 +17947,62,49.3,16,0.0 +17947,64,33.25,43,0.0 +17947,74,10,28,0.0 +17947,11,21,35,0.0 +17947,75,7.75,10,0.0 +17947,2,19,14,0.0 +17947,40,18.4,27,0.0 +17947,67,14,49,0.0 +17947,38,263.5,26,0.0 +17948,25,14,29,0.0 +17948,64,33.25,31,0.0 +17948,26,31.23,21,0.0 +17948,23,9,15,0.0 +17948,71,21.5,33,0.0 +17948,50,16.25,8,0.0 +17948,47,9.5,37,0.0 +17948,13,6,16,0.0 +17948,48,12.75,24,0.0 +17948,53,32.8,18,0.0 +17948,72,34.8,45,0.0 +17948,39,18,1,0.0 +17948,67,14,32,0.0 +17948,73,15,15,0.0 +17948,33,2.5,35,0.0 +17948,45,9.5,18,0.0 +17948,29,123.79,46,0.0 +17948,68,12.5,1,0.0 +17948,74,10,42,0.0 +17948,77,13,9,0.0 +17948,7,30,42,0.0 +17948,52,7,8,0.0 +17948,20,81,1,0.0 +17948,27,43.9,24,0.0 +17948,34,14,29,0.0 +17948,62,49.3,29,0.0 +17948,40,18.4,15,0.0 +17948,10,31,44,0.0 +17948,66,17,47,0.0 +17948,5,21.35,32,0.0 +17948,60,34,11,0.0 +17949,37,26,26,0.0 +17949,59,55,6,0.0 +17949,50,16.25,46,0.0 +17949,26,31.23,5,0.0 +17949,33,2.5,45,0.0 +17949,7,30,48,0.0 +17949,5,21.35,43,0.0 +17949,10,31,33,0.0 +17949,75,7.75,6,0.0 +17949,4,22,23,0.0 +17949,70,15,49,0.0 +17949,67,14,11,0.0 +17949,11,21,31,0.0 +17949,14,23.25,20,0.0 +17949,36,19,2,0.0 +17949,35,18,24,0.0 +17949,45,9.5,20,0.0 +17949,28,45.6,19,0.0 +17949,34,14,13,0.0 +17949,15,15.5,19,0.0 +17949,58,13.25,31,0.0 +17949,54,7.45,46,0.0 +17949,39,18,49,0.0 +17949,25,14,25,0.0 +17949,18,62.5,31,0.0 +17949,49,20,39,0.0 +17949,44,19.45,40,0.0 +17949,52,7,44,0.0 +17950,57,19.5,32,0.0 +17950,34,14,32,0.0 +17950,36,19,33,0.0 +17950,68,12.5,5,0.0 +17950,76,18,42,0.0 +17950,45,9.5,44,0.0 +17950,11,21,27,0.0 +17950,73,15,9,0.0 +17950,33,2.5,24,0.0 +17950,23,9,23,0.0 +17950,32,32,45,0.0 +17950,17,39,5,0.0 +17950,61,28.5,44,0.0 +17950,69,36,17,0.0 +17950,3,10,47,0.0 +17950,1,18,41,0.0 +17950,42,14,7,0.0 +17950,7,30,49,0.0 +17950,26,31.23,30,0.0 +17950,29,123.79,7,0.0 +17950,4,22,35,0.0 +17950,66,17,19,0.0 +17950,55,24,40,0.0 +17950,12,38,20,0.0 +17950,35,18,10,0.0 +17950,38,263.5,31,0.0 +17951,21,10,13,0.0 +17951,30,25.89,9,0.0 +17951,31,12.5,44,0.0 +17951,13,6,14,0.0 +17951,60,34,29,0.0 +17951,77,13,46,0.0 +17951,48,12.75,23,0.0 +17951,27,43.9,17,0.0 +17951,36,19,35,0.0 +17951,33,2.5,12,0.0 +17951,37,26,27,0.0 +17951,29,123.79,45,0.0 +17951,42,14,31,0.0 +17952,19,9.2,16,0.0 +17952,24,4.5,8,0.0 +17952,66,17,37,0.0 +17952,52,7,14,0.0 +17952,2,19,3,0.0 +17952,8,40,24,0.0 +17952,41,9.65,4,0.0 +17952,65,21.05,15,0.0 +17952,56,38,38,0.0 +17952,32,32,12,0.0 +17952,63,43.9,28,0.0 +17952,59,55,43,0.0 +17952,26,31.23,45,0.0 +17952,55,24,3,0.0 +17952,17,39,8,0.0 +17952,74,10,45,0.0 +17952,39,18,29,0.0 +17952,27,43.9,3,0.0 +17952,60,34,37,0.0 +17952,53,32.8,50,0.0 +17952,50,16.25,44,0.0 +17952,57,19.5,20,0.0 +17952,21,10,29,0.0 +17952,69,36,5,0.0 +17953,52,7,2,0.0 +17953,10,31,35,0.0 +17953,73,15,15,0.0 +17953,59,55,39,0.0 +17953,47,9.5,15,0.0 +17953,76,18,12,0.0 +17953,2,19,7,0.0 +17954,62,49.3,44,0.0 +17954,49,20,18,0.0 +17954,2,19,4,0.0 +17954,34,14,35,0.0 +17954,53,32.8,30,0.0 +17954,29,123.79,37,0.0 +17954,26,31.23,10,0.0 +17954,54,7.45,14,0.0 +17954,24,4.5,24,0.0 +17954,68,12.5,13,0.0 +17954,39,18,13,0.0 +17954,74,10,14,0.0 +17954,75,7.75,16,0.0 +17954,77,13,30,0.0 +17954,61,28.5,47,0.0 +17954,7,30,13,0.0 +17954,60,34,2,0.0 +17954,55,24,47,0.0 +17954,56,38,38,0.0 +17954,64,33.25,31,0.0 +17954,10,31,47,0.0 +17954,57,19.5,23,0.0 +17954,41,9.65,45,0.0 +17954,52,7,30,0.0 +17954,18,62.5,1,0.0 +17954,76,18,30,0.0 +17954,17,39,28,0.0 +17954,38,263.5,25,0.0 +17954,72,34.8,45,0.0 +17954,14,23.25,28,0.0 +17954,4,22,19,0.0 +17954,20,81,38,0.0 +17954,8,40,5,0.0 +17954,22,21,43,0.0 +17954,67,14,41,0.0 +17954,33,2.5,13,0.0 +17954,5,21.35,32,0.0 +17954,73,15,25,0.0 +17954,45,9.5,21,0.0 +17954,31,12.5,36,0.0 +17954,23,9,42,0.0 +17954,40,18.4,35,0.0 +17954,25,14,29,0.0 +17954,35,18,22,0.0 +17954,51,53,39,0.0 +17954,70,15,47,0.0 +17954,9,97,46,0.0 +17954,65,21.05,14,0.0 +17954,3,10,26,0.0 +17954,27,43.9,45,0.0 +17954,1,18,41,0.0 +17954,69,36,15,0.0 +17954,28,45.6,45,0.0 +17954,15,15.5,19,0.0 +17954,32,32,43,0.0 +17954,71,21.5,32,0.0 +17954,36,19,5,0.0 +17954,44,19.45,3,0.0 +17954,58,13.25,24,0.0 +17954,16,17.45,21,0.0 +17954,11,21,10,0.0 +17954,43,46,33,0.0 +17954,46,12,31,0.0 +17954,59,55,11,0.0 +17954,12,38,47,0.0 +17954,63,43.9,47,0.0 +17954,66,17,35,0.0 +17954,21,10,26,0.0 +17954,6,25,35,0.0 +17954,30,25.89,24,0.0 +17954,48,12.75,13,0.0 +17954,19,9.2,25,0.0 +17954,42,14,7,0.0 +17955,10,31,10,0.0 +17955,71,21.5,1,0.0 +17955,56,38,25,0.0 +17955,13,6,5,0.0 +17955,6,25,22,0.0 +17955,7,30,26,0.0 +17955,38,263.5,8,0.0 +17955,11,21,32,0.0 +17955,52,7,37,0.0 +17955,3,10,17,0.0 +17955,72,34.8,46,0.0 +17955,40,18.4,47,0.0 +17955,57,19.5,18,0.0 +17955,18,62.5,22,0.0 +17955,65,21.05,50,0.0 +17955,50,16.25,39,0.0 +17955,47,9.5,14,0.0 +17955,46,12,50,0.0 +17955,19,9.2,49,0.0 +17955,74,10,28,0.0 +17955,44,19.45,6,0.0 +17955,49,20,20,0.0 +17955,66,17,11,0.0 +17955,63,43.9,38,0.0 +17955,17,39,46,0.0 +17955,1,18,49,0.0 +17955,75,7.75,25,0.0 +17955,53,32.8,50,0.0 +17955,45,9.5,21,0.0 +17955,64,33.25,5,0.0 +17955,9,97,45,0.0 +17955,48,12.75,42,0.0 +17955,55,24,38,0.0 +17955,14,23.25,28,0.0 +17955,67,14,24,0.0 +17955,23,9,5,0.0 +17955,28,45.6,25,0.0 +17955,25,14,45,0.0 +17955,24,4.5,8,0.0 +17955,26,31.23,36,0.0 +17955,12,38,44,0.0 +17955,20,81,31,0.0 +17955,5,21.35,3,0.0 +17955,70,15,43,0.0 +17955,4,22,20,0.0 +17955,76,18,35,0.0 +17955,29,123.79,35,0.0 +17955,73,15,43,0.0 +17955,36,19,5,0.0 +17955,31,12.5,48,0.0 +17955,58,13.25,49,0.0 +17955,37,26,24,0.0 +17955,35,18,13,0.0 +17955,61,28.5,37,0.0 +17955,69,36,32,0.0 +17955,60,34,49,0.0 +17955,41,9.65,37,0.0 +17955,42,14,13,0.0 +17955,39,18,47,0.0 +17955,43,46,17,0.0 +17955,62,49.3,34,0.0 +17955,27,43.9,5,0.0 +17955,8,40,37,0.0 +17955,34,14,3,0.0 +17955,51,53,41,0.0 +17955,33,2.5,1,0.0 +17955,54,7.45,23,0.0 +17956,25,14,21,0.0 +17956,42,14,14,0.0 +17956,38,263.5,30,0.0 +17956,40,18.4,5,0.0 +17956,65,21.05,46,0.0 +17956,17,39,10,0.0 +17956,19,9.2,10,0.0 +17956,2,19,46,0.0 +17956,77,13,17,0.0 +17956,76,18,31,0.0 +17956,73,15,44,0.0 +17956,47,9.5,32,0.0 +17956,39,18,18,0.0 +17956,62,49.3,7,0.0 +17956,13,6,39,0.0 +17956,6,25,43,0.0 +17956,59,55,46,0.0 +17956,46,12,25,0.0 +17956,31,12.5,44,0.0 +17956,8,40,22,0.0 +17956,12,38,31,0.0 +17956,15,15.5,8,0.0 +17956,23,9,3,0.0 +17956,43,46,44,0.0 +17956,61,28.5,11,0.0 +17956,71,21.5,26,0.0 +17956,57,19.5,32,0.0 +17956,30,25.89,43,0.0 +17956,27,43.9,43,0.0 +17956,44,19.45,26,0.0 +17956,48,12.75,7,0.0 +17956,74,10,22,0.0 +17956,51,53,20,0.0 +17956,72,34.8,44,0.0 +17956,63,43.9,4,0.0 +17956,4,22,12,0.0 +17956,22,21,18,0.0 +17957,26,31.23,34,0.0 +17957,12,38,34,0.0 +17957,18,62.5,28,0.0 +17957,6,25,45,0.0 +17957,52,7,12,0.0 +17957,65,21.05,30,0.0 +17957,77,13,13,0.0 +17957,68,12.5,29,0.0 +17957,4,22,3,0.0 +17957,55,24,46,0.0 +17957,49,20,21,0.0 +17957,43,46,6,0.0 +17957,16,17.45,40,0.0 +17957,36,19,5,0.0 +17958,38,263.5,27,0.0 +17958,18,62.5,5,0.0 +17958,28,45.6,12,0.0 +17958,44,19.45,18,0.0 +17958,9,97,33,0.0 +17958,20,81,20,0.0 +17958,16,17.45,37,0.0 +17958,56,38,25,0.0 +17958,53,32.8,28,0.0 +17958,30,25.89,29,0.0 +17958,29,123.79,18,0.0 +17958,37,26,48,0.0 +17958,34,14,6,0.0 +17958,15,15.5,11,0.0 +17958,75,7.75,9,0.0 +17958,3,10,2,0.0 +17958,62,49.3,44,0.0 +17958,8,40,11,0.0 +17959,12,38,2,0.0 +17959,32,32,39,0.0 +17959,75,7.75,42,0.0 +17960,68,12.5,30,0.0 +17960,48,12.75,20,0.0 +17960,9,97,35,0.0 +17960,65,21.05,29,0.0 +17960,41,9.65,23,0.0 +17960,71,21.5,14,0.0 +17960,42,14,19,0.0 +17960,61,28.5,5,0.0 +17960,69,36,37,0.0 +17960,13,6,45,0.0 +17960,36,19,38,0.0 +17961,49,20,25,0.0 +17961,30,25.89,23,0.0 +17961,6,25,4,0.0 +17961,32,32,26,0.0 +17961,48,12.75,40,0.0 +17961,47,9.5,24,0.0 +17961,45,9.5,46,0.0 +17961,29,123.79,48,0.0 +17961,64,33.25,12,0.0 +17961,72,34.8,48,0.0 +17961,26,31.23,23,0.0 +17961,8,40,25,0.0 +17961,70,15,24,0.0 +17961,63,43.9,28,0.0 +17961,55,24,5,0.0 +17961,13,6,24,0.0 +17961,25,14,36,0.0 +17961,18,62.5,10,0.0 +17961,51,53,14,0.0 +17961,19,9.2,7,0.0 +17961,76,18,18,0.0 +17961,35,18,9,0.0 +17961,20,81,31,0.0 +17961,9,97,29,0.0 +17961,27,43.9,38,0.0 +17961,54,7.45,46,0.0 +17961,43,46,50,0.0 +17961,65,21.05,39,0.0 +17961,73,15,28,0.0 +17961,10,31,46,0.0 +17961,57,19.5,32,0.0 +17961,61,28.5,36,0.0 +17961,67,14,24,0.0 +17961,56,38,47,0.0 +17961,53,32.8,11,0.0 +17961,36,19,35,0.0 +17961,15,15.5,36,0.0 +17962,9,97,50,0.0 +17962,58,13.25,33,0.0 +17962,19,9.2,45,0.0 +17962,5,21.35,26,0.0 +17962,2,19,2,0.0 +17962,51,53,11,0.0 +17962,60,34,3,0.0 +17962,62,49.3,19,0.0 +17962,48,12.75,15,0.0 +17962,27,43.9,34,0.0 +17962,71,21.5,24,0.0 +17962,36,19,6,0.0 +17962,35,18,38,0.0 +17962,17,39,11,0.0 +17962,67,14,11,0.0 +17962,26,31.23,16,0.0 +17962,23,9,32,0.0 +17962,46,12,43,0.0 +17962,25,14,42,0.0 +17962,16,17.45,30,0.0 +17962,22,21,38,0.0 +17962,66,17,30,0.0 +17962,10,31,50,0.0 +17962,29,123.79,1,0.0 +17962,28,45.6,47,0.0 +17962,13,6,4,0.0 +17963,55,24,25,0.0 +17963,9,97,7,0.0 +17963,19,9.2,11,0.0 +17963,5,21.35,5,0.0 +17963,18,62.5,7,0.0 +17963,68,12.5,18,0.0 +17963,58,13.25,17,0.0 +17963,57,19.5,18,0.0 +17963,53,32.8,13,0.0 +17963,65,21.05,45,0.0 +17963,11,21,26,0.0 +17963,67,14,45,0.0 +17963,34,14,10,0.0 +17963,47,9.5,28,0.0 +17963,71,21.5,1,0.0 +17963,21,10,10,0.0 +17963,17,39,47,0.0 +17963,8,40,38,0.0 +17963,64,33.25,18,0.0 +17963,73,15,47,0.0 +17963,51,53,29,0.0 +17963,46,12,35,0.0 +17963,14,23.25,17,0.0 +17963,66,17,30,0.0 +17963,29,123.79,37,0.0 +17963,7,30,18,0.0 +17963,76,18,21,0.0 +17963,49,20,28,0.0 +17963,23,9,11,0.0 +17963,54,7.45,17,0.0 +17963,52,7,11,0.0 +17963,43,46,16,0.0 +17963,22,21,5,0.0 +17963,44,19.45,29,0.0 +17963,59,55,27,0.0 +17963,28,45.6,15,0.0 +17963,16,17.45,42,0.0 +17963,42,14,32,0.0 +17963,32,32,39,0.0 +17963,62,49.3,7,0.0 +17963,15,15.5,4,0.0 +17963,20,81,18,0.0 +17963,37,26,24,0.0 +17963,72,34.8,47,0.0 +17963,1,18,48,0.0 +17963,70,15,5,0.0 +17963,3,10,22,0.0 +17963,40,18.4,44,0.0 +17963,63,43.9,44,0.0 +17963,26,31.23,14,0.0 +17963,48,12.75,18,0.0 +17963,56,38,6,0.0 +17963,10,31,36,0.0 +17963,35,18,26,0.0 +17963,27,43.9,30,0.0 +17963,2,19,31,0.0 +17963,36,19,11,0.0 +17963,50,16.25,45,0.0 +17964,2,19,35,0.0 +17964,11,21,41,0.0 +17964,24,4.5,4,0.0 +17964,23,9,2,0.0 +17964,75,7.75,42,0.0 +17964,64,33.25,43,0.0 +17964,56,38,50,0.0 +17964,38,263.5,47,0.0 +17964,44,19.45,14,0.0 +17964,62,49.3,39,0.0 +17964,51,53,18,0.0 +17964,46,12,36,0.0 +17964,1,18,9,0.0 +17964,22,21,29,0.0 +17964,37,26,2,0.0 +17964,9,97,1,0.0 +17964,41,9.65,20,0.0 +17964,13,6,34,0.0 +17964,17,39,14,0.0 +17964,61,28.5,27,0.0 +17964,29,123.79,1,0.0 +17964,54,7.45,10,0.0 +17964,25,14,10,0.0 +17964,71,21.5,27,0.0 +17964,55,24,37,0.0 +17964,70,15,39,0.0 +17964,31,12.5,41,0.0 +17964,26,31.23,19,0.0 +17964,18,62.5,26,0.0 +17964,19,9.2,31,0.0 +17964,20,81,33,0.0 +17964,8,40,23,0.0 +17964,30,25.89,24,0.0 +17964,48,12.75,47,0.0 +17964,3,10,49,0.0 +17964,15,15.5,37,0.0 +17964,63,43.9,39,0.0 +17964,72,34.8,43,0.0 +17964,6,25,17,0.0 +17964,34,14,17,0.0 +17964,32,32,39,0.0 +17964,45,9.5,40,0.0 +17964,27,43.9,35,0.0 +17964,35,18,23,0.0 +17964,4,22,8,0.0 +17964,73,15,39,0.0 +17964,77,13,46,0.0 +17964,76,18,11,0.0 +17964,58,13.25,1,0.0 +17964,49,20,4,0.0 +17964,65,21.05,22,0.0 +17964,60,34,17,0.0 +17964,21,10,42,0.0 +17964,59,55,21,0.0 +17964,66,17,48,0.0 +17965,30,25.89,40,0.0 +17965,4,22,11,0.0 +17965,77,13,16,0.0 +17965,15,15.5,39,0.0 +17965,6,25,41,0.0 +17965,2,19,26,0.0 +17965,37,26,1,0.0 +17965,64,33.25,29,0.0 +17965,10,31,10,0.0 +17965,57,19.5,41,0.0 +17965,61,28.5,4,0.0 +17965,39,18,25,0.0 +17965,32,32,16,0.0 +17965,17,39,7,0.0 +17965,33,2.5,9,0.0 +17965,76,18,21,0.0 +17965,34,14,18,0.0 +17965,52,7,28,0.0 +17965,25,14,7,0.0 +17965,56,38,44,0.0 +17965,59,55,20,0.0 +17965,13,6,33,0.0 +17965,62,49.3,24,0.0 +17965,68,12.5,29,0.0 +17965,63,43.9,33,0.0 +17965,51,53,28,0.0 +17965,42,14,39,0.0 +17965,53,32.8,34,0.0 +17965,72,34.8,14,0.0 +17965,44,19.45,7,0.0 +17965,28,45.6,40,0.0 +17965,3,10,31,0.0 +17965,41,9.65,13,0.0 +17965,54,7.45,24,0.0 +17965,40,18.4,35,0.0 +17966,15,15.5,48,0.0 +17966,5,21.35,35,0.0 +17966,2,19,11,0.0 +17966,59,55,2,0.0 +17966,30,25.89,45,0.0 +17966,75,7.75,41,0.0 +17966,47,9.5,8,0.0 +17966,46,12,4,0.0 +17967,45,9.5,32,0.0 +17967,40,18.4,17,0.0 +17967,47,9.5,41,0.0 +17967,75,7.75,41,0.0 +17967,73,15,27,0.0 +17967,54,7.45,39,0.0 +17967,9,97,44,0.0 +17967,32,32,14,0.0 +17967,36,19,36,0.0 +17967,70,15,45,0.0 +17967,13,6,43,0.0 +17967,1,18,27,0.0 +17967,17,39,23,0.0 +17967,74,10,26,0.0 +17967,67,14,16,0.0 +17967,4,22,13,0.0 +17967,37,26,30,0.0 +17967,50,16.25,31,0.0 +17967,77,13,47,0.0 +17967,64,33.25,8,0.0 +17967,18,62.5,31,0.0 +17967,10,31,48,0.0 +17967,42,14,43,0.0 +17967,65,21.05,39,0.0 +17967,46,12,23,0.0 +17967,66,17,25,0.0 +17967,26,31.23,49,0.0 +17967,14,23.25,23,0.0 +17967,20,81,47,0.0 +17967,5,21.35,11,0.0 +17967,53,32.8,33,0.0 +17967,52,7,5,0.0 +17967,49,20,32,0.0 +17967,59,55,50,0.0 +17967,51,53,1,0.0 +17967,8,40,6,0.0 +17967,55,24,46,0.0 +17967,33,2.5,38,0.0 +17967,34,14,5,0.0 +17967,63,43.9,21,0.0 +17967,68,12.5,12,0.0 +17967,7,30,39,0.0 +17967,39,18,41,0.0 +17967,27,43.9,45,0.0 +17967,24,4.5,21,0.0 +17967,60,34,16,0.0 +17967,23,9,31,0.0 +17967,12,38,21,0.0 +17967,43,46,40,0.0 +17967,69,36,23,0.0 +17967,44,19.45,31,0.0 +17967,29,123.79,9,0.0 +17967,6,25,1,0.0 +17967,11,21,28,0.0 +17967,35,18,44,0.0 +17967,48,12.75,18,0.0 +17967,25,14,34,0.0 +17967,58,13.25,30,0.0 +17967,19,9.2,15,0.0 +17967,41,9.65,7,0.0 +17967,71,21.5,6,0.0 +17968,2,19,35,0.0 +17968,16,17.45,44,0.0 +17968,36,19,22,0.0 +17968,50,16.25,36,0.0 +17968,21,10,9,0.0 +17968,4,22,27,0.0 +17968,54,7.45,14,0.0 +17968,60,34,3,0.0 +17968,34,14,46,0.0 +17968,39,18,16,0.0 +17968,75,7.75,45,0.0 +17968,24,4.5,21,0.0 +17968,5,21.35,35,0.0 +17968,14,23.25,31,0.0 +17968,40,18.4,29,0.0 +17968,13,6,33,0.0 +17968,42,14,3,0.0 +17968,53,32.8,15,0.0 +17968,61,28.5,3,0.0 +17968,67,14,39,0.0 +17968,6,25,2,0.0 +17968,38,263.5,18,0.0 +17968,44,19.45,16,0.0 +17968,26,31.23,28,0.0 +17968,58,13.25,16,0.0 +17968,47,9.5,15,0.0 +17968,70,15,16,0.0 +17968,68,12.5,43,0.0 +17968,63,43.9,4,0.0 +17968,71,21.5,43,0.0 +17968,19,9.2,15,0.0 +17968,9,97,6,0.0 +17968,25,14,24,0.0 +17968,55,24,18,0.0 +17968,35,18,16,0.0 +17968,31,12.5,41,0.0 +17968,20,81,47,0.0 +17968,17,39,7,0.0 +17968,41,9.65,44,0.0 +17968,76,18,20,0.0 +17968,56,38,7,0.0 +17968,33,2.5,12,0.0 +17968,37,26,31,0.0 +17968,65,21.05,8,0.0 +17968,22,21,15,0.0 +17968,1,18,14,0.0 +17968,72,34.8,44,0.0 +17968,32,32,6,0.0 +17968,59,55,32,0.0 +17968,3,10,22,0.0 +17968,77,13,49,0.0 +17968,15,15.5,35,0.0 +17968,8,40,45,0.0 +17968,52,7,26,0.0 +17968,73,15,34,0.0 +17968,48,12.75,44,0.0 +17969,67,14,22,0.0 +17969,58,13.25,44,0.0 +17969,18,62.5,18,0.0 +17969,33,2.5,23,0.0 +17969,60,34,17,0.0 +17969,3,10,37,0.0 +17969,23,9,4,0.0 +17969,73,15,1,0.0 +17969,2,19,36,0.0 +17969,54,7.45,18,0.0 +17969,16,17.45,43,0.0 +17969,29,123.79,38,0.0 +17969,9,97,32,0.0 +17969,66,17,24,0.0 +17969,59,55,38,0.0 +17969,38,263.5,17,0.0 +17969,69,36,5,0.0 +17969,30,25.89,13,0.0 +17969,65,21.05,18,0.0 +17969,75,7.75,21,0.0 +17969,20,81,34,0.0 +17969,17,39,41,0.0 +17969,41,9.65,25,0.0 +17969,21,10,45,0.0 +17969,11,21,41,0.0 +17969,1,18,15,0.0 +17969,4,22,1,0.0 +17969,19,9.2,45,0.0 +17969,74,10,3,0.0 +17969,36,19,34,0.0 +17969,72,34.8,34,0.0 +17969,57,19.5,23,0.0 +17969,8,40,1,0.0 +17969,71,21.5,17,0.0 +17969,50,16.25,19,0.0 +17969,48,12.75,27,0.0 +17969,56,38,5,0.0 +17969,77,13,1,0.0 +17969,52,7,14,0.0 +17969,42,14,12,0.0 +17969,28,45.6,1,0.0 +17969,45,9.5,1,0.0 +17970,22,21,27,0.0 +17970,40,18.4,37,0.0 +17970,33,2.5,44,0.0 +17970,18,62.5,30,0.0 +17970,20,81,48,0.0 +17970,64,33.25,13,0.0 +17970,70,15,24,0.0 +17970,60,34,8,0.0 +17970,34,14,25,0.0 +17970,35,18,27,0.0 +17970,15,15.5,22,0.0 +17970,65,21.05,41,0.0 +17970,57,19.5,20,0.0 +17970,31,12.5,39,0.0 +17970,9,97,50,0.0 +17970,48,12.75,27,0.0 +17970,29,123.79,31,0.0 +17970,21,10,40,0.0 +17970,77,13,47,0.0 +17970,28,45.6,29,0.0 +17970,51,53,35,0.0 +17970,17,39,17,0.0 +17970,5,21.35,39,0.0 +17970,13,6,45,0.0 +17970,26,31.23,47,0.0 +17970,59,55,42,0.0 +17970,76,18,33,0.0 +17970,50,16.25,47,0.0 +17970,66,17,48,0.0 +17970,11,21,28,0.0 +17970,49,20,21,0.0 +17970,73,15,41,0.0 +17970,39,18,7,0.0 +17970,10,31,19,0.0 +17970,14,23.25,8,0.0 +17970,37,26,45,0.0 +17970,75,7.75,42,0.0 +17970,4,22,34,0.0 +17970,3,10,15,0.0 +17970,27,43.9,26,0.0 +17970,46,12,26,0.0 +17970,61,28.5,44,0.0 +17970,47,9.5,39,0.0 +17970,2,19,42,0.0 +17970,54,7.45,19,0.0 +17970,6,25,19,0.0 +17970,68,12.5,44,0.0 +17970,67,14,4,0.0 +17970,52,7,2,0.0 +17970,23,9,16,0.0 +17970,53,32.8,26,0.0 +17970,32,32,15,0.0 +17970,41,9.65,36,0.0 +17970,44,19.45,29,0.0 +17970,30,25.89,3,0.0 +17970,56,38,21,0.0 +17970,24,4.5,33,0.0 +17970,69,36,39,0.0 +17970,25,14,3,0.0 +17970,16,17.45,23,0.0 +17970,71,21.5,2,0.0 +17970,72,34.8,35,0.0 +17970,74,10,27,0.0 +17970,58,13.25,47,0.0 +17970,7,30,4,0.0 +17970,19,9.2,5,0.0 +17970,62,49.3,13,0.0 +17970,12,38,3,0.0 +17970,42,14,29,0.0 +17970,63,43.9,15,0.0 +17970,36,19,33,0.0 +17971,40,18.4,9,0.0 +17971,9,97,25,0.0 +17971,4,22,22,0.0 +17971,34,14,8,0.0 +17971,15,15.5,11,0.0 +17971,75,7.75,33,0.0 +17971,49,20,13,0.0 +17971,55,24,35,0.0 +17971,65,21.05,44,0.0 +17971,28,45.6,6,0.0 +17971,16,17.45,7,0.0 +17971,12,38,11,0.0 +17971,22,21,38,0.0 +17971,60,34,25,0.0 +17971,44,19.45,12,0.0 +17971,64,33.25,10,0.0 +17971,6,25,37,0.0 +17971,1,18,8,0.0 +17971,58,13.25,22,0.0 +17971,2,19,38,0.0 +17971,27,43.9,17,0.0 +17971,13,6,50,0.0 +17971,47,9.5,24,0.0 +17972,5,21.35,25,0.0 +17972,77,13,26,0.0 +17972,40,18.4,18,0.0 +17972,71,21.5,32,0.0 +17972,27,43.9,27,0.0 +17972,67,14,22,0.0 +17972,17,39,7,0.0 +17972,46,12,19,0.0 +17972,47,9.5,48,0.0 +17972,9,97,7,0.0 +17972,76,18,15,0.0 +17972,54,7.45,19,0.0 +17972,4,22,6,0.0 +17972,25,14,8,0.0 +17972,58,13.25,5,0.0 +17972,32,32,25,0.0 +17972,1,18,34,0.0 +17972,12,38,46,0.0 +17972,56,38,36,0.0 +17972,29,123.79,7,0.0 +17972,14,23.25,7,0.0 +17972,34,14,7,0.0 +17972,68,12.5,43,0.0 +17972,49,20,1,0.0 +17972,26,31.23,30,0.0 +17972,22,21,16,0.0 +17972,60,34,36,0.0 +17972,74,10,6,0.0 +17972,42,14,28,0.0 +17972,18,62.5,9,0.0 +17972,55,24,40,0.0 +17972,35,18,24,0.0 +17972,61,28.5,8,0.0 +17972,69,36,49,0.0 +17973,76,18,35,0.0 +17973,60,34,36,0.0 +17973,69,36,10,0.0 +17974,16,17.45,21,0.0 +17974,54,7.45,42,0.0 +17974,74,10,5,0.0 +17974,44,19.45,15,0.0 +17974,31,12.5,37,0.0 +17974,48,12.75,6,0.0 +17974,37,26,7,0.0 +17974,76,18,25,0.0 +17974,24,4.5,48,0.0 +17974,14,23.25,14,0.0 +17974,26,31.23,4,0.0 +17974,1,18,25,0.0 +17974,42,14,25,0.0 +17974,22,21,41,0.0 +17974,50,16.25,36,0.0 +17974,52,7,49,0.0 +17974,38,263.5,38,0.0 +17974,10,31,38,0.0 +17974,63,43.9,47,0.0 +17974,32,32,20,0.0 +17974,23,9,17,0.0 +17974,25,14,12,0.0 +17974,5,21.35,37,0.0 +17974,57,19.5,28,0.0 +17974,8,40,46,0.0 +17974,61,28.5,4,0.0 +17974,69,36,32,0.0 +17974,33,2.5,20,0.0 +17974,7,30,18,0.0 +17974,66,17,13,0.0 +17974,70,15,7,0.0 +17974,39,18,28,0.0 +17974,13,6,15,0.0 +17974,6,25,29,0.0 +17975,56,38,10,0.0 +17975,14,23.25,20,0.0 +17975,13,6,2,0.0 +17975,6,25,35,0.0 +17975,52,7,4,0.0 +17975,61,28.5,37,0.0 +17975,60,34,37,0.0 +17976,27,43.9,49,0.0 +17976,68,12.5,37,0.0 +17976,6,25,10,0.0 +17976,20,81,28,0.0 +17976,10,31,20,0.0 +17976,37,26,48,0.0 +17976,60,34,35,0.0 +17976,65,21.05,29,0.0 +17976,46,12,30,0.0 +17976,48,12.75,11,0.0 +17976,72,34.8,15,0.0 +17976,43,46,3,0.0 +17976,73,15,39,0.0 +17976,25,14,31,0.0 +17976,62,49.3,1,0.0 +17976,63,43.9,30,0.0 +17976,70,15,3,0.0 +17976,5,21.35,45,0.0 +17976,52,7,18,0.0 +17976,2,19,16,0.0 +17976,14,23.25,6,0.0 +17976,22,21,10,0.0 +17976,50,16.25,9,0.0 +17976,3,10,29,0.0 +17976,17,39,28,0.0 +17976,15,15.5,30,0.0 +17976,29,123.79,30,0.0 +17976,19,9.2,7,0.0 +17976,54,7.45,41,0.0 +17976,39,18,4,0.0 +17976,7,30,44,0.0 +17976,35,18,38,0.0 +17976,67,14,28,0.0 +17976,9,97,42,0.0 +17976,74,10,10,0.0 +17976,12,38,12,0.0 +17976,77,13,43,0.0 +17976,16,17.45,10,0.0 +17976,28,45.6,45,0.0 +17976,21,10,18,0.0 +17976,59,55,45,0.0 +17976,47,9.5,14,0.0 +17976,38,263.5,2,0.0 +17976,33,2.5,3,0.0 +17976,64,33.25,26,0.0 +17976,23,9,11,0.0 +17976,8,40,12,0.0 +17976,32,32,11,0.0 +17976,31,12.5,31,0.0 +17976,57,19.5,32,0.0 +17976,4,22,10,0.0 +17976,51,53,13,0.0 +17976,11,21,25,0.0 +17976,75,7.75,45,0.0 +17976,56,38,39,0.0 +17976,30,25.89,35,0.0 +17976,13,6,17,0.0 +17976,34,14,27,0.0 +17976,76,18,27,0.0 +17976,1,18,45,0.0 +17976,18,62.5,47,0.0 +17976,53,32.8,12,0.0 +17976,61,28.5,46,0.0 +17976,71,21.5,3,0.0 +17976,66,17,22,0.0 +17976,41,9.65,9,0.0 +17976,40,18.4,28,0.0 +17976,24,4.5,9,0.0 +17976,49,20,23,0.0 +17976,45,9.5,13,0.0 +17976,55,24,3,0.0 +17976,69,36,30,0.0 +17976,44,19.45,23,0.0 +17976,26,31.23,13,0.0 +17977,27,43.9,40,0.0 +17977,66,17,28,0.0 +17977,25,14,23,0.0 +17977,43,46,38,0.0 +17977,9,97,36,0.0 +17977,10,31,32,0.0 +17977,7,30,21,0.0 +17977,52,7,45,0.0 +17977,60,34,4,0.0 +17977,20,81,12,0.0 +17977,41,9.65,20,0.0 +17977,76,18,41,0.0 +17977,5,21.35,1,0.0 +17977,77,13,9,0.0 +17977,71,21.5,8,0.0 +17977,24,4.5,29,0.0 +17977,23,9,42,0.0 +17977,48,12.75,50,0.0 +17977,58,13.25,34,0.0 +17977,4,22,50,0.0 +17977,30,25.89,2,0.0 +17977,54,7.45,20,0.0 +17977,40,18.4,12,0.0 +17977,57,19.5,31,0.0 +17977,18,62.5,40,0.0 +17977,22,21,47,0.0 +17977,21,10,7,0.0 +17977,34,14,46,0.0 +17977,17,39,2,0.0 +17977,44,19.45,1,0.0 +17977,29,123.79,46,0.0 +17977,65,21.05,32,0.0 +17977,62,49.3,23,0.0 +17977,13,6,19,0.0 +17978,60,34,34,0.0 +17978,13,6,6,0.0 +17978,30,25.89,12,0.0 +17978,11,21,44,0.0 +17978,43,46,34,0.0 +17978,63,43.9,26,0.0 +17978,59,55,8,0.0 +17978,44,19.45,28,0.0 +17978,46,12,24,0.0 +17978,66,17,18,0.0 +17978,28,45.6,15,0.0 +17978,25,14,14,0.0 +17978,22,21,2,0.0 +17978,62,49.3,36,0.0 +17978,47,9.5,15,0.0 +17978,34,14,44,0.0 +17978,53,32.8,30,0.0 +17978,72,34.8,22,0.0 +17978,45,9.5,8,0.0 +17978,8,40,19,0.0 +17978,6,25,41,0.0 +17978,36,19,42,0.0 +17978,14,23.25,44,0.0 +17978,31,12.5,44,0.0 +17978,61,28.5,18,0.0 +17978,40,18.4,2,0.0 +17978,21,10,45,0.0 +17978,70,15,11,0.0 +17978,19,9.2,26,0.0 +17978,48,12.75,47,0.0 +17978,57,19.5,48,0.0 +17978,51,53,36,0.0 +17978,35,18,9,0.0 +17978,41,9.65,23,0.0 +17978,7,30,44,0.0 +17978,15,15.5,24,0.0 +17978,75,7.75,6,0.0 +17978,69,36,50,0.0 +17978,49,20,25,0.0 +17978,52,7,18,0.0 +17978,2,19,16,0.0 +17978,68,12.5,20,0.0 +17978,27,43.9,4,0.0 +17978,73,15,28,0.0 +17978,64,33.25,40,0.0 +17978,10,31,47,0.0 +17978,20,81,15,0.0 +17979,2,19,20,0.0 +17979,61,28.5,46,0.0 +17979,34,14,11,0.0 +17979,71,21.5,9,0.0 +17979,14,23.25,46,0.0 +17979,52,7,34,0.0 +17979,48,12.75,25,0.0 +17979,60,34,32,0.0 +17979,1,18,7,0.0 +17979,59,55,48,0.0 +17979,23,9,7,0.0 +17979,57,19.5,2,0.0 +17979,47,9.5,50,0.0 +17979,54,7.45,35,0.0 +17979,15,15.5,9,0.0 +17979,27,43.9,8,0.0 +17979,8,40,11,0.0 +17979,65,21.05,27,0.0 +17979,4,22,25,0.0 +17979,29,123.79,25,0.0 +17979,66,17,16,0.0 +17979,43,46,6,0.0 +17979,5,21.35,29,0.0 +17979,26,31.23,26,0.0 +17979,30,25.89,7,0.0 +17979,6,25,17,0.0 +17979,21,10,23,0.0 +17979,75,7.75,8,0.0 +17979,25,14,37,0.0 +17979,63,43.9,34,0.0 +17979,19,9.2,2,0.0 +17979,22,21,42,0.0 +17979,37,26,38,0.0 +17979,16,17.45,42,0.0 +17979,32,32,17,0.0 +17979,74,10,45,0.0 +17979,45,9.5,27,0.0 +17979,33,2.5,9,0.0 +17979,76,18,38,0.0 +17979,39,18,28,0.0 +17979,73,15,3,0.0 +17979,72,34.8,33,0.0 +17979,64,33.25,47,0.0 +17979,55,24,9,0.0 +17979,69,36,11,0.0 +17979,36,19,9,0.0 +17979,42,14,47,0.0 +17979,12,38,34,0.0 +17979,10,31,33,0.0 +17979,58,13.25,46,0.0 +17979,35,18,42,0.0 +17979,20,81,42,0.0 +17979,53,32.8,41,0.0 +17979,62,49.3,26,0.0 +17979,13,6,16,0.0 +17979,11,21,1,0.0 +17979,24,4.5,38,0.0 +17979,28,45.6,47,0.0 +17979,51,53,25,0.0 +17979,49,20,39,0.0 +17980,49,20,2,0.0 +17980,67,14,26,0.0 +17980,7,30,9,0.0 +17980,64,33.25,12,0.0 +17981,39,18,50,0.0 +17981,61,28.5,33,0.0 +17981,69,36,23,0.0 +17981,66,17,6,0.0 +17981,5,21.35,1,0.0 +17981,71,21.5,30,0.0 +17981,58,13.25,5,0.0 +17981,29,123.79,45,0.0 +17981,54,7.45,49,0.0 +17981,63,43.9,31,0.0 +17981,7,30,35,0.0 +17981,48,12.75,13,0.0 +17981,40,18.4,50,0.0 +17981,70,15,16,0.0 +17981,60,34,2,0.0 +17981,43,46,30,0.0 +17981,19,9.2,11,0.0 +17981,20,81,7,0.0 +17981,18,62.5,44,0.0 +17981,1,18,22,0.0 +17981,8,40,38,0.0 +17981,12,38,9,0.0 +17981,53,32.8,29,0.0 +17981,68,12.5,2,0.0 +17981,44,19.45,14,0.0 +17981,38,263.5,33,0.0 +17981,62,49.3,10,0.0 +17981,6,25,34,0.0 +17981,49,20,42,0.0 +17981,45,9.5,12,0.0 +17981,22,21,50,0.0 +17981,32,32,38,0.0 +17981,52,7,10,0.0 +17981,35,18,5,0.0 +17981,74,10,9,0.0 +17981,75,7.75,23,0.0 +17981,33,2.5,17,0.0 +17981,4,22,13,0.0 +17981,9,97,31,0.0 +17981,13,6,15,0.0 +17981,37,26,21,0.0 +17981,15,15.5,47,0.0 +17981,16,17.45,40,0.0 +17981,50,16.25,46,0.0 +17981,21,10,8,0.0 +17981,59,55,45,0.0 +17981,76,18,43,0.0 +17981,23,9,34,0.0 +17981,56,38,26,0.0 +17981,14,23.25,25,0.0 +17981,30,25.89,31,0.0 +17981,10,31,34,0.0 +17981,24,4.5,15,0.0 +17981,73,15,29,0.0 +17981,34,14,23,0.0 +17981,65,21.05,31,0.0 +17982,59,55,6,0.0 +17982,32,32,26,0.0 +17982,5,21.35,22,0.0 +17982,13,6,6,0.0 +17982,16,17.45,37,0.0 +17982,70,15,44,0.0 +17982,65,21.05,36,0.0 +17982,17,39,32,0.0 +17982,63,43.9,16,0.0 +17982,75,7.75,50,0.0 +17982,51,53,19,0.0 +17982,50,16.25,35,0.0 +17982,8,40,3,0.0 +17982,72,34.8,34,0.0 +17982,2,19,16,0.0 +17982,48,12.75,16,0.0 +17982,33,2.5,46,0.0 +17982,7,30,10,0.0 +17982,68,12.5,50,0.0 +17982,38,263.5,33,0.0 +17982,35,18,48,0.0 +17982,23,9,23,0.0 +17982,10,31,38,0.0 +17982,74,10,48,0.0 +17982,53,32.8,30,0.0 +17982,47,9.5,50,0.0 +17982,15,15.5,12,0.0 +17982,3,10,29,0.0 +17982,56,38,21,0.0 +17982,1,18,10,0.0 +17982,26,31.23,37,0.0 +17982,62,49.3,36,0.0 +17982,69,36,25,0.0 +17982,36,19,37,0.0 +17982,71,21.5,13,0.0 +17982,49,20,16,0.0 +17982,42,14,4,0.0 +17982,18,62.5,44,0.0 +17982,29,123.79,28,0.0 +17982,44,19.45,45,0.0 +17982,60,34,45,0.0 +17982,76,18,33,0.0 +17982,41,9.65,35,0.0 +17982,34,14,33,0.0 +17982,77,13,5,0.0 +17982,46,12,9,0.0 +17982,4,22,32,0.0 +17982,43,46,10,0.0 +17982,54,7.45,39,0.0 +17982,45,9.5,9,0.0 +17982,11,21,47,0.0 +17982,39,18,28,0.0 +17982,12,38,32,0.0 +17982,40,18.4,23,0.0 +17982,28,45.6,17,0.0 +17982,73,15,4,0.0 +17982,24,4.5,26,0.0 +17982,61,28.5,40,0.0 +17982,6,25,29,0.0 +17982,58,13.25,39,0.0 +17982,19,9.2,35,0.0 +17983,51,53,20,0.0 +17983,10,31,29,0.0 +17983,9,97,42,0.0 +17983,38,263.5,8,0.0 +17983,36,19,23,0.0 +17983,40,18.4,46,0.0 +17983,62,49.3,20,0.0 +17983,7,30,36,0.0 +17983,18,62.5,16,0.0 +17983,64,33.25,46,0.0 +17983,65,21.05,7,0.0 +17983,44,19.45,18,0.0 +17983,25,14,1,0.0 +17983,46,12,50,0.0 +17983,34,14,48,0.0 +17983,70,15,49,0.0 +17983,29,123.79,18,0.0 +17983,4,22,40,0.0 +17983,75,7.75,24,0.0 +17983,35,18,29,0.0 +17984,46,12,20,0.0 +17985,56,38,32,0.0 +17985,27,43.9,29,0.0 +17985,34,14,36,0.0 +17985,43,46,10,0.0 +17985,24,4.5,2,0.0 +17985,41,9.65,27,0.0 +17985,64,33.25,6,0.0 +17985,40,18.4,34,0.0 +17985,13,6,25,0.0 +17985,61,28.5,14,0.0 +17985,10,31,9,0.0 +17985,37,26,3,0.0 +17985,15,15.5,17,0.0 +17985,69,36,18,0.0 +17985,47,9.5,27,0.0 +17985,73,15,21,0.0 +17985,35,18,42,0.0 +17985,53,32.8,42,0.0 +17985,14,23.25,43,0.0 +17985,36,19,40,0.0 +17985,45,9.5,4,0.0 +17985,6,25,17,0.0 +17985,62,49.3,3,0.0 +17985,71,21.5,45,0.0 +17985,3,10,6,0.0 +17985,65,21.05,10,0.0 +17985,30,25.89,17,0.0 +17985,22,21,40,0.0 +17985,48,12.75,13,0.0 +17985,59,55,7,0.0 +17985,72,34.8,39,0.0 +17985,28,45.6,42,0.0 +17985,12,38,32,0.0 +17985,29,123.79,6,0.0 +17985,46,12,17,0.0 +17985,44,19.45,50,0.0 +17985,66,17,43,0.0 +17985,5,21.35,8,0.0 +17985,19,9.2,9,0.0 +17985,50,16.25,29,0.0 +17985,42,14,48,0.0 +17985,32,32,17,0.0 +17985,1,18,35,0.0 +17985,9,97,8,0.0 +17985,76,18,3,0.0 +17985,8,40,3,0.0 +17985,49,20,11,0.0 +17985,16,17.45,14,0.0 +17985,68,12.5,50,0.0 +17985,70,15,11,0.0 +17985,25,14,49,0.0 +17985,39,18,24,0.0 +17985,26,31.23,34,0.0 +17985,57,19.5,6,0.0 +17985,51,53,36,0.0 +17985,21,10,37,0.0 +17985,54,7.45,41,0.0 +17985,7,30,5,0.0 +17985,75,7.75,30,0.0 +17985,77,13,12,0.0 +17985,74,10,49,0.0 +17985,55,24,45,0.0 +17985,31,12.5,15,0.0 +17985,58,13.25,30,0.0 +17985,67,14,5,0.0 +17986,13,6,27,0.0 +17986,15,15.5,7,0.0 +17986,4,22,42,0.0 +17986,21,10,37,0.0 +17986,28,45.6,47,0.0 +17986,38,263.5,8,0.0 +17986,61,28.5,23,0.0 +17986,74,10,22,0.0 +17986,27,43.9,45,0.0 +17986,72,34.8,18,0.0 +17986,25,14,46,0.0 +17986,39,18,23,0.0 +17986,16,17.45,43,0.0 +17986,69,36,33,0.0 +17986,33,2.5,40,0.0 +17986,47,9.5,45,0.0 +17986,41,9.65,49,0.0 +17986,49,20,18,0.0 +17986,58,13.25,30,0.0 +17986,54,7.45,36,0.0 +17986,40,18.4,35,0.0 +17986,48,12.75,24,0.0 +17986,20,81,14,0.0 +17986,59,55,27,0.0 +17986,56,38,12,0.0 +17986,22,21,12,0.0 +17986,23,9,24,0.0 +17986,11,21,24,0.0 +17986,50,16.25,32,0.0 +17986,18,62.5,3,0.0 +17986,2,19,21,0.0 +17986,30,25.89,23,0.0 +17986,3,10,3,0.0 +17986,9,97,5,0.0 +17986,66,17,21,0.0 +17986,37,26,10,0.0 +17986,76,18,7,0.0 +17986,71,21.5,34,0.0 +17986,6,25,26,0.0 +17986,67,14,10,0.0 +17986,10,31,21,0.0 +17986,44,19.45,40,0.0 +17986,52,7,27,0.0 +17986,51,53,31,0.0 +17986,73,15,14,0.0 +17986,17,39,10,0.0 +17986,12,38,43,0.0 +17986,43,46,4,0.0 +17986,70,15,9,0.0 +17986,19,9.2,27,0.0 +17986,53,32.8,25,0.0 +17986,1,18,32,0.0 +17986,63,43.9,29,0.0 +17986,75,7.75,41,0.0 +17986,57,19.5,16,0.0 +17986,77,13,32,0.0 +17986,55,24,16,0.0 +17986,31,12.5,11,0.0 +17986,62,49.3,2,0.0 +17986,45,9.5,46,0.0 +17986,60,34,2,0.0 +17986,7,30,33,0.0 +17986,36,19,6,0.0 +17986,8,40,6,0.0 +17986,26,31.23,17,0.0 +17986,34,14,5,0.0 +17986,42,14,6,0.0 +17986,46,12,11,0.0 +17986,14,23.25,25,0.0 +17986,35,18,35,0.0 +17986,65,21.05,50,0.0 +17986,68,12.5,46,0.0 +17986,24,4.5,41,0.0 +17986,5,21.35,34,0.0 +17986,32,32,38,0.0 +17986,29,123.79,27,0.0 +17986,64,33.25,18,0.0 +17987,2,19,40,0.0 +17987,70,15,37,0.0 +17987,49,20,15,0.0 +17987,38,263.5,26,0.0 +17987,3,10,8,0.0 +17987,34,14,8,0.0 +17987,40,18.4,18,0.0 +17987,14,23.25,24,0.0 +17987,19,9.2,31,0.0 +17987,63,43.9,36,0.0 +17987,23,9,38,0.0 +17987,47,9.5,38,0.0 +17987,64,33.25,33,0.0 +17987,35,18,21,0.0 +17987,25,14,45,0.0 +17987,39,18,38,0.0 +17987,42,14,46,0.0 +17987,60,34,42,0.0 +17987,68,12.5,38,0.0 +17987,36,19,45,0.0 +17987,44,19.45,12,0.0 +17987,57,19.5,4,0.0 +17987,7,30,5,0.0 +17987,30,25.89,42,0.0 +17987,21,10,37,0.0 +17987,53,32.8,21,0.0 +17987,71,21.5,40,0.0 +17987,43,46,12,0.0 +17987,74,10,40,0.0 +17987,58,13.25,2,0.0 +17987,59,55,12,0.0 +17987,41,9.65,26,0.0 +17987,12,38,29,0.0 +17987,50,16.25,7,0.0 +17987,75,7.75,40,0.0 +17987,4,22,34,0.0 +17987,45,9.5,46,0.0 +17987,77,13,47,0.0 +17987,26,31.23,23,0.0 +17987,13,6,23,0.0 +17987,69,36,44,0.0 +17987,22,21,9,0.0 +17987,76,18,16,0.0 +17987,72,34.8,18,0.0 +17987,56,38,20,0.0 +17987,55,24,20,0.0 +17987,5,21.35,47,0.0 +17987,66,17,49,0.0 +17987,18,62.5,5,0.0 +17987,54,7.45,34,0.0 +17987,48,12.75,43,0.0 +17987,67,14,50,0.0 +17987,6,25,24,0.0 +17987,33,2.5,35,0.0 +17987,28,45.6,21,0.0 +17987,31,12.5,16,0.0 +17987,20,81,41,0.0 +17987,27,43.9,31,0.0 +17987,8,40,24,0.0 +17987,1,18,11,0.0 +17987,52,7,47,0.0 +17987,9,97,5,0.0 +17987,65,21.05,11,0.0 +17987,10,31,17,0.0 +17987,61,28.5,38,0.0 +17987,37,26,11,0.0 +17987,29,123.79,8,0.0 +17987,15,15.5,2,0.0 +17987,11,21,47,0.0 +17988,58,13.25,47,0.0 +17988,4,22,47,0.0 +17988,43,46,47,0.0 +17988,34,14,28,0.0 +17988,3,10,36,0.0 +17988,74,10,27,0.0 +17988,28,45.6,33,0.0 +17988,71,21.5,39,0.0 +17988,56,38,45,0.0 +17988,26,31.23,31,0.0 +17988,11,21,28,0.0 +17988,30,25.89,38,0.0 +17988,2,19,25,0.0 +17988,63,43.9,9,0.0 +17988,64,33.25,39,0.0 +17988,6,25,2,0.0 +17988,59,55,49,0.0 +17988,7,30,50,0.0 +17988,47,9.5,14,0.0 +17988,9,97,22,0.0 +17988,41,9.65,46,0.0 +17988,29,123.79,16,0.0 +17988,44,19.45,24,0.0 +17988,67,14,2,0.0 +17988,18,62.5,16,0.0 +17988,25,14,49,0.0 +17988,15,15.5,12,0.0 +17988,39,18,24,0.0 +17988,65,21.05,40,0.0 +17988,72,34.8,27,0.0 +17988,32,32,50,0.0 +17988,17,39,25,0.0 +17988,46,12,13,0.0 +17988,10,31,35,0.0 +17988,57,19.5,33,0.0 +17988,45,9.5,36,0.0 +17988,66,17,33,0.0 +17988,73,15,15,0.0 +17988,70,15,47,0.0 +17988,54,7.45,21,0.0 +17988,35,18,47,0.0 +17988,48,12.75,19,0.0 +17988,49,20,39,0.0 +17988,1,18,32,0.0 +17988,68,12.5,32,0.0 +17988,77,13,37,0.0 +17988,12,38,42,0.0 +17988,76,18,31,0.0 +17988,61,28.5,11,0.0 +17988,21,10,8,0.0 +17988,38,263.5,38,0.0 +17988,40,18.4,19,0.0 +17988,27,43.9,6,0.0 +17988,33,2.5,45,0.0 +17988,31,12.5,36,0.0 +17988,37,26,32,0.0 +17988,60,34,4,0.0 +17988,42,14,18,0.0 +17988,75,7.75,36,0.0 +17988,16,17.45,37,0.0 +17988,5,21.35,8,0.0 +17988,53,32.8,49,0.0 +17988,36,19,18,0.0 +17988,22,21,15,0.0 +17988,8,40,11,0.0 +17988,13,6,8,0.0 +17988,19,9.2,45,0.0 +17988,62,49.3,48,0.0 +17988,24,4.5,6,0.0 +17988,50,16.25,24,0.0 +17988,23,9,28,0.0 +17988,52,7,7,0.0 +17988,20,81,43,0.0 +17988,55,24,45,0.0 +17988,51,53,7,0.0 +17988,69,36,40,0.0 +17989,16,17.45,9,0.0 +17989,34,14,8,0.0 +17989,25,14,12,0.0 +17989,58,13.25,16,0.0 +17989,51,53,14,0.0 +17989,64,33.25,34,0.0 +17989,27,43.9,23,0.0 +17989,6,25,19,0.0 +17989,20,81,39,0.0 +17989,36,19,44,0.0 +17989,38,263.5,38,0.0 +17989,61,28.5,36,0.0 +17989,14,23.25,29,0.0 +17989,53,32.8,21,0.0 +17989,28,45.6,7,0.0 +17989,41,9.65,14,0.0 +17989,71,21.5,30,0.0 +17989,17,39,42,0.0 +17989,37,26,11,0.0 +17989,69,36,3,0.0 +17989,15,15.5,50,0.0 +17989,76,18,30,0.0 +17989,77,13,19,0.0 +17989,29,123.79,7,0.0 +17989,19,9.2,34,0.0 +17989,54,7.45,31,0.0 +17989,44,19.45,23,0.0 +17989,52,7,2,0.0 +17989,40,18.4,49,0.0 +17989,50,16.25,29,0.0 +17989,62,49.3,28,0.0 +17989,4,22,19,0.0 +17990,1,18,39,0.0 +17990,8,40,12,0.0 +17990,16,17.45,37,0.0 +17990,52,7,33,0.0 +17990,66,17,36,0.0 +17990,2,19,18,0.0 +17990,55,24,19,0.0 +17990,64,33.25,1,0.0 +17990,50,16.25,25,0.0 +17990,44,19.45,25,0.0 +17990,27,43.9,12,0.0 +17990,41,9.65,12,0.0 +17990,28,45.6,42,0.0 +17990,63,43.9,18,0.0 +17990,15,15.5,25,0.0 +17990,42,14,42,0.0 +17990,77,13,2,0.0 +17990,43,46,28,0.0 +17990,56,38,44,0.0 +17990,31,12.5,1,0.0 +17990,30,25.89,49,0.0 +17990,47,9.5,44,0.0 +17990,18,62.5,4,0.0 +17990,51,53,4,0.0 +17990,5,21.35,19,0.0 +17990,73,15,31,0.0 +17990,32,32,45,0.0 +17990,49,20,24,0.0 +17990,38,263.5,31,0.0 +17990,19,9.2,49,0.0 +17990,39,18,14,0.0 +17990,35,18,20,0.0 +17990,71,21.5,7,0.0 +17990,34,14,18,0.0 +17990,54,7.45,23,0.0 +17990,58,13.25,13,0.0 +17990,7,30,31,0.0 +17990,62,49.3,38,0.0 +17990,48,12.75,25,0.0 +17990,33,2.5,12,0.0 +17990,24,4.5,13,0.0 +17990,45,9.5,21,0.0 +17990,53,32.8,12,0.0 +17990,9,97,42,0.0 +17990,46,12,25,0.0 +17990,40,18.4,38,0.0 +17990,17,39,45,0.0 +17990,3,10,15,0.0 +17990,68,12.5,43,0.0 +17990,10,31,48,0.0 +17990,70,15,20,0.0 +17990,65,21.05,29,0.0 +17990,60,34,36,0.0 +17991,66,17,29,0.0 +17991,77,13,42,0.0 +17991,23,9,41,0.0 +17991,64,33.25,8,0.0 +17991,55,24,2,0.0 +17991,19,9.2,9,0.0 +17991,20,81,50,0.0 +17991,41,9.65,15,0.0 +17991,52,7,42,0.0 +17991,62,49.3,45,0.0 +17991,53,32.8,45,0.0 +17991,24,4.5,27,0.0 +17991,15,15.5,37,0.0 +17991,73,15,18,0.0 +17991,26,31.23,46,0.0 +17991,71,21.5,11,0.0 +17991,45,9.5,29,0.0 +17991,50,16.25,18,0.0 +17991,54,7.45,42,0.0 +17991,21,10,1,0.0 +17991,49,20,22,0.0 +17991,75,7.75,28,0.0 +17991,25,14,29,0.0 +17991,63,43.9,35,0.0 +17991,51,53,10,0.0 +17991,48,12.75,32,0.0 +17991,31,12.5,36,0.0 +17991,7,30,21,0.0 +17991,46,12,32,0.0 +17991,65,21.05,25,0.0 +17991,5,21.35,20,0.0 +17991,67,14,20,0.0 +17991,29,123.79,3,0.0 +17991,57,19.5,17,0.0 +17991,8,40,28,0.0 +17991,30,25.89,30,0.0 +17991,11,21,11,0.0 +17991,3,10,43,0.0 +17991,14,23.25,24,0.0 +17991,60,34,22,0.0 +17991,72,34.8,38,0.0 +17991,12,38,34,0.0 +17991,42,14,1,0.0 +17991,28,45.6,41,0.0 +17991,17,39,37,0.0 +17991,38,263.5,28,0.0 +17991,9,97,9,0.0 +17991,61,28.5,23,0.0 +17991,56,38,25,0.0 +17992,2,19,33,0.0 +17992,30,25.89,2,0.0 +17992,62,49.3,8,0.0 +17992,27,43.9,31,0.0 +17992,15,15.5,2,0.0 +17992,17,39,30,0.0 +17992,51,53,18,0.0 +17992,31,12.5,6,0.0 +17992,5,21.35,47,0.0 +17992,37,26,29,0.0 +17992,66,17,9,0.0 +17992,43,46,42,0.0 +17992,6,25,46,0.0 +17992,3,10,31,0.0 +17992,53,32.8,4,0.0 +17992,9,97,17,0.0 +17992,7,30,27,0.0 +17992,73,15,19,0.0 +17992,47,9.5,2,0.0 +17992,40,18.4,31,0.0 +17992,46,12,16,0.0 +17992,33,2.5,43,0.0 +17992,11,21,1,0.0 +17992,61,28.5,32,0.0 +17992,48,12.75,4,0.0 +17992,56,38,33,0.0 +17992,44,19.45,13,0.0 +17992,59,55,3,0.0 +17992,35,18,49,0.0 +17993,65,21.05,32,0.0 +17993,18,62.5,5,0.0 +17993,32,32,26,0.0 +17993,19,9.2,39,0.0 +17993,59,55,7,0.0 +17993,17,39,27,0.0 +17993,53,32.8,50,0.0 +17993,24,4.5,8,0.0 +17993,48,12.75,46,0.0 +17993,50,16.25,14,0.0 +17993,75,7.75,28,0.0 +17993,11,21,37,0.0 +17994,77,13,29,0.0 +17994,46,12,36,0.0 +17994,57,19.5,8,0.0 +17994,14,23.25,16,0.0 +17994,16,17.45,48,0.0 +17994,55,24,46,0.0 +17995,10,31,43,0.0 +17995,72,34.8,22,0.0 +17995,22,21,33,0.0 +17995,45,9.5,22,0.0 +17995,54,7.45,37,0.0 +17995,67,14,32,0.0 +17995,59,55,10,0.0 +17995,15,15.5,27,0.0 +17995,29,123.79,34,0.0 +17995,35,18,42,0.0 +17995,19,9.2,46,0.0 +17995,66,17,32,0.0 +17995,40,18.4,32,0.0 +17995,33,2.5,1,0.0 +17995,76,18,35,0.0 +17995,4,22,16,0.0 +17995,64,33.25,5,0.0 +17995,50,16.25,15,0.0 +17995,31,12.5,43,0.0 +17995,52,7,41,0.0 +17995,17,39,25,0.0 +17995,73,15,17,0.0 +17995,20,81,2,0.0 +17995,63,43.9,25,0.0 +17995,23,9,6,0.0 +17995,41,9.65,24,0.0 +17995,16,17.45,8,0.0 +17995,46,12,9,0.0 +17995,39,18,28,0.0 +17995,37,26,26,0.0 +17995,7,30,9,0.0 +17995,51,53,35,0.0 +17995,1,18,38,0.0 +17995,34,14,12,0.0 +17995,8,40,46,0.0 +17995,28,45.6,29,0.0 +17995,2,19,4,0.0 +17995,42,14,50,0.0 +17995,48,12.75,10,0.0 +17995,9,97,50,0.0 +17995,24,4.5,31,0.0 +17995,11,21,46,0.0 +17996,66,17,50,0.0 +17996,28,45.6,49,0.0 +17996,65,21.05,21,0.0 +17996,6,25,48,0.0 +17996,43,46,15,0.0 +17996,36,19,12,0.0 +17996,50,16.25,42,0.0 +17996,22,21,10,0.0 +17996,40,18.4,11,0.0 +17996,60,34,19,0.0 +17996,12,38,31,0.0 +17996,29,123.79,41,0.0 +17996,4,22,29,0.0 +17996,23,9,42,0.0 +17996,70,15,21,0.0 +17996,47,9.5,41,0.0 +17996,62,49.3,4,0.0 +17996,45,9.5,17,0.0 +17996,55,24,4,0.0 +17996,7,30,50,0.0 +17996,41,9.65,20,0.0 +17996,51,53,42,0.0 +17996,39,18,21,0.0 +17996,52,7,45,0.0 +17996,31,12.5,17,0.0 +17996,71,21.5,3,0.0 +17996,2,19,19,0.0 +17996,44,19.45,22,0.0 +17996,61,28.5,4,0.0 +17996,56,38,36,0.0 +17996,30,25.89,34,0.0 +17996,19,9.2,24,0.0 +17996,25,14,20,0.0 +17996,1,18,34,0.0 +17996,3,10,33,0.0 +17996,5,21.35,35,0.0 +17996,11,21,7,0.0 +17996,63,43.9,22,0.0 +17996,46,12,36,0.0 +17996,10,31,25,0.0 +17996,59,55,33,0.0 +17996,14,23.25,43,0.0 +17996,9,97,9,0.0 +17996,77,13,29,0.0 +17996,24,4.5,34,0.0 +17996,8,40,35,0.0 +17996,34,14,17,0.0 +17996,72,34.8,46,0.0 +17996,73,15,7,0.0 +17996,48,12.75,38,0.0 +17996,21,10,31,0.0 +17996,26,31.23,24,0.0 +17996,76,18,3,0.0 +17996,42,14,26,0.0 +17996,67,14,42,0.0 +17996,69,36,49,0.0 +17996,35,18,39,0.0 +17996,18,62.5,14,0.0 +17996,27,43.9,36,0.0 +17996,32,32,18,0.0 +17996,16,17.45,36,0.0 +17997,63,43.9,32,0.0 +17997,72,34.8,48,0.0 +17997,8,40,28,0.0 +17997,23,9,42,0.0 +17997,25,14,11,0.0 +17997,48,12.75,15,0.0 +17997,1,18,31,0.0 +17997,61,28.5,36,0.0 +17997,24,4.5,18,0.0 +17997,53,32.8,27,0.0 +17997,3,10,10,0.0 +17997,4,22,39,0.0 +17997,37,26,4,0.0 +17997,12,38,2,0.0 +17997,19,9.2,22,0.0 +17997,38,263.5,42,0.0 +17997,9,97,16,0.0 +17997,17,39,46,0.0 +17997,59,55,35,0.0 +17997,65,21.05,15,0.0 +17997,77,13,18,0.0 +17997,42,14,28,0.0 +17997,33,2.5,48,0.0 +17997,52,7,49,0.0 +17997,67,14,16,0.0 +17997,22,21,13,0.0 +17997,46,12,46,0.0 +17997,71,21.5,1,0.0 +17997,41,9.65,7,0.0 +17997,51,53,4,0.0 +17997,43,46,40,0.0 +17997,15,15.5,10,0.0 +17997,34,14,27,0.0 +17997,11,21,9,0.0 +17997,55,24,50,0.0 +17997,50,16.25,46,0.0 +17997,45,9.5,35,0.0 +17997,44,19.45,24,0.0 +17997,69,36,12,0.0 +17997,6,25,42,0.0 +17997,5,21.35,17,0.0 +17997,75,7.75,41,0.0 +17997,68,12.5,19,0.0 +17997,56,38,14,0.0 +17997,60,34,25,0.0 +17997,29,123.79,42,0.0 +17997,32,32,29,0.0 +17997,10,31,35,0.0 +17997,47,9.5,41,0.0 +17997,35,18,14,0.0 +17997,36,19,20,0.0 +17997,66,17,45,0.0 +17997,54,7.45,42,0.0 +17997,57,19.5,48,0.0 +17997,27,43.9,30,0.0 +17997,40,18.4,30,0.0 +17997,20,81,24,0.0 +17997,49,20,8,0.0 +17997,39,18,14,0.0 +17997,16,17.45,49,0.0 +17997,73,15,46,0.0 +17998,77,13,17,0.0 +17998,37,26,34,0.0 +17998,3,10,20,0.0 +17998,24,4.5,36,0.0 +17998,38,263.5,27,0.0 +17998,54,7.45,28,0.0 +17998,63,43.9,38,0.0 +17998,70,15,18,0.0 +17998,57,19.5,2,0.0 +17998,32,32,12,0.0 +17998,64,33.25,16,0.0 +17998,33,2.5,44,0.0 +17998,21,10,20,0.0 +17998,31,12.5,40,0.0 +17998,35,18,29,0.0 +17998,22,21,35,0.0 +17998,28,45.6,15,0.0 +17998,74,10,11,0.0 +17998,59,55,44,0.0 +17998,43,46,12,0.0 +17998,45,9.5,3,0.0 +17998,71,21.5,39,0.0 +17998,20,81,27,0.0 +17998,72,34.8,5,0.0 +17998,17,39,6,0.0 +17998,4,22,41,0.0 +17998,25,14,50,0.0 +17998,9,97,41,0.0 +17998,62,49.3,4,0.0 +17998,8,40,16,0.0 +17998,48,12.75,43,0.0 +17998,7,30,29,0.0 +17998,5,21.35,5,0.0 +17998,68,12.5,14,0.0 +17998,26,31.23,37,0.0 +17998,6,25,10,0.0 +17998,14,23.25,22,0.0 +17999,22,21,9,0.0 +17999,73,15,14,0.0 +17999,74,10,37,0.0 +17999,69,36,4,0.0 +17999,54,7.45,45,0.0 +17999,40,18.4,17,0.0 +17999,43,46,38,0.0 +17999,76,18,9,0.0 +17999,68,12.5,30,0.0 +17999,1,18,49,0.0 +17999,46,12,41,0.0 +17999,55,24,18,0.0 +17999,12,38,8,0.0 +17999,28,45.6,18,0.0 +17999,3,10,44,0.0 +17999,4,22,46,0.0 +17999,72,34.8,32,0.0 +17999,37,26,43,0.0 +17999,29,123.79,4,0.0 +17999,65,21.05,48,0.0 +17999,20,81,5,0.0 +17999,7,30,49,0.0 +17999,23,9,1,0.0 +17999,21,10,29,0.0 +17999,62,49.3,1,0.0 +17999,59,55,25,0.0 +17999,19,9.2,18,0.0 +17999,32,32,13,0.0 +17999,44,19.45,24,0.0 +17999,34,14,23,0.0 +17999,64,33.25,33,0.0 +17999,57,19.5,9,0.0 +17999,53,32.8,11,0.0 +17999,17,39,40,0.0 +17999,60,34,29,0.0 +17999,25,14,26,0.0 +17999,9,97,35,0.0 +17999,30,25.89,34,0.0 +17999,39,18,32,0.0 +17999,52,7,20,0.0 +17999,26,31.23,31,0.0 +17999,6,25,48,0.0 +17999,51,53,38,0.0 +17999,16,17.45,31,0.0 +17999,10,31,34,0.0 +17999,42,14,44,0.0 +17999,47,9.5,20,0.0 +17999,24,4.5,26,0.0 +17999,27,43.9,6,0.0 +18000,9,97,17,0.0 +18000,32,32,15,0.0 +18000,50,16.25,48,0.0 +18000,4,22,26,0.0 +18000,47,9.5,46,0.0 +18000,16,17.45,2,0.0 +18000,59,55,27,0.0 +18000,33,2.5,6,0.0 +18000,20,81,30,0.0 +18000,72,34.8,4,0.0 +18000,71,21.5,24,0.0 +18000,53,32.8,43,0.0 +18000,34,14,46,0.0 +18000,17,39,47,0.0 +18000,75,7.75,31,0.0 +18000,66,17,45,0.0 +18000,54,7.45,50,0.0 +18000,38,263.5,11,0.0 +18000,12,38,49,0.0 +18000,55,24,22,0.0 +18000,29,123.79,30,0.0 +18000,10,31,41,0.0 +18000,25,14,9,0.0 +18000,28,45.6,39,0.0 +18000,21,10,26,0.0 +18000,51,53,17,0.0 +18000,13,6,46,0.0 +18000,31,12.5,40,0.0 +18000,42,14,30,0.0 +18000,44,19.45,48,0.0 +18000,61,28.5,13,0.0 +18000,7,30,8,0.0 +18000,39,18,6,0.0 +18000,62,49.3,25,0.0 +18000,27,43.9,29,0.0 +18000,18,62.5,9,0.0 +18000,56,38,38,0.0 +18000,74,10,23,0.0 +18000,6,25,14,0.0 +18000,76,18,34,0.0 +18000,23,9,47,0.0 +18000,58,13.25,38,0.0 +18000,8,40,48,0.0 +18000,14,23.25,24,0.0 +18000,70,15,49,0.0 +18001,6,25,19,0.0 +18001,18,62.5,34,0.0 +18001,25,14,6,0.0 +18001,57,19.5,36,0.0 +18001,45,9.5,25,0.0 +18001,13,6,44,0.0 +18001,20,81,7,0.0 +18001,73,15,35,0.0 +18001,69,36,41,0.0 +18001,55,24,25,0.0 +18001,14,23.25,14,0.0 +18001,64,33.25,7,0.0 +18001,61,28.5,37,0.0 +18001,43,46,46,0.0 +18001,48,12.75,22,0.0 +18001,44,19.45,27,0.0 +18001,22,21,6,0.0 +18001,29,123.79,13,0.0 +18001,34,14,40,0.0 +18001,60,34,14,0.0 +18001,39,18,2,0.0 +18001,30,25.89,39,0.0 +18001,76,18,36,0.0 +18001,58,13.25,42,0.0 +18001,5,21.35,33,0.0 +18001,19,9.2,24,0.0 +18001,42,14,34,0.0 +18001,56,38,29,0.0 +18001,27,43.9,11,0.0 +18001,2,19,30,0.0 +18001,9,97,3,0.0 +18001,59,55,44,0.0 +18001,68,12.5,41,0.0 +18001,72,34.8,16,0.0 +18001,23,9,6,0.0 +18001,1,18,33,0.0 +18001,66,17,38,0.0 +18001,50,16.25,25,0.0 +18001,77,13,45,0.0 +18001,49,20,4,0.0 +18001,41,9.65,27,0.0 +18001,47,9.5,43,0.0 +18001,52,7,21,0.0 +18001,35,18,28,0.0 +18001,62,49.3,21,0.0 +18001,63,43.9,6,0.0 +18001,24,4.5,28,0.0 +18001,75,7.75,13,0.0 +18001,70,15,32,0.0 +18001,12,38,47,0.0 +18001,46,12,8,0.0 +18001,71,21.5,3,0.0 +18001,32,32,34,0.0 +18001,17,39,29,0.0 +18001,10,31,23,0.0 +18001,65,21.05,1,0.0 +18001,74,10,7,0.0 +18001,11,21,31,0.0 +18001,15,15.5,22,0.0 +18001,33,2.5,3,0.0 +18001,40,18.4,46,0.0 +18001,67,14,19,0.0 +18001,28,45.6,36,0.0 +18001,8,40,43,0.0 +18001,26,31.23,36,0.0 +18002,59,55,22,0.0 +18002,70,15,18,0.0 +18002,33,2.5,15,0.0 +18002,34,14,49,0.0 +18002,52,7,26,0.0 +18002,60,34,36,0.0 +18002,54,7.45,22,0.0 +18002,74,10,44,0.0 +18002,64,33.25,28,0.0 +18002,56,38,14,0.0 +18002,3,10,49,0.0 +18002,31,12.5,30,0.0 +18002,43,46,6,0.0 +18002,15,15.5,42,0.0 +18002,32,32,13,0.0 +18002,6,25,15,0.0 +18002,76,18,30,0.0 +18002,29,123.79,20,0.0 +18002,5,21.35,6,0.0 +18002,72,34.8,22,0.0 +18002,14,23.25,17,0.0 +18002,50,16.25,21,0.0 +18002,19,9.2,34,0.0 +18002,24,4.5,12,0.0 +18002,37,26,20,0.0 +18002,27,43.9,18,0.0 +18002,26,31.23,26,0.0 +18002,35,18,45,0.0 +18002,11,21,44,0.0 +18002,53,32.8,25,0.0 +18002,16,17.45,9,0.0 +18002,69,36,23,0.0 +18002,66,17,25,0.0 +18002,30,25.89,22,0.0 +18002,44,19.45,14,0.0 +18002,18,62.5,44,0.0 +18002,77,13,15,0.0 +18002,48,12.75,4,0.0 +18002,1,18,21,0.0 +18002,61,28.5,42,0.0 +18002,23,9,43,0.0 +18002,40,18.4,2,0.0 +18002,47,9.5,29,0.0 +18002,55,24,46,0.0 +18002,2,19,43,0.0 +18002,49,20,11,0.0 +18003,32,32,24,0.0 +18003,63,43.9,29,0.0 +18003,9,97,3,0.0 +18003,20,81,49,0.0 +18003,69,36,18,0.0 +18003,2,19,32,0.0 +18003,34,14,32,0.0 +18003,76,18,3,0.0 +18003,47,9.5,30,0.0 +18003,44,19.45,39,0.0 +18003,7,30,28,0.0 +18003,49,20,46,0.0 +18003,73,15,44,0.0 +18003,53,32.8,21,0.0 +18003,16,17.45,34,0.0 +18003,67,14,47,0.0 +18003,25,14,48,0.0 +18003,8,40,50,0.0 +18003,28,45.6,34,0.0 +18003,55,24,22,0.0 +18003,48,12.75,31,0.0 +18003,27,43.9,41,0.0 +18003,18,62.5,17,0.0 +18003,51,53,1,0.0 +18003,21,10,20,0.0 +18003,40,18.4,1,0.0 +18003,45,9.5,19,0.0 +18003,24,4.5,25,0.0 +18003,36,19,8,0.0 +18004,65,21.05,38,0.0 +18004,35,18,26,0.0 +18004,29,123.79,17,0.0 +18004,14,23.25,50,0.0 +18004,54,7.45,34,0.0 +18004,71,21.5,8,0.0 +18004,15,15.5,25,0.0 +18004,46,12,47,0.0 +18004,74,10,11,0.0 +18004,57,19.5,29,0.0 +18004,26,31.23,44,0.0 +18004,63,43.9,44,0.0 +18004,31,12.5,35,0.0 +18004,60,34,38,0.0 +18004,69,36,11,0.0 +18004,43,46,9,0.0 +18004,1,18,25,0.0 +18004,6,25,18,0.0 +18004,22,21,17,0.0 +18004,45,9.5,13,0.0 +18004,52,7,30,0.0 +18004,18,62.5,4,0.0 +18004,59,55,25,0.0 +18004,44,19.45,7,0.0 +18004,70,15,41,0.0 +18004,51,53,24,0.0 +18004,7,30,16,0.0 +18004,55,24,37,0.0 +18004,21,10,25,0.0 +18004,5,21.35,49,0.0 +18004,28,45.6,6,0.0 +18004,10,31,18,0.0 +18004,17,39,11,0.0 +18004,19,9.2,33,0.0 +18004,37,26,30,0.0 +18004,76,18,39,0.0 +18004,73,15,22,0.0 +18004,64,33.25,28,0.0 +18004,3,10,6,0.0 +18004,49,20,6,0.0 +18004,27,43.9,33,0.0 +18004,72,34.8,29,0.0 +18004,66,17,37,0.0 +18004,56,38,10,0.0 +18004,24,4.5,26,0.0 +18004,77,13,38,0.0 +18004,68,12.5,11,0.0 +18004,23,9,28,0.0 +18004,75,7.75,47,0.0 +18004,36,19,35,0.0 +18004,40,18.4,24,0.0 +18004,62,49.3,29,0.0 +18004,25,14,48,0.0 +18004,4,22,9,0.0 +18004,30,25.89,29,0.0 +18004,12,38,19,0.0 +18004,2,19,14,0.0 +18004,16,17.45,33,0.0 +18005,24,4.5,33,0.0 +18005,65,21.05,17,0.0 +18005,28,45.6,2,0.0 +18005,29,123.79,4,0.0 +18005,9,97,23,0.0 +18005,68,12.5,22,0.0 +18005,66,17,46,0.0 +18005,12,38,1,0.0 +18005,61,28.5,46,0.0 +18005,67,14,38,0.0 +18005,33,2.5,17,0.0 +18005,57,19.5,35,0.0 +18005,75,7.75,22,0.0 +18005,26,31.23,40,0.0 +18005,50,16.25,34,0.0 +18005,77,13,23,0.0 +18005,72,34.8,47,0.0 +18005,6,25,4,0.0 +18005,40,18.4,37,0.0 +18005,18,62.5,13,0.0 +18005,21,10,11,0.0 +18005,17,39,48,0.0 +18005,55,24,34,0.0 +18005,35,18,6,0.0 +18005,20,81,10,0.0 +18005,11,21,24,0.0 +18006,39,18,3,0.0 +18006,29,123.79,5,0.0 +18006,76,18,39,0.0 +18006,32,32,12,0.0 +18006,72,34.8,29,0.0 +18006,22,21,38,0.0 +18006,69,36,14,0.0 +18006,33,2.5,20,0.0 +18007,39,18,25,0.0 +18007,55,24,16,0.0 +18007,50,16.25,20,0.0 +18007,5,21.35,14,0.0 +18007,57,19.5,48,0.0 +18007,19,9.2,9,0.0 +18007,21,10,6,0.0 +18007,48,12.75,27,0.0 +18007,44,19.45,16,0.0 +18007,32,32,42,0.0 +18007,68,12.5,16,0.0 +18007,10,31,19,0.0 +18007,30,25.89,30,0.0 +18007,45,9.5,32,0.0 +18007,71,21.5,33,0.0 +18007,73,15,14,0.0 +18007,60,34,48,0.0 +18007,6,25,12,0.0 +18007,53,32.8,29,0.0 +18007,7,30,3,0.0 +18007,35,18,1,0.0 +18007,12,38,13,0.0 +18007,4,22,41,0.0 +18007,49,20,18,0.0 +18008,54,7.45,3,0.0 +18008,70,15,5,0.0 +18008,30,25.89,13,0.0 +18008,49,20,43,0.0 +18008,16,17.45,22,0.0 +18008,39,18,34,0.0 +18008,6,25,9,0.0 +18008,52,7,28,0.0 +18008,21,10,28,0.0 +18008,65,21.05,24,0.0 +18008,31,12.5,7,0.0 +18008,10,31,2,0.0 +18008,29,123.79,6,0.0 +18008,59,55,12,0.0 +18008,72,34.8,42,0.0 +18008,24,4.5,20,0.0 +18008,73,15,38,0.0 +18008,2,19,50,0.0 +18008,23,9,1,0.0 +18008,55,24,25,0.0 +18008,56,38,47,0.0 +18008,8,40,50,0.0 +18008,64,33.25,46,0.0 +18008,60,34,3,0.0 +18008,46,12,36,0.0 +18008,33,2.5,20,0.0 +18008,62,49.3,9,0.0 +18008,43,46,29,0.0 +18008,22,21,49,0.0 +18008,20,81,15,0.0 +18008,61,28.5,49,0.0 +18008,9,97,6,0.0 +18008,42,14,36,0.0 +18008,53,32.8,21,0.0 +18008,45,9.5,20,0.0 +18009,22,21,36,0.0 +18009,12,38,35,0.0 +18009,24,4.5,34,0.0 +18009,69,36,38,0.0 +18009,33,2.5,27,0.0 +18009,29,123.79,26,0.0 +18009,15,15.5,24,0.0 +18009,35,18,38,0.0 +18009,48,12.75,43,0.0 +18009,56,38,18,0.0 +18009,52,7,45,0.0 +18009,45,9.5,42,0.0 +18009,2,19,26,0.0 +18009,66,17,2,0.0 +18009,65,21.05,27,0.0 +18009,51,53,1,0.0 +18009,42,14,7,0.0 +18009,64,33.25,18,0.0 +18009,53,32.8,15,0.0 +18009,63,43.9,39,0.0 +18009,57,19.5,10,0.0 +18009,37,26,33,0.0 +18009,16,17.45,40,0.0 +18009,26,31.23,20,0.0 +18009,28,45.6,45,0.0 +18009,10,31,2,0.0 +18009,46,12,24,0.0 +18009,6,25,42,0.0 +18009,72,34.8,31,0.0 +18009,13,6,37,0.0 +18009,41,9.65,48,0.0 +18009,5,21.35,16,0.0 +18009,7,30,1,0.0 +18009,20,81,49,0.0 +18009,18,62.5,47,0.0 +18009,4,22,50,0.0 +18009,36,19,6,0.0 +18009,43,46,25,0.0 +18009,75,7.75,4,0.0 +18009,1,18,14,0.0 +18009,44,19.45,46,0.0 +18009,60,34,44,0.0 +18009,17,39,46,0.0 +18009,25,14,7,0.0 +18009,50,16.25,26,0.0 +18009,3,10,47,0.0 +18009,23,9,19,0.0 +18009,32,32,50,0.0 +18009,54,7.45,45,0.0 +18009,68,12.5,10,0.0 +18009,38,263.5,22,0.0 +18009,11,21,10,0.0 +18009,39,18,1,0.0 +18009,47,9.5,15,0.0 +18010,10,31,49,0.0 +18010,47,9.5,33,0.0 +18010,25,14,42,0.0 +18010,50,16.25,31,0.0 +18010,72,34.8,19,0.0 +18010,22,21,27,0.0 +18010,70,15,14,0.0 +18010,44,19.45,45,0.0 +18010,9,97,5,0.0 +18010,48,12.75,6,0.0 +18010,37,26,42,0.0 +18010,63,43.9,16,0.0 +18010,32,32,15,0.0 +18010,45,9.5,36,0.0 +18010,66,17,43,0.0 +18010,41,9.65,28,0.0 +18010,23,9,6,0.0 +18010,4,22,44,0.0 +18010,31,12.5,50,0.0 +18010,5,21.35,9,0.0 +18010,52,7,10,0.0 +18010,26,31.23,47,0.0 +18010,1,18,48,0.0 +18010,58,13.25,17,0.0 +18010,43,46,14,0.0 +18010,6,25,45,0.0 +18010,73,15,37,0.0 +18010,76,18,17,0.0 +18010,38,263.5,11,0.0 +18010,57,19.5,37,0.0 +18010,55,24,21,0.0 +18010,30,25.89,33,0.0 +18010,69,36,39,0.0 +18010,62,49.3,16,0.0 +18010,51,53,29,0.0 +18010,27,43.9,35,0.0 +18010,59,55,20,0.0 +18010,20,81,37,0.0 +18010,11,21,12,0.0 +18010,19,9.2,4,0.0 +18010,3,10,23,0.0 +18010,40,18.4,21,0.0 +18010,7,30,47,0.0 +18010,16,17.45,4,0.0 +18011,65,21.05,44,0.0 +18011,40,18.4,49,0.0 +18011,1,18,47,0.0 +18011,76,18,9,0.0 +18011,46,12,1,0.0 +18011,27,43.9,28,0.0 +18011,6,25,42,0.0 +18011,15,15.5,45,0.0 +18011,9,97,3,0.0 +18011,56,38,10,0.0 +18011,53,32.8,31,0.0 +18011,52,7,36,0.0 +18011,11,21,11,0.0 +18011,49,20,14,0.0 +18012,3,10,47,0.0 +18012,47,9.5,25,0.0 +18012,32,32,44,0.0 +18012,72,34.8,45,0.0 +18012,10,31,50,0.0 +18012,6,25,36,0.0 +18012,27,43.9,18,0.0 +18012,69,36,22,0.0 +18012,66,17,22,0.0 +18012,34,14,42,0.0 +18012,48,12.75,10,0.0 +18012,23,9,49,0.0 +18012,22,21,13,0.0 +18012,26,31.23,48,0.0 +18012,55,24,40,0.0 +18012,43,46,29,0.0 +18012,75,7.75,27,0.0 +18012,42,14,41,0.0 +18012,35,18,39,0.0 +18012,71,21.5,13,0.0 +18012,52,7,25,0.0 +18012,14,23.25,19,0.0 +18012,51,53,40,0.0 +18012,25,14,19,0.0 +18012,50,16.25,49,0.0 +18012,1,18,26,0.0 +18012,45,9.5,30,0.0 +18012,68,12.5,42,0.0 +18012,16,17.45,20,0.0 +18012,57,19.5,20,0.0 +18012,46,12,21,0.0 +18013,39,18,26,0.0 +18013,45,9.5,23,0.0 +18013,52,7,7,0.0 +18013,4,22,31,0.0 +18013,30,25.89,38,0.0 +18013,40,18.4,13,0.0 +18013,9,97,8,0.0 +18013,22,21,22,0.0 +18013,2,19,49,0.0 +18013,53,32.8,8,0.0 +18013,23,9,7,0.0 +18013,71,21.5,33,0.0 +18013,69,36,44,0.0 +18013,37,26,6,0.0 +18013,73,15,1,0.0 +18013,16,17.45,50,0.0 +18013,65,21.05,35,0.0 +18013,42,14,1,0.0 +18013,6,25,10,0.0 +18013,63,43.9,22,0.0 +18013,32,32,22,0.0 +18013,44,19.45,42,0.0 +18013,59,55,7,0.0 +18013,55,24,38,0.0 +18013,5,21.35,44,0.0 +18013,20,81,6,0.0 +18013,38,263.5,43,0.0 +18013,29,123.79,29,0.0 +18013,11,21,2,0.0 +18013,68,12.5,10,0.0 +18013,19,9.2,27,0.0 +18013,36,19,21,0.0 +18013,75,7.75,34,0.0 +18013,70,15,44,0.0 +18013,3,10,49,0.0 +18013,24,4.5,22,0.0 +18013,74,10,20,0.0 +18013,54,7.45,48,0.0 +18013,34,14,44,0.0 +18013,43,46,33,0.0 +18013,33,2.5,8,0.0 +18013,14,23.25,30,0.0 +18013,64,33.25,28,0.0 +18013,61,28.5,10,0.0 +18013,58,13.25,14,0.0 +18013,25,14,28,0.0 +18013,21,10,19,0.0 +18013,28,45.6,11,0.0 +18013,57,19.5,20,0.0 +18013,17,39,35,0.0 +18013,49,20,30,0.0 +18013,56,38,48,0.0 +18013,27,43.9,28,0.0 +18013,46,12,11,0.0 +18013,60,34,49,0.0 +18013,12,38,46,0.0 +18013,72,34.8,27,0.0 +18013,77,13,10,0.0 +18013,18,62.5,27,0.0 +18013,26,31.23,30,0.0 +18013,35,18,1,0.0 +18013,62,49.3,12,0.0 +18013,48,12.75,49,0.0 +18013,7,30,32,0.0 +18014,49,20,24,0.0 +18014,57,19.5,46,0.0 +18014,61,28.5,48,0.0 +18014,13,6,13,0.0 +18014,39,18,6,0.0 +18014,62,49.3,49,0.0 +18014,66,17,5,0.0 +18014,59,55,28,0.0 +18014,4,22,36,0.0 +18014,37,26,10,0.0 +18014,20,81,19,0.0 +18014,68,12.5,26,0.0 +18014,67,14,4,0.0 +18014,74,10,30,0.0 +18014,58,13.25,7,0.0 +18014,5,21.35,18,0.0 +18014,45,9.5,6,0.0 +18014,14,23.25,1,0.0 +18014,48,12.75,2,0.0 +18014,22,21,31,0.0 +18014,3,10,19,0.0 +18014,23,9,31,0.0 +18014,9,97,2,0.0 +18014,46,12,12,0.0 +18014,24,4.5,40,0.0 +18014,15,15.5,17,0.0 +18014,25,14,49,0.0 +18014,30,25.89,46,0.0 +18015,37,26,37,0.0 +18015,48,12.75,45,0.0 +18015,72,34.8,44,0.0 +18015,38,263.5,8,0.0 +18015,31,12.5,35,0.0 +18015,74,10,9,0.0 +18015,24,4.5,46,0.0 +18015,4,22,35,0.0 +18015,39,18,12,0.0 +18015,61,28.5,19,0.0 +18015,62,49.3,36,0.0 +18015,21,10,45,0.0 +18015,41,9.65,9,0.0 +18015,55,24,44,0.0 +18015,33,2.5,33,0.0 +18015,66,17,7,0.0 +18015,52,7,3,0.0 +18015,28,45.6,3,0.0 +18015,56,38,17,0.0 +18015,73,15,35,0.0 +18015,20,81,17,0.0 +18015,46,12,5,0.0 +18015,10,31,28,0.0 +18015,36,19,6,0.0 +18015,47,9.5,15,0.0 +18015,43,46,45,0.0 +18015,70,15,21,0.0 +18015,77,13,9,0.0 +18015,60,34,36,0.0 +18015,6,25,27,0.0 +18015,44,19.45,45,0.0 +18015,51,53,22,0.0 +18015,1,18,42,0.0 +18015,59,55,14,0.0 +18015,34,14,11,0.0 +18015,54,7.45,7,0.0 +18015,23,9,9,0.0 +18015,29,123.79,38,0.0 +18015,53,32.8,20,0.0 +18015,22,21,14,0.0 +18015,58,13.25,48,0.0 +18015,17,39,28,0.0 +18015,49,20,31,0.0 +18015,8,40,21,0.0 +18015,25,14,25,0.0 +18015,11,21,18,0.0 +18015,45,9.5,25,0.0 +18015,7,30,33,0.0 +18015,42,14,17,0.0 +18015,9,97,26,0.0 +18015,27,43.9,28,0.0 +18015,3,10,1,0.0 +18015,35,18,45,0.0 +18015,30,25.89,34,0.0 +18015,13,6,8,0.0 +18015,68,12.5,45,0.0 +18015,76,18,47,0.0 +18016,15,15.5,30,0.0 +18016,48,12.75,16,0.0 +18016,27,43.9,10,0.0 +18016,41,9.65,47,0.0 +18016,37,26,35,0.0 +18016,54,7.45,1,0.0 +18016,52,7,1,0.0 +18016,33,2.5,28,0.0 +18016,9,97,8,0.0 +18016,14,23.25,38,0.0 +18016,69,36,4,0.0 +18016,66,17,30,0.0 +18016,64,33.25,9,0.0 +18016,8,40,1,0.0 +18016,40,18.4,38,0.0 +18016,6,25,34,0.0 +18016,39,18,1,0.0 +18016,55,24,27,0.0 +18016,12,38,48,0.0 +18016,29,123.79,40,0.0 +18016,5,21.35,26,0.0 +18016,62,49.3,33,0.0 +18016,22,21,36,0.0 +18016,53,32.8,25,0.0 +18016,38,263.5,46,0.0 +18016,13,6,17,0.0 +18016,30,25.89,5,0.0 +18016,46,12,35,0.0 +18016,72,34.8,37,0.0 +18016,43,46,18,0.0 +18016,24,4.5,16,0.0 +18016,31,12.5,48,0.0 +18016,42,14,40,0.0 +18016,68,12.5,8,0.0 +18016,76,18,45,0.0 +18016,61,28.5,41,0.0 +18016,58,13.25,26,0.0 +18016,77,13,48,0.0 +18016,4,22,30,0.0 +18016,49,20,1,0.0 +18016,60,34,38,0.0 +18016,21,10,37,0.0 +18016,16,17.45,22,0.0 +18016,74,10,34,0.0 +18016,67,14,15,0.0 +18016,70,15,28,0.0 +18016,44,19.45,41,0.0 +18016,17,39,8,0.0 +18016,18,62.5,1,0.0 +18016,23,9,29,0.0 +18016,3,10,4,0.0 +18016,35,18,28,0.0 +18016,19,9.2,2,0.0 +18016,7,30,8,0.0 +18016,63,43.9,15,0.0 +18016,59,55,50,0.0 +18016,50,16.25,26,0.0 +18016,25,14,12,0.0 +18016,36,19,28,0.0 +18016,57,19.5,24,0.0 +18016,56,38,4,0.0 +18016,45,9.5,15,0.0 +18016,28,45.6,48,0.0 +18016,26,31.23,32,0.0 +18016,73,15,11,0.0 +18016,11,21,9,0.0 +18016,71,21.5,7,0.0 +18016,2,19,32,0.0 +18017,64,33.25,11,0.0 +18017,50,16.25,36,0.0 +18017,10,31,24,0.0 +18017,37,26,19,0.0 +18017,61,28.5,38,0.0 +18017,60,34,22,0.0 +18017,29,123.79,43,0.0 +18017,4,22,37,0.0 +18017,35,18,45,0.0 +18017,47,9.5,48,0.0 +18017,2,19,12,0.0 +18017,44,19.45,8,0.0 +18017,74,10,25,0.0 +18017,38,263.5,27,0.0 +18017,1,18,13,0.0 +18017,6,25,4,0.0 +18017,9,97,22,0.0 +18017,72,34.8,42,0.0 +18017,11,21,16,0.0 +18017,59,55,12,0.0 +18017,53,32.8,9,0.0 +18017,54,7.45,46,0.0 +18017,57,19.5,48,0.0 +18017,26,31.23,18,0.0 +18017,55,24,18,0.0 +18017,58,13.25,28,0.0 +18017,23,9,37,0.0 +18017,24,4.5,30,0.0 +18017,45,9.5,14,0.0 +18017,40,18.4,11,0.0 +18017,41,9.65,26,0.0 +18017,69,36,23,0.0 +18017,39,18,50,0.0 +18017,19,9.2,24,0.0 +18017,51,53,47,0.0 +18017,20,81,42,0.0 +18017,76,18,19,0.0 +18017,31,12.5,45,0.0 +18017,49,20,33,0.0 +18017,56,38,22,0.0 +18017,71,21.5,39,0.0 +18017,14,23.25,45,0.0 +18017,8,40,45,0.0 +18017,70,15,22,0.0 +18017,30,25.89,32,0.0 +18017,18,62.5,15,0.0 +18017,22,21,1,0.0 +18017,21,10,22,0.0 +18017,75,7.75,48,0.0 +18017,17,39,45,0.0 +18017,7,30,24,0.0 +18018,72,34.8,1,0.0 +18018,61,28.5,10,0.0 +18018,69,36,30,0.0 +18018,55,24,26,0.0 +18018,65,21.05,40,0.0 +18018,63,43.9,24,0.0 +18018,4,22,8,0.0 +18018,34,14,48,0.0 +18018,67,14,39,0.0 +18018,35,18,48,0.0 +18018,44,19.45,24,0.0 +18018,9,97,23,0.0 +18018,50,16.25,50,0.0 +18018,11,21,6,0.0 +18018,46,12,40,0.0 +18018,39,18,48,0.0 +18018,22,21,23,0.0 +18018,27,43.9,40,0.0 +18018,43,46,13,0.0 +18018,66,17,1,0.0 +18018,31,12.5,38,0.0 +18018,6,25,8,0.0 +18018,8,40,27,0.0 +18018,7,30,44,0.0 +18018,57,19.5,3,0.0 +18018,68,12.5,39,0.0 +18018,77,13,11,0.0 +18018,52,7,50,0.0 +18018,47,9.5,46,0.0 +18018,37,26,49,0.0 +18018,15,15.5,49,0.0 +18018,19,9.2,12,0.0 +18018,76,18,47,0.0 +18018,1,18,46,0.0 +18018,10,31,36,0.0 +18018,53,32.8,18,0.0 +18018,18,62.5,17,0.0 +18018,64,33.25,22,0.0 +18018,2,19,28,0.0 +18018,38,263.5,32,0.0 +18018,70,15,12,0.0 +18018,59,55,35,0.0 +18018,74,10,14,0.0 +18018,42,14,10,0.0 +18018,33,2.5,11,0.0 +18018,3,10,42,0.0 +18018,73,15,29,0.0 +18018,13,6,35,0.0 +18018,21,10,49,0.0 +18018,28,45.6,19,0.0 +18018,54,7.45,20,0.0 +18018,12,38,2,0.0 +18018,60,34,22,0.0 +18018,75,7.75,35,0.0 +18018,58,13.25,19,0.0 +18018,48,12.75,15,0.0 +18018,29,123.79,38,0.0 +18018,51,53,2,0.0 +18018,71,21.5,25,0.0 +18018,40,18.4,47,0.0 +18018,41,9.65,39,0.0 +18018,5,21.35,18,0.0 +18018,14,23.25,20,0.0 +18018,17,39,39,0.0 +18018,49,20,4,0.0 +18018,45,9.5,35,0.0 +18018,56,38,30,0.0 +18018,30,25.89,43,0.0 +18018,26,31.23,35,0.0 +18018,24,4.5,8,0.0 +18018,36,19,14,0.0 +18018,20,81,26,0.0 +18018,62,49.3,50,0.0 +18019,45,9.5,19,0.0 +18019,50,16.25,42,0.0 +18019,73,15,23,0.0 +18019,8,40,16,0.0 +18019,14,23.25,31,0.0 +18019,9,97,16,0.0 +18019,12,38,26,0.0 +18019,56,38,19,0.0 +18019,69,36,13,0.0 +18019,47,9.5,2,0.0 +18019,62,49.3,30,0.0 +18019,44,19.45,34,0.0 +18019,15,15.5,15,0.0 +18019,5,21.35,28,0.0 +18019,54,7.45,32,0.0 +18019,76,18,45,0.0 +18019,52,7,19,0.0 +18019,53,32.8,17,0.0 +18019,43,46,11,0.0 +18019,11,21,37,0.0 +18019,29,123.79,38,0.0 +18019,17,39,46,0.0 +18019,28,45.6,36,0.0 +18019,19,9.2,23,0.0 +18019,71,21.5,2,0.0 +18019,63,43.9,2,0.0 +18019,42,14,2,0.0 +18019,40,18.4,18,0.0 +18019,33,2.5,37,0.0 +18019,35,18,20,0.0 +18019,34,14,5,0.0 +18019,2,19,33,0.0 +18019,66,17,34,0.0 +18020,66,17,18,0.0 +18020,75,7.75,46,0.0 +18020,53,32.8,41,0.0 +18020,41,9.65,6,0.0 +18020,42,14,17,0.0 +18020,52,7,19,0.0 +18020,36,19,33,0.0 +18020,16,17.45,45,0.0 +18020,69,36,7,0.0 +18020,37,26,50,0.0 +18020,43,46,23,0.0 +18020,47,9.5,35,0.0 +18020,59,55,28,0.0 +18020,64,33.25,45,0.0 +18020,8,40,49,0.0 +18020,33,2.5,11,0.0 +18020,65,21.05,49,0.0 +18020,20,81,16,0.0 +18020,46,12,30,0.0 +18020,34,14,5,0.0 +18020,14,23.25,15,0.0 +18020,57,19.5,17,0.0 +18020,70,15,34,0.0 +18020,72,34.8,16,0.0 +18020,39,18,46,0.0 +18020,74,10,30,0.0 +18020,45,9.5,7,0.0 +18020,5,21.35,26,0.0 +18020,38,263.5,25,0.0 +18020,23,9,46,0.0 +18020,26,31.23,23,0.0 +18020,17,39,8,0.0 +18020,32,32,19,0.0 +18020,71,21.5,8,0.0 +18020,13,6,24,0.0 +18020,51,53,3,0.0 +18020,68,12.5,10,0.0 +18020,62,49.3,25,0.0 +18020,73,15,8,0.0 +18020,1,18,40,0.0 +18020,22,21,30,0.0 +18020,77,13,30,0.0 +18020,2,19,45,0.0 +18020,40,18.4,50,0.0 +18020,44,19.45,49,0.0 +18020,60,34,15,0.0 +18020,12,38,43,0.0 +18020,50,16.25,24,0.0 +18020,35,18,49,0.0 +18020,7,30,45,0.0 +18020,19,9.2,36,0.0 +18020,15,15.5,45,0.0 +18020,9,97,18,0.0 +18020,76,18,40,0.0 +18020,24,4.5,15,0.0 +18020,30,25.89,9,0.0 +18020,3,10,31,0.0 +18020,67,14,29,0.0 +18020,18,62.5,18,0.0 +18020,55,24,34,0.0 +18020,31,12.5,43,0.0 +18020,21,10,37,0.0 +18020,6,25,48,0.0 +18020,61,28.5,16,0.0 +18020,27,43.9,40,0.0 +18020,28,45.6,3,0.0 +18020,48,12.75,40,0.0 +18020,49,20,39,0.0 +18020,63,43.9,8,0.0 +18020,29,123.79,50,0.0 +18021,52,7,2,0.0 +18021,12,38,43,0.0 +18021,29,123.79,43,0.0 +18021,41,9.65,27,0.0 +18021,45,9.5,19,0.0 +18021,50,16.25,15,0.0 +18021,72,34.8,26,0.0 +18021,25,14,18,0.0 +18021,57,19.5,36,0.0 +18021,39,18,48,0.0 +18021,35,18,16,0.0 +18021,3,10,25,0.0 +18021,51,53,13,0.0 +18021,66,17,39,0.0 +18021,76,18,44,0.0 +18021,36,19,19,0.0 +18021,53,32.8,32,0.0 +18021,55,24,42,0.0 +18021,61,28.5,30,0.0 +18022,1,18,24,0.0 +18022,42,14,10,0.0 +18022,20,81,13,0.0 +18022,46,12,24,0.0 +18022,52,7,21,0.0 +18022,40,18.4,44,0.0 +18022,58,13.25,20,0.0 +18022,7,30,4,0.0 +18022,36,19,50,0.0 +18022,15,15.5,42,0.0 +18022,62,49.3,16,0.0 +18022,3,10,6,0.0 +18022,39,18,9,0.0 +18022,49,20,47,0.0 +18022,37,26,50,0.0 +18022,45,9.5,3,0.0 +18022,19,9.2,33,0.0 +18022,71,21.5,27,0.0 +18022,29,123.79,7,0.0 +18022,5,21.35,1,0.0 +18022,75,7.75,5,0.0 +18022,16,17.45,43,0.0 +18022,73,15,13,0.0 +18022,67,14,25,0.0 +18022,43,46,13,0.0 +18022,66,17,10,0.0 +18022,2,19,27,0.0 +18022,55,24,5,0.0 +18022,74,10,28,0.0 +18022,11,21,48,0.0 +18022,44,19.45,23,0.0 +18022,10,31,32,0.0 +18022,9,97,43,0.0 +18022,34,14,17,0.0 +18022,63,43.9,14,0.0 +18022,72,34.8,33,0.0 +18022,26,31.23,3,0.0 +18022,24,4.5,5,0.0 +18022,8,40,1,0.0 +18022,33,2.5,37,0.0 +18022,68,12.5,43,0.0 +18022,23,9,7,0.0 +18022,13,6,12,0.0 +18022,76,18,47,0.0 +18022,50,16.25,35,0.0 +18022,47,9.5,17,0.0 +18022,25,14,31,0.0 +18022,18,62.5,4,0.0 +18022,27,43.9,14,0.0 +18022,32,32,8,0.0 +18022,30,25.89,47,0.0 +18022,12,38,1,0.0 +18023,1,18,8,0.0 +18023,47,9.5,41,0.0 +18023,31,12.5,42,0.0 +18023,19,9.2,32,0.0 +18023,30,25.89,5,0.0 +18023,76,18,30,0.0 +18023,42,14,31,0.0 +18023,77,13,16,0.0 +18023,69,36,27,0.0 +18023,70,15,22,0.0 +18023,40,18.4,4,0.0 +18023,66,17,2,0.0 +18023,35,18,10,0.0 +18023,54,7.45,5,0.0 +18023,4,22,14,0.0 +18023,53,32.8,44,0.0 +18023,2,19,7,0.0 +18023,3,10,38,0.0 +18023,41,9.65,31,0.0 +18023,32,32,20,0.0 +18023,74,10,18,0.0 +18023,10,31,13,0.0 +18023,71,21.5,19,0.0 +18023,13,6,8,0.0 +18023,51,53,19,0.0 +18023,73,15,29,0.0 +18023,59,55,10,0.0 +18023,68,12.5,24,0.0 +18023,17,39,8,0.0 +18023,63,43.9,32,0.0 +18023,72,34.8,31,0.0 +18023,57,19.5,40,0.0 +18023,21,10,7,0.0 +18023,45,9.5,17,0.0 +18023,11,21,42,0.0 +18023,46,12,27,0.0 +18023,14,23.25,42,0.0 +18023,55,24,26,0.0 +18023,48,12.75,15,0.0 +18023,44,19.45,11,0.0 +18023,20,81,50,0.0 +18023,23,9,35,0.0 +18023,49,20,27,0.0 +18023,37,26,49,0.0 +18023,56,38,28,0.0 +18024,65,21.05,18,0.0 +18024,34,14,33,0.0 +18024,63,43.9,47,0.0 +18024,33,2.5,2,0.0 +18024,18,62.5,20,0.0 +18024,40,18.4,50,0.0 +18024,35,18,44,0.0 +18024,72,34.8,13,0.0 +18024,42,14,42,0.0 +18024,48,12.75,32,0.0 +18024,11,21,12,0.0 +18024,27,43.9,30,0.0 +18024,64,33.25,49,0.0 +18024,41,9.65,16,0.0 +18024,16,17.45,22,0.0 +18024,7,30,30,0.0 +18024,10,31,40,0.0 +18024,66,17,29,0.0 +18024,20,81,23,0.0 +18024,71,21.5,14,0.0 +18024,52,7,18,0.0 +18024,37,26,40,0.0 +18024,58,13.25,23,0.0 +18024,67,14,39,0.0 +18024,21,10,1,0.0 +18024,56,38,11,0.0 +18024,1,18,42,0.0 +18024,68,12.5,20,0.0 +18024,76,18,43,0.0 +18024,57,19.5,39,0.0 +18024,19,9.2,36,0.0 +18024,3,10,4,0.0 +18024,70,15,30,0.0 +18024,31,12.5,9,0.0 +18024,45,9.5,18,0.0 +18024,14,23.25,25,0.0 +18024,44,19.45,20,0.0 +18024,74,10,3,0.0 +18024,8,40,2,0.0 +18024,77,13,48,0.0 +18024,61,28.5,20,0.0 +18024,17,39,34,0.0 +18024,54,7.45,43,0.0 +18024,46,12,49,0.0 +18024,13,6,19,0.0 +18024,30,25.89,28,0.0 +18024,25,14,18,0.0 +18024,9,97,25,0.0 +18024,5,21.35,10,0.0 +18024,24,4.5,15,0.0 +18024,73,15,40,0.0 +18024,15,15.5,31,0.0 +18024,22,21,21,0.0 +18025,77,13,46,0.0 +18025,38,263.5,17,0.0 +18025,21,10,33,0.0 +18025,75,7.75,34,0.0 +18025,71,21.5,50,0.0 +18025,64,33.25,39,0.0 +18025,17,39,35,0.0 +18025,74,10,25,0.0 +18025,59,55,14,0.0 +18025,31,12.5,34,0.0 +18025,51,53,45,0.0 +18025,14,23.25,6,0.0 +18025,36,19,39,0.0 +18025,76,18,27,0.0 +18025,13,6,40,0.0 +18025,27,43.9,35,0.0 +18025,23,9,21,0.0 +18025,9,97,36,0.0 +18025,69,36,49,0.0 +18025,61,28.5,4,0.0 +18025,66,17,36,0.0 +18025,35,18,15,0.0 +18025,49,20,4,0.0 +18025,18,62.5,16,0.0 +18025,42,14,34,0.0 +18025,8,40,47,0.0 +18025,19,9.2,13,0.0 +18025,6,25,6,0.0 +18025,2,19,27,0.0 +18025,53,32.8,38,0.0 +18025,44,19.45,17,0.0 +18025,40,18.4,15,0.0 +18025,16,17.45,37,0.0 +18025,65,21.05,49,0.0 +18025,5,21.35,43,0.0 +18025,46,12,1,0.0 +18025,33,2.5,36,0.0 +18025,57,19.5,46,0.0 +18025,56,38,41,0.0 +18025,43,46,7,0.0 +18025,58,13.25,14,0.0 +18025,54,7.45,47,0.0 +18025,52,7,21,0.0 +18025,47,9.5,2,0.0 +18025,37,26,6,0.0 +18025,15,15.5,18,0.0 +18025,28,45.6,18,0.0 +18025,50,16.25,18,0.0 +18025,41,9.65,9,0.0 +18025,63,43.9,30,0.0 +18025,32,32,42,0.0 +18025,1,18,37,0.0 +18025,29,123.79,1,0.0 +18025,12,38,50,0.0 +18025,4,22,5,0.0 +18025,39,18,15,0.0 +18025,11,21,46,0.0 +18025,67,14,44,0.0 +18025,73,15,1,0.0 +18026,65,21.05,21,0.0 +18026,15,15.5,17,0.0 +18026,50,16.25,42,0.0 +18026,74,10,29,0.0 +18026,48,12.75,30,0.0 +18026,63,43.9,49,0.0 +18026,20,81,39,0.0 +18026,55,24,18,0.0 +18026,69,36,48,0.0 +18026,54,7.45,7,0.0 +18026,72,34.8,3,0.0 +18026,26,31.23,25,0.0 +18026,6,25,46,0.0 +18026,66,17,25,0.0 +18026,56,38,22,0.0 +18026,12,38,35,0.0 +18026,67,14,45,0.0 +18026,45,9.5,29,0.0 +18026,60,34,6,0.0 +18026,49,20,8,0.0 +18026,73,15,1,0.0 +18026,8,40,30,0.0 +18026,28,45.6,6,0.0 +18026,46,12,44,0.0 +18026,23,9,27,0.0 +18026,21,10,10,0.0 +18027,64,33.25,50,0.0 +18027,34,14,49,0.0 +18027,17,39,7,0.0 +18027,77,13,40,0.0 +18027,31,12.5,48,0.0 +18027,44,19.45,35,0.0 +18027,20,81,21,0.0 +18027,1,18,16,0.0 +18027,37,26,27,0.0 +18027,48,12.75,22,0.0 +18027,59,55,8,0.0 +18027,71,21.5,25,0.0 +18027,40,18.4,24,0.0 +18027,47,9.5,3,0.0 +18027,22,21,14,0.0 +18027,33,2.5,3,0.0 +18028,29,123.79,15,0.0 +18028,65,21.05,8,0.0 +18028,38,263.5,16,0.0 +18028,1,18,9,0.0 +18028,54,7.45,26,0.0 +18028,32,32,23,0.0 +18028,44,19.45,26,0.0 +18028,71,21.5,49,0.0 +18028,7,30,27,0.0 +18028,64,33.25,21,0.0 +18028,39,18,5,0.0 +18028,50,16.25,21,0.0 +18028,8,40,36,0.0 +18028,47,9.5,4,0.0 +18028,49,20,11,0.0 +18028,13,6,1,0.0 +18028,69,36,7,0.0 +18028,34,14,44,0.0 +18028,66,17,5,0.0 +18028,40,18.4,29,0.0 +18028,48,12.75,12,0.0 +18028,2,19,21,0.0 +18028,41,9.65,50,0.0 +18028,67,14,2,0.0 +18028,46,12,30,0.0 +18028,58,13.25,13,0.0 +18028,61,28.5,31,0.0 +18028,62,49.3,46,0.0 +18028,74,10,37,0.0 +18028,42,14,33,0.0 +18028,19,9.2,39,0.0 +18028,18,62.5,27,0.0 +18028,17,39,32,0.0 +18028,43,46,32,0.0 +18028,72,34.8,9,0.0 +18028,53,32.8,38,0.0 +18028,51,53,33,0.0 +18028,30,25.89,37,0.0 +18028,59,55,34,0.0 +18028,16,17.45,7,0.0 +18028,68,12.5,26,0.0 +18028,77,13,1,0.0 +18028,5,21.35,33,0.0 +18028,28,45.6,40,0.0 +18028,14,23.25,42,0.0 +18028,52,7,23,0.0 +18028,56,38,48,0.0 +18028,3,10,36,0.0 +18028,60,34,31,0.0 +18028,70,15,27,0.0 +18028,25,14,36,0.0 +18028,10,31,46,0.0 +18028,20,81,46,0.0 +18028,73,15,44,0.0 +18028,21,10,47,0.0 +18028,15,15.5,26,0.0 +18028,45,9.5,45,0.0 +18028,63,43.9,10,0.0 +18028,36,19,50,0.0 +18028,22,21,12,0.0 +18028,57,19.5,45,0.0 +18028,23,9,18,0.0 +18028,4,22,11,0.0 +18028,6,25,29,0.0 +18028,76,18,26,0.0 +18028,24,4.5,30,0.0 +18028,33,2.5,37,0.0 +18028,37,26,14,0.0 +18028,75,7.75,7,0.0 +18028,9,97,5,0.0 +18028,35,18,45,0.0 +18028,11,21,37,0.0 +18029,13,6,3,0.0 +18029,46,12,18,0.0 +18029,37,26,22,0.0 +18029,31,12.5,18,0.0 +18029,44,19.45,18,0.0 +18029,55,24,37,0.0 +18029,74,10,42,0.0 +18029,5,21.35,21,0.0 +18029,28,45.6,27,0.0 +18029,52,7,24,0.0 +18029,61,28.5,24,0.0 +18029,26,31.23,5,0.0 +18029,73,15,40,0.0 +18029,10,31,9,0.0 +18029,4,22,26,0.0 +18029,16,17.45,14,0.0 +18029,70,15,9,0.0 +18029,15,15.5,22,0.0 +18029,1,18,2,0.0 +18029,23,9,15,0.0 +18029,48,12.75,9,0.0 +18029,43,46,41,0.0 +18029,77,13,20,0.0 +18029,29,123.79,26,0.0 +18029,64,33.25,1,0.0 +18029,65,21.05,42,0.0 +18029,40,18.4,5,0.0 +18029,8,40,1,0.0 +18029,7,30,45,0.0 +18029,58,13.25,8,0.0 +18029,17,39,10,0.0 +18029,27,43.9,5,0.0 +18029,68,12.5,47,0.0 +18029,20,81,4,0.0 +18029,49,20,29,0.0 +18029,76,18,38,0.0 +18029,71,21.5,1,0.0 +18029,42,14,38,0.0 +18029,12,38,28,0.0 +18029,32,32,17,0.0 +18029,22,21,10,0.0 +18029,50,16.25,15,0.0 +18029,60,34,1,0.0 +18029,62,49.3,38,0.0 +18029,35,18,30,0.0 +18029,53,32.8,33,0.0 +18029,66,17,16,0.0 +18029,3,10,2,0.0 +18029,47,9.5,18,0.0 +18029,14,23.25,27,0.0 +18029,11,21,31,0.0 +18029,19,9.2,1,0.0 +18029,6,25,19,0.0 +18029,41,9.65,50,0.0 +18029,69,36,7,0.0 +18030,16,17.45,7,0.0 +18030,61,28.5,46,0.0 +18030,66,17,3,0.0 +18030,52,7,5,0.0 +18030,6,25,49,0.0 +18030,2,19,29,0.0 +18030,17,39,45,0.0 +18030,74,10,3,0.0 +18030,71,21.5,48,0.0 +18030,37,26,39,0.0 +18030,1,18,32,0.0 +18030,45,9.5,7,0.0 +18030,26,31.23,19,0.0 +18030,39,18,40,0.0 +18030,65,21.05,29,0.0 +18030,67,14,6,0.0 +18030,59,55,44,0.0 +18030,49,20,20,0.0 +18030,30,25.89,9,0.0 +18030,54,7.45,46,0.0 +18030,10,31,7,0.0 +18030,32,32,33,0.0 +18030,41,9.65,36,0.0 +18030,13,6,23,0.0 +18030,7,30,39,0.0 +18030,24,4.5,9,0.0 +18030,9,97,4,0.0 +18030,33,2.5,22,0.0 +18030,34,14,1,0.0 +18030,73,15,43,0.0 +18030,46,12,37,0.0 +18030,51,53,31,0.0 +18030,68,12.5,25,0.0 +18030,69,36,8,0.0 +18030,60,34,18,0.0 +18030,77,13,6,0.0 +18030,76,18,14,0.0 +18030,55,24,38,0.0 +18030,50,16.25,8,0.0 +18030,53,32.8,41,0.0 +18030,12,38,9,0.0 +18030,35,18,4,0.0 +18030,15,15.5,36,0.0 +18030,38,263.5,29,0.0 +18030,18,62.5,1,0.0 +18030,40,18.4,7,0.0 +18030,58,13.25,45,0.0 +18030,63,43.9,18,0.0 +18030,47,9.5,44,0.0 +18030,36,19,12,0.0 +18030,20,81,47,0.0 +18030,3,10,15,0.0 +18030,21,10,28,0.0 +18030,31,12.5,8,0.0 +18030,8,40,49,0.0 +18030,28,45.6,32,0.0 +18031,8,40,28,0.0 +18031,10,31,25,0.0 +18031,21,10,39,0.0 +18031,26,31.23,23,0.0 +18031,29,123.79,6,0.0 +18031,7,30,29,0.0 +18032,66,17,46,0.0 +18032,56,38,44,0.0 +18032,24,4.5,10,0.0 +18032,36,19,20,0.0 +18032,25,14,13,0.0 +18032,17,39,8,0.0 +18032,54,7.45,10,0.0 +18032,5,21.35,23,0.0 +18032,8,40,25,0.0 +18032,3,10,35,0.0 +18032,45,9.5,11,0.0 +18032,49,20,16,0.0 +18032,30,25.89,19,0.0 +18032,35,18,37,0.0 +18032,9,97,33,0.0 +18032,73,15,10,0.0 +18032,22,21,48,0.0 +18033,68,12.5,30,0.0 +18033,63,43.9,49,0.0 +18033,69,36,26,0.0 +18033,67,14,44,0.0 +18033,40,18.4,22,0.0 +18033,46,12,16,0.0 +18033,29,123.79,24,0.0 +18033,61,28.5,14,0.0 +18033,36,19,45,0.0 +18033,35,18,17,0.0 +18033,14,23.25,29,0.0 +18033,62,49.3,9,0.0 +18034,74,10,37,0.0 +18034,14,23.25,33,0.0 +18034,47,9.5,6,0.0 +18034,8,40,41,0.0 +18034,19,9.2,44,0.0 +18034,26,31.23,32,0.0 +18034,43,46,41,0.0 +18034,68,12.5,7,0.0 +18034,44,19.45,17,0.0 +18034,10,31,38,0.0 +18034,21,10,39,0.0 +18034,3,10,2,0.0 +18034,73,15,10,0.0 +18034,66,17,11,0.0 +18034,52,7,48,0.0 +18034,49,20,5,0.0 +18034,50,16.25,7,0.0 +18034,16,17.45,9,0.0 +18034,59,55,35,0.0 +18034,29,123.79,16,0.0 +18034,70,15,16,0.0 +18034,27,43.9,29,0.0 +18034,58,13.25,3,0.0 +18035,7,30,11,0.0 +18035,45,9.5,49,0.0 +18035,54,7.45,13,0.0 +18035,24,4.5,26,0.0 +18035,57,19.5,3,0.0 +18035,59,55,48,0.0 +18035,67,14,8,0.0 +18035,73,15,50,0.0 +18035,8,40,41,0.0 +18035,43,46,48,0.0 +18035,40,18.4,38,0.0 +18035,49,20,21,0.0 +18035,27,43.9,21,0.0 +18035,44,19.45,18,0.0 +18035,2,19,35,0.0 +18036,25,14,39,0.0 +18036,55,24,41,0.0 +18036,19,9.2,1,0.0 +18036,65,21.05,23,0.0 +18036,66,17,48,0.0 +18036,29,123.79,25,0.0 +18036,2,19,45,0.0 +18036,56,38,21,0.0 +18036,51,53,33,0.0 +18036,4,22,1,0.0 +18036,1,18,10,0.0 +18036,36,19,25,0.0 +18036,76,18,5,0.0 +18036,38,263.5,2,0.0 +18036,43,46,12,0.0 +18036,8,40,5,0.0 +18036,62,49.3,16,0.0 +18036,58,13.25,19,0.0 +18036,7,30,9,0.0 +18036,75,7.75,2,0.0 +18036,39,18,2,0.0 +18036,57,19.5,11,0.0 +18036,28,45.6,17,0.0 +18036,9,97,21,0.0 +18036,23,9,44,0.0 +18036,61,28.5,14,0.0 +18036,69,36,38,0.0 +18036,15,15.5,38,0.0 +18036,14,23.25,7,0.0 +18036,35,18,36,0.0 +18036,26,31.23,46,0.0 +18036,67,14,17,0.0 +18036,47,9.5,33,0.0 +18036,60,34,20,0.0 +18036,59,55,11,0.0 +18036,21,10,49,0.0 +18036,45,9.5,36,0.0 +18036,13,6,41,0.0 +18036,12,38,20,0.0 +18036,70,15,32,0.0 +18036,71,21.5,48,0.0 +18036,52,7,39,0.0 +18036,6,25,48,0.0 +18036,50,16.25,11,0.0 +18036,46,12,40,0.0 +18036,20,81,2,0.0 +18036,49,20,37,0.0 +18036,72,34.8,31,0.0 +18036,11,21,44,0.0 +18036,5,21.35,13,0.0 +18037,54,7.45,8,0.0 +18037,44,19.45,42,0.0 +18037,14,23.25,23,0.0 +18037,66,17,7,0.0 +18037,47,9.5,13,0.0 +18037,18,62.5,41,0.0 +18037,60,34,16,0.0 +18037,1,18,31,0.0 +18037,24,4.5,31,0.0 +18037,51,53,36,0.0 +18037,19,9.2,47,0.0 +18037,17,39,47,0.0 +18037,40,18.4,24,0.0 +18037,53,32.8,31,0.0 +18038,63,43.9,8,0.0 +18038,28,45.6,9,0.0 +18038,59,55,43,0.0 +18038,33,2.5,4,0.0 +18038,42,14,26,0.0 +18038,18,62.5,41,0.0 +18038,17,39,32,0.0 +18038,64,33.25,11,0.0 +18038,39,18,18,0.0 +18038,7,30,32,0.0 +18038,35,18,11,0.0 +18038,55,24,28,0.0 +18038,10,31,37,0.0 +18038,53,32.8,34,0.0 +18038,2,19,30,0.0 +18038,70,15,43,0.0 +18038,67,14,31,0.0 +18038,32,32,13,0.0 +18038,65,21.05,11,0.0 +18038,72,34.8,14,0.0 +18038,49,20,8,0.0 +18039,53,32.8,13,0.0 +18039,41,9.65,28,0.0 +18039,66,17,21,0.0 +18039,31,12.5,4,0.0 +18039,45,9.5,18,0.0 +18039,62,49.3,33,0.0 +18039,1,18,46,0.0 +18039,60,34,30,0.0 +18039,38,263.5,3,0.0 +18039,36,19,23,0.0 +18039,46,12,49,0.0 +18039,74,10,7,0.0 +18039,16,17.45,10,0.0 +18039,25,14,47,0.0 +18039,32,32,35,0.0 +18039,4,22,45,0.0 +18040,50,16.25,48,0.0 +18040,26,31.23,22,0.0 +18040,32,32,48,0.0 +18040,41,9.65,3,0.0 +18040,66,17,42,0.0 +18040,23,9,40,0.0 +18040,49,20,36,0.0 +18040,67,14,46,0.0 +18040,24,4.5,7,0.0 +18040,59,55,10,0.0 +18040,56,38,45,0.0 +18040,64,33.25,45,0.0 +18040,53,32.8,6,0.0 +18040,6,25,22,0.0 +18040,70,15,12,0.0 +18040,21,10,31,0.0 +18040,63,43.9,7,0.0 +18040,30,25.89,47,0.0 +18040,13,6,17,0.0 +18040,60,34,32,0.0 +18040,18,62.5,4,0.0 +18040,12,38,38,0.0 +18040,1,18,37,0.0 +18040,15,15.5,30,0.0 +18040,55,24,37,0.0 +18040,11,21,47,0.0 +18040,46,12,29,0.0 +18040,75,7.75,4,0.0 +18040,77,13,18,0.0 +18040,9,97,34,0.0 +18040,58,13.25,1,0.0 +18040,61,28.5,13,0.0 +18040,42,14,18,0.0 +18040,62,49.3,39,0.0 +18040,76,18,15,0.0 +18040,28,45.6,30,0.0 +18040,7,30,19,0.0 +18040,45,9.5,31,0.0 +18040,2,19,15,0.0 +18040,43,46,1,0.0 +18040,39,18,47,0.0 +18040,25,14,29,0.0 +18040,17,39,6,0.0 +18040,22,21,48,0.0 +18040,71,21.5,26,0.0 +18040,4,22,3,0.0 +18040,74,10,27,0.0 +18040,38,263.5,39,0.0 +18040,54,7.45,5,0.0 +18040,36,19,13,0.0 +18041,9,97,30,0.0 +18041,63,43.9,19,0.0 +18041,14,23.25,18,0.0 +18041,50,16.25,1,0.0 +18041,28,45.6,45,0.0 +18041,17,39,23,0.0 +18041,51,53,40,0.0 +18041,70,15,7,0.0 +18041,22,21,3,0.0 +18041,45,9.5,26,0.0 +18041,27,43.9,36,0.0 +18041,1,18,45,0.0 +18041,56,38,29,0.0 +18041,5,21.35,12,0.0 +18041,47,9.5,47,0.0 +18041,46,12,35,0.0 +18041,49,20,17,0.0 +18041,34,14,30,0.0 +18041,3,10,6,0.0 +18041,72,34.8,35,0.0 +18041,64,33.25,1,0.0 +18041,41,9.65,40,0.0 +18041,42,14,15,0.0 +18041,37,26,9,0.0 +18041,54,7.45,50,0.0 +18041,75,7.75,29,0.0 +18041,71,21.5,37,0.0 +18041,23,9,21,0.0 +18041,19,9.2,36,0.0 +18041,44,19.45,48,0.0 +18041,32,32,42,0.0 +18041,52,7,44,0.0 +18041,31,12.5,13,0.0 +18041,36,19,33,0.0 +18041,48,12.75,9,0.0 +18041,13,6,2,0.0 +18041,12,38,46,0.0 +18041,2,19,37,0.0 +18041,7,30,25,0.0 +18041,8,40,2,0.0 +18041,53,32.8,21,0.0 +18041,76,18,13,0.0 +18041,55,24,28,0.0 +18041,21,10,27,0.0 +18041,25,14,36,0.0 +18041,59,55,42,0.0 +18041,43,46,16,0.0 +18041,40,18.4,21,0.0 +18041,62,49.3,32,0.0 +18041,61,28.5,38,0.0 +18041,15,15.5,48,0.0 +18041,57,19.5,11,0.0 +18041,66,17,19,0.0 +18041,67,14,1,0.0 +18041,16,17.45,1,0.0 +18041,73,15,33,0.0 +18041,69,36,10,0.0 +18041,60,34,9,0.0 +18041,10,31,32,0.0 +18041,11,21,20,0.0 +18041,30,25.89,10,0.0 +18041,35,18,45,0.0 +18041,18,62.5,12,0.0 +18041,26,31.23,41,0.0 +18041,65,21.05,11,0.0 +18041,33,2.5,9,0.0 +18041,6,25,7,0.0 +18041,20,81,32,0.0 +18041,68,12.5,11,0.0 +18041,58,13.25,35,0.0 +18042,21,10,32,0.0 +18042,59,55,6,0.0 +18042,76,18,30,0.0 +18042,26,31.23,40,0.0 +18042,34,14,50,0.0 +18042,46,12,19,0.0 +18042,60,34,35,0.0 +18042,38,263.5,42,0.0 +18042,1,18,44,0.0 +18042,16,17.45,11,0.0 +18042,77,13,1,0.0 +18042,24,4.5,13,0.0 +18042,47,9.5,8,0.0 +18042,73,15,30,0.0 +18042,52,7,3,0.0 +18042,20,81,31,0.0 +18042,28,45.6,3,0.0 +18042,72,34.8,44,0.0 +18042,65,21.05,39,0.0 +18042,39,18,16,0.0 +18042,18,62.5,28,0.0 +18042,53,32.8,10,0.0 +18042,71,21.5,45,0.0 +18042,57,19.5,37,0.0 +18042,30,25.89,40,0.0 +18042,8,40,16,0.0 +18042,36,19,19,0.0 +18042,13,6,41,0.0 +18042,44,19.45,5,0.0 +18042,3,10,6,0.0 +18042,11,21,13,0.0 +18042,32,32,30,0.0 +18042,9,97,40,0.0 +18042,67,14,11,0.0 +18042,55,24,45,0.0 +18042,27,43.9,48,0.0 +18042,23,9,41,0.0 +18042,14,23.25,47,0.0 +18042,61,28.5,42,0.0 +18042,15,15.5,26,0.0 +18042,7,30,14,0.0 +18042,37,26,12,0.0 +18042,64,33.25,46,0.0 +18042,68,12.5,20,0.0 +18042,5,21.35,39,0.0 +18042,70,15,35,0.0 +18042,56,38,43,0.0 +18042,58,13.25,23,0.0 +18042,54,7.45,31,0.0 +18042,63,43.9,29,0.0 +18042,41,9.65,15,0.0 +18042,43,46,38,0.0 +18042,45,9.5,33,0.0 +18043,44,19.45,17,0.0 +18043,6,25,18,0.0 +18043,9,97,27,0.0 +18043,57,19.5,23,0.0 +18043,13,6,31,0.0 +18043,56,38,47,0.0 +18043,33,2.5,2,0.0 +18043,54,7.45,46,0.0 +18043,69,36,44,0.0 +18043,76,18,41,0.0 +18043,61,28.5,50,0.0 +18043,72,34.8,26,0.0 +18043,53,32.8,47,0.0 +18043,24,4.5,18,0.0 +18043,37,26,7,0.0 +18043,45,9.5,13,0.0 +18043,18,62.5,49,0.0 +18043,40,18.4,20,0.0 +18043,14,23.25,21,0.0 +18043,63,43.9,23,0.0 +18043,39,18,14,0.0 +18043,41,9.65,28,0.0 +18043,46,12,10,0.0 +18043,67,14,29,0.0 +18043,17,39,37,0.0 +18043,1,18,10,0.0 +18043,42,14,43,0.0 +18043,3,10,9,0.0 +18043,60,34,49,0.0 +18043,52,7,40,0.0 +18043,59,55,17,0.0 +18043,27,43.9,22,0.0 +18043,21,10,41,0.0 +18043,51,53,22,0.0 +18043,75,7.75,21,0.0 +18043,49,20,33,0.0 +18043,22,21,41,0.0 +18043,34,14,32,0.0 +18043,11,21,42,0.0 +18043,36,19,20,0.0 +18043,70,15,8,0.0 +18043,10,31,30,0.0 +18043,38,263.5,24,0.0 +18043,25,14,19,0.0 +18043,66,17,16,0.0 +18043,26,31.23,17,0.0 +18043,29,123.79,11,0.0 +18043,2,19,39,0.0 +18043,35,18,27,0.0 +18043,4,22,45,0.0 +18043,19,9.2,39,0.0 +18043,73,15,13,0.0 +18043,64,33.25,22,0.0 +18044,75,7.75,10,0.0 +18044,39,18,45,0.0 +18044,24,4.5,36,0.0 +18044,12,38,34,0.0 +18044,66,17,21,0.0 +18044,13,6,40,0.0 +18044,22,21,16,0.0 +18044,14,23.25,30,0.0 +18044,63,43.9,14,0.0 +18044,72,34.8,38,0.0 +18044,56,38,17,0.0 +18044,71,21.5,21,0.0 +18044,15,15.5,1,0.0 +18044,5,21.35,11,0.0 +18044,44,19.45,1,0.0 +18044,31,12.5,37,0.0 +18044,60,34,28,0.0 +18044,34,14,11,0.0 +18044,3,10,22,0.0 +18044,23,9,38,0.0 +18044,73,15,46,0.0 +18044,67,14,15,0.0 +18044,29,123.79,22,0.0 +18044,42,14,28,0.0 +18044,8,40,43,0.0 +18044,10,31,50,0.0 +18044,54,7.45,29,0.0 +18044,16,17.45,14,0.0 +18044,57,19.5,13,0.0 +18044,27,43.9,1,0.0 +18044,68,12.5,27,0.0 +18044,49,20,1,0.0 +18044,77,13,29,0.0 +18045,8,40,28,0.0 +18045,4,22,46,0.0 +18045,62,49.3,11,0.0 +18045,33,2.5,30,0.0 +18045,54,7.45,41,0.0 +18045,32,32,17,0.0 +18045,37,26,4,0.0 +18045,38,263.5,36,0.0 +18045,51,53,11,0.0 +18045,24,4.5,24,0.0 +18045,67,14,14,0.0 +18045,55,24,11,0.0 +18045,25,14,20,0.0 +18045,56,38,1,0.0 +18045,6,25,41,0.0 +18045,3,10,24,0.0 +18045,16,17.45,40,0.0 +18045,15,15.5,16,0.0 +18045,34,14,40,0.0 +18045,73,15,25,0.0 +18045,12,38,26,0.0 +18045,7,30,30,0.0 +18045,68,12.5,22,0.0 +18045,35,18,10,0.0 +18045,41,9.65,11,0.0 +18045,49,20,46,0.0 +18045,29,123.79,4,0.0 +18045,46,12,28,0.0 +18045,26,31.23,20,0.0 +18045,40,18.4,39,0.0 +18045,23,9,45,0.0 +18045,18,62.5,7,0.0 +18045,59,55,32,0.0 +18045,66,17,1,0.0 +18045,75,7.75,31,0.0 +18045,43,46,20,0.0 +18045,31,12.5,36,0.0 +18045,76,18,14,0.0 +18045,10,31,31,0.0 +18045,70,15,25,0.0 +18045,60,34,1,0.0 +18045,53,32.8,38,0.0 +18045,5,21.35,7,0.0 +18045,58,13.25,16,0.0 +18045,48,12.75,4,0.0 +18045,63,43.9,9,0.0 +18045,20,81,34,0.0 +18045,77,13,31,0.0 +18045,71,21.5,26,0.0 +18045,22,21,46,0.0 +18045,21,10,35,0.0 +18045,39,18,23,0.0 +18045,9,97,30,0.0 +18045,65,21.05,47,0.0 +18045,44,19.45,41,0.0 +18045,74,10,42,0.0 +18045,13,6,29,0.0 +18045,2,19,5,0.0 +18045,72,34.8,13,0.0 +18045,47,9.5,38,0.0 +18045,45,9.5,4,0.0 +18045,30,25.89,16,0.0 +18045,11,21,45,0.0 +18045,50,16.25,15,0.0 +18045,64,33.25,47,0.0 +18045,69,36,25,0.0 +18045,42,14,35,0.0 +18045,1,18,17,0.0 +18045,36,19,1,0.0 +18045,14,23.25,34,0.0 +18045,61,28.5,21,0.0 +18045,52,7,19,0.0 +18046,2,19,32,0.0 +18046,10,31,25,0.0 +18046,1,18,29,0.0 +18046,54,7.45,18,0.0 +18046,32,32,45,0.0 +18046,6,25,17,0.0 +18046,38,263.5,22,0.0 +18046,23,9,44,0.0 +18046,70,15,48,0.0 +18046,16,17.45,33,0.0 +18046,14,23.25,30,0.0 +18046,77,13,20,0.0 +18046,25,14,34,0.0 +18046,11,21,8,0.0 +18046,47,9.5,22,0.0 +18046,20,81,42,0.0 +18046,50,16.25,40,0.0 +18046,64,33.25,36,0.0 +18046,4,22,30,0.0 +18046,49,20,28,0.0 +18046,45,9.5,9,0.0 +18046,55,24,35,0.0 +18046,22,21,7,0.0 +18046,17,39,10,0.0 +18046,3,10,44,0.0 +18046,62,49.3,37,0.0 +18046,67,14,24,0.0 +18046,52,7,21,0.0 +18046,56,38,11,0.0 +18046,13,6,10,0.0 +18046,61,28.5,38,0.0 +18046,39,18,16,0.0 +18046,19,9.2,46,0.0 +18046,72,34.8,19,0.0 +18046,29,123.79,30,0.0 +18046,66,17,44,0.0 +18046,43,46,12,0.0 +18046,35,18,13,0.0 +18046,63,43.9,43,0.0 +18046,34,14,47,0.0 +18046,33,2.5,18,0.0 +18046,12,38,42,0.0 +18046,15,15.5,8,0.0 +18046,46,12,48,0.0 +18046,8,40,45,0.0 +18046,71,21.5,5,0.0 +18047,13,6,44,0.0 +18047,70,15,33,0.0 +18047,55,24,30,0.0 +18047,5,21.35,33,0.0 +18047,47,9.5,8,0.0 +18047,32,32,20,0.0 +18047,52,7,11,0.0 +18047,48,12.75,43,0.0 +18047,41,9.65,39,0.0 +18047,75,7.75,22,0.0 +18047,21,10,44,0.0 +18047,54,7.45,36,0.0 +18047,39,18,38,0.0 +18047,4,22,22,0.0 +18047,20,81,45,0.0 +18047,34,14,18,0.0 +18047,30,25.89,32,0.0 +18047,17,39,6,0.0 +18047,76,18,43,0.0 +18048,13,6,49,0.0 +18048,43,46,3,0.0 +18048,38,263.5,42,0.0 +18048,68,12.5,32,0.0 +18048,47,9.5,8,0.0 +18048,48,12.75,47,0.0 +18048,24,4.5,36,0.0 +18048,75,7.75,7,0.0 +18048,69,36,28,0.0 +18048,59,55,1,0.0 +18048,16,17.45,14,0.0 +18048,46,12,50,0.0 +18048,63,43.9,20,0.0 +18048,50,16.25,3,0.0 +18048,30,25.89,18,0.0 +18048,45,9.5,9,0.0 +18048,62,49.3,20,0.0 +18048,18,62.5,18,0.0 +18048,11,21,24,0.0 +18048,32,32,12,0.0 +18048,65,21.05,1,0.0 +18048,49,20,40,0.0 +18048,12,38,4,0.0 +18048,37,26,22,0.0 +18048,39,18,15,0.0 +18048,71,21.5,32,0.0 +18048,66,17,2,0.0 +18048,76,18,18,0.0 +18048,5,21.35,8,0.0 +18048,27,43.9,9,0.0 +18048,40,18.4,50,0.0 +18048,26,31.23,26,0.0 +18048,64,33.25,37,0.0 +18048,61,28.5,10,0.0 +18048,21,10,13,0.0 +18048,53,32.8,21,0.0 +18048,22,21,2,0.0 +18048,19,9.2,24,0.0 +18048,51,53,23,0.0 +18048,55,24,29,0.0 +18048,70,15,38,0.0 +18048,20,81,40,0.0 +18048,25,14,12,0.0 +18048,6,25,32,0.0 +18048,36,19,10,0.0 +18048,67,14,1,0.0 +18048,10,31,32,0.0 +18048,28,45.6,2,0.0 +18048,2,19,25,0.0 +18048,17,39,32,0.0 +18048,57,19.5,13,0.0 +18048,9,97,31,0.0 +18048,72,34.8,11,0.0 +18048,58,13.25,37,0.0 +18048,54,7.45,34,0.0 +18048,7,30,44,0.0 +18049,70,15,28,0.0 +18049,15,15.5,15,0.0 +18049,55,24,48,0.0 +18049,40,18.4,22,0.0 +18049,22,21,6,0.0 +18049,71,21.5,16,0.0 +18049,39,18,43,0.0 +18049,75,7.75,33,0.0 +18049,33,2.5,35,0.0 +18049,63,43.9,22,0.0 +18049,6,25,27,0.0 +18049,74,10,41,0.0 +18049,51,53,48,0.0 +18049,17,39,35,0.0 +18049,59,55,22,0.0 +18049,57,19.5,9,0.0 +18049,28,45.6,44,0.0 +18049,34,14,19,0.0 +18049,50,16.25,30,0.0 +18049,52,7,35,0.0 +18049,46,12,2,0.0 +18049,60,34,33,0.0 +18049,68,12.5,29,0.0 +18049,64,33.25,40,0.0 +18049,36,19,7,0.0 +18049,24,4.5,36,0.0 +18049,31,12.5,37,0.0 +18049,5,21.35,21,0.0 +18049,21,10,32,0.0 +18049,16,17.45,27,0.0 +18049,7,30,18,0.0 +18049,27,43.9,47,0.0 +18049,25,14,3,0.0 +18049,29,123.79,11,0.0 +18049,10,31,1,0.0 +18049,26,31.23,30,0.0 +18049,38,263.5,45,0.0 +18049,69,36,43,0.0 +18049,56,38,17,0.0 +18049,9,97,28,0.0 +18049,43,46,6,0.0 +18049,13,6,50,0.0 +18049,19,9.2,2,0.0 +18049,11,21,45,0.0 +18049,47,9.5,14,0.0 +18049,72,34.8,35,0.0 +18049,48,12.75,23,0.0 +18049,54,7.45,31,0.0 +18049,65,21.05,50,0.0 +18049,62,49.3,14,0.0 +18049,37,26,50,0.0 +18049,76,18,14,0.0 +18049,8,40,28,0.0 +18049,53,32.8,33,0.0 +18049,41,9.65,46,0.0 +18049,30,25.89,26,0.0 +18049,42,14,1,0.0 +18049,35,18,3,0.0 +18049,23,9,7,0.0 +18049,32,32,10,0.0 +18049,2,19,28,0.0 +18049,14,23.25,35,0.0 +18049,49,20,9,0.0 +18049,3,10,16,0.0 +18049,58,13.25,18,0.0 +18049,73,15,32,0.0 +18049,44,19.45,8,0.0 +18049,20,81,13,0.0 +18049,66,17,33,0.0 +18049,77,13,25,0.0 +18050,13,6,26,0.0 +18050,64,33.25,44,0.0 +18050,14,23.25,11,0.0 +18050,34,14,41,0.0 +18050,60,34,18,0.0 +18050,66,17,48,0.0 +18050,49,20,24,0.0 +18050,76,18,34,0.0 +18050,22,21,22,0.0 +18050,53,32.8,43,0.0 +18050,75,7.75,8,0.0 +18050,39,18,46,0.0 +18050,35,18,48,0.0 +18050,38,263.5,13,0.0 +18050,45,9.5,50,0.0 +18050,69,36,24,0.0 +18050,33,2.5,28,0.0 +18050,54,7.45,6,0.0 +18051,58,13.25,17,0.0 +18051,66,17,9,0.0 +18051,12,38,37,0.0 +18051,64,33.25,26,0.0 +18051,26,31.23,29,0.0 +18051,49,20,15,0.0 +18051,71,21.5,3,0.0 +18051,34,14,34,0.0 +18051,50,16.25,13,0.0 +18051,25,14,12,0.0 +18051,4,22,26,0.0 +18051,21,10,50,0.0 +18051,37,26,22,0.0 +18051,8,40,3,0.0 +18051,56,38,34,0.0 +18051,68,12.5,5,0.0 +18051,19,9.2,18,0.0 +18051,60,34,21,0.0 +18051,70,15,40,0.0 +18051,57,19.5,1,0.0 +18051,13,6,8,0.0 +18051,40,18.4,32,0.0 +18051,20,81,25,0.0 +18051,24,4.5,17,0.0 +18051,74,10,17,0.0 +18051,52,7,18,0.0 +18051,7,30,37,0.0 +18051,69,36,27,0.0 +18051,30,25.89,27,0.0 +18051,23,9,5,0.0 +18051,45,9.5,21,0.0 +18051,62,49.3,39,0.0 +18051,2,19,42,0.0 +18051,67,14,5,0.0 +18051,53,32.8,37,0.0 +18051,1,18,9,0.0 +18051,54,7.45,35,0.0 +18051,3,10,25,0.0 +18051,46,12,19,0.0 +18051,35,18,19,0.0 +18051,76,18,25,0.0 +18051,10,31,31,0.0 +18051,36,19,32,0.0 +18051,38,263.5,17,0.0 +18051,77,13,27,0.0 +18051,48,12.75,33,0.0 +18051,28,45.6,39,0.0 +18051,63,43.9,3,0.0 +18051,44,19.45,40,0.0 +18051,5,21.35,45,0.0 +18051,29,123.79,39,0.0 +18051,15,15.5,15,0.0 +18051,9,97,39,0.0 +18051,72,34.8,18,0.0 +18051,42,14,50,0.0 +18051,16,17.45,45,0.0 +18051,75,7.75,12,0.0 +18051,43,46,31,0.0 +18051,55,24,46,0.0 +18051,39,18,32,0.0 +18051,59,55,20,0.0 +18051,61,28.5,33,0.0 +18051,33,2.5,11,0.0 +18051,6,25,17,0.0 +18051,41,9.65,28,0.0 +18051,73,15,7,0.0 +18051,65,21.05,33,0.0 +18051,27,43.9,18,0.0 +18051,32,32,24,0.0 +18051,47,9.5,38,0.0 +18051,22,21,7,0.0 +18051,31,12.5,30,0.0 +18051,51,53,46,0.0 +18052,43,46,47,0.0 +18052,42,14,31,0.0 +18052,58,13.25,37,0.0 +18052,49,20,17,0.0 +18052,74,10,29,0.0 +18052,53,32.8,35,0.0 +18052,65,21.05,5,0.0 +18052,52,7,13,0.0 +18052,61,28.5,39,0.0 +18052,45,9.5,19,0.0 +18052,44,19.45,4,0.0 +18052,55,24,8,0.0 +18052,28,45.6,28,0.0 +18052,12,38,9,0.0 +18052,3,10,18,0.0 +18052,68,12.5,20,0.0 +18052,13,6,42,0.0 +18052,67,14,50,0.0 +18052,77,13,42,0.0 +18052,26,31.23,20,0.0 +18052,18,62.5,22,0.0 +18052,23,9,10,0.0 +18052,27,43.9,29,0.0 +18052,8,40,15,0.0 +18052,51,53,25,0.0 +18052,4,22,27,0.0 +18052,75,7.75,29,0.0 +18052,50,16.25,18,0.0 +18052,10,31,24,0.0 +18052,34,14,15,0.0 +18052,35,18,21,0.0 +18052,14,23.25,32,0.0 +18052,71,21.5,1,0.0 +18052,19,9.2,48,0.0 +18052,31,12.5,17,0.0 +18052,72,34.8,1,0.0 +18052,20,81,42,0.0 +18052,32,32,28,0.0 +18052,25,14,24,0.0 +18052,9,97,22,0.0 +18052,15,15.5,11,0.0 +18052,48,12.75,24,0.0 +18052,21,10,24,0.0 +18052,73,15,31,0.0 +18052,47,9.5,14,0.0 +18052,38,263.5,10,0.0 +18052,22,21,17,0.0 +18052,62,49.3,38,0.0 +18052,69,36,45,0.0 +18052,2,19,29,0.0 +18052,16,17.45,17,0.0 +18052,64,33.25,25,0.0 +18053,59,55,14,0.0 +18053,16,17.45,4,0.0 +18053,39,18,17,0.0 +18053,29,123.79,15,0.0 +18053,66,17,44,0.0 +18053,21,10,13,0.0 +18053,4,22,24,0.0 +18053,57,19.5,14,0.0 +18053,69,36,27,0.0 +18053,45,9.5,24,0.0 +18053,54,7.45,12,0.0 +18053,34,14,27,0.0 +18053,38,263.5,3,0.0 +18053,77,13,49,0.0 +18053,63,43.9,29,0.0 +18053,76,18,44,0.0 +18053,53,32.8,33,0.0 +18053,52,7,36,0.0 +18053,9,97,9,0.0 +18053,49,20,23,0.0 +18053,50,16.25,27,0.0 +18053,28,45.6,48,0.0 +18053,20,81,37,0.0 +18053,7,30,7,0.0 +18053,3,10,7,0.0 +18053,17,39,28,0.0 +18053,71,21.5,20,0.0 +18053,51,53,18,0.0 +18053,33,2.5,22,0.0 +18053,65,21.05,9,0.0 +18053,26,31.23,13,0.0 +18053,56,38,15,0.0 +18053,12,38,28,0.0 +18053,31,12.5,10,0.0 +18053,62,49.3,47,0.0 +18053,67,14,36,0.0 +18053,25,14,25,0.0 +18053,15,15.5,22,0.0 +18053,8,40,16,0.0 +18053,46,12,34,0.0 +18053,58,13.25,32,0.0 +18053,27,43.9,50,0.0 +18053,10,31,16,0.0 +18053,42,14,46,0.0 +18053,23,9,24,0.0 +18053,47,9.5,44,0.0 +18053,32,32,25,0.0 +18053,30,25.89,38,0.0 +18053,1,18,24,0.0 +18053,55,24,13,0.0 +18053,44,19.45,49,0.0 +18053,68,12.5,12,0.0 +18053,48,12.75,33,0.0 +18053,13,6,32,0.0 +18053,18,62.5,21,0.0 +18053,74,10,49,0.0 +18053,19,9.2,25,0.0 +18053,2,19,41,0.0 +18053,60,34,6,0.0 +18053,14,23.25,21,0.0 +18053,5,21.35,8,0.0 +18054,49,20,26,0.0 +18054,30,25.89,17,0.0 +18054,51,53,18,0.0 +18054,19,9.2,15,0.0 +18054,36,19,34,0.0 +18054,2,19,6,0.0 +18054,37,26,25,0.0 +18054,64,33.25,48,0.0 +18054,9,97,44,0.0 +18054,10,31,29,0.0 +18054,26,31.23,28,0.0 +18054,24,4.5,1,0.0 +18054,41,9.65,19,0.0 +18054,77,13,38,0.0 +18054,11,21,21,0.0 +18054,27,43.9,14,0.0 +18054,6,25,24,0.0 +18054,68,12.5,20,0.0 +18054,67,14,6,0.0 +18054,4,22,32,0.0 +18054,76,18,33,0.0 +18054,59,55,12,0.0 +18054,57,19.5,40,0.0 +18054,71,21.5,16,0.0 +18054,34,14,25,0.0 +18054,23,9,26,0.0 +18054,31,12.5,25,0.0 +18054,7,30,28,0.0 +18054,35,18,40,0.0 +18054,13,6,38,0.0 +18054,28,45.6,4,0.0 +18054,54,7.45,30,0.0 +18054,39,18,5,0.0 +18054,53,32.8,13,0.0 +18054,50,16.25,28,0.0 +18054,55,24,32,0.0 +18054,18,62.5,31,0.0 +18054,58,13.25,4,0.0 +18054,12,38,32,0.0 +18054,73,15,44,0.0 +18054,32,32,19,0.0 +18055,17,39,49,0.0 +18055,44,19.45,40,0.0 +18055,52,7,6,0.0 +18055,5,21.35,40,0.0 +18055,41,9.65,9,0.0 +18055,46,12,6,0.0 +18055,64,33.25,13,0.0 +18055,35,18,37,0.0 +18055,13,6,9,0.0 +18055,40,18.4,15,0.0 +18055,67,14,13,0.0 +18055,22,21,37,0.0 +18055,62,49.3,11,0.0 +18055,37,26,36,0.0 +18055,50,16.25,26,0.0 +18055,38,263.5,41,0.0 +18055,7,30,49,0.0 +18055,49,20,38,0.0 +18055,34,14,45,0.0 +18055,24,4.5,46,0.0 +18055,26,31.23,3,0.0 +18055,75,7.75,3,0.0 +18055,33,2.5,4,0.0 +18055,53,32.8,26,0.0 +18055,9,97,50,0.0 +18055,29,123.79,31,0.0 +18055,61,28.5,4,0.0 +18055,60,34,49,0.0 +18055,1,18,30,0.0 +18055,55,24,17,0.0 +18055,27,43.9,21,0.0 +18055,76,18,33,0.0 +18055,31,12.5,27,0.0 +18055,72,34.8,17,0.0 +18055,15,15.5,29,0.0 +18055,77,13,37,0.0 +18055,45,9.5,43,0.0 +18055,36,19,25,0.0 +18055,59,55,43,0.0 +18055,43,46,41,0.0 +18055,42,14,36,0.0 +18055,19,9.2,21,0.0 +18055,39,18,19,0.0 +18055,58,13.25,28,0.0 +18055,69,36,9,0.0 +18055,4,22,27,0.0 +18055,18,62.5,6,0.0 +18055,74,10,2,0.0 +18055,57,19.5,9,0.0 +18056,12,38,7,0.0 +18056,32,32,18,0.0 +18056,13,6,21,0.0 +18056,67,14,17,0.0 +18056,63,43.9,39,0.0 +18056,40,18.4,46,0.0 +18056,68,12.5,22,0.0 +18056,9,97,50,0.0 +18056,45,9.5,15,0.0 +18056,27,43.9,34,0.0 +18056,66,17,47,0.0 +18056,62,49.3,23,0.0 +18056,37,26,30,0.0 +18056,11,21,45,0.0 +18056,75,7.75,38,0.0 +18056,18,62.5,8,0.0 +18056,29,123.79,33,0.0 +18056,19,9.2,9,0.0 +18056,38,263.5,43,0.0 +18056,5,21.35,46,0.0 +18056,31,12.5,42,0.0 +18056,73,15,21,0.0 +18056,2,19,7,0.0 +18056,41,9.65,50,0.0 +18056,77,13,49,0.0 +18056,15,15.5,38,0.0 +18056,64,33.25,36,0.0 +18056,58,13.25,26,0.0 +18056,26,31.23,37,0.0 +18056,24,4.5,40,0.0 +18056,14,23.25,18,0.0 +18056,70,15,25,0.0 +18056,49,20,31,0.0 +18056,65,21.05,1,0.0 +18056,69,36,15,0.0 +18056,55,24,27,0.0 +18056,39,18,36,0.0 +18056,56,38,42,0.0 +18056,74,10,35,0.0 +18056,17,39,24,0.0 +18056,43,46,23,0.0 +18056,33,2.5,30,0.0 +18056,22,21,15,0.0 +18056,51,53,7,0.0 +18056,21,10,49,0.0 +18056,57,19.5,7,0.0 +18056,53,32.8,24,0.0 +18056,50,16.25,24,0.0 +18056,3,10,9,0.0 +18056,20,81,10,0.0 +18056,54,7.45,20,0.0 +18056,34,14,2,0.0 +18056,25,14,23,0.0 +18056,59,55,9,0.0 +18056,52,7,8,0.0 +18056,28,45.6,37,0.0 +18056,36,19,20,0.0 +18056,71,21.5,26,0.0 +18056,6,25,1,0.0 +18056,35,18,2,0.0 +18056,16,17.45,6,0.0 +18056,23,9,40,0.0 +18056,10,31,1,0.0 +18056,46,12,18,0.0 +18056,4,22,38,0.0 +18056,42,14,37,0.0 +18056,47,9.5,30,0.0 +18056,76,18,2,0.0 +18056,72,34.8,34,0.0 +18056,48,12.75,43,0.0 +18056,8,40,25,0.0 +18056,30,25.89,36,0.0 +18056,7,30,31,0.0 +18056,60,34,12,0.0 +18056,1,18,37,0.0 +18057,69,36,35,0.0 +18057,72,34.8,37,0.0 +18057,45,9.5,38,0.0 +18057,58,13.25,49,0.0 +18057,74,10,15,0.0 +18057,20,81,20,0.0 +18057,61,28.5,33,0.0 +18057,23,9,34,0.0 +18057,62,49.3,29,0.0 +18057,47,9.5,16,0.0 +18057,26,31.23,19,0.0 +18057,54,7.45,24,0.0 +18057,33,2.5,31,0.0 +18057,25,14,37,0.0 +18057,51,53,20,0.0 +18057,4,22,41,0.0 +18057,56,38,31,0.0 +18057,29,123.79,18,0.0 +18057,41,9.65,5,0.0 +18057,30,25.89,42,0.0 +18057,35,18,8,0.0 +18057,65,21.05,12,0.0 +18057,12,38,22,0.0 +18057,1,18,26,0.0 +18057,36,19,34,0.0 +18057,49,20,50,0.0 +18057,34,14,42,0.0 +18057,10,31,3,0.0 +18057,21,10,33,0.0 +18057,46,12,26,0.0 +18057,38,263.5,26,0.0 +18057,60,34,22,0.0 +18057,2,19,2,0.0 +18057,77,13,48,0.0 +18057,75,7.75,5,0.0 +18057,57,19.5,12,0.0 +18057,76,18,2,0.0 +18057,40,18.4,12,0.0 +18057,67,14,40,0.0 +18057,71,21.5,21,0.0 +18057,73,15,5,0.0 +18057,18,62.5,24,0.0 +18057,8,40,10,0.0 +18057,70,15,12,0.0 +18057,63,43.9,45,0.0 +18057,27,43.9,11,0.0 +18057,44,19.45,1,0.0 +18057,5,21.35,48,0.0 +18057,50,16.25,33,0.0 +18057,13,6,19,0.0 +18057,39,18,33,0.0 +18057,16,17.45,4,0.0 +18057,3,10,12,0.0 +18057,43,46,45,0.0 +18057,66,17,15,0.0 +18057,11,21,31,0.0 +18057,9,97,43,0.0 +18057,37,26,21,0.0 +18057,28,45.6,8,0.0 +18057,59,55,25,0.0 +18057,14,23.25,26,0.0 +18057,53,32.8,22,0.0 +18057,32,32,5,0.0 +18057,7,30,41,0.0 +18057,22,21,2,0.0 +18057,52,7,16,0.0 +18057,68,12.5,4,0.0 +18057,42,14,37,0.0 +18057,19,9.2,24,0.0 +18057,64,33.25,40,0.0 +18057,31,12.5,50,0.0 +18057,6,25,17,0.0 +18057,17,39,21,0.0 +18057,55,24,44,0.0 +18057,15,15.5,24,0.0 +18058,72,34.8,5,0.0 +18058,57,19.5,2,0.0 +18058,41,9.65,2,0.0 +18058,47,9.5,32,0.0 +18058,71,21.5,29,0.0 +18058,22,21,28,0.0 +18058,23,9,37,0.0 +18058,62,49.3,3,0.0 +18058,64,33.25,4,0.0 +18058,63,43.9,26,0.0 +18058,5,21.35,24,0.0 +18058,50,16.25,40,0.0 +18058,30,25.89,12,0.0 +18058,60,34,23,0.0 +18058,58,13.25,43,0.0 +18058,40,18.4,27,0.0 +18058,38,263.5,49,0.0 +18058,28,45.6,47,0.0 +18058,14,23.25,32,0.0 +18058,48,12.75,43,0.0 +18058,13,6,31,0.0 +18058,68,12.5,30,0.0 +18058,36,19,45,0.0 +18058,59,55,28,0.0 +18058,27,43.9,31,0.0 +18058,8,40,27,0.0 +18058,17,39,28,0.0 +18058,21,10,2,0.0 +18058,73,15,38,0.0 +18058,49,20,33,0.0 +18058,70,15,26,0.0 +18058,6,25,24,0.0 +18058,77,13,14,0.0 +18058,26,31.23,25,0.0 +18058,3,10,49,0.0 +18058,15,15.5,43,0.0 +18058,19,9.2,37,0.0 +18058,31,12.5,25,0.0 +18058,74,10,23,0.0 +18058,1,18,47,0.0 +18058,54,7.45,36,0.0 +18058,16,17.45,41,0.0 +18058,46,12,49,0.0 +18058,39,18,30,0.0 +18058,45,9.5,31,0.0 +18058,11,21,49,0.0 +18058,2,19,36,0.0 +18058,43,46,3,0.0 +18058,25,14,35,0.0 +18058,12,38,48,0.0 +18058,69,36,25,0.0 +18058,51,53,10,0.0 +18058,42,14,6,0.0 +18058,35,18,39,0.0 +18058,34,14,10,0.0 +18058,75,7.75,17,0.0 +18058,4,22,18,0.0 +18058,10,31,31,0.0 +18058,18,62.5,10,0.0 +18058,52,7,31,0.0 +18058,76,18,25,0.0 +18058,53,32.8,30,0.0 +18058,33,2.5,31,0.0 +18058,37,26,7,0.0 +18058,9,97,24,0.0 +18058,55,24,12,0.0 +18058,66,17,45,0.0 +18058,61,28.5,37,0.0 +18058,20,81,33,0.0 +18058,44,19.45,44,0.0 +18058,67,14,14,0.0 +18058,65,21.05,46,0.0 +18058,7,30,3,0.0 +18059,61,28.5,49,0.0 +18059,29,123.79,39,0.0 +18059,9,97,31,0.0 +18059,39,18,3,0.0 +18059,35,18,41,0.0 +18059,51,53,37,0.0 +18059,44,19.45,25,0.0 +18059,59,55,26,0.0 +18060,39,18,13,0.0 +18060,21,10,46,0.0 +18060,59,55,3,0.0 +18060,54,7.45,37,0.0 +18060,16,17.45,1,0.0 +18060,32,32,14,0.0 +18060,44,19.45,48,0.0 +18060,12,38,20,0.0 +18060,46,12,18,0.0 +18061,74,10,24,0.0 +18061,1,18,8,0.0 +18061,13,6,22,0.0 +18061,9,97,11,0.0 +18061,54,7.45,43,0.0 +18061,22,21,29,0.0 +18061,63,43.9,27,0.0 +18061,47,9.5,40,0.0 +18061,77,13,20,0.0 +18061,35,18,46,0.0 +18061,48,12.75,42,0.0 +18061,23,9,21,0.0 +18062,27,43.9,4,0.0 +18062,12,38,20,0.0 +18062,76,18,29,0.0 +18062,58,13.25,19,0.0 +18062,1,18,26,0.0 +18062,25,14,20,0.0 +18062,49,20,49,0.0 +18062,42,14,26,0.0 +18062,73,15,43,0.0 +18062,38,263.5,47,0.0 +18062,17,39,31,0.0 +18062,62,49.3,48,0.0 +18062,32,32,16,0.0 +18062,66,17,16,0.0 +18062,18,62.5,20,0.0 +18062,69,36,5,0.0 +18062,47,9.5,25,0.0 +18062,22,21,22,0.0 +18062,57,19.5,14,0.0 +18062,13,6,47,0.0 +18062,65,21.05,19,0.0 +18062,50,16.25,16,0.0 +18062,48,12.75,45,0.0 +18062,28,45.6,13,0.0 +18062,10,31,35,0.0 +18062,64,33.25,5,0.0 +18062,46,12,22,0.0 +18062,72,34.8,12,0.0 +18062,6,25,1,0.0 +18062,29,123.79,22,0.0 +18062,11,21,33,0.0 +18062,40,18.4,47,0.0 +18062,8,40,25,0.0 +18062,51,53,47,0.0 +18062,14,23.25,19,0.0 +18062,43,46,29,0.0 +18062,21,10,46,0.0 +18062,3,10,23,0.0 +18062,30,25.89,36,0.0 +18062,34,14,49,0.0 +18062,60,34,36,0.0 +18062,67,14,20,0.0 +18062,4,22,30,0.0 +18062,68,12.5,9,0.0 +18062,20,81,44,0.0 +18062,16,17.45,37,0.0 +18062,53,32.8,18,0.0 +18062,26,31.23,15,0.0 +18062,45,9.5,38,0.0 +18062,61,28.5,16,0.0 +18062,55,24,21,0.0 +18062,75,7.75,8,0.0 +18062,35,18,36,0.0 +18062,5,21.35,41,0.0 +18062,23,9,50,0.0 +18062,71,21.5,18,0.0 +18062,59,55,8,0.0 +18062,31,12.5,2,0.0 +18062,63,43.9,37,0.0 +18063,33,2.5,30,0.0 +18063,6,25,17,0.0 +18063,23,9,40,0.0 +18063,54,7.45,11,0.0 +18063,9,97,29,0.0 +18063,7,30,18,0.0 +18063,76,18,38,0.0 +18063,11,21,26,0.0 +18063,51,53,50,0.0 +18063,36,19,24,0.0 +18063,52,7,50,0.0 +18063,40,18.4,16,0.0 +18063,56,38,20,0.0 +18063,65,21.05,14,0.0 +18063,13,6,36,0.0 +18063,49,20,6,0.0 +18063,43,46,40,0.0 +18063,12,38,30,0.0 +18063,75,7.75,40,0.0 +18063,30,25.89,33,0.0 +18063,18,62.5,34,0.0 +18063,27,43.9,33,0.0 +18063,41,9.65,28,0.0 +18063,71,21.5,10,0.0 +18063,17,39,38,0.0 +18063,45,9.5,21,0.0 +18063,59,55,5,0.0 +18063,24,4.5,23,0.0 +18063,16,17.45,19,0.0 +18063,38,263.5,9,0.0 +18063,44,19.45,9,0.0 +18063,68,12.5,39,0.0 +18063,50,16.25,32,0.0 +18063,77,13,24,0.0 +18063,48,12.75,31,0.0 +18063,46,12,12,0.0 +18063,73,15,24,0.0 +18063,26,31.23,27,0.0 +18063,70,15,7,0.0 +18063,31,12.5,23,0.0 +18063,22,21,38,0.0 +18063,64,33.25,27,0.0 +18063,29,123.79,4,0.0 +18063,14,23.25,2,0.0 +18063,8,40,40,0.0 +18063,57,19.5,41,0.0 +18063,5,21.35,47,0.0 +18063,32,32,38,0.0 +18063,3,10,44,0.0 +18063,42,14,37,0.0 +18063,47,9.5,11,0.0 +18063,66,17,15,0.0 +18063,20,81,15,0.0 +18063,15,15.5,45,0.0 +18063,10,31,41,0.0 +18063,25,14,13,0.0 +18063,35,18,17,0.0 +18064,16,17.45,42,0.0 +18064,72,34.8,23,0.0 +18064,34,14,14,0.0 +18064,45,9.5,12,0.0 +18064,59,55,48,0.0 +18064,3,10,14,0.0 +18064,39,18,31,0.0 +18064,11,21,34,0.0 +18064,57,19.5,10,0.0 +18064,19,9.2,19,0.0 +18064,53,32.8,9,0.0 +18064,64,33.25,16,0.0 +18064,13,6,25,0.0 +18064,61,28.5,30,0.0 +18064,71,21.5,46,0.0 +18064,21,10,19,0.0 +18064,22,21,11,0.0 +18064,31,12.5,30,0.0 +18064,73,15,42,0.0 +18064,26,31.23,10,0.0 +18064,55,24,43,0.0 +18064,33,2.5,6,0.0 +18064,1,18,13,0.0 +18064,18,62.5,33,0.0 +18064,74,10,31,0.0 +18064,38,263.5,28,0.0 +18064,7,30,21,0.0 +18064,66,17,36,0.0 +18064,8,40,17,0.0 +18064,65,21.05,18,0.0 +18064,52,7,15,0.0 +18064,40,18.4,49,0.0 +18064,69,36,8,0.0 +18064,47,9.5,5,0.0 +18064,15,15.5,31,0.0 +18064,43,46,17,0.0 +18064,28,45.6,36,0.0 +18064,17,39,14,0.0 +18064,25,14,42,0.0 +18064,62,49.3,48,0.0 +18064,2,19,43,0.0 +18064,48,12.75,42,0.0 +18064,12,38,21,0.0 +18064,76,18,39,0.0 +18064,4,22,37,0.0 +18064,14,23.25,30,0.0 +18064,50,16.25,31,0.0 +18064,37,26,29,0.0 +18064,75,7.75,46,0.0 +18064,30,25.89,9,0.0 +18064,41,9.65,21,0.0 +18064,63,43.9,41,0.0 +18064,9,97,22,0.0 +18064,54,7.45,4,0.0 +18065,28,45.6,31,0.0 +18065,34,14,30,0.0 +18065,14,23.25,39,0.0 +18065,17,39,17,0.0 +18065,5,21.35,25,0.0 +18066,29,123.79,22,0.0 +18066,71,21.5,7,0.0 +18066,58,13.25,4,0.0 +18066,41,9.65,4,0.0 +18066,14,23.25,23,0.0 +18066,67,14,39,0.0 +18066,32,32,48,0.0 +18066,26,31.23,21,0.0 +18066,24,4.5,32,0.0 +18066,8,40,14,0.0 +18066,23,9,42,0.0 +18066,15,15.5,40,0.0 +18066,48,12.75,27,0.0 +18066,10,31,39,0.0 +18066,45,9.5,30,0.0 +18066,74,10,24,0.0 +18066,54,7.45,8,0.0 +18066,69,36,10,0.0 +18066,31,12.5,40,0.0 +18066,76,18,19,0.0 +18066,39,18,32,0.0 +18066,70,15,14,0.0 +18066,34,14,21,0.0 +18066,62,49.3,24,0.0 +18066,46,12,41,0.0 +18066,53,32.8,20,0.0 +18066,37,26,38,0.0 +18066,63,43.9,25,0.0 +18066,28,45.6,49,0.0 +18066,52,7,31,0.0 +18066,43,46,48,0.0 +18066,27,43.9,4,0.0 +18066,75,7.75,32,0.0 +18066,2,19,40,0.0 +18066,17,39,14,0.0 +18066,64,33.25,20,0.0 +18066,7,30,48,0.0 +18066,35,18,12,0.0 +18066,65,21.05,5,0.0 +18066,19,9.2,32,0.0 +18066,51,53,2,0.0 +18066,60,34,50,0.0 +18066,3,10,16,0.0 +18066,38,263.5,12,0.0 +18066,77,13,1,0.0 +18066,50,16.25,9,0.0 +18066,55,24,39,0.0 +18066,61,28.5,13,0.0 +18066,49,20,44,0.0 +18066,9,97,17,0.0 +18066,47,9.5,17,0.0 +18066,25,14,40,0.0 +18066,30,25.89,49,0.0 +18066,22,21,14,0.0 +18066,18,62.5,45,0.0 +18066,5,21.35,10,0.0 +18066,40,18.4,2,0.0 +18066,33,2.5,29,0.0 +18066,6,25,43,0.0 +18066,4,22,48,0.0 +18066,68,12.5,44,0.0 +18066,72,34.8,24,0.0 +18066,16,17.45,33,0.0 +18066,21,10,40,0.0 +18066,59,55,42,0.0 +18066,44,19.45,2,0.0 +18067,14,23.25,29,0.0 +18067,56,38,37,0.0 +18067,46,12,22,0.0 +18067,53,32.8,31,0.0 +18067,74,10,6,0.0 +18067,18,62.5,5,0.0 +18067,31,12.5,10,0.0 +18067,30,25.89,10,0.0 +18067,34,14,40,0.0 +18067,55,24,27,0.0 +18067,44,19.45,36,0.0 +18067,61,28.5,2,0.0 +18067,42,14,18,0.0 +18067,48,12.75,46,0.0 +18067,60,34,31,0.0 +18067,54,7.45,42,0.0 +18067,51,53,8,0.0 +18067,43,46,17,0.0 +18067,37,26,36,0.0 +18067,52,7,19,0.0 +18067,57,19.5,37,0.0 +18067,1,18,14,0.0 +18067,15,15.5,1,0.0 +18068,32,32,26,0.0 +18068,6,25,33,0.0 +18068,49,20,28,0.0 +18068,50,16.25,34,0.0 +18068,33,2.5,50,0.0 +18068,4,22,34,0.0 +18068,64,33.25,31,0.0 +18068,20,81,22,0.0 +18068,60,34,50,0.0 +18068,14,23.25,25,0.0 +18068,73,15,9,0.0 +18068,76,18,41,0.0 +18068,66,17,18,0.0 +18068,29,123.79,29,0.0 +18068,24,4.5,35,0.0 +18068,36,19,41,0.0 +18068,57,19.5,24,0.0 +18068,55,24,14,0.0 +18068,37,26,33,0.0 +18068,35,18,46,0.0 +18068,70,15,41,0.0 +18068,45,9.5,49,0.0 +18068,26,31.23,23,0.0 +18068,25,14,23,0.0 +18068,74,10,32,0.0 +18068,2,19,41,0.0 +18068,63,43.9,38,0.0 +18068,58,13.25,27,0.0 +18068,62,49.3,39,0.0 +18068,10,31,39,0.0 +18068,3,10,28,0.0 +18068,31,12.5,42,0.0 +18068,16,17.45,25,0.0 +18068,67,14,46,0.0 +18068,65,21.05,12,0.0 +18068,54,7.45,43,0.0 +18068,27,43.9,5,0.0 +18068,71,21.5,24,0.0 +18068,18,62.5,48,0.0 +18068,28,45.6,23,0.0 +18068,8,40,25,0.0 +18068,41,9.65,26,0.0 +18068,46,12,7,0.0 +18068,48,12.75,2,0.0 +18068,22,21,19,0.0 +18068,7,30,26,0.0 +18068,53,32.8,36,0.0 +18068,38,263.5,5,0.0 +18068,15,15.5,15,0.0 +18068,34,14,48,0.0 +18069,68,12.5,3,0.0 +18069,2,19,10,0.0 +18069,15,15.5,4,0.0 +18069,35,18,21,0.0 +18069,19,9.2,17,0.0 +18069,1,18,2,0.0 +18069,20,81,32,0.0 +18069,62,49.3,3,0.0 +18069,30,25.89,46,0.0 +18069,25,14,11,0.0 +18069,11,21,16,0.0 +18069,31,12.5,39,0.0 +18069,3,10,34,0.0 +18069,12,38,3,0.0 +18069,67,14,24,0.0 +18069,36,19,36,0.0 +18069,43,46,20,0.0 +18069,72,34.8,33,0.0 +18069,64,33.25,25,0.0 +18069,13,6,12,0.0 +18069,58,13.25,10,0.0 +18069,76,18,34,0.0 +18069,63,43.9,21,0.0 +18069,37,26,15,0.0 +18069,57,19.5,44,0.0 +18069,21,10,21,0.0 +18069,44,19.45,41,0.0 +18069,22,21,36,0.0 +18069,52,7,46,0.0 +18069,33,2.5,47,0.0 +18069,55,24,35,0.0 +18069,7,30,9,0.0 +18069,32,32,8,0.0 +18069,46,12,31,0.0 +18069,65,21.05,19,0.0 +18069,27,43.9,31,0.0 +18069,69,36,31,0.0 +18069,51,53,49,0.0 +18069,10,31,35,0.0 +18069,56,38,46,0.0 +18069,48,12.75,48,0.0 +18069,53,32.8,48,0.0 +18069,40,18.4,1,0.0 +18069,24,4.5,21,0.0 +18069,77,13,44,0.0 +18069,29,123.79,28,0.0 +18069,49,20,34,0.0 +18069,70,15,39,0.0 +18069,8,40,32,0.0 +18069,42,14,45,0.0 +18069,38,263.5,27,0.0 +18069,34,14,8,0.0 +18069,54,7.45,33,0.0 +18069,75,7.75,43,0.0 +18069,59,55,45,0.0 +18069,41,9.65,36,0.0 +18069,71,21.5,20,0.0 +18069,9,97,32,0.0 +18069,6,25,5,0.0 +18070,14,23.25,4,0.0 +18070,5,21.35,35,0.0 +18070,28,45.6,7,0.0 +18070,29,123.79,36,0.0 +18070,56,38,14,0.0 +18070,52,7,49,0.0 +18070,49,20,16,0.0 +18070,77,13,4,0.0 +18070,11,21,47,0.0 +18070,72,34.8,39,0.0 +18070,57,19.5,15,0.0 +18070,4,22,43,0.0 +18070,36,19,38,0.0 +18070,23,9,10,0.0 +18070,41,9.65,10,0.0 +18070,64,33.25,9,0.0 +18070,51,53,1,0.0 +18070,55,24,39,0.0 +18070,15,15.5,27,0.0 +18070,39,18,47,0.0 +18070,6,25,34,0.0 +18070,50,16.25,28,0.0 +18070,24,4.5,26,0.0 +18070,8,40,5,0.0 +18070,35,18,43,0.0 +18070,18,62.5,14,0.0 +18070,65,21.05,32,0.0 +18070,3,10,4,0.0 +18070,10,31,31,0.0 +18070,34,14,36,0.0 +18071,71,21.5,15,0.0 +18071,75,7.75,14,0.0 +18071,60,34,44,0.0 +18071,73,15,42,0.0 +18071,19,9.2,14,0.0 +18071,69,36,3,0.0 +18071,58,13.25,50,0.0 +18071,26,31.23,26,0.0 +18071,67,14,17,0.0 +18071,76,18,8,0.0 +18071,37,26,25,0.0 +18071,9,97,28,0.0 +18071,64,33.25,8,0.0 +18071,35,18,1,0.0 +18071,34,14,6,0.0 +18071,43,46,14,0.0 +18071,63,43.9,16,0.0 +18071,27,43.9,32,0.0 +18071,23,9,32,0.0 +18071,10,31,50,0.0 +18071,68,12.5,14,0.0 +18071,53,32.8,18,0.0 +18071,3,10,42,0.0 +18071,25,14,6,0.0 +18071,59,55,17,0.0 +18071,8,40,48,0.0 +18071,61,28.5,47,0.0 +18071,46,12,1,0.0 +18071,14,23.25,25,0.0 +18071,74,10,3,0.0 +18071,13,6,4,0.0 +18071,48,12.75,14,0.0 +18071,16,17.45,3,0.0 +18071,36,19,15,0.0 +18071,39,18,32,0.0 +18071,33,2.5,43,0.0 +18071,49,20,14,0.0 +18071,44,19.45,21,0.0 +18071,29,123.79,8,0.0 +18071,7,30,4,0.0 +18071,4,22,24,0.0 +18071,50,16.25,26,0.0 +18071,32,32,41,0.0 +18071,12,38,19,0.0 +18071,47,9.5,36,0.0 +18071,57,19.5,20,0.0 +18071,22,21,9,0.0 +18071,72,34.8,39,0.0 +18071,31,12.5,10,0.0 +18071,42,14,8,0.0 +18071,54,7.45,37,0.0 +18071,65,21.05,26,0.0 +18071,30,25.89,7,0.0 +18071,21,10,4,0.0 +18071,1,18,9,0.0 +18071,17,39,19,0.0 +18071,28,45.6,13,0.0 +18071,5,21.35,16,0.0 +18071,15,15.5,27,0.0 +18071,11,21,50,0.0 +18072,36,19,16,0.0 +18072,10,31,19,0.0 +18072,44,19.45,48,0.0 +18072,26,31.23,43,0.0 +18072,71,21.5,21,0.0 +18072,42,14,42,0.0 +18072,77,13,49,0.0 +18072,8,40,1,0.0 +18072,17,39,49,0.0 +18072,45,9.5,33,0.0 +18072,18,62.5,27,0.0 +18072,22,21,36,0.0 +18072,58,13.25,9,0.0 +18072,25,14,9,0.0 +18072,6,25,33,0.0 +18072,52,7,47,0.0 +18072,29,123.79,42,0.0 +18072,33,2.5,18,0.0 +18072,27,43.9,20,0.0 +18072,53,32.8,38,0.0 +18072,24,4.5,25,0.0 +18072,39,18,24,0.0 +18072,13,6,19,0.0 +18072,59,55,24,0.0 +18072,46,12,11,0.0 +18072,48,12.75,9,0.0 +18072,60,34,3,0.0 +18072,3,10,15,0.0 +18072,56,38,18,0.0 +18072,67,14,41,0.0 +18072,74,10,40,0.0 +18072,62,49.3,3,0.0 +18072,30,25.89,14,0.0 +18072,38,263.5,45,0.0 +18073,4,22,29,0.0 +18073,69,36,1,0.0 +18073,43,46,23,0.0 +18073,13,6,9,0.0 +18073,55,24,27,0.0 +18073,59,55,6,0.0 +18073,52,7,47,0.0 +18073,77,13,24,0.0 +18073,26,31.23,19,0.0 +18073,73,15,1,0.0 +18073,40,18.4,50,0.0 +18073,30,25.89,20,0.0 +18073,44,19.45,11,0.0 +18073,68,12.5,41,0.0 +18073,62,49.3,1,0.0 +18073,50,16.25,36,0.0 +18073,9,97,13,0.0 +18073,3,10,3,0.0 +18073,2,19,11,0.0 +18073,42,14,7,0.0 +18073,54,7.45,20,0.0 +18073,7,30,1,0.0 +18073,71,21.5,17,0.0 +18073,53,32.8,31,0.0 +18073,8,40,25,0.0 +18073,63,43.9,3,0.0 +18073,39,18,9,0.0 +18073,11,21,25,0.0 +18073,56,38,23,0.0 +18073,58,13.25,30,0.0 +18073,37,26,34,0.0 +18073,20,81,8,0.0 +18073,29,123.79,32,0.0 +18073,70,15,47,0.0 +18073,28,45.6,16,0.0 +18073,25,14,22,0.0 +18073,14,23.25,15,0.0 +18073,47,9.5,3,0.0 +18073,32,32,13,0.0 +18073,15,15.5,21,0.0 +18073,18,62.5,1,0.0 +18073,34,14,8,0.0 +18073,24,4.5,29,0.0 +18073,45,9.5,24,0.0 +18073,27,43.9,25,0.0 +18073,72,34.8,12,0.0 +18073,74,10,10,0.0 +18073,23,9,1,0.0 +18073,66,17,46,0.0 +18074,75,7.75,22,0.0 +18074,5,21.35,5,0.0 +18074,4,22,37,0.0 +18074,17,39,27,0.0 +18074,25,14,46,0.0 +18074,67,14,11,0.0 +18074,70,15,39,0.0 +18074,68,12.5,24,0.0 +18074,63,43.9,35,0.0 +18074,72,34.8,40,0.0 +18074,71,21.5,37,0.0 +18074,13,6,38,0.0 +18074,58,13.25,20,0.0 +18074,36,19,22,0.0 +18074,1,18,23,0.0 +18074,15,15.5,39,0.0 +18074,77,13,30,0.0 +18074,9,97,50,0.0 +18074,16,17.45,4,0.0 +18074,39,18,8,0.0 +18074,35,18,28,0.0 +18074,57,19.5,49,0.0 +18074,73,15,5,0.0 +18074,43,46,27,0.0 +18074,3,10,4,0.0 +18074,22,21,9,0.0 +18074,47,9.5,40,0.0 +18074,38,263.5,31,0.0 +18074,18,62.5,13,0.0 +18074,54,7.45,25,0.0 +18074,31,12.5,25,0.0 +18074,30,25.89,32,0.0 +18074,27,43.9,4,0.0 +18074,34,14,3,0.0 +18074,20,81,34,0.0 +18074,37,26,21,0.0 +18074,61,28.5,29,0.0 +18074,74,10,43,0.0 +18074,59,55,26,0.0 +18074,10,31,21,0.0 +18074,7,30,45,0.0 +18074,60,34,31,0.0 +18074,76,18,37,0.0 +18074,51,53,12,0.0 +18074,42,14,5,0.0 +18074,6,25,48,0.0 +18074,69,36,25,0.0 +18074,23,9,7,0.0 +18074,52,7,25,0.0 +18074,46,12,18,0.0 +18074,14,23.25,27,0.0 +18074,26,31.23,19,0.0 +18074,56,38,27,0.0 +18074,44,19.45,34,0.0 +18074,50,16.25,21,0.0 +18074,65,21.05,24,0.0 +18074,19,9.2,15,0.0 +18074,64,33.25,45,0.0 +18075,31,12.5,7,0.0 +18075,37,26,11,0.0 +18075,54,7.45,47,0.0 +18075,36,19,9,0.0 +18075,35,18,27,0.0 +18075,52,7,29,0.0 +18075,7,30,44,0.0 +18075,26,31.23,14,0.0 +18075,16,17.45,49,0.0 +18075,30,25.89,12,0.0 +18075,13,6,43,0.0 +18075,14,23.25,24,0.0 +18075,58,13.25,12,0.0 +18075,46,12,12,0.0 +18075,40,18.4,8,0.0 +18075,38,263.5,1,0.0 +18075,44,19.45,8,0.0 +18075,73,15,40,0.0 +18075,65,21.05,44,0.0 +18075,51,53,42,0.0 +18075,75,7.75,38,0.0 +18075,43,46,26,0.0 +18075,63,43.9,6,0.0 +18075,12,38,10,0.0 +18075,76,18,26,0.0 +18075,33,2.5,31,0.0 +18075,6,25,41,0.0 +18075,47,9.5,36,0.0 +18075,59,55,37,0.0 +18075,18,62.5,28,0.0 +18076,47,9.5,11,0.0 +18076,36,19,10,0.0 +18076,52,7,45,0.0 +18076,35,18,26,0.0 +18076,8,40,29,0.0 +18076,16,17.45,6,0.0 +18076,29,123.79,13,0.0 +18076,67,14,18,0.0 +18076,25,14,44,0.0 +18076,3,10,3,0.0 +18076,27,43.9,41,0.0 +18076,21,10,25,0.0 +18076,53,32.8,13,0.0 +18076,55,24,45,0.0 +18076,65,21.05,49,0.0 +18076,9,97,36,0.0 +18076,51,53,42,0.0 +18076,19,9.2,47,0.0 +18076,33,2.5,24,0.0 +18076,59,55,32,0.0 +18076,7,30,30,0.0 +18076,72,34.8,4,0.0 +18076,50,16.25,5,0.0 +18076,60,34,16,0.0 +18076,4,22,4,0.0 +18076,30,25.89,48,0.0 +18076,41,9.65,42,0.0 +18076,31,12.5,22,0.0 +18076,49,20,10,0.0 +18076,34,14,45,0.0 +18076,48,12.75,46,0.0 +18076,68,12.5,26,0.0 +18076,22,21,11,0.0 +18076,5,21.35,14,0.0 +18076,38,263.5,8,0.0 +18076,2,19,36,0.0 +18076,1,18,35,0.0 +18076,43,46,28,0.0 +18076,75,7.75,30,0.0 +18076,77,13,27,0.0 +18076,58,13.25,4,0.0 +18076,73,15,9,0.0 +18076,17,39,18,0.0 +18076,15,15.5,24,0.0 +18076,74,10,46,0.0 +18076,23,9,28,0.0 +18076,63,43.9,33,0.0 +18076,66,17,38,0.0 +18076,26,31.23,39,0.0 +18076,12,38,10,0.0 +18076,71,21.5,43,0.0 +18076,39,18,41,0.0 +18076,28,45.6,16,0.0 +18076,13,6,21,0.0 +18077,13,6,45,0.0 +18077,5,21.35,50,0.0 +18077,18,62.5,16,0.0 +18077,53,32.8,35,0.0 +18077,64,33.25,5,0.0 +18077,37,26,47,0.0 +18077,74,10,23,0.0 +18077,72,34.8,42,0.0 +18077,16,17.45,24,0.0 +18077,69,36,40,0.0 +18077,2,19,39,0.0 +18077,59,55,43,0.0 +18077,51,53,45,0.0 +18078,66,17,12,0.0 +18078,17,39,7,0.0 +18078,42,14,47,0.0 +18078,15,15.5,25,0.0 +18078,25,14,38,0.0 +18078,30,25.89,45,0.0 +18078,8,40,34,0.0 +18078,48,12.75,49,0.0 +18078,55,24,25,0.0 +18078,73,15,37,0.0 +18078,51,53,30,0.0 +18078,59,55,12,0.0 +18078,32,32,31,0.0 +18078,3,10,20,0.0 +18078,29,123.79,47,0.0 +18079,27,43.9,35,0.0 +18079,6,25,28,0.0 +18079,25,14,2,0.0 +18079,75,7.75,38,0.0 +18079,72,34.8,6,0.0 +18079,14,23.25,35,0.0 +18079,3,10,48,0.0 +18079,50,16.25,18,0.0 +18079,26,31.23,5,0.0 +18079,11,21,44,0.0 +18079,53,32.8,28,0.0 +18079,23,9,23,0.0 +18079,17,39,48,0.0 +18079,15,15.5,48,0.0 +18079,59,55,7,0.0 +18079,28,45.6,50,0.0 +18079,21,10,50,0.0 +18079,58,13.25,37,0.0 +18079,29,123.79,14,0.0 +18079,24,4.5,46,0.0 +18079,51,53,25,0.0 +18079,69,36,25,0.0 +18079,52,7,35,0.0 +18079,1,18,34,0.0 +18079,55,24,27,0.0 +18079,48,12.75,41,0.0 +18079,56,38,29,0.0 +18079,4,22,28,0.0 +18079,12,38,37,0.0 +18079,68,12.5,4,0.0 +18079,2,19,4,0.0 +18079,71,21.5,36,0.0 +18079,76,18,5,0.0 +18079,43,46,30,0.0 +18079,32,32,4,0.0 +18079,41,9.65,13,0.0 +18079,49,20,49,0.0 +18079,47,9.5,43,0.0 +18079,64,33.25,24,0.0 +18079,8,40,19,0.0 +18079,13,6,32,0.0 +18079,40,18.4,45,0.0 +18079,54,7.45,6,0.0 +18079,77,13,13,0.0 +18079,65,21.05,36,0.0 +18079,39,18,42,0.0 +18079,22,21,50,0.0 +18079,36,19,22,0.0 +18079,61,28.5,3,0.0 +18079,70,15,50,0.0 +18079,44,19.45,25,0.0 +18079,35,18,18,0.0 +18079,16,17.45,19,0.0 +18079,5,21.35,39,0.0 +18079,63,43.9,7,0.0 +18079,45,9.5,35,0.0 +18080,72,34.8,8,0.0 +18080,33,2.5,27,0.0 +18080,28,45.6,42,0.0 +18080,10,31,25,0.0 +18080,17,39,26,0.0 +18080,65,21.05,37,0.0 +18080,37,26,22,0.0 +18080,11,21,36,0.0 +18080,18,62.5,45,0.0 +18080,43,46,23,0.0 +18080,76,18,13,0.0 +18080,41,9.65,9,0.0 +18080,50,16.25,19,0.0 +18080,35,18,47,0.0 +18080,59,55,20,0.0 +18080,8,40,28,0.0 +18080,73,15,9,0.0 +18080,56,38,42,0.0 +18080,32,32,21,0.0 +18080,40,18.4,39,0.0 +18080,34,14,5,0.0 +18080,61,28.5,13,0.0 +18080,20,81,25,0.0 +18080,52,7,8,0.0 +18080,57,19.5,49,0.0 +18080,62,49.3,41,0.0 +18080,31,12.5,5,0.0 +18080,48,12.75,6,0.0 +18080,22,21,31,0.0 +18080,3,10,43,0.0 +18080,5,21.35,40,0.0 +18080,51,53,32,0.0 +18080,45,9.5,40,0.0 +18080,15,15.5,38,0.0 +18080,74,10,39,0.0 +18080,1,18,14,0.0 +18080,60,34,9,0.0 +18080,30,25.89,10,0.0 +18080,42,14,10,0.0 +18080,69,36,8,0.0 +18080,38,263.5,6,0.0 +18080,13,6,32,0.0 +18080,19,9.2,3,0.0 +18080,66,17,50,0.0 +18080,36,19,6,0.0 +18080,4,22,39,0.0 +18080,68,12.5,5,0.0 +18080,44,19.45,40,0.0 +18080,75,7.75,9,0.0 +18080,16,17.45,28,0.0 +18081,7,30,19,0.0 +18081,77,13,8,0.0 +18081,22,21,17,0.0 +18081,34,14,12,0.0 +18081,65,21.05,39,0.0 +18081,55,24,43,0.0 +18081,8,40,4,0.0 +18081,74,10,44,0.0 +18081,4,22,32,0.0 +18081,12,38,19,0.0 +18081,13,6,21,0.0 +18081,38,263.5,17,0.0 +18081,28,45.6,4,0.0 +18081,62,49.3,9,0.0 +18081,35,18,6,0.0 +18081,24,4.5,25,0.0 +18081,61,28.5,17,0.0 +18081,21,10,33,0.0 +18081,19,9.2,6,0.0 +18081,60,34,50,0.0 +18081,68,12.5,29,0.0 +18081,31,12.5,2,0.0 +18081,54,7.45,20,0.0 +18081,64,33.25,35,0.0 +18081,56,38,29,0.0 +18081,44,19.45,17,0.0 +18081,72,34.8,12,0.0 +18081,58,13.25,37,0.0 +18081,6,25,26,0.0 +18081,27,43.9,15,0.0 +18081,45,9.5,38,0.0 +18081,59,55,46,0.0 +18081,71,21.5,6,0.0 +18081,67,14,14,0.0 +18081,18,62.5,50,0.0 +18081,36,19,2,0.0 +18081,14,23.25,40,0.0 +18081,32,32,37,0.0 +18081,20,81,1,0.0 +18081,70,15,33,0.0 +18081,46,12,12,0.0 +18081,53,32.8,34,0.0 +18081,40,18.4,15,0.0 +18081,33,2.5,7,0.0 +18081,75,7.75,16,0.0 +18081,66,17,28,0.0 +18081,11,21,35,0.0 +18081,49,20,3,0.0 +18081,52,7,10,0.0 +18081,76,18,2,0.0 +18081,16,17.45,27,0.0 +18081,15,15.5,31,0.0 +18081,51,53,1,0.0 +18081,17,39,28,0.0 +18081,2,19,29,0.0 +18081,25,14,49,0.0 +18081,73,15,42,0.0 +18081,37,26,21,0.0 +18081,1,18,11,0.0 +18081,42,14,4,0.0 +18081,23,9,2,0.0 +18081,30,25.89,21,0.0 +18081,9,97,2,0.0 +18081,29,123.79,45,0.0 +18081,10,31,12,0.0 +18081,47,9.5,9,0.0 +18081,57,19.5,43,0.0 +18081,41,9.65,12,0.0 +18082,51,53,46,0.0 +18082,26,31.23,46,0.0 +18082,11,21,34,0.0 +18082,59,55,33,0.0 +18082,68,12.5,12,0.0 +18082,7,30,30,0.0 +18082,25,14,21,0.0 +18082,61,28.5,5,0.0 +18082,41,9.65,35,0.0 +18082,37,26,33,0.0 +18082,58,13.25,21,0.0 +18082,45,9.5,18,0.0 +18082,18,62.5,11,0.0 +18082,71,21.5,21,0.0 +18082,54,7.45,39,0.0 +18082,36,19,42,0.0 +18082,40,18.4,7,0.0 +18082,48,12.75,4,0.0 +18082,69,36,4,0.0 +18082,53,32.8,9,0.0 +18082,1,18,28,0.0 +18082,4,22,39,0.0 +18082,49,20,40,0.0 +18082,73,15,42,0.0 +18082,74,10,32,0.0 +18082,6,25,17,0.0 +18083,6,25,40,0.0 +18083,1,18,2,0.0 +18083,58,13.25,32,0.0 +18083,73,15,1,0.0 +18083,2,19,6,0.0 +18083,19,9.2,25,0.0 +18083,4,22,28,0.0 +18083,65,21.05,19,0.0 +18083,53,32.8,49,0.0 +18083,50,16.25,2,0.0 +18083,47,9.5,7,0.0 +18083,41,9.65,50,0.0 +18083,46,12,6,0.0 +18083,22,21,38,0.0 +18083,5,21.35,12,0.0 +18083,36,19,9,0.0 +18083,13,6,29,0.0 +18083,29,123.79,25,0.0 +18083,49,20,42,0.0 +18083,12,38,45,0.0 +18083,51,53,26,0.0 +18083,11,21,2,0.0 +18083,28,45.6,49,0.0 +18083,67,14,16,0.0 +18083,72,34.8,1,0.0 +18083,8,40,9,0.0 +18083,69,36,37,0.0 +18083,74,10,44,0.0 +18083,44,19.45,33,0.0 +18083,38,263.5,32,0.0 +18083,18,62.5,35,0.0 +18083,16,17.45,12,0.0 +18083,27,43.9,48,0.0 +18083,62,49.3,15,0.0 +18083,7,30,35,0.0 +18083,15,15.5,35,0.0 +18083,39,18,23,0.0 +18083,64,33.25,35,0.0 +18083,26,31.23,39,0.0 +18083,21,10,46,0.0 +18083,24,4.5,34,0.0 +18083,48,12.75,39,0.0 +18083,43,46,27,0.0 +18083,31,12.5,21,0.0 +18083,10,31,47,0.0 +18083,55,24,15,0.0 +18083,71,21.5,25,0.0 +18083,57,19.5,28,0.0 +18083,30,25.89,27,0.0 +18083,63,43.9,36,0.0 +18083,75,7.75,46,0.0 +18083,9,97,10,0.0 +18083,20,81,49,0.0 +18083,60,34,25,0.0 +18083,25,14,13,0.0 +18083,52,7,25,0.0 +18083,33,2.5,30,0.0 +18083,3,10,48,0.0 +18083,68,12.5,49,0.0 +18083,61,28.5,7,0.0 +18083,32,32,8,0.0 +18083,45,9.5,28,0.0 +18083,56,38,47,0.0 +18084,59,55,12,0.0 +18084,56,38,41,0.0 +18084,34,14,34,0.0 +18084,9,97,28,0.0 +18084,6,25,37,0.0 +18084,39,18,14,0.0 +18084,10,31,47,0.0 +18084,65,21.05,13,0.0 +18084,62,49.3,45,0.0 +18084,27,43.9,49,0.0 +18084,29,123.79,36,0.0 +18084,18,62.5,47,0.0 +18084,25,14,32,0.0 +18084,45,9.5,29,0.0 +18084,73,15,10,0.0 +18084,70,15,10,0.0 +18084,2,19,4,0.0 +18084,75,7.75,36,0.0 +18084,64,33.25,15,0.0 +18084,36,19,26,0.0 +18084,43,46,17,0.0 +18084,8,40,41,0.0 +18084,48,12.75,18,0.0 +18084,7,30,24,0.0 +18084,74,10,32,0.0 +18084,22,21,42,0.0 +18084,54,7.45,9,0.0 +18084,67,14,9,0.0 +18084,30,25.89,48,0.0 +18084,13,6,43,0.0 +18084,24,4.5,2,0.0 +18084,14,23.25,39,0.0 +18084,76,18,25,0.0 +18084,57,19.5,4,0.0 +18084,23,9,26,0.0 +18084,44,19.45,16,0.0 +18084,31,12.5,4,0.0 +18084,21,10,43,0.0 +18084,4,22,35,0.0 +18085,14,23.25,24,0.0 +18085,30,25.89,13,0.0 +18085,53,32.8,31,0.0 +18085,33,2.5,34,0.0 +18085,67,14,17,0.0 +18085,55,24,45,0.0 +18085,49,20,36,0.0 +18085,27,43.9,10,0.0 +18085,34,14,15,0.0 +18085,60,34,18,0.0 +18085,6,25,3,0.0 +18085,52,7,27,0.0 +18085,44,19.45,13,0.0 +18085,36,19,46,0.0 +18085,24,4.5,3,0.0 +18085,13,6,42,0.0 +18085,42,14,15,0.0 +18085,77,13,10,0.0 +18085,65,21.05,1,0.0 +18085,26,31.23,5,0.0 +18085,47,9.5,16,0.0 +18085,32,32,2,0.0 +18085,68,12.5,16,0.0 +18085,29,123.79,4,0.0 +18085,57,19.5,25,0.0 +18085,7,30,14,0.0 +18085,56,38,8,0.0 +18085,4,22,32,0.0 +18085,8,40,34,0.0 +18085,25,14,22,0.0 +18085,70,15,45,0.0 +18085,45,9.5,3,0.0 +18085,40,18.4,30,0.0 +18085,76,18,23,0.0 +18085,64,33.25,35,0.0 +18085,23,9,20,0.0 +18085,74,10,42,0.0 +18085,63,43.9,48,0.0 +18085,5,21.35,14,0.0 +18085,59,55,4,0.0 +18085,15,15.5,15,0.0 +18085,3,10,26,0.0 +18085,1,18,40,0.0 +18085,75,7.75,12,0.0 +18085,16,17.45,14,0.0 +18085,2,19,36,0.0 +18085,35,18,6,0.0 +18085,9,97,4,0.0 +18085,18,62.5,32,0.0 +18085,46,12,26,0.0 +18085,71,21.5,35,0.0 +18085,41,9.65,5,0.0 +18085,21,10,32,0.0 +18085,48,12.75,2,0.0 +18085,11,21,11,0.0 +18085,51,53,48,0.0 +18085,10,31,18,0.0 +18085,37,26,9,0.0 +18085,62,49.3,39,0.0 +18085,28,45.6,31,0.0 +18085,69,36,29,0.0 +18085,22,21,23,0.0 +18085,38,263.5,17,0.0 +18085,58,13.25,17,0.0 +18085,50,16.25,17,0.0 +18085,73,15,48,0.0 +18085,17,39,25,0.0 +18085,72,34.8,13,0.0 +18085,19,9.2,24,0.0 +18085,54,7.45,50,0.0 +18085,31,12.5,17,0.0 +18085,39,18,10,0.0 +18085,66,17,3,0.0 +18085,20,81,28,0.0 +18085,12,38,9,0.0 +18085,43,46,22,0.0 +18085,61,28.5,31,0.0 +18086,42,14,19,0.0 +18086,68,12.5,32,0.0 +18086,63,43.9,30,0.0 +18086,72,34.8,24,0.0 +18086,12,38,45,0.0 +18086,23,9,6,0.0 +18086,35,18,14,0.0 +18086,71,21.5,41,0.0 +18086,17,39,18,0.0 +18086,58,13.25,18,0.0 +18086,61,28.5,35,0.0 +18086,29,123.79,37,0.0 +18086,69,36,10,0.0 +18086,21,10,48,0.0 +18086,51,53,24,0.0 +18086,65,21.05,1,0.0 +18086,5,21.35,19,0.0 +18087,49,20,43,0.0 +18087,72,34.8,50,0.0 +18087,33,2.5,45,0.0 +18087,11,21,5,0.0 +18087,25,14,48,0.0 +18087,12,38,26,0.0 +18087,52,7,48,0.0 +18087,42,14,49,0.0 +18087,48,12.75,11,0.0 +18087,56,38,31,0.0 +18087,24,4.5,32,0.0 +18087,27,43.9,25,0.0 +18087,77,13,34,0.0 +18087,17,39,18,0.0 +18087,53,32.8,43,0.0 +18087,32,32,46,0.0 +18087,51,53,5,0.0 +18087,62,49.3,29,0.0 +18087,3,10,29,0.0 +18087,19,9.2,10,0.0 +18087,74,10,19,0.0 +18087,9,97,6,0.0 +18087,8,40,9,0.0 +18087,44,19.45,28,0.0 +18087,1,18,44,0.0 +18087,38,263.5,44,0.0 +18087,5,21.35,34,0.0 +18087,66,17,49,0.0 +18087,65,21.05,40,0.0 +18087,10,31,34,0.0 +18087,36,19,48,0.0 +18087,7,30,12,0.0 +18087,21,10,16,0.0 +18087,58,13.25,21,0.0 +18087,45,9.5,6,0.0 +18087,16,17.45,49,0.0 +18087,15,15.5,31,0.0 +18087,30,25.89,42,0.0 +18087,57,19.5,18,0.0 +18087,60,34,23,0.0 +18087,40,18.4,42,0.0 +18087,13,6,28,0.0 +18087,23,9,35,0.0 +18087,34,14,50,0.0 +18087,76,18,36,0.0 +18087,59,55,48,0.0 +18087,75,7.75,12,0.0 +18087,2,19,1,0.0 +18087,18,62.5,30,0.0 +18087,35,18,4,0.0 +18087,20,81,47,0.0 +18087,43,46,17,0.0 +18087,29,123.79,40,0.0 +18087,50,16.25,29,0.0 +18087,54,7.45,14,0.0 +18087,69,36,25,0.0 +18087,26,31.23,44,0.0 +18087,6,25,49,0.0 +18087,67,14,16,0.0 +18088,22,21,4,0.0 +18088,44,19.45,41,0.0 +18088,48,12.75,23,0.0 +18088,25,14,3,0.0 +18088,67,14,33,0.0 +18088,5,21.35,20,0.0 +18088,9,97,35,0.0 +18088,18,62.5,15,0.0 +18088,64,33.25,41,0.0 +18088,63,43.9,20,0.0 +18088,3,10,18,0.0 +18088,34,14,35,0.0 +18088,73,15,19,0.0 +18088,69,36,39,0.0 +18088,36,19,6,0.0 +18088,59,55,31,0.0 +18088,35,18,17,0.0 +18088,31,12.5,45,0.0 +18088,29,123.79,40,0.0 +18088,42,14,43,0.0 +18088,30,25.89,26,0.0 +18088,76,18,39,0.0 +18088,75,7.75,4,0.0 +18088,6,25,1,0.0 +18088,52,7,27,0.0 +18088,53,32.8,44,0.0 +18088,50,16.25,48,0.0 +18088,66,17,24,0.0 +18088,58,13.25,2,0.0 +18088,60,34,39,0.0 +18088,28,45.6,49,0.0 +18088,57,19.5,6,0.0 +18088,14,23.25,45,0.0 +18088,16,17.45,27,0.0 +18088,72,34.8,42,0.0 +18088,13,6,33,0.0 +18088,27,43.9,49,0.0 +18088,41,9.65,43,0.0 +18089,64,33.25,5,0.0 +18090,62,49.3,12,0.0 +18090,22,21,37,0.0 +18090,19,9.2,38,0.0 +18090,14,23.25,46,0.0 +18090,36,19,15,0.0 +18090,3,10,22,0.0 +18090,46,12,45,0.0 +18091,56,38,15,0.0 +18091,35,18,24,0.0 +18091,40,18.4,11,0.0 +18091,74,10,37,0.0 +18091,51,53,16,0.0 +18091,37,26,48,0.0 +18091,67,14,32,0.0 +18091,3,10,2,0.0 +18091,24,4.5,7,0.0 +18091,20,81,22,0.0 +18091,48,12.75,41,0.0 +18091,31,12.5,12,0.0 +18091,12,38,23,0.0 +18091,17,39,38,0.0 +18091,52,7,40,0.0 +18091,66,17,46,0.0 +18091,33,2.5,18,0.0 +18091,14,23.25,15,0.0 +18091,38,263.5,39,0.0 +18091,54,7.45,47,0.0 +18091,6,25,21,0.0 +18091,27,43.9,33,0.0 +18091,2,19,37,0.0 +18091,1,18,48,0.0 +18091,30,25.89,1,0.0 +18091,16,17.45,24,0.0 +18091,29,123.79,8,0.0 +18091,18,62.5,11,0.0 +18091,68,12.5,38,0.0 +18091,53,32.8,43,0.0 +18091,28,45.6,1,0.0 +18091,34,14,11,0.0 +18091,26,31.23,37,0.0 +18091,11,21,14,0.0 +18091,76,18,10,0.0 +18091,45,9.5,50,0.0 +18091,75,7.75,44,0.0 +18091,44,19.45,33,0.0 +18091,4,22,50,0.0 +18092,71,21.5,31,0.0 +18092,20,81,1,0.0 +18092,56,38,16,0.0 +18092,61,28.5,2,0.0 +18092,32,32,18,0.0 +18092,52,7,24,0.0 +18092,50,16.25,28,0.0 +18092,44,19.45,27,0.0 +18092,41,9.65,2,0.0 +18092,27,43.9,19,0.0 +18092,69,36,24,0.0 +18092,68,12.5,39,0.0 +18092,18,62.5,44,0.0 +18092,24,4.5,18,0.0 +18092,23,9,16,0.0 +18092,40,18.4,29,0.0 +18092,28,45.6,27,0.0 +18092,10,31,20,0.0 +18092,2,19,7,0.0 +18092,26,31.23,22,0.0 +18092,31,12.5,8,0.0 +18092,15,15.5,49,0.0 +18092,7,30,15,0.0 +18092,33,2.5,13,0.0 +18092,59,55,50,0.0 +18092,57,19.5,6,0.0 +18092,66,17,44,0.0 +18092,11,21,10,0.0 +18092,74,10,5,0.0 +18092,13,6,41,0.0 +18092,17,39,20,0.0 +18092,65,21.05,12,0.0 +18092,64,33.25,28,0.0 +18092,75,7.75,49,0.0 +18092,3,10,18,0.0 +18092,38,263.5,23,0.0 +18092,8,40,41,0.0 +18092,63,43.9,12,0.0 +18092,76,18,22,0.0 +18092,39,18,8,0.0 +18092,49,20,11,0.0 +18092,58,13.25,4,0.0 +18093,70,15,4,0.0 +18093,50,16.25,44,0.0 +18093,10,31,11,0.0 +18093,27,43.9,21,0.0 +18093,25,14,20,0.0 +18093,12,38,35,0.0 +18093,23,9,43,0.0 +18093,68,12.5,32,0.0 +18093,2,19,2,0.0 +18093,65,21.05,45,0.0 +18093,38,263.5,33,0.0 +18093,47,9.5,41,0.0 +18093,22,21,2,0.0 +18093,31,12.5,12,0.0 +18093,61,28.5,19,0.0 +18093,67,14,34,0.0 +18093,75,7.75,19,0.0 +18093,64,33.25,16,0.0 +18093,71,21.5,26,0.0 +18093,4,22,15,0.0 +18093,55,24,27,0.0 +18093,32,32,8,0.0 +18093,52,7,31,0.0 +18093,53,32.8,42,0.0 +18093,42,14,29,0.0 +18093,63,43.9,3,0.0 +18093,58,13.25,4,0.0 +18093,6,25,40,0.0 +18093,56,38,50,0.0 +18093,49,20,3,0.0 +18093,7,30,30,0.0 +18093,43,46,35,0.0 +18093,34,14,6,0.0 +18093,37,26,9,0.0 +18093,16,17.45,44,0.0 +18093,24,4.5,13,0.0 +18093,73,15,40,0.0 +18093,45,9.5,22,0.0 +18093,39,18,19,0.0 +18093,3,10,6,0.0 +18093,77,13,21,0.0 +18093,41,9.65,35,0.0 +18093,57,19.5,28,0.0 +18093,69,36,36,0.0 +18093,17,39,32,0.0 +18093,28,45.6,40,0.0 +18093,51,53,37,0.0 +18093,44,19.45,39,0.0 +18093,5,21.35,17,0.0 +18093,13,6,48,0.0 +18094,58,13.25,3,0.0 +18094,63,43.9,17,0.0 +18094,68,12.5,17,0.0 +18094,55,24,4,0.0 +18094,64,33.25,30,0.0 +18094,2,19,7,0.0 +18094,46,12,38,0.0 +18095,49,20,7,0.0 +18095,43,46,1,0.0 +18095,57,19.5,19,0.0 +18095,38,263.5,13,0.0 +18095,63,43.9,41,0.0 +18095,21,10,33,0.0 +18095,52,7,28,0.0 +18095,3,10,14,0.0 +18095,48,12.75,39,0.0 +18095,73,15,6,0.0 +18095,62,49.3,18,0.0 +18095,51,53,19,0.0 +18095,2,19,39,0.0 +18095,50,16.25,5,0.0 +18095,1,18,28,0.0 +18095,68,12.5,40,0.0 +18095,66,17,36,0.0 +18095,20,81,48,0.0 +18095,9,97,29,0.0 +18095,15,15.5,11,0.0 +18095,30,25.89,30,0.0 +18095,12,38,50,0.0 +18095,72,34.8,11,0.0 +18095,65,21.05,18,0.0 +18095,10,31,18,0.0 +18095,24,4.5,49,0.0 +18095,64,33.25,4,0.0 +18095,7,30,13,0.0 +18095,31,12.5,29,0.0 +18095,11,21,30,0.0 +18095,22,21,6,0.0 +18095,47,9.5,24,0.0 +18095,35,18,32,0.0 +18095,41,9.65,7,0.0 +18095,40,18.4,37,0.0 +18095,34,14,20,0.0 +18095,25,14,36,0.0 +18095,6,25,40,0.0 +18095,77,13,14,0.0 +18095,23,9,19,0.0 +18095,59,55,30,0.0 +18095,18,62.5,3,0.0 +18095,36,19,46,0.0 +18095,75,7.75,35,0.0 +18095,29,123.79,6,0.0 +18095,14,23.25,18,0.0 +18095,33,2.5,41,0.0 +18095,32,32,39,0.0 +18095,42,14,48,0.0 +18095,70,15,17,0.0 +18095,37,26,9,0.0 +18095,16,17.45,33,0.0 +18095,55,24,41,0.0 +18095,56,38,30,0.0 +18095,61,28.5,21,0.0 +18095,19,9.2,27,0.0 +18095,76,18,11,0.0 +18095,28,45.6,15,0.0 +18095,45,9.5,20,0.0 +18095,71,21.5,8,0.0 +18095,39,18,25,0.0 +18095,8,40,38,0.0 +18095,5,21.35,32,0.0 +18095,67,14,43,0.0 +18095,17,39,6,0.0 +18095,54,7.45,24,0.0 +18096,42,14,14,0.0 +18096,43,46,32,0.0 +18096,55,24,30,0.0 +18096,18,62.5,11,0.0 +18096,62,49.3,40,0.0 +18096,58,13.25,27,0.0 +18096,3,10,10,0.0 +18096,70,15,37,0.0 +18096,30,25.89,29,0.0 +18096,60,34,37,0.0 +18096,65,21.05,33,0.0 +18096,63,43.9,12,0.0 +18096,52,7,45,0.0 +18096,24,4.5,5,0.0 +18096,2,19,43,0.0 +18096,20,81,34,0.0 +18096,77,13,36,0.0 +18096,7,30,38,0.0 +18096,17,39,49,0.0 +18096,35,18,42,0.0 +18096,11,21,14,0.0 +18096,39,18,20,0.0 +18096,38,263.5,50,0.0 +18096,10,31,15,0.0 +18096,54,7.45,39,0.0 +18097,32,32,29,0.0 +18097,39,18,22,0.0 +18097,42,14,17,0.0 +18097,23,9,33,0.0 +18097,24,4.5,40,0.0 +18097,66,17,25,0.0 +18097,54,7.45,7,0.0 +18097,61,28.5,46,0.0 +18097,10,31,45,0.0 +18097,19,9.2,45,0.0 +18097,73,15,27,0.0 +18097,17,39,1,0.0 +18097,13,6,30,0.0 +18097,65,21.05,16,0.0 +18097,69,36,36,0.0 +18097,52,7,34,0.0 +18097,59,55,46,0.0 +18097,30,25.89,17,0.0 +18097,41,9.65,18,0.0 +18097,77,13,25,0.0 +18097,29,123.79,9,0.0 +18097,16,17.45,12,0.0 +18097,4,22,26,0.0 +18097,72,34.8,23,0.0 +18097,56,38,30,0.0 +18097,14,23.25,8,0.0 +18097,35,18,6,0.0 +18097,55,24,10,0.0 +18097,51,53,35,0.0 +18097,64,33.25,50,0.0 +18097,3,10,18,0.0 +18097,36,19,38,0.0 +18097,47,9.5,6,0.0 +18097,37,26,5,0.0 +18097,7,30,35,0.0 +18097,63,43.9,49,0.0 +18097,75,7.75,1,0.0 +18097,50,16.25,5,0.0 +18097,67,14,33,0.0 +18097,26,31.23,43,0.0 +18097,57,19.5,11,0.0 +18097,6,25,42,0.0 +18097,18,62.5,4,0.0 +18097,33,2.5,30,0.0 +18097,27,43.9,29,0.0 +18097,5,21.35,19,0.0 +18097,71,21.5,1,0.0 +18097,22,21,37,0.0 +18097,11,21,44,0.0 +18097,53,32.8,9,0.0 +18097,25,14,9,0.0 +18097,62,49.3,42,0.0 +18097,49,20,10,0.0 +18097,31,12.5,39,0.0 +18097,20,81,1,0.0 +18098,36,19,9,0.0 +18098,9,97,42,0.0 +18098,71,21.5,16,0.0 +18098,49,20,44,0.0 +18098,57,19.5,17,0.0 +18098,68,12.5,33,0.0 +18098,50,16.25,38,0.0 +18098,72,34.8,20,0.0 +18098,25,14,4,0.0 +18098,55,24,39,0.0 +18098,31,12.5,49,0.0 +18098,19,9.2,3,0.0 +18098,44,19.45,41,0.0 +18098,77,13,44,0.0 +18098,64,33.25,29,0.0 +18098,73,15,46,0.0 +18098,37,26,17,0.0 +18098,75,7.75,4,0.0 +18098,17,39,40,0.0 +18098,69,36,12,0.0 +18098,29,123.79,49,0.0 +18098,5,21.35,22,0.0 +18098,47,9.5,5,0.0 +18098,32,32,12,0.0 +18098,21,10,44,0.0 +18098,63,43.9,38,0.0 +18098,66,17,40,0.0 +18098,60,34,29,0.0 +18098,23,9,2,0.0 +18098,53,32.8,10,0.0 +18098,2,19,5,0.0 +18098,70,15,18,0.0 +18098,58,13.25,12,0.0 +18098,42,14,45,0.0 +18098,67,14,15,0.0 +18098,1,18,9,0.0 +18098,8,40,26,0.0 +18098,40,18.4,30,0.0 +18098,27,43.9,12,0.0 +18098,43,46,12,0.0 +18099,68,12.5,17,0.0 +18099,24,4.5,35,0.0 +18099,40,18.4,37,0.0 +18099,10,31,46,0.0 +18099,57,19.5,10,0.0 +18099,60,34,39,0.0 +18099,12,38,42,0.0 +18099,59,55,31,0.0 +18099,51,53,40,0.0 +18099,15,15.5,25,0.0 +18099,66,17,8,0.0 +18099,36,19,49,0.0 +18099,27,43.9,7,0.0 +18099,1,18,25,0.0 +18099,32,32,26,0.0 +18099,20,81,41,0.0 +18099,21,10,42,0.0 +18099,6,25,14,0.0 +18099,48,12.75,10,0.0 +18099,22,21,24,0.0 +18099,13,6,15,0.0 +18099,3,10,19,0.0 +18099,77,13,31,0.0 +18099,30,25.89,5,0.0 +18099,62,49.3,45,0.0 +18099,37,26,1,0.0 +18099,53,32.8,3,0.0 +18099,23,9,23,0.0 +18099,33,2.5,10,0.0 +18099,54,7.45,48,0.0 +18099,75,7.75,11,0.0 +18099,11,21,17,0.0 +18099,28,45.6,46,0.0 +18099,26,31.23,4,0.0 +18099,64,33.25,47,0.0 +18099,31,12.5,33,0.0 +18099,63,43.9,13,0.0 +18099,2,19,15,0.0 +18099,9,97,20,0.0 +18099,19,9.2,15,0.0 +18099,69,36,20,0.0 +18099,56,38,24,0.0 +18099,46,12,7,0.0 +18099,45,9.5,47,0.0 +18099,18,62.5,24,0.0 +18099,39,18,17,0.0 +18100,3,10,16,0.0 +18100,73,15,46,0.0 +18100,43,46,24,0.0 +18100,63,43.9,14,0.0 +18100,50,16.25,28,0.0 +18100,66,17,23,0.0 +18100,7,30,17,0.0 +18100,37,26,49,0.0 +18100,45,9.5,4,0.0 +18100,38,263.5,12,0.0 +18100,36,19,43,0.0 +18100,60,34,12,0.0 +18100,59,55,14,0.0 +18100,17,39,5,0.0 +18100,4,22,11,0.0 +18100,76,18,32,0.0 +18100,67,14,11,0.0 +18100,15,15.5,35,0.0 +18100,21,10,9,0.0 +18101,40,18.4,38,0.0 +18101,11,21,17,0.0 +18101,13,6,36,0.0 +18101,73,15,19,0.0 +18101,49,20,15,0.0 +18101,65,21.05,22,0.0 +18101,35,18,7,0.0 +18101,50,16.25,6,0.0 +18101,9,97,36,0.0 +18101,51,53,8,0.0 +18101,33,2.5,20,0.0 +18101,7,30,32,0.0 +18101,2,19,33,0.0 +18101,47,9.5,32,0.0 +18101,63,43.9,33,0.0 +18101,53,32.8,8,0.0 +18101,28,45.6,32,0.0 +18101,62,49.3,11,0.0 +18101,34,14,16,0.0 +18101,43,46,27,0.0 +18101,71,21.5,49,0.0 +18101,25,14,38,0.0 +18101,64,33.25,5,0.0 +18101,45,9.5,19,0.0 +18101,18,62.5,14,0.0 +18101,27,43.9,19,0.0 +18101,22,21,28,0.0 +18101,32,32,43,0.0 +18101,42,14,16,0.0 +18101,38,263.5,41,0.0 +18101,6,25,49,0.0 +18101,4,22,37,0.0 +18101,52,7,40,0.0 +18101,30,25.89,50,0.0 +18101,68,12.5,30,0.0 +18101,66,17,39,0.0 +18101,76,18,41,0.0 +18101,24,4.5,19,0.0 +18101,48,12.75,16,0.0 +18101,41,9.65,15,0.0 +18101,23,9,25,0.0 +18101,59,55,37,0.0 +18101,14,23.25,4,0.0 +18101,5,21.35,11,0.0 +18101,56,38,14,0.0 +18101,17,39,21,0.0 +18101,36,19,46,0.0 +18101,60,34,46,0.0 +18101,77,13,17,0.0 +18101,61,28.5,31,0.0 +18101,72,34.8,48,0.0 +18101,70,15,33,0.0 +18101,67,14,48,0.0 +18101,29,123.79,37,0.0 +18101,75,7.75,38,0.0 +18101,74,10,22,0.0 +18101,26,31.23,42,0.0 +18101,39,18,18,0.0 +18101,54,7.45,14,0.0 +18102,9,97,38,0.0 +18102,34,14,22,0.0 +18102,38,263.5,10,0.0 +18102,14,23.25,34,0.0 +18102,23,9,42,0.0 +18102,22,21,39,0.0 +18102,41,9.65,17,0.0 +18102,1,18,30,0.0 +18102,5,21.35,24,0.0 +18102,44,19.45,38,0.0 +18102,37,26,10,0.0 +18102,47,9.5,18,0.0 +18102,62,49.3,10,0.0 +18102,31,12.5,29,0.0 +18102,58,13.25,10,0.0 +18102,24,4.5,48,0.0 +18102,25,14,7,0.0 +18102,50,16.25,16,0.0 +18102,36,19,14,0.0 +18102,72,34.8,3,0.0 +18102,55,24,26,0.0 +18102,59,55,10,0.0 +18102,73,15,5,0.0 +18102,7,30,46,0.0 +18102,48,12.75,6,0.0 +18102,11,21,48,0.0 +18102,29,123.79,47,0.0 +18102,63,43.9,16,0.0 +18102,43,46,20,0.0 +18102,66,17,3,0.0 +18102,35,18,34,0.0 +18102,76,18,32,0.0 +18102,2,19,15,0.0 +18102,13,6,36,0.0 +18102,12,38,25,0.0 +18103,33,2.5,23,0.0 +18103,51,53,49,0.0 +18103,32,32,23,0.0 +18103,73,15,35,0.0 +18103,38,263.5,46,0.0 +18103,75,7.75,11,0.0 +18103,61,28.5,23,0.0 +18103,43,46,14,0.0 +18103,28,45.6,34,0.0 +18103,34,14,27,0.0 +18103,16,17.45,34,0.0 +18103,44,19.45,2,0.0 +18103,17,39,45,0.0 +18103,54,7.45,4,0.0 +18103,31,12.5,20,0.0 +18103,41,9.65,37,0.0 +18103,15,15.5,5,0.0 +18103,11,21,25,0.0 +18103,72,34.8,41,0.0 +18103,39,18,36,0.0 +18103,4,22,12,0.0 +18103,58,13.25,22,0.0 +18103,30,25.89,29,0.0 +18103,60,34,37,0.0 +18103,42,14,11,0.0 +18103,67,14,23,0.0 +18103,62,49.3,33,0.0 +18103,46,12,35,0.0 +18103,35,18,46,0.0 +18103,13,6,7,0.0 +18103,2,19,44,0.0 +18103,77,13,19,0.0 +18103,71,21.5,26,0.0 +18103,18,62.5,15,0.0 +18103,8,40,4,0.0 +18103,47,9.5,21,0.0 +18103,7,30,42,0.0 +18103,26,31.23,26,0.0 +18103,68,12.5,26,0.0 +18103,65,21.05,35,0.0 +18103,49,20,27,0.0 +18103,24,4.5,46,0.0 +18103,69,36,46,0.0 +18103,57,19.5,17,0.0 +18103,21,10,6,0.0 +18103,55,24,5,0.0 +18103,59,55,32,0.0 +18103,52,7,37,0.0 +18103,27,43.9,35,0.0 +18103,53,32.8,43,0.0 +18103,10,31,2,0.0 +18103,74,10,30,0.0 +18103,48,12.75,24,0.0 +18103,20,81,5,0.0 +18103,50,16.25,44,0.0 +18103,5,21.35,9,0.0 +18103,3,10,18,0.0 +18103,45,9.5,22,0.0 +18103,56,38,39,0.0 +18103,19,9.2,48,0.0 +18103,25,14,3,0.0 +18103,64,33.25,47,0.0 +18103,6,25,5,0.0 +18104,63,43.9,33,0.0 +18104,28,45.6,49,0.0 +18104,70,15,43,0.0 +18104,20,81,1,0.0 +18104,30,25.89,20,0.0 +18104,58,13.25,38,0.0 +18104,41,9.65,16,0.0 +18104,10,31,7,0.0 +18104,60,34,41,0.0 +18104,9,97,23,0.0 +18104,11,21,17,0.0 +18104,18,62.5,38,0.0 +18104,23,9,23,0.0 +18104,24,4.5,40,0.0 +18104,57,19.5,28,0.0 +18104,36,19,19,0.0 +18104,46,12,27,0.0 +18104,25,14,2,0.0 +18104,27,43.9,35,0.0 +18104,33,2.5,18,0.0 +18104,26,31.23,37,0.0 +18104,74,10,48,0.0 +18105,59,55,28,0.0 +18105,20,81,34,0.0 +18105,23,9,13,0.0 +18105,54,7.45,24,0.0 +18105,15,15.5,15,0.0 +18105,38,263.5,37,0.0 +18105,8,40,20,0.0 +18105,46,12,33,0.0 +18105,19,9.2,30,0.0 +18105,44,19.45,35,0.0 +18105,14,23.25,27,0.0 +18105,67,14,49,0.0 +18105,28,45.6,25,0.0 +18105,77,13,28,0.0 +18105,5,21.35,29,0.0 +18105,72,34.8,25,0.0 +18105,36,19,16,0.0 +18105,13,6,23,0.0 +18105,39,18,18,0.0 +18105,27,43.9,7,0.0 +18105,35,18,19,0.0 +18105,16,17.45,15,0.0 +18105,66,17,45,0.0 +18105,64,33.25,6,0.0 +18105,60,34,3,0.0 +18105,68,12.5,10,0.0 +18105,21,10,1,0.0 +18105,22,21,13,0.0 +18105,26,31.23,40,0.0 +18105,47,9.5,50,0.0 +18105,63,43.9,47,0.0 +18105,17,39,17,0.0 +18105,62,49.3,41,0.0 +18105,71,21.5,47,0.0 +18106,18,62.5,9,0.0 +18106,44,19.45,34,0.0 +18106,58,13.25,50,0.0 +18106,46,12,20,0.0 +18106,35,18,3,0.0 +18106,54,7.45,43,0.0 +18106,34,14,32,0.0 +18106,9,97,20,0.0 +18106,32,32,4,0.0 +18106,70,15,29,0.0 +18106,47,9.5,46,0.0 +18106,26,31.23,28,0.0 +18106,56,38,46,0.0 +18106,11,21,39,0.0 +18106,57,19.5,12,0.0 +18106,74,10,22,0.0 +18106,28,45.6,16,0.0 +18106,77,13,3,0.0 +18106,19,9.2,10,0.0 +18106,24,4.5,22,0.0 +18106,55,24,5,0.0 +18106,68,12.5,1,0.0 +18106,4,22,36,0.0 +18106,67,14,2,0.0 +18106,12,38,39,0.0 +18106,8,40,35,0.0 +18106,33,2.5,25,0.0 +18106,17,39,18,0.0 +18107,49,20,30,0.0 +18107,51,53,22,0.0 +18107,43,46,28,0.0 +18107,16,17.45,42,0.0 +18107,20,81,18,0.0 +18107,36,19,2,0.0 +18107,56,38,32,0.0 +18107,46,12,9,0.0 +18107,42,14,29,0.0 +18107,3,10,22,0.0 +18107,67,14,16,0.0 +18107,73,15,21,0.0 +18107,44,19.45,43,0.0 +18107,77,13,2,0.0 +18107,71,21.5,47,0.0 +18107,7,30,7,0.0 +18107,25,14,28,0.0 +18107,5,21.35,42,0.0 +18107,64,33.25,34,0.0 +18107,9,97,3,0.0 +18107,14,23.25,38,0.0 +18107,69,36,30,0.0 +18107,50,16.25,37,0.0 +18107,4,22,20,0.0 +18107,48,12.75,40,0.0 +18107,1,18,36,0.0 +18107,26,31.23,37,0.0 +18107,55,24,6,0.0 +18107,13,6,32,0.0 +18107,10,31,45,0.0 +18107,62,49.3,40,0.0 +18107,59,55,6,0.0 +18107,32,32,3,0.0 +18107,37,26,14,0.0 +18107,24,4.5,34,0.0 +18107,61,28.5,13,0.0 +18107,18,62.5,50,0.0 +18107,40,18.4,4,0.0 +18107,30,25.89,26,0.0 +18107,65,21.05,49,0.0 +18107,6,25,19,0.0 +18108,37,26,31,0.0 +18108,71,21.5,27,0.0 +18108,1,18,36,0.0 +18108,55,24,22,0.0 +18108,65,21.05,29,0.0 +18108,34,14,33,0.0 +18108,76,18,20,0.0 +18108,18,62.5,8,0.0 +18108,62,49.3,21,0.0 +18108,27,43.9,30,0.0 +18108,35,18,43,0.0 +18108,12,38,16,0.0 +18108,9,97,15,0.0 +18108,77,13,50,0.0 +18108,46,12,14,0.0 +18108,67,14,49,0.0 +18108,59,55,36,0.0 +18108,72,34.8,35,0.0 +18108,39,18,24,0.0 +18108,6,25,35,0.0 +18108,14,23.25,22,0.0 +18108,49,20,34,0.0 +18108,61,28.5,33,0.0 +18108,69,36,34,0.0 +18108,52,7,8,0.0 +18108,13,6,35,0.0 +18108,50,16.25,2,0.0 +18108,3,10,15,0.0 +18108,28,45.6,37,0.0 +18108,36,19,15,0.0 +18108,42,14,41,0.0 +18108,38,263.5,19,0.0 +18108,15,15.5,37,0.0 +18108,32,32,19,0.0 +18108,24,4.5,9,0.0 +18108,10,31,18,0.0 +18108,60,34,47,0.0 +18108,20,81,44,0.0 +18108,30,25.89,12,0.0 +18108,22,21,36,0.0 +18108,31,12.5,42,0.0 +18108,74,10,8,0.0 +18108,2,19,35,0.0 +18108,19,9.2,23,0.0 +18108,23,9,7,0.0 +18108,21,10,25,0.0 +18108,48,12.75,36,0.0 +18108,47,9.5,37,0.0 +18108,68,12.5,25,0.0 +18108,29,123.79,11,0.0 +18108,5,21.35,26,0.0 +18108,40,18.4,37,0.0 +18108,51,53,8,0.0 +18108,53,32.8,36,0.0 +18108,7,30,30,0.0 +18108,8,40,18,0.0 +18108,41,9.65,42,0.0 +18108,43,46,35,0.0 +18108,25,14,5,0.0 +18108,57,19.5,34,0.0 +18108,75,7.75,30,0.0 +18108,56,38,20,0.0 +18108,64,33.25,37,0.0 +18108,4,22,47,0.0 +18108,44,19.45,22,0.0 +18108,11,21,42,0.0 +18109,4,22,6,0.0 +18109,38,263.5,14,0.0 +18109,68,12.5,9,0.0 +18109,18,62.5,33,0.0 +18109,32,32,24,0.0 +18109,9,97,33,0.0 +18109,8,40,34,0.0 +18109,72,34.8,27,0.0 +18109,45,9.5,5,0.0 +18109,77,13,17,0.0 +18109,58,13.25,20,0.0 +18109,50,16.25,40,0.0 +18109,60,34,14,0.0 +18109,66,17,3,0.0 +18109,62,49.3,38,0.0 +18109,14,23.25,40,0.0 +18109,46,12,43,0.0 +18109,42,14,26,0.0 +18109,69,36,1,0.0 +18109,40,18.4,1,0.0 +18109,24,4.5,29,0.0 +18109,29,123.79,23,0.0 +18109,71,21.5,36,0.0 +18109,76,18,1,0.0 +18109,47,9.5,30,0.0 +18109,34,14,14,0.0 +18109,54,7.45,33,0.0 +18109,20,81,2,0.0 +18109,33,2.5,16,0.0 +18109,74,10,17,0.0 +18109,27,43.9,41,0.0 +18109,63,43.9,5,0.0 +18109,3,10,1,0.0 +18109,52,7,15,0.0 +18109,39,18,14,0.0 +18109,65,21.05,15,0.0 +18109,36,19,42,0.0 +18109,16,17.45,35,0.0 +18110,73,15,15,0.0 +18110,68,12.5,17,0.0 +18110,37,26,44,0.0 +18110,56,38,45,0.0 +18110,65,21.05,13,0.0 +18110,52,7,22,0.0 +18110,46,12,28,0.0 +18110,44,19.45,42,0.0 +18110,20,81,36,0.0 +18110,70,15,2,0.0 +18110,13,6,50,0.0 +18110,23,9,11,0.0 +18110,9,97,39,0.0 +18110,47,9.5,12,0.0 +18110,58,13.25,20,0.0 +18110,63,43.9,49,0.0 +18110,29,123.79,7,0.0 +18110,4,22,14,0.0 +18110,51,53,9,0.0 +18110,72,34.8,16,0.0 +18110,27,43.9,34,0.0 +18110,75,7.75,4,0.0 +18110,8,40,21,0.0 +18110,57,19.5,38,0.0 +18110,42,14,43,0.0 +18110,19,9.2,29,0.0 +18110,1,18,21,0.0 +18110,34,14,21,0.0 +18110,12,38,48,0.0 +18110,50,16.25,33,0.0 +18110,22,21,30,0.0 +18110,66,17,42,0.0 +18110,54,7.45,25,0.0 +18110,67,14,25,0.0 +18110,69,36,3,0.0 +18110,71,21.5,30,0.0 +18110,32,32,33,0.0 +18110,28,45.6,45,0.0 +18110,14,23.25,6,0.0 +18110,16,17.45,6,0.0 +18110,17,39,26,0.0 +18110,60,34,9,0.0 +18110,74,10,20,0.0 +18110,33,2.5,15,0.0 +18110,48,12.75,11,0.0 +18110,39,18,2,0.0 +18110,36,19,45,0.0 +18110,2,19,22,0.0 +18110,49,20,8,0.0 +18110,21,10,26,0.0 +18110,40,18.4,34,0.0 +18110,64,33.25,16,0.0 +18110,77,13,3,0.0 +18110,61,28.5,29,0.0 +18111,23,9,22,0.0 +18111,57,19.5,3,0.0 +18111,46,12,1,0.0 +18111,69,36,7,0.0 +18111,3,10,10,0.0 +18111,22,21,20,0.0 +18112,35,18,32,0.0 +18112,42,14,45,0.0 +18112,68,12.5,1,0.0 +18112,13,6,21,0.0 +18112,24,4.5,30,0.0 +18112,49,20,11,0.0 +18112,67,14,2,0.0 +18112,11,21,2,0.0 +18113,70,15,26,0.0 +18113,66,17,45,0.0 +18113,9,97,19,0.0 +18113,1,18,30,0.0 +18113,77,13,36,0.0 +18113,74,10,39,0.0 +18113,27,43.9,34,0.0 +18113,54,7.45,46,0.0 +18113,48,12.75,10,0.0 +18113,24,4.5,24,0.0 +18113,8,40,44,0.0 +18113,76,18,14,0.0 +18113,38,263.5,50,0.0 +18113,44,19.45,39,0.0 +18113,39,18,32,0.0 +18113,69,36,44,0.0 +18113,26,31.23,47,0.0 +18113,30,25.89,8,0.0 +18113,60,34,18,0.0 +18113,67,14,8,0.0 +18113,7,30,28,0.0 +18113,4,22,23,0.0 +18113,6,25,19,0.0 +18113,19,9.2,37,0.0 +18113,65,21.05,6,0.0 +18113,49,20,38,0.0 +18113,75,7.75,15,0.0 +18113,61,28.5,42,0.0 +18113,33,2.5,39,0.0 +18113,5,21.35,23,0.0 +18113,64,33.25,22,0.0 +18113,28,45.6,16,0.0 +18113,47,9.5,25,0.0 +18113,37,26,6,0.0 +18114,45,9.5,3,0.0 +18114,39,18,20,0.0 +18114,52,7,37,0.0 +18114,50,16.25,33,0.0 +18114,12,38,35,0.0 +18114,16,17.45,29,0.0 +18114,49,20,3,0.0 +18114,3,10,19,0.0 +18114,38,263.5,26,0.0 +18114,59,55,14,0.0 +18114,64,33.25,14,0.0 +18114,28,45.6,7,0.0 +18114,6,25,1,0.0 +18114,31,12.5,3,0.0 +18114,26,31.23,32,0.0 +18114,53,32.8,31,0.0 +18114,62,49.3,18,0.0 +18114,56,38,17,0.0 +18114,8,40,13,0.0 +18114,23,9,37,0.0 +18114,48,12.75,38,0.0 +18114,65,21.05,36,0.0 +18114,1,18,23,0.0 +18114,66,17,43,0.0 +18114,43,46,7,0.0 +18114,63,43.9,4,0.0 +18114,22,21,2,0.0 +18114,54,7.45,43,0.0 +18114,47,9.5,6,0.0 +18114,44,19.45,46,0.0 +18114,13,6,12,0.0 +18114,67,14,1,0.0 +18114,41,9.65,33,0.0 +18114,5,21.35,11,0.0 +18114,7,30,28,0.0 +18114,37,26,21,0.0 +18114,76,18,33,0.0 +18114,51,53,15,0.0 +18114,17,39,34,0.0 +18114,32,32,21,0.0 +18114,11,21,28,0.0 +18114,29,123.79,45,0.0 +18114,74,10,44,0.0 +18114,71,21.5,1,0.0 +18114,30,25.89,45,0.0 +18114,58,13.25,28,0.0 +18114,46,12,29,0.0 +18114,55,24,3,0.0 +18114,35,18,24,0.0 +18114,36,19,43,0.0 +18114,34,14,46,0.0 +18114,27,43.9,28,0.0 +18114,33,2.5,24,0.0 +18114,75,7.75,5,0.0 +18114,69,36,32,0.0 +18114,42,14,15,0.0 +18114,4,22,2,0.0 +18114,57,19.5,44,0.0 +18114,19,9.2,22,0.0 +18114,60,34,33,0.0 +18114,73,15,27,0.0 +18114,10,31,19,0.0 +18114,61,28.5,30,0.0 +18114,2,19,2,0.0 +18114,18,62.5,8,0.0 +18114,9,97,22,0.0 +18114,21,10,31,0.0 +18114,15,15.5,23,0.0 +18114,20,81,2,0.0 +18114,14,23.25,29,0.0 +18114,68,12.5,31,0.0 +18114,24,4.5,24,0.0 +18114,72,34.8,25,0.0 +18114,25,14,34,0.0 +18115,28,45.6,26,0.0 +18115,44,19.45,27,0.0 +18115,6,25,21,0.0 +18115,53,32.8,45,0.0 +18115,26,31.23,15,0.0 +18115,12,38,3,0.0 +18115,47,9.5,37,0.0 +18115,37,26,14,0.0 +18115,16,17.45,41,0.0 +18115,39,18,10,0.0 +18115,42,14,44,0.0 +18115,74,10,33,0.0 +18115,67,14,21,0.0 +18115,57,19.5,48,0.0 +18115,62,49.3,13,0.0 +18115,11,21,21,0.0 +18115,8,40,34,0.0 +18115,43,46,6,0.0 +18115,49,20,17,0.0 +18115,63,43.9,12,0.0 +18115,66,17,9,0.0 +18115,18,62.5,38,0.0 +18115,29,123.79,30,0.0 +18115,5,21.35,21,0.0 +18115,20,81,19,0.0 +18115,72,34.8,28,0.0 +18115,30,25.89,3,0.0 +18115,7,30,50,0.0 +18115,75,7.75,18,0.0 +18115,36,19,42,0.0 +18115,51,53,15,0.0 +18115,59,55,1,0.0 +18115,19,9.2,32,0.0 +18115,14,23.25,27,0.0 +18115,68,12.5,34,0.0 +18115,3,10,2,0.0 +18115,48,12.75,35,0.0 +18115,2,19,37,0.0 +18115,41,9.65,25,0.0 +18115,23,9,44,0.0 +18115,15,15.5,14,0.0 +18115,45,9.5,22,0.0 +18115,46,12,30,0.0 +18115,4,22,4,0.0 +18116,35,18,29,0.0 +18116,23,9,1,0.0 +18116,14,23.25,21,0.0 +18116,4,22,15,0.0 +18116,41,9.65,17,0.0 +18116,67,14,21,0.0 +18116,45,9.5,18,0.0 +18116,17,39,37,0.0 +18116,11,21,23,0.0 +18116,44,19.45,1,0.0 +18116,12,38,17,0.0 +18116,61,28.5,23,0.0 +18116,59,55,14,0.0 +18116,3,10,39,0.0 +18116,36,19,39,0.0 +18116,18,62.5,21,0.0 +18116,21,10,50,0.0 +18116,49,20,18,0.0 +18116,25,14,36,0.0 +18116,15,15.5,47,0.0 +18116,24,4.5,33,0.0 +18117,20,81,40,0.0 +18117,45,9.5,20,0.0 +18117,62,49.3,40,0.0 +18117,26,31.23,48,0.0 +18118,20,81,19,0.0 +18118,4,22,46,0.0 +18118,35,18,5,0.0 +18118,57,19.5,20,0.0 +18118,69,36,20,0.0 +18118,43,46,10,0.0 +18118,51,53,35,0.0 +18118,56,38,6,0.0 +18118,47,9.5,33,0.0 +18118,45,9.5,8,0.0 +18118,44,19.45,19,0.0 +18118,6,25,49,0.0 +18118,55,24,9,0.0 +18118,76,18,12,0.0 +18118,46,12,14,0.0 +18118,38,263.5,34,0.0 +18118,72,34.8,8,0.0 +18118,22,21,2,0.0 +18118,21,10,28,0.0 +18118,64,33.25,37,0.0 +18118,63,43.9,34,0.0 +18118,67,14,5,0.0 +18118,65,21.05,39,0.0 +18118,75,7.75,27,0.0 +18118,23,9,22,0.0 +18118,27,43.9,3,0.0 +18118,33,2.5,13,0.0 +18118,40,18.4,45,0.0 +18118,16,17.45,5,0.0 +18118,50,16.25,6,0.0 +18118,3,10,3,0.0 +18118,2,19,18,0.0 +18118,12,38,27,0.0 +18119,5,21.35,21,0.0 +18119,31,12.5,7,0.0 +18119,74,10,47,0.0 +18119,64,33.25,50,0.0 +18119,30,25.89,25,0.0 +18119,65,21.05,44,0.0 +18119,10,31,5,0.0 +18119,26,31.23,39,0.0 +18119,59,55,40,0.0 +18119,47,9.5,23,0.0 +18119,35,18,4,0.0 +18119,16,17.45,21,0.0 +18119,56,38,25,0.0 +18119,32,32,41,0.0 +18119,15,15.5,37,0.0 +18119,72,34.8,28,0.0 +18119,23,9,36,0.0 +18119,62,49.3,29,0.0 +18119,24,4.5,33,0.0 +18119,34,14,12,0.0 +18119,13,6,37,0.0 +18119,67,14,33,0.0 +18119,14,23.25,44,0.0 +18119,54,7.45,18,0.0 +18119,66,17,4,0.0 +18119,39,18,42,0.0 +18119,71,21.5,21,0.0 +18119,46,12,41,0.0 +18119,51,53,49,0.0 +18119,19,9.2,48,0.0 +18119,2,19,49,0.0 +18119,38,263.5,39,0.0 +18119,45,9.5,24,0.0 +18119,77,13,34,0.0 +18119,50,16.25,25,0.0 +18119,44,19.45,38,0.0 +18119,37,26,38,0.0 +18119,41,9.65,44,0.0 +18119,25,14,50,0.0 +18119,12,38,10,0.0 +18119,27,43.9,12,0.0 +18119,69,36,42,0.0 +18119,22,21,12,0.0 +18119,36,19,20,0.0 +18119,21,10,11,0.0 +18119,55,24,50,0.0 +18119,18,62.5,34,0.0 +18119,60,34,21,0.0 +18119,29,123.79,16,0.0 +18119,11,21,50,0.0 +18119,42,14,22,0.0 +18119,52,7,46,0.0 +18119,48,12.75,30,0.0 +18119,4,22,36,0.0 +18119,33,2.5,20,0.0 +18119,28,45.6,7,0.0 +18119,49,20,10,0.0 +18119,20,81,16,0.0 +18119,8,40,30,0.0 +18119,17,39,14,0.0 +18119,57,19.5,45,0.0 +18119,9,97,5,0.0 +18119,1,18,8,0.0 +18119,75,7.75,14,0.0 +18120,21,10,14,0.0 +18120,77,13,20,0.0 +18120,62,49.3,6,0.0 +18120,52,7,13,0.0 +18120,50,16.25,47,0.0 +18120,14,23.25,5,0.0 +18120,61,28.5,11,0.0 +18120,19,9.2,18,0.0 +18120,6,25,35,0.0 +18120,7,30,30,0.0 +18120,24,4.5,18,0.0 +18120,63,43.9,43,0.0 +18120,71,21.5,2,0.0 +18120,53,32.8,9,0.0 +18120,40,18.4,11,0.0 +18120,73,15,43,0.0 +18120,37,26,35,0.0 +18120,48,12.75,39,0.0 +18120,54,7.45,10,0.0 +18120,32,32,16,0.0 +18120,74,10,10,0.0 +18120,9,97,43,0.0 +18120,47,9.5,25,0.0 +18120,33,2.5,16,0.0 +18120,5,21.35,20,0.0 +18120,68,12.5,37,0.0 +18120,29,123.79,7,0.0 +18120,58,13.25,38,0.0 +18120,39,18,12,0.0 +18120,49,20,19,0.0 +18120,69,36,5,0.0 +18120,13,6,3,0.0 +18120,20,81,8,0.0 +18120,26,31.23,17,0.0 +18120,56,38,12,0.0 +18120,51,53,34,0.0 +18120,34,14,21,0.0 +18120,42,14,34,0.0 +18120,25,14,15,0.0 +18120,4,22,22,0.0 +18120,16,17.45,15,0.0 +18120,28,45.6,19,0.0 +18120,66,17,10,0.0 +18120,44,19.45,50,0.0 +18120,27,43.9,36,0.0 +18120,59,55,8,0.0 +18120,55,24,9,0.0 +18120,30,25.89,19,0.0 +18120,43,46,42,0.0 +18120,45,9.5,27,0.0 +18120,41,9.65,9,0.0 +18120,15,15.5,13,0.0 +18120,23,9,33,0.0 +18120,1,18,1,0.0 +18120,72,34.8,16,0.0 +18120,18,62.5,35,0.0 +18120,57,19.5,30,0.0 +18120,67,14,3,0.0 +18120,76,18,19,0.0 +18120,60,34,9,0.0 +18120,8,40,9,0.0 +18120,75,7.75,35,0.0 +18120,2,19,49,0.0 +18120,11,21,8,0.0 +18120,17,39,28,0.0 +18120,10,31,6,0.0 +18120,22,21,25,0.0 +18120,3,10,46,0.0 +18120,46,12,5,0.0 +18120,38,263.5,28,0.0 +18120,64,33.25,44,0.0 +18121,19,9.2,46,0.0 +18121,12,38,28,0.0 +18121,73,15,43,0.0 +18121,20,81,31,0.0 +18121,62,49.3,10,0.0 +18121,60,34,8,0.0 +18121,42,14,19,0.0 +18121,32,32,30,0.0 +18121,61,28.5,30,0.0 +18121,36,19,32,0.0 +18121,45,9.5,50,0.0 +18121,23,9,50,0.0 +18121,18,62.5,28,0.0 +18121,28,45.6,18,0.0 +18121,21,10,35,0.0 +18121,64,33.25,15,0.0 +18121,67,14,26,0.0 +18121,35,18,7,0.0 +18121,55,24,49,0.0 +18121,14,23.25,14,0.0 +18121,63,43.9,47,0.0 +18121,54,7.45,40,0.0 +18121,37,26,35,0.0 +18121,9,97,24,0.0 +18121,34,14,40,0.0 +18121,77,13,35,0.0 +18121,47,9.5,30,0.0 +18121,29,123.79,31,0.0 +18121,17,39,32,0.0 +18121,26,31.23,4,0.0 +18121,5,21.35,19,0.0 +18122,37,26,44,0.0 +18122,7,30,27,0.0 +18122,58,13.25,3,0.0 +18122,26,31.23,39,0.0 +18123,2,19,8,0.0 +18123,66,17,3,0.0 +18123,28,45.6,22,0.0 +18123,8,40,45,0.0 +18123,56,38,15,0.0 +18123,62,49.3,46,0.0 +18123,30,25.89,38,0.0 +18123,46,12,1,0.0 +18123,44,19.45,33,0.0 +18123,63,43.9,7,0.0 +18123,7,30,30,0.0 +18123,15,15.5,35,0.0 +18123,12,38,12,0.0 +18123,27,43.9,21,0.0 +18123,29,123.79,46,0.0 +18123,1,18,1,0.0 +18124,46,12,12,0.0 +18124,20,81,50,0.0 +18124,56,38,43,0.0 +18124,9,97,45,0.0 +18124,60,34,49,0.0 +18124,35,18,17,0.0 +18124,1,18,49,0.0 +18124,48,12.75,16,0.0 +18124,38,263.5,37,0.0 +18124,33,2.5,26,0.0 +18124,63,43.9,14,0.0 +18124,41,9.65,30,0.0 +18124,61,28.5,43,0.0 +18124,7,30,21,0.0 +18124,37,26,5,0.0 +18124,66,17,16,0.0 +18124,12,38,50,0.0 +18124,30,25.89,14,0.0 +18124,55,24,41,0.0 +18124,72,34.8,10,0.0 +18124,21,10,39,0.0 +18124,32,32,30,0.0 +18124,49,20,3,0.0 +18124,77,13,39,0.0 +18124,71,21.5,12,0.0 +18124,31,12.5,49,0.0 +18124,44,19.45,19,0.0 +18124,64,33.25,39,0.0 +18124,26,31.23,17,0.0 +18124,6,25,42,0.0 +18124,67,14,40,0.0 +18124,22,21,14,0.0 +18124,34,14,30,0.0 +18124,54,7.45,15,0.0 +18124,16,17.45,42,0.0 +18124,10,31,27,0.0 +18124,53,32.8,40,0.0 +18124,36,19,34,0.0 +18124,52,7,1,0.0 +18124,5,21.35,29,0.0 +18124,27,43.9,9,0.0 +18124,40,18.4,5,0.0 +18124,11,21,17,0.0 +18124,58,13.25,20,0.0 +18124,76,18,20,0.0 +18124,75,7.75,2,0.0 +18124,3,10,36,0.0 +18124,70,15,42,0.0 +18124,59,55,13,0.0 +18124,15,15.5,38,0.0 +18124,28,45.6,21,0.0 +18124,68,12.5,46,0.0 +18124,73,15,1,0.0 +18124,24,4.5,5,0.0 +18124,39,18,15,0.0 +18124,13,6,32,0.0 +18124,43,46,21,0.0 +18124,69,36,50,0.0 +18124,65,21.05,27,0.0 +18124,17,39,6,0.0 +18124,57,19.5,6,0.0 +18124,2,19,50,0.0 +18124,42,14,10,0.0 +18124,23,9,27,0.0 +18124,62,49.3,4,0.0 +18124,4,22,48,0.0 +18124,74,10,48,0.0 +18124,25,14,4,0.0 +18124,14,23.25,18,0.0 +18124,45,9.5,38,0.0 +18125,31,12.5,14,0.0 +18125,44,19.45,37,0.0 +18125,39,18,2,0.0 +18125,76,18,13,0.0 +18125,9,97,34,0.0 +18125,58,13.25,12,0.0 +18125,45,9.5,13,0.0 +18125,20,81,49,0.0 +18125,47,9.5,37,0.0 +18125,8,40,49,0.0 +18125,66,17,9,0.0 +18125,56,38,22,0.0 +18125,15,15.5,13,0.0 +18125,40,18.4,20,0.0 +18125,52,7,25,0.0 +18125,68,12.5,24,0.0 +18125,41,9.65,8,0.0 +18125,26,31.23,10,0.0 +18125,29,123.79,26,0.0 +18125,34,14,40,0.0 +18125,19,9.2,32,0.0 +18125,57,19.5,10,0.0 +18125,46,12,23,0.0 +18125,25,14,14,0.0 +18125,48,12.75,17,0.0 +18125,2,19,36,0.0 +18125,10,31,25,0.0 +18125,4,22,18,0.0 +18125,6,25,33,0.0 +18125,67,14,45,0.0 +18125,59,55,32,0.0 +18125,7,30,25,0.0 +18125,61,28.5,3,0.0 +18125,43,46,8,0.0 +18125,5,21.35,48,0.0 +18125,11,21,49,0.0 +18125,33,2.5,1,0.0 +18125,74,10,27,0.0 +18125,60,34,41,0.0 +18125,72,34.8,23,0.0 +18125,27,43.9,31,0.0 +18125,49,20,14,0.0 +18125,75,7.75,9,0.0 +18125,22,21,19,0.0 +18125,71,21.5,2,0.0 +18125,64,33.25,8,0.0 +18125,1,18,34,0.0 +18125,24,4.5,37,0.0 +18125,16,17.45,42,0.0 +18125,21,10,14,0.0 +18125,13,6,15,0.0 +18125,73,15,28,0.0 +18125,32,32,40,0.0 +18125,28,45.6,18,0.0 +18125,51,53,26,0.0 +18125,62,49.3,17,0.0 +18125,50,16.25,22,0.0 +18125,3,10,22,0.0 +18125,30,25.89,43,0.0 +18125,37,26,31,0.0 +18125,65,21.05,2,0.0 +18125,18,62.5,50,0.0 +18125,70,15,10,0.0 +18125,12,38,27,0.0 +18125,55,24,27,0.0 +18125,63,43.9,10,0.0 +18125,14,23.25,40,0.0 +18125,53,32.8,8,0.0 +18125,17,39,43,0.0 +18125,36,19,8,0.0 +18125,77,13,2,0.0 +18125,38,263.5,25,0.0 +18125,54,7.45,34,0.0 +18125,42,14,7,0.0 +18126,54,7.45,18,0.0 +18126,77,13,18,0.0 +18126,52,7,19,0.0 +18126,17,39,33,0.0 +18126,30,25.89,19,0.0 +18126,64,33.25,37,0.0 +18126,42,14,10,0.0 +18126,72,34.8,32,0.0 +18126,66,17,1,0.0 +18126,7,30,30,0.0 +18126,31,12.5,1,0.0 +18126,37,26,18,0.0 +18126,55,24,12,0.0 +18126,65,21.05,20,0.0 +18126,74,10,5,0.0 +18126,1,18,42,0.0 +18126,67,14,44,0.0 +18126,9,97,43,0.0 +18126,4,22,38,0.0 +18126,13,6,11,0.0 +18126,2,19,27,0.0 +18126,33,2.5,13,0.0 +18126,58,13.25,13,0.0 +18126,24,4.5,34,0.0 +18126,29,123.79,41,0.0 +18126,71,21.5,31,0.0 +18126,18,62.5,9,0.0 +18126,5,21.35,4,0.0 +18126,6,25,15,0.0 +18126,50,16.25,11,0.0 +18126,16,17.45,33,0.0 +18126,53,32.8,13,0.0 +18126,48,12.75,14,0.0 +18126,62,49.3,31,0.0 +18126,38,263.5,44,0.0 +18126,35,18,22,0.0 +18127,53,32.8,31,0.0 +18127,67,14,32,0.0 +18127,73,15,35,0.0 +18127,12,38,37,0.0 +18127,16,17.45,3,0.0 +18127,8,40,27,0.0 +18127,41,9.65,13,0.0 +18127,17,39,27,0.0 +18127,32,32,1,0.0 +18127,34,14,28,0.0 +18127,6,25,2,0.0 +18127,76,18,11,0.0 +18127,20,81,9,0.0 +18127,30,25.89,8,0.0 +18127,48,12.75,31,0.0 +18127,71,21.5,12,0.0 +18127,38,263.5,34,0.0 +18127,2,19,10,0.0 +18127,5,21.35,8,0.0 +18127,37,26,21,0.0 +18127,11,21,47,0.0 +18128,62,49.3,12,0.0 +18128,33,2.5,9,0.0 +18128,21,10,43,0.0 +18128,9,97,4,0.0 +18128,43,46,44,0.0 +18128,31,12.5,43,0.0 +18128,15,15.5,28,0.0 +18128,66,17,28,0.0 +18128,30,25.89,20,0.0 +18128,2,19,12,0.0 +18128,39,18,36,0.0 +18128,53,32.8,21,0.0 +18128,56,38,8,0.0 +18128,20,81,28,0.0 +18128,10,31,43,0.0 +18128,37,26,39,0.0 +18128,28,45.6,43,0.0 +18128,35,18,42,0.0 +18128,69,36,17,0.0 +18128,70,15,22,0.0 +18128,48,12.75,18,0.0 +18128,32,32,1,0.0 +18128,6,25,44,0.0 +18128,58,13.25,6,0.0 +18128,34,14,17,0.0 +18128,63,43.9,8,0.0 +18129,8,40,36,0.0 +18129,35,18,37,0.0 +18129,16,17.45,29,0.0 +18129,11,21,37,0.0 +18129,67,14,44,0.0 +18129,49,20,3,0.0 +18129,57,19.5,38,0.0 +18129,36,19,37,0.0 +18129,64,33.25,10,0.0 +18129,38,263.5,23,0.0 +18129,31,12.5,43,0.0 +18129,26,31.23,24,0.0 +18129,39,18,18,0.0 +18129,65,21.05,14,0.0 +18129,14,23.25,43,0.0 +18129,3,10,43,0.0 +18129,10,31,44,0.0 +18129,9,97,2,0.0 +18129,2,19,39,0.0 +18129,48,12.75,16,0.0 +18129,43,46,47,0.0 +18129,22,21,22,0.0 +18129,52,7,12,0.0 +18129,41,9.65,30,0.0 +18129,70,15,5,0.0 +18129,58,13.25,49,0.0 +18129,72,34.8,8,0.0 +18129,74,10,23,0.0 +18129,18,62.5,22,0.0 +18129,69,36,2,0.0 +18129,56,38,12,0.0 +18129,17,39,45,0.0 +18129,75,7.75,24,0.0 +18129,33,2.5,49,0.0 +18129,13,6,47,0.0 +18129,51,53,44,0.0 +18129,7,30,20,0.0 +18129,23,9,31,0.0 +18129,59,55,13,0.0 +18129,6,25,40,0.0 +18129,28,45.6,15,0.0 +18129,24,4.5,12,0.0 +18129,29,123.79,48,0.0 +18129,45,9.5,36,0.0 +18129,30,25.89,19,0.0 +18129,61,28.5,44,0.0 +18129,53,32.8,42,0.0 +18129,19,9.2,2,0.0 +18129,71,21.5,32,0.0 +18129,68,12.5,25,0.0 +18129,55,24,10,0.0 +18129,50,16.25,4,0.0 +18129,21,10,20,0.0 +18129,42,14,21,0.0 +18129,63,43.9,1,0.0 +18129,66,17,32,0.0 +18129,4,22,6,0.0 +18129,32,32,7,0.0 +18129,44,19.45,3,0.0 +18129,40,18.4,14,0.0 +18129,46,12,30,0.0 +18130,9,97,41,0.0 +18130,52,7,7,0.0 +18130,21,10,14,0.0 +18130,77,13,50,0.0 +18130,48,12.75,50,0.0 +18130,13,6,42,0.0 +18130,68,12.5,39,0.0 +18130,75,7.75,32,0.0 +18130,33,2.5,21,0.0 +18130,42,14,23,0.0 +18130,62,49.3,14,0.0 +18130,45,9.5,42,0.0 +18130,41,9.65,48,0.0 +18130,8,40,34,0.0 +18130,23,9,43,0.0 +18130,36,19,41,0.0 +18130,34,14,17,0.0 +18130,65,21.05,50,0.0 +18130,16,17.45,33,0.0 +18130,76,18,26,0.0 +18130,49,20,45,0.0 +18130,1,18,16,0.0 +18130,60,34,31,0.0 +18130,28,45.6,21,0.0 +18131,41,9.65,7,0.0 +18131,39,18,43,0.0 +18131,75,7.75,43,0.0 +18131,11,21,34,0.0 +18131,54,7.45,4,0.0 +18131,32,32,31,0.0 +18131,49,20,50,0.0 +18131,35,18,4,0.0 +18131,50,16.25,44,0.0 +18131,60,34,16,0.0 +18131,69,36,32,0.0 +18131,73,15,25,0.0 +18131,74,10,6,0.0 +18131,34,14,1,0.0 +18131,7,30,33,0.0 +18131,77,13,41,0.0 +18131,4,22,31,0.0 +18131,33,2.5,26,0.0 +18131,43,46,30,0.0 +18131,55,24,37,0.0 +18131,53,32.8,25,0.0 +18131,47,9.5,23,0.0 +18131,31,12.5,42,0.0 +18131,10,31,6,0.0 +18131,40,18.4,5,0.0 +18131,58,13.25,39,0.0 +18131,63,43.9,13,0.0 +18131,66,17,33,0.0 +18131,16,17.45,31,0.0 +18131,8,40,24,0.0 +18131,59,55,37,0.0 +18131,46,12,31,0.0 +18131,15,15.5,32,0.0 +18131,3,10,12,0.0 +18132,6,25,14,0.0 +18132,19,9.2,4,0.0 +18132,40,18.4,32,0.0 +18132,22,21,41,0.0 +18132,2,19,11,0.0 +18132,47,9.5,27,0.0 +18132,30,25.89,23,0.0 +18132,55,24,26,0.0 +18132,48,12.75,3,0.0 +18132,46,12,2,0.0 +18132,59,55,46,0.0 +18132,73,15,24,0.0 +18132,25,14,41,0.0 +18133,55,24,50,0.0 +18133,14,23.25,33,0.0 +18133,17,39,7,0.0 +18133,26,31.23,7,0.0 +18133,58,13.25,37,0.0 +18133,50,16.25,14,0.0 +18133,15,15.5,16,0.0 +18133,20,81,32,0.0 +18133,36,19,39,0.0 +18133,10,31,17,0.0 +18133,21,10,33,0.0 +18133,32,32,28,0.0 +18133,75,7.75,28,0.0 +18133,18,62.5,50,0.0 +18134,30,25.89,15,0.0 +18134,71,21.5,20,0.0 +18134,16,17.45,29,0.0 +18134,49,20,12,0.0 +18134,8,40,36,0.0 +18134,20,81,28,0.0 +18134,36,19,28,0.0 +18134,23,9,36,0.0 +18134,24,4.5,13,0.0 +18134,67,14,46,0.0 +18134,44,19.45,45,0.0 +18134,18,62.5,25,0.0 +18134,74,10,19,0.0 +18134,62,49.3,6,0.0 +18134,56,38,47,0.0 +18134,50,16.25,43,0.0 +18134,13,6,38,0.0 +18134,60,34,15,0.0 +18134,65,21.05,34,0.0 +18134,34,14,26,0.0 +18134,10,31,24,0.0 +18134,59,55,5,0.0 +18134,58,13.25,12,0.0 +18134,42,14,13,0.0 +18134,46,12,47,0.0 +18134,22,21,48,0.0 +18135,34,14,3,0.0 +18135,28,45.6,10,0.0 +18135,37,26,18,0.0 +18135,77,13,6,0.0 +18135,61,28.5,18,0.0 +18135,45,9.5,24,0.0 +18135,58,13.25,18,0.0 +18135,11,21,44,0.0 +18135,6,25,30,0.0 +18135,8,40,12,0.0 +18135,74,10,14,0.0 +18135,25,14,21,0.0 +18135,57,19.5,6,0.0 +18135,66,17,37,0.0 +18135,22,21,21,0.0 +18135,72,34.8,17,0.0 +18135,9,97,6,0.0 +18135,24,4.5,6,0.0 +18135,19,9.2,21,0.0 +18135,46,12,41,0.0 +18135,51,53,30,0.0 +18135,38,263.5,10,0.0 +18135,65,21.05,37,0.0 +18135,20,81,20,0.0 +18135,31,12.5,20,0.0 +18135,4,22,12,0.0 +18135,68,12.5,30,0.0 +18135,50,16.25,28,0.0 +18135,44,19.45,29,0.0 +18135,53,32.8,22,0.0 +18135,26,31.23,9,0.0 +18135,60,34,29,0.0 +18135,55,24,46,0.0 +18135,36,19,42,0.0 +18135,17,39,13,0.0 +18135,54,7.45,15,0.0 +18135,52,7,29,0.0 +18135,21,10,4,0.0 +18135,1,18,43,0.0 +18135,59,55,20,0.0 +18135,12,38,4,0.0 +18135,69,36,28,0.0 +18135,3,10,45,0.0 +18135,75,7.75,28,0.0 +18135,73,15,40,0.0 +18135,33,2.5,40,0.0 +18135,15,15.5,16,0.0 +18135,70,15,45,0.0 +18135,27,43.9,2,0.0 +18135,39,18,33,0.0 +18135,14,23.25,26,0.0 +18135,2,19,26,0.0 +18135,35,18,25,0.0 +18135,42,14,49,0.0 +18135,64,33.25,20,0.0 +18135,67,14,2,0.0 +18135,41,9.65,3,0.0 +18135,49,20,37,0.0 +18135,71,21.5,43,0.0 +18135,30,25.89,33,0.0 +18135,76,18,2,0.0 +18135,5,21.35,38,0.0 +18135,56,38,33,0.0 +18135,16,17.45,38,0.0 +18135,47,9.5,26,0.0 +18135,63,43.9,3,0.0 +18135,62,49.3,4,0.0 +18135,18,62.5,5,0.0 +18135,40,18.4,35,0.0 +18135,7,30,27,0.0 +18135,48,12.75,32,0.0 +18135,23,9,46,0.0 +18136,43,46,44,0.0 +18136,10,31,20,0.0 +18136,38,263.5,19,0.0 +18136,52,7,49,0.0 +18136,37,26,9,0.0 +18136,71,21.5,16,0.0 +18136,14,23.25,37,0.0 +18136,40,18.4,35,0.0 +18136,31,12.5,4,0.0 +18136,9,97,18,0.0 +18136,61,28.5,36,0.0 +18136,64,33.25,11,0.0 +18136,42,14,40,0.0 +18136,72,34.8,44,0.0 +18136,53,32.8,27,0.0 +18136,5,21.35,47,0.0 +18136,45,9.5,50,0.0 +18136,35,18,33,0.0 +18136,58,13.25,35,0.0 +18136,66,17,48,0.0 +18136,4,22,1,0.0 +18136,67,14,42,0.0 +18136,51,53,7,0.0 +18136,13,6,32,0.0 +18136,49,20,13,0.0 +18136,63,43.9,36,0.0 +18136,65,21.05,47,0.0 +18136,29,123.79,7,0.0 +18136,11,21,5,0.0 +18136,2,19,23,0.0 +18136,77,13,5,0.0 +18136,59,55,25,0.0 +18136,41,9.65,3,0.0 +18136,44,19.45,7,0.0 +18136,1,18,1,0.0 +18136,23,9,15,0.0 +18136,27,43.9,16,0.0 +18136,26,31.23,13,0.0 +18136,28,45.6,13,0.0 +18136,25,14,23,0.0 +18136,33,2.5,48,0.0 +18136,76,18,10,0.0 +18136,17,39,22,0.0 +18136,18,62.5,2,0.0 +18136,50,16.25,8,0.0 +18136,62,49.3,44,0.0 +18136,57,19.5,42,0.0 +18136,69,36,38,0.0 +18136,75,7.75,20,0.0 +18136,34,14,24,0.0 +18136,8,40,24,0.0 +18136,55,24,27,0.0 +18136,19,9.2,26,0.0 +18136,60,34,30,0.0 +18136,15,15.5,22,0.0 +18136,16,17.45,23,0.0 +18136,39,18,3,0.0 +18136,73,15,30,0.0 +18136,24,4.5,8,0.0 +18136,3,10,41,0.0 +18136,30,25.89,26,0.0 +18136,12,38,31,0.0 +18136,54,7.45,40,0.0 +18136,48,12.75,28,0.0 +18136,20,81,13,0.0 +18136,7,30,1,0.0 +18136,70,15,6,0.0 +18136,56,38,9,0.0 +18136,68,12.5,33,0.0 +18137,48,12.75,27,0.0 +18137,38,263.5,24,0.0 +18137,50,16.25,29,0.0 +18137,61,28.5,28,0.0 +18137,24,4.5,28,0.0 +18137,20,81,33,0.0 +18137,64,33.25,9,0.0 +18137,16,17.45,36,0.0 +18137,7,30,28,0.0 +18137,1,18,30,0.0 +18137,29,123.79,33,0.0 +18137,21,10,46,0.0 +18137,42,14,14,0.0 +18137,14,23.25,19,0.0 +18137,27,43.9,10,0.0 +18137,74,10,25,0.0 +18137,10,31,12,0.0 +18137,36,19,20,0.0 +18137,68,12.5,42,0.0 +18137,28,45.6,3,0.0 +18137,73,15,47,0.0 +18137,77,13,22,0.0 +18137,46,12,1,0.0 +18137,26,31.23,13,0.0 +18137,18,62.5,36,0.0 +18137,76,18,36,0.0 +18137,37,26,17,0.0 +18137,2,19,49,0.0 +18137,49,20,43,0.0 +18137,8,40,44,0.0 +18137,59,55,6,0.0 +18137,60,34,16,0.0 +18137,6,25,19,0.0 +18137,65,21.05,9,0.0 +18137,40,18.4,11,0.0 +18137,66,17,30,0.0 +18137,67,14,14,0.0 +18137,72,34.8,7,0.0 +18137,53,32.8,46,0.0 +18137,17,39,40,0.0 +18137,33,2.5,47,0.0 +18137,44,19.45,8,0.0 +18137,70,15,19,0.0 +18137,62,49.3,18,0.0 +18137,71,21.5,41,0.0 +18137,45,9.5,16,0.0 +18137,30,25.89,20,0.0 +18137,32,32,4,0.0 +18137,13,6,26,0.0 +18137,23,9,40,0.0 +18137,5,21.35,30,0.0 +18137,35,18,12,0.0 +18137,41,9.65,21,0.0 +18137,63,43.9,22,0.0 +18137,55,24,49,0.0 +18137,51,53,28,0.0 +18137,75,7.75,20,0.0 +18137,12,38,28,0.0 +18137,22,21,9,0.0 +18137,56,38,4,0.0 +18138,29,123.79,25,0.0 +18138,58,13.25,8,0.0 +18138,53,32.8,41,0.0 +18138,70,15,26,0.0 +18138,4,22,23,0.0 +18138,48,12.75,38,0.0 +18138,67,14,23,0.0 +18138,45,9.5,4,0.0 +18138,47,9.5,26,0.0 +18138,25,14,3,0.0 +18138,20,81,4,0.0 +18138,66,17,17,0.0 +18138,33,2.5,24,0.0 +18138,49,20,33,0.0 +18138,31,12.5,34,0.0 +18138,19,9.2,20,0.0 +18138,71,21.5,31,0.0 +18138,21,10,3,0.0 +18138,27,43.9,29,0.0 +18138,3,10,27,0.0 +18138,42,14,35,0.0 +18138,35,18,5,0.0 +18138,34,14,32,0.0 +18138,16,17.45,13,0.0 +18138,28,45.6,12,0.0 +18138,59,55,23,0.0 +18138,15,15.5,7,0.0 +18138,63,43.9,1,0.0 +18138,69,36,9,0.0 +18138,74,10,50,0.0 +18138,38,263.5,35,0.0 +18138,13,6,22,0.0 +18138,52,7,21,0.0 +18138,12,38,22,0.0 +18138,37,26,46,0.0 +18138,36,19,47,0.0 +18138,62,49.3,34,0.0 +18138,76,18,15,0.0 +18138,7,30,13,0.0 +18138,68,12.5,46,0.0 +18138,46,12,6,0.0 +18138,17,39,23,0.0 +18138,60,34,22,0.0 +18138,65,21.05,3,0.0 +18138,57,19.5,42,0.0 +18138,9,97,40,0.0 +18138,56,38,8,0.0 +18138,43,46,29,0.0 +18138,32,32,19,0.0 +18138,30,25.89,44,0.0 +18138,50,16.25,13,0.0 +18138,8,40,22,0.0 +18138,64,33.25,12,0.0 +18138,24,4.5,26,0.0 +18138,77,13,21,0.0 +18139,41,9.65,12,0.0 +18139,63,43.9,28,0.0 +18139,27,43.9,1,0.0 +18139,30,25.89,50,0.0 +18139,9,97,22,0.0 +18139,59,55,39,0.0 +18139,32,32,47,0.0 +18139,64,33.25,27,0.0 +18139,42,14,44,0.0 +18139,60,34,39,0.0 +18139,44,19.45,24,0.0 +18139,25,14,31,0.0 +18139,69,36,4,0.0 +18139,7,30,40,0.0 +18139,47,9.5,29,0.0 +18139,52,7,6,0.0 +18139,17,39,43,0.0 +18139,15,15.5,4,0.0 +18139,43,46,30,0.0 +18139,71,21.5,35,0.0 +18139,61,28.5,39,0.0 +18139,53,32.8,11,0.0 +18139,29,123.79,13,0.0 +18139,14,23.25,21,0.0 +18139,49,20,32,0.0 +18139,12,38,6,0.0 +18139,45,9.5,26,0.0 +18139,26,31.23,43,0.0 +18139,56,38,15,0.0 +18139,46,12,15,0.0 +18139,58,13.25,28,0.0 +18139,67,14,34,0.0 +18139,1,18,9,0.0 +18139,24,4.5,38,0.0 +18139,3,10,36,0.0 +18139,37,26,25,0.0 +18139,73,15,44,0.0 +18139,8,40,28,0.0 +18139,77,13,39,0.0 +18139,20,81,24,0.0 +18139,19,9.2,22,0.0 +18139,18,62.5,38,0.0 +18139,10,31,17,0.0 +18139,72,34.8,8,0.0 +18139,48,12.75,26,0.0 +18139,55,24,50,0.0 +18139,66,17,35,0.0 +18139,40,18.4,14,0.0 +18139,23,9,27,0.0 +18139,31,12.5,10,0.0 +18139,33,2.5,50,0.0 +18139,39,18,4,0.0 +18139,75,7.75,25,0.0 +18139,16,17.45,1,0.0 +18139,22,21,39,0.0 +18139,76,18,2,0.0 +18139,21,10,33,0.0 +18139,35,18,31,0.0 +18139,74,10,16,0.0 +18139,50,16.25,40,0.0 +18139,62,49.3,15,0.0 +18139,68,12.5,38,0.0 +18139,11,21,8,0.0 +18139,6,25,40,0.0 +18139,5,21.35,17,0.0 +18139,38,263.5,5,0.0 +18139,36,19,2,0.0 +18139,54,7.45,14,0.0 +18139,51,53,10,0.0 +18139,28,45.6,38,0.0 +18139,70,15,42,0.0 +18140,22,21,49,0.0 +18140,13,6,40,0.0 +18140,51,53,11,0.0 +18140,14,23.25,42,0.0 +18140,57,19.5,11,0.0 +18140,61,28.5,24,0.0 +18140,69,36,33,0.0 +18140,19,9.2,6,0.0 +18140,7,30,26,0.0 +18140,23,9,36,0.0 +18140,50,16.25,1,0.0 +18140,72,34.8,18,0.0 +18140,25,14,26,0.0 +18140,60,34,40,0.0 +18140,70,15,46,0.0 +18140,73,15,25,0.0 +18140,34,14,27,0.0 +18140,59,55,37,0.0 +18140,49,20,1,0.0 +18140,39,18,32,0.0 +18140,67,14,44,0.0 +18140,20,81,9,0.0 +18140,33,2.5,48,0.0 +18140,40,18.4,3,0.0 +18141,63,43.9,8,0.0 +18141,43,46,29,0.0 +18141,35,18,24,0.0 +18141,46,12,15,0.0 +18141,37,26,11,0.0 +18141,58,13.25,33,0.0 +18141,73,15,40,0.0 +18141,3,10,40,0.0 +18141,64,33.25,22,0.0 +18141,72,34.8,12,0.0 +18141,25,14,48,0.0 +18141,2,19,46,0.0 +18141,57,19.5,26,0.0 +18141,30,25.89,30,0.0 +18141,7,30,20,0.0 +18141,1,18,5,0.0 +18141,53,32.8,19,0.0 +18141,28,45.6,14,0.0 +18141,8,40,30,0.0 +18141,21,10,11,0.0 +18141,23,9,1,0.0 +18141,61,28.5,3,0.0 +18141,13,6,23,0.0 +18141,10,31,18,0.0 +18141,26,31.23,31,0.0 +18141,11,21,37,0.0 +18141,68,12.5,36,0.0 +18141,67,14,43,0.0 +18141,4,22,20,0.0 +18141,45,9.5,32,0.0 +18141,77,13,37,0.0 +18141,14,23.25,45,0.0 +18141,71,21.5,5,0.0 +18141,70,15,15,0.0 +18141,20,81,49,0.0 +18141,44,19.45,37,0.0 +18141,24,4.5,12,0.0 +18141,66,17,45,0.0 +18141,34,14,16,0.0 +18141,40,18.4,50,0.0 +18141,49,20,17,0.0 +18141,50,16.25,47,0.0 +18141,59,55,24,0.0 +18141,60,34,19,0.0 +18141,22,21,27,0.0 +18141,12,38,46,0.0 +18141,16,17.45,33,0.0 +18141,56,38,9,0.0 +18141,38,263.5,25,0.0 +18141,36,19,26,0.0 +18141,18,62.5,7,0.0 +18141,55,24,48,0.0 +18141,41,9.65,49,0.0 +18141,33,2.5,22,0.0 +18141,31,12.5,21,0.0 +18141,6,25,4,0.0 +18141,39,18,16,0.0 +18141,32,32,28,0.0 +18141,27,43.9,19,0.0 +18142,42,14,12,0.0 +18142,64,33.25,12,0.0 +18142,44,19.45,7,0.0 +18142,55,24,10,0.0 +18142,45,9.5,4,0.0 +18142,73,15,12,0.0 +18142,21,10,49,0.0 +18142,39,18,19,0.0 +18142,58,13.25,49,0.0 +18142,24,4.5,20,0.0 +18142,12,38,28,0.0 +18142,62,49.3,26,0.0 +18142,11,21,10,0.0 +18142,43,46,39,0.0 +18142,22,21,38,0.0 +18142,75,7.75,40,0.0 +18142,19,9.2,35,0.0 +18142,76,18,36,0.0 +18142,31,12.5,1,0.0 +18142,6,25,25,0.0 +18142,13,6,6,0.0 +18142,4,22,49,0.0 +18142,52,7,38,0.0 +18142,47,9.5,4,0.0 +18142,8,40,6,0.0 +18142,27,43.9,47,0.0 +18142,5,21.35,30,0.0 +18142,33,2.5,19,0.0 +18142,30,25.89,17,0.0 +18142,2,19,7,0.0 +18142,16,17.45,3,0.0 +18142,18,62.5,36,0.0 +18142,26,31.23,28,0.0 +18142,15,15.5,30,0.0 +18142,69,36,15,0.0 +18142,29,123.79,6,0.0 +18142,77,13,19,0.0 +18142,60,34,50,0.0 +18142,50,16.25,3,0.0 +18142,7,30,38,0.0 +18142,63,43.9,38,0.0 +18142,40,18.4,41,0.0 +18142,14,23.25,19,0.0 +18142,70,15,6,0.0 +18142,72,34.8,49,0.0 +18142,74,10,19,0.0 +18142,54,7.45,46,0.0 +18142,32,32,33,0.0 +18142,35,18,17,0.0 +18142,20,81,16,0.0 +18142,38,263.5,34,0.0 +18142,66,17,50,0.0 +18142,1,18,45,0.0 +18142,34,14,17,0.0 +18142,25,14,1,0.0 +18142,23,9,12,0.0 +18142,68,12.5,8,0.0 +18142,53,32.8,48,0.0 +18142,10,31,2,0.0 +18142,28,45.6,42,0.0 +18142,48,12.75,43,0.0 +18142,51,53,19,0.0 +18142,9,97,9,0.0 +18142,37,26,26,0.0 +18142,41,9.65,42,0.0 +18142,71,21.5,10,0.0 +18142,17,39,36,0.0 +18142,49,20,19,0.0 +18142,46,12,31,0.0 +18143,41,9.65,44,0.0 +18143,60,34,18,0.0 +18143,33,2.5,39,0.0 +18143,2,19,3,0.0 +18143,50,16.25,34,0.0 +18143,53,32.8,49,0.0 +18143,45,9.5,12,0.0 +18143,66,17,1,0.0 +18143,70,15,7,0.0 +18143,36,19,44,0.0 +18143,67,14,42,0.0 +18143,18,62.5,12,0.0 +18143,43,46,25,0.0 +18143,29,123.79,49,0.0 +18143,26,31.23,32,0.0 +18143,48,12.75,33,0.0 +18143,69,36,13,0.0 +18143,47,9.5,46,0.0 +18143,73,15,46,0.0 +18143,65,21.05,44,0.0 +18143,23,9,46,0.0 +18143,77,13,23,0.0 +18143,37,26,32,0.0 +18143,14,23.25,28,0.0 +18143,34,14,16,0.0 +18143,30,25.89,9,0.0 +18143,13,6,49,0.0 +18143,17,39,24,0.0 +18143,52,7,24,0.0 +18143,20,81,41,0.0 +18143,51,53,32,0.0 +18143,27,43.9,4,0.0 +18143,59,55,44,0.0 +18143,1,18,34,0.0 +18143,54,7.45,36,0.0 +18143,12,38,32,0.0 +18143,61,28.5,50,0.0 +18143,21,10,16,0.0 +18143,58,13.25,22,0.0 +18143,15,15.5,2,0.0 +18143,19,9.2,32,0.0 +18143,35,18,25,0.0 +18143,46,12,18,0.0 +18143,25,14,33,0.0 +18143,56,38,31,0.0 +18143,40,18.4,26,0.0 +18143,6,25,31,0.0 +18143,11,21,5,0.0 +18143,16,17.45,18,0.0 +18143,72,34.8,7,0.0 +18143,32,32,33,0.0 +18143,9,97,41,0.0 +18143,62,49.3,35,0.0 +18143,42,14,46,0.0 +18143,10,31,31,0.0 +18143,8,40,6,0.0 +18143,39,18,6,0.0 +18143,28,45.6,30,0.0 +18143,63,43.9,29,0.0 +18143,24,4.5,10,0.0 +18143,22,21,10,0.0 +18143,64,33.25,36,0.0 +18143,7,30,37,0.0 +18143,57,19.5,41,0.0 +18143,74,10,5,0.0 +18143,5,21.35,11,0.0 +18143,55,24,18,0.0 +18143,38,263.5,50,0.0 +18143,76,18,15,0.0 +18143,4,22,2,0.0 +18143,75,7.75,44,0.0 +18143,3,10,11,0.0 +18143,71,21.5,38,0.0 +18143,68,12.5,23,0.0 +18144,22,21,18,0.0 +18144,77,13,9,0.0 +18144,19,9.2,41,0.0 +18144,57,19.5,27,0.0 +18144,4,22,20,0.0 +18144,1,18,4,0.0 +18144,24,4.5,29,0.0 +18144,43,46,43,0.0 +18144,21,10,36,0.0 +18144,13,6,18,0.0 +18144,7,30,42,0.0 +18144,69,36,48,0.0 +18144,63,43.9,41,0.0 +18144,29,123.79,4,0.0 +18144,46,12,32,0.0 +18144,37,26,4,0.0 +18144,34,14,16,0.0 +18144,58,13.25,41,0.0 +18144,14,23.25,41,0.0 +18144,47,9.5,20,0.0 +18144,33,2.5,7,0.0 +18144,52,7,3,0.0 +18144,55,24,35,0.0 +18144,8,40,41,0.0 +18144,70,15,3,0.0 +18144,50,16.25,7,0.0 +18144,65,21.05,13,0.0 +18144,40,18.4,7,0.0 +18144,28,45.6,9,0.0 +18144,15,15.5,26,0.0 +18144,36,19,49,0.0 +18144,59,55,42,0.0 +18144,38,263.5,45,0.0 +18144,53,32.8,49,0.0 +18144,42,14,39,0.0 +18144,35,18,40,0.0 +18144,73,15,4,0.0 +18144,23,9,12,0.0 +18144,71,21.5,8,0.0 +18144,54,7.45,29,0.0 +18144,5,21.35,35,0.0 +18144,49,20,18,0.0 +18144,64,33.25,35,0.0 +18144,76,18,28,0.0 +18144,44,19.45,9,0.0 +18144,6,25,14,0.0 +18144,41,9.65,49,0.0 +18144,68,12.5,48,0.0 +18144,62,49.3,46,0.0 +18145,28,45.6,29,0.0 +18146,52,7,28,0.0 +18146,35,18,9,0.0 +18146,21,10,26,0.0 +18146,30,25.89,1,0.0 +18146,34,14,30,0.0 +18146,57,19.5,36,0.0 +18146,50,16.25,39,0.0 +18146,20,81,38,0.0 +18146,18,62.5,40,0.0 +18146,3,10,30,0.0 +18146,16,17.45,42,0.0 +18146,41,9.65,38,0.0 +18146,29,123.79,44,0.0 +18146,68,12.5,12,0.0 +18146,13,6,16,0.0 +18146,76,18,2,0.0 +18146,54,7.45,25,0.0 +18146,74,10,26,0.0 +18146,65,21.05,10,0.0 +18146,37,26,15,0.0 +18146,11,21,48,0.0 +18146,42,14,50,0.0 +18146,19,9.2,15,0.0 +18146,31,12.5,35,0.0 +18146,32,32,2,0.0 +18146,15,15.5,23,0.0 +18146,55,24,42,0.0 +18146,44,19.45,6,0.0 +18146,46,12,25,0.0 +18146,38,263.5,41,0.0 +18146,77,13,14,0.0 +18146,64,33.25,15,0.0 +18146,69,36,32,0.0 +18146,40,18.4,36,0.0 +18147,43,46,23,0.0 +18147,15,15.5,34,0.0 +18147,58,13.25,15,0.0 +18147,53,32.8,30,0.0 +18147,11,21,14,0.0 +18147,3,10,38,0.0 +18147,14,23.25,31,0.0 +18147,66,17,14,0.0 +18147,25,14,34,0.0 +18147,35,18,47,0.0 +18147,65,21.05,26,0.0 +18147,39,18,26,0.0 +18147,1,18,1,0.0 +18147,10,31,47,0.0 +18147,9,97,37,0.0 +18147,31,12.5,6,0.0 +18147,45,9.5,30,0.0 +18147,61,28.5,29,0.0 +18147,13,6,16,0.0 +18147,16,17.45,32,0.0 +18147,18,62.5,27,0.0 +18147,50,16.25,11,0.0 +18147,20,81,27,0.0 +18147,73,15,28,0.0 +18147,75,7.75,16,0.0 +18147,2,19,36,0.0 +18147,29,123.79,48,0.0 +18147,23,9,47,0.0 +18147,76,18,13,0.0 +18147,4,22,8,0.0 +18147,49,20,25,0.0 +18147,42,14,41,0.0 +18147,77,13,14,0.0 +18147,72,34.8,47,0.0 +18147,27,43.9,6,0.0 +18147,6,25,42,0.0 +18147,28,45.6,32,0.0 +18147,5,21.35,19,0.0 +18147,51,53,2,0.0 +18147,36,19,38,0.0 +18147,22,21,47,0.0 +18147,56,38,6,0.0 +18147,17,39,39,0.0 +18147,67,14,27,0.0 +18147,37,26,28,0.0 +18147,59,55,7,0.0 +18147,8,40,1,0.0 +18147,7,30,16,0.0 +18147,12,38,18,0.0 +18147,34,14,33,0.0 +18147,32,32,12,0.0 +18147,71,21.5,48,0.0 +18147,41,9.65,23,0.0 +18147,44,19.45,31,0.0 +18148,46,12,2,0.0 +18148,32,32,15,0.0 +18148,68,12.5,29,0.0 +18148,67,14,48,0.0 +18148,60,34,49,0.0 +18148,22,21,18,0.0 +18148,50,16.25,4,0.0 +18148,42,14,35,0.0 +18148,8,40,44,0.0 +18148,4,22,30,0.0 +18148,76,18,3,0.0 +18148,23,9,12,0.0 +18148,5,21.35,19,0.0 +18148,69,36,17,0.0 +18148,10,31,26,0.0 +18148,41,9.65,20,0.0 +18148,30,25.89,16,0.0 +18148,18,62.5,22,0.0 +18148,52,7,17,0.0 +18148,6,25,13,0.0 +18148,73,15,38,0.0 +18148,64,33.25,11,0.0 +18148,26,31.23,17,0.0 +18148,9,97,27,0.0 +18148,39,18,15,0.0 +18148,47,9.5,21,0.0 +18148,53,32.8,16,0.0 +18148,7,30,44,0.0 +18148,16,17.45,13,0.0 +18148,65,21.05,46,0.0 +18148,33,2.5,16,0.0 +18148,72,34.8,44,0.0 +18148,1,18,33,0.0 +18149,52,7,24,0.0 +18149,56,38,30,0.0 +18149,28,45.6,13,0.0 +18149,43,46,21,0.0 +18149,74,10,41,0.0 +18149,69,36,9,0.0 +18149,33,2.5,34,0.0 +18149,42,14,24,0.0 +18149,26,31.23,49,0.0 +18149,73,15,19,0.0 +18149,39,18,12,0.0 +18149,5,21.35,17,0.0 +18149,37,26,7,0.0 +18149,45,9.5,32,0.0 +18149,12,38,38,0.0 +18149,66,17,43,0.0 +18149,59,55,34,0.0 +18149,77,13,2,0.0 +18149,40,18.4,46,0.0 +18149,41,9.65,45,0.0 +18149,75,7.75,41,0.0 +18149,35,18,50,0.0 +18149,46,12,15,0.0 +18149,9,97,4,0.0 +18149,21,10,50,0.0 +18149,3,10,19,0.0 +18149,55,24,35,0.0 +18149,64,33.25,4,0.0 +18149,53,32.8,45,0.0 +18149,31,12.5,12,0.0 +18149,65,21.05,15,0.0 +18149,22,21,18,0.0 +18149,7,30,47,0.0 +18149,11,21,20,0.0 +18149,1,18,5,0.0 +18149,72,34.8,16,0.0 +18149,76,18,1,0.0 +18149,13,6,11,0.0 +18149,24,4.5,32,0.0 +18149,10,31,21,0.0 +18150,26,31.23,49,0.0 +18150,21,10,31,0.0 +18150,27,43.9,4,0.0 +18150,22,21,47,0.0 +18150,29,123.79,50,0.0 +18150,54,7.45,8,0.0 +18150,35,18,26,0.0 +18150,18,62.5,14,0.0 +18150,66,17,7,0.0 +18150,59,55,49,0.0 +18150,8,40,40,0.0 +18150,9,97,36,0.0 +18150,39,18,8,0.0 +18150,16,17.45,47,0.0 +18150,32,32,49,0.0 +18150,73,15,30,0.0 +18150,53,32.8,31,0.0 +18150,61,28.5,13,0.0 +18150,13,6,5,0.0 +18150,40,18.4,41,0.0 +18150,24,4.5,10,0.0 +18150,71,21.5,49,0.0 +18150,67,14,2,0.0 +18150,72,34.8,39,0.0 +18150,5,21.35,17,0.0 +18150,68,12.5,1,0.0 +18150,28,45.6,42,0.0 +18150,17,39,34,0.0 +18150,25,14,39,0.0 +18150,58,13.25,2,0.0 +18150,14,23.25,9,0.0 +18151,30,25.89,4,0.0 +18151,5,21.35,46,0.0 +18151,55,24,33,0.0 +18151,16,17.45,39,0.0 +18151,76,18,33,0.0 +18151,19,9.2,7,0.0 +18151,9,97,18,0.0 +18151,54,7.45,32,0.0 +18151,77,13,30,0.0 +18151,17,39,17,0.0 +18151,47,9.5,46,0.0 +18151,38,263.5,23,0.0 +18151,40,18.4,31,0.0 +18151,34,14,33,0.0 +18151,20,81,42,0.0 +18151,66,17,17,0.0 +18151,46,12,27,0.0 +18151,52,7,20,0.0 +18151,18,62.5,23,0.0 +18151,45,9.5,47,0.0 +18151,60,34,37,0.0 +18151,57,19.5,36,0.0 +18151,2,19,6,0.0 +18151,3,10,21,0.0 +18151,14,23.25,35,0.0 +18151,41,9.65,29,0.0 +18151,71,21.5,34,0.0 +18151,51,53,38,0.0 +18151,67,14,43,0.0 +18151,11,21,26,0.0 +18151,10,31,21,0.0 +18151,56,38,16,0.0 +18151,4,22,34,0.0 +18151,31,12.5,10,0.0 +18151,72,34.8,45,0.0 +18151,59,55,31,0.0 +18151,36,19,13,0.0 +18151,13,6,14,0.0 +18151,8,40,50,0.0 +18151,35,18,48,0.0 +18151,27,43.9,16,0.0 +18151,32,32,22,0.0 +18151,12,38,49,0.0 +18151,58,13.25,34,0.0 +18151,65,21.05,23,0.0 +18151,75,7.75,10,0.0 +18151,50,16.25,45,0.0 +18151,49,20,6,0.0 +18151,26,31.23,6,0.0 +18151,39,18,42,0.0 +18151,42,14,30,0.0 +18151,22,21,48,0.0 +18151,53,32.8,50,0.0 +18152,74,10,45,0.0 +18152,73,15,13,0.0 +18152,43,46,9,0.0 +18152,17,39,19,0.0 +18152,53,32.8,25,0.0 +18152,48,12.75,23,0.0 +18152,31,12.5,14,0.0 +18152,33,2.5,5,0.0 +18152,60,34,32,0.0 +18152,38,263.5,45,0.0 +18152,25,14,4,0.0 +18152,37,26,8,0.0 +18152,10,31,24,0.0 +18152,34,14,20,0.0 +18152,42,14,5,0.0 +18152,58,13.25,3,0.0 +18152,40,18.4,33,0.0 +18152,22,21,35,0.0 +18152,27,43.9,3,0.0 +18152,59,55,6,0.0 +18152,35,18,1,0.0 +18152,2,19,11,0.0 +18152,45,9.5,9,0.0 +18152,46,12,44,0.0 +18152,26,31.23,33,0.0 +18152,66,17,5,0.0 +18152,71,21.5,44,0.0 +18152,1,18,45,0.0 +18152,21,10,48,0.0 +18152,14,23.25,10,0.0 +18152,44,19.45,3,0.0 +18152,7,30,38,0.0 +18152,19,9.2,9,0.0 +18152,64,33.25,6,0.0 +18152,12,38,12,0.0 +18152,77,13,1,0.0 +18152,52,7,28,0.0 +18152,39,18,7,0.0 +18152,29,123.79,19,0.0 +18152,76,18,46,0.0 +18152,67,14,29,0.0 +18152,11,21,43,0.0 +18152,5,21.35,14,0.0 +18152,47,9.5,15,0.0 +18152,57,19.5,18,0.0 +18152,68,12.5,6,0.0 +18152,56,38,16,0.0 +18152,15,15.5,11,0.0 +18152,18,62.5,19,0.0 +18152,23,9,31,0.0 +18152,6,25,15,0.0 +18152,16,17.45,45,0.0 +18152,61,28.5,34,0.0 +18152,54,7.45,45,0.0 +18152,75,7.75,4,0.0 +18152,41,9.65,14,0.0 +18152,30,25.89,3,0.0 +18152,49,20,17,0.0 +18153,71,21.5,43,0.0 +18153,55,24,29,0.0 +18153,1,18,27,0.0 +18153,61,28.5,40,0.0 +18153,57,19.5,12,0.0 +18153,54,7.45,7,0.0 +18153,35,18,33,0.0 +18153,41,9.65,37,0.0 +18153,27,43.9,29,0.0 +18153,20,81,25,0.0 +18153,26,31.23,6,0.0 +18153,44,19.45,31,0.0 +18153,36,19,33,0.0 +18153,76,18,31,0.0 +18153,34,14,8,0.0 +18153,15,15.5,26,0.0 +18153,9,97,43,0.0 +18153,31,12.5,7,0.0 +18153,59,55,8,0.0 +18153,17,39,8,0.0 +18153,2,19,47,0.0 +18153,29,123.79,43,0.0 +18153,60,34,27,0.0 +18153,42,14,26,0.0 +18153,12,38,33,0.0 +18153,75,7.75,3,0.0 +18153,50,16.25,3,0.0 +18153,69,36,25,0.0 +18153,6,25,49,0.0 +18153,67,14,16,0.0 +18153,52,7,30,0.0 +18153,68,12.5,37,0.0 +18154,17,39,27,0.0 +18154,16,17.45,4,0.0 +18154,14,23.25,18,0.0 +18154,52,7,49,0.0 +18154,64,33.25,26,0.0 +18154,62,49.3,41,0.0 +18154,59,55,3,0.0 +18154,37,26,44,0.0 +18154,75,7.75,29,0.0 +18154,2,19,37,0.0 +18154,9,97,34,0.0 +18154,41,9.65,15,0.0 +18154,39,18,12,0.0 +18154,13,6,24,0.0 +18154,69,36,20,0.0 +18154,34,14,9,0.0 +18154,22,21,33,0.0 +18154,30,25.89,33,0.0 +18154,1,18,35,0.0 +18154,51,53,43,0.0 +18154,72,34.8,12,0.0 +18154,18,62.5,43,0.0 +18154,33,2.5,33,0.0 +18154,68,12.5,27,0.0 +18154,42,14,18,0.0 +18154,10,31,44,0.0 +18154,48,12.75,6,0.0 +18154,23,9,38,0.0 +18154,24,4.5,3,0.0 +18154,36,19,48,0.0 +18154,7,30,35,0.0 +18154,76,18,3,0.0 +18154,66,17,35,0.0 +18154,29,123.79,50,0.0 +18154,8,40,25,0.0 +18154,43,46,11,0.0 +18154,63,43.9,27,0.0 +18154,21,10,38,0.0 +18154,74,10,43,0.0 +18154,20,81,49,0.0 +18154,15,15.5,40,0.0 +18154,5,21.35,49,0.0 +18154,71,21.5,6,0.0 +18154,4,22,19,0.0 +18154,28,45.6,26,0.0 +18154,50,16.25,10,0.0 +18154,61,28.5,31,0.0 +18154,46,12,15,0.0 +18154,40,18.4,10,0.0 +18154,67,14,38,0.0 +18154,19,9.2,24,0.0 +18154,73,15,44,0.0 +18154,27,43.9,50,0.0 +18154,12,38,44,0.0 +18154,57,19.5,6,0.0 +18154,49,20,34,0.0 +18154,44,19.45,47,0.0 +18154,35,18,17,0.0 +18154,53,32.8,3,0.0 +18154,70,15,29,0.0 +18154,65,21.05,20,0.0 +18154,26,31.23,9,0.0 +18154,25,14,25,0.0 +18154,56,38,26,0.0 +18154,47,9.5,18,0.0 +18154,60,34,50,0.0 +18154,6,25,34,0.0 +18154,38,263.5,1,0.0 +18155,64,33.25,22,0.0 +18155,12,38,13,0.0 +18155,6,25,39,0.0 +18155,53,32.8,38,0.0 +18155,15,15.5,45,0.0 +18155,45,9.5,18,0.0 +18155,73,15,44,0.0 +18155,60,34,40,0.0 +18155,33,2.5,21,0.0 +18155,8,40,13,0.0 +18155,31,12.5,29,0.0 +18155,36,19,11,0.0 +18155,11,21,18,0.0 +18155,2,19,38,0.0 +18155,17,39,16,0.0 +18155,41,9.65,4,0.0 +18155,51,53,50,0.0 +18155,77,13,42,0.0 +18155,1,18,25,0.0 +18155,28,45.6,13,0.0 +18155,43,46,17,0.0 +18155,71,21.5,26,0.0 +18155,5,21.35,14,0.0 +18155,63,43.9,49,0.0 +18155,37,26,48,0.0 +18155,35,18,49,0.0 +18155,47,9.5,12,0.0 +18155,34,14,43,0.0 +18155,67,14,44,0.0 +18155,38,263.5,33,0.0 +18155,24,4.5,18,0.0 +18155,19,9.2,30,0.0 +18155,10,31,18,0.0 +18155,58,13.25,10,0.0 +18155,76,18,11,0.0 +18155,55,24,38,0.0 +18155,75,7.75,31,0.0 +18155,14,23.25,5,0.0 +18155,65,21.05,49,0.0 +18155,50,16.25,13,0.0 +18155,22,21,33,0.0 +18155,54,7.45,46,0.0 +18155,3,10,25,0.0 +18155,29,123.79,11,0.0 +18155,4,22,6,0.0 +18155,42,14,46,0.0 +18155,70,15,39,0.0 +18155,25,14,31,0.0 +18155,46,12,32,0.0 +18155,44,19.45,18,0.0 +18155,40,18.4,1,0.0 +18155,23,9,22,0.0 +18155,18,62.5,7,0.0 +18155,27,43.9,11,0.0 +18155,69,36,35,0.0 +18155,9,97,31,0.0 +18155,61,28.5,37,0.0 +18155,57,19.5,49,0.0 +18155,32,32,4,0.0 +18155,26,31.23,16,0.0 +18155,56,38,15,0.0 +18155,16,17.45,8,0.0 +18155,59,55,17,0.0 +18155,20,81,42,0.0 +18155,66,17,37,0.0 +18155,62,49.3,41,0.0 +18155,68,12.5,23,0.0 +18155,30,25.89,4,0.0 +18155,74,10,13,0.0 +18156,59,55,14,0.0 +18156,16,17.45,15,0.0 +18156,21,10,30,0.0 +18156,24,4.5,25,0.0 +18156,46,12,43,0.0 +18156,29,123.79,8,0.0 +18156,76,18,13,0.0 +18156,41,9.65,7,0.0 +18156,40,18.4,36,0.0 +18156,6,25,42,0.0 +18156,23,9,32,0.0 +18156,48,12.75,26,0.0 +18156,38,263.5,1,0.0 +18156,34,14,13,0.0 +18156,66,17,32,0.0 +18156,57,19.5,17,0.0 +18156,56,38,26,0.0 +18156,27,43.9,26,0.0 +18156,5,21.35,14,0.0 +18156,55,24,49,0.0 +18156,51,53,39,0.0 +18156,15,15.5,48,0.0 +18156,72,34.8,29,0.0 +18156,69,36,7,0.0 +18156,68,12.5,28,0.0 +18156,9,97,10,0.0 +18156,49,20,19,0.0 +18156,35,18,9,0.0 +18156,4,22,48,0.0 +18156,62,49.3,3,0.0 +18156,30,25.89,22,0.0 +18156,36,19,44,0.0 +18156,74,10,21,0.0 +18156,67,14,11,0.0 +18156,19,9.2,43,0.0 +18156,73,15,37,0.0 +18156,10,31,45,0.0 +18156,47,9.5,43,0.0 +18156,43,46,36,0.0 +18156,39,18,8,0.0 +18156,58,13.25,23,0.0 +18156,14,23.25,12,0.0 +18156,60,34,26,0.0 +18156,65,21.05,45,0.0 +18156,70,15,12,0.0 +18156,37,26,18,0.0 +18156,44,19.45,18,0.0 +18156,45,9.5,14,0.0 +18156,71,21.5,20,0.0 +18156,22,21,6,0.0 +18156,18,62.5,7,0.0 +18156,61,28.5,49,0.0 +18156,31,12.5,14,0.0 +18156,3,10,1,0.0 +18156,50,16.25,45,0.0 +18156,7,30,34,0.0 +18156,42,14,13,0.0 +18156,1,18,24,0.0 +18156,33,2.5,30,0.0 +18156,20,81,31,0.0 +18156,17,39,48,0.0 +18157,11,21,7,0.0 +18157,49,20,45,0.0 +18157,73,15,44,0.0 +18157,37,26,26,0.0 +18157,35,18,5,0.0 +18157,36,19,26,0.0 +18157,71,21.5,21,0.0 +18157,53,32.8,10,0.0 +18157,69,36,15,0.0 +18157,55,24,34,0.0 +18157,72,34.8,46,0.0 +18157,61,28.5,26,0.0 +18157,8,40,28,0.0 +18157,65,21.05,46,0.0 +18157,32,32,44,0.0 +18157,51,53,23,0.0 +18157,1,18,7,0.0 +18157,30,25.89,23,0.0 +18157,58,13.25,14,0.0 +18157,28,45.6,39,0.0 +18157,39,18,31,0.0 +18157,62,49.3,4,0.0 +18157,42,14,18,0.0 +18157,54,7.45,22,0.0 +18157,52,7,21,0.0 +18158,73,15,16,0.0 +18158,39,18,13,0.0 +18158,18,62.5,44,0.0 +18158,36,19,37,0.0 +18158,27,43.9,1,0.0 +18158,55,24,10,0.0 +18158,48,12.75,27,0.0 +18158,4,22,9,0.0 +18158,30,25.89,35,0.0 +18158,64,33.25,36,0.0 +18158,54,7.45,32,0.0 +18158,35,18,49,0.0 +18158,33,2.5,49,0.0 +18158,58,13.25,19,0.0 +18158,63,43.9,33,0.0 +18158,53,32.8,6,0.0 +18158,10,31,44,0.0 +18158,32,32,14,0.0 +18158,24,4.5,28,0.0 +18158,72,34.8,28,0.0 +18158,6,25,9,0.0 +18158,8,40,32,0.0 +18158,26,31.23,1,0.0 +18158,61,28.5,40,0.0 +18158,71,21.5,18,0.0 +18158,57,19.5,29,0.0 +18158,28,45.6,37,0.0 +18158,76,18,21,0.0 +18158,62,49.3,26,0.0 +18158,7,30,43,0.0 +18158,2,19,4,0.0 +18158,67,14,47,0.0 +18158,59,55,25,0.0 +18158,20,81,1,0.0 +18158,1,18,16,0.0 +18158,14,23.25,13,0.0 +18158,31,12.5,15,0.0 +18158,9,97,21,0.0 +18158,23,9,25,0.0 +18158,37,26,42,0.0 +18158,45,9.5,50,0.0 +18158,17,39,19,0.0 +18158,68,12.5,8,0.0 +18158,11,21,50,0.0 +18158,15,15.5,39,0.0 +18158,25,14,9,0.0 +18158,22,21,26,0.0 +18158,66,17,18,0.0 +18158,49,20,16,0.0 +18158,46,12,13,0.0 +18158,47,9.5,25,0.0 +18158,51,53,8,0.0 +18158,65,21.05,18,0.0 +18158,74,10,10,0.0 +18158,3,10,40,0.0 +18158,13,6,19,0.0 +18158,34,14,12,0.0 +18158,40,18.4,49,0.0 +18158,41,9.65,5,0.0 +18158,19,9.2,14,0.0 +18158,16,17.45,29,0.0 +18158,50,16.25,49,0.0 +18158,52,7,48,0.0 +18158,44,19.45,17,0.0 +18158,75,7.75,31,0.0 +18159,43,46,28,0.0 +18159,72,34.8,1,0.0 +18159,21,10,48,0.0 +18159,35,18,22,0.0 +18159,42,14,38,0.0 +18159,59,55,3,0.0 +18159,39,18,6,0.0 +18159,19,9.2,17,0.0 +18159,13,6,27,0.0 +18159,69,36,25,0.0 +18159,52,7,37,0.0 +18159,77,13,47,0.0 +18159,62,49.3,22,0.0 +18159,36,19,4,0.0 +18159,71,21.5,6,0.0 +18159,65,21.05,16,0.0 +18159,45,9.5,32,0.0 +18159,60,34,34,0.0 +18159,29,123.79,13,0.0 +18159,73,15,27,0.0 +18159,16,17.45,20,0.0 +18159,40,18.4,39,0.0 +18159,48,12.75,35,0.0 +18159,12,38,43,0.0 +18159,14,23.25,27,0.0 +18159,61,28.5,17,0.0 +18159,57,19.5,18,0.0 +18159,22,21,7,0.0 +18159,30,25.89,24,0.0 +18159,76,18,11,0.0 +18159,67,14,21,0.0 +18159,55,24,48,0.0 +18159,2,19,28,0.0 +18159,1,18,30,0.0 +18159,47,9.5,14,0.0 +18159,56,38,39,0.0 +18159,38,263.5,44,0.0 +18159,31,12.5,32,0.0 +18159,3,10,29,0.0 +18159,44,19.45,47,0.0 +18159,54,7.45,14,0.0 +18159,49,20,4,0.0 +18159,58,13.25,25,0.0 +18159,68,12.5,46,0.0 +18159,74,10,14,0.0 +18159,10,31,5,0.0 +18159,63,43.9,42,0.0 +18159,20,81,32,0.0 +18159,32,32,6,0.0 +18159,37,26,47,0.0 +18159,7,30,44,0.0 +18159,28,45.6,42,0.0 +18159,34,14,34,0.0 +18159,23,9,38,0.0 +18159,4,22,47,0.0 +18159,9,97,2,0.0 +18160,58,13.25,48,0.0 +18160,26,31.23,17,0.0 +18160,50,16.25,28,0.0 +18160,67,14,24,0.0 +18160,35,18,45,0.0 +18160,39,18,45,0.0 +18160,17,39,49,0.0 +18160,70,15,21,0.0 +18160,43,46,21,0.0 +18160,66,17,10,0.0 +18160,59,55,1,0.0 +18160,14,23.25,27,0.0 +18160,45,9.5,47,0.0 +18160,38,263.5,39,0.0 +18160,55,24,44,0.0 +18160,61,28.5,36,0.0 +18160,33,2.5,38,0.0 +18160,68,12.5,9,0.0 +18160,53,32.8,36,0.0 +18160,21,10,35,0.0 +18160,3,10,23,0.0 +18160,60,34,17,0.0 +18160,22,21,6,0.0 +18160,64,33.25,17,0.0 +18160,76,18,7,0.0 +18160,52,7,49,0.0 +18160,47,9.5,31,0.0 +18160,62,49.3,9,0.0 +18160,29,123.79,5,0.0 +18160,28,45.6,10,0.0 +18160,2,19,46,0.0 +18160,6,25,29,0.0 +18160,19,9.2,38,0.0 +18160,42,14,8,0.0 +18160,51,53,33,0.0 +18160,65,21.05,16,0.0 +18160,8,40,1,0.0 +18160,16,17.45,8,0.0 +18160,49,20,35,0.0 +18160,36,19,21,0.0 +18160,48,12.75,17,0.0 +18160,57,19.5,16,0.0 +18160,23,9,3,0.0 +18160,1,18,30,0.0 +18160,20,81,13,0.0 +18160,71,21.5,5,0.0 +18160,12,38,45,0.0 +18160,24,4.5,50,0.0 +18160,63,43.9,9,0.0 +18160,11,21,6,0.0 +18160,75,7.75,32,0.0 +18160,46,12,26,0.0 +18160,32,32,38,0.0 +18160,34,14,12,0.0 +18160,13,6,14,0.0 +18160,15,15.5,48,0.0 +18160,73,15,47,0.0 +18160,41,9.65,32,0.0 +18160,4,22,50,0.0 +18160,30,25.89,36,0.0 +18160,77,13,20,0.0 +18160,10,31,29,0.0 +18161,6,25,30,0.0 +18161,48,12.75,12,0.0 +18161,19,9.2,24,0.0 +18161,25,14,38,0.0 +18161,46,12,37,0.0 +18161,36,19,36,0.0 +18161,27,43.9,45,0.0 +18161,73,15,49,0.0 +18161,39,18,38,0.0 +18161,13,6,29,0.0 +18161,40,18.4,26,0.0 +18161,41,9.65,32,0.0 +18161,14,23.25,24,0.0 +18161,32,32,40,0.0 +18161,24,4.5,32,0.0 +18161,16,17.45,46,0.0 +18161,34,14,45,0.0 +18161,44,19.45,50,0.0 +18161,74,10,46,0.0 +18161,63,43.9,8,0.0 +18161,54,7.45,44,0.0 +18161,64,33.25,37,0.0 +18161,70,15,4,0.0 +18161,50,16.25,22,0.0 +18161,9,97,41,0.0 +18161,43,46,46,0.0 +18161,37,26,38,0.0 +18161,18,62.5,48,0.0 +18161,10,31,49,0.0 +18161,62,49.3,45,0.0 +18161,61,28.5,5,0.0 +18161,17,39,45,0.0 +18161,35,18,28,0.0 +18161,76,18,45,0.0 +18161,65,21.05,40,0.0 +18161,23,9,40,0.0 +18162,33,2.5,9,0.0 +18162,48,12.75,17,0.0 +18162,12,38,50,0.0 +18162,40,18.4,23,0.0 +18162,2,19,42,0.0 +18162,21,10,27,0.0 +18162,44,19.45,35,0.0 +18162,54,7.45,16,0.0 +18162,10,31,28,0.0 +18162,73,15,5,0.0 +18163,16,17.45,3,0.0 +18163,50,16.25,31,0.0 +18163,59,55,48,0.0 +18163,51,53,48,0.0 +18163,54,7.45,49,0.0 +18163,56,38,42,0.0 +18163,57,19.5,22,0.0 +18163,1,18,17,0.0 +18163,66,17,49,0.0 +18163,44,19.45,15,0.0 +18163,28,45.6,13,0.0 +18163,64,33.25,7,0.0 +18163,3,10,15,0.0 +18163,34,14,11,0.0 +18163,6,25,29,0.0 +18163,67,14,49,0.0 +18163,27,43.9,35,0.0 +18163,7,30,2,0.0 +18163,9,97,15,0.0 +18163,26,31.23,36,0.0 +18163,17,39,46,0.0 +18163,14,23.25,45,0.0 +18163,45,9.5,14,0.0 +18163,55,24,38,0.0 +18163,35,18,6,0.0 +18163,21,10,34,0.0 +18163,76,18,12,0.0 +18163,72,34.8,21,0.0 +18163,38,263.5,26,0.0 +18163,32,32,7,0.0 +18163,12,38,23,0.0 +18163,40,18.4,48,0.0 +18163,4,22,1,0.0 +18163,2,19,40,0.0 +18163,77,13,7,0.0 +18163,63,43.9,19,0.0 +18163,13,6,45,0.0 +18163,48,12.75,6,0.0 +18163,37,26,30,0.0 +18163,46,12,9,0.0 +18163,5,21.35,2,0.0 +18163,30,25.89,18,0.0 +18163,62,49.3,10,0.0 +18163,71,21.5,24,0.0 +18163,22,21,1,0.0 +18163,42,14,41,0.0 +18163,41,9.65,30,0.0 +18163,23,9,18,0.0 +18163,36,19,8,0.0 +18163,33,2.5,36,0.0 +18163,20,81,44,0.0 +18163,39,18,41,0.0 +18163,19,9.2,11,0.0 +18164,10,31,19,0.0 +18164,54,7.45,34,0.0 +18164,75,7.75,18,0.0 +18164,26,31.23,44,0.0 +18164,23,9,9,0.0 +18164,9,97,2,0.0 +18164,57,19.5,15,0.0 +18164,76,18,37,0.0 +18164,63,43.9,21,0.0 +18164,42,14,20,0.0 +18164,38,263.5,33,0.0 +18164,55,24,3,0.0 +18164,51,53,38,0.0 +18164,12,38,15,0.0 +18164,19,9.2,48,0.0 +18164,45,9.5,41,0.0 +18164,32,32,42,0.0 +18164,69,36,2,0.0 +18164,40,18.4,4,0.0 +18164,50,16.25,24,0.0 +18164,3,10,25,0.0 +18164,49,20,49,0.0 +18164,34,14,7,0.0 +18164,30,25.89,4,0.0 +18164,39,18,11,0.0 +18164,27,43.9,47,0.0 +18164,24,4.5,15,0.0 +18164,70,15,5,0.0 +18164,46,12,19,0.0 +18164,8,40,9,0.0 +18164,66,17,45,0.0 +18164,31,12.5,35,0.0 +18164,25,14,17,0.0 +18164,60,34,32,0.0 +18164,68,12.5,33,0.0 +18164,5,21.35,19,0.0 +18164,44,19.45,34,0.0 +18164,35,18,38,0.0 +18164,28,45.6,6,0.0 +18164,14,23.25,31,0.0 +18164,62,49.3,1,0.0 +18164,56,38,49,0.0 +18164,15,15.5,50,0.0 +18164,33,2.5,6,0.0 +18164,53,32.8,28,0.0 +18164,17,39,12,0.0 +18164,64,33.25,23,0.0 +18164,72,34.8,23,0.0 +18164,1,18,38,0.0 +18164,21,10,37,0.0 +18164,2,19,15,0.0 +18164,61,28.5,50,0.0 +18164,47,9.5,8,0.0 +18164,22,21,42,0.0 +18164,52,7,39,0.0 +18164,7,30,18,0.0 +18164,41,9.65,17,0.0 +18164,67,14,45,0.0 +18164,71,21.5,5,0.0 +18164,13,6,49,0.0 +18164,6,25,37,0.0 +18164,77,13,50,0.0 +18165,18,62.5,11,0.0 +18165,46,12,34,0.0 +18165,67,14,35,0.0 +18165,62,49.3,9,0.0 +18165,15,15.5,6,0.0 +18165,21,10,3,0.0 +18165,19,9.2,49,0.0 +18165,44,19.45,12,0.0 +18165,43,46,30,0.0 +18165,59,55,3,0.0 +18165,6,25,42,0.0 +18165,45,9.5,31,0.0 +18165,1,18,40,0.0 +18165,41,9.65,7,0.0 +18165,39,18,13,0.0 +18165,55,24,7,0.0 +18165,57,19.5,22,0.0 +18165,64,33.25,26,0.0 +18165,53,32.8,4,0.0 +18165,3,10,36,0.0 +18165,68,12.5,29,0.0 +18165,72,34.8,49,0.0 +18165,65,21.05,24,0.0 +18165,31,12.5,24,0.0 +18165,17,39,20,0.0 +18165,20,81,14,0.0 +18165,14,23.25,30,0.0 +18165,5,21.35,38,0.0 +18165,54,7.45,2,0.0 +18165,24,4.5,29,0.0 +18165,40,18.4,23,0.0 +18165,27,43.9,1,0.0 +18165,56,38,3,0.0 +18165,37,26,37,0.0 +18165,48,12.75,20,0.0 +18165,52,7,39,0.0 +18165,38,263.5,35,0.0 +18165,29,123.79,6,0.0 +18165,7,30,19,0.0 +18165,58,13.25,18,0.0 +18165,30,25.89,10,0.0 +18165,47,9.5,6,0.0 +18165,11,21,2,0.0 +18165,4,22,1,0.0 +18165,8,40,20,0.0 +18165,74,10,39,0.0 +18165,70,15,12,0.0 +18165,35,18,31,0.0 +18165,71,21.5,8,0.0 +18165,13,6,7,0.0 +18165,77,13,28,0.0 +18165,32,32,42,0.0 +18166,58,13.25,16,0.0 +18166,71,21.5,21,0.0 +18166,51,53,23,0.0 +18166,23,9,10,0.0 +18166,70,15,10,0.0 +18166,9,97,12,0.0 +18166,36,19,50,0.0 +18166,47,9.5,18,0.0 +18166,14,23.25,16,0.0 +18166,37,26,23,0.0 +18166,20,81,45,0.0 +18166,24,4.5,34,0.0 +18166,66,17,10,0.0 +18166,62,49.3,33,0.0 +18166,72,34.8,20,0.0 +18166,73,15,42,0.0 +18166,64,33.25,48,0.0 +18166,56,38,1,0.0 +18166,10,31,2,0.0 +18166,21,10,38,0.0 +18166,77,13,29,0.0 +18166,4,22,43,0.0 +18166,44,19.45,28,0.0 +18166,2,19,19,0.0 +18166,13,6,9,0.0 +18166,8,40,45,0.0 +18166,45,9.5,36,0.0 +18166,76,18,19,0.0 +18166,1,18,21,0.0 +18166,42,14,16,0.0 +18166,19,9.2,14,0.0 +18166,60,34,16,0.0 +18166,31,12.5,29,0.0 +18166,27,43.9,18,0.0 +18166,28,45.6,39,0.0 +18166,67,14,38,0.0 +18166,34,14,46,0.0 +18166,43,46,13,0.0 +18166,57,19.5,12,0.0 +18166,11,21,29,0.0 +18166,6,25,32,0.0 +18166,63,43.9,1,0.0 +18167,24,4.5,11,0.0 +18167,36,19,19,0.0 +18167,72,34.8,48,0.0 +18167,43,46,29,0.0 +18167,76,18,37,0.0 +18167,6,25,41,0.0 +18167,18,62.5,20,0.0 +18167,44,19.45,7,0.0 +18167,74,10,20,0.0 +18167,58,13.25,35,0.0 +18167,21,10,20,0.0 +18167,65,21.05,21,0.0 +18167,2,19,19,0.0 +18167,17,39,29,0.0 +18167,35,18,18,0.0 +18167,41,9.65,27,0.0 +18167,32,32,18,0.0 +18167,77,13,37,0.0 +18167,30,25.89,11,0.0 +18167,9,97,10,0.0 +18167,63,43.9,24,0.0 +18167,31,12.5,44,0.0 +18167,57,19.5,16,0.0 +18167,51,53,11,0.0 +18167,38,263.5,29,0.0 +18167,37,26,41,0.0 +18167,26,31.23,40,0.0 +18167,47,9.5,36,0.0 +18167,25,14,41,0.0 +18167,14,23.25,23,0.0 +18167,29,123.79,18,0.0 +18167,75,7.75,31,0.0 +18168,3,10,3,0.0 +18168,43,46,41,0.0 +18168,62,49.3,2,0.0 +18168,21,10,1,0.0 +18168,9,97,27,0.0 +18168,42,14,14,0.0 +18168,57,19.5,41,0.0 +18168,2,19,41,0.0 +18168,5,21.35,20,0.0 +18168,24,4.5,5,0.0 +18168,53,32.8,15,0.0 +18168,54,7.45,32,0.0 +18168,77,13,15,0.0 +18168,40,18.4,20,0.0 +18168,41,9.65,7,0.0 +18169,4,22,41,0.0 +18169,53,32.8,35,0.0 +18169,18,62.5,5,0.0 +18169,10,31,28,0.0 +18169,69,36,7,0.0 +18169,19,9.2,14,0.0 +18169,16,17.45,17,0.0 +18169,33,2.5,8,0.0 +18169,23,9,38,0.0 +18169,56,38,11,0.0 +18169,15,15.5,43,0.0 +18169,20,81,49,0.0 +18169,45,9.5,29,0.0 +18169,17,39,49,0.0 +18169,39,18,9,0.0 +18169,74,10,10,0.0 +18169,40,18.4,49,0.0 +18169,64,33.25,37,0.0 +18169,60,34,4,0.0 +18169,66,17,9,0.0 +18169,72,34.8,3,0.0 +18169,11,21,1,0.0 +18169,41,9.65,17,0.0 +18169,34,14,33,0.0 +18169,76,18,49,0.0 +18169,47,9.5,33,0.0 +18169,3,10,7,0.0 +18169,5,21.35,21,0.0 +18169,51,53,21,0.0 +18169,7,30,19,0.0 +18169,30,25.89,45,0.0 +18169,1,18,16,0.0 +18169,36,19,37,0.0 +18169,54,7.45,31,0.0 +18169,49,20,13,0.0 +18169,58,13.25,9,0.0 +18169,32,32,1,0.0 +18169,22,21,43,0.0 +18169,75,7.75,18,0.0 +18169,9,97,18,0.0 +18169,73,15,23,0.0 +18169,12,38,40,0.0 +18169,61,28.5,35,0.0 +18169,48,12.75,16,0.0 +18169,31,12.5,1,0.0 +18169,65,21.05,10,0.0 +18169,44,19.45,42,0.0 +18169,52,7,25,0.0 +18169,8,40,24,0.0 +18169,37,26,42,0.0 +18169,59,55,49,0.0 +18169,42,14,37,0.0 +18169,13,6,29,0.0 +18169,35,18,30,0.0 +18169,55,24,5,0.0 +18169,77,13,4,0.0 +18169,71,21.5,26,0.0 +18169,38,263.5,6,0.0 +18169,68,12.5,3,0.0 +18169,70,15,32,0.0 +18169,25,14,32,0.0 +18169,63,43.9,39,0.0 +18169,46,12,11,0.0 +18169,2,19,7,0.0 +18169,57,19.5,7,0.0 +18169,43,46,6,0.0 +18169,50,16.25,39,0.0 +18169,29,123.79,50,0.0 +18169,24,4.5,40,0.0 +18169,28,45.6,26,0.0 +18169,6,25,11,0.0 +18169,67,14,8,0.0 +18169,26,31.23,36,0.0 +18169,62,49.3,49,0.0 +18169,21,10,9,0.0 +18169,14,23.25,43,0.0 +18169,27,43.9,28,0.0 +18170,63,43.9,42,0.0 +18170,74,10,23,0.0 +18170,6,25,18,0.0 +18170,55,24,5,0.0 +18170,40,18.4,5,0.0 +18170,59,55,38,0.0 +18170,16,17.45,40,0.0 +18170,27,43.9,11,0.0 +18170,56,38,42,0.0 +18170,35,18,6,0.0 +18170,66,17,12,0.0 +18170,21,10,13,0.0 +18170,61,28.5,15,0.0 +18170,31,12.5,24,0.0 +18170,17,39,20,0.0 +18170,11,21,13,0.0 +18170,26,31.23,25,0.0 +18170,44,19.45,48,0.0 +18170,49,20,5,0.0 +18170,69,36,17,0.0 +18170,41,9.65,38,0.0 +18170,42,14,21,0.0 +18170,68,12.5,37,0.0 +18170,15,15.5,32,0.0 +18170,67,14,11,0.0 +18170,4,22,45,0.0 +18170,9,97,15,0.0 +18170,64,33.25,33,0.0 +18170,71,21.5,7,0.0 +18170,33,2.5,27,0.0 +18170,8,40,15,0.0 +18170,39,18,24,0.0 +18170,28,45.6,44,0.0 +18170,52,7,36,0.0 +18170,54,7.45,13,0.0 +18170,12,38,50,0.0 +18170,70,15,25,0.0 +18170,47,9.5,6,0.0 +18170,14,23.25,49,0.0 +18171,23,9,10,0.0 +18171,60,34,9,0.0 +18171,56,38,48,0.0 +18171,37,26,11,0.0 +18171,2,19,2,0.0 +18171,42,14,29,0.0 +18171,40,18.4,4,0.0 +18171,7,30,9,0.0 +18171,75,7.75,32,0.0 +18171,18,62.5,46,0.0 +18171,32,32,46,0.0 +18171,11,21,13,0.0 +18171,53,32.8,29,0.0 +18171,45,9.5,18,0.0 +18171,47,9.5,12,0.0 +18171,30,25.89,32,0.0 +18171,35,18,26,0.0 +18171,9,97,28,0.0 +18171,41,9.65,8,0.0 +18171,38,263.5,17,0.0 +18171,10,31,35,0.0 +18171,16,17.45,38,0.0 +18171,54,7.45,17,0.0 +18171,48,12.75,2,0.0 +18171,73,15,19,0.0 +18171,64,33.25,15,0.0 +18171,34,14,33,0.0 +18171,28,45.6,27,0.0 +18171,71,21.5,6,0.0 +18172,31,12.5,41,0.0 +18172,67,14,28,0.0 +18172,21,10,21,0.0 +18172,71,21.5,39,0.0 +18172,65,21.05,1,0.0 +18172,20,81,13,0.0 +18172,43,46,21,0.0 +18172,26,31.23,25,0.0 +18172,4,22,14,0.0 +18172,69,36,21,0.0 +18172,60,34,42,0.0 +18172,59,55,22,0.0 +18172,5,21.35,23,0.0 +18172,36,19,35,0.0 +18172,70,15,12,0.0 +18172,16,17.45,49,0.0 +18172,28,45.6,40,0.0 +18172,77,13,48,0.0 +18172,48,12.75,37,0.0 +18172,74,10,2,0.0 +18172,58,13.25,31,0.0 +18172,75,7.75,11,0.0 +18172,50,16.25,8,0.0 +18172,68,12.5,50,0.0 +18172,46,12,29,0.0 +18172,55,24,8,0.0 +18172,52,7,45,0.0 +18172,39,18,35,0.0 +18172,34,14,49,0.0 +18172,3,10,42,0.0 +18172,10,31,4,0.0 +18172,40,18.4,41,0.0 +18172,14,23.25,49,0.0 +18173,23,9,25,0.0 +18173,37,26,18,0.0 +18173,19,9.2,46,0.0 +18173,20,81,23,0.0 +18173,76,18,5,0.0 +18173,36,19,8,0.0 +18173,27,43.9,3,0.0 +18173,14,23.25,29,0.0 +18173,64,33.25,33,0.0 +18173,5,21.35,12,0.0 +18173,22,21,14,0.0 +18173,40,18.4,8,0.0 +18173,34,14,44,0.0 +18173,56,38,46,0.0 +18173,29,123.79,24,0.0 +18173,18,62.5,7,0.0 +18173,69,36,20,0.0 +18173,12,38,32,0.0 +18173,44,19.45,6,0.0 +18173,71,21.5,17,0.0 +18173,15,15.5,33,0.0 +18173,61,28.5,28,0.0 +18173,30,25.89,29,0.0 +18173,55,24,49,0.0 +18173,51,53,8,0.0 +18173,73,15,38,0.0 +18173,59,55,35,0.0 +18173,16,17.45,26,0.0 +18173,11,21,6,0.0 +18173,28,45.6,43,0.0 +18173,9,97,7,0.0 +18173,75,7.75,18,0.0 +18173,35,18,3,0.0 +18173,38,263.5,10,0.0 +18173,60,34,19,0.0 +18173,67,14,16,0.0 +18173,70,15,5,0.0 +18173,43,46,49,0.0 +18173,49,20,12,0.0 +18173,57,19.5,18,0.0 +18173,52,7,15,0.0 +18174,49,20,41,0.0 +18174,76,18,10,0.0 +18174,20,81,26,0.0 +18174,21,10,42,0.0 +18174,53,32.8,2,0.0 +18174,34,14,31,0.0 +18174,54,7.45,7,0.0 +18174,37,26,16,0.0 +18174,33,2.5,9,0.0 +18174,69,36,27,0.0 +18174,44,19.45,22,0.0 +18174,42,14,29,0.0 +18174,9,97,6,0.0 +18174,59,55,3,0.0 +18174,64,33.25,2,0.0 +18174,41,9.65,43,0.0 +18174,57,19.5,42,0.0 +18174,12,38,5,0.0 +18174,39,18,10,0.0 +18174,66,17,14,0.0 +18174,72,34.8,19,0.0 +18174,11,21,47,0.0 +18174,26,31.23,25,0.0 +18174,61,28.5,11,0.0 +18174,10,31,36,0.0 +18174,7,30,19,0.0 +18174,43,46,32,0.0 +18174,14,23.25,15,0.0 +18174,56,38,30,0.0 +18174,52,7,16,0.0 +18174,30,25.89,38,0.0 +18174,29,123.79,43,0.0 +18174,73,15,11,0.0 +18174,63,43.9,28,0.0 +18174,67,14,28,0.0 +18175,54,7.45,35,0.0 +18175,61,28.5,2,0.0 +18175,76,18,44,0.0 +18175,49,20,49,0.0 +18175,44,19.45,49,0.0 +18175,28,45.6,11,0.0 +18175,24,4.5,48,0.0 +18175,57,19.5,6,0.0 +18175,20,81,33,0.0 +18175,25,14,37,0.0 +18175,52,7,10,0.0 +18175,39,18,10,0.0 +18175,21,10,28,0.0 +18175,11,21,37,0.0 +18175,23,9,25,0.0 +18175,31,12.5,8,0.0 +18175,69,36,34,0.0 +18175,37,26,40,0.0 +18175,50,16.25,48,0.0 +18175,33,2.5,34,0.0 +18175,55,24,20,0.0 +18175,51,53,3,0.0 +18175,18,62.5,44,0.0 +18175,62,49.3,27,0.0 +18175,77,13,3,0.0 +18175,68,12.5,47,0.0 +18175,64,33.25,12,0.0 +18175,13,6,6,0.0 +18175,53,32.8,19,0.0 +18175,2,19,32,0.0 +18175,15,15.5,3,0.0 +18175,17,39,32,0.0 +18175,30,25.89,29,0.0 +18175,35,18,9,0.0 +18175,16,17.45,49,0.0 +18175,43,46,44,0.0 +18175,75,7.75,41,0.0 +18175,67,14,6,0.0 +18175,9,97,7,0.0 +18175,71,21.5,11,0.0 +18175,59,55,39,0.0 +18175,48,12.75,40,0.0 +18175,41,9.65,3,0.0 +18175,74,10,8,0.0 +18175,66,17,44,0.0 +18176,12,38,33,0.0 +18176,46,12,14,0.0 +18176,57,19.5,40,0.0 +18176,40,18.4,26,0.0 +18176,31,12.5,44,0.0 +18176,65,21.05,24,0.0 +18176,50,16.25,10,0.0 +18176,32,32,4,0.0 +18176,19,9.2,14,0.0 +18176,48,12.75,33,0.0 +18176,42,14,22,0.0 +18176,36,19,45,0.0 +18176,7,30,3,0.0 +18176,38,263.5,29,0.0 +18176,35,18,28,0.0 +18176,44,19.45,17,0.0 +18176,22,21,19,0.0 +18176,28,45.6,13,0.0 +18176,20,81,15,0.0 +18176,43,46,42,0.0 +18176,15,15.5,31,0.0 +18176,26,31.23,39,0.0 +18176,49,20,4,0.0 +18176,67,14,11,0.0 +18176,52,7,43,0.0 +18176,14,23.25,5,0.0 +18176,69,36,24,0.0 +18176,54,7.45,20,0.0 +18176,17,39,29,0.0 +18176,6,25,22,0.0 +18176,75,7.75,42,0.0 +18176,23,9,9,0.0 +18176,1,18,12,0.0 +18176,10,31,35,0.0 +18176,70,15,26,0.0 +18176,73,15,29,0.0 +18176,55,24,6,0.0 +18176,27,43.9,29,0.0 +18176,53,32.8,28,0.0 +18176,11,21,26,0.0 +18176,24,4.5,26,0.0 +18176,29,123.79,21,0.0 +18176,74,10,33,0.0 +18176,41,9.65,8,0.0 +18176,72,34.8,30,0.0 +18176,66,17,17,0.0 +18176,4,22,9,0.0 +18176,76,18,31,0.0 +18176,37,26,35,0.0 +18176,61,28.5,44,0.0 +18176,45,9.5,2,0.0 +18176,3,10,12,0.0 +18176,5,21.35,15,0.0 +18176,77,13,39,0.0 +18176,47,9.5,2,0.0 +18176,16,17.45,43,0.0 +18176,63,43.9,31,0.0 +18176,39,18,15,0.0 +18176,18,62.5,32,0.0 +18176,2,19,24,0.0 +18176,64,33.25,8,0.0 +18176,59,55,41,0.0 +18176,13,6,15,0.0 +18176,68,12.5,20,0.0 +18176,9,97,28,0.0 +18176,33,2.5,10,0.0 +18176,60,34,31,0.0 +18176,62,49.3,32,0.0 +18176,30,25.89,19,0.0 +18176,58,13.25,34,0.0 +18176,71,21.5,45,0.0 +18177,6,25,13,0.0 +18177,42,14,45,0.0 +18177,13,6,1,0.0 +18177,74,10,50,0.0 +18177,26,31.23,10,0.0 +18177,7,30,32,0.0 +18177,33,2.5,6,0.0 +18177,20,81,48,0.0 +18177,31,12.5,36,0.0 +18177,12,38,41,0.0 +18177,55,24,7,0.0 +18177,76,18,10,0.0 +18177,58,13.25,15,0.0 +18177,24,4.5,39,0.0 +18177,1,18,34,0.0 +18177,8,40,15,0.0 +18177,10,31,11,0.0 +18177,67,14,33,0.0 +18177,40,18.4,41,0.0 +18177,15,15.5,15,0.0 +18177,68,12.5,48,0.0 +18177,65,21.05,28,0.0 +18177,19,9.2,4,0.0 +18177,73,15,7,0.0 +18177,41,9.65,33,0.0 +18177,51,53,13,0.0 +18177,9,97,17,0.0 +18177,45,9.5,29,0.0 +18177,30,25.89,7,0.0 +18177,29,123.79,13,0.0 +18177,56,38,27,0.0 +18177,28,45.6,27,0.0 +18177,72,34.8,6,0.0 +18177,35,18,11,0.0 +18177,75,7.75,33,0.0 +18177,70,15,37,0.0 +18177,22,21,20,0.0 +18177,60,34,47,0.0 +18178,62,49.3,15,0.0 +18178,75,7.75,30,0.0 +18178,35,18,32,0.0 +18178,51,53,33,0.0 +18178,16,17.45,18,0.0 +18178,49,20,42,0.0 +18178,8,40,5,0.0 +18178,13,6,7,0.0 +18179,20,81,2,0.0 +18179,73,15,37,0.0 +18179,10,31,33,0.0 +18179,68,12.5,5,0.0 +18179,46,12,4,0.0 +18179,53,32.8,5,0.0 +18179,44,19.45,47,0.0 +18179,35,18,8,0.0 +18179,52,7,22,0.0 +18179,63,43.9,39,0.0 +18179,49,20,3,0.0 +18179,70,15,41,0.0 +18179,36,19,9,0.0 +18179,11,21,45,0.0 +18179,5,21.35,32,0.0 +18179,50,16.25,2,0.0 +18179,8,40,47,0.0 +18179,24,4.5,35,0.0 +18179,69,36,4,0.0 +18179,28,45.6,8,0.0 +18179,65,21.05,45,0.0 +18179,60,34,22,0.0 +18179,40,18.4,16,0.0 +18180,26,31.23,19,0.0 +18180,77,13,9,0.0 +18180,12,38,19,0.0 +18180,17,39,48,0.0 +18180,23,9,17,0.0 +18180,64,33.25,25,0.0 +18180,50,16.25,21,0.0 +18180,47,9.5,47,0.0 +18180,3,10,49,0.0 +18180,67,14,11,0.0 +18180,5,21.35,16,0.0 +18180,56,38,20,0.0 +18180,24,4.5,2,0.0 +18180,57,19.5,44,0.0 +18180,8,40,33,0.0 +18180,51,53,28,0.0 +18180,43,46,3,0.0 +18180,33,2.5,31,0.0 +18180,58,13.25,19,0.0 +18180,35,18,17,0.0 +18180,54,7.45,25,0.0 +18180,31,12.5,29,0.0 +18180,48,12.75,23,0.0 +18180,13,6,32,0.0 +18180,11,21,44,0.0 +18180,53,32.8,45,0.0 +18180,34,14,5,0.0 +18180,21,10,6,0.0 +18180,59,55,41,0.0 +18180,28,45.6,24,0.0 +18180,36,19,18,0.0 +18180,19,9.2,12,0.0 +18181,30,25.89,8,0.0 +18181,12,38,46,0.0 +18181,73,15,41,0.0 +18181,55,24,26,0.0 +18181,18,62.5,2,0.0 +18181,45,9.5,23,0.0 +18181,41,9.65,22,0.0 +18181,63,43.9,4,0.0 +18181,52,7,43,0.0 +18181,34,14,6,0.0 +18181,49,20,45,0.0 +18181,17,39,12,0.0 +18181,26,31.23,46,0.0 +18181,21,10,44,0.0 +18181,39,18,28,0.0 +18181,32,32,25,0.0 +18181,1,18,16,0.0 +18181,37,26,41,0.0 +18181,33,2.5,15,0.0 +18181,16,17.45,8,0.0 +18181,77,13,37,0.0 +18181,62,49.3,34,0.0 +18181,15,15.5,26,0.0 +18182,47,9.5,7,0.0 +18182,36,19,36,0.0 +18182,27,43.9,2,0.0 +18182,34,14,20,0.0 +18182,38,263.5,17,0.0 +18182,72,34.8,1,0.0 +18182,65,21.05,35,0.0 +18182,37,26,4,0.0 +18182,16,17.45,43,0.0 +18182,54,7.45,4,0.0 +18182,20,81,23,0.0 +18183,58,13.25,25,0.0 +18183,66,17,45,0.0 +18183,57,19.5,27,0.0 +18183,6,25,45,0.0 +18183,32,32,6,0.0 +18183,23,9,28,0.0 +18183,69,36,24,0.0 +18183,46,12,28,0.0 +18183,45,9.5,42,0.0 +18183,54,7.45,20,0.0 +18183,44,19.45,17,0.0 +18183,65,21.05,44,0.0 +18183,62,49.3,34,0.0 +18183,28,45.6,33,0.0 +18183,18,62.5,44,0.0 +18183,71,21.5,12,0.0 +18183,15,15.5,43,0.0 +18183,41,9.65,11,0.0 +18183,10,31,44,0.0 +18183,61,28.5,9,0.0 +18183,68,12.5,22,0.0 +18183,76,18,27,0.0 +18183,42,14,46,0.0 +18183,2,19,26,0.0 +18183,50,16.25,1,0.0 +18183,33,2.5,45,0.0 +18183,12,38,21,0.0 +18183,39,18,32,0.0 +18183,75,7.75,20,0.0 +18183,43,46,8,0.0 +18183,64,33.25,19,0.0 +18183,7,30,19,0.0 +18183,48,12.75,46,0.0 +18183,27,43.9,21,0.0 +18183,26,31.23,19,0.0 +18183,5,21.35,9,0.0 +18183,25,14,29,0.0 +18183,73,15,2,0.0 +18183,35,18,6,0.0 +18184,50,16.25,31,0.0 +18185,44,19.45,38,0.0 +18185,5,21.35,42,0.0 +18185,41,9.65,50,0.0 +18185,32,32,16,0.0 +18185,20,81,40,0.0 +18185,16,17.45,17,0.0 +18185,52,7,5,0.0 +18185,39,18,40,0.0 +18185,10,31,11,0.0 +18185,29,123.79,1,0.0 +18185,13,6,47,0.0 +18185,1,18,4,0.0 +18185,64,33.25,34,0.0 +18185,62,49.3,17,0.0 +18185,27,43.9,46,0.0 +18185,4,22,38,0.0 +18185,49,20,12,0.0 +18185,60,34,35,0.0 +18185,69,36,39,0.0 +18185,30,25.89,34,0.0 +18185,76,18,36,0.0 +18185,21,10,8,0.0 +18185,75,7.75,48,0.0 +18185,33,2.5,37,0.0 +18185,57,19.5,32,0.0 +18185,72,34.8,5,0.0 +18185,48,12.75,38,0.0 +18185,35,18,13,0.0 +18185,6,25,7,0.0 +18185,42,14,10,0.0 +18185,26,31.23,36,0.0 +18185,19,9.2,3,0.0 +18185,56,38,7,0.0 +18185,43,46,1,0.0 +18185,22,21,32,0.0 +18185,51,53,43,0.0 +18185,59,55,28,0.0 +18185,46,12,8,0.0 +18185,63,43.9,49,0.0 +18185,12,38,37,0.0 +18185,40,18.4,44,0.0 +18185,74,10,36,0.0 +18185,7,30,10,0.0 +18185,58,13.25,28,0.0 +18185,37,26,28,0.0 +18185,14,23.25,42,0.0 +18185,68,12.5,5,0.0 +18185,65,21.05,28,0.0 +18185,71,21.5,6,0.0 +18185,2,19,23,0.0 +18185,67,14,29,0.0 +18185,36,19,11,0.0 +18185,53,32.8,2,0.0 +18185,47,9.5,8,0.0 +18185,55,24,48,0.0 +18185,73,15,43,0.0 +18185,25,14,4,0.0 +18185,17,39,8,0.0 +18185,70,15,19,0.0 +18185,50,16.25,31,0.0 +18185,31,12.5,49,0.0 +18185,18,62.5,1,0.0 +18185,24,4.5,30,0.0 +18185,23,9,14,0.0 +18185,66,17,16,0.0 +18185,54,7.45,19,0.0 +18185,34,14,12,0.0 +18185,11,21,6,0.0 +18185,8,40,41,0.0 +18185,38,263.5,48,0.0 +18185,28,45.6,40,0.0 +18185,9,97,18,0.0 +18186,40,18.4,47,0.0 +18186,39,18,13,0.0 +18186,52,7,1,0.0 +18186,64,33.25,41,0.0 +18186,70,15,19,0.0 +18186,7,30,41,0.0 +18186,14,23.25,15,0.0 +18186,51,53,45,0.0 +18186,10,31,49,0.0 +18186,49,20,43,0.0 +18186,37,26,31,0.0 +18186,25,14,6,0.0 +18186,58,13.25,7,0.0 +18186,66,17,32,0.0 +18186,76,18,28,0.0 +18186,32,32,47,0.0 +18186,61,28.5,28,0.0 +18186,59,55,40,0.0 +18186,55,24,36,0.0 +18186,68,12.5,9,0.0 +18186,23,9,25,0.0 +18186,4,22,49,0.0 +18186,30,25.89,15,0.0 +18186,31,12.5,8,0.0 +18186,43,46,42,0.0 +18186,60,34,37,0.0 +18186,16,17.45,21,0.0 +18186,22,21,41,0.0 +18186,62,49.3,6,0.0 +18186,20,81,9,0.0 +18186,15,15.5,17,0.0 +18186,53,32.8,9,0.0 +18186,69,36,24,0.0 +18186,63,43.9,31,0.0 +18186,6,25,41,0.0 +18186,19,9.2,25,0.0 +18186,11,21,42,0.0 +18186,56,38,19,0.0 +18186,74,10,30,0.0 +18186,28,45.6,44,0.0 +18186,47,9.5,50,0.0 +18186,41,9.65,16,0.0 +18186,36,19,30,0.0 +18186,1,18,21,0.0 +18186,8,40,3,0.0 +18187,75,7.75,17,0.0 +18187,73,15,44,0.0 +18187,76,18,23,0.0 +18187,34,14,9,0.0 +18187,43,46,7,0.0 +18187,5,21.35,4,0.0 +18187,70,15,50,0.0 +18187,55,24,16,0.0 +18187,52,7,7,0.0 +18187,27,43.9,48,0.0 +18187,19,9.2,28,0.0 +18187,65,21.05,13,0.0 +18187,49,20,30,0.0 +18187,23,9,12,0.0 +18187,51,53,14,0.0 +18187,10,31,9,0.0 +18187,59,55,43,0.0 +18187,21,10,40,0.0 +18187,35,18,6,0.0 +18187,54,7.45,32,0.0 +18187,44,19.45,39,0.0 +18187,37,26,9,0.0 +18187,72,34.8,3,0.0 +18187,13,6,26,0.0 +18187,18,62.5,31,0.0 +18187,31,12.5,46,0.0 +18187,29,123.79,16,0.0 +18187,47,9.5,47,0.0 +18187,58,13.25,23,0.0 +18187,24,4.5,3,0.0 +18187,28,45.6,15,0.0 +18187,74,10,17,0.0 +18187,26,31.23,1,0.0 +18187,3,10,39,0.0 +18187,67,14,10,0.0 +18187,61,28.5,35,0.0 +18187,69,36,15,0.0 +18187,7,30,8,0.0 +18187,14,23.25,7,0.0 +18187,2,19,12,0.0 +18187,12,38,36,0.0 +18187,66,17,37,0.0 +18187,8,40,40,0.0 +18187,45,9.5,9,0.0 +18187,77,13,30,0.0 +18187,38,263.5,15,0.0 +18187,30,25.89,16,0.0 +18187,32,32,44,0.0 +18187,64,33.25,47,0.0 +18187,46,12,9,0.0 +18187,6,25,25,0.0 +18187,33,2.5,39,0.0 +18187,20,81,5,0.0 +18187,42,14,2,0.0 +18187,50,16.25,1,0.0 +18187,41,9.65,31,0.0 +18187,53,32.8,17,0.0 +18187,15,15.5,11,0.0 +18187,56,38,24,0.0 +18187,71,21.5,11,0.0 +18188,72,34.8,30,0.0 +18188,51,53,36,0.0 +18188,5,21.35,45,0.0 +18188,44,19.45,43,0.0 +18188,58,13.25,11,0.0 +18188,25,14,4,0.0 +18188,3,10,17,0.0 +18188,6,25,30,0.0 +18188,59,55,46,0.0 +18188,66,17,50,0.0 +18188,48,12.75,30,0.0 +18188,30,25.89,27,0.0 +18188,46,12,13,0.0 +18188,15,15.5,20,0.0 +18188,4,22,33,0.0 +18188,65,21.05,6,0.0 +18188,18,62.5,27,0.0 +18188,7,30,29,0.0 +18188,8,40,39,0.0 +18188,49,20,31,0.0 +18188,35,18,30,0.0 +18188,38,263.5,13,0.0 +18188,77,13,49,0.0 +18188,26,31.23,12,0.0 +18188,39,18,22,0.0 +18188,47,9.5,15,0.0 +18188,62,49.3,18,0.0 +18188,41,9.65,8,0.0 +18188,24,4.5,8,0.0 +18188,20,81,31,0.0 +18188,14,23.25,31,0.0 +18188,57,19.5,30,0.0 +18188,74,10,49,0.0 +18188,28,45.6,43,0.0 +18189,64,33.25,18,0.0 +18189,52,7,45,0.0 +18189,4,22,43,0.0 +18189,57,19.5,45,0.0 +18189,2,19,44,0.0 +18189,34,14,8,0.0 +18189,33,2.5,7,0.0 +18189,42,14,32,0.0 +18189,58,13.25,11,0.0 +18189,20,81,33,0.0 +18189,31,12.5,41,0.0 +18189,49,20,49,0.0 +18189,1,18,15,0.0 +18189,7,30,25,0.0 +18189,67,14,36,0.0 +18189,22,21,30,0.0 +18189,19,9.2,50,0.0 +18189,23,9,6,0.0 +18189,71,21.5,17,0.0 +18189,13,6,41,0.0 +18189,11,21,42,0.0 +18189,12,38,8,0.0 +18189,3,10,48,0.0 +18189,59,55,40,0.0 +18189,47,9.5,31,0.0 +18189,48,12.75,20,0.0 +18189,76,18,17,0.0 +18189,54,7.45,22,0.0 +18189,62,49.3,13,0.0 +18189,27,43.9,17,0.0 +18189,50,16.25,50,0.0 +18189,25,14,1,0.0 +18189,44,19.45,4,0.0 +18189,36,19,19,0.0 +18189,70,15,27,0.0 +18189,60,34,42,0.0 +18189,72,34.8,21,0.0 +18189,61,28.5,45,0.0 +18189,75,7.75,35,0.0 +18189,53,32.8,30,0.0 +18189,46,12,46,0.0 +18189,74,10,48,0.0 +18189,38,263.5,43,0.0 +18189,51,53,5,0.0 +18189,26,31.23,9,0.0 +18189,10,31,43,0.0 +18190,8,40,36,0.0 +18190,56,38,31,0.0 +18190,57,19.5,38,0.0 +18190,58,13.25,32,0.0 +18190,51,53,8,0.0 +18190,18,62.5,47,0.0 +18190,5,21.35,44,0.0 +18190,73,15,47,0.0 +18190,68,12.5,20,0.0 +18190,72,34.8,3,0.0 +18190,33,2.5,38,0.0 +18190,37,26,26,0.0 +18190,67,14,12,0.0 +18190,10,31,36,0.0 +18190,70,15,45,0.0 +18190,36,19,44,0.0 +18190,60,34,8,0.0 +18190,25,14,21,0.0 +18190,52,7,9,0.0 +18190,71,21.5,44,0.0 +18190,47,9.5,20,0.0 +18190,50,16.25,20,0.0 +18190,48,12.75,11,0.0 +18190,23,9,6,0.0 +18190,20,81,37,0.0 +18190,62,49.3,23,0.0 +18190,59,55,39,0.0 +18190,74,10,10,0.0 +18190,29,123.79,35,0.0 +18190,46,12,30,0.0 +18190,66,17,6,0.0 +18190,24,4.5,40,0.0 +18190,27,43.9,36,0.0 +18190,44,19.45,29,0.0 +18190,49,20,40,0.0 +18190,39,18,37,0.0 +18190,2,19,40,0.0 +18190,54,7.45,43,0.0 +18190,75,7.75,18,0.0 +18190,4,22,34,0.0 +18190,43,46,37,0.0 +18190,55,24,35,0.0 +18190,32,32,8,0.0 +18190,76,18,27,0.0 +18190,28,45.6,10,0.0 +18190,34,14,20,0.0 +18190,9,97,1,0.0 +18190,45,9.5,23,0.0 +18190,38,263.5,34,0.0 +18190,77,13,45,0.0 +18190,26,31.23,36,0.0 +18190,53,32.8,41,0.0 +18190,21,10,11,0.0 +18191,6,25,41,0.0 +18191,40,18.4,37,0.0 +18191,8,40,39,0.0 +18191,54,7.45,15,0.0 +18191,72,34.8,47,0.0 +18191,63,43.9,50,0.0 +18191,46,12,22,0.0 +18191,66,17,2,0.0 +18191,60,34,25,0.0 +18191,56,38,20,0.0 +18191,2,19,40,0.0 +18191,36,19,8,0.0 +18192,60,34,26,0.0 +18192,65,21.05,10,0.0 +18192,13,6,41,0.0 +18192,39,18,24,0.0 +18192,43,46,2,0.0 +18192,4,22,47,0.0 +18192,2,19,39,0.0 +18192,25,14,12,0.0 +18192,8,40,17,0.0 +18192,23,9,43,0.0 +18192,73,15,41,0.0 +18192,9,97,4,0.0 +18192,30,25.89,28,0.0 +18192,41,9.65,25,0.0 +18192,38,263.5,27,0.0 +18192,74,10,28,0.0 +18192,75,7.75,45,0.0 +18192,56,38,10,0.0 +18192,31,12.5,3,0.0 +18192,54,7.45,45,0.0 +18192,11,21,29,0.0 +18192,55,24,47,0.0 +18192,76,18,27,0.0 +18192,70,15,45,0.0 +18192,50,16.25,41,0.0 +18192,47,9.5,6,0.0 +18192,3,10,27,0.0 +18192,1,18,11,0.0 +18192,17,39,11,0.0 +18192,61,28.5,32,0.0 +18192,66,17,22,0.0 +18192,28,45.6,10,0.0 +18192,48,12.75,17,0.0 +18192,45,9.5,8,0.0 +18192,24,4.5,27,0.0 +18192,64,33.25,38,0.0 +18192,51,53,30,0.0 +18192,5,21.35,49,0.0 +18192,72,34.8,43,0.0 +18192,59,55,32,0.0 +18192,22,21,13,0.0 +18192,58,13.25,8,0.0 +18192,37,26,34,0.0 +18192,42,14,11,0.0 +18192,21,10,14,0.0 +18192,32,32,18,0.0 +18192,10,31,38,0.0 +18192,14,23.25,4,0.0 +18192,16,17.45,18,0.0 +18192,20,81,47,0.0 +18192,33,2.5,50,0.0 +18192,35,18,15,0.0 +18192,62,49.3,3,0.0 +18192,12,38,12,0.0 +18192,77,13,20,0.0 +18192,36,19,1,0.0 +18192,29,123.79,33,0.0 +18192,69,36,7,0.0 +18192,46,12,40,0.0 +18192,57,19.5,29,0.0 +18192,40,18.4,32,0.0 +18192,52,7,2,0.0 +18192,44,19.45,38,0.0 +18192,71,21.5,17,0.0 +18192,26,31.23,27,0.0 +18192,6,25,44,0.0 +18192,19,9.2,38,0.0 +18192,68,12.5,32,0.0 +18192,63,43.9,38,0.0 +18192,7,30,33,0.0 +18192,27,43.9,5,0.0 +18192,18,62.5,48,0.0 +18192,67,14,1,0.0 +18192,34,14,17,0.0 +18192,15,15.5,18,0.0 +18192,53,32.8,7,0.0 +18192,49,20,23,0.0 +18193,66,17,43,0.0 +18193,48,12.75,3,0.0 +18193,32,32,12,0.0 +18193,77,13,12,0.0 +18193,19,9.2,27,0.0 +18193,65,21.05,30,0.0 +18193,49,20,5,0.0 +18193,55,24,18,0.0 +18193,23,9,39,0.0 +18193,67,14,50,0.0 +18193,13,6,41,0.0 +18193,68,12.5,17,0.0 +18193,24,4.5,18,0.0 +18193,16,17.45,5,0.0 +18193,27,43.9,21,0.0 +18193,39,18,2,0.0 +18193,73,15,37,0.0 +18193,38,263.5,8,0.0 +18193,46,12,36,0.0 +18193,52,7,18,0.0 +18193,40,18.4,44,0.0 +18193,6,25,32,0.0 +18193,17,39,45,0.0 +18193,28,45.6,40,0.0 +18193,61,28.5,42,0.0 +18193,20,81,16,0.0 +18193,56,38,5,0.0 +18193,35,18,43,0.0 +18193,15,15.5,42,0.0 +18193,21,10,1,0.0 +18193,12,38,2,0.0 +18193,74,10,15,0.0 +18193,31,12.5,27,0.0 +18193,69,36,47,0.0 +18193,59,55,18,0.0 +18193,14,23.25,39,0.0 +18193,70,15,38,0.0 +18193,36,19,14,0.0 +18193,50,16.25,27,0.0 +18193,53,32.8,2,0.0 +18193,33,2.5,45,0.0 +18193,10,31,24,0.0 +18193,42,14,17,0.0 +18193,45,9.5,14,0.0 +18193,3,10,44,0.0 +18193,72,34.8,50,0.0 +18193,62,49.3,1,0.0 +18193,57,19.5,7,0.0 +18193,34,14,37,0.0 +18193,8,40,18,0.0 +18193,22,21,25,0.0 +18193,51,53,35,0.0 +18193,71,21.5,31,0.0 +18193,5,21.35,26,0.0 +18193,1,18,15,0.0 +18193,7,30,18,0.0 +18194,53,32.8,34,0.0 +18194,4,22,24,0.0 +18194,64,33.25,31,0.0 +18194,70,15,35,0.0 +18194,73,15,39,0.0 +18194,65,21.05,29,0.0 +18194,7,30,48,0.0 +18194,10,31,36,0.0 +18194,34,14,28,0.0 +18194,31,12.5,46,0.0 +18194,29,123.79,4,0.0 +18194,55,24,33,0.0 +18194,40,18.4,47,0.0 +18194,57,19.5,34,0.0 +18194,39,18,47,0.0 +18194,9,97,9,0.0 +18194,51,53,11,0.0 +18194,59,55,1,0.0 +18194,63,43.9,13,0.0 +18194,21,10,47,0.0 +18194,66,17,33,0.0 +18194,76,18,2,0.0 +18194,5,21.35,8,0.0 +18195,24,4.5,40,0.0 +18195,28,45.6,23,0.0 +18195,40,18.4,7,0.0 +18195,63,43.9,50,0.0 +18195,15,15.5,17,0.0 +18195,19,9.2,21,0.0 +18195,45,9.5,4,0.0 +18195,23,9,21,0.0 +18195,13,6,8,0.0 +18195,33,2.5,22,0.0 +18195,4,22,36,0.0 +18195,72,34.8,1,0.0 +18195,34,14,39,0.0 +18195,48,12.75,32,0.0 +18195,75,7.75,23,0.0 +18195,29,123.79,18,0.0 +18195,21,10,33,0.0 +18195,70,15,13,0.0 +18195,55,24,35,0.0 +18195,18,62.5,23,0.0 +18195,39,18,13,0.0 +18195,30,25.89,32,0.0 +18195,20,81,22,0.0 +18195,7,30,38,0.0 +18195,11,21,30,0.0 +18195,71,21.5,5,0.0 +18195,50,16.25,3,0.0 +18195,27,43.9,46,0.0 +18195,9,97,22,0.0 +18195,49,20,42,0.0 +18195,36,19,9,0.0 +18195,25,14,42,0.0 +18195,16,17.45,46,0.0 +18195,68,12.5,15,0.0 +18195,46,12,29,0.0 +18195,32,32,23,0.0 +18195,58,13.25,29,0.0 +18195,6,25,8,0.0 +18195,17,39,23,0.0 +18195,64,33.25,50,0.0 +18195,31,12.5,21,0.0 +18195,44,19.45,31,0.0 +18195,66,17,29,0.0 +18195,56,38,43,0.0 +18195,10,31,38,0.0 +18195,26,31.23,6,0.0 +18195,76,18,15,0.0 +18195,42,14,49,0.0 +18195,54,7.45,13,0.0 +18195,60,34,29,0.0 +18195,51,53,19,0.0 +18195,41,9.65,26,0.0 +18195,22,21,8,0.0 +18195,5,21.35,50,0.0 +18195,47,9.5,41,0.0 +18195,8,40,50,0.0 +18195,73,15,3,0.0 +18195,43,46,49,0.0 +18195,57,19.5,25,0.0 +18195,74,10,29,0.0 +18195,3,10,11,0.0 +18195,77,13,44,0.0 +18195,2,19,13,0.0 +18195,65,21.05,32,0.0 +18195,12,38,25,0.0 +18195,61,28.5,20,0.0 +18195,62,49.3,50,0.0 +18195,38,263.5,36,0.0 +18195,52,7,40,0.0 +18195,59,55,38,0.0 +18196,19,9.2,9,0.0 +18196,66,17,43,0.0 +18196,26,31.23,46,0.0 +18196,76,18,27,0.0 +18196,74,10,13,0.0 +18196,15,15.5,36,0.0 +18196,36,19,50,0.0 +18196,60,34,26,0.0 +18196,73,15,48,0.0 +18196,29,123.79,37,0.0 +18196,35,18,41,0.0 +18196,47,9.5,23,0.0 +18196,68,12.5,43,0.0 +18196,59,55,36,0.0 +18196,44,19.45,28,0.0 +18196,62,49.3,41,0.0 +18196,23,9,43,0.0 +18196,34,14,47,0.0 +18196,77,13,43,0.0 +18196,70,15,28,0.0 +18196,12,38,2,0.0 +18196,42,14,37,0.0 +18196,8,40,36,0.0 +18196,14,23.25,4,0.0 +18196,3,10,45,0.0 +18196,25,14,16,0.0 +18196,65,21.05,49,0.0 +18196,1,18,15,0.0 +18196,18,62.5,25,0.0 +18196,46,12,24,0.0 +18196,43,46,4,0.0 +18196,13,6,39,0.0 +18196,5,21.35,31,0.0 +18196,63,43.9,46,0.0 +18196,31,12.5,19,0.0 +18196,61,28.5,17,0.0 +18196,11,21,10,0.0 +18196,64,33.25,40,0.0 +18196,57,19.5,43,0.0 +18196,71,21.5,8,0.0 +18196,52,7,9,0.0 +18196,54,7.45,30,0.0 +18196,56,38,41,0.0 +18196,51,53,20,0.0 +18196,33,2.5,33,0.0 +18196,27,43.9,1,0.0 +18196,49,20,36,0.0 +18196,17,39,6,0.0 +18196,24,4.5,1,0.0 +18196,69,36,5,0.0 +18196,32,32,30,0.0 +18196,53,32.8,39,0.0 +18196,30,25.89,5,0.0 +18196,20,81,34,0.0 +18196,22,21,38,0.0 +18196,16,17.45,47,0.0 +18196,7,30,23,0.0 +18196,58,13.25,19,0.0 +18196,41,9.65,16,0.0 +18196,39,18,32,0.0 +18196,45,9.5,7,0.0 +18196,6,25,36,0.0 +18196,38,263.5,15,0.0 +18196,2,19,13,0.0 +18196,28,45.6,16,0.0 +18196,48,12.75,31,0.0 +18196,75,7.75,5,0.0 +18196,55,24,48,0.0 +18196,50,16.25,38,0.0 +18196,9,97,6,0.0 +18197,73,15,34,0.0 +18197,69,36,3,0.0 +18197,9,97,17,0.0 +18197,67,14,11,0.0 +18197,19,9.2,28,0.0 +18197,2,19,45,0.0 +18197,49,20,17,0.0 +18197,56,38,37,0.0 +18197,68,12.5,23,0.0 +18197,41,9.65,43,0.0 +18197,17,39,47,0.0 +18197,20,81,32,0.0 +18197,76,18,30,0.0 +18197,47,9.5,48,0.0 +18197,10,31,42,0.0 +18197,26,31.23,4,0.0 +18197,52,7,11,0.0 +18197,39,18,12,0.0 +18197,46,12,23,0.0 +18197,29,123.79,13,0.0 +18197,66,17,29,0.0 +18197,31,12.5,49,0.0 +18197,55,24,23,0.0 +18197,60,34,49,0.0 +18197,34,14,16,0.0 +18197,3,10,20,0.0 +18197,36,19,31,0.0 +18197,22,21,7,0.0 +18197,53,32.8,10,0.0 +18197,43,46,7,0.0 +18197,64,33.25,14,0.0 +18197,65,21.05,5,0.0 +18197,13,6,48,0.0 +18197,6,25,3,0.0 +18197,59,55,3,0.0 +18197,15,15.5,32,0.0 +18197,25,14,47,0.0 +18197,48,12.75,38,0.0 +18197,38,263.5,24,0.0 +18197,12,38,35,0.0 +18197,35,18,4,0.0 +18197,72,34.8,16,0.0 +18197,70,15,39,0.0 +18197,61,28.5,44,0.0 +18197,44,19.45,11,0.0 +18197,4,22,8,0.0 +18197,14,23.25,9,0.0 +18197,18,62.5,23,0.0 +18197,24,4.5,31,0.0 +18197,62,49.3,14,0.0 +18197,42,14,11,0.0 +18197,71,21.5,12,0.0 +18197,74,10,44,0.0 +18198,16,17.45,9,0.0 +18198,13,6,28,0.0 +18198,44,19.45,24,0.0 +18198,11,21,50,0.0 +18198,37,26,43,0.0 +18198,15,15.5,34,0.0 +18198,34,14,32,0.0 +18198,59,55,11,0.0 +18198,24,4.5,14,0.0 +18198,54,7.45,22,0.0 +18198,20,81,25,0.0 +18198,62,49.3,17,0.0 +18198,33,2.5,25,0.0 +18198,6,25,22,0.0 +18198,53,32.8,14,0.0 +18198,7,30,26,0.0 +18198,55,24,30,0.0 +18198,60,34,15,0.0 +18198,72,34.8,49,0.0 +18198,56,38,9,0.0 +18198,48,12.75,4,0.0 +18198,22,21,21,0.0 +18198,36,19,36,0.0 +18198,31,12.5,1,0.0 +18198,65,21.05,30,0.0 +18198,4,22,29,0.0 +18198,73,15,23,0.0 +18198,26,31.23,42,0.0 +18198,74,10,9,0.0 +18198,63,43.9,12,0.0 +18198,32,32,7,0.0 +18198,42,14,23,0.0 +18198,66,17,50,0.0 +18198,45,9.5,13,0.0 +18198,75,7.75,46,0.0 +18198,41,9.65,47,0.0 +18198,17,39,31,0.0 +18198,43,46,31,0.0 +18198,10,31,44,0.0 +18198,50,16.25,24,0.0 +18198,23,9,20,0.0 +18198,69,36,23,0.0 +18198,67,14,8,0.0 +18198,64,33.25,29,0.0 +18198,18,62.5,48,0.0 +18198,8,40,32,0.0 +18198,40,18.4,5,0.0 +18198,21,10,45,0.0 +18198,2,19,14,0.0 +18198,76,18,15,0.0 +18198,39,18,22,0.0 +18198,61,28.5,50,0.0 +18198,3,10,30,0.0 +18198,47,9.5,19,0.0 +18198,35,18,12,0.0 +18198,1,18,5,0.0 +18198,46,12,45,0.0 +18198,19,9.2,46,0.0 +18198,68,12.5,6,0.0 +18198,52,7,13,0.0 +18198,70,15,35,0.0 +18198,38,263.5,27,0.0 +18198,49,20,44,0.0 +18198,30,25.89,29,0.0 +18198,25,14,3,0.0 +18198,14,23.25,13,0.0 +18198,9,97,9,0.0 +18198,28,45.6,2,0.0 +18198,77,13,27,0.0 +18198,27,43.9,17,0.0 +18198,57,19.5,19,0.0 +18198,5,21.35,50,0.0 +18198,51,53,46,0.0 +18198,71,21.5,20,0.0 +18198,58,13.25,43,0.0 +18199,42,14,13,0.0 +18199,73,15,37,0.0 +18199,3,10,26,0.0 +18199,37,26,37,0.0 +18199,1,18,4,0.0 +18199,11,21,28,0.0 +18199,15,15.5,21,0.0 +18199,54,7.45,12,0.0 +18199,53,32.8,11,0.0 +18199,21,10,34,0.0 +18199,26,31.23,21,0.0 +18199,17,39,7,0.0 +18199,10,31,16,0.0 +18199,23,9,38,0.0 +18199,45,9.5,29,0.0 +18199,44,19.45,40,0.0 +18199,14,23.25,30,0.0 +18199,16,17.45,18,0.0 +18199,51,53,50,0.0 +18199,31,12.5,38,0.0 +18199,50,16.25,23,0.0 +18199,77,13,29,0.0 +18199,65,21.05,12,0.0 +18199,43,46,4,0.0 +18199,6,25,17,0.0 +18199,70,15,15,0.0 +18199,46,12,45,0.0 +18199,63,43.9,32,0.0 +18199,56,38,28,0.0 +18199,68,12.5,15,0.0 +18199,29,123.79,14,0.0 +18199,41,9.65,40,0.0 +18199,19,9.2,32,0.0 +18199,61,28.5,48,0.0 +18199,67,14,31,0.0 +18199,47,9.5,47,0.0 +18199,57,19.5,19,0.0 +18199,39,18,17,0.0 +18199,2,19,36,0.0 +18199,25,14,19,0.0 +18199,74,10,9,0.0 +18199,24,4.5,25,0.0 +18199,64,33.25,39,0.0 +18199,62,49.3,43,0.0 +18199,13,6,38,0.0 +18199,27,43.9,25,0.0 +18199,66,17,25,0.0 +18199,5,21.35,1,0.0 +18199,36,19,16,0.0 +18199,52,7,35,0.0 +18199,55,24,29,0.0 +18199,38,263.5,22,0.0 +18199,72,34.8,10,0.0 +18199,76,18,16,0.0 +18199,71,21.5,49,0.0 +18199,20,81,50,0.0 +18199,35,18,24,0.0 +18199,69,36,49,0.0 +18199,60,34,7,0.0 +18199,75,7.75,25,0.0 +18200,52,7,50,0.0 +18200,38,263.5,9,0.0 +18200,49,20,49,0.0 +18200,7,30,37,0.0 +18200,36,19,35,0.0 +18200,15,15.5,14,0.0 +18200,34,14,28,0.0 +18200,69,36,27,0.0 +18200,70,15,14,0.0 +18200,18,62.5,42,0.0 +18200,75,7.75,10,0.0 +18200,31,12.5,45,0.0 +18200,16,17.45,6,0.0 +18200,56,38,37,0.0 +18200,61,28.5,2,0.0 +18200,45,9.5,44,0.0 +18200,24,4.5,50,0.0 +18200,8,40,16,0.0 +18200,54,7.45,20,0.0 +18200,28,45.6,44,0.0 +18200,50,16.25,48,0.0 +18200,64,33.25,14,0.0 +18200,74,10,36,0.0 +18200,41,9.65,5,0.0 +18200,4,22,41,0.0 +18200,3,10,45,0.0 +18200,62,49.3,10,0.0 +18200,73,15,49,0.0 +18200,66,17,8,0.0 +18200,65,21.05,32,0.0 +18200,9,97,38,0.0 +18200,35,18,11,0.0 +18200,20,81,7,0.0 +18200,55,24,33,0.0 +18200,37,26,24,0.0 +18200,51,53,11,0.0 +18200,30,25.89,31,0.0 +18200,11,21,43,0.0 +18200,68,12.5,5,0.0 +18200,19,9.2,21,0.0 +18200,48,12.75,9,0.0 +18200,76,18,34,0.0 +18200,1,18,29,0.0 +18200,22,21,26,0.0 +18200,40,18.4,24,0.0 +18200,46,12,39,0.0 +18200,67,14,2,0.0 +18200,39,18,35,0.0 +18200,27,43.9,46,0.0 +18200,71,21.5,34,0.0 +18200,47,9.5,22,0.0 +18200,53,32.8,37,0.0 +18200,21,10,39,0.0 +18200,72,34.8,12,0.0 +18200,77,13,7,0.0 +18200,5,21.35,34,0.0 +18200,13,6,35,0.0 +18200,29,123.79,14,0.0 +18200,26,31.23,33,0.0 +18200,17,39,1,0.0 +18200,2,19,11,0.0 +18200,57,19.5,28,0.0 +18200,23,9,43,0.0 +18200,6,25,24,0.0 +18200,60,34,28,0.0 +18200,43,46,19,0.0 +18200,42,14,25,0.0 +18201,75,7.75,18,0.0 +18201,66,17,6,0.0 +18201,31,12.5,2,0.0 +18201,77,13,43,0.0 +18201,21,10,25,0.0 +18201,14,23.25,36,0.0 +18201,12,38,40,0.0 +18201,55,24,4,0.0 +18201,59,55,50,0.0 +18201,42,14,9,0.0 +18201,22,21,26,0.0 +18201,56,38,36,0.0 +18201,3,10,35,0.0 +18201,35,18,12,0.0 +18201,51,53,33,0.0 +18201,57,19.5,4,0.0 +18201,24,4.5,17,0.0 +18202,35,18,10,0.0 +18202,25,14,2,0.0 +18202,32,32,10,0.0 +18202,11,21,28,0.0 +18202,18,62.5,41,0.0 +18202,64,33.25,40,0.0 +18202,58,13.25,45,0.0 +18202,24,4.5,44,0.0 +18202,16,17.45,3,0.0 +18202,68,12.5,32,0.0 +18202,2,19,24,0.0 +18202,10,31,15,0.0 +18203,40,18.4,19,0.0 +18203,26,31.23,42,0.0 +18203,31,12.5,7,0.0 +18203,30,25.89,30,0.0 +18203,71,21.5,36,0.0 +18203,7,30,38,0.0 +18203,1,18,14,0.0 +18203,56,38,44,0.0 +18203,54,7.45,41,0.0 +18203,49,20,12,0.0 +18203,61,28.5,45,0.0 +18203,75,7.75,29,0.0 +18203,58,13.25,37,0.0 +18203,23,9,18,0.0 +18203,6,25,28,0.0 +18203,41,9.65,7,0.0 +18203,70,15,27,0.0 +18203,28,45.6,41,0.0 +18203,57,19.5,33,0.0 +18203,32,32,24,0.0 +18203,50,16.25,17,0.0 +18203,9,97,49,0.0 +18203,19,9.2,6,0.0 +18203,68,12.5,34,0.0 +18203,55,24,1,0.0 +18203,24,4.5,50,0.0 +18203,73,15,4,0.0 +18203,38,263.5,44,0.0 +18203,44,19.45,20,0.0 +18203,22,21,6,0.0 +18203,34,14,36,0.0 +18203,77,13,11,0.0 +18203,47,9.5,48,0.0 +18203,76,18,12,0.0 +18203,37,26,43,0.0 +18203,16,17.45,37,0.0 +18204,3,10,17,0.0 +18204,26,31.23,21,0.0 +18204,66,17,1,0.0 +18204,61,28.5,45,0.0 +18204,30,25.89,44,0.0 +18204,73,15,4,0.0 +18204,14,23.25,3,0.0 +18204,20,81,4,0.0 +18204,51,53,21,0.0 +18204,69,36,14,0.0 +18204,6,25,42,0.0 +18204,77,13,32,0.0 +18204,33,2.5,16,0.0 +18204,13,6,41,0.0 +18204,17,39,50,0.0 +18204,70,15,9,0.0 +18204,40,18.4,22,0.0 +18204,36,19,25,0.0 +18204,65,21.05,13,0.0 +18204,19,9.2,3,0.0 +18204,15,15.5,13,0.0 +18204,49,20,14,0.0 +18204,2,19,43,0.0 +18204,44,19.45,34,0.0 +18205,46,12,33,0.0 +18205,37,26,47,0.0 +18205,48,12.75,17,0.0 +18205,44,19.45,21,0.0 +18205,17,39,49,0.0 +18205,51,53,17,0.0 +18205,36,19,47,0.0 +18205,40,18.4,23,0.0 +18205,42,14,23,0.0 +18205,5,21.35,45,0.0 +18205,26,31.23,14,0.0 +18205,58,13.25,11,0.0 +18205,31,12.5,26,0.0 +18205,34,14,36,0.0 +18205,67,14,47,0.0 +18205,30,25.89,11,0.0 +18205,10,31,7,0.0 +18205,12,38,16,0.0 +18205,7,30,27,0.0 +18205,23,9,20,0.0 +18205,45,9.5,27,0.0 +18205,72,34.8,9,0.0 +18205,68,12.5,30,0.0 +18205,47,9.5,14,0.0 +18205,75,7.75,34,0.0 +18205,64,33.25,18,0.0 +18205,19,9.2,7,0.0 +18205,74,10,17,0.0 +18205,18,62.5,46,0.0 +18205,66,17,34,0.0 +18205,3,10,1,0.0 +18205,21,10,42,0.0 +18205,43,46,36,0.0 +18205,50,16.25,43,0.0 +18205,24,4.5,49,0.0 +18205,76,18,29,0.0 +18205,39,18,42,0.0 +18205,63,43.9,44,0.0 +18205,49,20,33,0.0 +18205,8,40,31,0.0 +18205,13,6,21,0.0 +18205,14,23.25,12,0.0 +18205,29,123.79,49,0.0 +18205,11,21,31,0.0 +18205,16,17.45,23,0.0 +18205,54,7.45,21,0.0 +18205,27,43.9,22,0.0 +18205,55,24,13,0.0 +18205,59,55,40,0.0 +18205,65,21.05,40,0.0 +18205,2,19,33,0.0 +18205,61,28.5,10,0.0 +18205,9,97,10,0.0 +18205,25,14,34,0.0 +18205,70,15,18,0.0 +18205,69,36,38,0.0 +18205,22,21,16,0.0 +18205,28,45.6,44,0.0 +18205,57,19.5,49,0.0 +18205,33,2.5,2,0.0 +18205,62,49.3,2,0.0 +18205,32,32,9,0.0 +18205,1,18,36,0.0 +18205,15,15.5,20,0.0 +18206,49,20,41,0.0 +18206,72,34.8,24,0.0 +18206,28,45.6,26,0.0 +18206,48,12.75,11,0.0 +18206,70,15,8,0.0 +18206,71,21.5,29,0.0 +18206,27,43.9,49,0.0 +18206,60,34,25,0.0 +18206,11,21,18,0.0 +18206,3,10,38,0.0 +18206,54,7.45,29,0.0 +18206,52,7,50,0.0 +18206,41,9.65,22,0.0 +18206,53,32.8,13,0.0 +18206,18,62.5,38,0.0 +18206,34,14,39,0.0 +18206,66,17,45,0.0 +18206,63,43.9,21,0.0 +18206,39,18,36,0.0 +18206,22,21,43,0.0 +18206,29,123.79,18,0.0 +18206,40,18.4,46,0.0 +18206,56,38,42,0.0 +18206,33,2.5,43,0.0 +18207,15,15.5,34,0.0 +18207,2,19,37,0.0 +18207,68,12.5,49,0.0 +18207,61,28.5,15,0.0 +18207,74,10,35,0.0 +18207,66,17,34,0.0 +18207,32,32,16,0.0 +18207,7,30,13,0.0 +18207,36,19,41,0.0 +18207,44,19.45,50,0.0 +18207,67,14,37,0.0 +18207,6,25,24,0.0 +18207,17,39,22,0.0 +18207,41,9.65,32,0.0 +18207,56,38,37,0.0 +18207,77,13,32,0.0 +18207,46,12,11,0.0 +18207,59,55,10,0.0 +18207,19,9.2,32,0.0 +18207,10,31,26,0.0 +18207,51,53,35,0.0 +18207,34,14,50,0.0 +18207,73,15,34,0.0 +18207,72,34.8,39,0.0 +18207,50,16.25,13,0.0 +18207,62,49.3,13,0.0 +18207,53,32.8,16,0.0 +18207,29,123.79,44,0.0 +18207,18,62.5,24,0.0 +18207,20,81,38,0.0 +18208,61,28.5,46,0.0 +18208,54,7.45,22,0.0 +18208,36,19,11,0.0 +18208,29,123.79,12,0.0 +18208,33,2.5,30,0.0 +18208,57,19.5,44,0.0 +18208,23,9,2,0.0 +18208,64,33.25,47,0.0 +18208,67,14,14,0.0 +18208,7,30,40,0.0 +18208,55,24,9,0.0 +18208,24,4.5,41,0.0 +18208,28,45.6,33,0.0 +18208,73,15,14,0.0 +18208,20,81,16,0.0 +18208,50,16.25,21,0.0 +18208,9,97,28,0.0 +18208,12,38,35,0.0 +18208,74,10,49,0.0 +18208,39,18,29,0.0 +18208,1,18,8,0.0 +18208,22,21,41,0.0 +18208,26,31.23,9,0.0 +18208,16,17.45,22,0.0 +18208,71,21.5,46,0.0 +18208,52,7,2,0.0 +18208,8,40,27,0.0 +18208,62,49.3,2,0.0 +18208,42,14,35,0.0 +18208,70,15,42,0.0 +18208,65,21.05,15,0.0 +18208,63,43.9,27,0.0 +18208,19,9.2,40,0.0 +18208,68,12.5,45,0.0 +18208,72,34.8,17,0.0 +18208,59,55,10,0.0 +18208,75,7.75,1,0.0 +18209,17,39,17,0.0 +18209,20,81,43,0.0 +18209,51,53,25,0.0 +18210,36,19,17,0.0 +18210,12,38,39,0.0 +18210,8,40,2,0.0 +18210,15,15.5,26,0.0 +18210,73,15,40,0.0 +18210,5,21.35,37,0.0 +18210,13,6,5,0.0 +18210,75,7.75,26,0.0 +18210,68,12.5,39,0.0 +18210,55,24,50,0.0 +18210,77,13,22,0.0 +18210,38,263.5,16,0.0 +18210,49,20,36,0.0 +18210,14,23.25,45,0.0 +18210,60,34,11,0.0 +18210,61,28.5,12,0.0 +18210,29,123.79,28,0.0 +18210,45,9.5,21,0.0 +18210,50,16.25,33,0.0 +18210,33,2.5,3,0.0 +18210,10,31,4,0.0 +18210,51,53,40,0.0 +18210,19,9.2,25,0.0 +18210,17,39,34,0.0 +18210,64,33.25,23,0.0 +18210,48,12.75,41,0.0 +18210,62,49.3,32,0.0 +18210,26,31.23,5,0.0 +18210,66,17,43,0.0 +18210,27,43.9,14,0.0 +18210,22,21,24,0.0 +18210,25,14,9,0.0 +18210,70,15,28,0.0 +18210,37,26,40,0.0 +18210,74,10,24,0.0 +18210,39,18,37,0.0 +18210,59,55,24,0.0 +18210,40,18.4,19,0.0 +18210,34,14,33,0.0 +18210,67,14,26,0.0 +18210,57,19.5,36,0.0 +18210,28,45.6,25,0.0 +18210,69,36,37,0.0 +18210,53,32.8,47,0.0 +18210,2,19,33,0.0 +18210,21,10,22,0.0 +18211,3,10,28,0.0 +18211,2,19,4,0.0 +18211,24,4.5,21,0.0 +18211,71,21.5,26,0.0 +18211,47,9.5,8,0.0 +18211,30,25.89,40,0.0 +18211,14,23.25,50,0.0 +18211,13,6,45,0.0 +18211,62,49.3,26,0.0 +18211,38,263.5,3,0.0 +18211,26,31.23,22,0.0 +18211,4,22,3,0.0 +18211,23,9,41,0.0 +18211,6,25,38,0.0 +18211,55,24,47,0.0 +18211,57,19.5,21,0.0 +18211,50,16.25,44,0.0 +18211,12,38,22,0.0 +18211,31,12.5,19,0.0 +18211,21,10,25,0.0 +18211,37,26,26,0.0 +18211,25,14,26,0.0 +18211,49,20,14,0.0 +18211,70,15,41,0.0 +18211,43,46,3,0.0 +18211,53,32.8,39,0.0 +18211,33,2.5,1,0.0 +18211,40,18.4,20,0.0 +18211,51,53,5,0.0 +18211,65,21.05,35,0.0 +18211,52,7,43,0.0 +18211,9,97,46,0.0 +18211,63,43.9,42,0.0 +18211,60,34,2,0.0 +18211,27,43.9,49,0.0 +18211,77,13,14,0.0 +18211,66,17,18,0.0 +18211,76,18,13,0.0 +18211,59,55,9,0.0 +18211,18,62.5,42,0.0 +18211,16,17.45,49,0.0 +18211,1,18,36,0.0 +18211,73,15,44,0.0 +18211,32,32,27,0.0 +18211,58,13.25,31,0.0 +18211,64,33.25,30,0.0 +18211,28,45.6,19,0.0 +18211,48,12.75,9,0.0 +18211,72,34.8,29,0.0 +18211,15,15.5,49,0.0 +18211,46,12,5,0.0 +18211,42,14,17,0.0 +18211,17,39,40,0.0 +18211,41,9.65,8,0.0 +18211,20,81,20,0.0 +18211,29,123.79,31,0.0 +18211,68,12.5,33,0.0 +18211,8,40,48,0.0 +18211,69,36,4,0.0 +18211,35,18,19,0.0 +18211,34,14,39,0.0 +18211,10,31,37,0.0 +18211,5,21.35,15,0.0 +18211,75,7.75,7,0.0 +18212,71,21.5,43,0.0 +18212,11,21,44,0.0 +18212,21,10,15,0.0 +18212,41,9.65,34,0.0 +18212,12,38,49,0.0 +18212,18,62.5,42,0.0 +18212,66,17,45,0.0 +18212,55,24,17,0.0 +18212,3,10,46,0.0 +18212,74,10,10,0.0 +18212,20,81,48,0.0 +18212,34,14,7,0.0 +18212,46,12,47,0.0 +18212,54,7.45,42,0.0 +18212,13,6,29,0.0 +18212,29,123.79,3,0.0 +18212,4,22,14,0.0 +18212,76,18,31,0.0 +18212,47,9.5,35,0.0 +18212,24,4.5,43,0.0 +18212,35,18,4,0.0 +18212,61,28.5,9,0.0 +18212,6,25,16,0.0 +18212,53,32.8,37,0.0 +18212,44,19.45,30,0.0 +18212,68,12.5,20,0.0 +18212,65,21.05,36,0.0 +18212,70,15,13,0.0 +18212,31,12.5,5,0.0 +18212,32,32,23,0.0 +18212,45,9.5,18,0.0 +18212,22,21,20,0.0 +18212,58,13.25,32,0.0 +18212,9,97,3,0.0 +18212,57,19.5,38,0.0 +18212,25,14,28,0.0 +18212,42,14,8,0.0 +18212,23,9,48,0.0 +18212,51,53,31,0.0 +18212,17,39,18,0.0 +18212,2,19,5,0.0 +18212,52,7,41,0.0 +18212,59,55,29,0.0 +18212,60,34,15,0.0 +18212,30,25.89,8,0.0 +18212,33,2.5,24,0.0 +18212,38,263.5,16,0.0 +18212,37,26,43,0.0 +18212,5,21.35,18,0.0 +18212,8,40,47,0.0 +18212,1,18,12,0.0 +18212,50,16.25,27,0.0 +18212,72,34.8,3,0.0 +18212,16,17.45,13,0.0 +18212,63,43.9,48,0.0 +18212,77,13,4,0.0 +18212,40,18.4,38,0.0 +18212,28,45.6,23,0.0 +18212,39,18,20,0.0 +18212,14,23.25,4,0.0 +18212,64,33.25,8,0.0 +18212,27,43.9,42,0.0 +18212,75,7.75,7,0.0 +18212,62,49.3,43,0.0 +18212,48,12.75,3,0.0 +18212,26,31.23,27,0.0 +18212,67,14,31,0.0 +18212,73,15,24,0.0 +18212,49,20,3,0.0 +18212,19,9.2,11,0.0 +18212,43,46,22,0.0 +18212,15,15.5,21,0.0 +18212,36,19,34,0.0 +18213,6,25,35,0.0 +18213,2,19,39,0.0 +18213,7,30,24,0.0 +18213,8,40,40,0.0 +18213,37,26,33,0.0 +18213,40,18.4,28,0.0 +18213,3,10,18,0.0 +18213,56,38,18,0.0 +18213,20,81,9,0.0 +18213,64,33.25,28,0.0 +18213,1,18,6,0.0 +18213,25,14,42,0.0 +18213,67,14,50,0.0 +18213,69,36,1,0.0 +18213,61,28.5,13,0.0 +18213,75,7.75,32,0.0 +18213,4,22,4,0.0 +18213,62,49.3,2,0.0 +18213,9,97,50,0.0 +18213,47,9.5,30,0.0 +18213,43,46,36,0.0 +18213,49,20,10,0.0 +18213,35,18,17,0.0 +18213,46,12,37,0.0 +18213,15,15.5,17,0.0 +18213,66,17,1,0.0 +18213,33,2.5,5,0.0 +18213,58,13.25,45,0.0 +18213,12,38,30,0.0 +18213,28,45.6,11,0.0 +18213,26,31.23,42,0.0 +18213,68,12.5,21,0.0 +18213,45,9.5,2,0.0 +18213,17,39,4,0.0 +18213,76,18,15,0.0 +18213,31,12.5,41,0.0 +18213,10,31,15,0.0 +18213,59,55,23,0.0 +18213,14,23.25,26,0.0 +18213,71,21.5,10,0.0 +18213,19,9.2,13,0.0 +18213,16,17.45,31,0.0 +18213,72,34.8,3,0.0 +18213,51,53,14,0.0 +18213,30,25.89,19,0.0 +18213,77,13,9,0.0 +18213,55,24,32,0.0 +18213,57,19.5,16,0.0 +18213,11,21,45,0.0 +18213,32,32,38,0.0 +18213,36,19,38,0.0 +18213,18,62.5,49,0.0 +18213,24,4.5,2,0.0 +18213,34,14,50,0.0 +18213,38,263.5,42,0.0 +18213,23,9,10,0.0 +18213,50,16.25,31,0.0 +18213,27,43.9,47,0.0 +18213,53,32.8,22,0.0 +18213,5,21.35,28,0.0 +18213,74,10,30,0.0 +18213,29,123.79,24,0.0 +18213,44,19.45,4,0.0 +18213,73,15,18,0.0 +18213,13,6,2,0.0 +18213,60,34,40,0.0 +18213,63,43.9,15,0.0 +18214,37,26,35,0.0 +18214,19,9.2,42,0.0 +18214,68,12.5,36,0.0 +18214,23,9,24,0.0 +18214,1,18,33,0.0 +18214,29,123.79,29,0.0 +18214,39,18,42,0.0 +18214,46,12,31,0.0 +18214,8,40,11,0.0 +18214,40,18.4,28,0.0 +18214,12,38,43,0.0 +18214,50,16.25,49,0.0 +18214,22,21,35,0.0 +18214,71,21.5,49,0.0 +18214,34,14,29,0.0 +18214,24,4.5,38,0.0 +18214,77,13,15,0.0 +18214,66,17,21,0.0 +18214,38,263.5,39,0.0 +18214,5,21.35,6,0.0 +18214,63,43.9,28,0.0 +18214,30,25.89,1,0.0 +18214,41,9.65,18,0.0 +18214,33,2.5,33,0.0 +18214,74,10,44,0.0 +18214,21,10,43,0.0 +18214,11,21,29,0.0 +18214,49,20,35,0.0 +18214,42,14,42,0.0 +18214,31,12.5,4,0.0 +18214,6,25,34,0.0 +18214,64,33.25,39,0.0 +18214,17,39,15,0.0 +18214,65,21.05,15,0.0 +18214,48,12.75,27,0.0 +18214,58,13.25,40,0.0 +18214,57,19.5,2,0.0 +18214,53,32.8,23,0.0 +18214,73,15,7,0.0 +18214,55,24,41,0.0 +18214,52,7,50,0.0 +18214,75,7.75,23,0.0 +18214,15,15.5,15,0.0 +18214,36,19,9,0.0 +18214,72,34.8,20,0.0 +18214,61,28.5,21,0.0 +18214,26,31.23,39,0.0 +18214,7,30,8,0.0 +18214,16,17.45,24,0.0 +18214,28,45.6,6,0.0 +18214,4,22,24,0.0 +18214,32,32,44,0.0 +18215,24,4.5,21,0.0 +18215,56,38,43,0.0 +18215,60,34,4,0.0 +18215,27,43.9,45,0.0 +18215,65,21.05,31,0.0 +18215,18,62.5,5,0.0 +18215,32,32,11,0.0 +18215,44,19.45,46,0.0 +18215,69,36,25,0.0 +18215,48,12.75,31,0.0 +18215,38,263.5,41,0.0 +18215,19,9.2,34,0.0 +18215,50,16.25,24,0.0 +18215,29,123.79,32,0.0 +18215,46,12,33,0.0 +18215,20,81,15,0.0 +18215,7,30,7,0.0 +18215,33,2.5,26,0.0 +18215,8,40,28,0.0 +18215,75,7.75,33,0.0 +18215,9,97,39,0.0 +18215,3,10,10,0.0 +18215,52,7,49,0.0 +18215,2,19,15,0.0 +18215,6,25,15,0.0 +18215,26,31.23,20,0.0 +18215,4,22,33,0.0 +18215,23,9,35,0.0 +18215,67,14,48,0.0 +18215,51,53,17,0.0 +18216,24,4.5,17,0.0 +18216,28,45.6,5,0.0 +18216,25,14,22,0.0 +18216,65,21.05,32,0.0 +18216,40,18.4,18,0.0 +18216,18,62.5,7,0.0 +18216,4,22,35,0.0 +18216,57,19.5,7,0.0 +18216,37,26,24,0.0 +18216,62,49.3,17,0.0 +18216,31,12.5,43,0.0 +18216,11,21,43,0.0 +18216,38,263.5,44,0.0 +18216,53,32.8,22,0.0 +18216,29,123.79,27,0.0 +18216,36,19,47,0.0 +18216,12,38,2,0.0 +18216,26,31.23,4,0.0 +18216,54,7.45,9,0.0 +18216,2,19,5,0.0 +18216,45,9.5,18,0.0 +18216,76,18,48,0.0 +18216,10,31,8,0.0 +18216,74,10,9,0.0 +18216,72,34.8,50,0.0 +18216,52,7,25,0.0 +18216,73,15,4,0.0 +18216,33,2.5,27,0.0 +18216,20,81,32,0.0 +18216,32,32,41,0.0 +18216,7,30,11,0.0 +18216,1,18,10,0.0 +18216,66,17,34,0.0 +18216,41,9.65,46,0.0 +18216,27,43.9,22,0.0 +18216,61,28.5,2,0.0 +18216,50,16.25,28,0.0 +18216,49,20,23,0.0 +18216,5,21.35,12,0.0 +18216,19,9.2,30,0.0 +18216,15,15.5,5,0.0 +18216,64,33.25,50,0.0 +18216,47,9.5,48,0.0 +18216,60,34,13,0.0 +18216,71,21.5,44,0.0 +18216,34,14,25,0.0 +18216,22,21,3,0.0 +18216,17,39,13,0.0 +18216,48,12.75,36,0.0 +18216,9,97,21,0.0 +18216,68,12.5,50,0.0 +18216,8,40,42,0.0 +18216,35,18,11,0.0 +18216,44,19.45,13,0.0 +18216,55,24,15,0.0 +18216,39,18,45,0.0 +18216,56,38,19,0.0 +18216,70,15,49,0.0 +18216,75,7.75,19,0.0 +18216,30,25.89,36,0.0 +18216,67,14,2,0.0 +18216,63,43.9,41,0.0 +18216,59,55,38,0.0 +18216,46,12,32,0.0 +18216,77,13,7,0.0 +18216,6,25,20,0.0 +18216,21,10,30,0.0 +18216,16,17.45,42,0.0 +18216,42,14,38,0.0 +18216,14,23.25,31,0.0 +18216,23,9,48,0.0 +18216,58,13.25,15,0.0 +18216,69,36,36,0.0 +18216,13,6,27,0.0 +18216,3,10,26,0.0 +18217,56,38,14,0.0 +18217,22,21,42,0.0 +18217,18,62.5,46,0.0 +18217,36,19,8,0.0 +18217,30,25.89,12,0.0 +18217,58,13.25,33,0.0 +18217,8,40,30,0.0 +18217,62,49.3,10,0.0 +18217,70,15,27,0.0 +18217,11,21,36,0.0 +18217,43,46,41,0.0 +18217,69,36,23,0.0 +18217,76,18,39,0.0 +18217,39,18,46,0.0 +18217,4,22,20,0.0 +18217,3,10,23,0.0 +18217,10,31,8,0.0 +18217,38,263.5,41,0.0 +18217,27,43.9,33,0.0 +18217,46,12,25,0.0 +18217,25,14,41,0.0 +18217,41,9.65,9,0.0 +18217,12,38,6,0.0 +18217,34,14,3,0.0 +18217,24,4.5,22,0.0 +18217,60,34,46,0.0 +18217,44,19.45,23,0.0 +18217,15,15.5,32,0.0 +18217,61,28.5,25,0.0 +18218,25,14,14,0.0 +18218,46,12,29,0.0 +18218,38,263.5,41,0.0 +18218,57,19.5,36,0.0 +18218,1,18,35,0.0 +18218,62,49.3,8,0.0 +18218,69,36,6,0.0 +18218,16,17.45,18,0.0 +18218,14,23.25,32,0.0 +18218,56,38,21,0.0 +18218,61,28.5,20,0.0 +18218,44,19.45,15,0.0 +18218,11,21,19,0.0 +18218,20,81,31,0.0 +18218,3,10,11,0.0 +18218,23,9,29,0.0 +18218,71,21.5,1,0.0 +18218,24,4.5,19,0.0 +18218,15,15.5,6,0.0 +18218,37,26,30,0.0 +18218,10,31,18,0.0 +18218,75,7.75,16,0.0 +18218,27,43.9,32,0.0 +18218,45,9.5,32,0.0 +18218,40,18.4,45,0.0 +18218,72,34.8,32,0.0 +18218,30,25.89,34,0.0 +18218,53,32.8,38,0.0 +18218,12,38,37,0.0 +18218,77,13,22,0.0 +18218,7,30,42,0.0 +18218,41,9.65,27,0.0 +18218,73,15,29,0.0 +18218,58,13.25,10,0.0 +18218,17,39,17,0.0 +18218,42,14,25,0.0 +18218,50,16.25,10,0.0 +18218,67,14,10,0.0 +18218,39,18,38,0.0 +18218,26,31.23,48,0.0 +18218,9,97,18,0.0 +18218,28,45.6,47,0.0 +18218,22,21,46,0.0 +18218,52,7,35,0.0 +18218,76,18,9,0.0 +18218,49,20,16,0.0 +18218,29,123.79,9,0.0 +18218,6,25,19,0.0 +18218,8,40,41,0.0 +18218,36,19,8,0.0 +18218,55,24,8,0.0 +18218,68,12.5,23,0.0 +18219,29,123.79,11,0.0 +18219,6,25,24,0.0 +18219,43,46,50,0.0 +18219,26,31.23,2,0.0 +18219,9,97,39,0.0 +18219,30,25.89,6,0.0 +18219,71,21.5,20,0.0 +18219,49,20,42,0.0 +18219,63,43.9,17,0.0 +18219,14,23.25,7,0.0 +18219,56,38,47,0.0 +18219,18,62.5,33,0.0 +18219,21,10,3,0.0 +18219,73,15,6,0.0 +18219,65,21.05,5,0.0 +18219,36,19,35,0.0 +18219,39,18,3,0.0 +18219,42,14,10,0.0 +18219,11,21,15,0.0 +18219,72,34.8,21,0.0 +18219,7,30,45,0.0 +18219,22,21,19,0.0 +18219,68,12.5,44,0.0 +18219,66,17,7,0.0 +18219,70,15,6,0.0 +18219,38,263.5,12,0.0 +18219,40,18.4,34,0.0 +18219,52,7,6,0.0 +18219,32,32,17,0.0 +18220,59,55,48,0.0 +18220,6,25,8,0.0 +18220,48,12.75,22,0.0 +18220,65,21.05,4,0.0 +18220,44,19.45,28,0.0 +18220,72,34.8,7,0.0 +18220,61,28.5,6,0.0 +18220,23,9,9,0.0 +18220,20,81,28,0.0 +18220,36,19,28,0.0 +18220,13,6,16,0.0 +18220,76,18,42,0.0 +18220,32,32,19,0.0 +18220,30,25.89,19,0.0 +18220,73,15,12,0.0 +18220,50,16.25,9,0.0 +18220,26,31.23,4,0.0 +18220,27,43.9,4,0.0 +18220,42,14,7,0.0 +18220,43,46,22,0.0 +18220,68,12.5,34,0.0 +18220,28,45.6,33,0.0 +18220,41,9.65,11,0.0 +18220,49,20,25,0.0 +18220,71,21.5,2,0.0 +18220,19,9.2,28,0.0 +18220,18,62.5,19,0.0 +18220,25,14,26,0.0 +18220,69,36,38,0.0 +18220,45,9.5,23,0.0 +18220,7,30,15,0.0 +18220,29,123.79,19,0.0 +18220,21,10,8,0.0 +18220,67,14,3,0.0 +18220,55,24,13,0.0 +18220,4,22,2,0.0 +18220,17,39,34,0.0 +18220,37,26,6,0.0 +18220,66,17,32,0.0 +18220,63,43.9,5,0.0 +18220,58,13.25,48,0.0 +18220,62,49.3,40,0.0 +18220,16,17.45,50,0.0 +18220,35,18,17,0.0 +18220,34,14,50,0.0 +18220,39,18,33,0.0 +18220,64,33.25,29,0.0 +18220,5,21.35,47,0.0 +18220,74,10,2,0.0 +18220,22,21,17,0.0 +18220,54,7.45,9,0.0 +18220,11,21,42,0.0 +18220,38,263.5,44,0.0 +18220,24,4.5,33,0.0 +18220,57,19.5,21,0.0 +18220,1,18,12,0.0 +18220,46,12,41,0.0 +18220,60,34,3,0.0 +18220,47,9.5,13,0.0 +18220,31,12.5,38,0.0 +18220,8,40,25,0.0 +18220,33,2.5,50,0.0 +18220,12,38,23,0.0 +18220,70,15,1,0.0 +18220,75,7.75,28,0.0 +18220,9,97,4,0.0 +18221,17,39,2,0.0 +18221,2,19,1,0.0 +18221,10,31,19,0.0 +18221,47,9.5,14,0.0 +18221,73,15,15,0.0 +18221,48,12.75,30,0.0 +18221,51,53,42,0.0 +18221,61,28.5,3,0.0 +18221,53,32.8,3,0.0 +18221,43,46,5,0.0 +18221,41,9.65,46,0.0 +18221,18,62.5,7,0.0 +18221,15,15.5,44,0.0 +18221,22,21,48,0.0 +18221,76,18,42,0.0 +18221,49,20,35,0.0 +18221,56,38,18,0.0 +18221,37,26,32,0.0 +18221,66,17,41,0.0 +18221,68,12.5,43,0.0 +18221,57,19.5,25,0.0 +18221,8,40,12,0.0 +18221,30,25.89,49,0.0 +18221,13,6,45,0.0 +18221,50,16.25,38,0.0 +18221,7,30,10,0.0 +18221,4,22,39,0.0 +18221,62,49.3,10,0.0 +18221,34,14,30,0.0 +18221,55,24,12,0.0 +18221,33,2.5,49,0.0 +18221,29,123.79,40,0.0 +18221,60,34,9,0.0 +18221,31,12.5,48,0.0 +18221,24,4.5,12,0.0 +18221,75,7.75,4,0.0 +18222,2,19,11,0.0 +18222,15,15.5,27,0.0 +18222,51,53,27,0.0 +18222,5,21.35,34,0.0 +18222,27,43.9,15,0.0 +18222,31,12.5,34,0.0 +18222,23,9,47,0.0 +18222,22,21,41,0.0 +18222,20,81,10,0.0 +18222,68,12.5,38,0.0 +18222,35,18,46,0.0 +18222,48,12.75,17,0.0 +18222,49,20,44,0.0 +18222,6,25,16,0.0 +18222,74,10,33,0.0 +18222,55,24,4,0.0 +18222,19,9.2,3,0.0 +18222,26,31.23,22,0.0 +18222,36,19,14,0.0 +18222,57,19.5,38,0.0 +18222,67,14,6,0.0 +18222,1,18,36,0.0 +18222,25,14,22,0.0 +18222,75,7.75,45,0.0 +18222,65,21.05,31,0.0 +18222,12,38,34,0.0 +18222,64,33.25,10,0.0 +18222,9,97,30,0.0 +18222,62,49.3,33,0.0 +18222,45,9.5,28,0.0 +18222,8,40,12,0.0 +18222,50,16.25,15,0.0 +18222,28,45.6,34,0.0 +18222,32,32,19,0.0 +18223,62,49.3,21,0.0 +18223,17,39,19,0.0 +18223,42,14,21,0.0 +18223,48,12.75,21,0.0 +18223,22,21,48,0.0 +18223,60,34,38,0.0 +18223,59,55,33,0.0 +18223,21,10,16,0.0 +18223,47,9.5,6,0.0 +18223,38,263.5,35,0.0 +18223,10,31,27,0.0 +18223,58,13.25,32,0.0 +18223,63,43.9,32,0.0 +18223,23,9,16,0.0 +18223,39,18,48,0.0 +18223,37,26,40,0.0 +18223,28,45.6,9,0.0 +18223,4,22,43,0.0 +18223,57,19.5,6,0.0 +18223,25,14,16,0.0 +18223,14,23.25,46,0.0 +18223,72,34.8,36,0.0 +18223,26,31.23,2,0.0 +18223,76,18,1,0.0 +18223,43,46,35,0.0 +18223,54,7.45,18,0.0 +18223,34,14,50,0.0 +18223,31,12.5,8,0.0 +18223,9,97,1,0.0 +18223,74,10,19,0.0 +18223,2,19,23,0.0 +18223,65,21.05,37,0.0 +18223,52,7,32,0.0 +18223,20,81,10,0.0 +18223,67,14,27,0.0 +18223,44,19.45,48,0.0 +18223,61,28.5,4,0.0 +18223,18,62.5,28,0.0 +18223,16,17.45,23,0.0 +18223,49,20,48,0.0 +18223,24,4.5,14,0.0 +18223,77,13,11,0.0 +18223,68,12.5,7,0.0 +18223,46,12,22,0.0 +18223,15,15.5,49,0.0 +18223,29,123.79,34,0.0 +18223,6,25,15,0.0 +18223,73,15,18,0.0 +18223,45,9.5,8,0.0 +18223,13,6,19,0.0 +18223,35,18,25,0.0 +18223,5,21.35,28,0.0 +18223,7,30,37,0.0 +18223,71,21.5,30,0.0 +18223,55,24,10,0.0 +18223,1,18,21,0.0 +18223,36,19,15,0.0 +18223,11,21,25,0.0 +18223,8,40,47,0.0 +18223,75,7.75,3,0.0 +18223,64,33.25,12,0.0 +18223,3,10,10,0.0 +18223,41,9.65,39,0.0 +18223,70,15,20,0.0 +18223,27,43.9,19,0.0 +18223,69,36,11,0.0 +18223,40,18.4,35,0.0 +18224,53,32.8,11,0.0 +18224,3,10,43,0.0 +18224,30,25.89,39,0.0 +18224,7,30,44,0.0 +18224,58,13.25,21,0.0 +18224,25,14,31,0.0 +18224,69,36,17,0.0 +18224,60,34,46,0.0 +18224,9,97,7,0.0 +18224,29,123.79,8,0.0 +18224,10,31,22,0.0 +18225,58,13.25,12,0.0 +18225,53,32.8,35,0.0 +18225,1,18,14,0.0 +18225,35,18,33,0.0 +18225,40,18.4,25,0.0 +18225,10,31,14,0.0 +18225,71,21.5,25,0.0 +18225,2,19,43,0.0 +18225,46,12,36,0.0 +18225,74,10,26,0.0 +18225,39,18,22,0.0 +18225,25,14,40,0.0 +18226,32,32,11,0.0 +18226,69,36,36,0.0 +18226,20,81,42,0.0 +18226,29,123.79,17,0.0 +18226,64,33.25,19,0.0 +18226,43,46,8,0.0 +18226,26,31.23,5,0.0 +18226,21,10,22,0.0 +18226,56,38,2,0.0 +18226,36,19,35,0.0 +18226,23,9,44,0.0 +18226,25,14,5,0.0 +18226,77,13,4,0.0 +18226,2,19,28,0.0 +18226,8,40,32,0.0 +18226,53,32.8,15,0.0 +18226,46,12,14,0.0 +18226,62,49.3,25,0.0 +18226,5,21.35,50,0.0 +18226,47,9.5,3,0.0 +18226,48,12.75,48,0.0 +18226,37,26,2,0.0 +18226,65,21.05,27,0.0 +18226,75,7.75,29,0.0 +18226,52,7,19,0.0 +18226,59,55,20,0.0 +18226,41,9.65,41,0.0 +18226,55,24,33,0.0 +18226,63,43.9,49,0.0 +18226,12,38,12,0.0 +18226,66,17,45,0.0 +18226,49,20,50,0.0 +18226,17,39,3,0.0 +18226,58,13.25,44,0.0 +18226,18,62.5,20,0.0 +18226,40,18.4,28,0.0 +18226,74,10,27,0.0 +18226,70,15,20,0.0 +18226,9,97,29,0.0 +18226,34,14,23,0.0 +18226,3,10,25,0.0 +18226,50,16.25,18,0.0 +18226,71,21.5,24,0.0 +18226,42,14,24,0.0 +18226,33,2.5,7,0.0 +18226,19,9.2,43,0.0 +18226,4,22,42,0.0 +18226,22,21,28,0.0 +18226,54,7.45,22,0.0 +18226,73,15,25,0.0 +18226,45,9.5,9,0.0 +18227,28,45.6,9,0.0 +18227,59,55,38,0.0 +18227,74,10,25,0.0 +18227,30,25.89,34,0.0 +18227,6,25,38,0.0 +18227,13,6,39,0.0 +18227,5,21.35,29,0.0 +18227,36,19,18,0.0 +18227,33,2.5,19,0.0 +18227,17,39,19,0.0 +18227,70,15,2,0.0 +18227,54,7.45,7,0.0 +18227,55,24,32,0.0 +18227,24,4.5,26,0.0 +18227,48,12.75,19,0.0 +18227,77,13,50,0.0 +18227,72,34.8,21,0.0 +18227,12,38,12,0.0 +18227,44,19.45,35,0.0 +18227,21,10,15,0.0 +18227,46,12,48,0.0 +18227,9,97,9,0.0 +18227,47,9.5,5,0.0 +18227,18,62.5,37,0.0 +18227,39,18,4,0.0 +18227,34,14,39,0.0 +18227,52,7,36,0.0 +18228,71,21.5,8,0.0 +18228,17,39,35,0.0 +18228,64,33.25,35,0.0 +18228,61,28.5,13,0.0 +18228,51,53,6,0.0 +18228,22,21,25,0.0 +18228,67,14,17,0.0 +18228,24,4.5,26,0.0 +18228,27,43.9,17,0.0 +18228,52,7,29,0.0 +18228,15,15.5,24,0.0 +18228,70,15,29,0.0 +18228,25,14,9,0.0 +18228,35,18,45,0.0 +18228,3,10,29,0.0 +18228,7,30,15,0.0 +18228,26,31.23,30,0.0 +18228,39,18,17,0.0 +18228,21,10,21,0.0 +18228,6,25,22,0.0 +18228,13,6,23,0.0 +18228,20,81,13,0.0 +18228,37,26,7,0.0 +18228,16,17.45,31,0.0 +18228,30,25.89,13,0.0 +18228,58,13.25,42,0.0 +18228,9,97,39,0.0 +18228,72,34.8,20,0.0 +18228,31,12.5,15,0.0 +18228,66,17,17,0.0 +18228,12,38,12,0.0 +18228,57,19.5,46,0.0 +18228,5,21.35,47,0.0 +18228,42,14,38,0.0 +18228,65,21.05,36,0.0 +18228,76,18,46,0.0 +18228,28,45.6,30,0.0 +18228,14,23.25,35,0.0 +18229,54,7.45,22,0.0 +18229,25,14,30,0.0 +18229,58,13.25,8,0.0 +18229,55,24,34,0.0 +18229,14,23.25,46,0.0 +18229,33,2.5,20,0.0 +18229,41,9.65,26,0.0 +18229,46,12,42,0.0 +18229,69,36,14,0.0 +18229,39,18,29,0.0 +18229,23,9,50,0.0 +18229,7,30,18,0.0 +18229,3,10,49,0.0 +18229,30,25.89,11,0.0 +18229,47,9.5,19,0.0 +18229,43,46,6,0.0 +18229,26,31.23,44,0.0 +18229,2,19,29,0.0 +18229,70,15,34,0.0 +18229,76,18,5,0.0 +18229,51,53,25,0.0 +18229,52,7,40,0.0 +18229,28,45.6,5,0.0 +18229,64,33.25,31,0.0 +18229,19,9.2,3,0.0 +18229,20,81,8,0.0 +18229,53,32.8,44,0.0 +18229,71,21.5,47,0.0 +18229,8,40,38,0.0 +18229,17,39,46,0.0 +18229,72,34.8,20,0.0 +18229,59,55,7,0.0 +18229,74,10,19,0.0 +18229,22,21,20,0.0 +18229,34,14,39,0.0 +18229,10,31,36,0.0 +18229,16,17.45,35,0.0 +18229,73,15,44,0.0 +18229,42,14,1,0.0 +18229,1,18,14,0.0 +18229,11,21,39,0.0 +18229,21,10,49,0.0 +18229,75,7.75,2,0.0 +18229,45,9.5,48,0.0 +18229,50,16.25,29,0.0 +18229,49,20,45,0.0 +18229,9,97,42,0.0 +18229,44,19.45,34,0.0 +18229,24,4.5,30,0.0 +18229,15,15.5,47,0.0 +18229,62,49.3,27,0.0 +18229,61,28.5,41,0.0 +18229,37,26,23,0.0 +18229,18,62.5,19,0.0 +18229,67,14,32,0.0 +18230,5,21.35,17,0.0 +18230,37,26,34,0.0 +18230,20,81,9,0.0 +18230,36,19,37,0.0 +18230,28,45.6,36,0.0 +18230,7,30,46,0.0 +18230,53,32.8,39,0.0 +18230,70,15,47,0.0 +18230,14,23.25,5,0.0 +18230,27,43.9,18,0.0 +18230,61,28.5,3,0.0 +18230,60,34,41,0.0 +18230,33,2.5,12,0.0 +18231,27,43.9,12,0.0 +18231,49,20,25,0.0 +18231,61,28.5,30,0.0 +18231,7,30,16,0.0 +18231,19,9.2,43,0.0 +18231,5,21.35,7,0.0 +18231,8,40,15,0.0 +18231,35,18,36,0.0 +18231,58,13.25,9,0.0 +18231,39,18,4,0.0 +18231,40,18.4,13,0.0 +18231,28,45.6,30,0.0 +18231,36,19,4,0.0 +18231,75,7.75,40,0.0 +18231,12,38,47,0.0 +18231,60,34,19,0.0 +18231,51,53,26,0.0 +18231,10,31,37,0.0 +18231,1,18,4,0.0 +18231,9,97,15,0.0 +18231,29,123.79,38,0.0 +18231,67,14,42,0.0 +18231,20,81,20,0.0 +18231,46,12,38,0.0 +18231,73,15,3,0.0 +18231,52,7,41,0.0 +18231,54,7.45,19,0.0 +18231,56,38,10,0.0 +18231,21,10,46,0.0 +18231,38,263.5,38,0.0 +18231,24,4.5,50,0.0 +18231,31,12.5,12,0.0 +18231,16,17.45,21,0.0 +18231,76,18,1,0.0 +18231,74,10,49,0.0 +18231,64,33.25,31,0.0 +18231,45,9.5,15,0.0 +18231,41,9.65,19,0.0 +18231,33,2.5,29,0.0 +18232,63,43.9,18,0.0 +18232,41,9.65,44,0.0 +18232,50,16.25,28,0.0 +18232,37,26,44,0.0 +18232,54,7.45,20,0.0 +18232,4,22,9,0.0 +18232,7,30,12,0.0 +18232,70,15,46,0.0 +18232,56,38,46,0.0 +18232,43,46,49,0.0 +18232,3,10,25,0.0 +18232,57,19.5,26,0.0 +18232,18,62.5,17,0.0 +18232,65,21.05,21,0.0 +18232,10,31,10,0.0 +18232,30,25.89,34,0.0 +18232,20,81,50,0.0 +18232,35,18,35,0.0 +18232,46,12,8,0.0 +18232,17,39,1,0.0 +18232,15,15.5,19,0.0 +18232,25,14,9,0.0 +18232,33,2.5,45,0.0 +18232,19,9.2,38,0.0 +18232,2,19,16,0.0 +18232,48,12.75,3,0.0 +18232,16,17.45,12,0.0 +18232,8,40,2,0.0 +18232,22,21,31,0.0 +18232,75,7.75,39,0.0 +18232,39,18,12,0.0 +18232,14,23.25,47,0.0 +18232,6,25,20,0.0 +18232,67,14,42,0.0 +18232,28,45.6,49,0.0 +18232,44,19.45,41,0.0 +18232,21,10,36,0.0 +18232,66,17,31,0.0 +18232,49,20,5,0.0 +18232,36,19,15,0.0 +18232,55,24,31,0.0 +18232,40,18.4,35,0.0 +18232,11,21,7,0.0 +18232,29,123.79,1,0.0 +18233,58,13.25,23,0.0 +18233,28,45.6,22,0.0 +18233,63,43.9,42,0.0 +18233,12,38,24,0.0 +18233,65,21.05,38,0.0 +18233,17,39,9,0.0 +18233,70,15,35,0.0 +18234,4,22,18,0.0 +18234,13,6,15,0.0 +18234,42,14,40,0.0 +18234,46,12,25,0.0 +18234,40,18.4,2,0.0 +18234,55,24,49,0.0 +18234,72,34.8,25,0.0 +18234,54,7.45,20,0.0 +18234,17,39,43,0.0 +18234,48,12.75,49,0.0 +18234,10,31,48,0.0 +18234,64,33.25,23,0.0 +18234,35,18,7,0.0 +18234,3,10,25,0.0 +18234,76,18,3,0.0 +18234,47,9.5,50,0.0 +18234,37,26,28,0.0 +18234,73,15,14,0.0 +18234,18,62.5,10,0.0 +18234,24,4.5,3,0.0 +18234,21,10,40,0.0 +18234,15,15.5,37,0.0 +18234,26,31.23,49,0.0 +18234,36,19,13,0.0 +18234,52,7,3,0.0 +18234,23,9,12,0.0 +18234,27,43.9,35,0.0 +18234,62,49.3,36,0.0 +18234,74,10,35,0.0 +18234,30,25.89,8,0.0 +18234,25,14,21,0.0 +18234,6,25,30,0.0 +18234,53,32.8,27,0.0 +18234,57,19.5,23,0.0 +18234,44,19.45,34,0.0 +18234,50,16.25,29,0.0 +18234,77,13,50,0.0 +18234,59,55,27,0.0 +18234,16,17.45,30,0.0 +18234,65,21.05,47,0.0 +18234,32,32,12,0.0 +18234,31,12.5,21,0.0 +18234,75,7.75,3,0.0 +18234,9,97,18,0.0 +18234,45,9.5,45,0.0 +18234,19,9.2,50,0.0 +18234,20,81,18,0.0 +18234,61,28.5,15,0.0 +18234,38,263.5,25,0.0 +18234,63,43.9,11,0.0 +18234,67,14,5,0.0 +18234,58,13.25,15,0.0 +18234,33,2.5,25,0.0 +18234,51,53,9,0.0 +18234,12,38,49,0.0 +18234,60,34,49,0.0 +18234,14,23.25,14,0.0 +18234,5,21.35,47,0.0 +18234,71,21.5,40,0.0 +18234,66,17,3,0.0 +18234,69,36,42,0.0 +18234,8,40,24,0.0 +18234,29,123.79,31,0.0 +18234,11,21,15,0.0 +18235,10,31,10,0.0 +18235,51,53,21,0.0 +18235,50,16.25,41,0.0 +18235,38,263.5,14,0.0 +18235,15,15.5,45,0.0 +18235,20,81,31,0.0 +18235,27,43.9,45,0.0 +18235,45,9.5,4,0.0 +18235,75,7.75,17,0.0 +18235,19,9.2,47,0.0 +18235,73,15,22,0.0 +18235,18,62.5,45,0.0 +18235,12,38,36,0.0 +18235,2,19,49,0.0 +18235,13,6,8,0.0 +18235,24,4.5,48,0.0 +18235,64,33.25,29,0.0 +18235,8,40,21,0.0 +18235,30,25.89,46,0.0 +18235,17,39,29,0.0 +18235,65,21.05,11,0.0 +18235,3,10,23,0.0 +18235,16,17.45,42,0.0 +18235,41,9.65,32,0.0 +18235,60,34,20,0.0 +18235,9,97,15,0.0 +18235,48,12.75,42,0.0 +18235,23,9,37,0.0 +18235,55,24,30,0.0 +18235,25,14,26,0.0 +18235,31,12.5,29,0.0 +18235,72,34.8,13,0.0 +18235,61,28.5,7,0.0 +18235,56,38,35,0.0 +18235,7,30,31,0.0 +18235,57,19.5,20,0.0 +18235,69,36,7,0.0 +18235,6,25,47,0.0 +18235,59,55,12,0.0 +18235,33,2.5,35,0.0 +18235,53,32.8,28,0.0 +18235,43,46,4,0.0 +18236,8,40,40,0.0 +18236,45,9.5,16,0.0 +18236,11,21,20,0.0 +18236,10,31,15,0.0 +18236,37,26,15,0.0 +18236,27,43.9,18,0.0 +18236,14,23.25,14,0.0 +18236,67,14,2,0.0 +18236,18,62.5,10,0.0 +18236,76,18,1,0.0 +18236,20,81,34,0.0 +18236,7,30,7,0.0 +18236,72,34.8,26,0.0 +18236,19,9.2,28,0.0 +18236,58,13.25,42,0.0 +18236,25,14,28,0.0 +18236,41,9.65,20,0.0 +18236,55,24,42,0.0 +18236,4,22,7,0.0 +18236,63,43.9,16,0.0 +18236,49,20,33,0.0 +18236,34,14,7,0.0 +18236,70,15,35,0.0 +18236,28,45.6,38,0.0 +18236,5,21.35,9,0.0 +18236,12,38,19,0.0 +18236,24,4.5,1,0.0 +18236,23,9,44,0.0 +18236,62,49.3,26,0.0 +18236,68,12.5,41,0.0 +18236,77,13,32,0.0 +18236,15,15.5,44,0.0 +18236,52,7,31,0.0 +18236,26,31.23,44,0.0 +18236,21,10,20,0.0 +18236,30,25.89,29,0.0 +18236,22,21,48,0.0 +18236,39,18,32,0.0 +18236,17,39,42,0.0 +18236,29,123.79,3,0.0 +18236,43,46,1,0.0 +18236,38,263.5,13,0.0 +18236,57,19.5,33,0.0 +18236,60,34,33,0.0 +18236,9,97,8,0.0 +18236,54,7.45,3,0.0 +18236,3,10,12,0.0 +18236,31,12.5,14,0.0 +18236,32,32,12,0.0 +18236,33,2.5,6,0.0 +18236,50,16.25,50,0.0 +18236,65,21.05,24,0.0 +18236,64,33.25,10,0.0 +18236,66,17,32,0.0 +18236,44,19.45,37,0.0 +18236,61,28.5,9,0.0 +18236,56,38,42,0.0 +18236,42,14,6,0.0 +18236,69,36,2,0.0 +18237,57,19.5,45,0.0 +18237,53,32.8,29,0.0 +18237,18,62.5,44,0.0 +18237,49,20,50,0.0 +18237,48,12.75,8,0.0 +18237,61,28.5,46,0.0 +18237,27,43.9,5,0.0 +18237,8,40,10,0.0 +18237,6,25,12,0.0 +18237,40,18.4,1,0.0 +18237,13,6,12,0.0 +18237,5,21.35,36,0.0 +18237,15,15.5,36,0.0 +18237,7,30,13,0.0 +18237,59,55,19,0.0 +18237,75,7.75,37,0.0 +18237,10,31,8,0.0 +18237,55,24,16,0.0 +18237,4,22,47,0.0 +18237,29,123.79,4,0.0 +18237,32,32,13,0.0 +18237,77,13,24,0.0 +18237,66,17,15,0.0 +18237,64,33.25,2,0.0 +18237,35,18,2,0.0 +18237,25,14,20,0.0 +18237,44,19.45,41,0.0 +18238,43,46,6,0.0 +18238,18,62.5,30,0.0 +18238,53,32.8,16,0.0 +18238,39,18,38,0.0 +18238,32,32,20,0.0 +18238,2,19,21,0.0 +18238,37,26,7,0.0 +18238,36,19,35,0.0 +18238,59,55,21,0.0 +18238,50,16.25,4,0.0 +18238,65,21.05,47,0.0 +18238,38,263.5,23,0.0 +18238,58,13.25,39,0.0 +18238,30,25.89,50,0.0 +18238,62,49.3,43,0.0 +18238,51,53,18,0.0 +18238,57,19.5,50,0.0 +18238,68,12.5,13,0.0 +18238,35,18,19,0.0 +18239,26,31.23,1,0.0 +18239,32,32,26,0.0 +18239,50,16.25,19,0.0 +18239,3,10,17,0.0 +18239,30,25.89,20,0.0 +18239,18,62.5,29,0.0 +18239,61,28.5,12,0.0 +18239,11,21,11,0.0 +18239,62,49.3,49,0.0 +18240,55,24,2,0.0 +18240,74,10,38,0.0 +18240,13,6,1,0.0 +18240,14,23.25,38,0.0 +18240,22,21,3,0.0 +18240,18,62.5,34,0.0 +18240,54,7.45,44,0.0 +18240,44,19.45,39,0.0 +18240,76,18,28,0.0 +18240,25,14,5,0.0 +18240,43,46,48,0.0 +18240,4,22,26,0.0 +18240,49,20,16,0.0 +18240,77,13,4,0.0 +18240,29,123.79,29,0.0 +18240,8,40,42,0.0 +18240,57,19.5,34,0.0 +18240,63,43.9,43,0.0 +18240,30,25.89,44,0.0 +18240,21,10,6,0.0 +18240,61,28.5,50,0.0 +18240,75,7.75,2,0.0 +18240,6,25,1,0.0 +18240,65,21.05,50,0.0 +18240,1,18,47,0.0 +18240,35,18,11,0.0 +18240,24,4.5,6,0.0 +18240,9,97,20,0.0 +18240,73,15,39,0.0 +18240,31,12.5,44,0.0 +18240,72,34.8,44,0.0 +18240,36,19,34,0.0 +18240,42,14,38,0.0 +18240,16,17.45,8,0.0 +18240,46,12,42,0.0 +18240,28,45.6,4,0.0 +18240,15,15.5,23,0.0 +18240,70,15,12,0.0 +18240,58,13.25,44,0.0 +18240,67,14,6,0.0 +18240,41,9.65,13,0.0 +18240,39,18,13,0.0 +18240,20,81,44,0.0 +18240,51,53,6,0.0 +18240,52,7,16,0.0 +18240,60,34,20,0.0 +18240,50,16.25,6,0.0 +18240,37,26,19,0.0 +18240,5,21.35,14,0.0 +18240,12,38,4,0.0 +18240,7,30,4,0.0 +18240,64,33.25,21,0.0 +18240,45,9.5,27,0.0 +18240,34,14,29,0.0 +18240,71,21.5,10,0.0 +18240,11,21,35,0.0 +18240,68,12.5,19,0.0 +18240,17,39,48,0.0 +18240,62,49.3,16,0.0 +18240,66,17,29,0.0 +18240,2,19,44,0.0 +18240,23,9,41,0.0 +18240,69,36,28,0.0 +18240,59,55,29,0.0 +18240,26,31.23,28,0.0 +18240,47,9.5,19,0.0 +18240,33,2.5,46,0.0 +18240,3,10,4,0.0 +18240,32,32,16,0.0 +18240,27,43.9,30,0.0 +18240,48,12.75,49,0.0 +18240,40,18.4,2,0.0 +18240,38,263.5,28,0.0 +18240,10,31,2,0.0 +18240,19,9.2,22,0.0 +18240,53,32.8,15,0.0 +18240,56,38,48,0.0 +18241,40,18.4,24,0.0 +18241,3,10,35,0.0 +18241,7,30,36,0.0 +18241,20,81,15,0.0 +18241,17,39,21,0.0 +18241,39,18,41,0.0 +18241,10,31,44,0.0 +18241,44,19.45,12,0.0 +18241,58,13.25,35,0.0 +18241,41,9.65,6,0.0 +18241,25,14,29,0.0 +18241,76,18,18,0.0 +18241,64,33.25,9,0.0 +18241,9,97,23,0.0 +18241,77,13,49,0.0 +18241,42,14,26,0.0 +18241,62,49.3,31,0.0 +18241,60,34,39,0.0 +18241,56,38,28,0.0 +18241,48,12.75,40,0.0 +18241,57,19.5,14,0.0 +18242,15,15.5,32,0.0 +18242,65,21.05,33,0.0 +18242,13,6,8,0.0 +18242,70,15,13,0.0 +18242,56,38,42,0.0 +18242,18,62.5,38,0.0 +18242,6,25,31,0.0 +18242,1,18,47,0.0 +18242,55,24,1,0.0 +18242,52,7,16,0.0 +18242,43,46,38,0.0 +18242,36,19,10,0.0 +18242,39,18,31,0.0 +18242,76,18,19,0.0 +18242,77,13,2,0.0 +18242,24,4.5,21,0.0 +18242,35,18,48,0.0 +18242,5,21.35,31,0.0 +18242,38,263.5,47,0.0 +18242,12,38,45,0.0 +18243,19,9.2,14,0.0 +18243,17,39,5,0.0 +18243,54,7.45,18,0.0 +18243,22,21,17,0.0 +18243,35,18,7,0.0 +18243,71,21.5,42,0.0 +18243,52,7,29,0.0 +18243,69,36,1,0.0 +18243,27,43.9,28,0.0 +18243,50,16.25,13,0.0 +18243,74,10,1,0.0 +18243,23,9,18,0.0 +18243,53,32.8,15,0.0 +18243,2,19,8,0.0 +18243,66,17,42,0.0 +18243,57,19.5,11,0.0 +18243,64,33.25,4,0.0 +18243,13,6,41,0.0 +18243,7,30,50,0.0 +18243,42,14,36,0.0 +18243,6,25,21,0.0 +18243,70,15,16,0.0 +18243,65,21.05,11,0.0 +18243,77,13,17,0.0 +18243,3,10,48,0.0 +18243,41,9.65,31,0.0 +18243,63,43.9,39,0.0 +18243,58,13.25,3,0.0 +18243,30,25.89,8,0.0 +18243,11,21,43,0.0 +18243,12,38,10,0.0 +18243,72,34.8,18,0.0 +18243,4,22,48,0.0 +18243,48,12.75,4,0.0 +18243,75,7.75,27,0.0 +18243,28,45.6,1,0.0 +18243,25,14,47,0.0 +18243,20,81,22,0.0 +18243,62,49.3,1,0.0 +18243,46,12,17,0.0 +18243,38,263.5,32,0.0 +18243,16,17.45,33,0.0 +18243,10,31,18,0.0 +18243,32,32,33,0.0 +18243,18,62.5,29,0.0 +18243,8,40,11,0.0 +18243,34,14,28,0.0 +18243,45,9.5,8,0.0 +18243,39,18,12,0.0 +18243,67,14,14,0.0 +18243,43,46,7,0.0 +18243,9,97,39,0.0 +18243,61,28.5,26,0.0 +18243,44,19.45,33,0.0 +18243,1,18,38,0.0 +18243,59,55,12,0.0 +18243,36,19,35,0.0 +18243,29,123.79,47,0.0 +18243,47,9.5,43,0.0 +18243,26,31.23,35,0.0 +18243,76,18,3,0.0 +18243,55,24,45,0.0 +18243,5,21.35,25,0.0 +18243,73,15,37,0.0 +18243,56,38,19,0.0 +18243,24,4.5,44,0.0 +18244,28,45.6,15,0.0 +18244,58,13.25,29,0.0 +18244,66,17,35,0.0 +18244,70,15,17,0.0 +18244,49,20,17,0.0 +18244,57,19.5,50,0.0 +18244,8,40,43,0.0 +18244,73,15,4,0.0 +18244,44,19.45,34,0.0 +18244,14,23.25,35,0.0 +18244,48,12.75,2,0.0 +18244,54,7.45,10,0.0 +18245,13,6,27,0.0 +18245,68,12.5,22,0.0 +18245,56,38,1,0.0 +18245,54,7.45,18,0.0 +18245,21,10,11,0.0 +18245,50,16.25,38,0.0 +18245,52,7,11,0.0 +18245,27,43.9,39,0.0 +18245,67,14,32,0.0 +18245,77,13,49,0.0 +18245,64,33.25,23,0.0 +18245,46,12,27,0.0 +18245,24,4.5,4,0.0 +18245,59,55,29,0.0 +18245,74,10,23,0.0 +18245,44,19.45,29,0.0 +18245,76,18,20,0.0 +18245,57,19.5,46,0.0 +18245,62,49.3,27,0.0 +18245,7,30,3,0.0 +18245,43,46,45,0.0 +18245,48,12.75,2,0.0 +18245,2,19,13,0.0 +18245,35,18,38,0.0 +18245,15,15.5,12,0.0 +18245,69,36,18,0.0 +18245,1,18,9,0.0 +18245,6,25,50,0.0 +18245,29,123.79,15,0.0 +18245,18,62.5,49,0.0 +18245,25,14,11,0.0 +18245,75,7.75,9,0.0 +18245,37,26,11,0.0 +18245,8,40,38,0.0 +18246,70,15,41,0.0 +18246,53,32.8,9,0.0 +18246,65,21.05,46,0.0 +18246,8,40,5,0.0 +18246,28,45.6,39,0.0 +18246,4,22,39,0.0 +18246,40,18.4,30,0.0 +18246,51,53,29,0.0 +18246,41,9.65,29,0.0 +18246,68,12.5,33,0.0 +18246,43,46,20,0.0 +18246,54,7.45,26,0.0 +18246,24,4.5,9,0.0 +18246,39,18,47,0.0 +18246,75,7.75,50,0.0 +18246,15,15.5,6,0.0 +18246,73,15,26,0.0 +18246,50,16.25,15,0.0 +18246,76,18,20,0.0 +18246,27,43.9,3,0.0 +18246,20,81,49,0.0 +18246,13,6,50,0.0 +18246,17,39,49,0.0 +18246,14,23.25,33,0.0 +18246,33,2.5,50,0.0 +18246,18,62.5,24,0.0 +18246,44,19.45,35,0.0 +18246,62,49.3,13,0.0 +18246,5,21.35,43,0.0 +18246,67,14,17,0.0 +18246,11,21,40,0.0 +18246,77,13,35,0.0 +18246,31,12.5,43,0.0 +18246,66,17,1,0.0 +18246,47,9.5,26,0.0 +18246,12,38,6,0.0 +18246,71,21.5,44,0.0 +18246,56,38,2,0.0 +18246,52,7,50,0.0 +18246,60,34,45,0.0 +18246,61,28.5,22,0.0 +18246,26,31.23,15,0.0 +18246,29,123.79,7,0.0 +18246,63,43.9,26,0.0 +18246,19,9.2,10,0.0 +18246,55,24,27,0.0 +18247,20,81,32,0.0 +18247,27,43.9,15,0.0 +18247,66,17,50,0.0 +18247,30,25.89,49,0.0 +18247,48,12.75,27,0.0 +18247,31,12.5,48,0.0 +18247,33,2.5,25,0.0 +18247,68,12.5,5,0.0 +18247,74,10,44,0.0 +18247,71,21.5,21,0.0 +18247,63,43.9,40,0.0 +18247,28,45.6,21,0.0 +18247,16,17.45,39,0.0 +18247,76,18,2,0.0 +18247,50,16.25,28,0.0 +18247,29,123.79,20,0.0 +18247,26,31.23,27,0.0 +18247,15,15.5,37,0.0 +18247,46,12,44,0.0 +18247,2,19,49,0.0 +18247,77,13,16,0.0 +18247,12,38,42,0.0 +18247,62,49.3,17,0.0 +18247,3,10,29,0.0 +18247,72,34.8,43,0.0 +18247,47,9.5,38,0.0 +18247,10,31,9,0.0 +18247,59,55,30,0.0 +18247,32,32,28,0.0 +18247,14,23.25,41,0.0 +18247,38,263.5,2,0.0 +18247,13,6,33,0.0 +18247,7,30,17,0.0 +18247,25,14,24,0.0 +18247,4,22,2,0.0 +18247,49,20,42,0.0 +18247,18,62.5,13,0.0 +18247,52,7,12,0.0 +18247,1,18,27,0.0 +18247,36,19,15,0.0 +18247,34,14,40,0.0 +18247,75,7.75,41,0.0 +18247,45,9.5,29,0.0 +18247,69,36,19,0.0 +18247,5,21.35,25,0.0 +18247,51,53,43,0.0 +18247,60,34,12,0.0 +18247,39,18,27,0.0 +18247,70,15,28,0.0 +18247,21,10,47,0.0 +18247,11,21,34,0.0 +18247,22,21,47,0.0 +18247,35,18,34,0.0 +18247,40,18.4,6,0.0 +18247,6,25,31,0.0 +18247,44,19.45,10,0.0 +18247,61,28.5,37,0.0 +18247,8,40,8,0.0 +18247,54,7.45,25,0.0 +18247,17,39,19,0.0 +18247,43,46,38,0.0 +18247,53,32.8,30,0.0 +18247,58,13.25,31,0.0 +18247,9,97,42,0.0 +18247,42,14,22,0.0 +18247,19,9.2,17,0.0 +18247,37,26,17,0.0 +18248,31,12.5,1,0.0 +18248,41,9.65,34,0.0 +18248,57,19.5,30,0.0 +18248,70,15,35,0.0 +18248,50,16.25,19,0.0 +18248,73,15,2,0.0 +18248,48,12.75,13,0.0 +18248,56,38,13,0.0 +18248,55,24,11,0.0 +18248,69,36,4,0.0 +18248,5,21.35,9,0.0 +18248,44,19.45,3,0.0 +18248,24,4.5,46,0.0 +18248,25,14,29,0.0 +18248,22,21,17,0.0 +18248,71,21.5,25,0.0 +18248,14,23.25,39,0.0 +18248,29,123.79,16,0.0 +18248,19,9.2,50,0.0 +18248,7,30,40,0.0 +18248,16,17.45,47,0.0 +18248,46,12,50,0.0 +18248,42,14,13,0.0 +18248,32,32,3,0.0 +18248,54,7.45,6,0.0 +18248,26,31.23,31,0.0 +18248,74,10,21,0.0 +18248,10,31,22,0.0 +18248,33,2.5,14,0.0 +18248,43,46,30,0.0 +18248,65,21.05,14,0.0 +18249,49,20,29,0.0 +18249,3,10,37,0.0 +18249,62,49.3,48,0.0 +18249,6,25,3,0.0 +18249,69,36,11,0.0 +18249,20,81,35,0.0 +18249,37,26,1,0.0 +18249,56,38,39,0.0 +18249,34,14,45,0.0 +18249,60,34,2,0.0 +18249,51,53,9,0.0 +18249,18,62.5,33,0.0 +18249,40,18.4,29,0.0 +18249,10,31,27,0.0 +18249,41,9.65,29,0.0 +18249,1,18,12,0.0 +18249,57,19.5,12,0.0 +18249,71,21.5,1,0.0 +18249,26,31.23,34,0.0 +18249,16,17.45,11,0.0 +18249,23,9,30,0.0 +18249,70,15,13,0.0 +18249,64,33.25,1,0.0 +18249,72,34.8,21,0.0 +18249,29,123.79,34,0.0 +18249,15,15.5,20,0.0 +18249,9,97,24,0.0 +18249,47,9.5,48,0.0 +18249,61,28.5,29,0.0 +18249,73,15,24,0.0 +18249,58,13.25,34,0.0 +18249,32,32,18,0.0 +18249,50,16.25,20,0.0 +18249,25,14,34,0.0 +18249,42,14,36,0.0 +18249,43,46,21,0.0 +18249,53,32.8,33,0.0 +18249,35,18,37,0.0 +18249,44,19.45,19,0.0 +18249,14,23.25,21,0.0 +18249,4,22,41,0.0 +18249,77,13,10,0.0 +18249,21,10,40,0.0 +18249,36,19,19,0.0 +18249,75,7.75,46,0.0 +18249,28,45.6,2,0.0 +18249,11,21,36,0.0 +18249,59,55,29,0.0 +18249,55,24,1,0.0 +18249,63,43.9,1,0.0 +18249,76,18,38,0.0 +18249,74,10,4,0.0 +18249,7,30,19,0.0 +18249,24,4.5,32,0.0 +18249,8,40,43,0.0 +18249,17,39,4,0.0 +18249,39,18,34,0.0 +18249,68,12.5,49,0.0 +18249,12,38,8,0.0 +18249,30,25.89,11,0.0 +18249,45,9.5,12,0.0 +18249,33,2.5,9,0.0 +18249,46,12,39,0.0 +18249,19,9.2,49,0.0 +18249,22,21,26,0.0 +18249,38,263.5,49,0.0 +18249,31,12.5,15,0.0 +18249,52,7,8,0.0 +18249,13,6,6,0.0 +18249,5,21.35,26,0.0 +18249,2,19,43,0.0 +18250,64,33.25,47,0.0 +18250,44,19.45,33,0.0 +18250,77,13,40,0.0 +18250,9,97,49,0.0 +18250,29,123.79,33,0.0 +18250,30,25.89,37,0.0 +18250,36,19,45,0.0 +18250,3,10,18,0.0 +18250,67,14,29,0.0 +18250,68,12.5,42,0.0 +18250,52,7,5,0.0 +18250,46,12,42,0.0 +18250,50,16.25,5,0.0 +18250,37,26,27,0.0 +18250,74,10,16,0.0 +18250,6,25,24,0.0 +18250,11,21,45,0.0 +18250,4,22,29,0.0 +18250,54,7.45,14,0.0 +18250,15,15.5,1,0.0 +18250,66,17,25,0.0 +18250,38,263.5,29,0.0 +18250,17,39,35,0.0 +18250,51,53,32,0.0 +18250,60,34,27,0.0 +18250,49,20,49,0.0 +18250,16,17.45,47,0.0 +18250,53,32.8,19,0.0 +18250,12,38,33,0.0 +18250,7,30,46,0.0 +18250,42,14,46,0.0 +18250,31,12.5,21,0.0 +18250,58,13.25,28,0.0 +18250,41,9.65,30,0.0 +18250,70,15,28,0.0 +18250,10,31,16,0.0 +18250,72,34.8,38,0.0 +18250,56,38,17,0.0 +18250,8,40,12,0.0 +18250,20,81,24,0.0 +18250,75,7.75,48,0.0 +18250,14,23.25,1,0.0 +18250,39,18,39,0.0 +18250,13,6,28,0.0 +18250,23,9,27,0.0 +18250,45,9.5,30,0.0 +18250,18,62.5,3,0.0 +18250,40,18.4,25,0.0 +18250,34,14,1,0.0 +18250,22,21,20,0.0 +18250,76,18,21,0.0 +18250,5,21.35,50,0.0 +18250,48,12.75,19,0.0 +18250,25,14,48,0.0 +18250,73,15,10,0.0 +18250,62,49.3,46,0.0 +18250,59,55,31,0.0 +18250,27,43.9,9,0.0 +18250,63,43.9,20,0.0 +18250,2,19,24,0.0 +18250,65,21.05,18,0.0 +18250,55,24,31,0.0 +18250,43,46,30,0.0 +18250,32,32,15,0.0 +18250,69,36,50,0.0 +18250,35,18,12,0.0 +18250,1,18,2,0.0 +18250,28,45.6,50,0.0 +18250,47,9.5,50,0.0 +18250,21,10,4,0.0 +18250,57,19.5,15,0.0 +18250,61,28.5,10,0.0 +18250,19,9.2,21,0.0 +18250,26,31.23,16,0.0 +18250,24,4.5,14,0.0 +18251,1,18,12,0.0 +18251,69,36,12,0.0 +18251,53,32.8,13,0.0 +18251,71,21.5,22,0.0 +18251,18,62.5,10,0.0 +18251,30,25.89,24,0.0 +18251,35,18,45,0.0 +18251,9,97,12,0.0 +18251,32,32,30,0.0 +18251,5,21.35,7,0.0 +18251,13,6,21,0.0 +18252,59,55,10,0.0 +18252,50,16.25,44,0.0 +18252,20,81,19,0.0 +18252,77,13,38,0.0 +18252,30,25.89,2,0.0 +18252,43,46,37,0.0 +18252,64,33.25,35,0.0 +18252,7,30,1,0.0 +18252,53,32.8,23,0.0 +18252,23,9,36,0.0 +18252,37,26,36,0.0 +18252,61,28.5,2,0.0 +18252,21,10,10,0.0 +18252,2,19,28,0.0 +18252,13,6,42,0.0 +18252,51,53,45,0.0 +18252,63,43.9,32,0.0 +18252,6,25,2,0.0 +18252,45,9.5,40,0.0 +18252,58,13.25,20,0.0 +18252,68,12.5,9,0.0 +18252,70,15,42,0.0 +18252,52,7,49,0.0 +18252,71,21.5,38,0.0 +18253,54,7.45,23,0.0 +18253,64,33.25,26,0.0 +18253,17,39,5,0.0 +18253,73,15,46,0.0 +18253,34,14,38,0.0 +18253,76,18,8,0.0 +18253,29,123.79,45,0.0 +18253,50,16.25,33,0.0 +18253,62,49.3,29,0.0 +18253,31,12.5,20,0.0 +18253,67,14,31,0.0 +18253,77,13,43,0.0 +18253,16,17.45,24,0.0 +18253,41,9.65,49,0.0 +18253,49,20,50,0.0 +18253,55,24,29,0.0 +18253,2,19,8,0.0 +18253,70,15,2,0.0 +18253,3,10,21,0.0 +18253,66,17,45,0.0 +18253,48,12.75,7,0.0 +18253,20,81,17,0.0 +18253,8,40,22,0.0 +18253,19,9.2,10,0.0 +18253,37,26,13,0.0 +18253,26,31.23,20,0.0 +18253,7,30,50,0.0 +18253,56,38,12,0.0 +18253,59,55,39,0.0 +18253,35,18,29,0.0 +18253,46,12,24,0.0 +18253,58,13.25,32,0.0 +18253,45,9.5,49,0.0 +18253,68,12.5,38,0.0 +18253,60,34,1,0.0 +18253,47,9.5,30,0.0 +18253,53,32.8,14,0.0 +18253,51,53,44,0.0 +18253,21,10,15,0.0 +18253,39,18,36,0.0 +18253,69,36,5,0.0 +18253,5,21.35,43,0.0 +18253,24,4.5,4,0.0 +18253,61,28.5,33,0.0 +18253,4,22,44,0.0 +18253,65,21.05,26,0.0 +18253,44,19.45,33,0.0 +18253,23,9,45,0.0 +18253,74,10,28,0.0 +18253,63,43.9,33,0.0 +18253,40,18.4,40,0.0 +18253,22,21,3,0.0 +18253,18,62.5,24,0.0 +18253,11,21,32,0.0 +18253,13,6,24,0.0 +18253,12,38,5,0.0 +18253,14,23.25,42,0.0 +18253,1,18,29,0.0 +18253,15,15.5,16,0.0 +18253,27,43.9,16,0.0 +18253,43,46,26,0.0 +18253,57,19.5,4,0.0 +18253,75,7.75,27,0.0 +18253,38,263.5,38,0.0 +18253,72,34.8,2,0.0 +18253,71,21.5,2,0.0 +18253,52,7,25,0.0 +18253,10,31,14,0.0 +18253,6,25,38,0.0 +18253,30,25.89,23,0.0 +18253,28,45.6,25,0.0 +18253,9,97,37,0.0 +18253,32,32,17,0.0 +18254,75,7.75,28,0.0 +18254,77,13,2,0.0 +18254,15,15.5,29,0.0 +18254,57,19.5,49,0.0 +18254,25,14,12,0.0 +18254,13,6,6,0.0 +18254,11,21,19,0.0 +18254,7,30,13,0.0 +18254,10,31,47,0.0 +18254,52,7,17,0.0 +18254,30,25.89,10,0.0 +18254,41,9.65,31,0.0 +18254,58,13.25,24,0.0 +18254,8,40,43,0.0 +18254,68,12.5,35,0.0 +18254,56,38,26,0.0 +18254,60,34,1,0.0 +18254,59,55,35,0.0 +18254,31,12.5,38,0.0 +18254,50,16.25,43,0.0 +18254,76,18,44,0.0 +18254,55,24,50,0.0 +18254,49,20,27,0.0 +18254,54,7.45,7,0.0 +18254,37,26,5,0.0 +18254,24,4.5,15,0.0 +18254,71,21.5,2,0.0 +18254,22,21,23,0.0 +18254,2,19,32,0.0 +18254,5,21.35,50,0.0 +18254,1,18,35,0.0 +18254,14,23.25,27,0.0 +18254,17,39,38,0.0 +18254,73,15,34,0.0 +18254,65,21.05,16,0.0 +18254,33,2.5,49,0.0 +18254,38,263.5,22,0.0 +18255,21,10,22,0.0 +18255,43,46,13,0.0 +18255,50,16.25,17,0.0 +18255,41,9.65,20,0.0 +18255,63,43.9,41,0.0 +18255,42,14,20,0.0 +18255,32,32,44,0.0 +18255,13,6,12,0.0 +18255,27,43.9,24,0.0 +18255,54,7.45,2,0.0 +18255,25,14,11,0.0 +18255,2,19,37,0.0 +18255,15,15.5,27,0.0 +18255,72,34.8,8,0.0 +18255,12,38,20,0.0 +18255,55,24,25,0.0 +18255,74,10,25,0.0 +18255,17,39,35,0.0 +18255,70,15,5,0.0 +18255,39,18,22,0.0 +18255,76,18,30,0.0 +18255,49,20,24,0.0 +18255,45,9.5,10,0.0 +18256,71,21.5,43,0.0 +18256,40,18.4,23,0.0 +18256,28,45.6,3,0.0 +18256,61,28.5,30,0.0 +18256,60,34,49,0.0 +18256,21,10,18,0.0 +18256,52,7,37,0.0 +18256,58,13.25,28,0.0 +18256,57,19.5,7,0.0 +18256,15,15.5,19,0.0 +18256,73,15,48,0.0 +18256,24,4.5,38,0.0 +18256,23,9,17,0.0 +18256,53,32.8,42,0.0 +18256,51,53,45,0.0 +18256,56,38,8,0.0 +18256,29,123.79,16,0.0 +18256,16,17.45,12,0.0 +18256,4,22,12,0.0 +18256,68,12.5,28,0.0 +18256,54,7.45,29,0.0 +18256,77,13,39,0.0 +18256,22,21,7,0.0 +18256,67,14,20,0.0 +18256,5,21.35,50,0.0 +18256,59,55,48,0.0 +18256,47,9.5,14,0.0 +18256,65,21.05,6,0.0 +18256,46,12,8,0.0 +18256,62,49.3,33,0.0 +18256,20,81,2,0.0 +18256,55,24,34,0.0 +18256,19,9.2,27,0.0 +18256,50,16.25,34,0.0 +18256,48,12.75,18,0.0 +18256,41,9.65,50,0.0 +18256,69,36,40,0.0 +18256,64,33.25,50,0.0 +18256,36,19,36,0.0 +18256,30,25.89,27,0.0 +18256,63,43.9,46,0.0 +18256,45,9.5,40,0.0 +18256,37,26,30,0.0 +18256,38,263.5,44,0.0 +18256,14,23.25,50,0.0 +18256,26,31.23,24,0.0 +18256,25,14,30,0.0 +18256,72,34.8,23,0.0 +18256,39,18,22,0.0 +18256,31,12.5,13,0.0 +18256,9,97,26,0.0 +18256,75,7.75,18,0.0 +18256,76,18,9,0.0 +18256,6,25,10,0.0 +18256,49,20,44,0.0 +18256,34,14,47,0.0 +18256,10,31,25,0.0 +18256,11,21,21,0.0 +18256,33,2.5,43,0.0 +18256,3,10,36,0.0 +18256,43,46,27,0.0 +18256,18,62.5,50,0.0 +18256,8,40,41,0.0 +18256,35,18,10,0.0 +18256,1,18,42,0.0 +18256,66,17,41,0.0 +18256,32,32,25,0.0 +18256,12,38,1,0.0 +18256,74,10,45,0.0 +18256,2,19,4,0.0 +18257,7,30,29,0.0 +18257,46,12,22,0.0 +18257,54,7.45,47,0.0 +18257,51,53,29,0.0 +18257,31,12.5,45,0.0 +18257,3,10,29,0.0 +18257,12,38,31,0.0 +18257,16,17.45,18,0.0 +18257,43,46,47,0.0 +18257,55,24,5,0.0 +18257,27,43.9,4,0.0 +18257,13,6,30,0.0 +18257,47,9.5,49,0.0 +18257,53,32.8,1,0.0 +18257,30,25.89,13,0.0 +18257,37,26,7,0.0 +18257,25,14,44,0.0 +18257,41,9.65,6,0.0 +18257,36,19,41,0.0 +18257,32,32,13,0.0 +18257,14,23.25,32,0.0 +18257,2,19,27,0.0 +18257,75,7.75,10,0.0 +18257,33,2.5,5,0.0 +18257,4,22,41,0.0 +18257,11,21,4,0.0 +18257,74,10,48,0.0 +18257,42,14,1,0.0 +18257,40,18.4,15,0.0 +18257,68,12.5,43,0.0 +18257,23,9,19,0.0 +18257,38,263.5,40,0.0 +18257,18,62.5,9,0.0 +18257,61,28.5,4,0.0 +18257,63,43.9,45,0.0 +18257,71,21.5,23,0.0 +18257,76,18,40,0.0 +18257,22,21,2,0.0 +18257,58,13.25,37,0.0 +18257,44,19.45,14,0.0 +18257,62,49.3,45,0.0 +18257,52,7,2,0.0 +18257,77,13,26,0.0 +18257,6,25,31,0.0 +18257,70,15,2,0.0 +18257,34,14,28,0.0 +18257,56,38,25,0.0 +18257,59,55,30,0.0 +18257,26,31.23,3,0.0 +18257,50,16.25,12,0.0 +18257,45,9.5,35,0.0 +18257,35,18,28,0.0 +18257,64,33.25,40,0.0 +18257,9,97,33,0.0 +18257,29,123.79,42,0.0 +18257,5,21.35,48,0.0 +18257,49,20,26,0.0 +18257,17,39,19,0.0 +18257,19,9.2,50,0.0 +18257,67,14,23,0.0 +18257,57,19.5,20,0.0 +18257,60,34,37,0.0 +18257,10,31,24,0.0 +18257,24,4.5,50,0.0 +18257,48,12.75,45,0.0 +18257,72,34.8,24,0.0 +18257,1,18,19,0.0 +18257,8,40,34,0.0 +18258,49,20,9,0.0 +18258,56,38,29,0.0 +18258,63,43.9,36,0.0 +18258,65,21.05,10,0.0 +18258,71,21.5,5,0.0 +18258,26,31.23,16,0.0 +18258,59,55,40,0.0 +18258,39,18,25,0.0 +18258,14,23.25,26,0.0 +18258,15,15.5,11,0.0 +18258,8,40,18,0.0 +18258,43,46,30,0.0 +18258,28,45.6,43,0.0 +18258,34,14,41,0.0 +18258,48,12.75,15,0.0 +18258,3,10,8,0.0 +18258,25,14,17,0.0 +18258,40,18.4,25,0.0 +18258,20,81,26,0.0 +18258,5,21.35,8,0.0 +18258,41,9.65,26,0.0 +18258,45,9.5,7,0.0 +18258,44,19.45,47,0.0 +18258,21,10,7,0.0 +18258,60,34,13,0.0 +18258,46,12,40,0.0 +18258,75,7.75,12,0.0 +18258,9,97,40,0.0 +18258,29,123.79,29,0.0 +18258,24,4.5,28,0.0 +18258,6,25,44,0.0 +18258,64,33.25,23,0.0 +18258,77,13,21,0.0 +18258,17,39,29,0.0 +18258,22,21,23,0.0 +18258,4,22,43,0.0 +18258,52,7,36,0.0 +18258,67,14,33,0.0 +18258,66,17,1,0.0 +18258,61,28.5,18,0.0 +18258,70,15,14,0.0 +18258,47,9.5,36,0.0 +18258,19,9.2,14,0.0 +18258,38,263.5,34,0.0 +18258,7,30,45,0.0 +18258,57,19.5,11,0.0 +18258,69,36,11,0.0 +18258,42,14,31,0.0 +18258,68,12.5,22,0.0 +18258,62,49.3,30,0.0 +18258,18,62.5,49,0.0 +18258,30,25.89,18,0.0 +18258,58,13.25,43,0.0 +18258,37,26,26,0.0 +18258,23,9,15,0.0 +18258,32,32,18,0.0 +18258,31,12.5,28,0.0 +18258,12,38,14,0.0 +18258,51,53,21,0.0 +18258,13,6,18,0.0 +18258,73,15,42,0.0 +18258,55,24,17,0.0 +18258,36,19,2,0.0 +18258,74,10,12,0.0 +18258,1,18,47,0.0 +18258,27,43.9,28,0.0 +18258,50,16.25,26,0.0 +18258,16,17.45,24,0.0 +18258,11,21,16,0.0 +18258,54,7.45,49,0.0 +18258,53,32.8,43,0.0 +18258,10,31,40,0.0 +18258,33,2.5,21,0.0 +18258,72,34.8,6,0.0 +18258,76,18,8,0.0 +18258,35,18,35,0.0 +18258,2,19,41,0.0 +18259,77,13,50,0.0 +18259,50,16.25,8,0.0 +18259,66,17,4,0.0 +18259,26,31.23,13,0.0 +18259,5,21.35,25,0.0 +18259,17,39,7,0.0 +18259,33,2.5,4,0.0 +18259,53,32.8,17,0.0 +18259,21,10,41,0.0 +18259,11,21,39,0.0 +18259,74,10,16,0.0 +18259,48,12.75,30,0.0 +18259,64,33.25,13,0.0 +18259,52,7,15,0.0 +18259,35,18,15,0.0 +18259,49,20,38,0.0 +18259,1,18,33,0.0 +18259,6,25,35,0.0 +18259,25,14,24,0.0 +18259,19,9.2,44,0.0 +18259,10,31,10,0.0 +18259,27,43.9,36,0.0 +18259,47,9.5,12,0.0 +18259,41,9.65,22,0.0 +18259,60,34,36,0.0 +18259,13,6,26,0.0 +18259,59,55,48,0.0 +18259,62,49.3,19,0.0 +18259,75,7.75,48,0.0 +18259,2,19,18,0.0 +18259,45,9.5,4,0.0 +18259,7,30,49,0.0 +18259,58,13.25,45,0.0 +18259,46,12,37,0.0 +18259,34,14,49,0.0 +18259,40,18.4,46,0.0 +18259,61,28.5,33,0.0 +18259,16,17.45,27,0.0 +18259,54,7.45,13,0.0 +18259,73,15,9,0.0 +18259,15,15.5,20,0.0 +18259,37,26,43,0.0 +18259,44,19.45,32,0.0 +18259,68,12.5,23,0.0 +18259,14,23.25,23,0.0 +18259,28,45.6,23,0.0 +18259,51,53,10,0.0 +18259,31,12.5,3,0.0 +18259,8,40,15,0.0 +18259,63,43.9,34,0.0 +18259,12,38,42,0.0 +18259,22,21,15,0.0 +18259,72,34.8,48,0.0 +18259,57,19.5,37,0.0 +18259,23,9,29,0.0 +18259,30,25.89,9,0.0 +18259,38,263.5,40,0.0 +18259,69,36,19,0.0 +18259,3,10,33,0.0 +18259,18,62.5,37,0.0 +18259,24,4.5,42,0.0 +18259,70,15,27,0.0 +18259,67,14,12,0.0 +18259,32,32,24,0.0 +18259,76,18,19,0.0 +18259,39,18,38,0.0 +18259,29,123.79,2,0.0 +18259,20,81,38,0.0 +18259,55,24,18,0.0 +18260,9,97,31,0.0 +18260,36,19,46,0.0 +18260,20,81,37,0.0 +18260,18,62.5,6,0.0 +18260,50,16.25,27,0.0 +18260,57,19.5,36,0.0 +18260,5,21.35,49,0.0 +18260,30,25.89,46,0.0 +18260,26,31.23,13,0.0 +18260,73,15,42,0.0 +18260,43,46,4,0.0 +18260,4,22,4,0.0 +18260,11,21,25,0.0 +18260,31,12.5,7,0.0 +18260,58,13.25,25,0.0 +18260,8,40,1,0.0 +18260,41,9.65,44,0.0 +18260,54,7.45,1,0.0 +18260,6,25,2,0.0 +18260,75,7.75,46,0.0 +18260,59,55,15,0.0 +18260,67,14,10,0.0 +18260,70,15,2,0.0 +18260,23,9,11,0.0 +18260,47,9.5,36,0.0 +18260,71,21.5,37,0.0 +18260,1,18,17,0.0 +18260,48,12.75,35,0.0 +18260,62,49.3,17,0.0 +18260,64,33.25,13,0.0 +18260,24,4.5,24,0.0 +18260,17,39,50,0.0 +18260,52,7,18,0.0 +18260,51,53,2,0.0 +18260,60,34,40,0.0 +18260,63,43.9,24,0.0 +18260,46,12,13,0.0 +18260,7,30,35,0.0 +18260,10,31,49,0.0 +18260,61,28.5,21,0.0 +18260,15,15.5,6,0.0 +18260,2,19,42,0.0 +18260,77,13,22,0.0 +18260,65,21.05,34,0.0 +18260,66,17,49,0.0 +18260,44,19.45,14,0.0 +18260,76,18,14,0.0 +18260,22,21,41,0.0 +18260,39,18,7,0.0 +18260,42,14,16,0.0 +18260,21,10,7,0.0 +18261,51,53,15,0.0 +18261,69,36,31,0.0 +18261,77,13,41,0.0 +18261,31,12.5,28,0.0 +18261,3,10,28,0.0 +18261,41,9.65,33,0.0 +18261,38,263.5,5,0.0 +18261,74,10,38,0.0 +18261,47,9.5,24,0.0 +18261,53,32.8,6,0.0 +18261,55,24,16,0.0 +18261,36,19,25,0.0 +18262,76,18,11,0.0 +18262,38,263.5,1,0.0 +18262,4,22,37,0.0 +18262,48,12.75,35,0.0 +18262,2,19,16,0.0 +18262,61,28.5,42,0.0 +18262,18,62.5,20,0.0 +18262,54,7.45,35,0.0 +18262,75,7.75,45,0.0 +18262,29,123.79,46,0.0 +18262,59,55,10,0.0 +18262,62,49.3,42,0.0 +18262,57,19.5,18,0.0 +18262,8,40,8,0.0 +18262,25,14,6,0.0 +18262,65,21.05,24,0.0 +18262,74,10,7,0.0 +18262,50,16.25,36,0.0 +18262,24,4.5,36,0.0 +18262,10,31,31,0.0 +18262,17,39,39,0.0 +18262,45,9.5,10,0.0 +18262,1,18,14,0.0 +18262,55,24,11,0.0 +18262,34,14,28,0.0 +18262,52,7,16,0.0 +18262,28,45.6,11,0.0 +18262,26,31.23,46,0.0 +18262,66,17,16,0.0 +18262,51,53,10,0.0 +18262,35,18,17,0.0 +18262,70,15,8,0.0 +18262,64,33.25,46,0.0 +18262,63,43.9,14,0.0 +18262,16,17.45,48,0.0 +18262,36,19,12,0.0 +18262,20,81,19,0.0 +18262,47,9.5,30,0.0 +18262,33,2.5,16,0.0 +18262,9,97,40,0.0 +18262,68,12.5,11,0.0 +18262,31,12.5,13,0.0 +18263,6,25,36,0.0 +18263,70,15,10,0.0 +18263,28,45.6,29,0.0 +18263,32,32,42,0.0 +18263,59,55,28,0.0 +18263,9,97,14,0.0 +18263,73,15,34,0.0 +18263,51,53,49,0.0 +18263,36,19,13,0.0 +18263,69,36,12,0.0 +18263,43,46,12,0.0 +18263,72,34.8,15,0.0 +18263,19,9.2,14,0.0 +18263,42,14,3,0.0 +18263,2,19,5,0.0 +18263,62,49.3,6,0.0 +18263,31,12.5,11,0.0 +18263,13,6,35,0.0 +18263,34,14,44,0.0 +18263,17,39,23,0.0 +18263,3,10,46,0.0 +18263,54,7.45,44,0.0 +18263,8,40,49,0.0 +18263,22,21,48,0.0 +18263,49,20,1,0.0 +18263,71,21.5,21,0.0 +18263,58,13.25,38,0.0 +18263,53,32.8,8,0.0 +18263,66,17,24,0.0 +18263,41,9.65,2,0.0 +18263,60,34,4,0.0 +18263,35,18,12,0.0 +18263,30,25.89,13,0.0 +18263,50,16.25,18,0.0 +18263,75,7.75,10,0.0 +18264,2,19,20,0.0 +18264,21,10,7,0.0 +18264,14,23.25,34,0.0 +18264,23,9,5,0.0 +18264,71,21.5,22,0.0 +18264,48,12.75,49,0.0 +18264,32,32,27,0.0 +18264,15,15.5,33,0.0 +18264,13,6,43,0.0 +18264,70,15,14,0.0 +18264,6,25,46,0.0 +18264,73,15,8,0.0 +18265,64,33.25,19,0.0 +18265,71,21.5,49,0.0 +18265,73,15,49,0.0 +18265,19,9.2,32,0.0 +18265,35,18,6,0.0 +18265,65,21.05,8,0.0 +18265,9,97,13,0.0 +18265,38,263.5,34,0.0 +18265,15,15.5,15,0.0 +18265,42,14,50,0.0 +18265,58,13.25,13,0.0 +18265,75,7.75,11,0.0 +18265,48,12.75,47,0.0 +18265,5,21.35,6,0.0 +18265,23,9,30,0.0 +18265,68,12.5,9,0.0 +18265,46,12,31,0.0 +18265,20,81,13,0.0 +18265,1,18,37,0.0 +18265,40,18.4,7,0.0 +18265,41,9.65,26,0.0 +18265,18,62.5,17,0.0 +18265,37,26,44,0.0 +18265,76,18,26,0.0 +18265,44,19.45,27,0.0 +18265,13,6,6,0.0 +18265,26,31.23,18,0.0 +18265,47,9.5,45,0.0 +18265,31,12.5,6,0.0 +18265,39,18,42,0.0 +18265,14,23.25,3,0.0 +18265,16,17.45,25,0.0 +18265,3,10,9,0.0 +18266,40,18.4,11,0.0 +18266,69,36,45,0.0 +18266,44,19.45,35,0.0 +18266,58,13.25,47,0.0 +18266,59,55,13,0.0 +18266,61,28.5,23,0.0 +18266,57,19.5,31,0.0 +18267,63,43.9,2,0.0 +18267,15,15.5,3,0.0 +18267,33,2.5,40,0.0 +18267,48,12.75,38,0.0 +18267,59,55,15,0.0 +18267,14,23.25,1,0.0 +18267,4,22,8,0.0 +18267,26,31.23,17,0.0 +18267,21,10,18,0.0 +18267,39,18,35,0.0 +18267,52,7,23,0.0 +18267,32,32,2,0.0 +18267,70,15,42,0.0 +18267,76,18,13,0.0 +18267,23,9,14,0.0 +18267,46,12,15,0.0 +18267,31,12.5,8,0.0 +18267,66,17,36,0.0 +18267,57,19.5,46,0.0 +18267,44,19.45,18,0.0 +18268,59,55,1,0.0 +18268,51,53,12,0.0 +18268,58,13.25,6,0.0 +18268,5,21.35,26,0.0 +18268,14,23.25,17,0.0 +18268,48,12.75,46,0.0 +18268,69,36,34,0.0 +18268,46,12,10,0.0 +18268,37,26,18,0.0 +18268,1,18,14,0.0 +18268,47,9.5,13,0.0 +18268,10,31,17,0.0 +18268,60,34,44,0.0 +18268,56,38,21,0.0 +18268,68,12.5,50,0.0 +18268,19,9.2,24,0.0 +18268,45,9.5,33,0.0 +18268,43,46,17,0.0 +18268,63,43.9,3,0.0 +18268,39,18,42,0.0 +18268,18,62.5,17,0.0 +18268,44,19.45,2,0.0 +18268,54,7.45,38,0.0 +18268,76,18,31,0.0 +18268,30,25.89,19,0.0 +18268,65,21.05,34,0.0 +18268,13,6,38,0.0 +18269,47,9.5,6,0.0 +18269,18,62.5,27,0.0 +18269,67,14,33,0.0 +18269,41,9.65,31,0.0 +18269,32,32,13,0.0 +18269,57,19.5,24,0.0 +18269,23,9,1,0.0 +18269,28,45.6,29,0.0 +18269,15,15.5,14,0.0 +18269,65,21.05,39,0.0 +18269,3,10,17,0.0 +18269,19,9.2,3,0.0 +18269,6,25,9,0.0 +18269,43,46,1,0.0 +18269,20,81,9,0.0 +18269,39,18,47,0.0 +18269,66,17,15,0.0 +18269,59,55,23,0.0 +18269,16,17.45,28,0.0 +18269,38,263.5,25,0.0 +18269,8,40,24,0.0 +18269,5,21.35,30,0.0 +18269,60,34,10,0.0 +18269,45,9.5,18,0.0 +18269,64,33.25,28,0.0 +18269,61,28.5,27,0.0 +18269,34,14,12,0.0 +18269,70,15,27,0.0 +18269,33,2.5,48,0.0 +18269,29,123.79,37,0.0 +18269,42,14,19,0.0 +18269,44,19.45,32,0.0 +18269,17,39,15,0.0 +18269,10,31,4,0.0 +18269,77,13,50,0.0 +18269,55,24,27,0.0 +18269,31,12.5,36,0.0 +18269,2,19,18,0.0 +18269,40,18.4,22,0.0 +18269,74,10,11,0.0 +18269,54,7.45,41,0.0 +18269,75,7.75,20,0.0 +18269,21,10,33,0.0 +18269,56,38,38,0.0 +18269,50,16.25,45,0.0 +18269,53,32.8,12,0.0 +18269,27,43.9,15,0.0 +18269,76,18,40,0.0 +18269,13,6,38,0.0 +18270,18,62.5,46,0.0 +18270,19,9.2,25,0.0 +18270,76,18,2,0.0 +18271,14,23.25,15,0.0 +18271,22,21,36,0.0 +18271,62,49.3,20,0.0 +18271,28,45.6,27,0.0 +18271,8,40,10,0.0 +18271,71,21.5,4,0.0 +18271,21,10,15,0.0 +18271,51,53,41,0.0 +18271,68,12.5,18,0.0 +18271,46,12,22,0.0 +18271,67,14,23,0.0 +18271,6,25,26,0.0 +18271,41,9.65,21,0.0 +18271,65,21.05,47,0.0 +18271,54,7.45,45,0.0 +18271,23,9,32,0.0 +18271,38,263.5,25,0.0 +18271,16,17.45,11,0.0 +18271,30,25.89,3,0.0 +18271,56,38,28,0.0 +18271,50,16.25,3,0.0 +18271,40,18.4,8,0.0 +18271,49,20,7,0.0 +18271,10,31,36,0.0 +18271,32,32,46,0.0 +18271,61,28.5,9,0.0 +18272,13,6,27,0.0 +18272,36,19,17,0.0 +18272,25,14,3,0.0 +18272,40,18.4,45,0.0 +18272,41,9.65,21,0.0 +18272,53,32.8,44,0.0 +18272,5,21.35,34,0.0 +18272,22,21,36,0.0 +18272,76,18,34,0.0 +18272,26,31.23,17,0.0 +18272,19,9.2,45,0.0 +18272,9,97,47,0.0 +18272,74,10,47,0.0 +18272,6,25,31,0.0 +18272,38,263.5,13,0.0 +18272,70,15,12,0.0 +18272,43,46,48,0.0 +18272,3,10,47,0.0 +18272,37,26,7,0.0 +18272,65,21.05,22,0.0 +18272,73,15,41,0.0 +18273,11,21,7,0.0 +18273,17,39,7,0.0 +18273,55,24,22,0.0 +18273,44,19.45,2,0.0 +18273,48,12.75,42,0.0 +18273,65,21.05,36,0.0 +18273,66,17,50,0.0 +18273,5,21.35,12,0.0 +18273,14,23.25,42,0.0 +18273,23,9,16,0.0 +18273,51,53,22,0.0 +18273,46,12,45,0.0 +18273,64,33.25,42,0.0 +18273,71,21.5,42,0.0 +18273,74,10,6,0.0 +18273,36,19,31,0.0 +18273,7,30,24,0.0 +18273,3,10,20,0.0 +18273,70,15,46,0.0 +18273,50,16.25,4,0.0 +18273,54,7.45,46,0.0 +18273,28,45.6,49,0.0 +18273,25,14,35,0.0 +18273,68,12.5,10,0.0 +18273,39,18,29,0.0 +18273,35,18,18,0.0 +18273,76,18,17,0.0 +18273,73,15,36,0.0 +18273,24,4.5,50,0.0 +18273,52,7,37,0.0 +18273,6,25,39,0.0 +18273,43,46,31,0.0 +18273,32,32,16,0.0 +18273,57,19.5,41,0.0 +18273,67,14,23,0.0 +18273,19,9.2,18,0.0 +18273,40,18.4,43,0.0 +18273,20,81,28,0.0 +18273,2,19,45,0.0 +18273,45,9.5,7,0.0 +18273,61,28.5,31,0.0 +18273,62,49.3,26,0.0 +18273,13,6,25,0.0 +18273,63,43.9,13,0.0 +18273,18,62.5,4,0.0 +18273,60,34,48,0.0 +18273,75,7.75,3,0.0 +18273,31,12.5,36,0.0 +18273,41,9.65,41,0.0 +18273,4,22,39,0.0 +18273,15,15.5,44,0.0 +18273,49,20,25,0.0 +18273,38,263.5,14,0.0 +18273,10,31,15,0.0 +18273,9,97,4,0.0 +18273,37,26,4,0.0 +18273,34,14,14,0.0 +18274,51,53,33,0.0 +18274,30,25.89,14,0.0 +18274,47,9.5,34,0.0 +18274,43,46,36,0.0 +18274,7,30,50,0.0 +18274,64,33.25,14,0.0 +18274,15,15.5,50,0.0 +18274,70,15,8,0.0 +18274,5,21.35,15,0.0 +18274,22,21,26,0.0 +18274,66,17,48,0.0 +18274,35,18,32,0.0 +18274,1,18,16,0.0 +18274,18,62.5,45,0.0 +18274,27,43.9,5,0.0 +18274,50,16.25,25,0.0 +18274,3,10,40,0.0 +18274,45,9.5,25,0.0 +18274,75,7.75,44,0.0 +18274,57,19.5,18,0.0 +18274,31,12.5,26,0.0 +18274,49,20,11,0.0 +18274,73,15,10,0.0 +18274,44,19.45,21,0.0 +18274,36,19,30,0.0 +18274,11,21,42,0.0 +18274,76,18,46,0.0 +18274,40,18.4,22,0.0 +18274,65,21.05,36,0.0 +18274,69,36,20,0.0 +18274,4,22,23,0.0 +18274,29,123.79,42,0.0 +18274,6,25,9,0.0 +18274,59,55,43,0.0 +18274,13,6,48,0.0 +18274,63,43.9,7,0.0 +18274,41,9.65,36,0.0 +18274,23,9,5,0.0 +18274,61,28.5,5,0.0 +18274,34,14,3,0.0 +18274,10,31,3,0.0 +18274,68,12.5,46,0.0 +18274,26,31.23,3,0.0 +18274,32,32,48,0.0 +18274,62,49.3,19,0.0 +18274,19,9.2,49,0.0 +18275,25,14,19,0.0 +18275,17,39,3,0.0 +18275,45,9.5,20,0.0 +18275,30,25.89,39,0.0 +18275,31,12.5,17,0.0 +18275,12,38,1,0.0 +18275,51,53,6,0.0 +18275,19,9.2,18,0.0 +18275,3,10,27,0.0 +18275,32,32,29,0.0 +18275,11,21,36,0.0 +18275,46,12,49,0.0 +18275,56,38,43,0.0 +18275,44,19.45,9,0.0 +18275,52,7,31,0.0 +18275,70,15,4,0.0 +18275,38,263.5,15,0.0 +18275,10,31,41,0.0 +18275,42,14,47,0.0 +18275,15,15.5,31,0.0 +18275,67,14,2,0.0 +18275,50,16.25,42,0.0 +18275,21,10,40,0.0 +18275,49,20,4,0.0 +18275,5,21.35,6,0.0 +18275,35,18,36,0.0 +18275,72,34.8,48,0.0 +18275,48,12.75,1,0.0 +18275,62,49.3,33,0.0 +18275,68,12.5,46,0.0 +18275,53,32.8,42,0.0 +18275,76,18,4,0.0 +18275,54,7.45,24,0.0 +18275,14,23.25,32,0.0 +18275,37,26,19,0.0 +18275,69,36,34,0.0 +18275,1,18,3,0.0 +18275,34,14,47,0.0 +18275,61,28.5,14,0.0 +18275,74,10,30,0.0 +18275,43,46,32,0.0 +18275,66,17,41,0.0 +18275,7,30,38,0.0 +18275,16,17.45,29,0.0 +18275,24,4.5,24,0.0 +18275,63,43.9,3,0.0 +18275,20,81,31,0.0 +18275,4,22,35,0.0 +18275,55,24,33,0.0 +18275,27,43.9,18,0.0 +18275,71,21.5,39,0.0 +18275,65,21.05,12,0.0 +18275,39,18,9,0.0 +18275,18,62.5,23,0.0 +18275,36,19,49,0.0 +18275,60,34,49,0.0 +18275,33,2.5,28,0.0 +18275,29,123.79,30,0.0 +18275,73,15,39,0.0 +18275,47,9.5,8,0.0 +18275,75,7.75,36,0.0 +18275,26,31.23,20,0.0 +18275,9,97,10,0.0 +18275,58,13.25,2,0.0 +18275,40,18.4,14,0.0 +18276,46,12,27,0.0 +18276,53,32.8,12,0.0 +18276,40,18.4,5,0.0 +18276,24,4.5,38,0.0 +18276,60,34,37,0.0 +18276,28,45.6,17,0.0 +18276,25,14,1,0.0 +18276,70,15,12,0.0 +18276,38,263.5,47,0.0 +18276,17,39,45,0.0 +18276,8,40,34,0.0 +18276,76,18,3,0.0 +18276,68,12.5,6,0.0 +18276,15,15.5,43,0.0 +18276,74,10,29,0.0 +18276,33,2.5,30,0.0 +18276,47,9.5,29,0.0 +18276,57,19.5,6,0.0 +18276,13,6,11,0.0 +18276,73,15,37,0.0 +18276,48,12.75,3,0.0 +18276,51,53,3,0.0 +18276,4,22,34,0.0 +18276,31,12.5,26,0.0 +18276,69,36,45,0.0 +18276,12,38,36,0.0 +18276,49,20,42,0.0 +18276,66,17,18,0.0 +18276,18,62.5,42,0.0 +18276,61,28.5,2,0.0 +18276,44,19.45,34,0.0 +18276,45,9.5,39,0.0 +18276,64,33.25,12,0.0 +18276,43,46,33,0.0 +18276,56,38,23,0.0 +18276,58,13.25,17,0.0 +18276,52,7,42,0.0 +18276,3,10,10,0.0 +18277,4,22,11,0.0 +18277,59,55,17,0.0 +18277,62,49.3,10,0.0 +18277,23,9,39,0.0 +18277,58,13.25,27,0.0 +18277,52,7,34,0.0 +18277,21,10,43,0.0 +18277,67,14,29,0.0 +18277,54,7.45,39,0.0 +18277,18,62.5,35,0.0 +18277,7,30,6,0.0 +18277,5,21.35,35,0.0 +18277,42,14,8,0.0 +18277,46,12,23,0.0 +18277,10,31,26,0.0 +18277,40,18.4,15,0.0 +18277,56,38,43,0.0 +18277,17,39,28,0.0 +18277,63,43.9,34,0.0 +18277,65,21.05,24,0.0 +18277,43,46,34,0.0 +18277,16,17.45,1,0.0 +18277,36,19,10,0.0 +18277,55,24,35,0.0 +18277,66,17,25,0.0 +18277,11,21,13,0.0 +18277,39,18,7,0.0 +18277,24,4.5,28,0.0 +18277,8,40,5,0.0 +18277,44,19.45,42,0.0 +18278,34,14,43,0.0 +18278,70,15,18,0.0 +18278,42,14,20,0.0 +18278,14,23.25,1,0.0 +18278,41,9.65,39,0.0 +18278,47,9.5,43,0.0 +18278,61,28.5,30,0.0 +18278,13,6,50,0.0 +18278,53,32.8,5,0.0 +18278,30,25.89,41,0.0 +18278,2,19,19,0.0 +18278,58,13.25,25,0.0 +18278,4,22,18,0.0 +18278,17,39,41,0.0 +18278,67,14,23,0.0 +18278,9,97,34,0.0 +18278,5,21.35,9,0.0 +18278,1,18,17,0.0 +18278,49,20,22,0.0 +18278,27,43.9,43,0.0 +18278,39,18,20,0.0 +18278,75,7.75,44,0.0 +18278,51,53,9,0.0 +18278,56,38,5,0.0 +18278,60,34,21,0.0 +18278,59,55,48,0.0 +18279,72,34.8,39,0.0 +18279,49,20,43,0.0 +18279,15,15.5,32,0.0 +18279,71,21.5,8,0.0 +18279,64,33.25,22,0.0 +18279,35,18,35,0.0 +18279,25,14,12,0.0 +18279,73,15,16,0.0 +18279,76,18,23,0.0 +18279,29,123.79,28,0.0 +18279,5,21.35,44,0.0 +18279,60,34,6,0.0 +18279,34,14,13,0.0 +18279,31,12.5,33,0.0 +18279,59,55,41,0.0 +18279,75,7.75,37,0.0 +18279,12,38,25,0.0 +18279,19,9.2,11,0.0 +18279,3,10,6,0.0 +18279,11,21,26,0.0 +18279,7,30,18,0.0 +18279,4,22,45,0.0 +18279,22,21,16,0.0 +18279,62,49.3,25,0.0 +18279,17,39,46,0.0 +18279,77,13,38,0.0 +18279,47,9.5,12,0.0 +18279,58,13.25,14,0.0 +18279,43,46,27,0.0 +18279,39,18,29,0.0 +18279,26,31.23,33,0.0 +18279,61,28.5,47,0.0 +18279,74,10,18,0.0 +18279,45,9.5,39,0.0 +18279,55,24,8,0.0 +18279,36,19,37,0.0 +18279,53,32.8,31,0.0 +18279,24,4.5,39,0.0 +18279,10,31,39,0.0 +18279,50,16.25,35,0.0 +18279,44,19.45,3,0.0 +18279,68,12.5,15,0.0 +18279,21,10,23,0.0 +18279,56,38,41,0.0 +18279,57,19.5,42,0.0 +18279,42,14,7,0.0 +18279,6,25,13,0.0 +18279,20,81,31,0.0 +18279,1,18,9,0.0 +18279,37,26,18,0.0 +18279,52,7,38,0.0 +18279,16,17.45,49,0.0 +18279,32,32,36,0.0 +18279,28,45.6,36,0.0 +18279,18,62.5,21,0.0 +18279,27,43.9,12,0.0 +18279,23,9,23,0.0 +18279,30,25.89,41,0.0 +18279,33,2.5,35,0.0 +18279,8,40,36,0.0 +18279,48,12.75,27,0.0 +18279,67,14,4,0.0 +18279,13,6,38,0.0 +18279,40,18.4,32,0.0 +18279,63,43.9,23,0.0 +18279,9,97,46,0.0 +18279,70,15,38,0.0 +18279,69,36,5,0.0 +18279,38,263.5,29,0.0 +18279,51,53,31,0.0 +18279,66,17,15,0.0 +18279,54,7.45,11,0.0 +18279,2,19,48,0.0 +18279,46,12,13,0.0 +18279,14,23.25,32,0.0 +18280,1,18,29,0.0 +18280,66,17,7,0.0 +18280,2,19,37,0.0 +18280,52,7,41,0.0 +18280,23,9,42,0.0 +18280,64,33.25,27,0.0 +18280,26,31.23,29,0.0 +18280,10,31,22,0.0 +18280,55,24,50,0.0 +18280,7,30,19,0.0 +18280,8,40,49,0.0 +18280,41,9.65,39,0.0 +18280,27,43.9,3,0.0 +18280,35,18,20,0.0 +18280,15,15.5,38,0.0 +18280,36,19,31,0.0 +18280,62,49.3,13,0.0 +18280,45,9.5,43,0.0 +18280,54,7.45,27,0.0 +18280,74,10,47,0.0 +18280,28,45.6,5,0.0 +18280,3,10,45,0.0 +18280,31,12.5,6,0.0 +18280,70,15,18,0.0 +18280,40,18.4,13,0.0 +18280,43,46,47,0.0 +18280,4,22,15,0.0 +18280,21,10,49,0.0 +18280,56,38,41,0.0 +18280,72,34.8,34,0.0 +18280,17,39,50,0.0 +18280,44,19.45,41,0.0 +18280,50,16.25,48,0.0 +18280,34,14,37,0.0 +18281,76,18,31,0.0 +18281,46,12,31,0.0 +18281,37,26,26,0.0 +18281,17,39,33,0.0 +18281,64,33.25,48,0.0 +18281,73,15,11,0.0 +18281,8,40,35,0.0 +18281,44,19.45,42,0.0 +18281,40,18.4,44,0.0 +18281,12,38,3,0.0 +18281,59,55,19,0.0 +18281,23,9,16,0.0 +18281,58,13.25,9,0.0 +18281,36,19,33,0.0 +18281,71,21.5,7,0.0 +18281,69,36,24,0.0 +18281,38,263.5,4,0.0 +18281,6,25,30,0.0 +18281,68,12.5,33,0.0 +18281,30,25.89,16,0.0 +18281,22,21,1,0.0 +18281,70,15,40,0.0 +18281,15,15.5,3,0.0 +18281,19,9.2,21,0.0 +18281,72,34.8,9,0.0 +18281,26,31.23,42,0.0 +18281,3,10,5,0.0 +18281,48,12.75,29,0.0 +18281,1,18,14,0.0 +18281,54,7.45,20,0.0 +18281,32,32,19,0.0 +18281,49,20,25,0.0 +18281,56,38,45,0.0 +18281,39,18,48,0.0 +18281,53,32.8,36,0.0 +18281,4,22,30,0.0 +18281,75,7.75,38,0.0 +18281,41,9.65,13,0.0 +18281,51,53,37,0.0 +18281,21,10,12,0.0 +18281,5,21.35,32,0.0 +18281,16,17.45,44,0.0 +18281,61,28.5,27,0.0 +18281,63,43.9,47,0.0 +18282,15,15.5,9,0.0 +18282,64,33.25,3,0.0 +18282,77,13,24,0.0 +18282,22,21,8,0.0 +18282,73,15,3,0.0 +18282,76,18,1,0.0 +18282,55,24,6,0.0 +18282,65,21.05,33,0.0 +18282,47,9.5,33,0.0 +18282,32,32,8,0.0 +18282,59,55,46,0.0 +18282,56,38,48,0.0 +18282,18,62.5,2,0.0 +18282,36,19,8,0.0 +18282,12,38,33,0.0 +18282,27,43.9,50,0.0 +18282,35,18,46,0.0 +18282,71,21.5,33,0.0 +18282,24,4.5,40,0.0 +18282,30,25.89,36,0.0 +18282,68,12.5,25,0.0 +18282,52,7,28,0.0 +18282,54,7.45,20,0.0 +18282,46,12,3,0.0 +18282,33,2.5,7,0.0 +18282,63,43.9,47,0.0 +18282,37,26,6,0.0 +18282,17,39,20,0.0 +18282,72,34.8,4,0.0 +18282,69,36,15,0.0 +18282,44,19.45,8,0.0 +18282,74,10,31,0.0 +18282,19,9.2,48,0.0 +18282,61,28.5,20,0.0 +18282,51,53,46,0.0 +18282,45,9.5,2,0.0 +18282,28,45.6,30,0.0 +18282,10,31,16,0.0 +18282,5,21.35,43,0.0 +18282,42,14,31,0.0 +18282,38,263.5,22,0.0 +18282,25,14,3,0.0 +18282,4,22,2,0.0 +18282,21,10,48,0.0 +18282,16,17.45,6,0.0 +18282,1,18,16,0.0 +18282,34,14,50,0.0 +18282,60,34,47,0.0 +18282,3,10,42,0.0 +18282,49,20,34,0.0 +18282,66,17,45,0.0 +18283,75,7.75,32,0.0 +18283,40,18.4,19,0.0 +18283,32,32,13,0.0 +18283,56,38,9,0.0 +18283,52,7,24,0.0 +18283,25,14,16,0.0 +18283,36,19,34,0.0 +18283,9,97,49,0.0 +18283,31,12.5,19,0.0 +18283,24,4.5,13,0.0 +18283,16,17.45,19,0.0 +18283,71,21.5,40,0.0 +18283,26,31.23,36,0.0 +18283,2,19,17,0.0 +18283,37,26,35,0.0 +18283,42,14,12,0.0 +18283,49,20,25,0.0 +18283,14,23.25,4,0.0 +18283,15,15.5,13,0.0 +18283,74,10,19,0.0 +18283,47,9.5,41,0.0 +18283,7,30,36,0.0 +18283,10,31,33,0.0 +18283,28,45.6,12,0.0 +18283,68,12.5,45,0.0 +18283,20,81,40,0.0 +18283,69,36,9,0.0 +18283,63,43.9,29,0.0 +18283,57,19.5,30,0.0 +18283,5,21.35,4,0.0 +18283,60,34,11,0.0 +18283,21,10,29,0.0 +18283,54,7.45,11,0.0 +18283,39,18,50,0.0 +18283,53,32.8,48,0.0 +18283,43,46,32,0.0 +18283,13,6,21,0.0 +18283,1,18,20,0.0 +18283,51,53,18,0.0 +18283,72,34.8,32,0.0 +18283,66,17,46,0.0 +18283,77,13,12,0.0 +18283,62,49.3,2,0.0 +18283,65,21.05,45,0.0 +18283,70,15,40,0.0 +18283,46,12,36,0.0 +18283,50,16.25,44,0.0 +18283,45,9.5,44,0.0 +18283,19,9.2,39,0.0 +18283,38,263.5,23,0.0 +18283,22,21,10,0.0 +18283,73,15,7,0.0 +18283,27,43.9,4,0.0 +18283,12,38,27,0.0 +18283,3,10,20,0.0 +18283,11,21,33,0.0 +18283,29,123.79,44,0.0 +18283,8,40,31,0.0 +18283,59,55,45,0.0 +18283,23,9,43,0.0 +18283,55,24,15,0.0 +18283,58,13.25,18,0.0 +18283,35,18,42,0.0 +18283,18,62.5,16,0.0 +18283,67,14,40,0.0 +18283,4,22,28,0.0 +18284,31,12.5,7,0.0 +18284,33,2.5,18,0.0 +18284,74,10,7,0.0 +18284,9,97,24,0.0 +18284,19,9.2,44,0.0 +18284,72,34.8,19,0.0 +18284,65,21.05,38,0.0 +18284,11,21,41,0.0 +18284,12,38,22,0.0 +18284,51,53,7,0.0 +18284,57,19.5,41,0.0 +18284,75,7.75,1,0.0 +18284,63,43.9,41,0.0 +18284,2,19,24,0.0 +18284,69,36,6,0.0 +18284,37,26,40,0.0 +18284,54,7.45,41,0.0 +18284,23,9,35,0.0 +18284,35,18,8,0.0 +18284,58,13.25,39,0.0 +18284,38,263.5,27,0.0 +18284,66,17,50,0.0 +18284,71,21.5,41,0.0 +18284,48,12.75,37,0.0 +18284,32,32,28,0.0 +18284,29,123.79,11,0.0 +18284,62,49.3,24,0.0 +18284,40,18.4,3,0.0 +18284,47,9.5,42,0.0 +18284,28,45.6,3,0.0 +18284,43,46,1,0.0 +18284,17,39,25,0.0 +18284,4,22,47,0.0 +18284,64,33.25,16,0.0 +18284,55,24,10,0.0 +18284,52,7,10,0.0 +18284,61,28.5,46,0.0 +18284,60,34,32,0.0 +18284,67,14,15,0.0 +18284,3,10,38,0.0 +18284,30,25.89,21,0.0 +18284,24,4.5,49,0.0 +18284,41,9.65,43,0.0 +18284,42,14,9,0.0 +18284,44,19.45,17,0.0 +18284,36,19,15,0.0 +18284,70,15,41,0.0 +18284,49,20,47,0.0 +18284,16,17.45,17,0.0 +18284,73,15,43,0.0 +18284,10,31,33,0.0 +18284,18,62.5,6,0.0 +18284,22,21,34,0.0 +18284,5,21.35,5,0.0 +18284,13,6,39,0.0 +18284,25,14,34,0.0 +18284,14,23.25,39,0.0 +18284,27,43.9,30,0.0 +18284,21,10,25,0.0 +18284,15,15.5,14,0.0 +18284,7,30,33,0.0 +18284,34,14,41,0.0 +18285,54,7.45,49,0.0 +18285,69,36,17,0.0 +18285,37,26,13,0.0 +18285,55,24,42,0.0 +18285,21,10,1,0.0 +18285,5,21.35,41,0.0 +18285,46,12,20,0.0 +18285,7,30,19,0.0 +18285,10,31,28,0.0 +18285,47,9.5,16,0.0 +18285,12,38,26,0.0 +18285,41,9.65,23,0.0 +18286,11,21,35,0.0 +18286,35,18,7,0.0 +18286,33,2.5,18,0.0 +18286,48,12.75,20,0.0 +18286,53,32.8,39,0.0 +18286,51,53,28,0.0 +18286,30,25.89,49,0.0 +18286,60,34,18,0.0 +18286,6,25,44,0.0 +18286,36,19,26,0.0 +18286,77,13,37,0.0 +18286,75,7.75,16,0.0 +18286,65,21.05,32,0.0 +18286,45,9.5,22,0.0 +18286,10,31,40,0.0 +18286,22,21,5,0.0 +18286,61,28.5,41,0.0 +18286,25,14,35,0.0 +18286,38,263.5,4,0.0 +18286,15,15.5,49,0.0 +18286,56,38,24,0.0 +18286,19,9.2,6,0.0 +18286,31,12.5,46,0.0 +18286,59,55,36,0.0 +18286,68,12.5,11,0.0 +18286,8,40,34,0.0 +18286,76,18,40,0.0 +18286,21,10,31,0.0 +18286,24,4.5,31,0.0 +18286,9,97,23,0.0 +18286,46,12,24,0.0 +18286,20,81,44,0.0 +18286,69,36,6,0.0 +18286,73,15,27,0.0 +18286,57,19.5,33,0.0 +18286,13,6,33,0.0 +18286,40,18.4,4,0.0 +18286,14,23.25,22,0.0 +18286,66,17,36,0.0 +18286,23,9,48,0.0 +18286,3,10,19,0.0 +18286,5,21.35,2,0.0 +18286,64,33.25,46,0.0 +18286,41,9.65,39,0.0 +18286,63,43.9,34,0.0 +18286,32,32,16,0.0 +18286,50,16.25,45,0.0 +18286,49,20,29,0.0 +18286,17,39,49,0.0 +18286,27,43.9,18,0.0 +18286,47,9.5,1,0.0 +18286,67,14,1,0.0 +18286,1,18,4,0.0 +18286,54,7.45,38,0.0 +18286,70,15,50,0.0 +18286,58,13.25,27,0.0 +18286,28,45.6,28,0.0 +18286,37,26,47,0.0 +18286,43,46,9,0.0 +18286,72,34.8,37,0.0 +18286,74,10,47,0.0 +18286,18,62.5,40,0.0 +18286,29,123.79,48,0.0 +18286,44,19.45,41,0.0 +18286,7,30,13,0.0 +18286,39,18,22,0.0 +18286,4,22,45,0.0 +18286,2,19,35,0.0 +18286,62,49.3,3,0.0 +18286,12,38,42,0.0 +18286,52,7,7,0.0 +18286,16,17.45,9,0.0 +18287,64,33.25,22,0.0 +18287,61,28.5,36,0.0 +18287,19,9.2,47,0.0 +18287,20,81,17,0.0 +18287,17,39,29,0.0 +18287,14,23.25,6,0.0 +18287,35,18,8,0.0 +18287,69,36,31,0.0 +18287,5,21.35,30,0.0 +18287,76,18,41,0.0 +18287,57,19.5,38,0.0 +18287,73,15,14,0.0 +18287,24,4.5,27,0.0 +18287,16,17.45,42,0.0 +18287,34,14,5,0.0 +18287,71,21.5,39,0.0 +18287,74,10,24,0.0 +18287,12,38,3,0.0 +18287,30,25.89,11,0.0 +18287,3,10,26,0.0 +18287,48,12.75,35,0.0 +18287,22,21,48,0.0 +18287,23,9,14,0.0 +18287,31,12.5,39,0.0 +18287,50,16.25,38,0.0 +18287,44,19.45,4,0.0 +18287,45,9.5,11,0.0 +18287,53,32.8,33,0.0 +18287,75,7.75,23,0.0 +18287,63,43.9,7,0.0 +18287,11,21,15,0.0 +18287,18,62.5,25,0.0 +18287,32,32,50,0.0 +18287,42,14,11,0.0 +18287,13,6,3,0.0 +18287,2,19,23,0.0 +18287,77,13,22,0.0 +18287,6,25,32,0.0 +18287,43,46,37,0.0 +18287,38,263.5,35,0.0 +18287,65,21.05,46,0.0 +18287,49,20,46,0.0 +18287,25,14,43,0.0 +18287,8,40,21,0.0 +18287,62,49.3,42,0.0 +18287,70,15,16,0.0 +18287,26,31.23,19,0.0 +18287,40,18.4,29,0.0 +18287,36,19,31,0.0 +18287,72,34.8,22,0.0 +18287,39,18,43,0.0 +18287,29,123.79,39,0.0 +18288,10,31,49,0.0 +18288,29,123.79,13,0.0 +18288,7,30,30,0.0 +18288,30,25.89,42,0.0 +18288,33,2.5,17,0.0 +18288,24,4.5,36,0.0 +18288,43,46,41,0.0 +18288,36,19,48,0.0 +18288,56,38,40,0.0 +18288,52,7,45,0.0 +18288,16,17.45,25,0.0 +18288,11,21,28,0.0 +18288,2,19,31,0.0 +18288,55,24,8,0.0 +18288,5,21.35,23,0.0 +18288,68,12.5,36,0.0 +18288,58,13.25,30,0.0 +18288,13,6,44,0.0 +18288,26,31.23,24,0.0 +18288,75,7.75,3,0.0 +18288,77,13,23,0.0 +18288,25,14,27,0.0 +18288,41,9.65,45,0.0 +18288,28,45.6,25,0.0 +18288,54,7.45,40,0.0 +18288,4,22,11,0.0 +18288,31,12.5,21,0.0 +18288,9,97,48,0.0 +18288,3,10,29,0.0 +18288,34,14,14,0.0 +18288,40,18.4,35,0.0 +18288,49,20,38,0.0 +18288,51,53,31,0.0 +18288,22,21,45,0.0 +18288,63,43.9,28,0.0 +18288,65,21.05,2,0.0 +18288,70,15,9,0.0 +18288,46,12,41,0.0 +18288,21,10,25,0.0 +18288,57,19.5,6,0.0 +18288,39,18,15,0.0 +18288,1,18,24,0.0 +18288,60,34,44,0.0 +18288,61,28.5,10,0.0 +18288,53,32.8,15,0.0 +18288,72,34.8,7,0.0 +18288,8,40,31,0.0 +18288,32,32,11,0.0 +18288,15,15.5,5,0.0 +18288,42,14,3,0.0 +18288,20,81,43,0.0 +18288,14,23.25,8,0.0 +18288,67,14,28,0.0 +18288,44,19.45,10,0.0 +18288,76,18,49,0.0 +18288,74,10,27,0.0 +18288,35,18,44,0.0 +18289,73,15,39,0.0 +18289,76,18,49,0.0 +18289,37,26,18,0.0 +18289,40,18.4,48,0.0 +18289,74,10,25,0.0 +18289,77,13,34,0.0 +18289,16,17.45,17,0.0 +18289,6,25,21,0.0 +18289,43,46,50,0.0 +18289,3,10,13,0.0 +18289,4,22,21,0.0 +18289,34,14,24,0.0 +18289,56,38,17,0.0 +18289,75,7.75,6,0.0 +18289,52,7,15,0.0 +18289,21,10,45,0.0 +18289,14,23.25,23,0.0 +18289,13,6,32,0.0 +18289,53,32.8,38,0.0 +18289,46,12,12,0.0 +18289,20,81,35,0.0 +18289,62,49.3,35,0.0 +18289,36,19,13,0.0 +18289,23,9,12,0.0 +18289,35,18,30,0.0 +18289,55,24,11,0.0 +18289,58,13.25,38,0.0 +18289,57,19.5,36,0.0 +18289,8,40,32,0.0 +18289,12,38,23,0.0 +18289,42,14,46,0.0 +18289,60,34,48,0.0 +18289,25,14,22,0.0 +18289,61,28.5,18,0.0 +18289,17,39,49,0.0 +18289,59,55,17,0.0 +18289,70,15,33,0.0 +18289,29,123.79,1,0.0 +18289,67,14,5,0.0 +18289,5,21.35,40,0.0 +18289,9,97,33,0.0 +18289,47,9.5,7,0.0 +18289,49,20,34,0.0 +18289,33,2.5,21,0.0 +18289,24,4.5,46,0.0 +18289,63,43.9,35,0.0 +18289,15,15.5,1,0.0 +18289,2,19,6,0.0 +18289,10,31,26,0.0 +18289,66,17,41,0.0 +18289,72,34.8,21,0.0 +18289,69,36,9,0.0 +18289,50,16.25,39,0.0 +18289,65,21.05,4,0.0 +18289,1,18,26,0.0 +18289,31,12.5,40,0.0 +18289,48,12.75,40,0.0 +18289,64,33.25,16,0.0 +18289,22,21,9,0.0 +18289,30,25.89,39,0.0 +18289,68,12.5,12,0.0 +18289,39,18,18,0.0 +18289,38,263.5,19,0.0 +18289,18,62.5,46,0.0 +18289,41,9.65,47,0.0 +18289,32,32,22,0.0 +18289,44,19.45,32,0.0 +18289,19,9.2,27,0.0 +18289,11,21,34,0.0 +18289,54,7.45,14,0.0 +18290,30,25.89,46,0.0 +18290,33,2.5,26,0.0 +18290,70,15,16,0.0 +18290,44,19.45,15,0.0 +18290,73,15,36,0.0 +18290,41,9.65,10,0.0 +18290,4,22,35,0.0 +18290,11,21,6,0.0 +18290,35,18,21,0.0 +18290,66,17,44,0.0 +18290,39,18,35,0.0 +18290,18,62.5,14,0.0 +18290,72,34.8,27,0.0 +18290,56,38,29,0.0 +18290,52,7,47,0.0 +18290,8,40,47,0.0 +18290,59,55,45,0.0 +18290,36,19,29,0.0 +18290,64,33.25,8,0.0 +18290,9,97,12,0.0 +18290,53,32.8,46,0.0 +18290,28,45.6,32,0.0 +18290,12,38,9,0.0 +18290,55,24,1,0.0 +18290,46,12,46,0.0 +18290,43,46,15,0.0 +18290,2,19,34,0.0 +18290,69,36,15,0.0 +18290,68,12.5,12,0.0 +18290,47,9.5,42,0.0 +18290,14,23.25,33,0.0 +18290,3,10,30,0.0 +18290,40,18.4,32,0.0 +18290,16,17.45,15,0.0 +18290,21,10,23,0.0 +18290,60,34,12,0.0 +18290,50,16.25,32,0.0 +18290,57,19.5,20,0.0 +18290,20,81,49,0.0 +18290,26,31.23,35,0.0 +18290,75,7.75,2,0.0 +18290,45,9.5,1,0.0 +18290,77,13,50,0.0 +18290,17,39,43,0.0 +18290,61,28.5,16,0.0 +18290,7,30,27,0.0 +18290,22,21,16,0.0 +18290,65,21.05,27,0.0 +18290,19,9.2,39,0.0 +18290,42,14,13,0.0 +18290,62,49.3,46,0.0 +18290,5,21.35,28,0.0 +18290,15,15.5,46,0.0 +18290,54,7.45,36,0.0 +18290,34,14,14,0.0 +18290,63,43.9,14,0.0 +18290,38,263.5,16,0.0 +18290,25,14,14,0.0 +18290,10,31,39,0.0 +18290,23,9,18,0.0 +18290,32,32,49,0.0 +18290,29,123.79,46,0.0 +18290,71,21.5,8,0.0 +18290,6,25,14,0.0 +18290,27,43.9,19,0.0 +18290,67,14,12,0.0 +18291,39,18,19,0.0 +18291,64,33.25,24,0.0 +18291,19,9.2,26,0.0 +18291,76,18,33,0.0 +18291,48,12.75,30,0.0 +18291,54,7.45,37,0.0 +18291,6,25,45,0.0 +18291,1,18,3,0.0 +18291,71,21.5,40,0.0 +18291,55,24,6,0.0 +18291,67,14,2,0.0 +18291,53,32.8,38,0.0 +18291,9,97,20,0.0 +18291,30,25.89,36,0.0 +18291,47,9.5,47,0.0 +18291,42,14,18,0.0 +18291,34,14,17,0.0 +18291,12,38,35,0.0 +18291,41,9.65,50,0.0 +18291,4,22,33,0.0 +18291,52,7,32,0.0 +18291,14,23.25,25,0.0 +18292,35,18,38,0.0 +18292,71,21.5,38,0.0 +18292,6,25,39,0.0 +18292,11,21,31,0.0 +18292,61,28.5,41,0.0 +18292,73,15,14,0.0 +18292,49,20,49,0.0 +18292,56,38,2,0.0 +18292,47,9.5,32,0.0 +18292,53,32.8,38,0.0 +18292,66,17,11,0.0 +18292,39,18,26,0.0 +18292,70,15,4,0.0 +18292,19,9.2,41,0.0 +18292,7,30,49,0.0 +18292,21,10,23,0.0 +18292,69,36,23,0.0 +18292,25,14,41,0.0 +18292,54,7.45,47,0.0 +18292,13,6,16,0.0 +18292,43,46,31,0.0 +18292,41,9.65,22,0.0 +18292,68,12.5,47,0.0 +18292,3,10,15,0.0 +18292,33,2.5,26,0.0 +18292,50,16.25,41,0.0 +18292,15,15.5,25,0.0 +18292,60,34,39,0.0 +18292,57,19.5,36,0.0 +18293,15,15.5,43,0.0 +18293,49,20,25,0.0 +18293,1,18,40,0.0 +18293,39,18,26,0.0 +18293,75,7.75,10,0.0 +18293,44,19.45,27,0.0 +18293,17,39,16,0.0 +18293,60,34,1,0.0 +18293,13,6,9,0.0 +18293,64,33.25,48,0.0 +18293,34,14,6,0.0 +18293,14,23.25,25,0.0 +18293,41,9.65,23,0.0 +18293,6,25,21,0.0 +18293,30,25.89,46,0.0 +18293,12,38,6,0.0 +18293,58,13.25,50,0.0 +18294,8,40,8,0.0 +18294,29,123.79,12,0.0 +18294,9,97,20,0.0 +18294,12,38,39,0.0 +18294,72,34.8,49,0.0 +18294,55,24,27,0.0 +18294,38,263.5,44,0.0 +18294,52,7,50,0.0 +18294,22,21,26,0.0 +18294,30,25.89,49,0.0 +18294,42,14,50,0.0 +18294,58,13.25,27,0.0 +18294,5,21.35,48,0.0 +18294,35,18,48,0.0 +18294,48,12.75,27,0.0 +18294,25,14,6,0.0 +18294,20,81,17,0.0 +18294,14,23.25,50,0.0 +18294,45,9.5,9,0.0 +18294,21,10,44,0.0 +18294,6,25,27,0.0 +18294,65,21.05,19,0.0 +18294,70,15,49,0.0 +18294,77,13,36,0.0 +18294,49,20,3,0.0 +18294,17,39,24,0.0 +18294,32,32,5,0.0 +18294,26,31.23,30,0.0 +18294,43,46,49,0.0 +18294,1,18,4,0.0 +18294,50,16.25,13,0.0 +18294,59,55,26,0.0 +18294,18,62.5,24,0.0 +18294,27,43.9,1,0.0 +18294,54,7.45,42,0.0 +18294,66,17,10,0.0 +18294,19,9.2,31,0.0 +18294,15,15.5,10,0.0 +18294,28,45.6,45,0.0 +18294,46,12,46,0.0 +18294,57,19.5,6,0.0 +18294,4,22,45,0.0 +18294,3,10,17,0.0 +18294,39,18,37,0.0 +18294,31,12.5,17,0.0 +18295,65,21.05,34,0.0 +18295,57,19.5,16,0.0 +18295,7,30,18,0.0 +18295,35,18,17,0.0 +18295,42,14,35,0.0 +18295,37,26,32,0.0 +18295,28,45.6,8,0.0 +18295,31,12.5,18,0.0 +18295,27,43.9,9,0.0 +18295,19,9.2,19,0.0 +18295,51,53,4,0.0 +18295,11,21,44,0.0 +18295,73,15,31,0.0 +18295,14,23.25,12,0.0 +18295,77,13,28,0.0 +18295,49,20,4,0.0 +18295,67,14,49,0.0 +18295,29,123.79,34,0.0 +18295,15,15.5,22,0.0 +18295,48,12.75,31,0.0 +18295,22,21,29,0.0 +18295,4,22,39,0.0 +18295,26,31.23,37,0.0 +18295,50,16.25,15,0.0 +18295,68,12.5,13,0.0 +18295,66,17,4,0.0 +18295,2,19,8,0.0 +18295,75,7.75,48,0.0 +18295,18,62.5,20,0.0 +18295,61,28.5,9,0.0 +18295,56,38,43,0.0 +18295,55,24,20,0.0 +18296,64,33.25,22,0.0 +18296,11,21,29,0.0 +18296,12,38,13,0.0 +18296,68,12.5,27,0.0 +18296,77,13,11,0.0 +18296,6,25,49,0.0 +18296,35,18,22,0.0 +18296,63,43.9,46,0.0 +18296,56,38,4,0.0 +18296,13,6,38,0.0 +18296,19,9.2,29,0.0 +18296,28,45.6,24,0.0 +18296,9,97,11,0.0 +18296,8,40,6,0.0 +18296,2,19,43,0.0 +18296,59,55,3,0.0 +18296,7,30,25,0.0 +18296,52,7,39,0.0 +18296,14,23.25,39,0.0 +18296,39,18,23,0.0 +18296,3,10,19,0.0 +18296,26,31.23,48,0.0 +18296,61,28.5,23,0.0 +18296,47,9.5,40,0.0 +18296,33,2.5,16,0.0 +18296,55,24,37,0.0 +18296,51,53,14,0.0 +18296,41,9.65,45,0.0 +18296,49,20,31,0.0 +18296,21,10,7,0.0 +18296,67,14,49,0.0 +18296,1,18,33,0.0 +18296,48,12.75,13,0.0 +18296,40,18.4,17,0.0 +18296,50,16.25,10,0.0 +18296,57,19.5,42,0.0 +18296,60,34,14,0.0 +18296,71,21.5,29,0.0 +18296,62,49.3,17,0.0 +18296,25,14,2,0.0 +18296,53,32.8,3,0.0 +18296,20,81,38,0.0 +18296,43,46,3,0.0 +18296,45,9.5,49,0.0 +18296,32,32,15,0.0 +18296,73,15,25,0.0 +18296,22,21,24,0.0 +18296,69,36,33,0.0 +18296,76,18,43,0.0 +18297,42,14,4,0.0 +18297,55,24,28,0.0 +18297,32,32,29,0.0 +18297,1,18,47,0.0 +18297,52,7,17,0.0 +18297,47,9.5,41,0.0 +18297,23,9,1,0.0 +18297,15,15.5,24,0.0 +18297,74,10,12,0.0 +18297,9,97,29,0.0 +18297,30,25.89,32,0.0 +18297,8,40,11,0.0 +18297,68,12.5,32,0.0 +18297,18,62.5,18,0.0 +18297,17,39,26,0.0 +18297,2,19,50,0.0 +18297,33,2.5,43,0.0 +18297,56,38,12,0.0 +18297,66,17,46,0.0 +18297,36,19,50,0.0 +18297,22,21,47,0.0 +18297,16,17.45,9,0.0 +18297,11,21,20,0.0 +18297,20,81,15,0.0 +18297,70,15,39,0.0 +18297,76,18,5,0.0 +18297,57,19.5,20,0.0 +18297,71,21.5,36,0.0 +18297,53,32.8,1,0.0 +18297,34,14,19,0.0 +18297,63,43.9,2,0.0 +18297,45,9.5,9,0.0 +18297,25,14,2,0.0 +18297,26,31.23,31,0.0 +18297,59,55,32,0.0 +18297,50,16.25,37,0.0 +18297,12,38,41,0.0 +18297,14,23.25,41,0.0 +18297,67,14,12,0.0 +18298,73,15,5,0.0 +18298,19,9.2,12,0.0 +18299,32,32,24,0.0 +18299,29,123.79,20,0.0 +18299,70,15,2,0.0 +18299,2,19,46,0.0 +18299,27,43.9,25,0.0 +18299,67,14,47,0.0 +18299,11,21,4,0.0 +18299,76,18,44,0.0 +18299,43,46,24,0.0 +18299,54,7.45,32,0.0 +18299,10,31,6,0.0 +18299,40,18.4,26,0.0 +18299,63,43.9,10,0.0 +18299,21,10,5,0.0 +18299,24,4.5,41,0.0 +18299,39,18,42,0.0 +18299,69,36,28,0.0 +18299,74,10,19,0.0 +18299,25,14,36,0.0 +18299,33,2.5,35,0.0 +18299,62,49.3,1,0.0 +18299,68,12.5,46,0.0 +18299,75,7.75,35,0.0 +18299,6,25,50,0.0 +18299,72,34.8,2,0.0 +18299,17,39,6,0.0 +18299,7,30,27,0.0 +18299,36,19,24,0.0 +18299,77,13,32,0.0 +18299,15,15.5,30,0.0 +18299,4,22,40,0.0 +18299,41,9.65,35,0.0 +18299,5,21.35,50,0.0 +18299,53,32.8,36,0.0 +18299,19,9.2,35,0.0 +18299,14,23.25,17,0.0 +18299,48,12.75,38,0.0 +18299,47,9.5,24,0.0 +18299,55,24,45,0.0 +18299,73,15,18,0.0 +18299,8,40,45,0.0 +18299,42,14,18,0.0 +18299,66,17,1,0.0 +18299,51,53,19,0.0 +18299,34,14,6,0.0 +18299,58,13.25,9,0.0 +18299,38,263.5,9,0.0 +18299,44,19.45,49,0.0 +18299,31,12.5,41,0.0 +18299,3,10,1,0.0 +18299,57,19.5,34,0.0 +18299,65,21.05,22,0.0 +18299,49,20,9,0.0 +18299,26,31.23,15,0.0 +18299,60,34,40,0.0 +18299,52,7,6,0.0 +18299,20,81,20,0.0 +18299,45,9.5,24,0.0 +18299,22,21,33,0.0 +18299,28,45.6,6,0.0 +18299,30,25.89,37,0.0 +18300,6,25,16,0.0 +18300,58,13.25,14,0.0 +18300,55,24,27,0.0 +18300,61,28.5,30,0.0 +18300,28,45.6,46,0.0 +18300,7,30,36,0.0 +18300,41,9.65,6,0.0 +18301,50,16.25,18,0.0 +18301,74,10,13,0.0 +18301,55,24,37,0.0 +18301,12,38,17,0.0 +18301,62,49.3,49,0.0 +18301,7,30,37,0.0 +18301,68,12.5,32,0.0 +18301,43,46,37,0.0 +18301,10,31,8,0.0 +18302,53,32.8,48,0.0 +18302,74,10,5,0.0 +18302,64,33.25,42,0.0 +18302,44,19.45,24,0.0 +18302,65,21.05,47,0.0 +18302,24,4.5,22,0.0 +18302,55,24,12,0.0 +18302,68,12.5,27,0.0 +18302,3,10,18,0.0 +18302,62,49.3,10,0.0 +18302,17,39,11,0.0 +18302,58,13.25,5,0.0 +18302,32,32,19,0.0 +18302,36,19,5,0.0 +18302,43,46,49,0.0 +18302,13,6,45,0.0 +18302,49,20,44,0.0 +18303,3,10,48,0.0 +18303,54,7.45,48,0.0 +18303,59,55,43,0.0 +18303,6,25,28,0.0 +18303,33,2.5,39,0.0 +18303,58,13.25,11,0.0 +18303,68,12.5,50,0.0 +18303,77,13,33,0.0 +18303,69,36,3,0.0 +18303,16,17.45,33,0.0 +18303,12,38,30,0.0 +18303,51,53,15,0.0 +18303,67,14,43,0.0 +18303,73,15,47,0.0 +18303,24,4.5,35,0.0 +18303,76,18,43,0.0 +18303,9,97,42,0.0 +18303,1,18,35,0.0 +18303,15,15.5,34,0.0 +18303,40,18.4,2,0.0 +18303,46,12,20,0.0 +18303,65,21.05,46,0.0 +18303,32,32,35,0.0 +18303,50,16.25,43,0.0 +18303,39,18,13,0.0 +18303,17,39,39,0.0 +18303,53,32.8,48,0.0 +18303,20,81,3,0.0 +18303,27,43.9,27,0.0 +18303,22,21,14,0.0 +18303,11,21,6,0.0 +18303,37,26,12,0.0 +18303,43,46,16,0.0 +18303,2,19,18,0.0 +18303,75,7.75,25,0.0 +18303,55,24,3,0.0 +18303,31,12.5,12,0.0 +18303,62,49.3,10,0.0 +18303,30,25.89,22,0.0 +18303,19,9.2,21,0.0 +18303,56,38,21,0.0 +18303,4,22,43,0.0 +18303,26,31.23,30,0.0 +18303,74,10,38,0.0 +18303,45,9.5,44,0.0 +18304,62,49.3,23,0.0 +18304,31,12.5,46,0.0 +18304,35,18,27,0.0 +18304,13,6,48,0.0 +18304,53,32.8,38,0.0 +18304,46,12,48,0.0 +18304,72,34.8,28,0.0 +18304,18,62.5,4,0.0 +18304,29,123.79,38,0.0 +18304,28,45.6,24,0.0 +18304,47,9.5,14,0.0 +18304,59,55,24,0.0 +18304,63,43.9,6,0.0 +18304,45,9.5,31,0.0 +18304,71,21.5,8,0.0 +18304,61,28.5,11,0.0 +18304,16,17.45,25,0.0 +18304,74,10,11,0.0 +18304,75,7.75,24,0.0 +18304,51,53,21,0.0 +18304,11,21,50,0.0 +18304,44,19.45,30,0.0 +18304,54,7.45,33,0.0 +18304,6,25,39,0.0 +18304,66,17,2,0.0 +18304,70,15,11,0.0 +18304,32,32,10,0.0 +18304,3,10,31,0.0 +18304,67,14,47,0.0 +18304,73,15,45,0.0 +18304,30,25.89,6,0.0 +18304,55,24,38,0.0 +18304,65,21.05,39,0.0 +18304,38,263.5,28,0.0 +18304,69,36,38,0.0 +18304,10,31,21,0.0 +18304,57,19.5,50,0.0 +18304,43,46,21,0.0 +18304,40,18.4,7,0.0 +18304,9,97,24,0.0 +18304,48,12.75,43,0.0 +18304,1,18,26,0.0 +18304,12,38,7,0.0 +18304,8,40,35,0.0 +18304,58,13.25,11,0.0 +18304,27,43.9,7,0.0 +18304,20,81,43,0.0 +18304,23,9,38,0.0 +18304,17,39,43,0.0 +18304,60,34,16,0.0 +18304,5,21.35,40,0.0 +18304,34,14,42,0.0 +18304,41,9.65,33,0.0 +18304,2,19,19,0.0 +18304,42,14,22,0.0 +18304,76,18,44,0.0 +18304,49,20,38,0.0 +18304,26,31.23,17,0.0 +18304,37,26,39,0.0 +18304,33,2.5,46,0.0 +18304,50,16.25,43,0.0 +18304,14,23.25,39,0.0 +18304,4,22,22,0.0 +18304,39,18,50,0.0 +18304,15,15.5,47,0.0 +18304,68,12.5,39,0.0 +18304,21,10,46,0.0 +18304,24,4.5,45,0.0 +18304,56,38,49,0.0 +18304,77,13,22,0.0 +18304,7,30,5,0.0 +18304,25,14,33,0.0 +18304,36,19,21,0.0 +18304,64,33.25,5,0.0 +18304,19,9.2,12,0.0 +18304,52,7,37,0.0 +18304,22,21,10,0.0 +18305,19,9.2,38,0.0 +18305,33,2.5,47,0.0 +18305,13,6,41,0.0 +18305,6,25,16,0.0 +18305,57,19.5,18,0.0 +18305,76,18,17,0.0 +18305,55,24,14,0.0 +18305,73,15,44,0.0 +18305,30,25.89,36,0.0 +18305,25,14,4,0.0 +18305,62,49.3,48,0.0 +18305,24,4.5,23,0.0 +18305,1,18,9,0.0 +18305,3,10,26,0.0 +18305,53,32.8,15,0.0 +18305,54,7.45,44,0.0 +18305,67,14,50,0.0 +18305,61,28.5,28,0.0 +18305,56,38,10,0.0 +18305,7,30,37,0.0 +18305,16,17.45,11,0.0 +18305,45,9.5,46,0.0 +18305,47,9.5,14,0.0 +18305,8,40,21,0.0 +18305,40,18.4,16,0.0 +18305,42,14,10,0.0 +18305,5,21.35,13,0.0 +18305,52,7,43,0.0 +18305,69,36,11,0.0 +18305,65,21.05,34,0.0 +18305,49,20,29,0.0 +18305,68,12.5,30,0.0 +18305,51,53,5,0.0 +18305,39,18,49,0.0 +18305,63,43.9,46,0.0 +18305,10,31,6,0.0 +18305,74,10,15,0.0 +18305,41,9.65,43,0.0 +18305,4,22,16,0.0 +18305,71,21.5,47,0.0 +18305,9,97,23,0.0 +18305,75,7.75,11,0.0 +18305,20,81,40,0.0 +18305,15,15.5,37,0.0 +18305,43,46,43,0.0 +18305,17,39,33,0.0 +18305,36,19,47,0.0 +18305,66,17,44,0.0 +18305,27,43.9,6,0.0 +18305,48,12.75,44,0.0 +18305,22,21,34,0.0 +18305,64,33.25,40,0.0 +18305,38,263.5,40,0.0 +18305,59,55,36,0.0 +18305,77,13,41,0.0 +18305,60,34,29,0.0 +18305,31,12.5,33,0.0 +18305,44,19.45,1,0.0 +18305,34,14,10,0.0 +18305,11,21,49,0.0 +18305,58,13.25,30,0.0 +18305,70,15,4,0.0 +18305,23,9,6,0.0 +18305,32,32,13,0.0 +18305,14,23.25,18,0.0 +18305,26,31.23,1,0.0 +18305,2,19,36,0.0 +18305,50,16.25,1,0.0 +18305,35,18,49,0.0 +18306,43,46,16,0.0 +18306,31,12.5,43,0.0 +18306,15,15.5,3,0.0 +18306,23,9,45,0.0 +18306,20,81,40,0.0 +18306,54,7.45,10,0.0 +18306,75,7.75,49,0.0 +18306,66,17,6,0.0 +18306,24,4.5,35,0.0 +18306,26,31.23,42,0.0 +18306,55,24,47,0.0 +18306,10,31,7,0.0 +18306,28,45.6,22,0.0 +18306,67,14,15,0.0 +18306,6,25,12,0.0 +18306,48,12.75,28,0.0 +18306,4,22,19,0.0 +18306,25,14,50,0.0 +18306,74,10,30,0.0 +18306,12,38,1,0.0 +18306,77,13,39,0.0 +18306,29,123.79,31,0.0 +18306,70,15,22,0.0 +18306,65,21.05,18,0.0 +18306,5,21.35,49,0.0 +18306,8,40,23,0.0 +18306,62,49.3,31,0.0 +18306,47,9.5,15,0.0 +18306,33,2.5,31,0.0 +18306,58,13.25,8,0.0 +18306,2,19,38,0.0 +18306,41,9.65,26,0.0 +18306,3,10,1,0.0 +18306,30,25.89,48,0.0 +18306,32,32,44,0.0 +18306,51,53,43,0.0 +18306,18,62.5,5,0.0 +18306,73,15,18,0.0 +18306,40,18.4,5,0.0 +18306,53,32.8,42,0.0 +18306,63,43.9,47,0.0 +18306,9,97,12,0.0 +18306,39,18,40,0.0 +18306,60,34,33,0.0 +18306,61,28.5,35,0.0 +18306,14,23.25,27,0.0 +18306,59,55,10,0.0 +18306,68,12.5,32,0.0 +18306,42,14,43,0.0 +18306,19,9.2,24,0.0 +18306,45,9.5,33,0.0 +18306,64,33.25,39,0.0 +18306,69,36,44,0.0 +18306,27,43.9,40,0.0 +18306,38,263.5,31,0.0 +18306,13,6,11,0.0 +18306,71,21.5,50,0.0 +18306,56,38,29,0.0 +18306,34,14,42,0.0 +18306,11,21,20,0.0 +18306,35,18,47,0.0 +18306,37,26,28,0.0 +18306,76,18,13,0.0 +18306,1,18,29,0.0 +18306,16,17.45,5,0.0 +18306,49,20,44,0.0 +18306,44,19.45,23,0.0 +18306,50,16.25,3,0.0 +18306,46,12,8,0.0 +18306,22,21,29,0.0 +18306,52,7,11,0.0 +18306,7,30,36,0.0 +18306,21,10,6,0.0 +18306,36,19,16,0.0 +18306,17,39,47,0.0 +18307,44,19.45,49,0.0 +18307,73,15,31,0.0 +18307,22,21,48,0.0 +18307,45,9.5,3,0.0 +18307,61,28.5,11,0.0 +18307,18,62.5,37,0.0 +18307,29,123.79,30,0.0 +18307,35,18,25,0.0 +18307,46,12,12,0.0 +18307,6,25,33,0.0 +18307,12,38,15,0.0 +18307,63,43.9,32,0.0 +18307,21,10,24,0.0 +18307,75,7.75,29,0.0 +18307,50,16.25,29,0.0 +18307,57,19.5,1,0.0 +18307,70,15,17,0.0 +18307,20,81,17,0.0 +18307,15,15.5,20,0.0 +18307,11,21,49,0.0 +18307,32,32,21,0.0 +18307,33,2.5,14,0.0 +18307,47,9.5,45,0.0 +18307,30,25.89,32,0.0 +18307,43,46,34,0.0 +18307,51,53,22,0.0 +18307,66,17,31,0.0 +18307,58,13.25,46,0.0 +18307,74,10,10,0.0 +18307,53,32.8,41,0.0 +18307,42,14,43,0.0 +18307,60,34,28,0.0 +18307,38,263.5,29,0.0 +18307,1,18,39,0.0 +18307,49,20,13,0.0 +18307,39,18,44,0.0 +18307,72,34.8,49,0.0 +18307,13,6,29,0.0 +18307,41,9.65,42,0.0 +18307,52,7,8,0.0 +18307,64,33.25,25,0.0 +18307,27,43.9,40,0.0 +18307,48,12.75,6,0.0 +18307,16,17.45,19,0.0 +18307,65,21.05,48,0.0 +18307,17,39,14,0.0 +18307,25,14,14,0.0 +18307,8,40,21,0.0 +18307,55,24,23,0.0 +18307,67,14,32,0.0 +18307,59,55,9,0.0 +18307,23,9,39,0.0 +18307,28,45.6,48,0.0 +18307,40,18.4,33,0.0 +18307,76,18,34,0.0 +18307,19,9.2,3,0.0 +18307,56,38,28,0.0 +18307,10,31,44,0.0 +18307,69,36,22,0.0 +18307,62,49.3,30,0.0 +18307,26,31.23,39,0.0 +18307,54,7.45,15,0.0 +18307,31,12.5,18,0.0 +18307,7,30,24,0.0 +18307,34,14,1,0.0 +18307,2,19,26,0.0 +18308,62,49.3,47,0.0 +18308,68,12.5,16,0.0 +18308,33,2.5,18,0.0 +18308,53,32.8,11,0.0 +18308,34,14,19,0.0 +18308,38,263.5,14,0.0 +18308,71,21.5,29,0.0 +18308,36,19,39,0.0 +18308,73,15,50,0.0 +18308,40,18.4,44,0.0 +18308,63,43.9,36,0.0 +18308,22,21,12,0.0 +18308,19,9.2,32,0.0 +18308,14,23.25,11,0.0 +18308,42,14,27,0.0 +18308,45,9.5,10,0.0 +18308,50,16.25,2,0.0 +18308,72,34.8,15,0.0 +18308,8,40,9,0.0 +18308,26,31.23,5,0.0 +18308,43,46,12,0.0 +18308,29,123.79,37,0.0 +18308,66,17,35,0.0 +18308,70,15,36,0.0 +18308,6,25,26,0.0 +18308,58,13.25,25,0.0 +18308,67,14,8,0.0 +18308,47,9.5,46,0.0 +18308,69,36,45,0.0 +18308,17,39,37,0.0 +18308,65,21.05,7,0.0 +18308,44,19.45,30,0.0 +18308,55,24,38,0.0 +18308,21,10,48,0.0 +18308,15,15.5,39,0.0 +18308,39,18,8,0.0 +18308,5,21.35,3,0.0 +18308,51,53,2,0.0 +18308,28,45.6,39,0.0 +18308,48,12.75,31,0.0 +18308,3,10,48,0.0 +18308,56,38,17,0.0 +18308,25,14,4,0.0 +18308,27,43.9,29,0.0 +18308,9,97,19,0.0 +18308,75,7.75,35,0.0 +18308,49,20,47,0.0 +18308,35,18,44,0.0 +18308,46,12,24,0.0 +18308,77,13,28,0.0 +18308,52,7,39,0.0 +18308,11,21,42,0.0 +18308,32,32,38,0.0 +18308,59,55,16,0.0 +18308,64,33.25,31,0.0 +18308,24,4.5,29,0.0 +18308,4,22,21,0.0 +18308,1,18,13,0.0 +18308,76,18,13,0.0 +18308,54,7.45,3,0.0 +18308,30,25.89,11,0.0 +18308,74,10,7,0.0 +18308,57,19.5,13,0.0 +18308,61,28.5,47,0.0 +18308,2,19,1,0.0 +18309,14,23.25,37,0.0 +18309,30,25.89,25,0.0 +18309,75,7.75,43,0.0 +18309,27,43.9,35,0.0 +18309,51,53,20,0.0 +18309,74,10,4,0.0 +18309,7,30,32,0.0 +18309,29,123.79,46,0.0 +18309,47,9.5,35,0.0 +18309,32,32,11,0.0 +18309,6,25,21,0.0 +18309,59,55,37,0.0 +18309,68,12.5,5,0.0 +18309,21,10,6,0.0 +18309,28,45.6,26,0.0 +18309,4,22,14,0.0 +18309,70,15,12,0.0 +18309,12,38,45,0.0 +18309,35,18,33,0.0 +18309,64,33.25,21,0.0 +18309,62,49.3,17,0.0 +18309,23,9,31,0.0 +18309,61,28.5,28,0.0 +18309,77,13,5,0.0 +18309,2,19,42,0.0 +18309,57,19.5,18,0.0 +18309,8,40,50,0.0 +18309,46,12,24,0.0 +18309,39,18,38,0.0 +18309,34,14,36,0.0 +18309,25,14,22,0.0 +18309,33,2.5,17,0.0 +18309,45,9.5,13,0.0 +18309,20,81,37,0.0 +18309,56,38,7,0.0 +18309,26,31.23,19,0.0 +18309,41,9.65,22,0.0 +18309,37,26,20,0.0 +18309,36,19,8,0.0 +18309,73,15,10,0.0 +18309,3,10,14,0.0 +18309,11,21,10,0.0 +18309,18,62.5,9,0.0 +18309,19,9.2,34,0.0 +18309,42,14,9,0.0 +18309,53,32.8,15,0.0 +18309,50,16.25,14,0.0 +18309,72,34.8,1,0.0 +18309,40,18.4,41,0.0 +18309,55,24,45,0.0 +18309,48,12.75,33,0.0 +18309,52,7,27,0.0 +18309,54,7.45,41,0.0 +18309,31,12.5,49,0.0 +18309,38,263.5,17,0.0 +18309,66,17,48,0.0 +18309,63,43.9,45,0.0 +18309,15,15.5,44,0.0 +18309,17,39,6,0.0 +18309,9,97,20,0.0 +18309,60,34,33,0.0 +18309,44,19.45,46,0.0 +18309,5,21.35,40,0.0 +18309,1,18,2,0.0 +18309,69,36,50,0.0 +18309,67,14,3,0.0 +18309,71,21.5,42,0.0 +18309,16,17.45,39,0.0 +18310,42,14,20,0.0 +18310,52,7,15,0.0 +18310,29,123.79,42,0.0 +18310,67,14,9,0.0 +18310,41,9.65,18,0.0 +18310,24,4.5,45,0.0 +18310,71,21.5,25,0.0 +18310,49,20,16,0.0 +18310,58,13.25,37,0.0 +18310,48,12.75,44,0.0 +18310,53,32.8,24,0.0 +18310,2,19,47,0.0 +18310,21,10,14,0.0 +18310,17,39,6,0.0 +18310,59,55,44,0.0 +18310,55,24,28,0.0 +18310,18,62.5,26,0.0 +18310,50,16.25,30,0.0 +18310,3,10,25,0.0 +18310,61,28.5,48,0.0 +18310,38,263.5,3,0.0 +18310,32,32,30,0.0 +18310,76,18,18,0.0 +18310,1,18,10,0.0 +18310,30,25.89,19,0.0 +18310,46,12,33,0.0 +18310,54,7.45,40,0.0 +18310,56,38,42,0.0 +18311,41,9.65,19,0.0 +18311,31,12.5,7,0.0 +18311,74,10,11,0.0 +18311,7,30,14,0.0 +18311,12,38,37,0.0 +18311,2,19,3,0.0 +18311,70,15,9,0.0 +18311,49,20,1,0.0 +18311,60,34,5,0.0 +18311,9,97,38,0.0 +18311,36,19,42,0.0 +18311,20,81,45,0.0 +18311,50,16.25,28,0.0 +18311,16,17.45,8,0.0 +18312,12,38,12,0.0 +18312,75,7.75,14,0.0 +18312,28,45.6,10,0.0 +18312,25,14,47,0.0 +18312,58,13.25,47,0.0 +18312,47,9.5,32,0.0 +18312,77,13,39,0.0 +18313,21,10,18,0.0 +18313,72,34.8,13,0.0 +18313,13,6,3,0.0 +18313,51,53,14,0.0 +18313,19,9.2,34,0.0 +18313,10,31,41,0.0 +18313,34,14,1,0.0 +18313,8,40,25,0.0 +18313,6,25,36,0.0 +18313,74,10,12,0.0 +18313,31,12.5,29,0.0 +18313,61,28.5,45,0.0 +18313,54,7.45,38,0.0 +18313,17,39,7,0.0 +18313,62,49.3,26,0.0 +18313,47,9.5,25,0.0 +18313,41,9.65,2,0.0 +18313,48,12.75,21,0.0 +18313,25,14,2,0.0 +18313,2,19,33,0.0 +18313,52,7,32,0.0 +18313,20,81,24,0.0 +18313,76,18,42,0.0 +18313,46,12,47,0.0 +18313,59,55,15,0.0 +18313,7,30,31,0.0 +18313,36,19,49,0.0 +18313,12,38,16,0.0 +18313,16,17.45,33,0.0 +18313,45,9.5,32,0.0 +18313,27,43.9,4,0.0 +18313,73,15,5,0.0 +18313,23,9,13,0.0 +18313,66,17,8,0.0 +18313,56,38,37,0.0 +18313,55,24,8,0.0 +18313,22,21,36,0.0 +18313,69,36,18,0.0 +18313,3,10,49,0.0 +18313,1,18,46,0.0 +18313,68,12.5,35,0.0 +18313,15,15.5,24,0.0 +18313,53,32.8,28,0.0 +18313,5,21.35,40,0.0 +18313,18,62.5,48,0.0 +18313,43,46,10,0.0 +18313,37,26,6,0.0 +18313,77,13,50,0.0 +18313,70,15,37,0.0 +18313,38,263.5,29,0.0 +18313,63,43.9,12,0.0 +18313,33,2.5,16,0.0 +18313,29,123.79,20,0.0 +18313,9,97,30,0.0 +18313,42,14,35,0.0 +18313,32,32,43,0.0 +18313,50,16.25,14,0.0 +18313,57,19.5,41,0.0 +18313,44,19.45,17,0.0 +18313,67,14,31,0.0 +18313,40,18.4,10,0.0 +18313,28,45.6,10,0.0 +18313,64,33.25,3,0.0 +18313,39,18,17,0.0 +18313,4,22,45,0.0 +18313,58,13.25,19,0.0 +18313,75,7.75,15,0.0 +18313,49,20,7,0.0 +18314,1,18,42,0.0 +18314,13,6,10,0.0 +18314,31,12.5,22,0.0 +18314,44,19.45,35,0.0 +18314,35,18,13,0.0 +18314,52,7,47,0.0 +18314,27,43.9,35,0.0 +18314,51,53,14,0.0 +18314,33,2.5,38,0.0 +18314,5,21.35,33,0.0 +18314,65,21.05,17,0.0 +18314,38,263.5,27,0.0 +18314,75,7.75,33,0.0 +18314,29,123.79,30,0.0 +18314,2,19,8,0.0 +18314,24,4.5,20,0.0 +18314,67,14,12,0.0 +18315,1,18,31,0.0 +18315,32,32,3,0.0 +18315,52,7,30,0.0 +18315,56,38,7,0.0 +18315,58,13.25,40,0.0 +18315,41,9.65,5,0.0 +18315,5,21.35,2,0.0 +18315,42,14,7,0.0 +18315,59,55,31,0.0 +18315,4,22,32,0.0 +18315,11,21,2,0.0 +18315,54,7.45,34,0.0 +18315,47,9.5,50,0.0 +18315,68,12.5,21,0.0 +18315,27,43.9,43,0.0 +18315,53,32.8,50,0.0 +18315,24,4.5,15,0.0 +18315,30,25.89,30,0.0 +18315,49,20,11,0.0 +18315,43,46,25,0.0 +18315,23,9,40,0.0 +18315,66,17,40,0.0 +18315,44,19.45,30,0.0 +18315,14,23.25,7,0.0 +18315,67,14,10,0.0 +18315,55,24,50,0.0 +18316,6,25,23,0.0 +18316,57,19.5,41,0.0 +18316,30,25.89,18,0.0 +18316,32,32,13,0.0 +18316,75,7.75,21,0.0 +18316,29,123.79,40,0.0 +18316,54,7.45,7,0.0 +18316,58,13.25,37,0.0 +18316,46,12,27,0.0 +18316,35,18,37,0.0 +18316,36,19,16,0.0 +18316,11,21,41,0.0 +18316,33,2.5,17,0.0 +18316,67,14,35,0.0 +18316,18,62.5,45,0.0 +18316,23,9,23,0.0 +18316,19,9.2,41,0.0 +18316,68,12.5,48,0.0 +18316,28,45.6,41,0.0 +18316,71,21.5,46,0.0 +18316,2,19,44,0.0 +18316,13,6,14,0.0 +18316,60,34,8,0.0 +18316,31,12.5,39,0.0 +18316,66,17,22,0.0 +18316,15,15.5,18,0.0 +18316,17,39,37,0.0 +18316,56,38,10,0.0 +18316,73,15,37,0.0 +18317,70,15,8,0.0 +18317,61,28.5,15,0.0 +18317,49,20,50,0.0 +18317,42,14,46,0.0 +18317,20,81,49,0.0 +18317,46,12,7,0.0 +18317,9,97,25,0.0 +18317,17,39,21,0.0 +18317,60,34,11,0.0 +18317,15,15.5,47,0.0 +18317,44,19.45,6,0.0 +18317,62,49.3,48,0.0 +18317,75,7.75,31,0.0 +18317,26,31.23,46,0.0 +18317,69,36,31,0.0 +18317,55,24,5,0.0 +18317,66,17,44,0.0 +18317,40,18.4,46,0.0 +18317,68,12.5,15,0.0 +18317,19,9.2,26,0.0 +18317,33,2.5,33,0.0 +18317,71,21.5,44,0.0 +18317,25,14,26,0.0 +18317,6,25,48,0.0 +18317,53,32.8,26,0.0 +18317,37,26,37,0.0 +18317,74,10,2,0.0 +18317,14,23.25,12,0.0 +18317,73,15,15,0.0 +18317,64,33.25,15,0.0 +18317,50,16.25,20,0.0 +18317,57,19.5,8,0.0 +18317,34,14,23,0.0 +18317,43,46,30,0.0 +18317,18,62.5,26,0.0 +18317,24,4.5,24,0.0 +18317,21,10,34,0.0 +18317,11,21,7,0.0 +18317,41,9.65,41,0.0 +18318,62,49.3,41,0.0 +18318,1,18,45,0.0 +18318,65,21.05,48,0.0 +18318,74,10,18,0.0 +18318,28,45.6,35,0.0 +18318,7,30,31,0.0 +18318,19,9.2,11,0.0 +18318,25,14,48,0.0 +18318,45,9.5,5,0.0 +18318,73,15,41,0.0 +18318,38,263.5,30,0.0 +18318,4,22,27,0.0 +18318,27,43.9,23,0.0 +18318,14,23.25,14,0.0 +18318,70,15,16,0.0 +18318,54,7.45,34,0.0 +18318,29,123.79,1,0.0 +18318,30,25.89,7,0.0 +18318,3,10,27,0.0 +18319,18,62.5,12,0.0 +18319,10,31,41,0.0 +18319,70,15,17,0.0 +18319,15,15.5,24,0.0 +18319,68,12.5,35,0.0 +18319,14,23.25,36,0.0 +18319,27,43.9,45,0.0 +18319,77,13,14,0.0 +18319,54,7.45,46,0.0 +18319,44,19.45,10,0.0 +18319,34,14,2,0.0 +18319,49,20,48,0.0 +18319,73,15,12,0.0 +18319,76,18,48,0.0 +18319,57,19.5,23,0.0 +18319,25,14,7,0.0 +18319,32,32,28,0.0 +18319,53,32.8,34,0.0 +18319,26,31.23,10,0.0 +18319,71,21.5,38,0.0 +18319,35,18,34,0.0 +18319,39,18,21,0.0 +18319,48,12.75,2,0.0 +18319,45,9.5,40,0.0 +18319,61,28.5,5,0.0 +18319,56,38,23,0.0 +18319,60,34,41,0.0 +18319,37,26,45,0.0 +18319,43,46,35,0.0 +18319,47,9.5,7,0.0 +18319,22,21,42,0.0 +18319,20,81,5,0.0 +18319,46,12,4,0.0 +18319,40,18.4,38,0.0 +18319,65,21.05,26,0.0 +18319,1,18,12,0.0 +18319,11,21,31,0.0 +18319,6,25,49,0.0 +18319,13,6,33,0.0 +18319,63,43.9,7,0.0 +18319,2,19,45,0.0 +18319,19,9.2,20,0.0 +18319,21,10,1,0.0 +18319,72,34.8,14,0.0 +18319,7,30,31,0.0 +18319,24,4.5,14,0.0 +18319,58,13.25,17,0.0 +18319,59,55,32,0.0 +18319,9,97,40,0.0 +18319,12,38,39,0.0 +18319,17,39,17,0.0 +18319,52,7,39,0.0 +18319,3,10,44,0.0 +18319,5,21.35,31,0.0 +18319,66,17,14,0.0 +18319,69,36,15,0.0 +18319,64,33.25,40,0.0 +18319,62,49.3,39,0.0 +18320,76,18,49,0.0 +18320,45,9.5,47,0.0 +18320,54,7.45,45,0.0 +18320,49,20,5,0.0 +18320,30,25.89,2,0.0 +18320,56,38,15,0.0 +18320,65,21.05,42,0.0 +18320,2,19,32,0.0 +18320,10,31,9,0.0 +18320,34,14,5,0.0 +18320,73,15,16,0.0 +18320,16,17.45,41,0.0 +18320,70,15,19,0.0 +18320,11,21,22,0.0 +18320,74,10,17,0.0 +18320,35,18,15,0.0 +18320,64,33.25,40,0.0 +18320,22,21,8,0.0 +18320,68,12.5,16,0.0 +18320,39,18,38,0.0 +18320,37,26,11,0.0 +18320,43,46,46,0.0 +18320,28,45.6,49,0.0 +18320,77,13,12,0.0 +18320,69,36,29,0.0 +18320,31,12.5,49,0.0 +18320,41,9.65,31,0.0 +18320,47,9.5,32,0.0 +18320,46,12,5,0.0 +18320,42,14,48,0.0 +18320,13,6,31,0.0 +18320,36,19,8,0.0 +18320,9,97,32,0.0 +18320,44,19.45,4,0.0 +18320,19,9.2,21,0.0 +18320,27,43.9,14,0.0 +18320,59,55,12,0.0 +18321,41,9.65,39,0.0 +18321,45,9.5,33,0.0 +18321,15,15.5,50,0.0 +18321,53,32.8,6,0.0 +18321,58,13.25,32,0.0 +18321,35,18,7,0.0 +18321,31,12.5,47,0.0 +18321,23,9,49,0.0 +18321,57,19.5,14,0.0 +18321,50,16.25,25,0.0 +18321,10,31,11,0.0 +18321,2,19,28,0.0 +18321,71,21.5,22,0.0 +18321,77,13,6,0.0 +18321,52,7,27,0.0 +18321,26,31.23,7,0.0 +18321,28,45.6,49,0.0 +18321,16,17.45,8,0.0 +18321,43,46,49,0.0 +18321,56,38,13,0.0 +18321,20,81,4,0.0 +18321,21,10,46,0.0 +18321,44,19.45,50,0.0 +18321,33,2.5,22,0.0 +18321,5,21.35,15,0.0 +18321,66,17,17,0.0 +18322,17,39,48,0.0 +18322,35,18,50,0.0 +18322,40,18.4,9,0.0 +18322,66,17,41,0.0 +18322,26,31.23,12,0.0 +18322,74,10,33,0.0 +18322,42,14,34,0.0 +18322,7,30,44,0.0 +18322,36,19,36,0.0 +18322,75,7.75,3,0.0 +18322,19,9.2,28,0.0 +18322,30,25.89,24,0.0 +18322,22,21,17,0.0 +18322,51,53,8,0.0 +18322,58,13.25,12,0.0 +18322,34,14,33,0.0 +18322,3,10,46,0.0 +18322,16,17.45,39,0.0 +18322,69,36,40,0.0 +18322,9,97,31,0.0 +18322,48,12.75,44,0.0 +18322,27,43.9,5,0.0 +18322,32,32,44,0.0 +18322,70,15,8,0.0 +18322,12,38,11,0.0 +18322,44,19.45,25,0.0 +18322,57,19.5,7,0.0 +18322,37,26,40,0.0 +18322,54,7.45,9,0.0 +18322,13,6,16,0.0 +18322,4,22,11,0.0 +18322,31,12.5,2,0.0 +18322,64,33.25,4,0.0 +18322,45,9.5,10,0.0 +18323,12,38,11,0.0 +18323,66,17,44,0.0 +18323,21,10,3,0.0 +18323,52,7,45,0.0 +18324,47,9.5,1,0.0 +18324,48,12.75,1,0.0 +18324,73,15,13,0.0 +18324,53,32.8,45,0.0 +18324,5,21.35,19,0.0 +18324,24,4.5,11,0.0 +18324,74,10,43,0.0 +18324,29,123.79,41,0.0 +18324,66,17,50,0.0 +18324,37,26,37,0.0 +18324,30,25.89,30,0.0 +18324,64,33.25,29,0.0 +18324,71,21.5,37,0.0 +18324,68,12.5,1,0.0 +18324,49,20,44,0.0 +18324,33,2.5,48,0.0 +18324,43,46,47,0.0 +18324,3,10,39,0.0 +18324,70,15,36,0.0 +18324,60,34,48,0.0 +18324,50,16.25,5,0.0 +18324,69,36,3,0.0 +18324,40,18.4,26,0.0 +18324,57,19.5,21,0.0 +18324,16,17.45,4,0.0 +18324,17,39,20,0.0 +18324,23,9,49,0.0 +18324,63,43.9,26,0.0 +18324,39,18,39,0.0 +18324,19,9.2,12,0.0 +18324,2,19,48,0.0 +18324,14,23.25,1,0.0 +18324,42,14,47,0.0 +18324,58,13.25,25,0.0 +18324,1,18,12,0.0 +18324,35,18,45,0.0 +18324,59,55,49,0.0 +18324,28,45.6,7,0.0 +18324,56,38,10,0.0 +18324,65,21.05,45,0.0 +18324,15,15.5,48,0.0 +18324,12,38,13,0.0 +18324,11,21,15,0.0 +18324,20,81,44,0.0 +18324,34,14,7,0.0 +18324,7,30,11,0.0 +18324,25,14,23,0.0 +18324,8,40,11,0.0 +18324,54,7.45,4,0.0 +18324,61,28.5,31,0.0 +18324,44,19.45,11,0.0 +18324,9,97,23,0.0 +18324,55,24,34,0.0 +18324,77,13,23,0.0 +18324,36,19,18,0.0 +18324,13,6,7,0.0 +18324,76,18,36,0.0 +18324,75,7.75,1,0.0 +18324,4,22,2,0.0 +18324,18,62.5,11,0.0 +18324,10,31,39,0.0 +18324,38,263.5,48,0.0 +18324,72,34.8,41,0.0 +18324,27,43.9,40,0.0 +18324,67,14,25,0.0 +18324,45,9.5,20,0.0 +18324,26,31.23,2,0.0 +18324,62,49.3,2,0.0 +18324,51,53,50,0.0 +18324,32,32,47,0.0 +18324,21,10,16,0.0 +18324,22,21,35,0.0 +18324,41,9.65,34,0.0 +18324,46,12,20,0.0 +18324,52,7,6,0.0 +18324,6,25,38,0.0 +18324,31,12.5,35,0.0 +18325,43,46,19,0.0 +18325,37,26,44,0.0 +18325,59,55,1,0.0 +18325,54,7.45,31,0.0 +18325,10,31,19,0.0 +18325,31,12.5,30,0.0 +18325,50,16.25,41,0.0 +18325,12,38,9,0.0 +18325,33,2.5,4,0.0 +18325,44,19.45,50,0.0 +18325,25,14,42,0.0 +18325,9,97,4,0.0 +18325,17,39,50,0.0 +18325,27,43.9,4,0.0 +18325,72,34.8,36,0.0 +18325,53,32.8,45,0.0 +18325,11,21,38,0.0 +18325,13,6,2,0.0 +18325,73,15,1,0.0 +18325,77,13,49,0.0 +18325,45,9.5,8,0.0 +18325,16,17.45,26,0.0 +18325,30,25.89,33,0.0 +18325,69,36,37,0.0 +18325,62,49.3,15,0.0 +18325,71,21.5,33,0.0 +18325,63,43.9,28,0.0 +18325,14,23.25,8,0.0 +18325,36,19,39,0.0 +18325,26,31.23,4,0.0 +18325,75,7.75,1,0.0 +18325,48,12.75,48,0.0 +18325,6,25,22,0.0 +18325,57,19.5,9,0.0 +18325,1,18,1,0.0 +18325,21,10,9,0.0 +18325,58,13.25,6,0.0 +18325,24,4.5,12,0.0 +18325,28,45.6,26,0.0 +18325,67,14,36,0.0 +18325,68,12.5,18,0.0 +18325,56,38,40,0.0 +18325,64,33.25,44,0.0 +18325,49,20,30,0.0 +18325,18,62.5,17,0.0 +18325,5,21.35,9,0.0 +18325,47,9.5,30,0.0 +18325,51,53,26,0.0 +18325,3,10,8,0.0 +18325,35,18,26,0.0 +18325,15,15.5,38,0.0 +18325,4,22,28,0.0 +18325,38,263.5,12,0.0 +18325,39,18,28,0.0 +18325,55,24,5,0.0 +18325,60,34,14,0.0 +18325,52,7,30,0.0 +18325,32,32,37,0.0 +18325,8,40,12,0.0 +18325,20,81,23,0.0 +18326,32,32,5,0.0 +18326,54,7.45,28,0.0 +18326,64,33.25,40,0.0 +18326,14,23.25,47,0.0 +18326,71,21.5,27,0.0 +18326,18,62.5,6,0.0 +18326,1,18,28,0.0 +18326,37,26,22,0.0 +18326,25,14,32,0.0 +18326,45,9.5,40,0.0 +18326,30,25.89,1,0.0 +18326,38,263.5,20,0.0 +18326,77,13,39,0.0 +18326,47,9.5,44,0.0 +18326,13,6,36,0.0 +18326,68,12.5,46,0.0 +18326,43,46,2,0.0 +18326,57,19.5,19,0.0 +18327,39,18,49,0.0 +18327,49,20,1,0.0 +18327,67,14,32,0.0 +18327,12,38,4,0.0 +18327,63,43.9,33,0.0 +18327,15,15.5,32,0.0 +18327,66,17,4,0.0 +18327,33,2.5,29,0.0 +18327,54,7.45,45,0.0 +18327,58,13.25,3,0.0 +18327,18,62.5,3,0.0 +18327,9,97,34,0.0 +18327,14,23.25,43,0.0 +18327,48,12.75,30,0.0 +18327,50,16.25,24,0.0 +18327,53,32.8,38,0.0 +18327,17,39,8,0.0 +18327,24,4.5,41,0.0 +18327,41,9.65,47,0.0 +18327,23,9,22,0.0 +18327,28,45.6,13,0.0 +18327,59,55,14,0.0 +18327,69,36,16,0.0 +18327,56,38,47,0.0 +18327,4,22,37,0.0 +18327,30,25.89,27,0.0 +18327,77,13,13,0.0 +18328,46,12,34,0.0 +18328,69,36,33,0.0 +18328,7,30,47,0.0 +18328,26,31.23,27,0.0 +18328,40,18.4,40,0.0 +18328,68,12.5,25,0.0 +18328,13,6,47,0.0 +18328,54,7.45,29,0.0 +18328,21,10,18,0.0 +18328,37,26,39,0.0 +18328,63,43.9,1,0.0 +18328,42,14,41,0.0 +18328,38,263.5,40,0.0 +18328,71,21.5,8,0.0 +18328,22,21,31,0.0 +18328,58,13.25,2,0.0 +18328,24,4.5,27,0.0 +18328,47,9.5,21,0.0 +18328,6,25,17,0.0 +18328,75,7.75,24,0.0 +18328,44,19.45,11,0.0 +18329,28,45.6,13,0.0 +18329,68,12.5,11,0.0 +18329,7,30,11,0.0 +18329,34,14,25,0.0 +18329,59,55,32,0.0 +18329,42,14,29,0.0 +18329,65,21.05,35,0.0 +18329,9,97,32,0.0 +18329,58,13.25,29,0.0 +18329,75,7.75,22,0.0 +18329,62,49.3,20,0.0 +18329,1,18,43,0.0 +18329,4,22,21,0.0 +18329,43,46,34,0.0 +18329,72,34.8,27,0.0 +18329,49,20,18,0.0 +18329,50,16.25,24,0.0 +18329,19,9.2,9,0.0 +18329,14,23.25,17,0.0 +18329,33,2.5,27,0.0 +18329,39,18,29,0.0 +18329,71,21.5,38,0.0 +18329,48,12.75,11,0.0 +18329,31,12.5,7,0.0 +18329,21,10,35,0.0 +18329,17,39,9,0.0 +18329,10,31,48,0.0 +18329,32,32,1,0.0 +18329,55,24,23,0.0 +18329,16,17.45,24,0.0 +18329,2,19,3,0.0 +18329,73,15,5,0.0 +18329,15,15.5,16,0.0 +18329,66,17,14,0.0 +18329,23,9,28,0.0 +18329,5,21.35,44,0.0 +18329,46,12,5,0.0 +18329,37,26,28,0.0 +18329,22,21,39,0.0 +18329,63,43.9,17,0.0 +18329,30,25.89,46,0.0 +18329,27,43.9,2,0.0 +18329,20,81,42,0.0 +18329,56,38,34,0.0 +18329,61,28.5,19,0.0 +18329,52,7,17,0.0 +18329,45,9.5,20,0.0 +18329,3,10,12,0.0 +18329,70,15,4,0.0 +18329,64,33.25,40,0.0 +18329,74,10,32,0.0 +18329,38,263.5,20,0.0 +18329,57,19.5,11,0.0 +18329,51,53,8,0.0 +18329,60,34,37,0.0 +18329,8,40,22,0.0 +18329,53,32.8,45,0.0 +18329,6,25,48,0.0 +18329,40,18.4,32,0.0 +18329,77,13,28,0.0 +18329,26,31.23,16,0.0 +18329,67,14,32,0.0 +18329,29,123.79,48,0.0 +18329,24,4.5,27,0.0 +18329,18,62.5,41,0.0 +18329,36,19,15,0.0 +18329,11,21,5,0.0 +18329,69,36,11,0.0 +18329,76,18,3,0.0 +18330,31,12.5,25,0.0 +18330,23,9,19,0.0 +18330,36,19,10,0.0 +18330,10,31,19,0.0 +18330,16,17.45,24,0.0 +18330,65,21.05,14,0.0 +18330,52,7,49,0.0 +18330,66,17,9,0.0 +18330,15,15.5,45,0.0 +18330,57,19.5,37,0.0 +18330,72,34.8,5,0.0 +18330,64,33.25,47,0.0 +18330,48,12.75,44,0.0 +18330,55,24,29,0.0 +18330,49,20,23,0.0 +18330,56,38,41,0.0 +18330,76,18,37,0.0 +18330,77,13,4,0.0 +18330,74,10,40,0.0 +18330,35,18,35,0.0 +18330,21,10,14,0.0 +18330,46,12,48,0.0 +18330,60,34,27,0.0 +18330,11,21,25,0.0 +18330,22,21,12,0.0 +18330,29,123.79,5,0.0 +18330,3,10,8,0.0 +18330,8,40,48,0.0 +18330,20,81,22,0.0 +18330,45,9.5,38,0.0 +18330,58,13.25,35,0.0 +18330,61,28.5,45,0.0 +18330,14,23.25,31,0.0 +18330,12,38,26,0.0 +18330,53,32.8,29,0.0 +18330,71,21.5,3,0.0 +18330,62,49.3,20,0.0 +18330,40,18.4,48,0.0 +18330,69,36,37,0.0 +18330,5,21.35,11,0.0 +18330,70,15,6,0.0 +18330,42,14,5,0.0 +18330,34,14,41,0.0 +18330,67,14,37,0.0 +18330,6,25,26,0.0 +18330,25,14,33,0.0 +18330,32,32,43,0.0 +18330,27,43.9,33,0.0 +18330,50,16.25,24,0.0 +18330,9,97,8,0.0 +18330,33,2.5,6,0.0 +18330,39,18,50,0.0 +18330,37,26,20,0.0 +18330,59,55,15,0.0 +18330,54,7.45,8,0.0 +18330,73,15,26,0.0 +18330,28,45.6,10,0.0 +18331,46,12,37,0.0 +18331,53,32.8,33,0.0 +18331,5,21.35,2,0.0 +18331,29,123.79,18,0.0 +18331,7,30,44,0.0 +18331,64,33.25,42,0.0 +18331,77,13,46,0.0 +18331,20,81,12,0.0 +18331,69,36,6,0.0 +18331,42,14,24,0.0 +18331,68,12.5,33,0.0 +18331,63,43.9,15,0.0 +18331,66,17,47,0.0 +18331,76,18,49,0.0 +18331,32,32,12,0.0 +18331,58,13.25,50,0.0 +18331,47,9.5,28,0.0 +18331,25,14,12,0.0 +18331,17,39,39,0.0 +18331,4,22,35,0.0 +18331,55,24,15,0.0 +18331,60,34,18,0.0 +18331,22,21,26,0.0 +18331,28,45.6,27,0.0 +18331,2,19,32,0.0 +18331,74,10,16,0.0 +18331,62,49.3,34,0.0 +18331,73,15,30,0.0 +18331,26,31.23,46,0.0 +18331,52,7,39,0.0 +18331,31,12.5,43,0.0 +18331,14,23.25,39,0.0 +18331,51,53,40,0.0 +18331,37,26,1,0.0 +18331,59,55,12,0.0 +18331,21,10,17,0.0 +18331,50,16.25,14,0.0 +18331,36,19,16,0.0 +18331,33,2.5,23,0.0 +18331,39,18,28,0.0 +18331,67,14,4,0.0 +18332,53,32.8,9,0.0 +18332,30,25.89,19,0.0 +18332,64,33.25,19,0.0 +18332,2,19,31,0.0 +18332,42,14,25,0.0 +18332,22,21,40,0.0 +18332,47,9.5,44,0.0 +18332,5,21.35,19,0.0 +18332,1,18,7,0.0 +18332,37,26,42,0.0 +18332,18,62.5,1,0.0 +18332,28,45.6,50,0.0 +18332,9,97,6,0.0 +18332,11,21,20,0.0 +18332,15,15.5,24,0.0 +18332,68,12.5,18,0.0 +18332,6,25,5,0.0 +18332,54,7.45,38,0.0 +18332,55,24,47,0.0 +18332,36,19,15,0.0 +18332,48,12.75,38,0.0 +18332,26,31.23,30,0.0 +18332,46,12,14,0.0 +18332,35,18,49,0.0 +18332,49,20,48,0.0 +18332,38,263.5,39,0.0 +18332,72,34.8,30,0.0 +18332,39,18,26,0.0 +18332,76,18,11,0.0 +18332,75,7.75,24,0.0 +18332,70,15,20,0.0 +18332,17,39,24,0.0 +18332,12,38,28,0.0 +18332,3,10,16,0.0 +18332,52,7,9,0.0 +18332,33,2.5,38,0.0 +18332,67,14,33,0.0 +18332,58,13.25,36,0.0 +18333,53,32.8,5,0.0 +18333,20,81,26,0.0 +18333,47,9.5,20,0.0 +18333,4,22,7,0.0 +18333,75,7.75,42,0.0 +18333,52,7,24,0.0 +18333,36,19,10,0.0 +18333,54,7.45,22,0.0 +18333,41,9.65,49,0.0 +18333,5,21.35,34,0.0 +18333,63,43.9,3,0.0 +18333,28,45.6,28,0.0 +18333,23,9,19,0.0 +18333,11,21,27,0.0 +18333,34,14,37,0.0 +18333,30,25.89,31,0.0 +18333,6,25,9,0.0 +18333,19,9.2,8,0.0 +18333,22,21,8,0.0 +18333,50,16.25,36,0.0 +18333,13,6,23,0.0 +18334,47,9.5,32,0.0 +18334,49,20,14,0.0 +18334,10,31,30,0.0 +18334,77,13,28,0.0 +18334,1,18,38,0.0 +18334,19,9.2,9,0.0 +18334,22,21,14,0.0 +18334,35,18,22,0.0 +18334,45,9.5,10,0.0 +18334,59,55,6,0.0 +18334,9,97,25,0.0 +18334,24,4.5,16,0.0 +18334,25,14,46,0.0 +18334,56,38,38,0.0 +18334,8,40,42,0.0 +18334,58,13.25,46,0.0 +18334,41,9.65,19,0.0 +18334,17,39,29,0.0 +18334,43,46,38,0.0 +18334,32,32,35,0.0 +18334,14,23.25,7,0.0 +18334,64,33.25,4,0.0 +18334,72,34.8,27,0.0 +18334,57,19.5,43,0.0 +18334,50,16.25,5,0.0 +18334,20,81,26,0.0 +18334,39,18,17,0.0 +18334,44,19.45,19,0.0 +18334,23,9,23,0.0 +18334,26,31.23,12,0.0 +18334,5,21.35,50,0.0 +18334,68,12.5,36,0.0 +18334,55,24,7,0.0 +18334,33,2.5,27,0.0 +18334,51,53,9,0.0 +18334,37,26,29,0.0 +18334,27,43.9,21,0.0 +18334,2,19,50,0.0 +18334,66,17,19,0.0 +18334,48,12.75,8,0.0 +18334,15,15.5,9,0.0 +18334,73,15,21,0.0 +18334,74,10,28,0.0 +18334,12,38,32,0.0 +18334,38,263.5,23,0.0 +18334,36,19,49,0.0 +18334,28,45.6,42,0.0 +18334,30,25.89,29,0.0 +18334,69,36,4,0.0 +18334,70,15,28,0.0 +18334,75,7.75,36,0.0 +18334,40,18.4,2,0.0 +18334,42,14,28,0.0 +18335,36,19,42,0.0 +18335,4,22,19,0.0 +18335,25,14,39,0.0 +18335,60,34,49,0.0 +18335,27,43.9,13,0.0 +18335,77,13,19,0.0 +18335,59,55,36,0.0 +18335,41,9.65,45,0.0 +18335,44,19.45,18,0.0 +18335,39,18,32,0.0 +18335,29,123.79,50,0.0 +18335,71,21.5,43,0.0 +18335,40,18.4,10,0.0 +18335,21,10,41,0.0 +18335,47,9.5,24,0.0 +18335,50,16.25,7,0.0 +18335,18,62.5,15,0.0 +18335,74,10,17,0.0 +18335,70,15,32,0.0 +18335,32,32,35,0.0 +18335,23,9,2,0.0 +18335,65,21.05,39,0.0 +18335,45,9.5,47,0.0 +18335,17,39,1,0.0 +18335,75,7.75,42,0.0 +18335,5,21.35,35,0.0 +18335,11,21,32,0.0 +18336,30,25.89,38,0.0 +18336,23,9,17,0.0 +18336,13,6,30,0.0 +18336,62,49.3,22,0.0 +18336,37,26,38,0.0 +18336,3,10,44,0.0 +18336,12,38,3,0.0 +18336,1,18,36,0.0 +18336,76,18,21,0.0 +18336,36,19,4,0.0 +18336,34,14,34,0.0 +18336,45,9.5,16,0.0 +18336,44,19.45,11,0.0 +18336,16,17.45,31,0.0 +18336,6,25,39,0.0 +18336,50,16.25,29,0.0 +18336,15,15.5,45,0.0 +18336,4,22,25,0.0 +18336,25,14,12,0.0 +18336,49,20,26,0.0 +18336,26,31.23,45,0.0 +18336,22,21,19,0.0 +18336,46,12,32,0.0 +18336,19,9.2,5,0.0 +18336,63,43.9,15,0.0 +18336,29,123.79,47,0.0 +18336,2,19,45,0.0 +18336,72,34.8,24,0.0 +18336,40,18.4,32,0.0 +18336,28,45.6,50,0.0 +18336,68,12.5,32,0.0 +18336,32,32,20,0.0 +18336,56,38,23,0.0 +18336,57,19.5,49,0.0 +18336,5,21.35,2,0.0 +18336,31,12.5,10,0.0 +18336,38,263.5,25,0.0 +18336,55,24,28,0.0 +18336,42,14,50,0.0 +18336,14,23.25,43,0.0 +18336,10,31,11,0.0 +18336,18,62.5,10,0.0 +18336,69,36,3,0.0 +18336,48,12.75,46,0.0 +18336,51,53,4,0.0 +18336,11,21,46,0.0 +18336,75,7.75,27,0.0 +18336,58,13.25,14,0.0 +18336,64,33.25,28,0.0 +18336,73,15,12,0.0 +18336,24,4.5,41,0.0 +18336,53,32.8,32,0.0 +18336,59,55,14,0.0 +18336,47,9.5,20,0.0 +18336,33,2.5,49,0.0 +18336,74,10,29,0.0 +18336,77,13,44,0.0 +18336,67,14,35,0.0 +18336,7,30,25,0.0 +18336,21,10,30,0.0 +18336,43,46,19,0.0 +18336,70,15,9,0.0 +18336,52,7,21,0.0 +18336,9,97,14,0.0 +18336,41,9.65,38,0.0 +18336,27,43.9,19,0.0 +18336,39,18,6,0.0 +18336,54,7.45,44,0.0 +18337,52,7,25,0.0 +18337,24,4.5,20,0.0 +18337,20,81,36,0.0 +18337,64,33.25,9,0.0 +18337,21,10,26,0.0 +18337,12,38,23,0.0 +18337,27,43.9,8,0.0 +18337,59,55,34,0.0 +18337,4,22,7,0.0 +18337,62,49.3,44,0.0 +18337,14,23.25,23,0.0 +18337,51,53,14,0.0 +18337,33,2.5,29,0.0 +18337,58,13.25,23,0.0 +18337,32,32,38,0.0 +18337,3,10,40,0.0 +18337,70,15,40,0.0 +18337,19,9.2,11,0.0 +18337,37,26,44,0.0 +18337,34,14,25,0.0 +18337,43,46,30,0.0 +18337,44,19.45,6,0.0 +18337,28,45.6,32,0.0 +18337,40,18.4,39,0.0 +18337,50,16.25,49,0.0 +18337,11,21,35,0.0 +18337,73,15,48,0.0 +18337,49,20,20,0.0 +18337,9,97,34,0.0 +18337,42,14,12,0.0 +18337,53,32.8,34,0.0 +18337,75,7.75,40,0.0 +18337,31,12.5,9,0.0 +18337,57,19.5,23,0.0 +18337,54,7.45,45,0.0 +18337,56,38,44,0.0 +18337,10,31,38,0.0 +18337,65,21.05,21,0.0 +18337,47,9.5,32,0.0 +18337,29,123.79,36,0.0 +18337,1,18,4,0.0 +18337,36,19,17,0.0 +18337,38,263.5,43,0.0 +18337,68,12.5,32,0.0 +18337,67,14,26,0.0 +18337,13,6,44,0.0 +18337,74,10,8,0.0 +18337,55,24,4,0.0 +18337,76,18,36,0.0 +18337,69,36,38,0.0 +18337,23,9,17,0.0 +18337,18,62.5,11,0.0 +18337,61,28.5,14,0.0 +18337,41,9.65,21,0.0 +18337,6,25,12,0.0 +18337,16,17.45,30,0.0 +18338,46,12,1,0.0 +18338,7,30,39,0.0 +18338,63,43.9,22,0.0 +18338,62,49.3,6,0.0 +18338,53,32.8,24,0.0 +18338,50,16.25,46,0.0 +18338,45,9.5,15,0.0 +18339,62,49.3,42,0.0 +18339,73,15,28,0.0 +18339,27,43.9,35,0.0 +18339,55,24,37,0.0 +18339,77,13,19,0.0 +18339,7,30,7,0.0 +18339,8,40,12,0.0 +18339,57,19.5,48,0.0 +18339,66,17,18,0.0 +18339,39,18,11,0.0 +18339,16,17.45,46,0.0 +18339,74,10,2,0.0 +18339,11,21,6,0.0 +18339,2,19,20,0.0 +18339,4,22,13,0.0 +18339,60,34,6,0.0 +18339,31,12.5,38,0.0 +18339,3,10,17,0.0 +18339,56,38,46,0.0 +18339,24,4.5,47,0.0 +18339,13,6,5,0.0 +18339,40,18.4,32,0.0 +18339,1,18,41,0.0 +18339,53,32.8,12,0.0 +18339,64,33.25,32,0.0 +18339,15,15.5,27,0.0 +18339,46,12,41,0.0 +18339,35,18,36,0.0 +18339,59,55,22,0.0 +18339,17,39,48,0.0 +18339,69,36,37,0.0 +18339,21,10,21,0.0 +18339,47,9.5,35,0.0 +18339,34,14,34,0.0 +18339,20,81,38,0.0 +18340,1,18,41,0.0 +18340,2,19,14,0.0 +18340,38,263.5,32,0.0 +18340,74,10,28,0.0 +18340,64,33.25,38,0.0 +18340,9,97,43,0.0 +18340,59,55,48,0.0 +18340,40,18.4,9,0.0 +18340,7,30,8,0.0 +18340,42,14,40,0.0 +18340,27,43.9,26,0.0 +18340,17,39,49,0.0 +18340,3,10,23,0.0 +18340,47,9.5,33,0.0 +18340,72,34.8,27,0.0 +18340,69,36,24,0.0 +18340,33,2.5,26,0.0 +18340,60,34,28,0.0 +18340,54,7.45,29,0.0 +18340,28,45.6,40,0.0 +18340,63,43.9,2,0.0 +18340,75,7.75,14,0.0 +18340,50,16.25,28,0.0 +18340,43,46,46,0.0 +18340,41,9.65,8,0.0 +18340,26,31.23,31,0.0 +18340,77,13,48,0.0 +18340,39,18,47,0.0 +18341,27,43.9,26,0.0 +18341,75,7.75,13,0.0 +18341,67,14,32,0.0 +18341,53,32.8,25,0.0 +18341,77,13,6,0.0 +18341,32,32,31,0.0 +18341,61,28.5,47,0.0 +18341,21,10,18,0.0 +18341,28,45.6,44,0.0 +18341,55,24,9,0.0 +18341,47,9.5,42,0.0 +18341,52,7,30,0.0 +18341,40,18.4,4,0.0 +18341,64,33.25,29,0.0 +18341,34,14,7,0.0 +18341,19,9.2,25,0.0 +18341,26,31.23,7,0.0 +18341,71,21.5,39,0.0 +18341,8,40,5,0.0 +18341,37,26,41,0.0 +18341,68,12.5,50,0.0 +18341,9,97,47,0.0 +18341,69,36,12,0.0 +18341,62,49.3,43,0.0 +18341,54,7.45,1,0.0 +18341,14,23.25,22,0.0 +18341,33,2.5,3,0.0 +18341,60,34,49,0.0 +18341,12,38,36,0.0 +18341,39,18,6,0.0 +18341,2,19,3,0.0 +18341,16,17.45,15,0.0 +18341,23,9,36,0.0 +18341,51,53,13,0.0 +18341,74,10,35,0.0 +18341,57,19.5,8,0.0 +18341,70,15,1,0.0 +18341,76,18,5,0.0 +18341,63,43.9,33,0.0 +18341,50,16.25,13,0.0 +18341,3,10,40,0.0 +18341,6,25,7,0.0 +18341,31,12.5,29,0.0 +18341,18,62.5,34,0.0 +18341,46,12,18,0.0 +18341,42,14,9,0.0 +18341,59,55,23,0.0 +18341,13,6,47,0.0 +18341,58,13.25,14,0.0 +18341,65,21.05,24,0.0 +18341,73,15,18,0.0 +18341,25,14,25,0.0 +18342,22,21,41,0.0 +18342,3,10,6,0.0 +18342,72,34.8,17,0.0 +18342,10,31,24,0.0 +18342,52,7,38,0.0 +18342,21,10,12,0.0 +18342,50,16.25,6,0.0 +18342,76,18,26,0.0 +18342,33,2.5,5,0.0 +18342,71,21.5,41,0.0 +18342,12,38,4,0.0 +18342,23,9,9,0.0 +18342,15,15.5,3,0.0 +18342,70,15,38,0.0 +18342,49,20,13,0.0 +18342,31,12.5,8,0.0 +18342,64,33.25,4,0.0 +18342,19,9.2,47,0.0 +18342,4,22,8,0.0 +18342,35,18,22,0.0 +18342,6,25,11,0.0 +18342,53,32.8,34,0.0 +18342,57,19.5,21,0.0 +18342,45,9.5,43,0.0 +18342,26,31.23,34,0.0 +18342,51,53,25,0.0 +18342,74,10,29,0.0 +18342,77,13,15,0.0 +18342,44,19.45,36,0.0 +18342,7,30,6,0.0 +18342,38,263.5,17,0.0 +18342,2,19,23,0.0 +18342,62,49.3,38,0.0 +18342,41,9.65,34,0.0 +18342,20,81,27,0.0 +18342,42,14,41,0.0 +18342,27,43.9,36,0.0 +18342,39,18,45,0.0 +18342,24,4.5,16,0.0 +18342,14,23.25,10,0.0 +18342,69,36,13,0.0 +18342,37,26,18,0.0 +18342,73,15,29,0.0 +18342,1,18,8,0.0 +18342,16,17.45,38,0.0 +18342,43,46,38,0.0 +18343,53,32.8,44,0.0 +18343,47,9.5,18,0.0 +18343,42,14,5,0.0 +18343,19,9.2,6,0.0 +18343,60,34,39,0.0 +18343,65,21.05,28,0.0 +18343,22,21,40,0.0 +18343,54,7.45,6,0.0 +18343,56,38,27,0.0 +18343,6,25,34,0.0 +18343,66,17,20,0.0 +18344,60,34,21,0.0 +18344,58,13.25,41,0.0 +18344,65,21.05,9,0.0 +18344,77,13,2,0.0 +18344,30,25.89,18,0.0 +18345,77,13,6,0.0 +18346,3,10,3,0.0 +18346,4,22,17,0.0 +18346,7,30,11,0.0 +18346,46,12,34,0.0 +18346,27,43.9,40,0.0 +18346,42,14,36,0.0 +18346,76,18,38,0.0 +18346,25,14,43,0.0 +18346,68,12.5,1,0.0 +18346,66,17,20,0.0 +18346,69,36,25,0.0 +18346,71,21.5,30,0.0 +18346,10,31,9,0.0 +18346,56,38,37,0.0 +18346,53,32.8,36,0.0 +18346,21,10,20,0.0 +18346,38,263.5,48,0.0 +18346,31,12.5,6,0.0 +18346,62,49.3,18,0.0 +18346,61,28.5,12,0.0 +18346,30,25.89,33,0.0 +18346,19,9.2,31,0.0 +18346,15,15.5,28,0.0 +18346,37,26,31,0.0 +18346,72,34.8,6,0.0 +18346,32,32,20,0.0 +18346,51,53,35,0.0 +18346,23,9,2,0.0 +18346,41,9.65,47,0.0 +18346,9,97,32,0.0 +18346,55,24,22,0.0 +18346,6,25,40,0.0 +18346,77,13,42,0.0 +18346,60,34,46,0.0 +18346,75,7.75,41,0.0 +18346,74,10,40,0.0 +18346,58,13.25,44,0.0 +18346,29,123.79,3,0.0 +18346,8,40,3,0.0 +18346,57,19.5,34,0.0 +18346,54,7.45,50,0.0 +18346,43,46,44,0.0 +18346,1,18,7,0.0 +18346,14,23.25,43,0.0 +18346,35,18,29,0.0 +18346,39,18,34,0.0 +18346,2,19,20,0.0 +18346,65,21.05,45,0.0 +18346,48,12.75,15,0.0 +18346,11,21,7,0.0 +18346,49,20,40,0.0 +18346,47,9.5,14,0.0 +18346,16,17.45,47,0.0 +18346,44,19.45,44,0.0 +18346,63,43.9,42,0.0 +18346,24,4.5,26,0.0 +18347,67,14,33,0.0 +18348,1,18,41,0.0 +18348,11,21,43,0.0 +18348,25,14,24,0.0 +18348,44,19.45,43,0.0 +18348,36,19,15,0.0 +18348,20,81,36,0.0 +18348,28,45.6,9,0.0 +18348,38,263.5,7,0.0 +18348,64,33.25,19,0.0 +18348,47,9.5,22,0.0 +18348,26,31.23,40,0.0 +18348,49,20,5,0.0 +18348,22,21,36,0.0 +18348,53,32.8,9,0.0 +18348,72,34.8,49,0.0 +18348,13,6,50,0.0 +18348,35,18,26,0.0 +18348,68,12.5,26,0.0 +18348,52,7,23,0.0 +18348,40,18.4,12,0.0 +18348,74,10,24,0.0 +18348,73,15,41,0.0 +18348,39,18,6,0.0 +18348,55,24,3,0.0 +18348,27,43.9,5,0.0 +18348,12,38,34,0.0 +18348,8,40,24,0.0 +18348,2,19,7,0.0 +18348,33,2.5,32,0.0 +18348,17,39,50,0.0 +18348,51,53,36,0.0 +18348,75,7.75,2,0.0 +18348,37,26,36,0.0 +18348,24,4.5,21,0.0 +18348,21,10,45,0.0 +18348,61,28.5,17,0.0 +18348,50,16.25,26,0.0 +18348,76,18,26,0.0 +18348,3,10,13,0.0 +18348,70,15,32,0.0 +18348,5,21.35,28,0.0 +18348,71,21.5,10,0.0 +18348,4,22,26,0.0 +18348,34,14,37,0.0 +18348,41,9.65,31,0.0 +18348,43,46,39,0.0 +18348,19,9.2,20,0.0 +18348,46,12,38,0.0 +18348,57,19.5,21,0.0 +18348,10,31,44,0.0 +18348,69,36,10,0.0 +18348,15,15.5,1,0.0 +18348,7,30,48,0.0 +18348,23,9,8,0.0 +18348,29,123.79,26,0.0 +18348,48,12.75,26,0.0 +18348,60,34,2,0.0 +18349,63,43.9,37,0.0 +18349,25,14,50,0.0 +18349,5,21.35,18,0.0 +18349,65,21.05,43,0.0 +18349,48,12.75,27,0.0 +18349,75,7.75,34,0.0 +18349,1,18,48,0.0 +18350,64,33.25,23,0.0 +18350,68,12.5,46,0.0 +18350,46,12,1,0.0 +18350,49,20,1,0.0 +18350,10,31,10,0.0 +18350,37,26,27,0.0 +18350,54,7.45,28,0.0 +18350,20,81,4,0.0 +18350,38,263.5,36,0.0 +18350,65,21.05,28,0.0 +18350,42,14,31,0.0 +18350,36,19,4,0.0 +18350,8,40,28,0.0 +18350,25,14,35,0.0 +18350,34,14,18,0.0 +18350,3,10,30,0.0 +18350,4,22,36,0.0 +18350,77,13,24,0.0 +18350,30,25.89,16,0.0 +18350,11,21,38,0.0 +18350,63,43.9,48,0.0 +18350,17,39,26,0.0 +18350,66,17,36,0.0 +18350,14,23.25,23,0.0 +18350,27,43.9,17,0.0 +18350,33,2.5,15,0.0 +18350,43,46,2,0.0 +18350,7,30,43,0.0 +18350,69,36,35,0.0 +18350,76,18,36,0.0 +18350,39,18,18,0.0 +18350,40,18.4,16,0.0 +18350,62,49.3,42,0.0 +18350,16,17.45,15,0.0 +18350,47,9.5,23,0.0 +18351,18,62.5,45,0.0 +18351,26,31.23,46,0.0 +18351,67,14,31,0.0 +18351,31,12.5,22,0.0 +18351,69,36,16,0.0 +18351,53,32.8,34,0.0 +18351,3,10,39,0.0 +18351,77,13,33,0.0 +18351,15,15.5,39,0.0 +18351,16,17.45,27,0.0 +18351,57,19.5,31,0.0 +18351,51,53,2,0.0 +18351,56,38,22,0.0 +18351,10,31,19,0.0 +18351,7,30,21,0.0 +18351,39,18,46,0.0 +18351,13,6,21,0.0 +18351,1,18,9,0.0 +18351,32,32,12,0.0 +18351,37,26,16,0.0 +18351,59,55,17,0.0 +18351,14,23.25,2,0.0 +18351,62,49.3,40,0.0 +18351,23,9,15,0.0 +18351,47,9.5,29,0.0 +18351,58,13.25,11,0.0 +18351,71,21.5,44,0.0 +18351,22,21,33,0.0 +18351,27,43.9,43,0.0 +18351,5,21.35,20,0.0 +18351,8,40,34,0.0 +18351,25,14,30,0.0 +18351,76,18,41,0.0 +18351,41,9.65,23,0.0 +18351,65,21.05,34,0.0 +18351,42,14,24,0.0 +18351,49,20,24,0.0 +18351,43,46,9,0.0 +18351,46,12,48,0.0 +18351,61,28.5,6,0.0 +18352,30,25.89,22,0.0 +18352,71,21.5,8,0.0 +18352,46,12,34,0.0 +18352,66,17,27,0.0 +18352,13,6,9,0.0 +18352,9,97,35,0.0 +18352,11,21,24,0.0 +18352,20,81,47,0.0 +18352,63,43.9,35,0.0 +18352,22,21,32,0.0 +18352,3,10,50,0.0 +18352,42,14,39,0.0 +18352,32,32,32,0.0 +18352,29,123.79,32,0.0 +18352,16,17.45,32,0.0 +18352,6,25,43,0.0 +18352,44,19.45,26,0.0 +18352,18,62.5,28,0.0 +18352,35,18,4,0.0 +18352,24,4.5,23,0.0 +18352,25,14,15,0.0 +18352,19,9.2,29,0.0 +18352,34,14,21,0.0 +18352,14,23.25,33,0.0 +18352,48,12.75,34,0.0 +18352,41,9.65,4,0.0 +18352,62,49.3,34,0.0 +18352,76,18,18,0.0 +18352,12,38,12,0.0 +18352,10,31,28,0.0 +18352,26,31.23,14,0.0 +18352,31,12.5,44,0.0 +18352,1,18,33,0.0 +18352,50,16.25,13,0.0 +18352,17,39,6,0.0 +18352,39,18,36,0.0 +18352,67,14,36,0.0 +18352,70,15,1,0.0 +18352,52,7,32,0.0 +18352,75,7.75,46,0.0 +18352,2,19,39,0.0 +18352,65,21.05,27,0.0 +18352,73,15,20,0.0 +18352,69,36,9,0.0 +18353,34,14,39,0.0 +18353,56,38,42,0.0 +18353,27,43.9,44,0.0 +18353,73,15,27,0.0 +18353,5,21.35,29,0.0 +18353,29,123.79,9,0.0 +18353,61,28.5,18,0.0 +18353,67,14,36,0.0 +18353,12,38,34,0.0 +18353,59,55,25,0.0 +18353,22,21,32,0.0 +18353,8,40,22,0.0 +18353,60,34,31,0.0 +18353,55,24,47,0.0 +18353,44,19.45,13,0.0 +18353,72,34.8,45,0.0 +18353,37,26,43,0.0 +18353,58,13.25,21,0.0 +18353,20,81,9,0.0 +18353,3,10,40,0.0 +18353,46,12,41,0.0 +18353,16,17.45,19,0.0 +18353,49,20,23,0.0 +18353,36,19,9,0.0 +18353,24,4.5,49,0.0 +18353,38,263.5,4,0.0 +18353,69,36,4,0.0 +18353,57,19.5,17,0.0 +18353,71,21.5,15,0.0 +18353,62,49.3,34,0.0 +18353,65,21.05,7,0.0 +18353,31,12.5,48,0.0 +18353,15,15.5,35,0.0 +18353,18,62.5,34,0.0 +18353,19,9.2,3,0.0 +18353,48,12.75,7,0.0 +18353,53,32.8,30,0.0 +18353,2,19,38,0.0 +18353,28,45.6,19,0.0 +18353,50,16.25,2,0.0 +18353,52,7,43,0.0 +18353,32,32,24,0.0 +18353,68,12.5,5,0.0 +18353,45,9.5,46,0.0 +18353,11,21,45,0.0 +18353,76,18,50,0.0 +18353,40,18.4,22,0.0 +18354,33,2.5,19,0.0 +18354,34,14,41,0.0 +18354,46,12,22,0.0 +18354,48,12.75,11,0.0 +18354,5,21.35,16,0.0 +18354,62,49.3,32,0.0 +18354,47,9.5,44,0.0 +18354,31,12.5,43,0.0 +18354,70,15,33,0.0 +18354,23,9,17,0.0 +18354,29,123.79,24,0.0 +18354,43,46,33,0.0 +18354,22,21,37,0.0 +18354,4,22,17,0.0 +18354,55,24,1,0.0 +18354,14,23.25,14,0.0 +18354,71,21.5,37,0.0 +18354,17,39,14,0.0 +18354,27,43.9,14,0.0 +18354,57,19.5,1,0.0 +18354,50,16.25,18,0.0 +18354,66,17,4,0.0 +18354,76,18,29,0.0 +18354,42,14,22,0.0 +18354,49,20,28,0.0 +18354,54,7.45,5,0.0 +18354,1,18,20,0.0 +18354,21,10,34,0.0 +18354,63,43.9,31,0.0 +18354,68,12.5,19,0.0 +18354,61,28.5,46,0.0 +18354,28,45.6,19,0.0 +18354,64,33.25,22,0.0 +18354,25,14,3,0.0 +18354,35,18,1,0.0 +18354,67,14,41,0.0 +18354,41,9.65,25,0.0 +18354,26,31.23,15,0.0 +18354,2,19,31,0.0 +18354,73,15,46,0.0 +18354,36,19,3,0.0 +18354,8,40,19,0.0 +18354,45,9.5,10,0.0 +18354,60,34,2,0.0 +18354,53,32.8,10,0.0 +18354,44,19.45,10,0.0 +18354,58,13.25,39,0.0 +18354,19,9.2,11,0.0 +18354,39,18,17,0.0 +18354,24,4.5,43,0.0 +18355,41,9.65,10,0.0 +18355,8,40,5,0.0 +18355,2,19,30,0.0 +18355,67,14,43,0.0 +18356,41,9.65,27,0.0 +18356,73,15,8,0.0 +18356,46,12,39,0.0 +18356,40,18.4,3,0.0 +18356,13,6,36,0.0 +18356,57,19.5,35,0.0 +18356,68,12.5,26,0.0 +18356,30,25.89,49,0.0 +18356,20,81,35,0.0 +18356,74,10,48,0.0 +18356,42,14,19,0.0 +18356,9,97,6,0.0 +18356,26,31.23,36,0.0 +18356,5,21.35,12,0.0 +18356,1,18,2,0.0 +18356,28,45.6,24,0.0 +18356,25,14,19,0.0 +18356,47,9.5,19,0.0 +18356,63,43.9,4,0.0 +18356,69,36,23,0.0 +18356,72,34.8,3,0.0 +18356,45,9.5,31,0.0 +18356,75,7.75,29,0.0 +18356,59,55,20,0.0 +18356,50,16.25,44,0.0 +18356,52,7,23,0.0 +18356,71,21.5,4,0.0 +18356,64,33.25,25,0.0 +18356,76,18,37,0.0 +18356,56,38,22,0.0 +18356,48,12.75,11,0.0 +18356,17,39,33,0.0 +18356,31,12.5,37,0.0 +18356,62,49.3,43,0.0 +18356,67,14,2,0.0 +18356,54,7.45,43,0.0 +18356,32,32,47,0.0 +18356,8,40,40,0.0 +18356,77,13,8,0.0 +18357,3,10,1,0.0 +18357,73,15,22,0.0 +18357,57,19.5,24,0.0 +18357,12,38,12,0.0 +18357,56,38,27,0.0 +18357,64,33.25,14,0.0 +18357,63,43.9,12,0.0 +18357,77,13,15,0.0 +18357,16,17.45,15,0.0 +18357,54,7.45,25,0.0 +18357,40,18.4,15,0.0 +18357,38,263.5,9,0.0 +18357,23,9,48,0.0 +18357,5,21.35,7,0.0 +18357,24,4.5,16,0.0 +18357,49,20,46,0.0 +18357,15,15.5,4,0.0 +18357,41,9.65,12,0.0 +18357,42,14,12,0.0 +18357,4,22,17,0.0 +18357,58,13.25,36,0.0 +18357,7,30,14,0.0 +18357,17,39,28,0.0 +18357,34,14,30,0.0 +18357,55,24,50,0.0 +18357,68,12.5,38,0.0 +18357,59,55,29,0.0 +18357,11,21,30,0.0 +18357,35,18,48,0.0 +18357,74,10,1,0.0 +18357,61,28.5,43,0.0 +18357,75,7.75,12,0.0 +18357,44,19.45,6,0.0 +18358,1,18,27,0.0 +18358,29,123.79,20,0.0 +18358,13,6,5,0.0 +18358,52,7,32,0.0 +18358,72,34.8,9,0.0 +18358,40,18.4,26,0.0 +18358,18,62.5,26,0.0 +18358,71,21.5,29,0.0 +18358,16,17.45,35,0.0 +18358,9,97,36,0.0 +18358,44,19.45,48,0.0 +18358,70,15,46,0.0 +18358,51,53,24,0.0 +18358,41,9.65,25,0.0 +18358,38,263.5,16,0.0 +18358,19,9.2,34,0.0 +18358,35,18,26,0.0 +18358,25,14,40,0.0 +18358,5,21.35,32,0.0 +18358,17,39,22,0.0 +18358,46,12,15,0.0 +18358,30,25.89,37,0.0 +18358,49,20,28,0.0 +18358,10,31,48,0.0 +18358,4,22,42,0.0 +18358,23,9,50,0.0 +18358,68,12.5,48,0.0 +18358,63,43.9,4,0.0 +18358,67,14,7,0.0 +18358,66,17,21,0.0 +18358,36,19,46,0.0 +18358,57,19.5,48,0.0 +18358,48,12.75,49,0.0 +18358,77,13,32,0.0 +18358,21,10,41,0.0 +18358,22,21,50,0.0 +18358,54,7.45,45,0.0 +18358,69,36,45,0.0 +18358,37,26,26,0.0 +18358,75,7.75,39,0.0 +18358,31,12.5,23,0.0 +18358,12,38,17,0.0 +18358,64,33.25,15,0.0 +18358,60,34,14,0.0 +18358,73,15,3,0.0 +18358,27,43.9,7,0.0 +18358,28,45.6,18,0.0 +18358,3,10,26,0.0 +18358,33,2.5,36,0.0 +18358,14,23.25,45,0.0 +18358,39,18,3,0.0 +18358,50,16.25,19,0.0 +18358,76,18,25,0.0 +18358,8,40,40,0.0 +18358,15,15.5,22,0.0 +18358,53,32.8,46,0.0 +18358,59,55,24,0.0 +18358,20,81,38,0.0 +18358,45,9.5,8,0.0 +18358,74,10,39,0.0 +18358,56,38,5,0.0 +18358,42,14,44,0.0 +18358,2,19,26,0.0 +18358,55,24,45,0.0 +18358,24,4.5,4,0.0 +18358,43,46,8,0.0 +18358,7,30,16,0.0 +18359,49,20,44,0.0 +18359,8,40,48,0.0 +18359,20,81,35,0.0 +18359,3,10,31,0.0 +18359,24,4.5,8,0.0 +18359,46,12,29,0.0 +18359,29,123.79,31,0.0 +18359,2,19,32,0.0 +18360,17,39,12,0.0 +18360,60,34,28,0.0 +18360,21,10,39,0.0 +18360,57,19.5,49,0.0 +18360,37,26,26,0.0 +18360,70,15,7,0.0 +18360,45,9.5,49,0.0 +18360,34,14,8,0.0 +18360,47,9.5,24,0.0 +18360,28,45.6,12,0.0 +18360,27,43.9,40,0.0 +18360,65,21.05,13,0.0 +18360,77,13,2,0.0 +18360,41,9.65,2,0.0 +18360,58,13.25,18,0.0 +18360,11,21,44,0.0 +18360,53,32.8,13,0.0 +18360,4,22,10,0.0 +18360,5,21.35,33,0.0 +18360,59,55,33,0.0 +18360,42,14,8,0.0 +18360,63,43.9,42,0.0 +18361,26,31.23,10,0.0 +18361,20,81,20,0.0 +18361,74,10,39,0.0 +18361,53,32.8,14,0.0 +18361,11,21,9,0.0 +18361,72,34.8,29,0.0 +18361,31,12.5,47,0.0 +18361,12,38,25,0.0 +18361,35,18,46,0.0 +18361,40,18.4,4,0.0 +18361,69,36,4,0.0 +18361,68,12.5,8,0.0 +18361,51,53,4,0.0 +18361,2,19,4,0.0 +18361,8,40,16,0.0 +18361,32,32,11,0.0 +18362,23,9,17,0.0 +18362,70,15,33,0.0 +18362,53,32.8,39,0.0 +18362,27,43.9,15,0.0 +18362,4,22,5,0.0 +18362,57,19.5,39,0.0 +18362,64,33.25,13,0.0 +18362,25,14,38,0.0 +18362,43,46,6,0.0 +18362,42,14,38,0.0 +18362,34,14,49,0.0 +18362,29,123.79,49,0.0 +18362,26,31.23,43,0.0 +18362,22,21,22,0.0 +18362,44,19.45,23,0.0 +18362,2,19,45,0.0 +18362,54,7.45,9,0.0 +18362,19,9.2,29,0.0 +18362,71,21.5,27,0.0 +18362,69,36,50,0.0 +18362,40,18.4,23,0.0 +18362,24,4.5,26,0.0 +18362,12,38,32,0.0 +18362,52,7,16,0.0 +18362,51,53,28,0.0 +18362,31,12.5,5,0.0 +18362,6,25,27,0.0 +18362,66,17,44,0.0 +18362,35,18,20,0.0 +18362,68,12.5,37,0.0 +18362,56,38,27,0.0 +18362,63,43.9,5,0.0 +18362,15,15.5,19,0.0 +18362,65,21.05,37,0.0 +18362,9,97,20,0.0 +18362,20,81,43,0.0 +18362,72,34.8,31,0.0 +18362,47,9.5,21,0.0 +18362,75,7.75,21,0.0 +18362,33,2.5,7,0.0 +18362,28,45.6,38,0.0 +18362,49,20,30,0.0 +18362,45,9.5,11,0.0 +18362,58,13.25,29,0.0 +18362,13,6,13,0.0 +18362,21,10,5,0.0 +18362,67,14,1,0.0 +18362,36,19,39,0.0 +18362,37,26,23,0.0 +18362,41,9.65,50,0.0 +18362,7,30,5,0.0 +18362,14,23.25,19,0.0 +18362,5,21.35,32,0.0 +18362,16,17.45,34,0.0 +18362,61,28.5,33,0.0 +18362,74,10,16,0.0 +18362,17,39,32,0.0 +18362,60,34,22,0.0 +18362,18,62.5,7,0.0 +18362,38,263.5,18,0.0 +18362,76,18,43,0.0 +18362,3,10,50,0.0 +18362,11,21,8,0.0 +18362,55,24,45,0.0 +18362,10,31,15,0.0 +18362,62,49.3,45,0.0 +18362,59,55,39,0.0 +18362,39,18,47,0.0 +18362,77,13,5,0.0 +18362,46,12,45,0.0 +18363,45,9.5,4,0.0 +18363,67,14,3,0.0 +18363,55,24,32,0.0 +18363,7,30,47,0.0 +18363,41,9.65,45,0.0 +18363,34,14,27,0.0 +18363,29,123.79,46,0.0 +18363,13,6,31,0.0 +18363,69,36,18,0.0 +18363,73,15,10,0.0 +18363,27,43.9,42,0.0 +18363,58,13.25,42,0.0 +18363,18,62.5,18,0.0 +18363,15,15.5,12,0.0 +18363,3,10,42,0.0 +18363,19,9.2,8,0.0 +18363,14,23.25,23,0.0 +18363,70,15,6,0.0 +18363,50,16.25,9,0.0 +18363,74,10,40,0.0 +18363,8,40,36,0.0 +18363,47,9.5,48,0.0 +18363,51,53,31,0.0 +18363,26,31.23,38,0.0 +18363,39,18,3,0.0 +18363,46,12,12,0.0 +18363,63,43.9,15,0.0 +18363,25,14,26,0.0 +18363,72,34.8,18,0.0 +18363,30,25.89,28,0.0 +18363,22,21,38,0.0 +18363,28,45.6,47,0.0 +18363,38,263.5,23,0.0 +18363,61,28.5,21,0.0 +18363,31,12.5,8,0.0 +18363,49,20,33,0.0 +18363,2,19,1,0.0 +18363,42,14,25,0.0 +18363,10,31,16,0.0 +18363,1,18,22,0.0 +18363,37,26,40,0.0 +18363,75,7.75,13,0.0 +18363,4,22,12,0.0 +18363,43,46,4,0.0 +18363,60,34,6,0.0 +18363,76,18,44,0.0 +18363,40,18.4,5,0.0 +18363,71,21.5,35,0.0 +18363,16,17.45,7,0.0 +18363,68,12.5,31,0.0 +18363,65,21.05,24,0.0 +18363,44,19.45,21,0.0 +18363,62,49.3,15,0.0 +18363,11,21,3,0.0 +18363,9,97,46,0.0 +18363,48,12.75,2,0.0 +18363,64,33.25,50,0.0 +18363,21,10,34,0.0 +18363,5,21.35,32,0.0 +18363,6,25,22,0.0 +18363,33,2.5,7,0.0 +18363,20,81,5,0.0 +18363,36,19,6,0.0 +18364,33,2.5,38,0.0 +18364,59,55,18,0.0 +18364,56,38,3,0.0 +18364,30,25.89,49,0.0 +18364,1,18,28,0.0 +18364,7,30,14,0.0 +18364,62,49.3,11,0.0 +18364,58,13.25,13,0.0 +18364,2,19,21,0.0 +18364,53,32.8,29,0.0 +18364,66,17,13,0.0 +18364,70,15,40,0.0 +18364,61,28.5,48,0.0 +18364,10,31,31,0.0 +18365,56,38,37,0.0 +18365,36,19,16,0.0 +18365,60,34,5,0.0 +18365,23,9,13,0.0 +18365,6,25,25,0.0 +18365,46,12,32,0.0 +18365,4,22,19,0.0 +18365,13,6,23,0.0 +18365,15,15.5,49,0.0 +18365,45,9.5,8,0.0 +18365,3,10,33,0.0 +18365,74,10,5,0.0 +18365,8,40,19,0.0 +18365,69,36,44,0.0 +18365,31,12.5,11,0.0 +18365,41,9.65,18,0.0 +18365,2,19,25,0.0 +18365,19,9.2,7,0.0 +18365,18,62.5,20,0.0 +18365,20,81,47,0.0 +18365,72,34.8,26,0.0 +18365,7,30,15,0.0 +18365,62,49.3,38,0.0 +18365,59,55,25,0.0 +18365,5,21.35,41,0.0 +18365,67,14,23,0.0 +18365,35,18,4,0.0 +18365,66,17,18,0.0 +18365,27,43.9,46,0.0 +18365,76,18,21,0.0 +18365,54,7.45,8,0.0 +18365,77,13,37,0.0 +18365,10,31,13,0.0 +18365,63,43.9,12,0.0 +18365,71,21.5,32,0.0 +18365,65,21.05,37,0.0 +18366,46,12,20,0.0 +18366,41,9.65,6,0.0 +18366,24,4.5,2,0.0 +18366,7,30,38,0.0 +18366,30,25.89,9,0.0 +18366,9,97,23,0.0 +18366,62,49.3,43,0.0 +18366,76,18,46,0.0 +18366,6,25,19,0.0 +18366,27,43.9,11,0.0 +18366,16,17.45,6,0.0 +18366,73,15,15,0.0 +18366,23,9,19,0.0 +18366,4,22,30,0.0 +18366,75,7.75,43,0.0 +18366,37,26,30,0.0 +18366,64,33.25,5,0.0 +18366,43,46,4,0.0 +18366,38,263.5,41,0.0 +18366,55,24,30,0.0 +18366,18,62.5,43,0.0 +18366,51,53,22,0.0 +18366,71,21.5,32,0.0 +18366,61,28.5,28,0.0 +18366,15,15.5,1,0.0 +18366,59,55,3,0.0 +18366,12,38,47,0.0 +18366,19,9.2,8,0.0 +18366,32,32,46,0.0 +18366,77,13,50,0.0 +18366,56,38,31,0.0 +18366,25,14,13,0.0 +18366,69,36,24,0.0 +18366,48,12.75,17,0.0 +18366,74,10,43,0.0 +18366,3,10,13,0.0 +18366,39,18,21,0.0 +18366,53,32.8,8,0.0 +18366,36,19,50,0.0 +18366,60,34,8,0.0 +18366,45,9.5,35,0.0 +18366,52,7,46,0.0 +18366,14,23.25,3,0.0 +18366,67,14,30,0.0 +18366,26,31.23,14,0.0 +18366,49,20,12,0.0 +18366,50,16.25,4,0.0 +18366,33,2.5,40,0.0 +18366,10,31,30,0.0 +18366,29,123.79,7,0.0 +18366,22,21,6,0.0 +18366,11,21,4,0.0 +18366,8,40,18,0.0 +18366,57,19.5,44,0.0 +18366,65,21.05,37,0.0 +18366,34,14,1,0.0 +18366,47,9.5,25,0.0 +18366,1,18,37,0.0 +18366,40,18.4,39,0.0 +18366,72,34.8,4,0.0 +18366,28,45.6,5,0.0 +18366,42,14,33,0.0 +18366,35,18,15,0.0 +18366,54,7.45,1,0.0 +18366,70,15,9,0.0 +18366,21,10,22,0.0 +18366,17,39,33,0.0 +18366,68,12.5,28,0.0 +18366,20,81,38,0.0 +18366,31,12.5,10,0.0 +18366,44,19.45,5,0.0 +18367,49,20,30,0.0 +18367,69,36,41,0.0 +18367,47,9.5,13,0.0 +18367,53,32.8,31,0.0 +18367,8,40,16,0.0 +18367,18,62.5,11,0.0 +18367,35,18,2,0.0 +18367,50,16.25,37,0.0 +18367,15,15.5,1,0.0 +18367,67,14,23,0.0 +18367,34,14,50,0.0 +18367,70,15,10,0.0 +18367,26,31.23,19,0.0 +18368,64,33.25,12,0.0 +18368,11,21,46,0.0 +18368,75,7.75,44,0.0 +18368,56,38,39,0.0 +18368,66,17,8,0.0 +18368,27,43.9,32,0.0 +18368,9,97,7,0.0 +18368,10,31,43,0.0 +18368,74,10,9,0.0 +18368,20,81,38,0.0 +18368,13,6,33,0.0 +18368,44,19.45,30,0.0 +18368,1,18,7,0.0 +18368,42,14,46,0.0 +18368,55,24,45,0.0 +18368,3,10,22,0.0 +18368,25,14,30,0.0 +18368,23,9,1,0.0 +18368,24,4.5,37,0.0 +18368,28,45.6,6,0.0 +18368,72,34.8,50,0.0 +18368,34,14,31,0.0 +18368,53,32.8,4,0.0 +18368,21,10,50,0.0 +18368,22,21,29,0.0 +18368,65,21.05,20,0.0 +18368,6,25,14,0.0 +18368,77,13,3,0.0 +18368,46,12,29,0.0 +18368,51,53,12,0.0 +18368,76,18,21,0.0 +18368,39,18,49,0.0 +18368,31,12.5,19,0.0 +18368,73,15,32,0.0 +18368,59,55,13,0.0 +18368,2,19,45,0.0 +18368,18,62.5,30,0.0 +18368,30,25.89,42,0.0 +18368,4,22,43,0.0 +18368,60,34,22,0.0 +18368,8,40,7,0.0 +18368,41,9.65,4,0.0 +18368,33,2.5,49,0.0 +18368,5,21.35,9,0.0 +18368,57,19.5,49,0.0 +18368,15,15.5,26,0.0 +18368,26,31.23,39,0.0 +18368,32,32,13,0.0 +18368,61,28.5,17,0.0 +18368,45,9.5,25,0.0 +18368,50,16.25,21,0.0 +18368,70,15,43,0.0 +18368,12,38,41,0.0 +18368,47,9.5,15,0.0 +18368,69,36,26,0.0 +18368,68,12.5,4,0.0 +18368,43,46,29,0.0 +18368,49,20,47,0.0 +18368,58,13.25,24,0.0 +18368,29,123.79,14,0.0 +18368,38,263.5,7,0.0 +18368,17,39,26,0.0 +18368,48,12.75,50,0.0 +18368,71,21.5,37,0.0 +18368,14,23.25,15,0.0 +18368,62,49.3,20,0.0 +18368,63,43.9,33,0.0 +18368,16,17.45,44,0.0 +18368,40,18.4,2,0.0 +18368,52,7,11,0.0 +18368,36,19,31,0.0 +18368,7,30,10,0.0 +18368,54,7.45,23,0.0 +18368,35,18,43,0.0 +18368,67,14,14,0.0 +18368,37,26,26,0.0 +18369,17,39,47,0.0 +18369,2,19,1,0.0 +18369,23,9,4,0.0 +18369,65,21.05,11,0.0 +18369,43,46,18,0.0 +18369,26,31.23,28,0.0 +18369,77,13,12,0.0 +18369,67,14,19,0.0 +18369,66,17,20,0.0 +18369,35,18,47,0.0 +18369,12,38,2,0.0 +18369,76,18,28,0.0 +18369,42,14,26,0.0 +18369,56,38,17,0.0 +18369,19,9.2,23,0.0 +18369,45,9.5,41,0.0 +18369,7,30,50,0.0 +18369,4,22,35,0.0 +18369,9,97,11,0.0 +18369,59,55,15,0.0 +18369,20,81,46,0.0 +18369,16,17.45,20,0.0 +18369,30,25.89,37,0.0 +18369,31,12.5,10,0.0 +18369,60,34,32,0.0 +18369,74,10,48,0.0 +18369,6,25,48,0.0 +18369,22,21,16,0.0 +18369,49,20,41,0.0 +18369,57,19.5,16,0.0 +18369,32,32,34,0.0 +18369,1,18,42,0.0 +18369,11,21,31,0.0 +18369,38,263.5,21,0.0 +18369,21,10,42,0.0 +18369,51,53,27,0.0 +18369,14,23.25,44,0.0 +18369,39,18,26,0.0 +18369,50,16.25,29,0.0 +18369,73,15,27,0.0 +18369,52,7,42,0.0 +18369,37,26,26,0.0 +18369,24,4.5,38,0.0 +18369,53,32.8,36,0.0 +18370,1,18,11,0.0 +18370,42,14,23,0.0 +18370,68,12.5,35,0.0 +18370,73,15,18,0.0 +18370,46,12,23,0.0 +18370,72,34.8,38,0.0 +18370,71,21.5,37,0.0 +18370,43,46,40,0.0 +18370,21,10,40,0.0 +18370,22,21,2,0.0 +18370,45,9.5,41,0.0 +18370,47,9.5,26,0.0 +18370,23,9,33,0.0 +18370,59,55,9,0.0 +18370,50,16.25,9,0.0 +18370,4,22,45,0.0 +18370,49,20,18,0.0 +18370,61,28.5,43,0.0 +18370,31,12.5,25,0.0 +18370,60,34,46,0.0 +18370,38,263.5,21,0.0 +18370,37,26,15,0.0 +18370,76,18,49,0.0 +18370,34,14,50,0.0 +18370,12,38,1,0.0 +18370,44,19.45,1,0.0 +18370,52,7,43,0.0 +18370,51,53,23,0.0 +18370,58,13.25,19,0.0 +18370,6,25,3,0.0 +18370,55,24,50,0.0 +18370,75,7.75,24,0.0 +18370,25,14,34,0.0 +18370,18,62.5,15,0.0 +18370,15,15.5,33,0.0 +18370,57,19.5,33,0.0 +18370,14,23.25,16,0.0 +18370,64,33.25,31,0.0 +18370,30,25.89,6,0.0 +18370,53,32.8,1,0.0 +18370,77,13,35,0.0 +18370,35,18,26,0.0 +18370,70,15,5,0.0 +18370,3,10,11,0.0 +18370,28,45.6,23,0.0 +18370,67,14,17,0.0 +18370,39,18,14,0.0 +18370,69,36,4,0.0 +18370,74,10,31,0.0 +18370,10,31,49,0.0 +18370,62,49.3,31,0.0 +18370,17,39,16,0.0 +18370,33,2.5,18,0.0 +18370,26,31.23,6,0.0 +18370,66,17,15,0.0 +18370,16,17.45,22,0.0 +18370,41,9.65,29,0.0 +18370,5,21.35,11,0.0 +18370,40,18.4,24,0.0 +18370,65,21.05,7,0.0 +18370,13,6,43,0.0 +18370,9,97,36,0.0 +18370,29,123.79,9,0.0 +18370,54,7.45,43,0.0 +18371,27,43.9,1,0.0 +18371,30,25.89,12,0.0 +18371,28,45.6,24,0.0 +18371,73,15,35,0.0 +18372,14,23.25,3,0.0 +18372,76,18,37,0.0 +18372,7,30,1,0.0 +18372,68,12.5,27,0.0 +18372,55,24,29,0.0 +18372,11,21,50,0.0 +18372,61,28.5,22,0.0 +18372,47,9.5,36,0.0 +18372,25,14,16,0.0 +18372,15,15.5,4,0.0 +18372,43,46,10,0.0 +18372,42,14,22,0.0 +18372,10,31,33,0.0 +18372,77,13,35,0.0 +18372,57,19.5,4,0.0 +18372,66,17,49,0.0 +18372,21,10,12,0.0 +18372,5,21.35,21,0.0 +18372,52,7,47,0.0 +18372,28,45.6,15,0.0 +18372,27,43.9,24,0.0 +18372,32,32,8,0.0 +18372,60,34,28,0.0 +18372,62,49.3,13,0.0 +18372,41,9.65,29,0.0 +18372,19,9.2,38,0.0 +18372,44,19.45,38,0.0 +18372,18,62.5,39,0.0 +18372,63,43.9,27,0.0 +18372,4,22,28,0.0 +18372,64,33.25,34,0.0 +18372,58,13.25,45,0.0 +18372,22,21,46,0.0 +18372,37,26,50,0.0 +18372,2,19,11,0.0 +18372,48,12.75,26,0.0 +18372,30,25.89,21,0.0 +18372,72,34.8,4,0.0 +18372,8,40,23,0.0 +18372,40,18.4,20,0.0 +18372,70,15,48,0.0 +18372,33,2.5,33,0.0 +18372,53,32.8,8,0.0 +18372,3,10,39,0.0 +18372,17,39,11,0.0 +18372,16,17.45,38,0.0 +18372,6,25,18,0.0 +18372,46,12,37,0.0 +18372,75,7.75,43,0.0 +18372,50,16.25,17,0.0 +18372,71,21.5,25,0.0 +18372,51,53,6,0.0 +18372,74,10,22,0.0 +18372,12,38,32,0.0 +18372,49,20,7,0.0 +18372,39,18,24,0.0 +18372,24,4.5,26,0.0 +18372,34,14,30,0.0 +18372,20,81,6,0.0 +18372,45,9.5,45,0.0 +18372,31,12.5,21,0.0 +18372,29,123.79,16,0.0 +18372,23,9,21,0.0 +18372,54,7.45,45,0.0 +18372,65,21.05,37,0.0 +18372,38,263.5,40,0.0 +18372,69,36,10,0.0 +18372,36,19,46,0.0 +18372,1,18,33,0.0 +18372,35,18,36,0.0 +18372,56,38,50,0.0 +18372,26,31.23,40,0.0 +18372,59,55,11,0.0 +18372,13,6,19,0.0 +18372,73,15,50,0.0 +18372,67,14,46,0.0 +18372,9,97,1,0.0 +18373,49,20,19,0.0 +18373,55,24,7,0.0 +18373,44,19.45,35,0.0 +18373,60,34,25,0.0 +18373,3,10,1,0.0 +18373,10,31,11,0.0 +18373,62,49.3,45,0.0 +18373,77,13,24,0.0 +18373,51,53,44,0.0 +18373,7,30,6,0.0 +18373,47,9.5,16,0.0 +18373,74,10,43,0.0 +18373,42,14,44,0.0 +18373,67,14,20,0.0 +18373,8,40,42,0.0 +18373,31,12.5,10,0.0 +18373,30,25.89,42,0.0 +18373,52,7,37,0.0 +18373,40,18.4,17,0.0 +18373,12,38,48,0.0 +18373,27,43.9,43,0.0 +18373,26,31.23,46,0.0 +18373,24,4.5,22,0.0 +18373,48,12.75,25,0.0 +18373,54,7.45,32,0.0 +18373,38,263.5,17,0.0 +18373,68,12.5,40,0.0 +18373,64,33.25,47,0.0 +18373,66,17,8,0.0 +18373,25,14,35,0.0 +18373,43,46,16,0.0 +18373,46,12,21,0.0 +18373,57,19.5,12,0.0 +18373,53,32.8,41,0.0 +18373,76,18,24,0.0 +18373,72,34.8,4,0.0 +18373,59,55,28,0.0 +18373,17,39,30,0.0 +18373,39,18,28,0.0 +18373,50,16.25,39,0.0 +18373,63,43.9,14,0.0 +18373,1,18,5,0.0 +18373,61,28.5,26,0.0 +18373,71,21.5,13,0.0 +18373,19,9.2,49,0.0 +18373,22,21,7,0.0 +18373,2,19,3,0.0 +18373,45,9.5,6,0.0 +18373,73,15,47,0.0 +18373,9,97,39,0.0 +18373,20,81,42,0.0 +18373,29,123.79,43,0.0 +18373,34,14,50,0.0 +18373,33,2.5,42,0.0 +18373,70,15,5,0.0 +18373,36,19,24,0.0 +18373,69,36,9,0.0 +18373,14,23.25,21,0.0 +18373,5,21.35,44,0.0 +18373,35,18,42,0.0 +18373,37,26,44,0.0 +18373,13,6,3,0.0 +18373,16,17.45,13,0.0 +18373,18,62.5,41,0.0 +18373,56,38,19,0.0 +18373,4,22,29,0.0 +18373,41,9.65,2,0.0 +18373,65,21.05,1,0.0 +18373,32,32,12,0.0 +18373,15,15.5,38,0.0 +18373,75,7.75,37,0.0 +18373,28,45.6,21,0.0 +18373,23,9,26,0.0 +18373,11,21,23,0.0 +18373,6,25,20,0.0 +18373,21,10,16,0.0 +18373,58,13.25,11,0.0 +18374,22,21,31,0.0 +18374,26,31.23,35,0.0 +18374,24,4.5,49,0.0 +18374,33,2.5,10,0.0 +18374,38,263.5,17,0.0 +18374,47,9.5,38,0.0 +18374,34,14,43,0.0 +18374,20,81,32,0.0 +18374,66,17,41,0.0 +18374,19,9.2,36,0.0 +18374,51,53,23,0.0 +18374,40,18.4,25,0.0 +18374,8,40,22,0.0 +18374,61,28.5,16,0.0 +18374,55,24,33,0.0 +18374,58,13.25,21,0.0 +18374,64,33.25,3,0.0 +18374,16,17.45,34,0.0 +18374,25,14,21,0.0 +18374,45,9.5,39,0.0 +18374,54,7.45,3,0.0 +18374,12,38,16,0.0 +18374,43,46,38,0.0 +18374,46,12,1,0.0 +18374,31,12.5,28,0.0 +18374,9,97,20,0.0 +18374,74,10,10,0.0 +18375,64,33.25,49,0.0 +18375,19,9.2,37,0.0 +18375,22,21,10,0.0 +18375,24,4.5,39,0.0 +18376,75,7.75,22,0.0 +18376,63,43.9,49,0.0 +18376,64,33.25,19,0.0 +18376,39,18,37,0.0 +18376,42,14,28,0.0 +18376,3,10,15,0.0 +18376,69,36,15,0.0 +18376,5,21.35,33,0.0 +18376,72,34.8,23,0.0 +18376,38,263.5,19,0.0 +18376,12,38,17,0.0 +18377,41,9.65,48,0.0 +18377,72,34.8,33,0.0 +18377,53,32.8,18,0.0 +18377,30,25.89,44,0.0 +18377,49,20,25,0.0 +18377,9,97,8,0.0 +18378,44,19.45,21,0.0 +18378,71,21.5,36,0.0 +18378,34,14,27,0.0 +18378,5,21.35,23,0.0 +18378,57,19.5,20,0.0 +18378,25,14,15,0.0 +18378,32,32,25,0.0 +18378,12,38,24,0.0 +18378,74,10,24,0.0 +18378,2,19,46,0.0 +18378,42,14,39,0.0 +18378,9,97,17,0.0 +18378,13,6,34,0.0 +18378,24,4.5,42,0.0 +18378,66,17,29,0.0 +18378,56,38,1,0.0 +18378,77,13,36,0.0 +18378,33,2.5,43,0.0 +18378,26,31.23,25,0.0 +18378,17,39,44,0.0 +18378,39,18,7,0.0 +18378,29,123.79,33,0.0 +18378,50,16.25,43,0.0 +18378,21,10,29,0.0 +18378,67,14,17,0.0 +18378,23,9,12,0.0 +18378,76,18,24,0.0 +18378,60,34,14,0.0 +18378,14,23.25,5,0.0 +18378,54,7.45,21,0.0 +18378,8,40,14,0.0 +18378,10,31,17,0.0 +18378,52,7,37,0.0 +18378,58,13.25,46,0.0 +18378,72,34.8,29,0.0 +18378,48,12.75,18,0.0 +18378,35,18,40,0.0 +18378,28,45.6,21,0.0 +18378,46,12,41,0.0 +18378,19,9.2,50,0.0 +18378,45,9.5,9,0.0 +18378,22,21,23,0.0 +18378,63,43.9,15,0.0 +18378,37,26,50,0.0 +18378,43,46,49,0.0 +18378,16,17.45,6,0.0 +18378,53,32.8,35,0.0 +18378,11,21,10,0.0 +18378,73,15,50,0.0 +18378,40,18.4,43,0.0 +18378,7,30,30,0.0 +18378,4,22,46,0.0 +18378,36,19,4,0.0 +18378,3,10,34,0.0 +18378,20,81,43,0.0 +18378,15,15.5,5,0.0 +18378,62,49.3,33,0.0 +18378,64,33.25,33,0.0 +18378,55,24,24,0.0 +18378,1,18,40,0.0 +18378,38,263.5,42,0.0 +18379,44,19.45,13,0.0 +18379,39,18,23,0.0 +18379,41,9.65,5,0.0 +18379,4,22,10,0.0 +18379,9,97,4,0.0 +18380,61,28.5,43,0.0 +18380,7,30,38,0.0 +18380,25,14,23,0.0 +18380,62,49.3,11,0.0 +18380,64,33.25,16,0.0 +18380,27,43.9,15,0.0 +18380,22,21,31,0.0 +18380,75,7.75,19,0.0 +18380,63,43.9,12,0.0 +18380,9,97,6,0.0 +18380,11,21,13,0.0 +18380,60,34,45,0.0 +18380,15,15.5,2,0.0 +18380,56,38,43,0.0 +18380,29,123.79,39,0.0 +18380,12,38,50,0.0 +18380,8,40,1,0.0 +18380,32,32,41,0.0 +18380,38,263.5,47,0.0 +18380,23,9,21,0.0 +18380,72,34.8,34,0.0 +18380,46,12,37,0.0 +18380,31,12.5,14,0.0 +18380,58,13.25,8,0.0 +18380,39,18,10,0.0 +18380,5,21.35,48,0.0 +18380,28,45.6,36,0.0 +18380,51,53,31,0.0 +18380,18,62.5,32,0.0 +18380,17,39,14,0.0 +18380,50,16.25,21,0.0 +18380,19,9.2,46,0.0 +18380,14,23.25,36,0.0 +18380,71,21.5,30,0.0 +18380,55,24,9,0.0 +18380,30,25.89,25,0.0 +18380,1,18,19,0.0 +18380,54,7.45,12,0.0 +18380,65,21.05,37,0.0 +18381,18,62.5,6,0.0 +18381,15,15.5,9,0.0 +18381,31,12.5,35,0.0 +18381,65,21.05,46,0.0 +18381,22,21,17,0.0 +18381,43,46,10,0.0 +18381,9,97,30,0.0 +18381,67,14,36,0.0 +18381,66,17,39,0.0 +18381,69,36,13,0.0 +18381,30,25.89,42,0.0 +18381,75,7.75,11,0.0 +18381,72,34.8,44,0.0 +18381,73,15,14,0.0 +18381,5,21.35,27,0.0 +18381,53,32.8,21,0.0 +18381,19,9.2,14,0.0 +18381,3,10,1,0.0 +18381,20,81,48,0.0 +18381,70,15,46,0.0 +18381,27,43.9,42,0.0 +18381,4,22,41,0.0 +18381,36,19,24,0.0 +18381,33,2.5,39,0.0 +18381,77,13,22,0.0 +18381,12,38,13,0.0 +18381,32,32,36,0.0 +18382,7,30,19,0.0 +18382,58,13.25,26,0.0 +18382,41,9.65,10,0.0 +18382,19,9.2,47,0.0 +18382,12,38,8,0.0 +18382,60,34,43,0.0 +18382,16,17.45,36,0.0 +18382,74,10,45,0.0 +18382,69,36,45,0.0 +18382,73,15,8,0.0 +18382,33,2.5,38,0.0 +18382,21,10,37,0.0 +18382,44,19.45,27,0.0 +18382,22,21,47,0.0 +18382,37,26,1,0.0 +18382,56,38,2,0.0 +18382,30,25.89,29,0.0 +18382,40,18.4,32,0.0 +18382,53,32.8,22,0.0 +18382,43,46,20,0.0 +18382,32,32,22,0.0 +18382,67,14,49,0.0 +18382,4,22,17,0.0 +18382,64,33.25,41,0.0 +18382,75,7.75,48,0.0 +18382,61,28.5,21,0.0 +18382,39,18,24,0.0 +18382,3,10,43,0.0 +18382,5,21.35,21,0.0 +18382,35,18,33,0.0 +18382,6,25,10,0.0 +18382,34,14,48,0.0 +18382,57,19.5,36,0.0 +18382,51,53,41,0.0 +18382,29,123.79,34,0.0 +18382,20,81,35,0.0 +18382,45,9.5,9,0.0 +18382,49,20,39,0.0 +18382,52,7,28,0.0 +18382,50,16.25,48,0.0 +18382,9,97,49,0.0 +18382,42,14,27,0.0 +18382,77,13,15,0.0 +18382,23,9,45,0.0 +18382,11,21,28,0.0 +18382,55,24,9,0.0 +18382,15,15.5,36,0.0 +18382,47,9.5,37,0.0 +18382,72,34.8,3,0.0 +18382,13,6,42,0.0 +18382,18,62.5,36,0.0 +18382,62,49.3,25,0.0 +18382,68,12.5,15,0.0 +18383,7,30,44,0.0 +18383,2,19,47,0.0 +18383,76,18,45,0.0 +18383,75,7.75,34,0.0 +18383,49,20,9,0.0 +18383,3,10,14,0.0 +18383,72,34.8,29,0.0 +18383,21,10,26,0.0 +18383,23,9,49,0.0 +18383,36,19,49,0.0 +18383,6,25,24,0.0 +18383,73,15,26,0.0 +18383,14,23.25,15,0.0 +18383,65,21.05,33,0.0 +18383,10,31,17,0.0 +18383,11,21,49,0.0 +18383,61,28.5,14,0.0 +18383,30,25.89,32,0.0 +18383,41,9.65,45,0.0 +18383,48,12.75,12,0.0 +18383,40,18.4,4,0.0 +18383,60,34,44,0.0 +18383,64,33.25,26,0.0 +18383,55,24,36,0.0 +18383,20,81,31,0.0 +18383,62,49.3,15,0.0 +18383,70,15,14,0.0 +18383,59,55,48,0.0 +18383,15,15.5,32,0.0 +18383,26,31.23,2,0.0 +18383,47,9.5,11,0.0 +18383,66,17,49,0.0 +18383,56,38,1,0.0 +18383,58,13.25,40,0.0 +18383,39,18,14,0.0 +18384,1,18,4,0.0 +18384,59,55,48,0.0 +18384,66,17,24,0.0 +18384,21,10,22,0.0 +18384,72,34.8,12,0.0 +18384,73,15,27,0.0 +18384,52,7,29,0.0 +18384,28,45.6,48,0.0 +18384,42,14,9,0.0 +18384,2,19,33,0.0 +18384,60,34,34,0.0 +18384,9,97,32,0.0 +18385,44,19.45,20,0.0 +18385,70,15,6,0.0 +18385,42,14,16,0.0 +18385,52,7,1,0.0 +18385,77,13,23,0.0 +18385,51,53,36,0.0 +18385,10,31,15,0.0 +18385,62,49.3,16,0.0 +18385,48,12.75,27,0.0 +18385,16,17.45,35,0.0 +18385,54,7.45,8,0.0 +18385,8,40,26,0.0 +18385,57,19.5,9,0.0 +18385,56,38,19,0.0 +18385,60,34,33,0.0 +18385,33,2.5,4,0.0 +18385,6,25,9,0.0 +18385,32,32,40,0.0 +18385,58,13.25,32,0.0 +18385,38,263.5,48,0.0 +18385,67,14,42,0.0 +18385,49,20,43,0.0 +18385,69,36,8,0.0 +18385,50,16.25,11,0.0 +18385,35,18,31,0.0 +18385,11,21,28,0.0 +18385,73,15,21,0.0 +18385,12,38,15,0.0 +18385,17,39,42,0.0 +18385,5,21.35,27,0.0 +18385,46,12,29,0.0 +18385,36,19,12,0.0 +18385,27,43.9,44,0.0 +18385,18,62.5,17,0.0 +18385,20,81,20,0.0 +18385,22,21,39,0.0 +18385,24,4.5,5,0.0 +18385,13,6,26,0.0 +18385,2,19,21,0.0 +18385,21,10,7,0.0 +18385,59,55,17,0.0 +18385,4,22,22,0.0 +18385,41,9.65,26,0.0 +18385,72,34.8,34,0.0 +18385,37,26,11,0.0 +18385,30,25.89,48,0.0 +18385,26,31.23,6,0.0 +18385,7,30,21,0.0 +18385,3,10,2,0.0 +18385,66,17,1,0.0 +18385,29,123.79,11,0.0 +18385,71,21.5,4,0.0 +18385,40,18.4,25,0.0 +18385,53,32.8,26,0.0 +18385,64,33.25,15,0.0 +18385,45,9.5,32,0.0 +18385,23,9,37,0.0 +18385,43,46,18,0.0 +18385,9,97,20,0.0 +18385,65,21.05,17,0.0 +18385,34,14,43,0.0 +18385,14,23.25,23,0.0 +18385,31,12.5,46,0.0 +18385,25,14,34,0.0 +18385,1,18,26,0.0 +18385,19,9.2,29,0.0 +18385,75,7.75,26,0.0 +18385,61,28.5,2,0.0 +18385,76,18,23,0.0 +18385,47,9.5,34,0.0 +18385,15,15.5,22,0.0 +18385,28,45.6,24,0.0 +18385,39,18,26,0.0 +18385,63,43.9,46,0.0 +18385,55,24,42,0.0 +18385,68,12.5,40,0.0 +18385,74,10,8,0.0 +18386,57,19.5,2,0.0 +18386,67,14,24,0.0 +18386,27,43.9,12,0.0 +18386,34,14,3,0.0 +18386,32,32,41,0.0 +18386,56,38,22,0.0 +18386,72,34.8,21,0.0 +18386,31,12.5,6,0.0 +18386,64,33.25,28,0.0 +18386,26,31.23,29,0.0 +18386,21,10,39,0.0 +18386,30,25.89,32,0.0 +18386,6,25,4,0.0 +18386,59,55,6,0.0 +18386,71,21.5,10,0.0 +18386,49,20,43,0.0 +18386,66,17,29,0.0 +18386,3,10,9,0.0 +18386,36,19,32,0.0 +18387,67,14,22,0.0 +18387,65,21.05,14,0.0 +18387,57,19.5,40,0.0 +18387,29,123.79,7,0.0 +18387,54,7.45,17,0.0 +18387,56,38,2,0.0 +18387,20,81,45,0.0 +18387,11,21,47,0.0 +18387,40,18.4,28,0.0 +18387,44,19.45,22,0.0 +18387,37,26,21,0.0 +18387,8,40,25,0.0 +18387,59,55,19,0.0 +18387,75,7.75,3,0.0 +18387,36,19,8,0.0 +18387,27,43.9,45,0.0 +18387,32,32,45,0.0 +18387,7,30,22,0.0 +18387,49,20,41,0.0 +18387,48,12.75,24,0.0 +18387,15,15.5,18,0.0 +18387,3,10,12,0.0 +18387,28,45.6,42,0.0 +18387,72,34.8,40,0.0 +18388,8,40,40,0.0 +18388,32,32,3,0.0 +18388,1,18,2,0.0 +18388,45,9.5,22,0.0 +18388,70,15,41,0.0 +18388,9,97,11,0.0 +18388,34,14,37,0.0 +18388,43,46,22,0.0 +18388,15,15.5,24,0.0 +18389,75,7.75,3,0.0 +18389,40,18.4,29,0.0 +18389,24,4.5,42,0.0 +18389,52,7,30,0.0 +18389,21,10,14,0.0 +18389,68,12.5,15,0.0 +18389,16,17.45,7,0.0 +18389,71,21.5,8,0.0 +18389,56,38,45,0.0 +18389,37,26,4,0.0 +18389,58,13.25,31,0.0 +18389,19,9.2,12,0.0 +18389,64,33.25,22,0.0 +18389,15,15.5,23,0.0 +18389,10,31,24,0.0 +18389,2,19,12,0.0 +18389,31,12.5,19,0.0 +18389,54,7.45,35,0.0 +18389,55,24,35,0.0 +18389,14,23.25,19,0.0 +18389,50,16.25,15,0.0 +18389,25,14,33,0.0 +18389,48,12.75,49,0.0 +18389,17,39,36,0.0 +18389,73,15,38,0.0 +18389,69,36,8,0.0 +18389,74,10,36,0.0 +18389,34,14,18,0.0 +18389,12,38,7,0.0 +18389,11,21,18,0.0 +18389,43,46,42,0.0 +18389,53,32.8,10,0.0 +18389,60,34,4,0.0 +18389,33,2.5,47,0.0 +18389,9,97,37,0.0 +18389,38,263.5,38,0.0 +18389,39,18,11,0.0 +18389,72,34.8,14,0.0 +18389,44,19.45,26,0.0 +18389,59,55,35,0.0 +18389,5,21.35,20,0.0 +18389,29,123.79,40,0.0 +18389,51,53,41,0.0 +18389,41,9.65,25,0.0 +18389,32,32,18,0.0 +18389,57,19.5,17,0.0 +18389,61,28.5,19,0.0 +18390,4,22,15,0.0 +18390,26,31.23,32,0.0 +18390,34,14,14,0.0 +18390,60,34,50,0.0 +18390,42,14,6,0.0 +18390,32,32,40,0.0 +18390,45,9.5,18,0.0 +18390,43,46,33,0.0 +18390,58,13.25,1,0.0 +18390,39,18,38,0.0 +18390,51,53,7,0.0 +18390,49,20,37,0.0 +18390,33,2.5,31,0.0 +18390,50,16.25,49,0.0 +18390,37,26,9,0.0 +18390,36,19,24,0.0 +18390,75,7.75,10,0.0 +18390,72,34.8,48,0.0 +18390,64,33.25,4,0.0 +18390,20,81,25,0.0 +18390,31,12.5,8,0.0 +18390,54,7.45,29,0.0 +18390,44,19.45,38,0.0 +18390,30,25.89,31,0.0 +18390,59,55,28,0.0 +18390,61,28.5,38,0.0 +18390,52,7,40,0.0 +18390,67,14,4,0.0 +18390,71,21.5,27,0.0 +18390,25,14,46,0.0 +18390,66,17,16,0.0 +18390,11,21,40,0.0 +18390,13,6,2,0.0 +18390,46,12,33,0.0 +18390,62,49.3,42,0.0 +18390,68,12.5,10,0.0 +18390,73,15,21,0.0 +18390,35,18,13,0.0 +18390,38,263.5,38,0.0 +18390,6,25,15,0.0 +18390,65,21.05,22,0.0 +18390,48,12.75,23,0.0 +18390,10,31,41,0.0 +18390,57,19.5,43,0.0 +18390,8,40,37,0.0 +18390,22,21,33,0.0 +18390,47,9.5,47,0.0 +18390,55,24,2,0.0 +18390,1,18,29,0.0 +18390,15,15.5,46,0.0 +18390,2,19,16,0.0 +18390,19,9.2,42,0.0 +18390,18,62.5,29,0.0 +18390,76,18,22,0.0 +18390,23,9,16,0.0 +18390,41,9.65,16,0.0 +18390,14,23.25,35,0.0 +18390,21,10,4,0.0 +18390,77,13,27,0.0 +18390,9,97,24,0.0 +18390,28,45.6,12,0.0 +18390,56,38,35,0.0 +18390,17,39,30,0.0 +18390,5,21.35,39,0.0 +18390,12,38,9,0.0 +18390,63,43.9,6,0.0 +18390,53,32.8,6,0.0 +18390,29,123.79,32,0.0 +18390,40,18.4,26,0.0 +18391,13,6,9,0.0 +18391,61,28.5,35,0.0 +18391,56,38,15,0.0 +18391,69,36,27,0.0 +18391,49,20,34,0.0 +18391,32,32,37,0.0 +18391,30,25.89,29,0.0 +18391,55,24,28,0.0 +18391,35,18,43,0.0 +18391,46,12,38,0.0 +18391,25,14,21,0.0 +18391,33,2.5,12,0.0 +18391,14,23.25,3,0.0 +18391,12,38,8,0.0 +18391,77,13,39,0.0 +18391,45,9.5,20,0.0 +18391,16,17.45,32,0.0 +18391,40,18.4,21,0.0 +18391,4,22,9,0.0 +18391,71,21.5,40,0.0 +18391,5,21.35,34,0.0 +18391,31,12.5,11,0.0 +18391,20,81,21,0.0 +18391,23,9,19,0.0 +18391,27,43.9,28,0.0 +18391,48,12.75,40,0.0 +18391,68,12.5,11,0.0 +18391,10,31,37,0.0 +18391,24,4.5,32,0.0 +18392,73,15,20,0.0 +18392,54,7.45,30,0.0 +18392,32,32,3,0.0 +18392,21,10,24,0.0 +18393,75,7.75,29,0.0 +18393,62,49.3,34,0.0 +18393,51,53,11,0.0 +18393,39,18,1,0.0 +18393,13,6,22,0.0 +18393,32,32,14,0.0 +18393,60,34,9,0.0 +18393,12,38,15,0.0 +18393,42,14,47,0.0 +18393,47,9.5,41,0.0 +18393,3,10,25,0.0 +18393,15,15.5,26,0.0 +18393,26,31.23,14,0.0 +18393,21,10,38,0.0 +18393,55,24,49,0.0 +18393,70,15,30,0.0 +18393,66,17,29,0.0 +18393,29,123.79,36,0.0 +18393,50,16.25,22,0.0 +18393,43,46,15,0.0 +18393,54,7.45,45,0.0 +18393,10,31,36,0.0 +18393,46,12,6,0.0 +18393,72,34.8,31,0.0 +18393,33,2.5,25,0.0 +18393,31,12.5,27,0.0 +18393,11,21,15,0.0 +18393,59,55,36,0.0 +18393,63,43.9,2,0.0 +18393,4,22,36,0.0 +18393,57,19.5,44,0.0 +18393,61,28.5,49,0.0 +18393,48,12.75,25,0.0 +18393,23,9,43,0.0 +18393,8,40,50,0.0 +18393,9,97,18,0.0 +18393,77,13,14,0.0 +18393,24,4.5,41,0.0 +18393,14,23.25,17,0.0 +18393,36,19,50,0.0 +18393,38,263.5,13,0.0 +18393,52,7,4,0.0 +18393,37,26,48,0.0 +18393,5,21.35,11,0.0 +18393,45,9.5,42,0.0 +18393,67,14,11,0.0 +18393,22,21,43,0.0 +18393,2,19,33,0.0 +18393,30,25.89,37,0.0 +18393,65,21.05,6,0.0 +18393,20,81,1,0.0 +18393,41,9.65,45,0.0 +18393,17,39,37,0.0 +18393,64,33.25,12,0.0 +18393,34,14,19,0.0 +18393,28,45.6,2,0.0 +18393,19,9.2,47,0.0 +18393,40,18.4,35,0.0 +18393,7,30,6,0.0 +18393,27,43.9,32,0.0 +18393,18,62.5,14,0.0 +18393,53,32.8,44,0.0 +18393,25,14,10,0.0 +18393,71,21.5,21,0.0 +18393,49,20,40,0.0 +18393,56,38,25,0.0 +18393,74,10,27,0.0 +18393,44,19.45,17,0.0 +18394,53,32.8,2,0.0 +18394,55,24,2,0.0 +18394,51,53,22,0.0 +18394,49,20,42,0.0 +18394,65,21.05,23,0.0 +18394,5,21.35,42,0.0 +18394,62,49.3,23,0.0 +18394,54,7.45,7,0.0 +18394,30,25.89,10,0.0 +18394,34,14,11,0.0 +18394,71,21.5,27,0.0 +18395,70,15,17,0.0 +18395,17,39,44,0.0 +18395,59,55,50,0.0 +18395,77,13,7,0.0 +18395,15,15.5,48,0.0 +18395,37,26,43,0.0 +18395,52,7,22,0.0 +18395,32,32,44,0.0 +18395,1,18,16,0.0 +18395,67,14,41,0.0 +18395,34,14,26,0.0 +18395,55,24,25,0.0 +18395,71,21.5,8,0.0 +18395,46,12,23,0.0 +18395,72,34.8,36,0.0 +18395,33,2.5,36,0.0 +18395,3,10,18,0.0 +18395,51,53,12,0.0 +18395,23,9,42,0.0 +18395,62,49.3,11,0.0 +18395,48,12.75,37,0.0 +18395,31,12.5,20,0.0 +18395,13,6,9,0.0 +18395,47,9.5,36,0.0 +18395,16,17.45,3,0.0 +18395,43,46,23,0.0 +18395,12,38,26,0.0 +18395,58,13.25,33,0.0 +18395,26,31.23,11,0.0 +18395,38,263.5,4,0.0 +18395,5,21.35,50,0.0 +18395,40,18.4,49,0.0 +18395,54,7.45,21,0.0 +18395,7,30,29,0.0 +18395,30,25.89,32,0.0 +18395,27,43.9,35,0.0 +18395,76,18,28,0.0 +18395,14,23.25,39,0.0 +18395,65,21.05,36,0.0 +18395,41,9.65,42,0.0 +18395,11,21,25,0.0 +18395,21,10,12,0.0 +18395,45,9.5,43,0.0 +18395,36,19,35,0.0 +18395,35,18,30,0.0 +18395,42,14,29,0.0 +18395,53,32.8,44,0.0 +18395,6,25,15,0.0 +18395,8,40,35,0.0 +18395,4,22,25,0.0 +18395,25,14,39,0.0 +18395,69,36,9,0.0 +18395,19,9.2,1,0.0 +18395,66,17,16,0.0 +18395,10,31,3,0.0 +18395,24,4.5,10,0.0 +18395,73,15,6,0.0 +18395,20,81,41,0.0 +18396,77,13,1,0.0 +18396,50,16.25,39,0.0 +18396,28,45.6,4,0.0 +18396,46,12,18,0.0 +18396,26,31.23,11,0.0 +18396,8,40,15,0.0 +18396,74,10,29,0.0 +18397,51,53,28,0.0 +18397,15,15.5,37,0.0 +18397,38,263.5,41,0.0 +18397,47,9.5,34,0.0 +18397,54,7.45,10,0.0 +18398,57,19.5,31,0.0 +18398,15,15.5,31,0.0 +18398,51,53,27,0.0 +18398,65,21.05,26,0.0 +18398,10,31,7,0.0 +18398,7,30,20,0.0 +18398,28,45.6,29,0.0 +18398,59,55,42,0.0 +18398,56,38,27,0.0 +18398,38,263.5,39,0.0 +18398,27,43.9,12,0.0 +18398,23,9,17,0.0 +18398,12,38,6,0.0 +18398,41,9.65,38,0.0 +18398,77,13,16,0.0 +18398,34,14,19,0.0 +18398,5,21.35,5,0.0 +18398,42,14,13,0.0 +18398,29,123.79,50,0.0 +18398,52,7,34,0.0 +18398,19,9.2,31,0.0 +18398,67,14,23,0.0 +18398,64,33.25,37,0.0 +18398,26,31.23,40,0.0 +18398,21,10,39,0.0 +18398,75,7.75,24,0.0 +18398,73,15,31,0.0 +18398,43,46,12,0.0 +18398,33,2.5,35,0.0 +18398,68,12.5,15,0.0 +18398,17,39,12,0.0 +18398,50,16.25,31,0.0 +18398,71,21.5,47,0.0 +18398,1,18,38,0.0 +18398,66,17,1,0.0 +18398,37,26,29,0.0 +18398,13,6,9,0.0 +18398,61,28.5,16,0.0 +18398,36,19,50,0.0 +18398,39,18,2,0.0 +18398,55,24,28,0.0 +18398,54,7.45,37,0.0 +18398,49,20,3,0.0 +18398,72,34.8,21,0.0 +18398,32,32,30,0.0 +18398,6,25,45,0.0 +18398,35,18,12,0.0 +18398,11,21,37,0.0 +18398,48,12.75,5,0.0 +18398,30,25.89,10,0.0 +18398,45,9.5,12,0.0 +18398,20,81,36,0.0 +18398,76,18,3,0.0 +18398,74,10,14,0.0 +18398,22,21,40,0.0 +18398,24,4.5,20,0.0 +18398,3,10,16,0.0 +18398,60,34,39,0.0 +18398,47,9.5,26,0.0 +18398,8,40,10,0.0 +18398,31,12.5,33,0.0 +18398,53,32.8,36,0.0 +18398,4,22,22,0.0 +18398,58,13.25,35,0.0 +18398,70,15,20,0.0 +18398,40,18.4,44,0.0 +18398,9,97,46,0.0 +18398,69,36,26,0.0 +18398,18,62.5,33,0.0 +18399,3,10,43,0.0 +18399,25,14,40,0.0 +18399,67,14,18,0.0 +18399,4,22,5,0.0 +18399,55,24,15,0.0 +18399,51,53,40,0.0 +18399,62,49.3,31,0.0 +18399,66,17,1,0.0 +18399,60,34,11,0.0 +18399,32,32,21,0.0 +18399,27,43.9,4,0.0 +18399,49,20,47,0.0 +18399,33,2.5,25,0.0 +18399,1,18,46,0.0 +18399,59,55,21,0.0 +18399,18,62.5,12,0.0 +18399,9,97,20,0.0 +18399,70,15,2,0.0 +18399,13,6,50,0.0 +18399,71,21.5,34,0.0 +18399,65,21.05,11,0.0 +18399,64,33.25,19,0.0 +18399,12,38,4,0.0 +18399,68,12.5,33,0.0 +18399,42,14,45,0.0 +18399,75,7.75,43,0.0 +18399,23,9,10,0.0 +18399,34,14,34,0.0 +18399,53,32.8,34,0.0 +18399,8,40,34,0.0 +18399,24,4.5,35,0.0 +18399,29,123.79,14,0.0 +18399,28,45.6,39,0.0 +18399,61,28.5,10,0.0 +18399,63,43.9,33,0.0 +18399,36,19,32,0.0 +18399,52,7,47,0.0 +18399,47,9.5,10,0.0 +18399,69,36,9,0.0 +18399,76,18,30,0.0 +18399,21,10,31,0.0 +18399,35,18,22,0.0 +18399,39,18,27,0.0 +18399,16,17.45,4,0.0 +18399,5,21.35,30,0.0 +18399,20,81,7,0.0 +18399,2,19,9,0.0 +18399,57,19.5,24,0.0 +18399,10,31,18,0.0 +18399,56,38,27,0.0 +18399,43,46,40,0.0 +18399,77,13,47,0.0 +18399,31,12.5,37,0.0 +18399,22,21,8,0.0 +18399,45,9.5,49,0.0 +18399,37,26,24,0.0 +18399,41,9.65,40,0.0 +18400,19,9.2,49,0.0 +18400,22,21,38,0.0 +18400,57,19.5,49,0.0 +18400,10,31,8,0.0 +18400,56,38,43,0.0 +18400,36,19,3,0.0 +18400,6,25,12,0.0 +18400,13,6,24,0.0 +18400,70,15,37,0.0 +18400,26,31.23,2,0.0 +18400,40,18.4,9,0.0 +18400,8,40,4,0.0 +18400,25,14,36,0.0 +18400,52,7,9,0.0 +18400,18,62.5,2,0.0 +18400,64,33.25,17,0.0 +18400,28,45.6,14,0.0 +18400,68,12.5,50,0.0 +18400,12,38,29,0.0 +18400,31,12.5,38,0.0 +18400,29,123.79,40,0.0 +18400,41,9.65,33,0.0 +18400,23,9,5,0.0 +18400,27,43.9,20,0.0 +18400,45,9.5,27,0.0 +18400,5,21.35,48,0.0 +18400,59,55,36,0.0 +18400,72,34.8,17,0.0 +18400,38,263.5,15,0.0 +18400,74,10,25,0.0 +18400,20,81,40,0.0 +18400,67,14,9,0.0 +18400,54,7.45,19,0.0 +18400,16,17.45,32,0.0 +18400,69,36,23,0.0 +18400,63,43.9,50,0.0 +18400,43,46,5,0.0 +18400,32,32,38,0.0 +18400,47,9.5,17,0.0 +18400,73,15,40,0.0 +18400,51,53,2,0.0 +18400,76,18,34,0.0 +18400,42,14,10,0.0 +18400,39,18,45,0.0 +18400,37,26,14,0.0 +18400,3,10,50,0.0 +18400,17,39,12,0.0 +18400,15,15.5,28,0.0 +18400,62,49.3,25,0.0 +18400,71,21.5,2,0.0 +18400,77,13,25,0.0 +18400,55,24,3,0.0 +18400,30,25.89,31,0.0 +18400,48,12.75,14,0.0 +18400,49,20,42,0.0 +18400,50,16.25,15,0.0 +18400,33,2.5,39,0.0 +18400,35,18,10,0.0 +18400,65,21.05,43,0.0 +18400,14,23.25,9,0.0 +18400,66,17,9,0.0 +18400,4,22,30,0.0 +18400,2,19,12,0.0 +18400,11,21,36,0.0 +18400,58,13.25,36,0.0 +18400,34,14,26,0.0 +18401,15,15.5,14,0.0 +18401,69,36,15,0.0 +18401,23,9,14,0.0 +18401,11,21,39,0.0 +18401,46,12,45,0.0 +18401,17,39,29,0.0 +18401,58,13.25,29,0.0 +18401,41,9.65,4,0.0 +18401,38,263.5,13,0.0 +18401,9,97,39,0.0 +18401,55,24,19,0.0 +18401,43,46,32,0.0 +18401,51,53,11,0.0 +18401,65,21.05,23,0.0 +18401,53,32.8,30,0.0 +18401,62,49.3,23,0.0 +18401,56,38,3,0.0 +18401,13,6,42,0.0 +18401,8,40,32,0.0 +18401,22,21,21,0.0 +18401,44,19.45,17,0.0 +18401,4,22,26,0.0 +18401,39,18,42,0.0 +18401,74,10,16,0.0 +18401,71,21.5,36,0.0 +18401,76,18,47,0.0 +18401,24,4.5,34,0.0 +18401,73,15,30,0.0 +18401,52,7,8,0.0 +18401,34,14,14,0.0 +18401,18,62.5,20,0.0 +18401,40,18.4,19,0.0 +18401,47,9.5,36,0.0 +18401,48,12.75,22,0.0 +18401,66,17,16,0.0 +18401,60,34,43,0.0 +18401,63,43.9,37,0.0 +18401,16,17.45,18,0.0 +18401,25,14,21,0.0 +18401,64,33.25,47,0.0 +18401,27,43.9,19,0.0 +18401,50,16.25,2,0.0 +18401,19,9.2,2,0.0 +18401,77,13,23,0.0 +18401,57,19.5,42,0.0 +18401,28,45.6,7,0.0 +18401,36,19,6,0.0 +18401,14,23.25,41,0.0 +18401,6,25,6,0.0 +18401,68,12.5,24,0.0 +18401,2,19,2,0.0 +18401,1,18,44,0.0 +18401,45,9.5,22,0.0 +18401,20,81,26,0.0 +18401,26,31.23,45,0.0 +18401,61,28.5,46,0.0 +18401,37,26,43,0.0 +18401,21,10,27,0.0 +18401,70,15,8,0.0 +18401,30,25.89,25,0.0 +18401,7,30,50,0.0 +18401,35,18,27,0.0 +18401,10,31,19,0.0 +18401,49,20,41,0.0 +18401,59,55,27,0.0 +18401,72,34.8,23,0.0 +18401,32,32,32,0.0 +18401,31,12.5,47,0.0 +18401,67,14,2,0.0 +18401,42,14,3,0.0 +18401,29,123.79,36,0.0 +18401,54,7.45,37,0.0 +18401,12,38,2,0.0 +18402,38,263.5,41,0.0 +18402,2,19,49,0.0 +18402,1,18,4,0.0 +18402,69,36,47,0.0 +18402,9,97,19,0.0 +18402,67,14,43,0.0 +18402,31,12.5,35,0.0 +18402,55,24,12,0.0 +18402,43,46,50,0.0 +18402,4,22,6,0.0 +18402,33,2.5,1,0.0 +18402,21,10,44,0.0 +18402,71,21.5,17,0.0 +18402,7,30,8,0.0 +18402,5,21.35,15,0.0 +18402,36,19,39,0.0 +18402,25,14,29,0.0 +18402,66,17,16,0.0 +18402,24,4.5,3,0.0 +18402,74,10,44,0.0 +18402,39,18,20,0.0 +18402,49,20,15,0.0 +18402,6,25,36,0.0 +18402,8,40,1,0.0 +18402,30,25.89,7,0.0 +18402,15,15.5,23,0.0 +18402,45,9.5,19,0.0 +18402,26,31.23,41,0.0 +18402,60,34,5,0.0 +18402,64,33.25,32,0.0 +18402,77,13,43,0.0 +18402,16,17.45,20,0.0 +18402,37,26,40,0.0 +18402,47,9.5,40,0.0 +18402,76,18,10,0.0 +18402,70,15,11,0.0 +18402,50,16.25,48,0.0 +18402,28,45.6,27,0.0 +18402,32,32,35,0.0 +18402,35,18,22,0.0 +18402,34,14,4,0.0 +18402,42,14,14,0.0 +18402,44,19.45,46,0.0 +18402,29,123.79,13,0.0 +18402,40,18.4,37,0.0 +18402,14,23.25,7,0.0 +18402,27,43.9,36,0.0 +18403,28,45.6,22,0.0 +18404,72,34.8,2,0.0 +18404,37,26,1,0.0 +18404,66,17,43,0.0 +18404,55,24,4,0.0 +18404,59,55,6,0.0 +18404,4,22,39,0.0 +18404,44,19.45,47,0.0 +18404,3,10,16,0.0 +18404,6,25,40,0.0 +18404,67,14,14,0.0 +18404,34,14,5,0.0 +18404,46,12,42,0.0 +18404,30,25.89,13,0.0 +18404,54,7.45,24,0.0 +18404,40,18.4,48,0.0 +18404,7,30,19,0.0 +18404,48,12.75,29,0.0 +18404,2,19,47,0.0 +18404,65,21.05,15,0.0 +18404,51,53,32,0.0 +18404,11,21,38,0.0 +18405,68,12.5,44,0.0 +18405,67,14,26,0.0 +18405,52,7,31,0.0 +18405,57,19.5,16,0.0 +18405,12,38,36,0.0 +18406,57,19.5,13,0.0 +18406,43,46,19,0.0 +18406,10,31,17,0.0 +18406,65,21.05,34,0.0 +18406,76,18,2,0.0 +18406,22,21,22,0.0 +18406,14,23.25,23,0.0 +18406,60,34,41,0.0 +18406,32,32,2,0.0 +18406,12,38,14,0.0 +18406,27,43.9,22,0.0 +18406,49,20,28,0.0 +18406,74,10,32,0.0 +18406,33,2.5,49,0.0 +18406,19,9.2,18,0.0 +18406,34,14,13,0.0 +18406,45,9.5,7,0.0 +18406,35,18,39,0.0 +18406,41,9.65,1,0.0 +18406,75,7.75,48,0.0 +18406,72,34.8,25,0.0 +18406,30,25.89,32,0.0 +18406,55,24,11,0.0 +18406,56,38,6,0.0 +18406,5,21.35,16,0.0 +18407,4,22,36,0.0 +18407,42,14,50,0.0 +18407,63,43.9,9,0.0 +18407,59,55,23,0.0 +18407,11,21,47,0.0 +18407,76,18,29,0.0 +18407,35,18,43,0.0 +18407,57,19.5,13,0.0 +18407,17,39,49,0.0 +18407,7,30,15,0.0 +18407,28,45.6,42,0.0 +18407,77,13,19,0.0 +18407,60,34,22,0.0 +18407,43,46,47,0.0 +18407,71,21.5,23,0.0 +18407,58,13.25,14,0.0 +18407,22,21,12,0.0 +18407,3,10,36,0.0 +18407,73,15,27,0.0 +18407,34,14,23,0.0 +18407,67,14,14,0.0 +18407,23,9,40,0.0 +18407,30,25.89,8,0.0 +18407,2,19,23,0.0 +18407,53,32.8,3,0.0 +18407,13,6,30,0.0 +18407,72,34.8,29,0.0 +18407,5,21.35,38,0.0 +18407,69,36,28,0.0 +18407,16,17.45,31,0.0 +18407,44,19.45,22,0.0 +18407,38,263.5,19,0.0 +18407,39,18,8,0.0 +18407,20,81,36,0.0 +18407,70,15,22,0.0 +18407,37,26,50,0.0 +18407,74,10,37,0.0 +18407,49,20,47,0.0 +18407,15,15.5,20,0.0 +18407,9,97,15,0.0 +18407,8,40,20,0.0 +18407,18,62.5,14,0.0 +18407,45,9.5,7,0.0 +18407,29,123.79,6,0.0 +18407,62,49.3,19,0.0 +18407,47,9.5,11,0.0 +18407,1,18,26,0.0 +18407,56,38,32,0.0 +18407,54,7.45,49,0.0 +18407,75,7.75,9,0.0 +18407,64,33.25,12,0.0 +18407,52,7,40,0.0 +18407,19,9.2,30,0.0 +18407,26,31.23,21,0.0 +18407,66,17,34,0.0 +18407,40,18.4,29,0.0 +18407,32,32,10,0.0 +18407,41,9.65,22,0.0 +18407,51,53,10,0.0 +18407,27,43.9,19,0.0 +18407,65,21.05,24,0.0 +18407,12,38,24,0.0 +18407,10,31,1,0.0 +18407,6,25,25,0.0 +18407,36,19,6,0.0 +18407,14,23.25,39,0.0 +18407,33,2.5,17,0.0 +18407,61,28.5,34,0.0 +18407,48,12.75,44,0.0 +18407,21,10,29,0.0 +18407,68,12.5,30,0.0 +18407,31,12.5,40,0.0 +18407,46,12,16,0.0 +18408,55,24,34,0.0 +18408,45,9.5,12,0.0 +18408,69,36,26,0.0 +18408,65,21.05,50,0.0 +18408,25,14,33,0.0 +18408,41,9.65,42,0.0 +18408,66,17,38,0.0 +18408,7,30,3,0.0 +18408,29,123.79,17,0.0 +18408,51,53,2,0.0 +18408,36,19,10,0.0 +18408,3,10,40,0.0 +18408,38,263.5,3,0.0 +18408,5,21.35,22,0.0 +18408,68,12.5,10,0.0 +18408,71,21.5,48,0.0 +18408,33,2.5,33,0.0 +18408,70,15,13,0.0 +18408,17,39,42,0.0 +18408,73,15,11,0.0 +18408,54,7.45,18,0.0 +18408,8,40,48,0.0 +18408,31,12.5,39,0.0 +18408,61,28.5,13,0.0 +18408,44,19.45,21,0.0 +18408,15,15.5,8,0.0 +18408,21,10,49,0.0 +18408,23,9,42,0.0 +18408,32,32,33,0.0 +18408,50,16.25,37,0.0 +18408,11,21,46,0.0 +18408,72,34.8,1,0.0 +18408,47,9.5,6,0.0 +18408,77,13,50,0.0 +18408,19,9.2,33,0.0 +18408,14,23.25,29,0.0 +18408,76,18,26,0.0 +18408,27,43.9,11,0.0 +18408,9,97,1,0.0 +18408,6,25,19,0.0 +18408,60,34,29,0.0 +18408,75,7.75,44,0.0 +18408,62,49.3,6,0.0 +18408,34,14,40,0.0 +18409,67,14,17,0.0 +18409,13,6,44,0.0 +18409,22,21,49,0.0 +18409,38,263.5,35,0.0 +18409,48,12.75,14,0.0 +18409,73,15,18,0.0 +18409,54,7.45,47,0.0 +18409,50,16.25,19,0.0 +18409,39,18,27,0.0 +18409,7,30,41,0.0 +18409,23,9,37,0.0 +18409,70,15,19,0.0 +18409,66,17,10,0.0 +18409,56,38,5,0.0 +18409,37,26,39,0.0 +18409,11,21,44,0.0 +18409,65,21.05,47,0.0 +18409,51,53,17,0.0 +18409,26,31.23,42,0.0 +18409,62,49.3,15,0.0 +18409,74,10,4,0.0 +18409,44,19.45,27,0.0 +18409,76,18,38,0.0 +18409,5,21.35,48,0.0 +18409,15,15.5,36,0.0 +18409,58,13.25,14,0.0 +18409,17,39,27,0.0 +18409,63,43.9,35,0.0 +18409,60,34,35,0.0 +18409,30,25.89,12,0.0 +18410,60,34,43,0.0 +18410,12,38,19,0.0 +18410,30,25.89,22,0.0 +18410,67,14,19,0.0 +18410,52,7,26,0.0 +18410,9,97,29,0.0 +18410,29,123.79,19,0.0 +18410,54,7.45,8,0.0 +18410,66,17,5,0.0 +18410,24,4.5,14,0.0 +18410,36,19,46,0.0 +18410,8,40,50,0.0 +18411,46,12,13,0.0 +18411,3,10,42,0.0 +18411,10,31,16,0.0 +18411,6,25,26,0.0 +18411,35,18,31,0.0 +18411,1,18,3,0.0 +18411,73,15,41,0.0 +18411,66,17,16,0.0 +18411,43,46,30,0.0 +18411,69,36,34,0.0 +18411,67,14,14,0.0 +18411,22,21,5,0.0 +18411,57,19.5,9,0.0 +18411,72,34.8,23,0.0 +18411,28,45.6,6,0.0 +18411,26,31.23,18,0.0 +18411,36,19,13,0.0 +18411,75,7.75,9,0.0 +18411,33,2.5,16,0.0 +18411,60,34,20,0.0 +18411,54,7.45,21,0.0 +18411,56,38,2,0.0 +18411,19,9.2,47,0.0 +18411,23,9,45,0.0 +18411,68,12.5,49,0.0 +18411,76,18,31,0.0 +18411,29,123.79,27,0.0 +18411,58,13.25,16,0.0 +18411,21,10,29,0.0 +18411,11,21,41,0.0 +18411,18,62.5,36,0.0 +18411,27,43.9,15,0.0 +18411,77,13,15,0.0 +18412,61,28.5,10,0.0 +18412,8,40,14,0.0 +18412,51,53,39,0.0 +18412,14,23.25,45,0.0 +18412,15,15.5,36,0.0 +18412,46,12,17,0.0 +18412,40,18.4,27,0.0 +18412,21,10,29,0.0 +18412,32,32,38,0.0 +18412,20,81,30,0.0 +18412,44,19.45,24,0.0 +18412,27,43.9,13,0.0 +18412,29,123.79,1,0.0 +18412,5,21.35,16,0.0 +18412,26,31.23,48,0.0 +18412,43,46,16,0.0 +18412,35,18,25,0.0 +18412,17,39,5,0.0 +18412,42,14,15,0.0 +18412,47,9.5,35,0.0 +18412,66,17,22,0.0 +18412,65,21.05,11,0.0 +18412,19,9.2,32,0.0 +18412,75,7.75,22,0.0 +18412,10,31,14,0.0 +18412,52,7,10,0.0 +18412,12,38,48,0.0 +18412,77,13,49,0.0 +18413,76,18,12,0.0 +18413,68,12.5,45,0.0 +18413,52,7,42,0.0 +18413,12,38,13,0.0 +18413,28,45.6,29,0.0 +18413,47,9.5,44,0.0 +18413,13,6,21,0.0 +18413,60,34,8,0.0 +18413,73,15,31,0.0 +18413,35,18,12,0.0 +18413,50,16.25,5,0.0 +18413,42,14,50,0.0 +18413,15,15.5,48,0.0 +18413,14,23.25,39,0.0 +18413,2,19,1,0.0 +18413,19,9.2,32,0.0 +18413,51,53,40,0.0 +18413,65,21.05,9,0.0 +18413,71,21.5,16,0.0 +18413,9,97,12,0.0 +18413,17,39,25,0.0 +18413,62,49.3,26,0.0 +18413,24,4.5,23,0.0 +18413,34,14,27,0.0 +18413,32,32,22,0.0 +18413,27,43.9,24,0.0 +18413,56,38,28,0.0 +18413,26,31.23,43,0.0 +18413,25,14,42,0.0 +18413,70,15,24,0.0 +18413,72,34.8,4,0.0 +18413,55,24,41,0.0 +18413,11,21,36,0.0 +18413,38,263.5,22,0.0 +18413,36,19,44,0.0 +18413,40,18.4,24,0.0 +18413,16,17.45,33,0.0 +18413,58,13.25,3,0.0 +18413,29,123.79,9,0.0 +18413,69,36,2,0.0 +18413,37,26,18,0.0 +18413,8,40,50,0.0 +18413,3,10,16,0.0 +18413,67,14,9,0.0 +18413,4,22,28,0.0 +18413,61,28.5,47,0.0 +18413,46,12,13,0.0 +18413,74,10,24,0.0 +18413,33,2.5,3,0.0 +18413,63,43.9,30,0.0 +18413,6,25,25,0.0 +18413,20,81,23,0.0 +18413,66,17,19,0.0 +18413,48,12.75,19,0.0 +18413,44,19.45,9,0.0 +18413,21,10,17,0.0 +18413,57,19.5,14,0.0 +18413,30,25.89,1,0.0 +18413,49,20,20,0.0 +18413,7,30,4,0.0 +18413,41,9.65,50,0.0 +18413,64,33.25,30,0.0 +18413,43,46,9,0.0 +18413,31,12.5,16,0.0 +18414,29,123.79,34,0.0 +18414,58,13.25,32,0.0 +18414,26,31.23,50,0.0 +18414,25,14,38,0.0 +18414,73,15,15,0.0 +18414,64,33.25,41,0.0 +18414,15,15.5,32,0.0 +18414,9,97,40,0.0 +18414,27,43.9,22,0.0 +18414,54,7.45,12,0.0 +18414,72,34.8,2,0.0 +18414,13,6,39,0.0 +18414,49,20,10,0.0 +18414,12,38,33,0.0 +18414,44,19.45,36,0.0 +18414,38,263.5,18,0.0 +18414,70,15,49,0.0 +18414,2,19,45,0.0 +18415,56,38,34,0.0 +18415,16,17.45,44,0.0 +18415,37,26,9,0.0 +18415,14,23.25,7,0.0 +18415,4,22,7,0.0 +18415,59,55,21,0.0 +18415,69,36,35,0.0 +18416,18,62.5,12,0.0 +18416,66,17,29,0.0 +18416,75,7.75,30,0.0 +18416,70,15,9,0.0 +18416,60,34,20,0.0 +18416,67,14,14,0.0 +18416,51,53,13,0.0 +18416,54,7.45,11,0.0 +18416,9,97,22,0.0 +18416,63,43.9,35,0.0 +18416,4,22,32,0.0 +18417,70,15,10,0.0 +18417,4,22,1,0.0 +18417,40,18.4,6,0.0 +18417,16,17.45,7,0.0 +18418,37,26,18,0.0 +18418,15,15.5,15,0.0 +18418,63,43.9,26,0.0 +18418,59,55,27,0.0 +18418,53,32.8,49,0.0 +18418,4,22,32,0.0 +18418,73,15,40,0.0 +18418,56,38,11,0.0 +18418,66,17,26,0.0 +18418,76,18,5,0.0 +18418,42,14,10,0.0 +18418,49,20,40,0.0 +18418,26,31.23,8,0.0 +18418,31,12.5,24,0.0 +18418,14,23.25,38,0.0 +18418,47,9.5,2,0.0 +18418,48,12.75,18,0.0 +18418,5,21.35,47,0.0 +18418,51,53,5,0.0 +18418,8,40,26,0.0 +18418,46,12,42,0.0 +18418,16,17.45,21,0.0 +18418,36,19,37,0.0 +18418,54,7.45,41,0.0 +18418,22,21,5,0.0 +18418,11,21,32,0.0 +18418,3,10,33,0.0 +18418,71,21.5,7,0.0 +18418,65,21.05,19,0.0 +18418,58,13.25,37,0.0 +18418,40,18.4,38,0.0 +18418,2,19,41,0.0 +18418,69,36,25,0.0 +18418,12,38,16,0.0 +18418,38,263.5,23,0.0 +18418,62,49.3,40,0.0 +18418,32,32,8,0.0 +18418,20,81,11,0.0 +18418,33,2.5,7,0.0 +18418,61,28.5,40,0.0 +18418,6,25,12,0.0 +18418,28,45.6,6,0.0 +18418,70,15,12,0.0 +18419,35,18,5,0.0 +18419,49,20,41,0.0 +18420,3,10,30,0.0 +18420,42,14,39,0.0 +18420,20,81,33,0.0 +18420,64,33.25,36,0.0 +18420,47,9.5,13,0.0 +18420,10,31,13,0.0 +18420,16,17.45,50,0.0 +18420,58,13.25,39,0.0 +18420,22,21,42,0.0 +18420,6,25,25,0.0 +18420,5,21.35,4,0.0 +18420,41,9.65,47,0.0 +18420,33,2.5,16,0.0 +18420,71,21.5,27,0.0 +18420,32,32,25,0.0 +18420,21,10,38,0.0 +18420,74,10,47,0.0 +18420,76,18,44,0.0 +18420,36,19,33,0.0 +18420,1,18,27,0.0 +18420,55,24,40,0.0 +18421,65,21.05,25,0.0 +18421,66,17,22,0.0 +18421,68,12.5,27,0.0 +18421,63,43.9,11,0.0 +18421,76,18,3,0.0 +18421,14,23.25,23,0.0 +18421,46,12,30,0.0 +18421,9,97,49,0.0 +18421,19,9.2,44,0.0 +18421,27,43.9,4,0.0 +18421,60,34,24,0.0 +18421,50,16.25,35,0.0 +18421,57,19.5,50,0.0 +18421,28,45.6,36,0.0 +18421,59,55,23,0.0 +18421,16,17.45,28,0.0 +18421,29,123.79,22,0.0 +18421,55,24,46,0.0 +18421,75,7.75,27,0.0 +18421,49,20,20,0.0 +18421,43,46,43,0.0 +18421,62,49.3,30,0.0 +18421,15,15.5,1,0.0 +18421,72,34.8,36,0.0 +18421,24,4.5,5,0.0 +18421,74,10,20,0.0 +18421,64,33.25,35,0.0 +18421,31,12.5,22,0.0 +18421,33,2.5,30,0.0 +18421,3,10,33,0.0 +18421,48,12.75,11,0.0 +18421,61,28.5,13,0.0 +18421,47,9.5,46,0.0 +18421,4,22,17,0.0 +18421,52,7,46,0.0 +18421,45,9.5,2,0.0 +18421,42,14,35,0.0 +18421,6,25,26,0.0 +18421,34,14,37,0.0 +18421,22,21,17,0.0 +18421,20,81,40,0.0 +18421,38,263.5,26,0.0 +18421,12,38,46,0.0 +18421,41,9.65,16,0.0 +18421,58,13.25,6,0.0 +18421,25,14,23,0.0 +18421,23,9,24,0.0 +18421,70,15,37,0.0 +18421,69,36,32,0.0 +18421,56,38,17,0.0 +18421,8,40,44,0.0 +18421,36,19,39,0.0 +18421,71,21.5,21,0.0 +18421,53,32.8,12,0.0 +18421,44,19.45,4,0.0 +18421,77,13,25,0.0 +18421,10,31,27,0.0 +18421,51,53,30,0.0 +18421,40,18.4,38,0.0 +18421,37,26,23,0.0 +18421,73,15,21,0.0 +18421,7,30,14,0.0 +18421,5,21.35,8,0.0 +18421,11,21,22,0.0 +18421,13,6,40,0.0 +18421,2,19,20,0.0 +18421,21,10,17,0.0 +18421,18,62.5,47,0.0 +18421,26,31.23,34,0.0 +18421,1,18,24,0.0 +18421,30,25.89,43,0.0 +18421,39,18,5,0.0 +18421,54,7.45,1,0.0 +18421,32,32,31,0.0 +18421,67,14,3,0.0 +18422,55,24,37,0.0 +18422,2,19,17,0.0 +18422,76,18,16,0.0 +18422,12,38,22,0.0 +18422,35,18,39,0.0 +18422,54,7.45,30,0.0 +18422,46,12,21,0.0 +18422,26,31.23,33,0.0 +18422,1,18,40,0.0 +18422,41,9.65,32,0.0 +18422,15,15.5,2,0.0 +18422,56,38,5,0.0 +18422,16,17.45,21,0.0 +18422,22,21,42,0.0 +18422,21,10,16,0.0 +18422,10,31,7,0.0 +18422,3,10,20,0.0 +18422,59,55,21,0.0 +18422,60,34,6,0.0 +18422,51,53,4,0.0 +18422,20,81,33,0.0 +18422,58,13.25,48,0.0 +18422,11,21,18,0.0 +18423,34,14,42,0.0 +18423,50,16.25,15,0.0 +18423,20,81,6,0.0 +18423,76,18,8,0.0 +18423,1,18,50,0.0 +18423,35,18,13,0.0 +18423,77,13,34,0.0 +18423,12,38,50,0.0 +18423,41,9.65,37,0.0 +18423,33,2.5,2,0.0 +18423,23,9,10,0.0 +18423,15,15.5,16,0.0 +18423,16,17.45,15,0.0 +18423,37,26,12,0.0 +18423,36,19,40,0.0 +18423,61,28.5,45,0.0 +18423,11,21,10,0.0 +18423,44,19.45,17,0.0 +18423,66,17,40,0.0 +18423,72,34.8,28,0.0 +18423,45,9.5,24,0.0 +18423,47,9.5,10,0.0 +18423,51,53,15,0.0 +18423,49,20,11,0.0 +18423,2,19,10,0.0 +18423,31,12.5,3,0.0 +18423,25,14,5,0.0 +18423,7,30,41,0.0 +18423,26,31.23,41,0.0 +18423,21,10,23,0.0 +18423,19,9.2,50,0.0 +18423,9,97,12,0.0 +18423,17,39,11,0.0 +18423,67,14,47,0.0 +18423,40,18.4,3,0.0 +18423,4,22,36,0.0 +18423,54,7.45,29,0.0 +18423,56,38,38,0.0 +18424,56,38,22,0.0 +18424,12,38,14,0.0 +18424,63,43.9,6,0.0 +18424,57,19.5,7,0.0 +18424,62,49.3,40,0.0 +18424,60,34,15,0.0 +18424,46,12,11,0.0 +18424,72,34.8,33,0.0 +18424,42,14,23,0.0 +18424,68,12.5,26,0.0 +18424,35,18,19,0.0 +18424,34,14,37,0.0 +18424,4,22,45,0.0 +18424,23,9,32,0.0 +18424,14,23.25,30,0.0 +18424,18,62.5,46,0.0 +18425,72,34.8,14,0.0 +18425,74,10,7,0.0 +18425,42,14,25,0.0 +18425,28,45.6,10,0.0 +18425,18,62.5,6,0.0 +18425,44,19.45,15,0.0 +18425,66,17,46,0.0 +18425,65,21.05,19,0.0 +18425,41,9.65,11,0.0 +18425,70,15,10,0.0 +18425,24,4.5,22,0.0 +18425,36,19,26,0.0 +18425,40,18.4,23,0.0 +18425,60,34,25,0.0 +18425,43,46,14,0.0 +18425,49,20,17,0.0 +18425,20,81,34,0.0 +18425,1,18,50,0.0 +18425,16,17.45,10,0.0 +18425,54,7.45,17,0.0 +18425,2,19,27,0.0 +18425,10,31,46,0.0 +18425,45,9.5,49,0.0 +18425,59,55,11,0.0 +18425,15,15.5,39,0.0 +18425,17,39,36,0.0 +18425,69,36,17,0.0 +18425,13,6,15,0.0 +18425,47,9.5,34,0.0 +18425,12,38,26,0.0 +18425,51,53,43,0.0 +18425,8,40,21,0.0 +18425,22,21,42,0.0 +18425,75,7.75,10,0.0 +18425,21,10,3,0.0 +18425,53,32.8,22,0.0 +18425,62,49.3,13,0.0 +18425,68,12.5,25,0.0 +18425,48,12.75,12,0.0 +18425,23,9,27,0.0 +18425,25,14,12,0.0 +18425,7,30,22,0.0 +18425,34,14,23,0.0 +18425,39,18,17,0.0 +18425,71,21.5,44,0.0 +18425,4,22,41,0.0 +18425,56,38,35,0.0 +18425,5,21.35,5,0.0 +18425,30,25.89,33,0.0 +18425,73,15,21,0.0 +18425,67,14,46,0.0 +18425,58,13.25,48,0.0 +18426,6,25,7,0.0 +18426,38,263.5,15,0.0 +18426,55,24,19,0.0 +18426,15,15.5,32,0.0 +18426,27,43.9,8,0.0 +18426,34,14,28,0.0 +18426,75,7.75,14,0.0 +18426,21,10,36,0.0 +18426,70,15,45,0.0 +18426,29,123.79,25,0.0 +18426,10,31,9,0.0 +18426,74,10,40,0.0 +18426,53,32.8,41,0.0 +18426,12,38,2,0.0 +18426,20,81,14,0.0 +18426,13,6,49,0.0 +18426,32,32,1,0.0 +18426,58,13.25,8,0.0 +18426,2,19,2,0.0 +18426,65,21.05,44,0.0 +18426,19,9.2,28,0.0 +18426,18,62.5,3,0.0 +18426,54,7.45,24,0.0 +18426,33,2.5,12,0.0 +18426,56,38,30,0.0 +18426,49,20,50,0.0 +18426,23,9,41,0.0 +18426,62,49.3,39,0.0 +18426,16,17.45,28,0.0 +18426,69,36,16,0.0 +18426,66,17,25,0.0 +18426,5,21.35,36,0.0 +18426,47,9.5,21,0.0 +18426,51,53,17,0.0 +18426,11,21,10,0.0 +18426,42,14,42,0.0 +18426,4,22,30,0.0 +18426,14,23.25,22,0.0 +18426,59,55,7,0.0 +18426,60,34,6,0.0 +18426,52,7,42,0.0 +18426,57,19.5,19,0.0 +18426,37,26,7,0.0 +18426,9,97,30,0.0 +18426,71,21.5,44,0.0 +18426,17,39,6,0.0 +18427,76,18,43,0.0 +18427,53,32.8,26,0.0 +18427,3,10,36,0.0 +18427,19,9.2,47,0.0 +18427,62,49.3,33,0.0 +18427,20,81,8,0.0 +18427,6,25,30,0.0 +18427,4,22,16,0.0 +18427,35,18,17,0.0 +18427,57,19.5,13,0.0 +18427,7,30,28,0.0 +18427,61,28.5,36,0.0 +18427,69,36,39,0.0 +18427,68,12.5,23,0.0 +18427,50,16.25,45,0.0 +18427,34,14,34,0.0 +18427,54,7.45,39,0.0 +18427,41,9.65,39,0.0 +18427,32,32,8,0.0 +18427,17,39,30,0.0 +18427,60,34,19,0.0 +18427,56,38,10,0.0 +18427,9,97,18,0.0 +18427,70,15,18,0.0 +18427,59,55,20,0.0 +18427,31,12.5,6,0.0 +18427,27,43.9,31,0.0 +18427,46,12,16,0.0 +18427,72,34.8,30,0.0 +18427,16,17.45,36,0.0 +18427,21,10,50,0.0 +18427,10,31,25,0.0 +18427,15,15.5,39,0.0 +18427,44,19.45,24,0.0 +18427,39,18,34,0.0 +18427,47,9.5,38,0.0 +18427,73,15,40,0.0 +18427,48,12.75,17,0.0 +18427,11,21,43,0.0 +18427,65,21.05,25,0.0 +18427,23,9,29,0.0 +18427,63,43.9,4,0.0 +18427,37,26,25,0.0 +18427,30,25.89,50,0.0 +18427,1,18,10,0.0 +18427,5,21.35,2,0.0 +18427,22,21,47,0.0 +18427,25,14,21,0.0 +18427,24,4.5,21,0.0 +18427,26,31.23,50,0.0 +18427,43,46,33,0.0 +18427,67,14,5,0.0 +18427,66,17,3,0.0 +18427,74,10,38,0.0 +18427,71,21.5,49,0.0 +18427,12,38,13,0.0 +18427,13,6,50,0.0 +18427,58,13.25,37,0.0 +18427,33,2.5,29,0.0 +18427,55,24,24,0.0 +18427,49,20,15,0.0 +18427,42,14,32,0.0 +18427,51,53,40,0.0 +18427,36,19,19,0.0 +18427,45,9.5,27,0.0 +18427,28,45.6,37,0.0 +18427,40,18.4,11,0.0 +18427,18,62.5,1,0.0 +18427,8,40,1,0.0 +18427,52,7,7,0.0 +18427,77,13,27,0.0 +18427,38,263.5,15,0.0 +18427,14,23.25,30,0.0 +18427,2,19,40,0.0 +18427,75,7.75,5,0.0 +18427,29,123.79,31,0.0 +18428,13,6,9,0.0 +18428,28,45.6,27,0.0 +18428,21,10,25,0.0 +18428,17,39,26,0.0 +18428,14,23.25,6,0.0 +18428,11,21,32,0.0 +18428,76,18,1,0.0 +18428,46,12,33,0.0 +18428,63,43.9,32,0.0 +18428,71,21.5,17,0.0 +18428,20,81,38,0.0 +18428,67,14,13,0.0 +18428,75,7.75,39,0.0 +18428,39,18,41,0.0 +18429,19,9.2,39,0.0 +18429,17,39,44,0.0 +18429,10,31,6,0.0 +18429,63,43.9,2,0.0 +18429,3,10,28,0.0 +18429,32,32,29,0.0 +18429,41,9.65,8,0.0 +18429,53,32.8,33,0.0 +18429,61,28.5,50,0.0 +18429,66,17,11,0.0 +18429,54,7.45,35,0.0 +18429,14,23.25,30,0.0 +18429,1,18,44,0.0 +18429,9,97,20,0.0 +18429,48,12.75,21,0.0 +18429,64,33.25,45,0.0 +18429,43,46,3,0.0 +18429,18,62.5,6,0.0 +18429,42,14,20,0.0 +18429,72,34.8,27,0.0 +18429,68,12.5,32,0.0 +18429,74,10,31,0.0 +18429,57,19.5,31,0.0 +18429,35,18,13,0.0 +18429,21,10,32,0.0 +18429,65,21.05,11,0.0 +18429,25,14,2,0.0 +18429,20,81,23,0.0 +18429,51,53,34,0.0 +18429,23,9,29,0.0 +18429,31,12.5,11,0.0 +18429,60,34,21,0.0 +18429,40,18.4,26,0.0 +18429,73,15,16,0.0 +18429,27,43.9,11,0.0 +18429,30,25.89,42,0.0 +18429,6,25,25,0.0 +18429,36,19,39,0.0 +18429,77,13,39,0.0 +18429,75,7.75,42,0.0 +18429,29,123.79,33,0.0 +18430,15,15.5,50,0.0 +18430,47,9.5,9,0.0 +18430,19,9.2,43,0.0 +18430,18,62.5,40,0.0 +18430,42,14,12,0.0 +18430,50,16.25,9,0.0 +18430,23,9,36,0.0 +18430,49,20,46,0.0 +18430,60,34,25,0.0 +18430,67,14,33,0.0 +18430,73,15,18,0.0 +18430,66,17,38,0.0 +18430,4,22,28,0.0 +18430,76,18,8,0.0 +18430,35,18,8,0.0 +18430,74,10,21,0.0 +18430,12,38,21,0.0 +18430,26,31.23,50,0.0 +18430,24,4.5,34,0.0 +18430,77,13,39,0.0 +18430,25,14,50,0.0 +18430,28,45.6,44,0.0 +18430,56,38,19,0.0 +18430,1,18,21,0.0 +18430,54,7.45,23,0.0 +18430,41,9.65,27,0.0 +18430,44,19.45,40,0.0 +18430,10,31,41,0.0 +18430,11,21,9,0.0 +18430,34,14,24,0.0 +18430,8,40,40,0.0 +18430,27,43.9,41,0.0 +18430,30,25.89,33,0.0 +18431,69,36,3,0.0 +18431,36,19,7,0.0 +18431,40,18.4,36,0.0 +18431,68,12.5,37,0.0 +18431,42,14,14,0.0 +18431,60,34,10,0.0 +18431,39,18,16,0.0 +18431,28,45.6,47,0.0 +18431,31,12.5,4,0.0 +18431,12,38,46,0.0 +18431,24,4.5,1,0.0 +18431,67,14,38,0.0 +18431,9,97,49,0.0 +18431,66,17,46,0.0 +18431,4,22,27,0.0 +18431,10,31,42,0.0 +18431,45,9.5,10,0.0 +18431,46,12,27,0.0 +18431,75,7.75,44,0.0 +18431,33,2.5,5,0.0 +18431,59,55,39,0.0 +18431,44,19.45,45,0.0 +18431,63,43.9,20,0.0 +18431,41,9.65,5,0.0 +18431,7,30,8,0.0 +18431,73,15,13,0.0 +18431,61,28.5,46,0.0 +18431,8,40,47,0.0 +18431,2,19,21,0.0 +18431,30,25.89,7,0.0 +18431,22,21,40,0.0 +18431,19,9.2,8,0.0 +18431,21,10,3,0.0 +18431,20,81,37,0.0 +18431,27,43.9,21,0.0 +18431,3,10,3,0.0 +18431,77,13,31,0.0 +18431,18,62.5,36,0.0 +18431,32,32,15,0.0 +18431,38,263.5,36,0.0 +18431,34,14,41,0.0 +18431,13,6,48,0.0 +18431,14,23.25,28,0.0 +18431,11,21,10,0.0 +18431,26,31.23,23,0.0 +18431,49,20,38,0.0 +18431,53,32.8,50,0.0 +18432,19,9.2,38,0.0 +18432,67,14,19,0.0 +18432,51,53,30,0.0 +18432,40,18.4,47,0.0 +18432,21,10,14,0.0 +18432,35,18,43,0.0 +18432,34,14,37,0.0 +18432,17,39,11,0.0 +18432,14,23.25,22,0.0 +18432,8,40,36,0.0 +18432,45,9.5,44,0.0 +18432,60,34,6,0.0 +18432,4,22,32,0.0 +18432,69,36,8,0.0 +18432,44,19.45,40,0.0 +18432,11,21,16,0.0 +18432,18,62.5,24,0.0 +18432,77,13,7,0.0 +18432,65,21.05,9,0.0 +18432,50,16.25,8,0.0 +18432,58,13.25,23,0.0 +18432,30,25.89,48,0.0 +18432,47,9.5,47,0.0 +18432,43,46,36,0.0 +18432,53,32.8,18,0.0 +18432,38,263.5,26,0.0 +18432,54,7.45,31,0.0 +18432,42,14,22,0.0 +18432,2,19,49,0.0 +18432,70,15,1,0.0 +18432,26,31.23,8,0.0 +18432,66,17,44,0.0 +18432,55,24,33,0.0 +18432,64,33.25,4,0.0 +18432,12,38,18,0.0 +18432,74,10,17,0.0 +18432,25,14,5,0.0 +18432,41,9.65,40,0.0 +18432,68,12.5,48,0.0 +18432,48,12.75,17,0.0 +18432,9,97,21,0.0 +18432,33,2.5,48,0.0 +18432,39,18,16,0.0 +18433,24,4.5,44,0.0 +18433,10,31,31,0.0 +18433,60,34,18,0.0 +18433,61,28.5,1,0.0 +18433,76,18,14,0.0 +18433,65,21.05,48,0.0 +18433,35,18,30,0.0 +18433,9,97,31,0.0 +18433,13,6,4,0.0 +18433,27,43.9,18,0.0 +18433,1,18,26,0.0 +18433,2,19,15,0.0 +18433,58,13.25,9,0.0 +18433,34,14,18,0.0 +18433,26,31.23,32,0.0 +18433,48,12.75,40,0.0 +18433,62,49.3,30,0.0 +18433,39,18,3,0.0 +18433,38,263.5,38,0.0 +18433,21,10,24,0.0 +18433,64,33.25,35,0.0 +18433,54,7.45,32,0.0 +18433,50,16.25,11,0.0 +18433,52,7,22,0.0 +18433,22,21,22,0.0 +18433,56,38,34,0.0 +18433,3,10,9,0.0 +18433,69,36,2,0.0 +18433,4,22,47,0.0 +18433,19,9.2,20,0.0 +18433,37,26,20,0.0 +18433,73,15,47,0.0 +18433,63,43.9,32,0.0 +18433,68,12.5,44,0.0 +18433,14,23.25,14,0.0 +18434,54,7.45,44,0.0 +18434,44,19.45,49,0.0 +18434,34,14,49,0.0 +18434,53,32.8,6,0.0 +18434,16,17.45,9,0.0 +18434,43,46,29,0.0 +18434,51,53,6,0.0 +18434,24,4.5,13,0.0 +18434,66,17,14,0.0 +18434,64,33.25,46,0.0 +18434,40,18.4,45,0.0 +18434,4,22,44,0.0 +18434,73,15,7,0.0 +18434,23,9,44,0.0 +18434,72,34.8,21,0.0 +18434,77,13,35,0.0 +18434,1,18,42,0.0 +18434,71,21.5,35,0.0 +18434,30,25.89,27,0.0 +18434,75,7.75,28,0.0 +18434,37,26,34,0.0 +18434,69,36,14,0.0 +18434,61,28.5,43,0.0 +18434,32,32,47,0.0 +18434,28,45.6,21,0.0 +18434,19,9.2,17,0.0 +18434,9,97,1,0.0 +18434,11,21,16,0.0 +18434,58,13.25,36,0.0 +18434,17,39,44,0.0 +18434,68,12.5,25,0.0 +18434,67,14,47,0.0 +18434,35,18,28,0.0 +18434,22,21,19,0.0 +18434,8,40,11,0.0 +18434,49,20,34,0.0 +18434,12,38,48,0.0 +18434,62,49.3,18,0.0 +18434,2,19,43,0.0 +18434,56,38,16,0.0 +18434,7,30,8,0.0 +18434,18,62.5,11,0.0 +18434,41,9.65,30,0.0 +18434,60,34,14,0.0 +18434,31,12.5,29,0.0 +18434,27,43.9,8,0.0 +18434,21,10,15,0.0 +18434,45,9.5,1,0.0 +18434,57,19.5,8,0.0 +18434,36,19,23,0.0 +18434,39,18,41,0.0 +18434,20,81,2,0.0 +18434,38,263.5,9,0.0 +18434,46,12,21,0.0 +18434,14,23.25,13,0.0 +18434,6,25,45,0.0 +18434,47,9.5,6,0.0 +18434,52,7,17,0.0 +18434,65,21.05,4,0.0 +18434,29,123.79,3,0.0 +18434,3,10,46,0.0 +18434,48,12.75,32,0.0 +18434,13,6,37,0.0 +18434,50,16.25,39,0.0 +18434,5,21.35,21,0.0 +18434,55,24,26,0.0 +18434,10,31,42,0.0 +18434,15,15.5,8,0.0 +18435,41,9.65,40,0.0 +18435,19,9.2,3,0.0 +18435,28,45.6,28,0.0 +18435,20,81,2,0.0 +18435,63,43.9,24,0.0 +18435,3,10,2,0.0 +18435,12,38,17,0.0 +18435,2,19,47,0.0 +18435,58,13.25,20,0.0 +18435,14,23.25,5,0.0 +18435,25,14,1,0.0 +18435,8,40,36,0.0 +18435,6,25,17,0.0 +18435,64,33.25,50,0.0 +18435,38,263.5,45,0.0 +18435,7,30,17,0.0 +18435,56,38,14,0.0 +18435,35,18,30,0.0 +18435,76,18,38,0.0 +18435,57,19.5,32,0.0 +18435,65,21.05,23,0.0 +18435,10,31,25,0.0 +18435,45,9.5,2,0.0 +18435,59,55,2,0.0 +18435,51,53,18,0.0 +18435,1,18,22,0.0 +18436,23,9,25,0.0 +18436,66,17,17,0.0 +18436,14,23.25,35,0.0 +18436,13,6,10,0.0 +18436,27,43.9,17,0.0 +18436,73,15,26,0.0 +18436,37,26,27,0.0 +18436,19,9.2,20,0.0 +18436,1,18,19,0.0 +18436,76,18,42,0.0 +18436,74,10,15,0.0 +18436,48,12.75,29,0.0 +18436,31,12.5,22,0.0 +18436,65,21.05,12,0.0 +18436,62,49.3,47,0.0 +18436,4,22,24,0.0 +18436,60,34,39,0.0 +18436,75,7.75,2,0.0 +18436,24,4.5,37,0.0 +18436,33,2.5,30,0.0 +18436,38,263.5,37,0.0 +18436,72,34.8,44,0.0 +18436,6,25,31,0.0 +18436,16,17.45,34,0.0 +18436,47,9.5,41,0.0 +18436,28,45.6,12,0.0 +18436,18,62.5,17,0.0 +18436,67,14,19,0.0 +18436,35,18,34,0.0 +18436,58,13.25,28,0.0 +18436,29,123.79,11,0.0 +18436,63,43.9,42,0.0 +18436,42,14,43,0.0 +18436,55,24,37,0.0 +18436,39,18,35,0.0 +18436,32,32,24,0.0 +18436,46,12,30,0.0 +18436,25,14,34,0.0 +18437,8,40,32,0.0 +18437,41,9.65,27,0.0 +18437,66,17,46,0.0 +18437,1,18,4,0.0 +18437,9,97,15,0.0 +18437,10,31,7,0.0 +18437,12,38,26,0.0 +18437,73,15,17,0.0 +18437,33,2.5,13,0.0 +18437,5,21.35,46,0.0 +18437,4,22,28,0.0 +18437,2,19,40,0.0 +18437,43,46,36,0.0 +18437,52,7,4,0.0 +18437,56,38,48,0.0 +18437,53,32.8,43,0.0 +18437,37,26,40,0.0 +18437,67,14,4,0.0 +18437,40,18.4,34,0.0 +18437,20,81,48,0.0 +18437,29,123.79,37,0.0 +18437,65,21.05,4,0.0 +18437,76,18,23,0.0 +18437,72,34.8,39,0.0 +18437,49,20,25,0.0 +18437,77,13,34,0.0 +18437,26,31.23,4,0.0 +18437,74,10,24,0.0 +18437,47,9.5,34,0.0 +18437,62,49.3,11,0.0 +18437,44,19.45,38,0.0 +18437,21,10,15,0.0 +18437,6,25,38,0.0 +18437,64,33.25,21,0.0 +18437,13,6,1,0.0 +18437,30,25.89,15,0.0 +18437,32,32,33,0.0 +18437,42,14,14,0.0 +18437,3,10,39,0.0 +18438,74,10,2,0.0 +18438,16,17.45,45,0.0 +18438,29,123.79,31,0.0 +18438,51,53,49,0.0 +18438,55,24,48,0.0 +18438,25,14,49,0.0 +18438,6,25,6,0.0 +18438,19,9.2,32,0.0 +18438,39,18,49,0.0 +18439,74,10,22,0.0 +18439,22,21,29,0.0 +18439,31,12.5,48,0.0 +18439,73,15,38,0.0 +18439,5,21.35,24,0.0 +18439,39,18,14,0.0 +18439,50,16.25,33,0.0 +18439,26,31.23,14,0.0 +18439,52,7,10,0.0 +18439,54,7.45,4,0.0 +18439,70,15,4,0.0 +18439,1,18,24,0.0 +18439,42,14,6,0.0 +18439,76,18,40,0.0 +18439,11,21,47,0.0 +18439,3,10,27,0.0 +18439,38,263.5,35,0.0 +18439,47,9.5,28,0.0 +18439,19,9.2,10,0.0 +18439,75,7.75,4,0.0 +18439,65,21.05,11,0.0 +18439,13,6,43,0.0 +18439,16,17.45,27,0.0 +18439,8,40,43,0.0 +18439,43,46,16,0.0 +18439,46,12,23,0.0 +18439,67,14,24,0.0 +18439,58,13.25,5,0.0 +18439,27,43.9,26,0.0 +18439,48,12.75,2,0.0 +18439,35,18,40,0.0 +18439,18,62.5,14,0.0 +18439,29,123.79,4,0.0 +18439,15,15.5,2,0.0 +18439,53,32.8,11,0.0 +18439,14,23.25,49,0.0 +18439,7,30,23,0.0 +18439,44,19.45,30,0.0 +18439,61,28.5,24,0.0 +18439,56,38,18,0.0 +18439,40,18.4,6,0.0 +18439,17,39,4,0.0 +18439,66,17,46,0.0 +18439,30,25.89,49,0.0 +18439,4,22,43,0.0 +18439,59,55,7,0.0 +18439,34,14,6,0.0 +18439,25,14,21,0.0 +18439,2,19,23,0.0 +18439,21,10,14,0.0 +18439,41,9.65,18,0.0 +18439,49,20,37,0.0 +18439,69,36,43,0.0 +18439,32,32,24,0.0 +18439,9,97,17,0.0 +18439,20,81,25,0.0 +18439,64,33.25,42,0.0 +18439,57,19.5,41,0.0 +18439,37,26,4,0.0 +18439,55,24,46,0.0 +18439,60,34,48,0.0 +18439,77,13,6,0.0 +18439,10,31,38,0.0 +18439,28,45.6,29,0.0 +18439,72,34.8,23,0.0 +18439,63,43.9,3,0.0 +18440,3,10,14,0.0 +18440,70,15,23,0.0 +18440,11,21,11,0.0 +18440,67,14,10,0.0 +18440,25,14,47,0.0 +18440,34,14,30,0.0 +18440,27,43.9,48,0.0 +18440,4,22,10,0.0 +18440,30,25.89,39,0.0 +18440,75,7.75,23,0.0 +18440,77,13,42,0.0 +18440,32,32,10,0.0 +18440,72,34.8,7,0.0 +18440,20,81,19,0.0 +18440,13,6,24,0.0 +18440,51,53,45,0.0 +18440,18,62.5,30,0.0 +18440,62,49.3,23,0.0 +18440,31,12.5,14,0.0 +18440,71,21.5,14,0.0 +18440,21,10,37,0.0 +18440,23,9,32,0.0 +18440,36,19,9,0.0 +18440,49,20,39,0.0 +18440,33,2.5,44,0.0 +18440,58,13.25,30,0.0 +18440,15,15.5,16,0.0 +18440,48,12.75,13,0.0 +18440,19,9.2,5,0.0 +18440,38,263.5,36,0.0 +18440,37,26,42,0.0 +18440,66,17,14,0.0 +18440,76,18,5,0.0 +18440,2,19,16,0.0 +18440,73,15,27,0.0 +18440,22,21,19,0.0 +18440,10,31,23,0.0 +18440,42,14,20,0.0 +18440,54,7.45,41,0.0 +18440,45,9.5,34,0.0 +18440,29,123.79,42,0.0 +18440,59,55,21,0.0 +18440,53,32.8,1,0.0 +18440,60,34,26,0.0 +18440,14,23.25,11,0.0 +18440,43,46,1,0.0 +18440,26,31.23,31,0.0 +18440,61,28.5,44,0.0 +18440,65,21.05,6,0.0 +18440,8,40,46,0.0 +18440,7,30,23,0.0 +18440,12,38,16,0.0 +18440,5,21.35,6,0.0 +18440,64,33.25,16,0.0 +18440,44,19.45,19,0.0 +18440,55,24,31,0.0 +18440,39,18,9,0.0 +18440,1,18,5,0.0 +18440,52,7,36,0.0 +18440,47,9.5,14,0.0 +18440,40,18.4,10,0.0 +18440,28,45.6,10,0.0 +18440,16,17.45,47,0.0 +18440,24,4.5,16,0.0 +18440,63,43.9,11,0.0 +18440,46,12,46,0.0 +18440,68,12.5,17,0.0 +18440,35,18,14,0.0 +18440,41,9.65,28,0.0 +18440,56,38,35,0.0 +18441,2,19,16,0.0 +18441,76,18,24,0.0 +18441,73,15,5,0.0 +18441,37,26,37,0.0 +18441,46,12,49,0.0 +18441,17,39,9,0.0 +18441,55,24,41,0.0 +18441,64,33.25,20,0.0 +18441,7,30,24,0.0 +18441,39,18,27,0.0 +18441,29,123.79,4,0.0 +18441,4,22,15,0.0 +18441,57,19.5,50,0.0 +18441,12,38,35,0.0 +18441,35,18,47,0.0 +18441,9,97,43,0.0 +18441,6,25,39,0.0 +18441,48,12.75,36,0.0 +18441,60,34,43,0.0 +18441,72,34.8,5,0.0 +18441,38,263.5,25,0.0 +18441,11,21,3,0.0 +18441,75,7.75,48,0.0 +18441,74,10,34,0.0 +18441,14,23.25,49,0.0 +18441,66,17,30,0.0 +18441,15,15.5,27,0.0 +18441,44,19.45,34,0.0 +18441,53,32.8,3,0.0 +18441,61,28.5,23,0.0 +18441,70,15,39,0.0 +18441,58,13.25,43,0.0 +18441,24,4.5,32,0.0 +18441,40,18.4,33,0.0 +18441,56,38,8,0.0 +18441,3,10,30,0.0 +18441,65,21.05,5,0.0 +18441,25,14,47,0.0 +18441,28,45.6,3,0.0 +18441,63,43.9,1,0.0 +18441,27,43.9,15,0.0 +18441,51,53,1,0.0 +18441,26,31.23,6,0.0 +18441,62,49.3,37,0.0 +18441,43,46,43,0.0 +18441,1,18,46,0.0 +18441,21,10,21,0.0 +18441,54,7.45,22,0.0 +18441,45,9.5,15,0.0 +18441,22,21,26,0.0 +18441,36,19,42,0.0 +18441,33,2.5,15,0.0 +18441,67,14,1,0.0 +18441,20,81,22,0.0 +18441,69,36,27,0.0 +18441,77,13,18,0.0 +18441,34,14,7,0.0 +18442,1,18,17,0.0 +18442,24,4.5,38,0.0 +18442,48,12.75,14,0.0 +18442,47,9.5,48,0.0 +18442,54,7.45,44,0.0 +18442,70,15,5,0.0 +18442,63,43.9,10,0.0 +18442,31,12.5,49,0.0 +18442,41,9.65,17,0.0 +18442,76,18,45,0.0 +18442,26,31.23,20,0.0 +18442,64,33.25,50,0.0 +18442,72,34.8,8,0.0 +18442,25,14,43,0.0 +18442,56,38,41,0.0 +18442,17,39,49,0.0 +18442,38,263.5,18,0.0 +18442,7,30,29,0.0 +18442,18,62.5,2,0.0 +18442,51,53,19,0.0 +18442,49,20,43,0.0 +18442,20,81,35,0.0 +18442,61,28.5,43,0.0 +18442,35,18,42,0.0 +18442,75,7.75,49,0.0 +18442,50,16.25,31,0.0 +18442,68,12.5,14,0.0 +18442,29,123.79,37,0.0 +18442,12,38,30,0.0 +18442,55,24,45,0.0 +18442,44,19.45,22,0.0 +18442,45,9.5,11,0.0 +18442,19,9.2,9,0.0 +18442,6,25,22,0.0 +18442,46,12,41,0.0 +18442,60,34,43,0.0 +18442,42,14,11,0.0 +18442,14,23.25,40,0.0 +18442,34,14,38,0.0 +18442,33,2.5,21,0.0 +18442,30,25.89,20,0.0 +18442,73,15,19,0.0 +18442,52,7,19,0.0 +18442,32,32,28,0.0 +18442,5,21.35,40,0.0 +18442,22,21,20,0.0 +18442,74,10,28,0.0 +18442,10,31,6,0.0 +18442,8,40,12,0.0 +18442,28,45.6,21,0.0 +18442,4,22,14,0.0 +18442,65,21.05,20,0.0 +18442,23,9,5,0.0 +18442,11,21,26,0.0 +18442,15,15.5,45,0.0 +18442,71,21.5,32,0.0 +18442,58,13.25,13,0.0 +18442,59,55,23,0.0 +18442,3,10,21,0.0 +18443,34,14,27,0.0 +18443,73,15,35,0.0 +18443,22,21,5,0.0 +18443,23,9,27,0.0 +18443,17,39,47,0.0 +18443,27,43.9,50,0.0 +18443,36,19,18,0.0 +18443,15,15.5,2,0.0 +18443,2,19,20,0.0 +18443,19,9.2,18,0.0 +18443,58,13.25,14,0.0 +18444,3,10,48,0.0 +18444,24,4.5,8,0.0 +18444,73,15,36,0.0 +18444,18,62.5,28,0.0 +18444,74,10,36,0.0 +18444,2,19,40,0.0 +18444,10,31,40,0.0 +18444,38,263.5,11,0.0 +18444,72,34.8,49,0.0 +18444,29,123.79,28,0.0 +18444,58,13.25,4,0.0 +18444,21,10,28,0.0 +18444,77,13,27,0.0 +18444,57,19.5,16,0.0 +18444,33,2.5,40,0.0 +18444,61,28.5,38,0.0 +18444,32,32,42,0.0 +18444,22,21,19,0.0 +18444,11,21,19,0.0 +18444,42,14,33,0.0 +18444,76,18,43,0.0 +18445,3,10,35,0.0 +18445,37,26,13,0.0 +18445,12,38,11,0.0 +18445,41,9.65,25,0.0 +18445,27,43.9,24,0.0 +18445,74,10,4,0.0 +18445,14,23.25,26,0.0 +18445,48,12.75,44,0.0 +18445,18,62.5,29,0.0 +18445,24,4.5,20,0.0 +18445,38,263.5,39,0.0 +18445,7,30,2,0.0 +18445,76,18,27,0.0 +18445,61,28.5,21,0.0 +18445,45,9.5,22,0.0 +18445,29,123.79,13,0.0 +18445,72,34.8,46,0.0 +18445,1,18,25,0.0 +18445,33,2.5,32,0.0 +18445,46,12,26,0.0 +18445,26,31.23,4,0.0 +18445,31,12.5,12,0.0 +18445,67,14,39,0.0 +18445,17,39,7,0.0 +18445,16,17.45,40,0.0 +18445,11,21,34,0.0 +18445,49,20,3,0.0 +18445,5,21.35,33,0.0 +18445,13,6,43,0.0 +18445,66,17,18,0.0 +18445,39,18,12,0.0 +18445,56,38,35,0.0 +18445,51,53,24,0.0 +18445,75,7.75,44,0.0 +18445,43,46,23,0.0 +18445,47,9.5,4,0.0 +18445,62,49.3,34,0.0 +18445,63,43.9,48,0.0 +18445,25,14,6,0.0 +18445,71,21.5,24,0.0 +18445,68,12.5,22,0.0 +18445,34,14,5,0.0 +18445,28,45.6,16,0.0 +18445,52,7,29,0.0 +18445,35,18,44,0.0 +18445,36,19,25,0.0 +18445,21,10,42,0.0 +18445,4,22,43,0.0 +18445,40,18.4,5,0.0 +18445,42,14,25,0.0 +18445,69,36,30,0.0 +18445,10,31,30,0.0 +18445,50,16.25,28,0.0 +18445,60,34,45,0.0 +18445,44,19.45,6,0.0 +18445,8,40,42,0.0 +18445,2,19,20,0.0 +18445,9,97,2,0.0 +18445,58,13.25,7,0.0 +18445,57,19.5,5,0.0 +18445,65,21.05,11,0.0 +18445,53,32.8,32,0.0 +18445,22,21,40,0.0 +18445,64,33.25,25,0.0 +18445,55,24,7,0.0 +18445,70,15,10,0.0 +18446,40,18.4,16,0.0 +18446,33,2.5,10,0.0 +18446,74,10,21,0.0 +18446,57,19.5,25,0.0 +18446,4,22,2,0.0 +18446,44,19.45,35,0.0 +18446,30,25.89,46,0.0 +18446,75,7.75,48,0.0 +18446,7,30,5,0.0 +18446,28,45.6,43,0.0 +18446,29,123.79,17,0.0 +18446,32,32,30,0.0 +18446,50,16.25,16,0.0 +18446,77,13,32,0.0 +18446,15,15.5,12,0.0 +18446,2,19,21,0.0 +18446,10,31,17,0.0 +18446,12,38,20,0.0 +18446,55,24,50,0.0 +18446,66,17,35,0.0 +18446,65,21.05,48,0.0 +18446,35,18,39,0.0 +18446,61,28.5,16,0.0 +18446,21,10,9,0.0 +18446,34,14,12,0.0 +18446,64,33.25,38,0.0 +18446,76,18,38,0.0 +18446,45,9.5,36,0.0 +18446,37,26,34,0.0 +18446,43,46,20,0.0 +18446,36,19,22,0.0 +18446,73,15,4,0.0 +18446,70,15,11,0.0 +18446,3,10,49,0.0 +18446,13,6,33,0.0 +18446,22,21,3,0.0 +18446,25,14,18,0.0 +18446,9,97,13,0.0 +18446,63,43.9,27,0.0 +18446,23,9,12,0.0 +18446,46,12,31,0.0 +18446,54,7.45,7,0.0 +18446,59,55,7,0.0 +18446,60,34,33,0.0 +18446,6,25,34,0.0 +18446,17,39,21,0.0 +18446,14,23.25,28,0.0 +18446,72,34.8,23,0.0 +18446,56,38,47,0.0 +18446,58,13.25,38,0.0 +18446,8,40,39,0.0 +18446,67,14,2,0.0 +18446,5,21.35,35,0.0 +18446,26,31.23,2,0.0 +18446,27,43.9,42,0.0 +18446,48,12.75,4,0.0 +18446,51,53,42,0.0 +18446,53,32.8,19,0.0 +18446,68,12.5,14,0.0 +18446,18,62.5,2,0.0 +18446,20,81,36,0.0 +18446,38,263.5,9,0.0 +18446,39,18,2,0.0 +18447,47,9.5,40,0.0 +18447,48,12.75,42,0.0 +18447,75,7.75,16,0.0 +18447,56,38,34,0.0 +18447,6,25,40,0.0 +18447,22,21,45,0.0 +18447,13,6,41,0.0 +18447,53,32.8,29,0.0 +18447,10,31,26,0.0 +18447,36,19,3,0.0 +18447,70,15,5,0.0 +18447,8,40,15,0.0 +18447,55,24,22,0.0 +18447,58,13.25,38,0.0 +18447,54,7.45,7,0.0 +18447,32,32,26,0.0 +18447,59,55,6,0.0 +18447,67,14,28,0.0 +18447,23,9,7,0.0 +18447,74,10,49,0.0 +18447,35,18,50,0.0 +18447,68,12.5,2,0.0 +18447,5,21.35,27,0.0 +18447,20,81,18,0.0 +18447,31,12.5,9,0.0 +18447,41,9.65,10,0.0 +18447,37,26,5,0.0 +18447,72,34.8,48,0.0 +18447,52,7,42,0.0 +18447,42,14,50,0.0 +18447,19,9.2,24,0.0 +18447,14,23.25,25,0.0 +18447,51,53,36,0.0 +18447,45,9.5,14,0.0 +18447,12,38,29,0.0 +18447,61,28.5,45,0.0 +18447,18,62.5,1,0.0 +18447,69,36,6,0.0 +18447,7,30,16,0.0 +18447,9,97,6,0.0 +18448,29,123.79,46,0.0 +18448,52,7,18,0.0 +18448,42,14,49,0.0 +18448,62,49.3,33,0.0 +18448,18,62.5,2,0.0 +18448,31,12.5,15,0.0 +18449,15,15.5,5,0.0 +18449,33,2.5,41,0.0 +18449,61,28.5,43,0.0 +18449,50,16.25,47,0.0 +18449,20,81,13,0.0 +18449,8,40,33,0.0 +18449,49,20,29,0.0 +18449,1,18,8,0.0 +18449,71,21.5,33,0.0 +18449,69,36,48,0.0 +18449,52,7,19,0.0 +18449,62,49.3,7,0.0 +18449,44,19.45,4,0.0 +18449,66,17,19,0.0 +18449,42,14,20,0.0 +18449,5,21.35,48,0.0 +18449,32,32,48,0.0 +18449,55,24,11,0.0 +18449,22,21,39,0.0 +18449,10,31,19,0.0 +18449,27,43.9,42,0.0 +18449,16,17.45,24,0.0 +18449,45,9.5,43,0.0 +18449,64,33.25,3,0.0 +18449,4,22,19,0.0 +18449,26,31.23,21,0.0 +18449,47,9.5,18,0.0 +18449,59,55,30,0.0 +18449,38,263.5,13,0.0 +18449,75,7.75,50,0.0 +18449,14,23.25,7,0.0 +18449,46,12,8,0.0 +18449,25,14,6,0.0 +18449,11,21,8,0.0 +18450,31,12.5,32,0.0 +18450,36,19,12,0.0 +18450,50,16.25,13,0.0 +18450,63,43.9,34,0.0 +18450,53,32.8,46,0.0 +18450,47,9.5,38,0.0 +18450,1,18,37,0.0 +18450,26,31.23,27,0.0 +18450,20,81,29,0.0 +18450,77,13,3,0.0 +18450,13,6,48,0.0 +18450,16,17.45,28,0.0 +18450,21,10,38,0.0 +18450,28,45.6,28,0.0 +18450,44,19.45,17,0.0 +18450,6,25,10,0.0 +18450,18,62.5,38,0.0 +18450,12,38,8,0.0 +18450,3,10,35,0.0 +18450,57,19.5,20,0.0 +18450,39,18,45,0.0 +18450,8,40,47,0.0 +18450,23,9,50,0.0 +18450,65,21.05,6,0.0 +18450,62,49.3,5,0.0 +18450,52,7,41,0.0 +18450,66,17,13,0.0 +18450,17,39,5,0.0 +18450,38,263.5,35,0.0 +18450,14,23.25,44,0.0 +18450,76,18,31,0.0 +18450,33,2.5,34,0.0 +18450,45,9.5,14,0.0 +18450,24,4.5,21,0.0 +18450,15,15.5,31,0.0 +18450,46,12,13,0.0 +18450,67,14,50,0.0 +18450,42,14,32,0.0 +18450,29,123.79,31,0.0 +18450,34,14,2,0.0 +18450,68,12.5,44,0.0 +18450,59,55,31,0.0 +18450,30,25.89,18,0.0 +18450,55,24,14,0.0 +18450,25,14,46,0.0 +18451,69,36,45,0.0 +18451,12,38,22,0.0 +18451,59,55,35,0.0 +18451,27,43.9,35,0.0 +18451,54,7.45,14,0.0 +18451,20,81,32,0.0 +18451,1,18,2,0.0 +18451,10,31,1,0.0 +18451,55,24,50,0.0 +18451,33,2.5,31,0.0 +18451,70,15,47,0.0 +18451,3,10,39,0.0 +18451,72,34.8,21,0.0 +18451,71,21.5,31,0.0 +18451,2,19,17,0.0 +18451,52,7,32,0.0 +18451,37,26,30,0.0 +18451,58,13.25,15,0.0 +18451,41,9.65,16,0.0 +18451,61,28.5,24,0.0 +18451,31,12.5,29,0.0 +18451,62,49.3,39,0.0 +18451,44,19.45,9,0.0 +18451,13,6,40,0.0 +18451,56,38,47,0.0 +18451,50,16.25,1,0.0 +18451,26,31.23,19,0.0 +18451,46,12,4,0.0 +18451,19,9.2,20,0.0 +18452,4,22,3,0.0 +18452,71,21.5,8,0.0 +18452,7,30,14,0.0 +18452,50,16.25,43,0.0 +18452,6,25,28,0.0 +18452,57,19.5,15,0.0 +18452,77,13,12,0.0 +18452,64,33.25,17,0.0 +18452,38,263.5,46,0.0 +18452,67,14,44,0.0 +18452,12,38,32,0.0 +18452,37,26,41,0.0 +18452,8,40,11,0.0 +18452,36,19,11,0.0 +18452,52,7,32,0.0 +18452,32,32,15,0.0 +18452,26,31.23,43,0.0 +18452,73,15,7,0.0 +18452,44,19.45,25,0.0 +18452,48,12.75,48,0.0 +18452,56,38,17,0.0 +18452,31,12.5,34,0.0 +18452,20,81,16,0.0 +18452,61,28.5,49,0.0 +18452,17,39,35,0.0 +18452,25,14,8,0.0 +18452,59,55,23,0.0 +18452,49,20,34,0.0 +18452,75,7.75,13,0.0 +18452,72,34.8,31,0.0 +18452,63,43.9,10,0.0 +18452,66,17,9,0.0 +18452,19,9.2,14,0.0 +18452,27,43.9,14,0.0 +18452,5,21.35,44,0.0 +18452,45,9.5,40,0.0 +18452,62,49.3,30,0.0 +18453,10,31,14,0.0 +18453,76,18,15,0.0 +18453,69,36,30,0.0 +18453,63,43.9,8,0.0 +18453,28,45.6,40,0.0 +18453,26,31.23,19,0.0 +18453,77,13,37,0.0 +18453,14,23.25,26,0.0 +18453,55,24,12,0.0 +18453,13,6,8,0.0 +18453,31,12.5,19,0.0 +18453,61,28.5,15,0.0 +18453,30,25.89,38,0.0 +18453,27,43.9,12,0.0 +18453,39,18,9,0.0 +18453,38,263.5,24,0.0 +18453,66,17,3,0.0 +18453,68,12.5,48,0.0 +18453,48,12.75,38,0.0 +18453,45,9.5,14,0.0 +18453,23,9,30,0.0 +18453,22,21,8,0.0 +18453,8,40,44,0.0 +18453,74,10,47,0.0 +18453,24,4.5,7,0.0 +18453,65,21.05,39,0.0 +18453,71,21.5,30,0.0 +18453,18,62.5,46,0.0 +18453,11,21,28,0.0 +18453,34,14,15,0.0 +18453,7,30,36,0.0 +18453,73,15,7,0.0 +18453,17,39,15,0.0 +18453,36,19,44,0.0 +18453,42,14,28,0.0 +18453,49,20,37,0.0 +18453,1,18,42,0.0 +18453,60,34,20,0.0 +18453,15,15.5,14,0.0 +18453,29,123.79,6,0.0 +18453,59,55,19,0.0 +18453,44,19.45,37,0.0 +18453,72,34.8,42,0.0 +18453,19,9.2,44,0.0 +18453,4,22,22,0.0 +18453,64,33.25,14,0.0 +18453,53,32.8,3,0.0 +18453,6,25,19,0.0 +18453,41,9.65,3,0.0 +18453,70,15,26,0.0 +18453,50,16.25,1,0.0 +18453,58,13.25,33,0.0 +18453,32,32,4,0.0 +18453,20,81,40,0.0 +18453,54,7.45,1,0.0 +18453,9,97,42,0.0 +18453,51,53,11,0.0 +18453,33,2.5,24,0.0 +18453,47,9.5,37,0.0 +18453,56,38,19,0.0 +18453,46,12,10,0.0 +18453,3,10,46,0.0 +18453,62,49.3,45,0.0 +18453,40,18.4,42,0.0 +18453,67,14,12,0.0 +18453,5,21.35,6,0.0 +18453,2,19,16,0.0 +18453,37,26,4,0.0 +18453,25,14,42,0.0 +18453,16,17.45,38,0.0 +18453,12,38,44,0.0 +18453,35,18,1,0.0 +18453,52,7,32,0.0 +18453,21,10,40,0.0 +18453,43,46,27,0.0 +18453,57,19.5,19,0.0 +18453,75,7.75,11,0.0 +18454,25,14,20,0.0 +18454,21,10,1,0.0 +18454,6,25,8,0.0 +18454,16,17.45,48,0.0 +18454,61,28.5,44,0.0 +18454,10,31,19,0.0 +18454,1,18,6,0.0 +18454,39,18,49,0.0 +18454,45,9.5,36,0.0 +18454,60,34,1,0.0 +18454,48,12.75,26,0.0 +18454,33,2.5,4,0.0 +18454,27,43.9,16,0.0 +18454,53,32.8,42,0.0 +18454,20,81,30,0.0 +18454,18,62.5,8,0.0 +18454,17,39,38,0.0 +18454,29,123.79,24,0.0 +18454,30,25.89,28,0.0 +18454,22,21,22,0.0 +18454,76,18,39,0.0 +18454,11,21,46,0.0 +18454,34,14,4,0.0 +18454,35,18,17,0.0 +18454,69,36,32,0.0 +18454,63,43.9,39,0.0 +18454,50,16.25,32,0.0 +18454,41,9.65,35,0.0 +18454,68,12.5,14,0.0 +18454,64,33.25,32,0.0 +18454,67,14,48,0.0 +18454,59,55,50,0.0 +18454,74,10,20,0.0 +18454,4,22,15,0.0 +18454,51,53,11,0.0 +18454,31,12.5,21,0.0 +18454,65,21.05,29,0.0 +18454,12,38,41,0.0 +18454,26,31.23,50,0.0 +18454,40,18.4,31,0.0 +18454,77,13,19,0.0 +18454,70,15,25,0.0 +18454,43,46,10,0.0 +18454,52,7,42,0.0 +18454,47,9.5,27,0.0 +18454,49,20,23,0.0 +18454,44,19.45,49,0.0 +18454,7,30,49,0.0 +18454,36,19,17,0.0 +18454,75,7.75,42,0.0 +18454,73,15,27,0.0 +18454,55,24,17,0.0 +18454,3,10,49,0.0 +18454,23,9,35,0.0 +18455,58,13.25,38,0.0 +18455,55,24,21,0.0 +18455,32,32,36,0.0 +18455,74,10,3,0.0 +18455,9,97,48,0.0 +18455,52,7,50,0.0 +18455,7,30,18,0.0 +18455,31,12.5,49,0.0 +18455,54,7.45,15,0.0 +18455,65,21.05,15,0.0 +18455,33,2.5,32,0.0 +18455,34,14,21,0.0 +18455,62,49.3,41,0.0 +18455,20,81,11,0.0 +18455,75,7.75,37,0.0 +18455,19,9.2,2,0.0 +18455,40,18.4,18,0.0 +18455,28,45.6,45,0.0 +18455,48,12.75,34,0.0 +18455,47,9.5,27,0.0 +18455,50,16.25,8,0.0 +18455,17,39,50,0.0 +18455,13,6,8,0.0 +18455,64,33.25,30,0.0 +18455,2,19,2,0.0 +18455,23,9,39,0.0 +18455,41,9.65,31,0.0 +18455,36,19,33,0.0 +18455,16,17.45,5,0.0 +18455,57,19.5,17,0.0 +18455,10,31,41,0.0 +18455,5,21.35,17,0.0 +18455,53,32.8,49,0.0 +18455,45,9.5,23,0.0 +18456,76,18,40,0.0 +18456,23,9,5,0.0 +18456,3,10,10,0.0 +18456,32,32,34,0.0 +18456,1,18,31,0.0 +18456,7,30,43,0.0 +18456,50,16.25,39,0.0 +18456,13,6,35,0.0 +18456,61,28.5,10,0.0 +18456,55,24,5,0.0 +18456,12,38,45,0.0 +18456,73,15,33,0.0 +18456,57,19.5,1,0.0 +18456,52,7,26,0.0 +18456,51,53,1,0.0 +18456,29,123.79,28,0.0 +18456,69,36,15,0.0 +18456,49,20,16,0.0 +18456,56,38,45,0.0 +18456,48,12.75,29,0.0 +18456,8,40,22,0.0 +18456,31,12.5,35,0.0 +18456,45,9.5,8,0.0 +18456,36,19,19,0.0 +18456,65,21.05,30,0.0 +18456,41,9.65,9,0.0 +18456,9,97,13,0.0 +18456,18,62.5,16,0.0 +18456,58,13.25,41,0.0 +18456,5,21.35,11,0.0 +18456,47,9.5,16,0.0 +18456,72,34.8,2,0.0 +18456,10,31,9,0.0 +18456,25,14,10,0.0 +18456,62,49.3,34,0.0 +18456,22,21,25,0.0 +18456,2,19,22,0.0 +18456,21,10,38,0.0 +18456,71,21.5,10,0.0 +18456,34,14,25,0.0 +18456,11,21,21,0.0 +18456,44,19.45,12,0.0 +18456,39,18,20,0.0 +18456,60,34,20,0.0 +18456,46,12,22,0.0 +18456,68,12.5,6,0.0 +18456,74,10,47,0.0 +18456,19,9.2,28,0.0 +18457,1,18,15,0.0 +18457,77,13,1,0.0 +18457,37,26,38,0.0 +18457,35,18,48,0.0 +18457,30,25.89,14,0.0 +18457,49,20,8,0.0 +18457,57,19.5,8,0.0 +18457,26,31.23,30,0.0 +18457,75,7.75,10,0.0 +18457,64,33.25,49,0.0 +18457,39,18,30,0.0 +18457,38,263.5,2,0.0 +18457,4,22,22,0.0 +18457,29,123.79,32,0.0 +18458,30,25.89,46,0.0 +18458,65,21.05,9,0.0 +18458,27,43.9,25,0.0 +18458,71,21.5,50,0.0 +18458,18,62.5,27,0.0 +18458,26,31.23,49,0.0 +18458,25,14,43,0.0 +18459,68,12.5,9,0.0 +18459,18,62.5,40,0.0 +18459,50,16.25,10,0.0 +18459,19,9.2,46,0.0 +18459,70,15,4,0.0 +18459,62,49.3,5,0.0 +18459,63,43.9,26,0.0 +18459,61,28.5,42,0.0 +18459,34,14,42,0.0 +18459,3,10,26,0.0 +18459,15,15.5,30,0.0 +18459,17,39,7,0.0 +18459,55,24,23,0.0 +18459,20,81,38,0.0 +18459,2,19,5,0.0 +18459,27,43.9,47,0.0 +18459,53,32.8,23,0.0 +18459,72,34.8,34,0.0 +18459,6,25,43,0.0 +18459,14,23.25,5,0.0 +18459,37,26,7,0.0 +18459,40,18.4,42,0.0 +18459,71,21.5,9,0.0 +18459,31,12.5,17,0.0 +18459,56,38,31,0.0 +18459,52,7,24,0.0 +18459,5,21.35,12,0.0 +18459,22,21,7,0.0 +18459,26,31.23,6,0.0 +18459,51,53,6,0.0 +18459,49,20,45,0.0 +18459,23,9,21,0.0 +18459,16,17.45,14,0.0 +18459,33,2.5,37,0.0 +18459,57,19.5,46,0.0 +18459,43,46,22,0.0 +18459,66,17,7,0.0 +18459,46,12,39,0.0 +18459,74,10,50,0.0 +18459,59,55,42,0.0 +18460,43,46,42,0.0 +18460,32,32,11,0.0 +18460,39,18,10,0.0 +18460,42,14,33,0.0 +18460,60,34,46,0.0 +18460,38,263.5,2,0.0 +18460,14,23.25,47,0.0 +18460,17,39,42,0.0 +18460,44,19.45,4,0.0 +18460,56,38,11,0.0 +18460,73,15,2,0.0 +18460,4,22,12,0.0 +18460,71,21.5,44,0.0 +18460,41,9.65,31,0.0 +18460,6,25,49,0.0 +18460,19,9.2,39,0.0 +18460,21,10,43,0.0 +18460,76,18,34,0.0 +18460,68,12.5,50,0.0 +18460,70,15,38,0.0 +18460,29,123.79,49,0.0 +18460,15,15.5,35,0.0 +18460,23,9,12,0.0 +18460,3,10,10,0.0 +18460,30,25.89,4,0.0 +18460,26,31.23,3,0.0 +18460,47,9.5,32,0.0 +18460,31,12.5,12,0.0 +18460,59,55,16,0.0 +18460,75,7.75,25,0.0 +18460,10,31,1,0.0 +18460,7,30,36,0.0 +18460,54,7.45,18,0.0 +18460,16,17.45,28,0.0 +18460,62,49.3,5,0.0 +18460,53,32.8,38,0.0 +18460,34,14,17,0.0 +18460,67,14,5,0.0 +18460,58,13.25,39,0.0 +18460,2,19,29,0.0 +18460,72,34.8,12,0.0 +18460,33,2.5,13,0.0 +18460,48,12.75,14,0.0 +18460,28,45.6,16,0.0 +18460,37,26,47,0.0 +18460,20,81,30,0.0 +18460,51,53,22,0.0 +18460,12,38,42,0.0 +18460,64,33.25,13,0.0 +18460,22,21,50,0.0 +18460,36,19,45,0.0 +18460,1,18,44,0.0 +18460,9,97,21,0.0 +18460,24,4.5,42,0.0 +18460,55,24,37,0.0 +18460,49,20,27,0.0 +18460,46,12,6,0.0 +18460,77,13,48,0.0 +18460,65,21.05,2,0.0 +18460,63,43.9,15,0.0 +18460,25,14,27,0.0 +18460,27,43.9,4,0.0 +18460,13,6,41,0.0 +18461,33,2.5,22,0.0 +18461,68,12.5,46,0.0 +18461,56,38,33,0.0 +18461,52,7,43,0.0 +18461,10,31,32,0.0 +18461,20,81,11,0.0 +18461,26,31.23,1,0.0 +18461,22,21,35,0.0 +18461,44,19.45,1,0.0 +18461,62,49.3,40,0.0 +18461,60,34,49,0.0 +18461,67,14,42,0.0 +18461,71,21.5,34,0.0 +18461,46,12,6,0.0 +18461,63,43.9,17,0.0 +18461,36,19,50,0.0 +18461,53,32.8,35,0.0 +18461,59,55,26,0.0 +18461,38,263.5,49,0.0 +18461,16,17.45,2,0.0 +18461,77,13,25,0.0 +18461,3,10,42,0.0 +18462,39,18,8,0.0 +18462,24,4.5,32,0.0 +18462,72,34.8,34,0.0 +18462,19,9.2,8,0.0 +18462,52,7,16,0.0 +18462,58,13.25,11,0.0 +18462,25,14,31,0.0 +18462,3,10,6,0.0 +18462,9,97,1,0.0 +18462,34,14,29,0.0 +18462,1,18,24,0.0 +18462,45,9.5,24,0.0 +18462,56,38,27,0.0 +18462,77,13,43,0.0 +18462,12,38,39,0.0 +18462,30,25.89,44,0.0 +18462,4,22,3,0.0 +18462,59,55,22,0.0 +18462,18,62.5,38,0.0 +18462,23,9,12,0.0 +18462,51,53,1,0.0 +18462,10,31,17,0.0 +18462,70,15,22,0.0 +18462,13,6,40,0.0 +18462,74,10,27,0.0 +18462,69,36,48,0.0 +18462,67,14,9,0.0 +18462,17,39,3,0.0 +18462,47,9.5,31,0.0 +18462,35,18,9,0.0 +18462,16,17.45,16,0.0 +18462,27,43.9,45,0.0 +18462,62,49.3,34,0.0 +18462,64,33.25,37,0.0 +18462,36,19,8,0.0 +18462,43,46,9,0.0 +18462,11,21,48,0.0 +18462,63,43.9,30,0.0 +18462,31,12.5,39,0.0 +18462,2,19,34,0.0 +18462,7,30,44,0.0 +18462,14,23.25,4,0.0 +18462,20,81,21,0.0 +18462,61,28.5,10,0.0 +18462,29,123.79,1,0.0 +18462,68,12.5,39,0.0 +18462,73,15,45,0.0 +18462,21,10,2,0.0 +18462,26,31.23,6,0.0 +18462,41,9.65,41,0.0 +18462,54,7.45,10,0.0 +18462,75,7.75,44,0.0 +18462,50,16.25,9,0.0 +18463,30,25.89,4,0.0 +18463,44,19.45,18,0.0 +18463,29,123.79,45,0.0 +18463,71,21.5,13,0.0 +18463,4,22,45,0.0 +18463,51,53,28,0.0 +18463,77,13,30,0.0 +18463,58,13.25,29,0.0 +18463,14,23.25,36,0.0 +18463,61,28.5,24,0.0 +18463,23,9,48,0.0 +18463,73,15,49,0.0 +18463,43,46,50,0.0 +18463,65,21.05,11,0.0 +18463,39,18,39,0.0 +18463,54,7.45,43,0.0 +18463,2,19,37,0.0 +18463,17,39,12,0.0 +18463,59,55,35,0.0 +18463,16,17.45,33,0.0 +18463,64,33.25,12,0.0 +18463,24,4.5,26,0.0 +18463,12,38,35,0.0 +18463,48,12.75,8,0.0 +18463,45,9.5,4,0.0 +18463,31,12.5,44,0.0 +18463,68,12.5,31,0.0 +18463,55,24,40,0.0 +18463,36,19,11,0.0 +18463,53,32.8,49,0.0 +18463,41,9.65,20,0.0 +18463,72,34.8,17,0.0 +18463,33,2.5,45,0.0 +18463,32,32,46,0.0 +18463,28,45.6,13,0.0 +18463,8,40,11,0.0 +18463,27,43.9,7,0.0 +18463,7,30,17,0.0 +18463,9,97,48,0.0 +18463,66,17,35,0.0 +18463,13,6,47,0.0 +18464,7,30,33,0.0 +18464,42,14,23,0.0 +18464,44,19.45,29,0.0 +18464,63,43.9,28,0.0 +18465,21,10,1,0.0 +18465,61,28.5,21,0.0 +18465,68,12.5,18,0.0 +18465,11,21,40,0.0 +18465,63,43.9,47,0.0 +18465,56,38,1,0.0 +18465,55,24,23,0.0 +18465,31,12.5,27,0.0 +18465,77,13,1,0.0 +18465,47,9.5,11,0.0 +18465,50,16.25,6,0.0 +18465,14,23.25,50,0.0 +18465,48,12.75,2,0.0 +18465,62,49.3,36,0.0 +18465,28,45.6,37,0.0 +18465,30,25.89,12,0.0 +18465,4,22,4,0.0 +18465,19,9.2,22,0.0 +18465,75,7.75,29,0.0 +18465,44,19.45,25,0.0 +18465,51,53,39,0.0 +18465,10,31,30,0.0 +18465,42,14,34,0.0 +18465,37,26,33,0.0 +18465,12,38,36,0.0 +18465,41,9.65,10,0.0 +18465,24,4.5,29,0.0 +18465,25,14,30,0.0 +18465,66,17,10,0.0 +18466,77,13,15,0.0 +18466,48,12.75,10,0.0 +18466,7,30,9,0.0 +18466,37,26,7,0.0 +18466,25,14,24,0.0 +18466,28,45.6,32,0.0 +18466,27,43.9,4,0.0 +18466,29,123.79,9,0.0 +18466,24,4.5,5,0.0 +18466,33,2.5,7,0.0 +18466,36,19,19,0.0 +18466,18,62.5,8,0.0 +18466,56,38,27,0.0 +18466,35,18,33,0.0 +18466,30,25.89,16,0.0 +18466,8,40,8,0.0 +18466,61,28.5,36,0.0 +18466,6,25,28,0.0 +18466,5,21.35,41,0.0 +18466,40,18.4,13,0.0 +18466,32,32,5,0.0 +18466,4,22,4,0.0 +18466,51,53,30,0.0 +18466,71,21.5,10,0.0 +18466,57,19.5,30,0.0 +18466,73,15,21,0.0 +18466,34,14,11,0.0 +18466,23,9,34,0.0 +18466,55,24,37,0.0 +18466,1,18,22,0.0 +18466,64,33.25,24,0.0 +18466,16,17.45,29,0.0 +18466,13,6,41,0.0 +18466,46,12,50,0.0 +18466,68,12.5,46,0.0 +18466,52,7,23,0.0 +18466,38,263.5,44,0.0 +18466,39,18,23,0.0 +18466,58,13.25,17,0.0 +18466,75,7.75,32,0.0 +18466,14,23.25,10,0.0 +18466,17,39,17,0.0 +18466,11,21,30,0.0 +18466,60,34,22,0.0 +18466,62,49.3,45,0.0 +18467,77,13,28,0.0 +18467,36,19,22,0.0 +18467,17,39,45,0.0 +18467,9,97,4,0.0 +18467,41,9.65,39,0.0 +18467,21,10,43,0.0 +18467,33,2.5,13,0.0 +18467,12,38,29,0.0 +18467,10,31,49,0.0 +18467,31,12.5,22,0.0 +18467,1,18,18,0.0 +18467,71,21.5,11,0.0 +18467,47,9.5,5,0.0 +18467,40,18.4,6,0.0 +18467,50,16.25,36,0.0 +18467,48,12.75,7,0.0 +18467,24,4.5,27,0.0 +18467,18,62.5,15,0.0 +18467,68,12.5,17,0.0 +18467,69,36,3,0.0 +18467,23,9,33,0.0 +18467,5,21.35,8,0.0 +18467,39,18,5,0.0 +18467,64,33.25,28,0.0 +18467,63,43.9,2,0.0 +18467,20,81,44,0.0 +18467,14,23.25,6,0.0 +18467,15,15.5,23,0.0 +18467,59,55,27,0.0 +18467,61,28.5,49,0.0 +18467,62,49.3,50,0.0 +18468,43,46,24,0.0 +18468,75,7.75,11,0.0 +18468,44,19.45,6,0.0 +18468,36,19,7,0.0 +18468,5,21.35,46,0.0 +18468,13,6,7,0.0 +18468,54,7.45,11,0.0 +18468,47,9.5,15,0.0 +18468,6,25,1,0.0 +18468,56,38,12,0.0 +18468,57,19.5,44,0.0 +18468,53,32.8,45,0.0 +18468,32,32,10,0.0 +18468,71,21.5,28,0.0 +18468,28,45.6,18,0.0 +18469,37,26,32,0.0 +18469,21,10,37,0.0 +18469,72,34.8,9,0.0 +18469,16,17.45,45,0.0 +18469,76,18,47,0.0 +18469,36,19,9,0.0 +18469,17,39,24,0.0 +18469,64,33.25,30,0.0 +18469,28,45.6,12,0.0 +18469,32,32,1,0.0 +18469,7,30,6,0.0 +18469,60,34,20,0.0 +18469,50,16.25,26,0.0 +18469,8,40,42,0.0 +18469,19,9.2,38,0.0 +18469,25,14,27,0.0 +18469,27,43.9,35,0.0 +18469,47,9.5,34,0.0 +18469,39,18,15,0.0 +18469,51,53,8,0.0 +18469,54,7.45,24,0.0 +18469,18,62.5,15,0.0 +18469,20,81,3,0.0 +18469,46,12,42,0.0 +18469,52,7,2,0.0 +18469,29,123.79,49,0.0 +18469,70,15,49,0.0 +18469,43,46,50,0.0 +18469,11,21,34,0.0 +18469,75,7.75,10,0.0 +18469,26,31.23,46,0.0 +18469,3,10,18,0.0 +18469,40,18.4,2,0.0 +18469,49,20,12,0.0 +18469,12,38,13,0.0 +18469,1,18,32,0.0 +18469,13,6,1,0.0 +18469,2,19,27,0.0 +18469,61,28.5,19,0.0 +18469,44,19.45,39,0.0 +18469,30,25.89,49,0.0 +18469,33,2.5,10,0.0 +18469,34,14,29,0.0 +18469,5,21.35,14,0.0 +18469,22,21,13,0.0 +18469,45,9.5,38,0.0 +18469,38,263.5,36,0.0 +18469,4,22,15,0.0 +18469,23,9,4,0.0 +18470,63,43.9,13,0.0 +18470,33,2.5,28,0.0 +18470,26,31.23,26,0.0 +18470,43,46,41,0.0 +18470,2,19,22,0.0 +18470,31,12.5,8,0.0 +18470,71,21.5,25,0.0 +18470,32,32,50,0.0 +18470,59,55,35,0.0 +18470,23,9,9,0.0 +18470,30,25.89,47,0.0 +18470,57,19.5,45,0.0 +18470,19,9.2,50,0.0 +18470,48,12.75,32,0.0 +18470,22,21,5,0.0 +18470,16,17.45,41,0.0 +18470,8,40,12,0.0 +18470,39,18,8,0.0 +18470,65,21.05,5,0.0 +18470,11,21,2,0.0 +18470,62,49.3,14,0.0 +18470,34,14,30,0.0 +18470,44,19.45,41,0.0 +18470,35,18,44,0.0 +18470,50,16.25,34,0.0 +18470,13,6,18,0.0 +18470,7,30,21,0.0 +18470,70,15,43,0.0 +18470,36,19,23,0.0 +18470,56,38,44,0.0 +18470,9,97,36,0.0 +18470,37,26,20,0.0 +18470,20,81,18,0.0 +18470,74,10,22,0.0 +18470,47,9.5,22,0.0 +18470,25,14,6,0.0 +18470,38,263.5,9,0.0 +18470,55,24,10,0.0 +18470,6,25,21,0.0 +18470,24,4.5,18,0.0 +18470,72,34.8,8,0.0 +18470,17,39,38,0.0 +18470,75,7.75,14,0.0 +18470,69,36,42,0.0 +18470,18,62.5,45,0.0 +18470,1,18,9,0.0 +18470,4,22,48,0.0 +18470,68,12.5,29,0.0 +18470,5,21.35,46,0.0 +18470,53,32.8,2,0.0 +18470,15,15.5,46,0.0 +18470,42,14,43,0.0 +18470,64,33.25,30,0.0 +18470,51,53,43,0.0 +18470,67,14,46,0.0 +18470,14,23.25,49,0.0 +18470,52,7,48,0.0 +18471,48,12.75,24,0.0 +18471,71,21.5,32,0.0 +18471,64,33.25,46,0.0 +18471,72,34.8,36,0.0 +18471,10,31,12,0.0 +18471,44,19.45,43,0.0 +18471,19,9.2,46,0.0 +18471,66,17,10,0.0 +18471,29,123.79,21,0.0 +18471,17,39,30,0.0 +18471,76,18,21,0.0 +18471,12,38,46,0.0 +18471,43,46,9,0.0 +18471,27,43.9,1,0.0 +18471,41,9.65,14,0.0 +18471,70,15,39,0.0 +18471,2,19,15,0.0 +18471,74,10,18,0.0 +18471,28,45.6,48,0.0 +18471,7,30,9,0.0 +18471,53,32.8,47,0.0 +18471,60,34,11,0.0 +18471,15,15.5,22,0.0 +18471,39,18,26,0.0 +18471,14,23.25,36,0.0 +18471,52,7,20,0.0 +18471,23,9,44,0.0 +18471,73,15,8,0.0 +18471,6,25,6,0.0 +18471,54,7.45,36,0.0 +18471,46,12,29,0.0 +18471,22,21,17,0.0 +18471,13,6,21,0.0 +18471,11,21,2,0.0 +18471,50,16.25,31,0.0 +18471,38,263.5,3,0.0 +18471,26,31.23,21,0.0 +18471,49,20,25,0.0 +18471,1,18,1,0.0 +18471,69,36,21,0.0 +18471,35,18,47,0.0 +18471,47,9.5,27,0.0 +18471,65,21.05,7,0.0 +18471,25,14,33,0.0 +18471,30,25.89,6,0.0 +18471,36,19,4,0.0 +18471,45,9.5,21,0.0 +18471,33,2.5,13,0.0 +18471,16,17.45,36,0.0 +18471,55,24,36,0.0 +18471,20,81,21,0.0 +18471,21,10,19,0.0 +18471,67,14,12,0.0 +18471,8,40,36,0.0 +18471,63,43.9,42,0.0 +18471,58,13.25,49,0.0 +18471,56,38,26,0.0 +18471,57,19.5,23,0.0 +18471,24,4.5,11,0.0 +18471,75,7.75,49,0.0 +18471,34,14,37,0.0 +18471,61,28.5,23,0.0 +18471,5,21.35,4,0.0 +18471,62,49.3,39,0.0 +18471,4,22,43,0.0 +18471,40,18.4,15,0.0 +18471,68,12.5,30,0.0 +18471,51,53,41,0.0 +18472,29,123.79,32,0.0 +18472,37,26,11,0.0 +18472,12,38,46,0.0 +18472,55,24,23,0.0 +18472,9,97,25,0.0 +18472,44,19.45,48,0.0 +18472,49,20,26,0.0 +18472,68,12.5,1,0.0 +18472,27,43.9,40,0.0 +18472,25,14,23,0.0 +18472,13,6,46,0.0 +18472,26,31.23,35,0.0 +18472,8,40,19,0.0 +18472,69,36,12,0.0 +18472,54,7.45,48,0.0 +18472,60,34,50,0.0 +18472,16,17.45,11,0.0 +18472,65,21.05,11,0.0 +18472,48,12.75,17,0.0 +18472,41,9.65,22,0.0 +18472,30,25.89,46,0.0 +18472,31,12.5,10,0.0 +18472,62,49.3,37,0.0 +18472,11,21,46,0.0 +18472,18,62.5,47,0.0 +18472,7,30,39,0.0 +18472,42,14,31,0.0 +18472,43,46,37,0.0 +18472,71,21.5,10,0.0 +18472,50,16.25,45,0.0 +18472,34,14,42,0.0 +18472,28,45.6,38,0.0 +18472,20,81,14,0.0 +18472,53,32.8,46,0.0 +18472,74,10,16,0.0 +18472,32,32,40,0.0 +18472,56,38,22,0.0 +18472,66,17,48,0.0 +18472,1,18,9,0.0 +18472,46,12,48,0.0 +18472,38,263.5,25,0.0 +18472,2,19,13,0.0 +18473,72,34.8,34,0.0 +18473,69,36,24,0.0 +18473,45,9.5,25,0.0 +18473,18,62.5,25,0.0 +18473,25,14,16,0.0 +18473,3,10,19,0.0 +18473,12,38,28,0.0 +18473,65,21.05,27,0.0 +18473,10,31,24,0.0 +18473,11,21,38,0.0 +18473,13,6,45,0.0 +18473,49,20,21,0.0 +18473,57,19.5,13,0.0 +18473,73,15,32,0.0 +18473,74,10,8,0.0 +18473,38,263.5,23,0.0 +18473,33,2.5,46,0.0 +18473,68,12.5,30,0.0 +18473,39,18,50,0.0 +18473,31,12.5,15,0.0 +18473,20,81,50,0.0 +18473,43,46,44,0.0 +18473,76,18,36,0.0 +18473,30,25.89,35,0.0 +18473,22,21,14,0.0 +18473,16,17.45,2,0.0 +18473,8,40,6,0.0 +18473,50,16.25,21,0.0 +18473,71,21.5,46,0.0 +18473,34,14,2,0.0 +18473,67,14,15,0.0 +18473,17,39,23,0.0 +18473,14,23.25,47,0.0 +18473,6,25,18,0.0 +18473,53,32.8,32,0.0 +18473,21,10,7,0.0 +18473,75,7.75,40,0.0 +18473,42,14,49,0.0 +18473,7,30,1,0.0 +18473,46,12,46,0.0 +18473,77,13,20,0.0 +18473,64,33.25,10,0.0 +18473,37,26,15,0.0 +18473,59,55,45,0.0 +18473,70,15,30,0.0 +18473,58,13.25,49,0.0 +18473,47,9.5,46,0.0 +18473,2,19,15,0.0 +18473,40,18.4,1,0.0 +18473,48,12.75,11,0.0 +18473,55,24,31,0.0 +18473,44,19.45,40,0.0 +18473,28,45.6,37,0.0 +18473,63,43.9,23,0.0 +18473,23,9,20,0.0 +18473,52,7,22,0.0 +18473,29,123.79,8,0.0 +18473,41,9.65,42,0.0 +18473,60,34,11,0.0 +18473,36,19,1,0.0 +18473,5,21.35,47,0.0 +18473,51,53,35,0.0 +18473,62,49.3,14,0.0 +18473,32,32,1,0.0 +18473,1,18,36,0.0 +18473,56,38,45,0.0 +18473,66,17,18,0.0 +18473,4,22,29,0.0 +18474,59,55,46,0.0 +18474,65,21.05,5,0.0 +18474,61,28.5,26,0.0 +18474,69,36,9,0.0 +18474,50,16.25,7,0.0 +18474,39,18,5,0.0 +18474,57,19.5,34,0.0 +18474,66,17,29,0.0 +18474,14,23.25,27,0.0 +18474,70,15,44,0.0 +18474,62,49.3,4,0.0 +18474,9,97,43,0.0 +18474,20,81,19,0.0 +18474,16,17.45,43,0.0 +18474,75,7.75,16,0.0 +18474,34,14,13,0.0 +18475,72,34.8,47,0.0 +18475,56,38,28,0.0 +18475,53,32.8,15,0.0 +18475,61,28.5,40,0.0 +18475,75,7.75,16,0.0 +18475,73,15,13,0.0 +18475,17,39,17,0.0 +18475,5,21.35,15,0.0 +18475,8,40,24,0.0 +18475,9,97,16,0.0 +18475,32,32,30,0.0 +18475,47,9.5,6,0.0 +18475,34,14,5,0.0 +18475,4,22,7,0.0 +18475,65,21.05,6,0.0 +18475,31,12.5,20,0.0 +18475,54,7.45,8,0.0 +18475,64,33.25,32,0.0 +18475,63,43.9,25,0.0 +18475,74,10,24,0.0 +18475,60,34,39,0.0 +18475,2,19,38,0.0 +18475,19,9.2,26,0.0 +18475,42,14,35,0.0 +18475,49,20,7,0.0 +18475,62,49.3,27,0.0 +18475,46,12,36,0.0 +18475,40,18.4,20,0.0 +18475,37,26,1,0.0 +18475,44,19.45,12,0.0 +18475,29,123.79,39,0.0 +18475,21,10,1,0.0 +18475,26,31.23,27,0.0 +18475,58,13.25,21,0.0 +18475,55,24,16,0.0 +18475,51,53,46,0.0 +18475,41,9.65,47,0.0 +18475,14,23.25,27,0.0 +18475,77,13,25,0.0 +18475,71,21.5,4,0.0 +18475,57,19.5,7,0.0 +18475,50,16.25,19,0.0 +18475,23,9,18,0.0 +18475,12,38,25,0.0 +18475,28,45.6,40,0.0 +18475,43,46,17,0.0 +18475,24,4.5,15,0.0 +18475,18,62.5,35,0.0 +18475,20,81,27,0.0 +18475,76,18,33,0.0 +18475,10,31,16,0.0 +18475,70,15,30,0.0 +18475,33,2.5,19,0.0 +18475,22,21,23,0.0 +18475,11,21,5,0.0 +18475,36,19,21,0.0 +18475,7,30,9,0.0 +18475,35,18,18,0.0 +18475,68,12.5,9,0.0 +18475,30,25.89,36,0.0 +18475,16,17.45,3,0.0 +18475,3,10,3,0.0 +18475,15,15.5,45,0.0 +18475,66,17,33,0.0 +18475,25,14,40,0.0 +18475,6,25,16,0.0 +18475,48,12.75,28,0.0 +18475,52,7,8,0.0 +18475,67,14,23,0.0 +18475,27,43.9,14,0.0 +18475,13,6,48,0.0 +18475,59,55,27,0.0 +18476,8,40,39,0.0 +18476,65,21.05,41,0.0 +18476,41,9.65,24,0.0 +18476,24,4.5,11,0.0 +18476,48,12.75,48,0.0 +18476,55,24,26,0.0 +18476,25,14,8,0.0 +18476,9,97,16,0.0 +18476,72,34.8,7,0.0 +18476,7,30,16,0.0 +18476,57,19.5,29,0.0 +18476,67,14,35,0.0 +18476,5,21.35,38,0.0 +18476,68,12.5,35,0.0 +18476,18,62.5,41,0.0 +18476,62,49.3,6,0.0 +18476,13,6,23,0.0 +18476,36,19,43,0.0 +18476,40,18.4,27,0.0 +18476,70,15,21,0.0 +18476,64,33.25,30,0.0 +18476,45,9.5,13,0.0 +18476,6,25,4,0.0 +18476,26,31.23,42,0.0 +18476,34,14,37,0.0 +18476,54,7.45,18,0.0 +18476,4,22,39,0.0 +18476,60,34,36,0.0 +18476,53,32.8,26,0.0 +18476,32,32,38,0.0 +18476,56,38,16,0.0 +18476,39,18,20,0.0 +18476,52,7,7,0.0 +18476,19,9.2,50,0.0 +18476,3,10,40,0.0 +18476,46,12,23,0.0 +18476,20,81,47,0.0 +18476,30,25.89,23,0.0 +18476,76,18,4,0.0 +18476,47,9.5,15,0.0 +18476,10,31,15,0.0 +18476,33,2.5,4,0.0 +18476,35,18,46,0.0 +18476,27,43.9,12,0.0 +18476,21,10,7,0.0 +18476,50,16.25,29,0.0 +18476,61,28.5,31,0.0 +18476,31,12.5,6,0.0 +18476,23,9,17,0.0 +18476,15,15.5,12,0.0 +18476,37,26,12,0.0 +18476,28,45.6,33,0.0 +18476,2,19,28,0.0 +18476,59,55,50,0.0 +18477,9,97,50,0.0 +18477,40,18.4,45,0.0 +18477,20,81,6,0.0 +18477,29,123.79,25,0.0 +18477,53,32.8,29,0.0 +18477,15,15.5,35,0.0 +18477,63,43.9,36,0.0 +18477,58,13.25,30,0.0 +18477,22,21,30,0.0 +18477,48,12.75,43,0.0 +18477,60,34,50,0.0 +18477,21,10,42,0.0 +18477,47,9.5,39,0.0 +18477,26,31.23,37,0.0 +18477,54,7.45,6,0.0 +18477,24,4.5,35,0.0 +18477,34,14,19,0.0 +18477,42,14,25,0.0 +18477,38,263.5,11,0.0 +18477,70,15,13,0.0 +18477,75,7.75,40,0.0 +18477,59,55,32,0.0 +18477,7,30,24,0.0 +18477,16,17.45,3,0.0 +18477,61,28.5,3,0.0 +18477,28,45.6,43,0.0 +18477,76,18,9,0.0 +18477,43,46,18,0.0 +18477,65,21.05,13,0.0 +18477,57,19.5,8,0.0 +18477,56,38,28,0.0 +18477,4,22,12,0.0 +18477,1,18,23,0.0 +18477,5,21.35,27,0.0 +18477,39,18,10,0.0 +18477,33,2.5,42,0.0 +18477,64,33.25,50,0.0 +18477,71,21.5,43,0.0 +18477,72,34.8,18,0.0 +18477,31,12.5,9,0.0 +18477,2,19,18,0.0 +18477,30,25.89,13,0.0 +18477,52,7,45,0.0 +18477,13,6,26,0.0 +18477,32,32,42,0.0 +18477,46,12,2,0.0 +18477,17,39,31,0.0 +18478,17,39,31,0.0 +18478,52,7,17,0.0 +18478,16,17.45,23,0.0 +18478,74,10,49,0.0 +18478,32,32,26,0.0 +18478,62,49.3,18,0.0 +18478,69,36,43,0.0 +18478,21,10,14,0.0 +18478,40,18.4,18,0.0 +18478,60,34,42,0.0 +18478,70,15,43,0.0 +18478,42,14,11,0.0 +18478,51,53,9,0.0 +18478,2,19,18,0.0 +18478,38,263.5,1,0.0 +18478,27,43.9,1,0.0 +18478,33,2.5,36,0.0 +18478,73,15,14,0.0 +18478,35,18,26,0.0 +18478,53,32.8,20,0.0 +18478,12,38,49,0.0 +18478,37,26,33,0.0 +18478,41,9.65,18,0.0 +18478,20,81,11,0.0 +18478,39,18,41,0.0 +18478,3,10,18,0.0 +18478,6,25,31,0.0 +18478,23,9,35,0.0 +18478,1,18,9,0.0 +18478,28,45.6,10,0.0 +18478,43,46,26,0.0 +18478,47,9.5,9,0.0 +18478,58,13.25,27,0.0 +18478,67,14,7,0.0 +18478,63,43.9,7,0.0 +18478,18,62.5,20,0.0 +18478,10,31,34,0.0 +18478,9,97,47,0.0 +18478,54,7.45,36,0.0 +18478,66,17,41,0.0 +18478,72,34.8,25,0.0 +18478,31,12.5,7,0.0 +18478,61,28.5,41,0.0 +18478,65,21.05,33,0.0 +18478,64,33.25,1,0.0 +18478,59,55,19,0.0 +18478,49,20,7,0.0 +18478,26,31.23,3,0.0 +18478,7,30,31,0.0 +18478,75,7.75,11,0.0 +18478,48,12.75,45,0.0 +18478,22,21,12,0.0 +18478,55,24,10,0.0 +18478,13,6,10,0.0 +18478,11,21,48,0.0 +18478,57,19.5,33,0.0 +18478,19,9.2,25,0.0 +18478,50,16.25,18,0.0 +18479,27,43.9,15,0.0 +18479,1,18,43,0.0 +18479,58,13.25,23,0.0 +18479,67,14,16,0.0 +18479,57,19.5,32,0.0 +18479,3,10,24,0.0 +18479,65,21.05,33,0.0 +18479,59,55,27,0.0 +18479,4,22,20,0.0 +18479,73,15,49,0.0 +18479,6,25,5,0.0 +18479,28,45.6,10,0.0 +18479,75,7.75,48,0.0 +18479,25,14,42,0.0 +18479,68,12.5,44,0.0 +18479,15,15.5,16,0.0 +18479,31,12.5,30,0.0 +18479,30,25.89,43,0.0 +18479,55,24,38,0.0 +18479,42,14,15,0.0 +18479,48,12.75,39,0.0 +18479,50,16.25,35,0.0 +18480,30,25.89,40,0.0 +18480,61,28.5,23,0.0 +18480,43,46,30,0.0 +18480,54,7.45,6,0.0 +18480,65,21.05,20,0.0 +18480,2,19,43,0.0 +18480,40,18.4,11,0.0 +18480,7,30,16,0.0 +18480,77,13,28,0.0 +18480,4,22,14,0.0 +18480,59,55,5,0.0 +18480,22,21,8,0.0 +18480,18,62.5,4,0.0 +18480,44,19.45,5,0.0 +18480,26,31.23,19,0.0 +18480,35,18,40,0.0 +18480,31,12.5,14,0.0 +18480,25,14,23,0.0 +18480,48,12.75,21,0.0 +18480,47,9.5,12,0.0 +18480,33,2.5,1,0.0 +18480,63,43.9,19,0.0 +18481,12,38,4,0.0 +18481,42,14,31,0.0 +18481,22,21,45,0.0 +18481,37,26,37,0.0 +18481,2,19,12,0.0 +18481,4,22,8,0.0 +18481,31,12.5,43,0.0 +18481,74,10,41,0.0 +18481,58,13.25,30,0.0 +18481,57,19.5,24,0.0 +18481,28,45.6,6,0.0 +18481,66,17,45,0.0 +18481,24,4.5,26,0.0 +18481,33,2.5,16,0.0 +18481,29,123.79,9,0.0 +18481,34,14,35,0.0 +18481,38,263.5,11,0.0 +18481,15,15.5,22,0.0 +18481,8,40,28,0.0 +18481,64,33.25,49,0.0 +18481,71,21.5,38,0.0 +18481,72,34.8,21,0.0 +18481,77,13,44,0.0 +18481,16,17.45,49,0.0 +18481,26,31.23,28,0.0 +18481,7,30,19,0.0 +18481,62,49.3,29,0.0 +18481,61,28.5,39,0.0 +18481,23,9,24,0.0 +18481,59,55,30,0.0 +18481,21,10,13,0.0 +18481,3,10,22,0.0 +18481,30,25.89,42,0.0 +18481,50,16.25,50,0.0 +18481,39,18,17,0.0 +18481,55,24,27,0.0 +18481,76,18,48,0.0 +18481,44,19.45,7,0.0 +18482,62,49.3,14,0.0 +18482,19,9.2,8,0.0 +18482,3,10,17,0.0 +18482,75,7.75,10,0.0 +18482,70,15,2,0.0 +18482,11,21,38,0.0 +18482,26,31.23,6,0.0 +18482,58,13.25,24,0.0 +18482,48,12.75,4,0.0 +18482,40,18.4,11,0.0 +18482,33,2.5,34,0.0 +18482,39,18,16,0.0 +18482,14,23.25,20,0.0 +18482,31,12.5,1,0.0 +18482,72,34.8,28,0.0 +18482,20,81,34,0.0 +18482,41,9.65,3,0.0 +18482,65,21.05,42,0.0 +18482,17,39,24,0.0 +18482,45,9.5,12,0.0 +18482,4,22,36,0.0 +18482,18,62.5,6,0.0 +18482,76,18,38,0.0 +18482,74,10,39,0.0 +18482,27,43.9,12,0.0 +18482,46,12,31,0.0 +18482,35,18,32,0.0 +18482,29,123.79,39,0.0 +18482,25,14,42,0.0 +18482,38,263.5,1,0.0 +18482,37,26,48,0.0 +18482,59,55,27,0.0 +18482,15,15.5,19,0.0 +18482,28,45.6,4,0.0 +18482,44,19.45,3,0.0 +18482,9,97,38,0.0 +18482,23,9,36,0.0 +18482,1,18,35,0.0 +18482,12,38,26,0.0 +18482,10,31,46,0.0 +18482,77,13,30,0.0 +18482,61,28.5,1,0.0 +18482,34,14,41,0.0 +18482,5,21.35,20,0.0 +18482,22,21,46,0.0 +18482,71,21.5,29,0.0 +18482,47,9.5,10,0.0 +18482,63,43.9,9,0.0 +18482,53,32.8,44,0.0 +18482,51,53,37,0.0 +18482,56,38,36,0.0 +18482,21,10,18,0.0 +18482,7,30,18,0.0 +18482,13,6,41,0.0 +18482,54,7.45,27,0.0 +18482,73,15,36,0.0 +18482,8,40,18,0.0 +18482,42,14,38,0.0 +18482,57,19.5,15,0.0 +18482,60,34,11,0.0 +18482,49,20,13,0.0 +18482,36,19,22,0.0 +18483,34,14,21,0.0 +18483,36,19,37,0.0 +18483,33,2.5,38,0.0 +18483,77,13,10,0.0 +18483,3,10,40,0.0 +18483,50,16.25,31,0.0 +18483,7,30,48,0.0 +18483,28,45.6,34,0.0 +18483,40,18.4,2,0.0 +18483,20,81,34,0.0 +18483,73,15,7,0.0 +18483,68,12.5,10,0.0 +18483,11,21,9,0.0 +18483,65,21.05,22,0.0 +18483,12,38,27,0.0 +18483,76,18,23,0.0 +18483,48,12.75,16,0.0 +18483,64,33.25,43,0.0 +18483,19,9.2,41,0.0 +18483,13,6,34,0.0 +18483,57,19.5,9,0.0 +18483,24,4.5,38,0.0 +18483,46,12,33,0.0 +18483,52,7,47,0.0 +18483,2,19,17,0.0 +18483,6,25,38,0.0 +18483,41,9.65,9,0.0 +18483,71,21.5,43,0.0 +18483,10,31,1,0.0 +18483,66,17,2,0.0 +18483,70,15,43,0.0 +18483,43,46,38,0.0 +18483,44,19.45,42,0.0 +18483,60,34,27,0.0 +18483,35,18,5,0.0 +18483,15,15.5,13,0.0 +18483,38,263.5,1,0.0 +18483,22,21,26,0.0 +18483,26,31.23,29,0.0 +18483,51,53,23,0.0 +18483,74,10,48,0.0 +18484,37,26,5,0.0 +18484,74,10,24,0.0 +18484,65,21.05,1,0.0 +18484,40,18.4,13,0.0 +18484,17,39,37,0.0 +18484,75,7.75,34,0.0 +18484,67,14,23,0.0 +18484,60,34,50,0.0 +18484,52,7,3,0.0 +18484,76,18,35,0.0 +18484,30,25.89,34,0.0 +18484,43,46,46,0.0 +18484,70,15,15,0.0 +18484,26,31.23,9,0.0 +18484,71,21.5,2,0.0 +18484,16,17.45,39,0.0 +18484,24,4.5,11,0.0 +18484,9,97,38,0.0 +18484,23,9,33,0.0 +18484,6,25,44,0.0 +18484,34,14,18,0.0 +18484,36,19,40,0.0 +18484,19,9.2,34,0.0 +18484,35,18,35,0.0 +18484,56,38,28,0.0 +18484,2,19,25,0.0 +18484,73,15,21,0.0 +18484,57,19.5,26,0.0 +18484,28,45.6,19,0.0 +18484,68,12.5,39,0.0 +18484,53,32.8,26,0.0 +18484,48,12.75,42,0.0 +18484,32,32,41,0.0 +18484,11,21,49,0.0 +18484,3,10,39,0.0 +18484,46,12,28,0.0 +18484,58,13.25,41,0.0 +18484,63,43.9,50,0.0 +18484,27,43.9,9,0.0 +18484,38,263.5,11,0.0 +18484,61,28.5,4,0.0 +18484,4,22,45,0.0 +18484,12,38,6,0.0 +18484,42,14,8,0.0 +18484,5,21.35,32,0.0 +18484,41,9.65,17,0.0 +18484,25,14,17,0.0 +18485,18,62.5,26,0.0 +18485,22,21,30,0.0 +18485,2,19,3,0.0 +18485,8,40,8,0.0 +18485,44,19.45,13,0.0 +18485,53,32.8,29,0.0 +18485,59,55,26,0.0 +18485,50,16.25,18,0.0 +18485,11,21,9,0.0 +18485,17,39,45,0.0 +18485,33,2.5,3,0.0 +18485,9,97,46,0.0 +18485,54,7.45,21,0.0 +18485,16,17.45,23,0.0 +18485,23,9,9,0.0 +18485,67,14,5,0.0 +18485,64,33.25,27,0.0 +18485,35,18,12,0.0 +18485,77,13,25,0.0 +18485,3,10,8,0.0 +18485,21,10,17,0.0 +18485,39,18,38,0.0 +18485,31,12.5,7,0.0 +18485,51,53,14,0.0 +18485,56,38,6,0.0 +18485,10,31,48,0.0 +18485,4,22,24,0.0 +18485,28,45.6,37,0.0 +18485,15,15.5,46,0.0 +18485,24,4.5,26,0.0 +18485,38,263.5,42,0.0 +18485,40,18.4,43,0.0 +18485,49,20,10,0.0 +18485,48,12.75,24,0.0 +18485,74,10,50,0.0 +18485,60,34,34,0.0 +18485,58,13.25,37,0.0 +18485,76,18,19,0.0 +18485,37,26,9,0.0 +18485,32,32,5,0.0 +18485,72,34.8,3,0.0 +18485,75,7.75,46,0.0 +18485,63,43.9,35,0.0 +18485,45,9.5,42,0.0 +18486,72,34.8,25,0.0 +18486,30,25.89,12,0.0 +18486,13,6,34,0.0 +18486,39,18,4,0.0 +18486,44,19.45,37,0.0 +18486,75,7.75,23,0.0 +18486,38,263.5,7,0.0 +18486,4,22,25,0.0 +18486,62,49.3,34,0.0 +18486,21,10,39,0.0 +18486,6,25,16,0.0 +18486,33,2.5,21,0.0 +18486,37,26,8,0.0 +18486,65,21.05,40,0.0 +18486,46,12,27,0.0 +18486,23,9,18,0.0 +18486,36,19,6,0.0 +18486,32,32,17,0.0 +18486,41,9.65,15,0.0 +18486,47,9.5,10,0.0 +18486,51,53,34,0.0 +18486,3,10,40,0.0 +18486,69,36,24,0.0 +18486,10,31,11,0.0 +18486,43,46,46,0.0 +18486,52,7,11,0.0 +18486,19,9.2,26,0.0 +18486,40,18.4,25,0.0 +18486,77,13,5,0.0 +18486,54,7.45,8,0.0 +18486,7,30,34,0.0 +18486,35,18,36,0.0 +18486,15,15.5,39,0.0 +18486,9,97,38,0.0 +18486,25,14,12,0.0 +18486,57,19.5,48,0.0 +18486,24,4.5,26,0.0 +18486,45,9.5,19,0.0 +18486,66,17,14,0.0 +18486,50,16.25,16,0.0 +18486,2,19,27,0.0 +18486,18,62.5,15,0.0 +18486,56,38,9,0.0 +18486,34,14,15,0.0 +18486,8,40,34,0.0 +18486,49,20,1,0.0 +18486,27,43.9,32,0.0 +18486,58,13.25,6,0.0 +18486,42,14,27,0.0 +18486,20,81,41,0.0 +18486,55,24,6,0.0 +18486,22,21,35,0.0 +18486,67,14,3,0.0 +18486,26,31.23,29,0.0 +18486,61,28.5,6,0.0 +18486,76,18,49,0.0 +18486,1,18,45,0.0 +18486,53,32.8,43,0.0 +18486,74,10,33,0.0 +18486,59,55,7,0.0 +18486,73,15,16,0.0 +18486,48,12.75,3,0.0 +18486,64,33.25,42,0.0 +18486,5,21.35,50,0.0 +18486,60,34,37,0.0 +18486,14,23.25,3,0.0 +18486,70,15,34,0.0 +18486,29,123.79,38,0.0 +18486,31,12.5,9,0.0 +18486,63,43.9,15,0.0 +18486,68,12.5,19,0.0 +18486,16,17.45,23,0.0 +18486,17,39,27,0.0 +18486,12,38,15,0.0 +18487,66,17,19,0.0 +18487,20,81,38,0.0 +18487,5,21.35,10,0.0 +18487,59,55,41,0.0 +18487,2,19,30,0.0 +18487,6,25,22,0.0 +18487,72,34.8,42,0.0 +18487,21,10,25,0.0 +18487,51,53,19,0.0 +18487,58,13.25,18,0.0 +18487,57,19.5,6,0.0 +18487,39,18,24,0.0 +18487,74,10,18,0.0 +18487,32,32,19,0.0 +18487,50,16.25,32,0.0 +18487,26,31.23,31,0.0 +18487,25,14,38,0.0 +18487,31,12.5,27,0.0 +18487,41,9.65,5,0.0 +18487,1,18,27,0.0 +18487,46,12,4,0.0 +18487,14,23.25,15,0.0 +18487,63,43.9,9,0.0 +18487,52,7,1,0.0 +18487,16,17.45,36,0.0 +18487,9,97,19,0.0 +18487,40,18.4,45,0.0 +18487,15,15.5,38,0.0 +18487,56,38,31,0.0 +18487,60,34,7,0.0 +18487,77,13,15,0.0 +18487,67,14,12,0.0 +18487,12,38,9,0.0 +18487,70,15,35,0.0 +18487,49,20,19,0.0 +18487,18,62.5,18,0.0 +18487,3,10,9,0.0 +18487,65,21.05,5,0.0 +18488,59,55,31,0.0 +18488,49,20,13,0.0 +18488,51,53,5,0.0 +18488,44,19.45,37,0.0 +18488,2,19,37,0.0 +18488,19,9.2,29,0.0 +18488,35,18,7,0.0 +18488,29,123.79,20,0.0 +18488,74,10,13,0.0 +18488,53,32.8,2,0.0 +18488,27,43.9,49,0.0 +18488,26,31.23,25,0.0 +18488,58,13.25,18,0.0 +18488,56,38,15,0.0 +18488,9,97,21,0.0 +18488,67,14,43,0.0 +18488,38,263.5,30,0.0 +18488,68,12.5,22,0.0 +18488,32,32,18,0.0 +18488,66,17,18,0.0 +18488,73,15,4,0.0 +18488,37,26,46,0.0 +18488,11,21,18,0.0 +18488,3,10,12,0.0 +18488,65,21.05,1,0.0 +18488,14,23.25,31,0.0 +18488,34,14,49,0.0 +18488,64,33.25,44,0.0 +18488,10,31,30,0.0 +18488,12,38,49,0.0 +18488,33,2.5,38,0.0 +18488,50,16.25,50,0.0 +18488,77,13,20,0.0 +18488,24,4.5,26,0.0 +18488,61,28.5,6,0.0 +18488,1,18,41,0.0 +18488,62,49.3,18,0.0 +18489,34,14,30,0.0 +18489,67,14,32,0.0 +18489,66,17,5,0.0 +18489,60,34,35,0.0 +18489,1,18,24,0.0 +18489,40,18.4,43,0.0 +18489,19,9.2,24,0.0 +18489,50,16.25,1,0.0 +18489,11,21,8,0.0 +18489,71,21.5,31,0.0 +18489,18,62.5,16,0.0 +18489,16,17.45,20,0.0 +18489,21,10,25,0.0 +18489,8,40,49,0.0 +18489,51,53,41,0.0 +18489,23,9,20,0.0 +18489,42,14,23,0.0 +18489,9,97,1,0.0 +18489,37,26,41,0.0 +18489,68,12.5,13,0.0 +18489,49,20,17,0.0 +18489,15,15.5,45,0.0 +18489,54,7.45,45,0.0 +18489,74,10,24,0.0 +18489,5,21.35,39,0.0 +18489,6,25,50,0.0 +18489,52,7,13,0.0 +18489,47,9.5,33,0.0 +18489,53,32.8,46,0.0 +18489,4,22,47,0.0 +18489,57,19.5,17,0.0 +18489,2,19,9,0.0 +18489,29,123.79,3,0.0 +18489,14,23.25,45,0.0 +18489,17,39,34,0.0 +18489,48,12.75,41,0.0 +18489,72,34.8,32,0.0 +18489,69,36,13,0.0 +18489,27,43.9,48,0.0 +18489,33,2.5,39,0.0 +18489,56,38,1,0.0 +18489,22,21,31,0.0 +18489,65,21.05,15,0.0 +18489,24,4.5,25,0.0 +18489,20,81,28,0.0 +18489,55,24,50,0.0 +18489,10,31,31,0.0 +18489,58,13.25,42,0.0 +18489,73,15,48,0.0 +18489,36,19,10,0.0 +18489,38,263.5,41,0.0 +18489,63,43.9,41,0.0 +18489,75,7.75,50,0.0 +18489,46,12,25,0.0 +18490,63,43.9,3,0.0 +18490,68,12.5,32,0.0 +18490,64,33.25,5,0.0 +18490,56,38,2,0.0 +18490,12,38,50,0.0 +18490,1,18,17,0.0 +18490,36,19,34,0.0 +18490,71,21.5,16,0.0 +18490,32,32,19,0.0 +18490,4,22,17,0.0 +18490,76,18,40,0.0 +18490,52,7,34,0.0 +18490,75,7.75,35,0.0 +18490,9,97,48,0.0 +18490,48,12.75,1,0.0 +18490,50,16.25,47,0.0 +18490,54,7.45,21,0.0 +18490,34,14,12,0.0 +18490,31,12.5,17,0.0 +18490,42,14,48,0.0 +18490,69,36,49,0.0 +18490,27,43.9,15,0.0 +18490,24,4.5,39,0.0 +18490,20,81,7,0.0 +18490,2,19,35,0.0 +18490,13,6,15,0.0 +18490,61,28.5,39,0.0 +18490,21,10,25,0.0 +18490,43,46,38,0.0 +18490,49,20,7,0.0 +18490,11,21,50,0.0 +18490,46,12,31,0.0 +18490,41,9.65,23,0.0 +18490,28,45.6,3,0.0 +18490,29,123.79,21,0.0 +18490,40,18.4,21,0.0 +18490,66,17,31,0.0 +18490,10,31,49,0.0 +18490,51,53,6,0.0 +18490,73,15,15,0.0 +18490,18,62.5,16,0.0 +18491,22,21,32,0.0 +18491,63,43.9,10,0.0 +18491,18,62.5,7,0.0 +18491,44,19.45,26,0.0 +18491,26,31.23,8,0.0 +18491,46,12,44,0.0 +18491,37,26,8,0.0 +18491,66,17,38,0.0 +18491,27,43.9,33,0.0 +18491,6,25,22,0.0 +18491,31,12.5,43,0.0 +18491,68,12.5,45,0.0 +18491,41,9.65,37,0.0 +18491,74,10,1,0.0 +18491,62,49.3,27,0.0 +18491,36,19,4,0.0 +18491,50,16.25,35,0.0 +18491,55,24,47,0.0 +18491,57,19.5,35,0.0 +18491,42,14,33,0.0 +18491,30,25.89,13,0.0 +18491,51,53,48,0.0 +18491,34,14,15,0.0 +18491,7,30,47,0.0 +18491,23,9,49,0.0 +18491,12,38,30,0.0 +18491,39,18,45,0.0 +18491,19,9.2,18,0.0 +18491,32,32,12,0.0 +18491,15,15.5,22,0.0 +18491,5,21.35,16,0.0 +18491,77,13,2,0.0 +18491,49,20,21,0.0 +18491,2,19,39,0.0 +18491,17,39,44,0.0 +18491,67,14,4,0.0 +18491,71,21.5,2,0.0 +18491,43,46,38,0.0 +18491,45,9.5,42,0.0 +18491,25,14,25,0.0 +18491,16,17.45,29,0.0 +18491,21,10,49,0.0 +18491,14,23.25,23,0.0 +18491,60,34,48,0.0 +18491,47,9.5,39,0.0 +18491,9,97,5,0.0 +18491,56,38,17,0.0 +18491,13,6,5,0.0 +18491,58,13.25,25,0.0 +18491,4,22,46,0.0 +18491,70,15,6,0.0 +18491,65,21.05,45,0.0 +18491,48,12.75,17,0.0 +18492,46,12,11,0.0 +18492,57,19.5,48,0.0 +18492,73,15,16,0.0 +18492,69,36,18,0.0 +18492,61,28.5,42,0.0 +18492,64,33.25,5,0.0 +18492,43,46,19,0.0 +18492,49,20,47,0.0 +18492,55,24,18,0.0 +18492,36,19,46,0.0 +18492,66,17,33,0.0 +18492,33,2.5,47,0.0 +18492,8,40,35,0.0 +18492,1,18,36,0.0 +18492,11,21,29,0.0 +18492,21,10,1,0.0 +18492,51,53,33,0.0 +18492,54,7.45,37,0.0 +18492,67,14,7,0.0 +18492,24,4.5,31,0.0 +18492,18,62.5,20,0.0 +18492,37,26,23,0.0 +18492,26,31.23,41,0.0 +18492,40,18.4,15,0.0 +18492,13,6,10,0.0 +18492,15,15.5,21,0.0 +18492,29,123.79,30,0.0 +18492,28,45.6,19,0.0 +18492,72,34.8,5,0.0 +18492,27,43.9,3,0.0 +18492,5,21.35,25,0.0 +18492,42,14,44,0.0 +18492,23,9,47,0.0 +18492,68,12.5,30,0.0 +18492,45,9.5,10,0.0 +18492,34,14,47,0.0 +18492,22,21,19,0.0 +18492,32,32,29,0.0 +18492,6,25,18,0.0 +18492,20,81,40,0.0 +18492,71,21.5,7,0.0 +18493,15,15.5,49,0.0 +18493,47,9.5,8,0.0 +18493,9,97,23,0.0 +18493,62,49.3,29,0.0 +18493,2,19,39,0.0 +18493,67,14,20,0.0 +18493,14,23.25,2,0.0 +18493,1,18,15,0.0 +18493,19,9.2,45,0.0 +18493,69,36,37,0.0 +18493,45,9.5,18,0.0 +18493,72,34.8,18,0.0 +18493,29,123.79,35,0.0 +18493,50,16.25,6,0.0 +18493,20,81,14,0.0 +18493,46,12,28,0.0 +18493,44,19.45,47,0.0 +18493,25,14,32,0.0 +18493,54,7.45,11,0.0 +18493,52,7,7,0.0 +18493,6,25,14,0.0 +18493,27,43.9,37,0.0 +18493,28,45.6,21,0.0 +18493,3,10,20,0.0 +18493,55,24,50,0.0 +18493,41,9.65,38,0.0 +18493,73,15,25,0.0 +18493,35,18,27,0.0 +18493,8,40,32,0.0 +18493,53,32.8,20,0.0 +18493,70,15,27,0.0 +18493,31,12.5,2,0.0 +18493,64,33.25,26,0.0 +18493,21,10,11,0.0 +18493,5,21.35,35,0.0 +18493,16,17.45,21,0.0 +18494,30,25.89,36,0.0 +18494,65,21.05,20,0.0 +18494,32,32,40,0.0 +18494,75,7.75,28,0.0 +18494,19,9.2,39,0.0 +18494,10,31,43,0.0 +18494,42,14,22,0.0 +18494,39,18,13,0.0 +18494,35,18,43,0.0 +18494,74,10,7,0.0 +18494,60,34,10,0.0 +18494,24,4.5,4,0.0 +18494,2,19,34,0.0 +18494,64,33.25,42,0.0 +18494,5,21.35,1,0.0 +18494,49,20,50,0.0 +18494,53,32.8,6,0.0 +18494,4,22,18,0.0 +18494,17,39,38,0.0 +18494,1,18,40,0.0 +18494,47,9.5,8,0.0 +18494,66,17,16,0.0 +18494,51,53,30,0.0 +18494,18,62.5,37,0.0 +18494,6,25,41,0.0 +18494,29,123.79,28,0.0 +18494,37,26,16,0.0 +18494,3,10,37,0.0 +18494,56,38,8,0.0 +18494,38,263.5,35,0.0 +18494,11,21,36,0.0 +18494,9,97,36,0.0 +18494,50,16.25,35,0.0 +18494,67,14,12,0.0 +18494,57,19.5,20,0.0 +18494,12,38,44,0.0 +18494,45,9.5,49,0.0 +18494,43,46,29,0.0 +18494,77,13,42,0.0 +18494,13,6,19,0.0 +18494,22,21,25,0.0 +18494,36,19,32,0.0 +18494,44,19.45,4,0.0 +18494,40,18.4,27,0.0 +18494,8,40,33,0.0 +18494,55,24,22,0.0 +18494,68,12.5,39,0.0 +18494,16,17.45,30,0.0 +18494,71,21.5,31,0.0 +18494,46,12,15,0.0 +18494,15,15.5,34,0.0 +18494,34,14,3,0.0 +18494,48,12.75,31,0.0 +18494,63,43.9,35,0.0 +18494,27,43.9,18,0.0 +18494,31,12.5,34,0.0 +18494,58,13.25,11,0.0 +18494,33,2.5,34,0.0 +18494,72,34.8,11,0.0 +18494,26,31.23,38,0.0 +18495,59,55,41,0.0 +18495,47,9.5,36,0.0 +18495,40,18.4,40,0.0 +18495,77,13,43,0.0 +18495,22,21,12,0.0 +18495,44,19.45,36,0.0 +18495,50,16.25,18,0.0 +18495,49,20,2,0.0 +18495,17,39,19,0.0 +18495,57,19.5,9,0.0 +18495,61,28.5,38,0.0 +18495,23,9,41,0.0 +18495,9,97,36,0.0 +18495,71,21.5,35,0.0 +18495,33,2.5,39,0.0 +18495,75,7.75,24,0.0 +18495,1,18,34,0.0 +18495,32,32,1,0.0 +18495,55,24,30,0.0 +18495,54,7.45,29,0.0 +18495,19,9.2,20,0.0 +18495,35,18,40,0.0 +18495,53,32.8,40,0.0 +18495,48,12.75,5,0.0 +18495,74,10,9,0.0 +18495,70,15,32,0.0 +18495,11,21,25,0.0 +18495,39,18,47,0.0 +18495,25,14,26,0.0 +18495,36,19,49,0.0 +18495,24,4.5,28,0.0 +18495,41,9.65,6,0.0 +18495,46,12,41,0.0 +18495,15,15.5,7,0.0 +18495,60,34,48,0.0 +18496,69,36,1,0.0 +18496,29,123.79,21,0.0 +18496,76,18,15,0.0 +18496,68,12.5,50,0.0 +18496,19,9.2,42,0.0 +18496,22,21,50,0.0 +18496,48,12.75,13,0.0 +18496,74,10,13,0.0 +18496,44,19.45,48,0.0 +18496,55,24,2,0.0 +18496,21,10,12,0.0 +18496,45,9.5,30,0.0 +18496,72,34.8,21,0.0 +18496,43,46,8,0.0 +18496,47,9.5,27,0.0 +18496,36,19,10,0.0 +18496,77,13,8,0.0 +18496,33,2.5,23,0.0 +18496,23,9,39,0.0 +18496,49,20,1,0.0 +18496,71,21.5,22,0.0 +18496,53,32.8,9,0.0 +18496,13,6,15,0.0 +18496,28,45.6,26,0.0 +18496,4,22,9,0.0 +18496,2,19,20,0.0 +18496,57,19.5,12,0.0 +18496,9,97,6,0.0 +18496,10,31,41,0.0 +18496,14,23.25,17,0.0 +18496,37,26,45,0.0 +18496,41,9.65,33,0.0 +18496,73,15,3,0.0 +18496,65,21.05,21,0.0 +18496,56,38,28,0.0 +18496,62,49.3,8,0.0 +18496,15,15.5,27,0.0 +18496,35,18,48,0.0 +18496,70,15,10,0.0 +18496,32,32,29,0.0 +18496,7,30,5,0.0 +18496,59,55,46,0.0 +18496,50,16.25,41,0.0 +18496,54,7.45,31,0.0 +18496,60,34,43,0.0 +18496,12,38,4,0.0 +18496,31,12.5,5,0.0 +18496,25,14,19,0.0 +18496,18,62.5,9,0.0 +18496,5,21.35,17,0.0 +18496,16,17.45,32,0.0 +18496,3,10,43,0.0 +18496,38,263.5,46,0.0 +18496,63,43.9,18,0.0 +18496,58,13.25,34,0.0 +18496,8,40,33,0.0 +18496,67,14,2,0.0 +18496,42,14,48,0.0 +18497,21,10,39,0.0 +18497,13,6,16,0.0 +18497,28,45.6,13,0.0 +18497,47,9.5,27,0.0 +18497,54,7.45,4,0.0 +18497,53,32.8,41,0.0 +18497,57,19.5,33,0.0 +18497,44,19.45,10,0.0 +18497,71,21.5,45,0.0 +18497,65,21.05,40,0.0 +18497,4,22,30,0.0 +18497,34,14,47,0.0 +18497,16,17.45,23,0.0 +18497,69,36,5,0.0 +18497,72,34.8,36,0.0 +18497,2,19,9,0.0 +18497,50,16.25,17,0.0 +18497,8,40,50,0.0 +18497,55,24,8,0.0 +18497,76,18,37,0.0 +18497,59,55,47,0.0 +18497,73,15,49,0.0 +18497,68,12.5,23,0.0 +18497,36,19,23,0.0 +18497,49,20,34,0.0 +18497,23,9,42,0.0 +18497,22,21,27,0.0 +18497,7,30,48,0.0 +18497,12,38,4,0.0 +18497,19,9.2,34,0.0 +18497,27,43.9,49,0.0 +18497,18,62.5,18,0.0 +18497,45,9.5,28,0.0 +18497,43,46,18,0.0 +18497,37,26,36,0.0 +18497,9,97,40,0.0 +18497,70,15,10,0.0 +18497,48,12.75,17,0.0 +18497,74,10,16,0.0 +18497,61,28.5,6,0.0 +18497,39,18,45,0.0 +18497,17,39,34,0.0 +18497,14,23.25,12,0.0 +18497,31,12.5,32,0.0 +18497,64,33.25,16,0.0 +18497,3,10,6,0.0 +18497,60,34,28,0.0 +18497,56,38,34,0.0 +18497,15,15.5,7,0.0 +18497,25,14,16,0.0 +18497,35,18,43,0.0 +18497,32,32,24,0.0 +18497,24,4.5,3,0.0 +18497,67,14,27,0.0 +18497,40,18.4,4,0.0 +18497,46,12,37,0.0 +18497,1,18,38,0.0 +18497,66,17,29,0.0 +18497,51,53,5,0.0 +18497,58,13.25,29,0.0 +18497,20,81,31,0.0 +18497,52,7,40,0.0 +18497,62,49.3,9,0.0 +18497,30,25.89,36,0.0 +18497,26,31.23,25,0.0 +18497,77,13,42,0.0 +18497,33,2.5,12,0.0 +18497,38,263.5,44,0.0 +18497,10,31,27,0.0 +18497,42,14,6,0.0 +18497,11,21,16,0.0 +18498,75,7.75,11,0.0 +18498,70,15,23,0.0 +18498,10,31,26,0.0 +18498,58,13.25,35,0.0 +18498,37,26,13,0.0 +18498,77,13,14,0.0 +18498,66,17,29,0.0 +18498,53,32.8,2,0.0 +18498,49,20,27,0.0 +18498,23,9,20,0.0 +18498,42,14,1,0.0 +18498,65,21.05,10,0.0 +18498,67,14,6,0.0 +18498,64,33.25,45,0.0 +18498,9,97,9,0.0 +18498,6,25,10,0.0 +18498,73,15,2,0.0 +18498,63,43.9,46,0.0 +18498,38,263.5,10,0.0 +18498,17,39,50,0.0 +18498,8,40,39,0.0 +18498,1,18,21,0.0 +18498,15,15.5,34,0.0 +18498,74,10,50,0.0 +18498,40,18.4,46,0.0 +18498,27,43.9,45,0.0 +18498,44,19.45,50,0.0 +18498,56,38,42,0.0 +18498,20,81,20,0.0 +18498,39,18,40,0.0 +18498,5,21.35,36,0.0 +18498,22,21,36,0.0 +18498,41,9.65,17,0.0 +18498,31,12.5,49,0.0 +18498,16,17.45,29,0.0 +18498,48,12.75,34,0.0 +18498,13,6,25,0.0 +18498,61,28.5,15,0.0 +18498,32,32,34,0.0 +18498,59,55,16,0.0 +18498,51,53,30,0.0 +18498,47,9.5,6,0.0 +18499,22,21,29,0.0 +18499,36,19,23,0.0 +18499,13,6,41,0.0 +18499,20,81,1,0.0 +18499,73,15,15,0.0 +18499,10,31,35,0.0 +18499,50,16.25,41,0.0 +18499,65,21.05,26,0.0 +18499,16,17.45,20,0.0 +18499,45,9.5,15,0.0 +18499,47,9.5,6,0.0 +18499,37,26,18,0.0 +18499,64,33.25,24,0.0 +18499,18,62.5,8,0.0 +18499,7,30,25,0.0 +18499,67,14,20,0.0 +18499,19,9.2,16,0.0 +18499,23,9,13,0.0 +18499,34,14,7,0.0 +18499,55,24,11,0.0 +18499,75,7.75,34,0.0 +18499,72,34.8,1,0.0 +18499,54,7.45,49,0.0 +18499,77,13,50,0.0 +18499,74,10,4,0.0 +18499,48,12.75,26,0.0 +18499,68,12.5,47,0.0 +18499,5,21.35,33,0.0 +18499,1,18,7,0.0 +18499,58,13.25,29,0.0 +18499,9,97,6,0.0 +18499,46,12,28,0.0 +18499,70,15,10,0.0 +18499,31,12.5,45,0.0 +18499,62,49.3,29,0.0 +18500,77,13,41,0.0 +18500,40,18.4,7,0.0 +18500,11,21,17,0.0 +18500,20,81,16,0.0 +18500,50,16.25,30,0.0 +18500,3,10,42,0.0 +18500,59,55,25,0.0 +18500,41,9.65,24,0.0 +18500,12,38,39,0.0 +18500,19,9.2,41,0.0 +18500,21,10,22,0.0 +18500,22,21,23,0.0 +18500,7,30,1,0.0 +18501,51,53,8,0.0 +18501,19,9.2,6,0.0 +18501,4,22,30,0.0 +18501,52,7,12,0.0 +18501,26,31.23,29,0.0 +18501,61,28.5,32,0.0 +18501,58,13.25,39,0.0 +18501,13,6,43,0.0 +18501,62,49.3,14,0.0 +18501,67,14,12,0.0 +18501,3,10,8,0.0 +18501,46,12,31,0.0 +18501,33,2.5,48,0.0 +18501,28,45.6,41,0.0 +18501,38,263.5,35,0.0 +18501,14,23.25,30,0.0 +18501,7,30,12,0.0 +18501,23,9,47,0.0 +18501,22,21,50,0.0 +18501,6,25,14,0.0 +18501,53,32.8,12,0.0 +18501,64,33.25,30,0.0 +18501,71,21.5,24,0.0 +18501,56,38,23,0.0 +18501,21,10,50,0.0 +18501,2,19,44,0.0 +18501,27,43.9,37,0.0 +18501,10,31,39,0.0 +18501,24,4.5,27,0.0 +18501,50,16.25,5,0.0 +18501,8,40,39,0.0 +18501,40,18.4,45,0.0 +18501,16,17.45,14,0.0 +18501,25,14,33,0.0 +18501,30,25.89,15,0.0 +18501,68,12.5,20,0.0 +18501,42,14,35,0.0 +18501,11,21,19,0.0 +18501,48,12.75,43,0.0 +18501,32,32,16,0.0 +18501,35,18,30,0.0 +18501,70,15,48,0.0 +18501,76,18,25,0.0 +18501,1,18,34,0.0 +18501,31,12.5,29,0.0 +18501,45,9.5,19,0.0 +18501,54,7.45,40,0.0 +18501,34,14,35,0.0 +18501,57,19.5,34,0.0 +18501,17,39,19,0.0 +18501,75,7.75,42,0.0 +18501,73,15,36,0.0 +18501,20,81,35,0.0 +18501,59,55,22,0.0 +18501,66,17,50,0.0 +18502,53,32.8,44,0.0 +18502,9,97,13,0.0 +18502,36,19,6,0.0 +18502,40,18.4,46,0.0 +18502,28,45.6,1,0.0 +18502,37,26,37,0.0 +18502,57,19.5,48,0.0 +18502,26,31.23,21,0.0 +18502,13,6,32,0.0 +18502,2,19,27,0.0 +18502,6,25,34,0.0 +18502,46,12,17,0.0 +18502,11,21,47,0.0 +18502,64,33.25,47,0.0 +18502,74,10,12,0.0 +18502,56,38,41,0.0 +18502,4,22,22,0.0 +18502,5,21.35,35,0.0 +18502,68,12.5,23,0.0 +18502,65,21.05,13,0.0 +18502,17,39,35,0.0 +18502,38,263.5,9,0.0 +18502,22,21,33,0.0 +18502,54,7.45,5,0.0 +18502,20,81,35,0.0 +18502,15,15.5,27,0.0 +18502,76,18,1,0.0 +18502,73,15,11,0.0 +18502,71,21.5,24,0.0 +18502,27,43.9,4,0.0 +18502,52,7,24,0.0 +18502,33,2.5,40,0.0 +18502,12,38,13,0.0 +18502,62,49.3,14,0.0 +18502,3,10,2,0.0 +18502,70,15,27,0.0 +18502,18,62.5,27,0.0 +18502,31,12.5,26,0.0 +18502,59,55,28,0.0 +18502,7,30,7,0.0 +18502,41,9.65,30,0.0 +18502,10,31,16,0.0 +18502,51,53,42,0.0 +18502,61,28.5,26,0.0 +18503,54,7.45,21,0.0 +18503,46,12,30,0.0 +18503,43,46,44,0.0 +18503,24,4.5,40,0.0 +18503,53,32.8,10,0.0 +18503,33,2.5,26,0.0 +18503,28,45.6,42,0.0 +18503,73,15,8,0.0 +18503,14,23.25,42,0.0 +18503,15,15.5,34,0.0 +18503,62,49.3,6,0.0 +18503,35,18,4,0.0 +18503,25,14,39,0.0 +18503,65,21.05,36,0.0 +18503,32,32,49,0.0 +18503,76,18,26,0.0 +18503,61,28.5,30,0.0 +18503,18,62.5,9,0.0 +18503,66,17,48,0.0 +18503,39,18,37,0.0 +18503,12,38,19,0.0 +18503,21,10,40,0.0 +18503,55,24,29,0.0 +18503,48,12.75,37,0.0 +18503,57,19.5,7,0.0 +18503,71,21.5,11,0.0 +18503,34,14,13,0.0 +18504,35,18,7,0.0 +18504,16,17.45,16,0.0 +18504,77,13,29,0.0 +18505,65,21.05,36,0.0 +18505,49,20,22,0.0 +18505,40,18.4,41,0.0 +18505,7,30,46,0.0 +18505,76,18,38,0.0 +18505,66,17,30,0.0 +18505,55,24,14,0.0 +18505,75,7.75,11,0.0 +18505,59,55,12,0.0 +18505,6,25,46,0.0 +18505,72,34.8,12,0.0 +18505,44,19.45,37,0.0 +18505,28,45.6,9,0.0 +18505,45,9.5,8,0.0 +18505,58,13.25,37,0.0 +18505,25,14,1,0.0 +18505,15,15.5,13,0.0 +18505,53,32.8,41,0.0 +18505,10,31,38,0.0 +18505,52,7,14,0.0 +18505,11,21,3,0.0 +18505,51,53,13,0.0 +18505,70,15,2,0.0 +18505,19,9.2,10,0.0 +18505,50,16.25,27,0.0 +18505,23,9,11,0.0 +18505,18,62.5,47,0.0 +18505,57,19.5,16,0.0 +18505,27,43.9,43,0.0 +18505,35,18,28,0.0 +18505,12,38,9,0.0 +18505,1,18,16,0.0 +18506,50,16.25,15,0.0 +18506,37,26,9,0.0 +18506,64,33.25,22,0.0 +18506,52,7,44,0.0 +18506,71,21.5,5,0.0 +18506,15,15.5,47,0.0 +18506,40,18.4,16,0.0 +18506,43,46,47,0.0 +18506,63,43.9,8,0.0 +18506,38,263.5,13,0.0 +18506,54,7.45,2,0.0 +18506,9,97,35,0.0 +18506,67,14,19,0.0 +18506,53,32.8,35,0.0 +18506,39,18,49,0.0 +18506,36,19,13,0.0 +18506,33,2.5,34,0.0 +18506,29,123.79,49,0.0 +18506,42,14,23,0.0 +18506,28,45.6,34,0.0 +18506,31,12.5,13,0.0 +18506,11,21,32,0.0 +18506,5,21.35,17,0.0 +18506,18,62.5,48,0.0 +18506,3,10,13,0.0 +18506,24,4.5,13,0.0 +18506,60,34,48,0.0 +18506,7,30,12,0.0 +18507,67,14,48,0.0 +18507,61,28.5,2,0.0 +18507,15,15.5,44,0.0 +18507,27,43.9,25,0.0 +18507,44,19.45,35,0.0 +18507,21,10,17,0.0 +18507,57,19.5,9,0.0 +18507,31,12.5,50,0.0 +18507,12,38,30,0.0 +18507,23,9,19,0.0 +18507,35,18,23,0.0 +18507,3,10,10,0.0 +18507,8,40,18,0.0 +18507,43,46,26,0.0 +18507,45,9.5,36,0.0 +18507,14,23.25,1,0.0 +18507,52,7,39,0.0 +18507,49,20,7,0.0 +18507,68,12.5,12,0.0 +18508,13,6,11,0.0 +18508,30,25.89,1,0.0 +18508,21,10,9,0.0 +18508,53,32.8,4,0.0 +18508,72,34.8,40,0.0 +18508,55,24,49,0.0 +18508,19,9.2,6,0.0 +18508,8,40,23,0.0 +18508,25,14,35,0.0 +18508,60,34,31,0.0 +18508,50,16.25,36,0.0 +18509,4,22,39,0.0 +18509,46,12,2,0.0 +18509,28,45.6,9,0.0 +18509,14,23.25,17,0.0 +18509,12,38,48,0.0 +18509,69,36,18,0.0 +18509,5,21.35,2,0.0 +18509,15,15.5,11,0.0 +18509,30,25.89,37,0.0 +18509,59,55,23,0.0 +18509,8,40,15,0.0 +18509,13,6,39,0.0 +18509,70,15,23,0.0 +18509,39,18,36,0.0 +18509,66,17,27,0.0 +18509,50,16.25,16,0.0 +18509,55,24,20,0.0 +18509,72,34.8,15,0.0 +18510,69,36,36,0.0 +18510,65,21.05,46,0.0 +18510,37,26,40,0.0 +18510,12,38,12,0.0 +18510,63,43.9,45,0.0 +18510,68,12.5,32,0.0 +18510,25,14,50,0.0 +18510,64,33.25,17,0.0 +18510,39,18,26,0.0 +18510,38,263.5,25,0.0 +18510,14,23.25,41,0.0 +18510,29,123.79,41,0.0 +18510,19,9.2,11,0.0 +18510,45,9.5,46,0.0 +18510,20,81,28,0.0 +18510,1,18,25,0.0 +18510,71,21.5,24,0.0 +18510,52,7,39,0.0 +18510,30,25.89,50,0.0 +18510,61,28.5,6,0.0 +18510,70,15,22,0.0 +18510,58,13.25,37,0.0 +18510,46,12,24,0.0 +18510,62,49.3,50,0.0 +18510,27,43.9,5,0.0 +18510,44,19.45,3,0.0 +18510,49,20,4,0.0 +18510,34,14,12,0.0 +18510,73,15,14,0.0 +18510,11,21,13,0.0 +18510,3,10,25,0.0 +18510,72,34.8,31,0.0 +18510,24,4.5,27,0.0 +18510,55,24,33,0.0 +18510,51,53,42,0.0 +18510,23,9,4,0.0 +18510,33,2.5,49,0.0 +18510,74,10,22,0.0 +18510,7,30,13,0.0 +18510,13,6,7,0.0 +18510,56,38,19,0.0 +18510,54,7.45,29,0.0 +18510,22,21,49,0.0 +18510,10,31,39,0.0 +18510,47,9.5,45,0.0 +18510,59,55,3,0.0 +18510,31,12.5,40,0.0 +18510,5,21.35,38,0.0 +18510,35,18,34,0.0 +18510,76,18,35,0.0 +18510,16,17.45,39,0.0 +18510,9,97,20,0.0 +18510,26,31.23,46,0.0 +18510,43,46,35,0.0 +18510,66,17,11,0.0 +18510,67,14,43,0.0 +18510,75,7.75,34,0.0 +18510,50,16.25,13,0.0 +18510,48,12.75,23,0.0 +18510,17,39,13,0.0 +18510,42,14,36,0.0 +18510,15,15.5,4,0.0 +18510,4,22,41,0.0 +18510,2,19,38,0.0 +18510,53,32.8,17,0.0 +18510,41,9.65,50,0.0 +18511,69,36,41,0.0 +18511,74,10,1,0.0 +18511,41,9.65,40,0.0 +18511,42,14,48,0.0 +18511,60,34,19,0.0 +18511,56,38,28,0.0 +18511,49,20,34,0.0 +18511,27,43.9,14,0.0 +18511,45,9.5,50,0.0 +18511,66,17,34,0.0 +18511,24,4.5,2,0.0 +18511,47,9.5,48,0.0 +18511,44,19.45,9,0.0 +18511,63,43.9,48,0.0 +18511,16,17.45,33,0.0 +18511,11,21,16,0.0 +18511,73,15,33,0.0 +18511,17,39,8,0.0 +18511,51,53,21,0.0 +18511,14,23.25,3,0.0 +18511,23,9,45,0.0 +18511,64,33.25,24,0.0 +18511,39,18,37,0.0 +18511,2,19,36,0.0 +18511,40,18.4,3,0.0 +18511,67,14,6,0.0 +18511,72,34.8,23,0.0 +18511,33,2.5,33,0.0 +18511,6,25,31,0.0 +18511,21,10,33,0.0 +18511,12,38,33,0.0 +18511,71,21.5,45,0.0 +18511,37,26,43,0.0 +18511,1,18,45,0.0 +18511,19,9.2,8,0.0 +18511,26,31.23,39,0.0 +18511,61,28.5,3,0.0 +18511,76,18,32,0.0 +18511,46,12,50,0.0 +18511,65,21.05,33,0.0 +18511,35,18,37,0.0 +18511,54,7.45,28,0.0 +18511,36,19,13,0.0 +18511,53,32.8,21,0.0 +18511,29,123.79,19,0.0 +18511,20,81,36,0.0 +18511,32,32,44,0.0 +18511,34,14,1,0.0 +18511,31,12.5,46,0.0 +18511,70,15,1,0.0 +18511,5,21.35,44,0.0 +18511,75,7.75,11,0.0 +18511,68,12.5,41,0.0 +18511,55,24,46,0.0 +18511,48,12.75,37,0.0 +18512,12,38,47,0.0 +18512,42,14,1,0.0 +18512,27,43.9,43,0.0 +18512,75,7.75,10,0.0 +18512,14,23.25,26,0.0 +18512,53,32.8,5,0.0 +18512,66,17,24,0.0 +18512,77,13,23,0.0 +18512,74,10,25,0.0 +18513,58,13.25,20,0.0 +18513,23,9,45,0.0 +18513,25,14,8,0.0 +18513,65,21.05,17,0.0 +18513,46,12,20,0.0 +18513,64,33.25,30,0.0 +18513,9,97,38,0.0 +18513,2,19,26,0.0 +18513,41,9.65,13,0.0 +18513,56,38,9,0.0 +18513,71,21.5,15,0.0 +18513,57,19.5,23,0.0 +18513,59,55,34,0.0 +18514,6,25,24,0.0 +18514,47,9.5,24,0.0 +18514,10,31,3,0.0 +18514,24,4.5,18,0.0 +18514,1,18,27,0.0 +18514,43,46,27,0.0 +18514,49,20,38,0.0 +18514,3,10,23,0.0 +18514,32,32,17,0.0 +18514,4,22,43,0.0 +18514,57,19.5,30,0.0 +18514,50,16.25,4,0.0 +18514,31,12.5,21,0.0 +18514,25,14,9,0.0 +18514,74,10,41,0.0 +18514,14,23.25,44,0.0 +18514,5,21.35,35,0.0 +18514,77,13,26,0.0 +18514,42,14,28,0.0 +18514,64,33.25,7,0.0 +18514,16,17.45,44,0.0 +18514,27,43.9,42,0.0 +18514,29,123.79,18,0.0 +18514,68,12.5,5,0.0 +18514,53,32.8,42,0.0 +18514,37,26,22,0.0 +18514,67,14,25,0.0 +18514,65,21.05,19,0.0 +18514,19,9.2,49,0.0 +18514,52,7,22,0.0 +18514,35,18,38,0.0 +18514,72,34.8,23,0.0 +18514,26,31.23,21,0.0 +18514,75,7.75,9,0.0 +18514,41,9.65,29,0.0 +18514,12,38,6,0.0 +18514,63,43.9,15,0.0 +18514,18,62.5,22,0.0 +18514,7,30,19,0.0 +18514,58,13.25,27,0.0 +18514,51,53,45,0.0 +18514,13,6,10,0.0 +18514,71,21.5,4,0.0 +18514,17,39,1,0.0 +18514,54,7.45,3,0.0 +18514,70,15,2,0.0 +18514,8,40,38,0.0 +18514,66,17,2,0.0 +18514,30,25.89,27,0.0 +18514,45,9.5,27,0.0 +18514,21,10,3,0.0 +18514,46,12,25,0.0 +18514,23,9,22,0.0 +18514,39,18,28,0.0 +18514,28,45.6,4,0.0 +18514,36,19,18,0.0 +18514,33,2.5,9,0.0 +18514,60,34,13,0.0 +18514,38,263.5,7,0.0 +18514,15,15.5,38,0.0 +18515,77,13,39,0.0 +18515,27,43.9,18,0.0 +18515,34,14,13,0.0 +18515,13,6,18,0.0 +18515,48,12.75,47,0.0 +18515,76,18,42,0.0 +18515,1,18,4,0.0 +18515,15,15.5,46,0.0 +18515,30,25.89,24,0.0 +18515,57,19.5,46,0.0 +18515,59,55,8,0.0 +18515,25,14,48,0.0 +18515,73,15,24,0.0 +18515,56,38,13,0.0 +18515,66,17,40,0.0 +18515,53,32.8,24,0.0 +18515,65,21.05,20,0.0 +18516,11,21,37,0.0 +18516,39,18,29,0.0 +18516,44,19.45,30,0.0 +18516,48,12.75,6,0.0 +18516,26,31.23,15,0.0 +18516,58,13.25,5,0.0 +18516,59,55,12,0.0 +18516,6,25,12,0.0 +18516,38,263.5,3,0.0 +18516,42,14,28,0.0 +18516,70,15,10,0.0 +18516,32,32,35,0.0 +18516,74,10,19,0.0 +18516,46,12,41,0.0 +18516,10,31,40,0.0 +18516,71,21.5,37,0.0 +18516,51,53,19,0.0 +18516,25,14,34,0.0 +18516,17,39,13,0.0 +18516,16,17.45,45,0.0 +18516,27,43.9,19,0.0 +18516,40,18.4,13,0.0 +18516,23,9,15,0.0 +18516,28,45.6,18,0.0 +18516,60,34,44,0.0 +18516,73,15,34,0.0 +18516,69,36,8,0.0 +18516,15,15.5,44,0.0 +18517,6,25,23,0.0 +18517,12,38,36,0.0 +18517,33,2.5,5,0.0 +18517,1,18,39,0.0 +18517,39,18,44,0.0 +18517,36,19,50,0.0 +18517,30,25.89,41,0.0 +18517,20,81,28,0.0 +18517,41,9.65,2,0.0 +18517,56,38,15,0.0 +18517,7,30,4,0.0 +18517,18,62.5,3,0.0 +18517,57,19.5,39,0.0 +18517,17,39,40,0.0 +18517,11,21,10,0.0 +18517,3,10,9,0.0 +18517,67,14,22,0.0 +18517,31,12.5,16,0.0 +18517,4,22,45,0.0 +18517,72,34.8,3,0.0 +18517,38,263.5,40,0.0 +18517,44,19.45,42,0.0 +18517,27,43.9,14,0.0 +18517,66,17,14,0.0 +18517,71,21.5,37,0.0 +18517,49,20,19,0.0 +18517,58,13.25,47,0.0 +18517,54,7.45,27,0.0 +18517,69,36,8,0.0 +18517,43,46,47,0.0 +18517,14,23.25,2,0.0 +18517,60,34,1,0.0 +18517,19,9.2,48,0.0 +18517,2,19,35,0.0 +18517,21,10,44,0.0 +18517,59,55,2,0.0 +18517,53,32.8,31,0.0 +18517,68,12.5,20,0.0 +18517,61,28.5,40,0.0 +18517,34,14,37,0.0 +18517,8,40,22,0.0 +18517,73,15,48,0.0 +18517,77,13,14,0.0 +18517,51,53,28,0.0 +18517,28,45.6,50,0.0 +18517,64,33.25,42,0.0 +18518,46,12,7,0.0 +18518,51,53,25,0.0 +18518,70,15,22,0.0 +18518,4,22,28,0.0 +18518,76,18,41,0.0 +18518,73,15,33,0.0 +18518,6,25,22,0.0 +18518,35,18,6,0.0 +18518,45,9.5,6,0.0 +18518,20,81,31,0.0 +18518,5,21.35,45,0.0 +18518,54,7.45,9,0.0 +18518,10,31,18,0.0 +18518,63,43.9,16,0.0 +18518,2,19,29,0.0 +18518,62,49.3,28,0.0 +18518,59,55,32,0.0 +18518,50,16.25,38,0.0 +18518,13,6,2,0.0 +18518,34,14,25,0.0 +18518,24,4.5,25,0.0 +18518,36,19,46,0.0 +18518,25,14,15,0.0 +18518,14,23.25,10,0.0 +18518,61,28.5,3,0.0 +18518,49,20,2,0.0 +18518,26,31.23,16,0.0 +18518,11,21,2,0.0 +18518,18,62.5,16,0.0 +18518,33,2.5,14,0.0 +18518,71,21.5,40,0.0 +18518,31,12.5,12,0.0 +18518,56,38,23,0.0 +18518,12,38,46,0.0 +18518,32,32,32,0.0 +18518,37,26,13,0.0 +18519,73,15,33,0.0 +18519,54,7.45,23,0.0 +18519,64,33.25,44,0.0 +18519,28,45.6,16,0.0 +18519,25,14,23,0.0 +18519,20,81,32,0.0 +18519,68,12.5,25,0.0 +18519,58,13.25,16,0.0 +18519,31,12.5,24,0.0 +18519,18,62.5,29,0.0 +18519,21,10,22,0.0 +18519,77,13,23,0.0 +18519,34,14,1,0.0 +18519,53,32.8,13,0.0 +18519,46,12,15,0.0 +18519,13,6,2,0.0 +18519,10,31,5,0.0 +18519,51,53,3,0.0 +18519,8,40,33,0.0 +18519,44,19.45,25,0.0 +18519,43,46,24,0.0 +18519,26,31.23,34,0.0 +18519,17,39,17,0.0 +18519,14,23.25,21,0.0 +18519,19,9.2,13,0.0 +18519,69,36,26,0.0 +18519,40,18.4,30,0.0 +18519,45,9.5,17,0.0 +18519,6,25,4,0.0 +18519,7,30,50,0.0 +18519,38,263.5,16,0.0 +18519,9,97,2,0.0 +18519,61,28.5,19,0.0 +18519,50,16.25,25,0.0 +18519,76,18,38,0.0 +18519,37,26,34,0.0 +18519,71,21.5,23,0.0 +18519,22,21,26,0.0 +18519,56,38,23,0.0 +18519,47,9.5,27,0.0 +18519,4,22,36,0.0 +18519,35,18,48,0.0 +18519,42,14,12,0.0 +18519,75,7.75,44,0.0 +18519,15,15.5,45,0.0 +18519,11,21,5,0.0 +18519,52,7,1,0.0 +18519,59,55,45,0.0 +18519,30,25.89,41,0.0 +18519,27,43.9,14,0.0 +18519,1,18,26,0.0 +18519,5,21.35,48,0.0 +18519,32,32,35,0.0 +18519,16,17.45,22,0.0 +18519,2,19,22,0.0 +18519,65,21.05,15,0.0 +18519,49,20,11,0.0 +18519,74,10,12,0.0 +18520,16,17.45,34,0.0 +18520,51,53,22,0.0 +18520,26,31.23,39,0.0 +18520,55,24,30,0.0 +18520,68,12.5,2,0.0 +18520,31,12.5,19,0.0 +18520,22,21,17,0.0 +18520,17,39,35,0.0 +18520,50,16.25,26,0.0 +18520,60,34,17,0.0 +18520,46,12,31,0.0 +18520,47,9.5,29,0.0 +18520,77,13,48,0.0 +18520,36,19,25,0.0 +18520,35,18,31,0.0 +18520,42,14,11,0.0 +18520,19,9.2,44,0.0 +18520,30,25.89,48,0.0 +18520,53,32.8,10,0.0 +18520,8,40,34,0.0 +18520,4,22,5,0.0 +18520,61,28.5,24,0.0 +18520,54,7.45,50,0.0 +18520,56,38,28,0.0 +18520,25,14,26,0.0 +18521,32,32,40,0.0 +18521,26,31.23,23,0.0 +18521,24,4.5,37,0.0 +18521,39,18,6,0.0 +18521,8,40,48,0.0 +18521,45,9.5,30,0.0 +18521,3,10,45,0.0 +18521,28,45.6,43,0.0 +18521,46,12,37,0.0 +18521,31,12.5,7,0.0 +18521,76,18,20,0.0 +18521,10,31,3,0.0 +18521,35,18,41,0.0 +18521,52,7,48,0.0 +18521,65,21.05,13,0.0 +18521,53,32.8,33,0.0 +18521,2,19,1,0.0 +18521,67,14,27,0.0 +18521,57,19.5,32,0.0 +18521,44,19.45,23,0.0 +18521,18,62.5,18,0.0 +18521,1,18,11,0.0 +18522,73,15,3,0.0 +18522,39,18,19,0.0 +18522,59,55,46,0.0 +18522,55,24,26,0.0 +18522,35,18,17,0.0 +18522,63,43.9,46,0.0 +18522,26,31.23,31,0.0 +18522,64,33.25,8,0.0 +18522,10,31,9,0.0 +18522,12,38,45,0.0 +18522,2,19,11,0.0 +18522,9,97,1,0.0 +18522,14,23.25,31,0.0 +18522,43,46,16,0.0 +18522,53,32.8,47,0.0 +18522,4,22,43,0.0 +18522,49,20,9,0.0 +18522,24,4.5,9,0.0 +18522,6,25,18,0.0 +18522,50,16.25,19,0.0 +18522,27,43.9,31,0.0 +18522,17,39,35,0.0 +18522,19,9.2,11,0.0 +18522,31,12.5,34,0.0 +18522,37,26,49,0.0 +18522,67,14,45,0.0 +18522,7,30,11,0.0 +18522,29,123.79,34,0.0 +18522,68,12.5,9,0.0 +18522,54,7.45,35,0.0 +18522,40,18.4,33,0.0 +18522,16,17.45,35,0.0 +18522,11,21,36,0.0 +18522,18,62.5,36,0.0 +18522,23,9,19,0.0 +18522,51,53,13,0.0 +18522,45,9.5,25,0.0 +18522,70,15,49,0.0 +18522,77,13,17,0.0 +18522,65,21.05,34,0.0 +18522,71,21.5,36,0.0 +18522,57,19.5,38,0.0 +18522,13,6,25,0.0 +18522,5,21.35,37,0.0 +18522,22,21,30,0.0 +18522,41,9.65,19,0.0 +18522,25,14,1,0.0 +18522,3,10,43,0.0 +18522,56,38,4,0.0 +18522,20,81,14,0.0 +18522,48,12.75,10,0.0 +18522,58,13.25,15,0.0 +18522,38,263.5,33,0.0 +18522,74,10,44,0.0 +18522,34,14,25,0.0 +18522,42,14,16,0.0 +18522,21,10,34,0.0 +18522,8,40,48,0.0 +18522,52,7,40,0.0 +18522,32,32,29,0.0 +18522,33,2.5,34,0.0 +18522,46,12,27,0.0 +18522,1,18,11,0.0 +18522,69,36,40,0.0 +18523,38,263.5,16,0.0 +18523,71,21.5,11,0.0 +18523,58,13.25,10,0.0 +18523,68,12.5,47,0.0 +18523,9,97,8,0.0 +18523,12,38,48,0.0 +18523,46,12,3,0.0 +18523,73,15,46,0.0 +18523,31,12.5,48,0.0 +18523,60,34,37,0.0 +18523,22,21,49,0.0 +18523,8,40,31,0.0 +18523,40,18.4,41,0.0 +18523,42,14,43,0.0 +18523,64,33.25,43,0.0 +18523,26,31.23,32,0.0 +18523,15,15.5,10,0.0 +18523,1,18,28,0.0 +18523,65,21.05,8,0.0 +18523,32,32,10,0.0 +18523,36,19,7,0.0 +18523,51,53,38,0.0 +18523,19,9.2,27,0.0 +18523,77,13,26,0.0 +18523,75,7.75,15,0.0 +18523,61,28.5,12,0.0 +18523,53,32.8,14,0.0 +18523,48,12.75,21,0.0 +18523,45,9.5,49,0.0 +18523,21,10,26,0.0 +18523,6,25,18,0.0 +18523,27,43.9,48,0.0 +18523,3,10,21,0.0 +18523,47,9.5,17,0.0 +18523,52,7,40,0.0 +18523,13,6,15,0.0 +18523,70,15,4,0.0 +18523,11,21,16,0.0 +18523,33,2.5,3,0.0 +18523,17,39,20,0.0 +18523,74,10,6,0.0 +18523,30,25.89,42,0.0 +18523,69,36,13,0.0 +18523,14,23.25,9,0.0 +18523,37,26,21,0.0 +18523,59,55,31,0.0 +18523,66,17,41,0.0 +18523,25,14,45,0.0 +18524,34,14,38,0.0 +18524,6,25,39,0.0 +18524,70,15,15,0.0 +18524,77,13,33,0.0 +18524,63,43.9,27,0.0 +18524,23,9,26,0.0 +18524,52,7,12,0.0 +18524,9,97,28,0.0 +18524,60,34,2,0.0 +18524,28,45.6,32,0.0 +18524,8,40,3,0.0 +18524,22,21,18,0.0 +18524,40,18.4,35,0.0 +18524,2,19,29,0.0 +18524,76,18,19,0.0 +18524,49,20,10,0.0 +18524,44,19.45,28,0.0 +18524,57,19.5,28,0.0 +18524,75,7.75,41,0.0 +18524,56,38,49,0.0 +18524,24,4.5,39,0.0 +18524,64,33.25,9,0.0 +18524,36,19,45,0.0 +18524,29,123.79,34,0.0 +18524,41,9.65,36,0.0 +18524,74,10,6,0.0 +18524,58,13.25,45,0.0 +18524,38,263.5,6,0.0 +18524,12,38,2,0.0 +18524,5,21.35,47,0.0 +18524,71,21.5,12,0.0 +18524,37,26,19,0.0 +18524,20,81,11,0.0 +18524,51,53,4,0.0 +18524,45,9.5,12,0.0 +18524,11,21,46,0.0 +18524,13,6,3,0.0 +18524,32,32,8,0.0 +18524,14,23.25,3,0.0 +18524,46,12,17,0.0 +18524,25,14,18,0.0 +18524,67,14,18,0.0 +18524,61,28.5,6,0.0 +18524,33,2.5,25,0.0 +18524,15,15.5,29,0.0 +18524,3,10,33,0.0 +18524,43,46,10,0.0 +18524,50,16.25,9,0.0 +18524,69,36,17,0.0 +18524,26,31.23,6,0.0 +18524,54,7.45,1,0.0 +18524,16,17.45,50,0.0 +18524,31,12.5,30,0.0 +18524,10,31,30,0.0 +18524,17,39,19,0.0 +18524,4,22,35,0.0 +18524,59,55,44,0.0 +18524,55,24,39,0.0 +18525,72,34.8,32,0.0 +18525,8,40,42,0.0 +18525,48,12.75,12,0.0 +18525,3,10,25,0.0 +18525,6,25,32,0.0 +18525,32,32,33,0.0 +18525,61,28.5,13,0.0 +18525,14,23.25,20,0.0 +18525,16,17.45,16,0.0 +18525,12,38,9,0.0 +18525,58,13.25,31,0.0 +18525,73,15,4,0.0 +18525,28,45.6,42,0.0 +18525,35,18,36,0.0 +18525,57,19.5,5,0.0 +18525,34,14,22,0.0 +18525,11,21,13,0.0 +18525,29,123.79,11,0.0 +18525,47,9.5,10,0.0 +18525,49,20,18,0.0 +18525,43,46,26,0.0 +18525,50,16.25,3,0.0 +18525,26,31.23,40,0.0 +18525,18,62.5,11,0.0 +18525,36,19,5,0.0 +18525,39,18,46,0.0 +18525,65,21.05,13,0.0 +18525,70,15,9,0.0 +18525,40,18.4,20,0.0 +18525,15,15.5,6,0.0 +18525,17,39,43,0.0 +18525,62,49.3,33,0.0 +18525,55,24,25,0.0 +18525,68,12.5,15,0.0 +18525,41,9.65,26,0.0 +18525,51,53,45,0.0 +18525,5,21.35,37,0.0 +18525,46,12,40,0.0 +18525,10,31,20,0.0 +18525,7,30,19,0.0 +18525,13,6,24,0.0 +18525,60,34,50,0.0 +18525,33,2.5,13,0.0 +18525,53,32.8,43,0.0 +18525,2,19,25,0.0 +18525,25,14,46,0.0 +18525,1,18,8,0.0 +18525,71,21.5,25,0.0 +18525,19,9.2,9,0.0 +18525,23,9,50,0.0 +18525,69,36,14,0.0 +18525,20,81,18,0.0 +18525,56,38,17,0.0 +18525,64,33.25,43,0.0 +18525,27,43.9,24,0.0 +18526,59,55,4,0.0 +18526,16,17.45,43,0.0 +18526,21,10,24,0.0 +18526,2,19,34,0.0 +18526,39,18,39,0.0 +18526,41,9.65,21,0.0 +18526,35,18,34,0.0 +18526,63,43.9,29,0.0 +18526,73,15,48,0.0 +18526,32,32,37,0.0 +18526,17,39,45,0.0 +18526,72,34.8,41,0.0 +18526,66,17,10,0.0 +18526,18,62.5,39,0.0 +18526,37,26,34,0.0 +18526,57,19.5,28,0.0 +18526,60,34,16,0.0 +18526,1,18,41,0.0 +18526,8,40,21,0.0 +18526,51,53,28,0.0 +18526,64,33.25,41,0.0 +18526,33,2.5,17,0.0 +18526,22,21,46,0.0 +18526,69,36,26,0.0 +18526,55,24,27,0.0 +18526,26,31.23,31,0.0 +18526,11,21,35,0.0 +18526,45,9.5,46,0.0 +18526,23,9,38,0.0 +18526,62,49.3,38,0.0 +18526,44,19.45,21,0.0 +18526,34,14,33,0.0 +18526,4,22,50,0.0 +18526,42,14,25,0.0 +18526,49,20,50,0.0 +18526,31,12.5,3,0.0 +18526,7,30,26,0.0 +18526,61,28.5,1,0.0 +18526,36,19,46,0.0 +18526,53,32.8,4,0.0 +18526,25,14,39,0.0 +18526,54,7.45,35,0.0 +18526,28,45.6,20,0.0 +18526,12,38,47,0.0 +18526,70,15,37,0.0 +18526,3,10,36,0.0 +18526,29,123.79,17,0.0 +18526,9,97,24,0.0 +18526,46,12,39,0.0 +18526,48,12.75,33,0.0 +18526,20,81,44,0.0 +18526,68,12.5,11,0.0 +18526,52,7,20,0.0 +18526,15,15.5,24,0.0 +18526,65,21.05,5,0.0 +18526,77,13,1,0.0 +18526,43,46,19,0.0 +18526,19,9.2,36,0.0 +18526,71,21.5,36,0.0 +18526,76,18,50,0.0 +18526,75,7.75,48,0.0 +18526,50,16.25,5,0.0 +18526,30,25.89,7,0.0 +18526,67,14,7,0.0 +18526,6,25,34,0.0 +18526,47,9.5,8,0.0 +18526,27,43.9,30,0.0 +18526,14,23.25,15,0.0 +18526,5,21.35,33,0.0 +18526,38,263.5,7,0.0 +18526,10,31,25,0.0 +18526,58,13.25,48,0.0 +18526,24,4.5,38,0.0 +18526,13,6,21,0.0 +18526,56,38,14,0.0 +18527,22,21,14,0.0 +18527,36,19,36,0.0 +18527,14,23.25,9,0.0 +18527,51,53,48,0.0 +18527,26,31.23,3,0.0 +18527,28,45.6,40,0.0 +18527,50,16.25,48,0.0 +18527,1,18,16,0.0 +18527,33,2.5,10,0.0 +18527,56,38,5,0.0 +18527,55,24,2,0.0 +18527,9,97,43,0.0 +18527,65,21.05,8,0.0 +18527,10,31,30,0.0 +18527,5,21.35,41,0.0 +18527,20,81,47,0.0 +18527,43,46,48,0.0 +18527,67,14,32,0.0 +18527,77,13,42,0.0 +18527,38,263.5,34,0.0 +18527,37,26,31,0.0 +18527,58,13.25,2,0.0 +18527,64,33.25,16,0.0 +18527,21,10,2,0.0 +18527,53,32.8,18,0.0 +18527,7,30,47,0.0 +18527,45,9.5,27,0.0 +18527,35,18,31,0.0 +18527,41,9.65,25,0.0 +18527,70,15,18,0.0 +18527,75,7.75,48,0.0 +18527,6,25,35,0.0 +18527,27,43.9,10,0.0 +18527,8,40,40,0.0 +18527,66,17,49,0.0 +18527,31,12.5,46,0.0 +18527,24,4.5,39,0.0 +18527,48,12.75,34,0.0 +18527,17,39,35,0.0 +18527,61,28.5,5,0.0 +18527,60,34,35,0.0 +18527,11,21,32,0.0 +18527,46,12,28,0.0 +18527,19,9.2,37,0.0 +18527,44,19.45,43,0.0 +18527,2,19,30,0.0 +18528,73,15,12,0.0 +18528,59,55,34,0.0 +18528,48,12.75,1,0.0 +18528,49,20,24,0.0 +18528,50,16.25,35,0.0 +18528,56,38,50,0.0 +18528,11,21,16,0.0 +18528,60,34,14,0.0 +18528,68,12.5,35,0.0 +18528,45,9.5,16,0.0 +18528,22,21,46,0.0 +18528,42,14,42,0.0 +18528,62,49.3,34,0.0 +18528,19,9.2,48,0.0 +18528,12,38,17,0.0 +18528,33,2.5,27,0.0 +18528,2,19,22,0.0 +18528,52,7,36,0.0 +18528,31,12.5,9,0.0 +18528,23,9,11,0.0 +18528,64,33.25,24,0.0 +18528,55,24,5,0.0 +18528,43,46,27,0.0 +18528,17,39,18,0.0 +18528,76,18,12,0.0 +18528,29,123.79,31,0.0 +18528,67,14,43,0.0 +18528,20,81,20,0.0 +18528,51,53,20,0.0 +18529,67,14,26,0.0 +18529,68,12.5,38,0.0 +18529,63,43.9,29,0.0 +18529,14,23.25,22,0.0 +18529,62,49.3,48,0.0 +18529,71,21.5,45,0.0 +18529,58,13.25,13,0.0 +18529,5,21.35,48,0.0 +18529,66,17,16,0.0 +18529,75,7.75,10,0.0 +18529,61,28.5,1,0.0 +18529,4,22,19,0.0 +18529,10,31,37,0.0 +18529,2,19,47,0.0 +18529,44,19.45,8,0.0 +18529,36,19,50,0.0 +18529,12,38,6,0.0 +18529,20,81,37,0.0 +18529,38,263.5,2,0.0 +18529,57,19.5,8,0.0 +18529,27,43.9,35,0.0 +18529,35,18,34,0.0 +18529,43,46,1,0.0 +18529,9,97,39,0.0 +18529,34,14,33,0.0 +18529,74,10,30,0.0 +18529,26,31.23,4,0.0 +18529,52,7,30,0.0 +18529,32,32,32,0.0 +18529,17,39,22,0.0 +18529,48,12.75,45,0.0 +18529,18,62.5,30,0.0 +18529,37,26,14,0.0 +18529,41,9.65,45,0.0 +18529,23,9,6,0.0 +18529,64,33.25,18,0.0 +18529,33,2.5,6,0.0 +18529,47,9.5,21,0.0 +18529,65,21.05,24,0.0 +18529,55,24,38,0.0 +18529,19,9.2,22,0.0 +18529,54,7.45,2,0.0 +18529,30,25.89,20,0.0 +18529,24,4.5,26,0.0 +18529,8,40,19,0.0 +18529,25,14,43,0.0 +18529,59,55,10,0.0 +18529,1,18,44,0.0 +18529,29,123.79,2,0.0 +18529,21,10,46,0.0 +18529,15,15.5,28,0.0 +18529,45,9.5,39,0.0 +18529,6,25,38,0.0 +18529,51,53,12,0.0 +18529,60,34,32,0.0 +18529,70,15,35,0.0 +18529,7,30,10,0.0 +18529,40,18.4,34,0.0 +18529,28,45.6,11,0.0 +18529,73,15,5,0.0 +18529,16,17.45,30,0.0 +18529,11,21,7,0.0 +18529,31,12.5,12,0.0 +18529,22,21,50,0.0 +18529,72,34.8,20,0.0 +18529,13,6,33,0.0 +18529,39,18,12,0.0 +18529,76,18,16,0.0 +18530,63,43.9,27,0.0 +18530,40,18.4,12,0.0 +18530,32,32,25,0.0 +18530,2,19,26,0.0 +18530,64,33.25,32,0.0 +18530,12,38,3,0.0 +18530,10,31,31,0.0 +18530,73,15,29,0.0 +18530,30,25.89,4,0.0 +18530,13,6,38,0.0 +18530,37,26,48,0.0 +18530,51,53,6,0.0 +18530,20,81,49,0.0 +18530,15,15.5,17,0.0 +18530,23,9,5,0.0 +18530,28,45.6,8,0.0 +18530,36,19,15,0.0 +18530,55,24,12,0.0 +18530,69,36,16,0.0 +18530,77,13,29,0.0 +18530,33,2.5,25,0.0 +18530,7,30,9,0.0 +18530,75,7.75,37,0.0 +18530,53,32.8,11,0.0 +18530,66,17,10,0.0 +18530,43,46,23,0.0 +18530,14,23.25,37,0.0 +18530,76,18,36,0.0 +18530,21,10,7,0.0 +18530,11,21,1,0.0 +18530,57,19.5,46,0.0 +18530,70,15,11,0.0 +18530,19,9.2,20,0.0 +18530,62,49.3,5,0.0 +18530,72,34.8,27,0.0 +18530,5,21.35,49,0.0 +18530,24,4.5,44,0.0 +18530,38,263.5,3,0.0 +18530,46,12,26,0.0 +18530,60,34,47,0.0 +18530,3,10,35,0.0 +18530,65,21.05,27,0.0 +18530,6,25,39,0.0 +18530,34,14,40,0.0 +18530,16,17.45,42,0.0 +18530,74,10,38,0.0 +18530,44,19.45,6,0.0 +18530,31,12.5,46,0.0 +18530,8,40,26,0.0 +18530,26,31.23,8,0.0 +18530,49,20,9,0.0 +18530,4,22,49,0.0 +18530,27,43.9,23,0.0 +18530,68,12.5,27,0.0 +18530,71,21.5,7,0.0 +18530,9,97,45,0.0 +18530,1,18,10,0.0 +18530,41,9.65,48,0.0 +18530,18,62.5,3,0.0 +18530,67,14,27,0.0 +18530,59,55,50,0.0 +18530,29,123.79,26,0.0 +18530,50,16.25,15,0.0 +18530,61,28.5,9,0.0 +18530,25,14,17,0.0 +18530,58,13.25,4,0.0 +18530,35,18,45,0.0 +18530,22,21,38,0.0 +18530,52,7,46,0.0 +18530,45,9.5,6,0.0 +18530,54,7.45,23,0.0 +18530,42,14,45,0.0 +18530,56,38,11,0.0 +18530,48,12.75,49,0.0 +18530,39,18,13,0.0 +18530,47,9.5,10,0.0 +18531,26,31.23,50,0.0 +18531,57,19.5,18,0.0 +18531,34,14,13,0.0 +18532,62,49.3,5,0.0 +18532,70,15,21,0.0 +18532,20,81,42,0.0 +18532,57,19.5,41,0.0 +18532,42,14,46,0.0 +18532,69,36,39,0.0 +18532,36,19,45,0.0 +18532,5,21.35,30,0.0 +18532,39,18,48,0.0 +18532,37,26,29,0.0 +18532,6,25,33,0.0 +18532,73,15,22,0.0 +18532,15,15.5,25,0.0 +18532,61,28.5,50,0.0 +18532,47,9.5,8,0.0 +18532,32,32,36,0.0 +18532,30,25.89,44,0.0 +18532,3,10,26,0.0 +18532,25,14,26,0.0 +18532,16,17.45,15,0.0 +18532,9,97,47,0.0 +18532,72,34.8,17,0.0 +18532,67,14,43,0.0 +18532,53,32.8,21,0.0 +18532,21,10,34,0.0 +18532,45,9.5,46,0.0 +18532,64,33.25,44,0.0 +18532,23,9,3,0.0 +18532,27,43.9,23,0.0 +18532,35,18,27,0.0 +18532,10,31,4,0.0 +18532,65,21.05,48,0.0 +18532,33,2.5,19,0.0 +18532,14,23.25,14,0.0 +18532,54,7.45,12,0.0 +18532,28,45.6,30,0.0 +18532,17,39,14,0.0 +18532,31,12.5,14,0.0 +18532,66,17,36,0.0 +18532,11,21,16,0.0 +18532,7,30,32,0.0 +18532,13,6,44,0.0 +18532,51,53,22,0.0 +18532,52,7,12,0.0 +18532,76,18,13,0.0 +18532,41,9.65,11,0.0 +18532,60,34,31,0.0 +18532,1,18,13,0.0 +18532,19,9.2,46,0.0 +18532,59,55,1,0.0 +18532,58,13.25,44,0.0 +18532,40,18.4,33,0.0 +18532,38,263.5,15,0.0 +18532,50,16.25,48,0.0 +18532,26,31.23,2,0.0 +18532,49,20,27,0.0 +18532,44,19.45,28,0.0 +18532,12,38,11,0.0 +18532,22,21,21,0.0 +18532,63,43.9,42,0.0 +18532,56,38,4,0.0 +18532,43,46,32,0.0 +18532,68,12.5,25,0.0 +18532,2,19,40,0.0 +18532,24,4.5,20,0.0 +18532,77,13,11,0.0 +18532,18,62.5,11,0.0 +18532,8,40,42,0.0 +18532,71,21.5,34,0.0 +18532,75,7.75,34,0.0 +18532,55,24,13,0.0 +18532,34,14,16,0.0 +18532,74,10,44,0.0 +18533,11,21,39,0.0 +18533,16,17.45,26,0.0 +18533,62,49.3,46,0.0 +18533,71,21.5,7,0.0 +18533,27,43.9,14,0.0 +18533,54,7.45,18,0.0 +18533,10,31,27,0.0 +18533,58,13.25,16,0.0 +18533,32,32,46,0.0 +18534,55,24,32,0.0 +18534,33,2.5,16,0.0 +18534,28,45.6,29,0.0 +18534,25,14,16,0.0 +18534,27,43.9,18,0.0 +18534,16,17.45,15,0.0 +18534,24,4.5,4,0.0 +18534,56,38,8,0.0 +18534,74,10,49,0.0 +18534,41,9.65,6,0.0 +18534,53,32.8,39,0.0 +18534,17,39,23,0.0 +18534,59,55,6,0.0 +18534,69,36,42,0.0 +18534,65,21.05,17,0.0 +18534,68,12.5,21,0.0 +18534,37,26,5,0.0 +18534,12,38,17,0.0 +18535,41,9.65,17,0.0 +18535,62,49.3,13,0.0 +18535,63,43.9,27,0.0 +18535,39,18,38,0.0 +18535,46,12,22,0.0 +18535,34,14,1,0.0 +18535,40,18.4,2,0.0 +18535,70,15,29,0.0 +18535,56,38,16,0.0 +18535,47,9.5,45,0.0 +18535,17,39,2,0.0 +18535,2,19,34,0.0 +18535,69,36,47,0.0 +18535,67,14,32,0.0 +18535,77,13,45,0.0 +18536,9,97,11,0.0 +18536,6,25,43,0.0 +18536,74,10,30,0.0 +18536,29,123.79,46,0.0 +18536,52,7,18,0.0 +18536,57,19.5,30,0.0 +18536,40,18.4,12,0.0 +18536,39,18,6,0.0 +18536,46,12,10,0.0 +18536,36,19,31,0.0 +18536,33,2.5,8,0.0 +18536,3,10,38,0.0 +18536,32,32,43,0.0 +18536,31,12.5,37,0.0 +18536,58,13.25,12,0.0 +18536,10,31,48,0.0 +18536,43,46,11,0.0 +18536,75,7.75,23,0.0 +18536,15,15.5,18,0.0 +18536,7,30,13,0.0 +18536,70,15,11,0.0 +18536,62,49.3,14,0.0 +18536,42,14,32,0.0 +18536,54,7.45,26,0.0 +18536,26,31.23,21,0.0 +18536,2,19,20,0.0 +18536,24,4.5,14,0.0 +18536,37,26,6,0.0 +18536,65,21.05,46,0.0 +18536,53,32.8,32,0.0 +18536,60,34,50,0.0 +18536,55,24,41,0.0 +18536,14,23.25,13,0.0 +18536,61,28.5,43,0.0 +18536,22,21,5,0.0 +18536,23,9,3,0.0 +18536,47,9.5,48,0.0 +18536,13,6,35,0.0 +18537,13,6,47,0.0 +18537,38,263.5,17,0.0 +18537,17,39,7,0.0 +18537,55,24,48,0.0 +18537,39,18,38,0.0 +18537,28,45.6,8,0.0 +18537,2,19,17,0.0 +18537,72,34.8,47,0.0 +18537,12,38,25,0.0 +18537,9,97,10,0.0 +18537,67,14,48,0.0 +18537,33,2.5,48,0.0 +18537,63,43.9,49,0.0 +18537,48,12.75,24,0.0 +18537,49,20,18,0.0 +18537,31,12.5,47,0.0 +18537,40,18.4,18,0.0 +18537,18,62.5,11,0.0 +18537,32,32,1,0.0 +18537,20,81,7,0.0 +18537,46,12,47,0.0 +18537,5,21.35,35,0.0 +18537,54,7.45,43,0.0 +18537,65,21.05,5,0.0 +18537,69,36,17,0.0 +18537,15,15.5,17,0.0 +18537,52,7,47,0.0 +18537,77,13,36,0.0 +18537,42,14,29,0.0 +18537,16,17.45,11,0.0 +18537,74,10,30,0.0 +18537,51,53,46,0.0 +18537,6,25,28,0.0 +18537,22,21,8,0.0 +18537,58,13.25,42,0.0 +18537,10,31,10,0.0 +18537,24,4.5,43,0.0 +18537,64,33.25,3,0.0 +18537,70,15,50,0.0 +18537,7,30,46,0.0 +18537,60,34,35,0.0 +18537,47,9.5,28,0.0 +18537,59,55,19,0.0 +18538,7,30,43,0.0 +18538,6,25,31,0.0 +18538,53,32.8,9,0.0 +18538,1,18,14,0.0 +18538,18,62.5,15,0.0 +18538,61,28.5,39,0.0 +18538,60,34,10,0.0 +18538,30,25.89,32,0.0 +18538,45,9.5,22,0.0 +18538,70,15,28,0.0 +18538,5,21.35,32,0.0 +18538,19,9.2,19,0.0 +18538,43,46,50,0.0 +18538,50,16.25,12,0.0 +18538,2,19,5,0.0 +18538,13,6,50,0.0 +18538,62,49.3,22,0.0 +18539,31,12.5,41,0.0 +18539,67,14,28,0.0 +18539,48,12.75,2,0.0 +18540,70,15,17,0.0 +18540,15,15.5,3,0.0 +18540,47,9.5,33,0.0 +18540,18,62.5,33,0.0 +18540,14,23.25,40,0.0 +18540,31,12.5,26,0.0 +18540,16,17.45,24,0.0 +18540,60,34,27,0.0 +18540,61,28.5,49,0.0 +18540,72,34.8,29,0.0 +18540,58,13.25,3,0.0 +18540,27,43.9,8,0.0 +18540,39,18,30,0.0 +18540,9,97,10,0.0 +18540,62,49.3,45,0.0 +18540,41,9.65,3,0.0 +18540,34,14,10,0.0 +18540,26,31.23,37,0.0 +18540,25,14,31,0.0 +18540,64,33.25,22,0.0 +18540,36,19,39,0.0 +18540,46,12,15,0.0 +18540,19,9.2,26,0.0 +18540,49,20,2,0.0 +18540,21,10,4,0.0 +18540,20,81,2,0.0 +18540,56,38,47,0.0 +18540,28,45.6,44,0.0 +18540,5,21.35,23,0.0 +18540,65,21.05,41,0.0 +18540,42,14,8,0.0 +18540,54,7.45,43,0.0 +18540,6,25,21,0.0 +18540,45,9.5,32,0.0 +18540,33,2.5,16,0.0 +18540,68,12.5,23,0.0 +18540,38,263.5,44,0.0 +18540,35,18,22,0.0 +18540,57,19.5,30,0.0 +18540,12,38,31,0.0 +18541,16,17.45,29,0.0 +18541,72,34.8,41,0.0 +18541,73,15,22,0.0 +18541,66,17,41,0.0 +18541,32,32,48,0.0 +18541,75,7.75,18,0.0 +18541,5,21.35,23,0.0 +18541,51,53,9,0.0 +18541,46,12,18,0.0 +18541,58,13.25,48,0.0 +18541,6,25,14,0.0 +18541,52,7,22,0.0 +18541,77,13,34,0.0 +18541,15,15.5,4,0.0 +18541,14,23.25,38,0.0 +18541,63,43.9,28,0.0 +18541,38,263.5,36,0.0 +18541,20,81,23,0.0 +18541,1,18,5,0.0 +18541,70,15,30,0.0 +18541,23,9,34,0.0 +18541,76,18,9,0.0 +18541,2,19,19,0.0 +18541,11,21,17,0.0 +18541,56,38,39,0.0 +18541,34,14,7,0.0 +18541,71,21.5,48,0.0 +18541,68,12.5,13,0.0 +18541,4,22,16,0.0 +18541,37,26,31,0.0 +18541,49,20,16,0.0 +18541,42,14,8,0.0 +18541,60,34,39,0.0 +18541,39,18,35,0.0 +18541,33,2.5,39,0.0 +18541,31,12.5,35,0.0 +18541,10,31,1,0.0 +18541,30,25.89,32,0.0 +18541,45,9.5,19,0.0 +18541,9,97,48,0.0 +18541,41,9.65,21,0.0 +18541,12,38,41,0.0 +18541,35,18,32,0.0 +18541,13,6,45,0.0 +18541,19,9.2,48,0.0 +18541,44,19.45,34,0.0 +18542,52,7,30,0.0 +18542,14,23.25,30,0.0 +18542,42,14,16,0.0 +18542,73,15,39,0.0 +18542,24,4.5,10,0.0 +18542,55,24,45,0.0 +18542,18,62.5,44,0.0 +18542,29,123.79,24,0.0 +18542,19,9.2,4,0.0 +18542,63,43.9,17,0.0 +18542,17,39,45,0.0 +18542,16,17.45,31,0.0 +18542,11,21,39,0.0 +18542,4,22,11,0.0 +18542,67,14,26,0.0 +18542,23,9,17,0.0 +18542,77,13,45,0.0 +18542,76,18,2,0.0 +18542,36,19,39,0.0 +18542,30,25.89,45,0.0 +18542,49,20,11,0.0 +18542,43,46,21,0.0 +18542,74,10,15,0.0 +18542,61,28.5,40,0.0 +18542,53,32.8,27,0.0 +18542,2,19,19,0.0 +18542,34,14,40,0.0 +18542,64,33.25,18,0.0 +18542,51,53,4,0.0 +18542,26,31.23,46,0.0 +18542,72,34.8,42,0.0 +18542,28,45.6,19,0.0 +18542,60,34,2,0.0 +18542,39,18,32,0.0 +18543,59,55,10,0.0 +18543,20,81,44,0.0 +18543,2,19,9,0.0 +18543,52,7,19,0.0 +18543,15,15.5,23,0.0 +18543,42,14,34,0.0 +18543,25,14,21,0.0 +18543,61,28.5,42,0.0 +18543,47,9.5,27,0.0 +18543,71,21.5,3,0.0 +18543,22,21,1,0.0 +18543,69,36,30,0.0 +18543,39,18,29,0.0 +18543,10,31,26,0.0 +18543,48,12.75,20,0.0 +18543,3,10,36,0.0 +18543,18,62.5,15,0.0 +18543,63,43.9,48,0.0 +18543,49,20,23,0.0 +18543,40,18.4,33,0.0 +18544,49,20,11,0.0 +18544,14,23.25,7,0.0 +18544,70,15,30,0.0 +18544,72,34.8,49,0.0 +18544,71,21.5,35,0.0 +18544,36,19,22,0.0 +18544,3,10,24,0.0 +18544,30,25.89,21,0.0 +18544,64,33.25,45,0.0 +18544,23,9,3,0.0 +18544,52,7,13,0.0 +18544,21,10,41,0.0 +18544,6,25,8,0.0 +18544,18,62.5,28,0.0 +18544,73,15,21,0.0 +18544,47,9.5,7,0.0 +18544,16,17.45,19,0.0 +18544,61,28.5,3,0.0 +18544,74,10,23,0.0 +18544,57,19.5,30,0.0 +18544,4,22,6,0.0 +18544,24,4.5,28,0.0 +18544,40,18.4,24,0.0 +18544,2,19,30,0.0 +18544,34,14,19,0.0 +18544,27,43.9,49,0.0 +18544,50,16.25,47,0.0 +18544,25,14,24,0.0 +18544,54,7.45,3,0.0 +18544,45,9.5,31,0.0 +18544,9,97,31,0.0 +18544,44,19.45,20,0.0 +18544,38,263.5,13,0.0 +18544,56,38,5,0.0 +18544,68,12.5,37,0.0 +18544,26,31.23,3,0.0 +18544,63,43.9,4,0.0 +18544,20,81,21,0.0 +18544,69,36,32,0.0 +18544,8,40,41,0.0 +18544,53,32.8,20,0.0 +18544,48,12.75,22,0.0 +18544,43,46,29,0.0 +18544,15,15.5,37,0.0 +18544,31,12.5,20,0.0 +18544,37,26,6,0.0 +18544,32,32,42,0.0 +18544,10,31,26,0.0 +18544,39,18,38,0.0 +18544,12,38,21,0.0 +18544,55,24,42,0.0 +18544,60,34,45,0.0 +18544,19,9.2,21,0.0 +18544,46,12,44,0.0 +18544,76,18,25,0.0 +18544,66,17,48,0.0 +18544,29,123.79,18,0.0 +18544,41,9.65,14,0.0 +18544,67,14,23,0.0 +18544,17,39,14,0.0 +18544,1,18,27,0.0 +18544,62,49.3,48,0.0 +18544,33,2.5,10,0.0 +18544,42,14,28,0.0 +18544,7,30,50,0.0 +18544,22,21,17,0.0 +18544,58,13.25,36,0.0 +18544,59,55,45,0.0 +18544,11,21,41,0.0 +18544,5,21.35,19,0.0 +18545,45,9.5,28,0.0 +18545,62,49.3,38,0.0 +18545,61,28.5,21,0.0 +18545,29,123.79,45,0.0 +18545,19,9.2,46,0.0 +18545,5,21.35,30,0.0 +18545,17,39,46,0.0 +18545,75,7.75,49,0.0 +18545,6,25,34,0.0 +18545,25,14,36,0.0 +18545,18,62.5,21,0.0 +18545,56,38,17,0.0 +18545,28,45.6,43,0.0 +18545,44,19.45,35,0.0 +18545,50,16.25,32,0.0 +18545,52,7,36,0.0 +18545,37,26,7,0.0 +18545,13,6,13,0.0 +18545,7,30,25,0.0 +18545,47,9.5,45,0.0 +18545,23,9,44,0.0 +18545,22,21,12,0.0 +18545,65,21.05,43,0.0 +18545,60,34,19,0.0 +18545,43,46,35,0.0 +18546,62,49.3,45,0.0 +18546,31,12.5,8,0.0 +18546,26,31.23,38,0.0 +18546,27,43.9,2,0.0 +18546,12,38,32,0.0 +18546,5,21.35,46,0.0 +18546,6,25,26,0.0 +18546,60,34,36,0.0 +18546,37,26,20,0.0 +18546,75,7.75,26,0.0 +18546,57,19.5,38,0.0 +18546,14,23.25,24,0.0 +18546,53,32.8,49,0.0 +18546,24,4.5,48,0.0 +18546,16,17.45,29,0.0 +18546,20,81,4,0.0 +18546,43,46,38,0.0 +18546,15,15.5,4,0.0 +18546,68,12.5,33,0.0 +18546,29,123.79,14,0.0 +18546,23,9,49,0.0 +18546,8,40,44,0.0 +18546,64,33.25,6,0.0 +18546,2,19,30,0.0 +18546,42,14,27,0.0 +18546,77,13,23,0.0 +18546,36,19,40,0.0 +18546,30,25.89,8,0.0 +18546,3,10,33,0.0 +18546,47,9.5,12,0.0 +18546,69,36,12,0.0 +18546,66,17,45,0.0 +18546,35,18,32,0.0 +18546,51,53,3,0.0 +18546,39,18,27,0.0 +18546,59,55,34,0.0 +18546,50,16.25,30,0.0 +18546,18,62.5,45,0.0 +18546,45,9.5,37,0.0 +18546,76,18,13,0.0 +18546,25,14,3,0.0 +18546,65,21.05,28,0.0 +18546,1,18,11,0.0 +18546,48,12.75,19,0.0 +18546,70,15,14,0.0 +18546,13,6,22,0.0 +18546,9,97,19,0.0 +18546,10,31,31,0.0 +18546,17,39,13,0.0 +18546,58,13.25,17,0.0 +18546,38,263.5,47,0.0 +18546,19,9.2,41,0.0 +18547,13,6,2,0.0 +18547,27,43.9,43,0.0 +18547,48,12.75,45,0.0 +18547,28,45.6,37,0.0 +18547,25,14,20,0.0 +18547,55,24,16,0.0 +18547,6,25,21,0.0 +18547,77,13,37,0.0 +18547,39,18,34,0.0 +18547,67,14,41,0.0 +18547,26,31.23,16,0.0 +18547,42,14,14,0.0 +18547,18,62.5,37,0.0 +18547,71,21.5,45,0.0 +18547,61,28.5,28,0.0 +18547,31,12.5,38,0.0 +18547,72,34.8,9,0.0 +18547,35,18,40,0.0 +18547,4,22,2,0.0 +18547,65,21.05,24,0.0 +18547,60,34,45,0.0 +18547,19,9.2,3,0.0 +18547,43,46,42,0.0 +18547,44,19.45,17,0.0 +18547,50,16.25,20,0.0 +18547,1,18,50,0.0 +18547,41,9.65,12,0.0 +18547,58,13.25,26,0.0 +18547,38,263.5,15,0.0 +18547,30,25.89,3,0.0 +18547,9,97,8,0.0 +18547,34,14,24,0.0 +18547,51,53,34,0.0 +18547,63,43.9,23,0.0 +18547,22,21,12,0.0 +18547,8,40,42,0.0 +18547,69,36,7,0.0 +18547,36,19,40,0.0 +18547,14,23.25,44,0.0 +18547,20,81,1,0.0 +18547,15,15.5,17,0.0 +18547,64,33.25,12,0.0 +18547,73,15,30,0.0 +18547,12,38,5,0.0 +18547,52,7,13,0.0 +18547,74,10,9,0.0 +18547,24,4.5,46,0.0 +18547,40,18.4,2,0.0 +18547,75,7.75,17,0.0 +18547,68,12.5,6,0.0 +18547,53,32.8,6,0.0 +18547,16,17.45,5,0.0 +18547,32,32,20,0.0 +18547,3,10,44,0.0 +18547,70,15,20,0.0 +18547,56,38,17,0.0 +18547,49,20,29,0.0 +18547,17,39,4,0.0 +18547,76,18,18,0.0 +18547,47,9.5,23,0.0 +18547,59,55,36,0.0 +18547,54,7.45,17,0.0 +18548,48,12.75,30,0.0 +18548,7,30,6,0.0 +18548,55,24,7,0.0 +18548,14,23.25,36,0.0 +18548,28,45.6,20,0.0 +18548,62,49.3,9,0.0 +18549,49,20,50,0.0 +18549,43,46,40,0.0 +18549,44,19.45,13,0.0 +18549,58,13.25,40,0.0 +18549,16,17.45,14,0.0 +18549,33,2.5,10,0.0 +18549,26,31.23,7,0.0 +18549,38,263.5,50,0.0 +18549,72,34.8,26,0.0 +18549,29,123.79,35,0.0 +18549,40,18.4,44,0.0 +18549,25,14,44,0.0 +18549,75,7.75,10,0.0 +18549,42,14,10,0.0 +18549,22,21,14,0.0 +18549,39,18,5,0.0 +18549,18,62.5,32,0.0 +18549,8,40,23,0.0 +18549,1,18,35,0.0 +18549,31,12.5,1,0.0 +18549,14,23.25,14,0.0 +18549,55,24,7,0.0 +18549,66,17,12,0.0 +18549,68,12.5,13,0.0 +18549,65,21.05,30,0.0 +18549,60,34,33,0.0 +18549,27,43.9,43,0.0 +18549,5,21.35,21,0.0 +18549,4,22,27,0.0 +18549,46,12,32,0.0 +18549,50,16.25,8,0.0 +18549,13,6,24,0.0 +18549,32,32,30,0.0 +18549,37,26,32,0.0 +18549,59,55,20,0.0 +18549,21,10,36,0.0 +18549,20,81,8,0.0 +18549,74,10,19,0.0 +18549,63,43.9,8,0.0 +18549,28,45.6,33,0.0 +18549,11,21,6,0.0 +18549,12,38,20,0.0 +18549,52,7,42,0.0 +18549,77,13,13,0.0 +18549,3,10,44,0.0 +18549,6,25,38,0.0 +18549,19,9.2,47,0.0 +18549,56,38,41,0.0 +18549,7,30,8,0.0 +18549,23,9,18,0.0 +18549,9,97,31,0.0 +18549,51,53,4,0.0 +18549,34,14,50,0.0 +18549,47,9.5,50,0.0 +18549,62,49.3,36,0.0 +18549,69,36,49,0.0 +18549,15,15.5,21,0.0 +18549,70,15,34,0.0 +18549,17,39,48,0.0 +18549,30,25.89,43,0.0 +18549,2,19,41,0.0 +18549,61,28.5,30,0.0 +18549,64,33.25,43,0.0 +18549,54,7.45,19,0.0 +18549,10,31,12,0.0 +18549,57,19.5,21,0.0 +18549,73,15,29,0.0 +18549,35,18,19,0.0 +18549,67,14,44,0.0 +18550,56,38,38,0.0 +18550,74,10,33,0.0 +18550,37,26,32,0.0 +18550,10,31,39,0.0 +18550,36,19,5,0.0 +18550,15,15.5,29,0.0 +18550,3,10,10,0.0 +18550,73,15,33,0.0 +18550,58,13.25,2,0.0 +18550,5,21.35,25,0.0 +18550,29,123.79,21,0.0 +18550,46,12,47,0.0 +18550,8,40,4,0.0 +18550,33,2.5,35,0.0 +18550,30,25.89,14,0.0 +18550,61,28.5,35,0.0 +18550,20,81,47,0.0 +18550,6,25,30,0.0 +18550,62,49.3,7,0.0 +18550,47,9.5,43,0.0 +18550,39,18,24,0.0 +18550,11,21,32,0.0 +18550,27,43.9,13,0.0 +18550,12,38,30,0.0 +18550,53,32.8,33,0.0 +18550,75,7.75,32,0.0 +18550,63,43.9,14,0.0 +18550,76,18,37,0.0 +18551,65,21.05,49,0.0 +18551,43,46,36,0.0 +18551,64,33.25,20,0.0 +18551,32,32,37,0.0 +18551,55,24,1,0.0 +18551,37,26,25,0.0 +18551,13,6,36,0.0 +18551,2,19,38,0.0 +18551,5,21.35,32,0.0 +18551,75,7.75,41,0.0 +18551,68,12.5,10,0.0 +18551,25,14,5,0.0 +18551,38,263.5,16,0.0 +18551,60,34,43,0.0 +18551,72,34.8,7,0.0 +18551,69,36,40,0.0 +18551,45,9.5,1,0.0 +18551,12,38,28,0.0 +18551,16,17.45,2,0.0 +18551,53,32.8,47,0.0 +18551,77,13,49,0.0 +18551,57,19.5,50,0.0 +18552,35,18,35,0.0 +18552,69,36,34,0.0 +18552,3,10,18,0.0 +18552,15,15.5,47,0.0 +18552,51,53,31,0.0 +18552,41,9.65,13,0.0 +18552,45,9.5,17,0.0 +18552,14,23.25,36,0.0 +18552,56,38,49,0.0 +18552,77,13,48,0.0 +18552,67,14,9,0.0 +18552,8,40,40,0.0 +18552,25,14,21,0.0 +18552,43,46,25,0.0 +18552,72,34.8,15,0.0 +18552,28,45.6,41,0.0 +18552,63,43.9,39,0.0 +18552,48,12.75,45,0.0 +18552,21,10,8,0.0 +18552,32,32,49,0.0 +18552,24,4.5,25,0.0 +18552,44,19.45,9,0.0 +18552,29,123.79,7,0.0 +18552,18,62.5,3,0.0 +18552,1,18,24,0.0 +18552,62,49.3,31,0.0 +18552,38,263.5,14,0.0 +18552,5,21.35,24,0.0 +18552,17,39,44,0.0 +18552,2,19,48,0.0 +18552,13,6,48,0.0 +18552,19,9.2,22,0.0 +18552,27,43.9,37,0.0 +18552,68,12.5,35,0.0 +18552,49,20,12,0.0 +18552,11,21,9,0.0 +18552,12,38,39,0.0 +18552,36,19,13,0.0 +18552,76,18,33,0.0 +18552,22,21,6,0.0 +18552,42,14,6,0.0 +18552,16,17.45,22,0.0 +18552,71,21.5,14,0.0 +18552,52,7,36,0.0 +18552,66,17,32,0.0 +18552,74,10,4,0.0 +18552,30,25.89,46,0.0 +18552,50,16.25,21,0.0 +18552,46,12,36,0.0 +18552,26,31.23,23,0.0 +18552,54,7.45,20,0.0 +18552,65,21.05,6,0.0 +18552,37,26,35,0.0 +18552,40,18.4,26,0.0 +18553,71,21.5,36,0.0 +18553,43,46,27,0.0 +18553,65,21.05,43,0.0 +18553,70,15,19,0.0 +18553,45,9.5,28,0.0 +18553,18,62.5,44,0.0 +18553,16,17.45,40,0.0 +18553,3,10,50,0.0 +18553,66,17,35,0.0 +18553,7,30,47,0.0 +18553,41,9.65,45,0.0 +18554,32,32,40,0.0 +18554,60,34,22,0.0 +18554,43,46,21,0.0 +18554,25,14,42,0.0 +18554,49,20,8,0.0 +18554,68,12.5,29,0.0 +18554,77,13,39,0.0 +18554,42,14,48,0.0 +18554,54,7.45,30,0.0 +18554,36,19,27,0.0 +18554,44,19.45,26,0.0 +18554,16,17.45,42,0.0 +18554,2,19,37,0.0 +18554,30,25.89,23,0.0 +18554,40,18.4,33,0.0 +18554,13,6,12,0.0 +18554,53,32.8,26,0.0 +18554,6,25,11,0.0 +18554,70,15,18,0.0 +18554,26,31.23,20,0.0 +18554,14,23.25,27,0.0 +18554,5,21.35,3,0.0 +18554,61,28.5,1,0.0 +18554,72,34.8,18,0.0 +18554,45,9.5,47,0.0 +18554,28,45.6,27,0.0 +18554,46,12,10,0.0 +18554,38,263.5,38,0.0 +18554,52,7,13,0.0 +18554,75,7.75,4,0.0 +18554,10,31,9,0.0 +18554,51,53,45,0.0 +18554,39,18,28,0.0 +18554,3,10,11,0.0 +18554,12,38,50,0.0 +18554,9,97,13,0.0 +18554,18,62.5,31,0.0 +18554,76,18,34,0.0 +18554,73,15,38,0.0 +18554,34,14,19,0.0 +18554,8,40,18,0.0 +18554,37,26,18,0.0 +18554,48,12.75,38,0.0 +18554,59,55,12,0.0 +18555,64,33.25,50,0.0 +18555,63,43.9,30,0.0 +18555,10,31,31,0.0 +18555,12,38,27,0.0 +18555,34,14,14,0.0 +18555,66,17,4,0.0 +18555,75,7.75,24,0.0 +18555,54,7.45,36,0.0 +18555,56,38,13,0.0 +18555,14,23.25,48,0.0 +18555,77,13,24,0.0 +18555,15,15.5,6,0.0 +18555,7,30,30,0.0 +18555,26,31.23,34,0.0 +18555,33,2.5,20,0.0 +18555,68,12.5,31,0.0 +18555,29,123.79,47,0.0 +18555,21,10,39,0.0 +18555,36,19,5,0.0 +18555,37,26,27,0.0 +18555,27,43.9,38,0.0 +18555,24,4.5,31,0.0 +18555,72,34.8,2,0.0 +18555,25,14,50,0.0 +18555,46,12,20,0.0 +18555,20,81,13,0.0 +18555,61,28.5,1,0.0 +18555,22,21,29,0.0 +18555,11,21,47,0.0 +18555,67,14,29,0.0 +18555,52,7,13,0.0 +18555,38,263.5,13,0.0 +18555,35,18,36,0.0 +18555,23,9,37,0.0 +18555,71,21.5,31,0.0 +18555,1,18,20,0.0 +18555,41,9.65,41,0.0 +18555,16,17.45,38,0.0 +18556,52,7,4,0.0 +18556,53,32.8,36,0.0 +18556,48,12.75,1,0.0 +18556,5,21.35,22,0.0 +18556,7,30,27,0.0 +18556,24,4.5,9,0.0 +18556,63,43.9,27,0.0 +18556,66,17,5,0.0 +18556,42,14,7,0.0 +18556,58,13.25,29,0.0 +18556,73,15,44,0.0 +18556,60,34,41,0.0 +18556,46,12,3,0.0 +18556,16,17.45,36,0.0 +18556,62,49.3,27,0.0 +18556,3,10,30,0.0 +18556,8,40,13,0.0 +18556,47,9.5,31,0.0 +18556,37,26,34,0.0 +18556,11,21,48,0.0 +18556,23,9,35,0.0 +18556,2,19,13,0.0 +18556,51,53,34,0.0 +18556,29,123.79,5,0.0 +18556,10,31,19,0.0 +18556,4,22,27,0.0 +18556,17,39,20,0.0 +18556,26,31.23,21,0.0 +18556,54,7.45,43,0.0 +18556,15,15.5,37,0.0 +18556,28,45.6,21,0.0 +18556,1,18,18,0.0 +18556,55,24,38,0.0 +18556,14,23.25,15,0.0 +18556,69,36,42,0.0 +18556,12,38,9,0.0 +18556,77,13,11,0.0 +18556,20,81,11,0.0 +18556,31,12.5,14,0.0 +18556,74,10,47,0.0 +18556,68,12.5,20,0.0 +18556,71,21.5,24,0.0 +18556,59,55,1,0.0 +18556,49,20,15,0.0 +18556,18,62.5,6,0.0 +18556,45,9.5,30,0.0 +18556,38,263.5,45,0.0 +18556,39,18,10,0.0 +18556,25,14,8,0.0 +18556,19,9.2,43,0.0 +18556,32,32,41,0.0 +18556,36,19,6,0.0 +18556,56,38,35,0.0 +18556,67,14,18,0.0 +18556,22,21,20,0.0 +18556,64,33.25,38,0.0 +18556,33,2.5,5,0.0 +18556,57,19.5,38,0.0 +18556,61,28.5,44,0.0 +18556,21,10,43,0.0 +18556,13,6,21,0.0 +18556,70,15,19,0.0 +18556,43,46,30,0.0 +18556,50,16.25,19,0.0 +18556,76,18,9,0.0 +18556,41,9.65,33,0.0 +18556,35,18,42,0.0 +18556,44,19.45,26,0.0 +18556,27,43.9,11,0.0 +18556,72,34.8,49,0.0 +18556,40,18.4,29,0.0 +18557,68,12.5,38,0.0 +18557,48,12.75,42,0.0 +18557,66,17,16,0.0 +18557,59,55,45,0.0 +18557,51,53,8,0.0 +18557,26,31.23,37,0.0 +18557,49,20,50,0.0 +18557,37,26,21,0.0 +18557,23,9,25,0.0 +18557,63,43.9,8,0.0 +18557,36,19,11,0.0 +18557,1,18,12,0.0 +18557,52,7,4,0.0 +18557,30,25.89,20,0.0 +18557,61,28.5,22,0.0 +18557,70,15,13,0.0 +18557,14,23.25,9,0.0 +18557,8,40,22,0.0 +18557,11,21,23,0.0 +18557,10,31,49,0.0 +18557,35,18,34,0.0 +18557,62,49.3,38,0.0 +18557,33,2.5,50,0.0 +18557,56,38,45,0.0 +18557,43,46,22,0.0 +18557,71,21.5,2,0.0 +18557,40,18.4,38,0.0 +18557,64,33.25,29,0.0 +18557,65,21.05,16,0.0 +18557,2,19,21,0.0 +18557,67,14,42,0.0 +18557,75,7.75,26,0.0 +18557,28,45.6,6,0.0 +18557,72,34.8,12,0.0 +18557,29,123.79,46,0.0 +18557,24,4.5,46,0.0 +18557,27,43.9,40,0.0 +18557,77,13,19,0.0 +18557,17,39,28,0.0 +18557,15,15.5,22,0.0 +18557,39,18,26,0.0 +18557,47,9.5,37,0.0 +18557,3,10,27,0.0 +18557,31,12.5,41,0.0 +18557,22,21,45,0.0 +18557,73,15,13,0.0 +18557,58,13.25,33,0.0 +18557,34,14,15,0.0 +18557,76,18,50,0.0 +18557,45,9.5,43,0.0 +18557,55,24,32,0.0 +18557,50,16.25,34,0.0 +18557,32,32,6,0.0 +18557,19,9.2,4,0.0 +18557,6,25,30,0.0 +18557,60,34,34,0.0 +18557,44,19.45,49,0.0 +18557,53,32.8,29,0.0 +18557,54,7.45,44,0.0 +18557,13,6,40,0.0 +18557,25,14,24,0.0 +18557,74,10,18,0.0 +18557,57,19.5,28,0.0 +18557,46,12,10,0.0 +18557,42,14,2,0.0 +18557,12,38,17,0.0 +18557,20,81,32,0.0 +18557,5,21.35,16,0.0 +18557,69,36,35,0.0 +18557,9,97,5,0.0 +18557,4,22,11,0.0 +18557,18,62.5,38,0.0 +18558,12,38,21,0.0 +18558,30,25.89,46,0.0 +18558,57,19.5,23,0.0 +18558,27,43.9,33,0.0 +18558,63,43.9,47,0.0 +18558,8,40,48,0.0 +18558,21,10,49,0.0 +18558,60,34,20,0.0 +18558,35,18,30,0.0 +18558,20,81,17,0.0 +18558,36,19,47,0.0 +18558,72,34.8,23,0.0 +18558,14,23.25,41,0.0 +18558,69,36,23,0.0 +18558,13,6,38,0.0 +18558,39,18,13,0.0 +18558,56,38,47,0.0 +18558,5,21.35,47,0.0 +18558,18,62.5,50,0.0 +18558,1,18,34,0.0 +18558,41,9.65,12,0.0 +18558,23,9,44,0.0 +18558,66,17,44,0.0 +18558,59,55,23,0.0 +18558,45,9.5,14,0.0 +18558,68,12.5,38,0.0 +18558,58,13.25,30,0.0 +18558,65,21.05,48,0.0 +18558,26,31.23,25,0.0 +18558,25,14,25,0.0 +18558,40,18.4,12,0.0 +18558,22,21,14,0.0 +18558,3,10,3,0.0 +18558,67,14,27,0.0 +18558,31,12.5,21,0.0 +18558,15,15.5,8,0.0 +18558,48,12.75,13,0.0 +18558,10,31,49,0.0 +18558,76,18,21,0.0 +18558,46,12,37,0.0 +18558,44,19.45,15,0.0 +18558,19,9.2,31,0.0 +18559,72,34.8,25,0.0 +18559,22,21,13,0.0 +18559,12,38,32,0.0 +18559,59,55,12,0.0 +18559,32,32,34,0.0 +18559,47,9.5,25,0.0 +18559,40,18.4,26,0.0 +18559,6,25,35,0.0 +18559,46,12,12,0.0 +18559,4,22,36,0.0 +18560,52,7,1,0.0 +18560,21,10,49,0.0 +18560,71,21.5,9,0.0 +18560,8,40,1,0.0 +18560,35,18,42,0.0 +18560,32,32,21,0.0 +18560,59,55,32,0.0 +18560,53,32.8,16,0.0 +18560,14,23.25,3,0.0 +18560,72,34.8,28,0.0 +18560,2,19,34,0.0 +18560,50,16.25,4,0.0 +18560,55,24,36,0.0 +18560,38,263.5,30,0.0 +18560,13,6,2,0.0 +18560,9,97,36,0.0 +18560,3,10,17,0.0 +18560,1,18,19,0.0 +18560,70,15,6,0.0 +18560,58,13.25,48,0.0 +18560,56,38,43,0.0 +18560,17,39,18,0.0 +18560,42,14,14,0.0 +18560,65,21.05,6,0.0 +18560,66,17,23,0.0 +18560,76,18,12,0.0 +18560,62,49.3,3,0.0 +18560,26,31.23,25,0.0 +18560,63,43.9,35,0.0 +18560,54,7.45,15,0.0 +18560,31,12.5,47,0.0 +18560,30,25.89,19,0.0 +18560,47,9.5,5,0.0 +18560,7,30,4,0.0 +18560,44,19.45,3,0.0 +18560,22,21,7,0.0 +18560,12,38,38,0.0 +18560,4,22,45,0.0 +18560,40,18.4,15,0.0 +18561,76,18,3,0.0 +18561,57,19.5,40,0.0 +18561,13,6,39,0.0 +18561,28,45.6,38,0.0 +18561,50,16.25,12,0.0 +18561,48,12.75,30,0.0 +18561,49,20,29,0.0 +18561,37,26,1,0.0 +18561,44,19.45,44,0.0 +18561,32,32,18,0.0 +18561,35,18,20,0.0 +18561,61,28.5,27,0.0 +18561,40,18.4,32,0.0 +18561,70,15,35,0.0 +18561,12,38,17,0.0 +18561,62,49.3,30,0.0 +18561,2,19,38,0.0 +18561,21,10,13,0.0 +18561,52,7,39,0.0 +18562,77,13,40,0.0 +18562,27,43.9,49,0.0 +18562,28,45.6,50,0.0 +18562,12,38,16,0.0 +18562,7,30,20,0.0 +18562,9,97,45,0.0 +18562,72,34.8,21,0.0 +18562,41,9.65,4,0.0 +18562,24,4.5,4,0.0 +18562,35,18,49,0.0 +18562,16,17.45,37,0.0 +18562,11,21,4,0.0 +18562,69,36,14,0.0 +18562,48,12.75,14,0.0 +18562,31,12.5,12,0.0 +18562,76,18,45,0.0 +18562,55,24,45,0.0 +18562,73,15,46,0.0 +18562,17,39,39,0.0 +18562,6,25,25,0.0 +18562,50,16.25,5,0.0 +18562,59,55,38,0.0 +18562,14,23.25,35,0.0 +18563,31,12.5,1,0.0 +18563,72,34.8,22,0.0 +18563,9,97,16,0.0 +18563,48,12.75,8,0.0 +18563,58,13.25,45,0.0 +18563,66,17,11,0.0 +18563,38,263.5,38,0.0 +18563,63,43.9,49,0.0 +18563,23,9,30,0.0 +18563,67,14,10,0.0 +18563,27,43.9,15,0.0 +18563,34,14,27,0.0 +18563,16,17.45,19,0.0 +18563,5,21.35,26,0.0 +18563,75,7.75,35,0.0 +18563,57,19.5,31,0.0 +18563,69,36,38,0.0 +18563,8,40,10,0.0 +18563,64,33.25,23,0.0 +18563,36,19,17,0.0 +18563,29,123.79,31,0.0 +18563,42,14,34,0.0 +18563,30,25.89,40,0.0 +18564,39,18,26,0.0 +18564,11,21,6,0.0 +18564,42,14,5,0.0 +18564,46,12,13,0.0 +18564,73,15,18,0.0 +18564,35,18,25,0.0 +18564,26,31.23,21,0.0 +18564,24,4.5,39,0.0 +18564,40,18.4,28,0.0 +18564,68,12.5,34,0.0 +18564,48,12.75,27,0.0 +18564,14,23.25,31,0.0 +18564,76,18,50,0.0 +18564,47,9.5,46,0.0 +18564,13,6,28,0.0 +18564,77,13,33,0.0 +18564,69,36,50,0.0 +18564,54,7.45,40,0.0 +18564,57,19.5,19,0.0 +18564,3,10,7,0.0 +18564,55,24,6,0.0 +18564,44,19.45,20,0.0 +18564,43,46,49,0.0 +18564,32,32,13,0.0 +18564,67,14,38,0.0 +18564,17,39,50,0.0 +18564,19,9.2,46,0.0 +18564,28,45.6,39,0.0 +18564,1,18,49,0.0 +18564,52,7,1,0.0 +18564,2,19,48,0.0 +18564,37,26,7,0.0 +18564,4,22,7,0.0 +18564,12,38,15,0.0 +18564,9,97,35,0.0 +18564,53,32.8,36,0.0 +18564,72,34.8,36,0.0 +18564,51,53,24,0.0 +18564,29,123.79,33,0.0 +18564,5,21.35,36,0.0 +18564,60,34,31,0.0 +18564,36,19,10,0.0 +18564,18,62.5,47,0.0 +18564,62,49.3,42,0.0 +18564,8,40,14,0.0 +18564,30,25.89,37,0.0 +18564,20,81,18,0.0 +18564,16,17.45,47,0.0 +18564,31,12.5,27,0.0 +18564,64,33.25,4,0.0 +18564,66,17,37,0.0 +18564,71,21.5,2,0.0 +18564,41,9.65,39,0.0 +18564,23,9,10,0.0 +18564,45,9.5,7,0.0 +18564,74,10,2,0.0 +18564,34,14,4,0.0 +18564,63,43.9,18,0.0 +18564,22,21,7,0.0 +18564,10,31,35,0.0 +18564,27,43.9,41,0.0 +18564,59,55,33,0.0 +18564,33,2.5,21,0.0 +18564,50,16.25,48,0.0 +18565,48,12.75,23,0.0 +18566,57,19.5,31,0.0 +18566,55,24,29,0.0 +18566,14,23.25,34,0.0 +18566,60,34,2,0.0 +18566,46,12,28,0.0 +18566,33,2.5,49,0.0 +18566,5,21.35,18,0.0 +18566,29,123.79,18,0.0 +18566,19,9.2,39,0.0 +18566,74,10,39,0.0 +18566,12,38,23,0.0 +18566,72,34.8,22,0.0 +18566,56,38,32,0.0 +18566,67,14,25,0.0 +18566,69,36,39,0.0 +18566,41,9.65,14,0.0 +18566,58,13.25,15,0.0 +18566,25,14,48,0.0 +18566,47,9.5,50,0.0 +18566,36,19,19,0.0 +18566,21,10,17,0.0 +18566,10,31,49,0.0 +18566,8,40,9,0.0 +18566,52,7,35,0.0 +18566,30,25.89,4,0.0 +18566,45,9.5,38,0.0 +18566,75,7.75,5,0.0 +18566,49,20,20,0.0 +18566,6,25,47,0.0 +18566,20,81,30,0.0 +18566,53,32.8,8,0.0 +18566,15,15.5,10,0.0 +18566,35,18,4,0.0 +18566,9,97,2,0.0 +18566,4,22,14,0.0 +18566,66,17,48,0.0 +18566,28,45.6,17,0.0 +18566,64,33.25,43,0.0 +18566,37,26,24,0.0 +18566,24,4.5,25,0.0 +18566,22,21,49,0.0 +18566,62,49.3,42,0.0 +18566,40,18.4,26,0.0 +18566,71,21.5,4,0.0 +18566,51,53,22,0.0 +18566,70,15,1,0.0 +18566,50,16.25,38,0.0 +18566,16,17.45,48,0.0 +18566,54,7.45,9,0.0 +18566,63,43.9,34,0.0 +18566,13,6,20,0.0 +18566,38,263.5,5,0.0 +18566,65,21.05,49,0.0 +18566,76,18,38,0.0 +18566,48,12.75,4,0.0 +18567,14,23.25,15,0.0 +18567,25,14,40,0.0 +18567,42,14,32,0.0 +18567,34,14,25,0.0 +18568,34,14,42,0.0 +18568,58,13.25,12,0.0 +18568,67,14,29,0.0 +18568,72,34.8,29,0.0 +18568,10,31,37,0.0 +18568,39,18,44,0.0 +18568,50,16.25,48,0.0 +18568,26,31.23,43,0.0 +18568,49,20,11,0.0 +18568,77,13,41,0.0 +18568,51,53,18,0.0 +18568,46,12,20,0.0 +18568,22,21,27,0.0 +18568,75,7.75,40,0.0 +18568,47,9.5,19,0.0 +18568,6,25,16,0.0 +18568,44,19.45,49,0.0 +18568,62,49.3,29,0.0 +18568,32,32,43,0.0 +18568,56,38,34,0.0 +18568,7,30,30,0.0 +18568,37,26,49,0.0 +18568,21,10,29,0.0 +18568,60,34,24,0.0 +18568,57,19.5,42,0.0 +18568,42,14,27,0.0 +18568,19,9.2,24,0.0 +18568,31,12.5,44,0.0 +18568,33,2.5,11,0.0 +18568,17,39,32,0.0 +18568,66,17,9,0.0 +18568,29,123.79,48,0.0 +18568,4,22,29,0.0 +18568,40,18.4,26,0.0 +18568,70,15,42,0.0 +18568,8,40,28,0.0 +18568,1,18,47,0.0 +18568,61,28.5,19,0.0 +18568,3,10,42,0.0 +18568,52,7,16,0.0 +18568,5,21.35,18,0.0 +18568,25,14,2,0.0 +18568,20,81,6,0.0 +18568,24,4.5,14,0.0 +18568,64,33.25,42,0.0 +18568,65,21.05,17,0.0 +18568,53,32.8,36,0.0 +18568,38,263.5,42,0.0 +18568,74,10,7,0.0 +18568,41,9.65,7,0.0 +18569,14,23.25,36,0.0 +18569,53,32.8,19,0.0 +18569,33,2.5,40,0.0 +18569,4,22,9,0.0 +18570,15,15.5,14,0.0 +18570,35,18,37,0.0 +18570,70,15,36,0.0 +18570,45,9.5,7,0.0 +18570,63,43.9,46,0.0 +18570,60,34,50,0.0 +18570,27,43.9,9,0.0 +18570,67,14,4,0.0 +18570,8,40,17,0.0 +18570,14,23.25,25,0.0 +18570,19,9.2,11,0.0 +18570,61,28.5,46,0.0 +18570,76,18,21,0.0 +18570,47,9.5,7,0.0 +18570,29,123.79,20,0.0 +18570,77,13,18,0.0 +18570,3,10,35,0.0 +18570,33,2.5,35,0.0 +18570,74,10,15,0.0 +18570,20,81,10,0.0 +18570,17,39,24,0.0 +18570,43,46,11,0.0 +18570,16,17.45,21,0.0 +18570,75,7.75,48,0.0 +18570,30,25.89,48,0.0 +18570,52,7,36,0.0 +18570,18,62.5,16,0.0 +18570,34,14,33,0.0 +18570,46,12,10,0.0 +18570,64,33.25,31,0.0 +18570,56,38,37,0.0 +18570,71,21.5,31,0.0 +18570,6,25,20,0.0 +18570,10,31,4,0.0 +18570,36,19,22,0.0 +18570,42,14,24,0.0 +18570,49,20,45,0.0 +18570,66,17,22,0.0 +18570,44,19.45,43,0.0 +18570,4,22,9,0.0 +18570,58,13.25,16,0.0 +18570,54,7.45,6,0.0 +18570,9,97,27,0.0 +18570,69,36,47,0.0 +18570,23,9,42,0.0 +18570,65,21.05,27,0.0 +18570,55,24,43,0.0 +18570,62,49.3,2,0.0 +18570,22,21,29,0.0 +18570,41,9.65,15,0.0 +18570,48,12.75,23,0.0 +18570,24,4.5,30,0.0 +18570,11,21,20,0.0 +18570,68,12.5,9,0.0 +18570,31,12.5,34,0.0 +18570,51,53,34,0.0 +18570,37,26,15,0.0 +18571,17,39,30,0.0 +18571,9,97,36,0.0 +18571,57,19.5,9,0.0 +18571,69,36,2,0.0 +18571,48,12.75,44,0.0 +18571,44,19.45,16,0.0 +18571,26,31.23,21,0.0 +18571,63,43.9,35,0.0 +18571,10,31,19,0.0 +18571,37,26,2,0.0 +18571,61,28.5,2,0.0 +18571,58,13.25,29,0.0 +18571,25,14,24,0.0 +18571,56,38,8,0.0 +18571,68,12.5,18,0.0 +18571,60,34,48,0.0 +18571,43,46,49,0.0 +18571,31,12.5,42,0.0 +18571,24,4.5,29,0.0 +18571,2,19,37,0.0 +18572,55,24,28,0.0 +18572,34,14,21,0.0 +18572,64,33.25,2,0.0 +18572,56,38,24,0.0 +18572,10,31,30,0.0 +18572,21,10,13,0.0 +18572,72,34.8,18,0.0 +18572,74,10,39,0.0 +18573,12,38,26,0.0 +18573,35,18,10,0.0 +18573,13,6,27,0.0 +18573,75,7.75,41,0.0 +18573,18,62.5,6,0.0 +18573,28,45.6,29,0.0 +18573,30,25.89,35,0.0 +18573,52,7,6,0.0 +18573,53,32.8,6,0.0 +18573,26,31.23,50,0.0 +18573,34,14,15,0.0 +18573,64,33.25,36,0.0 +18573,20,81,27,0.0 +18573,48,12.75,50,0.0 +18573,72,34.8,20,0.0 +18573,7,30,4,0.0 +18573,51,53,27,0.0 +18573,66,17,8,0.0 +18573,45,9.5,43,0.0 +18573,16,17.45,11,0.0 +18573,42,14,7,0.0 +18573,22,21,47,0.0 +18573,76,18,25,0.0 +18573,58,13.25,40,0.0 +18573,69,36,19,0.0 +18573,10,31,27,0.0 +18573,41,9.65,35,0.0 +18573,55,24,35,0.0 +18573,27,43.9,5,0.0 +18573,77,13,25,0.0 +18573,29,123.79,1,0.0 +18573,5,21.35,32,0.0 +18573,65,21.05,41,0.0 +18573,61,28.5,6,0.0 +18573,47,9.5,23,0.0 +18573,57,19.5,25,0.0 +18573,46,12,46,0.0 +18573,32,32,31,0.0 +18573,60,34,50,0.0 +18573,6,25,28,0.0 +18573,23,9,26,0.0 +18573,3,10,12,0.0 +18573,74,10,8,0.0 +18573,62,49.3,30,0.0 +18573,15,15.5,39,0.0 +18573,9,97,32,0.0 +18573,50,16.25,20,0.0 +18573,44,19.45,13,0.0 +18573,11,21,47,0.0 +18573,36,19,16,0.0 +18573,19,9.2,19,0.0 +18573,68,12.5,13,0.0 +18573,17,39,45,0.0 +18573,63,43.9,7,0.0 +18574,35,18,1,0.0 +18575,3,10,37,0.0 +18575,57,19.5,5,0.0 +18575,7,30,40,0.0 +18575,43,46,48,0.0 +18575,37,26,1,0.0 +18575,64,33.25,42,0.0 +18575,46,12,16,0.0 +18575,20,81,14,0.0 +18575,16,17.45,25,0.0 +18575,71,21.5,27,0.0 +18575,2,19,44,0.0 +18575,53,32.8,49,0.0 +18575,36,19,30,0.0 +18575,55,24,36,0.0 +18575,45,9.5,36,0.0 +18575,21,10,46,0.0 +18575,34,14,12,0.0 +18575,65,21.05,22,0.0 +18575,60,34,12,0.0 +18575,63,43.9,39,0.0 +18575,66,17,23,0.0 +18575,61,28.5,48,0.0 +18575,76,18,3,0.0 +18575,32,32,36,0.0 +18575,30,25.89,20,0.0 +18575,69,36,43,0.0 +18576,21,10,11,0.0 +18576,51,53,10,0.0 +18576,28,45.6,46,0.0 +18576,33,2.5,34,0.0 +18576,22,21,24,0.0 +18576,67,14,7,0.0 +18576,54,7.45,18,0.0 +18576,35,18,19,0.0 +18576,15,15.5,23,0.0 +18576,26,31.23,23,0.0 +18576,63,43.9,45,0.0 +18576,73,15,1,0.0 +18576,46,12,36,0.0 +18576,20,81,28,0.0 +18576,69,36,31,0.0 +18576,8,40,28,0.0 +18576,58,13.25,30,0.0 +18576,27,43.9,33,0.0 +18576,4,22,20,0.0 +18576,16,17.45,5,0.0 +18576,71,21.5,12,0.0 +18576,18,62.5,32,0.0 +18576,75,7.75,17,0.0 +18576,6,25,34,0.0 +18576,2,19,16,0.0 +18576,48,12.75,47,0.0 +18576,62,49.3,50,0.0 +18576,13,6,8,0.0 +18576,64,33.25,35,0.0 +18576,43,46,8,0.0 +18576,57,19.5,16,0.0 +18576,47,9.5,41,0.0 +18576,44,19.45,40,0.0 +18576,72,34.8,43,0.0 +18576,14,23.25,19,0.0 +18576,34,14,49,0.0 +18576,59,55,36,0.0 +18576,49,20,36,0.0 +18576,36,19,23,0.0 +18577,21,10,41,0.0 +18577,54,7.45,47,0.0 +18577,64,33.25,27,0.0 +18577,15,15.5,27,0.0 +18577,22,21,47,0.0 +18577,45,9.5,42,0.0 +18577,31,12.5,2,0.0 +18577,48,12.75,8,0.0 +18577,11,21,16,0.0 +18577,25,14,4,0.0 +18577,67,14,34,0.0 +18577,63,43.9,41,0.0 +18577,46,12,1,0.0 +18577,68,12.5,5,0.0 +18577,43,46,18,0.0 +18577,70,15,17,0.0 +18577,75,7.75,41,0.0 +18577,41,9.65,41,0.0 +18577,27,43.9,21,0.0 +18577,72,34.8,23,0.0 +18577,61,28.5,22,0.0 +18577,5,21.35,19,0.0 +18577,10,31,49,0.0 +18577,33,2.5,1,0.0 +18577,69,36,41,0.0 +18577,7,30,20,0.0 +18577,18,62.5,50,0.0 +18577,73,15,19,0.0 +18577,47,9.5,1,0.0 +18577,58,13.25,1,0.0 +18577,3,10,45,0.0 +18577,34,14,34,0.0 +18577,71,21.5,43,0.0 +18577,76,18,31,0.0 +18577,66,17,13,0.0 +18577,19,9.2,14,0.0 +18577,16,17.45,50,0.0 +18577,49,20,37,0.0 +18577,39,18,42,0.0 +18577,20,81,14,0.0 +18577,55,24,30,0.0 +18577,74,10,47,0.0 +18577,53,32.8,49,0.0 +18577,4,22,39,0.0 +18577,35,18,35,0.0 +18577,30,25.89,7,0.0 +18577,36,19,21,0.0 +18577,24,4.5,49,0.0 +18577,32,32,10,0.0 +18577,26,31.23,32,0.0 +18577,23,9,3,0.0 +18577,28,45.6,23,0.0 +18577,8,40,28,0.0 +18577,42,14,25,0.0 +18577,14,23.25,8,0.0 +18577,51,53,7,0.0 +18577,40,18.4,6,0.0 +18577,56,38,47,0.0 +18577,65,21.05,43,0.0 +18577,9,97,1,0.0 +18577,29,123.79,43,0.0 +18577,12,38,33,0.0 +18577,60,34,12,0.0 +18577,77,13,17,0.0 +18577,57,19.5,40,0.0 +18577,1,18,40,0.0 +18577,38,263.5,21,0.0 +18577,13,6,19,0.0 +18577,62,49.3,15,0.0 +18577,6,25,5,0.0 +18578,18,62.5,27,0.0 +18578,54,7.45,16,0.0 +18578,35,18,35,0.0 +18578,4,22,9,0.0 +18578,17,39,47,0.0 +18578,32,32,33,0.0 +18578,36,19,38,0.0 +18578,11,21,19,0.0 +18578,19,9.2,14,0.0 +18578,26,31.23,17,0.0 +18578,72,34.8,50,0.0 +18578,59,55,43,0.0 +18578,63,43.9,10,0.0 +18579,69,36,13,0.0 +18579,35,18,18,0.0 +18579,51,53,42,0.0 +18579,33,2.5,14,0.0 +18579,25,14,31,0.0 +18579,17,39,31,0.0 +18579,36,19,20,0.0 +18579,40,18.4,21,0.0 +18579,20,81,34,0.0 +18579,57,19.5,39,0.0 +18579,3,10,21,0.0 +18579,71,21.5,39,0.0 +18579,63,43.9,45,0.0 +18579,50,16.25,47,0.0 +18579,34,14,9,0.0 +18579,46,12,18,0.0 +18579,73,15,23,0.0 +18579,43,46,20,0.0 +18579,49,20,15,0.0 +18579,75,7.75,27,0.0 +18579,8,40,15,0.0 +18579,48,12.75,13,0.0 +18579,55,24,23,0.0 +18579,12,38,38,0.0 +18579,47,9.5,32,0.0 +18579,16,17.45,10,0.0 +18579,11,21,23,0.0 +18579,4,22,16,0.0 +18579,23,9,36,0.0 +18579,1,18,40,0.0 +18579,10,31,5,0.0 +18579,29,123.79,11,0.0 +18579,62,49.3,17,0.0 +18579,13,6,6,0.0 +18579,2,19,48,0.0 +18579,6,25,18,0.0 +18580,37,26,37,0.0 +18580,11,21,50,0.0 +18580,74,10,25,0.0 +18580,34,14,40,0.0 +18580,8,40,35,0.0 +18580,48,12.75,10,0.0 +18580,50,16.25,31,0.0 +18580,38,263.5,17,0.0 +18580,16,17.45,3,0.0 +18580,59,55,5,0.0 +18580,55,24,16,0.0 +18580,73,15,18,0.0 +18580,68,12.5,33,0.0 +18580,66,17,31,0.0 +18580,17,39,49,0.0 +18580,46,12,31,0.0 +18580,6,25,47,0.0 +18580,47,9.5,46,0.0 +18580,12,38,8,0.0 +18580,40,18.4,50,0.0 +18580,24,4.5,31,0.0 +18580,41,9.65,29,0.0 +18580,52,7,17,0.0 +18580,71,21.5,22,0.0 +18580,77,13,37,0.0 +18580,56,38,13,0.0 +18580,65,21.05,50,0.0 +18580,72,34.8,50,0.0 +18580,27,43.9,17,0.0 +18580,61,28.5,45,0.0 +18580,18,62.5,20,0.0 +18580,26,31.23,39,0.0 +18580,9,97,30,0.0 +18580,31,12.5,47,0.0 +18580,44,19.45,43,0.0 +18580,29,123.79,29,0.0 +18580,15,15.5,41,0.0 +18580,58,13.25,29,0.0 +18580,67,14,5,0.0 +18580,39,18,46,0.0 +18580,25,14,47,0.0 +18580,62,49.3,9,0.0 +18580,28,45.6,39,0.0 +18580,45,9.5,29,0.0 +18580,22,21,23,0.0 +18580,33,2.5,4,0.0 +18580,35,18,36,0.0 +18580,23,9,17,0.0 +18580,76,18,21,0.0 +18580,43,46,13,0.0 +18580,42,14,29,0.0 +18580,63,43.9,43,0.0 +18581,13,6,13,0.0 +18581,21,10,9,0.0 +18581,14,23.25,35,0.0 +18581,28,45.6,20,0.0 +18581,73,15,44,0.0 +18581,39,18,41,0.0 +18581,32,32,14,0.0 +18581,64,33.25,4,0.0 +18581,41,9.65,21,0.0 +18581,69,36,34,0.0 +18581,56,38,12,0.0 +18581,49,20,2,0.0 +18581,77,13,4,0.0 +18581,16,17.45,2,0.0 +18581,27,43.9,18,0.0 +18581,7,30,13,0.0 +18581,30,25.89,27,0.0 +18581,10,31,4,0.0 +18581,48,12.75,26,0.0 +18581,47,9.5,2,0.0 +18581,35,18,19,0.0 +18581,25,14,7,0.0 +18581,38,263.5,49,0.0 +18581,65,21.05,13,0.0 +18581,33,2.5,35,0.0 +18581,53,32.8,46,0.0 +18581,71,21.5,36,0.0 +18581,52,7,37,0.0 +18581,17,39,2,0.0 +18581,75,7.75,6,0.0 +18582,34,14,27,0.0 +18582,23,9,39,0.0 +18582,9,97,32,0.0 +18582,1,18,42,0.0 +18582,50,16.25,42,0.0 +18582,56,38,18,0.0 +18582,10,31,22,0.0 +18582,27,43.9,36,0.0 +18582,63,43.9,9,0.0 +18582,51,53,29,0.0 +18582,4,22,34,0.0 +18582,65,21.05,6,0.0 +18582,67,14,47,0.0 +18582,25,14,14,0.0 +18582,73,15,50,0.0 +18582,70,15,11,0.0 +18582,72,34.8,4,0.0 +18582,6,25,6,0.0 +18582,45,9.5,14,0.0 +18582,16,17.45,16,0.0 +18582,13,6,36,0.0 +18582,20,81,25,0.0 +18582,54,7.45,39,0.0 +18582,49,20,26,0.0 +18582,66,17,17,0.0 +18582,8,40,36,0.0 +18582,17,39,12,0.0 +18582,26,31.23,25,0.0 +18582,39,18,15,0.0 +18582,2,19,7,0.0 +18582,76,18,43,0.0 +18582,44,19.45,4,0.0 +18582,33,2.5,8,0.0 +18582,29,123.79,18,0.0 +18582,74,10,32,0.0 +18582,38,263.5,9,0.0 +18582,21,10,27,0.0 +18582,60,34,44,0.0 +18582,7,30,13,0.0 +18582,30,25.89,14,0.0 +18582,40,18.4,2,0.0 +18582,52,7,12,0.0 +18582,68,12.5,31,0.0 +18582,31,12.5,29,0.0 +18582,15,15.5,33,0.0 +18582,18,62.5,31,0.0 +18582,28,45.6,41,0.0 +18582,58,13.25,4,0.0 +18582,57,19.5,7,0.0 +18582,41,9.65,5,0.0 +18582,71,21.5,44,0.0 +18582,43,46,41,0.0 +18582,64,33.25,40,0.0 +18582,61,28.5,38,0.0 +18582,37,26,12,0.0 +18583,29,123.79,45,0.0 +18583,60,34,11,0.0 +18583,30,25.89,8,0.0 +18583,77,13,9,0.0 +18583,50,16.25,13,0.0 +18583,17,39,5,0.0 +18583,15,15.5,37,0.0 +18583,21,10,49,0.0 +18583,53,32.8,48,0.0 +18583,14,23.25,19,0.0 +18583,39,18,50,0.0 +18583,25,14,27,0.0 +18583,12,38,40,0.0 +18583,71,21.5,15,0.0 +18583,62,49.3,44,0.0 +18583,74,10,20,0.0 +18583,38,263.5,17,0.0 +18583,58,13.25,32,0.0 +18583,70,15,2,0.0 +18583,40,18.4,43,0.0 +18583,10,31,41,0.0 +18583,4,22,22,0.0 +18583,27,43.9,49,0.0 +18583,57,19.5,38,0.0 +18583,63,43.9,26,0.0 +18583,9,97,24,0.0 +18583,32,32,47,0.0 +18583,33,2.5,11,0.0 +18583,75,7.75,48,0.0 +18583,37,26,4,0.0 +18583,44,19.45,44,0.0 +18583,52,7,5,0.0 +18583,31,12.5,25,0.0 +18583,76,18,18,0.0 +18583,22,21,26,0.0 +18583,54,7.45,19,0.0 +18583,18,62.5,41,0.0 +18583,56,38,28,0.0 +18584,8,40,42,0.0 +18584,37,26,50,0.0 +18584,22,21,14,0.0 +18584,23,9,18,0.0 +18585,23,9,35,0.0 +18585,41,9.65,17,0.0 +18585,13,6,19,0.0 +18585,61,28.5,34,0.0 +18585,45,9.5,19,0.0 +18585,25,14,37,0.0 +18585,53,32.8,11,0.0 +18585,55,24,10,0.0 +18585,3,10,26,0.0 +18585,63,43.9,38,0.0 +18585,69,36,47,0.0 +18585,10,31,14,0.0 +18585,36,19,27,0.0 +18585,12,38,46,0.0 +18585,18,62.5,40,0.0 +18585,22,21,40,0.0 +18585,65,21.05,46,0.0 +18585,70,15,46,0.0 +18585,49,20,43,0.0 +18585,38,263.5,39,0.0 +18585,74,10,49,0.0 +18585,67,14,20,0.0 +18585,43,46,3,0.0 +18585,68,12.5,23,0.0 +18585,54,7.45,13,0.0 +18585,14,23.25,10,0.0 +18586,49,20,49,0.0 +18586,7,30,14,0.0 +18586,51,53,17,0.0 +18586,74,10,3,0.0 +18586,45,9.5,26,0.0 +18586,23,9,22,0.0 +18586,63,43.9,25,0.0 +18586,30,25.89,46,0.0 +18586,59,55,42,0.0 +18586,46,12,13,0.0 +18586,25,14,44,0.0 +18586,67,14,23,0.0 +18586,32,32,7,0.0 +18586,53,32.8,22,0.0 +18586,17,39,36,0.0 +18586,58,13.25,16,0.0 +18586,76,18,10,0.0 +18586,20,81,40,0.0 +18586,77,13,30,0.0 +18586,50,16.25,16,0.0 +18586,5,21.35,11,0.0 +18586,29,123.79,20,0.0 +18586,3,10,38,0.0 +18586,26,31.23,10,0.0 +18586,8,40,8,0.0 +18586,14,23.25,24,0.0 +18586,66,17,25,0.0 +18586,36,19,46,0.0 +18586,61,28.5,47,0.0 +18586,2,19,3,0.0 +18586,10,31,14,0.0 +18586,70,15,3,0.0 +18587,39,18,30,0.0 +18587,77,13,35,0.0 +18587,34,14,24,0.0 +18587,35,18,9,0.0 +18587,72,34.8,31,0.0 +18587,33,2.5,49,0.0 +18587,57,19.5,16,0.0 +18587,76,18,6,0.0 +18587,67,14,12,0.0 +18587,59,55,9,0.0 +18587,61,28.5,27,0.0 +18587,70,15,36,0.0 +18587,49,20,10,0.0 +18587,47,9.5,31,0.0 +18587,27,43.9,1,0.0 +18587,29,123.79,8,0.0 +18587,11,21,23,0.0 +18587,54,7.45,41,0.0 +18587,51,53,26,0.0 +18587,6,25,49,0.0 +18587,19,9.2,1,0.0 +18587,64,33.25,4,0.0 +18587,18,62.5,48,0.0 +18587,56,38,24,0.0 +18587,7,30,44,0.0 +18587,58,13.25,50,0.0 +18587,44,19.45,30,0.0 +18587,15,15.5,44,0.0 +18587,55,24,49,0.0 +18587,75,7.75,36,0.0 +18587,68,12.5,15,0.0 +18587,41,9.65,6,0.0 +18587,4,22,2,0.0 +18587,46,12,39,0.0 +18587,21,10,9,0.0 +18587,62,49.3,47,0.0 +18587,17,39,48,0.0 +18587,30,25.89,11,0.0 +18587,48,12.75,7,0.0 +18587,65,21.05,36,0.0 +18587,52,7,40,0.0 +18587,32,32,33,0.0 +18587,74,10,9,0.0 +18587,37,26,3,0.0 +18588,68,12.5,34,0.0 +18588,73,15,30,0.0 +18588,42,14,1,0.0 +18588,64,33.25,44,0.0 +18588,54,7.45,32,0.0 +18588,53,32.8,9,0.0 +18588,22,21,1,0.0 +18588,36,19,3,0.0 +18588,13,6,29,0.0 +18588,38,263.5,27,0.0 +18588,46,12,50,0.0 +18588,45,9.5,50,0.0 +18588,59,55,21,0.0 +18588,56,38,29,0.0 +18588,26,31.23,35,0.0 +18588,29,123.79,30,0.0 +18588,23,9,10,0.0 +18588,25,14,48,0.0 +18588,67,14,17,0.0 +18588,74,10,17,0.0 +18588,8,40,17,0.0 +18588,27,43.9,7,0.0 +18588,14,23.25,19,0.0 +18588,7,30,9,0.0 +18588,70,15,3,0.0 +18588,28,45.6,14,0.0 +18588,44,19.45,23,0.0 +18588,11,21,41,0.0 +18588,66,17,1,0.0 +18588,19,9.2,35,0.0 +18588,10,31,7,0.0 +18588,30,25.89,15,0.0 +18588,76,18,34,0.0 +18588,72,34.8,48,0.0 +18588,20,81,34,0.0 +18588,6,25,43,0.0 +18588,33,2.5,6,0.0 +18588,32,32,40,0.0 +18588,12,38,50,0.0 +18588,5,21.35,12,0.0 +18588,41,9.65,1,0.0 +18588,1,18,9,0.0 +18588,49,20,24,0.0 +18588,55,24,7,0.0 +18588,15,15.5,7,0.0 +18588,62,49.3,38,0.0 +18588,63,43.9,21,0.0 +18589,7,30,33,0.0 +18589,67,14,20,0.0 +18589,57,19.5,22,0.0 +18589,64,33.25,6,0.0 +18589,10,31,28,0.0 +18589,5,21.35,25,0.0 +18589,38,263.5,11,0.0 +18589,24,4.5,38,0.0 +18589,76,18,37,0.0 +18589,74,10,29,0.0 +18589,9,97,21,0.0 +18589,68,12.5,25,0.0 +18589,65,21.05,5,0.0 +18589,46,12,31,0.0 +18589,60,34,14,0.0 +18589,66,17,6,0.0 +18589,56,38,24,0.0 +18589,37,26,29,0.0 +18589,75,7.75,10,0.0 +18589,23,9,46,0.0 +18589,1,18,38,0.0 +18589,34,14,9,0.0 +18589,77,13,9,0.0 +18589,36,19,12,0.0 +18589,28,45.6,48,0.0 +18589,11,21,33,0.0 +18589,22,21,44,0.0 +18589,58,13.25,45,0.0 +18589,55,24,41,0.0 +18589,39,18,27,0.0 +18589,41,9.65,50,0.0 +18589,47,9.5,41,0.0 +18589,2,19,50,0.0 +18589,50,16.25,2,0.0 +18589,72,34.8,22,0.0 +18589,30,25.89,19,0.0 +18589,29,123.79,42,0.0 +18589,14,23.25,20,0.0 +18589,44,19.45,21,0.0 +18589,26,31.23,2,0.0 +18589,48,12.75,46,0.0 +18589,35,18,16,0.0 +18589,51,53,17,0.0 +18589,63,43.9,42,0.0 +18589,73,15,13,0.0 +18589,4,22,32,0.0 +18589,8,40,31,0.0 +18590,29,123.79,44,0.0 +18590,32,32,16,0.0 +18590,5,21.35,31,0.0 +18590,65,21.05,26,0.0 +18590,56,38,16,0.0 +18590,49,20,24,0.0 +18590,24,4.5,23,0.0 +18590,22,21,9,0.0 +18590,51,53,19,0.0 +18590,27,43.9,22,0.0 +18590,35,18,4,0.0 +18590,4,22,47,0.0 +18590,77,13,9,0.0 +18590,42,14,26,0.0 +18590,46,12,35,0.0 +18590,76,18,42,0.0 +18590,16,17.45,28,0.0 +18590,20,81,22,0.0 +18590,70,15,37,0.0 +18590,74,10,42,0.0 +18590,37,26,4,0.0 +18590,15,15.5,28,0.0 +18590,43,46,43,0.0 +18590,59,55,40,0.0 +18590,11,21,2,0.0 +18590,57,19.5,14,0.0 +18590,33,2.5,37,0.0 +18590,1,18,42,0.0 +18591,64,33.25,48,0.0 +18591,23,9,32,0.0 +18591,63,43.9,8,0.0 +18591,29,123.79,27,0.0 +18591,57,19.5,45,0.0 +18591,20,81,9,0.0 +18591,11,21,8,0.0 +18591,50,16.25,45,0.0 +18591,10,31,16,0.0 +18591,1,18,3,0.0 +18591,30,25.89,18,0.0 +18591,56,38,3,0.0 +18591,41,9.65,8,0.0 +18591,33,2.5,36,0.0 +18591,3,10,34,0.0 +18591,9,97,2,0.0 +18591,69,36,30,0.0 +18591,49,20,23,0.0 +18591,25,14,36,0.0 +18591,47,9.5,14,0.0 +18591,43,46,36,0.0 +18591,26,31.23,37,0.0 +18591,52,7,46,0.0 +18591,37,26,3,0.0 +18591,7,30,35,0.0 +18591,70,15,42,0.0 +18591,8,40,44,0.0 +18591,48,12.75,41,0.0 +18591,66,17,38,0.0 +18591,22,21,39,0.0 +18591,46,12,11,0.0 +18591,27,43.9,34,0.0 +18591,39,18,48,0.0 +18591,65,21.05,22,0.0 +18591,2,19,28,0.0 +18591,54,7.45,32,0.0 +18591,53,32.8,20,0.0 +18591,73,15,13,0.0 +18591,71,21.5,32,0.0 +18591,16,17.45,1,0.0 +18591,19,9.2,22,0.0 +18591,36,19,28,0.0 +18591,68,12.5,10,0.0 +18591,44,19.45,12,0.0 +18592,48,12.75,6,0.0 +18592,21,10,39,0.0 +18592,25,14,40,0.0 +18592,14,23.25,8,0.0 +18592,19,9.2,23,0.0 +18592,7,30,15,0.0 +18592,9,97,42,0.0 +18592,42,14,35,0.0 +18592,52,7,9,0.0 +18592,23,9,7,0.0 +18592,49,20,34,0.0 +18592,29,123.79,31,0.0 +18592,1,18,42,0.0 +18592,8,40,29,0.0 +18592,69,36,43,0.0 +18592,43,46,46,0.0 +18592,4,22,17,0.0 +18592,5,21.35,5,0.0 +18592,50,16.25,45,0.0 +18593,61,28.5,7,0.0 +18593,40,18.4,38,0.0 +18593,67,14,10,0.0 +18593,71,21.5,16,0.0 +18593,75,7.75,23,0.0 +18593,55,24,48,0.0 +18593,3,10,37,0.0 +18593,2,19,31,0.0 +18593,66,17,4,0.0 +18593,4,22,21,0.0 +18593,23,9,11,0.0 +18593,69,36,2,0.0 +18593,64,33.25,14,0.0 +18593,25,14,26,0.0 +18593,28,45.6,18,0.0 +18593,77,13,50,0.0 +18593,50,16.25,17,0.0 +18593,20,81,47,0.0 +18593,38,263.5,9,0.0 +18593,30,25.89,15,0.0 +18593,57,19.5,18,0.0 +18593,22,21,3,0.0 +18593,10,31,30,0.0 +18593,34,14,21,0.0 +18593,5,21.35,15,0.0 +18593,19,9.2,31,0.0 +18593,74,10,20,0.0 +18593,16,17.45,21,0.0 +18593,45,9.5,44,0.0 +18593,60,34,42,0.0 +18593,49,20,23,0.0 +18593,18,62.5,22,0.0 +18593,6,25,16,0.0 +18593,1,18,49,0.0 +18593,63,43.9,17,0.0 +18593,73,15,36,0.0 +18593,9,97,27,0.0 +18593,65,21.05,32,0.0 +18593,70,15,39,0.0 +18593,12,38,36,0.0 +18593,21,10,32,0.0 +18593,76,18,39,0.0 +18593,13,6,1,0.0 +18593,47,9.5,32,0.0 +18593,42,14,25,0.0 +18594,10,31,14,0.0 +18594,68,12.5,40,0.0 +18594,41,9.65,21,0.0 +18594,8,40,13,0.0 +18594,13,6,21,0.0 +18594,34,14,16,0.0 +18594,65,21.05,19,0.0 +18594,28,45.6,36,0.0 +18594,62,49.3,3,0.0 +18594,6,25,43,0.0 +18594,32,32,32,0.0 +18594,42,14,30,0.0 +18594,50,16.25,6,0.0 +18594,75,7.75,47,0.0 +18594,69,36,49,0.0 +18594,30,25.89,11,0.0 +18594,15,15.5,41,0.0 +18594,52,7,30,0.0 +18594,51,53,46,0.0 +18594,19,9.2,21,0.0 +18594,38,263.5,23,0.0 +18594,71,21.5,46,0.0 +18594,35,18,15,0.0 +18594,76,18,47,0.0 +18594,63,43.9,26,0.0 +18594,43,46,3,0.0 +18594,56,38,45,0.0 +18594,64,33.25,9,0.0 +18594,39,18,47,0.0 +18594,9,97,22,0.0 +18594,74,10,27,0.0 +18594,47,9.5,29,0.0 +18594,33,2.5,20,0.0 +18594,12,38,31,0.0 +18594,31,12.5,28,0.0 +18594,59,55,46,0.0 +18594,25,14,6,0.0 +18594,77,13,12,0.0 +18594,4,22,43,0.0 +18594,18,62.5,45,0.0 +18594,11,21,39,0.0 +18594,27,43.9,49,0.0 +18594,17,39,44,0.0 +18594,53,32.8,36,0.0 +18594,73,15,32,0.0 +18594,14,23.25,17,0.0 +18594,72,34.8,19,0.0 +18594,57,19.5,17,0.0 +18594,58,13.25,33,0.0 +18594,22,21,24,0.0 +18594,2,19,30,0.0 +18594,54,7.45,26,0.0 +18594,49,20,45,0.0 +18594,60,34,35,0.0 +18594,1,18,27,0.0 +18594,3,10,35,0.0 +18594,55,24,39,0.0 +18594,48,12.75,43,0.0 +18594,7,30,10,0.0 +18594,37,26,3,0.0 +18594,5,21.35,13,0.0 +18594,20,81,20,0.0 +18594,40,18.4,50,0.0 +18594,26,31.23,17,0.0 +18594,67,14,16,0.0 +18594,29,123.79,4,0.0 +18594,36,19,40,0.0 +18594,70,15,16,0.0 +18594,23,9,20,0.0 +18594,46,12,43,0.0 +18594,66,17,16,0.0 +18594,21,10,2,0.0 +18594,45,9.5,26,0.0 +18595,32,32,20,0.0 +18595,64,33.25,36,0.0 +18596,51,53,50,0.0 +18596,55,24,35,0.0 +18596,62,49.3,3,0.0 +18596,63,43.9,23,0.0 +18596,53,32.8,18,0.0 +18596,28,45.6,19,0.0 +18596,57,19.5,28,0.0 +18597,22,21,35,0.0 +18597,18,62.5,40,0.0 +18597,60,34,47,0.0 +18597,12,38,33,0.0 +18597,58,13.25,5,0.0 +18597,16,17.45,41,0.0 +18597,33,2.5,4,0.0 +18597,1,18,39,0.0 +18597,8,40,36,0.0 +18597,28,45.6,24,0.0 +18597,31,12.5,10,0.0 +18597,38,263.5,43,0.0 +18597,68,12.5,12,0.0 +18597,64,33.25,11,0.0 +18597,55,24,34,0.0 +18597,5,21.35,20,0.0 +18597,6,25,25,0.0 +18597,46,12,36,0.0 +18597,20,81,15,0.0 +18597,45,9.5,17,0.0 +18597,35,18,38,0.0 +18597,74,10,9,0.0 +18597,73,15,14,0.0 +18597,52,7,8,0.0 +18597,17,39,27,0.0 +18597,41,9.65,36,0.0 +18597,44,19.45,24,0.0 +18597,61,28.5,9,0.0 +18597,10,31,2,0.0 +18597,11,21,47,0.0 +18597,71,21.5,36,0.0 +18597,30,25.89,33,0.0 +18597,26,31.23,27,0.0 +18597,69,36,39,0.0 +18597,32,32,8,0.0 +18597,47,9.5,49,0.0 +18597,4,22,43,0.0 +18597,39,18,20,0.0 +18597,77,13,5,0.0 +18597,34,14,31,0.0 +18597,48,12.75,28,0.0 +18597,72,34.8,47,0.0 +18597,36,19,43,0.0 +18597,75,7.75,23,0.0 +18597,70,15,37,0.0 +18597,21,10,45,0.0 +18597,15,15.5,3,0.0 +18597,65,21.05,4,0.0 +18597,9,97,18,0.0 +18597,23,9,36,0.0 +18598,68,12.5,8,0.0 +18598,62,49.3,9,0.0 +18598,52,7,50,0.0 +18598,50,16.25,11,0.0 +18598,56,38,25,0.0 +18598,2,19,47,0.0 +18598,45,9.5,26,0.0 +18598,38,263.5,6,0.0 +18598,53,32.8,15,0.0 +18598,30,25.89,16,0.0 +18598,15,15.5,27,0.0 +18598,55,24,20,0.0 +18598,26,31.23,23,0.0 +18598,39,18,5,0.0 +18598,71,21.5,27,0.0 +18598,6,25,34,0.0 +18598,29,123.79,26,0.0 +18598,36,19,32,0.0 +18598,63,43.9,46,0.0 +18598,67,14,38,0.0 +18598,73,15,26,0.0 +18598,74,10,47,0.0 +18598,20,81,12,0.0 +18598,25,14,33,0.0 +18598,5,21.35,45,0.0 +18598,43,46,45,0.0 +18598,1,18,44,0.0 +18598,59,55,20,0.0 +18598,19,9.2,26,0.0 +18598,49,20,27,0.0 +18598,37,26,32,0.0 +18598,18,62.5,41,0.0 +18598,3,10,33,0.0 +18598,60,34,32,0.0 +18598,54,7.45,47,0.0 +18598,27,43.9,6,0.0 +18598,14,23.25,1,0.0 +18598,57,19.5,12,0.0 +18598,76,18,47,0.0 +18598,24,4.5,13,0.0 +18598,4,22,14,0.0 +18598,31,12.5,16,0.0 +18598,11,21,50,0.0 +18598,12,38,13,0.0 +18599,11,21,15,0.0 +18599,44,19.45,37,0.0 +18599,3,10,35,0.0 +18599,59,55,36,0.0 +18599,70,15,40,0.0 +18599,41,9.65,33,0.0 +18599,27,43.9,17,0.0 +18599,37,26,7,0.0 +18599,16,17.45,6,0.0 +18599,66,17,49,0.0 +18599,39,18,36,0.0 +18599,24,4.5,35,0.0 +18599,9,97,3,0.0 +18599,17,39,13,0.0 +18599,72,34.8,50,0.0 +18599,61,28.5,13,0.0 +18599,4,22,40,0.0 +18599,28,45.6,28,0.0 +18599,40,18.4,15,0.0 +18599,19,9.2,26,0.0 +18599,63,43.9,4,0.0 +18599,52,7,11,0.0 +18599,42,14,44,0.0 +18599,55,24,25,0.0 +18599,7,30,3,0.0 +18599,56,38,14,0.0 +18599,38,263.5,11,0.0 +18599,20,81,26,0.0 +18599,74,10,45,0.0 +18599,51,53,43,0.0 +18599,64,33.25,22,0.0 +18599,73,15,12,0.0 +18599,14,23.25,26,0.0 +18599,32,32,43,0.0 +18599,57,19.5,26,0.0 +18599,77,13,14,0.0 +18599,30,25.89,38,0.0 +18599,49,20,4,0.0 +18599,15,15.5,32,0.0 +18599,22,21,6,0.0 +18599,26,31.23,40,0.0 +18599,68,12.5,36,0.0 +18599,29,123.79,16,0.0 +18599,23,9,47,0.0 +18599,25,14,22,0.0 +18599,58,13.25,11,0.0 +18599,75,7.75,29,0.0 +18599,50,16.25,41,0.0 +18599,45,9.5,29,0.0 +18599,18,62.5,48,0.0 +18599,62,49.3,50,0.0 +18599,34,14,19,0.0 +18599,8,40,29,0.0 +18599,1,18,23,0.0 +18599,12,38,3,0.0 +18599,5,21.35,24,0.0 +18599,60,34,38,0.0 +18599,67,14,3,0.0 +18599,53,32.8,48,0.0 +18599,47,9.5,13,0.0 +18599,43,46,2,0.0 +18599,13,6,15,0.0 +18599,21,10,10,0.0 +18599,46,12,11,0.0 +18599,31,12.5,23,0.0 +18599,48,12.75,22,0.0 +18600,67,14,6,0.0 +18600,22,21,15,0.0 +18600,16,17.45,20,0.0 +18600,59,55,31,0.0 +18600,24,4.5,20,0.0 +18600,27,43.9,26,0.0 +18600,15,15.5,43,0.0 +18600,12,38,2,0.0 +18600,73,15,5,0.0 +18600,54,7.45,12,0.0 +18600,36,19,38,0.0 +18600,28,45.6,10,0.0 +18600,6,25,32,0.0 +18600,56,38,20,0.0 +18600,53,32.8,31,0.0 +18600,34,14,18,0.0 +18600,69,36,45,0.0 +18600,37,26,49,0.0 +18600,43,46,4,0.0 +18600,1,18,36,0.0 +18600,11,21,12,0.0 +18600,75,7.75,46,0.0 +18600,17,39,27,0.0 +18600,5,21.35,33,0.0 +18600,29,123.79,27,0.0 +18600,21,10,40,0.0 +18600,48,12.75,1,0.0 +18600,76,18,14,0.0 +18600,65,21.05,20,0.0 +18600,13,6,5,0.0 +18600,41,9.65,21,0.0 +18600,51,53,5,0.0 +18600,7,30,28,0.0 +18600,45,9.5,6,0.0 +18600,71,21.5,27,0.0 +18600,42,14,39,0.0 +18600,50,16.25,26,0.0 +18601,17,39,6,0.0 +18601,54,7.45,39,0.0 +18601,5,21.35,37,0.0 +18601,22,21,31,0.0 +18601,28,45.6,4,0.0 +18601,25,14,29,0.0 +18601,1,18,44,0.0 +18601,44,19.45,8,0.0 +18601,30,25.89,39,0.0 +18602,28,45.6,12,0.0 +18602,19,9.2,10,0.0 +18602,76,18,21,0.0 +18602,33,2.5,44,0.0 +18602,22,21,35,0.0 +18602,46,12,42,0.0 +18602,16,17.45,42,0.0 +18602,62,49.3,25,0.0 +18602,72,34.8,30,0.0 +18603,27,43.9,36,0.0 +18603,2,19,37,0.0 +18603,39,18,18,0.0 +18603,63,43.9,47,0.0 +18603,48,12.75,48,0.0 +18603,60,34,12,0.0 +18603,58,13.25,26,0.0 +18603,9,97,3,0.0 +18603,14,23.25,7,0.0 +18603,15,15.5,14,0.0 +18603,68,12.5,50,0.0 +18603,34,14,14,0.0 +18603,77,13,22,0.0 +18603,24,4.5,8,0.0 +18603,1,18,29,0.0 +18603,42,14,26,0.0 +18603,53,32.8,24,0.0 +18603,74,10,5,0.0 +18603,37,26,44,0.0 +18603,35,18,11,0.0 +18603,47,9.5,8,0.0 +18603,31,12.5,45,0.0 +18603,49,20,23,0.0 +18603,65,21.05,48,0.0 +18603,26,31.23,40,0.0 +18603,13,6,15,0.0 +18603,20,81,38,0.0 +18603,57,19.5,12,0.0 +18603,70,15,10,0.0 +18603,64,33.25,4,0.0 +18603,32,32,27,0.0 +18603,52,7,22,0.0 +18603,50,16.25,48,0.0 +18603,72,34.8,21,0.0 +18603,18,62.5,23,0.0 +18603,6,25,8,0.0 +18603,59,55,44,0.0 +18603,75,7.75,16,0.0 +18603,29,123.79,13,0.0 +18603,7,30,20,0.0 +18603,66,17,11,0.0 +18603,4,22,42,0.0 +18603,21,10,25,0.0 +18603,40,18.4,45,0.0 +18603,22,21,28,0.0 +18603,44,19.45,31,0.0 +18603,71,21.5,2,0.0 +18603,23,9,14,0.0 +18603,19,9.2,31,0.0 +18603,67,14,27,0.0 +18603,69,36,12,0.0 +18603,55,24,10,0.0 +18603,51,53,48,0.0 +18603,61,28.5,29,0.0 +18603,46,12,14,0.0 +18603,28,45.6,21,0.0 +18603,56,38,14,0.0 +18603,25,14,29,0.0 +18603,12,38,40,0.0 +18603,38,263.5,42,0.0 +18603,45,9.5,14,0.0 +18603,73,15,5,0.0 +18603,30,25.89,10,0.0 +18604,55,24,41,0.0 +18604,3,10,34,0.0 +18604,76,18,37,0.0 +18604,68,12.5,33,0.0 +18604,12,38,44,0.0 +18604,37,26,12,0.0 +18604,65,21.05,4,0.0 +18604,58,13.25,41,0.0 +18604,20,81,23,0.0 +18604,52,7,15,0.0 +18604,72,34.8,41,0.0 +18604,34,14,23,0.0 +18604,43,46,21,0.0 +18604,29,123.79,35,0.0 +18604,25,14,20,0.0 +18604,73,15,3,0.0 +18604,64,33.25,44,0.0 +18604,8,40,24,0.0 +18604,30,25.89,25,0.0 +18604,27,43.9,40,0.0 +18604,63,43.9,21,0.0 +18604,7,30,19,0.0 +18604,13,6,44,0.0 +18604,47,9.5,22,0.0 +18604,18,62.5,24,0.0 +18604,49,20,8,0.0 +18604,45,9.5,28,0.0 +18604,57,19.5,7,0.0 +18604,74,10,21,0.0 +18604,46,12,2,0.0 +18604,17,39,38,0.0 +18604,19,9.2,45,0.0 +18604,5,21.35,2,0.0 +18604,62,49.3,48,0.0 +18604,59,55,38,0.0 +18604,51,53,5,0.0 +18604,2,19,33,0.0 +18604,38,263.5,12,0.0 +18604,39,18,5,0.0 +18604,50,16.25,48,0.0 +18604,6,25,13,0.0 +18604,22,21,22,0.0 +18604,4,22,38,0.0 +18604,41,9.65,49,0.0 +18604,75,7.75,46,0.0 +18604,69,36,40,0.0 +18604,67,14,33,0.0 +18604,16,17.45,43,0.0 +18604,77,13,19,0.0 +18604,21,10,33,0.0 +18604,1,18,46,0.0 +18605,40,18.4,41,0.0 +18605,47,9.5,2,0.0 +18605,62,49.3,26,0.0 +18605,30,25.89,19,0.0 +18605,10,31,11,0.0 +18605,7,30,47,0.0 +18605,51,53,13,0.0 +18605,15,15.5,16,0.0 +18605,24,4.5,44,0.0 +18605,1,18,21,0.0 +18605,17,39,46,0.0 +18605,26,31.23,22,0.0 +18605,69,36,23,0.0 +18605,38,263.5,8,0.0 +18605,76,18,18,0.0 +18605,36,19,48,0.0 +18605,6,25,40,0.0 +18605,50,16.25,4,0.0 +18605,42,14,20,0.0 +18605,22,21,47,0.0 +18605,65,21.05,8,0.0 +18605,52,7,31,0.0 +18605,4,22,16,0.0 +18605,55,24,16,0.0 +18605,77,13,40,0.0 +18605,68,12.5,15,0.0 +18605,31,12.5,32,0.0 +18605,70,15,26,0.0 +18605,66,17,23,0.0 +18605,23,9,49,0.0 +18605,32,32,44,0.0 +18605,73,15,10,0.0 +18605,16,17.45,6,0.0 +18605,74,10,30,0.0 +18605,58,13.25,46,0.0 +18605,18,62.5,14,0.0 +18605,39,18,1,0.0 +18605,49,20,39,0.0 +18605,13,6,37,0.0 +18606,24,4.5,48,0.0 +18606,49,20,5,0.0 +18606,5,21.35,9,0.0 +18606,42,14,15,0.0 +18606,31,12.5,6,0.0 +18606,14,23.25,7,0.0 +18607,13,6,18,0.0 +18607,46,12,30,0.0 +18607,77,13,48,0.0 +18607,20,81,17,0.0 +18607,6,25,18,0.0 +18607,48,12.75,30,0.0 +18607,25,14,39,0.0 +18607,23,9,16,0.0 +18607,9,97,29,0.0 +18607,63,43.9,27,0.0 +18607,35,18,14,0.0 +18607,71,21.5,22,0.0 +18607,54,7.45,14,0.0 +18607,11,21,47,0.0 +18607,75,7.75,12,0.0 +18607,58,13.25,19,0.0 +18607,66,17,12,0.0 +18607,67,14,35,0.0 +18607,60,34,22,0.0 +18607,40,18.4,21,0.0 +18607,51,53,19,0.0 +18607,65,21.05,41,0.0 +18607,30,25.89,10,0.0 +18607,49,20,19,0.0 +18607,68,12.5,31,0.0 +18607,39,18,14,0.0 +18607,24,4.5,46,0.0 +18607,34,14,12,0.0 +18607,56,38,8,0.0 +18607,41,9.65,43,0.0 +18607,1,18,22,0.0 +18607,72,34.8,31,0.0 +18607,8,40,26,0.0 +18607,28,45.6,18,0.0 +18607,61,28.5,38,0.0 +18607,76,18,31,0.0 +18607,44,19.45,7,0.0 +18607,47,9.5,26,0.0 +18607,43,46,10,0.0 +18607,21,10,34,0.0 +18607,50,16.25,41,0.0 +18607,42,14,44,0.0 +18607,15,15.5,1,0.0 +18607,26,31.23,46,0.0 +18607,18,62.5,3,0.0 +18607,53,32.8,29,0.0 +18607,32,32,17,0.0 +18607,22,21,6,0.0 +18607,12,38,11,0.0 +18607,55,24,17,0.0 +18607,62,49.3,9,0.0 +18607,31,12.5,14,0.0 +18607,59,55,18,0.0 +18607,27,43.9,49,0.0 +18607,2,19,22,0.0 +18607,37,26,18,0.0 +18607,7,30,6,0.0 +18607,64,33.25,16,0.0 +18607,74,10,11,0.0 +18607,29,123.79,6,0.0 +18607,16,17.45,29,0.0 +18608,37,26,35,0.0 +18608,7,30,29,0.0 +18608,16,17.45,33,0.0 +18608,3,10,45,0.0 +18608,40,18.4,31,0.0 +18608,63,43.9,44,0.0 +18608,22,21,44,0.0 +18608,21,10,39,0.0 +18608,49,20,33,0.0 +18608,20,81,5,0.0 +18608,5,21.35,4,0.0 +18608,72,34.8,26,0.0 +18608,12,38,42,0.0 +18608,70,15,36,0.0 +18608,34,14,15,0.0 +18608,68,12.5,2,0.0 +18608,44,19.45,37,0.0 +18608,10,31,46,0.0 +18608,28,45.6,29,0.0 +18608,43,46,7,0.0 +18608,41,9.65,4,0.0 +18608,48,12.75,41,0.0 +18608,25,14,20,0.0 +18608,9,97,1,0.0 +18608,15,15.5,33,0.0 +18608,59,55,33,0.0 +18608,51,53,21,0.0 +18608,67,14,14,0.0 +18608,2,19,1,0.0 +18608,29,123.79,8,0.0 +18608,64,33.25,26,0.0 +18608,35,18,34,0.0 +18608,17,39,47,0.0 +18608,4,22,49,0.0 +18608,46,12,34,0.0 +18608,30,25.89,17,0.0 +18608,1,18,50,0.0 +18608,73,15,30,0.0 +18608,11,21,36,0.0 +18608,26,31.23,12,0.0 +18608,6,25,47,0.0 +18608,32,32,4,0.0 +18608,27,43.9,24,0.0 +18608,42,14,30,0.0 +18608,36,19,46,0.0 +18608,61,28.5,50,0.0 +18608,18,62.5,45,0.0 +18608,13,6,33,0.0 +18608,56,38,45,0.0 +18608,52,7,39,0.0 +18608,39,18,23,0.0 +18608,38,263.5,27,0.0 +18608,33,2.5,42,0.0 +18608,54,7.45,31,0.0 +18608,69,36,9,0.0 +18608,60,34,36,0.0 +18608,50,16.25,44,0.0 +18608,57,19.5,21,0.0 +18608,53,32.8,7,0.0 +18608,58,13.25,2,0.0 +18608,66,17,39,0.0 +18608,77,13,44,0.0 +18608,31,12.5,30,0.0 +18608,65,21.05,29,0.0 +18608,74,10,15,0.0 +18608,76,18,42,0.0 +18608,8,40,22,0.0 +18608,47,9.5,22,0.0 +18608,24,4.5,28,0.0 +18608,14,23.25,7,0.0 +18608,71,21.5,29,0.0 +18608,75,7.75,9,0.0 +18608,45,9.5,37,0.0 +18609,61,28.5,13,0.0 +18609,71,21.5,44,0.0 +18609,9,97,12,0.0 +18609,65,21.05,1,0.0 +18609,3,10,5,0.0 +18609,27,43.9,16,0.0 +18609,34,14,18,0.0 +18609,53,32.8,37,0.0 +18609,12,38,14,0.0 +18609,43,46,2,0.0 +18609,38,263.5,26,0.0 +18609,18,62.5,24,0.0 +18609,66,17,5,0.0 +18609,74,10,43,0.0 +18609,25,14,49,0.0 +18609,76,18,27,0.0 +18609,77,13,24,0.0 +18609,39,18,41,0.0 +18609,10,31,2,0.0 +18609,2,19,33,0.0 +18609,23,9,41,0.0 +18609,5,21.35,34,0.0 +18609,59,55,24,0.0 +18609,22,21,10,0.0 +18609,67,14,31,0.0 +18609,62,49.3,37,0.0 +18609,58,13.25,41,0.0 +18609,15,15.5,48,0.0 +18609,75,7.75,28,0.0 +18609,29,123.79,20,0.0 +18609,4,22,3,0.0 +18609,21,10,42,0.0 +18609,54,7.45,16,0.0 +18609,28,45.6,32,0.0 +18610,77,13,39,0.0 +18610,12,38,5,0.0 +18610,62,49.3,32,0.0 +18610,52,7,48,0.0 +18610,24,4.5,5,0.0 +18610,45,9.5,21,0.0 +18610,28,45.6,6,0.0 +18610,72,34.8,50,0.0 +18610,48,12.75,12,0.0 +18610,5,21.35,50,0.0 +18610,47,9.5,2,0.0 +18610,38,263.5,48,0.0 +18610,10,31,19,0.0 +18610,32,32,13,0.0 +18610,44,19.45,37,0.0 +18610,14,23.25,5,0.0 +18610,57,19.5,6,0.0 +18610,30,25.89,32,0.0 +18610,65,21.05,44,0.0 +18610,67,14,48,0.0 +18610,60,34,7,0.0 +18610,25,14,48,0.0 +18610,21,10,39,0.0 +18610,53,32.8,26,0.0 +18610,7,30,4,0.0 +18610,40,18.4,29,0.0 +18610,75,7.75,13,0.0 +18610,54,7.45,2,0.0 +18610,22,21,19,0.0 +18610,51,53,1,0.0 +18610,71,21.5,14,0.0 +18610,39,18,5,0.0 +18610,66,17,14,0.0 +18610,4,22,42,0.0 +18610,50,16.25,9,0.0 +18610,19,9.2,28,0.0 +18610,76,18,1,0.0 +18610,36,19,48,0.0 +18610,27,43.9,18,0.0 +18610,56,38,27,0.0 +18610,74,10,17,0.0 +18610,1,18,21,0.0 +18610,43,46,45,0.0 +18610,42,14,32,0.0 +18610,41,9.65,41,0.0 +18610,3,10,34,0.0 +18610,63,43.9,3,0.0 +18610,46,12,39,0.0 +18610,18,62.5,48,0.0 +18610,26,31.23,19,0.0 +18610,2,19,43,0.0 +18610,16,17.45,21,0.0 +18610,29,123.79,37,0.0 +18610,59,55,49,0.0 +18610,55,24,42,0.0 +18610,13,6,47,0.0 +18610,61,28.5,40,0.0 +18610,58,13.25,33,0.0 +18610,37,26,45,0.0 +18610,69,36,13,0.0 +18610,64,33.25,32,0.0 +18610,15,15.5,35,0.0 +18610,23,9,50,0.0 +18610,35,18,9,0.0 +18610,70,15,31,0.0 +18610,20,81,7,0.0 +18610,9,97,6,0.0 +18610,11,21,37,0.0 +18610,6,25,20,0.0 +18610,17,39,40,0.0 +18610,33,2.5,18,0.0 +18610,73,15,11,0.0 +18610,8,40,9,0.0 +18610,31,12.5,4,0.0 +18610,49,20,32,0.0 +18610,34,14,4,0.0 +18611,77,13,12,0.0 +18611,45,9.5,25,0.0 +18611,34,14,24,0.0 +18611,23,9,1,0.0 +18611,20,81,32,0.0 +18611,26,31.23,47,0.0 +18611,36,19,26,0.0 +18611,15,15.5,29,0.0 +18611,1,18,26,0.0 +18611,22,21,14,0.0 +18611,47,9.5,2,0.0 +18611,64,33.25,16,0.0 +18611,60,34,25,0.0 +18611,56,38,22,0.0 +18611,27,43.9,1,0.0 +18611,73,15,22,0.0 +18611,2,19,29,0.0 +18611,30,25.89,14,0.0 +18611,62,49.3,42,0.0 +18611,13,6,2,0.0 +18611,12,38,18,0.0 +18611,52,7,11,0.0 +18611,61,28.5,26,0.0 +18611,66,17,27,0.0 +18611,4,22,6,0.0 +18611,50,16.25,9,0.0 +18611,16,17.45,13,0.0 +18611,7,30,50,0.0 +18611,18,62.5,25,0.0 +18611,17,39,36,0.0 +18611,14,23.25,4,0.0 +18611,32,32,35,0.0 +18611,40,18.4,16,0.0 +18611,28,45.6,6,0.0 +18611,51,53,47,0.0 +18612,59,55,32,0.0 +18612,58,13.25,31,0.0 +18612,68,12.5,21,0.0 +18612,11,21,47,0.0 +18612,44,19.45,45,0.0 +18612,35,18,10,0.0 +18612,39,18,31,0.0 +18612,48,12.75,27,0.0 +18612,26,31.23,36,0.0 +18612,64,33.25,44,0.0 +18612,66,17,15,0.0 +18612,52,7,1,0.0 +18612,42,14,6,0.0 +18612,41,9.65,27,0.0 +18612,76,18,19,0.0 +18612,60,34,47,0.0 +18612,69,36,22,0.0 +18612,40,18.4,16,0.0 +18612,53,32.8,15,0.0 +18612,38,263.5,30,0.0 +18612,34,14,23,0.0 +18612,29,123.79,36,0.0 +18612,67,14,24,0.0 +18612,9,97,35,0.0 +18612,25,14,40,0.0 +18612,30,25.89,22,0.0 +18612,63,43.9,18,0.0 +18612,70,15,39,0.0 +18612,23,9,42,0.0 +18612,6,25,49,0.0 +18612,18,62.5,40,0.0 +18612,28,45.6,30,0.0 +18612,73,15,39,0.0 +18612,32,32,33,0.0 +18612,5,21.35,5,0.0 +18612,17,39,6,0.0 +18612,62,49.3,35,0.0 +18612,33,2.5,49,0.0 +18612,49,20,45,0.0 +18612,31,12.5,9,0.0 +18612,20,81,10,0.0 +18612,75,7.75,18,0.0 +18612,16,17.45,43,0.0 +18612,56,38,39,0.0 +18612,65,21.05,21,0.0 +18612,8,40,10,0.0 +18612,77,13,21,0.0 +18612,51,53,7,0.0 +18612,15,15.5,12,0.0 +18612,54,7.45,47,0.0 +18612,36,19,38,0.0 +18612,27,43.9,46,0.0 +18612,21,10,17,0.0 +18612,57,19.5,29,0.0 +18612,72,34.8,23,0.0 +18612,13,6,25,0.0 +18612,50,16.25,39,0.0 +18612,24,4.5,16,0.0 +18612,10,31,23,0.0 +18613,23,9,12,0.0 +18613,30,25.89,4,0.0 +18613,5,21.35,41,0.0 +18613,15,15.5,4,0.0 +18613,26,31.23,38,0.0 +18613,27,43.9,48,0.0 +18613,76,18,21,0.0 +18613,71,21.5,23,0.0 +18613,62,49.3,12,0.0 +18613,36,19,40,0.0 +18613,16,17.45,33,0.0 +18613,20,81,32,0.0 +18613,22,21,26,0.0 +18613,74,10,13,0.0 +18613,2,19,26,0.0 +18613,40,18.4,19,0.0 +18613,50,16.25,50,0.0 +18613,14,23.25,25,0.0 +18613,45,9.5,24,0.0 +18613,18,62.5,43,0.0 +18613,24,4.5,36,0.0 +18613,11,21,35,0.0 +18613,56,38,10,0.0 +18613,21,10,43,0.0 +18613,29,123.79,44,0.0 +18613,19,9.2,25,0.0 +18613,46,12,40,0.0 +18613,77,13,19,0.0 +18613,70,15,13,0.0 +18613,8,40,43,0.0 +18613,58,13.25,21,0.0 +18613,33,2.5,36,0.0 +18613,35,18,3,0.0 +18613,75,7.75,23,0.0 +18613,32,32,41,0.0 +18613,43,46,30,0.0 +18613,48,12.75,18,0.0 +18613,6,25,6,0.0 +18613,68,12.5,39,0.0 +18613,1,18,44,0.0 +18613,3,10,36,0.0 +18613,64,33.25,14,0.0 +18613,25,14,49,0.0 +18613,9,97,48,0.0 +18613,59,55,48,0.0 +18613,34,14,26,0.0 +18613,61,28.5,37,0.0 +18613,31,12.5,26,0.0 +18613,37,26,9,0.0 +18613,44,19.45,15,0.0 +18613,49,20,25,0.0 +18613,28,45.6,26,0.0 +18613,13,6,22,0.0 +18613,17,39,3,0.0 +18613,53,32.8,34,0.0 +18613,54,7.45,6,0.0 +18613,4,22,36,0.0 +18613,65,21.05,9,0.0 +18613,73,15,36,0.0 +18613,57,19.5,27,0.0 +18613,60,34,27,0.0 +18613,63,43.9,24,0.0 +18613,72,34.8,17,0.0 +18613,7,30,41,0.0 +18613,41,9.65,28,0.0 +18613,51,53,25,0.0 +18613,39,18,49,0.0 +18613,38,263.5,32,0.0 +18613,10,31,27,0.0 +18613,12,38,17,0.0 +18613,47,9.5,32,0.0 +18614,14,23.25,12,0.0 +18614,38,263.5,19,0.0 +18614,71,21.5,24,0.0 +18614,11,21,8,0.0 +18614,66,17,38,0.0 +18614,16,17.45,49,0.0 +18614,13,6,39,0.0 +18614,8,40,24,0.0 +18614,9,97,50,0.0 +18614,59,55,1,0.0 +18614,29,123.79,16,0.0 +18614,76,18,10,0.0 +18614,18,62.5,4,0.0 +18614,31,12.5,5,0.0 +18614,73,15,50,0.0 +18614,32,32,41,0.0 +18614,62,49.3,19,0.0 +18614,33,2.5,25,0.0 +18614,26,31.23,5,0.0 +18614,67,14,24,0.0 +18614,27,43.9,18,0.0 +18614,34,14,16,0.0 +18614,74,10,30,0.0 +18614,1,18,15,0.0 +18614,43,46,18,0.0 +18614,46,12,46,0.0 +18614,24,4.5,9,0.0 +18614,77,13,10,0.0 +18614,47,9.5,29,0.0 +18614,70,15,42,0.0 +18614,60,34,50,0.0 +18614,3,10,19,0.0 +18614,40,18.4,6,0.0 +18614,53,32.8,35,0.0 +18614,7,30,45,0.0 +18614,17,39,3,0.0 +18614,4,22,4,0.0 +18614,39,18,26,0.0 +18615,19,9.2,36,0.0 +18615,57,19.5,16,0.0 +18615,46,12,50,0.0 +18615,5,21.35,46,0.0 +18615,29,123.79,25,0.0 +18615,48,12.75,12,0.0 +18615,6,25,35,0.0 +18615,53,32.8,15,0.0 +18615,74,10,18,0.0 +18615,9,97,41,0.0 +18615,11,21,16,0.0 +18615,13,6,36,0.0 +18615,1,18,34,0.0 +18615,33,2.5,41,0.0 +18615,68,12.5,40,0.0 +18615,65,21.05,32,0.0 +18615,73,15,23,0.0 +18615,40,18.4,49,0.0 +18615,7,30,21,0.0 +18615,15,15.5,11,0.0 +18615,45,9.5,28,0.0 +18615,64,33.25,22,0.0 +18615,30,25.89,22,0.0 +18615,58,13.25,49,0.0 +18615,50,16.25,24,0.0 +18615,31,12.5,27,0.0 +18615,52,7,30,0.0 +18615,66,17,42,0.0 +18615,28,45.6,23,0.0 +18615,76,18,5,0.0 +18615,3,10,27,0.0 +18615,14,23.25,22,0.0 +18615,2,19,41,0.0 +18615,59,55,4,0.0 +18615,37,26,1,0.0 +18615,25,14,1,0.0 +18615,47,9.5,18,0.0 +18615,69,36,4,0.0 +18615,44,19.45,8,0.0 +18615,67,14,30,0.0 +18615,70,15,46,0.0 +18615,4,22,39,0.0 +18615,71,21.5,22,0.0 +18615,43,46,5,0.0 +18615,24,4.5,3,0.0 +18615,32,32,38,0.0 +18615,55,24,19,0.0 +18615,72,34.8,48,0.0 +18615,10,31,28,0.0 +18615,12,38,21,0.0 +18615,75,7.75,17,0.0 +18615,42,14,3,0.0 +18615,63,43.9,32,0.0 +18615,41,9.65,2,0.0 +18615,34,14,26,0.0 +18615,22,21,32,0.0 +18615,35,18,30,0.0 +18615,26,31.23,46,0.0 +18615,56,38,50,0.0 +18615,54,7.45,30,0.0 +18615,36,19,34,0.0 +18615,39,18,19,0.0 +18615,61,28.5,1,0.0 +18615,20,81,48,0.0 +18616,67,14,16,0.0 +18616,31,12.5,44,0.0 +18616,52,7,46,0.0 +18616,20,81,27,0.0 +18616,44,19.45,30,0.0 +18616,36,19,19,0.0 +18616,29,123.79,42,0.0 +18616,11,21,22,0.0 +18616,15,15.5,23,0.0 +18616,48,12.75,23,0.0 +18616,13,6,42,0.0 +18616,75,7.75,32,0.0 +18616,32,32,26,0.0 +18616,19,9.2,3,0.0 +18616,6,25,48,0.0 +18616,27,43.9,15,0.0 +18616,12,38,22,0.0 +18616,65,21.05,45,0.0 +18616,25,14,31,0.0 +18616,37,26,38,0.0 +18616,59,55,27,0.0 +18616,7,30,48,0.0 +18616,46,12,43,0.0 +18616,9,97,44,0.0 +18616,45,9.5,9,0.0 +18616,54,7.45,3,0.0 +18616,60,34,7,0.0 +18616,2,19,13,0.0 +18616,5,21.35,8,0.0 +18616,30,25.89,28,0.0 +18616,14,23.25,26,0.0 +18616,34,14,42,0.0 +18616,70,15,36,0.0 +18616,40,18.4,21,0.0 +18616,47,9.5,39,0.0 +18616,69,36,20,0.0 +18616,72,34.8,21,0.0 +18616,53,32.8,3,0.0 +18616,4,22,32,0.0 +18616,61,28.5,37,0.0 +18616,26,31.23,15,0.0 +18616,77,13,34,0.0 +18616,57,19.5,19,0.0 +18617,46,12,14,0.0 +18617,67,14,10,0.0 +18617,49,20,38,0.0 +18617,6,25,10,0.0 +18617,27,43.9,13,0.0 +18617,26,31.23,44,0.0 +18617,51,53,3,0.0 +18617,33,2.5,44,0.0 +18617,34,14,39,0.0 +18617,40,18.4,34,0.0 +18617,30,25.89,47,0.0 +18617,25,14,42,0.0 +18617,39,18,14,0.0 +18617,14,23.25,37,0.0 +18617,55,24,13,0.0 +18617,13,6,20,0.0 +18618,24,4.5,30,0.0 +18618,52,7,35,0.0 +18618,66,17,34,0.0 +18619,28,45.6,41,0.0 +18619,49,20,37,0.0 +18619,57,19.5,46,0.0 +18619,58,13.25,21,0.0 +18619,56,38,26,0.0 +18619,62,49.3,23,0.0 +18619,13,6,11,0.0 +18619,6,25,3,0.0 +18619,55,24,17,0.0 +18619,39,18,25,0.0 +18619,75,7.75,23,0.0 +18619,66,17,29,0.0 +18619,44,19.45,44,0.0 +18619,35,18,48,0.0 +18619,21,10,6,0.0 +18619,3,10,16,0.0 +18619,12,38,49,0.0 +18619,4,22,27,0.0 +18619,17,39,30,0.0 +18619,8,40,43,0.0 +18619,11,21,10,0.0 +18619,36,19,10,0.0 +18619,10,31,20,0.0 +18619,5,21.35,33,0.0 +18619,25,14,28,0.0 +18619,68,12.5,19,0.0 +18619,22,21,15,0.0 +18619,30,25.89,14,0.0 +18619,67,14,8,0.0 +18619,50,16.25,47,0.0 +18619,27,43.9,16,0.0 +18619,71,21.5,33,0.0 +18619,19,9.2,7,0.0 +18619,15,15.5,19,0.0 +18619,73,15,48,0.0 +18619,18,62.5,17,0.0 +18619,54,7.45,27,0.0 +18619,48,12.75,44,0.0 +18619,64,33.25,8,0.0 +18619,53,32.8,9,0.0 +18619,70,15,32,0.0 +18619,59,55,17,0.0 +18619,47,9.5,17,0.0 +18619,41,9.65,38,0.0 +18619,76,18,20,0.0 +18619,26,31.23,50,0.0 +18619,60,34,1,0.0 +18619,14,23.25,1,0.0 +18619,24,4.5,4,0.0 +18619,16,17.45,18,0.0 +18619,61,28.5,30,0.0 +18619,37,26,14,0.0 +18619,32,32,7,0.0 +18620,44,19.45,24,0.0 +18620,48,12.75,13,0.0 +18620,13,6,34,0.0 +18620,50,16.25,31,0.0 +18620,3,10,10,0.0 +18620,12,38,12,0.0 +18621,57,19.5,38,0.0 +18621,38,263.5,14,0.0 +18621,16,17.45,5,0.0 +18621,31,12.5,9,0.0 +18621,44,19.45,27,0.0 +18621,50,16.25,8,0.0 +18621,48,12.75,36,0.0 +18621,54,7.45,14,0.0 +18621,24,4.5,46,0.0 +18621,69,36,1,0.0 +18621,76,18,20,0.0 +18621,8,40,43,0.0 +18621,37,26,2,0.0 +18621,64,33.25,23,0.0 +18621,40,18.4,46,0.0 +18621,58,13.25,21,0.0 +18621,10,31,24,0.0 +18621,39,18,8,0.0 +18621,42,14,28,0.0 +18621,19,9.2,17,0.0 +18621,15,15.5,23,0.0 +18621,55,24,2,0.0 +18621,11,21,50,0.0 +18621,17,39,41,0.0 +18621,61,28.5,13,0.0 +18621,26,31.23,18,0.0 +18621,13,6,40,0.0 +18621,72,34.8,1,0.0 +18622,10,31,30,0.0 +18622,68,12.5,31,0.0 +18622,51,53,17,0.0 +18622,49,20,35,0.0 +18622,70,15,8,0.0 +18622,3,10,14,0.0 +18622,28,45.6,28,0.0 +18622,19,9.2,21,0.0 +18622,63,43.9,5,0.0 +18622,4,22,35,0.0 +18622,44,19.45,37,0.0 +18622,75,7.75,3,0.0 +18622,73,15,30,0.0 +18622,16,17.45,18,0.0 +18622,46,12,12,0.0 +18622,69,36,22,0.0 +18622,22,21,10,0.0 +18622,67,14,33,0.0 +18622,62,49.3,32,0.0 +18622,12,38,38,0.0 +18622,45,9.5,28,0.0 +18622,21,10,47,0.0 +18622,56,38,39,0.0 +18622,58,13.25,28,0.0 +18622,71,21.5,40,0.0 +18622,33,2.5,31,0.0 +18622,26,31.23,15,0.0 +18622,15,15.5,14,0.0 +18622,52,7,20,0.0 +18622,34,14,26,0.0 +18622,42,14,17,0.0 +18622,61,28.5,10,0.0 +18623,35,18,3,0.0 +18623,31,12.5,38,0.0 +18623,77,13,45,0.0 +18623,40,18.4,21,0.0 +18623,59,55,46,0.0 +18623,4,22,25,0.0 +18623,18,62.5,15,0.0 +18623,17,39,33,0.0 +18623,45,9.5,6,0.0 +18623,43,46,26,0.0 +18623,61,28.5,27,0.0 +18623,7,30,34,0.0 +18623,44,19.45,38,0.0 +18623,76,18,13,0.0 +18623,64,33.25,42,0.0 +18623,74,10,41,0.0 +18623,29,123.79,37,0.0 +18623,16,17.45,32,0.0 +18623,58,13.25,7,0.0 +18623,12,38,29,0.0 +18623,32,32,19,0.0 +18623,11,21,12,0.0 +18623,37,26,15,0.0 +18623,47,9.5,14,0.0 +18623,66,17,39,0.0 +18623,3,10,6,0.0 +18623,56,38,43,0.0 +18623,62,49.3,10,0.0 +18623,22,21,16,0.0 +18623,14,23.25,36,0.0 +18623,48,12.75,46,0.0 +18623,52,7,46,0.0 +18624,55,24,20,0.0 +18624,52,7,9,0.0 +18624,64,33.25,39,0.0 +18624,29,123.79,1,0.0 +18624,6,25,9,0.0 +18624,49,20,28,0.0 +18624,46,12,25,0.0 +18624,8,40,9,0.0 +18624,25,14,48,0.0 +18624,35,18,15,0.0 +18624,11,21,31,0.0 +18624,1,18,4,0.0 +18624,67,14,16,0.0 +18624,38,263.5,20,0.0 +18624,2,19,30,0.0 +18624,61,28.5,15,0.0 +18624,47,9.5,16,0.0 +18624,48,12.75,4,0.0 +18624,54,7.45,34,0.0 +18624,77,13,7,0.0 +18624,18,62.5,36,0.0 +18624,5,21.35,6,0.0 +18624,16,17.45,43,0.0 +18624,9,97,31,0.0 +18624,24,4.5,42,0.0 +18624,53,32.8,16,0.0 +18624,4,22,45,0.0 +18624,36,19,20,0.0 +18624,14,23.25,6,0.0 +18624,65,21.05,32,0.0 +18624,68,12.5,15,0.0 +18624,15,15.5,39,0.0 +18624,7,30,25,0.0 +18624,71,21.5,22,0.0 +18624,34,14,13,0.0 +18624,17,39,46,0.0 +18624,21,10,43,0.0 +18624,22,21,31,0.0 +18624,33,2.5,49,0.0 +18624,32,32,32,0.0 +18624,74,10,4,0.0 +18624,27,43.9,14,0.0 +18624,42,14,6,0.0 +18624,10,31,10,0.0 +18624,60,34,28,0.0 +18624,44,19.45,36,0.0 +18624,59,55,33,0.0 +18624,50,16.25,8,0.0 +18624,41,9.65,4,0.0 +18624,73,15,16,0.0 +18624,56,38,32,0.0 +18624,23,9,7,0.0 +18624,30,25.89,43,0.0 +18624,3,10,11,0.0 +18624,69,36,50,0.0 +18624,58,13.25,49,0.0 +18624,75,7.75,41,0.0 +18624,57,19.5,29,0.0 +18624,70,15,9,0.0 +18624,63,43.9,39,0.0 +18624,45,9.5,4,0.0 +18624,12,38,16,0.0 +18624,20,81,25,0.0 +18625,73,15,24,0.0 +18625,72,34.8,6,0.0 +18625,11,21,3,0.0 +18625,27,43.9,44,0.0 +18625,55,24,47,0.0 +18625,62,49.3,8,0.0 +18625,32,32,36,0.0 +18625,5,21.35,49,0.0 +18625,63,43.9,36,0.0 +18625,10,31,18,0.0 +18625,38,263.5,34,0.0 +18625,8,40,44,0.0 +18625,70,15,20,0.0 +18626,14,23.25,3,0.0 +18626,68,12.5,25,0.0 +18626,39,18,16,0.0 +18626,76,18,1,0.0 +18626,60,34,29,0.0 +18626,24,4.5,26,0.0 +18626,75,7.75,37,0.0 +18626,34,14,15,0.0 +18626,12,38,36,0.0 +18626,18,62.5,32,0.0 +18626,51,53,50,0.0 +18626,19,9.2,26,0.0 +18626,71,21.5,5,0.0 +18626,32,32,23,0.0 +18626,46,12,23,0.0 +18627,23,9,5,0.0 +18627,38,263.5,44,0.0 +18627,21,10,38,0.0 +18627,32,32,25,0.0 +18627,1,18,42,0.0 +18627,68,12.5,33,0.0 +18627,16,17.45,19,0.0 +18627,3,10,46,0.0 +18627,56,38,11,0.0 +18627,70,15,7,0.0 +18627,45,9.5,48,0.0 +18627,8,40,9,0.0 +18627,19,9.2,47,0.0 +18627,54,7.45,26,0.0 +18627,22,21,8,0.0 +18627,73,15,30,0.0 +18627,62,49.3,19,0.0 +18627,71,21.5,47,0.0 +18627,26,31.23,38,0.0 +18627,53,32.8,15,0.0 +18627,9,97,48,0.0 +18627,33,2.5,33,0.0 +18627,58,13.25,4,0.0 +18627,6,25,24,0.0 +18627,4,22,50,0.0 +18627,10,31,34,0.0 +18627,25,14,24,0.0 +18627,13,6,32,0.0 +18627,60,34,3,0.0 +18627,2,19,44,0.0 +18627,29,123.79,6,0.0 +18627,57,19.5,3,0.0 +18627,55,24,4,0.0 +18627,24,4.5,49,0.0 +18627,5,21.35,45,0.0 +18627,69,36,10,0.0 +18628,14,23.25,49,0.0 +18628,41,9.65,10,0.0 +18628,76,18,23,0.0 +18628,77,13,44,0.0 +18628,52,7,45,0.0 +18628,38,263.5,10,0.0 +18628,51,53,34,0.0 +18628,6,25,39,0.0 +18628,22,21,3,0.0 +18628,32,32,5,0.0 +18628,15,15.5,37,0.0 +18628,7,30,42,0.0 +18628,60,34,19,0.0 +18628,30,25.89,35,0.0 +18628,26,31.23,44,0.0 +18628,65,21.05,29,0.0 +18628,21,10,33,0.0 +18628,18,62.5,37,0.0 +18628,12,38,46,0.0 +18628,63,43.9,2,0.0 +18628,11,21,37,0.0 +18628,33,2.5,27,0.0 +18628,40,18.4,19,0.0 +18628,8,40,11,0.0 +18628,13,6,22,0.0 +18628,70,15,49,0.0 +18628,59,55,45,0.0 +18628,64,33.25,1,0.0 +18628,49,20,30,0.0 +18628,54,7.45,18,0.0 +18628,17,39,21,0.0 +18628,20,81,45,0.0 +18628,73,15,5,0.0 +18629,14,23.25,47,0.0 +18629,57,19.5,28,0.0 +18629,34,14,21,0.0 +18629,12,38,34,0.0 +18629,7,30,49,0.0 +18629,21,10,47,0.0 +18629,76,18,9,0.0 +18629,61,28.5,6,0.0 +18629,64,33.25,49,0.0 +18629,72,34.8,17,0.0 +18629,50,16.25,34,0.0 +18629,10,31,26,0.0 +18629,45,9.5,12,0.0 +18629,15,15.5,4,0.0 +18629,27,43.9,36,0.0 +18629,52,7,36,0.0 +18629,35,18,28,0.0 +18629,30,25.89,4,0.0 +18629,75,7.75,16,0.0 +18629,73,15,22,0.0 +18629,53,32.8,25,0.0 +18629,60,34,21,0.0 +18629,9,97,47,0.0 +18629,74,10,2,0.0 +18629,68,12.5,5,0.0 +18629,47,9.5,26,0.0 +18629,46,12,31,0.0 +18629,5,21.35,27,0.0 +18629,33,2.5,42,0.0 +18629,6,25,10,0.0 +18629,56,38,16,0.0 +18629,4,22,26,0.0 +18629,31,12.5,42,0.0 +18629,36,19,2,0.0 +18629,13,6,24,0.0 +18629,41,9.65,11,0.0 +18629,19,9.2,23,0.0 +18629,18,62.5,3,0.0 +18629,26,31.23,29,0.0 +18629,62,49.3,11,0.0 +18629,54,7.45,16,0.0 +18629,39,18,26,0.0 +18629,11,21,12,0.0 +18629,37,26,5,0.0 +18629,40,18.4,11,0.0 +18629,66,17,30,0.0 +18629,23,9,5,0.0 +18629,32,32,15,0.0 +18629,20,81,35,0.0 +18630,68,12.5,9,0.0 +18630,35,18,40,0.0 +18630,59,55,15,0.0 +18630,10,31,19,0.0 +18630,62,49.3,17,0.0 +18630,66,17,25,0.0 +18630,63,43.9,36,0.0 +18630,60,34,1,0.0 +18630,13,6,38,0.0 +18630,49,20,22,0.0 +18630,45,9.5,32,0.0 +18630,67,14,48,0.0 +18630,58,13.25,38,0.0 +18630,20,81,28,0.0 +18630,42,14,4,0.0 +18630,12,38,35,0.0 +18630,61,28.5,43,0.0 +18630,55,24,27,0.0 +18630,50,16.25,41,0.0 +18630,56,38,3,0.0 +18630,16,17.45,18,0.0 +18630,3,10,8,0.0 +18630,65,21.05,19,0.0 +18630,57,19.5,46,0.0 +18630,27,43.9,6,0.0 +18630,77,13,41,0.0 +18630,41,9.65,21,0.0 +18630,64,33.25,31,0.0 +18630,34,14,39,0.0 +18630,23,9,23,0.0 +18630,8,40,43,0.0 +18630,37,26,42,0.0 +18630,52,7,34,0.0 +18630,1,18,10,0.0 +18630,14,23.25,25,0.0 +18630,28,45.6,6,0.0 +18630,38,263.5,39,0.0 +18630,75,7.75,26,0.0 +18630,4,22,45,0.0 +18630,71,21.5,32,0.0 +18630,36,19,36,0.0 +18630,32,32,17,0.0 +18631,30,25.89,23,0.0 +18631,7,30,47,0.0 +18631,37,26,8,0.0 +18631,22,21,22,0.0 +18631,35,18,42,0.0 +18631,9,97,25,0.0 +18631,45,9.5,16,0.0 +18631,28,45.6,33,0.0 +18631,32,32,4,0.0 +18631,26,31.23,30,0.0 +18631,18,62.5,23,0.0 +18631,27,43.9,43,0.0 +18631,42,14,32,0.0 +18631,38,263.5,1,0.0 +18631,63,43.9,22,0.0 +18631,48,12.75,2,0.0 +18631,41,9.65,4,0.0 +18631,49,20,23,0.0 +18631,23,9,6,0.0 +18631,29,123.79,33,0.0 +18631,43,46,49,0.0 +18631,75,7.75,46,0.0 +18631,34,14,46,0.0 +18631,16,17.45,20,0.0 +18631,39,18,18,0.0 +18631,56,38,8,0.0 +18631,47,9.5,29,0.0 +18631,21,10,2,0.0 +18631,2,19,19,0.0 +18631,6,25,24,0.0 +18631,15,15.5,8,0.0 +18631,25,14,25,0.0 +18631,20,81,42,0.0 +18631,13,6,6,0.0 +18631,8,40,21,0.0 +18631,19,9.2,49,0.0 +18631,62,49.3,6,0.0 +18631,74,10,3,0.0 +18632,35,18,50,0.0 +18632,13,6,23,0.0 +18632,37,26,16,0.0 +18632,29,123.79,45,0.0 +18632,67,14,22,0.0 +18632,25,14,32,0.0 +18633,4,22,12,0.0 +18633,5,21.35,4,0.0 +18633,57,19.5,25,0.0 +18633,19,9.2,7,0.0 +18633,52,7,22,0.0 +18633,40,18.4,11,0.0 +18633,77,13,6,0.0 +18633,21,10,29,0.0 +18633,47,9.5,20,0.0 +18633,46,12,26,0.0 +18633,54,7.45,16,0.0 +18633,27,43.9,5,0.0 +18633,76,18,32,0.0 +18633,69,36,30,0.0 +18633,20,81,50,0.0 +18633,49,20,11,0.0 +18633,67,14,24,0.0 +18633,30,25.89,11,0.0 +18633,64,33.25,42,0.0 +18633,15,15.5,37,0.0 +18633,75,7.75,7,0.0 +18633,37,26,2,0.0 +18633,31,12.5,10,0.0 +18633,2,19,5,0.0 +18633,45,9.5,7,0.0 +18633,59,55,43,0.0 +18633,35,18,7,0.0 +18633,70,15,17,0.0 +18633,9,97,7,0.0 +18633,63,43.9,5,0.0 +18633,14,23.25,7,0.0 +18634,57,19.5,42,0.0 +18634,13,6,47,0.0 +18634,61,28.5,5,0.0 +18634,58,13.25,42,0.0 +18634,34,14,8,0.0 +18634,47,9.5,4,0.0 +18634,76,18,34,0.0 +18634,48,12.75,2,0.0 +18634,39,18,41,0.0 +18634,4,22,47,0.0 +18634,46,12,29,0.0 +18634,71,21.5,50,0.0 +18634,22,21,42,0.0 +18634,11,21,25,0.0 +18634,70,15,32,0.0 +18634,32,32,17,0.0 +18634,49,20,46,0.0 +18634,5,21.35,25,0.0 +18634,30,25.89,20,0.0 +18634,8,40,45,0.0 +18634,36,19,38,0.0 +18634,66,17,49,0.0 +18634,15,15.5,16,0.0 +18634,59,55,38,0.0 +18634,41,9.65,12,0.0 +18634,43,46,16,0.0 +18634,35,18,32,0.0 +18634,9,97,50,0.0 +18634,54,7.45,16,0.0 +18634,19,9.2,36,0.0 +18634,28,45.6,37,0.0 +18634,73,15,14,0.0 +18634,2,19,50,0.0 +18635,57,19.5,35,0.0 +18635,22,21,49,0.0 +18635,21,10,5,0.0 +18635,60,34,1,0.0 +18635,2,19,50,0.0 +18635,4,22,22,0.0 +18636,33,2.5,47,0.0 +18636,22,21,39,0.0 +18636,74,10,21,0.0 +18636,66,17,19,0.0 +18636,21,10,22,0.0 +18636,57,19.5,13,0.0 +18636,49,20,7,0.0 +18636,51,53,43,0.0 +18636,29,123.79,11,0.0 +18636,9,97,3,0.0 +18636,68,12.5,17,0.0 +18636,39,18,46,0.0 +18636,4,22,34,0.0 +18636,70,15,41,0.0 +18636,26,31.23,44,0.0 +18636,63,43.9,7,0.0 +18636,1,18,4,0.0 +18636,5,21.35,32,0.0 +18636,31,12.5,38,0.0 +18636,75,7.75,20,0.0 +18636,2,19,37,0.0 +18636,27,43.9,8,0.0 +18636,8,40,33,0.0 +18636,25,14,5,0.0 +18636,45,9.5,45,0.0 +18636,16,17.45,4,0.0 +18636,17,39,40,0.0 +18636,13,6,12,0.0 +18636,20,81,50,0.0 +18636,56,38,36,0.0 +18637,52,7,25,0.0 +18638,20,81,7,0.0 +18638,45,9.5,49,0.0 +18638,19,9.2,12,0.0 +18638,52,7,16,0.0 +18638,75,7.75,46,0.0 +18638,55,24,22,0.0 +18638,39,18,23,0.0 +18638,71,21.5,50,0.0 +18638,42,14,15,0.0 +18638,56,38,32,0.0 +18638,28,45.6,28,0.0 +18638,48,12.75,3,0.0 +18638,44,19.45,10,0.0 +18638,6,25,24,0.0 +18638,77,13,33,0.0 +18638,3,10,13,0.0 +18638,65,21.05,26,0.0 +18638,76,18,5,0.0 +18638,14,23.25,50,0.0 +18638,22,21,16,0.0 +18638,34,14,41,0.0 +18638,64,33.25,33,0.0 +18638,63,43.9,28,0.0 +18638,8,40,36,0.0 +18638,13,6,49,0.0 +18638,27,43.9,5,0.0 +18638,7,30,31,0.0 +18638,68,12.5,50,0.0 +18638,4,22,48,0.0 +18638,46,12,17,0.0 +18638,50,16.25,6,0.0 +18638,21,10,43,0.0 +18638,25,14,27,0.0 +18638,61,28.5,23,0.0 +18638,43,46,10,0.0 +18638,26,31.23,26,0.0 +18638,1,18,45,0.0 +18638,18,62.5,30,0.0 +18638,9,97,4,0.0 +18638,67,14,45,0.0 +18638,15,15.5,12,0.0 +18638,38,263.5,45,0.0 +18638,74,10,39,0.0 +18638,40,18.4,18,0.0 +18638,59,55,46,0.0 +18638,51,53,33,0.0 +18638,29,123.79,8,0.0 +18638,53,32.8,2,0.0 +18638,23,9,25,0.0 +18638,36,19,31,0.0 +18638,69,36,18,0.0 +18638,60,34,16,0.0 +18638,10,31,10,0.0 +18638,5,21.35,13,0.0 +18638,17,39,3,0.0 +18638,37,26,26,0.0 +18638,31,12.5,47,0.0 +18638,54,7.45,49,0.0 +18638,58,13.25,38,0.0 +18638,11,21,12,0.0 +18638,62,49.3,33,0.0 +18638,73,15,42,0.0 +18638,35,18,12,0.0 +18638,66,17,25,0.0 +18638,70,15,43,0.0 +18638,49,20,40,0.0 +18638,33,2.5,46,0.0 +18638,24,4.5,10,0.0 +18638,41,9.65,49,0.0 +18638,30,25.89,33,0.0 +18638,72,34.8,23,0.0 +18638,12,38,19,0.0 +18639,25,14,41,0.0 +18639,67,14,46,0.0 +18639,8,40,19,0.0 +18639,16,17.45,10,0.0 +18639,1,18,3,0.0 +18639,65,21.05,39,0.0 +18639,28,45.6,48,0.0 +18639,71,21.5,22,0.0 +18639,30,25.89,15,0.0 +18639,64,33.25,37,0.0 +18639,45,9.5,10,0.0 +18639,35,18,40,0.0 +18639,5,21.35,10,0.0 +18639,48,12.75,11,0.0 +18639,31,12.5,17,0.0 +18639,12,38,41,0.0 +18639,27,43.9,47,0.0 +18639,63,43.9,25,0.0 +18639,22,21,29,0.0 +18639,75,7.75,36,0.0 +18639,4,22,41,0.0 +18639,43,46,22,0.0 +18639,11,21,11,0.0 +18639,74,10,24,0.0 +18639,18,62.5,44,0.0 +18639,42,14,33,0.0 +18639,44,19.45,26,0.0 +18639,62,49.3,23,0.0 +18639,14,23.25,34,0.0 +18639,52,7,33,0.0 +18639,24,4.5,16,0.0 +18639,46,12,22,0.0 +18639,58,13.25,13,0.0 +18639,47,9.5,15,0.0 +18639,3,10,20,0.0 +18639,10,31,18,0.0 +18639,66,17,47,0.0 +18639,38,263.5,40,0.0 +18639,26,31.23,33,0.0 +18639,60,34,8,0.0 +18639,70,15,48,0.0 +18639,40,18.4,10,0.0 +18639,29,123.79,24,0.0 +18639,33,2.5,16,0.0 +18639,21,10,22,0.0 +18639,19,9.2,44,0.0 +18639,23,9,42,0.0 +18639,57,19.5,10,0.0 +18639,73,15,32,0.0 +18639,68,12.5,21,0.0 +18639,17,39,23,0.0 +18639,2,19,26,0.0 +18639,41,9.65,43,0.0 +18639,77,13,24,0.0 +18639,51,53,30,0.0 +18639,54,7.45,30,0.0 +18639,37,26,31,0.0 +18639,49,20,14,0.0 +18639,34,14,8,0.0 +18639,50,16.25,25,0.0 +18639,55,24,11,0.0 +18639,39,18,32,0.0 +18639,53,32.8,25,0.0 +18639,61,28.5,34,0.0 +18639,6,25,24,0.0 +18639,72,34.8,19,0.0 +18639,76,18,8,0.0 +18639,56,38,50,0.0 +18639,13,6,21,0.0 +18640,36,19,32,0.0 +18640,53,32.8,33,0.0 +18640,26,31.23,2,0.0 +18640,48,12.75,34,0.0 +18640,32,32,2,0.0 +18640,33,2.5,13,0.0 +18640,76,18,3,0.0 +18640,59,55,47,0.0 +18640,73,15,39,0.0 +18640,70,15,45,0.0 +18640,42,14,37,0.0 +18640,9,97,43,0.0 +18640,68,12.5,6,0.0 +18640,40,18.4,35,0.0 +18640,41,9.65,22,0.0 +18640,72,34.8,38,0.0 +18640,50,16.25,48,0.0 +18640,71,21.5,35,0.0 +18640,66,17,38,0.0 +18640,23,9,43,0.0 +18640,67,14,47,0.0 +18640,51,53,3,0.0 +18640,29,123.79,50,0.0 +18640,34,14,27,0.0 +18640,22,21,43,0.0 +18640,20,81,43,0.0 +18640,37,26,25,0.0 +18640,21,10,27,0.0 +18640,49,20,23,0.0 +18640,11,21,34,0.0 +18640,45,9.5,20,0.0 +18640,7,30,34,0.0 +18640,58,13.25,33,0.0 +18640,75,7.75,39,0.0 +18640,43,46,2,0.0 +18640,52,7,9,0.0 +18640,63,43.9,22,0.0 +18640,17,39,5,0.0 +18640,31,12.5,37,0.0 +18640,46,12,10,0.0 +18640,28,45.6,12,0.0 +18640,62,49.3,34,0.0 +18640,65,21.05,18,0.0 +18640,16,17.45,48,0.0 +18640,3,10,14,0.0 +18640,57,19.5,47,0.0 +18640,13,6,50,0.0 +18640,4,22,26,0.0 +18640,12,38,3,0.0 +18640,6,25,28,0.0 +18640,56,38,44,0.0 +18641,46,12,39,0.0 +18642,28,45.6,46,0.0 +18642,42,14,33,0.0 +18642,50,16.25,26,0.0 +18642,29,123.79,2,0.0 +18642,56,38,12,0.0 +18642,27,43.9,7,0.0 +18642,66,17,33,0.0 +18642,60,34,33,0.0 +18642,38,263.5,20,0.0 +18642,69,36,44,0.0 +18642,21,10,21,0.0 +18642,20,81,39,0.0 +18642,48,12.75,2,0.0 +18642,34,14,35,0.0 +18642,13,6,31,0.0 +18642,8,40,28,0.0 +18642,30,25.89,27,0.0 +18642,33,2.5,12,0.0 +18642,55,24,32,0.0 +18642,68,12.5,35,0.0 +18642,53,32.8,21,0.0 +18642,9,97,29,0.0 +18642,2,19,45,0.0 +18642,22,21,48,0.0 +18642,24,4.5,2,0.0 +18643,39,18,1,0.0 +18643,30,25.89,31,0.0 +18643,14,23.25,48,0.0 +18643,38,263.5,31,0.0 +18643,13,6,2,0.0 +18643,3,10,33,0.0 +18643,51,53,32,0.0 +18643,42,14,13,0.0 +18643,4,22,50,0.0 +18643,43,46,30,0.0 +18643,63,43.9,38,0.0 +18643,67,14,40,0.0 +18643,31,12.5,6,0.0 +18643,23,9,38,0.0 +18643,33,2.5,8,0.0 +18643,28,45.6,16,0.0 +18643,27,43.9,47,0.0 +18643,22,21,49,0.0 +18643,18,62.5,38,0.0 +18643,5,21.35,20,0.0 +18643,19,9.2,44,0.0 +18643,24,4.5,50,0.0 +18643,49,20,16,0.0 +18643,46,12,9,0.0 +18643,56,38,27,0.0 +18643,52,7,36,0.0 +18643,12,38,32,0.0 +18643,26,31.23,46,0.0 +18643,48,12.75,32,0.0 +18643,55,24,28,0.0 +18643,29,123.79,42,0.0 +18643,36,19,17,0.0 +18643,72,34.8,16,0.0 +18643,64,33.25,12,0.0 +18643,2,19,50,0.0 +18643,54,7.45,31,0.0 +18643,11,21,35,0.0 +18643,32,32,8,0.0 +18643,58,13.25,38,0.0 +18644,38,263.5,4,0.0 +18644,69,36,47,0.0 +18645,9,97,25,0.0 +18645,63,43.9,41,0.0 +18645,46,12,21,0.0 +18645,55,24,13,0.0 +18645,24,4.5,35,0.0 +18645,31,12.5,30,0.0 +18645,18,62.5,41,0.0 +18645,28,45.6,15,0.0 +18645,33,2.5,7,0.0 +18645,49,20,35,0.0 +18645,26,31.23,15,0.0 +18645,71,21.5,19,0.0 +18645,60,34,15,0.0 +18645,76,18,50,0.0 +18645,70,15,27,0.0 +18645,21,10,47,0.0 +18645,67,14,18,0.0 +18645,22,21,24,0.0 +18645,50,16.25,8,0.0 +18645,56,38,22,0.0 +18645,48,12.75,6,0.0 +18645,57,19.5,26,0.0 +18645,30,25.89,39,0.0 +18645,32,32,19,0.0 +18645,35,18,35,0.0 +18645,10,31,34,0.0 +18645,75,7.75,23,0.0 +18646,62,49.3,46,0.0 +18646,71,21.5,36,0.0 +18646,3,10,42,0.0 +18646,12,38,13,0.0 +18646,64,33.25,10,0.0 +18646,58,13.25,30,0.0 +18646,44,19.45,6,0.0 +18646,69,36,35,0.0 +18646,43,46,32,0.0 +18646,56,38,5,0.0 +18646,67,14,41,0.0 +18646,28,45.6,20,0.0 +18646,65,21.05,32,0.0 +18646,6,25,35,0.0 +18646,34,14,3,0.0 +18646,50,16.25,14,0.0 +18646,41,9.65,10,0.0 +18646,77,13,5,0.0 +18646,7,30,10,0.0 +18646,54,7.45,30,0.0 +18646,14,23.25,36,0.0 +18646,49,20,39,0.0 +18646,45,9.5,49,0.0 +18646,74,10,7,0.0 +18646,59,55,43,0.0 +18646,2,19,39,0.0 +18646,20,81,14,0.0 +18646,66,17,33,0.0 +18646,75,7.75,29,0.0 +18646,53,32.8,18,0.0 +18646,38,263.5,48,0.0 +18646,48,12.75,6,0.0 +18646,24,4.5,44,0.0 +18646,42,14,28,0.0 +18646,11,21,5,0.0 +18646,10,31,21,0.0 +18646,23,9,25,0.0 +18646,36,19,2,0.0 +18646,76,18,14,0.0 +18646,8,40,46,0.0 +18646,57,19.5,33,0.0 +18646,37,26,17,0.0 +18646,17,39,49,0.0 +18646,5,21.35,6,0.0 +18646,13,6,15,0.0 +18646,72,34.8,21,0.0 +18646,4,22,40,0.0 +18646,35,18,13,0.0 +18646,61,28.5,16,0.0 +18646,40,18.4,16,0.0 +18646,55,24,15,0.0 +18646,52,7,38,0.0 +18646,60,34,32,0.0 +18646,16,17.45,17,0.0 +18646,25,14,8,0.0 +18646,32,32,7,0.0 +18646,18,62.5,50,0.0 +18646,15,15.5,34,0.0 +18647,18,62.5,46,0.0 +18647,51,53,11,0.0 +18647,73,15,14,0.0 +18647,66,17,37,0.0 +18647,27,43.9,23,0.0 +18647,43,46,43,0.0 +18647,75,7.75,27,0.0 +18647,36,19,32,0.0 +18647,65,21.05,19,0.0 +18647,26,31.23,37,0.0 +18647,69,36,3,0.0 +18647,46,12,46,0.0 +18647,2,19,48,0.0 +18647,58,13.25,29,0.0 +18647,48,12.75,44,0.0 +18647,53,32.8,10,0.0 +18647,68,12.5,13,0.0 +18647,59,55,2,0.0 +18647,33,2.5,43,0.0 +18647,56,38,40,0.0 +18647,52,7,34,0.0 +18647,55,24,48,0.0 +18647,49,20,44,0.0 +18647,32,32,23,0.0 +18647,30,25.89,12,0.0 +18647,60,34,8,0.0 +18647,74,10,9,0.0 +18647,11,21,12,0.0 +18647,39,18,29,0.0 +18647,54,7.45,24,0.0 +18647,72,34.8,27,0.0 +18647,44,19.45,20,0.0 +18647,19,9.2,38,0.0 +18647,67,14,37,0.0 +18647,22,21,6,0.0 +18647,76,18,7,0.0 +18647,8,40,29,0.0 +18647,14,23.25,48,0.0 +18647,42,14,16,0.0 +18647,6,25,13,0.0 +18647,38,263.5,50,0.0 +18647,3,10,11,0.0 +18647,5,21.35,34,0.0 +18647,16,17.45,37,0.0 +18647,64,33.25,25,0.0 +18647,9,97,35,0.0 +18647,29,123.79,33,0.0 +18647,57,19.5,25,0.0 +18647,63,43.9,9,0.0 +18647,37,26,15,0.0 +18647,71,21.5,13,0.0 +18647,45,9.5,46,0.0 +18647,28,45.6,40,0.0 +18647,40,18.4,6,0.0 +18647,4,22,2,0.0 +18647,41,9.65,37,0.0 +18648,60,34,33,0.0 +18648,27,43.9,9,0.0 +18648,68,12.5,37,0.0 +18648,28,45.6,13,0.0 +18648,63,43.9,1,0.0 +18648,3,10,38,0.0 +18648,39,18,14,0.0 +18648,53,32.8,18,0.0 +18648,25,14,32,0.0 +18649,1,18,23,0.0 +18649,73,15,48,0.0 +18649,63,43.9,49,0.0 +18649,66,17,22,0.0 +18649,54,7.45,45,0.0 +18649,6,25,32,0.0 +18649,15,15.5,3,0.0 +18649,39,18,15,0.0 +18649,16,17.45,36,0.0 +18649,58,13.25,36,0.0 +18649,77,13,22,0.0 +18649,71,21.5,3,0.0 +18649,9,97,49,0.0 +18649,5,21.35,12,0.0 +18649,32,32,19,0.0 +18649,48,12.75,38,0.0 +18649,42,14,3,0.0 +18649,59,55,14,0.0 +18649,35,18,12,0.0 +18649,68,12.5,15,0.0 +18649,22,21,40,0.0 +18649,76,18,16,0.0 +18649,26,31.23,36,0.0 +18649,72,34.8,3,0.0 +18649,2,19,10,0.0 +18649,28,45.6,12,0.0 +18649,30,25.89,20,0.0 +18649,10,31,26,0.0 +18649,52,7,5,0.0 +18649,60,34,24,0.0 +18649,12,38,26,0.0 +18649,69,36,37,0.0 +18649,8,40,43,0.0 +18649,62,49.3,33,0.0 +18649,20,81,34,0.0 +18649,43,46,34,0.0 +18649,19,9.2,41,0.0 +18649,25,14,37,0.0 +18649,29,123.79,1,0.0 +18649,23,9,28,0.0 +18649,45,9.5,17,0.0 +18649,65,21.05,11,0.0 +18649,36,19,24,0.0 +18649,50,16.25,16,0.0 +18649,11,21,28,0.0 +18649,3,10,36,0.0 +18649,61,28.5,37,0.0 +18649,55,24,10,0.0 +18649,4,22,15,0.0 +18649,74,10,41,0.0 +18649,46,12,12,0.0 +18649,14,23.25,20,0.0 +18649,41,9.65,11,0.0 +18649,53,32.8,49,0.0 +18649,27,43.9,47,0.0 +18649,7,30,2,0.0 +18649,37,26,23,0.0 +18649,75,7.75,9,0.0 +18649,21,10,10,0.0 +18649,64,33.25,29,0.0 +18649,57,19.5,11,0.0 +18649,56,38,48,0.0 +18649,13,6,9,0.0 +18649,49,20,6,0.0 +18649,47,9.5,30,0.0 +18649,31,12.5,1,0.0 +18649,67,14,26,0.0 +18649,24,4.5,2,0.0 +18649,17,39,5,0.0 +18649,33,2.5,9,0.0 +18649,18,62.5,38,0.0 +18649,70,15,50,0.0 +18649,44,19.45,32,0.0 +18649,40,18.4,24,0.0 +18650,22,21,28,0.0 +18651,19,9.2,5,0.0 +18651,13,6,35,0.0 +18651,60,34,31,0.0 +18651,40,18.4,35,0.0 +18651,4,22,49,0.0 +18651,43,46,4,0.0 +18651,42,14,34,0.0 +18651,68,12.5,15,0.0 +18651,2,19,37,0.0 +18651,11,21,1,0.0 +18651,29,123.79,47,0.0 +18651,15,15.5,34,0.0 +18651,74,10,24,0.0 +18651,17,39,21,0.0 +18651,61,28.5,32,0.0 +18651,32,32,26,0.0 +18651,62,49.3,28,0.0 +18651,58,13.25,6,0.0 +18651,54,7.45,13,0.0 +18651,59,55,10,0.0 +18651,25,14,3,0.0 +18651,24,4.5,25,0.0 +18651,72,34.8,18,0.0 +18651,21,10,18,0.0 +18651,65,21.05,29,0.0 +18651,73,15,41,0.0 +18651,3,10,28,0.0 +18651,9,97,21,0.0 +18651,47,9.5,48,0.0 +18651,46,12,28,0.0 +18651,51,53,14,0.0 +18651,71,21.5,24,0.0 +18651,57,19.5,32,0.0 +18651,64,33.25,8,0.0 +18651,75,7.75,43,0.0 +18651,26,31.23,2,0.0 +18651,52,7,10,0.0 +18651,76,18,36,0.0 +18651,50,16.25,26,0.0 +18651,8,40,39,0.0 +18651,20,81,19,0.0 +18652,74,10,2,0.0 +18652,23,9,47,0.0 +18652,77,13,34,0.0 +18652,73,15,27,0.0 +18652,63,43.9,21,0.0 +18652,9,97,36,0.0 +18652,1,18,42,0.0 +18652,16,17.45,31,0.0 +18652,15,15.5,15,0.0 +18652,56,38,31,0.0 +18652,43,46,25,0.0 +18652,75,7.75,12,0.0 +18652,17,39,7,0.0 +18652,76,18,25,0.0 +18652,29,123.79,50,0.0 +18652,13,6,28,0.0 +18652,42,14,14,0.0 +18652,33,2.5,26,0.0 +18652,6,25,38,0.0 +18652,40,18.4,41,0.0 +18652,41,9.65,27,0.0 +18652,44,19.45,20,0.0 +18652,27,43.9,1,0.0 +18652,22,21,13,0.0 +18652,68,12.5,42,0.0 +18652,18,62.5,16,0.0 +18652,57,19.5,39,0.0 +18652,70,15,43,0.0 +18652,66,17,13,0.0 +18652,71,21.5,1,0.0 +18652,11,21,18,0.0 +18652,47,9.5,20,0.0 +18652,28,45.6,38,0.0 +18652,54,7.45,2,0.0 +18652,32,32,5,0.0 +18652,61,28.5,21,0.0 +18652,14,23.25,23,0.0 +18652,7,30,10,0.0 +18652,35,18,18,0.0 +18652,72,34.8,29,0.0 +18652,2,19,22,0.0 +18652,39,18,19,0.0 +18652,64,33.25,36,0.0 +18652,46,12,28,0.0 +18652,10,31,31,0.0 +18652,45,9.5,8,0.0 +18652,69,36,13,0.0 +18652,5,21.35,4,0.0 +18652,37,26,7,0.0 +18652,30,25.89,48,0.0 +18652,48,12.75,30,0.0 +18652,20,81,30,0.0 +18652,4,22,6,0.0 +18652,59,55,26,0.0 +18653,57,19.5,3,0.0 +18653,69,36,17,0.0 +18653,77,13,20,0.0 +18653,53,32.8,9,0.0 +18653,9,97,44,0.0 +18653,58,13.25,25,0.0 +18653,61,28.5,31,0.0 +18653,47,9.5,10,0.0 +18653,55,24,3,0.0 +18653,70,15,36,0.0 +18653,15,15.5,45,0.0 +18653,8,40,26,0.0 +18654,12,38,41,0.0 +18654,48,12.75,48,0.0 +18654,49,20,6,0.0 +18654,76,18,29,0.0 +18654,55,24,20,0.0 +18654,36,19,35,0.0 +18654,50,16.25,10,0.0 +18654,61,28.5,44,0.0 +18654,30,25.89,11,0.0 +18654,43,46,6,0.0 +18654,7,30,9,0.0 +18654,27,43.9,2,0.0 +18654,53,32.8,22,0.0 +18654,13,6,38,0.0 +18654,45,9.5,4,0.0 +18654,20,81,12,0.0 +18654,32,32,46,0.0 +18654,33,2.5,14,0.0 +18654,6,25,9,0.0 +18654,69,36,3,0.0 +18654,56,38,42,0.0 +18654,71,21.5,17,0.0 +18654,60,34,31,0.0 +18654,73,15,38,0.0 +18654,4,22,35,0.0 +18654,63,43.9,5,0.0 +18654,46,12,12,0.0 +18654,5,21.35,8,0.0 +18654,22,21,37,0.0 +18654,68,12.5,1,0.0 +18654,39,18,50,0.0 +18654,34,14,47,0.0 +18654,19,9.2,2,0.0 +18654,26,31.23,15,0.0 +18654,29,123.79,43,0.0 +18654,11,21,34,0.0 +18655,45,9.5,13,0.0 +18655,48,12.75,41,0.0 +18655,4,22,28,0.0 +18655,3,10,27,0.0 +18655,2,19,9,0.0 +18655,38,263.5,6,0.0 +18655,21,10,38,0.0 +18655,20,81,7,0.0 +18655,33,2.5,27,0.0 +18655,64,33.25,31,0.0 +18655,31,12.5,41,0.0 +18655,9,97,22,0.0 +18655,18,62.5,25,0.0 +18655,60,34,36,0.0 +18655,19,9.2,45,0.0 +18655,47,9.5,23,0.0 +18655,11,21,15,0.0 +18655,29,123.79,2,0.0 +18655,42,14,26,0.0 +18655,72,34.8,39,0.0 +18655,36,19,1,0.0 +18655,27,43.9,45,0.0 +18655,1,18,16,0.0 +18655,25,14,48,0.0 +18655,7,30,34,0.0 +18655,56,38,36,0.0 +18655,44,19.45,40,0.0 +18655,34,14,34,0.0 +18655,43,46,30,0.0 +18655,59,55,12,0.0 +18655,63,43.9,12,0.0 +18655,30,25.89,36,0.0 +18655,58,13.25,27,0.0 +18655,54,7.45,1,0.0 +18655,12,38,42,0.0 +18655,73,15,33,0.0 +18655,17,39,3,0.0 +18655,32,32,6,0.0 +18655,52,7,33,0.0 +18656,45,9.5,35,0.0 +18656,20,81,48,0.0 +18656,56,38,9,0.0 +18656,57,19.5,49,0.0 +18656,9,97,27,0.0 +18656,6,25,40,0.0 +18656,30,25.89,39,0.0 +18656,11,21,46,0.0 +18656,13,6,17,0.0 +18656,70,15,40,0.0 +18656,24,4.5,17,0.0 +18656,32,32,6,0.0 +18656,38,263.5,1,0.0 +18656,48,12.75,47,0.0 +18656,15,15.5,45,0.0 +18656,14,23.25,16,0.0 +18656,55,24,17,0.0 +18656,62,49.3,26,0.0 +18657,28,45.6,50,0.0 +18657,16,17.45,7,0.0 +18657,52,7,46,0.0 +18657,26,31.23,11,0.0 +18657,43,46,43,0.0 +18657,11,21,1,0.0 +18657,61,28.5,12,0.0 +18657,50,16.25,25,0.0 +18657,36,19,29,0.0 +18657,34,14,23,0.0 +18657,58,13.25,46,0.0 +18657,8,40,10,0.0 +18657,9,97,46,0.0 +18657,48,12.75,18,0.0 +18657,13,6,17,0.0 +18657,33,2.5,31,0.0 +18657,66,17,16,0.0 +18657,60,34,1,0.0 +18657,22,21,44,0.0 +18657,74,10,36,0.0 +18657,73,15,36,0.0 +18657,35,18,38,0.0 +18657,24,4.5,9,0.0 +18657,65,21.05,49,0.0 +18657,38,263.5,28,0.0 +18657,44,19.45,33,0.0 +18657,18,62.5,49,0.0 +18657,14,23.25,29,0.0 +18657,64,33.25,9,0.0 +18657,51,53,36,0.0 +18657,25,14,15,0.0 +18657,5,21.35,4,0.0 +18657,4,22,21,0.0 +18657,53,32.8,30,0.0 +18657,55,24,19,0.0 +18657,12,38,22,0.0 +18657,69,36,23,0.0 +18657,10,31,4,0.0 +18657,67,14,2,0.0 +18657,32,32,5,0.0 +18657,71,21.5,31,0.0 +18657,72,34.8,21,0.0 +18657,42,14,6,0.0 +18657,3,10,37,0.0 +18657,1,18,22,0.0 +18657,68,12.5,12,0.0 +18657,54,7.45,5,0.0 +18657,62,49.3,38,0.0 +18657,30,25.89,28,0.0 +18657,31,12.5,14,0.0 +18657,56,38,20,0.0 +18657,29,123.79,27,0.0 +18657,21,10,50,0.0 +18658,47,9.5,43,0.0 +18658,53,32.8,43,0.0 +18658,2,19,45,0.0 +18658,22,21,23,0.0 +18658,28,45.6,7,0.0 +18658,20,81,42,0.0 +18658,51,53,38,0.0 +18658,33,2.5,30,0.0 +18658,59,55,1,0.0 +18658,49,20,31,0.0 +18658,70,15,42,0.0 +18658,60,34,39,0.0 +18658,32,32,19,0.0 +18659,73,15,36,0.0 +18659,35,18,36,0.0 +18659,1,18,47,0.0 +18659,75,7.75,19,0.0 +18659,41,9.65,33,0.0 +18659,64,33.25,38,0.0 +18659,12,38,18,0.0 +18659,28,45.6,13,0.0 +18659,15,15.5,9,0.0 +18659,23,9,46,0.0 +18659,26,31.23,26,0.0 +18659,5,21.35,41,0.0 +18659,56,38,29,0.0 +18659,17,39,49,0.0 +18659,22,21,8,0.0 +18659,46,12,50,0.0 +18659,52,7,21,0.0 +18660,26,31.23,38,0.0 +18660,11,21,28,0.0 +18660,41,9.65,24,0.0 +18660,36,19,1,0.0 +18660,53,32.8,18,0.0 +18660,75,7.75,34,0.0 +18660,66,17,50,0.0 +18660,31,12.5,20,0.0 +18660,20,81,8,0.0 +18660,15,15.5,6,0.0 +18660,34,14,45,0.0 +18660,38,263.5,45,0.0 +18660,51,53,44,0.0 +18660,17,39,25,0.0 +18660,69,36,7,0.0 +18660,61,28.5,35,0.0 +18660,58,13.25,42,0.0 +18660,21,10,42,0.0 +18660,57,19.5,6,0.0 +18660,8,40,5,0.0 +18660,39,18,27,0.0 +18660,44,19.45,5,0.0 +18660,54,7.45,49,0.0 +18660,29,123.79,29,0.0 +18660,73,15,27,0.0 +18660,37,26,10,0.0 +18660,27,43.9,13,0.0 +18660,42,14,43,0.0 +18660,47,9.5,45,0.0 +18660,32,32,27,0.0 +18660,59,55,46,0.0 +18660,74,10,21,0.0 +18660,40,18.4,13,0.0 +18660,22,21,39,0.0 +18660,67,14,18,0.0 +18660,45,9.5,4,0.0 +18660,5,21.35,1,0.0 +18660,7,30,6,0.0 +18660,64,33.25,19,0.0 +18660,28,45.6,20,0.0 +18660,23,9,12,0.0 +18660,46,12,45,0.0 +18660,10,31,5,0.0 +18660,13,6,41,0.0 +18660,12,38,29,0.0 +18660,19,9.2,21,0.0 +18660,60,34,15,0.0 +18660,71,21.5,2,0.0 +18660,49,20,45,0.0 +18660,1,18,49,0.0 +18661,37,26,15,0.0 +18661,68,12.5,1,0.0 +18661,54,7.45,27,0.0 +18661,48,12.75,31,0.0 +18661,74,10,48,0.0 +18661,14,23.25,20,0.0 +18661,10,31,1,0.0 +18661,42,14,42,0.0 +18661,13,6,40,0.0 +18661,56,38,22,0.0 +18661,16,17.45,7,0.0 +18661,5,21.35,49,0.0 +18661,72,34.8,15,0.0 +18661,19,9.2,24,0.0 +18661,46,12,49,0.0 +18661,52,7,29,0.0 +18661,7,30,7,0.0 +18661,6,25,50,0.0 +18661,32,32,47,0.0 +18661,11,21,29,0.0 +18661,39,18,34,0.0 +18661,51,53,26,0.0 +18661,41,9.65,27,0.0 +18661,20,81,32,0.0 +18661,50,16.25,48,0.0 +18662,2,19,37,0.0 +18662,50,16.25,7,0.0 +18662,45,9.5,6,0.0 +18662,19,9.2,40,0.0 +18662,41,9.65,32,0.0 +18662,59,55,37,0.0 +18662,63,43.9,11,0.0 +18662,32,32,34,0.0 +18662,12,38,25,0.0 +18662,40,18.4,47,0.0 +18662,24,4.5,21,0.0 +18662,69,36,19,0.0 +18663,48,12.75,41,0.0 +18664,43,46,40,0.0 +18664,60,34,10,0.0 +18664,34,14,46,0.0 +18664,13,6,13,0.0 +18664,53,32.8,45,0.0 +18664,27,43.9,16,0.0 +18664,74,10,23,0.0 +18664,57,19.5,32,0.0 +18664,50,16.25,23,0.0 +18664,26,31.23,2,0.0 +18664,69,36,16,0.0 +18664,63,43.9,31,0.0 +18664,39,18,49,0.0 +18664,42,14,44,0.0 +18664,9,97,27,0.0 +18664,10,31,4,0.0 +18664,44,19.45,49,0.0 +18664,21,10,14,0.0 +18664,51,53,18,0.0 +18664,29,123.79,49,0.0 +18664,28,45.6,49,0.0 +18664,71,21.5,24,0.0 +18664,64,33.25,19,0.0 +18664,17,39,25,0.0 +18664,77,13,17,0.0 +18664,31,12.5,16,0.0 +18664,24,4.5,23,0.0 +18664,48,12.75,21,0.0 +18664,49,20,45,0.0 +18664,40,18.4,5,0.0 +18664,1,18,16,0.0 +18664,68,12.5,10,0.0 +18664,11,21,27,0.0 +18664,54,7.45,44,0.0 +18664,61,28.5,2,0.0 +18664,52,7,33,0.0 +18664,62,49.3,12,0.0 +18664,25,14,8,0.0 +18664,73,15,16,0.0 +18664,18,62.5,16,0.0 +18664,14,23.25,11,0.0 +18664,30,25.89,38,0.0 +18664,2,19,35,0.0 +18664,32,32,22,0.0 +18664,67,14,44,0.0 +18664,55,24,44,0.0 +18664,4,22,7,0.0 +18664,7,30,2,0.0 +18664,33,2.5,19,0.0 +18664,59,55,32,0.0 +18664,70,15,47,0.0 +18664,20,81,32,0.0 +18664,19,9.2,48,0.0 +18664,46,12,17,0.0 +18664,45,9.5,31,0.0 +18664,41,9.65,31,0.0 +18664,38,263.5,24,0.0 +18664,75,7.75,19,0.0 +18664,22,21,34,0.0 +18664,58,13.25,45,0.0 +18664,15,15.5,42,0.0 +18664,12,38,39,0.0 +18664,16,17.45,2,0.0 +18664,23,9,39,0.0 +18664,65,21.05,49,0.0 +18664,76,18,33,0.0 +18664,36,19,33,0.0 +18664,72,34.8,22,0.0 +18664,5,21.35,40,0.0 +18665,35,18,10,0.0 +18665,19,9.2,50,0.0 +18665,49,20,9,0.0 +18665,66,17,21,0.0 +18665,54,7.45,32,0.0 +18665,59,55,12,0.0 +18665,52,7,32,0.0 +18665,42,14,21,0.0 +18665,77,13,20,0.0 +18665,41,9.65,21,0.0 +18665,10,31,35,0.0 +18665,34,14,25,0.0 +18666,51,53,50,0.0 +18666,43,46,27,0.0 +18666,10,31,2,0.0 +18666,41,9.65,24,0.0 +18666,17,39,9,0.0 +18666,53,32.8,32,0.0 +18666,69,36,25,0.0 +18666,28,45.6,24,0.0 +18666,22,21,6,0.0 +18666,67,14,21,0.0 +18666,50,16.25,23,0.0 +18666,39,18,31,0.0 +18666,60,34,1,0.0 +18666,75,7.75,37,0.0 +18666,6,25,9,0.0 +18666,59,55,29,0.0 +18666,58,13.25,49,0.0 +18666,29,123.79,49,0.0 +18666,16,17.45,36,0.0 +18666,65,21.05,43,0.0 +18666,33,2.5,12,0.0 +18666,27,43.9,25,0.0 +18666,23,9,12,0.0 +18666,8,40,6,0.0 +18666,34,14,4,0.0 +18666,72,34.8,28,0.0 +18666,1,18,25,0.0 +18666,70,15,50,0.0 +18666,36,19,37,0.0 +18666,55,24,10,0.0 +18666,45,9.5,49,0.0 +18666,46,12,24,0.0 +18666,7,30,46,0.0 +18666,73,15,47,0.0 +18666,77,13,21,0.0 +18666,71,21.5,31,0.0 +18666,32,32,31,0.0 +18666,52,7,29,0.0 +18666,15,15.5,25,0.0 +18666,31,12.5,31,0.0 +18666,47,9.5,43,0.0 +18666,11,21,9,0.0 +18666,4,22,29,0.0 +18666,68,12.5,47,0.0 +18666,2,19,42,0.0 +18666,26,31.23,23,0.0 +18666,13,6,31,0.0 +18666,38,263.5,16,0.0 +18666,54,7.45,9,0.0 +18666,19,9.2,50,0.0 +18666,66,17,10,0.0 +18666,76,18,3,0.0 +18666,35,18,27,0.0 +18666,42,14,28,0.0 +18666,24,4.5,15,0.0 +18666,3,10,8,0.0 +18666,21,10,43,0.0 +18666,48,12.75,28,0.0 +18666,25,14,27,0.0 +18666,57,19.5,29,0.0 +18666,64,33.25,42,0.0 +18666,18,62.5,31,0.0 +18666,56,38,38,0.0 +18666,61,28.5,39,0.0 +18666,14,23.25,34,0.0 +18666,37,26,50,0.0 +18666,12,38,2,0.0 +18666,44,19.45,11,0.0 +18666,9,97,24,0.0 +18666,20,81,2,0.0 +18666,40,18.4,40,0.0 +18666,74,10,19,0.0 +18666,5,21.35,50,0.0 +18667,35,18,25,0.0 +18667,32,32,11,0.0 +18667,61,28.5,19,0.0 +18667,36,19,32,0.0 +18667,46,12,43,0.0 +18667,74,10,18,0.0 +18667,41,9.65,10,0.0 +18667,49,20,27,0.0 +18667,69,36,26,0.0 +18667,37,26,18,0.0 +18667,21,10,41,0.0 +18667,59,55,11,0.0 +18667,70,15,49,0.0 +18667,43,46,33,0.0 +18667,9,97,24,0.0 +18667,60,34,24,0.0 +18667,2,19,29,0.0 +18667,66,17,13,0.0 +18667,22,21,15,0.0 +18667,23,9,38,0.0 +18667,48,12.75,29,0.0 +18667,47,9.5,32,0.0 +18667,20,81,10,0.0 +18667,72,34.8,16,0.0 +18667,26,31.23,43,0.0 +18667,15,15.5,19,0.0 +18667,58,13.25,1,0.0 +18667,11,21,39,0.0 +18667,30,25.89,32,0.0 +18667,64,33.25,18,0.0 +18667,73,15,29,0.0 +18667,57,19.5,29,0.0 +18667,3,10,23,0.0 +18667,44,19.45,43,0.0 +18667,54,7.45,10,0.0 +18667,18,62.5,49,0.0 +18667,24,4.5,39,0.0 +18667,71,21.5,1,0.0 +18667,40,18.4,30,0.0 +18667,77,13,22,0.0 +18667,8,40,11,0.0 +18667,28,45.6,44,0.0 +18667,38,263.5,33,0.0 +18667,27,43.9,47,0.0 +18667,63,43.9,39,0.0 +18667,34,14,44,0.0 +18667,12,38,15,0.0 +18667,14,23.25,50,0.0 +18667,53,32.8,29,0.0 +18667,51,53,40,0.0 +18667,6,25,25,0.0 +18667,29,123.79,10,0.0 +18667,31,12.5,41,0.0 +18667,19,9.2,44,0.0 +18667,55,24,5,0.0 +18667,7,30,50,0.0 +18667,39,18,30,0.0 +18667,10,31,9,0.0 +18667,56,38,1,0.0 +18667,65,21.05,46,0.0 +18667,76,18,21,0.0 +18667,68,12.5,41,0.0 +18667,5,21.35,50,0.0 +18667,42,14,38,0.0 +18667,16,17.45,29,0.0 +18668,40,18.4,23,0.0 +18668,52,7,23,0.0 +18668,2,19,28,0.0 +18668,34,14,28,0.0 +18668,57,19.5,1,0.0 +18668,48,12.75,27,0.0 +18668,65,21.05,27,0.0 +18668,8,40,4,0.0 +18668,77,13,21,0.0 +18668,29,123.79,23,0.0 +18668,61,28.5,40,0.0 +18668,30,25.89,1,0.0 +18668,73,15,37,0.0 +18668,22,21,31,0.0 +18668,45,9.5,50,0.0 +18668,23,9,35,0.0 +18668,9,97,20,0.0 +18668,68,12.5,11,0.0 +18668,44,19.45,10,0.0 +18668,17,39,11,0.0 +18668,1,18,8,0.0 +18668,60,34,16,0.0 +18668,31,12.5,40,0.0 +18668,47,9.5,31,0.0 +18668,13,6,33,0.0 +18668,64,33.25,6,0.0 +18668,72,34.8,35,0.0 +18668,18,62.5,22,0.0 +18668,6,25,29,0.0 +18668,54,7.45,16,0.0 +18668,41,9.65,32,0.0 +18668,59,55,43,0.0 +18668,37,26,40,0.0 +18669,7,30,40,0.0 +18669,46,12,23,0.0 +18669,16,17.45,39,0.0 +18669,40,18.4,3,0.0 +18669,32,32,20,0.0 +18669,11,21,3,0.0 +18669,35,18,29,0.0 +18669,70,15,46,0.0 +18669,77,13,4,0.0 +18669,3,10,42,0.0 +18669,1,18,26,0.0 +18669,26,31.23,24,0.0 +18669,75,7.75,7,0.0 +18669,74,10,36,0.0 +18669,48,12.75,36,0.0 +18669,59,55,8,0.0 +18669,29,123.79,19,0.0 +18669,68,12.5,41,0.0 +18669,56,38,2,0.0 +18669,21,10,4,0.0 +18669,39,18,18,0.0 +18669,72,34.8,29,0.0 +18669,45,9.5,20,0.0 +18669,49,20,40,0.0 +18669,9,97,7,0.0 +18669,52,7,44,0.0 +18669,17,39,7,0.0 +18669,73,15,36,0.0 +18669,4,22,28,0.0 +18669,22,21,3,0.0 +18669,33,2.5,28,0.0 +18669,43,46,9,0.0 +18669,44,19.45,17,0.0 +18669,76,18,33,0.0 +18669,67,14,33,0.0 +18669,54,7.45,48,0.0 +18669,31,12.5,19,0.0 +18669,51,53,43,0.0 +18669,62,49.3,42,0.0 +18669,63,43.9,2,0.0 +18669,47,9.5,30,0.0 +18669,50,16.25,39,0.0 +18669,38,263.5,43,0.0 +18669,41,9.65,50,0.0 +18669,25,14,29,0.0 +18669,10,31,33,0.0 +18669,2,19,47,0.0 +18669,30,25.89,37,0.0 +18669,58,13.25,26,0.0 +18669,37,26,14,0.0 +18669,36,19,39,0.0 +18669,64,33.25,45,0.0 +18670,25,14,2,0.0 +18670,29,123.79,13,0.0 +18670,60,34,40,0.0 +18670,43,46,46,0.0 +18670,53,32.8,18,0.0 +18670,44,19.45,50,0.0 +18670,35,18,12,0.0 +18670,76,18,25,0.0 +18670,16,17.45,36,0.0 +18670,28,45.6,38,0.0 +18670,13,6,22,0.0 +18670,54,7.45,30,0.0 +18670,48,12.75,25,0.0 +18670,47,9.5,9,0.0 +18670,52,7,48,0.0 +18670,38,263.5,24,0.0 +18670,69,36,37,0.0 +18670,22,21,44,0.0 +18670,11,21,26,0.0 +18670,19,9.2,11,0.0 +18670,20,81,46,0.0 +18670,74,10,12,0.0 +18670,10,31,3,0.0 +18670,2,19,16,0.0 +18670,73,15,27,0.0 +18670,4,22,2,0.0 +18670,6,25,39,0.0 +18670,32,32,37,0.0 +18670,61,28.5,13,0.0 +18670,49,20,29,0.0 +18670,1,18,32,0.0 +18670,72,34.8,26,0.0 +18670,17,39,33,0.0 +18670,63,43.9,27,0.0 +18670,75,7.75,50,0.0 +18670,30,25.89,26,0.0 +18670,65,21.05,25,0.0 +18670,66,17,27,0.0 +18670,14,23.25,42,0.0 +18670,37,26,49,0.0 +18670,3,10,37,0.0 +18670,12,38,45,0.0 +18670,57,19.5,22,0.0 +18670,64,33.25,14,0.0 +18670,34,14,34,0.0 +18670,71,21.5,50,0.0 +18670,68,12.5,38,0.0 +18671,68,12.5,39,0.0 +18671,74,10,5,0.0 +18671,17,39,37,0.0 +18671,73,15,48,0.0 +18671,57,19.5,41,0.0 +18671,13,6,23,0.0 +18671,28,45.6,14,0.0 +18671,52,7,20,0.0 +18671,6,25,15,0.0 +18671,62,49.3,10,0.0 +18671,61,28.5,47,0.0 +18671,49,20,22,0.0 +18671,37,26,12,0.0 +18671,8,40,31,0.0 +18671,22,21,16,0.0 +18672,20,81,23,0.0 +18672,55,24,21,0.0 +18672,22,21,49,0.0 +18672,2,19,25,0.0 +18672,71,21.5,16,0.0 +18672,53,32.8,41,0.0 +18672,76,18,36,0.0 +18672,45,9.5,47,0.0 +18672,46,12,46,0.0 +18672,4,22,13,0.0 +18672,72,34.8,42,0.0 +18672,36,19,39,0.0 +18672,57,19.5,22,0.0 +18672,31,12.5,45,0.0 +18672,64,33.25,46,0.0 +18672,63,43.9,21,0.0 +18672,19,9.2,10,0.0 +18672,29,123.79,13,0.0 +18672,60,34,40,0.0 +18672,26,31.23,12,0.0 +18672,54,7.45,11,0.0 +18672,25,14,35,0.0 +18672,40,18.4,12,0.0 +18673,49,20,45,0.0 +18673,8,40,4,0.0 +18673,27,43.9,35,0.0 +18673,66,17,25,0.0 +18673,1,18,45,0.0 +18673,44,19.45,29,0.0 +18674,37,26,9,0.0 +18674,73,15,1,0.0 +18674,52,7,5,0.0 +18674,70,15,7,0.0 +18674,4,22,40,0.0 +18674,14,23.25,1,0.0 +18674,69,36,45,0.0 +18674,10,31,19,0.0 +18674,68,12.5,3,0.0 +18674,53,32.8,12,0.0 +18674,65,21.05,34,0.0 +18674,34,14,44,0.0 +18674,33,2.5,33,0.0 +18674,26,31.23,47,0.0 +18674,18,62.5,16,0.0 +18674,71,21.5,7,0.0 +18674,66,17,9,0.0 +18674,12,38,12,0.0 +18674,64,33.25,27,0.0 +18674,17,39,22,0.0 +18674,21,10,23,0.0 +18674,61,28.5,11,0.0 +18674,51,53,34,0.0 +18674,56,38,35,0.0 +18674,47,9.5,29,0.0 +18674,44,19.45,46,0.0 +18674,20,81,10,0.0 +18674,40,18.4,16,0.0 +18674,9,97,10,0.0 +18674,16,17.45,12,0.0 +18674,6,25,38,0.0 +18674,72,34.8,42,0.0 +18674,31,12.5,32,0.0 +18674,22,21,45,0.0 +18674,30,25.89,12,0.0 +18674,74,10,18,0.0 +18674,75,7.75,2,0.0 +18674,55,24,41,0.0 +18674,48,12.75,2,0.0 +18674,35,18,26,0.0 +18674,41,9.65,25,0.0 +18674,60,34,50,0.0 +18675,64,33.25,42,0.0 +18675,32,32,2,0.0 +18675,50,16.25,43,0.0 +18675,74,10,30,0.0 +18675,28,45.6,7,0.0 +18675,23,9,15,0.0 +18675,3,10,42,0.0 +18675,57,19.5,8,0.0 +18675,12,38,50,0.0 +18675,53,32.8,14,0.0 +18675,11,21,44,0.0 +18675,18,62.5,38,0.0 +18675,5,21.35,30,0.0 +18675,65,21.05,45,0.0 +18675,14,23.25,37,0.0 +18675,19,9.2,15,0.0 +18675,4,22,30,0.0 +18675,51,53,39,0.0 +18675,25,14,41,0.0 +18675,17,39,28,0.0 +18675,9,97,43,0.0 +18675,61,28.5,1,0.0 +18675,20,81,21,0.0 +18675,75,7.75,11,0.0 +18675,67,14,37,0.0 +18675,46,12,20,0.0 +18675,2,19,25,0.0 +18675,52,7,40,0.0 +18675,42,14,9,0.0 +18675,45,9.5,13,0.0 +18675,70,15,36,0.0 +18675,68,12.5,5,0.0 +18675,39,18,45,0.0 +18675,10,31,15,0.0 +18675,63,43.9,28,0.0 +18675,55,24,34,0.0 +18675,16,17.45,50,0.0 +18675,60,34,48,0.0 +18675,34,14,8,0.0 +18675,71,21.5,23,0.0 +18675,38,263.5,43,0.0 +18675,21,10,10,0.0 +18675,40,18.4,10,0.0 +18675,44,19.45,27,0.0 +18675,7,30,6,0.0 +18675,36,19,5,0.0 +18675,35,18,10,0.0 +18675,66,17,4,0.0 +18675,41,9.65,6,0.0 +18675,69,36,11,0.0 +18675,49,20,21,0.0 +18675,47,9.5,9,0.0 +18675,56,38,17,0.0 +18675,58,13.25,17,0.0 +18675,24,4.5,18,0.0 +18675,15,15.5,16,0.0 +18675,48,12.75,31,0.0 +18675,37,26,31,0.0 +18675,33,2.5,24,0.0 +18675,22,21,15,0.0 +18675,77,13,50,0.0 +18675,54,7.45,44,0.0 +18675,1,18,30,0.0 +18675,30,25.89,33,0.0 +18675,76,18,30,0.0 +18675,8,40,4,0.0 +18675,43,46,16,0.0 +18675,73,15,45,0.0 +18675,59,55,33,0.0 +18675,13,6,1,0.0 +18675,62,49.3,34,0.0 +18676,60,34,30,0.0 +18676,7,30,37,0.0 +18676,4,22,6,0.0 +18676,31,12.5,19,0.0 +18676,16,17.45,20,0.0 +18676,52,7,17,0.0 +18676,63,43.9,37,0.0 +18676,55,24,8,0.0 +18676,9,97,21,0.0 +18676,47,9.5,27,0.0 +18676,68,12.5,40,0.0 +18676,2,19,43,0.0 +18676,45,9.5,49,0.0 +18676,1,18,7,0.0 +18676,32,32,32,0.0 +18676,65,21.05,17,0.0 +18676,38,263.5,13,0.0 +18676,23,9,31,0.0 +18676,61,28.5,20,0.0 +18676,11,21,12,0.0 +18676,50,16.25,37,0.0 +18676,53,32.8,13,0.0 +18676,42,14,45,0.0 +18676,6,25,24,0.0 +18676,12,38,24,0.0 +18676,70,15,42,0.0 +18676,28,45.6,41,0.0 +18676,14,23.25,46,0.0 +18676,26,31.23,13,0.0 +18676,75,7.75,10,0.0 +18676,76,18,49,0.0 +18676,25,14,38,0.0 +18676,49,20,47,0.0 +18676,41,9.65,29,0.0 +18676,35,18,27,0.0 +18676,72,34.8,30,0.0 +18676,37,26,46,0.0 +18676,22,21,50,0.0 +18676,54,7.45,45,0.0 +18676,66,17,20,0.0 +18676,21,10,46,0.0 +18676,15,15.5,32,0.0 +18676,48,12.75,38,0.0 +18676,59,55,17,0.0 +18676,33,2.5,49,0.0 +18676,10,31,48,0.0 +18676,3,10,30,0.0 +18676,43,46,36,0.0 +18676,57,19.5,46,0.0 +18676,58,13.25,18,0.0 +18676,17,39,2,0.0 +18676,20,81,32,0.0 +18676,27,43.9,47,0.0 +18677,49,20,10,0.0 +18677,77,13,2,0.0 +18677,14,23.25,34,0.0 +18677,34,14,38,0.0 +18677,45,9.5,48,0.0 +18677,53,32.8,32,0.0 +18677,75,7.75,19,0.0 +18677,76,18,33,0.0 +18677,46,12,48,0.0 +18677,4,22,3,0.0 +18677,9,97,33,0.0 +18677,29,123.79,23,0.0 +18677,41,9.65,47,0.0 +18677,70,15,44,0.0 +18677,20,81,46,0.0 +18677,62,49.3,38,0.0 +18677,56,38,50,0.0 +18677,7,30,37,0.0 +18677,6,25,43,0.0 +18677,57,19.5,6,0.0 +18677,1,18,39,0.0 +18677,43,46,22,0.0 +18677,47,9.5,39,0.0 +18677,54,7.45,42,0.0 +18677,40,18.4,20,0.0 +18677,27,43.9,21,0.0 +18677,42,14,17,0.0 +18677,28,45.6,2,0.0 +18677,24,4.5,41,0.0 +18677,32,32,16,0.0 +18677,13,6,27,0.0 +18677,37,26,23,0.0 +18677,48,12.75,46,0.0 +18677,58,13.25,7,0.0 +18677,64,33.25,1,0.0 +18677,60,34,28,0.0 +18677,69,36,27,0.0 +18677,8,40,37,0.0 +18677,2,19,6,0.0 +18677,21,10,1,0.0 +18677,61,28.5,32,0.0 +18677,31,12.5,33,0.0 +18677,35,18,19,0.0 +18677,5,21.35,6,0.0 +18677,23,9,19,0.0 +18677,55,24,21,0.0 +18677,67,14,33,0.0 +18677,22,21,23,0.0 +18677,12,38,42,0.0 +18677,52,7,13,0.0 +18677,51,53,12,0.0 +18677,3,10,27,0.0 +18677,59,55,5,0.0 +18677,36,19,12,0.0 +18677,17,39,1,0.0 +18677,16,17.45,11,0.0 +18677,18,62.5,26,0.0 +18677,30,25.89,2,0.0 +18677,50,16.25,42,0.0 +18677,15,15.5,7,0.0 +18677,71,21.5,34,0.0 +18677,10,31,30,0.0 +18677,38,263.5,16,0.0 +18677,72,34.8,15,0.0 +18677,25,14,30,0.0 +18677,11,21,15,0.0 +18677,39,18,5,0.0 +18677,26,31.23,22,0.0 +18677,74,10,38,0.0 +18677,33,2.5,46,0.0 +18677,73,15,15,0.0 +18677,63,43.9,1,0.0 +18678,6,25,17,0.0 +18678,70,15,30,0.0 +18678,75,7.75,13,0.0 +18678,3,10,49,0.0 +18678,14,23.25,11,0.0 +18678,59,55,43,0.0 +18678,67,14,17,0.0 +18678,40,18.4,36,0.0 +18678,63,43.9,19,0.0 +18678,4,22,25,0.0 +18678,57,19.5,43,0.0 +18678,1,18,3,0.0 +18678,48,12.75,48,0.0 +18678,37,26,37,0.0 +18678,24,4.5,40,0.0 +18678,11,21,27,0.0 +18678,15,15.5,2,0.0 +18678,7,30,9,0.0 +18678,33,2.5,32,0.0 +18678,45,9.5,11,0.0 +18678,39,18,19,0.0 +18678,64,33.25,16,0.0 +18678,72,34.8,12,0.0 +18678,66,17,33,0.0 +18678,2,19,17,0.0 +18678,30,25.89,6,0.0 +18678,44,19.45,29,0.0 +18678,60,34,30,0.0 +18678,18,62.5,47,0.0 +18678,19,9.2,7,0.0 +18678,8,40,8,0.0 +18678,23,9,13,0.0 +18678,73,15,34,0.0 +18678,54,7.45,49,0.0 +18678,65,21.05,16,0.0 +18678,5,21.35,32,0.0 +18678,10,31,38,0.0 +18678,35,18,24,0.0 +18678,61,28.5,30,0.0 +18678,47,9.5,26,0.0 +18678,52,7,11,0.0 +18678,49,20,5,0.0 +18678,51,53,40,0.0 +18678,56,38,8,0.0 +18678,43,46,34,0.0 +18678,55,24,44,0.0 +18678,17,39,38,0.0 +18678,16,17.45,14,0.0 +18678,74,10,48,0.0 +18678,41,9.65,15,0.0 +18678,77,13,16,0.0 +18678,31,12.5,24,0.0 +18678,22,21,27,0.0 +18678,38,263.5,20,0.0 +18679,15,15.5,38,0.0 +18679,29,123.79,23,0.0 +18679,34,14,50,0.0 +18679,13,6,42,0.0 +18679,55,24,48,0.0 +18679,5,21.35,17,0.0 +18679,41,9.65,26,0.0 +18679,23,9,34,0.0 +18679,36,19,30,0.0 +18679,62,49.3,4,0.0 +18679,26,31.23,50,0.0 +18679,77,13,30,0.0 +18679,28,45.6,31,0.0 +18679,51,53,36,0.0 +18679,42,14,29,0.0 +18679,25,14,23,0.0 +18679,69,36,4,0.0 +18679,31,12.5,18,0.0 +18679,6,25,35,0.0 +18679,16,17.45,17,0.0 +18679,44,19.45,14,0.0 +18679,21,10,38,0.0 +18679,43,46,29,0.0 +18679,76,18,8,0.0 +18679,48,12.75,20,0.0 +18679,61,28.5,49,0.0 +18679,46,12,5,0.0 +18679,2,19,11,0.0 +18679,47,9.5,41,0.0 +18679,9,97,9,0.0 +18679,57,19.5,37,0.0 +18679,54,7.45,45,0.0 +18679,18,62.5,11,0.0 +18679,56,38,41,0.0 +18679,74,10,16,0.0 +18679,17,39,27,0.0 +18679,70,15,17,0.0 +18679,7,30,25,0.0 +18679,1,18,37,0.0 +18679,8,40,49,0.0 +18679,75,7.75,6,0.0 +18679,64,33.25,22,0.0 +18679,32,32,16,0.0 +18679,3,10,1,0.0 +18679,33,2.5,19,0.0 +18679,22,21,34,0.0 +18679,72,34.8,6,0.0 +18679,40,18.4,24,0.0 +18679,19,9.2,40,0.0 +18679,73,15,21,0.0 +18679,68,12.5,21,0.0 +18679,10,31,37,0.0 +18679,65,21.05,45,0.0 +18679,50,16.25,10,0.0 +18679,58,13.25,10,0.0 +18679,14,23.25,34,0.0 +18679,4,22,43,0.0 +18679,20,81,30,0.0 +18679,63,43.9,36,0.0 +18679,11,21,43,0.0 +18679,37,26,40,0.0 +18679,59,55,40,0.0 +18679,66,17,44,0.0 +18679,24,4.5,46,0.0 +18679,49,20,9,0.0 +18679,12,38,3,0.0 +18679,60,34,22,0.0 +18679,53,32.8,38,0.0 +18679,39,18,34,0.0 +18679,45,9.5,43,0.0 +18679,38,263.5,29,0.0 +18679,30,25.89,14,0.0 +18679,52,7,39,0.0 +18679,71,21.5,47,0.0 +18680,42,14,10,0.0 +18680,46,12,2,0.0 +18680,39,18,42,0.0 +18680,28,45.6,29,0.0 +18680,38,263.5,42,0.0 +18680,56,38,14,0.0 +18680,32,32,37,0.0 +18680,15,15.5,20,0.0 +18680,33,2.5,22,0.0 +18680,1,18,28,0.0 +18680,59,55,28,0.0 +18680,16,17.45,34,0.0 +18680,47,9.5,8,0.0 +18680,44,19.45,47,0.0 +18680,75,7.75,45,0.0 +18680,58,13.25,5,0.0 +18680,67,14,9,0.0 +18680,4,22,30,0.0 +18680,8,40,34,0.0 +18680,24,4.5,13,0.0 +18680,77,13,9,0.0 +18680,52,7,46,0.0 +18680,49,20,14,0.0 +18680,7,30,19,0.0 +18680,62,49.3,40,0.0 +18680,19,9.2,32,0.0 +18680,18,62.5,23,0.0 +18680,10,31,6,0.0 +18680,31,12.5,24,0.0 +18680,51,53,26,0.0 +18680,48,12.75,32,0.0 +18680,61,28.5,6,0.0 +18680,41,9.65,17,0.0 +18680,37,26,14,0.0 +18680,36,19,21,0.0 +18680,12,38,49,0.0 +18680,69,36,31,0.0 +18680,71,21.5,33,0.0 +18680,13,6,21,0.0 +18680,54,7.45,44,0.0 +18680,63,43.9,18,0.0 +18680,66,17,41,0.0 +18680,3,10,34,0.0 +18680,14,23.25,48,0.0 +18680,5,21.35,36,0.0 +18680,53,32.8,45,0.0 +18680,2,19,29,0.0 +18680,21,10,26,0.0 +18680,76,18,6,0.0 +18680,72,34.8,7,0.0 +18680,23,9,10,0.0 +18680,40,18.4,34,0.0 +18680,9,97,48,0.0 +18680,60,34,9,0.0 +18680,43,46,35,0.0 +18680,64,33.25,28,0.0 +18680,70,15,7,0.0 +18680,73,15,14,0.0 +18680,65,21.05,46,0.0 +18680,27,43.9,38,0.0 +18680,26,31.23,26,0.0 +18680,74,10,39,0.0 +18680,17,39,23,0.0 +18680,34,14,21,0.0 +18680,45,9.5,42,0.0 +18680,25,14,17,0.0 +18680,29,123.79,30,0.0 +18680,22,21,15,0.0 +18680,6,25,16,0.0 +18680,30,25.89,8,0.0 +18680,57,19.5,36,0.0 +18680,20,81,30,0.0 +18680,35,18,16,0.0 +18681,21,10,18,0.0 +18681,40,18.4,14,0.0 +18681,34,14,40,0.0 +18681,56,38,46,0.0 +18681,65,21.05,1,0.0 +18681,1,18,7,0.0 +18681,31,12.5,14,0.0 +18681,57,19.5,27,0.0 +18681,60,34,16,0.0 +18681,10,31,21,0.0 +18681,28,45.6,20,0.0 +18681,30,25.89,31,0.0 +18681,68,12.5,8,0.0 +18681,39,18,28,0.0 +18681,37,26,43,0.0 +18681,13,6,42,0.0 +18681,11,21,18,0.0 +18681,66,17,30,0.0 +18681,23,9,15,0.0 +18681,77,13,9,0.0 +18681,59,55,22,0.0 +18681,27,43.9,28,0.0 +18681,50,16.25,21,0.0 +18681,67,14,47,0.0 +18681,62,49.3,28,0.0 +18681,33,2.5,11,0.0 +18681,16,17.45,44,0.0 +18681,12,38,41,0.0 +18681,74,10,23,0.0 +18681,72,34.8,15,0.0 +18681,47,9.5,8,0.0 +18681,61,28.5,45,0.0 +18681,70,15,22,0.0 +18681,54,7.45,10,0.0 +18681,63,43.9,49,0.0 +18681,55,24,7,0.0 +18681,2,19,29,0.0 +18681,76,18,2,0.0 +18681,7,30,13,0.0 +18681,51,53,39,0.0 +18681,69,36,43,0.0 +18681,5,21.35,22,0.0 +18681,53,32.8,1,0.0 +18681,14,23.25,29,0.0 +18681,46,12,21,0.0 +18681,58,13.25,20,0.0 +18681,45,9.5,5,0.0 +18681,41,9.65,23,0.0 +18681,8,40,28,0.0 +18681,38,263.5,32,0.0 +18681,6,25,23,0.0 +18681,22,21,35,0.0 +18681,43,46,25,0.0 +18681,36,19,20,0.0 +18681,25,14,29,0.0 +18681,24,4.5,30,0.0 +18681,29,123.79,3,0.0 +18681,64,33.25,18,0.0 +18681,3,10,31,0.0 +18682,51,53,14,0.0 +18682,61,28.5,25,0.0 +18682,37,26,46,0.0 +18682,30,25.89,4,0.0 +18682,46,12,29,0.0 +18682,2,19,36,0.0 +18682,26,31.23,10,0.0 +18682,8,40,41,0.0 +18682,31,12.5,11,0.0 +18682,28,45.6,48,0.0 +18682,15,15.5,30,0.0 +18682,35,18,48,0.0 +18682,13,6,26,0.0 +18682,39,18,28,0.0 +18682,9,97,46,0.0 +18682,21,10,17,0.0 +18682,33,2.5,38,0.0 +18682,49,20,7,0.0 +18682,65,21.05,49,0.0 +18682,38,263.5,43,0.0 +18682,69,36,45,0.0 +18682,11,21,41,0.0 +18682,68,12.5,31,0.0 +18682,5,21.35,39,0.0 +18682,4,22,26,0.0 +18682,36,19,1,0.0 +18682,67,14,43,0.0 +18682,20,81,23,0.0 +18682,48,12.75,46,0.0 +18682,14,23.25,36,0.0 +18682,16,17.45,50,0.0 +18682,50,16.25,45,0.0 +18682,70,15,47,0.0 +18682,19,9.2,30,0.0 +18682,12,38,32,0.0 +18682,23,9,7,0.0 +18682,18,62.5,3,0.0 +18682,62,49.3,45,0.0 +18682,25,14,8,0.0 +18682,52,7,39,0.0 +18682,7,30,49,0.0 +18682,3,10,33,0.0 +18682,17,39,29,0.0 +18682,73,15,23,0.0 +18683,38,263.5,2,0.0 +18683,13,6,12,0.0 +18683,23,9,43,0.0 +18683,9,97,36,0.0 +18683,62,49.3,39,0.0 +18683,56,38,10,0.0 +18683,44,19.45,20,0.0 +18683,60,34,18,0.0 +18683,50,16.25,40,0.0 +18683,74,10,2,0.0 +18683,16,17.45,5,0.0 +18683,77,13,36,0.0 +18683,76,18,26,0.0 +18683,29,123.79,30,0.0 +18683,24,4.5,18,0.0 +18683,64,33.25,41,0.0 +18683,47,9.5,19,0.0 +18683,20,81,7,0.0 +18683,22,21,4,0.0 +18684,54,7.45,19,0.0 +18684,22,21,20,0.0 +18684,59,55,47,0.0 +18684,56,38,6,0.0 +18684,27,43.9,4,0.0 +18684,58,13.25,50,0.0 +18684,21,10,1,0.0 +18684,12,38,45,0.0 +18684,41,9.65,25,0.0 +18684,52,7,15,0.0 +18684,64,33.25,38,0.0 +18684,3,10,35,0.0 +18684,4,22,49,0.0 +18684,70,15,11,0.0 +18684,25,14,2,0.0 +18684,34,14,45,0.0 +18684,9,97,22,0.0 +18684,50,16.25,35,0.0 +18684,7,30,5,0.0 +18684,47,9.5,35,0.0 +18684,51,53,35,0.0 +18684,8,40,35,0.0 +18684,69,36,33,0.0 +18684,46,12,7,0.0 +18684,66,17,48,0.0 +18684,75,7.75,26,0.0 +18684,31,12.5,28,0.0 +18684,43,46,41,0.0 +18684,40,18.4,4,0.0 +18684,35,18,27,0.0 +18684,36,19,7,0.0 +18684,20,81,40,0.0 +18684,23,9,50,0.0 +18684,17,39,41,0.0 +18684,32,32,12,0.0 +18684,61,28.5,27,0.0 +18684,13,6,10,0.0 +18684,65,21.05,27,0.0 +18684,18,62.5,13,0.0 +18684,2,19,35,0.0 +18684,45,9.5,31,0.0 +18684,39,18,10,0.0 +18684,30,25.89,35,0.0 +18684,44,19.45,47,0.0 +18684,1,18,49,0.0 +18684,14,23.25,43,0.0 +18684,62,49.3,44,0.0 +18684,24,4.5,6,0.0 +18684,6,25,38,0.0 +18684,5,21.35,3,0.0 +18684,38,263.5,23,0.0 +18684,42,14,26,0.0 +18684,57,19.5,40,0.0 +18684,73,15,44,0.0 +18684,71,21.5,47,0.0 +18685,47,9.5,40,0.0 +18685,61,28.5,3,0.0 +18685,52,7,27,0.0 +18685,38,263.5,44,0.0 +18685,8,40,50,0.0 +18685,27,43.9,9,0.0 +18685,65,21.05,1,0.0 +18685,2,19,8,0.0 +18685,57,19.5,26,0.0 +18685,50,16.25,8,0.0 +18685,43,46,18,0.0 +18685,17,39,9,0.0 +18685,25,14,11,0.0 +18685,62,49.3,35,0.0 +18685,49,20,45,0.0 +18685,13,6,2,0.0 +18685,56,38,46,0.0 +18685,32,32,41,0.0 +18685,26,31.23,19,0.0 +18685,74,10,25,0.0 +18685,66,17,39,0.0 +18685,6,25,23,0.0 +18685,58,13.25,39,0.0 +18685,33,2.5,45,0.0 +18685,20,81,15,0.0 +18685,22,21,40,0.0 +18686,34,14,18,0.0 +18686,55,24,25,0.0 +18686,8,40,25,0.0 +18686,44,19.45,30,0.0 +18686,11,21,39,0.0 +18686,7,30,17,0.0 +18686,52,7,12,0.0 +18686,26,31.23,4,0.0 +18686,64,33.25,1,0.0 +18686,42,14,5,0.0 +18686,9,97,2,0.0 +18686,51,53,39,0.0 +18686,65,21.05,1,0.0 +18687,63,43.9,48,0.0 +18687,71,21.5,34,0.0 +18687,45,9.5,27,0.0 +18687,4,22,26,0.0 +18687,14,23.25,2,0.0 +18687,1,18,48,0.0 +18687,70,15,26,0.0 +18687,9,97,43,0.0 +18687,34,14,3,0.0 +18687,58,13.25,43,0.0 +18687,42,14,41,0.0 +18687,65,21.05,20,0.0 +18687,16,17.45,46,0.0 +18687,76,18,18,0.0 +18687,59,55,42,0.0 +18687,48,12.75,49,0.0 +18687,12,38,32,0.0 +18687,37,26,11,0.0 +18687,7,30,33,0.0 +18687,33,2.5,25,0.0 +18687,10,31,24,0.0 +18687,43,46,39,0.0 +18687,73,15,23,0.0 +18687,3,10,32,0.0 +18687,57,19.5,31,0.0 +18687,11,21,38,0.0 +18687,18,62.5,38,0.0 +18687,75,7.75,36,0.0 +18687,15,15.5,47,0.0 +18687,53,32.8,32,0.0 +18687,32,32,42,0.0 +18687,74,10,50,0.0 +18687,36,19,23,0.0 +18687,69,36,17,0.0 +18687,67,14,41,0.0 +18687,44,19.45,5,0.0 +18687,49,20,21,0.0 +18687,38,263.5,47,0.0 +18687,27,43.9,10,0.0 +18687,54,7.45,2,0.0 +18687,39,18,43,0.0 +18687,13,6,32,0.0 +18687,52,7,45,0.0 +18687,26,31.23,44,0.0 +18687,72,34.8,44,0.0 +18687,41,9.65,48,0.0 +18687,22,21,13,0.0 +18687,55,24,30,0.0 +18687,23,9,24,0.0 +18687,56,38,13,0.0 +18687,50,16.25,9,0.0 +18687,17,39,22,0.0 +18687,46,12,50,0.0 +18687,20,81,3,0.0 +18687,21,10,11,0.0 +18687,40,18.4,40,0.0 +18687,8,40,38,0.0 +18687,77,13,12,0.0 +18687,68,12.5,41,0.0 +18687,35,18,20,0.0 +18687,25,14,50,0.0 +18687,2,19,3,0.0 +18687,29,123.79,49,0.0 +18687,61,28.5,8,0.0 +18687,51,53,23,0.0 +18687,24,4.5,6,0.0 +18688,68,12.5,7,0.0 +18688,39,18,8,0.0 +18688,30,25.89,31,0.0 +18688,28,45.6,19,0.0 +18688,69,36,45,0.0 +18688,24,4.5,46,0.0 +18688,49,20,5,0.0 +18688,19,9.2,47,0.0 +18688,75,7.75,6,0.0 +18688,48,12.75,34,0.0 +18688,51,53,38,0.0 +18688,70,15,3,0.0 +18688,29,123.79,30,0.0 +18688,64,33.25,11,0.0 +18688,20,81,16,0.0 +18688,8,40,21,0.0 +18688,63,43.9,14,0.0 +18688,31,12.5,39,0.0 +18688,13,6,46,0.0 +18688,21,10,31,0.0 +18688,5,21.35,35,0.0 +18688,27,43.9,6,0.0 +18688,14,23.25,40,0.0 +18688,45,9.5,49,0.0 +18688,22,21,38,0.0 +18688,17,39,32,0.0 +18688,47,9.5,20,0.0 +18688,61,28.5,38,0.0 +18688,6,25,44,0.0 +18688,11,21,41,0.0 +18688,40,18.4,48,0.0 +18688,10,31,3,0.0 +18688,60,34,33,0.0 +18688,74,10,5,0.0 +18688,37,26,11,0.0 +18688,41,9.65,5,0.0 +18688,56,38,34,0.0 +18688,42,14,28,0.0 +18688,44,19.45,40,0.0 +18688,59,55,22,0.0 +18688,9,97,23,0.0 +18688,50,16.25,40,0.0 +18688,25,14,31,0.0 +18688,4,22,13,0.0 +18688,58,13.25,25,0.0 +18688,15,15.5,19,0.0 +18688,7,30,41,0.0 +18688,52,7,45,0.0 +18688,57,19.5,30,0.0 +18688,71,21.5,19,0.0 +18688,76,18,41,0.0 +18688,62,49.3,36,0.0 +18688,12,38,50,0.0 +18688,26,31.23,24,0.0 +18688,18,62.5,12,0.0 +18688,46,12,15,0.0 +18688,38,263.5,12,0.0 +18688,54,7.45,37,0.0 +18688,33,2.5,22,0.0 +18688,55,24,5,0.0 +18688,2,19,11,0.0 +18688,3,10,7,0.0 +18688,36,19,16,0.0 +18688,32,32,30,0.0 +18688,1,18,37,0.0 +18688,16,17.45,21,0.0 +18688,35,18,34,0.0 +18688,77,13,43,0.0 +18688,72,34.8,38,0.0 +18688,34,14,30,0.0 +18688,66,17,33,0.0 +18688,43,46,44,0.0 +18688,65,21.05,29,0.0 +18688,53,32.8,49,0.0 +18688,73,15,23,0.0 +18689,11,21,20,0.0 +18689,43,46,32,0.0 +18689,32,32,32,0.0 +18689,29,123.79,16,0.0 +18689,23,9,38,0.0 +18689,50,16.25,38,0.0 +18689,45,9.5,3,0.0 +18689,3,10,29,0.0 +18689,28,45.6,5,0.0 +18689,62,49.3,31,0.0 +18689,38,263.5,43,0.0 +18689,6,25,46,0.0 +18689,49,20,24,0.0 +18689,25,14,50,0.0 +18689,42,14,8,0.0 +18689,74,10,26,0.0 +18689,58,13.25,11,0.0 +18689,75,7.75,45,0.0 +18689,27,43.9,9,0.0 +18689,40,18.4,6,0.0 +18689,33,2.5,28,0.0 +18689,15,15.5,21,0.0 +18689,65,21.05,17,0.0 +18689,4,22,46,0.0 +18689,39,18,21,0.0 +18689,68,12.5,23,0.0 +18689,69,36,43,0.0 +18689,61,28.5,4,0.0 +18689,44,19.45,38,0.0 +18689,8,40,47,0.0 +18689,35,18,29,0.0 +18689,16,17.45,41,0.0 +18689,64,33.25,18,0.0 +18689,12,38,35,0.0 +18689,18,62.5,15,0.0 +18689,13,6,3,0.0 +18689,73,15,35,0.0 +18690,31,12.5,20,0.0 +18690,28,45.6,7,0.0 +18690,6,25,28,0.0 +18690,9,97,19,0.0 +18690,70,15,1,0.0 +18690,35,18,48,0.0 +18690,22,21,6,0.0 +18690,4,22,37,0.0 +18690,34,14,44,0.0 +18690,11,21,16,0.0 +18690,32,32,45,0.0 +18690,43,46,19,0.0 +18690,45,9.5,48,0.0 +18690,72,34.8,18,0.0 +18690,16,17.45,7,0.0 +18690,27,43.9,23,0.0 +18690,53,32.8,25,0.0 +18690,19,9.2,4,0.0 +18690,1,18,42,0.0 +18690,30,25.89,22,0.0 +18690,33,2.5,21,0.0 +18690,36,19,43,0.0 +18690,69,36,40,0.0 +18690,38,263.5,48,0.0 +18690,46,12,4,0.0 +18690,29,123.79,19,0.0 +18690,12,38,17,0.0 +18690,10,31,44,0.0 +18690,71,21.5,42,0.0 +18690,48,12.75,8,0.0 +18690,66,17,25,0.0 +18690,57,19.5,13,0.0 +18690,15,15.5,13,0.0 +18690,65,21.05,37,0.0 +18690,52,7,40,0.0 +18690,59,55,3,0.0 +18690,49,20,25,0.0 +18690,60,34,43,0.0 +18690,75,7.75,20,0.0 +18690,24,4.5,12,0.0 +18690,25,14,18,0.0 +18690,39,18,25,0.0 +18691,43,46,17,0.0 +18691,13,6,38,0.0 +18691,12,38,17,0.0 +18691,56,38,35,0.0 +18691,57,19.5,10,0.0 +18691,68,12.5,39,0.0 +18691,26,31.23,14,0.0 +18691,46,12,36,0.0 +18691,59,55,6,0.0 +18691,27,43.9,49,0.0 +18691,60,34,5,0.0 +18691,42,14,44,0.0 +18691,49,20,40,0.0 +18691,47,9.5,30,0.0 +18691,34,14,41,0.0 +18691,67,14,24,0.0 +18691,16,17.45,9,0.0 +18691,52,7,27,0.0 +18691,21,10,28,0.0 +18691,35,18,29,0.0 +18691,8,40,21,0.0 +18691,58,13.25,24,0.0 +18691,53,32.8,48,0.0 +18691,33,2.5,33,0.0 +18691,19,9.2,23,0.0 +18691,6,25,40,0.0 +18691,9,97,26,0.0 +18691,30,25.89,47,0.0 +18691,7,30,49,0.0 +18692,41,9.65,3,0.0 +18692,54,7.45,4,0.0 +18692,53,32.8,3,0.0 +18692,19,9.2,12,0.0 +18692,1,18,32,0.0 +18692,18,62.5,1,0.0 +18692,69,36,4,0.0 +18692,10,31,28,0.0 +18692,45,9.5,34,0.0 +18692,9,97,24,0.0 +18692,74,10,7,0.0 +18692,8,40,15,0.0 +18692,44,19.45,38,0.0 +18692,65,21.05,47,0.0 +18692,73,15,15,0.0 +18692,13,6,17,0.0 +18692,21,10,48,0.0 +18692,50,16.25,44,0.0 +18693,44,19.45,4,0.0 +18693,45,9.5,31,0.0 +18694,38,263.5,10,0.0 +18694,13,6,12,0.0 +18694,69,36,36,0.0 +18694,39,18,1,0.0 +18694,36,19,25,0.0 +18694,20,81,30,0.0 +18694,17,39,47,0.0 +18694,1,18,14,0.0 +18694,73,15,50,0.0 +18694,50,16.25,45,0.0 +18694,22,21,26,0.0 +18694,31,12.5,19,0.0 +18694,68,12.5,2,0.0 +18694,10,31,2,0.0 +18694,7,30,18,0.0 +18694,76,18,17,0.0 +18694,16,17.45,36,0.0 +18694,61,28.5,36,0.0 +18694,51,53,34,0.0 +18694,54,7.45,45,0.0 +18694,57,19.5,37,0.0 +18694,55,24,7,0.0 +18694,35,18,8,0.0 +18694,75,7.75,15,0.0 +18694,3,10,13,0.0 +18694,37,26,22,0.0 +18694,40,18.4,47,0.0 +18694,19,9.2,35,0.0 +18694,52,7,6,0.0 +18694,77,13,19,0.0 +18694,2,19,9,0.0 +18694,25,14,32,0.0 +18694,9,97,14,0.0 +18694,32,32,13,0.0 +18694,29,123.79,49,0.0 +18694,60,34,38,0.0 +18694,42,14,34,0.0 +18694,6,25,12,0.0 +18694,63,43.9,29,0.0 +18694,59,55,45,0.0 +18694,30,25.89,20,0.0 +18694,47,9.5,21,0.0 +18694,15,15.5,45,0.0 +18694,23,9,8,0.0 +18694,72,34.8,40,0.0 +18694,12,38,30,0.0 +18694,65,21.05,5,0.0 +18694,24,4.5,36,0.0 +18694,26,31.23,15,0.0 +18694,56,38,38,0.0 +18694,67,14,3,0.0 +18694,74,10,20,0.0 +18695,56,38,34,0.0 +18695,24,4.5,22,0.0 +18695,27,43.9,50,0.0 +18695,39,18,33,0.0 +18695,42,14,18,0.0 +18695,3,10,12,0.0 +18695,14,23.25,38,0.0 +18695,73,15,34,0.0 +18695,63,43.9,48,0.0 +18695,71,21.5,24,0.0 +18695,21,10,40,0.0 +18695,36,19,38,0.0 +18695,31,12.5,1,0.0 +18695,54,7.45,36,0.0 +18695,76,18,42,0.0 +18695,1,18,35,0.0 +18695,16,17.45,36,0.0 +18695,53,32.8,4,0.0 +18695,37,26,45,0.0 +18695,55,24,18,0.0 +18695,20,81,3,0.0 +18695,4,22,16,0.0 +18695,64,33.25,2,0.0 +18695,72,34.8,39,0.0 +18695,7,30,30,0.0 +18695,2,19,27,0.0 +18695,58,13.25,1,0.0 +18695,35,18,8,0.0 +18695,70,15,50,0.0 +18695,44,19.45,29,0.0 +18695,75,7.75,6,0.0 +18695,28,45.6,1,0.0 +18695,40,18.4,15,0.0 +18695,25,14,10,0.0 +18695,38,263.5,25,0.0 +18695,47,9.5,46,0.0 +18695,69,36,1,0.0 +18695,68,12.5,37,0.0 +18695,22,21,46,0.0 +18695,19,9.2,37,0.0 +18695,34,14,4,0.0 +18695,17,39,28,0.0 +18695,18,62.5,28,0.0 +18695,33,2.5,28,0.0 +18695,5,21.35,34,0.0 +18695,57,19.5,27,0.0 +18695,61,28.5,13,0.0 +18695,52,7,24,0.0 +18695,51,53,30,0.0 +18695,10,31,22,0.0 +18695,50,16.25,22,0.0 +18695,77,13,10,0.0 +18696,50,16.25,29,0.0 +18696,29,123.79,48,0.0 +18696,60,34,7,0.0 +18696,15,15.5,34,0.0 +18696,75,7.75,45,0.0 +18696,64,33.25,42,0.0 +18696,63,43.9,33,0.0 +18696,23,9,38,0.0 +18696,31,12.5,39,0.0 +18696,2,19,44,0.0 +18696,74,10,28,0.0 +18696,35,18,37,0.0 +18696,55,24,41,0.0 +18696,65,21.05,9,0.0 +18696,39,18,6,0.0 +18696,38,263.5,2,0.0 +18696,34,14,24,0.0 +18696,52,7,15,0.0 +18696,53,32.8,7,0.0 +18696,24,4.5,41,0.0 +18696,69,36,30,0.0 +18696,33,2.5,24,0.0 +18696,13,6,30,0.0 +18696,6,25,36,0.0 +18696,48,12.75,41,0.0 +18696,27,43.9,1,0.0 +18696,1,18,31,0.0 +18696,42,14,35,0.0 +18696,66,17,23,0.0 +18696,17,39,7,0.0 +18696,28,45.6,24,0.0 +18696,26,31.23,32,0.0 +18696,8,40,44,0.0 +18696,21,10,45,0.0 +18696,62,49.3,7,0.0 +18696,18,62.5,12,0.0 +18696,54,7.45,26,0.0 +18696,71,21.5,26,0.0 +18696,7,30,38,0.0 +18696,68,12.5,30,0.0 +18696,3,10,12,0.0 +18696,67,14,42,0.0 +18696,77,13,38,0.0 +18696,46,12,16,0.0 +18696,70,15,36,0.0 +18696,16,17.45,33,0.0 +18696,11,21,39,0.0 +18696,57,19.5,46,0.0 +18696,4,22,31,0.0 +18696,56,38,43,0.0 +18696,45,9.5,46,0.0 +18696,51,53,48,0.0 +18696,41,9.65,27,0.0 +18696,40,18.4,45,0.0 +18696,22,21,7,0.0 +18696,76,18,21,0.0 +18696,32,32,47,0.0 +18696,25,14,32,0.0 +18696,43,46,5,0.0 +18696,58,13.25,38,0.0 +18696,19,9.2,45,0.0 +18696,61,28.5,9,0.0 +18696,36,19,33,0.0 +18696,30,25.89,39,0.0 +18696,47,9.5,23,0.0 +18696,20,81,38,0.0 +18697,21,10,20,0.0 +18697,47,9.5,38,0.0 +18697,39,18,14,0.0 +18697,44,19.45,46,0.0 +18697,41,9.65,5,0.0 +18697,29,123.79,25,0.0 +18697,13,6,26,0.0 +18697,51,53,3,0.0 +18697,24,4.5,8,0.0 +18697,53,32.8,32,0.0 +18697,43,46,37,0.0 +18697,18,62.5,7,0.0 +18697,25,14,31,0.0 +18697,76,18,38,0.0 +18697,65,21.05,21,0.0 +18697,35,18,9,0.0 +18697,12,38,4,0.0 +18697,36,19,13,0.0 +18697,23,9,34,0.0 +18697,77,13,34,0.0 +18697,64,33.25,8,0.0 +18697,22,21,18,0.0 +18697,31,12.5,37,0.0 +18697,42,14,46,0.0 +18697,17,39,18,0.0 +18697,58,13.25,10,0.0 +18697,74,10,13,0.0 +18697,50,16.25,9,0.0 +18697,14,23.25,44,0.0 +18697,67,14,32,0.0 +18697,32,32,39,0.0 +18697,9,97,25,0.0 +18697,4,22,26,0.0 +18697,16,17.45,25,0.0 +18697,11,21,13,0.0 +18697,1,18,26,0.0 +18697,70,15,12,0.0 +18697,75,7.75,45,0.0 +18697,5,21.35,20,0.0 +18697,54,7.45,18,0.0 +18697,60,34,42,0.0 +18697,63,43.9,11,0.0 +18697,34,14,11,0.0 +18697,20,81,15,0.0 +18697,55,24,8,0.0 +18697,46,12,42,0.0 +18697,57,19.5,24,0.0 +18697,72,34.8,33,0.0 +18697,37,26,13,0.0 +18697,40,18.4,7,0.0 +18697,69,36,38,0.0 +18697,10,31,3,0.0 +18697,49,20,9,0.0 +18697,30,25.89,5,0.0 +18697,26,31.23,23,0.0 +18697,66,17,6,0.0 +18697,3,10,49,0.0 +18697,62,49.3,27,0.0 +18697,6,25,32,0.0 +18697,71,21.5,42,0.0 +18697,56,38,1,0.0 +18697,38,263.5,19,0.0 +18697,15,15.5,18,0.0 +18697,27,43.9,3,0.0 +18697,7,30,35,0.0 +18698,71,21.5,15,0.0 +18698,51,53,26,0.0 +18698,27,43.9,43,0.0 +18698,44,19.45,2,0.0 +18698,29,123.79,44,0.0 +18698,42,14,10,0.0 +18698,19,9.2,28,0.0 +18698,2,19,31,0.0 +18698,76,18,20,0.0 +18698,6,25,36,0.0 +18698,12,38,1,0.0 +18698,18,62.5,20,0.0 +18698,13,6,12,0.0 +18698,73,15,48,0.0 +18698,1,18,45,0.0 +18698,75,7.75,29,0.0 +18698,30,25.89,2,0.0 +18698,45,9.5,6,0.0 +18698,34,14,50,0.0 +18698,16,17.45,4,0.0 +18698,61,28.5,9,0.0 +18698,14,23.25,10,0.0 +18698,17,39,31,0.0 +18698,70,15,22,0.0 +18698,5,21.35,43,0.0 +18698,52,7,17,0.0 +18698,60,34,38,0.0 +18698,66,17,47,0.0 +18698,69,36,5,0.0 +18698,57,19.5,14,0.0 +18698,15,15.5,41,0.0 +18698,72,34.8,4,0.0 +18698,9,97,1,0.0 +18698,23,9,32,0.0 +18698,11,21,36,0.0 +18698,74,10,23,0.0 +18698,67,14,17,0.0 +18698,64,33.25,11,0.0 +18698,38,263.5,41,0.0 +18698,49,20,3,0.0 +18698,22,21,46,0.0 +18698,31,12.5,38,0.0 +18698,58,13.25,48,0.0 +18698,24,4.5,2,0.0 +18698,32,32,11,0.0 +18698,59,55,47,0.0 +18698,8,40,24,0.0 +18698,47,9.5,10,0.0 +18699,27,43.9,7,0.0 +18699,34,14,20,0.0 +18699,74,10,30,0.0 +18699,12,38,2,0.0 +18699,48,12.75,2,0.0 +18699,43,46,35,0.0 +18699,21,10,22,0.0 +18699,63,43.9,1,0.0 +18699,54,7.45,11,0.0 +18699,35,18,28,0.0 +18699,19,9.2,28,0.0 +18699,51,53,11,0.0 +18699,32,32,50,0.0 +18699,17,39,5,0.0 +18699,64,33.25,8,0.0 +18699,28,45.6,47,0.0 +18699,23,9,24,0.0 +18699,13,6,34,0.0 +18699,25,14,5,0.0 +18699,6,25,49,0.0 +18699,75,7.75,44,0.0 +18699,56,38,16,0.0 +18699,60,34,13,0.0 +18699,42,14,44,0.0 +18699,55,24,13,0.0 +18699,26,31.23,22,0.0 +18699,7,30,37,0.0 +18699,15,15.5,23,0.0 +18699,9,97,23,0.0 +18699,76,18,6,0.0 +18699,2,19,15,0.0 +18699,45,9.5,14,0.0 +18700,18,62.5,21,0.0 +18700,19,9.2,26,0.0 +18700,52,7,38,0.0 +18700,62,49.3,45,0.0 +18700,57,19.5,4,0.0 +18700,32,32,10,0.0 +18700,2,19,5,0.0 +18700,22,21,49,0.0 +18700,10,31,33,0.0 +18700,15,15.5,23,0.0 +18700,42,14,11,0.0 +18700,76,18,50,0.0 +18700,55,24,7,0.0 +18700,48,12.75,2,0.0 +18700,74,10,46,0.0 +18700,47,9.5,33,0.0 +18700,25,14,2,0.0 +18700,21,10,19,0.0 +18700,14,23.25,18,0.0 +18700,27,43.9,18,0.0 +18700,41,9.65,9,0.0 +18700,49,20,2,0.0 +18700,67,14,28,0.0 +18700,34,14,7,0.0 +18700,39,18,26,0.0 +18700,72,34.8,21,0.0 +18700,73,15,48,0.0 +18700,13,6,22,0.0 +18700,20,81,8,0.0 +18700,75,7.75,13,0.0 +18700,24,4.5,13,0.0 +18700,70,15,3,0.0 +18700,59,55,17,0.0 +18700,58,13.25,46,0.0 +18700,26,31.23,19,0.0 +18700,61,28.5,2,0.0 +18700,40,18.4,33,0.0 +18700,37,26,10,0.0 +18700,12,38,38,0.0 +18700,33,2.5,13,0.0 +18700,56,38,43,0.0 +18700,28,45.6,14,0.0 +18700,38,263.5,32,0.0 +18700,66,17,31,0.0 +18700,11,21,7,0.0 +18700,9,97,50,0.0 +18700,69,36,3,0.0 +18700,17,39,24,0.0 +18700,16,17.45,21,0.0 +18700,60,34,36,0.0 +18700,51,53,5,0.0 +18700,29,123.79,9,0.0 +18700,53,32.8,22,0.0 +18700,36,19,47,0.0 +18700,64,33.25,29,0.0 +18700,44,19.45,24,0.0 +18700,6,25,44,0.0 +18700,1,18,6,0.0 +18700,23,9,11,0.0 +18700,54,7.45,15,0.0 +18700,46,12,5,0.0 +18700,7,30,12,0.0 +18700,68,12.5,35,0.0 +18700,65,21.05,2,0.0 +18701,67,14,36,0.0 +18701,33,2.5,26,0.0 +18701,47,9.5,11,0.0 +18701,62,49.3,46,0.0 +18701,66,17,6,0.0 +18701,54,7.45,43,0.0 +18701,64,33.25,34,0.0 +18701,1,18,18,0.0 +18701,13,6,25,0.0 +18701,68,12.5,27,0.0 +18701,37,26,23,0.0 +18701,46,12,49,0.0 +18701,71,21.5,47,0.0 +18701,39,18,18,0.0 +18701,38,263.5,27,0.0 +18701,45,9.5,50,0.0 +18701,5,21.35,25,0.0 +18701,69,36,29,0.0 +18701,73,15,6,0.0 +18701,23,9,2,0.0 +18701,50,16.25,9,0.0 +18701,26,31.23,13,0.0 +18701,4,22,16,0.0 +18701,28,45.6,16,0.0 +18701,70,15,43,0.0 +18701,43,46,48,0.0 +18701,41,9.65,44,0.0 +18701,57,19.5,13,0.0 +18701,75,7.75,48,0.0 +18701,7,30,43,0.0 +18701,24,4.5,44,0.0 +18702,13,6,20,0.0 +18702,18,62.5,36,0.0 +18702,47,9.5,50,0.0 +18702,65,21.05,20,0.0 +18702,16,17.45,12,0.0 +18702,38,263.5,6,0.0 +18702,5,21.35,39,0.0 +18702,57,19.5,16,0.0 +18702,29,123.79,22,0.0 +18702,28,45.6,10,0.0 +18702,20,81,23,0.0 +18702,73,15,26,0.0 +18702,44,19.45,9,0.0 +18702,35,18,50,0.0 +18702,21,10,18,0.0 +18702,72,34.8,18,0.0 +18702,70,15,27,0.0 +18702,4,22,14,0.0 +18702,22,21,25,0.0 +18702,43,46,23,0.0 +18702,23,9,42,0.0 +18702,77,13,13,0.0 +18702,42,14,35,0.0 +18702,33,2.5,42,0.0 +18702,75,7.75,26,0.0 +18702,55,24,28,0.0 +18702,31,12.5,28,0.0 +18702,17,39,30,0.0 +18702,6,25,9,0.0 +18702,32,32,32,0.0 +18702,64,33.25,2,0.0 +18702,26,31.23,7,0.0 +18702,63,43.9,9,0.0 +18702,69,36,46,0.0 +18702,45,9.5,8,0.0 +18702,68,12.5,6,0.0 +18702,12,38,3,0.0 +18702,58,13.25,30,0.0 +18702,41,9.65,6,0.0 +18702,39,18,20,0.0 +18702,19,9.2,46,0.0 +18702,34,14,41,0.0 +18702,71,21.5,24,0.0 +18702,59,55,35,0.0 +18702,76,18,19,0.0 +18702,54,7.45,26,0.0 +18702,9,97,35,0.0 +18702,10,31,18,0.0 +18702,66,17,35,0.0 +18702,67,14,5,0.0 +18702,30,25.89,5,0.0 +18702,1,18,4,0.0 +18702,50,16.25,26,0.0 +18702,8,40,12,0.0 +18702,11,21,32,0.0 +18702,51,53,11,0.0 +18702,24,4.5,12,0.0 +18702,7,30,9,0.0 +18702,27,43.9,27,0.0 +18702,40,18.4,48,0.0 +18702,48,12.75,9,0.0 +18702,62,49.3,3,0.0 +18702,61,28.5,17,0.0 +18702,14,23.25,10,0.0 +18702,60,34,34,0.0 +18702,56,38,40,0.0 +18702,52,7,44,0.0 +18702,74,10,2,0.0 +18702,53,32.8,9,0.0 +18702,37,26,14,0.0 +18702,15,15.5,8,0.0 +18702,3,10,21,0.0 +18702,46,12,45,0.0 +18702,36,19,22,0.0 +18702,25,14,43,0.0 +18703,23,9,5,0.0 +18703,60,34,48,0.0 +18703,35,18,25,0.0 +18703,66,17,35,0.0 +18703,41,9.65,15,0.0 +18703,73,15,29,0.0 +18703,64,33.25,13,0.0 +18703,21,10,47,0.0 +18703,10,31,34,0.0 +18703,27,43.9,50,0.0 +18703,57,19.5,33,0.0 +18703,62,49.3,32,0.0 +18703,34,14,16,0.0 +18703,16,17.45,1,0.0 +18703,22,21,25,0.0 +18703,44,19.45,48,0.0 +18703,32,32,50,0.0 +18703,18,62.5,28,0.0 +18703,58,13.25,38,0.0 +18703,53,32.8,20,0.0 +18703,3,10,38,0.0 +18703,68,12.5,22,0.0 +18703,65,21.05,13,0.0 +18703,12,38,41,0.0 +18703,69,36,39,0.0 +18703,71,21.5,11,0.0 +18703,49,20,37,0.0 +18703,74,10,2,0.0 +18703,28,45.6,31,0.0 +18703,50,16.25,3,0.0 +18703,43,46,29,0.0 +18703,6,25,3,0.0 +18703,77,13,21,0.0 +18703,4,22,36,0.0 +18703,75,7.75,39,0.0 +18703,13,6,14,0.0 +18703,37,26,7,0.0 +18703,70,15,5,0.0 +18703,26,31.23,25,0.0 +18703,67,14,49,0.0 +18703,24,4.5,21,0.0 +18703,30,25.89,20,0.0 +18703,8,40,4,0.0 +18703,9,97,3,0.0 +18704,21,10,18,0.0 +18704,65,21.05,18,0.0 +18704,66,17,19,0.0 +18704,72,34.8,42,0.0 +18704,16,17.45,27,0.0 +18704,15,15.5,18,0.0 +18704,51,53,41,0.0 +18704,31,12.5,41,0.0 +18704,43,46,32,0.0 +18704,53,32.8,22,0.0 +18704,45,9.5,25,0.0 +18704,62,49.3,36,0.0 +18704,48,12.75,38,0.0 +18704,25,14,28,0.0 +18704,11,21,41,0.0 +18704,27,43.9,45,0.0 +18704,44,19.45,35,0.0 +18704,58,13.25,7,0.0 +18704,52,7,50,0.0 +18704,70,15,46,0.0 +18704,3,10,25,0.0 +18704,69,36,18,0.0 +18704,54,7.45,45,0.0 +18704,57,19.5,42,0.0 +18704,29,123.79,39,0.0 +18704,14,23.25,14,0.0 +18704,17,39,49,0.0 +18704,37,26,2,0.0 +18704,61,28.5,15,0.0 +18704,47,9.5,10,0.0 +18705,8,40,13,0.0 +18705,71,21.5,47,0.0 +18705,64,33.25,31,0.0 +18705,77,13,1,0.0 +18705,4,22,26,0.0 +18705,40,18.4,3,0.0 +18705,13,6,2,0.0 +18705,43,46,35,0.0 +18705,52,7,30,0.0 +18705,61,28.5,46,0.0 +18705,56,38,4,0.0 +18705,75,7.75,41,0.0 +18705,26,31.23,21,0.0 +18705,60,34,12,0.0 +18705,39,18,33,0.0 +18705,16,17.45,36,0.0 +18705,5,21.35,41,0.0 +18705,49,20,29,0.0 +18705,36,19,32,0.0 +18705,69,36,25,0.0 +18705,73,15,9,0.0 +18705,24,4.5,2,0.0 +18705,70,15,15,0.0 +18705,68,12.5,44,0.0 +18705,17,39,39,0.0 +18705,37,26,23,0.0 +18705,6,25,2,0.0 +18705,44,19.45,13,0.0 +18705,54,7.45,6,0.0 +18705,63,43.9,42,0.0 +18705,38,263.5,46,0.0 +18705,15,15.5,43,0.0 +18705,14,23.25,24,0.0 +18705,45,9.5,11,0.0 +18705,59,55,18,0.0 +18705,32,32,9,0.0 +18705,41,9.65,27,0.0 +18705,74,10,5,0.0 +18705,20,81,17,0.0 +18705,3,10,40,0.0 +18705,34,14,35,0.0 +18705,55,24,35,0.0 +18705,53,32.8,1,0.0 +18705,1,18,37,0.0 +18705,19,9.2,5,0.0 +18705,72,34.8,43,0.0 +18706,36,19,12,0.0 +18706,64,33.25,35,0.0 +18706,35,18,35,0.0 +18706,3,10,22,0.0 +18706,15,15.5,44,0.0 +18706,54,7.45,46,0.0 +18706,30,25.89,24,0.0 +18706,53,32.8,16,0.0 +18706,4,22,48,0.0 +18706,58,13.25,21,0.0 +18706,59,55,37,0.0 +18706,51,53,40,0.0 +18706,44,19.45,6,0.0 +18706,43,46,44,0.0 +18706,6,25,16,0.0 +18706,71,21.5,28,0.0 +18706,16,17.45,24,0.0 +18706,27,43.9,7,0.0 +18706,26,31.23,28,0.0 +18706,25,14,49,0.0 +18706,9,97,41,0.0 +18706,7,30,36,0.0 +18706,22,21,32,0.0 +18706,57,19.5,46,0.0 +18706,28,45.6,17,0.0 +18706,63,43.9,34,0.0 +18706,33,2.5,31,0.0 +18706,75,7.75,28,0.0 +18706,73,15,10,0.0 +18706,18,62.5,8,0.0 +18706,61,28.5,39,0.0 +18706,34,14,20,0.0 +18706,46,12,16,0.0 +18706,10,31,33,0.0 +18706,47,9.5,7,0.0 +18706,29,123.79,30,0.0 +18706,77,13,13,0.0 +18706,32,32,8,0.0 +18706,41,9.65,10,0.0 +18706,37,26,25,0.0 +18706,5,21.35,11,0.0 +18706,14,23.25,21,0.0 +18706,56,38,13,0.0 +18706,17,39,50,0.0 +18706,1,18,2,0.0 +18706,66,17,45,0.0 +18706,45,9.5,2,0.0 +18706,24,4.5,32,0.0 +18706,11,21,37,0.0 +18706,12,38,3,0.0 +18706,50,16.25,41,0.0 +18706,52,7,16,0.0 +18706,65,21.05,23,0.0 +18706,2,19,4,0.0 +18706,20,81,10,0.0 +18706,19,9.2,32,0.0 +18706,69,36,16,0.0 +18706,74,10,7,0.0 +18706,31,12.5,27,0.0 +18706,72,34.8,9,0.0 +18707,10,31,36,0.0 +18707,24,4.5,40,0.0 +18707,51,53,27,0.0 +18707,55,24,46,0.0 +18707,3,10,44,0.0 +18707,69,36,23,0.0 +18707,39,18,44,0.0 +18707,48,12.75,44,0.0 +18707,64,33.25,7,0.0 +18707,19,9.2,21,0.0 +18707,37,26,49,0.0 +18707,74,10,41,0.0 +18707,56,38,17,0.0 +18707,12,38,6,0.0 +18708,67,14,30,0.0 +18708,48,12.75,36,0.0 +18708,50,16.25,14,0.0 +18708,74,10,22,0.0 +18708,37,26,8,0.0 +18709,30,25.89,30,0.0 +18709,59,55,50,0.0 +18709,50,16.25,47,0.0 +18709,75,7.75,26,0.0 +18709,14,23.25,39,0.0 +18709,17,39,11,0.0 +18709,3,10,35,0.0 +18709,22,21,20,0.0 +18709,42,14,12,0.0 +18709,70,15,16,0.0 +18709,16,17.45,42,0.0 +18709,6,25,48,0.0 +18709,1,18,44,0.0 +18709,19,9.2,14,0.0 +18709,48,12.75,15,0.0 +18709,43,46,46,0.0 +18709,74,10,26,0.0 +18709,57,19.5,41,0.0 +18709,11,21,14,0.0 +18709,35,18,30,0.0 +18709,67,14,30,0.0 +18709,10,31,41,0.0 +18709,26,31.23,9,0.0 +18709,29,123.79,35,0.0 +18710,71,21.5,50,0.0 +18710,74,10,18,0.0 +18710,53,32.8,13,0.0 +18710,10,31,26,0.0 +18710,36,19,3,0.0 +18710,16,17.45,22,0.0 +18710,18,62.5,44,0.0 +18710,31,12.5,24,0.0 +18710,11,21,29,0.0 +18710,5,21.35,33,0.0 +18710,3,10,32,0.0 +18710,8,40,28,0.0 +18710,9,97,27,0.0 +18710,50,16.25,4,0.0 +18710,61,28.5,15,0.0 +18710,67,14,8,0.0 +18710,58,13.25,46,0.0 +18710,38,263.5,50,0.0 +18710,40,18.4,34,0.0 +18710,4,22,43,0.0 +18710,41,9.65,43,0.0 +18710,32,32,5,0.0 +18710,14,23.25,19,0.0 +18711,66,17,42,0.0 +18711,43,46,30,0.0 +18711,30,25.89,3,0.0 +18711,31,12.5,20,0.0 +18711,11,21,27,0.0 +18711,47,9.5,10,0.0 +18711,70,15,6,0.0 +18711,76,18,7,0.0 +18711,14,23.25,2,0.0 +18711,12,38,21,0.0 +18711,74,10,40,0.0 +18712,7,30,38,0.0 +18712,17,39,33,0.0 +18712,22,21,44,0.0 +18712,46,12,6,0.0 +18712,59,55,14,0.0 +18712,65,21.05,18,0.0 +18712,25,14,6,0.0 +18712,3,10,12,0.0 +18712,77,13,12,0.0 +18712,35,18,35,0.0 +18713,32,32,47,0.0 +18713,41,9.65,32,0.0 +18713,76,18,2,0.0 +18714,60,34,10,0.0 +18714,28,45.6,38,0.0 +18714,39,18,24,0.0 +18714,36,19,48,0.0 +18714,20,81,24,0.0 +18714,7,30,38,0.0 +18714,50,16.25,37,0.0 +18714,47,9.5,20,0.0 +18714,43,46,32,0.0 +18714,44,19.45,31,0.0 +18714,3,10,24,0.0 +18714,68,12.5,3,0.0 +18714,76,18,44,0.0 +18714,56,38,16,0.0 +18714,75,7.75,14,0.0 +18714,30,25.89,40,0.0 +18714,15,15.5,28,0.0 +18714,40,18.4,25,0.0 +18714,29,123.79,8,0.0 +18714,67,14,12,0.0 +18714,24,4.5,47,0.0 +18714,42,14,37,0.0 +18714,10,31,16,0.0 +18714,70,15,1,0.0 +18714,2,19,4,0.0 +18714,57,19.5,8,0.0 +18714,9,97,27,0.0 +18714,48,12.75,2,0.0 +18714,46,12,6,0.0 +18714,31,12.5,26,0.0 +18714,13,6,37,0.0 +18714,55,24,45,0.0 +18714,52,7,5,0.0 +18714,33,2.5,39,0.0 +18714,59,55,24,0.0 +18714,25,14,35,0.0 +18714,73,15,25,0.0 +18714,54,7.45,2,0.0 +18714,4,22,27,0.0 +18714,66,17,49,0.0 +18714,23,9,35,0.0 +18714,18,62.5,39,0.0 +18714,69,36,46,0.0 +18714,51,53,42,0.0 +18715,75,7.75,47,0.0 +18715,62,49.3,8,0.0 +18716,43,46,44,0.0 +18716,7,30,3,0.0 +18716,21,10,4,0.0 +18716,69,36,36,0.0 +18716,31,12.5,37,0.0 +18716,48,12.75,48,0.0 +18716,28,45.6,2,0.0 +18716,52,7,19,0.0 +18716,18,62.5,50,0.0 +18716,61,28.5,33,0.0 +18716,4,22,1,0.0 +18716,26,31.23,8,0.0 +18716,30,25.89,18,0.0 +18716,14,23.25,16,0.0 +18716,77,13,17,0.0 +18716,67,14,38,0.0 +18716,50,16.25,47,0.0 +18716,37,26,24,0.0 +18716,29,123.79,11,0.0 +18716,45,9.5,42,0.0 +18716,72,34.8,44,0.0 +18716,9,97,36,0.0 +18716,25,14,16,0.0 +18716,46,12,41,0.0 +18716,55,24,50,0.0 +18716,68,12.5,44,0.0 +18716,71,21.5,50,0.0 +18716,22,21,33,0.0 +18716,16,17.45,45,0.0 +18716,27,43.9,25,0.0 +18716,19,9.2,21,0.0 +18716,58,13.25,11,0.0 +18716,65,21.05,23,0.0 +18716,2,19,26,0.0 +18716,60,34,4,0.0 +18716,54,7.45,14,0.0 +18716,36,19,44,0.0 +18716,76,18,12,0.0 +18716,10,31,26,0.0 +18716,11,21,39,0.0 +18716,5,21.35,22,0.0 +18716,42,14,44,0.0 +18716,32,32,23,0.0 +18716,49,20,31,0.0 +18716,1,18,24,0.0 +18716,53,32.8,15,0.0 +18716,24,4.5,15,0.0 +18716,6,25,22,0.0 +18716,34,14,22,0.0 +18716,17,39,17,0.0 +18716,35,18,33,0.0 +18716,73,15,25,0.0 +18716,33,2.5,27,0.0 +18716,3,10,38,0.0 +18716,59,55,27,0.0 +18716,57,19.5,10,0.0 +18716,20,81,44,0.0 +18716,41,9.65,17,0.0 +18716,47,9.5,31,0.0 +18716,75,7.75,40,0.0 +18716,62,49.3,32,0.0 +18717,51,53,49,0.0 +18717,55,24,10,0.0 +18717,32,32,18,0.0 +18717,21,10,37,0.0 +18717,43,46,19,0.0 +18717,30,25.89,9,0.0 +18717,4,22,10,0.0 +18717,1,18,14,0.0 +18717,47,9.5,43,0.0 +18717,48,12.75,5,0.0 +18717,18,62.5,47,0.0 +18717,64,33.25,35,0.0 +18717,28,45.6,13,0.0 +18717,59,55,26,0.0 +18717,62,49.3,28,0.0 +18717,66,17,42,0.0 +18717,76,18,16,0.0 +18717,73,15,8,0.0 +18717,74,10,15,0.0 +18717,41,9.65,50,0.0 +18717,46,12,22,0.0 +18717,37,26,12,0.0 +18717,19,9.2,33,0.0 +18717,16,17.45,36,0.0 +18717,61,28.5,50,0.0 +18717,42,14,25,0.0 +18717,11,21,49,0.0 +18717,69,36,4,0.0 +18717,58,13.25,40,0.0 +18717,38,263.5,17,0.0 +18717,6,25,22,0.0 +18717,14,23.25,31,0.0 +18717,9,97,35,0.0 +18717,25,14,38,0.0 +18717,70,15,12,0.0 +18718,15,15.5,25,0.0 +18718,32,32,18,0.0 +18718,75,7.75,41,0.0 +18718,72,34.8,4,0.0 +18718,51,53,2,0.0 +18718,69,36,6,0.0 +18718,63,43.9,26,0.0 +18718,18,62.5,41,0.0 +18718,34,14,26,0.0 +18718,35,18,14,0.0 +18718,19,9.2,36,0.0 +18718,21,10,48,0.0 +18718,68,12.5,45,0.0 +18718,53,32.8,26,0.0 +18718,20,81,50,0.0 +18718,30,25.89,47,0.0 +18718,13,6,9,0.0 +18718,14,23.25,40,0.0 +18718,50,16.25,10,0.0 +18719,37,26,36,0.0 +18719,63,43.9,48,0.0 +18719,67,14,7,0.0 +18719,7,30,3,0.0 +18719,43,46,23,0.0 +18719,21,10,43,0.0 +18719,18,62.5,28,0.0 +18719,32,32,8,0.0 +18719,53,32.8,26,0.0 +18719,75,7.75,24,0.0 +18719,65,21.05,13,0.0 +18719,4,22,10,0.0 +18719,68,12.5,17,0.0 +18719,1,18,32,0.0 +18719,49,20,10,0.0 +18719,61,28.5,4,0.0 +18719,42,14,23,0.0 +18719,26,31.23,45,0.0 +18719,73,15,25,0.0 +18719,64,33.25,11,0.0 +18719,72,34.8,12,0.0 +18719,5,21.35,25,0.0 +18719,38,263.5,46,0.0 +18719,8,40,37,0.0 +18719,45,9.5,2,0.0 +18719,6,25,50,0.0 +18719,50,16.25,22,0.0 +18719,24,4.5,37,0.0 +18719,58,13.25,31,0.0 +18719,66,17,42,0.0 +18719,55,24,13,0.0 +18719,40,18.4,6,0.0 +18719,54,7.45,16,0.0 +18719,31,12.5,1,0.0 +18719,27,43.9,31,0.0 +18719,20,81,12,0.0 +18720,16,17.45,6,0.0 +18720,51,53,8,0.0 +18720,48,12.75,32,0.0 +18720,17,39,38,0.0 +18720,18,62.5,45,0.0 +18720,58,13.25,29,0.0 +18720,37,26,16,0.0 +18720,14,23.25,23,0.0 +18720,66,17,38,0.0 +18720,74,10,28,0.0 +18720,3,10,49,0.0 +18720,56,38,29,0.0 +18720,70,15,17,0.0 +18720,38,263.5,23,0.0 +18720,2,19,35,0.0 +18720,5,21.35,21,0.0 +18720,62,49.3,44,0.0 +18720,7,30,32,0.0 +18720,34,14,34,0.0 +18720,44,19.45,11,0.0 +18720,36,19,34,0.0 +18720,55,24,49,0.0 +18720,43,46,33,0.0 +18720,40,18.4,11,0.0 +18720,20,81,10,0.0 +18720,4,22,45,0.0 +18720,50,16.25,41,0.0 +18720,24,4.5,33,0.0 +18720,32,32,14,0.0 +18720,57,19.5,39,0.0 +18720,13,6,24,0.0 +18720,12,38,9,0.0 +18720,76,18,20,0.0 +18720,65,21.05,47,0.0 +18720,61,28.5,46,0.0 +18720,77,13,28,0.0 +18720,63,43.9,21,0.0 +18720,54,7.45,27,0.0 +18720,39,18,32,0.0 +18720,59,55,32,0.0 +18720,29,123.79,33,0.0 +18720,6,25,2,0.0 +18720,52,7,11,0.0 +18720,49,20,2,0.0 +18720,15,15.5,9,0.0 +18720,67,14,15,0.0 +18720,31,12.5,7,0.0 +18720,35,18,46,0.0 +18720,47,9.5,23,0.0 +18720,23,9,36,0.0 +18720,27,43.9,23,0.0 +18720,64,33.25,42,0.0 +18720,41,9.65,12,0.0 +18720,28,45.6,40,0.0 +18720,26,31.23,7,0.0 +18720,69,36,17,0.0 +18720,10,31,35,0.0 +18720,22,21,19,0.0 +18720,75,7.75,20,0.0 +18720,68,12.5,26,0.0 +18720,19,9.2,46,0.0 +18721,42,14,15,0.0 +18721,17,39,29,0.0 +18721,2,19,4,0.0 +18721,36,19,25,0.0 +18721,40,18.4,31,0.0 +18721,70,15,31,0.0 +18721,60,34,12,0.0 +18721,30,25.89,30,0.0 +18721,23,9,19,0.0 +18721,20,81,16,0.0 +18721,22,21,22,0.0 +18721,8,40,26,0.0 +18721,59,55,48,0.0 +18721,52,7,5,0.0 +18721,5,21.35,4,0.0 +18721,74,10,41,0.0 +18721,19,9.2,43,0.0 +18721,7,30,40,0.0 +18721,53,32.8,3,0.0 +18721,44,19.45,31,0.0 +18721,71,21.5,33,0.0 +18721,13,6,31,0.0 +18721,18,62.5,28,0.0 +18721,28,45.6,46,0.0 +18721,27,43.9,42,0.0 +18721,31,12.5,8,0.0 +18721,35,18,27,0.0 +18721,56,38,12,0.0 +18721,1,18,33,0.0 +18721,34,14,22,0.0 +18721,58,13.25,27,0.0 +18721,3,10,21,0.0 +18721,10,31,41,0.0 +18721,48,12.75,27,0.0 +18721,37,26,43,0.0 +18721,73,15,21,0.0 +18721,77,13,18,0.0 +18721,62,49.3,45,0.0 +18721,21,10,17,0.0 +18721,67,14,26,0.0 +18721,38,263.5,15,0.0 +18721,26,31.23,14,0.0 +18721,15,15.5,15,0.0 +18721,46,12,21,0.0 +18721,75,7.75,46,0.0 +18721,69,36,27,0.0 +18721,45,9.5,20,0.0 +18721,51,53,4,0.0 +18721,33,2.5,46,0.0 +18721,25,14,46,0.0 +18721,41,9.65,20,0.0 +18721,61,28.5,3,0.0 +18721,29,123.79,5,0.0 +18721,11,21,18,0.0 +18721,57,19.5,13,0.0 +18721,50,16.25,5,0.0 +18721,32,32,35,0.0 +18721,4,22,19,0.0 +18721,55,24,32,0.0 +18721,43,46,29,0.0 +18721,47,9.5,21,0.0 +18721,16,17.45,22,0.0 +18721,66,17,14,0.0 +18721,6,25,26,0.0 +18721,12,38,7,0.0 +18721,49,20,11,0.0 +18721,72,34.8,27,0.0 +18721,65,21.05,27,0.0 +18721,76,18,10,0.0 +18721,63,43.9,5,0.0 +18721,24,4.5,37,0.0 +18721,9,97,32,0.0 +18721,64,33.25,20,0.0 +18721,39,18,47,0.0 +18721,68,12.5,35,0.0 +18721,54,7.45,48,0.0 +18721,14,23.25,38,0.0 +18722,64,33.25,1,0.0 +18722,33,2.5,3,0.0 +18722,29,123.79,23,0.0 +18722,18,62.5,14,0.0 +18722,70,15,43,0.0 +18722,47,9.5,35,0.0 +18722,35,18,32,0.0 +18722,59,55,2,0.0 +18722,13,6,34,0.0 +18722,61,28.5,11,0.0 +18722,50,16.25,23,0.0 +18722,72,34.8,25,0.0 +18722,28,45.6,35,0.0 +18722,22,21,12,0.0 +18722,55,24,8,0.0 +18722,16,17.45,19,0.0 +18722,27,43.9,16,0.0 +18722,10,31,19,0.0 +18722,65,21.05,36,0.0 +18722,42,14,26,0.0 +18722,8,40,43,0.0 +18722,49,20,47,0.0 +18722,76,18,47,0.0 +18722,75,7.75,17,0.0 +18722,41,9.65,8,0.0 +18722,1,18,25,0.0 +18722,73,15,25,0.0 +18722,53,32.8,42,0.0 +18722,71,21.5,50,0.0 +18722,58,13.25,46,0.0 +18722,67,14,44,0.0 +18723,77,13,8,0.0 +18723,65,21.05,21,0.0 +18723,52,7,2,0.0 +18723,67,14,49,0.0 +18723,40,18.4,16,0.0 +18723,48,12.75,48,0.0 +18723,27,43.9,25,0.0 +18723,23,9,26,0.0 +18723,1,18,29,0.0 +18723,74,10,33,0.0 +18723,53,32.8,11,0.0 +18723,51,53,38,0.0 +18723,59,55,45,0.0 +18723,20,81,37,0.0 +18723,58,13.25,7,0.0 +18723,9,97,49,0.0 +18723,46,12,12,0.0 +18723,70,15,7,0.0 +18723,24,4.5,11,0.0 +18723,64,33.25,48,0.0 +18723,32,32,22,0.0 +18723,26,31.23,41,0.0 +18723,60,34,42,0.0 +18723,42,14,32,0.0 +18723,13,6,5,0.0 +18723,72,34.8,14,0.0 +18723,41,9.65,14,0.0 +18723,61,28.5,15,0.0 +18723,6,25,39,0.0 +18723,11,21,39,0.0 +18723,45,9.5,5,0.0 +18723,34,14,26,0.0 +18723,56,38,20,0.0 +18723,69,36,37,0.0 +18723,71,21.5,47,0.0 +18723,68,12.5,4,0.0 +18723,28,45.6,28,0.0 +18723,76,18,18,0.0 +18723,43,46,4,0.0 +18723,47,9.5,24,0.0 +18723,50,16.25,31,0.0 +18723,33,2.5,50,0.0 +18723,73,15,25,0.0 +18723,38,263.5,6,0.0 +18723,25,14,37,0.0 +18723,37,26,46,0.0 +18723,36,19,28,0.0 +18724,46,12,23,0.0 +18724,19,9.2,49,0.0 +18724,20,81,26,0.0 +18724,32,32,44,0.0 +18724,62,49.3,3,0.0 +18724,77,13,38,0.0 +18724,44,19.45,18,0.0 +18724,35,18,21,0.0 +18724,11,21,41,0.0 +18724,41,9.65,8,0.0 +18724,59,55,46,0.0 +18724,28,45.6,34,0.0 +18724,71,21.5,42,0.0 +18724,70,15,17,0.0 +18724,1,18,1,0.0 +18724,17,39,22,0.0 +18724,14,23.25,26,0.0 +18724,60,34,29,0.0 +18724,30,25.89,4,0.0 +18724,74,10,24,0.0 +18724,72,34.8,25,0.0 +18724,67,14,6,0.0 +18724,61,28.5,44,0.0 +18724,13,6,16,0.0 +18724,49,20,45,0.0 +18724,4,22,44,0.0 +18724,31,12.5,15,0.0 +18724,75,7.75,31,0.0 +18724,68,12.5,18,0.0 +18724,55,24,30,0.0 +18724,45,9.5,16,0.0 +18724,21,10,32,0.0 +18724,3,10,48,0.0 +18724,69,36,38,0.0 +18724,52,7,4,0.0 +18724,10,31,46,0.0 +18724,7,30,27,0.0 +18724,50,16.25,4,0.0 +18724,40,18.4,16,0.0 +18725,48,12.75,10,0.0 +18725,6,25,42,0.0 +18725,23,9,36,0.0 +18725,36,19,24,0.0 +18725,33,2.5,3,0.0 +18725,73,15,35,0.0 +18725,67,14,44,0.0 +18725,65,21.05,35,0.0 +18725,53,32.8,15,0.0 +18725,43,46,34,0.0 +18725,41,9.65,45,0.0 +18725,47,9.5,4,0.0 +18725,70,15,36,0.0 +18725,40,18.4,44,0.0 +18725,42,14,42,0.0 +18725,46,12,49,0.0 +18725,76,18,22,0.0 +18725,3,10,48,0.0 +18726,64,33.25,37,0.0 +18726,5,21.35,21,0.0 +18726,56,38,8,0.0 +18726,3,10,8,0.0 +18726,19,9.2,1,0.0 +18726,69,36,41,0.0 +18726,39,18,9,0.0 +18726,15,15.5,38,0.0 +18726,26,31.23,11,0.0 +18726,61,28.5,41,0.0 +18726,74,10,12,0.0 +18726,46,12,24,0.0 +18726,51,53,37,0.0 +18726,29,123.79,11,0.0 +18726,43,46,35,0.0 +18726,58,13.25,37,0.0 +18726,25,14,46,0.0 +18726,67,14,17,0.0 +18726,18,62.5,31,0.0 +18726,20,81,20,0.0 +18726,32,32,49,0.0 +18726,33,2.5,15,0.0 +18726,52,7,2,0.0 +18726,65,21.05,16,0.0 +18726,42,14,5,0.0 +18726,7,30,24,0.0 +18726,35,18,47,0.0 +18726,17,39,13,0.0 +18726,53,32.8,16,0.0 +18726,14,23.25,30,0.0 +18726,11,21,23,0.0 +18726,1,18,3,0.0 +18726,36,19,30,0.0 +18726,44,19.45,31,0.0 +18726,63,43.9,12,0.0 +18726,4,22,4,0.0 +18726,47,9.5,3,0.0 +18726,22,21,43,0.0 +18726,24,4.5,33,0.0 +18726,37,26,25,0.0 +18726,66,17,10,0.0 +18726,16,17.45,37,0.0 +18726,54,7.45,41,0.0 +18726,68,12.5,3,0.0 +18726,50,16.25,8,0.0 +18726,62,49.3,23,0.0 +18726,31,12.5,2,0.0 +18726,23,9,24,0.0 +18726,76,18,29,0.0 +18726,49,20,12,0.0 +18726,40,18.4,35,0.0 +18726,48,12.75,20,0.0 +18726,41,9.65,38,0.0 +18727,29,123.79,32,0.0 +18727,13,6,1,0.0 +18727,3,10,5,0.0 +18727,24,4.5,50,0.0 +18727,50,16.25,8,0.0 +18727,16,17.45,1,0.0 +18727,37,26,32,0.0 +18727,23,9,9,0.0 +18727,1,18,26,0.0 +18727,43,46,11,0.0 +18727,76,18,6,0.0 +18727,7,30,4,0.0 +18727,30,25.89,42,0.0 +18727,5,21.35,30,0.0 +18727,15,15.5,13,0.0 +18727,63,43.9,31,0.0 +18727,31,12.5,11,0.0 +18727,67,14,5,0.0 +18727,77,13,27,0.0 +18727,49,20,37,0.0 +18727,6,25,15,0.0 +18727,35,18,27,0.0 +18727,11,21,44,0.0 +18727,66,17,28,0.0 +18727,58,13.25,44,0.0 +18727,60,34,15,0.0 +18727,2,19,17,0.0 +18727,34,14,1,0.0 +18727,59,55,22,0.0 +18727,25,14,41,0.0 +18727,70,15,33,0.0 +18727,12,38,15,0.0 +18727,57,19.5,21,0.0 +18727,40,18.4,25,0.0 +18727,26,31.23,31,0.0 +18727,14,23.25,26,0.0 +18727,71,21.5,7,0.0 +18727,17,39,25,0.0 +18727,54,7.45,6,0.0 +18727,21,10,31,0.0 +18727,9,97,12,0.0 +18727,73,15,39,0.0 +18727,52,7,24,0.0 +18727,62,49.3,35,0.0 +18727,53,32.8,40,0.0 +18727,19,9.2,20,0.0 +18727,28,45.6,19,0.0 +18727,75,7.75,43,0.0 +18728,49,20,22,0.0 +18728,46,12,25,0.0 +18728,13,6,29,0.0 +18728,58,13.25,49,0.0 +18728,26,31.23,42,0.0 +18728,47,9.5,38,0.0 +18728,64,33.25,40,0.0 +18728,70,15,18,0.0 +18728,17,39,8,0.0 +18728,76,18,12,0.0 +18728,52,7,42,0.0 +18728,54,7.45,42,0.0 +18728,30,25.89,47,0.0 +18728,31,12.5,7,0.0 +18728,1,18,6,0.0 +18728,74,10,30,0.0 +18728,32,32,43,0.0 +18728,28,45.6,15,0.0 +18728,44,19.45,27,0.0 +18728,77,13,21,0.0 +18728,71,21.5,4,0.0 +18728,25,14,35,0.0 +18728,6,25,5,0.0 +18728,33,2.5,39,0.0 +18728,24,4.5,50,0.0 +18728,75,7.75,18,0.0 +18728,38,263.5,38,0.0 +18728,9,97,30,0.0 +18728,11,21,46,0.0 +18728,27,43.9,27,0.0 +18728,29,123.79,36,0.0 +18728,37,26,33,0.0 +18728,5,21.35,6,0.0 +18728,55,24,22,0.0 +18728,20,81,41,0.0 +18728,21,10,24,0.0 +18728,41,9.65,29,0.0 +18728,59,55,20,0.0 +18728,53,32.8,3,0.0 +18728,40,18.4,6,0.0 +18728,56,38,25,0.0 +18728,65,21.05,6,0.0 +18728,62,49.3,31,0.0 +18728,48,12.75,43,0.0 +18728,51,53,4,0.0 +18728,60,34,44,0.0 +18728,16,17.45,41,0.0 +18728,12,38,15,0.0 +18728,39,18,42,0.0 +18728,72,34.8,46,0.0 +18728,2,19,47,0.0 +18728,8,40,24,0.0 +18728,73,15,37,0.0 +18728,61,28.5,27,0.0 +18728,63,43.9,46,0.0 +18728,43,46,41,0.0 +18728,36,19,31,0.0 +18728,35,18,24,0.0 +18728,69,36,34,0.0 +18728,4,22,11,0.0 +18728,10,31,18,0.0 +18728,18,62.5,7,0.0 +18728,68,12.5,41,0.0 +18728,50,16.25,3,0.0 +18728,67,14,22,0.0 +18728,3,10,31,0.0 +18728,42,14,11,0.0 +18728,7,30,35,0.0 +18728,23,9,2,0.0 +18729,49,20,35,0.0 +18729,65,21.05,31,0.0 +18729,42,14,9,0.0 +18729,77,13,26,0.0 +18729,76,18,20,0.0 +18729,28,45.6,41,0.0 +18729,64,33.25,3,0.0 +18729,53,32.8,43,0.0 +18729,10,31,26,0.0 +18729,68,12.5,24,0.0 +18729,9,97,21,0.0 +18729,2,19,23,0.0 +18729,40,18.4,27,0.0 +18729,56,38,22,0.0 +18729,39,18,37,0.0 +18729,19,9.2,40,0.0 +18729,60,34,7,0.0 +18729,63,43.9,19,0.0 +18729,37,26,34,0.0 +18729,30,25.89,35,0.0 +18729,58,13.25,30,0.0 +18729,62,49.3,29,0.0 +18729,70,15,20,0.0 +18729,45,9.5,33,0.0 +18729,21,10,19,0.0 +18729,14,23.25,16,0.0 +18729,24,4.5,30,0.0 +18729,55,24,35,0.0 +18729,26,31.23,42,0.0 +18729,3,10,10,0.0 +18729,75,7.75,15,0.0 +18729,13,6,18,0.0 +18729,50,16.25,41,0.0 +18729,46,12,47,0.0 +18729,8,40,18,0.0 +18729,4,22,12,0.0 +18729,35,18,32,0.0 +18729,29,123.79,49,0.0 +18729,31,12.5,2,0.0 +18729,23,9,42,0.0 +18729,44,19.45,2,0.0 +18729,36,19,17,0.0 +18729,25,14,35,0.0 +18729,61,28.5,2,0.0 +18729,38,263.5,5,0.0 +18729,67,14,35,0.0 +18729,22,21,43,0.0 +18729,74,10,31,0.0 +18729,69,36,9,0.0 +18729,18,62.5,13,0.0 +18729,16,17.45,23,0.0 +18729,57,19.5,14,0.0 +18729,15,15.5,29,0.0 +18729,11,21,46,0.0 +18729,59,55,39,0.0 +18729,48,12.75,41,0.0 +18729,66,17,25,0.0 +18729,47,9.5,8,0.0 +18729,54,7.45,45,0.0 +18729,43,46,29,0.0 +18729,72,34.8,43,0.0 +18729,52,7,8,0.0 +18729,6,25,16,0.0 +18729,5,21.35,9,0.0 +18729,71,21.5,34,0.0 +18729,34,14,25,0.0 +18729,73,15,40,0.0 +18729,17,39,25,0.0 +18729,7,30,5,0.0 +18729,41,9.65,7,0.0 +18729,32,32,28,0.0 +18729,27,43.9,13,0.0 +18730,31,12.5,31,0.0 +18730,72,34.8,18,0.0 +18730,3,10,14,0.0 +18730,38,263.5,38,0.0 +18730,59,55,32,0.0 +18730,77,13,15,0.0 +18730,20,81,32,0.0 +18730,73,15,6,0.0 +18730,67,14,33,0.0 +18730,11,21,30,0.0 +18730,15,15.5,7,0.0 +18730,41,9.65,49,0.0 +18730,40,18.4,24,0.0 +18731,50,16.25,43,0.0 +18731,52,7,42,0.0 +18731,75,7.75,19,0.0 +18731,64,33.25,29,0.0 +18731,66,17,25,0.0 +18731,18,62.5,20,0.0 +18731,56,38,26,0.0 +18731,40,18.4,23,0.0 +18731,10,31,13,0.0 +18731,57,19.5,32,0.0 +18731,26,31.23,14,0.0 +18731,55,24,39,0.0 +18731,60,34,36,0.0 +18731,16,17.45,49,0.0 +18731,1,18,29,0.0 +18731,46,12,29,0.0 +18731,58,13.25,5,0.0 +18731,31,12.5,15,0.0 +18731,14,23.25,14,0.0 +18731,45,9.5,28,0.0 +18731,29,123.79,48,0.0 +18731,38,263.5,41,0.0 +18731,15,15.5,21,0.0 +18731,36,19,26,0.0 +18731,69,36,21,0.0 +18731,28,45.6,11,0.0 +18731,21,10,41,0.0 +18732,76,18,35,0.0 +18732,63,43.9,16,0.0 +18732,14,23.25,22,0.0 +18732,5,21.35,46,0.0 +18732,45,9.5,28,0.0 +18732,19,9.2,5,0.0 +18732,65,21.05,16,0.0 +18732,59,55,1,0.0 +18732,50,16.25,33,0.0 +18732,67,14,11,0.0 +18732,61,28.5,37,0.0 +18732,57,19.5,8,0.0 +18732,11,21,15,0.0 +18732,30,25.89,39,0.0 +18732,77,13,19,0.0 +18732,21,10,35,0.0 +18732,2,19,49,0.0 +18732,73,15,2,0.0 +18732,23,9,42,0.0 +18732,54,7.45,22,0.0 +18732,4,22,22,0.0 +18732,18,62.5,43,0.0 +18732,29,123.79,35,0.0 +18732,47,9.5,50,0.0 +18732,60,34,12,0.0 +18732,48,12.75,8,0.0 +18732,39,18,50,0.0 +18732,7,30,25,0.0 +18732,15,15.5,3,0.0 +18732,53,32.8,2,0.0 +18732,49,20,46,0.0 +18732,16,17.45,24,0.0 +18732,12,38,39,0.0 +18732,32,32,37,0.0 +18732,24,4.5,4,0.0 +18732,9,97,1,0.0 +18732,70,15,47,0.0 +18732,36,19,30,0.0 +18732,41,9.65,2,0.0 +18732,51,53,25,0.0 +18732,46,12,3,0.0 +18732,28,45.6,38,0.0 +18732,22,21,17,0.0 +18732,13,6,26,0.0 +18732,69,36,24,0.0 +18732,62,49.3,3,0.0 +18733,33,2.5,30,0.0 +18733,13,6,46,0.0 +18733,9,97,16,0.0 +18733,4,22,10,0.0 +18733,63,43.9,1,0.0 +18733,49,20,43,0.0 +18733,8,40,14,0.0 +18733,54,7.45,4,0.0 +18733,60,34,14,0.0 +18733,52,7,33,0.0 +18733,44,19.45,10,0.0 +18733,22,21,34,0.0 +18733,47,9.5,40,0.0 +18733,72,34.8,18,0.0 +18733,46,12,50,0.0 +18733,18,62.5,17,0.0 +18733,62,49.3,50,0.0 +18733,7,30,34,0.0 +18733,67,14,14,0.0 +18733,40,18.4,44,0.0 +18733,31,12.5,3,0.0 +18733,5,21.35,15,0.0 +18733,51,53,44,0.0 +18733,61,28.5,17,0.0 +18733,64,33.25,14,0.0 +18733,36,19,43,0.0 +18733,57,19.5,6,0.0 +18733,26,31.23,3,0.0 +18733,3,10,45,0.0 +18733,38,263.5,43,0.0 +18733,21,10,33,0.0 +18733,55,24,4,0.0 +18733,65,21.05,39,0.0 +18733,10,31,14,0.0 +18733,45,9.5,16,0.0 +18733,77,13,22,0.0 +18733,71,21.5,2,0.0 +18733,25,14,9,0.0 +18733,76,18,2,0.0 +18734,40,18.4,3,0.0 +18734,77,13,23,0.0 +18734,48,12.75,18,0.0 +18734,71,21.5,10,0.0 +18734,8,40,27,0.0 +18734,61,28.5,12,0.0 +18734,10,31,31,0.0 +18734,21,10,1,0.0 +18734,56,38,31,0.0 +18734,44,19.45,9,0.0 +18734,35,18,34,0.0 +18734,51,53,38,0.0 +18734,29,123.79,41,0.0 +18734,64,33.25,12,0.0 +18734,14,23.25,2,0.0 +18734,46,12,23,0.0 +18734,47,9.5,6,0.0 +18734,1,18,20,0.0 +18734,70,15,25,0.0 +18734,52,7,7,0.0 +18734,3,10,43,0.0 +18734,23,9,21,0.0 +18734,55,24,20,0.0 +18734,59,55,7,0.0 +18734,58,13.25,44,0.0 +18734,36,19,13,0.0 +18734,33,2.5,49,0.0 +18734,73,15,19,0.0 +18734,19,9.2,9,0.0 +18734,67,14,49,0.0 +18734,49,20,36,0.0 +18734,57,19.5,5,0.0 +18734,60,34,12,0.0 +18734,7,30,39,0.0 +18734,43,46,35,0.0 +18734,27,43.9,42,0.0 +18734,75,7.75,19,0.0 +18734,62,49.3,37,0.0 +18734,66,17,44,0.0 +18735,35,18,42,0.0 +18735,29,123.79,49,0.0 +18735,13,6,2,0.0 +18735,26,31.23,12,0.0 +18735,48,12.75,48,0.0 +18735,41,9.65,37,0.0 +18735,64,33.25,39,0.0 +18735,52,7,17,0.0 +18735,42,14,23,0.0 +18735,72,34.8,16,0.0 +18735,54,7.45,50,0.0 +18735,38,263.5,35,0.0 +18735,76,18,17,0.0 +18735,17,39,35,0.0 +18735,47,9.5,21,0.0 +18735,33,2.5,43,0.0 +18735,3,10,12,0.0 +18735,44,19.45,30,0.0 +18735,57,19.5,18,0.0 +18735,2,19,24,0.0 +18735,7,30,8,0.0 +18735,75,7.75,10,0.0 +18735,21,10,10,0.0 +18735,27,43.9,23,0.0 +18735,73,15,29,0.0 +18735,16,17.45,42,0.0 +18735,22,21,26,0.0 +18735,20,81,44,0.0 +18735,51,53,44,0.0 +18735,30,25.89,49,0.0 +18735,58,13.25,8,0.0 +18735,62,49.3,46,0.0 +18735,46,12,35,0.0 +18735,56,38,17,0.0 +18735,68,12.5,29,0.0 +18735,53,32.8,50,0.0 +18736,40,18.4,43,0.0 +18736,63,43.9,47,0.0 +18736,57,19.5,24,0.0 +18736,43,46,45,0.0 +18736,65,21.05,48,0.0 +18736,31,12.5,28,0.0 +18736,44,19.45,42,0.0 +18736,5,21.35,43,0.0 +18736,72,34.8,36,0.0 +18736,30,25.89,13,0.0 +18736,73,15,20,0.0 +18736,49,20,46,0.0 +18736,7,30,11,0.0 +18736,4,22,44,0.0 +18736,69,36,25,0.0 +18736,25,14,49,0.0 +18736,68,12.5,46,0.0 +18736,76,18,27,0.0 +18736,66,17,12,0.0 +18736,23,9,41,0.0 +18736,26,31.23,17,0.0 +18736,27,43.9,32,0.0 +18736,41,9.65,49,0.0 +18736,50,16.25,38,0.0 +18736,24,4.5,23,0.0 +18736,22,21,26,0.0 +18736,13,6,20,0.0 +18736,28,45.6,48,0.0 +18736,29,123.79,20,0.0 +18736,61,28.5,40,0.0 +18736,19,9.2,45,0.0 +18736,47,9.5,4,0.0 +18736,36,19,17,0.0 +18736,56,38,24,0.0 +18736,9,97,44,0.0 +18736,51,53,36,0.0 +18736,45,9.5,11,0.0 +18736,62,49.3,7,0.0 +18736,20,81,50,0.0 +18736,1,18,36,0.0 +18736,21,10,10,0.0 +18736,67,14,47,0.0 +18736,34,14,21,0.0 +18736,54,7.45,44,0.0 +18736,58,13.25,4,0.0 +18736,12,38,43,0.0 +18737,11,21,38,0.0 +18737,5,21.35,24,0.0 +18737,30,25.89,9,0.0 +18737,24,4.5,45,0.0 +18737,45,9.5,50,0.0 +18737,10,31,12,0.0 +18737,39,18,25,0.0 +18737,23,9,39,0.0 +18737,14,23.25,1,0.0 +18737,35,18,7,0.0 +18737,19,9.2,13,0.0 +18737,55,24,11,0.0 +18737,74,10,3,0.0 +18737,70,15,6,0.0 +18737,60,34,18,0.0 +18737,68,12.5,24,0.0 +18737,2,19,34,0.0 +18738,42,14,27,0.0 +18738,72,34.8,24,0.0 +18738,34,14,30,0.0 +18738,74,10,21,0.0 +18738,41,9.65,6,0.0 +18738,29,123.79,34,0.0 +18738,57,19.5,3,0.0 +18738,33,2.5,22,0.0 +18738,46,12,10,0.0 +18738,63,43.9,27,0.0 +18738,45,9.5,31,0.0 +18738,15,15.5,23,0.0 +18738,76,18,15,0.0 +18738,26,31.23,7,0.0 +18738,68,12.5,29,0.0 +18738,37,26,17,0.0 +18738,22,21,41,0.0 +18738,58,13.25,40,0.0 +18738,61,28.5,28,0.0 +18738,62,49.3,49,0.0 +18738,64,33.25,37,0.0 +18738,16,17.45,28,0.0 +18738,77,13,1,0.0 +18738,21,10,37,0.0 +18738,36,19,9,0.0 +18738,38,263.5,24,0.0 +18738,27,43.9,20,0.0 +18738,11,21,30,0.0 +18738,30,25.89,43,0.0 +18738,4,22,1,0.0 +18738,73,15,49,0.0 +18738,53,32.8,38,0.0 +18738,43,46,17,0.0 +18738,23,9,27,0.0 +18738,66,17,11,0.0 +18738,71,21.5,47,0.0 +18738,7,30,43,0.0 +18738,8,40,45,0.0 +18738,49,20,49,0.0 +18738,52,7,13,0.0 +18738,12,38,45,0.0 +18738,18,62.5,50,0.0 +18738,40,18.4,32,0.0 +18738,39,18,12,0.0 +18738,3,10,30,0.0 +18738,60,34,1,0.0 +18738,1,18,5,0.0 +18738,59,55,50,0.0 +18738,20,81,1,0.0 +18738,32,32,20,0.0 +18738,50,16.25,3,0.0 +18738,13,6,2,0.0 +18738,2,19,2,0.0 +18738,35,18,14,0.0 +18738,70,15,4,0.0 +18738,56,38,27,0.0 +18738,17,39,5,0.0 +18738,10,31,39,0.0 +18738,54,7.45,38,0.0 +18738,5,21.35,37,0.0 +18738,31,12.5,27,0.0 +18738,47,9.5,28,0.0 +18738,65,21.05,40,0.0 +18738,44,19.45,28,0.0 +18738,51,53,6,0.0 +18738,24,4.5,14,0.0 +18738,9,97,45,0.0 +18738,69,36,28,0.0 +18739,44,19.45,1,0.0 +18739,21,10,5,0.0 +18739,33,2.5,8,0.0 +18739,61,28.5,29,0.0 +18739,41,9.65,14,0.0 +18739,76,18,16,0.0 +18739,71,21.5,24,0.0 +18739,58,13.25,39,0.0 +18739,49,20,19,0.0 +18739,54,7.45,10,0.0 +18739,70,15,32,0.0 +18739,4,22,28,0.0 +18739,13,6,16,0.0 +18739,12,38,32,0.0 +18739,31,12.5,44,0.0 +18739,68,12.5,43,0.0 +18739,45,9.5,12,0.0 +18739,40,18.4,43,0.0 +18739,18,62.5,7,0.0 +18739,72,34.8,38,0.0 +18739,8,40,14,0.0 +18739,46,12,17,0.0 +18739,17,39,49,0.0 +18739,20,81,34,0.0 +18739,53,32.8,7,0.0 +18739,52,7,8,0.0 +18739,43,46,50,0.0 +18739,24,4.5,31,0.0 +18739,7,30,26,0.0 +18739,74,10,19,0.0 +18739,29,123.79,11,0.0 +18739,67,14,47,0.0 +18739,60,34,17,0.0 +18739,2,19,19,0.0 +18739,34,14,2,0.0 +18739,3,10,47,0.0 +18739,1,18,18,0.0 +18739,38,263.5,45,0.0 +18739,69,36,35,0.0 +18739,62,49.3,3,0.0 +18739,65,21.05,46,0.0 +18739,39,18,27,0.0 +18739,27,43.9,39,0.0 +18739,5,21.35,21,0.0 +18739,25,14,46,0.0 +18739,66,17,10,0.0 +18739,11,21,31,0.0 +18739,63,43.9,24,0.0 +18739,19,9.2,8,0.0 +18740,25,14,47,0.0 +18740,67,14,48,0.0 +18740,16,17.45,46,0.0 +18740,42,14,49,0.0 +18740,19,9.2,18,0.0 +18740,41,9.65,48,0.0 +18740,75,7.75,5,0.0 +18740,1,18,48,0.0 +18740,20,81,36,0.0 +18740,66,17,35,0.0 +18740,45,9.5,23,0.0 +18740,64,33.25,3,0.0 +18740,57,19.5,6,0.0 +18740,4,22,47,0.0 +18740,58,13.25,37,0.0 +18740,17,39,3,0.0 +18740,2,19,16,0.0 +18740,70,15,25,0.0 +18740,74,10,23,0.0 +18740,71,21.5,21,0.0 +18740,29,123.79,50,0.0 +18740,44,19.45,7,0.0 +18740,43,46,32,0.0 +18740,9,97,35,0.0 +18740,10,31,23,0.0 +18740,18,62.5,26,0.0 +18740,8,40,14,0.0 +18740,36,19,28,0.0 +18740,65,21.05,29,0.0 +18740,72,34.8,34,0.0 +18740,6,25,39,0.0 +18740,37,26,5,0.0 +18740,13,6,20,0.0 +18740,53,32.8,11,0.0 +18740,63,43.9,20,0.0 +18740,39,18,16,0.0 +18740,32,32,37,0.0 +18740,76,18,22,0.0 +18740,54,7.45,2,0.0 +18740,73,15,33,0.0 +18740,12,38,4,0.0 +18740,11,21,19,0.0 +18740,28,45.6,47,0.0 +18740,62,49.3,17,0.0 +18740,38,263.5,48,0.0 +18740,22,21,40,0.0 +18740,34,14,28,0.0 +18740,51,53,14,0.0 +18740,49,20,14,0.0 +18740,14,23.25,50,0.0 +18740,5,21.35,49,0.0 +18740,35,18,19,0.0 +18740,52,7,15,0.0 +18740,23,9,32,0.0 +18740,61,28.5,12,0.0 +18740,21,10,36,0.0 +18740,68,12.5,30,0.0 +18740,50,16.25,17,0.0 +18740,3,10,46,0.0 +18740,56,38,26,0.0 +18740,60,34,15,0.0 +18740,40,18.4,16,0.0 +18740,24,4.5,34,0.0 +18740,31,12.5,40,0.0 +18740,47,9.5,14,0.0 +18740,27,43.9,19,0.0 +18740,48,12.75,31,0.0 +18740,77,13,20,0.0 +18740,30,25.89,45,0.0 +18740,59,55,45,0.0 +18740,46,12,40,0.0 +18740,33,2.5,32,0.0 +18740,7,30,17,0.0 +18740,26,31.23,10,0.0 +18740,55,24,30,0.0 +18741,12,38,32,0.0 +18741,21,10,11,0.0 +18741,13,6,6,0.0 +18741,15,15.5,32,0.0 +18741,20,81,17,0.0 +18741,53,32.8,36,0.0 +18741,75,7.75,46,0.0 +18741,66,17,39,0.0 +18741,68,12.5,35,0.0 +18741,2,19,32,0.0 +18741,46,12,47,0.0 +18741,77,13,5,0.0 +18741,4,22,1,0.0 +18741,74,10,39,0.0 +18741,8,40,29,0.0 +18741,49,20,50,0.0 +18741,67,14,2,0.0 +18741,16,17.45,44,0.0 +18741,76,18,47,0.0 +18741,14,23.25,21,0.0 +18741,45,9.5,40,0.0 +18741,34,14,6,0.0 +18741,48,12.75,11,0.0 +18741,54,7.45,33,0.0 +18741,40,18.4,34,0.0 +18741,23,9,42,0.0 +18741,10,31,45,0.0 +18742,42,14,48,0.0 +18742,20,81,8,0.0 +18742,16,17.45,17,0.0 +18742,30,25.89,17,0.0 +18742,74,10,34,0.0 +18742,25,14,40,0.0 +18742,71,21.5,2,0.0 +18742,43,46,46,0.0 +18742,35,18,10,0.0 +18742,55,24,12,0.0 +18742,10,31,35,0.0 +18742,73,15,47,0.0 +18742,15,15.5,6,0.0 +18742,32,32,14,0.0 +18742,3,10,15,0.0 +18742,72,34.8,49,0.0 +18742,41,9.65,22,0.0 +18742,68,12.5,2,0.0 +18742,59,55,2,0.0 +18742,2,19,21,0.0 +18742,70,15,46,0.0 +18742,64,33.25,40,0.0 +18742,24,4.5,18,0.0 +18742,57,19.5,15,0.0 +18742,36,19,49,0.0 +18742,17,39,19,0.0 +18742,29,123.79,2,0.0 +18742,8,40,5,0.0 +18742,34,14,16,0.0 +18742,5,21.35,31,0.0 +18742,60,34,29,0.0 +18742,50,16.25,37,0.0 +18742,27,43.9,34,0.0 +18742,31,12.5,50,0.0 +18742,13,6,44,0.0 +18742,62,49.3,4,0.0 +18742,6,25,17,0.0 +18742,37,26,42,0.0 +18742,53,32.8,27,0.0 +18742,12,38,13,0.0 +18742,63,43.9,26,0.0 +18742,9,97,48,0.0 +18742,76,18,29,0.0 +18742,65,21.05,9,0.0 +18742,51,53,26,0.0 +18743,56,38,33,0.0 +18743,33,2.5,36,0.0 +18743,9,97,38,0.0 +18743,70,15,38,0.0 +18743,40,18.4,50,0.0 +18743,44,19.45,27,0.0 +18743,74,10,29,0.0 +18743,20,81,21,0.0 +18743,76,18,10,0.0 +18743,63,43.9,34,0.0 +18743,27,43.9,5,0.0 +18743,22,21,33,0.0 +18743,30,25.89,5,0.0 +18743,41,9.65,41,0.0 +18743,1,18,27,0.0 +18743,60,34,48,0.0 +18743,5,21.35,33,0.0 +18743,69,36,3,0.0 +18743,31,12.5,44,0.0 +18743,2,19,10,0.0 +18743,28,45.6,35,0.0 +18743,66,17,21,0.0 +18743,55,24,41,0.0 +18743,45,9.5,13,0.0 +18743,10,31,42,0.0 +18743,72,34.8,39,0.0 +18743,29,123.79,20,0.0 +18743,16,17.45,47,0.0 +18743,75,7.75,44,0.0 +18743,26,31.23,28,0.0 +18743,14,23.25,4,0.0 +18743,67,14,45,0.0 +18743,12,38,30,0.0 +18743,53,32.8,37,0.0 +18743,18,62.5,15,0.0 +18743,52,7,40,0.0 +18743,36,19,26,0.0 +18743,58,13.25,44,0.0 +18743,25,14,9,0.0 +18743,50,16.25,24,0.0 +18743,51,53,42,0.0 +18743,11,21,28,0.0 +18743,13,6,1,0.0 +18743,64,33.25,48,0.0 +18743,57,19.5,20,0.0 +18743,15,15.5,47,0.0 +18743,73,15,45,0.0 +18743,42,14,31,0.0 +18743,24,4.5,49,0.0 +18743,47,9.5,43,0.0 +18743,43,46,44,0.0 +18743,19,9.2,49,0.0 +18743,48,12.75,10,0.0 +18743,38,263.5,4,0.0 +18743,37,26,41,0.0 +18743,59,55,30,0.0 +18743,46,12,2,0.0 +18743,65,21.05,39,0.0 +18743,17,39,8,0.0 +18743,21,10,25,0.0 +18743,62,49.3,17,0.0 +18743,32,32,42,0.0 +18743,71,21.5,3,0.0 +18743,61,28.5,22,0.0 +18744,34,14,8,0.0 +18744,21,10,11,0.0 +18744,39,18,33,0.0 +18744,44,19.45,9,0.0 +18744,70,15,9,0.0 +18744,4,22,25,0.0 +18744,36,19,43,0.0 +18744,22,21,5,0.0 +18744,15,15.5,38,0.0 +18744,67,14,17,0.0 +18744,42,14,41,0.0 +18744,49,20,45,0.0 +18744,26,31.23,39,0.0 +18744,7,30,3,0.0 +18744,51,53,7,0.0 +18744,38,263.5,33,0.0 +18744,62,49.3,49,0.0 +18744,46,12,4,0.0 +18744,64,33.25,36,0.0 +18744,6,25,35,0.0 +18744,77,13,17,0.0 +18744,19,9.2,15,0.0 +18744,32,32,27,0.0 +18744,54,7.45,39,0.0 +18744,69,36,33,0.0 +18744,66,17,42,0.0 +18744,50,16.25,24,0.0 +18744,59,55,34,0.0 +18744,43,46,14,0.0 +18744,24,4.5,50,0.0 +18744,17,39,40,0.0 +18745,43,46,27,0.0 +18745,7,30,49,0.0 +18745,5,21.35,20,0.0 +18745,48,12.75,39,0.0 +18745,73,15,38,0.0 +18745,24,4.5,48,0.0 +18745,33,2.5,35,0.0 +18745,63,43.9,10,0.0 +18745,32,32,31,0.0 +18745,39,18,17,0.0 +18745,44,19.45,50,0.0 +18745,47,9.5,2,0.0 +18745,29,123.79,41,0.0 +18745,58,13.25,1,0.0 +18745,59,55,16,0.0 +18745,51,53,50,0.0 +18745,38,263.5,24,0.0 +18745,19,9.2,20,0.0 +18745,2,19,3,0.0 +18745,23,9,42,0.0 +18745,34,14,10,0.0 +18745,71,21.5,7,0.0 +18745,17,39,21,0.0 +18745,76,18,37,0.0 +18745,11,21,46,0.0 +18746,13,6,12,0.0 +18746,67,14,3,0.0 +18746,16,17.45,14,0.0 +18746,34,14,22,0.0 +18746,35,18,31,0.0 +18746,8,40,34,0.0 +18746,59,55,10,0.0 +18746,32,32,17,0.0 +18746,46,12,50,0.0 +18746,74,10,48,0.0 +18746,20,81,31,0.0 +18746,58,13.25,26,0.0 +18746,22,21,37,0.0 +18746,49,20,43,0.0 +18746,7,30,45,0.0 +18746,10,31,40,0.0 +18746,55,24,49,0.0 +18746,29,123.79,46,0.0 +18746,17,39,1,0.0 +18746,28,45.6,2,0.0 +18746,18,62.5,45,0.0 +18746,72,34.8,15,0.0 +18746,71,21.5,35,0.0 +18746,69,36,47,0.0 +18746,68,12.5,25,0.0 +18746,2,19,34,0.0 +18746,23,9,43,0.0 +18746,40,18.4,25,0.0 +18746,14,23.25,10,0.0 +18746,63,43.9,31,0.0 +18746,53,32.8,22,0.0 +18746,70,15,1,0.0 +18746,5,21.35,15,0.0 +18746,36,19,14,0.0 +18746,33,2.5,36,0.0 +18746,12,38,30,0.0 +18746,44,19.45,19,0.0 +18746,27,43.9,4,0.0 +18746,6,25,1,0.0 +18746,39,18,21,0.0 +18746,75,7.75,30,0.0 +18746,66,17,21,0.0 +18746,45,9.5,15,0.0 +18746,21,10,14,0.0 +18746,1,18,27,0.0 +18746,26,31.23,29,0.0 +18746,11,21,2,0.0 +18746,31,12.5,33,0.0 +18746,65,21.05,33,0.0 +18746,48,12.75,34,0.0 +18746,15,15.5,4,0.0 +18746,24,4.5,35,0.0 +18746,62,49.3,2,0.0 +18746,61,28.5,15,0.0 +18746,4,22,1,0.0 +18746,9,97,19,0.0 +18746,25,14,38,0.0 +18746,30,25.89,30,0.0 +18747,17,39,44,0.0 +18747,5,21.35,7,0.0 +18747,53,32.8,7,0.0 +18747,56,38,20,0.0 +18747,15,15.5,46,0.0 +18747,77,13,20,0.0 +18747,73,15,39,0.0 +18747,4,22,47,0.0 +18747,10,31,13,0.0 +18747,11,21,25,0.0 +18747,30,25.89,47,0.0 +18747,35,18,13,0.0 +18747,34,14,24,0.0 +18747,67,14,36,0.0 +18747,25,14,19,0.0 +18747,22,21,2,0.0 +18747,50,16.25,38,0.0 +18747,13,6,13,0.0 +18747,72,34.8,50,0.0 +18747,54,7.45,37,0.0 +18747,51,53,26,0.0 +18747,26,31.23,2,0.0 +18747,74,10,23,0.0 +18747,40,18.4,11,0.0 +18747,14,23.25,35,0.0 +18747,24,4.5,5,0.0 +18747,71,21.5,48,0.0 +18747,38,263.5,30,0.0 +18747,47,9.5,38,0.0 +18747,2,19,12,0.0 +18747,43,46,45,0.0 +18747,39,18,4,0.0 +18747,20,81,25,0.0 +18747,8,40,45,0.0 +18747,3,10,24,0.0 +18747,21,10,28,0.0 +18747,42,14,45,0.0 +18747,32,32,19,0.0 +18747,33,2.5,34,0.0 +18747,9,97,6,0.0 +18747,1,18,26,0.0 +18747,29,123.79,33,0.0 +18747,63,43.9,35,0.0 +18747,36,19,2,0.0 +18747,27,43.9,41,0.0 +18747,62,49.3,3,0.0 +18747,69,36,30,0.0 +18747,23,9,36,0.0 +18747,45,9.5,15,0.0 +18747,61,28.5,17,0.0 +18747,7,30,26,0.0 +18747,60,34,28,0.0 +18747,46,12,35,0.0 +18747,31,12.5,24,0.0 +18747,52,7,4,0.0 +18747,41,9.65,34,0.0 +18747,6,25,31,0.0 +18747,65,21.05,25,0.0 +18747,75,7.75,5,0.0 +18747,64,33.25,47,0.0 +18747,16,17.45,3,0.0 +18747,66,17,10,0.0 +18747,58,13.25,38,0.0 +18747,37,26,49,0.0 +18747,59,55,26,0.0 +18747,18,62.5,48,0.0 +18747,49,20,43,0.0 +18747,28,45.6,46,0.0 +18747,70,15,37,0.0 +18747,48,12.75,47,0.0 +18747,76,18,37,0.0 +18747,55,24,23,0.0 +18747,44,19.45,29,0.0 +18747,12,38,21,0.0 +18747,68,12.5,23,0.0 +18747,57,19.5,39,0.0 +18748,35,18,17,0.0 +18748,31,12.5,27,0.0 +18748,72,34.8,42,0.0 +18748,3,10,11,0.0 +18748,10,31,50,0.0 +18748,58,13.25,1,0.0 +18748,20,81,1,0.0 +18748,26,31.23,40,0.0 +18748,53,32.8,8,0.0 +18748,55,24,15,0.0 +18748,60,34,1,0.0 +18748,76,18,13,0.0 +18748,9,97,14,0.0 +18748,66,17,37,0.0 +18748,43,46,6,0.0 +18748,50,16.25,50,0.0 +18748,57,19.5,16,0.0 +18748,17,39,7,0.0 +18748,54,7.45,17,0.0 +18748,70,15,26,0.0 +18749,72,34.8,11,0.0 +18749,45,9.5,23,0.0 +18749,6,25,29,0.0 +18749,64,33.25,5,0.0 +18749,48,12.75,38,0.0 +18749,75,7.75,46,0.0 +18749,5,21.35,40,0.0 +18749,11,21,35,0.0 +18749,66,17,27,0.0 +18749,10,31,35,0.0 +18749,22,21,18,0.0 +18749,44,19.45,47,0.0 +18749,60,34,45,0.0 +18749,13,6,23,0.0 +18749,19,9.2,41,0.0 +18749,47,9.5,26,0.0 +18749,56,38,27,0.0 +18749,71,21.5,46,0.0 +18749,15,15.5,8,0.0 +18749,73,15,41,0.0 +18749,8,40,7,0.0 +18749,63,43.9,11,0.0 +18750,31,12.5,8,0.0 +18750,11,21,23,0.0 +18750,43,46,14,0.0 +18750,30,25.89,26,0.0 +18750,75,7.75,23,0.0 +18750,62,49.3,1,0.0 +18750,24,4.5,47,0.0 +18750,69,36,32,0.0 +18750,4,22,39,0.0 +18750,36,19,50,0.0 +18750,33,2.5,1,0.0 +18750,45,9.5,5,0.0 +18750,61,28.5,41,0.0 +18750,19,9.2,1,0.0 +18750,32,32,24,0.0 +18750,5,21.35,29,0.0 +18750,3,10,6,0.0 +18750,35,18,23,0.0 +18750,2,19,32,0.0 +18750,38,263.5,27,0.0 +18750,46,12,26,0.0 +18750,18,62.5,43,0.0 +18750,13,6,30,0.0 +18750,76,18,16,0.0 +18750,29,123.79,19,0.0 +18750,67,14,42,0.0 +18750,54,7.45,50,0.0 +18750,15,15.5,32,0.0 +18750,64,33.25,49,0.0 +18751,70,15,37,0.0 +18751,39,18,7,0.0 +18752,65,21.05,18,0.0 +18752,23,9,9,0.0 +18752,30,25.89,19,0.0 +18752,8,40,45,0.0 +18752,28,45.6,16,0.0 +18752,41,9.65,30,0.0 +18752,32,32,10,0.0 +18752,48,12.75,49,0.0 +18752,9,97,15,0.0 +18752,17,39,44,0.0 +18752,25,14,12,0.0 +18752,44,19.45,36,0.0 +18752,43,46,17,0.0 +18752,2,19,9,0.0 +18752,61,28.5,12,0.0 +18752,60,34,33,0.0 +18752,46,12,40,0.0 +18752,29,123.79,39,0.0 +18752,13,6,11,0.0 +18752,50,16.25,25,0.0 +18752,3,10,36,0.0 +18752,1,18,13,0.0 +18752,26,31.23,12,0.0 +18752,4,22,5,0.0 +18752,35,18,50,0.0 +18752,18,62.5,41,0.0 +18752,10,31,46,0.0 +18752,37,26,19,0.0 +18752,11,21,10,0.0 +18752,63,43.9,45,0.0 +18752,72,34.8,34,0.0 +18752,34,14,22,0.0 +18752,73,15,6,0.0 +18752,6,25,20,0.0 +18752,21,10,25,0.0 +18752,59,55,26,0.0 +18752,68,12.5,41,0.0 +18752,52,7,9,0.0 +18752,55,24,42,0.0 +18752,54,7.45,43,0.0 +18752,7,30,4,0.0 +18752,36,19,40,0.0 +18752,57,19.5,2,0.0 +18752,45,9.5,17,0.0 +18752,22,21,48,0.0 +18753,6,25,18,0.0 +18753,52,7,18,0.0 +18753,16,17.45,11,0.0 +18753,10,31,7,0.0 +18753,41,9.65,43,0.0 +18753,25,14,31,0.0 +18753,31,12.5,28,0.0 +18753,51,53,38,0.0 +18753,47,9.5,47,0.0 +18753,38,263.5,15,0.0 +18753,69,36,27,0.0 +18753,71,21.5,41,0.0 +18753,76,18,40,0.0 +18753,18,62.5,46,0.0 +18753,61,28.5,24,0.0 +18753,29,123.79,24,0.0 +18753,49,20,40,0.0 +18753,73,15,35,0.0 +18753,56,38,42,0.0 +18753,44,19.45,23,0.0 +18753,8,40,4,0.0 +18753,58,13.25,29,0.0 +18753,19,9.2,37,0.0 +18753,74,10,41,0.0 +18753,27,43.9,6,0.0 +18753,30,25.89,7,0.0 +18753,28,45.6,15,0.0 +18753,59,55,36,0.0 +18753,66,17,48,0.0 +18753,65,21.05,42,0.0 +18753,21,10,46,0.0 +18753,50,16.25,45,0.0 +18753,39,18,42,0.0 +18753,64,33.25,47,0.0 +18753,22,21,29,0.0 +18753,54,7.45,15,0.0 +18753,55,24,46,0.0 +18753,36,19,11,0.0 +18753,13,6,50,0.0 +18753,42,14,30,0.0 +18753,67,14,7,0.0 +18753,63,43.9,27,0.0 +18753,37,26,10,0.0 +18754,47,9.5,50,0.0 +18754,39,18,5,0.0 +18754,31,12.5,44,0.0 +18754,61,28.5,8,0.0 +18754,76,18,16,0.0 +18754,55,24,30,0.0 +18754,58,13.25,12,0.0 +18754,19,9.2,37,0.0 +18754,15,15.5,3,0.0 +18754,8,40,19,0.0 +18754,42,14,18,0.0 +18754,25,14,4,0.0 +18754,18,62.5,35,0.0 +18754,44,19.45,5,0.0 +18754,24,4.5,20,0.0 +18754,72,34.8,24,0.0 +18754,75,7.75,14,0.0 +18754,71,21.5,18,0.0 +18754,62,49.3,1,0.0 +18754,28,45.6,28,0.0 +18754,3,10,31,0.0 +18754,20,81,23,0.0 +18754,33,2.5,7,0.0 +18754,69,36,5,0.0 +18754,54,7.45,12,0.0 +18754,4,22,11,0.0 +18754,77,13,3,0.0 +18754,22,21,34,0.0 +18754,52,7,45,0.0 +18754,40,18.4,20,0.0 +18754,45,9.5,21,0.0 +18754,41,9.65,49,0.0 +18754,65,21.05,41,0.0 +18754,5,21.35,15,0.0 +18754,56,38,31,0.0 +18754,68,12.5,32,0.0 +18754,14,23.25,47,0.0 +18754,50,16.25,45,0.0 +18754,63,43.9,45,0.0 +18754,23,9,31,0.0 +18754,11,21,26,0.0 +18754,64,33.25,4,0.0 +18754,34,14,15,0.0 +18754,57,19.5,50,0.0 +18754,27,43.9,28,0.0 +18754,16,17.45,27,0.0 +18754,7,30,4,0.0 +18754,13,6,15,0.0 +18754,32,32,42,0.0 +18754,9,97,17,0.0 +18754,2,19,46,0.0 +18754,73,15,29,0.0 +18754,26,31.23,16,0.0 +18754,49,20,38,0.0 +18754,21,10,48,0.0 +18754,51,53,18,0.0 +18754,38,263.5,36,0.0 +18754,70,15,2,0.0 +18754,17,39,2,0.0 +18754,10,31,26,0.0 +18754,48,12.75,22,0.0 +18754,36,19,22,0.0 +18755,2,19,15,0.0 +18755,72,34.8,22,0.0 +18755,56,38,10,0.0 +18755,34,14,22,0.0 +18755,26,31.23,40,0.0 +18755,21,10,4,0.0 +18755,62,49.3,11,0.0 +18755,31,12.5,26,0.0 +18755,43,46,47,0.0 +18755,3,10,19,0.0 +18755,24,4.5,46,0.0 +18755,57,19.5,28,0.0 +18755,25,14,44,0.0 +18755,19,9.2,35,0.0 +18755,15,15.5,11,0.0 +18755,75,7.75,4,0.0 +18755,28,45.6,26,0.0 +18755,45,9.5,37,0.0 +18755,32,32,50,0.0 +18755,10,31,47,0.0 +18755,66,17,40,0.0 +18755,70,15,49,0.0 +18755,42,14,12,0.0 +18755,22,21,32,0.0 +18755,13,6,48,0.0 +18755,27,43.9,28,0.0 +18755,9,97,39,0.0 +18755,18,62.5,45,0.0 +18755,37,26,23,0.0 +18755,38,263.5,48,0.0 +18755,39,18,6,0.0 +18755,1,18,50,0.0 +18755,16,17.45,2,0.0 +18755,5,21.35,30,0.0 +18755,63,43.9,4,0.0 +18755,44,19.45,17,0.0 +18755,69,36,23,0.0 +18755,14,23.25,38,0.0 +18755,48,12.75,7,0.0 +18755,17,39,36,0.0 +18755,52,7,19,0.0 +18755,51,53,10,0.0 +18755,4,22,14,0.0 +18755,59,55,46,0.0 +18756,47,9.5,13,0.0 +18756,20,81,1,0.0 +18756,73,15,50,0.0 +18756,46,12,33,0.0 +18756,23,9,48,0.0 +18756,68,12.5,28,0.0 +18756,70,15,50,0.0 +18756,76,18,28,0.0 +18756,16,17.45,32,0.0 +18756,55,24,1,0.0 +18756,66,17,40,0.0 +18756,57,19.5,14,0.0 +18756,64,33.25,50,0.0 +18756,54,7.45,13,0.0 +18756,77,13,44,0.0 +18756,52,7,10,0.0 +18756,26,31.23,36,0.0 +18756,50,16.25,4,0.0 +18756,48,12.75,39,0.0 +18756,1,18,1,0.0 +18756,11,21,22,0.0 +18756,51,53,6,0.0 +18756,9,97,30,0.0 +18756,63,43.9,31,0.0 +18757,2,19,34,0.0 +18758,15,15.5,16,0.0 +18758,62,49.3,30,0.0 +18758,41,9.65,36,0.0 +18758,46,12,49,0.0 +18758,25,14,20,0.0 +18758,19,9.2,27,0.0 +18759,1,18,11,0.0 +18759,19,9.2,7,0.0 +18759,33,2.5,19,0.0 +18759,22,21,15,0.0 +18759,25,14,22,0.0 +18759,44,19.45,35,0.0 +18759,57,19.5,13,0.0 +18759,32,32,19,0.0 +18759,37,26,27,0.0 +18759,53,32.8,50,0.0 +18759,65,21.05,38,0.0 +18759,40,18.4,45,0.0 +18759,76,18,33,0.0 +18759,12,38,5,0.0 +18759,31,12.5,31,0.0 +18759,8,40,15,0.0 +18759,35,18,34,0.0 +18759,41,9.65,38,0.0 +18759,14,23.25,29,0.0 +18759,13,6,45,0.0 +18759,4,22,7,0.0 +18759,56,38,33,0.0 +18759,9,97,32,0.0 +18759,16,17.45,16,0.0 +18759,43,46,34,0.0 +18759,49,20,17,0.0 +18759,7,30,50,0.0 +18759,48,12.75,9,0.0 +18759,54,7.45,22,0.0 +18759,10,31,38,0.0 +18759,20,81,45,0.0 +18759,59,55,21,0.0 +18759,30,25.89,4,0.0 +18759,66,17,31,0.0 +18759,67,14,25,0.0 +18759,27,43.9,36,0.0 +18759,77,13,10,0.0 +18759,72,34.8,34,0.0 +18759,58,13.25,20,0.0 +18759,60,34,14,0.0 +18759,5,21.35,5,0.0 +18759,46,12,16,0.0 +18759,18,62.5,36,0.0 +18759,62,49.3,35,0.0 +18759,47,9.5,37,0.0 +18759,23,9,47,0.0 +18759,36,19,5,0.0 +18759,28,45.6,33,0.0 +18759,24,4.5,36,0.0 +18759,63,43.9,13,0.0 +18759,26,31.23,42,0.0 +18759,69,36,7,0.0 +18759,71,21.5,47,0.0 +18759,2,19,2,0.0 +18759,17,39,4,0.0 +18759,21,10,9,0.0 +18759,55,24,49,0.0 +18759,73,15,25,0.0 +18759,42,14,16,0.0 +18759,11,21,6,0.0 +18759,15,15.5,19,0.0 +18759,3,10,15,0.0 +18759,74,10,30,0.0 +18759,52,7,15,0.0 +18759,45,9.5,14,0.0 +18759,34,14,37,0.0 +18759,75,7.75,6,0.0 +18759,39,18,41,0.0 +18759,6,25,50,0.0 +18759,61,28.5,31,0.0 +18759,64,33.25,35,0.0 +18760,76,18,11,0.0 +18760,73,15,40,0.0 +18760,75,7.75,19,0.0 +18760,41,9.65,11,0.0 +18760,14,23.25,26,0.0 +18760,52,7,6,0.0 +18760,25,14,5,0.0 +18760,47,9.5,31,0.0 +18760,42,14,47,0.0 +18760,51,53,6,0.0 +18760,57,19.5,3,0.0 +18760,19,9.2,4,0.0 +18760,13,6,29,0.0 +18760,31,12.5,26,0.0 +18760,71,21.5,50,0.0 +18760,54,7.45,12,0.0 +18760,66,17,25,0.0 +18760,39,18,32,0.0 +18760,48,12.75,39,0.0 +18760,21,10,45,0.0 +18760,18,62.5,22,0.0 +18760,62,49.3,36,0.0 +18760,9,97,43,0.0 +18760,72,34.8,19,0.0 +18760,33,2.5,34,0.0 +18760,40,18.4,5,0.0 +18760,64,33.25,41,0.0 +18760,20,81,12,0.0 +18760,60,34,30,0.0 +18760,16,17.45,45,0.0 +18760,32,32,4,0.0 +18761,40,18.4,17,0.0 +18761,21,10,50,0.0 +18761,66,17,19,0.0 +18761,54,7.45,22,0.0 +18761,6,25,9,0.0 +18761,17,39,24,0.0 +18761,23,9,33,0.0 +18761,51,53,37,0.0 +18761,57,19.5,40,0.0 +18761,45,9.5,5,0.0 +18761,62,49.3,47,0.0 +18761,72,34.8,26,0.0 +18761,22,21,5,0.0 +18761,76,18,44,0.0 +18761,43,46,7,0.0 +18761,7,30,9,0.0 +18761,9,97,11,0.0 +18761,59,55,12,0.0 +18761,50,16.25,30,0.0 +18761,70,15,33,0.0 +18761,31,12.5,2,0.0 +18761,34,14,28,0.0 +18761,68,12.5,44,0.0 +18761,33,2.5,22,0.0 +18761,73,15,36,0.0 +18761,3,10,41,0.0 +18761,15,15.5,30,0.0 +18761,75,7.75,36,0.0 +18761,27,43.9,2,0.0 +18761,8,40,5,0.0 +18761,37,26,18,0.0 +18761,74,10,40,0.0 +18761,14,23.25,16,0.0 +18761,28,45.6,29,0.0 +18761,4,22,30,0.0 +18761,47,9.5,45,0.0 +18761,53,32.8,37,0.0 +18761,52,7,19,0.0 +18761,19,9.2,33,0.0 +18761,46,12,32,0.0 +18761,77,13,7,0.0 +18761,2,19,38,0.0 +18761,67,14,33,0.0 +18761,26,31.23,3,0.0 +18761,60,34,4,0.0 +18761,25,14,28,0.0 +18761,48,12.75,13,0.0 +18761,18,62.5,30,0.0 +18761,69,36,10,0.0 +18761,12,38,45,0.0 +18761,55,24,31,0.0 +18761,10,31,30,0.0 +18761,11,21,21,0.0 +18761,35,18,26,0.0 +18761,61,28.5,50,0.0 +18761,63,43.9,36,0.0 +18761,13,6,33,0.0 +18761,29,123.79,31,0.0 +18761,5,21.35,6,0.0 +18761,71,21.5,6,0.0 +18761,64,33.25,12,0.0 +18762,62,49.3,30,0.0 +18762,16,17.45,29,0.0 +18762,74,10,49,0.0 +18762,77,13,36,0.0 +18762,48,12.75,43,0.0 +18762,13,6,42,0.0 +18762,59,55,44,0.0 +18762,75,7.75,44,0.0 +18762,42,14,2,0.0 +18762,58,13.25,25,0.0 +18762,26,31.23,29,0.0 +18762,34,14,50,0.0 +18762,67,14,29,0.0 +18762,9,97,30,0.0 +18762,21,10,27,0.0 +18762,5,21.35,48,0.0 +18762,64,33.25,20,0.0 +18762,33,2.5,24,0.0 +18762,25,14,29,0.0 +18762,20,81,29,0.0 +18762,45,9.5,8,0.0 +18762,66,17,19,0.0 +18762,44,19.45,30,0.0 +18762,12,38,10,0.0 +18762,17,39,33,0.0 +18762,57,19.5,3,0.0 +18762,32,32,37,0.0 +18762,53,32.8,30,0.0 +18762,10,31,6,0.0 +18762,52,7,7,0.0 +18762,37,26,45,0.0 +18762,4,22,24,0.0 +18762,22,21,18,0.0 +18762,38,263.5,49,0.0 +18762,8,40,17,0.0 +18763,31,12.5,8,0.0 +18763,75,7.75,34,0.0 +18763,18,62.5,48,0.0 +18763,6,25,21,0.0 +18763,53,32.8,29,0.0 +18763,52,7,16,0.0 +18763,76,18,39,0.0 +18763,65,21.05,2,0.0 +18763,25,14,40,0.0 +18763,33,2.5,29,0.0 +18763,10,31,47,0.0 +18763,29,123.79,30,0.0 +18763,56,38,45,0.0 +18763,40,18.4,36,0.0 +18763,23,9,45,0.0 +18763,41,9.65,29,0.0 +18763,26,31.23,40,0.0 +18763,57,19.5,29,0.0 +18763,70,15,1,0.0 +18763,21,10,23,0.0 +18763,14,23.25,31,0.0 +18763,13,6,28,0.0 +18763,12,38,4,0.0 +18763,28,45.6,49,0.0 +18763,54,7.45,36,0.0 +18763,9,97,45,0.0 +18763,55,24,48,0.0 +18763,17,39,26,0.0 +18763,4,22,14,0.0 +18763,77,13,35,0.0 +18763,51,53,28,0.0 +18763,38,263.5,2,0.0 +18763,60,34,10,0.0 +18763,24,4.5,9,0.0 +18763,37,26,42,0.0 +18763,36,19,12,0.0 +18763,47,9.5,17,0.0 +18763,49,20,48,0.0 +18763,27,43.9,42,0.0 +18763,22,21,27,0.0 +18763,64,33.25,22,0.0 +18763,19,9.2,32,0.0 +18763,30,25.89,10,0.0 +18763,48,12.75,40,0.0 +18763,16,17.45,8,0.0 +18763,67,14,14,0.0 +18763,69,36,12,0.0 +18763,5,21.35,31,0.0 +18763,63,43.9,12,0.0 +18763,11,21,48,0.0 +18763,50,16.25,19,0.0 +18763,59,55,40,0.0 +18763,3,10,2,0.0 +18763,8,40,41,0.0 +18763,62,49.3,41,0.0 +18763,46,12,11,0.0 +18763,44,19.45,7,0.0 +18763,35,18,5,0.0 +18763,32,32,38,0.0 +18763,20,81,38,0.0 +18763,72,34.8,26,0.0 +18763,45,9.5,28,0.0 +18763,68,12.5,40,0.0 +18763,1,18,48,0.0 +18763,61,28.5,24,0.0 +18763,42,14,45,0.0 +18764,65,21.05,46,0.0 +18764,34,14,33,0.0 +18764,14,23.25,18,0.0 +18764,6,25,42,0.0 +18764,4,22,46,0.0 +18764,70,15,6,0.0 +18764,41,9.65,13,0.0 +18764,66,17,26,0.0 +18764,12,38,34,0.0 +18764,31,12.5,8,0.0 +18764,30,25.89,41,0.0 +18764,9,97,49,0.0 +18764,54,7.45,17,0.0 +18764,45,9.5,30,0.0 +18764,55,24,16,0.0 +18764,22,21,6,0.0 +18764,5,21.35,48,0.0 +18764,73,15,49,0.0 +18764,33,2.5,30,0.0 +18764,67,14,25,0.0 +18765,17,39,4,0.0 +18765,26,31.23,45,0.0 +18765,40,18.4,12,0.0 +18765,53,32.8,15,0.0 +18765,68,12.5,7,0.0 +18765,65,21.05,50,0.0 +18765,52,7,29,0.0 +18765,72,34.8,30,0.0 +18765,14,23.25,16,0.0 +18765,3,10,21,0.0 +18765,35,18,29,0.0 +18765,57,19.5,12,0.0 +18765,31,12.5,42,0.0 +18765,22,21,47,0.0 +18765,60,34,20,0.0 +18765,64,33.25,45,0.0 +18765,46,12,2,0.0 +18765,19,9.2,3,0.0 +18765,61,28.5,28,0.0 +18765,16,17.45,45,0.0 +18765,70,15,10,0.0 +18765,34,14,37,0.0 +18765,45,9.5,8,0.0 +18765,23,9,9,0.0 +18765,67,14,9,0.0 +18765,58,13.25,13,0.0 +18765,21,10,14,0.0 +18765,11,21,37,0.0 +18765,49,20,39,0.0 +18765,73,15,12,0.0 +18765,4,22,48,0.0 +18765,39,18,40,0.0 +18765,25,14,1,0.0 +18765,10,31,46,0.0 +18765,30,25.89,30,0.0 +18765,2,19,49,0.0 +18765,75,7.75,23,0.0 +18765,59,55,11,0.0 +18765,29,123.79,35,0.0 +18765,8,40,7,0.0 +18765,48,12.75,33,0.0 +18765,20,81,19,0.0 +18765,13,6,15,0.0 +18765,56,38,33,0.0 +18765,33,2.5,4,0.0 +18765,69,36,3,0.0 +18766,7,30,28,0.0 +18766,22,21,20,0.0 +18766,66,17,11,0.0 +18766,72,34.8,49,0.0 +18766,43,46,37,0.0 +18766,31,12.5,24,0.0 +18766,53,32.8,42,0.0 +18766,32,32,29,0.0 +18766,2,19,28,0.0 +18766,10,31,50,0.0 +18766,34,14,23,0.0 +18766,60,34,47,0.0 +18766,15,15.5,39,0.0 +18766,44,19.45,16,0.0 +18766,35,18,24,0.0 +18766,64,33.25,24,0.0 +18766,23,9,17,0.0 +18766,39,18,14,0.0 +18767,8,40,7,0.0 +18767,17,39,45,0.0 +18767,15,15.5,7,0.0 +18767,24,4.5,48,0.0 +18767,66,17,15,0.0 +18767,51,53,48,0.0 +18767,41,9.65,43,0.0 +18767,61,28.5,21,0.0 +18767,30,25.89,30,0.0 +18767,47,9.5,32,0.0 +18767,31,12.5,49,0.0 +18767,18,62.5,19,0.0 +18767,76,18,37,0.0 +18767,1,18,1,0.0 +18767,29,123.79,27,0.0 +18767,4,22,19,0.0 +18767,43,46,5,0.0 +18767,13,6,47,0.0 +18767,12,38,48,0.0 +18767,68,12.5,48,0.0 +18767,74,10,39,0.0 +18767,75,7.75,28,0.0 +18767,59,55,2,0.0 +18767,65,21.05,24,0.0 +18767,6,25,5,0.0 +18767,10,31,5,0.0 +18767,21,10,7,0.0 +18767,50,16.25,14,0.0 +18767,73,15,28,0.0 +18767,37,26,11,0.0 +18767,71,21.5,6,0.0 +18767,54,7.45,35,0.0 +18767,25,14,7,0.0 +18767,64,33.25,1,0.0 +18768,46,12,4,0.0 +18768,77,13,43,0.0 +18768,51,53,6,0.0 +18768,39,18,38,0.0 +18768,35,18,45,0.0 +18768,34,14,27,0.0 +18768,16,17.45,5,0.0 +18768,40,18.4,8,0.0 +18768,8,40,7,0.0 +18768,63,43.9,35,0.0 +18768,24,4.5,12,0.0 +18768,52,7,24,0.0 +18768,2,19,47,0.0 +18768,45,9.5,28,0.0 +18768,61,28.5,21,0.0 +18768,60,34,35,0.0 +18768,65,21.05,13,0.0 +18768,17,39,44,0.0 +18768,49,20,50,0.0 +18768,72,34.8,36,0.0 +18768,64,33.25,1,0.0 +18768,31,12.5,41,0.0 +18768,36,19,7,0.0 +18768,62,49.3,11,0.0 +18768,14,23.25,31,0.0 +18768,42,14,43,0.0 +18768,3,10,6,0.0 +18768,28,45.6,25,0.0 +18768,33,2.5,10,0.0 +18768,44,19.45,2,0.0 +18768,21,10,47,0.0 +18768,13,6,42,0.0 +18768,11,21,9,0.0 +18768,6,25,7,0.0 +18768,27,43.9,6,0.0 +18768,5,21.35,39,0.0 +18768,57,19.5,40,0.0 +18768,15,15.5,29,0.0 +18768,25,14,17,0.0 +18768,10,31,19,0.0 +18768,56,38,1,0.0 +18768,20,81,29,0.0 +18768,19,9.2,41,0.0 +18768,74,10,49,0.0 +18768,59,55,44,0.0 +18768,58,13.25,5,0.0 +18768,23,9,18,0.0 +18768,12,38,23,0.0 +18768,66,17,12,0.0 +18768,22,21,8,0.0 +18768,73,15,18,0.0 +18768,38,263.5,9,0.0 +18768,29,123.79,46,0.0 +18768,68,12.5,37,0.0 +18768,47,9.5,42,0.0 +18768,18,62.5,49,0.0 +18768,53,32.8,34,0.0 +18768,71,21.5,35,0.0 +18769,37,26,26,0.0 +18769,73,15,36,0.0 +18769,69,36,50,0.0 +18769,54,7.45,7,0.0 +18769,47,9.5,35,0.0 +18769,39,18,7,0.0 +18769,26,31.23,9,0.0 +18769,20,81,16,0.0 +18769,40,18.4,10,0.0 +18769,14,23.25,47,0.0 +18769,8,40,39,0.0 +18770,64,33.25,41,0.0 +18770,10,31,27,0.0 +18770,72,34.8,14,0.0 +18770,17,39,9,0.0 +18770,26,31.23,19,0.0 +18770,41,9.65,14,0.0 +18770,15,15.5,21,0.0 +18770,12,38,21,0.0 +18770,67,14,9,0.0 +18770,28,45.6,7,0.0 +18770,44,19.45,28,0.0 +18770,25,14,1,0.0 +18770,35,18,45,0.0 +18770,55,24,15,0.0 +18770,20,81,29,0.0 +18770,71,21.5,1,0.0 +18770,23,9,44,0.0 +18770,54,7.45,29,0.0 +18770,7,30,49,0.0 +18770,76,18,17,0.0 +18770,43,46,1,0.0 +18770,56,38,7,0.0 +18770,51,53,20,0.0 +18770,75,7.75,26,0.0 +18770,66,17,38,0.0 +18771,50,16.25,7,0.0 +18771,77,13,44,0.0 +18771,75,7.75,4,0.0 +18771,10,31,11,0.0 +18771,41,9.65,8,0.0 +18771,1,18,16,0.0 +18771,63,43.9,27,0.0 +18771,49,20,23,0.0 +18771,19,9.2,27,0.0 +18771,53,32.8,27,0.0 +18771,73,15,25,0.0 +18771,38,263.5,12,0.0 +18771,23,9,28,0.0 +18771,22,21,5,0.0 +18771,16,17.45,13,0.0 +18771,6,25,5,0.0 +18771,17,39,33,0.0 +18771,26,31.23,27,0.0 +18771,64,33.25,44,0.0 +18771,29,123.79,9,0.0 +18771,54,7.45,28,0.0 +18771,31,12.5,44,0.0 +18771,4,22,38,0.0 +18771,56,38,46,0.0 +18771,13,6,29,0.0 +18771,70,15,4,0.0 +18771,40,18.4,40,0.0 +18771,67,14,23,0.0 +18771,69,36,48,0.0 +18771,8,40,6,0.0 +18771,33,2.5,4,0.0 +18771,51,53,8,0.0 +18771,20,81,47,0.0 +18771,46,12,14,0.0 +18771,11,21,45,0.0 +18771,74,10,23,0.0 +18771,2,19,13,0.0 +18771,65,21.05,26,0.0 +18771,62,49.3,34,0.0 +18772,1,18,13,0.0 +18772,60,34,28,0.0 +18772,30,25.89,50,0.0 +18772,23,9,43,0.0 +18772,58,13.25,45,0.0 +18772,68,12.5,29,0.0 +18772,57,19.5,25,0.0 +18772,51,53,22,0.0 +18772,66,17,4,0.0 +18772,67,14,25,0.0 +18772,61,28.5,46,0.0 +18772,55,24,47,0.0 +18772,25,14,24,0.0 +18772,75,7.75,25,0.0 +18772,3,10,19,0.0 +18772,12,38,18,0.0 +18772,63,43.9,42,0.0 +18772,20,81,49,0.0 +18772,36,19,8,0.0 +18772,17,39,25,0.0 +18772,37,26,46,0.0 +18772,21,10,34,0.0 +18772,16,17.45,39,0.0 +18773,42,14,3,0.0 +18773,54,7.45,30,0.0 +18773,52,7,38,0.0 +18773,32,32,24,0.0 +18773,57,19.5,40,0.0 +18773,6,25,46,0.0 +18773,18,62.5,10,0.0 +18773,31,12.5,24,0.0 +18773,74,10,34,0.0 +18773,29,123.79,28,0.0 +18773,76,18,7,0.0 +18773,11,21,3,0.0 +18773,65,21.05,12,0.0 +18773,44,19.45,41,0.0 +18773,14,23.25,21,0.0 +18773,1,18,25,0.0 +18773,7,30,8,0.0 +18773,75,7.75,11,0.0 +18773,56,38,39,0.0 +18773,36,19,25,0.0 +18773,25,14,50,0.0 +18773,45,9.5,5,0.0 +18773,9,97,1,0.0 +18773,71,21.5,47,0.0 +18773,12,38,47,0.0 +18773,77,13,18,0.0 +18773,2,19,39,0.0 +18773,47,9.5,41,0.0 +18773,17,39,9,0.0 +18773,37,26,43,0.0 +18773,43,46,47,0.0 +18773,67,14,30,0.0 +18773,26,31.23,45,0.0 +18773,33,2.5,15,0.0 +18773,41,9.65,34,0.0 +18773,66,17,26,0.0 +18773,63,43.9,11,0.0 +18773,24,4.5,23,0.0 +18773,68,12.5,43,0.0 +18773,28,45.6,50,0.0 +18774,25,14,46,0.0 +18774,32,32,26,0.0 +18774,56,38,36,0.0 +18774,45,9.5,22,0.0 +18774,34,14,8,0.0 +18774,28,45.6,34,0.0 +18774,38,263.5,25,0.0 +18774,1,18,35,0.0 +18774,19,9.2,44,0.0 +18774,4,22,43,0.0 +18774,74,10,35,0.0 +18774,71,21.5,45,0.0 +18774,7,30,49,0.0 +18774,33,2.5,23,0.0 +18774,62,49.3,18,0.0 +18774,41,9.65,3,0.0 +18774,14,23.25,19,0.0 +18774,57,19.5,36,0.0 +18774,44,19.45,17,0.0 +18774,10,31,26,0.0 +18774,8,40,7,0.0 +18774,49,20,33,0.0 +18774,61,28.5,12,0.0 +18774,12,38,5,0.0 +18774,67,14,34,0.0 +18774,26,31.23,25,0.0 +18774,64,33.25,33,0.0 +18774,75,7.75,28,0.0 +18774,73,15,49,0.0 +18774,66,17,21,0.0 +18774,65,21.05,21,0.0 +18774,43,46,34,0.0 +18774,9,97,37,0.0 +18774,46,12,20,0.0 +18774,24,4.5,31,0.0 +18774,47,9.5,27,0.0 +18774,23,9,39,0.0 +18774,13,6,34,0.0 +18774,63,43.9,11,0.0 +18774,50,16.25,18,0.0 +18774,77,13,20,0.0 +18774,22,21,34,0.0 +18774,16,17.45,37,0.0 +18774,27,43.9,5,0.0 +18774,72,34.8,41,0.0 +18774,30,25.89,41,0.0 +18774,2,19,31,0.0 +18774,15,15.5,18,0.0 +18774,58,13.25,35,0.0 +18774,54,7.45,20,0.0 +18774,39,18,18,0.0 +18774,29,123.79,22,0.0 +18774,70,15,12,0.0 +18774,20,81,40,0.0 +18774,18,62.5,34,0.0 +18774,40,18.4,10,0.0 +18774,55,24,39,0.0 +18774,3,10,4,0.0 +18774,36,19,22,0.0 +18774,51,53,43,0.0 +18774,6,25,19,0.0 +18774,53,32.8,9,0.0 +18774,52,7,49,0.0 +18774,68,12.5,39,0.0 +18774,31,12.5,36,0.0 +18774,37,26,31,0.0 +18774,5,21.35,50,0.0 +18774,17,39,15,0.0 +18774,11,21,24,0.0 +18774,69,36,50,0.0 +18774,42,14,41,0.0 +18774,76,18,30,0.0 +18774,59,55,33,0.0 +18775,9,97,46,0.0 +18775,38,263.5,20,0.0 +18775,43,46,19,0.0 +18775,14,23.25,20,0.0 +18775,76,18,22,0.0 +18775,77,13,16,0.0 +18775,5,21.35,8,0.0 +18776,24,4.5,6,0.0 +18776,59,55,43,0.0 +18776,7,30,22,0.0 +18776,31,12.5,4,0.0 +18776,56,38,22,0.0 +18776,60,34,40,0.0 +18776,62,49.3,6,0.0 +18776,58,13.25,50,0.0 +18776,73,15,8,0.0 +18776,27,43.9,29,0.0 +18776,23,9,25,0.0 +18776,5,21.35,4,0.0 +18776,75,7.75,40,0.0 +18776,8,40,1,0.0 +18776,9,97,31,0.0 +18776,33,2.5,12,0.0 +18776,13,6,49,0.0 +18776,20,81,5,0.0 +18776,65,21.05,44,0.0 +18776,53,32.8,19,0.0 +18776,74,10,1,0.0 +18776,28,45.6,18,0.0 +18776,77,13,34,0.0 +18776,57,19.5,40,0.0 +18776,51,53,38,0.0 +18776,3,10,6,0.0 +18776,4,22,17,0.0 +18776,42,14,28,0.0 +18776,29,123.79,23,0.0 +18776,64,33.25,1,0.0 +18776,76,18,26,0.0 +18776,68,12.5,46,0.0 +18776,18,62.5,22,0.0 +18776,15,15.5,46,0.0 +18776,54,7.45,26,0.0 +18776,12,38,32,0.0 +18776,17,39,39,0.0 +18776,36,19,11,0.0 +18776,63,43.9,16,0.0 +18776,69,36,45,0.0 +18776,25,14,43,0.0 +18776,2,19,47,0.0 +18776,71,21.5,32,0.0 +18776,37,26,41,0.0 +18776,48,12.75,26,0.0 +18776,67,14,46,0.0 +18776,72,34.8,29,0.0 +18776,1,18,1,0.0 +18776,43,46,11,0.0 +18776,14,23.25,46,0.0 +18776,44,19.45,4,0.0 +18776,19,9.2,31,0.0 +18776,26,31.23,47,0.0 +18776,70,15,11,0.0 +18776,32,32,24,0.0 +18776,49,20,4,0.0 +18776,45,9.5,10,0.0 +18776,50,16.25,8,0.0 +18776,38,263.5,15,0.0 +18776,66,17,48,0.0 +18776,10,31,3,0.0 +18776,22,21,12,0.0 +18776,55,24,48,0.0 +18776,30,25.89,37,0.0 +18776,46,12,43,0.0 +18776,35,18,6,0.0 +18776,61,28.5,21,0.0 +18776,11,21,5,0.0 +18776,40,18.4,24,0.0 +18776,34,14,5,0.0 +18777,46,12,40,0.0 +18777,42,14,25,0.0 +18777,38,263.5,48,0.0 +18777,3,10,32,0.0 +18777,45,9.5,16,0.0 +18777,28,45.6,40,0.0 +18777,74,10,27,0.0 +18777,18,62.5,18,0.0 +18777,14,23.25,31,0.0 +18777,26,31.23,2,0.0 +18777,17,39,49,0.0 +18777,76,18,13,0.0 +18777,67,14,7,0.0 +18777,54,7.45,19,0.0 +18777,73,15,10,0.0 +18777,8,40,32,0.0 +18777,39,18,30,0.0 +18777,65,21.05,17,0.0 +18777,29,123.79,13,0.0 +18777,1,18,46,0.0 +18777,59,55,15,0.0 +18777,58,13.25,7,0.0 +18777,6,25,30,0.0 +18777,19,9.2,13,0.0 +18777,13,6,26,0.0 +18777,75,7.75,26,0.0 +18777,22,21,18,0.0 +18777,7,30,12,0.0 +18777,37,26,20,0.0 +18777,53,32.8,5,0.0 +18777,48,12.75,9,0.0 +18777,34,14,4,0.0 +18777,15,15.5,21,0.0 +18777,23,9,24,0.0 +18777,55,24,30,0.0 +18777,61,28.5,20,0.0 +18777,31,12.5,15,0.0 +18777,62,49.3,31,0.0 +18777,36,19,3,0.0 +18777,72,34.8,9,0.0 +18777,32,32,45,0.0 +18777,44,19.45,22,0.0 +18777,40,18.4,32,0.0 +18777,68,12.5,31,0.0 +18777,63,43.9,38,0.0 +18777,66,17,23,0.0 +18777,64,33.25,1,0.0 +18777,70,15,42,0.0 +18777,11,21,42,0.0 +18777,56,38,35,0.0 +18777,41,9.65,31,0.0 +18777,12,38,30,0.0 +18777,24,4.5,29,0.0 +18777,30,25.89,46,0.0 +18777,43,46,15,0.0 +18777,20,81,35,0.0 +18777,71,21.5,43,0.0 +18777,16,17.45,23,0.0 +18778,28,45.6,9,0.0 +18778,5,21.35,8,0.0 +18778,22,21,21,0.0 +18778,7,30,33,0.0 +18778,43,46,48,0.0 +18778,11,21,39,0.0 +18778,41,9.65,23,0.0 +18778,66,17,13,0.0 +18778,52,7,22,0.0 +18778,25,14,10,0.0 +18778,65,21.05,10,0.0 +18778,32,32,13,0.0 +18778,49,20,39,0.0 +18778,76,18,39,0.0 +18778,69,36,50,0.0 +18778,77,13,4,0.0 +18778,59,55,38,0.0 +18778,58,13.25,11,0.0 +18778,40,18.4,1,0.0 +18778,23,9,15,0.0 +18778,14,23.25,32,0.0 +18778,53,32.8,30,0.0 +18778,1,18,19,0.0 +18778,31,12.5,4,0.0 +18778,18,62.5,32,0.0 +18778,2,19,33,0.0 +18778,37,26,3,0.0 +18779,16,17.45,23,0.0 +18779,31,12.5,13,0.0 +18779,34,14,38,0.0 +18779,36,19,4,0.0 +18779,19,9.2,36,0.0 +18779,38,263.5,24,0.0 +18779,53,32.8,30,0.0 +18779,44,19.45,47,0.0 +18779,66,17,13,0.0 +18779,45,9.5,45,0.0 +18779,14,23.25,21,0.0 +18779,26,31.23,43,0.0 +18779,15,15.5,11,0.0 +18779,59,55,32,0.0 +18779,62,49.3,34,0.0 +18779,39,18,5,0.0 +18779,28,45.6,13,0.0 +18779,74,10,39,0.0 +18779,76,18,7,0.0 +18779,41,9.65,24,0.0 +18779,7,30,50,0.0 +18779,50,16.25,45,0.0 +18779,12,38,1,0.0 +18779,63,43.9,5,0.0 +18780,39,18,28,0.0 +18780,71,21.5,38,0.0 +18780,25,14,48,0.0 +18780,13,6,31,0.0 +18780,23,9,11,0.0 +18780,52,7,1,0.0 +18780,17,39,26,0.0 +18780,15,15.5,25,0.0 +18780,44,19.45,28,0.0 +18780,75,7.75,7,0.0 +18780,19,9.2,39,0.0 +18780,68,12.5,47,0.0 +18780,76,18,25,0.0 +18780,29,123.79,39,0.0 +18781,17,39,45,0.0 +18781,30,25.89,6,0.0 +18781,37,26,24,0.0 +18781,67,14,16,0.0 +18781,65,21.05,31,0.0 +18781,10,31,21,0.0 +18781,66,17,20,0.0 +18781,74,10,37,0.0 +18781,61,28.5,15,0.0 +18781,26,31.23,14,0.0 +18781,46,12,35,0.0 +18781,34,14,40,0.0 +18781,3,10,41,0.0 +18781,23,9,14,0.0 +18781,45,9.5,46,0.0 +18781,28,45.6,39,0.0 +18781,71,21.5,3,0.0 +18781,51,53,25,0.0 +18781,55,24,23,0.0 +18781,21,10,28,0.0 +18781,20,81,1,0.0 +18781,31,12.5,39,0.0 +18781,54,7.45,17,0.0 +18781,25,14,50,0.0 +18781,64,33.25,3,0.0 +18781,36,19,11,0.0 +18781,6,25,40,0.0 +18781,13,6,6,0.0 +18781,22,21,18,0.0 +18781,33,2.5,38,0.0 +18781,19,9.2,34,0.0 +18781,27,43.9,48,0.0 +18781,72,34.8,39,0.0 +18781,18,62.5,13,0.0 +18781,39,18,14,0.0 +18781,12,38,24,0.0 +18781,35,18,36,0.0 +18781,40,18.4,1,0.0 +18781,2,19,28,0.0 +18781,68,12.5,7,0.0 +18781,50,16.25,40,0.0 +18781,16,17.45,6,0.0 +18781,29,123.79,9,0.0 +18781,63,43.9,43,0.0 +18781,56,38,49,0.0 +18781,57,19.5,8,0.0 +18781,69,36,7,0.0 +18781,76,18,34,0.0 +18781,41,9.65,23,0.0 +18781,24,4.5,34,0.0 +18781,47,9.5,6,0.0 +18781,75,7.75,45,0.0 +18781,70,15,8,0.0 +18781,5,21.35,44,0.0 +18781,4,22,3,0.0 +18781,14,23.25,9,0.0 +18781,49,20,30,0.0 +18781,60,34,29,0.0 +18781,73,15,48,0.0 +18781,42,14,49,0.0 +18781,11,21,18,0.0 +18781,77,13,38,0.0 +18781,32,32,50,0.0 +18781,9,97,34,0.0 +18781,1,18,15,0.0 +18782,56,38,45,0.0 +18782,63,43.9,13,0.0 +18782,37,26,23,0.0 +18782,4,22,38,0.0 +18782,76,18,46,0.0 +18782,72,34.8,45,0.0 +18782,36,19,26,0.0 +18782,39,18,46,0.0 +18782,34,14,44,0.0 +18782,44,19.45,3,0.0 +18783,42,14,34,0.0 +18783,17,39,20,0.0 +18783,57,19.5,42,0.0 +18783,30,25.89,48,0.0 +18783,36,19,22,0.0 +18783,34,14,23,0.0 +18783,61,28.5,12,0.0 +18783,53,32.8,16,0.0 +18783,26,31.23,31,0.0 +18783,2,19,49,0.0 +18783,77,13,34,0.0 +18783,58,13.25,4,0.0 +18783,51,53,6,0.0 +18783,45,9.5,11,0.0 +18783,25,14,43,0.0 +18783,9,97,14,0.0 +18783,10,31,25,0.0 +18783,31,12.5,26,0.0 +18783,70,15,45,0.0 +18783,7,30,5,0.0 +18783,12,38,10,0.0 +18783,74,10,42,0.0 +18783,4,22,28,0.0 +18783,50,16.25,32,0.0 +18783,16,17.45,41,0.0 +18783,14,23.25,18,0.0 +18783,8,40,20,0.0 +18783,35,18,46,0.0 +18783,3,10,49,0.0 +18783,15,15.5,5,0.0 +18783,32,32,24,0.0 +18783,60,34,47,0.0 +18783,38,263.5,28,0.0 +18783,48,12.75,20,0.0 +18783,65,21.05,44,0.0 +18783,41,9.65,4,0.0 +18783,72,34.8,30,0.0 +18783,55,24,6,0.0 +18783,6,25,39,0.0 +18783,28,45.6,25,0.0 +18783,23,9,3,0.0 +18783,59,55,7,0.0 +18783,71,21.5,45,0.0 +18783,18,62.5,45,0.0 +18783,66,17,10,0.0 +18783,73,15,13,0.0 +18783,76,18,35,0.0 +18783,43,46,12,0.0 +18783,54,7.45,45,0.0 +18783,33,2.5,29,0.0 +18783,56,38,27,0.0 +18783,5,21.35,1,0.0 +18783,63,43.9,48,0.0 +18783,40,18.4,3,0.0 +18783,21,10,27,0.0 +18783,62,49.3,9,0.0 +18783,52,7,23,0.0 +18783,68,12.5,25,0.0 +18783,13,6,22,0.0 +18783,47,9.5,30,0.0 +18783,29,123.79,45,0.0 +18783,64,33.25,25,0.0 +18783,67,14,9,0.0 +18783,46,12,19,0.0 +18783,44,19.45,4,0.0 +18783,75,7.75,23,0.0 +18783,37,26,44,0.0 +18783,39,18,15,0.0 +18783,1,18,13,0.0 +18783,24,4.5,25,0.0 +18783,22,21,24,0.0 +18783,19,9.2,8,0.0 +18783,11,21,29,0.0 +18783,49,20,31,0.0 +18783,27,43.9,46,0.0 +18784,75,7.75,25,0.0 +18784,64,33.25,5,0.0 +18784,62,49.3,47,0.0 +18784,37,26,14,0.0 +18784,28,45.6,18,0.0 +18784,42,14,19,0.0 +18784,16,17.45,15,0.0 +18784,20,81,36,0.0 +18784,67,14,47,0.0 +18784,71,21.5,25,0.0 +18784,4,22,1,0.0 +18784,44,19.45,10,0.0 +18784,31,12.5,35,0.0 +18784,24,4.5,31,0.0 +18784,25,14,21,0.0 +18784,34,14,33,0.0 +18784,13,6,21,0.0 +18784,46,12,13,0.0 +18784,12,38,32,0.0 +18784,41,9.65,2,0.0 +18784,59,55,17,0.0 +18784,5,21.35,25,0.0 +18784,7,30,38,0.0 +18784,54,7.45,3,0.0 +18784,76,18,49,0.0 +18784,50,16.25,49,0.0 +18784,38,263.5,18,0.0 +18784,45,9.5,34,0.0 +18784,23,9,50,0.0 +18784,63,43.9,31,0.0 +18784,49,20,3,0.0 +18784,43,46,31,0.0 +18784,39,18,43,0.0 +18784,52,7,25,0.0 +18784,69,36,40,0.0 +18784,72,34.8,24,0.0 +18784,61,28.5,26,0.0 +18784,57,19.5,9,0.0 +18784,1,18,3,0.0 +18784,55,24,14,0.0 +18784,30,25.89,17,0.0 +18784,74,10,8,0.0 +18784,15,15.5,36,0.0 +18784,70,15,19,0.0 +18784,68,12.5,32,0.0 +18784,14,23.25,42,0.0 +18784,56,38,47,0.0 +18784,29,123.79,12,0.0 +18784,18,62.5,20,0.0 +18784,22,21,5,0.0 +18784,10,31,20,0.0 +18784,36,19,39,0.0 +18784,8,40,41,0.0 +18784,51,53,21,0.0 +18784,33,2.5,25,0.0 +18784,48,12.75,4,0.0 +18784,77,13,17,0.0 +18784,58,13.25,45,0.0 +18784,66,17,27,0.0 +18784,3,10,21,0.0 +18784,19,9.2,27,0.0 +18785,23,9,29,0.0 +18785,66,17,11,0.0 +18785,68,12.5,46,0.0 +18785,69,36,30,0.0 +18785,77,13,26,0.0 +18785,44,19.45,46,0.0 +18785,8,40,24,0.0 +18785,22,21,33,0.0 +18785,49,20,30,0.0 +18785,45,9.5,15,0.0 +18785,38,263.5,11,0.0 +18785,64,33.25,3,0.0 +18785,63,43.9,45,0.0 +18785,43,46,25,0.0 +18785,32,32,14,0.0 +18785,76,18,25,0.0 +18785,10,31,1,0.0 +18785,48,12.75,50,0.0 +18785,70,15,14,0.0 +18785,72,34.8,40,0.0 +18785,71,21.5,49,0.0 +18785,61,28.5,36,0.0 +18785,9,97,22,0.0 +18785,25,14,15,0.0 +18785,24,4.5,24,0.0 +18786,54,7.45,1,0.0 +18786,40,18.4,31,0.0 +18786,8,40,34,0.0 +18786,39,18,15,0.0 +18786,51,53,44,0.0 +18786,45,9.5,49,0.0 +18786,20,81,5,0.0 +18786,27,43.9,34,0.0 +18786,62,49.3,33,0.0 +18786,58,13.25,23,0.0 +18786,37,26,33,0.0 +18786,60,34,18,0.0 +18786,44,19.45,9,0.0 +18786,41,9.65,22,0.0 +18786,50,16.25,40,0.0 +18786,52,7,47,0.0 +18786,12,38,42,0.0 +18786,32,32,20,0.0 +18787,30,25.89,10,0.0 +18787,57,19.5,37,0.0 +18787,50,16.25,19,0.0 +18787,49,20,50,0.0 +18787,55,24,48,0.0 +18787,68,12.5,13,0.0 +18787,48,12.75,11,0.0 +18787,12,38,20,0.0 +18787,9,97,47,0.0 +18787,52,7,1,0.0 +18787,77,13,45,0.0 +18787,74,10,43,0.0 +18787,45,9.5,16,0.0 +18787,37,26,10,0.0 +18787,62,49.3,42,0.0 +18787,26,31.23,34,0.0 +18787,44,19.45,12,0.0 +18787,15,15.5,29,0.0 +18787,66,17,35,0.0 +18788,76,18,23,0.0 +18789,2,19,44,0.0 +18789,7,30,21,0.0 +18789,75,7.75,12,0.0 +18789,17,39,7,0.0 +18789,21,10,42,0.0 +18789,3,10,24,0.0 +18789,4,22,24,0.0 +18789,37,26,21,0.0 +18789,8,40,4,0.0 +18789,49,20,30,0.0 +18789,38,263.5,11,0.0 +18790,20,81,24,0.0 +18790,2,19,26,0.0 +18790,71,21.5,36,0.0 +18790,39,18,6,0.0 +18790,37,26,22,0.0 +18790,6,25,34,0.0 +18790,26,31.23,20,0.0 +18790,59,55,26,0.0 +18790,72,34.8,1,0.0 +18790,49,20,24,0.0 +18790,73,15,19,0.0 +18790,13,6,8,0.0 +18790,41,9.65,50,0.0 +18790,46,12,49,0.0 +18790,1,18,48,0.0 +18790,64,33.25,25,0.0 +18790,22,21,25,0.0 +18790,50,16.25,9,0.0 +18790,33,2.5,7,0.0 +18790,14,23.25,16,0.0 +18790,18,62.5,13,0.0 +18790,58,13.25,24,0.0 +18790,48,12.75,32,0.0 +18790,27,43.9,3,0.0 +18790,63,43.9,46,0.0 +18790,7,30,37,0.0 +18790,44,19.45,24,0.0 +18790,75,7.75,38,0.0 +18790,36,19,50,0.0 +18790,53,32.8,38,0.0 +18790,74,10,50,0.0 +18790,8,40,29,0.0 +18790,55,24,19,0.0 +18790,19,9.2,34,0.0 +18790,62,49.3,25,0.0 +18790,11,21,2,0.0 +18791,62,49.3,7,0.0 +18791,13,6,12,0.0 +18791,48,12.75,15,0.0 +18791,51,53,31,0.0 +18791,31,12.5,23,0.0 +18791,65,21.05,21,0.0 +18791,68,12.5,2,0.0 +18791,15,15.5,10,0.0 +18791,57,19.5,7,0.0 +18791,41,9.65,23,0.0 +18791,1,18,44,0.0 +18791,21,10,45,0.0 +18791,5,21.35,28,0.0 +18791,34,14,1,0.0 +18791,58,13.25,18,0.0 +18791,71,21.5,40,0.0 +18791,39,18,28,0.0 +18791,36,19,1,0.0 +18791,40,18.4,17,0.0 +18791,25,14,12,0.0 +18791,50,16.25,29,0.0 +18791,29,123.79,28,0.0 +18791,37,26,21,0.0 +18791,24,4.5,3,0.0 +18791,42,14,49,0.0 +18791,61,28.5,25,0.0 +18791,20,81,28,0.0 +18791,8,40,8,0.0 +18791,32,32,27,0.0 +18791,22,21,15,0.0 +18791,44,19.45,41,0.0 +18791,10,31,5,0.0 +18791,70,15,22,0.0 +18791,7,30,47,0.0 +18791,27,43.9,7,0.0 +18791,77,13,40,0.0 +18791,17,39,20,0.0 +18791,30,25.89,14,0.0 +18791,16,17.45,50,0.0 +18791,46,12,14,0.0 +18791,9,97,36,0.0 +18791,53,32.8,37,0.0 +18792,16,17.45,34,0.0 +18793,48,12.75,35,0.0 +18793,33,2.5,1,0.0 +18793,43,46,1,0.0 +18793,70,15,35,0.0 +18793,22,21,39,0.0 +18793,69,36,3,0.0 +18793,41,9.65,39,0.0 +18793,28,45.6,26,0.0 +18793,8,40,12,0.0 +18793,35,18,4,0.0 +18793,10,31,43,0.0 +18793,5,21.35,17,0.0 +18793,44,19.45,36,0.0 +18793,76,18,41,0.0 +18793,37,26,23,0.0 +18793,56,38,43,0.0 +18793,4,22,49,0.0 +18793,38,263.5,26,0.0 +18793,59,55,27,0.0 +18793,7,30,34,0.0 +18793,31,12.5,24,0.0 +18793,27,43.9,49,0.0 +18793,53,32.8,20,0.0 +18793,23,9,39,0.0 +18793,51,53,44,0.0 +18793,52,7,12,0.0 +18793,19,9.2,27,0.0 +18793,50,16.25,43,0.0 +18793,21,10,42,0.0 +18793,17,39,31,0.0 +18793,66,17,29,0.0 +18793,72,34.8,37,0.0 +18793,67,14,39,0.0 +18793,13,6,42,0.0 +18793,46,12,14,0.0 +18793,36,19,28,0.0 +18793,74,10,25,0.0 +18793,73,15,37,0.0 +18793,58,13.25,10,0.0 +18793,29,123.79,30,0.0 +18793,24,4.5,36,0.0 +18793,26,31.23,39,0.0 +18793,61,28.5,42,0.0 +18793,2,19,39,0.0 +18793,45,9.5,38,0.0 +18793,62,49.3,19,0.0 +18793,40,18.4,35,0.0 +18793,42,14,24,0.0 +18793,18,62.5,12,0.0 +18793,34,14,46,0.0 +18793,12,38,49,0.0 +18793,64,33.25,13,0.0 +18793,16,17.45,36,0.0 +18793,6,25,37,0.0 +18793,14,23.25,27,0.0 +18793,3,10,12,0.0 +18793,11,21,3,0.0 +18793,65,21.05,23,0.0 +18793,20,81,12,0.0 +18794,54,7.45,14,0.0 +18794,14,23.25,5,0.0 +18794,51,53,15,0.0 +18794,35,18,33,0.0 +18794,17,39,29,0.0 +18794,6,25,29,0.0 +18794,63,43.9,25,0.0 +18794,34,14,49,0.0 +18794,69,36,25,0.0 +18794,61,28.5,30,0.0 +18794,57,19.5,31,0.0 +18794,2,19,43,0.0 +18794,21,10,25,0.0 +18794,15,15.5,23,0.0 +18794,3,10,8,0.0 +18794,66,17,48,0.0 +18794,45,9.5,28,0.0 +18794,4,22,35,0.0 +18794,43,46,23,0.0 +18794,8,40,32,0.0 +18794,26,31.23,9,0.0 +18794,58,13.25,33,0.0 +18794,39,18,39,0.0 +18794,20,81,21,0.0 +18794,7,30,50,0.0 +18794,60,34,48,0.0 +18794,27,43.9,9,0.0 +18794,53,32.8,16,0.0 +18794,72,34.8,2,0.0 +18794,44,19.45,19,0.0 +18794,77,13,50,0.0 +18794,11,21,26,0.0 +18794,76,18,3,0.0 +18794,50,16.25,6,0.0 +18794,71,21.5,34,0.0 +18795,40,18.4,18,0.0 +18795,3,10,34,0.0 +18795,47,9.5,48,0.0 +18795,61,28.5,42,0.0 +18795,68,12.5,14,0.0 +18795,11,21,26,0.0 +18795,55,24,24,0.0 +18795,71,21.5,48,0.0 +18795,9,97,31,0.0 +18795,35,18,18,0.0 +18795,50,16.25,6,0.0 +18795,31,12.5,1,0.0 +18795,18,62.5,50,0.0 +18795,10,31,45,0.0 +18795,14,23.25,5,0.0 +18795,17,39,5,0.0 +18795,7,30,10,0.0 +18795,42,14,36,0.0 +18795,26,31.23,47,0.0 +18795,45,9.5,45,0.0 +18795,65,21.05,23,0.0 +18795,1,18,45,0.0 +18795,59,55,2,0.0 +18795,37,26,23,0.0 +18795,43,46,10,0.0 +18795,25,14,9,0.0 +18795,70,15,46,0.0 +18795,38,263.5,12,0.0 +18795,41,9.65,13,0.0 +18795,15,15.5,27,0.0 +18795,32,32,25,0.0 +18795,5,21.35,11,0.0 +18795,16,17.45,13,0.0 +18795,44,19.45,1,0.0 +18795,64,33.25,23,0.0 +18795,23,9,31,0.0 +18795,51,53,37,0.0 +18795,29,123.79,9,0.0 +18795,66,17,43,0.0 +18795,49,20,6,0.0 +18795,19,9.2,42,0.0 +18795,52,7,9,0.0 +18795,74,10,14,0.0 +18795,69,36,6,0.0 +18795,34,14,25,0.0 +18795,12,38,8,0.0 +18795,20,81,13,0.0 +18795,76,18,29,0.0 +18795,72,34.8,47,0.0 +18795,48,12.75,11,0.0 +18795,75,7.75,45,0.0 +18795,53,32.8,48,0.0 +18795,58,13.25,39,0.0 +18795,67,14,35,0.0 +18795,21,10,17,0.0 +18795,54,7.45,16,0.0 +18795,60,34,9,0.0 +18795,36,19,12,0.0 +18795,39,18,40,0.0 +18795,73,15,24,0.0 +18795,24,4.5,50,0.0 +18795,63,43.9,2,0.0 +18795,33,2.5,44,0.0 +18795,77,13,43,0.0 +18795,27,43.9,47,0.0 +18795,6,25,40,0.0 +18796,64,33.25,18,0.0 +18796,49,20,30,0.0 +18797,74,10,47,0.0 +18797,21,10,31,0.0 +18797,12,38,25,0.0 +18797,37,26,19,0.0 +18797,58,13.25,13,0.0 +18797,46,12,10,0.0 +18797,5,21.35,34,0.0 +18797,56,38,9,0.0 +18797,64,33.25,8,0.0 +18797,15,15.5,3,0.0 +18797,57,19.5,38,0.0 +18797,41,9.65,41,0.0 +18797,1,18,26,0.0 +18797,33,2.5,41,0.0 +18797,18,62.5,10,0.0 +18797,52,7,32,0.0 +18797,29,123.79,8,0.0 +18797,22,21,16,0.0 +18797,38,263.5,44,0.0 +18797,70,15,45,0.0 +18797,2,19,6,0.0 +18797,69,36,19,0.0 +18797,68,12.5,25,0.0 +18797,48,12.75,10,0.0 +18797,32,32,8,0.0 +18797,59,55,25,0.0 +18797,53,32.8,14,0.0 +18797,66,17,46,0.0 +18797,76,18,36,0.0 +18797,35,18,20,0.0 +18797,62,49.3,29,0.0 +18797,60,34,20,0.0 +18797,13,6,48,0.0 +18797,55,24,36,0.0 +18797,67,14,17,0.0 +18797,72,34.8,25,0.0 +18797,34,14,41,0.0 +18797,73,15,23,0.0 +18797,40,18.4,37,0.0 +18797,36,19,23,0.0 +18797,50,16.25,41,0.0 +18797,19,9.2,23,0.0 +18797,17,39,41,0.0 +18797,20,81,18,0.0 +18797,7,30,41,0.0 +18797,77,13,30,0.0 +18797,25,14,19,0.0 +18797,54,7.45,1,0.0 +18797,11,21,30,0.0 +18797,75,7.75,43,0.0 +18797,23,9,23,0.0 +18797,6,25,13,0.0 +18797,3,10,12,0.0 +18797,61,28.5,19,0.0 +18797,26,31.23,16,0.0 +18797,8,40,4,0.0 +18797,30,25.89,30,0.0 +18797,71,21.5,22,0.0 +18797,47,9.5,16,0.0 +18798,20,81,34,0.0 +18798,17,39,4,0.0 +18798,3,10,32,0.0 +18798,68,12.5,43,0.0 +18798,35,18,21,0.0 +18798,36,19,10,0.0 +18798,66,17,26,0.0 +18798,46,12,35,0.0 +18798,43,46,34,0.0 +18798,9,97,34,0.0 +18798,65,21.05,7,0.0 +18798,22,21,8,0.0 +18798,26,31.23,9,0.0 +18798,64,33.25,1,0.0 +18798,15,15.5,15,0.0 +18798,30,25.89,17,0.0 +18798,59,55,44,0.0 +18798,62,49.3,10,0.0 +18798,31,12.5,33,0.0 +18798,13,6,28,0.0 +18798,28,45.6,2,0.0 +18798,67,14,30,0.0 +18798,54,7.45,25,0.0 +18798,55,24,13,0.0 +18798,76,18,47,0.0 +18798,33,2.5,16,0.0 +18798,48,12.75,39,0.0 +18799,5,21.35,48,0.0 +18799,2,19,47,0.0 +18799,28,45.6,2,0.0 +18799,27,43.9,12,0.0 +18799,64,33.25,26,0.0 +18799,70,15,4,0.0 +18799,45,9.5,40,0.0 +18799,48,12.75,47,0.0 +18799,7,30,37,0.0 +18799,67,14,6,0.0 +18799,39,18,50,0.0 +18799,44,19.45,50,0.0 +18799,32,32,33,0.0 +18799,54,7.45,3,0.0 +18799,43,46,5,0.0 +18799,11,21,11,0.0 +18799,62,49.3,10,0.0 +18799,59,55,34,0.0 +18799,8,40,34,0.0 +18799,34,14,21,0.0 +18799,53,32.8,19,0.0 +18799,66,17,50,0.0 +18799,17,39,41,0.0 +18799,23,9,43,0.0 +18799,41,9.65,10,0.0 +18799,22,21,33,0.0 +18799,1,18,32,0.0 +18799,37,26,1,0.0 +18799,15,15.5,18,0.0 +18799,3,10,34,0.0 +18799,40,18.4,21,0.0 +18799,13,6,26,0.0 +18799,33,2.5,28,0.0 +18799,31,12.5,19,0.0 +18799,20,81,2,0.0 +18799,52,7,48,0.0 +18799,24,4.5,49,0.0 +18799,42,14,5,0.0 +18799,58,13.25,47,0.0 +18799,18,62.5,11,0.0 +18799,21,10,12,0.0 +18799,47,9.5,31,0.0 +18799,19,9.2,28,0.0 +18799,69,36,29,0.0 +18799,25,14,11,0.0 +18799,4,22,23,0.0 +18799,38,263.5,17,0.0 +18799,35,18,15,0.0 +18799,30,25.89,17,0.0 +18799,29,123.79,50,0.0 +18799,12,38,27,0.0 +18800,29,123.79,23,0.0 +18800,77,13,6,0.0 +18800,43,46,42,0.0 +18800,1,18,39,0.0 +18800,69,36,20,0.0 +18800,5,21.35,22,0.0 +18800,38,263.5,3,0.0 +18800,42,14,6,0.0 +18800,32,32,3,0.0 +18801,27,43.9,48,0.0 +18801,17,39,6,0.0 +18801,46,12,34,0.0 +18801,61,28.5,34,0.0 +18801,16,17.45,13,0.0 +18801,50,16.25,41,0.0 +18801,60,34,46,0.0 +18801,7,30,15,0.0 +18801,26,31.23,46,0.0 +18801,31,12.5,36,0.0 +18801,4,22,18,0.0 +18801,65,21.05,33,0.0 +18801,28,45.6,21,0.0 +18801,76,18,30,0.0 +18801,74,10,1,0.0 +18801,20,81,33,0.0 +18801,47,9.5,50,0.0 +18801,40,18.4,41,0.0 +18801,72,34.8,25,0.0 +18801,62,49.3,25,0.0 +18801,66,17,31,0.0 +18801,30,25.89,13,0.0 +18801,71,21.5,10,0.0 +18801,13,6,48,0.0 +18801,39,18,33,0.0 +18801,56,38,15,0.0 +18801,41,9.65,31,0.0 +18801,45,9.5,28,0.0 +18801,67,14,30,0.0 +18801,33,2.5,25,0.0 +18801,3,10,11,0.0 +18801,36,19,3,0.0 +18801,54,7.45,46,0.0 +18801,2,19,32,0.0 +18801,21,10,17,0.0 +18801,49,20,15,0.0 +18801,43,46,28,0.0 +18801,57,19.5,47,0.0 +18801,11,21,8,0.0 +18801,38,263.5,49,0.0 +18801,77,13,23,0.0 +18801,64,33.25,38,0.0 +18801,35,18,5,0.0 +18801,1,18,5,0.0 +18801,75,7.75,35,0.0 +18801,23,9,36,0.0 +18801,59,55,18,0.0 +18801,15,15.5,12,0.0 +18801,58,13.25,26,0.0 +18801,18,62.5,36,0.0 +18801,44,19.45,24,0.0 +18801,5,21.35,21,0.0 +18801,19,9.2,47,0.0 +18801,6,25,41,0.0 +18801,52,7,40,0.0 +18801,22,21,11,0.0 +18801,42,14,12,0.0 +18801,53,32.8,35,0.0 +18802,62,49.3,24,0.0 +18802,76,18,27,0.0 +18802,6,25,12,0.0 +18802,49,20,45,0.0 +18802,71,21.5,12,0.0 +18802,53,32.8,32,0.0 +18802,34,14,6,0.0 +18802,60,34,2,0.0 +18802,28,45.6,48,0.0 +18802,23,9,50,0.0 +18802,64,33.25,22,0.0 +18803,63,43.9,22,0.0 +18803,60,34,30,0.0 +18803,35,18,1,0.0 +18803,33,2.5,4,0.0 +18803,70,15,19,0.0 +18803,66,17,9,0.0 +18803,28,45.6,43,0.0 +18803,17,39,30,0.0 +18803,21,10,3,0.0 +18803,26,31.23,23,0.0 +18803,34,14,50,0.0 +18803,74,10,33,0.0 +18803,64,33.25,10,0.0 +18803,18,62.5,8,0.0 +18803,68,12.5,8,0.0 +18803,40,18.4,33,0.0 +18803,52,7,50,0.0 +18803,13,6,49,0.0 +18803,20,81,4,0.0 +18803,41,9.65,4,0.0 +18803,4,22,26,0.0 +18803,77,13,50,0.0 +18803,55,24,40,0.0 +18803,42,14,48,0.0 +18803,57,19.5,11,0.0 +18803,46,12,26,0.0 +18803,43,46,37,0.0 +18803,22,21,7,0.0 +18803,25,14,2,0.0 +18803,44,19.45,48,0.0 +18803,56,38,3,0.0 +18803,19,9.2,28,0.0 +18803,47,9.5,4,0.0 +18803,16,17.45,11,0.0 +18803,75,7.75,45,0.0 +18803,29,123.79,26,0.0 +18803,72,34.8,21,0.0 +18803,30,25.89,23,0.0 +18803,73,15,48,0.0 +18803,15,15.5,5,0.0 +18803,14,23.25,48,0.0 +18803,23,9,41,0.0 +18803,27,43.9,41,0.0 +18803,12,38,14,0.0 +18803,45,9.5,7,0.0 +18803,62,49.3,28,0.0 +18803,76,18,49,0.0 +18803,51,53,48,0.0 +18803,2,19,13,0.0 +18803,48,12.75,13,0.0 +18803,3,10,26,0.0 +18803,71,21.5,14,0.0 +18803,11,21,18,0.0 +18803,5,21.35,24,0.0 +18803,6,25,41,0.0 +18803,50,16.25,38,0.0 +18803,32,32,9,0.0 +18803,36,19,42,0.0 +18803,31,12.5,36,0.0 +18803,49,20,5,0.0 +18803,54,7.45,21,0.0 +18803,58,13.25,44,0.0 +18804,56,38,26,0.0 +18804,40,18.4,36,0.0 +18804,41,9.65,42,0.0 +18804,25,14,39,0.0 +18804,77,13,13,0.0 +18804,66,17,42,0.0 +18804,2,19,17,0.0 +18804,19,9.2,2,0.0 +18804,16,17.45,1,0.0 +18804,39,18,10,0.0 +18804,52,7,36,0.0 +18804,50,16.25,27,0.0 +18804,6,25,20,0.0 +18804,64,33.25,37,0.0 +18804,20,81,11,0.0 +18804,9,97,24,0.0 +18804,48,12.75,31,0.0 +18804,46,12,18,0.0 +18804,5,21.35,23,0.0 +18804,43,46,44,0.0 +18804,21,10,41,0.0 +18804,61,28.5,5,0.0 +18804,71,21.5,49,0.0 +18804,72,34.8,50,0.0 +18804,54,7.45,49,0.0 +18804,24,4.5,26,0.0 +18804,53,32.8,26,0.0 +18804,45,9.5,35,0.0 +18804,28,45.6,6,0.0 +18804,63,43.9,24,0.0 +18804,38,263.5,36,0.0 +18805,15,15.5,49,0.0 +18805,56,38,13,0.0 +18805,33,2.5,36,0.0 +18805,73,15,26,0.0 +18805,55,24,50,0.0 +18805,30,25.89,20,0.0 +18805,57,19.5,34,0.0 +18805,3,10,22,0.0 +18805,10,31,45,0.0 +18806,67,14,19,0.0 +18806,31,12.5,24,0.0 +18806,3,10,37,0.0 +18806,13,6,42,0.0 +18806,43,46,17,0.0 +18806,14,23.25,3,0.0 +18806,32,32,27,0.0 +18806,1,18,38,0.0 +18806,20,81,38,0.0 +18806,50,16.25,8,0.0 +18806,26,31.23,48,0.0 +18806,42,14,38,0.0 +18806,47,9.5,11,0.0 +18806,61,28.5,36,0.0 +18806,11,21,18,0.0 +18806,77,13,31,0.0 +18806,22,21,11,0.0 +18806,4,22,14,0.0 +18806,29,123.79,4,0.0 +18806,38,263.5,33,0.0 +18806,59,55,28,0.0 +18806,10,31,37,0.0 +18806,51,53,33,0.0 +18806,52,7,48,0.0 +18806,25,14,41,0.0 +18806,30,25.89,21,0.0 +18806,21,10,4,0.0 +18806,66,17,7,0.0 +18806,71,21.5,43,0.0 +18806,34,14,1,0.0 +18806,76,18,35,0.0 +18806,35,18,35,0.0 +18806,56,38,1,0.0 +18806,55,24,24,0.0 +18806,65,21.05,43,0.0 +18806,39,18,5,0.0 +18806,18,62.5,43,0.0 +18806,28,45.6,31,0.0 +18806,70,15,19,0.0 +18806,58,13.25,46,0.0 +18806,36,19,39,0.0 +18806,69,36,49,0.0 +18806,68,12.5,48,0.0 +18806,49,20,40,0.0 +18806,24,4.5,42,0.0 +18806,2,19,17,0.0 +18806,19,9.2,1,0.0 +18806,23,9,2,0.0 +18806,54,7.45,1,0.0 +18806,72,34.8,44,0.0 +18806,62,49.3,3,0.0 +18806,48,12.75,28,0.0 +18806,46,12,37,0.0 +18806,33,2.5,44,0.0 +18806,75,7.75,7,0.0 +18806,60,34,26,0.0 +18806,64,33.25,33,0.0 +18806,45,9.5,50,0.0 +18806,74,10,40,0.0 +18806,73,15,13,0.0 +18806,53,32.8,17,0.0 +18806,44,19.45,28,0.0 +18806,27,43.9,27,0.0 +18806,16,17.45,15,0.0 +18806,5,21.35,1,0.0 +18806,9,97,32,0.0 +18806,12,38,9,0.0 +18806,8,40,22,0.0 +18806,6,25,18,0.0 +18806,41,9.65,4,0.0 +18807,32,32,22,0.0 +18807,35,18,46,0.0 +18807,33,2.5,45,0.0 +18807,63,43.9,18,0.0 +18807,6,25,23,0.0 +18807,69,36,13,0.0 +18807,62,49.3,48,0.0 +18807,24,4.5,10,0.0 +18807,44,19.45,21,0.0 +18807,46,12,24,0.0 +18807,51,53,16,0.0 +18807,3,10,26,0.0 +18807,56,38,5,0.0 +18807,73,15,33,0.0 +18807,9,97,37,0.0 +18807,64,33.25,8,0.0 +18807,7,30,45,0.0 +18807,72,34.8,7,0.0 +18807,13,6,3,0.0 +18807,38,263.5,18,0.0 +18807,53,32.8,5,0.0 +18807,8,40,8,0.0 +18807,15,15.5,13,0.0 +18807,10,31,34,0.0 +18807,77,13,29,0.0 +18807,75,7.75,16,0.0 +18807,43,46,5,0.0 +18807,12,38,8,0.0 +18807,25,14,8,0.0 +18807,50,16.25,49,0.0 +18807,41,9.65,5,0.0 +18807,71,21.5,46,0.0 +18807,70,15,37,0.0 +18807,61,28.5,8,0.0 +18807,31,12.5,4,0.0 +18807,65,21.05,11,0.0 +18807,30,25.89,43,0.0 +18807,59,55,43,0.0 +18807,19,9.2,4,0.0 +18807,37,26,8,0.0 +18807,60,34,21,0.0 +18807,67,14,15,0.0 +18807,26,31.23,12,0.0 +18808,22,21,43,0.0 +18808,53,32.8,11,0.0 +18808,46,12,15,0.0 +18808,74,10,22,0.0 +18808,45,9.5,22,0.0 +18808,61,28.5,40,0.0 +18808,47,9.5,8,0.0 +18808,12,38,35,0.0 +18808,49,20,47,0.0 +18808,56,38,37,0.0 +18808,72,34.8,41,0.0 +18808,67,14,18,0.0 +18808,7,30,2,0.0 +18808,35,18,13,0.0 +18808,27,43.9,37,0.0 +18809,72,34.8,2,0.0 +18809,40,18.4,19,0.0 +18809,63,43.9,16,0.0 +18809,67,14,31,0.0 +18809,26,31.23,24,0.0 +18809,62,49.3,1,0.0 +18809,49,20,9,0.0 +18809,27,43.9,24,0.0 +18809,6,25,38,0.0 +18809,61,28.5,7,0.0 +18809,28,45.6,49,0.0 +18809,38,263.5,1,0.0 +18809,75,7.75,28,0.0 +18809,11,21,6,0.0 +18809,18,62.5,46,0.0 +18809,16,17.45,12,0.0 +18809,69,36,17,0.0 +18809,54,7.45,35,0.0 +18809,5,21.35,47,0.0 +18809,7,30,4,0.0 +18809,45,9.5,47,0.0 +18809,59,55,32,0.0 +18809,36,19,33,0.0 +18809,12,38,29,0.0 +18809,47,9.5,42,0.0 +18809,39,18,34,0.0 +18809,4,22,39,0.0 +18809,21,10,38,0.0 +18809,71,21.5,20,0.0 +18809,20,81,3,0.0 +18809,64,33.25,41,0.0 +18809,46,12,12,0.0 +18809,60,34,10,0.0 +18809,8,40,10,0.0 +18809,73,15,28,0.0 +18809,55,24,37,0.0 +18809,24,4.5,37,0.0 +18809,33,2.5,2,0.0 +18809,66,17,1,0.0 +18809,34,14,35,0.0 +18809,42,14,12,0.0 +18809,51,53,46,0.0 +18809,2,19,16,0.0 +18809,53,32.8,10,0.0 +18809,17,39,33,0.0 +18809,68,12.5,23,0.0 +18809,76,18,40,0.0 +18809,32,32,3,0.0 +18809,48,12.75,13,0.0 +18809,3,10,10,0.0 +18809,37,26,40,0.0 +18809,77,13,11,0.0 +18809,74,10,14,0.0 +18809,41,9.65,16,0.0 +18809,57,19.5,34,0.0 +18809,9,97,46,0.0 +18809,58,13.25,35,0.0 +18809,15,15.5,1,0.0 +18809,19,9.2,45,0.0 +18809,52,7,49,0.0 +18809,14,23.25,26,0.0 +18810,73,15,42,0.0 +18810,40,18.4,10,0.0 +18810,21,10,11,0.0 +18810,16,17.45,46,0.0 +18810,12,38,48,0.0 +18810,77,13,6,0.0 +18810,76,18,18,0.0 +18810,65,21.05,35,0.0 +18810,70,15,35,0.0 +18810,62,49.3,34,0.0 +18810,38,263.5,10,0.0 +18810,54,7.45,22,0.0 +18810,61,28.5,33,0.0 +18810,49,20,1,0.0 +18810,25,14,22,0.0 +18810,57,19.5,43,0.0 +18810,6,25,7,0.0 +18810,17,39,18,0.0 +18810,3,10,38,0.0 +18810,59,55,20,0.0 +18810,68,12.5,42,0.0 +18810,4,22,24,0.0 +18810,8,40,33,0.0 +18810,15,15.5,27,0.0 +18810,58,13.25,39,0.0 +18810,10,31,10,0.0 +18810,18,62.5,38,0.0 +18810,66,17,22,0.0 +18810,26,31.23,21,0.0 +18810,29,123.79,13,0.0 +18810,74,10,48,0.0 +18810,47,9.5,23,0.0 +18810,27,43.9,17,0.0 +18810,52,7,30,0.0 +18810,22,21,30,0.0 +18810,14,23.25,46,0.0 +18810,32,32,22,0.0 +18810,9,97,9,0.0 +18810,36,19,49,0.0 +18810,48,12.75,22,0.0 +18810,7,30,35,0.0 +18810,71,21.5,26,0.0 +18810,2,19,14,0.0 +18810,72,34.8,42,0.0 +18810,41,9.65,11,0.0 +18810,34,14,32,0.0 +18810,24,4.5,8,0.0 +18810,11,21,41,0.0 +18810,64,33.25,39,0.0 +18810,31,12.5,47,0.0 +18810,37,26,4,0.0 +18810,51,53,17,0.0 +18810,53,32.8,13,0.0 +18810,69,36,14,0.0 +18810,63,43.9,33,0.0 +18810,43,46,37,0.0 +18810,39,18,22,0.0 +18810,42,14,26,0.0 +18810,44,19.45,28,0.0 +18810,50,16.25,29,0.0 +18810,1,18,23,0.0 +18810,28,45.6,7,0.0 +18810,75,7.75,9,0.0 +18810,33,2.5,1,0.0 +18810,35,18,47,0.0 +18810,55,24,24,0.0 +18810,46,12,22,0.0 +18810,60,34,33,0.0 +18810,45,9.5,23,0.0 +18810,23,9,33,0.0 +18810,19,9.2,42,0.0 +18810,20,81,43,0.0 +18810,56,38,39,0.0 +18810,5,21.35,27,0.0 +18810,67,14,44,0.0 +18810,30,25.89,2,0.0 +18811,76,18,15,0.0 +18811,3,10,6,0.0 +18811,58,13.25,36,0.0 +18811,42,14,14,0.0 +18811,64,33.25,29,0.0 +18811,31,12.5,27,0.0 +18811,13,6,34,0.0 +18812,19,9.2,47,0.0 +18812,20,81,31,0.0 +18813,15,15.5,23,0.0 +18813,43,46,50,0.0 +18813,71,21.5,20,0.0 +18813,33,2.5,46,0.0 +18813,21,10,48,0.0 +18813,20,81,50,0.0 +18813,65,21.05,47,0.0 +18813,34,14,34,0.0 +18813,22,21,29,0.0 +18813,5,21.35,48,0.0 +18813,9,97,27,0.0 +18813,26,31.23,1,0.0 +18813,52,7,15,0.0 +18813,44,19.45,45,0.0 +18813,38,263.5,5,0.0 +18813,25,14,6,0.0 +18813,59,55,46,0.0 +18813,63,43.9,2,0.0 +18813,50,16.25,34,0.0 +18813,45,9.5,14,0.0 +18813,35,18,23,0.0 +18813,37,26,43,0.0 +18813,66,17,45,0.0 +18813,6,25,35,0.0 +18813,60,34,44,0.0 +18813,18,62.5,14,0.0 +18813,67,14,44,0.0 +18813,41,9.65,5,0.0 +18813,69,36,50,0.0 +18813,68,12.5,34,0.0 +18814,73,15,28,0.0 +18814,13,6,9,0.0 +18814,46,12,49,0.0 +18814,67,14,26,0.0 +18814,32,32,41,0.0 +18814,26,31.23,12,0.0 +18814,39,18,17,0.0 +18814,15,15.5,3,0.0 +18814,51,53,19,0.0 +18814,40,18.4,34,0.0 +18814,60,34,4,0.0 +18814,55,24,49,0.0 +18814,10,31,25,0.0 +18814,20,81,14,0.0 +18814,65,21.05,43,0.0 +18814,1,18,16,0.0 +18814,53,32.8,17,0.0 +18814,23,9,3,0.0 +18814,70,15,34,0.0 +18814,71,21.5,23,0.0 +18814,4,22,11,0.0 +18814,6,25,8,0.0 +18814,48,12.75,31,0.0 +18814,28,45.6,6,0.0 +18814,56,38,45,0.0 +18814,50,16.25,36,0.0 +18814,49,20,28,0.0 +18814,16,17.45,21,0.0 +18814,34,14,18,0.0 +18814,44,19.45,37,0.0 +18814,63,43.9,6,0.0 +18814,36,19,39,0.0 +18814,64,33.25,26,0.0 +18814,69,36,38,0.0 +18814,52,7,50,0.0 +18814,18,62.5,5,0.0 +18814,66,17,39,0.0 +18814,47,9.5,6,0.0 +18814,17,39,34,0.0 +18814,77,13,16,0.0 +18814,33,2.5,43,0.0 +18814,43,46,26,0.0 +18814,61,28.5,18,0.0 +18814,58,13.25,43,0.0 +18814,62,49.3,5,0.0 +18814,5,21.35,41,0.0 +18814,24,4.5,3,0.0 +18814,25,14,31,0.0 +18814,14,23.25,21,0.0 +18814,12,38,49,0.0 +18814,9,97,1,0.0 +18814,59,55,24,0.0 +18814,29,123.79,35,0.0 +18814,27,43.9,25,0.0 +18814,11,21,46,0.0 +18815,6,25,45,0.0 +18815,29,123.79,26,0.0 +18815,70,15,23,0.0 +18815,44,19.45,27,0.0 +18815,71,21.5,15,0.0 +18815,31,12.5,1,0.0 +18815,43,46,39,0.0 +18815,3,10,35,0.0 +18815,25,14,2,0.0 +18815,58,13.25,20,0.0 +18815,69,36,12,0.0 +18815,64,33.25,8,0.0 +18815,7,30,8,0.0 +18815,41,9.65,24,0.0 +18815,15,15.5,14,0.0 +18815,42,14,31,0.0 +18815,30,25.89,48,0.0 +18815,35,18,22,0.0 +18815,63,43.9,5,0.0 +18815,62,49.3,48,0.0 +18815,46,12,26,0.0 +18815,60,34,19,0.0 +18815,40,18.4,37,0.0 +18815,20,81,32,0.0 +18815,8,40,8,0.0 +18815,66,17,38,0.0 +18816,64,33.25,41,0.0 +18816,45,9.5,31,0.0 +18816,14,23.25,42,0.0 +18816,77,13,21,0.0 +18816,8,40,28,0.0 +18816,58,13.25,3,0.0 +18816,18,62.5,35,0.0 +18816,42,14,42,0.0 +18816,66,17,50,0.0 +18816,56,38,35,0.0 +18816,57,19.5,6,0.0 +18816,22,21,32,0.0 +18816,54,7.45,33,0.0 +18816,73,15,24,0.0 +18816,6,25,24,0.0 +18816,10,31,1,0.0 +18816,63,43.9,2,0.0 +18816,33,2.5,7,0.0 +18816,50,16.25,29,0.0 +18816,60,34,24,0.0 +18816,38,263.5,23,0.0 +18816,37,26,13,0.0 +18816,23,9,49,0.0 +18816,30,25.89,31,0.0 +18816,55,24,9,0.0 +18816,25,14,46,0.0 +18816,26,31.23,18,0.0 +18816,15,15.5,14,0.0 +18816,28,45.6,50,0.0 +18816,41,9.65,41,0.0 +18816,2,19,14,0.0 +18816,32,32,39,0.0 +18816,9,97,40,0.0 +18816,35,18,18,0.0 +18817,54,7.45,15,0.0 +18817,39,18,22,0.0 +18817,50,16.25,25,0.0 +18817,13,6,25,0.0 +18818,4,22,11,0.0 +18818,32,32,8,0.0 +18818,39,18,19,0.0 +18818,21,10,37,0.0 +18818,69,36,40,0.0 +18818,31,12.5,23,0.0 +18818,9,97,29,0.0 +18818,40,18.4,24,0.0 +18818,13,6,20,0.0 +18818,53,32.8,12,0.0 +18818,65,21.05,35,0.0 +18818,68,12.5,20,0.0 +18818,58,13.25,37,0.0 +18818,59,55,23,0.0 +18818,12,38,20,0.0 +18819,56,38,43,0.0 +18819,14,23.25,6,0.0 +18819,3,10,29,0.0 +18819,23,9,38,0.0 +18819,6,25,7,0.0 +18819,65,21.05,49,0.0 +18819,13,6,43,0.0 +18819,54,7.45,12,0.0 +18819,17,39,32,0.0 +18819,33,2.5,32,0.0 +18819,2,19,43,0.0 +18819,70,15,28,0.0 +18819,35,18,13,0.0 +18819,72,34.8,23,0.0 +18819,62,49.3,47,0.0 +18819,37,26,43,0.0 +18819,69,36,26,0.0 +18819,48,12.75,35,0.0 +18819,25,14,1,0.0 +18819,29,123.79,29,0.0 +18819,58,13.25,50,0.0 +18819,36,19,37,0.0 +18819,53,32.8,43,0.0 +18819,43,46,41,0.0 +18819,32,32,36,0.0 +18819,5,21.35,22,0.0 +18819,31,12.5,43,0.0 +18819,38,263.5,16,0.0 +18819,8,40,28,0.0 +18819,55,24,17,0.0 +18819,64,33.25,14,0.0 +18819,7,30,17,0.0 +18819,34,14,7,0.0 +18819,41,9.65,12,0.0 +18819,1,18,25,0.0 +18819,46,12,50,0.0 +18819,67,14,39,0.0 +18819,24,4.5,46,0.0 +18819,15,15.5,42,0.0 +18819,50,16.25,17,0.0 +18819,45,9.5,33,0.0 +18819,73,15,40,0.0 +18819,71,21.5,5,0.0 +18819,26,31.23,35,0.0 +18819,10,31,41,0.0 +18819,63,43.9,25,0.0 +18819,77,13,31,0.0 +18819,61,28.5,8,0.0 +18819,11,21,34,0.0 +18819,51,53,41,0.0 +18819,49,20,27,0.0 +18819,40,18.4,23,0.0 +18819,52,7,9,0.0 +18819,59,55,29,0.0 +18819,60,34,24,0.0 +18819,76,18,23,0.0 +18819,22,21,5,0.0 +18819,12,38,15,0.0 +18819,66,17,1,0.0 +18819,20,81,50,0.0 +18819,9,97,46,0.0 +18819,74,10,19,0.0 +18819,19,9.2,35,0.0 +18819,28,45.6,27,0.0 +18819,16,17.45,28,0.0 +18819,68,12.5,7,0.0 +18819,42,14,41,0.0 +18819,4,22,30,0.0 +18819,21,10,8,0.0 +18819,44,19.45,17,0.0 +18819,57,19.5,40,0.0 +18819,18,62.5,15,0.0 +18819,47,9.5,8,0.0 +18819,27,43.9,32,0.0 +18819,39,18,28,0.0 +18819,30,25.89,48,0.0 +18820,5,21.35,10,0.0 +18820,22,21,40,0.0 +18820,25,14,44,0.0 +18820,36,19,3,0.0 +18820,24,4.5,47,0.0 +18820,74,10,44,0.0 +18820,47,9.5,4,0.0 +18820,76,18,34,0.0 +18820,46,12,20,0.0 +18820,68,12.5,44,0.0 +18820,6,25,5,0.0 +18820,13,6,22,0.0 +18820,41,9.65,11,0.0 +18820,43,46,14,0.0 +18820,38,263.5,45,0.0 +18820,54,7.45,9,0.0 +18820,12,38,47,0.0 +18820,18,62.5,30,0.0 +18820,45,9.5,8,0.0 +18820,59,55,48,0.0 +18820,33,2.5,48,0.0 +18820,23,9,42,0.0 +18820,8,40,34,0.0 +18820,31,12.5,27,0.0 +18820,17,39,46,0.0 +18820,2,19,37,0.0 +18820,34,14,42,0.0 +18820,15,15.5,8,0.0 +18820,61,28.5,8,0.0 +18820,65,21.05,6,0.0 +18820,42,14,14,0.0 +18820,69,36,27,0.0 +18820,11,21,11,0.0 +18820,20,81,38,0.0 +18820,14,23.25,31,0.0 +18820,72,34.8,38,0.0 +18820,1,18,11,0.0 +18820,63,43.9,5,0.0 +18820,28,45.6,10,0.0 +18820,32,32,46,0.0 +18820,58,13.25,22,0.0 +18820,7,30,7,0.0 +18820,30,25.89,10,0.0 +18821,49,20,12,0.0 +18821,24,4.5,16,0.0 +18821,17,39,47,0.0 +18821,65,21.05,7,0.0 +18821,2,19,26,0.0 +18821,75,7.75,2,0.0 +18821,33,2.5,14,0.0 +18821,53,32.8,11,0.0 +18821,42,14,8,0.0 +18821,34,14,8,0.0 +18821,62,49.3,33,0.0 +18821,23,9,28,0.0 +18821,40,18.4,44,0.0 +18821,18,62.5,1,0.0 +18821,72,34.8,47,0.0 +18821,1,18,38,0.0 +18821,19,9.2,38,0.0 +18821,28,45.6,6,0.0 +18821,43,46,36,0.0 +18821,26,31.23,3,0.0 +18821,27,43.9,48,0.0 +18821,21,10,6,0.0 +18821,11,21,33,0.0 +18821,64,33.25,27,0.0 +18821,48,12.75,38,0.0 +18821,25,14,31,0.0 +18821,50,16.25,9,0.0 +18821,20,81,20,0.0 +18821,4,22,4,0.0 +18821,47,9.5,5,0.0 +18821,14,23.25,39,0.0 +18821,54,7.45,49,0.0 +18821,70,15,37,0.0 +18821,44,19.45,27,0.0 +18821,15,15.5,17,0.0 +18821,68,12.5,9,0.0 +18821,35,18,29,0.0 +18821,9,97,41,0.0 +18821,22,21,42,0.0 +18821,76,18,41,0.0 +18821,30,25.89,14,0.0 +18821,58,13.25,7,0.0 +18821,3,10,30,0.0 +18821,31,12.5,43,0.0 +18821,69,36,38,0.0 +18821,63,43.9,7,0.0 +18821,45,9.5,19,0.0 +18821,32,32,16,0.0 +18821,61,28.5,35,0.0 +18821,51,53,13,0.0 +18821,60,34,34,0.0 +18821,57,19.5,36,0.0 +18821,55,24,41,0.0 +18821,37,26,12,0.0 +18821,10,31,21,0.0 +18821,8,40,23,0.0 +18821,13,6,21,0.0 +18822,76,18,7,0.0 +18822,53,32.8,18,0.0 +18822,6,25,31,0.0 +18822,64,33.25,20,0.0 +18822,51,53,48,0.0 +18822,5,21.35,46,0.0 +18822,26,31.23,5,0.0 +18822,56,38,15,0.0 +18822,70,15,3,0.0 +18822,27,43.9,13,0.0 +18822,19,9.2,14,0.0 +18822,16,17.45,14,0.0 +18822,47,9.5,44,0.0 +18822,13,6,36,0.0 +18822,71,21.5,38,0.0 +18822,72,34.8,2,0.0 +18822,54,7.45,11,0.0 +18822,57,19.5,36,0.0 +18822,60,34,31,0.0 +18822,4,22,9,0.0 +18822,31,12.5,23,0.0 +18822,25,14,35,0.0 +18823,68,12.5,28,0.0 +18823,20,81,37,0.0 +18823,37,26,45,0.0 +18823,59,55,27,0.0 +18823,66,17,2,0.0 +18823,7,30,24,0.0 +18823,63,43.9,15,0.0 +18823,22,21,31,0.0 +18823,40,18.4,24,0.0 +18823,9,97,32,0.0 +18823,72,34.8,13,0.0 +18823,41,9.65,35,0.0 +18823,4,22,39,0.0 +18823,25,14,19,0.0 +18823,2,19,35,0.0 +18823,12,38,42,0.0 +18823,73,15,22,0.0 +18823,29,123.79,9,0.0 +18823,61,28.5,16,0.0 +18823,32,32,2,0.0 +18823,49,20,1,0.0 +18823,8,40,31,0.0 +18823,74,10,30,0.0 +18823,48,12.75,37,0.0 +18823,46,12,9,0.0 +18823,18,62.5,48,0.0 +18823,70,15,31,0.0 +18823,45,9.5,38,0.0 +18823,47,9.5,6,0.0 +18823,16,17.45,10,0.0 +18823,23,9,14,0.0 +18823,54,7.45,11,0.0 +18823,64,33.25,35,0.0 +18823,15,15.5,44,0.0 +18823,38,263.5,12,0.0 +18823,14,23.25,30,0.0 +18823,77,13,24,0.0 +18823,31,12.5,23,0.0 +18823,52,7,15,0.0 +18823,42,14,22,0.0 +18823,76,18,17,0.0 +18823,13,6,34,0.0 +18823,30,25.89,23,0.0 +18823,34,14,5,0.0 +18823,19,9.2,33,0.0 +18823,10,31,19,0.0 +18823,62,49.3,10,0.0 +18823,57,19.5,8,0.0 +18823,53,32.8,44,0.0 +18823,5,21.35,38,0.0 +18823,36,19,10,0.0 +18823,69,36,20,0.0 +18823,39,18,45,0.0 +18823,75,7.75,7,0.0 +18823,26,31.23,27,0.0 +18823,28,45.6,14,0.0 +18823,60,34,41,0.0 +18823,24,4.5,14,0.0 +18823,44,19.45,48,0.0 +18823,50,16.25,40,0.0 +18823,55,24,35,0.0 +18824,34,14,35,0.0 +18824,33,2.5,48,0.0 +18824,40,18.4,37,0.0 +18824,68,12.5,13,0.0 +18824,53,32.8,48,0.0 +18824,18,62.5,20,0.0 +18824,62,49.3,2,0.0 +18824,50,16.25,41,0.0 +18824,43,46,3,0.0 +18824,36,19,1,0.0 +18824,8,40,37,0.0 +18824,59,55,45,0.0 +18824,37,26,16,0.0 +18824,4,22,35,0.0 +18824,1,18,43,0.0 +18824,7,30,26,0.0 +18824,28,45.6,33,0.0 +18824,13,6,22,0.0 +18824,11,21,33,0.0 +18824,73,15,50,0.0 +18824,38,263.5,13,0.0 +18824,65,21.05,24,0.0 +18824,22,21,32,0.0 +18824,58,13.25,7,0.0 +18824,17,39,8,0.0 +18824,56,38,12,0.0 +18824,55,24,37,0.0 +18824,6,25,35,0.0 +18824,51,53,22,0.0 +18824,71,21.5,22,0.0 +18824,54,7.45,35,0.0 +18824,12,38,1,0.0 +18824,57,19.5,28,0.0 +18824,2,19,26,0.0 +18824,41,9.65,18,0.0 +18824,67,14,28,0.0 +18824,64,33.25,34,0.0 +18824,27,43.9,18,0.0 +18824,3,10,18,0.0 +18824,29,123.79,28,0.0 +18824,39,18,13,0.0 +18824,19,9.2,25,0.0 +18824,5,21.35,47,0.0 +18824,16,17.45,10,0.0 +18824,69,36,47,0.0 +18824,75,7.75,40,0.0 +18824,15,15.5,39,0.0 +18824,10,31,31,0.0 +18824,76,18,32,0.0 +18824,24,4.5,20,0.0 +18824,31,12.5,35,0.0 +18824,45,9.5,32,0.0 +18824,52,7,30,0.0 +18824,9,97,44,0.0 +18824,32,32,20,0.0 +18824,46,12,13,0.0 +18824,70,15,15,0.0 +18824,77,13,33,0.0 +18824,26,31.23,41,0.0 +18824,25,14,16,0.0 +18824,72,34.8,28,0.0 +18824,23,9,24,0.0 +18824,35,18,43,0.0 +18824,20,81,31,0.0 +18824,30,25.89,41,0.0 +18824,42,14,46,0.0 +18824,14,23.25,8,0.0 +18824,74,10,3,0.0 +18824,47,9.5,25,0.0 +18824,44,19.45,6,0.0 +18824,60,34,27,0.0 +18824,48,12.75,46,0.0 +18824,63,43.9,46,0.0 +18824,21,10,48,0.0 +18824,66,17,17,0.0 +18824,61,28.5,14,0.0 +18824,49,20,38,0.0 +18825,71,21.5,2,0.0 +18825,26,31.23,14,0.0 +18825,60,34,21,0.0 +18825,40,18.4,29,0.0 +18825,67,14,41,0.0 +18825,21,10,37,0.0 +18825,45,9.5,10,0.0 +18825,1,18,29,0.0 +18825,76,18,28,0.0 +18825,23,9,45,0.0 +18825,35,18,7,0.0 +18825,68,12.5,9,0.0 +18825,52,7,4,0.0 +18825,64,33.25,19,0.0 +18825,55,24,24,0.0 +18825,42,14,13,0.0 +18825,75,7.75,1,0.0 +18825,58,13.25,5,0.0 +18825,30,25.89,42,0.0 +18825,32,32,22,0.0 +18825,34,14,42,0.0 +18825,11,21,9,0.0 +18825,3,10,49,0.0 +18825,5,21.35,5,0.0 +18825,47,9.5,8,0.0 +18825,73,15,20,0.0 +18825,41,9.65,28,0.0 +18825,50,16.25,38,0.0 +18825,69,36,47,0.0 +18825,36,19,9,0.0 +18825,7,30,11,0.0 +18825,9,97,28,0.0 +18825,56,38,48,0.0 +18825,10,31,25,0.0 +18825,38,263.5,11,0.0 +18825,70,15,24,0.0 +18825,22,21,16,0.0 +18825,44,19.45,42,0.0 +18825,2,19,3,0.0 +18825,16,17.45,6,0.0 +18825,29,123.79,20,0.0 +18825,49,20,45,0.0 +18825,63,43.9,26,0.0 +18825,74,10,35,0.0 +18825,17,39,22,0.0 +18825,43,46,5,0.0 +18825,62,49.3,19,0.0 +18825,72,34.8,30,0.0 +18826,65,21.05,16,0.0 +18826,35,18,4,0.0 +18826,67,14,26,0.0 +18826,70,15,6,0.0 +18826,62,49.3,8,0.0 +18826,46,12,46,0.0 +18826,64,33.25,39,0.0 +18826,68,12.5,46,0.0 +18826,31,12.5,23,0.0 +18826,66,17,19,0.0 +18826,4,22,42,0.0 +18826,47,9.5,30,0.0 +18826,21,10,8,0.0 +18826,69,36,44,0.0 +18826,53,32.8,48,0.0 +18826,57,19.5,45,0.0 +18826,18,62.5,26,0.0 +18826,8,40,15,0.0 +18826,23,9,30,0.0 +18826,44,19.45,14,0.0 +18826,27,43.9,41,0.0 +18826,73,15,11,0.0 +18826,56,38,39,0.0 +18826,10,31,12,0.0 +18826,74,10,32,0.0 +18826,77,13,4,0.0 +18826,25,14,5,0.0 +18826,72,34.8,33,0.0 +18826,33,2.5,32,0.0 +18826,24,4.5,1,0.0 +18826,40,18.4,7,0.0 +18826,12,38,33,0.0 +18826,48,12.75,36,0.0 +18826,75,7.75,23,0.0 +18826,42,14,25,0.0 +18826,28,45.6,13,0.0 +18826,60,34,23,0.0 +18827,10,31,15,0.0 +18827,73,15,3,0.0 +18827,58,13.25,43,0.0 +18827,21,10,15,0.0 +18827,69,36,40,0.0 +18827,38,263.5,7,0.0 +18827,70,15,17,0.0 +18827,5,21.35,39,0.0 +18827,37,26,50,0.0 +18827,17,39,9,0.0 +18827,27,43.9,44,0.0 +18827,72,34.8,17,0.0 +18827,26,31.23,1,0.0 +18827,68,12.5,22,0.0 +18827,11,21,27,0.0 +18827,77,13,20,0.0 +18827,12,38,2,0.0 +18827,63,43.9,7,0.0 +18827,29,123.79,26,0.0 +18827,66,17,1,0.0 +18827,32,32,36,0.0 +18827,45,9.5,47,0.0 +18827,64,33.25,48,0.0 +18827,50,16.25,2,0.0 +18827,44,19.45,50,0.0 +18827,40,18.4,8,0.0 +18827,57,19.5,6,0.0 +18827,36,19,38,0.0 +18827,34,14,12,0.0 +18827,43,46,48,0.0 +18828,63,43.9,11,0.0 +18828,7,30,35,0.0 +18828,72,34.8,45,0.0 +18828,77,13,43,0.0 +18828,8,40,4,0.0 +18828,14,23.25,43,0.0 +18828,75,7.75,25,0.0 +18828,31,12.5,33,0.0 +18828,56,38,24,0.0 +18828,64,33.25,40,0.0 +18828,16,17.45,3,0.0 +18828,22,21,29,0.0 +18828,20,81,47,0.0 +18828,50,16.25,6,0.0 +18828,23,9,36,0.0 +18828,54,7.45,35,0.0 +18828,5,21.35,45,0.0 +18828,57,19.5,47,0.0 +18828,59,55,15,0.0 +18828,44,19.45,16,0.0 +18828,73,15,21,0.0 +18828,17,39,18,0.0 +18828,53,32.8,32,0.0 +18828,58,13.25,18,0.0 +18828,38,263.5,6,0.0 +18828,6,25,7,0.0 +18828,42,14,12,0.0 +18828,68,12.5,14,0.0 +18828,32,32,3,0.0 +18828,4,22,10,0.0 +18828,13,6,8,0.0 +18828,49,20,40,0.0 +18828,33,2.5,47,0.0 +18828,26,31.23,12,0.0 +18828,71,21.5,9,0.0 +18828,27,43.9,33,0.0 +18828,34,14,4,0.0 +18828,36,19,28,0.0 +18828,40,18.4,38,0.0 +18828,52,7,37,0.0 +18828,48,12.75,19,0.0 +18828,11,21,37,0.0 +18828,35,18,45,0.0 +18828,24,4.5,11,0.0 +18828,29,123.79,28,0.0 +18828,66,17,23,0.0 +18828,10,31,7,0.0 +18828,2,19,50,0.0 +18828,74,10,1,0.0 +18828,65,21.05,50,0.0 +18828,9,97,8,0.0 +18828,70,15,8,0.0 +18828,30,25.89,27,0.0 +18828,43,46,35,0.0 +18829,3,10,13,0.0 +18829,28,45.6,14,0.0 +18829,19,9.2,10,0.0 +18829,76,18,12,0.0 +18829,66,17,23,0.0 +18829,70,15,30,0.0 +18829,69,36,7,0.0 +18829,4,22,3,0.0 +18829,6,25,37,0.0 +18829,24,4.5,33,0.0 +18829,62,49.3,24,0.0 +18829,53,32.8,37,0.0 +18829,52,7,46,0.0 +18829,38,263.5,21,0.0 +18829,27,43.9,46,0.0 +18829,48,12.75,14,0.0 +18829,11,21,49,0.0 +18829,71,21.5,4,0.0 +18829,12,38,28,0.0 +18829,13,6,32,0.0 +18829,22,21,13,0.0 +18829,39,18,19,0.0 +18829,26,31.23,41,0.0 +18829,68,12.5,1,0.0 +18829,25,14,37,0.0 +18829,45,9.5,14,0.0 +18829,33,2.5,41,0.0 +18829,50,16.25,17,0.0 +18829,46,12,45,0.0 +18829,23,9,19,0.0 +18829,57,19.5,8,0.0 +18829,55,24,6,0.0 +18829,77,13,33,0.0 +18829,54,7.45,3,0.0 +18829,7,30,17,0.0 +18829,51,53,46,0.0 +18829,75,7.75,36,0.0 +18829,43,46,22,0.0 +18829,40,18.4,2,0.0 +18829,15,15.5,17,0.0 +18829,14,23.25,16,0.0 +18829,16,17.45,23,0.0 +18829,44,19.45,20,0.0 +18829,5,21.35,17,0.0 +18829,10,31,41,0.0 +18829,18,62.5,44,0.0 +18829,61,28.5,14,0.0 +18829,49,20,24,0.0 +18829,29,123.79,13,0.0 +18829,58,13.25,23,0.0 +18829,47,9.5,42,0.0 +18829,2,19,24,0.0 +18829,30,25.89,4,0.0 +18829,74,10,2,0.0 +18829,41,9.65,43,0.0 +18829,20,81,45,0.0 +18829,73,15,30,0.0 +18829,32,32,4,0.0 +18829,8,40,25,0.0 +18830,1,18,38,0.0 +18830,69,36,13,0.0 +18830,2,19,7,0.0 +18830,22,21,8,0.0 +18830,61,28.5,49,0.0 +18830,74,10,19,0.0 +18830,30,25.89,5,0.0 +18830,67,14,47,0.0 +18831,76,18,25,0.0 +18831,35,18,41,0.0 +18831,68,12.5,46,0.0 +18831,5,21.35,22,0.0 +18831,43,46,41,0.0 +18831,51,53,24,0.0 +18831,70,15,17,0.0 +18831,69,36,31,0.0 +18831,52,7,39,0.0 +18831,54,7.45,50,0.0 +18831,1,18,38,0.0 +18831,44,19.45,30,0.0 +18831,55,24,15,0.0 +18831,65,21.05,2,0.0 +18831,48,12.75,39,0.0 +18831,57,19.5,33,0.0 +18831,3,10,7,0.0 +18831,13,6,40,0.0 +18831,32,32,20,0.0 +18831,21,10,37,0.0 +18831,9,97,28,0.0 +18831,34,14,49,0.0 +18831,30,25.89,16,0.0 +18831,64,33.25,7,0.0 +18831,28,45.6,40,0.0 +18831,2,19,21,0.0 +18831,11,21,32,0.0 +18831,60,34,7,0.0 +18831,45,9.5,2,0.0 +18831,47,9.5,49,0.0 +18831,41,9.65,5,0.0 +18831,62,49.3,19,0.0 +18831,63,43.9,13,0.0 +18831,49,20,17,0.0 +18831,24,4.5,38,0.0 +18831,16,17.45,6,0.0 +18831,46,12,9,0.0 +18831,61,28.5,48,0.0 +18831,12,38,17,0.0 +18831,27,43.9,6,0.0 +18831,40,18.4,10,0.0 +18832,46,12,42,0.0 +18832,67,14,35,0.0 +18832,42,14,14,0.0 +18832,52,7,23,0.0 +18832,55,24,17,0.0 +18832,23,9,40,0.0 +18832,20,81,5,0.0 +18832,32,32,21,0.0 +18832,40,18.4,23,0.0 +18832,3,10,42,0.0 +18832,21,10,17,0.0 +18832,56,38,38,0.0 +18832,57,19.5,30,0.0 +18832,62,49.3,6,0.0 +18832,27,43.9,44,0.0 +18832,75,7.75,32,0.0 +18832,15,15.5,27,0.0 +18832,8,40,14,0.0 +18832,68,12.5,39,0.0 +18832,34,14,35,0.0 +18832,10,31,43,0.0 +18832,17,39,33,0.0 +18832,7,30,25,0.0 +18832,16,17.45,43,0.0 +18832,59,55,33,0.0 +18832,73,15,14,0.0 +18832,38,263.5,49,0.0 +18832,60,34,16,0.0 +18832,9,97,11,0.0 +18832,35,18,20,0.0 +18832,22,21,1,0.0 +18832,25,14,27,0.0 +18832,63,43.9,38,0.0 +18832,66,17,44,0.0 +18832,5,21.35,18,0.0 +18832,37,26,10,0.0 +18832,29,123.79,30,0.0 +18832,1,18,7,0.0 +18833,73,15,50,0.0 +18833,67,14,41,0.0 +18833,28,45.6,39,0.0 +18833,35,18,11,0.0 +18833,24,4.5,29,0.0 +18833,6,25,28,0.0 +18833,72,34.8,26,0.0 +18833,19,9.2,15,0.0 +18833,10,31,23,0.0 +18833,37,26,38,0.0 +18833,12,38,11,0.0 +18833,49,20,19,0.0 +18833,47,9.5,39,0.0 +18833,32,32,35,0.0 +18833,15,15.5,22,0.0 +18833,14,23.25,32,0.0 +18833,56,38,47,0.0 +18833,36,19,45,0.0 +18833,4,22,43,0.0 +18833,64,33.25,5,0.0 +18833,25,14,32,0.0 +18833,27,43.9,35,0.0 +18833,38,263.5,15,0.0 +18833,60,34,36,0.0 +18833,74,10,21,0.0 +18833,41,9.65,23,0.0 +18833,16,17.45,41,0.0 +18833,30,25.89,31,0.0 +18833,45,9.5,18,0.0 +18833,65,21.05,27,0.0 +18833,5,21.35,49,0.0 +18833,26,31.23,4,0.0 +18833,23,9,21,0.0 +18833,59,55,29,0.0 +18833,42,14,14,0.0 +18833,58,13.25,37,0.0 +18833,63,43.9,41,0.0 +18833,31,12.5,24,0.0 +18833,2,19,46,0.0 +18833,76,18,15,0.0 +18833,71,21.5,23,0.0 +18833,29,123.79,21,0.0 +18833,52,7,46,0.0 +18833,40,18.4,45,0.0 +18833,69,36,16,0.0 +18833,44,19.45,3,0.0 +18833,11,21,39,0.0 +18833,33,2.5,1,0.0 +18833,20,81,31,0.0 +18833,70,15,35,0.0 +18833,57,19.5,31,0.0 +18833,18,62.5,38,0.0 +18833,75,7.75,46,0.0 +18833,17,39,15,0.0 +18833,50,16.25,42,0.0 +18833,48,12.75,22,0.0 +18833,9,97,29,0.0 +18834,75,7.75,7,0.0 +18834,30,25.89,27,0.0 +18834,15,15.5,15,0.0 +18834,9,97,39,0.0 +18834,13,6,36,0.0 +18834,69,36,30,0.0 +18834,55,24,42,0.0 +18834,27,43.9,20,0.0 +18834,60,34,49,0.0 +18834,17,39,37,0.0 +18834,31,12.5,27,0.0 +18834,5,21.35,27,0.0 +18834,77,13,44,0.0 +18834,18,62.5,34,0.0 +18834,51,53,40,0.0 +18834,38,263.5,28,0.0 +18834,62,49.3,35,0.0 +18834,48,12.75,19,0.0 +18834,19,9.2,26,0.0 +18834,50,16.25,47,0.0 +18834,3,10,10,0.0 +18834,58,13.25,35,0.0 +18834,46,12,9,0.0 +18834,64,33.25,50,0.0 +18834,21,10,45,0.0 +18834,25,14,43,0.0 +18834,11,21,20,0.0 +18834,57,19.5,17,0.0 +18834,26,31.23,23,0.0 +18834,61,28.5,33,0.0 +18834,22,21,18,0.0 +18834,20,81,38,0.0 +18834,65,21.05,32,0.0 +18834,68,12.5,37,0.0 +18834,45,9.5,37,0.0 +18834,37,26,4,0.0 +18834,73,15,19,0.0 +18834,33,2.5,1,0.0 +18834,72,34.8,18,0.0 +18834,14,23.25,50,0.0 +18834,76,18,5,0.0 +18834,40,18.4,47,0.0 +18834,39,18,24,0.0 +18834,10,31,19,0.0 +18834,32,32,11,0.0 +18834,59,55,20,0.0 +18834,49,20,29,0.0 +18834,41,9.65,3,0.0 +18835,61,28.5,24,0.0 +18835,76,18,10,0.0 +18835,11,21,40,0.0 +18835,17,39,19,0.0 +18835,60,34,29,0.0 +18835,63,43.9,17,0.0 +18835,35,18,20,0.0 +18835,56,38,9,0.0 +18835,45,9.5,12,0.0 +18835,43,46,39,0.0 +18835,30,25.89,15,0.0 +18835,24,4.5,38,0.0 +18835,75,7.75,8,0.0 +18835,47,9.5,23,0.0 +18835,7,30,50,0.0 +18835,67,14,41,0.0 +18835,31,12.5,40,0.0 +18835,58,13.25,3,0.0 +18835,52,7,14,0.0 +18835,32,32,40,0.0 +18835,38,263.5,45,0.0 +18835,20,81,23,0.0 +18835,44,19.45,20,0.0 +18835,19,9.2,32,0.0 +18835,57,19.5,39,0.0 +18835,53,32.8,31,0.0 +18835,34,14,25,0.0 +18835,14,23.25,47,0.0 +18835,10,31,41,0.0 +18835,36,19,15,0.0 +18835,46,12,25,0.0 +18835,12,38,4,0.0 +18835,18,62.5,3,0.0 +18835,74,10,21,0.0 +18835,48,12.75,24,0.0 +18835,72,34.8,38,0.0 +18835,65,21.05,34,0.0 +18836,25,14,28,0.0 +18836,64,33.25,25,0.0 +18836,22,21,40,0.0 +18836,61,28.5,21,0.0 +18836,63,43.9,29,0.0 +18836,48,12.75,31,0.0 +18836,66,17,13,0.0 +18836,26,31.23,43,0.0 +18836,24,4.5,11,0.0 +18836,20,81,43,0.0 +18836,77,13,14,0.0 +18836,15,15.5,13,0.0 +18836,53,32.8,40,0.0 +18836,37,26,38,0.0 +18836,4,22,47,0.0 +18836,3,10,32,0.0 +18836,12,38,18,0.0 +18836,46,12,7,0.0 +18836,42,14,44,0.0 +18836,52,7,11,0.0 +18836,34,14,4,0.0 +18836,47,9.5,32,0.0 +18836,1,18,39,0.0 +18836,17,39,30,0.0 +18836,74,10,25,0.0 +18836,5,21.35,14,0.0 +18836,16,17.45,46,0.0 +18836,28,45.6,45,0.0 +18836,36,19,34,0.0 +18836,31,12.5,17,0.0 +18836,40,18.4,27,0.0 +18836,33,2.5,37,0.0 +18836,58,13.25,19,0.0 +18836,57,19.5,23,0.0 +18836,14,23.25,14,0.0 +18836,44,19.45,43,0.0 +18836,6,25,50,0.0 +18836,2,19,6,0.0 +18836,43,46,26,0.0 +18836,56,38,34,0.0 +18836,73,15,3,0.0 +18836,13,6,12,0.0 +18836,70,15,27,0.0 +18836,51,53,16,0.0 +18836,75,7.75,9,0.0 +18836,39,18,34,0.0 +18836,65,21.05,25,0.0 +18836,38,263.5,24,0.0 +18836,18,62.5,18,0.0 +18837,61,28.5,50,0.0 +18837,48,12.75,12,0.0 +18837,29,123.79,28,0.0 +18837,15,15.5,43,0.0 +18837,53,32.8,50,0.0 +18837,6,25,31,0.0 +18837,42,14,13,0.0 +18837,19,9.2,17,0.0 +18837,22,21,28,0.0 +18837,7,30,25,0.0 +18837,38,263.5,22,0.0 +18837,32,32,23,0.0 +18837,75,7.75,50,0.0 +18837,1,18,3,0.0 +18837,77,13,48,0.0 +18837,46,12,30,0.0 +18837,11,21,8,0.0 +18837,43,46,44,0.0 +18837,12,38,23,0.0 +18837,30,25.89,43,0.0 +18837,36,19,10,0.0 +18837,67,14,5,0.0 +18837,8,40,29,0.0 +18837,18,62.5,25,0.0 +18837,26,31.23,9,0.0 +18837,62,49.3,38,0.0 +18837,68,12.5,49,0.0 +18837,20,81,3,0.0 +18837,64,33.25,17,0.0 +18837,55,24,1,0.0 +18837,51,53,13,0.0 +18837,54,7.45,12,0.0 +18837,34,14,11,0.0 +18837,71,21.5,24,0.0 +18837,73,15,22,0.0 +18837,41,9.65,19,0.0 +18837,24,4.5,12,0.0 +18837,44,19.45,17,0.0 +18837,4,22,24,0.0 +18837,56,38,10,0.0 +18837,2,19,49,0.0 +18837,31,12.5,13,0.0 +18837,28,45.6,6,0.0 +18837,35,18,22,0.0 +18837,65,21.05,45,0.0 +18837,63,43.9,12,0.0 +18837,57,19.5,23,0.0 +18837,58,13.25,11,0.0 +18837,33,2.5,30,0.0 +18837,52,7,17,0.0 +18837,9,97,33,0.0 +18838,26,31.23,22,0.0 +18838,73,15,10,0.0 +18838,10,31,25,0.0 +18838,34,14,31,0.0 +18838,55,24,26,0.0 +18838,40,18.4,22,0.0 +18838,70,15,6,0.0 +18838,35,18,21,0.0 +18838,75,7.75,44,0.0 +18838,12,38,14,0.0 +18838,28,45.6,8,0.0 +18838,1,18,32,0.0 +18838,32,32,7,0.0 +18838,42,14,49,0.0 +18838,30,25.89,47,0.0 +18838,11,21,12,0.0 +18838,51,53,7,0.0 +18838,21,10,16,0.0 +18838,17,39,40,0.0 +18838,57,19.5,48,0.0 +18839,37,26,28,0.0 +18839,2,19,2,0.0 +18839,56,38,24,0.0 +18839,58,13.25,21,0.0 +18839,73,15,35,0.0 +18839,43,46,28,0.0 +18839,59,55,29,0.0 +18839,11,21,13,0.0 +18839,51,53,34,0.0 +18839,30,25.89,18,0.0 +18839,68,12.5,2,0.0 +18839,12,38,35,0.0 +18839,49,20,13,0.0 +18839,65,21.05,16,0.0 +18839,5,21.35,24,0.0 +18839,47,9.5,12,0.0 +18839,31,12.5,17,0.0 +18839,72,34.8,11,0.0 +18839,4,22,28,0.0 +18839,34,14,19,0.0 +18839,50,16.25,18,0.0 +18839,70,15,48,0.0 +18839,17,39,37,0.0 +18839,3,10,6,0.0 +18839,32,32,16,0.0 +18839,62,49.3,36,0.0 +18839,39,18,44,0.0 +18839,38,263.5,50,0.0 +18839,60,34,19,0.0 +18839,61,28.5,50,0.0 +18839,76,18,35,0.0 +18839,44,19.45,1,0.0 +18839,15,15.5,30,0.0 +18839,42,14,36,0.0 +18839,63,43.9,25,0.0 +18839,14,23.25,20,0.0 +18839,35,18,13,0.0 +18839,40,18.4,26,0.0 +18839,41,9.65,21,0.0 +18839,29,123.79,21,0.0 +18839,53,32.8,18,0.0 +18839,27,43.9,2,0.0 +18839,55,24,37,0.0 +18839,77,13,28,0.0 +18839,26,31.23,50,0.0 +18839,64,33.25,39,0.0 +18839,9,97,20,0.0 +18839,19,9.2,22,0.0 +18839,57,19.5,2,0.0 +18839,10,31,28,0.0 +18839,24,4.5,22,0.0 +18839,20,81,1,0.0 +18839,25,14,1,0.0 +18839,54,7.45,22,0.0 +18839,36,19,5,0.0 +18839,16,17.45,13,0.0 +18839,46,12,40,0.0 +18839,8,40,7,0.0 +18839,6,25,18,0.0 +18839,1,18,21,0.0 +18839,28,45.6,19,0.0 +18839,74,10,41,0.0 +18839,71,21.5,35,0.0 +18839,7,30,33,0.0 +18839,33,2.5,37,0.0 +18839,66,17,45,0.0 +18839,75,7.75,38,0.0 +18839,48,12.75,23,0.0 +18839,18,62.5,11,0.0 +18840,41,9.65,40,0.0 +18840,5,21.35,15,0.0 +18840,51,53,3,0.0 +18840,35,18,34,0.0 +18840,68,12.5,1,0.0 +18840,23,9,40,0.0 +18840,55,24,31,0.0 +18840,2,19,48,0.0 +18840,26,31.23,13,0.0 +18840,30,25.89,27,0.0 +18840,61,28.5,12,0.0 +18840,8,40,24,0.0 +18840,73,15,3,0.0 +18840,7,30,29,0.0 +18840,70,15,28,0.0 +18840,17,39,13,0.0 +18840,71,21.5,22,0.0 +18840,62,49.3,43,0.0 +18840,67,14,21,0.0 +18840,65,21.05,7,0.0 +18840,58,13.25,45,0.0 +18841,43,46,30,0.0 +18841,57,19.5,18,0.0 +18841,33,2.5,41,0.0 +18841,29,123.79,8,0.0 +18841,21,10,21,0.0 +18841,2,19,32,0.0 +18841,9,97,4,0.0 +18841,70,15,32,0.0 +18841,63,43.9,19,0.0 +18841,8,40,33,0.0 +18841,12,38,20,0.0 +18841,66,17,3,0.0 +18841,65,21.05,18,0.0 +18841,37,26,20,0.0 +18841,68,12.5,43,0.0 +18841,30,25.89,48,0.0 +18841,36,19,29,0.0 +18841,75,7.75,44,0.0 +18841,59,55,43,0.0 +18841,22,21,49,0.0 +18841,31,12.5,25,0.0 +18841,19,9.2,43,0.0 +18841,61,28.5,34,0.0 +18841,11,21,5,0.0 +18841,16,17.45,41,0.0 +18841,60,34,32,0.0 +18841,27,43.9,34,0.0 +18841,20,81,26,0.0 +18841,13,6,4,0.0 +18841,17,39,32,0.0 +18841,35,18,10,0.0 +18841,32,32,24,0.0 +18841,34,14,29,0.0 +18841,42,14,42,0.0 +18842,36,19,45,0.0 +18842,75,7.75,32,0.0 +18842,35,18,13,0.0 +18842,8,40,43,0.0 +18842,48,12.75,28,0.0 +18842,29,123.79,22,0.0 +18842,11,21,9,0.0 +18842,4,22,18,0.0 +18842,22,21,5,0.0 +18842,57,19.5,9,0.0 +18842,26,31.23,7,0.0 +18842,52,7,35,0.0 +18842,74,10,7,0.0 +18842,76,18,39,0.0 +18842,18,62.5,23,0.0 +18842,41,9.65,31,0.0 +18842,33,2.5,44,0.0 +18842,77,13,28,0.0 +18842,60,34,30,0.0 +18842,66,17,47,0.0 +18842,65,21.05,15,0.0 +18842,64,33.25,17,0.0 +18842,47,9.5,41,0.0 +18842,59,55,22,0.0 +18842,15,15.5,25,0.0 +18842,54,7.45,21,0.0 +18842,9,97,36,0.0 +18842,14,23.25,31,0.0 +18842,61,28.5,22,0.0 +18842,69,36,39,0.0 +18842,63,43.9,43,0.0 +18842,27,43.9,10,0.0 +18842,45,9.5,46,0.0 +18842,53,32.8,38,0.0 +18842,71,21.5,24,0.0 +18842,55,24,17,0.0 +18842,16,17.45,38,0.0 +18842,62,49.3,33,0.0 +18842,5,21.35,49,0.0 +18842,1,18,12,0.0 +18842,73,15,6,0.0 +18842,24,4.5,17,0.0 +18842,40,18.4,15,0.0 +18842,70,15,23,0.0 +18842,12,38,22,0.0 +18842,2,19,11,0.0 +18842,58,13.25,10,0.0 +18842,7,30,37,0.0 +18842,21,10,42,0.0 +18842,43,46,35,0.0 +18842,34,14,18,0.0 +18842,39,18,41,0.0 +18842,3,10,3,0.0 +18842,37,26,9,0.0 +18842,68,12.5,25,0.0 +18842,46,12,4,0.0 +18843,52,7,32,0.0 +18843,27,43.9,49,0.0 +18843,7,30,9,0.0 +18843,65,21.05,33,0.0 +18843,54,7.45,9,0.0 +18843,60,34,23,0.0 +18843,15,15.5,9,0.0 +18843,45,9.5,6,0.0 +18843,22,21,39,0.0 +18843,43,46,45,0.0 +18843,53,32.8,8,0.0 +18843,67,14,40,0.0 +18843,48,12.75,18,0.0 +18843,76,18,11,0.0 +18843,49,20,3,0.0 +18843,42,14,4,0.0 +18843,71,21.5,15,0.0 +18843,18,62.5,31,0.0 +18843,40,18.4,15,0.0 +18843,46,12,1,0.0 +18843,51,53,16,0.0 +18843,34,14,42,0.0 +18843,4,22,50,0.0 +18843,30,25.89,46,0.0 +18843,21,10,33,0.0 +18843,28,45.6,19,0.0 +18843,2,19,40,0.0 +18843,20,81,1,0.0 +18843,58,13.25,34,0.0 +18843,29,123.79,17,0.0 +18843,10,31,22,0.0 +18843,32,32,7,0.0 +18843,9,97,9,0.0 +18843,26,31.23,48,0.0 +18843,13,6,15,0.0 +18843,5,21.35,18,0.0 +18843,31,12.5,12,0.0 +18843,68,12.5,39,0.0 +18843,16,17.45,45,0.0 +18843,55,24,44,0.0 +18843,38,263.5,26,0.0 +18843,63,43.9,43,0.0 +18843,1,18,7,0.0 +18843,56,38,43,0.0 +18843,59,55,22,0.0 +18843,3,10,29,0.0 +18843,39,18,26,0.0 +18843,61,28.5,39,0.0 +18843,35,18,43,0.0 +18843,36,19,30,0.0 +18843,12,38,14,0.0 +18843,50,16.25,43,0.0 +18843,37,26,27,0.0 +18843,72,34.8,14,0.0 +18843,57,19.5,7,0.0 +18843,70,15,10,0.0 +18843,66,17,21,0.0 +18843,14,23.25,24,0.0 +18843,17,39,42,0.0 +18843,69,36,40,0.0 +18843,77,13,36,0.0 +18844,59,55,25,0.0 +18844,4,22,37,0.0 +18844,63,43.9,17,0.0 +18844,3,10,14,0.0 +18844,75,7.75,33,0.0 +18844,16,17.45,14,0.0 +18844,56,38,14,0.0 +18844,38,263.5,32,0.0 +18844,54,7.45,28,0.0 +18844,60,34,13,0.0 +18844,36,19,35,0.0 +18844,24,4.5,19,0.0 +18844,47,9.5,21,0.0 +18844,57,19.5,8,0.0 +18844,10,31,32,0.0 +18844,11,21,6,0.0 +18844,19,9.2,12,0.0 +18844,49,20,47,0.0 +18844,71,21.5,50,0.0 +18844,17,39,14,0.0 +18844,48,12.75,1,0.0 +18844,31,12.5,34,0.0 +18844,70,15,27,0.0 +18844,41,9.65,16,0.0 +18844,23,9,17,0.0 +18844,32,32,23,0.0 +18844,46,12,19,0.0 +18844,58,13.25,22,0.0 +18844,42,14,20,0.0 +18844,29,123.79,43,0.0 +18844,68,12.5,23,0.0 +18844,40,18.4,30,0.0 +18844,76,18,26,0.0 +18844,52,7,7,0.0 +18844,6,25,29,0.0 +18844,22,21,30,0.0 +18844,25,14,1,0.0 +18844,74,10,18,0.0 +18844,55,24,16,0.0 +18844,50,16.25,45,0.0 +18844,33,2.5,35,0.0 +18844,15,15.5,4,0.0 +18844,30,25.89,22,0.0 +18844,53,32.8,26,0.0 +18844,65,21.05,34,0.0 +18844,62,49.3,15,0.0 +18844,9,97,14,0.0 +18844,67,14,14,0.0 +18844,12,38,40,0.0 +18844,13,6,50,0.0 +18844,66,17,14,0.0 +18844,51,53,12,0.0 +18844,43,46,24,0.0 +18844,44,19.45,50,0.0 +18844,20,81,13,0.0 +18844,7,30,5,0.0 +18844,21,10,45,0.0 +18844,1,18,42,0.0 +18844,69,36,12,0.0 +18844,18,62.5,18,0.0 +18844,72,34.8,36,0.0 +18844,35,18,36,0.0 +18844,64,33.25,40,0.0 +18844,34,14,47,0.0 +18844,26,31.23,27,0.0 +18844,77,13,39,0.0 +18844,5,21.35,14,0.0 +18845,25,14,46,0.0 +18845,52,7,39,0.0 +18845,53,32.8,46,0.0 +18845,7,30,25,0.0 +18845,70,15,42,0.0 +18845,31,12.5,41,0.0 +18845,23,9,27,0.0 +18845,35,18,42,0.0 +18845,68,12.5,12,0.0 +18845,13,6,31,0.0 +18846,24,4.5,50,0.0 +18846,38,263.5,34,0.0 +18846,15,15.5,16,0.0 +18846,51,53,13,0.0 +18846,32,32,42,0.0 +18846,5,21.35,14,0.0 +18846,12,38,42,0.0 +18846,75,7.75,6,0.0 +18846,67,14,38,0.0 +18846,31,12.5,25,0.0 +18846,53,32.8,21,0.0 +18846,40,18.4,48,0.0 +18846,22,21,9,0.0 +18846,8,40,26,0.0 +18846,66,17,1,0.0 +18846,54,7.45,1,0.0 +18846,14,23.25,18,0.0 +18846,18,62.5,12,0.0 +18847,71,21.5,18,0.0 +18847,76,18,48,0.0 +18848,4,22,16,0.0 +18848,9,97,20,0.0 +18848,2,19,40,0.0 +18848,42,14,43,0.0 +18848,75,7.75,15,0.0 +18848,10,31,3,0.0 +18848,3,10,5,0.0 +18848,66,17,34,0.0 +18848,17,39,46,0.0 +18848,54,7.45,13,0.0 +18848,58,13.25,46,0.0 +18848,77,13,33,0.0 +18848,51,53,39,0.0 +18848,32,32,43,0.0 +18848,38,263.5,23,0.0 +18848,20,81,42,0.0 +18848,60,34,38,0.0 +18848,16,17.45,12,0.0 +18848,15,15.5,38,0.0 +18848,71,21.5,18,0.0 +18848,46,12,35,0.0 +18848,53,32.8,24,0.0 +18848,76,18,27,0.0 +18848,63,43.9,26,0.0 +18848,11,21,8,0.0 +18848,72,34.8,1,0.0 +18848,56,38,47,0.0 +18848,48,12.75,34,0.0 +18848,65,21.05,23,0.0 +18848,36,19,2,0.0 +18848,29,123.79,35,0.0 +18848,37,26,25,0.0 +18848,5,21.35,46,0.0 +18848,57,19.5,21,0.0 +18848,7,30,28,0.0 +18848,33,2.5,24,0.0 +18848,49,20,22,0.0 +18848,59,55,32,0.0 +18848,31,12.5,43,0.0 +18848,28,45.6,30,0.0 +18848,12,38,41,0.0 +18848,25,14,44,0.0 +18848,50,16.25,44,0.0 +18848,55,24,14,0.0 +18848,14,23.25,26,0.0 +18848,73,15,49,0.0 +18848,62,49.3,11,0.0 +18848,44,19.45,14,0.0 +18848,47,9.5,50,0.0 +18848,45,9.5,42,0.0 +18848,30,25.89,26,0.0 +18848,23,9,36,0.0 +18848,67,14,21,0.0 +18848,6,25,40,0.0 +18848,70,15,48,0.0 +18848,8,40,35,0.0 +18848,18,62.5,11,0.0 +18848,21,10,35,0.0 +18848,52,7,40,0.0 +18848,19,9.2,44,0.0 +18848,35,18,9,0.0 +18848,74,10,23,0.0 +18848,68,12.5,26,0.0 +18848,39,18,36,0.0 +18848,64,33.25,17,0.0 +18848,24,4.5,12,0.0 +18848,61,28.5,42,0.0 +18848,41,9.65,24,0.0 +18848,40,18.4,10,0.0 +18848,69,36,23,0.0 +18848,1,18,1,0.0 +18849,67,14,27,0.0 +18849,53,32.8,37,0.0 +18849,73,15,14,0.0 +18849,21,10,33,0.0 +18849,65,21.05,44,0.0 +18849,22,21,4,0.0 +18849,2,19,13,0.0 +18849,64,33.25,42,0.0 +18849,6,25,1,0.0 +18849,71,21.5,22,0.0 +18849,16,17.45,2,0.0 +18849,38,263.5,2,0.0 +18849,10,31,27,0.0 +18849,35,18,8,0.0 +18849,57,19.5,50,0.0 +18849,49,20,47,0.0 +18849,32,32,33,0.0 +18849,42,14,5,0.0 +18849,63,43.9,35,0.0 +18849,33,2.5,42,0.0 +18849,29,123.79,43,0.0 +18849,12,38,20,0.0 +18849,15,15.5,44,0.0 +18849,51,53,9,0.0 +18849,30,25.89,32,0.0 +18849,46,12,30,0.0 +18849,77,13,43,0.0 +18849,61,28.5,29,0.0 +18849,58,13.25,21,0.0 +18849,74,10,41,0.0 +18849,72,34.8,31,0.0 +18849,40,18.4,35,0.0 +18849,26,31.23,4,0.0 +18849,66,17,42,0.0 +18849,50,16.25,27,0.0 +18849,45,9.5,27,0.0 +18849,48,12.75,21,0.0 +18850,73,15,34,0.0 +18850,65,21.05,47,0.0 +18850,15,15.5,28,0.0 +18850,50,16.25,5,0.0 +18850,55,24,2,0.0 +18850,76,18,50,0.0 +18850,62,49.3,49,0.0 +18850,25,14,47,0.0 +18850,46,12,5,0.0 +18850,31,12.5,22,0.0 +18850,47,9.5,1,0.0 +18850,60,34,30,0.0 +18850,36,19,9,0.0 +18850,61,28.5,45,0.0 +18850,74,10,8,0.0 +18850,77,13,32,0.0 +18850,18,62.5,7,0.0 +18850,75,7.75,44,0.0 +18850,66,17,47,0.0 +18850,33,2.5,25,0.0 +18850,72,34.8,20,0.0 +18850,17,39,14,0.0 +18850,35,18,25,0.0 +18850,71,21.5,38,0.0 +18850,29,123.79,15,0.0 +18850,2,19,37,0.0 +18850,32,32,16,0.0 +18850,44,19.45,1,0.0 +18850,56,38,28,0.0 +18850,11,21,30,0.0 +18850,23,9,34,0.0 +18850,57,19.5,50,0.0 +18850,30,25.89,12,0.0 +18850,68,12.5,31,0.0 +18850,38,263.5,15,0.0 +18850,37,26,23,0.0 +18850,5,21.35,42,0.0 +18850,9,97,3,0.0 +18850,53,32.8,8,0.0 +18850,52,7,10,0.0 +18850,12,38,6,0.0 +18850,67,14,8,0.0 +18850,26,31.23,32,0.0 +18850,39,18,39,0.0 +18850,20,81,17,0.0 +18850,6,25,22,0.0 +18850,43,46,18,0.0 +18850,49,20,44,0.0 +18850,4,22,18,0.0 +18850,48,12.75,35,0.0 +18850,63,43.9,24,0.0 +18850,70,15,33,0.0 +18850,54,7.45,20,0.0 +18850,40,18.4,16,0.0 +18850,1,18,46,0.0 +18850,3,10,37,0.0 +18850,7,30,32,0.0 +18850,69,36,48,0.0 +18850,28,45.6,48,0.0 +18850,14,23.25,1,0.0 +18850,13,6,28,0.0 +18850,59,55,40,0.0 +18850,16,17.45,15,0.0 +18850,22,21,36,0.0 +18850,34,14,8,0.0 +18850,45,9.5,1,0.0 +18851,3,10,9,0.0 +18851,19,9.2,2,0.0 +18851,13,6,38,0.0 +18851,23,9,10,0.0 +18851,8,40,28,0.0 +18851,41,9.65,4,0.0 +18851,7,30,21,0.0 +18851,25,14,36,0.0 +18851,44,19.45,14,0.0 +18851,71,21.5,9,0.0 +18851,62,49.3,21,0.0 +18851,54,7.45,49,0.0 +18851,6,25,30,0.0 +18851,39,18,39,0.0 +18852,73,15,37,0.0 +18852,47,9.5,28,0.0 +18852,43,46,18,0.0 +18852,63,43.9,18,0.0 +18852,35,18,42,0.0 +18852,31,12.5,24,0.0 +18852,13,6,38,0.0 +18852,22,21,36,0.0 +18852,75,7.75,32,0.0 +18852,33,2.5,10,0.0 +18852,15,15.5,9,0.0 +18852,74,10,41,0.0 +18852,50,16.25,14,0.0 +18852,72,34.8,50,0.0 +18852,53,32.8,48,0.0 +18852,4,22,37,0.0 +18852,64,33.25,7,0.0 +18852,14,23.25,42,0.0 +18852,2,19,19,0.0 +18852,5,21.35,25,0.0 +18852,59,55,17,0.0 +18852,48,12.75,16,0.0 +18852,67,14,34,0.0 +18852,39,18,11,0.0 +18852,76,18,37,0.0 +18852,25,14,41,0.0 +18852,6,25,33,0.0 +18852,56,38,4,0.0 +18852,26,31.23,34,0.0 +18852,60,34,5,0.0 +18852,7,30,7,0.0 +18852,24,4.5,42,0.0 +18852,8,40,19,0.0 +18852,11,21,5,0.0 +18852,12,38,7,0.0 +18852,37,26,3,0.0 +18852,49,20,5,0.0 +18852,62,49.3,17,0.0 +18852,10,31,12,0.0 +18852,16,17.45,10,0.0 +18852,54,7.45,20,0.0 +18852,29,123.79,5,0.0 +18852,61,28.5,9,0.0 +18852,41,9.65,12,0.0 +18852,21,10,26,0.0 +18852,9,97,30,0.0 +18852,40,18.4,13,0.0 +18852,51,53,21,0.0 +18852,71,21.5,30,0.0 +18852,32,32,15,0.0 +18852,18,62.5,11,0.0 +18852,34,14,12,0.0 +18852,1,18,35,0.0 +18852,30,25.89,5,0.0 +18852,38,263.5,16,0.0 +18852,36,19,32,0.0 +18852,23,9,10,0.0 +18852,27,43.9,35,0.0 +18852,66,17,2,0.0 +18852,57,19.5,46,0.0 +18852,77,13,31,0.0 +18852,20,81,1,0.0 +18852,17,39,19,0.0 +18852,44,19.45,21,0.0 +18852,65,21.05,33,0.0 +18852,42,14,49,0.0 +18852,19,9.2,49,0.0 +18852,28,45.6,10,0.0 +18852,70,15,28,0.0 +18852,46,12,48,0.0 +18852,58,13.25,15,0.0 +18852,52,7,39,0.0 +18852,69,36,24,0.0 +18852,55,24,42,0.0 +18852,68,12.5,47,0.0 +18852,45,9.5,4,0.0 +18853,66,17,29,0.0 +18853,33,2.5,24,0.0 +18853,34,14,17,0.0 +18853,77,13,13,0.0 +18853,4,22,33,0.0 +18853,16,17.45,5,0.0 +18853,7,30,33,0.0 +18853,43,46,20,0.0 +18853,74,10,5,0.0 +18853,10,31,45,0.0 +18853,54,7.45,18,0.0 +18853,51,53,2,0.0 +18853,24,4.5,9,0.0 +18853,31,12.5,39,0.0 +18853,52,7,21,0.0 +18853,61,28.5,40,0.0 +18853,2,19,27,0.0 +18853,55,24,27,0.0 +18853,22,21,47,0.0 +18853,59,55,44,0.0 +18853,53,32.8,32,0.0 +18853,26,31.23,26,0.0 +18853,14,23.25,20,0.0 +18853,50,16.25,2,0.0 +18853,13,6,6,0.0 +18853,36,19,2,0.0 +18853,76,18,19,0.0 +18853,58,13.25,39,0.0 +18853,57,19.5,49,0.0 +18853,17,39,25,0.0 +18853,60,34,1,0.0 +18853,35,18,10,0.0 +18853,18,62.5,13,0.0 +18853,49,20,39,0.0 +18853,68,12.5,47,0.0 +18853,23,9,2,0.0 +18853,75,7.75,24,0.0 +18853,20,81,35,0.0 +18853,6,25,2,0.0 +18853,63,43.9,23,0.0 +18853,27,43.9,26,0.0 +18854,36,19,30,0.0 +18854,64,33.25,22,0.0 +18854,15,15.5,43,0.0 +18854,57,19.5,49,0.0 +18854,2,19,34,0.0 +18854,47,9.5,42,0.0 +18854,30,25.89,10,0.0 +18854,50,16.25,46,0.0 +18854,49,20,6,0.0 +18854,52,7,1,0.0 +18854,41,9.65,26,0.0 +18854,13,6,17,0.0 +18854,23,9,1,0.0 +18854,22,21,41,0.0 +18854,38,263.5,3,0.0 +18854,55,24,25,0.0 +18854,19,9.2,50,0.0 +18854,66,17,29,0.0 +18854,12,38,33,0.0 +18854,32,32,19,0.0 +18854,6,25,31,0.0 +18854,31,12.5,25,0.0 +18854,1,18,45,0.0 +18854,27,43.9,14,0.0 +18854,73,15,48,0.0 +18854,10,31,6,0.0 +18854,33,2.5,45,0.0 +18854,46,12,49,0.0 +18854,68,12.5,19,0.0 +18854,14,23.25,2,0.0 +18854,45,9.5,2,0.0 +18854,51,53,42,0.0 +18854,62,49.3,36,0.0 +18854,70,15,13,0.0 +18854,37,26,38,0.0 +18854,28,45.6,38,0.0 +18854,40,18.4,49,0.0 +18854,5,21.35,29,0.0 +18854,26,31.23,32,0.0 +18854,48,12.75,15,0.0 +18854,3,10,47,0.0 +18854,54,7.45,5,0.0 +18854,24,4.5,31,0.0 +18854,53,32.8,40,0.0 +18854,16,17.45,36,0.0 +18854,35,18,18,0.0 +18854,74,10,3,0.0 +18854,42,14,33,0.0 +18855,2,19,42,0.0 +18855,44,19.45,13,0.0 +18855,48,12.75,6,0.0 +18855,53,32.8,15,0.0 +18855,60,34,21,0.0 +18855,43,46,7,0.0 +18855,5,21.35,3,0.0 +18855,74,10,46,0.0 +18855,23,9,20,0.0 +18855,38,263.5,35,0.0 +18855,6,25,37,0.0 +18855,35,18,15,0.0 +18855,41,9.65,38,0.0 +18855,75,7.75,34,0.0 +18855,45,9.5,20,0.0 +18855,65,21.05,32,0.0 +18855,27,43.9,39,0.0 +18855,67,14,36,0.0 +18855,31,12.5,10,0.0 +18855,40,18.4,13,0.0 +18855,64,33.25,20,0.0 +18855,68,12.5,41,0.0 +18855,58,13.25,5,0.0 +18855,70,15,20,0.0 +18855,69,36,2,0.0 +18855,37,26,9,0.0 +18855,16,17.45,23,0.0 +18855,14,23.25,32,0.0 +18855,42,14,2,0.0 +18855,11,21,41,0.0 +18855,39,18,49,0.0 +18855,26,31.23,1,0.0 +18855,30,25.89,32,0.0 +18855,25,14,15,0.0 +18855,34,14,19,0.0 +18855,50,16.25,21,0.0 +18855,22,21,16,0.0 +18855,66,17,7,0.0 +18855,72,34.8,8,0.0 +18855,55,24,28,0.0 +18855,57,19.5,17,0.0 +18855,28,45.6,21,0.0 +18855,71,21.5,44,0.0 +18855,36,19,48,0.0 +18855,62,49.3,49,0.0 +18855,18,62.5,21,0.0 +18855,13,6,22,0.0 +18856,31,12.5,23,0.0 +18856,3,10,25,0.0 +18856,59,55,21,0.0 +18856,2,19,21,0.0 +18856,60,34,41,0.0 +18856,5,21.35,2,0.0 +18856,12,38,44,0.0 +18856,22,21,38,0.0 +18856,29,123.79,10,0.0 +18856,67,14,16,0.0 +18856,26,31.23,27,0.0 +18856,61,28.5,6,0.0 +18856,9,97,16,0.0 +18856,1,18,50,0.0 +18856,13,6,36,0.0 +18856,38,263.5,8,0.0 +18856,74,10,40,0.0 +18856,44,19.45,43,0.0 +18856,70,15,50,0.0 +18856,62,49.3,19,0.0 +18856,66,17,1,0.0 +18856,15,15.5,23,0.0 +18856,34,14,36,0.0 +18856,10,31,15,0.0 +18856,30,25.89,26,0.0 +18856,39,18,10,0.0 +18856,75,7.75,30,0.0 +18856,63,43.9,9,0.0 +18856,68,12.5,12,0.0 +18856,54,7.45,21,0.0 +18856,46,12,37,0.0 +18856,50,16.25,21,0.0 +18856,76,18,40,0.0 +18856,33,2.5,37,0.0 +18856,7,30,22,0.0 +18856,52,7,23,0.0 +18856,42,14,8,0.0 +18856,56,38,14,0.0 +18856,72,34.8,32,0.0 +18856,64,33.25,28,0.0 +18856,18,62.5,18,0.0 +18856,37,26,7,0.0 +18856,17,39,11,0.0 +18856,36,19,2,0.0 +18856,19,9.2,29,0.0 +18856,20,81,6,0.0 +18856,32,32,37,0.0 +18856,45,9.5,23,0.0 +18856,69,36,28,0.0 +18856,21,10,10,0.0 +18856,23,9,49,0.0 +18856,55,24,32,0.0 +18857,14,23.25,24,0.0 +18857,12,38,20,0.0 +18857,48,12.75,16,0.0 +18857,46,12,29,0.0 +18857,41,9.65,16,0.0 +18857,58,13.25,13,0.0 +18857,8,40,29,0.0 +18857,32,32,28,0.0 +18857,49,20,18,0.0 +18857,51,53,26,0.0 +18857,55,24,43,0.0 +18857,67,14,20,0.0 +18857,74,10,29,0.0 +18857,6,25,50,0.0 +18857,40,18.4,32,0.0 +18857,35,18,41,0.0 +18858,44,19.45,40,0.0 +18858,20,81,50,0.0 +18858,37,26,14,0.0 +18858,12,38,27,0.0 +18858,71,21.5,31,0.0 +18858,52,7,29,0.0 +18858,26,31.23,2,0.0 +18858,15,15.5,45,0.0 +18858,22,21,20,0.0 +18858,21,10,44,0.0 +18858,67,14,19,0.0 +18858,1,18,10,0.0 +18858,36,19,43,0.0 +18858,70,15,32,0.0 +18858,55,24,28,0.0 +18858,68,12.5,15,0.0 +18858,61,28.5,18,0.0 +18858,27,43.9,30,0.0 +18858,74,10,34,0.0 +18858,60,34,7,0.0 +18858,46,12,44,0.0 +18858,32,32,37,0.0 +18858,24,4.5,40,0.0 +18858,19,9.2,6,0.0 +18858,6,25,12,0.0 +18858,73,15,28,0.0 +18858,28,45.6,27,0.0 +18859,58,13.25,39,0.0 +18859,10,31,3,0.0 +18859,70,15,47,0.0 +18859,76,18,18,0.0 +18859,66,17,32,0.0 +18859,25,14,1,0.0 +18859,43,46,33,0.0 +18859,37,26,40,0.0 +18859,68,12.5,8,0.0 +18859,41,9.65,1,0.0 +18859,13,6,21,0.0 +18859,69,36,2,0.0 +18859,19,9.2,26,0.0 +18859,18,62.5,35,0.0 +18859,4,22,29,0.0 +18859,17,39,24,0.0 +18859,65,21.05,14,0.0 +18859,71,21.5,39,0.0 +18859,30,25.89,33,0.0 +18859,60,34,17,0.0 +18859,11,21,15,0.0 +18859,29,123.79,12,0.0 +18860,74,10,15,0.0 +18860,43,46,42,0.0 +18860,18,62.5,27,0.0 +18860,37,26,45,0.0 +18860,67,14,14,0.0 +18860,36,19,1,0.0 +18860,24,4.5,1,0.0 +18860,7,30,11,0.0 +18860,64,33.25,4,0.0 +18860,71,21.5,42,0.0 +18860,13,6,36,0.0 +18860,42,14,14,0.0 +18861,7,30,15,0.0 +18861,63,43.9,40,0.0 +18861,29,123.79,8,0.0 +18861,75,7.75,37,0.0 +18861,60,34,29,0.0 +18861,22,21,43,0.0 +18861,77,13,36,0.0 +18861,44,19.45,22,0.0 +18861,71,21.5,19,0.0 +18861,43,46,45,0.0 +18861,40,18.4,12,0.0 +18861,62,49.3,29,0.0 +18861,1,18,23,0.0 +18861,28,45.6,12,0.0 +18861,3,10,8,0.0 +18861,4,22,17,0.0 +18861,46,12,29,0.0 +18862,57,19.5,4,0.0 +18862,1,18,26,0.0 +18862,36,19,48,0.0 +18862,16,17.45,30,0.0 +18862,45,9.5,13,0.0 +18862,5,21.35,39,0.0 +18862,51,53,43,0.0 +18862,61,28.5,37,0.0 +18862,3,10,27,0.0 +18862,28,45.6,50,0.0 +18862,21,10,6,0.0 +18862,73,15,13,0.0 +18862,8,40,20,0.0 +18862,47,9.5,48,0.0 +18862,59,55,7,0.0 +18862,58,13.25,4,0.0 +18862,31,12.5,25,0.0 +18862,40,18.4,34,0.0 +18862,19,9.2,8,0.0 +18862,35,18,28,0.0 +18862,14,23.25,10,0.0 +18862,20,81,40,0.0 +18862,26,31.23,42,0.0 +18862,72,34.8,10,0.0 +18862,55,24,1,0.0 +18862,38,263.5,41,0.0 +18862,50,16.25,45,0.0 +18862,27,43.9,30,0.0 +18862,17,39,20,0.0 +18862,9,97,27,0.0 +18862,30,25.89,14,0.0 +18862,46,12,32,0.0 +18862,43,46,14,0.0 +18862,7,30,24,0.0 +18862,25,14,28,0.0 +18862,62,49.3,20,0.0 +18862,60,34,37,0.0 +18862,66,17,7,0.0 +18862,71,21.5,23,0.0 +18862,11,21,18,0.0 +18862,74,10,44,0.0 +18862,49,20,35,0.0 +18862,68,12.5,31,0.0 +18862,53,32.8,38,0.0 +18862,22,21,13,0.0 +18862,41,9.65,44,0.0 +18862,67,14,15,0.0 +18862,69,36,16,0.0 +18862,44,19.45,32,0.0 +18862,4,22,20,0.0 +18862,52,7,3,0.0 +18862,18,62.5,30,0.0 +18862,13,6,13,0.0 +18862,42,14,27,0.0 +18862,23,9,37,0.0 +18862,34,14,3,0.0 +18862,10,31,29,0.0 +18862,2,19,2,0.0 +18862,65,21.05,4,0.0 +18862,70,15,16,0.0 +18862,32,32,36,0.0 +18862,39,18,35,0.0 +18862,76,18,29,0.0 +18862,29,123.79,21,0.0 +18863,61,28.5,22,0.0 +18863,44,19.45,40,0.0 +18863,27,43.9,12,0.0 +18863,51,53,50,0.0 +18863,28,45.6,14,0.0 +18863,43,46,1,0.0 +18863,42,14,40,0.0 +18863,19,9.2,39,0.0 +18863,22,21,16,0.0 +18863,48,12.75,5,0.0 +18863,17,39,38,0.0 +18863,54,7.45,48,0.0 +18863,10,31,47,0.0 +18863,2,19,50,0.0 +18863,30,25.89,15,0.0 +18863,21,10,40,0.0 +18863,77,13,9,0.0 +18863,1,18,38,0.0 +18863,66,17,1,0.0 +18863,53,32.8,38,0.0 +18863,45,9.5,29,0.0 +18863,49,20,13,0.0 +18863,23,9,9,0.0 +18863,52,7,20,0.0 +18863,59,55,36,0.0 +18863,3,10,28,0.0 +18863,68,12.5,6,0.0 +18863,37,26,7,0.0 +18863,71,21.5,20,0.0 +18863,76,18,39,0.0 +18863,38,263.5,30,0.0 +18864,6,25,40,0.0 +18864,57,19.5,43,0.0 +18864,16,17.45,39,0.0 +18864,36,19,37,0.0 +18864,64,33.25,10,0.0 +18864,14,23.25,42,0.0 +18864,67,14,45,0.0 +18864,40,18.4,8,0.0 +18864,60,34,49,0.0 +18864,63,43.9,1,0.0 +18864,25,14,36,0.0 +18864,20,81,32,0.0 +18864,70,15,28,0.0 +18864,4,22,40,0.0 +18864,51,53,8,0.0 +18864,65,21.05,17,0.0 +18864,71,21.5,13,0.0 +18864,10,31,1,0.0 +18864,74,10,23,0.0 +18864,46,12,35,0.0 +18864,30,25.89,9,0.0 +18864,13,6,8,0.0 +18864,8,40,6,0.0 +18864,17,39,33,0.0 +18864,1,18,2,0.0 +18864,69,36,12,0.0 +18864,12,38,32,0.0 +18864,76,18,38,0.0 +18864,32,32,14,0.0 +18864,37,26,37,0.0 +18864,59,55,47,0.0 +18864,26,31.23,3,0.0 +18864,50,16.25,3,0.0 +18864,9,97,32,0.0 +18864,5,21.35,3,0.0 +18864,53,32.8,26,0.0 +18864,55,24,23,0.0 +18864,47,9.5,8,0.0 +18864,33,2.5,48,0.0 +18864,45,9.5,39,0.0 +18864,27,43.9,8,0.0 +18864,62,49.3,46,0.0 +18864,41,9.65,3,0.0 +18864,54,7.45,23,0.0 +18864,11,21,6,0.0 +18865,7,30,21,0.0 +18865,24,4.5,16,0.0 +18865,49,20,2,0.0 +18865,62,49.3,6,0.0 +18865,19,9.2,25,0.0 +18865,58,13.25,1,0.0 +18865,63,43.9,49,0.0 +18865,25,14,25,0.0 +18865,6,25,44,0.0 +18865,64,33.25,2,0.0 +18865,37,26,17,0.0 +18865,15,15.5,48,0.0 +18865,45,9.5,45,0.0 +18866,54,7.45,14,0.0 +18866,44,19.45,10,0.0 +18866,75,7.75,48,0.0 +18866,52,7,23,0.0 +18866,48,12.75,17,0.0 +18866,12,38,41,0.0 +18867,59,55,28,0.0 +18867,42,14,12,0.0 +18867,35,18,9,0.0 +18867,7,30,29,0.0 +18867,71,21.5,44,0.0 +18867,61,28.5,16,0.0 +18867,3,10,48,0.0 +18867,38,263.5,18,0.0 +18867,55,24,49,0.0 +18867,49,20,15,0.0 +18867,22,21,33,0.0 +18867,48,12.75,19,0.0 +18867,15,15.5,25,0.0 +18867,70,15,33,0.0 +18867,24,4.5,28,0.0 +18867,21,10,7,0.0 +18867,2,19,37,0.0 +18867,77,13,26,0.0 +18867,6,25,44,0.0 +18867,18,62.5,46,0.0 +18867,76,18,34,0.0 +18867,52,7,37,0.0 +18867,72,34.8,43,0.0 +18867,36,19,4,0.0 +18867,68,12.5,14,0.0 +18867,29,123.79,47,0.0 +18867,69,36,24,0.0 +18867,47,9.5,20,0.0 +18867,20,81,50,0.0 +18867,53,32.8,39,0.0 +18867,34,14,32,0.0 +18867,40,18.4,25,0.0 +18867,56,38,2,0.0 +18867,19,9.2,15,0.0 +18867,63,43.9,33,0.0 +18867,44,19.45,2,0.0 +18867,16,17.45,13,0.0 +18867,39,18,13,0.0 +18867,5,21.35,34,0.0 +18867,66,17,11,0.0 +18867,57,19.5,34,0.0 +18867,51,53,23,0.0 +18867,11,21,34,0.0 +18867,54,7.45,34,0.0 +18867,37,26,34,0.0 +18867,67,14,33,0.0 +18867,58,13.25,44,0.0 +18867,62,49.3,48,0.0 +18867,27,43.9,50,0.0 +18867,13,6,2,0.0 +18867,43,46,17,0.0 +18867,46,12,30,0.0 +18867,41,9.65,25,0.0 +18867,26,31.23,15,0.0 +18867,14,23.25,37,0.0 +18867,73,15,24,0.0 +18867,45,9.5,11,0.0 +18867,50,16.25,36,0.0 +18867,75,7.75,4,0.0 +18867,23,9,6,0.0 +18867,12,38,24,0.0 +18867,64,33.25,15,0.0 +18867,8,40,36,0.0 +18867,30,25.89,19,0.0 +18867,1,18,31,0.0 +18868,29,123.79,46,0.0 +18868,13,6,19,0.0 +18868,67,14,16,0.0 +18868,6,25,14,0.0 +18868,22,21,36,0.0 +18868,39,18,22,0.0 +18868,58,13.25,26,0.0 +18868,2,19,35,0.0 +18868,56,38,39,0.0 +18868,12,38,7,0.0 +18868,72,34.8,50,0.0 +18868,49,20,30,0.0 +18868,4,22,28,0.0 +18868,68,12.5,43,0.0 +18868,38,263.5,19,0.0 +18868,11,21,34,0.0 +18868,8,40,4,0.0 +18868,17,39,30,0.0 +18868,54,7.45,48,0.0 +18868,62,49.3,4,0.0 +18868,75,7.75,47,0.0 +18868,5,21.35,10,0.0 +18868,44,19.45,48,0.0 +18869,34,14,36,0.0 +18869,24,4.5,1,0.0 +18869,23,9,16,0.0 +18869,67,14,33,0.0 +18869,76,18,12,0.0 +18869,52,7,39,0.0 +18869,17,39,20,0.0 +18869,5,21.35,44,0.0 +18869,40,18.4,38,0.0 +18869,44,19.45,10,0.0 +18869,75,7.75,16,0.0 +18869,55,24,7,0.0 +18869,58,13.25,12,0.0 +18869,33,2.5,33,0.0 +18869,71,21.5,26,0.0 +18869,1,18,15,0.0 +18869,35,18,36,0.0 +18869,50,16.25,4,0.0 +18869,31,12.5,44,0.0 +18869,16,17.45,31,0.0 +18869,49,20,11,0.0 +18869,20,81,42,0.0 +18869,69,36,16,0.0 +18869,48,12.75,5,0.0 +18869,46,12,18,0.0 +18869,62,49.3,49,0.0 +18869,51,53,30,0.0 +18869,30,25.89,17,0.0 +18869,38,263.5,50,0.0 +18869,61,28.5,46,0.0 +18869,26,31.23,47,0.0 +18869,42,14,45,0.0 +18869,45,9.5,12,0.0 +18869,25,14,18,0.0 +18869,41,9.65,48,0.0 +18869,60,34,39,0.0 +18869,4,22,33,0.0 +18869,68,12.5,4,0.0 +18869,9,97,21,0.0 +18869,28,45.6,18,0.0 +18869,22,21,32,0.0 +18869,65,21.05,46,0.0 +18869,8,40,36,0.0 +18869,63,43.9,21,0.0 +18869,36,19,19,0.0 +18869,27,43.9,7,0.0 +18869,32,32,10,0.0 +18869,43,46,4,0.0 +18869,57,19.5,1,0.0 +18869,59,55,7,0.0 +18869,2,19,2,0.0 +18869,39,18,48,0.0 +18870,8,40,32,0.0 +18870,2,19,34,0.0 +18870,67,14,43,0.0 +18870,56,38,24,0.0 +18870,66,17,36,0.0 +18870,16,17.45,5,0.0 +18870,62,49.3,18,0.0 +18870,64,33.25,39,0.0 +18870,24,4.5,12,0.0 +18870,54,7.45,12,0.0 +18870,48,12.75,43,0.0 +18870,4,22,13,0.0 +18870,38,263.5,24,0.0 +18870,55,24,23,0.0 +18870,58,13.25,7,0.0 +18870,20,81,25,0.0 +18870,59,55,28,0.0 +18870,68,12.5,17,0.0 +18870,43,46,28,0.0 +18870,15,15.5,9,0.0 +18870,17,39,41,0.0 +18870,70,15,31,0.0 +18870,33,2.5,38,0.0 +18870,76,18,11,0.0 +18870,26,31.23,15,0.0 +18870,12,38,29,0.0 +18870,34,14,42,0.0 +18870,27,43.9,20,0.0 +18870,36,19,12,0.0 +18870,42,14,16,0.0 +18870,28,45.6,25,0.0 +18870,41,9.65,43,0.0 +18870,49,20,43,0.0 +18870,75,7.75,15,0.0 +18870,37,26,23,0.0 +18870,60,34,44,0.0 +18870,29,123.79,33,0.0 +18870,47,9.5,20,0.0 +18870,69,36,9,0.0 +18870,39,18,10,0.0 +18870,21,10,12,0.0 +18870,71,21.5,42,0.0 +18870,52,7,21,0.0 +18870,65,21.05,29,0.0 +18870,10,31,37,0.0 +18870,11,21,47,0.0 +18870,14,23.25,49,0.0 +18870,31,12.5,42,0.0 +18870,72,34.8,18,0.0 +18870,25,14,9,0.0 +18870,5,21.35,6,0.0 +18870,50,16.25,10,0.0 +18870,61,28.5,30,0.0 +18870,18,62.5,24,0.0 +18870,57,19.5,24,0.0 +18870,53,32.8,1,0.0 +18870,73,15,30,0.0 +18870,35,18,42,0.0 +18870,63,43.9,31,0.0 +18870,46,12,24,0.0 +18870,7,30,50,0.0 +18871,30,25.89,49,0.0 +18871,28,45.6,33,0.0 +18871,9,97,24,0.0 +18871,7,30,45,0.0 +18871,74,10,22,0.0 +18871,59,55,21,0.0 +18871,60,34,50,0.0 +18871,14,23.25,35,0.0 +18871,15,15.5,6,0.0 +18871,2,19,43,0.0 +18871,20,81,44,0.0 +18871,36,19,16,0.0 +18871,61,28.5,15,0.0 +18871,40,18.4,46,0.0 +18871,11,21,50,0.0 +18871,50,16.25,44,0.0 +18871,31,12.5,10,0.0 +18871,10,31,22,0.0 +18871,58,13.25,40,0.0 +18871,18,62.5,32,0.0 +18871,49,20,11,0.0 +18871,56,38,27,0.0 +18871,45,9.5,12,0.0 +18871,38,263.5,21,0.0 +18871,37,26,25,0.0 +18871,70,15,3,0.0 +18871,26,31.23,8,0.0 +18871,12,38,29,0.0 +18872,16,17.45,20,0.0 +18872,25,14,5,0.0 +18872,66,17,29,0.0 +18872,14,23.25,50,0.0 +18872,64,33.25,24,0.0 +18872,22,21,44,0.0 +18872,63,43.9,6,0.0 +18872,10,31,1,0.0 +18872,4,22,29,0.0 +18872,57,19.5,31,0.0 +18872,52,7,17,0.0 +18872,38,263.5,15,0.0 +18872,15,15.5,29,0.0 +18872,49,20,29,0.0 +18872,31,12.5,42,0.0 +18872,53,32.8,39,0.0 +18872,43,46,33,0.0 +18872,48,12.75,39,0.0 +18872,58,13.25,13,0.0 +18872,29,123.79,5,0.0 +18872,36,19,7,0.0 +18872,34,14,16,0.0 +18873,6,25,27,0.0 +18873,77,13,14,0.0 +18873,76,18,28,0.0 +18873,63,43.9,14,0.0 +18873,34,14,36,0.0 +18873,33,2.5,25,0.0 +18873,9,97,13,0.0 +18873,61,28.5,14,0.0 +18873,54,7.45,37,0.0 +18873,38,263.5,34,0.0 +18873,75,7.75,22,0.0 +18873,8,40,40,0.0 +18873,72,34.8,41,0.0 +18873,18,62.5,34,0.0 +18873,24,4.5,22,0.0 +18873,23,9,36,0.0 +18873,3,10,8,0.0 +18873,26,31.23,45,0.0 +18873,53,32.8,6,0.0 +18873,39,18,17,0.0 +18873,44,19.45,13,0.0 +18873,48,12.75,21,0.0 +18873,25,14,42,0.0 +18873,60,34,5,0.0 +18873,69,36,36,0.0 +18873,49,20,11,0.0 +18873,55,24,50,0.0 +18873,15,15.5,48,0.0 +18873,20,81,14,0.0 +18873,14,23.25,34,0.0 +18873,68,12.5,15,0.0 +18873,12,38,44,0.0 +18873,42,14,13,0.0 +18873,56,38,41,0.0 +18873,58,13.25,16,0.0 +18873,40,18.4,48,0.0 +18873,59,55,5,0.0 +18873,1,18,1,0.0 +18873,10,31,50,0.0 +18873,73,15,2,0.0 +18873,22,21,38,0.0 +18873,41,9.65,33,0.0 +18873,31,12.5,46,0.0 +18873,21,10,26,0.0 +18873,66,17,4,0.0 +18874,56,38,41,0.0 +18874,33,2.5,41,0.0 +18874,60,34,22,0.0 +18874,11,21,42,0.0 +18874,50,16.25,28,0.0 +18874,42,14,21,0.0 +18874,49,20,30,0.0 +18874,13,6,22,0.0 +18874,6,25,7,0.0 +18874,38,263.5,1,0.0 +18874,16,17.45,29,0.0 +18874,30,25.89,4,0.0 +18874,70,15,2,0.0 +18874,34,14,6,0.0 +18874,77,13,38,0.0 +18874,7,30,14,0.0 +18874,66,17,43,0.0 +18874,59,55,5,0.0 +18874,62,49.3,34,0.0 +18874,71,21.5,24,0.0 +18874,21,10,5,0.0 +18874,74,10,22,0.0 +18874,52,7,22,0.0 +18874,37,26,14,0.0 +18874,64,33.25,49,0.0 +18874,48,12.75,18,0.0 +18874,57,19.5,30,0.0 +18874,2,19,26,0.0 +18874,47,9.5,39,0.0 +18874,44,19.45,9,0.0 +18874,29,123.79,31,0.0 +18874,19,9.2,23,0.0 +18874,51,53,25,0.0 +18874,36,19,39,0.0 +18874,10,31,5,0.0 +18874,46,12,45,0.0 +18874,20,81,21,0.0 +18874,1,18,35,0.0 +18874,65,21.05,49,0.0 +18874,53,32.8,23,0.0 +18874,72,34.8,26,0.0 +18874,45,9.5,10,0.0 +18874,8,40,7,0.0 +18874,68,12.5,25,0.0 +18874,31,12.5,38,0.0 +18874,18,62.5,50,0.0 +18874,4,22,38,0.0 +18874,67,14,3,0.0 +18874,22,21,18,0.0 +18874,14,23.25,36,0.0 +18874,75,7.75,9,0.0 +18874,58,13.25,44,0.0 +18874,32,32,32,0.0 +18874,17,39,23,0.0 +18874,15,15.5,50,0.0 +18874,61,28.5,46,0.0 +18874,28,45.6,21,0.0 +18874,25,14,31,0.0 +18874,55,24,25,0.0 +18874,43,46,30,0.0 +18874,23,9,36,0.0 +18874,24,4.5,18,0.0 +18874,69,36,17,0.0 +18874,54,7.45,41,0.0 +18874,35,18,9,0.0 +18874,76,18,48,0.0 +18874,9,97,11,0.0 +18874,12,38,41,0.0 +18874,73,15,44,0.0 +18874,41,9.65,45,0.0 +18874,5,21.35,18,0.0 +18874,3,10,41,0.0 +18874,27,43.9,5,0.0 +18874,39,18,12,0.0 +18875,27,43.9,31,0.0 +18875,56,38,11,0.0 +18875,77,13,22,0.0 +18875,34,14,14,0.0 +18875,55,24,39,0.0 +18875,46,12,11,0.0 +18875,43,46,40,0.0 +18875,64,33.25,16,0.0 +18875,70,15,41,0.0 +18875,58,13.25,22,0.0 +18875,23,9,24,0.0 +18875,15,15.5,34,0.0 +18875,76,18,34,0.0 +18875,50,16.25,45,0.0 +18875,69,36,29,0.0 +18875,54,7.45,18,0.0 +18875,47,9.5,46,0.0 +18875,75,7.75,16,0.0 +18875,62,49.3,41,0.0 +18875,44,19.45,49,0.0 +18875,20,81,8,0.0 +18875,59,55,7,0.0 +18875,26,31.23,13,0.0 +18875,4,22,45,0.0 +18875,19,9.2,8,0.0 +18875,61,28.5,28,0.0 +18875,51,53,45,0.0 +18875,74,10,17,0.0 +18875,45,9.5,41,0.0 +18875,16,17.45,17,0.0 +18875,30,25.89,36,0.0 +18875,17,39,37,0.0 +18876,31,12.5,50,0.0 +18876,18,62.5,25,0.0 +18876,29,123.79,22,0.0 +18876,39,18,16,0.0 +18876,36,19,29,0.0 +18876,70,15,26,0.0 +18876,40,18.4,31,0.0 +18876,19,9.2,7,0.0 +18876,14,23.25,5,0.0 +18877,53,32.8,31,0.0 +18877,12,38,19,0.0 +18877,62,49.3,48,0.0 +18877,57,19.5,19,0.0 +18877,37,26,40,0.0 +18877,55,24,33,0.0 +18877,56,38,17,0.0 +18877,13,6,23,0.0 +18877,9,97,22,0.0 +18877,44,19.45,1,0.0 +18877,64,33.25,2,0.0 +18877,15,15.5,1,0.0 +18877,16,17.45,7,0.0 +18877,7,30,38,0.0 +18877,65,21.05,44,0.0 +18877,40,18.4,2,0.0 +18877,69,36,44,0.0 +18877,50,16.25,32,0.0 +18877,27,43.9,9,0.0 +18877,24,4.5,4,0.0 +18877,22,21,6,0.0 +18877,70,15,48,0.0 +18877,41,9.65,15,0.0 +18877,29,123.79,49,0.0 +18877,3,10,28,0.0 +18877,77,13,30,0.0 +18877,1,18,14,0.0 +18877,10,31,44,0.0 +18877,38,263.5,50,0.0 +18877,68,12.5,16,0.0 +18877,5,21.35,14,0.0 +18877,46,12,25,0.0 +18877,49,20,8,0.0 +18877,8,40,49,0.0 +18877,14,23.25,31,0.0 +18877,30,25.89,49,0.0 +18877,25,14,21,0.0 +18877,58,13.25,37,0.0 +18877,34,14,36,0.0 +18877,43,46,43,0.0 +18877,60,34,18,0.0 +18877,33,2.5,10,0.0 +18877,71,21.5,42,0.0 +18877,2,19,26,0.0 +18877,76,18,16,0.0 +18878,10,31,10,0.0 +18878,11,21,24,0.0 +18878,43,46,38,0.0 +18878,20,81,49,0.0 +18878,1,18,38,0.0 +18878,28,45.6,39,0.0 +18878,65,21.05,11,0.0 +18878,74,10,15,0.0 +18878,8,40,15,0.0 +18878,64,33.25,25,0.0 +18878,27,43.9,38,0.0 +18878,30,25.89,49,0.0 +18878,6,25,32,0.0 +18878,55,24,49,0.0 +18878,15,15.5,38,0.0 +18878,52,7,12,0.0 +18878,32,32,49,0.0 +18878,42,14,13,0.0 +18878,66,17,4,0.0 +18878,67,14,2,0.0 +18878,37,26,2,0.0 +18878,12,38,16,0.0 +18878,63,43.9,11,0.0 +18878,13,6,43,0.0 +18878,5,21.35,18,0.0 +18878,73,15,45,0.0 +18878,38,263.5,13,0.0 +18878,31,12.5,23,0.0 +18878,50,16.25,9,0.0 +18878,35,18,23,0.0 +18879,18,62.5,8,0.0 +18879,25,14,32,0.0 +18879,6,25,24,0.0 +18879,55,24,17,0.0 +18879,63,43.9,4,0.0 +18879,43,46,47,0.0 +18879,46,12,28,0.0 +18879,49,20,14,0.0 +18879,13,6,8,0.0 +18879,68,12.5,4,0.0 +18879,65,21.05,43,0.0 +18879,17,39,49,0.0 +18879,22,21,5,0.0 +18880,2,19,18,0.0 +18880,40,18.4,40,0.0 +18880,18,62.5,6,0.0 +18880,20,81,31,0.0 +18880,6,25,16,0.0 +18880,45,9.5,31,0.0 +18880,54,7.45,42,0.0 +18880,41,9.65,41,0.0 +18880,72,34.8,15,0.0 +18880,43,46,22,0.0 +18880,44,19.45,37,0.0 +18880,55,24,8,0.0 +18880,76,18,50,0.0 +18880,67,14,16,0.0 +18880,47,9.5,15,0.0 +18880,50,16.25,48,0.0 +18880,22,21,17,0.0 +18880,31,12.5,35,0.0 +18880,30,25.89,3,0.0 +18880,1,18,35,0.0 +18880,69,36,30,0.0 +18880,75,7.75,33,0.0 +18880,74,10,39,0.0 +18880,7,30,31,0.0 +18880,29,123.79,46,0.0 +18880,25,14,38,0.0 +18880,19,9.2,28,0.0 +18880,27,43.9,40,0.0 +18880,36,19,31,0.0 +18880,46,12,47,0.0 +18880,64,33.25,26,0.0 +18880,3,10,16,0.0 +18880,77,13,11,0.0 +18880,61,28.5,23,0.0 +18880,39,18,1,0.0 +18880,52,7,45,0.0 +18880,68,12.5,25,0.0 +18880,14,23.25,43,0.0 +18880,59,55,36,0.0 +18880,51,53,21,0.0 +18880,12,38,10,0.0 +18880,24,4.5,22,0.0 +18880,66,17,50,0.0 +18880,53,32.8,29,0.0 +18880,26,31.23,43,0.0 +18880,48,12.75,18,0.0 +18880,4,22,42,0.0 +18880,62,49.3,41,0.0 +18880,16,17.45,41,0.0 +18880,28,45.6,30,0.0 +18880,23,9,42,0.0 +18880,58,13.25,5,0.0 +18880,5,21.35,33,0.0 +18880,35,18,46,0.0 +18880,8,40,46,0.0 +18880,38,263.5,13,0.0 +18880,33,2.5,43,0.0 +18880,73,15,23,0.0 +18880,9,97,27,0.0 +18881,31,12.5,50,0.0 +18881,43,46,33,0.0 +18881,46,12,27,0.0 +18881,35,18,39,0.0 +18882,29,123.79,4,0.0 +18882,56,38,3,0.0 +18882,77,13,49,0.0 +18882,4,22,14,0.0 +18882,7,30,22,0.0 +18882,10,31,3,0.0 +18882,18,62.5,31,0.0 +18882,72,34.8,36,0.0 +18882,21,10,39,0.0 +18882,39,18,28,0.0 +18882,46,12,34,0.0 +18882,19,9.2,29,0.0 +18882,42,14,37,0.0 +18882,28,45.6,7,0.0 +18882,26,31.23,6,0.0 +18882,12,38,39,0.0 +18882,51,53,26,0.0 +18883,23,9,32,0.0 +18883,54,7.45,12,0.0 +18883,58,13.25,43,0.0 +18883,13,6,12,0.0 +18883,71,21.5,5,0.0 +18883,69,36,14,0.0 +18883,43,46,44,0.0 +18883,51,53,21,0.0 +18883,24,4.5,27,0.0 +18883,19,9.2,20,0.0 +18883,75,7.75,23,0.0 +18883,38,263.5,34,0.0 +18883,47,9.5,29,0.0 +18883,6,25,23,0.0 +18883,21,10,21,0.0 +18883,60,34,11,0.0 +18883,64,33.25,35,0.0 +18883,27,43.9,13,0.0 +18883,55,24,37,0.0 +18883,76,18,13,0.0 +18883,12,38,22,0.0 +18883,42,14,26,0.0 +18883,16,17.45,5,0.0 +18883,8,40,42,0.0 +18883,33,2.5,6,0.0 +18883,46,12,41,0.0 +18883,3,10,35,0.0 +18883,25,14,15,0.0 +18883,45,9.5,12,0.0 +18883,68,12.5,30,0.0 +18883,17,39,46,0.0 +18883,52,7,14,0.0 +18883,31,12.5,36,0.0 +18883,61,28.5,21,0.0 +18883,15,15.5,42,0.0 +18883,50,16.25,35,0.0 +18883,59,55,44,0.0 +18883,44,19.45,26,0.0 +18883,73,15,32,0.0 +18883,34,14,24,0.0 +18883,49,20,6,0.0 +18883,74,10,44,0.0 +18883,32,32,39,0.0 +18883,70,15,38,0.0 +18883,18,62.5,7,0.0 +18883,1,18,14,0.0 +18883,72,34.8,18,0.0 +18883,66,17,23,0.0 +18883,26,31.23,32,0.0 +18883,4,22,21,0.0 +18883,48,12.75,29,0.0 +18883,67,14,32,0.0 +18883,41,9.65,18,0.0 +18883,7,30,32,0.0 +18883,39,18,20,0.0 +18883,56,38,12,0.0 +18883,63,43.9,29,0.0 +18883,36,19,2,0.0 +18884,65,21.05,34,0.0 +18884,2,19,32,0.0 +18884,74,10,25,0.0 +18884,23,9,20,0.0 +18884,68,12.5,9,0.0 +18884,19,9.2,39,0.0 +18884,52,7,48,0.0 +18884,70,15,48,0.0 +18884,50,16.25,46,0.0 +18884,13,6,33,0.0 +18884,54,7.45,28,0.0 +18884,49,20,35,0.0 +18884,31,12.5,16,0.0 +18884,4,22,42,0.0 +18884,76,18,18,0.0 +18884,42,14,35,0.0 +18884,22,21,14,0.0 +18884,77,13,37,0.0 +18884,53,32.8,24,0.0 +18884,72,34.8,6,0.0 +18884,44,19.45,8,0.0 +18884,67,14,25,0.0 +18884,20,81,21,0.0 +18884,64,33.25,26,0.0 +18884,14,23.25,39,0.0 +18884,3,10,1,0.0 +18884,46,12,17,0.0 +18884,10,31,16,0.0 +18884,26,31.23,24,0.0 +18884,5,21.35,10,0.0 +18884,56,38,39,0.0 +18884,37,26,44,0.0 +18884,40,18.4,47,0.0 +18884,57,19.5,6,0.0 +18884,1,18,22,0.0 +18884,63,43.9,3,0.0 +18884,29,123.79,29,0.0 +18884,30,25.89,44,0.0 +18884,48,12.75,2,0.0 +18884,38,263.5,39,0.0 +18884,47,9.5,39,0.0 +18884,16,17.45,2,0.0 +18885,40,18.4,32,0.0 +18885,24,4.5,50,0.0 +18885,70,15,16,0.0 +18885,28,45.6,48,0.0 +18885,50,16.25,20,0.0 +18885,25,14,41,0.0 +18885,45,9.5,17,0.0 +18885,18,62.5,32,0.0 +18885,74,10,24,0.0 +18885,11,21,40,0.0 +18885,48,12.75,36,0.0 +18885,8,40,30,0.0 +18885,5,21.35,27,0.0 +18885,37,26,33,0.0 +18885,62,49.3,30,0.0 +18885,23,9,31,0.0 +18885,4,22,22,0.0 +18885,60,34,19,0.0 +18885,12,38,10,0.0 +18885,3,10,33,0.0 +18885,32,32,24,0.0 +18885,61,28.5,41,0.0 +18885,39,18,38,0.0 +18885,68,12.5,6,0.0 +18885,42,14,6,0.0 +18885,53,32.8,20,0.0 +18885,76,18,40,0.0 +18885,30,25.89,30,0.0 +18885,66,17,20,0.0 +18885,27,43.9,10,0.0 +18885,21,10,40,0.0 +18885,73,15,4,0.0 +18885,55,24,40,0.0 +18885,54,7.45,41,0.0 +18885,72,34.8,45,0.0 +18885,75,7.75,32,0.0 +18885,22,21,39,0.0 +18885,31,12.5,13,0.0 +18885,17,39,3,0.0 +18885,43,46,28,0.0 +18885,44,19.45,27,0.0 +18885,1,18,13,0.0 +18886,52,7,10,0.0 +18886,32,32,1,0.0 +18886,54,7.45,22,0.0 +18886,29,123.79,21,0.0 +18886,67,14,25,0.0 +18886,6,25,20,0.0 +18886,30,25.89,34,0.0 +18886,25,14,26,0.0 +18886,20,81,1,0.0 +18886,23,9,28,0.0 +18886,4,22,34,0.0 +18886,58,13.25,33,0.0 +18886,56,38,41,0.0 +18886,71,21.5,48,0.0 +18886,74,10,15,0.0 +18886,77,13,9,0.0 +18886,11,21,44,0.0 +18886,43,46,31,0.0 +18886,47,9.5,45,0.0 +18886,22,21,37,0.0 +18886,33,2.5,41,0.0 +18886,73,15,33,0.0 +18886,10,31,12,0.0 +18886,18,62.5,34,0.0 +18886,12,38,10,0.0 +18886,55,24,17,0.0 +18886,72,34.8,7,0.0 +18886,21,10,43,0.0 +18886,41,9.65,27,0.0 +18886,1,18,11,0.0 +18886,65,21.05,45,0.0 +18886,64,33.25,29,0.0 +18886,44,19.45,21,0.0 +18886,53,32.8,32,0.0 +18886,63,43.9,8,0.0 +18886,2,19,13,0.0 +18886,60,34,13,0.0 +18886,50,16.25,11,0.0 +18886,70,15,6,0.0 +18886,69,36,26,0.0 +18886,59,55,42,0.0 +18886,34,14,32,0.0 +18886,28,45.6,22,0.0 +18886,37,26,34,0.0 +18886,3,10,19,0.0 +18886,7,30,9,0.0 +18886,42,14,38,0.0 +18886,16,17.45,24,0.0 +18886,61,28.5,6,0.0 +18886,5,21.35,17,0.0 +18886,13,6,34,0.0 +18886,35,18,43,0.0 +18886,14,23.25,16,0.0 +18886,17,39,19,0.0 +18886,46,12,28,0.0 +18886,45,9.5,31,0.0 +18886,15,15.5,21,0.0 +18886,19,9.2,28,0.0 +18886,75,7.75,32,0.0 +18886,27,43.9,21,0.0 +18886,62,49.3,33,0.0 +18886,76,18,33,0.0 +18886,24,4.5,29,0.0 +18886,48,12.75,7,0.0 +18886,26,31.23,4,0.0 +18886,8,40,10,0.0 +18886,36,19,18,0.0 +18886,68,12.5,38,0.0 +18886,39,18,32,0.0 +18886,40,18.4,27,0.0 +18886,9,97,16,0.0 +18886,51,53,17,0.0 +18886,31,12.5,18,0.0 +18887,36,19,49,0.0 +18887,41,9.65,42,0.0 +18887,49,20,47,0.0 +18887,44,19.45,6,0.0 +18887,5,21.35,39,0.0 +18887,17,39,28,0.0 +18887,72,34.8,31,0.0 +18887,35,18,7,0.0 +18887,48,12.75,27,0.0 +18887,77,13,45,0.0 +18887,30,25.89,8,0.0 +18887,2,19,6,0.0 +18887,3,10,40,0.0 +18887,58,13.25,22,0.0 +18887,59,55,41,0.0 +18887,23,9,35,0.0 +18887,22,21,43,0.0 +18887,12,38,50,0.0 +18887,37,26,46,0.0 +18887,67,14,8,0.0 +18887,74,10,48,0.0 +18887,69,36,1,0.0 +18887,63,43.9,21,0.0 +18888,14,23.25,7,0.0 +18888,2,19,5,0.0 +18888,54,7.45,45,0.0 +18888,40,18.4,34,0.0 +18888,74,10,5,0.0 +18888,12,38,16,0.0 +18888,61,28.5,14,0.0 +18888,58,13.25,26,0.0 +18888,28,45.6,40,0.0 +18889,51,53,50,0.0 +18889,23,9,41,0.0 +18889,11,21,44,0.0 +18889,58,13.25,37,0.0 +18889,77,13,24,0.0 +18889,19,9.2,4,0.0 +18889,50,16.25,39,0.0 +18889,34,14,42,0.0 +18889,15,15.5,9,0.0 +18889,70,15,38,0.0 +18889,69,36,3,0.0 +18889,16,17.45,22,0.0 +18889,29,123.79,37,0.0 +18889,12,38,38,0.0 +18889,20,81,32,0.0 +18889,55,24,26,0.0 +18889,30,25.89,17,0.0 +18889,3,10,34,0.0 +18889,4,22,18,0.0 +18889,57,19.5,50,0.0 +18889,2,19,37,0.0 +18889,6,25,15,0.0 +18889,44,19.45,21,0.0 +18889,26,31.23,10,0.0 +18889,73,15,22,0.0 +18889,31,12.5,4,0.0 +18889,74,10,35,0.0 +18889,63,43.9,34,0.0 +18889,54,7.45,30,0.0 +18889,40,18.4,19,0.0 +18889,60,34,50,0.0 +18889,53,32.8,38,0.0 +18889,21,10,25,0.0 +18889,56,38,1,0.0 +18889,39,18,10,0.0 +18889,43,46,11,0.0 +18889,1,18,39,0.0 +18889,72,34.8,50,0.0 +18889,18,62.5,27,0.0 +18889,17,39,29,0.0 +18889,47,9.5,40,0.0 +18889,37,26,17,0.0 +18889,61,28.5,32,0.0 +18889,27,43.9,9,0.0 +18889,59,55,10,0.0 +18889,10,31,1,0.0 +18889,8,40,30,0.0 +18889,35,18,46,0.0 +18889,65,21.05,28,0.0 +18889,66,17,19,0.0 +18890,30,25.89,32,0.0 +18890,43,46,7,0.0 +18890,69,36,25,0.0 +18890,57,19.5,32,0.0 +18890,75,7.75,6,0.0 +18890,55,24,31,0.0 +18890,1,18,30,0.0 +18890,40,18.4,7,0.0 +18890,35,18,38,0.0 +18890,74,10,9,0.0 +18890,76,18,18,0.0 +18890,45,9.5,50,0.0 +18890,51,53,7,0.0 +18890,22,21,33,0.0 +18890,18,62.5,14,0.0 +18890,67,14,40,0.0 +18890,65,21.05,46,0.0 +18890,53,32.8,21,0.0 +18890,19,9.2,12,0.0 +18890,31,12.5,21,0.0 +18890,32,32,24,0.0 +18890,48,12.75,25,0.0 +18890,12,38,10,0.0 +18890,62,49.3,42,0.0 +18890,50,16.25,4,0.0 +18890,52,7,43,0.0 +18890,33,2.5,33,0.0 +18890,58,13.25,11,0.0 +18890,44,19.45,8,0.0 +18890,66,17,39,0.0 +18890,3,10,45,0.0 +18890,63,43.9,50,0.0 +18890,5,21.35,47,0.0 +18890,36,19,40,0.0 +18890,21,10,28,0.0 +18890,61,28.5,29,0.0 +18890,73,15,8,0.0 +18890,34,14,46,0.0 +18890,23,9,15,0.0 +18890,46,12,10,0.0 +18890,41,9.65,2,0.0 +18890,16,17.45,31,0.0 +18890,64,33.25,30,0.0 +18890,38,263.5,7,0.0 +18890,9,97,25,0.0 +18890,77,13,17,0.0 +18890,59,55,9,0.0 +18890,72,34.8,2,0.0 +18890,13,6,45,0.0 +18890,7,30,39,0.0 +18890,71,21.5,20,0.0 +18890,10,31,46,0.0 +18890,25,14,22,0.0 +18890,6,25,43,0.0 +18890,11,21,23,0.0 +18890,56,38,35,0.0 +18890,49,20,29,0.0 +18890,24,4.5,24,0.0 +18890,60,34,26,0.0 +18890,42,14,43,0.0 +18890,2,19,46,0.0 +18890,4,22,36,0.0 +18890,26,31.23,41,0.0 +18890,14,23.25,21,0.0 +18890,37,26,12,0.0 +18890,20,81,26,0.0 +18890,15,15.5,8,0.0 +18890,47,9.5,45,0.0 +18890,68,12.5,25,0.0 +18890,54,7.45,20,0.0 +18890,39,18,39,0.0 +18890,8,40,25,0.0 +18890,17,39,35,0.0 +18890,27,43.9,8,0.0 +18891,57,19.5,37,0.0 +18891,58,13.25,36,0.0 +18891,77,13,36,0.0 +18891,73,15,17,0.0 +18891,37,26,33,0.0 +18891,50,16.25,9,0.0 +18891,55,24,41,0.0 +18891,25,14,34,0.0 +18891,67,14,21,0.0 +18891,1,18,14,0.0 +18891,13,6,27,0.0 +18891,62,49.3,2,0.0 +18891,39,18,2,0.0 +18891,29,123.79,27,0.0 +18891,63,43.9,28,0.0 +18891,36,19,10,0.0 +18891,26,31.23,32,0.0 +18891,47,9.5,34,0.0 +18891,11,21,17,0.0 +18891,61,28.5,10,0.0 +18891,70,15,20,0.0 +18891,69,36,7,0.0 +18891,16,17.45,30,0.0 +18891,14,23.25,41,0.0 +18891,60,34,9,0.0 +18891,34,14,50,0.0 +18891,20,81,5,0.0 +18892,32,32,18,0.0 +18892,37,26,7,0.0 +18892,65,21.05,46,0.0 +18892,14,23.25,35,0.0 +18892,25,14,41,0.0 +18892,74,10,23,0.0 +18892,20,81,23,0.0 +18892,51,53,39,0.0 +18892,26,31.23,42,0.0 +18892,24,4.5,1,0.0 +18892,77,13,21,0.0 +18892,41,9.65,11,0.0 +18892,18,62.5,23,0.0 +18892,40,18.4,17,0.0 +18892,62,49.3,16,0.0 +18892,48,12.75,17,0.0 +18892,1,18,18,0.0 +18892,43,46,38,0.0 +18892,56,38,37,0.0 +18892,49,20,20,0.0 +18892,67,14,3,0.0 +18892,60,34,41,0.0 +18892,19,9.2,31,0.0 +18892,75,7.75,14,0.0 +18892,64,33.25,23,0.0 +18892,44,19.45,48,0.0 +18892,71,21.5,45,0.0 +18892,36,19,18,0.0 +18892,66,17,38,0.0 +18892,35,18,23,0.0 +18892,69,36,12,0.0 +18892,46,12,4,0.0 +18892,54,7.45,12,0.0 +18892,12,38,1,0.0 +18892,22,21,5,0.0 +18892,13,6,2,0.0 +18892,42,14,23,0.0 +18892,73,15,5,0.0 +18892,16,17.45,40,0.0 +18892,11,21,29,0.0 +18892,4,22,8,0.0 +18892,45,9.5,34,0.0 +18892,76,18,21,0.0 +18892,34,14,47,0.0 +18892,17,39,16,0.0 +18892,29,123.79,1,0.0 +18893,63,43.9,30,0.0 +18893,33,2.5,42,0.0 +18893,43,46,8,0.0 +18893,41,9.65,5,0.0 +18893,20,81,17,0.0 +18893,56,38,5,0.0 +18893,73,15,45,0.0 +18893,61,28.5,28,0.0 +18893,24,4.5,34,0.0 +18893,57,19.5,48,0.0 +18893,15,15.5,10,0.0 +18893,71,21.5,8,0.0 +18893,3,10,10,0.0 +18893,8,40,27,0.0 +18893,55,24,10,0.0 +18893,6,25,42,0.0 +18893,52,7,6,0.0 +18893,77,13,3,0.0 +18893,69,36,4,0.0 +18893,1,18,27,0.0 +18893,54,7.45,19,0.0 +18893,72,34.8,19,0.0 +18893,4,22,42,0.0 +18893,47,9.5,5,0.0 +18893,44,19.45,1,0.0 +18893,68,12.5,3,0.0 +18893,42,14,12,0.0 +18893,62,49.3,10,0.0 +18893,7,30,48,0.0 +18893,14,23.25,22,0.0 +18893,26,31.23,10,0.0 +18893,75,7.75,19,0.0 +18893,30,25.89,17,0.0 +18893,60,34,34,0.0 +18893,9,97,15,0.0 +18893,38,263.5,34,0.0 +18893,23,9,2,0.0 +18893,65,21.05,26,0.0 +18893,2,19,45,0.0 +18893,40,18.4,35,0.0 +18893,45,9.5,34,0.0 +18893,49,20,22,0.0 +18893,17,39,26,0.0 +18893,67,14,29,0.0 +18893,32,32,15,0.0 +18893,18,62.5,14,0.0 +18893,37,26,40,0.0 +18893,36,19,44,0.0 +18893,11,21,20,0.0 +18893,31,12.5,48,0.0 +18893,66,17,41,0.0 +18893,59,55,24,0.0 +18893,12,38,41,0.0 +18893,48,12.75,23,0.0 +18893,25,14,33,0.0 +18893,29,123.79,28,0.0 +18893,5,21.35,21,0.0 +18893,58,13.25,32,0.0 +18894,68,12.5,6,0.0 +18894,26,31.23,17,0.0 +18894,22,21,39,0.0 +18894,10,31,6,0.0 +18894,8,40,21,0.0 +18894,73,15,25,0.0 +18894,74,10,7,0.0 +18894,30,25.89,34,0.0 +18894,61,28.5,28,0.0 +18894,23,9,14,0.0 +18894,24,4.5,4,0.0 +18894,21,10,12,0.0 +18894,41,9.65,44,0.0 +18894,50,16.25,7,0.0 +18894,34,14,21,0.0 +18894,36,19,18,0.0 +18894,15,15.5,36,0.0 +18894,7,30,21,0.0 +18894,12,38,19,0.0 +18894,55,24,12,0.0 +18894,52,7,18,0.0 +18894,5,21.35,16,0.0 +18895,38,263.5,49,0.0 +18895,59,55,29,0.0 +18895,41,9.65,12,0.0 +18895,33,2.5,48,0.0 +18895,67,14,8,0.0 +18895,6,25,10,0.0 +18895,25,14,40,0.0 +18895,46,12,11,0.0 +18895,7,30,24,0.0 +18895,5,21.35,46,0.0 +18895,51,53,33,0.0 +18895,63,43.9,19,0.0 +18895,66,17,28,0.0 +18895,69,36,13,0.0 +18895,77,13,32,0.0 +18895,65,21.05,29,0.0 +18895,27,43.9,32,0.0 +18895,34,14,29,0.0 +18895,14,23.25,2,0.0 +18895,58,13.25,10,0.0 +18895,24,4.5,46,0.0 +18895,18,62.5,32,0.0 +18895,23,9,45,0.0 +18895,31,12.5,27,0.0 +18895,32,32,37,0.0 +18895,44,19.45,34,0.0 +18895,36,19,14,0.0 +18895,22,21,29,0.0 +18895,21,10,1,0.0 +18895,45,9.5,15,0.0 +18895,19,9.2,20,0.0 +18895,35,18,41,0.0 +18895,40,18.4,18,0.0 +18895,43,46,26,0.0 +18895,73,15,28,0.0 +18895,56,38,45,0.0 +18895,55,24,32,0.0 +18895,48,12.75,2,0.0 +18895,39,18,46,0.0 +18895,47,9.5,36,0.0 +18895,15,15.5,45,0.0 +18895,4,22,20,0.0 +18895,75,7.75,44,0.0 +18895,12,38,2,0.0 +18895,68,12.5,4,0.0 +18895,64,33.25,17,0.0 +18895,42,14,4,0.0 +18895,10,31,19,0.0 +18895,20,81,42,0.0 +18895,1,18,12,0.0 +18895,2,19,41,0.0 +18895,26,31.23,20,0.0 +18895,61,28.5,18,0.0 +18895,70,15,18,0.0 +18895,9,97,9,0.0 +18895,28,45.6,4,0.0 +18895,13,6,44,0.0 +18895,3,10,31,0.0 +18896,6,25,13,0.0 +18896,5,21.35,6,0.0 +18896,48,12.75,27,0.0 +18896,57,19.5,30,0.0 +18896,74,10,28,0.0 +18896,58,13.25,10,0.0 +18896,67,14,29,0.0 +18896,47,9.5,16,0.0 +18896,38,263.5,49,0.0 +18896,41,9.65,35,0.0 +18896,26,31.23,32,0.0 +18896,30,25.89,6,0.0 +18896,17,39,12,0.0 +18896,75,7.75,49,0.0 +18896,19,9.2,40,0.0 +18896,72,34.8,1,0.0 +18896,65,21.05,21,0.0 +18896,63,43.9,16,0.0 +18896,46,12,1,0.0 +18896,3,10,21,0.0 +18896,22,21,27,0.0 +18896,56,38,41,0.0 +18896,59,55,37,0.0 +18896,13,6,4,0.0 +18896,8,40,48,0.0 +18896,18,62.5,49,0.0 +18896,61,28.5,33,0.0 +18896,50,16.25,42,0.0 +18896,32,32,35,0.0 +18896,21,10,15,0.0 +18896,69,36,10,0.0 +18896,4,22,38,0.0 +18896,39,18,14,0.0 +18896,25,14,11,0.0 +18896,31,12.5,24,0.0 +18896,27,43.9,32,0.0 +18896,49,20,19,0.0 +18896,20,81,17,0.0 +18896,28,45.6,14,0.0 +18896,40,18.4,25,0.0 +18896,42,14,41,0.0 +18896,37,26,45,0.0 +18896,64,33.25,28,0.0 +18896,77,13,40,0.0 +18896,33,2.5,48,0.0 +18896,16,17.45,43,0.0 +18896,12,38,33,0.0 +18896,34,14,34,0.0 +18896,7,30,34,0.0 +18896,45,9.5,19,0.0 +18896,36,19,50,0.0 +18896,23,9,19,0.0 +18896,9,97,44,0.0 +18896,70,15,43,0.0 +18896,35,18,45,0.0 +18896,24,4.5,38,0.0 +18896,1,18,4,0.0 +18896,71,21.5,5,0.0 +18896,53,32.8,3,0.0 +18896,15,15.5,2,0.0 +18896,73,15,16,0.0 +18896,62,49.3,14,0.0 +18896,60,34,1,0.0 +18896,52,7,16,0.0 +18896,55,24,44,0.0 +18896,43,46,46,0.0 +18897,23,9,10,0.0 +18897,2,19,31,0.0 +18898,47,9.5,23,0.0 +18898,28,45.6,19,0.0 +18898,45,9.5,49,0.0 +18898,34,14,45,0.0 +18898,30,25.89,8,0.0 +18898,42,14,41,0.0 +18898,44,19.45,29,0.0 +18898,71,21.5,45,0.0 +18898,63,43.9,36,0.0 +18898,60,34,5,0.0 +18898,41,9.65,39,0.0 +18898,19,9.2,10,0.0 +18898,37,26,49,0.0 +18898,77,13,22,0.0 +18898,70,15,32,0.0 +18898,13,6,44,0.0 +18898,16,17.45,45,0.0 +18898,12,38,34,0.0 +18898,11,21,30,0.0 +18898,7,30,21,0.0 +18898,74,10,26,0.0 +18898,50,16.25,38,0.0 +18898,58,13.25,26,0.0 +18898,5,21.35,45,0.0 +18898,8,40,43,0.0 +18898,40,18.4,7,0.0 +18898,31,12.5,43,0.0 +18898,4,22,38,0.0 +18898,22,21,50,0.0 +18898,57,19.5,22,0.0 +18898,2,19,1,0.0 +18898,38,263.5,32,0.0 +18898,29,123.79,49,0.0 +18898,73,15,49,0.0 +18898,21,10,21,0.0 +18898,66,17,2,0.0 +18899,17,39,30,0.0 +18899,13,6,4,0.0 +18899,9,97,10,0.0 +18899,67,14,17,0.0 +18899,23,9,23,0.0 +18899,28,45.6,38,0.0 +18899,8,40,16,0.0 +18899,25,14,12,0.0 +18899,3,10,45,0.0 +18899,37,26,41,0.0 +18899,57,19.5,34,0.0 +18899,40,18.4,41,0.0 +18899,42,14,29,0.0 +18899,43,46,2,0.0 +18899,47,9.5,49,0.0 +18899,71,21.5,2,0.0 +18899,69,36,7,0.0 +18899,24,4.5,7,0.0 +18899,44,19.45,16,0.0 +18899,34,14,33,0.0 +18899,31,12.5,45,0.0 +18899,14,23.25,14,0.0 +18899,5,21.35,50,0.0 +18899,55,24,21,0.0 +18899,6,25,34,0.0 +18899,7,30,20,0.0 +18899,70,15,32,0.0 +18899,29,123.79,5,0.0 +18899,77,13,46,0.0 +18899,36,19,49,0.0 +18899,33,2.5,31,0.0 +18899,46,12,28,0.0 +18899,48,12.75,10,0.0 +18899,50,16.25,21,0.0 +18899,74,10,22,0.0 +18899,66,17,45,0.0 +18899,16,17.45,35,0.0 +18899,62,49.3,13,0.0 +18899,38,263.5,35,0.0 +18899,58,13.25,41,0.0 +18899,41,9.65,50,0.0 +18899,26,31.23,47,0.0 +18899,68,12.5,11,0.0 +18899,59,55,40,0.0 +18899,2,19,38,0.0 +18899,61,28.5,20,0.0 +18899,30,25.89,40,0.0 +18899,39,18,23,0.0 +18899,22,21,50,0.0 +18899,1,18,29,0.0 +18899,73,15,22,0.0 +18899,21,10,9,0.0 +18899,27,43.9,11,0.0 +18899,20,81,23,0.0 +18899,72,34.8,20,0.0 +18899,64,33.25,28,0.0 +18899,10,31,35,0.0 +18899,56,38,26,0.0 +18899,12,38,20,0.0 +18899,54,7.45,33,0.0 +18899,11,21,41,0.0 +18900,2,19,49,0.0 +18900,49,20,14,0.0 +18900,70,15,49,0.0 +18900,37,26,41,0.0 +18900,25,14,5,0.0 +18900,63,43.9,38,0.0 +18900,56,38,38,0.0 +18900,14,23.25,3,0.0 +18900,11,21,25,0.0 +18900,1,18,9,0.0 +18900,65,21.05,34,0.0 +18900,10,31,1,0.0 +18900,44,19.45,22,0.0 +18900,71,21.5,14,0.0 +18900,32,32,26,0.0 +18900,8,40,37,0.0 +18900,28,45.6,45,0.0 +18900,7,30,23,0.0 +18900,40,18.4,31,0.0 +18900,15,15.5,34,0.0 +18900,59,55,8,0.0 +18900,60,34,48,0.0 +18900,4,22,25,0.0 +18900,38,263.5,7,0.0 +18900,17,39,8,0.0 +18900,69,36,18,0.0 +18900,50,16.25,34,0.0 +18900,3,10,34,0.0 +18900,27,43.9,16,0.0 +18900,16,17.45,4,0.0 +18900,77,13,4,0.0 +18900,39,18,39,0.0 +18900,30,25.89,29,0.0 +18900,34,14,46,0.0 +18900,19,9.2,45,0.0 +18900,12,38,20,0.0 +18900,48,12.75,23,0.0 +18900,42,14,2,0.0 +18900,13,6,31,0.0 +18900,45,9.5,22,0.0 +18900,51,53,1,0.0 +18900,41,9.65,45,0.0 +18900,58,13.25,4,0.0 +18900,62,49.3,36,0.0 +18900,23,9,17,0.0 +18900,53,32.8,18,0.0 +18900,76,18,2,0.0 +18900,29,123.79,31,0.0 +18900,22,21,44,0.0 +18900,36,19,41,0.0 +18900,9,97,16,0.0 +18900,72,34.8,22,0.0 +18900,68,12.5,45,0.0 +18900,43,46,16,0.0 +18900,73,15,22,0.0 +18901,74,10,4,0.0 +18901,5,21.35,18,0.0 +18901,6,25,4,0.0 +18901,61,28.5,7,0.0 +18901,65,21.05,19,0.0 +18901,14,23.25,10,0.0 +18901,44,19.45,39,0.0 +18901,2,19,38,0.0 +18901,68,12.5,45,0.0 +18901,23,9,9,0.0 +18901,56,38,43,0.0 +18901,53,32.8,16,0.0 +18901,28,45.6,27,0.0 +18901,27,43.9,14,0.0 +18901,67,14,37,0.0 +18901,42,14,5,0.0 +18901,43,46,49,0.0 +18901,70,15,40,0.0 +18901,72,34.8,14,0.0 +18901,4,22,6,0.0 +18901,41,9.65,10,0.0 +18901,55,24,22,0.0 +18901,32,32,7,0.0 +18901,60,34,41,0.0 +18901,35,18,39,0.0 +18901,58,13.25,40,0.0 +18901,63,43.9,49,0.0 +18901,21,10,25,0.0 +18901,50,16.25,23,0.0 +18901,62,49.3,26,0.0 +18901,49,20,37,0.0 +18901,52,7,26,0.0 +18901,15,15.5,4,0.0 +18901,16,17.45,35,0.0 +18901,30,25.89,16,0.0 +18901,48,12.75,32,0.0 +18901,40,18.4,37,0.0 +18901,9,97,38,0.0 +18901,17,39,35,0.0 +18901,13,6,23,0.0 +18901,66,17,38,0.0 +18901,29,123.79,50,0.0 +18902,71,21.5,34,0.0 +18902,31,12.5,6,0.0 +18902,60,34,16,0.0 +18902,45,9.5,31,0.0 +18902,21,10,47,0.0 +18902,74,10,42,0.0 +18902,77,13,6,0.0 +18902,6,25,27,0.0 +18902,9,97,44,0.0 +18902,24,4.5,50,0.0 +18902,11,21,31,0.0 +18902,27,43.9,49,0.0 +18902,57,19.5,15,0.0 +18902,53,32.8,44,0.0 +18902,18,62.5,38,0.0 +18902,8,40,6,0.0 +18902,56,38,16,0.0 +18902,41,9.65,34,0.0 +18902,63,43.9,23,0.0 +18902,55,24,35,0.0 +18902,50,16.25,21,0.0 +18902,51,53,50,0.0 +18902,10,31,16,0.0 +18902,30,25.89,30,0.0 +18902,75,7.75,31,0.0 +18902,49,20,21,0.0 +18902,40,18.4,25,0.0 +18902,34,14,9,0.0 +18902,42,14,40,0.0 +18902,16,17.45,2,0.0 +18902,35,18,41,0.0 +18902,46,12,46,0.0 +18902,29,123.79,30,0.0 +18902,33,2.5,23,0.0 +18902,23,9,20,0.0 +18902,48,12.75,41,0.0 +18902,61,28.5,49,0.0 +18902,7,30,48,0.0 +18902,13,6,49,0.0 +18902,64,33.25,12,0.0 +18902,54,7.45,47,0.0 +18902,19,9.2,39,0.0 +18902,15,15.5,5,0.0 +18902,39,18,31,0.0 +18902,43,46,2,0.0 +18903,70,15,50,0.0 +18903,13,6,28,0.0 +18903,5,21.35,37,0.0 +18903,43,46,29,0.0 +18903,69,36,43,0.0 +18903,11,21,49,0.0 +18903,64,33.25,45,0.0 +18903,27,43.9,45,0.0 +18903,23,9,43,0.0 +18904,24,4.5,36,0.0 +18904,33,2.5,33,0.0 +18904,71,21.5,34,0.0 +18904,50,16.25,27,0.0 +18904,25,14,32,0.0 +18904,70,15,24,0.0 +18904,58,13.25,22,0.0 +18904,16,17.45,3,0.0 +18904,38,263.5,49,0.0 +18904,67,14,49,0.0 +18904,74,10,47,0.0 +18904,49,20,45,0.0 +18904,6,25,35,0.0 +18904,4,22,1,0.0 +18904,21,10,37,0.0 +18904,46,12,26,0.0 +18904,29,123.79,50,0.0 +18904,55,24,44,0.0 +18904,7,30,15,0.0 +18904,9,97,35,0.0 +18904,19,9.2,41,0.0 +18904,20,81,38,0.0 +18904,44,19.45,29,0.0 +18904,64,33.25,9,0.0 +18904,40,18.4,36,0.0 +18904,59,55,14,0.0 +18904,69,36,48,0.0 +18904,77,13,45,0.0 +18904,12,38,18,0.0 +18904,75,7.75,5,0.0 +18904,37,26,18,0.0 +18904,61,28.5,33,0.0 +18904,14,23.25,49,0.0 +18904,1,18,2,0.0 +18904,41,9.65,36,0.0 +18904,68,12.5,15,0.0 +18904,10,31,46,0.0 +18904,54,7.45,9,0.0 +18904,76,18,18,0.0 +18904,30,25.89,7,0.0 +18904,57,19.5,28,0.0 +18904,53,32.8,5,0.0 +18904,66,17,36,0.0 +18904,52,7,49,0.0 +18904,8,40,30,0.0 +18904,5,21.35,47,0.0 +18904,13,6,22,0.0 +18904,34,14,42,0.0 +18904,15,15.5,2,0.0 +18904,65,21.05,19,0.0 +18904,36,19,49,0.0 +18904,2,19,44,0.0 +18904,31,12.5,38,0.0 +18904,42,14,21,0.0 +18904,56,38,14,0.0 +18904,23,9,7,0.0 +18904,48,12.75,6,0.0 +18904,11,21,14,0.0 +18904,22,21,37,0.0 +18904,35,18,3,0.0 +18904,72,34.8,41,0.0 +18904,47,9.5,17,0.0 +18904,26,31.23,48,0.0 +18904,28,45.6,5,0.0 +18904,45,9.5,7,0.0 +18904,62,49.3,19,0.0 +18904,17,39,9,0.0 +18904,27,43.9,39,0.0 +18904,63,43.9,33,0.0 +18904,43,46,39,0.0 +18904,73,15,18,0.0 +18904,51,53,27,0.0 +18905,43,46,31,0.0 +18905,55,24,39,0.0 +18905,24,4.5,4,0.0 +18905,66,17,45,0.0 +18905,64,33.25,36,0.0 +18905,75,7.75,17,0.0 +18905,9,97,47,0.0 +18905,71,21.5,6,0.0 +18905,60,34,11,0.0 +18905,25,14,44,0.0 +18905,44,19.45,12,0.0 +18905,16,17.45,43,0.0 +18905,14,23.25,33,0.0 +18905,65,21.05,23,0.0 +18905,40,18.4,32,0.0 +18905,33,2.5,44,0.0 +18905,45,9.5,13,0.0 +18905,23,9,33,0.0 +18905,61,28.5,20,0.0 +18905,12,38,2,0.0 +18905,54,7.45,6,0.0 +18905,7,30,17,0.0 +18905,20,81,8,0.0 +18905,77,13,20,0.0 +18905,50,16.25,38,0.0 +18905,8,40,17,0.0 +18905,41,9.65,41,0.0 +18905,10,31,30,0.0 +18905,32,32,47,0.0 +18905,68,12.5,24,0.0 +18905,56,38,27,0.0 +18905,48,12.75,15,0.0 +18905,42,14,32,0.0 +18905,27,43.9,42,0.0 +18905,29,123.79,44,0.0 +18905,18,62.5,3,0.0 +18905,3,10,29,0.0 +18905,26,31.23,43,0.0 +18905,13,6,8,0.0 +18905,59,55,36,0.0 +18905,6,25,34,0.0 +18905,31,12.5,47,0.0 +18905,28,45.6,29,0.0 +18905,63,43.9,24,0.0 +18905,4,22,43,0.0 +18905,52,7,14,0.0 +18905,37,26,29,0.0 +18905,76,18,14,0.0 +18905,35,18,16,0.0 +18905,57,19.5,15,0.0 +18905,46,12,30,0.0 +18905,39,18,6,0.0 +18905,1,18,44,0.0 +18905,30,25.89,19,0.0 +18905,2,19,39,0.0 +18905,11,21,7,0.0 +18905,53,32.8,44,0.0 +18905,51,53,38,0.0 +18905,17,39,50,0.0 +18905,15,15.5,34,0.0 +18905,47,9.5,13,0.0 +18905,21,10,7,0.0 +18905,74,10,4,0.0 +18905,49,20,41,0.0 +18905,36,19,50,0.0 +18905,19,9.2,45,0.0 +18905,73,15,6,0.0 +18905,34,14,2,0.0 +18905,70,15,35,0.0 +18905,22,21,36,0.0 +18906,60,34,24,0.0 +18906,37,26,10,0.0 +18906,14,23.25,14,0.0 +18907,72,34.8,13,0.0 +18907,14,23.25,36,0.0 +18907,27,43.9,12,0.0 +18907,9,97,33,0.0 +18907,73,15,18,0.0 +18907,70,15,39,0.0 +18907,29,123.79,18,0.0 +18907,11,21,23,0.0 +18907,60,34,6,0.0 +18907,26,31.23,10,0.0 +18907,28,45.6,40,0.0 +18907,53,32.8,44,0.0 +18907,8,40,1,0.0 +18907,44,19.45,11,0.0 +18907,64,33.25,27,0.0 +18907,57,19.5,12,0.0 +18907,38,263.5,37,0.0 +18907,31,12.5,27,0.0 +18907,7,30,20,0.0 +18907,49,20,33,0.0 +18907,41,9.65,35,0.0 +18907,22,21,20,0.0 +18907,55,24,42,0.0 +18907,71,21.5,15,0.0 +18907,75,7.75,13,0.0 +18907,65,21.05,40,0.0 +18907,59,55,30,0.0 +18907,58,13.25,29,0.0 +18907,35,18,16,0.0 +18907,24,4.5,8,0.0 +18907,10,31,48,0.0 +18907,63,43.9,18,0.0 +18907,30,25.89,19,0.0 +18907,16,17.45,24,0.0 +18907,15,15.5,22,0.0 +18907,45,9.5,17,0.0 +18907,36,19,25,0.0 +18907,3,10,4,0.0 +18907,37,26,2,0.0 +18907,21,10,4,0.0 +18907,4,22,5,0.0 +18907,2,19,5,0.0 +18907,56,38,11,0.0 +18907,46,12,15,0.0 +18907,18,62.5,47,0.0 +18907,13,6,48,0.0 +18907,48,12.75,47,0.0 +18907,52,7,37,0.0 +18907,1,18,42,0.0 +18907,19,9.2,31,0.0 +18907,54,7.45,43,0.0 +18907,17,39,30,0.0 +18907,77,13,26,0.0 +18907,68,12.5,47,0.0 +18907,23,9,25,0.0 +18907,74,10,26,0.0 +18907,40,18.4,39,0.0 +18907,62,49.3,35,0.0 +18907,25,14,19,0.0 +18907,43,46,23,0.0 +18907,6,25,20,0.0 +18907,66,17,36,0.0 +18908,72,34.8,6,0.0 +18908,62,49.3,5,0.0 +18908,54,7.45,23,0.0 +18909,77,13,6,0.0 +18909,69,36,9,0.0 +18909,66,17,10,0.0 +18909,57,19.5,3,0.0 +18909,13,6,35,0.0 +18909,7,30,28,0.0 +18909,52,7,48,0.0 +18909,43,46,7,0.0 +18909,3,10,16,0.0 +18909,11,21,4,0.0 +18909,27,43.9,41,0.0 +18909,20,81,30,0.0 +18909,25,14,19,0.0 +18909,24,4.5,41,0.0 +18909,47,9.5,40,0.0 +18909,36,19,35,0.0 +18909,59,55,20,0.0 +18909,64,33.25,5,0.0 +18909,49,20,37,0.0 +18909,22,21,8,0.0 +18909,71,21.5,17,0.0 +18909,60,34,42,0.0 +18909,23,9,19,0.0 +18909,28,45.6,40,0.0 +18909,18,62.5,17,0.0 +18909,75,7.75,2,0.0 +18909,21,10,13,0.0 +18909,40,18.4,24,0.0 +18909,10,31,44,0.0 +18909,15,15.5,22,0.0 +18909,42,14,11,0.0 +18909,12,38,5,0.0 +18910,45,9.5,6,0.0 +18910,35,18,40,0.0 +18910,7,30,40,0.0 +18910,36,19,6,0.0 +18910,42,14,26,0.0 +18910,16,17.45,18,0.0 +18910,64,33.25,38,0.0 +18910,14,23.25,40,0.0 +18910,63,43.9,33,0.0 +18910,68,12.5,42,0.0 +18910,9,97,38,0.0 +18910,47,9.5,34,0.0 +18910,70,15,20,0.0 +18910,59,55,17,0.0 +18910,75,7.75,8,0.0 +18910,4,22,31,0.0 +18910,23,9,16,0.0 +18910,74,10,23,0.0 +18910,8,40,7,0.0 +18910,65,21.05,34,0.0 +18910,66,17,16,0.0 +18910,52,7,10,0.0 +18910,44,19.45,50,0.0 +18910,19,9.2,43,0.0 +18910,57,19.5,29,0.0 +18910,33,2.5,11,0.0 +18910,11,21,47,0.0 +18910,46,12,46,0.0 +18910,62,49.3,37,0.0 +18910,48,12.75,12,0.0 +18910,30,25.89,24,0.0 +18910,25,14,33,0.0 +18910,60,34,41,0.0 +18910,17,39,21,0.0 +18910,55,24,29,0.0 +18910,54,7.45,37,0.0 +18910,15,15.5,11,0.0 +18910,29,123.79,37,0.0 +18910,6,25,38,0.0 +18910,5,21.35,49,0.0 +18910,31,12.5,9,0.0 +18910,71,21.5,19,0.0 +18910,39,18,4,0.0 +18910,40,18.4,7,0.0 +18910,72,34.8,42,0.0 +18910,43,46,21,0.0 +18910,24,4.5,9,0.0 +18910,58,13.25,31,0.0 +18910,77,13,22,0.0 +18910,41,9.65,8,0.0 +18910,1,18,18,0.0 +18911,29,123.79,47,0.0 +18911,18,62.5,14,0.0 +18911,13,6,1,0.0 +18911,59,55,40,0.0 +18911,24,4.5,49,0.0 +18911,70,15,34,0.0 +18911,76,18,48,0.0 +18911,19,9.2,11,0.0 +18911,57,19.5,24,0.0 +18911,9,97,28,0.0 +18911,50,16.25,48,0.0 +18911,66,17,30,0.0 +18911,11,21,8,0.0 +18911,12,38,38,0.0 +18911,31,12.5,30,0.0 +18911,54,7.45,20,0.0 +18911,21,10,39,0.0 +18911,69,36,46,0.0 +18911,6,25,36,0.0 +18911,26,31.23,34,0.0 +18911,28,45.6,46,0.0 +18911,2,19,21,0.0 +18911,41,9.65,43,0.0 +18911,62,49.3,12,0.0 +18911,77,13,20,0.0 +18911,64,33.25,22,0.0 +18911,60,34,21,0.0 +18911,40,18.4,45,0.0 +18911,16,17.45,14,0.0 +18911,7,30,42,0.0 +18911,36,19,37,0.0 +18911,53,32.8,33,0.0 +18911,49,20,43,0.0 +18911,1,18,1,0.0 +18911,10,31,33,0.0 +18911,35,18,48,0.0 +18911,8,40,15,0.0 +18911,48,12.75,14,0.0 +18911,34,14,31,0.0 +18912,28,45.6,26,0.0 +18912,62,49.3,12,0.0 +18912,11,21,37,0.0 +18912,14,23.25,39,0.0 +18912,6,25,45,0.0 +18912,59,55,23,0.0 +18912,40,18.4,7,0.0 +18912,49,20,15,0.0 +18912,55,24,39,0.0 +18912,58,13.25,8,0.0 +18912,9,97,8,0.0 +18912,36,19,27,0.0 +18912,12,38,8,0.0 +18912,46,12,30,0.0 +18912,26,31.23,24,0.0 +18912,29,123.79,33,0.0 +18912,17,39,47,0.0 +18912,38,263.5,36,0.0 +18912,69,36,7,0.0 +18912,43,46,32,0.0 +18912,54,7.45,48,0.0 +18912,57,19.5,35,0.0 +18912,41,9.65,44,0.0 +18912,33,2.5,38,0.0 +18912,1,18,14,0.0 +18912,3,10,43,0.0 +18912,47,9.5,49,0.0 +18912,4,22,15,0.0 +18912,23,9,24,0.0 +18912,8,40,47,0.0 +18912,37,26,9,0.0 +18912,70,15,20,0.0 +18912,72,34.8,32,0.0 +18912,22,21,31,0.0 +18912,73,15,32,0.0 +18912,75,7.75,33,0.0 +18912,39,18,38,0.0 +18912,65,21.05,42,0.0 +18912,74,10,9,0.0 +18912,21,10,43,0.0 +18912,24,4.5,50,0.0 +18912,77,13,7,0.0 +18912,31,12.5,22,0.0 +18912,16,17.45,41,0.0 +18912,15,15.5,5,0.0 +18912,27,43.9,20,0.0 +18912,51,53,14,0.0 +18912,10,31,6,0.0 +18912,18,62.5,23,0.0 +18912,71,21.5,16,0.0 +18912,52,7,47,0.0 +18912,20,81,26,0.0 +18912,48,12.75,12,0.0 +18912,42,14,47,0.0 +18912,13,6,35,0.0 +18912,53,32.8,31,0.0 +18912,34,14,2,0.0 +18912,2,19,30,0.0 +18912,56,38,16,0.0 +18912,5,21.35,1,0.0 +18913,39,18,2,0.0 +18913,8,40,9,0.0 +18913,13,6,41,0.0 +18913,9,97,42,0.0 +18913,26,31.23,24,0.0 +18913,11,21,16,0.0 +18913,49,20,5,0.0 +18913,28,45.6,20,0.0 +18913,66,17,37,0.0 +18913,2,19,3,0.0 +18913,46,12,26,0.0 +18913,44,19.45,25,0.0 +18913,5,21.35,33,0.0 +18913,40,18.4,49,0.0 +18913,20,81,22,0.0 +18913,22,21,15,0.0 +18913,53,32.8,18,0.0 +18913,24,4.5,13,0.0 +18913,3,10,44,0.0 +18913,51,53,14,0.0 +18913,62,49.3,42,0.0 +18913,30,25.89,3,0.0 +18913,23,9,17,0.0 +18913,72,34.8,38,0.0 +18913,50,16.25,50,0.0 +18913,36,19,49,0.0 +18913,10,31,14,0.0 +18913,7,30,17,0.0 +18913,38,263.5,1,0.0 +18913,76,18,40,0.0 +18913,45,9.5,49,0.0 +18913,32,32,37,0.0 +18913,18,62.5,23,0.0 +18913,1,18,16,0.0 +18913,71,21.5,29,0.0 +18913,15,15.5,17,0.0 +18913,68,12.5,3,0.0 +18913,41,9.65,37,0.0 +18913,57,19.5,13,0.0 +18913,75,7.75,32,0.0 +18913,74,10,26,0.0 +18913,35,18,34,0.0 +18913,73,15,45,0.0 +18913,6,25,44,0.0 +18913,37,26,46,0.0 +18913,65,21.05,16,0.0 +18913,29,123.79,10,0.0 +18913,31,12.5,47,0.0 +18913,60,34,26,0.0 +18913,56,38,29,0.0 +18913,77,13,45,0.0 +18913,42,14,24,0.0 +18913,69,36,21,0.0 +18913,4,22,19,0.0 +18913,70,15,39,0.0 +18913,16,17.45,5,0.0 +18913,43,46,22,0.0 +18913,47,9.5,17,0.0 +18913,34,14,22,0.0 +18913,64,33.25,34,0.0 +18913,17,39,45,0.0 +18913,48,12.75,1,0.0 +18913,19,9.2,2,0.0 +18913,54,7.45,29,0.0 +18913,25,14,27,0.0 +18914,28,45.6,34,0.0 +18914,48,12.75,29,0.0 +18914,69,36,13,0.0 +18914,9,97,1,0.0 +18914,40,18.4,50,0.0 +18914,34,14,18,0.0 +18914,54,7.45,6,0.0 +18914,6,25,50,0.0 +18914,47,9.5,24,0.0 +18914,68,12.5,10,0.0 +18914,55,24,29,0.0 +18914,63,43.9,43,0.0 +18914,25,14,49,0.0 +18914,29,123.79,31,0.0 +18914,24,4.5,34,0.0 +18914,65,21.05,2,0.0 +18914,73,15,32,0.0 +18914,56,38,34,0.0 +18914,58,13.25,5,0.0 +18914,14,23.25,22,0.0 +18914,43,46,17,0.0 +18914,19,9.2,21,0.0 +18914,51,53,47,0.0 +18914,32,32,4,0.0 +18915,2,19,24,0.0 +18915,3,10,48,0.0 +18915,47,9.5,36,0.0 +18915,39,18,45,0.0 +18915,23,9,24,0.0 +18915,5,21.35,48,0.0 +18915,53,32.8,20,0.0 +18915,31,12.5,24,0.0 +18915,63,43.9,9,0.0 +18915,45,9.5,23,0.0 +18915,46,12,15,0.0 +18915,67,14,24,0.0 +18915,54,7.45,46,0.0 +18915,21,10,9,0.0 +18915,44,19.45,6,0.0 +18915,37,26,50,0.0 +18915,25,14,21,0.0 +18915,35,18,26,0.0 +18915,38,263.5,41,0.0 +18915,68,12.5,19,0.0 +18915,72,34.8,39,0.0 +18915,66,17,1,0.0 +18915,30,25.89,31,0.0 +18915,62,49.3,23,0.0 +18915,20,81,31,0.0 +18915,50,16.25,12,0.0 +18915,12,38,16,0.0 +18915,43,46,18,0.0 +18915,6,25,11,0.0 +18915,17,39,47,0.0 +18915,52,7,2,0.0 +18915,7,30,9,0.0 +18915,10,31,40,0.0 +18915,59,55,12,0.0 +18915,65,21.05,16,0.0 +18915,61,28.5,20,0.0 +18915,56,38,48,0.0 +18915,8,40,35,0.0 +18915,48,12.75,33,0.0 +18915,28,45.6,44,0.0 +18915,34,14,37,0.0 +18915,51,53,13,0.0 +18915,33,2.5,2,0.0 +18915,22,21,38,0.0 +18915,73,15,1,0.0 +18915,24,4.5,21,0.0 +18915,9,97,39,0.0 +18915,32,32,26,0.0 +18915,57,19.5,45,0.0 +18915,77,13,30,0.0 +18915,41,9.65,3,0.0 +18915,55,24,40,0.0 +18915,15,15.5,4,0.0 +18915,16,17.45,38,0.0 +18915,27,43.9,22,0.0 +18915,29,123.79,18,0.0 +18915,69,36,20,0.0 +18915,58,13.25,26,0.0 +18915,60,34,4,0.0 +18915,13,6,20,0.0 +18915,36,19,1,0.0 +18915,40,18.4,46,0.0 +18915,70,15,31,0.0 +18916,51,53,45,0.0 +18916,30,25.89,1,0.0 +18916,15,15.5,9,0.0 +18916,23,9,42,0.0 +18916,11,21,49,0.0 +18916,32,32,44,0.0 +18916,40,18.4,2,0.0 +18916,44,19.45,10,0.0 +18916,10,31,34,0.0 +18916,7,30,12,0.0 +18916,49,20,24,0.0 +18916,54,7.45,1,0.0 +18916,74,10,16,0.0 +18916,58,13.25,38,0.0 +18916,62,49.3,50,0.0 +18916,41,9.65,5,0.0 +18916,22,21,47,0.0 +18916,57,19.5,1,0.0 +18916,68,12.5,37,0.0 +18916,9,97,12,0.0 +18916,48,12.75,9,0.0 +18916,66,17,38,0.0 +18916,75,7.75,12,0.0 +18916,39,18,28,0.0 +18916,33,2.5,39,0.0 +18916,14,23.25,15,0.0 +18916,52,7,18,0.0 +18916,31,12.5,43,0.0 +18916,29,123.79,22,0.0 +18916,77,13,21,0.0 +18916,5,21.35,16,0.0 +18916,70,15,33,0.0 +18916,8,40,34,0.0 +18916,76,18,12,0.0 +18916,4,22,45,0.0 +18916,26,31.23,9,0.0 +18916,60,34,5,0.0 +18916,42,14,21,0.0 +18916,16,17.45,24,0.0 +18916,43,46,21,0.0 +18916,67,14,35,0.0 +18916,61,28.5,47,0.0 +18916,55,24,21,0.0 +18916,59,55,1,0.0 +18916,28,45.6,29,0.0 +18916,21,10,2,0.0 +18916,18,62.5,23,0.0 +18916,34,14,12,0.0 +18916,65,21.05,19,0.0 +18916,47,9.5,2,0.0 +18916,38,263.5,10,0.0 +18916,24,4.5,29,0.0 +18916,13,6,17,0.0 +18916,53,32.8,19,0.0 +18916,27,43.9,7,0.0 +18916,63,43.9,41,0.0 +18916,56,38,26,0.0 +18916,17,39,34,0.0 +18916,12,38,27,0.0 +18916,25,14,42,0.0 +18916,37,26,35,0.0 +18916,50,16.25,3,0.0 +18916,72,34.8,16,0.0 +18916,2,19,19,0.0 +18917,19,9.2,31,0.0 +18917,41,9.65,17,0.0 +18917,46,12,8,0.0 +18917,65,21.05,26,0.0 +18917,66,17,8,0.0 +18917,39,18,5,0.0 +18918,45,9.5,41,0.0 +18918,39,18,21,0.0 +18918,59,55,49,0.0 +18918,76,18,32,0.0 +18918,19,9.2,10,0.0 +18918,56,38,10,0.0 +18918,16,17.45,43,0.0 +18918,33,2.5,41,0.0 +18919,55,24,10,0.0 +18919,68,12.5,21,0.0 +18919,54,7.45,42,0.0 +18919,33,2.5,27,0.0 +18919,50,16.25,25,0.0 +18919,76,18,9,0.0 +18919,27,43.9,5,0.0 +18919,28,45.6,10,0.0 +18919,49,20,35,0.0 +18919,1,18,34,0.0 +18919,59,55,12,0.0 +18919,24,4.5,23,0.0 +18919,5,21.35,16,0.0 +18919,58,13.25,23,0.0 +18919,51,53,2,0.0 +18920,35,18,44,0.0 +18920,46,12,10,0.0 +18920,76,18,48,0.0 +18920,68,12.5,31,0.0 +18920,71,21.5,45,0.0 +18920,14,23.25,16,0.0 +18920,47,9.5,32,0.0 +18920,54,7.45,2,0.0 +18920,39,18,7,0.0 +18920,37,26,37,0.0 +18920,22,21,6,0.0 +18920,65,21.05,21,0.0 +18920,1,18,20,0.0 +18920,13,6,49,0.0 +18920,27,43.9,37,0.0 +18920,57,19.5,35,0.0 +18920,50,16.25,42,0.0 +18920,5,21.35,11,0.0 +18920,69,36,48,0.0 +18920,44,19.45,43,0.0 +18920,8,40,41,0.0 +18920,19,9.2,9,0.0 +18920,18,62.5,38,0.0 +18920,42,14,19,0.0 +18920,11,21,41,0.0 +18920,12,38,41,0.0 +18920,10,31,25,0.0 +18920,25,14,2,0.0 +18920,49,20,38,0.0 +18920,6,25,44,0.0 +18920,15,15.5,20,0.0 +18920,16,17.45,7,0.0 +18920,67,14,10,0.0 +18920,9,97,36,0.0 +18920,2,19,6,0.0 +18920,70,15,15,0.0 +18921,6,25,26,0.0 +18921,36,19,16,0.0 +18921,28,45.6,10,0.0 +18921,18,62.5,26,0.0 +18921,32,32,13,0.0 +18921,51,53,30,0.0 +18921,66,17,38,0.0 +18921,54,7.45,22,0.0 +18922,10,31,30,0.0 +18922,71,21.5,34,0.0 +18922,25,14,24,0.0 +18922,2,19,29,0.0 +18922,36,19,40,0.0 +18922,18,62.5,14,0.0 +18922,75,7.75,36,0.0 +18922,40,18.4,16,0.0 +18922,52,7,31,0.0 +18922,33,2.5,29,0.0 +18922,39,18,18,0.0 +18922,49,20,49,0.0 +18922,72,34.8,47,0.0 +18922,4,22,30,0.0 +18922,57,19.5,26,0.0 +18922,17,39,37,0.0 +18922,3,10,47,0.0 +18922,66,17,19,0.0 +18922,29,123.79,10,0.0 +18922,24,4.5,47,0.0 +18922,13,6,43,0.0 +18922,58,13.25,9,0.0 +18922,50,16.25,10,0.0 +18922,46,12,10,0.0 +18922,28,45.6,8,0.0 +18922,16,17.45,23,0.0 +18922,21,10,22,0.0 +18922,61,28.5,41,0.0 +18922,42,14,30,0.0 +18922,65,21.05,45,0.0 +18922,44,19.45,39,0.0 +18922,63,43.9,43,0.0 +18922,55,24,27,0.0 +18922,67,14,8,0.0 +18922,9,97,45,0.0 +18922,70,15,7,0.0 +18922,11,21,41,0.0 +18922,54,7.45,22,0.0 +18922,48,12.75,24,0.0 +18922,77,13,10,0.0 +18922,47,9.5,8,0.0 +18922,56,38,6,0.0 +18922,68,12.5,21,0.0 +18922,12,38,16,0.0 +18922,14,23.25,29,0.0 +18922,59,55,46,0.0 +18922,6,25,6,0.0 +18922,20,81,47,0.0 +18922,8,40,36,0.0 +18922,19,9.2,39,0.0 +18922,15,15.5,36,0.0 +18922,41,9.65,20,0.0 +18922,76,18,6,0.0 +18922,1,18,14,0.0 +18922,60,34,30,0.0 +18922,35,18,39,0.0 +18922,73,15,23,0.0 +18922,45,9.5,46,0.0 +18922,37,26,43,0.0 +18922,5,21.35,33,0.0 +18922,30,25.89,39,0.0 +18922,74,10,8,0.0 +18922,22,21,14,0.0 +18922,32,32,49,0.0 +18922,7,30,45,0.0 +18922,69,36,23,0.0 +18922,38,263.5,17,0.0 +18922,51,53,42,0.0 +18922,27,43.9,2,0.0 +18923,23,9,27,0.0 +18923,43,46,19,0.0 +18923,17,39,34,0.0 +18923,77,13,20,0.0 +18923,42,14,7,0.0 +18923,74,10,41,0.0 +18923,24,4.5,46,0.0 +18923,70,15,25,0.0 +18923,7,30,25,0.0 +18923,28,45.6,23,0.0 +18923,65,21.05,42,0.0 +18923,73,15,39,0.0 +18923,41,9.65,49,0.0 +18923,12,38,28,0.0 +18923,76,18,5,0.0 +18923,33,2.5,34,0.0 +18923,5,21.35,20,0.0 +18923,71,21.5,29,0.0 +18923,53,32.8,3,0.0 +18923,31,12.5,45,0.0 +18923,37,26,31,0.0 +18923,67,14,22,0.0 +18923,8,40,4,0.0 +18923,49,20,30,0.0 +18923,11,21,44,0.0 +18923,27,43.9,28,0.0 +18923,6,25,7,0.0 +18923,59,55,18,0.0 +18923,66,17,4,0.0 +18923,30,25.89,36,0.0 +18923,57,19.5,47,0.0 +18923,45,9.5,5,0.0 +18923,72,34.8,8,0.0 +18923,54,7.45,25,0.0 +18923,16,17.45,6,0.0 +18923,2,19,38,0.0 +18923,13,6,10,0.0 +18923,10,31,33,0.0 +18923,38,263.5,47,0.0 +18923,60,34,49,0.0 +18923,55,24,19,0.0 +18923,39,18,23,0.0 +18923,46,12,47,0.0 +18923,58,13.25,44,0.0 +18923,51,53,13,0.0 +18923,69,36,12,0.0 +18923,32,32,27,0.0 +18923,19,9.2,18,0.0 +18923,48,12.75,48,0.0 +18923,26,31.23,14,0.0 +18923,21,10,43,0.0 +18923,15,15.5,24,0.0 +18923,35,18,4,0.0 +18923,44,19.45,20,0.0 +18923,75,7.75,47,0.0 +18924,43,46,5,0.0 +18924,63,43.9,30,0.0 +18924,37,26,47,0.0 +18924,58,13.25,11,0.0 +18924,33,2.5,35,0.0 +18924,52,7,8,0.0 +18924,36,19,34,0.0 +18924,26,31.23,20,0.0 +18924,60,34,16,0.0 +18924,32,32,44,0.0 +18924,11,21,45,0.0 +18924,46,12,36,0.0 +18924,65,21.05,34,0.0 +18924,20,81,20,0.0 +18924,76,18,10,0.0 +18924,50,16.25,17,0.0 +18924,3,10,42,0.0 +18924,31,12.5,5,0.0 +18924,66,17,17,0.0 +18924,14,23.25,42,0.0 +18924,71,21.5,49,0.0 +18924,44,19.45,9,0.0 +18924,13,6,49,0.0 +18924,74,10,50,0.0 +18924,27,43.9,40,0.0 +18924,22,21,21,0.0 +18924,18,62.5,30,0.0 +18924,1,18,31,0.0 +18924,30,25.89,48,0.0 +18924,54,7.45,7,0.0 +18924,7,30,41,0.0 +18924,35,18,31,0.0 +18924,5,21.35,47,0.0 +18924,28,45.6,24,0.0 +18924,55,24,14,0.0 +18924,25,14,28,0.0 +18924,67,14,9,0.0 +18924,38,263.5,44,0.0 +18924,61,28.5,22,0.0 +18924,21,10,43,0.0 +18924,24,4.5,48,0.0 +18924,62,49.3,28,0.0 +18924,40,18.4,46,0.0 +18924,51,53,34,0.0 +18924,70,15,3,0.0 +18924,75,7.75,14,0.0 +18924,4,22,8,0.0 +18924,59,55,46,0.0 +18924,41,9.65,26,0.0 +18924,57,19.5,8,0.0 +18924,19,9.2,13,0.0 +18924,34,14,18,0.0 +18924,6,25,14,0.0 +18924,56,38,8,0.0 +18924,16,17.45,6,0.0 +18924,48,12.75,28,0.0 +18924,69,36,17,0.0 +18924,12,38,17,0.0 +18924,15,15.5,1,0.0 +18924,29,123.79,19,0.0 +18924,45,9.5,3,0.0 +18924,10,31,37,0.0 +18924,72,34.8,15,0.0 +18924,9,97,39,0.0 +18924,42,14,41,0.0 +18924,77,13,38,0.0 +18924,39,18,30,0.0 +18924,8,40,1,0.0 +18924,17,39,15,0.0 +18925,16,17.45,1,0.0 +18925,31,12.5,14,0.0 +18925,59,55,32,0.0 +18925,44,19.45,16,0.0 +18925,25,14,30,0.0 +18925,23,9,41,0.0 +18925,69,36,23,0.0 +18925,63,43.9,13,0.0 +18925,66,17,14,0.0 +18925,26,31.23,38,0.0 +18925,30,25.89,45,0.0 +18925,11,21,37,0.0 +18925,21,10,47,0.0 +18925,12,38,41,0.0 +18925,40,18.4,26,0.0 +18925,56,38,46,0.0 +18925,75,7.75,29,0.0 +18925,1,18,23,0.0 +18925,45,9.5,18,0.0 +18925,51,53,33,0.0 +18925,43,46,11,0.0 +18925,62,49.3,14,0.0 +18925,7,30,21,0.0 +18925,28,45.6,44,0.0 +18925,22,21,29,0.0 +18925,35,18,28,0.0 +18926,63,43.9,44,0.0 +18926,42,14,47,0.0 +18926,19,9.2,28,0.0 +18926,65,21.05,31,0.0 +18926,37,26,36,0.0 +18926,21,10,21,0.0 +18926,20,81,19,0.0 +18926,53,32.8,9,0.0 +18926,69,36,40,0.0 +18926,3,10,45,0.0 +18926,46,12,25,0.0 +18926,15,15.5,2,0.0 +18926,72,34.8,5,0.0 +18926,38,263.5,25,0.0 +18926,7,30,41,0.0 +18926,23,9,40,0.0 +18926,11,21,36,0.0 +18926,47,9.5,11,0.0 +18926,34,14,4,0.0 +18926,26,31.23,6,0.0 +18926,74,10,19,0.0 +18926,9,97,35,0.0 +18926,28,45.6,28,0.0 +18926,27,43.9,27,0.0 +18926,75,7.75,14,0.0 +18926,24,4.5,25,0.0 +18927,43,46,49,0.0 +18927,66,17,25,0.0 +18927,77,13,24,0.0 +18927,53,32.8,5,0.0 +18927,65,21.05,28,0.0 +18927,31,12.5,30,0.0 +18927,61,28.5,44,0.0 +18927,27,43.9,37,0.0 +18927,2,19,3,0.0 +18927,21,10,8,0.0 +18927,49,20,23,0.0 +18927,23,9,6,0.0 +18927,24,4.5,28,0.0 +18927,3,10,41,0.0 +18927,38,263.5,14,0.0 +18927,41,9.65,10,0.0 +18927,18,62.5,27,0.0 +18927,48,12.75,27,0.0 +18927,29,123.79,34,0.0 +18927,64,33.25,37,0.0 +18927,57,19.5,23,0.0 +18927,22,21,45,0.0 +18927,72,34.8,12,0.0 +18927,36,19,40,0.0 +18927,55,24,37,0.0 +18927,30,25.89,22,0.0 +18927,26,31.23,6,0.0 +18927,17,39,7,0.0 +18927,32,32,21,0.0 +18927,47,9.5,34,0.0 +18927,25,14,16,0.0 +18927,75,7.75,14,0.0 +18927,20,81,49,0.0 +18927,39,18,7,0.0 +18927,35,18,39,0.0 +18927,54,7.45,49,0.0 +18927,7,30,16,0.0 +18927,45,9.5,38,0.0 +18927,4,22,8,0.0 +18927,46,12,16,0.0 +18927,40,18.4,49,0.0 +18927,50,16.25,12,0.0 +18927,37,26,24,0.0 +18927,10,31,9,0.0 +18927,51,53,10,0.0 +18927,11,21,5,0.0 +18927,14,23.25,22,0.0 +18927,52,7,35,0.0 +18927,69,36,42,0.0 +18927,74,10,29,0.0 +18927,44,19.45,49,0.0 +18927,5,21.35,49,0.0 +18927,28,45.6,8,0.0 +18927,56,38,20,0.0 +18927,58,13.25,49,0.0 +18927,15,15.5,20,0.0 +18927,1,18,49,0.0 +18927,19,9.2,8,0.0 +18927,62,49.3,12,0.0 +18927,63,43.9,15,0.0 +18927,8,40,18,0.0 +18928,48,12.75,40,0.0 +18928,2,19,34,0.0 +18928,72,34.8,28,0.0 +18928,68,12.5,42,0.0 +18928,10,31,47,0.0 +18928,13,6,29,0.0 +18928,47,9.5,26,0.0 +18928,59,55,46,0.0 +18928,37,26,36,0.0 +18928,57,19.5,38,0.0 +18928,66,17,11,0.0 +18928,69,36,26,0.0 +18928,33,2.5,30,0.0 +18928,19,9.2,24,0.0 +18928,25,14,3,0.0 +18928,46,12,21,0.0 +18928,1,18,39,0.0 +18928,54,7.45,8,0.0 +18928,65,21.05,32,0.0 +18928,11,21,37,0.0 +18928,61,28.5,37,0.0 +18928,53,32.8,41,0.0 +18928,36,19,2,0.0 +18928,49,20,16,0.0 +18928,28,45.6,45,0.0 +18928,51,53,43,0.0 +18928,15,15.5,10,0.0 +18928,24,4.5,2,0.0 +18928,50,16.25,21,0.0 +18928,14,23.25,50,0.0 +18928,18,62.5,44,0.0 +18928,56,38,9,0.0 +18928,8,40,43,0.0 +18928,55,24,24,0.0 +18928,58,13.25,12,0.0 +18928,5,21.35,11,0.0 +18928,27,43.9,9,0.0 +18928,17,39,2,0.0 +18928,64,33.25,18,0.0 +18928,32,32,43,0.0 +18928,6,25,4,0.0 +18928,34,14,29,0.0 +18928,75,7.75,29,0.0 +18928,26,31.23,26,0.0 +18928,71,21.5,30,0.0 +18928,44,19.45,36,0.0 +18928,30,25.89,15,0.0 +18928,41,9.65,40,0.0 +18928,31,12.5,24,0.0 +18928,42,14,45,0.0 +18928,4,22,20,0.0 +18928,62,49.3,32,0.0 +18928,43,46,31,0.0 +18928,74,10,48,0.0 +18928,7,30,22,0.0 +18928,16,17.45,31,0.0 +18928,29,123.79,27,0.0 +18928,38,263.5,44,0.0 +18928,45,9.5,14,0.0 +18928,20,81,8,0.0 +18928,77,13,1,0.0 +18928,73,15,27,0.0 +18928,3,10,13,0.0 +18928,70,15,37,0.0 +18928,21,10,14,0.0 +18928,67,14,36,0.0 +18928,9,97,50,0.0 +18928,23,9,31,0.0 +18928,39,18,50,0.0 +18928,35,18,31,0.0 +18928,76,18,8,0.0 +18928,40,18.4,5,0.0 +18928,52,7,40,0.0 +18928,12,38,38,0.0 +18928,22,21,33,0.0 +18929,41,9.65,37,0.0 +18929,18,62.5,26,0.0 +18929,71,21.5,28,0.0 +18929,12,38,12,0.0 +18929,19,9.2,39,0.0 +18929,20,81,23,0.0 +18929,49,20,38,0.0 +18929,39,18,30,0.0 +18929,59,55,3,0.0 +18929,36,19,47,0.0 +18929,48,12.75,28,0.0 +18929,38,263.5,50,0.0 +18929,29,123.79,22,0.0 +18929,58,13.25,38,0.0 +18929,5,21.35,9,0.0 +18929,72,34.8,20,0.0 +18929,66,17,40,0.0 +18929,67,14,46,0.0 +18929,62,49.3,39,0.0 +18929,4,22,10,0.0 +18929,61,28.5,35,0.0 +18929,26,31.23,49,0.0 +18929,21,10,45,0.0 +18929,51,53,38,0.0 +18929,6,25,39,0.0 +18929,37,26,16,0.0 +18929,10,31,4,0.0 +18929,8,40,42,0.0 +18929,13,6,12,0.0 +18929,52,7,21,0.0 +18929,2,19,6,0.0 +18929,69,36,7,0.0 +18929,11,21,32,0.0 +18929,1,18,11,0.0 +18929,70,15,9,0.0 +18929,22,21,9,0.0 +18929,74,10,6,0.0 +18929,56,38,21,0.0 +18929,45,9.5,46,0.0 +18929,47,9.5,30,0.0 +18929,43,46,13,0.0 +18929,54,7.45,14,0.0 +18929,3,10,50,0.0 +18929,40,18.4,25,0.0 +18929,53,32.8,30,0.0 +18929,50,16.25,34,0.0 +18929,35,18,33,0.0 +18929,77,13,4,0.0 +18930,6,25,46,0.0 +18930,77,13,34,0.0 +18930,64,33.25,30,0.0 +18930,63,43.9,8,0.0 +18930,4,22,1,0.0 +18930,8,40,29,0.0 +18930,57,19.5,15,0.0 +18930,13,6,9,0.0 +18930,20,81,43,0.0 +18930,42,14,31,0.0 +18930,28,45.6,23,0.0 +18931,9,97,11,0.0 +18931,40,18.4,9,0.0 +18931,57,19.5,13,0.0 +18931,65,21.05,21,0.0 +18931,56,38,46,0.0 +18931,74,10,3,0.0 +18931,43,46,18,0.0 +18931,42,14,7,0.0 +18931,51,53,44,0.0 +18931,68,12.5,34,0.0 +18931,15,15.5,25,0.0 +18931,44,19.45,10,0.0 +18931,22,21,15,0.0 +18931,18,62.5,22,0.0 +18931,16,17.45,20,0.0 +18931,55,24,16,0.0 +18931,64,33.25,16,0.0 +18931,76,18,10,0.0 +18931,61,28.5,46,0.0 +18931,71,21.5,18,0.0 +18931,48,12.75,21,0.0 +18931,14,23.25,26,0.0 +18931,2,19,6,0.0 +18931,5,21.35,1,0.0 +18931,39,18,24,0.0 +18931,31,12.5,11,0.0 +18931,1,18,30,0.0 +18931,30,25.89,31,0.0 +18931,10,31,33,0.0 +18931,35,18,12,0.0 +18931,58,13.25,11,0.0 +18931,36,19,17,0.0 +18931,29,123.79,35,0.0 +18931,28,45.6,12,0.0 +18931,72,34.8,5,0.0 +18931,13,6,22,0.0 +18931,17,39,4,0.0 +18931,41,9.65,39,0.0 +18931,63,43.9,50,0.0 +18931,33,2.5,10,0.0 +18931,38,263.5,3,0.0 +18931,66,17,19,0.0 +18931,19,9.2,4,0.0 +18931,6,25,12,0.0 +18931,49,20,46,0.0 +18932,61,28.5,11,0.0 +18932,56,38,43,0.0 +18932,23,9,28,0.0 +18932,3,10,42,0.0 +18932,12,38,43,0.0 +18932,39,18,16,0.0 +18933,25,14,20,0.0 +18933,1,18,14,0.0 +18933,62,49.3,33,0.0 +18933,22,21,26,0.0 +18933,64,33.25,33,0.0 +18933,10,31,49,0.0 +18933,52,7,13,0.0 +18933,70,15,25,0.0 +18933,34,14,46,0.0 +18933,5,21.35,50,0.0 +18933,16,17.45,30,0.0 +18933,76,18,41,0.0 +18933,33,2.5,7,0.0 +18933,19,9.2,27,0.0 +18933,58,13.25,9,0.0 +18933,3,10,19,0.0 +18933,59,55,19,0.0 +18933,65,21.05,37,0.0 +18933,75,7.75,23,0.0 +18933,2,19,41,0.0 +18933,39,18,13,0.0 +18933,15,15.5,26,0.0 +18933,27,43.9,19,0.0 +18933,51,53,22,0.0 +18933,73,15,42,0.0 +18933,71,21.5,38,0.0 +18933,29,123.79,49,0.0 +18933,7,30,25,0.0 +18933,35,18,27,0.0 +18933,4,22,19,0.0 +18933,60,34,12,0.0 +18933,42,14,23,0.0 +18933,12,38,48,0.0 +18933,28,45.6,44,0.0 +18933,6,25,11,0.0 +18933,23,9,13,0.0 +18933,57,19.5,18,0.0 +18933,11,21,1,0.0 +18933,9,97,11,0.0 +18933,8,40,4,0.0 +18933,68,12.5,1,0.0 +18933,49,20,8,0.0 +18934,5,21.35,37,0.0 +18934,13,6,5,0.0 +18934,11,21,23,0.0 +18934,55,24,23,0.0 +18934,67,14,27,0.0 +18934,46,12,18,0.0 +18934,24,4.5,34,0.0 +18934,30,25.89,2,0.0 +18934,6,25,49,0.0 +18934,44,19.45,5,0.0 +18934,17,39,23,0.0 +18934,29,123.79,45,0.0 +18934,50,16.25,7,0.0 +18934,3,10,25,0.0 +18934,59,55,14,0.0 +18934,31,12.5,8,0.0 +18934,40,18.4,27,0.0 +18934,74,10,46,0.0 +18934,61,28.5,41,0.0 +18934,70,15,49,0.0 +18934,15,15.5,11,0.0 +18934,22,21,18,0.0 +18934,37,26,23,0.0 +18934,10,31,42,0.0 +18934,54,7.45,4,0.0 +18934,52,7,2,0.0 +18934,60,34,28,0.0 +18934,41,9.65,21,0.0 +18934,63,43.9,12,0.0 +18934,56,38,25,0.0 +18934,12,38,48,0.0 +18934,2,19,17,0.0 +18934,19,9.2,16,0.0 +18934,38,263.5,20,0.0 +18934,58,13.25,9,0.0 +18934,65,21.05,9,0.0 +18934,51,53,26,0.0 +18935,55,24,37,0.0 +18935,43,46,15,0.0 +18935,40,18.4,40,0.0 +18935,76,18,12,0.0 +18935,10,31,37,0.0 +18935,25,14,22,0.0 +18935,31,12.5,6,0.0 +18935,18,62.5,34,0.0 +18935,46,12,39,0.0 +18935,11,21,18,0.0 +18935,72,34.8,16,0.0 +18935,4,22,46,0.0 +18935,14,23.25,10,0.0 +18935,58,13.25,41,0.0 +18935,57,19.5,48,0.0 +18935,51,53,27,0.0 +18935,9,97,36,0.0 +18935,1,18,23,0.0 +18935,61,28.5,8,0.0 +18935,52,7,13,0.0 +18935,21,10,24,0.0 +18935,6,25,33,0.0 +18935,70,15,29,0.0 +18935,74,10,43,0.0 +18935,38,263.5,17,0.0 +18935,42,14,5,0.0 +18935,49,20,46,0.0 +18935,47,9.5,30,0.0 +18935,20,81,28,0.0 +18935,56,38,47,0.0 +18935,64,33.25,3,0.0 +18935,54,7.45,9,0.0 +18935,29,123.79,16,0.0 +18935,26,31.23,24,0.0 +18935,69,36,49,0.0 +18935,22,21,8,0.0 +18935,62,49.3,25,0.0 +18935,39,18,36,0.0 +18935,35,18,23,0.0 +18935,48,12.75,47,0.0 +18935,71,21.5,4,0.0 +18935,32,32,41,0.0 +18935,33,2.5,29,0.0 +18935,7,30,50,0.0 +18935,41,9.65,31,0.0 +18935,5,21.35,17,0.0 +18935,30,25.89,10,0.0 +18935,53,32.8,9,0.0 +18935,19,9.2,26,0.0 +18935,36,19,27,0.0 +18935,75,7.75,20,0.0 +18935,15,15.5,33,0.0 +18935,77,13,47,0.0 +18935,59,55,5,0.0 +18935,8,40,44,0.0 +18936,77,13,15,0.0 +18936,24,4.5,44,0.0 +18937,41,9.65,21,0.0 +18937,11,21,30,0.0 +18937,7,30,42,0.0 +18937,45,9.5,49,0.0 +18937,54,7.45,25,0.0 +18938,5,21.35,9,0.0 +18938,33,2.5,49,0.0 +18938,20,81,4,0.0 +18938,6,25,48,0.0 +18938,48,12.75,2,0.0 +18938,14,23.25,36,0.0 +18938,15,15.5,37,0.0 +18938,34,14,27,0.0 +18938,38,263.5,5,0.0 +18938,36,19,32,0.0 +18938,71,21.5,36,0.0 +18938,58,13.25,21,0.0 +18938,57,19.5,13,0.0 +18938,41,9.65,22,0.0 +18938,46,12,4,0.0 +18938,28,45.6,13,0.0 +18938,4,22,41,0.0 +18938,73,15,28,0.0 +18938,76,18,42,0.0 +18938,35,18,15,0.0 +18938,55,24,9,0.0 +18938,1,18,44,0.0 +18938,17,39,3,0.0 +18938,43,46,22,0.0 +18938,19,9.2,8,0.0 +18938,68,12.5,22,0.0 +18938,27,43.9,20,0.0 +18938,63,43.9,49,0.0 +18938,66,17,46,0.0 +18938,54,7.45,41,0.0 +18938,3,10,11,0.0 +18938,75,7.75,10,0.0 +18938,32,32,20,0.0 +18938,60,34,7,0.0 +18938,67,14,23,0.0 +18938,11,21,16,0.0 +18938,62,49.3,2,0.0 +18938,50,16.25,13,0.0 +18938,53,32.8,19,0.0 +18938,23,9,37,0.0 +18938,18,62.5,46,0.0 +18938,44,19.45,31,0.0 +18938,65,21.05,17,0.0 +18938,64,33.25,23,0.0 +18938,42,14,12,0.0 +18938,16,17.45,23,0.0 +18939,22,21,6,0.0 +18939,16,17.45,34,0.0 +18939,64,33.25,18,0.0 +18939,53,32.8,44,0.0 +18939,11,21,8,0.0 +18939,4,22,19,0.0 +18939,70,15,34,0.0 +18939,23,9,6,0.0 +18939,29,123.79,5,0.0 +18939,27,43.9,12,0.0 +18939,61,28.5,12,0.0 +18939,13,6,6,0.0 +18939,41,9.65,7,0.0 +18939,35,18,11,0.0 +18939,67,14,35,0.0 +18939,26,31.23,11,0.0 +18939,54,7.45,13,0.0 +18939,43,46,30,0.0 +18939,42,14,8,0.0 +18939,73,15,17,0.0 +18939,38,263.5,23,0.0 +18939,19,9.2,5,0.0 +18939,21,10,7,0.0 +18939,63,43.9,50,0.0 +18939,12,38,18,0.0 +18939,36,19,9,0.0 +18939,2,19,4,0.0 +18939,47,9.5,5,0.0 +18939,65,21.05,7,0.0 +18939,72,34.8,7,0.0 +18939,5,21.35,49,0.0 +18939,6,25,35,0.0 +18939,40,18.4,48,0.0 +18939,44,19.45,3,0.0 +18939,8,40,9,0.0 +18939,31,12.5,6,0.0 +18939,9,97,5,0.0 +18939,75,7.75,8,0.0 +18939,56,38,44,0.0 +18939,37,26,11,0.0 +18939,28,45.6,49,0.0 +18939,49,20,14,0.0 +18939,71,21.5,33,0.0 +18939,66,17,42,0.0 +18939,68,12.5,38,0.0 +18939,74,10,22,0.0 +18939,17,39,14,0.0 +18939,1,18,30,0.0 +18939,45,9.5,22,0.0 +18939,76,18,34,0.0 +18939,62,49.3,39,0.0 +18939,18,62.5,1,0.0 +18939,20,81,12,0.0 +18939,7,30,40,0.0 +18939,69,36,7,0.0 +18939,32,32,39,0.0 +18939,48,12.75,39,0.0 +18939,50,16.25,26,0.0 +18939,15,15.5,29,0.0 +18939,59,55,36,0.0 +18939,58,13.25,12,0.0 +18939,39,18,40,0.0 +18939,51,53,45,0.0 +18939,55,24,30,0.0 +18939,57,19.5,34,0.0 +18939,14,23.25,22,0.0 +18940,53,32.8,27,0.0 +18940,37,26,40,0.0 +18940,7,30,13,0.0 +18940,30,25.89,31,0.0 +18940,13,6,23,0.0 +18940,73,15,18,0.0 +18940,11,21,30,0.0 +18940,61,28.5,39,0.0 +18940,60,34,25,0.0 +18940,54,7.45,6,0.0 +18940,64,33.25,30,0.0 +18940,62,49.3,32,0.0 +18940,4,22,12,0.0 +18940,66,17,41,0.0 +18940,59,55,27,0.0 +18940,76,18,18,0.0 +18940,26,31.23,49,0.0 +18940,31,12.5,30,0.0 +18940,44,19.45,24,0.0 +18940,8,40,27,0.0 +18940,71,21.5,21,0.0 +18940,16,17.45,3,0.0 +18940,43,46,19,0.0 +18940,40,18.4,23,0.0 +18940,19,9.2,48,0.0 +18940,68,12.5,42,0.0 +18940,52,7,25,0.0 +18940,41,9.65,25,0.0 +18940,9,97,32,0.0 +18940,36,19,32,0.0 +18940,45,9.5,45,0.0 +18940,74,10,40,0.0 +18940,29,123.79,15,0.0 +18940,35,18,42,0.0 +18940,67,14,5,0.0 +18940,50,16.25,26,0.0 +18940,32,32,28,0.0 +18940,39,18,48,0.0 +18940,28,45.6,10,0.0 +18940,48,12.75,38,0.0 +18940,10,31,23,0.0 +18940,25,14,39,0.0 +18940,33,2.5,21,0.0 +18940,6,25,5,0.0 +18940,38,263.5,29,0.0 +18940,65,21.05,39,0.0 +18940,57,19.5,27,0.0 +18940,72,34.8,39,0.0 +18940,77,13,34,0.0 +18940,18,62.5,3,0.0 +18940,12,38,23,0.0 +18940,49,20,36,0.0 +18940,55,24,40,0.0 +18940,15,15.5,13,0.0 +18940,23,9,6,0.0 +18940,27,43.9,18,0.0 +18941,68,12.5,30,0.0 +18941,34,14,45,0.0 +18941,71,21.5,45,0.0 +18941,37,26,1,0.0 +18941,21,10,33,0.0 +18941,56,38,6,0.0 +18941,64,33.25,47,0.0 +18941,49,20,48,0.0 +18941,65,21.05,33,0.0 +18941,30,25.89,17,0.0 +18941,23,9,43,0.0 +18941,51,53,36,0.0 +18941,73,15,23,0.0 +18941,29,123.79,20,0.0 +18941,48,12.75,50,0.0 +18941,28,45.6,33,0.0 +18941,25,14,7,0.0 +18941,31,12.5,14,0.0 +18941,32,32,15,0.0 +18941,77,13,4,0.0 +18941,52,7,13,0.0 +18941,22,21,7,0.0 +18941,53,32.8,41,0.0 +18941,24,4.5,45,0.0 +18941,9,97,36,0.0 +18941,33,2.5,25,0.0 +18941,10,31,40,0.0 +18941,18,62.5,10,0.0 +18941,7,30,50,0.0 +18941,45,9.5,13,0.0 +18941,75,7.75,14,0.0 +18941,69,36,1,0.0 +18941,76,18,39,0.0 +18941,12,38,18,0.0 +18942,55,24,11,0.0 +18942,74,10,20,0.0 +18942,32,32,1,0.0 +18942,15,15.5,9,0.0 +18942,49,20,49,0.0 +18942,2,19,25,0.0 +18942,52,7,46,0.0 +18942,10,31,20,0.0 +18942,21,10,25,0.0 +18942,3,10,40,0.0 +18942,72,34.8,4,0.0 +18942,5,21.35,43,0.0 +18942,60,34,49,0.0 +18942,14,23.25,1,0.0 +18942,68,12.5,30,0.0 +18942,75,7.75,21,0.0 +18942,54,7.45,20,0.0 +18942,24,4.5,42,0.0 +18942,64,33.25,30,0.0 +18942,58,13.25,23,0.0 +18942,11,21,16,0.0 +18942,62,49.3,34,0.0 +18942,42,14,41,0.0 +18942,33,2.5,49,0.0 +18942,57,19.5,50,0.0 +18942,37,26,11,0.0 +18942,12,38,46,0.0 +18942,34,14,50,0.0 +18942,9,97,29,0.0 +18942,73,15,22,0.0 +18942,31,12.5,46,0.0 +18942,1,18,30,0.0 +18942,8,40,37,0.0 +18942,4,22,16,0.0 +18942,22,21,31,0.0 +18942,17,39,46,0.0 +18942,67,14,12,0.0 +18942,20,81,37,0.0 +18942,66,17,40,0.0 +18942,18,62.5,4,0.0 +18942,61,28.5,10,0.0 +18942,59,55,3,0.0 +18942,63,43.9,32,0.0 +18942,25,14,46,0.0 +18942,56,38,15,0.0 +18942,65,21.05,29,0.0 +18942,40,18.4,49,0.0 +18942,70,15,50,0.0 +18942,51,53,1,0.0 +18942,27,43.9,33,0.0 +18942,41,9.65,36,0.0 +18942,19,9.2,36,0.0 +18942,29,123.79,36,0.0 +18942,48,12.75,48,0.0 +18942,23,9,16,0.0 +18942,76,18,20,0.0 +18942,26,31.23,5,0.0 +18942,39,18,22,0.0 +18942,30,25.89,42,0.0 +18942,43,46,16,0.0 +18942,77,13,33,0.0 +18942,44,19.45,22,0.0 +18942,69,36,25,0.0 +18942,53,32.8,35,0.0 +18942,35,18,35,0.0 +18942,28,45.6,37,0.0 +18942,45,9.5,25,0.0 +18942,7,30,5,0.0 +18942,6,25,37,0.0 +18942,71,21.5,8,0.0 +18942,46,12,16,0.0 +18943,40,18.4,43,0.0 +18943,30,25.89,50,0.0 +18943,2,19,40,0.0 +18943,39,18,50,0.0 +18943,14,23.25,3,0.0 +18943,54,7.45,25,0.0 +18943,35,18,11,0.0 +18943,49,20,46,0.0 +18943,76,18,5,0.0 +18943,24,4.5,1,0.0 +18943,27,43.9,44,0.0 +18943,64,33.25,7,0.0 +18943,25,14,5,0.0 +18943,28,45.6,35,0.0 +18943,13,6,9,0.0 +18943,19,9.2,10,0.0 +18943,74,10,1,0.0 +18943,43,46,11,0.0 +18943,36,19,50,0.0 +18943,17,39,48,0.0 +18943,31,12.5,5,0.0 +18943,63,43.9,27,0.0 +18943,7,30,24,0.0 +18943,37,26,3,0.0 +18943,12,38,14,0.0 +18943,23,9,18,0.0 +18943,42,14,37,0.0 +18943,70,15,35,0.0 +18943,41,9.65,27,0.0 +18943,29,123.79,26,0.0 +18943,16,17.45,35,0.0 +18943,68,12.5,36,0.0 +18943,21,10,35,0.0 +18943,77,13,29,0.0 +18943,59,55,48,0.0 +18943,52,7,12,0.0 +18943,34,14,45,0.0 +18943,72,34.8,8,0.0 +18943,58,13.25,28,0.0 +18944,20,81,2,0.0 +18944,62,49.3,5,0.0 +18944,52,7,49,0.0 +18944,72,34.8,26,0.0 +18944,34,14,27,0.0 +18944,41,9.65,37,0.0 +18944,69,36,4,0.0 +18944,57,19.5,16,0.0 +18944,29,123.79,20,0.0 +18944,4,22,40,0.0 +18944,59,55,30,0.0 +18944,24,4.5,10,0.0 +18944,33,2.5,24,0.0 +18944,17,39,37,0.0 +18944,65,21.05,35,0.0 +18944,26,31.23,10,0.0 +18944,49,20,46,0.0 +18944,46,12,40,0.0 +18944,42,14,34,0.0 +18944,61,28.5,36,0.0 +18944,55,24,17,0.0 +18944,48,12.75,23,0.0 +18944,51,53,11,0.0 +18944,8,40,48,0.0 +18944,13,6,10,0.0 +18944,56,38,28,0.0 +18944,28,45.6,4,0.0 +18944,2,19,46,0.0 +18944,64,33.25,28,0.0 +18945,30,25.89,12,0.0 +18945,43,46,29,0.0 +18946,70,15,16,0.0 +18946,42,14,26,0.0 +18946,51,53,18,0.0 +18946,65,21.05,11,0.0 +18946,22,21,11,0.0 +18946,5,21.35,45,0.0 +18946,35,18,36,0.0 +18946,45,9.5,33,0.0 +18946,49,20,42,0.0 +18946,24,4.5,2,0.0 +18946,55,24,19,0.0 +18946,29,123.79,15,0.0 +18946,9,97,19,0.0 +18946,21,10,30,0.0 +18946,8,40,41,0.0 +18946,75,7.75,32,0.0 +18946,61,28.5,20,0.0 +18946,40,18.4,21,0.0 +18946,39,18,20,0.0 +18946,50,16.25,23,0.0 +18946,69,36,22,0.0 +18946,72,34.8,45,0.0 +18946,56,38,33,0.0 +18946,59,55,21,0.0 +18946,44,19.45,11,0.0 +18946,25,14,42,0.0 +18946,2,19,23,0.0 +18946,48,12.75,12,0.0 +18946,11,21,16,0.0 +18946,17,39,4,0.0 +18946,32,32,18,0.0 +18946,1,18,14,0.0 +18946,52,7,25,0.0 +18946,41,9.65,20,0.0 +18946,18,62.5,3,0.0 +18946,64,33.25,27,0.0 +18946,4,22,16,0.0 +18946,58,13.25,9,0.0 +18946,15,15.5,7,0.0 +18946,66,17,24,0.0 +18946,54,7.45,38,0.0 +18946,6,25,50,0.0 +18946,36,19,37,0.0 +18946,67,14,16,0.0 +18946,10,31,34,0.0 +18946,46,12,35,0.0 +18946,34,14,8,0.0 +18946,12,38,47,0.0 +18946,23,9,16,0.0 +18947,2,19,20,0.0 +18947,23,9,14,0.0 +18947,67,14,36,0.0 +18947,39,18,17,0.0 +18947,9,97,42,0.0 +18947,40,18.4,19,0.0 +18947,25,14,32,0.0 +18947,69,36,41,0.0 +18947,64,33.25,10,0.0 +18947,49,20,13,0.0 +18947,61,28.5,4,0.0 +18947,41,9.65,12,0.0 +18947,38,263.5,35,0.0 +18947,74,10,41,0.0 +18947,76,18,27,0.0 +18947,75,7.75,7,0.0 +18947,17,39,46,0.0 +18947,18,62.5,32,0.0 +18947,62,49.3,3,0.0 +18947,28,45.6,7,0.0 +18947,8,40,5,0.0 +18947,43,46,47,0.0 +18947,50,16.25,49,0.0 +18947,4,22,3,0.0 +18947,20,81,18,0.0 +18947,27,43.9,5,0.0 +18947,26,31.23,11,0.0 +18947,44,19.45,16,0.0 +18947,30,25.89,44,0.0 +18947,14,23.25,11,0.0 +18947,51,53,50,0.0 +18947,15,15.5,47,0.0 +18947,21,10,33,0.0 +18947,7,30,32,0.0 +18947,3,10,46,0.0 +18947,63,43.9,39,0.0 +18947,66,17,26,0.0 +18947,48,12.75,46,0.0 +18947,31,12.5,37,0.0 +18947,58,13.25,27,0.0 +18947,34,14,23,0.0 +18947,60,34,45,0.0 +18947,71,21.5,41,0.0 +18947,32,32,21,0.0 +18947,72,34.8,45,0.0 +18947,46,12,50,0.0 +18947,45,9.5,38,0.0 +18947,52,7,28,0.0 +18947,35,18,23,0.0 +18947,19,9.2,33,0.0 +18948,52,7,37,0.0 +18948,65,21.05,5,0.0 +18948,3,10,30,0.0 +18948,69,36,41,0.0 +18948,64,33.25,17,0.0 +18948,31,12.5,19,0.0 +18948,74,10,36,0.0 +18948,19,9.2,49,0.0 +18948,5,21.35,45,0.0 +18948,29,123.79,41,0.0 +18948,9,97,10,0.0 +18948,11,21,32,0.0 +18948,6,25,38,0.0 +18948,7,30,12,0.0 +18948,50,16.25,39,0.0 +18948,32,32,13,0.0 +18948,51,53,39,0.0 +18948,67,14,36,0.0 +18948,48,12.75,44,0.0 +18948,56,38,39,0.0 +18948,18,62.5,47,0.0 +18948,58,13.25,10,0.0 +18948,36,19,30,0.0 +18948,71,21.5,26,0.0 +18948,47,9.5,40,0.0 +18948,39,18,30,0.0 +18948,46,12,33,0.0 +18948,63,43.9,22,0.0 +18948,40,18.4,50,0.0 +18948,27,43.9,26,0.0 +18948,25,14,42,0.0 +18948,75,7.75,28,0.0 +18948,54,7.45,29,0.0 +18948,22,21,9,0.0 +18948,15,15.5,1,0.0 +18948,68,12.5,9,0.0 +18948,37,26,35,0.0 +18948,20,81,34,0.0 +18948,41,9.65,48,0.0 +18948,45,9.5,50,0.0 +18948,42,14,7,0.0 +18948,77,13,33,0.0 +18948,4,22,48,0.0 +18948,26,31.23,36,0.0 +18948,76,18,20,0.0 +18948,28,45.6,19,0.0 +18948,10,31,30,0.0 +18949,63,43.9,14,0.0 +18949,38,263.5,17,0.0 +18949,59,55,24,0.0 +18949,64,33.25,36,0.0 +18949,44,19.45,24,0.0 +18950,7,30,32,0.0 +18950,52,7,18,0.0 +18950,13,6,49,0.0 +18950,54,7.45,19,0.0 +18950,56,38,40,0.0 +18950,71,21.5,20,0.0 +18950,38,263.5,18,0.0 +18950,72,34.8,13,0.0 +18950,18,62.5,29,0.0 +18951,14,23.25,42,0.0 +18951,50,16.25,1,0.0 +18951,74,10,34,0.0 +18951,70,15,32,0.0 +18951,30,25.89,45,0.0 +18951,38,263.5,6,0.0 +18951,62,49.3,43,0.0 +18951,46,12,16,0.0 +18951,6,25,39,0.0 +18951,13,6,7,0.0 +18951,17,39,13,0.0 +18951,72,34.8,27,0.0 +18951,8,40,32,0.0 +18951,41,9.65,39,0.0 +18951,51,53,18,0.0 +18951,69,36,2,0.0 +18951,49,20,44,0.0 +18951,22,21,30,0.0 +18951,53,32.8,15,0.0 +18951,68,12.5,10,0.0 +18951,52,7,36,0.0 +18951,11,21,30,0.0 +18951,25,14,45,0.0 +18951,58,13.25,32,0.0 +18951,77,13,24,0.0 +18951,56,38,7,0.0 +18951,37,26,35,0.0 +18951,59,55,9,0.0 +18951,27,43.9,19,0.0 +18951,36,19,29,0.0 +18951,64,33.25,42,0.0 +18951,67,14,23,0.0 +18951,63,43.9,37,0.0 +18951,29,123.79,46,0.0 +18951,73,15,47,0.0 +18951,21,10,44,0.0 +18951,33,2.5,27,0.0 +18951,42,14,12,0.0 +18951,5,21.35,45,0.0 +18951,23,9,45,0.0 +18951,7,30,15,0.0 +18951,45,9.5,23,0.0 +18951,12,38,8,0.0 +18951,55,24,30,0.0 +18951,20,81,13,0.0 +18952,9,97,17,0.0 +18952,56,38,48,0.0 +18952,68,12.5,42,0.0 +18952,32,32,14,0.0 +18952,22,21,39,0.0 +18952,36,19,42,0.0 +18952,31,12.5,31,0.0 +18952,52,7,34,0.0 +18952,29,123.79,13,0.0 +18952,14,23.25,35,0.0 +18952,33,2.5,8,0.0 +18952,27,43.9,34,0.0 +18952,28,45.6,33,0.0 +18952,19,9.2,35,0.0 +18952,16,17.45,39,0.0 +18952,3,10,29,0.0 +18952,61,28.5,18,0.0 +18952,65,21.05,46,0.0 +18952,63,43.9,38,0.0 +18952,8,40,46,0.0 +18952,21,10,27,0.0 +18952,58,13.25,12,0.0 +18952,73,15,27,0.0 +18952,40,18.4,7,0.0 +18952,48,12.75,26,0.0 +18952,25,14,22,0.0 +18952,24,4.5,42,0.0 +18952,64,33.25,19,0.0 +18952,54,7.45,25,0.0 +18952,5,21.35,24,0.0 +18952,17,39,37,0.0 +18952,66,17,39,0.0 +18952,6,25,19,0.0 +18952,76,18,27,0.0 +18952,20,81,50,0.0 +18952,62,49.3,38,0.0 +18952,51,53,27,0.0 +18952,45,9.5,10,0.0 +18952,30,25.89,1,0.0 +18952,11,21,14,0.0 +18952,70,15,26,0.0 +18952,12,38,32,0.0 +18952,34,14,37,0.0 +18952,10,31,50,0.0 +18952,69,36,16,0.0 +18952,75,7.75,47,0.0 +18952,13,6,22,0.0 +18952,44,19.45,32,0.0 +18952,49,20,47,0.0 +18952,47,9.5,15,0.0 +18952,67,14,47,0.0 +18952,50,16.25,29,0.0 +18952,35,18,39,0.0 +18952,41,9.65,16,0.0 +18952,74,10,1,0.0 +18952,23,9,29,0.0 +18952,1,18,29,0.0 +18952,57,19.5,6,0.0 +18952,18,62.5,1,0.0 +18952,15,15.5,11,0.0 +18952,4,22,28,0.0 +18952,2,19,3,0.0 +18952,77,13,38,0.0 +18952,60,34,17,0.0 +18952,42,14,23,0.0 +18952,39,18,4,0.0 +18952,46,12,5,0.0 +18952,72,34.8,24,0.0 +18952,7,30,29,0.0 +18952,55,24,30,0.0 +18952,53,32.8,46,0.0 +18952,71,21.5,37,0.0 +18952,37,26,12,0.0 +18952,38,263.5,15,0.0 +18953,1,18,17,0.0 +18953,59,55,13,0.0 +18953,42,14,13,0.0 +18953,45,9.5,7,0.0 +18953,33,2.5,45,0.0 +18953,43,46,45,0.0 +18953,13,6,7,0.0 +18953,41,9.65,21,0.0 +18953,39,18,19,0.0 +18953,76,18,47,0.0 +18953,52,7,44,0.0 +18953,55,24,46,0.0 +18953,51,53,1,0.0 +18953,25,14,35,0.0 +18953,21,10,21,0.0 +18953,16,17.45,22,0.0 +18953,67,14,5,0.0 +18953,47,9.5,35,0.0 +18953,77,13,22,0.0 +18953,65,21.05,21,0.0 +18953,35,18,41,0.0 +18954,2,19,49,0.0 +18954,43,46,36,0.0 +18954,19,9.2,26,0.0 +18954,74,10,37,0.0 +18954,60,34,12,0.0 +18954,52,7,5,0.0 +18954,13,6,26,0.0 +18954,58,13.25,14,0.0 +18954,54,7.45,14,0.0 +18954,64,33.25,49,0.0 +18954,12,38,3,0.0 +18954,49,20,33,0.0 +18954,27,43.9,42,0.0 +18954,73,15,35,0.0 +18954,31,12.5,21,0.0 +18954,66,17,18,0.0 +18954,7,30,50,0.0 +18954,72,34.8,37,0.0 +18954,50,16.25,38,0.0 +18954,46,12,27,0.0 +18954,15,15.5,4,0.0 +18954,47,9.5,3,0.0 +18954,34,14,17,0.0 +18954,75,7.75,17,0.0 +18954,9,97,39,0.0 +18954,24,4.5,6,0.0 +18954,28,45.6,26,0.0 +18954,18,62.5,43,0.0 +18954,68,12.5,48,0.0 +18954,53,32.8,48,0.0 +18954,55,24,45,0.0 +18954,39,18,12,0.0 +18954,40,18.4,7,0.0 +18954,70,15,10,0.0 +18954,48,12.75,4,0.0 +18954,10,31,11,0.0 +18954,59,55,1,0.0 +18954,65,21.05,33,0.0 +18954,56,38,32,0.0 +18954,42,14,24,0.0 +18954,6,25,45,0.0 +18954,35,18,35,0.0 +18954,21,10,49,0.0 +18954,8,40,30,0.0 +18954,25,14,49,0.0 +18954,38,263.5,48,0.0 +18954,23,9,43,0.0 +18954,51,53,27,0.0 +18954,29,123.79,19,0.0 +18954,62,49.3,49,0.0 +18954,69,36,9,0.0 +18954,32,32,13,0.0 +18954,26,31.23,25,0.0 +18954,77,13,15,0.0 +18954,4,22,25,0.0 +18954,45,9.5,26,0.0 +18954,14,23.25,44,0.0 +18954,30,25.89,33,0.0 +18954,11,21,46,0.0 +18954,71,21.5,3,0.0 +18954,5,21.35,35,0.0 +18954,1,18,10,0.0 +18955,74,10,31,0.0 +18955,18,62.5,21,0.0 +18955,17,39,15,0.0 +18955,32,32,2,0.0 +18955,31,12.5,43,0.0 +18955,53,32.8,18,0.0 +18955,64,33.25,21,0.0 +18955,4,22,23,0.0 +18955,27,43.9,10,0.0 +18955,16,17.45,38,0.0 +18955,11,21,15,0.0 +18955,25,14,50,0.0 +18955,43,46,25,0.0 +18955,75,7.75,22,0.0 +18955,33,2.5,30,0.0 +18955,9,97,39,0.0 +18955,73,15,39,0.0 +18955,45,9.5,15,0.0 +18955,62,49.3,3,0.0 +18955,21,10,45,0.0 +18955,55,24,43,0.0 +18955,29,123.79,6,0.0 +18955,22,21,32,0.0 +18955,37,26,16,0.0 +18955,70,15,39,0.0 +18955,67,14,30,0.0 +18955,58,13.25,39,0.0 +18955,6,25,39,0.0 +18955,65,21.05,21,0.0 +18955,52,7,40,0.0 +18955,5,21.35,32,0.0 +18955,63,43.9,31,0.0 +18955,49,20,18,0.0 +18955,68,12.5,24,0.0 +18955,24,4.5,8,0.0 +18955,2,19,30,0.0 +18955,54,7.45,43,0.0 +18955,77,13,24,0.0 +18956,15,15.5,45,0.0 +18956,3,10,47,0.0 +18956,38,263.5,12,0.0 +18956,31,12.5,29,0.0 +18956,37,26,20,0.0 +18956,52,7,26,0.0 +18956,43,46,18,0.0 +18956,53,32.8,21,0.0 +18956,44,19.45,26,0.0 +18956,69,36,22,0.0 +18956,20,81,39,0.0 +18956,77,13,32,0.0 +18956,51,53,49,0.0 +18956,1,18,1,0.0 +18956,24,4.5,38,0.0 +18956,21,10,39,0.0 +18956,58,13.25,30,0.0 +18956,68,12.5,21,0.0 +18956,46,12,4,0.0 +18957,39,18,24,0.0 +18957,26,31.23,27,0.0 +18957,59,55,24,0.0 +18957,5,21.35,24,0.0 +18957,28,45.6,49,0.0 +18957,66,17,4,0.0 +18957,67,14,17,0.0 +18957,75,7.75,47,0.0 +18957,31,12.5,45,0.0 +18957,33,2.5,43,0.0 +18957,21,10,8,0.0 +18957,35,18,5,0.0 +18957,77,13,35,0.0 +18957,8,40,36,0.0 +18957,52,7,7,0.0 +18958,68,12.5,8,0.0 +18958,36,19,32,0.0 +18958,39,18,48,0.0 +18958,31,12.5,17,0.0 +18958,22,21,49,0.0 +18958,23,9,35,0.0 +18958,32,32,31,0.0 +18958,7,30,5,0.0 +18958,35,18,4,0.0 +18958,10,31,44,0.0 +18958,77,13,2,0.0 +18958,60,34,50,0.0 +18958,20,81,2,0.0 +18958,42,14,7,0.0 +18958,17,39,38,0.0 +18958,8,40,48,0.0 +18958,5,21.35,36,0.0 +18958,48,12.75,21,0.0 +18958,6,25,9,0.0 +18958,47,9.5,26,0.0 +18958,26,31.23,22,0.0 +18958,34,14,39,0.0 +18958,11,21,1,0.0 +18958,67,14,5,0.0 +18958,63,43.9,20,0.0 +18958,55,24,18,0.0 +18958,4,22,20,0.0 +18958,3,10,24,0.0 +18958,50,16.25,46,0.0 +18958,45,9.5,43,0.0 +18958,72,34.8,13,0.0 +18958,62,49.3,1,0.0 +18958,37,26,5,0.0 +18958,49,20,31,0.0 +18958,19,9.2,1,0.0 +18958,58,13.25,2,0.0 +18958,71,21.5,45,0.0 +18958,76,18,37,0.0 +18958,41,9.65,41,0.0 +18958,64,33.25,45,0.0 +18958,53,32.8,2,0.0 +18958,61,28.5,27,0.0 +18958,13,6,33,0.0 +18958,38,263.5,31,0.0 +18958,28,45.6,9,0.0 +18958,18,62.5,36,0.0 +18958,73,15,28,0.0 +18958,1,18,27,0.0 +18958,2,19,30,0.0 +18958,69,36,18,0.0 +18958,66,17,39,0.0 +18958,24,4.5,46,0.0 +18958,40,18.4,23,0.0 +18958,65,21.05,22,0.0 +18958,27,43.9,2,0.0 +18958,54,7.45,14,0.0 +18958,70,15,8,0.0 +18959,50,16.25,35,0.0 +18959,17,39,6,0.0 +18959,76,18,33,0.0 +18959,30,25.89,27,0.0 +18959,23,9,2,0.0 +18959,28,45.6,24,0.0 +18959,40,18.4,38,0.0 +18959,67,14,44,0.0 +18959,43,46,22,0.0 +18959,39,18,21,0.0 +18959,77,13,8,0.0 +18959,56,38,35,0.0 +18959,15,15.5,27,0.0 +18959,44,19.45,43,0.0 +18959,65,21.05,32,0.0 +18959,66,17,42,0.0 +18959,74,10,42,0.0 +18959,41,9.65,11,0.0 +18959,54,7.45,38,0.0 +18959,5,21.35,42,0.0 +18959,38,263.5,44,0.0 +18959,73,15,3,0.0 +18959,10,31,44,0.0 +18959,1,18,47,0.0 +18959,51,53,31,0.0 +18959,22,21,27,0.0 +18959,45,9.5,9,0.0 +18959,69,36,23,0.0 +18959,29,123.79,30,0.0 +18959,3,10,43,0.0 +18959,20,81,44,0.0 +18959,49,20,39,0.0 +18959,2,19,17,0.0 +18959,58,13.25,35,0.0 +18959,6,25,48,0.0 +18959,19,9.2,12,0.0 +18959,47,9.5,9,0.0 +18959,27,43.9,19,0.0 +18959,4,22,16,0.0 +18959,9,97,25,0.0 +18959,12,38,24,0.0 +18959,71,21.5,1,0.0 +18959,31,12.5,30,0.0 +18959,61,28.5,46,0.0 +18959,18,62.5,1,0.0 +18959,34,14,4,0.0 +18959,26,31.23,10,0.0 +18959,42,14,8,0.0 +18959,16,17.45,22,0.0 +18959,35,18,33,0.0 +18959,57,19.5,2,0.0 +18959,64,33.25,26,0.0 +18959,8,40,9,0.0 +18959,59,55,10,0.0 +18959,75,7.75,8,0.0 +18959,52,7,13,0.0 +18960,19,9.2,5,0.0 +18960,59,55,12,0.0 +18960,6,25,14,0.0 +18960,73,15,16,0.0 +18960,35,18,27,0.0 +18960,58,13.25,40,0.0 +18960,30,25.89,39,0.0 +18960,16,17.45,41,0.0 +18960,2,19,8,0.0 +18960,33,2.5,24,0.0 +18960,41,9.65,6,0.0 +18960,29,123.79,42,0.0 +18960,53,32.8,4,0.0 +18960,42,14,37,0.0 +18960,12,38,46,0.0 +18960,10,31,31,0.0 +18960,61,28.5,5,0.0 +18960,54,7.45,25,0.0 +18960,23,9,19,0.0 +18960,75,7.75,3,0.0 +18960,57,19.5,33,0.0 +18960,68,12.5,30,0.0 +18960,40,18.4,29,0.0 +18960,17,39,47,0.0 +18960,3,10,14,0.0 +18960,44,19.45,16,0.0 +18960,28,45.6,10,0.0 +18960,18,62.5,28,0.0 +18960,4,22,24,0.0 +18960,70,15,49,0.0 +18960,11,21,45,0.0 +18960,21,10,25,0.0 +18960,27,43.9,46,0.0 +18960,5,21.35,44,0.0 +18960,72,34.8,26,0.0 +18960,43,46,15,0.0 +18960,13,6,7,0.0 +18960,55,24,9,0.0 +18960,76,18,26,0.0 +18960,56,38,38,0.0 +18960,64,33.25,11,0.0 +18960,36,19,43,0.0 +18960,71,21.5,10,0.0 +18960,25,14,39,0.0 +18960,39,18,26,0.0 +18960,46,12,9,0.0 +18960,47,9.5,26,0.0 +18960,49,20,23,0.0 +18961,54,7.45,39,0.0 +18961,8,40,44,0.0 +18961,64,33.25,42,0.0 +18961,2,19,18,0.0 +18961,53,32.8,17,0.0 +18961,29,123.79,45,0.0 +18961,48,12.75,3,0.0 +18961,46,12,28,0.0 +18961,26,31.23,50,0.0 +18961,34,14,16,0.0 +18961,17,39,31,0.0 +18961,1,18,21,0.0 +18961,65,21.05,28,0.0 +18961,51,53,28,0.0 +18961,18,62.5,23,0.0 +18961,59,55,44,0.0 +18961,52,7,28,0.0 +18961,36,19,11,0.0 +18961,14,23.25,4,0.0 +18961,55,24,37,0.0 +18961,6,25,34,0.0 +18961,30,25.89,29,0.0 +18961,75,7.75,5,0.0 +18961,39,18,16,0.0 +18961,74,10,19,0.0 +18961,37,26,37,0.0 +18961,49,20,8,0.0 +18961,42,14,21,0.0 +18961,71,21.5,10,0.0 +18961,32,32,33,0.0 +18961,45,9.5,43,0.0 +18961,44,19.45,31,0.0 +18961,21,10,40,0.0 +18961,43,46,4,0.0 +18961,15,15.5,39,0.0 +18961,11,21,43,0.0 +18961,12,38,35,0.0 +18961,40,18.4,24,0.0 +18961,58,13.25,26,0.0 +18961,67,14,22,0.0 +18961,20,81,49,0.0 +18961,63,43.9,39,0.0 +18961,41,9.65,42,0.0 +18961,35,18,28,0.0 +18961,27,43.9,45,0.0 +18961,76,18,38,0.0 +18961,77,13,3,0.0 +18961,68,12.5,43,0.0 +18961,61,28.5,1,0.0 +18961,50,16.25,3,0.0 +18961,3,10,50,0.0 +18961,5,21.35,22,0.0 +18961,9,97,13,0.0 +18961,72,34.8,40,0.0 +18961,23,9,48,0.0 +18961,19,9.2,48,0.0 +18961,69,36,8,0.0 +18961,33,2.5,44,0.0 +18961,13,6,4,0.0 +18961,31,12.5,25,0.0 +18961,16,17.45,42,0.0 +18961,56,38,30,0.0 +18961,7,30,45,0.0 +18961,22,21,12,0.0 +18961,60,34,42,0.0 +18962,25,14,14,0.0 +18962,54,7.45,43,0.0 +18962,2,19,40,0.0 +18962,49,20,21,0.0 +18962,3,10,31,0.0 +18962,34,14,48,0.0 +18962,46,12,27,0.0 +18962,62,49.3,38,0.0 +18962,19,9.2,30,0.0 +18962,8,40,27,0.0 +18962,39,18,40,0.0 +18962,33,2.5,50,0.0 +18962,51,53,44,0.0 +18962,67,14,29,0.0 +18962,15,15.5,36,0.0 +18962,45,9.5,6,0.0 +18962,6,25,41,0.0 +18962,76,18,19,0.0 +18962,47,9.5,19,0.0 +18962,12,38,6,0.0 +18962,29,123.79,15,0.0 +18962,5,21.35,8,0.0 +18962,43,46,3,0.0 +18962,36,19,23,0.0 +18962,48,12.75,19,0.0 +18962,1,18,7,0.0 +18962,59,55,22,0.0 +18962,77,13,43,0.0 +18962,31,12.5,34,0.0 +18962,68,12.5,17,0.0 +18962,42,14,28,0.0 +18962,52,7,11,0.0 +18962,41,9.65,35,0.0 +18962,56,38,7,0.0 +18962,61,28.5,47,0.0 +18962,40,18.4,16,0.0 +18962,23,9,48,0.0 +18962,11,21,12,0.0 +18962,22,21,15,0.0 +18962,18,62.5,45,0.0 +18962,9,97,32,0.0 +18962,73,15,37,0.0 +18962,44,19.45,2,0.0 +18962,69,36,42,0.0 +18962,16,17.45,25,0.0 +18962,65,21.05,35,0.0 +18962,38,263.5,1,0.0 +18962,24,4.5,1,0.0 +18962,57,19.5,22,0.0 +18962,64,33.25,29,0.0 +18962,17,39,13,0.0 +18962,32,32,26,0.0 +18962,63,43.9,31,0.0 +18962,35,18,40,0.0 +18962,74,10,37,0.0 +18962,14,23.25,31,0.0 +18962,26,31.23,21,0.0 +18962,70,15,34,0.0 +18962,50,16.25,49,0.0 +18963,71,21.5,10,0.0 +18963,39,18,30,0.0 +18963,44,19.45,17,0.0 +18963,11,21,4,0.0 +18963,68,12.5,3,0.0 +18963,75,7.75,5,0.0 +18963,62,49.3,48,0.0 +18963,56,38,37,0.0 +18963,30,25.89,34,0.0 +18963,57,19.5,16,0.0 +18963,61,28.5,45,0.0 +18963,46,12,44,0.0 +18963,31,12.5,22,0.0 +18963,20,81,10,0.0 +18963,53,32.8,26,0.0 +18963,58,13.25,5,0.0 +18963,42,14,40,0.0 +18963,14,23.25,23,0.0 +18963,24,4.5,13,0.0 +18963,66,17,11,0.0 +18963,16,17.45,33,0.0 +18963,54,7.45,12,0.0 +18963,15,15.5,11,0.0 +18963,69,36,43,0.0 +18963,76,18,48,0.0 +18963,65,21.05,40,0.0 +18963,37,26,16,0.0 +18963,77,13,29,0.0 +18963,3,10,37,0.0 +18964,33,2.5,13,0.0 +18964,50,16.25,2,0.0 +18964,76,18,5,0.0 +18964,17,39,22,0.0 +18964,71,21.5,25,0.0 +18964,25,14,10,0.0 +18965,46,12,28,0.0 +18965,49,20,33,0.0 +18965,77,13,27,0.0 +18965,17,39,48,0.0 +18965,44,19.45,5,0.0 +18965,73,15,38,0.0 +18965,5,21.35,42,0.0 +18965,23,9,22,0.0 +18965,12,38,2,0.0 +18965,58,13.25,21,0.0 +18965,25,14,37,0.0 +18965,57,19.5,29,0.0 +18965,7,30,48,0.0 +18965,70,15,45,0.0 +18965,54,7.45,33,0.0 +18965,14,23.25,46,0.0 +18965,50,16.25,32,0.0 +18965,35,18,50,0.0 +18965,56,38,14,0.0 +18965,43,46,24,0.0 +18965,2,19,49,0.0 +18965,45,9.5,32,0.0 +18965,19,9.2,3,0.0 +18965,10,31,48,0.0 +18965,22,21,20,0.0 +18965,65,21.05,48,0.0 +18965,39,18,25,0.0 +18965,69,36,42,0.0 +18965,72,34.8,2,0.0 +18965,75,7.75,25,0.0 +18965,36,19,28,0.0 +18965,20,81,14,0.0 +18965,66,17,25,0.0 +18965,28,45.6,38,0.0 +18965,62,49.3,15,0.0 +18965,76,18,21,0.0 +18965,34,14,45,0.0 +18965,74,10,8,0.0 +18965,4,22,46,0.0 +18965,21,10,39,0.0 +18965,41,9.65,44,0.0 +18965,29,123.79,22,0.0 +18965,27,43.9,46,0.0 +18965,6,25,26,0.0 +18965,26,31.23,35,0.0 +18965,16,17.45,28,0.0 +18965,42,14,3,0.0 +18965,1,18,25,0.0 +18965,3,10,33,0.0 +18965,38,263.5,48,0.0 +18965,63,43.9,43,0.0 +18965,67,14,23,0.0 +18965,71,21.5,8,0.0 +18965,64,33.25,46,0.0 +18965,68,12.5,29,0.0 +18965,9,97,31,0.0 +18965,8,40,40,0.0 +18965,40,18.4,31,0.0 +18965,11,21,45,0.0 +18965,32,32,48,0.0 +18965,53,32.8,29,0.0 +18965,13,6,36,0.0 +18965,52,7,45,0.0 +18965,24,4.5,43,0.0 +18965,18,62.5,29,0.0 +18965,59,55,3,0.0 +18965,61,28.5,12,0.0 +18965,31,12.5,12,0.0 +18965,48,12.75,38,0.0 +18965,60,34,42,0.0 +18966,70,15,17,0.0 +18966,56,38,41,0.0 +18966,48,12.75,40,0.0 +18966,30,25.89,9,0.0 +18966,10,31,27,0.0 +18966,20,81,44,0.0 +18966,31,12.5,30,0.0 +18966,64,33.25,30,0.0 +18966,68,12.5,17,0.0 +18966,40,18.4,24,0.0 +18966,4,22,38,0.0 +18966,37,26,30,0.0 +18966,9,97,25,0.0 +18966,22,21,46,0.0 +18966,39,18,41,0.0 +18966,65,21.05,37,0.0 +18966,7,30,48,0.0 +18966,52,7,42,0.0 +18966,12,38,15,0.0 +18966,54,7.45,25,0.0 +18966,74,10,6,0.0 +18966,18,62.5,46,0.0 +18966,2,19,20,0.0 +18966,53,32.8,3,0.0 +18966,8,40,45,0.0 +18966,13,6,44,0.0 +18966,11,21,36,0.0 +18966,77,13,23,0.0 +18966,47,9.5,11,0.0 +18966,62,49.3,14,0.0 +18966,38,263.5,36,0.0 +18966,58,13.25,25,0.0 +18966,51,53,38,0.0 +18966,59,55,33,0.0 +18966,55,24,41,0.0 +18966,25,14,19,0.0 +18966,60,34,10,0.0 +18966,15,15.5,50,0.0 +18966,75,7.75,4,0.0 +18966,69,36,21,0.0 +18966,41,9.65,15,0.0 +18966,14,23.25,6,0.0 +18966,19,9.2,36,0.0 +18966,46,12,48,0.0 +18966,36,19,36,0.0 +18966,3,10,40,0.0 +18966,43,46,41,0.0 +18966,73,15,16,0.0 +18966,17,39,12,0.0 +18966,44,19.45,8,0.0 +18966,72,34.8,19,0.0 +18966,32,32,1,0.0 +18966,50,16.25,27,0.0 +18966,26,31.23,15,0.0 +18966,42,14,35,0.0 +18966,35,18,14,0.0 +18966,21,10,24,0.0 +18966,34,14,21,0.0 +18966,23,9,33,0.0 +18966,5,21.35,34,0.0 +18966,66,17,41,0.0 +18966,27,43.9,23,0.0 +18966,67,14,12,0.0 +18966,63,43.9,34,0.0 +18966,16,17.45,36,0.0 +18966,24,4.5,50,0.0 +18966,1,18,26,0.0 +18966,6,25,48,0.0 +18966,71,21.5,3,0.0 +18966,28,45.6,10,0.0 +18966,33,2.5,13,0.0 +18967,76,18,14,0.0 +18967,47,9.5,6,0.0 +18967,36,19,10,0.0 +18967,61,28.5,18,0.0 +18967,5,21.35,37,0.0 +18967,37,26,37,0.0 +18967,22,21,1,0.0 +18967,67,14,16,0.0 +18967,6,25,7,0.0 +18967,13,6,16,0.0 +18967,31,12.5,43,0.0 +18967,28,45.6,39,0.0 +18967,35,18,40,0.0 +18967,1,18,45,0.0 +18967,58,13.25,15,0.0 +18967,59,55,22,0.0 +18967,32,32,34,0.0 +18967,29,123.79,35,0.0 +18967,8,40,26,0.0 +18967,63,43.9,31,0.0 +18967,48,12.75,27,0.0 +18967,10,31,33,0.0 +18967,55,24,37,0.0 +18967,25,14,30,0.0 +18967,45,9.5,12,0.0 +18967,40,18.4,25,0.0 +18967,70,15,34,0.0 +18967,62,49.3,24,0.0 +18967,60,34,19,0.0 +18967,11,21,44,0.0 +18967,9,97,48,0.0 +18967,50,16.25,39,0.0 +18967,33,2.5,31,0.0 +18967,42,14,30,0.0 +18967,26,31.23,22,0.0 +18967,43,46,27,0.0 +18967,20,81,43,0.0 +18967,16,17.45,21,0.0 +18967,15,15.5,36,0.0 +18967,27,43.9,16,0.0 +18967,30,25.89,38,0.0 +18967,4,22,37,0.0 +18967,72,34.8,31,0.0 +18967,51,53,6,0.0 +18967,3,10,24,0.0 +18967,75,7.75,34,0.0 +18967,23,9,41,0.0 +18967,17,39,23,0.0 +18967,39,18,18,0.0 +18967,49,20,5,0.0 +18967,19,9.2,20,0.0 +18967,68,12.5,25,0.0 +18967,14,23.25,28,0.0 +18967,73,15,24,0.0 +18967,64,33.25,50,0.0 +18967,54,7.45,49,0.0 +18967,52,7,46,0.0 +18967,46,12,26,0.0 +18967,34,14,34,0.0 +18967,53,32.8,1,0.0 +18968,28,45.6,1,0.0 +18968,73,15,13,0.0 +18968,35,18,22,0.0 +18968,33,2.5,23,0.0 +18968,16,17.45,1,0.0 +18968,18,62.5,43,0.0 +18968,57,19.5,14,0.0 +18968,65,21.05,1,0.0 +18968,23,9,41,0.0 +18968,29,123.79,40,0.0 +18968,20,81,49,0.0 +18968,56,38,42,0.0 +18968,48,12.75,40,0.0 +18968,2,19,37,0.0 +18968,70,15,46,0.0 +18968,9,97,26,0.0 +18968,53,32.8,25,0.0 +18968,40,18.4,37,0.0 +18969,23,9,15,0.0 +18969,11,21,22,0.0 +18969,15,15.5,7,0.0 +18969,61,28.5,10,0.0 +18969,42,14,28,0.0 +18969,63,43.9,21,0.0 +18969,53,32.8,4,0.0 +18969,73,15,30,0.0 +18969,30,25.89,32,0.0 +18970,37,26,8,0.0 +18970,61,28.5,11,0.0 +18970,7,30,36,0.0 +18970,52,7,20,0.0 +18970,60,34,43,0.0 +18970,68,12.5,16,0.0 +18970,18,62.5,30,0.0 +18970,56,38,20,0.0 +18970,63,43.9,18,0.0 +18970,58,13.25,5,0.0 +18970,49,20,12,0.0 +18970,62,49.3,18,0.0 +18970,30,25.89,2,0.0 +18970,45,9.5,28,0.0 +18971,10,31,48,0.0 +18971,17,39,34,0.0 +18971,46,12,45,0.0 +18971,14,23.25,9,0.0 +18971,74,10,24,0.0 +18971,37,26,6,0.0 +18971,51,53,32,0.0 +18971,15,15.5,19,0.0 +18971,70,15,4,0.0 +18971,57,19.5,43,0.0 +18971,59,55,45,0.0 +18971,6,25,19,0.0 +18971,16,17.45,26,0.0 +18971,60,34,14,0.0 +18971,71,21.5,48,0.0 +18971,76,18,37,0.0 +18971,2,19,27,0.0 +18971,53,32.8,45,0.0 +18971,31,12.5,21,0.0 +18971,32,32,12,0.0 +18971,65,21.05,2,0.0 +18971,72,34.8,18,0.0 +18971,35,18,38,0.0 +18971,61,28.5,32,0.0 +18971,38,263.5,23,0.0 +18971,23,9,26,0.0 +18971,7,30,19,0.0 +18971,68,12.5,6,0.0 +18971,25,14,14,0.0 +18971,4,22,13,0.0 +18971,49,20,3,0.0 +18971,21,10,26,0.0 +18971,73,15,2,0.0 +18971,56,38,31,0.0 +18971,69,36,48,0.0 +18971,13,6,41,0.0 +18971,52,7,15,0.0 +18971,27,43.9,38,0.0 +18971,5,21.35,34,0.0 +18971,22,21,8,0.0 +18971,18,62.5,49,0.0 +18971,54,7.45,46,0.0 +18971,42,14,48,0.0 +18971,8,40,28,0.0 +18971,75,7.75,17,0.0 +18971,20,81,29,0.0 +18971,62,49.3,29,0.0 +18971,48,12.75,28,0.0 +18972,14,23.25,6,0.0 +18972,24,4.5,47,0.0 +18972,40,18.4,3,0.0 +18972,9,97,7,0.0 +18972,22,21,13,0.0 +18972,3,10,46,0.0 +18972,42,14,14,0.0 +18972,55,24,3,0.0 +18972,5,21.35,39,0.0 +18972,44,19.45,33,0.0 +18972,64,33.25,14,0.0 +18972,63,43.9,44,0.0 +18972,54,7.45,7,0.0 +18972,66,17,12,0.0 +18972,70,15,19,0.0 +18972,38,263.5,35,0.0 +18972,47,9.5,49,0.0 +18972,77,13,35,0.0 +18972,28,45.6,27,0.0 +18972,58,13.25,30,0.0 +18972,51,53,37,0.0 +18972,62,49.3,11,0.0 +18972,12,38,5,0.0 +18972,29,123.79,42,0.0 +18972,68,12.5,46,0.0 +18972,4,22,34,0.0 +18972,13,6,6,0.0 +18972,10,31,8,0.0 +18972,67,14,45,0.0 +18972,35,18,39,0.0 +18972,34,14,46,0.0 +18972,76,18,42,0.0 +18972,1,18,38,0.0 +18972,37,26,2,0.0 +18972,30,25.89,37,0.0 +18973,73,15,11,0.0 +18973,37,26,18,0.0 +18973,70,15,32,0.0 +18973,19,9.2,6,0.0 +18973,61,28.5,12,0.0 +18973,10,31,15,0.0 +18973,2,19,46,0.0 +18973,9,97,16,0.0 +18973,48,12.75,25,0.0 +18973,67,14,24,0.0 +18973,38,263.5,39,0.0 +18973,42,14,16,0.0 +18973,77,13,37,0.0 +18973,24,4.5,11,0.0 +18973,8,40,45,0.0 +18973,53,32.8,43,0.0 +18973,40,18.4,3,0.0 +18973,74,10,1,0.0 +18973,18,62.5,3,0.0 +18973,65,21.05,14,0.0 +18973,1,18,25,0.0 +18973,23,9,8,0.0 +18973,66,17,24,0.0 +18973,35,18,25,0.0 +18973,30,25.89,34,0.0 +18973,22,21,42,0.0 +18973,36,19,30,0.0 +18973,54,7.45,12,0.0 +18973,64,33.25,30,0.0 +18973,13,6,35,0.0 +18973,75,7.75,27,0.0 +18973,41,9.65,17,0.0 +18973,32,32,30,0.0 +18973,4,22,23,0.0 +18973,72,34.8,33,0.0 +18973,5,21.35,18,0.0 +18973,47,9.5,4,0.0 +18973,34,14,5,0.0 +18973,29,123.79,42,0.0 +18973,43,46,9,0.0 +18973,49,20,30,0.0 +18973,58,13.25,26,0.0 +18973,7,30,15,0.0 +18973,52,7,50,0.0 +18973,57,19.5,15,0.0 +18973,60,34,27,0.0 +18973,21,10,19,0.0 +18973,68,12.5,18,0.0 +18973,15,15.5,29,0.0 +18973,11,21,19,0.0 +18973,17,39,31,0.0 +18973,51,53,48,0.0 +18973,55,24,6,0.0 +18973,76,18,47,0.0 +18973,59,55,31,0.0 +18973,39,18,6,0.0 +18973,69,36,16,0.0 +18973,12,38,47,0.0 +18973,28,45.6,23,0.0 +18973,62,49.3,6,0.0 +18973,3,10,38,0.0 +18973,31,12.5,16,0.0 +18973,56,38,36,0.0 +18973,16,17.45,33,0.0 +18973,45,9.5,41,0.0 +18973,46,12,15,0.0 +18973,50,16.25,14,0.0 +18973,44,19.45,45,0.0 +18973,33,2.5,49,0.0 +18973,6,25,40,0.0 +18973,71,21.5,46,0.0 +18973,14,23.25,10,0.0 +18973,20,81,12,0.0 +18973,26,31.23,23,0.0 +18973,25,14,31,0.0 +18973,63,43.9,6,0.0 +18974,37,26,12,0.0 +18974,13,6,2,0.0 +18974,67,14,12,0.0 +18974,30,25.89,29,0.0 +18974,75,7.75,21,0.0 +18974,9,97,33,0.0 +18974,32,32,37,0.0 +18974,25,14,28,0.0 +18974,35,18,21,0.0 +18974,12,38,22,0.0 +18974,38,263.5,27,0.0 +18974,14,23.25,41,0.0 +18974,44,19.45,12,0.0 +18975,5,21.35,21,0.0 +18975,31,12.5,14,0.0 +18975,41,9.65,26,0.0 +18975,57,19.5,32,0.0 +18975,19,9.2,27,0.0 +18975,14,23.25,18,0.0 +18975,50,16.25,4,0.0 +18975,68,12.5,29,0.0 +18975,54,7.45,37,0.0 +18975,22,21,31,0.0 +18975,65,21.05,23,0.0 +18975,35,18,20,0.0 +18975,75,7.75,42,0.0 +18975,16,17.45,24,0.0 +18975,49,20,12,0.0 +18975,58,13.25,32,0.0 +18975,12,38,9,0.0 +18975,47,9.5,37,0.0 +18975,72,34.8,22,0.0 +18975,53,32.8,33,0.0 +18975,40,18.4,40,0.0 +18975,13,6,46,0.0 +18975,37,26,17,0.0 +18975,30,25.89,40,0.0 +18975,17,39,41,0.0 +18975,44,19.45,42,0.0 +18975,6,25,13,0.0 +18975,45,9.5,18,0.0 +18975,42,14,27,0.0 +18975,23,9,18,0.0 +18975,32,32,14,0.0 +18975,60,34,29,0.0 +18975,74,10,13,0.0 +18975,69,36,12,0.0 +18975,55,24,17,0.0 +18975,2,19,11,0.0 +18975,77,13,21,0.0 +18975,34,14,27,0.0 +18975,46,12,23,0.0 +18975,39,18,45,0.0 +18975,15,15.5,4,0.0 +18975,52,7,13,0.0 +18975,71,21.5,36,0.0 +18975,51,53,11,0.0 +18975,29,123.79,13,0.0 +18976,14,23.25,14,0.0 +18976,4,22,37,0.0 +18976,42,14,24,0.0 +18976,69,36,33,0.0 +18976,50,16.25,35,0.0 +18976,62,49.3,35,0.0 +18976,49,20,42,0.0 +18976,43,46,16,0.0 +18976,71,21.5,30,0.0 +18976,32,32,1,0.0 +18976,31,12.5,15,0.0 +18976,55,24,19,0.0 +18976,44,19.45,45,0.0 +18976,3,10,43,0.0 +18976,41,9.65,41,0.0 +18976,6,25,50,0.0 +18976,11,21,6,0.0 +18976,33,2.5,16,0.0 +18977,44,19.45,11,0.0 +18977,25,14,23,0.0 +18977,66,17,3,0.0 +18977,9,97,50,0.0 +18977,64,33.25,26,0.0 +18977,10,31,50,0.0 +18977,75,7.75,21,0.0 +18977,39,18,39,0.0 +18977,2,19,44,0.0 +18977,8,40,50,0.0 +18977,32,32,6,0.0 +18977,21,10,33,0.0 +18977,67,14,43,0.0 +18977,40,18.4,41,0.0 +18977,37,26,22,0.0 +18977,11,21,33,0.0 +18977,27,43.9,1,0.0 +18977,77,13,9,0.0 +18977,46,12,10,0.0 +18977,73,15,5,0.0 +18977,45,9.5,21,0.0 +18977,19,9.2,49,0.0 +18977,61,28.5,34,0.0 +18977,65,21.05,16,0.0 +18977,70,15,33,0.0 +18977,57,19.5,38,0.0 +18977,33,2.5,38,0.0 +18977,74,10,34,0.0 +18977,28,45.6,20,0.0 +18977,17,39,24,0.0 +18977,29,123.79,25,0.0 +18977,18,62.5,2,0.0 +18977,48,12.75,38,0.0 +18977,56,38,36,0.0 +18977,36,19,35,0.0 +18977,68,12.5,45,0.0 +18977,16,17.45,49,0.0 +18977,50,16.25,42,0.0 +18977,49,20,27,0.0 +18977,41,9.65,17,0.0 +18977,35,18,49,0.0 +18977,63,43.9,4,0.0 +18977,51,53,13,0.0 +18977,42,14,11,0.0 +18977,30,25.89,4,0.0 +18977,15,15.5,6,0.0 +18977,55,24,19,0.0 +18977,52,7,29,0.0 +18977,54,7.45,19,0.0 +18977,14,23.25,28,0.0 +18977,38,263.5,19,0.0 +18977,6,25,46,0.0 +18977,24,4.5,28,0.0 +18977,72,34.8,13,0.0 +18977,31,12.5,10,0.0 +18977,53,32.8,50,0.0 +18978,69,36,4,0.0 +18978,7,30,41,0.0 +18978,74,10,43,0.0 +18978,65,21.05,5,0.0 +18978,3,10,1,0.0 +18978,37,26,48,0.0 +18978,38,263.5,3,0.0 +18978,42,14,50,0.0 +18978,15,15.5,20,0.0 +18978,25,14,43,0.0 +18978,16,17.45,33,0.0 +18978,47,9.5,50,0.0 +18978,43,46,30,0.0 +18978,44,19.45,47,0.0 +18978,61,28.5,9,0.0 +18978,28,45.6,8,0.0 +18978,67,14,29,0.0 +18978,32,32,8,0.0 +18978,49,20,16,0.0 +18978,6,25,5,0.0 +18978,33,2.5,22,0.0 +18978,57,19.5,41,0.0 +18978,10,31,17,0.0 +18978,64,33.25,39,0.0 +18978,23,9,50,0.0 +18978,72,34.8,44,0.0 +18978,58,13.25,48,0.0 +18978,39,18,43,0.0 +18978,29,123.79,8,0.0 +18978,21,10,13,0.0 +18978,2,19,31,0.0 +18978,24,4.5,41,0.0 +18978,13,6,22,0.0 +18978,1,18,29,0.0 +18978,8,40,32,0.0 +18978,30,25.89,25,0.0 +18978,34,14,25,0.0 +18978,5,21.35,4,0.0 +18978,68,12.5,28,0.0 +18978,75,7.75,8,0.0 +18978,62,49.3,36,0.0 +18978,11,21,26,0.0 +18978,60,34,24,0.0 +18978,18,62.5,16,0.0 +18978,73,15,17,0.0 +18978,41,9.65,46,0.0 +18978,48,12.75,39,0.0 +18978,56,38,6,0.0 +18978,12,38,50,0.0 +18978,53,32.8,31,0.0 +18978,76,18,22,0.0 +18978,17,39,25,0.0 +18978,9,97,39,0.0 +18978,54,7.45,36,0.0 +18978,77,13,8,0.0 +18978,45,9.5,8,0.0 +18978,19,9.2,10,0.0 +18978,36,19,31,0.0 +18978,52,7,14,0.0 +18978,46,12,42,0.0 +18978,20,81,42,0.0 +18978,35,18,6,0.0 +18978,40,18.4,28,0.0 +18978,71,21.5,27,0.0 +18978,31,12.5,17,0.0 +18978,51,53,43,0.0 +18978,63,43.9,42,0.0 +18978,26,31.23,50,0.0 +18978,70,15,7,0.0 +18978,55,24,33,0.0 +18978,22,21,14,0.0 +18978,66,17,46,0.0 +18978,27,43.9,14,0.0 +18978,14,23.25,32,0.0 +18979,10,31,31,0.0 +18979,72,34.8,36,0.0 +18979,27,43.9,41,0.0 +18979,25,14,34,0.0 +18979,22,21,3,0.0 +18979,9,97,42,0.0 +18979,46,12,43,0.0 +18979,55,24,28,0.0 +18979,19,9.2,12,0.0 +18979,16,17.45,34,0.0 +18979,57,19.5,5,0.0 +18979,1,18,39,0.0 +18979,4,22,29,0.0 +18979,30,25.89,15,0.0 +18979,18,62.5,45,0.0 +18979,70,15,6,0.0 +18979,32,32,42,0.0 +18979,76,18,26,0.0 +18979,37,26,15,0.0 +18979,12,38,18,0.0 +18979,31,12.5,22,0.0 +18979,2,19,26,0.0 +18979,36,19,34,0.0 +18979,14,23.25,19,0.0 +18979,53,32.8,40,0.0 +18979,73,15,50,0.0 +18979,6,25,19,0.0 +18979,33,2.5,14,0.0 +18979,20,81,42,0.0 +18979,50,16.25,43,0.0 +18979,51,53,45,0.0 +18979,71,21.5,50,0.0 +18979,40,18.4,4,0.0 +18979,41,9.65,32,0.0 +18979,39,18,41,0.0 +18979,42,14,32,0.0 +18979,58,13.25,41,0.0 +18979,23,9,33,0.0 +18979,66,17,24,0.0 +18979,68,12.5,26,0.0 +18979,52,7,49,0.0 +18979,49,20,3,0.0 +18979,43,46,11,0.0 +18979,17,39,34,0.0 +18979,59,55,6,0.0 +18979,60,34,41,0.0 +18979,24,4.5,45,0.0 +18979,8,40,39,0.0 +18979,63,43.9,5,0.0 +18979,48,12.75,18,0.0 +18979,64,33.25,33,0.0 +18979,75,7.75,14,0.0 +18979,54,7.45,9,0.0 +18979,67,14,46,0.0 +18979,38,263.5,26,0.0 +18979,65,21.05,49,0.0 +18979,11,21,47,0.0 +18979,35,18,22,0.0 +18979,7,30,2,0.0 +18979,28,45.6,43,0.0 +18979,34,14,30,0.0 +18979,47,9.5,7,0.0 +18979,5,21.35,50,0.0 +18979,21,10,21,0.0 +18979,3,10,30,0.0 +18979,45,9.5,40,0.0 +18979,77,13,15,0.0 +18979,44,19.45,7,0.0 +18980,32,32,35,0.0 +18980,56,38,36,0.0 +18980,76,18,46,0.0 +18980,18,62.5,37,0.0 +18980,68,12.5,32,0.0 +18980,60,34,27,0.0 +18980,69,36,5,0.0 +18980,8,40,44,0.0 +18980,6,25,17,0.0 +18980,34,14,28,0.0 +18980,2,19,47,0.0 +18980,14,23.25,40,0.0 +18980,77,13,38,0.0 +18980,24,4.5,19,0.0 +18980,51,53,13,0.0 +18980,44,19.45,33,0.0 +18980,73,15,35,0.0 +18980,53,32.8,25,0.0 +18980,36,19,21,0.0 +18980,5,21.35,41,0.0 +18980,23,9,16,0.0 +18980,29,123.79,41,0.0 +18980,28,45.6,44,0.0 +18980,27,43.9,19,0.0 +18980,39,18,39,0.0 +18980,65,21.05,5,0.0 +18980,19,9.2,25,0.0 +18980,61,28.5,49,0.0 +18980,12,38,5,0.0 +18980,7,30,44,0.0 +18980,52,7,18,0.0 +18980,46,12,22,0.0 +18980,4,22,41,0.0 +18980,75,7.75,35,0.0 +18980,54,7.45,36,0.0 +18980,59,55,13,0.0 +18980,1,18,23,0.0 +18980,35,18,38,0.0 +18980,16,17.45,8,0.0 +18980,26,31.23,12,0.0 +18980,40,18.4,14,0.0 +18980,33,2.5,37,0.0 +18980,22,21,3,0.0 +18980,49,20,35,0.0 +18980,25,14,4,0.0 +18980,43,46,31,0.0 +18980,72,34.8,7,0.0 +18980,42,14,1,0.0 +18980,71,21.5,12,0.0 +18980,9,97,19,0.0 +18980,41,9.65,34,0.0 +18980,45,9.5,5,0.0 +18980,64,33.25,46,0.0 +18980,11,21,31,0.0 +18980,70,15,16,0.0 +18980,66,17,34,0.0 +18980,74,10,37,0.0 +18980,50,16.25,48,0.0 +18980,58,13.25,36,0.0 +18980,20,81,46,0.0 +18980,48,12.75,29,0.0 +18980,62,49.3,42,0.0 +18981,71,21.5,31,0.0 +18981,58,13.25,17,0.0 +18981,31,12.5,48,0.0 +18981,39,18,48,0.0 +18981,75,7.75,4,0.0 +18981,65,21.05,18,0.0 +18981,30,25.89,37,0.0 +18981,54,7.45,49,0.0 +18981,70,15,49,0.0 +18981,26,31.23,50,0.0 +18981,50,16.25,39,0.0 +18981,66,17,32,0.0 +18981,23,9,4,0.0 +18981,48,12.75,36,0.0 +18981,67,14,44,0.0 +18981,64,33.25,34,0.0 +18981,57,19.5,43,0.0 +18981,5,21.35,26,0.0 +18981,20,81,6,0.0 +18981,34,14,9,0.0 +18981,2,19,4,0.0 +18981,14,23.25,36,0.0 +18981,6,25,22,0.0 +18981,3,10,24,0.0 +18981,29,123.79,23,0.0 +18981,28,45.6,49,0.0 +18981,10,31,35,0.0 +18981,56,38,24,0.0 +18981,8,40,11,0.0 +18982,60,34,27,0.0 +18982,55,24,34,0.0 +18982,14,23.25,18,0.0 +18982,64,33.25,4,0.0 +18982,71,21.5,2,0.0 +18982,2,19,25,0.0 +18982,73,15,49,0.0 +18982,74,10,4,0.0 +18982,22,21,4,0.0 +18982,42,14,21,0.0 +18982,28,45.6,8,0.0 +18982,35,18,30,0.0 +18982,20,81,5,0.0 +18982,46,12,3,0.0 +18982,7,30,9,0.0 +18982,39,18,2,0.0 +18982,43,46,21,0.0 +18982,58,13.25,28,0.0 +18982,19,9.2,30,0.0 +18982,21,10,44,0.0 +18982,53,32.8,39,0.0 +18982,24,4.5,2,0.0 +18982,69,36,16,0.0 +18982,18,62.5,43,0.0 +18982,12,38,15,0.0 +18982,61,28.5,4,0.0 +18982,47,9.5,15,0.0 +18982,56,38,36,0.0 +18982,57,19.5,30,0.0 +18982,66,17,41,0.0 +18982,48,12.75,35,0.0 +18982,75,7.75,20,0.0 +18982,41,9.65,35,0.0 +18982,23,9,46,0.0 +18982,54,7.45,11,0.0 +18982,5,21.35,39,0.0 +18982,11,21,23,0.0 +18982,63,43.9,9,0.0 +18982,6,25,43,0.0 +18982,65,21.05,27,0.0 +18982,26,31.23,7,0.0 +18982,36,19,39,0.0 +18982,50,16.25,8,0.0 +18982,4,22,24,0.0 +18982,15,15.5,4,0.0 +18982,25,14,49,0.0 +18982,34,14,18,0.0 +18982,49,20,6,0.0 +18982,62,49.3,34,0.0 +18982,72,34.8,49,0.0 +18982,51,53,34,0.0 +18982,8,40,50,0.0 +18982,32,32,26,0.0 +18982,37,26,32,0.0 +18982,44,19.45,13,0.0 +18982,33,2.5,48,0.0 +18982,1,18,24,0.0 +18982,77,13,3,0.0 +18982,9,97,8,0.0 +18982,38,263.5,19,0.0 +18982,29,123.79,12,0.0 +18982,31,12.5,30,0.0 +18982,30,25.89,39,0.0 +18982,59,55,31,0.0 +18982,76,18,48,0.0 +18982,70,15,15,0.0 +18982,68,12.5,36,0.0 +18982,3,10,42,0.0 +18982,17,39,11,0.0 +18982,13,6,12,0.0 +18983,53,32.8,41,0.0 +18983,8,40,34,0.0 +18983,58,13.25,14,0.0 +18983,25,14,37,0.0 +18983,22,21,44,0.0 +18983,57,19.5,13,0.0 +18983,16,17.45,29,0.0 +18983,38,263.5,25,0.0 +18983,64,33.25,31,0.0 +18983,19,9.2,33,0.0 +18983,46,12,45,0.0 +18983,74,10,9,0.0 +18983,5,21.35,12,0.0 +18983,30,25.89,15,0.0 +18983,45,9.5,39,0.0 +18983,75,7.75,11,0.0 +18983,61,28.5,45,0.0 +18983,50,16.25,31,0.0 +18983,9,97,33,0.0 +18983,37,26,16,0.0 +18983,77,13,35,0.0 +18983,70,15,38,0.0 +18983,39,18,23,0.0 +18983,29,123.79,32,0.0 +18983,56,38,33,0.0 +18983,4,22,31,0.0 +18983,62,49.3,21,0.0 +18983,23,9,44,0.0 +18983,68,12.5,6,0.0 +18983,65,21.05,23,0.0 +18983,47,9.5,19,0.0 +18983,15,15.5,17,0.0 +18983,40,18.4,10,0.0 +18983,55,24,22,0.0 +18983,63,43.9,6,0.0 +18983,7,30,24,0.0 +18983,41,9.65,4,0.0 +18983,32,32,19,0.0 +18983,48,12.75,18,0.0 +18983,27,43.9,48,0.0 +18983,28,45.6,18,0.0 +18983,17,39,46,0.0 +18983,69,36,48,0.0 +18983,72,34.8,39,0.0 +18983,10,31,16,0.0 +18983,76,18,10,0.0 +18983,36,19,27,0.0 +18983,33,2.5,13,0.0 +18983,20,81,22,0.0 +18983,12,38,46,0.0 +18983,73,15,6,0.0 +18983,60,34,50,0.0 +18983,59,55,7,0.0 +18983,43,46,46,0.0 +18983,11,21,3,0.0 +18983,24,4.5,45,0.0 +18983,31,12.5,41,0.0 +18983,66,17,11,0.0 +18983,35,18,50,0.0 +18983,14,23.25,20,0.0 +18983,1,18,42,0.0 +18983,44,19.45,7,0.0 +18983,18,62.5,12,0.0 +18983,54,7.45,15,0.0 +18983,34,14,6,0.0 +18983,52,7,2,0.0 +18983,26,31.23,33,0.0 +18983,67,14,28,0.0 +18983,49,20,27,0.0 +18983,51,53,9,0.0 +18983,2,19,27,0.0 +18983,21,10,20,0.0 +18983,3,10,6,0.0 +18984,11,21,1,0.0 +18984,30,25.89,5,0.0 +18984,36,19,25,0.0 +18984,6,25,32,0.0 +18984,7,30,19,0.0 +18984,16,17.45,19,0.0 +18984,76,18,6,0.0 +18984,39,18,12,0.0 +18984,51,53,10,0.0 +18984,12,38,5,0.0 +18984,68,12.5,16,0.0 +18984,5,21.35,15,0.0 +18984,43,46,8,0.0 +18984,22,21,36,0.0 +18984,14,23.25,17,0.0 +18984,3,10,49,0.0 +18984,50,16.25,21,0.0 +18984,26,31.23,34,0.0 +18984,37,26,4,0.0 +18984,9,97,46,0.0 +18984,44,19.45,12,0.0 +18984,25,14,23,0.0 +18984,61,28.5,37,0.0 +18984,45,9.5,40,0.0 +18984,47,9.5,41,0.0 +18984,69,36,16,0.0 +18984,27,43.9,16,0.0 +18984,71,21.5,30,0.0 +18984,75,7.75,33,0.0 +18984,18,62.5,4,0.0 +18984,58,13.25,13,0.0 +18984,20,81,17,0.0 +18984,49,20,35,0.0 +18984,64,33.25,27,0.0 +18984,38,263.5,10,0.0 +18984,35,18,22,0.0 +18984,32,32,1,0.0 +18984,59,55,2,0.0 +18984,24,4.5,49,0.0 +18984,33,2.5,33,0.0 +18984,2,19,40,0.0 +18984,1,18,3,0.0 +18984,72,34.8,27,0.0 +18984,21,10,26,0.0 +18984,62,49.3,26,0.0 +18984,34,14,35,0.0 +18984,74,10,10,0.0 +18984,4,22,34,0.0 +18984,63,43.9,42,0.0 +18984,56,38,15,0.0 +18984,65,21.05,42,0.0 +18984,46,12,35,0.0 +18984,8,40,44,0.0 +18984,23,9,39,0.0 +18984,53,32.8,28,0.0 +18984,55,24,41,0.0 +18984,15,15.5,1,0.0 +18984,31,12.5,11,0.0 +18984,67,14,12,0.0 +18984,77,13,5,0.0 +18984,57,19.5,13,0.0 +18984,40,18.4,1,0.0 +18985,14,23.25,23,0.0 +18985,73,15,31,0.0 +18985,68,12.5,35,0.0 +18985,54,7.45,48,0.0 +18985,46,12,41,0.0 +18986,50,16.25,14,0.0 +18986,9,97,5,0.0 +18986,49,20,44,0.0 +18986,23,9,38,0.0 +18986,30,25.89,42,0.0 +18986,7,30,33,0.0 +18986,44,19.45,27,0.0 +18986,3,10,26,0.0 +18986,54,7.45,13,0.0 +18986,52,7,20,0.0 +18986,16,17.45,36,0.0 +18986,47,9.5,28,0.0 +18986,22,21,19,0.0 +18986,55,24,17,0.0 +18986,32,32,43,0.0 +18986,24,4.5,8,0.0 +18986,8,40,18,0.0 +18986,12,38,9,0.0 +18986,1,18,20,0.0 +18986,40,18.4,46,0.0 +18986,63,43.9,19,0.0 +18986,28,45.6,7,0.0 +18986,41,9.65,7,0.0 +18986,43,46,38,0.0 +18986,39,18,28,0.0 +18986,76,18,16,0.0 +18986,19,9.2,39,0.0 +18986,26,31.23,30,0.0 +18986,35,18,49,0.0 +18986,62,49.3,9,0.0 +18986,69,36,19,0.0 +18986,68,12.5,26,0.0 +18986,33,2.5,21,0.0 +18986,13,6,36,0.0 +18986,42,14,29,0.0 +18986,77,13,42,0.0 +18986,6,25,30,0.0 +18986,25,14,11,0.0 +18986,48,12.75,33,0.0 +18987,73,15,32,0.0 +18987,50,16.25,45,0.0 +18987,76,18,6,0.0 +18987,67,14,45,0.0 +18987,46,12,12,0.0 +18987,36,19,34,0.0 +18987,49,20,5,0.0 +18987,65,21.05,13,0.0 +18987,55,24,28,0.0 +18987,20,81,30,0.0 +18987,32,32,46,0.0 +18987,33,2.5,6,0.0 +18987,16,17.45,22,0.0 +18987,11,21,49,0.0 +18987,53,32.8,16,0.0 +18987,15,15.5,15,0.0 +18987,17,39,41,0.0 +18987,41,9.65,38,0.0 +18987,56,38,11,0.0 +18987,8,40,31,0.0 +18987,43,46,47,0.0 +18987,24,4.5,48,0.0 +18987,23,9,37,0.0 +18987,28,45.6,36,0.0 +18987,45,9.5,33,0.0 +18987,59,55,44,0.0 +18988,73,15,3,0.0 +18988,62,49.3,24,0.0 +18988,34,14,36,0.0 +18988,32,32,49,0.0 +18988,27,43.9,50,0.0 +18988,15,15.5,50,0.0 +18988,10,31,38,0.0 +18988,66,17,6,0.0 +18988,38,263.5,15,0.0 +18988,72,34.8,33,0.0 +18988,51,53,47,0.0 +18989,71,21.5,48,0.0 +18989,31,12.5,50,0.0 +18989,61,28.5,27,0.0 +18989,5,21.35,21,0.0 +18989,2,19,42,0.0 +18989,24,4.5,26,0.0 +18989,66,17,19,0.0 +18989,36,19,25,0.0 +18989,33,2.5,46,0.0 +18989,16,17.45,11,0.0 +18989,40,18.4,19,0.0 +18989,11,21,29,0.0 +18989,27,43.9,27,0.0 +18989,25,14,34,0.0 +18989,41,9.65,48,0.0 +18989,73,15,7,0.0 +18989,18,62.5,1,0.0 +18989,34,14,36,0.0 +18989,67,14,13,0.0 +18989,38,263.5,1,0.0 +18989,26,31.23,8,0.0 +18989,46,12,46,0.0 +18989,49,20,24,0.0 +18989,35,18,14,0.0 +18989,39,18,40,0.0 +18989,59,55,2,0.0 +18989,12,38,48,0.0 +18989,76,18,31,0.0 +18989,37,26,47,0.0 +18989,57,19.5,7,0.0 +18989,72,34.8,14,0.0 +18989,52,7,16,0.0 +18989,20,81,22,0.0 +18989,53,32.8,41,0.0 +18989,43,46,29,0.0 +18989,45,9.5,21,0.0 +18989,48,12.75,12,0.0 +18990,32,32,18,0.0 +18990,15,15.5,14,0.0 +18990,40,18.4,39,0.0 +18990,13,6,42,0.0 +18990,63,43.9,15,0.0 +18990,76,18,26,0.0 +18990,72,34.8,19,0.0 +18990,9,97,30,0.0 +18990,34,14,22,0.0 +18990,45,9.5,42,0.0 +18990,19,9.2,6,0.0 +18990,14,23.25,21,0.0 +18990,50,16.25,25,0.0 +18990,59,55,45,0.0 +18990,38,263.5,32,0.0 +18990,71,21.5,19,0.0 +18990,25,14,38,0.0 +18990,49,20,32,0.0 +18990,29,123.79,49,0.0 +18990,4,22,47,0.0 +18990,5,21.35,12,0.0 +18990,36,19,40,0.0 +18990,70,15,24,0.0 +18990,33,2.5,37,0.0 +18990,6,25,10,0.0 +18990,66,17,19,0.0 +18990,51,53,44,0.0 +18990,20,81,40,0.0 +18990,43,46,50,0.0 +18990,56,38,24,0.0 +18990,8,40,26,0.0 +18990,52,7,22,0.0 +18990,22,21,3,0.0 +18990,2,19,31,0.0 +18990,74,10,13,0.0 +18990,26,31.23,4,0.0 +18990,37,26,25,0.0 +18990,58,13.25,46,0.0 +18990,28,45.6,6,0.0 +18990,17,39,22,0.0 +18990,62,49.3,36,0.0 +18991,15,15.5,3,0.0 +18991,12,38,29,0.0 +18991,43,46,26,0.0 +18991,29,123.79,23,0.0 +18991,11,21,40,0.0 +18991,18,62.5,13,0.0 +18991,23,9,15,0.0 +18991,55,24,3,0.0 +18991,60,34,27,0.0 +18991,1,18,14,0.0 +18991,42,14,29,0.0 +18991,4,22,3,0.0 +18991,59,55,5,0.0 +18991,2,19,41,0.0 +18991,77,13,29,0.0 +18991,62,49.3,41,0.0 +18991,72,34.8,10,0.0 +18991,5,21.35,5,0.0 +18991,54,7.45,5,0.0 +18991,40,18.4,36,0.0 +18991,38,263.5,26,0.0 +18991,16,17.45,29,0.0 +18991,73,15,48,0.0 +18991,44,19.45,28,0.0 +18991,58,13.25,31,0.0 +18991,25,14,20,0.0 +18991,70,15,11,0.0 +18991,22,21,49,0.0 +18991,56,38,25,0.0 +18991,27,43.9,2,0.0 +18991,17,39,27,0.0 +18991,46,12,32,0.0 +18991,33,2.5,40,0.0 +18991,49,20,6,0.0 +18991,24,4.5,22,0.0 +18991,65,21.05,10,0.0 +18991,51,53,44,0.0 +18991,53,32.8,22,0.0 +18991,36,19,35,0.0 +18991,37,26,34,0.0 +18991,47,9.5,23,0.0 +18991,68,12.5,40,0.0 +18991,34,14,6,0.0 +18991,64,33.25,2,0.0 +18991,41,9.65,4,0.0 +18991,19,9.2,39,0.0 +18991,39,18,8,0.0 +18991,71,21.5,41,0.0 +18991,67,14,4,0.0 +18991,21,10,6,0.0 +18991,6,25,20,0.0 +18991,63,43.9,35,0.0 +18991,74,10,40,0.0 +18991,9,97,12,0.0 +18991,32,32,44,0.0 +18991,26,31.23,22,0.0 +18991,57,19.5,28,0.0 +18991,3,10,7,0.0 +18991,76,18,27,0.0 +18991,50,16.25,21,0.0 +18991,20,81,8,0.0 +18991,69,36,40,0.0 +18991,45,9.5,13,0.0 +18991,35,18,29,0.0 +18991,14,23.25,49,0.0 +18991,31,12.5,41,0.0 +18992,72,34.8,22,0.0 +18992,53,32.8,2,0.0 +18992,36,19,11,0.0 +18992,59,55,38,0.0 +18992,39,18,29,0.0 +18992,65,21.05,23,0.0 +18992,51,53,14,0.0 +18992,16,17.45,34,0.0 +18992,13,6,46,0.0 +18992,10,31,33,0.0 +18992,24,4.5,34,0.0 +18992,29,123.79,1,0.0 +18992,41,9.65,50,0.0 +18992,58,13.25,27,0.0 +18992,31,12.5,9,0.0 +18992,25,14,44,0.0 +18992,57,19.5,48,0.0 +18992,22,21,14,0.0 +18992,23,9,50,0.0 +18992,7,30,41,0.0 +18992,61,28.5,48,0.0 +18992,32,32,40,0.0 +18992,73,15,20,0.0 +18992,3,10,19,0.0 +18992,62,49.3,3,0.0 +18992,11,21,23,0.0 +18992,14,23.25,42,0.0 +18992,43,46,2,0.0 +18992,54,7.45,31,0.0 +18992,1,18,38,0.0 +18992,26,31.23,22,0.0 +18992,34,14,44,0.0 +18992,6,25,26,0.0 +18992,2,19,42,0.0 +18992,77,13,29,0.0 +18992,17,39,46,0.0 +18992,35,18,21,0.0 +18992,4,22,3,0.0 +18992,71,21.5,7,0.0 +18992,49,20,1,0.0 +18992,64,33.25,48,0.0 +18992,66,17,28,0.0 +18992,5,21.35,1,0.0 +18992,8,40,40,0.0 +18992,21,10,30,0.0 +18992,38,263.5,19,0.0 +18992,15,15.5,46,0.0 +18992,70,15,25,0.0 +18992,18,62.5,50,0.0 +18992,69,36,1,0.0 +18992,55,24,34,0.0 +18992,9,97,7,0.0 +18992,27,43.9,18,0.0 +18992,37,26,29,0.0 +18992,46,12,12,0.0 +18992,76,18,33,0.0 +18992,20,81,44,0.0 +18992,40,18.4,4,0.0 +18993,12,38,25,0.0 +18993,48,12.75,13,0.0 +18993,55,24,13,0.0 +18993,11,21,8,0.0 +18993,58,13.25,17,0.0 +18993,14,23.25,25,0.0 +18993,50,16.25,46,0.0 +18993,27,43.9,17,0.0 +18993,44,19.45,24,0.0 +18993,41,9.65,12,0.0 +18993,45,9.5,4,0.0 +18993,52,7,42,0.0 +18993,15,15.5,10,0.0 +18993,59,55,37,0.0 +18993,16,17.45,10,0.0 +18993,75,7.75,16,0.0 +18993,56,38,47,0.0 +18993,25,14,12,0.0 +18993,42,14,1,0.0 +18993,28,45.6,11,0.0 +18993,2,19,21,0.0 +18993,51,53,41,0.0 +18993,72,34.8,16,0.0 +18993,21,10,20,0.0 +18993,64,33.25,35,0.0 +18993,30,25.89,35,0.0 +18993,73,15,37,0.0 +18993,32,32,7,0.0 +18993,29,123.79,38,0.0 +18993,22,21,19,0.0 +18993,33,2.5,45,0.0 +18993,19,9.2,7,0.0 +18993,26,31.23,12,0.0 +18993,9,97,34,0.0 +18993,49,20,35,0.0 +18993,70,15,6,0.0 +18993,5,21.35,7,0.0 +18993,43,46,45,0.0 +18993,10,31,19,0.0 +18993,8,40,32,0.0 +18993,35,18,50,0.0 +18993,71,21.5,27,0.0 +18993,34,14,30,0.0 +18993,62,49.3,23,0.0 +18993,74,10,49,0.0 +18993,47,9.5,6,0.0 +18993,7,30,13,0.0 +18993,76,18,18,0.0 +18993,37,26,31,0.0 +18993,53,32.8,6,0.0 +18993,69,36,45,0.0 +18993,17,39,44,0.0 +18994,9,97,12,0.0 +18994,72,34.8,5,0.0 +18994,48,12.75,31,0.0 +18994,56,38,36,0.0 +18994,36,19,33,0.0 +18994,43,46,47,0.0 +18994,49,20,49,0.0 +18994,76,18,17,0.0 +18994,22,21,3,0.0 +18994,65,21.05,26,0.0 +18994,7,30,33,0.0 +18994,63,43.9,18,0.0 +18994,50,16.25,43,0.0 +18994,40,18.4,37,0.0 +18995,47,9.5,41,0.0 +18995,37,26,50,0.0 +18995,73,15,3,0.0 +18995,63,43.9,36,0.0 +18995,13,6,9,0.0 +18995,15,15.5,11,0.0 +18995,70,15,49,0.0 +18995,5,21.35,19,0.0 +18995,3,10,32,0.0 +18995,26,31.23,24,0.0 +18995,74,10,30,0.0 +18995,71,21.5,9,0.0 +18995,44,19.45,38,0.0 +18995,20,81,38,0.0 +18995,75,7.75,36,0.0 +18995,1,18,14,0.0 +18995,64,33.25,42,0.0 +18995,14,23.25,47,0.0 +18995,38,263.5,25,0.0 +18995,56,38,13,0.0 +18995,6,25,6,0.0 +18995,32,32,11,0.0 +18995,68,12.5,5,0.0 +18995,36,19,34,0.0 +18995,59,55,12,0.0 +18995,35,18,24,0.0 +18995,24,4.5,45,0.0 +18995,12,38,12,0.0 +18995,7,30,8,0.0 +18995,22,21,38,0.0 +18995,61,28.5,38,0.0 +18995,28,45.6,21,0.0 +18995,23,9,5,0.0 +18995,33,2.5,15,0.0 +18995,10,31,30,0.0 +18995,25,14,13,0.0 +18995,40,18.4,22,0.0 +18995,39,18,13,0.0 +18995,67,14,28,0.0 +18995,77,13,32,0.0 +18995,76,18,25,0.0 +18995,43,46,40,0.0 +18995,54,7.45,27,0.0 +18995,9,97,45,0.0 +18995,2,19,32,0.0 +18996,20,81,7,0.0 +18996,69,36,31,0.0 +18996,40,18.4,41,0.0 +18996,2,19,29,0.0 +18996,34,14,44,0.0 +18996,4,22,31,0.0 +18996,8,40,5,0.0 +18996,64,33.25,1,0.0 +18996,57,19.5,10,0.0 +18996,12,38,25,0.0 +18996,36,19,20,0.0 +18996,27,43.9,33,0.0 +18996,52,7,23,0.0 +18996,55,24,47,0.0 +18996,42,14,23,0.0 +18996,59,55,15,0.0 +18996,26,31.23,26,0.0 +18996,35,18,25,0.0 +18996,58,13.25,35,0.0 +18996,54,7.45,33,0.0 +18996,32,32,24,0.0 +18996,22,21,28,0.0 +18996,14,23.25,29,0.0 +18996,24,4.5,25,0.0 +18996,38,263.5,35,0.0 +18996,60,34,5,0.0 +18996,47,9.5,17,0.0 +18996,72,34.8,8,0.0 +18996,77,13,16,0.0 +18996,76,18,31,0.0 +18996,43,46,43,0.0 +18996,15,15.5,16,0.0 +18996,37,26,7,0.0 +18996,48,12.75,34,0.0 +18996,28,45.6,10,0.0 +18996,5,21.35,36,0.0 +18996,9,97,10,0.0 +18996,25,14,10,0.0 +18996,13,6,11,0.0 +18996,75,7.75,43,0.0 +18996,3,10,42,0.0 +18996,23,9,43,0.0 +18996,33,2.5,48,0.0 +18996,6,25,11,0.0 +18996,44,19.45,36,0.0 +18996,1,18,34,0.0 +18996,63,43.9,46,0.0 +18996,65,21.05,18,0.0 +18996,31,12.5,13,0.0 +18996,51,53,48,0.0 +18996,50,16.25,8,0.0 +18997,33,2.5,45,0.0 +18997,77,13,10,0.0 +18997,2,19,5,0.0 +18997,43,46,40,0.0 +18997,46,12,6,0.0 +18997,52,7,1,0.0 +18997,48,12.75,39,0.0 +18997,9,97,35,0.0 +18997,6,25,47,0.0 +18997,57,19.5,3,0.0 +18997,18,62.5,46,0.0 +18997,7,30,41,0.0 +18997,76,18,5,0.0 +18997,41,9.65,26,0.0 +18997,34,14,14,0.0 +18997,8,40,26,0.0 +18997,55,24,12,0.0 +18997,68,12.5,2,0.0 +18997,20,81,23,0.0 +18997,72,34.8,4,0.0 +18997,26,31.23,25,0.0 +18997,53,32.8,33,0.0 +18997,54,7.45,45,0.0 +18997,4,22,11,0.0 +18997,65,21.05,47,0.0 +18997,64,33.25,46,0.0 +18997,60,34,39,0.0 +18997,70,15,45,0.0 +18997,69,36,48,0.0 +18997,28,45.6,39,0.0 +18997,16,17.45,47,0.0 +18997,45,9.5,20,0.0 +18997,32,32,30,0.0 +18997,47,9.5,4,0.0 +18997,66,17,38,0.0 +18997,1,18,47,0.0 +18997,24,4.5,8,0.0 +18997,23,9,44,0.0 +18997,74,10,4,0.0 +18997,13,6,1,0.0 +18997,50,16.25,26,0.0 +18997,59,55,23,0.0 +18997,12,38,41,0.0 +18997,75,7.75,33,0.0 +18997,27,43.9,16,0.0 +18997,61,28.5,43,0.0 +18997,49,20,4,0.0 +18997,36,19,44,0.0 +18997,35,18,21,0.0 +18997,73,15,35,0.0 +18997,40,18.4,25,0.0 +18997,10,31,13,0.0 +18997,71,21.5,33,0.0 +18997,39,18,21,0.0 +18997,37,26,7,0.0 +18997,31,12.5,18,0.0 +18997,63,43.9,30,0.0 +18997,22,21,22,0.0 +18997,3,10,47,0.0 +18997,51,53,13,0.0 +18997,42,14,33,0.0 +18997,38,263.5,8,0.0 +18997,58,13.25,31,0.0 +18997,56,38,42,0.0 +18997,21,10,28,0.0 +18997,67,14,21,0.0 +18997,29,123.79,46,0.0 +18997,5,21.35,2,0.0 +18997,11,21,47,0.0 +18997,44,19.45,7,0.0 +18997,15,15.5,11,0.0 +18997,19,9.2,46,0.0 +18997,25,14,7,0.0 +18997,62,49.3,5,0.0 +18998,25,14,7,0.0 +18999,60,34,34,0.0 +18999,55,24,44,0.0 +18999,2,19,45,0.0 +18999,58,13.25,11,0.0 +18999,3,10,13,0.0 +18999,25,14,39,0.0 +18999,36,19,29,0.0 +18999,74,10,27,0.0 +18999,21,10,30,0.0 +18999,14,23.25,48,0.0 +18999,5,21.35,47,0.0 +18999,34,14,27,0.0 +18999,15,15.5,8,0.0 +18999,50,16.25,4,0.0 +18999,75,7.75,22,0.0 +18999,24,4.5,6,0.0 +18999,38,263.5,20,0.0 +18999,66,17,43,0.0 +18999,61,28.5,39,0.0 +18999,32,32,20,0.0 +18999,26,31.23,46,0.0 +18999,6,25,6,0.0 +18999,23,9,49,0.0 +18999,64,33.25,29,0.0 +18999,54,7.45,16,0.0 +18999,76,18,31,0.0 +18999,45,9.5,13,0.0 +18999,22,21,9,0.0 +18999,67,14,20,0.0 +18999,10,31,23,0.0 +18999,27,43.9,2,0.0 +18999,19,9.2,38,0.0 +18999,63,43.9,48,0.0 +18999,7,30,23,0.0 +18999,68,12.5,2,0.0 +18999,42,14,7,0.0 +18999,69,36,46,0.0 +18999,52,7,39,0.0 +18999,29,123.79,44,0.0 +18999,35,18,47,0.0 +18999,28,45.6,23,0.0 +18999,30,25.89,13,0.0 +18999,44,19.45,31,0.0 +18999,11,21,46,0.0 +18999,1,18,44,0.0 +18999,53,32.8,46,0.0 +18999,57,19.5,32,0.0 +18999,37,26,20,0.0 +18999,18,62.5,39,0.0 +18999,73,15,31,0.0 +19000,74,10,18,0.0 +19000,7,30,49,0.0 +19000,15,15.5,41,0.0 +19000,10,31,20,0.0 +19000,63,43.9,3,0.0 +19000,12,38,16,0.0 +19000,51,53,50,0.0 +19000,8,40,44,0.0 +19000,5,21.35,49,0.0 +19000,23,9,16,0.0 +19000,16,17.45,14,0.0 +19000,71,21.5,9,0.0 +19000,75,7.75,25,0.0 +19000,6,25,43,0.0 +19000,14,23.25,47,0.0 +19000,1,18,50,0.0 +19000,17,39,33,0.0 +19000,33,2.5,25,0.0 +19000,50,16.25,26,0.0 +19000,76,18,7,0.0 +19000,2,19,22,0.0 +19000,22,21,15,0.0 +19000,54,7.45,24,0.0 +19000,9,97,7,0.0 +19000,61,28.5,50,0.0 +19000,56,38,27,0.0 +19000,44,19.45,5,0.0 +19000,53,32.8,15,0.0 +19000,20,81,22,0.0 +19000,73,15,31,0.0 +19000,3,10,20,0.0 +19000,19,9.2,36,0.0 +19000,30,25.89,25,0.0 +19000,26,31.23,1,0.0 +19000,4,22,4,0.0 +19000,37,26,25,0.0 +19000,13,6,7,0.0 +19000,62,49.3,26,0.0 +19000,41,9.65,23,0.0 +19000,11,21,2,0.0 +19000,40,18.4,38,0.0 +19000,46,12,37,0.0 +19000,48,12.75,7,0.0 +19000,58,13.25,4,0.0 +19000,18,62.5,10,0.0 +19000,34,14,31,0.0 +19000,65,21.05,4,0.0 +19000,35,18,23,0.0 +19000,39,18,23,0.0 +19000,66,17,15,0.0 +19000,57,19.5,24,0.0 +19000,45,9.5,40,0.0 +19000,27,43.9,16,0.0 +19001,18,62.5,39,0.0 +19001,46,12,11,0.0 +19001,42,14,44,0.0 +19002,74,10,34,0.0 +19002,66,17,32,0.0 +19002,69,36,27,0.0 +19002,1,18,10,0.0 +19002,47,9.5,45,0.0 +19002,10,31,32,0.0 +19002,49,20,13,0.0 +19002,73,15,43,0.0 +19002,42,14,19,0.0 +19002,58,13.25,17,0.0 +19002,71,21.5,6,0.0 +19002,57,19.5,48,0.0 +19002,33,2.5,44,0.0 +19002,30,25.89,6,0.0 +19002,64,33.25,15,0.0 +19002,32,32,19,0.0 +19002,5,21.35,23,0.0 +19002,70,15,24,0.0 +19002,61,28.5,49,0.0 +19002,60,34,15,0.0 +19002,9,97,20,0.0 +19002,11,21,3,0.0 +19002,15,15.5,35,0.0 +19002,38,263.5,38,0.0 +19002,29,123.79,6,0.0 +19002,19,9.2,3,0.0 +19002,54,7.45,45,0.0 +19002,12,38,28,0.0 +19002,56,38,32,0.0 +19002,2,19,19,0.0 +19002,3,10,43,0.0 +19002,68,12.5,27,0.0 +19002,20,81,1,0.0 +19002,46,12,14,0.0 +19002,37,26,15,0.0 +19002,40,18.4,33,0.0 +19002,24,4.5,19,0.0 +19002,22,21,2,0.0 +19002,26,31.23,6,0.0 +19002,62,49.3,49,0.0 +19002,51,53,39,0.0 +19002,17,39,4,0.0 +19002,63,43.9,34,0.0 +19002,43,46,11,0.0 +19002,25,14,44,0.0 +19002,44,19.45,27,0.0 +19002,6,25,30,0.0 +19002,76,18,9,0.0 +19002,14,23.25,45,0.0 +19002,8,40,6,0.0 +19002,41,9.65,36,0.0 +19002,48,12.75,18,0.0 +19002,31,12.5,2,0.0 +19002,36,19,6,0.0 +19002,67,14,27,0.0 +19003,56,38,40,0.0 +19003,66,17,11,0.0 +19003,72,34.8,12,0.0 +19003,27,43.9,27,0.0 +19003,24,4.5,37,0.0 +19003,8,40,16,0.0 +19003,55,24,35,0.0 +19003,1,18,37,0.0 +19003,44,19.45,36,0.0 +19003,50,16.25,7,0.0 +19003,42,14,30,0.0 +19003,74,10,26,0.0 +19003,3,10,11,0.0 +19003,61,28.5,5,0.0 +19003,4,22,1,0.0 +19003,60,34,41,0.0 +19003,25,14,5,0.0 +19003,31,12.5,25,0.0 +19003,36,19,16,0.0 +19003,73,15,31,0.0 +19003,12,38,10,0.0 +19003,43,46,47,0.0 +19003,40,18.4,13,0.0 +19003,33,2.5,50,0.0 +19003,21,10,24,0.0 +19003,35,18,19,0.0 +19003,28,45.6,41,0.0 +19003,22,21,2,0.0 +19003,46,12,48,0.0 +19003,70,15,8,0.0 +19003,58,13.25,43,0.0 +19003,63,43.9,18,0.0 +19003,64,33.25,19,0.0 +19003,59,55,17,0.0 +19003,17,39,27,0.0 +19003,6,25,41,0.0 +19003,65,21.05,26,0.0 +19003,67,14,23,0.0 +19003,18,62.5,16,0.0 +19003,10,31,7,0.0 +19003,23,9,2,0.0 +19003,29,123.79,21,0.0 +19003,52,7,2,0.0 +19003,7,30,49,0.0 +19003,51,53,33,0.0 +19004,5,21.35,30,0.0 +19004,46,12,35,0.0 +19004,63,43.9,32,0.0 +19004,34,14,46,0.0 +19004,29,123.79,6,0.0 +19004,36,19,33,0.0 +19004,27,43.9,34,0.0 +19004,55,24,2,0.0 +19004,9,97,27,0.0 +19004,59,55,30,0.0 +19004,60,34,22,0.0 +19004,72,34.8,27,0.0 +19004,53,32.8,43,0.0 +19004,65,21.05,8,0.0 +19004,49,20,36,0.0 +19004,64,33.25,37,0.0 +19004,19,9.2,6,0.0 +19004,77,13,8,0.0 +19004,26,31.23,27,0.0 +19004,75,7.75,37,0.0 +19004,3,10,33,0.0 +19004,10,31,8,0.0 +19004,58,13.25,11,0.0 +19004,47,9.5,12,0.0 +19004,23,9,35,0.0 +19004,16,17.45,49,0.0 +19004,32,32,15,0.0 +19004,11,21,8,0.0 +19004,13,6,35,0.0 +19004,67,14,29,0.0 +19004,66,17,40,0.0 +19004,31,12.5,12,0.0 +19004,30,25.89,19,0.0 +19004,14,23.25,47,0.0 +19004,15,15.5,5,0.0 +19004,35,18,46,0.0 +19004,43,46,42,0.0 +19004,41,9.65,1,0.0 +19004,21,10,43,0.0 +19004,54,7.45,38,0.0 +19004,42,14,44,0.0 +19004,51,53,4,0.0 +19004,73,15,50,0.0 +19004,17,39,39,0.0 +19004,20,81,6,0.0 +19004,33,2.5,31,0.0 +19004,68,12.5,29,0.0 +19004,37,26,26,0.0 +19004,61,28.5,2,0.0 +19004,7,30,7,0.0 +19004,56,38,36,0.0 +19004,52,7,25,0.0 +19005,22,21,28,0.0 +19005,75,7.75,11,0.0 +19005,73,15,31,0.0 +19005,9,97,39,0.0 +19005,37,26,11,0.0 +19005,16,17.45,18,0.0 +19005,11,21,15,0.0 +19005,8,40,17,0.0 +19005,67,14,2,0.0 +19005,33,2.5,16,0.0 +19005,34,14,13,0.0 +19005,23,9,17,0.0 +19005,58,13.25,28,0.0 +19005,13,6,15,0.0 +19005,35,18,8,0.0 +19005,17,39,18,0.0 +19005,50,16.25,36,0.0 +19005,54,7.45,49,0.0 +19005,68,12.5,41,0.0 +19005,1,18,48,0.0 +19005,52,7,16,0.0 +19005,77,13,32,0.0 +19005,74,10,38,0.0 +19005,27,43.9,29,0.0 +19005,42,14,32,0.0 +19005,19,9.2,20,0.0 +19005,26,31.23,1,0.0 +19005,71,21.5,34,0.0 +19005,20,81,43,0.0 +19005,28,45.6,35,0.0 +19006,48,12.75,40,0.0 +19006,37,26,15,0.0 +19006,28,45.6,25,0.0 +19006,16,17.45,48,0.0 +19006,63,43.9,28,0.0 +19006,33,2.5,12,0.0 +19006,2,19,7,0.0 +19006,47,9.5,8,0.0 +19006,27,43.9,27,0.0 +19006,72,34.8,25,0.0 +19006,7,30,46,0.0 +19006,24,4.5,25,0.0 +19006,59,55,18,0.0 +19006,10,31,44,0.0 +19006,19,9.2,32,0.0 +19006,11,21,31,0.0 +19006,13,6,32,0.0 +19006,43,46,25,0.0 +19006,9,97,2,0.0 +19006,53,32.8,48,0.0 +19006,14,23.25,30,0.0 +19006,61,28.5,28,0.0 +19006,44,19.45,15,0.0 +19006,41,9.65,30,0.0 +19006,64,33.25,41,0.0 +19006,38,263.5,45,0.0 +19006,73,15,16,0.0 +19006,57,19.5,39,0.0 +19006,77,13,39,0.0 +19006,54,7.45,21,0.0 +19006,50,16.25,28,0.0 +19006,12,38,17,0.0 +19006,75,7.75,22,0.0 +19006,62,49.3,45,0.0 +19006,26,31.23,24,0.0 +19006,45,9.5,25,0.0 +19006,40,18.4,16,0.0 +19006,21,10,20,0.0 +19006,36,19,10,0.0 +19006,46,12,44,0.0 +19006,69,36,33,0.0 +19006,15,15.5,19,0.0 +19006,17,39,9,0.0 +19006,76,18,15,0.0 +19006,66,17,33,0.0 +19006,74,10,17,0.0 +19006,23,9,48,0.0 +19006,22,21,50,0.0 +19006,18,62.5,8,0.0 +19006,58,13.25,22,0.0 +19006,32,32,39,0.0 +19006,1,18,33,0.0 +19006,3,10,3,0.0 +19006,30,25.89,1,0.0 +19006,25,14,28,0.0 +19006,20,81,47,0.0 +19006,70,15,39,0.0 +19006,4,22,11,0.0 +19006,60,34,31,0.0 +19006,35,18,42,0.0 +19006,68,12.5,28,0.0 +19006,29,123.79,41,0.0 +19007,64,33.25,13,0.0 +19007,52,7,19,0.0 +19007,61,28.5,7,0.0 +19007,46,12,18,0.0 +19007,23,9,6,0.0 +19007,5,21.35,21,0.0 +19007,21,10,11,0.0 +19007,17,39,8,0.0 +19007,34,14,41,0.0 +19007,10,31,38,0.0 +19007,58,13.25,21,0.0 +19007,68,12.5,23,0.0 +19007,55,24,5,0.0 +19007,16,17.45,36,0.0 +19007,43,46,25,0.0 +19007,74,10,36,0.0 +19007,65,21.05,4,0.0 +19007,41,9.65,36,0.0 +19007,53,32.8,45,0.0 +19007,15,15.5,45,0.0 +19007,63,43.9,1,0.0 +19007,51,53,42,0.0 +19007,56,38,4,0.0 +19007,39,18,49,0.0 +19007,18,62.5,32,0.0 +19007,60,34,33,0.0 +19007,77,13,19,0.0 +19007,1,18,38,0.0 +19008,12,38,35,0.0 +19008,69,36,35,0.0 +19008,23,9,33,0.0 +19008,73,15,15,0.0 +19008,77,13,50,0.0 +19008,65,21.05,50,0.0 +19008,45,9.5,34,0.0 +19008,19,9.2,47,0.0 +19008,13,6,14,0.0 +19008,55,24,8,0.0 +19008,15,15.5,7,0.0 +19008,64,33.25,26,0.0 +19008,40,18.4,9,0.0 +19008,22,21,22,0.0 +19008,53,32.8,35,0.0 +19008,38,263.5,20,0.0 +19008,41,9.65,1,0.0 +19008,48,12.75,4,0.0 +19008,76,18,48,0.0 +19008,70,15,26,0.0 +19008,8,40,37,0.0 +19008,44,19.45,12,0.0 +19008,43,46,13,0.0 +19008,18,62.5,18,0.0 +19008,9,97,15,0.0 +19008,7,30,27,0.0 +19008,59,55,26,0.0 +19008,35,18,50,0.0 +19008,39,18,19,0.0 +19008,4,22,11,0.0 +19008,5,21.35,5,0.0 +19008,52,7,44,0.0 +19008,21,10,6,0.0 +19008,47,9.5,27,0.0 +19008,32,32,20,0.0 +19008,63,43.9,25,0.0 +19008,29,123.79,46,0.0 +19008,51,53,4,0.0 +19008,61,28.5,16,0.0 +19008,26,31.23,7,0.0 +19008,34,14,44,0.0 +19008,57,19.5,46,0.0 +19008,67,14,23,0.0 +19008,56,38,26,0.0 +19008,11,21,1,0.0 +19008,31,12.5,11,0.0 +19008,71,21.5,14,0.0 +19008,25,14,42,0.0 +19008,58,13.25,16,0.0 +19008,49,20,50,0.0 +19008,2,19,30,0.0 +19008,6,25,7,0.0 +19008,46,12,38,0.0 +19008,42,14,35,0.0 +19008,28,45.6,44,0.0 +19008,17,39,12,0.0 +19008,60,34,19,0.0 +19008,75,7.75,7,0.0 +19008,50,16.25,27,0.0 +19008,33,2.5,32,0.0 +19008,68,12.5,46,0.0 +19008,10,31,10,0.0 +19008,20,81,11,0.0 +19008,36,19,14,0.0 +19008,54,7.45,50,0.0 +19008,16,17.45,36,0.0 +19008,30,25.89,28,0.0 +19008,27,43.9,23,0.0 +19008,14,23.25,36,0.0 +19008,74,10,26,0.0 +19008,3,10,7,0.0 +19008,37,26,36,0.0 +19008,66,17,39,0.0 +19008,1,18,30,0.0 +19008,24,4.5,45,0.0 +19008,62,49.3,39,0.0 +19009,63,43.9,46,0.0 +19009,49,20,48,0.0 +19009,10,31,29,0.0 +19009,64,33.25,26,0.0 +19009,15,15.5,8,0.0 +19009,3,10,25,0.0 +19009,43,46,48,0.0 +19009,54,7.45,15,0.0 +19009,2,19,31,0.0 +19009,61,28.5,26,0.0 +19009,20,81,8,0.0 +19009,48,12.75,8,0.0 +19009,7,30,1,0.0 +19009,19,9.2,9,0.0 +19009,16,17.45,50,0.0 +19009,18,62.5,10,0.0 +19009,56,38,31,0.0 +19009,6,25,29,0.0 +19009,33,2.5,5,0.0 +19009,42,14,36,0.0 +19009,25,14,7,0.0 +19009,65,21.05,36,0.0 +19009,26,31.23,16,0.0 +19009,35,18,50,0.0 +19009,4,22,25,0.0 +19009,13,6,22,0.0 +19009,71,21.5,41,0.0 +19009,41,9.65,26,0.0 +19009,8,40,37,0.0 +19009,12,38,43,0.0 +19009,47,9.5,9,0.0 +19009,27,43.9,10,0.0 +19010,70,15,23,0.0 +19010,18,62.5,32,0.0 +19010,23,9,37,0.0 +19010,52,7,39,0.0 +19010,1,18,25,0.0 +19010,66,17,6,0.0 +19010,32,32,28,0.0 +19010,72,34.8,3,0.0 +19010,53,32.8,42,0.0 +19010,59,55,17,0.0 +19010,5,21.35,9,0.0 +19010,20,81,28,0.0 +19010,49,20,37,0.0 +19010,3,10,7,0.0 +19010,65,21.05,9,0.0 +19010,55,24,45,0.0 +19010,36,19,19,0.0 +19010,62,49.3,2,0.0 +19010,28,45.6,15,0.0 +19010,37,26,14,0.0 +19010,12,38,25,0.0 +19010,6,25,18,0.0 +19010,29,123.79,26,0.0 +19010,69,36,46,0.0 +19010,77,13,50,0.0 +19010,9,97,8,0.0 +19010,35,18,22,0.0 +19010,24,4.5,38,0.0 +19010,56,38,1,0.0 +19010,46,12,49,0.0 +19010,2,19,50,0.0 +19010,43,46,1,0.0 +19010,7,30,26,0.0 +19010,38,263.5,12,0.0 +19010,51,53,1,0.0 +19010,30,25.89,6,0.0 +19010,48,12.75,20,0.0 +19010,25,14,4,0.0 +19010,50,16.25,25,0.0 +19010,74,10,30,0.0 +19010,58,13.25,41,0.0 +19010,14,23.25,22,0.0 +19010,60,34,15,0.0 +19010,13,6,20,0.0 +19010,39,18,6,0.0 +19010,67,14,20,0.0 +19010,11,21,31,0.0 +19010,10,31,21,0.0 +19010,33,2.5,25,0.0 +19010,61,28.5,41,0.0 +19010,57,19.5,4,0.0 +19010,31,12.5,7,0.0 +19010,73,15,14,0.0 +19010,64,33.25,2,0.0 +19010,22,21,30,0.0 +19010,4,22,36,0.0 +19010,34,14,22,0.0 +19010,44,19.45,33,0.0 +19010,68,12.5,12,0.0 +19010,45,9.5,42,0.0 +19010,8,40,42,0.0 +19010,75,7.75,13,0.0 +19010,71,21.5,41,0.0 +19010,42,14,43,0.0 +19010,21,10,23,0.0 +19010,41,9.65,10,0.0 +19010,15,15.5,16,0.0 +19010,76,18,41,0.0 +19010,54,7.45,2,0.0 +19010,19,9.2,11,0.0 +19011,31,12.5,46,0.0 +19011,32,32,6,0.0 +19011,69,36,4,0.0 +19011,35,18,24,0.0 +19011,26,31.23,37,0.0 +19011,1,18,27,0.0 +19011,11,21,20,0.0 +19011,33,2.5,38,0.0 +19011,13,6,50,0.0 +19011,3,10,33,0.0 +19011,59,55,30,0.0 +19011,47,9.5,16,0.0 +19011,71,21.5,29,0.0 +19011,25,14,33,0.0 +19011,40,18.4,30,0.0 +19011,14,23.25,46,0.0 +19011,43,46,30,0.0 +19012,44,19.45,43,0.0 +19012,6,25,2,0.0 +19012,3,10,50,0.0 +19012,38,263.5,38,0.0 +19012,35,18,9,0.0 +19012,56,38,26,0.0 +19012,17,39,33,0.0 +19012,5,21.35,42,0.0 +19012,60,34,28,0.0 +19012,64,33.25,5,0.0 +19012,68,12.5,50,0.0 +19012,72,34.8,44,0.0 +19012,27,43.9,23,0.0 +19012,54,7.45,20,0.0 +19012,61,28.5,5,0.0 +19012,57,19.5,47,0.0 +19012,2,19,9,0.0 +19012,21,10,34,0.0 +19013,2,19,12,0.0 +19013,46,12,43,0.0 +19013,55,24,15,0.0 +19013,47,9.5,17,0.0 +19013,7,30,10,0.0 +19013,53,32.8,22,0.0 +19013,30,25.89,26,0.0 +19013,19,9.2,6,0.0 +19013,73,15,29,0.0 +19013,67,14,3,0.0 +19013,59,55,47,0.0 +19013,44,19.45,7,0.0 +19013,61,28.5,42,0.0 +19013,43,46,5,0.0 +19013,49,20,36,0.0 +19013,1,18,20,0.0 +19013,22,21,32,0.0 +19013,40,18.4,29,0.0 +19013,23,9,28,0.0 +19013,35,18,7,0.0 +19013,6,25,13,0.0 +19013,74,10,1,0.0 +19013,34,14,2,0.0 +19013,32,32,16,0.0 +19013,38,263.5,36,0.0 +19013,3,10,29,0.0 +19013,20,81,1,0.0 +19013,60,34,40,0.0 +19013,51,53,43,0.0 +19013,25,14,1,0.0 +19013,68,12.5,3,0.0 +19013,36,19,11,0.0 +19013,29,123.79,12,0.0 +19013,9,97,14,0.0 +19013,57,19.5,29,0.0 +19013,24,4.5,6,0.0 +19013,28,45.6,30,0.0 +19013,41,9.65,16,0.0 +19013,4,22,9,0.0 +19013,12,38,33,0.0 +19013,33,2.5,31,0.0 +19013,56,38,33,0.0 +19013,16,17.45,17,0.0 +19013,72,34.8,31,0.0 +19013,10,31,23,0.0 +19013,27,43.9,35,0.0 +19013,26,31.23,34,0.0 +19013,63,43.9,19,0.0 +19013,70,15,13,0.0 +19013,15,15.5,3,0.0 +19013,37,26,10,0.0 +19013,13,6,41,0.0 +19013,71,21.5,4,0.0 +19013,69,36,32,0.0 +19013,77,13,28,0.0 +19013,39,18,24,0.0 +19013,66,17,19,0.0 +19013,64,33.25,49,0.0 +19013,58,13.25,4,0.0 +19013,75,7.75,25,0.0 +19013,45,9.5,2,0.0 +19013,52,7,37,0.0 +19013,42,14,5,0.0 +19013,76,18,34,0.0 +19013,21,10,28,0.0 +19013,14,23.25,46,0.0 +19014,64,33.25,26,0.0 +19014,49,20,11,0.0 +19014,4,22,25,0.0 +19014,10,31,36,0.0 +19014,35,18,34,0.0 +19014,42,14,8,0.0 +19014,68,12.5,6,0.0 +19014,61,28.5,41,0.0 +19014,67,14,23,0.0 +19014,47,9.5,20,0.0 +19014,21,10,2,0.0 +19014,38,263.5,14,0.0 +19014,46,12,19,0.0 +19014,29,123.79,5,0.0 +19014,2,19,11,0.0 +19014,20,81,7,0.0 +19014,57,19.5,27,0.0 +19014,16,17.45,7,0.0 +19014,53,32.8,49,0.0 +19014,69,36,25,0.0 +19014,45,9.5,30,0.0 +19014,22,21,9,0.0 +19014,52,7,46,0.0 +19014,66,17,1,0.0 +19014,3,10,48,0.0 +19014,32,32,33,0.0 +19014,54,7.45,12,0.0 +19014,18,62.5,4,0.0 +19014,27,43.9,14,0.0 +19014,40,18.4,6,0.0 +19014,72,34.8,42,0.0 +19014,26,31.23,23,0.0 +19014,63,43.9,30,0.0 +19014,77,13,1,0.0 +19014,62,49.3,12,0.0 +19014,6,25,32,0.0 +19014,17,39,30,0.0 +19014,7,30,27,0.0 +19015,70,15,49,0.0 +19015,6,25,5,0.0 +19015,14,23.25,45,0.0 +19015,53,32.8,1,0.0 +19015,1,18,43,0.0 +19015,30,25.89,28,0.0 +19015,49,20,30,0.0 +19015,66,17,30,0.0 +19015,33,2.5,47,0.0 +19015,42,14,39,0.0 +19015,11,21,45,0.0 +19015,34,14,27,0.0 +19015,45,9.5,9,0.0 +19015,65,21.05,15,0.0 +19015,58,13.25,32,0.0 +19015,23,9,49,0.0 +19015,63,43.9,38,0.0 +19015,10,31,14,0.0 +19015,24,4.5,49,0.0 +19015,59,55,18,0.0 +19015,68,12.5,16,0.0 +19015,54,7.45,49,0.0 +19015,50,16.25,6,0.0 +19015,60,34,21,0.0 +19015,8,40,1,0.0 +19015,31,12.5,34,0.0 +19015,61,28.5,43,0.0 +19015,74,10,10,0.0 +19015,64,33.25,34,0.0 +19015,46,12,43,0.0 +19015,56,38,21,0.0 +19015,5,21.35,23,0.0 +19015,15,15.5,1,0.0 +19015,27,43.9,39,0.0 +19015,29,123.79,20,0.0 +19015,67,14,29,0.0 +19015,71,21.5,27,0.0 +19015,47,9.5,16,0.0 +19015,40,18.4,15,0.0 +19015,62,49.3,13,0.0 +19015,28,45.6,17,0.0 +19015,39,18,28,0.0 +19015,44,19.45,23,0.0 +19015,26,31.23,47,0.0 +19015,2,19,33,0.0 +19015,41,9.65,50,0.0 +19015,55,24,28,0.0 +19015,19,9.2,7,0.0 +19015,21,10,30,0.0 +19015,12,38,24,0.0 +19015,75,7.75,46,0.0 +19015,43,46,46,0.0 +19015,77,13,43,0.0 +19015,57,19.5,44,0.0 +19015,18,62.5,45,0.0 +19015,17,39,49,0.0 +19015,36,19,3,0.0 +19015,25,14,11,0.0 +19015,20,81,26,0.0 +19015,9,97,30,0.0 +19015,3,10,11,0.0 +19015,51,53,4,0.0 +19015,7,30,32,0.0 +19015,13,6,19,0.0 +19016,24,4.5,32,0.0 +19016,32,32,32,0.0 +19016,48,12.75,3,0.0 +19016,77,13,26,0.0 +19016,73,15,33,0.0 +19016,41,9.65,10,0.0 +19016,38,263.5,22,0.0 +19016,70,15,2,0.0 +19016,44,19.45,30,0.0 +19016,22,21,32,0.0 +19016,40,18.4,26,0.0 +19016,28,45.6,14,0.0 +19016,31,12.5,16,0.0 +19016,64,33.25,18,0.0 +19016,52,7,22,0.0 +19016,27,43.9,14,0.0 +19016,2,19,21,0.0 +19016,62,49.3,10,0.0 +19016,47,9.5,38,0.0 +19016,29,123.79,50,0.0 +19016,72,34.8,44,0.0 +19016,30,25.89,1,0.0 +19016,5,21.35,3,0.0 +19016,7,30,3,0.0 +19016,51,53,22,0.0 +19016,54,7.45,4,0.0 +19016,49,20,18,0.0 +19016,55,24,3,0.0 +19016,43,46,18,0.0 +19016,75,7.75,37,0.0 +19016,12,38,14,0.0 +19016,42,14,47,0.0 +19016,67,14,34,0.0 +19016,35,18,3,0.0 +19016,26,31.23,26,0.0 +19016,1,18,44,0.0 +19016,61,28.5,13,0.0 +19016,4,22,48,0.0 +19017,7,30,10,0.0 +19017,27,43.9,33,0.0 +19017,6,25,5,0.0 +19017,32,32,41,0.0 +19017,38,263.5,35,0.0 +19017,54,7.45,7,0.0 +19017,11,21,38,0.0 +19017,59,55,18,0.0 +19017,19,9.2,40,0.0 +19017,50,16.25,48,0.0 +19017,70,15,42,0.0 +19017,2,19,37,0.0 +19017,56,38,49,0.0 +19017,16,17.45,35,0.0 +19017,5,21.35,18,0.0 +19017,65,21.05,3,0.0 +19017,63,43.9,8,0.0 +19018,39,18,22,0.0 +19018,42,14,39,0.0 +19018,67,14,18,0.0 +19018,70,15,7,0.0 +19018,54,7.45,27,0.0 +19018,74,10,39,0.0 +19018,69,36,3,0.0 +19018,48,12.75,13,0.0 +19018,71,21.5,1,0.0 +19018,13,6,43,0.0 +19018,77,13,2,0.0 +19018,45,9.5,47,0.0 +19018,15,15.5,34,0.0 +19018,56,38,14,0.0 +19018,7,30,28,0.0 +19018,24,4.5,6,0.0 +19018,28,45.6,5,0.0 +19018,26,31.23,27,0.0 +19018,53,32.8,15,0.0 +19018,9,97,43,0.0 +19018,12,38,29,0.0 +19018,72,34.8,6,0.0 +19018,46,12,37,0.0 +19018,19,9.2,42,0.0 +19018,2,19,13,0.0 +19018,33,2.5,23,0.0 +19018,51,53,50,0.0 +19018,18,62.5,3,0.0 +19018,31,12.5,29,0.0 +19018,41,9.65,8,0.0 +19018,40,18.4,27,0.0 +19018,23,9,36,0.0 +19018,4,22,5,0.0 +19018,76,18,14,0.0 +19018,55,24,47,0.0 +19018,1,18,45,0.0 +19018,20,81,1,0.0 +19018,73,15,7,0.0 +19018,17,39,15,0.0 +19018,36,19,32,0.0 +19018,32,32,41,0.0 +19018,14,23.25,4,0.0 +19018,58,13.25,47,0.0 +19018,38,263.5,10,0.0 +19018,11,21,21,0.0 +19018,60,34,41,0.0 +19018,21,10,33,0.0 +19018,6,25,48,0.0 +19018,61,28.5,47,0.0 +19018,50,16.25,49,0.0 +19018,68,12.5,37,0.0 +19018,29,123.79,23,0.0 +19018,52,7,30,0.0 +19018,25,14,37,0.0 +19018,34,14,45,0.0 +19018,22,21,26,0.0 +19018,16,17.45,35,0.0 +19018,27,43.9,26,0.0 +19018,8,40,11,0.0 +19018,63,43.9,30,0.0 +19018,64,33.25,9,0.0 +19018,3,10,28,0.0 +19018,10,31,8,0.0 +19018,37,26,1,0.0 +19018,49,20,5,0.0 +19018,75,7.75,16,0.0 +19018,62,49.3,20,0.0 +19018,66,17,9,0.0 +19018,5,21.35,10,0.0 +19018,35,18,40,0.0 +19018,57,19.5,48,0.0 +19018,59,55,49,0.0 +19019,36,19,43,0.0 +19019,28,45.6,35,0.0 +19019,68,12.5,1,0.0 +19019,51,53,34,0.0 +19019,49,20,27,0.0 +19019,29,123.79,22,0.0 +19020,72,34.8,10,0.0 +19020,18,62.5,6,0.0 +19020,29,123.79,25,0.0 +19020,49,20,7,0.0 +19020,61,28.5,34,0.0 +19020,69,36,21,0.0 +19020,9,97,44,0.0 +19020,35,18,9,0.0 +19020,30,25.89,24,0.0 +19020,19,9.2,44,0.0 +19020,36,19,14,0.0 +19020,8,40,50,0.0 +19020,39,18,35,0.0 +19020,4,22,44,0.0 +19020,42,14,5,0.0 +19020,26,31.23,31,0.0 +19020,3,10,14,0.0 +19020,2,19,43,0.0 +19020,12,38,21,0.0 +19020,14,23.25,42,0.0 +19020,65,21.05,21,0.0 +19020,24,4.5,28,0.0 +19020,57,19.5,44,0.0 +19020,64,33.25,42,0.0 +19020,67,14,4,0.0 +19020,43,46,28,0.0 +19020,32,32,46,0.0 +19020,46,12,20,0.0 +19020,73,15,1,0.0 +19020,66,17,39,0.0 +19020,44,19.45,12,0.0 +19020,52,7,19,0.0 +19020,75,7.75,18,0.0 +19020,10,31,40,0.0 +19020,22,21,21,0.0 +19020,20,81,12,0.0 +19020,21,10,42,0.0 +19020,34,14,26,0.0 +19020,53,32.8,40,0.0 +19020,58,13.25,29,0.0 +19020,68,12.5,20,0.0 +19020,23,9,47,0.0 +19020,17,39,26,0.0 +19020,60,34,38,0.0 +19020,15,15.5,50,0.0 +19020,55,24,8,0.0 +19020,76,18,29,0.0 +19020,11,21,12,0.0 +19020,63,43.9,36,0.0 +19020,59,55,39,0.0 +19020,70,15,25,0.0 +19020,74,10,40,0.0 +19020,40,18.4,21,0.0 +19020,37,26,40,0.0 +19020,50,16.25,47,0.0 +19020,45,9.5,41,0.0 +19020,13,6,2,0.0 +19020,71,21.5,26,0.0 +19020,33,2.5,28,0.0 +19020,6,25,43,0.0 +19020,1,18,41,0.0 +19020,38,263.5,28,0.0 +19020,54,7.45,42,0.0 +19020,7,30,18,0.0 +19020,48,12.75,12,0.0 +19021,10,31,19,0.0 +19021,72,34.8,43,0.0 +19021,22,21,25,0.0 +19021,74,10,33,0.0 +19021,37,26,27,0.0 +19021,60,34,5,0.0 +19021,21,10,13,0.0 +19021,77,13,49,0.0 +19021,42,14,46,0.0 +19021,38,263.5,24,0.0 +19021,55,24,6,0.0 +19021,70,15,38,0.0 +19021,7,30,13,0.0 +19021,6,25,40,0.0 +19021,46,12,46,0.0 +19022,65,21.05,41,0.0 +19022,76,18,9,0.0 +19022,71,21.5,21,0.0 +19022,29,123.79,35,0.0 +19022,67,14,34,0.0 +19022,11,21,37,0.0 +19022,45,9.5,11,0.0 +19022,44,19.45,16,0.0 +19022,75,7.75,29,0.0 +19022,39,18,29,0.0 +19022,62,49.3,26,0.0 +19022,53,32.8,1,0.0 +19022,30,25.89,37,0.0 +19022,19,9.2,44,0.0 +19022,64,33.25,15,0.0 +19022,57,19.5,10,0.0 +19022,15,15.5,17,0.0 +19022,38,263.5,22,0.0 +19022,47,9.5,36,0.0 +19022,41,9.65,38,0.0 +19022,20,81,18,0.0 +19022,25,14,46,0.0 +19022,4,22,3,0.0 +19022,63,43.9,44,0.0 +19022,60,34,44,0.0 +19022,27,43.9,16,0.0 +19022,59,55,48,0.0 +19022,55,24,50,0.0 +19022,58,13.25,7,0.0 +19022,35,18,42,0.0 +19022,40,18.4,33,0.0 +19022,5,21.35,27,0.0 +19022,70,15,11,0.0 +19022,74,10,33,0.0 +19022,7,30,36,0.0 +19022,46,12,26,0.0 +19022,51,53,20,0.0 +19022,31,12.5,12,0.0 +19022,3,10,1,0.0 +19022,72,34.8,4,0.0 +19022,2,19,44,0.0 +19022,56,38,21,0.0 +19022,28,45.6,37,0.0 +19022,18,62.5,18,0.0 +19022,68,12.5,27,0.0 +19022,24,4.5,45,0.0 +19022,17,39,29,0.0 +19022,21,10,6,0.0 +19022,33,2.5,18,0.0 +19022,36,19,29,0.0 +19022,52,7,19,0.0 +19022,8,40,7,0.0 +19022,37,26,14,0.0 +19022,23,9,39,0.0 +19023,57,19.5,6,0.0 +19024,41,9.65,23,0.0 +19024,1,18,27,0.0 +19024,69,36,30,0.0 +19024,73,15,3,0.0 +19024,67,14,4,0.0 +19024,4,22,41,0.0 +19024,6,25,14,0.0 +19024,53,32.8,1,0.0 +19024,64,33.25,12,0.0 +19024,75,7.75,39,0.0 +19024,36,19,42,0.0 +19024,66,17,38,0.0 +19024,68,12.5,19,0.0 +19024,76,18,47,0.0 +19024,34,14,46,0.0 +19024,54,7.45,38,0.0 +19024,10,31,1,0.0 +19024,74,10,20,0.0 +19024,18,62.5,29,0.0 +19024,35,18,39,0.0 +19024,8,40,48,0.0 +19024,25,14,41,0.0 +19024,49,20,6,0.0 +19024,22,21,37,0.0 +19024,23,9,37,0.0 +19024,21,10,34,0.0 +19024,14,23.25,30,0.0 +19024,65,21.05,44,0.0 +19024,27,43.9,23,0.0 +19024,33,2.5,19,0.0 +19024,31,12.5,47,0.0 +19024,7,30,25,0.0 +19024,71,21.5,24,0.0 +19024,45,9.5,17,0.0 +19024,30,25.89,7,0.0 +19024,52,7,24,0.0 +19025,12,38,37,0.0 +19025,32,32,44,0.0 +19025,72,34.8,14,0.0 +19025,21,10,28,0.0 +19025,66,17,34,0.0 +19025,4,22,49,0.0 +19025,63,43.9,27,0.0 +19025,54,7.45,44,0.0 +19025,36,19,33,0.0 +19025,41,9.65,50,0.0 +19025,61,28.5,11,0.0 +19025,45,9.5,47,0.0 +19025,22,21,34,0.0 +19025,56,38,48,0.0 +19025,5,21.35,8,0.0 +19025,14,23.25,20,0.0 +19025,77,13,38,0.0 +19025,31,12.5,38,0.0 +19025,47,9.5,37,0.0 +19025,46,12,16,0.0 +19025,11,21,43,0.0 +19025,25,14,49,0.0 +19025,7,30,11,0.0 +19025,49,20,23,0.0 +19025,64,33.25,22,0.0 +19025,55,24,32,0.0 +19025,67,14,44,0.0 +19025,30,25.89,44,0.0 +19025,68,12.5,20,0.0 +19025,42,14,5,0.0 +19025,27,43.9,42,0.0 +19025,34,14,23,0.0 +19025,75,7.75,46,0.0 +19025,53,32.8,8,0.0 +19025,48,12.75,44,0.0 +19025,39,18,4,0.0 +19025,26,31.23,22,0.0 +19025,19,9.2,17,0.0 +19025,59,55,39,0.0 +19025,13,6,11,0.0 +19025,38,263.5,31,0.0 +19025,40,18.4,25,0.0 +19025,15,15.5,41,0.0 +19025,52,7,48,0.0 +19025,23,9,50,0.0 +19025,73,15,32,0.0 +19025,1,18,11,0.0 +19025,17,39,6,0.0 +19025,8,40,46,0.0 +19025,43,46,2,0.0 +19025,28,45.6,13,0.0 +19025,20,81,49,0.0 +19025,2,19,4,0.0 +19025,24,4.5,4,0.0 +19025,57,19.5,46,0.0 +19026,18,62.5,13,0.0 +19026,42,14,7,0.0 +19026,6,25,49,0.0 +19026,16,17.45,6,0.0 +19026,68,12.5,50,0.0 +19026,77,13,30,0.0 +19026,69,36,50,0.0 +19026,76,18,14,0.0 +19026,34,14,39,0.0 +19026,73,15,42,0.0 +19026,59,55,14,0.0 +19026,11,21,28,0.0 +19026,65,21.05,21,0.0 +19026,43,46,19,0.0 +19026,46,12,24,0.0 +19026,67,14,37,0.0 +19026,57,19.5,50,0.0 +19026,56,38,37,0.0 +19026,9,97,38,0.0 +19026,32,32,39,0.0 +19026,52,7,6,0.0 +19026,35,18,20,0.0 +19026,8,40,14,0.0 +19026,45,9.5,40,0.0 +19026,50,16.25,47,0.0 +19026,39,18,16,0.0 +19026,48,12.75,33,0.0 +19026,2,19,48,0.0 +19026,22,21,24,0.0 +19026,10,31,2,0.0 +19026,31,12.5,15,0.0 +19026,53,32.8,33,0.0 +19026,44,19.45,1,0.0 +19026,17,39,20,0.0 +19027,19,9.2,23,0.0 +19027,30,25.89,50,0.0 +19027,58,13.25,11,0.0 +19027,7,30,14,0.0 +19027,25,14,11,0.0 +19027,44,19.45,5,0.0 +19027,61,28.5,19,0.0 +19027,55,24,11,0.0 +19027,46,12,26,0.0 +19027,37,26,35,0.0 +19027,67,14,35,0.0 +19027,6,25,7,0.0 +19027,16,17.45,26,0.0 +19027,75,7.75,43,0.0 +19027,47,9.5,22,0.0 +19027,38,263.5,25,0.0 +19027,59,55,23,0.0 +19027,48,12.75,30,0.0 +19027,43,46,1,0.0 +19027,29,123.79,33,0.0 +19027,57,19.5,24,0.0 +19027,23,9,40,0.0 +19028,8,40,32,0.0 +19028,73,15,8,0.0 +19028,27,43.9,22,0.0 +19028,62,49.3,4,0.0 +19028,25,14,4,0.0 +19028,54,7.45,38,0.0 +19028,49,20,2,0.0 +19028,7,30,26,0.0 +19028,13,6,2,0.0 +19028,34,14,23,0.0 +19028,42,14,41,0.0 +19028,9,97,2,0.0 +19028,55,24,12,0.0 +19028,28,45.6,19,0.0 +19028,77,13,5,0.0 +19028,68,12.5,19,0.0 +19028,43,46,33,0.0 +19028,19,9.2,40,0.0 +19028,22,21,29,0.0 +19028,53,32.8,14,0.0 +19029,55,24,36,0.0 +19029,2,19,7,0.0 +19029,41,9.65,9,0.0 +19029,60,34,13,0.0 +19029,74,10,19,0.0 +19030,11,21,49,0.0 +19030,73,15,20,0.0 +19030,69,36,16,0.0 +19030,58,13.25,43,0.0 +19030,52,7,25,0.0 +19030,71,21.5,18,0.0 +19030,25,14,8,0.0 +19030,49,20,21,0.0 +19030,6,25,29,0.0 +19030,47,9.5,13,0.0 +19030,64,33.25,47,0.0 +19030,23,9,12,0.0 +19030,32,32,29,0.0 +19030,21,10,6,0.0 +19030,65,21.05,19,0.0 +19030,43,46,37,0.0 +19030,35,18,31,0.0 +19030,2,19,33,0.0 +19030,51,53,43,0.0 +19030,33,2.5,21,0.0 +19030,46,12,30,0.0 +19030,15,15.5,5,0.0 +19030,31,12.5,42,0.0 +19030,30,25.89,17,0.0 +19030,29,123.79,36,0.0 +19030,48,12.75,41,0.0 +19030,12,38,50,0.0 +19030,18,62.5,33,0.0 +19030,1,18,47,0.0 +19030,56,38,1,0.0 +19030,61,28.5,41,0.0 +19030,67,14,15,0.0 +19030,28,45.6,34,0.0 +19030,24,4.5,9,0.0 +19030,45,9.5,26,0.0 +19030,5,21.35,1,0.0 +19030,4,22,20,0.0 +19030,59,55,49,0.0 +19030,53,32.8,3,0.0 +19030,50,16.25,21,0.0 +19030,16,17.45,38,0.0 +19030,13,6,31,0.0 +19030,75,7.75,16,0.0 +19030,68,12.5,44,0.0 +19030,72,34.8,44,0.0 +19030,17,39,39,0.0 +19030,34,14,27,0.0 +19030,27,43.9,38,0.0 +19031,64,33.25,19,0.0 +19031,56,38,47,0.0 +19031,39,18,22,0.0 +19031,35,18,27,0.0 +19031,28,45.6,12,0.0 +19031,45,9.5,43,0.0 +19031,17,39,47,0.0 +19031,32,32,47,0.0 +19031,36,19,37,0.0 +19031,62,49.3,13,0.0 +19031,65,21.05,38,0.0 +19031,23,9,11,0.0 +19031,19,9.2,35,0.0 +19031,27,43.9,48,0.0 +19031,44,19.45,34,0.0 +19031,53,32.8,21,0.0 +19031,4,22,33,0.0 +19031,58,13.25,42,0.0 +19031,41,9.65,1,0.0 +19031,10,31,1,0.0 +19031,16,17.45,26,0.0 +19031,46,12,9,0.0 +19031,12,38,49,0.0 +19031,9,97,38,0.0 +19031,2,19,22,0.0 +19031,34,14,41,0.0 +19031,74,10,23,0.0 +19031,47,9.5,11,0.0 +19031,67,14,32,0.0 +19031,21,10,14,0.0 +19031,8,40,2,0.0 +19031,24,4.5,3,0.0 +19031,29,123.79,48,0.0 +19031,3,10,22,0.0 +19031,75,7.75,50,0.0 +19031,22,21,23,0.0 +19031,60,34,11,0.0 +19031,66,17,14,0.0 +19031,73,15,6,0.0 +19031,31,12.5,20,0.0 +19031,13,6,46,0.0 +19031,68,12.5,50,0.0 +19031,71,21.5,34,0.0 +19031,25,14,18,0.0 +19031,48,12.75,22,0.0 +19031,37,26,7,0.0 +19031,14,23.25,40,0.0 +19031,52,7,35,0.0 +19031,1,18,7,0.0 +19031,33,2.5,39,0.0 +19031,5,21.35,28,0.0 +19031,15,15.5,21,0.0 +19031,57,19.5,46,0.0 +19031,70,15,16,0.0 +19031,72,34.8,29,0.0 +19031,42,14,19,0.0 +19031,51,53,50,0.0 +19031,54,7.45,12,0.0 +19031,20,81,7,0.0 +19032,8,40,1,0.0 +19032,28,45.6,19,0.0 +19032,70,15,30,0.0 +19032,77,13,36,0.0 +19032,26,31.23,31,0.0 +19032,51,53,3,0.0 +19032,6,25,11,0.0 +19032,65,21.05,10,0.0 +19032,38,263.5,8,0.0 +19032,10,31,14,0.0 +19032,71,21.5,44,0.0 +19032,37,26,40,0.0 +19032,13,6,34,0.0 +19032,21,10,25,0.0 +19032,46,12,12,0.0 +19032,11,21,37,0.0 +19032,56,38,9,0.0 +19032,63,43.9,46,0.0 +19032,48,12.75,36,0.0 +19032,40,18.4,43,0.0 +19032,25,14,17,0.0 +19032,36,19,18,0.0 +19032,47,9.5,46,0.0 +19032,15,15.5,11,0.0 +19032,2,19,24,0.0 +19032,19,9.2,38,0.0 +19032,14,23.25,23,0.0 +19032,44,19.45,12,0.0 +19032,59,55,25,0.0 +19032,24,4.5,42,0.0 +19032,22,21,50,0.0 +19032,61,28.5,20,0.0 +19032,54,7.45,36,0.0 +19032,60,34,28,0.0 +19032,1,18,44,0.0 +19032,39,18,5,0.0 +19032,42,14,36,0.0 +19032,16,17.45,3,0.0 +19032,74,10,32,0.0 +19032,62,49.3,27,0.0 +19032,4,22,48,0.0 +19032,29,123.79,22,0.0 +19032,49,20,12,0.0 +19032,20,81,6,0.0 +19032,7,30,14,0.0 +19032,30,25.89,49,0.0 +19032,67,14,13,0.0 +19032,52,7,33,0.0 +19032,43,46,4,0.0 +19032,41,9.65,31,0.0 +19032,34,14,29,0.0 +19032,72,34.8,1,0.0 +19032,69,36,25,0.0 +19032,53,32.8,46,0.0 +19032,5,21.35,1,0.0 +19032,35,18,39,0.0 +19032,76,18,27,0.0 +19032,12,38,38,0.0 +19032,58,13.25,19,0.0 +19032,45,9.5,43,0.0 +19032,33,2.5,5,0.0 +19032,27,43.9,35,0.0 +19032,18,62.5,4,0.0 +19032,57,19.5,41,0.0 +19032,75,7.75,2,0.0 +19032,23,9,27,0.0 +19032,66,17,48,0.0 +19032,73,15,30,0.0 +19033,66,17,20,0.0 +19033,9,97,48,0.0 +19033,4,22,8,0.0 +19033,71,21.5,47,0.0 +19033,68,12.5,25,0.0 +19033,11,21,41,0.0 +19033,63,43.9,38,0.0 +19033,22,21,31,0.0 +19033,51,53,40,0.0 +19033,54,7.45,27,0.0 +19033,35,18,5,0.0 +19033,7,30,29,0.0 +19033,57,19.5,15,0.0 +19033,69,36,34,0.0 +19033,76,18,25,0.0 +19033,55,24,17,0.0 +19033,70,15,24,0.0 +19033,36,19,7,0.0 +19033,20,81,19,0.0 +19033,49,20,37,0.0 +19033,32,32,46,0.0 +19033,8,40,7,0.0 +19033,5,21.35,9,0.0 +19033,53,32.8,39,0.0 +19033,40,18.4,32,0.0 +19033,10,31,50,0.0 +19033,43,46,9,0.0 +19033,62,49.3,7,0.0 +19033,41,9.65,23,0.0 +19033,47,9.5,38,0.0 +19033,64,33.25,6,0.0 +19033,61,28.5,47,0.0 +19033,27,43.9,10,0.0 +19033,14,23.25,32,0.0 +19033,59,55,13,0.0 +19033,44,19.45,44,0.0 +19033,26,31.23,26,0.0 +19033,38,263.5,40,0.0 +19033,74,10,42,0.0 +19033,16,17.45,29,0.0 +19033,67,14,40,0.0 +19033,23,9,32,0.0 +19033,39,18,48,0.0 +19033,13,6,31,0.0 +19033,30,25.89,6,0.0 +19033,25,14,24,0.0 +19033,29,123.79,31,0.0 +19033,52,7,21,0.0 +19033,72,34.8,29,0.0 +19033,28,45.6,5,0.0 +19033,50,16.25,6,0.0 +19033,77,13,20,0.0 +19033,21,10,50,0.0 +19033,75,7.75,12,0.0 +19033,58,13.25,15,0.0 +19033,48,12.75,30,0.0 +19033,37,26,34,0.0 +19033,3,10,49,0.0 +19033,6,25,33,0.0 +19033,34,14,40,0.0 +19033,15,15.5,48,0.0 +19033,42,14,48,0.0 +19033,17,39,12,0.0 +19033,73,15,34,0.0 +19033,56,38,34,0.0 +19033,24,4.5,48,0.0 +19033,33,2.5,44,0.0 +19033,46,12,21,0.0 +19033,65,21.05,22,0.0 +19033,45,9.5,8,0.0 +19033,1,18,9,0.0 +19033,19,9.2,2,0.0 +19033,18,62.5,15,0.0 +19033,31,12.5,4,0.0 +19033,12,38,28,0.0 +19033,2,19,45,0.0 +19034,28,45.6,25,0.0 +19034,59,55,12,0.0 +19034,22,21,17,0.0 +19034,62,49.3,13,0.0 +19034,69,36,47,0.0 +19034,13,6,48,0.0 +19034,30,25.89,12,0.0 +19034,17,39,18,0.0 +19034,15,15.5,29,0.0 +19034,40,18.4,19,0.0 +19034,9,97,22,0.0 +19034,25,14,11,0.0 +19034,21,10,8,0.0 +19034,5,21.35,9,0.0 +19034,50,16.25,33,0.0 +19034,12,38,32,0.0 +19034,56,38,21,0.0 +19034,77,13,31,0.0 +19034,55,24,21,0.0 +19034,57,19.5,32,0.0 +19034,47,9.5,44,0.0 +19034,32,32,20,0.0 +19034,64,33.25,48,0.0 +19034,20,81,35,0.0 +19034,72,34.8,30,0.0 +19034,76,18,41,0.0 +19034,18,62.5,12,0.0 +19034,26,31.23,48,0.0 +19034,36,19,42,0.0 +19034,35,18,21,0.0 +19034,3,10,34,0.0 +19034,73,15,37,0.0 +19034,60,34,23,0.0 +19034,8,40,10,0.0 +19034,53,32.8,8,0.0 +19034,24,4.5,3,0.0 +19034,49,20,26,0.0 +19034,31,12.5,36,0.0 +19034,11,21,48,0.0 +19034,37,26,5,0.0 +19034,68,12.5,24,0.0 +19034,58,13.25,37,0.0 +19034,10,31,49,0.0 +19034,33,2.5,35,0.0 +19034,61,28.5,38,0.0 +19034,66,17,1,0.0 +19034,41,9.65,22,0.0 +19034,6,25,34,0.0 +19034,4,22,33,0.0 +19034,7,30,41,0.0 +19034,19,9.2,7,0.0 +19034,42,14,38,0.0 +19034,2,19,50,0.0 +19034,52,7,48,0.0 +19034,51,53,44,0.0 +19034,44,19.45,27,0.0 +19034,14,23.25,24,0.0 +19034,46,12,4,0.0 +19034,43,46,30,0.0 +19034,71,21.5,39,0.0 +19034,65,21.05,4,0.0 +19034,1,18,42,0.0 +19034,16,17.45,3,0.0 +19034,23,9,4,0.0 +19034,48,12.75,50,0.0 +19034,67,14,24,0.0 +19034,45,9.5,16,0.0 +19035,53,32.8,37,0.0 +19035,8,40,30,0.0 +19035,5,21.35,50,0.0 +19035,6,25,15,0.0 +19035,20,81,22,0.0 +19035,72,34.8,44,0.0 +19035,40,18.4,39,0.0 +19035,51,53,11,0.0 +19035,15,15.5,16,0.0 +19035,41,9.65,31,0.0 +19035,31,12.5,29,0.0 +19035,23,9,49,0.0 +19035,68,12.5,34,0.0 +19035,32,32,36,0.0 +19035,59,55,50,0.0 +19035,44,19.45,46,0.0 +19035,60,34,25,0.0 +19035,47,9.5,32,0.0 +19035,9,97,37,0.0 +19035,21,10,20,0.0 +19035,19,9.2,26,0.0 +19035,7,30,45,0.0 +19035,49,20,33,0.0 +19035,46,12,10,0.0 +19035,25,14,39,0.0 +19035,64,33.25,19,0.0 +19035,10,31,38,0.0 +19035,50,16.25,30,0.0 +19035,56,38,6,0.0 +19035,36,19,29,0.0 +19035,61,28.5,33,0.0 +19035,48,12.75,23,0.0 +19035,34,14,27,0.0 +19035,52,7,29,0.0 +19035,74,10,13,0.0 +19035,76,18,28,0.0 +19035,63,43.9,16,0.0 +19035,2,19,13,0.0 +19035,75,7.75,27,0.0 +19035,1,18,8,0.0 +19035,55,24,28,0.0 +19035,28,45.6,5,0.0 +19035,38,263.5,35,0.0 +19035,30,25.89,9,0.0 +19035,77,13,46,0.0 +19035,16,17.45,44,0.0 +19035,37,26,14,0.0 +19035,69,36,34,0.0 +19035,11,21,42,0.0 +19035,71,21.5,25,0.0 +19036,16,17.45,34,0.0 +19036,41,9.65,20,0.0 +19036,43,46,44,0.0 +19036,67,14,36,0.0 +19036,5,21.35,42,0.0 +19036,2,19,34,0.0 +19036,56,38,46,0.0 +19036,14,23.25,47,0.0 +19036,31,12.5,22,0.0 +19036,73,15,29,0.0 +19036,4,22,38,0.0 +19036,11,21,7,0.0 +19036,44,19.45,11,0.0 +19036,57,19.5,28,0.0 +19036,71,21.5,26,0.0 +19036,58,13.25,4,0.0 +19036,35,18,25,0.0 +19036,32,32,41,0.0 +19036,34,14,3,0.0 +19036,27,43.9,45,0.0 +19036,40,18.4,30,0.0 +19036,52,7,28,0.0 +19036,36,19,49,0.0 +19036,33,2.5,36,0.0 +19036,64,33.25,10,0.0 +19036,25,14,35,0.0 +19036,77,13,15,0.0 +19036,29,123.79,34,0.0 +19036,74,10,8,0.0 +19036,9,97,23,0.0 +19036,23,9,27,0.0 +19036,18,62.5,37,0.0 +19036,59,55,41,0.0 +19036,72,34.8,30,0.0 +19036,7,30,13,0.0 +19036,6,25,49,0.0 +19036,26,31.23,48,0.0 +19036,28,45.6,31,0.0 +19036,55,24,6,0.0 +19036,24,4.5,38,0.0 +19036,54,7.45,32,0.0 +19036,61,28.5,4,0.0 +19036,17,39,38,0.0 +19036,1,18,46,0.0 +19036,50,16.25,1,0.0 +19036,53,32.8,2,0.0 +19036,75,7.75,3,0.0 +19037,22,21,34,0.0 +19037,61,28.5,15,0.0 +19037,72,34.8,43,0.0 +19037,26,31.23,6,0.0 +19037,41,9.65,30,0.0 +19037,13,6,13,0.0 +19037,71,21.5,48,0.0 +19037,6,25,2,0.0 +19037,66,17,3,0.0 +19037,58,13.25,39,0.0 +19037,20,81,21,0.0 +19037,35,18,12,0.0 +19037,43,46,30,0.0 +19037,3,10,29,0.0 +19037,19,9.2,31,0.0 +19037,16,17.45,3,0.0 +19037,76,18,39,0.0 +19037,63,43.9,32,0.0 +19037,51,53,8,0.0 +19037,70,15,20,0.0 +19037,48,12.75,23,0.0 +19037,28,45.6,22,0.0 +19037,17,39,18,0.0 +19037,37,26,40,0.0 +19037,10,31,17,0.0 +19037,18,62.5,11,0.0 +19037,12,38,50,0.0 +19037,24,4.5,4,0.0 +19037,73,15,7,0.0 +19037,77,13,31,0.0 +19037,55,24,13,0.0 +19037,60,34,48,0.0 +19037,45,9.5,3,0.0 +19037,25,14,12,0.0 +19037,46,12,26,0.0 +19037,50,16.25,40,0.0 +19037,9,97,26,0.0 +19037,30,25.89,12,0.0 +19037,56,38,9,0.0 +19037,2,19,27,0.0 +19037,62,49.3,23,0.0 +19037,5,21.35,33,0.0 +19037,53,32.8,31,0.0 +19037,21,10,10,0.0 +19037,29,123.79,19,0.0 +19037,39,18,6,0.0 +19037,69,36,15,0.0 +19037,1,18,14,0.0 +19037,8,40,20,0.0 +19037,59,55,48,0.0 +19037,14,23.25,19,0.0 +19037,11,21,35,0.0 +19037,75,7.75,46,0.0 +19037,40,18.4,5,0.0 +19037,32,32,24,0.0 +19037,4,22,28,0.0 +19037,31,12.5,46,0.0 +19037,7,30,11,0.0 +19038,69,36,16,0.0 +19038,34,14,10,0.0 +19038,70,15,22,0.0 +19038,64,33.25,27,0.0 +19038,13,6,3,0.0 +19039,16,17.45,44,0.0 +19039,5,21.35,25,0.0 +19039,46,12,39,0.0 +19039,73,15,12,0.0 +19039,51,53,20,0.0 +19039,39,18,16,0.0 +19039,40,18.4,43,0.0 +19039,14,23.25,29,0.0 +19039,52,7,15,0.0 +19039,6,25,12,0.0 +19039,77,13,27,0.0 +19039,41,9.65,17,0.0 +19039,54,7.45,26,0.0 +19039,29,123.79,21,0.0 +19039,17,39,14,0.0 +19039,67,14,27,0.0 +19039,36,19,21,0.0 +19039,72,34.8,45,0.0 +19039,24,4.5,22,0.0 +19039,70,15,50,0.0 +19039,59,55,19,0.0 +19039,42,14,18,0.0 +19039,19,9.2,11,0.0 +19039,8,40,47,0.0 +19039,10,31,49,0.0 +19039,63,43.9,31,0.0 +19039,34,14,49,0.0 +19039,50,16.25,38,0.0 +19039,28,45.6,42,0.0 +19039,7,30,34,0.0 +19039,47,9.5,13,0.0 +19039,9,97,3,0.0 +19039,11,21,43,0.0 +19039,35,18,24,0.0 +19039,21,10,13,0.0 +19039,71,21.5,43,0.0 +19039,68,12.5,35,0.0 +19039,53,32.8,23,0.0 +19039,15,15.5,45,0.0 +19039,44,19.45,4,0.0 +19039,30,25.89,18,0.0 +19039,4,22,34,0.0 +19039,1,18,22,0.0 +19039,57,19.5,4,0.0 +19039,20,81,43,0.0 +19039,45,9.5,4,0.0 +19039,76,18,10,0.0 +19039,25,14,4,0.0 +19039,22,21,18,0.0 +19039,64,33.25,18,0.0 +19039,55,24,25,0.0 +19039,58,13.25,26,0.0 +19039,26,31.23,19,0.0 +19039,38,263.5,43,0.0 +19039,32,32,2,0.0 +19039,69,36,5,0.0 +19040,48,12.75,43,0.0 +19040,14,23.25,45,0.0 +19040,26,31.23,30,0.0 +19040,41,9.65,20,0.0 +19040,10,31,24,0.0 +19040,49,20,41,0.0 +19040,73,15,45,0.0 +19040,29,123.79,41,0.0 +19040,66,17,18,0.0 +19040,74,10,32,0.0 +19040,55,24,11,0.0 +19040,57,19.5,49,0.0 +19040,8,40,26,0.0 +19040,50,16.25,26,0.0 +19040,70,15,32,0.0 +19040,54,7.45,40,0.0 +19040,6,25,32,0.0 +19040,12,38,2,0.0 +19040,30,25.89,12,0.0 +19041,6,25,19,0.0 +19041,69,36,30,0.0 +19041,45,9.5,7,0.0 +19041,50,16.25,28,0.0 +19041,56,38,45,0.0 +19041,71,21.5,11,0.0 +19041,24,4.5,46,0.0 +19041,62,49.3,40,0.0 +19041,65,21.05,2,0.0 +19041,48,12.75,43,0.0 +19041,4,22,16,0.0 +19041,57,19.5,38,0.0 +19041,14,23.25,40,0.0 +19041,54,7.45,13,0.0 +19041,49,20,39,0.0 +19041,68,12.5,29,0.0 +19041,63,43.9,34,0.0 +19041,26,31.23,30,0.0 +19041,51,53,38,0.0 +19041,27,43.9,18,0.0 +19041,1,18,14,0.0 +19041,73,15,30,0.0 +19041,47,9.5,39,0.0 +19041,7,30,16,0.0 +19041,40,18.4,6,0.0 +19041,28,45.6,1,0.0 +19041,35,18,36,0.0 +19041,70,15,32,0.0 +19041,19,9.2,30,0.0 +19041,13,6,34,0.0 +19041,25,14,13,0.0 +19041,10,31,3,0.0 +19041,60,34,16,0.0 +19041,12,38,21,0.0 +19041,21,10,47,0.0 +19041,32,32,16,0.0 +19041,76,18,36,0.0 +19041,34,14,30,0.0 +19041,77,13,13,0.0 +19041,61,28.5,6,0.0 +19041,9,97,3,0.0 +19041,75,7.75,20,0.0 +19041,2,19,27,0.0 +19041,11,21,33,0.0 +19041,64,33.25,39,0.0 +19041,46,12,33,0.0 +19041,59,55,23,0.0 +19041,55,24,49,0.0 +19041,43,46,20,0.0 +19041,23,9,10,0.0 +19041,29,123.79,17,0.0 +19041,67,14,27,0.0 +19041,58,13.25,50,0.0 +19041,3,10,37,0.0 +19041,33,2.5,38,0.0 +19041,17,39,40,0.0 +19041,30,25.89,28,0.0 +19041,8,40,24,0.0 +19041,66,17,28,0.0 +19041,16,17.45,37,0.0 +19041,20,81,35,0.0 +19041,39,18,40,0.0 +19041,36,19,10,0.0 +19041,53,32.8,21,0.0 +19041,74,10,29,0.0 +19041,72,34.8,32,0.0 +19042,61,28.5,19,0.0 +19042,67,14,41,0.0 +19043,9,97,31,0.0 +19043,63,43.9,32,0.0 +19043,15,15.5,4,0.0 +19043,40,18.4,41,0.0 +19043,61,28.5,15,0.0 +19043,23,9,6,0.0 +19043,21,10,30,0.0 +19043,64,33.25,4,0.0 +19043,65,21.05,6,0.0 +19043,29,123.79,37,0.0 +19043,47,9.5,21,0.0 +19043,4,22,16,0.0 +19043,50,16.25,18,0.0 +19043,31,12.5,7,0.0 +19043,19,9.2,27,0.0 +19043,60,34,34,0.0 +19043,59,55,3,0.0 +19043,42,14,40,0.0 +19043,3,10,21,0.0 +19043,70,15,25,0.0 +19043,16,17.45,32,0.0 +19043,71,21.5,17,0.0 +19043,27,43.9,7,0.0 +19043,41,9.65,16,0.0 +19043,28,45.6,37,0.0 +19043,36,19,47,0.0 +19043,35,18,18,0.0 +19043,56,38,18,0.0 +19043,77,13,2,0.0 +19043,10,31,3,0.0 +19043,67,14,35,0.0 +19043,34,14,25,0.0 +19043,2,19,14,0.0 +19043,38,263.5,13,0.0 +19043,51,53,44,0.0 +19043,22,21,42,0.0 +19043,18,62.5,6,0.0 +19043,8,40,37,0.0 +19043,5,21.35,37,0.0 +19043,37,26,21,0.0 +19043,43,46,15,0.0 +19043,69,36,25,0.0 +19043,54,7.45,36,0.0 +19043,62,49.3,35,0.0 +19043,57,19.5,16,0.0 +19043,20,81,15,0.0 +19044,66,17,1,0.0 +19044,76,18,7,0.0 +19044,60,34,26,0.0 +19044,33,2.5,13,0.0 +19044,48,12.75,30,0.0 +19044,10,31,30,0.0 +19044,30,25.89,25,0.0 +19044,64,33.25,23,0.0 +19044,6,25,7,0.0 +19044,24,4.5,47,0.0 +19044,54,7.45,22,0.0 +19044,22,21,35,0.0 +19044,77,13,7,0.0 +19044,2,19,47,0.0 +19044,19,9.2,47,0.0 +19044,70,15,45,0.0 +19044,8,40,12,0.0 +19044,4,22,4,0.0 +19044,72,34.8,44,0.0 +19044,16,17.45,40,0.0 +19044,69,36,15,0.0 +19044,1,18,18,0.0 +19044,56,38,40,0.0 +19044,5,21.35,4,0.0 +19044,9,97,20,0.0 +19044,45,9.5,33,0.0 +19044,31,12.5,32,0.0 +19044,74,10,44,0.0 +19044,15,15.5,9,0.0 +19044,68,12.5,10,0.0 +19044,50,16.25,7,0.0 +19044,49,20,10,0.0 +19044,28,45.6,23,0.0 +19044,20,81,46,0.0 +19044,36,19,15,0.0 +19044,18,62.5,36,0.0 +19044,65,21.05,39,0.0 +19044,40,18.4,46,0.0 +19044,63,43.9,10,0.0 +19044,44,19.45,21,0.0 +19044,75,7.75,40,0.0 +19044,47,9.5,6,0.0 +19044,67,14,9,0.0 +19044,55,24,30,0.0 +19044,71,21.5,44,0.0 +19044,73,15,48,0.0 +19044,11,21,6,0.0 +19044,14,23.25,39,0.0 +19044,46,12,18,0.0 +19044,7,30,2,0.0 +19044,26,31.23,41,0.0 +19044,29,123.79,26,0.0 +19044,37,26,47,0.0 +19044,13,6,26,0.0 +19044,39,18,29,0.0 +19044,32,32,21,0.0 +19044,21,10,39,0.0 +19044,27,43.9,43,0.0 +19044,59,55,12,0.0 +19044,62,49.3,17,0.0 +19044,12,38,5,0.0 +19044,51,53,27,0.0 +19044,57,19.5,27,0.0 +19044,58,13.25,40,0.0 +19044,35,18,4,0.0 +19044,34,14,18,0.0 +19044,53,32.8,23,0.0 +19045,28,45.6,25,0.0 +19045,10,31,45,0.0 +19045,42,14,41,0.0 +19045,74,10,46,0.0 +19045,63,43.9,12,0.0 +19045,52,7,39,0.0 +19045,26,31.23,13,0.0 +19045,75,7.75,45,0.0 +19045,40,18.4,28,0.0 +19045,38,263.5,27,0.0 +19045,46,12,45,0.0 +19045,6,25,29,0.0 +19045,50,16.25,45,0.0 +19045,22,21,24,0.0 +19045,69,36,44,0.0 +19045,47,9.5,21,0.0 +19045,35,18,40,0.0 +19045,58,13.25,16,0.0 +19045,53,32.8,50,0.0 +19045,44,19.45,6,0.0 +19045,33,2.5,31,0.0 +19045,23,9,50,0.0 +19045,32,32,46,0.0 +19046,7,30,49,0.0 +19046,8,40,28,0.0 +19046,56,38,30,0.0 +19047,1,18,5,0.0 +19047,15,15.5,42,0.0 +19047,52,7,17,0.0 +19047,18,62.5,26,0.0 +19047,21,10,9,0.0 +19047,27,43.9,16,0.0 +19047,39,18,13,0.0 +19047,44,19.45,2,0.0 +19047,33,2.5,37,0.0 +19047,64,33.25,16,0.0 +19047,14,23.25,7,0.0 +19047,7,30,12,0.0 +19047,49,20,29,0.0 +19047,16,17.45,8,0.0 +19047,13,6,16,0.0 +19047,72,34.8,21,0.0 +19047,24,4.5,18,0.0 +19047,71,21.5,33,0.0 +19047,23,9,18,0.0 +19047,19,9.2,23,0.0 +19047,65,21.05,50,0.0 +19047,26,31.23,50,0.0 +19047,57,19.5,42,0.0 +19047,42,14,6,0.0 +19047,59,55,42,0.0 +19047,2,19,28,0.0 +19047,10,31,49,0.0 +19047,70,15,49,0.0 +19047,58,13.25,30,0.0 +19047,43,46,22,0.0 +19047,69,36,45,0.0 +19047,76,18,32,0.0 +19047,55,24,23,0.0 +19047,53,32.8,6,0.0 +19047,41,9.65,1,0.0 +19047,12,38,14,0.0 +19047,74,10,12,0.0 +19047,40,18.4,33,0.0 +19047,77,13,8,0.0 +19047,17,39,43,0.0 +19047,47,9.5,27,0.0 +19047,38,263.5,3,0.0 +19047,45,9.5,50,0.0 +19047,4,22,30,0.0 +19047,36,19,12,0.0 +19047,68,12.5,5,0.0 +19047,3,10,6,0.0 +19047,56,38,23,0.0 +19047,11,21,11,0.0 +19047,51,53,5,0.0 +19047,66,17,13,0.0 +19047,20,81,27,0.0 +19047,34,14,45,0.0 +19047,9,97,18,0.0 +19048,25,14,36,0.0 +19048,18,62.5,15,0.0 +19048,54,7.45,34,0.0 +19048,9,97,40,0.0 +19048,32,32,26,0.0 +19048,71,21.5,49,0.0 +19048,56,38,36,0.0 +19048,63,43.9,10,0.0 +19048,1,18,26,0.0 +19048,72,34.8,31,0.0 +19048,22,21,44,0.0 +19048,40,18.4,32,0.0 +19048,53,32.8,32,0.0 +19048,45,9.5,44,0.0 +19048,65,21.05,9,0.0 +19048,16,17.45,45,0.0 +19048,50,16.25,15,0.0 +19048,68,12.5,3,0.0 +19048,69,36,18,0.0 +19048,27,43.9,13,0.0 +19048,2,19,38,0.0 +19048,77,13,37,0.0 +19048,42,14,12,0.0 +19048,67,14,1,0.0 +19048,13,6,36,0.0 +19048,58,13.25,11,0.0 +19048,44,19.45,30,0.0 +19048,12,38,29,0.0 +19048,26,31.23,26,0.0 +19048,17,39,12,0.0 +19048,4,22,26,0.0 +19048,34,14,6,0.0 +19048,11,21,24,0.0 +19048,7,30,24,0.0 +19048,14,23.25,6,0.0 +19048,15,15.5,21,0.0 +19048,41,9.65,49,0.0 +19048,57,19.5,43,0.0 +19048,24,4.5,46,0.0 +19048,3,10,14,0.0 +19048,36,19,37,0.0 +19048,73,15,20,0.0 +19048,29,123.79,30,0.0 +19048,5,21.35,16,0.0 +19048,55,24,41,0.0 +19048,49,20,26,0.0 +19048,30,25.89,21,0.0 +19048,38,263.5,25,0.0 +19048,39,18,36,0.0 +19048,59,55,20,0.0 +19048,21,10,47,0.0 +19048,75,7.75,48,0.0 +19048,8,40,28,0.0 +19048,31,12.5,50,0.0 +19048,37,26,7,0.0 +19048,19,9.2,18,0.0 +19048,23,9,17,0.0 +19049,18,62.5,33,0.0 +19049,47,9.5,2,0.0 +19049,33,2.5,1,0.0 +19049,61,28.5,13,0.0 +19049,13,6,35,0.0 +19049,32,32,23,0.0 +19049,56,38,25,0.0 +19049,11,21,45,0.0 +19049,35,18,7,0.0 +19049,68,12.5,38,0.0 +19049,8,40,27,0.0 +19049,22,21,42,0.0 +19049,20,81,44,0.0 +19049,5,21.35,18,0.0 +19049,15,15.5,33,0.0 +19049,10,31,6,0.0 +19049,50,16.25,43,0.0 +19049,53,32.8,8,0.0 +19049,72,34.8,25,0.0 +19049,46,12,49,0.0 +19049,77,13,6,0.0 +19049,55,24,14,0.0 +19049,24,4.5,22,0.0 +19049,64,33.25,46,0.0 +19049,45,9.5,28,0.0 +19049,73,15,25,0.0 +19049,21,10,46,0.0 +19049,49,20,47,0.0 +19049,44,19.45,18,0.0 +19049,37,26,23,0.0 +19049,63,43.9,30,0.0 +19049,59,55,33,0.0 +19049,31,12.5,29,0.0 +19049,60,34,43,0.0 +19049,14,23.25,43,0.0 +19049,36,19,15,0.0 +19049,6,25,3,0.0 +19049,67,14,23,0.0 +19049,54,7.45,24,0.0 +19049,52,7,49,0.0 +19049,41,9.65,24,0.0 +19049,27,43.9,34,0.0 +19049,16,17.45,5,0.0 +19049,65,21.05,45,0.0 +19049,9,97,35,0.0 +19049,57,19.5,3,0.0 +19049,3,10,30,0.0 +19049,12,38,50,0.0 +19049,42,14,30,0.0 +19049,38,263.5,22,0.0 +19049,66,17,18,0.0 +19049,51,53,15,0.0 +19050,31,12.5,47,0.0 +19050,42,14,20,0.0 +19050,28,45.6,23,0.0 +19050,33,2.5,47,0.0 +19050,17,39,25,0.0 +19050,14,23.25,15,0.0 +19050,58,13.25,15,0.0 +19050,3,10,46,0.0 +19050,11,21,43,0.0 +19050,5,21.35,21,0.0 +19050,65,21.05,45,0.0 +19050,36,19,20,0.0 +19050,72,34.8,26,0.0 +19050,16,17.45,14,0.0 +19050,77,13,43,0.0 +19051,12,38,27,0.0 +19051,50,16.25,26,0.0 +19051,49,20,33,0.0 +19051,16,17.45,25,0.0 +19051,67,14,5,0.0 +19051,5,21.35,6,0.0 +19051,39,18,22,0.0 +19051,29,123.79,33,0.0 +19051,7,30,28,0.0 +19051,55,24,46,0.0 +19051,4,22,50,0.0 +19051,3,10,22,0.0 +19051,72,34.8,33,0.0 +19051,13,6,24,0.0 +19051,56,38,26,0.0 +19051,25,14,44,0.0 +19051,47,9.5,22,0.0 +19051,20,81,40,0.0 +19051,32,32,10,0.0 +19051,15,15.5,26,0.0 +19051,33,2.5,9,0.0 +19051,51,53,16,0.0 +19051,21,10,33,0.0 +19051,26,31.23,9,0.0 +19051,70,15,15,0.0 +19051,36,19,25,0.0 +19051,30,25.89,41,0.0 +19051,57,19.5,36,0.0 +19051,17,39,23,0.0 +19051,28,45.6,23,0.0 +19051,18,62.5,40,0.0 +19051,40,18.4,6,0.0 +19051,75,7.75,38,0.0 +19051,19,9.2,42,0.0 +19051,77,13,13,0.0 +19051,22,21,41,0.0 +19051,41,9.65,22,0.0 +19051,8,40,18,0.0 +19051,53,32.8,13,0.0 +19051,62,49.3,45,0.0 +19051,38,263.5,22,0.0 +19051,2,19,24,0.0 +19051,37,26,8,0.0 +19051,59,55,9,0.0 +19051,71,21.5,45,0.0 +19051,65,21.05,4,0.0 +19051,31,12.5,47,0.0 +19051,14,23.25,15,0.0 +19051,63,43.9,4,0.0 +19051,61,28.5,40,0.0 +19051,6,25,10,0.0 +19051,43,46,16,0.0 +19051,34,14,19,0.0 +19051,73,15,37,0.0 +19051,76,18,1,0.0 +19051,58,13.25,15,0.0 +19051,64,33.25,11,0.0 +19051,48,12.75,42,0.0 +19051,10,31,19,0.0 +19051,54,7.45,20,0.0 +19051,9,97,6,0.0 +19051,27,43.9,33,0.0 +19051,69,36,48,0.0 +19051,24,4.5,30,0.0 +19051,45,9.5,33,0.0 +19051,66,17,50,0.0 +19051,1,18,40,0.0 +19052,32,32,31,0.0 +19052,56,38,24,0.0 +19052,66,17,25,0.0 +19052,15,15.5,40,0.0 +19052,48,12.75,2,0.0 +19052,67,14,16,0.0 +19052,53,32.8,8,0.0 +19052,59,55,48,0.0 +19052,49,20,50,0.0 +19052,45,9.5,42,0.0 +19052,25,14,35,0.0 +19052,37,26,2,0.0 +19052,40,18.4,4,0.0 +19052,21,10,18,0.0 +19052,76,18,28,0.0 +19052,65,21.05,33,0.0 +19052,34,14,3,0.0 +19052,38,263.5,38,0.0 +19052,10,31,2,0.0 +19052,11,21,21,0.0 +19052,41,9.65,36,0.0 +19052,9,97,49,0.0 +19052,17,39,8,0.0 +19052,51,53,4,0.0 +19052,57,19.5,26,0.0 +19052,22,21,34,0.0 +19052,33,2.5,27,0.0 +19052,12,38,40,0.0 +19052,28,45.6,36,0.0 +19052,42,14,26,0.0 +19052,75,7.75,29,0.0 +19052,39,18,30,0.0 +19052,36,19,18,0.0 +19052,46,12,42,0.0 +19052,47,9.5,26,0.0 +19052,63,43.9,12,0.0 +19052,8,40,9,0.0 +19052,50,16.25,12,0.0 +19052,73,15,9,0.0 +19052,20,81,21,0.0 +19052,74,10,1,0.0 +19052,14,23.25,38,0.0 +19052,77,13,7,0.0 +19052,29,123.79,48,0.0 +19052,13,6,10,0.0 +19052,64,33.25,15,0.0 +19052,62,49.3,49,0.0 +19052,30,25.89,19,0.0 +19052,61,28.5,22,0.0 +19052,31,12.5,6,0.0 +19052,24,4.5,23,0.0 +19052,6,25,32,0.0 +19052,26,31.23,46,0.0 +19052,72,34.8,32,0.0 +19052,69,36,14,0.0 +19052,71,21.5,37,0.0 +19052,44,19.45,35,0.0 +19052,23,9,46,0.0 +19052,55,24,49,0.0 +19052,16,17.45,18,0.0 +19052,54,7.45,39,0.0 +19052,27,43.9,45,0.0 +19052,68,12.5,42,0.0 +19052,18,62.5,28,0.0 +19052,43,46,33,0.0 +19052,19,9.2,39,0.0 +19053,66,17,2,0.0 +19053,7,30,42,0.0 +19053,62,49.3,45,0.0 +19053,47,9.5,2,0.0 +19053,34,14,33,0.0 +19053,51,53,33,0.0 +19053,23,9,43,0.0 +19054,13,6,36,0.0 +19054,41,9.65,1,0.0 +19054,15,15.5,11,0.0 +19054,2,19,4,0.0 +19054,12,38,25,0.0 +19054,14,23.25,16,0.0 +19054,44,19.45,18,0.0 +19054,3,10,4,0.0 +19054,45,9.5,15,0.0 +19054,75,7.75,43,0.0 +19054,66,17,19,0.0 +19054,34,14,17,0.0 +19054,19,9.2,11,0.0 +19054,51,53,45,0.0 +19054,21,10,36,0.0 +19054,77,13,43,0.0 +19054,47,9.5,13,0.0 +19054,59,55,14,0.0 +19054,22,21,18,0.0 +19054,37,26,50,0.0 +19054,31,12.5,18,0.0 +19054,42,14,49,0.0 +19054,9,97,43,0.0 +19054,60,34,5,0.0 +19054,5,21.35,22,0.0 +19054,27,43.9,13,0.0 +19054,65,21.05,17,0.0 +19054,49,20,24,0.0 +19054,72,34.8,35,0.0 +19054,67,14,35,0.0 +19054,54,7.45,6,0.0 +19054,53,32.8,32,0.0 +19054,28,45.6,33,0.0 +19054,36,19,18,0.0 +19054,76,18,49,0.0 +19054,58,13.25,44,0.0 +19054,4,22,16,0.0 +19054,16,17.45,40,0.0 +19054,68,12.5,9,0.0 +19054,55,24,29,0.0 +19054,50,16.25,4,0.0 +19054,48,12.75,5,0.0 +19054,56,38,16,0.0 +19054,57,19.5,8,0.0 +19054,61,28.5,5,0.0 +19054,1,18,31,0.0 +19054,8,40,30,0.0 +19054,64,33.25,11,0.0 +19054,6,25,5,0.0 +19054,70,15,32,0.0 +19054,71,21.5,22,0.0 +19054,24,4.5,23,0.0 +19054,25,14,24,0.0 +19054,43,46,29,0.0 +19054,38,263.5,14,0.0 +19054,29,123.79,3,0.0 +19054,7,30,35,0.0 +19054,46,12,6,0.0 +19054,35,18,18,0.0 +19054,26,31.23,30,0.0 +19054,32,32,15,0.0 +19054,30,25.89,31,0.0 +19054,62,49.3,37,0.0 +19055,24,4.5,16,0.0 +19055,52,7,17,0.0 +19055,54,7.45,28,0.0 +19055,14,23.25,9,0.0 +19055,31,12.5,12,0.0 +19055,30,25.89,23,0.0 +19055,40,18.4,43,0.0 +19055,5,21.35,3,0.0 +19055,23,9,45,0.0 +19055,20,81,26,0.0 +19055,1,18,15,0.0 +19055,70,15,34,0.0 +19055,60,34,11,0.0 +19055,11,21,11,0.0 +19055,29,123.79,47,0.0 +19055,8,40,35,0.0 +19055,9,97,47,0.0 +19055,42,14,14,0.0 +19055,28,45.6,2,0.0 +19055,16,17.45,34,0.0 +19055,38,263.5,50,0.0 +19055,25,14,18,0.0 +19056,1,18,4,0.0 +19056,53,32.8,11,0.0 +19056,40,18.4,33,0.0 +19056,69,36,48,0.0 +19056,48,12.75,9,0.0 +19056,16,17.45,18,0.0 +19056,30,25.89,20,0.0 +19057,61,28.5,50,0.0 +19057,35,18,21,0.0 +19057,44,19.45,47,0.0 +19057,72,34.8,2,0.0 +19057,76,18,9,0.0 +19057,25,14,46,0.0 +19057,69,36,7,0.0 +19057,2,19,25,0.0 +19057,74,10,26,0.0 +19057,65,21.05,7,0.0 +19057,70,15,43,0.0 +19057,32,32,36,0.0 +19057,13,6,21,0.0 +19057,43,46,23,0.0 +19057,68,12.5,12,0.0 +19057,12,38,24,0.0 +19057,55,24,39,0.0 +19057,73,15,26,0.0 +19057,33,2.5,17,0.0 +19057,40,18.4,29,0.0 +19057,60,34,35,0.0 +19057,7,30,28,0.0 +19057,59,55,5,0.0 +19057,28,45.6,28,0.0 +19057,30,25.89,34,0.0 +19057,39,18,3,0.0 +19057,36,19,43,0.0 +19057,71,21.5,32,0.0 +19057,6,25,29,0.0 +19057,45,9.5,29,0.0 +19057,17,39,5,0.0 +19057,41,9.65,2,0.0 +19057,1,18,43,0.0 +19057,21,10,7,0.0 +19057,53,32.8,6,0.0 +19057,10,31,43,0.0 +19057,9,97,32,0.0 +19057,66,17,19,0.0 +19057,38,263.5,18,0.0 +19057,54,7.45,33,0.0 +19057,5,21.35,32,0.0 +19057,22,21,46,0.0 +19057,58,13.25,49,0.0 +19057,67,14,5,0.0 +19057,77,13,33,0.0 +19057,11,21,35,0.0 +19057,46,12,44,0.0 +19057,27,43.9,40,0.0 +19057,50,16.25,48,0.0 +19057,15,15.5,39,0.0 +19057,56,38,5,0.0 +19057,20,81,1,0.0 +19057,64,33.25,15,0.0 +19057,57,19.5,22,0.0 +19057,18,62.5,7,0.0 +19057,51,53,10,0.0 +19057,24,4.5,43,0.0 +19057,29,123.79,31,0.0 +19057,52,7,33,0.0 +19057,63,43.9,13,0.0 +19057,34,14,4,0.0 +19057,23,9,7,0.0 +19057,3,10,35,0.0 +19057,19,9.2,41,0.0 +19057,16,17.45,43,0.0 +19057,49,20,26,0.0 +19057,4,22,37,0.0 +19057,42,14,37,0.0 +19057,37,26,27,0.0 +19057,47,9.5,42,0.0 +19057,26,31.23,17,0.0 +19057,48,12.75,29,0.0 +19057,62,49.3,10,0.0 +19057,75,7.75,15,0.0 +19057,8,40,38,0.0 +19058,18,62.5,1,0.0 +19058,59,55,41,0.0 +19058,50,16.25,42,0.0 +19058,72,34.8,23,0.0 +19058,49,20,40,0.0 +19058,44,19.45,11,0.0 +19058,12,38,38,0.0 +19058,27,43.9,5,0.0 +19058,16,17.45,18,0.0 +19058,61,28.5,34,0.0 +19058,20,81,22,0.0 +19058,62,49.3,12,0.0 +19058,36,19,6,0.0 +19058,14,23.25,17,0.0 +19058,42,14,40,0.0 +19058,23,9,36,0.0 +19058,69,36,13,0.0 +19058,29,123.79,41,0.0 +19058,34,14,37,0.0 +19058,67,14,49,0.0 +19058,55,24,46,0.0 +19058,5,21.35,8,0.0 +19058,35,18,25,0.0 +19058,56,38,13,0.0 +19058,70,15,18,0.0 +19058,46,12,26,0.0 +19058,54,7.45,42,0.0 +19058,74,10,42,0.0 +19058,15,15.5,18,0.0 +19058,63,43.9,33,0.0 +19058,8,40,8,0.0 +19058,26,31.23,25,0.0 +19058,76,18,38,0.0 +19058,58,13.25,23,0.0 +19058,43,46,37,0.0 +19058,38,263.5,38,0.0 +19058,25,14,10,0.0 +19058,11,21,47,0.0 +19058,47,9.5,6,0.0 +19058,71,21.5,20,0.0 +19058,33,2.5,44,0.0 +19058,53,32.8,27,0.0 +19058,52,7,38,0.0 +19058,39,18,50,0.0 +19058,31,12.5,22,0.0 +19058,60,34,42,0.0 +19058,10,31,23,0.0 +19058,41,9.65,3,0.0 +19058,68,12.5,41,0.0 +19058,9,97,42,0.0 +19058,13,6,38,0.0 +19058,57,19.5,48,0.0 +19058,22,21,48,0.0 +19058,75,7.75,7,0.0 +19058,24,4.5,5,0.0 +19058,65,21.05,4,0.0 +19058,64,33.25,32,0.0 +19058,19,9.2,18,0.0 +19059,33,2.5,25,0.0 +19059,1,18,30,0.0 +19059,39,18,13,0.0 +19059,27,43.9,26,0.0 +19059,31,12.5,28,0.0 +19059,76,18,37,0.0 +19059,35,18,17,0.0 +19059,5,21.35,50,0.0 +19059,61,28.5,24,0.0 +19059,28,45.6,22,0.0 +19059,34,14,27,0.0 +19059,71,21.5,25,0.0 +19059,68,12.5,30,0.0 +19059,32,32,23,0.0 +19059,63,43.9,7,0.0 +19059,43,46,46,0.0 +19059,56,38,17,0.0 +19059,18,62.5,7,0.0 +19059,25,14,48,0.0 +19059,42,14,42,0.0 +19059,62,49.3,11,0.0 +19059,57,19.5,14,0.0 +19059,24,4.5,34,0.0 +19059,14,23.25,5,0.0 +19059,67,14,2,0.0 +19059,69,36,48,0.0 +19059,3,10,20,0.0 +19059,17,39,43,0.0 +19059,26,31.23,46,0.0 +19059,38,263.5,37,0.0 +19059,21,10,44,0.0 +19059,37,26,42,0.0 +19059,16,17.45,38,0.0 +19059,74,10,45,0.0 +19059,49,20,26,0.0 +19059,11,21,40,0.0 +19059,64,33.25,38,0.0 +19059,47,9.5,31,0.0 +19059,77,13,31,0.0 +19059,36,19,32,0.0 +19059,50,16.25,37,0.0 +19059,48,12.75,34,0.0 +19059,23,9,28,0.0 +19059,2,19,47,0.0 +19059,58,13.25,15,0.0 +19059,51,53,13,0.0 +19059,72,34.8,2,0.0 +19059,66,17,25,0.0 +19059,40,18.4,28,0.0 +19059,20,81,23,0.0 +19059,45,9.5,37,0.0 +19059,4,22,23,0.0 +19059,60,34,33,0.0 +19059,44,19.45,17,0.0 +19060,20,81,24,0.0 +19060,77,13,38,0.0 +19060,42,14,43,0.0 +19060,37,26,32,0.0 +19060,25,14,19,0.0 +19060,76,18,36,0.0 +19060,9,97,19,0.0 +19060,26,31.23,9,0.0 +19060,19,9.2,36,0.0 +19060,63,43.9,14,0.0 +19060,40,18.4,49,0.0 +19060,55,24,11,0.0 +19060,10,31,27,0.0 +19060,60,34,13,0.0 +19060,33,2.5,40,0.0 +19060,43,46,25,0.0 +19060,75,7.75,10,0.0 +19060,57,19.5,25,0.0 +19060,39,18,28,0.0 +19060,7,30,18,0.0 +19060,5,21.35,30,0.0 +19060,11,21,32,0.0 +19060,28,45.6,7,0.0 +19060,32,32,11,0.0 +19060,36,19,14,0.0 +19061,46,12,48,0.0 +19061,6,25,11,0.0 +19061,32,32,17,0.0 +19061,48,12.75,44,0.0 +19061,23,9,1,0.0 +19061,35,18,5,0.0 +19061,31,12.5,2,0.0 +19061,18,62.5,33,0.0 +19061,1,18,42,0.0 +19061,27,43.9,1,0.0 +19061,7,30,3,0.0 +19061,41,9.65,7,0.0 +19061,19,9.2,28,0.0 +19061,61,28.5,16,0.0 +19061,24,4.5,13,0.0 +19061,17,39,16,0.0 +19061,51,53,27,0.0 +19061,28,45.6,15,0.0 +19061,44,19.45,32,0.0 +19061,39,18,19,0.0 +19061,58,13.25,2,0.0 +19061,36,19,45,0.0 +19061,8,40,49,0.0 +19061,25,14,33,0.0 +19061,3,10,27,0.0 +19061,72,34.8,13,0.0 +19061,14,23.25,5,0.0 +19061,68,12.5,50,0.0 +19061,60,34,40,0.0 +19061,53,32.8,4,0.0 +19061,5,21.35,16,0.0 +19061,40,18.4,26,0.0 +19061,77,13,28,0.0 +19061,9,97,25,0.0 +19061,65,21.05,15,0.0 +19061,57,19.5,35,0.0 +19061,50,16.25,19,0.0 +19061,4,22,49,0.0 +19061,54,7.45,39,0.0 +19061,38,263.5,35,0.0 +19061,16,17.45,17,0.0 +19061,75,7.75,25,0.0 +19061,11,21,47,0.0 +19061,66,17,40,0.0 +19061,71,21.5,11,0.0 +19061,20,81,35,0.0 +19062,10,31,18,0.0 +19062,75,7.75,10,0.0 +19062,77,13,26,0.0 +19062,18,62.5,39,0.0 +19062,9,97,24,0.0 +19062,14,23.25,46,0.0 +19062,41,9.65,7,0.0 +19062,32,32,2,0.0 +19062,30,25.89,8,0.0 +19062,20,81,9,0.0 +19062,60,34,39,0.0 +19062,37,26,6,0.0 +19062,28,45.6,20,0.0 +19062,70,15,11,0.0 +19062,31,12.5,22,0.0 +19062,13,6,20,0.0 +19062,68,12.5,5,0.0 +19062,33,2.5,15,0.0 +19062,1,18,49,0.0 +19062,51,53,8,0.0 +19062,35,18,24,0.0 +19062,55,24,11,0.0 +19062,7,30,40,0.0 +19062,34,14,41,0.0 +19062,11,21,26,0.0 +19062,25,14,7,0.0 +19062,23,9,12,0.0 +19062,53,32.8,7,0.0 +19062,59,55,46,0.0 +19062,73,15,21,0.0 +19062,21,10,18,0.0 +19062,72,34.8,33,0.0 +19062,39,18,30,0.0 +19062,67,14,18,0.0 +19062,50,16.25,24,0.0 +19062,66,17,11,0.0 +19062,26,31.23,33,0.0 +19063,75,7.75,6,0.0 +19063,36,19,24,0.0 +19063,62,49.3,1,0.0 +19063,17,39,37,0.0 +19063,27,43.9,16,0.0 +19063,11,21,1,0.0 +19063,26,31.23,18,0.0 +19063,74,10,43,0.0 +19063,23,9,28,0.0 +19063,64,33.25,41,0.0 +19063,33,2.5,4,0.0 +19063,24,4.5,21,0.0 +19063,32,32,24,0.0 +19063,31,12.5,8,0.0 +19063,54,7.45,40,0.0 +19063,28,45.6,47,0.0 +19063,53,32.8,47,0.0 +19063,4,22,47,0.0 +19063,72,34.8,20,0.0 +19063,2,19,23,0.0 +19063,61,28.5,35,0.0 +19063,70,15,1,0.0 +19063,77,13,49,0.0 +19063,39,18,19,0.0 +19063,15,15.5,20,0.0 +19063,41,9.65,29,0.0 +19063,73,15,3,0.0 +19063,34,14,45,0.0 +19063,25,14,13,0.0 +19063,12,38,3,0.0 +19063,76,18,24,0.0 +19063,30,25.89,25,0.0 +19063,43,46,16,0.0 +19063,49,20,3,0.0 +19063,57,19.5,9,0.0 +19063,13,6,24,0.0 +19063,63,43.9,30,0.0 +19063,46,12,7,0.0 +19063,20,81,16,0.0 +19063,35,18,4,0.0 +19063,52,7,30,0.0 +19063,18,62.5,6,0.0 +19063,38,263.5,31,0.0 +19063,69,36,21,0.0 +19063,51,53,14,0.0 +19063,6,25,16,0.0 +19063,40,18.4,34,0.0 +19063,68,12.5,22,0.0 +19063,37,26,30,0.0 +19063,7,30,45,0.0 +19063,44,19.45,11,0.0 +19063,59,55,33,0.0 +19063,8,40,5,0.0 +19063,3,10,20,0.0 +19063,58,13.25,27,0.0 +19063,67,14,30,0.0 +19063,21,10,32,0.0 +19063,48,12.75,29,0.0 +19063,56,38,35,0.0 +19063,16,17.45,2,0.0 +19063,50,16.25,15,0.0 +19063,45,9.5,17,0.0 +19063,19,9.2,2,0.0 +19063,5,21.35,12,0.0 +19063,66,17,32,0.0 +19063,65,21.05,23,0.0 +19063,9,97,35,0.0 +19064,64,33.25,48,0.0 +19064,26,31.23,30,0.0 +19064,47,9.5,13,0.0 +19064,32,32,45,0.0 +19064,25,14,4,0.0 +19064,31,12.5,44,0.0 +19064,33,2.5,35,0.0 +19064,8,40,28,0.0 +19064,36,19,31,0.0 +19064,41,9.65,10,0.0 +19064,74,10,21,0.0 +19064,68,12.5,38,0.0 +19064,59,55,48,0.0 +19064,37,26,28,0.0 +19064,38,263.5,11,0.0 +19064,50,16.25,20,0.0 +19064,45,9.5,47,0.0 +19064,39,18,42,0.0 +19064,5,21.35,6,0.0 +19064,53,32.8,36,0.0 +19064,19,9.2,20,0.0 +19064,12,38,10,0.0 +19064,15,15.5,20,0.0 +19064,67,14,47,0.0 +19064,11,21,38,0.0 +19064,27,43.9,19,0.0 +19064,60,34,19,0.0 +19064,20,81,2,0.0 +19064,24,4.5,47,0.0 +19064,4,22,10,0.0 +19064,3,10,2,0.0 +19064,69,36,16,0.0 +19064,66,17,13,0.0 +19064,23,9,42,0.0 +19064,51,53,34,0.0 +19064,9,97,28,0.0 +19064,46,12,37,0.0 +19064,63,43.9,14,0.0 +19064,2,19,12,0.0 +19064,22,21,43,0.0 +19064,48,12.75,30,0.0 +19064,30,25.89,7,0.0 +19064,10,31,11,0.0 +19064,29,123.79,24,0.0 +19064,62,49.3,17,0.0 +19064,44,19.45,7,0.0 +19064,35,18,32,0.0 +19065,14,23.25,11,0.0 +19065,3,10,30,0.0 +19065,75,7.75,27,0.0 +19065,13,6,19,0.0 +19065,47,9.5,9,0.0 +19065,70,15,37,0.0 +19065,33,2.5,24,0.0 +19065,72,34.8,3,0.0 +19065,5,21.35,8,0.0 +19065,62,49.3,37,0.0 +19065,55,24,32,0.0 +19065,40,18.4,46,0.0 +19065,68,12.5,2,0.0 +19065,52,7,5,0.0 +19065,29,123.79,45,0.0 +19065,32,32,40,0.0 +19065,76,18,46,0.0 +19065,30,25.89,34,0.0 +19065,63,43.9,13,0.0 +19065,4,22,15,0.0 +19065,54,7.45,34,0.0 +19065,21,10,37,0.0 +19065,46,12,8,0.0 +19065,45,9.5,8,0.0 +19065,77,13,18,0.0 +19066,69,36,38,0.0 +19067,62,49.3,7,0.0 +19067,51,53,22,0.0 +19067,71,21.5,36,0.0 +19067,64,33.25,23,0.0 +19067,18,62.5,19,0.0 +19067,47,9.5,39,0.0 +19067,5,21.35,49,0.0 +19067,42,14,25,0.0 +19067,33,2.5,7,0.0 +19067,9,97,37,0.0 +19067,70,15,47,0.0 +19067,22,21,18,0.0 +19067,19,9.2,44,0.0 +19067,14,23.25,21,0.0 +19067,27,43.9,19,0.0 +19067,6,25,34,0.0 +19067,60,34,6,0.0 +19067,36,19,11,0.0 +19067,66,17,39,0.0 +19067,45,9.5,15,0.0 +19067,38,263.5,40,0.0 +19067,3,10,19,0.0 +19067,8,40,31,0.0 +19067,57,19.5,45,0.0 +19067,72,34.8,28,0.0 +19067,55,24,42,0.0 +19067,77,13,50,0.0 +19067,15,15.5,36,0.0 +19067,63,43.9,16,0.0 +19067,29,123.79,40,0.0 +19067,20,81,48,0.0 +19067,44,19.45,29,0.0 +19067,41,9.65,24,0.0 +19067,68,12.5,20,0.0 +19067,58,13.25,42,0.0 +19067,12,38,8,0.0 +19067,7,30,38,0.0 +19067,21,10,23,0.0 +19067,43,46,21,0.0 +19067,24,4.5,11,0.0 +19067,35,18,46,0.0 +19067,46,12,31,0.0 +19067,53,32.8,33,0.0 +19067,74,10,21,0.0 +19067,1,18,42,0.0 +19067,11,21,20,0.0 +19067,31,12.5,10,0.0 +19067,28,45.6,31,0.0 +19067,52,7,4,0.0 +19067,50,16.25,16,0.0 +19067,56,38,21,0.0 +19067,48,12.75,35,0.0 +19067,23,9,1,0.0 +19067,73,15,1,0.0 +19067,2,19,47,0.0 +19067,34,14,27,0.0 +19067,65,21.05,38,0.0 +19067,40,18.4,15,0.0 +19067,26,31.23,7,0.0 +19067,75,7.75,34,0.0 +19067,16,17.45,5,0.0 +19067,37,26,42,0.0 +19068,23,9,18,0.0 +19068,28,45.6,22,0.0 +19068,31,12.5,36,0.0 +19068,55,24,38,0.0 +19068,24,4.5,2,0.0 +19068,1,18,12,0.0 +19068,73,15,20,0.0 +19068,3,10,11,0.0 +19068,66,17,25,0.0 +19068,54,7.45,48,0.0 +19068,72,34.8,34,0.0 +19068,38,263.5,9,0.0 +19068,53,32.8,2,0.0 +19068,16,17.45,41,0.0 +19068,42,14,16,0.0 +19068,6,25,8,0.0 +19068,62,49.3,5,0.0 +19068,70,15,47,0.0 +19068,48,12.75,30,0.0 +19068,75,7.75,11,0.0 +19068,58,13.25,6,0.0 +19068,7,30,17,0.0 +19068,63,43.9,19,0.0 +19068,47,9.5,14,0.0 +19068,15,15.5,8,0.0 +19068,11,21,9,0.0 +19068,17,39,26,0.0 +19068,34,14,37,0.0 +19068,10,31,28,0.0 +19068,21,10,38,0.0 +19068,4,22,18,0.0 +19068,52,7,36,0.0 +19068,74,10,26,0.0 +19068,49,20,48,0.0 +19068,71,21.5,37,0.0 +19069,34,14,1,0.0 +19069,56,38,12,0.0 +19069,48,12.75,22,0.0 +19069,58,13.25,18,0.0 +19069,9,97,8,0.0 +19069,43,46,30,0.0 +19069,1,18,41,0.0 +19069,49,20,21,0.0 +19069,18,62.5,19,0.0 +19069,52,7,39,0.0 +19069,45,9.5,50,0.0 +19069,65,21.05,28,0.0 +19069,51,53,1,0.0 +19069,23,9,29,0.0 +19069,62,49.3,37,0.0 +19069,61,28.5,40,0.0 +19069,33,2.5,16,0.0 +19069,6,25,29,0.0 +19069,39,18,36,0.0 +19069,20,81,30,0.0 +19069,31,12.5,49,0.0 +19069,50,16.25,21,0.0 +19069,14,23.25,16,0.0 +19069,36,19,37,0.0 +19069,19,9.2,47,0.0 +19069,27,43.9,9,0.0 +19069,11,21,49,0.0 +19069,68,12.5,33,0.0 +19069,37,26,40,0.0 +19069,15,15.5,24,0.0 +19069,54,7.45,6,0.0 +19069,5,21.35,5,0.0 +19070,45,9.5,47,0.0 +19070,66,17,15,0.0 +19070,42,14,34,0.0 +19070,8,40,16,0.0 +19070,57,19.5,25,0.0 +19070,60,34,1,0.0 +19070,40,18.4,2,0.0 +19070,65,21.05,24,0.0 +19070,26,31.23,1,0.0 +19070,58,13.25,38,0.0 +19070,14,23.25,37,0.0 +19070,52,7,44,0.0 +19070,18,62.5,45,0.0 +19070,22,21,1,0.0 +19070,59,55,38,0.0 +19070,19,9.2,44,0.0 +19070,74,10,49,0.0 +19070,47,9.5,27,0.0 +19070,67,14,9,0.0 +19070,11,21,13,0.0 +19070,13,6,33,0.0 +19070,31,12.5,16,0.0 +19070,34,14,50,0.0 +19070,33,2.5,9,0.0 +19070,16,17.45,46,0.0 +19070,75,7.75,36,0.0 +19070,63,43.9,13,0.0 +19070,69,36,10,0.0 +19070,76,18,48,0.0 +19070,62,49.3,30,0.0 +19070,77,13,43,0.0 +19070,4,22,26,0.0 +19070,48,12.75,45,0.0 +19070,70,15,30,0.0 +19070,3,10,24,0.0 +19070,73,15,26,0.0 +19070,32,32,5,0.0 +19070,64,33.25,6,0.0 +19070,35,18,43,0.0 +19070,6,25,7,0.0 +19070,39,18,50,0.0 +19070,68,12.5,14,0.0 +19070,5,21.35,30,0.0 +19070,38,263.5,39,0.0 +19070,51,53,11,0.0 +19070,7,30,32,0.0 +19070,71,21.5,13,0.0 +19070,44,19.45,10,0.0 +19070,36,19,3,0.0 +19070,24,4.5,19,0.0 +19070,56,38,39,0.0 +19070,53,32.8,5,0.0 +19070,10,31,2,0.0 +19070,20,81,25,0.0 +19070,54,7.45,46,0.0 +19070,72,34.8,12,0.0 +19070,17,39,22,0.0 +19070,23,9,47,0.0 +19070,1,18,36,0.0 +19070,50,16.25,7,0.0 +19070,28,45.6,10,0.0 +19070,21,10,50,0.0 +19070,37,26,30,0.0 +19071,23,9,41,0.0 +19071,40,18.4,31,0.0 +19071,39,18,18,0.0 +19071,70,15,27,0.0 +19071,64,33.25,42,0.0 +19071,69,36,1,0.0 +19071,12,38,38,0.0 +19071,52,7,41,0.0 +19071,60,34,41,0.0 +19071,49,20,27,0.0 +19071,53,32.8,13,0.0 +19071,67,14,3,0.0 +19071,22,21,50,0.0 +19071,9,97,27,0.0 +19071,20,81,8,0.0 +19071,15,15.5,39,0.0 +19071,6,25,40,0.0 +19071,35,18,3,0.0 +19071,77,13,46,0.0 +19071,7,30,41,0.0 +19071,24,4.5,22,0.0 +19071,59,55,24,0.0 +19071,34,14,49,0.0 +19071,66,17,22,0.0 +19071,8,40,36,0.0 +19071,5,21.35,38,0.0 +19071,10,31,45,0.0 +19071,29,123.79,6,0.0 +19071,17,39,6,0.0 +19071,76,18,29,0.0 +19071,32,32,28,0.0 +19071,41,9.65,24,0.0 +19071,19,9.2,49,0.0 +19071,36,19,24,0.0 +19071,68,12.5,9,0.0 +19071,72,34.8,49,0.0 +19071,27,43.9,26,0.0 +19071,47,9.5,36,0.0 +19071,50,16.25,8,0.0 +19071,71,21.5,38,0.0 +19071,3,10,7,0.0 +19071,62,49.3,13,0.0 +19071,26,31.23,34,0.0 +19071,57,19.5,24,0.0 +19071,25,14,46,0.0 +19071,74,10,30,0.0 +19071,30,25.89,34,0.0 +19071,11,21,8,0.0 +19071,65,21.05,41,0.0 +19071,42,14,50,0.0 +19071,61,28.5,50,0.0 +19071,55,24,27,0.0 +19071,51,53,21,0.0 +19071,73,15,42,0.0 +19071,14,23.25,3,0.0 +19071,33,2.5,9,0.0 +19071,44,19.45,36,0.0 +19071,56,38,45,0.0 +19071,63,43.9,27,0.0 +19071,18,62.5,16,0.0 +19071,38,263.5,10,0.0 +19071,48,12.75,16,0.0 +19071,75,7.75,38,0.0 +19071,2,19,1,0.0 +19071,4,22,41,0.0 +19071,46,12,25,0.0 +19071,45,9.5,21,0.0 +19072,1,18,1,0.0 +19072,45,9.5,5,0.0 +19072,15,15.5,27,0.0 +19072,56,38,33,0.0 +19072,60,34,25,0.0 +19072,54,7.45,8,0.0 +19072,44,19.45,18,0.0 +19072,34,14,39,0.0 +19072,12,38,31,0.0 +19072,73,15,14,0.0 +19072,46,12,42,0.0 +19072,52,7,32,0.0 +19072,64,33.25,5,0.0 +19072,71,21.5,20,0.0 +19072,61,28.5,49,0.0 +19072,77,13,1,0.0 +19072,29,123.79,21,0.0 +19072,13,6,38,0.0 +19072,41,9.65,21,0.0 +19072,5,21.35,43,0.0 +19072,43,46,5,0.0 +19072,35,18,14,0.0 +19072,6,25,7,0.0 +19072,32,32,31,0.0 +19072,38,263.5,26,0.0 +19072,74,10,23,0.0 +19072,3,10,23,0.0 +19072,19,9.2,30,0.0 +19072,49,20,22,0.0 +19072,65,21.05,5,0.0 +19072,21,10,25,0.0 +19072,11,21,17,0.0 +19072,33,2.5,31,0.0 +19072,22,21,16,0.0 +19072,26,31.23,23,0.0 +19072,70,15,12,0.0 +19072,14,23.25,11,0.0 +19072,57,19.5,44,0.0 +19072,55,24,6,0.0 +19073,27,43.9,37,0.0 +19073,23,9,3,0.0 +19073,9,97,2,0.0 +19073,17,39,36,0.0 +19073,48,12.75,43,0.0 +19073,67,14,17,0.0 +19073,18,62.5,32,0.0 +19073,33,2.5,33,0.0 +19073,1,18,11,0.0 +19073,53,32.8,16,0.0 +19073,51,53,31,0.0 +19073,6,25,44,0.0 +19073,58,13.25,34,0.0 +19073,7,30,25,0.0 +19073,8,40,21,0.0 +19073,73,15,31,0.0 +19073,47,9.5,16,0.0 +19073,57,19.5,35,0.0 +19073,28,45.6,38,0.0 +19073,26,31.23,1,0.0 +19073,77,13,2,0.0 +19073,61,28.5,3,0.0 +19073,30,25.89,41,0.0 +19073,66,17,34,0.0 +19073,31,12.5,34,0.0 +19073,15,15.5,2,0.0 +19073,36,19,39,0.0 +19073,50,16.25,42,0.0 +19073,12,38,30,0.0 +19073,69,36,49,0.0 +19073,56,38,32,0.0 +19074,52,7,12,0.0 +19074,33,2.5,50,0.0 +19074,50,16.25,34,0.0 +19074,19,9.2,39,0.0 +19074,34,14,7,0.0 +19074,4,22,13,0.0 +19074,67,14,22,0.0 +19074,54,7.45,25,0.0 +19074,9,97,7,0.0 +19074,40,18.4,44,0.0 +19074,47,9.5,21,0.0 +19074,17,39,38,0.0 +19074,46,12,48,0.0 +19074,15,15.5,34,0.0 +19074,39,18,2,0.0 +19074,61,28.5,42,0.0 +19074,10,31,31,0.0 +19074,31,12.5,46,0.0 +19074,7,30,27,0.0 +19074,44,19.45,25,0.0 +19075,48,12.75,4,0.0 +19075,64,33.25,35,0.0 +19075,41,9.65,41,0.0 +19075,1,18,25,0.0 +19075,10,31,31,0.0 +19075,52,7,50,0.0 +19075,69,36,25,0.0 +19075,47,9.5,28,0.0 +19075,26,31.23,38,0.0 +19075,33,2.5,27,0.0 +19075,74,10,50,0.0 +19075,34,14,30,0.0 +19075,4,22,14,0.0 +19075,9,97,11,0.0 +19075,37,26,14,0.0 +19075,66,17,24,0.0 +19075,35,18,34,0.0 +19075,76,18,42,0.0 +19075,40,18.4,49,0.0 +19075,70,15,8,0.0 +19075,50,16.25,9,0.0 +19075,60,34,32,0.0 +19075,61,28.5,10,0.0 +19075,59,55,11,0.0 +19075,44,19.45,16,0.0 +19075,67,14,25,0.0 +19075,53,32.8,22,0.0 +19075,57,19.5,6,0.0 +19075,16,17.45,9,0.0 +19075,24,4.5,10,0.0 +19075,73,15,42,0.0 +19075,55,24,31,0.0 +19075,49,20,43,0.0 +19075,15,15.5,50,0.0 +19075,54,7.45,20,0.0 +19075,30,25.89,13,0.0 +19075,36,19,21,0.0 +19075,11,21,27,0.0 +19075,6,25,25,0.0 +19075,29,123.79,4,0.0 +19075,25,14,45,0.0 +19075,51,53,50,0.0 +19075,42,14,27,0.0 +19075,75,7.75,18,0.0 +19075,19,9.2,26,0.0 +19075,18,62.5,4,0.0 +19075,71,21.5,27,0.0 +19075,72,34.8,35,0.0 +19075,3,10,40,0.0 +19075,68,12.5,8,0.0 +19075,8,40,39,0.0 +19075,27,43.9,12,0.0 +19075,31,12.5,2,0.0 +19075,28,45.6,41,0.0 +19075,17,39,36,0.0 +19075,21,10,49,0.0 +19076,74,10,41,0.0 +19076,55,24,29,0.0 +19076,19,9.2,48,0.0 +19076,42,14,13,0.0 +19076,1,18,19,0.0 +19076,3,10,50,0.0 +19076,36,19,28,0.0 +19076,31,12.5,31,0.0 +19076,75,7.75,49,0.0 +19076,33,2.5,16,0.0 +19076,20,81,36,0.0 +19076,6,25,33,0.0 +19076,9,97,26,0.0 +19076,43,46,4,0.0 +19076,63,43.9,23,0.0 +19076,13,6,23,0.0 +19076,38,263.5,18,0.0 +19076,39,18,20,0.0 +19076,69,36,6,0.0 +19076,5,21.35,33,0.0 +19076,48,12.75,44,0.0 +19076,64,33.25,19,0.0 +19076,53,32.8,24,0.0 +19076,32,32,2,0.0 +19076,60,34,6,0.0 +19076,4,22,7,0.0 +19076,14,23.25,13,0.0 +19076,67,14,43,0.0 +19076,27,43.9,22,0.0 +19076,37,26,20,0.0 +19076,50,16.25,34,0.0 +19076,26,31.23,30,0.0 +19076,65,21.05,36,0.0 +19076,72,34.8,39,0.0 +19076,2,19,29,0.0 +19076,7,30,15,0.0 +19076,52,7,19,0.0 +19076,56,38,48,0.0 +19076,59,55,2,0.0 +19076,28,45.6,26,0.0 +19076,44,19.45,21,0.0 +19076,10,31,26,0.0 +19076,51,53,20,0.0 +19077,68,12.5,26,0.0 +19077,15,15.5,36,0.0 +19077,76,18,1,0.0 +19077,21,10,26,0.0 +19077,62,49.3,18,0.0 +19077,4,22,36,0.0 +19077,70,15,44,0.0 +19077,6,25,50,0.0 +19077,38,263.5,30,0.0 +19077,31,12.5,22,0.0 +19077,41,9.65,10,0.0 +19077,24,4.5,32,0.0 +19077,27,43.9,9,0.0 +19077,30,25.89,47,0.0 +19077,58,13.25,24,0.0 +19077,16,17.45,2,0.0 +19077,72,34.8,31,0.0 +19077,61,28.5,27,0.0 +19077,32,32,4,0.0 +19077,39,18,39,0.0 +19077,11,21,8,0.0 +19077,12,38,8,0.0 +19077,71,21.5,32,0.0 +19077,45,9.5,10,0.0 +19077,5,21.35,48,0.0 +19077,74,10,35,0.0 +19077,50,16.25,30,0.0 +19077,23,9,26,0.0 +19077,56,38,46,0.0 +19077,51,53,13,0.0 +19077,19,9.2,32,0.0 +19077,54,7.45,12,0.0 +19078,21,10,30,0.0 +19078,63,43.9,9,0.0 +19078,49,20,47,0.0 +19078,54,7.45,20,0.0 +19078,40,18.4,1,0.0 +19078,7,30,11,0.0 +19078,29,123.79,15,0.0 +19078,60,34,44,0.0 +19078,12,38,17,0.0 +19078,51,53,20,0.0 +19078,70,15,44,0.0 +19078,6,25,7,0.0 +19078,30,25.89,14,0.0 +19078,38,263.5,45,0.0 +19078,44,19.45,4,0.0 +19078,13,6,1,0.0 +19078,5,21.35,42,0.0 +19078,34,14,36,0.0 +19078,58,13.25,6,0.0 +19078,24,4.5,4,0.0 +19078,75,7.75,7,0.0 +19078,43,46,32,0.0 +19078,68,12.5,10,0.0 +19078,15,15.5,27,0.0 +19078,55,24,8,0.0 +19078,39,18,17,0.0 +19078,47,9.5,42,0.0 +19078,17,39,26,0.0 +19078,77,13,19,0.0 +19078,67,14,30,0.0 +19078,27,43.9,24,0.0 +19078,11,21,35,0.0 +19078,37,26,21,0.0 +19078,28,45.6,48,0.0 +19078,9,97,50,0.0 +19078,65,21.05,46,0.0 +19078,73,15,4,0.0 +19078,4,22,6,0.0 +19078,50,16.25,40,0.0 +19078,26,31.23,3,0.0 +19078,14,23.25,4,0.0 +19078,52,7,46,0.0 +19078,61,28.5,16,0.0 +19078,71,21.5,18,0.0 +19078,10,31,5,0.0 +19078,74,10,15,0.0 +19078,53,32.8,40,0.0 +19079,69,36,23,0.0 +19079,42,14,3,0.0 +19079,51,53,19,0.0 +19079,74,10,43,0.0 +19079,71,21.5,21,0.0 +19079,24,4.5,45,0.0 +19079,77,13,48,0.0 +19079,2,19,10,0.0 +19079,12,38,38,0.0 +19079,45,9.5,19,0.0 +19079,36,19,18,0.0 +19079,1,18,24,0.0 +19079,28,45.6,46,0.0 +19079,52,7,14,0.0 +19079,9,97,48,0.0 +19079,57,19.5,12,0.0 +19079,19,9.2,5,0.0 +19079,62,49.3,12,0.0 +19079,18,62.5,1,0.0 +19079,4,22,49,0.0 +19079,7,30,50,0.0 +19079,48,12.75,9,0.0 +19079,41,9.65,27,0.0 +19079,67,14,8,0.0 +19079,30,25.89,2,0.0 +19079,68,12.5,8,0.0 +19079,15,15.5,31,0.0 +19079,21,10,15,0.0 +19079,56,38,5,0.0 +19079,25,14,31,0.0 +19079,3,10,13,0.0 +19079,76,18,36,0.0 +19079,75,7.75,4,0.0 +19079,26,31.23,16,0.0 +19079,59,55,28,0.0 +19079,27,43.9,39,0.0 +19079,17,39,30,0.0 +19079,65,21.05,39,0.0 +19079,37,26,45,0.0 +19079,39,18,8,0.0 +19079,31,12.5,26,0.0 +19079,46,12,34,0.0 +19079,72,34.8,10,0.0 +19079,61,28.5,10,0.0 +19079,20,81,14,0.0 +19079,73,15,21,0.0 +19079,64,33.25,31,0.0 +19079,6,25,5,0.0 +19079,70,15,30,0.0 +19079,5,21.35,25,0.0 +19079,33,2.5,26,0.0 +19079,58,13.25,36,0.0 +19079,14,23.25,8,0.0 +19079,29,123.79,15,0.0 +19079,23,9,1,0.0 +19079,22,21,33,0.0 +19080,31,12.5,11,0.0 +19080,48,12.75,47,0.0 +19080,38,263.5,26,0.0 +19080,47,9.5,4,0.0 +19080,11,21,5,0.0 +19080,36,19,16,0.0 +19080,39,18,3,0.0 +19080,73,15,22,0.0 +19080,23,9,2,0.0 +19080,18,62.5,47,0.0 +19080,20,81,1,0.0 +19080,16,17.45,24,0.0 +19080,52,7,21,0.0 +19080,21,10,25,0.0 +19080,24,4.5,2,0.0 +19080,8,40,10,0.0 +19080,34,14,4,0.0 +19080,76,18,31,0.0 +19080,59,55,42,0.0 +19080,50,16.25,1,0.0 +19080,71,21.5,28,0.0 +19080,10,31,36,0.0 +19080,7,30,27,0.0 +19080,62,49.3,45,0.0 +19080,27,43.9,44,0.0 +19080,28,45.6,12,0.0 +19080,43,46,12,0.0 +19080,30,25.89,3,0.0 +19080,63,43.9,48,0.0 +19080,25,14,38,0.0 +19080,19,9.2,1,0.0 +19080,42,14,14,0.0 +19080,13,6,45,0.0 +19080,35,18,49,0.0 +19080,66,17,23,0.0 +19080,54,7.45,18,0.0 +19080,15,15.5,8,0.0 +19080,56,38,31,0.0 +19080,70,15,13,0.0 +19080,67,14,21,0.0 +19080,64,33.25,33,0.0 +19080,6,25,31,0.0 +19080,33,2.5,34,0.0 +19080,68,12.5,40,0.0 +19080,37,26,50,0.0 +19080,14,23.25,21,0.0 +19080,22,21,34,0.0 +19080,46,12,8,0.0 +19080,74,10,17,0.0 +19080,12,38,25,0.0 +19080,32,32,25,0.0 +19080,45,9.5,14,0.0 +19080,2,19,18,0.0 +19080,55,24,41,0.0 +19080,41,9.65,11,0.0 +19080,9,97,15,0.0 +19080,53,32.8,29,0.0 +19080,61,28.5,25,0.0 +19080,57,19.5,6,0.0 +19080,5,21.35,26,0.0 +19080,49,20,1,0.0 +19080,1,18,23,0.0 +19080,60,34,46,0.0 +19080,44,19.45,37,0.0 +19080,77,13,44,0.0 +19080,17,39,1,0.0 +19081,22,21,37,0.0 +19081,29,123.79,15,0.0 +19081,42,14,31,0.0 +19081,71,21.5,46,0.0 +19081,38,263.5,34,0.0 +19081,13,6,44,0.0 +19081,54,7.45,6,0.0 +19081,60,34,6,0.0 +19081,73,15,37,0.0 +19081,11,21,4,0.0 +19081,41,9.65,2,0.0 +19081,61,28.5,12,0.0 +19081,50,16.25,11,0.0 +19081,33,2.5,29,0.0 +19081,24,4.5,4,0.0 +19081,40,18.4,39,0.0 +19081,37,26,43,0.0 +19081,69,36,45,0.0 +19081,26,31.23,10,0.0 +19081,62,49.3,50,0.0 +19081,20,81,49,0.0 +19081,56,38,16,0.0 +19081,12,38,24,0.0 +19081,2,19,21,0.0 +19081,16,17.45,27,0.0 +19081,30,25.89,39,0.0 +19081,75,7.75,2,0.0 +19081,27,43.9,33,0.0 +19081,28,45.6,38,0.0 +19081,51,53,25,0.0 +19081,35,18,26,0.0 +19081,57,19.5,14,0.0 +19081,63,43.9,16,0.0 +19081,53,32.8,12,0.0 +19081,7,30,50,0.0 +19081,25,14,44,0.0 +19081,47,9.5,10,0.0 +19081,32,32,25,0.0 +19081,9,97,1,0.0 +19081,31,12.5,25,0.0 +19081,64,33.25,30,0.0 +19081,1,18,18,0.0 +19081,58,13.25,50,0.0 +19081,14,23.25,1,0.0 +19081,48,12.75,33,0.0 +19081,66,17,16,0.0 +19081,70,15,46,0.0 +19081,43,46,25,0.0 +19081,65,21.05,46,0.0 +19081,15,15.5,10,0.0 +19081,74,10,14,0.0 +19081,10,31,20,0.0 +19081,23,9,1,0.0 +19081,46,12,18,0.0 +19081,68,12.5,16,0.0 +19081,52,7,4,0.0 +19081,17,39,28,0.0 +19081,8,40,15,0.0 +19081,36,19,39,0.0 +19081,5,21.35,27,0.0 +19081,18,62.5,48,0.0 +19082,20,81,3,0.0 +19082,54,7.45,23,0.0 +19082,76,18,8,0.0 +19082,4,22,34,0.0 +19082,6,25,1,0.0 +19082,42,14,13,0.0 +19082,27,43.9,10,0.0 +19082,69,36,39,0.0 +19082,57,19.5,33,0.0 +19082,70,15,49,0.0 +19082,46,12,38,0.0 +19082,62,49.3,41,0.0 +19082,75,7.75,29,0.0 +19082,29,123.79,36,0.0 +19082,1,18,9,0.0 +19082,68,12.5,14,0.0 +19082,36,19,1,0.0 +19082,50,16.25,46,0.0 +19082,35,18,36,0.0 +19082,51,53,37,0.0 +19082,49,20,5,0.0 +19082,52,7,28,0.0 +19082,32,32,44,0.0 +19082,77,13,32,0.0 +19082,67,14,11,0.0 +19082,44,19.45,37,0.0 +19082,31,12.5,29,0.0 +19082,39,18,35,0.0 +19082,8,40,45,0.0 +19082,45,9.5,18,0.0 +19082,72,34.8,26,0.0 +19082,65,21.05,27,0.0 +19082,73,15,28,0.0 +19082,41,9.65,29,0.0 +19082,74,10,1,0.0 +19082,48,12.75,10,0.0 +19082,7,30,15,0.0 +19082,58,13.25,7,0.0 +19082,24,4.5,20,0.0 +19082,33,2.5,17,0.0 +19082,10,31,4,0.0 +19082,66,17,13,0.0 +19082,13,6,49,0.0 +19082,43,46,39,0.0 +19082,55,24,26,0.0 +19082,61,28.5,23,0.0 +19082,53,32.8,5,0.0 +19082,23,9,48,0.0 +19082,21,10,20,0.0 +19082,56,38,10,0.0 +19083,28,45.6,16,0.0 +19083,71,21.5,10,0.0 +19083,66,17,49,0.0 +19083,70,15,2,0.0 +19083,11,21,33,0.0 +19083,6,25,11,0.0 +19083,14,23.25,18,0.0 +19083,13,6,39,0.0 +19083,60,34,34,0.0 +19083,24,4.5,7,0.0 +19083,77,13,1,0.0 +19083,57,19.5,42,0.0 +19083,31,12.5,46,0.0 +19083,50,16.25,5,0.0 +19083,1,18,21,0.0 +19083,34,14,39,0.0 +19083,39,18,12,0.0 +19083,18,62.5,4,0.0 +19083,8,40,38,0.0 +19083,5,21.35,23,0.0 +19083,16,17.45,1,0.0 +19083,72,34.8,12,0.0 +19083,41,9.65,5,0.0 +19083,76,18,39,0.0 +19083,44,19.45,6,0.0 +19083,46,12,49,0.0 +19083,62,49.3,16,0.0 +19083,47,9.5,23,0.0 +19083,12,38,16,0.0 +19083,20,81,14,0.0 +19083,22,21,41,0.0 +19083,65,21.05,25,0.0 +19083,37,26,5,0.0 +19083,75,7.75,4,0.0 +19083,52,7,36,0.0 +19083,68,12.5,46,0.0 +19083,40,18.4,40,0.0 +19083,21,10,49,0.0 +19083,9,97,28,0.0 +19083,48,12.75,43,0.0 +19083,23,9,24,0.0 +19083,3,10,42,0.0 +19083,33,2.5,2,0.0 +19083,29,123.79,13,0.0 +19083,58,13.25,40,0.0 +19083,73,15,13,0.0 +19083,19,9.2,35,0.0 +19083,63,43.9,9,0.0 +19083,51,53,45,0.0 +19083,59,55,7,0.0 +19083,35,18,39,0.0 +19083,32,32,2,0.0 +19083,42,14,42,0.0 +19083,2,19,42,0.0 +19083,36,19,38,0.0 +19083,4,22,26,0.0 +19083,56,38,46,0.0 +19083,74,10,44,0.0 +19083,55,24,41,0.0 +19083,69,36,48,0.0 +19083,61,28.5,47,0.0 +19083,25,14,20,0.0 +19083,53,32.8,35,0.0 +19083,54,7.45,3,0.0 +19083,7,30,28,0.0 +19083,43,46,39,0.0 +19083,45,9.5,1,0.0 +19083,17,39,46,0.0 +19083,38,263.5,41,0.0 +19083,49,20,24,0.0 +19083,10,31,37,0.0 +19084,33,2.5,20,0.0 +19084,1,18,14,0.0 +19084,49,20,24,0.0 +19084,41,9.65,23,0.0 +19084,3,10,6,0.0 +19084,42,14,44,0.0 +19084,37,26,30,0.0 +19084,14,23.25,1,0.0 +19084,60,34,30,0.0 +19084,56,38,46,0.0 +19084,8,40,38,0.0 +19084,20,81,12,0.0 +19084,2,19,2,0.0 +19084,71,21.5,50,0.0 +19084,69,36,17,0.0 +19084,77,13,22,0.0 +19084,70,15,2,0.0 +19084,46,12,37,0.0 +19084,7,30,19,0.0 +19084,23,9,43,0.0 +19084,44,19.45,5,0.0 +19084,50,16.25,21,0.0 +19084,64,33.25,9,0.0 +19084,21,10,35,0.0 +19084,61,28.5,38,0.0 +19084,73,15,42,0.0 +19084,54,7.45,2,0.0 +19084,29,123.79,15,0.0 +19084,18,62.5,30,0.0 +19084,43,46,40,0.0 +19084,66,17,12,0.0 +19084,17,39,46,0.0 +19084,55,24,6,0.0 +19084,68,12.5,7,0.0 +19084,48,12.75,24,0.0 +19084,6,25,19,0.0 +19084,13,6,9,0.0 +19084,32,32,22,0.0 +19084,62,49.3,19,0.0 +19084,36,19,8,0.0 +19084,9,97,16,0.0 +19084,4,22,12,0.0 +19084,52,7,2,0.0 +19084,26,31.23,23,0.0 +19084,15,15.5,41,0.0 +19084,25,14,7,0.0 +19084,40,18.4,23,0.0 +19084,24,4.5,34,0.0 +19084,12,38,49,0.0 +19084,45,9.5,42,0.0 +19085,20,81,11,0.0 +19085,8,40,8,0.0 +19085,13,6,35,0.0 +19085,74,10,16,0.0 +19085,35,18,29,0.0 +19085,29,123.79,3,0.0 +19085,60,34,26,0.0 +19085,46,12,26,0.0 +19085,52,7,38,0.0 +19085,36,19,9,0.0 +19085,10,31,43,0.0 +19085,24,4.5,19,0.0 +19085,55,24,19,0.0 +19085,9,97,26,0.0 +19085,43,46,21,0.0 +19085,33,2.5,46,0.0 +19085,37,26,16,0.0 +19085,15,15.5,5,0.0 +19085,63,43.9,49,0.0 +19085,22,21,7,0.0 +19085,31,12.5,28,0.0 +19085,12,38,37,0.0 +19085,59,55,11,0.0 +19085,23,9,24,0.0 +19085,57,19.5,3,0.0 +19085,4,22,10,0.0 +19085,11,21,28,0.0 +19085,72,34.8,25,0.0 +19085,16,17.45,22,0.0 +19085,38,263.5,8,0.0 +19086,4,22,30,0.0 +19086,67,14,7,0.0 +19086,76,18,25,0.0 +19086,2,19,20,0.0 +19086,46,12,6,0.0 +19086,21,10,10,0.0 +19086,13,6,49,0.0 +19086,71,21.5,42,0.0 +19086,65,21.05,21,0.0 +19086,50,16.25,36,0.0 +19086,54,7.45,6,0.0 +19086,73,15,48,0.0 +19086,77,13,48,0.0 +19086,72,34.8,6,0.0 +19086,1,18,41,0.0 +19086,33,2.5,14,0.0 +19086,25,14,45,0.0 +19086,6,25,13,0.0 +19086,51,53,8,0.0 +19086,43,46,43,0.0 +19086,41,9.65,2,0.0 +19086,26,31.23,44,0.0 +19086,11,21,31,0.0 +19086,45,9.5,22,0.0 +19086,53,32.8,2,0.0 +19086,39,18,35,0.0 +19086,18,62.5,39,0.0 +19086,16,17.45,16,0.0 +19086,7,30,42,0.0 +19086,34,14,27,0.0 +19086,36,19,8,0.0 +19086,56,38,17,0.0 +19086,37,26,32,0.0 +19086,3,10,2,0.0 +19086,75,7.75,11,0.0 +19086,52,7,12,0.0 +19086,9,97,22,0.0 +19086,22,21,23,0.0 +19086,23,9,30,0.0 +19086,57,19.5,42,0.0 +19086,38,263.5,2,0.0 +19086,66,17,20,0.0 +19086,19,9.2,41,0.0 +19086,30,25.89,9,0.0 +19086,63,43.9,30,0.0 +19086,62,49.3,3,0.0 +19086,44,19.45,45,0.0 +19086,10,31,10,0.0 +19086,60,34,11,0.0 +19086,48,12.75,42,0.0 +19086,20,81,5,0.0 +19086,59,55,47,0.0 +19086,15,15.5,20,0.0 +19086,74,10,38,0.0 +19086,8,40,20,0.0 +19087,43,46,16,0.0 +19087,19,9.2,17,0.0 +19087,65,21.05,4,0.0 +19087,40,18.4,26,0.0 +19087,70,15,34,0.0 +19087,4,22,7,0.0 +19087,66,17,8,0.0 +19087,14,23.25,39,0.0 +19087,75,7.75,2,0.0 +19087,56,38,28,0.0 +19087,26,31.23,21,0.0 +19087,6,25,10,0.0 +19087,10,31,36,0.0 +19087,7,30,34,0.0 +19087,77,13,17,0.0 +19087,74,10,28,0.0 +19087,37,26,38,0.0 +19087,54,7.45,8,0.0 +19087,22,21,49,0.0 +19087,68,12.5,25,0.0 +19087,41,9.65,25,0.0 +19087,50,16.25,12,0.0 +19087,39,18,30,0.0 +19087,69,36,7,0.0 +19087,64,33.25,8,0.0 +19087,17,39,8,0.0 +19087,9,97,34,0.0 +19087,16,17.45,12,0.0 +19087,49,20,1,0.0 +19087,62,49.3,18,0.0 +19087,38,263.5,40,0.0 +19087,15,15.5,17,0.0 +19087,71,21.5,17,0.0 +19087,3,10,24,0.0 +19087,61,28.5,12,0.0 +19087,67,14,29,0.0 +19087,13,6,37,0.0 +19087,1,18,22,0.0 +19087,59,55,15,0.0 +19087,20,81,9,0.0 +19087,55,24,17,0.0 +19087,2,19,45,0.0 +19087,58,13.25,36,0.0 +19087,31,12.5,47,0.0 +19087,27,43.9,4,0.0 +19087,47,9.5,39,0.0 +19087,28,45.6,48,0.0 +19087,53,32.8,10,0.0 +19087,46,12,30,0.0 +19087,52,7,18,0.0 +19087,23,9,1,0.0 +19087,18,62.5,6,0.0 +19087,30,25.89,13,0.0 +19087,5,21.35,24,0.0 +19087,8,40,48,0.0 +19087,21,10,41,0.0 +19087,32,32,19,0.0 +19087,72,34.8,38,0.0 +19087,12,38,20,0.0 +19087,25,14,22,0.0 +19087,35,18,26,0.0 +19087,63,43.9,10,0.0 +19087,29,123.79,6,0.0 +19087,60,34,6,0.0 +19087,44,19.45,49,0.0 +19087,11,21,12,0.0 +19087,42,14,9,0.0 +19088,3,10,14,0.0 +19088,25,14,38,0.0 +19088,52,7,27,0.0 +19088,71,21.5,6,0.0 +19088,2,19,34,0.0 +19088,13,6,17,0.0 +19088,63,43.9,34,0.0 +19088,40,18.4,27,0.0 +19088,73,15,42,0.0 +19088,69,36,23,0.0 +19088,53,32.8,2,0.0 +19088,70,15,35,0.0 +19088,34,14,30,0.0 +19088,8,40,11,0.0 +19088,5,21.35,38,0.0 +19088,66,17,4,0.0 +19088,6,25,42,0.0 +19089,2,19,15,0.0 +19089,5,21.35,10,0.0 +19089,20,81,12,0.0 +19089,10,31,8,0.0 +19089,41,9.65,33,0.0 +19089,75,7.75,20,0.0 +19089,37,26,11,0.0 +19089,45,9.5,32,0.0 +19089,36,19,41,0.0 +19089,30,25.89,10,0.0 +19089,56,38,12,0.0 +19089,34,14,22,0.0 +19089,58,13.25,24,0.0 +19089,19,9.2,16,0.0 +19089,52,7,5,0.0 +19089,59,55,34,0.0 +19089,66,17,43,0.0 +19089,49,20,12,0.0 +19089,57,19.5,8,0.0 +19089,33,2.5,30,0.0 +19089,26,31.23,2,0.0 +19089,15,15.5,36,0.0 +19089,32,32,7,0.0 +19089,61,28.5,25,0.0 +19089,67,14,17,0.0 +19089,25,14,26,0.0 +19089,74,10,13,0.0 +19089,48,12.75,15,0.0 +19089,4,22,30,0.0 +19089,21,10,38,0.0 +19089,38,263.5,36,0.0 +19089,9,97,41,0.0 +19089,46,12,16,0.0 +19089,62,49.3,3,0.0 +19089,17,39,2,0.0 +19089,53,32.8,14,0.0 +19089,8,40,14,0.0 +19089,73,15,7,0.0 +19089,50,16.25,4,0.0 +19089,24,4.5,34,0.0 +19089,77,13,45,0.0 +19089,40,18.4,13,0.0 +19089,64,33.25,5,0.0 +19089,14,23.25,18,0.0 +19089,28,45.6,46,0.0 +19089,27,43.9,22,0.0 +19089,69,36,49,0.0 +19089,18,62.5,21,0.0 +19089,16,17.45,41,0.0 +19089,7,30,26,0.0 +19089,44,19.45,2,0.0 +19089,3,10,36,0.0 +19089,71,21.5,17,0.0 +19089,47,9.5,44,0.0 +19089,11,21,47,0.0 +19089,6,25,14,0.0 +19089,63,43.9,46,0.0 +19089,23,9,42,0.0 +19089,31,12.5,33,0.0 +19089,42,14,19,0.0 +19089,12,38,8,0.0 +19089,35,18,38,0.0 +19089,72,34.8,41,0.0 +19089,51,53,15,0.0 +19089,68,12.5,14,0.0 +19089,43,46,12,0.0 +19089,60,34,39,0.0 +19089,70,15,12,0.0 +19089,55,24,23,0.0 +19089,65,21.05,33,0.0 +19089,13,6,35,0.0 +19089,54,7.45,36,0.0 +19089,22,21,27,0.0 +19089,76,18,10,0.0 +19089,39,18,43,0.0 +19089,1,18,30,0.0 +19090,75,7.75,25,0.0 +19090,33,2.5,47,0.0 +19090,68,12.5,24,0.0 +19090,19,9.2,22,0.0 +19090,42,14,21,0.0 +19090,73,15,33,0.0 +19090,36,19,27,0.0 +19090,58,13.25,7,0.0 +19090,72,34.8,1,0.0 +19090,65,21.05,1,0.0 +19090,21,10,11,0.0 +19090,29,123.79,11,0.0 +19090,24,4.5,14,0.0 +19090,67,14,17,0.0 +19090,51,53,28,0.0 +19090,52,7,34,0.0 +19090,48,12.75,31,0.0 +19090,7,30,17,0.0 +19090,37,26,23,0.0 +19090,16,17.45,31,0.0 +19090,23,9,21,0.0 +19090,12,38,44,0.0 +19090,46,12,2,0.0 +19090,77,13,39,0.0 +19090,27,43.9,15,0.0 +19090,55,24,46,0.0 +19090,50,16.25,43,0.0 +19090,41,9.65,4,0.0 +19090,63,43.9,50,0.0 +19090,22,21,35,0.0 +19090,6,25,23,0.0 +19090,54,7.45,23,0.0 +19090,8,40,18,0.0 +19090,70,15,4,0.0 +19090,4,22,29,0.0 +19090,11,21,17,0.0 +19090,20,81,40,0.0 +19090,13,6,34,0.0 +19090,66,17,37,0.0 +19090,35,18,32,0.0 +19090,10,31,4,0.0 +19090,38,263.5,16,0.0 +19090,14,23.25,43,0.0 +19090,15,15.5,2,0.0 +19090,60,34,1,0.0 +19090,64,33.25,12,0.0 +19090,40,18.4,9,0.0 +19090,56,38,11,0.0 +19090,32,32,44,0.0 +19091,69,36,11,0.0 +19091,24,4.5,27,0.0 +19091,4,22,27,0.0 +19091,32,32,26,0.0 +19091,1,18,36,0.0 +19091,35,18,49,0.0 +19091,77,13,31,0.0 +19091,57,19.5,19,0.0 +19091,38,263.5,48,0.0 +19091,65,21.05,16,0.0 +19091,54,7.45,44,0.0 +19091,73,15,33,0.0 +19091,66,17,4,0.0 +19091,30,25.89,39,0.0 +19091,33,2.5,6,0.0 +19091,49,20,13,0.0 +19091,10,31,5,0.0 +19091,15,15.5,18,0.0 +19091,21,10,23,0.0 +19091,34,14,39,0.0 +19091,9,97,23,0.0 +19091,43,46,28,0.0 +19091,74,10,29,0.0 +19091,47,9.5,13,0.0 +19091,29,123.79,21,0.0 +19091,39,18,38,0.0 +19091,8,40,1,0.0 +19091,61,28.5,10,0.0 +19091,22,21,38,0.0 +19091,48,12.75,16,0.0 +19091,60,34,28,0.0 +19091,71,21.5,18,0.0 +19091,27,43.9,39,0.0 +19091,44,19.45,29,0.0 +19091,46,12,45,0.0 +19091,68,12.5,9,0.0 +19091,75,7.75,34,0.0 +19091,59,55,20,0.0 +19091,3,10,27,0.0 +19091,7,30,42,0.0 +19091,52,7,33,0.0 +19091,42,14,4,0.0 +19091,25,14,32,0.0 +19091,70,15,34,0.0 +19091,53,32.8,17,0.0 +19091,26,31.23,47,0.0 +19091,76,18,47,0.0 +19091,41,9.65,5,0.0 +19091,37,26,50,0.0 +19091,45,9.5,16,0.0 +19091,18,62.5,34,0.0 +19091,67,14,5,0.0 +19091,2,19,18,0.0 +19091,56,38,43,0.0 +19091,14,23.25,3,0.0 +19091,12,38,44,0.0 +19091,31,12.5,48,0.0 +19091,58,13.25,42,0.0 +19091,36,19,40,0.0 +19091,64,33.25,11,0.0 +19091,72,34.8,26,0.0 +19091,11,21,40,0.0 +19091,13,6,8,0.0 +19091,6,25,24,0.0 +19091,55,24,42,0.0 +19091,5,21.35,50,0.0 +19091,23,9,31,0.0 +19091,63,43.9,14,0.0 +19091,19,9.2,37,0.0 +19091,40,18.4,18,0.0 +19091,62,49.3,37,0.0 +19091,17,39,17,0.0 +19091,16,17.45,31,0.0 +19091,51,53,19,0.0 +19091,50,16.25,13,0.0 +19091,28,45.6,36,0.0 +19092,66,17,18,0.0 +19092,45,9.5,2,0.0 +19092,56,38,23,0.0 +19092,46,12,41,0.0 +19092,19,9.2,44,0.0 +19092,53,32.8,39,0.0 +19092,21,10,22,0.0 +19092,73,15,48,0.0 +19092,70,15,43,0.0 +19092,12,38,19,0.0 +19092,40,18.4,34,0.0 +19092,39,18,24,0.0 +19092,32,32,20,0.0 +19092,31,12.5,27,0.0 +19092,38,263.5,26,0.0 +19092,42,14,30,0.0 +19092,62,49.3,8,0.0 +19092,54,7.45,7,0.0 +19092,50,16.25,35,0.0 +19092,14,23.25,38,0.0 +19092,61,28.5,7,0.0 +19092,74,10,29,0.0 +19092,30,25.89,26,0.0 +19092,28,45.6,11,0.0 +19092,18,62.5,31,0.0 +19092,60,34,31,0.0 +19092,22,21,5,0.0 +19092,33,2.5,40,0.0 +19092,24,4.5,32,0.0 +19092,57,19.5,28,0.0 +19092,48,12.75,49,0.0 +19092,59,55,2,0.0 +19092,43,46,45,0.0 +19092,36,19,46,0.0 +19092,25,14,47,0.0 +19092,26,31.23,6,0.0 +19092,55,24,32,0.0 +19092,3,10,10,0.0 +19092,44,19.45,42,0.0 +19092,10,31,29,0.0 +19092,47,9.5,37,0.0 +19092,6,25,25,0.0 +19092,69,36,5,0.0 +19092,35,18,27,0.0 +19092,52,7,42,0.0 +19092,13,6,15,0.0 +19092,15,15.5,15,0.0 +19092,7,30,27,0.0 +19092,37,26,13,0.0 +19092,20,81,6,0.0 +19092,75,7.75,46,0.0 +19092,49,20,15,0.0 +19092,8,40,11,0.0 +19092,23,9,28,0.0 +19092,16,17.45,39,0.0 +19092,72,34.8,24,0.0 +19092,51,53,3,0.0 +19092,4,22,1,0.0 +19092,65,21.05,35,0.0 +19092,58,13.25,16,0.0 +19093,7,30,1,0.0 +19093,15,15.5,12,0.0 +19093,62,49.3,27,0.0 +19093,65,21.05,35,0.0 +19093,24,4.5,48,0.0 +19093,2,19,25,0.0 +19093,3,10,46,0.0 +19093,67,14,19,0.0 +19093,38,263.5,46,0.0 +19093,48,12.75,20,0.0 +19093,58,13.25,48,0.0 +19093,27,43.9,36,0.0 +19093,37,26,32,0.0 +19093,11,21,38,0.0 +19093,20,81,24,0.0 +19093,56,38,28,0.0 +19093,19,9.2,43,0.0 +19093,14,23.25,20,0.0 +19093,39,18,12,0.0 +19093,22,21,30,0.0 +19093,59,55,19,0.0 +19093,43,46,26,0.0 +19093,44,19.45,29,0.0 +19093,72,34.8,43,0.0 +19093,10,31,27,0.0 +19093,46,12,30,0.0 +19093,54,7.45,32,0.0 +19093,57,19.5,35,0.0 +19093,50,16.25,47,0.0 +19093,17,39,45,0.0 +19093,73,15,15,0.0 +19093,60,34,9,0.0 +19093,55,24,39,0.0 +19093,70,15,21,0.0 +19093,25,14,40,0.0 +19093,41,9.65,39,0.0 +19093,69,36,19,0.0 +19093,42,14,26,0.0 +19093,49,20,15,0.0 +19093,76,18,16,0.0 +19093,63,43.9,24,0.0 +19093,23,9,22,0.0 +19093,53,32.8,15,0.0 +19093,52,7,19,0.0 +19093,5,21.35,35,0.0 +19093,33,2.5,12,0.0 +19093,9,97,34,0.0 +19093,64,33.25,1,0.0 +19093,51,53,34,0.0 +19093,4,22,14,0.0 +19093,35,18,15,0.0 +19093,74,10,33,0.0 +19093,29,123.79,17,0.0 +19093,8,40,49,0.0 +19093,32,32,8,0.0 +19093,28,45.6,21,0.0 +19093,61,28.5,9,0.0 +19093,66,17,46,0.0 +19093,77,13,29,0.0 +19093,31,12.5,25,0.0 +19093,34,14,31,0.0 +19093,40,18.4,10,0.0 +19093,30,25.89,44,0.0 +19093,45,9.5,32,0.0 +19093,6,25,20,0.0 +19093,75,7.75,33,0.0 +19093,36,19,37,0.0 +19093,18,62.5,20,0.0 +19093,21,10,34,0.0 +19093,1,18,26,0.0 +19093,16,17.45,30,0.0 +19093,71,21.5,28,0.0 +19093,13,6,19,0.0 +19094,28,45.6,16,0.0 +19094,74,10,24,0.0 +19094,19,9.2,44,0.0 +19094,71,21.5,17,0.0 +19094,57,19.5,18,0.0 +19094,30,25.89,47,0.0 +19094,75,7.75,50,0.0 +19094,35,18,4,0.0 +19094,27,43.9,21,0.0 +19094,33,2.5,43,0.0 +19094,34,14,39,0.0 +19094,43,46,1,0.0 +19094,77,13,33,0.0 +19094,61,28.5,21,0.0 +19094,16,17.45,11,0.0 +19094,41,9.65,48,0.0 +19094,17,39,34,0.0 +19094,62,49.3,44,0.0 +19094,49,20,10,0.0 +19094,4,22,44,0.0 +19094,56,38,46,0.0 +19094,36,19,35,0.0 +19094,68,12.5,27,0.0 +19094,44,19.45,37,0.0 +19094,2,19,19,0.0 +19094,76,18,20,0.0 +19094,10,31,21,0.0 +19094,14,23.25,15,0.0 +19094,63,43.9,31,0.0 +19094,1,18,7,0.0 +19094,12,38,8,0.0 +19094,64,33.25,12,0.0 +19094,58,13.25,42,0.0 +19094,59,55,29,0.0 +19094,69,36,12,0.0 +19094,23,9,28,0.0 +19094,40,18.4,1,0.0 +19094,54,7.45,41,0.0 +19094,67,14,21,0.0 +19094,29,123.79,27,0.0 +19094,31,12.5,41,0.0 +19094,24,4.5,21,0.0 +19094,45,9.5,16,0.0 +19094,39,18,23,0.0 +19094,38,263.5,50,0.0 +19094,73,15,12,0.0 +19094,60,34,7,0.0 +19095,19,9.2,3,0.0 +19095,6,25,8,0.0 +19095,36,19,39,0.0 +19095,60,34,13,0.0 +19095,70,15,7,0.0 +19095,37,26,17,0.0 +19095,10,31,31,0.0 +19095,31,12.5,45,0.0 +19095,27,43.9,38,0.0 +19095,43,46,48,0.0 +19095,72,34.8,16,0.0 +19095,16,17.45,31,0.0 +19095,76,18,16,0.0 +19095,38,263.5,39,0.0 +19095,4,22,9,0.0 +19095,56,38,22,0.0 +19095,35,18,8,0.0 +19095,12,38,4,0.0 +19095,32,32,8,0.0 +19095,25,14,32,0.0 +19095,74,10,47,0.0 +19095,64,33.25,11,0.0 +19095,52,7,5,0.0 +19095,69,36,1,0.0 +19095,57,19.5,17,0.0 +19095,68,12.5,39,0.0 +19095,47,9.5,13,0.0 +19095,62,49.3,50,0.0 +19095,39,18,12,0.0 +19095,65,21.05,42,0.0 +19095,67,14,34,0.0 +19095,41,9.65,7,0.0 +19095,45,9.5,5,0.0 +19095,75,7.75,38,0.0 +19095,59,55,6,0.0 +19095,2,19,8,0.0 +19095,71,21.5,3,0.0 +19095,30,25.89,35,0.0 +19095,1,18,39,0.0 +19095,50,16.25,5,0.0 +19095,53,32.8,46,0.0 +19095,17,39,18,0.0 +19095,77,13,32,0.0 +19095,42,14,45,0.0 +19095,34,14,22,0.0 +19095,26,31.23,3,0.0 +19095,22,21,29,0.0 +19095,61,28.5,15,0.0 +19095,48,12.75,14,0.0 +19095,20,81,8,0.0 +19095,63,43.9,7,0.0 +19095,73,15,11,0.0 +19095,24,4.5,18,0.0 +19096,41,9.65,22,0.0 +19096,31,12.5,6,0.0 +19096,64,33.25,16,0.0 +19096,61,28.5,22,0.0 +19096,26,31.23,28,0.0 +19096,8,40,36,0.0 +19096,33,2.5,5,0.0 +19096,4,22,16,0.0 +19096,11,21,3,0.0 +19096,51,53,25,0.0 +19096,54,7.45,4,0.0 +19096,46,12,19,0.0 +19096,1,18,36,0.0 +19096,38,263.5,42,0.0 +19096,29,123.79,41,0.0 +19096,77,13,16,0.0 +19096,74,10,29,0.0 +19096,24,4.5,46,0.0 +19096,75,7.75,18,0.0 +19096,32,32,11,0.0 +19096,18,62.5,8,0.0 +19096,28,45.6,1,0.0 +19096,66,17,29,0.0 +19096,23,9,43,0.0 +19096,60,34,49,0.0 +19096,56,38,18,0.0 +19097,26,31.23,50,0.0 +19097,29,123.79,9,0.0 +19097,43,46,31,0.0 +19097,30,25.89,19,0.0 +19097,71,21.5,40,0.0 +19097,36,19,3,0.0 +19097,14,23.25,9,0.0 +19097,65,21.05,18,0.0 +19097,63,43.9,9,0.0 +19097,5,21.35,42,0.0 +19097,48,12.75,30,0.0 +19097,22,21,5,0.0 +19097,28,45.6,2,0.0 +19097,51,53,16,0.0 +19097,27,43.9,32,0.0 +19097,7,30,45,0.0 +19097,37,26,11,0.0 +19097,67,14,17,0.0 +19097,73,15,12,0.0 +19097,41,9.65,2,0.0 +19097,70,15,18,0.0 +19097,24,4.5,2,0.0 +19097,58,13.25,36,0.0 +19097,33,2.5,42,0.0 +19097,57,19.5,30,0.0 +19097,59,55,41,0.0 +19097,39,18,13,0.0 +19097,49,20,39,0.0 +19097,16,17.45,38,0.0 +19097,72,34.8,40,0.0 +19097,34,14,26,0.0 +19097,68,12.5,37,0.0 +19097,47,9.5,15,0.0 +19097,11,21,28,0.0 +19097,13,6,14,0.0 +19097,66,17,4,0.0 +19097,8,40,38,0.0 +19097,76,18,3,0.0 +19097,17,39,23,0.0 +19097,9,97,5,0.0 +19097,2,19,49,0.0 +19097,50,16.25,30,0.0 +19097,54,7.45,46,0.0 +19097,38,263.5,42,0.0 +19097,3,10,24,0.0 +19097,44,19.45,25,0.0 +19097,56,38,27,0.0 +19097,6,25,30,0.0 +19097,55,24,17,0.0 +19097,42,14,47,0.0 +19097,40,18.4,24,0.0 +19097,45,9.5,42,0.0 +19097,23,9,50,0.0 +19097,61,28.5,11,0.0 +19097,15,15.5,30,0.0 +19097,20,81,25,0.0 +19097,32,32,40,0.0 +19097,64,33.25,1,0.0 +19097,25,14,24,0.0 +19097,21,10,30,0.0 +19097,69,36,49,0.0 +19097,12,38,19,0.0 +19097,10,31,5,0.0 +19097,1,18,22,0.0 +19097,75,7.75,45,0.0 +19097,62,49.3,40,0.0 +19097,35,18,11,0.0 +19097,4,22,46,0.0 +19097,74,10,8,0.0 +19097,53,32.8,28,0.0 +19097,18,62.5,11,0.0 +19097,77,13,48,0.0 +19097,31,12.5,13,0.0 +19097,60,34,34,0.0 +19097,19,9.2,29,0.0 +19097,52,7,18,0.0 +19097,46,12,35,0.0 +19098,5,21.35,34,0.0 +19098,76,18,3,0.0 +19098,42,14,49,0.0 +19098,18,62.5,8,0.0 +19098,38,263.5,22,0.0 +19098,34,14,39,0.0 +19098,21,10,34,0.0 +19098,23,9,30,0.0 +19098,72,34.8,20,0.0 +19098,51,53,50,0.0 +19098,57,19.5,18,0.0 +19098,20,81,34,0.0 +19098,50,16.25,42,0.0 +19098,62,49.3,39,0.0 +19098,74,10,40,0.0 +19098,22,21,4,0.0 +19098,33,2.5,30,0.0 +19098,30,25.89,38,0.0 +19098,69,36,4,0.0 +19098,58,13.25,21,0.0 +19098,36,19,5,0.0 +19098,17,39,48,0.0 +19098,61,28.5,31,0.0 +19098,66,17,31,0.0 +19098,1,18,41,0.0 +19098,25,14,19,0.0 +19098,70,15,30,0.0 +19098,11,21,14,0.0 +19098,54,7.45,1,0.0 +19098,55,24,17,0.0 +19098,41,9.65,8,0.0 +19098,75,7.75,17,0.0 +19098,63,43.9,28,0.0 +19098,45,9.5,28,0.0 +19098,64,33.25,33,0.0 +19098,39,18,19,0.0 +19098,7,30,17,0.0 +19098,9,97,43,0.0 +19098,73,15,27,0.0 +19099,52,7,46,0.0 +19099,31,12.5,21,0.0 +19099,77,13,10,0.0 +19099,39,18,9,0.0 +19099,65,21.05,23,0.0 +19099,55,24,17,0.0 +19099,62,49.3,29,0.0 +19099,71,21.5,43,0.0 +19099,47,9.5,45,0.0 +19099,76,18,21,0.0 +19099,59,55,16,0.0 +19099,57,19.5,40,0.0 +19099,46,12,28,0.0 +19099,42,14,8,0.0 +19099,64,33.25,8,0.0 +19099,2,19,19,0.0 +19099,12,38,40,0.0 +19099,32,32,18,0.0 +19099,43,46,45,0.0 +19099,28,45.6,21,0.0 +19099,13,6,25,0.0 +19099,41,9.65,35,0.0 +19099,8,40,14,0.0 +19099,73,15,33,0.0 +19099,60,34,32,0.0 +19099,6,25,32,0.0 +19099,27,43.9,23,0.0 +19099,23,9,9,0.0 +19099,19,9.2,5,0.0 +19099,36,19,41,0.0 +19099,69,36,4,0.0 +19100,46,12,8,0.0 +19100,25,14,26,0.0 +19100,11,21,3,0.0 +19100,58,13.25,34,0.0 +19100,56,38,23,0.0 +19100,73,15,33,0.0 +19100,59,55,16,0.0 +19100,74,10,28,0.0 +19100,51,53,36,0.0 +19100,54,7.45,29,0.0 +19100,34,14,5,0.0 +19100,77,13,12,0.0 +19100,29,123.79,31,0.0 +19100,2,19,21,0.0 +19100,28,45.6,5,0.0 +19100,75,7.75,20,0.0 +19100,3,10,4,0.0 +19100,66,17,39,0.0 +19100,39,18,49,0.0 +19100,61,28.5,12,0.0 +19100,1,18,9,0.0 +19100,67,14,3,0.0 +19100,22,21,7,0.0 +19100,31,12.5,36,0.0 +19100,7,30,44,0.0 +19100,4,22,44,0.0 +19100,16,17.45,27,0.0 +19100,71,21.5,12,0.0 +19100,63,43.9,33,0.0 +19100,57,19.5,50,0.0 +19100,72,34.8,27,0.0 +19100,44,19.45,18,0.0 +19100,23,9,23,0.0 +19100,76,18,4,0.0 +19101,42,14,42,0.0 +19101,47,9.5,47,0.0 +19101,54,7.45,31,0.0 +19101,1,18,22,0.0 +19101,12,38,45,0.0 +19101,73,15,36,0.0 +19101,48,12.75,21,0.0 +19101,43,46,32,0.0 +19101,26,31.23,6,0.0 +19101,27,43.9,28,0.0 +19101,3,10,49,0.0 +19101,24,4.5,26,0.0 +19101,44,19.45,12,0.0 +19101,13,6,15,0.0 +19101,9,97,7,0.0 +19101,31,12.5,46,0.0 +19101,40,18.4,38,0.0 +19101,52,7,48,0.0 +19101,33,2.5,25,0.0 +19101,17,39,44,0.0 +19101,34,14,2,0.0 +19101,28,45.6,1,0.0 +19101,38,263.5,33,0.0 +19101,62,49.3,38,0.0 +19101,46,12,11,0.0 +19101,29,123.79,6,0.0 +19101,77,13,22,0.0 +19101,76,18,37,0.0 +19101,36,19,16,0.0 +19101,23,9,1,0.0 +19101,10,31,49,0.0 +19101,21,10,43,0.0 +19102,50,16.25,18,0.0 +19102,10,31,14,0.0 +19102,52,7,32,0.0 +19102,65,21.05,10,0.0 +19102,33,2.5,6,0.0 +19102,31,12.5,24,0.0 +19102,43,46,11,0.0 +19102,1,18,48,0.0 +19102,28,45.6,1,0.0 +19102,72,34.8,41,0.0 +19102,42,14,7,0.0 +19102,36,19,34,0.0 +19102,76,18,23,0.0 +19102,66,17,32,0.0 +19102,22,21,34,0.0 +19102,61,28.5,28,0.0 +19102,64,33.25,25,0.0 +19102,62,49.3,25,0.0 +19102,38,263.5,37,0.0 +19102,15,15.5,13,0.0 +19102,67,14,6,0.0 +19102,40,18.4,9,0.0 +19102,18,62.5,48,0.0 +19102,39,18,27,0.0 +19102,16,17.45,29,0.0 +19102,68,12.5,18,0.0 +19102,14,23.25,14,0.0 +19102,12,38,44,0.0 +19102,3,10,47,0.0 +19102,58,13.25,22,0.0 +19102,20,81,36,0.0 +19102,70,15,10,0.0 +19102,2,19,11,0.0 +19102,26,31.23,25,0.0 +19102,56,38,46,0.0 +19102,34,14,23,0.0 +19102,59,55,42,0.0 +19102,19,9.2,38,0.0 +19102,24,4.5,49,0.0 +19102,77,13,30,0.0 +19102,54,7.45,10,0.0 +19102,41,9.65,10,0.0 +19102,44,19.45,22,0.0 +19102,48,12.75,44,0.0 +19102,45,9.5,8,0.0 +19102,73,15,3,0.0 +19102,21,10,41,0.0 +19102,13,6,41,0.0 +19102,60,34,48,0.0 +19102,6,25,22,0.0 +19102,74,10,2,0.0 +19102,71,21.5,26,0.0 +19102,69,36,21,0.0 +19102,11,21,2,0.0 +19103,7,30,2,0.0 +19103,31,12.5,36,0.0 +19103,48,12.75,10,0.0 +19103,50,16.25,16,0.0 +19103,21,10,48,0.0 +19103,67,14,38,0.0 +19103,57,19.5,25,0.0 +19103,37,26,26,0.0 +19103,58,13.25,7,0.0 +19103,39,18,44,0.0 +19103,27,43.9,8,0.0 +19103,42,14,9,0.0 +19103,2,19,38,0.0 +19103,15,15.5,16,0.0 +19103,20,81,13,0.0 +19103,44,19.45,29,0.0 +19103,61,28.5,40,0.0 +19103,16,17.45,20,0.0 +19103,22,21,46,0.0 +19103,74,10,3,0.0 +19103,70,15,4,0.0 +19103,28,45.6,43,0.0 +19103,25,14,24,0.0 +19103,6,25,46,0.0 +19103,59,55,42,0.0 +19103,77,13,27,0.0 +19104,67,14,41,0.0 +19104,48,12.75,10,0.0 +19104,71,21.5,26,0.0 +19104,53,32.8,24,0.0 +19104,29,123.79,43,0.0 +19104,13,6,21,0.0 +19104,25,14,25,0.0 +19105,66,17,9,0.0 +19105,29,123.79,32,0.0 +19105,67,14,16,0.0 +19105,4,22,16,0.0 +19105,57,19.5,16,0.0 +19105,39,18,10,0.0 +19105,11,21,16,0.0 +19105,61,28.5,40,0.0 +19105,19,9.2,30,0.0 +19105,9,97,19,0.0 +19105,30,25.89,3,0.0 +19105,2,19,4,0.0 +19105,43,46,2,0.0 +19105,55,24,30,0.0 +19105,21,10,11,0.0 +19105,15,15.5,29,0.0 +19105,68,12.5,32,0.0 +19105,65,21.05,48,0.0 +19105,70,15,18,0.0 +19105,56,38,12,0.0 +19105,17,39,6,0.0 +19105,8,40,20,0.0 +19105,73,15,19,0.0 +19105,62,49.3,35,0.0 +19105,35,18,47,0.0 +19105,7,30,16,0.0 +19105,6,25,24,0.0 +19105,63,43.9,31,0.0 +19105,25,14,50,0.0 +19105,10,31,37,0.0 +19105,59,55,32,0.0 +19105,40,18.4,49,0.0 +19105,47,9.5,15,0.0 +19105,51,53,6,0.0 +19105,38,263.5,24,0.0 +19105,16,17.45,4,0.0 +19105,77,13,17,0.0 +19105,5,21.35,15,0.0 +19105,45,9.5,33,0.0 +19105,64,33.25,26,0.0 +19105,13,6,10,0.0 +19105,26,31.23,39,0.0 +19105,36,19,12,0.0 +19105,27,43.9,13,0.0 +19106,74,10,32,0.0 +19106,18,62.5,31,0.0 +19106,66,17,9,0.0 +19106,67,14,30,0.0 +19106,69,36,35,0.0 +19106,7,30,31,0.0 +19106,77,13,40,0.0 +19106,32,32,42,0.0 +19106,43,46,21,0.0 +19106,21,10,49,0.0 +19106,23,9,18,0.0 +19106,29,123.79,30,0.0 +19106,35,18,31,0.0 +19106,25,14,42,0.0 +19106,40,18.4,36,0.0 +19106,54,7.45,2,0.0 +19106,41,9.65,43,0.0 +19106,22,21,4,0.0 +19106,26,31.23,7,0.0 +19106,11,21,9,0.0 +19106,8,40,41,0.0 +19106,39,18,11,0.0 +19106,38,263.5,40,0.0 +19106,45,9.5,12,0.0 +19106,1,18,32,0.0 +19106,4,22,14,0.0 +19106,31,12.5,4,0.0 +19107,17,39,22,0.0 +19107,9,97,46,0.0 +19107,2,19,16,0.0 +19107,72,34.8,30,0.0 +19107,44,19.45,22,0.0 +19107,53,32.8,49,0.0 +19107,40,18.4,42,0.0 +19107,77,13,5,0.0 +19107,28,45.6,18,0.0 +19107,16,17.45,4,0.0 +19107,42,14,45,0.0 +19107,56,38,35,0.0 +19107,35,18,39,0.0 +19107,11,21,49,0.0 +19107,15,15.5,13,0.0 +19107,23,9,44,0.0 +19107,54,7.45,4,0.0 +19107,67,14,50,0.0 +19107,63,43.9,39,0.0 +19107,61,28.5,16,0.0 +19107,73,15,26,0.0 +19107,14,23.25,19,0.0 +19107,20,81,42,0.0 +19107,64,33.25,33,0.0 +19107,27,43.9,43,0.0 +19108,28,45.6,41,0.0 +19108,48,12.75,38,0.0 +19108,37,26,32,0.0 +19108,45,9.5,33,0.0 +19108,51,53,28,0.0 +19108,69,36,21,0.0 +19108,29,123.79,40,0.0 +19108,43,46,50,0.0 +19108,74,10,27,0.0 +19108,25,14,47,0.0 +19108,62,49.3,44,0.0 +19108,16,17.45,25,0.0 +19108,34,14,28,0.0 +19108,13,6,16,0.0 +19108,22,21,44,0.0 +19108,70,15,28,0.0 +19108,26,31.23,47,0.0 +19108,32,32,46,0.0 +19108,42,14,27,0.0 +19108,77,13,7,0.0 +19108,66,17,23,0.0 +19108,73,15,19,0.0 +19108,60,34,35,0.0 +19108,14,23.25,25,0.0 +19108,54,7.45,9,0.0 +19109,39,18,24,0.0 +19109,71,21.5,10,0.0 +19109,30,25.89,50,0.0 +19109,42,14,1,0.0 +19109,10,31,26,0.0 +19109,73,15,43,0.0 +19109,27,43.9,32,0.0 +19109,50,16.25,16,0.0 +19109,29,123.79,11,0.0 +19109,21,10,3,0.0 +19109,38,263.5,9,0.0 +19109,54,7.45,5,0.0 +19109,22,21,39,0.0 +19109,4,22,19,0.0 +19109,63,43.9,50,0.0 +19109,62,49.3,50,0.0 +19109,44,19.45,47,0.0 +19109,47,9.5,29,0.0 +19109,31,12.5,15,0.0 +19109,77,13,20,0.0 +19109,43,46,20,0.0 +19109,8,40,10,0.0 +19109,17,39,9,0.0 +19109,5,21.35,23,0.0 +19109,20,81,20,0.0 +19109,67,14,36,0.0 +19109,40,18.4,24,0.0 +19109,49,20,43,0.0 +19109,45,9.5,4,0.0 +19109,55,24,14,0.0 +19109,69,36,32,0.0 +19110,58,13.25,39,0.0 +19110,77,13,5,0.0 +19110,48,12.75,14,0.0 +19110,66,17,35,0.0 +19111,15,15.5,13,0.0 +19111,69,36,32,0.0 +19111,39,18,4,0.0 +19111,18,62.5,7,0.0 +19111,74,10,2,0.0 +19111,6,25,44,0.0 +19111,56,38,46,0.0 +19111,13,6,11,0.0 +19111,52,7,32,0.0 +19111,35,18,31,0.0 +19111,33,2.5,14,0.0 +19111,71,21.5,45,0.0 +19111,47,9.5,21,0.0 +19111,57,19.5,26,0.0 +19111,68,12.5,48,0.0 +19111,4,22,6,0.0 +19111,54,7.45,33,0.0 +19111,36,19,32,0.0 +19111,70,15,14,0.0 +19111,46,12,46,0.0 +19111,30,25.89,44,0.0 +19111,34,14,17,0.0 +19111,59,55,45,0.0 +19111,51,53,25,0.0 +19111,3,10,39,0.0 +19112,13,6,19,0.0 +19112,67,14,4,0.0 +19112,32,32,34,0.0 +19112,26,31.23,8,0.0 +19112,1,18,17,0.0 +19112,38,263.5,9,0.0 +19112,54,7.45,14,0.0 +19112,55,24,20,0.0 +19112,42,14,15,0.0 +19112,61,28.5,36,0.0 +19112,27,43.9,41,0.0 +19112,41,9.65,1,0.0 +19112,69,36,45,0.0 +19112,66,17,9,0.0 +19112,28,45.6,43,0.0 +19112,8,40,27,0.0 +19112,65,21.05,22,0.0 +19112,21,10,7,0.0 +19112,31,12.5,48,0.0 +19112,18,62.5,27,0.0 +19112,53,32.8,6,0.0 +19112,60,34,2,0.0 +19112,49,20,10,0.0 +19112,15,15.5,8,0.0 +19112,63,43.9,29,0.0 +19112,10,31,21,0.0 +19112,24,4.5,7,0.0 +19112,44,19.45,16,0.0 +19112,73,15,23,0.0 +19112,12,38,10,0.0 +19112,52,7,36,0.0 +19112,2,19,20,0.0 +19112,39,18,39,0.0 +19112,29,123.79,47,0.0 +19112,34,14,23,0.0 +19112,3,10,5,0.0 +19112,57,19.5,7,0.0 +19112,59,55,26,0.0 +19112,47,9.5,12,0.0 +19112,62,49.3,46,0.0 +19112,74,10,48,0.0 +19112,77,13,25,0.0 +19112,36,19,42,0.0 +19112,9,97,36,0.0 +19112,64,33.25,5,0.0 +19112,45,9.5,8,0.0 +19112,25,14,8,0.0 +19112,70,15,47,0.0 +19112,23,9,49,0.0 +19112,11,21,41,0.0 +19112,71,21.5,16,0.0 +19112,43,46,14,0.0 +19112,48,12.75,36,0.0 +19112,58,13.25,5,0.0 +19112,4,22,16,0.0 +19112,17,39,5,0.0 +19112,20,81,6,0.0 +19112,72,34.8,49,0.0 +19112,68,12.5,17,0.0 +19112,7,30,1,0.0 +19112,37,26,9,0.0 +19112,19,9.2,2,0.0 +19113,35,18,24,0.0 +19113,11,21,37,0.0 +19113,22,21,7,0.0 +19113,48,12.75,28,0.0 +19113,16,17.45,43,0.0 +19113,59,55,43,0.0 +19113,2,19,43,0.0 +19113,1,18,15,0.0 +19113,4,22,10,0.0 +19113,14,23.25,50,0.0 +19113,52,7,29,0.0 +19113,30,25.89,8,0.0 +19113,77,13,19,0.0 +19113,60,34,8,0.0 +19113,32,32,6,0.0 +19113,7,30,12,0.0 +19113,54,7.45,9,0.0 +19113,53,32.8,17,0.0 +19114,26,31.23,40,0.0 +19114,71,21.5,9,0.0 +19114,61,28.5,39,0.0 +19114,62,49.3,3,0.0 +19114,44,19.45,22,0.0 +19114,13,6,43,0.0 +19114,37,26,34,0.0 +19114,15,15.5,25,0.0 +19114,21,10,30,0.0 +19114,73,15,35,0.0 +19114,22,21,15,0.0 +19114,10,31,13,0.0 +19114,75,7.75,5,0.0 +19114,40,18.4,44,0.0 +19114,47,9.5,35,0.0 +19114,57,19.5,47,0.0 +19114,33,2.5,21,0.0 +19114,38,263.5,8,0.0 +19114,59,55,46,0.0 +19114,50,16.25,19,0.0 +19114,35,18,25,0.0 +19114,30,25.89,6,0.0 +19114,76,18,13,0.0 +19114,17,39,7,0.0 +19114,54,7.45,20,0.0 +19114,7,30,42,0.0 +19114,42,14,5,0.0 +19114,53,32.8,18,0.0 +19114,18,62.5,7,0.0 +19114,3,10,31,0.0 +19114,8,40,44,0.0 +19114,67,14,27,0.0 +19114,4,22,45,0.0 +19114,48,12.75,33,0.0 +19114,9,97,42,0.0 +19114,58,13.25,47,0.0 +19114,52,7,48,0.0 +19114,65,21.05,1,0.0 +19114,41,9.65,42,0.0 +19114,19,9.2,12,0.0 +19114,1,18,38,0.0 +19114,72,34.8,41,0.0 +19114,25,14,23,0.0 +19114,46,12,23,0.0 +19114,31,12.5,35,0.0 +19114,28,45.6,4,0.0 +19114,51,53,22,0.0 +19114,39,18,16,0.0 +19114,70,15,17,0.0 +19114,68,12.5,3,0.0 +19114,55,24,41,0.0 +19114,23,9,16,0.0 +19114,49,20,49,0.0 +19114,56,38,31,0.0 +19114,43,46,41,0.0 +19114,2,19,43,0.0 +19114,27,43.9,48,0.0 +19114,32,32,2,0.0 +19114,11,21,20,0.0 +19114,5,21.35,43,0.0 +19114,6,25,35,0.0 +19114,74,10,50,0.0 +19114,45,9.5,11,0.0 +19114,34,14,46,0.0 +19114,29,123.79,2,0.0 +19114,20,81,33,0.0 +19114,66,17,3,0.0 +19114,60,34,42,0.0 +19114,12,38,7,0.0 +19114,77,13,34,0.0 +19114,63,43.9,17,0.0 +19114,36,19,45,0.0 +19114,64,33.25,12,0.0 +19115,39,18,42,0.0 +19115,58,13.25,24,0.0 +19115,33,2.5,40,0.0 +19115,50,16.25,44,0.0 +19115,30,25.89,14,0.0 +19115,3,10,11,0.0 +19115,10,31,34,0.0 +19115,70,15,22,0.0 +19115,45,9.5,17,0.0 +19115,22,21,19,0.0 +19115,37,26,18,0.0 +19115,46,12,13,0.0 +19115,34,14,15,0.0 +19115,73,15,32,0.0 +19115,60,34,47,0.0 +19115,48,12.75,20,0.0 +19115,59,55,31,0.0 +19115,77,13,47,0.0 +19115,5,21.35,36,0.0 +19115,72,34.8,34,0.0 +19115,32,32,24,0.0 +19115,61,28.5,22,0.0 +19115,4,22,28,0.0 +19115,68,12.5,43,0.0 +19115,16,17.45,14,0.0 +19115,20,81,50,0.0 +19115,53,32.8,45,0.0 +19115,23,9,39,0.0 +19115,9,97,42,0.0 +19115,51,53,40,0.0 +19115,26,31.23,50,0.0 +19115,63,43.9,2,0.0 +19115,25,14,49,0.0 +19115,44,19.45,42,0.0 +19115,8,40,30,0.0 +19115,76,18,30,0.0 +19115,57,19.5,20,0.0 +19115,64,33.25,26,0.0 +19115,52,7,39,0.0 +19115,14,23.25,39,0.0 +19115,67,14,38,0.0 +19115,43,46,17,0.0 +19115,41,9.65,15,0.0 +19115,38,263.5,25,0.0 +19115,28,45.6,5,0.0 +19115,47,9.5,33,0.0 +19115,36,19,16,0.0 +19115,75,7.75,22,0.0 +19115,13,6,14,0.0 +19115,27,43.9,27,0.0 +19115,56,38,40,0.0 +19115,54,7.45,27,0.0 +19115,66,17,11,0.0 +19115,69,36,11,0.0 +19115,65,21.05,20,0.0 +19115,24,4.5,27,0.0 +19115,40,18.4,10,0.0 +19115,6,25,17,0.0 +19115,1,18,42,0.0 +19115,35,18,32,0.0 +19115,42,14,28,0.0 +19115,62,49.3,40,0.0 +19115,15,15.5,5,0.0 +19115,19,9.2,16,0.0 +19115,18,62.5,14,0.0 +19115,7,30,39,0.0 +19115,29,123.79,42,0.0 +19115,71,21.5,24,0.0 +19115,49,20,10,0.0 +19115,55,24,39,0.0 +19116,23,9,5,0.0 +19116,33,2.5,41,0.0 +19116,56,38,45,0.0 +19116,43,46,36,0.0 +19116,14,23.25,50,0.0 +19116,48,12.75,4,0.0 +19116,41,9.65,13,0.0 +19116,24,4.5,31,0.0 +19116,26,31.23,43,0.0 +19116,71,21.5,42,0.0 +19116,62,49.3,6,0.0 +19116,8,40,46,0.0 +19116,17,39,2,0.0 +19116,45,9.5,3,0.0 +19116,64,33.25,31,0.0 +19116,1,18,23,0.0 +19116,55,24,27,0.0 +19116,66,17,41,0.0 +19116,25,14,37,0.0 +19116,72,34.8,10,0.0 +19116,19,9.2,22,0.0 +19116,75,7.75,30,0.0 +19116,40,18.4,25,0.0 +19116,20,81,30,0.0 +19116,34,14,47,0.0 +19116,22,21,12,0.0 +19116,58,13.25,3,0.0 +19116,37,26,35,0.0 +19116,74,10,25,0.0 +19116,42,14,3,0.0 +19116,65,21.05,18,0.0 +19117,28,45.6,5,0.0 +19117,1,18,14,0.0 +19117,36,19,19,0.0 +19117,38,263.5,20,0.0 +19117,42,14,13,0.0 +19117,62,49.3,41,0.0 +19117,40,18.4,45,0.0 +19117,63,43.9,50,0.0 +19117,27,43.9,6,0.0 +19117,12,38,43,0.0 +19117,58,13.25,22,0.0 +19117,55,24,46,0.0 +19117,2,19,43,0.0 +19117,56,38,10,0.0 +19117,8,40,17,0.0 +19117,75,7.75,49,0.0 +19117,9,97,25,0.0 +19117,53,32.8,13,0.0 +19117,11,21,25,0.0 +19117,76,18,28,0.0 +19117,14,23.25,14,0.0 +19117,51,53,7,0.0 +19117,18,62.5,14,0.0 +19117,13,6,7,0.0 +19117,3,10,36,0.0 +19117,30,25.89,45,0.0 +19117,49,20,13,0.0 +19117,24,4.5,15,0.0 +19117,31,12.5,37,0.0 +19117,73,15,44,0.0 +19117,45,9.5,2,0.0 +19117,52,7,23,0.0 +19117,43,46,38,0.0 +19117,20,81,16,0.0 +19117,39,18,8,0.0 +19117,26,31.23,3,0.0 +19117,70,15,45,0.0 +19117,17,39,26,0.0 +19117,64,33.25,30,0.0 +19117,21,10,34,0.0 +19117,60,34,24,0.0 +19117,33,2.5,34,0.0 +19117,37,26,6,0.0 +19117,54,7.45,37,0.0 +19117,15,15.5,8,0.0 +19117,46,12,34,0.0 +19117,48,12.75,27,0.0 +19117,4,22,28,0.0 +19117,65,21.05,10,0.0 +19117,77,13,8,0.0 +19117,10,31,25,0.0 +19117,35,18,27,0.0 +19117,44,19.45,13,0.0 +19117,47,9.5,39,0.0 +19117,6,25,22,0.0 +19117,57,19.5,27,0.0 +19117,50,16.25,9,0.0 +19118,53,32.8,35,0.0 +19118,17,39,49,0.0 +19118,18,62.5,47,0.0 +19118,13,6,38,0.0 +19118,27,43.9,1,0.0 +19118,45,9.5,11,0.0 +19118,69,36,35,0.0 +19118,34,14,3,0.0 +19118,22,21,38,0.0 +19118,74,10,19,0.0 +19118,25,14,44,0.0 +19118,49,20,50,0.0 +19118,21,10,32,0.0 +19118,57,19.5,28,0.0 +19119,42,14,20,0.0 +19119,22,21,32,0.0 +19119,15,15.5,48,0.0 +19119,49,20,30,0.0 +19119,76,18,6,0.0 +19119,45,9.5,43,0.0 +19119,19,9.2,36,0.0 +19119,25,14,11,0.0 +19119,68,12.5,25,0.0 +19119,21,10,46,0.0 +19119,7,30,20,0.0 +19119,1,18,18,0.0 +19119,54,7.45,33,0.0 +19119,28,45.6,12,0.0 +19119,72,34.8,34,0.0 +19119,34,14,39,0.0 +19119,8,40,48,0.0 +19119,57,19.5,37,0.0 +19119,51,53,7,0.0 +19119,69,36,41,0.0 +19119,56,38,3,0.0 +19119,20,81,32,0.0 +19119,66,17,46,0.0 +19119,65,21.05,45,0.0 +19119,46,12,11,0.0 +19119,6,25,40,0.0 +19119,77,13,35,0.0 +19119,23,9,35,0.0 +19119,53,32.8,26,0.0 +19119,75,7.75,23,0.0 +19119,16,17.45,42,0.0 +19119,39,18,49,0.0 +19119,63,43.9,39,0.0 +19119,12,38,43,0.0 +19119,71,21.5,31,0.0 +19119,33,2.5,4,0.0 +19119,62,49.3,48,0.0 +19119,9,97,17,0.0 +19119,60,34,33,0.0 +19119,11,21,10,0.0 +19119,2,19,43,0.0 +19119,17,39,17,0.0 +19119,64,33.25,17,0.0 +19119,26,31.23,1,0.0 +19119,48,12.75,22,0.0 +19119,4,22,43,0.0 +19119,35,18,39,0.0 +19119,74,10,5,0.0 +19119,3,10,37,0.0 +19119,5,21.35,13,0.0 +19119,14,23.25,27,0.0 +19119,40,18.4,43,0.0 +19119,10,31,14,0.0 +19119,55,24,17,0.0 +19119,31,12.5,37,0.0 +19119,73,15,9,0.0 +19119,59,55,1,0.0 +19119,41,9.65,48,0.0 +19119,61,28.5,38,0.0 +19119,37,26,16,0.0 +19119,24,4.5,50,0.0 +19119,13,6,5,0.0 +19119,47,9.5,9,0.0 +19119,70,15,8,0.0 +19119,58,13.25,33,0.0 +19119,32,32,29,0.0 +19119,30,25.89,10,0.0 +19119,43,46,30,0.0 +19120,23,9,10,0.0 +19120,36,19,49,0.0 +19121,60,34,28,0.0 +19121,2,19,33,0.0 +19121,44,19.45,31,0.0 +19121,34,14,46,0.0 +19121,61,28.5,6,0.0 +19121,77,13,48,0.0 +19121,30,25.89,19,0.0 +19121,67,14,24,0.0 +19121,47,9.5,40,0.0 +19121,18,62.5,11,0.0 +19121,43,46,44,0.0 +19121,24,4.5,3,0.0 +19121,54,7.45,48,0.0 +19121,64,33.25,30,0.0 +19121,7,30,36,0.0 +19121,58,13.25,43,0.0 +19121,8,40,46,0.0 +19122,67,14,30,0.0 +19122,45,9.5,35,0.0 +19122,77,13,4,0.0 +19122,40,18.4,41,0.0 +19122,37,26,42,0.0 +19122,23,9,29,0.0 +19122,25,14,50,0.0 +19122,11,21,3,0.0 +19122,12,38,30,0.0 +19122,3,10,25,0.0 +19122,28,45.6,2,0.0 +19122,52,7,38,0.0 +19122,54,7.45,43,0.0 +19122,24,4.5,9,0.0 +19122,74,10,14,0.0 +19122,61,28.5,35,0.0 +19122,31,12.5,13,0.0 +19122,32,32,11,0.0 +19122,2,19,30,0.0 +19122,42,14,38,0.0 +19122,48,12.75,26,0.0 +19122,38,263.5,10,0.0 +19122,14,23.25,38,0.0 +19122,34,14,1,0.0 +19122,6,25,33,0.0 +19122,47,9.5,20,0.0 +19122,15,15.5,10,0.0 +19122,75,7.75,36,0.0 +19122,39,18,23,0.0 +19122,56,38,19,0.0 +19122,36,19,3,0.0 +19122,9,97,14,0.0 +19122,22,21,7,0.0 +19122,58,13.25,21,0.0 +19122,5,21.35,44,0.0 +19122,20,81,27,0.0 +19122,7,30,30,0.0 +19122,49,20,2,0.0 +19122,4,22,10,0.0 +19122,65,21.05,25,0.0 +19122,59,55,10,0.0 +19123,47,9.5,12,0.0 +19123,28,45.6,13,0.0 +19123,71,21.5,44,0.0 +19123,67,14,27,0.0 +19123,25,14,19,0.0 +19123,52,7,18,0.0 +19123,41,9.65,27,0.0 +19123,39,18,29,0.0 +19123,12,38,8,0.0 +19123,1,18,43,0.0 +19123,69,36,43,0.0 +19123,18,62.5,39,0.0 +19123,19,9.2,50,0.0 +19123,37,26,29,0.0 +19123,48,12.75,35,0.0 +19123,36,19,44,0.0 +19123,22,21,17,0.0 +19123,61,28.5,35,0.0 +19123,55,24,32,0.0 +19123,51,53,22,0.0 +19123,8,40,19,0.0 +19123,62,49.3,31,0.0 +19123,31,12.5,28,0.0 +19123,11,21,31,0.0 +19123,53,32.8,9,0.0 +19123,50,16.25,11,0.0 +19123,68,12.5,34,0.0 +19123,34,14,48,0.0 +19123,16,17.45,1,0.0 +19123,15,15.5,39,0.0 +19123,17,39,6,0.0 +19123,24,4.5,23,0.0 +19123,76,18,48,0.0 +19123,63,43.9,24,0.0 +19123,45,9.5,50,0.0 +19123,20,81,14,0.0 +19124,15,15.5,30,0.0 +19124,56,38,14,0.0 +19124,9,97,46,0.0 +19124,31,12.5,16,0.0 +19124,35,18,30,0.0 +19124,8,40,4,0.0 +19124,69,36,5,0.0 +19124,46,12,4,0.0 +19124,45,9.5,3,0.0 +19124,40,18.4,15,0.0 +19124,3,10,27,0.0 +19124,24,4.5,20,0.0 +19124,10,31,45,0.0 +19124,48,12.75,32,0.0 +19124,36,19,47,0.0 +19124,5,21.35,45,0.0 +19124,74,10,43,0.0 +19124,27,43.9,1,0.0 +19124,14,23.25,41,0.0 +19124,67,14,37,0.0 +19124,30,25.89,36,0.0 +19124,59,55,29,0.0 +19124,60,34,19,0.0 +19124,34,14,31,0.0 +19124,28,45.6,39,0.0 +19124,32,32,34,0.0 +19124,75,7.75,33,0.0 +19124,17,39,46,0.0 +19124,65,21.05,16,0.0 +19124,21,10,10,0.0 +19124,43,46,23,0.0 +19124,4,22,35,0.0 +19124,50,16.25,39,0.0 +19124,1,18,7,0.0 +19124,70,15,11,0.0 +19124,25,14,10,0.0 +19124,26,31.23,8,0.0 +19124,7,30,25,0.0 +19124,71,21.5,5,0.0 +19124,16,17.45,6,0.0 +19124,44,19.45,38,0.0 +19124,77,13,21,0.0 +19124,53,32.8,23,0.0 +19124,19,9.2,33,0.0 +19124,18,62.5,30,0.0 +19124,11,21,45,0.0 +19124,57,19.5,16,0.0 +19124,20,81,26,0.0 +19124,73,15,29,0.0 +19124,61,28.5,46,0.0 +19124,13,6,20,0.0 +19124,23,9,3,0.0 +19124,22,21,30,0.0 +19124,76,18,18,0.0 +19124,54,7.45,24,0.0 +19124,42,14,34,0.0 +19124,29,123.79,33,0.0 +19124,55,24,11,0.0 +19124,47,9.5,41,0.0 +19124,64,33.25,17,0.0 +19124,38,263.5,47,0.0 +19124,2,19,42,0.0 +19124,51,53,3,0.0 +19124,39,18,2,0.0 +19124,58,13.25,19,0.0 +19124,37,26,9,0.0 +19124,62,49.3,43,0.0 +19124,72,34.8,7,0.0 +19124,41,9.65,33,0.0 +19124,12,38,29,0.0 +19124,49,20,48,0.0 +19124,66,17,7,0.0 +19124,52,7,45,0.0 +19124,68,12.5,6,0.0 +19124,33,2.5,40,0.0 +19124,6,25,9,0.0 +19124,63,43.9,22,0.0 +19125,75,7.75,6,0.0 +19125,12,38,2,0.0 +19125,51,53,2,0.0 +19125,57,19.5,30,0.0 +19125,3,10,22,0.0 +19125,40,18.4,5,0.0 +19125,35,18,22,0.0 +19125,47,9.5,41,0.0 +19126,26,31.23,2,0.0 +19126,11,21,20,0.0 +19126,67,14,49,0.0 +19126,27,43.9,40,0.0 +19127,36,19,31,0.0 +19127,7,30,19,0.0 +19127,66,17,27,0.0 +19127,52,7,29,0.0 +19127,48,12.75,42,0.0 +19127,23,9,31,0.0 +19127,64,33.25,17,0.0 +19127,30,25.89,8,0.0 +19127,56,38,50,0.0 +19127,17,39,23,0.0 +19127,54,7.45,39,0.0 +19127,28,45.6,13,0.0 +19127,47,9.5,35,0.0 +19127,12,38,10,0.0 +19127,11,21,17,0.0 +19127,57,19.5,45,0.0 +19127,18,62.5,9,0.0 +19127,13,6,12,0.0 +19127,76,18,32,0.0 +19127,29,123.79,19,0.0 +19127,63,43.9,18,0.0 +19127,4,22,37,0.0 +19127,44,19.45,20,0.0 +19127,65,21.05,23,0.0 +19127,20,81,18,0.0 +19128,67,14,35,0.0 +19128,45,9.5,33,0.0 +19128,37,26,34,0.0 +19128,30,25.89,4,0.0 +19128,9,97,32,0.0 +19128,49,20,33,0.0 +19128,55,24,24,0.0 +19128,51,53,14,0.0 +19128,62,49.3,49,0.0 +19128,17,39,12,0.0 +19128,8,40,30,0.0 +19128,18,62.5,10,0.0 +19128,75,7.75,50,0.0 +19128,21,10,38,0.0 +19128,2,19,36,0.0 +19128,40,18.4,42,0.0 +19128,63,43.9,47,0.0 +19128,28,45.6,41,0.0 +19128,76,18,39,0.0 +19128,77,13,40,0.0 +19128,25,14,21,0.0 +19128,38,263.5,4,0.0 +19128,41,9.65,24,0.0 +19128,16,17.45,24,0.0 +19128,47,9.5,30,0.0 +19128,48,12.75,38,0.0 +19128,64,33.25,13,0.0 +19128,50,16.25,22,0.0 +19128,10,31,32,0.0 +19128,59,55,14,0.0 +19128,70,15,48,0.0 +19128,23,9,15,0.0 +19128,35,18,28,0.0 +19128,32,32,40,0.0 +19128,3,10,17,0.0 +19128,14,23.25,8,0.0 +19128,1,18,48,0.0 +19128,5,21.35,32,0.0 +19128,27,43.9,30,0.0 +19128,52,7,49,0.0 +19128,29,123.79,42,0.0 +19128,7,30,48,0.0 +19128,43,46,34,0.0 +19128,68,12.5,39,0.0 +19128,13,6,18,0.0 +19128,22,21,48,0.0 +19128,54,7.45,3,0.0 +19128,39,18,11,0.0 +19128,74,10,22,0.0 +19128,53,32.8,22,0.0 +19128,60,34,41,0.0 +19128,20,81,20,0.0 +19128,12,38,5,0.0 +19128,73,15,39,0.0 +19128,26,31.23,15,0.0 +19128,58,13.25,19,0.0 +19128,4,22,23,0.0 +19128,56,38,1,0.0 +19128,69,36,2,0.0 +19128,6,25,38,0.0 +19128,15,15.5,42,0.0 +19128,57,19.5,19,0.0 +19128,34,14,37,0.0 +19128,42,14,35,0.0 +19128,71,21.5,1,0.0 +19128,44,19.45,50,0.0 +19128,33,2.5,34,0.0 +19128,72,34.8,46,0.0 +19129,18,62.5,17,0.0 +19129,13,6,36,0.0 +19129,5,21.35,30,0.0 +19129,62,49.3,28,0.0 +19129,23,9,1,0.0 +19129,65,21.05,8,0.0 +19129,70,15,33,0.0 +19129,68,12.5,47,0.0 +19129,61,28.5,37,0.0 +19129,12,38,45,0.0 +19129,17,39,31,0.0 +19129,27,43.9,47,0.0 +19129,36,19,16,0.0 +19129,42,14,9,0.0 +19129,37,26,28,0.0 +19129,69,36,16,0.0 +19129,45,9.5,30,0.0 +19129,15,15.5,12,0.0 +19129,57,19.5,9,0.0 +19129,56,38,7,0.0 +19129,58,13.25,6,0.0 +19129,71,21.5,44,0.0 +19129,19,9.2,36,0.0 +19129,10,31,4,0.0 +19129,63,43.9,20,0.0 +19129,49,20,38,0.0 +19129,33,2.5,40,0.0 +19129,38,263.5,40,0.0 +19129,52,7,5,0.0 +19129,4,22,24,0.0 +19129,48,12.75,35,0.0 +19129,40,18.4,47,0.0 +19129,2,19,47,0.0 +19129,47,9.5,27,0.0 +19129,73,15,6,0.0 +19130,12,38,45,0.0 +19130,15,15.5,49,0.0 +19130,34,14,7,0.0 +19130,59,55,16,0.0 +19130,11,21,37,0.0 +19130,60,34,18,0.0 +19130,35,18,20,0.0 +19130,36,19,12,0.0 +19130,7,30,28,0.0 +19130,3,10,16,0.0 +19130,46,12,25,0.0 +19130,6,25,2,0.0 +19130,58,13.25,49,0.0 +19130,27,43.9,47,0.0 +19130,24,4.5,31,0.0 +19130,51,53,45,0.0 +19130,21,10,39,0.0 +19130,47,9.5,5,0.0 +19130,32,32,6,0.0 +19130,71,21.5,19,0.0 +19130,37,26,48,0.0 +19130,64,33.25,48,0.0 +19130,66,17,40,0.0 +19130,8,40,49,0.0 +19130,61,28.5,34,0.0 +19130,33,2.5,40,0.0 +19130,42,14,16,0.0 +19130,13,6,13,0.0 +19130,45,9.5,42,0.0 +19130,65,21.05,28,0.0 +19130,19,9.2,38,0.0 +19130,28,45.6,47,0.0 +19130,1,18,14,0.0 +19130,72,34.8,10,0.0 +19130,76,18,41,0.0 +19130,73,15,43,0.0 +19130,50,16.25,11,0.0 +19130,23,9,13,0.0 +19130,57,19.5,15,0.0 +19130,17,39,40,0.0 +19130,44,19.45,26,0.0 +19130,2,19,40,0.0 +19130,41,9.65,6,0.0 +19130,53,32.8,33,0.0 +19130,52,7,49,0.0 +19130,38,263.5,7,0.0 +19130,39,18,12,0.0 +19130,22,21,37,0.0 +19130,68,12.5,45,0.0 +19130,70,15,40,0.0 +19130,5,21.35,35,0.0 +19130,14,23.25,34,0.0 +19130,40,18.4,4,0.0 +19130,20,81,39,0.0 +19130,25,14,50,0.0 +19130,56,38,40,0.0 +19130,54,7.45,41,0.0 +19130,48,12.75,1,0.0 +19130,26,31.23,29,0.0 +19130,67,14,11,0.0 +19130,49,20,18,0.0 +19130,29,123.79,23,0.0 +19130,75,7.75,33,0.0 +19130,18,62.5,35,0.0 +19130,10,31,12,0.0 +19130,43,46,35,0.0 +19130,55,24,2,0.0 +19130,30,25.89,19,0.0 +19130,9,97,48,0.0 +19130,16,17.45,18,0.0 +19131,22,21,20,0.0 +19131,51,53,35,0.0 +19131,1,18,28,0.0 +19131,50,16.25,38,0.0 +19131,68,12.5,42,0.0 +19131,61,28.5,9,0.0 +19131,24,4.5,28,0.0 +19131,57,19.5,45,0.0 +19131,23,9,32,0.0 +19131,17,39,6,0.0 +19131,41,9.65,18,0.0 +19131,2,19,31,0.0 +19131,31,12.5,19,0.0 +19131,18,62.5,35,0.0 +19131,73,15,15,0.0 +19131,29,123.79,46,0.0 +19132,2,19,25,0.0 +19132,73,15,5,0.0 +19132,11,21,45,0.0 +19132,41,9.65,22,0.0 +19132,34,14,42,0.0 +19132,36,19,33,0.0 +19132,44,19.45,20,0.0 +19132,65,21.05,38,0.0 +19132,25,14,43,0.0 +19132,60,34,4,0.0 +19132,10,31,46,0.0 +19132,48,12.75,50,0.0 +19132,26,31.23,23,0.0 +19132,47,9.5,43,0.0 +19132,30,25.89,41,0.0 +19132,22,21,50,0.0 +19132,32,32,50,0.0 +19132,56,38,18,0.0 +19132,63,43.9,10,0.0 +19132,1,18,42,0.0 +19132,66,17,8,0.0 +19132,27,43.9,13,0.0 +19132,77,13,14,0.0 +19132,76,18,12,0.0 +19132,45,9.5,18,0.0 +19132,9,97,10,0.0 +19132,37,26,47,0.0 +19132,33,2.5,18,0.0 +19132,59,55,8,0.0 +19132,64,33.25,26,0.0 +19132,62,49.3,12,0.0 +19132,53,32.8,21,0.0 +19132,43,46,34,0.0 +19132,70,15,43,0.0 +19132,12,38,26,0.0 +19132,54,7.45,22,0.0 +19132,24,4.5,2,0.0 +19132,31,12.5,17,0.0 +19132,23,9,15,0.0 +19132,42,14,2,0.0 +19132,20,81,33,0.0 +19132,19,9.2,33,0.0 +19132,61,28.5,10,0.0 +19132,6,25,14,0.0 +19132,69,36,2,0.0 +19132,15,15.5,6,0.0 +19132,8,40,37,0.0 +19132,17,39,11,0.0 +19132,40,18.4,23,0.0 +19132,38,263.5,19,0.0 +19132,72,34.8,45,0.0 +19132,4,22,11,0.0 +19132,28,45.6,26,0.0 +19132,39,18,8,0.0 +19132,67,14,37,0.0 +19132,13,6,19,0.0 +19132,49,20,46,0.0 +19132,21,10,38,0.0 +19132,58,13.25,34,0.0 +19132,29,123.79,42,0.0 +19132,51,53,9,0.0 +19132,5,21.35,50,0.0 +19132,3,10,28,0.0 +19132,71,21.5,28,0.0 +19132,57,19.5,27,0.0 +19132,75,7.75,34,0.0 +19132,35,18,36,0.0 +19133,43,46,42,0.0 +19133,9,97,4,0.0 +19133,24,4.5,22,0.0 +19133,72,34.8,17,0.0 +19133,42,14,20,0.0 +19133,73,15,29,0.0 +19133,54,7.45,24,0.0 +19133,26,31.23,36,0.0 +19133,66,17,9,0.0 +19133,60,34,12,0.0 +19133,23,9,14,0.0 +19133,12,38,15,0.0 +19133,40,18.4,9,0.0 +19133,28,45.6,30,0.0 +19133,18,62.5,3,0.0 +19133,38,263.5,25,0.0 +19133,46,12,49,0.0 +19133,55,24,49,0.0 +19133,7,30,36,0.0 +19133,1,18,48,0.0 +19133,74,10,7,0.0 +19133,39,18,5,0.0 +19133,69,36,10,0.0 +19133,50,16.25,4,0.0 +19133,63,43.9,26,0.0 +19133,45,9.5,11,0.0 +19133,19,9.2,41,0.0 +19133,57,19.5,44,0.0 +19133,62,49.3,44,0.0 +19133,75,7.75,24,0.0 +19133,4,22,35,0.0 +19134,66,17,32,0.0 +19134,15,15.5,22,0.0 +19134,8,40,42,0.0 +19134,61,28.5,33,0.0 +19134,27,43.9,29,0.0 +19134,70,15,1,0.0 +19134,11,21,21,0.0 +19134,63,43.9,43,0.0 +19134,3,10,42,0.0 +19134,10,31,12,0.0 +19134,51,53,9,0.0 +19134,53,32.8,11,0.0 +19134,24,4.5,46,0.0 +19134,37,26,50,0.0 +19134,20,81,13,0.0 +19134,76,18,48,0.0 +19134,77,13,9,0.0 +19134,32,32,24,0.0 +19134,69,36,28,0.0 +19134,55,24,21,0.0 +19134,38,263.5,30,0.0 +19134,47,9.5,3,0.0 +19134,7,30,22,0.0 +19134,42,14,48,0.0 +19134,16,17.45,36,0.0 +19134,52,7,37,0.0 +19134,59,55,27,0.0 +19134,13,6,12,0.0 +19134,22,21,12,0.0 +19134,28,45.6,29,0.0 +19134,34,14,49,0.0 +19134,26,31.23,20,0.0 +19134,44,19.45,48,0.0 +19134,23,9,47,0.0 +19134,75,7.75,33,0.0 +19134,50,16.25,45,0.0 +19134,18,62.5,32,0.0 +19134,67,14,44,0.0 +19134,36,19,6,0.0 +19134,2,19,41,0.0 +19134,57,19.5,28,0.0 +19134,4,22,8,0.0 +19134,39,18,20,0.0 +19134,29,123.79,30,0.0 +19134,21,10,21,0.0 +19134,12,38,11,0.0 +19134,60,34,40,0.0 +19134,74,10,36,0.0 +19134,56,38,5,0.0 +19134,33,2.5,40,0.0 +19134,65,21.05,39,0.0 +19134,31,12.5,29,0.0 +19134,46,12,2,0.0 +19134,5,21.35,14,0.0 +19134,17,39,18,0.0 +19134,30,25.89,40,0.0 +19135,70,15,35,0.0 +19135,34,14,28,0.0 +19135,65,21.05,48,0.0 +19135,72,34.8,42,0.0 +19135,15,15.5,37,0.0 +19135,23,9,13,0.0 +19135,19,9.2,37,0.0 +19135,46,12,37,0.0 +19135,21,10,26,0.0 +19136,15,15.5,6,0.0 +19136,7,30,41,0.0 +19136,33,2.5,29,0.0 +19136,11,21,40,0.0 +19136,49,20,24,0.0 +19136,76,18,3,0.0 +19136,12,38,2,0.0 +19136,30,25.89,16,0.0 +19136,51,53,31,0.0 +19136,46,12,49,0.0 +19136,31,12.5,32,0.0 +19136,41,9.65,18,0.0 +19136,44,19.45,23,0.0 +19136,4,22,50,0.0 +19136,43,46,15,0.0 +19136,50,16.25,46,0.0 +19136,27,43.9,16,0.0 +19136,58,13.25,5,0.0 +19136,72,34.8,32,0.0 +19136,55,24,24,0.0 +19136,56,38,21,0.0 +19136,77,13,7,0.0 +19136,29,123.79,43,0.0 +19136,23,9,6,0.0 +19136,35,18,15,0.0 +19136,67,14,9,0.0 +19136,61,28.5,37,0.0 +19136,70,15,39,0.0 +19136,63,43.9,6,0.0 +19136,25,14,2,0.0 +19136,22,21,39,0.0 +19136,17,39,3,0.0 +19136,10,31,43,0.0 +19136,14,23.25,11,0.0 +19136,69,36,15,0.0 +19136,38,263.5,28,0.0 +19136,42,14,41,0.0 +19136,45,9.5,5,0.0 +19136,39,18,39,0.0 +19136,20,81,35,0.0 +19136,19,9.2,11,0.0 +19136,60,34,12,0.0 +19136,75,7.75,12,0.0 +19136,13,6,39,0.0 +19137,36,19,35,0.0 +19137,58,13.25,18,0.0 +19137,38,263.5,45,0.0 +19137,34,14,22,0.0 +19137,51,53,44,0.0 +19137,45,9.5,17,0.0 +19137,71,21.5,49,0.0 +19137,46,12,29,0.0 +19137,62,49.3,40,0.0 +19137,15,15.5,24,0.0 +19137,67,14,22,0.0 +19137,41,9.65,33,0.0 +19137,32,32,35,0.0 +19137,49,20,20,0.0 +19137,63,43.9,6,0.0 +19137,37,26,21,0.0 +19137,65,21.05,22,0.0 +19137,43,46,15,0.0 +19137,9,97,6,0.0 +19137,50,16.25,3,0.0 +19137,7,30,44,0.0 +19137,44,19.45,40,0.0 +19137,12,38,43,0.0 +19137,39,18,23,0.0 +19137,13,6,8,0.0 +19137,8,40,32,0.0 +19137,68,12.5,34,0.0 +19137,23,9,2,0.0 +19137,48,12.75,36,0.0 +19137,24,4.5,13,0.0 +19137,52,7,4,0.0 +19137,70,15,33,0.0 +19137,14,23.25,1,0.0 +19137,75,7.75,13,0.0 +19137,61,28.5,5,0.0 +19137,2,19,7,0.0 +19137,64,33.25,10,0.0 +19137,5,21.35,41,0.0 +19137,16,17.45,2,0.0 +19137,19,9.2,16,0.0 +19137,10,31,13,0.0 +19137,53,32.8,26,0.0 +19137,22,21,36,0.0 +19137,1,18,37,0.0 +19137,18,62.5,11,0.0 +19137,33,2.5,24,0.0 +19137,4,22,22,0.0 +19137,30,25.89,38,0.0 +19137,56,38,36,0.0 +19137,20,81,37,0.0 +19137,40,18.4,23,0.0 +19137,26,31.23,42,0.0 +19137,77,13,23,0.0 +19137,42,14,28,0.0 +19137,76,18,43,0.0 +19137,6,25,26,0.0 +19137,21,10,5,0.0 +19137,60,34,21,0.0 +19137,35,18,30,0.0 +19137,17,39,27,0.0 +19137,72,34.8,43,0.0 +19137,54,7.45,11,0.0 +19137,3,10,5,0.0 +19137,29,123.79,31,0.0 +19137,47,9.5,28,0.0 +19137,27,43.9,34,0.0 +19137,73,15,20,0.0 +19137,66,17,50,0.0 +19137,55,24,45,0.0 +19137,28,45.6,11,0.0 +19137,25,14,40,0.0 +19137,11,21,49,0.0 +19138,20,81,46,0.0 +19138,28,45.6,33,0.0 +19138,52,7,38,0.0 +19138,2,19,15,0.0 +19138,25,14,49,0.0 +19138,73,15,24,0.0 +19138,62,49.3,49,0.0 +19138,37,26,10,0.0 +19138,29,123.79,46,0.0 +19138,61,28.5,20,0.0 +19138,58,13.25,20,0.0 +19138,44,19.45,11,0.0 +19138,17,39,1,0.0 +19138,51,53,26,0.0 +19138,6,25,14,0.0 +19138,57,19.5,34,0.0 +19138,16,17.45,23,0.0 +19138,45,9.5,29,0.0 +19138,34,14,45,0.0 +19138,1,18,38,0.0 +19138,69,36,6,0.0 +19138,71,21.5,11,0.0 +19138,76,18,16,0.0 +19138,24,4.5,19,0.0 +19138,72,34.8,46,0.0 +19138,55,24,23,0.0 +19138,32,32,50,0.0 +19138,14,23.25,15,0.0 +19138,36,19,7,0.0 +19138,22,21,19,0.0 +19138,5,21.35,46,0.0 +19138,23,9,28,0.0 +19138,38,263.5,49,0.0 +19138,8,40,20,0.0 +19138,60,34,46,0.0 +19138,65,21.05,45,0.0 +19138,18,62.5,1,0.0 +19138,26,31.23,27,0.0 +19138,21,10,10,0.0 +19138,43,46,44,0.0 +19138,4,22,6,0.0 +19138,40,18.4,29,0.0 +19138,39,18,8,0.0 +19138,12,38,14,0.0 +19138,64,33.25,18,0.0 +19139,65,21.05,9,0.0 +19139,29,123.79,22,0.0 +19139,51,53,46,0.0 +19139,7,30,29,0.0 +19139,59,55,32,0.0 +19139,50,16.25,9,0.0 +19139,41,9.65,26,0.0 +19139,24,4.5,17,0.0 +19139,23,9,38,0.0 +19139,2,19,11,0.0 +19139,62,49.3,8,0.0 +19139,67,14,29,0.0 +19139,57,19.5,28,0.0 +19139,28,45.6,21,0.0 +19139,1,18,48,0.0 +19139,20,81,49,0.0 +19139,47,9.5,50,0.0 +19139,55,24,36,0.0 +19139,42,14,4,0.0 +19139,69,36,45,0.0 +19139,26,31.23,10,0.0 +19139,46,12,11,0.0 +19139,17,39,32,0.0 +19139,8,40,12,0.0 +19139,54,7.45,29,0.0 +19139,11,21,4,0.0 +19139,13,6,47,0.0 +19139,64,33.25,42,0.0 +19139,40,18.4,47,0.0 +19139,76,18,9,0.0 +19139,33,2.5,14,0.0 +19139,49,20,10,0.0 +19139,52,7,9,0.0 +19139,48,12.75,16,0.0 +19139,58,13.25,5,0.0 +19139,5,21.35,10,0.0 +19139,34,14,24,0.0 +19139,70,15,30,0.0 +19139,27,43.9,41,0.0 +19139,9,97,18,0.0 +19139,4,22,23,0.0 +19139,45,9.5,27,0.0 +19139,36,19,32,0.0 +19139,56,38,24,0.0 +19139,71,21.5,3,0.0 +19139,38,263.5,15,0.0 +19139,77,13,13,0.0 +19139,61,28.5,35,0.0 +19139,68,12.5,21,0.0 +19139,73,15,18,0.0 +19139,19,9.2,11,0.0 +19140,38,263.5,28,0.0 +19140,11,21,42,0.0 +19140,16,17.45,22,0.0 +19140,75,7.75,44,0.0 +19140,77,13,36,0.0 +19140,30,25.89,47,0.0 +19140,40,18.4,2,0.0 +19140,64,33.25,19,0.0 +19140,61,28.5,41,0.0 +19140,23,9,13,0.0 +19140,76,18,47,0.0 +19141,55,24,19,0.0 +19141,43,46,9,0.0 +19141,30,25.89,34,0.0 +19141,66,17,8,0.0 +19141,64,33.25,48,0.0 +19141,53,32.8,20,0.0 +19141,7,30,39,0.0 +19141,39,18,24,0.0 +19141,58,13.25,13,0.0 +19141,62,49.3,34,0.0 +19141,47,9.5,22,0.0 +19141,6,25,26,0.0 +19141,76,18,30,0.0 +19141,73,15,39,0.0 +19142,32,32,4,0.0 +19142,60,34,42,0.0 +19142,76,18,47,0.0 +19142,31,12.5,30,0.0 +19142,48,12.75,25,0.0 +19142,70,15,3,0.0 +19142,65,21.05,17,0.0 +19142,29,123.79,11,0.0 +19142,15,15.5,5,0.0 +19142,67,14,5,0.0 +19142,2,19,35,0.0 +19142,38,263.5,15,0.0 +19142,23,9,25,0.0 +19142,3,10,4,0.0 +19142,34,14,46,0.0 +19142,71,21.5,28,0.0 +19142,73,15,2,0.0 +19142,69,36,46,0.0 +19142,33,2.5,38,0.0 +19142,75,7.75,48,0.0 +19142,59,55,25,0.0 +19142,21,10,35,0.0 +19142,14,23.25,20,0.0 +19142,40,18.4,8,0.0 +19142,17,39,8,0.0 +19142,36,19,2,0.0 +19142,66,17,11,0.0 +19142,47,9.5,7,0.0 +19142,72,34.8,6,0.0 +19142,57,19.5,11,0.0 +19142,55,24,29,0.0 +19142,8,40,27,0.0 +19142,45,9.5,46,0.0 +19142,53,32.8,21,0.0 +19142,37,26,49,0.0 +19142,51,53,50,0.0 +19142,62,49.3,4,0.0 +19142,6,25,38,0.0 +19142,58,13.25,20,0.0 +19142,12,38,16,0.0 +19142,25,14,38,0.0 +19142,7,30,27,0.0 +19142,49,20,17,0.0 +19142,41,9.65,46,0.0 +19142,30,25.89,14,0.0 +19142,42,14,5,0.0 +19142,52,7,28,0.0 +19142,50,16.25,28,0.0 +19142,4,22,47,0.0 +19142,64,33.25,23,0.0 +19142,27,43.9,12,0.0 +19142,10,31,31,0.0 +19142,24,4.5,6,0.0 +19142,74,10,22,0.0 +19142,39,18,30,0.0 +19142,9,97,18,0.0 +19142,35,18,3,0.0 +19142,77,13,33,0.0 +19142,43,46,30,0.0 +19142,22,21,31,0.0 +19142,19,9.2,21,0.0 +19142,16,17.45,42,0.0 +19142,63,43.9,48,0.0 +19142,28,45.6,45,0.0 +19142,13,6,37,0.0 +19142,1,18,41,0.0 +19142,20,81,15,0.0 +19142,26,31.23,32,0.0 +19142,54,7.45,35,0.0 +19143,52,7,10,0.0 +19143,42,14,5,0.0 +19143,73,15,4,0.0 +19143,21,10,1,0.0 +19143,3,10,27,0.0 +19143,12,38,50,0.0 +19143,39,18,10,0.0 +19143,69,36,19,0.0 +19143,4,22,3,0.0 +19143,55,24,43,0.0 +19143,27,43.9,1,0.0 +19143,58,13.25,44,0.0 +19143,40,18.4,39,0.0 +19143,32,32,10,0.0 +19143,75,7.75,9,0.0 +19143,28,45.6,44,0.0 +19143,20,81,19,0.0 +19143,19,9.2,3,0.0 +19143,44,19.45,22,0.0 +19143,14,23.25,8,0.0 +19143,23,9,48,0.0 +19143,72,34.8,7,0.0 +19143,46,12,3,0.0 +19143,5,21.35,5,0.0 +19143,25,14,26,0.0 +19143,13,6,35,0.0 +19143,63,43.9,2,0.0 +19143,29,123.79,36,0.0 +19143,11,21,1,0.0 +19143,66,17,19,0.0 +19143,22,21,29,0.0 +19143,16,17.45,21,0.0 +19143,59,55,14,0.0 +19143,49,20,9,0.0 +19143,1,18,3,0.0 +19143,31,12.5,40,0.0 +19143,48,12.75,35,0.0 +19143,18,62.5,50,0.0 +19143,71,21.5,29,0.0 +19143,50,16.25,48,0.0 +19143,41,9.65,25,0.0 +19143,17,39,17,0.0 +19143,36,19,10,0.0 +19143,56,38,26,0.0 +19143,68,12.5,36,0.0 +19143,24,4.5,50,0.0 +19143,30,25.89,3,0.0 +19143,37,26,42,0.0 +19143,61,28.5,19,0.0 +19143,33,2.5,13,0.0 +19143,64,33.25,23,0.0 +19143,57,19.5,10,0.0 +19143,77,13,17,0.0 +19143,35,18,4,0.0 +19143,15,15.5,36,0.0 +19143,38,263.5,26,0.0 +19144,65,21.05,5,0.0 +19144,47,9.5,12,0.0 +19144,26,31.23,2,0.0 +19144,43,46,47,0.0 +19144,36,19,26,0.0 +19144,23,9,5,0.0 +19144,62,49.3,34,0.0 +19144,72,34.8,8,0.0 +19144,61,28.5,19,0.0 +19144,15,15.5,12,0.0 +19144,19,9.2,41,0.0 +19144,64,33.25,41,0.0 +19144,22,21,19,0.0 +19144,27,43.9,16,0.0 +19144,73,15,5,0.0 +19144,44,19.45,8,0.0 +19144,13,6,10,0.0 +19144,8,40,50,0.0 +19144,60,34,48,0.0 +19144,21,10,28,0.0 +19144,41,9.65,49,0.0 +19144,69,36,4,0.0 +19145,70,15,17,0.0 +19145,50,16.25,50,0.0 +19145,75,7.75,2,0.0 +19145,46,12,46,0.0 +19145,56,38,11,0.0 +19145,39,18,34,0.0 +19145,26,31.23,5,0.0 +19145,64,33.25,32,0.0 +19145,30,25.89,20,0.0 +19145,60,34,11,0.0 +19145,59,55,6,0.0 +19145,8,40,22,0.0 +19145,72,34.8,41,0.0 +19145,16,17.45,10,0.0 +19145,3,10,20,0.0 +19145,27,43.9,1,0.0 +19145,67,14,42,0.0 +19145,58,13.25,48,0.0 +19145,6,25,17,0.0 +19145,55,24,49,0.0 +19145,9,97,20,0.0 +19145,40,18.4,40,0.0 +19145,5,21.35,13,0.0 +19145,19,9.2,24,0.0 +19145,10,31,21,0.0 +19145,22,21,3,0.0 +19145,12,38,31,0.0 +19145,74,10,24,0.0 +19145,2,19,38,0.0 +19145,63,43.9,3,0.0 +19145,1,18,27,0.0 +19145,33,2.5,12,0.0 +19145,35,18,47,0.0 +19145,20,81,44,0.0 +19145,24,4.5,10,0.0 +19145,38,263.5,28,0.0 +19145,13,6,22,0.0 +19145,43,46,19,0.0 +19145,48,12.75,32,0.0 +19145,7,30,6,0.0 +19145,42,14,18,0.0 +19145,36,19,33,0.0 +19145,14,23.25,3,0.0 +19145,29,123.79,8,0.0 +19145,4,22,12,0.0 +19145,11,21,11,0.0 +19146,65,21.05,50,0.0 +19146,38,263.5,46,0.0 +19146,12,38,17,0.0 +19146,59,55,12,0.0 +19146,70,15,35,0.0 +19146,41,9.65,28,0.0 +19146,15,15.5,9,0.0 +19146,40,18.4,23,0.0 +19146,22,21,43,0.0 +19146,48,12.75,14,0.0 +19146,63,43.9,41,0.0 +19146,69,36,38,0.0 +19146,67,14,17,0.0 +19146,25,14,38,0.0 +19146,13,6,25,0.0 +19146,72,34.8,8,0.0 +19146,10,31,45,0.0 +19146,43,46,41,0.0 +19146,55,24,19,0.0 +19146,30,25.89,43,0.0 +19146,19,9.2,37,0.0 +19146,60,34,43,0.0 +19147,31,12.5,43,0.0 +19147,11,21,23,0.0 +19147,62,49.3,42,0.0 +19147,34,14,7,0.0 +19147,47,9.5,33,0.0 +19147,25,14,34,0.0 +19147,24,4.5,37,0.0 +19147,9,97,24,0.0 +19147,10,31,50,0.0 +19147,72,34.8,26,0.0 +19147,6,25,18,0.0 +19147,67,14,29,0.0 +19147,43,46,43,0.0 +19147,27,43.9,17,0.0 +19147,35,18,50,0.0 +19147,59,55,3,0.0 +19147,56,38,45,0.0 +19147,32,32,4,0.0 +19147,16,17.45,49,0.0 +19147,70,15,28,0.0 +19147,52,7,28,0.0 +19147,7,30,45,0.0 +19147,57,19.5,7,0.0 +19147,68,12.5,41,0.0 +19147,44,19.45,17,0.0 +19147,40,18.4,2,0.0 +19147,60,34,12,0.0 +19147,51,53,16,0.0 +19147,26,31.23,2,0.0 +19147,15,15.5,46,0.0 +19147,13,6,46,0.0 +19147,49,20,2,0.0 +19147,46,12,14,0.0 +19147,18,62.5,41,0.0 +19147,19,9.2,18,0.0 +19147,39,18,34,0.0 +19147,14,23.25,11,0.0 +19147,45,9.5,45,0.0 +19147,63,43.9,4,0.0 +19147,53,32.8,20,0.0 +19147,50,16.25,15,0.0 +19147,64,33.25,5,0.0 +19147,73,15,28,0.0 +19147,5,21.35,7,0.0 +19147,33,2.5,33,0.0 +19147,28,45.6,29,0.0 +19148,77,13,46,0.0 +19148,20,81,33,0.0 +19148,61,28.5,19,0.0 +19148,3,10,13,0.0 +19148,25,14,39,0.0 +19148,9,97,25,0.0 +19148,52,7,40,0.0 +19148,65,21.05,5,0.0 +19148,69,36,4,0.0 +19148,8,40,9,0.0 +19148,49,20,49,0.0 +19148,66,17,34,0.0 +19148,45,9.5,32,0.0 +19148,32,32,9,0.0 +19148,31,12.5,43,0.0 +19148,38,263.5,44,0.0 +19148,51,53,44,0.0 +19148,72,34.8,7,0.0 +19149,76,18,20,0.0 +19149,45,9.5,29,0.0 +19149,58,13.25,39,0.0 +19150,74,10,35,0.0 +19150,49,20,35,0.0 +19150,9,97,45,0.0 +19150,17,39,35,0.0 +19150,15,15.5,35,0.0 +19150,37,26,48,0.0 +19150,62,49.3,37,0.0 +19150,18,62.5,29,0.0 +19150,10,31,8,0.0 +19150,47,9.5,32,0.0 +19150,67,14,11,0.0 +19150,32,32,36,0.0 +19150,2,19,26,0.0 +19150,50,16.25,15,0.0 +19150,43,46,31,0.0 +19150,58,13.25,15,0.0 +19150,21,10,42,0.0 +19150,71,21.5,32,0.0 +19150,22,21,3,0.0 +19150,57,19.5,28,0.0 +19150,63,43.9,10,0.0 +19150,73,15,24,0.0 +19150,40,18.4,12,0.0 +19150,12,38,17,0.0 +19150,26,31.23,37,0.0 +19150,38,263.5,9,0.0 +19150,61,28.5,1,0.0 +19150,44,19.45,22,0.0 +19150,54,7.45,39,0.0 +19150,33,2.5,4,0.0 +19150,46,12,25,0.0 +19150,48,12.75,25,0.0 +19150,3,10,38,0.0 +19150,60,34,47,0.0 +19150,7,30,13,0.0 +19150,13,6,27,0.0 +19150,64,33.25,7,0.0 +19150,70,15,6,0.0 +19150,11,21,20,0.0 +19150,68,12.5,50,0.0 +19150,28,45.6,50,0.0 +19150,23,9,22,0.0 +19150,16,17.45,31,0.0 +19150,66,17,41,0.0 +19150,27,43.9,17,0.0 +19150,39,18,5,0.0 +19150,59,55,26,0.0 +19150,53,32.8,23,0.0 +19150,77,13,13,0.0 +19150,30,25.89,29,0.0 +19150,56,38,36,0.0 +19150,55,24,29,0.0 +19150,1,18,38,0.0 +19150,25,14,12,0.0 +19151,16,17.45,5,0.0 +19151,18,62.5,19,0.0 +19151,7,30,14,0.0 +19151,21,10,12,0.0 +19151,69,36,30,0.0 +19151,62,49.3,39,0.0 +19151,4,22,22,0.0 +19151,14,23.25,12,0.0 +19151,51,53,13,0.0 +19151,50,16.25,11,0.0 +19151,40,18.4,25,0.0 +19151,57,19.5,31,0.0 +19151,47,9.5,28,0.0 +19151,1,18,24,0.0 +19151,73,15,24,0.0 +19151,46,12,25,0.0 +19151,6,25,9,0.0 +19151,19,9.2,41,0.0 +19151,55,24,32,0.0 +19151,15,15.5,21,0.0 +19151,32,32,23,0.0 +19151,31,12.5,22,0.0 +19151,63,43.9,21,0.0 +19151,39,18,36,0.0 +19151,67,14,45,0.0 +19151,71,21.5,22,0.0 +19151,37,26,28,0.0 +19151,64,33.25,35,0.0 +19151,72,34.8,37,0.0 +19151,13,6,33,0.0 +19151,70,15,4,0.0 +19151,22,21,50,0.0 +19151,59,55,48,0.0 +19151,76,18,48,0.0 +19151,10,31,32,0.0 +19151,24,4.5,41,0.0 +19151,35,18,20,0.0 +19151,23,9,16,0.0 +19151,3,10,20,0.0 +19151,74,10,9,0.0 +19151,30,25.89,27,0.0 +19151,60,34,44,0.0 +19151,29,123.79,9,0.0 +19151,12,38,32,0.0 +19151,65,21.05,4,0.0 +19151,33,2.5,47,0.0 +19151,20,81,13,0.0 +19151,2,19,6,0.0 +19151,66,17,43,0.0 +19151,5,21.35,1,0.0 +19151,52,7,13,0.0 +19151,28,45.6,23,0.0 +19151,36,19,19,0.0 +19151,8,40,27,0.0 +19151,77,13,37,0.0 +19151,61,28.5,20,0.0 +19151,43,46,29,0.0 +19151,56,38,38,0.0 +19151,17,39,21,0.0 +19151,38,263.5,12,0.0 +19151,48,12.75,30,0.0 +19151,45,9.5,37,0.0 +19151,41,9.65,30,0.0 +19151,11,21,26,0.0 +19151,58,13.25,10,0.0 +19152,60,34,19,0.0 +19152,73,15,36,0.0 +19152,11,21,34,0.0 +19152,43,46,48,0.0 +19152,23,9,22,0.0 +19152,62,49.3,27,0.0 +19152,70,15,20,0.0 +19152,27,43.9,23,0.0 +19152,72,34.8,6,0.0 +19152,55,24,47,0.0 +19152,39,18,20,0.0 +19152,52,7,50,0.0 +19152,32,32,11,0.0 +19152,8,40,44,0.0 +19152,30,25.89,31,0.0 +19152,59,55,31,0.0 +19152,13,6,23,0.0 +19152,9,97,18,0.0 +19152,15,15.5,45,0.0 +19152,14,23.25,8,0.0 +19152,12,38,23,0.0 +19152,65,21.05,19,0.0 +19152,25,14,42,0.0 +19152,34,14,12,0.0 +19152,61,28.5,31,0.0 +19152,28,45.6,9,0.0 +19152,68,12.5,36,0.0 +19153,9,97,11,0.0 +19153,15,15.5,5,0.0 +19153,6,25,4,0.0 +19153,18,62.5,28,0.0 +19153,1,18,8,0.0 +19153,12,38,47,0.0 +19153,11,21,17,0.0 +19153,7,30,45,0.0 +19153,66,17,36,0.0 +19153,27,43.9,36,0.0 +19153,5,21.35,27,0.0 +19153,55,24,27,0.0 +19153,68,12.5,15,0.0 +19153,50,16.25,2,0.0 +19153,67,14,11,0.0 +19153,10,31,50,0.0 +19153,36,19,5,0.0 +19153,75,7.75,30,0.0 +19153,46,12,28,0.0 +19153,34,14,25,0.0 +19153,17,39,39,0.0 +19153,61,28.5,5,0.0 +19153,29,123.79,38,0.0 +19153,71,21.5,49,0.0 +19153,43,46,4,0.0 +19153,47,9.5,47,0.0 +19153,65,21.05,18,0.0 +19153,49,20,45,0.0 +19153,22,21,12,0.0 +19153,63,43.9,48,0.0 +19153,54,7.45,34,0.0 +19153,51,53,29,0.0 +19153,58,13.25,43,0.0 +19153,62,49.3,36,0.0 +19153,64,33.25,1,0.0 +19153,37,26,9,0.0 +19153,44,19.45,48,0.0 +19153,30,25.89,45,0.0 +19153,21,10,4,0.0 +19153,24,4.5,45,0.0 +19153,25,14,20,0.0 +19153,60,34,36,0.0 +19153,32,32,7,0.0 +19153,41,9.65,36,0.0 +19153,31,12.5,9,0.0 +19153,57,19.5,6,0.0 +19153,73,15,45,0.0 +19153,70,15,24,0.0 +19153,33,2.5,30,0.0 +19153,14,23.25,1,0.0 +19153,8,40,8,0.0 +19153,40,18.4,24,0.0 +19153,3,10,19,0.0 +19153,59,55,38,0.0 +19153,38,263.5,21,0.0 +19154,24,4.5,31,0.0 +19154,7,30,41,0.0 +19154,3,10,24,0.0 +19154,71,21.5,10,0.0 +19154,10,31,37,0.0 +19154,1,18,10,0.0 +19154,69,36,49,0.0 +19154,35,18,9,0.0 +19154,52,7,23,0.0 +19154,51,53,10,0.0 +19154,25,14,37,0.0 +19154,61,28.5,23,0.0 +19154,15,15.5,48,0.0 +19154,53,32.8,13,0.0 +19154,43,46,12,0.0 +19154,23,9,4,0.0 +19154,2,19,9,0.0 +19154,50,16.25,15,0.0 +19154,21,10,3,0.0 +19154,67,14,38,0.0 +19154,8,40,10,0.0 +19154,57,19.5,18,0.0 +19154,11,21,48,0.0 +19154,5,21.35,3,0.0 +19154,32,32,17,0.0 +19154,70,15,49,0.0 +19154,75,7.75,36,0.0 +19154,62,49.3,41,0.0 +19154,73,15,36,0.0 +19154,45,9.5,45,0.0 +19154,49,20,12,0.0 +19154,30,25.89,47,0.0 +19154,31,12.5,8,0.0 +19154,55,24,10,0.0 +19154,72,34.8,48,0.0 +19154,16,17.45,36,0.0 +19154,4,22,40,0.0 +19154,54,7.45,18,0.0 +19154,42,14,5,0.0 +19154,12,38,42,0.0 +19154,46,12,31,0.0 +19154,20,81,44,0.0 +19154,17,39,11,0.0 +19154,47,9.5,2,0.0 +19154,18,62.5,37,0.0 +19154,77,13,47,0.0 +19154,63,43.9,45,0.0 +19154,76,18,47,0.0 +19154,26,31.23,36,0.0 +19154,28,45.6,47,0.0 +19154,48,12.75,23,0.0 +19154,29,123.79,4,0.0 +19155,75,7.75,47,0.0 +19155,34,14,28,0.0 +19155,43,46,49,0.0 +19155,69,36,2,0.0 +19155,45,9.5,48,0.0 +19155,52,7,40,0.0 +19155,72,34.8,36,0.0 +19155,66,17,5,0.0 +19155,74,10,18,0.0 +19155,3,10,5,0.0 +19155,8,40,29,0.0 +19155,11,21,13,0.0 +19155,23,9,1,0.0 +19155,22,21,4,0.0 +19155,38,263.5,48,0.0 +19155,24,4.5,48,0.0 +19155,41,9.65,44,0.0 +19155,28,45.6,31,0.0 +19155,54,7.45,36,0.0 +19155,70,15,45,0.0 +19155,14,23.25,33,0.0 +19155,35,18,45,0.0 +19155,64,33.25,9,0.0 +19155,49,20,22,0.0 +19155,10,31,4,0.0 +19155,58,13.25,32,0.0 +19155,26,31.23,7,0.0 +19155,12,38,33,0.0 +19155,42,14,32,0.0 +19155,31,12.5,23,0.0 +19155,36,19,38,0.0 +19155,57,19.5,22,0.0 +19155,55,24,3,0.0 +19155,33,2.5,35,0.0 +19155,21,10,20,0.0 +19155,39,18,18,0.0 +19155,5,21.35,18,0.0 +19155,67,14,18,0.0 +19155,9,97,36,0.0 +19155,61,28.5,7,0.0 +19155,13,6,46,0.0 +19155,59,55,19,0.0 +19155,4,22,9,0.0 +19155,62,49.3,33,0.0 +19155,46,12,1,0.0 +19155,47,9.5,39,0.0 +19155,48,12.75,10,0.0 +19155,15,15.5,34,0.0 +19155,37,26,10,0.0 +19155,71,21.5,35,0.0 +19155,27,43.9,30,0.0 +19155,76,18,3,0.0 +19155,30,25.89,47,0.0 +19155,53,32.8,39,0.0 +19155,50,16.25,5,0.0 +19155,60,34,11,0.0 +19155,18,62.5,9,0.0 +19155,51,53,37,0.0 +19156,76,18,27,0.0 +19156,75,7.75,26,0.0 +19156,41,9.65,35,0.0 +19156,26,31.23,20,0.0 +19156,2,19,4,0.0 +19156,39,18,20,0.0 +19156,52,7,44,0.0 +19156,63,43.9,30,0.0 +19156,3,10,31,0.0 +19156,73,15,1,0.0 +19156,5,21.35,15,0.0 +19156,37,26,33,0.0 +19156,70,15,19,0.0 +19156,72,34.8,18,0.0 +19156,4,22,11,0.0 +19156,36,19,38,0.0 +19156,9,97,24,0.0 +19156,71,21.5,24,0.0 +19156,69,36,32,0.0 +19156,49,20,16,0.0 +19156,23,9,47,0.0 +19156,16,17.45,42,0.0 +19156,68,12.5,27,0.0 +19156,14,23.25,37,0.0 +19156,60,34,32,0.0 +19156,33,2.5,4,0.0 +19156,35,18,45,0.0 +19156,13,6,43,0.0 +19156,45,9.5,7,0.0 +19156,18,62.5,36,0.0 +19156,62,49.3,40,0.0 +19156,65,21.05,30,0.0 +19156,24,4.5,2,0.0 +19156,12,38,40,0.0 +19156,59,55,23,0.0 +19156,55,24,37,0.0 +19156,58,13.25,35,0.0 +19156,20,81,24,0.0 +19156,64,33.25,11,0.0 +19156,19,9.2,3,0.0 +19156,67,14,20,0.0 +19156,42,14,21,0.0 +19156,53,32.8,1,0.0 +19156,17,39,7,0.0 +19156,30,25.89,10,0.0 +19156,51,53,31,0.0 +19156,48,12.75,14,0.0 +19156,43,46,6,0.0 +19156,32,32,45,0.0 +19156,15,15.5,33,0.0 +19156,47,9.5,10,0.0 +19156,10,31,8,0.0 +19156,61,28.5,20,0.0 +19157,50,16.25,34,0.0 +19157,5,21.35,34,0.0 +19157,43,46,48,0.0 +19157,63,43.9,12,0.0 +19157,77,13,39,0.0 +19157,44,19.45,30,0.0 +19157,8,40,10,0.0 +19157,62,49.3,34,0.0 +19157,15,15.5,1,0.0 +19157,47,9.5,36,0.0 +19157,40,18.4,12,0.0 +19157,54,7.45,9,0.0 +19157,61,28.5,18,0.0 +19157,59,55,42,0.0 +19157,65,21.05,34,0.0 +19157,29,123.79,19,0.0 +19157,67,14,43,0.0 +19157,72,34.8,49,0.0 +19157,74,10,50,0.0 +19157,71,21.5,49,0.0 +19157,2,19,33,0.0 +19157,28,45.6,38,0.0 +19157,26,31.23,16,0.0 +19157,21,10,38,0.0 +19157,45,9.5,31,0.0 +19157,36,19,11,0.0 +19157,75,7.75,24,0.0 +19157,35,18,20,0.0 +19157,70,15,44,0.0 +19157,3,10,28,0.0 +19157,1,18,16,0.0 +19157,27,43.9,30,0.0 +19157,64,33.25,28,0.0 +19157,68,12.5,39,0.0 +19157,17,39,17,0.0 +19157,7,30,48,0.0 +19157,19,9.2,43,0.0 +19157,39,18,37,0.0 +19157,66,17,45,0.0 +19157,76,18,38,0.0 +19157,46,12,29,0.0 +19157,24,4.5,24,0.0 +19157,18,62.5,38,0.0 +19157,49,20,2,0.0 +19157,16,17.45,28,0.0 +19157,42,14,25,0.0 +19157,41,9.65,6,0.0 +19157,34,14,6,0.0 +19157,55,24,17,0.0 +19158,43,46,11,0.0 +19158,57,19.5,48,0.0 +19158,52,7,29,0.0 +19158,22,21,1,0.0 +19158,69,36,35,0.0 +19158,6,25,41,0.0 +19158,29,123.79,3,0.0 +19158,26,31.23,43,0.0 +19158,25,14,16,0.0 +19158,73,15,50,0.0 +19158,36,19,39,0.0 +19158,59,55,38,0.0 +19158,76,18,18,0.0 +19158,72,34.8,19,0.0 +19158,71,21.5,29,0.0 +19158,61,28.5,36,0.0 +19158,27,43.9,20,0.0 +19158,65,21.05,20,0.0 +19158,21,10,24,0.0 +19158,35,18,3,0.0 +19158,44,19.45,35,0.0 +19158,47,9.5,11,0.0 +19158,8,40,26,0.0 +19158,67,14,24,0.0 +19158,46,12,16,0.0 +19158,54,7.45,35,0.0 +19158,11,21,18,0.0 +19158,50,16.25,15,0.0 +19158,55,24,27,0.0 +19158,51,53,20,0.0 +19158,58,13.25,15,0.0 +19158,41,9.65,47,0.0 +19158,48,12.75,2,0.0 +19158,68,12.5,19,0.0 +19158,5,21.35,24,0.0 +19158,7,30,16,0.0 +19158,49,20,13,0.0 +19159,4,22,4,0.0 +19159,54,7.45,26,0.0 +19159,57,19.5,30,0.0 +19159,76,18,33,0.0 +19159,47,9.5,45,0.0 +19159,46,12,5,0.0 +19159,64,33.25,24,0.0 +19159,68,12.5,30,0.0 +19159,34,14,46,0.0 +19159,8,40,47,0.0 +19159,51,53,3,0.0 +19159,75,7.75,38,0.0 +19159,23,9,26,0.0 +19159,71,21.5,6,0.0 +19159,15,15.5,7,0.0 +19159,11,21,31,0.0 +19159,66,17,15,0.0 +19159,28,45.6,3,0.0 +19159,60,34,19,0.0 +19159,48,12.75,32,0.0 +19159,24,4.5,39,0.0 +19159,25,14,18,0.0 +19159,7,30,26,0.0 +19159,5,21.35,27,0.0 +19159,17,39,49,0.0 +19159,52,7,6,0.0 +19159,21,10,30,0.0 +19159,2,19,38,0.0 +19159,72,34.8,32,0.0 +19159,32,32,2,0.0 +19159,74,10,31,0.0 +19159,26,31.23,6,0.0 +19159,36,19,41,0.0 +19159,3,10,11,0.0 +19159,22,21,12,0.0 +19159,55,24,42,0.0 +19159,53,32.8,6,0.0 +19159,40,18.4,34,0.0 +19159,65,21.05,41,0.0 +19159,42,14,25,0.0 +19159,33,2.5,38,0.0 +19159,43,46,17,0.0 +19159,16,17.45,7,0.0 +19159,56,38,44,0.0 +19160,40,18.4,2,0.0 +19160,26,31.23,11,0.0 +19160,61,28.5,42,0.0 +19160,68,12.5,10,0.0 +19160,28,45.6,17,0.0 +19160,73,15,50,0.0 +19160,31,12.5,45,0.0 +19160,50,16.25,22,0.0 +19160,33,2.5,2,0.0 +19160,67,14,19,0.0 +19160,16,17.45,5,0.0 +19160,55,24,41,0.0 +19160,18,62.5,14,0.0 +19160,51,53,8,0.0 +19160,69,36,32,0.0 +19160,23,9,4,0.0 +19160,1,18,46,0.0 +19160,9,97,48,0.0 +19160,32,32,1,0.0 +19160,34,14,23,0.0 +19160,37,26,37,0.0 +19160,39,18,27,0.0 +19160,63,43.9,50,0.0 +19160,57,19.5,13,0.0 +19160,15,15.5,46,0.0 +19160,5,21.35,41,0.0 +19160,29,123.79,49,0.0 +19160,64,33.25,14,0.0 +19160,60,34,11,0.0 +19160,27,43.9,6,0.0 +19160,8,40,1,0.0 +19160,21,10,5,0.0 +19160,13,6,28,0.0 +19160,53,32.8,41,0.0 +19160,7,30,49,0.0 +19160,65,21.05,35,0.0 +19160,54,7.45,45,0.0 +19160,56,38,13,0.0 +19160,6,25,34,0.0 +19160,24,4.5,40,0.0 +19160,74,10,9,0.0 +19160,46,12,15,0.0 +19160,44,19.45,4,0.0 +19161,61,28.5,12,0.0 +19161,4,22,15,0.0 +19161,14,23.25,21,0.0 +19161,77,13,32,0.0 +19161,40,18.4,26,0.0 +19161,57,19.5,29,0.0 +19161,59,55,48,0.0 +19161,71,21.5,50,0.0 +19161,30,25.89,44,0.0 +19162,54,7.45,6,0.0 +19162,73,15,7,0.0 +19162,41,9.65,12,0.0 +19162,58,13.25,6,0.0 +19162,15,15.5,28,0.0 +19162,34,14,43,0.0 +19162,26,31.23,32,0.0 +19162,59,55,9,0.0 +19162,23,9,32,0.0 +19162,75,7.75,2,0.0 +19162,30,25.89,43,0.0 +19162,50,16.25,44,0.0 +19162,13,6,17,0.0 +19162,49,20,45,0.0 +19162,8,40,17,0.0 +19162,77,13,31,0.0 +19162,21,10,34,0.0 +19162,7,30,37,0.0 +19162,16,17.45,9,0.0 +19162,10,31,45,0.0 +19162,64,33.25,29,0.0 +19162,20,81,50,0.0 +19162,27,43.9,10,0.0 +19162,19,9.2,29,0.0 +19163,63,43.9,38,0.0 +19163,35,18,3,0.0 +19163,45,9.5,8,0.0 +19163,6,25,37,0.0 +19163,68,12.5,22,0.0 +19163,47,9.5,49,0.0 +19163,53,32.8,40,0.0 +19163,50,16.25,48,0.0 +19163,74,10,34,0.0 +19163,64,33.25,16,0.0 +19163,75,7.75,40,0.0 +19163,39,18,27,0.0 +19163,43,46,41,0.0 +19163,77,13,14,0.0 +19163,4,22,49,0.0 +19163,20,81,23,0.0 +19163,11,21,21,0.0 +19163,66,17,7,0.0 +19163,49,20,4,0.0 +19163,23,9,31,0.0 +19163,52,7,8,0.0 +19163,46,12,4,0.0 +19163,51,53,30,0.0 +19163,41,9.65,41,0.0 +19163,42,14,23,0.0 +19163,2,19,24,0.0 +19163,29,123.79,27,0.0 +19163,48,12.75,11,0.0 +19163,17,39,8,0.0 +19164,7,30,8,0.0 +19164,42,14,9,0.0 +19164,75,7.75,12,0.0 +19164,33,2.5,1,0.0 +19164,70,15,1,0.0 +19164,16,17.45,45,0.0 +19164,18,62.5,14,0.0 +19164,50,16.25,29,0.0 +19164,28,45.6,10,0.0 +19164,46,12,18,0.0 +19164,67,14,27,0.0 +19164,19,9.2,7,0.0 +19164,53,32.8,49,0.0 +19164,9,97,27,0.0 +19164,20,81,29,0.0 +19164,32,32,13,0.0 +19164,35,18,19,0.0 +19164,64,33.25,47,0.0 +19164,59,55,10,0.0 +19164,8,40,32,0.0 +19164,13,6,49,0.0 +19164,37,26,35,0.0 +19164,68,12.5,12,0.0 +19164,39,18,15,0.0 +19164,48,12.75,12,0.0 +19165,11,21,27,0.0 +19165,6,25,46,0.0 +19165,28,45.6,20,0.0 +19165,45,9.5,38,0.0 +19165,40,18.4,22,0.0 +19165,35,18,50,0.0 +19166,74,10,27,0.0 +19166,61,28.5,19,0.0 +19166,3,10,1,0.0 +19166,6,25,38,0.0 +19166,38,263.5,48,0.0 +19166,43,46,37,0.0 +19166,5,21.35,35,0.0 +19166,55,24,47,0.0 +19166,9,97,31,0.0 +19166,2,19,23,0.0 +19166,14,23.25,20,0.0 +19166,11,21,32,0.0 +19166,28,45.6,48,0.0 +19166,73,15,9,0.0 +19166,7,30,22,0.0 +19166,13,6,24,0.0 +19166,27,43.9,13,0.0 +19166,56,38,36,0.0 +19166,8,40,36,0.0 +19166,44,19.45,21,0.0 +19166,65,21.05,48,0.0 +19166,72,34.8,13,0.0 +19166,29,123.79,2,0.0 +19166,67,14,47,0.0 +19166,15,15.5,24,0.0 +19166,18,62.5,28,0.0 +19166,69,36,12,0.0 +19166,49,20,15,0.0 +19166,42,14,3,0.0 +19166,66,17,47,0.0 +19166,30,25.89,3,0.0 +19166,34,14,33,0.0 +19166,25,14,19,0.0 +19166,54,7.45,45,0.0 +19166,77,13,17,0.0 +19166,46,12,44,0.0 +19166,20,81,7,0.0 +19166,24,4.5,19,0.0 +19166,45,9.5,26,0.0 +19166,57,19.5,31,0.0 +19166,70,15,15,0.0 +19166,62,49.3,21,0.0 +19166,60,34,16,0.0 +19166,17,39,41,0.0 +19166,16,17.45,15,0.0 +19166,4,22,7,0.0 +19166,31,12.5,5,0.0 +19166,75,7.75,6,0.0 +19166,10,31,18,0.0 +19166,26,31.23,46,0.0 +19166,33,2.5,27,0.0 +19166,68,12.5,19,0.0 +19166,1,18,11,0.0 +19166,63,43.9,48,0.0 +19166,58,13.25,21,0.0 +19166,12,38,5,0.0 +19166,53,32.8,5,0.0 +19166,47,9.5,33,0.0 +19166,52,7,8,0.0 +19166,21,10,27,0.0 +19166,36,19,1,0.0 +19166,71,21.5,7,0.0 +19166,51,53,3,0.0 +19166,19,9.2,33,0.0 +19166,39,18,49,0.0 +19166,23,9,10,0.0 +19166,32,32,15,0.0 +19166,22,21,39,0.0 +19166,35,18,44,0.0 +19166,48,12.75,9,0.0 +19166,37,26,30,0.0 +19166,64,33.25,34,0.0 +19166,50,16.25,48,0.0 +19167,4,22,41,0.0 +19167,73,15,1,0.0 +19167,37,26,7,0.0 +19167,12,38,20,0.0 +19167,55,24,21,0.0 +19167,74,10,29,0.0 +19167,47,9.5,45,0.0 +19167,51,53,36,0.0 +19167,27,43.9,34,0.0 +19167,18,62.5,13,0.0 +19167,5,21.35,24,0.0 +19167,67,14,41,0.0 +19167,29,123.79,13,0.0 +19167,68,12.5,5,0.0 +19167,25,14,11,0.0 +19167,23,9,8,0.0 +19167,45,9.5,20,0.0 +19167,61,28.5,3,0.0 +19167,22,21,28,0.0 +19167,62,49.3,8,0.0 +19167,46,12,9,0.0 +19167,63,43.9,25,0.0 +19167,26,31.23,3,0.0 +19167,32,32,41,0.0 +19167,33,2.5,3,0.0 +19167,28,45.6,15,0.0 +19167,14,23.25,34,0.0 +19167,30,25.89,49,0.0 +19167,57,19.5,32,0.0 +19167,64,33.25,10,0.0 +19167,35,18,28,0.0 +19167,54,7.45,23,0.0 +19167,40,18.4,23,0.0 +19167,50,16.25,47,0.0 +19167,39,18,24,0.0 +19167,21,10,31,0.0 +19167,60,34,18,0.0 +19167,24,4.5,22,0.0 +19167,8,40,23,0.0 +19167,52,7,30,0.0 +19167,7,30,12,0.0 +19167,36,19,12,0.0 +19167,69,36,30,0.0 +19167,13,6,26,0.0 +19167,3,10,24,0.0 +19167,11,21,26,0.0 +19167,17,39,40,0.0 +19167,41,9.65,5,0.0 +19167,31,12.5,46,0.0 +19167,66,17,44,0.0 +19167,2,19,19,0.0 +19167,15,15.5,43,0.0 +19167,43,46,44,0.0 +19167,71,21.5,9,0.0 +19167,53,32.8,4,0.0 +19167,1,18,13,0.0 +19168,42,14,43,0.0 +19168,10,31,37,0.0 +19168,23,9,28,0.0 +19168,18,62.5,23,0.0 +19168,40,18.4,24,0.0 +19168,17,39,43,0.0 +19168,70,15,33,0.0 +19168,63,43.9,1,0.0 +19168,41,9.65,26,0.0 +19168,64,33.25,10,0.0 +19168,27,43.9,26,0.0 +19168,58,13.25,7,0.0 +19168,12,38,3,0.0 +19168,16,17.45,22,0.0 +19168,20,81,5,0.0 +19168,62,49.3,49,0.0 +19168,13,6,26,0.0 +19168,4,22,50,0.0 +19168,38,263.5,42,0.0 +19168,7,30,1,0.0 +19168,31,12.5,32,0.0 +19168,51,53,16,0.0 +19168,9,97,30,0.0 +19168,11,21,17,0.0 +19168,30,25.89,20,0.0 +19168,28,45.6,8,0.0 +19168,29,123.79,1,0.0 +19168,75,7.75,38,0.0 +19168,52,7,31,0.0 +19168,65,21.05,18,0.0 +19168,36,19,13,0.0 +19168,22,21,12,0.0 +19168,21,10,36,0.0 +19168,50,16.25,46,0.0 +19168,43,46,38,0.0 +19168,39,18,6,0.0 +19168,15,15.5,8,0.0 +19168,35,18,21,0.0 +19168,48,12.75,28,0.0 +19169,17,39,18,0.0 +19169,68,12.5,38,0.0 +19169,21,10,43,0.0 +19169,46,12,24,0.0 +19169,47,9.5,12,0.0 +19169,44,19.45,35,0.0 +19169,16,17.45,33,0.0 +19169,10,31,30,0.0 +19169,72,34.8,21,0.0 +19169,58,13.25,40,0.0 +19169,1,18,18,0.0 +19169,73,15,10,0.0 +19169,20,81,18,0.0 +19169,69,36,42,0.0 +19169,12,38,5,0.0 +19169,24,4.5,31,0.0 +19169,8,40,6,0.0 +19169,37,26,4,0.0 +19169,9,97,33,0.0 +19169,55,24,4,0.0 +19169,66,17,11,0.0 +19169,7,30,23,0.0 +19169,14,23.25,8,0.0 +19169,40,18.4,5,0.0 +19169,30,25.89,20,0.0 +19169,27,43.9,7,0.0 +19169,22,21,11,0.0 +19169,61,28.5,46,0.0 +19169,45,9.5,5,0.0 +19169,15,15.5,9,0.0 +19169,31,12.5,42,0.0 +19169,54,7.45,45,0.0 +19169,42,14,47,0.0 +19169,70,15,8,0.0 +19169,60,34,8,0.0 +19169,32,32,45,0.0 +19169,35,18,29,0.0 +19169,11,21,3,0.0 +19169,71,21.5,43,0.0 +19169,43,46,26,0.0 +19169,25,14,19,0.0 +19169,26,31.23,16,0.0 +19169,38,263.5,30,0.0 +19169,29,123.79,22,0.0 +19169,50,16.25,18,0.0 +19169,5,21.35,44,0.0 +19169,28,45.6,49,0.0 +19169,65,21.05,28,0.0 +19169,77,13,9,0.0 +19169,59,55,11,0.0 +19169,62,49.3,5,0.0 +19169,63,43.9,38,0.0 +19169,48,12.75,26,0.0 +19169,18,62.5,39,0.0 +19169,23,9,47,0.0 +19169,19,9.2,48,0.0 +19169,51,53,32,0.0 +19169,76,18,15,0.0 +19169,2,19,18,0.0 +19169,13,6,23,0.0 +19169,33,2.5,50,0.0 +19169,64,33.25,5,0.0 +19169,52,7,21,0.0 +19169,74,10,13,0.0 +19169,57,19.5,33,0.0 +19169,75,7.75,34,0.0 +19170,18,62.5,11,0.0 +19170,22,21,10,0.0 +19170,58,13.25,6,0.0 +19170,36,19,34,0.0 +19170,32,32,42,0.0 +19170,46,12,23,0.0 +19170,60,34,12,0.0 +19170,56,38,5,0.0 +19170,23,9,38,0.0 +19170,74,10,45,0.0 +19170,53,32.8,8,0.0 +19170,48,12.75,21,0.0 +19170,14,23.25,50,0.0 +19170,9,97,4,0.0 +19170,67,14,23,0.0 +19170,6,25,29,0.0 +19170,64,33.25,32,0.0 +19170,49,20,32,0.0 +19170,10,31,49,0.0 +19170,39,18,18,0.0 +19170,69,36,27,0.0 +19170,7,30,15,0.0 +19170,47,9.5,39,0.0 +19170,19,9.2,32,0.0 +19170,75,7.75,28,0.0 +19170,34,14,13,0.0 +19170,55,24,27,0.0 +19170,29,123.79,5,0.0 +19170,42,14,23,0.0 +19170,68,12.5,43,0.0 +19170,54,7.45,47,0.0 +19170,21,10,20,0.0 +19170,12,38,15,0.0 +19170,4,22,29,0.0 +19170,20,81,14,0.0 +19170,27,43.9,2,0.0 +19170,24,4.5,9,0.0 +19170,35,18,11,0.0 +19170,70,15,6,0.0 +19170,73,15,20,0.0 +19170,16,17.45,30,0.0 +19170,51,53,24,0.0 +19171,35,18,31,0.0 +19171,25,14,27,0.0 +19171,14,23.25,42,0.0 +19171,6,25,10,0.0 +19171,52,7,22,0.0 +19171,58,13.25,6,0.0 +19171,73,15,27,0.0 +19171,29,123.79,37,0.0 +19171,54,7.45,24,0.0 +19171,33,2.5,48,0.0 +19171,42,14,26,0.0 +19171,12,38,35,0.0 +19171,76,18,26,0.0 +19171,24,4.5,16,0.0 +19171,43,46,31,0.0 +19171,74,10,50,0.0 +19171,11,21,38,0.0 +19171,32,32,40,0.0 +19171,61,28.5,27,0.0 +19171,75,7.75,39,0.0 +19171,3,10,27,0.0 +19171,56,38,20,0.0 +19171,53,32.8,44,0.0 +19171,37,26,43,0.0 +19171,2,19,13,0.0 +19171,44,19.45,16,0.0 +19171,10,31,8,0.0 +19172,13,6,12,0.0 +19172,55,24,28,0.0 +19172,61,28.5,41,0.0 +19172,19,9.2,40,0.0 +19172,14,23.25,8,0.0 +19172,27,43.9,21,0.0 +19172,43,46,47,0.0 +19172,21,10,1,0.0 +19172,50,16.25,41,0.0 +19172,10,31,15,0.0 +19172,63,43.9,10,0.0 +19172,58,13.25,39,0.0 +19172,23,9,44,0.0 +19172,5,21.35,18,0.0 +19172,60,34,5,0.0 +19172,64,33.25,7,0.0 +19172,72,34.8,17,0.0 +19172,12,38,35,0.0 +19172,40,18.4,30,0.0 +19172,22,21,38,0.0 +19172,77,13,30,0.0 +19172,28,45.6,23,0.0 +19172,54,7.45,18,0.0 +19172,18,62.5,30,0.0 +19172,59,55,42,0.0 +19172,24,4.5,8,0.0 +19172,20,81,33,0.0 +19172,32,32,30,0.0 +19172,17,39,44,0.0 +19173,71,21.5,13,0.0 +19173,41,9.65,38,0.0 +19173,49,20,49,0.0 +19173,65,21.05,9,0.0 +19173,64,33.25,48,0.0 +19173,46,12,9,0.0 +19173,22,21,18,0.0 +19173,19,9.2,29,0.0 +19174,10,31,32,0.0 +19174,60,34,23,0.0 +19174,38,263.5,27,0.0 +19174,71,21.5,46,0.0 +19174,9,97,30,0.0 +19174,55,24,7,0.0 +19174,34,14,7,0.0 +19174,72,34.8,32,0.0 +19174,59,55,37,0.0 +19174,50,16.25,17,0.0 +19174,31,12.5,18,0.0 +19174,4,22,29,0.0 +19174,26,31.23,6,0.0 +19174,44,19.45,34,0.0 +19174,70,15,30,0.0 +19174,45,9.5,17,0.0 +19174,63,43.9,49,0.0 +19174,1,18,25,0.0 +19174,30,25.89,15,0.0 +19174,22,21,28,0.0 +19174,19,9.2,47,0.0 +19174,8,40,13,0.0 +19174,61,28.5,34,0.0 +19174,35,18,38,0.0 +19174,66,17,14,0.0 +19174,12,38,49,0.0 +19174,49,20,42,0.0 +19174,56,38,1,0.0 +19174,6,25,21,0.0 +19174,46,12,33,0.0 +19174,40,18.4,20,0.0 +19174,62,49.3,34,0.0 +19174,3,10,7,0.0 +19174,74,10,25,0.0 +19174,25,14,20,0.0 +19174,13,6,37,0.0 +19174,29,123.79,18,0.0 +19174,32,32,42,0.0 +19174,28,45.6,5,0.0 +19174,41,9.65,44,0.0 +19174,24,4.5,9,0.0 +19174,2,19,17,0.0 +19174,23,9,3,0.0 +19174,64,33.25,49,0.0 +19174,77,13,8,0.0 +19174,54,7.45,19,0.0 +19174,18,62.5,22,0.0 +19174,76,18,20,0.0 +19174,7,30,27,0.0 +19174,48,12.75,25,0.0 +19174,5,21.35,31,0.0 +19174,11,21,23,0.0 +19174,14,23.25,12,0.0 +19174,58,13.25,23,0.0 +19174,51,53,1,0.0 +19175,67,14,17,0.0 +19175,75,7.75,26,0.0 +19175,43,46,7,0.0 +19175,37,26,16,0.0 +19175,49,20,47,0.0 +19175,52,7,27,0.0 +19175,55,24,28,0.0 +19175,76,18,18,0.0 +19175,65,21.05,17,0.0 +19175,35,18,42,0.0 +19175,23,9,20,0.0 +19175,33,2.5,11,0.0 +19175,6,25,31,0.0 +19175,63,43.9,7,0.0 +19175,20,81,1,0.0 +19175,10,31,13,0.0 +19175,13,6,30,0.0 +19175,12,38,50,0.0 +19175,69,36,40,0.0 +19175,25,14,37,0.0 +19175,61,28.5,18,0.0 +19175,27,43.9,36,0.0 +19175,26,31.23,23,0.0 +19175,66,17,47,0.0 +19175,54,7.45,50,0.0 +19175,16,17.45,50,0.0 +19175,58,13.25,15,0.0 +19175,28,45.6,46,0.0 +19175,77,13,29,0.0 +19175,29,123.79,9,0.0 +19175,56,38,7,0.0 +19175,42,14,16,0.0 +19175,36,19,2,0.0 +19175,68,12.5,49,0.0 +19175,74,10,11,0.0 +19175,40,18.4,3,0.0 +19175,21,10,50,0.0 +19175,72,34.8,14,0.0 +19175,64,33.25,37,0.0 +19175,59,55,8,0.0 +19175,47,9.5,37,0.0 +19175,46,12,38,0.0 +19175,34,14,9,0.0 +19175,50,16.25,27,0.0 +19175,32,32,44,0.0 +19175,62,49.3,34,0.0 +19175,60,34,18,0.0 +19175,73,15,17,0.0 +19175,7,30,13,0.0 +19175,44,19.45,34,0.0 +19175,8,40,27,0.0 +19175,57,19.5,48,0.0 +19175,14,23.25,40,0.0 +19175,30,25.89,13,0.0 +19175,19,9.2,22,0.0 +19175,51,53,30,0.0 +19175,5,21.35,33,0.0 +19175,38,263.5,25,0.0 +19175,31,12.5,50,0.0 +19175,18,62.5,22,0.0 +19175,22,21,20,0.0 +19175,53,32.8,9,0.0 +19175,9,97,1,0.0 +19175,17,39,14,0.0 +19176,35,18,28,0.0 +19176,48,12.75,37,0.0 +19176,58,13.25,4,0.0 +19176,5,21.35,32,0.0 +19176,68,12.5,22,0.0 +19176,29,123.79,3,0.0 +19176,65,21.05,11,0.0 +19176,16,17.45,26,0.0 +19176,76,18,24,0.0 +19176,61,28.5,23,0.0 +19176,30,25.89,46,0.0 +19176,45,9.5,11,0.0 +19176,41,9.65,44,0.0 +19176,24,4.5,28,0.0 +19176,52,7,2,0.0 +19176,40,18.4,7,0.0 +19176,49,20,31,0.0 +19176,67,14,27,0.0 +19176,39,18,49,0.0 +19176,19,9.2,7,0.0 +19176,37,26,12,0.0 +19176,18,62.5,49,0.0 +19176,62,49.3,3,0.0 +19176,13,6,34,0.0 +19176,64,33.25,30,0.0 +19176,70,15,30,0.0 +19176,47,9.5,21,0.0 +19176,71,21.5,4,0.0 +19176,75,7.75,12,0.0 +19176,8,40,44,0.0 +19176,9,97,40,0.0 +19176,53,32.8,29,0.0 +19176,46,12,39,0.0 +19176,7,30,16,0.0 +19176,6,25,34,0.0 +19176,63,43.9,4,0.0 +19176,2,19,40,0.0 +19176,10,31,50,0.0 +19176,57,19.5,23,0.0 +19176,4,22,10,0.0 +19177,41,9.65,48,0.0 +19177,3,10,16,0.0 +19177,28,45.6,44,0.0 +19177,39,18,17,0.0 +19177,72,34.8,46,0.0 +19177,38,263.5,14,0.0 +19177,24,4.5,32,0.0 +19177,16,17.45,8,0.0 +19177,65,21.05,35,0.0 +19177,29,123.79,49,0.0 +19177,26,31.23,45,0.0 +19177,61,28.5,12,0.0 +19177,36,19,10,0.0 +19177,5,21.35,44,0.0 +19177,7,30,33,0.0 +19177,48,12.75,27,0.0 +19177,43,46,3,0.0 +19177,19,9.2,18,0.0 +19177,40,18.4,48,0.0 +19177,18,62.5,16,0.0 +19177,37,26,20,0.0 +19177,4,22,15,0.0 +19177,8,40,44,0.0 +19177,30,25.89,36,0.0 +19177,34,14,16,0.0 +19177,54,7.45,48,0.0 +19177,60,34,11,0.0 +19177,67,14,30,0.0 +19177,35,18,45,0.0 +19177,2,19,33,0.0 +19177,75,7.75,36,0.0 +19177,13,6,47,0.0 +19177,20,81,43,0.0 +19177,27,43.9,1,0.0 +19177,77,13,6,0.0 +19177,53,32.8,25,0.0 +19177,58,13.25,30,0.0 +19177,57,19.5,24,0.0 +19178,76,18,2,0.0 +19178,45,9.5,10,0.0 +19178,37,26,24,0.0 +19178,42,14,39,0.0 +19178,36,19,46,0.0 +19178,46,12,40,0.0 +19178,68,12.5,26,0.0 +19178,77,13,42,0.0 +19178,54,7.45,19,0.0 +19178,62,49.3,43,0.0 +19178,6,25,46,0.0 +19178,71,21.5,40,0.0 +19178,66,17,4,0.0 +19178,21,10,46,0.0 +19178,18,62.5,15,0.0 +19178,59,55,15,0.0 +19178,56,38,39,0.0 +19178,64,33.25,1,0.0 +19178,69,36,27,0.0 +19178,63,43.9,29,0.0 +19178,10,31,25,0.0 +19178,12,38,30,0.0 +19178,4,22,2,0.0 +19178,70,15,14,0.0 +19178,11,21,37,0.0 +19178,40,18.4,36,0.0 +19178,13,6,22,0.0 +19178,3,10,41,0.0 +19178,65,21.05,33,0.0 +19178,35,18,33,0.0 +19178,5,21.35,46,0.0 +19178,41,9.65,8,0.0 +19178,17,39,9,0.0 +19178,32,32,10,0.0 +19178,48,12.75,23,0.0 +19178,47,9.5,30,0.0 +19179,76,18,37,0.0 +19180,35,18,16,0.0 +19180,74,10,42,0.0 +19180,17,39,13,0.0 +19180,70,15,3,0.0 +19180,44,19.45,22,0.0 +19180,41,9.65,12,0.0 +19180,67,14,36,0.0 +19180,48,12.75,49,0.0 +19180,38,263.5,33,0.0 +19180,40,18.4,8,0.0 +19180,32,32,10,0.0 +19180,69,36,23,0.0 +19180,27,43.9,40,0.0 +19180,46,12,12,0.0 +19180,18,62.5,48,0.0 +19180,24,4.5,30,0.0 +19180,8,40,49,0.0 +19180,15,15.5,14,0.0 +19180,21,10,45,0.0 +19180,12,38,33,0.0 +19180,50,16.25,35,0.0 +19180,14,23.25,10,0.0 +19180,64,33.25,40,0.0 +19180,73,15,46,0.0 +19180,37,26,2,0.0 +19180,31,12.5,21,0.0 +19180,65,21.05,40,0.0 +19180,11,21,24,0.0 +19180,53,32.8,13,0.0 +19180,51,53,24,0.0 +19180,61,28.5,5,0.0 +19181,9,97,24,0.0 +19181,27,43.9,35,0.0 +19181,29,123.79,17,0.0 +19181,34,14,30,0.0 +19181,61,28.5,42,0.0 +19181,11,21,3,0.0 +19181,74,10,24,0.0 +19181,73,15,37,0.0 +19181,48,12.75,9,0.0 +19182,61,28.5,40,0.0 +19182,29,123.79,31,0.0 +19182,22,21,45,0.0 +19182,24,4.5,49,0.0 +19182,15,15.5,11,0.0 +19182,77,13,17,0.0 +19182,12,38,7,0.0 +19182,14,23.25,34,0.0 +19182,30,25.89,27,0.0 +19182,21,10,17,0.0 +19182,71,21.5,31,0.0 +19182,54,7.45,23,0.0 +19182,31,12.5,18,0.0 +19182,55,24,49,0.0 +19182,17,39,23,0.0 +19182,13,6,26,0.0 +19182,52,7,38,0.0 +19182,75,7.75,49,0.0 +19182,49,20,1,0.0 +19182,8,40,5,0.0 +19182,28,45.6,23,0.0 +19182,59,55,14,0.0 +19182,44,19.45,48,0.0 +19182,5,21.35,5,0.0 +19182,34,14,34,0.0 +19182,63,43.9,26,0.0 +19182,26,31.23,23,0.0 +19182,72,34.8,41,0.0 +19182,10,31,44,0.0 +19182,47,9.5,26,0.0 +19182,36,19,24,0.0 +19183,62,49.3,27,0.0 +19183,18,62.5,35,0.0 +19183,58,13.25,3,0.0 +19183,15,15.5,12,0.0 +19183,24,4.5,8,0.0 +19183,29,123.79,17,0.0 +19183,48,12.75,3,0.0 +19183,68,12.5,15,0.0 +19183,44,19.45,44,0.0 +19183,77,13,7,0.0 +19183,45,9.5,2,0.0 +19183,19,9.2,22,0.0 +19183,52,7,3,0.0 +19183,64,33.25,47,0.0 +19183,37,26,46,0.0 +19183,16,17.45,11,0.0 +19183,1,18,37,0.0 +19183,53,32.8,3,0.0 +19183,40,18.4,34,0.0 +19183,13,6,9,0.0 +19183,38,263.5,10,0.0 +19183,21,10,31,0.0 +19183,10,31,7,0.0 +19183,67,14,40,0.0 +19183,75,7.75,45,0.0 +19183,49,20,40,0.0 +19183,20,81,28,0.0 +19183,34,14,20,0.0 +19183,32,32,25,0.0 +19183,54,7.45,46,0.0 +19183,50,16.25,9,0.0 +19183,70,15,2,0.0 +19183,17,39,6,0.0 +19183,31,12.5,8,0.0 +19183,47,9.5,49,0.0 +19184,59,55,25,0.0 +19184,44,19.45,37,0.0 +19184,35,18,4,0.0 +19184,65,21.05,29,0.0 +19184,72,34.8,49,0.0 +19184,41,9.65,17,0.0 +19184,22,21,44,0.0 +19184,17,39,40,0.0 +19184,69,36,17,0.0 +19184,62,49.3,33,0.0 +19184,12,38,24,0.0 +19184,28,45.6,42,0.0 +19184,47,9.5,5,0.0 +19184,63,43.9,8,0.0 +19184,33,2.5,11,0.0 +19184,9,97,50,0.0 +19184,14,23.25,27,0.0 +19185,43,46,45,0.0 +19185,45,9.5,17,0.0 +19185,5,21.35,28,0.0 +19185,63,43.9,12,0.0 +19185,58,13.25,37,0.0 +19185,75,7.75,20,0.0 +19185,77,13,50,0.0 +19185,69,36,18,0.0 +19185,31,12.5,6,0.0 +19185,49,20,27,0.0 +19185,20,81,40,0.0 +19185,57,19.5,20,0.0 +19185,18,62.5,35,0.0 +19185,40,18.4,49,0.0 +19185,10,31,35,0.0 +19185,22,21,47,0.0 +19185,67,14,50,0.0 +19185,50,16.25,12,0.0 +19185,7,30,11,0.0 +19185,1,18,17,0.0 +19185,9,97,43,0.0 +19185,33,2.5,6,0.0 +19185,61,28.5,32,0.0 +19185,8,40,20,0.0 +19185,12,38,45,0.0 +19185,37,26,27,0.0 +19185,74,10,15,0.0 +19185,68,12.5,33,0.0 +19185,71,21.5,32,0.0 +19185,48,12.75,9,0.0 +19185,47,9.5,4,0.0 +19185,21,10,36,0.0 +19185,27,43.9,26,0.0 +19185,29,123.79,31,0.0 +19185,66,17,1,0.0 +19185,35,18,47,0.0 +19185,14,23.25,45,0.0 +19185,16,17.45,41,0.0 +19185,2,19,3,0.0 +19185,39,18,31,0.0 +19185,59,55,46,0.0 +19185,73,15,8,0.0 +19185,53,32.8,37,0.0 +19185,24,4.5,37,0.0 +19185,26,31.23,40,0.0 +19185,55,24,35,0.0 +19185,19,9.2,2,0.0 +19185,34,14,16,0.0 +19185,56,38,13,0.0 +19185,6,25,49,0.0 +19185,15,15.5,15,0.0 +19185,11,21,30,0.0 +19185,32,32,1,0.0 +19185,13,6,27,0.0 +19185,30,25.89,16,0.0 +19185,54,7.45,7,0.0 +19185,70,15,32,0.0 +19185,62,49.3,4,0.0 +19185,38,263.5,18,0.0 +19185,64,33.25,25,0.0 +19185,52,7,41,0.0 +19185,44,19.45,31,0.0 +19185,25,14,18,0.0 +19185,72,34.8,45,0.0 +19185,17,39,50,0.0 +19185,41,9.65,46,0.0 +19185,60,34,26,0.0 +19185,76,18,24,0.0 +19185,51,53,46,0.0 +19185,46,12,28,0.0 +19185,3,10,15,0.0 +19185,28,45.6,36,0.0 +19185,42,14,28,0.0 +19186,46,12,38,0.0 +19186,11,21,25,0.0 +19186,54,7.45,47,0.0 +19186,18,62.5,14,0.0 +19186,9,97,16,0.0 +19186,2,19,44,0.0 +19186,62,49.3,32,0.0 +19186,25,14,22,0.0 +19186,12,38,41,0.0 +19186,70,15,24,0.0 +19186,15,15.5,22,0.0 +19186,68,12.5,7,0.0 +19186,8,40,12,0.0 +19186,65,21.05,50,0.0 +19186,35,18,24,0.0 +19186,37,26,34,0.0 +19186,4,22,19,0.0 +19186,28,45.6,34,0.0 +19186,36,19,43,0.0 +19186,23,9,30,0.0 +19186,47,9.5,27,0.0 +19186,64,33.25,24,0.0 +19186,76,18,11,0.0 +19186,45,9.5,32,0.0 +19186,49,20,25,0.0 +19186,10,31,36,0.0 +19186,41,9.65,38,0.0 +19186,1,18,14,0.0 +19186,14,23.25,36,0.0 +19186,16,17.45,45,0.0 +19186,22,21,3,0.0 +19186,53,32.8,9,0.0 +19186,27,43.9,3,0.0 +19186,20,81,35,0.0 +19186,73,15,2,0.0 +19186,48,12.75,30,0.0 +19186,66,17,35,0.0 +19186,30,25.89,34,0.0 +19186,74,10,41,0.0 +19186,63,43.9,38,0.0 +19186,7,30,27,0.0 +19186,39,18,15,0.0 +19186,69,36,6,0.0 +19186,51,53,27,0.0 +19186,57,19.5,34,0.0 +19186,77,13,1,0.0 +19186,42,14,19,0.0 +19186,55,24,49,0.0 +19186,38,263.5,44,0.0 +19186,61,28.5,47,0.0 +19186,59,55,35,0.0 +19187,57,19.5,13,0.0 +19187,31,12.5,27,0.0 +19187,67,14,21,0.0 +19187,75,7.75,16,0.0 +19187,33,2.5,8,0.0 +19187,56,38,24,0.0 +19188,72,34.8,36,0.0 +19188,20,81,43,0.0 +19188,8,40,33,0.0 +19188,25,14,14,0.0 +19188,64,33.25,9,0.0 +19188,58,13.25,28,0.0 +19188,57,19.5,2,0.0 +19188,46,12,10,0.0 +19188,18,62.5,8,0.0 +19188,17,39,16,0.0 +19188,53,32.8,28,0.0 +19188,22,21,37,0.0 +19188,19,9.2,39,0.0 +19188,10,31,14,0.0 +19188,62,49.3,30,0.0 +19188,66,17,5,0.0 +19188,51,53,40,0.0 +19188,7,30,20,0.0 +19188,42,14,13,0.0 +19188,56,38,10,0.0 +19188,15,15.5,28,0.0 +19188,29,123.79,42,0.0 +19188,26,31.23,42,0.0 +19188,39,18,40,0.0 +19188,9,97,18,0.0 +19188,32,32,40,0.0 +19188,35,18,24,0.0 +19188,70,15,45,0.0 +19188,71,21.5,26,0.0 +19188,45,9.5,36,0.0 +19188,69,36,17,0.0 +19188,47,9.5,41,0.0 +19188,13,6,14,0.0 +19188,75,7.75,45,0.0 +19188,23,9,50,0.0 +19188,1,18,35,0.0 +19188,65,21.05,8,0.0 +19188,33,2.5,3,0.0 +19188,37,26,45,0.0 +19188,34,14,49,0.0 +19188,6,25,18,0.0 +19188,27,43.9,11,0.0 +19188,16,17.45,38,0.0 +19188,50,16.25,50,0.0 +19188,2,19,8,0.0 +19188,61,28.5,20,0.0 +19188,60,34,25,0.0 +19188,28,45.6,1,0.0 +19188,68,12.5,43,0.0 +19188,77,13,19,0.0 +19188,31,12.5,47,0.0 +19188,63,43.9,34,0.0 +19188,59,55,28,0.0 +19188,12,38,6,0.0 +19188,52,7,3,0.0 +19188,24,4.5,28,0.0 +19188,21,10,31,0.0 +19188,43,46,33,0.0 +19188,14,23.25,21,0.0 +19188,11,21,29,0.0 +19188,76,18,32,0.0 +19188,54,7.45,45,0.0 +19188,4,22,33,0.0 +19188,73,15,39,0.0 +19188,55,24,21,0.0 +19189,22,21,7,0.0 +19189,4,22,1,0.0 +19189,53,32.8,41,0.0 +19189,1,18,25,0.0 +19189,64,33.25,39,0.0 +19189,31,12.5,14,0.0 +19189,9,97,5,0.0 +19189,73,15,6,0.0 +19189,21,10,7,0.0 +19189,7,30,47,0.0 +19189,61,28.5,21,0.0 +19190,21,10,29,0.0 +19190,16,17.45,26,0.0 +19190,55,24,3,0.0 +19190,8,40,18,0.0 +19190,13,6,15,0.0 +19190,20,81,46,0.0 +19190,11,21,10,0.0 +19190,29,123.79,33,0.0 +19190,49,20,37,0.0 +19190,1,18,18,0.0 +19190,14,23.25,24,0.0 +19190,47,9.5,39,0.0 +19190,68,12.5,12,0.0 +19190,31,12.5,12,0.0 +19190,77,13,24,0.0 +19190,9,97,22,0.0 +19190,36,19,39,0.0 +19190,62,49.3,23,0.0 +19190,51,53,13,0.0 +19190,46,12,46,0.0 +19190,66,17,42,0.0 +19190,42,14,7,0.0 +19190,24,4.5,29,0.0 +19190,34,14,26,0.0 +19190,25,14,20,0.0 +19190,41,9.65,31,0.0 +19190,50,16.25,5,0.0 +19190,54,7.45,36,0.0 +19190,75,7.75,50,0.0 +19190,64,33.25,5,0.0 +19190,70,15,12,0.0 +19190,23,9,19,0.0 +19190,73,15,31,0.0 +19190,40,18.4,35,0.0 +19190,35,18,36,0.0 +19190,74,10,28,0.0 +19190,60,34,37,0.0 +19190,4,22,5,0.0 +19190,37,26,36,0.0 +19190,58,13.25,22,0.0 +19190,3,10,31,0.0 +19190,76,18,12,0.0 +19191,23,9,44,0.0 +19191,6,25,44,0.0 +19191,55,24,5,0.0 +19191,35,18,26,0.0 +19191,69,36,11,0.0 +19191,8,40,28,0.0 +19192,60,34,16,0.0 +19192,7,30,21,0.0 +19192,58,13.25,12,0.0 +19192,69,36,10,0.0 +19192,50,16.25,32,0.0 +19192,25,14,18,0.0 +19192,74,10,27,0.0 +19192,12,38,35,0.0 +19192,39,18,49,0.0 +19192,73,15,27,0.0 +19192,6,25,45,0.0 +19192,43,46,42,0.0 +19192,4,22,33,0.0 +19192,8,40,42,0.0 +19192,21,10,20,0.0 +19192,36,19,22,0.0 +19192,26,31.23,21,0.0 +19192,66,17,43,0.0 +19192,16,17.45,50,0.0 +19192,54,7.45,47,0.0 +19192,24,4.5,42,0.0 +19192,2,19,31,0.0 +19192,48,12.75,30,0.0 +19192,1,18,34,0.0 +19192,59,55,29,0.0 +19192,65,21.05,3,0.0 +19192,27,43.9,21,0.0 +19192,22,21,19,0.0 +19192,23,9,21,0.0 +19192,35,18,41,0.0 +19192,71,21.5,14,0.0 +19192,13,6,42,0.0 +19192,32,32,42,0.0 +19192,75,7.75,8,0.0 +19192,33,2.5,10,0.0 +19192,20,81,19,0.0 +19192,11,21,13,0.0 +19192,38,263.5,27,0.0 +19192,77,13,49,0.0 +19192,72,34.8,39,0.0 +19192,29,123.79,26,0.0 +19192,62,49.3,8,0.0 +19192,15,15.5,25,0.0 +19192,70,15,5,0.0 +19192,52,7,44,0.0 +19192,63,43.9,21,0.0 +19192,40,18.4,13,0.0 +19192,14,23.25,22,0.0 +19192,49,20,7,0.0 +19192,41,9.65,15,0.0 +19192,53,32.8,10,0.0 +19192,18,62.5,47,0.0 +19192,56,38,34,0.0 +19192,47,9.5,45,0.0 +19192,17,39,35,0.0 +19192,19,9.2,27,0.0 +19192,10,31,7,0.0 +19192,28,45.6,35,0.0 +19192,5,21.35,8,0.0 +19192,57,19.5,38,0.0 +19192,37,26,41,0.0 +19192,46,12,27,0.0 +19192,67,14,44,0.0 +19192,51,53,34,0.0 +19192,30,25.89,26,0.0 +19192,76,18,2,0.0 +19192,64,33.25,11,0.0 +19192,34,14,24,0.0 +19192,9,97,42,0.0 +19192,3,10,19,0.0 +19192,61,28.5,2,0.0 +19192,45,9.5,36,0.0 +19193,33,2.5,41,0.0 +19193,51,53,48,0.0 +19193,25,14,46,0.0 +19193,18,62.5,38,0.0 +19193,44,19.45,9,0.0 +19193,74,10,26,0.0 +19193,54,7.45,34,0.0 +19193,21,10,48,0.0 +19193,57,19.5,27,0.0 +19193,24,4.5,4,0.0 +19193,19,9.2,28,0.0 +19193,20,81,14,0.0 +19193,23,9,35,0.0 +19193,58,13.25,24,0.0 +19193,56,38,24,0.0 +19194,52,7,25,0.0 +19194,45,9.5,36,0.0 +19194,46,12,48,0.0 +19194,21,10,34,0.0 +19194,42,14,31,0.0 +19194,36,19,33,0.0 +19194,1,18,7,0.0 +19194,64,33.25,47,0.0 +19194,40,18.4,38,0.0 +19194,72,34.8,48,0.0 +19194,50,16.25,46,0.0 +19194,74,10,12,0.0 +19194,67,14,27,0.0 +19194,18,62.5,35,0.0 +19194,25,14,4,0.0 +19194,32,32,11,0.0 +19194,23,9,31,0.0 +19194,49,20,30,0.0 +19194,69,36,49,0.0 +19194,6,25,39,0.0 +19194,63,43.9,10,0.0 +19194,57,19.5,36,0.0 +19194,59,55,20,0.0 +19194,71,21.5,11,0.0 +19194,16,17.45,42,0.0 +19194,37,26,9,0.0 +19194,29,123.79,8,0.0 +19194,47,9.5,8,0.0 +19194,51,53,17,0.0 +19194,33,2.5,48,0.0 +19194,13,6,1,0.0 +19194,11,21,13,0.0 +19194,34,14,19,0.0 +19194,41,9.65,32,0.0 +19194,12,38,7,0.0 +19194,10,31,32,0.0 +19194,61,28.5,19,0.0 +19194,60,34,28,0.0 +19194,75,7.75,38,0.0 +19194,58,13.25,2,0.0 +19194,48,12.75,15,0.0 +19194,7,30,17,0.0 +19194,24,4.5,32,0.0 +19194,27,43.9,24,0.0 +19194,66,17,24,0.0 +19194,3,10,29,0.0 +19194,65,21.05,12,0.0 +19194,26,31.23,17,0.0 +19194,4,22,17,0.0 +19194,56,38,8,0.0 +19194,17,39,35,0.0 +19194,44,19.45,43,0.0 +19194,43,46,35,0.0 +19194,68,12.5,25,0.0 +19194,38,263.5,42,0.0 +19194,55,24,16,0.0 +19194,39,18,12,0.0 +19194,5,21.35,45,0.0 +19194,15,15.5,4,0.0 +19194,54,7.45,42,0.0 +19194,8,40,40,0.0 +19194,9,97,50,0.0 +19194,14,23.25,3,0.0 +19195,29,123.79,28,0.0 +19195,8,40,45,0.0 +19195,34,14,18,0.0 +19195,46,12,8,0.0 +19195,65,21.05,27,0.0 +19195,14,23.25,42,0.0 +19195,75,7.75,29,0.0 +19195,10,31,41,0.0 +19195,73,15,49,0.0 +19195,48,12.75,37,0.0 +19195,57,19.5,34,0.0 +19195,28,45.6,10,0.0 +19195,19,9.2,10,0.0 +19195,44,19.45,39,0.0 +19195,54,7.45,34,0.0 +19195,72,34.8,47,0.0 +19195,71,21.5,32,0.0 +19195,11,21,32,0.0 +19195,37,26,1,0.0 +19195,9,97,49,0.0 +19195,47,9.5,50,0.0 +19195,41,9.65,39,0.0 +19195,30,25.89,22,0.0 +19195,43,46,12,0.0 +19195,50,16.25,30,0.0 +19195,31,12.5,3,0.0 +19195,12,38,4,0.0 +19195,38,263.5,11,0.0 +19195,5,21.35,21,0.0 +19195,7,30,7,0.0 +19195,21,10,9,0.0 +19195,42,14,46,0.0 +19195,56,38,50,0.0 +19195,63,43.9,22,0.0 +19195,59,55,10,0.0 +19195,52,7,27,0.0 +19195,36,19,26,0.0 +19195,55,24,15,0.0 +19195,66,17,28,0.0 +19195,26,31.23,2,0.0 +19195,49,20,29,0.0 +19195,3,10,25,0.0 +19195,35,18,35,0.0 +19195,22,21,35,0.0 +19195,32,32,34,0.0 +19195,68,12.5,25,0.0 +19195,1,18,7,0.0 +19195,69,36,23,0.0 +19195,70,15,46,0.0 +19195,16,17.45,48,0.0 +19195,25,14,20,0.0 +19195,51,53,11,0.0 +19195,2,19,13,0.0 +19195,23,9,15,0.0 +19195,40,18.4,35,0.0 +19195,60,34,44,0.0 +19195,61,28.5,18,0.0 +19195,33,2.5,50,0.0 +19195,67,14,26,0.0 +19195,6,25,15,0.0 +19195,39,18,4,0.0 +19195,4,22,11,0.0 +19195,74,10,15,0.0 +19195,20,81,21,0.0 +19195,27,43.9,50,0.0 +19195,64,33.25,37,0.0 +19196,28,45.6,44,0.0 +19196,32,32,4,0.0 +19196,45,9.5,14,0.0 +19196,16,17.45,35,0.0 +19196,69,36,47,0.0 +19196,26,31.23,42,0.0 +19196,50,16.25,13,0.0 +19196,7,30,23,0.0 +19196,2,19,37,0.0 +19196,24,4.5,14,0.0 +19196,9,97,43,0.0 +19196,17,39,14,0.0 +19196,77,13,11,0.0 +19196,35,18,31,0.0 +19196,5,21.35,32,0.0 +19196,43,46,4,0.0 +19196,22,21,6,0.0 +19196,1,18,28,0.0 +19196,46,12,25,0.0 +19196,18,62.5,33,0.0 +19196,23,9,4,0.0 +19196,41,9.65,1,0.0 +19196,70,15,40,0.0 +19196,67,14,14,0.0 +19196,71,21.5,48,0.0 +19196,12,38,37,0.0 +19196,56,38,10,0.0 +19196,63,43.9,2,0.0 +19196,31,12.5,7,0.0 +19196,55,24,42,0.0 +19196,40,18.4,30,0.0 +19196,49,20,15,0.0 +19196,62,49.3,49,0.0 +19196,33,2.5,50,0.0 +19196,42,14,12,0.0 +19196,4,22,36,0.0 +19196,53,32.8,21,0.0 +19196,64,33.25,36,0.0 +19196,60,34,49,0.0 +19196,13,6,23,0.0 +19196,37,26,44,0.0 +19196,15,15.5,10,0.0 +19197,16,17.45,20,0.0 +19197,1,18,35,0.0 +19197,58,13.25,40,0.0 +19197,68,12.5,10,0.0 +19197,75,7.75,46,0.0 +19197,4,22,9,0.0 +19197,20,81,40,0.0 +19197,30,25.89,2,0.0 +19197,69,36,43,0.0 +19197,21,10,21,0.0 +19197,12,38,39,0.0 +19197,17,39,32,0.0 +19197,26,31.23,28,0.0 +19197,32,32,45,0.0 +19197,18,62.5,11,0.0 +19197,37,26,9,0.0 +19197,59,55,44,0.0 +19197,24,4.5,16,0.0 +19197,10,31,45,0.0 +19197,38,263.5,48,0.0 +19197,13,6,6,0.0 +19197,25,14,19,0.0 +19197,70,15,6,0.0 +19197,64,33.25,3,0.0 +19197,9,97,28,0.0 +19197,36,19,29,0.0 +19197,29,123.79,29,0.0 +19197,51,53,13,0.0 +19197,53,32.8,25,0.0 +19197,62,49.3,12,0.0 +19197,76,18,30,0.0 +19197,63,43.9,4,0.0 +19197,45,9.5,33,0.0 +19197,74,10,50,0.0 +19197,7,30,1,0.0 +19197,48,12.75,10,0.0 +19197,11,21,42,0.0 +19197,2,19,24,0.0 +19197,73,15,36,0.0 +19197,23,9,22,0.0 +19197,61,28.5,9,0.0 +19197,46,12,45,0.0 +19197,35,18,25,0.0 +19197,66,17,31,0.0 +19197,43,46,46,0.0 +19197,15,15.5,24,0.0 +19197,54,7.45,40,0.0 +19197,67,14,26,0.0 +19197,6,25,42,0.0 +19198,18,62.5,28,0.0 +19198,6,25,22,0.0 +19198,37,26,36,0.0 +19198,31,12.5,44,0.0 +19198,51,53,26,0.0 +19198,38,263.5,35,0.0 +19198,67,14,49,0.0 +19198,49,20,4,0.0 +19198,29,123.79,47,0.0 +19198,23,9,35,0.0 +19198,34,14,39,0.0 +19198,9,97,22,0.0 +19198,47,9.5,24,0.0 +19198,54,7.45,47,0.0 +19198,45,9.5,1,0.0 +19198,12,38,18,0.0 +19198,42,14,35,0.0 +19198,17,39,18,0.0 +19198,74,10,44,0.0 +19198,32,32,36,0.0 +19198,62,49.3,19,0.0 +19198,22,21,8,0.0 +19198,65,21.05,50,0.0 +19198,21,10,10,0.0 +19198,36,19,20,0.0 +19198,24,4.5,32,0.0 +19198,43,46,24,0.0 +19198,59,55,47,0.0 +19198,15,15.5,33,0.0 +19198,28,45.6,47,0.0 +19198,33,2.5,48,0.0 +19198,73,15,42,0.0 +19198,53,32.8,35,0.0 +19198,40,18.4,29,0.0 +19198,39,18,13,0.0 +19198,76,18,2,0.0 +19198,16,17.45,21,0.0 +19198,60,34,24,0.0 +19198,68,12.5,48,0.0 +19198,1,18,5,0.0 +19198,69,36,13,0.0 +19198,7,30,14,0.0 +19198,66,17,45,0.0 +19198,64,33.25,16,0.0 +19198,20,81,1,0.0 +19198,50,16.25,9,0.0 +19198,61,28.5,13,0.0 +19198,63,43.9,4,0.0 +19198,41,9.65,8,0.0 +19198,2,19,38,0.0 +19198,3,10,25,0.0 +19198,75,7.75,9,0.0 +19198,56,38,49,0.0 +19198,25,14,31,0.0 +19198,5,21.35,4,0.0 +19198,14,23.25,15,0.0 +19198,46,12,32,0.0 +19198,48,12.75,15,0.0 +19198,11,21,14,0.0 +19198,35,18,44,0.0 +19198,8,40,35,0.0 +19198,57,19.5,50,0.0 +19198,72,34.8,11,0.0 +19198,19,9.2,18,0.0 +19198,10,31,25,0.0 +19198,70,15,13,0.0 +19199,22,21,35,0.0 +19199,17,39,7,0.0 +19199,4,22,15,0.0 +19199,34,14,25,0.0 +19199,50,16.25,20,0.0 +19199,54,7.45,10,0.0 +19199,25,14,6,0.0 +19199,27,43.9,18,0.0 +19199,70,15,36,0.0 +19199,63,43.9,6,0.0 +19199,19,9.2,37,0.0 +19199,8,40,43,0.0 +19199,13,6,44,0.0 +19199,3,10,33,0.0 +19199,18,62.5,15,0.0 +19199,14,23.25,49,0.0 +19199,38,263.5,3,0.0 +19199,64,33.25,45,0.0 +19199,41,9.65,8,0.0 +19199,58,13.25,39,0.0 +19199,57,19.5,17,0.0 +19199,75,7.75,47,0.0 +19199,30,25.89,8,0.0 +19199,53,32.8,21,0.0 +19199,69,36,47,0.0 +19199,76,18,12,0.0 +19199,40,18.4,31,0.0 +19199,46,12,10,0.0 +19199,62,49.3,5,0.0 +19199,5,21.35,7,0.0 +19199,2,19,3,0.0 +19199,37,26,25,0.0 +19199,15,15.5,20,0.0 +19199,10,31,45,0.0 +19199,42,14,5,0.0 +19199,65,21.05,47,0.0 +19199,1,18,20,0.0 +19199,31,12.5,12,0.0 +19199,9,97,8,0.0 +19199,47,9.5,39,0.0 +19199,72,34.8,28,0.0 +19199,7,30,29,0.0 +19199,26,31.23,16,0.0 +19199,11,21,4,0.0 +19199,20,81,28,0.0 +19199,36,19,25,0.0 +19199,35,18,29,0.0 +19199,29,123.79,46,0.0 +19199,77,13,38,0.0 +19199,48,12.75,18,0.0 +19199,33,2.5,35,0.0 +19199,59,55,39,0.0 +19199,28,45.6,42,0.0 +19199,61,28.5,1,0.0 +19199,44,19.45,44,0.0 +19199,68,12.5,27,0.0 +19200,74,10,4,0.0 +19200,44,19.45,45,0.0 +19200,23,9,24,0.0 +19200,20,81,38,0.0 +19200,14,23.25,38,0.0 +19200,76,18,29,0.0 +19200,64,33.25,17,0.0 +19200,52,7,32,0.0 +19200,1,18,14,0.0 +19200,70,15,30,0.0 +19200,16,17.45,34,0.0 +19200,62,49.3,44,0.0 +19200,60,34,29,0.0 +19200,3,10,21,0.0 +19200,65,21.05,18,0.0 +19200,6,25,5,0.0 +19200,50,16.25,18,0.0 +19200,5,21.35,46,0.0 +19200,10,31,6,0.0 +19200,15,15.5,25,0.0 +19200,69,36,36,0.0 +19200,56,38,8,0.0 +19200,40,18.4,9,0.0 +19200,41,9.65,43,0.0 +19200,25,14,43,0.0 +19200,57,19.5,42,0.0 +19200,61,28.5,13,0.0 +19200,30,25.89,1,0.0 +19200,53,32.8,1,0.0 +19200,18,62.5,29,0.0 +19200,72,34.8,48,0.0 +19200,27,43.9,37,0.0 +19200,24,4.5,38,0.0 +19200,59,55,43,0.0 +19200,11,21,15,0.0 +19200,63,43.9,15,0.0 +19200,28,45.6,38,0.0 +19200,55,24,10,0.0 +19200,4,22,20,0.0 +19200,39,18,49,0.0 +19200,17,39,2,0.0 +19200,12,38,16,0.0 +19200,48,12.75,46,0.0 +19200,35,18,46,0.0 +19200,38,263.5,15,0.0 +19200,31,12.5,16,0.0 +19200,19,9.2,25,0.0 +19200,9,97,37,0.0 +19200,66,17,40,0.0 +19201,15,15.5,46,0.0 +19201,44,19.45,18,0.0 +19201,63,43.9,49,0.0 +19201,66,17,19,0.0 +19201,5,21.35,34,0.0 +19201,47,9.5,8,0.0 +19201,57,19.5,1,0.0 +19201,39,18,42,0.0 +19201,74,10,50,0.0 +19201,31,12.5,46,0.0 +19201,71,21.5,41,0.0 +19201,36,19,5,0.0 +19201,21,10,40,0.0 +19201,72,34.8,39,0.0 +19201,65,21.05,2,0.0 +19201,62,49.3,26,0.0 +19201,77,13,8,0.0 +19201,10,31,35,0.0 +19201,49,20,29,0.0 +19201,52,7,29,0.0 +19201,8,40,48,0.0 +19201,28,45.6,46,0.0 +19201,3,10,45,0.0 +19202,1,18,33,0.0 +19202,50,16.25,38,0.0 +19202,5,21.35,43,0.0 +19202,42,14,9,0.0 +19202,66,17,36,0.0 +19202,18,62.5,45,0.0 +19202,65,21.05,32,0.0 +19202,24,4.5,26,0.0 +19202,29,123.79,1,0.0 +19202,77,13,50,0.0 +19202,15,15.5,15,0.0 +19202,19,9.2,48,0.0 +19202,74,10,8,0.0 +19202,47,9.5,30,0.0 +19202,56,38,36,0.0 +19202,10,31,16,0.0 +19202,20,81,31,0.0 +19202,46,12,1,0.0 +19202,9,97,30,0.0 +19202,6,25,12,0.0 +19202,71,21.5,9,0.0 +19202,55,24,19,0.0 +19202,40,18.4,34,0.0 +19202,49,20,4,0.0 +19202,53,32.8,2,0.0 +19202,11,21,21,0.0 +19202,22,21,49,0.0 +19202,30,25.89,39,0.0 +19202,38,263.5,31,0.0 +19202,67,14,1,0.0 +19202,2,19,8,0.0 +19202,14,23.25,8,0.0 +19202,25,14,45,0.0 +19202,62,49.3,16,0.0 +19202,60,34,14,0.0 +19202,4,22,44,0.0 +19202,69,36,30,0.0 +19202,32,32,13,0.0 +19202,34,14,49,0.0 +19202,45,9.5,13,0.0 +19202,21,10,41,0.0 +19202,39,18,27,0.0 +19202,43,46,13,0.0 +19202,72,34.8,11,0.0 +19202,75,7.75,3,0.0 +19202,12,38,8,0.0 +19202,48,12.75,14,0.0 +19202,13,6,48,0.0 +19202,52,7,18,0.0 +19202,41,9.65,5,0.0 +19202,27,43.9,15,0.0 +19202,28,45.6,3,0.0 +19202,31,12.5,39,0.0 +19202,26,31.23,47,0.0 +19202,57,19.5,37,0.0 +19202,51,53,4,0.0 +19202,16,17.45,1,0.0 +19202,63,43.9,6,0.0 +19202,68,12.5,31,0.0 +19202,76,18,1,0.0 +19202,7,30,50,0.0 +19202,23,9,5,0.0 +19202,37,26,37,0.0 +19202,70,15,41,0.0 +19202,33,2.5,31,0.0 +19203,45,9.5,12,0.0 +19203,29,123.79,35,0.0 +19203,42,14,28,0.0 +19203,7,30,45,0.0 +19203,35,18,1,0.0 +19203,23,9,25,0.0 +19203,55,24,48,0.0 +19203,54,7.45,40,0.0 +19203,74,10,44,0.0 +19203,36,19,17,0.0 +19203,70,15,22,0.0 +19203,19,9.2,38,0.0 +19203,17,39,1,0.0 +19203,16,17.45,14,0.0 +19203,44,19.45,24,0.0 +19203,77,13,42,0.0 +19203,76,18,48,0.0 +19203,25,14,4,0.0 +19203,47,9.5,10,0.0 +19203,75,7.75,47,0.0 +19203,67,14,46,0.0 +19203,60,34,6,0.0 +19203,57,19.5,34,0.0 +19203,26,31.23,48,0.0 +19204,4,22,39,0.0 +19204,32,32,32,0.0 +19204,57,19.5,32,0.0 +19204,43,46,26,0.0 +19204,54,7.45,40,0.0 +19204,56,38,5,0.0 +19204,8,40,44,0.0 +19204,33,2.5,25,0.0 +19204,77,13,40,0.0 +19204,64,33.25,37,0.0 +19204,21,10,17,0.0 +19204,38,263.5,1,0.0 +19204,27,43.9,39,0.0 +19204,10,31,23,0.0 +19204,1,18,4,0.0 +19204,66,17,32,0.0 +19204,29,123.79,19,0.0 +19204,51,53,17,0.0 +19204,15,15.5,28,0.0 +19204,70,15,16,0.0 +19204,58,13.25,30,0.0 +19204,22,21,16,0.0 +19204,59,55,45,0.0 +19204,49,20,23,0.0 +19204,36,19,32,0.0 +19204,53,32.8,15,0.0 +19204,12,38,27,0.0 +19204,76,18,2,0.0 +19204,45,9.5,8,0.0 +19204,24,4.5,8,0.0 +19204,34,14,27,0.0 +19204,26,31.23,22,0.0 +19204,35,18,3,0.0 +19204,46,12,46,0.0 +19204,47,9.5,22,0.0 +19204,7,30,33,0.0 +19204,2,19,13,0.0 +19204,30,25.89,36,0.0 +19204,68,12.5,4,0.0 +19204,14,23.25,13,0.0 +19204,19,9.2,40,0.0 +19204,16,17.45,49,0.0 +19204,52,7,6,0.0 +19204,55,24,14,0.0 +19204,62,49.3,39,0.0 +19204,63,43.9,27,0.0 +19204,74,10,32,0.0 +19204,3,10,25,0.0 +19204,11,21,34,0.0 +19204,40,18.4,33,0.0 +19204,37,26,6,0.0 +19204,48,12.75,44,0.0 +19204,72,34.8,15,0.0 +19204,60,34,28,0.0 +19204,71,21.5,46,0.0 +19204,25,14,15,0.0 +19204,69,36,29,0.0 +19205,73,15,18,0.0 +19205,71,21.5,29,0.0 +19205,74,10,10,0.0 +19205,10,31,16,0.0 +19205,28,45.6,15,0.0 +19205,31,12.5,47,0.0 +19205,60,34,34,0.0 +19205,44,19.45,45,0.0 +19205,48,12.75,24,0.0 +19205,58,13.25,20,0.0 +19205,23,9,50,0.0 +19205,25,14,36,0.0 +19205,34,14,41,0.0 +19205,36,19,28,0.0 +19205,75,7.75,5,0.0 +19205,30,25.89,12,0.0 +19205,43,46,11,0.0 +19205,72,34.8,4,0.0 +19205,65,21.05,6,0.0 +19205,41,9.65,46,0.0 +19205,5,21.35,35,0.0 +19205,56,38,23,0.0 +19205,47,9.5,43,0.0 +19205,21,10,5,0.0 +19205,40,18.4,5,0.0 +19205,19,9.2,28,0.0 +19205,76,18,1,0.0 +19205,18,62.5,1,0.0 +19205,54,7.45,5,0.0 +19205,17,39,24,0.0 +19205,29,123.79,6,0.0 +19205,61,28.5,41,0.0 +19205,46,12,43,0.0 +19205,27,43.9,10,0.0 +19205,66,17,5,0.0 +19205,26,31.23,45,0.0 +19205,4,22,10,0.0 +19205,13,6,15,0.0 +19205,45,9.5,29,0.0 +19205,59,55,46,0.0 +19205,8,40,14,0.0 +19205,49,20,6,0.0 +19205,3,10,35,0.0 +19205,52,7,16,0.0 +19205,6,25,44,0.0 +19205,22,21,16,0.0 +19205,39,18,18,0.0 +19205,38,263.5,43,0.0 +19205,35,18,30,0.0 +19205,55,24,29,0.0 +19205,1,18,16,0.0 +19205,64,33.25,33,0.0 +19205,62,49.3,17,0.0 +19205,7,30,48,0.0 +19205,50,16.25,39,0.0 +19205,70,15,23,0.0 +19205,69,36,13,0.0 +19205,12,38,48,0.0 +19205,16,17.45,23,0.0 +19205,57,19.5,29,0.0 +19205,24,4.5,32,0.0 +19205,11,21,20,0.0 +19206,31,12.5,48,0.0 +19206,72,34.8,1,0.0 +19206,25,14,31,0.0 +19206,12,38,44,0.0 +19206,63,43.9,44,0.0 +19206,46,12,29,0.0 +19206,34,14,16,0.0 +19206,39,18,44,0.0 +19206,21,10,9,0.0 +19206,56,38,22,0.0 +19206,28,45.6,3,0.0 +19206,13,6,21,0.0 +19206,4,22,38,0.0 +19206,45,9.5,42,0.0 +19206,5,21.35,5,0.0 +19206,35,18,35,0.0 +19206,43,46,16,0.0 +19206,37,26,41,0.0 +19206,10,31,48,0.0 +19206,16,17.45,14,0.0 +19206,6,25,38,0.0 +19206,76,18,45,0.0 +19206,59,55,24,0.0 +19206,67,14,5,0.0 +19206,68,12.5,1,0.0 +19206,51,53,38,0.0 +19206,32,32,43,0.0 +19206,19,9.2,21,0.0 +19206,74,10,25,0.0 +19206,3,10,4,0.0 +19206,52,7,19,0.0 +19206,20,81,36,0.0 +19206,42,14,20,0.0 +19206,75,7.75,27,0.0 +19206,7,30,5,0.0 +19206,29,123.79,24,0.0 +19206,27,43.9,46,0.0 +19206,9,97,3,0.0 +19206,15,15.5,31,0.0 +19206,2,19,9,0.0 +19206,44,19.45,34,0.0 +19206,66,17,39,0.0 +19206,58,13.25,11,0.0 +19206,48,12.75,36,0.0 +19206,47,9.5,5,0.0 +19206,24,4.5,41,0.0 +19206,18,62.5,47,0.0 +19206,64,33.25,3,0.0 +19206,49,20,12,0.0 +19206,77,13,24,0.0 +19206,11,21,39,0.0 +19206,71,21.5,17,0.0 +19206,60,34,11,0.0 +19206,61,28.5,33,0.0 +19206,41,9.65,15,0.0 +19206,53,32.8,35,0.0 +19206,40,18.4,45,0.0 +19206,8,40,37,0.0 +19206,57,19.5,6,0.0 +19206,73,15,35,0.0 +19206,36,19,5,0.0 +19206,17,39,35,0.0 +19206,38,263.5,14,0.0 +19206,54,7.45,32,0.0 +19206,65,21.05,5,0.0 +19206,33,2.5,25,0.0 +19206,30,25.89,7,0.0 +19206,14,23.25,29,0.0 +19206,23,9,27,0.0 +19206,1,18,16,0.0 +19206,55,24,2,0.0 +19206,22,21,39,0.0 +19206,50,16.25,1,0.0 +19206,26,31.23,2,0.0 +19206,62,49.3,25,0.0 +19206,70,15,4,0.0 +19207,35,18,36,0.0 +19207,62,49.3,7,0.0 +19207,28,45.6,33,0.0 +19207,12,38,37,0.0 +19207,27,43.9,37,0.0 +19207,71,21.5,38,0.0 +19207,24,4.5,33,0.0 +19207,5,21.35,14,0.0 +19207,40,18.4,39,0.0 +19207,38,263.5,20,0.0 +19207,8,40,28,0.0 +19207,61,28.5,7,0.0 +19207,7,30,30,0.0 +19207,54,7.45,26,0.0 +19207,36,19,33,0.0 +19207,43,46,39,0.0 +19207,10,31,14,0.0 +19207,23,9,23,0.0 +19207,32,32,7,0.0 +19207,39,18,48,0.0 +19207,15,15.5,38,0.0 +19207,70,15,16,0.0 +19207,72,34.8,34,0.0 +19207,52,7,13,0.0 +19207,22,21,2,0.0 +19207,3,10,49,0.0 +19207,41,9.65,23,0.0 +19207,59,55,34,0.0 +19207,64,33.25,38,0.0 +19208,3,10,14,0.0 +19208,27,43.9,15,0.0 +19208,8,40,20,0.0 +19208,67,14,50,0.0 +19208,49,20,9,0.0 +19208,1,18,41,0.0 +19208,47,9.5,8,0.0 +19208,66,17,20,0.0 +19208,7,30,43,0.0 +19208,75,7.75,35,0.0 +19208,53,32.8,26,0.0 +19208,69,36,46,0.0 +19208,50,16.25,47,0.0 +19208,34,14,29,0.0 +19208,15,15.5,42,0.0 +19208,5,21.35,39,0.0 +19208,10,31,38,0.0 +19208,13,6,37,0.0 +19208,56,38,31,0.0 +19208,2,19,5,0.0 +19208,25,14,16,0.0 +19208,68,12.5,41,0.0 +19208,31,12.5,37,0.0 +19208,24,4.5,25,0.0 +19208,64,33.25,33,0.0 +19208,6,25,43,0.0 +19208,18,62.5,6,0.0 +19208,76,18,48,0.0 +19208,32,32,8,0.0 +19208,23,9,10,0.0 +19208,19,9.2,23,0.0 +19208,26,31.23,14,0.0 +19208,77,13,2,0.0 +19208,28,45.6,27,0.0 +19208,60,34,47,0.0 +19208,17,39,17,0.0 +19208,63,43.9,48,0.0 +19208,45,9.5,3,0.0 +19208,40,18.4,48,0.0 +19208,43,46,48,0.0 +19208,16,17.45,20,0.0 +19208,29,123.79,19,0.0 +19208,51,53,24,0.0 +19208,74,10,4,0.0 +19208,35,18,26,0.0 +19208,44,19.45,30,0.0 +19208,41,9.65,23,0.0 +19208,38,263.5,30,0.0 +19208,22,21,10,0.0 +19208,14,23.25,6,0.0 +19208,52,7,22,0.0 +19208,57,19.5,35,0.0 +19208,4,22,12,0.0 +19209,17,39,25,0.0 +19209,32,32,18,0.0 +19209,77,13,28,0.0 +19209,50,16.25,44,0.0 +19209,24,4.5,16,0.0 +19209,44,19.45,33,0.0 +19209,56,38,21,0.0 +19209,19,9.2,17,0.0 +19209,29,123.79,50,0.0 +19209,37,26,28,0.0 +19209,5,21.35,50,0.0 +19209,25,14,36,0.0 +19209,6,25,18,0.0 +19209,40,18.4,16,0.0 +19209,3,10,45,0.0 +19209,21,10,25,0.0 +19209,2,19,36,0.0 +19209,7,30,16,0.0 +19209,18,62.5,44,0.0 +19210,27,43.9,25,0.0 +19210,66,17,30,0.0 +19210,33,2.5,14,0.0 +19210,65,21.05,17,0.0 +19210,29,123.79,18,0.0 +19210,12,38,48,0.0 +19210,60,34,16,0.0 +19210,59,55,35,0.0 +19210,67,14,10,0.0 +19210,44,19.45,44,0.0 +19210,15,15.5,15,0.0 +19210,62,49.3,47,0.0 +19210,19,9.2,37,0.0 +19210,1,18,18,0.0 +19210,31,12.5,24,0.0 +19210,76,18,14,0.0 +19210,18,62.5,32,0.0 +19210,51,53,32,0.0 +19210,5,21.35,9,0.0 +19210,74,10,30,0.0 +19210,58,13.25,19,0.0 +19210,47,9.5,41,0.0 +19210,23,9,13,0.0 +19211,69,36,10,0.0 +19211,31,12.5,5,0.0 +19211,36,19,13,0.0 +19211,6,25,43,0.0 +19211,47,9.5,38,0.0 +19211,11,21,22,0.0 +19211,9,97,49,0.0 +19211,20,81,18,0.0 +19211,23,9,14,0.0 +19211,51,53,13,0.0 +19211,21,10,12,0.0 +19211,5,21.35,21,0.0 +19211,1,18,38,0.0 +19211,35,18,17,0.0 +19211,48,12.75,28,0.0 +19211,66,17,20,0.0 +19211,27,43.9,48,0.0 +19211,17,39,34,0.0 +19211,62,49.3,38,0.0 +19211,3,10,11,0.0 +19211,38,263.5,2,0.0 +19211,59,55,19,0.0 +19211,70,15,25,0.0 +19211,57,19.5,13,0.0 +19211,33,2.5,13,0.0 +19211,77,13,26,0.0 +19211,60,34,17,0.0 +19211,15,15.5,41,0.0 +19211,54,7.45,34,0.0 +19211,37,26,18,0.0 +19211,74,10,11,0.0 +19211,25,14,47,0.0 +19211,61,28.5,1,0.0 +19211,65,21.05,42,0.0 +19211,56,38,43,0.0 +19211,73,15,18,0.0 +19211,39,18,23,0.0 +19211,43,46,5,0.0 +19211,29,123.79,4,0.0 +19211,7,30,44,0.0 +19211,12,38,7,0.0 +19211,71,21.5,2,0.0 +19211,63,43.9,46,0.0 +19211,34,14,46,0.0 +19211,26,31.23,50,0.0 +19211,76,18,44,0.0 +19211,46,12,11,0.0 +19211,49,20,7,0.0 +19211,30,25.89,34,0.0 +19211,75,7.75,24,0.0 +19211,68,12.5,46,0.0 +19211,72,34.8,48,0.0 +19211,52,7,18,0.0 +19211,28,45.6,46,0.0 +19211,18,62.5,49,0.0 +19211,50,16.25,41,0.0 +19211,19,9.2,16,0.0 +19211,64,33.25,11,0.0 +19211,67,14,38,0.0 +19211,44,19.45,31,0.0 +19211,2,19,27,0.0 +19211,58,13.25,1,0.0 +19211,8,40,14,0.0 +19212,71,21.5,37,0.0 +19212,39,18,19,0.0 +19212,70,15,33,0.0 +19212,6,25,9,0.0 +19212,47,9.5,17,0.0 +19212,73,15,43,0.0 +19212,29,123.79,47,0.0 +19212,2,19,43,0.0 +19212,38,263.5,15,0.0 +19212,48,12.75,9,0.0 +19212,69,36,23,0.0 +19212,8,40,47,0.0 +19212,74,10,22,0.0 +19212,52,7,21,0.0 +19212,65,21.05,7,0.0 +19212,41,9.65,4,0.0 +19212,11,21,24,0.0 +19212,66,17,12,0.0 +19212,19,9.2,42,0.0 +19212,32,32,36,0.0 +19212,76,18,23,0.0 +19212,37,26,45,0.0 +19212,72,34.8,44,0.0 +19212,25,14,40,0.0 +19212,58,13.25,6,0.0 +19212,40,18.4,44,0.0 +19212,9,97,49,0.0 +19212,64,33.25,19,0.0 +19212,59,55,47,0.0 +19212,63,43.9,3,0.0 +19212,44,19.45,7,0.0 +19212,35,18,14,0.0 +19212,13,6,18,0.0 +19212,22,21,41,0.0 +19212,54,7.45,25,0.0 +19212,61,28.5,15,0.0 +19212,56,38,30,0.0 +19212,34,14,11,0.0 +19212,62,49.3,46,0.0 +19212,15,15.5,44,0.0 +19212,77,13,26,0.0 +19212,31,12.5,34,0.0 +19212,36,19,30,0.0 +19212,27,43.9,45,0.0 +19212,7,30,7,0.0 +19212,20,81,40,0.0 +19212,68,12.5,22,0.0 +19212,42,14,38,0.0 +19212,51,53,27,0.0 +19212,49,20,45,0.0 +19212,24,4.5,11,0.0 +19212,57,19.5,3,0.0 +19212,75,7.75,17,0.0 +19212,50,16.25,49,0.0 +19212,67,14,42,0.0 +19212,28,45.6,4,0.0 +19212,55,24,17,0.0 +19212,26,31.23,26,0.0 +19212,21,10,32,0.0 +19212,46,12,15,0.0 +19212,16,17.45,49,0.0 +19212,5,21.35,49,0.0 +19212,18,62.5,1,0.0 +19212,10,31,49,0.0 +19213,8,40,15,0.0 +19213,23,9,20,0.0 +19213,71,21.5,26,0.0 +19213,73,15,1,0.0 +19213,28,45.6,4,0.0 +19213,29,123.79,15,0.0 +19213,39,18,16,0.0 +19213,56,38,27,0.0 +19213,68,12.5,36,0.0 +19213,3,10,16,0.0 +19213,75,7.75,4,0.0 +19213,67,14,37,0.0 +19213,37,26,19,0.0 +19213,74,10,42,0.0 +19213,38,263.5,1,0.0 +19213,51,53,48,0.0 +19213,66,17,50,0.0 +19213,18,62.5,40,0.0 +19213,76,18,16,0.0 +19213,7,30,17,0.0 +19213,31,12.5,19,0.0 +19213,46,12,20,0.0 +19213,33,2.5,30,0.0 +19213,65,21.05,16,0.0 +19213,41,9.65,33,0.0 +19213,19,9.2,43,0.0 +19213,20,81,37,0.0 +19213,57,19.5,47,0.0 +19213,63,43.9,32,0.0 +19213,25,14,16,0.0 +19213,14,23.25,25,0.0 +19213,48,12.75,1,0.0 +19213,22,21,43,0.0 +19213,36,19,32,0.0 +19213,45,9.5,43,0.0 +19213,69,36,16,0.0 +19213,64,33.25,5,0.0 +19213,34,14,42,0.0 +19213,47,9.5,41,0.0 +19213,53,32.8,4,0.0 +19213,16,17.45,19,0.0 +19213,11,21,48,0.0 +19213,35,18,17,0.0 +19214,64,33.25,20,0.0 +19214,30,25.89,28,0.0 +19214,1,18,13,0.0 +19214,60,34,1,0.0 +19214,69,36,19,0.0 +19214,14,23.25,34,0.0 +19214,4,22,14,0.0 +19214,71,21.5,44,0.0 +19214,16,17.45,46,0.0 +19214,34,14,22,0.0 +19214,6,25,26,0.0 +19214,20,81,46,0.0 +19214,17,39,23,0.0 +19214,2,19,19,0.0 +19214,37,26,47,0.0 +19214,41,9.65,32,0.0 +19214,65,21.05,19,0.0 +19214,61,28.5,35,0.0 +19214,52,7,48,0.0 +19214,24,4.5,1,0.0 +19214,47,9.5,43,0.0 +19214,46,12,44,0.0 +19214,48,12.75,24,0.0 +19214,42,14,22,0.0 +19214,51,53,1,0.0 +19214,11,21,19,0.0 +19214,59,55,15,0.0 +19214,27,43.9,38,0.0 +19214,26,31.23,16,0.0 +19214,32,32,22,0.0 +19214,55,24,24,0.0 +19214,77,13,18,0.0 +19214,36,19,36,0.0 +19214,38,263.5,37,0.0 +19214,73,15,38,0.0 +19214,68,12.5,32,0.0 +19214,76,18,12,0.0 +19214,39,18,3,0.0 +19214,22,21,29,0.0 +19214,15,15.5,11,0.0 +19214,43,46,11,0.0 +19214,9,97,26,0.0 +19214,72,34.8,35,0.0 +19214,28,45.6,22,0.0 +19214,53,32.8,46,0.0 +19214,19,9.2,46,0.0 +19214,10,31,34,0.0 +19214,8,40,6,0.0 +19214,58,13.25,33,0.0 +19214,67,14,2,0.0 +19214,50,16.25,3,0.0 +19214,70,15,47,0.0 +19214,63,43.9,21,0.0 +19214,45,9.5,41,0.0 +19214,21,10,43,0.0 +19214,23,9,35,0.0 +19214,40,18.4,15,0.0 +19214,7,30,26,0.0 +19214,31,12.5,10,0.0 +19214,75,7.75,35,0.0 +19214,35,18,12,0.0 +19214,62,49.3,6,0.0 +19214,29,123.79,39,0.0 +19214,12,38,11,0.0 +19214,3,10,1,0.0 +19214,49,20,26,0.0 +19214,44,19.45,25,0.0 +19214,33,2.5,31,0.0 +19214,56,38,44,0.0 +19214,13,6,24,0.0 +19214,74,10,30,0.0 +19214,57,19.5,17,0.0 +19214,18,62.5,42,0.0 +19214,5,21.35,13,0.0 +19214,25,14,25,0.0 +19215,27,43.9,16,0.0 +19215,31,12.5,14,0.0 +19215,57,19.5,22,0.0 +19215,59,55,15,0.0 +19215,48,12.75,34,0.0 +19215,24,4.5,36,0.0 +19215,36,19,11,0.0 +19215,20,81,2,0.0 +19215,75,7.75,34,0.0 +19215,69,36,7,0.0 +19215,16,17.45,6,0.0 +19215,22,21,46,0.0 +19215,5,21.35,48,0.0 +19216,63,43.9,22,0.0 +19216,53,32.8,18,0.0 +19216,75,7.75,3,0.0 +19216,15,15.5,50,0.0 +19216,5,21.35,9,0.0 +19216,46,12,7,0.0 +19216,33,2.5,20,0.0 +19216,4,22,19,0.0 +19216,48,12.75,11,0.0 +19216,55,24,23,0.0 +19216,74,10,2,0.0 +19216,49,20,18,0.0 +19216,62,49.3,43,0.0 +19216,22,21,37,0.0 +19216,20,81,32,0.0 +19216,64,33.25,10,0.0 +19216,26,31.23,15,0.0 +19216,73,15,36,0.0 +19217,30,25.89,19,0.0 +19217,59,55,32,0.0 +19217,56,38,29,0.0 +19217,26,31.23,14,0.0 +19217,43,46,24,0.0 +19217,63,43.9,44,0.0 +19217,10,31,38,0.0 +19217,11,21,29,0.0 +19217,77,13,16,0.0 +19217,58,13.25,34,0.0 +19217,25,14,50,0.0 +19217,73,15,37,0.0 +19217,32,32,26,0.0 +19217,5,21.35,29,0.0 +19217,3,10,18,0.0 +19217,15,15.5,21,0.0 +19217,67,14,43,0.0 +19217,13,6,8,0.0 +19217,65,21.05,37,0.0 +19217,19,9.2,22,0.0 +19217,9,97,31,0.0 +19217,48,12.75,12,0.0 +19217,66,17,16,0.0 +19217,53,32.8,45,0.0 +19217,49,20,36,0.0 +19217,22,21,34,0.0 +19217,33,2.5,20,0.0 +19217,45,9.5,19,0.0 +19217,12,38,18,0.0 +19217,70,15,31,0.0 +19217,28,45.6,25,0.0 +19217,62,49.3,3,0.0 +19217,7,30,36,0.0 +19217,34,14,15,0.0 +19217,2,19,9,0.0 +19217,37,26,31,0.0 +19217,44,19.45,21,0.0 +19217,74,10,48,0.0 +19217,23,9,2,0.0 +19217,35,18,15,0.0 +19217,6,25,26,0.0 +19217,1,18,44,0.0 +19217,57,19.5,43,0.0 +19217,24,4.5,16,0.0 +19217,41,9.65,37,0.0 +19217,21,10,40,0.0 +19217,29,123.79,48,0.0 +19218,65,21.05,9,0.0 +19218,28,45.6,4,0.0 +19218,73,15,2,0.0 +19218,38,263.5,23,0.0 +19218,42,14,18,0.0 +19218,69,36,33,0.0 +19218,57,19.5,10,0.0 +19219,22,21,16,0.0 +19219,24,4.5,13,0.0 +19219,71,21.5,46,0.0 +19220,21,10,30,0.0 +19220,49,20,27,0.0 +19220,57,19.5,6,0.0 +19220,9,97,31,0.0 +19220,7,30,24,0.0 +19220,30,25.89,1,0.0 +19220,77,13,9,0.0 +19220,42,14,27,0.0 +19220,50,16.25,49,0.0 +19220,76,18,48,0.0 +19220,67,14,8,0.0 +19220,35,18,21,0.0 +19220,75,7.75,4,0.0 +19220,68,12.5,18,0.0 +19220,2,19,30,0.0 +19220,15,15.5,33,0.0 +19220,23,9,12,0.0 +19220,3,10,10,0.0 +19220,74,10,32,0.0 +19220,59,55,44,0.0 +19220,41,9.65,8,0.0 +19220,12,38,38,0.0 +19220,40,18.4,22,0.0 +19220,43,46,15,0.0 +19220,26,31.23,1,0.0 +19221,31,12.5,38,0.0 +19221,44,19.45,40,0.0 +19221,71,21.5,5,0.0 +19221,62,49.3,9,0.0 +19221,55,24,48,0.0 +19221,47,9.5,29,0.0 +19221,42,14,14,0.0 +19221,58,13.25,24,0.0 +19221,2,19,19,0.0 +19221,36,19,28,0.0 +19221,3,10,40,0.0 +19221,24,4.5,33,0.0 +19221,17,39,40,0.0 +19221,70,15,31,0.0 +19221,9,97,34,0.0 +19221,40,18.4,7,0.0 +19221,76,18,13,0.0 +19221,21,10,1,0.0 +19221,56,38,40,0.0 +19221,25,14,46,0.0 +19221,72,34.8,34,0.0 +19221,59,55,11,0.0 +19221,26,31.23,13,0.0 +19221,45,9.5,46,0.0 +19221,38,263.5,35,0.0 +19221,64,33.25,24,0.0 +19221,57,19.5,41,0.0 +19221,43,46,3,0.0 +19221,51,53,35,0.0 +19221,60,34,16,0.0 +19221,7,30,1,0.0 +19221,67,14,17,0.0 +19221,27,43.9,28,0.0 +19221,48,12.75,23,0.0 +19221,16,17.45,35,0.0 +19221,1,18,37,0.0 +19221,22,21,22,0.0 +19221,61,28.5,30,0.0 +19221,65,21.05,29,0.0 +19221,49,20,8,0.0 +19221,73,15,46,0.0 +19221,23,9,22,0.0 +19221,35,18,12,0.0 +19221,46,12,40,0.0 +19221,63,43.9,19,0.0 +19221,10,31,18,0.0 +19222,60,34,1,0.0 +19222,67,14,36,0.0 +19222,42,14,28,0.0 +19222,20,81,24,0.0 +19222,62,49.3,48,0.0 +19222,16,17.45,9,0.0 +19222,75,7.75,44,0.0 +19222,2,19,15,0.0 +19222,3,10,31,0.0 +19222,64,33.25,25,0.0 +19222,74,10,38,0.0 +19222,33,2.5,50,0.0 +19222,77,13,47,0.0 +19222,49,20,6,0.0 +19222,66,17,37,0.0 +19222,22,21,25,0.0 +19222,46,12,4,0.0 +19222,17,39,12,0.0 +19222,37,26,35,0.0 +19222,58,13.25,49,0.0 +19222,18,62.5,5,0.0 +19222,41,9.65,50,0.0 +19222,7,30,37,0.0 +19222,70,15,41,0.0 +19222,14,23.25,21,0.0 +19222,21,10,23,0.0 +19222,27,43.9,13,0.0 +19222,6,25,20,0.0 +19222,72,34.8,7,0.0 +19223,25,14,30,0.0 +19223,43,46,44,0.0 +19223,39,18,24,0.0 +19223,20,81,2,0.0 +19223,10,31,23,0.0 +19224,67,14,37,0.0 +19224,76,18,35,0.0 +19224,62,49.3,24,0.0 +19224,43,46,43,0.0 +19224,65,21.05,24,0.0 +19224,35,18,44,0.0 +19224,26,31.23,42,0.0 +19224,66,17,33,0.0 +19224,51,53,8,0.0 +19224,13,6,22,0.0 +19224,15,15.5,30,0.0 +19224,25,14,22,0.0 +19224,54,7.45,41,0.0 +19224,18,62.5,50,0.0 +19224,28,45.6,27,0.0 +19224,71,21.5,11,0.0 +19224,11,21,50,0.0 +19224,39,18,47,0.0 +19224,53,32.8,15,0.0 +19224,7,30,4,0.0 +19224,6,25,4,0.0 +19224,33,2.5,17,0.0 +19224,69,36,27,0.0 +19224,34,14,10,0.0 +19224,60,34,29,0.0 +19224,5,21.35,14,0.0 +19224,17,39,1,0.0 +19224,31,12.5,19,0.0 +19224,19,9.2,43,0.0 +19224,75,7.75,9,0.0 +19224,32,32,16,0.0 +19224,3,10,31,0.0 +19224,24,4.5,19,0.0 +19224,14,23.25,39,0.0 +19224,49,20,18,0.0 +19224,20,81,14,0.0 +19224,29,123.79,33,0.0 +19224,77,13,34,0.0 +19224,56,38,31,0.0 +19224,63,43.9,26,0.0 +19224,73,15,38,0.0 +19224,27,43.9,49,0.0 +19224,74,10,22,0.0 +19224,8,40,41,0.0 +19225,55,24,47,0.0 +19225,71,21.5,17,0.0 +19225,30,25.89,26,0.0 +19225,32,32,32,0.0 +19225,44,19.45,42,0.0 +19225,63,43.9,47,0.0 +19225,60,34,49,0.0 +19225,25,14,27,0.0 +19225,47,9.5,25,0.0 +19225,16,17.45,15,0.0 +19225,8,40,29,0.0 +19225,41,9.65,38,0.0 +19225,27,43.9,37,0.0 +19225,50,16.25,5,0.0 +19225,49,20,34,0.0 +19225,14,23.25,15,0.0 +19225,33,2.5,20,0.0 +19226,54,7.45,23,0.0 +19226,9,97,36,0.0 +19226,26,31.23,39,0.0 +19226,40,18.4,27,0.0 +19226,42,14,4,0.0 +19226,3,10,12,0.0 +19226,29,123.79,5,0.0 +19226,52,7,49,0.0 +19226,68,12.5,28,0.0 +19226,11,21,1,0.0 +19226,16,17.45,9,0.0 +19226,77,13,5,0.0 +19226,4,22,32,0.0 +19226,69,36,35,0.0 +19226,51,53,45,0.0 +19226,58,13.25,16,0.0 +19226,12,38,36,0.0 +19226,20,81,26,0.0 +19226,57,19.5,25,0.0 +19226,75,7.75,49,0.0 +19226,39,18,11,0.0 +19226,49,20,24,0.0 +19226,28,45.6,14,0.0 +19226,43,46,43,0.0 +19226,1,18,18,0.0 +19226,19,9.2,21,0.0 +19226,41,9.65,18,0.0 +19226,45,9.5,8,0.0 +19226,32,32,32,0.0 +19226,74,10,22,0.0 +19226,24,4.5,46,0.0 +19226,18,62.5,20,0.0 +19226,70,15,28,0.0 +19227,38,263.5,24,0.0 +19227,9,97,11,0.0 +19227,48,12.75,26,0.0 +19227,27,43.9,1,0.0 +19227,32,32,33,0.0 +19227,26,31.23,13,0.0 +19227,68,12.5,2,0.0 +19227,63,43.9,12,0.0 +19228,27,43.9,32,0.0 +19228,8,40,30,0.0 +19228,39,18,31,0.0 +19228,65,21.05,20,0.0 +19228,67,14,49,0.0 +19228,38,263.5,47,0.0 +19228,66,17,24,0.0 +19228,37,26,6,0.0 +19228,60,34,25,0.0 +19228,20,81,23,0.0 +19228,59,55,7,0.0 +19228,70,15,43,0.0 +19228,11,21,29,0.0 +19228,5,21.35,39,0.0 +19228,18,62.5,21,0.0 +19228,64,33.25,35,0.0 +19228,54,7.45,44,0.0 +19228,41,9.65,24,0.0 +19228,47,9.5,2,0.0 +19228,61,28.5,11,0.0 +19228,26,31.23,42,0.0 +19228,7,30,1,0.0 +19228,10,31,42,0.0 +19228,31,12.5,28,0.0 +19228,36,19,17,0.0 +19228,57,19.5,3,0.0 +19228,6,25,35,0.0 +19228,12,38,36,0.0 +19228,19,9.2,44,0.0 +19228,44,19.45,2,0.0 +19228,24,4.5,28,0.0 +19228,55,24,21,0.0 +19228,34,14,31,0.0 +19228,32,32,36,0.0 +19228,51,53,11,0.0 +19228,76,18,46,0.0 +19228,30,25.89,16,0.0 +19228,16,17.45,45,0.0 +19228,29,123.79,46,0.0 +19228,42,14,18,0.0 +19228,71,21.5,2,0.0 +19228,62,49.3,22,0.0 +19228,35,18,33,0.0 +19228,33,2.5,48,0.0 +19228,22,21,11,0.0 +19228,53,32.8,20,0.0 +19228,2,19,2,0.0 +19228,46,12,7,0.0 +19228,77,13,46,0.0 +19228,13,6,20,0.0 +19228,49,20,25,0.0 +19228,25,14,48,0.0 +19229,47,9.5,30,0.0 +19229,48,12.75,3,0.0 +19229,57,19.5,17,0.0 +19229,60,34,8,0.0 +19229,65,21.05,7,0.0 +19229,69,36,50,0.0 +19229,39,18,47,0.0 +19229,14,23.25,23,0.0 +19229,55,24,36,0.0 +19229,5,21.35,30,0.0 +19229,27,43.9,11,0.0 +19229,40,18.4,12,0.0 +19229,46,12,17,0.0 +19229,50,16.25,22,0.0 +19229,52,7,35,0.0 +19229,13,6,9,0.0 +19229,54,7.45,32,0.0 +19229,23,9,43,0.0 +19229,8,40,41,0.0 +19229,58,13.25,32,0.0 +19229,6,25,26,0.0 +19229,32,32,2,0.0 +19229,18,62.5,22,0.0 +19229,62,49.3,1,0.0 +19229,7,30,19,0.0 +19229,3,10,40,0.0 +19229,61,28.5,10,0.0 +19229,68,12.5,1,0.0 +19229,25,14,12,0.0 +19229,33,2.5,46,0.0 +19229,1,18,36,0.0 +19229,10,31,33,0.0 +19229,43,46,39,0.0 +19229,15,15.5,19,0.0 +19229,24,4.5,40,0.0 +19229,38,263.5,28,0.0 +19229,41,9.65,7,0.0 +19229,4,22,19,0.0 +19229,53,32.8,23,0.0 +19229,31,12.5,39,0.0 +19229,2,19,12,0.0 +19229,64,33.25,30,0.0 +19229,63,43.9,35,0.0 +19229,77,13,27,0.0 +19230,69,36,2,0.0 +19230,3,10,44,0.0 +19230,68,12.5,5,0.0 +19230,64,33.25,5,0.0 +19230,23,9,27,0.0 +19230,31,12.5,44,0.0 +19230,53,32.8,20,0.0 +19230,42,14,35,0.0 +19230,20,81,3,0.0 +19230,21,10,47,0.0 +19230,25,14,14,0.0 +19230,40,18.4,26,0.0 +19230,19,9.2,37,0.0 +19230,73,15,3,0.0 +19230,72,34.8,2,0.0 +19230,59,55,13,0.0 +19230,63,43.9,45,0.0 +19230,30,25.89,20,0.0 +19230,77,13,23,0.0 +19230,48,12.75,37,0.0 +19230,5,21.35,39,0.0 +19230,52,7,30,0.0 +19230,66,17,16,0.0 +19230,2,19,36,0.0 +19230,75,7.75,9,0.0 +19230,29,123.79,45,0.0 +19230,49,20,44,0.0 +19230,4,22,9,0.0 +19230,28,45.6,7,0.0 +19230,70,15,27,0.0 +19230,76,18,21,0.0 +19230,34,14,44,0.0 +19230,10,31,26,0.0 +19230,13,6,31,0.0 +19230,7,30,34,0.0 +19230,54,7.45,30,0.0 +19230,24,4.5,25,0.0 +19230,62,49.3,27,0.0 +19230,32,32,33,0.0 +19230,74,10,21,0.0 +19230,37,26,46,0.0 +19230,1,18,33,0.0 +19230,38,263.5,17,0.0 +19230,15,15.5,30,0.0 +19230,39,18,39,0.0 +19230,18,62.5,32,0.0 +19230,67,14,13,0.0 +19230,12,38,44,0.0 +19230,26,31.23,8,0.0 +19230,65,21.05,23,0.0 +19230,57,19.5,32,0.0 +19230,71,21.5,32,0.0 +19230,47,9.5,36,0.0 +19230,50,16.25,13,0.0 +19231,65,21.05,13,0.0 +19231,62,49.3,3,0.0 +19231,69,36,27,0.0 +19231,66,17,34,0.0 +19231,52,7,46,0.0 +19231,19,9.2,3,0.0 +19231,61,28.5,48,0.0 +19231,43,46,42,0.0 +19231,54,7.45,11,0.0 +19231,11,21,32,0.0 +19231,3,10,21,0.0 +19231,35,18,47,0.0 +19231,29,123.79,50,0.0 +19231,31,12.5,19,0.0 +19231,63,43.9,22,0.0 +19231,67,14,50,0.0 +19231,73,15,3,0.0 +19231,45,9.5,30,0.0 +19231,58,13.25,23,0.0 +19231,15,15.5,7,0.0 +19231,60,34,8,0.0 +19231,49,20,18,0.0 +19231,26,31.23,22,0.0 +19231,57,19.5,29,0.0 +19231,10,31,14,0.0 +19231,40,18.4,8,0.0 +19231,1,18,3,0.0 +19231,8,40,4,0.0 +19231,39,18,33,0.0 +19231,9,97,25,0.0 +19231,27,43.9,29,0.0 +19231,44,19.45,12,0.0 +19231,6,25,18,0.0 +19231,23,9,12,0.0 +19231,41,9.65,11,0.0 +19231,18,62.5,9,0.0 +19231,16,17.45,10,0.0 +19231,68,12.5,24,0.0 +19231,56,38,13,0.0 +19231,32,32,10,0.0 +19231,75,7.75,49,0.0 +19231,24,4.5,43,0.0 +19231,20,81,19,0.0 +19231,14,23.25,12,0.0 +19231,71,21.5,12,0.0 +19231,7,30,13,0.0 +19231,74,10,14,0.0 +19231,55,24,16,0.0 +19231,42,14,14,0.0 +19231,25,14,43,0.0 +19231,76,18,19,0.0 +19231,34,14,45,0.0 +19231,2,19,39,0.0 +19231,22,21,42,0.0 +19231,47,9.5,22,0.0 +19231,53,32.8,26,0.0 +19231,72,34.8,29,0.0 +19231,33,2.5,18,0.0 +19231,21,10,47,0.0 +19231,64,33.25,1,0.0 +19231,12,38,16,0.0 +19231,37,26,37,0.0 +19231,5,21.35,14,0.0 +19231,48,12.75,33,0.0 +19231,51,53,49,0.0 +19231,38,263.5,9,0.0 +19231,36,19,49,0.0 +19231,46,12,24,0.0 +19231,50,16.25,38,0.0 +19231,59,55,7,0.0 +19231,17,39,20,0.0 +19232,36,19,50,0.0 +19232,52,7,15,0.0 +19232,47,9.5,20,0.0 +19232,64,33.25,7,0.0 +19232,55,24,3,0.0 +19232,56,38,44,0.0 +19232,29,123.79,28,0.0 +19232,59,55,40,0.0 +19232,71,21.5,17,0.0 +19232,5,21.35,46,0.0 +19232,11,21,30,0.0 +19232,10,31,34,0.0 +19232,22,21,40,0.0 +19232,15,15.5,41,0.0 +19232,41,9.65,32,0.0 +19232,72,34.8,24,0.0 +19232,57,19.5,5,0.0 +19232,1,18,8,0.0 +19232,44,19.45,28,0.0 +19232,12,38,38,0.0 +19232,42,14,42,0.0 +19232,37,26,29,0.0 +19232,62,49.3,8,0.0 +19232,9,97,44,0.0 +19232,4,22,50,0.0 +19232,32,32,38,0.0 +19232,76,18,47,0.0 +19232,73,15,29,0.0 +19232,65,21.05,7,0.0 +19232,60,34,36,0.0 +19232,30,25.89,22,0.0 +19232,38,263.5,25,0.0 +19232,2,19,1,0.0 +19232,49,20,26,0.0 +19232,8,40,18,0.0 +19232,70,15,32,0.0 +19232,50,16.25,9,0.0 +19232,28,45.6,7,0.0 +19232,17,39,22,0.0 +19232,20,81,50,0.0 +19232,54,7.45,37,0.0 +19232,46,12,32,0.0 +19232,13,6,25,0.0 +19232,67,14,24,0.0 +19232,26,31.23,39,0.0 +19232,35,18,8,0.0 +19232,74,10,49,0.0 +19232,53,32.8,15,0.0 +19232,18,62.5,30,0.0 +19232,66,17,50,0.0 +19232,21,10,9,0.0 +19232,19,9.2,41,0.0 +19232,34,14,1,0.0 +19232,68,12.5,30,0.0 +19232,24,4.5,39,0.0 +19232,58,13.25,30,0.0 +19232,14,23.25,31,0.0 +19232,7,30,47,0.0 +19232,43,46,28,0.0 +19232,33,2.5,30,0.0 +19232,48,12.75,35,0.0 +19232,6,25,7,0.0 +19232,25,14,21,0.0 +19232,27,43.9,10,0.0 +19232,16,17.45,2,0.0 +19232,45,9.5,13,0.0 +19232,63,43.9,24,0.0 +19232,39,18,23,0.0 +19232,75,7.75,48,0.0 +19232,31,12.5,15,0.0 +19232,77,13,39,0.0 +19232,40,18.4,35,0.0 +19232,23,9,38,0.0 +19232,51,53,23,0.0 +19232,69,36,32,0.0 +19233,37,26,9,0.0 +19233,59,55,45,0.0 +19233,40,18.4,2,0.0 +19233,16,17.45,42,0.0 +19233,71,21.5,12,0.0 +19233,39,18,32,0.0 +19233,7,30,9,0.0 +19233,8,40,48,0.0 +19233,62,49.3,12,0.0 +19233,33,2.5,41,0.0 +19233,74,10,42,0.0 +19233,21,10,49,0.0 +19233,54,7.45,24,0.0 +19233,20,81,30,0.0 +19233,60,34,23,0.0 +19233,66,17,32,0.0 +19233,70,15,7,0.0 +19233,63,43.9,25,0.0 +19233,68,12.5,9,0.0 +19233,15,15.5,33,0.0 +19233,36,19,47,0.0 +19233,11,21,29,0.0 +19233,45,9.5,23,0.0 +19233,17,39,37,0.0 +19233,49,20,11,0.0 +19233,77,13,34,0.0 +19233,14,23.25,48,0.0 +19233,57,19.5,47,0.0 +19233,65,21.05,50,0.0 +19233,1,18,11,0.0 +19233,64,33.25,11,0.0 +19233,3,10,8,0.0 +19233,61,28.5,14,0.0 +19233,18,62.5,10,0.0 +19233,46,12,29,0.0 +19233,25,14,34,0.0 +19233,35,18,31,0.0 +19233,2,19,36,0.0 +19233,55,24,10,0.0 +19233,24,4.5,29,0.0 +19233,38,263.5,31,0.0 +19233,30,25.89,16,0.0 +19233,23,9,50,0.0 +19233,53,32.8,38,0.0 +19233,50,16.25,23,0.0 +19233,26,31.23,34,0.0 +19233,32,32,33,0.0 +19233,9,97,38,0.0 +19233,48,12.75,40,0.0 +19234,68,12.5,36,0.0 +19234,21,10,20,0.0 +19234,15,15.5,21,0.0 +19234,17,39,41,0.0 +19234,61,28.5,48,0.0 +19234,56,38,37,0.0 +19234,41,9.65,46,0.0 +19234,47,9.5,38,0.0 +19234,72,34.8,12,0.0 +19234,18,62.5,25,0.0 +19234,14,23.25,29,0.0 +19234,39,18,14,0.0 +19234,29,123.79,17,0.0 +19234,31,12.5,36,0.0 +19234,71,21.5,49,0.0 +19234,49,20,49,0.0 +19234,42,14,4,0.0 +19234,73,15,8,0.0 +19234,28,45.6,21,0.0 +19234,8,40,25,0.0 +19234,54,7.45,19,0.0 +19234,57,19.5,10,0.0 +19234,24,4.5,9,0.0 +19234,69,36,19,0.0 +19234,76,18,9,0.0 +19234,60,34,47,0.0 +19234,51,53,44,0.0 +19234,48,12.75,26,0.0 +19234,34,14,39,0.0 +19234,38,263.5,36,0.0 +19234,77,13,33,0.0 +19234,62,49.3,27,0.0 +19234,35,18,29,0.0 +19234,13,6,49,0.0 +19234,4,22,28,0.0 +19234,19,9.2,41,0.0 +19234,16,17.45,44,0.0 +19234,37,26,11,0.0 +19234,36,19,1,0.0 +19234,40,18.4,34,0.0 +19234,12,38,21,0.0 +19234,1,18,42,0.0 +19234,33,2.5,27,0.0 +19234,52,7,1,0.0 +19234,2,19,25,0.0 +19234,7,30,32,0.0 +19234,22,21,38,0.0 +19234,9,97,47,0.0 +19234,66,17,43,0.0 +19234,64,33.25,4,0.0 +19234,74,10,29,0.0 +19234,55,24,40,0.0 +19234,11,21,15,0.0 +19234,50,16.25,28,0.0 +19234,3,10,13,0.0 +19234,63,43.9,1,0.0 +19234,43,46,1,0.0 +19234,46,12,35,0.0 +19234,67,14,23,0.0 +19234,59,55,40,0.0 +19234,53,32.8,4,0.0 +19234,32,32,9,0.0 +19234,30,25.89,8,0.0 +19234,58,13.25,36,0.0 +19234,20,81,46,0.0 +19235,20,81,23,0.0 +19235,39,18,46,0.0 +19235,60,34,32,0.0 +19235,6,25,27,0.0 +19235,37,26,31,0.0 +19235,31,12.5,4,0.0 +19235,28,45.6,28,0.0 +19235,19,9.2,50,0.0 +19235,73,15,1,0.0 +19235,49,20,14,0.0 +19235,5,21.35,17,0.0 +19235,76,18,1,0.0 +19235,24,4.5,40,0.0 +19235,41,9.65,47,0.0 +19235,4,22,6,0.0 +19235,68,12.5,19,0.0 +19235,72,34.8,27,0.0 +19235,77,13,41,0.0 +19235,21,10,15,0.0 +19235,2,19,38,0.0 +19235,8,40,12,0.0 +19235,65,21.05,16,0.0 +19235,22,21,20,0.0 +19235,3,10,23,0.0 +19235,57,19.5,18,0.0 +19235,36,19,2,0.0 +19235,48,12.75,34,0.0 +19235,13,6,2,0.0 +19235,69,36,31,0.0 +19235,12,38,1,0.0 +19235,23,9,40,0.0 +19235,17,39,25,0.0 +19235,53,32.8,31,0.0 +19235,18,62.5,19,0.0 +19235,66,17,39,0.0 +19235,50,16.25,22,0.0 +19235,14,23.25,22,0.0 +19235,27,43.9,47,0.0 +19235,33,2.5,36,0.0 +19235,46,12,14,0.0 +19235,10,31,30,0.0 +19235,11,21,11,0.0 +19235,55,24,2,0.0 +19235,74,10,45,0.0 +19235,25,14,46,0.0 +19235,61,28.5,49,0.0 +19235,35,18,39,0.0 +19235,71,21.5,15,0.0 +19235,59,55,1,0.0 +19235,26,31.23,3,0.0 +19235,9,97,1,0.0 +19235,51,53,7,0.0 +19235,7,30,27,0.0 +19235,75,7.75,17,0.0 +19235,63,43.9,28,0.0 +19235,32,32,45,0.0 +19235,44,19.45,35,0.0 +19235,15,15.5,15,0.0 +19235,38,263.5,38,0.0 +19235,47,9.5,24,0.0 +19235,64,33.25,48,0.0 +19235,58,13.25,15,0.0 +19235,1,18,13,0.0 +19235,29,123.79,38,0.0 +19236,68,12.5,39,0.0 +19236,71,21.5,41,0.0 +19236,73,15,12,0.0 +19236,44,19.45,30,0.0 +19236,33,2.5,1,0.0 +19236,43,46,23,0.0 +19236,36,19,38,0.0 +19236,55,24,10,0.0 +19236,74,10,3,0.0 +19236,77,13,10,0.0 +19236,30,25.89,30,0.0 +19236,63,43.9,21,0.0 +19236,19,9.2,7,0.0 +19236,41,9.65,32,0.0 +19236,37,26,17,0.0 +19236,8,40,47,0.0 +19236,61,28.5,34,0.0 +19236,29,123.79,15,0.0 +19236,52,7,42,0.0 +19236,13,6,16,0.0 +19236,39,18,31,0.0 +19236,66,17,19,0.0 +19236,70,15,42,0.0 +19236,7,30,50,0.0 +19236,64,33.25,46,0.0 +19236,34,14,40,0.0 +19236,23,9,3,0.0 +19236,15,15.5,2,0.0 +19236,47,9.5,41,0.0 +19236,3,10,13,0.0 +19236,2,19,39,0.0 +19236,22,21,13,0.0 +19236,62,49.3,18,0.0 +19236,42,14,25,0.0 +19236,35,18,47,0.0 +19237,39,18,40,0.0 +19237,50,16.25,29,0.0 +19237,26,31.23,35,0.0 +19237,52,7,31,0.0 +19237,30,25.89,3,0.0 +19237,74,10,30,0.0 +19237,66,17,36,0.0 +19237,49,20,18,0.0 +19237,10,31,45,0.0 +19237,29,123.79,39,0.0 +19237,48,12.75,35,0.0 +19237,12,38,43,0.0 +19237,19,9.2,32,0.0 +19237,64,33.25,2,0.0 +19237,53,32.8,43,0.0 +19237,54,7.45,27,0.0 +19237,28,45.6,16,0.0 +19237,71,21.5,8,0.0 +19237,41,9.65,22,0.0 +19237,56,38,43,0.0 +19237,6,25,48,0.0 +19237,44,19.45,45,0.0 +19237,65,21.05,2,0.0 +19237,69,36,40,0.0 +19237,17,39,18,0.0 +19237,60,34,47,0.0 +19237,23,9,7,0.0 +19237,3,10,28,0.0 +19237,63,43.9,42,0.0 +19237,70,15,37,0.0 +19237,40,18.4,12,0.0 +19237,9,97,25,0.0 +19237,22,21,8,0.0 +19237,35,18,4,0.0 +19237,77,13,49,0.0 +19237,51,53,31,0.0 +19237,2,19,24,0.0 +19237,73,15,46,0.0 +19237,34,14,9,0.0 +19237,32,32,46,0.0 +19237,5,21.35,28,0.0 +19237,68,12.5,25,0.0 +19237,58,13.25,34,0.0 +19237,25,14,27,0.0 +19237,45,9.5,4,0.0 +19237,38,263.5,23,0.0 +19237,24,4.5,1,0.0 +19237,67,14,40,0.0 +19237,1,18,2,0.0 +19237,46,12,33,0.0 +19237,72,34.8,15,0.0 +19237,43,46,6,0.0 +19237,13,6,46,0.0 +19237,57,19.5,26,0.0 +19237,33,2.5,10,0.0 +19237,20,81,20,0.0 +19237,11,21,4,0.0 +19237,62,49.3,41,0.0 +19237,75,7.75,4,0.0 +19237,42,14,30,0.0 +19237,14,23.25,10,0.0 +19237,76,18,25,0.0 +19237,21,10,25,0.0 +19237,18,62.5,40,0.0 +19237,4,22,43,0.0 +19237,55,24,45,0.0 +19237,16,17.45,13,0.0 +19237,37,26,47,0.0 +19237,47,9.5,5,0.0 +19237,36,19,22,0.0 +19237,31,12.5,19,0.0 +19237,7,30,40,0.0 +19237,59,55,33,0.0 +19237,27,43.9,12,0.0 +19237,15,15.5,6,0.0 +19237,61,28.5,41,0.0 +19238,18,62.5,10,0.0 +19238,51,53,47,0.0 +19238,19,9.2,48,0.0 +19238,59,55,40,0.0 +19238,24,4.5,6,0.0 +19238,12,38,15,0.0 +19238,32,32,50,0.0 +19238,26,31.23,12,0.0 +19238,7,30,32,0.0 +19238,73,15,8,0.0 +19238,61,28.5,41,0.0 +19238,66,17,47,0.0 +19238,15,15.5,41,0.0 +19238,28,45.6,27,0.0 +19238,43,46,42,0.0 +19238,47,9.5,2,0.0 +19238,70,15,41,0.0 +19238,60,34,45,0.0 +19238,36,19,32,0.0 +19238,77,13,10,0.0 +19238,25,14,39,0.0 +19238,75,7.75,10,0.0 +19238,17,39,9,0.0 +19238,76,18,25,0.0 +19238,40,18.4,13,0.0 +19238,50,16.25,33,0.0 +19238,63,43.9,21,0.0 +19238,37,26,20,0.0 +19238,38,263.5,4,0.0 +19238,31,12.5,17,0.0 +19238,20,81,21,0.0 +19238,58,13.25,50,0.0 +19238,49,20,24,0.0 +19238,2,19,22,0.0 +19238,55,24,49,0.0 +19238,57,19.5,1,0.0 +19238,9,97,8,0.0 +19238,67,14,11,0.0 +19238,29,123.79,48,0.0 +19238,74,10,21,0.0 +19238,16,17.45,46,0.0 +19238,3,10,36,0.0 +19238,1,18,12,0.0 +19238,33,2.5,3,0.0 +19238,39,18,1,0.0 +19238,5,21.35,34,0.0 +19238,35,18,2,0.0 +19238,72,34.8,46,0.0 +19238,30,25.89,7,0.0 +19238,52,7,20,0.0 +19238,62,49.3,16,0.0 +19238,71,21.5,20,0.0 +19238,10,31,2,0.0 +19238,64,33.25,10,0.0 +19238,46,12,11,0.0 +19238,8,40,36,0.0 +19238,53,32.8,34,0.0 +19239,5,21.35,24,0.0 +19239,39,18,8,0.0 +19239,36,19,16,0.0 +19239,2,19,7,0.0 +19239,37,26,36,0.0 +19239,34,14,32,0.0 +19239,50,16.25,20,0.0 +19239,35,18,23,0.0 +19239,43,46,16,0.0 +19239,14,23.25,13,0.0 +19239,71,21.5,2,0.0 +19239,20,81,27,0.0 +19239,41,9.65,3,0.0 +19239,61,28.5,3,0.0 +19239,16,17.45,34,0.0 +19239,63,43.9,45,0.0 +19239,10,31,45,0.0 +19239,68,12.5,41,0.0 +19239,66,17,35,0.0 +19239,48,12.75,12,0.0 +19239,6,25,6,0.0 +19239,15,15.5,19,0.0 +19239,4,22,19,0.0 +19239,21,10,41,0.0 +19239,19,9.2,48,0.0 +19239,38,263.5,41,0.0 +19239,52,7,34,0.0 +19239,73,15,16,0.0 +19239,47,9.5,20,0.0 +19239,27,43.9,17,0.0 +19239,60,34,5,0.0 +19239,3,10,22,0.0 +19239,54,7.45,8,0.0 +19239,12,38,3,0.0 +19239,64,33.25,32,0.0 +19239,59,55,10,0.0 +19239,58,13.25,26,0.0 +19239,33,2.5,37,0.0 +19239,55,24,7,0.0 +19239,45,9.5,42,0.0 +19239,24,4.5,35,0.0 +19239,72,34.8,27,0.0 +19239,22,21,10,0.0 +19239,76,18,21,0.0 +19239,40,18.4,8,0.0 +19239,9,97,44,0.0 +19239,69,36,7,0.0 +19239,70,15,3,0.0 +19239,74,10,15,0.0 +19239,51,53,3,0.0 +19239,62,49.3,10,0.0 +19240,42,14,2,0.0 +19240,60,34,42,0.0 +19240,55,24,11,0.0 +19240,22,21,40,0.0 +19240,51,53,43,0.0 +19240,40,18.4,3,0.0 +19240,9,97,23,0.0 +19240,46,12,42,0.0 +19240,28,45.6,38,0.0 +19240,26,31.23,6,0.0 +19240,43,46,29,0.0 +19240,39,18,15,0.0 +19240,70,15,26,0.0 +19240,35,18,8,0.0 +19240,47,9.5,9,0.0 +19240,30,25.89,7,0.0 +19240,8,40,39,0.0 +19240,10,31,41,0.0 +19240,38,263.5,10,0.0 +19240,48,12.75,45,0.0 +19240,63,43.9,29,0.0 +19240,14,23.25,16,0.0 +19240,24,4.5,45,0.0 +19240,72,34.8,38,0.0 +19240,32,32,6,0.0 +19240,44,19.45,19,0.0 +19240,58,13.25,34,0.0 +19240,21,10,34,0.0 +19240,76,18,10,0.0 +19240,17,39,18,0.0 +19240,41,9.65,32,0.0 +19240,6,25,34,0.0 +19240,67,14,19,0.0 +19240,59,55,36,0.0 +19240,2,19,39,0.0 +19240,52,7,6,0.0 +19241,54,7.45,8,0.0 +19241,49,20,27,0.0 +19242,5,21.35,3,0.0 +19242,21,10,9,0.0 +19242,1,18,33,0.0 +19242,52,7,37,0.0 +19242,51,53,30,0.0 +19242,30,25.89,14,0.0 +19243,74,10,21,0.0 +19243,5,21.35,11,0.0 +19243,67,14,30,0.0 +19243,42,14,48,0.0 +19243,3,10,16,0.0 +19243,77,13,14,0.0 +19243,50,16.25,40,0.0 +19243,60,34,8,0.0 +19243,26,31.23,22,0.0 +19243,21,10,24,0.0 +19243,75,7.75,9,0.0 +19243,55,24,10,0.0 +19243,23,9,29,0.0 +19243,28,45.6,37,0.0 +19243,65,21.05,18,0.0 +19243,22,21,46,0.0 +19243,18,62.5,38,0.0 +19244,58,13.25,21,0.0 +19244,50,16.25,40,0.0 +19244,21,10,22,0.0 +19244,51,53,9,0.0 +19244,33,2.5,3,0.0 +19244,36,19,37,0.0 +19244,31,12.5,14,0.0 +19244,15,15.5,45,0.0 +19244,65,21.05,8,0.0 +19244,76,18,45,0.0 +19244,29,123.79,33,0.0 +19244,56,38,29,0.0 +19244,14,23.25,3,0.0 +19244,22,21,29,0.0 +19244,1,18,35,0.0 +19244,16,17.45,49,0.0 +19244,43,46,46,0.0 +19244,57,19.5,23,0.0 +19244,66,17,19,0.0 +19244,67,14,47,0.0 +19244,6,25,27,0.0 +19244,53,32.8,33,0.0 +19244,69,36,18,0.0 +19244,75,7.75,29,0.0 +19244,72,34.8,18,0.0 +19244,62,49.3,7,0.0 +19244,45,9.5,27,0.0 +19244,54,7.45,45,0.0 +19244,8,40,33,0.0 +19244,2,19,43,0.0 +19244,71,21.5,37,0.0 +19244,19,9.2,12,0.0 +19244,49,20,39,0.0 +19244,38,263.5,7,0.0 +19244,3,10,44,0.0 +19244,10,31,8,0.0 +19244,68,12.5,39,0.0 +19244,32,32,31,0.0 +19244,11,21,30,0.0 +19244,39,18,26,0.0 +19244,52,7,45,0.0 +19244,24,4.5,42,0.0 +19244,20,81,5,0.0 +19244,18,62.5,36,0.0 +19244,26,31.23,45,0.0 +19244,73,15,49,0.0 +19244,4,22,4,0.0 +19244,17,39,31,0.0 +19244,63,43.9,33,0.0 +19244,28,45.6,15,0.0 +19244,37,26,2,0.0 +19244,55,24,3,0.0 +19244,74,10,37,0.0 +19244,5,21.35,11,0.0 +19244,47,9.5,5,0.0 +19244,48,12.75,4,0.0 +19244,64,33.25,17,0.0 +19244,41,9.65,23,0.0 +19244,77,13,12,0.0 +19244,35,18,41,0.0 +19244,9,97,42,0.0 +19244,27,43.9,50,0.0 +19245,43,46,9,0.0 +19245,57,19.5,15,0.0 +19245,14,23.25,47,0.0 +19245,76,18,47,0.0 +19245,51,53,42,0.0 +19245,41,9.65,27,0.0 +19245,69,36,36,0.0 +19245,74,10,8,0.0 +19245,73,15,37,0.0 +19245,62,49.3,32,0.0 +19245,60,34,38,0.0 +19245,77,13,35,0.0 +19245,33,2.5,32,0.0 +19245,27,43.9,6,0.0 +19245,48,12.75,50,0.0 +19245,34,14,7,0.0 +19245,23,9,35,0.0 +19245,40,18.4,36,0.0 +19245,3,10,48,0.0 +19245,4,22,25,0.0 +19245,36,19,4,0.0 +19245,11,21,38,0.0 +19245,22,21,34,0.0 +19245,71,21.5,6,0.0 +19245,28,45.6,29,0.0 +19245,50,16.25,48,0.0 +19245,6,25,43,0.0 +19245,44,19.45,16,0.0 +19245,54,7.45,10,0.0 +19245,8,40,47,0.0 +19245,2,19,28,0.0 +19245,18,62.5,39,0.0 +19245,13,6,47,0.0 +19245,38,263.5,42,0.0 +19245,20,81,13,0.0 +19245,47,9.5,22,0.0 +19245,64,33.25,20,0.0 +19245,26,31.23,23,0.0 +19245,30,25.89,19,0.0 +19245,59,55,36,0.0 +19245,19,9.2,40,0.0 +19245,16,17.45,29,0.0 +19245,53,32.8,20,0.0 +19245,24,4.5,33,0.0 +19245,21,10,29,0.0 +19245,56,38,31,0.0 +19245,61,28.5,26,0.0 +19245,10,31,1,0.0 +19245,49,20,19,0.0 +19245,46,12,6,0.0 +19245,9,97,26,0.0 +19245,52,7,1,0.0 +19245,39,18,41,0.0 +19245,7,30,6,0.0 +19245,31,12.5,1,0.0 +19245,55,24,36,0.0 +19245,72,34.8,30,0.0 +19245,68,12.5,1,0.0 +19246,45,9.5,10,0.0 +19246,44,19.45,14,0.0 +19246,77,13,37,0.0 +19246,40,18.4,2,0.0 +19246,46,12,40,0.0 +19246,39,18,41,0.0 +19246,64,33.25,6,0.0 +19246,10,31,46,0.0 +19246,6,25,43,0.0 +19246,47,9.5,35,0.0 +19246,22,21,4,0.0 +19246,23,9,39,0.0 +19246,16,17.45,27,0.0 +19246,13,6,26,0.0 +19246,74,10,38,0.0 +19246,2,19,18,0.0 +19246,8,40,27,0.0 +19246,12,38,46,0.0 +19246,35,18,35,0.0 +19246,1,18,18,0.0 +19246,14,23.25,35,0.0 +19246,26,31.23,7,0.0 +19246,59,55,18,0.0 +19246,52,7,38,0.0 +19246,4,22,37,0.0 +19246,62,49.3,44,0.0 +19246,72,34.8,33,0.0 +19247,32,32,30,0.0 +19247,70,15,1,0.0 +19247,35,18,2,0.0 +19247,53,32.8,14,0.0 +19247,9,97,7,0.0 +19247,33,2.5,17,0.0 +19247,58,13.25,39,0.0 +19247,45,9.5,29,0.0 +19247,46,12,35,0.0 +19247,36,19,8,0.0 +19248,16,17.45,15,0.0 +19248,21,10,7,0.0 +19248,66,17,46,0.0 +19248,53,32.8,5,0.0 +19248,27,43.9,5,0.0 +19248,62,49.3,38,0.0 +19248,46,12,28,0.0 +19248,7,30,30,0.0 +19248,26,31.23,35,0.0 +19248,40,18.4,28,0.0 +19248,71,21.5,10,0.0 +19248,51,53,12,0.0 +19248,74,10,26,0.0 +19248,70,15,26,0.0 +19248,18,62.5,7,0.0 +19248,31,12.5,31,0.0 +19248,38,263.5,15,0.0 +19248,6,25,8,0.0 +19248,15,15.5,43,0.0 +19248,4,22,46,0.0 +19248,11,21,30,0.0 +19248,61,28.5,8,0.0 +19248,52,7,50,0.0 +19248,56,38,40,0.0 +19248,25,14,16,0.0 +19248,36,19,44,0.0 +19248,75,7.75,29,0.0 +19248,39,18,32,0.0 +19248,23,9,2,0.0 +19248,37,26,3,0.0 +19248,9,97,32,0.0 +19248,20,81,47,0.0 +19248,12,38,44,0.0 +19248,60,34,9,0.0 +19248,41,9.65,43,0.0 +19248,64,33.25,7,0.0 +19248,45,9.5,47,0.0 +19248,47,9.5,30,0.0 +19248,73,15,16,0.0 +19248,35,18,11,0.0 +19248,72,34.8,41,0.0 +19248,48,12.75,27,0.0 +19248,58,13.25,25,0.0 +19248,49,20,10,0.0 +19248,65,21.05,23,0.0 +19248,44,19.45,17,0.0 +19248,42,14,42,0.0 +19248,69,36,22,0.0 +19248,67,14,41,0.0 +19248,59,55,31,0.0 +19248,34,14,32,0.0 +19248,76,18,31,0.0 +19248,5,21.35,6,0.0 +19248,10,31,27,0.0 +19248,13,6,37,0.0 +19248,17,39,47,0.0 +19248,54,7.45,50,0.0 +19248,29,123.79,2,0.0 +19248,55,24,25,0.0 +19248,3,10,34,0.0 +19248,57,19.5,44,0.0 +19248,33,2.5,45,0.0 +19248,14,23.25,32,0.0 +19248,1,18,3,0.0 +19248,2,19,11,0.0 +19248,24,4.5,16,0.0 +19248,28,45.6,36,0.0 +19248,22,21,22,0.0 +19248,43,46,20,0.0 +19248,50,16.25,30,0.0 +19248,8,40,35,0.0 +19248,63,43.9,31,0.0 +19249,62,49.3,11,0.0 +19249,55,24,31,0.0 +19249,45,9.5,11,0.0 +19249,65,21.05,41,0.0 +19249,34,14,24,0.0 +19249,48,12.75,8,0.0 +19249,27,43.9,32,0.0 +19249,35,18,43,0.0 +19249,73,15,25,0.0 +19249,56,38,21,0.0 +19249,28,45.6,2,0.0 +19249,22,21,26,0.0 +19249,57,19.5,10,0.0 +19249,17,39,17,0.0 +19249,18,62.5,40,0.0 +19249,5,21.35,13,0.0 +19249,37,26,5,0.0 +19249,44,19.45,29,0.0 +19249,77,13,41,0.0 +19249,69,36,11,0.0 +19249,76,18,1,0.0 +19249,24,4.5,45,0.0 +19249,32,32,16,0.0 +19249,54,7.45,18,0.0 +19249,39,18,3,0.0 +19249,10,31,11,0.0 +19249,13,6,1,0.0 +19249,59,55,40,0.0 +19249,31,12.5,39,0.0 +19249,43,46,19,0.0 +19249,41,9.65,3,0.0 +19249,47,9.5,11,0.0 +19249,74,10,3,0.0 +19249,3,10,37,0.0 +19249,1,18,15,0.0 +19249,8,40,7,0.0 +19249,42,14,43,0.0 +19249,46,12,47,0.0 +19249,11,21,48,0.0 +19249,6,25,24,0.0 +19249,64,33.25,14,0.0 +19249,60,34,36,0.0 +19249,26,31.23,36,0.0 +19249,21,10,22,0.0 +19249,25,14,13,0.0 +19249,63,43.9,18,0.0 +19249,70,15,13,0.0 +19249,58,13.25,16,0.0 +19249,75,7.75,22,0.0 +19249,50,16.25,40,0.0 +19249,23,9,18,0.0 +19249,20,81,47,0.0 +19249,19,9.2,33,0.0 +19249,2,19,36,0.0 +19249,52,7,1,0.0 +19249,40,18.4,41,0.0 +19249,4,22,2,0.0 +19249,7,30,42,0.0 +19249,68,12.5,32,0.0 +19249,16,17.45,1,0.0 +19249,67,14,19,0.0 +19249,51,53,30,0.0 +19249,49,20,11,0.0 +19249,72,34.8,13,0.0 +19249,29,123.79,42,0.0 +19249,38,263.5,3,0.0 +19249,71,21.5,18,0.0 +19249,66,17,33,0.0 +19249,53,32.8,31,0.0 +19250,76,18,46,0.0 +19250,32,32,39,0.0 +19250,16,17.45,36,0.0 +19250,35,18,25,0.0 +19250,38,263.5,37,0.0 +19250,40,18.4,32,0.0 +19250,61,28.5,8,0.0 +19250,66,17,13,0.0 +19250,45,9.5,8,0.0 +19250,12,38,16,0.0 +19250,62,49.3,10,0.0 +19250,46,12,44,0.0 +19250,65,21.05,21,0.0 +19250,77,13,2,0.0 +19250,67,14,4,0.0 +19250,20,81,38,0.0 +19250,30,25.89,46,0.0 +19250,10,31,3,0.0 +19250,29,123.79,22,0.0 +19250,7,30,45,0.0 +19250,8,40,47,0.0 +19250,51,53,10,0.0 +19250,3,10,4,0.0 +19250,63,43.9,13,0.0 +19250,22,21,47,0.0 +19250,5,21.35,3,0.0 +19250,43,46,42,0.0 +19250,49,20,36,0.0 +19250,23,9,50,0.0 +19250,47,9.5,16,0.0 +19250,60,34,42,0.0 +19250,74,10,14,0.0 +19250,4,22,26,0.0 +19250,18,62.5,36,0.0 +19250,37,26,34,0.0 +19250,50,16.25,19,0.0 +19250,21,10,50,0.0 +19250,33,2.5,31,0.0 +19250,55,24,14,0.0 +19250,25,14,10,0.0 +19250,24,4.5,40,0.0 +19250,26,31.23,24,0.0 +19250,54,7.45,4,0.0 +19250,73,15,5,0.0 +19250,11,21,37,0.0 +19250,69,36,29,0.0 +19250,64,33.25,27,0.0 +19250,9,97,32,0.0 +19251,31,12.5,6,0.0 +19251,32,32,12,0.0 +19251,8,40,9,0.0 +19251,27,43.9,17,0.0 +19251,9,97,3,0.0 +19251,16,17.45,3,0.0 +19251,43,46,28,0.0 +19251,62,49.3,27,0.0 +19251,35,18,11,0.0 +19252,48,12.75,27,0.0 +19252,55,24,1,0.0 +19252,9,97,26,0.0 +19252,54,7.45,36,0.0 +19252,66,17,48,0.0 +19252,23,9,31,0.0 +19252,56,38,39,0.0 +19252,26,31.23,9,0.0 +19252,29,123.79,24,0.0 +19252,45,9.5,35,0.0 +19252,72,34.8,27,0.0 +19252,46,12,32,0.0 +19252,73,15,19,0.0 +19252,41,9.65,2,0.0 +19252,21,10,33,0.0 +19252,49,20,38,0.0 +19252,43,46,12,0.0 +19252,70,15,33,0.0 +19252,61,28.5,46,0.0 +19252,20,81,19,0.0 +19252,75,7.75,43,0.0 +19252,40,18.4,15,0.0 +19252,47,9.5,27,0.0 +19252,38,263.5,14,0.0 +19252,77,13,47,0.0 +19252,34,14,36,0.0 +19252,18,62.5,46,0.0 +19252,53,32.8,42,0.0 +19252,6,25,21,0.0 +19252,12,38,28,0.0 +19252,64,33.25,26,0.0 +19252,63,43.9,4,0.0 +19252,57,19.5,49,0.0 +19252,2,19,38,0.0 +19252,42,14,14,0.0 +19252,5,21.35,18,0.0 +19252,36,19,31,0.0 +19252,33,2.5,46,0.0 +19252,44,19.45,37,0.0 +19252,28,45.6,12,0.0 +19252,17,39,13,0.0 +19252,8,40,11,0.0 +19252,58,13.25,21,0.0 +19252,14,23.25,10,0.0 +19253,41,9.65,29,0.0 +19253,8,40,36,0.0 +19253,29,123.79,35,0.0 +19253,57,19.5,50,0.0 +19253,74,10,11,0.0 +19253,7,30,50,0.0 +19253,51,53,10,0.0 +19253,23,9,15,0.0 +19253,56,38,45,0.0 +19253,43,46,23,0.0 +19253,76,18,31,0.0 +19253,66,17,49,0.0 +19253,72,34.8,14,0.0 +19253,58,13.25,8,0.0 +19253,17,39,47,0.0 +19253,20,81,37,0.0 +19253,62,49.3,35,0.0 +19253,42,14,40,0.0 +19253,69,36,3,0.0 +19253,14,23.25,46,0.0 +19253,38,263.5,3,0.0 +19253,21,10,42,0.0 +19253,33,2.5,49,0.0 +19253,1,18,32,0.0 +19253,19,9.2,24,0.0 +19253,16,17.45,26,0.0 +19253,73,15,39,0.0 +19253,67,14,3,0.0 +19253,45,9.5,21,0.0 +19253,64,33.25,5,0.0 +19253,10,31,50,0.0 +19254,63,43.9,3,0.0 +19254,72,34.8,23,0.0 +19254,8,40,41,0.0 +19254,17,39,37,0.0 +19254,15,15.5,35,0.0 +19254,51,53,32,0.0 +19254,9,97,5,0.0 +19254,6,25,29,0.0 +19254,47,9.5,6,0.0 +19254,28,45.6,6,0.0 +19254,23,9,4,0.0 +19254,38,263.5,47,0.0 +19254,62,49.3,45,0.0 +19254,14,23.25,31,0.0 +19254,21,10,2,0.0 +19254,25,14,31,0.0 +19254,66,17,45,0.0 +19254,74,10,12,0.0 +19254,19,9.2,3,0.0 +19254,1,18,27,0.0 +19254,27,43.9,25,0.0 +19254,75,7.75,10,0.0 +19254,59,55,40,0.0 +19254,4,22,1,0.0 +19254,60,34,38,0.0 +19254,39,18,16,0.0 +19254,61,28.5,16,0.0 +19254,57,19.5,25,0.0 +19254,54,7.45,29,0.0 +19254,5,21.35,18,0.0 +19254,7,30,24,0.0 +19254,64,33.25,27,0.0 +19255,77,13,36,0.0 +19255,55,24,3,0.0 +19255,38,263.5,35,0.0 +19255,10,31,50,0.0 +19255,67,14,20,0.0 +19255,70,15,36,0.0 +19255,23,9,32,0.0 +19255,69,36,34,0.0 +19255,51,53,23,0.0 +19255,58,13.25,9,0.0 +19255,71,21.5,21,0.0 +19255,41,9.65,33,0.0 +19255,33,2.5,15,0.0 +19255,4,22,15,0.0 +19255,60,34,26,0.0 +19255,14,23.25,43,0.0 +19255,19,9.2,42,0.0 +19255,63,43.9,22,0.0 +19255,25,14,7,0.0 +19255,24,4.5,35,0.0 +19255,65,21.05,33,0.0 +19255,8,40,26,0.0 +19255,39,18,28,0.0 +19255,6,25,35,0.0 +19255,20,81,18,0.0 +19255,30,25.89,1,0.0 +19255,75,7.75,44,0.0 +19255,31,12.5,30,0.0 +19255,42,14,41,0.0 +19255,66,17,32,0.0 +19255,32,32,31,0.0 +19255,59,55,47,0.0 +19255,5,21.35,49,0.0 +19255,36,19,1,0.0 +19255,3,10,33,0.0 +19255,74,10,46,0.0 +19255,40,18.4,26,0.0 +19255,62,49.3,21,0.0 +19255,47,9.5,13,0.0 +19255,54,7.45,41,0.0 +19255,11,21,33,0.0 +19255,46,12,8,0.0 +19255,37,26,8,0.0 +19255,2,19,1,0.0 +19255,50,16.25,5,0.0 +19255,22,21,37,0.0 +19255,34,14,24,0.0 +19255,53,32.8,34,0.0 +19255,13,6,29,0.0 +19255,28,45.6,33,0.0 +19255,43,46,12,0.0 +19255,76,18,17,0.0 +19255,45,9.5,14,0.0 +19255,21,10,19,0.0 +19255,68,12.5,11,0.0 +19255,73,15,31,0.0 +19255,48,12.75,9,0.0 +19255,56,38,40,0.0 +19255,12,38,7,0.0 +19255,9,97,47,0.0 +19255,49,20,46,0.0 +19255,44,19.45,27,0.0 +19255,29,123.79,35,0.0 +19255,7,30,30,0.0 +19255,1,18,11,0.0 +19255,16,17.45,10,0.0 +19255,17,39,10,0.0 +19255,27,43.9,6,0.0 +19255,15,15.5,36,0.0 +19255,72,34.8,22,0.0 +19255,35,18,33,0.0 +19255,52,7,5,0.0 +19256,13,6,9,0.0 +19256,74,10,5,0.0 +19256,30,25.89,9,0.0 +19256,37,26,5,0.0 +19256,75,7.75,5,0.0 +19256,59,55,16,0.0 +19256,76,18,5,0.0 +19256,63,43.9,2,0.0 +19256,71,21.5,32,0.0 +19256,36,19,16,0.0 +19256,50,16.25,29,0.0 +19256,46,12,39,0.0 +19256,32,32,39,0.0 +19256,65,21.05,12,0.0 +19256,11,21,47,0.0 +19256,69,36,2,0.0 +19256,47,9.5,40,0.0 +19256,22,21,8,0.0 +19256,14,23.25,49,0.0 +19256,48,12.75,37,0.0 +19256,5,21.35,37,0.0 +19256,64,33.25,17,0.0 +19256,18,62.5,38,0.0 +19256,27,43.9,29,0.0 +19256,12,38,15,0.0 +19256,4,22,5,0.0 +19256,16,17.45,49,0.0 +19256,21,10,21,0.0 +19256,61,28.5,10,0.0 +19256,77,13,27,0.0 +19256,24,4.5,41,0.0 +19256,23,9,46,0.0 +19256,49,20,2,0.0 +19256,40,18.4,36,0.0 +19256,15,15.5,3,0.0 +19256,39,18,25,0.0 +19256,62,49.3,6,0.0 +19256,28,45.6,41,0.0 +19256,41,9.65,9,0.0 +19256,53,32.8,29,0.0 +19256,52,7,41,0.0 +19256,19,9.2,18,0.0 +19256,35,18,37,0.0 +19256,9,97,23,0.0 +19256,29,123.79,6,0.0 +19256,1,18,5,0.0 +19256,8,40,10,0.0 +19256,68,12.5,46,0.0 +19256,17,39,22,0.0 +19256,55,24,8,0.0 +19256,44,19.45,12,0.0 +19256,73,15,42,0.0 +19256,56,38,35,0.0 +19256,72,34.8,31,0.0 +19256,38,263.5,10,0.0 +19256,3,10,15,0.0 +19256,60,34,16,0.0 +19256,31,12.5,27,0.0 +19256,67,14,14,0.0 +19256,54,7.45,10,0.0 +19257,61,28.5,12,0.0 +19257,28,45.6,37,0.0 +19257,48,12.75,19,0.0 +19257,3,10,47,0.0 +19257,70,15,35,0.0 +19257,32,32,32,0.0 +19257,9,97,4,0.0 +19257,41,9.65,7,0.0 +19257,14,23.25,16,0.0 +19257,53,32.8,42,0.0 +19257,34,14,45,0.0 +19257,10,31,36,0.0 +19257,12,38,15,0.0 +19257,24,4.5,28,0.0 +19257,35,18,10,0.0 +19257,18,62.5,43,0.0 +19257,71,21.5,11,0.0 +19257,77,13,15,0.0 +19257,27,43.9,23,0.0 +19257,37,26,48,0.0 +19257,67,14,50,0.0 +19257,13,6,40,0.0 +19257,66,17,1,0.0 +19257,64,33.25,25,0.0 +19257,69,36,36,0.0 +19257,33,2.5,28,0.0 +19257,29,123.79,7,0.0 +19257,51,53,48,0.0 +19257,20,81,29,0.0 +19257,49,20,22,0.0 +19258,28,45.6,10,0.0 +19258,26,31.23,37,0.0 +19258,3,10,47,0.0 +19258,53,32.8,3,0.0 +19258,56,38,11,0.0 +19258,42,14,7,0.0 +19258,71,21.5,25,0.0 +19258,19,9.2,23,0.0 +19258,61,28.5,46,0.0 +19258,17,39,6,0.0 +19258,54,7.45,3,0.0 +19259,61,28.5,27,0.0 +19259,48,12.75,13,0.0 +19259,12,38,7,0.0 +19259,18,62.5,9,0.0 +19259,76,18,47,0.0 +19259,54,7.45,31,0.0 +19259,51,53,39,0.0 +19259,74,10,18,0.0 +19259,11,21,1,0.0 +19259,28,45.6,50,0.0 +19259,44,19.45,26,0.0 +19259,67,14,27,0.0 +19259,9,97,2,0.0 +19259,52,7,2,0.0 +19259,36,19,22,0.0 +19259,15,15.5,20,0.0 +19259,66,17,43,0.0 +19259,8,40,7,0.0 +19260,29,123.79,12,0.0 +19260,12,38,39,0.0 +19260,69,36,14,0.0 +19260,5,21.35,6,0.0 +19260,25,14,44,0.0 +19260,9,97,21,0.0 +19260,65,21.05,32,0.0 +19260,22,21,29,0.0 +19260,15,15.5,34,0.0 +19260,40,18.4,21,0.0 +19260,57,19.5,29,0.0 +19260,33,2.5,25,0.0 +19260,14,23.25,30,0.0 +19260,38,263.5,8,0.0 +19260,8,40,41,0.0 +19260,16,17.45,19,0.0 +19260,20,81,16,0.0 +19260,49,20,5,0.0 +19260,64,33.25,5,0.0 +19260,19,9.2,13,0.0 +19260,24,4.5,36,0.0 +19260,56,38,8,0.0 +19260,21,10,9,0.0 +19260,59,55,9,0.0 +19260,3,10,11,0.0 +19260,50,16.25,14,0.0 +19260,13,6,17,0.0 +19260,4,22,24,0.0 +19260,54,7.45,30,0.0 +19260,32,32,3,0.0 +19260,68,12.5,15,0.0 +19260,41,9.65,3,0.0 +19260,1,18,45,0.0 +19260,34,14,27,0.0 +19260,77,13,8,0.0 +19260,61,28.5,48,0.0 +19260,28,45.6,16,0.0 +19260,2,19,50,0.0 +19260,10,31,15,0.0 +19260,42,14,13,0.0 +19260,70,15,38,0.0 +19260,62,49.3,24,0.0 +19260,46,12,29,0.0 +19260,11,21,2,0.0 +19260,72,34.8,17,0.0 +19260,30,25.89,3,0.0 +19260,43,46,42,0.0 +19260,51,53,25,0.0 +19260,74,10,30,0.0 +19260,75,7.75,7,0.0 +19260,35,18,4,0.0 +19260,45,9.5,50,0.0 +19260,76,18,2,0.0 +19261,58,13.25,42,0.0 +19261,37,26,39,0.0 +19261,10,31,2,0.0 +19261,5,21.35,43,0.0 +19261,23,9,28,0.0 +19261,28,45.6,22,0.0 +19261,75,7.75,22,0.0 +19261,70,15,37,0.0 +19261,77,13,15,0.0 +19261,49,20,26,0.0 +19261,35,18,43,0.0 +19261,61,28.5,19,0.0 +19261,40,18.4,13,0.0 +19261,2,19,4,0.0 +19261,52,7,1,0.0 +19261,57,19.5,29,0.0 +19261,18,62.5,15,0.0 +19261,8,40,32,0.0 +19261,62,49.3,23,0.0 +19261,46,12,18,0.0 +19261,44,19.45,50,0.0 +19261,30,25.89,33,0.0 +19261,74,10,15,0.0 +19261,11,21,32,0.0 +19261,31,12.5,40,0.0 +19261,4,22,28,0.0 +19261,7,30,25,0.0 +19261,25,14,15,0.0 +19261,29,123.79,41,0.0 +19261,14,23.25,33,0.0 +19261,38,263.5,31,0.0 +19262,2,19,39,0.0 +19262,9,97,34,0.0 +19262,11,21,38,0.0 +19262,66,17,10,0.0 +19262,26,31.23,15,0.0 +19262,10,31,26,0.0 +19262,63,43.9,15,0.0 +19262,40,18.4,41,0.0 +19262,54,7.45,14,0.0 +19262,15,15.5,36,0.0 +19262,64,33.25,9,0.0 +19262,44,19.45,48,0.0 +19262,17,39,17,0.0 +19262,50,16.25,7,0.0 +19262,52,7,21,0.0 +19262,6,25,9,0.0 +19262,29,123.79,21,0.0 +19262,49,20,44,0.0 +19262,56,38,36,0.0 +19263,35,18,1,0.0 +19263,31,12.5,39,0.0 +19263,58,13.25,12,0.0 +19263,50,16.25,13,0.0 +19263,54,7.45,42,0.0 +19263,9,97,36,0.0 +19263,18,62.5,23,0.0 +19263,6,25,48,0.0 +19263,28,45.6,1,0.0 +19263,20,81,24,0.0 +19263,23,9,27,0.0 +19264,5,21.35,9,0.0 +19264,35,18,10,0.0 +19264,21,10,29,0.0 +19264,34,14,41,0.0 +19264,14,23.25,50,0.0 +19264,42,14,11,0.0 +19264,22,21,49,0.0 +19264,17,39,4,0.0 +19264,37,26,17,0.0 +19264,11,21,32,0.0 +19264,72,34.8,19,0.0 +19264,26,31.23,49,0.0 +19265,15,15.5,37,0.0 +19265,62,49.3,3,0.0 +19265,27,43.9,27,0.0 +19265,20,81,30,0.0 +19265,5,21.35,15,0.0 +19265,68,12.5,49,0.0 +19265,40,18.4,48,0.0 +19265,59,55,33,0.0 +19265,29,123.79,16,0.0 +19265,76,18,28,0.0 +19265,36,19,17,0.0 +19265,56,38,30,0.0 +19265,43,46,42,0.0 +19265,25,14,33,0.0 +19265,4,22,28,0.0 +19265,57,19.5,48,0.0 +19265,42,14,6,0.0 +19265,61,28.5,22,0.0 +19265,48,12.75,24,0.0 +19265,18,62.5,15,0.0 +19265,49,20,49,0.0 +19265,46,12,20,0.0 +19265,21,10,12,0.0 +19265,53,32.8,47,0.0 +19265,63,43.9,12,0.0 +19265,47,9.5,48,0.0 +19265,39,18,3,0.0 +19265,14,23.25,29,0.0 +19265,44,19.45,32,0.0 +19265,22,21,45,0.0 +19265,70,15,4,0.0 +19265,7,30,2,0.0 +19265,32,32,30,0.0 +19265,60,34,13,0.0 +19265,55,24,24,0.0 +19265,6,25,10,0.0 +19265,50,16.25,27,0.0 +19265,19,9.2,36,0.0 +19265,75,7.75,33,0.0 +19265,28,45.6,15,0.0 +19265,41,9.65,2,0.0 +19265,33,2.5,14,0.0 +19265,67,14,17,0.0 +19265,1,18,16,0.0 +19265,24,4.5,11,0.0 +19265,77,13,28,0.0 +19265,12,38,36,0.0 +19265,74,10,31,0.0 +19265,54,7.45,36,0.0 +19265,38,263.5,39,0.0 +19265,58,13.25,50,0.0 +19265,37,26,42,0.0 +19265,73,15,4,0.0 +19265,3,10,4,0.0 +19265,30,25.89,22,0.0 +19265,66,17,20,0.0 +19265,16,17.45,17,0.0 +19265,9,97,36,0.0 +19265,65,21.05,34,0.0 +19265,64,33.25,5,0.0 +19265,31,12.5,28,0.0 +19265,35,18,33,0.0 +19266,74,10,17,0.0 +19266,37,26,41,0.0 +19266,73,15,21,0.0 +19266,58,13.25,27,0.0 +19266,70,15,11,0.0 +19266,26,31.23,27,0.0 +19266,69,36,35,0.0 +19266,7,30,33,0.0 +19266,41,9.65,48,0.0 +19266,25,14,50,0.0 +19266,51,53,35,0.0 +19266,62,49.3,25,0.0 +19266,23,9,11,0.0 +19266,54,7.45,32,0.0 +19266,75,7.75,19,0.0 +19266,42,14,16,0.0 +19267,70,15,20,0.0 +19267,67,14,46,0.0 +19267,10,31,10,0.0 +19267,11,21,31,0.0 +19267,73,15,13,0.0 +19267,66,17,42,0.0 +19267,16,17.45,40,0.0 +19267,65,21.05,19,0.0 +19267,23,9,7,0.0 +19267,12,38,44,0.0 +19267,68,12.5,38,0.0 +19267,60,34,38,0.0 +19267,9,97,14,0.0 +19267,74,10,8,0.0 +19267,41,9.65,6,0.0 +19267,29,123.79,46,0.0 +19267,77,13,1,0.0 +19267,4,22,31,0.0 +19267,54,7.45,45,0.0 +19267,27,43.9,36,0.0 +19267,46,12,47,0.0 +19267,75,7.75,28,0.0 +19267,76,18,14,0.0 +19267,62,49.3,13,0.0 +19267,47,9.5,14,0.0 +19267,53,32.8,43,0.0 +19267,64,33.25,39,0.0 +19267,30,25.89,10,0.0 +19267,58,13.25,12,0.0 +19267,6,25,48,0.0 +19267,32,32,16,0.0 +19268,35,18,20,0.0 +19268,70,15,25,0.0 +19268,8,40,18,0.0 +19268,20,81,36,0.0 +19268,47,9.5,5,0.0 +19268,65,21.05,28,0.0 +19268,58,13.25,2,0.0 +19268,50,16.25,24,0.0 +19268,52,7,25,0.0 +19268,57,19.5,7,0.0 +19268,66,17,29,0.0 +19268,18,62.5,45,0.0 +19268,68,12.5,42,0.0 +19268,28,45.6,34,0.0 +19268,23,9,46,0.0 +19268,6,25,11,0.0 +19268,41,9.65,36,0.0 +19268,48,12.75,37,0.0 +19268,56,38,15,0.0 +19268,17,39,34,0.0 +19268,45,9.5,15,0.0 +19268,74,10,16,0.0 +19268,53,32.8,9,0.0 +19268,1,18,27,0.0 +19268,24,4.5,17,0.0 +19268,7,30,31,0.0 +19268,64,33.25,17,0.0 +19268,26,31.23,40,0.0 +19268,22,21,5,0.0 +19268,16,17.45,43,0.0 +19268,9,97,23,0.0 +19268,33,2.5,44,0.0 +19268,46,12,19,0.0 +19268,3,10,28,0.0 +19268,44,19.45,34,0.0 +19268,25,14,9,0.0 +19268,43,46,18,0.0 +19268,32,32,31,0.0 +19268,77,13,18,0.0 +19268,40,18.4,7,0.0 +19268,76,18,42,0.0 +19268,51,53,34,0.0 +19268,63,43.9,45,0.0 +19268,5,21.35,25,0.0 +19268,38,263.5,43,0.0 +19268,14,23.25,25,0.0 +19268,55,24,48,0.0 +19268,11,21,28,0.0 +19268,31,12.5,17,0.0 +19268,2,19,31,0.0 +19268,37,26,29,0.0 +19268,60,34,49,0.0 +19268,36,19,10,0.0 +19268,67,14,41,0.0 +19268,15,15.5,30,0.0 +19268,49,20,30,0.0 +19268,27,43.9,24,0.0 +19268,13,6,25,0.0 +19268,62,49.3,24,0.0 +19268,72,34.8,5,0.0 +19268,30,25.89,49,0.0 +19268,19,9.2,27,0.0 +19268,34,14,3,0.0 +19268,4,22,44,0.0 +19268,39,18,18,0.0 +19268,29,123.79,40,0.0 +19268,10,31,11,0.0 +19269,70,15,45,0.0 +19269,76,18,45,0.0 +19269,25,14,30,0.0 +19269,29,123.79,24,0.0 +19269,40,18.4,24,0.0 +19270,54,7.45,29,0.0 +19270,59,55,22,0.0 +19270,64,33.25,40,0.0 +19270,65,21.05,16,0.0 +19270,49,20,36,0.0 +19270,16,17.45,35,0.0 +19270,9,97,31,0.0 +19270,42,14,46,0.0 +19270,5,21.35,26,0.0 +19270,6,25,45,0.0 +19270,52,7,28,0.0 +19270,46,12,34,0.0 +19270,21,10,9,0.0 +19270,56,38,20,0.0 +19270,38,263.5,6,0.0 +19270,25,14,18,0.0 +19271,64,33.25,21,0.0 +19271,47,9.5,27,0.0 +19271,39,18,34,0.0 +19271,41,9.65,23,0.0 +19271,40,18.4,26,0.0 +19271,62,49.3,24,0.0 +19271,38,263.5,29,0.0 +19271,68,12.5,26,0.0 +19271,12,38,18,0.0 +19271,58,13.25,30,0.0 +19271,50,16.25,18,0.0 +19271,28,45.6,2,0.0 +19271,75,7.75,36,0.0 +19271,53,32.8,46,0.0 +19271,17,39,8,0.0 +19271,55,24,46,0.0 +19271,21,10,34,0.0 +19271,51,53,24,0.0 +19271,14,23.25,11,0.0 +19271,33,2.5,34,0.0 +19271,9,97,7,0.0 +19271,48,12.75,16,0.0 +19271,10,31,9,0.0 +19271,45,9.5,48,0.0 +19271,67,14,20,0.0 +19271,29,123.79,14,0.0 +19271,7,30,16,0.0 +19271,6,25,41,0.0 +19272,4,22,29,0.0 +19272,58,13.25,24,0.0 +19272,68,12.5,43,0.0 +19272,36,19,3,0.0 +19272,53,32.8,48,0.0 +19272,37,26,33,0.0 +19272,47,9.5,47,0.0 +19272,39,18,38,0.0 +19272,13,6,37,0.0 +19272,12,38,40,0.0 +19272,57,19.5,5,0.0 +19272,8,40,40,0.0 +19272,75,7.75,35,0.0 +19272,42,14,16,0.0 +19272,14,23.25,11,0.0 +19272,35,18,27,0.0 +19272,30,25.89,43,0.0 +19272,59,55,27,0.0 +19272,41,9.65,44,0.0 +19272,43,46,8,0.0 +19272,52,7,7,0.0 +19272,62,49.3,12,0.0 +19272,18,62.5,40,0.0 +19272,2,19,38,0.0 +19272,54,7.45,1,0.0 +19272,34,14,37,0.0 +19272,74,10,24,0.0 +19272,26,31.23,36,0.0 +19272,15,15.5,8,0.0 +19272,27,43.9,42,0.0 +19272,19,9.2,39,0.0 +19272,44,19.45,22,0.0 +19272,46,12,50,0.0 +19272,5,21.35,13,0.0 +19272,71,21.5,32,0.0 +19272,45,9.5,27,0.0 +19272,38,263.5,49,0.0 +19272,70,15,4,0.0 +19272,63,43.9,20,0.0 +19272,49,20,50,0.0 +19272,61,28.5,38,0.0 +19272,77,13,7,0.0 +19272,17,39,25,0.0 +19272,24,4.5,19,0.0 +19272,76,18,16,0.0 +19272,22,21,35,0.0 +19272,32,32,39,0.0 +19272,21,10,13,0.0 +19272,7,30,16,0.0 +19272,51,53,28,0.0 +19272,66,17,9,0.0 +19272,65,21.05,40,0.0 +19272,1,18,16,0.0 +19272,69,36,48,0.0 +19272,31,12.5,24,0.0 +19272,25,14,20,0.0 +19272,56,38,42,0.0 +19272,48,12.75,12,0.0 +19272,6,25,16,0.0 +19272,11,21,36,0.0 +19272,55,24,39,0.0 +19272,28,45.6,40,0.0 +19272,29,123.79,34,0.0 +19272,64,33.25,28,0.0 +19272,72,34.8,4,0.0 +19272,16,17.45,7,0.0 +19272,60,34,19,0.0 +19272,20,81,8,0.0 +19272,50,16.25,15,0.0 +19272,10,31,26,0.0 +19272,23,9,23,0.0 +19272,3,10,1,0.0 +19272,33,2.5,19,0.0 +19272,40,18.4,33,0.0 +19272,73,15,33,0.0 +19272,9,97,30,0.0 +19272,67,14,35,0.0 +19273,56,38,14,0.0 +19273,51,53,33,0.0 +19273,57,19.5,33,0.0 +19273,11,21,50,0.0 +19273,42,14,30,0.0 +19273,7,30,13,0.0 +19273,36,19,32,0.0 +19273,16,17.45,10,0.0 +19273,23,9,45,0.0 +19273,41,9.65,25,0.0 +19273,38,263.5,20,0.0 +19273,18,62.5,5,0.0 +19273,69,36,43,0.0 +19273,65,21.05,10,0.0 +19273,74,10,2,0.0 +19273,25,14,15,0.0 +19273,48,12.75,13,0.0 +19273,49,20,44,0.0 +19273,47,9.5,35,0.0 +19273,70,15,37,0.0 +19273,20,81,2,0.0 +19273,58,13.25,29,0.0 +19273,3,10,30,0.0 +19273,19,9.2,28,0.0 +19273,72,34.8,37,0.0 +19273,29,123.79,18,0.0 +19273,6,25,15,0.0 +19273,59,55,26,0.0 +19273,43,46,48,0.0 +19273,54,7.45,38,0.0 +19273,12,38,42,0.0 +19273,64,33.25,33,0.0 +19273,5,21.35,11,0.0 +19273,53,32.8,37,0.0 +19273,24,4.5,43,0.0 +19273,40,18.4,30,0.0 +19273,50,16.25,35,0.0 +19273,14,23.25,25,0.0 +19273,55,24,44,0.0 +19273,15,15.5,30,0.0 +19273,8,40,38,0.0 +19273,77,13,28,0.0 +19273,33,2.5,16,0.0 +19273,75,7.75,6,0.0 +19273,28,45.6,14,0.0 +19273,45,9.5,34,0.0 +19273,39,18,14,0.0 +19273,62,49.3,7,0.0 +19273,17,39,14,0.0 +19273,22,21,37,0.0 +19273,4,22,18,0.0 +19273,76,18,30,0.0 +19273,63,43.9,1,0.0 +19273,34,14,28,0.0 +19273,32,32,16,0.0 +19273,73,15,47,0.0 +19274,7,30,38,0.0 +19274,32,32,47,0.0 +19274,37,26,18,0.0 +19274,49,20,4,0.0 +19274,46,12,46,0.0 +19274,23,9,49,0.0 +19274,63,43.9,41,0.0 +19274,20,81,50,0.0 +19274,33,2.5,14,0.0 +19274,43,46,3,0.0 +19274,47,9.5,2,0.0 +19274,2,19,31,0.0 +19274,51,53,46,0.0 +19274,52,7,6,0.0 +19274,31,12.5,25,0.0 +19275,26,31.23,24,0.0 +19275,64,33.25,21,0.0 +19275,65,21.05,26,0.0 +19275,73,15,26,0.0 +19275,55,24,26,0.0 +19275,16,17.45,29,0.0 +19275,74,10,7,0.0 +19275,71,21.5,29,0.0 +19276,66,17,9,0.0 +19276,36,19,35,0.0 +19276,49,20,16,0.0 +19276,56,38,7,0.0 +19276,24,4.5,40,0.0 +19276,62,49.3,15,0.0 +19276,70,15,38,0.0 +19276,48,12.75,39,0.0 +19276,51,53,39,0.0 +19276,10,31,50,0.0 +19276,55,24,14,0.0 +19276,22,21,26,0.0 +19276,16,17.45,44,0.0 +19276,59,55,8,0.0 +19276,47,9.5,6,0.0 +19276,6,25,7,0.0 +19276,41,9.65,14,0.0 +19276,31,12.5,4,0.0 +19276,3,10,30,0.0 +19276,26,31.23,35,0.0 +19276,64,33.25,18,0.0 +19276,11,21,11,0.0 +19276,52,7,25,0.0 +19276,60,34,8,0.0 +19276,33,2.5,43,0.0 +19277,62,49.3,49,0.0 +19277,59,55,50,0.0 +19278,7,30,37,0.0 +19278,66,17,3,0.0 +19278,60,34,15,0.0 +19278,42,14,4,0.0 +19278,5,21.35,42,0.0 +19278,10,31,24,0.0 +19278,39,18,44,0.0 +19278,64,33.25,13,0.0 +19278,9,97,7,0.0 +19278,27,43.9,49,0.0 +19278,61,28.5,22,0.0 +19278,72,34.8,49,0.0 +19278,50,16.25,23,0.0 +19278,34,14,25,0.0 +19278,12,38,41,0.0 +19278,44,19.45,10,0.0 +19278,43,46,25,0.0 +19278,49,20,40,0.0 +19278,52,7,47,0.0 +19278,74,10,3,0.0 +19278,73,15,9,0.0 +19278,24,4.5,21,0.0 +19278,56,38,11,0.0 +19278,58,13.25,18,0.0 +19278,4,22,30,0.0 +19278,32,32,40,0.0 +19278,21,10,39,0.0 +19278,8,40,48,0.0 +19278,16,17.45,1,0.0 +19278,30,25.89,8,0.0 +19279,21,10,50,0.0 +19279,51,53,47,0.0 +19279,66,17,27,0.0 +19279,35,18,34,0.0 +19279,29,123.79,36,0.0 +19279,44,19.45,46,0.0 +19279,73,15,45,0.0 +19279,8,40,5,0.0 +19279,24,4.5,26,0.0 +19279,61,28.5,23,0.0 +19279,41,9.65,13,0.0 +19279,5,21.35,35,0.0 +19279,71,21.5,37,0.0 +19280,11,21,49,0.0 +19280,14,23.25,18,0.0 +19280,17,39,5,0.0 +19280,19,9.2,36,0.0 +19280,75,7.75,19,0.0 +19280,44,19.45,48,0.0 +19280,72,34.8,46,0.0 +19280,47,9.5,20,0.0 +19280,27,43.9,17,0.0 +19280,16,17.45,6,0.0 +19280,2,19,11,0.0 +19280,10,31,10,0.0 +19280,18,62.5,45,0.0 +19280,55,24,2,0.0 +19280,48,12.75,29,0.0 +19280,54,7.45,11,0.0 +19280,32,32,18,0.0 +19280,74,10,2,0.0 +19280,71,21.5,36,0.0 +19280,28,45.6,35,0.0 +19280,52,7,1,0.0 +19280,56,38,24,0.0 +19280,68,12.5,3,0.0 +19280,36,19,18,0.0 +19280,34,14,30,0.0 +19280,64,33.25,45,0.0 +19280,38,263.5,9,0.0 +19280,1,18,9,0.0 +19280,69,36,50,0.0 +19280,73,15,24,0.0 +19280,41,9.65,2,0.0 +19281,69,36,9,0.0 +19281,5,21.35,44,0.0 +19281,55,24,10,0.0 +19281,40,18.4,22,0.0 +19281,63,43.9,40,0.0 +19281,31,12.5,7,0.0 +19282,36,19,22,0.0 +19282,30,25.89,17,0.0 +19282,65,21.05,36,0.0 +19282,57,19.5,8,0.0 +19282,3,10,10,0.0 +19282,17,39,27,0.0 +19282,69,36,23,0.0 +19282,58,13.25,46,0.0 +19282,40,18.4,37,0.0 +19282,2,19,30,0.0 +19282,13,6,4,0.0 +19282,19,9.2,49,0.0 +19282,77,13,16,0.0 +19282,34,14,28,0.0 +19282,45,9.5,49,0.0 +19282,49,20,31,0.0 +19282,33,2.5,21,0.0 +19282,10,31,2,0.0 +19282,9,97,2,0.0 +19282,74,10,23,0.0 +19282,24,4.5,6,0.0 +19282,48,12.75,37,0.0 +19282,26,31.23,23,0.0 +19282,71,21.5,42,0.0 +19282,37,26,16,0.0 +19282,25,14,10,0.0 +19282,68,12.5,25,0.0 +19282,47,9.5,10,0.0 +19282,14,23.25,46,0.0 +19282,4,22,34,0.0 +19282,7,30,44,0.0 +19282,5,21.35,5,0.0 +19282,56,38,3,0.0 +19282,16,17.45,6,0.0 +19282,55,24,19,0.0 +19283,8,40,15,0.0 +19283,34,14,26,0.0 +19283,4,22,3,0.0 +19283,50,16.25,12,0.0 +19283,36,19,14,0.0 +19283,23,9,31,0.0 +19283,25,14,31,0.0 +19283,17,39,38,0.0 +19283,19,9.2,34,0.0 +19283,28,45.6,41,0.0 +19283,5,21.35,26,0.0 +19284,63,43.9,10,0.0 +19284,23,9,13,0.0 +19284,16,17.45,39,0.0 +19284,56,38,43,0.0 +19284,68,12.5,41,0.0 +19284,33,2.5,42,0.0 +19284,62,49.3,22,0.0 +19284,20,81,42,0.0 +19284,19,9.2,26,0.0 +19284,46,12,23,0.0 +19284,13,6,25,0.0 +19284,22,21,41,0.0 +19284,47,9.5,10,0.0 +19284,24,4.5,37,0.0 +19284,54,7.45,4,0.0 +19284,45,9.5,13,0.0 +19284,69,36,16,0.0 +19284,65,21.05,35,0.0 +19284,66,17,22,0.0 +19284,21,10,27,0.0 +19284,49,20,15,0.0 +19284,11,21,48,0.0 +19284,14,23.25,45,0.0 +19284,70,15,41,0.0 +19284,5,21.35,42,0.0 +19284,43,46,26,0.0 +19284,42,14,25,0.0 +19284,36,19,41,0.0 +19284,75,7.75,46,0.0 +19284,27,43.9,21,0.0 +19284,53,32.8,44,0.0 +19284,15,15.5,36,0.0 +19284,67,14,37,0.0 +19284,34,14,25,0.0 +19284,55,24,1,0.0 +19284,61,28.5,46,0.0 +19284,8,40,1,0.0 +19284,7,30,23,0.0 +19284,37,26,38,0.0 +19284,71,21.5,38,0.0 +19284,72,34.8,32,0.0 +19284,39,18,13,0.0 +19284,35,18,46,0.0 +19284,30,25.89,47,0.0 +19284,73,15,31,0.0 +19284,57,19.5,5,0.0 +19284,26,31.23,30,0.0 +19284,4,22,35,0.0 +19284,59,55,33,0.0 +19284,51,53,35,0.0 +19285,57,19.5,37,0.0 +19285,28,45.6,30,0.0 +19285,70,15,41,0.0 +19285,73,15,23,0.0 +19285,17,39,32,0.0 +19285,49,20,8,0.0 +19285,44,19.45,8,0.0 +19285,13,6,6,0.0 +19285,40,18.4,45,0.0 +19285,45,9.5,34,0.0 +19285,75,7.75,38,0.0 +19285,33,2.5,23,0.0 +19285,20,81,3,0.0 +19285,68,12.5,46,0.0 +19285,72,34.8,11,0.0 +19285,35,18,48,0.0 +19285,61,28.5,29,0.0 +19285,32,32,7,0.0 +19285,3,10,3,0.0 +19285,29,123.79,48,0.0 +19285,18,62.5,38,0.0 +19285,62,49.3,18,0.0 +19285,39,18,32,0.0 +19285,26,31.23,32,0.0 +19285,24,4.5,20,0.0 +19285,67,14,1,0.0 +19285,14,23.25,8,0.0 +19285,47,9.5,6,0.0 +19285,69,36,36,0.0 +19285,46,12,44,0.0 +19285,36,19,16,0.0 +19285,55,24,42,0.0 +19285,34,14,24,0.0 +19285,2,19,40,0.0 +19285,42,14,46,0.0 +19285,11,21,42,0.0 +19285,1,18,31,0.0 +19285,53,32.8,37,0.0 +19285,37,26,25,0.0 +19285,66,17,15,0.0 +19285,30,25.89,41,0.0 +19285,76,18,40,0.0 +19285,8,40,11,0.0 +19285,5,21.35,2,0.0 +19285,48,12.75,15,0.0 +19285,64,33.25,16,0.0 +19285,74,10,40,0.0 +19285,27,43.9,16,0.0 +19285,10,31,15,0.0 +19285,71,21.5,32,0.0 +19285,41,9.65,42,0.0 +19285,15,15.5,40,0.0 +19285,23,9,12,0.0 +19285,51,53,40,0.0 +19285,38,263.5,34,0.0 +19286,32,32,12,0.0 +19286,54,7.45,41,0.0 +19286,21,10,2,0.0 +19286,50,16.25,33,0.0 +19286,27,43.9,16,0.0 +19286,23,9,36,0.0 +19286,60,34,11,0.0 +19286,63,43.9,11,0.0 +19286,59,55,23,0.0 +19286,19,9.2,15,0.0 +19286,52,7,44,0.0 +19286,28,45.6,29,0.0 +19286,61,28.5,49,0.0 +19286,72,34.8,12,0.0 +19286,24,4.5,20,0.0 +19286,69,36,42,0.0 +19286,9,97,1,0.0 +19286,18,62.5,11,0.0 +19286,44,19.45,32,0.0 +19286,22,21,35,0.0 +19286,14,23.25,25,0.0 +19286,42,14,43,0.0 +19286,68,12.5,21,0.0 +19287,77,13,45,0.0 +19288,27,43.9,16,0.0 +19288,19,9.2,6,0.0 +19288,9,97,2,0.0 +19288,74,10,31,0.0 +19288,52,7,16,0.0 +19288,23,9,29,0.0 +19288,63,43.9,7,0.0 +19288,26,31.23,4,0.0 +19288,34,14,12,0.0 +19288,69,36,24,0.0 +19288,31,12.5,46,0.0 +19288,2,19,38,0.0 +19288,68,12.5,46,0.0 +19288,15,15.5,38,0.0 +19288,12,38,28,0.0 +19288,22,21,34,0.0 +19288,7,30,18,0.0 +19288,37,26,7,0.0 +19288,38,263.5,10,0.0 +19288,43,46,4,0.0 +19288,33,2.5,16,0.0 +19288,73,15,41,0.0 +19288,36,19,2,0.0 +19288,55,24,33,0.0 +19288,17,39,26,0.0 +19288,42,14,28,0.0 +19288,60,34,26,0.0 +19288,16,17.45,23,0.0 +19288,25,14,3,0.0 +19288,48,12.75,21,0.0 +19288,28,45.6,35,0.0 +19288,10,31,20,0.0 +19288,32,32,7,0.0 +19288,11,21,30,0.0 +19288,1,18,33,0.0 +19288,21,10,1,0.0 +19288,5,21.35,49,0.0 +19288,20,81,46,0.0 +19288,49,20,9,0.0 +19288,76,18,40,0.0 +19288,47,9.5,10,0.0 +19288,62,49.3,30,0.0 +19288,30,25.89,5,0.0 +19288,57,19.5,11,0.0 +19288,71,21.5,13,0.0 +19288,59,55,22,0.0 +19288,45,9.5,23,0.0 +19288,18,62.5,33,0.0 +19288,75,7.75,10,0.0 +19288,67,14,16,0.0 +19288,39,18,21,0.0 +19288,13,6,47,0.0 +19288,72,34.8,18,0.0 +19288,41,9.65,40,0.0 +19289,48,12.75,31,0.0 +19289,5,21.35,10,0.0 +19289,16,17.45,42,0.0 +19289,31,12.5,9,0.0 +19289,36,19,15,0.0 +19289,35,18,38,0.0 +19289,32,32,5,0.0 +19289,6,25,14,0.0 +19289,59,55,47,0.0 +19289,47,9.5,33,0.0 +19289,60,34,6,0.0 +19289,73,15,20,0.0 +19289,71,21.5,8,0.0 +19289,51,53,49,0.0 +19289,8,40,35,0.0 +19289,40,18.4,21,0.0 +19289,76,18,16,0.0 +19289,23,9,3,0.0 +19289,19,9.2,17,0.0 +19289,30,25.89,6,0.0 +19289,26,31.23,39,0.0 +19289,70,15,34,0.0 +19289,11,21,41,0.0 +19289,50,16.25,48,0.0 +19289,38,263.5,24,0.0 +19289,45,9.5,22,0.0 +19289,65,21.05,1,0.0 +19289,25,14,36,0.0 +19289,66,17,22,0.0 +19289,58,13.25,46,0.0 +19289,57,19.5,11,0.0 +19289,61,28.5,29,0.0 +19289,69,36,12,0.0 +19289,10,31,50,0.0 +19289,29,123.79,11,0.0 +19289,64,33.25,14,0.0 +19289,41,9.65,2,0.0 +19289,33,2.5,30,0.0 +19289,52,7,4,0.0 +19289,4,22,23,0.0 +19289,17,39,7,0.0 +19289,43,46,6,0.0 +19290,62,49.3,37,0.0 +19290,59,55,19,0.0 +19290,33,2.5,43,0.0 +19290,67,14,24,0.0 +19290,6,25,13,0.0 +19290,38,263.5,7,0.0 +19290,32,32,7,0.0 +19290,3,10,12,0.0 +19290,31,12.5,25,0.0 +19290,43,46,35,0.0 +19290,40,18.4,22,0.0 +19290,46,12,30,0.0 +19290,7,30,38,0.0 +19290,61,28.5,29,0.0 +19290,73,15,49,0.0 +19290,42,14,25,0.0 +19290,44,19.45,50,0.0 +19290,18,62.5,43,0.0 +19290,63,43.9,21,0.0 +19290,77,13,50,0.0 +19290,35,18,29,0.0 +19290,36,19,43,0.0 +19290,14,23.25,4,0.0 +19290,10,31,24,0.0 +19290,12,38,7,0.0 +19290,20,81,1,0.0 +19290,76,18,26,0.0 +19290,60,34,9,0.0 +19290,21,10,26,0.0 +19290,56,38,39,0.0 +19290,41,9.65,25,0.0 +19290,28,45.6,50,0.0 +19290,66,17,26,0.0 +19290,30,25.89,20,0.0 +19290,4,22,7,0.0 +19290,11,21,43,0.0 +19291,10,31,15,0.0 +19291,23,9,20,0.0 +19291,25,14,20,0.0 +19291,8,40,5,0.0 +19291,26,31.23,50,0.0 +19291,72,34.8,16,0.0 +19291,31,12.5,29,0.0 +19291,19,9.2,1,0.0 +19292,63,43.9,5,0.0 +19292,66,17,26,0.0 +19292,32,32,3,0.0 +19292,24,4.5,45,0.0 +19292,51,53,17,0.0 +19292,50,16.25,50,0.0 +19292,13,6,45,0.0 +19292,42,14,19,0.0 +19292,21,10,38,0.0 +19292,41,9.65,5,0.0 +19292,31,12.5,22,0.0 +19292,52,7,47,0.0 +19292,23,9,7,0.0 +19292,54,7.45,12,0.0 +19292,33,2.5,7,0.0 +19292,60,34,43,0.0 +19292,44,19.45,33,0.0 +19292,57,19.5,11,0.0 +19292,47,9.5,8,0.0 +19292,30,25.89,21,0.0 +19292,76,18,3,0.0 +19292,77,13,31,0.0 +19292,69,36,45,0.0 +19292,53,32.8,25,0.0 +19292,1,18,20,0.0 +19292,73,15,7,0.0 +19292,56,38,10,0.0 +19292,26,31.23,49,0.0 +19292,65,21.05,38,0.0 +19292,58,13.25,31,0.0 +19292,70,15,9,0.0 +19292,3,10,12,0.0 +19292,39,18,5,0.0 +19292,64,33.25,9,0.0 +19292,59,55,10,0.0 +19292,20,81,9,0.0 +19292,22,21,30,0.0 +19292,6,25,35,0.0 +19292,35,18,11,0.0 +19292,18,62.5,35,0.0 +19292,43,46,47,0.0 +19292,38,263.5,41,0.0 +19292,28,45.6,45,0.0 +19292,68,12.5,3,0.0 +19292,27,43.9,15,0.0 +19292,10,31,32,0.0 +19292,11,21,41,0.0 +19292,19,9.2,12,0.0 +19292,72,34.8,46,0.0 +19292,4,22,8,0.0 +19292,61,28.5,17,0.0 +19293,41,9.65,39,0.0 +19293,40,18.4,31,0.0 +19293,28,45.6,32,0.0 +19293,24,4.5,35,0.0 +19293,1,18,50,0.0 +19293,19,9.2,40,0.0 +19293,38,263.5,45,0.0 +19293,22,21,14,0.0 +19293,66,17,36,0.0 +19293,65,21.05,30,0.0 +19293,72,34.8,15,0.0 +19293,58,13.25,11,0.0 +19293,55,24,18,0.0 +19293,45,9.5,20,0.0 +19293,54,7.45,3,0.0 +19293,63,43.9,25,0.0 +19293,23,9,1,0.0 +19293,25,14,15,0.0 +19293,52,7,35,0.0 +19293,70,15,39,0.0 +19293,3,10,29,0.0 +19293,6,25,15,0.0 +19293,33,2.5,1,0.0 +19293,43,46,22,0.0 +19293,31,12.5,20,0.0 +19293,20,81,17,0.0 +19293,27,43.9,15,0.0 +19293,7,30,33,0.0 +19293,53,32.8,44,0.0 +19293,9,97,47,0.0 +19293,71,21.5,22,0.0 +19293,36,19,15,0.0 +19293,77,13,15,0.0 +19293,4,22,35,0.0 +19293,30,25.89,43,0.0 +19293,39,18,15,0.0 +19293,49,20,28,0.0 +19293,10,31,6,0.0 +19293,51,53,34,0.0 +19293,8,40,47,0.0 +19293,60,34,21,0.0 +19293,47,9.5,33,0.0 +19293,34,14,17,0.0 +19293,11,21,50,0.0 +19293,59,55,2,0.0 +19293,5,21.35,44,0.0 +19293,17,39,5,0.0 +19293,2,19,22,0.0 +19293,14,23.25,16,0.0 +19293,29,123.79,42,0.0 +19293,74,10,42,0.0 +19293,18,62.5,28,0.0 +19293,76,18,44,0.0 +19293,12,38,41,0.0 +19293,57,19.5,49,0.0 +19293,15,15.5,49,0.0 +19293,44,19.45,34,0.0 +19293,26,31.23,6,0.0 +19293,35,18,47,0.0 +19293,75,7.75,11,0.0 +19293,68,12.5,13,0.0 +19293,37,26,44,0.0 +19293,42,14,35,0.0 +19293,69,36,36,0.0 +19293,67,14,46,0.0 +19293,56,38,14,0.0 +19293,46,12,4,0.0 +19293,62,49.3,31,0.0 +19294,2,19,23,0.0 +19294,40,18.4,36,0.0 +19294,58,13.25,27,0.0 +19294,45,9.5,35,0.0 +19294,56,38,49,0.0 +19294,65,21.05,26,0.0 +19294,28,45.6,15,0.0 +19294,69,36,3,0.0 +19294,4,22,22,0.0 +19294,35,18,17,0.0 +19294,57,19.5,41,0.0 +19294,17,39,44,0.0 +19294,76,18,46,0.0 +19294,16,17.45,12,0.0 +19294,48,12.75,32,0.0 +19294,46,12,29,0.0 +19294,41,9.65,23,0.0 +19294,50,16.25,48,0.0 +19294,24,4.5,37,0.0 +19294,22,21,44,0.0 +19294,10,31,45,0.0 +19294,14,23.25,48,0.0 +19294,30,25.89,36,0.0 +19294,51,53,50,0.0 +19294,68,12.5,7,0.0 +19294,72,34.8,5,0.0 +19294,39,18,40,0.0 +19294,6,25,46,0.0 +19294,13,6,47,0.0 +19294,61,28.5,50,0.0 +19294,54,7.45,47,0.0 +19294,29,123.79,4,0.0 +19294,1,18,42,0.0 +19294,8,40,28,0.0 +19294,74,10,8,0.0 +19294,55,24,4,0.0 +19294,21,10,12,0.0 +19294,3,10,46,0.0 +19294,37,26,39,0.0 +19294,9,97,9,0.0 +19294,63,43.9,23,0.0 +19294,64,33.25,8,0.0 +19294,47,9.5,11,0.0 +19294,5,21.35,3,0.0 +19294,42,14,22,0.0 +19294,19,9.2,4,0.0 +19294,73,15,32,0.0 +19294,18,62.5,32,0.0 +19294,70,15,27,0.0 +19294,32,32,3,0.0 +19294,11,21,48,0.0 +19294,67,14,32,0.0 +19294,31,12.5,36,0.0 +19294,38,263.5,12,0.0 +19294,71,21.5,3,0.0 +19294,20,81,41,0.0 +19294,27,43.9,35,0.0 +19294,62,49.3,15,0.0 +19294,36,19,5,0.0 +19294,49,20,31,0.0 +19294,26,31.23,17,0.0 +19294,52,7,46,0.0 +19294,25,14,41,0.0 +19294,7,30,45,0.0 +19294,12,38,35,0.0 +19294,43,46,15,0.0 +19294,33,2.5,25,0.0 +19294,53,32.8,3,0.0 +19294,44,19.45,46,0.0 +19294,59,55,49,0.0 +19294,75,7.75,33,0.0 +19294,23,9,32,0.0 +19294,77,13,27,0.0 +19294,15,15.5,23,0.0 +19294,60,34,20,0.0 +19294,66,17,46,0.0 +19294,34,14,28,0.0 +19295,55,24,27,0.0 +19295,14,23.25,7,0.0 +19295,67,14,34,0.0 +19295,45,9.5,24,0.0 +19295,65,21.05,42,0.0 +19295,30,25.89,20,0.0 +19295,5,21.35,38,0.0 +19295,46,12,47,0.0 +19295,39,18,6,0.0 +19295,57,19.5,36,0.0 +19295,7,30,5,0.0 +19295,70,15,10,0.0 +19295,59,55,8,0.0 +19295,34,14,41,0.0 +19295,75,7.75,6,0.0 +19295,28,45.6,14,0.0 +19295,37,26,11,0.0 +19295,18,62.5,14,0.0 +19295,49,20,12,0.0 +19295,27,43.9,3,0.0 +19295,66,17,4,0.0 +19295,32,32,12,0.0 +19295,61,28.5,8,0.0 +19295,19,9.2,32,0.0 +19295,8,40,34,0.0 +19295,52,7,20,0.0 +19295,10,31,33,0.0 +19295,22,21,5,0.0 +19295,68,12.5,8,0.0 +19295,58,13.25,11,0.0 +19295,43,46,45,0.0 +19295,17,39,28,0.0 +19295,60,34,12,0.0 +19295,29,123.79,50,0.0 +19295,23,9,47,0.0 +19295,4,22,44,0.0 +19295,47,9.5,36,0.0 +19295,56,38,22,0.0 +19295,41,9.65,43,0.0 +19295,26,31.23,8,0.0 +19295,63,43.9,7,0.0 +19295,31,12.5,12,0.0 +19295,72,34.8,34,0.0 +19295,42,14,1,0.0 +19295,9,97,16,0.0 +19295,35,18,39,0.0 +19295,74,10,37,0.0 +19295,36,19,27,0.0 +19295,3,10,37,0.0 +19295,15,15.5,9,0.0 +19295,33,2.5,14,0.0 +19295,12,38,15,0.0 +19295,11,21,33,0.0 +19295,50,16.25,38,0.0 +19295,20,81,24,0.0 +19296,74,10,16,0.0 +19296,18,62.5,4,0.0 +19296,17,39,37,0.0 +19296,64,33.25,45,0.0 +19296,41,9.65,36,0.0 +19296,45,9.5,20,0.0 +19296,19,9.2,25,0.0 +19296,67,14,7,0.0 +19296,24,4.5,46,0.0 +19296,49,20,13,0.0 +19296,3,10,17,0.0 +19296,14,23.25,11,0.0 +19296,77,13,27,0.0 +19296,68,12.5,16,0.0 +19296,15,15.5,47,0.0 +19296,29,123.79,22,0.0 +19296,25,14,32,0.0 +19296,70,15,34,0.0 +19296,6,25,27,0.0 +19296,72,34.8,13,0.0 +19296,42,14,10,0.0 +19296,40,18.4,24,0.0 +19296,60,34,32,0.0 +19296,2,19,9,0.0 +19297,9,97,28,0.0 +19297,72,34.8,3,0.0 +19297,21,10,50,0.0 +19297,35,18,5,0.0 +19297,31,12.5,1,0.0 +19297,22,21,46,0.0 +19297,65,21.05,24,0.0 +19297,55,24,48,0.0 +19297,53,32.8,6,0.0 +19297,42,14,2,0.0 +19297,13,6,41,0.0 +19297,69,36,4,0.0 +19297,73,15,14,0.0 +19297,67,14,38,0.0 +19297,66,17,20,0.0 +19297,4,22,42,0.0 +19297,49,20,2,0.0 +19297,52,7,44,0.0 +19297,24,4.5,11,0.0 +19297,8,40,18,0.0 +19297,17,39,1,0.0 +19297,6,25,34,0.0 +19297,56,38,17,0.0 +19297,23,9,21,0.0 +19297,62,49.3,39,0.0 +19297,32,32,12,0.0 +19297,16,17.45,20,0.0 +19297,30,25.89,34,0.0 +19297,60,34,36,0.0 +19297,51,53,28,0.0 +19297,44,19.45,2,0.0 +19297,54,7.45,14,0.0 +19297,18,62.5,4,0.0 +19297,20,81,14,0.0 +19297,11,21,44,0.0 +19297,64,33.25,45,0.0 +19297,76,18,19,0.0 +19297,36,19,2,0.0 +19297,7,30,31,0.0 +19297,27,43.9,50,0.0 +19297,33,2.5,28,0.0 +19297,5,21.35,4,0.0 +19297,57,19.5,42,0.0 +19297,14,23.25,30,0.0 +19297,2,19,18,0.0 +19297,61,28.5,9,0.0 +19297,39,18,3,0.0 +19297,34,14,35,0.0 +19297,25,14,13,0.0 +19297,12,38,19,0.0 +19297,19,9.2,6,0.0 +19297,77,13,17,0.0 +19297,46,12,9,0.0 +19297,3,10,50,0.0 +19297,43,46,8,0.0 +19297,71,21.5,26,0.0 +19297,38,263.5,13,0.0 +19297,29,123.79,44,0.0 +19297,47,9.5,19,0.0 +19297,15,15.5,5,0.0 +19297,37,26,32,0.0 +19297,10,31,29,0.0 +19297,50,16.25,48,0.0 +19297,58,13.25,11,0.0 +19297,59,55,13,0.0 +19297,1,18,8,0.0 +19298,72,34.8,32,0.0 +19298,38,263.5,27,0.0 +19298,16,17.45,2,0.0 +19298,51,53,2,0.0 +19298,45,9.5,12,0.0 +19298,66,17,25,0.0 +19298,39,18,25,0.0 +19298,59,55,10,0.0 +19298,68,12.5,44,0.0 +19298,9,97,34,0.0 +19298,34,14,30,0.0 +19298,40,18.4,8,0.0 +19298,74,10,49,0.0 +19298,35,18,32,0.0 +19298,75,7.75,14,0.0 +19298,33,2.5,49,0.0 +19298,17,39,13,0.0 +19298,28,45.6,29,0.0 +19298,65,21.05,23,0.0 +19298,11,21,49,0.0 +19298,77,13,16,0.0 +19298,73,15,38,0.0 +19298,55,24,39,0.0 +19298,48,12.75,36,0.0 +19298,32,32,46,0.0 +19298,1,18,10,0.0 +19298,36,19,20,0.0 +19298,57,19.5,14,0.0 +19298,19,9.2,8,0.0 +19299,14,23.25,19,0.0 +19299,50,16.25,22,0.0 +19299,40,18.4,7,0.0 +19299,73,15,29,0.0 +19299,36,19,21,0.0 +19299,6,25,20,0.0 +19299,69,36,43,0.0 +19299,76,18,27,0.0 +19299,52,7,17,0.0 +19299,46,12,7,0.0 +19299,24,4.5,45,0.0 +19299,28,45.6,27,0.0 +19299,22,21,8,0.0 +19299,45,9.5,40,0.0 +19299,25,14,15,0.0 +19299,21,10,41,0.0 +19299,42,14,34,0.0 +19299,12,38,30,0.0 +19299,29,123.79,14,0.0 +19299,15,15.5,14,0.0 +19299,65,21.05,31,0.0 +19299,9,97,31,0.0 +19299,4,22,34,0.0 +19299,57,19.5,11,0.0 +19299,33,2.5,44,0.0 +19299,10,31,5,0.0 +19299,58,13.25,15,0.0 +19299,61,28.5,44,0.0 +19299,7,30,34,0.0 +19299,30,25.89,3,0.0 +19299,70,15,46,0.0 +19299,18,62.5,7,0.0 +19299,20,81,37,0.0 +19299,55,24,35,0.0 +19299,41,9.65,43,0.0 +19299,64,33.25,45,0.0 +19299,17,39,1,0.0 +19299,13,6,22,0.0 +19299,63,43.9,3,0.0 +19299,5,21.35,4,0.0 +19299,72,34.8,12,0.0 +19299,59,55,41,0.0 +19299,56,38,18,0.0 +19299,34,14,14,0.0 +19299,16,17.45,24,0.0 +19299,51,53,18,0.0 +19299,31,12.5,17,0.0 +19299,8,40,27,0.0 +19299,67,14,6,0.0 +19299,48,12.75,41,0.0 +19299,1,18,16,0.0 +19299,2,19,26,0.0 +19299,49,20,38,0.0 +19299,35,18,35,0.0 +19299,44,19.45,5,0.0 +19299,3,10,35,0.0 +19299,27,43.9,11,0.0 +19299,62,49.3,30,0.0 +19299,75,7.75,41,0.0 +19299,26,31.23,19,0.0 +19299,77,13,22,0.0 +19299,32,32,47,0.0 +19299,54,7.45,7,0.0 +19299,19,9.2,40,0.0 +19299,68,12.5,42,0.0 +19299,71,21.5,6,0.0 +19299,23,9,40,0.0 +19299,74,10,15,0.0 +19299,47,9.5,43,0.0 +19299,11,21,35,0.0 +19299,38,263.5,28,0.0 +19299,66,17,19,0.0 +19299,43,46,36,0.0 +19299,53,32.8,47,0.0 +19299,60,34,48,0.0 +19299,39,18,16,0.0 +19299,37,26,44,0.0 +19300,31,12.5,36,0.0 +19300,2,19,23,0.0 +19300,48,12.75,12,0.0 +19300,45,9.5,20,0.0 +19300,15,15.5,10,0.0 +19300,20,81,47,0.0 +19300,74,10,17,0.0 +19300,40,18.4,50,0.0 +19300,29,123.79,26,0.0 +19300,43,46,3,0.0 +19300,4,22,36,0.0 +19300,52,7,41,0.0 +19300,46,12,6,0.0 +19300,12,38,4,0.0 +19300,69,36,1,0.0 +19300,27,43.9,9,0.0 +19300,42,14,41,0.0 +19300,13,6,39,0.0 +19300,44,19.45,35,0.0 +19300,65,21.05,6,0.0 +19300,17,39,25,0.0 +19300,7,30,16,0.0 +19300,18,62.5,8,0.0 +19300,72,34.8,28,0.0 +19300,68,12.5,3,0.0 +19300,34,14,39,0.0 +19300,28,45.6,5,0.0 +19300,73,15,31,0.0 +19300,35,18,24,0.0 +19300,62,49.3,12,0.0 +19300,61,28.5,21,0.0 +19300,54,7.45,46,0.0 +19300,36,19,46,0.0 +19300,21,10,9,0.0 +19300,5,21.35,49,0.0 +19300,60,34,44,0.0 +19300,51,53,34,0.0 +19300,64,33.25,18,0.0 +19300,59,55,35,0.0 +19300,37,26,35,0.0 +19300,56,38,5,0.0 +19300,19,9.2,22,0.0 +19300,50,16.25,25,0.0 +19300,58,13.25,15,0.0 +19300,10,31,21,0.0 +19300,8,40,3,0.0 +19300,23,9,29,0.0 +19300,33,2.5,47,0.0 +19300,70,15,17,0.0 +19300,41,9.65,15,0.0 +19300,77,13,44,0.0 +19300,39,18,48,0.0 +19300,38,263.5,16,0.0 +19300,1,18,41,0.0 +19300,55,24,5,0.0 +19300,25,14,19,0.0 +19300,6,25,42,0.0 +19300,71,21.5,10,0.0 +19300,63,43.9,45,0.0 +19301,70,15,23,0.0 +19301,53,32.8,31,0.0 +19301,17,39,26,0.0 +19301,51,53,18,0.0 +19301,57,19.5,46,0.0 +19301,23,9,3,0.0 +19301,72,34.8,49,0.0 +19301,41,9.65,27,0.0 +19301,4,22,26,0.0 +19301,26,31.23,29,0.0 +19301,9,97,34,0.0 +19301,12,38,29,0.0 +19301,19,9.2,18,0.0 +19301,22,21,6,0.0 +19301,45,9.5,29,0.0 +19301,73,15,4,0.0 +19301,43,46,37,0.0 +19301,71,21.5,8,0.0 +19301,68,12.5,41,0.0 +19301,55,24,1,0.0 +19301,66,17,22,0.0 +19301,21,10,14,0.0 +19301,30,25.89,30,0.0 +19302,25,14,36,0.0 +19302,48,12.75,37,0.0 +19302,62,49.3,41,0.0 +19302,3,10,44,0.0 +19302,47,9.5,7,0.0 +19302,36,19,5,0.0 +19302,68,12.5,11,0.0 +19302,12,38,49,0.0 +19302,29,123.79,35,0.0 +19302,64,33.25,8,0.0 +19302,19,9.2,45,0.0 +19303,64,33.25,2,0.0 +19303,5,21.35,42,0.0 +19303,59,55,11,0.0 +19303,26,31.23,29,0.0 +19303,29,123.79,1,0.0 +19303,63,43.9,32,0.0 +19303,30,25.89,38,0.0 +19303,60,34,30,0.0 +19303,35,18,8,0.0 +19303,17,39,4,0.0 +19303,34,14,40,0.0 +19303,28,45.6,29,0.0 +19303,53,32.8,23,0.0 +19303,45,9.5,38,0.0 +19303,73,15,28,0.0 +19303,77,13,42,0.0 +19303,19,9.2,18,0.0 +19303,55,24,10,0.0 +19303,42,14,7,0.0 +19303,46,12,27,0.0 +19303,24,4.5,42,0.0 +19303,54,7.45,32,0.0 +19303,23,9,38,0.0 +19303,50,16.25,6,0.0 +19303,39,18,10,0.0 +19303,22,21,47,0.0 +19303,51,53,17,0.0 +19303,76,18,7,0.0 +19303,70,15,8,0.0 +19303,58,13.25,41,0.0 +19303,8,40,13,0.0 +19303,52,7,32,0.0 +19303,12,38,22,0.0 +19303,3,10,47,0.0 +19303,31,12.5,20,0.0 +19303,69,36,11,0.0 +19303,15,15.5,10,0.0 +19303,48,12.75,40,0.0 +19303,7,30,18,0.0 +19303,49,20,28,0.0 +19303,75,7.75,42,0.0 +19303,9,97,34,0.0 +19303,71,21.5,21,0.0 +19303,18,62.5,32,0.0 +19303,36,19,22,0.0 +19303,16,17.45,12,0.0 +19303,21,10,16,0.0 +19303,47,9.5,30,0.0 +19303,6,25,3,0.0 +19303,44,19.45,34,0.0 +19303,56,38,18,0.0 +19303,43,46,6,0.0 +19303,72,34.8,45,0.0 +19303,33,2.5,38,0.0 +19303,32,32,40,0.0 +19303,11,21,47,0.0 +19304,8,40,5,0.0 +19304,40,18.4,43,0.0 +19304,64,33.25,28,0.0 +19304,6,25,45,0.0 +19304,63,43.9,17,0.0 +19304,72,34.8,25,0.0 +19304,17,39,46,0.0 +19304,21,10,47,0.0 +19304,70,15,3,0.0 +19304,24,4.5,14,0.0 +19304,61,28.5,2,0.0 +19304,20,81,39,0.0 +19304,36,19,5,0.0 +19304,18,62.5,14,0.0 +19304,62,49.3,6,0.0 +19304,30,25.89,35,0.0 +19304,52,7,29,0.0 +19304,11,21,3,0.0 +19304,13,6,22,0.0 +19304,26,31.23,9,0.0 +19304,56,38,16,0.0 +19304,41,9.65,14,0.0 +19304,69,36,36,0.0 +19304,15,15.5,9,0.0 +19304,34,14,12,0.0 +19304,33,2.5,46,0.0 +19304,47,9.5,43,0.0 +19304,58,13.25,49,0.0 +19304,2,19,26,0.0 +19304,54,7.45,2,0.0 +19304,31,12.5,21,0.0 +19304,77,13,3,0.0 +19304,74,10,34,0.0 +19304,73,15,12,0.0 +19304,59,55,42,0.0 +19304,14,23.25,43,0.0 +19304,3,10,17,0.0 +19304,10,31,23,0.0 +19304,75,7.75,32,0.0 +19304,48,12.75,29,0.0 +19304,25,14,14,0.0 +19304,44,19.45,11,0.0 +19304,12,38,19,0.0 +19304,71,21.5,10,0.0 +19304,27,43.9,17,0.0 +19304,55,24,24,0.0 +19304,43,46,42,0.0 +19304,50,16.25,43,0.0 +19304,49,20,3,0.0 +19304,1,18,2,0.0 +19305,8,40,9,0.0 +19305,55,24,3,0.0 +19305,10,31,5,0.0 +19305,27,43.9,2,0.0 +19305,1,18,7,0.0 +19305,53,32.8,22,0.0 +19305,34,14,18,0.0 +19305,16,17.45,14,0.0 +19305,30,25.89,32,0.0 +19305,33,2.5,22,0.0 +19305,47,9.5,31,0.0 +19305,39,18,45,0.0 +19305,2,19,11,0.0 +19305,74,10,41,0.0 +19305,36,19,49,0.0 +19305,72,34.8,13,0.0 +19305,42,14,5,0.0 +19305,59,55,47,0.0 +19305,60,34,20,0.0 +19305,41,9.65,2,0.0 +19305,58,13.25,5,0.0 +19305,46,12,49,0.0 +19305,45,9.5,30,0.0 +19305,20,81,22,0.0 +19305,48,12.75,27,0.0 +19305,7,30,4,0.0 +19305,13,6,13,0.0 +19305,44,19.45,48,0.0 +19305,6,25,34,0.0 +19305,19,9.2,19,0.0 +19305,56,38,4,0.0 +19305,64,33.25,2,0.0 +19305,12,38,22,0.0 +19305,54,7.45,49,0.0 +19305,14,23.25,47,0.0 +19305,40,18.4,35,0.0 +19305,5,21.35,40,0.0 +19305,50,16.25,46,0.0 +19305,51,53,34,0.0 +19305,65,21.05,41,0.0 +19305,3,10,47,0.0 +19305,21,10,33,0.0 +19305,24,4.5,21,0.0 +19305,25,14,29,0.0 +19305,77,13,18,0.0 +19305,67,14,22,0.0 +19305,32,32,25,0.0 +19305,18,62.5,2,0.0 +19305,43,46,9,0.0 +19305,28,45.6,12,0.0 +19305,73,15,45,0.0 +19305,9,97,39,0.0 +19305,22,21,25,0.0 +19305,57,19.5,2,0.0 +19305,37,26,40,0.0 +19305,70,15,43,0.0 +19305,11,21,16,0.0 +19305,63,43.9,10,0.0 +19305,26,31.23,44,0.0 +19305,31,12.5,15,0.0 +19305,75,7.75,29,0.0 +19305,68,12.5,13,0.0 +19305,62,49.3,33,0.0 +19305,4,22,41,0.0 +19305,71,21.5,25,0.0 +19305,76,18,8,0.0 +19305,29,123.79,42,0.0 +19306,53,32.8,3,0.0 +19306,8,40,33,0.0 +19306,7,30,24,0.0 +19306,28,45.6,19,0.0 +19306,60,34,5,0.0 +19306,68,12.5,41,0.0 +19306,56,38,44,0.0 +19306,42,14,16,0.0 +19306,12,38,37,0.0 +19306,50,16.25,11,0.0 +19306,70,15,23,0.0 +19306,48,12.75,2,0.0 +19306,31,12.5,29,0.0 +19306,30,25.89,33,0.0 +19306,22,21,10,0.0 +19306,76,18,8,0.0 +19306,20,81,21,0.0 +19306,38,263.5,16,0.0 +19306,1,18,38,0.0 +19306,55,24,3,0.0 +19306,54,7.45,19,0.0 +19306,59,55,27,0.0 +19306,10,31,14,0.0 +19306,18,62.5,43,0.0 +19306,21,10,7,0.0 +19306,5,21.35,3,0.0 +19306,72,34.8,32,0.0 +19306,66,17,44,0.0 +19306,77,13,41,0.0 +19306,26,31.23,35,0.0 +19306,45,9.5,44,0.0 +19306,74,10,18,0.0 +19306,75,7.75,18,0.0 +19306,11,21,5,0.0 +19306,57,19.5,38,0.0 +19306,3,10,36,0.0 +19306,27,43.9,39,0.0 +19306,15,15.5,30,0.0 +19306,43,46,38,0.0 +19306,62,49.3,46,0.0 +19306,24,4.5,21,0.0 +19306,40,18.4,16,0.0 +19306,34,14,13,0.0 +19306,47,9.5,17,0.0 +19306,14,23.25,19,0.0 +19306,16,17.45,35,0.0 +19306,64,33.25,22,0.0 +19307,5,21.35,10,0.0 +19307,44,19.45,2,0.0 +19307,47,9.5,1,0.0 +19307,46,12,48,0.0 +19307,19,9.2,18,0.0 +19307,8,40,46,0.0 +19307,58,13.25,24,0.0 +19307,1,18,31,0.0 +19307,34,14,29,0.0 +19307,65,21.05,15,0.0 +19307,38,263.5,38,0.0 +19307,12,38,37,0.0 +19307,73,15,14,0.0 +19307,16,17.45,43,0.0 +19307,29,123.79,38,0.0 +19307,31,12.5,9,0.0 +19308,26,31.23,33,0.0 +19308,24,4.5,27,0.0 +19308,75,7.75,39,0.0 +19308,27,43.9,18,0.0 +19308,70,15,46,0.0 +19308,4,22,34,0.0 +19308,1,18,50,0.0 +19308,57,19.5,7,0.0 +19308,53,32.8,7,0.0 +19308,63,43.9,23,0.0 +19308,35,18,6,0.0 +19308,33,2.5,4,0.0 +19308,77,13,11,0.0 +19308,36,19,23,0.0 +19308,62,49.3,11,0.0 +19308,56,38,40,0.0 +19308,41,9.65,7,0.0 +19308,12,38,2,0.0 +19308,18,62.5,27,0.0 +19308,32,32,31,0.0 +19308,51,53,13,0.0 +19308,5,21.35,14,0.0 +19308,17,39,13,0.0 +19308,23,9,8,0.0 +19308,60,34,45,0.0 +19308,46,12,11,0.0 +19308,66,17,6,0.0 +19308,16,17.45,29,0.0 +19308,55,24,19,0.0 +19308,43,46,18,0.0 +19308,50,16.25,7,0.0 +19308,49,20,9,0.0 +19308,61,28.5,29,0.0 +19308,25,14,47,0.0 +19308,44,19.45,40,0.0 +19308,15,15.5,17,0.0 +19308,71,21.5,23,0.0 +19308,34,14,28,0.0 +19308,13,6,4,0.0 +19308,21,10,9,0.0 +19308,67,14,25,0.0 +19308,11,21,17,0.0 +19308,68,12.5,33,0.0 +19308,45,9.5,49,0.0 +19308,37,26,45,0.0 +19308,58,13.25,42,0.0 +19308,31,12.5,22,0.0 +19308,20,81,1,0.0 +19308,22,21,13,0.0 +19308,29,123.79,18,0.0 +19308,38,263.5,42,0.0 +19308,28,45.6,22,0.0 +19308,14,23.25,11,0.0 +19308,6,25,9,0.0 +19308,30,25.89,38,0.0 +19308,9,97,9,0.0 +19308,19,9.2,29,0.0 +19308,52,7,6,0.0 +19308,72,34.8,17,0.0 +19308,69,36,44,0.0 +19309,37,26,1,0.0 +19309,19,9.2,22,0.0 +19309,57,19.5,20,0.0 +19309,51,53,16,0.0 +19309,2,19,21,0.0 +19309,23,9,4,0.0 +19309,65,21.05,34,0.0 +19309,61,28.5,13,0.0 +19309,26,31.23,28,0.0 +19309,20,81,15,0.0 +19309,53,32.8,45,0.0 +19309,66,17,29,0.0 +19309,56,38,24,0.0 +19309,44,19.45,4,0.0 +19309,13,6,29,0.0 +19309,28,45.6,9,0.0 +19309,21,10,8,0.0 +19309,22,21,33,0.0 +19309,48,12.75,11,0.0 +19309,42,14,28,0.0 +19309,74,10,43,0.0 +19309,5,21.35,43,0.0 +19309,70,15,20,0.0 +19309,38,263.5,5,0.0 +19309,73,15,44,0.0 +19309,25,14,26,0.0 +19309,62,49.3,28,0.0 +19309,71,21.5,43,0.0 +19309,12,38,22,0.0 +19309,45,9.5,6,0.0 +19309,4,22,29,0.0 +19309,46,12,43,0.0 +19309,36,19,2,0.0 +19309,16,17.45,36,0.0 +19309,31,12.5,25,0.0 +19309,33,2.5,47,0.0 +19309,35,18,26,0.0 +19309,40,18.4,31,0.0 +19309,39,18,39,0.0 +19309,8,40,21,0.0 +19309,10,31,32,0.0 +19309,72,34.8,37,0.0 +19309,49,20,14,0.0 +19309,1,18,13,0.0 +19310,12,38,37,0.0 +19310,2,19,46,0.0 +19310,36,19,2,0.0 +19310,33,2.5,22,0.0 +19310,3,10,6,0.0 +19310,31,12.5,33,0.0 +19310,4,22,28,0.0 +19310,23,9,30,0.0 +19310,39,18,4,0.0 +19310,7,30,9,0.0 +19310,32,32,43,0.0 +19310,26,31.23,45,0.0 +19310,37,26,11,0.0 +19310,46,12,15,0.0 +19310,45,9.5,6,0.0 +19310,34,14,3,0.0 +19310,43,46,23,0.0 +19310,24,4.5,3,0.0 +19310,6,25,42,0.0 +19310,8,40,33,0.0 +19310,19,9.2,3,0.0 +19310,44,19.45,22,0.0 +19310,65,21.05,4,0.0 +19310,54,7.45,5,0.0 +19310,75,7.75,23,0.0 +19310,16,17.45,45,0.0 +19310,68,12.5,17,0.0 +19310,56,38,2,0.0 +19310,40,18.4,21,0.0 +19310,25,14,42,0.0 +19310,30,25.89,34,0.0 +19310,10,31,27,0.0 +19310,42,14,8,0.0 +19310,15,15.5,12,0.0 +19310,51,53,16,0.0 +19310,14,23.25,35,0.0 +19310,18,62.5,39,0.0 +19310,74,10,15,0.0 +19310,76,18,19,0.0 +19310,62,49.3,5,0.0 +19310,9,97,10,0.0 +19310,70,15,45,0.0 +19310,58,13.25,2,0.0 +19310,61,28.5,43,0.0 +19310,66,17,47,0.0 +19310,71,21.5,30,0.0 +19310,41,9.65,6,0.0 +19310,5,21.35,5,0.0 +19310,52,7,46,0.0 +19310,60,34,38,0.0 +19310,72,34.8,25,0.0 +19310,38,263.5,25,0.0 +19310,55,24,50,0.0 +19310,11,21,14,0.0 +19310,77,13,3,0.0 +19310,50,16.25,44,0.0 +19310,35,18,36,0.0 +19310,69,36,22,0.0 +19310,29,123.79,5,0.0 +19310,22,21,26,0.0 +19310,21,10,21,0.0 +19310,28,45.6,17,0.0 +19310,67,14,2,0.0 +19310,47,9.5,35,0.0 +19310,1,18,31,0.0 +19311,4,22,37,0.0 +19311,51,53,12,0.0 +19311,13,6,8,0.0 +19311,35,18,38,0.0 +19311,74,10,26,0.0 +19311,26,31.23,45,0.0 +19311,20,81,34,0.0 +19311,36,19,6,0.0 +19311,27,43.9,10,0.0 +19311,61,28.5,29,0.0 +19311,15,15.5,38,0.0 +19311,49,20,43,0.0 +19311,10,31,15,0.0 +19311,1,18,35,0.0 +19311,39,18,25,0.0 +19311,50,16.25,16,0.0 +19311,40,18.4,49,0.0 +19311,29,123.79,19,0.0 +19311,34,14,40,0.0 +19311,72,34.8,10,0.0 +19311,21,10,3,0.0 +19311,25,14,5,0.0 +19311,64,33.25,18,0.0 +19311,71,21.5,9,0.0 +19311,16,17.45,12,0.0 +19311,32,32,5,0.0 +19311,75,7.75,24,0.0 +19311,57,19.5,40,0.0 +19311,41,9.65,41,0.0 +19311,63,43.9,29,0.0 +19311,17,39,14,0.0 +19311,22,21,42,0.0 +19311,60,34,24,0.0 +19311,62,49.3,30,0.0 +19311,33,2.5,29,0.0 +19311,12,38,46,0.0 +19311,18,62.5,48,0.0 +19311,23,9,5,0.0 +19311,7,30,25,0.0 +19311,6,25,46,0.0 +19311,54,7.45,27,0.0 +19311,59,55,7,0.0 +19311,9,97,15,0.0 +19311,24,4.5,44,0.0 +19311,66,17,43,0.0 +19311,68,12.5,44,0.0 +19311,55,24,30,0.0 +19311,44,19.45,30,0.0 +19311,67,14,4,0.0 +19311,58,13.25,8,0.0 +19311,43,46,35,0.0 +19311,2,19,22,0.0 +19311,31,12.5,41,0.0 +19311,42,14,11,0.0 +19311,47,9.5,35,0.0 +19311,19,9.2,10,0.0 +19311,5,21.35,26,0.0 +19311,56,38,43,0.0 +19311,73,15,49,0.0 +19311,53,32.8,35,0.0 +19311,30,25.89,19,0.0 +19311,11,21,50,0.0 +19311,52,7,27,0.0 +19311,77,13,47,0.0 +19311,8,40,48,0.0 +19311,76,18,16,0.0 +19311,14,23.25,22,0.0 +19311,38,263.5,49,0.0 +19311,46,12,3,0.0 +19311,37,26,16,0.0 +19311,48,12.75,45,0.0 +19312,75,7.75,42,0.0 +19312,25,14,20,0.0 +19312,36,19,10,0.0 +19312,73,15,37,0.0 +19312,39,18,26,0.0 +19312,9,97,38,0.0 +19312,49,20,33,0.0 +19312,30,25.89,45,0.0 +19312,28,45.6,22,0.0 +19312,38,263.5,22,0.0 +19312,71,21.5,17,0.0 +19312,69,36,38,0.0 +19312,14,23.25,33,0.0 +19312,66,17,23,0.0 +19312,20,81,50,0.0 +19312,60,34,26,0.0 +19312,61,28.5,7,0.0 +19312,72,34.8,17,0.0 +19312,3,10,7,0.0 +19312,52,7,23,0.0 +19312,59,55,31,0.0 +19312,50,16.25,2,0.0 +19312,1,18,42,0.0 +19312,6,25,34,0.0 +19313,28,45.6,12,0.0 +19313,57,19.5,6,0.0 +19313,76,18,39,0.0 +19313,66,17,10,0.0 +19313,13,6,32,0.0 +19313,48,12.75,19,0.0 +19313,22,21,49,0.0 +19313,53,32.8,7,0.0 +19313,34,14,44,0.0 +19313,61,28.5,21,0.0 +19313,49,20,36,0.0 +19313,17,39,35,0.0 +19313,25,14,16,0.0 +19313,9,97,15,0.0 +19313,69,36,50,0.0 +19313,68,12.5,30,0.0 +19313,3,10,24,0.0 +19313,32,32,3,0.0 +19313,4,22,35,0.0 +19313,74,10,31,0.0 +19313,46,12,36,0.0 +19313,11,21,44,0.0 +19313,2,19,3,0.0 +19313,50,16.25,38,0.0 +19313,37,26,33,0.0 +19313,33,2.5,48,0.0 +19313,8,40,48,0.0 +19313,40,18.4,29,0.0 +19313,6,25,2,0.0 +19313,63,43.9,46,0.0 +19313,30,25.89,25,0.0 +19313,36,19,16,0.0 +19313,42,14,45,0.0 +19313,39,18,23,0.0 +19313,75,7.75,15,0.0 +19313,60,34,24,0.0 +19313,43,46,31,0.0 +19313,5,21.35,29,0.0 +19313,27,43.9,49,0.0 +19313,18,62.5,42,0.0 +19313,19,9.2,33,0.0 +19313,73,15,11,0.0 +19313,26,31.23,22,0.0 +19313,70,15,15,0.0 +19313,15,15.5,48,0.0 +19313,71,21.5,33,0.0 +19313,35,18,2,0.0 +19313,67,14,33,0.0 +19313,23,9,17,0.0 +19313,14,23.25,35,0.0 +19313,72,34.8,29,0.0 +19313,62,49.3,42,0.0 +19313,29,123.79,6,0.0 +19313,56,38,24,0.0 +19313,52,7,35,0.0 +19313,59,55,36,0.0 +19313,44,19.45,22,0.0 +19313,1,18,40,0.0 +19313,12,38,1,0.0 +19313,65,21.05,11,0.0 +19313,47,9.5,1,0.0 +19313,64,33.25,45,0.0 +19313,51,53,45,0.0 +19313,54,7.45,48,0.0 +19313,31,12.5,2,0.0 +19313,24,4.5,44,0.0 +19313,7,30,21,0.0 +19313,20,81,17,0.0 +19313,10,31,40,0.0 +19313,41,9.65,20,0.0 +19313,58,13.25,11,0.0 +19313,45,9.5,36,0.0 +19313,55,24,28,0.0 +19314,35,18,14,0.0 +19314,8,40,47,0.0 +19314,75,7.75,6,0.0 +19314,55,24,8,0.0 +19314,70,15,16,0.0 +19314,5,21.35,35,0.0 +19314,18,62.5,44,0.0 +19314,38,263.5,13,0.0 +19314,65,21.05,3,0.0 +19314,45,9.5,14,0.0 +19314,56,38,2,0.0 +19314,69,36,47,0.0 +19315,5,21.35,28,0.0 +19315,6,25,14,0.0 +19315,46,12,41,0.0 +19315,25,14,16,0.0 +19315,75,7.75,25,0.0 +19315,52,7,33,0.0 +19315,73,15,11,0.0 +19315,56,38,15,0.0 +19315,70,15,37,0.0 +19315,38,263.5,39,0.0 +19315,67,14,44,0.0 +19315,39,18,40,0.0 +19315,40,18.4,1,0.0 +19315,49,20,29,0.0 +19315,2,19,46,0.0 +19315,41,9.65,26,0.0 +19315,15,15.5,22,0.0 +19315,34,14,46,0.0 +19315,72,34.8,1,0.0 +19315,59,55,32,0.0 +19315,57,19.5,20,0.0 +19315,14,23.25,4,0.0 +19315,27,43.9,34,0.0 +19315,69,36,36,0.0 +19315,16,17.45,7,0.0 +19315,64,33.25,45,0.0 +19315,63,43.9,44,0.0 +19315,58,13.25,25,0.0 +19315,74,10,27,0.0 +19315,12,38,10,0.0 +19315,36,19,32,0.0 +19315,54,7.45,35,0.0 +19315,24,4.5,33,0.0 +19315,60,34,29,0.0 +19315,8,40,12,0.0 +19315,23,9,31,0.0 +19315,4,22,24,0.0 +19315,45,9.5,19,0.0 +19315,3,10,19,0.0 +19315,19,9.2,19,0.0 +19315,33,2.5,47,0.0 +19315,35,18,11,0.0 +19315,17,39,21,0.0 +19315,66,17,33,0.0 +19315,76,18,26,0.0 +19315,7,30,39,0.0 +19315,11,21,40,0.0 +19315,30,25.89,40,0.0 +19315,61,28.5,10,0.0 +19315,21,10,47,0.0 +19315,18,62.5,3,0.0 +19315,1,18,33,0.0 +19315,62,49.3,35,0.0 +19315,68,12.5,22,0.0 +19315,53,32.8,21,0.0 +19315,71,21.5,38,0.0 +19315,77,13,14,0.0 +19315,55,24,3,0.0 +19315,10,31,12,0.0 +19315,50,16.25,40,0.0 +19315,51,53,3,0.0 +19315,20,81,50,0.0 +19315,28,45.6,43,0.0 +19315,9,97,15,0.0 +19315,37,26,14,0.0 +19315,43,46,36,0.0 +19315,42,14,35,0.0 +19315,65,21.05,28,0.0 +19315,32,32,49,0.0 +19315,13,6,1,0.0 +19315,47,9.5,37,0.0 +19315,48,12.75,30,0.0 +19315,44,19.45,30,0.0 +19315,26,31.23,28,0.0 +19315,31,12.5,43,0.0 +19316,5,21.35,11,0.0 +19316,58,13.25,17,0.0 +19316,43,46,40,0.0 +19316,70,15,22,0.0 +19316,68,12.5,29,0.0 +19316,60,34,3,0.0 +19316,26,31.23,33,0.0 +19316,73,15,43,0.0 +19316,36,19,31,0.0 +19316,76,18,34,0.0 +19316,39,18,41,0.0 +19316,55,24,15,0.0 +19316,28,45.6,28,0.0 +19316,41,9.65,43,0.0 +19316,64,33.25,32,0.0 +19316,66,17,47,0.0 +19316,67,14,21,0.0 +19316,11,21,1,0.0 +19316,46,12,35,0.0 +19316,1,18,21,0.0 +19316,38,263.5,7,0.0 +19316,33,2.5,20,0.0 +19316,61,28.5,12,0.0 +19316,16,17.45,11,0.0 +19316,63,43.9,14,0.0 +19316,17,39,48,0.0 +19316,10,31,16,0.0 +19316,35,18,50,0.0 +19316,47,9.5,46,0.0 +19316,69,36,22,0.0 +19316,30,25.89,29,0.0 +19316,15,15.5,5,0.0 +19316,74,10,12,0.0 +19316,18,62.5,2,0.0 +19316,62,49.3,19,0.0 +19316,20,81,36,0.0 +19316,54,7.45,49,0.0 +19316,27,43.9,40,0.0 +19316,6,25,30,0.0 +19316,57,19.5,15,0.0 +19316,29,123.79,48,0.0 +19316,49,20,13,0.0 +19316,23,9,49,0.0 +19316,14,23.25,23,0.0 +19316,56,38,40,0.0 +19316,8,40,43,0.0 +19316,50,16.25,31,0.0 +19316,22,21,39,0.0 +19316,51,53,23,0.0 +19316,19,9.2,43,0.0 +19316,77,13,44,0.0 +19316,34,14,25,0.0 +19316,72,34.8,33,0.0 +19316,52,7,4,0.0 +19316,59,55,23,0.0 +19316,13,6,32,0.0 +19316,37,26,26,0.0 +19317,67,14,30,0.0 +19317,41,9.65,42,0.0 +19317,1,18,43,0.0 +19317,71,21.5,27,0.0 +19317,31,12.5,23,0.0 +19317,37,26,30,0.0 +19317,2,19,15,0.0 +19317,52,7,9,0.0 +19317,65,21.05,11,0.0 +19317,74,10,19,0.0 +19317,28,45.6,20,0.0 +19317,56,38,15,0.0 +19317,14,23.25,9,0.0 +19317,77,13,9,0.0 +19317,36,19,33,0.0 +19317,42,14,43,0.0 +19317,75,7.75,40,0.0 +19317,19,9.2,11,0.0 +19317,43,46,23,0.0 +19317,16,17.45,39,0.0 +19317,27,43.9,7,0.0 +19317,40,18.4,3,0.0 +19317,34,14,20,0.0 +19317,48,12.75,32,0.0 +19317,47,9.5,32,0.0 +19317,17,39,39,0.0 +19317,9,97,41,0.0 +19317,64,33.25,18,0.0 +19318,31,12.5,7,0.0 +19318,35,18,22,0.0 +19318,34,14,34,0.0 +19318,64,33.25,27,0.0 +19318,50,16.25,23,0.0 +19318,41,9.65,39,0.0 +19318,55,24,7,0.0 +19318,16,17.45,35,0.0 +19318,8,40,20,0.0 +19318,24,4.5,6,0.0 +19318,11,21,24,0.0 +19318,39,18,1,0.0 +19318,32,32,47,0.0 +19318,36,19,14,0.0 +19318,29,123.79,20,0.0 +19318,44,19.45,11,0.0 +19318,61,28.5,43,0.0 +19318,74,10,16,0.0 +19318,66,17,42,0.0 +19318,7,30,23,0.0 +19318,52,7,31,0.0 +19318,51,53,13,0.0 +19318,42,14,23,0.0 +19318,1,18,10,0.0 +19318,60,34,35,0.0 +19318,13,6,31,0.0 +19319,3,10,43,0.0 +19319,23,9,14,0.0 +19319,55,24,47,0.0 +19319,8,40,44,0.0 +19319,9,97,18,0.0 +19319,18,62.5,11,0.0 +19319,16,17.45,31,0.0 +19319,35,18,4,0.0 +19319,57,19.5,20,0.0 +19319,61,28.5,8,0.0 +19319,7,30,22,0.0 +19319,54,7.45,25,0.0 +19319,60,34,34,0.0 +19319,58,13.25,27,0.0 +19319,75,7.75,30,0.0 +19319,62,49.3,17,0.0 +19319,38,263.5,12,0.0 +19319,65,21.05,36,0.0 +19319,71,21.5,17,0.0 +19319,32,32,3,0.0 +19319,59,55,4,0.0 +19319,63,43.9,20,0.0 +19319,73,15,27,0.0 +19319,74,10,29,0.0 +19319,20,81,25,0.0 +19319,56,38,29,0.0 +19319,49,20,50,0.0 +19319,29,123.79,12,0.0 +19319,5,21.35,34,0.0 +19319,40,18.4,32,0.0 +19319,13,6,47,0.0 +19319,26,31.23,38,0.0 +19319,4,22,31,0.0 +19319,47,9.5,42,0.0 +19319,14,23.25,17,0.0 +19319,10,31,40,0.0 +19319,19,9.2,49,0.0 +19319,77,13,8,0.0 +19319,53,32.8,7,0.0 +19319,27,43.9,14,0.0 +19319,68,12.5,38,0.0 +19319,6,25,2,0.0 +19319,11,21,35,0.0 +19319,30,25.89,9,0.0 +19319,21,10,49,0.0 +19319,41,9.65,22,0.0 +19319,48,12.75,37,0.0 +19319,52,7,44,0.0 +19319,46,12,20,0.0 +19319,24,4.5,29,0.0 +19319,12,38,25,0.0 +19319,72,34.8,40,0.0 +19319,51,53,34,0.0 +19319,67,14,47,0.0 +19319,22,21,31,0.0 +19319,15,15.5,10,0.0 +19319,37,26,5,0.0 +19319,33,2.5,2,0.0 +19319,69,36,5,0.0 +19319,17,39,43,0.0 +19319,70,15,4,0.0 +19319,31,12.5,40,0.0 +19319,39,18,48,0.0 +19319,36,19,20,0.0 +19319,66,17,13,0.0 +19319,76,18,42,0.0 +19319,28,45.6,18,0.0 +19319,25,14,31,0.0 +19319,45,9.5,26,0.0 +19320,76,18,26,0.0 +19320,74,10,3,0.0 +19320,75,7.75,38,0.0 +19320,64,33.25,13,0.0 +19320,15,15.5,7,0.0 +19320,63,43.9,50,0.0 +19320,26,31.23,37,0.0 +19320,14,23.25,12,0.0 +19320,25,14,7,0.0 +19320,72,34.8,18,0.0 +19320,47,9.5,22,0.0 +19320,9,97,16,0.0 +19320,66,17,14,0.0 +19320,22,21,12,0.0 +19320,35,18,35,0.0 +19320,65,21.05,14,0.0 +19320,71,21.5,50,0.0 +19320,48,12.75,49,0.0 +19320,53,32.8,21,0.0 +19320,55,24,4,0.0 +19320,32,32,10,0.0 +19320,5,21.35,17,0.0 +19320,39,18,33,0.0 +19320,54,7.45,34,0.0 +19320,45,9.5,17,0.0 +19320,56,38,34,0.0 +19320,52,7,16,0.0 +19320,36,19,12,0.0 +19320,27,43.9,11,0.0 +19320,16,17.45,3,0.0 +19320,37,26,41,0.0 +19320,60,34,49,0.0 +19320,38,263.5,7,0.0 +19321,67,14,12,0.0 +19321,21,10,10,0.0 +19321,49,20,9,0.0 +19321,56,38,30,0.0 +19321,20,81,10,0.0 +19321,39,18,34,0.0 +19321,36,19,47,0.0 +19321,7,30,26,0.0 +19321,58,13.25,44,0.0 +19321,50,16.25,41,0.0 +19321,18,62.5,12,0.0 +19321,22,21,23,0.0 +19321,5,21.35,16,0.0 +19321,55,24,46,0.0 +19321,19,9.2,10,0.0 +19321,13,6,47,0.0 +19321,12,38,37,0.0 +19321,66,17,41,0.0 +19321,46,12,29,0.0 +19321,69,36,46,0.0 +19321,27,43.9,9,0.0 +19321,16,17.45,36,0.0 +19321,1,18,28,0.0 +19321,61,28.5,48,0.0 +19321,3,10,43,0.0 +19321,10,31,4,0.0 +19321,53,32.8,10,0.0 +19322,7,30,6,0.0 +19322,57,19.5,36,0.0 +19322,25,14,50,0.0 +19322,26,31.23,48,0.0 +19322,33,2.5,44,0.0 +19322,15,15.5,7,0.0 +19322,38,263.5,36,0.0 +19322,51,53,32,0.0 +19322,58,13.25,37,0.0 +19322,44,19.45,5,0.0 +19322,34,14,45,0.0 +19322,68,12.5,20,0.0 +19322,3,10,44,0.0 +19322,45,9.5,17,0.0 +19322,76,18,49,0.0 +19322,50,16.25,35,0.0 +19322,35,18,11,0.0 +19322,8,40,25,0.0 +19322,16,17.45,1,0.0 +19322,70,15,42,0.0 +19322,69,36,11,0.0 +19322,42,14,15,0.0 +19322,20,81,20,0.0 +19322,36,19,40,0.0 +19322,48,12.75,43,0.0 +19322,40,18.4,48,0.0 +19322,62,49.3,2,0.0 +19322,56,38,34,0.0 +19322,52,7,41,0.0 +19322,49,20,19,0.0 +19322,47,9.5,18,0.0 +19323,72,34.8,32,0.0 +19323,40,18.4,29,0.0 +19324,21,10,16,0.0 +19324,19,9.2,46,0.0 +19324,2,19,36,0.0 +19324,45,9.5,31,0.0 +19324,46,12,12,0.0 +19324,26,31.23,44,0.0 +19324,29,123.79,47,0.0 +19324,54,7.45,18,0.0 +19324,24,4.5,5,0.0 +19324,69,36,14,0.0 +19324,4,22,23,0.0 +19324,64,33.25,37,0.0 +19324,34,14,27,0.0 +19324,56,38,12,0.0 +19324,32,32,24,0.0 +19324,25,14,19,0.0 +19324,33,2.5,32,0.0 +19324,40,18.4,39,0.0 +19324,59,55,44,0.0 +19324,60,34,33,0.0 +19324,1,18,16,0.0 +19324,14,23.25,44,0.0 +19324,76,18,44,0.0 +19324,77,13,2,0.0 +19324,63,43.9,50,0.0 +19324,38,263.5,45,0.0 +19324,27,43.9,19,0.0 +19324,37,26,30,0.0 +19324,70,15,42,0.0 +19324,9,97,14,0.0 +19324,5,21.35,40,0.0 +19324,13,6,40,0.0 +19324,16,17.45,16,0.0 +19324,8,40,32,0.0 +19324,3,10,27,0.0 +19324,52,7,44,0.0 +19324,31,12.5,7,0.0 +19324,43,46,25,0.0 +19325,65,21.05,37,0.0 +19325,29,123.79,38,0.0 +19325,75,7.75,29,0.0 +19325,13,6,4,0.0 +19325,16,17.45,29,0.0 +19325,46,12,1,0.0 +19325,64,33.25,35,0.0 +19325,35,18,22,0.0 +19325,49,20,35,0.0 +19325,26,31.23,33,0.0 +19325,53,32.8,33,0.0 +19325,47,9.5,24,0.0 +19325,44,19.45,39,0.0 +19325,24,4.5,21,0.0 +19325,25,14,44,0.0 +19326,66,17,7,0.0 +19326,21,10,23,0.0 +19326,7,30,38,0.0 +19326,53,32.8,36,0.0 +19326,57,19.5,6,0.0 +19326,77,13,18,0.0 +19326,5,21.35,9,0.0 +19326,32,32,44,0.0 +19326,14,23.25,42,0.0 +19326,71,21.5,3,0.0 +19326,62,49.3,47,0.0 +19326,59,55,15,0.0 +19326,54,7.45,8,0.0 +19326,2,19,14,0.0 +19326,61,28.5,43,0.0 +19326,58,13.25,24,0.0 +19326,26,31.23,8,0.0 +19326,28,45.6,38,0.0 +19326,52,7,50,0.0 +19326,41,9.65,1,0.0 +19326,20,81,3,0.0 +19326,46,12,21,0.0 +19326,1,18,5,0.0 +19326,63,43.9,23,0.0 +19326,25,14,7,0.0 +19326,42,14,17,0.0 +19326,15,15.5,43,0.0 +19326,72,34.8,15,0.0 +19326,76,18,18,0.0 +19326,31,12.5,16,0.0 +19326,6,25,31,0.0 +19326,13,6,8,0.0 +19326,11,21,25,0.0 +19326,44,19.45,32,0.0 +19326,48,12.75,5,0.0 +19326,47,9.5,7,0.0 +19327,48,12.75,50,0.0 +19327,47,9.5,9,0.0 +19327,40,18.4,18,0.0 +19327,27,43.9,45,0.0 +19327,36,19,46,0.0 +19327,9,97,2,0.0 +19327,50,16.25,8,0.0 +19327,16,17.45,41,0.0 +19327,23,9,34,0.0 +19327,70,15,32,0.0 +19327,26,31.23,4,0.0 +19327,8,40,2,0.0 +19327,56,38,5,0.0 +19327,7,30,40,0.0 +19327,10,31,5,0.0 +19327,6,25,49,0.0 +19327,14,23.25,24,0.0 +19327,64,33.25,35,0.0 +19327,5,21.35,18,0.0 +19327,42,14,34,0.0 +19327,12,38,13,0.0 +19327,11,21,9,0.0 +19327,34,14,14,0.0 +19327,57,19.5,22,0.0 +19327,77,13,48,0.0 +19327,15,15.5,46,0.0 +19327,30,25.89,47,0.0 +19327,55,24,14,0.0 +19327,31,12.5,46,0.0 +19327,51,53,45,0.0 +19327,4,22,44,0.0 +19327,46,12,14,0.0 +19327,73,15,32,0.0 +19327,17,39,35,0.0 +19327,61,28.5,19,0.0 +19327,38,263.5,2,0.0 +19327,76,18,42,0.0 +19327,45,9.5,24,0.0 +19327,18,62.5,43,0.0 +19327,58,13.25,49,0.0 +19327,53,32.8,1,0.0 +19327,29,123.79,34,0.0 +19327,63,43.9,13,0.0 +19328,36,19,33,0.0 +19328,40,18.4,50,0.0 +19328,28,45.6,42,0.0 +19328,31,12.5,3,0.0 +19328,17,39,18,0.0 +19328,46,12,23,0.0 +19328,35,18,29,0.0 +19328,69,36,16,0.0 +19328,14,23.25,11,0.0 +19328,59,55,31,0.0 +19328,29,123.79,21,0.0 +19328,24,4.5,20,0.0 +19328,19,9.2,20,0.0 +19328,62,49.3,9,0.0 +19328,55,24,39,0.0 +19328,53,32.8,13,0.0 +19328,66,17,50,0.0 +19328,34,14,3,0.0 +19328,75,7.75,16,0.0 +19328,2,19,4,0.0 +19328,7,30,32,0.0 +19328,11,21,27,0.0 +19328,68,12.5,36,0.0 +19328,56,38,48,0.0 +19328,51,53,39,0.0 +19328,18,62.5,21,0.0 +19328,65,21.05,10,0.0 +19328,72,34.8,6,0.0 +19328,63,43.9,24,0.0 +19328,3,10,17,0.0 +19328,33,2.5,27,0.0 +19328,50,16.25,49,0.0 +19328,37,26,7,0.0 +19328,13,6,13,0.0 +19328,57,19.5,42,0.0 +19328,8,40,17,0.0 +19328,20,81,24,0.0 +19328,58,13.25,14,0.0 +19329,62,49.3,31,0.0 +19329,63,43.9,34,0.0 +19329,5,21.35,40,0.0 +19329,52,7,46,0.0 +19329,67,14,19,0.0 +19329,20,81,13,0.0 +19329,11,21,44,0.0 +19329,53,32.8,29,0.0 +19329,61,28.5,40,0.0 +19329,56,38,12,0.0 +19329,27,43.9,30,0.0 +19329,64,33.25,18,0.0 +19329,7,30,16,0.0 +19329,49,20,39,0.0 +19329,6,25,50,0.0 +19329,23,9,22,0.0 +19329,35,18,48,0.0 +19329,55,24,11,0.0 +19329,37,26,33,0.0 +19329,76,18,4,0.0 +19329,50,16.25,19,0.0 +19329,16,17.45,35,0.0 +19330,53,32.8,36,0.0 +19330,14,23.25,21,0.0 +19330,57,19.5,13,0.0 +19330,42,14,44,0.0 +19330,76,18,14,0.0 +19330,61,28.5,27,0.0 +19330,20,81,34,0.0 +19330,31,12.5,19,0.0 +19330,24,4.5,49,0.0 +19330,26,31.23,24,0.0 +19330,54,7.45,34,0.0 +19330,77,13,47,0.0 +19330,28,45.6,22,0.0 +19330,62,49.3,18,0.0 +19330,63,43.9,48,0.0 +19330,44,19.45,43,0.0 +19330,46,12,9,0.0 +19330,72,34.8,10,0.0 +19330,60,34,1,0.0 +19331,38,263.5,47,0.0 +19331,39,18,48,0.0 +19331,64,33.25,17,0.0 +19331,73,15,29,0.0 +19331,51,53,27,0.0 +19331,77,13,35,0.0 +19332,35,18,26,0.0 +19332,17,39,43,0.0 +19332,9,97,49,0.0 +19332,61,28.5,39,0.0 +19332,7,30,36,0.0 +19332,10,31,30,0.0 +19332,2,19,10,0.0 +19332,25,14,12,0.0 +19332,68,12.5,14,0.0 +19332,6,25,26,0.0 +19332,60,34,28,0.0 +19332,15,15.5,28,0.0 +19332,67,14,39,0.0 +19332,13,6,46,0.0 +19332,57,19.5,25,0.0 +19332,32,32,34,0.0 +19332,27,43.9,41,0.0 +19332,12,38,4,0.0 +19332,14,23.25,16,0.0 +19333,25,14,19,0.0 +19333,36,19,18,0.0 +19333,33,2.5,35,0.0 +19333,3,10,47,0.0 +19333,77,13,7,0.0 +19333,9,97,32,0.0 +19333,41,9.65,15,0.0 +19333,53,32.8,28,0.0 +19333,15,15.5,33,0.0 +19333,57,19.5,43,0.0 +19333,44,19.45,26,0.0 +19333,5,21.35,25,0.0 +19333,22,21,41,0.0 +19333,27,43.9,44,0.0 +19333,35,18,17,0.0 +19333,8,40,17,0.0 +19333,21,10,38,0.0 +19333,59,55,11,0.0 +19333,56,38,28,0.0 +19333,7,30,34,0.0 +19333,60,34,24,0.0 +19333,64,33.25,18,0.0 +19333,11,21,3,0.0 +19333,16,17.45,17,0.0 +19333,70,15,28,0.0 +19333,18,62.5,33,0.0 +19333,62,49.3,12,0.0 +19333,50,16.25,24,0.0 +19333,17,39,25,0.0 +19333,31,12.5,19,0.0 +19334,39,18,22,0.0 +19334,66,17,26,0.0 +19334,71,21.5,2,0.0 +19334,44,19.45,8,0.0 +19334,10,31,1,0.0 +19334,12,38,9,0.0 +19334,40,18.4,21,0.0 +19334,32,32,12,0.0 +19334,20,81,23,0.0 +19334,37,26,13,0.0 +19334,64,33.25,15,0.0 +19334,51,53,2,0.0 +19334,16,17.45,2,0.0 +19334,75,7.75,9,0.0 +19334,52,7,22,0.0 +19334,46,12,3,0.0 +19334,22,21,38,0.0 +19334,14,23.25,33,0.0 +19335,30,25.89,19,0.0 +19335,44,19.45,36,0.0 +19335,21,10,1,0.0 +19335,70,15,35,0.0 +19335,49,20,50,0.0 +19335,73,15,4,0.0 +19335,6,25,11,0.0 +19335,68,12.5,17,0.0 +19335,67,14,3,0.0 +19335,71,21.5,12,0.0 +19335,22,21,40,0.0 +19335,60,34,35,0.0 +19335,63,43.9,6,0.0 +19335,75,7.75,46,0.0 +19335,26,31.23,26,0.0 +19335,76,18,32,0.0 +19335,32,32,49,0.0 +19335,15,15.5,20,0.0 +19335,42,14,37,0.0 +19335,47,9.5,49,0.0 +19335,59,55,5,0.0 +19335,58,13.25,1,0.0 +19335,74,10,7,0.0 +19335,39,18,36,0.0 +19335,7,30,28,0.0 +19335,36,19,31,0.0 +19335,43,46,17,0.0 +19335,20,81,41,0.0 +19335,17,39,27,0.0 +19335,28,45.6,46,0.0 +19335,69,36,7,0.0 +19335,1,18,38,0.0 +19335,27,43.9,38,0.0 +19335,2,19,36,0.0 +19335,5,21.35,2,0.0 +19335,9,97,28,0.0 +19335,45,9.5,45,0.0 +19335,65,21.05,22,0.0 +19335,24,4.5,26,0.0 +19335,12,38,38,0.0 +19335,4,22,41,0.0 +19335,77,13,8,0.0 +19335,52,7,28,0.0 +19335,18,62.5,21,0.0 +19335,56,38,2,0.0 +19335,54,7.45,27,0.0 +19335,62,49.3,31,0.0 +19335,46,12,25,0.0 +19335,34,14,2,0.0 +19335,51,53,30,0.0 +19335,23,9,10,0.0 +19335,33,2.5,8,0.0 +19335,50,16.25,19,0.0 +19335,14,23.25,24,0.0 +19335,57,19.5,42,0.0 +19335,10,31,48,0.0 +19335,53,32.8,5,0.0 +19335,55,24,28,0.0 +19335,48,12.75,14,0.0 +19335,72,34.8,42,0.0 +19335,19,9.2,41,0.0 +19335,66,17,30,0.0 +19335,8,40,40,0.0 +19335,37,26,25,0.0 +19335,13,6,8,0.0 +19336,45,9.5,7,0.0 +19336,34,14,30,0.0 +19336,52,7,40,0.0 +19336,74,10,9,0.0 +19336,50,16.25,38,0.0 +19336,41,9.65,18,0.0 +19336,59,55,39,0.0 +19336,54,7.45,37,0.0 +19336,53,32.8,20,0.0 +19336,60,34,45,0.0 +19336,40,18.4,42,0.0 +19336,49,20,9,0.0 +19336,58,13.25,24,0.0 +19336,37,26,38,0.0 +19336,32,32,28,0.0 +19336,7,30,22,0.0 +19336,24,4.5,5,0.0 +19336,28,45.6,2,0.0 +19336,71,21.5,2,0.0 +19336,33,2.5,2,0.0 +19336,61,28.5,16,0.0 +19336,62,49.3,7,0.0 +19336,16,17.45,23,0.0 +19336,12,38,26,0.0 +19336,55,24,14,0.0 +19336,14,23.25,20,0.0 +19336,9,97,14,0.0 +19336,56,38,37,0.0 +19336,20,81,31,0.0 +19336,57,19.5,37,0.0 +19336,48,12.75,19,0.0 +19336,1,18,44,0.0 +19336,67,14,40,0.0 +19336,15,15.5,11,0.0 +19336,42,14,30,0.0 +19336,21,10,4,0.0 +19336,75,7.75,41,0.0 +19336,4,22,5,0.0 +19336,22,21,28,0.0 +19336,64,33.25,29,0.0 +19336,27,43.9,6,0.0 +19336,25,14,34,0.0 +19336,23,9,39,0.0 +19336,30,25.89,19,0.0 +19336,10,31,11,0.0 +19337,62,49.3,8,0.0 +19337,51,53,43,0.0 +19337,76,18,12,0.0 +19337,39,18,19,0.0 +19337,69,36,47,0.0 +19337,44,19.45,20,0.0 +19337,60,34,20,0.0 +19337,9,97,16,0.0 +19337,33,2.5,41,0.0 +19337,15,15.5,21,0.0 +19337,68,12.5,19,0.0 +19337,37,26,11,0.0 +19337,31,12.5,8,0.0 +19337,4,22,5,0.0 +19337,26,31.23,18,0.0 +19337,16,17.45,16,0.0 +19337,55,24,12,0.0 +19337,17,39,26,0.0 +19337,59,55,6,0.0 +19337,71,21.5,14,0.0 +19337,18,62.5,16,0.0 +19337,32,32,14,0.0 +19337,29,123.79,33,0.0 +19337,38,263.5,25,0.0 +19337,57,19.5,8,0.0 +19337,70,15,1,0.0 +19337,36,19,8,0.0 +19337,10,31,21,0.0 +19337,19,9.2,4,0.0 +19337,50,16.25,32,0.0 +19337,14,23.25,24,0.0 +19337,73,15,40,0.0 +19337,42,14,39,0.0 +19337,8,40,39,0.0 +19337,56,38,45,0.0 +19337,20,81,30,0.0 +19337,21,10,25,0.0 +19337,61,28.5,21,0.0 +19337,53,32.8,47,0.0 +19337,23,9,16,0.0 +19337,77,13,7,0.0 +19337,28,45.6,17,0.0 +19337,1,18,50,0.0 +19337,34,14,43,0.0 +19337,72,34.8,32,0.0 +19337,3,10,20,0.0 +19337,2,19,29,0.0 +19337,52,7,35,0.0 +19337,24,4.5,36,0.0 +19337,65,21.05,50,0.0 +19337,58,13.25,43,0.0 +19338,4,22,44,0.0 +19338,37,26,43,0.0 +19338,60,34,26,0.0 +19338,16,17.45,2,0.0 +19338,27,43.9,46,0.0 +19338,14,23.25,38,0.0 +19338,44,19.45,32,0.0 +19338,48,12.75,41,0.0 +19338,17,39,42,0.0 +19338,26,31.23,40,0.0 +19338,43,46,5,0.0 +19338,58,13.25,34,0.0 +19338,67,14,1,0.0 +19338,5,21.35,36,0.0 +19338,29,123.79,9,0.0 +19338,45,9.5,6,0.0 +19338,13,6,46,0.0 +19338,11,21,13,0.0 +19338,41,9.65,8,0.0 +19338,28,45.6,22,0.0 +19338,54,7.45,13,0.0 +19338,9,97,30,0.0 +19338,63,43.9,34,0.0 +19338,25,14,13,0.0 +19338,76,18,49,0.0 +19338,55,24,30,0.0 +19338,1,18,49,0.0 +19338,40,18.4,3,0.0 +19338,65,21.05,36,0.0 +19338,3,10,31,0.0 +19338,68,12.5,39,0.0 +19338,56,38,8,0.0 +19338,75,7.75,28,0.0 +19338,2,19,30,0.0 +19338,21,10,12,0.0 +19338,31,12.5,25,0.0 +19338,30,25.89,13,0.0 +19338,33,2.5,5,0.0 +19338,18,62.5,12,0.0 +19338,35,18,30,0.0 +19338,34,14,1,0.0 +19338,39,18,7,0.0 +19338,7,30,31,0.0 +19338,61,28.5,46,0.0 +19338,20,81,5,0.0 +19338,51,53,44,0.0 +19338,36,19,47,0.0 +19338,73,15,3,0.0 +19338,23,9,28,0.0 +19338,62,49.3,37,0.0 +19338,24,4.5,1,0.0 +19338,19,9.2,14,0.0 +19338,49,20,47,0.0 +19338,8,40,23,0.0 +19338,64,33.25,40,0.0 +19338,52,7,40,0.0 +19338,46,12,41,0.0 +19338,6,25,20,0.0 +19338,72,34.8,11,0.0 +19338,70,15,44,0.0 +19338,47,9.5,21,0.0 +19338,77,13,7,0.0 +19338,32,32,27,0.0 +19338,71,21.5,5,0.0 +19338,74,10,42,0.0 +19338,69,36,12,0.0 +19338,22,21,44,0.0 +19338,57,19.5,48,0.0 +19338,66,17,24,0.0 +19338,38,263.5,42,0.0 +19338,42,14,5,0.0 +19339,25,14,9,0.0 +19339,42,14,3,0.0 +19339,3,10,14,0.0 +19339,54,7.45,17,0.0 +19339,39,18,36,0.0 +19339,6,25,40,0.0 +19339,71,21.5,13,0.0 +19339,28,45.6,25,0.0 +19339,45,9.5,13,0.0 +19339,20,81,8,0.0 +19339,77,13,21,0.0 +19339,22,21,36,0.0 +19339,70,15,10,0.0 +19339,21,10,39,0.0 +19339,48,12.75,28,0.0 +19339,66,17,49,0.0 +19339,41,9.65,39,0.0 +19339,34,14,5,0.0 +19339,23,9,28,0.0 +19339,12,38,40,0.0 +19339,74,10,42,0.0 +19339,13,6,20,0.0 +19339,46,12,29,0.0 +19340,45,9.5,17,0.0 +19340,41,9.65,42,0.0 +19340,46,12,29,0.0 +19340,15,15.5,24,0.0 +19340,75,7.75,42,0.0 +19340,68,12.5,9,0.0 +19340,76,18,28,0.0 +19340,14,23.25,6,0.0 +19340,40,18.4,23,0.0 +19340,42,14,9,0.0 +19340,72,34.8,15,0.0 +19340,12,38,4,0.0 +19340,67,14,41,0.0 +19340,2,19,19,0.0 +19340,5,21.35,34,0.0 +19340,6,25,26,0.0 +19340,13,6,32,0.0 +19340,18,62.5,25,0.0 +19340,11,21,41,0.0 +19340,21,10,28,0.0 +19340,60,34,14,0.0 +19340,74,10,37,0.0 +19340,22,21,28,0.0 +19340,63,43.9,49,0.0 +19340,64,33.25,44,0.0 +19340,51,53,47,0.0 +19340,71,21.5,9,0.0 +19340,52,7,17,0.0 +19340,34,14,1,0.0 +19340,20,81,47,0.0 +19340,62,49.3,4,0.0 +19340,27,43.9,23,0.0 +19340,61,28.5,15,0.0 +19340,4,22,44,0.0 +19340,7,30,29,0.0 +19340,29,123.79,50,0.0 +19340,39,18,24,0.0 +19340,3,10,8,0.0 +19340,77,13,31,0.0 +19340,36,19,23,0.0 +19340,26,31.23,48,0.0 +19340,66,17,10,0.0 +19340,59,55,42,0.0 +19340,55,24,43,0.0 +19340,23,9,9,0.0 +19340,69,36,5,0.0 +19340,16,17.45,45,0.0 +19340,19,9.2,47,0.0 +19340,48,12.75,7,0.0 +19340,24,4.5,19,0.0 +19340,1,18,36,0.0 +19340,31,12.5,36,0.0 +19341,38,263.5,22,0.0 +19341,11,21,36,0.0 +19341,3,10,37,0.0 +19341,5,21.35,25,0.0 +19341,57,19.5,24,0.0 +19341,34,14,15,0.0 +19341,1,18,4,0.0 +19341,72,34.8,12,0.0 +19341,28,45.6,9,0.0 +19341,8,40,34,0.0 +19341,49,20,33,0.0 +19341,29,123.79,10,0.0 +19341,60,34,44,0.0 +19341,61,28.5,50,0.0 +19341,71,21.5,9,0.0 +19341,21,10,33,0.0 +19341,66,17,40,0.0 +19341,9,97,7,0.0 +19341,15,15.5,20,0.0 +19341,46,12,24,0.0 +19341,35,18,14,0.0 +19341,74,10,29,0.0 +19341,39,18,44,0.0 +19341,41,9.65,25,0.0 +19341,69,36,8,0.0 +19341,65,21.05,3,0.0 +19341,64,33.25,2,0.0 +19341,2,19,2,0.0 +19341,19,9.2,32,0.0 +19341,10,31,4,0.0 +19341,48,12.75,2,0.0 +19341,32,32,23,0.0 +19341,12,38,29,0.0 +19341,40,18.4,31,0.0 +19341,33,2.5,7,0.0 +19341,55,24,31,0.0 +19341,58,13.25,26,0.0 +19341,26,31.23,46,0.0 +19341,6,25,9,0.0 +19341,13,6,45,0.0 +19341,75,7.75,1,0.0 +19341,62,49.3,21,0.0 +19341,7,30,12,0.0 +19341,51,53,44,0.0 +19341,76,18,17,0.0 +19341,67,14,26,0.0 +19341,37,26,46,0.0 +19341,31,12.5,42,0.0 +19341,4,22,41,0.0 +19341,50,16.25,1,0.0 +19341,53,32.8,43,0.0 +19341,52,7,18,0.0 +19341,70,15,17,0.0 +19341,54,7.45,26,0.0 +19342,27,43.9,4,0.0 +19342,7,30,22,0.0 +19342,71,21.5,31,0.0 +19342,24,4.5,36,0.0 +19342,34,14,21,0.0 +19342,50,16.25,9,0.0 +19342,8,40,34,0.0 +19342,39,18,20,0.0 +19343,50,16.25,46,0.0 +19343,39,18,42,0.0 +19343,26,31.23,49,0.0 +19343,61,28.5,10,0.0 +19343,2,19,36,0.0 +19343,19,9.2,49,0.0 +19343,28,45.6,47,0.0 +19343,63,43.9,16,0.0 +19343,37,26,43,0.0 +19343,54,7.45,38,0.0 +19343,18,62.5,13,0.0 +19343,6,25,19,0.0 +19343,47,9.5,35,0.0 +19343,3,10,36,0.0 +19343,69,36,25,0.0 +19343,70,15,2,0.0 +19343,48,12.75,48,0.0 +19343,44,19.45,24,0.0 +19343,74,10,9,0.0 +19343,73,15,33,0.0 +19343,10,31,11,0.0 +19343,17,39,17,0.0 +19344,52,7,11,0.0 +19344,38,263.5,44,0.0 +19344,23,9,40,0.0 +19344,74,10,45,0.0 +19344,14,23.25,28,0.0 +19344,60,34,5,0.0 +19344,7,30,8,0.0 +19344,8,40,11,0.0 +19344,73,15,2,0.0 +19344,63,43.9,27,0.0 +19344,31,12.5,19,0.0 +19344,70,15,45,0.0 +19344,34,14,21,0.0 +19344,42,14,9,0.0 +19344,59,55,1,0.0 +19344,45,9.5,17,0.0 +19344,68,12.5,36,0.0 +19344,19,9.2,38,0.0 +19344,43,46,20,0.0 +19344,21,10,17,0.0 +19344,40,18.4,24,0.0 +19344,66,17,41,0.0 +19344,17,39,11,0.0 +19344,30,25.89,42,0.0 +19344,48,12.75,6,0.0 +19344,11,21,9,0.0 +19344,58,13.25,21,0.0 +19344,56,38,7,0.0 +19344,28,45.6,43,0.0 +19344,36,19,17,0.0 +19344,13,6,21,0.0 +19344,5,21.35,22,0.0 +19344,35,18,30,0.0 +19344,54,7.45,39,0.0 +19344,25,14,3,0.0 +19344,1,18,50,0.0 +19344,77,13,25,0.0 +19344,72,34.8,25,0.0 +19344,53,32.8,33,0.0 +19344,39,18,5,0.0 +19344,16,17.45,31,0.0 +19344,27,43.9,32,0.0 +19344,67,14,12,0.0 +19344,9,97,33,0.0 +19344,64,33.25,50,0.0 +19344,20,81,7,0.0 +19344,24,4.5,43,0.0 +19344,62,49.3,26,0.0 +19344,47,9.5,4,0.0 +19344,75,7.75,33,0.0 +19344,44,19.45,14,0.0 +19344,12,38,25,0.0 +19344,6,25,49,0.0 +19344,22,21,49,0.0 +19344,33,2.5,31,0.0 +19344,50,16.25,19,0.0 +19344,51,53,49,0.0 +19344,32,32,24,0.0 +19344,3,10,5,0.0 +19344,4,22,3,0.0 +19344,76,18,36,0.0 +19344,10,31,33,0.0 +19344,18,62.5,12,0.0 +19345,22,21,17,0.0 +19345,43,46,43,0.0 +19345,11,21,30,0.0 +19345,30,25.89,22,0.0 +19345,47,9.5,49,0.0 +19345,27,43.9,18,0.0 +19345,9,97,41,0.0 +19345,32,32,29,0.0 +19345,60,34,24,0.0 +19345,12,38,33,0.0 +19345,35,18,1,0.0 +19345,34,14,43,0.0 +19345,15,15.5,37,0.0 +19345,33,2.5,48,0.0 +19345,37,26,5,0.0 +19345,67,14,1,0.0 +19345,38,263.5,19,0.0 +19345,5,21.35,29,0.0 +19345,23,9,25,0.0 +19345,7,30,16,0.0 +19345,24,4.5,39,0.0 +19345,50,16.25,49,0.0 +19345,64,33.25,42,0.0 +19345,2,19,48,0.0 +19345,45,9.5,13,0.0 +19345,20,81,14,0.0 +19345,52,7,19,0.0 +19345,72,34.8,13,0.0 +19345,17,39,44,0.0 +19345,77,13,1,0.0 +19345,40,18.4,20,0.0 +19345,18,62.5,21,0.0 +19345,48,12.75,32,0.0 +19345,61,28.5,30,0.0 +19345,3,10,9,0.0 +19345,49,20,46,0.0 +19345,55,24,11,0.0 +19345,19,9.2,8,0.0 +19345,41,9.65,5,0.0 +19345,25,14,17,0.0 +19345,1,18,6,0.0 +19345,65,21.05,28,0.0 +19345,74,10,16,0.0 +19345,73,15,30,0.0 +19345,31,12.5,8,0.0 +19345,66,17,5,0.0 +19345,70,15,2,0.0 +19345,6,25,10,0.0 +19345,42,14,35,0.0 +19345,53,32.8,50,0.0 +19345,8,40,31,0.0 +19345,51,53,39,0.0 +19345,26,31.23,37,0.0 +19345,56,38,6,0.0 +19345,63,43.9,50,0.0 +19345,28,45.6,15,0.0 +19345,13,6,24,0.0 +19345,39,18,43,0.0 +19345,57,19.5,31,0.0 +19345,10,31,11,0.0 +19345,69,36,7,0.0 +19345,71,21.5,7,0.0 +19345,46,12,41,0.0 +19345,21,10,33,0.0 +19345,44,19.45,42,0.0 +19345,62,49.3,50,0.0 +19345,4,22,27,0.0 +19345,68,12.5,48,0.0 +19346,29,123.79,3,0.0 +19346,53,32.8,30,0.0 +19346,24,4.5,16,0.0 +19346,31,12.5,8,0.0 +19346,46,12,41,0.0 +19346,21,10,27,0.0 +19346,43,46,45,0.0 +19346,52,7,17,0.0 +19346,18,62.5,42,0.0 +19346,28,45.6,11,0.0 +19346,30,25.89,28,0.0 +19347,3,10,9,0.0 +19347,30,25.89,50,0.0 +19347,75,7.75,12,0.0 +19347,2,19,17,0.0 +19347,32,32,8,0.0 +19347,19,9.2,4,0.0 +19347,38,263.5,49,0.0 +19347,36,19,29,0.0 +19347,6,25,30,0.0 +19347,57,19.5,19,0.0 +19347,39,18,36,0.0 +19347,5,21.35,25,0.0 +19347,24,4.5,30,0.0 +19347,72,34.8,24,0.0 +19347,34,14,37,0.0 +19347,9,97,18,0.0 +19347,35,18,25,0.0 +19347,15,15.5,25,0.0 +19347,21,10,11,0.0 +19347,28,45.6,44,0.0 +19347,68,12.5,4,0.0 +19347,49,20,50,0.0 +19347,42,14,37,0.0 +19347,73,15,12,0.0 +19347,56,38,16,0.0 +19347,48,12.75,35,0.0 +19347,4,22,30,0.0 +19347,71,21.5,5,0.0 +19347,43,46,14,0.0 +19347,27,43.9,12,0.0 +19347,20,81,28,0.0 +19347,54,7.45,2,0.0 +19347,23,9,15,0.0 +19347,7,30,20,0.0 +19347,52,7,2,0.0 +19347,62,49.3,27,0.0 +19347,13,6,18,0.0 +19347,33,2.5,22,0.0 +19347,60,34,11,0.0 +19347,63,43.9,38,0.0 +19347,77,13,40,0.0 +19347,1,18,12,0.0 +19347,51,53,10,0.0 +19347,76,18,10,0.0 +19347,14,23.25,43,0.0 +19347,10,31,30,0.0 +19347,12,38,12,0.0 +19347,70,15,27,0.0 +19347,50,16.25,42,0.0 +19348,47,9.5,14,0.0 +19348,51,53,37,0.0 +19348,41,9.65,44,0.0 +19348,34,14,18,0.0 +19348,25,14,35,0.0 +19348,12,38,45,0.0 +19348,49,20,47,0.0 +19348,74,10,33,0.0 +19348,59,55,7,0.0 +19348,22,21,7,0.0 +19348,63,43.9,19,0.0 +19348,14,23.25,4,0.0 +19348,61,28.5,21,0.0 +19349,50,16.25,9,0.0 +19349,76,18,32,0.0 +19349,24,4.5,12,0.0 +19349,63,43.9,45,0.0 +19349,74,10,14,0.0 +19349,77,13,15,0.0 +19349,66,17,43,0.0 +19349,6,25,37,0.0 +19349,4,22,22,0.0 +19349,17,39,43,0.0 +19349,52,7,20,0.0 +19349,68,12.5,7,0.0 +19349,33,2.5,41,0.0 +19349,18,62.5,42,0.0 +19349,64,33.25,19,0.0 +19349,38,263.5,4,0.0 +19349,26,31.23,48,0.0 +19349,1,18,43,0.0 +19349,9,97,5,0.0 +19349,49,20,24,0.0 +19349,5,21.35,9,0.0 +19349,47,9.5,44,0.0 +19349,36,19,45,0.0 +19349,44,19.45,4,0.0 +19349,12,38,1,0.0 +19349,57,19.5,46,0.0 +19349,53,32.8,38,0.0 +19349,11,21,8,0.0 +19349,73,15,41,0.0 +19349,45,9.5,11,0.0 +19349,70,15,37,0.0 +19349,14,23.25,4,0.0 +19349,16,17.45,5,0.0 +19349,25,14,15,0.0 +19349,58,13.25,41,0.0 +19349,75,7.75,11,0.0 +19349,2,19,35,0.0 +19349,35,18,1,0.0 +19349,56,38,40,0.0 +19349,62,49.3,27,0.0 +19349,59,55,20,0.0 +19349,54,7.45,19,0.0 +19349,61,28.5,7,0.0 +19349,7,30,1,0.0 +19349,43,46,27,0.0 +19349,41,9.65,47,0.0 +19349,48,12.75,32,0.0 +19349,37,26,34,0.0 +19349,67,14,14,0.0 +19349,22,21,13,0.0 +19349,21,10,17,0.0 +19349,28,45.6,47,0.0 +19349,8,40,42,0.0 +19349,51,53,21,0.0 +19349,39,18,43,0.0 +19349,65,21.05,2,0.0 +19349,72,34.8,40,0.0 +19349,32,32,2,0.0 +19349,42,14,3,0.0 +19349,29,123.79,2,0.0 +19349,20,81,9,0.0 +19349,71,21.5,35,0.0 +19349,10,31,16,0.0 +19349,30,25.89,19,0.0 +19349,23,9,25,0.0 +19349,13,6,48,0.0 +19349,40,18.4,10,0.0 +19349,31,12.5,10,0.0 +19350,65,21.05,25,0.0 +19350,53,32.8,28,0.0 +19350,56,38,21,0.0 +19350,58,13.25,32,0.0 +19350,48,12.75,40,0.0 +19350,72,34.8,38,0.0 +19350,23,9,31,0.0 +19350,30,25.89,29,0.0 +19350,60,34,34,0.0 +19350,44,19.45,24,0.0 +19350,40,18.4,4,0.0 +19350,45,9.5,14,0.0 +19350,70,15,20,0.0 +19350,10,31,8,0.0 +19350,68,12.5,50,0.0 +19350,43,46,24,0.0 +19350,74,10,9,0.0 +19350,50,16.25,18,0.0 +19350,7,30,31,0.0 +19350,64,33.25,18,0.0 +19350,22,21,4,0.0 +19350,59,55,26,0.0 +19350,8,40,22,0.0 +19350,36,19,32,0.0 +19350,69,36,37,0.0 +19350,35,18,18,0.0 +19350,2,19,19,0.0 +19350,15,15.5,45,0.0 +19350,21,10,42,0.0 +19350,34,14,39,0.0 +19350,52,7,10,0.0 +19350,61,28.5,33,0.0 +19350,31,12.5,42,0.0 +19350,28,45.6,50,0.0 +19350,51,53,13,0.0 +19350,25,14,29,0.0 +19350,17,39,22,0.0 +19350,32,32,27,0.0 +19350,33,2.5,2,0.0 +19350,12,38,13,0.0 +19350,24,4.5,38,0.0 +19350,5,21.35,2,0.0 +19350,57,19.5,24,0.0 +19350,76,18,45,0.0 +19350,66,17,1,0.0 +19350,41,9.65,36,0.0 +19350,9,97,47,0.0 +19351,30,25.89,36,0.0 +19351,56,38,44,0.0 +19351,19,9.2,10,0.0 +19351,39,18,20,0.0 +19351,48,12.75,42,0.0 +19351,15,15.5,23,0.0 +19351,34,14,45,0.0 +19351,63,43.9,24,0.0 +19351,73,15,28,0.0 +19351,72,34.8,50,0.0 +19351,21,10,17,0.0 +19351,66,17,5,0.0 +19351,53,32.8,46,0.0 +19351,50,16.25,30,0.0 +19351,32,32,33,0.0 +19351,38,263.5,13,0.0 +19351,62,49.3,13,0.0 +19351,58,13.25,10,0.0 +19351,51,53,19,0.0 +19351,75,7.75,30,0.0 +19351,35,18,40,0.0 +19351,60,34,6,0.0 +19351,71,21.5,7,0.0 +19351,47,9.5,10,0.0 +19351,1,18,37,0.0 +19351,41,9.65,1,0.0 +19351,3,10,6,0.0 +19351,13,6,20,0.0 +19351,45,9.5,43,0.0 +19351,29,123.79,9,0.0 +19351,37,26,42,0.0 +19351,43,46,21,0.0 +19351,27,43.9,17,0.0 +19351,10,31,27,0.0 +19351,11,21,50,0.0 +19351,4,22,14,0.0 +19351,6,25,1,0.0 +19351,40,18.4,47,0.0 +19351,70,15,47,0.0 +19351,68,12.5,39,0.0 +19351,17,39,41,0.0 +19351,67,14,23,0.0 +19351,2,19,44,0.0 +19351,9,97,33,0.0 +19351,46,12,45,0.0 +19351,20,81,27,0.0 +19351,14,23.25,23,0.0 +19351,44,19.45,15,0.0 +19351,59,55,39,0.0 +19351,36,19,21,0.0 +19351,61,28.5,50,0.0 +19351,8,40,7,0.0 +19351,64,33.25,23,0.0 +19351,25,14,13,0.0 +19351,49,20,4,0.0 +19351,24,4.5,33,0.0 +19351,18,62.5,36,0.0 +19351,12,38,37,0.0 +19351,69,36,47,0.0 +19351,5,21.35,6,0.0 +19351,52,7,12,0.0 +19351,26,31.23,28,0.0 +19351,65,21.05,27,0.0 +19351,57,19.5,41,0.0 +19351,55,24,6,0.0 +19351,33,2.5,46,0.0 +19351,76,18,13,0.0 +19351,31,12.5,17,0.0 +19351,16,17.45,18,0.0 +19351,7,30,49,0.0 +19351,28,45.6,49,0.0 +19351,42,14,41,0.0 +19352,68,12.5,26,0.0 +19352,26,31.23,24,0.0 +19352,20,81,23,0.0 +19352,5,21.35,42,0.0 +19352,52,7,9,0.0 +19352,53,32.8,19,0.0 +19352,51,53,45,0.0 +19352,55,24,15,0.0 +19352,63,43.9,26,0.0 +19352,11,21,9,0.0 +19352,70,15,17,0.0 +19352,15,15.5,48,0.0 +19352,73,15,2,0.0 +19352,72,34.8,20,0.0 +19352,3,10,12,0.0 +19352,4,22,10,0.0 +19352,19,9.2,15,0.0 +19352,10,31,1,0.0 +19352,28,45.6,22,0.0 +19352,34,14,22,0.0 +19352,65,21.05,14,0.0 +19352,21,10,28,0.0 +19352,57,19.5,22,0.0 +19352,17,39,10,0.0 +19352,29,123.79,42,0.0 +19352,36,19,21,0.0 +19352,71,21.5,1,0.0 +19352,41,9.65,41,0.0 +19352,60,34,41,0.0 +19352,8,40,1,0.0 +19352,13,6,46,0.0 +19352,32,32,16,0.0 +19352,25,14,25,0.0 +19352,62,49.3,35,0.0 +19352,16,17.45,15,0.0 +19352,2,19,5,0.0 +19352,49,20,46,0.0 +19352,7,30,30,0.0 +19352,56,38,27,0.0 +19352,31,12.5,3,0.0 +19352,27,43.9,20,0.0 +19352,39,18,6,0.0 +19352,74,10,22,0.0 +19352,50,16.25,30,0.0 +19352,64,33.25,41,0.0 +19352,9,97,14,0.0 +19352,37,26,41,0.0 +19352,54,7.45,48,0.0 +19352,47,9.5,26,0.0 +19352,24,4.5,29,0.0 +19352,14,23.25,33,0.0 +19352,69,36,7,0.0 +19352,77,13,11,0.0 +19352,18,62.5,43,0.0 +19352,44,19.45,29,0.0 +19352,33,2.5,47,0.0 +19352,58,13.25,8,0.0 +19353,7,30,6,0.0 +19353,55,24,31,0.0 +19353,53,32.8,46,0.0 +19353,67,14,42,0.0 +19353,16,17.45,20,0.0 +19353,77,13,8,0.0 +19353,58,13.25,27,0.0 +19353,45,9.5,4,0.0 +19353,27,43.9,21,0.0 +19353,61,28.5,9,0.0 +19353,12,38,7,0.0 +19353,72,34.8,39,0.0 +19353,73,15,3,0.0 +19353,31,12.5,39,0.0 +19353,54,7.45,50,0.0 +19353,48,12.75,34,0.0 +19353,15,15.5,2,0.0 +19353,46,12,5,0.0 +19353,76,18,25,0.0 +19353,23,9,19,0.0 +19353,26,31.23,44,0.0 +19353,57,19.5,25,0.0 +19353,63,43.9,14,0.0 +19353,8,40,32,0.0 +19353,34,14,7,0.0 +19353,20,81,33,0.0 +19353,41,9.65,20,0.0 +19353,39,18,17,0.0 +19353,40,18.4,18,0.0 +19353,29,123.79,1,0.0 +19353,44,19.45,46,0.0 +19353,24,4.5,20,0.0 +19353,65,21.05,38,0.0 +19353,47,9.5,47,0.0 +19353,64,33.25,13,0.0 +19354,34,14,41,0.0 +19354,49,20,19,0.0 +19354,5,21.35,40,0.0 +19354,60,34,46,0.0 +19354,19,9.2,26,0.0 +19354,51,53,36,0.0 +19354,30,25.89,31,0.0 +19354,20,81,32,0.0 +19354,6,25,14,0.0 +19354,39,18,19,0.0 +19354,54,7.45,11,0.0 +19354,18,62.5,42,0.0 +19354,1,18,24,0.0 +19354,62,49.3,9,0.0 +19354,67,14,10,0.0 +19355,11,21,15,0.0 +19355,66,17,39,0.0 +19355,9,97,8,0.0 +19355,64,33.25,22,0.0 +19355,6,25,9,0.0 +19355,26,31.23,45,0.0 +19355,75,7.75,4,0.0 +19355,13,6,49,0.0 +19355,38,263.5,50,0.0 +19355,30,25.89,3,0.0 +19355,72,34.8,43,0.0 +19355,25,14,23,0.0 +19355,32,32,11,0.0 +19355,29,123.79,2,0.0 +19355,74,10,19,0.0 +19355,76,18,16,0.0 +19355,55,24,12,0.0 +19355,42,14,49,0.0 +19355,15,15.5,26,0.0 +19355,53,32.8,37,0.0 +19355,56,38,34,0.0 +19355,17,39,32,0.0 +19355,37,26,15,0.0 +19355,43,46,43,0.0 +19355,77,13,19,0.0 +19355,7,30,34,0.0 +19355,27,43.9,48,0.0 +19355,10,31,44,0.0 +19355,58,13.25,24,0.0 +19355,3,10,29,0.0 +19355,4,22,41,0.0 +19355,61,28.5,15,0.0 +19355,69,36,26,0.0 +19355,52,7,21,0.0 +19355,48,12.75,19,0.0 +19355,57,19.5,26,0.0 +19355,46,12,28,0.0 +19355,12,38,26,0.0 +19355,67,14,34,0.0 +19355,16,17.45,13,0.0 +19355,68,12.5,5,0.0 +19355,5,21.35,46,0.0 +19355,70,15,8,0.0 +19356,25,14,5,0.0 +19356,46,12,26,0.0 +19356,12,38,6,0.0 +19356,11,21,45,0.0 +19356,37,26,33,0.0 +19356,14,23.25,23,0.0 +19356,27,43.9,16,0.0 +19356,33,2.5,31,0.0 +19356,42,14,4,0.0 +19356,58,13.25,45,0.0 +19356,71,21.5,27,0.0 +19356,77,13,15,0.0 +19356,35,18,45,0.0 +19356,68,12.5,8,0.0 +19356,69,36,7,0.0 +19356,54,7.45,40,0.0 +19356,56,38,47,0.0 +19356,66,17,44,0.0 +19356,6,25,22,0.0 +19356,2,19,18,0.0 +19356,40,18.4,47,0.0 +19356,47,9.5,45,0.0 +19356,45,9.5,19,0.0 +19356,5,21.35,36,0.0 +19357,12,38,47,0.0 +19357,55,24,9,0.0 +19357,62,49.3,1,0.0 +19357,45,9.5,33,0.0 +19357,68,12.5,9,0.0 +19357,30,25.89,45,0.0 +19357,61,28.5,21,0.0 +19357,70,15,44,0.0 +19357,13,6,45,0.0 +19357,67,14,46,0.0 +19357,28,45.6,37,0.0 +19357,56,38,25,0.0 +19357,33,2.5,5,0.0 +19357,27,43.9,23,0.0 +19357,59,55,40,0.0 +19357,73,15,42,0.0 +19357,39,18,29,0.0 +19357,21,10,48,0.0 +19357,58,13.25,41,0.0 +19357,6,25,50,0.0 +19357,42,14,31,0.0 +19357,8,40,37,0.0 +19357,19,9.2,25,0.0 +19357,75,7.75,25,0.0 +19357,24,4.5,49,0.0 +19357,4,22,49,0.0 +19357,53,32.8,6,0.0 +19358,40,18.4,32,0.0 +19358,50,16.25,46,0.0 +19358,64,33.25,27,0.0 +19358,46,12,5,0.0 +19358,37,26,19,0.0 +19358,25,14,18,0.0 +19358,57,19.5,48,0.0 +19358,35,18,23,0.0 +19358,73,15,7,0.0 +19358,53,32.8,35,0.0 +19358,42,14,44,0.0 +19358,27,43.9,22,0.0 +19358,74,10,48,0.0 +19358,70,15,10,0.0 +19358,71,21.5,40,0.0 +19358,60,34,7,0.0 +19358,58,13.25,7,0.0 +19358,19,9.2,15,0.0 +19358,26,31.23,9,0.0 +19358,12,38,47,0.0 +19358,69,36,37,0.0 +19358,56,38,38,0.0 +19358,14,23.25,25,0.0 +19358,72,34.8,30,0.0 +19358,13,6,12,0.0 +19358,8,40,42,0.0 +19358,31,12.5,4,0.0 +19358,43,46,44,0.0 +19358,41,9.65,24,0.0 +19358,24,4.5,32,0.0 +19358,55,24,33,0.0 +19358,9,97,5,0.0 +19358,49,20,26,0.0 +19358,34,14,44,0.0 +19358,38,263.5,14,0.0 +19358,4,22,23,0.0 +19358,30,25.89,37,0.0 +19358,18,62.5,25,0.0 +19358,22,21,7,0.0 +19358,61,28.5,27,0.0 +19358,28,45.6,11,0.0 +19358,21,10,18,0.0 +19358,67,14,31,0.0 +19358,11,21,43,0.0 +19358,10,31,20,0.0 +19358,16,17.45,21,0.0 +19358,76,18,4,0.0 +19358,2,19,1,0.0 +19358,51,53,27,0.0 +19358,65,21.05,12,0.0 +19358,39,18,34,0.0 +19358,75,7.75,7,0.0 +19358,3,10,9,0.0 +19358,36,19,25,0.0 +19358,23,9,35,0.0 +19358,20,81,9,0.0 +19358,45,9.5,36,0.0 +19358,15,15.5,34,0.0 +19358,63,43.9,44,0.0 +19358,5,21.35,13,0.0 +19359,76,18,41,0.0 +19359,10,31,50,0.0 +19359,67,14,15,0.0 +19359,26,31.23,22,0.0 +19359,12,38,32,0.0 +19359,60,34,44,0.0 +19359,5,21.35,50,0.0 +19359,58,13.25,39,0.0 +19359,44,19.45,45,0.0 +19359,13,6,39,0.0 +19359,49,20,16,0.0 +19359,35,18,42,0.0 +19359,72,34.8,11,0.0 +19359,54,7.45,25,0.0 +19359,2,19,47,0.0 +19359,57,19.5,18,0.0 +19359,77,13,9,0.0 +19359,20,81,26,0.0 +19359,8,40,46,0.0 +19359,25,14,30,0.0 +19359,52,7,18,0.0 +19359,33,2.5,6,0.0 +19359,66,17,4,0.0 +19359,6,25,46,0.0 +19359,61,28.5,44,0.0 +19359,48,12.75,25,0.0 +19359,65,21.05,9,0.0 +19359,40,18.4,21,0.0 +19359,36,19,18,0.0 +19359,31,12.5,11,0.0 +19359,42,14,20,0.0 +19359,63,43.9,16,0.0 +19359,55,24,9,0.0 +19359,32,32,17,0.0 +19359,28,45.6,10,0.0 +19359,29,123.79,29,0.0 +19359,14,23.25,26,0.0 +19359,71,21.5,3,0.0 +19359,51,53,8,0.0 +19359,45,9.5,43,0.0 +19359,1,18,29,0.0 +19359,41,9.65,1,0.0 +19359,37,26,37,0.0 +19359,74,10,35,0.0 +19359,75,7.75,26,0.0 +19359,7,30,32,0.0 +19359,15,15.5,30,0.0 +19359,22,21,6,0.0 +19359,70,15,36,0.0 +19359,53,32.8,16,0.0 +19359,17,39,43,0.0 +19359,9,97,14,0.0 +19359,3,10,44,0.0 +19359,39,18,28,0.0 +19359,64,33.25,27,0.0 +19359,62,49.3,34,0.0 +19359,23,9,12,0.0 +19359,46,12,43,0.0 +19359,43,46,43,0.0 +19359,50,16.25,43,0.0 +19359,24,4.5,17,0.0 +19359,4,22,43,0.0 +19359,16,17.45,33,0.0 +19359,34,14,4,0.0 +19359,47,9.5,39,0.0 +19359,21,10,29,0.0 +19359,73,15,34,0.0 +19359,18,62.5,13,0.0 +19360,35,18,22,0.0 +19360,74,10,26,0.0 +19360,63,43.9,7,0.0 +19360,11,21,41,0.0 +19360,8,40,49,0.0 +19360,13,6,1,0.0 +19360,56,38,11,0.0 +19360,15,15.5,11,0.0 +19360,9,97,34,0.0 +19360,59,55,38,0.0 +19360,18,62.5,33,0.0 +19360,65,21.05,14,0.0 +19360,22,21,14,0.0 +19360,50,16.25,7,0.0 +19360,66,17,33,0.0 +19360,58,13.25,26,0.0 +19360,46,12,16,0.0 +19360,2,19,30,0.0 +19360,72,34.8,34,0.0 +19360,53,32.8,22,0.0 +19360,45,9.5,43,0.0 +19360,37,26,32,0.0 +19360,42,14,13,0.0 +19360,6,25,46,0.0 +19360,48,12.75,36,0.0 +19360,27,43.9,22,0.0 +19360,64,33.25,24,0.0 +19360,55,24,14,0.0 +19360,52,7,24,0.0 +19360,33,2.5,6,0.0 +19360,1,18,33,0.0 +19360,10,31,31,0.0 +19360,24,4.5,19,0.0 +19360,41,9.65,20,0.0 +19360,75,7.75,13,0.0 +19360,12,38,11,0.0 +19360,61,28.5,40,0.0 +19360,31,12.5,19,0.0 +19360,29,123.79,10,0.0 +19360,49,20,28,0.0 +19360,30,25.89,44,0.0 +19360,19,9.2,8,0.0 +19360,70,15,18,0.0 +19360,40,18.4,29,0.0 +19360,73,15,24,0.0 +19360,67,14,40,0.0 +19360,25,14,49,0.0 +19360,38,263.5,47,0.0 +19360,39,18,23,0.0 +19360,69,36,49,0.0 +19360,51,53,27,0.0 +19360,20,81,20,0.0 +19360,21,10,6,0.0 +19360,57,19.5,43,0.0 +19360,4,22,10,0.0 +19360,16,17.45,25,0.0 +19360,34,14,49,0.0 +19360,36,19,22,0.0 +19360,62,49.3,28,0.0 +19360,76,18,10,0.0 +19360,28,45.6,22,0.0 +19360,5,21.35,28,0.0 +19360,23,9,11,0.0 +19361,44,19.45,9,0.0 +19361,17,39,23,0.0 +19361,74,10,28,0.0 +19361,62,49.3,20,0.0 +19361,71,21.5,47,0.0 +19361,70,15,36,0.0 +19361,68,12.5,16,0.0 +19361,13,6,32,0.0 +19361,76,18,40,0.0 +19361,51,53,37,0.0 +19361,49,20,25,0.0 +19361,67,14,41,0.0 +19361,36,19,38,0.0 +19361,25,14,30,0.0 +19361,39,18,38,0.0 +19361,35,18,37,0.0 +19361,61,28.5,41,0.0 +19361,6,25,3,0.0 +19361,5,21.35,5,0.0 +19361,50,16.25,28,0.0 +19361,21,10,39,0.0 +19361,15,15.5,43,0.0 +19361,42,14,26,0.0 +19361,28,45.6,21,0.0 +19361,69,36,44,0.0 +19361,18,62.5,20,0.0 +19361,37,26,7,0.0 +19361,55,24,45,0.0 +19361,26,31.23,30,0.0 +19361,4,22,38,0.0 +19361,41,9.65,8,0.0 +19361,46,12,6,0.0 +19361,45,9.5,21,0.0 +19361,73,15,7,0.0 +19362,43,46,23,0.0 +19362,2,19,14,0.0 +19362,58,13.25,19,0.0 +19362,42,14,22,0.0 +19362,69,36,41,0.0 +19362,63,43.9,16,0.0 +19362,28,45.6,45,0.0 +19362,44,19.45,29,0.0 +19362,33,2.5,45,0.0 +19362,17,39,47,0.0 +19362,52,7,27,0.0 +19362,30,25.89,49,0.0 +19362,40,18.4,18,0.0 +19362,38,263.5,17,0.0 +19362,47,9.5,24,0.0 +19362,39,18,48,0.0 +19362,9,97,43,0.0 +19362,10,31,38,0.0 +19362,26,31.23,42,0.0 +19362,68,12.5,19,0.0 +19362,53,32.8,13,0.0 +19362,18,62.5,14,0.0 +19362,41,9.65,49,0.0 +19362,22,21,27,0.0 +19362,66,17,35,0.0 +19362,35,18,3,0.0 +19362,55,24,9,0.0 +19362,76,18,43,0.0 +19362,60,34,20,0.0 +19362,32,32,4,0.0 +19362,21,10,3,0.0 +19362,49,20,35,0.0 +19362,64,33.25,12,0.0 +19362,73,15,34,0.0 +19362,7,30,16,0.0 +19362,12,38,17,0.0 +19362,29,123.79,12,0.0 +19362,62,49.3,30,0.0 +19362,57,19.5,29,0.0 +19362,46,12,10,0.0 +19362,11,21,13,0.0 +19362,77,13,47,0.0 +19362,8,40,33,0.0 +19362,72,34.8,24,0.0 +19362,19,9.2,30,0.0 +19362,61,28.5,3,0.0 +19362,70,15,11,0.0 +19362,51,53,21,0.0 +19362,71,21.5,47,0.0 +19362,4,22,48,0.0 +19362,54,7.45,41,0.0 +19363,22,21,9,0.0 +19363,77,13,19,0.0 +19363,43,46,27,0.0 +19363,24,4.5,1,0.0 +19363,34,14,17,0.0 +19363,1,18,46,0.0 +19363,65,21.05,49,0.0 +19363,63,43.9,4,0.0 +19363,76,18,23,0.0 +19363,44,19.45,35,0.0 +19363,57,19.5,20,0.0 +19363,12,38,22,0.0 +19363,48,12.75,5,0.0 +19363,49,20,18,0.0 +19363,21,10,42,0.0 +19363,60,34,8,0.0 +19363,53,32.8,48,0.0 +19363,35,18,23,0.0 +19363,11,21,17,0.0 +19363,31,12.5,9,0.0 +19363,19,9.2,29,0.0 +19363,55,24,48,0.0 +19363,28,45.6,27,0.0 +19363,67,14,25,0.0 +19363,37,26,3,0.0 +19363,2,19,44,0.0 +19363,70,15,12,0.0 +19363,3,10,21,0.0 +19363,23,9,26,0.0 +19363,72,34.8,39,0.0 +19363,7,30,44,0.0 +19363,20,81,35,0.0 +19363,4,22,9,0.0 +19363,64,33.25,14,0.0 +19363,39,18,13,0.0 +19363,38,263.5,37,0.0 +19363,29,123.79,4,0.0 +19363,66,17,25,0.0 +19363,54,7.45,28,0.0 +19363,47,9.5,50,0.0 +19363,18,62.5,5,0.0 +19363,50,16.25,6,0.0 +19363,61,28.5,14,0.0 +19363,46,12,11,0.0 +19363,15,15.5,36,0.0 +19363,52,7,26,0.0 +19363,17,39,19,0.0 +19363,10,31,32,0.0 +19363,74,10,42,0.0 +19363,41,9.65,40,0.0 +19363,68,12.5,34,0.0 +19363,75,7.75,44,0.0 +19363,13,6,4,0.0 +19363,9,97,5,0.0 +19363,40,18.4,3,0.0 +19363,26,31.23,25,0.0 +19363,32,32,41,0.0 +19363,25,14,9,0.0 +19363,30,25.89,37,0.0 +19363,27,43.9,37,0.0 +19363,62,49.3,39,0.0 +19363,71,21.5,25,0.0 +19363,45,9.5,12,0.0 +19363,58,13.25,46,0.0 +19363,36,19,24,0.0 +19363,56,38,20,0.0 +19364,46,12,25,0.0 +19364,77,13,32,0.0 +19364,53,32.8,27,0.0 +19364,35,18,38,0.0 +19364,41,9.65,22,0.0 +19364,25,14,3,0.0 +19364,29,123.79,45,0.0 +19364,73,15,24,0.0 +19364,44,19.45,23,0.0 +19364,75,7.75,40,0.0 +19364,45,9.5,43,0.0 +19364,5,21.35,5,0.0 +19364,72,34.8,4,0.0 +19364,9,97,18,0.0 +19364,49,20,38,0.0 +19364,7,30,40,0.0 +19364,19,9.2,24,0.0 +19364,23,9,30,0.0 +19364,62,49.3,18,0.0 +19364,27,43.9,34,0.0 +19364,64,33.25,17,0.0 +19364,13,6,49,0.0 +19364,28,45.6,41,0.0 +19364,52,7,36,0.0 +19364,2,19,38,0.0 +19364,32,32,17,0.0 +19364,22,21,19,0.0 +19364,6,25,11,0.0 +19364,47,9.5,49,0.0 +19364,11,21,39,0.0 +19364,59,55,4,0.0 +19364,17,39,16,0.0 +19364,16,17.45,6,0.0 +19364,24,4.5,27,0.0 +19364,38,263.5,46,0.0 +19364,33,2.5,23,0.0 +19364,58,13.25,19,0.0 +19364,65,21.05,41,0.0 +19364,50,16.25,47,0.0 +19364,12,38,43,0.0 +19364,8,40,32,0.0 +19364,63,43.9,17,0.0 +19364,15,15.5,2,0.0 +19364,74,10,31,0.0 +19364,39,18,47,0.0 +19364,21,10,9,0.0 +19364,76,18,32,0.0 +19364,26,31.23,17,0.0 +19364,67,14,27,0.0 +19364,30,25.89,15,0.0 +19364,70,15,40,0.0 +19364,69,36,24,0.0 +19364,10,31,22,0.0 +19364,57,19.5,14,0.0 +19364,56,38,30,0.0 +19364,68,12.5,50,0.0 +19364,37,26,13,0.0 +19364,54,7.45,47,0.0 +19364,3,10,21,0.0 +19364,43,46,13,0.0 +19365,10,31,31,0.0 +19365,23,9,10,0.0 +19365,18,62.5,39,0.0 +19365,15,15.5,43,0.0 +19365,7,30,32,0.0 +19365,60,34,34,0.0 +19365,47,9.5,17,0.0 +19365,41,9.65,30,0.0 +19365,53,32.8,10,0.0 +19365,51,53,26,0.0 +19365,4,22,7,0.0 +19365,26,31.23,22,0.0 +19365,38,263.5,19,0.0 +19365,5,21.35,26,0.0 +19365,65,21.05,44,0.0 +19365,36,19,50,0.0 +19365,67,14,13,0.0 +19365,71,21.5,47,0.0 +19365,69,36,42,0.0 +19365,17,39,4,0.0 +19365,27,43.9,2,0.0 +19365,66,17,14,0.0 +19365,19,9.2,32,0.0 +19365,75,7.75,7,0.0 +19365,35,18,25,0.0 +19365,49,20,44,0.0 +19365,6,25,38,0.0 +19366,42,14,5,0.0 +19366,21,10,8,0.0 +19367,37,26,40,0.0 +19367,62,49.3,21,0.0 +19367,41,9.65,44,0.0 +19367,2,19,34,0.0 +19367,21,10,1,0.0 +19367,69,36,13,0.0 +19367,15,15.5,35,0.0 +19367,44,19.45,47,0.0 +19367,77,13,45,0.0 +19367,52,7,6,0.0 +19367,11,21,5,0.0 +19367,32,32,12,0.0 +19367,6,25,12,0.0 +19367,26,31.23,43,0.0 +19367,29,123.79,20,0.0 +19367,7,30,18,0.0 +19367,72,34.8,47,0.0 +19367,33,2.5,30,0.0 +19367,13,6,33,0.0 +19367,38,263.5,46,0.0 +19367,61,28.5,12,0.0 +19367,51,53,20,0.0 +19367,71,21.5,34,0.0 +19367,74,10,13,0.0 +19367,23,9,10,0.0 +19367,70,15,11,0.0 +19367,47,9.5,50,0.0 +19367,31,12.5,36,0.0 +19367,54,7.45,10,0.0 +19367,8,40,42,0.0 +19367,3,10,46,0.0 +19367,42,14,27,0.0 +19367,45,9.5,46,0.0 +19367,59,55,49,0.0 +19367,43,46,29,0.0 +19367,22,21,15,0.0 +19367,76,18,37,0.0 +19367,65,21.05,7,0.0 +19367,63,43.9,4,0.0 +19367,4,22,16,0.0 +19367,36,19,45,0.0 +19367,35,18,15,0.0 +19367,67,14,5,0.0 +19367,24,4.5,49,0.0 +19367,9,97,14,0.0 +19367,73,15,42,0.0 +19367,40,18.4,26,0.0 +19367,64,33.25,45,0.0 +19367,53,32.8,4,0.0 +19367,14,23.25,15,0.0 +19368,33,2.5,5,0.0 +19368,55,24,44,0.0 +19368,6,25,39,0.0 +19368,49,20,2,0.0 +19368,30,25.89,50,0.0 +19368,20,81,41,0.0 +19368,2,19,36,0.0 +19368,36,19,25,0.0 +19368,32,32,32,0.0 +19368,23,9,6,0.0 +19368,35,18,37,0.0 +19368,26,31.23,44,0.0 +19368,34,14,33,0.0 +19368,44,19.45,20,0.0 +19368,10,31,37,0.0 +19368,56,38,11,0.0 +19368,21,10,15,0.0 +19368,70,15,35,0.0 +19368,31,12.5,2,0.0 +19368,3,10,40,0.0 +19368,11,21,35,0.0 +19368,19,9.2,1,0.0 +19368,29,123.79,23,0.0 +19368,67,14,15,0.0 +19368,51,53,14,0.0 +19368,53,32.8,36,0.0 +19368,15,15.5,13,0.0 +19368,17,39,47,0.0 +19368,46,12,2,0.0 +19368,24,4.5,19,0.0 +19368,62,49.3,37,0.0 +19368,63,43.9,45,0.0 +19368,38,263.5,42,0.0 +19368,47,9.5,15,0.0 +19368,65,21.05,6,0.0 +19368,16,17.45,38,0.0 +19368,7,30,45,0.0 +19368,14,23.25,27,0.0 +19368,1,18,39,0.0 +19368,64,33.25,9,0.0 +19368,43,46,44,0.0 +19368,68,12.5,33,0.0 +19368,69,36,40,0.0 +19368,41,9.65,40,0.0 +19368,4,22,23,0.0 +19368,76,18,16,0.0 +19368,77,13,38,0.0 +19368,13,6,27,0.0 +19368,73,15,10,0.0 +19368,60,34,39,0.0 +19368,72,34.8,20,0.0 +19368,27,43.9,24,0.0 +19368,61,28.5,39,0.0 +19368,25,14,31,0.0 +19368,18,62.5,35,0.0 +19368,42,14,16,0.0 +19368,22,21,1,0.0 +19368,52,7,5,0.0 +19368,45,9.5,2,0.0 +19368,5,21.35,36,0.0 +19368,71,21.5,45,0.0 +19368,66,17,49,0.0 +19368,48,12.75,13,0.0 +19368,57,19.5,11,0.0 +19368,74,10,35,0.0 +19368,40,18.4,2,0.0 +19368,50,16.25,33,0.0 +19368,9,97,26,0.0 +19368,28,45.6,14,0.0 +19368,8,40,23,0.0 +19368,39,18,47,0.0 +19368,37,26,21,0.0 +19368,58,13.25,24,0.0 +19368,75,7.75,18,0.0 +19369,29,123.79,6,0.0 +19369,71,21.5,12,0.0 +19369,30,25.89,36,0.0 +19369,70,15,22,0.0 +19369,36,19,10,0.0 +19369,77,13,42,0.0 +19369,15,15.5,8,0.0 +19369,42,14,15,0.0 +19369,35,18,29,0.0 +19369,56,38,6,0.0 +19369,66,17,22,0.0 +19369,16,17.45,33,0.0 +19369,34,14,38,0.0 +19369,23,9,5,0.0 +19369,48,12.75,19,0.0 +19369,32,32,13,0.0 +19369,24,4.5,46,0.0 +19369,3,10,26,0.0 +19369,46,12,22,0.0 +19369,8,40,20,0.0 +19369,74,10,13,0.0 +19369,25,14,11,0.0 +19369,64,33.25,33,0.0 +19369,37,26,22,0.0 +19369,17,39,43,0.0 +19369,43,46,49,0.0 +19369,76,18,2,0.0 +19369,31,12.5,42,0.0 +19369,1,18,20,0.0 +19369,2,19,24,0.0 +19369,9,97,9,0.0 +19369,22,21,50,0.0 +19369,18,62.5,50,0.0 +19369,75,7.75,26,0.0 +19369,7,30,15,0.0 +19369,21,10,13,0.0 +19369,49,20,21,0.0 +19369,40,18.4,48,0.0 +19369,65,21.05,2,0.0 +19369,11,21,40,0.0 +19369,45,9.5,41,0.0 +19369,38,263.5,8,0.0 +19369,27,43.9,6,0.0 +19369,72,34.8,13,0.0 +19369,58,13.25,16,0.0 +19369,14,23.25,8,0.0 +19369,68,12.5,5,0.0 +19369,39,18,38,0.0 +19369,50,16.25,4,0.0 +19369,52,7,26,0.0 +19369,19,9.2,27,0.0 +19369,4,22,50,0.0 +19369,20,81,16,0.0 +19369,10,31,9,0.0 +19369,54,7.45,33,0.0 +19369,57,19.5,31,0.0 +19369,26,31.23,18,0.0 +19369,6,25,18,0.0 +19369,55,24,11,0.0 +19370,35,18,19,0.0 +19370,13,6,23,0.0 +19370,45,9.5,42,0.0 +19370,72,34.8,41,0.0 +19370,8,40,50,0.0 +19370,15,15.5,28,0.0 +19370,53,32.8,12,0.0 +19370,70,15,3,0.0 +19370,61,28.5,27,0.0 +19370,40,18.4,10,0.0 +19370,14,23.25,13,0.0 +19370,57,19.5,6,0.0 +19370,46,12,48,0.0 +19370,77,13,45,0.0 +19370,3,10,19,0.0 +19370,20,81,39,0.0 +19370,47,9.5,13,0.0 +19370,64,33.25,31,0.0 +19370,63,43.9,24,0.0 +19370,52,7,23,0.0 +19370,73,15,36,0.0 +19370,1,18,4,0.0 +19370,21,10,26,0.0 +19370,38,263.5,37,0.0 +19370,33,2.5,12,0.0 +19370,66,17,26,0.0 +19370,9,97,30,0.0 +19370,60,34,50,0.0 +19370,5,21.35,44,0.0 +19371,56,38,4,0.0 +19371,50,16.25,17,0.0 +19371,12,38,38,0.0 +19371,63,43.9,20,0.0 +19371,47,9.5,29,0.0 +19371,4,22,30,0.0 +19371,10,31,9,0.0 +19371,20,81,48,0.0 +19371,17,39,45,0.0 +19371,21,10,7,0.0 +19371,38,263.5,24,0.0 +19371,67,14,45,0.0 +19371,46,12,15,0.0 +19371,13,6,17,0.0 +19371,75,7.75,21,0.0 +19371,61,28.5,11,0.0 +19371,43,46,47,0.0 +19371,65,21.05,4,0.0 +19371,53,32.8,19,0.0 +19371,41,9.65,12,0.0 +19371,1,18,35,0.0 +19371,33,2.5,18,0.0 +19371,19,9.2,17,0.0 +19371,40,18.4,46,0.0 +19371,49,20,16,0.0 +19371,72,34.8,38,0.0 +19371,59,55,39,0.0 +19371,32,32,47,0.0 +19371,8,40,21,0.0 +19371,37,26,22,0.0 +19371,54,7.45,50,0.0 +19371,2,19,33,0.0 +19371,48,12.75,22,0.0 +19371,5,21.35,21,0.0 +19371,24,4.5,24,0.0 +19371,60,34,47,0.0 +19371,36,19,22,0.0 +19371,39,18,4,0.0 +19371,26,31.23,44,0.0 +19371,73,15,21,0.0 +19371,11,21,7,0.0 +19371,16,17.45,8,0.0 +19371,42,14,10,0.0 +19371,31,12.5,24,0.0 +19371,69,36,10,0.0 +19371,77,13,7,0.0 +19371,68,12.5,6,0.0 +19371,29,123.79,39,0.0 +19371,22,21,6,0.0 +19371,27,43.9,40,0.0 +19371,74,10,17,0.0 +19371,28,45.6,25,0.0 +19371,7,30,36,0.0 +19371,76,18,3,0.0 +19371,45,9.5,33,0.0 +19371,34,14,7,0.0 +19371,64,33.25,21,0.0 +19371,14,23.25,24,0.0 +19371,9,97,12,0.0 +19371,66,17,16,0.0 +19371,58,13.25,40,0.0 +19372,66,17,3,0.0 +19372,4,22,17,0.0 +19372,33,2.5,32,0.0 +19372,62,49.3,22,0.0 +19372,11,21,9,0.0 +19372,40,18.4,3,0.0 +19372,36,19,25,0.0 +19372,8,40,16,0.0 +19372,1,18,5,0.0 +19372,3,10,40,0.0 +19372,50,16.25,18,0.0 +19372,67,14,6,0.0 +19372,75,7.75,32,0.0 +19372,58,13.25,4,0.0 +19372,65,21.05,19,0.0 +19372,70,15,29,0.0 +19372,73,15,42,0.0 +19372,26,31.23,33,0.0 +19372,77,13,12,0.0 +19372,56,38,13,0.0 +19372,59,55,28,0.0 +19372,14,23.25,50,0.0 +19372,52,7,49,0.0 +19372,69,36,31,0.0 +19372,39,18,15,0.0 +19372,31,12.5,18,0.0 +19372,5,21.35,43,0.0 +19372,28,45.6,6,0.0 +19372,35,18,19,0.0 +19372,32,32,21,0.0 +19372,6,25,34,0.0 +19372,47,9.5,18,0.0 +19372,76,18,25,0.0 +19372,53,32.8,27,0.0 +19372,17,39,11,0.0 +19372,42,14,14,0.0 +19372,43,46,16,0.0 +19372,45,9.5,14,0.0 +19372,55,24,38,0.0 +19372,46,12,19,0.0 +19372,71,21.5,40,0.0 +19372,9,97,18,0.0 +19372,20,81,40,0.0 +19372,63,43.9,19,0.0 +19372,38,263.5,11,0.0 +19372,22,21,40,0.0 +19372,13,6,30,0.0 +19372,27,43.9,43,0.0 +19372,74,10,10,0.0 +19372,23,9,32,0.0 +19372,2,19,29,0.0 +19372,10,31,27,0.0 +19372,57,19.5,27,0.0 +19372,19,9.2,40,0.0 +19372,30,25.89,26,0.0 +19372,54,7.45,13,0.0 +19372,68,12.5,16,0.0 +19372,51,53,24,0.0 +19373,12,38,12,0.0 +19373,42,14,15,0.0 +19373,74,10,3,0.0 +19373,1,18,42,0.0 +19373,66,17,16,0.0 +19373,69,36,14,0.0 +19373,3,10,15,0.0 +19373,71,21.5,21,0.0 +19373,13,6,22,0.0 +19373,29,123.79,6,0.0 +19373,51,53,34,0.0 +19373,36,19,43,0.0 +19373,34,14,29,0.0 +19373,17,39,18,0.0 +19373,9,97,25,0.0 +19373,64,33.25,27,0.0 +19373,26,31.23,14,0.0 +19373,39,18,33,0.0 +19373,23,9,4,0.0 +19373,14,23.25,27,0.0 +19373,7,30,33,0.0 +19373,76,18,46,0.0 +19373,2,19,21,0.0 +19373,21,10,36,0.0 +19373,5,21.35,32,0.0 +19373,46,12,41,0.0 +19373,61,28.5,34,0.0 +19373,4,22,13,0.0 +19373,22,21,35,0.0 +19373,59,55,46,0.0 +19373,19,9.2,43,0.0 +19373,24,4.5,45,0.0 +19373,50,16.25,28,0.0 +19373,63,43.9,11,0.0 +19373,45,9.5,35,0.0 +19373,77,13,23,0.0 +19373,10,31,43,0.0 +19373,72,34.8,28,0.0 +19373,33,2.5,15,0.0 +19373,35,18,22,0.0 +19373,27,43.9,26,0.0 +19373,48,12.75,8,0.0 +19373,60,34,5,0.0 +19373,31,12.5,16,0.0 +19373,52,7,10,0.0 +19373,41,9.65,1,0.0 +19373,47,9.5,34,0.0 +19373,38,263.5,33,0.0 +19373,8,40,42,0.0 +19373,43,46,14,0.0 +19373,65,21.05,6,0.0 +19373,16,17.45,16,0.0 +19373,55,24,27,0.0 +19373,30,25.89,14,0.0 +19373,49,20,44,0.0 +19373,75,7.75,39,0.0 +19373,67,14,32,0.0 +19373,40,18.4,9,0.0 +19373,68,12.5,43,0.0 +19373,20,81,36,0.0 +19373,54,7.45,41,0.0 +19373,6,25,8,0.0 +19373,37,26,35,0.0 +19373,62,49.3,19,0.0 +19373,18,62.5,4,0.0 +19373,56,38,18,0.0 +19373,15,15.5,9,0.0 +19373,58,13.25,15,0.0 +19373,57,19.5,31,0.0 +19373,44,19.45,33,0.0 +19373,32,32,3,0.0 +19373,53,32.8,34,0.0 +19373,25,14,35,0.0 +19373,11,21,1,0.0 +19373,28,45.6,18,0.0 +19373,70,15,37,0.0 +19373,73,15,12,0.0 +19374,48,12.75,39,0.0 +19374,10,31,43,0.0 +19374,13,6,3,0.0 +19374,31,12.5,5,0.0 +19374,39,18,17,0.0 +19374,37,26,12,0.0 +19374,5,21.35,36,0.0 +19374,23,9,18,0.0 +19374,12,38,14,0.0 +19374,14,23.25,18,0.0 +19374,76,18,38,0.0 +19374,60,34,13,0.0 +19374,65,21.05,48,0.0 +19374,50,16.25,11,0.0 +19374,30,25.89,1,0.0 +19374,66,17,32,0.0 +19374,20,81,47,0.0 +19374,28,45.6,14,0.0 +19374,57,19.5,27,0.0 +19374,61,28.5,26,0.0 +19374,75,7.75,6,0.0 +19374,69,36,9,0.0 +19374,26,31.23,46,0.0 +19374,55,24,19,0.0 +19374,70,15,27,0.0 +19374,74,10,41,0.0 +19374,21,10,43,0.0 +19374,64,33.25,32,0.0 +19374,49,20,20,0.0 +19374,53,32.8,1,0.0 +19374,68,12.5,23,0.0 +19374,29,123.79,38,0.0 +19374,25,14,2,0.0 +19374,8,40,49,0.0 +19374,73,15,28,0.0 +19374,6,25,29,0.0 +19374,62,49.3,48,0.0 +19374,2,19,13,0.0 +19374,45,9.5,15,0.0 +19374,46,12,3,0.0 +19374,51,53,33,0.0 +19374,15,15.5,21,0.0 +19374,18,62.5,40,0.0 +19374,3,10,7,0.0 +19374,35,18,16,0.0 +19374,67,14,27,0.0 +19374,7,30,46,0.0 +19374,36,19,47,0.0 +19374,52,7,49,0.0 +19374,44,19.45,50,0.0 +19374,16,17.45,26,0.0 +19374,22,21,14,0.0 +19374,11,21,26,0.0 +19374,43,46,42,0.0 +19374,40,18.4,38,0.0 +19374,72,34.8,18,0.0 +19374,71,21.5,44,0.0 +19374,59,55,29,0.0 +19374,38,263.5,4,0.0 +19374,33,2.5,39,0.0 +19374,42,14,33,0.0 +19374,41,9.65,11,0.0 +19374,58,13.25,1,0.0 +19374,19,9.2,45,0.0 +19374,34,14,38,0.0 +19374,1,18,18,0.0 +19374,54,7.45,16,0.0 +19374,47,9.5,19,0.0 +19374,27,43.9,19,0.0 +19374,9,97,50,0.0 +19374,63,43.9,37,0.0 +19374,56,38,3,0.0 +19375,73,15,11,0.0 +19376,14,23.25,42,0.0 +19376,42,14,32,0.0 +19376,69,36,18,0.0 +19376,36,19,8,0.0 +19376,11,21,36,0.0 +19376,17,39,9,0.0 +19376,75,7.75,29,0.0 +19376,18,62.5,24,0.0 +19376,8,40,48,0.0 +19376,7,30,33,0.0 +19376,16,17.45,40,0.0 +19376,76,18,14,0.0 +19376,29,123.79,35,0.0 +19376,61,28.5,19,0.0 +19376,64,33.25,17,0.0 +19376,28,45.6,23,0.0 +19376,12,38,11,0.0 +19376,52,7,37,0.0 +19376,70,15,14,0.0 +19376,22,21,21,0.0 +19376,66,17,7,0.0 +19376,58,13.25,22,0.0 +19376,57,19.5,33,0.0 +19376,77,13,43,0.0 +19376,67,14,24,0.0 +19376,32,32,22,0.0 +19376,37,26,21,0.0 +19376,53,32.8,44,0.0 +19376,73,15,36,0.0 +19376,19,9.2,49,0.0 +19376,50,16.25,19,0.0 +19376,5,21.35,20,0.0 +19376,71,21.5,27,0.0 +19376,65,21.05,34,0.0 +19376,27,43.9,32,0.0 +19376,46,12,11,0.0 +19376,74,10,25,0.0 +19376,26,31.23,3,0.0 +19376,31,12.5,25,0.0 +19376,51,53,41,0.0 +19376,48,12.75,14,0.0 +19376,49,20,29,0.0 +19376,23,9,33,0.0 +19376,34,14,42,0.0 +19376,3,10,3,0.0 +19376,54,7.45,46,0.0 +19376,62,49.3,43,0.0 +19376,44,19.45,10,0.0 +19376,24,4.5,45,0.0 +19376,9,97,36,0.0 +19376,15,15.5,8,0.0 +19376,43,46,21,0.0 +19376,35,18,7,0.0 +19376,25,14,15,0.0 +19376,39,18,11,0.0 +19376,40,18.4,24,0.0 +19376,13,6,25,0.0 +19376,59,55,10,0.0 +19376,68,12.5,47,0.0 +19376,47,9.5,10,0.0 +19376,55,24,18,0.0 +19376,60,34,17,0.0 +19376,21,10,8,0.0 +19376,6,25,31,0.0 +19377,45,9.5,3,0.0 +19377,72,34.8,38,0.0 +19377,25,14,1,0.0 +19377,76,18,38,0.0 +19377,6,25,44,0.0 +19377,21,10,28,0.0 +19377,33,2.5,17,0.0 +19377,60,34,19,0.0 +19377,32,32,11,0.0 +19377,5,21.35,19,0.0 +19377,8,40,29,0.0 +19377,18,62.5,17,0.0 +19377,77,13,43,0.0 +19377,35,18,33,0.0 +19377,28,45.6,34,0.0 +19377,69,36,25,0.0 +19377,34,14,34,0.0 +19377,46,12,18,0.0 +19377,57,19.5,8,0.0 +19377,39,18,24,0.0 +19377,44,19.45,44,0.0 +19377,2,19,11,0.0 +19377,10,31,17,0.0 +19377,73,15,30,0.0 +19377,75,7.75,29,0.0 +19377,27,43.9,20,0.0 +19377,1,18,8,0.0 +19377,70,15,20,0.0 +19377,3,10,2,0.0 +19377,11,21,12,0.0 +19377,66,17,50,0.0 +19377,31,12.5,37,0.0 +19377,50,16.25,25,0.0 +19377,59,55,44,0.0 +19377,74,10,5,0.0 +19377,30,25.89,48,0.0 +19377,9,97,45,0.0 +19377,36,19,31,0.0 +19377,63,43.9,45,0.0 +19377,26,31.23,33,0.0 +19377,68,12.5,48,0.0 +19377,64,33.25,17,0.0 +19378,26,31.23,24,0.0 +19378,7,30,34,0.0 +19378,6,25,26,0.0 +19378,61,28.5,48,0.0 +19378,49,20,35,0.0 +19378,45,9.5,31,0.0 +19378,3,10,27,0.0 +19378,46,12,35,0.0 +19378,4,22,27,0.0 +19378,9,97,36,0.0 +19378,52,7,37,0.0 +19378,75,7.75,45,0.0 +19378,17,39,47,0.0 +19378,2,19,8,0.0 +19378,43,46,30,0.0 +19378,42,14,33,0.0 +19378,21,10,33,0.0 +19378,23,9,7,0.0 +19378,74,10,11,0.0 +19378,37,26,42,0.0 +19378,11,21,24,0.0 +19378,39,18,31,0.0 +19378,16,17.45,7,0.0 +19378,55,24,10,0.0 +19378,67,14,20,0.0 +19378,63,43.9,33,0.0 +19378,33,2.5,26,0.0 +19378,27,43.9,5,0.0 +19378,56,38,23,0.0 +19378,65,21.05,25,0.0 +19378,68,12.5,4,0.0 +19378,38,263.5,46,0.0 +19378,47,9.5,40,0.0 +19378,73,15,23,0.0 +19378,76,18,42,0.0 +19378,30,25.89,23,0.0 +19378,62,49.3,3,0.0 +19378,15,15.5,16,0.0 +19378,34,14,34,0.0 +19378,60,34,1,0.0 +19378,64,33.25,5,0.0 +19378,18,62.5,33,0.0 +19378,72,34.8,19,0.0 +19378,51,53,12,0.0 +19378,10,31,26,0.0 +19378,41,9.65,11,0.0 +19378,58,13.25,28,0.0 +19378,71,21.5,13,0.0 +19378,44,19.45,43,0.0 +19378,69,36,10,0.0 +19378,5,21.35,13,0.0 +19378,13,6,29,0.0 +19378,19,9.2,4,0.0 +19378,59,55,13,0.0 +19378,32,32,50,0.0 +19378,1,18,30,0.0 +19378,22,21,39,0.0 +19378,29,123.79,41,0.0 +19378,31,12.5,33,0.0 +19379,75,7.75,4,0.0 +19379,33,2.5,18,0.0 +19379,44,19.45,37,0.0 +19379,26,31.23,8,0.0 +19379,65,21.05,27,0.0 +19379,51,53,35,0.0 +19379,70,15,4,0.0 +19379,55,24,28,0.0 +19379,28,45.6,45,0.0 +19379,49,20,25,0.0 +19379,46,12,17,0.0 +19379,22,21,15,0.0 +19379,23,9,36,0.0 +19379,31,12.5,48,0.0 +19379,11,21,18,0.0 +19379,77,13,45,0.0 +19379,58,13.25,7,0.0 +19379,71,21.5,37,0.0 +19379,16,17.45,12,0.0 +19379,74,10,6,0.0 +19379,59,55,46,0.0 +19379,63,43.9,21,0.0 +19379,43,46,30,0.0 +19379,14,23.25,49,0.0 +19379,2,19,29,0.0 +19379,20,81,32,0.0 +19379,57,19.5,26,0.0 +19379,29,123.79,41,0.0 +19379,6,25,12,0.0 +19379,72,34.8,43,0.0 +19379,21,10,4,0.0 +19379,67,14,49,0.0 +19379,30,25.89,32,0.0 +19379,17,39,12,0.0 +19379,9,97,40,0.0 +19379,24,4.5,18,0.0 +19379,39,18,7,0.0 +19379,15,15.5,16,0.0 +19379,25,14,15,0.0 +19379,50,16.25,1,0.0 +19379,7,30,35,0.0 +19379,36,19,30,0.0 +19379,18,62.5,47,0.0 +19379,13,6,22,0.0 +19379,61,28.5,11,0.0 +19379,54,7.45,26,0.0 +19379,64,33.25,27,0.0 +19379,53,32.8,5,0.0 +19379,5,21.35,30,0.0 +19379,66,17,43,0.0 +19379,12,38,18,0.0 +19379,1,18,11,0.0 +19379,19,9.2,34,0.0 +19379,56,38,42,0.0 +19379,60,34,5,0.0 +19379,48,12.75,32,0.0 +19379,76,18,37,0.0 +19379,32,32,8,0.0 +19379,52,7,29,0.0 +19379,38,263.5,34,0.0 +19379,62,49.3,22,0.0 +19379,69,36,14,0.0 +19379,35,18,13,0.0 +19379,4,22,37,0.0 +19379,27,43.9,4,0.0 +19379,47,9.5,20,0.0 +19379,68,12.5,12,0.0 +19379,8,40,21,0.0 +19379,73,15,13,0.0 +19379,37,26,15,0.0 +19379,42,14,35,0.0 +19379,40,18.4,11,0.0 +19379,3,10,21,0.0 +19379,45,9.5,13,0.0 +19379,34,14,42,0.0 +19379,41,9.65,38,0.0 +19379,10,31,41,0.0 +19380,10,31,37,0.0 +19380,38,263.5,23,0.0 +19380,36,19,34,0.0 +19380,46,12,6,0.0 +19380,42,14,16,0.0 +19380,32,32,24,0.0 +19380,20,81,46,0.0 +19380,66,17,12,0.0 +19380,41,9.65,36,0.0 +19380,28,45.6,34,0.0 +19380,61,28.5,42,0.0 +19380,74,10,6,0.0 +19380,17,39,31,0.0 +19380,48,12.75,29,0.0 +19380,70,15,14,0.0 +19380,35,18,28,0.0 +19380,47,9.5,4,0.0 +19380,65,21.05,1,0.0 +19380,15,15.5,8,0.0 +19380,73,15,49,0.0 +19380,34,14,50,0.0 +19381,6,25,22,0.0 +19381,35,18,27,0.0 +19381,40,18.4,8,0.0 +19381,31,12.5,35,0.0 +19381,38,263.5,29,0.0 +19381,76,18,24,0.0 +19381,4,22,46,0.0 +19381,63,43.9,22,0.0 +19381,43,46,11,0.0 +19381,50,16.25,5,0.0 +19381,9,97,15,0.0 +19381,26,31.23,14,0.0 +19381,37,26,48,0.0 +19381,68,12.5,15,0.0 +19381,66,17,37,0.0 +19381,72,34.8,14,0.0 +19381,18,62.5,43,0.0 +19381,17,39,11,0.0 +19381,42,14,41,0.0 +19381,77,13,24,0.0 +19381,71,21.5,2,0.0 +19381,10,31,36,0.0 +19381,24,4.5,10,0.0 +19381,48,12.75,23,0.0 +19381,62,49.3,16,0.0 +19381,8,40,46,0.0 +19381,1,18,31,0.0 +19381,51,53,44,0.0 +19381,54,7.45,45,0.0 +19381,75,7.75,18,0.0 +19381,15,15.5,34,0.0 +19381,3,10,12,0.0 +19381,74,10,48,0.0 +19381,46,12,14,0.0 +19381,55,24,11,0.0 +19381,22,21,20,0.0 +19381,47,9.5,3,0.0 +19381,14,23.25,9,0.0 +19381,32,32,18,0.0 +19381,12,38,9,0.0 +19381,59,55,10,0.0 +19381,33,2.5,36,0.0 +19381,19,9.2,26,0.0 +19381,45,9.5,32,0.0 +19381,2,19,10,0.0 +19381,23,9,38,0.0 +19381,64,33.25,14,0.0 +19381,28,45.6,5,0.0 +19381,58,13.25,34,0.0 +19381,16,17.45,8,0.0 +19381,73,15,9,0.0 +19381,29,123.79,2,0.0 +19381,49,20,45,0.0 +19381,41,9.65,7,0.0 +19381,65,21.05,4,0.0 +19381,11,21,1,0.0 +19381,44,19.45,46,0.0 +19381,21,10,46,0.0 +19381,25,14,20,0.0 +19381,70,15,16,0.0 +19381,69,36,22,0.0 +19381,60,34,10,0.0 +19382,17,39,49,0.0 +19382,62,49.3,11,0.0 +19382,56,38,26,0.0 +19382,38,263.5,4,0.0 +19382,5,21.35,27,0.0 +19382,41,9.65,34,0.0 +19382,43,46,20,0.0 +19382,20,81,28,0.0 +19382,8,40,10,0.0 +19382,28,45.6,29,0.0 +19382,13,6,5,0.0 +19382,75,7.75,31,0.0 +19382,21,10,4,0.0 +19382,29,123.79,9,0.0 +19382,25,14,23,0.0 +19382,44,19.45,45,0.0 +19382,53,32.8,8,0.0 +19382,1,18,32,0.0 +19382,19,9.2,6,0.0 +19382,4,22,19,0.0 +19382,32,32,16,0.0 +19382,47,9.5,50,0.0 +19382,22,21,9,0.0 +19382,36,19,32,0.0 +19382,37,26,31,0.0 +19382,31,12.5,47,0.0 +19382,70,15,22,0.0 +19382,18,62.5,39,0.0 +19382,66,17,13,0.0 +19382,24,4.5,21,0.0 +19382,10,31,23,0.0 +19382,57,19.5,42,0.0 +19382,61,28.5,37,0.0 +19382,63,43.9,46,0.0 +19382,30,25.89,13,0.0 +19382,49,20,4,0.0 +19382,33,2.5,49,0.0 +19382,14,23.25,30,0.0 +19382,68,12.5,17,0.0 +19382,11,21,8,0.0 +19382,69,36,11,0.0 +19382,51,53,5,0.0 +19382,59,55,49,0.0 +19382,71,21.5,30,0.0 +19383,2,19,11,0.0 +19383,47,9.5,47,0.0 +19383,39,18,15,0.0 +19383,38,263.5,16,0.0 +19383,70,15,42,0.0 +19383,10,31,23,0.0 +19383,50,16.25,21,0.0 +19383,6,25,15,0.0 +19383,30,25.89,31,0.0 +19383,1,18,49,0.0 +19383,31,12.5,26,0.0 +19383,33,2.5,23,0.0 +19383,20,81,13,0.0 +19383,74,10,7,0.0 +19383,18,62.5,23,0.0 +19383,60,34,41,0.0 +19383,45,9.5,28,0.0 +19383,29,123.79,38,0.0 +19383,43,46,25,0.0 +19383,14,23.25,11,0.0 +19383,3,10,39,0.0 +19383,67,14,48,0.0 +19383,73,15,17,0.0 +19383,71,21.5,26,0.0 +19383,54,7.45,47,0.0 +19383,42,14,11,0.0 +19383,37,26,32,0.0 +19383,57,19.5,38,0.0 +19383,5,21.35,21,0.0 +19383,66,17,10,0.0 +19384,33,2.5,4,0.0 +19384,22,21,36,0.0 +19384,1,18,43,0.0 +19384,67,14,24,0.0 +19384,69,36,7,0.0 +19385,10,31,28,0.0 +19385,59,55,48,0.0 +19385,2,19,42,0.0 +19385,33,2.5,46,0.0 +19385,39,18,1,0.0 +19385,69,36,3,0.0 +19385,60,34,48,0.0 +19385,28,45.6,37,0.0 +19385,5,21.35,11,0.0 +19385,54,7.45,3,0.0 +19385,63,43.9,7,0.0 +19385,4,22,13,0.0 +19385,71,21.5,35,0.0 +19386,56,38,42,0.0 +19386,5,21.35,23,0.0 +19386,74,10,6,0.0 +19386,25,14,8,0.0 +19386,26,31.23,28,0.0 +19386,11,21,33,0.0 +19386,49,20,40,0.0 +19386,32,32,37,0.0 +19386,53,32.8,21,0.0 +19386,2,19,7,0.0 +19386,44,19.45,7,0.0 +19386,21,10,45,0.0 +19386,64,33.25,45,0.0 +19386,57,19.5,25,0.0 +19386,36,19,23,0.0 +19386,71,21.5,38,0.0 +19386,75,7.75,35,0.0 +19386,15,15.5,31,0.0 +19386,43,46,19,0.0 +19386,65,21.05,47,0.0 +19386,35,18,17,0.0 +19386,12,38,9,0.0 +19386,41,9.65,49,0.0 +19386,14,23.25,4,0.0 +19386,61,28.5,18,0.0 +19386,4,22,31,0.0 +19386,28,45.6,31,0.0 +19386,31,12.5,10,0.0 +19386,51,53,20,0.0 +19386,54,7.45,45,0.0 +19386,62,49.3,32,0.0 +19386,20,81,12,0.0 +19386,47,9.5,2,0.0 +19386,63,43.9,3,0.0 +19386,9,97,13,0.0 +19386,29,123.79,44,0.0 +19386,76,18,24,0.0 +19386,48,12.75,6,0.0 +19386,18,62.5,25,0.0 +19386,46,12,12,0.0 +19386,33,2.5,44,0.0 +19386,3,10,22,0.0 +19386,70,15,17,0.0 +19386,38,263.5,2,0.0 +19386,67,14,38,0.0 +19386,72,34.8,30,0.0 +19386,30,25.89,14,0.0 +19386,50,16.25,34,0.0 +19386,52,7,1,0.0 +19386,24,4.5,3,0.0 +19386,60,34,10,0.0 +19386,69,36,32,0.0 +19386,77,13,46,0.0 +19386,42,14,43,0.0 +19386,68,12.5,39,0.0 +19386,39,18,46,0.0 +19386,59,55,35,0.0 +19386,13,6,39,0.0 +19386,1,18,50,0.0 +19386,16,17.45,38,0.0 +19386,19,9.2,15,0.0 +19386,7,30,23,0.0 +19386,8,40,48,0.0 +19386,10,31,26,0.0 +19386,45,9.5,27,0.0 +19386,22,21,35,0.0 +19386,55,24,43,0.0 +19386,17,39,26,0.0 +19386,40,18.4,34,0.0 +19386,6,25,24,0.0 +19386,66,17,43,0.0 +19387,44,19.45,2,0.0 +19387,10,31,29,0.0 +19387,16,17.45,10,0.0 +19387,75,7.75,12,0.0 +19387,56,38,33,0.0 +19387,14,23.25,13,0.0 +19387,33,2.5,19,0.0 +19387,60,34,12,0.0 +19387,37,26,18,0.0 +19387,62,49.3,47,0.0 +19387,9,97,22,0.0 +19387,72,34.8,1,0.0 +19387,64,33.25,31,0.0 +19387,2,19,24,0.0 +19387,24,4.5,29,0.0 +19387,71,21.5,24,0.0 +19387,6,25,7,0.0 +19387,55,24,19,0.0 +19387,35,18,30,0.0 +19387,49,20,17,0.0 +19387,3,10,20,0.0 +19387,26,31.23,44,0.0 +19387,53,32.8,24,0.0 +19387,63,43.9,24,0.0 +19387,45,9.5,35,0.0 +19387,57,19.5,39,0.0 +19387,41,9.65,49,0.0 +19387,20,81,39,0.0 +19387,29,123.79,3,0.0 +19387,43,46,23,0.0 +19387,13,6,4,0.0 +19387,73,15,36,0.0 +19387,42,14,25,0.0 +19387,58,13.25,22,0.0 +19387,21,10,9,0.0 +19387,38,263.5,20,0.0 +19387,15,15.5,40,0.0 +19387,32,32,25,0.0 +19387,74,10,24,0.0 +19387,23,9,1,0.0 +19387,19,9.2,12,0.0 +19387,4,22,2,0.0 +19387,12,38,30,0.0 +19387,34,14,13,0.0 +19387,5,21.35,23,0.0 +19387,30,25.89,19,0.0 +19387,76,18,26,0.0 +19387,70,15,39,0.0 +19387,7,30,39,0.0 +19387,40,18.4,13,0.0 +19387,59,55,30,0.0 +19388,40,18.4,27,0.0 +19388,39,18,45,0.0 +19388,57,19.5,19,0.0 +19388,31,12.5,28,0.0 +19388,20,81,39,0.0 +19388,45,9.5,21,0.0 +19388,72,34.8,47,0.0 +19388,36,19,22,0.0 +19388,54,7.45,9,0.0 +19388,67,14,42,0.0 +19388,34,14,28,0.0 +19388,52,7,19,0.0 +19388,5,21.35,9,0.0 +19388,70,15,33,0.0 +19388,74,10,13,0.0 +19388,61,28.5,21,0.0 +19388,17,39,17,0.0 +19388,76,18,4,0.0 +19388,48,12.75,42,0.0 +19388,18,62.5,7,0.0 +19388,30,25.89,47,0.0 +19388,14,23.25,37,0.0 +19388,69,36,45,0.0 +19388,19,9.2,26,0.0 +19388,44,19.45,5,0.0 +19388,55,24,37,0.0 +19388,49,20,27,0.0 +19388,41,9.65,27,0.0 +19388,6,25,49,0.0 +19388,53,32.8,32,0.0 +19388,16,17.45,17,0.0 +19388,60,34,50,0.0 +19388,25,14,41,0.0 +19388,37,26,5,0.0 +19388,32,32,5,0.0 +19388,73,15,28,0.0 +19389,20,81,11,0.0 +19389,56,38,43,0.0 +19389,19,9.2,29,0.0 +19389,77,13,18,0.0 +19389,18,62.5,24,0.0 +19389,32,32,3,0.0 +19389,48,12.75,2,0.0 +19389,7,30,49,0.0 +19389,63,43.9,8,0.0 +19389,31,12.5,9,0.0 +19389,49,20,21,0.0 +19389,47,9.5,26,0.0 +19389,68,12.5,44,0.0 +19390,36,19,46,0.0 +19390,44,19.45,47,0.0 +19390,54,7.45,37,0.0 +19390,48,12.75,10,0.0 +19390,22,21,6,0.0 +19390,73,15,21,0.0 +19390,5,21.35,37,0.0 +19390,8,40,12,0.0 +19390,63,43.9,33,0.0 +19390,74,10,41,0.0 +19390,38,263.5,33,0.0 +19390,62,49.3,10,0.0 +19390,10,31,4,0.0 +19390,45,9.5,50,0.0 +19390,29,123.79,44,0.0 +19390,49,20,5,0.0 +19390,51,53,25,0.0 +19390,12,38,4,0.0 +19391,55,24,28,0.0 +19391,12,38,17,0.0 +19391,20,81,43,0.0 +19391,69,36,10,0.0 +19391,73,15,48,0.0 +19391,71,21.5,15,0.0 +19391,6,25,17,0.0 +19391,28,45.6,17,0.0 +19391,4,22,49,0.0 +19391,49,20,45,0.0 +19391,45,9.5,20,0.0 +19391,13,6,3,0.0 +19391,60,34,48,0.0 +19391,5,21.35,48,0.0 +19391,67,14,21,0.0 +19391,18,62.5,11,0.0 +19391,26,31.23,10,0.0 +19391,65,21.05,23,0.0 +19391,56,38,34,0.0 +19391,31,12.5,47,0.0 +19391,2,19,49,0.0 +19391,19,9.2,32,0.0 +19391,1,18,28,0.0 +19391,62,49.3,7,0.0 +19391,75,7.75,5,0.0 +19391,24,4.5,4,0.0 +19391,48,12.75,22,0.0 +19391,43,46,18,0.0 +19391,30,25.89,49,0.0 +19391,8,40,14,0.0 +19391,33,2.5,18,0.0 +19391,68,12.5,50,0.0 +19391,35,18,14,0.0 +19391,61,28.5,35,0.0 +19391,11,21,46,0.0 +19391,16,17.45,43,0.0 +19391,7,30,20,0.0 +19391,46,12,29,0.0 +19391,57,19.5,40,0.0 +19391,9,97,26,0.0 +19391,77,13,22,0.0 +19391,25,14,36,0.0 +19391,70,15,45,0.0 +19391,38,263.5,1,0.0 +19391,10,31,3,0.0 +19391,44,19.45,26,0.0 +19391,21,10,22,0.0 +19391,32,32,6,0.0 +19391,59,55,1,0.0 +19391,37,26,24,0.0 +19391,72,34.8,25,0.0 +19392,26,31.23,26,0.0 +19392,43,46,16,0.0 +19392,18,62.5,38,0.0 +19392,27,43.9,26,0.0 +19392,44,19.45,44,0.0 +19392,15,15.5,33,0.0 +19392,2,19,45,0.0 +19392,16,17.45,1,0.0 +19392,29,123.79,5,0.0 +19392,34,14,3,0.0 +19392,57,19.5,1,0.0 +19392,70,15,23,0.0 +19392,35,18,5,0.0 +19392,12,38,12,0.0 +19392,39,18,15,0.0 +19392,54,7.45,27,0.0 +19392,50,16.25,26,0.0 +19392,52,7,4,0.0 +19392,20,81,45,0.0 +19392,9,97,27,0.0 +19392,1,18,42,0.0 +19392,65,21.05,4,0.0 +19392,30,25.89,47,0.0 +19392,33,2.5,31,0.0 +19392,7,30,35,0.0 +19392,10,31,35,0.0 +19392,63,43.9,24,0.0 +19392,3,10,40,0.0 +19392,60,34,20,0.0 +19392,75,7.75,46,0.0 +19392,76,18,3,0.0 +19392,8,40,46,0.0 +19392,64,33.25,28,0.0 +19392,42,14,15,0.0 +19392,71,21.5,25,0.0 +19392,77,13,50,0.0 +19392,66,17,12,0.0 +19392,53,32.8,20,0.0 +19392,41,9.65,19,0.0 +19392,72,34.8,29,0.0 +19392,51,53,5,0.0 +19392,40,18.4,28,0.0 +19392,14,23.25,20,0.0 +19392,73,15,44,0.0 +19392,68,12.5,16,0.0 +19392,55,24,37,0.0 +19392,23,9,30,0.0 +19392,17,39,44,0.0 +19392,4,22,48,0.0 +19392,24,4.5,47,0.0 +19392,32,32,25,0.0 +19392,47,9.5,34,0.0 +19392,46,12,50,0.0 +19392,38,263.5,31,0.0 +19392,22,21,50,0.0 +19392,31,12.5,12,0.0 +19392,19,9.2,9,0.0 +19392,13,6,21,0.0 +19392,48,12.75,29,0.0 +19392,45,9.5,19,0.0 +19393,17,39,1,0.0 +19393,61,28.5,19,0.0 +19393,73,15,8,0.0 +19393,19,9.2,32,0.0 +19393,64,33.25,10,0.0 +19393,35,18,44,0.0 +19393,68,12.5,1,0.0 +19393,33,2.5,46,0.0 +19393,65,21.05,1,0.0 +19393,77,13,34,0.0 +19393,1,18,13,0.0 +19393,43,46,50,0.0 +19393,32,32,8,0.0 +19393,37,26,30,0.0 +19393,63,43.9,31,0.0 +19393,45,9.5,36,0.0 +19393,47,9.5,4,0.0 +19393,72,34.8,27,0.0 +19393,2,19,8,0.0 +19393,51,53,25,0.0 +19393,34,14,36,0.0 +19393,13,6,46,0.0 +19393,36,19,10,0.0 +19393,62,49.3,16,0.0 +19393,5,21.35,49,0.0 +19393,53,32.8,40,0.0 +19393,38,263.5,16,0.0 +19393,56,38,31,0.0 +19393,40,18.4,9,0.0 +19393,10,31,13,0.0 +19393,49,20,8,0.0 +19393,71,21.5,27,0.0 +19393,3,10,25,0.0 +19393,58,13.25,38,0.0 +19393,50,16.25,41,0.0 +19393,6,25,42,0.0 +19393,69,36,42,0.0 +19393,57,19.5,20,0.0 +19393,48,12.75,32,0.0 +19393,25,14,19,0.0 +19393,7,30,45,0.0 +19393,26,31.23,12,0.0 +19393,42,14,47,0.0 +19393,52,7,17,0.0 +19393,67,14,34,0.0 +19393,31,12.5,35,0.0 +19393,39,18,11,0.0 +19393,30,25.89,4,0.0 +19393,70,15,25,0.0 +19393,27,43.9,22,0.0 +19393,8,40,48,0.0 +19393,74,10,2,0.0 +19393,75,7.75,43,0.0 +19393,29,123.79,50,0.0 +19393,12,38,35,0.0 +19393,28,45.6,44,0.0 +19393,9,97,18,0.0 +19393,76,18,25,0.0 +19393,60,34,35,0.0 +19393,14,23.25,3,0.0 +19393,59,55,50,0.0 +19393,44,19.45,48,0.0 +19393,16,17.45,24,0.0 +19393,46,12,7,0.0 +19394,40,18.4,7,0.0 +19394,23,9,37,0.0 +19394,75,7.75,42,0.0 +19394,76,18,46,0.0 +19394,68,12.5,31,0.0 +19394,38,263.5,13,0.0 +19394,72,34.8,27,0.0 +19394,9,97,8,0.0 +19394,58,13.25,46,0.0 +19394,16,17.45,41,0.0 +19394,61,28.5,12,0.0 +19394,27,43.9,3,0.0 +19394,73,15,12,0.0 +19394,42,14,15,0.0 +19394,56,38,30,0.0 +19394,44,19.45,29,0.0 +19394,13,6,33,0.0 +19394,6,25,5,0.0 +19394,26,31.23,48,0.0 +19394,32,32,23,0.0 +19394,48,12.75,39,0.0 +19394,53,32.8,32,0.0 +19394,5,21.35,26,0.0 +19394,65,21.05,25,0.0 +19394,25,14,22,0.0 +19394,77,13,48,0.0 +19394,3,10,22,0.0 +19394,59,55,9,0.0 +19394,67,14,15,0.0 +19394,64,33.25,5,0.0 +19394,14,23.25,28,0.0 +19394,4,22,8,0.0 +19394,33,2.5,43,0.0 +19394,49,20,4,0.0 +19394,17,39,29,0.0 +19394,21,10,21,0.0 +19394,12,38,1,0.0 +19394,35,18,50,0.0 +19394,70,15,45,0.0 +19394,31,12.5,11,0.0 +19394,39,18,17,0.0 +19394,36,19,42,0.0 +19394,74,10,8,0.0 +19394,8,40,6,0.0 +19394,34,14,5,0.0 +19394,24,4.5,9,0.0 +19394,29,123.79,19,0.0 +19394,43,46,32,0.0 +19394,46,12,16,0.0 +19394,71,21.5,7,0.0 +19394,62,49.3,44,0.0 +19394,1,18,30,0.0 +19394,69,36,6,0.0 +19394,28,45.6,20,0.0 +19394,2,19,49,0.0 +19394,45,9.5,25,0.0 +19394,15,15.5,50,0.0 +19394,57,19.5,29,0.0 +19395,41,9.65,11,0.0 +19395,45,9.5,36,0.0 +19395,14,23.25,6,0.0 +19395,55,24,24,0.0 +19395,76,18,21,0.0 +19395,19,9.2,8,0.0 +19395,9,97,42,0.0 +19395,69,36,15,0.0 +19395,37,26,35,0.0 +19395,25,14,8,0.0 +19395,10,31,15,0.0 +19395,34,14,22,0.0 +19395,21,10,43,0.0 +19395,26,31.23,17,0.0 +19395,71,21.5,28,0.0 +19395,67,14,4,0.0 +19395,11,21,38,0.0 +19395,74,10,13,0.0 +19395,7,30,31,0.0 +19395,60,34,33,0.0 +19395,36,19,50,0.0 +19395,68,12.5,27,0.0 +19395,23,9,3,0.0 +19395,51,53,6,0.0 +19395,30,25.89,42,0.0 +19395,65,21.05,48,0.0 +19395,61,28.5,11,0.0 +19395,27,43.9,49,0.0 +19395,47,9.5,22,0.0 +19395,13,6,44,0.0 +19395,77,13,23,0.0 +19395,17,39,15,0.0 +19395,31,12.5,49,0.0 +19395,49,20,48,0.0 +19395,62,49.3,46,0.0 +19395,22,21,39,0.0 +19395,12,38,25,0.0 +19395,43,46,43,0.0 +19395,20,81,31,0.0 +19395,52,7,18,0.0 +19395,6,25,35,0.0 +19395,53,32.8,8,0.0 +19395,8,40,11,0.0 +19395,54,7.45,36,0.0 +19395,39,18,23,0.0 +19395,63,43.9,35,0.0 +19395,70,15,32,0.0 +19395,1,18,4,0.0 +19395,32,32,37,0.0 +19395,50,16.25,1,0.0 +19395,38,263.5,46,0.0 +19395,46,12,30,0.0 +19395,16,17.45,30,0.0 +19395,73,15,10,0.0 +19395,2,19,8,0.0 +19395,48,12.75,48,0.0 +19395,59,55,31,0.0 +19395,58,13.25,25,0.0 +19395,35,18,29,0.0 +19396,58,13.25,48,0.0 +19396,30,25.89,42,0.0 +19396,49,20,41,0.0 +19396,4,22,47,0.0 +19396,74,10,36,0.0 +19396,53,32.8,15,0.0 +19396,26,31.23,49,0.0 +19396,66,17,12,0.0 +19396,20,81,33,0.0 +19396,50,16.25,10,0.0 +19396,67,14,2,0.0 +19396,70,15,14,0.0 +19396,29,123.79,11,0.0 +19396,62,49.3,43,0.0 +19396,8,40,34,0.0 +19396,51,53,16,0.0 +19396,14,23.25,44,0.0 +19396,34,14,7,0.0 +19396,61,28.5,20,0.0 +19396,22,21,14,0.0 +19396,45,9.5,19,0.0 +19396,16,17.45,45,0.0 +19396,31,12.5,3,0.0 +19396,52,7,16,0.0 +19396,54,7.45,30,0.0 +19396,25,14,36,0.0 +19397,71,21.5,13,0.0 +19397,67,14,15,0.0 +19397,51,53,26,0.0 +19397,65,21.05,4,0.0 +19397,62,49.3,21,0.0 +19397,44,19.45,24,0.0 +19397,74,10,39,0.0 +19397,27,43.9,19,0.0 +19397,54,7.45,40,0.0 +19397,38,263.5,15,0.0 +19397,53,32.8,8,0.0 +19397,19,9.2,49,0.0 +19397,16,17.45,30,0.0 +19397,3,10,45,0.0 +19397,57,19.5,22,0.0 +19397,10,31,26,0.0 +19397,56,38,36,0.0 +19397,69,36,45,0.0 +19397,41,9.65,44,0.0 +19397,72,34.8,14,0.0 +19397,13,6,1,0.0 +19397,40,18.4,15,0.0 +19397,31,12.5,34,0.0 +19397,23,9,44,0.0 +19397,52,7,10,0.0 +19397,60,34,49,0.0 +19397,20,81,37,0.0 +19397,48,12.75,15,0.0 +19397,1,18,33,0.0 +19397,45,9.5,42,0.0 +19397,68,12.5,37,0.0 +19397,43,46,4,0.0 +19397,33,2.5,22,0.0 +19397,18,62.5,34,0.0 +19397,47,9.5,5,0.0 +19397,32,32,6,0.0 +19397,12,38,25,0.0 +19397,58,13.25,19,0.0 +19397,14,23.25,18,0.0 +19397,28,45.6,8,0.0 +19397,6,25,30,0.0 +19397,70,15,46,0.0 +19397,46,12,34,0.0 +19397,7,30,29,0.0 +19397,34,14,11,0.0 +19397,17,39,32,0.0 +19397,64,33.25,40,0.0 +19397,26,31.23,12,0.0 +19397,77,13,40,0.0 +19397,37,26,13,0.0 +19397,66,17,15,0.0 +19397,59,55,20,0.0 +19397,63,43.9,22,0.0 +19397,30,25.89,16,0.0 +19398,39,18,9,0.0 +19398,36,19,9,0.0 +19398,54,7.45,47,0.0 +19398,65,21.05,10,0.0 +19398,15,15.5,28,0.0 +19398,60,34,17,0.0 +19398,28,45.6,27,0.0 +19398,47,9.5,9,0.0 +19398,37,26,39,0.0 +19398,68,12.5,30,0.0 +19398,72,34.8,46,0.0 +19398,74,10,21,0.0 +19398,55,24,3,0.0 +19398,41,9.65,36,0.0 +19398,13,6,42,0.0 +19398,71,21.5,26,0.0 +19398,30,25.89,29,0.0 +19398,4,22,2,0.0 +19398,64,33.25,47,0.0 +19398,6,25,47,0.0 +19398,26,31.23,34,0.0 +19398,19,9.2,42,0.0 +19398,73,15,10,0.0 +19398,76,18,50,0.0 +19398,45,9.5,12,0.0 +19398,24,4.5,34,0.0 +19398,49,20,19,0.0 +19398,51,53,40,0.0 +19398,69,36,39,0.0 +19398,40,18.4,5,0.0 +19398,50,16.25,8,0.0 +19398,25,14,20,0.0 +19398,20,81,12,0.0 +19398,58,13.25,7,0.0 +19398,21,10,22,0.0 +19398,77,13,1,0.0 +19398,34,14,47,0.0 +19398,23,9,2,0.0 +19398,22,21,13,0.0 +19398,42,14,15,0.0 +19398,16,17.45,38,0.0 +19398,44,19.45,2,0.0 +19398,3,10,8,0.0 +19399,20,81,50,0.0 +19399,31,12.5,28,0.0 +19399,38,263.5,35,0.0 +19399,17,39,34,0.0 +19399,71,21.5,35,0.0 +19399,70,15,12,0.0 +19399,59,55,41,0.0 +19399,58,13.25,13,0.0 +19399,24,4.5,43,0.0 +19399,28,45.6,29,0.0 +19399,57,19.5,44,0.0 +19400,26,31.23,2,0.0 +19400,34,14,39,0.0 +19400,75,7.75,35,0.0 +19400,61,28.5,45,0.0 +19400,1,18,11,0.0 +19400,72,34.8,17,0.0 +19400,68,12.5,36,0.0 +19400,64,33.25,21,0.0 +19400,51,53,20,0.0 +19400,7,30,49,0.0 +19400,41,9.65,8,0.0 +19400,13,6,1,0.0 +19400,65,21.05,16,0.0 +19400,6,25,37,0.0 +19400,5,21.35,48,0.0 +19400,55,24,23,0.0 +19400,27,43.9,4,0.0 +19400,42,14,17,0.0 +19400,40,18.4,1,0.0 +19400,39,18,25,0.0 +19400,30,25.89,2,0.0 +19400,31,12.5,4,0.0 +19400,4,22,46,0.0 +19400,52,7,18,0.0 +19400,12,38,4,0.0 +19400,25,14,21,0.0 +19400,62,49.3,10,0.0 +19400,66,17,41,0.0 +19400,19,9.2,3,0.0 +19400,32,32,30,0.0 +19400,3,10,42,0.0 +19400,21,10,44,0.0 +19400,28,45.6,4,0.0 +19400,69,36,15,0.0 +19400,60,34,41,0.0 +19400,67,14,42,0.0 +19400,63,43.9,24,0.0 +19400,77,13,11,0.0 +19400,16,17.45,47,0.0 +19400,29,123.79,4,0.0 +19400,17,39,39,0.0 +19400,11,21,11,0.0 +19400,73,15,42,0.0 +19400,70,15,41,0.0 +19400,33,2.5,18,0.0 +19400,47,9.5,4,0.0 +19400,71,21.5,25,0.0 +19400,8,40,17,0.0 +19400,38,263.5,7,0.0 +19400,44,19.45,30,0.0 +19400,20,81,11,0.0 +19400,54,7.45,1,0.0 +19400,57,19.5,43,0.0 +19400,58,13.25,38,0.0 +19400,43,46,44,0.0 +19401,21,10,8,0.0 +19401,61,28.5,42,0.0 +19401,60,34,20,0.0 +19401,68,12.5,1,0.0 +19401,55,24,10,0.0 +19401,8,40,43,0.0 +19401,20,81,33,0.0 +19401,44,19.45,17,0.0 +19401,77,13,16,0.0 +19401,7,30,15,0.0 +19401,9,97,6,0.0 +19401,57,19.5,38,0.0 +19401,25,14,22,0.0 +19401,39,18,35,0.0 +19401,46,12,49,0.0 +19401,4,22,17,0.0 +19401,64,33.25,5,0.0 +19401,51,53,4,0.0 +19401,43,46,27,0.0 +19401,3,10,26,0.0 +19401,38,263.5,11,0.0 +19401,28,45.6,1,0.0 +19401,10,31,29,0.0 +19401,30,25.89,14,0.0 +19401,72,34.8,45,0.0 +19401,74,10,21,0.0 +19401,6,25,20,0.0 +19401,50,16.25,1,0.0 +19401,22,21,12,0.0 +19401,27,43.9,21,0.0 +19401,11,21,4,0.0 +19401,63,43.9,45,0.0 +19401,14,23.25,8,0.0 +19401,49,20,41,0.0 +19401,19,9.2,49,0.0 +19401,29,123.79,1,0.0 +19402,45,9.5,29,0.0 +19402,52,7,15,0.0 +19402,20,81,2,0.0 +19402,1,18,10,0.0 +19402,39,18,27,0.0 +19402,69,36,17,0.0 +19402,3,10,8,0.0 +19402,76,18,15,0.0 +19402,19,9.2,50,0.0 +19402,51,53,32,0.0 +19402,31,12.5,9,0.0 +19402,74,10,47,0.0 +19402,75,7.75,30,0.0 +19402,12,38,30,0.0 +19402,18,62.5,44,0.0 +19402,33,2.5,10,0.0 +19402,66,17,35,0.0 +19402,21,10,9,0.0 +19402,26,31.23,37,0.0 +19402,13,6,34,0.0 +19402,44,19.45,40,0.0 +19402,41,9.65,36,0.0 +19402,25,14,21,0.0 +19402,47,9.5,23,0.0 +19402,67,14,37,0.0 +19402,63,43.9,48,0.0 +19402,32,32,27,0.0 +19402,59,55,10,0.0 +19402,30,25.89,21,0.0 +19402,71,21.5,31,0.0 +19402,37,26,3,0.0 +19402,34,14,3,0.0 +19402,73,15,26,0.0 +19402,54,7.45,30,0.0 +19402,49,20,44,0.0 +19402,61,28.5,42,0.0 +19402,7,30,22,0.0 +19402,8,40,15,0.0 +19402,48,12.75,18,0.0 +19402,35,18,37,0.0 +19402,40,18.4,19,0.0 +19402,10,31,27,0.0 +19402,57,19.5,19,0.0 +19402,68,12.5,50,0.0 +19402,50,16.25,4,0.0 +19402,15,15.5,13,0.0 +19402,16,17.45,2,0.0 +19402,27,43.9,12,0.0 +19402,43,46,39,0.0 +19402,53,32.8,10,0.0 +19402,58,13.25,6,0.0 +19402,65,21.05,15,0.0 +19402,11,21,17,0.0 +19402,5,21.35,20,0.0 +19402,23,9,4,0.0 +19402,17,39,19,0.0 +19402,9,97,33,0.0 +19402,4,22,24,0.0 +19402,64,33.25,7,0.0 +19402,24,4.5,47,0.0 +19402,55,24,20,0.0 +19402,6,25,3,0.0 +19402,56,38,42,0.0 +19402,22,21,35,0.0 +19402,60,34,16,0.0 +19402,2,19,25,0.0 +19402,38,263.5,43,0.0 +19402,72,34.8,17,0.0 +19402,46,12,41,0.0 +19403,3,10,37,0.0 +19403,30,25.89,47,0.0 +19403,72,34.8,26,0.0 +19403,69,36,22,0.0 +19403,70,15,13,0.0 +19403,66,17,45,0.0 +19403,64,33.25,8,0.0 +19403,33,2.5,49,0.0 +19403,11,21,36,0.0 +19403,42,14,41,0.0 +19403,7,30,28,0.0 +19403,16,17.45,4,0.0 +19403,20,81,30,0.0 +19403,19,9.2,44,0.0 +19403,22,21,21,0.0 +19403,51,53,33,0.0 +19403,4,22,38,0.0 +19403,27,43.9,40,0.0 +19403,13,6,27,0.0 +19403,77,13,35,0.0 +19403,25,14,43,0.0 +19403,63,43.9,22,0.0 +19403,48,12.75,48,0.0 +19403,40,18.4,44,0.0 +19403,2,19,19,0.0 +19403,46,12,19,0.0 +19403,18,62.5,12,0.0 +19404,34,14,42,0.0 +19404,44,19.45,30,0.0 +19404,43,46,4,0.0 +19404,11,21,27,0.0 +19404,75,7.75,37,0.0 +19404,63,43.9,36,0.0 +19404,49,20,4,0.0 +19404,76,18,7,0.0 +19404,32,32,38,0.0 +19404,74,10,18,0.0 +19404,60,34,7,0.0 +19404,61,28.5,22,0.0 +19404,10,31,17,0.0 +19404,16,17.45,15,0.0 +19404,36,19,13,0.0 +19404,13,6,33,0.0 +19404,53,32.8,10,0.0 +19404,2,19,33,0.0 +19404,17,39,2,0.0 +19404,35,18,48,0.0 +19404,51,53,27,0.0 +19404,77,13,9,0.0 +19404,1,18,36,0.0 +19404,6,25,40,0.0 +19404,72,34.8,40,0.0 +19404,41,9.65,14,0.0 +19404,71,21.5,26,0.0 +19404,42,14,45,0.0 +19404,3,10,21,0.0 +19404,14,23.25,13,0.0 +19404,45,9.5,47,0.0 +19404,8,40,8,0.0 +19404,22,21,40,0.0 +19404,62,49.3,24,0.0 +19404,23,9,49,0.0 +19404,18,62.5,40,0.0 +19404,57,19.5,22,0.0 +19404,20,81,34,0.0 +19404,58,13.25,27,0.0 +19404,59,55,47,0.0 +19404,19,9.2,22,0.0 +19404,47,9.5,40,0.0 +19404,46,12,38,0.0 +19404,30,25.89,10,0.0 +19404,67,14,21,0.0 +19405,38,263.5,42,0.0 +19405,15,15.5,14,0.0 +19405,55,24,13,0.0 +19405,28,45.6,13,0.0 +19405,11,21,40,0.0 +19405,5,21.35,15,0.0 +19405,19,9.2,46,0.0 +19405,26,31.23,47,0.0 +19405,42,14,11,0.0 +19405,40,18.4,28,0.0 +19405,3,10,12,0.0 +19405,52,7,27,0.0 +19405,76,18,31,0.0 +19405,41,9.65,20,0.0 +19405,7,30,23,0.0 +19405,10,31,5,0.0 +19405,58,13.25,50,0.0 +19405,34,14,50,0.0 +19405,65,21.05,32,0.0 +19405,12,38,32,0.0 +19405,13,6,17,0.0 +19405,30,25.89,14,0.0 +19405,60,34,48,0.0 +19405,2,19,44,0.0 +19405,4,22,32,0.0 +19405,27,43.9,37,0.0 +19405,29,123.79,31,0.0 +19405,24,4.5,14,0.0 +19405,71,21.5,43,0.0 +19405,8,40,1,0.0 +19405,39,18,17,0.0 +19405,18,62.5,19,0.0 +19405,16,17.45,3,0.0 +19405,75,7.75,11,0.0 +19405,74,10,33,0.0 +19405,47,9.5,32,0.0 +19405,23,9,14,0.0 +19405,32,32,5,0.0 +19405,68,12.5,30,0.0 +19405,22,21,7,0.0 +19405,59,55,39,0.0 +19405,35,18,47,0.0 +19405,37,26,33,0.0 +19405,50,16.25,31,0.0 +19405,46,12,29,0.0 +19405,73,15,24,0.0 +19405,57,19.5,35,0.0 +19405,70,15,2,0.0 +19405,66,17,24,0.0 +19405,56,38,6,0.0 +19405,6,25,27,0.0 +19405,49,20,48,0.0 +19405,54,7.45,3,0.0 +19406,47,9.5,41,0.0 +19406,31,12.5,6,0.0 +19407,28,45.6,5,0.0 +19407,16,17.45,7,0.0 +19407,51,53,22,0.0 +19407,5,21.35,15,0.0 +19407,74,10,19,0.0 +19407,70,15,50,0.0 +19407,43,46,31,0.0 +19407,58,13.25,23,0.0 +19407,56,38,17,0.0 +19407,68,12.5,41,0.0 +19407,11,21,3,0.0 +19407,52,7,35,0.0 +19407,32,32,43,0.0 +19407,64,33.25,12,0.0 +19407,40,18.4,15,0.0 +19407,9,97,3,0.0 +19407,35,18,49,0.0 +19407,62,49.3,22,0.0 +19407,69,36,18,0.0 +19407,67,14,27,0.0 +19407,77,13,31,0.0 +19407,71,21.5,50,0.0 +19407,47,9.5,10,0.0 +19407,42,14,27,0.0 +19407,26,31.23,47,0.0 +19407,72,34.8,31,0.0 +19407,34,14,10,0.0 +19407,76,18,7,0.0 +19407,21,10,45,0.0 +19407,29,123.79,24,0.0 +19407,60,34,34,0.0 +19407,1,18,5,0.0 +19407,38,263.5,44,0.0 +19407,61,28.5,40,0.0 +19407,8,40,21,0.0 +19407,12,38,35,0.0 +19407,46,12,18,0.0 +19407,23,9,21,0.0 +19407,14,23.25,36,0.0 +19407,6,25,3,0.0 +19408,52,7,40,0.0 +19408,17,39,30,0.0 +19408,27,43.9,24,0.0 +19408,12,38,6,0.0 +19408,41,9.65,49,0.0 +19408,25,14,10,0.0 +19408,34,14,46,0.0 +19408,59,55,6,0.0 +19408,15,15.5,42,0.0 +19408,63,43.9,43,0.0 +19408,56,38,28,0.0 +19408,30,25.89,28,0.0 +19408,14,23.25,50,0.0 +19408,42,14,45,0.0 +19408,16,17.45,16,0.0 +19408,6,25,2,0.0 +19408,66,17,32,0.0 +19408,26,31.23,12,0.0 +19408,51,53,33,0.0 +19408,22,21,22,0.0 +19408,72,34.8,12,0.0 +19408,39,18,33,0.0 +19408,5,21.35,36,0.0 +19408,35,18,9,0.0 +19408,19,9.2,38,0.0 +19408,75,7.75,30,0.0 +19408,31,12.5,8,0.0 +19408,20,81,48,0.0 +19408,4,22,47,0.0 +19408,67,14,22,0.0 +19408,48,12.75,42,0.0 +19408,29,123.79,2,0.0 +19408,37,26,4,0.0 +19408,57,19.5,24,0.0 +19408,28,45.6,28,0.0 +19408,68,12.5,26,0.0 +19408,1,18,35,0.0 +19408,7,30,15,0.0 +19408,73,15,15,0.0 +19408,54,7.45,43,0.0 +19408,49,20,6,0.0 +19408,58,13.25,17,0.0 +19408,38,263.5,16,0.0 +19408,71,21.5,19,0.0 +19408,2,19,15,0.0 +19408,60,34,47,0.0 +19408,36,19,21,0.0 +19408,45,9.5,36,0.0 +19408,3,10,33,0.0 +19408,77,13,49,0.0 +19408,10,31,39,0.0 +19408,64,33.25,46,0.0 +19408,65,21.05,44,0.0 +19408,70,15,42,0.0 +19408,13,6,9,0.0 +19408,46,12,8,0.0 +19408,9,97,1,0.0 +19408,8,40,22,0.0 +19408,18,62.5,33,0.0 +19408,40,18.4,3,0.0 +19408,23,9,13,0.0 +19408,44,19.45,43,0.0 +19408,21,10,36,0.0 +19408,50,16.25,32,0.0 +19408,69,36,20,0.0 +19408,74,10,46,0.0 +19408,24,4.5,41,0.0 +19408,76,18,28,0.0 +19408,55,24,27,0.0 +19408,47,9.5,23,0.0 +19408,61,28.5,50,0.0 +19408,32,32,13,0.0 +19408,43,46,38,0.0 +19408,62,49.3,12,0.0 +19409,47,9.5,29,0.0 +19409,54,7.45,47,0.0 +19409,6,25,7,0.0 +19409,21,10,12,0.0 +19409,37,26,6,0.0 +19409,22,21,46,0.0 +19409,58,13.25,3,0.0 +19409,55,24,22,0.0 +19409,36,19,40,0.0 +19409,34,14,31,0.0 +19409,26,31.23,38,0.0 +19409,1,18,44,0.0 +19409,15,15.5,39,0.0 +19409,48,12.75,40,0.0 +19409,30,25.89,28,0.0 +19409,11,21,7,0.0 +19409,2,19,18,0.0 +19409,70,15,11,0.0 +19409,73,15,42,0.0 +19409,49,20,14,0.0 +19410,16,17.45,2,0.0 +19410,34,14,16,0.0 +19410,40,18.4,24,0.0 +19410,42,14,11,0.0 +19410,72,34.8,32,0.0 +19410,18,62.5,43,0.0 +19410,54,7.45,1,0.0 +19410,45,9.5,14,0.0 +19410,43,46,42,0.0 +19410,61,28.5,20,0.0 +19410,19,9.2,45,0.0 +19410,24,4.5,25,0.0 +19410,69,36,9,0.0 +19410,32,32,5,0.0 +19410,75,7.75,5,0.0 +19410,55,24,19,0.0 +19410,65,21.05,14,0.0 +19410,51,53,44,0.0 +19410,68,12.5,45,0.0 +19410,25,14,42,0.0 +19410,70,15,7,0.0 +19410,20,81,29,0.0 +19410,26,31.23,37,0.0 +19410,21,10,46,0.0 +19410,30,25.89,31,0.0 +19410,15,15.5,49,0.0 +19410,53,32.8,49,0.0 +19410,57,19.5,44,0.0 +19410,9,97,36,0.0 +19410,52,7,7,0.0 +19410,73,15,28,0.0 +19410,67,14,10,0.0 +19410,41,9.65,28,0.0 +19410,31,12.5,50,0.0 +19410,47,9.5,20,0.0 +19410,28,45.6,24,0.0 +19410,49,20,30,0.0 +19410,33,2.5,43,0.0 +19410,37,26,43,0.0 +19410,27,43.9,7,0.0 +19410,59,55,50,0.0 +19410,11,21,8,0.0 +19410,14,23.25,45,0.0 +19410,56,38,44,0.0 +19410,71,21.5,33,0.0 +19410,22,21,23,0.0 +19410,48,12.75,21,0.0 +19410,12,38,14,0.0 +19410,36,19,8,0.0 +19410,17,39,41,0.0 +19410,8,40,36,0.0 +19410,2,19,30,0.0 +19410,50,16.25,14,0.0 +19410,3,10,31,0.0 +19410,64,33.25,45,0.0 +19410,29,123.79,23,0.0 +19410,44,19.45,35,0.0 +19410,1,18,50,0.0 +19410,66,17,18,0.0 +19410,23,9,36,0.0 +19410,77,13,21,0.0 +19410,46,12,34,0.0 +19410,4,22,43,0.0 +19410,6,25,48,0.0 +19410,10,31,42,0.0 +19410,76,18,44,0.0 +19410,63,43.9,19,0.0 +19410,58,13.25,27,0.0 +19410,7,30,31,0.0 +19410,5,21.35,17,0.0 +19410,35,18,20,0.0 +19410,38,263.5,33,0.0 +19411,30,25.89,38,0.0 +19411,47,9.5,4,0.0 +19411,36,19,29,0.0 +19411,70,15,12,0.0 +19411,49,20,10,0.0 +19411,33,2.5,10,0.0 +19411,72,34.8,43,0.0 +19411,67,14,47,0.0 +19411,23,9,41,0.0 +19411,69,36,43,0.0 +19411,41,9.65,24,0.0 +19411,63,43.9,49,0.0 +19411,76,18,4,0.0 +19411,35,18,24,0.0 +19411,34,14,47,0.0 +19411,27,43.9,41,0.0 +19411,50,16.25,19,0.0 +19411,14,23.25,34,0.0 +19411,11,21,48,0.0 +19411,31,12.5,8,0.0 +19411,53,32.8,26,0.0 +19411,73,15,50,0.0 +19411,43,46,43,0.0 +19411,52,7,46,0.0 +19411,4,22,15,0.0 +19411,51,53,24,0.0 +19411,68,12.5,33,0.0 +19411,40,18.4,26,0.0 +19411,20,81,40,0.0 +19411,64,33.25,47,0.0 +19411,62,49.3,8,0.0 +19411,77,13,11,0.0 +19411,22,21,20,0.0 +19411,7,30,26,0.0 +19411,21,10,12,0.0 +19411,18,62.5,5,0.0 +19411,74,10,38,0.0 +19411,48,12.75,44,0.0 +19411,13,6,35,0.0 +19411,59,55,46,0.0 +19411,45,9.5,5,0.0 +19411,42,14,21,0.0 +19411,12,38,35,0.0 +19411,29,123.79,24,0.0 +19411,71,21.5,34,0.0 +19411,56,38,47,0.0 +19411,26,31.23,27,0.0 +19411,16,17.45,12,0.0 +19411,32,32,10,0.0 +19411,28,45.6,17,0.0 +19411,15,15.5,7,0.0 +19412,3,10,47,0.0 +19412,17,39,13,0.0 +19412,35,18,23,0.0 +19412,33,2.5,49,0.0 +19412,26,31.23,16,0.0 +19412,22,21,47,0.0 +19412,20,81,41,0.0 +19412,25,14,13,0.0 +19412,19,9.2,22,0.0 +19412,48,12.75,1,0.0 +19412,68,12.5,41,0.0 +19412,1,18,3,0.0 +19412,24,4.5,11,0.0 +19412,32,32,48,0.0 +19412,46,12,28,0.0 +19412,76,18,7,0.0 +19412,27,43.9,40,0.0 +19412,51,53,23,0.0 +19412,45,9.5,14,0.0 +19412,7,30,27,0.0 +19412,61,28.5,38,0.0 +19412,77,13,29,0.0 +19412,69,36,10,0.0 +19413,23,9,30,0.0 +19413,73,15,14,0.0 +19413,76,18,6,0.0 +19413,16,17.45,45,0.0 +19413,71,21.5,48,0.0 +19413,27,43.9,2,0.0 +19413,51,53,17,0.0 +19413,62,49.3,30,0.0 +19413,15,15.5,35,0.0 +19413,56,38,39,0.0 +19413,28,45.6,42,0.0 +19413,10,31,43,0.0 +19413,64,33.25,42,0.0 +19413,38,263.5,1,0.0 +19413,45,9.5,25,0.0 +19413,5,21.35,26,0.0 +19413,53,32.8,50,0.0 +19413,63,43.9,13,0.0 +19413,72,34.8,44,0.0 +19413,40,18.4,14,0.0 +19413,44,19.45,28,0.0 +19413,13,6,29,0.0 +19413,1,18,45,0.0 +19413,55,24,7,0.0 +19413,4,22,49,0.0 +19413,75,7.75,28,0.0 +19413,25,14,38,0.0 +19413,41,9.65,39,0.0 +19413,57,19.5,30,0.0 +19413,47,9.5,37,0.0 +19413,36,19,39,0.0 +19413,24,4.5,18,0.0 +19413,21,10,30,0.0 +19413,12,38,11,0.0 +19413,6,25,39,0.0 +19413,69,36,23,0.0 +19413,37,26,20,0.0 +19413,43,46,18,0.0 +19413,22,21,50,0.0 +19413,65,21.05,44,0.0 +19413,2,19,13,0.0 +19413,33,2.5,19,0.0 +19413,29,123.79,15,0.0 +19413,77,13,42,0.0 +19413,8,40,41,0.0 +19413,42,14,18,0.0 +19413,58,13.25,29,0.0 +19413,39,18,47,0.0 +19413,48,12.75,48,0.0 +19413,60,34,40,0.0 +19413,35,18,24,0.0 +19413,31,12.5,33,0.0 +19413,34,14,12,0.0 +19413,66,17,16,0.0 +19413,7,30,10,0.0 +19413,68,12.5,32,0.0 +19413,74,10,49,0.0 +19413,54,7.45,35,0.0 +19413,70,15,5,0.0 +19413,14,23.25,7,0.0 +19413,9,97,7,0.0 +19413,20,81,1,0.0 +19413,67,14,27,0.0 +19413,19,9.2,40,0.0 +19413,49,20,43,0.0 +19413,59,55,44,0.0 +19413,18,62.5,35,0.0 +19413,26,31.23,6,0.0 +19413,46,12,31,0.0 +19413,30,25.89,30,0.0 +19413,50,16.25,49,0.0 +19413,52,7,49,0.0 +19413,32,32,1,0.0 +19413,11,21,40,0.0 +19413,61,28.5,4,0.0 +19413,17,39,30,0.0 +19413,3,10,11,0.0 +19414,32,32,28,0.0 +19414,36,19,13,0.0 +19414,15,15.5,39,0.0 +19414,6,25,24,0.0 +19414,67,14,30,0.0 +19414,8,40,13,0.0 +19414,59,55,15,0.0 +19414,57,19.5,43,0.0 +19414,56,38,26,0.0 +19414,76,18,21,0.0 +19414,53,32.8,33,0.0 +19414,42,14,16,0.0 +19414,26,31.23,42,0.0 +19414,38,263.5,15,0.0 +19414,70,15,22,0.0 +19414,11,21,41,0.0 +19414,13,6,5,0.0 +19414,60,34,34,0.0 +19414,39,18,39,0.0 +19414,24,4.5,45,0.0 +19414,19,9.2,23,0.0 +19414,30,25.89,45,0.0 +19414,21,10,16,0.0 +19414,7,30,38,0.0 +19414,51,53,42,0.0 +19414,37,26,33,0.0 +19414,3,10,1,0.0 +19414,17,39,48,0.0 +19414,63,43.9,4,0.0 +19414,34,14,43,0.0 +19414,66,17,47,0.0 +19414,18,62.5,21,0.0 +19414,12,38,27,0.0 +19414,28,45.6,12,0.0 +19414,52,7,46,0.0 +19414,69,36,5,0.0 +19414,55,24,1,0.0 +19414,2,19,36,0.0 +19414,25,14,46,0.0 +19414,64,33.25,21,0.0 +19414,72,34.8,19,0.0 +19414,41,9.65,42,0.0 +19414,31,12.5,19,0.0 +19414,77,13,7,0.0 +19414,27,43.9,6,0.0 +19414,29,123.79,37,0.0 +19414,61,28.5,22,0.0 +19414,44,19.45,35,0.0 +19414,9,97,8,0.0 +19414,10,31,15,0.0 +19414,23,9,7,0.0 +19414,45,9.5,50,0.0 +19414,14,23.25,3,0.0 +19414,54,7.45,14,0.0 +19414,43,46,8,0.0 +19414,73,15,9,0.0 +19414,16,17.45,9,0.0 +19414,35,18,5,0.0 +19414,48,12.75,19,0.0 +19414,33,2.5,22,0.0 +19414,68,12.5,5,0.0 +19414,75,7.75,23,0.0 +19414,50,16.25,36,0.0 +19414,46,12,13,0.0 +19414,49,20,45,0.0 +19414,5,21.35,43,0.0 +19414,71,21.5,45,0.0 +19414,40,18.4,33,0.0 +19414,4,22,47,0.0 +19414,22,21,4,0.0 +19414,65,21.05,28,0.0 +19414,74,10,23,0.0 +19415,67,14,1,0.0 +19415,59,55,15,0.0 +19415,9,97,31,0.0 +19415,1,18,47,0.0 +19415,33,2.5,26,0.0 +19415,72,34.8,15,0.0 +19415,28,45.6,19,0.0 +19415,27,43.9,39,0.0 +19415,77,13,1,0.0 +19415,10,31,13,0.0 +19415,47,9.5,25,0.0 +19415,21,10,2,0.0 +19415,11,21,40,0.0 +19415,69,36,22,0.0 +19415,74,10,24,0.0 +19415,71,21.5,23,0.0 +19415,2,19,10,0.0 +19415,15,15.5,49,0.0 +19415,54,7.45,13,0.0 +19415,44,19.45,19,0.0 +19415,36,19,47,0.0 +19415,76,18,43,0.0 +19415,61,28.5,41,0.0 +19415,60,34,17,0.0 +19415,52,7,45,0.0 +19415,45,9.5,6,0.0 +19415,13,6,34,0.0 +19415,26,31.23,12,0.0 +19415,48,12.75,12,0.0 +19415,32,32,15,0.0 +19415,53,32.8,42,0.0 +19415,50,16.25,3,0.0 +19415,43,46,49,0.0 +19415,20,81,12,0.0 +19415,46,12,8,0.0 +19415,14,23.25,50,0.0 +19415,56,38,15,0.0 +19415,34,14,18,0.0 +19415,8,40,36,0.0 +19415,57,19.5,40,0.0 +19415,24,4.5,33,0.0 +19415,35,18,4,0.0 +19415,65,21.05,44,0.0 +19415,63,43.9,39,0.0 +19415,3,10,27,0.0 +19415,51,53,48,0.0 +19415,49,20,42,0.0 +19415,73,15,36,0.0 +19415,16,17.45,28,0.0 +19415,30,25.89,29,0.0 +19415,55,24,23,0.0 +19415,4,22,20,0.0 +19415,31,12.5,27,0.0 +19415,70,15,10,0.0 +19415,75,7.75,29,0.0 +19416,46,12,4,0.0 +19416,17,39,39,0.0 +19416,15,15.5,16,0.0 +19416,54,7.45,46,0.0 +19416,45,9.5,44,0.0 +19416,33,2.5,42,0.0 +19416,71,21.5,21,0.0 +19416,70,15,8,0.0 +19416,27,43.9,41,0.0 +19416,72,34.8,29,0.0 +19416,50,16.25,36,0.0 +19416,40,18.4,36,0.0 +19416,69,36,28,0.0 +19416,32,32,32,0.0 +19416,65,21.05,40,0.0 +19416,57,19.5,12,0.0 +19416,6,25,49,0.0 +19416,7,30,16,0.0 +19416,53,32.8,28,0.0 +19416,48,12.75,18,0.0 +19416,22,21,26,0.0 +19416,25,14,45,0.0 +19416,5,21.35,46,0.0 +19416,47,9.5,33,0.0 +19416,73,15,19,0.0 +19416,56,38,38,0.0 +19416,34,14,23,0.0 +19416,21,10,3,0.0 +19416,43,46,22,0.0 +19416,62,49.3,44,0.0 +19416,12,38,49,0.0 +19416,39,18,24,0.0 +19416,67,14,17,0.0 +19416,68,12.5,27,0.0 +19416,1,18,7,0.0 +19416,49,20,26,0.0 +19416,44,19.45,18,0.0 +19416,59,55,15,0.0 +19417,44,19.45,3,0.0 +19417,11,21,17,0.0 +19417,38,263.5,21,0.0 +19417,46,12,6,0.0 +19417,60,34,19,0.0 +19417,1,18,42,0.0 +19417,40,18.4,38,0.0 +19417,9,97,24,0.0 +19417,33,2.5,9,0.0 +19417,24,4.5,49,0.0 +19417,73,15,13,0.0 +19417,29,123.79,12,0.0 +19417,66,17,7,0.0 +19417,53,32.8,7,0.0 +19417,2,19,6,0.0 +19417,28,45.6,22,0.0 +19417,39,18,26,0.0 +19417,25,14,20,0.0 +19417,8,40,14,0.0 +19417,34,14,19,0.0 +19417,50,16.25,21,0.0 +19417,23,9,48,0.0 +19417,18,62.5,38,0.0 +19417,68,12.5,26,0.0 +19417,72,34.8,24,0.0 +19417,74,10,30,0.0 +19417,41,9.65,35,0.0 +19417,43,46,32,0.0 +19417,77,13,49,0.0 +19417,13,6,18,0.0 +19417,42,14,19,0.0 +19417,7,30,44,0.0 +19417,30,25.89,49,0.0 +19417,31,12.5,36,0.0 +19417,22,21,46,0.0 +19417,37,26,35,0.0 +19417,27,43.9,47,0.0 +19417,45,9.5,22,0.0 +19417,65,21.05,22,0.0 +19417,15,15.5,43,0.0 +19417,61,28.5,30,0.0 +19417,62,49.3,31,0.0 +19417,54,7.45,16,0.0 +19417,51,53,36,0.0 +19417,14,23.25,35,0.0 +19417,3,10,17,0.0 +19417,4,22,17,0.0 +19417,16,17.45,29,0.0 +19417,49,20,20,0.0 +19417,57,19.5,17,0.0 +19417,36,19,14,0.0 +19417,5,21.35,9,0.0 +19417,20,81,31,0.0 +19417,70,15,26,0.0 +19417,19,9.2,26,0.0 +19417,76,18,30,0.0 +19417,69,36,32,0.0 +19417,32,32,11,0.0 +19417,63,43.9,46,0.0 +19417,47,9.5,16,0.0 +19417,59,55,26,0.0 +19417,21,10,3,0.0 +19417,64,33.25,12,0.0 +19417,75,7.75,44,0.0 +19417,10,31,12,0.0 +19417,17,39,10,0.0 +19417,55,24,29,0.0 +19417,35,18,47,0.0 +19417,58,13.25,21,0.0 +19417,56,38,16,0.0 +19417,26,31.23,50,0.0 +19417,52,7,10,0.0 +19417,48,12.75,8,0.0 +19417,71,21.5,4,0.0 +19417,67,14,9,0.0 +19417,12,38,49,0.0 +19418,57,19.5,16,0.0 +19418,51,53,8,0.0 +19418,4,22,30,0.0 +19418,20,81,29,0.0 +19418,26,31.23,40,0.0 +19418,21,10,50,0.0 +19418,63,43.9,3,0.0 +19418,43,46,6,0.0 +19418,42,14,49,0.0 +19418,72,34.8,13,0.0 +19418,9,97,42,0.0 +19418,33,2.5,9,0.0 +19418,48,12.75,10,0.0 +19418,41,9.65,19,0.0 +19418,1,18,5,0.0 +19418,66,17,49,0.0 +19418,10,31,42,0.0 +19418,3,10,39,0.0 +19418,70,15,23,0.0 +19418,61,28.5,39,0.0 +19418,14,23.25,8,0.0 +19418,40,18.4,20,0.0 +19418,32,32,26,0.0 +19418,73,15,6,0.0 +19418,54,7.45,26,0.0 +19419,17,39,10,0.0 +19419,10,31,25,0.0 +19419,14,23.25,8,0.0 +19419,61,28.5,18,0.0 +19419,33,2.5,1,0.0 +19419,39,18,49,0.0 +19419,63,43.9,50,0.0 +19419,2,19,25,0.0 +19419,73,15,34,0.0 +19419,69,36,35,0.0 +19420,13,6,9,0.0 +19420,57,19.5,36,0.0 +19420,37,26,29,0.0 +19420,30,25.89,25,0.0 +19420,58,13.25,50,0.0 +19420,50,16.25,15,0.0 +19420,5,21.35,41,0.0 +19420,62,49.3,18,0.0 +19420,41,9.65,44,0.0 +19421,53,32.8,20,0.0 +19421,37,26,5,0.0 +19421,59,55,18,0.0 +19421,26,31.23,19,0.0 +19421,60,34,50,0.0 +19421,42,14,38,0.0 +19421,55,24,2,0.0 +19421,21,10,27,0.0 +19421,71,21.5,14,0.0 +19421,70,15,30,0.0 +19421,8,40,1,0.0 +19421,28,45.6,11,0.0 +19421,48,12.75,45,0.0 +19421,29,123.79,12,0.0 +19421,51,53,6,0.0 +19421,62,49.3,46,0.0 +19421,57,19.5,14,0.0 +19421,46,12,39,0.0 +19421,33,2.5,15,0.0 +19421,35,18,19,0.0 +19421,52,7,11,0.0 +19421,5,21.35,36,0.0 +19421,18,62.5,33,0.0 +19421,23,9,27,0.0 +19421,30,25.89,3,0.0 +19421,2,19,36,0.0 +19421,15,15.5,6,0.0 +19421,19,9.2,36,0.0 +19421,61,28.5,35,0.0 +19421,12,38,50,0.0 +19421,77,13,6,0.0 +19421,40,18.4,11,0.0 +19421,64,33.25,9,0.0 +19421,49,20,5,0.0 +19421,17,39,44,0.0 +19421,76,18,15,0.0 +19421,27,43.9,38,0.0 +19421,56,38,29,0.0 +19421,68,12.5,5,0.0 +19421,73,15,37,0.0 +19421,43,46,7,0.0 +19421,20,81,3,0.0 +19421,74,10,5,0.0 +19421,10,31,19,0.0 +19421,1,18,47,0.0 +19421,44,19.45,15,0.0 +19421,58,13.25,22,0.0 +19421,24,4.5,35,0.0 +19421,47,9.5,14,0.0 +19421,11,21,28,0.0 +19421,66,17,43,0.0 +19421,45,9.5,21,0.0 +19421,13,6,21,0.0 +19421,38,263.5,12,0.0 +19421,50,16.25,40,0.0 +19421,63,43.9,38,0.0 +19421,6,25,22,0.0 +19421,7,30,29,0.0 +19421,41,9.65,3,0.0 +19421,25,14,44,0.0 +19421,3,10,44,0.0 +19421,32,32,36,0.0 +19421,14,23.25,29,0.0 +19421,4,22,10,0.0 +19421,72,34.8,31,0.0 +19421,69,36,49,0.0 +19421,31,12.5,9,0.0 +19421,65,21.05,18,0.0 +19421,36,19,27,0.0 +19421,9,97,31,0.0 +19421,16,17.45,27,0.0 +19421,34,14,45,0.0 +19421,54,7.45,27,0.0 +19421,39,18,34,0.0 +19422,72,34.8,50,0.0 +19422,55,24,36,0.0 +19422,32,32,43,0.0 +19422,54,7.45,27,0.0 +19422,12,38,30,0.0 +19422,64,33.25,18,0.0 +19422,68,12.5,40,0.0 +19422,16,17.45,21,0.0 +19422,71,21.5,7,0.0 +19422,49,20,1,0.0 +19422,60,34,33,0.0 +19422,61,28.5,6,0.0 +19422,4,22,49,0.0 +19422,7,30,42,0.0 +19422,31,12.5,35,0.0 +19422,24,4.5,37,0.0 +19422,29,123.79,42,0.0 +19422,35,18,11,0.0 +19422,62,49.3,38,0.0 +19422,27,43.9,19,0.0 +19422,36,19,35,0.0 +19422,14,23.25,20,0.0 +19422,51,53,10,0.0 +19422,63,43.9,45,0.0 +19422,56,38,18,0.0 +19422,65,21.05,38,0.0 +19422,5,21.35,41,0.0 +19422,34,14,43,0.0 +19422,76,18,1,0.0 +19422,75,7.75,40,0.0 +19422,38,263.5,7,0.0 +19422,70,15,9,0.0 +19422,66,17,12,0.0 +19422,22,21,5,0.0 +19422,2,19,33,0.0 +19422,67,14,10,0.0 +19422,11,21,49,0.0 +19422,40,18.4,39,0.0 +19422,9,97,18,0.0 +19422,20,81,4,0.0 +19422,25,14,41,0.0 +19422,10,31,20,0.0 +19422,28,45.6,1,0.0 +19422,42,14,49,0.0 +19422,48,12.75,49,0.0 +19422,26,31.23,5,0.0 +19422,3,10,8,0.0 +19422,43,46,12,0.0 +19422,41,9.65,22,0.0 +19422,33,2.5,25,0.0 +19422,23,9,17,0.0 +19422,73,15,29,0.0 +19423,61,28.5,13,0.0 +19423,43,46,48,0.0 +19423,29,123.79,13,0.0 +19423,6,25,41,0.0 +19423,13,6,31,0.0 +19423,67,14,24,0.0 +19423,40,18.4,42,0.0 +19423,71,21.5,5,0.0 +19423,32,32,5,0.0 +19423,63,43.9,33,0.0 +19423,28,45.6,46,0.0 +19423,21,10,37,0.0 +19423,68,12.5,42,0.0 +19423,73,15,10,0.0 +19423,57,19.5,18,0.0 +19423,8,40,27,0.0 +19423,23,9,49,0.0 +19423,76,18,23,0.0 +19423,48,12.75,20,0.0 +19423,59,55,8,0.0 +19423,3,10,28,0.0 +19423,39,18,15,0.0 +19423,26,31.23,46,0.0 +19423,56,38,8,0.0 +19423,33,2.5,41,0.0 +19423,37,26,26,0.0 +19423,41,9.65,6,0.0 +19423,2,19,41,0.0 +19423,60,34,22,0.0 +19423,53,32.8,12,0.0 +19423,16,17.45,16,0.0 +19423,42,14,49,0.0 +19423,19,9.2,13,0.0 +19423,14,23.25,17,0.0 +19423,55,24,50,0.0 +19423,58,13.25,34,0.0 +19423,30,25.89,5,0.0 +19423,49,20,41,0.0 +19423,51,53,17,0.0 +19423,74,10,33,0.0 +19423,24,4.5,20,0.0 +19424,11,21,34,0.0 +19424,12,38,17,0.0 +19424,29,123.79,32,0.0 +19424,59,55,36,0.0 +19424,46,12,19,0.0 +19424,57,19.5,47,0.0 +19424,28,45.6,7,0.0 +19424,62,49.3,35,0.0 +19424,54,7.45,10,0.0 +19424,14,23.25,6,0.0 +19424,36,19,8,0.0 +19424,21,10,9,0.0 +19424,68,12.5,13,0.0 +19424,67,14,33,0.0 +19424,47,9.5,24,0.0 +19424,37,26,31,0.0 +19424,40,18.4,16,0.0 +19424,44,19.45,49,0.0 +19424,39,18,39,0.0 +19424,35,18,26,0.0 +19424,49,20,9,0.0 +19424,33,2.5,10,0.0 +19424,63,43.9,44,0.0 +19424,69,36,22,0.0 +19424,9,97,34,0.0 +19424,31,12.5,7,0.0 +19424,27,43.9,36,0.0 +19424,30,25.89,50,0.0 +19424,53,32.8,48,0.0 +19424,58,13.25,3,0.0 +19424,26,31.23,8,0.0 +19424,45,9.5,8,0.0 +19424,73,15,34,0.0 +19424,1,18,19,0.0 +19424,19,9.2,39,0.0 +19424,32,32,25,0.0 +19424,50,16.25,43,0.0 +19424,13,6,27,0.0 +19424,4,22,30,0.0 +19424,22,21,41,0.0 +19424,8,40,18,0.0 +19424,42,14,26,0.0 +19424,75,7.75,17,0.0 +19424,5,21.35,36,0.0 +19424,71,21.5,6,0.0 +19424,60,34,39,0.0 +19424,70,15,30,0.0 +19424,66,17,29,0.0 +19424,52,7,50,0.0 +19424,64,33.25,37,0.0 +19424,6,25,48,0.0 +19424,34,14,34,0.0 +19424,41,9.65,33,0.0 +19424,74,10,25,0.0 +19424,48,12.75,30,0.0 +19424,17,39,6,0.0 +19425,76,18,21,0.0 +19425,25,14,21,0.0 +19425,19,9.2,34,0.0 +19425,39,18,26,0.0 +19425,50,16.25,42,0.0 +19425,11,21,11,0.0 +19425,68,12.5,9,0.0 +19425,33,2.5,1,0.0 +19425,8,40,41,0.0 +19425,63,43.9,40,0.0 +19425,74,10,12,0.0 +19425,70,15,2,0.0 +19425,13,6,30,0.0 +19425,18,62.5,41,0.0 +19425,32,32,21,0.0 +19425,24,4.5,38,0.0 +19425,26,31.23,3,0.0 +19425,40,18.4,22,0.0 +19425,44,19.45,12,0.0 +19426,66,17,20,0.0 +19426,4,22,44,0.0 +19426,44,19.45,45,0.0 +19426,38,263.5,27,0.0 +19426,56,38,30,0.0 +19426,55,24,24,0.0 +19426,11,21,2,0.0 +19426,68,12.5,22,0.0 +19426,43,46,45,0.0 +19426,76,18,8,0.0 +19426,50,16.25,8,0.0 +19426,6,25,6,0.0 +19426,60,34,21,0.0 +19426,54,7.45,2,0.0 +19426,73,15,1,0.0 +19426,65,21.05,11,0.0 +19426,52,7,19,0.0 +19426,31,12.5,29,0.0 +19426,47,9.5,39,0.0 +19427,56,38,42,0.0 +19427,54,7.45,50,0.0 +19427,2,19,44,0.0 +19427,11,21,32,0.0 +19427,58,13.25,48,0.0 +19427,3,10,9,0.0 +19427,77,13,22,0.0 +19427,10,31,46,0.0 +19427,30,25.89,32,0.0 +19427,26,31.23,14,0.0 +19427,68,12.5,32,0.0 +19427,23,9,44,0.0 +19427,36,19,18,0.0 +19427,21,10,20,0.0 +19427,1,18,46,0.0 +19427,51,53,37,0.0 +19427,49,20,42,0.0 +19427,67,14,36,0.0 +19427,7,30,4,0.0 +19427,64,33.25,3,0.0 +19427,70,15,41,0.0 +19427,37,26,47,0.0 +19427,57,19.5,13,0.0 +19427,13,6,21,0.0 +19427,22,21,25,0.0 +19427,33,2.5,48,0.0 +19427,29,123.79,44,0.0 +19427,18,62.5,37,0.0 +19427,15,15.5,32,0.0 +19427,42,14,44,0.0 +19427,24,4.5,15,0.0 +19427,12,38,41,0.0 +19427,38,263.5,12,0.0 +19427,45,9.5,1,0.0 +19427,75,7.75,47,0.0 +19427,5,21.35,12,0.0 +19427,40,18.4,22,0.0 +19427,20,81,1,0.0 +19427,46,12,15,0.0 +19427,19,9.2,37,0.0 +19427,4,22,46,0.0 +19427,31,12.5,33,0.0 +19427,62,49.3,34,0.0 +19427,76,18,44,0.0 +19427,41,9.65,17,0.0 +19427,6,25,47,0.0 +19427,35,18,19,0.0 +19427,73,15,5,0.0 +19427,47,9.5,49,0.0 +19427,63,43.9,42,0.0 +19427,65,21.05,4,0.0 +19427,59,55,44,0.0 +19427,66,17,47,0.0 +19427,53,32.8,18,0.0 +19427,32,32,18,0.0 +19427,69,36,9,0.0 +19427,25,14,9,0.0 +19427,27,43.9,40,0.0 +19427,14,23.25,12,0.0 +19427,55,24,47,0.0 +19427,48,12.75,25,0.0 +19427,17,39,27,0.0 +19427,50,16.25,28,0.0 +19427,74,10,38,0.0 +19427,61,28.5,8,0.0 +19427,71,21.5,24,0.0 +19427,72,34.8,6,0.0 +19427,16,17.45,7,0.0 +19427,34,14,6,0.0 +19427,28,45.6,47,0.0 +19427,9,97,12,0.0 +19428,66,17,17,0.0 +19428,59,55,40,0.0 +19428,71,21.5,3,0.0 +19428,25,14,2,0.0 +19428,27,43.9,17,0.0 +19428,6,25,38,0.0 +19428,2,19,43,0.0 +19428,44,19.45,27,0.0 +19428,11,21,11,0.0 +19428,62,49.3,22,0.0 +19428,39,18,31,0.0 +19428,67,14,48,0.0 +19428,46,12,1,0.0 +19428,16,17.45,3,0.0 +19428,22,21,10,0.0 +19428,19,9.2,32,0.0 +19428,13,6,37,0.0 +19428,4,22,30,0.0 +19428,37,26,13,0.0 +19428,9,97,14,0.0 +19428,58,13.25,28,0.0 +19428,56,38,1,0.0 +19428,69,36,21,0.0 +19428,57,19.5,17,0.0 +19428,74,10,41,0.0 +19428,33,2.5,40,0.0 +19428,28,45.6,12,0.0 +19428,26,31.23,20,0.0 +19428,49,20,7,0.0 +19428,68,12.5,29,0.0 +19428,8,40,34,0.0 +19428,15,15.5,42,0.0 +19428,61,28.5,21,0.0 +19429,10,31,30,0.0 +19429,42,14,20,0.0 +19429,25,14,16,0.0 +19429,17,39,19,0.0 +19429,26,31.23,24,0.0 +19429,68,12.5,26,0.0 +19429,51,53,29,0.0 +19429,63,43.9,49,0.0 +19429,38,263.5,50,0.0 +19429,70,15,5,0.0 +19429,28,45.6,18,0.0 +19429,53,32.8,49,0.0 +19429,13,6,8,0.0 +19430,20,81,6,0.0 +19430,30,25.89,15,0.0 +19430,26,31.23,28,0.0 +19430,12,38,6,0.0 +19430,2,19,2,0.0 +19430,44,19.45,12,0.0 +19430,42,14,6,0.0 +19430,16,17.45,24,0.0 +19430,34,14,9,0.0 +19430,62,49.3,47,0.0 +19430,32,32,49,0.0 +19430,56,38,37,0.0 +19430,23,9,4,0.0 +19430,72,34.8,26,0.0 +19430,9,97,46,0.0 +19430,49,20,24,0.0 +19430,21,10,3,0.0 +19430,5,21.35,46,0.0 +19430,38,263.5,38,0.0 +19430,7,30,28,0.0 +19430,45,9.5,18,0.0 +19430,22,21,25,0.0 +19430,40,18.4,38,0.0 +19430,46,12,48,0.0 +19430,76,18,17,0.0 +19430,55,24,38,0.0 +19430,64,33.25,34,0.0 +19430,24,4.5,38,0.0 +19430,31,12.5,19,0.0 +19430,63,43.9,39,0.0 +19430,77,13,36,0.0 +19430,10,31,24,0.0 +19430,52,7,37,0.0 +19430,15,15.5,3,0.0 +19431,10,31,38,0.0 +19431,33,2.5,10,0.0 +19431,20,81,37,0.0 +19431,27,43.9,16,0.0 +19431,18,62.5,28,0.0 +19431,75,7.75,15,0.0 +19431,30,25.89,48,0.0 +19431,12,38,47,0.0 +19431,63,43.9,21,0.0 +19431,57,19.5,14,0.0 +19431,2,19,42,0.0 +19431,21,10,43,0.0 +19431,14,23.25,12,0.0 +19431,56,38,48,0.0 +19431,4,22,14,0.0 +19431,65,21.05,43,0.0 +19431,60,34,34,0.0 +19431,22,21,47,0.0 +19431,11,21,38,0.0 +19431,41,9.65,16,0.0 +19431,77,13,43,0.0 +19431,45,9.5,47,0.0 +19431,53,32.8,9,0.0 +19431,6,25,41,0.0 +19431,38,263.5,6,0.0 +19431,7,30,46,0.0 +19431,5,21.35,42,0.0 +19431,46,12,6,0.0 +19431,48,12.75,3,0.0 +19431,68,12.5,3,0.0 +19431,47,9.5,22,0.0 +19431,26,31.23,23,0.0 +19431,62,49.3,7,0.0 +19431,58,13.25,27,0.0 +19431,64,33.25,45,0.0 +19431,61,28.5,22,0.0 +19431,35,18,40,0.0 +19431,55,24,41,0.0 +19431,43,46,26,0.0 +19431,67,14,1,0.0 +19431,76,18,30,0.0 +19431,66,17,5,0.0 +19431,40,18.4,27,0.0 +19431,9,97,12,0.0 +19431,49,20,40,0.0 +19431,8,40,21,0.0 +19431,19,9.2,1,0.0 +19431,44,19.45,19,0.0 +19431,24,4.5,48,0.0 +19431,72,34.8,50,0.0 +19431,15,15.5,20,0.0 +19431,23,9,41,0.0 +19431,17,39,41,0.0 +19431,74,10,36,0.0 +19431,13,6,23,0.0 +19431,69,36,18,0.0 +19431,52,7,6,0.0 +19431,3,10,29,0.0 +19431,59,55,47,0.0 +19431,54,7.45,37,0.0 +19431,34,14,6,0.0 +19431,31,12.5,43,0.0 +19431,71,21.5,14,0.0 +19431,51,53,44,0.0 +19431,32,32,13,0.0 +19432,29,123.79,24,0.0 +19432,30,25.89,15,0.0 +19432,14,23.25,24,0.0 +19432,54,7.45,39,0.0 +19432,61,28.5,45,0.0 +19432,63,43.9,23,0.0 +19432,47,9.5,9,0.0 +19432,59,55,47,0.0 +19432,58,13.25,50,0.0 +19432,64,33.25,19,0.0 +19432,69,36,46,0.0 +19433,3,10,34,0.0 +19433,19,9.2,17,0.0 +19433,12,38,8,0.0 +19433,13,6,42,0.0 +19433,35,18,13,0.0 +19433,16,17.45,35,0.0 +19433,36,19,11,0.0 +19433,2,19,3,0.0 +19433,34,14,46,0.0 +19433,18,62.5,34,0.0 +19433,40,18.4,3,0.0 +19433,42,14,41,0.0 +19433,65,21.05,47,0.0 +19433,43,46,6,0.0 +19434,11,21,42,0.0 +19434,14,23.25,25,0.0 +19434,1,18,14,0.0 +19434,65,21.05,42,0.0 +19434,52,7,41,0.0 +19434,32,32,2,0.0 +19434,33,2.5,15,0.0 +19434,70,15,9,0.0 +19434,43,46,8,0.0 +19434,27,43.9,13,0.0 +19434,59,55,28,0.0 +19434,56,38,9,0.0 +19434,21,10,27,0.0 +19434,17,39,32,0.0 +19434,2,19,39,0.0 +19434,57,19.5,43,0.0 +19434,50,16.25,17,0.0 +19434,51,53,32,0.0 +19435,67,14,36,0.0 +19435,13,6,30,0.0 +19435,19,9.2,5,0.0 +19435,57,19.5,13,0.0 +19435,44,19.45,9,0.0 +19435,5,21.35,35,0.0 +19435,32,32,46,0.0 +19435,25,14,38,0.0 +19435,12,38,11,0.0 +19435,54,7.45,10,0.0 +19435,31,12.5,22,0.0 +19435,77,13,9,0.0 +19435,3,10,1,0.0 +19435,61,28.5,11,0.0 +19435,27,43.9,29,0.0 +19435,22,21,9,0.0 +19435,45,9.5,18,0.0 +19435,24,4.5,41,0.0 +19435,46,12,23,0.0 +19435,7,30,32,0.0 +19435,50,16.25,5,0.0 +19435,72,34.8,18,0.0 +19435,41,9.65,50,0.0 +19435,59,55,7,0.0 +19435,17,39,13,0.0 +19435,35,18,23,0.0 +19435,8,40,12,0.0 +19435,64,33.25,14,0.0 +19435,49,20,1,0.0 +19435,21,10,49,0.0 +19436,29,123.79,40,0.0 +19436,45,9.5,23,0.0 +19436,20,81,38,0.0 +19436,37,26,11,0.0 +19436,49,20,14,0.0 +19436,48,12.75,5,0.0 +19436,52,7,4,0.0 +19436,57,19.5,6,0.0 +19436,77,13,27,0.0 +19436,13,6,30,0.0 +19436,4,22,29,0.0 +19436,30,25.89,13,0.0 +19436,59,55,3,0.0 +19436,16,17.45,10,0.0 +19436,66,17,21,0.0 +19436,15,15.5,42,0.0 +19436,43,46,37,0.0 +19436,32,32,22,0.0 +19436,17,39,23,0.0 +19436,11,21,35,0.0 +19436,50,16.25,47,0.0 +19436,34,14,41,0.0 +19436,23,9,1,0.0 +19436,47,9.5,3,0.0 +19436,69,36,16,0.0 +19436,74,10,33,0.0 +19436,67,14,13,0.0 +19436,6,25,12,0.0 +19436,8,40,46,0.0 +19436,76,18,34,0.0 +19437,51,53,25,0.0 +19437,70,15,45,0.0 +19437,65,21.05,11,0.0 +19437,5,21.35,38,0.0 +19437,67,14,13,0.0 +19437,6,25,6,0.0 +19437,30,25.89,26,0.0 +19437,77,13,35,0.0 +19437,45,9.5,12,0.0 +19437,41,9.65,29,0.0 +19437,72,34.8,29,0.0 +19437,28,45.6,23,0.0 +19437,16,17.45,26,0.0 +19437,48,12.75,27,0.0 +19437,57,19.5,28,0.0 +19437,4,22,25,0.0 +19437,76,18,27,0.0 +19437,60,34,18,0.0 +19437,14,23.25,27,0.0 +19437,49,20,43,0.0 +19437,27,43.9,6,0.0 +19437,47,9.5,49,0.0 +19437,73,15,12,0.0 +19437,10,31,17,0.0 +19437,21,10,38,0.0 +19437,66,17,8,0.0 +19437,25,14,10,0.0 +19437,20,81,8,0.0 +19437,1,18,1,0.0 +19437,7,30,43,0.0 +19437,15,15.5,39,0.0 +19437,19,9.2,40,0.0 +19437,74,10,19,0.0 +19437,43,46,7,0.0 +19437,59,55,36,0.0 +19437,17,39,50,0.0 +19437,38,263.5,22,0.0 +19437,11,21,16,0.0 +19437,42,14,13,0.0 +19437,23,9,43,0.0 +19437,13,6,46,0.0 +19437,55,24,37,0.0 +19437,36,19,7,0.0 +19437,26,31.23,11,0.0 +19437,39,18,16,0.0 +19437,62,49.3,2,0.0 +19437,75,7.75,34,0.0 +19437,56,38,42,0.0 +19437,64,33.25,20,0.0 +19437,12,38,40,0.0 +19437,50,16.25,42,0.0 +19437,52,7,21,0.0 +19437,54,7.45,20,0.0 +19437,29,123.79,10,0.0 +19437,31,12.5,25,0.0 +19437,18,62.5,11,0.0 +19437,3,10,20,0.0 +19437,34,14,45,0.0 +19437,71,21.5,20,0.0 +19437,46,12,10,0.0 +19437,69,36,27,0.0 +19438,19,9.2,4,0.0 +19438,3,10,42,0.0 +19438,69,36,49,0.0 +19438,5,21.35,13,0.0 +19438,20,81,34,0.0 +19438,43,46,24,0.0 +19438,36,19,44,0.0 +19438,24,4.5,8,0.0 +19438,52,7,32,0.0 +19438,14,23.25,30,0.0 +19438,48,12.75,9,0.0 +19438,49,20,17,0.0 +19438,15,15.5,26,0.0 +19438,13,6,48,0.0 +19438,35,18,37,0.0 +19438,44,19.45,35,0.0 +19438,50,16.25,26,0.0 +19438,42,14,17,0.0 +19438,16,17.45,4,0.0 +19438,21,10,48,0.0 +19438,26,31.23,27,0.0 +19438,2,19,30,0.0 +19438,66,17,7,0.0 +19438,74,10,37,0.0 +19438,10,31,27,0.0 +19438,67,14,45,0.0 +19438,71,21.5,23,0.0 +19438,37,26,48,0.0 +19438,58,13.25,42,0.0 +19438,53,32.8,43,0.0 +19438,32,32,3,0.0 +19438,46,12,32,0.0 +19438,34,14,29,0.0 +19438,70,15,40,0.0 +19438,64,33.25,15,0.0 +19438,62,49.3,13,0.0 +19438,54,7.45,3,0.0 +19438,33,2.5,25,0.0 +19438,47,9.5,21,0.0 +19438,61,28.5,43,0.0 +19438,60,34,35,0.0 +19438,9,97,14,0.0 +19438,59,55,1,0.0 +19438,65,21.05,16,0.0 +19438,63,43.9,22,0.0 +19438,51,53,47,0.0 +19439,60,34,3,0.0 +19440,50,16.25,47,0.0 +19440,57,19.5,29,0.0 +19440,11,21,9,0.0 +19440,2,19,36,0.0 +19440,74,10,36,0.0 +19440,47,9.5,14,0.0 +19440,33,2.5,26,0.0 +19440,37,26,24,0.0 +19440,21,10,14,0.0 +19440,5,21.35,4,0.0 +19440,8,40,13,0.0 +19440,77,13,39,0.0 +19440,55,24,10,0.0 +19440,72,34.8,37,0.0 +19440,3,10,37,0.0 +19440,63,43.9,1,0.0 +19440,16,17.45,35,0.0 +19440,48,12.75,26,0.0 +19440,71,21.5,12,0.0 +19440,69,36,40,0.0 +19440,22,21,5,0.0 +19440,45,9.5,12,0.0 +19440,32,32,11,0.0 +19440,58,13.25,49,0.0 +19440,43,46,9,0.0 +19440,29,123.79,21,0.0 +19440,42,14,26,0.0 +19440,40,18.4,41,0.0 +19440,52,7,21,0.0 +19440,73,15,23,0.0 +19440,36,19,33,0.0 +19440,14,23.25,24,0.0 +19440,23,9,48,0.0 +19440,70,15,32,0.0 +19440,46,12,21,0.0 +19440,67,14,39,0.0 +19440,30,25.89,8,0.0 +19440,31,12.5,41,0.0 +19440,27,43.9,22,0.0 +19440,51,53,16,0.0 +19440,9,97,23,0.0 +19440,17,39,44,0.0 +19440,4,22,5,0.0 +19440,39,18,50,0.0 +19440,62,49.3,33,0.0 +19440,60,34,19,0.0 +19440,7,30,19,0.0 +19440,18,62.5,24,0.0 +19440,76,18,23,0.0 +19440,53,32.8,44,0.0 +19440,66,17,46,0.0 +19440,65,21.05,31,0.0 +19440,61,28.5,23,0.0 +19440,1,18,37,0.0 +19440,56,38,39,0.0 +19440,6,25,17,0.0 +19441,62,49.3,42,0.0 +19441,18,62.5,9,0.0 +19441,16,17.45,22,0.0 +19441,73,15,37,0.0 +19441,27,43.9,16,0.0 +19441,66,17,17,0.0 +19441,41,9.65,30,0.0 +19441,61,28.5,17,0.0 +19441,40,18.4,35,0.0 +19441,24,4.5,16,0.0 +19441,67,14,28,0.0 +19441,60,34,9,0.0 +19441,17,39,38,0.0 +19441,48,12.75,13,0.0 +19441,38,263.5,44,0.0 +19441,71,21.5,26,0.0 +19441,42,14,29,0.0 +19441,75,7.75,16,0.0 +19441,34,14,24,0.0 +19441,30,25.89,35,0.0 +19441,23,9,35,0.0 +19441,37,26,48,0.0 +19441,74,10,10,0.0 +19441,25,14,18,0.0 +19441,54,7.45,16,0.0 +19441,44,19.45,7,0.0 +19441,47,9.5,38,0.0 +19441,59,55,45,0.0 +19441,58,13.25,7,0.0 +19441,20,81,12,0.0 +19441,19,9.2,41,0.0 +19441,36,19,8,0.0 +19441,5,21.35,28,0.0 +19441,55,24,41,0.0 +19441,69,36,12,0.0 +19441,32,32,16,0.0 +19441,72,34.8,41,0.0 +19441,39,18,8,0.0 +19441,64,33.25,21,0.0 +19441,63,43.9,11,0.0 +19441,45,9.5,29,0.0 +19441,50,16.25,30,0.0 +19441,3,10,13,0.0 +19441,43,46,35,0.0 +19441,28,45.6,49,0.0 +19441,29,123.79,4,0.0 +19441,51,53,19,0.0 +19441,76,18,10,0.0 +19441,12,38,26,0.0 +19441,52,7,26,0.0 +19441,68,12.5,44,0.0 +19441,35,18,49,0.0 +19441,56,38,15,0.0 +19441,77,13,23,0.0 +19441,53,32.8,19,0.0 +19441,6,25,9,0.0 +19441,13,6,18,0.0 +19442,33,2.5,30,0.0 +19442,24,4.5,12,0.0 +19442,55,24,25,0.0 +19442,47,9.5,39,0.0 +19442,42,14,40,0.0 +19442,59,55,12,0.0 +19442,22,21,32,0.0 +19442,60,34,4,0.0 +19442,40,18.4,21,0.0 +19442,26,31.23,13,0.0 +19442,30,25.89,4,0.0 +19442,1,18,34,0.0 +19442,66,17,38,0.0 +19442,53,32.8,45,0.0 +19442,27,43.9,4,0.0 +19442,12,38,35,0.0 +19442,14,23.25,12,0.0 +19442,50,16.25,44,0.0 +19442,71,21.5,38,0.0 +19442,68,12.5,3,0.0 +19442,11,21,13,0.0 +19442,36,19,9,0.0 +19443,13,6,7,0.0 +19443,59,55,48,0.0 +19443,28,45.6,15,0.0 +19443,4,22,24,0.0 +19443,26,31.23,8,0.0 +19443,1,18,28,0.0 +19443,66,17,18,0.0 +19443,20,81,43,0.0 +19443,73,15,50,0.0 +19443,69,36,47,0.0 +19443,57,19.5,29,0.0 +19443,17,39,6,0.0 +19443,27,43.9,7,0.0 +19443,16,17.45,2,0.0 +19443,68,12.5,41,0.0 +19443,64,33.25,7,0.0 +19443,44,19.45,11,0.0 +19443,48,12.75,32,0.0 +19443,65,21.05,20,0.0 +19443,63,43.9,2,0.0 +19443,31,12.5,47,0.0 +19443,34,14,43,0.0 +19443,72,34.8,50,0.0 +19443,18,62.5,46,0.0 +19443,22,21,26,0.0 +19443,15,15.5,14,0.0 +19443,40,18.4,2,0.0 +19443,61,28.5,7,0.0 +19443,12,38,20,0.0 +19443,35,18,16,0.0 +19443,21,10,47,0.0 +19443,45,9.5,34,0.0 +19443,75,7.75,40,0.0 +19443,70,15,16,0.0 +19443,50,16.25,9,0.0 +19443,7,30,20,0.0 +19443,9,97,36,0.0 +19443,14,23.25,39,0.0 +19443,60,34,17,0.0 +19443,43,46,32,0.0 +19443,54,7.45,47,0.0 +19443,29,123.79,38,0.0 +19443,71,21.5,48,0.0 +19443,58,13.25,4,0.0 +19443,51,53,9,0.0 +19443,62,49.3,43,0.0 +19443,30,25.89,42,0.0 +19443,38,263.5,16,0.0 +19443,77,13,18,0.0 +19443,39,18,33,0.0 +19443,25,14,15,0.0 +19443,5,21.35,25,0.0 +19443,52,7,11,0.0 +19443,6,25,30,0.0 +19443,23,9,43,0.0 +19443,24,4.5,13,0.0 +19443,36,19,34,0.0 +19443,11,21,21,0.0 +19443,42,14,45,0.0 +19443,2,19,36,0.0 +19443,41,9.65,24,0.0 +19443,37,26,9,0.0 +19443,56,38,39,0.0 +19443,47,9.5,24,0.0 +19443,46,12,12,0.0 +19443,53,32.8,33,0.0 +19443,19,9.2,24,0.0 +19443,32,32,34,0.0 +19443,33,2.5,48,0.0 +19443,8,40,21,0.0 +19443,55,24,28,0.0 +19443,76,18,25,0.0 +19443,10,31,28,0.0 +19443,74,10,25,0.0 +19443,49,20,35,0.0 +19443,67,14,44,0.0 +19443,3,10,4,0.0 +19444,33,2.5,7,0.0 +19444,35,18,33,0.0 +19444,61,28.5,7,0.0 +19444,41,9.65,30,0.0 +19444,71,21.5,39,0.0 +19444,46,12,36,0.0 +19444,73,15,1,0.0 +19444,21,10,41,0.0 +19444,64,33.25,16,0.0 +19444,70,15,39,0.0 +19444,74,10,46,0.0 +19444,67,14,45,0.0 +19444,40,18.4,31,0.0 +19444,31,12.5,12,0.0 +19444,36,19,37,0.0 +19444,43,46,45,0.0 +19444,25,14,37,0.0 +19444,48,12.75,8,0.0 +19444,34,14,18,0.0 +19444,10,31,45,0.0 +19444,45,9.5,48,0.0 +19444,59,55,9,0.0 +19444,19,9.2,45,0.0 +19444,22,21,30,0.0 +19444,23,9,43,0.0 +19444,47,9.5,38,0.0 +19444,29,123.79,16,0.0 +19444,14,23.25,40,0.0 +19444,32,32,33,0.0 +19444,26,31.23,46,0.0 +19444,6,25,7,0.0 +19444,69,36,20,0.0 +19444,8,40,48,0.0 +19444,16,17.45,29,0.0 +19444,13,6,2,0.0 +19444,12,38,49,0.0 +19444,55,24,38,0.0 +19444,17,39,17,0.0 +19444,62,49.3,36,0.0 +19444,7,30,28,0.0 +19444,51,53,40,0.0 +19444,38,263.5,4,0.0 +19444,44,19.45,3,0.0 +19444,42,14,43,0.0 +19444,24,4.5,50,0.0 +19444,28,45.6,13,0.0 +19444,57,19.5,7,0.0 +19444,20,81,19,0.0 +19444,4,22,17,0.0 +19444,27,43.9,32,0.0 +19444,30,25.89,44,0.0 +19444,9,97,19,0.0 +19444,75,7.75,14,0.0 +19444,11,21,14,0.0 +19444,1,18,31,0.0 +19444,53,32.8,20,0.0 +19444,63,43.9,36,0.0 +19444,49,20,6,0.0 +19444,5,21.35,36,0.0 +19444,77,13,33,0.0 +19444,18,62.5,7,0.0 +19444,65,21.05,37,0.0 +19445,10,31,39,0.0 +19445,32,32,45,0.0 +19445,70,15,37,0.0 +19445,36,19,39,0.0 +19445,60,34,9,0.0 +19445,55,24,28,0.0 +19445,3,10,24,0.0 +19445,23,9,44,0.0 +19445,63,43.9,17,0.0 +19445,25,14,4,0.0 +19445,41,9.65,12,0.0 +19445,26,31.23,8,0.0 +19445,21,10,31,0.0 +19445,28,45.6,8,0.0 +19445,24,4.5,25,0.0 +19445,46,12,24,0.0 +19445,1,18,32,0.0 +19445,65,21.05,42,0.0 +19445,67,14,1,0.0 +19445,59,55,23,0.0 +19445,57,19.5,7,0.0 +19445,39,18,12,0.0 +19445,16,17.45,44,0.0 +19445,73,15,42,0.0 +19445,54,7.45,5,0.0 +19445,44,19.45,41,0.0 +19445,34,14,3,0.0 +19445,11,21,29,0.0 +19445,33,2.5,7,0.0 +19446,21,10,37,0.0 +19446,45,9.5,23,0.0 +19446,19,9.2,12,0.0 +19446,61,28.5,27,0.0 +19446,60,34,1,0.0 +19446,47,9.5,45,0.0 +19446,26,31.23,12,0.0 +19446,72,34.8,16,0.0 +19446,22,21,49,0.0 +19446,59,55,33,0.0 +19446,70,15,28,0.0 +19446,18,62.5,32,0.0 +19446,42,14,50,0.0 +19446,73,15,45,0.0 +19446,37,26,49,0.0 +19446,38,263.5,35,0.0 +19446,17,39,40,0.0 +19446,29,123.79,25,0.0 +19446,76,18,19,0.0 +19446,75,7.75,33,0.0 +19446,52,7,13,0.0 +19446,20,81,35,0.0 +19446,46,12,2,0.0 +19446,55,24,11,0.0 +19446,12,38,25,0.0 +19446,49,20,6,0.0 +19446,35,18,3,0.0 +19446,36,19,1,0.0 +19446,33,2.5,13,0.0 +19446,10,31,39,0.0 +19446,14,23.25,4,0.0 +19446,39,18,33,0.0 +19446,41,9.65,16,0.0 +19446,16,17.45,46,0.0 +19446,7,30,47,0.0 +19446,63,43.9,34,0.0 +19446,3,10,44,0.0 +19446,25,14,49,0.0 +19446,48,12.75,1,0.0 +19446,15,15.5,42,0.0 +19446,27,43.9,48,0.0 +19446,9,97,32,0.0 +19446,66,17,25,0.0 +19446,53,32.8,35,0.0 +19446,57,19.5,24,0.0 +19446,40,18.4,25,0.0 +19446,1,18,37,0.0 +19446,71,21.5,50,0.0 +19446,34,14,30,0.0 +19446,50,16.25,20,0.0 +19446,5,21.35,42,0.0 +19446,65,21.05,20,0.0 +19446,24,4.5,8,0.0 +19446,74,10,3,0.0 +19446,11,21,27,0.0 +19446,62,49.3,35,0.0 +19446,23,9,16,0.0 +19446,31,12.5,6,0.0 +19446,6,25,2,0.0 +19446,4,22,39,0.0 +19446,58,13.25,41,0.0 +19446,30,25.89,18,0.0 +19446,54,7.45,11,0.0 +19446,67,14,9,0.0 +19446,64,33.25,48,0.0 +19446,56,38,44,0.0 +19446,43,46,42,0.0 +19446,68,12.5,26,0.0 +19446,8,40,19,0.0 +19446,77,13,46,0.0 +19446,44,19.45,9,0.0 +19446,2,19,32,0.0 +19446,32,32,1,0.0 +19447,46,12,45,0.0 +19447,23,9,40,0.0 +19447,68,12.5,11,0.0 +19447,40,18.4,5,0.0 +19447,18,62.5,15,0.0 +19447,7,30,39,0.0 +19447,73,15,45,0.0 +19447,2,19,50,0.0 +19447,43,46,24,0.0 +19447,54,7.45,20,0.0 +19447,50,16.25,32,0.0 +19447,5,21.35,8,0.0 +19447,64,33.25,4,0.0 +19447,41,9.65,4,0.0 +19447,19,9.2,9,0.0 +19447,71,21.5,7,0.0 +19447,65,21.05,27,0.0 +19447,3,10,21,0.0 +19447,31,12.5,46,0.0 +19447,58,13.25,14,0.0 +19447,47,9.5,29,0.0 +19447,4,22,14,0.0 +19447,16,17.45,22,0.0 +19447,25,14,27,0.0 +19447,66,17,45,0.0 +19447,1,18,46,0.0 +19447,70,15,7,0.0 +19447,38,263.5,21,0.0 +19447,32,32,22,0.0 +19447,63,43.9,7,0.0 +19447,30,25.89,24,0.0 +19447,48,12.75,6,0.0 +19447,75,7.75,44,0.0 +19447,44,19.45,34,0.0 +19447,22,21,44,0.0 +19448,6,25,14,0.0 +19448,69,36,29,0.0 +19448,74,10,36,0.0 +19448,24,4.5,39,0.0 +19448,48,12.75,22,0.0 +19448,76,18,17,0.0 +19448,28,45.6,17,0.0 +19448,11,21,9,0.0 +19448,43,46,31,0.0 +19448,2,19,15,0.0 +19448,22,21,19,0.0 +19448,75,7.75,41,0.0 +19448,4,22,4,0.0 +19448,36,19,48,0.0 +19448,47,9.5,25,0.0 +19448,64,33.25,12,0.0 +19448,52,7,44,0.0 +19448,37,26,29,0.0 +19448,42,14,37,0.0 +19448,53,32.8,32,0.0 +19448,55,24,41,0.0 +19448,66,17,1,0.0 +19448,44,19.45,36,0.0 +19448,32,32,8,0.0 +19448,45,9.5,21,0.0 +19448,12,38,40,0.0 +19448,57,19.5,46,0.0 +19448,23,9,50,0.0 +19448,51,53,24,0.0 +19448,29,123.79,38,0.0 +19448,33,2.5,41,0.0 +19448,19,9.2,24,0.0 +19448,17,39,10,0.0 +19448,20,81,12,0.0 +19448,67,14,14,0.0 +19448,62,49.3,9,0.0 +19448,5,21.35,14,0.0 +19448,73,15,8,0.0 +19448,60,34,15,0.0 +19448,65,21.05,36,0.0 +19448,59,55,12,0.0 +19448,7,30,22,0.0 +19448,16,17.45,42,0.0 +19448,10,31,21,0.0 +19448,26,31.23,6,0.0 +19448,14,23.25,36,0.0 +19448,1,18,47,0.0 +19448,72,34.8,42,0.0 +19448,34,14,22,0.0 +19448,15,15.5,26,0.0 +19449,49,20,9,0.0 +19449,37,26,21,0.0 +19449,1,18,3,0.0 +19449,28,45.6,2,0.0 +19449,36,19,5,0.0 +19449,31,12.5,40,0.0 +19449,59,55,6,0.0 +19449,17,39,30,0.0 +19449,32,32,41,0.0 +19449,63,43.9,23,0.0 +19449,71,21.5,48,0.0 +19449,55,24,32,0.0 +19449,68,12.5,9,0.0 +19449,2,19,47,0.0 +19449,76,18,46,0.0 +19449,13,6,2,0.0 +19449,47,9.5,27,0.0 +19449,45,9.5,38,0.0 +19449,22,21,36,0.0 +19449,23,9,21,0.0 +19449,39,18,35,0.0 +19449,74,10,40,0.0 +19449,24,4.5,3,0.0 +19449,20,81,30,0.0 +19449,5,21.35,6,0.0 +19449,46,12,21,0.0 +19449,43,46,32,0.0 +19449,3,10,24,0.0 +19449,18,62.5,45,0.0 +19449,56,38,12,0.0 +19449,72,34.8,48,0.0 +19449,60,34,1,0.0 +19449,66,17,48,0.0 +19449,4,22,10,0.0 +19449,10,31,37,0.0 +19449,33,2.5,13,0.0 +19449,34,14,32,0.0 +19449,54,7.45,28,0.0 +19449,70,15,2,0.0 +19449,58,13.25,12,0.0 +19449,77,13,22,0.0 +19449,53,32.8,43,0.0 +19449,69,36,47,0.0 +19449,42,14,13,0.0 +19449,73,15,6,0.0 +19449,41,9.65,17,0.0 +19449,61,28.5,17,0.0 +19449,11,21,40,0.0 +19449,6,25,46,0.0 +19449,50,16.25,21,0.0 +19449,29,123.79,9,0.0 +19449,62,49.3,15,0.0 +19449,15,15.5,45,0.0 +19449,35,18,32,0.0 +19449,44,19.45,3,0.0 +19449,16,17.45,13,0.0 +19449,9,97,42,0.0 +19449,19,9.2,46,0.0 +19449,8,40,41,0.0 +19449,7,30,38,0.0 +19449,75,7.75,42,0.0 +19449,48,12.75,29,0.0 +19449,40,18.4,38,0.0 +19449,67,14,16,0.0 +19449,12,38,27,0.0 +19450,48,12.75,26,0.0 +19450,66,17,41,0.0 +19450,42,14,1,0.0 +19450,13,6,48,0.0 +19450,72,34.8,34,0.0 +19450,52,7,16,0.0 +19450,34,14,17,0.0 +19450,54,7.45,22,0.0 +19450,61,28.5,34,0.0 +19450,38,263.5,3,0.0 +19450,44,19.45,1,0.0 +19450,9,97,40,0.0 +19450,65,21.05,14,0.0 +19450,75,7.75,50,0.0 +19450,59,55,33,0.0 +19450,73,15,32,0.0 +19450,23,9,41,0.0 +19450,60,34,46,0.0 +19450,51,53,6,0.0 +19450,35,18,45,0.0 +19450,50,16.25,45,0.0 +19450,28,45.6,33,0.0 +19450,63,43.9,17,0.0 +19450,2,19,9,0.0 +19450,39,18,31,0.0 +19450,15,15.5,33,0.0 +19450,11,21,37,0.0 +19450,49,20,19,0.0 +19450,56,38,11,0.0 +19450,36,19,50,0.0 +19450,74,10,38,0.0 +19450,46,12,33,0.0 +19450,47,9.5,7,0.0 +19450,14,23.25,27,0.0 +19450,16,17.45,18,0.0 +19450,55,24,14,0.0 +19450,71,21.5,26,0.0 +19450,24,4.5,10,0.0 +19450,4,22,25,0.0 +19450,25,14,42,0.0 +19450,40,18.4,5,0.0 +19450,37,26,44,0.0 +19450,45,9.5,46,0.0 +19450,20,81,33,0.0 +19450,1,18,4,0.0 +19450,33,2.5,30,0.0 +19450,41,9.65,21,0.0 +19450,27,43.9,28,0.0 +19450,29,123.79,33,0.0 +19450,18,62.5,35,0.0 +19450,22,21,26,0.0 +19450,8,40,22,0.0 +19450,31,12.5,40,0.0 +19450,43,46,34,0.0 +19450,64,33.25,17,0.0 +19450,68,12.5,49,0.0 +19450,6,25,34,0.0 +19450,67,14,26,0.0 +19450,5,21.35,31,0.0 +19450,3,10,37,0.0 +19450,7,30,10,0.0 +19450,12,38,38,0.0 +19450,19,9.2,33,0.0 +19450,30,25.89,41,0.0 +19450,58,13.25,15,0.0 +19450,26,31.23,31,0.0 +19450,69,36,36,0.0 +19450,70,15,22,0.0 +19450,17,39,23,0.0 +19450,21,10,37,0.0 +19450,76,18,46,0.0 +19450,57,19.5,17,0.0 +19450,77,13,21,0.0 +19450,62,49.3,6,0.0 +19450,10,31,37,0.0 +19450,32,32,19,0.0 +19451,72,34.8,1,0.0 +19451,45,9.5,30,0.0 +19451,76,18,45,0.0 +19451,48,12.75,19,0.0 +19451,71,21.5,37,0.0 +19451,66,17,22,0.0 +19451,74,10,11,0.0 +19451,65,21.05,13,0.0 +19451,75,7.75,46,0.0 +19451,23,9,1,0.0 +19451,24,4.5,37,0.0 +19451,55,24,35,0.0 +19451,52,7,41,0.0 +19451,32,32,31,0.0 +19451,59,55,36,0.0 +19451,42,14,9,0.0 +19451,64,33.25,17,0.0 +19451,60,34,49,0.0 +19451,16,17.45,12,0.0 +19451,1,18,20,0.0 +19451,38,263.5,28,0.0 +19451,50,16.25,36,0.0 +19451,41,9.65,2,0.0 +19451,37,26,32,0.0 +19451,26,31.23,38,0.0 +19451,47,9.5,4,0.0 +19451,54,7.45,2,0.0 +19451,46,12,50,0.0 +19451,7,30,15,0.0 +19451,22,21,7,0.0 +19451,40,18.4,7,0.0 +19451,20,81,14,0.0 +19451,57,19.5,2,0.0 +19451,12,38,36,0.0 +19451,49,20,2,0.0 +19451,3,10,49,0.0 +19451,70,15,35,0.0 +19451,77,13,8,0.0 +19451,21,10,20,0.0 +19451,29,123.79,27,0.0 +19451,36,19,22,0.0 +19451,63,43.9,29,0.0 +19451,28,45.6,9,0.0 +19451,2,19,27,0.0 +19451,17,39,37,0.0 +19451,5,21.35,25,0.0 +19451,15,15.5,21,0.0 +19451,56,38,43,0.0 +19451,14,23.25,35,0.0 +19451,61,28.5,30,0.0 +19451,25,14,43,0.0 +19451,4,22,37,0.0 +19451,8,40,50,0.0 +19451,53,32.8,21,0.0 +19452,28,45.6,21,0.0 +19452,15,15.5,8,0.0 +19452,67,14,2,0.0 +19452,14,23.25,50,0.0 +19452,22,21,38,0.0 +19452,19,9.2,12,0.0 +19452,44,19.45,15,0.0 +19452,70,15,45,0.0 +19452,42,14,21,0.0 +19452,63,43.9,17,0.0 +19452,18,62.5,6,0.0 +19452,13,6,22,0.0 +19452,43,46,43,0.0 +19452,77,13,46,0.0 +19452,53,32.8,10,0.0 +19452,46,12,9,0.0 +19452,69,36,48,0.0 +19452,68,12.5,10,0.0 +19452,49,20,32,0.0 +19452,11,21,6,0.0 +19452,24,4.5,27,0.0 +19452,45,9.5,33,0.0 +19452,56,38,45,0.0 +19452,76,18,42,0.0 +19452,66,17,7,0.0 +19452,52,7,6,0.0 +19452,40,18.4,19,0.0 +19452,20,81,31,0.0 +19452,60,34,33,0.0 +19452,61,28.5,10,0.0 +19452,25,14,47,0.0 +19452,9,97,5,0.0 +19452,51,53,38,0.0 +19452,64,33.25,15,0.0 +19452,73,15,40,0.0 +19452,39,18,2,0.0 +19452,12,38,32,0.0 +19452,74,10,21,0.0 +19452,75,7.75,17,0.0 +19452,38,263.5,18,0.0 +19452,10,31,28,0.0 +19453,76,18,31,0.0 +19453,24,4.5,34,0.0 +19453,52,7,47,0.0 +19453,57,19.5,44,0.0 +19453,77,13,41,0.0 +19453,63,43.9,5,0.0 +19453,32,32,26,0.0 +19453,67,14,2,0.0 +19453,39,18,24,0.0 +19453,66,17,50,0.0 +19453,43,46,29,0.0 +19453,61,28.5,15,0.0 +19453,47,9.5,44,0.0 +19453,59,55,34,0.0 +19453,58,13.25,35,0.0 +19453,5,21.35,25,0.0 +19453,8,40,37,0.0 +19453,1,18,41,0.0 +19453,13,6,45,0.0 +19453,34,14,23,0.0 +19453,37,26,50,0.0 +19453,54,7.45,10,0.0 +19453,22,21,18,0.0 +19453,64,33.25,1,0.0 +19453,53,32.8,44,0.0 +19453,35,18,34,0.0 +19453,28,45.6,4,0.0 +19453,23,9,16,0.0 +19453,71,21.5,28,0.0 +19453,72,34.8,27,0.0 +19453,51,53,6,0.0 +19453,36,19,40,0.0 +19453,29,123.79,38,0.0 +19453,40,18.4,4,0.0 +19453,7,30,14,0.0 +19453,46,12,40,0.0 +19453,41,9.65,10,0.0 +19453,19,9.2,37,0.0 +19453,25,14,13,0.0 +19453,3,10,17,0.0 +19453,65,21.05,47,0.0 +19453,60,34,42,0.0 +19453,50,16.25,13,0.0 +19453,55,24,35,0.0 +19453,12,38,26,0.0 +19453,21,10,2,0.0 +19453,26,31.23,13,0.0 +19453,18,62.5,21,0.0 +19453,30,25.89,8,0.0 +19453,33,2.5,41,0.0 +19453,38,263.5,35,0.0 +19453,69,36,46,0.0 +19453,45,9.5,45,0.0 +19453,73,15,32,0.0 +19453,15,15.5,4,0.0 +19453,48,12.75,50,0.0 +19453,20,81,5,0.0 +19453,42,14,42,0.0 +19453,56,38,34,0.0 +19453,74,10,10,0.0 +19453,75,7.75,19,0.0 +19453,14,23.25,27,0.0 +19453,49,20,10,0.0 +19453,16,17.45,12,0.0 +19453,17,39,48,0.0 +19453,62,49.3,22,0.0 +19453,10,31,34,0.0 +19453,6,25,47,0.0 +19453,9,97,46,0.0 +19453,4,22,13,0.0 +19453,70,15,29,0.0 +19453,27,43.9,30,0.0 +19453,68,12.5,15,0.0 +19453,2,19,36,0.0 +19454,5,21.35,25,0.0 +19454,20,81,18,0.0 +19454,6,25,17,0.0 +19454,28,45.6,28,0.0 +19454,31,12.5,18,0.0 +19454,77,13,16,0.0 +19454,74,10,35,0.0 +19454,1,18,17,0.0 +19454,57,19.5,3,0.0 +19454,15,15.5,43,0.0 +19454,38,263.5,50,0.0 +19454,33,2.5,44,0.0 +19454,18,62.5,47,0.0 +19454,37,26,34,0.0 +19454,42,14,41,0.0 +19454,73,15,33,0.0 +19454,4,22,46,0.0 +19454,56,38,8,0.0 +19454,67,14,22,0.0 +19454,17,39,10,0.0 +19454,58,13.25,9,0.0 +19454,9,97,34,0.0 +19454,72,34.8,26,0.0 +19454,16,17.45,37,0.0 +19454,13,6,26,0.0 +19454,62,49.3,25,0.0 +19454,66,17,44,0.0 +19454,36,19,13,0.0 +19454,12,38,5,0.0 +19454,19,9.2,32,0.0 +19454,49,20,32,0.0 +19454,8,40,30,0.0 +19454,10,31,25,0.0 +19454,70,15,20,0.0 +19454,3,10,47,0.0 +19454,68,12.5,9,0.0 +19454,55,24,2,0.0 +19454,59,55,36,0.0 +19454,2,19,14,0.0 +19454,44,19.45,41,0.0 +19454,29,123.79,33,0.0 +19454,24,4.5,20,0.0 +19454,61,28.5,2,0.0 +19454,39,18,14,0.0 +19454,27,43.9,18,0.0 +19454,23,9,27,0.0 +19454,14,23.25,44,0.0 +19454,69,36,6,0.0 +19454,47,9.5,14,0.0 +19454,34,14,40,0.0 +19454,71,21.5,36,0.0 +19454,64,33.25,6,0.0 +19454,54,7.45,28,0.0 +19454,40,18.4,37,0.0 +19454,26,31.23,18,0.0 +19454,76,18,36,0.0 +19454,53,32.8,7,0.0 +19454,30,25.89,9,0.0 +19454,48,12.75,1,0.0 +19454,41,9.65,50,0.0 +19454,50,16.25,32,0.0 +19454,22,21,29,0.0 +19455,44,19.45,34,0.0 +19455,54,7.45,44,0.0 +19455,46,12,14,0.0 +19455,23,9,15,0.0 +19455,15,15.5,5,0.0 +19455,45,9.5,50,0.0 +19455,38,263.5,6,0.0 +19455,74,10,19,0.0 +19455,21,10,8,0.0 +19455,50,16.25,4,0.0 +19455,71,21.5,19,0.0 +19455,19,9.2,28,0.0 +19455,39,18,2,0.0 +19455,4,22,32,0.0 +19455,64,33.25,37,0.0 +19455,40,18.4,9,0.0 +19455,66,17,27,0.0 +19455,68,12.5,30,0.0 +19455,60,34,3,0.0 +19455,12,38,1,0.0 +19455,42,14,43,0.0 +19455,35,18,34,0.0 +19455,63,43.9,41,0.0 +19455,3,10,41,0.0 +19455,72,34.8,8,0.0 +19455,7,30,11,0.0 +19455,14,23.25,7,0.0 +19455,32,32,23,0.0 +19455,75,7.75,2,0.0 +19455,10,31,6,0.0 +19455,43,46,21,0.0 +19455,69,36,47,0.0 +19455,51,53,16,0.0 +19455,56,38,20,0.0 +19455,58,13.25,31,0.0 +19455,31,12.5,47,0.0 +19455,48,12.75,5,0.0 +19455,55,24,5,0.0 +19455,57,19.5,49,0.0 +19455,70,15,36,0.0 +19455,76,18,36,0.0 +19455,13,6,40,0.0 +19455,18,62.5,46,0.0 +19455,47,9.5,27,0.0 +19455,36,19,32,0.0 +19455,5,21.35,36,0.0 +19455,24,4.5,30,0.0 +19455,52,7,43,0.0 +19455,61,28.5,46,0.0 +19455,33,2.5,34,0.0 +19455,22,21,11,0.0 +19455,77,13,48,0.0 +19455,65,21.05,1,0.0 +19455,41,9.65,20,0.0 +19455,73,15,25,0.0 +19455,29,123.79,30,0.0 +19455,25,14,7,0.0 +19455,49,20,35,0.0 +19455,53,32.8,1,0.0 +19455,62,49.3,26,0.0 +19455,20,81,22,0.0 +19455,67,14,28,0.0 +19455,30,25.89,21,0.0 +19455,26,31.23,26,0.0 +19455,8,40,5,0.0 +19455,37,26,32,0.0 +19455,28,45.6,47,0.0 +19455,2,19,46,0.0 +19455,27,43.9,46,0.0 +19456,57,19.5,44,0.0 +19456,62,49.3,22,0.0 +19456,49,20,22,0.0 +19456,14,23.25,15,0.0 +19456,32,32,4,0.0 +19456,33,2.5,3,0.0 +19456,41,9.65,19,0.0 +19456,50,16.25,23,0.0 +19456,4,22,17,0.0 +19456,25,14,17,0.0 +19456,56,38,30,0.0 +19456,6,25,42,0.0 +19456,22,21,11,0.0 +19456,63,43.9,10,0.0 +19456,72,34.8,23,0.0 +19456,69,36,40,0.0 +19456,58,13.25,23,0.0 +19456,2,19,46,0.0 +19456,70,15,9,0.0 +19456,9,97,34,0.0 +19456,24,4.5,27,0.0 +19456,23,9,10,0.0 +19456,53,32.8,47,0.0 +19456,26,31.23,36,0.0 +19456,15,15.5,33,0.0 +19456,73,15,48,0.0 +19456,29,123.79,46,0.0 +19456,64,33.25,3,0.0 +19456,61,28.5,42,0.0 +19456,13,6,48,0.0 +19456,12,38,18,0.0 +19456,17,39,2,0.0 +19456,18,62.5,18,0.0 +19456,74,10,6,0.0 +19456,42,14,37,0.0 +19456,37,26,2,0.0 +19456,59,55,2,0.0 +19456,36,19,36,0.0 +19456,48,12.75,17,0.0 +19456,67,14,25,0.0 +19456,44,19.45,44,0.0 +19457,48,12.75,12,0.0 +19457,29,123.79,27,0.0 +19457,43,46,14,0.0 +19457,53,32.8,5,0.0 +19457,76,18,30,0.0 +19457,63,43.9,29,0.0 +19457,25,14,48,0.0 +19457,27,43.9,20,0.0 +19457,61,28.5,11,0.0 +19457,28,45.6,13,0.0 +19457,49,20,33,0.0 +19457,7,30,45,0.0 +19457,44,19.45,44,0.0 +19457,55,24,12,0.0 +19457,33,2.5,21,0.0 +19457,18,62.5,34,0.0 +19457,62,49.3,44,0.0 +19457,46,12,23,0.0 +19457,41,9.65,36,0.0 +19457,68,12.5,27,0.0 +19457,35,18,3,0.0 +19457,39,18,25,0.0 +19457,8,40,18,0.0 +19457,3,10,42,0.0 +19457,31,12.5,2,0.0 +19457,64,33.25,5,0.0 +19457,56,38,13,0.0 +19457,70,15,28,0.0 +19458,7,30,22,0.0 +19458,1,18,14,0.0 +19458,13,6,4,0.0 +19458,38,263.5,50,0.0 +19458,35,18,43,0.0 +19458,49,20,3,0.0 +19458,75,7.75,33,0.0 +19458,4,22,17,0.0 +19458,5,21.35,11,0.0 +19458,72,34.8,17,0.0 +19458,19,9.2,5,0.0 +19458,44,19.45,42,0.0 +19458,36,19,20,0.0 +19458,61,28.5,22,0.0 +19458,70,15,24,0.0 +19458,22,21,9,0.0 +19458,69,36,2,0.0 +19458,54,7.45,6,0.0 +19458,15,15.5,32,0.0 +19458,74,10,45,0.0 +19458,31,12.5,25,0.0 +19458,51,53,41,0.0 +19458,25,14,30,0.0 +19458,18,62.5,22,0.0 +19458,2,19,50,0.0 +19459,67,14,35,0.0 +19459,63,43.9,6,0.0 +19459,18,62.5,18,0.0 +19459,5,21.35,4,0.0 +19459,73,15,10,0.0 +19459,11,21,28,0.0 +19459,55,24,43,0.0 +19459,46,12,26,0.0 +19459,45,9.5,22,0.0 +19459,6,25,38,0.0 +19459,65,21.05,22,0.0 +19459,1,18,50,0.0 +19459,2,19,44,0.0 +19459,57,19.5,22,0.0 +19459,40,18.4,35,0.0 +19459,56,38,34,0.0 +19459,71,21.5,43,0.0 +19459,21,10,44,0.0 +19459,49,20,22,0.0 +19459,13,6,1,0.0 +19460,13,6,41,0.0 +19460,75,7.75,8,0.0 +19460,55,24,15,0.0 +19460,24,4.5,37,0.0 +19460,10,31,22,0.0 +19460,29,123.79,42,0.0 +19460,51,53,11,0.0 +19460,15,15.5,50,0.0 +19460,34,14,34,0.0 +19460,28,45.6,12,0.0 +19460,30,25.89,20,0.0 +19460,18,62.5,50,0.0 +19460,71,21.5,45,0.0 +19460,49,20,7,0.0 +19460,60,34,11,0.0 +19460,36,19,27,0.0 +19460,38,263.5,41,0.0 +19460,8,40,11,0.0 +19461,58,13.25,15,0.0 +19461,73,15,22,0.0 +19461,14,23.25,18,0.0 +19461,63,43.9,15,0.0 +19461,35,18,9,0.0 +19461,26,31.23,15,0.0 +19461,54,7.45,38,0.0 +19461,69,36,29,0.0 +19461,70,15,43,0.0 +19461,53,32.8,9,0.0 +19461,11,21,31,0.0 +19461,76,18,48,0.0 +19461,55,24,14,0.0 +19461,77,13,26,0.0 +19461,41,9.65,20,0.0 +19461,25,14,50,0.0 +19461,32,32,6,0.0 +19461,4,22,7,0.0 +19461,48,12.75,26,0.0 +19461,40,18.4,18,0.0 +19461,57,19.5,49,0.0 +19461,28,45.6,25,0.0 +19461,36,19,20,0.0 +19461,6,25,47,0.0 +19461,23,9,28,0.0 +19461,10,31,22,0.0 +19461,42,14,17,0.0 +19461,16,17.45,45,0.0 +19461,31,12.5,22,0.0 +19461,75,7.75,9,0.0 +19461,51,53,31,0.0 +19461,24,4.5,36,0.0 +19461,22,21,13,0.0 +19461,61,28.5,13,0.0 +19461,72,34.8,6,0.0 +19461,12,38,40,0.0 +19461,5,21.35,5,0.0 +19461,44,19.45,4,0.0 +19461,52,7,41,0.0 +19461,64,33.25,24,0.0 +19461,34,14,36,0.0 +19461,15,15.5,21,0.0 +19461,9,97,33,0.0 +19461,13,6,50,0.0 +19461,19,9.2,47,0.0 +19461,3,10,2,0.0 +19461,43,46,17,0.0 +19461,66,17,5,0.0 +19461,8,40,37,0.0 +19461,46,12,35,0.0 +19461,56,38,39,0.0 +19461,30,25.89,3,0.0 +19461,37,26,15,0.0 +19461,49,20,7,0.0 +19461,1,18,12,0.0 +19461,33,2.5,30,0.0 +19461,62,49.3,17,0.0 +19461,59,55,2,0.0 +19461,2,19,48,0.0 +19461,47,9.5,6,0.0 +19461,7,30,37,0.0 +19461,20,81,13,0.0 +19461,74,10,50,0.0 +19461,18,62.5,32,0.0 +19461,38,263.5,44,0.0 +19461,45,9.5,25,0.0 +19461,21,10,48,0.0 +19461,60,34,16,0.0 +19461,29,123.79,47,0.0 +19461,17,39,18,0.0 +19461,68,12.5,16,0.0 +19461,27,43.9,43,0.0 +19461,67,14,21,0.0 +19461,71,21.5,25,0.0 +19461,39,18,33,0.0 +19461,50,16.25,21,0.0 +19462,7,30,18,0.0 +19462,48,12.75,18,0.0 +19462,62,49.3,29,0.0 +19462,19,9.2,10,0.0 +19462,3,10,22,0.0 +19462,25,14,6,0.0 +19462,42,14,5,0.0 +19462,39,18,9,0.0 +19462,34,14,26,0.0 +19462,32,32,19,0.0 +19462,1,18,36,0.0 +19462,64,33.25,46,0.0 +19462,56,38,24,0.0 +19462,53,32.8,29,0.0 +19462,51,53,8,0.0 +19462,38,263.5,7,0.0 +19462,60,34,37,0.0 +19462,66,17,42,0.0 +19462,31,12.5,16,0.0 +19462,40,18.4,6,0.0 +19462,76,18,6,0.0 +19462,73,15,38,0.0 +19462,8,40,22,0.0 +19462,63,43.9,5,0.0 +19462,44,19.45,49,0.0 +19462,57,19.5,23,0.0 +19462,37,26,24,0.0 +19462,14,23.25,16,0.0 +19462,10,31,16,0.0 +19462,55,24,44,0.0 +19462,33,2.5,14,0.0 +19462,45,9.5,11,0.0 +19462,35,18,25,0.0 +19462,11,21,39,0.0 +19462,61,28.5,16,0.0 +19462,74,10,50,0.0 +19462,18,62.5,36,0.0 +19462,49,20,36,0.0 +19462,5,21.35,8,0.0 +19462,58,13.25,18,0.0 +19462,26,31.23,20,0.0 +19462,46,12,5,0.0 +19462,54,7.45,45,0.0 +19462,36,19,23,0.0 +19462,70,15,27,0.0 +19462,28,45.6,23,0.0 +19462,27,43.9,34,0.0 +19462,75,7.75,48,0.0 +19462,71,21.5,33,0.0 +19462,50,16.25,35,0.0 +19462,30,25.89,37,0.0 +19462,24,4.5,49,0.0 +19462,2,19,19,0.0 +19462,52,7,10,0.0 +19462,65,21.05,1,0.0 +19462,41,9.65,16,0.0 +19462,23,9,34,0.0 +19462,6,25,10,0.0 +19463,52,7,22,0.0 +19463,8,40,47,0.0 +19463,43,46,39,0.0 +19463,56,38,16,0.0 +19463,64,33.25,41,0.0 +19463,4,22,36,0.0 +19463,16,17.45,14,0.0 +19463,22,21,13,0.0 +19463,71,21.5,40,0.0 +19463,3,10,43,0.0 +19463,57,19.5,19,0.0 +19463,34,14,2,0.0 +19463,13,6,36,0.0 +19463,53,32.8,6,0.0 +19463,17,39,21,0.0 +19463,54,7.45,29,0.0 +19463,61,28.5,20,0.0 +19463,15,15.5,45,0.0 +19463,32,32,42,0.0 +19463,9,97,3,0.0 +19463,48,12.75,20,0.0 +19463,63,43.9,28,0.0 +19463,6,25,22,0.0 +19463,10,31,28,0.0 +19463,44,19.45,3,0.0 +19463,62,49.3,30,0.0 +19463,55,24,33,0.0 +19463,36,19,17,0.0 +19463,39,18,46,0.0 +19463,50,16.25,39,0.0 +19463,69,36,18,0.0 +19463,33,2.5,33,0.0 +19463,40,18.4,10,0.0 +19463,5,21.35,44,0.0 +19463,67,14,32,0.0 +19463,70,15,32,0.0 +19463,2,19,39,0.0 +19463,59,55,40,0.0 +19463,21,10,18,0.0 +19463,35,18,28,0.0 +19463,77,13,50,0.0 +19463,58,13.25,11,0.0 +19463,45,9.5,24,0.0 +19463,66,17,15,0.0 +19463,60,34,27,0.0 +19463,31,12.5,23,0.0 +19463,18,62.5,37,0.0 +19463,29,123.79,37,0.0 +19463,14,23.25,44,0.0 +19463,38,263.5,37,0.0 +19463,37,26,2,0.0 +19463,19,9.2,18,0.0 +19463,42,14,45,0.0 +19463,7,30,32,0.0 +19463,11,21,13,0.0 +19463,46,12,27,0.0 +19463,27,43.9,1,0.0 +19463,26,31.23,33,0.0 +19463,51,53,8,0.0 +19463,68,12.5,39,0.0 +19463,75,7.75,29,0.0 +19463,1,18,17,0.0 +19463,76,18,48,0.0 +19463,23,9,13,0.0 +19463,30,25.89,5,0.0 +19463,47,9.5,36,0.0 +19463,65,21.05,23,0.0 +19463,74,10,18,0.0 +19463,25,14,29,0.0 +19463,41,9.65,16,0.0 +19463,12,38,31,0.0 +19463,28,45.6,38,0.0 +19463,24,4.5,38,0.0 +19463,20,81,8,0.0 +19463,49,20,30,0.0 +19463,73,15,44,0.0 +19464,36,19,37,0.0 +19464,13,6,13,0.0 +19464,70,15,21,0.0 +19464,45,9.5,50,0.0 +19464,64,33.25,10,0.0 +19464,21,10,28,0.0 +19464,37,26,40,0.0 +19464,56,38,4,0.0 +19464,3,10,1,0.0 +19464,51,53,43,0.0 +19464,68,12.5,5,0.0 +19464,65,21.05,18,0.0 +19464,48,12.75,18,0.0 +19464,72,34.8,18,0.0 +19464,9,97,8,0.0 +19464,16,17.45,40,0.0 +19464,73,15,41,0.0 +19464,20,81,43,0.0 +19464,18,62.5,45,0.0 +19464,24,4.5,2,0.0 +19464,38,263.5,43,0.0 +19464,46,12,28,0.0 +19464,4,22,12,0.0 +19464,8,40,23,0.0 +19464,5,21.35,19,0.0 +19464,2,19,19,0.0 +19464,6,25,19,0.0 +19464,75,7.75,4,0.0 +19464,44,19.45,9,0.0 +19464,50,16.25,8,0.0 +19464,7,30,20,0.0 +19464,43,46,8,0.0 +19464,42,14,4,0.0 +19464,52,7,8,0.0 +19464,26,31.23,8,0.0 +19464,62,49.3,12,0.0 +19464,11,21,9,0.0 +19464,28,45.6,6,0.0 +19464,10,31,4,0.0 +19464,74,10,28,0.0 +19464,12,38,20,0.0 +19464,1,18,18,0.0 +19464,69,36,9,0.0 +19464,63,43.9,11,0.0 +19464,23,9,10,0.0 +19464,57,19.5,21,0.0 +19464,58,13.25,36,0.0 +19464,59,55,42,0.0 +19464,71,21.5,37,0.0 +19464,29,123.79,34,0.0 +19464,33,2.5,11,0.0 +19464,17,39,25,0.0 +19464,31,12.5,29,0.0 +19464,34,14,49,0.0 +19464,19,9.2,46,0.0 +19464,25,14,44,0.0 +19464,67,14,46,0.0 +19464,22,21,25,0.0 +19464,47,9.5,46,0.0 +19464,66,17,18,0.0 +19464,60,34,7,0.0 +19464,39,18,33,0.0 +19464,41,9.65,34,0.0 +19464,49,20,28,0.0 +19464,27,43.9,43,0.0 +19464,15,15.5,14,0.0 +19464,55,24,3,0.0 +19464,53,32.8,9,0.0 +19464,14,23.25,46,0.0 +19464,61,28.5,30,0.0 +19464,54,7.45,6,0.0 +19464,77,13,47,0.0 +19464,76,18,38,0.0 +19464,30,25.89,36,0.0 +19465,51,53,21,0.0 +19465,70,15,14,0.0 +19465,58,13.25,30,0.0 +19465,33,2.5,49,0.0 +19465,50,16.25,17,0.0 +19465,17,39,25,0.0 +19465,42,14,20,0.0 +19465,14,23.25,20,0.0 +19465,47,9.5,21,0.0 +19465,10,31,29,0.0 +19465,38,263.5,27,0.0 +19465,52,7,10,0.0 +19465,30,25.89,34,0.0 +19465,21,10,47,0.0 +19465,69,36,50,0.0 +19465,32,32,47,0.0 +19465,45,9.5,2,0.0 +19465,56,38,5,0.0 +19465,54,7.45,49,0.0 +19465,55,24,32,0.0 +19465,66,17,11,0.0 +19465,1,18,23,0.0 +19465,75,7.75,45,0.0 +19465,7,30,43,0.0 +19465,60,34,15,0.0 +19465,34,14,13,0.0 +19465,67,14,49,0.0 +19465,48,12.75,15,0.0 +19465,37,26,47,0.0 +19465,23,9,15,0.0 +19465,63,43.9,28,0.0 +19465,43,46,33,0.0 +19465,77,13,48,0.0 +19465,64,33.25,28,0.0 +19465,36,19,41,0.0 +19465,2,19,28,0.0 +19465,49,20,21,0.0 +19465,61,28.5,35,0.0 +19465,19,9.2,9,0.0 +19465,24,4.5,6,0.0 +19465,18,62.5,5,0.0 +19465,62,49.3,24,0.0 +19465,11,21,15,0.0 +19465,28,45.6,41,0.0 +19465,57,19.5,18,0.0 +19465,31,12.5,2,0.0 +19465,13,6,5,0.0 +19465,65,21.05,7,0.0 +19465,40,18.4,19,0.0 +19465,71,21.5,19,0.0 +19465,73,15,18,0.0 +19465,76,18,5,0.0 +19465,9,97,5,0.0 +19465,44,19.45,18,0.0 +19465,6,25,5,0.0 +19465,29,123.79,42,0.0 +19465,12,38,4,0.0 +19465,25,14,21,0.0 +19466,63,43.9,33,0.0 +19466,39,18,1,0.0 +19466,58,13.25,27,0.0 +19466,20,81,40,0.0 +19466,28,45.6,6,0.0 +19466,33,2.5,46,0.0 +19466,57,19.5,50,0.0 +19466,31,12.5,49,0.0 +19466,59,55,45,0.0 +19467,57,19.5,18,0.0 +19467,3,10,41,0.0 +19467,7,30,9,0.0 +19467,31,12.5,45,0.0 +19467,38,263.5,34,0.0 +19467,10,31,25,0.0 +19467,35,18,33,0.0 +19467,40,18.4,13,0.0 +19467,68,12.5,9,0.0 +19467,29,123.79,40,0.0 +19467,70,15,10,0.0 +19467,22,21,27,0.0 +19467,23,9,41,0.0 +19467,59,55,49,0.0 +19467,24,4.5,38,0.0 +19467,39,18,21,0.0 +19467,74,10,33,0.0 +19467,11,21,49,0.0 +19467,25,14,27,0.0 +19467,71,21.5,42,0.0 +19467,12,38,48,0.0 +19467,77,13,15,0.0 +19467,64,33.25,21,0.0 +19467,21,10,47,0.0 +19467,54,7.45,34,0.0 +19467,56,38,14,0.0 +19467,47,9.5,41,0.0 +19467,55,24,49,0.0 +19467,58,13.25,12,0.0 +19467,73,15,49,0.0 +19467,52,7,1,0.0 +19467,42,14,5,0.0 +19467,16,17.45,8,0.0 +19467,9,97,16,0.0 +19467,34,14,46,0.0 +19467,30,25.89,12,0.0 +19467,53,32.8,25,0.0 +19467,76,18,48,0.0 +19467,14,23.25,18,0.0 +19467,13,6,10,0.0 +19467,61,28.5,20,0.0 +19467,46,12,32,0.0 +19467,28,45.6,13,0.0 +19467,75,7.75,35,0.0 +19467,62,49.3,47,0.0 +19468,20,81,27,0.0 +19468,30,25.89,14,0.0 +19468,52,7,43,0.0 +19468,15,15.5,49,0.0 +19468,39,18,6,0.0 +19468,53,32.8,19,0.0 +19468,4,22,42,0.0 +19468,22,21,39,0.0 +19468,75,7.75,12,0.0 +19468,19,9.2,20,0.0 +19468,13,6,28,0.0 +19468,23,9,18,0.0 +19468,27,43.9,1,0.0 +19468,37,26,27,0.0 +19468,68,12.5,16,0.0 +19468,31,12.5,27,0.0 +19468,43,46,6,0.0 +19468,72,34.8,40,0.0 +19468,49,20,18,0.0 +19468,36,19,41,0.0 +19468,6,25,46,0.0 +19468,59,55,11,0.0 +19468,58,13.25,25,0.0 +19468,18,62.5,11,0.0 +19468,40,18.4,44,0.0 +19468,56,38,31,0.0 +19468,69,36,13,0.0 +19468,42,14,11,0.0 +19468,25,14,31,0.0 +19468,50,16.25,43,0.0 +19468,17,39,5,0.0 +19468,61,28.5,25,0.0 +19468,51,53,27,0.0 +19468,66,17,33,0.0 +19468,33,2.5,43,0.0 +19468,45,9.5,18,0.0 +19468,74,10,45,0.0 +19468,63,43.9,17,0.0 +19468,8,40,48,0.0 +19468,65,21.05,15,0.0 +19468,47,9.5,17,0.0 +19468,60,34,21,0.0 +19468,48,12.75,3,0.0 +19468,55,24,38,0.0 +19468,38,263.5,45,0.0 +19468,76,18,39,0.0 +19468,41,9.65,42,0.0 +19468,14,23.25,34,0.0 +19468,35,18,7,0.0 +19468,3,10,34,0.0 +19468,34,14,41,0.0 +19468,70,15,32,0.0 +19468,29,123.79,25,0.0 +19468,21,10,19,0.0 +19469,56,38,7,0.0 +19469,66,17,48,0.0 +19469,76,18,7,0.0 +19469,55,24,44,0.0 +19469,20,81,42,0.0 +19469,25,14,36,0.0 +19469,1,18,10,0.0 +19469,28,45.6,26,0.0 +19469,19,9.2,28,0.0 +19469,64,33.25,28,0.0 +19469,47,9.5,20,0.0 +19469,2,19,24,0.0 +19469,63,43.9,10,0.0 +19469,58,13.25,16,0.0 +19469,10,31,32,0.0 +19469,12,38,15,0.0 +19469,13,6,50,0.0 +19469,27,43.9,18,0.0 +19469,38,263.5,26,0.0 +19469,9,97,33,0.0 +19469,35,18,4,0.0 +19469,57,19.5,16,0.0 +19469,30,25.89,7,0.0 +19469,50,16.25,4,0.0 +19469,53,32.8,35,0.0 +19469,42,14,4,0.0 +19469,48,12.75,38,0.0 +19469,71,21.5,47,0.0 +19469,72,34.8,9,0.0 +19469,49,20,11,0.0 +19469,74,10,40,0.0 +19469,70,15,17,0.0 +19469,69,36,31,0.0 +19469,24,4.5,18,0.0 +19469,21,10,32,0.0 +19469,73,15,15,0.0 +19469,29,123.79,43,0.0 +19469,75,7.75,9,0.0 +19469,65,21.05,32,0.0 +19469,67,14,14,0.0 +19469,60,34,41,0.0 +19469,16,17.45,19,0.0 +19469,31,12.5,32,0.0 +19469,22,21,22,0.0 +19469,26,31.23,8,0.0 +19469,36,19,50,0.0 +19469,61,28.5,39,0.0 +19469,17,39,41,0.0 +19469,59,55,8,0.0 +19469,5,21.35,11,0.0 +19469,11,21,20,0.0 +19469,18,62.5,38,0.0 +19469,46,12,31,0.0 +19469,77,13,36,0.0 +19469,6,25,48,0.0 +19469,23,9,10,0.0 +19469,52,7,1,0.0 +19469,7,30,30,0.0 +19469,51,53,48,0.0 +19470,61,28.5,47,0.0 +19470,31,12.5,14,0.0 +19470,8,40,3,0.0 +19470,26,31.23,47,0.0 +19470,2,19,27,0.0 +19470,30,25.89,12,0.0 +19470,60,34,37,0.0 +19470,32,32,10,0.0 +19470,34,14,26,0.0 +19470,37,26,29,0.0 +19470,43,46,2,0.0 +19470,77,13,28,0.0 +19470,18,62.5,39,0.0 +19470,53,32.8,39,0.0 +19470,72,34.8,43,0.0 +19470,44,19.45,39,0.0 +19470,33,2.5,25,0.0 +19470,52,7,50,0.0 +19470,50,16.25,36,0.0 +19470,66,17,50,0.0 +19470,21,10,38,0.0 +19470,45,9.5,43,0.0 +19470,13,6,15,0.0 +19470,70,15,25,0.0 +19470,20,81,13,0.0 +19470,59,55,36,0.0 +19470,22,21,12,0.0 +19470,56,38,30,0.0 +19470,7,30,5,0.0 +19470,41,9.65,20,0.0 +19470,47,9.5,6,0.0 +19470,63,43.9,13,0.0 +19470,40,18.4,37,0.0 +19470,28,45.6,7,0.0 +19470,67,14,46,0.0 +19470,48,12.75,24,0.0 +19470,51,53,29,0.0 +19470,74,10,29,0.0 +19470,12,38,42,0.0 +19470,16,17.45,34,0.0 +19470,76,18,1,0.0 +19470,69,36,32,0.0 +19470,65,21.05,35,0.0 +19470,6,25,37,0.0 +19470,4,22,41,0.0 +19470,9,97,15,0.0 +19470,55,24,37,0.0 +19470,23,9,17,0.0 +19471,17,39,24,0.0 +19471,27,43.9,38,0.0 +19471,74,10,32,0.0 +19471,46,12,26,0.0 +19471,33,2.5,45,0.0 +19471,38,263.5,8,0.0 +19471,49,20,3,0.0 +19471,69,36,3,0.0 +19471,18,62.5,34,0.0 +19471,59,55,23,0.0 +19471,73,15,47,0.0 +19471,72,34.8,3,0.0 +19471,28,45.6,31,0.0 +19471,51,53,38,0.0 +19471,52,7,49,0.0 +19471,2,19,41,0.0 +19471,15,15.5,42,0.0 +19471,61,28.5,34,0.0 +19471,3,10,30,0.0 +19471,31,12.5,8,0.0 +19471,32,32,32,0.0 +19471,62,49.3,48,0.0 +19471,37,26,8,0.0 +19471,64,33.25,49,0.0 +19471,19,9.2,9,0.0 +19471,36,19,48,0.0 +19471,75,7.75,8,0.0 +19471,68,12.5,43,0.0 +19471,8,40,5,0.0 +19471,30,25.89,14,0.0 +19471,50,16.25,9,0.0 +19471,22,21,44,0.0 +19471,29,123.79,14,0.0 +19471,14,23.25,12,0.0 +19471,20,81,15,0.0 +19471,56,38,1,0.0 +19471,53,32.8,28,0.0 +19471,1,18,16,0.0 +19471,77,13,37,0.0 +19471,34,14,30,0.0 +19471,54,7.45,21,0.0 +19471,40,18.4,35,0.0 +19471,48,12.75,20,0.0 +19471,43,46,28,0.0 +19471,44,19.45,1,0.0 +19471,66,17,15,0.0 +19471,71,21.5,41,0.0 +19471,6,25,50,0.0 +19472,21,10,21,0.0 +19472,22,21,10,0.0 +19472,7,30,19,0.0 +19472,57,19.5,26,0.0 +19472,52,7,19,0.0 +19472,14,23.25,34,0.0 +19472,20,81,18,0.0 +19472,41,9.65,2,0.0 +19472,60,34,21,0.0 +19472,76,18,18,0.0 +19472,67,14,44,0.0 +19472,33,2.5,25,0.0 +19472,59,55,49,0.0 +19472,45,9.5,9,0.0 +19472,13,6,26,0.0 +19472,69,36,5,0.0 +19472,68,12.5,36,0.0 +19472,42,14,49,0.0 +19472,9,97,32,0.0 +19472,73,15,32,0.0 +19472,40,18.4,12,0.0 +19472,16,17.45,7,0.0 +19472,74,10,28,0.0 +19472,54,7.45,37,0.0 +19472,5,21.35,5,0.0 +19472,30,25.89,5,0.0 +19472,3,10,9,0.0 +19472,31,12.5,22,0.0 +19472,26,31.23,38,0.0 +19472,44,19.45,31,0.0 +19472,19,9.2,33,0.0 +19472,62,49.3,24,0.0 +19472,61,28.5,28,0.0 +19473,58,13.25,26,0.0 +19473,14,23.25,48,0.0 +19473,8,40,49,0.0 +19473,70,15,8,0.0 +19473,3,10,46,0.0 +19473,30,25.89,11,0.0 +19473,29,123.79,30,0.0 +19473,33,2.5,20,0.0 +19473,45,9.5,31,0.0 +19473,38,263.5,22,0.0 +19473,19,9.2,11,0.0 +19473,69,36,36,0.0 +19473,68,12.5,35,0.0 +19473,44,19.45,33,0.0 +19473,60,34,46,0.0 +19473,67,14,47,0.0 +19473,59,55,44,0.0 +19473,73,15,29,0.0 +19473,36,19,49,0.0 +19473,64,33.25,24,0.0 +19473,37,26,25,0.0 +19473,22,21,45,0.0 +19473,57,19.5,15,0.0 +19473,6,25,10,0.0 +19473,25,14,50,0.0 +19473,51,53,13,0.0 +19473,12,38,28,0.0 +19473,53,32.8,48,0.0 +19473,48,12.75,7,0.0 +19473,34,14,34,0.0 +19474,36,19,2,0.0 +19474,4,22,18,0.0 +19474,72,34.8,39,0.0 +19474,54,7.45,9,0.0 +19474,7,30,26,0.0 +19474,3,10,18,0.0 +19474,10,31,11,0.0 +19474,61,28.5,40,0.0 +19474,47,9.5,14,0.0 +19474,51,53,7,0.0 +19474,28,45.6,49,0.0 +19474,43,46,5,0.0 +19474,64,33.25,22,0.0 +19474,8,40,3,0.0 +19474,66,17,33,0.0 +19474,41,9.65,14,0.0 +19474,44,19.45,11,0.0 +19474,38,263.5,7,0.0 +19474,9,97,28,0.0 +19474,21,10,24,0.0 +19474,65,21.05,47,0.0 +19474,30,25.89,43,0.0 +19474,48,12.75,13,0.0 +19474,52,7,6,0.0 +19474,69,36,1,0.0 +19474,75,7.75,32,0.0 +19474,13,6,20,0.0 +19474,46,12,42,0.0 +19474,33,2.5,8,0.0 +19475,54,7.45,35,0.0 +19475,28,45.6,50,0.0 +19475,73,15,36,0.0 +19475,6,25,19,0.0 +19475,63,43.9,4,0.0 +19475,59,55,10,0.0 +19475,76,18,50,0.0 +19475,37,26,21,0.0 +19475,32,32,28,0.0 +19475,15,15.5,19,0.0 +19475,22,21,37,0.0 +19475,61,28.5,40,0.0 +19475,44,19.45,29,0.0 +19475,70,15,31,0.0 +19475,49,20,7,0.0 +19475,66,17,17,0.0 +19475,16,17.45,36,0.0 +19475,46,12,23,0.0 +19475,43,46,2,0.0 +19475,58,13.25,25,0.0 +19475,13,6,13,0.0 +19475,62,49.3,5,0.0 +19475,24,4.5,30,0.0 +19475,31,12.5,3,0.0 +19475,65,21.05,18,0.0 +19475,69,36,31,0.0 +19475,77,13,28,0.0 +19475,25,14,46,0.0 +19475,2,19,9,0.0 +19475,47,9.5,39,0.0 +19475,11,21,37,0.0 +19475,68,12.5,8,0.0 +19475,72,34.8,26,0.0 +19475,57,19.5,3,0.0 +19475,26,31.23,24,0.0 +19475,29,123.79,8,0.0 +19475,67,14,32,0.0 +19475,3,10,34,0.0 +19475,36,19,13,0.0 +19475,56,38,12,0.0 +19475,4,22,12,0.0 +19475,19,9.2,11,0.0 +19475,45,9.5,21,0.0 +19475,9,97,36,0.0 +19475,75,7.75,24,0.0 +19475,39,18,49,0.0 +19475,23,9,14,0.0 +19475,30,25.89,17,0.0 +19475,53,32.8,28,0.0 +19475,35,18,34,0.0 +19476,69,36,17,0.0 +19477,8,40,47,0.0 +19477,7,30,10,0.0 +19477,32,32,43,0.0 +19477,65,21.05,36,0.0 +19477,43,46,8,0.0 +19477,16,17.45,24,0.0 +19477,47,9.5,26,0.0 +19477,38,263.5,28,0.0 +19477,17,39,2,0.0 +19477,63,43.9,1,0.0 +19477,3,10,18,0.0 +19477,55,24,41,0.0 +19477,68,12.5,26,0.0 +19477,30,25.89,4,0.0 +19477,44,19.45,18,0.0 +19477,40,18.4,18,0.0 +19477,29,123.79,39,0.0 +19477,27,43.9,21,0.0 +19477,20,81,17,0.0 +19477,33,2.5,24,0.0 +19477,21,10,44,0.0 +19477,12,38,3,0.0 +19477,50,16.25,3,0.0 +19477,66,17,28,0.0 +19477,54,7.45,6,0.0 +19477,15,15.5,10,0.0 +19477,48,12.75,44,0.0 +19477,45,9.5,41,0.0 +19477,69,36,43,0.0 +19477,23,9,8,0.0 +19477,60,34,28,0.0 +19477,6,25,36,0.0 +19477,31,12.5,45,0.0 +19477,52,7,12,0.0 +19477,39,18,20,0.0 +19477,35,18,27,0.0 +19477,64,33.25,33,0.0 +19477,10,31,47,0.0 +19477,67,14,49,0.0 +19477,14,23.25,2,0.0 +19477,28,45.6,38,0.0 +19477,11,21,42,0.0 +19477,71,21.5,2,0.0 +19477,34,14,31,0.0 +19477,77,13,12,0.0 +19477,56,38,10,0.0 +19477,49,20,3,0.0 +19477,5,21.35,29,0.0 +19478,45,9.5,33,0.0 +19478,33,2.5,37,0.0 +19478,59,55,50,0.0 +19478,60,34,18,0.0 +19478,57,19.5,12,0.0 +19478,38,263.5,12,0.0 +19478,10,31,2,0.0 +19478,77,13,10,0.0 +19478,2,19,25,0.0 +19478,67,14,15,0.0 +19479,39,18,13,0.0 +19479,58,13.25,3,0.0 +19479,63,43.9,22,0.0 +19479,10,31,40,0.0 +19479,2,19,13,0.0 +19479,77,13,43,0.0 +19479,61,28.5,3,0.0 +19479,33,2.5,4,0.0 +19479,36,19,25,0.0 +19479,8,40,20,0.0 +19479,26,31.23,21,0.0 +19479,74,10,34,0.0 +19479,44,19.45,45,0.0 +19479,73,15,6,0.0 +19479,35,18,45,0.0 +19479,9,97,27,0.0 +19479,5,21.35,48,0.0 +19479,59,55,25,0.0 +19479,43,46,14,0.0 +19479,62,49.3,43,0.0 +19479,71,21.5,7,0.0 +19479,14,23.25,34,0.0 +19479,32,32,27,0.0 +19479,19,9.2,29,0.0 +19479,42,14,15,0.0 +19479,72,34.8,40,0.0 +19479,46,12,20,0.0 +19479,28,45.6,39,0.0 +19479,75,7.75,38,0.0 +19479,66,17,7,0.0 +19479,13,6,20,0.0 +19479,50,16.25,14,0.0 +19479,49,20,2,0.0 +19479,67,14,42,0.0 +19479,27,43.9,19,0.0 +19479,51,53,17,0.0 +19480,66,17,33,0.0 +19481,67,14,24,0.0 +19481,61,28.5,23,0.0 +19481,7,30,40,0.0 +19481,40,18.4,25,0.0 +19481,66,17,25,0.0 +19481,23,9,27,0.0 +19481,1,18,15,0.0 +19481,19,9.2,20,0.0 +19481,21,10,46,0.0 +19481,74,10,41,0.0 +19481,14,23.25,41,0.0 +19481,58,13.25,31,0.0 +19481,69,36,39,0.0 +19481,45,9.5,26,0.0 +19481,36,19,16,0.0 +19481,55,24,33,0.0 +19481,13,6,27,0.0 +19481,49,20,20,0.0 +19481,64,33.25,19,0.0 +19481,68,12.5,14,0.0 +19481,38,263.5,6,0.0 +19481,27,43.9,43,0.0 +19481,12,38,9,0.0 +19481,17,39,45,0.0 +19481,29,123.79,8,0.0 +19481,54,7.45,2,0.0 +19481,57,19.5,3,0.0 +19481,50,16.25,12,0.0 +19481,4,22,50,0.0 +19481,2,19,33,0.0 +19481,30,25.89,13,0.0 +19481,62,49.3,42,0.0 +19481,10,31,30,0.0 +19481,48,12.75,48,0.0 +19481,42,14,24,0.0 +19481,33,2.5,18,0.0 +19481,60,34,44,0.0 +19481,20,81,29,0.0 +19481,63,43.9,17,0.0 +19481,35,18,1,0.0 +19481,46,12,20,0.0 +19481,34,14,11,0.0 +19481,9,97,3,0.0 +19481,70,15,24,0.0 +19481,6,25,1,0.0 +19481,31,12.5,26,0.0 +19481,25,14,42,0.0 +19481,75,7.75,18,0.0 +19481,11,21,42,0.0 +19481,51,53,7,0.0 +19481,22,21,12,0.0 +19481,76,18,44,0.0 +19481,18,62.5,31,0.0 +19481,52,7,3,0.0 +19481,32,32,20,0.0 +19481,3,10,41,0.0 +19481,41,9.65,29,0.0 +19481,43,46,43,0.0 +19481,73,15,50,0.0 +19481,59,55,49,0.0 +19481,53,32.8,17,0.0 +19481,15,15.5,47,0.0 +19481,39,18,28,0.0 +19481,24,4.5,26,0.0 +19481,56,38,5,0.0 +19481,28,45.6,1,0.0 +19481,16,17.45,44,0.0 +19481,44,19.45,35,0.0 +19481,72,34.8,48,0.0 +19481,65,21.05,45,0.0 +19481,77,13,27,0.0 +19481,37,26,11,0.0 +19481,26,31.23,41,0.0 +19481,71,21.5,4,0.0 +19481,5,21.35,17,0.0 +19481,8,40,24,0.0 +19481,47,9.5,22,0.0 +19482,51,53,50,0.0 +19482,28,45.6,1,0.0 +19482,27,43.9,1,0.0 +19482,6,25,31,0.0 +19482,50,16.25,4,0.0 +19482,16,17.45,4,0.0 +19482,7,30,27,0.0 +19482,29,123.79,43,0.0 +19482,35,18,15,0.0 +19482,64,33.25,48,0.0 +19482,76,18,17,0.0 +19482,59,55,24,0.0 +19482,39,18,19,0.0 +19482,4,22,5,0.0 +19482,62,49.3,47,0.0 +19482,20,81,7,0.0 +19482,17,39,17,0.0 +19482,54,7.45,21,0.0 +19482,77,13,5,0.0 +19482,30,25.89,4,0.0 +19482,48,12.75,2,0.0 +19483,76,18,48,0.0 +19483,66,17,24,0.0 +19483,13,6,11,0.0 +19483,65,21.05,4,0.0 +19483,55,24,36,0.0 +19483,22,21,41,0.0 +19483,12,38,9,0.0 +19483,23,9,35,0.0 +19483,25,14,25,0.0 +19483,77,13,12,0.0 +19483,34,14,25,0.0 +19483,69,36,45,0.0 +19483,43,46,30,0.0 +19483,75,7.75,43,0.0 +19483,9,97,46,0.0 +19483,37,26,38,0.0 +19483,61,28.5,13,0.0 +19483,59,55,7,0.0 +19483,28,45.6,9,0.0 +19484,62,49.3,42,0.0 +19484,13,6,6,0.0 +19484,59,55,7,0.0 +19484,68,12.5,17,0.0 +19484,34,14,26,0.0 +19484,15,15.5,42,0.0 +19484,29,123.79,2,0.0 +19484,65,21.05,28,0.0 +19484,43,46,42,0.0 +19484,47,9.5,32,0.0 +19484,55,24,29,0.0 +19484,44,19.45,49,0.0 +19484,2,19,18,0.0 +19484,58,13.25,48,0.0 +19484,61,28.5,31,0.0 +19484,74,10,12,0.0 +19484,57,19.5,4,0.0 +19484,31,12.5,32,0.0 +19484,67,14,5,0.0 +19484,32,32,22,0.0 +19484,63,43.9,21,0.0 +19484,10,31,17,0.0 +19484,1,18,26,0.0 +19484,42,14,32,0.0 +19484,76,18,50,0.0 +19484,8,40,38,0.0 +19484,56,38,41,0.0 +19484,24,4.5,33,0.0 +19484,23,9,39,0.0 +19484,28,45.6,18,0.0 +19484,14,23.25,47,0.0 +19484,25,14,29,0.0 +19484,36,19,14,0.0 +19484,39,18,44,0.0 +19484,17,39,25,0.0 +19484,40,18.4,12,0.0 +19484,21,10,12,0.0 +19484,77,13,2,0.0 +19484,69,36,14,0.0 +19485,64,33.25,47,0.0 +19485,61,28.5,10,0.0 +19485,66,17,41,0.0 +19485,51,53,14,0.0 +19485,10,31,24,0.0 +19485,63,43.9,4,0.0 +19485,49,20,5,0.0 +19485,19,9.2,42,0.0 +19485,37,26,19,0.0 +19485,44,19.45,21,0.0 +19485,17,39,42,0.0 +19485,32,32,39,0.0 +19485,1,18,26,0.0 +19485,12,38,34,0.0 +19485,76,18,3,0.0 +19486,59,55,33,0.0 +19486,26,31.23,17,0.0 +19486,16,17.45,8,0.0 +19486,18,62.5,43,0.0 +19486,27,43.9,46,0.0 +19486,48,12.75,19,0.0 +19486,10,31,30,0.0 +19486,66,17,26,0.0 +19486,23,9,7,0.0 +19486,54,7.45,32,0.0 +19486,28,45.6,4,0.0 +19486,46,12,4,0.0 +19486,7,30,34,0.0 +19486,68,12.5,36,0.0 +19486,6,25,20,0.0 +19486,56,38,8,0.0 +19486,57,19.5,46,0.0 +19486,71,21.5,38,0.0 +19486,8,40,34,0.0 +19486,24,4.5,40,0.0 +19486,76,18,34,0.0 +19486,67,14,46,0.0 +19486,22,21,14,0.0 +19486,1,18,39,0.0 +19486,43,46,50,0.0 +19486,47,9.5,46,0.0 +19486,74,10,7,0.0 +19486,38,263.5,18,0.0 +19486,39,18,18,0.0 +19486,73,15,20,0.0 +19486,70,15,42,0.0 +19486,19,9.2,28,0.0 +19486,13,6,46,0.0 +19486,12,38,26,0.0 +19486,60,34,31,0.0 +19486,31,12.5,13,0.0 +19486,50,16.25,27,0.0 +19486,40,18.4,9,0.0 +19486,20,81,4,0.0 +19486,65,21.05,27,0.0 +19486,49,20,23,0.0 +19486,9,97,7,0.0 +19486,34,14,29,0.0 +19486,35,18,24,0.0 +19486,17,39,3,0.0 +19486,72,34.8,4,0.0 +19486,53,32.8,4,0.0 +19486,63,43.9,24,0.0 +19486,52,7,14,0.0 +19486,42,14,9,0.0 +19486,2,19,27,0.0 +19486,37,26,24,0.0 +19486,61,28.5,4,0.0 +19486,21,10,12,0.0 +19486,62,49.3,41,0.0 +19486,3,10,20,0.0 +19486,5,21.35,22,0.0 +19486,75,7.75,23,0.0 +19486,45,9.5,23,0.0 +19486,4,22,35,0.0 +19486,64,33.25,39,0.0 +19487,73,15,43,0.0 +19487,12,38,30,0.0 +19487,27,43.9,48,0.0 +19487,26,31.23,24,0.0 +19487,76,18,34,0.0 +19487,33,2.5,10,0.0 +19487,30,25.89,43,0.0 +19487,5,21.35,4,0.0 +19487,28,45.6,28,0.0 +19487,3,10,41,0.0 +19487,2,19,2,0.0 +19487,65,21.05,18,0.0 +19487,23,9,1,0.0 +19487,20,81,44,0.0 +19487,10,31,31,0.0 +19487,72,34.8,1,0.0 +19487,9,97,3,0.0 +19487,68,12.5,46,0.0 +19487,19,9.2,7,0.0 +19487,75,7.75,24,0.0 +19487,56,38,14,0.0 +19487,40,18.4,12,0.0 +19487,61,28.5,43,0.0 +19487,7,30,10,0.0 +19487,36,19,29,0.0 +19487,52,7,30,0.0 +19487,43,46,4,0.0 +19487,46,12,31,0.0 +19487,37,26,44,0.0 +19487,16,17.45,44,0.0 +19487,31,12.5,50,0.0 +19487,38,263.5,7,0.0 +19487,63,43.9,47,0.0 +19487,66,17,47,0.0 +19487,45,9.5,20,0.0 +19487,14,23.25,17,0.0 +19487,29,123.79,39,0.0 +19487,42,14,4,0.0 +19487,47,9.5,3,0.0 +19487,60,34,5,0.0 +19487,70,15,15,0.0 +19487,21,10,14,0.0 +19487,54,7.45,33,0.0 +19487,77,13,28,0.0 +19487,34,14,1,0.0 +19487,71,21.5,10,0.0 +19487,53,32.8,34,0.0 +19487,64,33.25,39,0.0 +19487,25,14,36,0.0 +19487,39,18,28,0.0 +19487,69,36,9,0.0 +19487,74,10,22,0.0 +19488,40,18.4,38,0.0 +19488,34,14,8,0.0 +19488,30,25.89,6,0.0 +19488,65,21.05,9,0.0 +19488,48,12.75,29,0.0 +19488,67,14,22,0.0 +19488,15,15.5,49,0.0 +19488,41,9.65,40,0.0 +19488,51,53,27,0.0 +19488,38,263.5,8,0.0 +19488,4,22,41,0.0 +19488,74,10,9,0.0 +19488,23,9,19,0.0 +19488,73,15,38,0.0 +19488,60,34,2,0.0 +19488,27,43.9,34,0.0 +19488,37,26,15,0.0 +19488,7,30,6,0.0 +19488,70,15,50,0.0 +19488,22,21,36,0.0 +19488,31,12.5,49,0.0 +19488,2,19,20,0.0 +19488,5,21.35,34,0.0 +19488,59,55,30,0.0 +19488,13,6,18,0.0 +19488,29,123.79,18,0.0 +19488,10,31,29,0.0 +19488,72,34.8,35,0.0 +19488,17,39,50,0.0 +19488,54,7.45,18,0.0 +19488,58,13.25,21,0.0 +19488,77,13,40,0.0 +19488,55,24,10,0.0 +19488,32,32,30,0.0 +19488,11,21,47,0.0 +19488,12,38,36,0.0 +19488,35,18,13,0.0 +19488,21,10,34,0.0 +19488,33,2.5,49,0.0 +19488,69,36,17,0.0 +19488,42,14,40,0.0 +19488,76,18,12,0.0 +19488,28,45.6,21,0.0 +19488,14,23.25,12,0.0 +19488,16,17.45,23,0.0 +19488,75,7.75,22,0.0 +19488,64,33.25,22,0.0 +19488,6,25,41,0.0 +19488,8,40,28,0.0 +19488,43,46,17,0.0 +19488,9,97,34,0.0 +19488,18,62.5,18,0.0 +19488,52,7,28,0.0 +19488,26,31.23,8,0.0 +19488,47,9.5,8,0.0 +19488,49,20,24,0.0 +19488,71,21.5,32,0.0 +19489,22,21,43,0.0 +19489,41,9.65,38,0.0 +19489,17,39,5,0.0 +19489,76,18,27,0.0 +19489,4,22,30,0.0 +19489,1,18,24,0.0 +19489,30,25.89,47,0.0 +19489,68,12.5,7,0.0 +19489,2,19,44,0.0 +19489,54,7.45,31,0.0 +19489,18,62.5,17,0.0 +19489,56,38,36,0.0 +19489,35,18,35,0.0 +19489,62,49.3,21,0.0 +19489,9,97,32,0.0 +19489,40,18.4,13,0.0 +19489,21,10,39,0.0 +19489,42,14,21,0.0 +19489,74,10,20,0.0 +19489,10,31,4,0.0 +19489,43,46,30,0.0 +19489,66,17,22,0.0 +19489,31,12.5,29,0.0 +19489,75,7.75,43,0.0 +19489,57,19.5,8,0.0 +19489,55,24,2,0.0 +19490,11,21,40,0.0 +19490,26,31.23,7,0.0 +19490,10,31,25,0.0 +19490,16,17.45,42,0.0 +19490,34,14,44,0.0 +19490,65,21.05,9,0.0 +19490,9,97,5,0.0 +19490,53,32.8,32,0.0 +19490,75,7.75,4,0.0 +19490,76,18,41,0.0 +19490,60,34,15,0.0 +19490,64,33.25,19,0.0 +19490,63,43.9,45,0.0 +19490,2,19,34,0.0 +19490,46,12,24,0.0 +19490,25,14,10,0.0 +19490,28,45.6,18,0.0 +19490,59,55,5,0.0 +19490,15,15.5,33,0.0 +19490,14,23.25,19,0.0 +19490,18,62.5,36,0.0 +19490,12,38,14,0.0 +19490,24,4.5,25,0.0 +19490,61,28.5,9,0.0 +19490,45,9.5,26,0.0 +19490,5,21.35,7,0.0 +19490,3,10,9,0.0 +19490,66,17,46,0.0 +19490,30,25.89,28,0.0 +19490,71,21.5,27,0.0 +19490,19,9.2,8,0.0 +19490,43,46,4,0.0 +19490,20,81,4,0.0 +19490,1,18,25,0.0 +19490,17,39,28,0.0 +19490,55,24,21,0.0 +19491,25,14,7,0.0 +19491,24,4.5,35,0.0 +19491,34,14,41,0.0 +19491,46,12,11,0.0 +19491,39,18,49,0.0 +19491,14,23.25,24,0.0 +19491,76,18,21,0.0 +19491,43,46,19,0.0 +19491,68,12.5,28,0.0 +19491,57,19.5,36,0.0 +19491,59,55,23,0.0 +19491,40,18.4,33,0.0 +19491,27,43.9,15,0.0 +19491,44,19.45,27,0.0 +19491,21,10,12,0.0 +19491,60,34,24,0.0 +19491,9,97,43,0.0 +19491,41,9.65,32,0.0 +19491,62,49.3,25,0.0 +19491,53,32.8,12,0.0 +19491,15,15.5,49,0.0 +19491,19,9.2,4,0.0 +19491,50,16.25,23,0.0 +19491,55,24,50,0.0 +19491,8,40,45,0.0 +19491,45,9.5,47,0.0 +19491,20,81,28,0.0 +19491,3,10,27,0.0 +19491,64,33.25,8,0.0 +19491,6,25,31,0.0 +19491,32,32,48,0.0 +19491,70,15,1,0.0 +19491,42,14,45,0.0 +19491,18,62.5,12,0.0 +19491,11,21,36,0.0 +19491,48,12.75,39,0.0 +19491,1,18,43,0.0 +19491,63,43.9,15,0.0 +19491,71,21.5,22,0.0 +19491,56,38,7,0.0 +19491,65,21.05,42,0.0 +19491,29,123.79,37,0.0 +19491,33,2.5,41,0.0 +19491,22,21,9,0.0 +19491,69,36,12,0.0 +19492,24,4.5,20,0.0 +19492,60,34,25,0.0 +19492,22,21,38,0.0 +19492,55,24,1,0.0 +19492,6,25,49,0.0 +19492,31,12.5,21,0.0 +19492,13,6,4,0.0 +19492,25,14,1,0.0 +19492,51,53,27,0.0 +19492,21,10,44,0.0 +19492,28,45.6,33,0.0 +19492,20,81,32,0.0 +19493,70,15,24,0.0 +19493,20,81,43,0.0 +19493,9,97,2,0.0 +19493,68,12.5,43,0.0 +19493,41,9.65,5,0.0 +19493,52,7,25,0.0 +19493,53,32.8,29,0.0 +19493,19,9.2,14,0.0 +19493,57,19.5,32,0.0 +19493,54,7.45,13,0.0 +19493,12,38,22,0.0 +19493,35,18,4,0.0 +19493,8,40,23,0.0 +19493,49,20,48,0.0 +19493,2,19,7,0.0 +19493,13,6,27,0.0 +19493,11,21,49,0.0 +19493,21,10,30,0.0 +19493,75,7.75,17,0.0 +19493,63,43.9,8,0.0 +19493,17,39,46,0.0 +19493,39,18,21,0.0 +19493,28,45.6,49,0.0 +19493,65,21.05,22,0.0 +19493,67,14,4,0.0 +19493,36,19,21,0.0 +19493,32,32,24,0.0 +19493,71,21.5,9,0.0 +19493,25,14,18,0.0 +19493,66,17,18,0.0 +19493,42,14,23,0.0 +19493,44,19.45,26,0.0 +19493,48,12.75,24,0.0 +19493,62,49.3,48,0.0 +19493,61,28.5,18,0.0 +19493,43,46,15,0.0 +19493,38,263.5,42,0.0 +19493,5,21.35,1,0.0 +19493,34,14,37,0.0 +19493,1,18,4,0.0 +19493,72,34.8,30,0.0 +19493,73,15,45,0.0 +19493,74,10,39,0.0 +19493,30,25.89,15,0.0 +19493,47,9.5,47,0.0 +19493,45,9.5,40,0.0 +19493,27,43.9,20,0.0 +19493,37,26,38,0.0 +19493,76,18,30,0.0 +19493,3,10,4,0.0 +19493,23,9,15,0.0 +19493,26,31.23,3,0.0 +19493,33,2.5,19,0.0 +19494,49,20,48,0.0 +19494,73,15,43,0.0 +19494,63,43.9,12,0.0 +19494,64,33.25,41,0.0 +19494,39,18,34,0.0 +19494,30,25.89,2,0.0 +19494,70,15,5,0.0 +19494,35,18,21,0.0 +19494,40,18.4,26,0.0 +19494,4,22,5,0.0 +19494,25,14,29,0.0 +19495,26,31.23,50,0.0 +19495,71,21.5,26,0.0 +19495,76,18,31,0.0 +19495,62,49.3,47,0.0 +19495,68,12.5,29,0.0 +19495,77,13,26,0.0 +19495,66,17,34,0.0 +19495,28,45.6,5,0.0 +19495,3,10,3,0.0 +19495,8,40,6,0.0 +19495,36,19,35,0.0 +19495,5,21.35,1,0.0 +19495,75,7.75,6,0.0 +19495,53,32.8,33,0.0 +19495,33,2.5,10,0.0 +19495,27,43.9,28,0.0 +19495,19,9.2,9,0.0 +19495,41,9.65,50,0.0 +19495,24,4.5,32,0.0 +19495,70,15,34,0.0 +19495,40,18.4,47,0.0 +19495,56,38,31,0.0 +19495,54,7.45,9,0.0 +19495,49,20,6,0.0 +19495,37,26,18,0.0 +19495,55,24,24,0.0 +19495,47,9.5,26,0.0 +19496,72,34.8,44,0.0 +19496,69,36,12,0.0 +19496,58,13.25,45,0.0 +19496,21,10,44,0.0 +19496,75,7.75,8,0.0 +19496,2,19,45,0.0 +19496,25,14,43,0.0 +19496,14,23.25,48,0.0 +19496,56,38,26,0.0 +19496,57,19.5,43,0.0 +19496,45,9.5,47,0.0 +19496,68,12.5,49,0.0 +19496,47,9.5,40,0.0 +19496,42,14,44,0.0 +19496,66,17,40,0.0 +19496,9,97,4,0.0 +19496,48,12.75,43,0.0 +19496,6,25,19,0.0 +19496,5,21.35,16,0.0 +19496,77,13,46,0.0 +19496,13,6,10,0.0 +19496,1,18,11,0.0 +19496,71,21.5,13,0.0 +19496,53,32.8,16,0.0 +19496,17,39,14,0.0 +19496,4,22,20,0.0 +19496,39,18,36,0.0 +19496,41,9.65,46,0.0 +19496,40,18.4,33,0.0 +19496,43,46,8,0.0 +19496,49,20,11,0.0 +19496,67,14,42,0.0 +19496,32,32,48,0.0 +19496,22,21,9,0.0 +19496,54,7.45,5,0.0 +19496,50,16.25,42,0.0 +19496,38,263.5,25,0.0 +19496,70,15,14,0.0 +19496,23,9,13,0.0 +19496,59,55,25,0.0 +19497,59,55,12,0.0 +19497,51,53,49,0.0 +19497,43,46,8,0.0 +19497,12,38,33,0.0 +19497,36,19,38,0.0 +19497,77,13,5,0.0 +19497,16,17.45,28,0.0 +19497,68,12.5,12,0.0 +19497,34,14,29,0.0 +19497,14,23.25,49,0.0 +19497,30,25.89,5,0.0 +19497,21,10,17,0.0 +19497,10,31,9,0.0 +19497,27,43.9,14,0.0 +19497,1,18,20,0.0 +19497,40,18.4,16,0.0 +19497,61,28.5,11,0.0 +19497,67,14,14,0.0 +19497,72,34.8,39,0.0 +19497,31,12.5,16,0.0 +19497,45,9.5,22,0.0 +19497,63,43.9,44,0.0 +19497,64,33.25,48,0.0 +19497,33,2.5,50,0.0 +19497,29,123.79,1,0.0 +19497,69,36,30,0.0 +19497,38,263.5,30,0.0 +19497,26,31.23,10,0.0 +19497,7,30,30,0.0 +19497,11,21,5,0.0 +19497,37,26,37,0.0 +19497,49,20,47,0.0 +19497,18,62.5,10,0.0 +19497,65,21.05,37,0.0 +19497,57,19.5,25,0.0 +19497,20,81,31,0.0 +19497,35,18,47,0.0 +19497,54,7.45,8,0.0 +19497,74,10,12,0.0 +19497,44,19.45,5,0.0 +19497,8,40,15,0.0 +19497,23,9,14,0.0 +19497,55,24,50,0.0 +19497,60,34,11,0.0 +19497,53,32.8,25,0.0 +19497,41,9.65,33,0.0 +19497,13,6,2,0.0 +19497,56,38,23,0.0 +19497,32,32,6,0.0 +19497,22,21,16,0.0 +19497,50,16.25,27,0.0 +19497,58,13.25,27,0.0 +19497,4,22,25,0.0 +19497,62,49.3,18,0.0 +19497,19,9.2,38,0.0 +19497,28,45.6,7,0.0 +19497,76,18,48,0.0 +19497,15,15.5,35,0.0 +19497,3,10,23,0.0 +19497,52,7,40,0.0 +19497,5,21.35,37,0.0 +19497,17,39,3,0.0 +19498,5,21.35,50,0.0 +19498,28,45.6,22,0.0 +19498,15,15.5,6,0.0 +19498,12,38,39,0.0 +19498,29,123.79,17,0.0 +19498,14,23.25,22,0.0 +19498,9,97,14,0.0 +19498,49,20,38,0.0 +19498,67,14,29,0.0 +19498,17,39,31,0.0 +19498,1,18,21,0.0 +19498,22,21,15,0.0 +19498,40,18.4,34,0.0 +19498,20,81,36,0.0 +19498,60,34,22,0.0 +19498,59,55,37,0.0 +19498,48,12.75,32,0.0 +19498,75,7.75,5,0.0 +19498,42,14,29,0.0 +19498,77,13,35,0.0 +19498,64,33.25,47,0.0 +19498,74,10,21,0.0 +19498,38,263.5,18,0.0 +19498,44,19.45,27,0.0 +19498,45,9.5,44,0.0 +19498,2,19,9,0.0 +19498,13,6,46,0.0 +19498,43,46,20,0.0 +19498,55,24,20,0.0 +19498,37,26,6,0.0 +19498,34,14,1,0.0 +19498,56,38,35,0.0 +19498,11,21,16,0.0 +19498,68,12.5,15,0.0 +19498,66,17,2,0.0 +19498,52,7,3,0.0 +19498,39,18,34,0.0 +19498,31,12.5,34,0.0 +19498,73,15,44,0.0 +19498,32,32,25,0.0 +19498,24,4.5,42,0.0 +19498,70,15,48,0.0 +19498,4,22,22,0.0 +19498,54,7.45,40,0.0 +19498,18,62.5,30,0.0 +19498,35,18,29,0.0 +19498,53,32.8,11,0.0 +19498,30,25.89,6,0.0 +19498,19,9.2,28,0.0 +19498,65,21.05,38,0.0 +19498,50,16.25,26,0.0 +19499,62,49.3,48,0.0 +19499,69,36,44,0.0 +19499,76,18,33,0.0 +19499,2,19,41,0.0 +19499,65,21.05,48,0.0 +19499,18,62.5,41,0.0 +19499,21,10,26,0.0 +19499,48,12.75,11,0.0 +19499,73,15,45,0.0 +19499,20,81,30,0.0 +19499,13,6,45,0.0 +19499,31,12.5,2,0.0 +19499,16,17.45,13,0.0 +19499,68,12.5,19,0.0 +19499,39,18,15,0.0 +19499,9,97,7,0.0 +19499,12,38,6,0.0 +19499,49,20,36,0.0 +19499,40,18.4,38,0.0 +19499,71,21.5,18,0.0 +19499,7,30,1,0.0 +19499,57,19.5,20,0.0 +19499,14,23.25,14,0.0 +19499,4,22,28,0.0 +19499,42,14,19,0.0 +19499,72,34.8,46,0.0 +19499,28,45.6,34,0.0 +19499,66,17,46,0.0 +19499,50,16.25,29,0.0 +19499,67,14,9,0.0 +19499,64,33.25,25,0.0 +19499,11,21,16,0.0 +19499,37,26,5,0.0 +19499,61,28.5,3,0.0 +19499,27,43.9,1,0.0 +19499,6,25,14,0.0 +19499,47,9.5,13,0.0 +19499,53,32.8,25,0.0 +19499,26,31.23,1,0.0 +19499,23,9,45,0.0 +19499,38,263.5,46,0.0 +19499,51,53,17,0.0 +19499,74,10,2,0.0 +19499,29,123.79,38,0.0 +19499,45,9.5,48,0.0 +19499,52,7,27,0.0 +19499,3,10,6,0.0 +19499,54,7.45,6,0.0 +19499,32,32,33,0.0 +19499,35,18,31,0.0 +19499,60,34,32,0.0 +19499,77,13,5,0.0 +19499,75,7.75,37,0.0 +19499,56,38,7,0.0 +19499,55,24,48,0.0 +19499,34,14,37,0.0 +19499,63,43.9,19,0.0 +19499,30,25.89,27,0.0 +19499,15,15.5,16,0.0 +19499,5,21.35,27,0.0 +19499,33,2.5,22,0.0 +19499,25,14,34,0.0 +19499,1,18,45,0.0 +19499,46,12,27,0.0 +19499,10,31,18,0.0 +19499,41,9.65,43,0.0 +19499,36,19,47,0.0 +19500,52,7,27,0.0 +19500,65,21.05,16,0.0 +19500,48,12.75,11,0.0 +19500,12,38,44,0.0 +19500,63,43.9,26,0.0 +19500,35,18,18,0.0 +19500,61,28.5,9,0.0 +19500,18,62.5,44,0.0 +19500,56,38,27,0.0 +19500,42,14,8,0.0 +19500,41,9.65,26,0.0 +19500,43,46,9,0.0 +19500,2,19,35,0.0 +19500,77,13,10,0.0 +19500,11,21,18,0.0 +19500,68,12.5,17,0.0 +19500,28,45.6,10,0.0 +19500,51,53,12,0.0 +19500,37,26,6,0.0 +19500,70,15,46,0.0 +19500,30,25.89,11,0.0 +19500,26,31.23,8,0.0 +19500,62,49.3,6,0.0 +19500,60,34,8,0.0 +19500,54,7.45,27,0.0 +19500,17,39,31,0.0 +19500,13,6,25,0.0 +19500,36,19,50,0.0 +19500,7,30,9,0.0 +19500,14,23.25,14,0.0 +19500,64,33.25,39,0.0 +19500,20,81,50,0.0 +19500,8,40,30,0.0 +19500,66,17,46,0.0 +19500,76,18,34,0.0 +19500,25,14,5,0.0 +19500,55,24,25,0.0 +19500,24,4.5,25,0.0 +19500,49,20,3,0.0 +19500,47,9.5,30,0.0 +19500,75,7.75,40,0.0 +19500,22,21,29,0.0 +19501,16,17.45,27,0.0 +19501,70,15,24,0.0 +19501,55,24,2,0.0 +19501,25,14,23,0.0 +19501,36,19,47,0.0 +19501,51,53,39,0.0 +19501,53,32.8,12,0.0 +19501,63,43.9,16,0.0 +19501,41,9.65,47,0.0 +19501,49,20,41,0.0 +19501,64,33.25,15,0.0 +19501,45,9.5,50,0.0 +19501,9,97,29,0.0 +19501,4,22,29,0.0 +19501,33,2.5,7,0.0 +19501,68,12.5,37,0.0 +19501,61,28.5,28,0.0 +19501,67,14,49,0.0 +19501,20,81,48,0.0 +19501,8,40,43,0.0 +19501,46,12,35,0.0 +19501,3,10,47,0.0 +19501,38,263.5,27,0.0 +19501,29,123.79,4,0.0 +19501,71,21.5,35,0.0 +19501,1,18,21,0.0 +19501,17,39,29,0.0 +19501,19,9.2,34,0.0 +19501,73,15,17,0.0 +19501,50,16.25,11,0.0 +19501,23,9,45,0.0 +19501,35,18,49,0.0 +19501,76,18,25,0.0 +19501,62,49.3,49,0.0 +19501,75,7.75,20,0.0 +19501,48,12.75,28,0.0 +19501,2,19,25,0.0 +19501,30,25.89,23,0.0 +19501,43,46,50,0.0 +19501,15,15.5,10,0.0 +19501,60,34,31,0.0 +19501,21,10,31,0.0 +19501,54,7.45,11,0.0 +19501,5,21.35,17,0.0 +19501,47,9.5,1,0.0 +19501,52,7,6,0.0 +19501,57,19.5,40,0.0 +19501,10,31,1,0.0 +19501,59,55,16,0.0 +19501,56,38,25,0.0 +19501,74,10,46,0.0 +19501,18,62.5,24,0.0 +19501,7,30,49,0.0 +19501,44,19.45,6,0.0 +19501,34,14,34,0.0 +19501,27,43.9,42,0.0 +19501,6,25,34,0.0 +19501,72,34.8,40,0.0 +19501,13,6,37,0.0 +19501,12,38,36,0.0 +19501,22,21,22,0.0 +19501,77,13,17,0.0 +19501,31,12.5,41,0.0 +19501,39,18,19,0.0 +19501,24,4.5,46,0.0 +19501,28,45.6,32,0.0 +19501,37,26,4,0.0 +19501,66,17,40,0.0 +19501,11,21,3,0.0 +19501,58,13.25,36,0.0 +19501,65,21.05,16,0.0 +19501,69,36,5,0.0 +19501,32,32,31,0.0 +19501,14,23.25,1,0.0 +19502,37,26,18,0.0 +19502,13,6,42,0.0 +19502,21,10,9,0.0 +19502,32,32,22,0.0 +19502,39,18,34,0.0 +19502,57,19.5,45,0.0 +19502,29,123.79,11,0.0 +19502,47,9.5,29,0.0 +19502,34,14,1,0.0 +19502,25,14,1,0.0 +19502,71,21.5,27,0.0 +19502,67,14,7,0.0 +19502,72,34.8,8,0.0 +19502,62,49.3,46,0.0 +19502,18,62.5,15,0.0 +19502,41,9.65,15,0.0 +19502,45,9.5,27,0.0 +19502,24,4.5,15,0.0 +19502,53,32.8,49,0.0 +19502,2,19,15,0.0 +19502,68,12.5,6,0.0 +19502,49,20,14,0.0 +19502,19,9.2,8,0.0 +19502,58,13.25,48,0.0 +19502,43,46,2,0.0 +19502,33,2.5,22,0.0 +19502,76,18,8,0.0 +19502,31,12.5,28,0.0 +19502,1,18,12,0.0 +19502,17,39,10,0.0 +19502,23,9,5,0.0 +19502,69,36,36,0.0 +19502,11,21,22,0.0 +19502,20,81,43,0.0 +19502,27,43.9,2,0.0 +19502,5,21.35,30,0.0 +19502,51,53,21,0.0 +19502,48,12.75,23,0.0 +19502,10,31,6,0.0 +19502,50,16.25,24,0.0 +19502,14,23.25,35,0.0 +19502,55,24,2,0.0 +19502,52,7,27,0.0 +19502,74,10,40,0.0 +19502,44,19.45,19,0.0 +19502,8,40,20,0.0 +19502,4,22,21,0.0 +19502,16,17.45,30,0.0 +19502,6,25,7,0.0 +19502,22,21,14,0.0 +19502,77,13,35,0.0 +19502,63,43.9,40,0.0 +19502,73,15,20,0.0 +19502,59,55,5,0.0 +19502,9,97,29,0.0 +19502,61,28.5,27,0.0 +19502,54,7.45,14,0.0 +19502,3,10,49,0.0 +19502,40,18.4,10,0.0 +19502,12,38,29,0.0 +19502,26,31.23,13,0.0 +19502,7,30,28,0.0 +19502,64,33.25,10,0.0 +19502,28,45.6,2,0.0 +19502,46,12,39,0.0 +19502,60,34,42,0.0 +19502,65,21.05,42,0.0 +19503,14,23.25,8,0.0 +19503,32,32,5,0.0 +19503,63,43.9,48,0.0 +19503,13,6,5,0.0 +19503,20,81,12,0.0 +19503,33,2.5,17,0.0 +19503,61,28.5,22,0.0 +19503,12,38,38,0.0 +19503,26,31.23,20,0.0 +19503,48,12.75,44,0.0 +19503,60,34,32,0.0 +19503,62,49.3,49,0.0 +19503,42,14,16,0.0 +19503,11,21,14,0.0 +19503,25,14,45,0.0 +19503,41,9.65,3,0.0 +19503,66,17,29,0.0 +19503,77,13,15,0.0 +19503,49,20,13,0.0 +19503,57,19.5,46,0.0 +19503,40,18.4,2,0.0 +19503,1,18,9,0.0 +19503,39,18,46,0.0 +19503,4,22,35,0.0 +19503,7,30,49,0.0 +19504,76,18,34,0.0 +19504,73,15,47,0.0 +19504,42,14,23,0.0 +19504,60,34,44,0.0 +19504,56,38,32,0.0 +19504,20,81,19,0.0 +19504,71,21.5,45,0.0 +19504,66,17,24,0.0 +19504,4,22,36,0.0 +19504,2,19,8,0.0 +19504,46,12,31,0.0 +19504,44,19.45,47,0.0 +19504,61,28.5,38,0.0 +19504,49,20,41,0.0 +19504,77,13,47,0.0 +19504,19,9.2,41,0.0 +19504,16,17.45,19,0.0 +19504,47,9.5,28,0.0 +19504,1,18,9,0.0 +19504,43,46,13,0.0 +19504,45,9.5,20,0.0 +19504,75,7.75,50,0.0 +19504,6,25,15,0.0 +19504,28,45.6,11,0.0 +19504,57,19.5,7,0.0 +19504,67,14,10,0.0 +19504,26,31.23,26,0.0 +19504,50,16.25,2,0.0 +19504,54,7.45,48,0.0 +19504,34,14,3,0.0 +19504,64,33.25,16,0.0 +19504,65,21.05,1,0.0 +19504,25,14,32,0.0 +19504,31,12.5,17,0.0 +19504,38,263.5,47,0.0 +19504,59,55,23,0.0 +19504,12,38,12,0.0 +19504,62,49.3,22,0.0 +19504,72,34.8,33,0.0 +19504,13,6,13,0.0 +19504,52,7,20,0.0 +19504,23,9,38,0.0 +19504,33,2.5,17,0.0 +19504,40,18.4,37,0.0 +19504,58,13.25,31,0.0 +19504,30,25.89,9,0.0 +19504,74,10,41,0.0 +19504,18,62.5,21,0.0 +19504,41,9.65,10,0.0 +19504,29,123.79,43,0.0 +19505,53,32.8,29,0.0 +19506,59,55,48,0.0 +19506,40,18.4,8,0.0 +19506,28,45.6,32,0.0 +19506,31,12.5,41,0.0 +19506,41,9.65,9,0.0 +19506,39,18,22,0.0 +19506,73,15,30,0.0 +19506,6,25,50,0.0 +19506,74,10,19,0.0 +19506,67,14,25,0.0 +19506,42,14,7,0.0 +19506,64,33.25,26,0.0 +19506,13,6,24,0.0 +19506,54,7.45,45,0.0 +19506,24,4.5,29,0.0 +19506,15,15.5,22,0.0 +19506,43,46,31,0.0 +19506,11,21,25,0.0 +19506,21,10,47,0.0 +19506,50,16.25,17,0.0 +19506,56,38,5,0.0 +19506,49,20,50,0.0 +19506,77,13,42,0.0 +19506,58,13.25,23,0.0 +19506,27,43.9,44,0.0 +19506,45,9.5,27,0.0 +19506,61,28.5,45,0.0 +19506,3,10,6,0.0 +19506,70,15,50,0.0 +19506,29,123.79,42,0.0 +19506,35,18,3,0.0 +19506,22,21,31,0.0 +19506,32,32,29,0.0 +19506,47,9.5,24,0.0 +19506,62,49.3,5,0.0 +19506,76,18,40,0.0 +19506,5,21.35,3,0.0 +19506,17,39,49,0.0 +19506,72,34.8,11,0.0 +19506,37,26,6,0.0 +19506,18,62.5,2,0.0 +19506,66,17,32,0.0 +19506,9,97,22,0.0 +19506,38,263.5,32,0.0 +19506,8,40,29,0.0 +19506,34,14,4,0.0 +19507,14,23.25,1,0.0 +19507,58,13.25,21,0.0 +19507,53,32.8,33,0.0 +19507,75,7.75,16,0.0 +19507,66,17,34,0.0 +19507,71,21.5,5,0.0 +19507,64,33.25,23,0.0 +19507,23,9,48,0.0 +19507,24,4.5,8,0.0 +19507,13,6,1,0.0 +19507,48,12.75,47,0.0 +19507,63,43.9,31,0.0 +19507,33,2.5,42,0.0 +19507,76,18,4,0.0 +19507,27,43.9,26,0.0 +19507,65,21.05,24,0.0 +19507,5,21.35,1,0.0 +19507,57,19.5,7,0.0 +19507,28,45.6,18,0.0 +19507,4,22,38,0.0 +19507,30,25.89,36,0.0 +19507,38,263.5,35,0.0 +19507,62,49.3,20,0.0 +19507,34,14,35,0.0 +19507,68,12.5,9,0.0 +19507,12,38,30,0.0 +19507,42,14,11,0.0 +19507,47,9.5,39,0.0 +19507,6,25,25,0.0 +19507,61,28.5,13,0.0 +19507,29,123.79,45,0.0 +19507,36,19,33,0.0 +19507,22,21,43,0.0 +19507,37,26,18,0.0 +19507,50,16.25,29,0.0 +19507,56,38,47,0.0 +19507,46,12,42,0.0 +19507,18,62.5,32,0.0 +19507,8,40,44,0.0 +19507,11,21,17,0.0 +19507,20,81,38,0.0 +19508,44,19.45,32,0.0 +19508,57,19.5,49,0.0 +19508,36,19,20,0.0 +19508,26,31.23,49,0.0 +19508,29,123.79,14,0.0 +19508,35,18,9,0.0 +19508,49,20,49,0.0 +19508,61,28.5,9,0.0 +19508,7,30,13,0.0 +19508,54,7.45,4,0.0 +19508,31,12.5,34,0.0 +19508,17,39,48,0.0 +19508,63,43.9,26,0.0 +19508,10,31,26,0.0 +19508,55,24,33,0.0 +19508,32,32,30,0.0 +19508,33,2.5,36,0.0 +19508,6,25,23,0.0 +19508,28,45.6,26,0.0 +19508,1,18,18,0.0 +19508,42,14,25,0.0 +19508,15,15.5,19,0.0 +19508,60,34,28,0.0 +19508,24,4.5,18,0.0 +19508,67,14,5,0.0 +19508,51,53,3,0.0 +19508,53,32.8,43,0.0 +19508,73,15,33,0.0 +19508,16,17.45,29,0.0 +19508,11,21,45,0.0 +19508,62,49.3,34,0.0 +19508,14,23.25,49,0.0 +19508,18,62.5,13,0.0 +19508,68,12.5,15,0.0 +19508,13,6,21,0.0 +19508,76,18,50,0.0 +19508,22,21,27,0.0 +19508,34,14,23,0.0 +19508,5,21.35,33,0.0 +19508,12,38,19,0.0 +19508,21,10,8,0.0 +19508,59,55,11,0.0 +19508,66,17,3,0.0 +19508,47,9.5,11,0.0 +19508,64,33.25,25,0.0 +19509,13,6,41,0.0 +19509,17,39,50,0.0 +19509,58,13.25,15,0.0 +19509,69,36,42,0.0 +19509,7,30,31,0.0 +19509,66,17,35,0.0 +19509,67,14,49,0.0 +19509,56,38,38,0.0 +19509,14,23.25,5,0.0 +19509,15,15.5,40,0.0 +19509,71,21.5,20,0.0 +19509,31,12.5,8,0.0 +19509,59,55,7,0.0 +19509,30,25.89,22,0.0 +19509,21,10,4,0.0 +19509,10,31,47,0.0 +19509,11,21,23,0.0 +19509,44,19.45,37,0.0 +19509,12,38,42,0.0 +19509,70,15,43,0.0 +19509,1,18,19,0.0 +19509,73,15,1,0.0 +19509,42,14,16,0.0 +19509,61,28.5,49,0.0 +19509,4,22,7,0.0 +19509,77,13,15,0.0 +19509,57,19.5,26,0.0 +19509,19,9.2,38,0.0 +19509,27,43.9,38,0.0 +19509,64,33.25,33,0.0 +19509,26,31.23,33,0.0 +19509,68,12.5,14,0.0 +19509,55,24,13,0.0 +19509,9,97,28,0.0 +19509,18,62.5,8,0.0 +19510,7,30,43,0.0 +19510,69,36,44,0.0 +19510,31,12.5,17,0.0 +19510,27,43.9,43,0.0 +19510,2,19,33,0.0 +19510,42,14,25,0.0 +19510,74,10,44,0.0 +19510,47,9.5,38,0.0 +19510,54,7.45,46,0.0 +19510,55,24,48,0.0 +19510,6,25,28,0.0 +19510,60,34,14,0.0 +19510,62,49.3,35,0.0 +19510,18,62.5,46,0.0 +19510,20,81,5,0.0 +19510,65,21.05,49,0.0 +19510,48,12.75,37,0.0 +19510,46,12,23,0.0 +19510,17,39,5,0.0 +19510,4,22,34,0.0 +19510,41,9.65,16,0.0 +19510,40,18.4,35,0.0 +19510,12,38,40,0.0 +19510,14,23.25,50,0.0 +19510,67,14,48,0.0 +19510,64,33.25,37,0.0 +19510,45,9.5,38,0.0 +19510,32,32,29,0.0 +19510,71,21.5,30,0.0 +19510,29,123.79,24,0.0 +19510,30,25.89,12,0.0 +19510,66,17,39,0.0 +19510,13,6,48,0.0 +19510,68,12.5,14,0.0 +19510,38,263.5,25,0.0 +19510,70,15,40,0.0 +19510,33,2.5,42,0.0 +19510,34,14,49,0.0 +19510,61,28.5,43,0.0 +19510,58,13.25,41,0.0 +19510,9,97,50,0.0 +19510,57,19.5,47,0.0 +19510,77,13,23,0.0 +19510,50,16.25,7,0.0 +19510,73,15,18,0.0 +19510,51,53,40,0.0 +19510,1,18,9,0.0 +19510,23,9,14,0.0 +19510,56,38,26,0.0 +19510,10,31,40,0.0 +19510,16,17.45,19,0.0 +19510,22,21,19,0.0 +19510,8,40,11,0.0 +19510,28,45.6,3,0.0 +19510,63,43.9,10,0.0 +19510,3,10,17,0.0 +19510,49,20,42,0.0 +19510,11,21,4,0.0 +19510,75,7.75,41,0.0 +19510,24,4.5,32,0.0 +19510,53,32.8,5,0.0 +19510,15,15.5,27,0.0 +19510,52,7,3,0.0 +19510,37,26,25,0.0 +19510,25,14,42,0.0 +19510,21,10,11,0.0 +19511,4,22,13,0.0 +19511,25,14,18,0.0 +19511,1,18,6,0.0 +19511,27,43.9,41,0.0 +19511,59,55,29,0.0 +19511,63,43.9,31,0.0 +19511,57,19.5,32,0.0 +19511,15,15.5,10,0.0 +19511,38,263.5,16,0.0 +19512,5,21.35,18,0.0 +19512,72,34.8,39,0.0 +19512,16,17.45,33,0.0 +19512,28,45.6,17,0.0 +19512,76,18,29,0.0 +19512,44,19.45,19,0.0 +19512,15,15.5,12,0.0 +19512,40,18.4,1,0.0 +19512,22,21,15,0.0 +19512,54,7.45,40,0.0 +19512,53,32.8,47,0.0 +19512,39,18,30,0.0 +19512,45,9.5,13,0.0 +19512,48,12.75,11,0.0 +19512,32,32,11,0.0 +19512,19,9.2,28,0.0 +19512,38,263.5,36,0.0 +19512,71,21.5,41,0.0 +19512,61,28.5,34,0.0 +19512,20,81,49,0.0 +19512,46,12,6,0.0 +19512,10,31,9,0.0 +19512,41,9.65,37,0.0 +19512,3,10,40,0.0 +19512,51,53,10,0.0 +19513,64,33.25,10,0.0 +19513,17,39,42,0.0 +19513,41,9.65,48,0.0 +19513,11,21,30,0.0 +19513,67,14,40,0.0 +19513,43,46,40,0.0 +19513,54,7.45,2,0.0 +19513,29,123.79,9,0.0 +19513,70,15,33,0.0 +19513,74,10,14,0.0 +19513,26,31.23,45,0.0 +19513,51,53,50,0.0 +19513,31,12.5,47,0.0 +19513,40,18.4,3,0.0 +19513,77,13,28,0.0 +19513,59,55,11,0.0 +19513,22,21,30,0.0 +19513,44,19.45,20,0.0 +19513,1,18,26,0.0 +19513,46,12,32,0.0 +19513,63,43.9,20,0.0 +19513,3,10,17,0.0 +19513,72,34.8,36,0.0 +19513,56,38,44,0.0 +19513,15,15.5,11,0.0 +19513,28,45.6,19,0.0 +19513,13,6,4,0.0 +19514,6,25,38,0.0 +19514,43,46,30,0.0 +19514,56,38,18,0.0 +19514,67,14,16,0.0 +19514,73,15,25,0.0 +19514,44,19.45,49,0.0 +19514,3,10,16,0.0 +19514,2,19,24,0.0 +19514,34,14,10,0.0 +19514,68,12.5,15,0.0 +19514,15,15.5,12,0.0 +19514,30,25.89,7,0.0 +19514,12,38,31,0.0 +19514,40,18.4,40,0.0 +19514,33,2.5,16,0.0 +19514,64,33.25,14,0.0 +19514,57,19.5,27,0.0 +19514,9,97,37,0.0 +19514,32,32,5,0.0 +19514,24,4.5,35,0.0 +19514,4,22,7,0.0 +19514,13,6,7,0.0 +19514,59,55,50,0.0 +19514,26,31.23,41,0.0 +19514,58,13.25,20,0.0 +19514,37,26,42,0.0 +19514,48,12.75,10,0.0 +19514,53,32.8,15,0.0 +19514,7,30,27,0.0 +19514,35,18,46,0.0 +19514,71,21.5,49,0.0 +19514,11,21,13,0.0 +19514,29,123.79,19,0.0 +19514,16,17.45,35,0.0 +19514,10,31,29,0.0 +19514,46,12,12,0.0 +19514,61,28.5,14,0.0 +19514,51,53,39,0.0 +19514,36,19,17,0.0 +19514,63,43.9,16,0.0 +19514,65,21.05,50,0.0 +19514,38,263.5,5,0.0 +19514,31,12.5,24,0.0 +19514,14,23.25,2,0.0 +19514,21,10,2,0.0 +19514,66,17,26,0.0 +19514,49,20,11,0.0 +19514,70,15,24,0.0 +19514,55,24,26,0.0 +19515,59,55,22,0.0 +19515,69,36,36,0.0 +19515,39,18,50,0.0 +19515,75,7.75,20,0.0 +19515,74,10,33,0.0 +19515,62,49.3,27,0.0 +19515,71,21.5,14,0.0 +19515,13,6,4,0.0 +19515,11,21,27,0.0 +19515,25,14,45,0.0 +19515,61,28.5,35,0.0 +19515,19,9.2,25,0.0 +19515,50,16.25,10,0.0 +19515,4,22,13,0.0 +19515,64,33.25,25,0.0 +19515,8,40,18,0.0 +19515,76,18,41,0.0 +19515,26,31.23,49,0.0 +19515,3,10,15,0.0 +19515,7,30,37,0.0 +19515,40,18.4,10,0.0 +19515,43,46,7,0.0 +19515,37,26,32,0.0 +19515,27,43.9,14,0.0 +19515,55,24,36,0.0 +19515,29,123.79,46,0.0 +19515,31,12.5,16,0.0 +19515,70,15,39,0.0 +19515,36,19,25,0.0 +19515,21,10,28,0.0 +19515,68,12.5,44,0.0 +19515,48,12.75,6,0.0 +19515,33,2.5,27,0.0 +19515,22,21,28,0.0 +19515,57,19.5,42,0.0 +19515,66,17,42,0.0 +19515,34,14,45,0.0 +19515,49,20,45,0.0 +19515,38,263.5,46,0.0 +19515,9,97,7,0.0 +19515,32,32,5,0.0 +19515,54,7.45,20,0.0 +19515,73,15,6,0.0 +19515,5,21.35,45,0.0 +19515,45,9.5,25,0.0 +19515,51,53,8,0.0 +19515,1,18,48,0.0 +19515,52,7,13,0.0 +19515,65,21.05,29,0.0 +19515,16,17.45,44,0.0 +19515,63,43.9,31,0.0 +19515,14,23.25,21,0.0 +19515,58,13.25,13,0.0 +19515,15,15.5,3,0.0 +19515,6,25,41,0.0 +19515,2,19,34,0.0 +19515,28,45.6,21,0.0 +19515,24,4.5,37,0.0 +19515,10,31,30,0.0 +19515,35,18,50,0.0 +19515,72,34.8,32,0.0 +19515,20,81,36,0.0 +19515,53,32.8,39,0.0 +19515,60,34,2,0.0 +19515,67,14,6,0.0 +19516,10,31,41,0.0 +19516,35,18,22,0.0 +19516,19,9.2,42,0.0 +19516,8,40,10,0.0 +19516,22,21,8,0.0 +19516,3,10,23,0.0 +19516,25,14,48,0.0 +19516,14,23.25,29,0.0 +19516,69,36,32,0.0 +19516,49,20,48,0.0 +19516,7,30,18,0.0 +19516,65,21.05,36,0.0 +19516,43,46,42,0.0 +19516,63,43.9,12,0.0 +19516,70,15,6,0.0 +19516,71,21.5,45,0.0 +19516,41,9.65,46,0.0 +19516,72,34.8,14,0.0 +19516,11,21,32,0.0 +19516,17,39,19,0.0 +19516,55,24,8,0.0 +19516,20,81,36,0.0 +19516,59,55,5,0.0 +19516,6,25,39,0.0 +19516,23,9,27,0.0 +19516,74,10,31,0.0 +19516,54,7.45,44,0.0 +19516,36,19,24,0.0 +19516,40,18.4,14,0.0 +19516,37,26,40,0.0 +19516,61,28.5,7,0.0 +19516,64,33.25,47,0.0 +19516,33,2.5,12,0.0 +19516,24,4.5,2,0.0 +19516,21,10,32,0.0 +19516,48,12.75,24,0.0 +19516,75,7.75,49,0.0 +19516,5,21.35,35,0.0 +19516,46,12,15,0.0 +19516,34,14,18,0.0 +19516,57,19.5,3,0.0 +19516,47,9.5,49,0.0 +19516,77,13,26,0.0 +19516,58,13.25,50,0.0 +19516,4,22,15,0.0 +19516,56,38,48,0.0 +19516,16,17.45,13,0.0 +19516,76,18,18,0.0 +19516,42,14,37,0.0 +19516,12,38,14,0.0 +19516,53,32.8,11,0.0 +19516,68,12.5,1,0.0 +19516,45,9.5,28,0.0 +19516,31,12.5,49,0.0 +19516,38,263.5,19,0.0 +19516,44,19.45,4,0.0 +19516,32,32,38,0.0 +19516,67,14,23,0.0 +19516,13,6,1,0.0 +19516,1,18,26,0.0 +19516,66,17,31,0.0 +19516,30,25.89,20,0.0 +19517,33,2.5,22,0.0 +19517,71,21.5,16,0.0 +19517,46,12,23,0.0 +19517,10,31,19,0.0 +19517,50,16.25,24,0.0 +19517,21,10,17,0.0 +19517,15,15.5,6,0.0 +19517,73,15,13,0.0 +19517,65,21.05,38,0.0 +19517,55,24,35,0.0 +19517,64,33.25,36,0.0 +19517,45,9.5,13,0.0 +19517,20,81,14,0.0 +19517,66,17,37,0.0 +19517,76,18,11,0.0 +19517,36,19,12,0.0 +19517,5,21.35,34,0.0 +19517,11,21,50,0.0 +19517,7,30,49,0.0 +19517,3,10,3,0.0 +19517,30,25.89,46,0.0 +19517,59,55,36,0.0 +19517,60,34,42,0.0 +19517,72,34.8,22,0.0 +19517,47,9.5,2,0.0 +19517,2,19,7,0.0 +19517,38,263.5,34,0.0 +19517,1,18,18,0.0 +19517,57,19.5,35,0.0 +19517,23,9,15,0.0 +19517,75,7.75,7,0.0 +19517,27,43.9,10,0.0 +19517,54,7.45,33,0.0 +19517,35,18,34,0.0 +19517,53,32.8,27,0.0 +19517,6,25,25,0.0 +19517,34,14,47,0.0 +19517,19,9.2,35,0.0 +19517,62,49.3,28,0.0 +19517,69,36,29,0.0 +19517,58,13.25,14,0.0 +19517,25,14,49,0.0 +19517,42,14,40,0.0 +19517,9,97,45,0.0 +19517,22,21,48,0.0 +19517,68,12.5,18,0.0 +19517,41,9.65,22,0.0 +19517,61,28.5,32,0.0 +19517,74,10,49,0.0 +19517,56,38,49,0.0 +19517,51,53,40,0.0 +19517,40,18.4,31,0.0 +19517,24,4.5,18,0.0 +19517,26,31.23,7,0.0 +19517,70,15,6,0.0 +19517,37,26,16,0.0 +19517,31,12.5,31,0.0 +19517,49,20,2,0.0 +19517,48,12.75,49,0.0 +19517,28,45.6,20,0.0 +19517,39,18,20,0.0 +19517,16,17.45,38,0.0 +19517,52,7,47,0.0 +19517,63,43.9,30,0.0 +19517,77,13,27,0.0 +19517,32,32,39,0.0 +19517,29,123.79,10,0.0 +19517,14,23.25,48,0.0 +19517,18,62.5,6,0.0 +19517,13,6,8,0.0 +19517,44,19.45,25,0.0 +19517,43,46,25,0.0 +19517,17,39,30,0.0 +19517,12,38,16,0.0 +19517,8,40,47,0.0 +19517,67,14,25,0.0 +19518,3,10,49,0.0 +19518,40,18.4,41,0.0 +19518,43,46,5,0.0 +19518,33,2.5,4,0.0 +19518,45,9.5,36,0.0 +19518,62,49.3,44,0.0 +19518,49,20,5,0.0 +19518,25,14,31,0.0 +19518,12,38,35,0.0 +19518,77,13,24,0.0 +19518,71,21.5,26,0.0 +19518,18,62.5,48,0.0 +19518,76,18,42,0.0 +19518,41,9.65,48,0.0 +19518,2,19,28,0.0 +19518,13,6,5,0.0 +19518,5,21.35,13,0.0 +19518,61,28.5,21,0.0 +19518,4,22,11,0.0 +19519,23,9,46,0.0 +19519,70,15,7,0.0 +19519,75,7.75,49,0.0 +19520,36,19,37,0.0 +19520,34,14,23,0.0 +19520,26,31.23,17,0.0 +19520,4,22,28,0.0 +19520,71,21.5,14,0.0 +19520,3,10,48,0.0 +19520,47,9.5,29,0.0 +19520,12,38,50,0.0 +19520,5,21.35,47,0.0 +19520,68,12.5,44,0.0 +19521,14,23.25,25,0.0 +19521,1,18,23,0.0 +19521,22,21,39,0.0 +19521,3,10,24,0.0 +19521,24,4.5,48,0.0 +19521,15,15.5,9,0.0 +19521,20,81,28,0.0 +19521,28,45.6,8,0.0 +19521,6,25,34,0.0 +19521,11,21,43,0.0 +19521,71,21.5,43,0.0 +19521,26,31.23,13,0.0 +19521,41,9.65,35,0.0 +19521,73,15,10,0.0 +19521,70,15,21,0.0 +19521,12,38,36,0.0 +19521,54,7.45,26,0.0 +19521,7,30,22,0.0 +19521,5,21.35,45,0.0 +19521,37,26,24,0.0 +19521,27,43.9,38,0.0 +19521,48,12.75,16,0.0 +19521,75,7.75,3,0.0 +19521,66,17,7,0.0 +19521,17,39,8,0.0 +19521,55,24,1,0.0 +19521,56,38,29,0.0 +19521,47,9.5,24,0.0 +19521,52,7,25,0.0 +19521,19,9.2,13,0.0 +19521,50,16.25,31,0.0 +19521,69,36,9,0.0 +19521,58,13.25,9,0.0 +19521,35,18,34,0.0 +19521,21,10,29,0.0 +19521,9,97,42,0.0 +19521,42,14,31,0.0 +19521,10,31,9,0.0 +19521,34,14,14,0.0 +19521,65,21.05,12,0.0 +19521,2,19,24,0.0 +19521,38,263.5,50,0.0 +19521,57,19.5,33,0.0 +19521,29,123.79,13,0.0 +19521,23,9,21,0.0 +19521,16,17.45,19,0.0 +19521,74,10,2,0.0 +19521,31,12.5,27,0.0 +19521,60,34,19,0.0 +19521,68,12.5,45,0.0 +19521,18,62.5,14,0.0 +19521,46,12,6,0.0 +19521,40,18.4,21,0.0 +19521,30,25.89,9,0.0 +19521,4,22,42,0.0 +19521,67,14,36,0.0 +19521,39,18,46,0.0 +19521,59,55,18,0.0 +19521,76,18,7,0.0 +19521,36,19,33,0.0 +19521,49,20,6,0.0 +19521,61,28.5,7,0.0 +19521,51,53,28,0.0 +19521,53,32.8,26,0.0 +19521,64,33.25,18,0.0 +19521,44,19.45,4,0.0 +19521,63,43.9,35,0.0 +19521,13,6,22,0.0 +19521,62,49.3,38,0.0 +19521,43,46,46,0.0 +19521,32,32,9,0.0 +19521,77,13,36,0.0 +19522,75,7.75,24,0.0 +19522,56,38,11,0.0 +19522,4,22,36,0.0 +19522,9,97,6,0.0 +19522,50,16.25,42,0.0 +19522,12,38,37,0.0 +19522,16,17.45,10,0.0 +19522,55,24,47,0.0 +19522,17,39,42,0.0 +19522,58,13.25,10,0.0 +19522,14,23.25,23,0.0 +19522,31,12.5,23,0.0 +19522,22,21,44,0.0 +19523,57,19.5,9,0.0 +19523,23,9,7,0.0 +19523,40,18.4,28,0.0 +19523,2,19,29,0.0 +19523,69,36,39,0.0 +19523,30,25.89,23,0.0 +19523,19,9.2,18,0.0 +19523,14,23.25,21,0.0 +19523,37,26,33,0.0 +19523,4,22,36,0.0 +19523,38,263.5,17,0.0 +19523,47,9.5,21,0.0 +19523,75,7.75,6,0.0 +19523,33,2.5,27,0.0 +19523,29,123.79,24,0.0 +19523,42,14,42,0.0 +19523,58,13.25,23,0.0 +19523,55,24,1,0.0 +19523,13,6,4,0.0 +19523,70,15,39,0.0 +19523,11,21,38,0.0 +19523,24,4.5,2,0.0 +19523,17,39,5,0.0 +19523,64,33.25,9,0.0 +19523,56,38,22,0.0 +19523,62,49.3,25,0.0 +19523,45,9.5,20,0.0 +19523,28,45.6,26,0.0 +19523,76,18,30,0.0 +19523,46,12,37,0.0 +19523,22,21,21,0.0 +19524,72,34.8,1,0.0 +19524,19,9.2,6,0.0 +19524,12,38,6,0.0 +19524,17,39,4,0.0 +19524,36,19,32,0.0 +19524,56,38,22,0.0 +19524,67,14,49,0.0 +19525,25,14,46,0.0 +19525,61,28.5,43,0.0 +19525,39,18,24,0.0 +19525,41,9.65,13,0.0 +19525,66,17,2,0.0 +19525,18,62.5,20,0.0 +19525,31,12.5,29,0.0 +19525,44,19.45,15,0.0 +19525,51,53,18,0.0 +19525,24,4.5,20,0.0 +19525,29,123.79,26,0.0 +19525,11,21,49,0.0 +19525,35,18,10,0.0 +19525,71,21.5,27,0.0 +19525,17,39,17,0.0 +19525,59,55,44,0.0 +19525,73,15,25,0.0 +19525,53,32.8,19,0.0 +19525,48,12.75,14,0.0 +19525,54,7.45,40,0.0 +19525,13,6,24,0.0 +19525,21,10,22,0.0 +19525,49,20,45,0.0 +19525,50,16.25,21,0.0 +19525,74,10,2,0.0 +19525,8,40,36,0.0 +19525,20,81,11,0.0 +19525,10,31,8,0.0 +19525,52,7,15,0.0 +19525,75,7.75,46,0.0 +19525,12,38,12,0.0 +19526,7,30,46,0.0 +19526,2,19,22,0.0 +19526,53,32.8,30,0.0 +19526,26,31.23,42,0.0 +19526,23,9,25,0.0 +19526,46,12,31,0.0 +19526,28,45.6,5,0.0 +19526,31,12.5,2,0.0 +19526,43,46,23,0.0 +19526,37,26,13,0.0 +19526,70,15,34,0.0 +19526,16,17.45,19,0.0 +19526,67,14,22,0.0 +19526,72,34.8,26,0.0 +19526,9,97,46,0.0 +19526,58,13.25,2,0.0 +19526,44,19.45,35,0.0 +19526,21,10,9,0.0 +19526,1,18,16,0.0 +19526,57,19.5,7,0.0 +19526,27,43.9,1,0.0 +19526,39,18,35,0.0 +19526,45,9.5,49,0.0 +19526,40,18.4,7,0.0 +19526,20,81,21,0.0 +19526,36,19,25,0.0 +19526,60,34,41,0.0 +19526,62,49.3,34,0.0 +19526,75,7.75,13,0.0 +19526,25,14,27,0.0 +19526,17,39,18,0.0 +19526,77,13,31,0.0 +19526,15,15.5,45,0.0 +19526,47,9.5,2,0.0 +19526,54,7.45,25,0.0 +19526,65,21.05,15,0.0 +19526,52,7,44,0.0 +19526,51,53,35,0.0 +19526,34,14,30,0.0 +19526,19,9.2,15,0.0 +19526,69,36,7,0.0 +19526,76,18,24,0.0 +19526,14,23.25,30,0.0 +19526,4,22,44,0.0 +19526,66,17,39,0.0 +19526,42,14,22,0.0 +19526,41,9.65,48,0.0 +19526,29,123.79,40,0.0 +19526,10,31,36,0.0 +19526,50,16.25,5,0.0 +19526,18,62.5,39,0.0 +19526,11,21,50,0.0 +19526,55,24,12,0.0 +19526,59,55,25,0.0 +19526,6,25,21,0.0 +19526,73,15,22,0.0 +19526,35,18,29,0.0 +19526,49,20,47,0.0 +19526,30,25.89,19,0.0 +19526,8,40,27,0.0 +19527,48,12.75,36,0.0 +19527,7,30,30,0.0 +19527,71,21.5,41,0.0 +19527,40,18.4,42,0.0 +19527,72,34.8,49,0.0 +19527,30,25.89,21,0.0 +19527,22,21,46,0.0 +19527,34,14,15,0.0 +19527,39,18,12,0.0 +19527,27,43.9,11,0.0 +19527,25,14,13,0.0 +19527,51,53,4,0.0 +19527,5,21.35,11,0.0 +19527,61,28.5,50,0.0 +19527,47,9.5,11,0.0 +19527,33,2.5,4,0.0 +19527,60,34,29,0.0 +19527,62,49.3,46,0.0 +19527,68,12.5,43,0.0 +19527,74,10,24,0.0 +19527,18,62.5,1,0.0 +19527,70,15,50,0.0 +19527,13,6,40,0.0 +19527,45,9.5,49,0.0 +19527,73,15,33,0.0 +19527,52,7,7,0.0 +19528,66,17,42,0.0 +19528,8,40,38,0.0 +19528,63,43.9,39,0.0 +19528,51,53,24,0.0 +19528,24,4.5,24,0.0 +19528,21,10,32,0.0 +19528,1,18,23,0.0 +19528,25,14,28,0.0 +19528,14,23.25,49,0.0 +19528,44,19.45,14,0.0 +19528,7,30,32,0.0 +19528,69,36,44,0.0 +19528,50,16.25,48,0.0 +19528,12,38,22,0.0 +19528,9,97,31,0.0 +19528,32,32,30,0.0 +19528,35,18,19,0.0 +19528,60,34,36,0.0 +19528,22,21,11,0.0 +19528,54,7.45,47,0.0 +19528,10,31,12,0.0 +19528,42,14,25,0.0 +19528,41,9.65,50,0.0 +19528,65,21.05,42,0.0 +19528,11,21,45,0.0 +19528,45,9.5,6,0.0 +19528,71,21.5,11,0.0 +19528,74,10,45,0.0 +19529,37,26,31,0.0 +19529,73,15,37,0.0 +19529,50,16.25,26,0.0 +19529,5,21.35,10,0.0 +19529,68,12.5,23,0.0 +19529,67,14,19,0.0 +19529,17,39,41,0.0 +19529,47,9.5,30,0.0 +19529,8,40,42,0.0 +19529,38,263.5,47,0.0 +19529,7,30,5,0.0 +19529,34,14,7,0.0 +19529,11,21,23,0.0 +19529,75,7.75,32,0.0 +19529,10,31,30,0.0 +19529,60,34,24,0.0 +19529,43,46,41,0.0 +19529,3,10,18,0.0 +19529,44,19.45,29,0.0 +19529,57,19.5,34,0.0 +19529,13,6,13,0.0 +19530,43,46,24,0.0 +19530,44,19.45,39,0.0 +19530,5,21.35,25,0.0 +19530,10,31,26,0.0 +19530,77,13,37,0.0 +19530,15,15.5,20,0.0 +19530,56,38,48,0.0 +19530,71,21.5,15,0.0 +19530,36,19,26,0.0 +19530,47,9.5,26,0.0 +19530,63,43.9,28,0.0 +19530,45,9.5,33,0.0 +19530,8,40,50,0.0 +19530,61,28.5,33,0.0 +19530,11,21,34,0.0 +19530,3,10,24,0.0 +19530,55,24,9,0.0 +19530,70,15,50,0.0 +19530,19,9.2,5,0.0 +19530,48,12.75,7,0.0 +19530,22,21,6,0.0 +19530,50,16.25,37,0.0 +19530,75,7.75,38,0.0 +19530,35,18,16,0.0 +19530,7,30,28,0.0 +19530,17,39,19,0.0 +19530,59,55,12,0.0 +19531,25,14,32,0.0 +19531,65,21.05,32,0.0 +19531,45,9.5,50,0.0 +19531,8,40,28,0.0 +19531,33,2.5,10,0.0 +19531,9,97,49,0.0 +19531,69,36,49,0.0 +19531,4,22,38,0.0 +19531,70,15,3,0.0 +19531,7,30,22,0.0 +19531,2,19,17,0.0 +19531,15,15.5,19,0.0 +19531,47,9.5,43,0.0 +19531,66,17,30,0.0 +19531,64,33.25,24,0.0 +19531,39,18,21,0.0 +19531,68,12.5,44,0.0 +19531,67,14,26,0.0 +19531,6,25,21,0.0 +19531,36,19,5,0.0 +19531,31,12.5,43,0.0 +19531,46,12,26,0.0 +19531,29,123.79,35,0.0 +19531,74,10,45,0.0 +19531,55,24,14,0.0 +19531,28,45.6,46,0.0 +19531,34,14,47,0.0 +19531,77,13,12,0.0 +19531,51,53,29,0.0 +19531,58,13.25,40,0.0 +19531,10,31,25,0.0 +19532,4,22,2,0.0 +19532,1,18,28,0.0 +19532,28,45.6,2,0.0 +19532,22,21,32,0.0 +19532,76,18,8,0.0 +19532,13,6,16,0.0 +19532,73,15,2,0.0 +19532,18,62.5,49,0.0 +19532,23,9,28,0.0 +19532,58,13.25,4,0.0 +19532,42,14,4,0.0 +19532,26,31.23,36,0.0 +19532,47,9.5,26,0.0 +19532,17,39,20,0.0 +19532,7,30,1,0.0 +19532,38,263.5,5,0.0 +19532,40,18.4,37,0.0 +19532,63,43.9,22,0.0 +19532,21,10,8,0.0 +19532,67,14,40,0.0 +19532,16,17.45,16,0.0 +19532,6,25,8,0.0 +19532,33,2.5,47,0.0 +19532,32,32,14,0.0 +19532,61,28.5,25,0.0 +19532,11,21,16,0.0 +19532,65,21.05,46,0.0 +19532,72,34.8,2,0.0 +19532,20,81,12,0.0 +19532,53,32.8,12,0.0 +19532,54,7.45,1,0.0 +19532,35,18,38,0.0 +19532,12,38,14,0.0 +19532,48,12.75,37,0.0 +19532,10,31,27,0.0 +19532,66,17,18,0.0 +19532,74,10,1,0.0 +19532,15,15.5,31,0.0 +19532,2,19,19,0.0 +19532,69,36,25,0.0 +19532,44,19.45,9,0.0 +19532,75,7.75,48,0.0 +19532,60,34,45,0.0 +19532,68,12.5,14,0.0 +19532,19,9.2,47,0.0 +19532,77,13,25,0.0 +19532,29,123.79,27,0.0 +19532,8,40,30,0.0 +19532,49,20,22,0.0 +19533,42,14,50,0.0 +19533,30,25.89,4,0.0 +19533,18,62.5,16,0.0 +19533,67,14,35,0.0 +19533,37,26,41,0.0 +19533,49,20,10,0.0 +19533,59,55,27,0.0 +19533,46,12,16,0.0 +19533,50,16.25,2,0.0 +19533,73,15,27,0.0 +19533,56,38,13,0.0 +19533,68,12.5,32,0.0 +19533,70,15,37,0.0 +19533,33,2.5,2,0.0 +19533,44,19.45,21,0.0 +19533,38,263.5,39,0.0 +19533,6,25,15,0.0 +19533,26,31.23,50,0.0 +19533,53,32.8,47,0.0 +19533,28,45.6,31,0.0 +19533,65,21.05,45,0.0 +19533,8,40,2,0.0 +19533,19,9.2,12,0.0 +19533,61,28.5,47,0.0 +19533,5,21.35,22,0.0 +19533,34,14,18,0.0 +19533,75,7.75,43,0.0 +19533,60,34,37,0.0 +19533,13,6,9,0.0 +19533,69,36,26,0.0 +19533,14,23.25,50,0.0 +19533,74,10,24,0.0 +19533,1,18,41,0.0 +19533,71,21.5,9,0.0 +19533,3,10,21,0.0 +19533,31,12.5,18,0.0 +19533,12,38,26,0.0 +19533,11,21,9,0.0 +19533,41,9.65,37,0.0 +19533,54,7.45,10,0.0 +19533,47,9.5,16,0.0 +19533,66,17,29,0.0 +19533,16,17.45,35,0.0 +19533,57,19.5,11,0.0 +19533,51,53,2,0.0 +19533,4,22,28,0.0 +19533,35,18,24,0.0 +19533,10,31,23,0.0 +19533,15,15.5,49,0.0 +19533,52,7,46,0.0 +19534,63,43.9,17,0.0 +19534,3,10,33,0.0 +19534,26,31.23,20,0.0 +19534,73,15,20,0.0 +19534,42,14,27,0.0 +19534,41,9.65,20,0.0 +19534,56,38,29,0.0 +19534,1,18,35,0.0 +19534,10,31,3,0.0 +19534,53,32.8,23,0.0 +19534,65,21.05,32,0.0 +19534,39,18,50,0.0 +19535,69,36,9,0.0 +19535,19,9.2,50,0.0 +19535,41,9.65,9,0.0 +19535,8,40,42,0.0 +19535,27,43.9,48,0.0 +19535,55,24,47,0.0 +19535,63,43.9,26,0.0 +19535,31,12.5,40,0.0 +19535,50,16.25,42,0.0 +19535,45,9.5,29,0.0 +19535,52,7,43,0.0 +19535,71,21.5,29,0.0 +19535,54,7.45,33,0.0 +19535,62,49.3,25,0.0 +19535,33,2.5,33,0.0 +19535,22,21,10,0.0 +19535,13,6,34,0.0 +19535,38,263.5,47,0.0 +19535,66,17,21,0.0 +19536,77,13,3,0.0 +19536,66,17,30,0.0 +19536,46,12,37,0.0 +19536,61,28.5,36,0.0 +19536,38,263.5,10,0.0 +19536,32,32,22,0.0 +19536,2,19,35,0.0 +19536,16,17.45,8,0.0 +19536,69,36,6,0.0 +19536,40,18.4,45,0.0 +19536,43,46,46,0.0 +19536,28,45.6,46,0.0 +19536,29,123.79,44,0.0 +19536,39,18,16,0.0 +19536,15,15.5,39,0.0 +19536,27,43.9,6,0.0 +19536,75,7.75,23,0.0 +19536,8,40,2,0.0 +19536,57,19.5,17,0.0 +19536,30,25.89,3,0.0 +19536,23,9,24,0.0 +19536,33,2.5,23,0.0 +19536,5,21.35,11,0.0 +19536,72,34.8,9,0.0 +19536,13,6,48,0.0 +19536,51,53,30,0.0 +19536,1,18,43,0.0 +19536,68,12.5,9,0.0 +19536,9,97,21,0.0 +19536,7,30,21,0.0 +19536,25,14,33,0.0 +19536,42,14,42,0.0 +19536,37,26,18,0.0 +19536,60,34,45,0.0 +19537,19,9.2,41,0.0 +19537,30,25.89,8,0.0 +19537,42,14,2,0.0 +19537,58,13.25,10,0.0 +19537,46,12,30,0.0 +19537,14,23.25,44,0.0 +19537,7,30,7,0.0 +19537,5,21.35,42,0.0 +19537,47,9.5,46,0.0 +19537,16,17.45,10,0.0 +19537,17,39,4,0.0 +19537,1,18,30,0.0 +19537,69,36,45,0.0 +19537,35,18,48,0.0 +19537,44,19.45,15,0.0 +19537,36,19,47,0.0 +19537,8,40,42,0.0 +19537,59,55,5,0.0 +19537,70,15,13,0.0 +19537,68,12.5,23,0.0 +19537,71,21.5,15,0.0 +19537,67,14,45,0.0 +19537,53,32.8,47,0.0 +19537,37,26,45,0.0 +19537,57,19.5,48,0.0 +19537,60,34,28,0.0 +19537,76,18,23,0.0 +19537,56,38,22,0.0 +19537,13,6,8,0.0 +19537,25,14,45,0.0 +19537,4,22,45,0.0 +19537,61,28.5,42,0.0 +19537,15,15.5,44,0.0 +19537,23,9,15,0.0 +19537,64,33.25,18,0.0 +19537,65,21.05,1,0.0 +19537,62,49.3,36,0.0 +19538,20,81,23,0.0 +19538,41,9.65,43,0.0 +19538,18,62.5,24,0.0 +19538,19,9.2,1,0.0 +19538,11,21,10,0.0 +19538,8,40,30,0.0 +19538,14,23.25,43,0.0 +19538,28,45.6,21,0.0 +19538,5,21.35,38,0.0 +19538,65,21.05,19,0.0 +19538,43,46,18,0.0 +19538,68,12.5,44,0.0 +19538,72,34.8,12,0.0 +19538,59,55,49,0.0 +19538,10,31,40,0.0 +19538,55,24,23,0.0 +19538,69,36,41,0.0 +19538,3,10,8,0.0 +19538,47,9.5,49,0.0 +19538,61,28.5,44,0.0 +19538,57,19.5,12,0.0 +19538,1,18,30,0.0 +19538,53,32.8,13,0.0 +19538,6,25,12,0.0 +19538,29,123.79,37,0.0 +19539,74,10,32,0.0 +19539,28,45.6,28,0.0 +19539,36,19,26,0.0 +19539,13,6,11,0.0 +19539,4,22,32,0.0 +19539,22,21,36,0.0 +19539,3,10,22,0.0 +19539,63,43.9,43,0.0 +19539,66,17,47,0.0 +19539,21,10,33,0.0 +19539,35,18,37,0.0 +19539,71,21.5,31,0.0 +19539,8,40,29,0.0 +19539,33,2.5,9,0.0 +19539,75,7.75,46,0.0 +19539,34,14,18,0.0 +19539,31,12.5,45,0.0 +19539,55,24,25,0.0 +19539,69,36,46,0.0 +19539,49,20,47,0.0 +19540,8,40,49,0.0 +19540,58,13.25,4,0.0 +19540,70,15,3,0.0 +19540,26,31.23,23,0.0 +19540,3,10,31,0.0 +19540,18,62.5,17,0.0 +19540,38,263.5,13,0.0 +19540,55,24,7,0.0 +19540,65,21.05,46,0.0 +19540,52,7,13,0.0 +19540,16,17.45,12,0.0 +19540,28,45.6,23,0.0 +19540,36,19,42,0.0 +19540,11,21,42,0.0 +19540,14,23.25,50,0.0 +19540,69,36,40,0.0 +19540,22,21,22,0.0 +19540,10,31,36,0.0 +19540,21,10,6,0.0 +19540,67,14,10,0.0 +19540,48,12.75,10,0.0 +19540,4,22,21,0.0 +19540,49,20,23,0.0 +19540,40,18.4,32,0.0 +19540,59,55,42,0.0 +19540,60,34,45,0.0 +19540,54,7.45,19,0.0 +19540,61,28.5,14,0.0 +19540,71,21.5,27,0.0 +19540,39,18,20,0.0 +19540,57,19.5,21,0.0 +19540,12,38,9,0.0 +19540,73,15,47,0.0 +19540,25,14,14,0.0 +19540,13,6,42,0.0 +19540,64,33.25,4,0.0 +19540,9,97,10,0.0 +19540,63,43.9,11,0.0 +19540,20,81,39,0.0 +19540,6,25,21,0.0 +19540,30,25.89,31,0.0 +19540,5,21.35,23,0.0 +19540,46,12,43,0.0 +19540,72,34.8,22,0.0 +19540,7,30,46,0.0 +19540,74,10,10,0.0 +19540,77,13,33,0.0 +19540,66,17,6,0.0 +19540,56,38,34,0.0 +19540,44,19.45,23,0.0 +19540,42,14,26,0.0 +19540,76,18,48,0.0 +19540,43,46,3,0.0 +19541,46,12,12,0.0 +19541,75,7.75,5,0.0 +19541,14,23.25,48,0.0 +19541,72,34.8,47,0.0 +19541,69,36,20,0.0 +19541,59,55,14,0.0 +19541,57,19.5,46,0.0 +19541,76,18,36,0.0 +19541,25,14,12,0.0 +19541,58,13.25,38,0.0 +19541,66,17,29,0.0 +19541,60,34,45,0.0 +19541,27,43.9,17,0.0 +19541,40,18.4,20,0.0 +19541,71,21.5,40,0.0 +19541,73,15,29,0.0 +19541,43,46,9,0.0 +19541,67,14,11,0.0 +19541,36,19,38,0.0 +19541,26,31.23,40,0.0 +19541,65,21.05,1,0.0 +19541,3,10,7,0.0 +19541,41,9.65,7,0.0 +19541,13,6,45,0.0 +19541,21,10,48,0.0 +19541,28,45.6,7,0.0 +19541,34,14,34,0.0 +19541,30,25.89,26,0.0 +19541,16,17.45,28,0.0 +19541,32,32,36,0.0 +19541,2,19,48,0.0 +19541,18,62.5,2,0.0 +19541,11,21,2,0.0 +19541,38,263.5,33,0.0 +19541,4,22,4,0.0 +19541,12,38,7,0.0 +19541,31,12.5,3,0.0 +19541,44,19.45,45,0.0 +19541,7,30,21,0.0 +19541,56,38,22,0.0 +19541,47,9.5,23,0.0 +19541,9,97,4,0.0 +19541,52,7,32,0.0 +19541,24,4.5,45,0.0 +19541,48,12.75,38,0.0 +19541,42,14,17,0.0 +19541,10,31,50,0.0 +19541,63,43.9,34,0.0 +19541,45,9.5,5,0.0 +19541,19,9.2,42,0.0 +19541,22,21,2,0.0 +19541,53,32.8,31,0.0 +19541,39,18,22,0.0 +19541,68,12.5,1,0.0 +19541,62,49.3,17,0.0 +19541,17,39,28,0.0 +19541,61,28.5,47,0.0 +19541,5,21.35,2,0.0 +19541,77,13,45,0.0 +19541,64,33.25,48,0.0 +19541,23,9,47,0.0 +19541,20,81,8,0.0 +19541,15,15.5,3,0.0 +19541,33,2.5,3,0.0 +19541,54,7.45,6,0.0 +19541,74,10,2,0.0 +19541,37,26,44,0.0 +19541,49,20,21,0.0 +19541,51,53,27,0.0 +19541,55,24,42,0.0 +19541,35,18,4,0.0 +19541,8,40,18,0.0 +19541,6,25,14,0.0 +19541,1,18,38,0.0 +19542,41,9.65,14,0.0 +19542,18,62.5,37,0.0 +19542,16,17.45,36,0.0 +19542,48,12.75,43,0.0 +19542,46,12,30,0.0 +19542,29,123.79,14,0.0 +19542,50,16.25,44,0.0 +19542,6,25,38,0.0 +19542,20,81,47,0.0 +19542,52,7,11,0.0 +19542,38,263.5,11,0.0 +19542,42,14,35,0.0 +19542,28,45.6,21,0.0 +19542,55,24,30,0.0 +19542,37,26,8,0.0 +19542,14,23.25,5,0.0 +19542,47,9.5,24,0.0 +19542,3,10,29,0.0 +19542,34,14,5,0.0 +19542,33,2.5,17,0.0 +19542,54,7.45,14,0.0 +19542,11,21,14,0.0 +19542,35,18,47,0.0 +19542,45,9.5,41,0.0 +19542,74,10,43,0.0 +19542,24,4.5,32,0.0 +19542,68,12.5,28,0.0 +19542,61,28.5,21,0.0 +19542,26,31.23,29,0.0 +19542,1,18,25,0.0 +19542,75,7.75,14,0.0 +19542,5,21.35,46,0.0 +19542,25,14,11,0.0 +19542,67,14,18,0.0 +19542,59,55,5,0.0 +19542,64,33.25,22,0.0 +19542,31,12.5,34,0.0 +19542,69,36,8,0.0 +19543,74,10,20,0.0 +19543,37,26,45,0.0 +19543,41,9.65,41,0.0 +19543,52,7,47,0.0 +19543,66,17,29,0.0 +19543,57,19.5,18,0.0 +19543,34,14,33,0.0 +19543,68,12.5,24,0.0 +19543,38,263.5,34,0.0 +19543,75,7.75,29,0.0 +19543,51,53,15,0.0 +19543,54,7.45,48,0.0 +19543,27,43.9,29,0.0 +19543,33,2.5,35,0.0 +19543,58,13.25,45,0.0 +19543,42,14,29,0.0 +19543,16,17.45,36,0.0 +19543,71,21.5,7,0.0 +19543,20,81,23,0.0 +19543,61,28.5,36,0.0 +19543,4,22,29,0.0 +19543,35,18,10,0.0 +19543,39,18,5,0.0 +19543,45,9.5,8,0.0 +19543,65,21.05,34,0.0 +19543,19,9.2,48,0.0 +19543,11,21,45,0.0 +19543,18,62.5,27,0.0 +19543,64,33.25,38,0.0 +19543,26,31.23,3,0.0 +19543,32,32,17,0.0 +19543,21,10,27,0.0 +19543,31,12.5,40,0.0 +19543,62,49.3,41,0.0 +19543,67,14,44,0.0 +19543,72,34.8,6,0.0 +19543,49,20,46,0.0 +19543,46,12,32,0.0 +19543,73,15,16,0.0 +19543,8,40,8,0.0 +19543,9,97,40,0.0 +19543,23,9,11,0.0 +19543,5,21.35,25,0.0 +19543,60,34,6,0.0 +19543,12,38,8,0.0 +19543,10,31,25,0.0 +19543,22,21,29,0.0 +19543,55,24,17,0.0 +19543,70,15,39,0.0 +19543,7,30,26,0.0 +19543,47,9.5,1,0.0 +19543,25,14,24,0.0 +19543,40,18.4,37,0.0 +19543,56,38,6,0.0 +19543,28,45.6,25,0.0 +19543,29,123.79,28,0.0 +19543,6,25,31,0.0 +19543,77,13,7,0.0 +19543,17,39,34,0.0 +19543,44,19.45,32,0.0 +19543,13,6,23,0.0 +19543,76,18,24,0.0 +19543,30,25.89,7,0.0 +19543,63,43.9,34,0.0 +19543,50,16.25,46,0.0 +19543,48,12.75,45,0.0 +19543,24,4.5,22,0.0 +19543,43,46,40,0.0 +19543,14,23.25,40,0.0 +19544,58,13.25,13,0.0 +19544,24,4.5,37,0.0 +19544,27,43.9,31,0.0 +19544,5,21.35,40,0.0 +19544,53,32.8,44,0.0 +19544,15,15.5,12,0.0 +19544,65,21.05,16,0.0 +19544,41,9.65,5,0.0 +19544,13,6,45,0.0 +19544,54,7.45,6,0.0 +19544,30,25.89,11,0.0 +19544,71,21.5,20,0.0 +19544,28,45.6,32,0.0 +19544,31,12.5,32,0.0 +19544,57,19.5,11,0.0 +19544,76,18,48,0.0 +19544,49,20,4,0.0 +19544,47,9.5,48,0.0 +19544,72,34.8,38,0.0 +19544,1,18,6,0.0 +19544,35,18,46,0.0 +19544,63,43.9,23,0.0 +19544,45,9.5,8,0.0 +19544,66,17,24,0.0 +19544,18,62.5,7,0.0 +19544,4,22,36,0.0 +19544,37,26,10,0.0 +19544,19,9.2,23,0.0 +19544,75,7.75,1,0.0 +19544,64,33.25,34,0.0 +19544,74,10,4,0.0 +19544,51,53,9,0.0 +19544,34,14,26,0.0 +19544,59,55,50,0.0 +19544,67,14,18,0.0 +19544,52,7,18,0.0 +19544,61,28.5,30,0.0 +19544,26,31.23,29,0.0 +19544,20,81,15,0.0 +19544,8,40,37,0.0 +19544,43,46,22,0.0 +19544,25,14,18,0.0 +19544,23,9,46,0.0 +19544,55,24,17,0.0 +19544,33,2.5,23,0.0 +19544,17,39,11,0.0 +19544,77,13,32,0.0 +19544,22,21,49,0.0 +19544,16,17.45,26,0.0 +19544,48,12.75,36,0.0 +19544,2,19,20,0.0 +19544,29,123.79,5,0.0 +19544,9,97,47,0.0 +19544,68,12.5,38,0.0 +19544,36,19,26,0.0 +19544,38,263.5,47,0.0 +19544,62,49.3,32,0.0 +19544,60,34,10,0.0 +19544,69,36,33,0.0 +19544,44,19.45,50,0.0 +19544,21,10,6,0.0 +19544,12,38,25,0.0 +19544,39,18,8,0.0 +19544,3,10,19,0.0 +19544,11,21,40,0.0 +19545,8,40,37,0.0 +19545,57,19.5,8,0.0 +19545,39,18,12,0.0 +19545,27,43.9,4,0.0 +19545,50,16.25,49,0.0 +19545,5,21.35,22,0.0 +19545,66,17,25,0.0 +19545,26,31.23,45,0.0 +19545,32,32,19,0.0 +19545,13,6,38,0.0 +19545,36,19,29,0.0 +19545,3,10,38,0.0 +19545,52,7,48,0.0 +19545,48,12.75,2,0.0 +19545,41,9.65,50,0.0 +19545,20,81,13,0.0 +19545,6,25,48,0.0 +19545,1,18,31,0.0 +19545,4,22,30,0.0 +19545,77,13,38,0.0 +19545,19,9.2,44,0.0 +19545,21,10,28,0.0 +19545,49,20,23,0.0 +19546,31,12.5,34,0.0 +19546,37,26,43,0.0 +19546,28,45.6,36,0.0 +19546,6,25,37,0.0 +19546,3,10,11,0.0 +19546,74,10,24,0.0 +19546,4,22,8,0.0 +19546,64,33.25,7,0.0 +19546,53,32.8,20,0.0 +19546,23,9,38,0.0 +19546,71,21.5,27,0.0 +19546,14,23.25,42,0.0 +19546,69,36,47,0.0 +19546,44,19.45,9,0.0 +19546,66,17,37,0.0 +19546,9,97,2,0.0 +19546,45,9.5,40,0.0 +19546,39,18,4,0.0 +19546,38,263.5,29,0.0 +19546,61,28.5,29,0.0 +19546,18,62.5,4,0.0 +19546,54,7.45,9,0.0 +19546,24,4.5,9,0.0 +19546,52,7,20,0.0 +19546,57,19.5,46,0.0 +19546,25,14,43,0.0 +19546,56,38,3,0.0 +19546,11,21,3,0.0 +19546,2,19,37,0.0 +19546,36,19,28,0.0 +19546,33,2.5,1,0.0 +19546,13,6,42,0.0 +19546,60,34,16,0.0 +19546,58,13.25,32,0.0 +19546,10,31,6,0.0 +19546,19,9.2,43,0.0 +19546,63,43.9,14,0.0 +19546,72,34.8,6,0.0 +19546,35,18,1,0.0 +19546,50,16.25,23,0.0 +19546,21,10,1,0.0 +19546,55,24,41,0.0 +19546,16,17.45,42,0.0 +19546,22,21,4,0.0 +19547,4,22,40,0.0 +19547,29,123.79,23,0.0 +19547,13,6,15,0.0 +19547,68,12.5,21,0.0 +19547,11,21,5,0.0 +19547,37,26,47,0.0 +19547,24,4.5,13,0.0 +19547,12,38,25,0.0 +19547,36,19,27,0.0 +19547,64,33.25,25,0.0 +19547,51,53,32,0.0 +19547,5,21.35,36,0.0 +19547,20,81,25,0.0 +19547,23,9,49,0.0 +19547,39,18,14,0.0 +19547,14,23.25,35,0.0 +19547,63,43.9,1,0.0 +19547,47,9.5,22,0.0 +19547,75,7.75,40,0.0 +19547,62,49.3,21,0.0 +19547,17,39,20,0.0 +19547,33,2.5,45,0.0 +19547,66,17,48,0.0 +19547,2,19,26,0.0 +19547,40,18.4,24,0.0 +19547,49,20,34,0.0 +19547,7,30,41,0.0 +19547,59,55,36,0.0 +19547,55,24,5,0.0 +19547,31,12.5,24,0.0 +19547,8,40,13,0.0 +19547,53,32.8,47,0.0 +19547,32,32,34,0.0 +19547,54,7.45,4,0.0 +19547,58,13.25,39,0.0 +19547,70,15,14,0.0 +19547,10,31,14,0.0 +19547,46,12,25,0.0 +19547,19,9.2,17,0.0 +19547,35,18,13,0.0 +19547,45,9.5,48,0.0 +19547,44,19.45,16,0.0 +19547,22,21,39,0.0 +19547,18,62.5,21,0.0 +19547,72,34.8,33,0.0 +19547,38,263.5,10,0.0 +19547,71,21.5,29,0.0 +19547,21,10,7,0.0 +19547,34,14,34,0.0 +19547,30,25.89,5,0.0 +19547,52,7,42,0.0 +19547,42,14,19,0.0 +19547,15,15.5,30,0.0 +19547,65,21.05,46,0.0 +19547,27,43.9,45,0.0 +19547,6,25,17,0.0 +19547,41,9.65,23,0.0 +19547,57,19.5,47,0.0 +19547,9,97,15,0.0 +19547,50,16.25,4,0.0 +19548,7,30,40,0.0 +19548,70,15,47,0.0 +19548,57,19.5,22,0.0 +19548,51,53,2,0.0 +19548,69,36,25,0.0 +19548,14,23.25,46,0.0 +19548,13,6,27,0.0 +19548,6,25,13,0.0 +19548,9,97,32,0.0 +19548,43,46,23,0.0 +19548,46,12,23,0.0 +19548,65,21.05,12,0.0 +19548,15,15.5,44,0.0 +19548,12,38,6,0.0 +19548,40,18.4,24,0.0 +19548,20,81,49,0.0 +19548,54,7.45,1,0.0 +19548,76,18,28,0.0 +19548,64,33.25,31,0.0 +19548,4,22,19,0.0 +19548,59,55,35,0.0 +19548,11,21,19,0.0 +19548,50,16.25,47,0.0 +19548,18,62.5,37,0.0 +19548,47,9.5,35,0.0 +19548,42,14,38,0.0 +19548,36,19,10,0.0 +19548,56,38,45,0.0 +19548,10,31,21,0.0 +19548,21,10,49,0.0 +19548,24,4.5,2,0.0 +19548,5,21.35,39,0.0 +19548,17,39,18,0.0 +19548,66,17,3,0.0 +19548,39,18,20,0.0 +19548,58,13.25,21,0.0 +19548,53,32.8,24,0.0 +19548,19,9.2,11,0.0 +19548,74,10,4,0.0 +19548,44,19.45,22,0.0 +19548,73,15,12,0.0 +19548,28,45.6,35,0.0 +19548,27,43.9,47,0.0 +19548,31,12.5,18,0.0 +19548,37,26,50,0.0 +19548,33,2.5,16,0.0 +19548,55,24,28,0.0 +19548,1,18,48,0.0 +19548,23,9,5,0.0 +19548,77,13,11,0.0 +19548,48,12.75,49,0.0 +19548,75,7.75,27,0.0 +19549,12,38,28,0.0 +19549,52,7,14,0.0 +19549,49,20,50,0.0 +19549,18,62.5,20,0.0 +19549,77,13,50,0.0 +19549,22,21,43,0.0 +19549,45,9.5,48,0.0 +19549,33,2.5,45,0.0 +19549,15,15.5,30,0.0 +19549,57,19.5,5,0.0 +19549,64,33.25,28,0.0 +19549,47,9.5,22,0.0 +19549,43,46,10,0.0 +19549,20,81,2,0.0 +19549,44,19.45,26,0.0 +19549,56,38,6,0.0 +19549,17,39,31,0.0 +19549,29,123.79,42,0.0 +19549,38,263.5,45,0.0 +19549,3,10,5,0.0 +19549,50,16.25,4,0.0 +19549,74,10,32,0.0 +19549,65,21.05,44,0.0 +19549,14,23.25,15,0.0 +19549,36,19,3,0.0 +19549,16,17.45,45,0.0 +19549,6,25,45,0.0 +19549,9,97,15,0.0 +19549,46,12,17,0.0 +19549,70,15,11,0.0 +19549,72,34.8,12,0.0 +19549,71,21.5,10,0.0 +19549,4,22,4,0.0 +19549,26,31.23,45,0.0 +19549,27,43.9,32,0.0 +19549,7,30,50,0.0 +19549,51,53,30,0.0 +19549,69,36,5,0.0 +19549,73,15,14,0.0 +19549,75,7.75,3,0.0 +19549,21,10,8,0.0 +19549,60,34,26,0.0 +19549,32,32,39,0.0 +19549,53,32.8,18,0.0 +19549,10,31,20,0.0 +19549,59,55,33,0.0 +19549,34,14,30,0.0 +19549,13,6,46,0.0 +19549,41,9.65,14,0.0 +19549,25,14,47,0.0 +19549,37,26,15,0.0 +19549,55,24,3,0.0 +19549,8,40,36,0.0 +19549,19,9.2,49,0.0 +19549,31,12.5,5,0.0 +19549,76,18,45,0.0 +19549,23,9,26,0.0 +19549,28,45.6,47,0.0 +19549,67,14,35,0.0 +19549,58,13.25,30,0.0 +19549,30,25.89,28,0.0 +19549,1,18,14,0.0 +19549,66,17,10,0.0 +19550,43,46,17,0.0 +19550,3,10,6,0.0 +19550,29,123.79,18,0.0 +19550,14,23.25,9,0.0 +19550,56,38,48,0.0 +19550,72,34.8,47,0.0 +19550,60,34,44,0.0 +19550,7,30,29,0.0 +19550,53,32.8,21,0.0 +19550,71,21.5,23,0.0 +19550,63,43.9,32,0.0 +19550,75,7.75,36,0.0 +19550,24,4.5,8,0.0 +19550,28,45.6,48,0.0 +19550,37,26,27,0.0 +19550,33,2.5,36,0.0 +19550,58,13.25,38,0.0 +19550,19,9.2,15,0.0 +19550,68,12.5,30,0.0 +19550,57,19.5,18,0.0 +19550,9,97,28,0.0 +19550,11,21,21,0.0 +19550,8,40,1,0.0 +19550,54,7.45,29,0.0 +19550,25,14,19,0.0 +19550,34,14,48,0.0 +19550,77,13,23,0.0 +19550,49,20,43,0.0 +19550,76,18,38,0.0 +19550,52,7,13,0.0 +19550,2,19,23,0.0 +19551,27,43.9,28,0.0 +19551,61,28.5,34,0.0 +19551,63,43.9,40,0.0 +19551,26,31.23,45,0.0 +19551,42,14,37,0.0 +19551,67,14,14,0.0 +19551,70,15,34,0.0 +19551,12,38,2,0.0 +19551,30,25.89,14,0.0 +19551,73,15,14,0.0 +19551,43,46,8,0.0 +19551,56,38,17,0.0 +19551,39,18,11,0.0 +19551,72,34.8,18,0.0 +19551,5,21.35,18,0.0 +19551,51,53,48,0.0 +19551,49,20,30,0.0 +19551,62,49.3,39,0.0 +19552,23,9,20,0.0 +19552,18,62.5,46,0.0 +19552,36,19,35,0.0 +19553,29,123.79,31,0.0 +19553,20,81,38,0.0 +19553,35,18,47,0.0 +19553,32,32,7,0.0 +19553,33,2.5,50,0.0 +19553,66,17,43,0.0 +19553,27,43.9,8,0.0 +19553,38,263.5,14,0.0 +19553,58,13.25,33,0.0 +19553,14,23.25,43,0.0 +19553,77,13,38,0.0 +19553,4,22,43,0.0 +19553,62,49.3,2,0.0 +19553,72,34.8,15,0.0 +19553,2,19,16,0.0 +19553,55,24,24,0.0 +19553,44,19.45,18,0.0 +19553,3,10,19,0.0 +19553,61,28.5,10,0.0 +19553,6,25,31,0.0 +19553,43,46,41,0.0 +19553,5,21.35,45,0.0 +19553,59,55,14,0.0 +19553,10,31,7,0.0 +19553,70,15,31,0.0 +19553,40,18.4,28,0.0 +19553,25,14,27,0.0 +19553,8,40,24,0.0 +19553,37,26,40,0.0 +19553,19,9.2,11,0.0 +19553,24,4.5,13,0.0 +19553,30,25.89,24,0.0 +19553,16,17.45,39,0.0 +19553,23,9,18,0.0 +19553,49,20,34,0.0 +19553,42,14,5,0.0 +19553,21,10,11,0.0 +19553,71,21.5,20,0.0 +19553,73,15,30,0.0 +19553,76,18,44,0.0 +19553,17,39,1,0.0 +19553,46,12,24,0.0 +19553,7,30,27,0.0 +19553,26,31.23,40,0.0 +19553,74,10,10,0.0 +19553,9,97,22,0.0 +19553,64,33.25,12,0.0 +19553,65,21.05,39,0.0 +19553,15,15.5,49,0.0 +19553,41,9.65,24,0.0 +19553,18,62.5,40,0.0 +19553,22,21,9,0.0 +19553,69,36,27,0.0 +19553,67,14,20,0.0 +19553,56,38,29,0.0 +19553,53,32.8,4,0.0 +19553,63,43.9,40,0.0 +19553,54,7.45,24,0.0 +19553,60,34,9,0.0 +19553,51,53,9,0.0 +19553,28,45.6,27,0.0 +19553,12,38,19,0.0 +19553,50,16.25,8,0.0 +19554,34,14,21,0.0 +19554,68,12.5,47,0.0 +19554,57,19.5,13,0.0 +19554,50,16.25,32,0.0 +19554,27,43.9,27,0.0 +19554,45,9.5,8,0.0 +19554,30,25.89,8,0.0 +19554,71,21.5,19,0.0 +19554,38,263.5,28,0.0 +19554,21,10,37,0.0 +19554,26,31.23,30,0.0 +19554,60,34,4,0.0 +19554,59,55,43,0.0 +19554,10,31,19,0.0 +19554,33,2.5,6,0.0 +19554,73,15,26,0.0 +19554,17,39,13,0.0 +19554,62,49.3,11,0.0 +19554,9,97,13,0.0 +19554,23,9,9,0.0 +19554,7,30,44,0.0 +19554,6,25,44,0.0 +19554,11,21,22,0.0 +19554,24,4.5,46,0.0 +19554,65,21.05,44,0.0 +19554,37,26,1,0.0 +19554,40,18.4,26,0.0 +19554,54,7.45,36,0.0 +19554,22,21,19,0.0 +19554,25,14,37,0.0 +19554,39,18,41,0.0 +19554,49,20,29,0.0 +19554,41,9.65,25,0.0 +19554,8,40,10,0.0 +19554,56,38,34,0.0 +19554,72,34.8,26,0.0 +19554,64,33.25,45,0.0 +19554,61,28.5,21,0.0 +19554,44,19.45,44,0.0 +19554,63,43.9,4,0.0 +19554,53,32.8,23,0.0 +19554,46,12,12,0.0 +19554,29,123.79,28,0.0 +19554,15,15.5,44,0.0 +19554,48,12.75,8,0.0 +19554,14,23.25,49,0.0 +19554,18,62.5,33,0.0 +19554,70,15,48,0.0 +19554,43,46,1,0.0 +19554,16,17.45,29,0.0 +19554,13,6,23,0.0 +19554,5,21.35,36,0.0 +19554,31,12.5,16,0.0 +19554,51,53,42,0.0 +19554,77,13,48,0.0 +19554,42,14,2,0.0 +19554,12,38,40,0.0 +19554,47,9.5,22,0.0 +19554,32,32,38,0.0 +19554,66,17,2,0.0 +19554,3,10,34,0.0 +19554,69,36,13,0.0 +19554,28,45.6,20,0.0 +19554,20,81,28,0.0 +19554,4,22,48,0.0 +19554,76,18,33,0.0 +19554,55,24,50,0.0 +19554,36,19,2,0.0 +19554,58,13.25,49,0.0 +19554,35,18,39,0.0 +19554,1,18,21,0.0 +19554,74,10,10,0.0 +19554,52,7,30,0.0 +19554,67,14,43,0.0 +19554,75,7.75,44,0.0 +19554,2,19,10,0.0 +19555,28,45.6,32,0.0 +19555,47,9.5,33,0.0 +19555,76,18,38,0.0 +19555,40,18.4,35,0.0 +19555,51,53,48,0.0 +19555,74,10,48,0.0 +19555,10,31,10,0.0 +19555,35,18,23,0.0 +19555,34,14,43,0.0 +19555,32,32,33,0.0 +19555,4,22,33,0.0 +19555,72,34.8,40,0.0 +19555,49,20,25,0.0 +19555,44,19.45,41,0.0 +19555,7,30,31,0.0 +19555,13,6,23,0.0 +19555,19,9.2,15,0.0 +19555,33,2.5,14,0.0 +19555,55,24,15,0.0 +19555,26,31.23,26,0.0 +19555,30,25.89,4,0.0 +19555,41,9.65,17,0.0 +19555,70,15,11,0.0 +19555,52,7,20,0.0 +19555,38,263.5,43,0.0 +19555,61,28.5,26,0.0 +19555,62,49.3,19,0.0 +19555,6,25,34,0.0 +19555,37,26,12,0.0 +19555,27,43.9,34,0.0 +19555,1,18,41,0.0 +19555,42,14,19,0.0 +19555,73,15,3,0.0 +19555,5,21.35,15,0.0 +19555,43,46,41,0.0 +19555,15,15.5,49,0.0 +19555,48,12.75,39,0.0 +19555,31,12.5,39,0.0 +19555,57,19.5,2,0.0 +19555,65,21.05,6,0.0 +19555,59,55,10,0.0 +19555,58,13.25,12,0.0 +19555,64,33.25,44,0.0 +19556,35,18,46,0.0 +19556,34,14,27,0.0 +19556,44,19.45,22,0.0 +19556,25,14,31,0.0 +19556,52,7,45,0.0 +19556,62,49.3,47,0.0 +19556,24,4.5,4,0.0 +19556,17,39,48,0.0 +19556,30,25.89,31,0.0 +19556,15,15.5,36,0.0 +19556,71,21.5,29,0.0 +19556,68,12.5,33,0.0 +19556,12,38,16,0.0 +19556,40,18.4,28,0.0 +19556,47,9.5,21,0.0 +19556,37,26,16,0.0 +19556,26,31.23,29,0.0 +19556,53,32.8,42,0.0 +19556,14,23.25,14,0.0 +19556,69,36,36,0.0 +19556,28,45.6,2,0.0 +19556,13,6,46,0.0 +19556,7,30,7,0.0 +19556,65,21.05,10,0.0 +19556,31,12.5,38,0.0 +19556,56,38,45,0.0 +19556,58,13.25,45,0.0 +19556,64,33.25,22,0.0 +19556,55,24,18,0.0 +19556,74,10,44,0.0 +19556,6,25,13,0.0 +19556,39,18,9,0.0 +19556,63,43.9,33,0.0 +19556,70,15,45,0.0 +19556,66,17,42,0.0 +19556,8,40,4,0.0 +19556,5,21.35,43,0.0 +19556,18,62.5,7,0.0 +19556,59,55,46,0.0 +19556,76,18,2,0.0 +19557,40,18.4,6,0.0 +19557,27,43.9,3,0.0 +19557,33,2.5,21,0.0 +19557,60,34,36,0.0 +19557,2,19,16,0.0 +19557,39,18,45,0.0 +19557,10,31,5,0.0 +19557,7,30,27,0.0 +19557,45,9.5,45,0.0 +19557,19,9.2,6,0.0 +19557,24,4.5,40,0.0 +19557,8,40,26,0.0 +19557,74,10,25,0.0 +19557,71,21.5,31,0.0 +19557,57,19.5,7,0.0 +19557,46,12,21,0.0 +19557,35,18,22,0.0 +19558,64,33.25,45,0.0 +19558,63,43.9,37,0.0 +19558,24,4.5,42,0.0 +19558,67,14,46,0.0 +19558,46,12,25,0.0 +19558,62,49.3,37,0.0 +19558,6,25,34,0.0 +19558,16,17.45,28,0.0 +19558,56,38,3,0.0 +19558,33,2.5,22,0.0 +19558,14,23.25,49,0.0 +19558,41,9.65,21,0.0 +19558,35,18,21,0.0 +19558,21,10,3,0.0 +19558,45,9.5,44,0.0 +19558,1,18,1,0.0 +19558,28,45.6,45,0.0 +19558,9,97,24,0.0 +19558,74,10,28,0.0 +19558,38,263.5,27,0.0 +19558,30,25.89,48,0.0 +19558,52,7,14,0.0 +19558,31,12.5,32,0.0 +19558,20,81,40,0.0 +19558,12,38,8,0.0 +19558,60,34,22,0.0 +19558,39,18,45,0.0 +19558,42,14,37,0.0 +19558,25,14,9,0.0 +19558,32,32,50,0.0 +19558,27,43.9,4,0.0 +19558,37,26,19,0.0 +19558,50,16.25,4,0.0 +19558,69,36,29,0.0 +19558,15,15.5,9,0.0 +19558,61,28.5,45,0.0 +19558,53,32.8,28,0.0 +19558,47,9.5,17,0.0 +19558,23,9,26,0.0 +19558,44,19.45,25,0.0 +19558,43,46,48,0.0 +19558,18,62.5,12,0.0 +19558,34,14,11,0.0 +19558,70,15,33,0.0 +19558,5,21.35,50,0.0 +19558,76,18,25,0.0 +19558,7,30,45,0.0 +19558,71,21.5,11,0.0 +19558,65,21.05,13,0.0 +19558,75,7.75,44,0.0 +19558,66,17,5,0.0 +19558,40,18.4,38,0.0 +19558,11,21,13,0.0 +19558,22,21,32,0.0 +19558,36,19,37,0.0 +19559,57,19.5,9,0.0 +19559,61,28.5,34,0.0 +19559,51,53,50,0.0 +19559,71,21.5,23,0.0 +19559,76,18,29,0.0 +19559,15,15.5,46,0.0 +19559,63,43.9,26,0.0 +19559,35,18,39,0.0 +19559,45,9.5,30,0.0 +19559,24,4.5,8,0.0 +19559,18,62.5,45,0.0 +19559,32,32,32,0.0 +19559,54,7.45,28,0.0 +19559,4,22,12,0.0 +19559,36,19,35,0.0 +19559,37,26,18,0.0 +19559,40,18.4,26,0.0 +19559,69,36,17,0.0 +19559,74,10,44,0.0 +19559,55,24,33,0.0 +19559,30,25.89,30,0.0 +19559,14,23.25,9,0.0 +19559,48,12.75,36,0.0 +19559,65,21.05,8,0.0 +19559,31,12.5,48,0.0 +19559,75,7.75,7,0.0 +19559,41,9.65,36,0.0 +19559,62,49.3,2,0.0 +19559,49,20,41,0.0 +19559,10,31,10,0.0 +19559,43,46,2,0.0 +19559,29,123.79,39,0.0 +19559,46,12,30,0.0 +19559,2,19,43,0.0 +19559,21,10,11,0.0 +19559,5,21.35,22,0.0 +19559,16,17.45,32,0.0 +19559,68,12.5,21,0.0 +19559,11,21,4,0.0 +19559,8,40,18,0.0 +19560,46,12,20,0.0 +19560,60,34,42,0.0 +19560,49,20,16,0.0 +19560,23,9,21,0.0 +19560,70,15,20,0.0 +19560,13,6,30,0.0 +19560,11,21,49,0.0 +19560,30,25.89,6,0.0 +19560,35,18,40,0.0 +19560,2,19,7,0.0 +19560,24,4.5,19,0.0 +19560,68,12.5,5,0.0 +19560,19,9.2,46,0.0 +19560,27,43.9,26,0.0 +19560,76,18,22,0.0 +19560,36,19,11,0.0 +19560,16,17.45,47,0.0 +19560,44,19.45,4,0.0 +19560,5,21.35,8,0.0 +19560,15,15.5,33,0.0 +19560,77,13,8,0.0 +19560,38,263.5,46,0.0 +19560,9,97,28,0.0 +19561,56,38,12,0.0 +19561,28,45.6,10,0.0 +19561,74,10,44,0.0 +19561,68,12.5,42,0.0 +19561,11,21,33,0.0 +19561,20,81,10,0.0 +19561,63,43.9,1,0.0 +19561,21,10,2,0.0 +19561,25,14,24,0.0 +19561,57,19.5,8,0.0 +19561,64,33.25,46,0.0 +19561,42,14,2,0.0 +19561,58,13.25,41,0.0 +19561,47,9.5,1,0.0 +19561,39,18,8,0.0 +19561,45,9.5,33,0.0 +19561,71,21.5,11,0.0 +19561,55,24,5,0.0 +19561,4,22,19,0.0 +19561,12,38,26,0.0 +19561,30,25.89,6,0.0 +19561,23,9,34,0.0 +19561,3,10,26,0.0 +19561,9,97,30,0.0 +19561,51,53,41,0.0 +19561,2,19,34,0.0 +19561,18,62.5,19,0.0 +19562,62,49.3,33,0.0 +19562,64,33.25,12,0.0 +19562,23,9,19,0.0 +19562,31,12.5,45,0.0 +19562,36,19,47,0.0 +19562,18,62.5,25,0.0 +19562,40,18.4,41,0.0 +19562,57,19.5,20,0.0 +19562,44,19.45,12,0.0 +19562,4,22,19,0.0 +19562,46,12,7,0.0 +19562,47,9.5,42,0.0 +19562,3,10,18,0.0 +19562,56,38,33,0.0 +19562,41,9.65,11,0.0 +19562,24,4.5,3,0.0 +19562,2,19,8,0.0 +19562,75,7.75,13,0.0 +19562,39,18,9,0.0 +19562,58,13.25,32,0.0 +19562,52,7,27,0.0 +19562,68,12.5,48,0.0 +19562,11,21,43,0.0 +19562,7,30,22,0.0 +19562,1,18,4,0.0 +19563,1,18,17,0.0 +19563,59,55,6,0.0 +19563,9,97,13,0.0 +19563,29,123.79,14,0.0 +19563,77,13,4,0.0 +19563,72,34.8,43,0.0 +19563,45,9.5,41,0.0 +19563,40,18.4,39,0.0 +19563,74,10,34,0.0 +19563,71,21.5,22,0.0 +19563,22,21,16,0.0 +19563,31,12.5,6,0.0 +19563,67,14,18,0.0 +19563,11,21,7,0.0 +19563,27,43.9,37,0.0 +19563,52,7,9,0.0 +19563,64,33.25,18,0.0 +19563,49,20,23,0.0 +19563,4,22,41,0.0 +19563,68,12.5,16,0.0 +19563,58,13.25,49,0.0 +19563,30,25.89,40,0.0 +19563,33,2.5,17,0.0 +19563,63,43.9,20,0.0 +19563,13,6,39,0.0 +19563,56,38,47,0.0 +19563,44,19.45,2,0.0 +19563,61,28.5,50,0.0 +19563,19,9.2,44,0.0 +19563,37,26,16,0.0 +19563,8,40,24,0.0 +19563,41,9.65,18,0.0 +19563,50,16.25,6,0.0 +19563,69,36,44,0.0 +19563,42,14,13,0.0 +19563,5,21.35,14,0.0 +19563,48,12.75,23,0.0 +19563,46,12,16,0.0 +19563,21,10,13,0.0 +19563,65,21.05,24,0.0 +19564,71,21.5,2,0.0 +19564,21,10,6,0.0 +19564,68,12.5,5,0.0 +19564,18,62.5,14,0.0 +19564,56,38,25,0.0 +19564,44,19.45,30,0.0 +19564,32,32,34,0.0 +19564,4,22,15,0.0 +19564,58,13.25,29,0.0 +19564,28,45.6,12,0.0 +19564,7,30,36,0.0 +19564,57,19.5,15,0.0 +19564,51,53,31,0.0 +19564,75,7.75,26,0.0 +19564,22,21,45,0.0 +19564,17,39,8,0.0 +19564,25,14,42,0.0 +19564,59,55,31,0.0 +19564,26,31.23,12,0.0 +19564,2,19,40,0.0 +19564,60,34,2,0.0 +19564,46,12,11,0.0 +19564,14,23.25,47,0.0 +19564,76,18,44,0.0 +19564,20,81,47,0.0 +19565,53,32.8,14,0.0 +19565,77,13,37,0.0 +19565,60,34,24,0.0 +19565,39,18,16,0.0 +19565,1,18,39,0.0 +19565,8,40,10,0.0 +19565,64,33.25,35,0.0 +19565,9,97,49,0.0 +19565,4,22,45,0.0 +19565,7,30,16,0.0 +19565,26,31.23,3,0.0 +19565,28,45.6,20,0.0 +19565,34,14,5,0.0 +19566,33,2.5,47,0.0 +19566,28,45.6,20,0.0 +19566,55,24,19,0.0 +19566,70,15,49,0.0 +19566,69,36,28,0.0 +19566,36,19,6,0.0 +19566,48,12.75,22,0.0 +19566,37,26,29,0.0 +19566,46,12,39,0.0 +19566,59,55,30,0.0 +19566,75,7.75,32,0.0 +19566,21,10,46,0.0 +19566,23,9,15,0.0 +19566,8,40,36,0.0 +19566,25,14,47,0.0 +19566,14,23.25,46,0.0 +19566,53,32.8,4,0.0 +19566,65,21.05,30,0.0 +19566,67,14,23,0.0 +19566,12,38,34,0.0 +19566,73,15,50,0.0 +19566,44,19.45,13,0.0 +19566,15,15.5,5,0.0 +19566,41,9.65,4,0.0 +19566,26,31.23,5,0.0 +19566,35,18,4,0.0 +19566,7,30,40,0.0 +19566,22,21,19,0.0 +19566,63,43.9,3,0.0 +19566,29,123.79,9,0.0 +19566,20,81,23,0.0 +19566,50,16.25,28,0.0 +19566,19,9.2,5,0.0 +19566,61,28.5,16,0.0 +19566,4,22,19,0.0 +19566,32,32,50,0.0 +19566,45,9.5,26,0.0 +19566,11,21,38,0.0 +19566,38,263.5,21,0.0 +19566,6,25,3,0.0 +19566,31,12.5,13,0.0 +19566,34,14,25,0.0 +19566,77,13,9,0.0 +19566,72,34.8,41,0.0 +19566,42,14,39,0.0 +19566,39,18,48,0.0 +19566,51,53,47,0.0 +19566,56,38,41,0.0 +19567,65,21.05,26,0.0 +19567,31,12.5,19,0.0 +19567,67,14,24,0.0 +19567,18,62.5,16,0.0 +19567,28,45.6,32,0.0 +19567,66,17,21,0.0 +19567,35,18,40,0.0 +19567,29,123.79,29,0.0 +19568,15,15.5,13,0.0 +19568,32,32,31,0.0 +19568,30,25.89,11,0.0 +19568,29,123.79,17,0.0 +19568,35,18,50,0.0 +19568,64,33.25,39,0.0 +19568,44,19.45,1,0.0 +19568,45,9.5,8,0.0 +19568,69,36,48,0.0 +19568,9,97,28,0.0 +19568,2,19,19,0.0 +19568,68,12.5,38,0.0 +19568,3,10,8,0.0 +19568,24,4.5,12,0.0 +19568,14,23.25,48,0.0 +19568,76,18,42,0.0 +19568,22,21,20,0.0 +19568,60,34,40,0.0 +19568,58,13.25,45,0.0 +19568,62,49.3,45,0.0 +19568,7,30,17,0.0 +19568,67,14,39,0.0 +19568,47,9.5,24,0.0 +19568,53,32.8,35,0.0 +19568,38,263.5,28,0.0 +19568,31,12.5,44,0.0 +19568,48,12.75,40,0.0 +19568,77,13,31,0.0 +19568,26,31.23,9,0.0 +19568,18,62.5,26,0.0 +19568,72,34.8,46,0.0 +19568,50,16.25,9,0.0 +19568,66,17,50,0.0 +19568,33,2.5,8,0.0 +19568,63,43.9,43,0.0 +19568,19,9.2,29,0.0 +19568,74,10,28,0.0 +19568,5,21.35,50,0.0 +19568,37,26,33,0.0 +19568,21,10,50,0.0 +19568,41,9.65,22,0.0 +19568,6,25,29,0.0 +19568,46,12,9,0.0 +19568,39,18,26,0.0 +19568,73,15,9,0.0 +19568,61,28.5,12,0.0 +19568,42,14,31,0.0 +19568,34,14,33,0.0 +19568,51,53,44,0.0 +19568,49,20,50,0.0 +19568,54,7.45,12,0.0 +19568,65,21.05,44,0.0 +19568,71,21.5,14,0.0 +19568,55,24,5,0.0 +19568,40,18.4,35,0.0 +19568,1,18,24,0.0 +19568,12,38,20,0.0 +19568,36,19,3,0.0 +19568,28,45.6,18,0.0 +19568,4,22,21,0.0 +19568,23,9,19,0.0 +19568,52,7,39,0.0 +19568,13,6,6,0.0 +19568,20,81,26,0.0 +19568,10,31,25,0.0 +19568,56,38,9,0.0 +19568,70,15,33,0.0 +19568,25,14,13,0.0 +19568,43,46,27,0.0 +19568,11,21,49,0.0 +19568,59,55,8,0.0 +19568,17,39,26,0.0 +19568,57,19.5,50,0.0 +19568,8,40,32,0.0 +19569,57,19.5,24,0.0 +19569,32,32,33,0.0 +19569,70,15,6,0.0 +19569,36,19,11,0.0 +19569,45,9.5,47,0.0 +19569,22,21,29,0.0 +19569,9,97,21,0.0 +19569,75,7.75,13,0.0 +19569,37,26,8,0.0 +19569,53,32.8,23,0.0 +19569,4,22,45,0.0 +19569,16,17.45,28,0.0 +19569,58,13.25,9,0.0 +19569,52,7,24,0.0 +19569,14,23.25,17,0.0 +19569,51,53,29,0.0 +19569,44,19.45,32,0.0 +19569,6,25,11,0.0 +19569,28,45.6,27,0.0 +19569,27,43.9,11,0.0 +19569,73,15,25,0.0 +19569,55,24,25,0.0 +19569,60,34,32,0.0 +19569,15,15.5,13,0.0 +19569,35,18,42,0.0 +19569,21,10,40,0.0 +19569,7,30,45,0.0 +19569,48,12.75,29,0.0 +19569,66,17,43,0.0 +19570,50,16.25,19,0.0 +19570,26,31.23,50,0.0 +19570,15,15.5,37,0.0 +19570,7,30,2,0.0 +19570,1,18,1,0.0 +19570,58,13.25,15,0.0 +19570,3,10,39,0.0 +19570,65,21.05,41,0.0 +19570,53,32.8,36,0.0 +19570,5,21.35,41,0.0 +19570,63,43.9,21,0.0 +19570,42,14,7,0.0 +19570,8,40,23,0.0 +19570,34,14,20,0.0 +19570,76,18,12,0.0 +19570,43,46,12,0.0 +19570,29,123.79,13,0.0 +19570,32,32,15,0.0 +19570,67,14,3,0.0 +19570,17,39,43,0.0 +19570,59,55,10,0.0 +19570,72,34.8,11,0.0 +19570,52,7,49,0.0 +19570,73,15,30,0.0 +19570,40,18.4,31,0.0 +19570,45,9.5,1,0.0 +19570,64,33.25,28,0.0 +19570,54,7.45,12,0.0 +19570,31,12.5,15,0.0 +19570,60,34,35,0.0 +19570,23,9,44,0.0 +19570,48,12.75,17,0.0 +19570,6,25,35,0.0 +19570,41,9.65,47,0.0 +19570,56,38,41,0.0 +19570,2,19,6,0.0 +19570,74,10,22,0.0 +19570,39,18,14,0.0 +19570,13,6,17,0.0 +19570,21,10,42,0.0 +19570,20,81,4,0.0 +19570,35,18,40,0.0 +19570,4,22,45,0.0 +19570,37,26,47,0.0 +19570,9,97,50,0.0 +19570,30,25.89,46,0.0 +19570,33,2.5,23,0.0 +19570,69,36,12,0.0 +19570,24,4.5,18,0.0 +19570,16,17.45,39,0.0 +19570,62,49.3,11,0.0 +19570,12,38,19,0.0 +19570,38,263.5,10,0.0 +19570,49,20,26,0.0 +19570,10,31,13,0.0 +19570,19,9.2,5,0.0 +19570,18,62.5,41,0.0 +19570,46,12,2,0.0 +19570,28,45.6,41,0.0 +19570,61,28.5,49,0.0 +19570,57,19.5,19,0.0 +19570,25,14,48,0.0 +19570,47,9.5,9,0.0 +19570,71,21.5,18,0.0 +19570,44,19.45,24,0.0 +19570,75,7.75,30,0.0 +19570,51,53,31,0.0 +19570,14,23.25,20,0.0 +19570,27,43.9,11,0.0 +19570,77,13,40,0.0 +19570,66,17,14,0.0 +19571,35,18,17,0.0 +19571,46,12,50,0.0 +19571,18,62.5,31,0.0 +19571,76,18,39,0.0 +19571,34,14,33,0.0 +19571,70,15,4,0.0 +19571,28,45.6,47,0.0 +19571,71,21.5,33,0.0 +19571,63,43.9,42,0.0 +19571,25,14,23,0.0 +19571,41,9.65,20,0.0 +19571,57,19.5,15,0.0 +19571,33,2.5,34,0.0 +19571,77,13,3,0.0 +19571,64,33.25,19,0.0 +19571,9,97,6,0.0 +19571,51,53,4,0.0 +19571,47,9.5,29,0.0 +19571,43,46,46,0.0 +19571,40,18.4,47,0.0 +19571,55,24,21,0.0 +19571,7,30,42,0.0 +19571,31,12.5,7,0.0 +19571,39,18,33,0.0 +19571,37,26,34,0.0 +19571,45,9.5,16,0.0 +19571,73,15,33,0.0 +19571,60,34,16,0.0 +19571,16,17.45,12,0.0 +19571,5,21.35,47,0.0 +19571,42,14,26,0.0 +19571,44,19.45,27,0.0 +19571,74,10,5,0.0 +19571,2,19,4,0.0 +19571,22,21,35,0.0 +19571,38,263.5,9,0.0 +19571,24,4.5,8,0.0 +19571,52,7,2,0.0 +19571,61,28.5,6,0.0 +19571,17,39,9,0.0 +19571,53,32.8,10,0.0 +19571,14,23.25,40,0.0 +19571,65,21.05,20,0.0 +19571,27,43.9,31,0.0 +19571,69,36,44,0.0 +19571,21,10,8,0.0 +19571,48,12.75,27,0.0 +19571,59,55,27,0.0 +19571,30,25.89,37,0.0 +19571,29,123.79,43,0.0 +19571,4,22,44,0.0 +19571,66,17,5,0.0 +19571,20,81,28,0.0 +19571,11,21,3,0.0 +19572,13,6,48,0.0 +19572,65,21.05,11,0.0 +19572,30,25.89,12,0.0 +19572,10,31,13,0.0 +19572,56,38,45,0.0 +19573,61,28.5,5,0.0 +19573,46,12,45,0.0 +19573,24,4.5,30,0.0 +19573,66,17,31,0.0 +19573,36,19,50,0.0 +19573,6,25,12,0.0 +19573,54,7.45,20,0.0 +19573,59,55,36,0.0 +19573,77,13,5,0.0 +19573,64,33.25,17,0.0 +19573,22,21,39,0.0 +19573,57,19.5,38,0.0 +19573,4,22,35,0.0 +19573,28,45.6,34,0.0 +19573,13,6,37,0.0 +19573,70,15,48,0.0 +19573,62,49.3,29,0.0 +19573,48,12.75,36,0.0 +19573,47,9.5,14,0.0 +19573,63,43.9,34,0.0 +19573,20,81,18,0.0 +19573,15,15.5,33,0.0 +19573,27,43.9,47,0.0 +19573,58,13.25,42,0.0 +19573,39,18,43,0.0 +19573,53,32.8,37,0.0 +19573,68,12.5,35,0.0 +19573,65,21.05,38,0.0 +19573,75,7.75,18,0.0 +19573,14,23.25,23,0.0 +19573,1,18,31,0.0 +19573,56,38,40,0.0 +19573,19,9.2,35,0.0 +19573,50,16.25,48,0.0 +19573,72,34.8,28,0.0 +19573,43,46,6,0.0 +19573,69,36,15,0.0 +19573,9,97,33,0.0 +19573,3,10,37,0.0 +19573,8,40,48,0.0 +19573,45,9.5,50,0.0 +19573,76,18,10,0.0 +19573,44,19.45,7,0.0 +19573,11,21,31,0.0 +19573,17,39,34,0.0 +19573,21,10,3,0.0 +19573,38,263.5,5,0.0 +19573,71,21.5,14,0.0 +19573,7,30,8,0.0 +19573,23,9,17,0.0 +19573,40,18.4,29,0.0 +19573,35,18,14,0.0 +19573,31,12.5,17,0.0 +19573,18,62.5,39,0.0 +19573,32,32,44,0.0 +19573,51,53,13,0.0 +19573,30,25.89,29,0.0 +19573,49,20,49,0.0 +19573,10,31,17,0.0 +19573,74,10,46,0.0 +19573,2,19,43,0.0 +19573,12,38,28,0.0 +19573,37,26,16,0.0 +19573,73,15,7,0.0 +19574,45,9.5,48,0.0 +19574,58,13.25,3,0.0 +19574,64,33.25,17,0.0 +19574,61,28.5,39,0.0 +19574,76,18,21,0.0 +19574,41,9.65,7,0.0 +19574,30,25.89,2,0.0 +19574,63,43.9,30,0.0 +19574,36,19,47,0.0 +19574,32,32,40,0.0 +19574,43,46,36,0.0 +19574,4,22,14,0.0 +19575,59,55,17,0.0 +19575,66,17,37,0.0 +19575,26,31.23,19,0.0 +19575,67,14,13,0.0 +19575,53,32.8,13,0.0 +19575,55,24,13,0.0 +19575,13,6,6,0.0 +19575,36,19,4,0.0 +19575,44,19.45,4,0.0 +19575,29,123.79,50,0.0 +19575,37,26,1,0.0 +19575,12,38,41,0.0 +19575,43,46,50,0.0 +19575,17,39,9,0.0 +19575,54,7.45,9,0.0 +19575,18,62.5,44,0.0 +19575,77,13,43,0.0 +19575,33,2.5,33,0.0 +19575,30,25.89,44,0.0 +19575,11,21,30,0.0 +19575,42,14,44,0.0 +19575,50,16.25,6,0.0 +19575,27,43.9,1,0.0 +19575,8,40,24,0.0 +19575,6,25,12,0.0 +19575,62,49.3,46,0.0 +19575,39,18,15,0.0 +19575,68,12.5,43,0.0 +19575,75,7.75,25,0.0 +19575,15,15.5,33,0.0 +19575,49,20,15,0.0 +19575,5,21.35,46,0.0 +19575,41,9.65,36,0.0 +19575,65,21.05,3,0.0 +19575,35,18,27,0.0 +19575,28,45.6,35,0.0 +19576,22,21,6,0.0 +19576,44,19.45,18,0.0 +19576,11,21,32,0.0 +19576,7,30,50,0.0 +19576,25,14,46,0.0 +19576,2,19,49,0.0 +19576,9,97,2,0.0 +19576,39,18,17,0.0 +19576,37,26,39,0.0 +19577,38,263.5,5,0.0 +19577,35,18,6,0.0 +19577,5,21.35,36,0.0 +19577,17,39,1,0.0 +19577,72,34.8,31,0.0 +19577,77,13,13,0.0 +19577,58,13.25,19,0.0 +19577,65,21.05,30,0.0 +19577,57,19.5,1,0.0 +19577,13,6,43,0.0 +19577,52,7,13,0.0 +19577,48,12.75,40,0.0 +19577,76,18,40,0.0 +19577,39,18,17,0.0 +19577,61,28.5,40,0.0 +19577,33,2.5,40,0.0 +19577,8,40,18,0.0 +19577,40,18.4,2,0.0 +19577,64,33.25,45,0.0 +19577,3,10,49,0.0 +19577,75,7.75,44,0.0 +19577,14,23.25,43,0.0 +19577,60,34,27,0.0 +19577,10,31,30,0.0 +19577,29,123.79,41,0.0 +19577,37,26,3,0.0 +19577,53,32.8,23,0.0 +19577,43,46,17,0.0 +19577,7,30,28,0.0 +19577,32,32,31,0.0 +19577,26,31.23,17,0.0 +19577,56,38,17,0.0 +19577,18,62.5,1,0.0 +19577,24,4.5,19,0.0 +19577,11,21,2,0.0 +19577,66,17,9,0.0 +19577,1,18,2,0.0 +19577,71,21.5,8,0.0 +19577,28,45.6,23,0.0 +19577,31,12.5,29,0.0 +19577,12,38,50,0.0 +19577,62,49.3,4,0.0 +19577,46,12,2,0.0 +19577,68,12.5,2,0.0 +19577,59,55,18,0.0 +19577,16,17.45,34,0.0 +19577,42,14,33,0.0 +19577,70,15,17,0.0 +19577,27,43.9,18,0.0 +19577,9,97,20,0.0 +19577,73,15,41,0.0 +19577,19,9.2,25,0.0 +19577,15,15.5,28,0.0 +19577,67,14,17,0.0 +19577,21,10,33,0.0 +19577,4,22,47,0.0 +19577,30,25.89,24,0.0 +19577,74,10,28,0.0 +19577,50,16.25,49,0.0 +19577,6,25,13,0.0 +19577,51,53,3,0.0 +19577,44,19.45,36,0.0 +19577,45,9.5,3,0.0 +19577,36,19,42,0.0 +19577,23,9,10,0.0 +19577,25,14,25,0.0 +19577,69,36,21,0.0 +19577,54,7.45,44,0.0 +19577,47,9.5,50,0.0 +19577,63,43.9,35,0.0 +19577,34,14,31,0.0 +19577,20,81,12,0.0 +19577,2,19,21,0.0 +19577,49,20,46,0.0 +19577,22,21,21,0.0 +19577,41,9.65,49,0.0 +19578,19,9.2,5,0.0 +19578,54,7.45,32,0.0 +19578,53,32.8,24,0.0 +19578,23,9,45,0.0 +19578,71,21.5,12,0.0 +19578,39,18,34,0.0 +19578,77,13,29,0.0 +19578,13,6,19,0.0 +19578,67,14,22,0.0 +19578,68,12.5,46,0.0 +19578,40,18.4,35,0.0 +19578,58,13.25,27,0.0 +19578,52,7,2,0.0 +19578,28,45.6,37,0.0 +19579,18,62.5,36,0.0 +19579,37,26,18,0.0 +19579,51,53,41,0.0 +19579,35,18,20,0.0 +19579,8,40,45,0.0 +19579,44,19.45,31,0.0 +19579,20,81,25,0.0 +19579,74,10,5,0.0 +19579,33,2.5,16,0.0 +19579,60,34,36,0.0 +19579,12,38,13,0.0 +19579,64,33.25,15,0.0 +19579,75,7.75,40,0.0 +19579,36,19,45,0.0 +19579,62,49.3,25,0.0 +19579,2,19,32,0.0 +19579,52,7,5,0.0 +19579,71,21.5,12,0.0 +19579,48,12.75,48,0.0 +19579,54,7.45,46,0.0 +19579,6,25,35,0.0 +19579,56,38,49,0.0 +19579,13,6,25,0.0 +19579,4,22,20,0.0 +19579,55,24,7,0.0 +19579,1,18,8,0.0 +19579,68,12.5,35,0.0 +19579,19,9.2,43,0.0 +19579,7,30,16,0.0 +19579,38,263.5,50,0.0 +19579,66,17,14,0.0 +19579,45,9.5,24,0.0 +19579,25,14,31,0.0 +19579,69,36,8,0.0 +19579,70,15,20,0.0 +19579,39,18,37,0.0 +19579,21,10,47,0.0 +19579,46,12,25,0.0 +19579,32,32,42,0.0 +19579,40,18.4,13,0.0 +19579,41,9.65,2,0.0 +19579,16,17.45,36,0.0 +19579,57,19.5,36,0.0 +19579,27,43.9,7,0.0 +19579,10,31,3,0.0 +19579,77,13,40,0.0 +19579,58,13.25,5,0.0 +19579,47,9.5,3,0.0 +19579,73,15,50,0.0 +19579,29,123.79,36,0.0 +19579,17,39,22,0.0 +19579,67,14,1,0.0 +19579,30,25.89,46,0.0 +19579,31,12.5,45,0.0 +19579,24,4.5,50,0.0 +19579,50,16.25,47,0.0 +19579,76,18,31,0.0 +19579,5,21.35,33,0.0 +19579,34,14,13,0.0 +19579,42,14,50,0.0 +19579,49,20,24,0.0 +19579,3,10,40,0.0 +19579,15,15.5,16,0.0 +19579,22,21,45,0.0 +19579,9,97,41,0.0 +19579,23,9,2,0.0 +19579,59,55,11,0.0 +19579,65,21.05,19,0.0 +19579,14,23.25,23,0.0 +19579,11,21,24,0.0 +19579,63,43.9,13,0.0 +19579,53,32.8,13,0.0 +19580,37,26,16,0.0 +19580,24,4.5,6,0.0 +19580,8,40,42,0.0 +19580,39,18,2,0.0 +19580,48,12.75,24,0.0 +19580,71,21.5,1,0.0 +19580,74,10,39,0.0 +19580,58,13.25,29,0.0 +19580,35,18,6,0.0 +19580,62,49.3,24,0.0 +19580,67,14,31,0.0 +19580,47,9.5,3,0.0 +19580,18,62.5,36,0.0 +19580,17,39,22,0.0 +19580,40,18.4,49,0.0 +19580,52,7,47,0.0 +19580,19,9.2,20,0.0 +19580,15,15.5,3,0.0 +19580,68,12.5,43,0.0 +19580,31,12.5,29,0.0 +19580,75,7.75,7,0.0 +19580,54,7.45,40,0.0 +19580,32,32,10,0.0 +19580,23,9,30,0.0 +19580,33,2.5,46,0.0 +19580,6,25,19,0.0 +19580,65,21.05,32,0.0 +19580,66,17,47,0.0 +19580,11,21,4,0.0 +19580,60,34,18,0.0 +19580,70,15,23,0.0 +19580,38,263.5,1,0.0 +19580,28,45.6,9,0.0 +19580,29,123.79,43,0.0 +19580,63,43.9,28,0.0 +19580,56,38,1,0.0 +19580,36,19,20,0.0 +19580,55,24,42,0.0 +19580,42,14,24,0.0 +19580,13,6,31,0.0 +19580,76,18,24,0.0 +19580,57,19.5,16,0.0 +19580,25,14,39,0.0 +19580,59,55,32,0.0 +19580,61,28.5,15,0.0 +19581,41,9.65,19,0.0 +19581,33,2.5,49,0.0 +19581,21,10,44,0.0 +19581,46,12,23,0.0 +19581,50,16.25,3,0.0 +19581,36,19,29,0.0 +19581,56,38,50,0.0 +19581,68,12.5,2,0.0 +19581,69,36,38,0.0 +19581,60,34,48,0.0 +19581,64,33.25,39,0.0 +19581,47,9.5,33,0.0 +19581,24,4.5,21,0.0 +19581,13,6,30,0.0 +19581,18,62.5,8,0.0 +19581,51,53,37,0.0 +19581,58,13.25,43,0.0 +19581,43,46,19,0.0 +19581,75,7.75,8,0.0 +19581,6,25,11,0.0 +19581,42,14,2,0.0 +19581,28,45.6,5,0.0 +19581,72,34.8,28,0.0 +19581,27,43.9,1,0.0 +19581,2,19,12,0.0 +19581,1,18,45,0.0 +19581,35,18,12,0.0 +19581,53,32.8,5,0.0 +19581,16,17.45,7,0.0 +19581,29,123.79,27,0.0 +19581,63,43.9,46,0.0 +19581,76,18,3,0.0 +19581,67,14,48,0.0 +19581,71,21.5,9,0.0 +19581,12,38,43,0.0 +19581,48,12.75,38,0.0 +19581,19,9.2,18,0.0 +19581,3,10,47,0.0 +19581,45,9.5,6,0.0 +19581,8,40,16,0.0 +19581,14,23.25,48,0.0 +19581,37,26,27,0.0 +19581,66,17,2,0.0 +19581,31,12.5,1,0.0 +19581,11,21,40,0.0 +19581,74,10,41,0.0 +19581,32,32,39,0.0 +19581,20,81,8,0.0 +19581,73,15,32,0.0 +19581,4,22,39,0.0 +19581,49,20,42,0.0 +19582,60,34,42,0.0 +19582,73,15,3,0.0 +19582,72,34.8,11,0.0 +19583,21,10,9,0.0 +19583,18,62.5,4,0.0 +19583,40,18.4,4,0.0 +19583,31,12.5,36,0.0 +19583,59,55,12,0.0 +19583,22,21,44,0.0 +19583,52,7,12,0.0 +19583,19,9.2,19,0.0 +19583,34,14,11,0.0 +19583,25,14,44,0.0 +19583,74,10,44,0.0 +19583,63,43.9,10,0.0 +19583,70,15,38,0.0 +19583,72,34.8,24,0.0 +19583,49,20,3,0.0 +19583,35,18,2,0.0 +19583,5,21.35,35,0.0 +19583,77,13,32,0.0 +19583,58,13.25,34,0.0 +19583,73,15,38,0.0 +19583,20,81,41,0.0 +19583,13,6,16,0.0 +19583,66,17,41,0.0 +19583,28,45.6,37,0.0 +19583,67,14,42,0.0 +19583,33,2.5,48,0.0 +19583,17,39,15,0.0 +19583,7,30,23,0.0 +19583,9,97,36,0.0 +19583,27,43.9,23,0.0 +19584,28,45.6,11,0.0 +19584,71,21.5,21,0.0 +19584,75,7.75,22,0.0 +19584,67,14,9,0.0 +19584,33,2.5,41,0.0 +19584,72,34.8,5,0.0 +19584,38,263.5,49,0.0 +19584,46,12,20,0.0 +19584,12,38,35,0.0 +19584,36,19,18,0.0 +19585,43,46,15,0.0 +19585,42,14,49,0.0 +19585,8,40,24,0.0 +19585,74,10,37,0.0 +19585,3,10,48,0.0 +19585,25,14,25,0.0 +19585,44,19.45,7,0.0 +19585,51,53,19,0.0 +19585,58,13.25,39,0.0 +19585,24,4.5,23,0.0 +19585,18,62.5,1,0.0 +19585,36,19,22,0.0 +19585,29,123.79,16,0.0 +19585,39,18,12,0.0 +19585,76,18,50,0.0 +19585,41,9.65,30,0.0 +19585,59,55,23,0.0 +19585,26,31.23,28,0.0 +19585,48,12.75,24,0.0 +19585,16,17.45,10,0.0 +19585,56,38,21,0.0 +19585,63,43.9,5,0.0 +19585,27,43.9,11,0.0 +19585,37,26,16,0.0 +19585,9,97,32,0.0 +19585,7,30,40,0.0 +19585,46,12,14,0.0 +19585,77,13,17,0.0 +19585,73,15,5,0.0 +19585,53,32.8,33,0.0 +19585,28,45.6,15,0.0 +19585,61,28.5,10,0.0 +19585,1,18,7,0.0 +19585,33,2.5,15,0.0 +19585,72,34.8,37,0.0 +19585,52,7,34,0.0 +19585,38,263.5,1,0.0 +19585,10,31,39,0.0 +19585,2,19,21,0.0 +19585,21,10,48,0.0 +19585,5,21.35,29,0.0 +19585,75,7.75,47,0.0 +19585,4,22,50,0.0 +19585,12,38,15,0.0 +19585,20,81,38,0.0 +19585,65,21.05,3,0.0 +19585,57,19.5,34,0.0 +19585,49,20,7,0.0 +19585,67,14,40,0.0 +19585,68,12.5,22,0.0 +19585,45,9.5,22,0.0 +19585,55,24,44,0.0 +19585,17,39,12,0.0 +19585,23,9,8,0.0 +19586,58,13.25,20,0.0 +19586,60,34,39,0.0 +19586,2,19,12,0.0 +19586,46,12,6,0.0 +19586,3,10,8,0.0 +19586,62,49.3,43,0.0 +19586,57,19.5,49,0.0 +19586,36,19,17,0.0 +19586,69,36,14,0.0 +19586,40,18.4,35,0.0 +19586,74,10,14,0.0 +19587,73,15,45,0.0 +19587,41,9.65,35,0.0 +19587,13,6,14,0.0 +19587,27,43.9,14,0.0 +19587,25,14,12,0.0 +19587,74,10,24,0.0 +19587,51,53,20,0.0 +19587,39,18,5,0.0 +19587,5,21.35,49,0.0 +19587,67,14,35,0.0 +19587,38,263.5,17,0.0 +19587,65,21.05,30,0.0 +19587,10,31,45,0.0 +19587,21,10,40,0.0 +19587,66,17,20,0.0 +19587,46,12,50,0.0 +19587,29,123.79,13,0.0 +19587,43,46,17,0.0 +19587,75,7.75,10,0.0 +19587,35,18,34,0.0 +19587,12,38,37,0.0 +19587,14,23.25,48,0.0 +19587,63,43.9,41,0.0 +19587,58,13.25,1,0.0 +19587,70,15,11,0.0 +19587,53,32.8,7,0.0 +19587,68,12.5,47,0.0 +19587,40,18.4,21,0.0 +19587,28,45.6,43,0.0 +19587,1,18,43,0.0 +19587,24,4.5,17,0.0 +19587,9,97,3,0.0 +19587,54,7.45,15,0.0 +19587,77,13,43,0.0 +19587,47,9.5,29,0.0 +19587,33,2.5,45,0.0 +19587,76,18,49,0.0 +19587,56,38,50,0.0 +19587,55,24,15,0.0 +19587,8,40,34,0.0 +19587,16,17.45,19,0.0 +19587,17,39,8,0.0 +19587,18,62.5,10,0.0 +19587,31,12.5,34,0.0 +19587,34,14,7,0.0 +19587,52,7,19,0.0 +19587,60,34,15,0.0 +19587,36,19,7,0.0 +19587,49,20,1,0.0 +19587,64,33.25,15,0.0 +19587,23,9,9,0.0 +19587,26,31.23,14,0.0 +19587,62,49.3,3,0.0 +19587,32,32,50,0.0 +19587,44,19.45,34,0.0 +19587,11,21,18,0.0 +19587,30,25.89,31,0.0 +19587,45,9.5,12,0.0 +19587,59,55,34,0.0 +19587,7,30,40,0.0 +19587,42,14,27,0.0 +19587,20,81,20,0.0 +19587,37,26,43,0.0 +19587,4,22,33,0.0 +19587,71,21.5,17,0.0 +19587,19,9.2,6,0.0 +19587,61,28.5,44,0.0 +19588,3,10,21,0.0 +19588,51,53,50,0.0 +19588,30,25.89,11,0.0 +19588,17,39,33,0.0 +19588,40,18.4,37,0.0 +19588,2,19,14,0.0 +19588,74,10,24,0.0 +19589,60,34,44,0.0 +19589,43,46,11,0.0 +19589,38,263.5,24,0.0 +19589,4,22,48,0.0 +19589,51,53,5,0.0 +19589,49,20,30,0.0 +19589,71,21.5,31,0.0 +19589,53,32.8,6,0.0 +19589,58,13.25,39,0.0 +19589,33,2.5,4,0.0 +19589,24,4.5,14,0.0 +19589,74,10,1,0.0 +19589,34,14,13,0.0 +19589,63,43.9,6,0.0 +19589,9,97,42,0.0 +19589,36,19,18,0.0 +19589,55,24,4,0.0 +19589,70,15,31,0.0 +19589,45,9.5,17,0.0 +19589,8,40,30,0.0 +19589,65,21.05,46,0.0 +19589,73,15,45,0.0 +19589,69,36,25,0.0 +19589,21,10,2,0.0 +19589,14,23.25,20,0.0 +19589,47,9.5,47,0.0 +19589,7,30,50,0.0 +19589,25,14,13,0.0 +19589,50,16.25,47,0.0 +19589,59,55,36,0.0 +19589,46,12,39,0.0 +19589,61,28.5,37,0.0 +19589,15,15.5,42,0.0 +19589,75,7.75,16,0.0 +19589,22,21,21,0.0 +19589,23,9,47,0.0 +19589,13,6,25,0.0 +19589,66,17,8,0.0 +19589,3,10,35,0.0 +19589,39,18,5,0.0 +19590,72,34.8,15,0.0 +19590,8,40,46,0.0 +19590,18,62.5,49,0.0 +19590,63,43.9,48,0.0 +19590,34,14,32,0.0 +19590,6,25,23,0.0 +19590,67,14,43,0.0 +19590,27,43.9,38,0.0 +19590,58,13.25,43,0.0 +19590,41,9.65,21,0.0 +19590,40,18.4,31,0.0 +19590,9,97,8,0.0 +19590,77,13,20,0.0 +19590,59,55,42,0.0 +19590,45,9.5,27,0.0 +19590,5,21.35,24,0.0 +19590,76,18,35,0.0 +19590,24,4.5,41,0.0 +19590,60,34,21,0.0 +19590,75,7.75,28,0.0 +19590,13,6,36,0.0 +19590,65,21.05,6,0.0 +19590,44,19.45,24,0.0 +19590,54,7.45,45,0.0 +19590,25,14,21,0.0 +19590,39,18,49,0.0 +19590,20,81,31,0.0 +19590,74,10,22,0.0 +19590,23,9,33,0.0 +19590,26,31.23,50,0.0 +19590,56,38,15,0.0 +19590,70,15,17,0.0 +19590,57,19.5,36,0.0 +19590,51,53,49,0.0 +19590,3,10,16,0.0 +19590,28,45.6,38,0.0 +19590,55,24,4,0.0 +19590,21,10,22,0.0 +19590,4,22,10,0.0 +19590,46,12,24,0.0 +19590,68,12.5,35,0.0 +19590,62,49.3,28,0.0 +19590,32,32,14,0.0 +19590,29,123.79,6,0.0 +19590,66,17,3,0.0 +19590,38,263.5,46,0.0 +19590,16,17.45,12,0.0 +19590,52,7,9,0.0 +19590,22,21,47,0.0 +19590,33,2.5,14,0.0 +19590,15,15.5,22,0.0 +19590,31,12.5,37,0.0 +19590,47,9.5,3,0.0 +19590,64,33.25,49,0.0 +19590,69,36,9,0.0 +19590,49,20,34,0.0 +19590,42,14,33,0.0 +19590,37,26,29,0.0 +19590,12,38,35,0.0 +19590,2,19,13,0.0 +19590,50,16.25,31,0.0 +19590,35,18,9,0.0 +19590,73,15,34,0.0 +19590,48,12.75,29,0.0 +19590,43,46,26,0.0 +19590,17,39,23,0.0 +19590,11,21,18,0.0 +19590,53,32.8,37,0.0 +19590,7,30,41,0.0 +19591,36,19,28,0.0 +19591,32,32,49,0.0 +19591,21,10,44,0.0 +19591,23,9,11,0.0 +19591,61,28.5,25,0.0 +19591,44,19.45,18,0.0 +19591,29,123.79,32,0.0 +19591,22,21,25,0.0 +19591,31,12.5,41,0.0 +19591,48,12.75,15,0.0 +19591,73,15,30,0.0 +19591,58,13.25,4,0.0 +19591,67,14,50,0.0 +19591,47,9.5,2,0.0 +19591,19,9.2,1,0.0 +19591,77,13,7,0.0 +19591,15,15.5,33,0.0 +19591,46,12,19,0.0 +19591,62,49.3,27,0.0 +19591,63,43.9,18,0.0 +19591,28,45.6,23,0.0 +19591,71,21.5,33,0.0 +19591,26,31.23,49,0.0 +19591,75,7.75,39,0.0 +19591,30,25.89,3,0.0 +19591,43,46,39,0.0 +19591,68,12.5,46,0.0 +19591,16,17.45,5,0.0 +19591,55,24,24,0.0 +19591,39,18,30,0.0 +19591,2,19,5,0.0 +19592,63,43.9,27,0.0 +19592,31,12.5,42,0.0 +19592,37,26,27,0.0 +19592,61,28.5,40,0.0 +19592,44,19.45,40,0.0 +19592,33,2.5,37,0.0 +19592,8,40,7,0.0 +19592,29,123.79,33,0.0 +19592,72,34.8,35,0.0 +19592,45,9.5,45,0.0 +19592,43,46,40,0.0 +19592,50,16.25,27,0.0 +19592,57,19.5,48,0.0 +19592,70,15,24,0.0 +19592,28,45.6,35,0.0 +19592,75,7.75,41,0.0 +19592,6,25,3,0.0 +19592,40,18.4,1,0.0 +19592,51,53,32,0.0 +19592,19,9.2,43,0.0 +19592,34,14,17,0.0 +19592,47,9.5,2,0.0 +19592,15,15.5,26,0.0 +19593,21,10,39,0.0 +19593,75,7.75,45,0.0 +19593,69,36,19,0.0 +19593,57,19.5,19,0.0 +19593,56,38,38,0.0 +19593,50,16.25,14,0.0 +19593,47,9.5,7,0.0 +19593,15,15.5,17,0.0 +19593,27,43.9,6,0.0 +19593,1,18,40,0.0 +19593,25,14,9,0.0 +19593,4,22,42,0.0 +19593,63,43.9,48,0.0 +19593,39,18,24,0.0 +19593,11,21,20,0.0 +19593,24,4.5,12,0.0 +19593,26,31.23,17,0.0 +19593,17,39,16,0.0 +19593,16,17.45,16,0.0 +19593,40,18.4,29,0.0 +19593,8,40,27,0.0 +19593,20,81,5,0.0 +19593,5,21.35,35,0.0 +19593,23,9,13,0.0 +19593,35,18,3,0.0 +19593,36,19,40,0.0 +19593,3,10,34,0.0 +19593,76,18,46,0.0 +19593,59,55,23,0.0 +19593,70,15,18,0.0 +19593,14,23.25,2,0.0 +19593,43,46,7,0.0 +19593,55,24,18,0.0 +19593,18,62.5,23,0.0 +19593,74,10,23,0.0 +19593,62,49.3,23,0.0 +19593,64,33.25,30,0.0 +19593,31,12.5,17,0.0 +19593,52,7,18,0.0 +19593,32,32,27,0.0 +19593,51,53,3,0.0 +19593,46,12,36,0.0 +19593,72,34.8,21,0.0 +19593,71,21.5,43,0.0 +19593,58,13.25,31,0.0 +19593,67,14,16,0.0 +19593,44,19.45,46,0.0 +19593,37,26,3,0.0 +19593,30,25.89,39,0.0 +19593,7,30,22,0.0 +19593,42,14,43,0.0 +19593,61,28.5,30,0.0 +19593,53,32.8,2,0.0 +19593,22,21,48,0.0 +19593,19,9.2,39,0.0 +19593,34,14,4,0.0 +19593,2,19,48,0.0 +19593,65,21.05,18,0.0 +19593,29,123.79,8,0.0 +19593,68,12.5,16,0.0 +19593,48,12.75,25,0.0 +19593,77,13,27,0.0 +19593,12,38,36,0.0 +19593,13,6,24,0.0 +19593,41,9.65,16,0.0 +19593,45,9.5,26,0.0 +19593,6,25,12,0.0 +19593,10,31,47,0.0 +19593,9,97,47,0.0 +19593,38,263.5,40,0.0 +19593,54,7.45,39,0.0 +19593,73,15,22,0.0 +19594,71,21.5,20,0.0 +19594,16,17.45,40,0.0 +19594,54,7.45,29,0.0 +19594,10,31,19,0.0 +19594,56,38,6,0.0 +19594,69,36,31,0.0 +19594,18,62.5,16,0.0 +19594,3,10,46,0.0 +19594,32,32,31,0.0 +19594,6,25,48,0.0 +19594,60,34,28,0.0 +19594,28,45.6,22,0.0 +19595,51,53,25,0.0 +19595,16,17.45,50,0.0 +19595,77,13,17,0.0 +19595,13,6,42,0.0 +19595,4,22,41,0.0 +19595,18,62.5,23,0.0 +19595,7,30,6,0.0 +19595,47,9.5,50,0.0 +19595,29,123.79,34,0.0 +19595,33,2.5,32,0.0 +19595,69,36,44,0.0 +19595,64,33.25,5,0.0 +19595,70,15,12,0.0 +19595,73,15,27,0.0 +19595,2,19,50,0.0 +19595,76,18,40,0.0 +19595,1,18,7,0.0 +19595,40,18.4,14,0.0 +19595,57,19.5,48,0.0 +19595,20,81,9,0.0 +19595,21,10,50,0.0 +19595,54,7.45,13,0.0 +19595,17,39,42,0.0 +19595,62,49.3,26,0.0 +19595,41,9.65,2,0.0 +19595,6,25,19,0.0 +19595,22,21,39,0.0 +19595,46,12,50,0.0 +19596,1,18,40,0.0 +19596,61,28.5,2,0.0 +19596,57,19.5,13,0.0 +19596,8,40,28,0.0 +19596,66,17,35,0.0 +19596,58,13.25,43,0.0 +19596,62,49.3,18,0.0 +19596,69,36,18,0.0 +19596,73,15,33,0.0 +19596,15,15.5,42,0.0 +19596,38,263.5,12,0.0 +19596,67,14,10,0.0 +19596,14,23.25,40,0.0 +19596,43,46,21,0.0 +19596,41,9.65,33,0.0 +19596,31,12.5,27,0.0 +19596,4,22,3,0.0 +19596,23,9,7,0.0 +19596,9,97,50,0.0 +19596,44,19.45,28,0.0 +19596,34,14,24,0.0 +19596,26,31.23,4,0.0 +19596,64,33.25,11,0.0 +19596,49,20,44,0.0 +19596,21,10,48,0.0 +19596,47,9.5,41,0.0 +19596,65,21.05,34,0.0 +19596,40,18.4,8,0.0 +19596,10,31,18,0.0 +19596,46,12,15,0.0 +19596,75,7.75,8,0.0 +19596,54,7.45,15,0.0 +19596,70,15,24,0.0 +19596,29,123.79,21,0.0 +19596,71,21.5,40,0.0 +19596,25,14,3,0.0 +19596,68,12.5,17,0.0 +19596,13,6,35,0.0 +19596,27,43.9,13,0.0 +19596,33,2.5,38,0.0 +19596,18,62.5,42,0.0 +19596,72,34.8,12,0.0 +19596,6,25,32,0.0 +19596,36,19,12,0.0 +19596,77,13,29,0.0 +19596,63,43.9,35,0.0 +19596,76,18,42,0.0 +19596,19,9.2,28,0.0 +19596,11,21,42,0.0 +19596,16,17.45,40,0.0 +19596,30,25.89,15,0.0 +19596,7,30,27,0.0 +19596,17,39,13,0.0 +19596,52,7,41,0.0 +19596,45,9.5,37,0.0 +19596,3,10,40,0.0 +19597,57,19.5,49,0.0 +19597,17,39,41,0.0 +19597,15,15.5,17,0.0 +19597,44,19.45,11,0.0 +19597,42,14,3,0.0 +19597,73,15,28,0.0 +19597,62,49.3,14,0.0 +19597,30,25.89,19,0.0 +19597,71,21.5,31,0.0 +19597,28,45.6,16,0.0 +19597,40,18.4,17,0.0 +19597,37,26,49,0.0 +19597,75,7.75,31,0.0 +19597,65,21.05,40,0.0 +19597,19,9.2,14,0.0 +19597,29,123.79,41,0.0 +19597,46,12,1,0.0 +19597,27,43.9,40,0.0 +19597,56,38,31,0.0 +19597,70,15,17,0.0 +19597,69,36,37,0.0 +19597,61,28.5,40,0.0 +19598,2,19,40,0.0 +19598,1,18,5,0.0 +19598,51,53,28,0.0 +19598,76,18,10,0.0 +19598,11,21,11,0.0 +19598,25,14,36,0.0 +19598,42,14,49,0.0 +19598,39,18,13,0.0 +19598,56,38,32,0.0 +19598,67,14,47,0.0 +19598,14,23.25,30,0.0 +19598,57,19.5,43,0.0 +19598,10,31,31,0.0 +19598,30,25.89,49,0.0 +19598,16,17.45,21,0.0 +19598,55,24,27,0.0 +19598,63,43.9,8,0.0 +19598,75,7.75,1,0.0 +19598,7,30,42,0.0 +19598,34,14,31,0.0 +19598,40,18.4,15,0.0 +19598,41,9.65,15,0.0 +19598,68,12.5,31,0.0 +19598,35,18,5,0.0 +19598,4,22,22,0.0 +19598,53,32.8,24,0.0 +19598,21,10,38,0.0 +19598,6,25,13,0.0 +19598,58,13.25,28,0.0 +19598,22,21,16,0.0 +19598,72,34.8,36,0.0 +19598,9,97,26,0.0 +19598,28,45.6,12,0.0 +19598,74,10,9,0.0 +19598,46,12,33,0.0 +19598,64,33.25,28,0.0 +19598,45,9.5,22,0.0 +19598,26,31.23,25,0.0 +19598,48,12.75,30,0.0 +19598,59,55,46,0.0 +19598,47,9.5,34,0.0 +19598,73,15,43,0.0 +19598,66,17,36,0.0 +19598,71,21.5,11,0.0 +19598,43,46,49,0.0 +19598,29,123.79,31,0.0 +19598,20,81,4,0.0 +19598,62,49.3,41,0.0 +19598,70,15,37,0.0 +19598,44,19.45,30,0.0 +19598,37,26,49,0.0 +19598,31,12.5,49,0.0 +19598,17,39,11,0.0 +19598,61,28.5,32,0.0 +19598,69,36,15,0.0 +19598,52,7,49,0.0 +19598,77,13,5,0.0 +19598,12,38,33,0.0 +19598,60,34,40,0.0 +19598,49,20,36,0.0 +19598,54,7.45,9,0.0 +19598,27,43.9,17,0.0 +19598,36,19,32,0.0 +19598,50,16.25,42,0.0 +19598,38,263.5,3,0.0 +19598,18,62.5,6,0.0 +19598,24,4.5,50,0.0 +19598,13,6,10,0.0 +19598,8,40,39,0.0 +19598,23,9,4,0.0 +19598,19,9.2,18,0.0 +19598,5,21.35,16,0.0 +19598,32,32,31,0.0 +19598,65,21.05,24,0.0 +19599,55,24,26,0.0 +19599,9,97,40,0.0 +19599,65,21.05,46,0.0 +19599,63,43.9,25,0.0 +19599,75,7.75,1,0.0 +19599,16,17.45,29,0.0 +19599,74,10,31,0.0 +19599,60,34,4,0.0 +19599,14,23.25,14,0.0 +19599,46,12,34,0.0 +19599,4,22,31,0.0 +19599,68,12.5,17,0.0 +19599,66,17,6,0.0 +19599,8,40,50,0.0 +19599,49,20,19,0.0 +19599,58,13.25,23,0.0 +19599,3,10,35,0.0 +19599,21,10,5,0.0 +19599,18,62.5,47,0.0 +19599,73,15,15,0.0 +19599,7,30,30,0.0 +19599,62,49.3,32,0.0 +19599,51,53,22,0.0 +19599,19,9.2,23,0.0 +19599,52,7,39,0.0 +19599,32,32,34,0.0 +19599,6,25,15,0.0 +19599,47,9.5,5,0.0 +19599,28,45.6,1,0.0 +19599,77,13,5,0.0 +19599,33,2.5,19,0.0 +19599,42,14,38,0.0 +19599,31,12.5,29,0.0 +19599,76,18,31,0.0 +19599,40,18.4,17,0.0 +19599,57,19.5,15,0.0 +19599,13,6,14,0.0 +19599,36,19,44,0.0 +19599,54,7.45,46,0.0 +19599,35,18,23,0.0 +19599,44,19.45,46,0.0 +19599,67,14,15,0.0 +19599,17,39,26,0.0 +19599,34,14,25,0.0 +19599,2,19,31,0.0 +19599,45,9.5,22,0.0 +19599,69,36,24,0.0 +19599,23,9,49,0.0 +19599,11,21,3,0.0 +19599,20,81,22,0.0 +19599,43,46,46,0.0 +19599,61,28.5,34,0.0 +19600,52,7,49,0.0 +19600,72,34.8,10,0.0 +19600,32,32,37,0.0 +19600,54,7.45,31,0.0 +19601,37,26,7,0.0 +19601,19,9.2,34,0.0 +19601,11,21,38,0.0 +19601,6,25,49,0.0 +19601,51,53,3,0.0 +19601,67,14,31,0.0 +19601,74,10,46,0.0 +19601,27,43.9,29,0.0 +19601,3,10,12,0.0 +19601,17,39,34,0.0 +19601,56,38,23,0.0 +19601,24,4.5,44,0.0 +19601,70,15,9,0.0 +19601,10,31,11,0.0 +19601,68,12.5,11,0.0 +19601,2,19,16,0.0 +19601,23,9,28,0.0 +19601,29,123.79,23,0.0 +19601,73,15,24,0.0 +19601,34,14,36,0.0 +19601,64,33.25,8,0.0 +19601,30,25.89,17,0.0 +19601,65,21.05,33,0.0 +19601,39,18,16,0.0 +19601,45,9.5,10,0.0 +19601,18,62.5,18,0.0 +19601,14,23.25,21,0.0 +19601,66,17,12,0.0 +19601,35,18,19,0.0 +19601,61,28.5,39,0.0 +19601,58,13.25,50,0.0 +19601,49,20,27,0.0 +19601,59,55,23,0.0 +19601,4,22,3,0.0 +19601,72,34.8,21,0.0 +19601,25,14,29,0.0 +19601,77,13,39,0.0 +19601,44,19.45,2,0.0 +19601,20,81,14,0.0 +19601,31,12.5,39,0.0 +19601,38,263.5,30,0.0 +19601,5,21.35,30,0.0 +19601,22,21,8,0.0 +19601,50,16.25,25,0.0 +19601,42,14,17,0.0 +19601,41,9.65,41,0.0 +19601,32,32,4,0.0 +19601,62,49.3,20,0.0 +19601,15,15.5,20,0.0 +19601,54,7.45,45,0.0 +19601,47,9.5,27,0.0 +19601,12,38,49,0.0 +19601,16,17.45,35,0.0 +19601,33,2.5,31,0.0 +19601,60,34,43,0.0 +19601,76,18,11,0.0 +19601,36,19,4,0.0 +19601,63,43.9,22,0.0 +19601,71,21.5,18,0.0 +19601,7,30,34,0.0 +19601,43,46,8,0.0 +19601,28,45.6,25,0.0 +19601,26,31.23,49,0.0 +19601,9,97,34,0.0 +19601,46,12,35,0.0 +19601,21,10,34,0.0 +19601,52,7,15,0.0 +19601,57,19.5,16,0.0 +19601,53,32.8,31,0.0 +19601,55,24,1,0.0 +19601,1,18,32,0.0 +19601,8,40,18,0.0 +19601,75,7.75,27,0.0 +19602,25,14,30,0.0 +19602,69,36,31,0.0 +19602,26,31.23,17,0.0 +19602,59,55,23,0.0 +19602,67,14,27,0.0 +19602,1,18,26,0.0 +19602,53,32.8,11,0.0 +19602,35,18,23,0.0 +19602,4,22,8,0.0 +19602,49,20,30,0.0 +19602,3,10,6,0.0 +19602,47,9.5,8,0.0 +19602,6,25,29,0.0 +19603,58,13.25,39,0.0 +19603,59,55,17,0.0 +19603,2,19,2,0.0 +19603,39,18,19,0.0 +19603,19,9.2,20,0.0 +19603,67,14,47,0.0 +19603,25,14,32,0.0 +19603,61,28.5,41,0.0 +19603,31,12.5,45,0.0 +19603,54,7.45,14,0.0 +19604,53,32.8,13,0.0 +19604,2,19,27,0.0 +19604,70,15,21,0.0 +19604,67,14,36,0.0 +19604,30,25.89,9,0.0 +19604,19,9.2,2,0.0 +19604,51,53,28,0.0 +19604,22,21,16,0.0 +19604,44,19.45,19,0.0 +19604,6,25,40,0.0 +19604,57,19.5,32,0.0 +19604,69,36,1,0.0 +19604,41,9.65,2,0.0 +19604,16,17.45,3,0.0 +19604,37,26,8,0.0 +19604,26,31.23,18,0.0 +19604,5,21.35,36,0.0 +19604,17,39,47,0.0 +19604,48,12.75,5,0.0 +19604,36,19,41,0.0 +19604,40,18.4,23,0.0 +19604,64,33.25,46,0.0 +19604,71,21.5,15,0.0 +19604,77,13,25,0.0 +19604,10,31,3,0.0 +19604,58,13.25,30,0.0 +19604,24,4.5,22,0.0 +19604,39,18,46,0.0 +19604,62,49.3,16,0.0 +19604,73,15,15,0.0 +19604,1,18,43,0.0 +19604,50,16.25,2,0.0 +19604,9,97,24,0.0 +19604,34,14,17,0.0 +19604,66,17,44,0.0 +19604,29,123.79,2,0.0 +19604,54,7.45,3,0.0 +19604,49,20,33,0.0 +19604,35,18,18,0.0 +19604,42,14,38,0.0 +19604,45,9.5,29,0.0 +19604,8,40,21,0.0 +19604,63,43.9,21,0.0 +19604,21,10,26,0.0 +19604,7,30,40,0.0 +19604,4,22,43,0.0 +19604,12,38,39,0.0 +19604,72,34.8,37,0.0 +19604,3,10,13,0.0 +19604,60,34,9,0.0 +19604,33,2.5,33,0.0 +19604,15,15.5,45,0.0 +19604,18,62.5,46,0.0 +19604,38,263.5,8,0.0 +19604,65,21.05,45,0.0 +19604,14,23.25,34,0.0 +19604,55,24,12,0.0 +19604,25,14,36,0.0 +19604,11,21,23,0.0 +19604,32,32,22,0.0 +19604,46,12,46,0.0 +19604,68,12.5,40,0.0 +19605,60,34,27,0.0 +19605,6,25,1,0.0 +19605,1,18,32,0.0 +19605,73,15,48,0.0 +19605,27,43.9,11,0.0 +19605,34,14,1,0.0 +19605,2,19,10,0.0 +19605,40,18.4,38,0.0 +19605,75,7.75,23,0.0 +19605,62,49.3,39,0.0 +19605,32,32,11,0.0 +19605,13,6,21,0.0 +19605,59,55,33,0.0 +19605,57,19.5,36,0.0 +19605,9,97,5,0.0 +19605,4,22,39,0.0 +19605,16,17.45,27,0.0 +19605,17,39,9,0.0 +19605,44,19.45,4,0.0 +19605,11,21,49,0.0 +19605,51,53,20,0.0 +19605,25,14,19,0.0 +19605,35,18,28,0.0 +19605,37,26,42,0.0 +19605,71,21.5,9,0.0 +19605,46,12,25,0.0 +19605,55,24,12,0.0 +19605,47,9.5,23,0.0 +19605,26,31.23,19,0.0 +19605,50,16.25,14,0.0 +19605,43,46,45,0.0 +19605,48,12.75,5,0.0 +19605,5,21.35,11,0.0 +19605,14,23.25,12,0.0 +19605,54,7.45,2,0.0 +19605,28,45.6,28,0.0 +19605,61,28.5,19,0.0 +19605,72,34.8,44,0.0 +19605,64,33.25,42,0.0 +19605,56,38,32,0.0 +19605,23,9,10,0.0 +19605,70,15,36,0.0 +19605,10,31,31,0.0 +19605,15,15.5,25,0.0 +19605,24,4.5,12,0.0 +19605,7,30,38,0.0 +19605,68,12.5,32,0.0 +19605,30,25.89,46,0.0 +19605,63,43.9,10,0.0 +19605,76,18,48,0.0 +19605,41,9.65,1,0.0 +19605,45,9.5,4,0.0 +19605,31,12.5,24,0.0 +19605,21,10,12,0.0 +19605,69,36,3,0.0 +19605,65,21.05,22,0.0 +19605,58,13.25,8,0.0 +19605,29,123.79,6,0.0 +19605,8,40,16,0.0 +19605,38,263.5,14,0.0 +19605,42,14,34,0.0 +19605,18,62.5,42,0.0 +19605,49,20,44,0.0 +19605,36,19,49,0.0 +19605,66,17,10,0.0 +19605,67,14,1,0.0 +19605,33,2.5,47,0.0 +19606,68,12.5,26,0.0 +19606,41,9.65,6,0.0 +19606,22,21,46,0.0 +19606,21,10,47,0.0 +19606,33,2.5,25,0.0 +19606,31,12.5,32,0.0 +19606,9,97,10,0.0 +19606,47,9.5,30,0.0 +19606,59,55,36,0.0 +19606,62,49.3,46,0.0 +19606,57,19.5,23,0.0 +19606,32,32,26,0.0 +19606,76,18,14,0.0 +19606,54,7.45,45,0.0 +19606,60,34,47,0.0 +19606,74,10,5,0.0 +19606,18,62.5,1,0.0 +19606,12,38,41,0.0 +19606,10,31,49,0.0 +19606,27,43.9,35,0.0 +19606,15,15.5,25,0.0 +19606,53,32.8,24,0.0 +19606,52,7,4,0.0 +19606,4,22,34,0.0 +19606,70,15,34,0.0 +19606,14,23.25,44,0.0 +19606,39,18,47,0.0 +19606,50,16.25,25,0.0 +19606,7,30,9,0.0 +19606,71,21.5,11,0.0 +19606,26,31.23,13,0.0 +19606,17,39,29,0.0 +19606,30,25.89,6,0.0 +19606,20,81,7,0.0 +19606,73,15,12,0.0 +19606,49,20,24,0.0 +19606,23,9,44,0.0 +19606,64,33.25,14,0.0 +19606,51,53,45,0.0 +19606,24,4.5,25,0.0 +19606,63,43.9,21,0.0 +19606,42,14,14,0.0 +19606,48,12.75,37,0.0 +19606,43,46,14,0.0 +19606,45,9.5,15,0.0 +19606,3,10,38,0.0 +19606,36,19,50,0.0 +19606,61,28.5,31,0.0 +19606,55,24,30,0.0 +19606,11,21,49,0.0 +19606,44,19.45,42,0.0 +19606,35,18,50,0.0 +19606,65,21.05,18,0.0 +19606,1,18,22,0.0 +19606,6,25,30,0.0 +19606,34,14,29,0.0 +19606,2,19,31,0.0 +19606,28,45.6,6,0.0 +19606,8,40,41,0.0 +19606,69,36,14,0.0 +19606,67,14,25,0.0 +19606,40,18.4,28,0.0 +19606,16,17.45,34,0.0 +19606,77,13,13,0.0 +19606,37,26,14,0.0 +19606,46,12,27,0.0 +19606,13,6,44,0.0 +19606,29,123.79,36,0.0 +19607,73,15,32,0.0 +19607,14,23.25,11,0.0 +19607,3,10,14,0.0 +19607,1,18,32,0.0 +19607,26,31.23,38,0.0 +19607,4,22,28,0.0 +19607,75,7.75,46,0.0 +19607,22,21,6,0.0 +19607,70,15,46,0.0 +19607,50,16.25,9,0.0 +19607,39,18,22,0.0 +19608,2,19,18,0.0 +19608,65,21.05,46,0.0 +19608,6,25,2,0.0 +19608,16,17.45,44,0.0 +19608,71,21.5,4,0.0 +19608,69,36,23,0.0 +19608,58,13.25,37,0.0 +19608,70,15,16,0.0 +19608,42,14,50,0.0 +19608,24,4.5,19,0.0 +19608,64,33.25,46,0.0 +19608,11,21,25,0.0 +19608,22,21,32,0.0 +19608,9,97,35,0.0 +19608,72,34.8,6,0.0 +19608,18,62.5,3,0.0 +19608,46,12,44,0.0 +19608,29,123.79,4,0.0 +19608,10,31,1,0.0 +19608,36,19,21,0.0 +19608,15,15.5,48,0.0 +19608,73,15,22,0.0 +19608,8,40,18,0.0 +19608,41,9.65,8,0.0 +19608,66,17,20,0.0 +19608,35,18,14,0.0 +19608,1,18,38,0.0 +19608,51,53,14,0.0 +19608,68,12.5,16,0.0 +19608,20,81,33,0.0 +19608,54,7.45,4,0.0 +19608,19,9.2,6,0.0 +19608,28,45.6,28,0.0 +19608,7,30,49,0.0 +19608,27,43.9,19,0.0 +19608,12,38,26,0.0 +19609,34,14,48,0.0 +19609,37,26,46,0.0 +19609,48,12.75,11,0.0 +19609,42,14,48,0.0 +19609,27,43.9,28,0.0 +19609,62,49.3,35,0.0 +19609,60,34,49,0.0 +19609,14,23.25,40,0.0 +19609,9,97,39,0.0 +19609,67,14,9,0.0 +19609,39,18,21,0.0 +19609,46,12,12,0.0 +19609,71,21.5,2,0.0 +19609,30,25.89,37,0.0 +19609,75,7.75,40,0.0 +19609,54,7.45,49,0.0 +19609,47,9.5,34,0.0 +19609,24,4.5,46,0.0 +19609,68,12.5,23,0.0 +19609,28,45.6,50,0.0 +19609,20,81,29,0.0 +19609,35,18,17,0.0 +19609,8,40,13,0.0 +19609,70,15,47,0.0 +19609,6,25,30,0.0 +19609,25,14,1,0.0 +19609,73,15,42,0.0 +19609,26,31.23,38,0.0 +19609,21,10,28,0.0 +19609,52,7,42,0.0 +19609,31,12.5,25,0.0 +19609,72,34.8,46,0.0 +19609,51,53,42,0.0 +19609,11,21,20,0.0 +19609,76,18,40,0.0 +19609,50,16.25,42,0.0 +19609,69,36,40,0.0 +19609,17,39,33,0.0 +19609,44,19.45,22,0.0 +19609,56,38,18,0.0 +19609,23,9,28,0.0 +19609,22,21,10,0.0 +19609,49,20,14,0.0 +19609,64,33.25,8,0.0 +19609,57,19.5,4,0.0 +19609,74,10,50,0.0 +19609,66,17,43,0.0 +19609,2,19,44,0.0 +19609,7,30,7,0.0 +19609,19,9.2,15,0.0 +19609,40,18.4,44,0.0 +19609,58,13.25,43,0.0 +19609,63,43.9,6,0.0 +19609,5,21.35,13,0.0 +19609,29,123.79,35,0.0 +19609,36,19,17,0.0 +19609,10,31,14,0.0 +19609,13,6,24,0.0 +19609,15,15.5,9,0.0 +19609,61,28.5,32,0.0 +19609,53,32.8,42,0.0 +19609,45,9.5,31,0.0 +19610,70,15,35,0.0 +19610,69,36,23,0.0 +19610,10,31,28,0.0 +19610,17,39,8,0.0 +19610,71,21.5,31,0.0 +19610,37,26,31,0.0 +19610,66,17,12,0.0 +19610,29,123.79,44,0.0 +19610,74,10,45,0.0 +19610,3,10,25,0.0 +19610,31,12.5,17,0.0 +19610,59,55,16,0.0 +19610,22,21,7,0.0 +19610,53,32.8,10,0.0 +19610,48,12.75,50,0.0 +19610,6,25,16,0.0 +19610,43,46,17,0.0 +19610,24,4.5,49,0.0 +19610,63,43.9,49,0.0 +19610,44,19.45,30,0.0 +19610,73,15,18,0.0 +19610,39,18,7,0.0 +19610,13,6,11,0.0 +19610,19,9.2,38,0.0 +19610,56,38,1,0.0 +19610,14,23.25,32,0.0 +19610,35,18,4,0.0 +19610,8,40,12,0.0 +19610,16,17.45,35,0.0 +19610,50,16.25,33,0.0 +19610,33,2.5,4,0.0 +19610,11,21,33,0.0 +19610,41,9.65,25,0.0 +19610,65,21.05,30,0.0 +19610,7,30,7,0.0 +19610,38,263.5,50,0.0 +19610,12,38,43,0.0 +19610,47,9.5,9,0.0 +19610,45,9.5,12,0.0 +19610,34,14,40,0.0 +19610,49,20,12,0.0 +19610,5,21.35,6,0.0 +19610,21,10,32,0.0 +19610,26,31.23,3,0.0 +19610,1,18,45,0.0 +19610,57,19.5,29,0.0 +19610,32,32,10,0.0 +19610,77,13,37,0.0 +19610,30,25.89,29,0.0 +19610,28,45.6,49,0.0 +19610,23,9,2,0.0 +19610,64,33.25,11,0.0 +19610,20,81,4,0.0 +19610,54,7.45,48,0.0 +19610,62,49.3,6,0.0 +19610,15,15.5,42,0.0 +19610,75,7.75,46,0.0 +19610,67,14,4,0.0 +19610,27,43.9,33,0.0 +19610,52,7,39,0.0 +19610,42,14,14,0.0 +19610,58,13.25,22,0.0 +19610,25,14,28,0.0 +19610,51,53,24,0.0 +19610,55,24,44,0.0 +19610,40,18.4,21,0.0 +19610,60,34,14,0.0 +19610,18,62.5,34,0.0 +19610,61,28.5,9,0.0 +19610,46,12,14,0.0 +19610,72,34.8,22,0.0 +19610,9,97,21,0.0 +19610,36,19,5,0.0 +19610,76,18,12,0.0 +19611,61,28.5,28,0.0 +19611,4,22,48,0.0 +19611,31,12.5,40,0.0 +19611,9,97,29,0.0 +19611,57,19.5,25,0.0 +19611,77,13,19,0.0 +19611,1,18,42,0.0 +19611,45,9.5,29,0.0 +19611,22,21,36,0.0 +19611,35,18,25,0.0 +19611,15,15.5,10,0.0 +19611,42,14,24,0.0 +19611,46,12,49,0.0 +19611,70,15,41,0.0 +19611,43,46,19,0.0 +19611,54,7.45,20,0.0 +19611,13,6,14,0.0 +19611,30,25.89,46,0.0 +19611,19,9.2,34,0.0 +19611,58,13.25,39,0.0 +19611,16,17.45,37,0.0 +19611,29,123.79,17,0.0 +19611,63,43.9,31,0.0 +19611,59,55,9,0.0 +19611,32,32,44,0.0 +19611,36,19,40,0.0 +19611,48,12.75,41,0.0 +19611,14,23.25,32,0.0 +19611,76,18,27,0.0 +19611,56,38,39,0.0 +19611,6,25,4,0.0 +19611,28,45.6,17,0.0 +19611,69,36,42,0.0 +19611,7,30,6,0.0 +19611,8,40,19,0.0 +19611,75,7.75,25,0.0 +19611,52,7,47,0.0 +19611,41,9.65,24,0.0 +19611,47,9.5,17,0.0 +19611,60,34,4,0.0 +19611,3,10,19,0.0 +19611,73,15,34,0.0 +19611,66,17,15,0.0 +19611,50,16.25,46,0.0 +19611,40,18.4,47,0.0 +19612,9,97,41,0.0 +19612,36,19,29,0.0 +19613,9,97,21,0.0 +19613,37,26,44,0.0 +19613,49,20,15,0.0 +19613,55,24,30,0.0 +19613,19,9.2,13,0.0 +19613,47,9.5,8,0.0 +19613,41,9.65,6,0.0 +19613,30,25.89,32,0.0 +19613,28,45.6,31,0.0 +19613,59,55,6,0.0 +19613,18,62.5,47,0.0 +19613,65,21.05,22,0.0 +19613,4,22,16,0.0 +19613,32,32,39,0.0 +19613,46,12,18,0.0 +19613,50,16.25,28,0.0 +19613,77,13,18,0.0 +19613,72,34.8,20,0.0 +19613,64,33.25,15,0.0 +19613,53,32.8,19,0.0 +19613,10,31,38,0.0 +19613,27,43.9,8,0.0 +19613,76,18,8,0.0 +19613,38,263.5,11,0.0 +19613,68,12.5,15,0.0 +19613,7,30,16,0.0 +19613,66,17,50,0.0 +19613,22,21,18,0.0 +19613,26,31.23,10,0.0 +19613,31,12.5,49,0.0 +19613,21,10,40,0.0 +19613,33,2.5,12,0.0 +19613,6,25,41,0.0 +19613,74,10,16,0.0 +19613,56,38,9,0.0 +19613,61,28.5,10,0.0 +19613,70,15,19,0.0 +19613,69,36,40,0.0 +19613,48,12.75,25,0.0 +19613,25,14,23,0.0 +19613,2,19,31,0.0 +19613,45,9.5,21,0.0 +19613,36,19,19,0.0 +19613,58,13.25,32,0.0 +19613,60,34,7,0.0 +19613,75,7.75,29,0.0 +19613,20,81,12,0.0 +19613,3,10,22,0.0 +19613,17,39,39,0.0 +19613,29,123.79,36,0.0 +19613,34,14,47,0.0 +19613,1,18,2,0.0 +19613,14,23.25,32,0.0 +19613,52,7,12,0.0 +19613,67,14,20,0.0 +19613,16,17.45,32,0.0 +19613,40,18.4,42,0.0 +19613,63,43.9,44,0.0 +19613,23,9,11,0.0 +19613,43,46,1,0.0 +19613,8,40,12,0.0 +19613,5,21.35,22,0.0 +19613,57,19.5,17,0.0 +19613,13,6,44,0.0 +19613,15,15.5,22,0.0 +19613,24,4.5,10,0.0 +19614,25,14,17,0.0 +19614,68,12.5,19,0.0 +19615,75,7.75,1,0.0 +19615,56,38,44,0.0 +19615,34,14,37,0.0 +19615,73,15,8,0.0 +19615,13,6,50,0.0 +19615,2,19,10,0.0 +19615,15,15.5,32,0.0 +19615,57,19.5,43,0.0 +19615,43,46,39,0.0 +19615,9,97,19,0.0 +19615,5,21.35,36,0.0 +19615,30,25.89,12,0.0 +19615,11,21,30,0.0 +19615,37,26,36,0.0 +19615,71,21.5,21,0.0 +19615,27,43.9,30,0.0 +19615,39,18,38,0.0 +19615,77,13,19,0.0 +19615,67,14,50,0.0 +19615,52,7,40,0.0 +19615,29,123.79,25,0.0 +19615,49,20,21,0.0 +19615,58,13.25,41,0.0 +19615,23,9,32,0.0 +19615,31,12.5,23,0.0 +19615,22,21,38,0.0 +19615,28,45.6,9,0.0 +19615,46,12,13,0.0 +19615,26,31.23,50,0.0 +19615,47,9.5,50,0.0 +19615,40,18.4,25,0.0 +19615,19,9.2,17,0.0 +19615,42,14,14,0.0 +19615,48,12.75,46,0.0 +19615,3,10,25,0.0 +19615,54,7.45,16,0.0 +19615,6,25,46,0.0 +19615,25,14,21,0.0 +19615,44,19.45,36,0.0 +19615,50,16.25,46,0.0 +19615,12,38,9,0.0 +19615,1,18,22,0.0 +19616,52,7,36,0.0 +19616,76,18,47,0.0 +19616,59,55,33,0.0 +19616,16,17.45,39,0.0 +19616,55,24,46,0.0 +19616,14,23.25,20,0.0 +19616,44,19.45,20,0.0 +19616,30,25.89,33,0.0 +19616,41,9.65,34,0.0 +19616,77,13,19,0.0 +19616,50,16.25,13,0.0 +19616,66,17,18,0.0 +19616,8,40,23,0.0 +19616,51,53,25,0.0 +19616,29,123.79,43,0.0 +19616,35,18,13,0.0 +19616,75,7.75,47,0.0 +19616,34,14,24,0.0 +19616,53,32.8,40,0.0 +19616,27,43.9,4,0.0 +19616,39,18,38,0.0 +19616,11,21,45,0.0 +19616,56,38,5,0.0 +19616,42,14,42,0.0 +19616,45,9.5,31,0.0 +19616,4,22,13,0.0 +19616,61,28.5,36,0.0 +19616,1,18,10,0.0 +19616,63,43.9,16,0.0 +19616,49,20,26,0.0 +19616,70,15,45,0.0 +19616,17,39,16,0.0 +19616,28,45.6,36,0.0 +19616,31,12.5,40,0.0 +19616,19,9.2,22,0.0 +19616,43,46,17,0.0 +19616,23,9,1,0.0 +19616,7,30,15,0.0 +19616,37,26,30,0.0 +19616,67,14,5,0.0 +19616,46,12,41,0.0 +19616,58,13.25,32,0.0 +19616,65,21.05,5,0.0 +19616,15,15.5,4,0.0 +19616,47,9.5,17,0.0 +19616,13,6,6,0.0 +19616,64,33.25,22,0.0 +19616,72,34.8,26,0.0 +19616,38,263.5,24,0.0 +19616,10,31,45,0.0 +19616,9,97,29,0.0 +19616,22,21,40,0.0 +19616,60,34,29,0.0 +19616,62,49.3,19,0.0 +19616,36,19,7,0.0 +19616,21,10,37,0.0 +19616,25,14,33,0.0 +19616,48,12.75,12,0.0 +19616,54,7.45,47,0.0 +19616,71,21.5,16,0.0 +19616,74,10,3,0.0 +19616,73,15,31,0.0 +19616,68,12.5,26,0.0 +19616,33,2.5,32,0.0 +19616,3,10,20,0.0 +19616,2,19,20,0.0 +19616,12,38,4,0.0 +19616,57,19.5,7,0.0 +19616,6,25,6,0.0 +19616,69,36,36,0.0 +19616,20,81,5,0.0 +19616,26,31.23,47,0.0 +19617,50,16.25,9,0.0 +19617,44,19.45,19,0.0 +19617,69,36,22,0.0 +19617,58,13.25,6,0.0 +19617,41,9.65,15,0.0 +19617,75,7.75,37,0.0 +19617,11,21,29,0.0 +19617,2,19,33,0.0 +19617,64,33.25,40,0.0 +19617,16,17.45,23,0.0 +19617,38,263.5,18,0.0 +19617,60,34,3,0.0 +19617,27,43.9,13,0.0 +19617,62,49.3,40,0.0 +19617,22,21,15,0.0 +19617,25,14,40,0.0 +19617,23,9,46,0.0 +19617,12,38,19,0.0 +19617,66,17,23,0.0 +19617,53,32.8,8,0.0 +19617,48,12.75,5,0.0 +19617,56,38,26,0.0 +19617,55,24,15,0.0 +19617,47,9.5,6,0.0 +19617,37,26,14,0.0 +19617,20,81,14,0.0 +19617,26,31.23,40,0.0 +19617,74,10,35,0.0 +19617,18,62.5,38,0.0 +19617,4,22,35,0.0 +19617,72,34.8,41,0.0 +19617,1,18,22,0.0 +19617,36,19,23,0.0 +19617,52,7,21,0.0 +19617,40,18.4,36,0.0 +19617,54,7.45,48,0.0 +19617,15,15.5,21,0.0 +19617,43,46,47,0.0 +19617,59,55,16,0.0 +19617,46,12,33,0.0 +19617,34,14,18,0.0 +19617,42,14,45,0.0 +19617,7,30,30,0.0 +19617,61,28.5,10,0.0 +19617,67,14,29,0.0 +19617,10,31,46,0.0 +19617,35,18,39,0.0 +19617,6,25,40,0.0 +19617,32,32,35,0.0 +19617,77,13,27,0.0 +19617,68,12.5,29,0.0 +19617,33,2.5,38,0.0 +19617,30,25.89,36,0.0 +19617,51,53,35,0.0 +19617,19,9.2,42,0.0 +19617,9,97,45,0.0 +19617,24,4.5,42,0.0 +19617,45,9.5,11,0.0 +19617,39,18,5,0.0 +19617,5,21.35,36,0.0 +19617,3,10,40,0.0 +19617,73,15,9,0.0 +19617,76,18,4,0.0 +19617,57,19.5,39,0.0 +19618,26,31.23,37,0.0 +19618,59,55,46,0.0 +19618,12,38,43,0.0 +19618,52,7,19,0.0 +19618,32,32,30,0.0 +19618,70,15,27,0.0 +19618,39,18,37,0.0 +19618,38,263.5,17,0.0 +19618,8,40,9,0.0 +19618,19,9.2,10,0.0 +19618,44,19.45,4,0.0 +19618,75,7.75,40,0.0 +19618,65,21.05,15,0.0 +19618,42,14,13,0.0 +19618,64,33.25,31,0.0 +19618,62,49.3,45,0.0 +19618,48,12.75,44,0.0 +19618,18,62.5,41,0.0 +19618,13,6,33,0.0 +19618,41,9.65,40,0.0 +19618,25,14,3,0.0 +19618,40,18.4,40,0.0 +19618,20,81,16,0.0 +19618,45,9.5,20,0.0 +19618,7,30,15,0.0 +19618,72,34.8,48,0.0 +19618,5,21.35,47,0.0 +19618,28,45.6,33,0.0 +19618,50,16.25,38,0.0 +19618,67,14,2,0.0 +19618,58,13.25,11,0.0 +19618,22,21,40,0.0 +19618,56,38,30,0.0 +19618,9,97,38,0.0 +19618,2,19,48,0.0 +19618,49,20,18,0.0 +19618,61,28.5,42,0.0 +19618,55,24,42,0.0 +19618,43,46,40,0.0 +19618,74,10,16,0.0 +19618,37,26,1,0.0 +19618,53,32.8,18,0.0 +19618,51,53,4,0.0 +19618,31,12.5,16,0.0 +19618,76,18,4,0.0 +19618,23,9,19,0.0 +19618,14,23.25,18,0.0 +19618,60,34,32,0.0 +19618,73,15,2,0.0 +19618,46,12,42,0.0 +19618,10,31,16,0.0 +19618,30,25.89,48,0.0 +19618,71,21.5,12,0.0 +19619,58,13.25,49,0.0 +19619,68,12.5,31,0.0 +19619,17,39,49,0.0 +19619,61,28.5,24,0.0 +19619,20,81,26,0.0 +19619,22,21,10,0.0 +19619,33,2.5,38,0.0 +19620,15,15.5,8,0.0 +19620,61,28.5,42,0.0 +19620,13,6,10,0.0 +19620,21,10,27,0.0 +19620,14,23.25,15,0.0 +19620,64,33.25,9,0.0 +19620,58,13.25,18,0.0 +19620,9,97,36,0.0 +19620,23,9,30,0.0 +19620,19,9.2,31,0.0 +19620,28,45.6,15,0.0 +19620,39,18,7,0.0 +19620,40,18.4,36,0.0 +19620,2,19,28,0.0 +19620,75,7.75,18,0.0 +19620,33,2.5,19,0.0 +19620,49,20,23,0.0 +19620,41,9.65,14,0.0 +19620,57,19.5,5,0.0 +19620,27,43.9,4,0.0 +19620,77,13,36,0.0 +19620,76,18,18,0.0 +19620,59,55,48,0.0 +19620,55,24,16,0.0 +19620,20,81,43,0.0 +19620,24,4.5,33,0.0 +19620,65,21.05,16,0.0 +19621,61,28.5,49,0.0 +19621,67,14,11,0.0 +19621,77,13,16,0.0 +19621,28,45.6,11,0.0 +19621,7,30,44,0.0 +19621,55,24,10,0.0 +19621,3,10,13,0.0 +19621,51,53,42,0.0 +19621,74,10,4,0.0 +19621,27,43.9,10,0.0 +19621,12,38,48,0.0 +19621,58,13.25,14,0.0 +19621,13,6,33,0.0 +19621,69,36,10,0.0 +19621,64,33.25,11,0.0 +19621,56,38,1,0.0 +19621,8,40,38,0.0 +19621,40,18.4,21,0.0 +19621,16,17.45,5,0.0 +19621,20,81,40,0.0 +19621,26,31.23,38,0.0 +19621,68,12.5,18,0.0 +19622,69,36,9,0.0 +19622,10,31,4,0.0 +19622,68,12.5,1,0.0 +19622,45,9.5,26,0.0 +19622,33,2.5,1,0.0 +19622,17,39,2,0.0 +19622,44,19.45,35,0.0 +19622,66,17,46,0.0 +19622,43,46,7,0.0 +19622,41,9.65,46,0.0 +19622,16,17.45,49,0.0 +19622,46,12,45,0.0 +19622,1,18,47,0.0 +19622,73,15,8,0.0 +19622,2,19,43,0.0 +19622,37,26,42,0.0 +19622,70,15,41,0.0 +19622,51,53,19,0.0 +19622,72,34.8,20,0.0 +19622,23,9,2,0.0 +19622,49,20,37,0.0 +19622,26,31.23,17,0.0 +19622,76,18,41,0.0 +19622,7,30,3,0.0 +19622,20,81,25,0.0 +19622,5,21.35,31,0.0 +19622,52,7,11,0.0 +19622,8,40,1,0.0 +19622,19,9.2,36,0.0 +19622,14,23.25,25,0.0 +19622,58,13.25,25,0.0 +19622,28,45.6,30,0.0 +19622,53,32.8,25,0.0 +19622,32,32,42,0.0 +19622,21,10,28,0.0 +19622,39,18,45,0.0 +19622,35,18,36,0.0 +19622,15,15.5,49,0.0 +19622,65,21.05,37,0.0 +19622,25,14,18,0.0 +19622,22,21,28,0.0 +19622,34,14,5,0.0 +19622,27,43.9,40,0.0 +19622,11,21,20,0.0 +19622,74,10,31,0.0 +19622,31,12.5,50,0.0 +19622,55,24,7,0.0 +19622,64,33.25,22,0.0 +19622,12,38,35,0.0 +19622,56,38,6,0.0 +19622,71,21.5,43,0.0 +19622,36,19,33,0.0 +19622,63,43.9,43,0.0 +19622,13,6,10,0.0 +19622,50,16.25,16,0.0 +19622,29,123.79,26,0.0 +19622,77,13,22,0.0 +19622,38,263.5,28,0.0 +19622,40,18.4,23,0.0 +19623,8,40,14,0.0 +19623,1,18,7,0.0 +19623,33,2.5,3,0.0 +19623,48,12.75,33,0.0 +19623,7,30,25,0.0 +19623,58,13.25,13,0.0 +19623,71,21.5,47,0.0 +19623,28,45.6,4,0.0 +19623,31,12.5,43,0.0 +19623,15,15.5,32,0.0 +19623,17,39,26,0.0 +19623,64,33.25,34,0.0 +19623,32,32,37,0.0 +19623,51,53,26,0.0 +19623,19,9.2,32,0.0 +19623,44,19.45,23,0.0 +19623,39,18,25,0.0 +19623,61,28.5,33,0.0 +19623,9,97,45,0.0 +19623,63,43.9,12,0.0 +19624,58,13.25,36,0.0 +19624,52,7,22,0.0 +19624,76,18,46,0.0 +19624,22,21,23,0.0 +19624,65,21.05,4,0.0 +19624,31,12.5,3,0.0 +19624,69,36,15,0.0 +19624,30,25.89,28,0.0 +19624,60,34,13,0.0 +19624,47,9.5,41,0.0 +19624,2,19,17,0.0 +19624,12,38,50,0.0 +19624,38,263.5,48,0.0 +19624,70,15,26,0.0 +19624,34,14,43,0.0 +19624,71,21.5,24,0.0 +19624,50,16.25,33,0.0 +19624,40,18.4,36,0.0 +19624,28,45.6,13,0.0 +19624,26,31.23,8,0.0 +19624,53,32.8,35,0.0 +19624,27,43.9,42,0.0 +19624,62,49.3,46,0.0 +19624,45,9.5,14,0.0 +19624,49,20,49,0.0 +19624,77,13,48,0.0 +19624,66,17,41,0.0 +19624,74,10,44,0.0 +19624,57,19.5,36,0.0 +19624,72,34.8,17,0.0 +19624,4,22,50,0.0 +19624,5,21.35,31,0.0 +19624,51,53,49,0.0 +19624,63,43.9,5,0.0 +19624,13,6,2,0.0 +19624,36,19,11,0.0 +19624,17,39,27,0.0 +19624,56,38,41,0.0 +19624,25,14,22,0.0 +19624,46,12,14,0.0 +19624,37,26,3,0.0 +19624,21,10,7,0.0 +19624,10,31,27,0.0 +19624,33,2.5,7,0.0 +19624,39,18,43,0.0 +19624,59,55,24,0.0 +19624,48,12.75,22,0.0 +19624,67,14,31,0.0 +19624,43,46,50,0.0 +19624,8,40,15,0.0 +19624,14,23.25,31,0.0 +19624,20,81,35,0.0 +19625,55,24,11,0.0 +19625,36,19,13,0.0 +19625,4,22,1,0.0 +19625,65,21.05,39,0.0 +19625,62,49.3,44,0.0 +19625,77,13,31,0.0 +19625,74,10,30,0.0 +19625,73,15,2,0.0 +19625,7,30,40,0.0 +19625,3,10,34,0.0 +19626,25,14,20,0.0 +19626,57,19.5,47,0.0 +19626,10,31,28,0.0 +19626,35,18,49,0.0 +19626,43,46,34,0.0 +19626,56,38,4,0.0 +19626,41,9.65,20,0.0 +19626,63,43.9,24,0.0 +19626,30,25.89,49,0.0 +19626,8,40,38,0.0 +19626,32,32,21,0.0 +19626,44,19.45,39,0.0 +19626,34,14,20,0.0 +19626,60,34,11,0.0 +19627,34,14,19,0.0 +19627,38,263.5,49,0.0 +19627,45,9.5,22,0.0 +19627,31,12.5,16,0.0 +19627,66,17,41,0.0 +19627,52,7,2,0.0 +19627,64,33.25,5,0.0 +19627,47,9.5,18,0.0 +19627,33,2.5,22,0.0 +19627,15,15.5,38,0.0 +19628,22,21,34,0.0 +19628,66,17,6,0.0 +19629,20,81,27,0.0 +19629,68,12.5,5,0.0 +19629,63,43.9,11,0.0 +19629,9,97,16,0.0 +19629,44,19.45,38,0.0 +19629,69,36,3,0.0 +19629,64,33.25,22,0.0 +19629,14,23.25,50,0.0 +19629,1,18,32,0.0 +19629,60,34,39,0.0 +19629,21,10,13,0.0 +19629,7,30,49,0.0 +19629,11,21,10,0.0 +19629,72,34.8,42,0.0 +19629,5,21.35,4,0.0 +19629,49,20,28,0.0 +19629,28,45.6,46,0.0 +19629,58,13.25,17,0.0 +19629,3,10,47,0.0 +19629,37,26,29,0.0 +19629,13,6,7,0.0 +19629,34,14,36,0.0 +19629,62,49.3,10,0.0 +19629,77,13,50,0.0 +19629,45,9.5,38,0.0 +19629,32,32,15,0.0 +19629,22,21,16,0.0 +19629,47,9.5,20,0.0 +19629,38,263.5,33,0.0 +19629,29,123.79,34,0.0 +19629,56,38,48,0.0 +19629,24,4.5,17,0.0 +19629,73,15,29,0.0 +19629,25,14,11,0.0 +19629,27,43.9,13,0.0 +19629,74,10,12,0.0 +19629,23,9,36,0.0 +19629,4,22,26,0.0 +19629,42,14,11,0.0 +19629,75,7.75,22,0.0 +19629,15,15.5,19,0.0 +19629,53,32.8,22,0.0 +19629,16,17.45,41,0.0 +19629,40,18.4,13,0.0 +19629,70,15,31,0.0 +19629,43,46,15,0.0 +19629,52,7,22,0.0 +19629,19,9.2,5,0.0 +19629,17,39,36,0.0 +19629,65,21.05,37,0.0 +19629,30,25.89,8,0.0 +19629,8,40,25,0.0 +19629,76,18,21,0.0 +19629,18,62.5,46,0.0 +19629,66,17,15,0.0 +19629,51,53,5,0.0 +19629,33,2.5,46,0.0 +19629,55,24,31,0.0 +19629,61,28.5,49,0.0 +19629,12,38,22,0.0 +19629,46,12,17,0.0 +19629,67,14,10,0.0 +19629,2,19,17,0.0 +19629,31,12.5,27,0.0 +19629,54,7.45,8,0.0 +19629,50,16.25,27,0.0 +19629,41,9.65,16,0.0 +19629,48,12.75,24,0.0 +19629,71,21.5,27,0.0 +19629,36,19,33,0.0 +19629,39,18,39,0.0 +19629,57,19.5,16,0.0 +19629,10,31,41,0.0 +19630,15,15.5,4,0.0 +19630,16,17.45,45,0.0 +19630,49,20,4,0.0 +19630,22,21,46,0.0 +19630,21,10,25,0.0 +19630,56,38,19,0.0 +19630,27,43.9,44,0.0 +19630,8,40,22,0.0 +19630,10,31,6,0.0 +19630,5,21.35,13,0.0 +19630,39,18,4,0.0 +19630,18,62.5,30,0.0 +19630,54,7.45,8,0.0 +19630,25,14,9,0.0 +19630,59,55,29,0.0 +19630,44,19.45,11,0.0 +19630,20,81,11,0.0 +19630,58,13.25,24,0.0 +19630,53,32.8,12,0.0 +19630,72,34.8,24,0.0 +19630,17,39,24,0.0 +19630,47,9.5,21,0.0 +19630,32,32,44,0.0 +19630,57,19.5,12,0.0 +19630,46,12,43,0.0 +19630,55,24,9,0.0 +19630,62,49.3,33,0.0 +19630,2,19,49,0.0 +19630,61,28.5,4,0.0 +19630,6,25,46,0.0 +19630,19,9.2,18,0.0 +19630,45,9.5,28,0.0 +19630,70,15,23,0.0 +19630,13,6,27,0.0 +19630,43,46,7,0.0 +19630,35,18,15,0.0 +19630,11,21,33,0.0 +19630,33,2.5,6,0.0 +19630,60,34,28,0.0 +19630,1,18,42,0.0 +19630,24,4.5,21,0.0 +19630,30,25.89,41,0.0 +19630,31,12.5,40,0.0 +19630,51,53,46,0.0 +19630,73,15,22,0.0 +19630,41,9.65,29,0.0 +19630,69,36,43,0.0 +19630,23,9,4,0.0 +19631,24,4.5,31,0.0 +19631,17,39,18,0.0 +19631,21,10,35,0.0 +19631,76,18,38,0.0 +19631,14,23.25,20,0.0 +19631,41,9.65,4,0.0 +19631,39,18,8,0.0 +19631,19,9.2,49,0.0 +19631,30,25.89,39,0.0 +19631,50,16.25,42,0.0 +19631,37,26,45,0.0 +19631,23,9,4,0.0 +19631,54,7.45,31,0.0 +19631,27,43.9,46,0.0 +19631,44,19.45,9,0.0 +19631,9,97,19,0.0 +19631,62,49.3,28,0.0 +19631,8,40,37,0.0 +19631,61,28.5,16,0.0 +19631,20,81,4,0.0 +19631,70,15,9,0.0 +19631,36,19,36,0.0 +19631,28,45.6,47,0.0 +19631,72,34.8,10,0.0 +19631,25,14,4,0.0 +19631,71,21.5,14,0.0 +19631,66,17,38,0.0 +19631,26,31.23,9,0.0 +19631,59,55,17,0.0 +19631,55,24,18,0.0 +19631,57,19.5,49,0.0 +19631,31,12.5,14,0.0 +19631,4,22,12,0.0 +19631,52,7,22,0.0 +19631,1,18,42,0.0 +19631,15,15.5,18,0.0 +19631,2,19,28,0.0 +19631,12,38,18,0.0 +19631,53,32.8,17,0.0 +19631,58,13.25,44,0.0 +19631,49,20,43,0.0 +19631,42,14,15,0.0 +19631,65,21.05,30,0.0 +19631,69,36,35,0.0 +19631,63,43.9,18,0.0 +19631,46,12,36,0.0 +19631,74,10,38,0.0 +19631,56,38,28,0.0 +19631,11,21,9,0.0 +19631,77,13,37,0.0 +19631,35,18,50,0.0 +19631,32,32,34,0.0 +19631,29,123.79,1,0.0 +19631,75,7.75,18,0.0 +19631,10,31,30,0.0 +19631,16,17.45,35,0.0 +19631,40,18.4,15,0.0 +19631,5,21.35,11,0.0 +19631,51,53,29,0.0 +19632,23,9,12,0.0 +19632,61,28.5,13,0.0 +19632,6,25,42,0.0 +19632,72,34.8,2,0.0 +19632,11,21,33,0.0 +19632,63,43.9,42,0.0 +19632,22,21,17,0.0 +19632,18,62.5,27,0.0 +19632,27,43.9,28,0.0 +19632,35,18,10,0.0 +19632,19,9.2,43,0.0 +19632,5,21.35,49,0.0 +19632,37,26,12,0.0 +19632,43,46,48,0.0 +19632,58,13.25,26,0.0 +19632,15,15.5,17,0.0 +19633,60,34,38,0.0 +19633,23,9,36,0.0 +19633,75,7.75,20,0.0 +19633,12,38,49,0.0 +19633,1,18,42,0.0 +19633,32,32,10,0.0 +19633,2,19,34,0.0 +19633,5,21.35,46,0.0 +19633,61,28.5,50,0.0 +19633,3,10,7,0.0 +19633,35,18,12,0.0 +19633,28,45.6,16,0.0 +19633,17,39,41,0.0 +19633,66,17,46,0.0 +19633,37,26,32,0.0 +19633,24,4.5,35,0.0 +19633,49,20,28,0.0 +19633,50,16.25,21,0.0 +19633,8,40,15,0.0 +19633,36,19,46,0.0 +19633,64,33.25,11,0.0 +19633,33,2.5,30,0.0 +19633,57,19.5,5,0.0 +19633,9,97,48,0.0 +19633,73,15,27,0.0 +19633,77,13,47,0.0 +19633,38,263.5,35,0.0 +19633,70,15,16,0.0 +19633,22,21,15,0.0 +19633,56,38,45,0.0 +19633,76,18,50,0.0 +19633,55,24,41,0.0 +19633,10,31,29,0.0 +19633,40,18.4,14,0.0 +19633,34,14,10,0.0 +19633,20,81,24,0.0 +19633,65,21.05,20,0.0 +19633,71,21.5,38,0.0 +19633,63,43.9,25,0.0 +19633,18,62.5,30,0.0 +19633,21,10,7,0.0 +19633,25,14,22,0.0 +19633,11,21,41,0.0 +19633,30,25.89,41,0.0 +19633,48,12.75,23,0.0 +19633,27,43.9,13,0.0 +19633,53,32.8,40,0.0 +19633,43,46,39,0.0 +19633,15,15.5,13,0.0 +19633,44,19.45,7,0.0 +19633,6,25,15,0.0 +19633,14,23.25,25,0.0 +19633,4,22,3,0.0 +19633,46,12,39,0.0 +19633,26,31.23,26,0.0 +19633,19,9.2,14,0.0 +19633,69,36,4,0.0 +19633,67,14,23,0.0 +19633,58,13.25,36,0.0 +19633,47,9.5,14,0.0 +19633,39,18,22,0.0 +19633,72,34.8,32,0.0 +19633,13,6,12,0.0 +19633,42,14,46,0.0 +19633,68,12.5,2,0.0 +19633,31,12.5,12,0.0 +19633,59,55,9,0.0 +19633,54,7.45,37,0.0 +19633,51,53,21,0.0 +19633,45,9.5,45,0.0 +19633,41,9.65,1,0.0 +19633,16,17.45,5,0.0 +19633,62,49.3,37,0.0 +19634,16,17.45,43,0.0 +19634,37,26,50,0.0 +19634,31,12.5,17,0.0 +19634,53,32.8,30,0.0 +19634,76,18,33,0.0 +19634,36,19,3,0.0 +19634,10,31,46,0.0 +19634,11,21,6,0.0 +19634,12,38,46,0.0 +19634,67,14,47,0.0 +19634,5,21.35,22,0.0 +19634,40,18.4,45,0.0 +19634,62,49.3,12,0.0 +19634,55,24,13,0.0 +19634,51,53,29,0.0 +19634,20,81,34,0.0 +19634,29,123.79,41,0.0 +19634,18,62.5,50,0.0 +19634,54,7.45,8,0.0 +19634,52,7,1,0.0 +19634,22,21,7,0.0 +19634,24,4.5,8,0.0 +19634,46,12,36,0.0 +19634,23,9,29,0.0 +19634,47,9.5,33,0.0 +19634,8,40,19,0.0 +19634,41,9.65,13,0.0 +19634,28,45.6,2,0.0 +19634,71,21.5,41,0.0 +19634,4,22,48,0.0 +19634,69,36,47,0.0 +19634,59,55,31,0.0 +19634,74,10,2,0.0 +19634,15,15.5,47,0.0 +19634,63,43.9,41,0.0 +19634,39,18,25,0.0 +19634,56,38,38,0.0 +19634,61,28.5,30,0.0 +19634,14,23.25,37,0.0 +19634,33,2.5,16,0.0 +19634,7,30,37,0.0 +19634,45,9.5,30,0.0 +19634,1,18,10,0.0 +19634,26,31.23,22,0.0 +19634,32,32,47,0.0 +19634,73,15,21,0.0 +19634,44,19.45,22,0.0 +19634,21,10,32,0.0 +19634,49,20,18,0.0 +19634,58,13.25,15,0.0 +19634,27,43.9,42,0.0 +19635,19,9.2,14,0.0 +19635,41,9.65,12,0.0 +19635,40,18.4,18,0.0 +19635,25,14,50,0.0 +19635,6,25,6,0.0 +19635,70,15,47,0.0 +19635,77,13,45,0.0 +19635,74,10,28,0.0 +19635,39,18,35,0.0 +19635,53,32.8,24,0.0 +19635,72,34.8,42,0.0 +19635,35,18,42,0.0 +19635,4,22,45,0.0 +19635,27,43.9,46,0.0 +19635,5,21.35,2,0.0 +19635,59,55,44,0.0 +19635,71,21.5,46,0.0 +19635,46,12,38,0.0 +19635,30,25.89,12,0.0 +19635,44,19.45,43,0.0 +19635,28,45.6,22,0.0 +19635,58,13.25,19,0.0 +19635,63,43.9,25,0.0 +19635,47,9.5,19,0.0 +19635,33,2.5,17,0.0 +19635,48,12.75,8,0.0 +19635,31,12.5,43,0.0 +19636,58,13.25,13,0.0 +19636,77,13,10,0.0 +19636,25,14,8,0.0 +19636,44,19.45,8,0.0 +19636,47,9.5,7,0.0 +19636,75,7.75,33,0.0 +19636,63,43.9,12,0.0 +19636,74,10,4,0.0 +19636,35,18,33,0.0 +19636,54,7.45,29,0.0 +19636,11,21,36,0.0 +19636,8,40,49,0.0 +19636,31,12.5,35,0.0 +19636,57,19.5,45,0.0 +19636,34,14,37,0.0 +19636,15,15.5,2,0.0 +19636,69,36,30,0.0 +19636,65,21.05,43,0.0 +19636,76,18,46,0.0 +19636,1,18,20,0.0 +19636,59,55,3,0.0 +19636,28,45.6,14,0.0 +19636,27,43.9,30,0.0 +19636,13,6,15,0.0 +19636,22,21,6,0.0 +19636,4,22,8,0.0 +19636,55,24,1,0.0 +19636,66,17,48,0.0 +19636,40,18.4,3,0.0 +19636,61,28.5,41,0.0 +19636,17,39,8,0.0 +19636,41,9.65,21,0.0 +19636,46,12,2,0.0 +19636,50,16.25,42,0.0 +19636,73,15,41,0.0 +19636,26,31.23,8,0.0 +19636,16,17.45,33,0.0 +19636,67,14,35,0.0 +19636,24,4.5,14,0.0 +19636,18,62.5,1,0.0 +19636,72,34.8,20,0.0 +19636,33,2.5,24,0.0 +19636,36,19,1,0.0 +19636,29,123.79,13,0.0 +19636,9,97,3,0.0 +19636,6,25,27,0.0 +19636,37,26,47,0.0 +19636,42,14,10,0.0 +19636,30,25.89,17,0.0 +19636,45,9.5,46,0.0 +19636,19,9.2,28,0.0 +19636,70,15,10,0.0 +19636,23,9,44,0.0 +19636,62,49.3,14,0.0 +19636,52,7,46,0.0 +19636,14,23.25,42,0.0 +19636,21,10,12,0.0 +19636,43,46,37,0.0 +19636,56,38,39,0.0 +19636,68,12.5,32,0.0 +19636,48,12.75,10,0.0 +19636,39,18,33,0.0 +19636,7,30,38,0.0 +19636,5,21.35,27,0.0 +19636,20,81,2,0.0 +19636,71,21.5,46,0.0 +19636,32,32,15,0.0 +19636,2,19,19,0.0 +19637,16,17.45,6,0.0 +19637,46,12,35,0.0 +19637,49,20,8,0.0 +19637,25,14,49,0.0 +19637,45,9.5,30,0.0 +19637,48,12.75,32,0.0 +19637,66,17,50,0.0 +19637,54,7.45,41,0.0 +19637,74,10,44,0.0 +19637,60,34,45,0.0 +19637,10,31,10,0.0 +19637,30,25.89,33,0.0 +19637,29,123.79,44,0.0 +19637,21,10,6,0.0 +19637,55,24,3,0.0 +19637,2,19,50,0.0 +19637,71,21.5,10,0.0 +19637,65,21.05,13,0.0 +19637,68,12.5,41,0.0 +19638,31,12.5,31,0.0 +19638,13,6,35,0.0 +19638,36,19,2,0.0 +19638,41,9.65,12,0.0 +19638,48,12.75,27,0.0 +19638,71,21.5,43,0.0 +19638,66,17,45,0.0 +19638,67,14,32,0.0 +19638,6,25,16,0.0 +19638,11,21,47,0.0 +19639,68,12.5,21,0.0 +19639,57,19.5,40,0.0 +19639,45,9.5,50,0.0 +19639,34,14,27,0.0 +19639,42,14,50,0.0 +19640,59,55,10,0.0 +19640,49,20,45,0.0 +19640,33,2.5,42,0.0 +19640,39,18,10,0.0 +19640,6,25,43,0.0 +19640,32,32,6,0.0 +19640,28,45.6,13,0.0 +19640,14,23.25,2,0.0 +19640,10,31,28,0.0 +19640,25,14,35,0.0 +19640,69,36,33,0.0 +19640,5,21.35,33,0.0 +19640,70,15,11,0.0 +19640,73,15,23,0.0 +19640,11,21,27,0.0 +19640,23,9,20,0.0 +19640,54,7.45,24,0.0 +19640,4,22,4,0.0 +19640,1,18,48,0.0 +19640,62,49.3,32,0.0 +19640,8,40,3,0.0 +19640,35,18,1,0.0 +19640,22,21,26,0.0 +19640,21,10,14,0.0 +19640,50,16.25,37,0.0 +19640,57,19.5,19,0.0 +19640,30,25.89,18,0.0 +19640,71,21.5,37,0.0 +19640,37,26,48,0.0 +19640,44,19.45,17,0.0 +19640,53,32.8,29,0.0 +19640,76,18,35,0.0 +19640,31,12.5,50,0.0 +19640,34,14,42,0.0 +19640,38,263.5,44,0.0 +19640,61,28.5,2,0.0 +19640,26,31.23,47,0.0 +19640,42,14,4,0.0 +19640,29,123.79,11,0.0 +19640,7,30,22,0.0 +19640,75,7.75,12,0.0 +19640,12,38,34,0.0 +19641,8,40,27,0.0 +19641,48,12.75,6,0.0 +19641,61,28.5,43,0.0 +19641,35,18,27,0.0 +19641,20,81,8,0.0 +19641,76,18,34,0.0 +19641,65,21.05,42,0.0 +19641,62,49.3,14,0.0 +19641,59,55,40,0.0 +19641,22,21,47,0.0 +19641,1,18,7,0.0 +19641,7,30,26,0.0 +19641,68,12.5,24,0.0 +19641,16,17.45,20,0.0 +19641,31,12.5,28,0.0 +19641,55,24,40,0.0 +19641,63,43.9,43,0.0 +19641,41,9.65,24,0.0 +19641,47,9.5,42,0.0 +19641,39,18,42,0.0 +19641,33,2.5,39,0.0 +19641,2,19,41,0.0 +19641,57,19.5,47,0.0 +19641,23,9,34,0.0 +19641,37,26,35,0.0 +19641,26,31.23,14,0.0 +19641,36,19,13,0.0 +19641,66,17,24,0.0 +19641,53,32.8,11,0.0 +19641,40,18.4,26,0.0 +19641,64,33.25,14,0.0 +19641,17,39,19,0.0 +19641,51,53,38,0.0 +19641,74,10,37,0.0 +19641,29,123.79,7,0.0 +19641,12,38,24,0.0 +19642,69,36,30,0.0 +19642,62,49.3,34,0.0 +19642,27,43.9,32,0.0 +19642,24,4.5,43,0.0 +19642,7,30,47,0.0 +19642,26,31.23,1,0.0 +19642,1,18,38,0.0 +19642,20,81,8,0.0 +19642,30,25.89,9,0.0 +19642,34,14,11,0.0 +19642,11,21,1,0.0 +19642,45,9.5,20,0.0 +19642,53,32.8,34,0.0 +19642,17,39,24,0.0 +19642,21,10,17,0.0 +19642,42,14,40,0.0 +19642,70,15,24,0.0 +19642,29,123.79,11,0.0 +19642,74,10,46,0.0 +19642,77,13,5,0.0 +19642,8,40,38,0.0 +19642,44,19.45,12,0.0 +19642,2,19,41,0.0 +19642,25,14,35,0.0 +19642,38,263.5,26,0.0 +19642,22,21,9,0.0 +19642,76,18,18,0.0 +19642,39,18,47,0.0 +19642,48,12.75,39,0.0 +19642,47,9.5,2,0.0 +19642,19,9.2,21,0.0 +19642,23,9,28,0.0 +19642,63,43.9,34,0.0 +19642,75,7.75,32,0.0 +19642,5,21.35,36,0.0 +19642,59,55,2,0.0 +19642,73,15,32,0.0 +19642,61,28.5,31,0.0 +19642,43,46,23,0.0 +19642,51,53,29,0.0 +19642,12,38,14,0.0 +19642,50,16.25,30,0.0 +19642,41,9.65,40,0.0 +19642,68,12.5,46,0.0 +19642,72,34.8,19,0.0 +19642,37,26,9,0.0 +19643,3,10,10,0.0 +19643,26,31.23,50,0.0 +19643,12,38,11,0.0 +19643,69,36,43,0.0 +19643,25,14,18,0.0 +19643,49,20,14,0.0 +19643,42,14,16,0.0 +19643,30,25.89,29,0.0 +19643,63,43.9,43,0.0 +19643,5,21.35,30,0.0 +19643,46,12,33,0.0 +19643,70,15,16,0.0 +19643,14,23.25,10,0.0 +19643,39,18,36,0.0 +19643,44,19.45,32,0.0 +19643,23,9,35,0.0 +19643,54,7.45,37,0.0 +19643,71,21.5,13,0.0 +19643,37,26,30,0.0 +19643,73,15,44,0.0 +19643,1,18,1,0.0 +19643,9,97,5,0.0 +19643,32,32,45,0.0 +19643,22,21,45,0.0 +19643,18,62.5,44,0.0 +19643,7,30,30,0.0 +19643,31,12.5,3,0.0 +19643,67,14,12,0.0 +19643,65,21.05,48,0.0 +19643,15,15.5,19,0.0 +19643,21,10,19,0.0 +19643,34,14,2,0.0 +19643,17,39,11,0.0 +19643,2,19,49,0.0 +19643,20,81,42,0.0 +19643,10,31,34,0.0 +19643,36,19,6,0.0 +19643,50,16.25,10,0.0 +19643,24,4.5,28,0.0 +19643,58,13.25,46,0.0 +19643,76,18,18,0.0 +19643,43,46,18,0.0 +19643,27,43.9,36,0.0 +19643,57,19.5,31,0.0 +19643,8,40,17,0.0 +19643,74,10,42,0.0 +19643,51,53,15,0.0 +19643,28,45.6,46,0.0 +19643,40,18.4,25,0.0 +19643,33,2.5,9,0.0 +19643,19,9.2,38,0.0 +19643,13,6,19,0.0 +19643,11,21,23,0.0 +19643,59,55,43,0.0 +19643,4,22,31,0.0 +19643,77,13,36,0.0 +19643,29,123.79,9,0.0 +19643,56,38,35,0.0 +19643,55,24,43,0.0 +19643,52,7,50,0.0 +19643,62,49.3,23,0.0 +19643,48,12.75,16,0.0 +19643,61,28.5,42,0.0 +19643,38,263.5,30,0.0 +19643,6,25,7,0.0 +19644,67,14,24,0.0 +19644,14,23.25,39,0.0 +19644,38,263.5,20,0.0 +19644,30,25.89,11,0.0 +19644,76,18,23,0.0 +19644,68,12.5,9,0.0 +19644,54,7.45,46,0.0 +19644,34,14,49,0.0 +19644,15,15.5,38,0.0 +19644,5,21.35,25,0.0 +19644,12,38,36,0.0 +19644,45,9.5,48,0.0 +19644,33,2.5,2,0.0 +19644,26,31.23,12,0.0 +19645,48,12.75,25,0.0 +19645,42,14,32,0.0 +19645,33,2.5,23,0.0 +19645,74,10,1,0.0 +19645,59,55,10,0.0 +19645,36,19,13,0.0 +19645,62,49.3,10,0.0 +19645,55,24,21,0.0 +19645,53,32.8,8,0.0 +19646,39,18,21,0.0 +19646,4,22,14,0.0 +19646,76,18,50,0.0 +19646,9,97,7,0.0 +19646,52,7,10,0.0 +19646,37,26,33,0.0 +19646,19,9.2,12,0.0 +19646,25,14,32,0.0 +19646,46,12,13,0.0 +19646,16,17.45,3,0.0 +19646,2,19,30,0.0 +19646,75,7.75,18,0.0 +19646,65,21.05,6,0.0 +19646,69,36,21,0.0 +19646,32,32,44,0.0 +19646,22,21,3,0.0 +19646,27,43.9,25,0.0 +19646,49,20,48,0.0 +19646,70,15,1,0.0 +19646,35,18,23,0.0 +19646,40,18.4,5,0.0 +19646,7,30,43,0.0 +19646,74,10,47,0.0 +19646,68,12.5,26,0.0 +19646,73,15,37,0.0 +19646,77,13,8,0.0 +19646,42,14,36,0.0 +19646,63,43.9,10,0.0 +19646,31,12.5,39,0.0 +19646,30,25.89,24,0.0 +19647,53,32.8,27,0.0 +19647,50,16.25,48,0.0 +19647,40,18.4,16,0.0 +19647,36,19,11,0.0 +19647,47,9.5,24,0.0 +19647,6,25,43,0.0 +19647,65,21.05,44,0.0 +19647,14,23.25,48,0.0 +19647,3,10,44,0.0 +19647,76,18,45,0.0 +19647,31,12.5,24,0.0 +19647,61,28.5,19,0.0 +19647,77,13,29,0.0 +19647,2,19,38,0.0 +19647,56,38,2,0.0 +19647,17,39,34,0.0 +19647,15,15.5,44,0.0 +19647,4,22,1,0.0 +19647,70,15,7,0.0 +19647,12,38,37,0.0 +19647,42,14,40,0.0 +19647,72,34.8,27,0.0 +19647,45,9.5,29,0.0 +19647,75,7.75,39,0.0 +19647,68,12.5,29,0.0 +19647,43,46,38,0.0 +19647,58,13.25,16,0.0 +19647,28,45.6,42,0.0 +19647,18,62.5,32,0.0 +19647,8,40,44,0.0 +19647,1,18,23,0.0 +19647,20,81,30,0.0 +19647,73,15,2,0.0 +19647,48,12.75,15,0.0 +19647,57,19.5,26,0.0 +19647,24,4.5,15,0.0 +19647,22,21,13,0.0 +19647,7,30,40,0.0 +19647,26,31.23,46,0.0 +19647,27,43.9,50,0.0 +19647,52,7,49,0.0 +19647,33,2.5,27,0.0 +19647,55,24,16,0.0 +19647,38,263.5,6,0.0 +19647,21,10,4,0.0 +19647,19,9.2,4,0.0 +19647,44,19.45,41,0.0 +19647,11,21,45,0.0 +19647,46,12,39,0.0 +19647,63,43.9,22,0.0 +19647,29,123.79,2,0.0 +19647,32,32,3,0.0 +19647,67,14,47,0.0 +19647,9,97,16,0.0 +19647,25,14,16,0.0 +19647,62,49.3,18,0.0 +19647,59,55,30,0.0 +19647,13,6,37,0.0 +19647,10,31,38,0.0 +19647,71,21.5,9,0.0 +19647,49,20,33,0.0 +19647,39,18,42,0.0 +19647,16,17.45,6,0.0 +19647,5,21.35,29,0.0 +19647,30,25.89,20,0.0 +19647,69,36,15,0.0 +19647,41,9.65,24,0.0 +19647,74,10,25,0.0 +19647,34,14,4,0.0 +19647,23,9,24,0.0 +19647,64,33.25,46,0.0 +19647,60,34,32,0.0 +19647,35,18,33,0.0 +19647,51,53,10,0.0 +19647,66,17,28,0.0 +19647,37,26,13,0.0 +19647,54,7.45,31,0.0 +19648,27,43.9,49,0.0 +19648,37,26,9,0.0 +19648,59,55,4,0.0 +19648,75,7.75,30,0.0 +19648,25,14,12,0.0 +19648,14,23.25,39,0.0 +19648,61,28.5,14,0.0 +19648,73,15,6,0.0 +19648,19,9.2,3,0.0 +19648,6,25,31,0.0 +19649,14,23.25,17,0.0 +19649,75,7.75,2,0.0 +19649,61,28.5,10,0.0 +19649,48,12.75,28,0.0 +19649,30,25.89,12,0.0 +19649,6,25,32,0.0 +19649,1,18,1,0.0 +19649,51,53,11,0.0 +19649,47,9.5,23,0.0 +19649,64,33.25,33,0.0 +19649,40,18.4,42,0.0 +19649,23,9,16,0.0 +19649,70,15,42,0.0 +19649,67,14,16,0.0 +19649,18,62.5,40,0.0 +19649,57,19.5,24,0.0 +19649,13,6,23,0.0 +19649,33,2.5,48,0.0 +19649,71,21.5,28,0.0 +19649,21,10,35,0.0 +19649,62,49.3,6,0.0 +19649,63,43.9,48,0.0 +19649,32,32,22,0.0 +19649,7,30,14,0.0 +19649,15,15.5,20,0.0 +19649,66,17,37,0.0 +19649,9,97,40,0.0 +19649,10,31,34,0.0 +19649,77,13,29,0.0 +19649,29,123.79,23,0.0 +19649,55,24,47,0.0 +19649,24,4.5,9,0.0 +19649,34,14,37,0.0 +19649,76,18,33,0.0 +19649,65,21.05,1,0.0 +19649,25,14,7,0.0 +19649,2,19,38,0.0 +19649,73,15,42,0.0 +19649,60,34,19,0.0 +19650,58,13.25,18,0.0 +19650,42,14,17,0.0 +19650,69,36,19,0.0 +19650,65,21.05,14,0.0 +19650,3,10,19,0.0 +19650,33,2.5,19,0.0 +19650,19,9.2,35,0.0 +19650,77,13,36,0.0 +19650,54,7.45,41,0.0 +19650,53,32.8,9,0.0 +19650,28,45.6,50,0.0 +19650,56,38,38,0.0 +19650,75,7.75,1,0.0 +19650,47,9.5,16,0.0 +19650,73,15,20,0.0 +19650,55,24,20,0.0 +19650,5,21.35,19,0.0 +19650,52,7,48,0.0 +19650,4,22,8,0.0 +19650,10,31,8,0.0 +19650,14,23.25,46,0.0 +19650,29,123.79,42,0.0 +19650,46,12,23,0.0 +19650,12,38,14,0.0 +19650,71,21.5,41,0.0 +19650,8,40,28,0.0 +19650,35,18,8,0.0 +19650,7,30,12,0.0 +19650,64,33.25,26,0.0 +19650,43,46,38,0.0 +19650,44,19.45,5,0.0 +19650,72,34.8,44,0.0 +19650,45,9.5,31,0.0 +19650,50,16.25,33,0.0 +19650,1,18,4,0.0 +19650,30,25.89,25,0.0 +19650,49,20,4,0.0 +19650,60,34,1,0.0 +19650,40,18.4,28,0.0 +19650,17,39,11,0.0 +19650,22,21,27,0.0 +19650,25,14,8,0.0 +19650,26,31.23,24,0.0 +19650,66,17,32,0.0 +19650,31,12.5,37,0.0 +19650,18,62.5,40,0.0 +19650,41,9.65,27,0.0 +19650,36,19,43,0.0 +19650,38,263.5,39,0.0 +19650,57,19.5,25,0.0 +19650,61,28.5,46,0.0 +19650,67,14,17,0.0 +19650,27,43.9,31,0.0 +19650,23,9,18,0.0 +19650,68,12.5,32,0.0 +19650,62,49.3,40,0.0 +19650,16,17.45,24,0.0 +19650,59,55,32,0.0 +19650,39,18,6,0.0 +19650,74,10,31,0.0 +19650,9,97,8,0.0 +19650,51,53,37,0.0 +19650,21,10,11,0.0 +19650,34,14,47,0.0 +19651,66,17,3,0.0 +19651,2,19,10,0.0 +19651,5,21.35,3,0.0 +19651,43,46,24,0.0 +19651,68,12.5,13,0.0 +19651,23,9,12,0.0 +19651,46,12,48,0.0 +19651,20,81,24,0.0 +19651,75,7.75,27,0.0 +19651,69,36,39,0.0 +19651,57,19.5,25,0.0 +19651,60,34,26,0.0 +19651,35,18,38,0.0 +19651,77,13,41,0.0 +19651,31,12.5,22,0.0 +19651,19,9.2,11,0.0 +19651,36,19,17,0.0 +19651,38,263.5,15,0.0 +19651,64,33.25,39,0.0 +19651,21,10,24,0.0 +19651,76,18,47,0.0 +19651,67,14,34,0.0 +19651,30,25.89,22,0.0 +19651,15,15.5,47,0.0 +19651,56,38,42,0.0 +19651,74,10,28,0.0 +19651,17,39,26,0.0 +19651,28,45.6,14,0.0 +19651,71,21.5,19,0.0 +19651,70,15,29,0.0 +19651,54,7.45,37,0.0 +19651,61,28.5,24,0.0 +19652,58,13.25,26,0.0 +19652,20,81,26,0.0 +19652,12,38,31,0.0 +19652,46,12,35,0.0 +19652,41,9.65,12,0.0 +19652,9,97,8,0.0 +19652,6,25,49,0.0 +19652,57,19.5,2,0.0 +19652,56,38,37,0.0 +19652,10,31,21,0.0 +19652,26,31.23,45,0.0 +19652,64,33.25,32,0.0 +19652,13,6,26,0.0 +19652,35,18,41,0.0 +19653,77,13,16,0.0 +19653,58,13.25,30,0.0 +19653,51,53,17,0.0 +19653,12,38,47,0.0 +19653,2,19,36,0.0 +19653,10,31,3,0.0 +19653,27,43.9,49,0.0 +19653,74,10,34,0.0 +19653,49,20,20,0.0 +19653,30,25.89,20,0.0 +19654,37,26,20,0.0 +19654,8,40,5,0.0 +19654,77,13,10,0.0 +19654,68,12.5,2,0.0 +19654,15,15.5,45,0.0 +19654,40,18.4,16,0.0 +19654,14,23.25,45,0.0 +19654,16,17.45,27,0.0 +19654,24,4.5,17,0.0 +19654,54,7.45,10,0.0 +19654,44,19.45,31,0.0 +19654,70,15,7,0.0 +19654,76,18,6,0.0 +19654,32,32,22,0.0 +19654,29,123.79,17,0.0 +19654,71,21.5,12,0.0 +19654,53,32.8,5,0.0 +19654,28,45.6,9,0.0 +19654,34,14,47,0.0 +19654,61,28.5,47,0.0 +19654,39,18,2,0.0 +19654,63,43.9,19,0.0 +19654,59,55,2,0.0 +19654,19,9.2,3,0.0 +19654,62,49.3,45,0.0 +19654,65,21.05,23,0.0 +19654,1,18,35,0.0 +19654,3,10,3,0.0 +19654,60,34,46,0.0 +19654,51,53,2,0.0 +19654,4,22,31,0.0 +19654,27,43.9,1,0.0 +19654,12,38,36,0.0 +19654,7,30,37,0.0 +19654,9,97,4,0.0 +19654,75,7.75,40,0.0 +19654,26,31.23,25,0.0 +19654,56,38,36,0.0 +19654,35,18,6,0.0 +19654,13,6,26,0.0 +19654,18,62.5,37,0.0 +19654,2,19,41,0.0 +19654,52,7,24,0.0 +19654,6,25,29,0.0 +19655,66,17,8,0.0 +19655,24,4.5,36,0.0 +19655,44,19.45,19,0.0 +19655,29,123.79,50,0.0 +19655,57,19.5,37,0.0 +19655,16,17.45,9,0.0 +19655,51,53,26,0.0 +19655,25,14,45,0.0 +19655,26,31.23,21,0.0 +19655,71,21.5,25,0.0 +19655,1,18,48,0.0 +19655,6,25,4,0.0 +19655,39,18,11,0.0 +19655,31,12.5,48,0.0 +19655,55,24,44,0.0 +19655,40,18.4,50,0.0 +19655,3,10,16,0.0 +19655,56,38,16,0.0 +19655,50,16.25,43,0.0 +19655,15,15.5,36,0.0 +19655,77,13,35,0.0 +19655,76,18,10,0.0 +19655,68,12.5,48,0.0 +19655,14,23.25,6,0.0 +19655,47,9.5,13,0.0 +19655,65,21.05,36,0.0 +19655,74,10,31,0.0 +19655,61,28.5,31,0.0 +19656,63,43.9,2,0.0 +19656,7,30,47,0.0 +19656,74,10,10,0.0 +19656,15,15.5,25,0.0 +19656,23,9,27,0.0 +19656,24,4.5,3,0.0 +19656,26,31.23,17,0.0 +19656,29,123.79,31,0.0 +19656,42,14,35,0.0 +19656,57,19.5,15,0.0 +19656,17,39,18,0.0 +19656,70,15,26,0.0 +19656,31,12.5,19,0.0 +19656,75,7.75,11,0.0 +19656,49,20,45,0.0 +19656,76,18,44,0.0 +19656,53,32.8,46,0.0 +19656,30,25.89,4,0.0 +19656,43,46,44,0.0 +19656,32,32,40,0.0 +19656,12,38,38,0.0 +19656,71,21.5,48,0.0 +19656,47,9.5,11,0.0 +19656,28,45.6,13,0.0 +19656,73,15,31,0.0 +19656,44,19.45,13,0.0 +19656,11,21,31,0.0 +19656,54,7.45,3,0.0 +19656,58,13.25,11,0.0 +19656,38,263.5,19,0.0 +19656,52,7,37,0.0 +19656,3,10,33,0.0 +19656,60,34,30,0.0 +19656,55,24,10,0.0 +19656,20,81,35,0.0 +19656,40,18.4,8,0.0 +19656,19,9.2,5,0.0 +19656,35,18,36,0.0 +19656,66,17,45,0.0 +19656,39,18,11,0.0 +19656,56,38,29,0.0 +19656,9,97,25,0.0 +19656,61,28.5,42,0.0 +19656,46,12,29,0.0 +19656,41,9.65,45,0.0 +19656,22,21,18,0.0 +19656,25,14,19,0.0 +19656,16,17.45,29,0.0 +19656,4,22,13,0.0 +19656,2,19,42,0.0 +19656,8,40,6,0.0 +19656,68,12.5,10,0.0 +19656,37,26,28,0.0 +19656,65,21.05,10,0.0 +19656,18,62.5,10,0.0 +19656,69,36,4,0.0 +19656,27,43.9,5,0.0 +19656,36,19,23,0.0 +19656,10,31,24,0.0 +19656,6,25,7,0.0 +19657,12,38,10,0.0 +19657,4,22,46,0.0 +19657,39,18,28,0.0 +19657,49,20,34,0.0 +19657,2,19,10,0.0 +19657,38,263.5,1,0.0 +19657,69,36,3,0.0 +19657,22,21,12,0.0 +19657,40,18.4,10,0.0 +19657,65,21.05,17,0.0 +19657,64,33.25,6,0.0 +19657,53,32.8,27,0.0 +19657,50,16.25,17,0.0 +19657,33,2.5,22,0.0 +19657,47,9.5,17,0.0 +19657,7,30,11,0.0 +19657,27,43.9,28,0.0 +19657,5,21.35,28,0.0 +19657,45,9.5,48,0.0 +19657,71,21.5,42,0.0 +19657,16,17.45,21,0.0 +19657,48,12.75,48,0.0 +19657,37,26,9,0.0 +19657,43,46,20,0.0 +19657,61,28.5,44,0.0 +19657,36,19,7,0.0 +19657,74,10,40,0.0 +19657,42,14,37,0.0 +19657,35,18,32,0.0 +19657,59,55,29,0.0 +19657,70,15,10,0.0 +19657,46,12,20,0.0 +19657,54,7.45,37,0.0 +19657,32,32,16,0.0 +19657,15,15.5,11,0.0 +19657,77,13,18,0.0 +19657,29,123.79,22,0.0 +19657,76,18,18,0.0 +19657,25,14,45,0.0 +19657,58,13.25,46,0.0 +19657,30,25.89,23,0.0 +19657,21,10,35,0.0 +19657,28,45.6,38,0.0 +19657,18,62.5,31,0.0 +19657,66,17,44,0.0 +19657,10,31,48,0.0 +19657,44,19.45,46,0.0 +19657,68,12.5,29,0.0 +19657,6,25,8,0.0 +19657,73,15,24,0.0 +19657,67,14,14,0.0 +19657,55,24,18,0.0 +19657,62,49.3,9,0.0 +19657,13,6,25,0.0 +19657,14,23.25,33,0.0 +19657,75,7.75,31,0.0 +19657,56,38,14,0.0 +19657,26,31.23,37,0.0 +19657,1,18,37,0.0 +19657,34,14,2,0.0 +19657,11,21,44,0.0 +19657,9,97,12,0.0 +19657,17,39,5,0.0 +19657,23,9,40,0.0 +19657,8,40,43,0.0 +19657,57,19.5,25,0.0 +19657,63,43.9,28,0.0 +19658,73,15,46,0.0 +19658,47,9.5,40,0.0 +19658,65,21.05,30,0.0 +19658,45,9.5,50,0.0 +19658,59,55,49,0.0 +19658,53,32.8,35,0.0 +19658,37,26,1,0.0 +19658,4,22,37,0.0 +19658,62,49.3,28,0.0 +19658,72,34.8,10,0.0 +19658,66,17,15,0.0 +19658,77,13,44,0.0 +19658,57,19.5,7,0.0 +19658,11,21,41,0.0 +19658,17,39,39,0.0 +19658,36,19,47,0.0 +19658,23,9,10,0.0 +19658,10,31,15,0.0 +19658,71,21.5,30,0.0 +19658,25,14,39,0.0 +19658,3,10,17,0.0 +19658,50,16.25,21,0.0 +19658,64,33.25,14,0.0 +19658,38,263.5,2,0.0 +19658,39,18,3,0.0 +19658,56,38,49,0.0 +19658,52,7,2,0.0 +19658,67,14,9,0.0 +19658,54,7.45,26,0.0 +19658,46,12,35,0.0 +19658,12,38,19,0.0 +19658,27,43.9,30,0.0 +19658,51,53,18,0.0 +19658,15,15.5,5,0.0 +19658,13,6,32,0.0 +19658,70,15,40,0.0 +19658,14,23.25,12,0.0 +19658,55,24,16,0.0 +19658,28,45.6,3,0.0 +19658,69,36,41,0.0 +19658,5,21.35,7,0.0 +19658,60,34,48,0.0 +19658,63,43.9,47,0.0 +19658,29,123.79,17,0.0 +19658,44,19.45,16,0.0 +19658,58,13.25,43,0.0 +19659,45,9.5,39,0.0 +19659,28,45.6,37,0.0 +19659,25,14,47,0.0 +19659,43,46,3,0.0 +19659,57,19.5,10,0.0 +19659,48,12.75,49,0.0 +19659,34,14,16,0.0 +19659,35,18,41,0.0 +19659,21,10,2,0.0 +19659,77,13,12,0.0 +19659,50,16.25,33,0.0 +19659,72,34.8,15,0.0 +19659,66,17,8,0.0 +19659,54,7.45,50,0.0 +19659,40,18.4,28,0.0 +19659,32,32,7,0.0 +19659,2,19,38,0.0 +19659,71,21.5,34,0.0 +19659,53,32.8,25,0.0 +19659,39,18,1,0.0 +19659,18,62.5,40,0.0 +19659,62,49.3,5,0.0 +19659,33,2.5,26,0.0 +19659,67,14,41,0.0 +19659,47,9.5,31,0.0 +19659,24,4.5,30,0.0 +19659,17,39,30,0.0 +19659,65,21.05,3,0.0 +19659,10,31,9,0.0 +19659,36,19,27,0.0 +19659,16,17.45,46,0.0 +19659,12,38,29,0.0 +19659,37,26,49,0.0 +19659,64,33.25,12,0.0 +19659,19,9.2,40,0.0 +19659,30,25.89,2,0.0 +19659,61,28.5,8,0.0 +19659,31,12.5,8,0.0 +19659,26,31.23,18,0.0 +19659,4,22,29,0.0 +19659,74,10,1,0.0 +19659,8,40,38,0.0 +19659,76,18,37,0.0 +19659,7,30,40,0.0 +19659,75,7.75,39,0.0 +19659,27,43.9,33,0.0 +19659,6,25,28,0.0 +19659,15,15.5,25,0.0 +19659,46,12,22,0.0 +19659,29,123.79,39,0.0 +19659,69,36,40,0.0 +19659,11,21,14,0.0 +19660,74,10,13,0.0 +19660,13,6,35,0.0 +19660,61,28.5,36,0.0 +19660,32,32,22,0.0 +19660,8,40,47,0.0 +19660,25,14,31,0.0 +19660,67,14,26,0.0 +19660,62,49.3,32,0.0 +19660,41,9.65,27,0.0 +19660,20,81,44,0.0 +19660,57,19.5,11,0.0 +19660,27,43.9,12,0.0 +19660,10,31,40,0.0 +19660,47,9.5,42,0.0 +19660,75,7.75,6,0.0 +19660,35,18,35,0.0 +19660,17,39,8,0.0 +19660,36,19,44,0.0 +19660,49,20,28,0.0 +19660,59,55,45,0.0 +19660,43,46,35,0.0 +19660,16,17.45,9,0.0 +19660,58,13.25,1,0.0 +19660,12,38,5,0.0 +19660,1,18,46,0.0 +19660,53,32.8,2,0.0 +19660,69,36,33,0.0 +19660,77,13,45,0.0 +19660,68,12.5,49,0.0 +19660,54,7.45,26,0.0 +19660,21,10,10,0.0 +19660,40,18.4,36,0.0 +19660,29,123.79,3,0.0 +19660,45,9.5,35,0.0 +19660,55,24,5,0.0 +19660,14,23.25,22,0.0 +19660,60,34,10,0.0 +19660,30,25.89,47,0.0 +19660,28,45.6,42,0.0 +19660,9,97,35,0.0 +19660,48,12.75,19,0.0 +19660,70,15,6,0.0 +19660,18,62.5,46,0.0 +19660,22,21,38,0.0 +19660,7,30,35,0.0 +19660,15,15.5,4,0.0 +19660,2,19,18,0.0 +19660,50,16.25,46,0.0 +19660,11,21,2,0.0 +19660,73,15,10,0.0 +19660,31,12.5,40,0.0 +19660,56,38,42,0.0 +19660,38,263.5,42,0.0 +19660,44,19.45,20,0.0 +19660,64,33.25,27,0.0 +19660,24,4.5,30,0.0 +19660,39,18,49,0.0 +19660,3,10,37,0.0 +19660,66,17,46,0.0 +19660,52,7,5,0.0 +19660,23,9,16,0.0 +19660,33,2.5,7,0.0 +19660,37,26,35,0.0 +19660,65,21.05,12,0.0 +19660,76,18,30,0.0 +19660,46,12,36,0.0 +19661,8,40,39,0.0 +19661,46,12,3,0.0 +19661,62,49.3,28,0.0 +19661,67,14,44,0.0 +19661,68,12.5,32,0.0 +19661,75,7.75,50,0.0 +19661,73,15,44,0.0 +19661,39,18,44,0.0 +19661,15,15.5,28,0.0 +19661,32,32,20,0.0 +19661,61,28.5,10,0.0 +19661,51,53,49,0.0 +19662,16,17.45,44,0.0 +19662,73,15,44,0.0 +19662,29,123.79,25,0.0 +19662,37,26,34,0.0 +19663,47,9.5,17,0.0 +19663,39,18,50,0.0 +19663,25,14,17,0.0 +19663,62,49.3,10,0.0 +19663,37,26,37,0.0 +19663,27,43.9,37,0.0 +19663,72,34.8,39,0.0 +19663,8,40,10,0.0 +19663,49,20,5,0.0 +19663,59,55,23,0.0 +19663,57,19.5,11,0.0 +19663,32,32,20,0.0 +19663,15,15.5,23,0.0 +19663,30,25.89,43,0.0 +19663,23,9,22,0.0 +19663,6,25,37,0.0 +19663,19,9.2,35,0.0 +19663,4,22,17,0.0 +19663,65,21.05,38,0.0 +19663,36,19,24,0.0 +19663,46,12,50,0.0 +19663,3,10,46,0.0 +19663,67,14,43,0.0 +19663,21,10,4,0.0 +19663,63,43.9,50,0.0 +19663,28,45.6,32,0.0 +19663,41,9.65,31,0.0 +19663,31,12.5,1,0.0 +19663,50,16.25,47,0.0 +19663,75,7.75,43,0.0 +19663,51,53,28,0.0 +19663,69,36,44,0.0 +19663,77,13,5,0.0 +19663,9,97,3,0.0 +19663,33,2.5,21,0.0 +19663,26,31.23,18,0.0 +19663,58,13.25,45,0.0 +19663,45,9.5,33,0.0 +19663,68,12.5,8,0.0 +19663,40,18.4,8,0.0 +19663,2,19,48,0.0 +19663,70,15,2,0.0 +19663,20,81,28,0.0 +19663,22,21,20,0.0 +19663,54,7.45,43,0.0 +19663,11,21,5,0.0 +19663,18,62.5,10,0.0 +19663,12,38,34,0.0 +19663,53,32.8,10,0.0 +19663,29,123.79,34,0.0 +19663,76,18,29,0.0 +19664,71,21.5,4,0.0 +19664,50,16.25,3,0.0 +19664,43,46,30,0.0 +19664,12,38,8,0.0 +19664,37,26,32,0.0 +19665,16,17.45,36,0.0 +19665,58,13.25,33,0.0 +19665,68,12.5,32,0.0 +19665,25,14,36,0.0 +19665,13,6,27,0.0 +19665,33,2.5,44,0.0 +19665,23,9,39,0.0 +19665,75,7.75,28,0.0 +19665,76,18,19,0.0 +19665,40,18.4,47,0.0 +19665,43,46,37,0.0 +19665,20,81,38,0.0 +19665,26,31.23,30,0.0 +19665,8,40,30,0.0 +19665,56,38,14,0.0 +19665,77,13,27,0.0 +19665,44,19.45,29,0.0 +19665,17,39,39,0.0 +19665,36,19,44,0.0 +19665,35,18,23,0.0 +19665,7,30,9,0.0 +19665,62,49.3,4,0.0 +19665,41,9.65,21,0.0 +19665,15,15.5,48,0.0 +19665,51,53,8,0.0 +19665,61,28.5,43,0.0 +19665,9,97,18,0.0 +19665,39,18,23,0.0 +19665,34,14,33,0.0 +19665,31,12.5,23,0.0 +19665,50,16.25,15,0.0 +19665,30,25.89,25,0.0 +19665,6,25,33,0.0 +19666,12,38,1,0.0 +19666,42,14,21,0.0 +19666,7,30,7,0.0 +19666,24,4.5,15,0.0 +19666,59,55,32,0.0 +19666,29,123.79,35,0.0 +19666,33,2.5,46,0.0 +19666,52,7,36,0.0 +19666,69,36,2,0.0 +19666,8,40,32,0.0 +19666,32,32,9,0.0 +19666,71,21.5,4,0.0 +19666,3,10,15,0.0 +19666,73,15,35,0.0 +19666,65,21.05,40,0.0 +19666,53,32.8,40,0.0 +19666,55,24,41,0.0 +19666,74,10,6,0.0 +19666,40,18.4,10,0.0 +19666,66,17,2,0.0 +19666,6,25,20,0.0 +19666,56,38,8,0.0 +19666,44,19.45,40,0.0 +19666,22,21,50,0.0 +19666,9,97,36,0.0 +19666,75,7.75,35,0.0 +19666,47,9.5,32,0.0 +19666,18,62.5,50,0.0 +19666,57,19.5,33,0.0 +19666,13,6,30,0.0 +19666,14,23.25,11,0.0 +19666,35,18,14,0.0 +19666,76,18,30,0.0 +19666,20,81,14,0.0 +19666,48,12.75,41,0.0 +19666,25,14,5,0.0 +19666,27,43.9,40,0.0 +19666,43,46,9,0.0 +19666,51,53,33,0.0 +19666,46,12,12,0.0 +19666,61,28.5,19,0.0 +19666,64,33.25,6,0.0 +19666,31,12.5,17,0.0 +19666,54,7.45,34,0.0 +19666,2,19,41,0.0 +19666,34,14,36,0.0 +19666,1,18,38,0.0 +19666,70,15,40,0.0 +19666,49,20,35,0.0 +19666,28,45.6,44,0.0 +19666,67,14,32,0.0 +19666,5,21.35,45,0.0 +19666,30,25.89,10,0.0 +19666,45,9.5,44,0.0 +19666,60,34,2,0.0 +19666,15,15.5,9,0.0 +19666,17,39,1,0.0 +19667,25,14,7,0.0 +19667,19,9.2,10,0.0 +19667,63,43.9,10,0.0 +19667,58,13.25,18,0.0 +19667,64,33.25,16,0.0 +19667,11,21,33,0.0 +19667,66,17,19,0.0 +19667,9,97,32,0.0 +19667,10,31,10,0.0 +19667,61,28.5,11,0.0 +19667,18,62.5,44,0.0 +19668,40,18.4,24,0.0 +19668,3,10,33,0.0 +19668,68,12.5,38,0.0 +19668,45,9.5,38,0.0 +19668,37,26,13,0.0 +19668,34,14,4,0.0 +19668,63,43.9,13,0.0 +19668,71,21.5,28,0.0 +19668,1,18,26,0.0 +19668,60,34,24,0.0 +19668,70,15,11,0.0 +19668,75,7.75,15,0.0 +19668,76,18,16,0.0 +19668,64,33.25,2,0.0 +19668,54,7.45,3,0.0 +19668,50,16.25,7,0.0 +19668,32,32,43,0.0 +19668,77,13,24,0.0 +19668,47,9.5,46,0.0 +19668,57,19.5,45,0.0 +19668,41,9.65,50,0.0 +19668,4,22,37,0.0 +19668,52,7,42,0.0 +19668,20,81,29,0.0 +19668,48,12.75,15,0.0 +19668,33,2.5,32,0.0 +19668,16,17.45,42,0.0 +19668,9,97,13,0.0 +19668,17,39,5,0.0 +19668,8,40,5,0.0 +19668,25,14,8,0.0 +19668,46,12,11,0.0 +19668,29,123.79,41,0.0 +19668,38,263.5,11,0.0 +19668,59,55,33,0.0 +19668,11,21,2,0.0 +19668,56,38,48,0.0 +19668,21,10,22,0.0 +19668,22,21,41,0.0 +19668,69,36,33,0.0 +19668,5,21.35,44,0.0 +19668,30,25.89,7,0.0 +19668,61,28.5,7,0.0 +19668,13,6,9,0.0 +19668,43,46,41,0.0 +19668,62,49.3,5,0.0 +19668,15,15.5,44,0.0 +19668,24,4.5,6,0.0 +19668,12,38,32,0.0 +19668,72,34.8,11,0.0 +19668,39,18,8,0.0 +19668,27,43.9,28,0.0 +19668,53,32.8,46,0.0 +19668,35,18,24,0.0 +19668,10,31,35,0.0 +19668,66,17,12,0.0 +19668,44,19.45,15,0.0 +19668,55,24,15,0.0 +19668,65,21.05,15,0.0 +19668,42,14,18,0.0 +19668,49,20,19,0.0 +19668,2,19,48,0.0 +19668,67,14,48,0.0 +19668,73,15,11,0.0 +19668,74,10,16,0.0 +19668,18,62.5,23,0.0 +19668,51,53,38,0.0 +19668,36,19,43,0.0 +19668,14,23.25,2,0.0 +19668,28,45.6,15,0.0 +19668,6,25,19,0.0 +19668,58,13.25,2,0.0 +19669,24,4.5,25,0.0 +19669,44,19.45,24,0.0 +19669,57,19.5,40,0.0 +19669,45,9.5,29,0.0 +19669,75,7.75,44,0.0 +19669,35,18,35,0.0 +19669,42,14,20,0.0 +19669,49,20,37,0.0 +19669,25,14,35,0.0 +19669,62,49.3,18,0.0 +19669,30,25.89,15,0.0 +19669,48,12.75,25,0.0 +19669,67,14,12,0.0 +19669,12,38,18,0.0 +19669,10,31,23,0.0 +19669,56,38,30,0.0 +19669,14,23.25,4,0.0 +19669,11,21,44,0.0 +19669,19,9.2,1,0.0 +19669,47,9.5,38,0.0 +19669,9,97,46,0.0 +19669,63,43.9,11,0.0 +19669,18,62.5,18,0.0 +19669,77,13,9,0.0 +19669,59,55,15,0.0 +19669,29,123.79,19,0.0 +19669,54,7.45,20,0.0 +19669,36,19,45,0.0 +19669,66,17,31,0.0 +19669,38,263.5,41,0.0 +19669,17,39,8,0.0 +19669,61,28.5,35,0.0 +19669,26,31.23,29,0.0 +19669,23,9,4,0.0 +19669,2,19,25,0.0 +19669,71,21.5,48,0.0 +19669,37,26,38,0.0 +19669,50,16.25,27,0.0 +19670,73,15,16,0.0 +19670,72,34.8,31,0.0 +19670,8,40,45,0.0 +19670,29,123.79,42,0.0 +19670,14,23.25,15,0.0 +19670,56,38,22,0.0 +19670,60,34,32,0.0 +19670,35,18,37,0.0 +19670,49,20,46,0.0 +19670,33,2.5,40,0.0 +19670,65,21.05,6,0.0 +19670,40,18.4,35,0.0 +19670,34,14,45,0.0 +19670,10,31,40,0.0 +19670,55,24,2,0.0 +19670,38,263.5,1,0.0 +19670,13,6,22,0.0 +19670,44,19.45,33,0.0 +19670,52,7,11,0.0 +19670,31,12.5,50,0.0 +19670,5,21.35,32,0.0 +19670,23,9,25,0.0 +19670,20,81,11,0.0 +19670,18,62.5,5,0.0 +19670,57,19.5,17,0.0 +19670,9,97,11,0.0 +19670,58,13.25,45,0.0 +19670,68,12.5,44,0.0 +19670,30,25.89,12,0.0 +19670,25,14,6,0.0 +19670,16,17.45,11,0.0 +19670,32,32,34,0.0 +19670,39,18,5,0.0 +19670,41,9.65,23,0.0 +19670,3,10,38,0.0 +19670,21,10,24,0.0 +19670,53,32.8,2,0.0 +19671,42,14,26,0.0 +19671,43,46,16,0.0 +19671,68,12.5,24,0.0 +19671,10,31,17,0.0 +19671,60,34,17,0.0 +19671,70,15,45,0.0 +19671,52,7,26,0.0 +19671,63,43.9,10,0.0 +19672,15,15.5,33,0.0 +19672,14,23.25,30,0.0 +19672,49,20,3,0.0 +19672,29,123.79,43,0.0 +19672,71,21.5,43,0.0 +19672,27,43.9,21,0.0 +19672,70,15,46,0.0 +19673,70,15,50,0.0 +19673,29,123.79,39,0.0 +19673,71,21.5,44,0.0 +19673,18,62.5,26,0.0 +19673,76,18,45,0.0 +19673,10,31,5,0.0 +19673,40,18.4,34,0.0 +19673,43,46,21,0.0 +19673,11,21,29,0.0 +19673,24,4.5,15,0.0 +19673,41,9.65,45,0.0 +19673,74,10,50,0.0 +19673,51,53,45,0.0 +19673,61,28.5,13,0.0 +19673,7,30,49,0.0 +19673,57,19.5,42,0.0 +19673,16,17.45,37,0.0 +19673,66,17,9,0.0 +19673,46,12,46,0.0 +19673,8,40,35,0.0 +19673,27,43.9,24,0.0 +19673,21,10,38,0.0 +19673,32,32,42,0.0 +19673,19,9.2,14,0.0 +19673,54,7.45,11,0.0 +19673,38,263.5,19,0.0 +19673,25,14,47,0.0 +19673,30,25.89,47,0.0 +19673,4,22,1,0.0 +19673,33,2.5,31,0.0 +19673,22,21,38,0.0 +19673,28,45.6,40,0.0 +19673,48,12.75,43,0.0 +19673,68,12.5,12,0.0 +19673,47,9.5,24,0.0 +19673,2,19,50,0.0 +19673,60,34,43,0.0 +19673,65,21.05,42,0.0 +19673,49,20,31,0.0 +19673,67,14,50,0.0 +19673,14,23.25,35,0.0 +19673,36,19,15,0.0 +19673,23,9,26,0.0 +19673,64,33.25,19,0.0 +19673,20,81,6,0.0 +19673,15,15.5,13,0.0 +19673,58,13.25,37,0.0 +19673,63,43.9,32,0.0 +19673,13,6,35,0.0 +19673,75,7.75,18,0.0 +19673,17,39,18,0.0 +19673,69,36,16,0.0 +19673,59,55,33,0.0 +19673,44,19.45,33,0.0 +19673,55,24,18,0.0 +19673,37,26,30,0.0 +19673,6,25,14,0.0 +19673,56,38,37,0.0 +19673,45,9.5,7,0.0 +19673,73,15,15,0.0 +19673,5,21.35,39,0.0 +19673,39,18,20,0.0 +19673,1,18,40,0.0 +19673,3,10,9,0.0 +19673,9,97,11,0.0 +19673,77,13,10,0.0 +19673,12,38,9,0.0 +19673,26,31.23,26,0.0 +19673,31,12.5,50,0.0 +19673,34,14,6,0.0 +19673,62,49.3,48,0.0 +19673,50,16.25,11,0.0 +19673,35,18,1,0.0 +19673,42,14,25,0.0 +19673,52,7,1,0.0 +19674,7,30,20,0.0 +19674,22,21,9,0.0 +19674,40,18.4,21,0.0 +19674,45,9.5,33,0.0 +19674,53,32.8,30,0.0 +19674,24,4.5,40,0.0 +19674,66,17,35,0.0 +19674,26,31.23,43,0.0 +19674,28,45.6,15,0.0 +19674,21,10,21,0.0 +19674,72,34.8,24,0.0 +19674,75,7.75,14,0.0 +19674,30,25.89,7,0.0 +19674,6,25,39,0.0 +19674,65,21.05,50,0.0 +19674,25,14,37,0.0 +19674,47,9.5,20,0.0 +19674,3,10,27,0.0 +19674,16,17.45,24,0.0 +19674,18,62.5,4,0.0 +19674,35,18,20,0.0 +19674,56,38,31,0.0 +19674,8,40,19,0.0 +19674,2,19,49,0.0 +19674,63,43.9,27,0.0 +19674,33,2.5,18,0.0 +19674,50,16.25,1,0.0 +19674,57,19.5,3,0.0 +19674,46,12,26,0.0 +19674,38,263.5,1,0.0 +19674,73,15,35,0.0 +19674,49,20,6,0.0 +19674,74,10,42,0.0 +19674,12,38,47,0.0 +19674,36,19,7,0.0 +19674,4,22,12,0.0 +19674,1,18,8,0.0 +19674,32,32,8,0.0 +19674,44,19.45,4,0.0 +19674,23,9,35,0.0 +19674,37,26,44,0.0 +19674,77,13,2,0.0 +19674,52,7,29,0.0 +19674,19,9.2,40,0.0 +19674,5,21.35,16,0.0 +19674,11,21,44,0.0 +19674,43,46,48,0.0 +19674,41,9.65,45,0.0 +19674,59,55,32,0.0 +19674,9,97,8,0.0 +19674,58,13.25,22,0.0 +19674,64,33.25,20,0.0 +19674,14,23.25,49,0.0 +19674,17,39,48,0.0 +19674,15,15.5,6,0.0 +19674,39,18,46,0.0 +19675,56,38,32,0.0 +19675,38,263.5,3,0.0 +19675,27,43.9,46,0.0 +19675,30,25.89,44,0.0 +19675,64,33.25,25,0.0 +19675,7,30,40,0.0 +19675,11,21,5,0.0 +19675,70,15,13,0.0 +19675,41,9.65,3,0.0 +19675,69,36,25,0.0 +19675,13,6,14,0.0 +19675,24,4.5,3,0.0 +19675,36,19,40,0.0 +19675,51,53,16,0.0 +19675,4,22,43,0.0 +19675,54,7.45,5,0.0 +19675,18,62.5,17,0.0 +19675,2,19,1,0.0 +19675,15,15.5,36,0.0 +19675,19,9.2,37,0.0 +19675,59,55,32,0.0 +19675,40,18.4,40,0.0 +19675,52,7,23,0.0 +19675,31,12.5,5,0.0 +19675,48,12.75,38,0.0 +19675,55,24,9,0.0 +19675,10,31,10,0.0 +19675,75,7.75,25,0.0 +19675,61,28.5,46,0.0 +19675,21,10,40,0.0 +19675,68,12.5,8,0.0 +19675,73,15,26,0.0 +19675,62,49.3,3,0.0 +19675,66,17,27,0.0 +19675,8,40,3,0.0 +19675,26,31.23,3,0.0 +19675,9,97,5,0.0 +19675,5,21.35,22,0.0 +19675,35,18,29,0.0 +19675,45,9.5,44,0.0 +19675,46,12,43,0.0 +19675,1,18,25,0.0 +19675,67,14,22,0.0 +19675,3,10,5,0.0 +19675,60,34,23,0.0 +19675,28,45.6,14,0.0 +19675,23,9,26,0.0 +19675,12,38,41,0.0 +19675,58,13.25,16,0.0 +19676,73,15,25,0.0 +19676,51,53,28,0.0 +19676,35,18,12,0.0 +19676,20,81,22,0.0 +19676,54,7.45,5,0.0 +19676,68,12.5,26,0.0 +19676,67,14,33,0.0 +19676,77,13,22,0.0 +19676,34,14,36,0.0 +19676,49,20,10,0.0 +19676,18,62.5,50,0.0 +19676,57,19.5,24,0.0 +19676,8,40,14,0.0 +19676,45,9.5,33,0.0 +19676,40,18.4,1,0.0 +19676,46,12,5,0.0 +19676,36,19,8,0.0 +19676,23,9,20,0.0 +19676,4,22,30,0.0 +19676,5,21.35,13,0.0 +19676,53,32.8,47,0.0 +19676,47,9.5,15,0.0 +19676,42,14,47,0.0 +19676,61,28.5,11,0.0 +19676,56,38,20,0.0 +19676,2,19,18,0.0 +19677,52,7,19,0.0 +19677,72,34.8,17,0.0 +19677,51,53,40,0.0 +19677,57,19.5,47,0.0 +19677,47,9.5,37,0.0 +19677,9,97,34,0.0 +19677,27,43.9,38,0.0 +19677,48,12.75,48,0.0 +19677,5,21.35,14,0.0 +19677,29,123.79,24,0.0 +19677,66,17,43,0.0 +19677,43,46,22,0.0 +19677,24,4.5,11,0.0 +19677,67,14,37,0.0 +19677,75,7.75,6,0.0 +19677,37,26,32,0.0 +19677,31,12.5,23,0.0 +19677,15,15.5,22,0.0 +19677,6,25,14,0.0 +19677,17,39,30,0.0 +19677,61,28.5,36,0.0 +19677,44,19.45,50,0.0 +19677,33,2.5,38,0.0 +19677,4,22,10,0.0 +19678,5,21.35,32,0.0 +19678,58,13.25,14,0.0 +19678,13,6,7,0.0 +19678,38,263.5,14,0.0 +19678,67,14,38,0.0 +19678,36,19,21,0.0 +19678,52,7,32,0.0 +19678,57,19.5,18,0.0 +19678,43,46,37,0.0 +19678,54,7.45,17,0.0 +19678,64,33.25,18,0.0 +19678,49,20,42,0.0 +19678,16,17.45,1,0.0 +19678,63,43.9,2,0.0 +19678,25,14,43,0.0 +19678,41,9.65,26,0.0 +19678,12,38,50,0.0 +19678,17,39,31,0.0 +19678,68,12.5,4,0.0 +19678,27,43.9,49,0.0 +19678,7,30,21,0.0 +19678,14,23.25,43,0.0 +19678,66,17,24,0.0 +19678,19,9.2,32,0.0 +19678,59,55,41,0.0 +19678,23,9,27,0.0 +19678,22,21,48,0.0 +19678,51,53,7,0.0 +19679,10,31,43,0.0 +19679,16,17.45,10,0.0 +19679,24,4.5,41,0.0 +19679,6,25,7,0.0 +19679,57,19.5,15,0.0 +19679,29,123.79,18,0.0 +19679,59,55,47,0.0 +19679,7,30,38,0.0 +19679,64,33.25,47,0.0 +19679,58,13.25,44,0.0 +19679,56,38,32,0.0 +19679,12,38,45,0.0 +19679,11,21,7,0.0 +19679,5,21.35,46,0.0 +19679,69,36,3,0.0 +19679,73,15,19,0.0 +19679,20,81,49,0.0 +19679,67,14,1,0.0 +19679,54,7.45,49,0.0 +19679,63,43.9,14,0.0 +19679,44,19.45,6,0.0 +19679,66,17,24,0.0 +19679,71,21.5,37,0.0 +19679,68,12.5,21,0.0 +19679,18,62.5,5,0.0 +19679,36,19,21,0.0 +19679,52,7,45,0.0 +19679,33,2.5,3,0.0 +19679,53,32.8,11,0.0 +19679,9,97,23,0.0 +19679,72,34.8,18,0.0 +19679,42,14,15,0.0 +19679,28,45.6,32,0.0 +19679,3,10,3,0.0 +19679,26,31.23,18,0.0 +19679,27,43.9,18,0.0 +19680,39,18,41,0.0 +19680,27,43.9,13,0.0 +19680,3,10,45,0.0 +19680,12,38,16,0.0 +19680,30,25.89,24,0.0 +19680,70,15,20,0.0 +19680,55,24,26,0.0 +19680,44,19.45,2,0.0 +19680,76,18,19,0.0 +19680,40,18.4,5,0.0 +19680,14,23.25,11,0.0 +19680,64,33.25,15,0.0 +19680,15,15.5,7,0.0 +19680,28,45.6,7,0.0 +19680,34,14,22,0.0 +19680,77,13,44,0.0 +19680,1,18,20,0.0 +19680,2,19,2,0.0 +19680,53,32.8,42,0.0 +19680,23,9,13,0.0 +19680,33,2.5,23,0.0 +19680,66,17,35,0.0 +19680,5,21.35,41,0.0 +19680,73,15,21,0.0 +19680,58,13.25,6,0.0 +19680,46,12,39,0.0 +19680,31,12.5,14,0.0 +19680,17,39,32,0.0 +19680,71,21.5,16,0.0 +19680,18,62.5,35,0.0 +19680,62,49.3,10,0.0 +19680,74,10,37,0.0 +19681,14,23.25,18,0.0 +19681,36,19,8,0.0 +19681,47,9.5,22,0.0 +19681,64,33.25,23,0.0 +19681,30,25.89,3,0.0 +19681,77,13,11,0.0 +19681,7,30,2,0.0 +19681,74,10,48,0.0 +19681,58,13.25,21,0.0 +19681,22,21,41,0.0 +19681,62,49.3,22,0.0 +19681,67,14,14,0.0 +19681,25,14,9,0.0 +19681,38,263.5,10,0.0 +19681,76,18,5,0.0 +19681,8,40,47,0.0 +19681,66,17,29,0.0 +19682,64,33.25,43,0.0 +19682,47,9.5,49,0.0 +19682,37,26,34,0.0 +19682,9,97,20,0.0 +19682,1,18,28,0.0 +19682,65,21.05,39,0.0 +19682,8,40,9,0.0 +19682,18,62.5,21,0.0 +19682,57,19.5,28,0.0 +19682,31,12.5,49,0.0 +19682,19,9.2,14,0.0 +19682,20,81,46,0.0 +19682,43,46,37,0.0 +19682,41,9.65,14,0.0 +19682,74,10,7,0.0 +19682,58,13.25,46,0.0 +19682,34,14,36,0.0 +19682,76,18,12,0.0 +19682,15,15.5,9,0.0 +19682,11,21,42,0.0 +19682,42,14,18,0.0 +19682,2,19,34,0.0 +19682,25,14,27,0.0 +19682,48,12.75,44,0.0 +19682,44,19.45,34,0.0 +19682,46,12,38,0.0 +19682,63,43.9,2,0.0 +19682,21,10,8,0.0 +19682,23,9,46,0.0 +19682,12,38,49,0.0 +19682,60,34,1,0.0 +19682,53,32.8,28,0.0 +19682,5,21.35,44,0.0 +19682,13,6,20,0.0 +19682,6,25,9,0.0 +19682,30,25.89,34,0.0 +19683,18,62.5,15,0.0 +19683,25,14,49,0.0 +19683,66,17,3,0.0 +19683,51,53,50,0.0 +19683,9,97,26,0.0 +19683,64,33.25,15,0.0 +19683,53,32.8,21,0.0 +19683,57,19.5,50,0.0 +19683,59,55,27,0.0 +19683,29,123.79,29,0.0 +19683,17,39,3,0.0 +19683,68,12.5,21,0.0 +19683,36,19,17,0.0 +19683,2,19,18,0.0 +19683,3,10,12,0.0 +19683,30,25.89,3,0.0 +19683,34,14,2,0.0 +19683,47,9.5,5,0.0 +19683,77,13,20,0.0 +19683,39,18,25,0.0 +19683,19,9.2,44,0.0 +19683,7,30,38,0.0 +19683,61,28.5,12,0.0 +19683,73,15,49,0.0 +19683,10,31,16,0.0 +19683,63,43.9,27,0.0 +19683,54,7.45,15,0.0 +19683,72,34.8,3,0.0 +19683,31,12.5,42,0.0 +19683,32,32,36,0.0 +19683,14,23.25,21,0.0 +19683,28,45.6,21,0.0 +19683,43,46,30,0.0 +19683,4,22,5,0.0 +19683,52,7,12,0.0 +19683,46,12,25,0.0 +19683,49,20,39,0.0 +19683,22,21,18,0.0 +19683,38,263.5,43,0.0 +19683,13,6,15,0.0 +19683,23,9,35,0.0 +19683,37,26,40,0.0 +19683,74,10,3,0.0 +19683,69,36,28,0.0 +19683,67,14,12,0.0 +19683,70,15,35,0.0 +19683,62,49.3,42,0.0 +19683,6,25,22,0.0 +19683,58,13.25,35,0.0 +19683,45,9.5,27,0.0 +19683,20,81,3,0.0 +19683,33,2.5,18,0.0 +19683,21,10,8,0.0 +19683,76,18,46,0.0 +19683,16,17.45,47,0.0 +19683,55,24,43,0.0 +19683,41,9.65,19,0.0 +19683,24,4.5,20,0.0 +19683,56,38,48,0.0 +19683,40,18.4,40,0.0 +19683,35,18,45,0.0 +19683,1,18,32,0.0 +19684,5,21.35,35,0.0 +19684,47,9.5,15,0.0 +19684,48,12.75,11,0.0 +19684,44,19.45,23,0.0 +19684,18,62.5,1,0.0 +19684,22,21,34,0.0 +19684,23,9,31,0.0 +19684,17,39,17,0.0 +19684,32,32,37,0.0 +19684,39,18,21,0.0 +19684,33,2.5,15,0.0 +19684,28,45.6,25,0.0 +19684,65,21.05,25,0.0 +19684,35,18,37,0.0 +19684,55,24,11,0.0 +19684,57,19.5,29,0.0 +19684,77,13,32,0.0 +19684,10,31,31,0.0 +19684,8,40,13,0.0 +19684,66,17,16,0.0 +19684,53,32.8,14,0.0 +19684,41,9.65,18,0.0 +19684,70,15,28,0.0 +19684,69,36,15,0.0 +19684,6,25,21,0.0 +19684,21,10,22,0.0 +19684,16,17.45,38,0.0 +19684,26,31.23,8,0.0 +19684,73,15,29,0.0 +19684,52,7,29,0.0 +19684,76,18,42,0.0 +19684,68,12.5,35,0.0 +19684,29,123.79,9,0.0 +19684,50,16.25,27,0.0 +19684,74,10,26,0.0 +19684,72,34.8,48,0.0 +19685,71,21.5,1,0.0 +19685,57,19.5,18,0.0 +19685,73,15,24,0.0 +19685,13,6,48,0.0 +19685,46,12,3,0.0 +19685,29,123.79,43,0.0 +19685,32,32,39,0.0 +19685,63,43.9,2,0.0 +19685,26,31.23,30,0.0 +19686,70,15,30,0.0 +19686,16,17.45,6,0.0 +19686,71,21.5,7,0.0 +19686,49,20,18,0.0 +19686,27,43.9,19,0.0 +19686,63,43.9,21,0.0 +19686,36,19,43,0.0 +19686,67,14,20,0.0 +19686,57,19.5,42,0.0 +19686,66,17,28,0.0 +19686,6,25,29,0.0 +19686,53,32.8,1,0.0 +19686,48,12.75,4,0.0 +19686,3,10,43,0.0 +19686,59,55,39,0.0 +19686,20,81,5,0.0 +19686,17,39,1,0.0 +19686,73,15,15,0.0 +19686,39,18,38,0.0 +19686,4,22,47,0.0 +19686,22,21,2,0.0 +19686,7,30,12,0.0 +19686,62,49.3,35,0.0 +19686,44,19.45,21,0.0 +19687,63,43.9,25,0.0 +19687,13,6,35,0.0 +19687,29,123.79,18,0.0 +19687,59,55,44,0.0 +19687,41,9.65,8,0.0 +19687,75,7.75,38,0.0 +19687,5,21.35,37,0.0 +19687,68,12.5,33,0.0 +19687,64,33.25,49,0.0 +19687,67,14,12,0.0 +19687,8,40,7,0.0 +19687,44,19.45,6,0.0 +19687,17,39,42,0.0 +19687,40,18.4,16,0.0 +19687,2,19,34,0.0 +19687,6,25,30,0.0 +19687,74,10,4,0.0 +19687,76,18,7,0.0 +19687,20,81,11,0.0 +19687,60,34,13,0.0 +19687,53,32.8,42,0.0 +19687,46,12,17,0.0 +19687,9,97,15,0.0 +19687,14,23.25,20,0.0 +19687,69,36,34,0.0 +19687,72,34.8,23,0.0 +19687,61,28.5,49,0.0 +19687,35,18,47,0.0 +19687,18,62.5,21,0.0 +19687,56,38,38,0.0 +19687,25,14,6,0.0 +19687,71,21.5,24,0.0 +19687,7,30,47,0.0 +19687,45,9.5,5,0.0 +19687,57,19.5,23,0.0 +19687,77,13,48,0.0 +19687,48,12.75,43,0.0 +19687,3,10,22,0.0 +19687,33,2.5,19,0.0 +19687,39,18,18,0.0 +19687,58,13.25,33,0.0 +19687,37,26,12,0.0 +19687,1,18,43,0.0 +19687,4,22,16,0.0 +19687,52,7,11,0.0 +19687,30,25.89,12,0.0 +19687,65,21.05,38,0.0 +19687,21,10,22,0.0 +19687,73,15,29,0.0 +19687,23,9,10,0.0 +19687,22,21,26,0.0 +19687,16,17.45,4,0.0 +19687,36,19,46,0.0 +19687,51,53,27,0.0 +19687,66,17,39,0.0 +19687,24,4.5,16,0.0 +19687,47,9.5,37,0.0 +19688,61,28.5,25,0.0 +19688,74,10,47,0.0 +19688,35,18,33,0.0 +19688,45,9.5,13,0.0 +19688,33,2.5,46,0.0 +19688,57,19.5,7,0.0 +19688,29,123.79,11,0.0 +19688,59,55,17,0.0 +19688,64,33.25,10,0.0 +19688,7,30,18,0.0 +19688,26,31.23,13,0.0 +19688,37,26,29,0.0 +19688,13,6,16,0.0 +19688,5,21.35,5,0.0 +19688,73,15,38,0.0 +19688,25,14,8,0.0 +19688,28,45.6,37,0.0 +19688,27,43.9,8,0.0 +19688,9,97,50,0.0 +19688,42,14,6,0.0 +19688,62,49.3,10,0.0 +19688,18,62.5,7,0.0 +19688,4,22,35,0.0 +19688,77,13,21,0.0 +19688,72,34.8,23,0.0 +19688,69,36,8,0.0 +19688,6,25,44,0.0 +19688,34,14,6,0.0 +19688,17,39,3,0.0 +19688,36,19,3,0.0 +19688,58,13.25,21,0.0 +19688,50,16.25,50,0.0 +19688,30,25.89,2,0.0 +19688,68,12.5,28,0.0 +19688,10,31,18,0.0 +19688,1,18,1,0.0 +19688,23,9,41,0.0 +19688,39,18,45,0.0 +19688,49,20,42,0.0 +19688,71,21.5,46,0.0 +19688,15,15.5,20,0.0 +19689,52,7,49,0.0 +19689,25,14,39,0.0 +19689,46,12,16,0.0 +19689,69,36,21,0.0 +19689,21,10,29,0.0 +19689,40,18.4,42,0.0 +19689,5,21.35,23,0.0 +19689,64,33.25,47,0.0 +19689,42,14,16,0.0 +19689,18,62.5,33,0.0 +19689,19,9.2,34,0.0 +19689,48,12.75,35,0.0 +19689,36,19,46,0.0 +19689,20,81,19,0.0 +19689,72,34.8,39,0.0 +19689,14,23.25,46,0.0 +19689,13,6,44,0.0 +19689,62,49.3,38,0.0 +19689,17,39,43,0.0 +19689,71,21.5,4,0.0 +19689,38,263.5,11,0.0 +19689,35,18,22,0.0 +19689,53,32.8,7,0.0 +19689,30,25.89,31,0.0 +19689,28,45.6,8,0.0 +19689,31,12.5,48,0.0 +19689,32,32,37,0.0 +19689,12,38,8,0.0 +19689,51,53,22,0.0 +19689,67,14,21,0.0 +19689,10,31,28,0.0 +19689,9,97,46,0.0 +19689,44,19.45,2,0.0 +19689,57,19.5,19,0.0 +19689,77,13,46,0.0 +19689,49,20,31,0.0 +19689,76,18,46,0.0 +19689,8,40,35,0.0 +19689,16,17.45,19,0.0 +19689,75,7.75,12,0.0 +19689,33,2.5,39,0.0 +19689,45,9.5,16,0.0 +19689,65,21.05,46,0.0 +19689,47,9.5,43,0.0 +19689,43,46,20,0.0 +19689,29,123.79,29,0.0 +19689,54,7.45,21,0.0 +19689,63,43.9,38,0.0 +19689,58,13.25,20,0.0 +19689,59,55,35,0.0 +19689,26,31.23,20,0.0 +19689,56,38,29,0.0 +19689,66,17,27,0.0 +19689,61,28.5,46,0.0 +19689,4,22,2,0.0 +19689,11,21,43,0.0 +19689,3,10,1,0.0 +19689,34,14,44,0.0 +19689,60,34,12,0.0 +19689,68,12.5,24,0.0 +19689,27,43.9,49,0.0 +19689,2,19,46,0.0 +19689,55,24,10,0.0 +19689,24,4.5,22,0.0 +19689,37,26,50,0.0 +19689,50,16.25,8,0.0 +19689,23,9,39,0.0 +19689,7,30,36,0.0 +19689,22,21,6,0.0 +19689,39,18,27,0.0 +19689,6,25,49,0.0 +19689,73,15,4,0.0 +19689,41,9.65,22,0.0 +19689,74,10,40,0.0 +19689,1,18,33,0.0 +19689,15,15.5,18,0.0 +19690,38,263.5,45,0.0 +19690,12,38,14,0.0 +19690,56,38,16,0.0 +19690,2,19,5,0.0 +19690,33,2.5,18,0.0 +19690,28,45.6,31,0.0 +19690,54,7.45,46,0.0 +19690,55,24,14,0.0 +19690,73,15,19,0.0 +19690,49,20,25,0.0 +19690,23,9,50,0.0 +19690,50,16.25,35,0.0 +19690,20,81,26,0.0 +19690,21,10,16,0.0 +19690,52,7,3,0.0 +19690,25,14,12,0.0 +19690,8,40,33,0.0 +19690,63,43.9,21,0.0 +19690,15,15.5,30,0.0 +19690,41,9.65,13,0.0 +19690,45,9.5,4,0.0 +19690,61,28.5,45,0.0 +19690,70,15,23,0.0 +19690,42,14,42,0.0 +19690,48,12.75,9,0.0 +19690,16,17.45,3,0.0 +19690,17,39,10,0.0 +19690,43,46,35,0.0 +19690,7,30,7,0.0 +19690,77,13,38,0.0 +19690,24,4.5,47,0.0 +19690,22,21,30,0.0 +19690,27,43.9,30,0.0 +19690,34,14,1,0.0 +19690,5,21.35,6,0.0 +19690,29,123.79,35,0.0 +19690,10,31,5,0.0 +19690,62,49.3,47,0.0 +19690,60,34,18,0.0 +19690,3,10,9,0.0 +19690,9,97,29,0.0 +19690,6,25,43,0.0 +19690,11,21,33,0.0 +19690,18,62.5,11,0.0 +19690,1,18,45,0.0 +19690,59,55,27,0.0 +19690,66,17,13,0.0 +19690,14,23.25,17,0.0 +19690,39,18,49,0.0 +19690,68,12.5,36,0.0 +19690,67,14,15,0.0 +19690,75,7.75,19,0.0 +19690,35,18,33,0.0 +19690,37,26,22,0.0 +19690,76,18,37,0.0 +19690,74,10,27,0.0 +19690,32,32,35,0.0 +19690,47,9.5,7,0.0 +19690,26,31.23,43,0.0 +19690,64,33.25,23,0.0 +19690,31,12.5,42,0.0 +19690,69,36,40,0.0 +19690,57,19.5,9,0.0 +19690,40,18.4,14,0.0 +19690,19,9.2,12,0.0 +19690,30,25.89,49,0.0 +19690,13,6,15,0.0 +19690,51,53,49,0.0 +19690,4,22,6,0.0 +19690,58,13.25,41,0.0 +19690,46,12,11,0.0 +19690,53,32.8,15,0.0 +19690,71,21.5,15,0.0 +19690,72,34.8,41,0.0 +19690,65,21.05,18,0.0 +19690,44,19.45,4,0.0 +19690,36,19,38,0.0 +19691,76,18,15,0.0 +19692,50,16.25,16,0.0 +19692,77,13,32,0.0 +19692,51,53,12,0.0 +19692,5,21.35,1,0.0 +19692,46,12,19,0.0 +19692,28,45.6,49,0.0 +19692,19,9.2,43,0.0 +19692,69,36,36,0.0 +19692,12,38,42,0.0 +19692,70,15,27,0.0 +19692,26,31.23,8,0.0 +19692,75,7.75,35,0.0 +19692,59,55,36,0.0 +19692,32,32,43,0.0 +19692,61,28.5,46,0.0 +19692,53,32.8,47,0.0 +19692,6,25,27,0.0 +19692,11,21,33,0.0 +19692,68,12.5,33,0.0 +19692,58,13.25,15,0.0 +19692,38,263.5,45,0.0 +19692,64,33.25,36,0.0 +19693,73,15,19,0.0 +19693,54,7.45,14,0.0 +19693,65,21.05,2,0.0 +19693,30,25.89,1,0.0 +19693,46,12,31,0.0 +19693,3,10,32,0.0 +19693,47,9.5,36,0.0 +19693,16,17.45,27,0.0 +19693,8,40,19,0.0 +19693,53,32.8,5,0.0 +19693,75,7.75,19,0.0 +19693,64,33.25,36,0.0 +19693,63,43.9,32,0.0 +19693,24,4.5,45,0.0 +19693,31,12.5,20,0.0 +19693,49,20,32,0.0 +19693,56,38,45,0.0 +19693,15,15.5,16,0.0 +19693,13,6,25,0.0 +19693,76,18,44,0.0 +19693,17,39,13,0.0 +19693,55,24,22,0.0 +19693,23,9,19,0.0 +19693,38,263.5,27,0.0 +19693,9,97,12,0.0 +19693,2,19,9,0.0 +19693,50,16.25,5,0.0 +19693,6,25,5,0.0 +19693,25,14,43,0.0 +19693,71,21.5,2,0.0 +19693,21,10,16,0.0 +19693,1,18,4,0.0 +19693,66,17,3,0.0 +19693,20,81,46,0.0 +19693,27,43.9,16,0.0 +19693,32,32,7,0.0 +19693,11,21,3,0.0 +19693,45,9.5,27,0.0 +19693,22,21,44,0.0 +19693,61,28.5,38,0.0 +19693,41,9.65,9,0.0 +19693,40,18.4,50,0.0 +19693,68,12.5,40,0.0 +19693,36,19,38,0.0 +19693,37,26,3,0.0 +19693,42,14,16,0.0 +19693,52,7,38,0.0 +19693,51,53,39,0.0 +19693,72,34.8,22,0.0 +19693,10,31,35,0.0 +19693,7,30,32,0.0 +19693,14,23.25,21,0.0 +19693,29,123.79,1,0.0 +19693,19,9.2,38,0.0 +19693,44,19.45,30,0.0 +19693,5,21.35,25,0.0 +19693,48,12.75,27,0.0 +19693,77,13,29,0.0 +19693,57,19.5,38,0.0 +19693,4,22,40,0.0 +19693,58,13.25,34,0.0 +19693,43,46,6,0.0 +19693,74,10,45,0.0 +19693,69,36,20,0.0 +19693,62,49.3,47,0.0 +19693,12,38,35,0.0 +19693,39,18,39,0.0 +19693,28,45.6,45,0.0 +19693,60,34,39,0.0 +19693,67,14,32,0.0 +19693,33,2.5,45,0.0 +19693,34,14,26,0.0 +19693,26,31.23,5,0.0 +19693,18,62.5,47,0.0 +19693,59,55,12,0.0 +19693,70,15,28,0.0 +19694,40,18.4,17,0.0 +19694,71,21.5,2,0.0 +19694,8,40,17,0.0 +19694,72,34.8,36,0.0 +19694,26,31.23,23,0.0 +19694,30,25.89,10,0.0 +19694,42,14,5,0.0 +19694,68,12.5,18,0.0 +19694,70,15,46,0.0 +19694,46,12,29,0.0 +19694,41,9.65,44,0.0 +19694,10,31,45,0.0 +19694,34,14,41,0.0 +19694,48,12.75,15,0.0 +19694,65,21.05,42,0.0 +19694,52,7,7,0.0 +19694,61,28.5,18,0.0 +19694,29,123.79,21,0.0 +19694,7,30,23,0.0 +19694,6,25,3,0.0 +19694,33,2.5,16,0.0 +19694,21,10,23,0.0 +19694,74,10,25,0.0 +19694,55,24,34,0.0 +19694,64,33.25,28,0.0 +19694,58,13.25,21,0.0 +19694,22,21,40,0.0 +19694,75,7.75,23,0.0 +19694,56,38,16,0.0 +19694,27,43.9,36,0.0 +19694,12,38,21,0.0 +19694,20,81,34,0.0 +19694,9,97,7,0.0 +19694,66,17,39,0.0 +19694,15,15.5,41,0.0 +19694,69,36,42,0.0 +19694,1,18,41,0.0 +19694,18,62.5,11,0.0 +19694,49,20,12,0.0 +19694,23,9,20,0.0 +19694,53,32.8,40,0.0 +19694,47,9.5,44,0.0 +19695,43,46,29,0.0 +19695,55,24,18,0.0 +19695,11,21,3,0.0 +19695,47,9.5,1,0.0 +19695,63,43.9,28,0.0 +19695,19,9.2,30,0.0 +19695,7,30,46,0.0 +19695,51,53,10,0.0 +19695,57,19.5,50,0.0 +19695,32,32,49,0.0 +19695,61,28.5,30,0.0 +19695,22,21,36,0.0 +19695,65,21.05,17,0.0 +19695,26,31.23,13,0.0 +19695,62,49.3,16,0.0 +19695,38,263.5,33,0.0 +19695,68,12.5,43,0.0 +19695,60,34,2,0.0 +19695,30,25.89,33,0.0 +19695,56,38,13,0.0 +19695,70,15,2,0.0 +19695,67,14,20,0.0 +19695,50,16.25,23,0.0 +19695,58,13.25,12,0.0 +19695,72,34.8,40,0.0 +19695,34,14,11,0.0 +19695,8,40,44,0.0 +19695,53,32.8,44,0.0 +19695,20,81,21,0.0 +19695,24,4.5,33,0.0 +19695,12,38,9,0.0 +19695,13,6,4,0.0 +19695,77,13,10,0.0 +19695,10,31,8,0.0 +19695,66,17,25,0.0 +19695,44,19.45,15,0.0 +19695,35,18,21,0.0 +19695,3,10,47,0.0 +19695,59,55,44,0.0 +19695,74,10,13,0.0 +19695,41,9.65,30,0.0 +19695,14,23.25,18,0.0 +19696,40,18.4,17,0.0 +19696,67,14,1,0.0 +19696,54,7.45,15,0.0 +19696,44,19.45,48,0.0 +19696,21,10,44,0.0 +19696,8,40,27,0.0 +19696,43,46,45,0.0 +19696,28,45.6,24,0.0 +19696,3,10,12,0.0 +19696,2,19,15,0.0 +19696,17,39,27,0.0 +19696,37,26,28,0.0 +19696,59,55,44,0.0 +19696,10,31,40,0.0 +19696,1,18,33,0.0 +19696,9,97,25,0.0 +19696,48,12.75,46,0.0 +19696,4,22,9,0.0 +19696,38,263.5,48,0.0 +19696,27,43.9,26,0.0 +19696,6,25,10,0.0 +19696,46,12,34,0.0 +19696,50,16.25,2,0.0 +19696,52,7,49,0.0 +19696,11,21,26,0.0 +19696,35,18,27,0.0 +19696,20,81,8,0.0 +19696,14,23.25,18,0.0 +19696,71,21.5,32,0.0 +19696,47,9.5,31,0.0 +19696,65,21.05,48,0.0 +19696,19,9.2,17,0.0 +19696,73,15,44,0.0 +19696,56,38,49,0.0 +19696,42,14,17,0.0 +19696,34,14,27,0.0 +19696,24,4.5,13,0.0 +19696,45,9.5,36,0.0 +19696,22,21,21,0.0 +19696,41,9.65,8,0.0 +19696,29,123.79,47,0.0 +19696,16,17.45,22,0.0 +19696,76,18,37,0.0 +19696,70,15,36,0.0 +19696,58,13.25,50,0.0 +19696,51,53,5,0.0 +19696,64,33.25,41,0.0 +19696,60,34,23,0.0 +19696,77,13,32,0.0 +19696,66,17,23,0.0 +19696,55,24,50,0.0 +19696,36,19,19,0.0 +19697,71,21.5,26,0.0 +19697,27,43.9,40,0.0 +19697,70,15,42,0.0 +19697,18,62.5,47,0.0 +19697,47,9.5,21,0.0 +19697,6,25,33,0.0 +19697,41,9.65,47,0.0 +19697,54,7.45,17,0.0 +19697,1,18,4,0.0 +19697,57,19.5,47,0.0 +19697,60,34,2,0.0 +19697,40,18.4,35,0.0 +19697,17,39,9,0.0 +19697,29,123.79,35,0.0 +19697,50,16.25,32,0.0 +19697,21,10,46,0.0 +19697,11,21,31,0.0 +19697,77,13,29,0.0 +19697,55,24,1,0.0 +19697,42,14,8,0.0 +19697,14,23.25,12,0.0 +19697,28,45.6,38,0.0 +19697,44,19.45,33,0.0 +19697,73,15,7,0.0 +19697,30,25.89,47,0.0 +19697,75,7.75,45,0.0 +19697,36,19,10,0.0 +19697,20,81,19,0.0 +19697,58,13.25,8,0.0 +19697,76,18,11,0.0 +19697,33,2.5,16,0.0 +19697,72,34.8,23,0.0 +19697,56,38,40,0.0 +19697,68,12.5,1,0.0 +19697,39,18,12,0.0 +19697,13,6,4,0.0 +19697,43,46,20,0.0 +19697,65,21.05,46,0.0 +19697,66,17,35,0.0 +19697,4,22,47,0.0 +19697,52,7,16,0.0 +19697,46,12,27,0.0 +19697,23,9,20,0.0 +19697,35,18,27,0.0 +19697,62,49.3,7,0.0 +19697,22,21,35,0.0 +19697,38,263.5,44,0.0 +19697,74,10,16,0.0 +19697,3,10,14,0.0 +19697,45,9.5,44,0.0 +19697,49,20,19,0.0 +19697,26,31.23,35,0.0 +19697,67,14,22,0.0 +19697,9,97,33,0.0 +19697,48,12.75,45,0.0 +19697,16,17.45,33,0.0 +19697,51,53,35,0.0 +19697,69,36,43,0.0 +19697,59,55,39,0.0 +19697,10,31,31,0.0 +19697,63,43.9,31,0.0 +19697,19,9.2,19,0.0 +19697,61,28.5,26,0.0 +19697,34,14,24,0.0 +19697,2,19,20,0.0 +19697,5,21.35,29,0.0 +19697,31,12.5,37,0.0 +19697,25,14,42,0.0 +19697,12,38,12,0.0 +19697,32,32,37,0.0 +19697,37,26,40,0.0 +19697,7,30,18,0.0 +19698,51,53,15,0.0 +19698,49,20,42,0.0 +19698,29,123.79,33,0.0 +19698,10,31,21,0.0 +19698,52,7,41,0.0 +19698,24,4.5,21,0.0 +19698,1,18,45,0.0 +19698,39,18,25,0.0 +19698,38,263.5,8,0.0 +19698,50,16.25,10,0.0 +19698,7,30,30,0.0 +19698,57,19.5,22,0.0 +19698,58,13.25,46,0.0 +19699,16,17.45,3,0.0 +19699,27,43.9,39,0.0 +19699,23,9,19,0.0 +19699,46,12,9,0.0 +19699,76,18,37,0.0 +19699,41,9.65,18,0.0 +19699,9,97,7,0.0 +19699,25,14,21,0.0 +19699,26,31.23,40,0.0 +19699,18,62.5,24,0.0 +19699,11,21,15,0.0 +19699,3,10,29,0.0 +19699,50,16.25,1,0.0 +19699,2,19,35,0.0 +19699,14,23.25,40,0.0 +19699,56,38,9,0.0 +19699,33,2.5,10,0.0 +19699,59,55,32,0.0 +19699,65,21.05,4,0.0 +19699,31,12.5,28,0.0 +19699,40,18.4,45,0.0 +19699,1,18,10,0.0 +19699,21,10,25,0.0 +19699,48,12.75,41,0.0 +19699,57,19.5,2,0.0 +19699,54,7.45,7,0.0 +19699,15,15.5,46,0.0 +19699,42,14,17,0.0 +19699,63,43.9,40,0.0 +19699,47,9.5,39,0.0 +19699,7,30,38,0.0 +19699,74,10,19,0.0 +19699,24,4.5,44,0.0 +19699,72,34.8,5,0.0 +19699,28,45.6,3,0.0 +19699,35,18,42,0.0 +19699,73,15,42,0.0 +19699,68,12.5,45,0.0 +19699,64,33.25,15,0.0 +19699,71,21.5,25,0.0 +19699,67,14,21,0.0 +19699,36,19,48,0.0 +19699,5,21.35,42,0.0 +19699,8,40,9,0.0 +19699,61,28.5,10,0.0 +19699,58,13.25,33,0.0 +19699,66,17,50,0.0 +19699,34,14,18,0.0 +19699,70,15,50,0.0 +19699,22,21,14,0.0 +19699,30,25.89,39,0.0 +19699,4,22,3,0.0 +19699,43,46,39,0.0 +19699,29,123.79,31,0.0 +19699,44,19.45,50,0.0 +19699,12,38,17,0.0 +19699,60,34,39,0.0 +19699,37,26,49,0.0 +19699,49,20,20,0.0 +19699,52,7,13,0.0 +19699,75,7.75,45,0.0 +19699,6,25,24,0.0 +19699,55,24,3,0.0 +19699,19,9.2,29,0.0 +19699,77,13,45,0.0 +19699,39,18,26,0.0 +19699,38,263.5,41,0.0 +19699,62,49.3,3,0.0 +19699,10,31,27,0.0 +19699,20,81,20,0.0 +19699,45,9.5,28,0.0 +19700,22,21,32,0.0 +19700,47,9.5,40,0.0 +19700,44,19.45,15,0.0 +19700,51,53,19,0.0 +19700,48,12.75,30,0.0 +19700,1,18,33,0.0 +19700,57,19.5,2,0.0 +19700,64,33.25,48,0.0 +19700,63,43.9,33,0.0 +19700,74,10,22,0.0 +19700,67,14,4,0.0 +19700,17,39,31,0.0 +19700,16,17.45,27,0.0 +19700,11,21,11,0.0 +19700,69,36,20,0.0 +19700,34,14,47,0.0 +19700,42,14,15,0.0 +19700,56,38,11,0.0 +19700,4,22,4,0.0 +19700,7,30,40,0.0 +19700,18,62.5,32,0.0 +19700,8,40,40,0.0 +19700,39,18,14,0.0 +19700,36,19,11,0.0 +19700,20,81,9,0.0 +19700,55,24,40,0.0 +19700,31,12.5,42,0.0 +19700,15,15.5,25,0.0 +19700,26,31.23,1,0.0 +19700,41,9.65,1,0.0 +19700,73,15,29,0.0 +19700,60,34,27,0.0 +19700,62,49.3,32,0.0 +19700,33,2.5,9,0.0 +19700,72,34.8,31,0.0 +19700,35,18,3,0.0 +19700,76,18,22,0.0 +19700,19,9.2,18,0.0 +19700,70,15,21,0.0 +19700,40,18.4,14,0.0 +19700,77,13,22,0.0 +19700,23,9,43,0.0 +19700,54,7.45,37,0.0 +19700,21,10,38,0.0 +19700,52,7,8,0.0 +19700,29,123.79,11,0.0 +19700,68,12.5,38,0.0 +19700,45,9.5,37,0.0 +19700,71,21.5,31,0.0 +19700,2,19,4,0.0 +19700,10,31,40,0.0 +19700,38,263.5,40,0.0 +19700,66,17,36,0.0 +19700,30,25.89,32,0.0 +19701,58,13.25,35,0.0 +19701,77,13,33,0.0 +19701,70,15,30,0.0 +19702,5,21.35,36,0.0 +19702,17,39,23,0.0 +19702,11,21,42,0.0 +19702,42,14,3,0.0 +19702,45,9.5,15,0.0 +19702,1,18,25,0.0 +19702,48,12.75,45,0.0 +19702,40,18.4,23,0.0 +19702,39,18,44,0.0 +19702,76,18,11,0.0 +19702,36,19,4,0.0 +19702,67,14,47,0.0 +19702,26,31.23,23,0.0 +19702,41,9.65,2,0.0 +19702,8,40,15,0.0 +19702,65,21.05,19,0.0 +19702,46,12,22,0.0 +19702,59,55,2,0.0 +19702,7,30,24,0.0 +19702,50,16.25,24,0.0 +19702,27,43.9,17,0.0 +19702,63,43.9,7,0.0 +19702,33,2.5,10,0.0 +19702,61,28.5,10,0.0 +19702,43,46,20,0.0 +19702,28,45.6,3,0.0 +19702,71,21.5,2,0.0 +19702,74,10,42,0.0 +19702,22,21,5,0.0 +19702,19,9.2,47,0.0 +19702,25,14,18,0.0 +19702,37,26,22,0.0 +19702,18,62.5,39,0.0 +19702,9,97,35,0.0 +19702,3,10,21,0.0 +19702,66,17,9,0.0 +19702,4,22,30,0.0 +19702,73,15,40,0.0 +19702,47,9.5,21,0.0 +19702,54,7.45,25,0.0 +19702,34,14,26,0.0 +19702,23,9,7,0.0 +19702,13,6,14,0.0 +19702,62,49.3,36,0.0 +19702,20,81,36,0.0 +19702,55,24,49,0.0 +19702,57,19.5,48,0.0 +19702,60,34,44,0.0 +19702,14,23.25,15,0.0 +19703,36,19,24,0.0 +19703,54,7.45,12,0.0 +19703,51,53,5,0.0 +19703,67,14,37,0.0 +19703,56,38,47,0.0 +19703,70,15,36,0.0 +19703,7,30,33,0.0 +19703,53,32.8,50,0.0 +19703,14,23.25,6,0.0 +19703,46,12,42,0.0 +19703,10,31,25,0.0 +19703,37,26,30,0.0 +19703,4,22,21,0.0 +19703,63,43.9,41,0.0 +19703,66,17,24,0.0 +19703,32,32,28,0.0 +19703,71,21.5,12,0.0 +19703,26,31.23,17,0.0 +19703,31,12.5,1,0.0 +19703,12,38,7,0.0 +19703,50,16.25,41,0.0 +19703,58,13.25,33,0.0 +19703,11,21,20,0.0 +19703,77,13,10,0.0 +19703,45,9.5,9,0.0 +19703,59,55,33,0.0 +19703,22,21,7,0.0 +19703,27,43.9,8,0.0 +19703,39,18,41,0.0 +19703,24,4.5,43,0.0 +19703,52,7,35,0.0 +19703,65,21.05,15,0.0 +19703,21,10,31,0.0 +19703,5,21.35,22,0.0 +19703,60,34,36,0.0 +19703,48,12.75,24,0.0 +19703,20,81,48,0.0 +19703,47,9.5,11,0.0 +19703,35,18,49,0.0 +19703,68,12.5,11,0.0 +19703,72,34.8,11,0.0 +19703,44,19.45,10,0.0 +19703,29,123.79,20,0.0 +19703,76,18,13,0.0 +19703,6,25,4,0.0 +19703,64,33.25,29,0.0 +19703,25,14,11,0.0 +19703,33,2.5,23,0.0 +19703,73,15,35,0.0 +19703,23,9,31,0.0 +19703,3,10,38,0.0 +19703,13,6,41,0.0 +19703,28,45.6,19,0.0 +19703,61,28.5,38,0.0 +19703,75,7.75,42,0.0 +19703,74,10,40,0.0 +19703,30,25.89,35,0.0 +19703,57,19.5,7,0.0 +19703,15,15.5,16,0.0 +19703,19,9.2,49,0.0 +19703,49,20,18,0.0 +19703,41,9.65,40,0.0 +19703,9,97,5,0.0 +19703,42,14,29,0.0 +19703,55,24,28,0.0 +19703,34,14,17,0.0 +19703,18,62.5,35,0.0 +19703,40,18.4,10,0.0 +19703,62,49.3,27,0.0 +19703,69,36,27,0.0 +19704,5,21.35,5,0.0 +19704,74,10,31,0.0 +19704,35,18,9,0.0 +19704,6,25,22,0.0 +19704,54,7.45,1,0.0 +19704,58,13.25,13,0.0 +19704,43,46,25,0.0 +19704,75,7.75,19,0.0 +19704,10,31,42,0.0 +19704,62,49.3,49,0.0 +19704,45,9.5,41,0.0 +19704,38,263.5,23,0.0 +19704,51,53,34,0.0 +19704,25,14,29,0.0 +19704,28,45.6,41,0.0 +19704,20,81,8,0.0 +19704,18,62.5,14,0.0 +19704,23,9,18,0.0 +19704,59,55,50,0.0 +19704,15,15.5,8,0.0 +19704,61,28.5,3,0.0 +19704,22,21,8,0.0 +19704,48,12.75,9,0.0 +19704,11,21,13,0.0 +19704,33,2.5,19,0.0 +19704,30,25.89,26,0.0 +19704,13,6,17,0.0 +19704,2,19,16,0.0 +19704,29,123.79,15,0.0 +19704,55,24,39,0.0 +19704,47,9.5,48,0.0 +19704,60,34,20,0.0 +19704,36,19,25,0.0 +19704,52,7,19,0.0 +19704,53,32.8,14,0.0 +19704,65,21.05,35,0.0 +19704,42,14,36,0.0 +19704,37,26,22,0.0 +19704,3,10,34,0.0 +19704,1,18,42,0.0 +19704,77,13,44,0.0 +19704,26,31.23,22,0.0 +19704,66,17,48,0.0 +19704,56,38,24,0.0 +19704,63,43.9,50,0.0 +19704,21,10,22,0.0 +19704,17,39,12,0.0 +19704,24,4.5,40,0.0 +19704,12,38,22,0.0 +19704,16,17.45,19,0.0 +19704,50,16.25,9,0.0 +19704,64,33.25,32,0.0 +19704,73,15,25,0.0 +19704,7,30,34,0.0 +19704,32,32,33,0.0 +19704,70,15,21,0.0 +19704,57,19.5,39,0.0 +19704,46,12,46,0.0 +19704,49,20,27,0.0 +19704,8,40,46,0.0 +19704,68,12.5,42,0.0 +19704,31,12.5,41,0.0 +19704,69,36,9,0.0 +19704,14,23.25,34,0.0 +19704,71,21.5,3,0.0 +19704,72,34.8,26,0.0 +19704,44,19.45,25,0.0 +19704,76,18,18,0.0 +19704,9,97,21,0.0 +19704,40,18.4,24,0.0 +19704,39,18,24,0.0 +19704,19,9.2,47,0.0 +19704,27,43.9,27,0.0 +19704,34,14,22,0.0 +19704,4,22,20,0.0 +19704,67,14,2,0.0 +19704,41,9.65,49,0.0 +19705,38,263.5,24,0.0 +19705,35,18,4,0.0 +19705,1,18,8,0.0 +19705,41,9.65,21,0.0 +19705,22,21,43,0.0 +19705,61,28.5,26,0.0 +19705,58,13.25,39,0.0 +19705,47,9.5,6,0.0 +19705,73,15,13,0.0 +19705,11,21,21,0.0 +19705,32,32,14,0.0 +19705,10,31,6,0.0 +19706,48,12.75,9,0.0 +19706,4,22,44,0.0 +19706,42,14,29,0.0 +19706,29,123.79,37,0.0 +19706,61,28.5,12,0.0 +19706,34,14,49,0.0 +19706,76,18,28,0.0 +19706,49,20,44,0.0 +19706,72,34.8,31,0.0 +19706,1,18,31,0.0 +19706,53,32.8,39,0.0 +19706,28,45.6,25,0.0 +19706,25,14,31,0.0 +19706,30,25.89,26,0.0 +19706,54,7.45,45,0.0 +19706,33,2.5,19,0.0 +19706,9,97,11,0.0 +19706,63,43.9,18,0.0 +19706,6,25,26,0.0 +19706,75,7.75,36,0.0 +19706,24,4.5,36,0.0 +19706,57,19.5,12,0.0 +19706,69,36,39,0.0 +19706,68,12.5,46,0.0 +19706,20,81,10,0.0 +19706,13,6,27,0.0 +19706,71,21.5,40,0.0 +19706,74,10,5,0.0 +19706,59,55,33,0.0 +19706,31,12.5,32,0.0 +19706,19,9.2,19,0.0 +19707,19,9.2,49,0.0 +19707,74,10,2,0.0 +19707,3,10,15,0.0 +19707,27,43.9,16,0.0 +19707,39,18,8,0.0 +19707,42,14,4,0.0 +19707,77,13,24,0.0 +19707,62,49.3,40,0.0 +19707,76,18,4,0.0 +19707,36,19,35,0.0 +19707,5,21.35,29,0.0 +19707,50,16.25,47,0.0 +19707,67,14,17,0.0 +19708,77,13,33,0.0 +19708,30,25.89,32,0.0 +19708,64,33.25,30,0.0 +19708,46,12,48,0.0 +19708,27,43.9,20,0.0 +19708,6,25,38,0.0 +19708,51,53,46,0.0 +19708,3,10,39,0.0 +19708,19,9.2,10,0.0 +19708,8,40,4,0.0 +19708,42,14,14,0.0 +19708,68,12.5,1,0.0 +19708,58,13.25,24,0.0 +19708,48,12.75,49,0.0 +19708,32,32,18,0.0 +19708,59,55,42,0.0 +19708,43,46,2,0.0 +19708,23,9,47,0.0 +19708,52,7,12,0.0 +19708,44,19.45,24,0.0 +19708,56,38,24,0.0 +19708,16,17.45,34,0.0 +19708,28,45.6,41,0.0 +19708,60,34,45,0.0 +19708,74,10,39,0.0 +19708,1,18,39,0.0 +19708,73,15,27,0.0 +19708,76,18,16,0.0 +19708,61,28.5,15,0.0 +19708,10,31,39,0.0 +19708,29,123.79,43,0.0 +19708,14,23.25,10,0.0 +19708,69,36,2,0.0 +19708,4,22,32,0.0 +19708,67,14,20,0.0 +19708,34,14,50,0.0 +19708,33,2.5,25,0.0 +19708,40,18.4,5,0.0 +19708,12,38,7,0.0 +19708,39,18,44,0.0 +19708,25,14,35,0.0 +19708,63,43.9,24,0.0 +19708,13,6,48,0.0 +19708,18,62.5,8,0.0 +19708,11,21,9,0.0 +19708,37,26,24,0.0 +19708,36,19,50,0.0 +19708,50,16.25,33,0.0 +19708,65,21.05,17,0.0 +19708,66,17,41,0.0 +19708,17,39,34,0.0 +19708,49,20,26,0.0 +19708,31,12.5,39,0.0 +19708,24,4.5,2,0.0 +19708,72,34.8,44,0.0 +19708,5,21.35,1,0.0 +19709,8,40,42,0.0 +19709,72,34.8,44,0.0 +19709,53,32.8,4,0.0 +19709,61,28.5,42,0.0 +19709,54,7.45,35,0.0 +19709,51,53,35,0.0 +19709,22,21,43,0.0 +19709,49,20,9,0.0 +19709,59,55,9,0.0 +19709,18,62.5,29,0.0 +19709,60,34,8,0.0 +19709,20,81,17,0.0 +19709,14,23.25,29,0.0 +19709,10,31,19,0.0 +19709,55,24,33,0.0 +19709,3,10,38,0.0 +19709,34,14,39,0.0 +19709,47,9.5,17,0.0 +19709,45,9.5,9,0.0 +19709,44,19.45,42,0.0 +19709,13,6,30,0.0 +19709,33,2.5,12,0.0 +19709,52,7,31,0.0 +19709,43,46,48,0.0 +19709,62,49.3,46,0.0 +19709,71,21.5,8,0.0 +19709,58,13.25,1,0.0 +19709,75,7.75,20,0.0 +19709,12,38,13,0.0 +19709,30,25.89,34,0.0 +19709,9,97,14,0.0 +19709,2,19,27,0.0 +19709,26,31.23,29,0.0 +19709,28,45.6,40,0.0 +19709,15,15.5,29,0.0 +19709,23,9,21,0.0 +19709,74,10,18,0.0 +19709,38,263.5,14,0.0 +19709,68,12.5,45,0.0 +19709,7,30,5,0.0 +19709,73,15,37,0.0 +19709,46,12,18,0.0 +19709,69,36,4,0.0 +19709,50,16.25,29,0.0 +19709,11,21,9,0.0 +19709,65,21.05,6,0.0 +19709,76,18,17,0.0 +19709,25,14,12,0.0 +19709,77,13,48,0.0 +19709,19,9.2,7,0.0 +19709,35,18,15,0.0 +19709,64,33.25,8,0.0 +19709,29,123.79,22,0.0 +19709,5,21.35,15,0.0 +19709,37,26,48,0.0 +19709,31,12.5,44,0.0 +19709,17,39,6,0.0 +19709,36,19,28,0.0 +19710,53,32.8,24,0.0 +19710,58,13.25,9,0.0 +19710,32,32,18,0.0 +19710,28,45.6,18,0.0 +19710,1,18,42,0.0 +19710,65,21.05,4,0.0 +19710,27,43.9,18,0.0 +19710,57,19.5,21,0.0 +19710,75,7.75,9,0.0 +19710,7,30,30,0.0 +19710,59,55,42,0.0 +19710,72,34.8,21,0.0 +19710,67,14,13,0.0 +19710,61,28.5,30,0.0 +19710,60,34,35,0.0 +19710,18,62.5,35,0.0 +19710,31,12.5,47,0.0 +19710,6,25,13,0.0 +19710,64,33.25,19,0.0 +19710,9,97,38,0.0 +19710,74,10,11,0.0 +19710,23,9,32,0.0 +19710,46,12,35,0.0 +19710,11,21,44,0.0 +19710,35,18,32,0.0 +19710,34,14,44,0.0 +19710,22,21,28,0.0 +19710,40,18.4,32,0.0 +19710,20,81,4,0.0 +19710,30,25.89,27,0.0 +19710,77,13,7,0.0 +19710,55,24,41,0.0 +19710,42,14,3,0.0 +19710,2,19,3,0.0 +19710,45,9.5,30,0.0 +19710,66,17,41,0.0 +19710,8,40,26,0.0 +19710,76,18,45,0.0 +19710,26,31.23,14,0.0 +19710,73,15,25,0.0 +19710,49,20,17,0.0 +19710,13,6,17,0.0 +19710,68,12.5,47,0.0 +19710,33,2.5,35,0.0 +19710,21,10,23,0.0 +19710,5,21.35,48,0.0 +19710,15,15.5,38,0.0 +19710,37,26,11,0.0 +19710,38,263.5,24,0.0 +19710,12,38,36,0.0 +19710,17,39,48,0.0 +19710,54,7.45,50,0.0 +19710,19,9.2,47,0.0 +19710,4,22,43,0.0 +19710,10,31,2,0.0 +19710,36,19,11,0.0 +19710,29,123.79,49,0.0 +19710,52,7,14,0.0 +19710,14,23.25,37,0.0 +19710,62,49.3,40,0.0 +19710,51,53,47,0.0 +19710,24,4.5,48,0.0 +19710,48,12.75,25,0.0 +19710,63,43.9,11,0.0 +19710,3,10,31,0.0 +19710,41,9.65,29,0.0 +19710,44,19.45,19,0.0 +19710,56,38,25,0.0 +19710,39,18,4,0.0 +19710,71,21.5,1,0.0 +19710,47,9.5,17,0.0 +19710,16,17.45,28,0.0 +19710,70,15,9,0.0 +19710,50,16.25,5,0.0 +19710,25,14,43,0.0 +19711,48,12.75,45,0.0 +19711,72,34.8,34,0.0 +19711,25,14,47,0.0 +19711,74,10,36,0.0 +19711,50,16.25,34,0.0 +19711,77,13,10,0.0 +19711,15,15.5,50,0.0 +19711,70,15,47,0.0 +19711,10,31,40,0.0 +19711,69,36,4,0.0 +19711,75,7.75,28,0.0 +19711,24,4.5,40,0.0 +19711,54,7.45,9,0.0 +19711,9,97,35,0.0 +19711,11,21,47,0.0 +19711,16,17.45,12,0.0 +19711,33,2.5,27,0.0 +19711,40,18.4,19,0.0 +19711,57,19.5,44,0.0 +19711,14,23.25,12,0.0 +19711,58,13.25,37,0.0 +19711,19,9.2,6,0.0 +19711,27,43.9,36,0.0 +19711,41,9.65,22,0.0 +19711,12,38,45,0.0 +19711,73,15,47,0.0 +19711,7,30,1,0.0 +19711,3,10,8,0.0 +19711,65,21.05,50,0.0 +19711,34,14,39,0.0 +19711,28,45.6,11,0.0 +19711,42,14,18,0.0 +19711,26,31.23,21,0.0 +19711,55,24,12,0.0 +19711,63,43.9,50,0.0 +19711,67,14,32,0.0 +19711,66,17,38,0.0 +19711,68,12.5,3,0.0 +19711,23,9,38,0.0 +19711,6,25,22,0.0 +19711,21,10,13,0.0 +19711,37,26,4,0.0 +19711,8,40,35,0.0 +19711,4,22,39,0.0 +19711,20,81,26,0.0 +19711,39,18,12,0.0 +19711,47,9.5,18,0.0 +19711,22,21,4,0.0 +19711,17,39,34,0.0 +19711,1,18,29,0.0 +19711,45,9.5,43,0.0 +19711,49,20,18,0.0 +19711,38,263.5,15,0.0 +19711,35,18,19,0.0 +19711,29,123.79,2,0.0 +19711,36,19,34,0.0 +19711,43,46,15,0.0 +19711,13,6,21,0.0 +19711,76,18,44,0.0 +19711,2,19,34,0.0 +19711,44,19.45,15,0.0 +19711,32,32,32,0.0 +19711,52,7,50,0.0 +19711,61,28.5,21,0.0 +19711,59,55,45,0.0 +19712,42,14,47,0.0 +19712,64,33.25,20,0.0 +19712,61,28.5,46,0.0 +19712,55,24,29,0.0 +19712,33,2.5,29,0.0 +19712,17,39,27,0.0 +19712,37,26,25,0.0 +19712,36,19,48,0.0 +19712,70,15,34,0.0 +19712,41,9.65,2,0.0 +19712,29,123.79,13,0.0 +19712,52,7,16,0.0 +19712,25,14,32,0.0 +19713,10,31,24,0.0 +19713,6,25,33,0.0 +19713,64,33.25,24,0.0 +19713,63,43.9,45,0.0 +19713,55,24,36,0.0 +19713,67,14,37,0.0 +19713,13,6,24,0.0 +19713,73,15,16,0.0 +19713,9,97,40,0.0 +19713,69,36,29,0.0 +19713,15,15.5,21,0.0 +19713,12,38,34,0.0 +19713,35,18,8,0.0 +19713,62,49.3,37,0.0 +19713,14,23.25,28,0.0 +19713,77,13,44,0.0 +19713,60,34,6,0.0 +19713,76,18,2,0.0 +19713,28,45.6,40,0.0 +19713,52,7,18,0.0 +19713,41,9.65,47,0.0 +19713,48,12.75,46,0.0 +19713,56,38,8,0.0 +19713,24,4.5,9,0.0 +19713,31,12.5,39,0.0 +19713,7,30,48,0.0 +19713,50,16.25,44,0.0 +19713,44,19.45,8,0.0 +19714,75,7.75,27,0.0 +19714,63,43.9,17,0.0 +19714,53,32.8,29,0.0 +19714,73,15,30,0.0 +19714,6,25,41,0.0 +19714,64,33.25,6,0.0 +19714,62,49.3,5,0.0 +19714,25,14,22,0.0 +19714,67,14,16,0.0 +19714,58,13.25,5,0.0 +19714,66,17,5,0.0 +19714,44,19.45,34,0.0 +19714,46,12,18,0.0 +19714,39,18,1,0.0 +19714,59,55,8,0.0 +19714,2,19,21,0.0 +19714,18,62.5,29,0.0 +19714,72,34.8,9,0.0 +19714,20,81,29,0.0 +19714,65,21.05,17,0.0 +19714,12,38,16,0.0 +19714,8,40,40,0.0 +19714,48,12.75,38,0.0 +19714,45,9.5,27,0.0 +19714,27,43.9,45,0.0 +19714,77,13,19,0.0 +19714,74,10,8,0.0 +19714,37,26,5,0.0 +19714,33,2.5,9,0.0 +19715,8,40,24,0.0 +19715,13,6,38,0.0 +19715,26,31.23,43,0.0 +19715,2,19,45,0.0 +19715,31,12.5,7,0.0 +19715,9,97,30,0.0 +19715,73,15,48,0.0 +19715,54,7.45,27,0.0 +19715,25,14,30,0.0 +19715,56,38,15,0.0 +19715,4,22,7,0.0 +19715,70,15,29,0.0 +19715,32,32,3,0.0 +19715,59,55,30,0.0 +19715,76,18,39,0.0 +19715,21,10,28,0.0 +19715,38,263.5,19,0.0 +19715,17,39,1,0.0 +19715,67,14,48,0.0 +19715,28,45.6,39,0.0 +19715,77,13,20,0.0 +19715,16,17.45,43,0.0 +19715,35,18,42,0.0 +19715,15,15.5,42,0.0 +19715,14,23.25,16,0.0 +19715,69,36,34,0.0 +19715,65,21.05,31,0.0 +19715,53,32.8,33,0.0 +19715,33,2.5,11,0.0 +19715,7,30,8,0.0 +19715,61,28.5,13,0.0 +19715,6,25,49,0.0 +19715,20,81,20,0.0 +19715,68,12.5,4,0.0 +19715,66,17,21,0.0 +19715,34,14,47,0.0 +19715,23,9,4,0.0 +19716,75,7.75,8,0.0 +19716,37,26,40,0.0 +19716,12,38,28,0.0 +19716,60,34,42,0.0 +19716,58,13.25,46,0.0 +19716,68,12.5,7,0.0 +19716,65,21.05,38,0.0 +19716,45,9.5,50,0.0 +19716,15,15.5,13,0.0 +19716,40,18.4,28,0.0 +19716,35,18,37,0.0 +19716,61,28.5,40,0.0 +19716,22,21,36,0.0 +19716,49,20,33,0.0 +19716,16,17.45,20,0.0 +19716,39,18,11,0.0 +19716,50,16.25,24,0.0 +19716,28,45.6,36,0.0 +19716,44,19.45,12,0.0 +19716,14,23.25,38,0.0 +19716,1,18,13,0.0 +19716,52,7,21,0.0 +19716,10,31,14,0.0 +19716,29,123.79,46,0.0 +19716,27,43.9,14,0.0 +19716,13,6,42,0.0 +19716,7,30,10,0.0 +19716,57,19.5,19,0.0 +19716,48,12.75,9,0.0 +19716,21,10,23,0.0 +19716,31,12.5,40,0.0 +19716,11,21,12,0.0 +19716,42,14,2,0.0 +19716,34,14,13,0.0 +19716,67,14,6,0.0 +19716,71,21.5,3,0.0 +19716,19,9.2,9,0.0 +19716,69,36,46,0.0 +19716,6,25,9,0.0 +19716,53,32.8,21,0.0 +19716,26,31.23,43,0.0 +19716,5,21.35,14,0.0 +19716,46,12,45,0.0 +19716,23,9,11,0.0 +19716,33,2.5,18,0.0 +19716,20,81,43,0.0 +19716,18,62.5,26,0.0 +19716,74,10,42,0.0 +19716,24,4.5,11,0.0 +19716,77,13,47,0.0 +19716,62,49.3,26,0.0 +19716,36,19,20,0.0 +19716,30,25.89,44,0.0 +19716,59,55,40,0.0 +19716,41,9.65,30,0.0 +19716,4,22,10,0.0 +19716,70,15,14,0.0 +19716,55,24,11,0.0 +19716,66,17,39,0.0 +19716,25,14,31,0.0 +19716,9,97,31,0.0 +19716,32,32,32,0.0 +19716,64,33.25,20,0.0 +19716,63,43.9,44,0.0 +19716,47,9.5,22,0.0 +19716,3,10,47,0.0 +19716,56,38,39,0.0 +19716,43,46,25,0.0 +19716,76,18,18,0.0 +19716,72,34.8,17,0.0 +19716,73,15,47,0.0 +19716,2,19,47,0.0 +19716,51,53,37,0.0 +19716,17,39,42,0.0 +19717,3,10,49,0.0 +19717,47,9.5,27,0.0 +19717,22,21,43,0.0 +19717,55,24,43,0.0 +19717,52,7,19,0.0 +19717,7,30,1,0.0 +19717,46,12,20,0.0 +19717,35,18,38,0.0 +19717,56,38,27,0.0 +19717,34,14,17,0.0 +19717,73,15,2,0.0 +19717,60,34,7,0.0 +19717,5,21.35,3,0.0 +19717,13,6,37,0.0 +19717,38,263.5,7,0.0 +19717,50,16.25,17,0.0 +19717,29,123.79,45,0.0 +19717,74,10,4,0.0 +19717,57,19.5,40,0.0 +19717,25,14,5,0.0 +19717,19,9.2,32,0.0 +19717,48,12.75,28,0.0 +19717,28,45.6,2,0.0 +19717,23,9,7,0.0 +19717,18,62.5,8,0.0 +19717,76,18,30,0.0 +19717,72,34.8,12,0.0 +19717,9,97,8,0.0 +19717,4,22,18,0.0 +19717,53,32.8,5,0.0 +19717,8,40,45,0.0 +19717,16,17.45,36,0.0 +19717,11,21,13,0.0 +19717,65,21.05,17,0.0 +19717,17,39,4,0.0 +19717,58,13.25,4,0.0 +19717,6,25,25,0.0 +19717,68,12.5,28,0.0 +19717,41,9.65,15,0.0 +19717,15,15.5,47,0.0 +19717,1,18,11,0.0 +19717,63,43.9,6,0.0 +19717,49,20,22,0.0 +19717,26,31.23,38,0.0 +19717,30,25.89,44,0.0 +19717,21,10,28,0.0 +19717,24,4.5,6,0.0 +19717,40,18.4,11,0.0 +19717,36,19,29,0.0 +19717,10,31,45,0.0 +19717,20,81,28,0.0 +19717,51,53,41,0.0 +19717,2,19,47,0.0 +19717,66,17,46,0.0 +19717,27,43.9,47,0.0 +19717,44,19.45,17,0.0 +19717,70,15,8,0.0 +19717,12,38,10,0.0 +19717,43,46,13,0.0 +19717,75,7.75,12,0.0 +19717,39,18,8,0.0 +19717,31,12.5,42,0.0 +19717,42,14,42,0.0 +19717,77,13,6,0.0 +19717,61,28.5,23,0.0 +19717,33,2.5,42,0.0 +19717,71,21.5,16,0.0 +19717,45,9.5,9,0.0 +19717,54,7.45,14,0.0 +19717,69,36,40,0.0 +19718,75,7.75,40,0.0 +19718,43,46,39,0.0 +19718,62,49.3,23,0.0 +19718,50,16.25,49,0.0 +19718,59,55,35,0.0 +19718,5,21.35,49,0.0 +19718,29,123.79,1,0.0 +19718,1,18,46,0.0 +19718,63,43.9,29,0.0 +19718,12,38,1,0.0 +19718,3,10,48,0.0 +19718,42,14,29,0.0 +19718,2,19,36,0.0 +19718,37,26,44,0.0 +19718,32,32,1,0.0 +19718,51,53,29,0.0 +19718,28,45.6,14,0.0 +19718,18,62.5,38,0.0 +19718,10,31,18,0.0 +19718,77,13,9,0.0 +19718,61,28.5,49,0.0 +19718,6,25,46,0.0 +19718,67,14,29,0.0 +19718,22,21,8,0.0 +19718,30,25.89,22,0.0 +19718,40,18.4,21,0.0 +19718,35,18,18,0.0 +19718,71,21.5,21,0.0 +19718,33,2.5,41,0.0 +19718,49,20,11,0.0 +19718,68,12.5,13,0.0 +19718,8,40,50,0.0 +19718,13,6,28,0.0 +19718,36,19,28,0.0 +19718,25,14,50,0.0 +19718,65,21.05,24,0.0 +19718,31,12.5,39,0.0 +19718,58,13.25,28,0.0 +19718,23,9,31,0.0 +19718,7,30,33,0.0 +19718,47,9.5,40,0.0 +19718,15,15.5,16,0.0 +19718,74,10,19,0.0 +19718,38,263.5,33,0.0 +19718,66,17,31,0.0 +19718,19,9.2,44,0.0 +19718,27,43.9,36,0.0 +19718,16,17.45,20,0.0 +19718,69,36,15,0.0 +19718,60,34,30,0.0 +19718,48,12.75,23,0.0 +19718,55,24,32,0.0 +19718,20,81,26,0.0 +19718,52,7,35,0.0 +19718,54,7.45,35,0.0 +19718,44,19.45,47,0.0 +19718,24,4.5,8,0.0 +19718,21,10,46,0.0 +19718,53,32.8,45,0.0 +19718,17,39,46,0.0 +19718,11,21,4,0.0 +19718,41,9.65,50,0.0 +19718,70,15,18,0.0 +19718,14,23.25,8,0.0 +19718,46,12,7,0.0 +19719,66,17,28,0.0 +19719,68,12.5,33,0.0 +19719,56,38,27,0.0 +19719,50,16.25,18,0.0 +19719,71,21.5,21,0.0 +19719,48,12.75,39,0.0 +19719,5,21.35,17,0.0 +19719,63,43.9,45,0.0 +19719,61,28.5,39,0.0 +19719,37,26,20,0.0 +19719,18,62.5,24,0.0 +19719,53,32.8,27,0.0 +19719,6,25,14,0.0 +19719,38,263.5,43,0.0 +19719,45,9.5,20,0.0 +19719,51,53,42,0.0 +19719,27,43.9,42,0.0 +19719,9,97,30,0.0 +19719,25,14,10,0.0 +19719,26,31.23,6,0.0 +19719,4,22,32,0.0 +19719,21,10,12,0.0 +19719,29,123.79,22,0.0 +19720,8,40,21,0.0 +19720,27,43.9,25,0.0 +19720,17,39,29,0.0 +19720,9,97,39,0.0 +19720,67,14,18,0.0 +19720,54,7.45,25,0.0 +19720,31,12.5,31,0.0 +19720,35,18,2,0.0 +19720,29,123.79,22,0.0 +19720,76,18,22,0.0 +19720,52,7,16,0.0 +19720,59,55,20,0.0 +19720,32,32,34,0.0 +19720,45,9.5,7,0.0 +19720,10,31,30,0.0 +19720,74,10,8,0.0 +19720,60,34,7,0.0 +19720,62,49.3,47,0.0 +19720,19,9.2,37,0.0 +19720,51,53,30,0.0 +19720,66,17,41,0.0 +19720,58,13.25,14,0.0 +19720,50,16.25,41,0.0 +19720,28,45.6,42,0.0 +19720,1,18,30,0.0 +19720,6,25,21,0.0 +19720,63,43.9,37,0.0 +19720,23,9,28,0.0 +19721,48,12.75,1,0.0 +19721,39,18,50,0.0 +19721,46,12,21,0.0 +19721,47,9.5,4,0.0 +19721,67,14,8,0.0 +19721,49,20,24,0.0 +19721,18,62.5,46,0.0 +19721,38,263.5,24,0.0 +19721,8,40,29,0.0 +19721,21,10,33,0.0 +19721,54,7.45,5,0.0 +19721,42,14,37,0.0 +19721,55,24,43,0.0 +19721,69,36,18,0.0 +19721,29,123.79,37,0.0 +19721,65,21.05,30,0.0 +19721,28,45.6,46,0.0 +19721,77,13,27,0.0 +19721,72,34.8,30,0.0 +19721,56,38,22,0.0 +19721,64,33.25,33,0.0 +19721,15,15.5,2,0.0 +19721,51,53,27,0.0 +19721,17,39,14,0.0 +19721,61,28.5,45,0.0 +19721,30,25.89,44,0.0 +19721,26,31.23,50,0.0 +19721,44,19.45,24,0.0 +19721,3,10,24,0.0 +19721,73,15,14,0.0 +19721,68,12.5,13,0.0 +19721,36,19,19,0.0 +19721,22,21,23,0.0 +19721,75,7.75,12,0.0 +19721,12,38,11,0.0 +19721,10,31,48,0.0 +19721,33,2.5,13,0.0 +19721,35,18,16,0.0 +19721,1,18,16,0.0 +19721,5,21.35,42,0.0 +19721,13,6,33,0.0 +19721,74,10,9,0.0 +19721,60,34,49,0.0 +19721,43,46,47,0.0 +19721,53,32.8,9,0.0 +19721,4,22,10,0.0 +19721,63,43.9,38,0.0 +19721,27,43.9,20,0.0 +19721,37,26,24,0.0 +19721,59,55,32,0.0 +19721,24,4.5,41,0.0 +19721,50,16.25,40,0.0 +19721,14,23.25,33,0.0 +19721,76,18,49,0.0 +19721,45,9.5,30,0.0 +19721,20,81,18,0.0 +19721,11,21,21,0.0 +19721,41,9.65,39,0.0 +19721,25,14,7,0.0 +19721,70,15,33,0.0 +19721,7,30,33,0.0 +19721,34,14,25,0.0 +19721,62,49.3,14,0.0 +19721,40,18.4,8,0.0 +19721,66,17,27,0.0 +19721,16,17.45,21,0.0 +19721,23,9,1,0.0 +19721,31,12.5,12,0.0 +19721,32,32,29,0.0 +19721,52,7,37,0.0 +19722,3,10,1,0.0 +19722,59,55,2,0.0 +19722,75,7.75,18,0.0 +19722,56,38,41,0.0 +19722,22,21,12,0.0 +19722,42,14,49,0.0 +19722,10,31,15,0.0 +19722,40,18.4,6,0.0 +19722,38,263.5,4,0.0 +19722,43,46,24,0.0 +19722,2,19,50,0.0 +19722,26,31.23,38,0.0 +19722,52,7,25,0.0 +19722,18,62.5,5,0.0 +19722,7,30,8,0.0 +19722,53,32.8,18,0.0 +19722,24,4.5,42,0.0 +19722,76,18,9,0.0 +19722,55,24,21,0.0 +19722,72,34.8,35,0.0 +19722,36,19,16,0.0 +19722,4,22,39,0.0 +19722,61,28.5,6,0.0 +19722,71,21.5,6,0.0 +19722,13,6,18,0.0 +19722,20,81,11,0.0 +19722,41,9.65,43,0.0 +19722,30,25.89,2,0.0 +19722,64,33.25,19,0.0 +19722,23,9,38,0.0 +19722,63,43.9,23,0.0 +19722,21,10,11,0.0 +19722,48,12.75,13,0.0 +19722,5,21.35,23,0.0 +19722,68,12.5,38,0.0 +19722,50,16.25,39,0.0 +19722,39,18,43,0.0 +19722,8,40,8,0.0 +19722,45,9.5,46,0.0 +19722,49,20,41,0.0 +19722,44,19.45,17,0.0 +19722,46,12,15,0.0 +19722,65,21.05,33,0.0 +19722,15,15.5,38,0.0 +19722,66,17,44,0.0 +19722,69,36,8,0.0 +19722,29,123.79,23,0.0 +19722,1,18,50,0.0 +19722,74,10,20,0.0 +19722,62,49.3,3,0.0 +19722,35,18,32,0.0 +19722,16,17.45,19,0.0 +19722,73,15,10,0.0 +19722,67,14,11,0.0 +19722,28,45.6,44,0.0 +19722,6,25,41,0.0 +19722,57,19.5,28,0.0 +19722,54,7.45,6,0.0 +19722,17,39,18,0.0 +19723,4,22,20,0.0 +19723,7,30,38,0.0 +19723,76,18,14,0.0 +19723,44,19.45,40,0.0 +19723,43,46,7,0.0 +19723,35,18,41,0.0 +19723,31,12.5,30,0.0 +19723,11,21,13,0.0 +19723,47,9.5,33,0.0 +19723,74,10,23,0.0 +19723,13,6,24,0.0 +19723,28,45.6,34,0.0 +19723,64,33.25,10,0.0 +19723,62,49.3,6,0.0 +19723,34,14,44,0.0 +19723,19,9.2,50,0.0 +19723,41,9.65,7,0.0 +19723,51,53,27,0.0 +19723,37,26,14,0.0 +19723,72,34.8,6,0.0 +19723,73,15,5,0.0 +19723,55,24,47,0.0 +19723,59,55,30,0.0 +19723,42,14,24,0.0 +19723,58,13.25,9,0.0 +19723,32,32,15,0.0 +19723,50,16.25,50,0.0 +19723,40,18.4,2,0.0 +19723,63,43.9,22,0.0 +19723,49,20,7,0.0 +19723,75,7.75,44,0.0 +19723,54,7.45,50,0.0 +19723,24,4.5,32,0.0 +19723,5,21.35,29,0.0 +19723,65,21.05,6,0.0 +19723,57,19.5,32,0.0 +19723,52,7,29,0.0 +19723,22,21,20,0.0 +19723,20,81,9,0.0 +19723,2,19,17,0.0 +19723,17,39,20,0.0 +19723,38,263.5,42,0.0 +19723,18,62.5,36,0.0 +19723,68,12.5,48,0.0 +19723,48,12.75,12,0.0 +19723,30,25.89,7,0.0 +19723,23,9,13,0.0 +19723,71,21.5,36,0.0 +19723,67,14,12,0.0 +19723,3,10,46,0.0 +19723,29,123.79,38,0.0 +19723,36,19,30,0.0 +19723,10,31,41,0.0 +19723,61,28.5,40,0.0 +19723,8,40,24,0.0 +19723,1,18,33,0.0 +19723,9,97,47,0.0 +19723,33,2.5,29,0.0 +19723,56,38,10,0.0 +19723,12,38,17,0.0 +19724,57,19.5,44,0.0 +19724,66,17,47,0.0 +19724,40,18.4,35,0.0 +19724,1,18,7,0.0 +19724,72,34.8,41,0.0 +19724,58,13.25,33,0.0 +19724,10,31,37,0.0 +19724,44,19.45,26,0.0 +19724,24,4.5,42,0.0 +19724,15,15.5,45,0.0 +19724,76,18,45,0.0 +19724,47,9.5,27,0.0 +19724,74,10,1,0.0 +19724,22,21,25,0.0 +19724,63,43.9,40,0.0 +19724,38,263.5,42,0.0 +19724,27,43.9,41,0.0 +19724,53,32.8,37,0.0 +19724,32,32,48,0.0 +19724,25,14,6,0.0 +19724,73,15,28,0.0 +19724,21,10,9,0.0 +19724,59,55,36,0.0 +19724,36,19,48,0.0 +19724,9,97,10,0.0 +19724,11,21,35,0.0 +19724,68,12.5,33,0.0 +19724,5,21.35,36,0.0 +19724,17,39,42,0.0 +19724,60,34,42,0.0 +19724,65,21.05,3,0.0 +19724,28,45.6,45,0.0 +19724,46,12,20,0.0 +19724,42,14,34,0.0 +19724,64,33.25,49,0.0 +19724,35,18,17,0.0 +19724,31,12.5,43,0.0 +19724,20,81,39,0.0 +19724,13,6,46,0.0 +19724,61,28.5,37,0.0 +19724,62,49.3,25,0.0 +19725,68,12.5,28,0.0 +19725,14,23.25,17,0.0 +19725,52,7,27,0.0 +19725,61,28.5,2,0.0 +19725,43,46,8,0.0 +19725,12,38,15,0.0 +19725,31,12.5,34,0.0 +19725,62,49.3,26,0.0 +19725,3,10,39,0.0 +19725,76,18,4,0.0 +19725,25,14,39,0.0 +19725,75,7.75,14,0.0 +19725,11,21,42,0.0 +19725,2,19,21,0.0 +19725,16,17.45,19,0.0 +19725,20,81,40,0.0 +19725,34,14,44,0.0 +19725,45,9.5,27,0.0 +19725,33,2.5,17,0.0 +19725,69,36,17,0.0 +19725,22,21,20,0.0 +19725,40,18.4,40,0.0 +19725,24,4.5,15,0.0 +19725,51,53,42,0.0 +19726,14,23.25,36,0.0 +19726,23,9,11,0.0 +19726,64,33.25,26,0.0 +19726,40,18.4,25,0.0 +19726,37,26,40,0.0 +19726,32,32,46,0.0 +19726,35,18,29,0.0 +19726,42,14,24,0.0 +19726,59,55,33,0.0 +19726,54,7.45,6,0.0 +19727,18,62.5,12,0.0 +19727,29,123.79,48,0.0 +19727,20,81,27,0.0 +19727,49,20,30,0.0 +19727,5,21.35,35,0.0 +19727,57,19.5,44,0.0 +19727,1,18,11,0.0 +19727,9,97,8,0.0 +19727,31,12.5,21,0.0 +19727,22,21,7,0.0 +19727,72,34.8,50,0.0 +19727,45,9.5,43,0.0 +19728,44,19.45,3,0.0 +19728,17,39,2,0.0 +19728,13,6,24,0.0 +19728,32,32,49,0.0 +19728,77,13,50,0.0 +19728,61,28.5,44,0.0 +19728,31,12.5,17,0.0 +19728,68,12.5,48,0.0 +19728,55,24,34,0.0 +19728,20,81,46,0.0 +19728,69,36,39,0.0 +19728,76,18,35,0.0 +19728,21,10,2,0.0 +19728,26,31.23,5,0.0 +19728,3,10,10,0.0 +19728,25,14,36,0.0 +19728,48,12.75,19,0.0 +19728,58,13.25,8,0.0 +19728,59,55,5,0.0 +19728,39,18,17,0.0 +19728,56,38,50,0.0 +19728,54,7.45,28,0.0 +19728,45,9.5,17,0.0 +19728,40,18.4,15,0.0 +19728,14,23.25,25,0.0 +19728,60,34,26,0.0 +19728,42,14,14,0.0 +19728,41,9.65,49,0.0 +19728,64,33.25,7,0.0 +19728,51,53,4,0.0 +19728,2,19,18,0.0 +19728,6,25,24,0.0 +19728,74,10,40,0.0 +19728,53,32.8,33,0.0 +19728,10,31,8,0.0 +19728,70,15,32,0.0 +19728,23,9,14,0.0 +19728,67,14,47,0.0 +19728,12,38,3,0.0 +19728,66,17,41,0.0 +19728,11,21,26,0.0 +19728,75,7.75,30,0.0 +19728,1,18,28,0.0 +19728,43,46,37,0.0 +19728,22,21,6,0.0 +19728,63,43.9,41,0.0 +19729,14,23.25,5,0.0 +19729,28,45.6,43,0.0 +19729,73,15,39,0.0 +19729,74,10,13,0.0 +19729,52,7,41,0.0 +19729,16,17.45,23,0.0 +19729,58,13.25,12,0.0 +19729,20,81,28,0.0 +19729,32,32,34,0.0 +19729,75,7.75,46,0.0 +19729,10,31,33,0.0 +19729,72,34.8,17,0.0 +19729,29,123.79,4,0.0 +19729,44,19.45,31,0.0 +19729,5,21.35,50,0.0 +19729,46,12,33,0.0 +19729,17,39,24,0.0 +19729,4,22,27,0.0 +19729,71,21.5,42,0.0 +19729,40,18.4,14,0.0 +19729,77,13,33,0.0 +19729,70,15,48,0.0 +19729,47,9.5,3,0.0 +19729,39,18,45,0.0 +19729,31,12.5,20,0.0 +19729,57,19.5,40,0.0 +19729,7,30,6,0.0 +19729,3,10,18,0.0 +19729,48,12.75,46,0.0 +19729,27,43.9,6,0.0 +19729,25,14,50,0.0 +19729,50,16.25,46,0.0 +19729,59,55,24,0.0 +19729,6,25,18,0.0 +19729,11,21,32,0.0 +19729,8,40,23,0.0 +19729,15,15.5,28,0.0 +19729,61,28.5,14,0.0 +19729,63,43.9,19,0.0 +19729,35,18,33,0.0 +19729,19,9.2,40,0.0 +19729,23,9,25,0.0 +19729,56,38,49,0.0 +19729,51,53,45,0.0 +19729,43,46,9,0.0 +19729,60,34,32,0.0 +19729,53,32.8,37,0.0 +19729,12,38,13,0.0 +19729,45,9.5,45,0.0 +19729,76,18,2,0.0 +19729,34,14,30,0.0 +19729,69,36,47,0.0 +19729,55,24,16,0.0 +19729,65,21.05,16,0.0 +19729,30,25.89,29,0.0 +19729,26,31.23,8,0.0 +19729,38,263.5,30,0.0 +19729,41,9.65,49,0.0 +19729,66,17,27,0.0 +19729,18,62.5,28,0.0 +19729,42,14,36,0.0 +19729,9,97,31,0.0 +19729,54,7.45,43,0.0 +19729,68,12.5,41,0.0 +19729,36,19,26,0.0 +19729,67,14,44,0.0 +19729,24,4.5,20,0.0 +19729,13,6,21,0.0 +19729,62,49.3,5,0.0 +19729,33,2.5,17,0.0 +19730,35,18,16,0.0 +19730,30,25.89,38,0.0 +19730,47,9.5,6,0.0 +19730,4,22,31,0.0 +19730,15,15.5,36,0.0 +19730,8,40,9,0.0 +19730,14,23.25,34,0.0 +19731,62,49.3,46,0.0 +19731,76,18,12,0.0 +19731,7,30,23,0.0 +19731,59,55,45,0.0 +19731,67,14,9,0.0 +19731,35,18,8,0.0 +19731,65,21.05,19,0.0 +19731,32,32,10,0.0 +19731,63,43.9,24,0.0 +19731,51,53,23,0.0 +19731,72,34.8,10,0.0 +19731,47,9.5,37,0.0 +19731,44,19.45,43,0.0 +19731,19,9.2,25,0.0 +19731,57,19.5,12,0.0 +19732,47,9.5,9,0.0 +19732,28,45.6,25,0.0 +19732,58,13.25,14,0.0 +19732,63,43.9,10,0.0 +19732,41,9.65,10,0.0 +19732,2,19,15,0.0 +19732,54,7.45,34,0.0 +19733,33,2.5,23,0.0 +19733,4,22,20,0.0 +19733,54,7.45,48,0.0 +19733,2,19,49,0.0 +19733,15,15.5,37,0.0 +19733,34,14,6,0.0 +19733,53,32.8,17,0.0 +19733,9,97,5,0.0 +19733,60,34,8,0.0 +19733,42,14,25,0.0 +19733,47,9.5,40,0.0 +19733,67,14,31,0.0 +19733,8,40,8,0.0 +19733,26,31.23,8,0.0 +19733,71,21.5,43,0.0 +19733,5,21.35,44,0.0 +19733,24,4.5,35,0.0 +19733,1,18,41,0.0 +19733,29,123.79,29,0.0 +19733,51,53,41,0.0 +19733,69,36,12,0.0 +19733,61,28.5,23,0.0 +19733,45,9.5,27,0.0 +19733,37,26,9,0.0 +19733,39,18,49,0.0 +19733,68,12.5,42,0.0 +19733,46,12,36,0.0 +19733,74,10,46,0.0 +19733,28,45.6,3,0.0 +19733,66,17,36,0.0 +19733,59,55,14,0.0 +19733,76,18,45,0.0 +19733,70,15,36,0.0 +19733,13,6,32,0.0 +19733,7,30,40,0.0 +19733,17,39,19,0.0 +19733,63,43.9,39,0.0 +19733,35,18,41,0.0 +19733,6,25,31,0.0 +19733,64,33.25,23,0.0 +19733,32,32,4,0.0 +19733,19,9.2,42,0.0 +19733,55,24,28,0.0 +19733,49,20,9,0.0 +19733,56,38,41,0.0 +19733,48,12.75,44,0.0 +19733,41,9.65,13,0.0 +19733,75,7.75,47,0.0 +19733,58,13.25,28,0.0 +19733,52,7,12,0.0 +19733,65,21.05,36,0.0 +19733,20,81,33,0.0 +19733,25,14,40,0.0 +19734,5,21.35,48,0.0 +19734,39,18,49,0.0 +19734,50,16.25,6,0.0 +19734,45,9.5,15,0.0 +19734,46,12,40,0.0 +19734,2,19,9,0.0 +19734,52,7,45,0.0 +19734,69,36,28,0.0 +19734,47,9.5,9,0.0 +19734,65,21.05,17,0.0 +19734,6,25,27,0.0 +19735,77,13,28,0.0 +19735,70,15,22,0.0 +19735,6,25,15,0.0 +19735,39,18,17,0.0 +19735,24,4.5,3,0.0 +19735,2,19,39,0.0 +19735,50,16.25,32,0.0 +19735,13,6,3,0.0 +19735,74,10,13,0.0 +19735,67,14,11,0.0 +19736,50,16.25,21,0.0 +19736,36,19,36,0.0 +19736,1,18,41,0.0 +19736,5,21.35,37,0.0 +19736,20,81,41,0.0 +19736,41,9.65,14,0.0 +19736,70,15,42,0.0 +19736,4,22,1,0.0 +19736,54,7.45,5,0.0 +19736,39,18,47,0.0 +19736,17,39,1,0.0 +19736,6,25,22,0.0 +19736,38,263.5,43,0.0 +19736,27,43.9,18,0.0 +19736,32,32,49,0.0 +19736,16,17.45,29,0.0 +19736,3,10,27,0.0 +19736,14,23.25,6,0.0 +19736,44,19.45,7,0.0 +19736,72,34.8,42,0.0 +19736,65,21.05,17,0.0 +19736,13,6,24,0.0 +19736,53,32.8,31,0.0 +19736,9,97,22,0.0 +19736,51,53,7,0.0 +19736,40,18.4,25,0.0 +19736,34,14,29,0.0 +19736,77,13,26,0.0 +19736,68,12.5,14,0.0 +19736,43,46,29,0.0 +19736,8,40,50,0.0 +19736,48,12.75,16,0.0 +19736,45,9.5,26,0.0 +19736,33,2.5,28,0.0 +19736,67,14,7,0.0 +19737,37,26,48,0.0 +19737,33,2.5,22,0.0 +19737,5,21.35,38,0.0 +19737,53,32.8,23,0.0 +19737,59,55,9,0.0 +19737,7,30,14,0.0 +19737,12,38,29,0.0 +19737,67,14,15,0.0 +19737,74,10,17,0.0 +19737,63,43.9,1,0.0 +19737,29,123.79,23,0.0 +19737,40,18.4,2,0.0 +19737,26,31.23,2,0.0 +19737,24,4.5,21,0.0 +19737,38,263.5,9,0.0 +19737,71,21.5,26,0.0 +19737,25,14,39,0.0 +19737,46,12,29,0.0 +19737,65,21.05,20,0.0 +19737,11,21,3,0.0 +19738,32,32,23,0.0 +19738,25,14,38,0.0 +19738,46,12,13,0.0 +19738,52,7,20,0.0 +19738,67,14,20,0.0 +19738,74,10,13,0.0 +19738,12,38,11,0.0 +19738,40,18.4,29,0.0 +19738,66,17,24,0.0 +19738,24,4.5,33,0.0 +19738,43,46,6,0.0 +19738,33,2.5,43,0.0 +19738,56,38,48,0.0 +19738,54,7.45,49,0.0 +19738,68,12.5,23,0.0 +19738,61,28.5,30,0.0 +19738,6,25,34,0.0 +19738,53,32.8,36,0.0 +19738,39,18,1,0.0 +19738,41,9.65,18,0.0 +19738,23,9,20,0.0 +19738,75,7.75,13,0.0 +19738,30,25.89,43,0.0 +19738,48,12.75,22,0.0 +19738,51,53,27,0.0 +19738,49,20,42,0.0 +19738,8,40,16,0.0 +19738,29,123.79,1,0.0 +19738,47,9.5,34,0.0 +19738,17,39,35,0.0 +19738,26,31.23,11,0.0 +19738,62,49.3,38,0.0 +19738,60,34,24,0.0 +19738,71,21.5,45,0.0 +19738,34,14,36,0.0 +19738,36,19,17,0.0 +19738,76,18,34,0.0 +19738,20,81,4,0.0 +19738,19,9.2,10,0.0 +19738,1,18,13,0.0 +19738,50,16.25,46,0.0 +19738,72,34.8,4,0.0 +19738,5,21.35,19,0.0 +19738,69,36,38,0.0 +19738,65,21.05,23,0.0 +19738,57,19.5,27,0.0 +19738,73,15,7,0.0 +19738,11,21,17,0.0 +19738,35,18,5,0.0 +19738,7,30,47,0.0 +19738,22,21,24,0.0 +19738,64,33.25,19,0.0 +19738,14,23.25,50,0.0 +19738,21,10,6,0.0 +19738,9,97,20,0.0 +19738,42,14,47,0.0 +19739,43,46,32,0.0 +19740,34,14,44,0.0 +19740,75,7.75,30,0.0 +19740,73,15,45,0.0 +19740,36,19,34,0.0 +19740,31,12.5,5,0.0 +19740,3,10,9,0.0 +19740,29,123.79,34,0.0 +19740,26,31.23,8,0.0 +19740,53,32.8,46,0.0 +19740,77,13,2,0.0 +19740,74,10,8,0.0 +19740,39,18,44,0.0 +19740,55,24,16,0.0 +19740,33,2.5,42,0.0 +19740,15,15.5,13,0.0 +19740,56,38,22,0.0 +19740,28,45.6,15,0.0 +19740,32,32,46,0.0 +19740,11,21,6,0.0 +19740,52,7,26,0.0 +19740,68,12.5,17,0.0 +19740,66,17,1,0.0 +19740,35,18,31,0.0 +19740,37,26,2,0.0 +19740,6,25,2,0.0 +19740,40,18.4,20,0.0 +19740,59,55,47,0.0 +19740,69,36,50,0.0 +19740,67,14,25,0.0 +19740,65,21.05,28,0.0 +19740,27,43.9,1,0.0 +19740,4,22,4,0.0 +19740,25,14,8,0.0 +19740,8,40,40,0.0 +19740,60,34,32,0.0 +19740,2,19,48,0.0 +19740,47,9.5,27,0.0 +19740,9,97,34,0.0 +19740,45,9.5,30,0.0 +19740,76,18,33,0.0 +19741,34,14,4,0.0 +19741,60,34,12,0.0 +19741,50,16.25,37,0.0 +19741,53,32.8,18,0.0 +19741,26,31.23,18,0.0 +19741,47,9.5,1,0.0 +19741,28,45.6,8,0.0 +19741,40,18.4,17,0.0 +19742,74,10,8,0.0 +19742,9,97,19,0.0 +19742,16,17.45,27,0.0 +19742,54,7.45,22,0.0 +19742,36,19,6,0.0 +19742,21,10,24,0.0 +19742,20,81,5,0.0 +19742,65,21.05,50,0.0 +19742,35,18,5,0.0 +19742,18,62.5,1,0.0 +19742,61,28.5,14,0.0 +19742,12,38,43,0.0 +19742,55,24,5,0.0 +19742,34,14,50,0.0 +19742,15,15.5,20,0.0 +19742,42,14,5,0.0 +19742,41,9.65,31,0.0 +19742,7,30,8,0.0 +19742,77,13,50,0.0 +19743,43,46,11,0.0 +19743,33,2.5,39,0.0 +19743,19,9.2,30,0.0 +19743,24,4.5,25,0.0 +19744,63,43.9,7,0.0 +19744,48,12.75,45,0.0 +19744,64,33.25,30,0.0 +19744,31,12.5,10,0.0 +19744,2,19,44,0.0 +19744,51,53,20,0.0 +19744,28,45.6,2,0.0 +19744,66,17,21,0.0 +19744,59,55,18,0.0 +19744,54,7.45,50,0.0 +19744,71,21.5,16,0.0 +19744,7,30,22,0.0 +19744,42,14,11,0.0 +19744,11,21,1,0.0 +19744,1,18,27,0.0 +19744,19,9.2,47,0.0 +19744,40,18.4,19,0.0 +19744,24,4.5,29,0.0 +19744,36,19,41,0.0 +19744,35,18,42,0.0 +19744,32,32,50,0.0 +19744,46,12,31,0.0 +19744,52,7,25,0.0 +19744,21,10,44,0.0 +19744,76,18,21,0.0 +19744,9,97,47,0.0 +19744,30,25.89,20,0.0 +19744,55,24,14,0.0 +19744,25,14,36,0.0 +19744,26,31.23,38,0.0 +19744,16,17.45,35,0.0 +19744,47,9.5,22,0.0 +19744,15,15.5,35,0.0 +19744,74,10,38,0.0 +19744,3,10,3,0.0 +19744,43,46,17,0.0 +19744,34,14,21,0.0 +19744,75,7.75,32,0.0 +19744,45,9.5,14,0.0 +19744,56,38,49,0.0 +19744,61,28.5,40,0.0 +19744,73,15,11,0.0 +19744,18,62.5,44,0.0 +19744,69,36,44,0.0 +19744,13,6,20,0.0 +19744,77,13,39,0.0 +19744,12,38,13,0.0 +19744,27,43.9,8,0.0 +19744,4,22,22,0.0 +19744,33,2.5,30,0.0 +19745,52,7,7,0.0 +19745,7,30,6,0.0 +19745,40,18.4,44,0.0 +19745,26,31.23,32,0.0 +19745,61,28.5,35,0.0 +19745,29,123.79,25,0.0 +19745,28,45.6,13,0.0 +19745,9,97,31,0.0 +19745,44,19.45,9,0.0 +19745,56,38,39,0.0 +19745,36,19,18,0.0 +19745,10,31,13,0.0 +19745,51,53,36,0.0 +19745,37,26,7,0.0 +19745,30,25.89,1,0.0 +19745,68,12.5,46,0.0 +19745,77,13,12,0.0 +19745,74,10,20,0.0 +19745,20,81,35,0.0 +19745,8,40,1,0.0 +19745,15,15.5,6,0.0 +19745,45,9.5,43,0.0 +19745,72,34.8,44,0.0 +19745,66,17,34,0.0 +19745,14,23.25,17,0.0 +19745,5,21.35,35,0.0 +19745,75,7.75,33,0.0 +19745,19,9.2,4,0.0 +19745,31,12.5,23,0.0 +19745,3,10,8,0.0 +19745,73,15,32,0.0 +19745,32,32,29,0.0 +19745,11,21,21,0.0 +19745,17,39,9,0.0 +19745,22,21,47,0.0 +19745,58,13.25,31,0.0 +19745,67,14,34,0.0 +19745,60,34,45,0.0 +19745,53,32.8,27,0.0 +19745,2,19,15,0.0 +19745,18,62.5,28,0.0 +19745,33,2.5,34,0.0 +19745,63,43.9,19,0.0 +19745,35,18,19,0.0 +19745,57,19.5,18,0.0 +19745,49,20,26,0.0 +19745,21,10,33,0.0 +19745,6,25,15,0.0 +19745,24,4.5,44,0.0 +19745,65,21.05,13,0.0 +19745,25,14,27,0.0 +19745,55,24,28,0.0 +19745,59,55,46,0.0 +19745,39,18,4,0.0 +19745,41,9.65,13,0.0 +19745,50,16.25,9,0.0 +19745,48,12.75,27,0.0 +19745,70,15,2,0.0 +19745,46,12,14,0.0 +19745,43,46,36,0.0 +19745,38,263.5,13,0.0 +19746,47,9.5,5,0.0 +19746,2,19,8,0.0 +19746,29,123.79,1,0.0 +19746,25,14,19,0.0 +19746,12,38,15,0.0 +19746,32,32,35,0.0 +19746,3,10,37,0.0 +19746,18,62.5,18,0.0 +19746,21,10,46,0.0 +19746,67,14,26,0.0 +19746,75,7.75,15,0.0 +19746,38,263.5,20,0.0 +19746,64,33.25,37,0.0 +19746,54,7.45,26,0.0 +19746,10,31,29,0.0 +19746,6,25,49,0.0 +19746,68,12.5,6,0.0 +19746,61,28.5,9,0.0 +19746,69,36,37,0.0 +19746,7,30,15,0.0 +19746,4,22,37,0.0 +19746,45,9.5,50,0.0 +19746,30,25.89,39,0.0 +19746,60,34,47,0.0 +19746,72,34.8,39,0.0 +19746,11,21,20,0.0 +19746,65,21.05,12,0.0 +19746,62,49.3,26,0.0 +19746,55,24,43,0.0 +19746,33,2.5,27,0.0 +19746,27,43.9,33,0.0 +19746,24,4.5,27,0.0 +19746,43,46,43,0.0 +19746,63,43.9,2,0.0 +19746,46,12,32,0.0 +19746,37,26,17,0.0 +19746,34,14,4,0.0 +19746,50,16.25,8,0.0 +19746,76,18,5,0.0 +19746,13,6,12,0.0 +19746,52,7,46,0.0 +19746,56,38,43,0.0 +19746,59,55,33,0.0 +19746,40,18.4,19,0.0 +19746,49,20,12,0.0 +19746,5,21.35,23,0.0 +19746,20,81,28,0.0 +19746,17,39,16,0.0 +19746,36,19,2,0.0 +19746,8,40,19,0.0 +19746,9,97,26,0.0 +19746,74,10,41,0.0 +19746,73,15,4,0.0 +19746,26,31.23,6,0.0 +19746,35,18,41,0.0 +19746,15,15.5,41,0.0 +19746,1,18,13,0.0 +19746,44,19.45,15,0.0 +19746,42,14,36,0.0 +19746,58,13.25,35,0.0 +19746,77,13,17,0.0 +19746,53,32.8,7,0.0 +19746,66,17,14,0.0 +19746,57,19.5,24,0.0 +19746,31,12.5,6,0.0 +19746,23,9,33,0.0 +19746,39,18,13,0.0 +19746,19,9.2,47,0.0 +19746,71,21.5,32,0.0 +19747,69,36,18,0.0 +19747,55,24,32,0.0 +19747,77,13,5,0.0 +19747,7,30,27,0.0 +19747,6,25,33,0.0 +19747,49,20,39,0.0 +19747,65,21.05,38,0.0 +19747,36,19,4,0.0 +19747,40,18.4,41,0.0 +19747,12,38,27,0.0 +19747,30,25.89,27,0.0 +19747,20,81,29,0.0 +19747,28,45.6,32,0.0 +19747,71,21.5,43,0.0 +19747,62,49.3,9,0.0 +19747,19,9.2,37,0.0 +19747,47,9.5,44,0.0 +19747,5,21.35,11,0.0 +19747,51,53,49,0.0 +19747,14,23.25,25,0.0 +19747,63,43.9,16,0.0 +19747,10,31,36,0.0 +19747,21,10,9,0.0 +19747,24,4.5,46,0.0 +19747,16,17.45,47,0.0 +19747,67,14,15,0.0 +19747,59,55,8,0.0 +19747,29,123.79,23,0.0 +19747,52,7,49,0.0 +19747,26,31.23,32,0.0 +19747,8,40,25,0.0 +19747,15,15.5,31,0.0 +19747,18,62.5,29,0.0 +19747,23,9,1,0.0 +19747,43,46,9,0.0 +19747,68,12.5,1,0.0 +19747,35,18,40,0.0 +19747,45,9.5,19,0.0 +19747,13,6,24,0.0 +19747,32,32,46,0.0 +19747,9,97,5,0.0 +19747,50,16.25,33,0.0 +19747,3,10,37,0.0 +19747,22,21,36,0.0 +19747,11,21,27,0.0 +19747,33,2.5,31,0.0 +19747,42,14,27,0.0 +19747,1,18,21,0.0 +19747,48,12.75,6,0.0 +19747,56,38,35,0.0 +19747,37,26,47,0.0 +19747,73,15,6,0.0 +19747,46,12,9,0.0 +19747,58,13.25,9,0.0 +19747,38,263.5,13,0.0 +19748,73,15,3,0.0 +19748,75,7.75,39,0.0 +19748,68,12.5,28,0.0 +19748,76,18,50,0.0 +19748,6,25,36,0.0 +19748,29,123.79,35,0.0 +19748,36,19,5,0.0 +19748,13,6,36,0.0 +19748,60,34,17,0.0 +19748,23,9,35,0.0 +19748,74,10,10,0.0 +19748,18,62.5,17,0.0 +19748,9,97,37,0.0 +19748,34,14,40,0.0 +19748,48,12.75,21,0.0 +19748,38,263.5,19,0.0 +19748,35,18,17,0.0 +19748,11,21,30,0.0 +19748,20,81,6,0.0 +19748,56,38,23,0.0 +19748,65,21.05,31,0.0 +19748,66,17,9,0.0 +19748,15,15.5,11,0.0 +19748,39,18,8,0.0 +19748,64,33.25,9,0.0 +19748,40,18.4,12,0.0 +19748,61,28.5,42,0.0 +19749,53,32.8,14,0.0 +19749,66,17,25,0.0 +19749,52,7,42,0.0 +19749,35,18,31,0.0 +19749,73,15,20,0.0 +19749,62,49.3,28,0.0 +19749,69,36,18,0.0 +19749,41,9.65,20,0.0 +19749,57,19.5,44,0.0 +19749,54,7.45,45,0.0 +19749,46,12,35,0.0 +19749,72,34.8,3,0.0 +19749,39,18,30,0.0 +19749,31,12.5,24,0.0 +19749,4,22,19,0.0 +19749,45,9.5,20,0.0 +19749,14,23.25,4,0.0 +19749,3,10,3,0.0 +19749,22,21,35,0.0 +19749,19,9.2,49,0.0 +19749,34,14,13,0.0 +19749,40,18.4,26,0.0 +19749,11,21,10,0.0 +19749,27,43.9,31,0.0 +19749,12,38,46,0.0 +19749,23,9,30,0.0 +19749,33,2.5,46,0.0 +19749,61,28.5,11,0.0 +19749,30,25.89,20,0.0 +19749,77,13,12,0.0 +19749,20,81,10,0.0 +19749,10,31,39,0.0 +19749,28,45.6,15,0.0 +19749,15,15.5,24,0.0 +19749,68,12.5,47,0.0 +19749,63,43.9,29,0.0 +19749,17,39,40,0.0 +19749,5,21.35,16,0.0 +19749,25,14,24,0.0 +19749,64,33.25,39,0.0 +19749,51,53,36,0.0 +19749,26,31.23,37,0.0 +19749,13,6,21,0.0 +19749,74,10,43,0.0 +19749,47,9.5,34,0.0 +19749,9,97,6,0.0 +19749,43,46,21,0.0 +19749,38,263.5,49,0.0 +19749,60,34,6,0.0 +19749,55,24,44,0.0 +19749,50,16.25,46,0.0 +19749,1,18,36,0.0 +19749,42,14,42,0.0 +19749,58,13.25,18,0.0 +19749,70,15,15,0.0 +19749,29,123.79,50,0.0 +19749,75,7.75,2,0.0 +19749,65,21.05,4,0.0 +19749,21,10,39,0.0 +19750,54,7.45,50,0.0 +19750,45,9.5,5,0.0 +19750,63,43.9,8,0.0 +19750,24,4.5,42,0.0 +19750,57,19.5,24,0.0 +19750,7,30,30,0.0 +19750,69,36,37,0.0 +19750,5,21.35,2,0.0 +19750,16,17.45,11,0.0 +19750,64,33.25,11,0.0 +19750,59,55,33,0.0 +19750,9,97,18,0.0 +19750,72,34.8,13,0.0 +19750,23,9,15,0.0 +19750,14,23.25,40,0.0 +19750,35,18,39,0.0 +19750,75,7.75,28,0.0 +19750,76,18,37,0.0 +19750,6,25,11,0.0 +19750,17,39,36,0.0 +19751,13,6,50,0.0 +19751,73,15,47,0.0 +19751,59,55,19,0.0 +19751,41,9.65,1,0.0 +19751,21,10,36,0.0 +19751,60,34,24,0.0 +19751,65,21.05,11,0.0 +19751,12,38,34,0.0 +19751,37,26,35,0.0 +19751,8,40,48,0.0 +19751,4,22,40,0.0 +19751,5,21.35,49,0.0 +19751,26,31.23,31,0.0 +19751,25,14,38,0.0 +19751,11,21,30,0.0 +19751,71,21.5,21,0.0 +19751,31,12.5,9,0.0 +19751,6,25,29,0.0 +19751,40,18.4,27,0.0 +19751,2,19,30,0.0 +19751,67,14,21,0.0 +19751,33,2.5,24,0.0 +19751,10,31,15,0.0 +19751,57,19.5,5,0.0 +19751,56,38,26,0.0 +19751,66,17,41,0.0 +19751,38,263.5,32,0.0 +19751,46,12,30,0.0 +19751,76,18,33,0.0 +19751,22,21,16,0.0 +19751,53,32.8,46,0.0 +19751,9,97,49,0.0 +19751,63,43.9,1,0.0 +19751,17,39,1,0.0 +19751,29,123.79,1,0.0 +19751,23,9,12,0.0 +19751,75,7.75,20,0.0 +19751,7,30,1,0.0 +19751,49,20,32,0.0 +19751,54,7.45,19,0.0 +19751,52,7,7,0.0 +19751,34,14,27,0.0 +19751,51,53,28,0.0 +19751,45,9.5,22,0.0 +19751,50,16.25,26,0.0 +19751,35,18,10,0.0 +19751,74,10,49,0.0 +19751,48,12.75,48,0.0 +19751,47,9.5,21,0.0 +19751,19,9.2,39,0.0 +19751,44,19.45,28,0.0 +19751,24,4.5,30,0.0 +19751,18,62.5,19,0.0 +19751,69,36,29,0.0 +19751,62,49.3,38,0.0 +19751,39,18,43,0.0 +19751,27,43.9,16,0.0 +19751,16,17.45,35,0.0 +19751,77,13,40,0.0 +19751,70,15,40,0.0 +19751,15,15.5,47,0.0 +19751,28,45.6,12,0.0 +19751,61,28.5,39,0.0 +19751,20,81,25,0.0 +19751,1,18,14,0.0 +19751,55,24,28,0.0 +19751,43,46,36,0.0 +19751,30,25.89,13,0.0 +19751,32,32,36,0.0 +19751,3,10,1,0.0 +19751,14,23.25,14,0.0 +19752,33,2.5,35,0.0 +19752,72,34.8,41,0.0 +19752,40,18.4,15,0.0 +19752,77,13,16,0.0 +19752,56,38,19,0.0 +19752,42,14,24,0.0 +19752,9,97,38,0.0 +19752,16,17.45,40,0.0 +19752,76,18,4,0.0 +19752,5,21.35,29,0.0 +19752,12,38,50,0.0 +19752,43,46,48,0.0 +19752,8,40,17,0.0 +19752,29,123.79,11,0.0 +19752,68,12.5,40,0.0 +19752,4,22,34,0.0 +19752,30,25.89,28,0.0 +19752,46,12,34,0.0 +19752,52,7,42,0.0 +19752,70,15,15,0.0 +19752,48,12.75,49,0.0 +19752,57,19.5,12,0.0 +19752,51,53,44,0.0 +19752,69,36,15,0.0 +19752,47,9.5,29,0.0 +19752,60,34,22,0.0 +19752,31,12.5,1,0.0 +19752,15,15.5,23,0.0 +19752,71,21.5,27,0.0 +19752,34,14,22,0.0 +19752,3,10,30,0.0 +19752,74,10,9,0.0 +19752,17,39,14,0.0 +19752,75,7.75,49,0.0 +19752,36,19,10,0.0 +19752,67,14,46,0.0 +19752,50,16.25,11,0.0 +19752,35,18,13,0.0 +19752,18,62.5,49,0.0 +19752,14,23.25,8,0.0 +19752,22,21,27,0.0 +19752,45,9.5,11,0.0 +19752,21,10,31,0.0 +19752,39,18,34,0.0 +19752,54,7.45,8,0.0 +19752,64,33.25,14,0.0 +19753,55,24,40,0.0 +19753,65,21.05,3,0.0 +19753,53,32.8,41,0.0 +19753,57,19.5,6,0.0 +19753,9,97,34,0.0 +19753,5,21.35,3,0.0 +19753,73,15,42,0.0 +19753,31,12.5,50,0.0 +19753,42,14,16,0.0 +19753,56,38,29,0.0 +19753,19,9.2,10,0.0 +19753,74,10,19,0.0 +19754,2,19,28,0.0 +19754,53,32.8,12,0.0 +19754,32,32,10,0.0 +19754,37,26,3,0.0 +19754,3,10,29,0.0 +19754,23,9,4,0.0 +19754,38,263.5,43,0.0 +19754,15,15.5,35,0.0 +19754,35,18,16,0.0 +19754,13,6,19,0.0 +19754,18,62.5,43,0.0 +19754,11,21,31,0.0 +19754,19,9.2,35,0.0 +19754,34,14,12,0.0 +19754,62,49.3,38,0.0 +19754,57,19.5,21,0.0 +19754,60,34,31,0.0 +19754,63,43.9,15,0.0 +19754,44,19.45,47,0.0 +19754,39,18,8,0.0 +19754,65,21.05,39,0.0 +19754,28,45.6,50,0.0 +19754,42,14,45,0.0 +19754,26,31.23,12,0.0 +19754,75,7.75,40,0.0 +19754,73,15,39,0.0 +19754,43,46,48,0.0 +19754,27,43.9,18,0.0 +19754,70,15,37,0.0 +19754,50,16.25,20,0.0 +19754,16,17.45,19,0.0 +19754,29,123.79,18,0.0 +19754,1,18,48,0.0 +19754,61,28.5,21,0.0 +19755,45,9.5,21,0.0 +19755,27,43.9,35,0.0 +19755,65,21.05,44,0.0 +19755,10,31,29,0.0 +19755,43,46,7,0.0 +19755,46,12,35,0.0 +19755,72,34.8,26,0.0 +19755,74,10,28,0.0 +19755,8,40,37,0.0 +19755,19,9.2,42,0.0 +19755,60,34,17,0.0 +19755,48,12.75,46,0.0 +19755,7,30,45,0.0 +19755,23,9,22,0.0 +19755,28,45.6,15,0.0 +19756,30,25.89,18,0.0 +19756,27,43.9,7,0.0 +19756,5,21.35,22,0.0 +19756,57,19.5,48,0.0 +19757,57,19.5,24,0.0 +19757,38,263.5,28,0.0 +19757,55,24,22,0.0 +19757,64,33.25,18,0.0 +19757,16,17.45,5,0.0 +19757,37,26,5,0.0 +19757,17,39,38,0.0 +19757,52,7,50,0.0 +19757,34,14,6,0.0 +19757,71,21.5,23,0.0 +19757,59,55,46,0.0 +19757,65,21.05,33,0.0 +19757,46,12,40,0.0 +19757,15,15.5,2,0.0 +19757,56,38,28,0.0 +19757,45,9.5,4,0.0 +19757,66,17,15,0.0 +19757,23,9,18,0.0 +19757,47,9.5,14,0.0 +19757,32,32,24,0.0 +19757,61,28.5,42,0.0 +19757,6,25,23,0.0 +19757,72,34.8,24,0.0 +19757,24,4.5,2,0.0 +19757,10,31,33,0.0 +19757,19,9.2,44,0.0 +19757,2,19,41,0.0 +19757,11,21,11,0.0 +19757,29,123.79,20,0.0 +19757,33,2.5,17,0.0 +19757,14,23.25,4,0.0 +19757,75,7.75,30,0.0 +19757,54,7.45,21,0.0 +19757,27,43.9,5,0.0 +19757,39,18,49,0.0 +19757,42,14,21,0.0 +19757,49,20,45,0.0 +19757,3,10,48,0.0 +19757,7,30,42,0.0 +19757,70,15,36,0.0 +19757,1,18,34,0.0 +19757,26,31.23,4,0.0 +19757,36,19,37,0.0 +19757,53,32.8,18,0.0 +19757,25,14,28,0.0 +19757,35,18,3,0.0 +19757,31,12.5,42,0.0 +19757,44,19.45,28,0.0 +19757,12,38,7,0.0 +19757,58,13.25,18,0.0 +19757,63,43.9,24,0.0 +19757,43,46,42,0.0 +19757,69,36,34,0.0 +19757,76,18,25,0.0 +19757,73,15,38,0.0 +19757,13,6,31,0.0 +19757,77,13,41,0.0 +19757,62,49.3,4,0.0 +19757,20,81,3,0.0 +19757,68,12.5,8,0.0 +19758,36,19,7,0.0 +19758,74,10,11,0.0 +19758,5,21.35,24,0.0 +19758,19,9.2,35,0.0 +19758,61,28.5,22,0.0 +19758,7,30,48,0.0 +19758,8,40,10,0.0 +19758,75,7.75,15,0.0 +19758,59,55,3,0.0 +19758,53,32.8,20,0.0 +19758,71,21.5,38,0.0 +19758,68,12.5,39,0.0 +19758,47,9.5,15,0.0 +19758,35,18,49,0.0 +19758,32,32,39,0.0 +19758,65,21.05,48,0.0 +19758,62,49.3,47,0.0 +19758,11,21,8,0.0 +19758,25,14,30,0.0 +19758,76,18,2,0.0 +19758,14,23.25,30,0.0 +19758,10,31,3,0.0 +19758,64,33.25,37,0.0 +19758,41,9.65,47,0.0 +19758,60,34,5,0.0 +19758,24,4.5,16,0.0 +19758,73,15,29,0.0 +19758,2,19,45,0.0 +19758,43,46,16,0.0 +19758,69,36,11,0.0 +19758,3,10,28,0.0 +19758,55,24,35,0.0 +19758,38,263.5,46,0.0 +19758,17,39,25,0.0 +19758,20,81,10,0.0 +19758,27,43.9,16,0.0 +19758,33,2.5,50,0.0 +19758,40,18.4,2,0.0 +19758,31,12.5,15,0.0 +19758,57,19.5,42,0.0 +19758,18,62.5,43,0.0 +19758,30,25.89,33,0.0 +19758,66,17,20,0.0 +19758,48,12.75,20,0.0 +19758,9,97,17,0.0 +19758,15,15.5,14,0.0 +19758,56,38,12,0.0 +19758,28,45.6,22,0.0 +19758,16,17.45,19,0.0 +19758,46,12,12,0.0 +19758,54,7.45,35,0.0 +19758,63,43.9,12,0.0 +19758,50,16.25,13,0.0 +19758,39,18,39,0.0 +19758,26,31.23,41,0.0 +19758,42,14,50,0.0 +19758,21,10,19,0.0 +19758,67,14,19,0.0 +19758,70,15,10,0.0 +19758,49,20,33,0.0 +19758,6,25,10,0.0 +19758,12,38,39,0.0 +19759,53,32.8,12,0.0 +19759,37,26,19,0.0 +19759,18,62.5,5,0.0 +19759,25,14,19,0.0 +19759,29,123.79,3,0.0 +19759,41,9.65,37,0.0 +19759,19,9.2,32,0.0 +19759,30,25.89,42,0.0 +19759,65,21.05,41,0.0 +19759,16,17.45,40,0.0 +19759,4,22,32,0.0 +19759,68,12.5,41,0.0 +19759,57,19.5,4,0.0 +19759,36,19,18,0.0 +19759,45,9.5,18,0.0 +19759,7,30,33,0.0 +19759,72,34.8,23,0.0 +19759,56,38,10,0.0 +19759,63,43.9,46,0.0 +19759,5,21.35,7,0.0 +19759,35,18,28,0.0 +19759,73,15,32,0.0 +19759,2,19,3,0.0 +19759,52,7,40,0.0 +19759,34,14,2,0.0 +19759,10,31,19,0.0 +19759,8,40,41,0.0 +19759,60,34,47,0.0 +19759,58,13.25,33,0.0 +19759,48,12.75,14,0.0 +19759,32,32,36,0.0 +19759,76,18,48,0.0 +19759,50,16.25,29,0.0 +19759,1,18,2,0.0 +19759,39,18,15,0.0 +19759,71,21.5,20,0.0 +19760,1,18,14,0.0 +19760,9,97,13,0.0 +19760,18,62.5,2,0.0 +19760,47,9.5,2,0.0 +19760,69,36,23,0.0 +19760,63,43.9,10,0.0 +19760,76,18,37,0.0 +19760,40,18.4,7,0.0 +19760,71,21.5,48,0.0 +19760,75,7.75,45,0.0 +19760,49,20,39,0.0 +19760,64,33.25,19,0.0 +19760,66,17,4,0.0 +19760,27,43.9,27,0.0 +19760,67,14,50,0.0 +19760,19,9.2,21,0.0 +19760,25,14,30,0.0 +19760,24,4.5,18,0.0 +19760,50,16.25,11,0.0 +19760,8,40,47,0.0 +19760,7,30,8,0.0 +19760,38,263.5,1,0.0 +19760,32,32,44,0.0 +19760,70,15,13,0.0 +19760,41,9.65,42,0.0 +19760,44,19.45,47,0.0 +19760,6,25,29,0.0 +19761,74,10,35,0.0 +19761,30,25.89,9,0.0 +19761,2,19,23,0.0 +19761,72,34.8,16,0.0 +19761,42,14,10,0.0 +19761,1,18,30,0.0 +19761,53,32.8,39,0.0 +19761,16,17.45,9,0.0 +19761,77,13,2,0.0 +19761,45,9.5,16,0.0 +19761,68,12.5,50,0.0 +19761,18,62.5,32,0.0 +19761,69,36,11,0.0 +19761,10,31,39,0.0 +19761,67,14,46,0.0 +19761,17,39,1,0.0 +19761,58,13.25,43,0.0 +19761,14,23.25,2,0.0 +19761,35,18,5,0.0 +19761,48,12.75,10,0.0 +19761,56,38,14,0.0 +19761,21,10,20,0.0 +19761,31,12.5,4,0.0 +19761,71,21.5,14,0.0 +19761,63,43.9,38,0.0 +19761,40,18.4,26,0.0 +19761,50,16.25,43,0.0 +19761,29,123.79,21,0.0 +19761,41,9.65,50,0.0 +19761,61,28.5,44,0.0 +19761,25,14,11,0.0 +19761,73,15,16,0.0 +19761,4,22,4,0.0 +19761,46,12,38,0.0 +19761,66,17,11,0.0 +19761,36,19,38,0.0 +19761,59,55,12,0.0 +19761,65,21.05,35,0.0 +19761,76,18,12,0.0 +19761,13,6,41,0.0 +19761,39,18,8,0.0 +19761,34,14,14,0.0 +19761,55,24,12,0.0 +19761,3,10,25,0.0 +19761,75,7.75,6,0.0 +19761,62,49.3,5,0.0 +19761,12,38,2,0.0 +19761,47,9.5,8,0.0 +19761,19,9.2,8,0.0 +19761,5,21.35,19,0.0 +19761,28,45.6,40,0.0 +19761,15,15.5,37,0.0 +19761,33,2.5,27,0.0 +19761,60,34,24,0.0 +19761,54,7.45,47,0.0 +19761,38,263.5,17,0.0 +19761,57,19.5,14,0.0 +19761,22,21,42,0.0 +19761,11,21,21,0.0 +19761,6,25,18,0.0 +19761,70,15,36,0.0 +19761,20,81,26,0.0 +19761,27,43.9,42,0.0 +19761,8,40,1,0.0 +19761,32,32,35,0.0 +19761,26,31.23,41,0.0 +19761,52,7,26,0.0 +19762,5,21.35,37,0.0 +19762,43,46,37,0.0 +19762,50,16.25,36,0.0 +19762,58,13.25,19,0.0 +19762,13,6,1,0.0 +19762,23,9,48,0.0 +19762,9,97,4,0.0 +19762,27,43.9,21,0.0 +19762,37,26,43,0.0 +19762,3,10,38,0.0 +19762,45,9.5,29,0.0 +19762,54,7.45,26,0.0 +19762,56,38,15,0.0 +19762,72,34.8,32,0.0 +19762,61,28.5,40,0.0 +19762,10,31,7,0.0 +19762,44,19.45,20,0.0 +19762,11,21,20,0.0 +19762,69,36,35,0.0 +19762,1,18,6,0.0 +19762,17,39,45,0.0 +19762,38,263.5,4,0.0 +19762,28,45.6,40,0.0 +19762,35,18,35,0.0 +19762,70,15,45,0.0 +19762,62,49.3,30,0.0 +19762,29,123.79,11,0.0 +19762,51,53,21,0.0 +19762,16,17.45,43,0.0 +19762,55,24,4,0.0 +19762,63,43.9,19,0.0 +19762,59,55,33,0.0 +19762,12,38,9,0.0 +19762,26,31.23,6,0.0 +19762,14,23.25,39,0.0 +19762,31,12.5,45,0.0 +19762,33,2.5,11,0.0 +19762,75,7.75,32,0.0 +19762,40,18.4,22,0.0 +19762,15,15.5,28,0.0 +19762,22,21,37,0.0 +19762,60,34,49,0.0 +19762,41,9.65,36,0.0 +19762,39,18,43,0.0 +19762,66,17,9,0.0 +19762,77,13,16,0.0 +19762,48,12.75,4,0.0 +19762,74,10,16,0.0 +19762,7,30,9,0.0 +19762,52,7,24,0.0 +19762,30,25.89,46,0.0 +19762,34,14,45,0.0 +19762,19,9.2,10,0.0 +19762,20,81,3,0.0 +19762,25,14,35,0.0 +19762,32,32,48,0.0 +19762,73,15,5,0.0 +19762,67,14,45,0.0 +19762,2,19,8,0.0 +19762,42,14,48,0.0 +19762,36,19,25,0.0 +19762,46,12,42,0.0 +19762,53,32.8,11,0.0 +19762,64,33.25,9,0.0 +19762,68,12.5,49,0.0 +19762,8,40,26,0.0 +19762,4,22,8,0.0 +19762,18,62.5,7,0.0 +19762,57,19.5,17,0.0 +19762,76,18,1,0.0 +19762,6,25,25,0.0 +19762,24,4.5,2,0.0 +19762,49,20,40,0.0 +19762,47,9.5,9,0.0 +19763,29,123.79,12,0.0 +19763,7,30,40,0.0 +19763,55,24,49,0.0 +19763,72,34.8,11,0.0 +19763,1,18,17,0.0 +19763,43,46,42,0.0 +19763,15,15.5,46,0.0 +19763,19,9.2,7,0.0 +19763,41,9.65,44,0.0 +19763,2,19,46,0.0 +19763,48,12.75,46,0.0 +19763,28,45.6,47,0.0 +19763,20,81,28,0.0 +19763,64,33.25,5,0.0 +19763,33,2.5,8,0.0 +19763,25,14,27,0.0 +19763,77,13,13,0.0 +19763,26,31.23,40,0.0 +19763,50,16.25,4,0.0 +19763,42,14,42,0.0 +19763,40,18.4,30,0.0 +19763,39,18,11,0.0 +19763,73,15,28,0.0 +19763,13,6,50,0.0 +19763,62,49.3,11,0.0 +19763,46,12,17,0.0 +19763,6,25,13,0.0 +19763,17,39,5,0.0 +19763,70,15,12,0.0 +19763,57,19.5,14,0.0 +19763,44,19.45,35,0.0 +19763,71,21.5,38,0.0 +19763,63,43.9,1,0.0 +19763,75,7.75,27,0.0 +19763,45,9.5,25,0.0 +19763,38,263.5,23,0.0 +19763,69,36,37,0.0 +19763,11,21,24,0.0 +19763,66,17,6,0.0 +19763,10,31,14,0.0 +19763,61,28.5,12,0.0 +19763,67,14,10,0.0 +19763,27,43.9,6,0.0 +19763,23,9,48,0.0 +19763,54,7.45,4,0.0 +19763,52,7,33,0.0 +19763,60,34,1,0.0 +19763,32,32,34,0.0 +19763,12,38,47,0.0 +19763,16,17.45,16,0.0 +19763,21,10,49,0.0 +19763,31,12.5,5,0.0 +19763,14,23.25,43,0.0 +19764,3,10,40,0.0 +19764,32,32,30,0.0 +19764,28,45.6,10,0.0 +19764,15,15.5,30,0.0 +19764,54,7.45,30,0.0 +19764,64,33.25,32,0.0 +19764,1,18,14,0.0 +19764,16,17.45,44,0.0 +19764,76,18,13,0.0 +19764,41,9.65,17,0.0 +19764,33,2.5,27,0.0 +19764,21,10,48,0.0 +19764,68,12.5,14,0.0 +19764,11,21,31,0.0 +19764,22,21,30,0.0 +19764,24,4.5,47,0.0 +19764,51,53,34,0.0 +19764,71,21.5,31,0.0 +19764,2,19,39,0.0 +19764,59,55,4,0.0 +19764,45,9.5,21,0.0 +19764,34,14,7,0.0 +19764,62,49.3,13,0.0 +19764,42,14,25,0.0 +19764,31,12.5,9,0.0 +19764,4,22,12,0.0 +19764,14,23.25,17,0.0 +19764,9,97,27,0.0 +19764,35,18,22,0.0 +19764,7,30,10,0.0 +19764,5,21.35,35,0.0 +19764,39,18,41,0.0 +19764,53,32.8,42,0.0 +19764,12,38,3,0.0 +19764,37,26,27,0.0 +19764,50,16.25,33,0.0 +19764,29,123.79,40,0.0 +19764,74,10,10,0.0 +19764,55,24,20,0.0 +19764,67,14,42,0.0 +19764,36,19,46,0.0 +19764,30,25.89,43,0.0 +19764,52,7,34,0.0 +19764,40,18.4,6,0.0 +19764,48,12.75,4,0.0 +19764,18,62.5,17,0.0 +19764,26,31.23,14,0.0 +19764,49,20,28,0.0 +19764,58,13.25,11,0.0 +19764,65,21.05,2,0.0 +19764,57,19.5,44,0.0 +19764,38,263.5,35,0.0 +19764,27,43.9,12,0.0 +19764,23,9,16,0.0 +19764,70,15,19,0.0 +19764,43,46,2,0.0 +19764,47,9.5,9,0.0 +19764,6,25,22,0.0 +19764,20,81,4,0.0 +19764,73,15,25,0.0 +19764,69,36,38,0.0 +19764,56,38,36,0.0 +19764,77,13,2,0.0 +19764,17,39,36,0.0 +19764,60,34,1,0.0 +19765,1,18,42,0.0 +19765,13,6,7,0.0 +19765,71,21.5,40,0.0 +19765,15,15.5,41,0.0 +19765,12,38,2,0.0 +19765,58,13.25,27,0.0 +19765,64,33.25,32,0.0 +19765,6,25,42,0.0 +19765,45,9.5,48,0.0 +19765,34,14,6,0.0 +19765,37,26,1,0.0 +19765,43,46,13,0.0 +19765,28,45.6,36,0.0 +19765,27,43.9,11,0.0 +19765,19,9.2,43,0.0 +19765,39,18,29,0.0 +19765,76,18,23,0.0 +19765,32,32,29,0.0 +19765,35,18,44,0.0 +19765,17,39,9,0.0 +19765,31,12.5,13,0.0 +19765,47,9.5,31,0.0 +19765,21,10,45,0.0 +19765,22,21,9,0.0 +19765,9,97,27,0.0 +19765,57,19.5,14,0.0 +19765,29,123.79,32,0.0 +19765,52,7,33,0.0 +19765,24,4.5,17,0.0 +19765,77,13,21,0.0 +19765,48,12.75,1,0.0 +19765,14,23.25,6,0.0 +19765,10,31,4,0.0 +19765,23,9,2,0.0 +19765,16,17.45,45,0.0 +19765,69,36,9,0.0 +19765,26,31.23,34,0.0 +19765,54,7.45,26,0.0 +19765,20,81,13,0.0 +19765,50,16.25,18,0.0 +19765,18,62.5,4,0.0 +19765,72,34.8,45,0.0 +19765,49,20,50,0.0 +19765,46,12,2,0.0 +19765,66,17,24,0.0 +19765,30,25.89,19,0.0 +19765,36,19,19,0.0 +19765,59,55,20,0.0 +19765,2,19,36,0.0 +19765,60,34,10,0.0 +19765,63,43.9,18,0.0 +19765,73,15,38,0.0 +19765,56,38,23,0.0 +19765,3,10,20,0.0 +19765,40,18.4,13,0.0 +19765,42,14,13,0.0 +19765,61,28.5,17,0.0 +19765,53,32.8,16,0.0 +19765,11,21,42,0.0 +19765,51,53,14,0.0 +19765,8,40,39,0.0 +19765,25,14,7,0.0 +19765,62,49.3,10,0.0 +19765,67,14,46,0.0 +19765,44,19.45,5,0.0 +19765,74,10,24,0.0 +19765,65,21.05,50,0.0 +19765,5,21.35,20,0.0 +19765,33,2.5,42,0.0 +19765,55,24,35,0.0 +19765,4,22,48,0.0 +19765,68,12.5,1,0.0 +19765,38,263.5,35,0.0 +19765,41,9.65,19,0.0 +19766,75,7.75,44,0.0 +19766,30,25.89,31,0.0 +19766,1,18,34,0.0 +19766,32,32,21,0.0 +19766,49,20,18,0.0 +19766,44,19.45,29,0.0 +19766,55,24,18,0.0 +19766,11,21,27,0.0 +19766,61,28.5,5,0.0 +19766,38,263.5,29,0.0 +19766,35,18,3,0.0 +19766,18,62.5,31,0.0 +19766,60,34,33,0.0 +19767,58,13.25,2,0.0 +19767,5,21.35,41,0.0 +19767,22,21,4,0.0 +19767,30,25.89,47,0.0 +19767,62,49.3,13,0.0 +19767,70,15,3,0.0 +19767,26,31.23,49,0.0 +19767,43,46,4,0.0 +19767,42,14,5,0.0 +19767,19,9.2,11,0.0 +19767,75,7.75,24,0.0 +19767,67,14,16,0.0 +19767,36,19,9,0.0 +19767,1,18,37,0.0 +19767,16,17.45,1,0.0 +19767,76,18,29,0.0 +19767,12,38,10,0.0 +19767,21,10,2,0.0 +19767,56,38,42,0.0 +19767,15,15.5,28,0.0 +19767,66,17,26,0.0 +19767,40,18.4,6,0.0 +19767,29,123.79,15,0.0 +19767,50,16.25,45,0.0 +19767,73,15,2,0.0 +19767,72,34.8,43,0.0 +19767,64,33.25,48,0.0 +19767,8,40,49,0.0 +19767,52,7,13,0.0 +19767,48,12.75,42,0.0 +19767,68,12.5,48,0.0 +19767,35,18,33,0.0 +19767,17,39,28,0.0 +19767,53,32.8,34,0.0 +19767,34,14,46,0.0 +19767,39,18,15,0.0 +19767,38,263.5,10,0.0 +19767,6,25,22,0.0 +19767,31,12.5,22,0.0 +19767,14,23.25,36,0.0 +19767,10,31,19,0.0 +19767,60,34,5,0.0 +19767,28,45.6,10,0.0 +19767,57,19.5,47,0.0 +19767,54,7.45,15,0.0 +19767,45,9.5,47,0.0 +19767,51,53,37,0.0 +19767,11,21,4,0.0 +19767,20,81,20,0.0 +19767,23,9,21,0.0 +19767,55,24,32,0.0 +19767,4,22,1,0.0 +19767,2,19,35,0.0 +19767,71,21.5,17,0.0 +19767,61,28.5,42,0.0 +19767,33,2.5,43,0.0 +19767,37,26,30,0.0 +19767,46,12,10,0.0 +19767,3,10,11,0.0 +19767,74,10,16,0.0 +19767,13,6,40,0.0 +19767,59,55,10,0.0 +19767,24,4.5,12,0.0 +19767,77,13,18,0.0 +19767,18,62.5,33,0.0 +19767,7,30,3,0.0 +19767,44,19.45,49,0.0 +19767,47,9.5,44,0.0 +19767,69,36,10,0.0 +19767,32,32,43,0.0 +19767,27,43.9,24,0.0 +19767,41,9.65,15,0.0 +19767,25,14,21,0.0 +19767,65,21.05,26,0.0 +19767,63,43.9,18,0.0 +19768,25,14,32,0.0 +19768,70,15,13,0.0 +19768,67,14,39,0.0 +19768,45,9.5,37,0.0 +19768,71,21.5,5,0.0 +19768,24,4.5,25,0.0 +19768,22,21,15,0.0 +19768,39,18,34,0.0 +19768,8,40,11,0.0 +19768,48,12.75,12,0.0 +19768,64,33.25,30,0.0 +19768,68,12.5,49,0.0 +19768,6,25,22,0.0 +19768,37,26,4,0.0 +19768,23,9,30,0.0 +19768,13,6,28,0.0 +19768,7,30,48,0.0 +19768,33,2.5,39,0.0 +19768,1,18,1,0.0 +19768,5,21.35,49,0.0 +19768,49,20,45,0.0 +19768,58,13.25,2,0.0 +19768,69,36,33,0.0 +19768,73,15,25,0.0 +19768,72,34.8,4,0.0 +19768,28,45.6,15,0.0 +19768,62,49.3,40,0.0 +19768,46,12,45,0.0 +19769,75,7.75,45,0.0 +19769,32,32,11,0.0 +19769,43,46,8,0.0 +19769,55,24,30,0.0 +19769,35,18,49,0.0 +19769,15,15.5,40,0.0 +19769,30,25.89,10,0.0 +19769,19,9.2,14,0.0 +19769,46,12,41,0.0 +19769,58,13.25,17,0.0 +19769,14,23.25,30,0.0 +19769,50,16.25,10,0.0 +19769,21,10,43,0.0 +19769,68,12.5,31,0.0 +19769,52,7,16,0.0 +19769,61,28.5,7,0.0 +19769,1,18,20,0.0 +19769,24,4.5,1,0.0 +19769,6,25,9,0.0 +19769,77,13,27,0.0 +19769,29,123.79,30,0.0 +19769,5,21.35,24,0.0 +19769,69,36,12,0.0 +19769,3,10,33,0.0 +19769,22,21,11,0.0 +19769,27,43.9,24,0.0 +19769,64,33.25,46,0.0 +19769,28,45.6,23,0.0 +19769,62,49.3,14,0.0 +19769,40,18.4,4,0.0 +19769,56,38,34,0.0 +19769,66,17,48,0.0 +19769,73,15,34,0.0 +19769,41,9.65,38,0.0 +19769,70,15,44,0.0 +19769,45,9.5,25,0.0 +19769,72,34.8,7,0.0 +19769,42,14,28,0.0 +19769,31,12.5,23,0.0 +19769,23,9,27,0.0 +19769,26,31.23,36,0.0 +19769,20,81,45,0.0 +19769,8,40,16,0.0 +19769,25,14,18,0.0 +19769,44,19.45,4,0.0 +19770,26,31.23,35,0.0 +19770,69,36,44,0.0 +19770,24,4.5,41,0.0 +19770,5,21.35,48,0.0 +19770,16,17.45,44,0.0 +19770,55,24,8,0.0 +19770,25,14,24,0.0 +19770,62,49.3,9,0.0 +19770,21,10,28,0.0 +19770,19,9.2,28,0.0 +19770,44,19.45,15,0.0 +19770,49,20,35,0.0 +19770,6,25,32,0.0 +19770,67,14,35,0.0 +19770,68,12.5,43,0.0 +19770,10,31,49,0.0 +19770,65,21.05,14,0.0 +19770,23,9,31,0.0 +19770,34,14,33,0.0 +19770,15,15.5,30,0.0 +19770,7,30,36,0.0 +19770,54,7.45,46,0.0 +19770,4,22,44,0.0 +19770,38,263.5,25,0.0 +19770,71,21.5,50,0.0 +19770,51,53,32,0.0 +19770,18,62.5,41,0.0 +19770,45,9.5,39,0.0 +19770,14,23.25,12,0.0 +19770,63,43.9,5,0.0 +19770,52,7,26,0.0 +19770,42,14,43,0.0 +19770,41,9.65,13,0.0 +19770,58,13.25,27,0.0 +19770,64,33.25,22,0.0 +19770,43,46,11,0.0 +19770,74,10,16,0.0 +19770,37,26,34,0.0 +19770,35,18,32,0.0 +19770,31,12.5,28,0.0 +19770,50,16.25,22,0.0 +19770,13,6,21,0.0 +19771,31,12.5,38,0.0 +19771,12,38,22,0.0 +19771,64,33.25,36,0.0 +19771,67,14,22,0.0 +19771,72,34.8,46,0.0 +19771,57,19.5,32,0.0 +19771,49,20,20,0.0 +19771,6,25,14,0.0 +19771,30,25.89,44,0.0 +19771,46,12,31,0.0 +19771,77,13,46,0.0 +19771,52,7,47,0.0 +19771,69,36,10,0.0 +19771,8,40,7,0.0 +19771,28,45.6,17,0.0 +19771,40,18.4,26,0.0 +19771,36,19,31,0.0 +19771,10,31,21,0.0 +19771,34,14,38,0.0 +19771,41,9.65,42,0.0 +19771,16,17.45,45,0.0 +19771,20,81,45,0.0 +19771,5,21.35,28,0.0 +19771,45,9.5,22,0.0 +19771,61,28.5,14,0.0 +19771,66,17,18,0.0 +19771,7,30,50,0.0 +19771,21,10,23,0.0 +19771,42,14,33,0.0 +19771,32,32,50,0.0 +19771,58,13.25,23,0.0 +19771,65,21.05,26,0.0 +19771,24,4.5,7,0.0 +19771,9,97,25,0.0 +19771,38,263.5,38,0.0 +19771,22,21,21,0.0 +19771,62,49.3,42,0.0 +19771,26,31.23,11,0.0 +19771,76,18,2,0.0 +19771,15,15.5,42,0.0 +19771,3,10,21,0.0 +19771,74,10,23,0.0 +19771,14,23.25,40,0.0 +19771,47,9.5,44,0.0 +19771,39,18,28,0.0 +19771,59,55,19,0.0 +19771,63,43.9,17,0.0 +19771,11,21,21,0.0 +19771,55,24,17,0.0 +19771,71,21.5,7,0.0 +19771,48,12.75,9,0.0 +19771,13,6,3,0.0 +19771,18,62.5,23,0.0 +19771,73,15,18,0.0 +19771,29,123.79,36,0.0 +19771,37,26,43,0.0 +19771,68,12.5,25,0.0 +19771,25,14,15,0.0 +19771,4,22,40,0.0 +19771,23,9,16,0.0 +19771,33,2.5,40,0.0 +19771,53,32.8,20,0.0 +19771,51,53,46,0.0 +19771,75,7.75,6,0.0 +19771,54,7.45,6,0.0 +19771,56,38,17,0.0 +19771,1,18,31,0.0 +19772,1,18,46,0.0 +19772,42,14,37,0.0 +19772,5,21.35,33,0.0 +19772,19,9.2,37,0.0 +19772,75,7.75,30,0.0 +19772,27,43.9,39,0.0 +19772,25,14,37,0.0 +19772,68,12.5,15,0.0 +19772,60,34,6,0.0 +19772,14,23.25,43,0.0 +19772,74,10,1,0.0 +19772,40,18.4,3,0.0 +19772,56,38,41,0.0 +19772,45,9.5,35,0.0 +19772,70,15,40,0.0 +19772,46,12,1,0.0 +19772,35,18,24,0.0 +19772,12,38,38,0.0 +19772,41,9.65,29,0.0 +19772,59,55,45,0.0 +19772,49,20,45,0.0 +19772,51,53,7,0.0 +19772,6,25,14,0.0 +19772,36,19,46,0.0 +19772,34,14,12,0.0 +19772,72,34.8,17,0.0 +19772,66,17,2,0.0 +19772,77,13,42,0.0 +19772,43,46,6,0.0 +19772,53,32.8,21,0.0 +19772,29,123.79,28,0.0 +19772,31,12.5,2,0.0 +19772,47,9.5,28,0.0 +19772,18,62.5,9,0.0 +19772,52,7,31,0.0 +19772,10,31,37,0.0 +19772,16,17.45,1,0.0 +19772,54,7.45,31,0.0 +19772,21,10,31,0.0 +19772,24,4.5,18,0.0 +19772,15,15.5,9,0.0 +19772,23,9,30,0.0 +19772,71,21.5,25,0.0 +19772,50,16.25,11,0.0 +19772,2,19,31,0.0 +19772,61,28.5,40,0.0 +19772,69,36,42,0.0 +19772,62,49.3,47,0.0 +19772,9,97,22,0.0 +19772,63,43.9,29,0.0 +19772,67,14,38,0.0 +19772,64,33.25,13,0.0 +19772,3,10,40,0.0 +19772,22,21,50,0.0 +19772,4,22,21,0.0 +19772,26,31.23,32,0.0 +19772,7,30,2,0.0 +19772,55,24,5,0.0 +19772,38,263.5,14,0.0 +19772,76,18,49,0.0 +19772,58,13.25,10,0.0 +19772,57,19.5,29,0.0 +19772,8,40,18,0.0 +19772,44,19.45,32,0.0 +19772,39,18,5,0.0 +19773,75,7.75,36,0.0 +19773,66,17,21,0.0 +19773,17,39,6,0.0 +19773,18,62.5,1,0.0 +19773,65,21.05,31,0.0 +19773,55,24,10,0.0 +19773,6,25,10,0.0 +19773,13,6,15,0.0 +19773,51,53,45,0.0 +19773,70,15,8,0.0 +19773,64,33.25,2,0.0 +19773,58,13.25,21,0.0 +19773,2,19,21,0.0 +19773,74,10,19,0.0 +19773,62,49.3,21,0.0 +19773,4,22,44,0.0 +19773,48,12.75,24,0.0 +19773,76,18,33,0.0 +19773,33,2.5,40,0.0 +19773,15,15.5,14,0.0 +19773,77,13,1,0.0 +19773,73,15,12,0.0 +19773,30,25.89,45,0.0 +19773,46,12,11,0.0 +19773,38,263.5,14,0.0 +19773,43,46,28,0.0 +19773,61,28.5,49,0.0 +19773,26,31.23,1,0.0 +19773,50,16.25,43,0.0 +19773,72,34.8,30,0.0 +19773,20,81,2,0.0 +19773,14,23.25,7,0.0 +19773,1,18,17,0.0 +19774,68,12.5,12,0.0 +19774,14,23.25,39,0.0 +19774,25,14,13,0.0 +19774,39,18,10,0.0 +19774,46,12,44,0.0 +19774,41,9.65,30,0.0 +19774,34,14,43,0.0 +19774,63,43.9,47,0.0 +19774,57,19.5,30,0.0 +19774,54,7.45,21,0.0 +19774,26,31.23,40,0.0 +19774,24,4.5,22,0.0 +19774,56,38,17,0.0 +19774,12,38,3,0.0 +19774,65,21.05,3,0.0 +19774,28,45.6,43,0.0 +19774,5,21.35,42,0.0 +19774,62,49.3,3,0.0 +19774,22,21,23,0.0 +19774,76,18,13,0.0 +19774,27,43.9,15,0.0 +19774,4,22,17,0.0 +19774,73,15,42,0.0 +19775,5,21.35,50,0.0 +19775,56,38,36,0.0 +19775,20,81,27,0.0 +19775,27,43.9,30,0.0 +19775,59,55,32,0.0 +19775,30,25.89,30,0.0 +19775,15,15.5,15,0.0 +19775,25,14,1,0.0 +19775,70,15,12,0.0 +19775,4,22,49,0.0 +19775,53,32.8,2,0.0 +19775,60,34,41,0.0 +19775,49,20,4,0.0 +19775,76,18,47,0.0 +19775,46,12,44,0.0 +19775,54,7.45,18,0.0 +19775,1,18,41,0.0 +19775,8,40,44,0.0 +19775,45,9.5,28,0.0 +19775,73,15,33,0.0 +19775,9,97,24,0.0 +19775,35,18,27,0.0 +19775,51,53,6,0.0 +19775,23,9,26,0.0 +19775,65,21.05,3,0.0 +19775,48,12.75,41,0.0 +19775,22,21,46,0.0 +19775,61,28.5,22,0.0 +19775,10,31,25,0.0 +19775,69,36,44,0.0 +19775,64,33.25,42,0.0 +19775,38,263.5,32,0.0 +19776,74,10,12,0.0 +19776,53,32.8,26,0.0 +19776,16,17.45,46,0.0 +19776,72,34.8,43,0.0 +19776,63,43.9,40,0.0 +19776,66,17,13,0.0 +19776,22,21,30,0.0 +19776,37,26,12,0.0 +19776,38,263.5,50,0.0 +19776,76,18,26,0.0 +19776,31,12.5,29,0.0 +19776,46,12,10,0.0 +19776,40,18.4,17,0.0 +19776,56,38,27,0.0 +19776,26,31.23,32,0.0 +19776,44,19.45,10,0.0 +19776,54,7.45,38,0.0 +19776,35,18,38,0.0 +19776,59,55,26,0.0 +19776,8,40,17,0.0 +19776,67,14,50,0.0 +19776,28,45.6,9,0.0 +19776,27,43.9,29,0.0 +19776,43,46,47,0.0 +19776,41,9.65,4,0.0 +19776,65,21.05,13,0.0 +19776,36,19,4,0.0 +19776,70,15,10,0.0 +19776,6,25,37,0.0 +19776,11,21,40,0.0 +19776,34,14,13,0.0 +19776,51,53,36,0.0 +19776,77,13,27,0.0 +19776,50,16.25,44,0.0 +19776,15,15.5,6,0.0 +19776,42,14,2,0.0 +19776,71,21.5,44,0.0 +19776,20,81,32,0.0 +19776,10,31,18,0.0 +19776,13,6,17,0.0 +19776,24,4.5,46,0.0 +19776,14,23.25,30,0.0 +19776,32,32,23,0.0 +19776,64,33.25,11,0.0 +19776,19,9.2,50,0.0 +19776,61,28.5,17,0.0 +19776,45,9.5,47,0.0 +19776,39,18,12,0.0 +19777,75,7.75,38,0.0 +19777,68,12.5,28,0.0 +19777,54,7.45,4,0.0 +19777,39,18,12,0.0 +19777,31,12.5,47,0.0 +19777,14,23.25,45,0.0 +19777,20,81,1,0.0 +19777,19,9.2,46,0.0 +19777,15,15.5,4,0.0 +19777,45,9.5,30,0.0 +19777,50,16.25,6,0.0 +19777,77,13,20,0.0 +19777,28,45.6,17,0.0 +19777,8,40,23,0.0 +19777,42,14,23,0.0 +19777,3,10,47,0.0 +19777,5,21.35,18,0.0 +19777,27,43.9,18,0.0 +19777,55,24,37,0.0 +19777,24,4.5,48,0.0 +19777,7,30,8,0.0 +19777,4,22,14,0.0 +19777,2,19,38,0.0 +19777,12,38,2,0.0 +19777,43,46,4,0.0 +19777,65,21.05,10,0.0 +19777,16,17.45,40,0.0 +19777,9,97,27,0.0 +19777,22,21,21,0.0 +19777,48,12.75,32,0.0 +19777,64,33.25,41,0.0 +19777,34,14,5,0.0 +19777,41,9.65,11,0.0 +19777,44,19.45,23,0.0 +19777,13,6,48,0.0 +19777,67,14,44,0.0 +19777,10,31,45,0.0 +19777,52,7,2,0.0 +19777,73,15,45,0.0 +19777,23,9,21,0.0 +19777,6,25,9,0.0 +19777,21,10,35,0.0 +19777,76,18,13,0.0 +19777,53,32.8,10,0.0 +19777,35,18,47,0.0 +19777,36,19,5,0.0 +19777,32,32,14,0.0 +19777,49,20,35,0.0 +19777,1,18,48,0.0 +19777,25,14,41,0.0 +19777,37,26,40,0.0 +19777,56,38,48,0.0 +19777,46,12,33,0.0 +19777,66,17,22,0.0 +19777,29,123.79,22,0.0 +19777,30,25.89,47,0.0 +19777,47,9.5,39,0.0 +19777,69,36,12,0.0 +19777,40,18.4,22,0.0 +19777,63,43.9,47,0.0 +19778,26,31.23,3,0.0 +19778,25,14,20,0.0 +19778,39,18,21,0.0 +19778,73,15,18,0.0 +19778,53,32.8,42,0.0 +19778,75,7.75,22,0.0 +19778,19,9.2,25,0.0 +19778,23,9,12,0.0 +19778,20,81,31,0.0 +19778,41,9.65,34,0.0 +19778,30,25.89,15,0.0 +19778,63,43.9,1,0.0 +19778,8,40,14,0.0 +19778,2,19,5,0.0 +19778,21,10,29,0.0 +19778,43,46,6,0.0 +19778,74,10,19,0.0 +19778,37,26,47,0.0 +19778,61,28.5,40,0.0 +19778,44,19.45,10,0.0 +19778,67,14,40,0.0 +19778,59,55,19,0.0 +19778,34,14,15,0.0 +19778,49,20,16,0.0 +19778,47,9.5,19,0.0 +19778,11,21,12,0.0 +19778,1,18,19,0.0 +19778,72,34.8,50,0.0 +19778,56,38,13,0.0 +19778,31,12.5,32,0.0 +19778,57,19.5,42,0.0 +19778,4,22,41,0.0 +19778,70,15,31,0.0 +19778,40,18.4,19,0.0 +19778,71,21.5,16,0.0 +19778,33,2.5,18,0.0 +19778,35,18,27,0.0 +19778,18,62.5,35,0.0 +19778,6,25,1,0.0 +19778,77,13,35,0.0 +19778,45,9.5,13,0.0 +19778,15,15.5,8,0.0 +19778,17,39,16,0.0 +19778,55,24,33,0.0 +19778,66,17,39,0.0 +19778,22,21,17,0.0 +19778,16,17.45,5,0.0 +19778,68,12.5,8,0.0 +19778,58,13.25,14,0.0 +19778,27,43.9,6,0.0 +19778,24,4.5,25,0.0 +19778,62,49.3,11,0.0 +19778,38,263.5,1,0.0 +19778,69,36,14,0.0 +19778,13,6,16,0.0 +19778,51,53,8,0.0 +19778,64,33.25,1,0.0 +19778,76,18,46,0.0 +19778,42,14,46,0.0 +19778,46,12,45,0.0 +19779,48,12.75,2,0.0 +19779,59,55,7,0.0 +19779,52,7,16,0.0 +19779,25,14,47,0.0 +19779,77,13,28,0.0 +19779,33,2.5,43,0.0 +19779,60,34,23,0.0 +19779,5,21.35,20,0.0 +19779,76,18,28,0.0 +19779,65,21.05,37,0.0 +19779,54,7.45,6,0.0 +19779,39,18,31,0.0 +19779,3,10,12,0.0 +19779,12,38,12,0.0 +19779,64,33.25,19,0.0 +19779,29,123.79,1,0.0 +19779,74,10,9,0.0 +19779,43,46,50,0.0 +19779,49,20,37,0.0 +19779,27,43.9,24,0.0 +19779,4,22,50,0.0 +19779,21,10,50,0.0 +19779,7,30,30,0.0 +19779,35,18,27,0.0 +19779,37,26,28,0.0 +19779,22,21,7,0.0 +19779,42,14,16,0.0 +19779,23,9,30,0.0 +19779,31,12.5,10,0.0 +19779,47,9.5,22,0.0 +19779,75,7.75,13,0.0 +19779,70,15,12,0.0 +19779,57,19.5,4,0.0 +19779,50,16.25,19,0.0 +19779,69,36,22,0.0 +19779,9,97,32,0.0 +19779,1,18,20,0.0 +19779,45,9.5,41,0.0 +19779,46,12,3,0.0 +19779,63,43.9,38,0.0 +19779,2,19,26,0.0 +19779,20,81,23,0.0 +19779,71,21.5,49,0.0 +19779,41,9.65,6,0.0 +19779,40,18.4,25,0.0 +19779,72,34.8,21,0.0 +19779,32,32,28,0.0 +19779,36,19,35,0.0 +19779,67,14,8,0.0 +19779,66,17,30,0.0 +19779,55,24,12,0.0 +19779,68,12.5,7,0.0 +19780,18,62.5,6,0.0 +19780,72,34.8,43,0.0 +19780,71,21.5,1,0.0 +19780,47,9.5,9,0.0 +19780,70,15,28,0.0 +19780,8,40,30,0.0 +19780,68,12.5,49,0.0 +19780,57,19.5,14,0.0 +19780,9,97,34,0.0 +19780,6,25,12,0.0 +19780,73,15,17,0.0 +19780,56,38,19,0.0 +19780,35,18,11,0.0 +19780,20,81,24,0.0 +19780,64,33.25,7,0.0 +19780,11,21,32,0.0 +19780,48,12.75,48,0.0 +19780,53,32.8,24,0.0 +19780,75,7.75,9,0.0 +19780,40,18.4,5,0.0 +19780,74,10,37,0.0 +19780,58,13.25,12,0.0 +19780,65,21.05,9,0.0 +19780,61,28.5,36,0.0 +19780,28,45.6,35,0.0 +19780,41,9.65,27,0.0 +19780,1,18,18,0.0 +19780,16,17.45,28,0.0 +19780,23,9,45,0.0 +19780,46,12,46,0.0 +19780,62,49.3,9,0.0 +19780,29,123.79,25,0.0 +19780,43,46,18,0.0 +19780,45,9.5,3,0.0 +19780,25,14,3,0.0 +19780,3,10,39,0.0 +19780,36,19,7,0.0 +19780,50,16.25,7,0.0 +19780,37,26,34,0.0 +19780,10,31,13,0.0 +19780,32,32,18,0.0 +19780,51,53,50,0.0 +19780,77,13,43,0.0 +19780,59,55,14,0.0 +19780,24,4.5,45,0.0 +19780,15,15.5,28,0.0 +19780,54,7.45,9,0.0 +19780,76,18,6,0.0 +19780,34,14,9,0.0 +19780,67,14,23,0.0 +19781,5,21.35,1,0.0 +19781,44,19.45,36,0.0 +19781,18,62.5,10,0.0 +19781,68,12.5,19,0.0 +19781,32,32,48,0.0 +19781,12,38,6,0.0 +19781,73,15,27,0.0 +19781,52,7,22,0.0 +19781,34,14,13,0.0 +19781,13,6,15,0.0 +19781,31,12.5,10,0.0 +19781,46,12,9,0.0 +19781,58,13.25,15,0.0 +19781,10,31,36,0.0 +19781,39,18,29,0.0 +19781,40,18.4,5,0.0 +19781,76,18,16,0.0 +19781,28,45.6,32,0.0 +19781,43,46,14,0.0 +19781,8,40,4,0.0 +19781,1,18,34,0.0 +19781,15,15.5,47,0.0 +19781,53,32.8,8,0.0 +19781,57,19.5,32,0.0 +19781,42,14,7,0.0 +19781,4,22,35,0.0 +19781,47,9.5,32,0.0 +19781,49,20,11,0.0 +19781,9,97,19,0.0 +19781,45,9.5,1,0.0 +19781,16,17.45,33,0.0 +19781,3,10,10,0.0 +19781,72,34.8,6,0.0 +19781,30,25.89,29,0.0 +19781,50,16.25,9,0.0 +19781,20,81,24,0.0 +19781,66,17,28,0.0 +19781,77,13,23,0.0 +19781,55,24,38,0.0 +19781,56,38,4,0.0 +19781,65,21.05,20,0.0 +19781,21,10,30,0.0 +19782,35,18,31,0.0 +19782,1,18,48,0.0 +19782,73,15,25,0.0 +19782,44,19.45,8,0.0 +19782,33,2.5,5,0.0 +19782,48,12.75,37,0.0 +19782,5,21.35,30,0.0 +19782,53,32.8,6,0.0 +19782,4,22,17,0.0 +19782,11,21,34,0.0 +19782,54,7.45,5,0.0 +19783,56,38,21,0.0 +19783,74,10,12,0.0 +19783,40,18.4,36,0.0 +19783,46,12,19,0.0 +19783,73,15,30,0.0 +19783,11,21,2,0.0 +19783,25,14,2,0.0 +19783,59,55,12,0.0 +19783,36,19,37,0.0 +19783,45,9.5,20,0.0 +19783,18,62.5,5,0.0 +19783,6,25,31,0.0 +19783,23,9,14,0.0 +19783,76,18,11,0.0 +19784,16,17.45,2,0.0 +19784,56,38,42,0.0 +19784,52,7,48,0.0 +19784,28,45.6,43,0.0 +19784,63,43.9,6,0.0 +19784,18,62.5,26,0.0 +19784,34,14,20,0.0 +19784,26,31.23,41,0.0 +19784,69,36,4,0.0 +19784,46,12,35,0.0 +19784,6,25,33,0.0 +19784,68,12.5,49,0.0 +19784,55,24,22,0.0 +19784,51,53,23,0.0 +19784,75,7.75,3,0.0 +19784,15,15.5,18,0.0 +19784,5,21.35,35,0.0 +19784,36,19,11,0.0 +19784,37,26,7,0.0 +19784,12,38,32,0.0 +19784,72,34.8,27,0.0 +19784,45,9.5,9,0.0 +19784,67,14,21,0.0 +19785,42,14,45,0.0 +19785,19,9.2,2,0.0 +19785,41,9.65,3,0.0 +19785,55,24,1,0.0 +19785,1,18,48,0.0 +19785,63,43.9,9,0.0 +19785,57,19.5,36,0.0 +19785,38,263.5,44,0.0 +19785,23,9,2,0.0 +19785,10,31,33,0.0 +19785,9,97,39,0.0 +19785,18,62.5,35,0.0 +19785,22,21,5,0.0 +19785,11,21,48,0.0 +19785,43,46,15,0.0 +19785,30,25.89,50,0.0 +19785,69,36,38,0.0 +19785,8,40,8,0.0 +19785,2,19,19,0.0 +19785,52,7,33,0.0 +19785,60,34,2,0.0 +19785,33,2.5,49,0.0 +19785,29,123.79,7,0.0 +19785,32,32,50,0.0 +19785,76,18,36,0.0 +19785,58,13.25,29,0.0 +19785,26,31.23,40,0.0 +19785,72,34.8,4,0.0 +19785,44,19.45,7,0.0 +19785,46,12,49,0.0 +19785,71,21.5,9,0.0 +19785,77,13,19,0.0 +19785,28,45.6,44,0.0 +19785,73,15,17,0.0 +19785,16,17.45,20,0.0 +19785,6,25,45,0.0 +19785,62,49.3,3,0.0 +19785,15,15.5,46,0.0 +19785,75,7.75,33,0.0 +19785,14,23.25,28,0.0 +19785,34,14,40,0.0 +19785,17,39,38,0.0 +19785,40,18.4,9,0.0 +19785,13,6,10,0.0 +19785,59,55,48,0.0 +19785,61,28.5,44,0.0 +19785,4,22,45,0.0 +19785,54,7.45,14,0.0 +19785,39,18,10,0.0 +19785,49,20,45,0.0 +19785,21,10,23,0.0 +19785,12,38,10,0.0 +19785,20,81,6,0.0 +19785,66,17,46,0.0 +19785,64,33.25,3,0.0 +19785,65,21.05,21,0.0 +19785,74,10,34,0.0 +19785,37,26,24,0.0 +19785,25,14,9,0.0 +19785,45,9.5,46,0.0 +19785,35,18,3,0.0 +19785,51,53,47,0.0 +19785,47,9.5,34,0.0 +19786,36,19,45,0.0 +19786,2,19,22,0.0 +19786,26,31.23,31,0.0 +19786,1,18,9,0.0 +19786,5,21.35,33,0.0 +19786,20,81,25,0.0 +19786,24,4.5,46,0.0 +19786,12,38,20,0.0 +19786,45,9.5,14,0.0 +19786,60,34,10,0.0 +19786,18,62.5,1,0.0 +19786,57,19.5,27,0.0 +19786,41,9.65,2,0.0 +19786,11,21,40,0.0 +19786,46,12,6,0.0 +19786,59,55,36,0.0 +19786,4,22,6,0.0 +19786,19,9.2,48,0.0 +19786,3,10,9,0.0 +19786,8,40,14,0.0 +19786,71,21.5,20,0.0 +19786,77,13,26,0.0 +19786,53,32.8,23,0.0 +19786,65,21.05,36,0.0 +19786,52,7,35,0.0 +19786,27,43.9,12,0.0 +19786,68,12.5,33,0.0 +19786,56,38,45,0.0 +19786,16,17.45,6,0.0 +19786,55,24,1,0.0 +19786,73,15,3,0.0 +19786,17,39,32,0.0 +19786,76,18,47,0.0 +19786,75,7.75,16,0.0 +19786,14,23.25,14,0.0 +19786,62,49.3,38,0.0 +19786,50,16.25,16,0.0 +19786,34,14,5,0.0 +19786,32,32,24,0.0 +19786,49,20,19,0.0 +19786,33,2.5,44,0.0 +19786,35,18,37,0.0 +19786,44,19.45,48,0.0 +19786,48,12.75,46,0.0 +19786,51,53,35,0.0 +19786,70,15,20,0.0 +19786,38,263.5,43,0.0 +19786,67,14,27,0.0 +19786,43,46,25,0.0 +19787,30,25.89,35,0.0 +19787,58,13.25,18,0.0 +19787,26,31.23,42,0.0 +19787,11,21,18,0.0 +19787,76,18,42,0.0 +19787,48,12.75,41,0.0 +19787,6,25,46,0.0 +19787,49,20,14,0.0 +19787,20,81,33,0.0 +19787,3,10,24,0.0 +19787,36,19,49,0.0 +19787,56,38,13,0.0 +19787,4,22,15,0.0 +19787,41,9.65,4,0.0 +19787,31,12.5,49,0.0 +19787,25,14,41,0.0 +19787,18,62.5,17,0.0 +19787,42,14,23,0.0 +19787,61,28.5,1,0.0 +19787,66,17,33,0.0 +19787,17,39,8,0.0 +19787,45,9.5,29,0.0 +19787,22,21,46,0.0 +19787,32,32,25,0.0 +19787,59,55,49,0.0 +19787,40,18.4,43,0.0 +19787,71,21.5,4,0.0 +19787,60,34,30,0.0 +19787,10,31,3,0.0 +19787,1,18,47,0.0 +19788,17,39,10,0.0 +19788,48,12.75,21,0.0 +19788,39,18,16,0.0 +19788,45,9.5,47,0.0 +19788,60,34,25,0.0 +19788,42,14,19,0.0 +19788,32,32,27,0.0 +19788,53,32.8,43,0.0 +19788,22,21,41,0.0 +19788,56,38,25,0.0 +19788,69,36,33,0.0 +19788,23,9,40,0.0 +19788,2,19,49,0.0 +19788,54,7.45,5,0.0 +19788,20,81,25,0.0 +19788,26,31.23,46,0.0 +19788,9,97,21,0.0 +19788,51,53,4,0.0 +19788,25,14,29,0.0 +19788,16,17.45,23,0.0 +19788,14,23.25,38,0.0 +19788,37,26,3,0.0 +19788,57,19.5,47,0.0 +19788,27,43.9,37,0.0 +19788,43,46,38,0.0 +19788,21,10,3,0.0 +19788,33,2.5,14,0.0 +19788,13,6,45,0.0 +19788,52,7,43,0.0 +19788,7,30,8,0.0 +19788,50,16.25,43,0.0 +19788,70,15,24,0.0 +19788,30,25.89,37,0.0 +19788,15,15.5,27,0.0 +19788,31,12.5,41,0.0 +19789,31,12.5,47,0.0 +19789,24,4.5,36,0.0 +19789,68,12.5,17,0.0 +19789,67,14,45,0.0 +19789,58,13.25,7,0.0 +19789,66,17,13,0.0 +19789,36,19,39,0.0 +19789,20,81,31,0.0 +19789,8,40,48,0.0 +19789,59,55,42,0.0 +19789,11,21,29,0.0 +19789,43,46,12,0.0 +19789,40,18.4,39,0.0 +19789,48,12.75,49,0.0 +19789,65,21.05,14,0.0 +19790,36,19,48,0.0 +19790,74,10,35,0.0 +19790,52,7,15,0.0 +19790,47,9.5,19,0.0 +19790,25,14,32,0.0 +19790,5,21.35,33,0.0 +19791,49,20,4,0.0 +19791,57,19.5,17,0.0 +19791,9,97,36,0.0 +19791,67,14,10,0.0 +19791,50,16.25,16,0.0 +19791,45,9.5,24,0.0 +19791,21,10,1,0.0 +19791,73,15,50,0.0 +19791,6,25,3,0.0 +19791,5,21.35,20,0.0 +19791,63,43.9,46,0.0 +19791,40,18.4,22,0.0 +19791,62,49.3,22,0.0 +19791,18,62.5,1,0.0 +19791,25,14,27,0.0 +19791,55,24,20,0.0 +19791,54,7.45,26,0.0 +19791,51,53,40,0.0 +19792,56,38,13,0.0 +19792,5,21.35,4,0.0 +19792,19,9.2,31,0.0 +19792,24,4.5,45,0.0 +19792,74,10,28,0.0 +19792,27,43.9,4,0.0 +19792,6,25,41,0.0 +19792,52,7,37,0.0 +19792,38,263.5,15,0.0 +19792,25,14,16,0.0 +19792,32,32,17,0.0 +19792,62,49.3,47,0.0 +19792,53,32.8,7,0.0 +19792,26,31.23,17,0.0 +19792,72,34.8,8,0.0 +19792,11,21,36,0.0 +19792,36,19,31,0.0 +19792,12,38,25,0.0 +19792,9,97,33,0.0 +19792,37,26,13,0.0 +19792,44,19.45,15,0.0 +19792,30,25.89,18,0.0 +19792,65,21.05,33,0.0 +19792,66,17,26,0.0 +19792,77,13,38,0.0 +19792,42,14,14,0.0 +19792,40,18.4,16,0.0 +19792,47,9.5,23,0.0 +19792,20,81,11,0.0 +19792,70,15,12,0.0 +19792,17,39,28,0.0 +19792,39,18,15,0.0 +19792,4,22,25,0.0 +19792,59,55,11,0.0 +19792,43,46,35,0.0 +19792,45,9.5,40,0.0 +19792,31,12.5,15,0.0 +19792,76,18,45,0.0 +19792,34,14,16,0.0 +19792,8,40,21,0.0 +19792,23,9,24,0.0 +19792,57,19.5,24,0.0 +19792,3,10,40,0.0 +19792,15,15.5,20,0.0 +19792,54,7.45,1,0.0 +19792,75,7.75,47,0.0 +19792,29,123.79,20,0.0 +19792,60,34,31,0.0 +19792,28,45.6,10,0.0 +19792,33,2.5,39,0.0 +19792,14,23.25,36,0.0 +19792,7,30,40,0.0 +19792,61,28.5,22,0.0 +19792,18,62.5,7,0.0 +19792,48,12.75,41,0.0 +19792,50,16.25,30,0.0 +19792,49,20,23,0.0 +19792,51,53,46,0.0 +19792,16,17.45,49,0.0 +19792,69,36,6,0.0 +19792,10,31,49,0.0 +19792,35,18,27,0.0 +19792,68,12.5,35,0.0 +19792,64,33.25,12,0.0 +19792,58,13.25,6,0.0 +19792,73,15,15,0.0 +19792,41,9.65,23,0.0 +19792,71,21.5,50,0.0 +19792,22,21,17,0.0 +19792,46,12,23,0.0 +19792,2,19,12,0.0 +19792,55,24,38,0.0 +19792,21,10,22,0.0 +19792,13,6,38,0.0 +19792,63,43.9,20,0.0 +19792,1,18,14,0.0 +19793,54,7.45,33,0.0 +19793,9,97,31,0.0 +19793,41,9.65,31,0.0 +19793,55,24,15,0.0 +19793,38,263.5,40,0.0 +19793,76,18,39,0.0 +19793,20,81,32,0.0 +19793,22,21,20,0.0 +19793,27,43.9,30,0.0 +19793,66,17,31,0.0 +19793,52,7,47,0.0 +19793,13,6,25,0.0 +19793,1,18,9,0.0 +19793,64,33.25,44,0.0 +19793,71,21.5,27,0.0 +19793,16,17.45,11,0.0 +19793,48,12.75,20,0.0 +19793,14,23.25,5,0.0 +19793,35,18,17,0.0 +19793,60,34,14,0.0 +19793,46,12,16,0.0 +19793,8,40,26,0.0 +19793,26,31.23,20,0.0 +19793,65,21.05,12,0.0 +19793,69,36,10,0.0 +19793,17,39,35,0.0 +19793,3,10,24,0.0 +19793,77,13,18,0.0 +19793,72,34.8,7,0.0 +19793,57,19.5,8,0.0 +19793,4,22,7,0.0 +19793,50,16.25,49,0.0 +19793,53,32.8,45,0.0 +19793,29,123.79,15,0.0 +19793,15,15.5,37,0.0 +19793,42,14,49,0.0 +19793,6,25,42,0.0 +19793,51,53,8,0.0 +19793,23,9,46,0.0 +19793,45,9.5,44,0.0 +19793,43,46,1,0.0 +19793,25,14,17,0.0 +19793,10,31,45,0.0 +19793,32,32,17,0.0 +19793,44,19.45,39,0.0 +19793,39,18,36,0.0 +19793,11,21,10,0.0 +19793,24,4.5,36,0.0 +19793,47,9.5,46,0.0 +19793,62,49.3,17,0.0 +19793,40,18.4,43,0.0 +19793,74,10,20,0.0 +19793,34,14,41,0.0 +19793,63,43.9,25,0.0 +19793,28,45.6,26,0.0 +19793,70,15,43,0.0 +19793,56,38,43,0.0 +19793,33,2.5,28,0.0 +19793,58,13.25,5,0.0 +19793,75,7.75,37,0.0 +19793,73,15,5,0.0 +19793,68,12.5,25,0.0 +19793,7,30,48,0.0 +19793,2,19,28,0.0 +19794,56,38,26,0.0 +19794,58,13.25,27,0.0 +19794,33,2.5,47,0.0 +19794,2,19,17,0.0 +19794,75,7.75,40,0.0 +19794,23,9,43,0.0 +19794,47,9.5,24,0.0 +19794,29,123.79,38,0.0 +19794,41,9.65,24,0.0 +19794,59,55,20,0.0 +19794,24,4.5,10,0.0 +19794,22,21,39,0.0 +19794,25,14,25,0.0 +19794,35,18,17,0.0 +19794,34,14,1,0.0 +19794,1,18,3,0.0 +19794,32,32,46,0.0 +19794,55,24,50,0.0 +19794,40,18.4,28,0.0 +19794,13,6,44,0.0 +19794,70,15,46,0.0 +19794,69,36,48,0.0 +19794,30,25.89,35,0.0 +19794,10,31,13,0.0 +19794,28,45.6,39,0.0 +19795,5,21.35,45,0.0 +19795,55,24,21,0.0 +19795,6,25,2,0.0 +19795,26,31.23,37,0.0 +19795,40,18.4,48,0.0 +19795,33,2.5,34,0.0 +19795,77,13,7,0.0 +19795,34,14,8,0.0 +19795,27,43.9,48,0.0 +19795,43,46,3,0.0 +19795,25,14,15,0.0 +19795,62,49.3,21,0.0 +19795,31,12.5,24,0.0 +19795,32,32,7,0.0 +19795,38,263.5,20,0.0 +19795,51,53,2,0.0 +19795,59,55,50,0.0 +19795,2,19,26,0.0 +19795,56,38,44,0.0 +19795,36,19,45,0.0 +19795,57,19.5,40,0.0 +19795,7,30,25,0.0 +19795,73,15,33,0.0 +19795,12,38,45,0.0 +19795,17,39,21,0.0 +19795,14,23.25,33,0.0 +19795,75,7.75,20,0.0 +19795,18,62.5,48,0.0 +19795,74,10,31,0.0 +19795,69,36,18,0.0 +19795,65,21.05,1,0.0 +19795,44,19.45,10,0.0 +19795,29,123.79,43,0.0 +19795,4,22,27,0.0 +19795,39,18,32,0.0 +19795,30,25.89,25,0.0 +19795,64,33.25,34,0.0 +19795,46,12,27,0.0 +19795,54,7.45,24,0.0 +19795,70,15,5,0.0 +19795,35,18,45,0.0 +19795,23,9,40,0.0 +19795,76,18,34,0.0 +19795,48,12.75,40,0.0 +19795,28,45.6,2,0.0 +19795,50,16.25,5,0.0 +19795,24,4.5,22,0.0 +19795,49,20,33,0.0 +19795,3,10,6,0.0 +19795,63,43.9,23,0.0 +19795,58,13.25,14,0.0 +19796,23,9,15,0.0 +19796,58,13.25,39,0.0 +19796,2,19,19,0.0 +19796,20,81,14,0.0 +19796,40,18.4,10,0.0 +19796,74,10,35,0.0 +19796,3,10,6,0.0 +19796,15,15.5,5,0.0 +19796,26,31.23,18,0.0 +19796,60,34,10,0.0 +19796,28,45.6,39,0.0 +19796,47,9.5,12,0.0 +19796,6,25,24,0.0 +19796,59,55,50,0.0 +19796,48,12.75,18,0.0 +19796,41,9.65,9,0.0 +19796,63,43.9,43,0.0 +19796,45,9.5,41,0.0 +19796,75,7.75,40,0.0 +19796,31,12.5,14,0.0 +19796,33,2.5,8,0.0 +19796,50,16.25,19,0.0 +19796,30,25.89,3,0.0 +19796,70,15,39,0.0 +19796,19,9.2,10,0.0 +19796,46,12,13,0.0 +19796,38,263.5,24,0.0 +19796,49,20,47,0.0 +19796,34,14,4,0.0 +19796,21,10,35,0.0 +19796,35,18,18,0.0 +19796,13,6,26,0.0 +19796,61,28.5,14,0.0 +19796,71,21.5,37,0.0 +19796,68,12.5,46,0.0 +19796,5,21.35,29,0.0 +19796,66,17,29,0.0 +19796,62,49.3,21,0.0 +19796,8,40,50,0.0 +19796,42,14,31,0.0 +19796,51,53,42,0.0 +19796,17,39,5,0.0 +19796,9,97,46,0.0 +19796,56,38,22,0.0 +19796,69,36,7,0.0 +19796,53,32.8,24,0.0 +19797,65,21.05,50,0.0 +19797,29,123.79,30,0.0 +19797,45,9.5,7,0.0 +19797,35,18,6,0.0 +19797,7,30,7,0.0 +19797,12,38,28,0.0 +19797,39,18,36,0.0 +19797,48,12.75,14,0.0 +19797,6,25,50,0.0 +19797,34,14,2,0.0 +19797,66,17,37,0.0 +19797,30,25.89,49,0.0 +19797,14,23.25,30,0.0 +19797,59,55,50,0.0 +19797,76,18,44,0.0 +19797,9,97,33,0.0 +19797,22,21,1,0.0 +19797,75,7.75,48,0.0 +19797,71,21.5,15,0.0 +19797,46,12,17,0.0 +19797,8,40,22,0.0 +19797,51,53,28,0.0 +19797,13,6,8,0.0 +19797,58,13.25,20,0.0 +19797,10,31,15,0.0 +19797,37,26,47,0.0 +19797,41,9.65,45,0.0 +19797,62,49.3,34,0.0 +19797,31,12.5,9,0.0 +19797,25,14,15,0.0 +19797,73,15,5,0.0 +19797,43,46,41,0.0 +19797,15,15.5,15,0.0 +19797,53,32.8,2,0.0 +19797,61,28.5,41,0.0 +19797,18,62.5,17,0.0 +19797,21,10,8,0.0 +19797,74,10,35,0.0 +19797,63,43.9,12,0.0 +19797,54,7.45,26,0.0 +19797,33,2.5,17,0.0 +19797,72,34.8,6,0.0 +19797,38,263.5,13,0.0 +19797,16,17.45,22,0.0 +19797,1,18,45,0.0 +19797,68,12.5,1,0.0 +19798,46,12,50,0.0 +19798,17,39,15,0.0 +19798,62,49.3,19,0.0 +19798,1,18,9,0.0 +19798,42,14,49,0.0 +19798,74,10,8,0.0 +19798,16,17.45,27,0.0 +19798,32,32,19,0.0 +19798,56,38,40,0.0 +19798,19,9.2,21,0.0 +19798,3,10,33,0.0 +19798,59,55,26,0.0 +19798,76,18,41,0.0 +19798,21,10,23,0.0 +19798,6,25,14,0.0 +19798,37,26,37,0.0 +19798,38,263.5,38,0.0 +19798,28,45.6,35,0.0 +19798,23,9,16,0.0 +19798,29,123.79,17,0.0 +19798,65,21.05,22,0.0 +19798,69,36,38,0.0 +19798,50,16.25,29,0.0 +19798,52,7,42,0.0 +19798,24,4.5,1,0.0 +19798,54,7.45,19,0.0 +19798,15,15.5,46,0.0 +19798,2,19,42,0.0 +19798,43,46,2,0.0 +19798,41,9.65,11,0.0 +19798,72,34.8,28,0.0 +19798,4,22,19,0.0 +19798,22,21,21,0.0 +19798,58,13.25,5,0.0 +19798,61,28.5,46,0.0 +19798,39,18,22,0.0 +19798,77,13,4,0.0 +19798,26,31.23,26,0.0 +19798,34,14,31,0.0 +19798,75,7.75,44,0.0 +19798,9,97,19,0.0 +19798,27,43.9,11,0.0 +19798,51,53,12,0.0 +19798,30,25.89,5,0.0 +19798,31,12.5,29,0.0 +19798,47,9.5,8,0.0 +19798,12,38,27,0.0 +19798,40,18.4,30,0.0 +19798,71,21.5,18,0.0 +19799,60,34,15,0.0 +19799,34,14,15,0.0 +19799,74,10,36,0.0 +19799,39,18,4,0.0 +19799,19,9.2,12,0.0 +19799,37,26,47,0.0 +19799,61,28.5,9,0.0 +19799,72,34.8,15,0.0 +19799,59,55,5,0.0 +19799,10,31,43,0.0 +19799,48,12.75,19,0.0 +19799,12,38,17,0.0 +19799,28,45.6,39,0.0 +19799,71,21.5,11,0.0 +19799,77,13,28,0.0 +19799,18,62.5,11,0.0 +19799,21,10,26,0.0 +19799,75,7.75,23,0.0 +19799,36,19,40,0.0 +19799,58,13.25,4,0.0 +19799,52,7,20,0.0 +19799,63,43.9,42,0.0 +19799,69,36,22,0.0 +19799,38,263.5,17,0.0 +19799,32,32,28,0.0 +19799,67,14,7,0.0 +19799,54,7.45,34,0.0 +19799,8,40,43,0.0 +19799,15,15.5,7,0.0 +19799,27,43.9,40,0.0 +19799,1,18,23,0.0 +19799,22,21,9,0.0 +19799,26,31.23,35,0.0 +19799,4,22,38,0.0 +19799,3,10,47,0.0 +19799,7,30,14,0.0 +19799,50,16.25,39,0.0 +19799,73,15,43,0.0 +19799,14,23.25,27,0.0 +19799,2,19,16,0.0 +19799,42,14,1,0.0 +19799,62,49.3,29,0.0 +19799,29,123.79,19,0.0 +19799,16,17.45,21,0.0 +19799,45,9.5,43,0.0 +19799,11,21,30,0.0 +19799,33,2.5,7,0.0 +19799,57,19.5,18,0.0 +19799,66,17,22,0.0 +19799,24,4.5,7,0.0 +19799,13,6,12,0.0 +19799,9,97,12,0.0 +19799,64,33.25,36,0.0 +19799,5,21.35,27,0.0 +19799,20,81,1,0.0 +19799,76,18,22,0.0 +19799,23,9,16,0.0 +19799,44,19.45,33,0.0 +19799,31,12.5,24,0.0 +19799,46,12,11,0.0 +19799,70,15,27,0.0 +19799,6,25,35,0.0 +19799,68,12.5,19,0.0 +19799,47,9.5,16,0.0 +19799,49,20,12,0.0 +19799,65,21.05,18,0.0 +19799,25,14,16,0.0 +19799,40,18.4,16,0.0 +19799,41,9.65,21,0.0 +19800,24,4.5,34,0.0 +19800,20,81,25,0.0 +19800,45,9.5,47,0.0 +19800,62,49.3,6,0.0 +19800,43,46,19,0.0 +19800,9,97,39,0.0 +19800,10,31,3,0.0 +19800,74,10,20,0.0 +19800,33,2.5,20,0.0 +19800,58,13.25,43,0.0 +19800,32,32,45,0.0 +19800,6,25,49,0.0 +19800,37,26,50,0.0 +19800,50,16.25,39,0.0 +19800,69,36,5,0.0 +19800,28,45.6,29,0.0 +19800,75,7.75,24,0.0 +19800,16,17.45,24,0.0 +19800,27,43.9,40,0.0 +19800,4,22,32,0.0 +19800,21,10,23,0.0 +19800,22,21,41,0.0 +19800,35,18,36,0.0 +19800,5,21.35,5,0.0 +19800,39,18,50,0.0 +19800,49,20,1,0.0 +19800,15,15.5,5,0.0 +19800,66,17,30,0.0 +19800,13,6,46,0.0 +19800,51,53,50,0.0 +19800,54,7.45,27,0.0 +19800,72,34.8,41,0.0 +19800,63,43.9,30,0.0 +19800,29,123.79,7,0.0 +19800,41,9.65,40,0.0 +19801,60,34,4,0.0 +19801,30,25.89,34,0.0 +19801,59,55,11,0.0 +19801,50,16.25,9,0.0 +19801,21,10,44,0.0 +19801,29,123.79,14,0.0 +19801,42,14,5,0.0 +19801,25,14,14,0.0 +19801,28,45.6,49,0.0 +19801,6,25,13,0.0 +19801,40,18.4,31,0.0 +19801,27,43.9,29,0.0 +19801,4,22,14,0.0 +19801,56,38,40,0.0 +19801,71,21.5,38,0.0 +19801,68,12.5,23,0.0 +19801,36,19,35,0.0 +19801,45,9.5,35,0.0 +19801,52,7,16,0.0 +19801,7,30,23,0.0 +19801,13,6,32,0.0 +19801,31,12.5,1,0.0 +19801,2,19,12,0.0 +19802,64,33.25,12,0.0 +19802,70,15,9,0.0 +19802,48,12.75,29,0.0 +19802,75,7.75,46,0.0 +19802,76,18,46,0.0 +19802,42,14,39,0.0 +19802,27,43.9,27,0.0 +19802,44,19.45,37,0.0 +19802,68,12.5,10,0.0 +19802,50,16.25,4,0.0 +19803,7,30,48,0.0 +19803,44,19.45,31,0.0 +19803,74,10,50,0.0 +19803,56,38,30,0.0 +19803,57,19.5,22,0.0 +19803,65,21.05,9,0.0 +19803,26,31.23,5,0.0 +19803,61,28.5,37,0.0 +19803,2,19,7,0.0 +19803,34,14,21,0.0 +19803,60,34,41,0.0 +19803,42,14,3,0.0 +19803,18,62.5,3,0.0 +19803,14,23.25,4,0.0 +19803,11,21,8,0.0 +19803,68,12.5,48,0.0 +19803,32,32,6,0.0 +19803,51,53,4,0.0 +19803,45,9.5,10,0.0 +19803,25,14,26,0.0 +19803,69,36,2,0.0 +19803,73,15,15,0.0 +19803,41,9.65,33,0.0 +19803,70,15,23,0.0 +19803,15,15.5,11,0.0 +19803,6,25,13,0.0 +19803,9,97,40,0.0 +19803,50,16.25,22,0.0 +19803,64,33.25,7,0.0 +19803,55,24,42,0.0 +19803,76,18,1,0.0 +19803,29,123.79,22,0.0 +19803,17,39,28,0.0 +19803,59,55,10,0.0 +19803,24,4.5,2,0.0 +19803,40,18.4,26,0.0 +19803,48,12.75,7,0.0 +19803,75,7.75,12,0.0 +19803,5,21.35,16,0.0 +19803,19,9.2,47,0.0 +19803,33,2.5,15,0.0 +19803,47,9.5,20,0.0 +19803,67,14,49,0.0 +19804,15,15.5,18,0.0 +19804,21,10,38,0.0 +19804,5,21.35,35,0.0 +19804,1,18,5,0.0 +19804,49,20,13,0.0 +19804,17,39,31,0.0 +19804,62,49.3,46,0.0 +19804,63,43.9,19,0.0 +19804,61,28.5,13,0.0 +19804,64,33.25,25,0.0 +19804,57,19.5,47,0.0 +19804,36,19,36,0.0 +19804,50,16.25,17,0.0 +19804,16,17.45,5,0.0 +19804,41,9.65,49,0.0 +19804,4,22,42,0.0 +19804,25,14,9,0.0 +19804,12,38,3,0.0 +19804,31,12.5,30,0.0 +19804,2,19,13,0.0 +19804,20,81,2,0.0 +19804,13,6,39,0.0 +19804,72,34.8,37,0.0 +19804,60,34,46,0.0 +19804,35,18,6,0.0 +19804,45,9.5,46,0.0 +19804,58,13.25,13,0.0 +19804,66,17,32,0.0 +19804,23,9,36,0.0 +19804,11,21,33,0.0 +19804,51,53,36,0.0 +19804,27,43.9,41,0.0 +19804,74,10,13,0.0 +19804,22,21,14,0.0 +19804,40,18.4,9,0.0 +19804,76,18,23,0.0 +19804,26,31.23,32,0.0 +19804,43,46,23,0.0 +19804,46,12,44,0.0 +19804,39,18,33,0.0 +19804,30,25.89,41,0.0 +19804,47,9.5,35,0.0 +19804,28,45.6,9,0.0 +19804,8,40,21,0.0 +19804,6,25,5,0.0 +19804,48,12.75,41,0.0 +19805,11,21,13,0.0 +19805,19,9.2,40,0.0 +19805,39,18,21,0.0 +19805,26,31.23,14,0.0 +19805,12,38,40,0.0 +19805,23,9,5,0.0 +19805,1,18,14,0.0 +19805,38,263.5,47,0.0 +19805,34,14,14,0.0 +19805,15,15.5,31,0.0 +19805,65,21.05,31,0.0 +19805,70,15,45,0.0 +19805,66,17,30,0.0 +19805,40,18.4,18,0.0 +19805,67,14,12,0.0 +19805,16,17.45,8,0.0 +19805,3,10,49,0.0 +19805,28,45.6,20,0.0 +19805,20,81,10,0.0 +19805,36,19,40,0.0 +19805,45,9.5,43,0.0 +19805,51,53,50,0.0 +19805,42,14,39,0.0 +19805,4,22,49,0.0 +19805,63,43.9,26,0.0 +19805,48,12.75,27,0.0 +19805,46,12,17,0.0 +19805,77,13,32,0.0 +19805,10,31,18,0.0 +19805,71,21.5,17,0.0 +19805,64,33.25,40,0.0 +19805,31,12.5,28,0.0 +19805,53,32.8,37,0.0 +19805,27,43.9,31,0.0 +19805,41,9.65,31,0.0 +19805,55,24,36,0.0 +19805,8,40,49,0.0 +19805,75,7.75,40,0.0 +19805,68,12.5,3,0.0 +19805,22,21,16,0.0 +19805,9,97,5,0.0 +19805,49,20,1,0.0 +19805,13,6,20,0.0 +19805,14,23.25,32,0.0 +19805,43,46,40,0.0 +19805,2,19,38,0.0 +19805,6,25,50,0.0 +19805,73,15,24,0.0 +19805,61,28.5,38,0.0 +19805,72,34.8,5,0.0 +19805,56,38,41,0.0 +19805,29,123.79,4,0.0 +19805,60,34,4,0.0 +19805,76,18,15,0.0 +19805,37,26,21,0.0 +19805,57,19.5,32,0.0 +19805,30,25.89,42,0.0 +19805,18,62.5,39,0.0 +19806,51,53,17,0.0 +19806,3,10,17,0.0 +19806,61,28.5,49,0.0 +19806,35,18,3,0.0 +19806,31,12.5,16,0.0 +19806,7,30,17,0.0 +19806,72,34.8,37,0.0 +19806,25,14,12,0.0 +19806,56,38,10,0.0 +19806,68,12.5,11,0.0 +19806,65,21.05,41,0.0 +19806,14,23.25,1,0.0 +19806,41,9.65,39,0.0 +19806,21,10,31,0.0 +19807,39,18,18,0.0 +19807,73,15,25,0.0 +19807,50,16.25,30,0.0 +19807,25,14,13,0.0 +19807,10,31,33,0.0 +19807,24,4.5,36,0.0 +19807,37,26,5,0.0 +19807,63,43.9,48,0.0 +19807,55,24,48,0.0 +19807,18,62.5,31,0.0 +19807,8,40,39,0.0 +19807,72,34.8,47,0.0 +19807,58,13.25,34,0.0 +19807,12,38,22,0.0 +19807,74,10,4,0.0 +19807,35,18,35,0.0 +19807,69,36,12,0.0 +19807,20,81,16,0.0 +19807,40,18.4,26,0.0 +19807,19,9.2,23,0.0 +19807,57,19.5,34,0.0 +19807,11,21,28,0.0 +19807,65,21.05,27,0.0 +19807,75,7.75,36,0.0 +19807,3,10,27,0.0 +19807,1,18,17,0.0 +19807,48,12.75,48,0.0 +19807,42,14,15,0.0 +19807,15,15.5,38,0.0 +19807,43,46,41,0.0 +19807,54,7.45,33,0.0 +19807,32,32,10,0.0 +19807,38,263.5,6,0.0 +19807,2,19,35,0.0 +19807,52,7,21,0.0 +19807,33,2.5,46,0.0 +19807,71,21.5,19,0.0 +19807,34,14,33,0.0 +19807,26,31.23,39,0.0 +19807,36,19,44,0.0 +19807,59,55,50,0.0 +19807,22,21,15,0.0 +19807,77,13,16,0.0 +19807,67,14,44,0.0 +19807,5,21.35,20,0.0 +19807,29,123.79,43,0.0 +19807,47,9.5,6,0.0 +19807,21,10,30,0.0 +19807,56,38,22,0.0 +19807,44,19.45,4,0.0 +19807,51,53,1,0.0 +19807,30,25.89,23,0.0 +19807,64,33.25,28,0.0 +19807,45,9.5,36,0.0 +19807,46,12,23,0.0 +19807,28,45.6,31,0.0 +19807,68,12.5,15,0.0 +19807,49,20,48,0.0 +19807,16,17.45,45,0.0 +19807,23,9,44,0.0 +19807,61,28.5,16,0.0 +19807,76,18,42,0.0 +19807,53,32.8,23,0.0 +19807,27,43.9,13,0.0 +19807,17,39,31,0.0 +19807,9,97,9,0.0 +19807,6,25,6,0.0 +19807,4,22,16,0.0 +19807,60,34,11,0.0 +19807,66,17,28,0.0 +19807,62,49.3,49,0.0 +19807,31,12.5,39,0.0 +19807,13,6,7,0.0 +19807,7,30,48,0.0 +19808,67,14,41,0.0 +19808,12,38,45,0.0 +19808,56,38,31,0.0 +19808,25,14,24,0.0 +19808,27,43.9,27,0.0 +19808,22,21,41,0.0 +19808,21,10,24,0.0 +19808,15,15.5,35,0.0 +19808,59,55,43,0.0 +19808,33,2.5,47,0.0 +19808,62,49.3,16,0.0 +19808,32,32,40,0.0 +19808,54,7.45,34,0.0 +19808,24,4.5,7,0.0 +19808,60,34,23,0.0 +19808,66,17,18,0.0 +19808,35,18,35,0.0 +19808,31,12.5,3,0.0 +19808,1,18,36,0.0 +19808,17,39,8,0.0 +19808,45,9.5,30,0.0 +19808,77,13,9,0.0 +19808,10,31,25,0.0 +19808,76,18,4,0.0 +19808,39,18,26,0.0 +19808,28,45.6,28,0.0 +19808,68,12.5,34,0.0 +19808,4,22,32,0.0 +19808,53,32.8,43,0.0 +19808,37,26,38,0.0 +19809,29,123.79,27,0.0 +19809,18,62.5,14,0.0 +19809,4,22,39,0.0 +19809,60,34,14,0.0 +19809,72,34.8,38,0.0 +19809,22,21,32,0.0 +19809,70,15,43,0.0 +19809,6,25,43,0.0 +19809,63,43.9,16,0.0 +19809,40,18.4,2,0.0 +19809,36,19,6,0.0 +19809,30,25.89,26,0.0 +19809,73,15,23,0.0 +19809,24,4.5,31,0.0 +19809,59,55,37,0.0 +19809,15,15.5,50,0.0 +19809,62,49.3,10,0.0 +19809,12,38,19,0.0 +19809,26,31.23,26,0.0 +19809,1,18,31,0.0 +19809,16,17.45,32,0.0 +19809,5,21.35,45,0.0 +19809,11,21,40,0.0 +19809,45,9.5,29,0.0 +19809,58,13.25,6,0.0 +19809,3,10,11,0.0 +19809,27,43.9,36,0.0 +19809,42,14,27,0.0 +19809,77,13,26,0.0 +19809,51,53,42,0.0 +19809,25,14,28,0.0 +19809,38,263.5,24,0.0 +19809,52,7,23,0.0 +19809,54,7.45,36,0.0 +19809,35,18,26,0.0 +19809,20,81,34,0.0 +19809,7,30,27,0.0 +19809,28,45.6,34,0.0 +19809,75,7.75,30,0.0 +19809,61,28.5,5,0.0 +19809,49,20,34,0.0 +19809,31,12.5,38,0.0 +19809,39,18,20,0.0 +19809,64,33.25,26,0.0 +19809,9,97,34,0.0 +19809,57,19.5,23,0.0 +19809,69,36,23,0.0 +19809,41,9.65,10,0.0 +19809,67,14,17,0.0 +19809,37,26,36,0.0 +19809,2,19,23,0.0 +19809,43,46,16,0.0 +19809,66,17,36,0.0 +19809,23,9,7,0.0 +19809,19,9.2,50,0.0 +19809,46,12,10,0.0 +19809,34,14,21,0.0 +19809,50,16.25,48,0.0 +19809,21,10,21,0.0 +19809,32,32,50,0.0 +19810,33,2.5,6,0.0 +19810,71,21.5,40,0.0 +19810,28,45.6,1,0.0 +19810,66,17,43,0.0 +19810,58,13.25,17,0.0 +19810,39,18,28,0.0 +19810,32,32,10,0.0 +19810,68,12.5,3,0.0 +19810,12,38,15,0.0 +19810,69,36,43,0.0 +19810,64,33.25,34,0.0 +19810,15,15.5,23,0.0 +19810,74,10,35,0.0 +19810,6,25,17,0.0 +19810,47,9.5,34,0.0 +19810,63,43.9,42,0.0 +19810,1,18,7,0.0 +19810,31,12.5,43,0.0 +19810,75,7.75,36,0.0 +19810,29,123.79,13,0.0 +19810,20,81,21,0.0 +19810,41,9.65,23,0.0 +19810,65,21.05,8,0.0 +19810,44,19.45,42,0.0 +19810,56,38,46,0.0 +19810,8,40,46,0.0 +19810,27,43.9,3,0.0 +19810,26,31.23,28,0.0 +19810,3,10,25,0.0 +19810,42,14,34,0.0 +19810,60,34,47,0.0 +19810,18,62.5,43,0.0 +19810,10,31,9,0.0 +19810,21,10,4,0.0 +19810,53,32.8,2,0.0 +19810,49,20,46,0.0 +19811,36,19,36,0.0 +19811,47,9.5,42,0.0 +19811,63,43.9,46,0.0 +19811,6,25,38,0.0 +19811,25,14,37,0.0 +19811,2,19,33,0.0 +19811,43,46,16,0.0 +19811,23,9,24,0.0 +19811,16,17.45,41,0.0 +19811,70,15,26,0.0 +19811,51,53,38,0.0 +19811,12,38,48,0.0 +19811,22,21,9,0.0 +19811,64,33.25,37,0.0 +19811,71,21.5,12,0.0 +19811,13,6,44,0.0 +19811,1,18,49,0.0 +19811,44,19.45,21,0.0 +19811,74,10,43,0.0 +19811,15,15.5,8,0.0 +19811,66,17,33,0.0 +19811,37,26,8,0.0 +19811,14,23.25,42,0.0 +19811,72,34.8,11,0.0 +19811,48,12.75,34,0.0 +19811,4,22,15,0.0 +19811,40,18.4,30,0.0 +19811,27,43.9,7,0.0 +19811,39,18,14,0.0 +19811,30,25.89,49,0.0 +19811,77,13,49,0.0 +19811,58,13.25,33,0.0 +19811,35,18,47,0.0 +19811,29,123.79,18,0.0 +19811,38,263.5,13,0.0 +19811,45,9.5,14,0.0 +19811,61,28.5,15,0.0 +19811,10,31,2,0.0 +19811,41,9.65,47,0.0 +19811,9,97,12,0.0 +19811,3,10,23,0.0 +19811,20,81,21,0.0 +19811,54,7.45,7,0.0 +19811,53,32.8,9,0.0 +19811,31,12.5,19,0.0 +19811,49,20,8,0.0 +19811,42,14,27,0.0 +19811,5,21.35,38,0.0 +19811,55,24,15,0.0 +19811,56,38,31,0.0 +19811,57,19.5,15,0.0 +19811,68,12.5,4,0.0 +19811,19,9.2,1,0.0 +19811,73,15,28,0.0 +19811,28,45.6,9,0.0 +19811,18,62.5,32,0.0 +19811,76,18,39,0.0 +19811,34,14,35,0.0 +19811,62,49.3,46,0.0 +19811,24,4.5,21,0.0 +19811,21,10,29,0.0 +19811,60,34,15,0.0 +19811,8,40,41,0.0 +19811,46,12,46,0.0 +19811,65,21.05,17,0.0 +19811,17,39,48,0.0 +19811,67,14,31,0.0 +19811,59,55,28,0.0 +19811,69,36,35,0.0 +19811,32,32,47,0.0 +19811,75,7.75,48,0.0 +19812,54,7.45,5,0.0 +19812,75,7.75,16,0.0 +19812,14,23.25,30,0.0 +19812,23,9,7,0.0 +19812,6,25,42,0.0 +19812,8,40,1,0.0 +19812,2,19,36,0.0 +19812,38,263.5,45,0.0 +19812,25,14,37,0.0 +19812,60,34,17,0.0 +19812,19,9.2,13,0.0 +19812,73,15,49,0.0 +19812,36,19,39,0.0 +19812,45,9.5,15,0.0 +19812,76,18,12,0.0 +19812,35,18,36,0.0 +19812,55,24,47,0.0 +19812,37,26,3,0.0 +19812,64,33.25,35,0.0 +19812,27,43.9,17,0.0 +19812,66,17,44,0.0 +19812,13,6,47,0.0 +19812,58,13.25,44,0.0 +19812,3,10,29,0.0 +19812,51,53,41,0.0 +19812,20,81,23,0.0 +19812,53,32.8,11,0.0 +19812,10,31,50,0.0 +19812,15,15.5,10,0.0 +19812,70,15,12,0.0 +19812,44,19.45,23,0.0 +19812,57,19.5,6,0.0 +19812,21,10,31,0.0 +19812,18,62.5,8,0.0 +19812,4,22,43,0.0 +19812,39,18,31,0.0 +19812,28,45.6,27,0.0 +19812,12,38,8,0.0 +19812,24,4.5,43,0.0 +19812,16,17.45,3,0.0 +19812,59,55,15,0.0 +19813,34,14,21,0.0 +19813,8,40,6,0.0 +19813,54,7.45,16,0.0 +19813,63,43.9,19,0.0 +19813,49,20,19,0.0 +19813,70,15,26,0.0 +19813,41,9.65,26,0.0 +19813,18,62.5,40,0.0 +19813,30,25.89,45,0.0 +19813,27,43.9,20,0.0 +19813,61,28.5,47,0.0 +19813,67,14,5,0.0 +19813,4,22,38,0.0 +19813,68,12.5,17,0.0 +19813,65,21.05,13,0.0 +19813,42,14,41,0.0 +19814,46,12,49,0.0 +19814,21,10,39,0.0 +19814,35,18,16,0.0 +19814,37,26,48,0.0 +19814,40,18.4,1,0.0 +19814,73,15,34,0.0 +19814,23,9,36,0.0 +19814,65,21.05,26,0.0 +19814,22,21,16,0.0 +19814,64,33.25,19,0.0 +19814,3,10,34,0.0 +19814,76,18,34,0.0 +19814,43,46,15,0.0 +19814,32,32,45,0.0 +19814,9,97,47,0.0 +19814,11,21,32,0.0 +19814,30,25.89,45,0.0 +19814,49,20,3,0.0 +19814,66,17,45,0.0 +19814,71,21.5,25,0.0 +19814,12,38,48,0.0 +19814,16,17.45,3,0.0 +19814,38,263.5,13,0.0 +19814,52,7,50,0.0 +19814,75,7.75,8,0.0 +19814,20,81,49,0.0 +19814,18,62.5,49,0.0 +19814,67,14,13,0.0 +19814,61,28.5,28,0.0 +19814,74,10,46,0.0 +19814,44,19.45,47,0.0 +19814,33,2.5,4,0.0 +19814,5,21.35,23,0.0 +19814,69,36,38,0.0 +19814,72,34.8,1,0.0 +19814,47,9.5,11,0.0 +19814,7,30,30,0.0 +19814,77,13,37,0.0 +19814,36,19,35,0.0 +19814,57,19.5,47,0.0 +19814,68,12.5,26,0.0 +19814,8,40,39,0.0 +19814,60,34,19,0.0 +19814,19,9.2,10,0.0 +19814,39,18,40,0.0 +19814,70,15,44,0.0 +19814,17,39,35,0.0 +19814,14,23.25,16,0.0 +19814,4,22,47,0.0 +19814,26,31.23,29,0.0 +19814,55,24,28,0.0 +19814,2,19,36,0.0 +19815,24,4.5,28,0.0 +19815,75,7.75,38,0.0 +19815,51,53,34,0.0 +19815,21,10,15,0.0 +19815,11,21,44,0.0 +19815,68,12.5,8,0.0 +19815,7,30,7,0.0 +19815,63,43.9,8,0.0 +19815,69,36,49,0.0 +19815,65,21.05,23,0.0 +19815,14,23.25,26,0.0 +19815,6,25,24,0.0 +19815,67,14,46,0.0 +19815,1,18,15,0.0 +19815,46,12,45,0.0 +19815,27,43.9,38,0.0 +19815,55,24,16,0.0 +19815,12,38,47,0.0 +19815,57,19.5,30,0.0 +19815,30,25.89,42,0.0 +19815,47,9.5,13,0.0 +19815,39,18,25,0.0 +19815,70,15,24,0.0 +19815,31,12.5,43,0.0 +19815,17,39,17,0.0 +19816,42,14,50,0.0 +19816,5,21.35,37,0.0 +19816,15,15.5,26,0.0 +19816,57,19.5,1,0.0 +19816,26,31.23,35,0.0 +19816,3,10,19,0.0 +19816,54,7.45,39,0.0 +19816,41,9.65,20,0.0 +19816,37,26,16,0.0 +19816,46,12,38,0.0 +19816,53,32.8,23,0.0 +19816,25,14,50,0.0 +19817,60,34,6,0.0 +19817,41,9.65,33,0.0 +19817,46,12,45,0.0 +19817,28,45.6,22,0.0 +19817,49,20,48,0.0 +19817,70,15,34,0.0 +19817,74,10,26,0.0 +19817,25,14,1,0.0 +19817,37,26,40,0.0 +19817,57,19.5,27,0.0 +19817,17,39,36,0.0 +19817,39,18,21,0.0 +19817,23,9,29,0.0 +19817,5,21.35,23,0.0 +19817,34,14,18,0.0 +19817,3,10,8,0.0 +19817,51,53,9,0.0 +19817,26,31.23,14,0.0 +19817,52,7,46,0.0 +19817,35,18,49,0.0 +19817,36,19,9,0.0 +19817,13,6,5,0.0 +19817,68,12.5,41,0.0 +19817,76,18,6,0.0 +19817,42,14,4,0.0 +19817,47,9.5,45,0.0 +19817,9,97,47,0.0 +19817,44,19.45,17,0.0 +19817,1,18,36,0.0 +19817,71,21.5,48,0.0 +19817,8,40,31,0.0 +19817,54,7.45,12,0.0 +19817,61,28.5,29,0.0 +19817,10,31,27,0.0 +19817,53,32.8,40,0.0 +19817,38,263.5,5,0.0 +19817,43,46,44,0.0 +19817,50,16.25,26,0.0 +19817,69,36,21,0.0 +19817,67,14,32,0.0 +19817,58,13.25,6,0.0 +19817,24,4.5,22,0.0 +19817,2,19,42,0.0 +19818,11,21,12,0.0 +19818,34,14,38,0.0 +19818,5,21.35,38,0.0 +19818,68,12.5,28,0.0 +19818,54,7.45,32,0.0 +19818,26,31.23,14,0.0 +19818,59,55,37,0.0 +19818,28,45.6,7,0.0 +19818,45,9.5,18,0.0 +19818,29,123.79,50,0.0 +19818,30,25.89,16,0.0 +19818,23,9,13,0.0 +19818,15,15.5,21,0.0 +19818,74,10,38,0.0 +19818,32,32,43,0.0 +19818,76,18,47,0.0 +19818,18,62.5,31,0.0 +19818,50,16.25,34,0.0 +19818,35,18,44,0.0 +19818,7,30,32,0.0 +19818,65,21.05,22,0.0 +19818,36,19,2,0.0 +19818,19,9.2,5,0.0 +19818,70,15,36,0.0 +19818,21,10,31,0.0 +19818,27,43.9,47,0.0 +19818,24,4.5,28,0.0 +19818,67,14,40,0.0 +19818,53,32.8,7,0.0 +19818,63,43.9,33,0.0 +19818,38,263.5,31,0.0 +19818,37,26,27,0.0 +19818,77,13,36,0.0 +19818,75,7.75,10,0.0 +19818,40,18.4,28,0.0 +19818,48,12.75,16,0.0 +19818,13,6,13,0.0 +19818,22,21,22,0.0 +19819,26,31.23,39,0.0 +19819,22,21,40,0.0 +19819,54,7.45,46,0.0 +19819,2,19,2,0.0 +19819,11,21,8,0.0 +19819,72,34.8,43,0.0 +19819,39,18,43,0.0 +19819,46,12,44,0.0 +19820,4,22,47,0.0 +19820,43,46,23,0.0 +19820,75,7.75,45,0.0 +19820,59,55,17,0.0 +19820,8,40,47,0.0 +19820,58,13.25,14,0.0 +19820,66,17,21,0.0 +19820,3,10,39,0.0 +19820,15,15.5,7,0.0 +19820,28,45.6,4,0.0 +19820,45,9.5,35,0.0 +19820,51,53,14,0.0 +19820,31,12.5,17,0.0 +19820,64,33.25,42,0.0 +19820,20,81,37,0.0 +19820,40,18.4,25,0.0 +19820,16,17.45,7,0.0 +19820,63,43.9,19,0.0 +19820,38,263.5,15,0.0 +19820,47,9.5,3,0.0 +19820,46,12,42,0.0 +19820,67,14,45,0.0 +19820,76,18,7,0.0 +19820,44,19.45,37,0.0 +19820,55,24,6,0.0 +19820,2,19,6,0.0 +19820,73,15,26,0.0 +19820,37,26,12,0.0 +19820,74,10,40,0.0 +19820,10,31,39,0.0 +19820,61,28.5,14,0.0 +19820,68,12.5,9,0.0 +19820,25,14,13,0.0 +19820,26,31.23,37,0.0 +19820,6,25,29,0.0 +19820,39,18,48,0.0 +19820,23,9,33,0.0 +19820,5,21.35,16,0.0 +19820,32,32,3,0.0 +19820,53,32.8,23,0.0 +19820,30,25.89,21,0.0 +19820,69,36,33,0.0 +19820,7,30,18,0.0 +19820,54,7.45,1,0.0 +19820,24,4.5,19,0.0 +19820,19,9.2,7,0.0 +19820,27,43.9,42,0.0 +19820,48,12.75,33,0.0 +19820,41,9.65,46,0.0 +19820,42,14,1,0.0 +19820,50,16.25,49,0.0 +19820,22,21,37,0.0 +19820,62,49.3,29,0.0 +19820,1,18,14,0.0 +19820,57,19.5,41,0.0 +19820,13,6,37,0.0 +19820,36,19,34,0.0 +19820,49,20,31,0.0 +19820,70,15,17,0.0 +19820,77,13,32,0.0 +19820,35,18,36,0.0 +19820,18,62.5,26,0.0 +19821,41,9.65,13,0.0 +19821,33,2.5,25,0.0 +19821,14,23.25,45,0.0 +19821,19,9.2,50,0.0 +19821,24,4.5,7,0.0 +19821,49,20,15,0.0 +19821,77,13,9,0.0 +19821,63,43.9,30,0.0 +19821,10,31,33,0.0 +19821,36,19,15,0.0 +19821,68,12.5,6,0.0 +19821,2,19,46,0.0 +19821,8,40,1,0.0 +19821,75,7.75,44,0.0 +19821,30,25.89,9,0.0 +19821,69,36,26,0.0 +19821,54,7.45,21,0.0 +19821,55,24,3,0.0 +19821,57,19.5,4,0.0 +19821,4,22,5,0.0 +19821,61,28.5,21,0.0 +19821,6,25,28,0.0 +19821,43,46,36,0.0 +19821,48,12.75,47,0.0 +19821,52,7,37,0.0 +19821,38,263.5,31,0.0 +19821,1,18,42,0.0 +19821,3,10,34,0.0 +19821,76,18,26,0.0 +19822,75,7.75,34,0.0 +19822,19,9.2,47,0.0 +19822,41,9.65,32,0.0 +19822,32,32,16,0.0 +19822,48,12.75,35,0.0 +19822,5,21.35,15,0.0 +19822,3,10,39,0.0 +19822,1,18,42,0.0 +19822,56,38,47,0.0 +19822,64,33.25,30,0.0 +19822,8,40,33,0.0 +19823,77,13,6,0.0 +19823,69,36,29,0.0 +19823,32,32,5,0.0 +19823,60,34,29,0.0 +19823,61,28.5,13,0.0 +19823,39,18,47,0.0 +19823,63,43.9,12,0.0 +19823,52,7,41,0.0 +19823,51,53,25,0.0 +19823,70,15,8,0.0 +19823,66,17,14,0.0 +19823,22,21,12,0.0 +19823,18,62.5,40,0.0 +19823,4,22,4,0.0 +19823,46,12,6,0.0 +19823,6,25,26,0.0 +19823,44,19.45,32,0.0 +19823,38,263.5,28,0.0 +19823,1,18,12,0.0 +19823,2,19,36,0.0 +19823,73,15,22,0.0 +19823,7,30,50,0.0 +19823,23,9,33,0.0 +19823,13,6,40,0.0 +19823,16,17.45,9,0.0 +19823,71,21.5,33,0.0 +19823,64,33.25,35,0.0 +19823,48,12.75,6,0.0 +19823,47,9.5,9,0.0 +19823,15,15.5,23,0.0 +19823,31,12.5,36,0.0 +19823,40,18.4,20,0.0 +19823,36,19,50,0.0 +19823,55,24,16,0.0 +19823,19,9.2,46,0.0 +19823,14,23.25,38,0.0 +19823,9,97,24,0.0 +19823,62,49.3,13,0.0 +19823,68,12.5,48,0.0 +19823,35,18,14,0.0 +19823,27,43.9,17,0.0 +19823,37,26,49,0.0 +19823,41,9.65,30,0.0 +19823,20,81,50,0.0 +19823,21,10,10,0.0 +19823,53,32.8,13,0.0 +19823,65,21.05,47,0.0 +19823,3,10,5,0.0 +19823,50,16.25,35,0.0 +19823,45,9.5,15,0.0 +19823,24,4.5,27,0.0 +19823,10,31,40,0.0 +19823,8,40,20,0.0 +19823,76,18,39,0.0 +19823,56,38,32,0.0 +19824,19,9.2,2,0.0 +19824,64,33.25,19,0.0 +19824,41,9.65,42,0.0 +19824,77,13,17,0.0 +19824,62,49.3,11,0.0 +19824,54,7.45,39,0.0 +19824,21,10,49,0.0 +19824,23,9,11,0.0 +19824,5,21.35,17,0.0 +19824,46,12,12,0.0 +19824,29,123.79,45,0.0 +19824,59,55,31,0.0 +19824,69,36,1,0.0 +19824,20,81,50,0.0 +19824,16,17.45,44,0.0 +19824,9,97,41,0.0 +19824,4,22,13,0.0 +19824,49,20,48,0.0 +19824,44,19.45,30,0.0 +19824,3,10,41,0.0 +19824,13,6,29,0.0 +19824,74,10,24,0.0 +19824,8,40,2,0.0 +19824,67,14,23,0.0 +19824,39,18,45,0.0 +19824,68,12.5,15,0.0 +19824,61,28.5,44,0.0 +19824,57,19.5,11,0.0 +19824,27,43.9,12,0.0 +19824,33,2.5,7,0.0 +19825,45,9.5,31,0.0 +19825,70,15,22,0.0 +19825,8,40,14,0.0 +19825,64,33.25,22,0.0 +19825,53,32.8,15,0.0 +19825,74,10,34,0.0 +19825,54,7.45,37,0.0 +19825,51,53,29,0.0 +19825,42,14,16,0.0 +19825,73,15,27,0.0 +19825,29,123.79,27,0.0 +19825,22,21,44,0.0 +19825,35,18,30,0.0 +19825,56,38,45,0.0 +19825,38,263.5,29,0.0 +19825,52,7,21,0.0 +19825,40,18.4,47,0.0 +19825,24,4.5,16,0.0 +19825,68,12.5,32,0.0 +19825,28,45.6,10,0.0 +19825,18,62.5,34,0.0 +19825,55,24,19,0.0 +19825,71,21.5,12,0.0 +19825,59,55,47,0.0 +19825,3,10,36,0.0 +19825,50,16.25,16,0.0 +19825,30,25.89,22,0.0 +19825,27,43.9,20,0.0 +19825,66,17,3,0.0 +19825,61,28.5,35,0.0 +19825,60,34,23,0.0 +19825,69,36,21,0.0 +19825,49,20,34,0.0 +19825,16,17.45,42,0.0 +19825,47,9.5,30,0.0 +19825,31,12.5,21,0.0 +19825,19,9.2,37,0.0 +19825,75,7.75,7,0.0 +19825,62,49.3,3,0.0 +19825,57,19.5,24,0.0 +19825,17,39,1,0.0 +19825,77,13,46,0.0 +19825,44,19.45,7,0.0 +19825,13,6,25,0.0 +19825,46,12,15,0.0 +19825,34,14,3,0.0 +19825,5,21.35,15,0.0 +19825,41,9.65,44,0.0 +19825,2,19,24,0.0 +19825,48,12.75,15,0.0 +19826,23,9,44,0.0 +19826,28,45.6,10,0.0 +19826,27,43.9,11,0.0 +19826,4,22,19,0.0 +19826,20,81,8,0.0 +19826,56,38,6,0.0 +19826,18,62.5,10,0.0 +19826,60,34,24,0.0 +19826,53,32.8,31,0.0 +19826,24,4.5,28,0.0 +19826,29,123.79,28,0.0 +19826,65,21.05,34,0.0 +19826,5,21.35,34,0.0 +19826,63,43.9,32,0.0 +19826,77,13,21,0.0 +19827,15,15.5,5,0.0 +19827,49,20,49,0.0 +19827,65,21.05,36,0.0 +19827,47,9.5,27,0.0 +19827,29,123.79,5,0.0 +19827,75,7.75,10,0.0 +19827,32,32,23,0.0 +19827,41,9.65,48,0.0 +19827,31,12.5,7,0.0 +19827,39,18,17,0.0 +19827,52,7,24,0.0 +19827,34,14,31,0.0 +19827,16,17.45,23,0.0 +19827,18,62.5,25,0.0 +19827,9,97,35,0.0 +19827,37,26,24,0.0 +19827,1,18,45,0.0 +19827,68,12.5,21,0.0 +19827,54,7.45,33,0.0 +19827,45,9.5,35,0.0 +19827,50,16.25,11,0.0 +19827,40,18.4,38,0.0 +19827,46,12,49,0.0 +19827,23,9,18,0.0 +19827,14,23.25,48,0.0 +19827,73,15,48,0.0 +19827,59,55,47,0.0 +19827,72,34.8,35,0.0 +19827,51,53,24,0.0 +19827,53,32.8,46,0.0 +19827,69,36,42,0.0 +19827,3,10,16,0.0 +19827,12,38,35,0.0 +19827,33,2.5,44,0.0 +19827,42,14,33,0.0 +19827,2,19,33,0.0 +19827,48,12.75,27,0.0 +19827,5,21.35,37,0.0 +19827,10,31,27,0.0 +19827,6,25,36,0.0 +19827,36,19,25,0.0 +19827,70,15,32,0.0 +19827,11,21,32,0.0 +19827,71,21.5,40,0.0 +19827,25,14,9,0.0 +19827,24,4.5,45,0.0 +19827,28,45.6,17,0.0 +19827,21,10,45,0.0 +19827,58,13.25,39,0.0 +19827,66,17,18,0.0 +19827,43,46,30,0.0 +19827,55,24,10,0.0 +19827,74,10,39,0.0 +19827,26,31.23,26,0.0 +19827,57,19.5,38,0.0 +19827,63,43.9,50,0.0 +19827,17,39,35,0.0 +19827,27,43.9,32,0.0 +19827,44,19.45,25,0.0 +19828,8,40,40,0.0 +19828,69,36,13,0.0 +19828,16,17.45,37,0.0 +19828,64,33.25,26,0.0 +19828,43,46,11,0.0 +19828,71,21.5,40,0.0 +19828,35,18,18,0.0 +19828,59,55,45,0.0 +19828,70,15,21,0.0 +19828,65,21.05,42,0.0 +19829,53,32.8,49,0.0 +19829,9,97,10,0.0 +19829,24,4.5,5,0.0 +19829,1,18,7,0.0 +19829,48,12.75,23,0.0 +19829,19,9.2,22,0.0 +19829,65,21.05,46,0.0 +19829,2,19,22,0.0 +19830,20,81,44,0.0 +19830,3,10,30,0.0 +19830,9,97,25,0.0 +19830,31,12.5,14,0.0 +19830,12,38,31,0.0 +19830,30,25.89,50,0.0 +19830,77,13,11,0.0 +19830,24,4.5,42,0.0 +19830,18,62.5,14,0.0 +19830,72,34.8,11,0.0 +19830,25,14,29,0.0 +19830,61,28.5,48,0.0 +19830,11,21,42,0.0 +19830,63,43.9,21,0.0 +19830,23,9,26,0.0 +19830,2,19,39,0.0 +19830,58,13.25,34,0.0 +19830,70,15,12,0.0 +19830,56,38,16,0.0 +19830,54,7.45,22,0.0 +19830,36,19,1,0.0 +19830,14,23.25,9,0.0 +19830,6,25,12,0.0 +19830,49,20,15,0.0 +19830,5,21.35,47,0.0 +19830,16,17.45,43,0.0 +19830,68,12.5,23,0.0 +19830,50,16.25,15,0.0 +19830,46,12,30,0.0 +19830,74,10,48,0.0 +19830,35,18,10,0.0 +19830,43,46,19,0.0 +19830,33,2.5,4,0.0 +19830,76,18,37,0.0 +19830,29,123.79,39,0.0 +19830,39,18,1,0.0 +19830,34,14,22,0.0 +19830,27,43.9,6,0.0 +19830,37,26,17,0.0 +19830,48,12.75,44,0.0 +19830,4,22,36,0.0 +19830,8,40,4,0.0 +19830,19,9.2,20,0.0 +19830,62,49.3,30,0.0 +19830,71,21.5,24,0.0 +19830,40,18.4,34,0.0 +19830,60,34,8,0.0 +19830,32,32,42,0.0 +19830,15,15.5,34,0.0 +19830,51,53,32,0.0 +19830,57,19.5,48,0.0 +19830,28,45.6,28,0.0 +19830,42,14,7,0.0 +19830,73,15,9,0.0 +19830,26,31.23,29,0.0 +19830,1,18,50,0.0 +19830,66,17,46,0.0 +19830,38,263.5,14,0.0 +19830,10,31,29,0.0 +19830,22,21,15,0.0 +19830,44,19.45,25,0.0 +19830,75,7.75,25,0.0 +19831,56,38,8,0.0 +19831,50,16.25,23,0.0 +19831,69,36,13,0.0 +19831,66,17,11,0.0 +19831,19,9.2,34,0.0 +19831,36,19,49,0.0 +19831,35,18,7,0.0 +19831,74,10,21,0.0 +19831,27,43.9,29,0.0 +19831,22,21,31,0.0 +19831,26,31.23,37,0.0 +19831,15,15.5,1,0.0 +19831,46,12,41,0.0 +19831,12,38,4,0.0 +19831,51,53,1,0.0 +19831,28,45.6,22,0.0 +19831,1,18,39,0.0 +19831,42,14,19,0.0 +19831,6,25,27,0.0 +19831,24,4.5,11,0.0 +19831,77,13,9,0.0 +19831,55,24,1,0.0 +19831,41,9.65,39,0.0 +19831,10,31,42,0.0 +19831,3,10,13,0.0 +19832,54,7.45,9,0.0 +19832,31,12.5,21,0.0 +19832,76,18,40,0.0 +19832,30,25.89,2,0.0 +19832,38,263.5,20,0.0 +19832,68,12.5,40,0.0 +19832,52,7,14,0.0 +19832,21,10,12,0.0 +19832,48,12.75,19,0.0 +19832,51,53,15,0.0 +19832,15,15.5,15,0.0 +19832,7,30,3,0.0 +19832,23,9,20,0.0 +19832,56,38,23,0.0 +19832,57,19.5,31,0.0 +19832,22,21,33,0.0 +19832,25,14,27,0.0 +19832,71,21.5,14,0.0 +19832,63,43.9,26,0.0 +19832,26,31.23,42,0.0 +19832,47,9.5,42,0.0 +19832,41,9.65,46,0.0 +19832,36,19,21,0.0 +19832,34,14,19,0.0 +19832,5,21.35,32,0.0 +19832,9,97,46,0.0 +19832,45,9.5,6,0.0 +19832,62,49.3,16,0.0 +19832,59,55,8,0.0 +19832,12,38,41,0.0 +19832,32,32,9,0.0 +19832,44,19.45,18,0.0 +19832,18,62.5,30,0.0 +19832,73,15,43,0.0 +19832,66,17,36,0.0 +19832,19,9.2,48,0.0 +19832,64,33.25,45,0.0 +19832,35,18,4,0.0 +19832,77,13,42,0.0 +19832,16,17.45,10,0.0 +19832,49,20,24,0.0 +19832,39,18,1,0.0 +19832,69,36,34,0.0 +19832,13,6,8,0.0 +19832,75,7.75,27,0.0 +19832,11,21,40,0.0 +19832,3,10,47,0.0 +19832,74,10,41,0.0 +19832,8,40,20,0.0 +19832,72,34.8,8,0.0 +19832,10,31,45,0.0 +19832,70,15,28,0.0 +19832,67,14,42,0.0 +19832,14,23.25,22,0.0 +19832,33,2.5,44,0.0 +19832,53,32.8,29,0.0 +19832,17,39,44,0.0 +19832,24,4.5,2,0.0 +19832,20,81,27,0.0 +19832,50,16.25,29,0.0 +19832,1,18,18,0.0 +19832,42,14,20,0.0 +19832,58,13.25,33,0.0 +19832,61,28.5,22,0.0 +19832,43,46,19,0.0 +19832,65,21.05,43,0.0 +19832,2,19,36,0.0 +19832,28,45.6,3,0.0 +19832,29,123.79,36,0.0 +19832,4,22,50,0.0 +19832,27,43.9,36,0.0 +19832,46,12,23,0.0 +19832,6,25,38,0.0 +19833,67,14,13,0.0 +19833,22,21,22,0.0 +19833,6,25,38,0.0 +19833,45,9.5,41,0.0 +19833,21,10,33,0.0 +19833,66,17,32,0.0 +19833,2,19,28,0.0 +19833,42,14,39,0.0 +19833,46,12,43,0.0 +19833,49,20,27,0.0 +19833,32,32,41,0.0 +19833,18,62.5,9,0.0 +19833,8,40,50,0.0 +19833,15,15.5,44,0.0 +19833,31,12.5,14,0.0 +19833,63,43.9,1,0.0 +19833,59,55,46,0.0 +19833,35,18,33,0.0 +19833,58,13.25,36,0.0 +19833,77,13,45,0.0 +19833,52,7,28,0.0 +19833,39,18,45,0.0 +19833,33,2.5,23,0.0 +19833,64,33.25,27,0.0 +19833,73,15,37,0.0 +19833,7,30,49,0.0 +19833,10,31,36,0.0 +19833,54,7.45,22,0.0 +19833,14,23.25,18,0.0 +19833,40,18.4,44,0.0 +19833,44,19.45,14,0.0 +19833,72,34.8,47,0.0 +19833,12,38,33,0.0 +19833,75,7.75,11,0.0 +19833,30,25.89,13,0.0 +19833,17,39,20,0.0 +19833,27,43.9,48,0.0 +19833,26,31.23,48,0.0 +19833,62,49.3,36,0.0 +19833,60,34,17,0.0 +19833,71,21.5,34,0.0 +19833,61,28.5,31,0.0 +19833,9,97,1,0.0 +19833,74,10,6,0.0 +19833,55,24,14,0.0 +19833,48,12.75,15,0.0 +19833,11,21,6,0.0 +19833,41,9.65,31,0.0 +19833,56,38,22,0.0 +19833,69,36,27,0.0 +19833,28,45.6,21,0.0 +19833,24,4.5,47,0.0 +19833,36,19,35,0.0 +19833,47,9.5,41,0.0 +19833,5,21.35,32,0.0 +19833,3,10,30,0.0 +19833,51,53,50,0.0 +19833,1,18,26,0.0 +19833,16,17.45,14,0.0 +19833,13,6,2,0.0 +19833,50,16.25,31,0.0 +19833,4,22,22,0.0 +19833,65,21.05,8,0.0 +19833,25,14,30,0.0 +19833,19,9.2,37,0.0 +19833,68,12.5,39,0.0 +19833,43,46,26,0.0 +19834,8,40,15,0.0 +19834,66,17,30,0.0 +19834,27,43.9,7,0.0 +19834,11,21,18,0.0 +19834,45,9.5,17,0.0 +19834,59,55,11,0.0 +19834,60,34,28,0.0 +19834,14,23.25,6,0.0 +19834,13,6,27,0.0 +19834,28,45.6,38,0.0 +19834,18,62.5,24,0.0 +19834,32,32,4,0.0 +19834,29,123.79,2,0.0 +19834,74,10,6,0.0 +19834,69,36,38,0.0 +19834,73,15,14,0.0 +19834,33,2.5,49,0.0 +19834,9,97,18,0.0 +19834,24,4.5,6,0.0 +19834,37,26,24,0.0 +19834,2,19,21,0.0 +19834,36,19,35,0.0 +19834,64,33.25,44,0.0 +19834,42,14,29,0.0 +19834,76,18,30,0.0 +19834,55,24,20,0.0 +19834,25,14,13,0.0 +19834,15,15.5,21,0.0 +19834,7,30,4,0.0 +19834,67,14,2,0.0 +19834,39,18,50,0.0 +19834,62,49.3,4,0.0 +19834,41,9.65,10,0.0 +19834,71,21.5,6,0.0 +19834,40,18.4,44,0.0 +19834,22,21,42,0.0 +19834,19,9.2,31,0.0 +19834,53,32.8,31,0.0 +19834,49,20,39,0.0 +19834,5,21.35,7,0.0 +19834,17,39,20,0.0 +19834,23,9,5,0.0 +19834,72,34.8,27,0.0 +19834,65,21.05,7,0.0 +19834,51,53,29,0.0 +19834,35,18,11,0.0 +19834,1,18,41,0.0 +19834,21,10,7,0.0 +19834,16,17.45,45,0.0 +19834,38,263.5,25,0.0 +19834,47,9.5,16,0.0 +19834,6,25,38,0.0 +19834,43,46,16,0.0 +19834,75,7.75,33,0.0 +19834,34,14,30,0.0 +19834,12,38,29,0.0 +19834,54,7.45,3,0.0 +19834,44,19.45,1,0.0 +19834,63,43.9,14,0.0 +19834,77,13,17,0.0 +19835,65,21.05,26,0.0 +19835,76,18,25,0.0 +19835,72,34.8,6,0.0 +19835,32,32,39,0.0 +19835,24,4.5,28,0.0 +19835,46,12,23,0.0 +19835,73,15,5,0.0 +19835,49,20,22,0.0 +19835,9,97,45,0.0 +19835,33,2.5,37,0.0 +19835,14,23.25,23,0.0 +19835,4,22,4,0.0 +19835,70,15,9,0.0 +19835,6,25,20,0.0 +19835,17,39,39,0.0 +19835,58,13.25,14,0.0 +19835,38,263.5,42,0.0 +19835,48,12.75,28,0.0 +19835,47,9.5,13,0.0 +19835,59,55,29,0.0 +19835,27,43.9,37,0.0 +19835,35,18,5,0.0 +19835,2,19,16,0.0 +19835,31,12.5,22,0.0 +19835,3,10,18,0.0 +19835,16,17.45,29,0.0 +19835,39,18,36,0.0 +19835,15,15.5,46,0.0 +19835,61,28.5,47,0.0 +19835,64,33.25,22,0.0 +19835,8,40,22,0.0 +19835,44,19.45,50,0.0 +19835,71,21.5,26,0.0 +19835,1,18,3,0.0 +19835,52,7,29,0.0 +19835,55,24,17,0.0 +19835,69,36,32,0.0 +19835,10,31,12,0.0 +19835,21,10,12,0.0 +19835,54,7.45,16,0.0 +19835,23,9,39,0.0 +19835,75,7.75,7,0.0 +19835,60,34,13,0.0 +19835,57,19.5,43,0.0 +19835,25,14,47,0.0 +19835,42,14,13,0.0 +19835,45,9.5,25,0.0 +19835,43,46,46,0.0 +19835,62,49.3,23,0.0 +19835,36,19,45,0.0 +19835,37,26,44,0.0 +19835,67,14,46,0.0 +19835,77,13,37,0.0 +19835,7,30,31,0.0 +19835,51,53,49,0.0 +19835,30,25.89,25,0.0 +19835,19,9.2,50,0.0 +19835,20,81,9,0.0 +19835,68,12.5,3,0.0 +19835,12,38,2,0.0 +19835,28,45.6,24,0.0 +19836,12,38,14,0.0 +19836,66,17,2,0.0 +19836,31,12.5,34,0.0 +19836,45,9.5,47,0.0 +19836,35,18,48,0.0 +19836,16,17.45,35,0.0 +19836,59,55,27,0.0 +19836,47,9.5,10,0.0 +19836,48,12.75,29,0.0 +19836,38,263.5,24,0.0 +19836,10,31,32,0.0 +19836,50,16.25,7,0.0 +19836,72,34.8,36,0.0 +19836,9,97,27,0.0 +19836,73,15,48,0.0 +19836,7,30,2,0.0 +19836,42,14,27,0.0 +19836,22,21,9,0.0 +19836,37,26,26,0.0 +19836,32,32,40,0.0 +19836,71,21.5,16,0.0 +19836,33,2.5,13,0.0 +19836,52,7,5,0.0 +19836,76,18,44,0.0 +19836,46,12,3,0.0 +19836,51,53,13,0.0 +19836,49,20,44,0.0 +19836,74,10,27,0.0 +19836,61,28.5,14,0.0 +19836,64,33.25,26,0.0 +19836,13,6,25,0.0 +19836,2,19,44,0.0 +19836,58,13.25,8,0.0 +19836,26,31.23,34,0.0 +19836,5,21.35,33,0.0 +19836,27,43.9,50,0.0 +19836,25,14,50,0.0 +19836,43,46,50,0.0 +19836,57,19.5,25,0.0 +19836,28,45.6,24,0.0 +19836,23,9,12,0.0 +19836,11,21,7,0.0 +19836,17,39,15,0.0 +19836,53,32.8,20,0.0 +19836,14,23.25,30,0.0 +19836,65,21.05,23,0.0 +19836,40,18.4,34,0.0 +19836,4,22,19,0.0 +19836,21,10,38,0.0 +19836,56,38,5,0.0 +19836,75,7.75,25,0.0 +19836,41,9.65,2,0.0 +19836,77,13,29,0.0 +19836,69,36,44,0.0 +19836,29,123.79,28,0.0 +19836,6,25,35,0.0 +19836,55,24,19,0.0 +19836,60,34,14,0.0 +19836,19,9.2,9,0.0 +19836,54,7.45,48,0.0 +19836,20,81,42,0.0 +19836,15,15.5,7,0.0 +19836,44,19.45,11,0.0 +19836,39,18,21,0.0 +19836,30,25.89,36,0.0 +19836,67,14,47,0.0 +19836,3,10,48,0.0 +19836,36,19,34,0.0 +19836,62,49.3,25,0.0 +19836,68,12.5,22,0.0 +19837,41,9.65,6,0.0 +19837,20,81,46,0.0 +19837,16,17.45,41,0.0 +19837,72,34.8,5,0.0 +19837,64,33.25,24,0.0 +19837,18,62.5,32,0.0 +19837,73,15,49,0.0 +19837,27,43.9,45,0.0 +19837,35,18,45,0.0 +19837,3,10,10,0.0 +19837,56,38,13,0.0 +19837,6,25,32,0.0 +19837,75,7.75,33,0.0 +19837,52,7,44,0.0 +19837,15,15.5,30,0.0 +19837,1,18,4,0.0 +19837,17,39,10,0.0 +19837,11,21,28,0.0 +19837,29,123.79,34,0.0 +19837,71,21.5,40,0.0 +19837,19,9.2,8,0.0 +19837,55,24,35,0.0 +19837,43,46,6,0.0 +19837,25,14,20,0.0 +19837,30,25.89,41,0.0 +19837,5,21.35,20,0.0 +19837,38,263.5,15,0.0 +19837,60,34,48,0.0 +19837,49,20,42,0.0 +19837,69,36,8,0.0 +19837,66,17,33,0.0 +19837,7,30,21,0.0 +19837,10,31,46,0.0 +19837,28,45.6,3,0.0 +19837,67,14,23,0.0 +19837,14,23.25,1,0.0 +19837,53,32.8,28,0.0 +19837,34,14,22,0.0 +19837,54,7.45,45,0.0 +19837,59,55,5,0.0 +19837,57,19.5,41,0.0 +19837,36,19,44,0.0 +19837,2,19,8,0.0 +19837,33,2.5,35,0.0 +19837,21,10,21,0.0 +19837,48,12.75,24,0.0 +19837,4,22,30,0.0 +19837,50,16.25,21,0.0 +19837,22,21,45,0.0 +19837,74,10,11,0.0 +19837,39,18,26,0.0 +19837,68,12.5,36,0.0 +19837,45,9.5,7,0.0 +19837,76,18,19,0.0 +19837,61,28.5,47,0.0 +19837,46,12,28,0.0 +19837,65,21.05,32,0.0 +19837,58,13.25,17,0.0 +19837,31,12.5,20,0.0 +19837,23,9,23,0.0 +19837,70,15,14,0.0 +19837,12,38,26,0.0 +19837,32,32,49,0.0 +19837,37,26,15,0.0 +19837,24,4.5,32,0.0 +19837,13,6,32,0.0 +19838,73,15,12,0.0 +19838,5,21.35,47,0.0 +19838,43,46,48,0.0 +19838,32,32,29,0.0 +19838,15,15.5,29,0.0 +19838,62,49.3,3,0.0 +19838,60,34,19,0.0 +19838,34,14,45,0.0 +19838,57,19.5,4,0.0 +19838,65,21.05,32,0.0 +19838,58,13.25,44,0.0 +19838,48,12.75,33,0.0 +19838,25,14,5,0.0 +19839,76,18,11,0.0 +19839,50,16.25,41,0.0 +19839,56,38,4,0.0 +19839,33,2.5,27,0.0 +19839,17,39,4,0.0 +19839,64,33.25,34,0.0 +19839,39,18,2,0.0 +19839,2,19,20,0.0 +19839,60,34,44,0.0 +19839,52,7,35,0.0 +19839,46,12,15,0.0 +19839,7,30,9,0.0 +19839,43,46,40,0.0 +19839,9,97,28,0.0 +19839,66,17,27,0.0 +19839,54,7.45,39,0.0 +19839,53,32.8,48,0.0 +19839,5,21.35,39,0.0 +19839,68,12.5,40,0.0 +19839,67,14,25,0.0 +19839,10,31,23,0.0 +19839,12,38,39,0.0 +19839,75,7.75,19,0.0 +19839,3,10,38,0.0 +19839,37,26,31,0.0 +19839,24,4.5,44,0.0 +19839,77,13,39,0.0 +19839,45,9.5,47,0.0 +19839,13,6,10,0.0 +19839,51,53,41,0.0 +19839,23,9,34,0.0 +19839,16,17.45,2,0.0 +19839,70,15,6,0.0 +19839,59,55,22,0.0 +19839,6,25,48,0.0 +19839,57,19.5,10,0.0 +19839,28,45.6,14,0.0 +19839,27,43.9,34,0.0 +19839,47,9.5,40,0.0 +19839,65,21.05,41,0.0 +19839,42,14,8,0.0 +19839,61,28.5,1,0.0 +19839,36,19,46,0.0 +19839,48,12.75,22,0.0 +19839,41,9.65,42,0.0 +19839,32,32,42,0.0 +19839,30,25.89,6,0.0 +19839,71,21.5,24,0.0 +19839,44,19.45,12,0.0 +19839,38,263.5,38,0.0 +19839,1,18,47,0.0 +19839,35,18,3,0.0 +19839,19,9.2,6,0.0 +19839,74,10,44,0.0 +19839,72,34.8,18,0.0 +19839,26,31.23,41,0.0 +19839,62,49.3,49,0.0 +19839,55,24,30,0.0 +19839,58,13.25,48,0.0 +19839,29,123.79,14,0.0 +19839,21,10,15,0.0 +19839,18,62.5,50,0.0 +19839,14,23.25,13,0.0 +19839,63,43.9,47,0.0 +19839,69,36,20,0.0 +19839,15,15.5,8,0.0 +19839,11,21,23,0.0 +19839,34,14,15,0.0 +19839,40,18.4,11,0.0 +19839,31,12.5,13,0.0 +19839,20,81,17,0.0 +19839,4,22,32,0.0 +19839,25,14,32,0.0 +19839,8,40,1,0.0 +19839,22,21,47,0.0 +19839,49,20,24,0.0 +19840,74,10,16,0.0 +19840,4,22,43,0.0 +19840,75,7.75,19,0.0 +19840,38,263.5,28,0.0 +19840,39,18,15,0.0 +19840,77,13,20,0.0 +19840,2,19,42,0.0 +19840,41,9.65,48,0.0 +19840,14,23.25,27,0.0 +19840,66,17,17,0.0 +19840,1,18,24,0.0 +19840,56,38,50,0.0 +19840,58,13.25,19,0.0 +19840,29,123.79,5,0.0 +19840,52,7,48,0.0 +19840,51,53,9,0.0 +19840,28,45.6,19,0.0 +19840,9,97,18,0.0 +19840,17,39,9,0.0 +19840,64,33.25,13,0.0 +19840,20,81,10,0.0 +19840,45,9.5,49,0.0 +19840,63,43.9,22,0.0 +19840,55,24,16,0.0 +19840,23,9,33,0.0 +19840,37,26,39,0.0 +19840,16,17.45,49,0.0 +19840,61,28.5,17,0.0 +19840,11,21,37,0.0 +19840,57,19.5,49,0.0 +19840,53,32.8,29,0.0 +19840,3,10,22,0.0 +19840,5,21.35,33,0.0 +19840,8,40,40,0.0 +19840,24,4.5,49,0.0 +19840,76,18,3,0.0 +19840,18,62.5,7,0.0 +19840,62,49.3,39,0.0 +19840,36,19,8,0.0 +19840,19,9.2,17,0.0 +19840,42,14,17,0.0 +19840,72,34.8,31,0.0 +19840,59,55,2,0.0 +19840,50,16.25,6,0.0 +19840,33,2.5,18,0.0 +19840,68,12.5,19,0.0 +19840,32,32,15,0.0 +19840,67,14,31,0.0 +19840,30,25.89,38,0.0 +19840,65,21.05,22,0.0 +19840,6,25,25,0.0 +19840,43,46,44,0.0 +19840,10,31,19,0.0 +19840,46,12,33,0.0 +19840,34,14,50,0.0 +19840,22,21,18,0.0 +19840,70,15,22,0.0 +19840,12,38,42,0.0 +19840,73,15,6,0.0 +19840,40,18.4,18,0.0 +19840,47,9.5,11,0.0 +19840,69,36,41,0.0 +19840,35,18,47,0.0 +19840,48,12.75,34,0.0 +19840,44,19.45,12,0.0 +19840,49,20,47,0.0 +19840,31,12.5,47,0.0 +19840,7,30,16,0.0 +19840,21,10,19,0.0 +19840,15,15.5,7,0.0 +19841,54,7.45,34,0.0 +19841,46,12,37,0.0 +19841,70,15,5,0.0 +19841,75,7.75,30,0.0 +19841,26,31.23,36,0.0 +19841,36,19,50,0.0 +19841,59,55,47,0.0 +19841,39,18,35,0.0 +19841,76,18,10,0.0 +19841,68,12.5,41,0.0 +19841,20,81,20,0.0 +19841,44,19.45,18,0.0 +19841,4,22,17,0.0 +19841,5,21.35,29,0.0 +19841,65,21.05,2,0.0 +19841,52,7,24,0.0 +19841,66,17,10,0.0 +19842,30,25.89,32,0.0 +19842,40,18.4,14,0.0 +19842,4,22,30,0.0 +19842,13,6,25,0.0 +19842,69,36,6,0.0 +19842,1,18,35,0.0 +19842,37,26,25,0.0 +19842,35,18,5,0.0 +19842,5,21.35,23,0.0 +19842,51,53,2,0.0 +19842,19,9.2,38,0.0 +19842,56,38,34,0.0 +19842,18,62.5,11,0.0 +19842,74,10,8,0.0 +19842,7,30,47,0.0 +19842,27,43.9,27,0.0 +19842,46,12,3,0.0 +19842,61,28.5,3,0.0 +19842,49,20,50,0.0 +19842,2,19,17,0.0 +19842,33,2.5,12,0.0 +19842,17,39,38,0.0 +19842,50,16.25,32,0.0 +19842,75,7.75,25,0.0 +19842,36,19,25,0.0 +19842,31,12.5,3,0.0 +19842,53,32.8,33,0.0 +19842,43,46,40,0.0 +19842,70,15,25,0.0 +19842,77,13,47,0.0 +19842,47,9.5,45,0.0 +19842,67,14,30,0.0 +19842,44,19.45,5,0.0 +19842,11,21,23,0.0 +19842,3,10,25,0.0 +19842,16,17.45,2,0.0 +19842,12,38,33,0.0 +19842,8,40,12,0.0 +19842,39,18,42,0.0 +19842,71,21.5,5,0.0 +19842,9,97,44,0.0 +19842,22,21,42,0.0 +19842,26,31.23,33,0.0 +19842,21,10,41,0.0 +19842,48,12.75,42,0.0 +19842,54,7.45,39,0.0 +19842,66,17,22,0.0 +19842,15,15.5,34,0.0 +19842,73,15,39,0.0 +19842,65,21.05,42,0.0 +19842,45,9.5,46,0.0 +19842,23,9,23,0.0 +19842,32,32,37,0.0 +19842,28,45.6,12,0.0 +19842,20,81,16,0.0 +19842,38,263.5,47,0.0 +19843,30,25.89,8,0.0 +19843,54,7.45,2,0.0 +19843,59,55,46,0.0 +19843,74,10,30,0.0 +19843,50,16.25,37,0.0 +19843,43,46,9,0.0 +19843,23,9,34,0.0 +19844,75,7.75,17,0.0 +19844,50,16.25,49,0.0 +19844,64,33.25,43,0.0 +19844,73,15,47,0.0 +19844,18,62.5,31,0.0 +19844,22,21,8,0.0 +19844,38,263.5,6,0.0 +19844,26,31.23,20,0.0 +19844,43,46,12,0.0 +19844,66,17,36,0.0 +19844,35,18,46,0.0 +19844,49,20,8,0.0 +19844,39,18,3,0.0 +19844,77,13,22,0.0 +19844,59,55,18,0.0 +19844,58,13.25,23,0.0 +19844,72,34.8,45,0.0 +19844,27,43.9,37,0.0 +19844,24,4.5,13,0.0 +19844,51,53,29,0.0 +19844,10,31,48,0.0 +19844,16,17.45,3,0.0 +19844,4,22,29,0.0 +19844,60,34,37,0.0 +19844,19,9.2,14,0.0 +19844,20,81,13,0.0 +19844,8,40,9,0.0 +19844,13,6,5,0.0 +19844,37,26,18,0.0 +19844,21,10,30,0.0 +19844,32,32,49,0.0 +19844,74,10,37,0.0 +19844,67,14,16,0.0 +19844,40,18.4,33,0.0 +19844,11,21,6,0.0 +19844,68,12.5,15,0.0 +19844,36,19,41,0.0 +19844,44,19.45,23,0.0 +19844,25,14,22,0.0 +19844,9,97,31,0.0 +19844,23,9,43,0.0 +19844,5,21.35,33,0.0 +19844,52,7,46,0.0 +19844,29,123.79,47,0.0 +19844,33,2.5,44,0.0 +19844,55,24,9,0.0 +19844,7,30,40,0.0 +19844,1,18,36,0.0 +19844,3,10,3,0.0 +19845,67,14,38,0.0 +19845,74,10,7,0.0 +19845,51,53,44,0.0 +19845,39,18,16,0.0 +19845,19,9.2,19,0.0 +19845,76,18,49,0.0 +19845,75,7.75,35,0.0 +19845,7,30,36,0.0 +19845,72,34.8,38,0.0 +19845,42,14,4,0.0 +19845,63,43.9,27,0.0 +19846,72,34.8,37,0.0 +19846,8,40,33,0.0 +19846,44,19.45,2,0.0 +19846,41,9.65,48,0.0 +19846,29,123.79,15,0.0 +19846,24,4.5,50,0.0 +19846,13,6,45,0.0 +19846,49,20,50,0.0 +19846,51,53,11,0.0 +19846,6,25,34,0.0 +19846,50,16.25,10,0.0 +19846,61,28.5,6,0.0 +19846,68,12.5,18,0.0 +19846,54,7.45,13,0.0 +19846,56,38,42,0.0 +19846,36,19,32,0.0 +19846,34,14,49,0.0 +19846,57,19.5,12,0.0 +19846,73,15,30,0.0 +19846,77,13,27,0.0 +19846,37,26,10,0.0 +19846,59,55,38,0.0 +19846,7,30,36,0.0 +19846,27,43.9,24,0.0 +19846,25,14,47,0.0 +19846,23,9,2,0.0 +19846,46,12,46,0.0 +19846,52,7,6,0.0 +19846,43,46,35,0.0 +19846,39,18,17,0.0 +19846,48,12.75,2,0.0 +19846,33,2.5,49,0.0 +19846,9,97,41,0.0 +19846,35,18,22,0.0 +19846,58,13.25,40,0.0 +19846,64,33.25,30,0.0 +19847,18,62.5,4,0.0 +19847,6,25,21,0.0 +19847,77,13,22,0.0 +19847,33,2.5,41,0.0 +19847,44,19.45,38,0.0 +19847,48,12.75,5,0.0 +19847,62,49.3,2,0.0 +19847,39,18,50,0.0 +19847,51,53,4,0.0 +19847,60,34,29,0.0 +19847,24,4.5,33,0.0 +19847,27,43.9,18,0.0 +19847,52,7,36,0.0 +19847,59,55,16,0.0 +19847,13,6,41,0.0 +19847,28,45.6,24,0.0 +19847,54,7.45,7,0.0 +19848,36,19,10,0.0 +19848,63,43.9,6,0.0 +19848,77,13,8,0.0 +19848,73,15,25,0.0 +19848,60,34,28,0.0 +19848,26,31.23,50,0.0 +19848,21,10,32,0.0 +19848,25,14,46,0.0 +19848,18,62.5,13,0.0 +19848,34,14,29,0.0 +19848,16,17.45,47,0.0 +19848,10,31,42,0.0 +19848,55,24,47,0.0 +19849,15,15.5,19,0.0 +19849,55,24,25,0.0 +19849,45,9.5,6,0.0 +19849,43,46,8,0.0 +19849,63,43.9,8,0.0 +19849,61,28.5,29,0.0 +19849,5,21.35,32,0.0 +19849,42,14,8,0.0 +19849,52,7,22,0.0 +19849,24,4.5,43,0.0 +19849,19,9.2,29,0.0 +19849,57,19.5,21,0.0 +19849,36,19,23,0.0 +19849,40,18.4,48,0.0 +19849,9,97,14,0.0 +19849,60,34,16,0.0 +19849,38,263.5,42,0.0 +19849,4,22,46,0.0 +19849,1,18,30,0.0 +19849,28,45.6,39,0.0 +19849,39,18,9,0.0 +19849,35,18,19,0.0 +19849,21,10,8,0.0 +19849,51,53,45,0.0 +19849,20,81,15,0.0 +19849,34,14,46,0.0 +19849,46,12,43,0.0 +19849,75,7.75,35,0.0 +19849,54,7.45,5,0.0 +19849,3,10,8,0.0 +19849,67,14,14,0.0 +19849,66,17,41,0.0 +19849,68,12.5,3,0.0 +19849,56,38,33,0.0 +19849,70,15,36,0.0 +19849,47,9.5,40,0.0 +19849,62,49.3,12,0.0 +19849,71,21.5,30,0.0 +19849,49,20,37,0.0 +19849,14,23.25,48,0.0 +19849,16,17.45,49,0.0 +19849,65,21.05,32,0.0 +19849,2,19,20,0.0 +19849,22,21,37,0.0 +19849,53,32.8,2,0.0 +19849,10,31,32,0.0 +19849,50,16.25,33,0.0 +19849,77,13,39,0.0 +19849,17,39,44,0.0 +19849,13,6,33,0.0 +19849,31,12.5,36,0.0 +19849,23,9,48,0.0 +19849,18,62.5,26,0.0 +19850,24,4.5,4,0.0 +19850,9,97,28,0.0 +19850,45,9.5,37,0.0 +19850,71,21.5,20,0.0 +19850,47,9.5,6,0.0 +19850,35,18,39,0.0 +19850,43,46,37,0.0 +19850,50,16.25,41,0.0 +19850,20,81,9,0.0 +19850,27,43.9,2,0.0 +19850,6,25,41,0.0 +19850,15,15.5,26,0.0 +19850,37,26,47,0.0 +19850,39,18,50,0.0 +19850,68,12.5,23,0.0 +19850,33,2.5,3,0.0 +19850,63,43.9,17,0.0 +19850,67,14,9,0.0 +19850,4,22,47,0.0 +19850,41,9.65,13,0.0 +19850,5,21.35,20,0.0 +19850,69,36,22,0.0 +19850,53,32.8,39,0.0 +19850,49,20,42,0.0 +19850,30,25.89,42,0.0 +19850,8,40,18,0.0 +19850,21,10,24,0.0 +19850,31,12.5,17,0.0 +19850,54,7.45,5,0.0 +19850,56,38,13,0.0 +19850,72,34.8,19,0.0 +19850,77,13,35,0.0 +19850,46,12,17,0.0 +19850,73,15,37,0.0 +19850,11,21,8,0.0 +19850,66,17,18,0.0 +19850,52,7,6,0.0 +19850,7,30,33,0.0 +19850,65,21.05,23,0.0 +19850,25,14,31,0.0 +19850,61,28.5,47,0.0 +19850,12,38,31,0.0 +19850,17,39,40,0.0 +19850,48,12.75,48,0.0 +19850,40,18.4,25,0.0 +19850,2,19,31,0.0 +19850,58,13.25,30,0.0 +19850,74,10,20,0.0 +19850,60,34,7,0.0 +19850,59,55,42,0.0 +19850,42,14,27,0.0 +19850,14,23.25,16,0.0 +19850,23,9,4,0.0 +19850,22,21,46,0.0 +19850,38,263.5,23,0.0 +19850,44,19.45,34,0.0 +19850,76,18,16,0.0 +19850,13,6,41,0.0 +19850,3,10,30,0.0 +19850,32,32,32,0.0 +19850,75,7.75,1,0.0 +19850,18,62.5,47,0.0 +19850,19,9.2,28,0.0 +19850,70,15,13,0.0 +19850,62,49.3,21,0.0 +19850,16,17.45,28,0.0 +19850,28,45.6,31,0.0 +19850,26,31.23,9,0.0 +19850,1,18,39,0.0 +19850,34,14,24,0.0 +19850,51,53,16,0.0 +19850,10,31,35,0.0 +19850,36,19,37,0.0 +19851,33,2.5,6,0.0 +19851,11,21,44,0.0 +19851,42,14,35,0.0 +19851,27,43.9,34,0.0 +19852,53,32.8,3,0.0 +19852,54,7.45,47,0.0 +19852,14,23.25,35,0.0 +19852,35,18,24,0.0 +19852,8,40,22,0.0 +19852,27,43.9,8,0.0 +19852,43,46,42,0.0 +19852,42,14,31,0.0 +19852,37,26,33,0.0 +19852,11,21,2,0.0 +19852,49,20,39,0.0 +19852,34,14,40,0.0 +19852,47,9.5,33,0.0 +19852,26,31.23,36,0.0 +19852,19,9.2,16,0.0 +19852,22,21,22,0.0 +19852,48,12.75,1,0.0 +19852,70,15,4,0.0 +19852,16,17.45,20,0.0 +19852,28,45.6,29,0.0 +19852,55,24,34,0.0 +19852,72,34.8,27,0.0 +19852,71,21.5,46,0.0 +19852,5,21.35,28,0.0 +19852,64,33.25,47,0.0 +19852,44,19.45,30,0.0 +19852,18,62.5,38,0.0 +19852,60,34,32,0.0 +19852,41,9.65,29,0.0 +19852,57,19.5,30,0.0 +19852,63,43.9,37,0.0 +19852,65,21.05,6,0.0 +19852,45,9.5,28,0.0 +19852,38,263.5,34,0.0 +19852,50,16.25,2,0.0 +19852,9,97,46,0.0 +19852,75,7.75,19,0.0 +19853,44,19.45,30,0.0 +19853,13,6,9,0.0 +19853,67,14,46,0.0 +19853,40,18.4,43,0.0 +19853,41,9.65,19,0.0 +19854,67,14,7,0.0 +19854,62,49.3,47,0.0 +19854,31,12.5,19,0.0 +19854,15,15.5,30,0.0 +19854,7,30,25,0.0 +19854,16,17.45,16,0.0 +19854,19,9.2,36,0.0 +19854,59,55,29,0.0 +19854,65,21.05,12,0.0 +19854,70,15,22,0.0 +19854,12,38,7,0.0 +19854,27,43.9,11,0.0 +19854,75,7.75,3,0.0 +19854,11,21,31,0.0 +19854,61,28.5,46,0.0 +19854,73,15,38,0.0 +19854,47,9.5,28,0.0 +19854,23,9,19,0.0 +19854,49,20,48,0.0 +19854,48,12.75,2,0.0 +19854,44,19.45,39,0.0 +19854,4,22,15,0.0 +19854,32,32,32,0.0 +19854,14,23.25,23,0.0 +19854,52,7,17,0.0 +19854,5,21.35,44,0.0 +19854,36,19,35,0.0 +19854,66,17,33,0.0 +19854,6,25,46,0.0 +19854,42,14,48,0.0 +19854,34,14,25,0.0 +19854,8,40,42,0.0 +19854,13,6,24,0.0 +19854,76,18,29,0.0 +19854,39,18,35,0.0 +19854,53,32.8,40,0.0 +19854,41,9.65,12,0.0 +19854,38,263.5,8,0.0 +19854,21,10,9,0.0 +19854,74,10,23,0.0 +19854,10,31,35,0.0 +19854,29,123.79,21,0.0 +19854,63,43.9,35,0.0 +19854,68,12.5,34,0.0 +19854,60,34,17,0.0 +19854,43,46,44,0.0 +19854,46,12,19,0.0 +19854,1,18,3,0.0 +19854,18,62.5,40,0.0 +19854,50,16.25,12,0.0 +19854,58,13.25,9,0.0 +19854,64,33.25,44,0.0 +19854,55,24,2,0.0 +19854,72,34.8,4,0.0 +19854,17,39,24,0.0 +19854,56,38,11,0.0 +19854,9,97,16,0.0 +19854,20,81,21,0.0 +19854,69,36,25,0.0 +19854,3,10,18,0.0 +19854,26,31.23,1,0.0 +19854,25,14,31,0.0 +19854,35,18,4,0.0 +19854,45,9.5,45,0.0 +19854,37,26,35,0.0 +19854,77,13,12,0.0 +19854,30,25.89,25,0.0 +19854,24,4.5,8,0.0 +19854,40,18.4,3,0.0 +19854,51,53,3,0.0 +19854,2,19,36,0.0 +19854,54,7.45,14,0.0 +19855,9,97,27,0.0 +19855,61,28.5,35,0.0 +19855,41,9.65,21,0.0 +19855,42,14,23,0.0 +19855,49,20,38,0.0 +19855,29,123.79,17,0.0 +19855,73,15,15,0.0 +19855,3,10,19,0.0 +19855,59,55,50,0.0 +19855,77,13,3,0.0 +19855,24,4.5,10,0.0 +19855,22,21,12,0.0 +19855,28,45.6,17,0.0 +19855,51,53,2,0.0 +19855,15,15.5,46,0.0 +19855,44,19.45,23,0.0 +19855,6,25,34,0.0 +19855,54,7.45,27,0.0 +19855,23,9,29,0.0 +19855,26,31.23,13,0.0 +19855,35,18,31,0.0 +19855,8,40,9,0.0 +19855,12,38,18,0.0 +19855,64,33.25,8,0.0 +19855,14,23.25,1,0.0 +19855,62,49.3,42,0.0 +19855,68,12.5,42,0.0 +19855,58,13.25,44,0.0 +19855,55,24,26,0.0 +19855,47,9.5,43,0.0 +19855,75,7.75,18,0.0 +19856,40,18.4,6,0.0 +19856,20,81,31,0.0 +19856,77,13,10,0.0 +19856,56,38,34,0.0 +19856,37,26,16,0.0 +19856,50,16.25,14,0.0 +19856,75,7.75,16,0.0 +19856,55,24,24,0.0 +19856,69,36,12,0.0 +19856,23,9,36,0.0 +19856,27,43.9,7,0.0 +19856,25,14,2,0.0 +19856,5,21.35,24,0.0 +19856,13,6,35,0.0 +19856,60,34,37,0.0 +19856,18,62.5,10,0.0 +19856,68,12.5,21,0.0 +19856,47,9.5,44,0.0 +19856,32,32,11,0.0 +19856,19,9.2,44,0.0 +19856,31,12.5,6,0.0 +19856,4,22,47,0.0 +19856,22,21,7,0.0 +19856,30,25.89,37,0.0 +19856,61,28.5,32,0.0 +19856,51,53,23,0.0 +19856,21,10,7,0.0 +19856,7,30,26,0.0 +19856,8,40,10,0.0 +19856,12,38,11,0.0 +19856,14,23.25,29,0.0 +19856,9,97,25,0.0 +19856,76,18,32,0.0 +19856,41,9.65,41,0.0 +19856,71,21.5,37,0.0 +19856,28,45.6,37,0.0 +19856,67,14,2,0.0 +19856,53,32.8,24,0.0 +19856,11,21,6,0.0 +19856,46,12,10,0.0 +19856,35,18,18,0.0 +19856,64,33.25,8,0.0 +19856,16,17.45,2,0.0 +19856,63,43.9,24,0.0 +19856,38,263.5,45,0.0 +19856,2,19,10,0.0 +19856,57,19.5,26,0.0 +19856,59,55,6,0.0 +19856,66,17,8,0.0 +19856,73,15,9,0.0 +19856,29,123.79,18,0.0 +19856,48,12.75,13,0.0 +19856,6,25,27,0.0 +19856,44,19.45,41,0.0 +19856,39,18,3,0.0 +19856,17,39,13,0.0 +19856,3,10,35,0.0 +19856,34,14,17,0.0 +19856,52,7,9,0.0 +19856,42,14,11,0.0 +19856,24,4.5,15,0.0 +19856,26,31.23,15,0.0 +19856,36,19,38,0.0 +19856,45,9.5,44,0.0 +19856,49,20,1,0.0 +19856,70,15,43,0.0 +19857,14,23.25,44,0.0 +19857,34,14,26,0.0 +19857,8,40,2,0.0 +19857,19,9.2,37,0.0 +19857,67,14,11,0.0 +19857,11,21,34,0.0 +19857,30,25.89,26,0.0 +19857,16,17.45,23,0.0 +19857,1,18,47,0.0 +19857,56,38,29,0.0 +19857,32,32,21,0.0 +19857,73,15,20,0.0 +19857,68,12.5,23,0.0 +19857,9,97,24,0.0 +19857,33,2.5,6,0.0 +19857,70,15,30,0.0 +19857,25,14,27,0.0 +19857,47,9.5,2,0.0 +19857,55,24,16,0.0 +19857,5,21.35,48,0.0 +19857,76,18,19,0.0 +19857,58,13.25,9,0.0 +19857,65,21.05,14,0.0 +19857,75,7.75,50,0.0 +19857,2,19,38,0.0 +19857,45,9.5,13,0.0 +19857,29,123.79,21,0.0 +19857,37,26,23,0.0 +19857,44,19.45,9,0.0 +19857,27,43.9,39,0.0 +19857,63,43.9,12,0.0 +19857,61,28.5,44,0.0 +19857,59,55,12,0.0 +19857,51,53,24,0.0 +19857,4,22,48,0.0 +19857,7,30,47,0.0 +19857,48,12.75,10,0.0 +19857,52,7,4,0.0 +19857,64,33.25,44,0.0 +19857,43,46,36,0.0 +19857,23,9,15,0.0 +19857,57,19.5,14,0.0 +19857,40,18.4,44,0.0 +19857,54,7.45,49,0.0 +19857,41,9.65,9,0.0 +19857,46,12,11,0.0 +19857,26,31.23,15,0.0 +19857,24,4.5,14,0.0 +19857,53,32.8,27,0.0 +19857,17,39,20,0.0 +19857,42,14,26,0.0 +19857,39,18,5,0.0 +19857,20,81,2,0.0 +19857,31,12.5,38,0.0 +19857,12,38,43,0.0 +19857,69,36,7,0.0 +19857,21,10,21,0.0 +19857,60,34,43,0.0 +19857,50,16.25,15,0.0 +19857,13,6,28,0.0 +19857,15,15.5,26,0.0 +19857,6,25,30,0.0 +19858,1,18,44,0.0 +19858,67,14,12,0.0 +19858,41,9.65,31,0.0 +19858,54,7.45,36,0.0 +19858,55,24,28,0.0 +19858,73,15,39,0.0 +19858,56,38,1,0.0 +19858,36,19,31,0.0 +19858,44,19.45,12,0.0 +19858,65,21.05,43,0.0 +19858,17,39,39,0.0 +19858,62,49.3,45,0.0 +19858,64,33.25,36,0.0 +19858,28,45.6,5,0.0 +19858,50,16.25,13,0.0 +19858,57,19.5,30,0.0 +19858,5,21.35,8,0.0 +19858,12,38,35,0.0 +19858,35,18,36,0.0 +19858,37,26,20,0.0 +19858,75,7.75,37,0.0 +19858,8,40,10,0.0 +19858,24,4.5,30,0.0 +19858,52,7,27,0.0 +19858,6,25,29,0.0 +19858,25,14,45,0.0 +19858,31,12.5,4,0.0 +19858,76,18,34,0.0 +19858,49,20,16,0.0 +19858,16,17.45,26,0.0 +19858,45,9.5,27,0.0 +19858,32,32,46,0.0 +19858,74,10,40,0.0 +19858,43,46,31,0.0 +19858,68,12.5,47,0.0 +19858,66,17,6,0.0 +19858,4,22,19,0.0 +19858,10,31,26,0.0 +19858,7,30,50,0.0 +19858,22,21,41,0.0 +19858,48,12.75,45,0.0 +19858,63,43.9,46,0.0 +19858,2,19,37,0.0 +19859,7,30,8,0.0 +19859,42,14,40,0.0 +19859,18,62.5,16,0.0 +19859,5,21.35,42,0.0 +19859,8,40,9,0.0 +19859,15,15.5,48,0.0 +19859,9,97,50,0.0 +19859,56,38,38,0.0 +19859,29,123.79,7,0.0 +19859,27,43.9,22,0.0 +19859,16,17.45,9,0.0 +19859,19,9.2,11,0.0 +19859,33,2.5,50,0.0 +19859,47,9.5,36,0.0 +19859,61,28.5,2,0.0 +19859,4,22,20,0.0 +19859,12,38,44,0.0 +19859,62,49.3,22,0.0 +19859,63,43.9,23,0.0 +19859,58,13.25,25,0.0 +19859,59,55,16,0.0 +19859,60,34,28,0.0 +19859,28,45.6,20,0.0 +19859,6,25,11,0.0 +19859,11,21,24,0.0 +19860,10,31,4,0.0 +19860,43,46,9,0.0 +19860,28,45.6,40,0.0 +19860,9,97,32,0.0 +19860,2,19,26,0.0 +19860,73,15,34,0.0 +19860,41,9.65,49,0.0 +19860,17,39,9,0.0 +19860,68,12.5,18,0.0 +19860,60,34,1,0.0 +19860,32,32,47,0.0 +19860,39,18,19,0.0 +19860,13,6,39,0.0 +19860,71,21.5,42,0.0 +19860,26,31.23,17,0.0 +19860,62,49.3,39,0.0 +19860,38,263.5,47,0.0 +19860,61,28.5,41,0.0 +19860,44,19.45,23,0.0 +19860,29,123.79,3,0.0 +19860,16,17.45,49,0.0 +19860,31,12.5,19,0.0 +19860,53,32.8,5,0.0 +19860,51,53,43,0.0 +19860,19,9.2,31,0.0 +19860,54,7.45,3,0.0 +19860,33,2.5,42,0.0 +19860,36,19,39,0.0 +19860,66,17,9,0.0 +19860,12,38,27,0.0 +19860,50,16.25,39,0.0 +19860,63,43.9,41,0.0 +19860,34,14,38,0.0 +19861,42,14,18,0.0 +19861,12,38,31,0.0 +19861,36,19,46,0.0 +19861,74,10,36,0.0 +19861,5,21.35,34,0.0 +19861,44,19.45,7,0.0 +19861,1,18,18,0.0 +19861,21,10,12,0.0 +19861,8,40,39,0.0 +19861,13,6,13,0.0 +19861,59,55,10,0.0 +19861,69,36,40,0.0 +19861,47,9.5,9,0.0 +19861,30,25.89,37,0.0 +19862,54,7.45,30,0.0 +19862,69,36,22,0.0 +19862,8,40,8,0.0 +19862,27,43.9,25,0.0 +19862,6,25,36,0.0 +19862,77,13,45,0.0 +19862,45,9.5,13,0.0 +19862,41,9.65,31,0.0 +19862,72,34.8,46,0.0 +19862,37,26,31,0.0 +19862,26,31.23,14,0.0 +19862,49,20,17,0.0 +19862,68,12.5,24,0.0 +19862,11,21,2,0.0 +19862,36,19,14,0.0 +19862,25,14,44,0.0 +19862,43,46,23,0.0 +19862,14,23.25,19,0.0 +19862,48,12.75,30,0.0 +19862,12,38,44,0.0 +19862,64,33.25,39,0.0 +19862,55,24,30,0.0 +19862,15,15.5,40,0.0 +19862,67,14,10,0.0 +19862,60,34,34,0.0 +19862,3,10,13,0.0 +19862,32,32,40,0.0 +19862,20,81,45,0.0 +19862,2,19,45,0.0 +19862,73,15,13,0.0 +19862,53,32.8,19,0.0 +19862,34,14,13,0.0 +19862,23,9,16,0.0 +19862,40,18.4,34,0.0 +19862,63,43.9,24,0.0 +19862,76,18,8,0.0 +19862,19,9.2,31,0.0 +19862,56,38,1,0.0 +19862,71,21.5,37,0.0 +19862,24,4.5,21,0.0 +19862,13,6,32,0.0 +19862,35,18,11,0.0 +19862,58,13.25,37,0.0 +19862,74,10,35,0.0 +19862,29,123.79,8,0.0 +19862,59,55,30,0.0 +19862,22,21,13,0.0 +19862,4,22,22,0.0 +19862,70,15,11,0.0 +19862,65,21.05,15,0.0 +19862,50,16.25,27,0.0 +19862,7,30,22,0.0 +19862,31,12.5,8,0.0 +19863,50,16.25,35,0.0 +19863,17,39,26,0.0 +19863,64,33.25,26,0.0 +19863,53,32.8,3,0.0 +19863,75,7.75,42,0.0 +19863,22,21,38,0.0 +19863,72,34.8,10,0.0 +19863,62,49.3,29,0.0 +19863,7,30,30,0.0 +19863,27,43.9,45,0.0 +19863,35,18,49,0.0 +19863,59,55,45,0.0 +19863,28,45.6,30,0.0 +19863,61,28.5,33,0.0 +19863,56,38,46,0.0 +19863,26,31.23,7,0.0 +19863,57,19.5,12,0.0 +19863,70,15,20,0.0 +19863,54,7.45,15,0.0 +19863,8,40,37,0.0 +19863,60,34,48,0.0 +19863,37,26,2,0.0 +19863,21,10,2,0.0 +19863,42,14,26,0.0 +19863,58,13.25,17,0.0 +19864,77,13,18,0.0 +19864,9,97,49,0.0 +19864,23,9,47,0.0 +19864,45,9.5,46,0.0 +19864,56,38,42,0.0 +19864,8,40,24,0.0 +19864,66,17,17,0.0 +19864,68,12.5,10,0.0 +19864,12,38,10,0.0 +19864,24,4.5,12,0.0 +19864,13,6,8,0.0 +19864,22,21,34,0.0 +19864,26,31.23,43,0.0 +19864,44,19.45,21,0.0 +19864,6,25,21,0.0 +19864,49,20,17,0.0 +19864,55,24,22,0.0 +19864,47,9.5,11,0.0 +19864,7,30,13,0.0 +19864,40,18.4,19,0.0 +19864,73,15,13,0.0 +19864,33,2.5,11,0.0 +19864,51,53,20,0.0 +19864,65,21.05,9,0.0 +19864,20,81,31,0.0 +19864,75,7.75,31,0.0 +19864,39,18,42,0.0 +19864,37,26,18,0.0 +19864,42,14,15,0.0 +19864,38,263.5,11,0.0 +19865,13,6,22,0.0 +19865,34,14,5,0.0 +19865,60,34,44,0.0 +19865,74,10,22,0.0 +19865,48,12.75,38,0.0 +19865,30,25.89,35,0.0 +19865,71,21.5,40,0.0 +19865,15,15.5,26,0.0 +19865,66,17,43,0.0 +19865,53,32.8,21,0.0 +19865,36,19,16,0.0 +19865,24,4.5,32,0.0 +19865,45,9.5,27,0.0 +19865,52,7,16,0.0 +19865,68,12.5,42,0.0 +19865,16,17.45,14,0.0 +19865,65,21.05,13,0.0 +19865,70,15,50,0.0 +19865,40,18.4,8,0.0 +19865,18,62.5,19,0.0 +19865,27,43.9,22,0.0 +19865,32,32,44,0.0 +19865,67,14,34,0.0 +19865,51,53,50,0.0 +19865,62,49.3,2,0.0 +19865,7,30,16,0.0 +19865,75,7.75,7,0.0 +19865,77,13,18,0.0 +19865,5,21.35,50,0.0 +19865,57,19.5,11,0.0 +19865,2,19,42,0.0 +19865,42,14,47,0.0 +19865,4,22,14,0.0 +19865,28,45.6,2,0.0 +19865,54,7.45,48,0.0 +19865,37,26,12,0.0 +19865,55,24,50,0.0 +19865,39,18,46,0.0 +19865,58,13.25,32,0.0 +19865,64,33.25,22,0.0 +19865,12,38,4,0.0 +19865,31,12.5,46,0.0 +19865,73,15,11,0.0 +19865,17,39,42,0.0 +19865,59,55,21,0.0 +19865,21,10,6,0.0 +19865,50,16.25,11,0.0 +19865,26,31.23,31,0.0 +19865,23,9,43,0.0 +19865,25,14,19,0.0 +19865,61,28.5,2,0.0 +19865,56,38,8,0.0 +19865,63,43.9,15,0.0 +19866,22,21,20,0.0 +19866,59,55,49,0.0 +19866,43,46,7,0.0 +19866,48,12.75,44,0.0 +19866,14,23.25,13,0.0 +19866,50,16.25,34,0.0 +19866,1,18,33,0.0 +19866,6,25,41,0.0 +19866,58,13.25,6,0.0 +19866,25,14,42,0.0 +19866,55,24,42,0.0 +19866,60,34,38,0.0 +19866,54,7.45,24,0.0 +19866,8,40,15,0.0 +19866,26,31.23,5,0.0 +19866,62,49.3,15,0.0 +19866,56,38,12,0.0 +19866,21,10,4,0.0 +19866,69,36,37,0.0 +19866,53,32.8,38,0.0 +19866,29,123.79,29,0.0 +19866,41,9.65,41,0.0 +19866,42,14,33,0.0 +19866,77,13,8,0.0 +19866,18,62.5,43,0.0 +19866,30,25.89,5,0.0 +19866,33,2.5,31,0.0 +19866,28,45.6,43,0.0 +19866,17,39,27,0.0 +19866,10,31,10,0.0 +19866,19,9.2,12,0.0 +19866,35,18,19,0.0 +19866,40,18.4,22,0.0 +19866,3,10,25,0.0 +19866,23,9,20,0.0 +19866,57,19.5,29,0.0 +19866,4,22,1,0.0 +19866,39,18,17,0.0 +19866,71,21.5,19,0.0 +19866,37,26,11,0.0 +19866,9,97,36,0.0 +19866,15,15.5,30,0.0 +19866,73,15,6,0.0 +19866,11,21,24,0.0 +19866,5,21.35,16,0.0 +19866,52,7,42,0.0 +19866,34,14,15,0.0 +19866,65,21.05,50,0.0 +19866,16,17.45,41,0.0 +19866,70,15,31,0.0 +19867,40,18.4,10,0.0 +19867,24,4.5,31,0.0 +19867,65,21.05,42,0.0 +19867,56,38,18,0.0 +19867,47,9.5,4,0.0 +19867,25,14,17,0.0 +19867,59,55,10,0.0 +19867,41,9.65,26,0.0 +19867,23,9,7,0.0 +19867,55,24,1,0.0 +19867,18,62.5,39,0.0 +19867,26,31.23,36,0.0 +19867,3,10,45,0.0 +19867,63,43.9,45,0.0 +19867,69,36,44,0.0 +19867,52,7,46,0.0 +19867,35,18,19,0.0 +19867,46,12,17,0.0 +19867,17,39,21,0.0 +19867,11,21,41,0.0 +19867,29,123.79,41,0.0 +19867,6,25,18,0.0 +19867,76,18,11,0.0 +19867,34,14,4,0.0 +19867,5,21.35,9,0.0 +19867,1,18,19,0.0 +19867,22,21,24,0.0 +19867,70,15,3,0.0 +19867,33,2.5,36,0.0 +19867,74,10,39,0.0 +19867,9,97,33,0.0 +19867,42,14,36,0.0 +19867,45,9.5,13,0.0 +19867,54,7.45,41,0.0 +19867,30,25.89,31,0.0 +19867,72,34.8,35,0.0 +19867,50,16.25,16,0.0 +19867,66,17,27,0.0 +19867,49,20,10,0.0 +19867,43,46,7,0.0 +19867,15,15.5,41,0.0 +19867,39,18,1,0.0 +19867,16,17.45,44,0.0 +19867,57,19.5,27,0.0 +19867,64,33.25,1,0.0 +19867,36,19,15,0.0 +19867,2,19,16,0.0 +19867,58,13.25,15,0.0 +19867,53,32.8,5,0.0 +19867,38,263.5,27,0.0 +19867,14,23.25,21,0.0 +19867,20,81,48,0.0 +19867,4,22,47,0.0 +19867,48,12.75,5,0.0 +19867,71,21.5,46,0.0 +19867,61,28.5,23,0.0 +19867,27,43.9,49,0.0 +19867,37,26,6,0.0 +19867,67,14,48,0.0 +19867,12,38,11,0.0 +19867,28,45.6,25,0.0 +19867,44,19.45,40,0.0 +19867,21,10,40,0.0 +19867,62,49.3,16,0.0 +19867,32,32,17,0.0 +19867,7,30,40,0.0 +19867,31,12.5,48,0.0 +19867,13,6,22,0.0 +19867,73,15,35,0.0 +19867,75,7.75,7,0.0 +19867,68,12.5,19,0.0 +19868,76,18,12,0.0 +19868,29,123.79,47,0.0 +19868,73,15,6,0.0 +19868,7,30,1,0.0 +19868,24,4.5,48,0.0 +19868,74,10,37,0.0 +19868,42,14,46,0.0 +19868,66,17,33,0.0 +19868,33,2.5,4,0.0 +19868,1,18,6,0.0 +19868,36,19,26,0.0 +19868,14,23.25,46,0.0 +19868,22,21,26,0.0 +19868,44,19.45,9,0.0 +19868,37,26,47,0.0 +19868,34,14,11,0.0 +19868,39,18,32,0.0 +19868,63,43.9,18,0.0 +19868,56,38,30,0.0 +19869,77,13,45,0.0 +19870,44,19.45,29,0.0 +19870,61,28.5,6,0.0 +19870,20,81,39,0.0 +19870,19,9.2,32,0.0 +19870,56,38,8,0.0 +19870,17,39,8,0.0 +19870,4,22,22,0.0 +19870,51,53,5,0.0 +19870,70,15,18,0.0 +19870,62,49.3,6,0.0 +19870,57,19.5,8,0.0 +19870,2,19,49,0.0 +19870,18,62.5,7,0.0 +19870,72,34.8,33,0.0 +19870,48,12.75,19,0.0 +19870,67,14,40,0.0 +19870,37,26,33,0.0 +19870,16,17.45,1,0.0 +19870,60,34,19,0.0 +19870,21,10,10,0.0 +19870,73,15,35,0.0 +19870,68,12.5,11,0.0 +19870,27,43.9,12,0.0 +19870,54,7.45,45,0.0 +19870,8,40,42,0.0 +19870,52,7,17,0.0 +19870,55,24,22,0.0 +19870,31,12.5,8,0.0 +19870,34,14,39,0.0 +19870,12,38,11,0.0 +19870,65,21.05,33,0.0 +19870,58,13.25,15,0.0 +19870,15,15.5,34,0.0 +19870,63,43.9,21,0.0 +19870,13,6,33,0.0 +19870,9,97,20,0.0 +19870,38,263.5,48,0.0 +19870,35,18,5,0.0 +19870,23,9,22,0.0 +19870,59,55,8,0.0 +19870,3,10,50,0.0 +19870,22,21,6,0.0 +19870,40,18.4,4,0.0 +19870,66,17,45,0.0 +19870,29,123.79,30,0.0 +19870,69,36,6,0.0 +19870,75,7.75,25,0.0 +19870,64,33.25,18,0.0 +19870,30,25.89,28,0.0 +19870,71,21.5,37,0.0 +19870,33,2.5,30,0.0 +19870,32,32,50,0.0 +19870,42,14,11,0.0 +19870,50,16.25,10,0.0 +19870,24,4.5,33,0.0 +19870,43,46,46,0.0 +19870,1,18,28,0.0 +19870,6,25,35,0.0 +19870,25,14,22,0.0 +19870,46,12,2,0.0 +19870,7,30,48,0.0 +19870,53,32.8,49,0.0 +19870,14,23.25,48,0.0 +19870,77,13,16,0.0 +19870,49,20,45,0.0 +19870,36,19,46,0.0 +19870,10,31,49,0.0 +19870,74,10,30,0.0 +19870,11,21,18,0.0 +19870,26,31.23,25,0.0 +19870,41,9.65,22,0.0 +19870,5,21.35,10,0.0 +19870,39,18,27,0.0 +19870,76,18,45,0.0 +19870,28,45.6,42,0.0 +19870,45,9.5,38,0.0 +19870,47,9.5,16,0.0 +19871,23,9,13,0.0 +19871,63,43.9,27,0.0 +19871,41,9.65,33,0.0 +19871,64,33.25,3,0.0 +19871,19,9.2,38,0.0 +19871,15,15.5,10,0.0 +19871,53,32.8,22,0.0 +19871,33,2.5,37,0.0 +19871,37,26,3,0.0 +19871,51,53,26,0.0 +19871,20,81,38,0.0 +19871,70,15,15,0.0 +19871,76,18,46,0.0 +19871,61,28.5,25,0.0 +19871,30,25.89,26,0.0 +19871,73,15,9,0.0 +19871,60,34,8,0.0 +19871,4,22,2,0.0 +19871,31,12.5,43,0.0 +19871,39,18,10,0.0 +19871,26,31.23,34,0.0 +19871,9,97,21,0.0 +19871,38,263.5,25,0.0 +19871,22,21,13,0.0 +19871,18,62.5,34,0.0 +19871,17,39,50,0.0 +19871,3,10,10,0.0 +19871,44,19.45,25,0.0 +19871,1,18,21,0.0 +19871,59,55,24,0.0 +19871,58,13.25,28,0.0 +19871,25,14,35,0.0 +19871,24,4.5,44,0.0 +19871,7,30,49,0.0 +19871,34,14,40,0.0 +19871,28,45.6,11,0.0 +19871,45,9.5,16,0.0 +19871,65,21.05,34,0.0 +19871,8,40,6,0.0 +19871,49,20,44,0.0 +19871,29,123.79,50,0.0 +19871,66,17,2,0.0 +19871,42,14,6,0.0 +19871,35,18,16,0.0 +19871,13,6,33,0.0 +19871,56,38,9,0.0 +19871,47,9.5,5,0.0 +19871,75,7.75,28,0.0 +19871,52,7,3,0.0 +19871,12,38,16,0.0 +19871,48,12.75,35,0.0 +19871,27,43.9,27,0.0 +19871,50,16.25,21,0.0 +19871,14,23.25,5,0.0 +19871,69,36,46,0.0 +19871,16,17.45,42,0.0 +19871,21,10,42,0.0 +19871,11,21,38,0.0 +19871,6,25,2,0.0 +19872,30,25.89,4,0.0 +19872,38,263.5,45,0.0 +19872,73,15,41,0.0 +19872,60,34,41,0.0 +19872,23,9,45,0.0 +19872,25,14,5,0.0 +19872,70,15,10,0.0 +19872,71,21.5,4,0.0 +19872,22,21,44,0.0 +19872,20,81,29,0.0 +19872,57,19.5,48,0.0 +19872,16,17.45,5,0.0 +19872,77,13,23,0.0 +19872,35,18,21,0.0 +19872,43,46,1,0.0 +19872,74,10,29,0.0 +19872,18,62.5,48,0.0 +19872,7,30,33,0.0 +19872,36,19,29,0.0 +19872,76,18,29,0.0 +19872,66,17,7,0.0 +19872,9,97,44,0.0 +19873,4,22,38,0.0 +19873,27,43.9,24,0.0 +19873,70,15,2,0.0 +19873,50,16.25,24,0.0 +19873,19,9.2,4,0.0 +19873,16,17.45,46,0.0 +19873,11,21,40,0.0 +19873,62,49.3,48,0.0 +19873,29,123.79,11,0.0 +19873,15,15.5,5,0.0 +19873,74,10,25,0.0 +19873,59,55,44,0.0 +19873,10,31,5,0.0 +19873,40,18.4,11,0.0 +19873,21,10,6,0.0 +19873,75,7.75,45,0.0 +19873,22,21,34,0.0 +19873,13,6,24,0.0 +19873,47,9.5,13,0.0 +19873,53,32.8,8,0.0 +19873,71,21.5,21,0.0 +19873,41,9.65,16,0.0 +19873,42,14,37,0.0 +19873,73,15,6,0.0 +19873,18,62.5,19,0.0 +19873,17,39,39,0.0 +19873,56,38,1,0.0 +19873,5,21.35,4,0.0 +19873,48,12.75,39,0.0 +19873,8,40,44,0.0 +19873,38,263.5,27,0.0 +19873,3,10,11,0.0 +19873,37,26,40,0.0 +19873,68,12.5,44,0.0 +19873,32,32,11,0.0 +19873,76,18,4,0.0 +19873,34,14,29,0.0 +19873,57,19.5,2,0.0 +19873,24,4.5,19,0.0 +19873,63,43.9,29,0.0 +19873,61,28.5,19,0.0 +19873,26,31.23,42,0.0 +19873,25,14,49,0.0 +19873,46,12,10,0.0 +19873,52,7,16,0.0 +19873,45,9.5,31,0.0 +19873,9,97,25,0.0 +19873,36,19,34,0.0 +19873,77,13,34,0.0 +19873,2,19,44,0.0 +19873,60,34,27,0.0 +19873,33,2.5,35,0.0 +19873,55,24,16,0.0 +19873,6,25,31,0.0 +19873,7,30,20,0.0 +19873,64,33.25,18,0.0 +19873,1,18,20,0.0 +19873,35,18,20,0.0 +19873,43,46,28,0.0 +19873,39,18,31,0.0 +19874,24,4.5,6,0.0 +19874,56,38,28,0.0 +19874,62,49.3,49,0.0 +19874,57,19.5,3,0.0 +19874,15,15.5,19,0.0 +19874,49,20,38,0.0 +19874,23,9,7,0.0 +19874,5,21.35,7,0.0 +19874,20,81,45,0.0 +19874,52,7,41,0.0 +19874,6,25,32,0.0 +19874,26,31.23,16,0.0 +19874,31,12.5,48,0.0 +19874,7,30,20,0.0 +19874,58,13.25,30,0.0 +19874,59,55,10,0.0 +19874,9,97,14,0.0 +19874,69,36,38,0.0 +19874,65,21.05,50,0.0 +19874,54,7.45,14,0.0 +19874,71,21.5,1,0.0 +19874,40,18.4,18,0.0 +19874,42,14,29,0.0 +19874,76,18,7,0.0 +19874,14,23.25,49,0.0 +19874,16,17.45,42,0.0 +19874,3,10,11,0.0 +19874,35,18,3,0.0 +19874,72,34.8,12,0.0 +19874,47,9.5,42,0.0 +19874,21,10,32,0.0 +19874,11,21,15,0.0 +19874,50,16.25,41,0.0 +19874,74,10,35,0.0 +19874,29,123.79,47,0.0 +19874,18,62.5,27,0.0 +19874,70,15,31,0.0 +19874,27,43.9,24,0.0 +19874,77,13,36,0.0 +19874,12,38,12,0.0 +19874,41,9.65,39,0.0 +19874,2,19,20,0.0 +19874,8,40,7,0.0 +19874,75,7.75,20,0.0 +19874,13,6,45,0.0 +19874,66,17,10,0.0 +19874,73,15,13,0.0 +19874,60,34,6,0.0 +19874,64,33.25,8,0.0 +19874,53,32.8,46,0.0 +19874,32,32,18,0.0 +19874,37,26,43,0.0 +19874,19,9.2,5,0.0 +19874,61,28.5,40,0.0 +19874,63,43.9,20,0.0 +19874,68,12.5,23,0.0 +19874,44,19.45,5,0.0 +19874,51,53,1,0.0 +19874,17,39,34,0.0 +19874,45,9.5,39,0.0 +19874,46,12,48,0.0 +19875,17,39,45,0.0 +19875,8,40,28,0.0 +19875,5,21.35,45,0.0 +19875,70,15,34,0.0 +19875,67,14,22,0.0 +19875,40,18.4,24,0.0 +19875,10,31,31,0.0 +19875,54,7.45,13,0.0 +19875,62,49.3,31,0.0 +19875,24,4.5,33,0.0 +19875,71,21.5,9,0.0 +19875,15,15.5,36,0.0 +19875,9,97,10,0.0 +19875,55,24,35,0.0 +19875,32,32,4,0.0 +19875,7,30,16,0.0 +19875,59,55,17,0.0 +19875,35,18,11,0.0 +19875,4,22,17,0.0 +19875,1,18,38,0.0 +19875,64,33.25,25,0.0 +19875,30,25.89,46,0.0 +19875,60,34,7,0.0 +19875,61,28.5,21,0.0 +19875,45,9.5,19,0.0 +19875,75,7.75,28,0.0 +19875,23,9,49,0.0 +19875,11,21,19,0.0 +19875,50,16.25,43,0.0 +19875,18,62.5,3,0.0 +19875,2,19,4,0.0 +19875,56,38,23,0.0 +19875,37,26,18,0.0 +19875,25,14,26,0.0 +19875,33,2.5,11,0.0 +19875,6,25,34,0.0 +19875,16,17.45,15,0.0 +19875,66,17,2,0.0 +19875,41,9.65,7,0.0 +19875,38,263.5,40,0.0 +19875,19,9.2,8,0.0 +19875,13,6,20,0.0 +19875,14,23.25,24,0.0 +19875,65,21.05,25,0.0 +19875,28,45.6,37,0.0 +19875,76,18,19,0.0 +19875,31,12.5,24,0.0 +19875,63,43.9,27,0.0 +19875,27,43.9,47,0.0 +19875,46,12,20,0.0 +19875,21,10,30,0.0 +19875,51,53,3,0.0 +19875,39,18,13,0.0 +19875,36,19,2,0.0 +19875,72,34.8,20,0.0 +19875,73,15,5,0.0 +19875,20,81,14,0.0 +19875,34,14,34,0.0 +19875,52,7,27,0.0 +19875,68,12.5,22,0.0 +19875,48,12.75,38,0.0 +19875,12,38,41,0.0 +19875,58,13.25,6,0.0 +19875,3,10,8,0.0 +19875,22,21,39,0.0 +19875,74,10,25,0.0 +19875,47,9.5,16,0.0 +19875,69,36,33,0.0 +19875,43,46,27,0.0 +19875,57,19.5,13,0.0 +19875,29,123.79,37,0.0 +19875,77,13,33,0.0 +19875,44,19.45,37,0.0 +19875,42,14,20,0.0 +19875,26,31.23,5,0.0 +19875,53,32.8,4,0.0 +19876,72,34.8,30,0.0 +19876,39,18,29,0.0 +19876,58,13.25,37,0.0 +19876,14,23.25,27,0.0 +19876,4,22,28,0.0 +19876,11,21,31,0.0 +19876,68,12.5,49,0.0 +19876,12,38,44,0.0 +19876,8,40,32,0.0 +19876,38,263.5,1,0.0 +19876,65,21.05,44,0.0 +19876,25,14,8,0.0 +19876,5,21.35,1,0.0 +19876,36,19,18,0.0 +19876,64,33.25,12,0.0 +19876,50,16.25,3,0.0 +19876,31,12.5,7,0.0 +19876,7,30,35,0.0 +19877,58,13.25,1,0.0 +19877,37,26,44,0.0 +19877,13,6,30,0.0 +19877,67,14,19,0.0 +19877,73,15,12,0.0 +19877,24,4.5,44,0.0 +19877,50,16.25,32,0.0 +19877,49,20,43,0.0 +19877,4,22,43,0.0 +19877,26,31.23,5,0.0 +19877,11,21,24,0.0 +19877,25,14,1,0.0 +19877,31,12.5,5,0.0 +19877,20,81,23,0.0 +19877,19,9.2,42,0.0 +19877,30,25.89,42,0.0 +19878,74,10,21,0.0 +19878,31,12.5,43,0.0 +19878,36,19,28,0.0 +19878,7,30,9,0.0 +19878,67,14,27,0.0 +19878,58,13.25,20,0.0 +19878,47,9.5,27,0.0 +19878,3,10,22,0.0 +19879,1,18,44,0.0 +19879,3,10,25,0.0 +19879,15,15.5,2,0.0 +19879,57,19.5,9,0.0 +19879,68,12.5,16,0.0 +19879,49,20,48,0.0 +19879,36,19,22,0.0 +19879,6,25,49,0.0 +19879,48,12.75,31,0.0 +19879,66,17,41,0.0 +19879,75,7.75,17,0.0 +19879,56,38,21,0.0 +19879,33,2.5,39,0.0 +19879,31,12.5,28,0.0 +19879,13,6,40,0.0 +19879,23,9,15,0.0 +19879,32,32,23,0.0 +19879,11,21,11,0.0 +19879,50,16.25,44,0.0 +19879,44,19.45,39,0.0 +19879,61,28.5,5,0.0 +19879,59,55,26,0.0 +19879,5,21.35,5,0.0 +19879,17,39,41,0.0 +19879,34,14,10,0.0 +19879,65,21.05,7,0.0 +19879,22,21,38,0.0 +19879,30,25.89,46,0.0 +19879,29,123.79,38,0.0 +19879,55,24,22,0.0 +19879,39,18,38,0.0 +19879,16,17.45,46,0.0 +19879,41,9.65,18,0.0 +19879,10,31,18,0.0 +19879,52,7,26,0.0 +19879,28,45.6,9,0.0 +19879,74,10,27,0.0 +19879,2,19,4,0.0 +19879,70,15,45,0.0 +19879,77,13,1,0.0 +19879,62,49.3,25,0.0 +19879,26,31.23,40,0.0 +19879,42,14,26,0.0 +19879,20,81,8,0.0 +19879,4,22,8,0.0 +19879,19,9.2,42,0.0 +19879,25,14,48,0.0 +19879,9,97,9,0.0 +19879,35,18,34,0.0 +19879,46,12,3,0.0 +19879,76,18,30,0.0 +19879,73,15,26,0.0 +19879,53,32.8,46,0.0 +19879,14,23.25,39,0.0 +19879,72,34.8,16,0.0 +19879,54,7.45,45,0.0 +19879,67,14,11,0.0 +19879,7,30,27,0.0 +19879,60,34,20,0.0 +19879,45,9.5,36,0.0 +19879,69,36,8,0.0 +19879,40,18.4,18,0.0 +19879,47,9.5,11,0.0 +19879,21,10,35,0.0 +19879,58,13.25,23,0.0 +19879,43,46,30,0.0 +19879,51,53,34,0.0 +19880,51,53,20,0.0 +19880,13,6,27,0.0 +19880,54,7.45,20,0.0 +19880,74,10,35,0.0 +19880,43,46,48,0.0 +19880,53,32.8,48,0.0 +19880,67,14,30,0.0 +19880,72,34.8,1,0.0 +19880,55,24,7,0.0 +19880,1,18,6,0.0 +19880,37,26,14,0.0 +19880,8,40,20,0.0 +19880,3,10,29,0.0 +19880,10,31,44,0.0 +19880,58,13.25,5,0.0 +19880,30,25.89,7,0.0 +19880,60,34,36,0.0 +19880,2,19,36,0.0 +19880,38,263.5,15,0.0 +19880,9,97,12,0.0 +19880,15,15.5,2,0.0 +19880,28,45.6,2,0.0 +19880,23,9,16,0.0 +19880,35,18,50,0.0 +19880,75,7.75,3,0.0 +19880,22,21,43,0.0 +19880,76,18,18,0.0 +19880,45,9.5,21,0.0 +19880,20,81,2,0.0 +19880,70,15,25,0.0 +19880,7,30,11,0.0 +19880,61,28.5,48,0.0 +19880,17,39,17,0.0 +19880,42,14,42,0.0 +19880,12,38,43,0.0 +19880,26,31.23,9,0.0 +19880,71,21.5,40,0.0 +19880,57,19.5,15,0.0 +19880,36,19,32,0.0 +19880,4,22,1,0.0 +19880,19,9.2,36,0.0 +19880,52,7,27,0.0 +19880,11,21,14,0.0 +19880,73,15,7,0.0 +19880,59,55,48,0.0 +19880,33,2.5,40,0.0 +19880,48,12.75,37,0.0 +19880,62,49.3,1,0.0 +19880,14,23.25,24,0.0 +19880,63,43.9,8,0.0 +19880,16,17.45,44,0.0 +19880,5,21.35,30,0.0 +19880,21,10,49,0.0 +19880,56,38,48,0.0 +19880,41,9.65,6,0.0 +19880,44,19.45,35,0.0 +19880,46,12,40,0.0 +19880,64,33.25,6,0.0 +19880,69,36,22,0.0 +19880,32,32,36,0.0 +19880,18,62.5,4,0.0 +19880,27,43.9,7,0.0 +19880,24,4.5,45,0.0 +19880,31,12.5,25,0.0 +19880,39,18,40,0.0 +19880,40,18.4,17,0.0 +19880,49,20,23,0.0 +19880,68,12.5,8,0.0 +19880,66,17,4,0.0 +19880,25,14,14,0.0 +19880,50,16.25,42,0.0 +19880,47,9.5,20,0.0 +19880,65,21.05,30,0.0 +19881,53,32.8,39,0.0 +19881,57,19.5,5,0.0 +19881,76,18,40,0.0 +19881,27,43.9,28,0.0 +19881,42,14,49,0.0 +19881,71,21.5,19,0.0 +19881,77,13,39,0.0 +19881,73,15,10,0.0 +19881,35,18,42,0.0 +19881,37,26,14,0.0 +19881,52,7,41,0.0 +19881,22,21,3,0.0 +19881,25,14,6,0.0 +19881,48,12.75,38,0.0 +19881,5,21.35,43,0.0 +19881,54,7.45,36,0.0 +19881,39,18,38,0.0 +19881,8,40,13,0.0 +19881,20,81,22,0.0 +19881,1,18,45,0.0 +19881,4,22,36,0.0 +19881,15,15.5,23,0.0 +19881,47,9.5,45,0.0 +19881,72,34.8,37,0.0 +19881,16,17.45,2,0.0 +19881,46,12,44,0.0 +19881,26,31.23,43,0.0 +19881,49,20,17,0.0 +19881,63,43.9,30,0.0 +19881,19,9.2,24,0.0 +19881,70,15,35,0.0 +19881,66,17,27,0.0 +19881,41,9.65,33,0.0 +19881,13,6,38,0.0 +19881,21,10,13,0.0 +19881,34,14,35,0.0 +19881,28,45.6,24,0.0 +19881,12,38,2,0.0 +19881,67,14,17,0.0 +19881,2,19,42,0.0 +19881,45,9.5,23,0.0 +19881,50,16.25,36,0.0 +19881,55,24,1,0.0 +19881,24,4.5,44,0.0 +19881,6,25,42,0.0 +19882,27,43.9,6,0.0 +19882,46,12,27,0.0 +19882,18,62.5,49,0.0 +19883,27,43.9,43,0.0 +19883,51,53,5,0.0 +19883,35,18,2,0.0 +19883,74,10,49,0.0 +19883,43,46,44,0.0 +19883,63,43.9,22,0.0 +19883,41,9.65,40,0.0 +19883,75,7.75,30,0.0 +19883,11,21,38,0.0 +19883,65,21.05,13,0.0 +19883,3,10,4,0.0 +19883,54,7.45,30,0.0 +19883,72,34.8,44,0.0 +19883,44,19.45,41,0.0 +19883,31,12.5,26,0.0 +19883,23,9,28,0.0 +19883,58,13.25,10,0.0 +19884,38,263.5,34,0.0 +19884,24,4.5,30,0.0 +19884,36,19,2,0.0 +19884,44,19.45,27,0.0 +19884,12,38,27,0.0 +19884,67,14,24,0.0 +19884,35,18,31,0.0 +19884,74,10,10,0.0 +19884,25,14,40,0.0 +19884,30,25.89,49,0.0 +19884,73,15,32,0.0 +19884,45,9.5,7,0.0 +19884,58,13.25,34,0.0 +19884,54,7.45,13,0.0 +19884,47,9.5,5,0.0 +19884,48,12.75,42,0.0 +19884,76,18,30,0.0 +19884,33,2.5,40,0.0 +19884,4,22,33,0.0 +19884,8,40,48,0.0 +19884,28,45.6,25,0.0 +19884,21,10,5,0.0 +19884,17,39,43,0.0 +19884,43,46,2,0.0 +19884,56,38,36,0.0 +19884,5,21.35,9,0.0 +19884,2,19,9,0.0 +19884,23,9,40,0.0 +19884,57,19.5,6,0.0 +19884,50,16.25,11,0.0 +19884,34,14,35,0.0 +19884,39,18,44,0.0 +19884,65,21.05,10,0.0 +19884,51,53,46,0.0 +19884,55,24,29,0.0 +19884,7,30,4,0.0 +19884,69,36,35,0.0 +19884,27,43.9,19,0.0 +19885,71,21.5,28,0.0 +19885,6,25,50,0.0 +19885,3,10,28,0.0 +19885,67,14,23,0.0 +19885,21,10,29,0.0 +19885,42,14,45,0.0 +19885,5,21.35,11,0.0 +19885,14,23.25,35,0.0 +19885,23,9,37,0.0 +19885,7,30,50,0.0 +19885,12,38,39,0.0 +19885,58,13.25,11,0.0 +19885,68,12.5,24,0.0 +19885,43,46,18,0.0 +19885,57,19.5,47,0.0 +19885,70,15,13,0.0 +19885,22,21,21,0.0 +19885,32,32,13,0.0 +19885,29,123.79,35,0.0 +19885,25,14,1,0.0 +19885,9,97,47,0.0 +19885,11,21,4,0.0 +19885,45,9.5,44,0.0 +19885,77,13,40,0.0 +19885,36,19,48,0.0 +19885,56,38,31,0.0 +19885,60,34,35,0.0 +19885,50,16.25,13,0.0 +19885,51,53,44,0.0 +19885,49,20,32,0.0 +19885,66,17,8,0.0 +19885,53,32.8,23,0.0 +19885,38,263.5,16,0.0 +19885,27,43.9,11,0.0 +19885,62,49.3,42,0.0 +19885,1,18,50,0.0 +19885,28,45.6,31,0.0 +19885,72,34.8,47,0.0 +19885,75,7.75,34,0.0 +19885,16,17.45,29,0.0 +19885,34,14,28,0.0 +19885,52,7,7,0.0 +19885,26,31.23,16,0.0 +19885,24,4.5,28,0.0 +19885,46,12,36,0.0 +19885,47,9.5,10,0.0 +19885,54,7.45,3,0.0 +19885,19,9.2,44,0.0 +19885,15,15.5,31,0.0 +19885,33,2.5,41,0.0 +19885,76,18,23,0.0 +19885,41,9.65,4,0.0 +19885,61,28.5,43,0.0 +19885,63,43.9,39,0.0 +19885,48,12.75,15,0.0 +19885,30,25.89,32,0.0 +19885,8,40,26,0.0 +19885,2,19,5,0.0 +19885,10,31,26,0.0 +19885,69,36,11,0.0 +19885,40,18.4,10,0.0 +19885,4,22,19,0.0 +19885,31,12.5,42,0.0 +19885,20,81,12,0.0 +19885,18,62.5,22,0.0 +19885,44,19.45,15,0.0 +19885,59,55,17,0.0 +19885,39,18,24,0.0 +19885,55,24,19,0.0 +19885,73,15,23,0.0 +19885,64,33.25,20,0.0 +19885,13,6,32,0.0 +19885,35,18,2,0.0 +19886,52,7,15,0.0 +19886,7,30,49,0.0 +19886,18,62.5,34,0.0 +19886,21,10,21,0.0 +19886,38,263.5,7,0.0 +19886,42,14,33,0.0 +19886,75,7.75,21,0.0 +19886,76,18,14,0.0 +19886,40,18.4,37,0.0 +19886,27,43.9,47,0.0 +19886,6,25,32,0.0 +19886,63,43.9,44,0.0 +19886,56,38,36,0.0 +19886,12,38,12,0.0 +19886,71,21.5,34,0.0 +19886,11,21,8,0.0 +19886,36,19,17,0.0 +19886,68,12.5,22,0.0 +19886,44,19.45,35,0.0 +19886,3,10,5,0.0 +19886,50,16.25,42,0.0 +19886,10,31,35,0.0 +19887,46,12,40,0.0 +19887,68,12.5,30,0.0 +19887,36,19,14,0.0 +19887,44,19.45,36,0.0 +19887,16,17.45,4,0.0 +19887,9,97,18,0.0 +19887,20,81,40,0.0 +19887,48,12.75,2,0.0 +19887,59,55,17,0.0 +19887,61,28.5,16,0.0 +19887,17,39,33,0.0 +19887,21,10,47,0.0 +19887,22,21,6,0.0 +19887,29,123.79,28,0.0 +19887,11,21,38,0.0 +19887,1,18,16,0.0 +19887,28,45.6,29,0.0 +19887,62,49.3,12,0.0 +19887,35,18,46,0.0 +19887,26,31.23,5,0.0 +19887,15,15.5,33,0.0 +19887,72,34.8,13,0.0 +19887,10,31,6,0.0 +19888,66,17,34,0.0 +19888,69,36,15,0.0 +19888,6,25,8,0.0 +19888,22,21,9,0.0 +19888,73,15,5,0.0 +19888,42,14,40,0.0 +19888,56,38,36,0.0 +19888,61,28.5,42,0.0 +19888,46,12,39,0.0 +19888,14,23.25,11,0.0 +19888,32,32,14,0.0 +19888,12,38,6,0.0 +19888,28,45.6,42,0.0 +19888,50,16.25,14,0.0 +19888,11,21,39,0.0 +19888,52,7,9,0.0 +19888,1,18,6,0.0 +19888,65,21.05,20,0.0 +19888,35,18,23,0.0 +19888,60,34,5,0.0 +19888,20,81,28,0.0 +19888,48,12.75,6,0.0 +19888,57,19.5,17,0.0 +19888,44,19.45,2,0.0 +19888,63,43.9,38,0.0 +19888,23,9,3,0.0 +19888,49,20,49,0.0 +19888,67,14,46,0.0 +19888,71,21.5,6,0.0 +19888,54,7.45,17,0.0 +19888,33,2.5,8,0.0 +19888,21,10,22,0.0 +19888,47,9.5,31,0.0 +19888,18,62.5,1,0.0 +19888,31,12.5,11,0.0 +19888,16,17.45,18,0.0 +19889,53,32.8,32,0.0 +19889,31,12.5,19,0.0 +19889,58,13.25,4,0.0 +19889,14,23.25,18,0.0 +19889,62,49.3,8,0.0 +19889,63,43.9,17,0.0 +19889,44,19.45,38,0.0 +19889,2,19,17,0.0 +19889,18,62.5,27,0.0 +19889,24,4.5,28,0.0 +19889,40,18.4,35,0.0 +19889,30,25.89,7,0.0 +19889,75,7.75,26,0.0 +19889,59,55,24,0.0 +19889,6,25,16,0.0 +19889,56,38,28,0.0 +19889,77,13,24,0.0 +19889,45,9.5,37,0.0 +19889,3,10,38,0.0 +19889,70,15,6,0.0 +19889,61,28.5,8,0.0 +19889,39,18,43,0.0 +19889,60,34,37,0.0 +19889,15,15.5,44,0.0 +19889,55,24,11,0.0 +19889,34,14,26,0.0 +19889,47,9.5,48,0.0 +19889,26,31.23,47,0.0 +19889,13,6,13,0.0 +19889,35,18,32,0.0 +19889,42,14,11,0.0 +19889,29,123.79,13,0.0 +19889,21,10,32,0.0 +19889,1,18,9,0.0 +19889,69,36,32,0.0 +19889,10,31,26,0.0 +19889,52,7,2,0.0 +19889,16,17.45,31,0.0 +19889,33,2.5,9,0.0 +19889,43,46,3,0.0 +19889,32,32,10,0.0 +19889,48,12.75,43,0.0 +19889,37,26,2,0.0 +19889,19,9.2,34,0.0 +19889,11,21,43,0.0 +19889,68,12.5,45,0.0 +19889,50,16.25,29,0.0 +19889,27,43.9,6,0.0 +19889,25,14,5,0.0 +19889,17,39,5,0.0 +19889,74,10,44,0.0 +19889,5,21.35,41,0.0 +19889,38,263.5,25,0.0 +19889,23,9,22,0.0 +19889,9,97,23,0.0 +19889,72,34.8,8,0.0 +19889,51,53,8,0.0 +19889,73,15,30,0.0 +19889,7,30,25,0.0 +19889,57,19.5,46,0.0 +19889,49,20,24,0.0 +19889,71,21.5,2,0.0 +19889,28,45.6,39,0.0 +19889,36,19,15,0.0 +19890,55,24,38,0.0 +19890,18,62.5,18,0.0 +19890,53,32.8,37,0.0 +19890,63,43.9,9,0.0 +19890,26,31.23,27,0.0 +19890,76,18,22,0.0 +19890,5,21.35,33,0.0 +19890,4,22,40,0.0 +19890,77,13,1,0.0 +19890,40,18.4,24,0.0 +19890,75,7.75,36,0.0 +19890,70,15,31,0.0 +19890,25,14,4,0.0 +19890,1,18,3,0.0 +19890,37,26,47,0.0 +19890,38,263.5,41,0.0 +19890,64,33.25,7,0.0 +19890,15,15.5,41,0.0 +19890,69,36,30,0.0 +19890,12,38,45,0.0 +19891,72,34.8,27,0.0 +19891,23,9,6,0.0 +19891,35,18,41,0.0 +19891,52,7,12,0.0 +19891,14,23.25,41,0.0 +19891,61,28.5,30,0.0 +19891,43,46,31,0.0 +19891,31,12.5,21,0.0 +19891,19,9.2,40,0.0 +19891,66,17,11,0.0 +19891,7,30,29,0.0 +19891,38,263.5,10,0.0 +19891,34,14,33,0.0 +19891,5,21.35,24,0.0 +19891,60,34,3,0.0 +19891,68,12.5,20,0.0 +19891,13,6,43,0.0 +19891,54,7.45,12,0.0 +19891,47,9.5,28,0.0 +19891,33,2.5,30,0.0 +19891,49,20,24,0.0 +19891,27,43.9,30,0.0 +19891,17,39,49,0.0 +19891,15,15.5,28,0.0 +19891,64,33.25,9,0.0 +19891,73,15,12,0.0 +19891,3,10,31,0.0 +19891,59,55,50,0.0 +19891,65,21.05,40,0.0 +19891,57,19.5,19,0.0 +19891,44,19.45,3,0.0 +19891,18,62.5,27,0.0 +19891,4,22,33,0.0 +19891,12,38,39,0.0 +19891,26,31.23,33,0.0 +19891,69,36,40,0.0 +19891,10,31,12,0.0 +19891,48,12.75,39,0.0 +19891,56,38,47,0.0 +19891,46,12,34,0.0 +19891,42,14,11,0.0 +19891,39,18,48,0.0 +19891,58,13.25,27,0.0 +19891,51,53,44,0.0 +19891,76,18,35,0.0 +19891,50,16.25,28,0.0 +19891,2,19,47,0.0 +19891,11,21,29,0.0 +19891,75,7.75,7,0.0 +19891,70,15,35,0.0 +19891,22,21,6,0.0 +19891,21,10,2,0.0 +19891,1,18,19,0.0 +19891,53,32.8,31,0.0 +19891,6,25,46,0.0 +19891,40,18.4,29,0.0 +19891,55,24,36,0.0 +19891,41,9.65,32,0.0 +19891,29,123.79,22,0.0 +19891,36,19,5,0.0 +19891,20,81,26,0.0 +19891,45,9.5,19,0.0 +19891,71,21.5,3,0.0 +19891,74,10,45,0.0 +19892,39,18,19,0.0 +19892,53,32.8,22,0.0 +19892,43,46,37,0.0 +19893,76,18,28,0.0 +19893,42,14,30,0.0 +19893,65,21.05,20,0.0 +19893,19,9.2,26,0.0 +19893,40,18.4,22,0.0 +19893,28,45.6,47,0.0 +19893,45,9.5,10,0.0 +19893,56,38,48,0.0 +19893,60,34,12,0.0 +19893,23,9,25,0.0 +19893,14,23.25,12,0.0 +19893,34,14,46,0.0 +19893,62,49.3,31,0.0 +19893,29,123.79,35,0.0 +19893,73,15,30,0.0 +19893,37,26,13,0.0 +19893,66,17,18,0.0 +19893,64,33.25,18,0.0 +19893,36,19,45,0.0 +19893,43,46,10,0.0 +19893,71,21.5,25,0.0 +19893,47,9.5,1,0.0 +19893,68,12.5,13,0.0 +19893,4,22,30,0.0 +19893,63,43.9,43,0.0 +19893,32,32,23,0.0 +19893,72,34.8,31,0.0 +19893,26,31.23,38,0.0 +19893,31,12.5,5,0.0 +19893,69,36,12,0.0 +19893,8,40,35,0.0 +19893,70,15,41,0.0 +19893,1,18,17,0.0 +19893,17,39,25,0.0 +19893,59,55,24,0.0 +19893,27,43.9,44,0.0 +19893,75,7.75,47,0.0 +19893,39,18,13,0.0 +19893,77,13,11,0.0 +19893,44,19.45,3,0.0 +19893,50,16.25,46,0.0 +19893,55,24,15,0.0 +19893,30,25.89,3,0.0 +19893,48,12.75,11,0.0 +19893,41,9.65,23,0.0 +19893,35,18,19,0.0 +19893,53,32.8,24,0.0 +19893,74,10,22,0.0 +19893,20,81,26,0.0 +19893,22,21,20,0.0 +19893,51,53,2,0.0 +19893,61,28.5,46,0.0 +19893,13,6,40,0.0 +19893,46,12,50,0.0 +19893,2,19,37,0.0 +19893,18,62.5,43,0.0 +19893,58,13.25,20,0.0 +19893,54,7.45,6,0.0 +19893,5,21.35,32,0.0 +19893,12,38,31,0.0 +19893,11,21,38,0.0 +19893,7,30,25,0.0 +19893,6,25,42,0.0 +19893,16,17.45,14,0.0 +19893,15,15.5,5,0.0 +19893,38,263.5,16,0.0 +19893,57,19.5,50,0.0 +19893,49,20,25,0.0 +19893,9,97,5,0.0 +19893,10,31,12,0.0 +19893,52,7,41,0.0 +19893,33,2.5,8,0.0 +19893,25,14,14,0.0 +19893,21,10,5,0.0 +19893,3,10,35,0.0 +19893,24,4.5,9,0.0 +19894,64,33.25,25,0.0 +19894,52,7,2,0.0 +19894,56,38,29,0.0 +19894,46,12,12,0.0 +19894,51,53,22,0.0 +19894,54,7.45,19,0.0 +19894,75,7.75,1,0.0 +19894,57,19.5,35,0.0 +19894,44,19.45,5,0.0 +19894,59,55,48,0.0 +19894,12,38,35,0.0 +19894,65,21.05,34,0.0 +19894,63,43.9,47,0.0 +19894,22,21,28,0.0 +19894,4,22,20,0.0 +19894,39,18,33,0.0 +19894,11,21,36,0.0 +19894,20,81,40,0.0 +19894,37,26,27,0.0 +19894,29,123.79,27,0.0 +19894,48,12.75,4,0.0 +19894,18,62.5,16,0.0 +19894,66,17,18,0.0 +19894,71,21.5,30,0.0 +19894,58,13.25,17,0.0 +19894,15,15.5,22,0.0 +19894,2,19,1,0.0 +19894,73,15,9,0.0 +19894,23,9,21,0.0 +19894,38,263.5,13,0.0 +19894,62,49.3,11,0.0 +19894,7,30,14,0.0 +19894,49,20,44,0.0 +19894,34,14,19,0.0 +19894,68,12.5,19,0.0 +19894,9,97,9,0.0 +19894,26,31.23,47,0.0 +19894,32,32,38,0.0 +19894,8,40,6,0.0 +19894,55,24,33,0.0 +19894,28,45.6,35,0.0 +19894,70,15,19,0.0 +19894,61,28.5,50,0.0 +19894,3,10,8,0.0 +19894,24,4.5,10,0.0 +19894,5,21.35,17,0.0 +19894,74,10,30,0.0 +19894,14,23.25,47,0.0 +19894,41,9.65,46,0.0 +19894,43,46,40,0.0 +19894,77,13,49,0.0 +19894,1,18,27,0.0 +19894,53,32.8,48,0.0 +19894,21,10,18,0.0 +19894,27,43.9,28,0.0 +19894,60,34,21,0.0 +19894,35,18,4,0.0 +19894,6,25,5,0.0 +19894,69,36,4,0.0 +19894,10,31,16,0.0 +19895,54,7.45,45,0.0 +19895,56,38,26,0.0 +19895,72,34.8,29,0.0 +19895,65,21.05,38,0.0 +19895,11,21,41,0.0 +19895,26,31.23,5,0.0 +19895,66,17,12,0.0 +19895,6,25,1,0.0 +19895,58,13.25,20,0.0 +19895,39,18,34,0.0 +19895,21,10,35,0.0 +19895,10,31,39,0.0 +19895,28,45.6,2,0.0 +19895,76,18,32,0.0 +19895,42,14,35,0.0 +19895,67,14,47,0.0 +19895,40,18.4,40,0.0 +19895,71,21.5,18,0.0 +19895,36,19,30,0.0 +19895,16,17.45,37,0.0 +19895,30,25.89,22,0.0 +19895,59,55,32,0.0 +19895,53,32.8,33,0.0 +19895,18,62.5,8,0.0 +19895,43,46,5,0.0 +19895,22,21,4,0.0 +19895,25,14,15,0.0 +19895,29,123.79,14,0.0 +19895,48,12.75,41,0.0 +19895,27,43.9,11,0.0 +19895,4,22,48,0.0 +19895,37,26,49,0.0 +19895,51,53,31,0.0 +19895,5,21.35,23,0.0 +19895,68,12.5,29,0.0 +19895,61,28.5,44,0.0 +19895,74,10,9,0.0 +19895,62,49.3,1,0.0 +19895,20,81,22,0.0 +19895,75,7.75,23,0.0 +19895,57,19.5,4,0.0 +19895,69,36,34,0.0 +19895,15,15.5,13,0.0 +19895,55,24,22,0.0 +19895,70,15,23,0.0 +19895,31,12.5,2,0.0 +19895,73,15,20,0.0 +19895,19,9.2,49,0.0 +19895,77,13,7,0.0 +19895,49,20,39,0.0 +19895,14,23.25,16,0.0 +19895,63,43.9,27,0.0 +19895,50,16.25,15,0.0 +19895,12,38,3,0.0 +19895,23,9,27,0.0 +19895,8,40,47,0.0 +19895,7,30,26,0.0 +19895,47,9.5,49,0.0 +19895,44,19.45,43,0.0 +19895,24,4.5,24,0.0 +19895,38,263.5,26,0.0 +19895,64,33.25,4,0.0 +19895,13,6,35,0.0 +19896,73,15,5,0.0 +19896,52,7,46,0.0 +19896,17,39,38,0.0 +19896,57,19.5,41,0.0 +19896,49,20,37,0.0 +19896,7,30,16,0.0 +19896,31,12.5,47,0.0 +19896,69,36,12,0.0 +19896,1,18,39,0.0 +19896,35,18,42,0.0 +19896,62,49.3,4,0.0 +19896,76,18,13,0.0 +19896,72,34.8,43,0.0 +19896,3,10,43,0.0 +19896,63,43.9,19,0.0 +19896,64,33.25,33,0.0 +19896,50,16.25,28,0.0 +19896,40,18.4,37,0.0 +19896,55,24,43,0.0 +19896,53,32.8,25,0.0 +19896,45,9.5,39,0.0 +19896,20,81,5,0.0 +19896,59,55,47,0.0 +19896,58,13.25,10,0.0 +19896,19,9.2,29,0.0 +19896,18,62.5,32,0.0 +19896,32,32,13,0.0 +19896,23,9,29,0.0 +19896,37,26,29,0.0 +19896,30,25.89,31,0.0 +19896,6,25,45,0.0 +19896,13,6,23,0.0 +19896,10,31,25,0.0 +19896,70,15,41,0.0 +19896,74,10,1,0.0 +19896,41,9.65,3,0.0 +19896,11,21,7,0.0 +19896,48,12.75,39,0.0 +19896,21,10,44,0.0 +19896,8,40,49,0.0 +19896,43,46,20,0.0 +19896,68,12.5,3,0.0 +19896,26,31.23,41,0.0 +19896,16,17.45,6,0.0 +19896,75,7.75,11,0.0 +19896,56,38,45,0.0 +19896,4,22,24,0.0 +19896,77,13,27,0.0 +19896,36,19,43,0.0 +19896,71,21.5,27,0.0 +19896,9,97,23,0.0 +19896,28,45.6,26,0.0 +19896,38,263.5,36,0.0 +19897,42,14,41,0.0 +19897,46,12,19,0.0 +19897,7,30,15,0.0 +19897,52,7,49,0.0 +19897,1,18,6,0.0 +19897,13,6,31,0.0 +19897,68,12.5,1,0.0 +19897,71,21.5,42,0.0 +19897,23,9,19,0.0 +19897,55,24,44,0.0 +19897,38,263.5,41,0.0 +19897,4,22,7,0.0 +19897,65,21.05,38,0.0 +19897,43,46,21,0.0 +19897,64,33.25,7,0.0 +19897,28,45.6,3,0.0 +19897,8,40,12,0.0 +19897,35,18,16,0.0 +19897,15,15.5,29,0.0 +19897,29,123.79,34,0.0 +19897,77,13,7,0.0 +19897,18,62.5,23,0.0 +19897,20,81,10,0.0 +19897,72,34.8,16,0.0 +19897,53,32.8,6,0.0 +19897,63,43.9,38,0.0 +19897,74,10,7,0.0 +19897,47,9.5,11,0.0 +19897,16,17.45,14,0.0 +19897,25,14,16,0.0 +19897,11,21,50,0.0 +19897,49,20,33,0.0 +19897,36,19,5,0.0 +19897,12,38,7,0.0 +19897,19,9.2,42,0.0 +19897,37,26,9,0.0 +19897,27,43.9,48,0.0 +19897,39,18,39,0.0 +19897,50,16.25,8,0.0 +19897,17,39,37,0.0 +19897,33,2.5,6,0.0 +19897,5,21.35,17,0.0 +19897,75,7.75,28,0.0 +19897,59,55,10,0.0 +19897,51,53,13,0.0 +19897,24,4.5,31,0.0 +19897,26,31.23,48,0.0 +19897,31,12.5,43,0.0 +19897,56,38,29,0.0 +19897,44,19.45,49,0.0 +19897,2,19,49,0.0 +19897,67,14,6,0.0 +19897,10,31,38,0.0 +19897,6,25,35,0.0 +19897,30,25.89,20,0.0 +19897,41,9.65,20,0.0 +19897,32,32,15,0.0 +19897,48,12.75,39,0.0 +19897,66,17,4,0.0 +19897,76,18,18,0.0 +19897,60,34,31,0.0 +19897,58,13.25,41,0.0 +19897,73,15,47,0.0 +19897,54,7.45,14,0.0 +19897,40,18.4,25,0.0 +19897,57,19.5,27,0.0 +19897,34,14,47,0.0 +19898,24,4.5,43,0.0 +19898,55,24,46,0.0 +19898,45,9.5,37,0.0 +19898,43,46,29,0.0 +19898,36,19,39,0.0 +19898,33,2.5,42,0.0 +19898,25,14,32,0.0 +19898,13,6,31,0.0 +19898,23,9,10,0.0 +19898,16,17.45,5,0.0 +19898,53,32.8,14,0.0 +19898,58,13.25,10,0.0 +19898,59,55,10,0.0 +19898,48,12.75,1,0.0 +19898,12,38,20,0.0 +19898,70,15,13,0.0 +19898,21,10,32,0.0 +19898,32,32,41,0.0 +19898,41,9.65,50,0.0 +19898,7,30,31,0.0 +19898,72,34.8,37,0.0 +19898,38,263.5,35,0.0 +19898,27,43.9,34,0.0 +19898,65,21.05,7,0.0 +19898,17,39,16,0.0 +19898,9,97,47,0.0 +19898,3,10,35,0.0 +19898,1,18,46,0.0 +19898,26,31.23,15,0.0 +19898,6,25,34,0.0 +19898,37,26,45,0.0 +19898,56,38,35,0.0 +19898,47,9.5,50,0.0 +19899,31,12.5,27,0.0 +19899,2,19,12,0.0 +19899,20,81,1,0.0 +19899,11,21,8,0.0 +19899,22,21,1,0.0 +19899,45,9.5,47,0.0 +19899,3,10,4,0.0 +19899,47,9.5,39,0.0 +19899,14,23.25,13,0.0 +19899,29,123.79,23,0.0 +19899,16,17.45,9,0.0 +19899,61,28.5,11,0.0 +19899,7,30,6,0.0 +19899,53,32.8,33,0.0 +19899,72,34.8,46,0.0 +19899,39,18,11,0.0 +19899,37,26,40,0.0 +19899,34,14,37,0.0 +19899,43,46,5,0.0 +19899,57,19.5,26,0.0 +19899,19,9.2,22,0.0 +19900,77,13,18,0.0 +19900,45,9.5,14,0.0 +19900,60,34,3,0.0 +19900,22,21,49,0.0 +19900,51,53,44,0.0 +19900,72,34.8,11,0.0 +19900,58,13.25,11,0.0 +19900,66,17,41,0.0 +19900,20,81,42,0.0 +19900,74,10,41,0.0 +19900,1,18,25,0.0 +19900,29,123.79,44,0.0 +19900,56,38,44,0.0 +19900,15,15.5,3,0.0 +19900,73,15,17,0.0 +19900,39,18,11,0.0 +19900,35,18,13,0.0 +19900,34,14,34,0.0 +19900,12,38,25,0.0 +19900,53,32.8,24,0.0 +19900,67,14,11,0.0 +19900,23,9,19,0.0 +19900,49,20,5,0.0 +19900,38,263.5,45,0.0 +19900,33,2.5,11,0.0 +19900,21,10,8,0.0 +19900,47,9.5,14,0.0 +19900,63,43.9,8,0.0 +19900,48,12.75,18,0.0 +19900,40,18.4,3,0.0 +19900,7,30,43,0.0 +19900,64,33.25,11,0.0 +19900,50,16.25,34,0.0 +19900,11,21,16,0.0 +19900,59,55,41,0.0 +19900,57,19.5,40,0.0 +19900,8,40,44,0.0 +19900,9,97,35,0.0 +19900,61,28.5,4,0.0 +19900,2,19,46,0.0 +19900,69,36,40,0.0 +19900,27,43.9,40,0.0 +19900,36,19,10,0.0 +19900,13,6,19,0.0 +19900,55,24,18,0.0 +19900,68,12.5,50,0.0 +19900,65,21.05,31,0.0 +19900,28,45.6,49,0.0 +19900,25,14,10,0.0 +19900,30,25.89,31,0.0 +19900,54,7.45,28,0.0 +19900,71,21.5,50,0.0 +19900,52,7,24,0.0 +19900,3,10,19,0.0 +19900,6,25,26,0.0 +19900,76,18,15,0.0 +19900,10,31,37,0.0 +19900,42,14,2,0.0 +19900,17,39,7,0.0 +19900,16,17.45,10,0.0 +19900,26,31.23,21,0.0 +19900,44,19.45,7,0.0 +19900,43,46,4,0.0 +19901,31,12.5,49,0.0 +19901,48,12.75,3,0.0 +19901,1,18,41,0.0 +19901,8,40,44,0.0 +19901,69,36,21,0.0 +19901,26,31.23,43,0.0 +19901,6,25,24,0.0 +19901,35,18,49,0.0 +19901,75,7.75,42,0.0 +19901,55,24,41,0.0 +19901,67,14,15,0.0 +19901,13,6,10,0.0 +19901,5,21.35,6,0.0 +19901,28,45.6,27,0.0 +19901,54,7.45,47,0.0 +19901,14,23.25,44,0.0 +19901,49,20,24,0.0 +19901,41,9.65,18,0.0 +19901,68,12.5,28,0.0 +19901,17,39,50,0.0 +19901,4,22,37,0.0 +19901,65,21.05,2,0.0 +19902,48,12.75,27,0.0 +19902,7,30,38,0.0 +19902,29,123.79,16,0.0 +19902,61,28.5,31,0.0 +19903,39,18,12,0.0 +19903,65,21.05,3,0.0 +19903,29,123.79,32,0.0 +19903,7,30,11,0.0 +19903,26,31.23,20,0.0 +19903,73,15,45,0.0 +19903,69,36,3,0.0 +19903,77,13,49,0.0 +19903,43,46,41,0.0 +19903,56,38,5,0.0 +19903,2,19,46,0.0 +19903,23,9,26,0.0 +19903,75,7.75,40,0.0 +19903,57,19.5,20,0.0 +19903,49,20,25,0.0 +19903,59,55,5,0.0 +19903,47,9.5,13,0.0 +19903,42,14,9,0.0 +19903,28,45.6,12,0.0 +19903,46,12,12,0.0 +19903,20,81,50,0.0 +19903,40,18.4,14,0.0 +19903,72,34.8,39,0.0 +19903,52,7,40,0.0 +19903,58,13.25,42,0.0 +19904,63,43.9,43,0.0 +19904,22,21,17,0.0 +19904,33,2.5,26,0.0 +19905,7,30,28,0.0 +19905,39,18,32,0.0 +19905,29,123.79,16,0.0 +19905,3,10,49,0.0 +19905,28,45.6,3,0.0 +19905,75,7.75,14,0.0 +19905,5,21.35,18,0.0 +19905,2,19,27,0.0 +19905,73,15,2,0.0 +19905,33,2.5,39,0.0 +19905,34,14,48,0.0 +19905,20,81,35,0.0 +19905,8,40,47,0.0 +19905,10,31,13,0.0 +19905,23,9,9,0.0 +19905,68,12.5,45,0.0 +19905,30,25.89,50,0.0 +19905,17,39,46,0.0 +19905,65,21.05,9,0.0 +19905,61,28.5,31,0.0 +19905,60,34,8,0.0 +19905,66,17,36,0.0 +19905,69,36,26,0.0 +19905,32,32,45,0.0 +19905,41,9.65,48,0.0 +19905,40,18.4,6,0.0 +19905,35,18,45,0.0 +19905,48,12.75,9,0.0 +19905,57,19.5,33,0.0 +19906,14,23.25,4,0.0 +19906,65,21.05,36,0.0 +19906,3,10,28,0.0 +19906,75,7.75,1,0.0 +19906,35,18,35,0.0 +19906,2,19,38,0.0 +19906,41,9.65,48,0.0 +19906,19,9.2,35,0.0 +19906,44,19.45,38,0.0 +19906,67,14,15,0.0 +19906,25,14,21,0.0 +19906,30,25.89,23,0.0 +19906,4,22,8,0.0 +19906,74,10,13,0.0 +19906,7,30,40,0.0 +19906,55,24,35,0.0 +19906,45,9.5,10,0.0 +19906,1,18,4,0.0 +19906,26,31.23,23,0.0 +19906,62,49.3,4,0.0 +19906,51,53,7,0.0 +19906,9,97,40,0.0 +19906,31,12.5,15,0.0 +19906,59,55,11,0.0 +19906,29,123.79,18,0.0 +19906,21,10,2,0.0 +19906,76,18,44,0.0 +19906,49,20,9,0.0 +19906,18,62.5,34,0.0 +19906,39,18,16,0.0 +19906,58,13.25,1,0.0 +19906,57,19.5,38,0.0 +19906,68,12.5,23,0.0 +19906,43,46,31,0.0 +19906,40,18.4,8,0.0 +19906,6,25,47,0.0 +19906,22,21,47,0.0 +19906,47,9.5,2,0.0 +19906,11,21,35,0.0 +19906,69,36,2,0.0 +19906,24,4.5,12,0.0 +19906,56,38,37,0.0 +19906,23,9,4,0.0 +19906,71,21.5,46,0.0 +19907,3,10,44,0.0 +19907,30,25.89,28,0.0 +19907,61,28.5,49,0.0 +19907,43,46,4,0.0 +19907,46,12,13,0.0 +19907,10,31,17,0.0 +19907,6,25,16,0.0 +19907,33,2.5,4,0.0 +19907,29,123.79,5,0.0 +19907,64,33.25,24,0.0 +19907,31,12.5,6,0.0 +19907,22,21,28,0.0 +19907,38,263.5,32,0.0 +19907,71,21.5,37,0.0 +19907,69,36,15,0.0 +19907,39,18,26,0.0 +19907,59,55,32,0.0 +19907,41,9.65,15,0.0 +19907,75,7.75,21,0.0 +19907,17,39,4,0.0 +19907,37,26,19,0.0 +19907,4,22,36,0.0 +19907,25,14,12,0.0 +19907,57,19.5,34,0.0 +19907,52,7,47,0.0 +19907,35,18,3,0.0 +19907,63,43.9,49,0.0 +19907,73,15,18,0.0 +19907,45,9.5,43,0.0 +19907,11,21,18,0.0 +19907,50,16.25,25,0.0 +19907,60,34,6,0.0 +19907,58,13.25,40,0.0 +19907,47,9.5,16,0.0 +19907,34,14,6,0.0 +19907,55,24,12,0.0 +19907,13,6,48,0.0 +19907,2,19,41,0.0 +19907,27,43.9,21,0.0 +19907,72,34.8,41,0.0 +19907,21,10,47,0.0 +19907,51,53,23,0.0 +19907,28,45.6,40,0.0 +19907,12,38,36,0.0 +19907,62,49.3,31,0.0 +19907,74,10,28,0.0 +19907,20,81,2,0.0 +19907,16,17.45,21,0.0 +19907,24,4.5,8,0.0 +19907,40,18.4,24,0.0 +19907,23,9,39,0.0 +19907,5,21.35,35,0.0 +19907,44,19.45,39,0.0 +19907,53,32.8,4,0.0 +19907,36,19,37,0.0 +19907,15,15.5,47,0.0 +19907,7,30,27,0.0 +19907,56,38,15,0.0 +19907,48,12.75,37,0.0 +19907,66,17,39,0.0 +19907,19,9.2,33,0.0 +19907,54,7.45,50,0.0 +19907,49,20,17,0.0 +19907,9,97,1,0.0 +19907,70,15,7,0.0 +19907,18,62.5,36,0.0 +19907,77,13,16,0.0 +19907,32,32,18,0.0 +19908,24,4.5,6,0.0 +19908,52,7,3,0.0 +19908,60,34,34,0.0 +19908,68,12.5,19,0.0 +19908,39,18,21,0.0 +19908,31,12.5,5,0.0 +19908,8,40,8,0.0 +19908,44,19.45,41,0.0 +19908,20,81,46,0.0 +19908,65,21.05,7,0.0 +19908,10,31,47,0.0 +19908,77,13,49,0.0 +19908,19,9.2,20,0.0 +19908,58,13.25,33,0.0 +19908,25,14,7,0.0 +19908,45,9.5,49,0.0 +19908,59,55,20,0.0 +19908,38,263.5,26,0.0 +19908,41,9.65,20,0.0 +19908,43,46,32,0.0 +19908,47,9.5,43,0.0 +19908,15,15.5,19,0.0 +19908,35,18,9,0.0 +19908,11,21,33,0.0 +19908,28,45.6,14,0.0 +19908,42,14,13,0.0 +19908,61,28.5,16,0.0 +19908,64,33.25,17,0.0 +19908,50,16.25,47,0.0 +19908,37,26,38,0.0 +19908,17,39,43,0.0 +19908,9,97,16,0.0 +19908,70,15,49,0.0 +19908,30,25.89,43,0.0 +19908,74,10,3,0.0 +19908,22,21,11,0.0 +19908,63,43.9,15,0.0 +19908,69,36,9,0.0 +19908,27,43.9,22,0.0 +19908,62,49.3,34,0.0 +19908,72,34.8,25,0.0 +19908,3,10,9,0.0 +19908,21,10,23,0.0 +19908,40,18.4,45,0.0 +19908,32,32,20,0.0 +19908,13,6,26,0.0 +19908,57,19.5,38,0.0 +19908,67,14,25,0.0 +19908,51,53,50,0.0 +19908,71,21.5,37,0.0 +19908,23,9,28,0.0 +19908,34,14,47,0.0 +19908,18,62.5,8,0.0 +19908,33,2.5,5,0.0 +19908,7,30,33,0.0 +19908,76,18,11,0.0 +19908,66,17,30,0.0 +19908,1,18,23,0.0 +19908,29,123.79,46,0.0 +19908,54,7.45,29,0.0 +19908,56,38,47,0.0 +19908,2,19,22,0.0 +19908,12,38,18,0.0 +19908,73,15,35,0.0 +19908,14,23.25,36,0.0 +19908,16,17.45,48,0.0 +19909,4,22,43,0.0 +19909,50,16.25,50,0.0 +19909,8,40,46,0.0 +19909,48,12.75,41,0.0 +19909,14,23.25,16,0.0 +19909,40,18.4,20,0.0 +19909,20,81,13,0.0 +19909,18,62.5,4,0.0 +19909,47,9.5,46,0.0 +19909,26,31.23,2,0.0 +19909,19,9.2,22,0.0 +19909,67,14,17,0.0 +19909,59,55,22,0.0 +19909,33,2.5,4,0.0 +19909,72,34.8,23,0.0 +19909,31,12.5,42,0.0 +19909,37,26,31,0.0 +19909,1,18,11,0.0 +19909,58,13.25,5,0.0 +19909,41,9.65,37,0.0 +19909,66,17,4,0.0 +19909,61,28.5,12,0.0 +19909,71,21.5,13,0.0 +19909,12,38,20,0.0 +19909,5,21.35,40,0.0 +19909,34,14,28,0.0 +19909,10,31,29,0.0 +19909,62,49.3,49,0.0 +19909,60,34,28,0.0 +19909,46,12,46,0.0 +19910,75,7.75,32,0.0 +19910,60,34,13,0.0 +19910,57,19.5,31,0.0 +19910,56,38,6,0.0 +19910,49,20,23,0.0 +19910,18,62.5,27,0.0 +19910,27,43.9,32,0.0 +19910,23,9,10,0.0 +19910,32,32,35,0.0 +19910,13,6,6,0.0 +19910,31,12.5,37,0.0 +19910,7,30,49,0.0 +19910,51,53,16,0.0 +19910,74,10,12,0.0 +19910,38,263.5,12,0.0 +19910,48,12.75,29,0.0 +19910,62,49.3,34,0.0 +19910,12,38,12,0.0 +19910,24,4.5,23,0.0 +19910,42,14,20,0.0 +19910,55,24,50,0.0 +19910,37,26,21,0.0 +19910,67,14,9,0.0 +19910,4,22,30,0.0 +19910,43,46,30,0.0 +19910,69,36,9,0.0 +19910,5,21.35,38,0.0 +19910,2,19,24,0.0 +19910,40,18.4,2,0.0 +19910,6,25,5,0.0 +19911,10,31,24,0.0 +19911,71,21.5,43,0.0 +19911,2,19,46,0.0 +19911,75,7.75,24,0.0 +19911,45,9.5,4,0.0 +19911,42,14,41,0.0 +19911,20,81,2,0.0 +19911,43,46,47,0.0 +19911,44,19.45,42,0.0 +19911,73,15,16,0.0 +19911,40,18.4,47,0.0 +19911,6,25,16,0.0 +19911,46,12,27,0.0 +19911,62,49.3,34,0.0 +19911,69,36,43,0.0 +19911,59,55,19,0.0 +19911,76,18,7,0.0 +19911,68,12.5,27,0.0 +19911,22,21,3,0.0 +19911,63,43.9,22,0.0 +19911,7,30,38,0.0 +19911,60,34,28,0.0 +19911,37,26,4,0.0 +19911,61,28.5,14,0.0 +19911,4,22,23,0.0 +19911,58,13.25,45,0.0 +19911,25,14,17,0.0 +19911,72,34.8,10,0.0 +19911,66,17,36,0.0 +19911,1,18,46,0.0 +19911,3,10,40,0.0 +19911,26,31.23,25,0.0 +19911,5,21.35,7,0.0 +19911,36,19,7,0.0 +19911,50,16.25,27,0.0 +19911,39,18,3,0.0 +19911,52,7,4,0.0 +19911,64,33.25,39,0.0 +19911,23,9,29,0.0 +19911,27,43.9,1,0.0 +19911,12,38,43,0.0 +19911,13,6,49,0.0 +19911,21,10,40,0.0 +19911,38,263.5,26,0.0 +19911,17,39,48,0.0 +19911,47,9.5,39,0.0 +19911,9,97,23,0.0 +19911,33,2.5,21,0.0 +19911,48,12.75,32,0.0 +19911,29,123.79,8,0.0 +19911,54,7.45,18,0.0 +19911,70,15,42,0.0 +19911,8,40,43,0.0 +19911,35,18,6,0.0 +19911,11,21,33,0.0 +19911,56,38,4,0.0 +19911,19,9.2,33,0.0 +19911,74,10,37,0.0 +19911,34,14,21,0.0 +19911,15,15.5,1,0.0 +19911,67,14,24,0.0 +19911,14,23.25,7,0.0 +19911,30,25.89,27,0.0 +19911,41,9.65,42,0.0 +19911,24,4.5,49,0.0 +19911,32,32,26,0.0 +19911,49,20,1,0.0 +19911,16,17.45,22,0.0 +19911,28,45.6,20,0.0 +19911,65,21.05,19,0.0 +19911,31,12.5,38,0.0 +19911,57,19.5,46,0.0 +19912,77,13,27,0.0 +19912,38,263.5,27,0.0 +19912,7,30,40,0.0 +19912,29,123.79,13,0.0 +19912,16,17.45,41,0.0 +19912,4,22,46,0.0 +19912,54,7.45,2,0.0 +19912,10,31,3,0.0 +19912,32,32,24,0.0 +19912,14,23.25,26,0.0 +19912,76,18,38,0.0 +19912,19,9.2,20,0.0 +19912,31,12.5,11,0.0 +19912,3,10,44,0.0 +19912,55,24,5,0.0 +19912,9,97,14,0.0 +19912,34,14,37,0.0 +19912,36,19,45,0.0 +19912,21,10,29,0.0 +19912,40,18.4,47,0.0 +19912,8,40,11,0.0 +19912,69,36,14,0.0 +19912,24,4.5,44,0.0 +19912,44,19.45,11,0.0 +19912,60,34,34,0.0 +19912,64,33.25,17,0.0 +19912,70,15,10,0.0 +19912,50,16.25,18,0.0 +19912,37,26,38,0.0 +19912,53,32.8,5,0.0 +19912,57,19.5,21,0.0 +19912,42,14,41,0.0 +19912,20,81,11,0.0 +19912,23,9,33,0.0 +19912,62,49.3,34,0.0 +19912,66,17,22,0.0 +19912,15,15.5,47,0.0 +19912,41,9.65,39,0.0 +19912,75,7.75,45,0.0 +19912,39,18,48,0.0 +19912,45,9.5,20,0.0 +19912,18,62.5,41,0.0 +19912,12,38,29,0.0 +19912,74,10,21,0.0 +19912,28,45.6,49,0.0 +19912,58,13.25,24,0.0 +19912,13,6,15,0.0 +19912,49,20,40,0.0 +19912,1,18,34,0.0 +19912,51,53,19,0.0 +19912,68,12.5,10,0.0 +19912,33,2.5,13,0.0 +19912,63,43.9,14,0.0 +19912,73,15,9,0.0 +19912,47,9.5,21,0.0 +19912,5,21.35,7,0.0 +19912,46,12,41,0.0 +19912,11,21,14,0.0 +19912,67,14,30,0.0 +19912,59,55,29,0.0 +19912,65,21.05,13,0.0 +19912,72,34.8,50,0.0 +19912,22,21,19,0.0 +19913,28,45.6,25,0.0 +19913,74,10,26,0.0 +19913,1,18,5,0.0 +19913,14,23.25,15,0.0 +19913,39,18,36,0.0 +19913,72,34.8,43,0.0 +19913,27,43.9,27,0.0 +19913,44,19.45,2,0.0 +19913,77,13,44,0.0 +19913,19,9.2,29,0.0 +19913,24,4.5,4,0.0 +19913,37,26,16,0.0 +19913,57,19.5,12,0.0 +19913,56,38,19,0.0 +19913,47,9.5,10,0.0 +19913,29,123.79,19,0.0 +19913,65,21.05,46,0.0 +19913,20,81,20,0.0 +19913,41,9.65,42,0.0 +19913,13,6,5,0.0 +19913,69,36,9,0.0 +19913,70,15,49,0.0 +19913,53,32.8,24,0.0 +19913,60,34,13,0.0 +19913,38,263.5,50,0.0 +19913,15,15.5,15,0.0 +19913,33,2.5,47,0.0 +19913,52,7,43,0.0 +19913,51,53,41,0.0 +19913,66,17,9,0.0 +19913,26,31.23,12,0.0 +19913,55,24,43,0.0 +19913,23,9,12,0.0 +19913,21,10,16,0.0 +19913,43,46,4,0.0 +19913,32,32,49,0.0 +19913,42,14,22,0.0 +19913,54,7.45,29,0.0 +19913,8,40,39,0.0 +19913,76,18,50,0.0 +19913,25,14,5,0.0 +19913,63,43.9,39,0.0 +19913,59,55,33,0.0 +19913,12,38,33,0.0 +19913,68,12.5,34,0.0 +19913,2,19,10,0.0 +19913,36,19,25,0.0 +19913,34,14,39,0.0 +19913,4,22,4,0.0 +19913,35,18,21,0.0 +19913,17,39,15,0.0 +19913,16,17.45,34,0.0 +19913,73,15,19,0.0 +19913,61,28.5,21,0.0 +19913,5,21.35,30,0.0 +19913,50,16.25,14,0.0 +19913,18,62.5,22,0.0 +19913,40,18.4,21,0.0 +19913,11,21,50,0.0 +19913,10,31,46,0.0 +19913,22,21,38,0.0 +19913,48,12.75,48,0.0 +19914,21,10,1,0.0 +19914,27,43.9,9,0.0 +19914,10,31,15,0.0 +19914,65,21.05,31,0.0 +19914,45,9.5,26,0.0 +19914,76,18,17,0.0 +19914,58,13.25,6,0.0 +19914,64,33.25,15,0.0 +19914,40,18.4,45,0.0 +19914,22,21,15,0.0 +19914,1,18,22,0.0 +19914,31,12.5,10,0.0 +19914,25,14,14,0.0 +19914,12,38,25,0.0 +19914,32,32,13,0.0 +19914,61,28.5,7,0.0 +19914,73,15,37,0.0 +19914,18,62.5,26,0.0 +19914,28,45.6,36,0.0 +19914,34,14,17,0.0 +19914,49,20,5,0.0 +19914,68,12.5,32,0.0 +19914,70,15,3,0.0 +19914,29,123.79,24,0.0 +19914,52,7,22,0.0 +19914,50,16.25,45,0.0 +19914,7,30,9,0.0 +19914,72,34.8,10,0.0 +19914,15,15.5,50,0.0 +19914,3,10,7,0.0 +19914,51,53,30,0.0 +19914,63,43.9,1,0.0 +19914,37,26,45,0.0 +19914,66,17,8,0.0 +19914,71,21.5,26,0.0 +19914,60,34,17,0.0 +19914,48,12.75,46,0.0 +19914,33,2.5,4,0.0 +19914,14,23.25,5,0.0 +19914,77,13,17,0.0 +19914,62,49.3,25,0.0 +19914,53,32.8,35,0.0 +19914,6,25,17,0.0 +19914,67,14,20,0.0 +19914,38,263.5,39,0.0 +19914,69,36,31,0.0 +19914,26,31.23,44,0.0 +19914,44,19.45,10,0.0 +19914,41,9.65,14,0.0 +19914,46,12,36,0.0 +19914,47,9.5,10,0.0 +19914,36,19,26,0.0 +19914,24,4.5,34,0.0 +19914,57,19.5,1,0.0 +19914,13,6,4,0.0 +19914,75,7.75,27,0.0 +19914,55,24,42,0.0 +19914,54,7.45,33,0.0 +19914,2,19,18,0.0 +19914,19,9.2,28,0.0 +19915,16,17.45,43,0.0 +19915,28,45.6,23,0.0 +19915,34,14,3,0.0 +19915,36,19,30,0.0 +19915,13,6,2,0.0 +19915,15,15.5,47,0.0 +19915,9,97,15,0.0 +19915,31,12.5,34,0.0 +19915,2,19,45,0.0 +19915,71,21.5,50,0.0 +19915,67,14,32,0.0 +19915,59,55,12,0.0 +19915,29,123.79,28,0.0 +19915,22,21,10,0.0 +19915,70,15,12,0.0 +19915,33,2.5,50,0.0 +19915,60,34,44,0.0 +19915,23,9,17,0.0 +19915,48,12.75,10,0.0 +19915,53,32.8,20,0.0 +19915,49,20,16,0.0 +19915,72,34.8,12,0.0 +19915,27,43.9,22,0.0 +19915,69,36,27,0.0 +19915,12,38,13,0.0 +19915,30,25.89,27,0.0 +19915,65,21.05,40,0.0 +19915,26,31.23,25,0.0 +19915,50,16.25,49,0.0 +19915,32,32,15,0.0 +19915,63,43.9,11,0.0 +19915,41,9.65,2,0.0 +19915,47,9.5,12,0.0 +19915,18,62.5,18,0.0 +19915,77,13,42,0.0 +19915,38,263.5,18,0.0 +19915,55,24,11,0.0 +19915,20,81,22,0.0 +19915,10,31,24,0.0 +19915,25,14,38,0.0 +19915,3,10,48,0.0 +19915,5,21.35,1,0.0 +19915,42,14,37,0.0 +19915,64,33.25,29,0.0 +19915,51,53,49,0.0 +19915,6,25,13,0.0 +19915,8,40,30,0.0 +19915,17,39,27,0.0 +19915,19,9.2,14,0.0 +19915,24,4.5,33,0.0 +19915,46,12,9,0.0 +19915,61,28.5,24,0.0 +19915,62,49.3,13,0.0 +19915,58,13.25,24,0.0 +19915,37,26,28,0.0 +19915,76,18,16,0.0 +19915,7,30,48,0.0 +19915,40,18.4,46,0.0 +19915,73,15,11,0.0 +19915,4,22,39,0.0 +19915,54,7.45,16,0.0 +19915,75,7.75,47,0.0 +19915,74,10,45,0.0 +19915,21,10,4,0.0 +19915,35,18,1,0.0 +19915,57,19.5,4,0.0 +19915,14,23.25,3,0.0 +19915,1,18,31,0.0 +19915,56,38,6,0.0 +19915,11,21,44,0.0 +19915,45,9.5,2,0.0 +19915,44,19.45,28,0.0 +19916,29,123.79,50,0.0 +19916,3,10,27,0.0 +19916,66,17,20,0.0 +19916,46,12,16,0.0 +19916,31,12.5,40,0.0 +19916,32,32,1,0.0 +19916,26,31.23,30,0.0 +19916,38,263.5,12,0.0 +19916,2,19,9,0.0 +19916,74,10,4,0.0 +19916,7,30,47,0.0 +19916,65,21.05,22,0.0 +19916,58,13.25,36,0.0 +19916,62,49.3,22,0.0 +19916,41,9.65,19,0.0 +19916,40,18.4,15,0.0 +19916,5,21.35,25,0.0 +19916,28,45.6,1,0.0 +19916,49,20,4,0.0 +19916,56,38,33,0.0 +19916,59,55,16,0.0 +19916,61,28.5,27,0.0 +19916,53,32.8,13,0.0 +19916,52,7,11,0.0 +19916,76,18,44,0.0 +19916,33,2.5,25,0.0 +19916,14,23.25,9,0.0 +19916,27,43.9,50,0.0 +19916,73,15,10,0.0 +19916,15,15.5,50,0.0 +19916,63,43.9,14,0.0 +19916,12,38,13,0.0 +19916,23,9,27,0.0 +19916,57,19.5,22,0.0 +19916,64,33.25,50,0.0 +19916,34,14,32,0.0 +19916,69,36,33,0.0 +19916,21,10,42,0.0 +19916,30,25.89,21,0.0 +19916,67,14,33,0.0 +19916,70,15,45,0.0 +19916,42,14,21,0.0 +19916,72,34.8,19,0.0 +19916,37,26,8,0.0 +19917,29,123.79,15,0.0 +19917,66,17,13,0.0 +19917,25,14,6,0.0 +19917,24,4.5,30,0.0 +19917,34,14,35,0.0 +19917,43,46,35,0.0 +19917,32,32,46,0.0 +19917,19,9.2,30,0.0 +19917,58,13.25,34,0.0 +19917,38,263.5,18,0.0 +19917,47,9.5,6,0.0 +19917,16,17.45,11,0.0 +19917,13,6,20,0.0 +19917,72,34.8,5,0.0 +19917,57,19.5,9,0.0 +19917,60,34,10,0.0 +19917,11,21,39,0.0 +19917,54,7.45,8,0.0 +19917,45,9.5,4,0.0 +19917,65,21.05,2,0.0 +19917,21,10,35,0.0 +19917,37,26,8,0.0 +19917,39,18,42,0.0 +19917,63,43.9,43,0.0 +19917,74,10,9,0.0 +19917,26,31.23,47,0.0 +19917,14,23.25,25,0.0 +19917,6,25,23,0.0 +19917,64,33.25,2,0.0 +19917,77,13,35,0.0 +19917,30,25.89,29,0.0 +19917,41,9.65,22,0.0 +19917,1,18,16,0.0 +19917,33,2.5,10,0.0 +19918,64,33.25,34,0.0 +19918,51,53,17,0.0 +19918,4,22,22,0.0 +19918,46,12,49,0.0 +19918,41,9.65,16,0.0 +19918,16,17.45,20,0.0 +19918,67,14,2,0.0 +19918,10,31,1,0.0 +19918,70,15,49,0.0 +19918,56,38,1,0.0 +19918,9,97,17,0.0 +19918,32,32,4,0.0 +19918,31,12.5,45,0.0 +19918,22,21,35,0.0 +19918,44,19.45,50,0.0 +19918,26,31.23,26,0.0 +19918,37,26,30,0.0 +19918,33,2.5,5,0.0 +19918,58,13.25,18,0.0 +19918,12,38,14,0.0 +19918,68,12.5,19,0.0 +19918,7,30,27,0.0 +19918,59,55,6,0.0 +19918,38,263.5,15,0.0 +19918,36,19,45,0.0 +19918,2,19,4,0.0 +19918,53,32.8,21,0.0 +19918,57,19.5,28,0.0 +19918,34,14,33,0.0 +19918,75,7.75,47,0.0 +19918,54,7.45,47,0.0 +19918,62,49.3,46,0.0 +19918,71,21.5,25,0.0 +19918,23,9,21,0.0 +19918,8,40,45,0.0 +19918,52,7,28,0.0 +19918,20,81,30,0.0 +19918,63,43.9,12,0.0 +19918,3,10,6,0.0 +19918,39,18,18,0.0 +19918,74,10,27,0.0 +19918,60,34,18,0.0 +19918,73,15,44,0.0 +19918,55,24,8,0.0 +19918,65,21.05,21,0.0 +19918,42,14,15,0.0 +19918,15,15.5,12,0.0 +19918,61,28.5,37,0.0 +19918,18,62.5,38,0.0 +19918,48,12.75,12,0.0 +19918,17,39,16,0.0 +19918,14,23.25,44,0.0 +19918,25,14,4,0.0 +19918,29,123.79,36,0.0 +19919,42,14,39,0.0 +19919,33,2.5,45,0.0 +19919,2,19,9,0.0 +19919,11,21,29,0.0 +19919,12,38,1,0.0 +19920,33,2.5,27,0.0 +19920,12,38,50,0.0 +19920,27,43.9,32,0.0 +19920,56,38,46,0.0 +19920,3,10,30,0.0 +19920,20,81,25,0.0 +19920,37,26,28,0.0 +19920,10,31,3,0.0 +19920,54,7.45,28,0.0 +19920,61,28.5,44,0.0 +19920,67,14,15,0.0 +19920,46,12,38,0.0 +19920,44,19.45,8,0.0 +19920,52,7,35,0.0 +19920,41,9.65,39,0.0 +19920,6,25,30,0.0 +19920,34,14,30,0.0 +19921,69,36,4,0.0 +19921,56,38,31,0.0 +19921,14,23.25,49,0.0 +19921,4,22,23,0.0 +19921,63,43.9,34,0.0 +19921,30,25.89,17,0.0 +19921,3,10,16,0.0 +19921,65,21.05,40,0.0 +19921,61,28.5,27,0.0 +19921,5,21.35,3,0.0 +19921,8,40,1,0.0 +19921,68,12.5,1,0.0 +19921,6,25,27,0.0 +19921,59,55,14,0.0 +19921,46,12,23,0.0 +19921,25,14,36,0.0 +19921,43,46,35,0.0 +19921,20,81,36,0.0 +19921,52,7,15,0.0 +19921,75,7.75,47,0.0 +19921,17,39,46,0.0 +19921,34,14,17,0.0 +19922,69,36,5,0.0 +19922,8,40,36,0.0 +19922,55,24,12,0.0 +19922,7,30,37,0.0 +19922,44,19.45,42,0.0 +19922,33,2.5,34,0.0 +19922,76,18,44,0.0 +19922,26,31.23,35,0.0 +19922,37,26,40,0.0 +19922,45,9.5,26,0.0 +19922,16,17.45,16,0.0 +19922,65,21.05,4,0.0 +19922,17,39,48,0.0 +19922,52,7,35,0.0 +19922,74,10,32,0.0 +19922,50,16.25,25,0.0 +19922,68,12.5,45,0.0 +19922,42,14,28,0.0 +19922,51,53,36,0.0 +19922,60,34,5,0.0 +19922,21,10,16,0.0 +19922,41,9.65,5,0.0 +19922,30,25.89,17,0.0 +19922,39,18,47,0.0 +19922,13,6,40,0.0 +19922,62,49.3,31,0.0 +19922,75,7.75,42,0.0 +19922,43,46,21,0.0 +19922,10,31,16,0.0 +19922,57,19.5,9,0.0 +19922,9,97,49,0.0 +19922,64,33.25,45,0.0 +19922,22,21,31,0.0 +19922,2,19,4,0.0 +19922,59,55,34,0.0 +19922,28,45.6,14,0.0 +19922,19,9.2,3,0.0 +19922,70,15,42,0.0 +19922,34,14,39,0.0 +19922,63,43.9,20,0.0 +19922,67,14,39,0.0 +19922,35,18,44,0.0 +19922,20,81,42,0.0 +19922,47,9.5,44,0.0 +19922,56,38,11,0.0 +19922,5,21.35,40,0.0 +19922,31,12.5,43,0.0 +19922,71,21.5,24,0.0 +19922,4,22,49,0.0 +19922,48,12.75,30,0.0 +19922,6,25,20,0.0 +19922,18,62.5,48,0.0 +19922,11,21,24,0.0 +19922,66,17,48,0.0 +19922,38,263.5,2,0.0 +19922,61,28.5,45,0.0 +19922,3,10,15,0.0 +19922,12,38,40,0.0 +19922,46,12,36,0.0 +19922,53,32.8,24,0.0 +19922,58,13.25,10,0.0 +19923,68,12.5,34,0.0 +19923,62,49.3,38,0.0 +19923,72,34.8,38,0.0 +19923,64,33.25,8,0.0 +19923,55,24,23,0.0 +19923,21,10,48,0.0 +19923,24,4.5,9,0.0 +19923,7,30,23,0.0 +19923,37,26,4,0.0 +19923,3,10,6,0.0 +19923,32,32,15,0.0 +19923,50,16.25,2,0.0 +19923,25,14,7,0.0 +19923,41,9.65,28,0.0 +19923,4,22,37,0.0 +19923,12,38,1,0.0 +19923,56,38,4,0.0 +19923,42,14,13,0.0 +19923,44,19.45,27,0.0 +19923,75,7.75,35,0.0 +19923,28,45.6,9,0.0 +19923,5,21.35,7,0.0 +19923,47,9.5,33,0.0 +19923,22,21,12,0.0 +19923,65,21.05,21,0.0 +19923,20,81,7,0.0 +19923,31,12.5,34,0.0 +19923,34,14,15,0.0 +19923,2,19,31,0.0 +19923,77,13,6,0.0 +19923,74,10,19,0.0 +19923,60,34,35,0.0 +19923,63,43.9,5,0.0 +19923,36,19,35,0.0 +19923,16,17.45,39,0.0 +19923,76,18,33,0.0 +19923,61,28.5,46,0.0 +19923,43,46,6,0.0 +19923,6,25,25,0.0 +19923,19,9.2,38,0.0 +19923,1,18,22,0.0 +19923,27,43.9,16,0.0 +19924,63,43.9,18,0.0 +19924,46,12,16,0.0 +19924,43,46,6,0.0 +19924,74,10,49,0.0 +19924,62,49.3,45,0.0 +19924,41,9.65,47,0.0 +19924,17,39,12,0.0 +19924,8,40,1,0.0 +19924,47,9.5,48,0.0 +19924,14,23.25,26,0.0 +19924,27,43.9,44,0.0 +19924,71,21.5,45,0.0 +19924,23,9,38,0.0 +19924,45,9.5,17,0.0 +19924,19,9.2,22,0.0 +19924,37,26,42,0.0 +19924,65,21.05,21,0.0 +19924,66,17,28,0.0 +19924,10,31,5,0.0 +19924,49,20,18,0.0 +19924,44,19.45,49,0.0 +19924,15,15.5,38,0.0 +19924,35,18,5,0.0 +19924,40,18.4,36,0.0 +19924,5,21.35,22,0.0 +19924,6,25,18,0.0 +19924,11,21,14,0.0 +19924,50,16.25,30,0.0 +19924,70,15,19,0.0 +19924,24,4.5,43,0.0 +19924,57,19.5,37,0.0 +19924,22,21,27,0.0 +19924,2,19,43,0.0 +19924,52,7,43,0.0 +19924,26,31.23,20,0.0 +19924,68,12.5,22,0.0 +19924,42,14,23,0.0 +19924,34,14,23,0.0 +19924,61,28.5,1,0.0 +19924,30,25.89,30,0.0 +19924,38,263.5,20,0.0 +19924,31,12.5,34,0.0 +19924,28,45.6,3,0.0 +19924,4,22,1,0.0 +19924,48,12.75,36,0.0 +19924,36,19,48,0.0 +19924,9,97,19,0.0 +19924,29,123.79,21,0.0 +19924,76,18,34,0.0 +19924,69,36,35,0.0 +19924,58,13.25,39,0.0 +19925,29,123.79,44,0.0 +19925,68,12.5,33,0.0 +19925,75,7.75,50,0.0 +19925,52,7,28,0.0 +19925,33,2.5,17,0.0 +19925,38,263.5,29,0.0 +19925,71,21.5,12,0.0 +19925,41,9.65,32,0.0 +19925,34,14,39,0.0 +19925,70,15,42,0.0 +19925,25,14,8,0.0 +19925,42,14,30,0.0 +19925,47,9.5,3,0.0 +19925,31,12.5,29,0.0 +19925,3,10,25,0.0 +19925,6,25,14,0.0 +19925,48,12.75,45,0.0 +19925,69,36,1,0.0 +19925,56,38,12,0.0 +19925,23,9,12,0.0 +19925,11,21,6,0.0 +19925,21,10,50,0.0 +19925,36,19,43,0.0 +19925,19,9.2,35,0.0 +19925,22,21,47,0.0 +19925,64,33.25,19,0.0 +19925,67,14,43,0.0 +19925,32,32,39,0.0 +19925,54,7.45,9,0.0 +19925,53,32.8,10,0.0 +19925,49,20,15,0.0 +19925,37,26,45,0.0 +19925,51,53,37,0.0 +19925,61,28.5,9,0.0 +19925,16,17.45,14,0.0 +19925,66,17,3,0.0 +19925,57,19.5,22,0.0 +19925,24,4.5,44,0.0 +19925,7,30,23,0.0 +19925,20,81,9,0.0 +19925,60,34,39,0.0 +19925,30,25.89,9,0.0 +19926,73,15,46,0.0 +19926,62,49.3,31,0.0 +19926,75,7.75,30,0.0 +19926,18,62.5,44,0.0 +19926,22,21,27,0.0 +19926,26,31.23,31,0.0 +19926,68,12.5,32,0.0 +19926,60,34,8,0.0 +19926,5,21.35,30,0.0 +19926,25,14,32,0.0 +19926,27,43.9,41,0.0 +19926,49,20,46,0.0 +19926,42,14,1,0.0 +19926,16,17.45,43,0.0 +19926,33,2.5,38,0.0 +19926,55,24,14,0.0 +19926,9,97,31,0.0 +19926,2,19,6,0.0 +19927,65,21.05,30,0.0 +19927,1,18,10,0.0 +19927,21,10,22,0.0 +19927,49,20,19,0.0 +19927,27,43.9,50,0.0 +19927,74,10,4,0.0 +19927,41,9.65,23,0.0 +19927,48,12.75,41,0.0 +19927,31,12.5,19,0.0 +19927,33,2.5,48,0.0 +19928,54,7.45,17,0.0 +19928,64,33.25,19,0.0 +19928,11,21,26,0.0 +19928,70,15,6,0.0 +19928,25,14,14,0.0 +19928,77,13,22,0.0 +19928,74,10,7,0.0 +19928,63,43.9,49,0.0 +19928,43,46,13,0.0 +19928,45,9.5,43,0.0 +19928,1,18,41,0.0 +19928,58,13.25,5,0.0 +19929,20,81,50,0.0 +19929,28,45.6,7,0.0 +19929,27,43.9,33,0.0 +19929,4,22,31,0.0 +19929,43,46,25,0.0 +19929,24,4.5,12,0.0 +19929,33,2.5,41,0.0 +19929,48,12.75,35,0.0 +19929,56,38,30,0.0 +19929,21,10,32,0.0 +19929,19,9.2,17,0.0 +19929,37,26,37,0.0 +19929,66,17,9,0.0 +19929,15,15.5,27,0.0 +19929,18,62.5,30,0.0 +19929,53,32.8,27,0.0 +19929,62,49.3,47,0.0 +19929,8,40,45,0.0 +19929,14,23.25,6,0.0 +19929,65,21.05,45,0.0 +19929,5,21.35,35,0.0 +19929,70,15,35,0.0 +19929,72,34.8,22,0.0 +19929,63,43.9,47,0.0 +19929,49,20,14,0.0 +19929,68,12.5,36,0.0 +19929,71,21.5,15,0.0 +19929,9,97,23,0.0 +19929,6,25,32,0.0 +19929,74,10,22,0.0 +19929,44,19.45,39,0.0 +19929,32,32,20,0.0 +19929,23,9,37,0.0 +19929,29,123.79,30,0.0 +19929,39,18,22,0.0 +19929,50,16.25,40,0.0 +19929,1,18,26,0.0 +19929,10,31,43,0.0 +19929,60,34,22,0.0 +19929,34,14,43,0.0 +19929,3,10,18,0.0 +19929,2,19,14,0.0 +19929,73,15,4,0.0 +19929,64,33.25,47,0.0 +19930,59,55,6,0.0 +19930,77,13,11,0.0 +19930,35,18,31,0.0 +19930,19,9.2,50,0.0 +19930,20,81,14,0.0 +19930,57,19.5,35,0.0 +19930,69,36,36,0.0 +19930,72,34.8,3,0.0 +19930,1,18,30,0.0 +19930,7,30,45,0.0 +19930,44,19.45,11,0.0 +19930,55,24,34,0.0 +19930,61,28.5,11,0.0 +19930,66,17,7,0.0 +19930,30,25.89,46,0.0 +19930,74,10,22,0.0 +19930,58,13.25,47,0.0 +19930,31,12.5,39,0.0 +19930,71,21.5,24,0.0 +19930,62,49.3,39,0.0 +19930,12,38,40,0.0 +19930,6,25,27,0.0 +19930,5,21.35,35,0.0 +19930,56,38,38,0.0 +19930,54,7.45,32,0.0 +19930,47,9.5,49,0.0 +19930,27,43.9,11,0.0 +19930,15,15.5,38,0.0 +19930,73,15,4,0.0 +19930,3,10,40,0.0 +19930,41,9.65,25,0.0 +19930,32,32,42,0.0 +19930,53,32.8,47,0.0 +19930,34,14,12,0.0 +19930,25,14,4,0.0 +19930,2,19,37,0.0 +19930,39,18,30,0.0 +19930,40,18.4,42,0.0 +19930,10,31,3,0.0 +19930,50,16.25,18,0.0 +19930,67,14,16,0.0 +19930,4,22,25,0.0 +19930,60,34,37,0.0 +19930,49,20,30,0.0 +19930,36,19,26,0.0 +19930,16,17.45,50,0.0 +19930,43,46,3,0.0 +19930,76,18,18,0.0 +19930,17,39,42,0.0 +19930,51,53,7,0.0 +19930,23,9,34,0.0 +19930,63,43.9,35,0.0 +19930,13,6,8,0.0 +19930,68,12.5,23,0.0 +19930,33,2.5,28,0.0 +19930,24,4.5,16,0.0 +19930,11,21,16,0.0 +19930,37,26,38,0.0 +19930,42,14,37,0.0 +19930,52,7,22,0.0 +19930,21,10,43,0.0 +19930,14,23.25,25,0.0 +19930,18,62.5,38,0.0 +19930,9,97,48,0.0 +19931,73,15,38,0.0 +19931,27,43.9,12,0.0 +19931,68,12.5,4,0.0 +19931,49,20,28,0.0 +19931,28,45.6,29,0.0 +19931,11,21,29,0.0 +19931,69,36,42,0.0 +19931,37,26,42,0.0 +19931,4,22,21,0.0 +19931,36,19,23,0.0 +19931,77,13,37,0.0 +19931,34,14,22,0.0 +19931,6,25,22,0.0 +19931,57,19.5,2,0.0 +19931,29,123.79,49,0.0 +19931,62,49.3,20,0.0 +19931,76,18,10,0.0 +19931,23,9,9,0.0 +19931,50,16.25,18,0.0 +19931,45,9.5,40,0.0 +19931,53,32.8,45,0.0 +19931,3,10,28,0.0 +19931,30,25.89,8,0.0 +19931,66,17,40,0.0 +19931,60,34,16,0.0 +19931,1,18,9,0.0 +19931,20,81,3,0.0 +19931,39,18,9,0.0 +19931,14,23.25,31,0.0 +19931,48,12.75,16,0.0 +19931,58,13.25,8,0.0 +19931,54,7.45,37,0.0 +19931,65,21.05,29,0.0 +19931,72,34.8,46,0.0 +19931,8,40,1,0.0 +19931,74,10,13,0.0 +19931,42,14,32,0.0 +19931,44,19.45,10,0.0 +19931,22,21,45,0.0 +19931,12,38,8,0.0 +19931,7,30,13,0.0 +19931,15,15.5,13,0.0 +19931,41,9.65,18,0.0 +19931,70,15,34,0.0 +19931,19,9.2,33,0.0 +19931,13,6,28,0.0 +19931,61,28.5,47,0.0 +19931,31,12.5,3,0.0 +19931,33,2.5,25,0.0 +19931,21,10,30,0.0 +19931,64,33.25,31,0.0 +19931,71,21.5,21,0.0 +19931,5,21.35,47,0.0 +19931,43,46,15,0.0 +19931,40,18.4,38,0.0 +19931,35,18,5,0.0 +19931,47,9.5,18,0.0 +19931,9,97,27,0.0 +19931,16,17.45,25,0.0 +19931,55,24,42,0.0 +19931,2,19,37,0.0 +19931,25,14,29,0.0 +19931,67,14,41,0.0 +19931,32,32,9,0.0 +19931,24,4.5,20,0.0 +19931,52,7,39,0.0 +19931,51,53,19,0.0 +19931,26,31.23,10,0.0 +19931,18,62.5,30,0.0 +19931,59,55,36,0.0 +19931,38,263.5,46,0.0 +19931,75,7.75,22,0.0 +19931,10,31,36,0.0 +19931,17,39,16,0.0 +19932,73,15,40,0.0 +19932,54,7.45,33,0.0 +19932,68,12.5,18,0.0 +19932,59,55,35,0.0 +19932,23,9,27,0.0 +19932,7,30,12,0.0 +19932,25,14,40,0.0 +19932,64,33.25,20,0.0 +19932,38,263.5,25,0.0 +19932,61,28.5,47,0.0 +19932,69,36,48,0.0 +19932,8,40,2,0.0 +19932,35,18,39,0.0 +19932,12,38,1,0.0 +19932,55,24,34,0.0 +19932,27,43.9,29,0.0 +19932,58,13.25,50,0.0 +19932,40,18.4,24,0.0 +19932,9,97,46,0.0 +19932,50,16.25,3,0.0 +19932,22,21,32,0.0 +19932,52,7,20,0.0 +19932,57,19.5,15,0.0 +19932,43,46,5,0.0 +19932,48,12.75,41,0.0 +19932,60,34,4,0.0 +19932,75,7.75,38,0.0 +19932,53,32.8,38,0.0 +19932,17,39,11,0.0 +19932,65,21.05,29,0.0 +19932,36,19,34,0.0 +19932,16,17.45,5,0.0 +19932,37,26,3,0.0 +19932,1,18,47,0.0 +19932,34,14,40,0.0 +19932,3,10,27,0.0 +19932,18,62.5,44,0.0 +19932,47,9.5,30,0.0 +19932,4,22,35,0.0 +19932,49,20,12,0.0 +19933,2,19,10,0.0 +19933,29,123.79,45,0.0 +19933,53,32.8,3,0.0 +19933,5,21.35,29,0.0 +19933,22,21,34,0.0 +19933,13,6,21,0.0 +19933,31,12.5,6,0.0 +19933,63,43.9,25,0.0 +19933,46,12,39,0.0 +19933,26,31.23,8,0.0 +19933,77,13,23,0.0 +19933,38,263.5,31,0.0 +19933,52,7,18,0.0 +19933,48,12.75,27,0.0 +19933,39,18,3,0.0 +19933,74,10,9,0.0 +19933,34,14,29,0.0 +19933,6,25,29,0.0 +19933,16,17.45,47,0.0 +19933,55,24,15,0.0 +19933,62,49.3,3,0.0 +19933,17,39,28,0.0 +19933,1,18,27,0.0 +19933,9,97,19,0.0 +19933,69,36,41,0.0 +19933,64,33.25,29,0.0 +19933,67,14,42,0.0 +19933,19,9.2,12,0.0 +19933,44,19.45,49,0.0 +19933,25,14,27,0.0 +19933,45,9.5,40,0.0 +19933,30,25.89,20,0.0 +19933,72,34.8,48,0.0 +19933,36,19,1,0.0 +19933,59,55,24,0.0 +19933,28,45.6,8,0.0 +19933,3,10,47,0.0 +19933,11,21,25,0.0 +19933,65,21.05,46,0.0 +19933,27,43.9,18,0.0 +19933,14,23.25,15,0.0 +19933,75,7.75,41,0.0 +19933,10,31,35,0.0 +19933,33,2.5,2,0.0 +19933,15,15.5,10,0.0 +19933,50,16.25,27,0.0 +19933,56,38,47,0.0 +19933,42,14,35,0.0 +19933,57,19.5,13,0.0 +19933,35,18,23,0.0 +19933,70,15,7,0.0 +19933,37,26,29,0.0 +19933,32,32,34,0.0 +19933,61,28.5,7,0.0 +19933,4,22,7,0.0 +19933,18,62.5,10,0.0 +19933,76,18,36,0.0 +19933,71,21.5,34,0.0 +19934,13,6,12,0.0 +19934,4,22,40,0.0 +19934,54,7.45,38,0.0 +19934,28,45.6,9,0.0 +19934,71,21.5,20,0.0 +19934,66,17,46,0.0 +19934,5,21.35,43,0.0 +19934,14,23.25,40,0.0 +19934,34,14,15,0.0 +19934,55,24,8,0.0 +19934,76,18,43,0.0 +19934,52,7,9,0.0 +19934,58,13.25,29,0.0 +19934,42,14,35,0.0 +19934,70,15,3,0.0 +19934,56,38,26,0.0 +19934,37,26,42,0.0 +19934,62,49.3,48,0.0 +19934,20,81,17,0.0 +19934,12,38,11,0.0 +19934,8,40,46,0.0 +19934,40,18.4,12,0.0 +19934,9,97,35,0.0 +19934,24,4.5,6,0.0 +19934,67,14,21,0.0 +19934,10,31,45,0.0 +19934,35,18,18,0.0 +19934,21,10,22,0.0 +19934,50,16.25,1,0.0 +19934,19,9.2,8,0.0 +19934,57,19.5,4,0.0 +19934,47,9.5,30,0.0 +19934,16,17.45,45,0.0 +19934,3,10,18,0.0 +19934,59,55,19,0.0 +19934,26,31.23,33,0.0 +19934,15,15.5,12,0.0 +19934,64,33.25,13,0.0 +19934,60,34,46,0.0 +19934,1,18,31,0.0 +19934,77,13,29,0.0 +19935,69,36,28,0.0 +19935,52,7,44,0.0 +19935,12,38,36,0.0 +19935,54,7.45,40,0.0 +19935,24,4.5,46,0.0 +19935,38,263.5,3,0.0 +19935,27,43.9,27,0.0 +19935,26,31.23,40,0.0 +19935,49,20,48,0.0 +19935,23,9,43,0.0 +19935,58,13.25,12,0.0 +19935,48,12.75,25,0.0 +19935,40,18.4,19,0.0 +19935,59,55,49,0.0 +19935,53,32.8,27,0.0 +19935,64,33.25,43,0.0 +19935,62,49.3,36,0.0 +19935,68,12.5,26,0.0 +19935,3,10,40,0.0 +19935,8,40,10,0.0 +19935,4,22,44,0.0 +19935,55,24,33,0.0 +19935,5,21.35,17,0.0 +19935,15,15.5,45,0.0 +19935,46,12,34,0.0 +19935,35,18,35,0.0 +19935,32,32,46,0.0 +19935,73,15,3,0.0 +19935,75,7.75,7,0.0 +19935,44,19.45,27,0.0 +19935,34,14,9,0.0 +19935,18,62.5,26,0.0 +19935,76,18,17,0.0 +19935,19,9.2,17,0.0 +19935,67,14,23,0.0 +19935,77,13,7,0.0 +19935,56,38,44,0.0 +19935,17,39,9,0.0 +19935,10,31,31,0.0 +19936,70,15,50,0.0 +19936,12,38,40,0.0 +19936,23,9,20,0.0 +19936,74,10,11,0.0 +19936,71,21.5,46,0.0 +19936,41,9.65,34,0.0 +19936,43,46,49,0.0 +19936,28,45.6,4,0.0 +19936,17,39,23,0.0 +19936,47,9.5,46,0.0 +19936,37,26,6,0.0 +19936,35,18,17,0.0 +19936,64,33.25,18,0.0 +19936,62,49.3,35,0.0 +19936,38,263.5,27,0.0 +19936,33,2.5,8,0.0 +19936,36,19,12,0.0 +19936,39,18,19,0.0 +19936,14,23.25,7,0.0 +19936,15,15.5,50,0.0 +19936,21,10,4,0.0 +19936,56,38,48,0.0 +19936,4,22,3,0.0 +19936,48,12.75,18,0.0 +19936,53,32.8,44,0.0 +19936,51,53,34,0.0 +19936,42,14,13,0.0 +19936,9,97,50,0.0 +19936,34,14,23,0.0 +19936,18,62.5,46,0.0 +19936,61,28.5,45,0.0 +19936,45,9.5,46,0.0 +19936,72,34.8,31,0.0 +19936,68,12.5,46,0.0 +19936,11,21,36,0.0 +19936,75,7.75,1,0.0 +19936,10,31,11,0.0 +19936,7,30,36,0.0 +19936,6,25,16,0.0 +19936,13,6,8,0.0 +19936,66,17,43,0.0 +19936,67,14,33,0.0 +19936,59,55,40,0.0 +19936,3,10,15,0.0 +19936,77,13,49,0.0 +19936,49,20,10,0.0 +19936,26,31.23,29,0.0 +19936,32,32,20,0.0 +19936,24,4.5,25,0.0 +19936,54,7.45,3,0.0 +19936,57,19.5,17,0.0 +19936,65,21.05,21,0.0 +19936,46,12,49,0.0 +19936,50,16.25,50,0.0 +19936,69,36,40,0.0 +19936,2,19,31,0.0 +19936,30,25.89,14,0.0 +19936,31,12.5,47,0.0 +19937,15,15.5,14,0.0 +19937,44,19.45,21,0.0 +19937,49,20,37,0.0 +19937,59,55,43,0.0 +19937,74,10,41,0.0 +19937,42,14,49,0.0 +19937,18,62.5,42,0.0 +19937,34,14,4,0.0 +19937,20,81,3,0.0 +19937,29,123.79,46,0.0 +19937,66,17,50,0.0 +19937,5,21.35,38,0.0 +19938,27,43.9,7,0.0 +19938,13,6,50,0.0 +19938,41,9.65,9,0.0 +19938,40,18.4,50,0.0 +19938,37,26,1,0.0 +19938,39,18,29,0.0 +19938,57,19.5,10,0.0 +19938,52,7,19,0.0 +19938,7,30,37,0.0 +19938,22,21,20,0.0 +19938,70,15,1,0.0 +19938,23,9,48,0.0 +19938,65,21.05,22,0.0 +19938,14,23.25,46,0.0 +19938,21,10,5,0.0 +19938,54,7.45,29,0.0 +19938,18,62.5,6,0.0 +19938,64,33.25,48,0.0 +19938,53,32.8,5,0.0 +19938,67,14,31,0.0 +19938,43,46,14,0.0 +19938,68,12.5,29,0.0 +19938,46,12,5,0.0 +19938,12,38,2,0.0 +19938,19,9.2,17,0.0 +19938,58,13.25,15,0.0 +19938,1,18,21,0.0 +19938,60,34,44,0.0 +19938,45,9.5,26,0.0 +19938,31,12.5,2,0.0 +19938,9,97,47,0.0 +19938,34,14,25,0.0 +19938,30,25.89,36,0.0 +19938,66,17,15,0.0 +19938,50,16.25,6,0.0 +19938,62,49.3,43,0.0 +19938,42,14,27,0.0 +19938,29,123.79,15,0.0 +19938,44,19.45,9,0.0 +19938,69,36,11,0.0 +19938,3,10,43,0.0 +19938,74,10,37,0.0 +19938,16,17.45,10,0.0 +19938,55,24,48,0.0 +19938,76,18,35,0.0 +19938,38,263.5,48,0.0 +19938,26,31.23,9,0.0 +19938,73,15,5,0.0 +19938,10,31,20,0.0 +19938,5,21.35,21,0.0 +19938,47,9.5,24,0.0 +19938,24,4.5,1,0.0 +19938,2,19,18,0.0 +19938,33,2.5,12,0.0 +19938,59,55,2,0.0 +19938,25,14,18,0.0 +19938,48,12.75,16,0.0 +19938,72,34.8,24,0.0 +19938,4,22,41,0.0 +19938,11,21,16,0.0 +19938,6,25,32,0.0 +19938,20,81,8,0.0 +19938,15,15.5,7,0.0 +19938,17,39,34,0.0 +19939,7,30,20,0.0 +19939,53,32.8,7,0.0 +19939,73,15,25,0.0 +19939,21,10,17,0.0 +19939,29,123.79,41,0.0 +19939,28,45.6,24,0.0 +19939,6,25,14,0.0 +19939,15,15.5,40,0.0 +19939,64,33.25,24,0.0 +19939,72,34.8,9,0.0 +19939,26,31.23,46,0.0 +19939,62,49.3,45,0.0 +19939,70,15,49,0.0 +19939,23,9,31,0.0 +19939,9,97,24,0.0 +19939,46,12,21,0.0 +19939,41,9.65,18,0.0 +19940,11,21,12,0.0 +19940,51,53,25,0.0 +19940,74,10,12,0.0 +19940,3,10,16,0.0 +19940,62,49.3,28,0.0 +19940,65,21.05,39,0.0 +19940,34,14,37,0.0 +19940,53,32.8,39,0.0 +19940,18,62.5,25,0.0 +19940,38,263.5,31,0.0 +19940,69,36,28,0.0 +19940,37,26,19,0.0 +19940,26,31.23,29,0.0 +19940,47,9.5,15,0.0 +19940,36,19,39,0.0 +19940,8,40,2,0.0 +19940,14,23.25,45,0.0 +19940,31,12.5,3,0.0 +19940,50,16.25,40,0.0 +19940,30,25.89,31,0.0 +19940,42,14,50,0.0 +19940,55,24,34,0.0 +19940,24,4.5,33,0.0 +19940,63,43.9,3,0.0 +19940,39,18,50,0.0 +19940,13,6,24,0.0 +19940,15,15.5,16,0.0 +19941,16,17.45,39,0.0 +19941,59,55,9,0.0 +19941,34,14,34,0.0 +19941,42,14,16,0.0 +19941,29,123.79,20,0.0 +19941,71,21.5,39,0.0 +19941,18,62.5,22,0.0 +19941,41,9.65,49,0.0 +19941,54,7.45,21,0.0 +19941,73,15,26,0.0 +19941,58,13.25,24,0.0 +19941,53,32.8,50,0.0 +19941,25,14,42,0.0 +19941,23,9,27,0.0 +19941,50,16.25,2,0.0 +19941,3,10,18,0.0 +19941,75,7.75,18,0.0 +19941,49,20,37,0.0 +19941,57,19.5,6,0.0 +19941,19,9.2,39,0.0 +19941,1,18,44,0.0 +19941,22,21,27,0.0 +19941,44,19.45,30,0.0 +19941,32,32,42,0.0 +19941,38,263.5,24,0.0 +19941,64,33.25,21,0.0 +19941,69,36,30,0.0 +19941,17,39,29,0.0 +19941,61,28.5,7,0.0 +19941,74,10,32,0.0 +19941,6,25,20,0.0 +19941,56,38,13,0.0 +19941,8,40,16,0.0 +19941,31,12.5,21,0.0 +19941,67,14,32,0.0 +19941,10,31,42,0.0 +19941,30,25.89,47,0.0 +19942,77,13,1,0.0 +19942,31,12.5,14,0.0 +19942,67,14,32,0.0 +19942,64,33.25,28,0.0 +19942,36,19,1,0.0 +19942,73,15,50,0.0 +19942,19,9.2,49,0.0 +19942,30,25.89,32,0.0 +19942,21,10,42,0.0 +19942,58,13.25,29,0.0 +19942,18,62.5,16,0.0 +19942,29,123.79,40,0.0 +19942,24,4.5,13,0.0 +19942,42,14,24,0.0 +19942,51,53,26,0.0 +19942,6,25,43,0.0 +19942,53,32.8,38,0.0 +19942,25,14,43,0.0 +19942,10,31,10,0.0 +19942,65,21.05,48,0.0 +19942,17,39,48,0.0 +19942,9,97,36,0.0 +19942,48,12.75,49,0.0 +19942,11,21,31,0.0 +19942,74,10,42,0.0 +19942,40,18.4,17,0.0 +19942,54,7.45,25,0.0 +19942,75,7.75,12,0.0 +19942,41,9.65,1,0.0 +19942,52,7,42,0.0 +19942,47,9.5,33,0.0 +19942,68,12.5,14,0.0 +19942,43,46,22,0.0 +19942,72,34.8,29,0.0 +19942,12,38,32,0.0 +19942,1,18,49,0.0 +19943,55,24,43,0.0 +19943,4,22,35,0.0 +19943,46,12,36,0.0 +19943,58,13.25,3,0.0 +19943,56,38,21,0.0 +19943,43,46,14,0.0 +19944,47,9.5,9,0.0 +19944,15,15.5,14,0.0 +19944,9,97,39,0.0 +19944,28,45.6,50,0.0 +19944,1,18,10,0.0 +19944,31,12.5,8,0.0 +19944,59,55,45,0.0 +19944,37,26,32,0.0 +19944,53,32.8,26,0.0 +19944,57,19.5,21,0.0 +19944,44,19.45,50,0.0 +19944,49,20,19,0.0 +19944,40,18.4,13,0.0 +19944,69,36,21,0.0 +19944,23,9,26,0.0 +19944,68,12.5,9,0.0 +19944,64,33.25,40,0.0 +19944,51,53,8,0.0 +19944,19,9.2,10,0.0 +19944,76,18,15,0.0 +19945,56,38,31,0.0 +19945,3,10,4,0.0 +19945,20,81,25,0.0 +19945,18,62.5,22,0.0 +19945,53,32.8,20,0.0 +19945,11,21,24,0.0 +19945,16,17.45,25,0.0 +19945,38,263.5,4,0.0 +19945,59,55,46,0.0 +19946,29,123.79,10,0.0 +19946,54,7.45,36,0.0 +19946,38,263.5,40,0.0 +19946,2,19,16,0.0 +19946,63,43.9,23,0.0 +19946,69,36,5,0.0 +19946,74,10,12,0.0 +19946,73,15,36,0.0 +19946,44,19.45,44,0.0 +19946,19,9.2,45,0.0 +19946,36,19,42,0.0 +19946,77,13,15,0.0 +19946,60,34,9,0.0 +19946,26,31.23,14,0.0 +19946,65,21.05,31,0.0 +19946,8,40,36,0.0 +19946,23,9,12,0.0 +19946,31,12.5,22,0.0 +19946,6,25,37,0.0 +19946,53,32.8,20,0.0 +19946,40,18.4,28,0.0 +19946,20,81,38,0.0 +19947,28,45.6,37,0.0 +19947,21,10,33,0.0 +19947,5,21.35,20,0.0 +19947,10,31,5,0.0 +19947,39,18,37,0.0 +19947,4,22,48,0.0 +19947,40,18.4,14,0.0 +19947,1,18,24,0.0 +19948,49,20,23,0.0 +19948,16,17.45,32,0.0 +19948,23,9,32,0.0 +19948,60,34,39,0.0 +19948,31,12.5,38,0.0 +19948,35,18,36,0.0 +19948,44,19.45,9,0.0 +19948,20,81,25,0.0 +19948,6,25,32,0.0 +19948,1,18,26,0.0 +19948,59,55,4,0.0 +19948,67,14,41,0.0 +19948,68,12.5,32,0.0 +19948,15,15.5,19,0.0 +19948,43,46,7,0.0 +19948,11,21,35,0.0 +19948,71,21.5,22,0.0 +19948,77,13,40,0.0 +19948,52,7,27,0.0 +19948,25,14,27,0.0 +19948,10,31,3,0.0 +19948,64,33.25,36,0.0 +19948,7,30,47,0.0 +19948,8,40,42,0.0 +19948,41,9.65,21,0.0 +19948,12,38,14,0.0 +19948,34,14,3,0.0 +19948,69,36,27,0.0 +19948,3,10,29,0.0 +19948,29,123.79,25,0.0 +19948,66,17,3,0.0 +19948,19,9.2,43,0.0 +19948,26,31.23,25,0.0 +19948,18,62.5,23,0.0 +19948,46,12,10,0.0 +19948,9,97,18,0.0 +19948,39,18,42,0.0 +19948,70,15,33,0.0 +19948,50,16.25,39,0.0 +19948,22,21,16,0.0 +19948,42,14,38,0.0 +19948,57,19.5,8,0.0 +19948,33,2.5,1,0.0 +19948,36,19,39,0.0 +19948,54,7.45,23,0.0 +19948,38,263.5,30,0.0 +19948,56,38,11,0.0 +19948,76,18,3,0.0 +19948,14,23.25,8,0.0 +19948,58,13.25,38,0.0 +19948,40,18.4,44,0.0 +19948,75,7.75,18,0.0 +19948,61,28.5,29,0.0 +19948,27,43.9,17,0.0 +19948,63,43.9,29,0.0 +19948,62,49.3,15,0.0 +19948,47,9.5,2,0.0 +19948,73,15,14,0.0 +19948,4,22,30,0.0 +19948,65,21.05,26,0.0 +19948,30,25.89,15,0.0 +19948,74,10,41,0.0 +19948,21,10,11,0.0 +19948,37,26,6,0.0 +19948,5,21.35,43,0.0 +19948,17,39,43,0.0 +19948,32,32,12,0.0 +19948,55,24,37,0.0 +19948,28,45.6,1,0.0 +19949,68,12.5,46,0.0 +19949,74,10,37,0.0 +19949,42,14,19,0.0 +19949,5,21.35,11,0.0 +19949,27,43.9,30,0.0 +19949,76,18,25,0.0 +19949,19,9.2,9,0.0 +19949,41,9.65,5,0.0 +19949,6,25,27,0.0 +19949,24,4.5,43,0.0 +19949,66,17,14,0.0 +19949,48,12.75,1,0.0 +19949,34,14,9,0.0 +19949,11,21,1,0.0 +19949,33,2.5,39,0.0 +19949,28,45.6,36,0.0 +19949,43,46,11,0.0 +19949,75,7.75,7,0.0 +19949,14,23.25,2,0.0 +19949,1,18,49,0.0 +19949,2,19,12,0.0 +19949,22,21,32,0.0 +19949,45,9.5,19,0.0 +19949,55,24,12,0.0 +19949,26,31.23,5,0.0 +19949,61,28.5,10,0.0 +19949,54,7.45,40,0.0 +19949,12,38,6,0.0 +19949,57,19.5,32,0.0 +19949,51,53,46,0.0 +19949,35,18,28,0.0 +19949,70,15,28,0.0 +19949,44,19.45,37,0.0 +19949,64,33.25,12,0.0 +19949,16,17.45,26,0.0 +19949,58,13.25,7,0.0 +19949,63,43.9,21,0.0 +19949,7,30,25,0.0 +19949,50,16.25,23,0.0 +19949,49,20,36,0.0 +19949,39,18,23,0.0 +19949,62,49.3,35,0.0 +19949,3,10,27,0.0 +19949,21,10,49,0.0 +19949,13,6,9,0.0 +19949,56,38,39,0.0 +19949,37,26,22,0.0 +19949,47,9.5,43,0.0 +19949,46,12,34,0.0 +19949,52,7,34,0.0 +19949,20,81,48,0.0 +19949,4,22,25,0.0 +19949,38,263.5,8,0.0 +19949,36,19,33,0.0 +19949,31,12.5,31,0.0 +19949,30,25.89,49,0.0 +19949,8,40,50,0.0 +19949,72,34.8,27,0.0 +19949,29,123.79,42,0.0 +19949,17,39,6,0.0 +19949,69,36,34,0.0 +19949,9,97,18,0.0 +19950,60,34,40,0.0 +19950,49,20,10,0.0 +19950,34,14,3,0.0 +19950,72,34.8,44,0.0 +19950,71,21.5,45,0.0 +19950,63,43.9,7,0.0 +19950,33,2.5,31,0.0 +19950,54,7.45,2,0.0 +19950,14,23.25,31,0.0 +19950,69,36,46,0.0 +19950,73,15,29,0.0 +19950,68,12.5,24,0.0 +19950,57,19.5,34,0.0 +19951,73,15,24,0.0 +19951,31,12.5,9,0.0 +19951,45,9.5,33,0.0 +19951,26,31.23,41,0.0 +19951,48,12.75,35,0.0 +19951,19,9.2,40,0.0 +19951,59,55,34,0.0 +19951,20,81,23,0.0 +19951,21,10,10,0.0 +19951,47,9.5,28,0.0 +19951,28,45.6,38,0.0 +19951,16,17.45,26,0.0 +19951,22,21,28,0.0 +19951,40,18.4,3,0.0 +19951,25,14,31,0.0 +19951,43,46,40,0.0 +19951,5,21.35,2,0.0 +19951,24,4.5,47,0.0 +19951,33,2.5,38,0.0 +19951,44,19.45,7,0.0 +19951,77,13,48,0.0 +19951,46,12,39,0.0 +19951,18,62.5,15,0.0 +19951,37,26,6,0.0 +19951,1,18,50,0.0 +19951,11,21,11,0.0 +19951,4,22,39,0.0 +19951,17,39,38,0.0 +19951,54,7.45,3,0.0 +19951,3,10,29,0.0 +19951,41,9.65,32,0.0 +19951,14,23.25,33,0.0 +19951,72,34.8,24,0.0 +19951,38,263.5,40,0.0 +19951,27,43.9,1,0.0 +19951,39,18,29,0.0 +19951,68,12.5,4,0.0 +19951,57,19.5,13,0.0 +19951,29,123.79,23,0.0 +19952,77,13,12,0.0 +19952,59,55,38,0.0 +19952,60,34,2,0.0 +19952,61,28.5,44,0.0 +19952,53,32.8,50,0.0 +19952,68,12.5,3,0.0 +19952,35,18,27,0.0 +19952,65,21.05,42,0.0 +19952,6,25,44,0.0 +19952,62,49.3,44,0.0 +19952,9,97,20,0.0 +19952,51,53,28,0.0 +19952,74,10,21,0.0 +19952,46,12,33,0.0 +19952,37,26,24,0.0 +19952,4,22,16,0.0 +19952,48,12.75,3,0.0 +19952,38,263.5,7,0.0 +19952,67,14,25,0.0 +19952,69,36,17,0.0 +19952,54,7.45,9,0.0 +19952,47,9.5,30,0.0 +19952,36,19,45,0.0 +19952,17,39,40,0.0 +19952,7,30,11,0.0 +19952,24,4.5,32,0.0 +19952,14,23.25,42,0.0 +19952,13,6,39,0.0 +19952,28,45.6,2,0.0 +19952,20,81,22,0.0 +19952,15,15.5,20,0.0 +19952,34,14,39,0.0 +19952,26,31.23,31,0.0 +19952,71,21.5,24,0.0 +19952,1,18,43,0.0 +19952,40,18.4,4,0.0 +19952,75,7.75,18,0.0 +19952,63,43.9,10,0.0 +19952,22,21,31,0.0 +19952,3,10,41,0.0 +19952,12,38,23,0.0 +19952,76,18,25,0.0 +19952,57,19.5,48,0.0 +19952,33,2.5,1,0.0 +19952,44,19.45,4,0.0 +19952,10,31,27,0.0 +19952,31,12.5,17,0.0 +19952,39,18,30,0.0 +19952,70,15,42,0.0 +19952,2,19,43,0.0 +19952,43,46,18,0.0 +19952,52,7,13,0.0 +19952,66,17,10,0.0 +19952,8,40,27,0.0 +19952,72,34.8,6,0.0 +19952,16,17.45,34,0.0 +19952,18,62.5,41,0.0 +19952,30,25.89,37,0.0 +19952,11,21,41,0.0 +19952,5,21.35,39,0.0 +19952,45,9.5,37,0.0 +19953,17,39,33,0.0 +19953,66,17,27,0.0 +19953,29,123.79,1,0.0 +19953,9,97,47,0.0 +19953,10,31,7,0.0 +19953,1,18,46,0.0 +19953,68,12.5,47,0.0 +19953,13,6,26,0.0 +19953,34,14,33,0.0 +19953,44,19.45,42,0.0 +19953,70,15,26,0.0 +19953,63,43.9,16,0.0 +19953,60,34,4,0.0 +19953,62,49.3,21,0.0 +19953,61,28.5,1,0.0 +19953,45,9.5,30,0.0 +19953,71,21.5,11,0.0 +19953,31,12.5,46,0.0 +19953,6,25,46,0.0 +19953,67,14,32,0.0 +19953,15,15.5,31,0.0 +19953,37,26,3,0.0 +19953,57,19.5,15,0.0 +19953,75,7.75,5,0.0 +19953,19,9.2,13,0.0 +19953,73,15,13,0.0 +19953,50,16.25,29,0.0 +19953,28,45.6,49,0.0 +19953,16,17.45,6,0.0 +19953,20,81,33,0.0 +19953,54,7.45,42,0.0 +19953,40,18.4,22,0.0 +19953,52,7,40,0.0 +19953,64,33.25,44,0.0 +19953,69,36,37,0.0 +19953,35,18,8,0.0 +19953,72,34.8,7,0.0 +19953,25,14,36,0.0 +19953,12,38,14,0.0 +19953,59,55,14,0.0 +19954,46,12,20,0.0 +19954,24,4.5,15,0.0 +19954,8,40,35,0.0 +19954,62,49.3,38,0.0 +19954,48,12.75,46,0.0 +19954,26,31.23,43,0.0 +19954,32,32,40,0.0 +19954,76,18,39,0.0 +19954,53,32.8,4,0.0 +19954,28,45.6,23,0.0 +19954,63,43.9,9,0.0 +19954,35,18,32,0.0 +19954,31,12.5,14,0.0 +19954,69,36,50,0.0 +19954,58,13.25,19,0.0 +19954,36,19,1,0.0 +19954,61,28.5,2,0.0 +19954,72,34.8,32,0.0 +19954,49,20,49,0.0 +19954,17,39,43,0.0 +19954,43,46,31,0.0 +19954,50,16.25,24,0.0 +19954,51,53,29,0.0 +19954,5,21.35,48,0.0 +19954,56,38,26,0.0 +19954,57,19.5,34,0.0 +19954,20,81,41,0.0 +19954,55,24,20,0.0 +19954,37,26,10,0.0 +19954,9,97,42,0.0 +19954,18,62.5,41,0.0 +19954,60,34,23,0.0 +19954,2,19,32,0.0 +19954,47,9.5,42,0.0 +19954,6,25,45,0.0 +19954,52,7,28,0.0 +19954,12,38,41,0.0 +19954,13,6,42,0.0 +19954,22,21,36,0.0 +19954,27,43.9,42,0.0 +19954,21,10,17,0.0 +19954,71,21.5,10,0.0 +19954,75,7.75,10,0.0 +19954,77,13,25,0.0 +19955,15,15.5,1,0.0 +19955,32,32,46,0.0 +19955,21,10,28,0.0 +19955,59,55,38,0.0 +19955,33,2.5,11,0.0 +19955,66,17,50,0.0 +19955,2,19,34,0.0 +19955,5,21.35,33,0.0 +19955,39,18,13,0.0 +19955,52,7,46,0.0 +19955,67,14,15,0.0 +19955,13,6,37,0.0 +19955,76,18,21,0.0 +19955,24,4.5,49,0.0 +19955,31,12.5,42,0.0 +19955,75,7.75,2,0.0 +19956,74,10,22,0.0 +19956,10,31,15,0.0 +19956,17,39,21,0.0 +19956,69,36,31,0.0 +19956,73,15,10,0.0 +19956,19,9.2,46,0.0 +19956,2,19,30,0.0 +19956,45,9.5,22,0.0 +19956,71,21.5,47,0.0 +19956,32,32,43,0.0 +19956,44,19.45,13,0.0 +19956,14,23.25,27,0.0 +19956,77,13,27,0.0 +19956,28,45.6,9,0.0 +19956,29,123.79,5,0.0 +19956,61,28.5,10,0.0 +19956,34,14,41,0.0 +19956,65,21.05,11,0.0 +19956,48,12.75,39,0.0 +19956,46,12,44,0.0 +19956,50,16.25,31,0.0 +19956,40,18.4,45,0.0 +19956,1,18,9,0.0 +19956,13,6,41,0.0 +19956,30,25.89,23,0.0 +19956,60,34,6,0.0 +19956,20,81,43,0.0 +19956,3,10,32,0.0 +19956,7,30,21,0.0 +19956,31,12.5,47,0.0 +19956,15,15.5,19,0.0 +19956,5,21.35,33,0.0 +19956,39,18,31,0.0 +19956,47,9.5,32,0.0 +19956,67,14,50,0.0 +19956,26,31.23,39,0.0 +19956,21,10,50,0.0 +19956,8,40,35,0.0 +19956,11,21,44,0.0 +19956,42,14,23,0.0 +19956,36,19,6,0.0 +19956,27,43.9,10,0.0 +19956,16,17.45,22,0.0 +19956,9,97,44,0.0 +19956,52,7,41,0.0 +19956,57,19.5,25,0.0 +19956,76,18,27,0.0 +19956,22,21,9,0.0 +19956,37,26,41,0.0 +19957,77,13,33,0.0 +19957,17,39,1,0.0 +19957,76,18,5,0.0 +19957,73,15,26,0.0 +19957,41,9.65,46,0.0 +19957,3,10,13,0.0 +19957,28,45.6,37,0.0 +19957,10,31,1,0.0 +19957,2,19,26,0.0 +19957,44,19.45,36,0.0 +19957,19,9.2,16,0.0 +19957,60,34,31,0.0 +19957,25,14,7,0.0 +19957,75,7.75,19,0.0 +19957,33,2.5,44,0.0 +19957,58,13.25,1,0.0 +19957,62,49.3,5,0.0 +19957,30,25.89,49,0.0 +19957,48,12.75,27,0.0 +19957,11,21,6,0.0 +19957,74,10,40,0.0 +19957,14,23.25,27,0.0 +19957,70,15,26,0.0 +19957,65,21.05,25,0.0 +19957,23,9,49,0.0 +19958,9,97,14,0.0 +19958,24,4.5,39,0.0 +19958,30,25.89,24,0.0 +19958,13,6,8,0.0 +19958,54,7.45,4,0.0 +19958,51,53,19,0.0 +19958,25,14,23,0.0 +19958,53,32.8,34,0.0 +19958,26,31.23,46,0.0 +19958,19,9.2,1,0.0 +19958,47,9.5,5,0.0 +19958,45,9.5,39,0.0 +19958,52,7,50,0.0 +19958,77,13,23,0.0 +19958,11,21,25,0.0 +19958,17,39,8,0.0 +19958,16,17.45,35,0.0 +19958,73,15,46,0.0 +19958,14,23.25,17,0.0 +19959,56,38,7,0.0 +19959,1,18,34,0.0 +19959,18,62.5,13,0.0 +19959,28,45.6,36,0.0 +19959,48,12.75,42,0.0 +19959,75,7.75,33,0.0 +19959,41,9.65,15,0.0 +19959,4,22,27,0.0 +19959,10,31,36,0.0 +19959,42,14,6,0.0 +19959,8,40,43,0.0 +19959,6,25,41,0.0 +19959,22,21,4,0.0 +19959,34,14,18,0.0 +19959,19,9.2,14,0.0 +19959,45,9.5,12,0.0 +19959,27,43.9,34,0.0 +19959,64,33.25,42,0.0 +19959,9,97,2,0.0 +19959,20,81,22,0.0 +19959,57,19.5,9,0.0 +19959,71,21.5,21,0.0 +19959,55,24,31,0.0 +19959,13,6,31,0.0 +19959,29,123.79,6,0.0 +19959,3,10,36,0.0 +19959,60,34,10,0.0 +19959,38,263.5,7,0.0 +19959,53,32.8,5,0.0 +19959,52,7,12,0.0 +19959,36,19,44,0.0 +19959,69,36,5,0.0 +19959,54,7.45,39,0.0 +19959,21,10,9,0.0 +19959,50,16.25,28,0.0 +19959,43,46,3,0.0 +19959,25,14,10,0.0 +19959,61,28.5,3,0.0 +19959,40,18.4,25,0.0 +19959,70,15,10,0.0 +19959,51,53,4,0.0 +19959,63,43.9,30,0.0 +19959,47,9.5,34,0.0 +19960,10,31,21,0.0 +19960,68,12.5,11,0.0 +19960,21,10,16,0.0 +19960,53,32.8,9,0.0 +19960,2,19,34,0.0 +19960,16,17.45,9,0.0 +19960,76,18,36,0.0 +19960,34,14,5,0.0 +19960,69,36,1,0.0 +19961,3,10,42,0.0 +19961,39,18,45,0.0 +19961,6,25,2,0.0 +19961,21,10,24,0.0 +19961,31,12.5,45,0.0 +19961,51,53,9,0.0 +19961,62,49.3,37,0.0 +19961,63,43.9,23,0.0 +19961,50,16.25,43,0.0 +19961,48,12.75,16,0.0 +19961,11,21,34,0.0 +19961,32,32,5,0.0 +19961,22,21,27,0.0 +19961,43,46,21,0.0 +19961,61,28.5,41,0.0 +19961,71,21.5,30,0.0 +19961,52,7,18,0.0 +19961,40,18.4,31,0.0 +19961,54,7.45,28,0.0 +19961,72,34.8,15,0.0 +19961,74,10,31,0.0 +19961,41,9.65,15,0.0 +19961,56,38,10,0.0 +19961,30,25.89,11,0.0 +19961,27,43.9,33,0.0 +19961,20,81,41,0.0 +19961,4,22,27,0.0 +19961,60,34,3,0.0 +19961,33,2.5,43,0.0 +19961,24,4.5,29,0.0 +19961,35,18,45,0.0 +19962,23,9,42,0.0 +19962,13,6,12,0.0 +19962,3,10,47,0.0 +19962,16,17.45,25,0.0 +19962,10,31,39,0.0 +19962,61,28.5,31,0.0 +19963,3,10,2,0.0 +19963,32,32,46,0.0 +19963,59,55,24,0.0 +19963,67,14,31,0.0 +19963,16,17.45,39,0.0 +19963,48,12.75,10,0.0 +19963,62,49.3,49,0.0 +19963,60,34,33,0.0 +19963,49,20,4,0.0 +19963,26,31.23,6,0.0 +19963,58,13.25,14,0.0 +19963,54,7.45,20,0.0 +19963,42,14,15,0.0 +19963,45,9.5,18,0.0 +19963,47,9.5,13,0.0 +19963,14,23.25,8,0.0 +19963,21,10,46,0.0 +19963,43,46,13,0.0 +19963,4,22,36,0.0 +19963,38,263.5,15,0.0 +19963,65,21.05,38,0.0 +19963,71,21.5,42,0.0 +19963,6,25,36,0.0 +19963,29,123.79,47,0.0 +19963,20,81,21,0.0 +19963,10,31,23,0.0 +19963,33,2.5,34,0.0 +19963,34,14,42,0.0 +19963,57,19.5,1,0.0 +19963,50,16.25,45,0.0 +19963,13,6,35,0.0 +19963,41,9.65,46,0.0 +19963,53,32.8,23,0.0 +19963,27,43.9,47,0.0 +19963,52,7,25,0.0 +19963,1,18,36,0.0 +19963,11,21,7,0.0 +19963,7,30,33,0.0 +19963,73,15,9,0.0 +19963,72,34.8,19,0.0 +19963,30,25.89,49,0.0 +19963,66,17,20,0.0 +19963,15,15.5,13,0.0 +19963,22,21,7,0.0 +19963,28,45.6,17,0.0 +19963,37,26,30,0.0 +19963,68,12.5,10,0.0 +19963,44,19.45,44,0.0 +19963,18,62.5,29,0.0 +19963,2,19,15,0.0 +19963,70,15,30,0.0 +19963,51,53,41,0.0 +19963,39,18,32,0.0 +19963,9,97,11,0.0 +19963,23,9,1,0.0 +19963,63,43.9,12,0.0 +19963,40,18.4,13,0.0 +19963,8,40,45,0.0 +19964,14,23.25,12,0.0 +19964,68,12.5,19,0.0 +19964,27,43.9,47,0.0 +19964,77,13,8,0.0 +19964,72,34.8,11,0.0 +19964,16,17.45,25,0.0 +19964,29,123.79,5,0.0 +19964,30,25.89,7,0.0 +19964,40,18.4,33,0.0 +19964,36,19,17,0.0 +19964,43,46,46,0.0 +19964,4,22,39,0.0 +19964,20,81,20,0.0 +19964,33,2.5,19,0.0 +19964,5,21.35,3,0.0 +19964,66,17,38,0.0 +19964,49,20,3,0.0 +19964,53,32.8,43,0.0 +19964,3,10,36,0.0 +19964,41,9.65,16,0.0 +19964,37,26,46,0.0 +19964,31,12.5,37,0.0 +19964,51,53,25,0.0 +19964,71,21.5,24,0.0 +19964,7,30,28,0.0 +19964,2,19,31,0.0 +19964,35,18,26,0.0 +19964,76,18,6,0.0 +19964,58,13.25,13,0.0 +19965,22,21,3,0.0 +19965,7,30,35,0.0 +19965,12,38,46,0.0 +19965,71,21.5,28,0.0 +19965,3,10,49,0.0 +19965,25,14,43,0.0 +19965,45,9.5,44,0.0 +19965,37,26,26,0.0 +19965,73,15,39,0.0 +19965,58,13.25,28,0.0 +19965,26,31.23,17,0.0 +19965,8,40,8,0.0 +19965,24,4.5,12,0.0 +19965,76,18,2,0.0 +19965,5,21.35,42,0.0 +19965,36,19,31,0.0 +19965,6,25,27,0.0 +19965,30,25.89,17,0.0 +19965,10,31,47,0.0 +19965,69,36,8,0.0 +19965,27,43.9,34,0.0 +19965,11,21,7,0.0 +19965,59,55,18,0.0 +19965,46,12,34,0.0 +19965,57,19.5,49,0.0 +19965,41,9.65,28,0.0 +19965,60,34,29,0.0 +19965,63,43.9,15,0.0 +19965,20,81,9,0.0 +19965,40,18.4,6,0.0 +19965,64,33.25,6,0.0 +19965,68,12.5,36,0.0 +19965,74,10,20,0.0 +19965,72,34.8,7,0.0 +19965,9,97,20,0.0 +19965,1,18,9,0.0 +19965,52,7,2,0.0 +19965,62,49.3,6,0.0 +19965,43,46,33,0.0 +19965,66,17,50,0.0 +19965,61,28.5,7,0.0 +19965,13,6,18,0.0 +19965,53,32.8,19,0.0 +19965,39,18,9,0.0 +19965,32,32,16,0.0 +19965,15,15.5,43,0.0 +19965,35,18,30,0.0 +19965,16,17.45,50,0.0 +19965,33,2.5,28,0.0 +19965,21,10,16,0.0 +19965,55,24,17,0.0 +19965,56,38,41,0.0 +19966,69,36,29,0.0 +19966,9,97,20,0.0 +19966,74,10,33,0.0 +19966,27,43.9,5,0.0 +19966,44,19.45,29,0.0 +19966,73,15,5,0.0 +19966,32,32,23,0.0 +19966,10,31,37,0.0 +19966,6,25,30,0.0 +19966,46,12,31,0.0 +19966,55,24,40,0.0 +19966,40,18.4,36,0.0 +19966,51,53,30,0.0 +19966,71,21.5,21,0.0 +19966,14,23.25,33,0.0 +19966,8,40,45,0.0 +19966,59,55,20,0.0 +19966,48,12.75,36,0.0 +19966,15,15.5,44,0.0 +19966,18,62.5,2,0.0 +19966,12,38,42,0.0 +19966,50,16.25,5,0.0 +19966,45,9.5,2,0.0 +19966,36,19,9,0.0 +19966,42,14,6,0.0 +19966,3,10,24,0.0 +19966,63,43.9,32,0.0 +19966,62,49.3,12,0.0 +19966,39,18,24,0.0 +19966,20,81,13,0.0 +19966,35,18,29,0.0 +19966,31,12.5,29,0.0 +19966,38,263.5,20,0.0 +19966,17,39,26,0.0 +19966,16,17.45,41,0.0 +19966,53,32.8,28,0.0 +19966,66,17,43,0.0 +19966,41,9.65,10,0.0 +19966,67,14,11,0.0 +19966,56,38,42,0.0 +19966,21,10,31,0.0 +19966,1,18,33,0.0 +19966,75,7.75,39,0.0 +19966,34,14,17,0.0 +19966,7,30,32,0.0 +19966,37,26,13,0.0 +19966,43,46,30,0.0 +19966,24,4.5,33,0.0 +19966,49,20,7,0.0 +19966,23,9,36,0.0 +19966,70,15,11,0.0 +19966,28,45.6,9,0.0 +19966,57,19.5,11,0.0 +19966,26,31.23,7,0.0 +19966,65,21.05,31,0.0 +19966,11,21,46,0.0 +19966,5,21.35,34,0.0 +19966,22,21,23,0.0 +19966,47,9.5,11,0.0 +19966,29,123.79,50,0.0 +19966,76,18,47,0.0 +19966,33,2.5,6,0.0 +19966,25,14,46,0.0 +19966,64,33.25,14,0.0 +19966,30,25.89,46,0.0 +19966,60,34,22,0.0 +19966,58,13.25,31,0.0 +19967,67,14,5,0.0 +19967,56,38,30,0.0 +19967,21,10,20,0.0 +19967,68,12.5,11,0.0 +19967,17,39,36,0.0 +19967,31,12.5,1,0.0 +19967,40,18.4,43,0.0 +19967,38,263.5,50,0.0 +19967,5,21.35,9,0.0 +19967,19,9.2,20,0.0 +19967,62,49.3,14,0.0 +19967,51,53,24,0.0 +19967,16,17.45,47,0.0 +19967,75,7.75,7,0.0 +19967,64,33.25,19,0.0 +19967,55,24,14,0.0 +19967,45,9.5,2,0.0 +19967,8,40,35,0.0 +19967,9,97,4,0.0 +19967,20,81,45,0.0 +19967,23,9,9,0.0 +19967,26,31.23,37,0.0 +19967,7,30,39,0.0 +19967,43,46,47,0.0 +19967,44,19.45,37,0.0 +19967,50,16.25,34,0.0 +19967,25,14,47,0.0 +19967,34,14,15,0.0 +19967,46,12,36,0.0 +19967,33,2.5,42,0.0 +19967,61,28.5,23,0.0 +19967,70,15,14,0.0 +19967,69,36,1,0.0 +19967,3,10,45,0.0 +19967,42,14,4,0.0 +19967,74,10,33,0.0 +19967,57,19.5,3,0.0 +19967,14,23.25,9,0.0 +19967,15,15.5,38,0.0 +19967,58,13.25,21,0.0 +19967,48,12.75,27,0.0 +19967,32,32,45,0.0 +19967,4,22,39,0.0 +19967,30,25.89,14,0.0 +19967,66,17,21,0.0 +19967,22,21,33,0.0 +19967,37,26,25,0.0 +19967,71,21.5,14,0.0 +19967,6,25,16,0.0 +19967,10,31,38,0.0 +19967,18,62.5,11,0.0 +19967,39,18,42,0.0 +19967,76,18,31,0.0 +19967,41,9.65,7,0.0 +19967,35,18,30,0.0 +19967,27,43.9,40,0.0 +19967,73,15,21,0.0 +19967,72,34.8,50,0.0 +19967,53,32.8,48,0.0 +19967,49,20,22,0.0 +19967,2,19,17,0.0 +19967,59,55,21,0.0 +19968,47,9.5,5,0.0 +19968,23,9,33,0.0 +19968,37,26,31,0.0 +19968,51,53,27,0.0 +19968,48,12.75,47,0.0 +19968,11,21,29,0.0 +19968,21,10,39,0.0 +19968,59,55,27,0.0 +19968,20,81,35,0.0 +19968,49,20,2,0.0 +19968,29,123.79,42,0.0 +19968,12,38,44,0.0 +19968,61,28.5,30,0.0 +19968,41,9.65,14,0.0 +19968,25,14,14,0.0 +19968,3,10,23,0.0 +19968,34,14,27,0.0 +19968,73,15,35,0.0 +19968,36,19,42,0.0 +19968,7,30,48,0.0 +19968,52,7,24,0.0 +19968,40,18.4,35,0.0 +19968,70,15,3,0.0 +19968,17,39,30,0.0 +19968,33,2.5,9,0.0 +19968,18,62.5,50,0.0 +19968,27,43.9,20,0.0 +19968,50,16.25,21,0.0 +19968,14,23.25,44,0.0 +19968,35,18,5,0.0 +19968,67,14,41,0.0 +19968,60,34,33,0.0 +19968,6,25,22,0.0 +19968,8,40,23,0.0 +19968,28,45.6,43,0.0 +19968,68,12.5,46,0.0 +19968,58,13.25,25,0.0 +19968,76,18,1,0.0 +19968,26,31.23,6,0.0 +19968,9,97,17,0.0 +19968,46,12,35,0.0 +19968,71,21.5,41,0.0 +19968,32,32,31,0.0 +19968,57,19.5,21,0.0 +19968,5,21.35,30,0.0 +19968,44,19.45,5,0.0 +19968,75,7.75,43,0.0 +19968,39,18,30,0.0 +19968,77,13,19,0.0 +19968,10,31,3,0.0 +19968,54,7.45,45,0.0 +19969,68,12.5,45,0.0 +19969,57,19.5,25,0.0 +19969,18,62.5,39,0.0 +19969,36,19,47,0.0 +19969,34,14,12,0.0 +19969,3,10,39,0.0 +19969,44,19.45,42,0.0 +19969,61,28.5,15,0.0 +19969,49,20,4,0.0 +19969,58,13.25,44,0.0 +19969,59,55,23,0.0 +19969,12,38,37,0.0 +19969,23,9,21,0.0 +19969,66,17,20,0.0 +19969,30,25.89,4,0.0 +19969,39,18,38,0.0 +19969,76,18,24,0.0 +19969,52,7,30,0.0 +19969,71,21.5,20,0.0 +19969,38,263.5,23,0.0 +19970,68,12.5,15,0.0 +19970,17,39,2,0.0 +19970,46,12,14,0.0 +19970,34,14,24,0.0 +19970,25,14,26,0.0 +19970,37,26,16,0.0 +19970,29,123.79,49,0.0 +19970,48,12.75,15,0.0 +19970,26,31.23,15,0.0 +19970,64,33.25,13,0.0 +19970,1,18,1,0.0 +19970,44,19.45,44,0.0 +19970,13,6,44,0.0 +19970,40,18.4,19,0.0 +19970,52,7,21,0.0 +19970,31,12.5,21,0.0 +19970,39,18,6,0.0 +19970,35,18,37,0.0 +19970,56,38,46,0.0 +19970,58,13.25,29,0.0 +19970,41,9.65,4,0.0 +19970,18,62.5,19,0.0 +19970,38,263.5,23,0.0 +19970,69,36,11,0.0 +19970,49,20,15,0.0 +19970,73,15,14,0.0 +19970,77,13,10,0.0 +19970,28,45.6,36,0.0 +19970,43,46,24,0.0 +19970,30,25.89,38,0.0 +19970,51,53,33,0.0 +19970,23,9,24,0.0 +19970,12,38,25,0.0 +19970,47,9.5,17,0.0 +19970,74,10,8,0.0 +19970,8,40,28,0.0 +19970,7,30,24,0.0 +19970,67,14,26,0.0 +19970,20,81,19,0.0 +19970,60,34,9,0.0 +19970,33,2.5,45,0.0 +19970,15,15.5,13,0.0 +19970,70,15,24,0.0 +19970,63,43.9,50,0.0 +19970,65,21.05,41,0.0 +19970,16,17.45,40,0.0 +19970,19,9.2,14,0.0 +19970,62,49.3,33,0.0 +19970,2,19,1,0.0 +19970,76,18,18,0.0 +19970,14,23.25,4,0.0 +19970,6,25,22,0.0 +19970,24,4.5,31,0.0 +19970,66,17,10,0.0 +19970,53,32.8,13,0.0 +19970,32,32,17,0.0 +19970,11,21,49,0.0 +19970,45,9.5,47,0.0 +19970,57,19.5,35,0.0 +19970,61,28.5,41,0.0 +19970,72,34.8,25,0.0 +19970,10,31,4,0.0 +19970,27,43.9,36,0.0 +19970,36,19,17,0.0 +19970,21,10,48,0.0 +19970,42,14,29,0.0 +19970,4,22,6,0.0 +19970,75,7.75,18,0.0 +19970,54,7.45,21,0.0 +19970,59,55,45,0.0 +19970,50,16.25,37,0.0 +19970,5,21.35,44,0.0 +19970,71,21.5,16,0.0 +19970,55,24,12,0.0 +19970,22,21,18,0.0 +19970,9,97,14,0.0 +19971,7,30,4,0.0 +19971,21,10,15,0.0 +19971,66,17,25,0.0 +19971,68,12.5,50,0.0 +19971,39,18,23,0.0 +19971,20,81,17,0.0 +19971,37,26,13,0.0 +19971,48,12.75,16,0.0 +19971,5,21.35,29,0.0 +19971,53,32.8,47,0.0 +19971,69,36,1,0.0 +19971,18,62.5,17,0.0 +19971,8,40,47,0.0 +19971,58,13.25,21,0.0 +19971,52,7,7,0.0 +19971,64,33.25,8,0.0 +19971,3,10,5,0.0 +19971,55,24,15,0.0 +19971,24,4.5,11,0.0 +19971,49,20,21,0.0 +19971,56,38,35,0.0 +19971,42,14,41,0.0 +19971,10,31,50,0.0 +19971,73,15,38,0.0 +19971,50,16.25,5,0.0 +19971,35,18,29,0.0 +19971,16,17.45,18,0.0 +19971,23,9,44,0.0 +19972,66,17,39,0.0 +19972,13,6,22,0.0 +19972,19,9.2,40,0.0 +19972,22,21,19,0.0 +19972,73,15,38,0.0 +19972,8,40,22,0.0 +19972,53,32.8,31,0.0 +19972,40,18.4,17,0.0 +19972,60,34,33,0.0 +19972,9,97,9,0.0 +19972,51,53,25,0.0 +19972,63,43.9,1,0.0 +19972,30,25.89,30,0.0 +19972,14,23.25,17,0.0 +19972,44,19.45,48,0.0 +19972,42,14,32,0.0 +19972,68,12.5,1,0.0 +19972,16,17.45,47,0.0 +19972,15,15.5,32,0.0 +19972,5,21.35,21,0.0 +19972,48,12.75,33,0.0 +19972,25,14,14,0.0 +19972,56,38,34,0.0 +19972,3,10,22,0.0 +19972,41,9.65,24,0.0 +19972,11,21,44,0.0 +19972,65,21.05,1,0.0 +19972,62,49.3,22,0.0 +19972,31,12.5,27,0.0 +19973,50,16.25,32,0.0 +19973,38,263.5,31,0.0 +19973,60,34,21,0.0 +19973,7,30,18,0.0 +19973,8,40,26,0.0 +19973,34,14,33,0.0 +19973,18,62.5,25,0.0 +19973,40,18.4,7,0.0 +19973,75,7.75,35,0.0 +19973,63,43.9,27,0.0 +19973,73,15,36,0.0 +19973,47,9.5,19,0.0 +19973,3,10,18,0.0 +19973,61,28.5,43,0.0 +19973,77,13,21,0.0 +19973,65,21.05,25,0.0 +19973,11,21,6,0.0 +19973,32,32,8,0.0 +19973,13,6,5,0.0 +19973,49,20,22,0.0 +19973,23,9,2,0.0 +19973,25,14,4,0.0 +19973,26,31.23,8,0.0 +19973,28,45.6,15,0.0 +19973,1,18,19,0.0 +19973,22,21,28,0.0 +19973,57,19.5,14,0.0 +19973,36,19,48,0.0 +19973,43,46,30,0.0 +19973,76,18,26,0.0 +19973,56,38,20,0.0 +19973,68,12.5,19,0.0 +19973,10,31,7,0.0 +19973,58,13.25,47,0.0 +19973,74,10,12,0.0 +19973,69,36,21,0.0 +19973,62,49.3,5,0.0 +19973,37,26,34,0.0 +19973,48,12.75,32,0.0 +19973,27,43.9,37,0.0 +19973,30,25.89,36,0.0 +19973,59,55,44,0.0 +19973,21,10,40,0.0 +19973,64,33.25,32,0.0 +19973,55,24,7,0.0 +19973,67,14,17,0.0 +19973,41,9.65,24,0.0 +19973,70,15,30,0.0 +19973,39,18,50,0.0 +19973,33,2.5,11,0.0 +19973,35,18,47,0.0 +19973,12,38,36,0.0 +19973,31,12.5,44,0.0 +19973,29,123.79,35,0.0 +19973,71,21.5,35,0.0 +19973,24,4.5,24,0.0 +19974,3,10,39,0.0 +19974,60,34,1,0.0 +19974,63,43.9,32,0.0 +19974,47,9.5,43,0.0 +19974,25,14,6,0.0 +19974,67,14,40,0.0 +19974,14,23.25,34,0.0 +19974,65,21.05,34,0.0 +19974,69,36,41,0.0 +19974,20,81,36,0.0 +19974,13,6,6,0.0 +19974,27,43.9,14,0.0 +19974,37,26,46,0.0 +19974,18,62.5,12,0.0 +19974,70,15,29,0.0 +19974,1,18,36,0.0 +19974,45,9.5,23,0.0 +19974,74,10,36,0.0 +19974,32,32,17,0.0 +19974,48,12.75,12,0.0 +19974,33,2.5,17,0.0 +19974,56,38,2,0.0 +19974,8,40,39,0.0 +19974,26,31.23,24,0.0 +19974,76,18,7,0.0 +19974,34,14,11,0.0 +19974,5,21.35,45,0.0 +19974,44,19.45,19,0.0 +19974,17,39,12,0.0 +19974,35,18,10,0.0 +19974,24,4.5,8,0.0 +19974,22,21,11,0.0 +19974,10,31,15,0.0 +19974,55,24,30,0.0 +19974,12,38,27,0.0 +19974,50,16.25,50,0.0 +19974,54,7.45,29,0.0 +19974,6,25,35,0.0 +19974,51,53,48,0.0 +19974,77,13,14,0.0 +19974,30,25.89,44,0.0 +19974,42,14,34,0.0 +19974,58,13.25,39,0.0 +19974,66,17,12,0.0 +19974,57,19.5,40,0.0 +19974,23,9,49,0.0 +19974,16,17.45,14,0.0 +19974,75,7.75,34,0.0 +19974,7,30,12,0.0 +19974,29,123.79,11,0.0 +19974,43,46,18,0.0 +19974,11,21,24,0.0 +19974,38,263.5,10,0.0 +19974,41,9.65,8,0.0 +19974,46,12,6,0.0 +19974,64,33.25,11,0.0 +19974,28,45.6,37,0.0 +19974,52,7,34,0.0 +19974,19,9.2,18,0.0 +19974,61,28.5,18,0.0 +19974,15,15.5,19,0.0 +19974,62,49.3,17,0.0 +19974,53,32.8,24,0.0 +19974,59,55,48,0.0 +19974,71,21.5,13,0.0 +19975,55,24,21,0.0 +19975,41,9.65,22,0.0 +19975,74,10,3,0.0 +19975,58,13.25,3,0.0 +19975,13,6,11,0.0 +19975,9,97,25,0.0 +19975,23,9,11,0.0 +19975,17,39,20,0.0 +19975,29,123.79,44,0.0 +19975,76,18,20,0.0 +19975,19,9.2,5,0.0 +19975,59,55,2,0.0 +19975,52,7,16,0.0 +19975,63,43.9,43,0.0 +19975,26,31.23,49,0.0 +19975,35,18,25,0.0 +19975,33,2.5,34,0.0 +19975,36,19,33,0.0 +19975,75,7.75,7,0.0 +19975,37,26,17,0.0 +19975,40,18.4,20,0.0 +19975,22,21,19,0.0 +19975,6,25,10,0.0 +19975,50,16.25,45,0.0 +19976,10,31,8,0.0 +19976,30,25.89,39,0.0 +19976,70,15,25,0.0 +19976,71,21.5,45,0.0 +19976,65,21.05,32,0.0 +19976,12,38,38,0.0 +19976,38,263.5,48,0.0 +19976,15,15.5,39,0.0 +19976,33,2.5,49,0.0 +19976,9,97,2,0.0 +19976,45,9.5,48,0.0 +19976,60,34,31,0.0 +19976,51,53,19,0.0 +19976,39,18,49,0.0 +19976,31,12.5,50,0.0 +19976,73,15,18,0.0 +19976,28,45.6,32,0.0 +19977,43,46,33,0.0 +19977,28,45.6,8,0.0 +19977,31,12.5,8,0.0 +19977,9,97,14,0.0 +19977,19,9.2,50,0.0 +19977,52,7,41,0.0 +19977,50,16.25,20,0.0 +19977,18,62.5,49,0.0 +19977,1,18,39,0.0 +19977,22,21,12,0.0 +19977,48,12.75,7,0.0 +19977,4,22,24,0.0 +19977,57,19.5,50,0.0 +19977,23,9,48,0.0 +19977,20,81,2,0.0 +19977,7,30,1,0.0 +19977,41,9.65,30,0.0 +19977,12,38,39,0.0 +19977,65,21.05,30,0.0 +19977,54,7.45,34,0.0 +19977,75,7.75,20,0.0 +19977,46,12,25,0.0 +19977,40,18.4,22,0.0 +19977,71,21.5,50,0.0 +19977,39,18,30,0.0 +19977,29,123.79,3,0.0 +19977,51,53,30,0.0 +19977,60,34,8,0.0 +19977,13,6,39,0.0 +19977,44,19.45,21,0.0 +19977,36,19,32,0.0 +19977,33,2.5,49,0.0 +19977,17,39,2,0.0 +19977,3,10,44,0.0 +19977,32,32,3,0.0 +19977,10,31,25,0.0 +19977,35,18,48,0.0 +19977,38,263.5,6,0.0 +19977,14,23.25,18,0.0 +19977,73,15,4,0.0 +19978,12,38,32,0.0 +19978,43,46,9,0.0 +19978,74,10,46,0.0 +19978,73,15,49,0.0 +19978,6,25,32,0.0 +19978,65,21.05,34,0.0 +19978,76,18,26,0.0 +19978,3,10,38,0.0 +19978,29,123.79,1,0.0 +19978,60,34,9,0.0 +19978,71,21.5,38,0.0 +19978,53,32.8,35,0.0 +19978,66,17,29,0.0 +19978,17,39,21,0.0 +19978,57,19.5,37,0.0 +19978,11,21,19,0.0 +19978,45,9.5,32,0.0 +19978,41,9.65,45,0.0 +19978,21,10,43,0.0 +19978,77,13,44,0.0 +19978,36,19,8,0.0 +19978,69,36,41,0.0 +19978,59,55,7,0.0 +19978,7,30,16,0.0 +19978,63,43.9,21,0.0 +19978,52,7,6,0.0 +19978,26,31.23,10,0.0 +19978,22,21,38,0.0 +19978,75,7.75,10,0.0 +19978,32,32,13,0.0 +19978,25,14,42,0.0 +19978,40,18.4,1,0.0 +19978,27,43.9,33,0.0 +19978,62,49.3,9,0.0 +19978,70,15,12,0.0 +19978,38,263.5,26,0.0 +19978,16,17.45,48,0.0 +19978,10,31,36,0.0 +19978,13,6,3,0.0 +19978,14,23.25,44,0.0 +19978,30,25.89,29,0.0 +19978,44,19.45,5,0.0 +19978,33,2.5,25,0.0 +19978,68,12.5,40,0.0 +19978,56,38,39,0.0 +19978,18,62.5,37,0.0 +19978,20,81,13,0.0 +19978,39,18,17,0.0 +19978,61,28.5,1,0.0 +19978,19,9.2,45,0.0 +19978,23,9,16,0.0 +19978,31,12.5,48,0.0 +19978,4,22,46,0.0 +19978,2,19,32,0.0 +19978,50,16.25,42,0.0 +19978,55,24,9,0.0 +19978,42,14,38,0.0 +19978,15,15.5,7,0.0 +19978,8,40,50,0.0 +19978,51,53,14,0.0 +19978,72,34.8,9,0.0 +19978,47,9.5,16,0.0 +19978,24,4.5,40,0.0 +19978,54,7.45,6,0.0 +19978,1,18,8,0.0 +19978,64,33.25,1,0.0 +19978,34,14,40,0.0 +19978,35,18,25,0.0 +19978,48,12.75,26,0.0 +19978,28,45.6,19,0.0 +19978,67,14,36,0.0 +19978,58,13.25,50,0.0 +19978,5,21.35,1,0.0 +19978,37,26,32,0.0 +19979,4,22,40,0.0 +19979,24,4.5,45,0.0 +19979,68,12.5,2,0.0 +19979,9,97,38,0.0 +19979,59,55,41,0.0 +19979,38,263.5,10,0.0 +19979,12,38,32,0.0 +19979,10,31,43,0.0 +19979,8,40,41,0.0 +19979,16,17.45,34,0.0 +19979,40,18.4,1,0.0 +19979,2,19,3,0.0 +19979,45,9.5,3,0.0 +19979,39,18,2,0.0 +19979,42,14,8,0.0 +19979,47,9.5,17,0.0 +19979,77,13,15,0.0 +19979,19,9.2,37,0.0 +19979,27,43.9,48,0.0 +19979,35,18,23,0.0 +19979,61,28.5,2,0.0 +19979,44,19.45,24,0.0 +19979,17,39,46,0.0 +19979,21,10,50,0.0 +19979,7,30,40,0.0 +19979,28,45.6,46,0.0 +19979,58,13.25,2,0.0 +19979,73,15,47,0.0 +19979,33,2.5,4,0.0 +19979,43,46,14,0.0 +19979,54,7.45,21,0.0 +19979,36,19,33,0.0 +19979,23,9,6,0.0 +19979,74,10,13,0.0 +19979,15,15.5,34,0.0 +19979,71,21.5,48,0.0 +19979,18,62.5,16,0.0 +19979,75,7.75,39,0.0 +19979,3,10,40,0.0 +19979,63,43.9,21,0.0 +19979,46,12,1,0.0 +19979,49,20,37,0.0 +19979,32,32,16,0.0 +19980,5,21.35,18,0.0 +19980,9,97,20,0.0 +19980,31,12.5,44,0.0 +19980,8,40,36,0.0 +19980,23,9,40,0.0 +19980,26,31.23,50,0.0 +19980,54,7.45,25,0.0 +19980,70,15,4,0.0 +19980,40,18.4,21,0.0 +19980,3,10,48,0.0 +19980,13,6,3,0.0 +19980,39,18,7,0.0 +19980,18,62.5,49,0.0 +19980,32,32,16,0.0 +19980,75,7.75,36,0.0 +19980,69,36,37,0.0 +19980,6,25,27,0.0 +19980,36,19,34,0.0 +19980,25,14,34,0.0 +19980,77,13,47,0.0 +19980,2,19,35,0.0 +19980,20,81,11,0.0 +19980,65,21.05,41,0.0 +19980,15,15.5,17,0.0 +19980,67,14,46,0.0 +19980,28,45.6,28,0.0 +19980,27,43.9,11,0.0 +19980,49,20,11,0.0 +19980,42,14,49,0.0 +19980,41,9.65,20,0.0 +19980,52,7,38,0.0 +19980,46,12,6,0.0 +19980,10,31,46,0.0 +19980,71,21.5,29,0.0 +19980,37,26,8,0.0 +19980,19,9.2,13,0.0 +19980,76,18,20,0.0 +19980,45,9.5,4,0.0 +19980,59,55,37,0.0 +19980,60,34,19,0.0 +19980,34,14,17,0.0 +19980,74,10,6,0.0 +19980,38,263.5,7,0.0 +19980,21,10,48,0.0 +19980,57,19.5,32,0.0 +19980,72,34.8,2,0.0 +19980,64,33.25,50,0.0 +19980,16,17.45,40,0.0 +19981,77,13,27,0.0 +19981,32,32,31,0.0 +19981,6,25,16,0.0 +19981,30,25.89,42,0.0 +19981,36,19,32,0.0 +19981,35,18,24,0.0 +19981,67,14,9,0.0 +19981,52,7,10,0.0 +19981,47,9.5,24,0.0 +19981,39,18,15,0.0 +19981,70,15,38,0.0 +19981,54,7.45,41,0.0 +19981,68,12.5,12,0.0 +19981,10,31,12,0.0 +19981,50,16.25,25,0.0 +19981,16,17.45,16,0.0 +19981,33,2.5,29,0.0 +19981,62,49.3,49,0.0 +19981,51,53,19,0.0 +19981,5,21.35,7,0.0 +19981,26,31.23,15,0.0 +19981,76,18,41,0.0 +19981,19,9.2,19,0.0 +19981,58,13.25,37,0.0 +19981,14,23.25,19,0.0 +19981,11,21,17,0.0 +19981,44,19.45,50,0.0 +19981,74,10,22,0.0 +19981,60,34,22,0.0 +19981,1,18,30,0.0 +19981,63,43.9,40,0.0 +19981,27,43.9,30,0.0 +19981,37,26,16,0.0 +19981,17,39,50,0.0 +19981,31,12.5,47,0.0 +19981,56,38,37,0.0 +19981,48,12.75,25,0.0 +19981,38,263.5,47,0.0 +19981,72,34.8,43,0.0 +19981,59,55,14,0.0 +19981,13,6,23,0.0 +19981,34,14,38,0.0 +19981,29,123.79,25,0.0 +19981,12,38,34,0.0 +19981,69,36,40,0.0 +19981,49,20,24,0.0 +19981,61,28.5,42,0.0 +19981,71,21.5,31,0.0 +19981,25,14,9,0.0 +19981,23,9,23,0.0 +19981,18,62.5,50,0.0 +19981,73,15,6,0.0 +19981,28,45.6,7,0.0 +19981,2,19,23,0.0 +19981,55,24,50,0.0 +19981,15,15.5,29,0.0 +19981,24,4.5,41,0.0 +19981,64,33.25,21,0.0 +19981,75,7.75,43,0.0 +19981,41,9.65,47,0.0 +19981,66,17,4,0.0 +19981,22,21,8,0.0 +19981,9,97,27,0.0 +19981,8,40,9,0.0 +19981,21,10,12,0.0 +19982,15,15.5,20,0.0 +19982,49,20,10,0.0 +19982,11,21,31,0.0 +19982,4,22,8,0.0 +19982,8,40,5,0.0 +19982,43,46,18,0.0 +19982,71,21.5,18,0.0 +19982,33,2.5,21,0.0 +19982,34,14,2,0.0 +19982,5,21.35,48,0.0 +19982,35,18,43,0.0 +19982,51,53,30,0.0 +19982,25,14,31,0.0 +19982,72,34.8,19,0.0 +19982,31,12.5,15,0.0 +19982,12,38,21,0.0 +19982,9,97,43,0.0 +19982,40,18.4,14,0.0 +19982,23,9,32,0.0 +19982,16,17.45,28,0.0 +19982,48,12.75,4,0.0 +19982,3,10,23,0.0 +19982,20,81,27,0.0 +19983,48,12.75,26,0.0 +19983,64,33.25,43,0.0 +19983,65,21.05,18,0.0 +19983,57,19.5,26,0.0 +19983,60,34,47,0.0 +19983,1,18,21,0.0 +19983,5,21.35,22,0.0 +19983,39,18,35,0.0 +19983,51,53,46,0.0 +19983,10,31,15,0.0 +19983,75,7.75,48,0.0 +19983,62,49.3,12,0.0 +19983,74,10,45,0.0 +19983,13,6,11,0.0 +19983,37,26,36,0.0 +19983,67,14,7,0.0 +19983,63,43.9,1,0.0 +19983,24,4.5,16,0.0 +19983,32,32,42,0.0 +19983,41,9.65,37,0.0 +19983,23,9,48,0.0 +19983,16,17.45,4,0.0 +19983,11,21,45,0.0 +19983,38,263.5,42,0.0 +19983,9,97,31,0.0 +19983,8,40,33,0.0 +19983,44,19.45,12,0.0 +19984,3,10,31,0.0 +19984,45,9.5,7,0.0 +19984,55,24,12,0.0 +19984,21,10,25,0.0 +19984,47,9.5,39,0.0 +19984,76,18,11,0.0 +19984,69,36,13,0.0 +19984,9,97,40,0.0 +19984,39,18,12,0.0 +19984,57,19.5,48,0.0 +19984,34,14,23,0.0 +19984,59,55,39,0.0 +19984,46,12,19,0.0 +19984,16,17.45,46,0.0 +19984,29,123.79,17,0.0 +19984,62,49.3,32,0.0 +19984,75,7.75,19,0.0 +19984,23,9,14,0.0 +19984,26,31.23,23,0.0 +19984,49,20,25,0.0 +19984,19,9.2,45,0.0 +19984,72,34.8,45,0.0 +19984,63,43.9,29,0.0 +19984,70,15,32,0.0 +19984,31,12.5,26,0.0 +19984,36,19,3,0.0 +19984,42,14,18,0.0 +19984,58,13.25,10,0.0 +19984,27,43.9,7,0.0 +19984,11,21,41,0.0 +19984,48,12.75,1,0.0 +19984,4,22,38,0.0 +19984,5,21.35,2,0.0 +19984,15,15.5,1,0.0 +19984,52,7,22,0.0 +19984,28,45.6,49,0.0 +19984,25,14,28,0.0 +19984,1,18,9,0.0 +19984,71,21.5,32,0.0 +19984,18,62.5,1,0.0 +19984,41,9.65,33,0.0 +19984,44,19.45,14,0.0 +19984,30,25.89,29,0.0 +19984,10,31,42,0.0 +19984,51,53,5,0.0 +19984,43,46,32,0.0 +19984,64,33.25,5,0.0 +19984,74,10,26,0.0 +19984,50,16.25,29,0.0 +19984,35,18,49,0.0 +19984,14,23.25,33,0.0 +19984,77,13,22,0.0 +19984,67,14,25,0.0 +19984,24,4.5,40,0.0 +19984,68,12.5,42,0.0 +19984,33,2.5,40,0.0 +19984,53,32.8,30,0.0 +19984,20,81,37,0.0 +19984,32,32,3,0.0 +19985,31,12.5,50,0.0 +19985,77,13,14,0.0 +19985,4,22,9,0.0 +19985,19,9.2,17,0.0 +19985,61,28.5,47,0.0 +19985,64,33.25,3,0.0 +19985,63,43.9,44,0.0 +19985,59,55,22,0.0 +19985,11,21,43,0.0 +19985,40,18.4,50,0.0 +19985,56,38,16,0.0 +19985,27,43.9,24,0.0 +19985,52,7,18,0.0 +19985,71,21.5,42,0.0 +19985,25,14,42,0.0 +19985,32,32,17,0.0 +19985,67,14,20,0.0 +19985,66,17,37,0.0 +19985,58,13.25,25,0.0 +19985,21,10,50,0.0 +19985,42,14,14,0.0 +19985,44,19.45,43,0.0 +19985,14,23.25,12,0.0 +19985,53,32.8,31,0.0 +19985,45,9.5,38,0.0 +19985,24,4.5,41,0.0 +19985,7,30,50,0.0 +19985,69,36,39,0.0 +19985,43,46,3,0.0 +19985,39,18,28,0.0 +19985,23,9,41,0.0 +19985,1,18,8,0.0 +19985,74,10,42,0.0 +19985,33,2.5,19,0.0 +19985,18,62.5,5,0.0 +19985,17,39,22,0.0 +19985,29,123.79,41,0.0 +19985,49,20,1,0.0 +19985,36,19,3,0.0 +19986,51,53,24,0.0 +19986,41,9.65,2,0.0 +19986,36,19,12,0.0 +19986,14,23.25,3,0.0 +19986,22,21,9,0.0 +19986,40,18.4,13,0.0 +19986,50,16.25,46,0.0 +19986,57,19.5,17,0.0 +19986,7,30,31,0.0 +19986,54,7.45,6,0.0 +19986,74,10,36,0.0 +19986,46,12,30,0.0 +19986,68,12.5,34,0.0 +19986,24,4.5,16,0.0 +19986,39,18,1,0.0 +19986,29,123.79,45,0.0 +19986,75,7.75,5,0.0 +19986,20,81,11,0.0 +19986,15,15.5,21,0.0 +19986,65,21.05,34,0.0 +19986,30,25.89,32,0.0 +19986,31,12.5,17,0.0 +19986,11,21,12,0.0 +19986,6,25,26,0.0 +19986,69,36,24,0.0 +19986,28,45.6,20,0.0 +19986,35,18,23,0.0 +19986,19,9.2,11,0.0 +19986,18,62.5,22,0.0 +19986,53,32.8,35,0.0 +19986,55,24,7,0.0 +19986,27,43.9,6,0.0 +19986,56,38,19,0.0 +19986,42,14,14,0.0 +19986,47,9.5,33,0.0 +19986,33,2.5,35,0.0 +19986,45,9.5,7,0.0 +19986,21,10,21,0.0 +19986,16,17.45,26,0.0 +19986,58,13.25,24,0.0 +19986,2,19,27,0.0 +19986,76,18,46,0.0 +19986,25,14,16,0.0 +19986,67,14,6,0.0 +19986,5,21.35,9,0.0 +19986,1,18,32,0.0 +19986,77,13,48,0.0 +19986,12,38,49,0.0 +19986,71,21.5,17,0.0 +19986,26,31.23,30,0.0 +19986,43,46,13,0.0 +19986,59,55,31,0.0 +19986,66,17,38,0.0 +19986,49,20,48,0.0 +19987,30,25.89,24,0.0 +19987,31,12.5,25,0.0 +19987,21,10,3,0.0 +19987,72,34.8,21,0.0 +19987,60,34,1,0.0 +19987,74,10,37,0.0 +19987,68,12.5,40,0.0 +19987,26,31.23,42,0.0 +19987,37,26,6,0.0 +19987,3,10,30,0.0 +19987,10,31,37,0.0 +19987,56,38,12,0.0 +19987,36,19,2,0.0 +19987,47,9.5,47,0.0 +19987,32,32,40,0.0 +19987,15,15.5,5,0.0 +19987,16,17.45,19,0.0 +19987,13,6,20,0.0 +19987,73,15,28,0.0 +19987,43,46,22,0.0 +19987,65,21.05,26,0.0 +19987,50,16.25,5,0.0 +19987,61,28.5,11,0.0 +19987,66,17,33,0.0 +19987,64,33.25,35,0.0 +19987,8,40,32,0.0 +19987,34,14,4,0.0 +19987,70,15,5,0.0 +19987,57,19.5,38,0.0 +19987,40,18.4,36,0.0 +19987,63,43.9,47,0.0 +19987,4,22,38,0.0 +19987,24,4.5,17,0.0 +19987,62,49.3,34,0.0 +19987,25,14,37,0.0 +19987,59,55,11,0.0 +19987,38,263.5,49,0.0 +19987,18,62.5,14,0.0 +19987,12,38,35,0.0 +19987,67,14,33,0.0 +19987,6,25,19,0.0 +19987,27,43.9,7,0.0 +19987,77,13,15,0.0 +19987,71,21.5,10,0.0 +19987,55,24,20,0.0 +19987,45,9.5,41,0.0 +19987,19,9.2,27,0.0 +19987,20,81,17,0.0 +19987,54,7.45,19,0.0 +19987,39,18,19,0.0 +19987,48,12.75,48,0.0 +19987,7,30,47,0.0 +19987,5,21.35,34,0.0 +19987,75,7.75,29,0.0 +19987,1,18,14,0.0 +19987,33,2.5,24,0.0 +19987,44,19.45,48,0.0 +19988,54,7.45,4,0.0 +19988,11,21,36,0.0 +19988,22,21,10,0.0 +19988,50,16.25,46,0.0 +19988,46,12,41,0.0 +19988,32,32,17,0.0 +19988,41,9.65,46,0.0 +19988,35,18,37,0.0 +19988,72,34.8,3,0.0 +19988,29,123.79,23,0.0 +19988,60,34,16,0.0 +19988,40,18.4,14,0.0 +19988,65,21.05,8,0.0 +19988,66,17,32,0.0 +19988,62,49.3,20,0.0 +19988,56,38,6,0.0 +19988,8,40,8,0.0 +19988,23,9,19,0.0 +19988,17,39,26,0.0 +19988,15,15.5,38,0.0 +19988,9,97,48,0.0 +19988,48,12.75,40,0.0 +19988,12,38,22,0.0 +19988,37,26,14,0.0 +19988,61,28.5,46,0.0 +19988,16,17.45,2,0.0 +19988,75,7.75,27,0.0 +19988,73,15,15,0.0 +19988,57,19.5,34,0.0 +19988,58,13.25,50,0.0 +19988,38,263.5,41,0.0 +19988,1,18,46,0.0 +19988,69,36,28,0.0 +19988,52,7,22,0.0 +19988,33,2.5,17,0.0 +19988,27,43.9,6,0.0 +19988,31,12.5,27,0.0 +19988,20,81,22,0.0 +19988,5,21.35,37,0.0 +19988,34,14,33,0.0 +19988,18,62.5,50,0.0 +19989,45,9.5,33,0.0 +19989,24,4.5,48,0.0 +19989,38,263.5,4,0.0 +19989,46,12,4,0.0 +19989,69,36,45,0.0 +19989,7,30,44,0.0 +19989,65,21.05,36,0.0 +19989,29,123.79,18,0.0 +19989,36,19,1,0.0 +19989,48,12.75,35,0.0 +19989,68,12.5,36,0.0 +19989,73,15,23,0.0 +19989,64,33.25,21,0.0 +19989,74,10,12,0.0 +19989,57,19.5,29,0.0 +19989,13,6,44,0.0 +19989,52,7,29,0.0 +19989,56,38,37,0.0 +19989,25,14,9,0.0 +19989,63,43.9,36,0.0 +19989,2,19,10,0.0 +19989,20,81,21,0.0 +19989,53,32.8,49,0.0 +19989,76,18,20,0.0 +19989,40,18.4,16,0.0 +19989,44,19.45,4,0.0 +19989,23,9,20,0.0 +19989,51,53,13,0.0 +19989,55,24,32,0.0 +19989,12,38,26,0.0 +19989,58,13.25,41,0.0 +19989,59,55,28,0.0 +19989,34,14,11,0.0 +19989,28,45.6,1,0.0 +19989,60,34,39,0.0 +19990,50,16.25,25,0.0 +19990,26,31.23,38,0.0 +19990,51,53,11,0.0 +19990,67,14,38,0.0 +19990,71,21.5,19,0.0 +19990,53,32.8,18,0.0 +19990,29,123.79,23,0.0 +19990,45,9.5,43,0.0 +19990,20,81,14,0.0 +19990,1,18,11,0.0 +19990,49,20,2,0.0 +19990,35,18,46,0.0 +19990,55,24,26,0.0 +19990,54,7.45,49,0.0 +19990,15,15.5,49,0.0 +19990,70,15,14,0.0 +19990,32,32,28,0.0 +19990,18,62.5,26,0.0 +19990,33,2.5,2,0.0 +19990,77,13,37,0.0 +19990,56,38,29,0.0 +19990,13,6,20,0.0 +19990,39,18,38,0.0 +19990,74,10,26,0.0 +19990,48,12.75,37,0.0 +19990,7,30,29,0.0 +19990,57,19.5,38,0.0 +19990,23,9,26,0.0 +19990,41,9.65,44,0.0 +19990,65,21.05,26,0.0 +19990,27,43.9,5,0.0 +19990,19,9.2,40,0.0 +19990,76,18,19,0.0 +19990,42,14,23,0.0 +19990,62,49.3,19,0.0 +19990,73,15,23,0.0 +19990,58,13.25,30,0.0 +19990,12,38,29,0.0 +19990,68,12.5,9,0.0 +19990,25,14,20,0.0 +19990,59,55,30,0.0 +19990,72,34.8,43,0.0 +19990,66,17,45,0.0 +19990,40,18.4,24,0.0 +19990,11,21,27,0.0 +19990,37,26,32,0.0 +19990,52,7,16,0.0 +19990,8,40,27,0.0 +19990,69,36,50,0.0 +19990,21,10,39,0.0 +19990,47,9.5,2,0.0 +19990,31,12.5,44,0.0 +19990,22,21,5,0.0 +19990,46,12,7,0.0 +19990,61,28.5,26,0.0 +19990,14,23.25,48,0.0 +19990,60,34,23,0.0 +19990,10,31,9,0.0 +19990,28,45.6,49,0.0 +19990,30,25.89,26,0.0 +19990,64,33.25,28,0.0 +19990,75,7.75,41,0.0 +19990,9,97,42,0.0 +19990,44,19.45,33,0.0 +19990,17,39,47,0.0 +19990,38,263.5,36,0.0 +19990,5,21.35,37,0.0 +19990,63,43.9,9,0.0 +19990,2,19,37,0.0 +19990,24,4.5,9,0.0 +19990,16,17.45,6,0.0 +19990,6,25,32,0.0 +19991,35,18,13,0.0 +19991,56,38,15,0.0 +19991,33,2.5,16,0.0 +19991,67,14,21,0.0 +19991,57,19.5,24,0.0 +19991,19,9.2,37,0.0 +19991,48,12.75,30,0.0 +19991,59,55,13,0.0 +19991,73,15,44,0.0 +19991,17,39,9,0.0 +19991,37,26,38,0.0 +19991,63,43.9,33,0.0 +19991,76,18,7,0.0 +19991,39,18,43,0.0 +19991,44,19.45,16,0.0 +19991,26,31.23,41,0.0 +19991,2,19,36,0.0 +19991,45,9.5,38,0.0 +19991,40,18.4,45,0.0 +19991,77,13,9,0.0 +19991,66,17,37,0.0 +19991,50,16.25,46,0.0 +19992,66,17,37,0.0 +19992,13,6,9,0.0 +19992,30,25.89,39,0.0 +19992,52,7,6,0.0 +19992,74,10,46,0.0 +19992,63,43.9,17,0.0 +19992,69,36,5,0.0 +19992,40,18.4,8,0.0 +19992,60,34,32,0.0 +19992,7,30,27,0.0 +19992,44,19.45,50,0.0 +19992,2,19,13,0.0 +19992,61,28.5,14,0.0 +19992,21,10,22,0.0 +19992,72,34.8,43,0.0 +19992,26,31.23,21,0.0 +19992,46,12,6,0.0 +19992,65,21.05,39,0.0 +19992,32,32,17,0.0 +19992,37,26,1,0.0 +19992,67,14,38,0.0 +19992,6,25,12,0.0 +19992,34,14,47,0.0 +19992,55,24,24,0.0 +19992,56,38,6,0.0 +19992,29,123.79,47,0.0 +19992,48,12.75,21,0.0 +19992,16,17.45,19,0.0 +19992,75,7.75,16,0.0 +19992,25,14,27,0.0 +19992,77,13,18,0.0 +19992,33,2.5,48,0.0 +19992,4,22,31,0.0 +19992,39,18,13,0.0 +19992,31,12.5,8,0.0 +19992,53,32.8,25,0.0 +19992,76,18,19,0.0 +19992,14,23.25,39,0.0 +19992,68,12.5,23,0.0 +19992,27,43.9,46,0.0 +19992,15,15.5,14,0.0 +19992,70,15,36,0.0 +19992,51,53,13,0.0 +19992,24,4.5,18,0.0 +19992,10,31,10,0.0 +19992,22,21,8,0.0 +19992,38,263.5,40,0.0 +19993,72,34.8,4,0.0 +19993,50,16.25,11,0.0 +19993,32,32,1,0.0 +19993,64,33.25,42,0.0 +19993,61,28.5,35,0.0 +19993,19,9.2,29,0.0 +19993,24,4.5,9,0.0 +19993,38,263.5,1,0.0 +19993,76,18,43,0.0 +19993,17,39,22,0.0 +19993,59,55,35,0.0 +19993,57,19.5,38,0.0 +19993,11,21,42,0.0 +19993,52,7,47,0.0 +19993,6,25,8,0.0 +19993,9,97,38,0.0 +19993,29,123.79,27,0.0 +19993,25,14,48,0.0 +19993,10,31,47,0.0 +19993,15,15.5,5,0.0 +19993,40,18.4,39,0.0 +19993,77,13,20,0.0 +19993,27,43.9,23,0.0 +19993,20,81,7,0.0 +19993,63,43.9,15,0.0 +19993,3,10,40,0.0 +19993,43,46,33,0.0 +19993,45,9.5,48,0.0 +19993,26,31.23,12,0.0 +19993,30,25.89,12,0.0 +19993,31,12.5,28,0.0 +19993,21,10,16,0.0 +19993,34,14,21,0.0 +19993,28,45.6,12,0.0 +19993,16,17.45,8,0.0 +19993,74,10,46,0.0 +19993,37,26,48,0.0 +19993,60,34,18,0.0 +19993,55,24,3,0.0 +19993,5,21.35,25,0.0 +19993,46,12,20,0.0 +19993,49,20,9,0.0 +19993,12,38,9,0.0 +19993,13,6,39,0.0 +19993,35,18,43,0.0 +19993,67,14,12,0.0 +19993,65,21.05,11,0.0 +19993,69,36,24,0.0 +19993,7,30,10,0.0 +19993,58,13.25,40,0.0 +19993,47,9.5,26,0.0 +19993,36,19,46,0.0 +19993,18,62.5,14,0.0 +19993,41,9.65,36,0.0 +19993,73,15,50,0.0 +19993,42,14,3,0.0 +19993,39,18,27,0.0 +19993,71,21.5,41,0.0 +19993,70,15,28,0.0 +19993,23,9,9,0.0 +19993,66,17,50,0.0 +19993,62,49.3,35,0.0 +19993,54,7.45,33,0.0 +19993,1,18,18,0.0 +19993,4,22,46,0.0 +19993,2,19,20,0.0 +19993,33,2.5,48,0.0 +19993,14,23.25,19,0.0 +19993,44,19.45,41,0.0 +19993,51,53,27,0.0 +19993,8,40,20,0.0 +19993,22,21,36,0.0 +19993,48,12.75,34,0.0 +19993,56,38,48,0.0 +19993,75,7.75,28,0.0 +19994,46,12,20,0.0 +19994,65,21.05,33,0.0 +19994,73,15,3,0.0 +19994,45,9.5,50,0.0 +19994,3,10,21,0.0 +19994,26,31.23,46,0.0 +19994,58,13.25,9,0.0 +19994,10,31,16,0.0 +19994,16,17.45,13,0.0 +19994,35,18,15,0.0 +19994,22,21,36,0.0 +19994,21,10,2,0.0 +19994,72,34.8,37,0.0 +19994,36,19,33,0.0 +19994,48,12.75,37,0.0 +19994,37,26,7,0.0 +19994,29,123.79,45,0.0 +19994,57,19.5,25,0.0 +19994,64,33.25,36,0.0 +19994,8,40,40,0.0 +19994,18,62.5,8,0.0 +19994,76,18,26,0.0 +19994,23,9,15,0.0 +19994,7,30,19,0.0 +19994,24,4.5,9,0.0 +19994,67,14,21,0.0 +19994,5,21.35,16,0.0 +19994,43,46,48,0.0 +19994,17,39,38,0.0 +19994,47,9.5,8,0.0 +19994,34,14,9,0.0 +19994,38,263.5,9,0.0 +19994,63,43.9,28,0.0 +19994,52,7,8,0.0 +19994,15,15.5,21,0.0 +19994,54,7.45,50,0.0 +19994,33,2.5,2,0.0 +19994,27,43.9,39,0.0 +19994,28,45.6,18,0.0 +19994,32,32,48,0.0 +19994,40,18.4,9,0.0 +19994,4,22,43,0.0 +19994,62,49.3,31,0.0 +19994,69,36,47,0.0 +19994,71,21.5,7,0.0 +19994,74,10,48,0.0 +19994,20,81,15,0.0 +19994,14,23.25,2,0.0 +19994,30,25.89,21,0.0 +19994,2,19,43,0.0 +19994,61,28.5,10,0.0 +19994,50,16.25,23,0.0 +19994,55,24,37,0.0 +19994,25,14,26,0.0 +19994,68,12.5,34,0.0 +19994,66,17,39,0.0 +19994,51,53,29,0.0 +19994,75,7.75,12,0.0 +19994,77,13,42,0.0 +19994,49,20,33,0.0 +19994,9,97,12,0.0 +19994,1,18,3,0.0 +19994,6,25,23,0.0 +19994,12,38,34,0.0 +19994,31,12.5,38,0.0 +19994,44,19.45,15,0.0 +19994,41,9.65,2,0.0 +19994,56,38,31,0.0 +19994,39,18,38,0.0 +19994,42,14,7,0.0 +19994,11,21,15,0.0 +19994,53,32.8,17,0.0 +19995,51,53,42,0.0 +19995,68,12.5,31,0.0 +19995,9,97,27,0.0 +19995,50,16.25,21,0.0 +19995,2,19,30,0.0 +19995,44,19.45,47,0.0 +19995,67,14,2,0.0 +19995,14,23.25,16,0.0 +19995,34,14,49,0.0 +19995,32,32,35,0.0 +19995,11,21,50,0.0 +19995,18,62.5,15,0.0 +19995,5,21.35,7,0.0 +19995,74,10,37,0.0 +19995,35,18,28,0.0 +19995,69,36,4,0.0 +19995,66,17,12,0.0 +19995,22,21,20,0.0 +19995,20,81,48,0.0 +19995,15,15.5,40,0.0 +19995,49,20,30,0.0 +19995,31,12.5,44,0.0 +19995,73,15,1,0.0 +19995,17,39,43,0.0 +19995,62,49.3,38,0.0 +19995,28,45.6,37,0.0 +19995,8,40,9,0.0 +19995,29,123.79,3,0.0 +19995,55,24,3,0.0 +19995,46,12,25,0.0 +19995,24,4.5,6,0.0 +19995,12,38,24,0.0 +19995,38,263.5,19,0.0 +19995,58,13.25,39,0.0 +19995,39,18,5,0.0 +19995,70,15,34,0.0 +19995,33,2.5,47,0.0 +19995,40,18.4,50,0.0 +19995,10,31,7,0.0 +19995,53,32.8,49,0.0 +19995,21,10,2,0.0 +19995,77,13,19,0.0 +19995,54,7.45,49,0.0 +19996,57,19.5,13,0.0 +19996,40,18.4,12,0.0 +19996,46,12,10,0.0 +19996,67,14,11,0.0 +19996,9,97,49,0.0 +19997,33,2.5,19,0.0 +19997,27,43.9,23,0.0 +19998,38,263.5,39,0.0 +19998,42,14,45,0.0 +19998,45,9.5,1,0.0 +19998,69,36,43,0.0 +19998,1,18,39,0.0 +19998,13,6,19,0.0 +19998,74,10,30,0.0 +19998,33,2.5,39,0.0 +19998,66,17,28,0.0 +19998,2,19,20,0.0 +19998,6,25,20,0.0 +19998,56,38,28,0.0 +19998,5,21.35,37,0.0 +19998,26,31.23,6,0.0 +19998,16,17.45,33,0.0 +19998,58,13.25,49,0.0 +19998,39,18,12,0.0 +19998,51,53,39,0.0 +19998,12,38,39,0.0 +19998,25,14,46,0.0 +19998,65,21.05,29,0.0 +19998,7,30,47,0.0 +19998,47,9.5,39,0.0 +19998,55,24,22,0.0 +19998,40,18.4,9,0.0 +19998,64,33.25,9,0.0 +19998,75,7.75,14,0.0 +19998,18,62.5,41,0.0 +19998,57,19.5,34,0.0 +19998,14,23.25,19,0.0 +19998,41,9.65,8,0.0 +19998,62,49.3,42,0.0 +19998,77,13,40,0.0 +19998,46,12,9,0.0 +19998,3,10,1,0.0 +19998,10,31,22,0.0 +19998,15,15.5,47,0.0 +19998,76,18,48,0.0 +19998,70,15,15,0.0 +19998,21,10,49,0.0 +19998,24,4.5,27,0.0 +19998,37,26,33,0.0 +19998,4,22,18,0.0 +19998,48,12.75,45,0.0 +19998,61,28.5,46,0.0 +19998,68,12.5,27,0.0 +19998,27,43.9,12,0.0 +19999,44,19.45,2,0.0 +19999,43,46,45,0.0 +19999,49,20,33,0.0 +19999,40,18.4,31,0.0 +19999,76,18,12,0.0 +19999,38,263.5,47,0.0 +19999,35,18,7,0.0 +19999,30,25.89,35,0.0 +19999,60,34,44,0.0 +19999,42,14,10,0.0 +19999,16,17.45,50,0.0 +19999,54,7.45,39,0.0 +19999,55,24,17,0.0 +19999,52,7,41,0.0 +19999,64,33.25,43,0.0 +19999,2,19,14,0.0 +19999,15,15.5,30,0.0 +19999,12,38,25,0.0 +19999,72,34.8,37,0.0 +19999,73,15,47,0.0 +19999,34,14,25,0.0 +19999,17,39,15,0.0 +19999,77,13,24,0.0 +19999,39,18,19,0.0 +19999,67,14,37,0.0 +19999,11,21,35,0.0 +19999,75,7.75,49,0.0 +19999,48,12.75,31,0.0 +19999,8,40,9,0.0 +19999,37,26,8,0.0 +19999,70,15,14,0.0 +19999,7,30,28,0.0 +19999,65,21.05,46,0.0 +19999,24,4.5,21,0.0 +19999,21,10,7,0.0 +19999,19,9.2,31,0.0 +19999,33,2.5,30,0.0 +19999,23,9,45,0.0 +19999,1,18,15,0.0 +19999,28,45.6,33,0.0 +19999,56,38,39,0.0 +19999,63,43.9,50,0.0 +19999,66,17,29,0.0 +19999,47,9.5,35,0.0 +19999,50,16.25,9,0.0 +19999,6,25,15,0.0 +19999,36,19,33,0.0 +19999,74,10,50,0.0 +19999,71,21.5,42,0.0 +19999,51,53,38,0.0 +19999,29,123.79,31,0.0 +20000,32,32,12,0.0 +20001,51,53,46,0.0 +20001,56,38,13,0.0 +20001,40,18.4,22,0.0 +20001,1,18,17,0.0 +20001,35,18,9,0.0 +20001,44,19.45,17,0.0 +20001,29,123.79,11,0.0 +20001,8,40,29,0.0 +20001,52,7,16,0.0 +20001,22,21,6,0.0 +20001,3,10,34,0.0 +20001,10,31,21,0.0 +20001,15,15.5,40,0.0 +20001,76,18,45,0.0 +20001,28,45.6,31,0.0 +20001,69,36,35,0.0 +20001,13,6,14,0.0 +20001,11,21,43,0.0 +20001,2,19,20,0.0 +20001,4,22,27,0.0 +20001,32,32,10,0.0 +20001,23,9,47,0.0 +20001,6,25,47,0.0 +20001,59,55,28,0.0 +20001,16,17.45,42,0.0 +20001,73,15,23,0.0 +20001,12,38,48,0.0 +20001,27,43.9,37,0.0 +20001,53,32.8,12,0.0 +20001,24,4.5,36,0.0 +20001,57,19.5,20,0.0 +20001,17,39,31,0.0 +20001,65,21.05,14,0.0 +20001,45,9.5,1,0.0 +20001,21,10,36,0.0 +20001,14,23.25,36,0.0 +20001,25,14,13,0.0 +20002,8,40,15,0.0 +20002,32,32,47,0.0 +20002,61,28.5,50,0.0 +20002,15,15.5,19,0.0 +20002,71,21.5,4,0.0 +20002,66,17,22,0.0 +20003,29,123.79,22,0.0 +20003,52,7,37,0.0 +20003,12,38,31,0.0 +20003,51,53,11,0.0 +20003,9,97,42,0.0 +20003,23,9,38,0.0 +20003,22,21,6,0.0 +20003,46,12,21,0.0 +20003,3,10,30,0.0 +20003,40,18.4,1,0.0 +20003,37,26,36,0.0 +20003,16,17.45,46,0.0 +20003,18,62.5,44,0.0 +20003,53,32.8,49,0.0 +20003,61,28.5,34,0.0 +20003,34,14,39,0.0 +20003,36,19,25,0.0 +20003,6,25,46,0.0 +20003,1,18,1,0.0 +20003,24,4.5,44,0.0 +20003,49,20,4,0.0 +20003,19,9.2,8,0.0 +20003,70,15,2,0.0 +20003,67,14,12,0.0 +20003,33,2.5,15,0.0 +20003,21,10,33,0.0 +20003,55,24,29,0.0 +20003,50,16.25,25,0.0 +20003,75,7.75,9,0.0 +20003,56,38,27,0.0 +20003,57,19.5,24,0.0 +20003,8,40,20,0.0 +20003,39,18,49,0.0 +20003,60,34,8,0.0 +20003,35,18,17,0.0 +20003,45,9.5,13,0.0 +20003,43,46,26,0.0 +20003,14,23.25,36,0.0 +20003,72,34.8,45,0.0 +20003,17,39,25,0.0 +20003,7,30,37,0.0 +20003,28,45.6,11,0.0 +20003,54,7.45,23,0.0 +20003,73,15,24,0.0 +20003,44,19.45,34,0.0 +20003,77,13,21,0.0 +20003,66,17,40,0.0 +20003,74,10,35,0.0 +20003,68,12.5,23,0.0 +20003,25,14,1,0.0 +20003,5,21.35,44,0.0 +20003,27,43.9,34,0.0 +20003,38,263.5,37,0.0 +20003,41,9.65,30,0.0 +20003,31,12.5,12,0.0 +20003,42,14,6,0.0 +20003,64,33.25,17,0.0 +20003,13,6,19,0.0 +20003,20,81,35,0.0 +20003,48,12.75,45,0.0 +20003,30,25.89,26,0.0 +20003,47,9.5,47,0.0 +20004,72,34.8,11,0.0 +20004,61,28.5,41,0.0 +20004,73,15,37,0.0 +20004,23,9,30,0.0 +20004,35,18,37,0.0 +20004,70,15,26,0.0 +20004,26,31.23,33,0.0 +20004,49,20,19,0.0 +20004,15,15.5,49,0.0 +20004,63,43.9,27,0.0 +20004,56,38,14,0.0 +20004,75,7.75,12,0.0 +20004,29,123.79,39,0.0 +20004,76,18,13,0.0 +20004,22,21,14,0.0 +20004,51,53,49,0.0 +20004,58,13.25,24,0.0 +20004,62,49.3,45,0.0 +20004,24,4.5,37,0.0 +20004,9,97,49,0.0 +20004,1,18,23,0.0 +20004,42,14,28,0.0 +20004,30,25.89,21,0.0 +20004,32,32,49,0.0 +20004,20,81,7,0.0 +20004,59,55,22,0.0 +20004,57,19.5,30,0.0 +20004,4,22,13,0.0 +20004,40,18.4,22,0.0 +20004,54,7.45,34,0.0 +20004,67,14,20,0.0 +20004,38,263.5,24,0.0 +20004,28,45.6,47,0.0 +20004,65,21.05,21,0.0 +20004,44,19.45,31,0.0 +20004,41,9.65,20,0.0 +20004,2,19,24,0.0 +20004,50,16.25,12,0.0 +20004,13,6,11,0.0 +20004,34,14,38,0.0 +20004,5,21.35,33,0.0 +20004,17,39,2,0.0 +20004,39,18,18,0.0 +20004,66,17,17,0.0 +20004,19,9.2,3,0.0 +20004,69,36,9,0.0 +20004,46,12,7,0.0 +20004,12,38,37,0.0 +20004,7,30,16,0.0 +20004,14,23.25,13,0.0 +20004,27,43.9,13,0.0 +20004,52,7,3,0.0 +20004,36,19,47,0.0 +20004,21,10,8,0.0 +20004,3,10,41,0.0 +20004,31,12.5,38,0.0 +20004,6,25,28,0.0 +20004,45,9.5,34,0.0 +20004,11,21,23,0.0 +20004,74,10,40,0.0 +20004,16,17.45,31,0.0 +20004,55,24,15,0.0 +20004,33,2.5,25,0.0 +20005,7,30,36,0.0 +20005,69,36,49,0.0 +20005,32,32,26,0.0 +20005,10,31,11,0.0 +20005,38,263.5,48,0.0 +20005,14,23.25,20,0.0 +20006,30,25.89,14,0.0 +20006,9,97,23,0.0 +20006,63,43.9,15,0.0 +20006,34,14,36,0.0 +20006,21,10,17,0.0 +20006,1,18,8,0.0 +20006,8,40,38,0.0 +20006,4,22,2,0.0 +20006,55,24,20,0.0 +20006,54,7.45,15,0.0 +20006,23,9,28,0.0 +20006,37,26,8,0.0 +20006,60,34,15,0.0 +20006,11,21,18,0.0 +20006,24,4.5,21,0.0 +20006,18,62.5,30,0.0 +20006,7,30,20,0.0 +20006,22,21,21,0.0 +20006,3,10,26,0.0 +20006,12,38,1,0.0 +20006,28,45.6,27,0.0 +20006,33,2.5,19,0.0 +20006,52,7,48,0.0 +20006,71,21.5,36,0.0 +20006,16,17.45,1,0.0 +20006,59,55,40,0.0 +20006,5,21.35,23,0.0 +20006,38,263.5,39,0.0 +20006,31,12.5,22,0.0 +20007,1,18,18,0.0 +20007,29,123.79,15,0.0 +20007,7,30,23,0.0 +20007,50,16.25,27,0.0 +20008,19,9.2,18,0.0 +20008,20,81,34,0.0 +20008,39,18,24,0.0 +20008,8,40,7,0.0 +20008,15,15.5,50,0.0 +20008,68,12.5,29,0.0 +20008,44,19.45,46,0.0 +20008,33,2.5,15,0.0 +20008,57,19.5,38,0.0 +20008,29,123.79,15,0.0 +20008,38,263.5,47,0.0 +20008,65,21.05,30,0.0 +20008,25,14,44,0.0 +20008,16,17.45,4,0.0 +20008,10,31,36,0.0 +20008,42,14,24,0.0 +20008,21,10,50,0.0 +20008,54,7.45,34,0.0 +20008,6,25,12,0.0 +20008,27,43.9,45,0.0 +20008,55,24,8,0.0 +20008,18,62.5,21,0.0 +20008,46,12,43,0.0 +20008,37,26,6,0.0 +20008,7,30,37,0.0 +20008,5,21.35,45,0.0 +20008,23,9,36,0.0 +20008,4,22,50,0.0 +20008,53,32.8,12,0.0 +20008,61,28.5,3,0.0 +20008,28,45.6,42,0.0 +20008,71,21.5,16,0.0 +20008,49,20,23,0.0 +20008,2,19,43,0.0 +20008,58,13.25,11,0.0 +20008,12,38,24,0.0 +20008,77,13,46,0.0 +20008,48,12.75,19,0.0 +20008,72,34.8,15,0.0 +20008,22,21,11,0.0 +20008,13,6,17,0.0 +20008,62,49.3,9,0.0 +20008,11,21,16,0.0 +20008,69,36,47,0.0 +20008,32,32,6,0.0 +20008,24,4.5,35,0.0 +20008,1,18,23,0.0 +20008,52,7,16,0.0 +20008,56,38,20,0.0 +20008,36,19,4,0.0 +20008,45,9.5,37,0.0 +20008,75,7.75,33,0.0 +20008,43,46,29,0.0 +20008,60,34,23,0.0 +20008,59,55,16,0.0 +20008,34,14,12,0.0 +20008,30,25.89,4,0.0 +20008,3,10,18,0.0 +20008,51,53,47,0.0 +20008,50,16.25,41,0.0 +20008,35,18,49,0.0 +20008,66,17,47,0.0 +20008,40,18.4,16,0.0 +20008,9,97,14,0.0 +20008,70,15,41,0.0 +20008,76,18,24,0.0 +20009,59,55,17,0.0 +20009,58,13.25,39,0.0 +20009,30,25.89,25,0.0 +20009,45,9.5,4,0.0 +20009,57,19.5,24,0.0 +20009,12,38,30,0.0 +20009,4,22,36,0.0 +20009,61,28.5,42,0.0 +20009,64,33.25,43,0.0 +20009,63,43.9,33,0.0 +20009,35,18,20,0.0 +20009,38,263.5,22,0.0 +20009,69,36,37,0.0 +20009,26,31.23,40,0.0 +20009,13,6,22,0.0 +20009,62,49.3,26,0.0 +20009,7,30,12,0.0 +20009,72,34.8,22,0.0 +20009,68,12.5,37,0.0 +20009,44,19.45,19,0.0 +20009,46,12,44,0.0 +20009,17,39,43,0.0 +20009,77,13,24,0.0 +20009,36,19,22,0.0 +20009,49,20,41,0.0 +20009,33,2.5,40,0.0 +20009,40,18.4,1,0.0 +20009,47,9.5,15,0.0 +20009,48,12.75,1,0.0 +20009,67,14,16,0.0 +20009,56,38,27,0.0 +20009,28,45.6,28,0.0 +20009,42,14,29,0.0 +20009,1,18,41,0.0 +20009,2,19,14,0.0 +20009,73,15,20,0.0 +20009,41,9.65,28,0.0 +20009,70,15,9,0.0 +20009,14,23.25,18,0.0 +20009,43,46,24,0.0 +20009,75,7.75,39,0.0 +20009,19,9.2,4,0.0 +20009,32,32,21,0.0 +20009,71,21.5,37,0.0 +20009,21,10,21,0.0 +20009,5,21.35,22,0.0 +20009,54,7.45,33,0.0 +20009,24,4.5,33,0.0 +20009,29,123.79,8,0.0 +20009,60,34,14,0.0 +20009,18,62.5,43,0.0 +20009,34,14,49,0.0 +20009,31,12.5,1,0.0 +20009,16,17.45,16,0.0 +20009,25,14,45,0.0 +20009,76,18,18,0.0 +20009,65,21.05,9,0.0 +20009,53,32.8,10,0.0 +20009,39,18,11,0.0 +20009,15,15.5,14,0.0 +20009,50,16.25,2,0.0 +20010,40,18.4,16,0.0 +20010,17,39,4,0.0 +20010,60,34,33,0.0 +20010,5,21.35,17,0.0 +20010,10,31,15,0.0 +20010,74,10,50,0.0 +20010,15,15.5,35,0.0 +20010,44,19.45,49,0.0 +20010,19,9.2,28,0.0 +20010,62,49.3,9,0.0 +20010,76,18,33,0.0 +20010,67,14,1,0.0 +20010,45,9.5,39,0.0 +20010,58,13.25,3,0.0 +20010,69,36,3,0.0 +20010,61,28.5,15,0.0 +20010,53,32.8,45,0.0 +20010,38,263.5,46,0.0 +20010,2,19,10,0.0 +20010,3,10,2,0.0 +20010,47,9.5,5,0.0 +20010,9,97,24,0.0 +20010,42,14,23,0.0 +20010,30,25.89,25,0.0 +20010,26,31.23,43,0.0 +20010,66,17,5,0.0 +20010,13,6,38,0.0 +20010,25,14,16,0.0 +20010,59,55,20,0.0 +20010,27,43.9,31,0.0 +20010,72,34.8,7,0.0 +20010,73,15,45,0.0 +20010,71,21.5,6,0.0 +20010,39,18,24,0.0 +20010,64,33.25,26,0.0 +20010,46,12,43,0.0 +20010,4,22,30,0.0 +20010,51,53,47,0.0 +20010,8,40,21,0.0 +20010,32,32,47,0.0 +20010,35,18,3,0.0 +20010,31,12.5,20,0.0 +20010,49,20,41,0.0 +20010,41,9.65,39,0.0 +20010,6,25,46,0.0 +20010,29,123.79,37,0.0 +20010,57,19.5,21,0.0 +20010,16,17.45,48,0.0 +20010,55,24,3,0.0 +20010,11,21,31,0.0 +20010,54,7.45,1,0.0 +20010,65,21.05,14,0.0 +20010,70,15,49,0.0 +20011,8,40,30,0.0 +20011,65,21.05,10,0.0 +20012,3,10,32,0.0 +20012,34,14,35,0.0 +20012,31,12.5,26,0.0 +20012,16,17.45,30,0.0 +20012,27,43.9,6,0.0 +20012,37,26,3,0.0 +20012,14,23.25,41,0.0 +20012,5,21.35,19,0.0 +20012,74,10,1,0.0 +20012,23,9,33,0.0 +20012,17,39,42,0.0 +20012,49,20,22,0.0 +20012,4,22,12,0.0 +20012,55,24,39,0.0 +20013,25,14,48,0.0 +20013,73,15,43,0.0 +20013,45,9.5,48,0.0 +20013,13,6,6,0.0 +20013,38,263.5,9,0.0 +20013,46,12,6,0.0 +20013,12,38,11,0.0 +20013,66,17,9,0.0 +20013,51,53,22,0.0 +20013,31,12.5,25,0.0 +20013,35,18,26,0.0 +20013,20,81,26,0.0 +20013,48,12.75,31,0.0 +20013,54,7.45,47,0.0 +20013,14,23.25,5,0.0 +20013,39,18,3,0.0 +20013,10,31,28,0.0 +20013,36,19,48,0.0 +20014,15,15.5,49,0.0 +20014,11,21,23,0.0 +20014,17,39,39,0.0 +20014,35,18,44,0.0 +20015,75,7.75,16,0.0 +20015,19,9.2,42,0.0 +20015,56,38,3,0.0 +20015,64,33.25,26,0.0 +20015,18,62.5,26,0.0 +20015,10,31,14,0.0 +20015,16,17.45,39,0.0 +20015,54,7.45,27,0.0 +20015,77,13,22,0.0 +20015,20,81,12,0.0 +20015,24,4.5,29,0.0 +20015,22,21,25,0.0 +20015,9,97,39,0.0 +20015,32,32,18,0.0 +20015,2,19,38,0.0 +20015,4,22,11,0.0 +20015,27,43.9,28,0.0 +20015,40,18.4,32,0.0 +20015,44,19.45,40,0.0 +20015,41,9.65,47,0.0 +20015,45,9.5,26,0.0 +20015,28,45.6,29,0.0 +20015,23,9,24,0.0 +20015,33,2.5,40,0.0 +20015,31,12.5,26,0.0 +20015,6,25,26,0.0 +20015,13,6,14,0.0 +20015,42,14,11,0.0 +20015,36,19,46,0.0 +20015,67,14,20,0.0 +20015,39,18,35,0.0 +20015,17,39,13,0.0 +20015,21,10,18,0.0 +20015,58,13.25,7,0.0 +20015,52,7,4,0.0 +20015,49,20,44,0.0 +20015,60,34,11,0.0 +20015,70,15,16,0.0 +20015,25,14,38,0.0 +20015,73,15,38,0.0 +20015,61,28.5,21,0.0 +20015,46,12,18,0.0 +20015,15,15.5,27,0.0 +20015,34,14,40,0.0 +20015,69,36,15,0.0 +20015,57,19.5,22,0.0 +20015,1,18,28,0.0 +20015,14,23.25,26,0.0 +20016,21,10,43,0.0 +20016,15,15.5,48,0.0 +20016,47,9.5,1,0.0 +20016,73,15,16,0.0 +20016,42,14,18,0.0 +20016,38,263.5,8,0.0 +20016,20,81,20,0.0 +20016,48,12.75,39,0.0 +20016,14,23.25,40,0.0 +20016,40,18.4,5,0.0 +20017,65,21.05,50,0.0 +20017,4,22,29,0.0 +20017,63,43.9,18,0.0 +20017,5,21.35,15,0.0 +20017,28,45.6,4,0.0 +20017,38,263.5,43,0.0 +20017,30,25.89,22,0.0 +20017,58,13.25,45,0.0 +20017,20,81,23,0.0 +20017,70,15,10,0.0 +20017,37,26,9,0.0 +20017,55,24,45,0.0 +20017,45,9.5,50,0.0 +20017,10,31,38,0.0 +20017,66,17,19,0.0 +20017,54,7.45,20,0.0 +20017,50,16.25,29,0.0 +20017,69,36,11,0.0 +20017,39,18,16,0.0 +20018,18,62.5,46,0.0 +20018,56,38,38,0.0 +20018,3,10,22,0.0 +20019,32,32,27,0.0 +20019,50,16.25,13,0.0 +20019,51,53,16,0.0 +20019,36,19,32,0.0 +20019,61,28.5,8,0.0 +20019,42,14,25,0.0 +20019,6,25,29,0.0 +20019,58,13.25,43,0.0 +20019,34,14,37,0.0 +20019,26,31.23,16,0.0 +20019,40,18.4,31,0.0 +20019,57,19.5,45,0.0 +20019,18,62.5,6,0.0 +20019,72,34.8,22,0.0 +20019,75,7.75,2,0.0 +20019,70,15,37,0.0 +20019,64,33.25,13,0.0 +20019,30,25.89,50,0.0 +20019,1,18,43,0.0 +20019,54,7.45,46,0.0 +20019,67,14,20,0.0 +20019,68,12.5,5,0.0 +20019,45,9.5,37,0.0 +20019,5,21.35,39,0.0 +20019,38,263.5,18,0.0 +20019,25,14,1,0.0 +20019,21,10,1,0.0 +20019,53,32.8,48,0.0 +20019,62,49.3,30,0.0 +20019,73,15,42,0.0 +20019,4,22,11,0.0 +20019,22,21,49,0.0 +20019,43,46,43,0.0 +20019,24,4.5,11,0.0 +20019,37,26,43,0.0 +20019,69,36,28,0.0 +20019,15,15.5,25,0.0 +20019,33,2.5,13,0.0 +20019,74,10,22,0.0 +20019,65,21.05,17,0.0 +20019,8,40,13,0.0 +20019,14,23.25,49,0.0 +20019,2,19,26,0.0 +20019,63,43.9,9,0.0 +20019,66,17,34,0.0 +20019,13,6,27,0.0 +20019,17,39,11,0.0 +20019,29,123.79,36,0.0 +20019,3,10,50,0.0 +20019,71,21.5,46,0.0 +20019,27,43.9,28,0.0 +20019,23,9,16,0.0 +20019,20,81,5,0.0 +20019,16,17.45,17,0.0 +20019,28,45.6,19,0.0 +20019,77,13,31,0.0 +20019,7,30,44,0.0 +20019,55,24,30,0.0 +20019,46,12,49,0.0 +20020,36,19,12,0.0 +20020,7,30,2,0.0 +20020,70,15,49,0.0 +20020,62,49.3,8,0.0 +20020,60,34,27,0.0 +20020,44,19.45,24,0.0 +20020,37,26,42,0.0 +20020,11,21,48,0.0 +20020,38,263.5,37,0.0 +20020,73,15,17,0.0 +20020,75,7.75,44,0.0 +20020,3,10,32,0.0 +20020,18,62.5,9,0.0 +20020,59,55,47,0.0 +20020,74,10,24,0.0 +20020,30,25.89,37,0.0 +20020,8,40,25,0.0 +20020,50,16.25,6,0.0 +20020,49,20,34,0.0 +20020,22,21,50,0.0 +20020,55,24,35,0.0 +20020,9,97,20,0.0 +20020,1,18,29,0.0 +20020,17,39,9,0.0 +20020,71,21.5,11,0.0 +20020,66,17,48,0.0 +20020,23,9,7,0.0 +20020,72,34.8,12,0.0 +20020,56,38,35,0.0 +20020,58,13.25,13,0.0 +20020,76,18,27,0.0 +20020,61,28.5,37,0.0 +20021,64,33.25,27,0.0 +20021,15,15.5,15,0.0 +20021,40,18.4,1,0.0 +20021,71,21.5,37,0.0 +20021,4,22,32,0.0 +20021,58,13.25,27,0.0 +20021,26,31.23,31,0.0 +20021,20,81,23,0.0 +20021,41,9.65,13,0.0 +20021,35,18,17,0.0 +20021,25,14,36,0.0 +20021,38,263.5,21,0.0 +20021,11,21,40,0.0 +20021,23,9,13,0.0 +20021,43,46,31,0.0 +20021,5,21.35,45,0.0 +20021,27,43.9,28,0.0 +20021,3,10,49,0.0 +20021,76,18,11,0.0 +20021,24,4.5,27,0.0 +20021,19,9.2,16,0.0 +20021,69,36,4,0.0 +20021,77,13,15,0.0 +20022,36,19,27,0.0 +20022,5,21.35,34,0.0 +20022,19,9.2,48,0.0 +20022,62,49.3,47,0.0 +20022,10,31,44,0.0 +20022,28,45.6,24,0.0 +20022,47,9.5,3,0.0 +20022,1,18,37,0.0 +20022,13,6,9,0.0 +20022,60,34,29,0.0 +20022,15,15.5,23,0.0 +20022,21,10,23,0.0 +20022,27,43.9,11,0.0 +20022,56,38,42,0.0 +20022,17,39,11,0.0 +20022,44,19.45,17,0.0 +20022,55,24,35,0.0 +20022,29,123.79,6,0.0 +20023,48,12.75,35,0.0 +20023,38,263.5,42,0.0 +20023,5,21.35,10,0.0 +20023,62,49.3,44,0.0 +20023,58,13.25,17,0.0 +20023,52,7,38,0.0 +20023,19,9.2,25,0.0 +20023,11,21,9,0.0 +20023,73,15,1,0.0 +20023,33,2.5,7,0.0 +20023,26,31.23,40,0.0 +20024,31,12.5,4,0.0 +20024,41,9.65,49,0.0 +20024,21,10,13,0.0 +20024,54,7.45,43,0.0 +20024,59,55,8,0.0 +20025,62,49.3,13,0.0 +20025,3,10,19,0.0 +20025,44,19.45,38,0.0 +20025,34,14,41,0.0 +20025,32,32,42,0.0 +20025,50,16.25,18,0.0 +20025,69,36,15,0.0 +20025,76,18,44,0.0 +20025,61,28.5,49,0.0 +20025,49,20,31,0.0 +20025,29,123.79,3,0.0 +20025,18,62.5,46,0.0 +20025,46,12,10,0.0 +20025,68,12.5,3,0.0 +20025,25,14,42,0.0 +20025,6,25,38,0.0 +20025,38,263.5,7,0.0 +20025,54,7.45,27,0.0 +20025,66,17,31,0.0 +20025,24,4.5,34,0.0 +20025,36,19,23,0.0 +20025,57,19.5,16,0.0 +20025,73,15,14,0.0 +20025,59,55,47,0.0 +20025,17,39,48,0.0 +20025,53,32.8,38,0.0 +20025,35,18,36,0.0 +20025,63,43.9,18,0.0 +20025,77,13,19,0.0 +20025,64,33.25,47,0.0 +20025,10,31,5,0.0 +20025,70,15,24,0.0 +20025,40,18.4,36,0.0 +20025,56,38,42,0.0 +20025,48,12.75,28,0.0 +20025,60,34,20,0.0 +20025,1,18,49,0.0 +20025,7,30,19,0.0 +20025,42,14,29,0.0 +20025,13,6,24,0.0 +20025,47,9.5,39,0.0 +20025,45,9.5,15,0.0 +20025,43,46,18,0.0 +20025,58,13.25,17,0.0 +20025,19,9.2,47,0.0 +20025,14,23.25,24,0.0 +20025,11,21,22,0.0 +20025,23,9,4,0.0 +20025,74,10,2,0.0 +20025,16,17.45,17,0.0 +20025,71,21.5,25,0.0 +20025,75,7.75,9,0.0 +20025,22,21,2,0.0 +20025,51,53,20,0.0 +20025,5,21.35,41,0.0 +20026,31,12.5,16,0.0 +20026,59,55,14,0.0 +20026,35,18,32,0.0 +20026,65,21.05,24,0.0 +20026,54,7.45,32,0.0 +20026,19,9.2,30,0.0 +20026,64,33.25,47,0.0 +20026,30,25.89,30,0.0 +20026,11,21,13,0.0 +20026,47,9.5,24,0.0 +20026,26,31.23,28,0.0 +20026,17,39,9,0.0 +20027,32,32,29,0.0 +20027,21,10,40,0.0 +20027,18,62.5,16,0.0 +20027,23,9,4,0.0 +20027,6,25,49,0.0 +20027,39,18,34,0.0 +20027,76,18,37,0.0 +20027,34,14,50,0.0 +20027,65,21.05,18,0.0 +20027,8,40,20,0.0 +20027,37,26,1,0.0 +20027,20,81,20,0.0 +20027,53,32.8,37,0.0 +20027,61,28.5,13,0.0 +20027,72,34.8,40,0.0 +20027,29,123.79,8,0.0 +20027,17,39,12,0.0 +20027,26,31.23,39,0.0 +20027,46,12,25,0.0 +20027,30,25.89,2,0.0 +20027,15,15.5,17,0.0 +20027,48,12.75,5,0.0 +20027,1,18,30,0.0 +20027,57,19.5,40,0.0 +20027,66,17,43,0.0 +20027,45,9.5,19,0.0 +20027,59,55,9,0.0 +20027,22,21,4,0.0 +20027,70,15,26,0.0 +20027,13,6,44,0.0 +20027,71,21.5,48,0.0 +20027,2,19,19,0.0 +20027,41,9.65,8,0.0 +20027,47,9.5,13,0.0 +20027,56,38,7,0.0 +20027,36,19,7,0.0 +20027,54,7.45,31,0.0 +20027,42,14,29,0.0 +20027,50,16.25,19,0.0 +20027,55,24,10,0.0 +20027,25,14,24,0.0 +20027,3,10,9,0.0 +20027,28,45.6,26,0.0 +20027,51,53,29,0.0 +20027,19,9.2,17,0.0 +20027,24,4.5,41,0.0 +20027,5,21.35,13,0.0 +20027,38,263.5,21,0.0 +20027,69,36,40,0.0 +20027,73,15,19,0.0 +20027,31,12.5,31,0.0 +20027,10,31,20,0.0 +20027,40,18.4,18,0.0 +20028,49,20,39,0.0 +20028,61,28.5,50,0.0 +20028,45,9.5,9,0.0 +20028,72,34.8,31,0.0 +20028,63,43.9,28,0.0 +20028,74,10,3,0.0 +20028,42,14,13,0.0 +20028,6,25,5,0.0 +20028,26,31.23,37,0.0 +20028,77,13,44,0.0 +20028,53,32.8,8,0.0 +20028,55,24,19,0.0 +20028,11,21,31,0.0 +20028,17,39,24,0.0 +20028,34,14,48,0.0 +20028,60,34,49,0.0 +20028,76,18,6,0.0 +20028,5,21.35,47,0.0 +20028,9,97,25,0.0 +20028,41,9.65,42,0.0 +20028,37,26,8,0.0 +20028,31,12.5,35,0.0 +20028,43,46,20,0.0 +20028,38,263.5,37,0.0 +20028,47,9.5,4,0.0 +20028,64,33.25,2,0.0 +20028,4,22,12,0.0 +20028,52,7,28,0.0 +20028,48,12.75,48,0.0 +20028,25,14,14,0.0 +20028,39,18,19,0.0 +20028,10,31,4,0.0 +20029,25,14,41,0.0 +20029,22,21,22,0.0 +20029,7,30,40,0.0 +20029,51,53,20,0.0 +20029,30,25.89,47,0.0 +20029,70,15,4,0.0 +20029,42,14,33,0.0 +20029,3,10,37,0.0 +20029,66,17,13,0.0 +20029,29,123.79,25,0.0 +20029,35,18,4,0.0 +20029,68,12.5,45,0.0 +20029,31,12.5,48,0.0 +20029,11,21,1,0.0 +20029,1,18,46,0.0 +20029,27,43.9,32,0.0 +20029,17,39,29,0.0 +20029,37,26,21,0.0 +20029,63,43.9,46,0.0 +20029,5,21.35,20,0.0 +20029,46,12,44,0.0 +20029,12,38,39,0.0 +20029,10,31,50,0.0 +20029,41,9.65,24,0.0 +20029,57,19.5,27,0.0 +20029,18,62.5,4,0.0 +20029,54,7.45,3,0.0 +20029,67,14,20,0.0 +20029,32,32,9,0.0 +20029,20,81,8,0.0 +20029,26,31.23,39,0.0 +20029,2,19,36,0.0 +20029,64,33.25,35,0.0 +20029,50,16.25,47,0.0 +20029,65,21.05,26,0.0 +20029,75,7.75,45,0.0 +20029,39,18,5,0.0 +20029,16,17.45,33,0.0 +20029,69,36,5,0.0 +20029,76,18,6,0.0 +20029,47,9.5,43,0.0 +20029,58,13.25,7,0.0 +20029,56,38,31,0.0 +20029,72,34.8,26,0.0 +20029,15,15.5,44,0.0 +20029,13,6,2,0.0 +20029,40,18.4,19,0.0 +20029,44,19.45,21,0.0 +20029,60,34,42,0.0 +20029,33,2.5,5,0.0 +20029,34,14,3,0.0 +20029,4,22,33,0.0 +20030,66,17,37,0.0 +20030,14,23.25,34,0.0 +20030,19,9.2,29,0.0 +20030,13,6,38,0.0 +20030,52,7,1,0.0 +20030,26,31.23,23,0.0 +20030,29,123.79,49,0.0 +20030,30,25.89,49,0.0 +20030,5,21.35,39,0.0 +20030,58,13.25,26,0.0 +20030,16,17.45,18,0.0 +20030,8,40,29,0.0 +20030,77,13,48,0.0 +20030,76,18,3,0.0 +20030,37,26,31,0.0 +20030,64,33.25,24,0.0 +20030,59,55,39,0.0 +20030,63,43.9,17,0.0 +20030,21,10,21,0.0 +20030,47,9.5,2,0.0 +20030,7,30,21,0.0 +20030,54,7.45,24,0.0 +20030,71,21.5,29,0.0 +20030,75,7.75,30,0.0 +20030,27,43.9,49,0.0 +20030,55,24,29,0.0 +20030,48,12.75,13,0.0 +20030,4,22,28,0.0 +20030,53,32.8,2,0.0 +20030,33,2.5,23,0.0 +20030,56,38,24,0.0 +20030,15,15.5,44,0.0 +20030,31,12.5,14,0.0 +20030,51,53,29,0.0 +20030,36,19,27,0.0 +20030,38,263.5,28,0.0 +20030,11,21,3,0.0 +20030,20,81,1,0.0 +20031,53,32.8,12,0.0 +20031,35,18,41,0.0 +20031,15,15.5,5,0.0 +20031,33,2.5,11,0.0 +20031,44,19.45,12,0.0 +20031,43,46,49,0.0 +20031,70,15,42,0.0 +20031,26,31.23,12,0.0 +20031,16,17.45,40,0.0 +20031,25,14,17,0.0 +20031,57,19.5,21,0.0 +20031,20,81,7,0.0 +20031,77,13,36,0.0 +20031,64,33.25,40,0.0 +20031,54,7.45,9,0.0 +20031,69,36,48,0.0 +20031,4,22,1,0.0 +20031,46,12,31,0.0 +20031,19,9.2,37,0.0 +20031,38,263.5,8,0.0 +20031,6,25,35,0.0 +20031,17,39,1,0.0 +20031,37,26,40,0.0 +20031,27,43.9,31,0.0 +20032,57,19.5,24,0.0 +20032,71,21.5,45,0.0 +20032,15,15.5,20,0.0 +20032,73,15,33,0.0 +20032,76,18,11,0.0 +20032,4,22,7,0.0 +20032,43,46,35,0.0 +20032,8,40,47,0.0 +20032,47,9.5,49,0.0 +20032,67,14,31,0.0 +20032,48,12.75,38,0.0 +20032,2,19,30,0.0 +20032,74,10,4,0.0 +20032,5,21.35,36,0.0 +20032,75,7.75,48,0.0 +20032,62,49.3,42,0.0 +20032,12,38,49,0.0 +20032,40,18.4,13,0.0 +20032,64,33.25,30,0.0 +20032,68,12.5,3,0.0 +20032,49,20,31,0.0 +20032,41,9.65,7,0.0 +20032,25,14,23,0.0 +20032,32,32,40,0.0 +20032,50,16.25,34,0.0 +20032,58,13.25,47,0.0 +20032,27,43.9,5,0.0 +20032,29,123.79,13,0.0 +20032,63,43.9,11,0.0 +20032,39,18,7,0.0 +20032,21,10,15,0.0 +20032,70,15,24,0.0 +20032,10,31,3,0.0 +20032,35,18,35,0.0 +20032,11,21,7,0.0 +20032,46,12,9,0.0 +20032,7,30,39,0.0 +20032,18,62.5,35,0.0 +20032,60,34,1,0.0 +20032,24,4.5,42,0.0 +20032,20,81,7,0.0 +20032,9,97,4,0.0 +20032,51,53,9,0.0 +20032,34,14,40,0.0 +20032,37,26,16,0.0 +20032,3,10,40,0.0 +20032,55,24,28,0.0 +20032,54,7.45,23,0.0 +20032,17,39,48,0.0 +20032,77,13,5,0.0 +20032,56,38,21,0.0 +20032,31,12.5,36,0.0 +20032,59,55,22,0.0 +20032,28,45.6,45,0.0 +20032,52,7,39,0.0 +20032,53,32.8,24,0.0 +20032,61,28.5,8,0.0 +20032,72,34.8,44,0.0 +20032,23,9,8,0.0 +20032,16,17.45,27,0.0 +20032,42,14,13,0.0 +20032,6,25,42,0.0 +20032,44,19.45,17,0.0 +20032,45,9.5,26,0.0 +20032,22,21,50,0.0 +20032,1,18,41,0.0 +20032,26,31.23,13,0.0 +20032,13,6,11,0.0 +20032,30,25.89,18,0.0 +20032,66,17,22,0.0 +20032,19,9.2,28,0.0 +20032,65,21.05,40,0.0 +20033,68,12.5,40,0.0 +20033,2,19,25,0.0 +20033,1,18,8,0.0 +20033,54,7.45,17,0.0 +20033,36,19,28,0.0 +20033,72,34.8,16,0.0 +20033,42,14,32,0.0 +20033,41,9.65,25,0.0 +20033,65,21.05,25,0.0 +20033,31,12.5,34,0.0 +20033,57,19.5,12,0.0 +20033,8,40,26,0.0 +20033,6,25,48,0.0 +20033,34,14,40,0.0 +20033,44,19.45,27,0.0 +20033,63,43.9,35,0.0 +20033,19,9.2,17,0.0 +20033,64,33.25,48,0.0 +20033,35,18,47,0.0 +20033,52,7,43,0.0 +20033,76,18,49,0.0 +20033,61,28.5,49,0.0 +20033,15,15.5,28,0.0 +20033,12,38,22,0.0 +20033,77,13,36,0.0 +20033,73,15,7,0.0 +20033,48,12.75,30,0.0 +20033,5,21.35,43,0.0 +20033,26,31.23,19,0.0 +20033,16,17.45,48,0.0 +20033,43,46,28,0.0 +20033,59,55,4,0.0 +20033,28,45.6,42,0.0 +20033,46,12,48,0.0 +20034,50,16.25,29,0.0 +20034,11,21,9,0.0 +20034,48,12.75,33,0.0 +20034,47,9.5,7,0.0 +20034,3,10,42,0.0 +20034,25,14,39,0.0 +20034,37,26,4,0.0 +20034,51,53,20,0.0 +20034,31,12.5,34,0.0 +20034,72,34.8,33,0.0 +20034,39,18,21,0.0 +20034,10,31,4,0.0 +20034,36,19,3,0.0 +20034,21,10,6,0.0 +20034,60,34,36,0.0 +20034,40,18.4,50,0.0 +20034,44,19.45,23,0.0 +20034,59,55,16,0.0 +20034,34,14,21,0.0 +20034,74,10,4,0.0 +20034,58,13.25,3,0.0 +20034,62,49.3,38,0.0 +20034,2,19,23,0.0 +20034,45,9.5,6,0.0 +20034,12,38,47,0.0 +20034,9,97,40,0.0 +20034,69,36,14,0.0 +20034,66,17,31,0.0 +20034,65,21.05,24,0.0 +20034,17,39,40,0.0 +20034,6,25,14,0.0 +20034,16,17.45,10,0.0 +20034,43,46,44,0.0 +20034,26,31.23,36,0.0 +20034,15,15.5,38,0.0 +20034,22,21,45,0.0 +20034,64,33.25,48,0.0 +20034,63,43.9,50,0.0 +20034,54,7.45,26,0.0 +20034,68,12.5,48,0.0 +20034,30,25.89,50,0.0 +20034,27,43.9,3,0.0 +20034,18,62.5,11,0.0 +20034,4,22,11,0.0 +20034,73,15,30,0.0 +20034,67,14,36,0.0 +20034,76,18,38,0.0 +20034,56,38,30,0.0 +20034,38,263.5,19,0.0 +20034,14,23.25,18,0.0 +20034,24,4.5,24,0.0 +20034,1,18,6,0.0 +20035,22,21,28,0.0 +20035,34,14,23,0.0 +20035,25,14,23,0.0 +20035,52,7,24,0.0 +20035,31,12.5,36,0.0 +20035,72,34.8,30,0.0 +20035,10,31,15,0.0 +20035,15,15.5,23,0.0 +20035,19,9.2,1,0.0 +20035,33,2.5,50,0.0 +20035,67,14,6,0.0 +20035,45,9.5,8,0.0 +20035,69,36,47,0.0 +20035,13,6,30,0.0 +20035,77,13,2,0.0 +20035,30,25.89,48,0.0 +20035,71,21.5,31,0.0 +20035,6,25,3,0.0 +20035,29,123.79,17,0.0 +20035,7,30,24,0.0 +20035,1,18,45,0.0 +20035,65,21.05,24,0.0 +20035,14,23.25,23,0.0 +20035,64,33.25,46,0.0 +20035,28,45.6,48,0.0 +20035,16,17.45,43,0.0 +20035,49,20,36,0.0 +20035,3,10,23,0.0 +20035,12,38,13,0.0 +20035,40,18.4,31,0.0 +20035,23,9,7,0.0 +20035,63,43.9,23,0.0 +20035,9,97,14,0.0 +20035,47,9.5,33,0.0 +20035,57,19.5,4,0.0 +20035,39,18,39,0.0 +20035,46,12,29,0.0 +20035,41,9.65,16,0.0 +20035,11,21,32,0.0 +20035,36,19,48,0.0 +20035,20,81,31,0.0 +20035,74,10,9,0.0 +20035,4,22,12,0.0 +20035,51,53,7,0.0 +20035,24,4.5,2,0.0 +20035,75,7.75,26,0.0 +20036,35,18,32,0.0 +20036,21,10,6,0.0 +20036,47,9.5,1,0.0 +20036,28,45.6,44,0.0 +20036,63,43.9,27,0.0 +20036,52,7,2,0.0 +20036,9,97,37,0.0 +20036,55,24,28,0.0 +20036,23,9,25,0.0 +20036,16,17.45,39,0.0 +20036,68,12.5,45,0.0 +20036,59,55,33,0.0 +20036,17,39,31,0.0 +20036,34,14,18,0.0 +20036,8,40,41,0.0 +20036,64,33.25,1,0.0 +20036,66,17,27,0.0 +20036,65,21.05,24,0.0 +20036,67,14,41,0.0 +20036,51,53,46,0.0 +20036,10,31,43,0.0 +20036,12,38,35,0.0 +20036,33,2.5,42,0.0 +20036,39,18,39,0.0 +20036,57,19.5,20,0.0 +20036,62,49.3,11,0.0 +20037,69,36,11,0.0 +20037,47,9.5,3,0.0 +20037,17,39,3,0.0 +20037,31,12.5,26,0.0 +20037,62,49.3,1,0.0 +20037,42,14,6,0.0 +20037,56,38,7,0.0 +20037,15,15.5,20,0.0 +20037,1,18,18,0.0 +20037,66,17,35,0.0 +20037,32,32,47,0.0 +20037,60,34,18,0.0 +20037,72,34.8,31,0.0 +20037,39,18,5,0.0 +20037,71,21.5,17,0.0 +20037,68,12.5,41,0.0 +20037,61,28.5,12,0.0 +20037,27,43.9,22,0.0 +20037,14,23.25,30,0.0 +20037,54,7.45,32,0.0 +20037,45,9.5,2,0.0 +20037,22,21,42,0.0 +20037,5,21.35,50,0.0 +20037,53,32.8,41,0.0 +20037,73,15,45,0.0 +20037,34,14,2,0.0 +20037,30,25.89,21,0.0 +20037,26,31.23,39,0.0 +20037,49,20,11,0.0 +20037,29,123.79,43,0.0 +20037,46,12,22,0.0 +20037,10,31,48,0.0 +20037,33,2.5,49,0.0 +20037,28,45.6,29,0.0 +20037,9,97,43,0.0 +20037,70,15,48,0.0 +20037,64,33.25,45,0.0 +20037,51,53,43,0.0 +20037,65,21.05,25,0.0 +20037,18,62.5,42,0.0 +20037,52,7,34,0.0 +20037,40,18.4,11,0.0 +20037,63,43.9,39,0.0 +20037,77,13,14,0.0 +20037,38,263.5,25,0.0 +20037,75,7.75,46,0.0 +20037,21,10,46,0.0 +20037,3,10,45,0.0 +20037,59,55,37,0.0 +20037,36,19,8,0.0 +20037,7,30,21,0.0 +20037,48,12.75,10,0.0 +20037,67,14,1,0.0 +20037,41,9.65,25,0.0 +20037,24,4.5,13,0.0 +20037,50,16.25,28,0.0 +20037,6,25,25,0.0 +20037,16,17.45,21,0.0 +20037,58,13.25,44,0.0 +20037,2,19,42,0.0 +20037,23,9,18,0.0 +20037,19,9.2,47,0.0 +20037,8,40,34,0.0 +20037,11,21,26,0.0 +20037,76,18,12,0.0 +20038,37,26,25,0.0 +20038,26,31.23,29,0.0 +20038,58,13.25,27,0.0 +20038,2,19,38,0.0 +20038,31,12.5,8,0.0 +20038,17,39,24,0.0 +20038,4,22,6,0.0 +20038,61,28.5,7,0.0 +20038,54,7.45,50,0.0 +20038,5,21.35,13,0.0 +20038,20,81,7,0.0 +20038,38,263.5,24,0.0 +20038,65,21.05,50,0.0 +20038,7,30,25,0.0 +20038,62,49.3,10,0.0 +20038,32,32,29,0.0 +20038,60,34,40,0.0 +20038,74,10,26,0.0 +20038,44,19.45,36,0.0 +20038,71,21.5,17,0.0 +20038,6,25,36,0.0 +20038,55,24,17,0.0 +20038,69,36,32,0.0 +20038,30,25.89,31,0.0 +20038,24,4.5,4,0.0 +20038,51,53,10,0.0 +20038,33,2.5,39,0.0 +20038,27,43.9,15,0.0 +20038,59,55,3,0.0 +20038,73,15,19,0.0 +20038,52,7,39,0.0 +20038,15,15.5,49,0.0 +20038,42,14,15,0.0 +20038,57,19.5,24,0.0 +20038,70,15,36,0.0 +20038,48,12.75,46,0.0 +20038,49,20,27,0.0 +20038,34,14,5,0.0 +20038,47,9.5,46,0.0 +20038,9,97,9,0.0 +20038,64,33.25,39,0.0 +20038,19,9.2,5,0.0 +20038,29,123.79,23,0.0 +20038,21,10,15,0.0 +20038,25,14,42,0.0 +20038,40,18.4,50,0.0 +20038,75,7.75,17,0.0 +20038,13,6,38,0.0 +20038,68,12.5,2,0.0 +20038,46,12,45,0.0 +20038,56,38,50,0.0 +20038,67,14,26,0.0 +20038,11,21,34,0.0 +20038,22,21,18,0.0 +20038,35,18,47,0.0 +20038,43,46,32,0.0 +20038,8,40,1,0.0 +20038,1,18,8,0.0 +20038,50,16.25,33,0.0 +20038,12,38,5,0.0 +20038,39,18,21,0.0 +20038,66,17,30,0.0 +20038,18,62.5,46,0.0 +20038,45,9.5,4,0.0 +20038,10,31,34,0.0 +20038,41,9.65,30,0.0 +20038,16,17.45,5,0.0 +20038,63,43.9,15,0.0 +20038,14,23.25,40,0.0 +20038,76,18,48,0.0 +20038,23,9,31,0.0 +20038,3,10,7,0.0 +20038,28,45.6,29,0.0 +20039,46,12,17,0.0 +20039,59,55,26,0.0 +20039,3,10,42,0.0 +20040,5,21.35,20,0.0 +20040,29,123.79,38,0.0 +20040,16,17.45,38,0.0 +20040,10,31,8,0.0 +20040,15,15.5,45,0.0 +20040,20,81,8,0.0 +20040,21,10,36,0.0 +20041,25,14,39,0.0 +20041,50,16.25,41,0.0 +20041,23,9,32,0.0 +20041,61,28.5,41,0.0 +20041,47,9.5,25,0.0 +20041,66,17,43,0.0 +20041,17,39,48,0.0 +20041,67,14,30,0.0 +20041,49,20,17,0.0 +20041,8,40,41,0.0 +20041,1,18,17,0.0 +20041,11,21,3,0.0 +20041,42,14,42,0.0 +20041,14,23.25,30,0.0 +20041,20,81,28,0.0 +20041,29,123.79,15,0.0 +20041,65,21.05,35,0.0 +20041,62,49.3,43,0.0 +20041,22,21,15,0.0 +20042,14,23.25,28,0.0 +20042,56,38,27,0.0 +20042,45,9.5,12,0.0 +20042,10,31,46,0.0 +20042,19,9.2,31,0.0 +20042,9,97,28,0.0 +20042,51,53,19,0.0 +20042,76,18,24,0.0 +20042,55,24,40,0.0 +20042,75,7.75,43,0.0 +20042,20,81,46,0.0 +20042,29,123.79,50,0.0 +20042,17,39,26,0.0 +20042,30,25.89,30,0.0 +20042,62,49.3,48,0.0 +20042,40,18.4,47,0.0 +20042,71,21.5,9,0.0 +20042,77,13,2,0.0 +20042,47,9.5,48,0.0 +20042,25,14,4,0.0 +20042,2,19,21,0.0 +20042,42,14,12,0.0 +20042,16,17.45,47,0.0 +20042,37,26,32,0.0 +20042,46,12,7,0.0 +20042,18,62.5,15,0.0 +20042,38,263.5,49,0.0 +20042,66,17,29,0.0 +20042,6,25,49,0.0 +20042,24,4.5,11,0.0 +20042,48,12.75,43,0.0 +20042,74,10,38,0.0 +20042,63,43.9,5,0.0 +20042,31,12.5,29,0.0 +20042,41,9.65,14,0.0 +20042,65,21.05,1,0.0 +20042,58,13.25,43,0.0 +20043,16,17.45,32,0.0 +20043,54,7.45,47,0.0 +20043,67,14,48,0.0 +20043,64,33.25,18,0.0 +20043,53,32.8,3,0.0 +20043,17,39,47,0.0 +20043,55,24,43,0.0 +20043,26,31.23,50,0.0 +20043,36,19,47,0.0 +20043,76,18,5,0.0 +20043,69,36,18,0.0 +20043,74,10,14,0.0 +20043,56,38,42,0.0 +20043,4,22,15,0.0 +20043,58,13.25,21,0.0 +20043,62,49.3,38,0.0 +20043,7,30,46,0.0 +20043,34,14,48,0.0 +20043,44,19.45,19,0.0 +20043,8,40,35,0.0 +20043,52,7,36,0.0 +20043,47,9.5,45,0.0 +20043,19,9.2,16,0.0 +20043,9,97,41,0.0 +20043,15,15.5,39,0.0 +20043,14,23.25,27,0.0 +20043,3,10,33,0.0 +20043,21,10,6,0.0 +20043,24,4.5,16,0.0 +20043,40,18.4,35,0.0 +20043,35,18,22,0.0 +20043,75,7.75,32,0.0 +20043,60,34,4,0.0 +20043,12,38,16,0.0 +20043,77,13,48,0.0 +20043,31,12.5,35,0.0 +20043,43,46,19,0.0 +20043,70,15,49,0.0 +20043,63,43.9,46,0.0 +20043,48,12.75,10,0.0 +20043,25,14,47,0.0 +20043,46,12,5,0.0 +20043,68,12.5,3,0.0 +20043,18,62.5,4,0.0 +20043,41,9.65,12,0.0 +20043,57,19.5,23,0.0 +20043,65,21.05,29,0.0 +20043,23,9,26,0.0 +20043,37,26,6,0.0 +20043,61,28.5,41,0.0 +20043,45,9.5,43,0.0 +20043,49,20,15,0.0 +20043,39,18,49,0.0 +20043,10,31,47,0.0 +20043,38,263.5,33,0.0 +20043,20,81,16,0.0 +20043,32,32,24,0.0 +20043,28,45.6,48,0.0 +20043,71,21.5,48,0.0 +20043,59,55,50,0.0 +20043,30,25.89,37,0.0 +20043,72,34.8,18,0.0 +20044,22,21,38,0.0 +20044,41,9.65,4,0.0 +20044,69,36,44,0.0 +20044,39,18,35,0.0 +20044,17,39,1,0.0 +20044,2,19,1,0.0 +20044,24,4.5,35,0.0 +20044,49,20,28,0.0 +20044,7,30,36,0.0 +20044,10,31,11,0.0 +20044,57,19.5,24,0.0 +20044,54,7.45,32,0.0 +20044,33,2.5,27,0.0 +20044,21,10,1,0.0 +20044,37,26,10,0.0 +20044,60,34,32,0.0 +20044,36,19,12,0.0 +20044,23,9,49,0.0 +20044,65,21.05,2,0.0 +20044,62,49.3,11,0.0 +20044,63,43.9,10,0.0 +20044,73,15,41,0.0 +20044,70,15,14,0.0 +20044,50,16.25,13,0.0 +20044,28,45.6,2,0.0 +20044,77,13,25,0.0 +20044,6,25,18,0.0 +20044,51,53,27,0.0 +20044,27,43.9,34,0.0 +20044,66,17,12,0.0 +20044,25,14,28,0.0 +20044,3,10,50,0.0 +20044,45,9.5,48,0.0 +20044,16,17.45,1,0.0 +20044,44,19.45,26,0.0 +20044,5,21.35,21,0.0 +20044,47,9.5,35,0.0 +20044,40,18.4,34,0.0 +20044,31,12.5,44,0.0 +20044,59,55,13,0.0 +20044,26,31.23,28,0.0 +20044,35,18,24,0.0 +20044,72,34.8,14,0.0 +20044,42,14,45,0.0 +20044,74,10,1,0.0 +20044,53,32.8,27,0.0 +20044,75,7.75,40,0.0 +20044,56,38,19,0.0 +20044,14,23.25,41,0.0 +20044,61,28.5,29,0.0 +20044,1,18,22,0.0 +20044,67,14,35,0.0 +20044,68,12.5,34,0.0 +20044,29,123.79,30,0.0 +20044,43,46,49,0.0 +20044,13,6,1,0.0 +20044,18,62.5,19,0.0 +20044,12,38,27,0.0 +20044,9,97,9,0.0 +20044,30,25.89,37,0.0 +20044,8,40,2,0.0 +20044,55,24,27,0.0 +20044,58,13.25,43,0.0 +20044,11,21,11,0.0 +20044,64,33.25,18,0.0 +20044,76,18,44,0.0 +20044,46,12,35,0.0 +20044,4,22,7,0.0 +20044,52,7,18,0.0 +20044,20,81,45,0.0 +20045,39,18,18,0.0 +20045,30,25.89,10,0.0 +20045,22,21,47,0.0 +20045,40,18.4,16,0.0 +20045,77,13,41,0.0 +20045,10,31,23,0.0 +20045,2,19,50,0.0 +20045,18,62.5,32,0.0 +20045,50,16.25,29,0.0 +20045,36,19,14,0.0 +20045,55,24,36,0.0 +20045,6,25,2,0.0 +20045,20,81,12,0.0 +20045,8,40,25,0.0 +20045,71,21.5,3,0.0 +20045,11,21,44,0.0 +20045,73,15,42,0.0 +20045,62,49.3,19,0.0 +20045,35,18,16,0.0 +20045,26,31.23,3,0.0 +20045,53,32.8,42,0.0 +20045,9,97,3,0.0 +20045,24,4.5,1,0.0 +20045,65,21.05,22,0.0 +20045,5,21.35,5,0.0 +20045,21,10,40,0.0 +20045,69,36,28,0.0 +20045,29,123.79,15,0.0 +20045,13,6,8,0.0 +20045,23,9,24,0.0 +20045,63,43.9,35,0.0 +20045,75,7.75,23,0.0 +20045,38,263.5,45,0.0 +20045,44,19.45,9,0.0 +20045,74,10,49,0.0 +20045,52,7,37,0.0 +20045,51,53,14,0.0 +20045,25,14,28,0.0 +20045,32,32,50,0.0 +20045,31,12.5,13,0.0 +20045,7,30,10,0.0 +20045,61,28.5,36,0.0 +20045,17,39,17,0.0 +20045,4,22,3,0.0 +20045,3,10,17,0.0 +20045,72,34.8,46,0.0 +20045,58,13.25,18,0.0 +20045,16,17.45,31,0.0 +20045,28,45.6,3,0.0 +20045,34,14,25,0.0 +20045,60,34,12,0.0 +20045,76,18,22,0.0 +20045,12,38,25,0.0 +20045,45,9.5,35,0.0 +20045,57,19.5,16,0.0 +20045,15,15.5,23,0.0 +20045,27,43.9,13,0.0 +20045,33,2.5,37,0.0 +20045,48,12.75,16,0.0 +20045,49,20,22,0.0 +20045,46,12,24,0.0 +20045,42,14,25,0.0 +20045,56,38,35,0.0 +20045,68,12.5,45,0.0 +20045,67,14,37,0.0 +20046,40,18.4,33,0.0 +20046,68,12.5,44,0.0 +20046,59,55,2,0.0 +20046,7,30,13,0.0 +20046,26,31.23,41,0.0 +20046,19,9.2,44,0.0 +20046,52,7,18,0.0 +20046,65,21.05,21,0.0 +20046,5,21.35,42,0.0 +20046,50,16.25,9,0.0 +20046,66,17,12,0.0 +20046,14,23.25,37,0.0 +20046,8,40,5,0.0 +20046,23,9,4,0.0 +20046,25,14,3,0.0 +20046,67,14,9,0.0 +20046,33,2.5,9,0.0 +20046,72,34.8,15,0.0 +20046,75,7.75,7,0.0 +20046,38,263.5,42,0.0 +20046,24,4.5,11,0.0 +20046,4,22,2,0.0 +20046,34,14,32,0.0 +20046,37,26,13,0.0 +20046,18,62.5,25,0.0 +20046,60,34,15,0.0 +20046,46,12,39,0.0 +20046,32,32,6,0.0 +20046,56,38,34,0.0 +20046,10,31,47,0.0 +20046,42,14,37,0.0 +20046,57,19.5,16,0.0 +20046,44,19.45,8,0.0 +20046,12,38,19,0.0 +20046,36,19,8,0.0 +20046,53,32.8,36,0.0 +20046,74,10,19,0.0 +20046,55,24,50,0.0 +20046,49,20,28,0.0 +20046,21,10,18,0.0 +20046,48,12.75,6,0.0 +20046,15,15.5,9,0.0 +20046,47,9.5,2,0.0 +20046,28,45.6,18,0.0 +20046,63,43.9,9,0.0 +20046,41,9.65,38,0.0 +20046,71,21.5,14,0.0 +20046,13,6,3,0.0 +20046,20,81,12,0.0 +20046,9,97,41,0.0 +20046,64,33.25,45,0.0 +20046,6,25,9,0.0 +20046,62,49.3,46,0.0 +20046,2,19,50,0.0 +20046,27,43.9,32,0.0 +20046,45,9.5,8,0.0 +20046,31,12.5,8,0.0 +20046,73,15,45,0.0 +20046,58,13.25,13,0.0 +20046,77,13,16,0.0 +20046,54,7.45,7,0.0 +20046,30,25.89,41,0.0 +20046,22,21,24,0.0 +20046,16,17.45,45,0.0 +20046,1,18,16,0.0 +20046,70,15,35,0.0 +20046,35,18,13,0.0 +20046,39,18,3,0.0 +20046,29,123.79,8,0.0 +20046,61,28.5,30,0.0 +20047,71,21.5,43,0.0 +20047,72,34.8,20,0.0 +20048,52,7,6,0.0 +20048,2,19,17,0.0 +20048,50,16.25,31,0.0 +20048,40,18.4,1,0.0 +20048,44,19.45,17,0.0 +20048,59,55,44,0.0 +20048,72,34.8,43,0.0 +20048,12,38,36,0.0 +20048,46,12,40,0.0 +20048,77,13,17,0.0 +20048,5,21.35,22,0.0 +20048,27,43.9,45,0.0 +20048,9,97,15,0.0 +20048,18,62.5,19,0.0 +20048,22,21,38,0.0 +20048,71,21.5,26,0.0 +20048,39,18,46,0.0 +20048,45,9.5,17,0.0 +20048,58,13.25,23,0.0 +20048,65,21.05,23,0.0 +20048,14,23.25,7,0.0 +20048,63,43.9,19,0.0 +20048,13,6,42,0.0 +20048,29,123.79,42,0.0 +20048,7,30,39,0.0 +20049,22,21,4,0.0 +20049,44,19.45,18,0.0 +20049,48,12.75,50,0.0 +20049,35,18,48,0.0 +20049,1,18,26,0.0 +20049,72,34.8,37,0.0 +20049,50,16.25,9,0.0 +20049,45,9.5,21,0.0 +20049,38,263.5,39,0.0 +20049,56,38,31,0.0 +20049,31,12.5,14,0.0 +20049,32,32,29,0.0 +20049,26,31.23,35,0.0 +20049,3,10,7,0.0 +20049,52,7,41,0.0 +20049,11,21,28,0.0 +20049,30,25.89,8,0.0 +20049,7,30,31,0.0 +20049,76,18,21,0.0 +20049,5,21.35,22,0.0 +20049,47,9.5,49,0.0 +20049,12,38,38,0.0 +20049,10,31,1,0.0 +20049,19,9.2,6,0.0 +20049,64,33.25,33,0.0 +20049,53,32.8,7,0.0 +20049,65,21.05,5,0.0 +20049,24,4.5,4,0.0 +20049,71,21.5,11,0.0 +20049,43,46,7,0.0 +20049,28,45.6,39,0.0 +20049,41,9.65,4,0.0 +20049,73,15,39,0.0 +20049,74,10,2,0.0 +20049,75,7.75,38,0.0 +20049,23,9,9,0.0 +20049,58,13.25,41,0.0 +20049,60,34,42,0.0 +20049,4,22,24,0.0 +20049,42,14,10,0.0 +20049,51,53,9,0.0 +20049,54,7.45,14,0.0 +20049,57,19.5,45,0.0 +20049,33,2.5,9,0.0 +20049,14,23.25,4,0.0 +20049,59,55,49,0.0 +20049,68,12.5,3,0.0 +20049,18,62.5,3,0.0 +20049,61,28.5,21,0.0 +20049,25,14,24,0.0 +20049,67,14,8,0.0 +20049,21,10,46,0.0 +20049,63,43.9,4,0.0 +20049,77,13,13,0.0 +20049,36,19,2,0.0 +20049,49,20,7,0.0 +20049,69,36,49,0.0 +20049,29,123.79,50,0.0 +20049,20,81,24,0.0 +20049,39,18,30,0.0 +20049,40,18.4,40,0.0 +20049,15,15.5,34,0.0 +20049,37,26,47,0.0 +20050,64,33.25,41,0.0 +20050,65,21.05,42,0.0 +20050,41,9.65,50,0.0 +20050,67,14,26,0.0 +20050,24,4.5,5,0.0 +20050,4,22,43,0.0 +20050,40,18.4,23,0.0 +20050,44,19.45,46,0.0 +20050,70,15,16,0.0 +20050,33,2.5,13,0.0 +20050,16,17.45,50,0.0 +20050,76,18,11,0.0 +20050,9,97,9,0.0 +20050,32,32,47,0.0 +20050,7,30,47,0.0 +20050,60,34,9,0.0 +20050,37,26,41,0.0 +20050,74,10,6,0.0 +20050,20,81,34,0.0 +20050,52,7,41,0.0 +20050,53,32.8,45,0.0 +20050,48,12.75,28,0.0 +20050,73,15,35,0.0 +20050,1,18,27,0.0 +20050,71,21.5,19,0.0 +20050,49,20,21,0.0 +20050,59,55,49,0.0 +20050,39,18,31,0.0 +20050,55,24,15,0.0 +20050,8,40,6,0.0 +20050,36,19,9,0.0 +20050,29,123.79,21,0.0 +20050,46,12,21,0.0 +20050,19,9.2,3,0.0 +20050,6,25,20,0.0 +20050,22,21,40,0.0 +20050,75,7.75,45,0.0 +20050,42,14,28,0.0 +20051,66,17,50,0.0 +20051,13,6,8,0.0 +20051,53,32.8,30,0.0 +20051,16,17.45,24,0.0 +20051,35,18,24,0.0 +20051,38,263.5,19,0.0 +20051,58,13.25,19,0.0 +20051,8,40,10,0.0 +20051,39,18,25,0.0 +20051,15,15.5,34,0.0 +20051,70,15,35,0.0 +20051,2,19,14,0.0 +20051,27,43.9,1,0.0 +20051,59,55,39,0.0 +20051,21,10,14,0.0 +20051,26,31.23,44,0.0 +20051,47,9.5,39,0.0 +20051,29,123.79,42,0.0 +20051,1,18,41,0.0 +20051,43,46,5,0.0 +20051,72,34.8,41,0.0 +20051,32,32,31,0.0 +20051,12,38,3,0.0 +20051,45,9.5,34,0.0 +20051,74,10,14,0.0 +20051,73,15,22,0.0 +20051,7,30,27,0.0 +20051,46,12,18,0.0 +20051,11,21,20,0.0 +20051,25,14,2,0.0 +20051,30,25.89,48,0.0 +20051,44,19.45,31,0.0 +20051,63,43.9,34,0.0 +20051,48,12.75,42,0.0 +20051,68,12.5,19,0.0 +20051,76,18,6,0.0 +20051,14,23.25,23,0.0 +20051,37,26,15,0.0 +20051,77,13,36,0.0 +20051,22,21,39,0.0 +20051,67,14,21,0.0 +20051,33,2.5,20,0.0 +20051,10,31,5,0.0 +20051,36,19,27,0.0 +20051,9,97,21,0.0 +20051,41,9.65,39,0.0 +20051,50,16.25,16,0.0 +20051,64,33.25,33,0.0 +20051,5,21.35,44,0.0 +20051,3,10,13,0.0 +20051,19,9.2,40,0.0 +20051,20,81,37,0.0 +20051,34,14,10,0.0 +20051,71,21.5,9,0.0 +20051,61,28.5,33,0.0 +20051,4,22,9,0.0 +20052,49,20,27,0.0 +20052,9,97,21,0.0 +20052,39,18,43,0.0 +20052,36,19,10,0.0 +20052,64,33.25,17,0.0 +20052,51,53,18,0.0 +20052,24,4.5,13,0.0 +20052,44,19.45,45,0.0 +20052,11,21,17,0.0 +20052,59,55,13,0.0 +20052,1,18,18,0.0 +20052,14,23.25,49,0.0 +20052,45,9.5,36,0.0 +20052,37,26,50,0.0 +20052,66,17,28,0.0 +20052,31,12.5,8,0.0 +20052,32,32,14,0.0 +20052,75,7.75,31,0.0 +20052,29,123.79,10,0.0 +20052,55,24,5,0.0 +20052,19,9.2,21,0.0 +20052,53,32.8,10,0.0 +20052,20,81,31,0.0 +20052,12,38,24,0.0 +20052,18,62.5,19,0.0 +20052,15,15.5,4,0.0 +20052,65,21.05,23,0.0 +20052,30,25.89,22,0.0 +20052,23,9,24,0.0 +20052,67,14,32,0.0 +20052,16,17.45,15,0.0 +20052,61,28.5,14,0.0 +20052,35,18,21,0.0 +20052,52,7,35,0.0 +20052,60,34,28,0.0 +20052,77,13,4,0.0 +20052,21,10,30,0.0 +20052,7,30,7,0.0 +20052,54,7.45,49,0.0 +20052,57,19.5,22,0.0 +20052,42,14,18,0.0 +20052,22,21,45,0.0 +20052,69,36,32,0.0 +20052,25,14,43,0.0 +20052,27,43.9,36,0.0 +20052,2,19,38,0.0 +20052,8,40,11,0.0 +20052,38,263.5,26,0.0 +20052,3,10,17,0.0 +20052,68,12.5,43,0.0 +20052,56,38,22,0.0 +20052,76,18,18,0.0 +20052,50,16.25,24,0.0 +20052,10,31,29,0.0 +20052,48,12.75,37,0.0 +20052,13,6,16,0.0 +20052,17,39,44,0.0 +20052,33,2.5,3,0.0 +20052,62,49.3,20,0.0 +20052,4,22,28,0.0 +20052,34,14,43,0.0 +20052,46,12,31,0.0 +20052,63,43.9,37,0.0 +20052,71,21.5,45,0.0 +20052,47,9.5,3,0.0 +20052,5,21.35,7,0.0 +20052,74,10,32,0.0 +20052,70,15,44,0.0 +20052,58,13.25,30,0.0 +20052,41,9.65,10,0.0 +20052,40,18.4,25,0.0 +20053,40,18.4,28,0.0 +20053,63,43.9,23,0.0 +20053,46,12,31,0.0 +20053,55,24,43,0.0 +20053,28,45.6,3,0.0 +20053,8,40,32,0.0 +20053,26,31.23,34,0.0 +20053,75,7.75,15,0.0 +20053,5,21.35,43,0.0 +20053,76,18,22,0.0 +20053,27,43.9,32,0.0 +20053,20,81,8,0.0 +20053,49,20,38,0.0 +20053,69,36,27,0.0 +20053,74,10,19,0.0 +20053,2,19,23,0.0 +20053,60,34,17,0.0 +20053,35,18,1,0.0 +20053,72,34.8,44,0.0 +20053,56,38,46,0.0 +20053,12,38,28,0.0 +20053,33,2.5,40,0.0 +20053,47,9.5,27,0.0 +20053,45,9.5,31,0.0 +20053,66,17,48,0.0 +20053,54,7.45,23,0.0 +20053,41,9.65,43,0.0 +20053,34,14,33,0.0 +20053,37,26,23,0.0 +20053,73,15,17,0.0 +20053,15,15.5,12,0.0 +20053,25,14,26,0.0 +20053,7,30,44,0.0 +20053,4,22,12,0.0 +20054,62,49.3,50,0.0 +20054,77,13,8,0.0 +20054,50,16.25,33,0.0 +20054,70,15,2,0.0 +20054,5,21.35,27,0.0 +20054,32,32,25,0.0 +20054,61,28.5,15,0.0 +20054,12,38,3,0.0 +20054,58,13.25,28,0.0 +20054,51,53,29,0.0 +20054,49,20,50,0.0 +20054,29,123.79,37,0.0 +20054,76,18,12,0.0 +20054,69,36,44,0.0 +20054,54,7.45,39,0.0 +20054,55,24,17,0.0 +20054,10,31,8,0.0 +20054,57,19.5,29,0.0 +20054,33,2.5,28,0.0 +20054,14,23.25,30,0.0 +20054,36,19,23,0.0 +20054,19,9.2,35,0.0 +20054,37,26,46,0.0 +20054,75,7.75,50,0.0 +20054,1,18,34,0.0 +20054,64,33.25,30,0.0 +20054,47,9.5,13,0.0 +20054,59,55,11,0.0 +20054,60,34,8,0.0 +20054,35,18,20,0.0 +20054,56,38,2,0.0 +20054,42,14,31,0.0 +20054,4,22,29,0.0 +20054,16,17.45,16,0.0 +20054,21,10,3,0.0 +20054,38,263.5,5,0.0 +20054,3,10,33,0.0 +20055,14,23.25,6,0.0 +20055,32,32,25,0.0 +20055,66,17,43,0.0 +20055,30,25.89,50,0.0 +20055,58,13.25,1,0.0 +20055,68,12.5,36,0.0 +20055,37,26,43,0.0 +20055,24,4.5,49,0.0 +20055,40,18.4,28,0.0 +20055,75,7.75,18,0.0 +20055,47,9.5,7,0.0 +20055,6,25,25,0.0 +20055,38,263.5,31,0.0 +20055,76,18,36,0.0 +20055,63,43.9,16,0.0 +20055,5,21.35,18,0.0 +20055,33,2.5,9,0.0 +20055,56,38,32,0.0 +20055,53,32.8,40,0.0 +20055,20,81,49,0.0 +20055,39,18,34,0.0 +20055,59,55,48,0.0 +20055,51,53,4,0.0 +20055,70,15,49,0.0 +20055,18,62.5,36,0.0 +20055,31,12.5,26,0.0 +20055,65,21.05,17,0.0 +20055,11,21,5,0.0 +20055,15,15.5,30,0.0 +20055,36,19,44,0.0 +20055,9,97,37,0.0 +20055,43,46,15,0.0 +20055,22,21,28,0.0 +20055,69,36,35,0.0 +20055,34,14,8,0.0 +20055,72,34.8,38,0.0 +20055,16,17.45,44,0.0 +20055,49,20,37,0.0 +20055,74,10,4,0.0 +20055,62,49.3,37,0.0 +20055,2,19,36,0.0 +20055,48,12.75,5,0.0 +20055,42,14,46,0.0 +20055,55,24,23,0.0 +20055,26,31.23,27,0.0 +20055,71,21.5,48,0.0 +20055,64,33.25,3,0.0 +20055,61,28.5,28,0.0 +20055,25,14,22,0.0 +20055,50,16.25,33,0.0 +20055,45,9.5,44,0.0 +20055,28,45.6,14,0.0 +20055,23,9,32,0.0 +20055,3,10,49,0.0 +20055,8,40,42,0.0 +20055,19,9.2,18,0.0 +20055,44,19.45,2,0.0 +20055,27,43.9,31,0.0 +20055,52,7,19,0.0 +20055,10,31,40,0.0 +20055,12,38,9,0.0 +20055,1,18,8,0.0 +20055,35,18,43,0.0 +20056,71,21.5,23,0.0 +20056,2,19,1,0.0 +20056,73,15,4,0.0 +20056,51,53,7,0.0 +20056,52,7,41,0.0 +20056,72,34.8,12,0.0 +20056,77,13,27,0.0 +20056,5,21.35,36,0.0 +20056,34,14,23,0.0 +20056,8,40,4,0.0 +20056,10,31,50,0.0 +20056,45,9.5,7,0.0 +20056,68,12.5,5,0.0 +20056,43,46,16,0.0 +20056,63,43.9,24,0.0 +20056,36,19,22,0.0 +20056,64,33.25,38,0.0 +20056,3,10,50,0.0 +20056,23,9,43,0.0 +20056,19,9.2,34,0.0 +20056,13,6,1,0.0 +20056,27,43.9,48,0.0 +20056,20,81,46,0.0 +20056,15,15.5,34,0.0 +20056,50,16.25,18,0.0 +20056,56,38,33,0.0 +20056,11,21,12,0.0 +20056,35,18,6,0.0 +20056,57,19.5,13,0.0 +20056,33,2.5,4,0.0 +20056,55,24,25,0.0 +20056,67,14,2,0.0 +20056,44,19.45,41,0.0 +20056,9,97,37,0.0 +20056,24,4.5,32,0.0 +20056,6,25,29,0.0 +20056,39,18,14,0.0 +20056,29,123.79,21,0.0 +20056,38,263.5,34,0.0 +20056,65,21.05,6,0.0 +20056,28,45.6,24,0.0 +20056,46,12,19,0.0 +20056,75,7.75,18,0.0 +20056,47,9.5,50,0.0 +20056,7,30,16,0.0 +20056,4,22,21,0.0 +20056,74,10,2,0.0 +20056,31,12.5,38,0.0 +20056,40,18.4,21,0.0 +20056,25,14,24,0.0 +20056,60,34,23,0.0 +20056,17,39,12,0.0 +20056,41,9.65,19,0.0 +20056,53,32.8,18,0.0 +20056,54,7.45,4,0.0 +20056,16,17.45,43,0.0 +20056,37,26,35,0.0 +20056,66,17,46,0.0 +20056,32,32,29,0.0 +20056,48,12.75,40,0.0 +20056,76,18,19,0.0 +20057,47,9.5,22,0.0 +20057,19,9.2,38,0.0 +20057,12,38,46,0.0 +20057,35,18,33,0.0 +20057,27,43.9,33,0.0 +20057,15,15.5,6,0.0 +20057,74,10,45,0.0 +20057,6,25,50,0.0 +20057,41,9.65,3,0.0 +20057,46,12,15,0.0 +20057,43,46,36,0.0 +20057,62,49.3,2,0.0 +20057,56,38,33,0.0 +20057,59,55,23,0.0 +20057,29,123.79,39,0.0 +20057,70,15,41,0.0 +20057,38,263.5,35,0.0 +20057,32,32,32,0.0 +20057,69,36,27,0.0 +20057,58,13.25,5,0.0 +20057,77,13,41,0.0 +20057,51,53,14,0.0 +20057,52,7,37,0.0 +20057,73,15,28,0.0 +20057,36,19,36,0.0 +20057,75,7.75,42,0.0 +20057,17,39,50,0.0 +20057,9,97,14,0.0 +20057,30,25.89,9,0.0 +20057,7,30,20,0.0 +20057,14,23.25,47,0.0 +20057,31,12.5,19,0.0 +20057,23,9,17,0.0 +20057,21,10,26,0.0 +20057,18,62.5,46,0.0 +20057,64,33.25,21,0.0 +20057,65,21.05,12,0.0 +20057,20,81,26,0.0 +20057,16,17.45,13,0.0 +20057,26,31.23,22,0.0 +20057,22,21,26,0.0 +20057,67,14,28,0.0 +20057,53,32.8,27,0.0 +20057,1,18,46,0.0 +20057,33,2.5,49,0.0 +20057,40,18.4,40,0.0 +20057,5,21.35,47,0.0 +20057,2,19,14,0.0 +20057,50,16.25,47,0.0 +20057,10,31,49,0.0 +20057,44,19.45,26,0.0 +20057,55,24,43,0.0 +20057,37,26,50,0.0 +20058,52,7,5,0.0 +20058,10,31,18,0.0 +20058,65,21.05,41,0.0 +20058,77,13,4,0.0 +20058,46,12,50,0.0 +20058,13,6,36,0.0 +20058,68,12.5,48,0.0 +20058,11,21,23,0.0 +20058,49,20,26,0.0 +20058,17,39,35,0.0 +20058,75,7.75,8,0.0 +20058,33,2.5,44,0.0 +20058,67,14,13,0.0 +20058,23,9,1,0.0 +20058,19,9.2,6,0.0 +20058,66,17,21,0.0 +20059,30,25.89,8,0.0 +20059,33,2.5,20,0.0 +20059,46,12,32,0.0 +20059,11,21,43,0.0 +20059,9,97,20,0.0 +20059,58,13.25,5,0.0 +20059,66,17,7,0.0 +20059,7,30,20,0.0 +20059,63,43.9,45,0.0 +20059,26,31.23,40,0.0 +20059,34,14,21,0.0 +20059,76,18,37,0.0 +20059,57,19.5,6,0.0 +20059,49,20,4,0.0 +20059,37,26,4,0.0 +20059,24,4.5,33,0.0 +20059,52,7,10,0.0 +20059,2,19,2,0.0 +20059,6,25,4,0.0 +20059,65,21.05,47,0.0 +20059,27,43.9,35,0.0 +20059,5,21.35,15,0.0 +20059,41,9.65,10,0.0 +20059,40,18.4,34,0.0 +20059,31,12.5,49,0.0 +20059,47,9.5,11,0.0 +20059,15,15.5,26,0.0 +20059,56,38,27,0.0 +20059,22,21,25,0.0 +20059,50,16.25,36,0.0 +20059,20,81,50,0.0 +20059,59,55,20,0.0 +20059,10,31,14,0.0 +20059,14,23.25,33,0.0 +20059,44,19.45,5,0.0 +20059,35,18,25,0.0 +20059,48,12.75,4,0.0 +20059,61,28.5,24,0.0 +20059,74,10,23,0.0 +20059,77,13,23,0.0 +20059,16,17.45,4,0.0 +20059,51,53,7,0.0 +20059,17,39,41,0.0 +20059,42,14,13,0.0 +20059,73,15,37,0.0 +20059,68,12.5,4,0.0 +20059,55,24,28,0.0 +20059,45,9.5,38,0.0 +20059,64,33.25,38,0.0 +20059,28,45.6,45,0.0 +20059,43,46,40,0.0 +20059,25,14,2,0.0 +20059,69,36,46,0.0 +20059,18,62.5,49,0.0 +20059,23,9,49,0.0 +20059,60,34,16,0.0 +20059,29,123.79,32,0.0 +20059,36,19,5,0.0 +20059,39,18,4,0.0 +20059,19,9.2,34,0.0 +20059,71,21.5,10,0.0 +20059,21,10,47,0.0 +20059,32,32,17,0.0 +20059,62,49.3,14,0.0 +20059,4,22,37,0.0 +20059,53,32.8,7,0.0 +20059,75,7.75,24,0.0 +20059,70,15,3,0.0 +20059,67,14,20,0.0 +20059,1,18,22,0.0 +20059,72,34.8,26,0.0 +20059,3,10,47,0.0 +20059,8,40,1,0.0 +20060,26,31.23,29,0.0 +20060,36,19,6,0.0 +20060,12,38,9,0.0 +20060,66,17,18,0.0 +20060,70,15,2,0.0 +20060,44,19.45,16,0.0 +20060,25,14,4,0.0 +20060,59,55,9,0.0 +20060,69,36,35,0.0 +20060,71,21.5,20,0.0 +20060,20,81,32,0.0 +20060,42,14,29,0.0 +20060,77,13,15,0.0 +20060,21,10,42,0.0 +20060,62,49.3,42,0.0 +20060,35,18,13,0.0 +20060,32,32,22,0.0 +20060,39,18,43,0.0 +20060,72,34.8,45,0.0 +20060,6,25,18,0.0 +20060,15,15.5,33,0.0 +20060,23,9,1,0.0 +20060,27,43.9,46,0.0 +20060,30,25.89,18,0.0 +20060,49,20,29,0.0 +20060,74,10,7,0.0 +20060,63,43.9,13,0.0 +20060,67,14,41,0.0 +20060,33,2.5,12,0.0 +20060,46,12,31,0.0 +20060,24,4.5,43,0.0 +20060,13,6,12,0.0 +20060,16,17.45,16,0.0 +20060,38,263.5,32,0.0 +20060,28,45.6,14,0.0 +20060,11,21,28,0.0 +20060,31,12.5,32,0.0 +20060,51,53,32,0.0 +20060,68,12.5,47,0.0 +20060,1,18,33,0.0 +20060,8,40,47,0.0 +20060,57,19.5,21,0.0 +20060,64,33.25,29,0.0 +20060,54,7.45,13,0.0 +20060,50,16.25,19,0.0 +20060,22,21,42,0.0 +20060,56,38,14,0.0 +20060,55,24,45,0.0 +20060,3,10,5,0.0 +20060,73,15,32,0.0 +20060,41,9.65,12,0.0 +20060,75,7.75,27,0.0 +20060,76,18,46,0.0 +20060,60,34,19,0.0 +20060,19,9.2,28,0.0 +20060,37,26,30,0.0 +20060,9,97,14,0.0 +20060,10,31,34,0.0 +20060,34,14,13,0.0 +20060,58,13.25,19,0.0 +20060,29,123.79,6,0.0 +20060,17,39,36,0.0 +20061,70,15,16,0.0 +20061,72,34.8,34,0.0 +20061,55,24,12,0.0 +20061,54,7.45,8,0.0 +20061,35,18,50,0.0 +20061,73,15,32,0.0 +20061,21,10,49,0.0 +20061,4,22,38,0.0 +20061,33,2.5,48,0.0 +20061,3,10,39,0.0 +20061,47,9.5,5,0.0 +20061,11,21,23,0.0 +20061,23,9,46,0.0 +20061,26,31.23,10,0.0 +20061,51,53,20,0.0 +20061,63,43.9,48,0.0 +20061,77,13,21,0.0 +20061,61,28.5,2,0.0 +20061,34,14,40,0.0 +20061,29,123.79,40,0.0 +20061,16,17.45,25,0.0 +20061,65,21.05,22,0.0 +20061,20,81,34,0.0 +20061,69,36,21,0.0 +20061,48,12.75,33,0.0 +20061,62,49.3,13,0.0 +20061,14,23.25,41,0.0 +20061,8,40,10,0.0 +20061,76,18,49,0.0 +20061,68,12.5,7,0.0 +20061,64,33.25,23,0.0 +20061,22,21,27,0.0 +20061,53,32.8,27,0.0 +20061,12,38,45,0.0 +20061,75,7.75,23,0.0 +20061,1,18,29,0.0 +20061,19,9.2,40,0.0 +20061,24,4.5,16,0.0 +20061,28,45.6,37,0.0 +20061,6,25,18,0.0 +20061,30,25.89,38,0.0 +20061,7,30,22,0.0 +20061,57,19.5,11,0.0 +20061,2,19,18,0.0 +20061,18,62.5,7,0.0 +20061,40,18.4,8,0.0 +20061,27,43.9,49,0.0 +20061,13,6,3,0.0 +20061,50,16.25,26,0.0 +20061,15,15.5,33,0.0 +20061,31,12.5,17,0.0 +20061,43,46,48,0.0 +20061,32,32,31,0.0 +20061,39,18,22,0.0 +20061,66,17,41,0.0 +20061,10,31,22,0.0 +20061,5,21.35,25,0.0 +20061,36,19,10,0.0 +20061,56,38,34,0.0 +20061,17,39,41,0.0 +20061,71,21.5,45,0.0 +20061,59,55,10,0.0 +20061,37,26,29,0.0 +20061,46,12,34,0.0 +20061,38,263.5,32,0.0 +20061,49,20,46,0.0 +20061,67,14,24,0.0 +20061,74,10,37,0.0 +20062,54,7.45,18,0.0 +20062,68,12.5,18,0.0 +20062,35,18,12,0.0 +20062,24,4.5,28,0.0 +20062,57,19.5,6,0.0 +20062,13,6,33,0.0 +20062,8,40,49,0.0 +20062,28,45.6,18,0.0 +20062,53,32.8,13,0.0 +20062,51,53,38,0.0 +20062,47,9.5,20,0.0 +20062,45,9.5,44,0.0 +20062,1,18,49,0.0 +20062,50,16.25,25,0.0 +20062,46,12,14,0.0 +20062,21,10,25,0.0 +20062,12,38,29,0.0 +20062,33,2.5,25,0.0 +20062,38,263.5,39,0.0 +20062,31,12.5,23,0.0 +20062,48,12.75,47,0.0 +20062,70,15,23,0.0 +20062,52,7,1,0.0 +20062,34,14,48,0.0 +20062,3,10,33,0.0 +20062,72,34.8,45,0.0 +20062,41,9.65,41,0.0 +20062,74,10,16,0.0 +20062,20,81,47,0.0 +20062,36,19,18,0.0 +20062,37,26,5,0.0 +20062,18,62.5,42,0.0 +20062,27,43.9,50,0.0 +20062,26,31.23,35,0.0 +20062,59,55,11,0.0 +20062,43,46,32,0.0 +20062,6,25,22,0.0 +20062,7,30,33,0.0 +20062,55,24,6,0.0 +20062,77,13,32,0.0 +20062,66,17,32,0.0 +20062,71,21.5,33,0.0 +20062,9,97,7,0.0 +20062,42,14,48,0.0 +20062,32,32,1,0.0 +20062,60,34,9,0.0 +20063,62,49.3,42,0.0 +20063,36,19,16,0.0 +20063,32,32,7,0.0 +20063,14,23.25,50,0.0 +20063,66,17,24,0.0 +20063,68,12.5,47,0.0 +20063,24,4.5,46,0.0 +20063,4,22,37,0.0 +20063,2,19,46,0.0 +20063,1,18,21,0.0 +20063,10,31,23,0.0 +20063,47,9.5,19,0.0 +20063,29,123.79,6,0.0 +20063,7,30,9,0.0 +20063,56,38,48,0.0 +20063,11,21,39,0.0 +20063,64,33.25,8,0.0 +20063,65,21.05,9,0.0 +20063,5,21.35,37,0.0 +20063,9,97,28,0.0 +20063,40,18.4,17,0.0 +20063,23,9,40,0.0 +20063,15,15.5,22,0.0 +20063,33,2.5,48,0.0 +20063,28,45.6,2,0.0 +20063,19,9.2,50,0.0 +20063,34,14,40,0.0 +20063,48,12.75,43,0.0 +20063,73,15,24,0.0 +20063,12,38,35,0.0 +20063,60,34,37,0.0 +20063,16,17.45,50,0.0 +20063,70,15,21,0.0 +20063,49,20,10,0.0 +20063,69,36,46,0.0 +20063,41,9.65,25,0.0 +20063,37,26,48,0.0 +20064,71,21.5,8,0.0 +20064,17,39,12,0.0 +20064,49,20,7,0.0 +20064,37,26,1,0.0 +20064,42,14,43,0.0 +20064,4,22,46,0.0 +20064,46,12,2,0.0 +20064,50,16.25,9,0.0 +20064,35,18,1,0.0 +20064,10,31,12,0.0 +20064,61,28.5,32,0.0 +20064,18,62.5,4,0.0 +20065,41,9.65,41,0.0 +20065,69,36,11,0.0 +20065,30,25.89,10,0.0 +20065,5,21.35,28,0.0 +20065,18,62.5,2,0.0 +20065,61,28.5,13,0.0 +20065,27,43.9,3,0.0 +20065,31,12.5,25,0.0 +20065,1,18,2,0.0 +20065,26,31.23,31,0.0 +20065,44,19.45,36,0.0 +20065,50,16.25,7,0.0 +20065,55,24,30,0.0 +20065,77,13,37,0.0 +20065,16,17.45,18,0.0 +20065,3,10,11,0.0 +20065,28,45.6,42,0.0 +20065,7,30,39,0.0 +20065,4,22,44,0.0 +20065,68,12.5,19,0.0 +20065,70,15,13,0.0 +20065,8,40,40,0.0 +20065,43,46,35,0.0 +20065,36,19,27,0.0 +20065,48,12.75,14,0.0 +20065,73,15,18,0.0 +20065,21,10,24,0.0 +20065,54,7.45,35,0.0 +20065,62,49.3,13,0.0 +20066,54,7.45,46,0.0 +20066,49,20,43,0.0 +20066,15,15.5,48,0.0 +20066,42,14,15,0.0 +20066,52,7,32,0.0 +20066,77,13,45,0.0 +20066,56,38,43,0.0 +20066,64,33.25,5,0.0 +20066,66,17,9,0.0 +20066,8,40,29,0.0 +20066,57,19.5,12,0.0 +20066,72,34.8,26,0.0 +20066,13,6,41,0.0 +20066,11,21,2,0.0 +20066,20,81,32,0.0 +20066,3,10,17,0.0 +20066,65,21.05,8,0.0 +20066,34,14,6,0.0 +20066,29,123.79,47,0.0 +20066,39,18,28,0.0 +20066,17,39,34,0.0 +20066,74,10,23,0.0 +20066,60,34,25,0.0 +20066,19,9.2,28,0.0 +20066,32,32,43,0.0 +20066,53,32.8,37,0.0 +20066,37,26,21,0.0 +20066,26,31.23,49,0.0 +20066,23,9,42,0.0 +20066,47,9.5,25,0.0 +20066,41,9.65,38,0.0 +20066,75,7.75,45,0.0 +20066,73,15,11,0.0 +20066,51,53,45,0.0 +20066,22,21,37,0.0 +20066,5,21.35,1,0.0 +20066,6,25,36,0.0 +20066,44,19.45,24,0.0 +20066,18,62.5,28,0.0 +20066,68,12.5,13,0.0 +20066,28,45.6,47,0.0 +20066,4,22,6,0.0 +20066,76,18,15,0.0 +20066,40,18.4,40,0.0 +20066,27,43.9,28,0.0 +20066,62,49.3,30,0.0 +20066,16,17.45,23,0.0 +20066,14,23.25,37,0.0 +20067,76,18,1,0.0 +20067,39,18,45,0.0 +20067,27,43.9,46,0.0 +20067,56,38,22,0.0 +20067,68,12.5,35,0.0 +20067,5,21.35,48,0.0 +20067,9,97,21,0.0 +20067,72,34.8,27,0.0 +20067,40,18.4,1,0.0 +20067,34,14,14,0.0 +20067,1,18,44,0.0 +20067,43,46,11,0.0 +20067,57,19.5,12,0.0 +20067,33,2.5,29,0.0 +20067,22,21,21,0.0 +20067,74,10,22,0.0 +20067,6,25,9,0.0 +20067,71,21.5,17,0.0 +20067,17,39,1,0.0 +20067,26,31.23,24,0.0 +20067,59,55,14,0.0 +20067,32,32,32,0.0 +20067,61,28.5,20,0.0 +20067,49,20,38,0.0 +20067,66,17,8,0.0 +20067,36,19,26,0.0 +20067,41,9.65,31,0.0 +20067,4,22,22,0.0 +20067,48,12.75,33,0.0 +20067,20,81,7,0.0 +20067,73,15,28,0.0 +20067,11,21,25,0.0 +20067,50,16.25,33,0.0 +20067,62,49.3,17,0.0 +20067,23,9,49,0.0 +20067,64,33.25,10,0.0 +20067,28,45.6,11,0.0 +20067,46,12,39,0.0 +20067,31,12.5,48,0.0 +20067,25,14,17,0.0 +20067,30,25.89,25,0.0 +20067,10,31,46,0.0 +20067,18,62.5,49,0.0 +20067,14,23.25,2,0.0 +20067,55,24,36,0.0 +20067,65,21.05,45,0.0 +20067,44,19.45,46,0.0 +20067,24,4.5,23,0.0 +20067,15,15.5,25,0.0 +20067,2,19,24,0.0 +20067,69,36,33,0.0 +20067,63,43.9,28,0.0 +20067,7,30,40,0.0 +20067,12,38,42,0.0 +20067,67,14,49,0.0 +20068,59,55,29,0.0 +20068,39,18,50,0.0 +20068,20,81,48,0.0 +20068,54,7.45,23,0.0 +20068,27,43.9,16,0.0 +20068,28,45.6,17,0.0 +20068,12,38,27,0.0 +20068,6,25,2,0.0 +20068,26,31.23,42,0.0 +20068,14,23.25,38,0.0 +20068,66,17,31,0.0 +20068,49,20,24,0.0 +20068,16,17.45,18,0.0 +20068,36,19,42,0.0 +20068,4,22,23,0.0 +20068,72,34.8,12,0.0 +20068,40,18.4,6,0.0 +20068,65,21.05,13,0.0 +20069,28,45.6,19,0.0 +20069,29,123.79,40,0.0 +20069,57,19.5,20,0.0 +20069,14,23.25,39,0.0 +20069,5,21.35,48,0.0 +20069,42,14,25,0.0 +20069,34,14,17,0.0 +20069,4,22,27,0.0 +20069,35,18,21,0.0 +20069,55,24,49,0.0 +20069,44,19.45,49,0.0 +20069,76,18,2,0.0 +20069,6,25,37,0.0 +20069,33,2.5,10,0.0 +20069,12,38,28,0.0 +20069,11,21,48,0.0 +20069,77,13,25,0.0 +20069,54,7.45,39,0.0 +20069,51,53,45,0.0 +20069,21,10,11,0.0 +20069,46,12,42,0.0 +20069,30,25.89,34,0.0 +20069,66,17,5,0.0 +20069,45,9.5,38,0.0 +20069,58,13.25,25,0.0 +20069,38,263.5,1,0.0 +20069,23,9,18,0.0 +20069,3,10,17,0.0 +20069,75,7.75,50,0.0 +20069,62,49.3,15,0.0 +20069,74,10,15,0.0 +20069,70,15,33,0.0 +20069,10,31,3,0.0 +20069,65,21.05,28,0.0 +20069,9,97,13,0.0 +20069,40,18.4,15,0.0 +20069,72,34.8,16,0.0 +20069,25,14,32,0.0 +20069,71,21.5,42,0.0 +20069,31,12.5,23,0.0 +20069,20,81,20,0.0 +20069,63,43.9,14,0.0 +20069,8,40,34,0.0 +20069,15,15.5,44,0.0 +20069,17,39,50,0.0 +20069,41,9.65,45,0.0 +20069,39,18,21,0.0 +20069,48,12.75,47,0.0 +20069,19,9.2,21,0.0 +20069,73,15,35,0.0 +20070,70,15,12,0.0 +20070,17,39,31,0.0 +20070,34,14,37,0.0 +20070,69,36,19,0.0 +20070,56,38,5,0.0 +20070,5,21.35,5,0.0 +20070,63,43.9,26,0.0 +20070,53,32.8,42,0.0 +20070,57,19.5,39,0.0 +20070,21,10,1,0.0 +20070,14,23.25,27,0.0 +20070,72,34.8,11,0.0 +20070,19,9.2,5,0.0 +20070,20,81,8,0.0 +20070,8,40,47,0.0 +20070,2,19,31,0.0 +20070,42,14,9,0.0 +20070,31,12.5,11,0.0 +20070,23,9,47,0.0 +20070,67,14,15,0.0 +20071,14,23.25,13,0.0 +20071,61,28.5,45,0.0 +20071,22,21,7,0.0 +20071,77,13,2,0.0 +20071,55,24,33,0.0 +20071,2,19,7,0.0 +20071,16,17.45,44,0.0 +20071,75,7.75,17,0.0 +20071,38,263.5,10,0.0 +20071,11,21,37,0.0 +20071,28,45.6,36,0.0 +20071,26,31.23,18,0.0 +20071,19,9.2,13,0.0 +20071,56,38,33,0.0 +20071,13,6,33,0.0 +20071,52,7,2,0.0 +20071,27,43.9,7,0.0 +20071,45,9.5,21,0.0 +20071,69,36,42,0.0 +20071,44,19.45,48,0.0 +20071,50,16.25,27,0.0 +20071,17,39,49,0.0 +20071,54,7.45,29,0.0 +20071,42,14,1,0.0 +20071,4,22,22,0.0 +20071,18,62.5,38,0.0 +20071,48,12.75,9,0.0 +20071,60,34,5,0.0 +20071,8,40,35,0.0 +20071,59,55,19,0.0 +20071,71,21.5,41,0.0 +20071,46,12,25,0.0 +20071,33,2.5,13,0.0 +20071,58,13.25,48,0.0 +20071,34,14,15,0.0 +20072,67,14,35,0.0 +20072,27,43.9,34,0.0 +20072,73,15,4,0.0 +20072,58,13.25,28,0.0 +20072,57,19.5,17,0.0 +20072,19,9.2,35,0.0 +20072,20,81,10,0.0 +20072,26,31.23,2,0.0 +20072,62,49.3,9,0.0 +20072,9,97,7,0.0 +20072,33,2.5,30,0.0 +20072,1,18,45,0.0 +20072,11,21,50,0.0 +20072,30,25.89,49,0.0 +20072,42,14,9,0.0 +20072,51,53,23,0.0 +20072,10,31,20,0.0 +20072,32,32,6,0.0 +20072,41,9.65,10,0.0 +20072,68,12.5,4,0.0 +20072,29,123.79,13,0.0 +20072,47,9.5,35,0.0 +20072,5,21.35,47,0.0 +20072,28,45.6,43,0.0 +20072,52,7,16,0.0 +20072,23,9,24,0.0 +20072,64,33.25,47,0.0 +20072,72,34.8,7,0.0 +20072,50,16.25,39,0.0 +20072,74,10,28,0.0 +20072,54,7.45,6,0.0 +20072,65,21.05,17,0.0 +20072,12,38,3,0.0 +20073,74,10,43,0.0 +20073,53,32.8,24,0.0 +20073,57,19.5,47,0.0 +20073,30,25.89,25,0.0 +20073,65,21.05,35,0.0 +20073,21,10,36,0.0 +20073,49,20,10,0.0 +20073,16,17.45,5,0.0 +20073,19,9.2,27,0.0 +20073,43,46,50,0.0 +20073,48,12.75,39,0.0 +20073,7,30,41,0.0 +20073,10,31,24,0.0 +20073,42,14,8,0.0 +20073,25,14,3,0.0 +20073,56,38,12,0.0 +20073,24,4.5,37,0.0 +20073,59,55,49,0.0 +20073,18,62.5,34,0.0 +20073,72,34.8,17,0.0 +20073,5,21.35,49,0.0 +20073,20,81,25,0.0 +20073,60,34,43,0.0 +20073,39,18,31,0.0 +20073,2,19,23,0.0 +20073,31,12.5,22,0.0 +20073,50,16.25,50,0.0 +20073,47,9.5,21,0.0 +20073,32,32,10,0.0 +20073,3,10,40,0.0 +20073,40,18.4,6,0.0 +20074,6,25,47,0.0 +20074,55,24,50,0.0 +20074,42,14,16,0.0 +20074,3,10,38,0.0 +20074,29,123.79,27,0.0 +20074,32,32,30,0.0 +20074,44,19.45,8,0.0 +20074,75,7.75,27,0.0 +20074,2,19,34,0.0 +20074,76,18,18,0.0 +20074,11,21,17,0.0 +20074,50,16.25,11,0.0 +20074,24,4.5,34,0.0 +20074,56,38,37,0.0 +20074,8,40,27,0.0 +20074,73,15,18,0.0 +20074,72,34.8,44,0.0 +20074,34,14,36,0.0 +20074,30,25.89,23,0.0 +20074,1,18,34,0.0 +20074,20,81,47,0.0 +20074,49,20,4,0.0 +20074,17,39,48,0.0 +20074,68,12.5,4,0.0 +20074,40,18.4,43,0.0 +20074,74,10,8,0.0 +20074,13,6,16,0.0 +20074,77,13,33,0.0 +20074,14,23.25,46,0.0 +20074,59,55,37,0.0 +20074,9,97,37,0.0 +20074,12,38,43,0.0 +20074,33,2.5,6,0.0 +20074,62,49.3,26,0.0 +20074,43,46,18,0.0 +20074,53,32.8,18,0.0 +20074,66,17,50,0.0 +20074,22,21,33,0.0 +20074,35,18,41,0.0 +20074,71,21.5,5,0.0 +20074,64,33.25,4,0.0 +20074,70,15,5,0.0 +20074,45,9.5,42,0.0 +20074,38,263.5,18,0.0 +20074,69,36,48,0.0 +20074,15,15.5,11,0.0 +20074,7,30,26,0.0 +20074,65,21.05,38,0.0 +20074,67,14,48,0.0 +20075,6,25,13,0.0 +20075,45,9.5,5,0.0 +20075,38,263.5,1,0.0 +20075,31,12.5,26,0.0 +20075,35,18,23,0.0 +20075,69,36,43,0.0 +20075,20,81,35,0.0 +20075,29,123.79,49,0.0 +20075,10,31,31,0.0 +20075,74,10,25,0.0 +20075,54,7.45,36,0.0 +20075,21,10,28,0.0 +20075,32,32,15,0.0 +20075,14,23.25,32,0.0 +20075,46,12,12,0.0 +20076,43,46,1,0.0 +20076,5,21.35,15,0.0 +20076,69,36,16,0.0 +20076,19,9.2,1,0.0 +20076,8,40,31,0.0 +20076,27,43.9,3,0.0 +20076,49,20,15,0.0 +20076,4,22,38,0.0 +20076,37,26,35,0.0 +20076,66,17,26,0.0 +20076,55,24,48,0.0 +20076,68,12.5,46,0.0 +20076,34,14,43,0.0 +20076,41,9.65,44,0.0 +20076,14,23.25,2,0.0 +20076,62,49.3,11,0.0 +20076,24,4.5,7,0.0 +20076,45,9.5,37,0.0 +20076,18,62.5,20,0.0 +20076,40,18.4,45,0.0 +20076,28,45.6,7,0.0 +20076,26,31.23,41,0.0 +20076,16,17.45,38,0.0 +20076,58,13.25,13,0.0 +20076,15,15.5,16,0.0 +20076,74,10,4,0.0 +20076,21,10,40,0.0 +20076,54,7.45,43,0.0 +20076,25,14,10,0.0 +20076,11,21,36,0.0 +20076,6,25,50,0.0 +20076,72,34.8,19,0.0 +20076,60,34,12,0.0 +20076,77,13,7,0.0 +20076,50,16.25,22,0.0 +20076,42,14,49,0.0 +20076,7,30,11,0.0 +20076,63,43.9,43,0.0 +20076,46,12,2,0.0 +20076,35,18,2,0.0 +20076,23,9,8,0.0 +20076,2,19,41,0.0 +20076,75,7.75,44,0.0 +20076,38,263.5,10,0.0 +20076,51,53,10,0.0 +20076,48,12.75,33,0.0 +20076,3,10,7,0.0 +20076,76,18,38,0.0 +20076,36,19,31,0.0 +20076,22,21,34,0.0 +20076,32,32,35,0.0 +20076,56,38,47,0.0 +20076,13,6,32,0.0 +20076,73,15,23,0.0 +20076,71,21.5,11,0.0 +20076,52,7,13,0.0 +20077,28,45.6,33,0.0 +20077,48,12.75,33,0.0 +20077,57,19.5,50,0.0 +20077,53,32.8,48,0.0 +20077,37,26,5,0.0 +20077,40,18.4,33,0.0 +20077,63,43.9,34,0.0 +20077,39,18,41,0.0 +20077,54,7.45,13,0.0 +20077,9,97,15,0.0 +20077,75,7.75,25,0.0 +20077,58,13.25,34,0.0 +20077,65,21.05,9,0.0 +20077,42,14,25,0.0 +20077,77,13,8,0.0 +20077,41,9.65,4,0.0 +20077,6,25,2,0.0 +20077,24,4.5,2,0.0 +20077,17,39,1,0.0 +20077,38,263.5,13,0.0 +20077,5,21.35,42,0.0 +20077,73,15,3,0.0 +20077,52,7,9,0.0 +20077,10,31,12,0.0 +20077,33,2.5,5,0.0 +20077,46,12,2,0.0 +20077,71,21.5,31,0.0 +20077,7,30,39,0.0 +20077,67,14,22,0.0 +20077,23,9,45,0.0 +20077,15,15.5,45,0.0 +20077,19,9.2,11,0.0 +20077,36,19,46,0.0 +20077,59,55,46,0.0 +20077,68,12.5,45,0.0 +20077,12,38,39,0.0 +20077,47,9.5,41,0.0 +20077,14,23.25,32,0.0 +20077,43,46,42,0.0 +20077,31,12.5,48,0.0 +20077,61,28.5,11,0.0 +20077,11,21,47,0.0 +20077,70,15,34,0.0 +20077,55,24,27,0.0 +20077,34,14,44,0.0 +20077,20,81,22,0.0 +20077,44,19.45,42,0.0 +20077,2,19,18,0.0 +20077,62,49.3,4,0.0 +20077,72,34.8,34,0.0 +20077,21,10,39,0.0 +20077,1,18,28,0.0 +20077,29,123.79,35,0.0 +20077,74,10,8,0.0 +20077,50,16.25,23,0.0 +20077,18,62.5,13,0.0 +20077,3,10,2,0.0 +20077,8,40,20,0.0 +20077,66,17,18,0.0 +20077,32,32,49,0.0 +20077,26,31.23,43,0.0 +20077,25,14,10,0.0 +20077,30,25.89,40,0.0 +20077,60,34,16,0.0 +20077,64,33.25,32,0.0 +20077,4,22,21,0.0 +20077,27,43.9,32,0.0 +20078,61,28.5,17,0.0 +20078,9,97,34,0.0 +20078,77,13,5,0.0 +20078,40,18.4,19,0.0 +20078,46,12,5,0.0 +20078,41,9.65,33,0.0 +20078,15,15.5,41,0.0 +20078,8,40,50,0.0 +20078,26,31.23,28,0.0 +20078,7,30,20,0.0 +20078,57,19.5,39,0.0 +20078,5,21.35,1,0.0 +20078,60,34,10,0.0 +20078,70,15,5,0.0 +20078,55,24,8,0.0 +20078,50,16.25,26,0.0 +20078,58,13.25,7,0.0 +20078,38,263.5,12,0.0 +20078,34,14,47,0.0 +20078,66,17,45,0.0 +20078,20,81,40,0.0 +20078,17,39,49,0.0 +20078,16,17.45,38,0.0 +20078,39,18,22,0.0 +20078,63,43.9,15,0.0 +20078,75,7.75,49,0.0 +20078,64,33.25,34,0.0 +20078,27,43.9,32,0.0 +20078,2,19,40,0.0 +20078,51,53,37,0.0 +20078,36,19,14,0.0 +20078,37,26,22,0.0 +20078,30,25.89,40,0.0 +20078,25,14,27,0.0 +20078,29,123.79,13,0.0 +20078,24,4.5,45,0.0 +20078,69,36,24,0.0 +20078,53,32.8,12,0.0 +20078,42,14,19,0.0 +20078,71,21.5,16,0.0 +20078,10,31,17,0.0 +20078,54,7.45,3,0.0 +20078,56,38,27,0.0 +20078,43,46,5,0.0 +20078,22,21,8,0.0 +20078,1,18,50,0.0 +20078,3,10,26,0.0 +20078,62,49.3,20,0.0 +20078,48,12.75,3,0.0 +20078,74,10,24,0.0 +20078,12,38,44,0.0 +20078,18,62.5,17,0.0 +20078,47,9.5,28,0.0 +20078,4,22,47,0.0 +20078,65,21.05,3,0.0 +20078,67,14,33,0.0 +20078,52,7,23,0.0 +20078,23,9,2,0.0 +20078,59,55,19,0.0 +20078,14,23.25,48,0.0 +20078,13,6,46,0.0 +20078,31,12.5,37,0.0 +20078,49,20,44,0.0 +20078,68,12.5,1,0.0 +20079,27,43.9,12,0.0 +20079,31,12.5,17,0.0 +20079,10,31,4,0.0 +20079,15,15.5,24,0.0 +20080,23,9,26,0.0 +20080,68,12.5,21,0.0 +20080,73,15,40,0.0 +20080,1,18,2,0.0 +20080,38,263.5,1,0.0 +20080,20,81,40,0.0 +20080,24,4.5,17,0.0 +20081,21,10,34,0.0 +20081,76,18,28,0.0 +20081,35,18,35,0.0 +20081,67,14,26,0.0 +20081,20,81,12,0.0 +20081,15,15.5,26,0.0 +20081,50,16.25,30,0.0 +20081,17,39,30,0.0 +20081,61,28.5,24,0.0 +20081,14,23.25,42,0.0 +20081,59,55,41,0.0 +20081,49,20,13,0.0 +20081,60,34,26,0.0 +20081,68,12.5,40,0.0 +20081,24,4.5,10,0.0 +20081,73,15,20,0.0 +20081,44,19.45,46,0.0 +20081,31,12.5,25,0.0 +20081,48,12.75,18,0.0 +20081,4,22,14,0.0 +20081,5,21.35,24,0.0 +20081,36,19,10,0.0 +20081,77,13,20,0.0 +20081,22,21,35,0.0 +20081,71,21.5,45,0.0 +20081,63,43.9,21,0.0 +20081,1,18,50,0.0 +20081,28,45.6,31,0.0 +20081,3,10,18,0.0 +20081,58,13.25,37,0.0 +20081,6,25,33,0.0 +20081,55,24,19,0.0 +20081,13,6,4,0.0 +20081,39,18,5,0.0 +20081,57,19.5,8,0.0 +20081,65,21.05,20,0.0 +20081,25,14,49,0.0 +20081,11,21,7,0.0 +20081,75,7.75,3,0.0 +20081,40,18.4,42,0.0 +20081,38,263.5,25,0.0 +20081,19,9.2,39,0.0 +20081,30,25.89,50,0.0 +20081,42,14,22,0.0 +20081,51,53,1,0.0 +20081,34,14,8,0.0 +20081,46,12,40,0.0 +20081,12,38,13,0.0 +20081,74,10,32,0.0 +20081,70,15,28,0.0 +20081,2,19,15,0.0 +20082,58,13.25,32,0.0 +20082,60,34,42,0.0 +20082,33,2.5,24,0.0 +20082,52,7,46,0.0 +20082,54,7.45,37,0.0 +20082,30,25.89,8,0.0 +20082,21,10,26,0.0 +20082,44,19.45,29,0.0 +20082,69,36,38,0.0 +20082,56,38,14,0.0 +20082,48,12.75,30,0.0 +20082,24,4.5,16,0.0 +20082,70,15,17,0.0 +20082,49,20,12,0.0 +20082,61,28.5,40,0.0 +20082,15,15.5,41,0.0 +20082,57,19.5,24,0.0 +20082,66,17,32,0.0 +20082,68,12.5,3,0.0 +20082,74,10,40,0.0 +20082,13,6,3,0.0 +20082,7,30,46,0.0 +20082,64,33.25,16,0.0 +20082,71,21.5,16,0.0 +20082,19,9.2,15,0.0 +20082,25,14,37,0.0 +20082,50,16.25,46,0.0 +20082,4,22,23,0.0 +20082,11,21,36,0.0 +20082,75,7.75,19,0.0 +20082,12,38,12,0.0 +20082,73,15,34,0.0 +20082,26,31.23,47,0.0 +20082,29,123.79,49,0.0 +20082,42,14,50,0.0 +20082,35,18,26,0.0 +20082,5,21.35,47,0.0 +20082,1,18,29,0.0 +20082,53,32.8,23,0.0 +20082,8,40,3,0.0 +20082,17,39,39,0.0 +20082,77,13,42,0.0 +20082,28,45.6,4,0.0 +20082,62,49.3,25,0.0 +20082,20,81,30,0.0 +20082,27,43.9,27,0.0 +20082,22,21,42,0.0 +20082,40,18.4,41,0.0 +20082,36,19,28,0.0 +20082,59,55,39,0.0 +20082,65,21.05,19,0.0 +20082,37,26,46,0.0 +20082,31,12.5,10,0.0 +20082,16,17.45,33,0.0 +20082,32,32,18,0.0 +20082,3,10,3,0.0 +20082,46,12,22,0.0 +20082,18,62.5,13,0.0 +20082,23,9,37,0.0 +20082,63,43.9,1,0.0 +20082,67,14,40,0.0 +20082,6,25,13,0.0 +20082,10,31,5,0.0 +20083,68,12.5,9,0.0 +20083,48,12.75,2,0.0 +20083,16,17.45,17,0.0 +20083,73,15,38,0.0 +20083,12,38,7,0.0 +20083,57,19.5,24,0.0 +20083,34,14,34,0.0 +20083,1,18,16,0.0 +20083,22,21,30,0.0 +20083,3,10,38,0.0 +20083,44,19.45,28,0.0 +20083,2,19,36,0.0 +20083,58,13.25,2,0.0 +20083,24,4.5,40,0.0 +20083,27,43.9,20,0.0 +20083,32,32,8,0.0 +20083,11,21,10,0.0 +20083,37,26,28,0.0 +20083,72,34.8,25,0.0 +20083,29,123.79,4,0.0 +20083,47,9.5,13,0.0 +20083,38,263.5,35,0.0 +20083,64,33.25,40,0.0 +20083,8,40,8,0.0 +20083,6,25,44,0.0 +20083,9,97,27,0.0 +20083,67,14,6,0.0 +20083,15,15.5,7,0.0 +20083,59,55,45,0.0 +20083,7,30,32,0.0 +20083,65,21.05,43,0.0 +20083,23,9,43,0.0 +20083,31,12.5,2,0.0 +20083,4,22,49,0.0 +20084,10,31,1,0.0 +20084,29,123.79,36,0.0 +20084,36,19,28,0.0 +20084,52,7,32,0.0 +20084,27,43.9,46,0.0 +20084,28,45.6,29,0.0 +20084,8,40,38,0.0 +20084,41,9.65,41,0.0 +20084,3,10,15,0.0 +20084,69,36,9,0.0 +20084,9,97,5,0.0 +20084,64,33.25,39,0.0 +20084,56,38,44,0.0 +20084,71,21.5,45,0.0 +20084,4,22,43,0.0 +20084,72,34.8,24,0.0 +20084,59,55,39,0.0 +20084,76,18,25,0.0 +20084,46,12,30,0.0 +20084,43,46,46,0.0 +20084,68,12.5,12,0.0 +20084,49,20,43,0.0 +20084,74,10,24,0.0 +20084,6,25,48,0.0 +20084,13,6,21,0.0 +20084,42,14,7,0.0 +20084,11,21,21,0.0 +20084,25,14,46,0.0 +20084,47,9.5,50,0.0 +20084,5,21.35,14,0.0 +20084,18,62.5,30,0.0 +20084,39,18,34,0.0 +20084,62,49.3,13,0.0 +20084,23,9,28,0.0 +20084,60,34,18,0.0 +20084,20,81,9,0.0 +20084,31,12.5,1,0.0 +20084,70,15,19,0.0 +20084,7,30,9,0.0 +20084,38,263.5,12,0.0 +20084,45,9.5,38,0.0 +20084,48,12.75,23,0.0 +20084,34,14,47,0.0 +20084,58,13.25,31,0.0 +20084,75,7.75,17,0.0 +20084,33,2.5,44,0.0 +20084,50,16.25,10,0.0 +20085,16,17.45,26,0.0 +20085,23,9,4,0.0 +20085,68,12.5,50,0.0 +20085,20,81,31,0.0 +20085,37,26,7,0.0 +20085,5,21.35,22,0.0 +20085,51,53,17,0.0 +20085,58,13.25,26,0.0 +20085,30,25.89,8,0.0 +20085,54,7.45,50,0.0 +20085,50,16.25,25,0.0 +20085,53,32.8,27,0.0 +20085,35,18,19,0.0 +20085,52,7,26,0.0 +20085,67,14,3,0.0 +20085,49,20,47,0.0 +20085,3,10,48,0.0 +20085,65,21.05,35,0.0 +20085,60,34,18,0.0 +20085,25,14,46,0.0 +20085,72,34.8,46,0.0 +20085,26,31.23,16,0.0 +20085,18,62.5,17,0.0 +20085,69,36,44,0.0 +20085,39,18,8,0.0 +20085,19,9.2,20,0.0 +20085,17,39,7,0.0 +20085,46,12,21,0.0 +20085,34,14,4,0.0 +20085,2,19,41,0.0 +20085,10,31,24,0.0 +20085,1,18,13,0.0 +20086,56,38,40,0.0 +20086,25,14,27,0.0 +20086,69,36,23,0.0 +20086,6,25,41,0.0 +20086,39,18,17,0.0 +20086,17,39,36,0.0 +20086,73,15,36,0.0 +20086,58,13.25,48,0.0 +20086,64,33.25,22,0.0 +20086,77,13,38,0.0 +20086,65,21.05,6,0.0 +20086,52,7,14,0.0 +20086,20,81,43,0.0 +20086,76,18,27,0.0 +20086,45,9.5,49,0.0 +20086,4,22,14,0.0 +20086,48,12.75,30,0.0 +20086,16,17.45,28,0.0 +20086,42,14,24,0.0 +20086,28,45.6,32,0.0 +20086,1,18,20,0.0 +20086,15,15.5,28,0.0 +20086,53,32.8,42,0.0 +20086,27,43.9,7,0.0 +20086,46,12,40,0.0 +20086,5,21.35,1,0.0 +20086,47,9.5,10,0.0 +20086,55,24,17,0.0 +20086,13,6,38,0.0 +20086,71,21.5,33,0.0 +20086,59,55,2,0.0 +20086,61,28.5,4,0.0 +20086,57,19.5,25,0.0 +20086,10,31,42,0.0 +20086,43,46,29,0.0 +20086,41,9.65,24,0.0 +20086,2,19,20,0.0 +20086,51,53,8,0.0 +20086,70,15,32,0.0 +20086,44,19.45,35,0.0 +20086,66,17,50,0.0 +20086,49,20,18,0.0 +20086,68,12.5,47,0.0 +20086,60,34,19,0.0 +20086,22,21,6,0.0 +20086,35,18,29,0.0 +20086,30,25.89,39,0.0 +20086,3,10,40,0.0 +20086,23,9,36,0.0 +20086,67,14,10,0.0 +20086,32,32,49,0.0 +20086,24,4.5,1,0.0 +20086,38,263.5,37,0.0 +20086,7,30,14,0.0 +20086,11,21,39,0.0 +20086,9,97,24,0.0 +20086,19,9.2,33,0.0 +20086,18,62.5,32,0.0 +20086,72,34.8,29,0.0 +20086,36,19,24,0.0 +20086,63,43.9,4,0.0 +20086,74,10,14,0.0 +20086,29,123.79,14,0.0 +20086,8,40,49,0.0 +20086,50,16.25,8,0.0 +20086,33,2.5,10,0.0 +20086,62,49.3,12,0.0 +20086,54,7.45,4,0.0 +20086,31,12.5,12,0.0 +20086,37,26,10,0.0 +20086,40,18.4,13,0.0 +20086,12,38,15,0.0 +20086,75,7.75,47,0.0 +20087,9,97,49,0.0 +20087,31,12.5,30,0.0 +20087,74,10,5,0.0 +20087,32,32,8,0.0 +20087,8,40,6,0.0 +20087,75,7.75,14,0.0 +20087,72,34.8,22,0.0 +20087,7,30,22,0.0 +20087,49,20,34,0.0 +20087,1,18,43,0.0 +20087,35,18,31,0.0 +20087,29,123.79,11,0.0 +20087,39,18,32,0.0 +20087,52,7,11,0.0 +20087,24,4.5,27,0.0 +20087,12,38,1,0.0 +20087,55,24,13,0.0 +20087,65,21.05,39,0.0 +20087,77,13,49,0.0 +20087,64,33.25,22,0.0 +20087,16,17.45,7,0.0 +20087,11,21,25,0.0 +20087,68,12.5,10,0.0 +20087,61,28.5,21,0.0 +20087,56,38,1,0.0 +20087,25,14,49,0.0 +20087,43,46,34,0.0 +20087,46,12,28,0.0 +20087,57,19.5,5,0.0 +20087,21,10,46,0.0 +20088,49,20,42,0.0 +20088,1,18,43,0.0 +20088,37,26,46,0.0 +20088,39,18,7,0.0 +20088,22,21,46,0.0 +20088,62,49.3,25,0.0 +20088,29,123.79,17,0.0 +20088,77,13,21,0.0 +20088,30,25.89,11,0.0 +20088,18,62.5,24,0.0 +20088,6,25,2,0.0 +20088,61,28.5,8,0.0 +20088,2,19,9,0.0 +20088,8,40,25,0.0 +20088,26,31.23,25,0.0 +20088,63,43.9,18,0.0 +20088,20,81,12,0.0 +20088,40,18.4,31,0.0 +20088,33,2.5,3,0.0 +20088,56,38,32,0.0 +20088,71,21.5,19,0.0 +20088,64,33.25,35,0.0 +20088,43,46,8,0.0 +20088,50,16.25,26,0.0 +20088,19,9.2,18,0.0 +20088,66,17,9,0.0 +20088,73,15,47,0.0 +20088,12,38,22,0.0 +20089,19,9.2,6,0.0 +20089,31,12.5,33,0.0 +20089,49,20,42,0.0 +20089,17,39,30,0.0 +20089,71,21.5,7,0.0 +20089,76,18,10,0.0 +20089,23,9,49,0.0 +20089,33,2.5,1,0.0 +20089,53,32.8,21,0.0 +20089,34,14,31,0.0 +20089,67,14,20,0.0 +20089,24,4.5,10,0.0 +20089,5,21.35,47,0.0 +20089,1,18,34,0.0 +20089,66,17,9,0.0 +20089,3,10,15,0.0 +20089,56,38,33,0.0 +20089,50,16.25,45,0.0 +20089,70,15,3,0.0 +20089,75,7.75,30,0.0 +20089,46,12,29,0.0 +20089,62,49.3,22,0.0 +20089,44,19.45,27,0.0 +20089,74,10,9,0.0 +20089,12,38,31,0.0 +20089,38,263.5,3,0.0 +20089,16,17.45,7,0.0 +20089,6,25,34,0.0 +20089,48,12.75,20,0.0 +20089,13,6,45,0.0 +20089,39,18,43,0.0 +20089,32,32,8,0.0 +20089,58,13.25,7,0.0 +20089,64,33.25,5,0.0 +20089,60,34,16,0.0 +20090,47,9.5,2,0.0 +20090,6,25,39,0.0 +20090,19,9.2,43,0.0 +20090,31,12.5,43,0.0 +20090,72,34.8,50,0.0 +20090,34,14,35,0.0 +20090,22,21,41,0.0 +20090,30,25.89,32,0.0 +20090,8,40,20,0.0 +20090,38,263.5,10,0.0 +20090,33,2.5,17,0.0 +20090,40,18.4,14,0.0 +20090,18,62.5,33,0.0 +20090,9,97,34,0.0 +20090,65,21.05,20,0.0 +20090,25,14,39,0.0 +20090,12,38,19,0.0 +20090,27,43.9,41,0.0 +20090,61,28.5,37,0.0 +20090,1,18,36,0.0 +20090,75,7.75,46,0.0 +20090,59,55,9,0.0 +20091,53,32.8,35,0.0 +20091,30,25.89,45,0.0 +20091,48,12.75,22,0.0 +20091,46,12,26,0.0 +20091,18,62.5,21,0.0 +20091,72,34.8,41,0.0 +20091,2,19,37,0.0 +20091,75,7.75,3,0.0 +20091,33,2.5,33,0.0 +20091,67,14,30,0.0 +20091,16,17.45,40,0.0 +20091,63,43.9,40,0.0 +20091,61,28.5,10,0.0 +20091,13,6,29,0.0 +20091,58,13.25,7,0.0 +20091,73,15,4,0.0 +20091,77,13,19,0.0 +20091,12,38,29,0.0 +20091,76,18,50,0.0 +20091,27,43.9,37,0.0 +20091,65,21.05,40,0.0 +20091,10,31,12,0.0 +20091,49,20,14,0.0 +20091,34,14,50,0.0 +20091,69,36,4,0.0 +20091,25,14,7,0.0 +20091,35,18,17,0.0 +20091,17,39,50,0.0 +20091,32,32,43,0.0 +20091,71,21.5,47,0.0 +20091,41,9.65,50,0.0 +20091,28,45.6,30,0.0 +20091,51,53,25,0.0 +20092,35,18,6,0.0 +20092,61,28.5,11,0.0 +20092,72,34.8,4,0.0 +20092,56,38,31,0.0 +20092,46,12,6,0.0 +20092,39,18,8,0.0 +20092,36,19,10,0.0 +20092,1,18,17,0.0 +20092,32,32,37,0.0 +20092,24,4.5,44,0.0 +20092,57,19.5,6,0.0 +20092,51,53,26,0.0 +20092,65,21.05,40,0.0 +20092,23,9,5,0.0 +20092,29,123.79,33,0.0 +20092,31,12.5,11,0.0 +20092,21,10,40,0.0 +20092,16,17.45,10,0.0 +20092,33,2.5,8,0.0 +20092,38,263.5,33,0.0 +20092,10,31,16,0.0 +20092,48,12.75,1,0.0 +20092,70,15,5,0.0 +20092,42,14,29,0.0 +20092,44,19.45,40,0.0 +20092,25,14,39,0.0 +20092,7,30,29,0.0 +20092,63,43.9,35,0.0 +20092,9,97,25,0.0 +20092,6,25,36,0.0 +20092,15,15.5,23,0.0 +20092,18,62.5,34,0.0 +20092,41,9.65,14,0.0 +20092,22,21,30,0.0 +20092,47,9.5,33,0.0 +20092,77,13,43,0.0 +20092,40,18.4,32,0.0 +20092,19,9.2,16,0.0 +20092,52,7,12,0.0 +20092,27,43.9,15,0.0 +20092,74,10,9,0.0 +20092,26,31.23,14,0.0 +20092,58,13.25,1,0.0 +20092,76,18,17,0.0 +20092,20,81,6,0.0 +20092,30,25.89,39,0.0 +20092,53,32.8,22,0.0 +20092,75,7.75,8,0.0 +20092,66,17,39,0.0 +20092,5,21.35,24,0.0 +20092,11,21,48,0.0 +20092,69,36,8,0.0 +20092,62,49.3,46,0.0 +20092,49,20,36,0.0 +20092,43,46,28,0.0 +20092,37,26,8,0.0 +20092,45,9.5,4,0.0 +20092,54,7.45,43,0.0 +20092,3,10,11,0.0 +20092,64,33.25,25,0.0 +20092,13,6,46,0.0 +20092,2,19,22,0.0 +20092,17,39,39,0.0 +20092,34,14,3,0.0 +20092,8,40,13,0.0 +20092,60,34,4,0.0 +20092,50,16.25,38,0.0 +20092,28,45.6,37,0.0 +20092,55,24,41,0.0 +20092,59,55,17,0.0 +20092,12,38,46,0.0 +20092,67,14,26,0.0 +20092,4,22,2,0.0 +20092,71,21.5,12,0.0 +20093,44,19.45,7,0.0 +20093,8,40,37,0.0 +20093,24,4.5,19,0.0 +20093,14,23.25,38,0.0 +20093,64,33.25,31,0.0 +20093,32,32,24,0.0 +20093,50,16.25,11,0.0 +20093,23,9,8,0.0 +20093,1,18,17,0.0 +20093,20,81,7,0.0 +20093,35,18,47,0.0 +20093,66,17,14,0.0 +20093,13,6,40,0.0 +20093,56,38,4,0.0 +20093,58,13.25,28,0.0 +20093,4,22,17,0.0 +20093,55,24,22,0.0 +20093,27,43.9,32,0.0 +20094,14,23.25,8,0.0 +20094,21,10,11,0.0 +20094,71,21.5,50,0.0 +20094,75,7.75,13,0.0 +20094,64,33.25,22,0.0 +20094,62,49.3,21,0.0 +20094,32,32,25,0.0 +20094,57,19.5,2,0.0 +20094,70,15,3,0.0 +20094,54,7.45,43,0.0 +20094,13,6,32,0.0 +20094,18,62.5,46,0.0 +20094,77,13,24,0.0 +20094,17,39,21,0.0 +20094,27,43.9,10,0.0 +20094,23,9,18,0.0 +20094,31,12.5,10,0.0 +20094,69,36,12,0.0 +20094,39,18,21,0.0 +20094,66,17,18,0.0 +20094,45,9.5,5,0.0 +20094,12,38,45,0.0 +20094,73,15,2,0.0 +20094,55,24,35,0.0 +20094,30,25.89,3,0.0 +20094,68,12.5,44,0.0 +20094,47,9.5,3,0.0 +20094,2,19,34,0.0 +20094,9,97,11,0.0 +20094,20,81,22,0.0 +20094,36,19,7,0.0 +20094,59,55,48,0.0 +20094,15,15.5,50,0.0 +20094,11,21,38,0.0 +20094,42,14,43,0.0 +20094,49,20,37,0.0 +20094,19,9.2,8,0.0 +20094,1,18,5,0.0 +20094,26,31.23,12,0.0 +20095,17,39,44,0.0 +20095,9,97,4,0.0 +20095,18,62.5,28,0.0 +20095,59,55,27,0.0 +20095,41,9.65,26,0.0 +20095,51,53,11,0.0 +20095,45,9.5,29,0.0 +20095,53,32.8,39,0.0 +20095,64,33.25,24,0.0 +20095,14,23.25,2,0.0 +20095,65,21.05,23,0.0 +20095,62,49.3,14,0.0 +20095,76,18,11,0.0 +20095,37,26,50,0.0 +20095,72,34.8,9,0.0 +20095,15,15.5,18,0.0 +20095,19,9.2,12,0.0 +20095,13,6,28,0.0 +20095,28,45.6,19,0.0 +20095,55,24,38,0.0 +20095,57,19.5,8,0.0 +20095,66,17,42,0.0 +20095,49,20,24,0.0 +20095,20,81,36,0.0 +20095,33,2.5,15,0.0 +20095,73,15,22,0.0 +20095,48,12.75,42,0.0 +20095,7,30,26,0.0 +20095,31,12.5,47,0.0 +20095,43,46,39,0.0 +20095,21,10,31,0.0 +20095,10,31,33,0.0 +20095,71,21.5,11,0.0 +20095,32,32,30,0.0 +20095,69,36,20,0.0 +20095,1,18,18,0.0 +20095,36,19,4,0.0 +20095,75,7.75,12,0.0 +20095,77,13,7,0.0 +20095,24,4.5,50,0.0 +20095,29,123.79,41,0.0 +20095,3,10,25,0.0 +20095,11,21,11,0.0 +20095,5,21.35,37,0.0 +20095,42,14,38,0.0 +20095,6,25,37,0.0 +20095,39,18,34,0.0 +20095,70,15,4,0.0 +20095,40,18.4,10,0.0 +20095,67,14,17,0.0 +20095,12,38,40,0.0 +20095,56,38,35,0.0 +20095,34,14,26,0.0 +20095,25,14,32,0.0 +20095,50,16.25,2,0.0 +20095,44,19.45,39,0.0 +20095,47,9.5,9,0.0 +20095,8,40,42,0.0 +20095,22,21,29,0.0 +20095,26,31.23,48,0.0 +20095,68,12.5,33,0.0 +20095,38,263.5,13,0.0 +20095,74,10,48,0.0 +20095,60,34,28,0.0 +20095,35,18,18,0.0 +20095,16,17.45,29,0.0 +20095,61,28.5,11,0.0 +20095,52,7,35,0.0 +20095,30,25.89,14,0.0 +20095,54,7.45,3,0.0 +20095,4,22,30,0.0 +20095,63,43.9,18,0.0 +20096,28,45.6,26,0.0 +20096,16,17.45,23,0.0 +20096,38,263.5,22,0.0 +20096,23,9,48,0.0 +20096,42,14,37,0.0 +20096,52,7,17,0.0 +20096,53,32.8,3,0.0 +20096,26,31.23,18,0.0 +20096,30,25.89,19,0.0 +20096,48,12.75,44,0.0 +20096,4,22,36,0.0 +20096,3,10,40,0.0 +20096,9,97,10,0.0 +20096,19,9.2,30,0.0 +20096,49,20,3,0.0 +20096,37,26,50,0.0 +20096,18,62.5,22,0.0 +20096,39,18,45,0.0 +20096,66,17,44,0.0 +20096,36,19,43,0.0 +20096,1,18,24,0.0 +20096,22,21,3,0.0 +20096,55,24,15,0.0 +20096,47,9.5,43,0.0 +20096,29,123.79,6,0.0 +20096,5,21.35,38,0.0 +20096,11,21,44,0.0 +20096,70,15,33,0.0 +20096,54,7.45,34,0.0 +20096,68,12.5,9,0.0 +20096,40,18.4,40,0.0 +20096,57,19.5,39,0.0 +20096,20,81,12,0.0 +20096,15,15.5,6,0.0 +20096,63,43.9,24,0.0 +20096,43,46,21,0.0 +20096,41,9.65,4,0.0 +20097,10,31,7,0.0 +20097,17,39,25,0.0 +20098,56,38,11,0.0 +20098,54,7.45,40,0.0 +20098,37,26,47,0.0 +20098,62,49.3,26,0.0 +20098,76,18,4,0.0 +20098,52,7,2,0.0 +20098,33,2.5,3,0.0 +20098,17,39,20,0.0 +20098,49,20,4,0.0 +20098,31,12.5,50,0.0 +20098,42,14,26,0.0 +20098,27,43.9,5,0.0 +20098,44,19.45,19,0.0 +20098,53,32.8,15,0.0 +20098,73,15,43,0.0 +20098,25,14,47,0.0 +20098,24,4.5,8,0.0 +20098,51,53,45,0.0 +20098,36,19,17,0.0 +20098,32,32,38,0.0 +20098,48,12.75,7,0.0 +20098,75,7.75,47,0.0 +20098,41,9.65,23,0.0 +20098,30,25.89,4,0.0 +20098,67,14,39,0.0 +20098,66,17,38,0.0 +20098,70,15,31,0.0 +20098,65,21.05,7,0.0 +20098,68,12.5,40,0.0 +20098,69,36,6,0.0 +20098,8,40,40,0.0 +20098,72,34.8,28,0.0 +20098,23,9,29,0.0 +20098,46,12,3,0.0 +20098,38,263.5,18,0.0 +20098,47,9.5,50,0.0 +20098,21,10,39,0.0 +20098,12,38,28,0.0 +20098,40,18.4,43,0.0 +20098,50,16.25,23,0.0 +20098,77,13,40,0.0 +20098,61,28.5,50,0.0 +20098,6,25,18,0.0 +20098,26,31.23,19,0.0 +20098,10,31,16,0.0 +20099,58,13.25,24,0.0 +20099,62,49.3,47,0.0 +20099,12,38,46,0.0 +20099,11,21,37,0.0 +20099,60,34,34,0.0 +20099,5,21.35,38,0.0 +20099,73,15,25,0.0 +20099,27,43.9,47,0.0 +20099,26,31.23,20,0.0 +20099,66,17,34,0.0 +20099,37,26,26,0.0 +20099,57,19.5,35,0.0 +20099,7,30,29,0.0 +20099,65,21.05,2,0.0 +20099,68,12.5,49,0.0 +20099,35,18,44,0.0 +20099,67,14,40,0.0 +20099,76,18,15,0.0 +20099,44,19.45,32,0.0 +20099,36,19,2,0.0 +20099,16,17.45,46,0.0 +20099,48,12.75,11,0.0 +20099,42,14,32,0.0 +20099,18,62.5,5,0.0 +20099,69,36,1,0.0 +20099,14,23.25,9,0.0 +20099,71,21.5,8,0.0 +20099,45,9.5,49,0.0 +20099,3,10,2,0.0 +20099,1,18,48,0.0 +20099,33,2.5,26,0.0 +20099,20,81,29,0.0 +20099,13,6,3,0.0 +20100,40,18.4,41,0.0 +20100,4,22,15,0.0 +20100,56,38,17,0.0 +20100,50,16.25,27,0.0 +20100,64,33.25,20,0.0 +20100,14,23.25,27,0.0 +20100,74,10,44,0.0 +20100,44,19.45,21,0.0 +20100,32,32,32,0.0 +20100,48,12.75,13,0.0 +20100,21,10,48,0.0 +20100,12,38,30,0.0 +20100,62,49.3,39,0.0 +20100,63,43.9,8,0.0 +20100,18,62.5,41,0.0 +20100,52,7,20,0.0 +20100,27,43.9,25,0.0 +20100,42,14,1,0.0 +20100,43,46,1,0.0 +20100,71,21.5,42,0.0 +20100,29,123.79,9,0.0 +20100,45,9.5,46,0.0 +20100,47,9.5,49,0.0 +20101,41,9.65,32,0.0 +20101,73,15,36,0.0 +20101,18,62.5,40,0.0 +20101,50,16.25,14,0.0 +20101,54,7.45,30,0.0 +20101,46,12,46,0.0 +20101,20,81,3,0.0 +20101,34,14,29,0.0 +20101,39,18,32,0.0 +20101,5,21.35,50,0.0 +20101,45,9.5,40,0.0 +20101,59,55,4,0.0 +20101,68,12.5,26,0.0 +20101,67,14,42,0.0 +20101,51,53,21,0.0 +20101,22,21,46,0.0 +20101,11,21,29,0.0 +20101,48,12.75,41,0.0 +20101,32,32,42,0.0 +20101,61,28.5,25,0.0 +20101,4,22,47,0.0 +20101,49,20,25,0.0 +20101,33,2.5,6,0.0 +20101,44,19.45,43,0.0 +20101,35,18,48,0.0 +20101,74,10,26,0.0 +20101,63,43.9,42,0.0 +20101,13,6,43,0.0 +20101,66,17,34,0.0 +20101,27,43.9,21,0.0 +20101,10,31,15,0.0 +20101,52,7,48,0.0 +20101,62,49.3,34,0.0 +20101,3,10,30,0.0 +20102,48,12.75,28,0.0 +20102,37,26,17,0.0 +20102,30,25.89,14,0.0 +20102,50,16.25,37,0.0 +20102,5,21.35,19,0.0 +20102,47,9.5,24,0.0 +20102,4,22,35,0.0 +20102,77,13,22,0.0 +20102,27,43.9,37,0.0 +20102,17,39,13,0.0 +20102,67,14,46,0.0 +20102,10,31,31,0.0 +20102,55,24,36,0.0 +20102,19,9.2,40,0.0 +20102,76,18,10,0.0 +20102,7,30,27,0.0 +20102,15,15.5,37,0.0 +20102,60,34,33,0.0 +20102,12,38,30,0.0 +20102,75,7.75,48,0.0 +20102,14,23.25,1,0.0 +20102,22,21,10,0.0 +20102,9,97,4,0.0 +20102,53,32.8,3,0.0 +20102,38,263.5,11,0.0 +20102,65,21.05,25,0.0 +20102,74,10,24,0.0 +20102,11,21,12,0.0 +20102,23,9,33,0.0 +20102,18,62.5,30,0.0 +20102,36,19,36,0.0 +20102,57,19.5,40,0.0 +20102,43,46,26,0.0 +20102,70,15,19,0.0 +20103,30,25.89,48,0.0 +20103,70,15,18,0.0 +20103,64,33.25,45,0.0 +20103,48,12.75,15,0.0 +20103,52,7,7,0.0 +20103,63,43.9,31,0.0 +20103,69,36,22,0.0 +20103,13,6,12,0.0 +20103,77,13,43,0.0 +20103,76,18,33,0.0 +20103,16,17.45,27,0.0 +20103,24,4.5,23,0.0 +20103,38,263.5,25,0.0 +20103,14,23.25,19,0.0 +20103,32,32,43,0.0 +20103,1,18,21,0.0 +20103,27,43.9,18,0.0 +20103,26,31.23,24,0.0 +20103,4,22,26,0.0 +20103,50,16.25,19,0.0 +20103,58,13.25,5,0.0 +20103,23,9,48,0.0 +20103,49,20,47,0.0 +20103,42,14,44,0.0 +20103,45,9.5,37,0.0 +20103,11,21,27,0.0 +20103,28,45.6,4,0.0 +20103,67,14,26,0.0 +20103,44,19.45,1,0.0 +20103,9,97,40,0.0 +20103,12,38,22,0.0 +20103,7,30,43,0.0 +20103,65,21.05,34,0.0 +20103,53,32.8,39,0.0 +20103,5,21.35,6,0.0 +20103,75,7.75,37,0.0 +20103,62,49.3,46,0.0 +20103,40,18.4,9,0.0 +20103,41,9.65,46,0.0 +20103,22,21,5,0.0 +20103,35,18,20,0.0 +20103,15,15.5,35,0.0 +20103,73,15,7,0.0 +20103,51,53,49,0.0 +20103,74,10,9,0.0 +20103,8,40,7,0.0 +20103,60,34,39,0.0 +20103,66,17,11,0.0 +20103,20,81,3,0.0 +20103,18,62.5,26,0.0 +20103,29,123.79,35,0.0 +20103,61,28.5,6,0.0 +20103,2,19,14,0.0 +20103,17,39,26,0.0 +20103,37,26,19,0.0 +20103,59,55,25,0.0 +20103,31,12.5,5,0.0 +20103,25,14,28,0.0 +20103,56,38,22,0.0 +20103,36,19,2,0.0 +20103,54,7.45,35,0.0 +20103,34,14,2,0.0 +20103,6,25,39,0.0 +20103,71,21.5,23,0.0 +20103,33,2.5,21,0.0 +20103,57,19.5,34,0.0 +20103,19,9.2,29,0.0 +20103,47,9.5,18,0.0 +20103,21,10,7,0.0 +20103,46,12,7,0.0 +20103,3,10,50,0.0 +20104,51,53,42,0.0 +20104,33,2.5,14,0.0 +20104,11,21,1,0.0 +20104,43,46,42,0.0 +20104,32,32,4,0.0 +20104,26,31.23,48,0.0 +20104,14,23.25,8,0.0 +20104,66,17,14,0.0 +20104,2,19,24,0.0 +20104,67,14,21,0.0 +20104,44,19.45,25,0.0 +20104,31,12.5,46,0.0 +20104,59,55,34,0.0 +20104,29,123.79,39,0.0 +20104,1,18,18,0.0 +20104,73,15,24,0.0 +20104,42,14,41,0.0 +20104,12,38,25,0.0 +20104,3,10,39,0.0 +20104,71,21.5,38,0.0 +20104,55,24,10,0.0 +20104,62,49.3,36,0.0 +20104,68,12.5,2,0.0 +20104,75,7.75,41,0.0 +20104,30,25.89,36,0.0 +20104,63,43.9,2,0.0 +20104,39,18,26,0.0 +20104,28,45.6,43,0.0 +20104,18,62.5,33,0.0 +20104,50,16.25,38,0.0 +20104,64,33.25,40,0.0 +20104,35,18,40,0.0 +20104,60,34,33,0.0 +20104,56,38,11,0.0 +20104,69,36,31,0.0 +20104,46,12,14,0.0 +20104,27,43.9,21,0.0 +20104,57,19.5,39,0.0 +20104,48,12.75,21,0.0 +20104,37,26,22,0.0 +20104,6,25,18,0.0 +20105,21,10,23,0.0 +20106,59,55,36,0.0 +20106,20,81,40,0.0 +20106,36,19,22,0.0 +20106,44,19.45,19,0.0 +20106,31,12.5,11,0.0 +20106,34,14,7,0.0 +20106,27,43.9,17,0.0 +20106,51,53,3,0.0 +20106,69,36,47,0.0 +20106,24,4.5,43,0.0 +20106,7,30,22,0.0 +20106,76,18,43,0.0 +20106,23,9,33,0.0 +20106,47,9.5,25,0.0 +20106,71,21.5,4,0.0 +20106,45,9.5,37,0.0 +20106,64,33.25,37,0.0 +20106,18,62.5,12,0.0 +20106,40,18.4,25,0.0 +20106,50,16.25,13,0.0 +20106,4,22,36,0.0 +20106,19,9.2,40,0.0 +20106,32,32,33,0.0 +20106,63,43.9,45,0.0 +20106,21,10,19,0.0 +20106,49,20,16,0.0 +20106,33,2.5,49,0.0 +20106,66,17,24,0.0 +20106,22,21,30,0.0 +20106,74,10,40,0.0 +20106,62,49.3,33,0.0 +20106,13,6,25,0.0 +20106,11,21,50,0.0 +20106,72,34.8,28,0.0 +20106,46,12,46,0.0 +20106,77,13,45,0.0 +20106,42,14,4,0.0 +20106,65,21.05,34,0.0 +20106,1,18,12,0.0 +20106,14,23.25,33,0.0 +20106,8,40,47,0.0 +20106,43,46,42,0.0 +20106,9,97,18,0.0 +20106,68,12.5,50,0.0 +20106,53,32.8,34,0.0 +20106,55,24,42,0.0 +20106,26,31.23,8,0.0 +20106,16,17.45,21,0.0 +20106,38,263.5,29,0.0 +20106,35,18,37,0.0 +20106,52,7,4,0.0 +20106,39,18,28,0.0 +20106,2,19,12,0.0 +20106,6,25,22,0.0 +20106,25,14,1,0.0 +20106,67,14,11,0.0 +20106,75,7.75,30,0.0 +20106,10,31,40,0.0 +20106,28,45.6,37,0.0 +20106,70,15,9,0.0 +20106,73,15,7,0.0 +20106,30,25.89,39,0.0 +20106,5,21.35,33,0.0 +20106,3,10,42,0.0 +20106,17,39,19,0.0 +20106,41,9.65,16,0.0 +20106,12,38,18,0.0 +20106,48,12.75,46,0.0 +20106,60,34,42,0.0 +20106,61,28.5,3,0.0 +20106,29,123.79,47,0.0 +20106,15,15.5,37,0.0 +20106,56,38,9,0.0 +20107,34,14,42,0.0 +20107,60,34,19,0.0 +20107,14,23.25,28,0.0 +20107,36,19,10,0.0 +20107,74,10,38,0.0 +20107,6,25,41,0.0 +20107,53,32.8,16,0.0 +20107,18,62.5,20,0.0 +20107,9,97,34,0.0 +20107,65,21.05,19,0.0 +20107,11,21,32,0.0 +20107,52,7,35,0.0 +20107,3,10,25,0.0 +20107,30,25.89,25,0.0 +20107,24,4.5,26,0.0 +20107,33,2.5,39,0.0 +20107,69,36,2,0.0 +20107,77,13,6,0.0 +20107,48,12.75,20,0.0 +20107,71,21.5,24,0.0 +20107,13,6,5,0.0 +20107,27,43.9,15,0.0 +20107,16,17.45,35,0.0 +20107,51,53,25,0.0 +20107,1,18,34,0.0 +20107,28,45.6,43,0.0 +20107,55,24,42,0.0 +20107,31,12.5,26,0.0 +20107,10,31,11,0.0 +20107,25,14,50,0.0 +20107,50,16.25,6,0.0 +20107,63,43.9,28,0.0 +20107,46,12,32,0.0 +20107,38,263.5,40,0.0 +20107,39,18,41,0.0 +20107,26,31.23,39,0.0 +20107,56,38,35,0.0 +20107,68,12.5,43,0.0 +20107,22,21,38,0.0 +20107,37,26,10,0.0 +20107,62,49.3,27,0.0 +20107,41,9.65,17,0.0 +20107,5,21.35,39,0.0 +20107,21,10,38,0.0 +20107,20,81,28,0.0 +20107,43,46,48,0.0 +20107,45,9.5,4,0.0 +20107,32,32,14,0.0 +20107,2,19,5,0.0 +20107,67,14,2,0.0 +20107,54,7.45,18,0.0 +20107,23,9,8,0.0 +20107,61,28.5,36,0.0 +20107,8,40,44,0.0 +20107,4,22,6,0.0 +20107,64,33.25,4,0.0 +20107,49,20,39,0.0 +20107,44,19.45,3,0.0 +20107,75,7.75,5,0.0 +20107,19,9.2,17,0.0 +20107,40,18.4,4,0.0 +20107,12,38,24,0.0 +20107,66,17,21,0.0 +20107,29,123.79,22,0.0 +20107,7,30,3,0.0 +20107,58,13.25,23,0.0 +20107,73,15,34,0.0 +20107,15,15.5,45,0.0 +20107,47,9.5,27,0.0 +20107,76,18,17,0.0 +20108,56,38,29,0.0 +20108,17,39,39,0.0 +20108,77,13,13,0.0 +20108,57,19.5,28,0.0 +20108,50,16.25,37,0.0 +20108,28,45.6,21,0.0 +20108,22,21,42,0.0 +20108,37,26,30,0.0 +20108,45,9.5,43,0.0 +20108,32,32,47,0.0 +20108,55,24,39,0.0 +20108,52,7,16,0.0 +20108,63,43.9,38,0.0 +20108,41,9.65,36,0.0 +20108,21,10,32,0.0 +20109,20,81,37,0.0 +20109,65,21.05,50,0.0 +20109,13,6,39,0.0 +20109,4,22,41,0.0 +20109,45,9.5,42,0.0 +20109,58,13.25,15,0.0 +20109,74,10,17,0.0 +20109,30,25.89,50,0.0 +20109,33,2.5,30,0.0 +20109,46,12,28,0.0 +20109,53,32.8,29,0.0 +20109,19,9.2,49,0.0 +20109,9,97,47,0.0 +20109,28,45.6,39,0.0 +20109,59,55,39,0.0 +20109,56,38,10,0.0 +20109,22,21,18,0.0 +20109,15,15.5,41,0.0 +20109,6,25,21,0.0 +20109,63,43.9,1,0.0 +20109,70,15,36,0.0 +20109,51,53,21,0.0 +20109,23,9,8,0.0 +20109,69,36,6,0.0 +20109,10,31,43,0.0 +20109,71,21.5,43,0.0 +20109,73,15,37,0.0 +20109,16,17.45,14,0.0 +20109,72,34.8,10,0.0 +20109,5,21.35,38,0.0 +20109,40,18.4,46,0.0 +20109,44,19.45,17,0.0 +20109,2,19,50,0.0 +20109,52,7,42,0.0 +20109,60,34,47,0.0 +20109,3,10,37,0.0 +20109,54,7.45,34,0.0 +20109,49,20,1,0.0 +20109,36,19,24,0.0 +20109,64,33.25,8,0.0 +20109,77,13,15,0.0 +20109,37,26,28,0.0 +20109,12,38,19,0.0 +20109,61,28.5,13,0.0 +20109,7,30,46,0.0 +20109,75,7.75,34,0.0 +20109,68,12.5,43,0.0 +20109,1,18,11,0.0 +20109,48,12.75,39,0.0 +20109,31,12.5,22,0.0 +20109,39,18,35,0.0 +20109,14,23.25,28,0.0 +20109,42,14,2,0.0 +20109,25,14,3,0.0 +20109,67,14,18,0.0 +20109,55,24,20,0.0 +20109,41,9.65,28,0.0 +20109,27,43.9,27,0.0 +20109,43,46,18,0.0 +20109,47,9.5,43,0.0 +20109,62,49.3,19,0.0 +20109,57,19.5,43,0.0 +20109,34,14,17,0.0 +20109,66,17,18,0.0 +20109,8,40,17,0.0 +20109,17,39,18,0.0 +20109,29,123.79,3,0.0 +20110,33,2.5,50,0.0 +20110,56,38,18,0.0 +20110,23,9,15,0.0 +20110,54,7.45,29,0.0 +20110,11,21,37,0.0 +20110,9,97,10,0.0 +20110,3,10,43,0.0 +20110,50,16.25,34,0.0 +20110,75,7.75,35,0.0 +20110,30,25.89,1,0.0 +20110,7,30,43,0.0 +20110,55,24,32,0.0 +20110,40,18.4,14,0.0 +20110,74,10,3,0.0 +20110,36,19,13,0.0 +20110,49,20,33,0.0 +20110,35,18,11,0.0 +20110,52,7,46,0.0 +20110,68,12.5,42,0.0 +20110,15,15.5,27,0.0 +20110,6,25,28,0.0 +20110,42,14,1,0.0 +20110,12,38,28,0.0 +20110,17,39,42,0.0 +20110,13,6,49,0.0 +20110,16,17.45,15,0.0 +20110,58,13.25,31,0.0 +20110,38,263.5,28,0.0 +20110,59,55,15,0.0 +20110,73,15,1,0.0 +20110,27,43.9,38,0.0 +20110,51,53,16,0.0 +20110,10,31,11,0.0 +20110,18,62.5,5,0.0 +20110,39,18,23,0.0 +20110,34,14,48,0.0 +20110,71,21.5,42,0.0 +20110,72,34.8,41,0.0 +20110,22,21,22,0.0 +20111,48,12.75,34,0.0 +20111,15,15.5,12,0.0 +20111,74,10,39,0.0 +20111,71,21.5,27,0.0 +20111,14,23.25,11,0.0 +20111,24,4.5,22,0.0 +20111,5,21.35,11,0.0 +20111,47,9.5,31,0.0 +20111,55,24,22,0.0 +20111,32,32,32,0.0 +20111,66,17,22,0.0 +20111,75,7.75,18,0.0 +20111,57,19.5,14,0.0 +20111,46,12,22,0.0 +20111,35,18,34,0.0 +20111,49,20,22,0.0 +20111,59,55,40,0.0 +20111,53,32.8,27,0.0 +20111,20,81,23,0.0 +20111,37,26,36,0.0 +20111,50,16.25,25,0.0 +20111,41,9.65,10,0.0 +20111,39,18,24,0.0 +20111,23,9,38,0.0 +20111,73,15,29,0.0 +20111,77,13,5,0.0 +20111,3,10,23,0.0 +20111,31,12.5,29,0.0 +20111,68,12.5,49,0.0 +20111,18,62.5,42,0.0 +20111,22,21,29,0.0 +20111,44,19.45,7,0.0 +20111,76,18,23,0.0 +20111,2,19,6,0.0 +20111,28,45.6,28,0.0 +20111,25,14,28,0.0 +20111,6,25,16,0.0 +20111,27,43.9,15,0.0 +20111,63,43.9,5,0.0 +20111,11,21,10,0.0 +20111,12,38,24,0.0 +20111,54,7.45,21,0.0 +20111,7,30,25,0.0 +20111,30,25.89,20,0.0 +20111,16,17.45,38,0.0 +20111,21,10,28,0.0 +20111,29,123.79,21,0.0 +20111,38,263.5,34,0.0 +20111,42,14,25,0.0 +20111,64,33.25,48,0.0 +20111,69,36,25,0.0 +20111,26,31.23,4,0.0 +20111,36,19,20,0.0 +20111,40,18.4,26,0.0 +20111,51,53,22,0.0 +20111,56,38,38,0.0 +20111,72,34.8,14,0.0 +20111,65,21.05,26,0.0 +20111,19,9.2,48,0.0 +20111,8,40,3,0.0 +20111,17,39,20,0.0 +20111,4,22,48,0.0 +20111,43,46,36,0.0 +20111,60,34,3,0.0 +20111,52,7,45,0.0 +20111,70,15,40,0.0 +20111,10,31,2,0.0 +20111,61,28.5,40,0.0 +20111,67,14,22,0.0 +20111,45,9.5,9,0.0 +20111,1,18,20,0.0 +20111,9,97,32,0.0 +20111,13,6,10,0.0 +20111,62,49.3,17,0.0 +20111,34,14,1,0.0 +20111,58,13.25,24,0.0 +20111,33,2.5,48,0.0 +20112,63,43.9,6,0.0 +20112,7,30,20,0.0 +20112,45,9.5,26,0.0 +20112,13,6,39,0.0 +20112,35,18,2,0.0 +20112,39,18,16,0.0 +20112,22,21,41,0.0 +20112,37,26,15,0.0 +20112,60,34,41,0.0 +20112,12,38,37,0.0 +20112,46,12,13,0.0 +20112,49,20,35,0.0 +20112,30,25.89,15,0.0 +20112,34,14,15,0.0 +20112,18,62.5,32,0.0 +20112,52,7,5,0.0 +20112,33,2.5,33,0.0 +20112,76,18,35,0.0 +20112,26,31.23,49,0.0 +20112,65,21.05,19,0.0 +20112,25,14,21,0.0 +20112,74,10,47,0.0 +20112,56,38,50,0.0 +20112,14,23.25,48,0.0 +20112,19,9.2,14,0.0 +20112,57,19.5,4,0.0 +20112,21,10,48,0.0 +20112,77,13,27,0.0 +20112,75,7.75,22,0.0 +20112,8,40,39,0.0 +20112,50,16.25,49,0.0 +20112,47,9.5,26,0.0 +20112,5,21.35,49,0.0 +20112,44,19.45,45,0.0 +20112,20,81,41,0.0 +20112,3,10,26,0.0 +20112,66,17,8,0.0 +20112,38,263.5,38,0.0 +20112,31,12.5,50,0.0 +20112,29,123.79,34,0.0 +20112,70,15,7,0.0 +20112,16,17.45,18,0.0 +20112,1,18,41,0.0 +20112,41,9.65,2,0.0 +20112,11,21,14,0.0 +20112,51,53,36,0.0 +20113,55,24,22,0.0 +20113,38,263.5,26,0.0 +20113,35,18,19,0.0 +20113,8,40,36,0.0 +20113,29,123.79,19,0.0 +20113,64,33.25,49,0.0 +20113,37,26,10,0.0 +20113,22,21,29,0.0 +20113,24,4.5,18,0.0 +20113,43,46,23,0.0 +20113,41,9.65,48,0.0 +20113,34,14,30,0.0 +20113,20,81,2,0.0 +20113,23,9,7,0.0 +20113,5,21.35,45,0.0 +20113,2,19,29,0.0 +20113,17,39,24,0.0 +20113,46,12,16,0.0 +20113,39,18,44,0.0 +20113,66,17,32,0.0 +20113,27,43.9,27,0.0 +20113,68,12.5,14,0.0 +20113,13,6,18,0.0 +20113,19,9.2,9,0.0 +20113,61,28.5,13,0.0 +20113,7,30,10,0.0 +20113,56,38,40,0.0 +20113,59,55,43,0.0 +20113,1,18,27,0.0 +20113,18,62.5,20,0.0 +20113,52,7,33,0.0 +20113,57,19.5,34,0.0 +20113,71,21.5,4,0.0 +20113,26,31.23,34,0.0 +20113,67,14,36,0.0 +20113,21,10,32,0.0 +20114,38,263.5,23,0.0 +20114,32,32,35,0.0 +20114,43,46,42,0.0 +20114,1,18,30,0.0 +20114,4,22,41,0.0 +20114,6,25,29,0.0 +20114,36,19,40,0.0 +20114,17,39,13,0.0 +20114,34,14,45,0.0 +20114,60,34,19,0.0 +20114,26,31.23,18,0.0 +20114,50,16.25,48,0.0 +20114,58,13.25,41,0.0 +20114,75,7.75,25,0.0 +20114,31,12.5,40,0.0 +20114,49,20,5,0.0 +20114,48,12.75,37,0.0 +20114,70,15,17,0.0 +20114,57,19.5,25,0.0 +20114,9,97,31,0.0 +20114,18,62.5,12,0.0 +20114,62,49.3,30,0.0 +20114,56,38,49,0.0 +20114,28,45.6,17,0.0 +20114,8,40,20,0.0 +20114,55,24,21,0.0 +20114,69,36,45,0.0 +20114,15,15.5,34,0.0 +20114,41,9.65,48,0.0 +20114,7,30,6,0.0 +20114,74,10,23,0.0 +20114,47,9.5,14,0.0 +20114,64,33.25,26,0.0 +20114,40,18.4,26,0.0 +20114,35,18,19,0.0 +20114,61,28.5,49,0.0 +20114,46,12,7,0.0 +20114,52,7,6,0.0 +20114,19,9.2,43,0.0 +20114,37,26,24,0.0 +20114,54,7.45,10,0.0 +20114,16,17.45,2,0.0 +20114,63,43.9,19,0.0 +20114,65,21.05,7,0.0 +20114,29,123.79,28,0.0 +20114,5,21.35,48,0.0 +20114,20,81,5,0.0 +20114,45,9.5,5,0.0 +20114,27,43.9,9,0.0 +20114,77,13,44,0.0 +20114,11,21,26,0.0 +20114,22,21,50,0.0 +20114,12,38,26,0.0 +20114,39,18,28,0.0 +20115,37,26,27,0.0 +20115,33,2.5,48,0.0 +20115,72,34.8,50,0.0 +20115,25,14,45,0.0 +20115,22,21,6,0.0 +20115,29,123.79,36,0.0 +20115,27,43.9,46,0.0 +20115,10,31,8,0.0 +20115,74,10,15,0.0 +20115,38,263.5,19,0.0 +20115,60,34,36,0.0 +20115,67,14,36,0.0 +20115,20,81,13,0.0 +20115,54,7.45,47,0.0 +20115,3,10,20,0.0 +20115,71,21.5,37,0.0 +20115,46,12,10,0.0 +20115,28,45.6,12,0.0 +20115,49,20,22,0.0 +20115,34,14,13,0.0 +20115,73,15,36,0.0 +20115,24,4.5,32,0.0 +20115,56,38,49,0.0 +20115,63,43.9,13,0.0 +20115,57,19.5,46,0.0 +20115,48,12.75,50,0.0 +20115,19,9.2,17,0.0 +20115,18,62.5,6,0.0 +20115,58,13.25,48,0.0 +20115,30,25.89,30,0.0 +20115,61,28.5,41,0.0 +20115,21,10,16,0.0 +20115,50,16.25,19,0.0 +20115,5,21.35,22,0.0 +20115,44,19.45,30,0.0 +20115,14,23.25,49,0.0 +20116,28,45.6,35,0.0 +20116,30,25.89,11,0.0 +20116,59,55,27,0.0 +20116,56,38,9,0.0 +20116,40,18.4,44,0.0 +20116,37,26,1,0.0 +20116,42,14,5,0.0 +20116,19,9.2,9,0.0 +20116,70,15,8,0.0 +20116,9,97,34,0.0 +20116,49,20,21,0.0 +20116,39,18,39,0.0 +20116,34,14,14,0.0 +20116,60,34,44,0.0 +20116,3,10,10,0.0 +20116,23,9,39,0.0 +20116,11,21,37,0.0 +20116,67,14,34,0.0 +20116,41,9.65,50,0.0 +20116,43,46,25,0.0 +20116,16,17.45,50,0.0 +20116,74,10,46,0.0 +20116,36,19,11,0.0 +20116,45,9.5,9,0.0 +20116,6,25,5,0.0 +20116,47,9.5,6,0.0 +20116,13,6,48,0.0 +20116,55,24,45,0.0 +20116,64,33.25,16,0.0 +20116,4,22,47,0.0 +20116,48,12.75,16,0.0 +20116,51,53,3,0.0 +20116,7,30,38,0.0 +20116,29,123.79,20,0.0 +20116,18,62.5,23,0.0 +20116,33,2.5,3,0.0 +20116,38,263.5,46,0.0 +20116,5,21.35,19,0.0 +20116,12,38,6,0.0 +20116,77,13,8,0.0 +20116,76,18,23,0.0 +20116,61,28.5,37,0.0 +20116,62,49.3,46,0.0 +20116,53,32.8,16,0.0 +20116,52,7,33,0.0 +20116,63,43.9,24,0.0 +20116,17,39,28,0.0 +20116,58,13.25,35,0.0 +20116,24,4.5,25,0.0 +20116,35,18,28,0.0 +20116,21,10,17,0.0 +20116,25,14,4,0.0 +20116,57,19.5,23,0.0 +20116,27,43.9,36,0.0 +20116,68,12.5,18,0.0 +20116,26,31.23,34,0.0 +20116,8,40,44,0.0 +20117,64,33.25,37,0.0 +20117,11,21,2,0.0 +20117,48,12.75,24,0.0 +20117,32,32,29,0.0 +20117,21,10,49,0.0 +20117,34,14,8,0.0 +20117,50,16.25,49,0.0 +20117,5,21.35,24,0.0 +20117,33,2.5,31,0.0 +20117,68,12.5,29,0.0 +20117,63,43.9,26,0.0 +20117,10,31,3,0.0 +20117,26,31.23,46,0.0 +20117,36,19,23,0.0 +20117,60,34,37,0.0 +20117,4,22,37,0.0 +20117,16,17.45,28,0.0 +20117,45,9.5,50,0.0 +20117,55,24,49,0.0 +20117,72,34.8,3,0.0 +20117,12,38,17,0.0 +20117,17,39,43,0.0 +20117,6,25,34,0.0 +20117,24,4.5,16,0.0 +20117,29,123.79,40,0.0 +20117,58,13.25,27,0.0 +20117,65,21.05,29,0.0 +20118,56,38,44,0.0 +20118,75,7.75,49,0.0 +20118,4,22,26,0.0 +20118,2,19,13,0.0 +20118,9,97,32,0.0 +20118,12,38,12,0.0 +20118,38,263.5,4,0.0 +20118,1,18,48,0.0 +20118,16,17.45,38,0.0 +20118,44,19.45,2,0.0 +20118,68,12.5,50,0.0 +20118,11,21,14,0.0 +20118,39,18,27,0.0 +20118,7,30,22,0.0 +20118,71,21.5,28,0.0 +20118,5,21.35,38,0.0 +20118,77,13,49,0.0 +20118,24,4.5,16,0.0 +20118,63,43.9,28,0.0 +20118,62,49.3,43,0.0 +20118,67,14,37,0.0 +20118,45,9.5,46,0.0 +20118,64,33.25,33,0.0 +20118,65,21.05,42,0.0 +20118,76,18,42,0.0 +20118,41,9.65,36,0.0 +20118,14,23.25,19,0.0 +20118,23,9,5,0.0 +20118,69,36,32,0.0 +20118,22,21,3,0.0 +20118,10,31,20,0.0 +20118,47,9.5,36,0.0 +20118,36,19,28,0.0 +20118,37,26,11,0.0 +20118,33,2.5,22,0.0 +20118,18,62.5,3,0.0 +20118,35,18,41,0.0 +20118,43,46,33,0.0 +20118,66,17,6,0.0 +20118,28,45.6,36,0.0 +20118,59,55,24,0.0 +20118,25,14,26,0.0 +20118,46,12,4,0.0 +20118,8,40,13,0.0 +20118,19,9.2,3,0.0 +20118,54,7.45,36,0.0 +20118,40,18.4,47,0.0 +20118,58,13.25,36,0.0 +20118,27,43.9,20,0.0 +20118,20,81,9,0.0 +20118,60,34,29,0.0 +20118,6,25,32,0.0 +20118,48,12.75,29,0.0 +20118,31,12.5,46,0.0 +20118,29,123.79,9,0.0 +20118,3,10,44,0.0 +20118,53,32.8,28,0.0 +20118,21,10,24,0.0 +20118,42,14,1,0.0 +20118,55,24,19,0.0 +20118,70,15,15,0.0 +20118,72,34.8,36,0.0 +20118,26,31.23,28,0.0 +20118,13,6,29,0.0 +20118,57,19.5,29,0.0 +20118,50,16.25,17,0.0 +20118,73,15,20,0.0 +20118,74,10,46,0.0 +20118,32,32,25,0.0 +20119,67,14,20,0.0 +20119,74,10,14,0.0 +20119,54,7.45,26,0.0 +20119,21,10,48,0.0 +20119,26,31.23,3,0.0 +20119,35,18,43,0.0 +20119,7,30,23,0.0 +20119,29,123.79,25,0.0 +20119,51,53,15,0.0 +20119,14,23.25,45,0.0 +20119,61,28.5,14,0.0 +20119,34,14,24,0.0 +20119,45,9.5,37,0.0 +20119,71,21.5,7,0.0 +20119,16,17.45,35,0.0 +20119,30,25.89,16,0.0 +20119,66,17,9,0.0 +20119,60,34,39,0.0 +20119,12,38,9,0.0 +20119,70,15,42,0.0 +20119,38,263.5,28,0.0 +20119,65,21.05,34,0.0 +20119,1,18,16,0.0 +20119,19,9.2,32,0.0 +20119,22,21,24,0.0 +20119,11,21,7,0.0 +20119,50,16.25,7,0.0 +20119,33,2.5,17,0.0 +20119,40,18.4,50,0.0 +20119,46,12,20,0.0 +20120,68,12.5,12,0.0 +20120,25,14,47,0.0 +20120,44,19.45,1,0.0 +20120,56,38,46,0.0 +20120,64,33.25,18,0.0 +20120,50,16.25,47,0.0 +20120,39,18,41,0.0 +20120,28,45.6,33,0.0 +20120,71,21.5,29,0.0 +20120,38,263.5,38,0.0 +20120,40,18.4,23,0.0 +20120,5,21.35,24,0.0 +20120,34,14,50,0.0 +20120,48,12.75,36,0.0 +20120,75,7.75,13,0.0 +20120,18,62.5,23,0.0 +20120,26,31.23,27,0.0 +20120,42,14,36,0.0 +20120,22,21,36,0.0 +20120,63,43.9,29,0.0 +20120,31,12.5,41,0.0 +20120,24,4.5,39,0.0 +20120,3,10,41,0.0 +20120,16,17.45,1,0.0 +20120,1,18,15,0.0 +20120,59,55,9,0.0 +20120,4,22,50,0.0 +20120,19,9.2,48,0.0 +20120,54,7.45,39,0.0 +20120,53,32.8,37,0.0 +20120,23,9,13,0.0 +20120,47,9.5,44,0.0 +20120,27,43.9,35,0.0 +20120,72,34.8,18,0.0 +20120,8,40,16,0.0 +20120,76,18,48,0.0 +20120,46,12,36,0.0 +20120,73,15,44,0.0 +20120,35,18,25,0.0 +20120,7,30,5,0.0 +20120,62,49.3,39,0.0 +20120,12,38,21,0.0 +20120,33,2.5,36,0.0 +20120,52,7,46,0.0 +20120,45,9.5,7,0.0 +20120,51,53,9,0.0 +20120,60,34,22,0.0 +20120,10,31,20,0.0 +20120,13,6,21,0.0 +20120,43,46,20,0.0 +20120,66,17,18,0.0 +20120,21,10,21,0.0 +20120,77,13,33,0.0 +20121,4,22,8,0.0 +20121,69,36,28,0.0 +20121,51,53,5,0.0 +20121,11,21,9,0.0 +20121,42,14,3,0.0 +20121,64,33.25,7,0.0 +20121,34,14,25,0.0 +20121,77,13,8,0.0 +20121,41,9.65,41,0.0 +20121,73,15,34,0.0 +20121,44,19.45,1,0.0 +20122,22,21,33,0.0 +20122,58,13.25,1,0.0 +20122,56,38,1,0.0 +20122,68,12.5,43,0.0 +20122,29,123.79,17,0.0 +20122,21,10,49,0.0 +20122,67,14,21,0.0 +20122,18,62.5,28,0.0 +20122,20,81,8,0.0 +20122,69,36,48,0.0 +20122,23,9,38,0.0 +20122,38,263.5,27,0.0 +20122,51,53,38,0.0 +20122,7,30,50,0.0 +20122,3,10,16,0.0 +20122,43,46,28,0.0 +20122,5,21.35,40,0.0 +20122,30,25.89,1,0.0 +20122,46,12,39,0.0 +20122,72,34.8,19,0.0 +20122,70,15,10,0.0 +20122,57,19.5,4,0.0 +20122,64,33.25,40,0.0 +20123,43,46,6,0.0 +20123,9,97,46,0.0 +20123,21,10,43,0.0 +20123,58,13.25,31,0.0 +20123,34,14,10,0.0 +20123,70,15,50,0.0 +20123,41,9.65,19,0.0 +20123,7,30,12,0.0 +20123,66,17,36,0.0 +20123,40,18.4,37,0.0 +20123,4,22,33,0.0 +20123,19,9.2,14,0.0 +20123,63,43.9,25,0.0 +20123,50,16.25,38,0.0 +20123,76,18,18,0.0 +20123,42,14,38,0.0 +20123,20,81,4,0.0 +20123,29,123.79,42,0.0 +20123,64,33.25,26,0.0 +20123,49,20,4,0.0 +20123,10,31,44,0.0 +20123,72,34.8,15,0.0 +20123,22,21,5,0.0 +20123,51,53,10,0.0 +20123,13,6,47,0.0 +20123,6,25,20,0.0 +20123,31,12.5,32,0.0 +20123,32,32,2,0.0 +20123,65,21.05,37,0.0 +20123,37,26,31,0.0 +20123,28,45.6,4,0.0 +20123,3,10,7,0.0 +20123,77,13,4,0.0 +20124,13,6,31,0.0 +20124,69,36,32,0.0 +20124,52,7,2,0.0 +20124,10,31,2,0.0 +20124,50,16.25,18,0.0 +20124,62,49.3,23,0.0 +20124,57,19.5,33,0.0 +20124,54,7.45,12,0.0 +20124,51,53,27,0.0 +20124,44,19.45,42,0.0 +20124,9,97,41,0.0 +20124,3,10,27,0.0 +20124,30,25.89,41,0.0 +20124,33,2.5,5,0.0 +20124,67,14,4,0.0 +20124,71,21.5,37,0.0 +20124,70,15,8,0.0 +20124,73,15,11,0.0 +20124,53,32.8,40,0.0 +20124,31,12.5,33,0.0 +20124,21,10,21,0.0 +20124,19,9.2,46,0.0 +20124,75,7.75,14,0.0 +20124,11,21,41,0.0 +20124,68,12.5,10,0.0 +20124,63,43.9,25,0.0 +20124,49,20,16,0.0 +20124,72,34.8,22,0.0 +20124,20,81,32,0.0 +20124,8,40,48,0.0 +20124,34,14,47,0.0 +20124,74,10,39,0.0 +20124,36,19,23,0.0 +20124,14,23.25,35,0.0 +20124,25,14,20,0.0 +20124,23,9,1,0.0 +20124,28,45.6,25,0.0 +20124,17,39,21,0.0 +20124,41,9.65,39,0.0 +20124,77,13,32,0.0 +20124,42,14,19,0.0 +20124,22,21,29,0.0 +20124,58,13.25,12,0.0 +20124,29,123.79,5,0.0 +20124,47,9.5,23,0.0 +20124,45,9.5,30,0.0 +20124,38,263.5,44,0.0 +20124,56,38,42,0.0 +20124,5,21.35,27,0.0 +20124,59,55,16,0.0 +20124,12,38,42,0.0 +20124,40,18.4,11,0.0 +20124,61,28.5,27,0.0 +20124,4,22,8,0.0 +20124,35,18,13,0.0 +20124,27,43.9,6,0.0 +20124,16,17.45,1,0.0 +20125,44,19.45,26,0.0 +20125,46,12,18,0.0 +20125,36,19,20,0.0 +20125,55,24,42,0.0 +20125,63,43.9,45,0.0 +20125,48,12.75,40,0.0 +20125,14,23.25,1,0.0 +20125,39,18,42,0.0 +20125,30,25.89,3,0.0 +20125,47,9.5,44,0.0 +20125,59,55,29,0.0 +20125,62,49.3,1,0.0 +20125,64,33.25,48,0.0 +20125,45,9.5,8,0.0 +20125,34,14,39,0.0 +20125,1,18,13,0.0 +20125,17,39,27,0.0 +20125,12,38,4,0.0 +20125,21,10,44,0.0 +20125,67,14,31,0.0 +20125,38,263.5,39,0.0 +20125,29,123.79,26,0.0 +20125,22,21,46,0.0 +20125,15,15.5,14,0.0 +20125,66,17,2,0.0 +20125,54,7.45,42,0.0 +20125,23,9,7,0.0 +20125,7,30,9,0.0 +20125,58,13.25,47,0.0 +20125,9,97,30,0.0 +20125,3,10,37,0.0 +20125,24,4.5,41,0.0 +20125,8,40,15,0.0 +20125,61,28.5,34,0.0 +20125,77,13,20,0.0 +20125,37,26,30,0.0 +20125,18,62.5,48,0.0 +20125,16,17.45,9,0.0 +20125,69,36,4,0.0 +20125,35,18,43,0.0 +20125,57,19.5,11,0.0 +20125,43,46,36,0.0 +20126,51,53,45,0.0 +20126,69,36,16,0.0 +20126,23,9,5,0.0 +20126,24,4.5,7,0.0 +20126,74,10,10,0.0 +20126,28,45.6,37,0.0 +20126,44,19.45,7,0.0 +20126,64,33.25,23,0.0 +20126,6,25,48,0.0 +20126,20,81,36,0.0 +20127,7,30,36,0.0 +20127,70,15,40,0.0 +20127,2,19,20,0.0 +20127,65,21.05,50,0.0 +20127,31,12.5,42,0.0 +20127,73,15,47,0.0 +20127,53,32.8,1,0.0 +20127,55,24,3,0.0 +20127,62,49.3,44,0.0 +20127,11,21,41,0.0 +20127,68,12.5,38,0.0 +20127,66,17,15,0.0 +20127,19,9.2,37,0.0 +20127,32,32,43,0.0 +20127,28,45.6,30,0.0 +20127,36,19,41,0.0 +20127,4,22,4,0.0 +20127,12,38,46,0.0 +20127,40,18.4,10,0.0 +20127,22,21,15,0.0 +20127,60,34,2,0.0 +20127,43,46,4,0.0 +20127,57,19.5,44,0.0 +20127,56,38,21,0.0 +20127,21,10,6,0.0 +20127,42,14,28,0.0 +20127,8,40,37,0.0 +20127,64,33.25,22,0.0 +20127,61,28.5,50,0.0 +20127,23,9,39,0.0 +20127,13,6,30,0.0 +20127,3,10,5,0.0 +20127,75,7.75,24,0.0 +20127,52,7,30,0.0 +20127,10,31,45,0.0 +20127,54,7.45,30,0.0 +20127,44,19.45,38,0.0 +20127,49,20,45,0.0 +20127,48,12.75,4,0.0 +20127,9,97,18,0.0 +20127,29,123.79,15,0.0 +20127,1,18,17,0.0 +20127,38,263.5,40,0.0 +20127,67,14,39,0.0 +20127,20,81,25,0.0 +20127,5,21.35,43,0.0 +20127,76,18,1,0.0 +20127,72,34.8,41,0.0 +20127,27,43.9,37,0.0 +20127,71,21.5,29,0.0 +20127,15,15.5,33,0.0 +20127,33,2.5,13,0.0 +20127,34,14,30,0.0 +20127,14,23.25,50,0.0 +20127,24,4.5,30,0.0 +20127,50,16.25,16,0.0 +20127,25,14,36,0.0 +20127,18,62.5,29,0.0 +20127,16,17.45,35,0.0 +20127,47,9.5,44,0.0 +20127,63,43.9,3,0.0 +20127,59,55,24,0.0 +20127,35,18,3,0.0 +20128,28,45.6,29,0.0 +20128,62,49.3,48,0.0 +20128,58,13.25,43,0.0 +20128,36,19,48,0.0 +20128,6,25,31,0.0 +20128,43,46,36,0.0 +20128,41,9.65,17,0.0 +20128,26,31.23,25,0.0 +20128,19,9.2,6,0.0 +20128,54,7.45,9,0.0 +20128,23,9,29,0.0 +20128,15,15.5,29,0.0 +20128,24,4.5,48,0.0 +20128,37,26,1,0.0 +20128,57,19.5,18,0.0 +20128,66,17,31,0.0 +20128,21,10,9,0.0 +20128,69,36,26,0.0 +20128,39,18,48,0.0 +20128,72,34.8,29,0.0 +20128,20,81,46,0.0 +20128,71,21.5,11,0.0 +20128,59,55,5,0.0 +20129,32,32,43,0.0 +20129,47,9.5,39,0.0 +20129,70,15,20,0.0 +20129,36,19,28,0.0 +20129,40,18.4,6,0.0 +20129,35,18,11,0.0 +20129,22,21,23,0.0 +20129,71,21.5,43,0.0 +20129,51,53,48,0.0 +20129,61,28.5,14,0.0 +20129,23,9,42,0.0 +20129,20,81,16,0.0 +20129,15,15.5,6,0.0 +20129,42,14,21,0.0 +20129,54,7.45,48,0.0 +20129,37,26,24,0.0 +20130,46,12,40,0.0 +20130,9,97,5,0.0 +20130,22,21,7,0.0 +20130,62,49.3,44,0.0 +20131,3,10,38,0.0 +20131,34,14,5,0.0 +20131,58,13.25,48,0.0 +20131,38,263.5,36,0.0 +20131,57,19.5,35,0.0 +20131,69,36,23,0.0 +20131,75,7.75,49,0.0 +20131,61,28.5,23,0.0 +20131,73,15,19,0.0 +20131,39,18,4,0.0 +20131,26,31.23,40,0.0 +20131,13,6,19,0.0 +20131,56,38,48,0.0 +20131,8,40,21,0.0 +20131,48,12.75,31,0.0 +20131,30,25.89,16,0.0 +20131,66,17,10,0.0 +20131,49,20,10,0.0 +20131,28,45.6,32,0.0 +20131,52,7,28,0.0 +20131,51,53,42,0.0 +20131,43,46,50,0.0 +20131,72,34.8,39,0.0 +20131,36,19,39,0.0 +20131,71,21.5,44,0.0 +20131,23,9,25,0.0 +20131,40,18.4,29,0.0 +20131,9,97,49,0.0 +20131,68,12.5,38,0.0 +20131,67,14,37,0.0 +20131,21,10,27,0.0 +20131,70,15,6,0.0 +20131,33,2.5,30,0.0 +20131,27,43.9,50,0.0 +20131,7,30,18,0.0 +20131,74,10,44,0.0 +20131,16,17.45,7,0.0 +20131,44,19.45,20,0.0 +20131,46,12,36,0.0 +20132,2,19,2,0.0 +20132,43,46,9,0.0 +20132,9,97,33,0.0 +20132,26,31.23,50,0.0 +20132,71,21.5,17,0.0 +20132,1,18,23,0.0 +20132,68,12.5,40,0.0 +20132,4,22,3,0.0 +20132,30,25.89,26,0.0 +20132,19,9.2,36,0.0 +20132,15,15.5,47,0.0 +20132,58,13.25,11,0.0 +20132,59,55,2,0.0 +20132,57,19.5,4,0.0 +20132,54,7.45,39,0.0 +20132,20,81,9,0.0 +20132,63,43.9,38,0.0 +20132,53,32.8,23,0.0 +20132,11,21,15,0.0 +20132,55,24,44,0.0 +20132,73,15,35,0.0 +20132,52,7,36,0.0 +20132,70,15,15,0.0 +20132,44,19.45,22,0.0 +20132,28,45.6,32,0.0 +20132,50,16.25,40,0.0 +20132,42,14,16,0.0 +20132,76,18,14,0.0 +20132,18,62.5,33,0.0 +20132,75,7.75,22,0.0 +20132,3,10,24,0.0 +20132,65,21.05,11,0.0 +20132,56,38,32,0.0 +20132,66,17,43,0.0 +20132,45,9.5,42,0.0 +20132,62,49.3,3,0.0 +20132,46,12,29,0.0 +20132,31,12.5,31,0.0 +20132,12,38,34,0.0 +20132,61,28.5,20,0.0 +20132,49,20,26,0.0 +20132,40,18.4,36,0.0 +20132,21,10,19,0.0 +20132,77,13,8,0.0 +20132,32,32,40,0.0 +20132,36,19,15,0.0 +20132,5,21.35,6,0.0 +20132,69,36,23,0.0 +20132,29,123.79,15,0.0 +20132,51,53,1,0.0 +20132,24,4.5,26,0.0 +20132,34,14,30,0.0 +20132,13,6,20,0.0 +20132,64,33.25,45,0.0 +20132,8,40,34,0.0 +20132,25,14,24,0.0 +20132,39,18,40,0.0 +20132,74,10,15,0.0 +20132,72,34.8,32,0.0 +20133,76,18,2,0.0 +20133,70,15,49,0.0 +20133,44,19.45,17,0.0 +20133,17,39,17,0.0 +20133,9,97,50,0.0 +20133,31,12.5,29,0.0 +20133,26,31.23,31,0.0 +20133,66,17,22,0.0 +20133,11,21,33,0.0 +20133,43,46,12,0.0 +20133,61,28.5,45,0.0 +20133,71,21.5,14,0.0 +20133,74,10,46,0.0 +20133,77,13,38,0.0 +20133,69,36,1,0.0 +20133,23,9,49,0.0 +20133,42,14,35,0.0 +20133,19,9.2,35,0.0 +20133,14,23.25,32,0.0 +20133,28,45.6,14,0.0 +20133,12,38,33,0.0 +20133,10,31,25,0.0 +20133,1,18,26,0.0 +20133,67,14,2,0.0 +20133,32,32,7,0.0 +20133,15,15.5,48,0.0 +20133,20,81,50,0.0 +20133,51,53,21,0.0 +20133,3,10,3,0.0 +20133,40,18.4,33,0.0 +20133,58,13.25,31,0.0 +20133,36,19,19,0.0 +20133,39,18,2,0.0 +20133,45,9.5,46,0.0 +20133,21,10,32,0.0 +20133,27,43.9,26,0.0 +20133,55,24,42,0.0 +20133,33,2.5,32,0.0 +20133,24,4.5,39,0.0 +20133,18,62.5,7,0.0 +20133,49,20,14,0.0 +20133,22,21,4,0.0 +20133,53,32.8,40,0.0 +20133,6,25,39,0.0 +20133,29,123.79,11,0.0 +20133,54,7.45,25,0.0 +20133,30,25.89,9,0.0 +20133,16,17.45,17,0.0 +20133,62,49.3,23,0.0 +20133,72,34.8,2,0.0 +20133,8,40,46,0.0 +20133,7,30,33,0.0 +20133,25,14,30,0.0 +20133,46,12,8,0.0 +20133,56,38,30,0.0 +20133,50,16.25,12,0.0 +20134,14,23.25,6,0.0 +20134,37,26,14,0.0 +20134,65,21.05,34,0.0 +20134,34,14,31,0.0 +20134,59,55,22,0.0 +20134,11,21,15,0.0 +20134,47,9.5,10,0.0 +20134,26,31.23,24,0.0 +20134,8,40,38,0.0 +20134,30,25.89,23,0.0 +20134,41,9.65,20,0.0 +20134,57,19.5,28,0.0 +20134,22,21,21,0.0 +20134,54,7.45,29,0.0 +20134,16,17.45,11,0.0 +20134,61,28.5,45,0.0 +20134,1,18,30,0.0 +20134,42,14,34,0.0 +20134,69,36,29,0.0 +20134,76,18,16,0.0 +20134,72,34.8,34,0.0 +20134,17,39,8,0.0 +20134,15,15.5,14,0.0 +20134,2,19,24,0.0 +20134,24,4.5,40,0.0 +20134,35,18,22,0.0 +20134,48,12.75,27,0.0 +20134,29,123.79,35,0.0 +20134,49,20,6,0.0 +20134,36,19,15,0.0 +20134,33,2.5,37,0.0 +20134,31,12.5,47,0.0 +20134,77,13,18,0.0 +20134,44,19.45,23,0.0 +20134,19,9.2,16,0.0 +20134,23,9,25,0.0 +20134,75,7.75,27,0.0 +20134,7,30,45,0.0 +20134,9,97,47,0.0 +20134,66,17,22,0.0 +20134,70,15,44,0.0 +20134,25,14,4,0.0 +20134,43,46,22,0.0 +20134,74,10,36,0.0 +20134,3,10,23,0.0 +20134,51,53,50,0.0 +20134,67,14,34,0.0 +20134,64,33.25,46,0.0 +20134,21,10,8,0.0 +20134,56,38,21,0.0 +20134,27,43.9,31,0.0 +20134,46,12,2,0.0 +20134,39,18,13,0.0 +20134,62,49.3,2,0.0 +20134,71,21.5,9,0.0 +20134,68,12.5,13,0.0 +20134,12,38,44,0.0 +20134,20,81,25,0.0 +20134,32,32,12,0.0 +20134,45,9.5,22,0.0 +20134,73,15,25,0.0 +20134,63,43.9,46,0.0 +20134,40,18.4,37,0.0 +20134,38,263.5,7,0.0 +20134,58,13.25,20,0.0 +20134,5,21.35,25,0.0 +20134,6,25,5,0.0 +20134,13,6,14,0.0 +20134,53,32.8,8,0.0 +20134,52,7,49,0.0 +20134,55,24,38,0.0 +20135,55,24,46,0.0 +20135,56,38,6,0.0 +20135,51,53,42,0.0 +20135,28,45.6,34,0.0 +20135,54,7.45,37,0.0 +20135,21,10,35,0.0 +20135,65,21.05,17,0.0 +20135,49,20,47,0.0 +20135,16,17.45,2,0.0 +20135,72,34.8,27,0.0 +20135,41,9.65,16,0.0 +20135,13,6,12,0.0 +20135,31,12.5,23,0.0 +20135,57,19.5,44,0.0 +20135,33,2.5,20,0.0 +20135,76,18,11,0.0 +20135,17,39,29,0.0 +20135,52,7,42,0.0 +20135,71,21.5,2,0.0 +20135,7,30,34,0.0 +20135,3,10,6,0.0 +20135,19,9.2,16,0.0 +20135,27,43.9,46,0.0 +20135,69,36,6,0.0 +20135,66,17,2,0.0 +20135,6,25,26,0.0 +20135,11,21,32,0.0 +20135,8,40,46,0.0 +20135,24,4.5,34,0.0 +20135,26,31.23,13,0.0 +20135,30,25.89,41,0.0 +20135,63,43.9,35,0.0 +20135,34,14,43,0.0 +20135,68,12.5,29,0.0 +20135,25,14,27,0.0 +20135,42,14,44,0.0 +20135,37,26,25,0.0 +20135,64,33.25,35,0.0 +20136,34,14,18,0.0 +20136,17,39,22,0.0 +20136,61,28.5,17,0.0 +20136,48,12.75,34,0.0 +20136,56,38,35,0.0 +20136,21,10,6,0.0 +20136,52,7,21,0.0 +20136,2,19,13,0.0 +20136,8,40,25,0.0 +20136,36,19,21,0.0 +20136,1,18,28,0.0 +20136,54,7.45,15,0.0 +20136,7,30,47,0.0 +20136,67,14,29,0.0 +20136,49,20,44,0.0 +20136,4,22,22,0.0 +20136,57,19.5,49,0.0 +20136,47,9.5,18,0.0 +20136,55,24,28,0.0 +20136,5,21.35,2,0.0 +20136,42,14,7,0.0 +20136,77,13,22,0.0 +20136,43,46,39,0.0 +20136,24,4.5,2,0.0 +20136,28,45.6,45,0.0 +20136,62,49.3,38,0.0 +20136,35,18,9,0.0 +20136,10,31,5,0.0 +20136,38,263.5,35,0.0 +20136,73,15,33,0.0 +20136,23,9,37,0.0 +20136,65,21.05,7,0.0 +20136,76,18,23,0.0 +20136,40,18.4,31,0.0 +20136,15,15.5,49,0.0 +20136,25,14,29,0.0 +20136,37,26,2,0.0 +20136,27,43.9,20,0.0 +20136,11,21,14,0.0 +20137,35,18,15,0.0 +20137,30,25.89,30,0.0 +20137,6,25,35,0.0 +20137,34,14,1,0.0 +20137,11,21,49,0.0 +20137,25,14,34,0.0 +20137,65,21.05,11,0.0 +20137,5,21.35,7,0.0 +20137,2,19,29,0.0 +20137,21,10,26,0.0 +20137,1,18,42,0.0 +20137,68,12.5,22,0.0 +20137,50,16.25,33,0.0 +20137,19,9.2,45,0.0 +20137,33,2.5,44,0.0 +20137,73,15,11,0.0 +20137,17,39,30,0.0 +20137,28,45.6,4,0.0 +20137,47,9.5,23,0.0 +20137,27,43.9,31,0.0 +20137,7,30,11,0.0 +20137,36,19,28,0.0 +20137,41,9.65,17,0.0 +20137,39,18,23,0.0 +20137,52,7,43,0.0 +20137,48,12.75,37,0.0 +20137,59,55,41,0.0 +20137,32,32,44,0.0 +20137,62,49.3,3,0.0 +20137,55,24,1,0.0 +20137,71,21.5,38,0.0 +20137,15,15.5,36,0.0 +20137,42,14,1,0.0 +20137,10,31,35,0.0 +20137,64,33.25,12,0.0 +20137,70,15,8,0.0 +20137,56,38,13,0.0 +20137,63,43.9,50,0.0 +20137,43,46,26,0.0 +20137,38,263.5,23,0.0 +20137,13,6,6,0.0 +20137,45,9.5,27,0.0 +20137,75,7.75,5,0.0 +20137,72,34.8,34,0.0 +20137,4,22,13,0.0 +20137,54,7.45,13,0.0 +20137,3,10,42,0.0 +20137,66,17,7,0.0 +20137,26,31.23,45,0.0 +20137,77,13,30,0.0 +20137,74,10,6,0.0 +20137,60,34,16,0.0 +20137,53,32.8,41,0.0 +20137,51,53,23,0.0 +20137,57,19.5,32,0.0 +20137,23,9,3,0.0 +20137,31,12.5,24,0.0 +20137,20,81,34,0.0 +20137,9,97,41,0.0 +20137,58,13.25,49,0.0 +20138,55,24,25,0.0 +20138,44,19.45,39,0.0 +20138,71,21.5,3,0.0 +20138,1,18,19,0.0 +20138,45,9.5,4,0.0 +20138,24,4.5,38,0.0 +20138,39,18,11,0.0 +20138,28,45.6,5,0.0 +20138,12,38,1,0.0 +20138,48,12.75,48,0.0 +20138,52,7,3,0.0 +20138,54,7.45,48,0.0 +20138,64,33.25,10,0.0 +20138,74,10,38,0.0 +20138,25,14,45,0.0 +20138,15,15.5,48,0.0 +20138,7,30,44,0.0 +20138,62,49.3,27,0.0 +20138,77,13,20,0.0 +20138,56,38,43,0.0 +20138,36,19,4,0.0 +20138,35,18,47,0.0 +20138,20,81,14,0.0 +20138,37,26,24,0.0 +20138,59,55,39,0.0 +20138,60,34,37,0.0 +20138,67,14,13,0.0 +20138,57,19.5,22,0.0 +20138,73,15,25,0.0 +20138,5,21.35,42,0.0 +20138,43,46,11,0.0 +20138,3,10,33,0.0 +20138,53,32.8,37,0.0 +20138,41,9.65,15,0.0 +20138,49,20,23,0.0 +20138,34,14,17,0.0 +20138,61,28.5,31,0.0 +20138,75,7.75,5,0.0 +20138,29,123.79,47,0.0 +20138,4,22,25,0.0 +20138,32,32,49,0.0 +20138,23,9,40,0.0 +20138,42,14,18,0.0 +20138,69,36,38,0.0 +20138,38,263.5,46,0.0 +20138,6,25,46,0.0 +20138,66,17,6,0.0 +20138,47,9.5,16,0.0 +20138,19,9.2,9,0.0 +20138,9,97,1,0.0 +20138,46,12,23,0.0 +20138,26,31.23,9,0.0 +20138,58,13.25,45,0.0 +20138,17,39,29,0.0 +20138,76,18,28,0.0 +20138,21,10,25,0.0 +20138,70,15,45,0.0 +20138,27,43.9,14,0.0 +20138,65,21.05,3,0.0 +20138,16,17.45,30,0.0 +20138,8,40,32,0.0 +20138,72,34.8,11,0.0 +20138,2,19,17,0.0 +20138,10,31,14,0.0 +20138,63,43.9,24,0.0 +20138,40,18.4,44,0.0 +20138,11,21,47,0.0 +20138,22,21,8,0.0 +20138,33,2.5,16,0.0 +20138,13,6,45,0.0 +20138,68,12.5,13,0.0 +20138,18,62.5,14,0.0 +20138,30,25.89,16,0.0 +20138,31,12.5,43,0.0 +20138,51,53,19,0.0 +20138,50,16.25,27,0.0 +20139,50,16.25,5,0.0 +20139,26,31.23,22,0.0 +20139,23,9,12,0.0 +20139,69,36,32,0.0 +20139,5,21.35,42,0.0 +20139,4,22,45,0.0 +20139,10,31,12,0.0 +20139,51,53,29,0.0 +20139,41,9.65,43,0.0 +20139,70,15,22,0.0 +20139,14,23.25,38,0.0 +20139,60,34,35,0.0 +20139,47,9.5,20,0.0 +20139,75,7.75,36,0.0 +20139,20,81,19,0.0 +20139,6,25,32,0.0 +20139,67,14,35,0.0 +20139,76,18,7,0.0 +20139,28,45.6,16,0.0 +20139,40,18.4,12,0.0 +20139,48,12.75,5,0.0 +20139,62,49.3,29,0.0 +20139,66,17,46,0.0 +20139,57,19.5,47,0.0 +20139,58,13.25,27,0.0 +20139,35,18,49,0.0 +20139,63,43.9,25,0.0 +20139,73,15,16,0.0 +20139,7,30,2,0.0 +20139,22,21,17,0.0 +20139,54,7.45,28,0.0 +20139,31,12.5,3,0.0 +20139,27,43.9,11,0.0 +20139,33,2.5,21,0.0 +20139,45,9.5,7,0.0 +20139,49,20,2,0.0 +20139,13,6,13,0.0 +20139,9,97,11,0.0 +20139,19,9.2,10,0.0 +20139,71,21.5,31,0.0 +20139,43,46,39,0.0 +20139,12,38,46,0.0 +20140,66,17,39,0.0 +20140,11,21,3,0.0 +20141,72,34.8,43,0.0 +20141,3,10,1,0.0 +20141,40,18.4,37,0.0 +20141,69,36,30,0.0 +20141,22,21,43,0.0 +20141,53,32.8,37,0.0 +20141,44,19.45,34,0.0 +20141,63,43.9,1,0.0 +20141,2,19,50,0.0 +20141,9,97,15,0.0 +20141,30,25.89,47,0.0 +20142,38,263.5,31,0.0 +20142,39,18,36,0.0 +20142,57,19.5,38,0.0 +20142,17,39,39,0.0 +20142,9,97,24,0.0 +20142,44,19.45,20,0.0 +20142,32,32,28,0.0 +20142,30,25.89,38,0.0 +20142,28,45.6,7,0.0 +20142,63,43.9,4,0.0 +20143,36,19,4,0.0 +20143,74,10,39,0.0 +20143,6,25,30,0.0 +20144,43,46,49,0.0 +20144,4,22,43,0.0 +20144,2,19,23,0.0 +20144,44,19.45,25,0.0 +20144,74,10,6,0.0 +20144,75,7.75,50,0.0 +20145,60,34,5,0.0 +20145,33,2.5,8,0.0 +20145,51,53,15,0.0 +20145,13,6,31,0.0 +20146,44,19.45,28,0.0 +20146,41,9.65,2,0.0 +20146,60,34,28,0.0 +20146,38,263.5,13,0.0 +20146,77,13,24,0.0 +20146,5,21.35,12,0.0 +20146,74,10,20,0.0 +20146,62,49.3,29,0.0 +20146,8,40,25,0.0 +20146,64,33.25,45,0.0 +20146,58,13.25,15,0.0 +20146,39,18,4,0.0 +20146,28,45.6,27,0.0 +20146,73,15,9,0.0 +20146,24,4.5,39,0.0 +20146,7,30,43,0.0 +20146,51,53,20,0.0 +20146,40,18.4,16,0.0 +20146,18,62.5,39,0.0 +20146,59,55,19,0.0 +20146,72,34.8,6,0.0 +20146,11,21,8,0.0 +20146,21,10,48,0.0 +20147,41,9.65,14,0.0 +20147,29,123.79,25,0.0 +20147,66,17,24,0.0 +20147,12,38,19,0.0 +20147,18,62.5,37,0.0 +20147,65,21.05,22,0.0 +20147,51,53,47,0.0 +20147,17,39,14,0.0 +20147,60,34,22,0.0 +20147,31,12.5,30,0.0 +20147,61,28.5,34,0.0 +20147,55,24,48,0.0 +20148,58,13.25,8,0.0 +20148,3,10,44,0.0 +20148,63,43.9,22,0.0 +20148,73,15,5,0.0 +20148,17,39,17,0.0 +20148,27,43.9,43,0.0 +20148,60,34,15,0.0 +20148,24,4.5,38,0.0 +20148,48,12.75,20,0.0 +20148,31,12.5,47,0.0 +20148,6,25,12,0.0 +20148,57,19.5,29,0.0 +20148,29,123.79,2,0.0 +20148,13,6,38,0.0 +20148,23,9,26,0.0 +20148,74,10,27,0.0 +20148,42,14,6,0.0 +20148,54,7.45,12,0.0 +20148,41,9.65,50,0.0 +20148,26,31.23,42,0.0 +20148,15,15.5,42,0.0 +20148,61,28.5,48,0.0 +20148,45,9.5,45,0.0 +20148,38,263.5,36,0.0 +20148,12,38,6,0.0 +20148,35,18,17,0.0 +20148,2,19,17,0.0 +20148,37,26,2,0.0 +20148,75,7.75,23,0.0 +20148,5,21.35,39,0.0 +20148,76,18,28,0.0 +20148,77,13,10,0.0 +20148,30,25.89,17,0.0 +20148,34,14,8,0.0 +20148,56,38,7,0.0 +20148,53,32.8,13,0.0 +20148,51,53,48,0.0 +20148,55,24,49,0.0 +20148,16,17.45,1,0.0 +20148,59,55,40,0.0 +20148,39,18,12,0.0 +20148,65,21.05,48,0.0 +20148,71,21.5,29,0.0 +20148,4,22,47,0.0 +20148,20,81,5,0.0 +20149,50,16.25,40,0.0 +20149,55,24,4,0.0 +20149,30,25.89,7,0.0 +20149,57,19.5,13,0.0 +20149,49,20,23,0.0 +20149,48,12.75,46,0.0 +20149,53,32.8,1,0.0 +20149,9,97,24,0.0 +20149,16,17.45,9,0.0 +20149,75,7.75,15,0.0 +20149,74,10,24,0.0 +20149,15,15.5,31,0.0 +20149,29,123.79,29,0.0 +20149,36,19,47,0.0 +20149,47,9.5,11,0.0 +20149,69,36,49,0.0 +20149,42,14,37,0.0 +20149,71,21.5,10,0.0 +20149,5,21.35,16,0.0 +20149,20,81,39,0.0 +20149,45,9.5,15,0.0 +20149,17,39,20,0.0 +20149,38,263.5,39,0.0 +20149,22,21,3,0.0 +20149,31,12.5,9,0.0 +20149,27,43.9,25,0.0 +20149,26,31.23,2,0.0 +20149,11,21,19,0.0 +20149,56,38,28,0.0 +20149,21,10,34,0.0 +20149,59,55,18,0.0 +20149,12,38,26,0.0 +20149,7,30,19,0.0 +20149,61,28.5,2,0.0 +20149,10,31,39,0.0 +20149,65,21.05,30,0.0 +20149,4,22,24,0.0 +20149,13,6,23,0.0 +20149,72,34.8,15,0.0 +20149,37,26,35,0.0 +20149,23,9,49,0.0 +20149,39,18,46,0.0 +20149,43,46,44,0.0 +20149,66,17,9,0.0 +20150,8,40,32,0.0 +20150,45,9.5,12,0.0 +20150,47,9.5,38,0.0 +20150,66,17,20,0.0 +20150,46,12,25,0.0 +20150,6,25,1,0.0 +20151,36,19,41,0.0 +20151,48,12.75,35,0.0 +20151,62,49.3,13,0.0 +20151,75,7.75,42,0.0 +20151,41,9.65,7,0.0 +20152,74,10,9,0.0 +20152,67,14,7,0.0 +20152,11,21,37,0.0 +20152,46,12,28,0.0 +20152,25,14,17,0.0 +20152,34,14,48,0.0 +20152,18,62.5,16,0.0 +20152,9,97,23,0.0 +20152,33,2.5,37,0.0 +20152,8,40,29,0.0 +20152,47,9.5,2,0.0 +20152,73,15,44,0.0 +20152,69,36,42,0.0 +20152,43,46,22,0.0 +20152,58,13.25,12,0.0 +20152,68,12.5,6,0.0 +20152,30,25.89,44,0.0 +20152,23,9,29,0.0 +20152,54,7.45,28,0.0 +20152,26,31.23,46,0.0 +20152,5,21.35,35,0.0 +20152,19,9.2,15,0.0 +20152,32,32,1,0.0 +20152,6,25,13,0.0 +20152,39,18,41,0.0 +20152,70,15,5,0.0 +20152,53,32.8,39,0.0 +20152,38,263.5,13,0.0 +20152,3,10,34,0.0 +20152,16,17.45,38,0.0 +20152,55,24,45,0.0 +20153,39,18,44,0.0 +20154,44,19.45,26,0.0 +20154,76,18,26,0.0 +20154,59,55,16,0.0 +20154,52,7,42,0.0 +20154,20,81,8,0.0 +20154,30,25.89,14,0.0 +20154,39,18,28,0.0 +20154,25,14,24,0.0 +20154,32,32,41,0.0 +20154,66,17,25,0.0 +20154,31,12.5,30,0.0 +20154,9,97,2,0.0 +20154,35,18,29,0.0 +20154,8,40,17,0.0 +20154,43,46,33,0.0 +20154,19,9.2,43,0.0 +20154,61,28.5,37,0.0 +20154,60,34,22,0.0 +20154,33,2.5,30,0.0 +20154,37,26,35,0.0 +20154,67,14,48,0.0 +20154,50,16.25,41,0.0 +20154,22,21,10,0.0 +20154,4,22,18,0.0 +20154,62,49.3,39,0.0 +20154,65,21.05,15,0.0 +20154,42,14,37,0.0 +20154,56,38,22,0.0 +20154,46,12,27,0.0 +20155,62,49.3,26,0.0 +20155,63,43.9,4,0.0 +20155,61,28.5,33,0.0 +20155,4,22,5,0.0 +20155,69,36,15,0.0 +20155,19,9.2,35,0.0 +20155,6,25,42,0.0 +20155,28,45.6,50,0.0 +20155,57,19.5,21,0.0 +20155,65,21.05,42,0.0 +20155,33,2.5,28,0.0 +20155,2,19,31,0.0 +20155,40,18.4,17,0.0 +20155,12,38,31,0.0 +20155,26,31.23,49,0.0 +20155,25,14,20,0.0 +20155,51,53,33,0.0 +20155,10,31,19,0.0 +20155,17,39,21,0.0 +20155,31,12.5,26,0.0 +20155,74,10,38,0.0 +20155,41,9.65,13,0.0 +20155,47,9.5,12,0.0 +20155,22,21,2,0.0 +20155,29,123.79,41,0.0 +20155,68,12.5,12,0.0 +20155,13,6,10,0.0 +20155,32,32,39,0.0 +20155,72,34.8,36,0.0 +20155,23,9,14,0.0 +20155,71,21.5,34,0.0 +20155,30,25.89,44,0.0 +20155,76,18,9,0.0 +20155,77,13,25,0.0 +20155,16,17.45,49,0.0 +20155,11,21,49,0.0 +20155,59,55,36,0.0 +20155,66,17,2,0.0 +20155,18,62.5,47,0.0 +20155,27,43.9,33,0.0 +20155,34,14,27,0.0 +20155,58,13.25,23,0.0 +20155,39,18,29,0.0 +20155,52,7,37,0.0 +20155,7,30,7,0.0 +20155,24,4.5,12,0.0 +20155,9,97,2,0.0 +20155,37,26,44,0.0 +20155,8,40,20,0.0 +20155,48,12.75,8,0.0 +20155,20,81,45,0.0 +20155,38,263.5,2,0.0 +20155,64,33.25,38,0.0 +20155,43,46,25,0.0 +20155,70,15,43,0.0 +20155,44,19.45,48,0.0 +20155,73,15,15,0.0 +20155,42,14,31,0.0 +20155,14,23.25,41,0.0 +20155,60,34,5,0.0 +20156,58,13.25,27,0.0 +20156,48,12.75,17,0.0 +20156,14,23.25,2,0.0 +20156,32,32,42,0.0 +20156,23,9,32,0.0 +20156,22,21,25,0.0 +20156,43,46,38,0.0 +20156,54,7.45,25,0.0 +20156,38,263.5,3,0.0 +20156,46,12,23,0.0 +20156,73,15,20,0.0 +20156,12,38,12,0.0 +20157,27,43.9,44,0.0 +20157,12,38,45,0.0 +20157,32,32,9,0.0 +20157,5,21.35,48,0.0 +20157,69,36,8,0.0 +20157,73,15,18,0.0 +20157,4,22,7,0.0 +20157,35,18,14,0.0 +20157,23,9,26,0.0 +20157,13,6,33,0.0 +20157,49,20,23,0.0 +20157,8,40,7,0.0 +20157,63,43.9,41,0.0 +20157,20,81,11,0.0 +20157,59,55,3,0.0 +20157,3,10,41,0.0 +20157,11,21,20,0.0 +20157,54,7.45,39,0.0 +20157,76,18,26,0.0 +20157,1,18,29,0.0 +20157,37,26,21,0.0 +20157,50,16.25,3,0.0 +20157,7,30,13,0.0 +20157,52,7,37,0.0 +20157,58,13.25,19,0.0 +20157,41,9.65,32,0.0 +20157,67,14,9,0.0 +20157,24,4.5,22,0.0 +20157,29,123.79,6,0.0 +20157,34,14,50,0.0 +20157,44,19.45,42,0.0 +20157,36,19,10,0.0 +20157,21,10,46,0.0 +20157,22,21,35,0.0 +20157,68,12.5,1,0.0 +20157,64,33.25,4,0.0 +20157,39,18,20,0.0 +20158,12,38,20,0.0 +20158,8,40,13,0.0 +20158,61,28.5,34,0.0 +20158,45,9.5,29,0.0 +20158,44,19.45,11,0.0 +20158,42,14,40,0.0 +20158,23,9,45,0.0 +20158,59,55,4,0.0 +20158,19,9.2,28,0.0 +20158,9,97,47,0.0 +20158,5,21.35,22,0.0 +20158,52,7,43,0.0 +20158,64,33.25,36,0.0 +20158,50,16.25,1,0.0 +20158,34,14,22,0.0 +20158,40,18.4,38,0.0 +20158,25,14,34,0.0 +20158,29,123.79,23,0.0 +20158,55,24,41,0.0 +20158,14,23.25,32,0.0 +20158,11,21,16,0.0 +20158,35,18,27,0.0 +20158,15,15.5,25,0.0 +20158,48,12.75,19,0.0 +20158,26,31.23,1,0.0 +20158,53,32.8,36,0.0 +20158,73,15,44,0.0 +20158,28,45.6,42,0.0 +20158,70,15,25,0.0 +20158,71,21.5,17,0.0 +20158,51,53,2,0.0 +20158,57,19.5,8,0.0 +20158,24,4.5,37,0.0 +20158,76,18,45,0.0 +20158,27,43.9,7,0.0 +20158,47,9.5,29,0.0 +20158,74,10,23,0.0 +20158,72,34.8,25,0.0 +20158,17,39,23,0.0 +20158,60,34,16,0.0 +20158,37,26,35,0.0 +20158,38,263.5,4,0.0 +20158,13,6,13,0.0 +20158,3,10,19,0.0 +20158,63,43.9,6,0.0 +20159,54,7.45,45,0.0 +20159,2,19,28,0.0 +20159,39,18,30,0.0 +20159,18,62.5,20,0.0 +20159,38,263.5,43,0.0 +20159,20,81,17,0.0 +20159,8,40,44,0.0 +20159,48,12.75,11,0.0 +20159,42,14,23,0.0 +20159,63,43.9,12,0.0 +20159,64,33.25,37,0.0 +20159,22,21,14,0.0 +20159,7,30,34,0.0 +20159,13,6,22,0.0 +20159,24,4.5,27,0.0 +20159,43,46,45,0.0 +20159,53,32.8,9,0.0 +20159,23,9,48,0.0 +20159,73,15,35,0.0 +20159,40,18.4,24,0.0 +20159,72,34.8,14,0.0 +20159,25,14,26,0.0 +20159,4,22,3,0.0 +20159,33,2.5,7,0.0 +20159,14,23.25,44,0.0 +20159,9,97,32,0.0 +20159,45,9.5,36,0.0 +20159,76,18,18,0.0 +20159,16,17.45,34,0.0 +20159,1,18,35,0.0 +20159,65,21.05,49,0.0 +20159,59,55,21,0.0 +20159,60,34,48,0.0 +20159,5,21.35,1,0.0 +20159,74,10,41,0.0 +20159,51,53,9,0.0 +20159,69,36,45,0.0 +20159,29,123.79,25,0.0 +20159,28,45.6,49,0.0 +20159,17,39,38,0.0 +20159,70,15,21,0.0 +20159,75,7.75,7,0.0 +20159,56,38,20,0.0 +20159,12,38,9,0.0 +20159,68,12.5,2,0.0 +20159,41,9.65,42,0.0 +20159,15,15.5,12,0.0 +20159,3,10,3,0.0 +20159,6,25,32,0.0 +20159,26,31.23,35,0.0 +20159,67,14,5,0.0 +20159,46,12,16,0.0 +20159,58,13.25,1,0.0 +20159,30,25.89,26,0.0 +20159,34,14,15,0.0 +20159,36,19,37,0.0 +20159,19,9.2,12,0.0 +20159,11,21,12,0.0 +20159,50,16.25,5,0.0 +20159,27,43.9,47,0.0 +20159,61,28.5,14,0.0 +20159,77,13,48,0.0 +20160,37,26,17,0.0 +20160,68,12.5,9,0.0 +20160,76,18,18,0.0 +20160,22,21,21,0.0 +20160,66,17,27,0.0 +20160,26,31.23,35,0.0 +20160,36,19,1,0.0 +20160,27,43.9,39,0.0 +20160,43,46,10,0.0 +20160,18,62.5,34,0.0 +20160,54,7.45,4,0.0 +20160,65,21.05,24,0.0 +20160,69,36,32,0.0 +20160,20,81,6,0.0 +20160,74,10,42,0.0 +20160,35,18,41,0.0 +20160,3,10,4,0.0 +20160,48,12.75,5,0.0 +20160,47,9.5,15,0.0 +20160,51,53,11,0.0 +20160,11,21,28,0.0 +20160,53,32.8,43,0.0 +20160,14,23.25,39,0.0 +20160,12,38,17,0.0 +20160,32,32,11,0.0 +20160,25,14,48,0.0 +20160,44,19.45,23,0.0 +20160,7,30,37,0.0 +20160,10,31,45,0.0 +20160,30,25.89,6,0.0 +20160,45,9.5,5,0.0 +20160,56,38,14,0.0 +20160,38,263.5,47,0.0 +20160,67,14,32,0.0 +20160,63,43.9,37,0.0 +20160,64,33.25,13,0.0 +20160,28,45.6,23,0.0 +20160,41,9.65,11,0.0 +20160,17,39,23,0.0 +20160,23,9,46,0.0 +20160,72,34.8,19,0.0 +20160,8,40,18,0.0 +20160,4,22,42,0.0 +20160,70,15,6,0.0 +20160,29,123.79,43,0.0 +20160,61,28.5,21,0.0 +20160,52,7,35,0.0 +20160,62,49.3,1,0.0 +20160,33,2.5,5,0.0 +20160,46,12,36,0.0 +20160,58,13.25,26,0.0 +20160,24,4.5,5,0.0 +20160,71,21.5,26,0.0 +20160,42,14,24,0.0 +20161,2,19,42,0.0 +20161,34,14,24,0.0 +20161,25,14,21,0.0 +20161,7,30,14,0.0 +20161,9,97,11,0.0 +20161,13,6,20,0.0 +20161,43,46,12,0.0 +20161,67,14,18,0.0 +20161,11,21,13,0.0 +20161,69,36,6,0.0 +20161,64,33.25,49,0.0 +20161,12,38,36,0.0 +20161,8,40,22,0.0 +20161,40,18.4,45,0.0 +20162,39,18,4,0.0 +20162,49,20,45,0.0 +20162,53,32.8,22,0.0 +20162,3,10,47,0.0 +20162,29,123.79,21,0.0 +20162,20,81,38,0.0 +20162,51,53,15,0.0 +20162,4,22,47,0.0 +20162,13,6,29,0.0 +20162,12,38,43,0.0 +20162,30,25.89,27,0.0 +20162,31,12.5,46,0.0 +20162,24,4.5,35,0.0 +20162,70,15,32,0.0 +20162,21,10,21,0.0 +20162,37,26,43,0.0 +20162,16,17.45,26,0.0 +20162,71,21.5,22,0.0 +20162,67,14,11,0.0 +20162,33,2.5,20,0.0 +20162,10,31,27,0.0 +20162,7,30,29,0.0 +20162,11,21,45,0.0 +20162,5,21.35,44,0.0 +20162,63,43.9,29,0.0 +20162,42,14,47,0.0 +20162,59,55,16,0.0 +20162,75,7.75,33,0.0 +20162,64,33.25,24,0.0 +20162,32,32,46,0.0 +20162,40,18.4,27,0.0 +20162,55,24,49,0.0 +20162,48,12.75,16,0.0 +20162,76,18,13,0.0 +20162,26,31.23,44,0.0 +20162,45,9.5,43,0.0 +20162,8,40,21,0.0 +20162,74,10,22,0.0 +20162,57,19.5,46,0.0 +20163,77,13,5,0.0 +20163,68,12.5,27,0.0 +20163,45,9.5,35,0.0 +20163,52,7,1,0.0 +20163,27,43.9,12,0.0 +20163,62,49.3,9,0.0 +20163,59,55,47,0.0 +20163,55,24,36,0.0 +20163,67,14,27,0.0 +20163,69,36,20,0.0 +20163,50,16.25,29,0.0 +20163,31,12.5,4,0.0 +20163,11,21,15,0.0 +20163,70,15,6,0.0 +20163,9,97,40,0.0 +20163,22,21,50,0.0 +20163,29,123.79,4,0.0 +20163,65,21.05,3,0.0 +20163,25,14,37,0.0 +20163,6,25,45,0.0 +20163,76,18,18,0.0 +20164,5,21.35,11,0.0 +20164,11,21,11,0.0 +20164,75,7.75,25,0.0 +20164,46,12,47,0.0 +20164,3,10,10,0.0 +20164,61,28.5,9,0.0 +20164,64,33.25,12,0.0 +20164,58,13.25,12,0.0 +20164,19,9.2,1,0.0 +20164,13,6,36,0.0 +20164,55,24,23,0.0 +20164,56,38,44,0.0 +20164,68,12.5,14,0.0 +20164,12,38,27,0.0 +20164,41,9.65,42,0.0 +20164,8,40,47,0.0 +20164,20,81,11,0.0 +20164,66,17,1,0.0 +20164,70,15,11,0.0 +20164,53,32.8,31,0.0 +20164,37,26,34,0.0 +20164,30,25.89,30,0.0 +20164,33,2.5,30,0.0 +20164,62,49.3,34,0.0 +20164,27,43.9,10,0.0 +20164,2,19,50,0.0 +20164,35,18,40,0.0 +20164,47,9.5,48,0.0 +20164,76,18,9,0.0 +20164,4,22,24,0.0 +20164,22,21,7,0.0 +20164,60,34,16,0.0 +20164,73,15,32,0.0 +20164,71,21.5,43,0.0 +20164,63,43.9,37,0.0 +20164,74,10,28,0.0 +20164,7,30,48,0.0 +20164,1,18,39,0.0 +20164,32,32,35,0.0 +20164,67,14,13,0.0 +20164,72,34.8,9,0.0 +20164,31,12.5,1,0.0 +20165,43,46,22,0.0 +20165,57,19.5,46,0.0 +20165,2,19,9,0.0 +20165,46,12,1,0.0 +20165,74,10,21,0.0 +20165,20,81,28,0.0 +20165,51,53,33,0.0 +20165,68,12.5,42,0.0 +20165,15,15.5,28,0.0 +20165,76,18,28,0.0 +20165,22,21,39,0.0 +20165,37,26,3,0.0 +20165,42,14,7,0.0 +20165,10,31,34,0.0 +20165,69,36,30,0.0 +20165,8,40,6,0.0 +20165,66,17,41,0.0 +20165,16,17.45,3,0.0 +20165,9,97,28,0.0 +20165,54,7.45,37,0.0 +20165,49,20,22,0.0 +20165,3,10,27,0.0 +20165,71,21.5,2,0.0 +20165,18,62.5,7,0.0 +20165,13,6,1,0.0 +20165,29,123.79,44,0.0 +20165,4,22,40,0.0 +20165,34,14,2,0.0 +20165,28,45.6,2,0.0 +20165,33,2.5,42,0.0 +20165,24,4.5,41,0.0 +20165,1,18,20,0.0 +20165,50,16.25,23,0.0 +20165,47,9.5,27,0.0 +20165,39,18,20,0.0 +20165,40,18.4,50,0.0 +20165,31,12.5,5,0.0 +20165,7,30,30,0.0 +20165,27,43.9,28,0.0 +20165,55,24,25,0.0 +20165,19,9.2,27,0.0 +20165,62,49.3,1,0.0 +20165,77,13,8,0.0 +20165,45,9.5,13,0.0 +20165,30,25.89,46,0.0 +20165,61,28.5,9,0.0 +20165,5,21.35,13,0.0 +20166,48,12.75,32,0.0 +20166,5,21.35,13,0.0 +20166,41,9.65,30,0.0 +20166,36,19,17,0.0 +20166,35,18,47,0.0 +20166,9,97,6,0.0 +20166,21,10,45,0.0 +20166,77,13,38,0.0 +20166,56,38,28,0.0 +20166,27,43.9,44,0.0 +20166,67,14,39,0.0 +20166,30,25.89,50,0.0 +20166,62,49.3,46,0.0 +20166,54,7.45,27,0.0 +20166,28,45.6,25,0.0 +20166,11,21,9,0.0 +20166,53,32.8,37,0.0 +20166,24,4.5,3,0.0 +20166,8,40,46,0.0 +20166,34,14,14,0.0 +20166,76,18,22,0.0 +20167,24,4.5,34,0.0 +20167,37,26,24,0.0 +20167,34,14,38,0.0 +20167,68,12.5,44,0.0 +20167,76,18,19,0.0 +20167,55,24,11,0.0 +20167,1,18,44,0.0 +20167,3,10,18,0.0 +20167,35,18,35,0.0 +20167,64,33.25,12,0.0 +20167,18,62.5,4,0.0 +20167,9,97,18,0.0 +20167,36,19,21,0.0 +20167,57,19.5,25,0.0 +20167,65,21.05,36,0.0 +20167,69,36,8,0.0 +20167,23,9,36,0.0 +20167,49,20,13,0.0 +20167,63,43.9,20,0.0 +20167,71,21.5,32,0.0 +20167,8,40,19,0.0 +20167,39,18,37,0.0 +20167,30,25.89,39,0.0 +20167,62,49.3,3,0.0 +20167,45,9.5,10,0.0 +20167,44,19.45,6,0.0 +20167,50,16.25,40,0.0 +20167,48,12.75,34,0.0 +20167,5,21.35,16,0.0 +20167,77,13,34,0.0 +20167,42,14,40,0.0 +20167,53,32.8,46,0.0 +20167,66,17,28,0.0 +20167,2,19,1,0.0 +20167,60,34,26,0.0 +20167,43,46,25,0.0 +20167,58,13.25,31,0.0 +20167,31,12.5,43,0.0 +20167,75,7.75,12,0.0 +20167,14,23.25,6,0.0 +20167,28,45.6,41,0.0 +20168,54,7.45,43,0.0 +20168,18,62.5,40,0.0 +20168,53,32.8,35,0.0 +20168,43,46,42,0.0 +20168,37,26,16,0.0 +20168,61,28.5,36,0.0 +20168,25,14,19,0.0 +20168,1,18,40,0.0 +20168,75,7.75,18,0.0 +20168,39,18,44,0.0 +20168,5,21.35,24,0.0 +20168,15,15.5,24,0.0 +20168,56,38,16,0.0 +20168,48,12.75,50,0.0 +20168,29,123.79,13,0.0 +20168,33,2.5,22,0.0 +20168,60,34,35,0.0 +20168,73,15,29,0.0 +20168,40,18.4,12,0.0 +20168,30,25.89,25,0.0 +20168,68,12.5,14,0.0 +20168,7,30,5,0.0 +20168,14,23.25,20,0.0 +20168,27,43.9,22,0.0 +20168,51,53,21,0.0 +20168,12,38,18,0.0 +20168,62,49.3,49,0.0 +20168,57,19.5,3,0.0 +20168,66,17,35,0.0 +20168,6,25,3,0.0 +20168,64,33.25,34,0.0 +20168,47,9.5,42,0.0 +20168,49,20,4,0.0 +20168,11,21,35,0.0 +20168,32,32,28,0.0 +20168,17,39,44,0.0 +20168,24,4.5,25,0.0 +20168,41,9.65,6,0.0 +20168,10,31,33,0.0 +20169,29,123.79,15,0.0 +20169,50,16.25,2,0.0 +20169,17,39,24,0.0 +20169,15,15.5,9,0.0 +20169,18,62.5,18,0.0 +20169,32,32,34,0.0 +20169,68,12.5,44,0.0 +20169,2,19,46,0.0 +20169,23,9,40,0.0 +20169,35,18,24,0.0 +20169,74,10,14,0.0 +20169,25,14,37,0.0 +20169,20,81,32,0.0 +20169,12,38,10,0.0 +20169,55,24,19,0.0 +20169,5,21.35,13,0.0 +20169,67,14,26,0.0 +20169,46,12,37,0.0 +20169,3,10,22,0.0 +20169,34,14,14,0.0 +20169,58,13.25,50,0.0 +20169,49,20,28,0.0 +20169,6,25,48,0.0 +20169,1,18,20,0.0 +20169,62,49.3,2,0.0 +20169,64,33.25,42,0.0 +20169,30,25.89,1,0.0 +20169,72,34.8,48,0.0 +20169,11,21,34,0.0 +20169,69,36,49,0.0 +20169,73,15,45,0.0 +20169,61,28.5,25,0.0 +20169,41,9.65,2,0.0 +20169,63,43.9,21,0.0 +20169,65,21.05,50,0.0 +20169,26,31.23,5,0.0 +20169,36,19,48,0.0 +20169,53,32.8,44,0.0 +20169,57,19.5,31,0.0 +20169,9,97,35,0.0 +20169,24,4.5,20,0.0 +20169,56,38,24,0.0 +20169,60,34,6,0.0 +20169,66,17,49,0.0 +20169,31,12.5,21,0.0 +20169,39,18,4,0.0 +20169,70,15,27,0.0 +20169,37,26,9,0.0 +20169,14,23.25,37,0.0 +20169,40,18.4,36,0.0 +20169,75,7.75,18,0.0 +20169,38,263.5,39,0.0 +20169,59,55,18,0.0 +20169,13,6,23,0.0 +20169,52,7,4,0.0 +20169,54,7.45,49,0.0 +20169,21,10,40,0.0 +20169,42,14,20,0.0 +20170,55,24,46,0.0 +20170,17,39,21,0.0 +20170,7,30,44,0.0 +20170,22,21,11,0.0 +20170,24,4.5,32,0.0 +20170,43,46,11,0.0 +20170,53,32.8,40,0.0 +20170,41,9.65,45,0.0 +20170,12,38,11,0.0 +20170,69,36,34,0.0 +20170,64,33.25,7,0.0 +20170,39,18,25,0.0 +20170,71,21.5,42,0.0 +20170,51,53,43,0.0 +20170,49,20,6,0.0 +20170,36,19,39,0.0 +20170,18,62.5,15,0.0 +20170,9,97,30,0.0 +20170,1,18,16,0.0 +20170,74,10,27,0.0 +20170,33,2.5,40,0.0 +20170,73,15,26,0.0 +20170,70,15,17,0.0 +20170,46,12,13,0.0 +20170,65,21.05,27,0.0 +20170,15,15.5,23,0.0 +20170,60,34,19,0.0 +20170,45,9.5,4,0.0 +20170,56,38,17,0.0 +20170,26,31.23,22,0.0 +20170,62,49.3,27,0.0 +20170,57,19.5,6,0.0 +20170,31,12.5,49,0.0 +20170,5,21.35,14,0.0 +20170,29,123.79,49,0.0 +20170,54,7.45,21,0.0 +20170,47,9.5,39,0.0 +20170,13,6,34,0.0 +20170,8,40,32,0.0 +20170,76,18,9,0.0 +20170,63,43.9,15,0.0 +20170,16,17.45,43,0.0 +20170,19,9.2,18,0.0 +20170,4,22,48,0.0 +20170,38,263.5,42,0.0 +20170,50,16.25,17,0.0 +20170,42,14,30,0.0 +20170,68,12.5,24,0.0 +20170,75,7.75,38,0.0 +20170,37,26,15,0.0 +20170,61,28.5,43,0.0 +20170,2,19,2,0.0 +20170,25,14,37,0.0 +20170,66,17,20,0.0 +20170,30,25.89,42,0.0 +20170,3,10,36,0.0 +20170,35,18,15,0.0 +20170,48,12.75,17,0.0 +20170,58,13.25,31,0.0 +20170,20,81,19,0.0 +20170,23,9,23,0.0 +20170,28,45.6,11,0.0 +20170,72,34.8,12,0.0 +20170,10,31,16,0.0 +20170,27,43.9,6,0.0 +20170,77,13,43,0.0 +20170,34,14,1,0.0 +20170,14,23.25,4,0.0 +20170,44,19.45,2,0.0 +20170,52,7,31,0.0 +20170,59,55,40,0.0 +20170,11,21,27,0.0 +20170,67,14,35,0.0 +20170,6,25,13,0.0 +20170,40,18.4,38,0.0 +20171,72,34.8,17,0.0 +20171,63,43.9,12,0.0 +20171,49,20,35,0.0 +20171,74,10,29,0.0 +20171,16,17.45,25,0.0 +20171,46,12,11,0.0 +20171,5,21.35,32,0.0 +20171,65,21.05,48,0.0 +20171,47,9.5,2,0.0 +20171,30,25.89,17,0.0 +20171,6,25,10,0.0 +20171,12,38,16,0.0 +20171,61,28.5,30,0.0 +20171,77,13,15,0.0 +20171,33,2.5,34,0.0 +20171,68,12.5,17,0.0 +20171,24,4.5,49,0.0 +20171,9,97,12,0.0 +20171,19,9.2,6,0.0 +20171,15,15.5,18,0.0 +20171,70,15,30,0.0 +20171,8,40,45,0.0 +20171,55,24,45,0.0 +20171,38,263.5,41,0.0 +20171,75,7.75,50,0.0 +20171,43,46,24,0.0 +20171,23,9,24,0.0 +20171,57,19.5,18,0.0 +20171,42,14,18,0.0 +20171,31,12.5,42,0.0 +20171,69,36,42,0.0 +20171,20,81,43,0.0 +20171,59,55,36,0.0 +20171,60,34,36,0.0 +20171,1,18,1,0.0 +20171,45,9.5,17,0.0 +20171,64,33.25,41,0.0 +20171,28,45.6,20,0.0 +20171,39,18,4,0.0 +20171,62,49.3,22,0.0 +20171,13,6,40,0.0 +20171,27,43.9,6,0.0 +20171,76,18,31,0.0 +20171,2,19,6,0.0 +20172,5,21.35,12,0.0 +20172,52,7,15,0.0 +20172,13,6,1,0.0 +20172,18,62.5,7,0.0 +20172,75,7.75,1,0.0 +20172,71,21.5,18,0.0 +20172,70,15,34,0.0 +20172,11,21,31,0.0 +20172,44,19.45,36,0.0 +20172,19,9.2,17,0.0 +20172,39,18,47,0.0 +20172,7,30,10,0.0 +20172,72,34.8,44,0.0 +20172,31,12.5,17,0.0 +20172,58,13.25,10,0.0 +20172,2,19,13,0.0 +20172,69,36,40,0.0 +20172,45,9.5,31,0.0 +20172,77,13,39,0.0 +20172,4,22,38,0.0 +20172,67,14,14,0.0 +20172,33,2.5,22,0.0 +20172,53,32.8,33,0.0 +20172,20,81,42,0.0 +20172,23,9,38,0.0 +20172,56,38,36,0.0 +20172,47,9.5,23,0.0 +20173,39,18,12,0.0 +20173,59,55,41,0.0 +20173,65,21.05,37,0.0 +20173,5,21.35,21,0.0 +20173,10,31,2,0.0 +20173,48,12.75,28,0.0 +20173,29,123.79,22,0.0 +20173,56,38,50,0.0 +20173,23,9,32,0.0 +20173,70,15,13,0.0 +20173,58,13.25,27,0.0 +20173,47,9.5,27,0.0 +20173,28,45.6,17,0.0 +20173,1,18,5,0.0 +20173,40,18.4,35,0.0 +20173,17,39,29,0.0 +20173,35,18,22,0.0 +20173,45,9.5,18,0.0 +20173,32,32,13,0.0 +20173,24,4.5,19,0.0 +20173,37,26,24,0.0 +20173,16,17.45,23,0.0 +20173,25,14,4,0.0 +20173,8,40,35,0.0 +20173,42,14,17,0.0 +20173,55,24,31,0.0 +20173,73,15,44,0.0 +20173,11,21,38,0.0 +20173,66,17,40,0.0 +20173,60,34,1,0.0 +20173,33,2.5,44,0.0 +20173,19,9.2,41,0.0 +20173,34,14,16,0.0 +20173,38,263.5,28,0.0 +20173,69,36,41,0.0 +20173,18,62.5,23,0.0 +20173,27,43.9,21,0.0 +20173,50,16.25,20,0.0 +20173,77,13,46,0.0 +20173,15,15.5,2,0.0 +20173,30,25.89,47,0.0 +20173,12,38,21,0.0 +20173,4,22,28,0.0 +20173,63,43.9,50,0.0 +20173,51,53,7,0.0 +20173,74,10,22,0.0 +20173,20,81,6,0.0 +20173,3,10,33,0.0 +20173,75,7.75,35,0.0 +20173,9,97,50,0.0 +20173,53,32.8,48,0.0 +20173,2,19,45,0.0 +20173,68,12.5,33,0.0 +20173,72,34.8,19,0.0 +20173,7,30,30,0.0 +20173,22,21,24,0.0 +20173,62,49.3,40,0.0 +20173,46,12,13,0.0 +20173,61,28.5,24,0.0 +20173,54,7.45,46,0.0 +20173,76,18,47,0.0 +20173,14,23.25,13,0.0 +20173,31,12.5,38,0.0 +20173,49,20,44,0.0 +20173,26,31.23,22,0.0 +20173,67,14,31,0.0 +20173,44,19.45,50,0.0 +20173,41,9.65,16,0.0 +20173,71,21.5,16,0.0 +20173,64,33.25,11,0.0 +20173,43,46,27,0.0 +20173,36,19,29,0.0 +20174,49,20,43,0.0 +20174,51,53,50,0.0 +20174,42,14,2,0.0 +20174,10,31,13,0.0 +20174,22,21,41,0.0 +20174,43,46,48,0.0 +20174,69,36,18,0.0 +20174,23,9,4,0.0 +20174,48,12.75,34,0.0 +20174,77,13,30,0.0 +20174,30,25.89,12,0.0 +20174,64,33.25,45,0.0 +20174,40,18.4,30,0.0 +20174,19,9.2,14,0.0 +20174,67,14,34,0.0 +20174,62,49.3,45,0.0 +20174,9,97,12,0.0 +20174,5,21.35,40,0.0 +20174,1,18,49,0.0 +20174,52,7,2,0.0 +20174,24,4.5,40,0.0 +20174,12,38,13,0.0 +20174,37,26,9,0.0 +20174,57,19.5,19,0.0 +20174,70,15,9,0.0 +20174,33,2.5,29,0.0 +20174,63,43.9,8,0.0 +20174,13,6,49,0.0 +20174,66,17,43,0.0 +20174,3,10,50,0.0 +20174,41,9.65,8,0.0 +20174,39,18,35,0.0 +20174,56,38,15,0.0 +20174,8,40,43,0.0 +20174,11,21,50,0.0 +20174,68,12.5,8,0.0 +20174,25,14,23,0.0 +20174,16,17.45,45,0.0 +20174,15,15.5,34,0.0 +20174,44,19.45,20,0.0 +20174,74,10,2,0.0 +20174,29,123.79,48,0.0 +20174,14,23.25,31,0.0 +20174,59,55,44,0.0 +20174,61,28.5,7,0.0 +20174,31,12.5,5,0.0 +20174,72,34.8,15,0.0 +20174,75,7.75,18,0.0 +20174,45,9.5,50,0.0 +20174,21,10,4,0.0 +20174,76,18,49,0.0 +20174,7,30,1,0.0 +20174,32,32,15,0.0 +20174,28,45.6,45,0.0 +20174,26,31.23,41,0.0 +20174,46,12,44,0.0 +20174,54,7.45,45,0.0 +20174,2,19,47,0.0 +20175,66,17,50,0.0 +20175,51,53,38,0.0 +20175,69,36,42,0.0 +20175,10,31,47,0.0 +20175,61,28.5,2,0.0 +20175,72,34.8,23,0.0 +20175,40,18.4,16,0.0 +20175,16,17.45,26,0.0 +20175,36,19,33,0.0 +20175,35,18,9,0.0 +20175,20,81,46,0.0 +20175,22,21,40,0.0 +20175,3,10,46,0.0 +20175,18,62.5,38,0.0 +20175,49,20,22,0.0 +20175,53,32.8,41,0.0 +20175,34,14,1,0.0 +20175,21,10,43,0.0 +20175,59,55,25,0.0 +20175,6,25,11,0.0 +20175,73,15,33,0.0 +20176,53,32.8,46,0.0 +20176,43,46,48,0.0 +20176,74,10,33,0.0 +20176,31,12.5,33,0.0 +20176,38,263.5,26,0.0 +20176,72,34.8,48,0.0 +20176,22,21,15,0.0 +20176,50,16.25,31,0.0 +20176,56,38,25,0.0 +20176,1,18,34,0.0 +20176,48,12.75,49,0.0 +20176,54,7.45,2,0.0 +20176,17,39,17,0.0 +20176,44,19.45,22,0.0 +20176,42,14,11,0.0 +20176,26,31.23,36,0.0 +20176,6,25,5,0.0 +20176,47,9.5,6,0.0 +20176,20,81,16,0.0 +20176,71,21.5,11,0.0 +20176,32,32,7,0.0 +20176,37,26,29,0.0 +20176,8,40,28,0.0 +20176,40,18.4,12,0.0 +20176,51,53,12,0.0 +20176,55,24,50,0.0 +20176,73,15,11,0.0 +20176,14,23.25,31,0.0 +20176,70,15,18,0.0 +20176,12,38,2,0.0 +20176,29,123.79,9,0.0 +20176,41,9.65,2,0.0 +20176,68,12.5,5,0.0 +20176,65,21.05,23,0.0 +20176,2,19,40,0.0 +20176,36,19,2,0.0 +20176,5,21.35,15,0.0 +20176,45,9.5,1,0.0 +20176,67,14,21,0.0 +20176,3,10,49,0.0 +20176,52,7,5,0.0 +20176,60,34,13,0.0 +20176,63,43.9,35,0.0 +20176,21,10,17,0.0 +20176,64,33.25,37,0.0 +20176,57,19.5,42,0.0 +20176,7,30,49,0.0 +20176,34,14,24,0.0 +20176,39,18,43,0.0 +20176,13,6,11,0.0 +20176,9,97,2,0.0 +20176,19,9.2,41,0.0 +20176,62,49.3,8,0.0 +20176,23,9,47,0.0 +20176,4,22,14,0.0 +20176,18,62.5,50,0.0 +20176,25,14,11,0.0 +20176,76,18,40,0.0 +20176,27,43.9,25,0.0 +20176,24,4.5,20,0.0 +20176,35,18,35,0.0 +20176,15,15.5,20,0.0 +20176,69,36,40,0.0 +20176,49,20,49,0.0 +20176,33,2.5,31,0.0 +20177,73,15,28,0.0 +20177,55,24,11,0.0 +20177,18,62.5,36,0.0 +20177,45,9.5,20,0.0 +20177,53,32.8,17,0.0 +20177,10,31,43,0.0 +20177,38,263.5,13,0.0 +20177,5,21.35,41,0.0 +20177,12,38,50,0.0 +20177,13,6,48,0.0 +20177,15,15.5,25,0.0 +20177,48,12.75,46,0.0 +20177,74,10,4,0.0 +20177,60,34,6,0.0 +20177,35,18,33,0.0 +20177,14,23.25,2,0.0 +20177,32,32,15,0.0 +20177,47,9.5,22,0.0 +20177,41,9.65,28,0.0 +20177,42,14,3,0.0 +20177,50,16.25,29,0.0 +20177,4,22,4,0.0 +20177,37,26,41,0.0 +20177,56,38,50,0.0 +20177,49,20,38,0.0 +20177,66,17,8,0.0 +20177,16,17.45,14,0.0 +20177,43,46,41,0.0 +20177,40,18.4,40,0.0 +20177,25,14,15,0.0 +20177,8,40,3,0.0 +20177,46,12,37,0.0 +20177,19,9.2,5,0.0 +20177,67,14,42,0.0 +20177,65,21.05,9,0.0 +20177,39,18,28,0.0 +20177,61,28.5,36,0.0 +20177,64,33.25,41,0.0 +20177,70,15,45,0.0 +20177,33,2.5,44,0.0 +20177,76,18,41,0.0 +20177,44,19.45,36,0.0 +20177,26,31.23,45,0.0 +20177,77,13,43,0.0 +20177,7,30,32,0.0 +20177,2,19,8,0.0 +20177,9,97,28,0.0 +20177,31,12.5,30,0.0 +20178,18,62.5,4,0.0 +20178,37,26,7,0.0 +20178,14,23.25,16,0.0 +20178,41,9.65,5,0.0 +20178,7,30,28,0.0 +20178,42,14,25,0.0 +20178,67,14,47,0.0 +20178,59,55,21,0.0 +20178,49,20,29,0.0 +20178,38,263.5,13,0.0 +20178,34,14,15,0.0 +20178,48,12.75,14,0.0 +20178,57,19.5,27,0.0 +20178,25,14,48,0.0 +20178,43,46,5,0.0 +20178,3,10,42,0.0 +20178,4,22,40,0.0 +20178,51,53,5,0.0 +20178,71,21.5,33,0.0 +20178,21,10,41,0.0 +20178,52,7,39,0.0 +20178,17,39,1,0.0 +20178,20,81,40,0.0 +20178,11,21,16,0.0 +20178,16,17.45,34,0.0 +20178,76,18,15,0.0 +20178,44,19.45,27,0.0 +20178,2,19,35,0.0 +20178,12,38,15,0.0 +20178,53,32.8,9,0.0 +20178,19,9.2,37,0.0 +20178,32,32,48,0.0 +20178,28,45.6,38,0.0 +20178,74,10,36,0.0 +20178,33,2.5,45,0.0 +20178,50,16.25,46,0.0 +20178,58,13.25,45,0.0 +20178,31,12.5,10,0.0 +20178,29,123.79,33,0.0 +20178,77,13,6,0.0 +20178,64,33.25,48,0.0 +20178,1,18,25,0.0 +20178,24,4.5,14,0.0 +20178,10,31,46,0.0 +20178,5,21.35,37,0.0 +20178,27,43.9,20,0.0 +20178,39,18,23,0.0 +20178,54,7.45,4,0.0 +20178,35,18,36,0.0 +20178,36,19,43,0.0 +20178,9,97,17,0.0 +20178,60,34,41,0.0 +20178,61,28.5,16,0.0 +20178,72,34.8,4,0.0 +20178,56,38,16,0.0 +20178,22,21,43,0.0 +20178,26,31.23,5,0.0 +20178,30,25.89,45,0.0 +20178,65,21.05,1,0.0 +20178,55,24,46,0.0 +20178,62,49.3,35,0.0 +20178,6,25,37,0.0 +20178,68,12.5,8,0.0 +20179,51,53,16,0.0 +20179,7,30,45,0.0 +20179,28,45.6,11,0.0 +20179,61,28.5,48,0.0 +20179,57,19.5,14,0.0 +20179,60,34,26,0.0 +20179,63,43.9,29,0.0 +20179,17,39,46,0.0 +20179,14,23.25,34,0.0 +20179,66,17,10,0.0 +20179,43,46,14,0.0 +20179,49,20,34,0.0 +20179,75,7.75,10,0.0 +20179,39,18,27,0.0 +20179,35,18,7,0.0 +20179,1,18,41,0.0 +20179,52,7,5,0.0 +20179,47,9.5,44,0.0 +20179,76,18,49,0.0 +20179,20,81,7,0.0 +20179,34,14,15,0.0 +20179,64,33.25,1,0.0 +20179,55,24,6,0.0 +20179,10,31,6,0.0 +20179,58,13.25,36,0.0 +20179,16,17.45,45,0.0 +20179,54,7.45,49,0.0 +20179,69,36,7,0.0 +20179,30,25.89,12,0.0 +20179,25,14,37,0.0 +20179,74,10,28,0.0 +20179,37,26,32,0.0 +20179,24,4.5,6,0.0 +20179,38,263.5,5,0.0 +20179,4,22,22,0.0 +20179,18,62.5,10,0.0 +20179,77,13,28,0.0 +20179,6,25,1,0.0 +20179,32,32,41,0.0 +20179,31,12.5,30,0.0 +20179,44,19.45,46,0.0 +20179,8,40,43,0.0 +20179,23,9,20,0.0 +20179,12,38,33,0.0 +20179,5,21.35,1,0.0 +20179,13,6,17,0.0 +20179,71,21.5,9,0.0 +20179,19,9.2,23,0.0 +20179,29,123.79,32,0.0 +20179,62,49.3,37,0.0 +20179,26,31.23,21,0.0 +20179,9,97,42,0.0 +20179,15,15.5,3,0.0 +20179,36,19,8,0.0 +20179,48,12.75,42,0.0 +20179,21,10,39,0.0 +20179,73,15,33,0.0 +20179,67,14,2,0.0 +20179,65,21.05,32,0.0 +20179,42,14,30,0.0 +20179,33,2.5,33,0.0 +20179,45,9.5,23,0.0 +20179,53,32.8,16,0.0 +20179,41,9.65,8,0.0 +20179,59,55,35,0.0 +20180,49,20,22,0.0 +20180,9,97,10,0.0 +20180,36,19,3,0.0 +20180,7,30,41,0.0 +20180,8,40,43,0.0 +20180,19,9.2,17,0.0 +20180,17,39,18,0.0 +20180,62,49.3,44,0.0 +20180,43,46,24,0.0 +20180,67,14,40,0.0 +20180,1,18,43,0.0 +20180,5,21.35,23,0.0 +20180,38,263.5,37,0.0 +20180,50,16.25,48,0.0 +20180,70,15,6,0.0 +20180,24,4.5,20,0.0 +20180,74,10,39,0.0 +20180,11,21,28,0.0 +20180,20,81,40,0.0 +20180,44,19.45,5,0.0 +20180,51,53,11,0.0 +20180,28,45.6,6,0.0 +20180,26,31.23,44,0.0 +20180,76,18,15,0.0 +20180,40,18.4,30,0.0 +20180,6,25,3,0.0 +20180,56,38,3,0.0 +20180,16,17.45,22,0.0 +20180,3,10,46,0.0 +20181,13,6,47,0.0 +20181,48,12.75,18,0.0 +20181,47,9.5,19,0.0 +20181,37,26,12,0.0 +20181,25,14,22,0.0 +20181,49,20,32,0.0 +20181,21,10,47,0.0 +20181,62,49.3,24,0.0 +20181,64,33.25,42,0.0 +20182,21,10,45,0.0 +20182,48,12.75,44,0.0 +20182,31,12.5,2,0.0 +20182,38,263.5,13,0.0 +20182,57,19.5,1,0.0 +20182,23,9,27,0.0 +20182,64,33.25,41,0.0 +20182,69,36,27,0.0 +20182,13,6,47,0.0 +20182,19,9.2,15,0.0 +20182,7,30,46,0.0 +20182,43,46,44,0.0 +20182,16,17.45,34,0.0 +20182,25,14,13,0.0 +20182,75,7.75,30,0.0 +20182,4,22,1,0.0 +20182,51,53,2,0.0 +20182,49,20,37,0.0 +20183,53,32.8,14,0.0 +20183,47,9.5,17,0.0 +20183,77,13,25,0.0 +20183,69,36,38,0.0 +20183,4,22,18,0.0 +20183,72,34.8,46,0.0 +20183,76,18,11,0.0 +20183,74,10,39,0.0 +20183,52,7,46,0.0 +20183,3,10,25,0.0 +20183,30,25.89,10,0.0 +20183,39,18,43,0.0 +20183,55,24,38,0.0 +20183,56,38,15,0.0 +20183,28,45.6,34,0.0 +20183,60,34,26,0.0 +20183,73,15,1,0.0 +20183,13,6,48,0.0 +20183,8,40,44,0.0 +20183,35,18,33,0.0 +20183,29,123.79,39,0.0 +20183,17,39,15,0.0 +20183,27,43.9,47,0.0 +20183,33,2.5,23,0.0 +20183,16,17.45,37,0.0 +20183,42,14,11,0.0 +20183,61,28.5,43,0.0 +20183,63,43.9,18,0.0 +20183,58,13.25,36,0.0 +20183,64,33.25,6,0.0 +20183,26,31.23,33,0.0 +20183,45,9.5,1,0.0 +20183,38,263.5,26,0.0 +20183,37,26,3,0.0 +20183,22,21,44,0.0 +20183,65,21.05,44,0.0 +20183,70,15,48,0.0 +20183,19,9.2,50,0.0 +20183,46,12,24,0.0 +20183,18,62.5,39,0.0 +20183,21,10,48,0.0 +20183,24,4.5,3,0.0 +20183,66,17,28,0.0 +20183,14,23.25,39,0.0 +20183,48,12.75,11,0.0 +20183,68,12.5,3,0.0 +20183,7,30,12,0.0 +20183,44,19.45,6,0.0 +20183,41,9.65,5,0.0 +20184,32,32,35,0.0 +20184,34,14,44,0.0 +20184,11,21,44,0.0 +20184,20,81,8,0.0 +20184,57,19.5,32,0.0 +20184,25,14,16,0.0 +20184,16,17.45,40,0.0 +20184,30,25.89,33,0.0 +20184,66,17,21,0.0 +20184,22,21,29,0.0 +20184,17,39,25,0.0 +20184,5,21.35,44,0.0 +20184,38,263.5,9,0.0 +20184,4,22,26,0.0 +20184,13,6,14,0.0 +20184,19,9.2,9,0.0 +20184,18,62.5,11,0.0 +20184,72,34.8,12,0.0 +20184,33,2.5,35,0.0 +20184,76,18,18,0.0 +20184,69,36,24,0.0 +20184,35,18,30,0.0 +20184,36,19,42,0.0 +20184,31,12.5,18,0.0 +20184,42,14,11,0.0 +20184,55,24,22,0.0 +20184,58,13.25,6,0.0 +20185,61,28.5,27,0.0 +20185,68,12.5,1,0.0 +20185,18,62.5,38,0.0 +20185,9,97,35,0.0 +20185,77,13,36,0.0 +20185,56,38,23,0.0 +20185,72,34.8,4,0.0 +20185,5,21.35,23,0.0 +20185,50,16.25,32,0.0 +20185,65,21.05,43,0.0 +20185,8,40,14,0.0 +20185,38,263.5,28,0.0 +20185,7,30,40,0.0 +20185,44,19.45,26,0.0 +20185,69,36,33,0.0 +20185,75,7.75,43,0.0 +20185,74,10,17,0.0 +20185,10,31,7,0.0 +20185,41,9.65,44,0.0 +20185,42,14,21,0.0 +20185,39,18,33,0.0 +20185,48,12.75,37,0.0 +20185,23,9,33,0.0 +20185,13,6,2,0.0 +20185,31,12.5,11,0.0 +20185,22,21,20,0.0 +20185,20,81,18,0.0 +20185,43,46,6,0.0 +20185,3,10,32,0.0 +20185,26,31.23,45,0.0 +20185,35,18,23,0.0 +20185,57,19.5,33,0.0 +20185,25,14,1,0.0 +20185,28,45.6,21,0.0 +20185,76,18,26,0.0 +20185,30,25.89,7,0.0 +20185,12,38,5,0.0 +20185,4,22,35,0.0 +20185,33,2.5,23,0.0 +20185,55,24,11,0.0 +20185,70,15,30,0.0 +20185,49,20,2,0.0 +20185,29,123.79,47,0.0 +20185,59,55,37,0.0 +20185,40,18.4,46,0.0 +20185,15,15.5,9,0.0 +20185,53,32.8,50,0.0 +20185,73,15,7,0.0 +20185,60,34,27,0.0 +20185,21,10,46,0.0 +20185,64,33.25,30,0.0 +20185,36,19,18,0.0 +20185,1,18,29,0.0 +20185,47,9.5,47,0.0 +20185,66,17,1,0.0 +20185,52,7,30,0.0 +20185,34,14,19,0.0 +20185,46,12,25,0.0 +20186,58,13.25,3,0.0 +20186,11,21,9,0.0 +20186,76,18,23,0.0 +20186,29,123.79,24,0.0 +20186,40,18.4,17,0.0 +20186,39,18,15,0.0 +20186,12,38,18,0.0 +20186,53,32.8,18,0.0 +20186,33,2.5,27,0.0 +20186,49,20,14,0.0 +20186,71,21.5,50,0.0 +20186,62,49.3,44,0.0 +20186,10,31,17,0.0 +20186,73,15,4,0.0 +20186,60,34,39,0.0 +20186,75,7.75,18,0.0 +20186,77,13,18,0.0 +20186,21,10,50,0.0 +20186,57,19.5,32,0.0 +20186,31,12.5,9,0.0 +20186,27,43.9,18,0.0 +20186,8,40,17,0.0 +20186,17,39,23,0.0 +20186,26,31.23,8,0.0 +20186,13,6,4,0.0 +20186,65,21.05,39,0.0 +20186,38,263.5,8,0.0 +20186,52,7,23,0.0 +20186,61,28.5,1,0.0 +20186,63,43.9,12,0.0 +20186,32,32,33,0.0 +20186,66,17,36,0.0 +20186,56,38,23,0.0 +20186,50,16.25,9,0.0 +20186,6,25,40,0.0 +20186,69,36,28,0.0 +20186,43,46,30,0.0 +20186,64,33.25,32,0.0 +20186,45,9.5,35,0.0 +20186,15,15.5,27,0.0 +20186,3,10,39,0.0 +20186,9,97,41,0.0 +20186,44,19.45,40,0.0 +20186,59,55,5,0.0 +20186,74,10,24,0.0 +20186,42,14,10,0.0 +20186,7,30,34,0.0 +20186,36,19,8,0.0 +20186,19,9.2,11,0.0 +20186,55,24,5,0.0 +20186,25,14,9,0.0 +20186,34,14,34,0.0 +20186,22,21,18,0.0 +20186,54,7.45,15,0.0 +20186,2,19,37,0.0 +20186,70,15,23,0.0 +20186,48,12.75,6,0.0 +20186,35,18,50,0.0 +20186,46,12,15,0.0 +20186,4,22,27,0.0 +20186,1,18,43,0.0 +20186,24,4.5,42,0.0 +20186,5,21.35,28,0.0 +20186,18,62.5,6,0.0 +20186,37,26,50,0.0 +20186,30,25.89,9,0.0 +20186,67,14,45,0.0 +20186,68,12.5,30,0.0 +20186,72,34.8,47,0.0 +20186,51,53,3,0.0 +20187,30,25.89,5,0.0 +20187,51,53,22,0.0 +20187,47,9.5,22,0.0 +20187,36,19,40,0.0 +20187,54,7.45,10,0.0 +20187,66,17,34,0.0 +20187,35,18,50,0.0 +20187,7,30,19,0.0 +20187,70,15,8,0.0 +20187,34,14,11,0.0 +20187,37,26,24,0.0 +20187,2,19,30,0.0 +20187,61,28.5,47,0.0 +20187,15,15.5,36,0.0 +20187,31,12.5,37,0.0 +20187,24,4.5,9,0.0 +20187,65,21.05,23,0.0 +20187,56,38,26,0.0 +20187,14,23.25,2,0.0 +20187,72,34.8,35,0.0 +20187,8,40,17,0.0 +20187,38,263.5,47,0.0 +20187,73,15,30,0.0 +20187,9,97,17,0.0 +20187,45,9.5,20,0.0 +20187,6,25,9,0.0 +20187,21,10,33,0.0 +20187,13,6,13,0.0 +20187,27,43.9,22,0.0 +20187,75,7.75,43,0.0 +20187,44,19.45,8,0.0 +20187,26,31.23,13,0.0 +20187,16,17.45,19,0.0 +20187,39,18,21,0.0 +20187,20,81,43,0.0 +20187,58,13.25,9,0.0 +20187,25,14,35,0.0 +20187,18,62.5,16,0.0 +20187,33,2.5,31,0.0 +20187,5,21.35,2,0.0 +20187,60,34,27,0.0 +20187,12,38,27,0.0 +20187,41,9.65,24,0.0 +20187,52,7,15,0.0 +20187,63,43.9,50,0.0 +20187,77,13,5,0.0 +20187,57,19.5,13,0.0 +20187,62,49.3,35,0.0 +20187,43,46,47,0.0 +20187,4,22,24,0.0 +20187,55,24,49,0.0 +20187,59,55,26,0.0 +20187,50,16.25,49,0.0 +20187,48,12.75,29,0.0 +20187,76,18,41,0.0 +20187,49,20,48,0.0 +20187,10,31,46,0.0 +20187,67,14,46,0.0 +20187,11,21,49,0.0 +20187,74,10,38,0.0 +20187,46,12,37,0.0 +20187,32,32,23,0.0 +20187,68,12.5,33,0.0 +20187,17,39,12,0.0 +20187,40,18.4,48,0.0 +20187,19,9.2,39,0.0 +20187,69,36,17,0.0 +20187,53,32.8,1,0.0 +20187,29,123.79,24,0.0 +20187,71,21.5,10,0.0 +20187,1,18,7,0.0 +20187,28,45.6,33,0.0 +20187,23,9,22,0.0 +20187,64,33.25,20,0.0 +20187,22,21,34,0.0 +20188,59,55,25,0.0 +20188,74,10,45,0.0 +20188,72,34.8,36,0.0 +20188,52,7,8,0.0 +20188,39,18,1,0.0 +20188,8,40,26,0.0 +20188,11,21,1,0.0 +20188,3,10,19,0.0 +20188,51,53,15,0.0 +20188,22,21,50,0.0 +20188,54,7.45,33,0.0 +20188,24,4.5,9,0.0 +20188,13,6,2,0.0 +20188,58,13.25,37,0.0 +20188,73,15,17,0.0 +20188,35,18,19,0.0 +20188,48,12.75,19,0.0 +20188,2,19,42,0.0 +20188,67,14,48,0.0 +20188,53,32.8,38,0.0 +20188,4,22,14,0.0 +20188,68,12.5,42,0.0 +20188,21,10,38,0.0 +20188,36,19,38,0.0 +20188,31,12.5,43,0.0 +20188,46,12,31,0.0 +20188,16,17.45,32,0.0 +20188,30,25.89,50,0.0 +20188,63,43.9,5,0.0 +20188,77,13,8,0.0 +20188,42,14,20,0.0 +20188,25,14,9,0.0 +20188,5,21.35,30,0.0 +20188,65,21.05,10,0.0 +20188,7,30,25,0.0 +20188,12,38,32,0.0 +20188,15,15.5,21,0.0 +20188,6,25,38,0.0 +20188,17,39,21,0.0 +20188,9,97,22,0.0 +20188,34,14,35,0.0 +20188,44,19.45,5,0.0 +20188,47,9.5,27,0.0 +20188,56,38,16,0.0 +20188,10,31,27,0.0 +20188,75,7.75,26,0.0 +20188,38,263.5,33,0.0 +20188,60,34,3,0.0 +20188,41,9.65,22,0.0 +20188,43,46,43,0.0 +20188,32,32,23,0.0 +20188,26,31.23,38,0.0 +20188,28,45.6,42,0.0 +20188,76,18,37,0.0 +20188,37,26,44,0.0 +20188,49,20,39,0.0 +20188,29,123.79,19,0.0 +20188,40,18.4,37,0.0 +20188,23,9,13,0.0 +20188,20,81,38,0.0 +20188,27,43.9,4,0.0 +20188,18,62.5,1,0.0 +20188,61,28.5,39,0.0 +20188,71,21.5,15,0.0 +20188,33,2.5,32,0.0 +20188,19,9.2,17,0.0 +20188,45,9.5,20,0.0 +20188,14,23.25,10,0.0 +20188,62,49.3,10,0.0 +20188,70,15,28,0.0 +20188,55,24,26,0.0 +20188,57,19.5,12,0.0 +20189,29,123.79,7,0.0 +20189,23,9,46,0.0 +20189,30,25.89,8,0.0 +20189,73,15,13,0.0 +20189,36,19,33,0.0 +20189,34,14,15,0.0 +20189,33,2.5,12,0.0 +20189,61,28.5,9,0.0 +20189,9,97,44,0.0 +20189,16,17.45,40,0.0 +20189,58,13.25,19,0.0 +20189,20,81,7,0.0 +20189,32,32,2,0.0 +20189,37,26,39,0.0 +20189,65,21.05,21,0.0 +20189,39,18,8,0.0 +20189,27,43.9,14,0.0 +20189,11,21,39,0.0 +20189,66,17,44,0.0 +20189,14,23.25,35,0.0 +20189,74,10,15,0.0 +20189,2,19,4,0.0 +20189,64,33.25,23,0.0 +20189,42,14,1,0.0 +20189,18,62.5,21,0.0 +20190,45,9.5,2,0.0 +20190,50,16.25,47,0.0 +20190,39,18,43,0.0 +20191,44,19.45,6,0.0 +20191,46,12,41,0.0 +20191,64,33.25,32,0.0 +20191,5,21.35,9,0.0 +20191,41,9.65,29,0.0 +20191,33,2.5,4,0.0 +20191,8,40,28,0.0 +20191,58,13.25,28,0.0 +20191,2,19,17,0.0 +20191,35,18,5,0.0 +20191,73,15,10,0.0 +20191,74,10,30,0.0 +20191,55,24,10,0.0 +20191,24,4.5,50,0.0 +20191,76,18,47,0.0 +20191,69,36,12,0.0 +20191,10,31,22,0.0 +20191,65,21.05,1,0.0 +20191,32,32,48,0.0 +20191,20,81,37,0.0 +20191,72,34.8,25,0.0 +20191,40,18.4,46,0.0 +20191,57,19.5,9,0.0 +20191,27,43.9,45,0.0 +20191,22,21,2,0.0 +20191,63,43.9,22,0.0 +20191,13,6,8,0.0 +20191,54,7.45,25,0.0 +20192,49,20,36,0.0 +20192,77,13,31,0.0 +20192,37,26,38,0.0 +20192,57,19.5,45,0.0 +20192,40,18.4,49,0.0 +20192,61,28.5,32,0.0 +20192,56,38,28,0.0 +20192,66,17,10,0.0 +20192,28,45.6,1,0.0 +20192,26,31.23,23,0.0 +20192,67,14,9,0.0 +20192,45,9.5,1,0.0 +20192,32,32,3,0.0 +20192,44,19.45,15,0.0 +20192,60,34,26,0.0 +20192,46,12,34,0.0 +20192,4,22,13,0.0 +20192,36,19,14,0.0 +20192,48,12.75,15,0.0 +20192,52,7,19,0.0 +20192,65,21.05,16,0.0 +20192,25,14,34,0.0 +20192,3,10,44,0.0 +20192,58,13.25,37,0.0 +20192,1,18,16,0.0 +20192,33,2.5,12,0.0 +20192,74,10,48,0.0 +20192,5,21.35,45,0.0 +20192,12,38,5,0.0 +20192,23,9,31,0.0 +20192,9,97,34,0.0 +20192,21,10,41,0.0 +20192,54,7.45,4,0.0 +20192,51,53,13,0.0 +20192,13,6,29,0.0 +20192,15,15.5,11,0.0 +20192,64,33.25,10,0.0 +20192,68,12.5,38,0.0 +20192,14,23.25,44,0.0 +20192,20,81,45,0.0 +20192,10,31,39,0.0 +20192,71,21.5,27,0.0 +20192,22,21,13,0.0 +20192,7,30,5,0.0 +20192,62,49.3,13,0.0 +20193,72,34.8,4,0.0 +20193,9,97,31,0.0 +20193,21,10,13,0.0 +20193,59,55,7,0.0 +20193,1,18,12,0.0 +20193,70,15,15,0.0 +20193,42,14,32,0.0 +20193,7,30,34,0.0 +20193,33,2.5,20,0.0 +20193,53,32.8,30,0.0 +20193,31,12.5,27,0.0 +20193,74,10,20,0.0 +20193,55,24,38,0.0 +20193,60,34,13,0.0 +20193,57,19.5,42,0.0 +20193,67,14,50,0.0 +20193,50,16.25,17,0.0 +20193,29,123.79,40,0.0 +20193,48,12.75,16,0.0 +20193,36,19,2,0.0 +20194,60,34,19,0.0 +20194,14,23.25,7,0.0 +20194,24,4.5,37,0.0 +20194,58,13.25,50,0.0 +20194,22,21,14,0.0 +20194,57,19.5,29,0.0 +20194,1,18,15,0.0 +20194,73,15,18,0.0 +20194,50,16.25,6,0.0 +20194,54,7.45,26,0.0 +20194,56,38,36,0.0 +20194,42,14,36,0.0 +20194,63,43.9,22,0.0 +20194,43,46,42,0.0 +20194,11,21,17,0.0 +20194,70,15,2,0.0 +20194,38,263.5,15,0.0 +20194,40,18.4,33,0.0 +20194,12,38,6,0.0 +20194,18,62.5,3,0.0 +20194,71,21.5,37,0.0 +20194,31,12.5,14,0.0 +20194,77,13,28,0.0 +20194,2,19,3,0.0 +20194,72,34.8,24,0.0 +20194,34,14,40,0.0 +20194,76,18,46,0.0 +20194,13,6,37,0.0 +20195,21,10,21,0.0 +20195,53,32.8,33,0.0 +20195,71,21.5,17,0.0 +20195,20,81,14,0.0 +20195,4,22,11,0.0 +20195,7,30,20,0.0 +20195,32,32,6,0.0 +20195,66,17,20,0.0 +20195,29,123.79,33,0.0 +20195,31,12.5,6,0.0 +20195,46,12,6,0.0 +20195,24,4.5,50,0.0 +20195,74,10,20,0.0 +20195,33,2.5,47,0.0 +20195,75,7.75,31,0.0 +20195,17,39,43,0.0 +20195,3,10,6,0.0 +20195,37,26,40,0.0 +20195,15,15.5,20,0.0 +20195,2,19,29,0.0 +20195,61,28.5,22,0.0 +20195,26,31.23,2,0.0 +20195,73,15,27,0.0 +20195,70,15,18,0.0 +20195,35,18,31,0.0 +20195,23,9,9,0.0 +20195,5,21.35,15,0.0 +20195,52,7,26,0.0 +20195,57,19.5,16,0.0 +20195,77,13,20,0.0 +20195,62,49.3,27,0.0 +20195,54,7.45,6,0.0 +20195,1,18,8,0.0 +20195,30,25.89,31,0.0 +20195,22,21,45,0.0 +20195,38,263.5,47,0.0 +20196,13,6,38,0.0 +20196,43,46,4,0.0 +20196,3,10,36,0.0 +20196,69,36,35,0.0 +20196,34,14,36,0.0 +20196,74,10,15,0.0 +20196,14,23.25,31,0.0 +20196,29,123.79,44,0.0 +20196,24,4.5,11,0.0 +20196,56,38,20,0.0 +20196,11,21,32,0.0 +20196,6,25,16,0.0 +20196,46,12,38,0.0 +20196,51,53,18,0.0 +20196,35,18,46,0.0 +20196,19,9.2,32,0.0 +20196,49,20,24,0.0 +20196,42,14,47,0.0 +20196,66,17,26,0.0 +20196,75,7.75,27,0.0 +20196,18,62.5,40,0.0 +20196,26,31.23,39,0.0 +20196,21,10,4,0.0 +20196,54,7.45,20,0.0 +20196,2,19,14,0.0 +20196,53,32.8,42,0.0 +20196,7,30,50,0.0 +20196,55,24,42,0.0 +20196,59,55,2,0.0 +20196,38,263.5,32,0.0 +20196,57,19.5,43,0.0 +20196,9,97,15,0.0 +20196,20,81,48,0.0 +20196,12,38,6,0.0 +20196,68,12.5,36,0.0 +20196,28,45.6,26,0.0 +20196,50,16.25,32,0.0 +20196,62,49.3,39,0.0 +20196,17,39,48,0.0 +20196,58,13.25,45,0.0 +20196,22,21,46,0.0 +20196,73,15,29,0.0 +20196,48,12.75,2,0.0 +20196,32,32,42,0.0 +20196,67,14,17,0.0 +20196,33,2.5,18,0.0 +20196,5,21.35,28,0.0 +20196,25,14,9,0.0 +20196,30,25.89,33,0.0 +20196,40,18.4,35,0.0 +20196,77,13,37,0.0 +20197,8,40,12,0.0 +20197,41,9.65,35,0.0 +20197,3,10,20,0.0 +20197,26,31.23,28,0.0 +20197,46,12,6,0.0 +20197,69,36,11,0.0 +20197,68,12.5,37,0.0 +20197,53,32.8,23,0.0 +20197,37,26,7,0.0 +20197,24,4.5,28,0.0 +20197,76,18,37,0.0 +20197,33,2.5,34,0.0 +20197,35,18,4,0.0 +20197,12,38,28,0.0 +20197,4,22,36,0.0 +20197,61,28.5,36,0.0 +20197,17,39,33,0.0 +20197,20,81,36,0.0 +20197,55,24,43,0.0 +20197,59,55,39,0.0 +20197,60,34,23,0.0 +20197,50,16.25,15,0.0 +20197,64,33.25,3,0.0 +20197,71,21.5,9,0.0 +20197,11,21,4,0.0 +20197,43,46,18,0.0 +20197,22,21,2,0.0 +20197,72,34.8,47,0.0 +20197,49,20,39,0.0 +20197,34,14,47,0.0 +20197,32,32,21,0.0 +20197,18,62.5,12,0.0 +20197,36,19,10,0.0 +20197,58,13.25,7,0.0 +20197,73,15,11,0.0 +20197,62,49.3,49,0.0 +20197,74,10,5,0.0 +20197,25,14,41,0.0 +20197,39,18,45,0.0 +20197,48,12.75,13,0.0 +20197,45,9.5,45,0.0 +20197,31,12.5,31,0.0 +20197,30,25.89,50,0.0 +20197,51,53,1,0.0 +20197,10,31,24,0.0 +20198,47,9.5,7,0.0 +20198,59,55,12,0.0 +20198,57,19.5,29,0.0 +20198,74,10,33,0.0 +20198,36,19,30,0.0 +20198,53,32.8,19,0.0 +20198,15,15.5,35,0.0 +20198,62,49.3,27,0.0 +20198,63,43.9,26,0.0 +20198,6,25,7,0.0 +20198,49,20,37,0.0 +20198,56,38,8,0.0 +20198,17,39,27,0.0 +20198,21,10,50,0.0 +20198,46,12,45,0.0 +20198,52,7,10,0.0 +20198,72,34.8,39,0.0 +20198,27,43.9,22,0.0 +20198,51,53,15,0.0 +20198,76,18,35,0.0 +20198,77,13,30,0.0 +20198,9,97,49,0.0 +20198,65,21.05,37,0.0 +20198,26,31.23,48,0.0 +20198,4,22,1,0.0 +20198,5,21.35,31,0.0 +20198,45,9.5,43,0.0 +20198,31,12.5,9,0.0 +20198,2,19,11,0.0 +20198,71,21.5,21,0.0 +20198,75,7.75,22,0.0 +20198,58,13.25,5,0.0 +20198,40,18.4,26,0.0 +20198,44,19.45,5,0.0 +20198,23,9,30,0.0 +20198,19,9.2,48,0.0 +20198,38,263.5,5,0.0 +20198,33,2.5,26,0.0 +20198,69,36,37,0.0 +20198,67,14,13,0.0 +20198,73,15,33,0.0 +20198,24,4.5,15,0.0 +20198,7,30,48,0.0 +20198,25,14,20,0.0 +20198,70,15,47,0.0 +20198,61,28.5,7,0.0 +20198,37,26,46,0.0 +20198,13,6,29,0.0 +20198,35,18,43,0.0 +20198,68,12.5,41,0.0 +20198,54,7.45,23,0.0 +20198,32,32,16,0.0 +20198,55,24,47,0.0 +20198,66,17,3,0.0 +20198,28,45.6,25,0.0 +20198,8,40,11,0.0 +20198,1,18,9,0.0 +20198,3,10,6,0.0 +20198,29,123.79,10,0.0 +20198,11,21,12,0.0 +20198,41,9.65,19,0.0 +20198,43,46,9,0.0 +20198,50,16.25,6,0.0 +20198,18,62.5,17,0.0 +20198,34,14,23,0.0 +20198,22,21,4,0.0 +20198,48,12.75,29,0.0 +20198,60,34,10,0.0 +20198,10,31,7,0.0 +20198,12,38,31,0.0 +20198,64,33.25,8,0.0 +20198,14,23.25,16,0.0 +20198,39,18,29,0.0 +20198,20,81,17,0.0 +20199,30,25.89,20,0.0 +20199,75,7.75,17,0.0 +20199,65,21.05,3,0.0 +20199,1,18,40,0.0 +20199,17,39,22,0.0 +20199,9,97,47,0.0 +20199,28,45.6,19,0.0 +20199,25,14,2,0.0 +20199,40,18.4,26,0.0 +20199,8,40,35,0.0 +20199,44,19.45,27,0.0 +20199,45,9.5,46,0.0 +20199,42,14,19,0.0 +20199,33,2.5,41,0.0 +20199,34,14,23,0.0 +20199,60,34,18,0.0 +20199,62,49.3,40,0.0 +20199,64,33.25,41,0.0 +20199,13,6,27,0.0 +20199,70,15,33,0.0 +20199,61,28.5,35,0.0 +20199,18,62.5,44,0.0 +20199,66,17,19,0.0 +20199,43,46,12,0.0 +20199,71,21.5,15,0.0 +20199,36,19,17,0.0 +20199,26,31.23,1,0.0 +20199,69,36,21,0.0 +20199,54,7.45,43,0.0 +20199,58,13.25,49,0.0 +20199,4,22,28,0.0 +20199,63,43.9,32,0.0 +20199,21,10,34,0.0 +20199,3,10,49,0.0 +20199,74,10,14,0.0 +20199,12,38,10,0.0 +20199,29,123.79,3,0.0 +20199,5,21.35,40,0.0 +20199,57,19.5,4,0.0 +20199,11,21,2,0.0 +20199,16,17.45,20,0.0 +20199,41,9.65,12,0.0 +20199,22,21,48,0.0 +20199,77,13,44,0.0 +20199,15,15.5,34,0.0 +20199,24,4.5,21,0.0 +20199,23,9,39,0.0 +20200,29,123.79,49,0.0 +20200,69,36,4,0.0 +20200,44,19.45,47,0.0 +20200,49,20,12,0.0 +20200,65,21.05,16,0.0 +20200,7,30,39,0.0 +20200,25,14,13,0.0 +20200,2,19,18,0.0 +20200,51,53,9,0.0 +20200,42,14,23,0.0 +20200,4,22,5,0.0 +20200,68,12.5,38,0.0 +20200,54,7.45,22,0.0 +20200,6,25,2,0.0 +20200,58,13.25,48,0.0 +20200,48,12.75,36,0.0 +20200,15,15.5,2,0.0 +20200,35,18,17,0.0 +20200,61,28.5,8,0.0 +20200,36,19,41,0.0 +20200,70,15,42,0.0 +20200,10,31,12,0.0 +20200,66,17,43,0.0 +20200,26,31.23,23,0.0 +20200,63,43.9,38,0.0 +20200,19,9.2,42,0.0 +20200,31,12.5,17,0.0 +20200,16,17.45,46,0.0 +20200,34,14,9,0.0 +20200,74,10,44,0.0 +20200,67,14,1,0.0 +20200,14,23.25,21,0.0 +20200,11,21,41,0.0 +20200,27,43.9,36,0.0 +20200,32,32,10,0.0 +20200,28,45.6,44,0.0 +20200,37,26,25,0.0 +20200,77,13,12,0.0 +20200,57,19.5,40,0.0 +20200,45,9.5,9,0.0 +20200,12,38,49,0.0 +20200,60,34,14,0.0 +20200,21,10,46,0.0 +20200,18,62.5,48,0.0 +20200,71,21.5,44,0.0 +20200,64,33.25,35,0.0 +20200,17,39,12,0.0 +20200,75,7.75,25,0.0 +20200,40,18.4,20,0.0 +20200,73,15,37,0.0 +20200,47,9.5,26,0.0 +20200,72,34.8,46,0.0 +20200,5,21.35,38,0.0 +20200,30,25.89,21,0.0 +20200,3,10,33,0.0 +20200,1,18,44,0.0 +20200,52,7,24,0.0 +20201,34,14,28,0.0 +20201,59,55,43,0.0 +20201,30,25.89,39,0.0 +20201,53,32.8,10,0.0 +20201,27,43.9,11,0.0 +20201,71,21.5,28,0.0 +20201,73,15,12,0.0 +20201,4,22,10,0.0 +20201,51,53,15,0.0 +20201,24,4.5,22,0.0 +20201,10,31,28,0.0 +20201,18,62.5,24,0.0 +20201,13,6,39,0.0 +20201,76,18,45,0.0 +20201,41,9.65,33,0.0 +20201,74,10,8,0.0 +20201,45,9.5,11,0.0 +20201,28,45.6,24,0.0 +20201,43,46,43,0.0 +20201,39,18,1,0.0 +20201,36,19,39,0.0 +20202,45,9.5,38,0.0 +20202,62,49.3,40,0.0 +20202,15,15.5,22,0.0 +20202,4,22,20,0.0 +20202,73,15,31,0.0 +20202,33,2.5,37,0.0 +20202,43,46,10,0.0 +20202,72,34.8,40,0.0 +20202,69,36,23,0.0 +20202,61,28.5,3,0.0 +20202,74,10,25,0.0 +20202,75,7.75,15,0.0 +20202,14,23.25,43,0.0 +20202,50,16.25,39,0.0 +20202,7,30,20,0.0 +20202,56,38,24,0.0 +20202,46,12,20,0.0 +20202,71,21.5,4,0.0 +20202,25,14,20,0.0 +20202,9,97,33,0.0 +20202,10,31,39,0.0 +20202,23,9,12,0.0 +20202,35,18,50,0.0 +20202,26,31.23,33,0.0 +20202,40,18.4,12,0.0 +20202,48,12.75,22,0.0 +20202,70,15,27,0.0 +20202,47,9.5,27,0.0 +20202,36,19,42,0.0 +20202,5,21.35,43,0.0 +20202,30,25.89,11,0.0 +20202,19,9.2,26,0.0 +20202,16,17.45,14,0.0 +20203,32,32,34,0.0 +20203,62,49.3,14,0.0 +20203,27,43.9,29,0.0 +20203,65,21.05,19,0.0 +20203,72,34.8,2,0.0 +20203,75,7.75,17,0.0 +20203,63,43.9,41,0.0 +20203,55,24,1,0.0 +20203,34,14,9,0.0 +20203,47,9.5,20,0.0 +20203,35,18,29,0.0 +20203,19,9.2,3,0.0 +20203,70,15,35,0.0 +20203,60,34,43,0.0 +20203,77,13,39,0.0 +20203,24,4.5,46,0.0 +20203,7,30,19,0.0 +20203,49,20,5,0.0 +20203,22,21,41,0.0 +20203,38,263.5,18,0.0 +20203,61,28.5,36,0.0 +20203,66,17,1,0.0 +20203,48,12.75,33,0.0 +20203,52,7,11,0.0 +20203,69,36,27,0.0 +20203,18,62.5,6,0.0 +20203,42,14,37,0.0 +20203,45,9.5,33,0.0 +20203,13,6,5,0.0 +20203,15,15.5,33,0.0 +20203,53,32.8,8,0.0 +20203,1,18,14,0.0 +20203,10,31,5,0.0 +20203,74,10,36,0.0 +20203,23,9,22,0.0 +20203,44,19.45,49,0.0 +20203,20,81,14,0.0 +20203,26,31.23,25,0.0 +20203,14,23.25,32,0.0 +20203,9,97,41,0.0 +20203,73,15,1,0.0 +20203,40,18.4,44,0.0 +20203,31,12.5,43,0.0 +20203,36,19,50,0.0 +20203,68,12.5,14,0.0 +20203,4,22,42,0.0 +20203,71,21.5,24,0.0 +20203,6,25,30,0.0 +20203,12,38,45,0.0 +20203,16,17.45,21,0.0 +20203,64,33.25,38,0.0 +20203,3,10,14,0.0 +20203,8,40,23,0.0 +20203,56,38,1,0.0 +20203,46,12,8,0.0 +20203,58,13.25,28,0.0 +20203,17,39,40,0.0 +20204,63,43.9,38,0.0 +20204,50,16.25,6,0.0 +20204,40,18.4,23,0.0 +20204,15,15.5,41,0.0 +20204,13,6,16,0.0 +20204,36,19,11,0.0 +20204,57,19.5,15,0.0 +20204,61,28.5,33,0.0 +20204,62,49.3,36,0.0 +20204,5,21.35,32,0.0 +20204,51,53,37,0.0 +20204,66,17,35,0.0 +20204,56,38,31,0.0 +20204,12,38,41,0.0 +20204,21,10,9,0.0 +20204,20,81,42,0.0 +20204,55,24,12,0.0 +20204,2,19,33,0.0 +20204,11,21,2,0.0 +20204,29,123.79,5,0.0 +20204,58,13.25,25,0.0 +20204,77,13,24,0.0 +20204,41,9.65,24,0.0 +20204,34,14,30,0.0 +20204,46,12,17,0.0 +20204,60,34,18,0.0 +20204,64,33.25,1,0.0 +20204,17,39,22,0.0 +20204,6,25,6,0.0 +20204,42,14,2,0.0 +20204,49,20,27,0.0 +20204,18,62.5,17,0.0 +20204,72,34.8,8,0.0 +20204,65,21.05,42,0.0 +20204,73,15,29,0.0 +20204,19,9.2,18,0.0 +20204,45,9.5,48,0.0 +20204,37,26,31,0.0 +20204,27,43.9,49,0.0 +20204,31,12.5,33,0.0 +20204,53,32.8,20,0.0 +20204,1,18,27,0.0 +20204,44,19.45,47,0.0 +20204,48,12.75,24,0.0 +20204,43,46,11,0.0 +20204,30,25.89,35,0.0 +20204,24,4.5,46,0.0 +20204,14,23.25,37,0.0 +20204,52,7,15,0.0 +20204,38,263.5,46,0.0 +20204,76,18,44,0.0 +20204,28,45.6,36,0.0 +20204,54,7.45,21,0.0 +20204,35,18,16,0.0 +20204,8,40,45,0.0 +20204,26,31.23,26,0.0 +20204,47,9.5,29,0.0 +20204,70,15,36,0.0 +20204,74,10,49,0.0 +20204,10,31,8,0.0 +20204,3,10,41,0.0 +20204,22,21,18,0.0 +20204,59,55,42,0.0 +20204,67,14,26,0.0 +20204,7,30,22,0.0 +20204,4,22,41,0.0 +20204,9,97,5,0.0 +20204,69,36,38,0.0 +20204,68,12.5,17,0.0 +20204,16,17.45,12,0.0 +20204,39,18,19,0.0 +20204,75,7.75,28,0.0 +20204,23,9,32,0.0 +20205,39,18,25,0.0 +20205,38,263.5,11,0.0 +20205,27,43.9,2,0.0 +20205,53,32.8,43,0.0 +20205,15,15.5,26,0.0 +20205,4,22,25,0.0 +20205,77,13,46,0.0 +20205,34,14,8,0.0 +20205,66,17,3,0.0 +20205,11,21,33,0.0 +20205,7,30,3,0.0 +20205,12,38,24,0.0 +20205,44,19.45,47,0.0 +20205,21,10,24,0.0 +20205,56,38,41,0.0 +20205,58,13.25,8,0.0 +20205,46,12,4,0.0 +20205,40,18.4,15,0.0 +20205,47,9.5,4,0.0 +20205,14,23.25,44,0.0 +20205,25,14,22,0.0 +20205,9,97,38,0.0 +20205,75,7.75,32,0.0 +20206,50,16.25,27,0.0 +20206,7,30,22,0.0 +20206,46,12,19,0.0 +20206,30,25.89,25,0.0 +20206,63,43.9,25,0.0 +20206,47,9.5,37,0.0 +20206,26,31.23,11,0.0 +20206,32,32,9,0.0 +20206,65,21.05,39,0.0 +20206,11,21,39,0.0 +20206,74,10,6,0.0 +20206,12,38,5,0.0 +20206,42,14,3,0.0 +20206,43,46,43,0.0 +20206,35,18,13,0.0 +20206,55,24,40,0.0 +20206,54,7.45,35,0.0 +20206,59,55,33,0.0 +20207,52,7,12,0.0 +20207,61,28.5,28,0.0 +20207,75,7.75,49,0.0 +20207,55,24,41,0.0 +20207,66,17,4,0.0 +20207,50,16.25,12,0.0 +20207,29,123.79,33,0.0 +20207,5,21.35,47,0.0 +20207,63,43.9,37,0.0 +20207,37,26,33,0.0 +20207,36,19,47,0.0 +20207,38,263.5,17,0.0 +20207,51,53,43,0.0 +20207,71,21.5,41,0.0 +20207,7,30,38,0.0 +20207,49,20,10,0.0 +20207,53,32.8,16,0.0 +20207,20,81,15,0.0 +20207,21,10,31,0.0 +20207,26,31.23,2,0.0 +20207,57,19.5,32,0.0 +20207,48,12.75,48,0.0 +20207,40,18.4,6,0.0 +20207,19,9.2,4,0.0 +20207,60,34,43,0.0 +20207,32,32,33,0.0 +20207,45,9.5,5,0.0 +20207,24,4.5,41,0.0 +20207,44,19.45,23,0.0 +20207,3,10,24,0.0 +20207,70,15,3,0.0 +20207,46,12,50,0.0 +20207,28,45.6,13,0.0 +20207,11,21,35,0.0 +20207,42,14,49,0.0 +20207,22,21,32,0.0 +20207,72,34.8,34,0.0 +20207,1,18,41,0.0 +20207,59,55,13,0.0 +20207,34,14,49,0.0 +20207,43,46,33,0.0 +20207,15,15.5,44,0.0 +20207,18,62.5,46,0.0 +20207,77,13,6,0.0 +20207,76,18,39,0.0 +20207,8,40,38,0.0 +20207,10,31,29,0.0 +20207,73,15,50,0.0 +20207,12,38,47,0.0 +20207,9,97,23,0.0 +20207,31,12.5,7,0.0 +20207,23,9,49,0.0 +20207,54,7.45,29,0.0 +20207,13,6,33,0.0 +20207,17,39,5,0.0 +20207,64,33.25,29,0.0 +20207,35,18,9,0.0 +20208,37,26,17,0.0 +20208,57,19.5,11,0.0 +20208,5,21.35,6,0.0 +20208,55,24,36,0.0 +20208,60,34,7,0.0 +20208,50,16.25,42,0.0 +20208,66,17,47,0.0 +20208,73,15,9,0.0 +20208,32,32,23,0.0 +20208,1,18,27,0.0 +20208,17,39,23,0.0 +20208,45,9.5,36,0.0 +20208,23,9,14,0.0 +20208,33,2.5,11,0.0 +20208,54,7.45,38,0.0 +20208,74,10,34,0.0 +20208,31,12.5,5,0.0 +20208,35,18,38,0.0 +20208,28,45.6,30,0.0 +20208,30,25.89,16,0.0 +20208,4,22,46,0.0 +20208,59,55,15,0.0 +20208,11,21,11,0.0 +20208,22,21,2,0.0 +20208,39,18,11,0.0 +20208,19,9.2,8,0.0 +20208,10,31,38,0.0 +20208,43,46,1,0.0 +20208,71,21.5,24,0.0 +20208,20,81,6,0.0 +20208,41,9.65,42,0.0 +20208,42,14,11,0.0 +20209,48,12.75,23,0.0 +20209,27,43.9,11,0.0 +20209,11,21,6,0.0 +20209,56,38,2,0.0 +20209,59,55,14,0.0 +20209,42,14,15,0.0 +20209,16,17.45,9,0.0 +20209,57,19.5,24,0.0 +20209,54,7.45,25,0.0 +20209,65,21.05,7,0.0 +20209,13,6,45,0.0 +20209,50,16.25,12,0.0 +20209,38,263.5,35,0.0 +20209,22,21,34,0.0 +20209,34,14,42,0.0 +20209,31,12.5,26,0.0 +20209,2,19,9,0.0 +20209,20,81,15,0.0 +20209,49,20,39,0.0 +20209,5,21.35,13,0.0 +20209,77,13,48,0.0 +20209,33,2.5,5,0.0 +20209,18,62.5,48,0.0 +20209,62,49.3,3,0.0 +20209,58,13.25,24,0.0 +20209,60,34,35,0.0 +20209,39,18,16,0.0 +20209,9,97,16,0.0 +20209,35,18,13,0.0 +20209,76,18,24,0.0 +20209,67,14,35,0.0 +20209,64,33.25,32,0.0 +20209,4,22,36,0.0 +20209,71,21.5,26,0.0 +20209,46,12,42,0.0 +20209,32,32,29,0.0 +20209,26,31.23,24,0.0 +20209,7,30,12,0.0 +20209,3,10,3,0.0 +20209,1,18,34,0.0 +20209,30,25.89,17,0.0 +20209,74,10,31,0.0 +20209,24,4.5,41,0.0 +20209,45,9.5,40,0.0 +20209,55,24,12,0.0 +20209,41,9.65,5,0.0 +20209,28,45.6,16,0.0 +20209,52,7,43,0.0 +20209,61,28.5,29,0.0 +20209,43,46,25,0.0 +20209,70,15,36,0.0 +20209,6,25,21,0.0 +20209,17,39,18,0.0 +20209,69,36,37,0.0 +20209,68,12.5,5,0.0 +20209,29,123.79,8,0.0 +20209,75,7.75,1,0.0 +20209,15,15.5,15,0.0 +20209,19,9.2,19,0.0 +20209,66,17,12,0.0 +20209,8,40,48,0.0 +20209,47,9.5,36,0.0 +20209,21,10,47,0.0 +20209,14,23.25,27,0.0 +20209,44,19.45,26,0.0 +20209,23,9,50,0.0 +20209,10,31,34,0.0 +20209,53,32.8,7,0.0 +20209,40,18.4,37,0.0 +20209,63,43.9,13,0.0 +20210,65,21.05,21,0.0 +20210,24,4.5,18,0.0 +20210,19,9.2,24,0.0 +20210,17,39,17,0.0 +20210,6,25,18,0.0 +20210,43,46,49,0.0 +20210,3,10,28,0.0 +20210,57,19.5,28,0.0 +20210,10,31,34,0.0 +20210,15,15.5,5,0.0 +20210,69,36,33,0.0 +20210,21,10,24,0.0 +20210,22,21,9,0.0 +20210,1,18,40,0.0 +20210,42,14,5,0.0 +20210,54,7.45,41,0.0 +20210,51,53,30,0.0 +20210,5,21.35,42,0.0 +20210,49,20,23,0.0 +20210,7,30,16,0.0 +20210,46,12,24,0.0 +20210,30,25.89,9,0.0 +20210,13,6,15,0.0 +20210,56,38,41,0.0 +20210,76,18,22,0.0 +20210,36,19,15,0.0 +20210,4,22,13,0.0 +20210,28,45.6,36,0.0 +20210,20,81,25,0.0 +20210,38,263.5,27,0.0 +20210,62,49.3,40,0.0 +20210,66,17,31,0.0 +20210,27,43.9,44,0.0 +20210,2,19,33,0.0 +20210,26,31.23,22,0.0 +20210,34,14,48,0.0 +20210,16,17.45,46,0.0 +20210,60,34,4,0.0 +20210,52,7,14,0.0 +20210,55,24,26,0.0 +20210,35,18,23,0.0 +20210,45,9.5,43,0.0 +20210,18,62.5,16,0.0 +20210,64,33.25,35,0.0 +20210,8,40,48,0.0 +20210,73,15,22,0.0 +20211,66,17,20,0.0 +20211,18,62.5,39,0.0 +20211,56,38,3,0.0 +20211,54,7.45,1,0.0 +20211,15,15.5,44,0.0 +20211,71,21.5,30,0.0 +20211,57,19.5,37,0.0 +20211,58,13.25,26,0.0 +20211,73,15,49,0.0 +20211,16,17.45,1,0.0 +20211,69,36,18,0.0 +20211,21,10,41,0.0 +20211,8,40,10,0.0 +20211,41,9.65,19,0.0 +20212,58,13.25,2,0.0 +20212,28,45.6,41,0.0 +20212,29,123.79,19,0.0 +20212,6,25,41,0.0 +20212,50,16.25,6,0.0 +20212,9,97,50,0.0 +20212,48,12.75,29,0.0 +20212,66,17,44,0.0 +20212,31,12.5,32,0.0 +20212,14,23.25,39,0.0 +20212,36,19,7,0.0 +20212,38,263.5,44,0.0 +20212,42,14,41,0.0 +20212,40,18.4,38,0.0 +20212,59,55,46,0.0 +20212,33,2.5,3,0.0 +20212,75,7.75,46,0.0 +20212,47,9.5,15,0.0 +20212,35,18,47,0.0 +20212,12,38,23,0.0 +20212,49,20,35,0.0 +20212,70,15,12,0.0 +20212,7,30,49,0.0 +20212,15,15.5,27,0.0 +20212,54,7.45,42,0.0 +20212,69,36,1,0.0 +20212,52,7,40,0.0 +20212,19,9.2,33,0.0 +20212,63,43.9,17,0.0 +20212,71,21.5,31,0.0 +20212,30,25.89,19,0.0 +20212,3,10,39,0.0 +20212,76,18,35,0.0 +20212,20,81,8,0.0 +20212,74,10,39,0.0 +20212,72,34.8,28,0.0 +20212,73,15,1,0.0 +20212,46,12,47,0.0 +20212,26,31.23,43,0.0 +20212,18,62.5,34,0.0 +20212,37,26,50,0.0 +20212,13,6,31,0.0 +20212,10,31,19,0.0 +20212,64,33.25,21,0.0 +20212,62,49.3,39,0.0 +20212,5,21.35,10,0.0 +20213,75,7.75,10,0.0 +20213,74,10,48,0.0 +20213,20,81,49,0.0 +20213,33,2.5,14,0.0 +20213,41,9.65,5,0.0 +20213,6,25,5,0.0 +20213,7,30,40,0.0 +20213,46,12,12,0.0 +20213,59,55,32,0.0 +20213,10,31,37,0.0 +20213,23,9,11,0.0 +20213,19,9.2,31,0.0 +20213,49,20,31,0.0 +20213,63,43.9,21,0.0 +20213,15,15.5,13,0.0 +20213,56,38,7,0.0 +20213,73,15,38,0.0 +20213,14,23.25,29,0.0 +20213,30,25.89,31,0.0 +20213,40,18.4,31,0.0 +20213,34,14,5,0.0 +20213,12,38,46,0.0 +20213,38,263.5,17,0.0 +20213,8,40,3,0.0 +20213,29,123.79,34,0.0 +20213,11,21,23,0.0 +20213,65,21.05,30,0.0 +20213,66,17,4,0.0 +20213,13,6,5,0.0 +20213,55,24,8,0.0 +20213,37,26,35,0.0 +20213,48,12.75,15,0.0 +20213,53,32.8,23,0.0 +20213,42,14,28,0.0 +20213,43,46,29,0.0 +20213,69,36,1,0.0 +20213,51,53,29,0.0 +20214,42,14,47,0.0 +20214,68,12.5,24,0.0 +20214,25,14,14,0.0 +20214,76,18,12,0.0 +20214,22,21,27,0.0 +20214,26,31.23,29,0.0 +20214,57,19.5,23,0.0 +20214,6,25,49,0.0 +20214,4,22,12,0.0 +20214,19,9.2,13,0.0 +20214,65,21.05,25,0.0 +20214,59,55,31,0.0 +20214,70,15,8,0.0 +20214,67,14,30,0.0 +20214,27,43.9,4,0.0 +20214,46,12,23,0.0 +20214,48,12.75,27,0.0 +20214,75,7.75,32,0.0 +20214,30,25.89,45,0.0 +20214,50,16.25,27,0.0 +20214,55,24,38,0.0 +20214,49,20,25,0.0 +20214,71,21.5,4,0.0 +20214,74,10,25,0.0 +20214,56,38,7,0.0 +20214,33,2.5,29,0.0 +20214,3,10,24,0.0 +20214,69,36,50,0.0 +20214,20,81,32,0.0 +20214,77,13,46,0.0 +20214,38,263.5,40,0.0 +20214,73,15,11,0.0 +20214,40,18.4,46,0.0 +20214,23,9,22,0.0 +20214,8,40,10,0.0 +20214,31,12.5,41,0.0 +20214,53,32.8,9,0.0 +20214,16,17.45,18,0.0 +20214,14,23.25,17,0.0 +20214,45,9.5,9,0.0 +20214,60,34,16,0.0 +20214,44,19.45,28,0.0 +20214,43,46,37,0.0 +20214,62,49.3,42,0.0 +20214,54,7.45,42,0.0 +20214,18,62.5,2,0.0 +20214,24,4.5,38,0.0 +20214,7,30,32,0.0 +20214,36,19,17,0.0 +20214,52,7,19,0.0 +20214,13,6,36,0.0 +20214,35,18,42,0.0 +20214,21,10,23,0.0 +20214,17,39,14,0.0 +20214,11,21,47,0.0 +20214,29,123.79,44,0.0 +20214,37,26,47,0.0 +20214,9,97,26,0.0 +20214,51,53,48,0.0 +20214,39,18,18,0.0 +20214,12,38,9,0.0 +20214,61,28.5,1,0.0 +20214,2,19,47,0.0 +20214,32,32,27,0.0 +20214,10,31,20,0.0 +20214,34,14,24,0.0 +20214,5,21.35,19,0.0 +20214,47,9.5,15,0.0 +20214,63,43.9,35,0.0 +20214,1,18,24,0.0 +20215,75,7.75,26,0.0 +20215,47,9.5,49,0.0 +20215,67,14,37,0.0 +20215,29,123.79,47,0.0 +20215,39,18,48,0.0 +20215,53,32.8,47,0.0 +20215,54,7.45,23,0.0 +20215,9,97,31,0.0 +20215,73,15,26,0.0 +20215,69,36,33,0.0 +20215,43,46,28,0.0 +20215,56,38,22,0.0 +20215,61,28.5,36,0.0 +20215,24,4.5,35,0.0 +20215,19,9.2,2,0.0 +20215,13,6,48,0.0 +20215,50,16.25,42,0.0 +20216,60,34,30,0.0 +20216,3,10,7,0.0 +20216,66,17,34,0.0 +20216,35,18,22,0.0 +20216,49,20,10,0.0 +20216,73,15,36,0.0 +20216,44,19.45,40,0.0 +20216,5,21.35,34,0.0 +20216,18,62.5,28,0.0 +20216,42,14,20,0.0 +20216,21,10,9,0.0 +20216,30,25.89,46,0.0 +20216,4,22,16,0.0 +20216,62,49.3,23,0.0 +20216,63,43.9,17,0.0 +20216,11,21,49,0.0 +20216,59,55,11,0.0 +20216,1,18,1,0.0 +20216,24,4.5,47,0.0 +20216,52,7,4,0.0 +20216,61,28.5,43,0.0 +20216,51,53,30,0.0 +20216,26,31.23,36,0.0 +20216,43,46,42,0.0 +20216,13,6,18,0.0 +20216,45,9.5,22,0.0 +20216,68,12.5,16,0.0 +20216,74,10,10,0.0 +20216,33,2.5,23,0.0 +20216,27,43.9,29,0.0 +20216,50,16.25,21,0.0 +20216,40,18.4,21,0.0 +20216,37,26,20,0.0 +20216,19,9.2,27,0.0 +20216,22,21,41,0.0 +20216,72,34.8,46,0.0 +20216,58,13.25,9,0.0 +20216,38,263.5,7,0.0 +20216,41,9.65,13,0.0 +20216,48,12.75,15,0.0 +20216,36,19,4,0.0 +20216,9,97,23,0.0 +20216,75,7.75,15,0.0 +20216,56,38,36,0.0 +20216,29,123.79,21,0.0 +20216,65,21.05,33,0.0 +20216,23,9,28,0.0 +20216,7,30,14,0.0 +20216,76,18,29,0.0 +20216,53,32.8,35,0.0 +20216,12,38,40,0.0 +20216,69,36,4,0.0 +20216,20,81,41,0.0 +20216,46,12,9,0.0 +20216,15,15.5,28,0.0 +20216,64,33.25,28,0.0 +20216,55,24,42,0.0 +20217,2,19,8,0.0 +20217,73,15,11,0.0 +20217,42,14,20,0.0 +20217,26,31.23,33,0.0 +20217,69,36,12,0.0 +20217,47,9.5,35,0.0 +20217,8,40,17,0.0 +20217,1,18,43,0.0 +20217,6,25,1,0.0 +20217,67,14,28,0.0 +20217,76,18,5,0.0 +20217,53,32.8,25,0.0 +20217,55,24,34,0.0 +20217,5,21.35,4,0.0 +20217,36,19,34,0.0 +20217,59,55,14,0.0 +20217,75,7.75,12,0.0 +20217,50,16.25,10,0.0 +20217,40,18.4,43,0.0 +20217,60,34,24,0.0 +20217,4,22,32,0.0 +20217,14,23.25,36,0.0 +20217,56,38,34,0.0 +20217,62,49.3,33,0.0 +20217,52,7,6,0.0 +20217,77,13,26,0.0 +20217,57,19.5,26,0.0 +20217,3,10,19,0.0 +20217,17,39,30,0.0 +20217,70,15,46,0.0 +20217,54,7.45,1,0.0 +20217,30,25.89,31,0.0 +20217,64,33.25,39,0.0 +20217,58,13.25,32,0.0 +20217,16,17.45,47,0.0 +20217,27,43.9,49,0.0 +20217,12,38,37,0.0 +20217,10,31,3,0.0 +20217,63,43.9,24,0.0 +20217,71,21.5,45,0.0 +20217,44,19.45,13,0.0 +20217,66,17,33,0.0 +20217,15,15.5,23,0.0 +20217,45,9.5,45,0.0 +20217,38,263.5,29,0.0 +20217,65,21.05,2,0.0 +20217,32,32,37,0.0 +20217,49,20,17,0.0 +20217,41,9.65,36,0.0 +20217,19,9.2,25,0.0 +20218,39,18,49,0.0 +20218,63,43.9,18,0.0 +20218,53,32.8,26,0.0 +20218,41,9.65,48,0.0 +20218,37,26,31,0.0 +20218,76,18,23,0.0 +20218,15,15.5,14,0.0 +20218,66,17,46,0.0 +20218,77,13,38,0.0 +20218,54,7.45,25,0.0 +20218,16,17.45,3,0.0 +20218,51,53,40,0.0 +20218,43,46,26,0.0 +20218,42,14,47,0.0 +20218,24,4.5,22,0.0 +20218,22,21,25,0.0 +20218,9,97,4,0.0 +20218,14,23.25,19,0.0 +20218,4,22,19,0.0 +20218,59,55,48,0.0 +20218,17,39,37,0.0 +20218,62,49.3,23,0.0 +20218,11,21,20,0.0 +20218,18,62.5,24,0.0 +20218,30,25.89,18,0.0 +20218,45,9.5,42,0.0 +20218,46,12,26,0.0 +20218,40,18.4,17,0.0 +20218,47,9.5,12,0.0 +20218,27,43.9,35,0.0 +20218,64,33.25,20,0.0 +20218,10,31,41,0.0 +20218,56,38,41,0.0 +20218,2,19,22,0.0 +20218,19,9.2,26,0.0 +20218,65,21.05,36,0.0 +20218,26,31.23,27,0.0 +20218,36,19,39,0.0 +20218,75,7.75,6,0.0 +20218,55,24,12,0.0 +20218,23,9,4,0.0 +20218,60,34,15,0.0 +20218,70,15,29,0.0 +20218,49,20,9,0.0 +20218,29,123.79,44,0.0 +20218,44,19.45,38,0.0 +20218,13,6,24,0.0 +20218,68,12.5,15,0.0 +20218,8,40,5,0.0 +20218,34,14,17,0.0 +20218,21,10,12,0.0 +20218,20,81,30,0.0 +20218,1,18,44,0.0 +20218,31,12.5,5,0.0 +20218,12,38,13,0.0 +20218,6,25,19,0.0 +20218,35,18,24,0.0 +20218,5,21.35,10,0.0 +20219,7,30,28,0.0 +20219,12,38,2,0.0 +20219,60,34,29,0.0 +20219,65,21.05,38,0.0 +20219,76,18,24,0.0 +20219,32,32,41,0.0 +20219,57,19.5,30,0.0 +20219,19,9.2,14,0.0 +20219,50,16.25,2,0.0 +20219,14,23.25,41,0.0 +20219,62,49.3,3,0.0 +20219,63,43.9,28,0.0 +20219,64,33.25,48,0.0 +20219,44,19.45,20,0.0 +20219,53,32.8,27,0.0 +20219,70,15,22,0.0 +20219,8,40,4,0.0 +20219,25,14,30,0.0 +20219,2,19,49,0.0 +20219,67,14,50,0.0 +20219,59,55,10,0.0 +20219,56,38,38,0.0 +20219,69,36,36,0.0 +20219,15,15.5,2,0.0 +20219,6,25,48,0.0 +20219,10,31,43,0.0 +20219,45,9.5,38,0.0 +20219,74,10,42,0.0 +20219,31,12.5,28,0.0 +20219,40,18.4,2,0.0 +20219,72,34.8,44,0.0 +20219,17,39,8,0.0 +20219,9,97,20,0.0 +20219,38,263.5,9,0.0 +20219,16,17.45,26,0.0 +20219,49,20,42,0.0 +20219,21,10,36,0.0 +20219,75,7.75,20,0.0 +20219,29,123.79,11,0.0 +20219,43,46,39,0.0 +20219,5,21.35,6,0.0 +20219,24,4.5,35,0.0 +20219,66,17,12,0.0 +20219,47,9.5,11,0.0 +20219,36,19,21,0.0 +20219,4,22,11,0.0 +20219,26,31.23,16,0.0 +20220,74,10,30,0.0 +20220,39,18,21,0.0 +20220,64,33.25,34,0.0 +20220,49,20,12,0.0 +20220,22,21,7,0.0 +20220,12,38,28,0.0 +20220,61,28.5,47,0.0 +20220,18,62.5,29,0.0 +20220,42,14,41,0.0 +20220,43,46,32,0.0 +20220,8,40,21,0.0 +20220,71,21.5,9,0.0 +20220,21,10,37,0.0 +20220,65,21.05,21,0.0 +20220,6,25,32,0.0 +20220,46,12,48,0.0 +20220,40,18.4,8,0.0 +20220,62,49.3,45,0.0 +20220,32,32,9,0.0 +20220,28,45.6,44,0.0 +20220,59,55,24,0.0 +20220,34,14,17,0.0 +20220,70,15,6,0.0 +20220,60,34,22,0.0 +20220,5,21.35,18,0.0 +20220,56,38,35,0.0 +20220,14,23.25,16,0.0 +20220,26,31.23,50,0.0 +20220,37,26,50,0.0 +20220,38,263.5,8,0.0 +20220,23,9,9,0.0 +20220,63,43.9,9,0.0 +20220,29,123.79,4,0.0 +20220,47,9.5,34,0.0 +20220,57,19.5,36,0.0 +20220,53,32.8,9,0.0 +20220,27,43.9,50,0.0 +20220,4,22,25,0.0 +20220,31,12.5,48,0.0 +20220,72,34.8,44,0.0 +20220,7,30,26,0.0 +20220,20,81,7,0.0 +20220,33,2.5,21,0.0 +20220,9,97,38,0.0 +20220,77,13,40,0.0 +20220,54,7.45,5,0.0 +20220,73,15,28,0.0 +20220,25,14,26,0.0 +20220,15,15.5,32,0.0 +20220,1,18,25,0.0 +20220,75,7.75,1,0.0 +20220,48,12.75,33,0.0 +20220,36,19,22,0.0 +20220,41,9.65,38,0.0 +20220,45,9.5,15,0.0 +20220,19,9.2,32,0.0 +20220,66,17,11,0.0 +20220,50,16.25,38,0.0 +20220,67,14,7,0.0 +20220,68,12.5,47,0.0 +20220,44,19.45,31,0.0 +20220,55,24,24,0.0 +20220,10,31,45,0.0 +20220,58,13.25,21,0.0 +20220,51,53,10,0.0 +20220,11,21,23,0.0 +20220,24,4.5,46,0.0 +20220,76,18,17,0.0 +20221,10,31,18,0.0 +20221,62,49.3,36,0.0 +20221,71,21.5,26,0.0 +20221,53,32.8,36,0.0 +20221,38,263.5,28,0.0 +20221,16,17.45,9,0.0 +20221,73,15,33,0.0 +20221,42,14,28,0.0 +20221,27,43.9,1,0.0 +20221,48,12.75,36,0.0 +20221,68,12.5,7,0.0 +20221,59,55,23,0.0 +20221,72,34.8,14,0.0 +20221,67,14,13,0.0 +20221,26,31.23,47,0.0 +20221,58,13.25,45,0.0 +20221,17,39,15,0.0 +20221,55,24,15,0.0 +20221,41,9.65,13,0.0 +20221,66,17,39,0.0 +20221,19,9.2,28,0.0 +20221,60,34,39,0.0 +20221,7,30,33,0.0 +20221,69,36,9,0.0 +20221,44,19.45,7,0.0 +20221,77,13,9,0.0 +20221,35,18,1,0.0 +20221,6,25,7,0.0 +20221,34,14,3,0.0 +20221,30,25.89,21,0.0 +20221,18,62.5,35,0.0 +20221,2,19,13,0.0 +20221,45,9.5,5,0.0 +20221,14,23.25,32,0.0 +20221,1,18,17,0.0 +20221,57,19.5,30,0.0 +20221,23,9,10,0.0 +20221,9,97,2,0.0 +20221,33,2.5,30,0.0 +20221,47,9.5,35,0.0 +20221,76,18,24,0.0 +20221,21,10,45,0.0 +20222,13,6,30,0.0 +20222,72,34.8,16,0.0 +20222,66,17,1,0.0 +20222,49,20,49,0.0 +20222,7,30,24,0.0 +20222,42,14,23,0.0 +20222,48,12.75,29,0.0 +20222,34,14,13,0.0 +20222,65,21.05,2,0.0 +20223,71,21.5,13,0.0 +20223,44,19.45,7,0.0 +20223,5,21.35,28,0.0 +20223,55,24,21,0.0 +20223,57,19.5,37,0.0 +20223,68,12.5,48,0.0 +20223,21,10,26,0.0 +20223,22,21,24,0.0 +20223,32,32,31,0.0 +20223,75,7.75,26,0.0 +20223,50,16.25,37,0.0 +20223,56,38,2,0.0 +20223,13,6,45,0.0 +20223,41,9.65,1,0.0 +20223,74,10,27,0.0 +20223,27,43.9,44,0.0 +20223,15,15.5,10,0.0 +20223,60,34,28,0.0 +20223,4,22,3,0.0 +20223,29,123.79,44,0.0 +20223,34,14,28,0.0 +20223,52,7,15,0.0 +20223,9,97,43,0.0 +20223,51,53,5,0.0 +20223,69,36,5,0.0 +20223,18,62.5,31,0.0 +20223,45,9.5,47,0.0 +20223,7,30,38,0.0 +20224,67,14,9,0.0 +20224,76,18,35,0.0 +20224,11,21,49,0.0 +20224,74,10,20,0.0 +20224,77,13,20,0.0 +20224,9,97,49,0.0 +20224,17,39,7,0.0 +20224,50,16.25,24,0.0 +20224,55,24,45,0.0 +20224,5,21.35,13,0.0 +20224,15,15.5,29,0.0 +20224,56,38,47,0.0 +20224,58,13.25,16,0.0 +20224,35,18,44,0.0 +20224,21,10,25,0.0 +20225,37,26,38,0.0 +20225,25,14,6,0.0 +20225,69,36,43,0.0 +20225,49,20,14,0.0 +20225,31,12.5,14,0.0 +20225,46,12,12,0.0 +20225,44,19.45,12,0.0 +20225,8,40,24,0.0 +20225,55,24,35,0.0 +20225,73,15,8,0.0 +20225,56,38,27,0.0 +20225,9,97,41,0.0 +20225,35,18,11,0.0 +20226,7,30,12,0.0 +20226,25,14,35,0.0 +20226,21,10,7,0.0 +20226,74,10,8,0.0 +20226,8,40,28,0.0 +20226,69,36,40,0.0 +20226,54,7.45,10,0.0 +20226,56,38,16,0.0 +20226,3,10,1,0.0 +20226,2,19,36,0.0 +20226,67,14,19,0.0 +20226,4,22,24,0.0 +20226,44,19.45,37,0.0 +20226,60,34,32,0.0 +20226,47,9.5,17,0.0 +20226,57,19.5,21,0.0 +20226,27,43.9,49,0.0 +20226,10,31,18,0.0 +20226,5,21.35,1,0.0 +20226,33,2.5,17,0.0 +20226,1,18,44,0.0 +20226,50,16.25,46,0.0 +20226,11,21,45,0.0 +20226,22,21,26,0.0 +20226,9,97,44,0.0 +20226,19,9.2,23,0.0 +20226,12,38,28,0.0 +20226,42,14,48,0.0 +20226,17,39,9,0.0 +20226,16,17.45,12,0.0 +20226,40,18.4,7,0.0 +20226,62,49.3,46,0.0 +20226,37,26,43,0.0 +20226,20,81,9,0.0 +20226,6,25,11,0.0 +20226,59,55,29,0.0 +20226,36,19,42,0.0 +20226,28,45.6,43,0.0 +20226,35,18,16,0.0 +20226,41,9.65,25,0.0 +20226,58,13.25,36,0.0 +20226,14,23.25,2,0.0 +20226,32,32,12,0.0 +20226,48,12.75,3,0.0 +20226,52,7,7,0.0 +20226,77,13,12,0.0 +20226,73,15,28,0.0 +20226,72,34.8,40,0.0 +20226,65,21.05,47,0.0 +20226,29,123.79,50,0.0 +20227,24,4.5,1,0.0 +20227,47,9.5,19,0.0 +20227,53,32.8,7,0.0 +20227,12,38,33,0.0 +20227,72,34.8,47,0.0 +20227,8,40,9,0.0 +20227,6,25,35,0.0 +20227,42,14,38,0.0 +20227,19,9.2,42,0.0 +20227,9,97,8,0.0 +20227,21,10,41,0.0 +20227,52,7,42,0.0 +20227,20,81,2,0.0 +20227,73,15,13,0.0 +20227,7,30,30,0.0 +20227,5,21.35,42,0.0 +20227,28,45.6,4,0.0 +20227,4,22,20,0.0 +20227,62,49.3,48,0.0 +20227,40,18.4,47,0.0 +20227,43,46,5,0.0 +20227,71,21.5,25,0.0 +20227,67,14,23,0.0 +20227,35,18,19,0.0 +20227,46,12,34,0.0 +20227,33,2.5,27,0.0 +20227,66,17,34,0.0 +20227,25,14,37,0.0 +20227,30,25.89,9,0.0 +20227,39,18,13,0.0 +20227,70,15,48,0.0 +20227,77,13,43,0.0 +20227,2,19,2,0.0 +20227,31,12.5,32,0.0 +20227,18,62.5,25,0.0 +20227,17,39,42,0.0 +20227,54,7.45,42,0.0 +20227,36,19,46,0.0 +20227,22,21,50,0.0 +20227,41,9.65,12,0.0 +20227,65,21.05,34,0.0 +20227,69,36,23,0.0 +20227,27,43.9,18,0.0 +20227,50,16.25,25,0.0 +20227,10,31,11,0.0 +20227,3,10,13,0.0 +20227,57,19.5,21,0.0 +20227,74,10,38,0.0 +20227,1,18,32,0.0 +20227,58,13.25,12,0.0 +20227,68,12.5,49,0.0 +20227,11,21,24,0.0 +20227,13,6,15,0.0 +20227,48,12.75,45,0.0 +20227,61,28.5,23,0.0 +20227,26,31.23,39,0.0 +20227,60,34,2,0.0 +20227,51,53,19,0.0 +20227,64,33.25,18,0.0 +20227,76,18,3,0.0 +20227,45,9.5,27,0.0 +20227,37,26,43,0.0 +20227,59,55,37,0.0 +20227,49,20,1,0.0 +20227,14,23.25,20,0.0 +20227,16,17.45,39,0.0 +20227,75,7.75,5,0.0 +20227,29,123.79,26,0.0 +20227,38,263.5,37,0.0 +20227,56,38,5,0.0 +20227,44,19.45,50,0.0 +20227,34,14,28,0.0 +20227,32,32,49,0.0 +20227,23,9,41,0.0 +20227,15,15.5,6,0.0 +20227,55,24,30,0.0 +20228,21,10,35,0.0 +20228,77,13,14,0.0 +20228,50,16.25,50,0.0 +20228,64,33.25,24,0.0 +20228,36,19,2,0.0 +20228,30,25.89,19,0.0 +20228,28,45.6,40,0.0 +20228,10,31,26,0.0 +20228,58,13.25,14,0.0 +20228,72,34.8,17,0.0 +20228,5,21.35,12,0.0 +20228,62,49.3,16,0.0 +20228,69,36,45,0.0 +20228,12,38,37,0.0 +20228,13,6,34,0.0 +20228,75,7.75,33,0.0 +20228,14,23.25,29,0.0 +20228,37,26,17,0.0 +20228,1,18,35,0.0 +20228,47,9.5,24,0.0 +20228,63,43.9,18,0.0 +20228,70,15,24,0.0 +20228,33,2.5,35,0.0 +20228,15,15.5,41,0.0 +20228,52,7,42,0.0 +20228,38,263.5,34,0.0 +20228,18,62.5,42,0.0 +20228,53,32.8,43,0.0 +20228,55,24,13,0.0 +20228,60,34,40,0.0 +20229,21,10,7,0.0 +20229,72,34.8,22,0.0 +20229,29,123.79,8,0.0 +20229,71,21.5,43,0.0 +20229,62,49.3,39,0.0 +20229,6,25,32,0.0 +20229,36,19,43,0.0 +20229,70,15,41,0.0 +20229,2,19,17,0.0 +20229,69,36,40,0.0 +20229,56,38,27,0.0 +20229,48,12.75,44,0.0 +20229,13,6,14,0.0 +20229,50,16.25,15,0.0 +20229,39,18,41,0.0 +20229,60,34,13,0.0 +20229,46,12,45,0.0 +20229,5,21.35,48,0.0 +20229,16,17.45,30,0.0 +20229,75,7.75,44,0.0 +20229,58,13.25,31,0.0 +20229,20,81,17,0.0 +20229,14,23.25,29,0.0 +20229,35,18,40,0.0 +20229,27,43.9,16,0.0 +20229,41,9.65,14,0.0 +20229,26,31.23,12,0.0 +20229,4,22,49,0.0 +20229,57,19.5,36,0.0 +20230,58,13.25,21,0.0 +20230,20,81,28,0.0 +20230,22,21,3,0.0 +20230,72,34.8,15,0.0 +20230,64,33.25,28,0.0 +20230,45,9.5,20,0.0 +20231,10,31,11,0.0 +20231,58,13.25,26,0.0 +20231,45,9.5,17,0.0 +20231,75,7.75,25,0.0 +20231,25,14,50,0.0 +20231,28,45.6,2,0.0 +20231,56,38,21,0.0 +20231,51,53,50,0.0 +20231,42,14,3,0.0 +20231,46,12,41,0.0 +20231,5,21.35,26,0.0 +20231,30,25.89,31,0.0 +20231,69,36,12,0.0 +20231,59,55,49,0.0 +20231,74,10,32,0.0 +20231,37,26,31,0.0 +20231,20,81,48,0.0 +20231,7,30,4,0.0 +20231,35,18,15,0.0 +20231,17,39,50,0.0 +20231,38,263.5,27,0.0 +20231,68,12.5,14,0.0 +20231,32,32,18,0.0 +20231,44,19.45,32,0.0 +20231,6,25,35,0.0 +20231,65,21.05,19,0.0 +20231,50,16.25,40,0.0 +20232,73,15,21,0.0 +20232,15,15.5,33,0.0 +20232,3,10,47,0.0 +20232,74,10,20,0.0 +20232,8,40,19,0.0 +20232,41,9.65,7,0.0 +20232,13,6,8,0.0 +20232,44,19.45,29,0.0 +20232,6,25,49,0.0 +20232,19,9.2,46,0.0 +20232,66,17,45,0.0 +20232,43,46,10,0.0 +20233,67,14,29,0.0 +20233,55,24,18,0.0 +20233,19,9.2,4,0.0 +20233,23,9,12,0.0 +20233,5,21.35,47,0.0 +20233,53,32.8,40,0.0 +20233,56,38,49,0.0 +20233,36,19,23,0.0 +20233,70,15,48,0.0 +20233,51,53,38,0.0 +20233,9,97,15,0.0 +20233,13,6,27,0.0 +20233,71,21.5,35,0.0 +20233,33,2.5,42,0.0 +20233,64,33.25,44,0.0 +20233,40,18.4,35,0.0 +20233,21,10,48,0.0 +20233,59,55,2,0.0 +20233,27,43.9,32,0.0 +20233,50,16.25,29,0.0 +20233,29,123.79,30,0.0 +20233,31,12.5,9,0.0 +20233,4,22,37,0.0 +20234,30,25.89,34,0.0 +20234,14,23.25,39,0.0 +20234,71,21.5,6,0.0 +20234,9,97,49,0.0 +20234,47,9.5,29,0.0 +20234,23,9,49,0.0 +20234,12,38,14,0.0 +20234,65,21.05,1,0.0 +20234,45,9.5,25,0.0 +20234,27,43.9,6,0.0 +20234,22,21,15,0.0 +20234,15,15.5,47,0.0 +20234,6,25,45,0.0 +20234,5,21.35,18,0.0 +20234,16,17.45,5,0.0 +20234,38,263.5,45,0.0 +20234,2,19,5,0.0 +20234,34,14,8,0.0 +20234,76,18,46,0.0 +20234,28,45.6,17,0.0 +20234,66,17,40,0.0 +20234,72,34.8,33,0.0 +20234,73,15,9,0.0 +20234,10,31,45,0.0 +20234,20,81,48,0.0 +20234,67,14,34,0.0 +20234,31,12.5,44,0.0 +20234,46,12,9,0.0 +20234,70,15,10,0.0 +20234,40,18.4,11,0.0 +20234,3,10,32,0.0 +20234,53,32.8,40,0.0 +20234,19,9.2,25,0.0 +20234,57,19.5,17,0.0 +20234,17,39,27,0.0 +20234,75,7.75,41,0.0 +20234,24,4.5,33,0.0 +20234,21,10,21,0.0 +20234,1,18,3,0.0 +20234,50,16.25,44,0.0 +20235,61,28.5,26,0.0 +20235,38,263.5,48,0.0 +20235,8,40,15,0.0 +20235,50,16.25,12,0.0 +20235,14,23.25,21,0.0 +20235,76,18,43,0.0 +20235,74,10,35,0.0 +20235,53,32.8,37,0.0 +20235,33,2.5,25,0.0 +20235,46,12,18,0.0 +20235,43,46,26,0.0 +20235,55,24,47,0.0 +20236,57,19.5,14,0.0 +20236,54,7.45,34,0.0 +20236,16,17.45,14,0.0 +20236,3,10,26,0.0 +20236,14,23.25,48,0.0 +20236,20,81,42,0.0 +20236,61,28.5,28,0.0 +20236,2,19,11,0.0 +20236,63,43.9,24,0.0 +20236,47,9.5,47,0.0 +20236,11,21,27,0.0 +20236,45,9.5,36,0.0 +20236,34,14,12,0.0 +20236,7,30,2,0.0 +20236,56,38,15,0.0 +20236,18,62.5,32,0.0 +20236,41,9.65,12,0.0 +20236,5,21.35,42,0.0 +20236,23,9,40,0.0 +20236,8,40,41,0.0 +20236,1,18,5,0.0 +20236,52,7,14,0.0 +20236,26,31.23,2,0.0 +20236,66,17,6,0.0 +20236,12,38,23,0.0 +20236,72,34.8,44,0.0 +20236,15,15.5,5,0.0 +20236,36,19,1,0.0 +20236,24,4.5,17,0.0 +20236,25,14,2,0.0 +20236,35,18,20,0.0 +20236,37,26,16,0.0 +20236,60,34,34,0.0 +20236,33,2.5,37,0.0 +20236,40,18.4,27,0.0 +20236,59,55,35,0.0 +20236,13,6,16,0.0 +20236,32,32,36,0.0 +20236,58,13.25,28,0.0 +20236,6,25,36,0.0 +20236,22,21,33,0.0 +20236,53,32.8,47,0.0 +20236,19,9.2,26,0.0 +20236,10,31,16,0.0 +20236,71,21.5,48,0.0 +20236,31,12.5,43,0.0 +20236,44,19.45,23,0.0 +20237,29,123.79,24,0.0 +20238,11,21,42,0.0 +20238,55,24,12,0.0 +20238,1,18,35,0.0 +20238,40,18.4,25,0.0 +20238,51,53,36,0.0 +20239,43,46,21,0.0 +20239,71,21.5,25,0.0 +20239,66,17,18,0.0 +20239,70,15,34,0.0 +20239,10,31,41,0.0 +20239,39,18,47,0.0 +20239,68,12.5,5,0.0 +20239,15,15.5,13,0.0 +20239,67,14,50,0.0 +20239,76,18,3,0.0 +20239,73,15,5,0.0 +20239,59,55,11,0.0 +20239,49,20,35,0.0 +20239,5,21.35,34,0.0 +20239,9,97,11,0.0 +20239,46,12,2,0.0 +20239,48,12.75,40,0.0 +20239,41,9.65,12,0.0 +20239,38,263.5,24,0.0 +20239,1,18,30,0.0 +20239,42,14,16,0.0 +20239,55,24,19,0.0 +20239,17,39,5,0.0 +20239,29,123.79,47,0.0 +20239,74,10,32,0.0 +20239,28,45.6,7,0.0 +20239,18,62.5,6,0.0 +20239,54,7.45,25,0.0 +20239,24,4.5,44,0.0 +20239,77,13,17,0.0 +20239,58,13.25,19,0.0 +20239,75,7.75,40,0.0 +20239,60,34,24,0.0 +20239,33,2.5,38,0.0 +20239,6,25,48,0.0 +20239,40,18.4,8,0.0 +20239,69,36,6,0.0 +20239,20,81,33,0.0 +20239,22,21,9,0.0 +20239,13,6,48,0.0 +20239,8,40,19,0.0 +20239,34,14,32,0.0 +20239,27,43.9,18,0.0 +20239,63,43.9,40,0.0 +20239,31,12.5,3,0.0 +20239,2,19,23,0.0 +20239,12,38,33,0.0 +20239,56,38,50,0.0 +20239,21,10,16,0.0 +20239,53,32.8,13,0.0 +20239,47,9.5,11,0.0 +20239,26,31.23,42,0.0 +20239,30,25.89,42,0.0 +20239,62,49.3,12,0.0 +20239,45,9.5,15,0.0 +20239,16,17.45,49,0.0 +20239,3,10,43,0.0 +20239,35,18,42,0.0 +20239,57,19.5,26,0.0 +20239,7,30,17,0.0 +20239,50,16.25,27,0.0 +20239,61,28.5,17,0.0 +20239,32,32,23,0.0 +20240,64,33.25,16,0.0 +20240,14,23.25,7,0.0 +20240,39,18,7,0.0 +20240,55,24,22,0.0 +20240,20,81,31,0.0 +20241,50,16.25,9,0.0 +20241,57,19.5,9,0.0 +20241,25,14,17,0.0 +20241,56,38,49,0.0 +20241,26,31.23,45,0.0 +20241,69,36,13,0.0 +20241,51,53,12,0.0 +20241,72,34.8,30,0.0 +20241,10,31,41,0.0 +20241,48,12.75,33,0.0 +20241,12,38,37,0.0 +20241,75,7.75,9,0.0 +20241,66,17,43,0.0 +20241,49,20,42,0.0 +20241,77,13,14,0.0 +20241,53,32.8,24,0.0 +20241,62,49.3,17,0.0 +20241,60,34,24,0.0 +20241,39,18,5,0.0 +20241,2,19,18,0.0 +20241,27,43.9,20,0.0 +20241,42,14,18,0.0 +20241,6,25,14,0.0 +20241,11,21,12,0.0 +20241,52,7,22,0.0 +20241,59,55,10,0.0 +20241,45,9.5,3,0.0 +20241,24,4.5,3,0.0 +20241,61,28.5,38,0.0 +20241,58,13.25,49,0.0 +20241,3,10,38,0.0 +20241,46,12,38,0.0 +20241,54,7.45,32,0.0 +20241,1,18,8,0.0 +20241,21,10,19,0.0 +20241,28,45.6,29,0.0 +20241,33,2.5,43,0.0 +20241,13,6,23,0.0 +20241,15,15.5,12,0.0 +20241,36,19,19,0.0 +20241,68,12.5,44,0.0 +20241,7,30,3,0.0 +20241,16,17.45,21,0.0 +20241,9,97,16,0.0 +20241,4,22,36,0.0 +20241,44,19.45,31,0.0 +20242,25,14,8,0.0 +20242,72,34.8,41,0.0 +20242,35,18,27,0.0 +20243,43,46,20,0.0 +20243,34,14,31,0.0 +20243,77,13,23,0.0 +20243,3,10,3,0.0 +20243,21,10,23,0.0 +20243,58,13.25,15,0.0 +20243,53,32.8,47,0.0 +20243,48,12.75,38,0.0 +20243,50,16.25,24,0.0 +20243,18,62.5,28,0.0 +20243,73,15,26,0.0 +20243,75,7.75,29,0.0 +20243,22,21,31,0.0 +20243,70,15,40,0.0 +20243,54,7.45,12,0.0 +20243,1,18,20,0.0 +20243,5,21.35,36,0.0 +20243,35,18,49,0.0 +20243,2,19,44,0.0 +20243,76,18,11,0.0 +20243,6,25,15,0.0 +20243,55,24,25,0.0 +20244,69,36,11,0.0 +20244,18,62.5,50,0.0 +20244,68,12.5,47,0.0 +20244,50,16.25,7,0.0 +20244,44,19.45,42,0.0 +20244,35,18,33,0.0 +20244,76,18,46,0.0 +20244,58,13.25,27,0.0 +20244,7,30,27,0.0 +20244,21,10,47,0.0 +20244,64,33.25,3,0.0 +20244,75,7.75,38,0.0 +20244,23,9,42,0.0 +20244,73,15,20,0.0 +20244,40,18.4,50,0.0 +20244,62,49.3,36,0.0 +20244,28,45.6,10,0.0 +20244,10,31,5,0.0 +20244,4,22,22,0.0 +20244,12,38,33,0.0 +20244,37,26,43,0.0 +20244,20,81,38,0.0 +20244,30,25.89,45,0.0 +20244,9,97,5,0.0 +20244,48,12.75,17,0.0 +20244,55,24,29,0.0 +20244,52,7,13,0.0 +20244,66,17,7,0.0 +20244,32,32,17,0.0 +20244,51,53,47,0.0 +20244,43,46,46,0.0 +20244,39,18,4,0.0 +20244,63,43.9,9,0.0 +20244,19,9.2,34,0.0 +20244,67,14,41,0.0 +20244,22,21,16,0.0 +20244,74,10,21,0.0 +20244,49,20,20,0.0 +20244,59,55,3,0.0 +20244,26,31.23,10,0.0 +20244,41,9.65,50,0.0 +20244,36,19,34,0.0 +20244,45,9.5,24,0.0 +20244,15,15.5,50,0.0 +20244,25,14,31,0.0 +20244,53,32.8,30,0.0 +20244,24,4.5,6,0.0 +20244,33,2.5,2,0.0 +20244,8,40,24,0.0 +20244,6,25,49,0.0 +20244,54,7.45,47,0.0 +20244,42,14,14,0.0 +20244,16,17.45,31,0.0 +20244,3,10,45,0.0 +20244,1,18,7,0.0 +20244,61,28.5,20,0.0 +20244,31,12.5,22,0.0 +20244,38,263.5,25,0.0 +20244,71,21.5,14,0.0 +20244,27,43.9,9,0.0 +20244,46,12,19,0.0 +20244,34,14,39,0.0 +20244,5,21.35,45,0.0 +20244,13,6,24,0.0 +20244,2,19,31,0.0 +20244,29,123.79,3,0.0 +20244,77,13,1,0.0 +20244,70,15,15,0.0 +20244,65,21.05,39,0.0 +20244,17,39,27,0.0 +20244,47,9.5,37,0.0 +20244,57,19.5,42,0.0 +20244,72,34.8,40,0.0 +20244,14,23.25,13,0.0 +20244,11,21,8,0.0 +20244,56,38,7,0.0 +20245,71,21.5,46,0.0 +20245,18,62.5,29,0.0 +20245,14,23.25,18,0.0 +20245,2,19,8,0.0 +20245,66,17,36,0.0 +20245,31,12.5,40,0.0 +20245,45,9.5,22,0.0 +20245,32,32,13,0.0 +20245,30,25.89,46,0.0 +20245,39,18,31,0.0 +20245,12,38,9,0.0 +20245,33,2.5,25,0.0 +20245,41,9.65,50,0.0 +20245,1,18,40,0.0 +20245,13,6,6,0.0 +20245,74,10,44,0.0 +20245,15,15.5,5,0.0 +20245,59,55,6,0.0 +20245,62,49.3,22,0.0 +20245,25,14,28,0.0 +20245,23,9,22,0.0 +20245,28,45.6,44,0.0 +20245,20,81,28,0.0 +20245,53,32.8,36,0.0 +20245,47,9.5,8,0.0 +20245,52,7,44,0.0 +20245,49,20,1,0.0 +20245,5,21.35,23,0.0 +20245,40,18.4,20,0.0 +20245,61,28.5,29,0.0 +20245,42,14,31,0.0 +20245,36,19,24,0.0 +20245,70,15,31,0.0 +20245,29,123.79,45,0.0 +20245,38,263.5,35,0.0 +20245,26,31.23,18,0.0 +20245,22,21,13,0.0 +20245,50,16.25,21,0.0 +20245,77,13,30,0.0 +20245,44,19.45,46,0.0 +20245,64,33.25,20,0.0 +20245,43,46,8,0.0 +20245,11,21,11,0.0 +20245,9,97,34,0.0 +20245,56,38,8,0.0 +20245,6,25,34,0.0 +20245,75,7.75,49,0.0 +20245,68,12.5,31,0.0 +20245,51,53,24,0.0 +20245,65,21.05,31,0.0 +20245,54,7.45,15,0.0 +20245,35,18,50,0.0 +20245,63,43.9,6,0.0 +20245,72,34.8,23,0.0 +20245,3,10,24,0.0 +20245,17,39,18,0.0 +20245,34,14,27,0.0 +20245,7,30,37,0.0 +20245,55,24,45,0.0 +20245,69,36,47,0.0 +20245,19,9.2,16,0.0 +20245,46,12,47,0.0 +20245,37,26,3,0.0 +20245,60,34,11,0.0 +20245,67,14,45,0.0 +20245,57,19.5,46,0.0 +20245,24,4.5,35,0.0 +20245,27,43.9,38,0.0 +20245,4,22,6,0.0 +20245,21,10,39,0.0 +20245,16,17.45,45,0.0 +20245,73,15,27,0.0 +20245,10,31,36,0.0 +20246,46,12,30,0.0 +20246,41,9.65,25,0.0 +20246,63,43.9,35,0.0 +20246,61,28.5,14,0.0 +20246,1,18,26,0.0 +20246,35,18,23,0.0 +20246,57,19.5,16,0.0 +20246,60,34,37,0.0 +20246,70,15,27,0.0 +20246,64,33.25,47,0.0 +20246,18,62.5,39,0.0 +20246,31,12.5,15,0.0 +20246,2,19,27,0.0 +20246,42,14,18,0.0 +20246,14,23.25,30,0.0 +20246,29,123.79,45,0.0 +20246,16,17.45,29,0.0 +20246,7,30,26,0.0 +20246,15,15.5,43,0.0 +20246,45,9.5,43,0.0 +20246,6,25,7,0.0 +20246,3,10,25,0.0 +20246,49,20,2,0.0 +20246,11,21,3,0.0 +20246,13,6,17,0.0 +20246,65,21.05,14,0.0 +20246,53,32.8,29,0.0 +20246,66,17,8,0.0 +20246,52,7,38,0.0 +20246,28,45.6,8,0.0 +20246,50,16.25,5,0.0 +20246,75,7.75,34,0.0 +20246,21,10,31,0.0 +20246,40,18.4,23,0.0 +20246,58,13.25,26,0.0 +20246,19,9.2,20,0.0 +20246,59,55,27,0.0 +20246,9,97,25,0.0 +20246,22,21,18,0.0 +20247,64,33.25,23,0.0 +20247,32,32,8,0.0 +20247,55,24,29,0.0 +20247,15,15.5,50,0.0 +20247,49,20,30,0.0 +20247,40,18.4,11,0.0 +20247,24,4.5,43,0.0 +20247,1,18,10,0.0 +20247,68,12.5,21,0.0 +20247,21,10,39,0.0 +20247,29,123.79,42,0.0 +20247,20,81,29,0.0 +20247,60,34,8,0.0 +20247,58,13.25,24,0.0 +20247,3,10,29,0.0 +20247,62,49.3,8,0.0 +20247,59,55,17,0.0 +20247,2,19,30,0.0 +20247,73,15,7,0.0 +20247,18,62.5,5,0.0 +20247,70,15,13,0.0 +20248,77,13,7,0.0 +20248,8,40,16,0.0 +20248,42,14,42,0.0 +20248,2,19,30,0.0 +20248,52,7,19,0.0 +20248,24,4.5,39,0.0 +20248,48,12.75,12,0.0 +20249,8,40,48,0.0 +20249,68,12.5,27,0.0 +20249,60,34,38,0.0 +20249,44,19.45,38,0.0 +20249,28,45.6,31,0.0 +20249,48,12.75,45,0.0 +20249,31,12.5,26,0.0 +20250,58,13.25,28,0.0 +20250,28,45.6,27,0.0 +20250,67,14,33,0.0 +20250,19,9.2,3,0.0 +20250,66,17,16,0.0 +20250,26,31.23,35,0.0 +20250,47,9.5,25,0.0 +20250,6,25,5,0.0 +20250,33,2.5,16,0.0 +20250,8,40,18,0.0 +20250,40,18.4,50,0.0 +20250,69,36,49,0.0 +20250,64,33.25,13,0.0 +20250,62,49.3,47,0.0 +20250,51,53,15,0.0 +20250,45,9.5,41,0.0 +20250,48,12.75,14,0.0 +20250,29,123.79,22,0.0 +20250,24,4.5,41,0.0 +20250,30,25.89,3,0.0 +20250,1,18,27,0.0 +20250,4,22,10,0.0 +20250,42,14,41,0.0 +20250,17,39,46,0.0 +20250,72,34.8,12,0.0 +20250,65,21.05,25,0.0 +20250,36,19,47,0.0 +20250,25,14,7,0.0 +20250,75,7.75,5,0.0 +20250,14,23.25,10,0.0 +20250,21,10,22,0.0 +20250,38,263.5,28,0.0 +20250,57,19.5,33,0.0 +20250,15,15.5,10,0.0 +20250,22,21,29,0.0 +20250,61,28.5,29,0.0 +20250,7,30,11,0.0 +20250,55,24,4,0.0 +20250,68,12.5,1,0.0 +20250,74,10,2,0.0 +20250,77,13,10,0.0 +20250,59,55,38,0.0 +20250,54,7.45,39,0.0 +20250,3,10,2,0.0 +20250,70,15,38,0.0 +20250,12,38,5,0.0 +20250,53,32.8,49,0.0 +20250,44,19.45,34,0.0 +20250,52,7,18,0.0 +20250,49,20,34,0.0 +20250,37,26,44,0.0 +20250,10,31,4,0.0 +20250,35,18,27,0.0 +20251,58,13.25,36,0.0 +20251,75,7.75,45,0.0 +20251,73,15,43,0.0 +20251,18,62.5,40,0.0 +20251,14,23.25,44,0.0 +20251,10,31,11,0.0 +20251,65,21.05,34,0.0 +20251,24,4.5,35,0.0 +20251,33,2.5,34,0.0 +20251,74,10,25,0.0 +20251,35,18,41,0.0 +20251,52,7,33,0.0 +20251,47,9.5,49,0.0 +20251,6,25,5,0.0 +20251,36,19,47,0.0 +20251,62,49.3,45,0.0 +20251,4,22,49,0.0 +20251,70,15,13,0.0 +20251,8,40,36,0.0 +20251,21,10,31,0.0 +20251,13,6,22,0.0 +20251,5,21.35,5,0.0 +20251,61,28.5,21,0.0 +20251,7,30,18,0.0 +20251,22,21,41,0.0 +20251,28,45.6,26,0.0 +20251,37,26,39,0.0 +20251,76,18,13,0.0 +20251,50,16.25,14,0.0 +20251,27,43.9,39,0.0 +20251,68,12.5,14,0.0 +20251,54,7.45,14,0.0 +20251,43,46,50,0.0 +20251,11,21,8,0.0 +20251,31,12.5,41,0.0 +20251,71,21.5,6,0.0 +20251,12,38,22,0.0 +20251,49,20,45,0.0 +20251,9,97,41,0.0 +20251,44,19.45,40,0.0 +20251,15,15.5,38,0.0 +20251,45,9.5,28,0.0 +20251,40,18.4,15,0.0 +20251,1,18,48,0.0 +20251,63,43.9,8,0.0 +20251,51,53,13,0.0 +20251,60,34,36,0.0 +20251,69,36,37,0.0 +20251,67,14,2,0.0 +20251,34,14,5,0.0 +20251,72,34.8,39,0.0 +20251,3,10,24,0.0 +20251,29,123.79,50,0.0 +20251,64,33.25,18,0.0 +20251,26,31.23,39,0.0 +20251,42,14,47,0.0 +20252,33,2.5,26,0.0 +20252,56,38,37,0.0 +20252,31,12.5,32,0.0 +20252,48,12.75,49,0.0 +20252,32,32,20,0.0 +20252,29,123.79,29,0.0 +20252,69,36,26,0.0 +20252,17,39,3,0.0 +20252,58,13.25,32,0.0 +20252,49,20,34,0.0 +20252,6,25,1,0.0 +20252,77,13,35,0.0 +20252,50,16.25,19,0.0 +20252,43,46,22,0.0 +20252,18,62.5,10,0.0 +20252,44,19.45,5,0.0 +20252,73,15,18,0.0 +20252,3,10,7,0.0 +20252,13,6,28,0.0 +20252,5,21.35,30,0.0 +20252,11,21,32,0.0 +20252,2,19,3,0.0 +20252,68,12.5,44,0.0 +20252,1,18,30,0.0 +20252,76,18,17,0.0 +20252,65,21.05,34,0.0 +20252,57,19.5,43,0.0 +20252,39,18,23,0.0 +20252,15,15.5,11,0.0 +20252,61,28.5,24,0.0 +20252,67,14,43,0.0 +20252,25,14,43,0.0 +20252,45,9.5,4,0.0 +20252,71,21.5,40,0.0 +20253,61,28.5,42,0.0 +20253,51,53,43,0.0 +20254,70,15,36,0.0 +20254,46,12,45,0.0 +20254,64,33.25,48,0.0 +20254,48,12.75,18,0.0 +20254,56,38,32,0.0 +20254,75,7.75,37,0.0 +20254,8,40,2,0.0 +20254,34,14,6,0.0 +20254,47,9.5,38,0.0 +20254,44,19.45,9,0.0 +20254,42,14,12,0.0 +20254,12,38,23,0.0 +20254,36,19,24,0.0 +20254,73,15,45,0.0 +20254,39,18,6,0.0 +20254,38,263.5,30,0.0 +20254,53,32.8,12,0.0 +20254,50,16.25,40,0.0 +20254,49,20,10,0.0 +20254,43,46,36,0.0 +20254,2,19,32,0.0 +20254,13,6,24,0.0 +20254,69,36,14,0.0 +20254,6,25,49,0.0 +20254,28,45.6,10,0.0 +20254,41,9.65,43,0.0 +20254,60,34,22,0.0 +20254,23,9,13,0.0 +20254,67,14,6,0.0 +20254,32,32,41,0.0 +20254,51,53,41,0.0 +20254,63,43.9,38,0.0 +20254,19,9.2,12,0.0 +20254,59,55,38,0.0 +20254,21,10,27,0.0 +20254,45,9.5,12,0.0 +20254,61,28.5,29,0.0 +20254,31,12.5,33,0.0 +20254,3,10,21,0.0 +20254,57,19.5,21,0.0 +20254,9,97,30,0.0 +20254,72,34.8,44,0.0 +20255,70,15,2,0.0 +20255,46,12,42,0.0 +20255,29,123.79,1,0.0 +20255,3,10,23,0.0 +20255,14,23.25,16,0.0 +20255,48,12.75,12,0.0 +20255,1,18,28,0.0 +20255,36,19,18,0.0 +20255,42,14,16,0.0 +20255,21,10,36,0.0 +20255,53,32.8,13,0.0 +20255,76,18,7,0.0 +20255,37,26,50,0.0 +20255,11,21,6,0.0 +20255,10,31,21,0.0 +20255,56,38,13,0.0 +20255,43,46,13,0.0 +20255,23,9,7,0.0 +20255,77,13,21,0.0 +20255,40,18.4,2,0.0 +20255,25,14,1,0.0 +20255,74,10,28,0.0 +20255,44,19.45,24,0.0 +20255,63,43.9,5,0.0 +20255,49,20,36,0.0 +20255,54,7.45,40,0.0 +20255,13,6,28,0.0 +20255,16,17.45,33,0.0 +20255,34,14,25,0.0 +20255,58,13.25,38,0.0 +20256,28,45.6,34,0.0 +20256,15,15.5,29,0.0 +20256,48,12.75,39,0.0 +20256,37,26,15,0.0 +20256,20,81,42,0.0 +20256,11,21,29,0.0 +20257,56,38,50,0.0 +20257,26,31.23,4,0.0 +20257,20,81,27,0.0 +20257,77,13,27,0.0 +20257,17,39,19,0.0 +20257,50,16.25,2,0.0 +20257,18,62.5,14,0.0 +20257,63,43.9,9,0.0 +20257,51,53,45,0.0 +20257,1,18,31,0.0 +20257,29,123.79,36,0.0 +20257,12,38,22,0.0 +20257,74,10,37,0.0 +20257,3,10,17,0.0 +20257,6,25,11,0.0 +20257,49,20,35,0.0 +20257,38,263.5,44,0.0 +20257,25,14,17,0.0 +20257,8,40,20,0.0 +20257,61,28.5,39,0.0 +20257,59,55,1,0.0 +20257,53,32.8,40,0.0 +20257,23,9,45,0.0 +20257,31,12.5,25,0.0 +20257,13,6,44,0.0 +20257,28,45.6,20,0.0 +20257,40,18.4,43,0.0 +20257,62,49.3,46,0.0 +20257,69,36,5,0.0 +20257,41,9.65,2,0.0 +20257,45,9.5,13,0.0 +20257,60,34,5,0.0 +20257,75,7.75,23,0.0 +20257,30,25.89,15,0.0 +20257,64,33.25,44,0.0 +20257,14,23.25,23,0.0 +20257,55,24,25,0.0 +20257,19,9.2,35,0.0 +20257,39,18,14,0.0 +20257,72,34.8,31,0.0 +20257,43,46,13,0.0 +20257,73,15,15,0.0 +20257,65,21.05,35,0.0 +20257,67,14,41,0.0 +20257,52,7,8,0.0 +20257,16,17.45,45,0.0 +20258,42,14,42,0.0 +20258,39,18,36,0.0 +20258,26,31.23,17,0.0 +20258,15,15.5,8,0.0 +20258,18,62.5,47,0.0 +20258,46,12,39,0.0 +20258,28,45.6,17,0.0 +20258,4,22,41,0.0 +20258,51,53,21,0.0 +20258,30,25.89,13,0.0 +20258,60,34,50,0.0 +20258,25,14,33,0.0 +20258,49,20,8,0.0 +20258,16,17.45,12,0.0 +20258,31,12.5,28,0.0 +20258,13,6,18,0.0 +20258,9,97,29,0.0 +20258,7,30,35,0.0 +20258,65,21.05,14,0.0 +20258,68,12.5,29,0.0 +20258,61,28.5,41,0.0 +20258,33,2.5,26,0.0 +20259,37,26,20,0.0 +20259,50,16.25,49,0.0 +20259,63,43.9,38,0.0 +20259,10,31,9,0.0 +20259,20,81,50,0.0 +20259,11,21,47,0.0 +20259,60,34,36,0.0 +20259,64,33.25,44,0.0 +20259,62,49.3,47,0.0 +20259,3,10,14,0.0 +20259,26,31.23,35,0.0 +20259,65,21.05,6,0.0 +20259,44,19.45,20,0.0 +20259,69,36,28,0.0 +20259,5,21.35,44,0.0 +20259,75,7.75,23,0.0 +20259,67,14,6,0.0 +20259,43,46,33,0.0 +20259,35,18,1,0.0 +20259,42,14,1,0.0 +20259,2,19,5,0.0 +20259,30,25.89,41,0.0 +20259,41,9.65,23,0.0 +20259,34,14,31,0.0 +20259,68,12.5,31,0.0 +20259,33,2.5,26,0.0 +20259,59,55,12,0.0 +20260,55,24,23,0.0 +20260,21,10,9,0.0 +20260,6,25,23,0.0 +20260,56,38,35,0.0 +20260,8,40,32,0.0 +20260,10,31,1,0.0 +20260,64,33.25,4,0.0 +20260,60,34,32,0.0 +20260,12,38,21,0.0 +20260,13,6,7,0.0 +20260,4,22,32,0.0 +20260,28,45.6,6,0.0 +20260,2,19,45,0.0 +20260,15,15.5,41,0.0 +20260,76,18,2,0.0 +20260,43,46,16,0.0 +20260,35,18,8,0.0 +20260,39,18,44,0.0 +20260,75,7.75,24,0.0 +20260,74,10,10,0.0 +20260,11,21,14,0.0 +20260,18,62.5,6,0.0 +20260,77,13,8,0.0 +20260,34,14,29,0.0 +20260,20,81,10,0.0 +20260,59,55,28,0.0 +20260,67,14,34,0.0 +20260,49,20,34,0.0 +20260,44,19.45,41,0.0 +20260,41,9.65,1,0.0 +20260,31,12.5,36,0.0 +20261,43,46,49,0.0 +20261,54,7.45,48,0.0 +20261,65,21.05,28,0.0 +20261,68,12.5,1,0.0 +20261,17,39,7,0.0 +20261,55,24,29,0.0 +20261,41,9.65,3,0.0 +20261,24,4.5,1,0.0 +20261,70,15,16,0.0 +20261,52,7,39,0.0 +20261,57,19.5,32,0.0 +20261,62,49.3,42,0.0 +20261,27,43.9,21,0.0 +20261,48,12.75,20,0.0 +20261,66,17,16,0.0 +20261,69,36,47,0.0 +20261,58,13.25,14,0.0 +20261,6,25,32,0.0 +20261,77,13,48,0.0 +20261,36,19,41,0.0 +20261,33,2.5,30,0.0 +20261,44,19.45,20,0.0 +20261,34,14,50,0.0 +20261,63,43.9,4,0.0 +20261,29,123.79,26,0.0 +20261,15,15.5,34,0.0 +20261,9,97,42,0.0 +20261,31,12.5,11,0.0 +20261,18,62.5,46,0.0 +20261,46,12,25,0.0 +20261,10,31,41,0.0 +20261,49,20,7,0.0 +20261,16,17.45,20,0.0 +20261,39,18,38,0.0 +20261,2,19,37,0.0 +20261,60,34,20,0.0 +20261,14,23.25,19,0.0 +20261,53,32.8,22,0.0 +20261,59,55,26,0.0 +20261,22,21,47,0.0 +20261,5,21.35,29,0.0 +20261,28,45.6,21,0.0 +20261,20,81,45,0.0 +20262,50,16.25,12,0.0 +20262,13,6,33,0.0 +20262,35,18,9,0.0 +20262,36,19,6,0.0 +20262,64,33.25,37,0.0 +20262,77,13,50,0.0 +20262,20,81,19,0.0 +20262,62,49.3,35,0.0 +20262,10,31,40,0.0 +20262,3,10,22,0.0 +20262,19,9.2,23,0.0 +20262,66,17,1,0.0 +20262,46,12,27,0.0 +20262,71,21.5,30,0.0 +20262,76,18,50,0.0 +20262,33,2.5,14,0.0 +20262,25,14,8,0.0 +20262,70,15,31,0.0 +20262,8,40,46,0.0 +20262,39,18,40,0.0 +20262,32,32,29,0.0 +20262,2,19,25,0.0 +20262,67,14,41,0.0 +20262,18,62.5,19,0.0 +20262,75,7.75,45,0.0 +20262,63,43.9,39,0.0 +20262,14,23.25,4,0.0 +20262,24,4.5,6,0.0 +20262,73,15,20,0.0 +20262,40,18.4,10,0.0 +20262,56,38,15,0.0 +20262,45,9.5,37,0.0 +20262,28,45.6,50,0.0 +20262,60,34,43,0.0 +20262,74,10,31,0.0 +20262,42,14,20,0.0 +20262,72,34.8,34,0.0 +20262,47,9.5,42,0.0 +20262,57,19.5,13,0.0 +20262,37,26,41,0.0 +20262,59,55,10,0.0 +20262,17,39,18,0.0 +20262,4,22,2,0.0 +20262,43,46,38,0.0 +20262,51,53,44,0.0 +20262,22,21,4,0.0 +20262,7,30,44,0.0 +20262,69,36,38,0.0 +20262,27,43.9,17,0.0 +20262,52,7,47,0.0 +20262,23,9,17,0.0 +20262,55,24,21,0.0 +20262,6,25,41,0.0 +20262,31,12.5,31,0.0 +20262,9,97,28,0.0 +20262,54,7.45,30,0.0 +20262,11,21,26,0.0 +20263,54,7.45,35,0.0 +20263,59,55,15,0.0 +20263,44,19.45,7,0.0 +20263,58,13.25,29,0.0 +20263,52,7,22,0.0 +20263,19,9.2,8,0.0 +20263,18,62.5,26,0.0 +20263,42,14,25,0.0 +20263,75,7.75,5,0.0 +20263,67,14,20,0.0 +20263,45,9.5,15,0.0 +20263,25,14,7,0.0 +20263,16,17.45,15,0.0 +20263,68,12.5,47,0.0 +20263,30,25.89,21,0.0 +20263,66,17,46,0.0 +20263,37,26,37,0.0 +20263,53,32.8,34,0.0 +20263,76,18,9,0.0 +20263,1,18,40,0.0 +20263,13,6,43,0.0 +20263,41,9.65,30,0.0 +20263,10,31,42,0.0 +20263,62,49.3,1,0.0 +20263,47,9.5,49,0.0 +20263,6,25,37,0.0 +20263,33,2.5,32,0.0 +20263,28,45.6,10,0.0 +20263,20,81,25,0.0 +20263,21,10,27,0.0 +20263,73,15,34,0.0 +20263,74,10,26,0.0 +20263,40,18.4,18,0.0 +20263,72,34.8,40,0.0 +20263,43,46,13,0.0 +20263,46,12,22,0.0 +20263,12,38,15,0.0 +20263,77,13,37,0.0 +20263,49,20,20,0.0 +20263,15,15.5,45,0.0 +20263,8,40,2,0.0 +20263,22,21,29,0.0 +20263,70,15,43,0.0 +20263,57,19.5,8,0.0 +20263,9,97,29,0.0 +20263,55,24,24,0.0 +20263,36,19,32,0.0 +20263,26,31.23,41,0.0 +20263,14,23.25,41,0.0 +20263,7,30,44,0.0 +20263,34,14,15,0.0 +20263,56,38,43,0.0 +20263,61,28.5,12,0.0 +20264,5,21.35,7,0.0 +20264,63,43.9,41,0.0 +20264,45,9.5,29,0.0 +20264,22,21,11,0.0 +20264,48,12.75,46,0.0 +20264,21,10,13,0.0 +20264,46,12,29,0.0 +20264,2,19,5,0.0 +20264,64,33.25,32,0.0 +20264,72,34.8,22,0.0 +20264,24,4.5,32,0.0 +20264,74,10,16,0.0 +20264,10,31,3,0.0 +20264,70,15,50,0.0 +20264,39,18,42,0.0 +20264,36,19,36,0.0 +20264,66,17,1,0.0 +20264,50,16.25,1,0.0 +20264,49,20,15,0.0 +20264,77,13,16,0.0 +20264,28,45.6,14,0.0 +20264,73,15,18,0.0 +20264,53,32.8,18,0.0 +20264,32,32,19,0.0 +20264,47,9.5,46,0.0 +20264,31,12.5,36,0.0 +20264,38,263.5,6,0.0 +20264,75,7.75,49,0.0 +20264,13,6,50,0.0 +20264,15,15.5,13,0.0 +20264,25,14,24,0.0 +20264,68,12.5,10,0.0 +20264,76,18,9,0.0 +20264,41,9.65,9,0.0 +20264,60,34,42,0.0 +20264,62,49.3,1,0.0 +20264,51,53,16,0.0 +20264,7,30,39,0.0 +20264,52,7,22,0.0 +20264,71,21.5,27,0.0 +20264,65,21.05,48,0.0 +20264,43,46,42,0.0 +20264,6,25,15,0.0 +20264,35,18,4,0.0 +20264,61,28.5,40,0.0 +20264,1,18,40,0.0 +20264,57,19.5,18,0.0 +20264,37,26,47,0.0 +20264,8,40,42,0.0 +20264,67,14,13,0.0 +20264,4,22,23,0.0 +20264,14,23.25,25,0.0 +20264,18,62.5,21,0.0 +20264,29,123.79,2,0.0 +20264,58,13.25,23,0.0 +20264,30,25.89,6,0.0 +20264,34,14,19,0.0 +20264,44,19.45,13,0.0 +20264,54,7.45,18,0.0 +20264,23,9,30,0.0 +20264,59,55,42,0.0 +20264,17,39,45,0.0 +20264,33,2.5,49,0.0 +20264,12,38,7,0.0 +20264,20,81,27,0.0 +20264,69,36,1,0.0 +20264,40,18.4,6,0.0 +20264,3,10,50,0.0 +20264,42,14,30,0.0 +20264,26,31.23,40,0.0 +20265,33,2.5,29,0.0 +20265,51,53,22,0.0 +20265,22,21,40,0.0 +20265,65,21.05,31,0.0 +20265,11,21,22,0.0 +20265,19,9.2,11,0.0 +20265,47,9.5,9,0.0 +20265,15,15.5,5,0.0 +20265,4,22,30,0.0 +20265,35,18,24,0.0 +20265,45,9.5,12,0.0 +20265,74,10,30,0.0 +20265,2,19,3,0.0 +20265,43,46,17,0.0 +20265,63,43.9,5,0.0 +20265,77,13,50,0.0 +20265,39,18,8,0.0 +20265,71,21.5,34,0.0 +20265,21,10,21,0.0 +20265,28,45.6,32,0.0 +20265,36,19,50,0.0 +20265,73,15,27,0.0 +20265,29,123.79,35,0.0 +20265,67,14,33,0.0 +20265,10,31,30,0.0 +20265,41,9.65,42,0.0 +20265,34,14,15,0.0 +20265,38,263.5,45,0.0 +20265,52,7,11,0.0 +20265,76,18,27,0.0 +20265,75,7.75,14,0.0 +20265,13,6,13,0.0 +20266,26,31.23,33,0.0 +20266,46,12,29,0.0 +20267,44,19.45,39,0.0 +20267,24,4.5,20,0.0 +20267,72,34.8,29,0.0 +20267,51,53,7,0.0 +20267,37,26,17,0.0 +20267,18,62.5,50,0.0 +20267,45,9.5,17,0.0 +20267,13,6,38,0.0 +20267,17,39,20,0.0 +20267,4,22,11,0.0 +20267,48,12.75,2,0.0 +20267,68,12.5,14,0.0 +20267,19,9.2,32,0.0 +20267,31,12.5,48,0.0 +20267,52,7,13,0.0 +20267,60,34,27,0.0 +20267,63,43.9,17,0.0 +20267,7,30,39,0.0 +20267,26,31.23,25,0.0 +20267,20,81,50,0.0 +20267,1,18,1,0.0 +20267,16,17.45,31,0.0 +20267,41,9.65,24,0.0 +20268,29,123.79,38,0.0 +20268,51,53,24,0.0 +20268,73,15,9,0.0 +20268,2,19,44,0.0 +20268,39,18,24,0.0 +20268,60,34,21,0.0 +20268,69,36,45,0.0 +20268,36,19,17,0.0 +20268,43,46,23,0.0 +20268,34,14,49,0.0 +20268,61,28.5,49,0.0 +20268,56,38,19,0.0 +20268,7,30,19,0.0 +20268,55,24,35,0.0 +20268,11,21,12,0.0 +20268,16,17.45,43,0.0 +20268,33,2.5,3,0.0 +20268,46,12,9,0.0 +20268,23,9,1,0.0 +20268,62,49.3,37,0.0 +20268,18,62.5,10,0.0 +20268,42,14,15,0.0 +20268,52,7,47,0.0 +20268,74,10,8,0.0 +20268,45,9.5,34,0.0 +20268,22,21,41,0.0 +20268,40,18.4,17,0.0 +20268,41,9.65,29,0.0 +20268,20,81,13,0.0 +20268,58,13.25,16,0.0 +20268,75,7.75,48,0.0 +20268,4,22,20,0.0 +20268,6,25,49,0.0 +20268,72,34.8,20,0.0 +20268,13,6,17,0.0 +20268,47,9.5,21,0.0 +20268,27,43.9,38,0.0 +20268,68,12.5,35,0.0 +20268,12,38,1,0.0 +20268,59,55,28,0.0 +20268,5,21.35,25,0.0 +20268,70,15,39,0.0 +20268,53,32.8,20,0.0 +20268,26,31.23,1,0.0 +20268,17,39,22,0.0 +20268,31,12.5,43,0.0 +20268,37,26,35,0.0 +20268,1,18,26,0.0 +20268,15,15.5,46,0.0 +20268,63,43.9,24,0.0 +20268,57,19.5,30,0.0 +20268,35,18,24,0.0 +20268,28,45.6,45,0.0 +20268,21,10,3,0.0 +20268,50,16.25,33,0.0 +20268,66,17,45,0.0 +20268,44,19.45,37,0.0 +20268,77,13,42,0.0 +20268,8,40,25,0.0 +20268,71,21.5,36,0.0 +20268,25,14,14,0.0 +20268,24,4.5,10,0.0 +20268,10,31,1,0.0 +20268,3,10,22,0.0 +20268,67,14,27,0.0 +20268,48,12.75,6,0.0 +20268,65,21.05,24,0.0 +20268,32,32,28,0.0 +20268,38,263.5,29,0.0 +20268,9,97,19,0.0 +20268,30,25.89,30,0.0 +20268,76,18,34,0.0 +20268,19,9.2,29,0.0 +20268,54,7.45,31,0.0 +20268,49,20,10,0.0 +20269,75,7.75,3,0.0 +20269,28,45.6,49,0.0 +20269,6,25,39,0.0 +20269,42,14,34,0.0 +20269,72,34.8,44,0.0 +20269,50,16.25,10,0.0 +20270,68,12.5,11,0.0 +20270,67,14,46,0.0 +20270,43,46,10,0.0 +20270,33,2.5,45,0.0 +20270,44,19.45,43,0.0 +20270,7,30,4,0.0 +20270,25,14,38,0.0 +20270,2,19,6,0.0 +20270,32,32,4,0.0 +20270,28,45.6,21,0.0 +20270,24,4.5,21,0.0 +20270,54,7.45,20,0.0 +20270,6,25,30,0.0 +20270,70,15,30,0.0 +20270,41,9.65,20,0.0 +20270,5,21.35,35,0.0 +20270,73,15,23,0.0 +20270,36,19,6,0.0 +20270,29,123.79,16,0.0 +20270,27,43.9,15,0.0 +20270,39,18,23,0.0 +20270,60,34,7,0.0 +20270,22,21,2,0.0 +20270,4,22,11,0.0 +20270,48,12.75,39,0.0 +20270,76,18,8,0.0 +20270,51,53,8,0.0 +20270,19,9.2,44,0.0 +20270,64,33.25,42,0.0 +20270,71,21.5,48,0.0 +20270,18,62.5,29,0.0 +20270,12,38,17,0.0 +20270,11,21,22,0.0 +20270,30,25.89,4,0.0 +20270,46,12,33,0.0 +20270,47,9.5,3,0.0 +20270,13,6,32,0.0 +20270,15,15.5,13,0.0 +20270,35,18,11,0.0 +20270,50,16.25,17,0.0 +20270,14,23.25,38,0.0 +20270,16,17.45,35,0.0 +20270,45,9.5,42,0.0 +20270,40,18.4,29,0.0 +20270,63,43.9,5,0.0 +20270,38,263.5,26,0.0 +20270,61,28.5,2,0.0 +20270,66,17,26,0.0 +20270,23,9,43,0.0 +20270,69,36,46,0.0 +20270,1,18,37,0.0 +20270,72,34.8,16,0.0 +20270,77,13,43,0.0 +20270,62,49.3,39,0.0 +20270,55,24,22,0.0 +20270,26,31.23,33,0.0 +20270,75,7.75,22,0.0 +20270,58,13.25,33,0.0 +20270,17,39,11,0.0 +20270,10,31,46,0.0 +20270,52,7,19,0.0 +20270,34,14,13,0.0 +20270,37,26,36,0.0 +20270,49,20,36,0.0 +20270,21,10,34,0.0 +20270,65,21.05,48,0.0 +20270,9,97,26,0.0 +20270,57,19.5,16,0.0 +20270,3,10,50,0.0 +20270,53,32.8,12,0.0 +20270,20,81,45,0.0 +20270,31,12.5,44,0.0 +20270,74,10,29,0.0 +20270,8,40,20,0.0 +20270,59,55,29,0.0 +20270,42,14,32,0.0 +20270,56,38,37,0.0 +20271,13,6,15,0.0 +20271,49,20,31,0.0 +20271,45,9.5,8,0.0 +20271,37,26,19,0.0 +20271,57,19.5,21,0.0 +20271,54,7.45,36,0.0 +20271,14,23.25,42,0.0 +20271,68,12.5,23,0.0 +20271,72,34.8,42,0.0 +20271,16,17.45,36,0.0 +20271,76,18,45,0.0 +20271,53,32.8,34,0.0 +20271,24,4.5,8,0.0 +20271,4,22,20,0.0 +20271,47,9.5,14,0.0 +20271,32,32,49,0.0 +20271,42,14,36,0.0 +20271,3,10,35,0.0 +20271,18,62.5,18,0.0 +20271,22,21,19,0.0 +20271,21,10,29,0.0 +20271,25,14,31,0.0 +20271,28,45.6,42,0.0 +20271,35,18,21,0.0 +20271,9,97,32,0.0 +20271,66,17,7,0.0 +20271,20,81,22,0.0 +20272,26,31.23,24,0.0 +20272,59,55,49,0.0 +20272,13,6,49,0.0 +20272,27,43.9,30,0.0 +20272,32,32,43,0.0 +20272,58,13.25,32,0.0 +20272,49,20,44,0.0 +20272,44,19.45,24,0.0 +20272,75,7.75,40,0.0 +20272,64,33.25,34,0.0 +20272,11,21,31,0.0 +20272,25,14,19,0.0 +20272,19,9.2,39,0.0 +20272,30,25.89,48,0.0 +20272,52,7,2,0.0 +20272,60,34,29,0.0 +20272,35,18,20,0.0 +20272,63,43.9,16,0.0 +20272,70,15,9,0.0 +20272,3,10,48,0.0 +20272,8,40,7,0.0 +20272,20,81,43,0.0 +20272,28,45.6,7,0.0 +20272,22,21,38,0.0 +20272,17,39,11,0.0 +20272,5,21.35,20,0.0 +20272,72,34.8,18,0.0 +20272,6,25,3,0.0 +20272,48,12.75,16,0.0 +20272,2,19,31,0.0 +20272,66,17,15,0.0 +20272,21,10,34,0.0 +20272,37,26,48,0.0 +20272,24,4.5,40,0.0 +20272,7,30,7,0.0 +20272,68,12.5,46,0.0 +20272,73,15,22,0.0 +20272,50,16.25,14,0.0 +20272,76,18,21,0.0 +20272,61,28.5,34,0.0 +20272,47,9.5,45,0.0 +20272,53,32.8,8,0.0 +20273,45,9.5,6,0.0 +20273,32,32,45,0.0 +20273,43,46,45,0.0 +20273,55,24,29,0.0 +20273,71,21.5,5,0.0 +20273,14,23.25,11,0.0 +20273,44,19.45,4,0.0 +20273,16,17.45,17,0.0 +20273,54,7.45,4,0.0 +20273,59,55,38,0.0 +20273,6,25,34,0.0 +20273,53,32.8,48,0.0 +20273,20,81,43,0.0 +20273,38,263.5,33,0.0 +20273,22,21,41,0.0 +20273,34,14,27,0.0 +20274,3,10,21,0.0 +20274,21,10,33,0.0 +20274,9,97,13,0.0 +20274,43,46,42,0.0 +20274,28,45.6,38,0.0 +20274,11,21,22,0.0 +20274,67,14,14,0.0 +20274,46,12,34,0.0 +20274,68,12.5,8,0.0 +20274,30,25.89,35,0.0 +20274,27,43.9,33,0.0 +20274,70,15,32,0.0 +20274,66,17,24,0.0 +20274,69,36,9,0.0 +20274,33,2.5,23,0.0 +20274,10,31,36,0.0 +20274,39,18,19,0.0 +20274,29,123.79,25,0.0 +20274,25,14,2,0.0 +20274,64,33.25,48,0.0 +20274,56,38,35,0.0 +20274,37,26,41,0.0 +20274,8,40,23,0.0 +20274,7,30,7,0.0 +20274,47,9.5,44,0.0 +20274,40,18.4,44,0.0 +20274,71,21.5,7,0.0 +20274,20,81,4,0.0 +20274,42,14,42,0.0 +20274,75,7.75,26,0.0 +20274,58,13.25,36,0.0 +20274,36,19,42,0.0 +20274,12,38,43,0.0 +20274,54,7.45,6,0.0 +20274,57,19.5,25,0.0 +20274,4,22,10,0.0 +20274,24,4.5,33,0.0 +20274,52,7,14,0.0 +20274,72,34.8,41,0.0 +20274,74,10,38,0.0 +20274,35,18,49,0.0 +20274,41,9.65,25,0.0 +20274,31,12.5,46,0.0 +20274,55,24,43,0.0 +20274,34,14,42,0.0 +20274,48,12.75,1,0.0 +20274,38,263.5,18,0.0 +20274,2,19,50,0.0 +20274,62,49.3,10,0.0 +20274,65,21.05,39,0.0 +20274,19,9.2,6,0.0 +20274,77,13,48,0.0 +20274,13,6,39,0.0 +20274,51,53,28,0.0 +20274,26,31.23,33,0.0 +20274,22,21,25,0.0 +20274,6,25,46,0.0 +20274,44,19.45,6,0.0 +20274,73,15,38,0.0 +20274,18,62.5,44,0.0 +20274,17,39,2,0.0 +20274,15,15.5,32,0.0 +20274,1,18,43,0.0 +20274,16,17.45,41,0.0 +20274,63,43.9,9,0.0 +20274,60,34,48,0.0 +20274,49,20,26,0.0 +20274,5,21.35,17,0.0 +20274,59,55,47,0.0 +20274,50,16.25,17,0.0 +20275,19,9.2,35,0.0 +20275,54,7.45,17,0.0 +20275,48,12.75,37,0.0 +20275,27,43.9,9,0.0 +20275,55,24,23,0.0 +20275,13,6,33,0.0 +20275,45,9.5,8,0.0 +20275,14,23.25,47,0.0 +20275,17,39,3,0.0 +20275,46,12,15,0.0 +20275,18,62.5,5,0.0 +20275,1,18,48,0.0 +20275,61,28.5,41,0.0 +20275,9,97,29,0.0 +20275,37,26,16,0.0 +20275,41,9.65,42,0.0 +20275,26,31.23,28,0.0 +20275,75,7.75,2,0.0 +20275,3,10,34,0.0 +20275,38,263.5,26,0.0 +20275,77,13,40,0.0 +20275,20,81,16,0.0 +20275,5,21.35,35,0.0 +20275,30,25.89,25,0.0 +20275,63,43.9,50,0.0 +20275,62,49.3,1,0.0 +20275,44,19.45,43,0.0 +20275,36,19,7,0.0 +20275,7,30,33,0.0 +20275,32,32,10,0.0 +20275,56,38,9,0.0 +20275,59,55,5,0.0 +20275,69,36,40,0.0 +20275,29,123.79,23,0.0 +20275,50,16.25,45,0.0 +20275,23,9,33,0.0 +20275,73,15,46,0.0 +20275,43,46,22,0.0 +20276,65,21.05,45,0.0 +20276,52,7,47,0.0 +20276,61,28.5,11,0.0 +20276,11,21,9,0.0 +20276,37,26,18,0.0 +20276,30,25.89,14,0.0 +20276,28,45.6,6,0.0 +20276,34,14,8,0.0 +20276,19,9.2,18,0.0 +20276,22,21,45,0.0 +20276,5,21.35,24,0.0 +20276,3,10,27,0.0 +20276,76,18,30,0.0 +20276,70,15,50,0.0 +20276,73,15,18,0.0 +20276,46,12,48,0.0 +20277,45,9.5,41,0.0 +20277,22,21,31,0.0 +20277,43,46,50,0.0 +20277,52,7,33,0.0 +20277,69,36,42,0.0 +20277,55,24,6,0.0 +20277,35,18,42,0.0 +20277,2,19,18,0.0 +20277,47,9.5,34,0.0 +20277,38,263.5,31,0.0 +20277,60,34,33,0.0 +20277,20,81,19,0.0 +20277,50,16.25,18,0.0 +20277,68,12.5,8,0.0 +20277,39,18,3,0.0 +20277,23,9,9,0.0 +20277,66,17,50,0.0 +20277,18,62.5,26,0.0 +20277,57,19.5,16,0.0 +20277,76,18,25,0.0 +20277,3,10,50,0.0 +20277,33,2.5,24,0.0 +20277,6,25,48,0.0 +20277,58,13.25,39,0.0 +20277,74,10,15,0.0 +20277,71,21.5,32,0.0 +20277,24,4.5,49,0.0 +20277,11,21,38,0.0 +20277,59,55,21,0.0 +20277,53,32.8,38,0.0 +20277,15,15.5,23,0.0 +20277,14,23.25,27,0.0 +20277,63,43.9,25,0.0 +20277,77,13,36,0.0 +20277,21,10,45,0.0 +20277,30,25.89,49,0.0 +20277,36,19,17,0.0 +20277,61,28.5,36,0.0 +20277,31,12.5,34,0.0 +20277,16,17.45,20,0.0 +20277,8,40,37,0.0 +20277,7,30,28,0.0 +20277,54,7.45,25,0.0 +20277,19,9.2,18,0.0 +20277,41,9.65,12,0.0 +20277,67,14,33,0.0 +20277,73,15,26,0.0 +20278,69,36,5,0.0 +20278,71,21.5,16,0.0 +20278,47,9.5,34,0.0 +20278,10,31,23,0.0 +20278,7,30,12,0.0 +20278,2,19,25,0.0 +20278,74,10,19,0.0 +20278,56,38,45,0.0 +20278,13,6,41,0.0 +20278,27,43.9,7,0.0 +20278,20,81,21,0.0 +20278,41,9.65,32,0.0 +20278,63,43.9,4,0.0 +20278,19,9.2,33,0.0 +20278,37,26,40,0.0 +20278,40,18.4,42,0.0 +20278,64,33.25,16,0.0 +20278,44,19.45,11,0.0 +20278,75,7.75,7,0.0 +20278,3,10,48,0.0 +20278,42,14,43,0.0 +20278,52,7,42,0.0 +20278,18,62.5,41,0.0 +20278,21,10,3,0.0 +20278,45,9.5,30,0.0 +20278,76,18,38,0.0 +20278,50,16.25,48,0.0 +20278,16,17.45,43,0.0 +20278,32,32,50,0.0 +20278,14,23.25,14,0.0 +20278,17,39,10,0.0 +20278,25,14,47,0.0 +20278,77,13,5,0.0 +20278,65,21.05,34,0.0 +20278,49,20,24,0.0 +20278,24,4.5,50,0.0 +20278,33,2.5,32,0.0 +20278,66,17,3,0.0 +20278,9,97,50,0.0 +20278,54,7.45,50,0.0 +20278,38,263.5,38,0.0 +20278,6,25,31,0.0 +20278,5,21.35,33,0.0 +20278,11,21,24,0.0 +20278,72,34.8,7,0.0 +20278,26,31.23,7,0.0 +20278,70,15,47,0.0 +20278,34,14,33,0.0 +20278,61,28.5,43,0.0 +20278,55,24,13,0.0 +20278,36,19,38,0.0 +20278,29,123.79,33,0.0 +20278,67,14,48,0.0 +20278,48,12.75,10,0.0 +20278,53,32.8,27,0.0 +20278,28,45.6,8,0.0 +20278,46,12,26,0.0 +20278,1,18,39,0.0 +20278,73,15,45,0.0 +20278,60,34,36,0.0 +20278,8,40,16,0.0 +20278,68,12.5,49,0.0 +20278,35,18,17,0.0 +20278,4,22,49,0.0 +20279,73,15,3,0.0 +20279,74,10,29,0.0 +20279,10,31,6,0.0 +20279,65,21.05,38,0.0 +20279,15,15.5,39,0.0 +20279,5,21.35,49,0.0 +20279,41,9.65,29,0.0 +20279,52,7,30,0.0 +20279,51,53,44,0.0 +20279,58,13.25,21,0.0 +20279,12,38,9,0.0 +20279,44,19.45,46,0.0 +20279,75,7.75,31,0.0 +20279,22,21,21,0.0 +20279,23,9,38,0.0 +20279,24,4.5,43,0.0 +20279,11,21,35,0.0 +20279,64,33.25,31,0.0 +20279,31,12.5,43,0.0 +20279,17,39,31,0.0 +20279,63,43.9,49,0.0 +20279,59,55,21,0.0 +20279,9,97,34,0.0 +20279,46,12,12,0.0 +20279,47,9.5,9,0.0 +20279,21,10,42,0.0 +20279,7,30,35,0.0 +20279,34,14,30,0.0 +20279,54,7.45,11,0.0 +20279,39,18,36,0.0 +20279,61,28.5,10,0.0 +20279,57,19.5,25,0.0 +20279,36,19,15,0.0 +20279,26,31.23,29,0.0 +20279,14,23.25,3,0.0 +20279,67,14,16,0.0 +20279,13,6,13,0.0 +20279,43,46,47,0.0 +20279,6,25,39,0.0 +20279,35,18,28,0.0 +20279,60,34,41,0.0 +20279,76,18,30,0.0 +20279,3,10,2,0.0 +20279,42,14,20,0.0 +20279,66,17,22,0.0 +20279,30,25.89,2,0.0 +20279,37,26,5,0.0 +20279,71,21.5,35,0.0 +20279,1,18,47,0.0 +20279,8,40,4,0.0 +20279,56,38,27,0.0 +20279,70,15,50,0.0 +20279,53,32.8,47,0.0 +20279,33,2.5,48,0.0 +20279,28,45.6,32,0.0 +20280,16,17.45,22,0.0 +20280,59,55,12,0.0 +20280,57,19.5,18,0.0 +20280,52,7,49,0.0 +20280,66,17,39,0.0 +20280,6,25,48,0.0 +20280,70,15,2,0.0 +20280,21,10,45,0.0 +20280,19,9.2,27,0.0 +20280,15,15.5,36,0.0 +20280,62,49.3,7,0.0 +20280,5,21.35,50,0.0 +20280,45,9.5,31,0.0 +20280,14,23.25,46,0.0 +20280,4,22,37,0.0 +20280,75,7.75,15,0.0 +20280,26,31.23,15,0.0 +20280,54,7.45,36,0.0 +20280,56,38,16,0.0 +20280,67,14,47,0.0 +20280,1,18,26,0.0 +20280,31,12.5,37,0.0 +20280,24,4.5,47,0.0 +20280,9,97,29,0.0 +20280,65,21.05,47,0.0 +20281,27,43.9,22,0.0 +20281,30,25.89,27,0.0 +20281,6,25,46,0.0 +20281,40,18.4,45,0.0 +20281,26,31.23,7,0.0 +20281,35,18,38,0.0 +20281,28,45.6,39,0.0 +20281,63,43.9,24,0.0 +20281,56,38,39,0.0 +20281,58,13.25,38,0.0 +20281,4,22,6,0.0 +20281,55,24,18,0.0 +20281,65,21.05,28,0.0 +20281,39,18,27,0.0 +20281,54,7.45,30,0.0 +20281,15,15.5,31,0.0 +20281,34,14,37,0.0 +20281,57,19.5,34,0.0 +20281,49,20,37,0.0 +20281,16,17.45,5,0.0 +20281,10,31,2,0.0 +20281,43,46,8,0.0 +20281,33,2.5,14,0.0 +20281,72,34.8,15,0.0 +20281,45,9.5,13,0.0 +20282,50,16.25,5,0.0 +20282,61,28.5,47,0.0 +20282,32,32,28,0.0 +20282,1,18,11,0.0 +20282,31,12.5,24,0.0 +20282,19,9.2,36,0.0 +20282,33,2.5,18,0.0 +20282,35,18,47,0.0 +20282,51,53,11,0.0 +20282,64,33.25,7,0.0 +20282,3,10,23,0.0 +20282,16,17.45,22,0.0 +20282,12,38,30,0.0 +20282,9,97,29,0.0 +20282,25,14,38,0.0 +20282,5,21.35,15,0.0 +20282,20,81,6,0.0 +20282,56,38,47,0.0 +20282,4,22,40,0.0 +20282,58,13.25,26,0.0 +20282,63,43.9,6,0.0 +20282,76,18,28,0.0 +20282,11,21,18,0.0 +20282,45,9.5,39,0.0 +20282,43,46,14,0.0 +20282,10,31,2,0.0 +20282,29,123.79,10,0.0 +20282,44,19.45,15,0.0 +20282,24,4.5,20,0.0 +20282,55,24,47,0.0 +20282,48,12.75,25,0.0 +20282,73,15,9,0.0 +20282,14,23.25,20,0.0 +20282,28,45.6,34,0.0 +20282,60,34,20,0.0 +20282,17,39,4,0.0 +20282,41,9.65,9,0.0 +20282,36,19,46,0.0 +20282,68,12.5,19,0.0 +20282,75,7.75,31,0.0 +20282,67,14,49,0.0 +20282,38,263.5,7,0.0 +20282,34,14,47,0.0 +20282,57,19.5,5,0.0 +20282,18,62.5,38,0.0 +20282,71,21.5,33,0.0 +20282,42,14,26,0.0 +20282,15,15.5,30,0.0 +20282,62,49.3,26,0.0 +20282,2,19,34,0.0 +20282,72,34.8,36,0.0 +20282,77,13,2,0.0 +20282,66,17,44,0.0 +20282,74,10,45,0.0 +20282,39,18,1,0.0 +20282,27,43.9,46,0.0 +20282,69,36,46,0.0 +20282,49,20,21,0.0 +20282,6,25,4,0.0 +20282,52,7,9,0.0 +20282,37,26,29,0.0 +20282,53,32.8,8,0.0 +20282,23,9,29,0.0 +20282,30,25.89,26,0.0 +20282,21,10,13,0.0 +20282,65,21.05,31,0.0 +20282,46,12,16,0.0 +20282,54,7.45,22,0.0 +20282,22,21,2,0.0 +20282,59,55,32,0.0 +20282,8,40,48,0.0 +20282,70,15,29,0.0 +20282,26,31.23,26,0.0 +20282,7,30,14,0.0 +20282,13,6,19,0.0 +20283,56,38,32,0.0 +20283,52,7,43,0.0 +20283,4,22,13,0.0 +20283,42,14,5,0.0 +20283,66,17,25,0.0 +20283,43,46,13,0.0 +20283,23,9,40,0.0 +20283,13,6,14,0.0 +20283,44,19.45,34,0.0 +20283,25,14,32,0.0 +20283,54,7.45,16,0.0 +20283,39,18,2,0.0 +20283,28,45.6,2,0.0 +20283,76,18,21,0.0 +20283,36,19,3,0.0 +20283,38,263.5,28,0.0 +20283,61,28.5,3,0.0 +20283,18,62.5,27,0.0 +20283,20,81,3,0.0 +20283,71,21.5,49,0.0 +20283,7,30,28,0.0 +20283,35,18,22,0.0 +20283,58,13.25,7,0.0 +20283,3,10,17,0.0 +20283,15,15.5,45,0.0 +20283,1,18,45,0.0 +20283,11,21,4,0.0 +20283,31,12.5,2,0.0 +20283,27,43.9,20,0.0 +20283,45,9.5,11,0.0 +20283,33,2.5,12,0.0 +20283,62,49.3,30,0.0 +20283,40,18.4,47,0.0 +20283,67,14,27,0.0 +20283,16,17.45,34,0.0 +20283,14,23.25,3,0.0 +20283,47,9.5,13,0.0 +20283,17,39,21,0.0 +20283,10,31,15,0.0 +20283,37,26,37,0.0 +20283,55,24,16,0.0 +20283,48,12.75,24,0.0 +20283,50,16.25,21,0.0 +20283,46,12,39,0.0 +20283,57,19.5,35,0.0 +20283,12,38,27,0.0 +20283,64,33.25,44,0.0 +20283,30,25.89,39,0.0 +20283,77,13,33,0.0 +20283,68,12.5,1,0.0 +20283,24,4.5,41,0.0 +20283,60,34,12,0.0 +20283,19,9.2,5,0.0 +20283,63,43.9,3,0.0 +20283,51,53,3,0.0 +20283,72,34.8,6,0.0 +20283,2,19,23,0.0 +20283,26,31.23,39,0.0 +20283,21,10,15,0.0 +20284,24,4.5,35,0.0 +20284,70,15,3,0.0 +20284,56,38,12,0.0 +20284,19,9.2,48,0.0 +20284,6,25,32,0.0 +20284,38,263.5,18,0.0 +20285,40,18.4,29,0.0 +20285,51,53,28,0.0 +20285,76,18,12,0.0 +20285,34,14,31,0.0 +20285,53,32.8,29,0.0 +20285,64,33.25,23,0.0 +20285,30,25.89,24,0.0 +20285,37,26,7,0.0 +20285,8,40,42,0.0 +20285,25,14,12,0.0 +20285,49,20,35,0.0 +20285,20,81,26,0.0 +20285,7,30,13,0.0 +20285,70,15,32,0.0 +20285,39,18,44,0.0 +20285,68,12.5,23,0.0 +20286,39,18,4,0.0 +20286,48,12.75,22,0.0 +20286,41,9.65,19,0.0 +20286,44,19.45,18,0.0 +20286,40,18.4,16,0.0 +20286,3,10,22,0.0 +20286,54,7.45,45,0.0 +20286,33,2.5,1,0.0 +20286,15,15.5,36,0.0 +20286,67,14,25,0.0 +20286,4,22,43,0.0 +20286,53,32.8,17,0.0 +20286,32,32,37,0.0 +20286,65,21.05,30,0.0 +20286,21,10,10,0.0 +20286,66,17,14,0.0 +20286,64,33.25,1,0.0 +20286,26,31.23,28,0.0 +20286,55,24,41,0.0 +20286,70,15,31,0.0 +20286,2,19,2,0.0 +20286,56,38,2,0.0 +20286,18,62.5,3,0.0 +20286,19,9.2,12,0.0 +20286,37,26,50,0.0 +20286,52,7,38,0.0 +20286,30,25.89,21,0.0 +20286,69,36,43,0.0 +20286,22,21,15,0.0 +20286,17,39,20,0.0 +20286,12,38,13,0.0 +20286,13,6,40,0.0 +20286,25,14,5,0.0 +20287,56,38,13,0.0 +20287,47,9.5,39,0.0 +20287,15,15.5,38,0.0 +20287,24,4.5,47,0.0 +20287,17,39,21,0.0 +20287,38,263.5,45,0.0 +20287,19,9.2,39,0.0 +20287,34,14,21,0.0 +20287,42,14,43,0.0 +20287,31,12.5,7,0.0 +20288,8,40,30,0.0 +20288,37,26,45,0.0 +20288,40,18.4,33,0.0 +20288,9,97,23,0.0 +20288,47,9.5,26,0.0 +20288,63,43.9,43,0.0 +20288,12,38,11,0.0 +20288,42,14,50,0.0 +20288,22,21,5,0.0 +20288,43,46,30,0.0 +20288,67,14,21,0.0 +20288,66,17,38,0.0 +20288,28,45.6,28,0.0 +20288,24,4.5,34,0.0 +20288,30,25.89,10,0.0 +20288,57,19.5,34,0.0 +20288,53,32.8,30,0.0 +20288,64,33.25,46,0.0 +20288,55,24,4,0.0 +20288,65,21.05,49,0.0 +20288,1,18,14,0.0 +20288,45,9.5,8,0.0 +20288,44,19.45,10,0.0 +20288,26,31.23,6,0.0 +20288,15,15.5,37,0.0 +20288,23,9,41,0.0 +20288,19,9.2,8,0.0 +20288,48,12.75,35,0.0 +20288,54,7.45,11,0.0 +20288,69,36,44,0.0 +20288,72,34.8,15,0.0 +20288,52,7,6,0.0 +20288,60,34,30,0.0 +20289,25,14,33,0.0 +20289,30,25.89,14,0.0 +20289,20,81,28,0.0 +20289,42,14,25,0.0 +20289,16,17.45,35,0.0 +20289,72,34.8,3,0.0 +20289,47,9.5,14,0.0 +20289,26,31.23,24,0.0 +20289,52,7,50,0.0 +20289,50,16.25,24,0.0 +20289,18,62.5,28,0.0 +20289,77,13,20,0.0 +20289,61,28.5,10,0.0 +20289,39,18,21,0.0 +20289,7,30,8,0.0 +20289,23,9,35,0.0 +20289,5,21.35,19,0.0 +20289,21,10,42,0.0 +20289,19,9.2,41,0.0 +20289,62,49.3,22,0.0 +20289,4,22,16,0.0 +20289,1,18,31,0.0 +20289,46,12,16,0.0 +20289,12,38,5,0.0 +20289,15,15.5,21,0.0 +20289,28,45.6,23,0.0 +20289,32,32,47,0.0 +20289,66,17,46,0.0 +20289,33,2.5,30,0.0 +20289,57,19.5,3,0.0 +20289,65,21.05,19,0.0 +20289,10,31,36,0.0 +20289,53,32.8,33,0.0 +20289,17,39,12,0.0 +20289,69,36,20,0.0 +20289,43,46,26,0.0 +20289,49,20,6,0.0 +20289,40,18.4,46,0.0 +20289,24,4.5,15,0.0 +20289,14,23.25,24,0.0 +20289,37,26,13,0.0 +20289,75,7.75,35,0.0 +20289,13,6,6,0.0 +20289,45,9.5,34,0.0 +20289,34,14,24,0.0 +20289,73,15,17,0.0 +20289,6,25,32,0.0 +20289,54,7.45,45,0.0 +20289,44,19.45,22,0.0 +20289,22,21,48,0.0 +20289,48,12.75,47,0.0 +20289,64,33.25,37,0.0 +20289,11,21,45,0.0 +20289,51,53,43,0.0 +20289,35,18,13,0.0 +20289,74,10,34,0.0 +20289,60,34,34,0.0 +20289,67,14,14,0.0 +20289,76,18,19,0.0 +20289,41,9.65,29,0.0 +20289,38,263.5,8,0.0 +20289,58,13.25,15,0.0 +20289,71,21.5,47,0.0 +20289,36,19,4,0.0 +20289,63,43.9,1,0.0 +20289,68,12.5,6,0.0 +20289,8,40,3,0.0 +20289,27,43.9,25,0.0 +20289,29,123.79,8,0.0 +20289,3,10,13,0.0 +20289,70,15,15,0.0 +20289,59,55,50,0.0 +20289,2,19,8,0.0 +20290,33,2.5,50,0.0 +20290,37,26,38,0.0 +20290,51,53,31,0.0 +20290,31,12.5,44,0.0 +20290,70,15,41,0.0 +20290,20,81,45,0.0 +20290,41,9.65,30,0.0 +20290,28,45.6,37,0.0 +20290,25,14,18,0.0 +20290,45,9.5,35,0.0 +20290,15,15.5,31,0.0 +20290,23,9,37,0.0 +20290,8,40,3,0.0 +20290,61,28.5,16,0.0 +20290,58,13.25,12,0.0 +20290,49,20,14,0.0 +20290,65,21.05,22,0.0 +20290,24,4.5,46,0.0 +20290,38,263.5,24,0.0 +20290,34,14,5,0.0 +20290,6,25,22,0.0 +20290,5,21.35,48,0.0 +20290,59,55,41,0.0 +20290,7,30,45,0.0 +20290,30,25.89,23,0.0 +20290,50,16.25,18,0.0 +20290,2,19,12,0.0 +20290,53,32.8,45,0.0 +20290,63,43.9,32,0.0 +20290,77,13,19,0.0 +20290,44,19.45,19,0.0 +20290,19,9.2,13,0.0 +20290,9,97,8,0.0 +20290,3,10,49,0.0 +20290,35,18,21,0.0 +20290,68,12.5,34,0.0 +20290,52,7,31,0.0 +20290,60,34,40,0.0 +20290,56,38,49,0.0 +20290,12,38,32,0.0 +20290,22,21,31,0.0 +20290,47,9.5,44,0.0 +20290,27,43.9,12,0.0 +20290,26,31.23,28,0.0 +20290,32,32,36,0.0 +20290,18,62.5,20,0.0 +20290,76,18,25,0.0 +20290,57,19.5,31,0.0 +20290,36,19,42,0.0 +20290,43,46,50,0.0 +20290,69,36,10,0.0 +20290,11,21,37,0.0 +20290,1,18,7,0.0 +20290,67,14,44,0.0 +20290,4,22,43,0.0 +20290,42,14,26,0.0 +20290,21,10,12,0.0 +20290,74,10,26,0.0 +20290,48,12.75,49,0.0 +20290,10,31,37,0.0 +20290,54,7.45,16,0.0 +20290,62,49.3,13,0.0 +20290,16,17.45,33,0.0 +20290,71,21.5,32,0.0 +20290,13,6,8,0.0 +20291,22,21,46,0.0 +20291,57,19.5,18,0.0 +20291,53,32.8,44,0.0 +20291,72,34.8,18,0.0 +20291,43,46,21,0.0 +20291,7,30,3,0.0 +20291,13,6,30,0.0 +20291,51,53,6,0.0 +20291,23,9,4,0.0 +20291,66,17,47,0.0 +20291,25,14,20,0.0 +20292,10,31,22,0.0 +20292,7,30,31,0.0 +20292,54,7.45,22,0.0 +20292,32,32,44,0.0 +20292,5,21.35,40,0.0 +20292,19,9.2,18,0.0 +20292,46,12,40,0.0 +20292,12,38,19,0.0 +20292,56,38,32,0.0 +20292,1,18,38,0.0 +20292,2,19,4,0.0 +20292,31,12.5,27,0.0 +20292,25,14,19,0.0 +20292,39,18,16,0.0 +20292,64,33.25,15,0.0 +20292,76,18,32,0.0 +20292,51,53,20,0.0 +20292,29,123.79,50,0.0 +20292,67,14,16,0.0 +20292,9,97,7,0.0 +20292,55,24,12,0.0 +20292,74,10,11,0.0 +20292,69,36,17,0.0 +20292,41,9.65,23,0.0 +20292,71,21.5,45,0.0 +20292,13,6,20,0.0 +20292,58,13.25,19,0.0 +20292,66,17,47,0.0 +20292,18,62.5,45,0.0 +20292,57,19.5,46,0.0 +20292,11,21,38,0.0 +20292,48,12.75,16,0.0 +20292,42,14,12,0.0 +20292,50,16.25,19,0.0 +20292,59,55,26,0.0 +20292,8,40,19,0.0 +20292,65,21.05,29,0.0 +20292,68,12.5,18,0.0 +20292,45,9.5,31,0.0 +20292,43,46,19,0.0 +20292,61,28.5,35,0.0 +20292,53,32.8,20,0.0 +20292,27,43.9,38,0.0 +20292,49,20,10,0.0 +20292,47,9.5,46,0.0 +20292,38,263.5,8,0.0 +20292,21,10,22,0.0 +20292,22,21,9,0.0 +20292,17,39,1,0.0 +20292,23,9,28,0.0 +20292,40,18.4,32,0.0 +20292,15,15.5,10,0.0 +20292,16,17.45,3,0.0 +20292,44,19.45,21,0.0 +20292,52,7,18,0.0 +20292,33,2.5,11,0.0 +20292,30,25.89,41,0.0 +20292,3,10,26,0.0 +20292,26,31.23,50,0.0 +20292,70,15,32,0.0 +20292,62,49.3,7,0.0 +20293,34,14,1,0.0 +20293,72,34.8,43,0.0 +20293,39,18,36,0.0 +20293,43,46,23,0.0 +20293,1,18,38,0.0 +20293,51,53,20,0.0 +20293,7,30,4,0.0 +20293,56,38,17,0.0 +20293,17,39,10,0.0 +20293,13,6,37,0.0 +20293,74,10,38,0.0 +20293,2,19,13,0.0 +20293,9,97,22,0.0 +20293,55,24,23,0.0 +20293,77,13,2,0.0 +20293,63,43.9,14,0.0 +20293,59,55,46,0.0 +20293,38,263.5,27,0.0 +20293,22,21,45,0.0 +20293,18,62.5,2,0.0 +20293,67,14,48,0.0 +20293,40,18.4,5,0.0 +20293,8,40,11,0.0 +20293,33,2.5,14,0.0 +20293,4,22,8,0.0 +20293,11,21,36,0.0 +20293,70,15,25,0.0 +20293,29,123.79,17,0.0 +20293,27,43.9,13,0.0 +20293,23,9,28,0.0 +20293,48,12.75,20,0.0 +20293,26,31.23,10,0.0 +20293,46,12,38,0.0 +20293,14,23.25,34,0.0 +20293,5,21.35,40,0.0 +20293,50,16.25,36,0.0 +20293,35,18,15,0.0 +20293,68,12.5,37,0.0 +20293,45,9.5,10,0.0 +20293,10,31,29,0.0 +20293,36,19,47,0.0 +20293,42,14,26,0.0 +20293,76,18,38,0.0 +20293,25,14,10,0.0 +20293,66,17,25,0.0 +20293,41,9.65,19,0.0 +20293,65,21.05,23,0.0 +20293,58,13.25,33,0.0 +20293,15,15.5,17,0.0 +20293,53,32.8,9,0.0 +20293,47,9.5,16,0.0 +20293,12,38,5,0.0 +20293,62,49.3,9,0.0 +20293,16,17.45,17,0.0 +20293,60,34,11,0.0 +20293,57,19.5,7,0.0 +20293,44,19.45,42,0.0 +20293,19,9.2,44,0.0 +20293,21,10,40,0.0 +20293,54,7.45,14,0.0 +20293,30,25.89,10,0.0 +20293,6,25,30,0.0 +20293,32,32,26,0.0 +20293,24,4.5,49,0.0 +20294,36,19,11,0.0 +20294,15,15.5,19,0.0 +20294,69,36,17,0.0 +20294,43,46,43,0.0 +20294,30,25.89,47,0.0 +20294,63,43.9,37,0.0 +20294,5,21.35,4,0.0 +20294,28,45.6,17,0.0 +20294,44,19.45,24,0.0 +20294,52,7,37,0.0 +20294,22,21,12,0.0 +20294,58,13.25,34,0.0 +20294,64,33.25,38,0.0 +20294,20,81,34,0.0 +20294,16,17.45,27,0.0 +20294,1,18,15,0.0 +20294,38,263.5,14,0.0 +20294,12,38,28,0.0 +20294,39,18,27,0.0 +20294,40,18.4,23,0.0 +20294,55,24,15,0.0 +20294,18,62.5,22,0.0 +20294,29,123.79,13,0.0 +20294,62,49.3,26,0.0 +20294,75,7.75,35,0.0 +20294,76,18,24,0.0 +20294,32,32,42,0.0 +20294,71,21.5,6,0.0 +20294,21,10,4,0.0 +20294,34,14,19,0.0 +20294,73,15,36,0.0 +20294,25,14,25,0.0 +20294,23,9,24,0.0 +20294,35,18,43,0.0 +20294,70,15,19,0.0 +20294,41,9.65,31,0.0 +20294,19,9.2,44,0.0 +20294,10,31,1,0.0 +20294,14,23.25,23,0.0 +20294,8,40,17,0.0 +20294,9,97,23,0.0 +20294,27,43.9,44,0.0 +20294,72,34.8,42,0.0 +20294,53,32.8,42,0.0 +20294,3,10,30,0.0 +20294,11,21,1,0.0 +20294,33,2.5,43,0.0 +20294,17,39,30,0.0 +20294,60,34,43,0.0 +20294,24,4.5,42,0.0 +20294,13,6,8,0.0 +20294,26,31.23,6,0.0 +20294,65,21.05,2,0.0 +20294,46,12,18,0.0 +20294,47,9.5,17,0.0 +20294,66,17,8,0.0 +20294,67,14,11,0.0 +20294,7,30,3,0.0 +20294,45,9.5,20,0.0 +20294,51,53,5,0.0 +20294,37,26,25,0.0 +20294,6,25,45,0.0 +20295,37,26,41,0.0 +20295,57,19.5,25,0.0 +20295,10,31,35,0.0 +20295,21,10,37,0.0 +20295,43,46,5,0.0 +20295,44,19.45,12,0.0 +20295,77,13,26,0.0 +20295,52,7,9,0.0 +20295,23,9,10,0.0 +20295,61,28.5,33,0.0 +20295,75,7.75,7,0.0 +20295,74,10,36,0.0 +20295,50,16.25,30,0.0 +20295,49,20,44,0.0 +20296,37,26,40,0.0 +20296,54,7.45,40,0.0 +20296,18,62.5,13,0.0 +20296,28,45.6,5,0.0 +20296,68,12.5,50,0.0 +20296,63,43.9,8,0.0 +20296,43,46,11,0.0 +20296,53,32.8,5,0.0 +20296,49,20,6,0.0 +20296,60,34,18,0.0 +20296,15,15.5,17,0.0 +20296,33,2.5,5,0.0 +20296,25,14,13,0.0 +20296,14,23.25,39,0.0 +20296,7,30,22,0.0 +20296,8,40,39,0.0 +20296,2,19,28,0.0 +20296,56,38,47,0.0 +20296,20,81,34,0.0 +20296,71,21.5,12,0.0 +20296,22,21,44,0.0 +20296,4,22,3,0.0 +20296,12,38,26,0.0 +20296,77,13,16,0.0 +20296,29,123.79,38,0.0 +20296,27,43.9,14,0.0 +20296,9,97,43,0.0 +20296,51,53,14,0.0 +20296,11,21,16,0.0 +20296,47,9.5,22,0.0 +20296,48,12.75,9,0.0 +20296,36,19,19,0.0 +20296,70,15,26,0.0 +20296,3,10,2,0.0 +20296,46,12,28,0.0 +20296,41,9.65,47,0.0 +20296,59,55,19,0.0 +20296,73,15,31,0.0 +20296,21,10,21,0.0 +20296,50,16.25,45,0.0 +20296,64,33.25,5,0.0 +20296,35,18,20,0.0 +20296,23,9,20,0.0 +20296,65,21.05,9,0.0 +20296,38,263.5,21,0.0 +20296,16,17.45,30,0.0 +20296,13,6,18,0.0 +20296,26,31.23,32,0.0 +20296,42,14,5,0.0 +20297,44,19.45,8,0.0 +20297,60,34,49,0.0 +20297,29,123.79,23,0.0 +20297,25,14,8,0.0 +20297,49,20,26,0.0 +20297,23,9,25,0.0 +20297,16,17.45,2,0.0 +20297,64,33.25,23,0.0 +20297,2,19,17,0.0 +20297,10,31,20,0.0 +20297,71,21.5,31,0.0 +20297,65,21.05,24,0.0 +20297,70,15,9,0.0 +20297,72,34.8,22,0.0 +20297,46,12,20,0.0 +20298,45,9.5,49,0.0 +20298,64,33.25,46,0.0 +20298,53,32.8,47,0.0 +20298,9,97,32,0.0 +20298,2,19,34,0.0 +20298,44,19.45,5,0.0 +20298,62,49.3,47,0.0 +20298,63,43.9,17,0.0 +20298,46,12,26,0.0 +20298,54,7.45,31,0.0 +20298,8,40,47,0.0 +20298,69,36,43,0.0 +20298,31,12.5,6,0.0 +20298,11,21,43,0.0 +20298,71,21.5,31,0.0 +20298,52,7,26,0.0 +20298,61,28.5,26,0.0 +20298,42,14,13,0.0 +20298,38,263.5,16,0.0 +20298,18,62.5,3,0.0 +20298,32,32,3,0.0 +20298,5,21.35,19,0.0 +20298,55,24,7,0.0 +20298,66,17,20,0.0 +20298,16,17.45,45,0.0 +20298,33,2.5,9,0.0 +20298,43,46,6,0.0 +20298,49,20,5,0.0 +20298,27,43.9,25,0.0 +20298,15,15.5,21,0.0 +20298,72,34.8,35,0.0 +20298,13,6,10,0.0 +20298,58,13.25,16,0.0 +20298,40,18.4,45,0.0 +20298,77,13,17,0.0 +20298,48,12.75,35,0.0 +20298,23,9,40,0.0 +20298,73,15,9,0.0 +20298,51,53,1,0.0 +20299,14,23.25,1,0.0 +20299,57,19.5,31,0.0 +20299,52,7,45,0.0 +20299,69,36,26,0.0 +20299,28,45.6,23,0.0 +20299,26,31.23,7,0.0 +20299,13,6,35,0.0 +20299,21,10,48,0.0 +20299,5,21.35,43,0.0 +20299,12,38,17,0.0 +20299,23,9,36,0.0 +20299,22,21,14,0.0 +20299,64,33.25,4,0.0 +20299,44,19.45,6,0.0 +20299,68,12.5,23,0.0 +20299,76,18,46,0.0 +20299,3,10,4,0.0 +20299,39,18,21,0.0 +20299,65,21.05,4,0.0 +20299,17,39,11,0.0 +20299,38,263.5,37,0.0 +20299,19,9.2,31,0.0 +20299,43,46,6,0.0 +20299,59,55,4,0.0 +20299,46,12,7,0.0 +20299,29,123.79,43,0.0 +20299,60,34,3,0.0 +20299,58,13.25,28,0.0 +20299,66,17,44,0.0 +20299,16,17.45,19,0.0 +20299,74,10,50,0.0 +20299,70,15,15,0.0 +20299,27,43.9,46,0.0 +20299,53,32.8,45,0.0 +20299,72,34.8,21,0.0 +20299,24,4.5,8,0.0 +20299,75,7.75,14,0.0 +20299,34,14,13,0.0 +20299,30,25.89,4,0.0 +20299,20,81,6,0.0 +20299,35,18,47,0.0 +20299,1,18,18,0.0 +20299,18,62.5,45,0.0 +20299,10,31,30,0.0 +20299,63,43.9,30,0.0 +20299,9,97,29,0.0 +20299,77,13,35,0.0 +20299,31,12.5,34,0.0 +20299,8,40,10,0.0 +20299,32,32,3,0.0 +20299,7,30,29,0.0 +20299,54,7.45,13,0.0 +20300,11,21,32,0.0 +20300,75,7.75,32,0.0 +20300,24,4.5,19,0.0 +20300,51,53,50,0.0 +20300,76,18,29,0.0 +20300,41,9.65,21,0.0 +20300,42,14,15,0.0 +20300,33,2.5,35,0.0 +20300,38,263.5,44,0.0 +20300,1,18,6,0.0 +20300,73,15,24,0.0 +20300,47,9.5,5,0.0 +20300,21,10,10,0.0 +20300,4,22,19,0.0 +20300,25,14,46,0.0 +20300,18,62.5,31,0.0 +20300,43,46,42,0.0 +20300,26,31.23,15,0.0 +20300,39,18,6,0.0 +20300,60,34,25,0.0 +20300,6,25,26,0.0 +20300,5,21.35,26,0.0 +20300,65,21.05,34,0.0 +20300,59,55,30,0.0 +20300,77,13,37,0.0 +20300,54,7.45,20,0.0 +20300,66,17,46,0.0 +20300,14,23.25,2,0.0 +20300,10,31,40,0.0 +20300,67,14,44,0.0 +20300,48,12.75,28,0.0 +20300,56,38,26,0.0 +20300,2,19,25,0.0 +20300,62,49.3,15,0.0 +20300,22,21,30,0.0 +20300,68,12.5,50,0.0 +20300,45,9.5,1,0.0 +20300,63,43.9,47,0.0 +20300,23,9,26,0.0 +20300,3,10,16,0.0 +20300,69,36,6,0.0 +20300,52,7,49,0.0 +20300,29,123.79,23,0.0 +20300,72,34.8,20,0.0 +20300,7,30,33,0.0 +20300,13,6,37,0.0 +20300,44,19.45,10,0.0 +20300,37,26,10,0.0 +20300,74,10,11,0.0 +20300,40,18.4,30,0.0 +20300,12,38,38,0.0 +20300,17,39,47,0.0 +20300,20,81,23,0.0 +20301,56,38,49,0.0 +20301,40,18.4,27,0.0 +20301,42,14,21,0.0 +20301,6,25,9,0.0 +20301,29,123.79,14,0.0 +20301,64,33.25,5,0.0 +20301,5,21.35,1,0.0 +20301,41,9.65,12,0.0 +20301,30,25.89,3,0.0 +20301,46,12,20,0.0 +20301,47,9.5,29,0.0 +20301,14,23.25,27,0.0 +20301,31,12.5,47,0.0 +20301,68,12.5,22,0.0 +20301,9,97,46,0.0 +20301,21,10,27,0.0 +20301,58,13.25,6,0.0 +20301,3,10,38,0.0 +20301,76,18,5,0.0 +20301,1,18,2,0.0 +20301,59,55,2,0.0 +20301,52,7,10,0.0 +20301,51,53,42,0.0 +20301,4,22,21,0.0 +20301,69,36,1,0.0 +20301,17,39,47,0.0 +20301,48,12.75,48,0.0 +20301,24,4.5,26,0.0 +20301,70,15,32,0.0 +20301,57,19.5,7,0.0 +20301,66,17,3,0.0 +20301,67,14,31,0.0 +20301,16,17.45,35,0.0 +20301,23,9,15,0.0 +20301,27,43.9,49,0.0 +20301,13,6,10,0.0 +20301,61,28.5,46,0.0 +20301,71,21.5,5,0.0 +20301,60,34,9,0.0 +20301,49,20,5,0.0 +20301,7,30,4,0.0 +20301,12,38,14,0.0 +20301,37,26,3,0.0 +20301,43,46,44,0.0 +20301,11,21,26,0.0 +20301,62,49.3,17,0.0 +20301,28,45.6,41,0.0 +20301,8,40,38,0.0 +20301,54,7.45,18,0.0 +20301,25,14,39,0.0 +20301,2,19,2,0.0 +20301,39,18,18,0.0 +20301,55,24,36,0.0 +20301,26,31.23,4,0.0 +20301,50,16.25,48,0.0 +20301,35,18,10,0.0 +20301,73,15,31,0.0 +20301,63,43.9,16,0.0 +20301,44,19.45,27,0.0 +20302,77,13,12,0.0 +20302,19,9.2,21,0.0 +20302,50,16.25,22,0.0 +20302,4,22,11,0.0 +20302,21,10,46,0.0 +20302,66,17,12,0.0 +20302,5,21.35,49,0.0 +20302,56,38,26,0.0 +20302,42,14,23,0.0 +20302,47,9.5,45,0.0 +20302,25,14,44,0.0 +20302,31,12.5,13,0.0 +20302,61,28.5,32,0.0 +20302,63,43.9,15,0.0 +20302,23,9,44,0.0 +20302,29,123.79,10,0.0 +20302,7,30,25,0.0 +20302,22,21,47,0.0 +20302,58,13.25,41,0.0 +20302,39,18,41,0.0 +20302,32,32,29,0.0 +20302,1,18,23,0.0 +20302,70,15,47,0.0 +20302,20,81,28,0.0 +20302,52,7,44,0.0 +20302,37,26,7,0.0 +20302,24,4.5,48,0.0 +20302,69,36,31,0.0 +20302,34,14,1,0.0 +20302,67,14,29,0.0 +20302,71,21.5,48,0.0 +20302,59,55,25,0.0 +20302,30,25.89,35,0.0 +20302,26,31.23,16,0.0 +20302,6,25,21,0.0 +20302,18,62.5,24,0.0 +20302,36,19,25,0.0 +20302,64,33.25,9,0.0 +20302,27,43.9,17,0.0 +20302,28,45.6,46,0.0 +20302,43,46,50,0.0 +20302,53,32.8,37,0.0 +20302,48,12.75,19,0.0 +20302,60,34,25,0.0 +20302,13,6,29,0.0 +20302,62,49.3,4,0.0 +20302,16,17.45,12,0.0 +20302,72,34.8,22,0.0 +20302,10,31,7,0.0 +20303,36,19,37,0.0 +20304,28,45.6,28,0.0 +20304,66,17,32,0.0 +20304,57,19.5,3,0.0 +20304,37,26,45,0.0 +20304,33,2.5,43,0.0 +20304,58,13.25,50,0.0 +20304,52,7,13,0.0 +20304,47,9.5,33,0.0 +20304,39,18,44,0.0 +20304,22,21,47,0.0 +20304,32,32,9,0.0 +20304,50,16.25,41,0.0 +20304,59,55,21,0.0 +20304,7,30,13,0.0 +20304,44,19.45,21,0.0 +20304,71,21.5,41,0.0 +20304,40,18.4,46,0.0 +20304,18,62.5,23,0.0 +20304,23,9,6,0.0 +20304,11,21,3,0.0 +20304,6,25,36,0.0 +20304,9,97,16,0.0 +20304,4,22,6,0.0 +20304,20,81,36,0.0 +20304,60,34,17,0.0 +20304,5,21.35,42,0.0 +20304,24,4.5,49,0.0 +20304,55,24,3,0.0 +20304,76,18,24,0.0 +20304,38,263.5,16,0.0 +20304,69,36,39,0.0 +20304,8,40,42,0.0 +20304,3,10,38,0.0 +20304,26,31.23,23,0.0 +20304,54,7.45,41,0.0 +20304,15,15.5,36,0.0 +20304,61,28.5,23,0.0 +20305,24,4.5,32,0.0 +20305,18,62.5,22,0.0 +20305,8,40,14,0.0 +20305,76,18,36,0.0 +20305,65,21.05,31,0.0 +20305,67,14,39,0.0 +20305,48,12.75,23,0.0 +20305,73,15,41,0.0 +20305,16,17.45,43,0.0 +20305,62,49.3,9,0.0 +20305,74,10,35,0.0 +20305,4,22,21,0.0 +20305,63,43.9,14,0.0 +20305,12,38,43,0.0 +20305,32,32,22,0.0 +20305,55,24,2,0.0 +20305,46,12,16,0.0 +20305,6,25,3,0.0 +20305,57,19.5,40,0.0 +20305,52,7,10,0.0 +20305,39,18,1,0.0 +20305,25,14,30,0.0 +20305,77,13,4,0.0 +20305,38,263.5,45,0.0 +20305,10,31,23,0.0 +20305,71,21.5,36,0.0 +20305,56,38,42,0.0 +20305,70,15,29,0.0 +20305,75,7.75,24,0.0 +20305,28,45.6,46,0.0 +20305,23,9,23,0.0 +20305,9,97,42,0.0 +20305,3,10,20,0.0 +20305,26,31.23,7,0.0 +20305,53,32.8,37,0.0 +20305,34,14,29,0.0 +20305,7,30,32,0.0 +20305,50,16.25,25,0.0 +20305,35,18,4,0.0 +20305,29,123.79,2,0.0 +20305,1,18,26,0.0 +20305,69,36,23,0.0 +20305,5,21.35,44,0.0 +20305,22,21,3,0.0 +20305,61,28.5,18,0.0 +20305,49,20,22,0.0 +20305,59,55,41,0.0 +20305,36,19,45,0.0 +20306,75,7.75,45,0.0 +20306,3,10,39,0.0 +20306,52,7,27,0.0 +20306,63,43.9,15,0.0 +20306,10,31,4,0.0 +20306,38,263.5,5,0.0 +20306,44,19.45,47,0.0 +20306,36,19,43,0.0 +20306,70,15,43,0.0 +20306,20,81,10,0.0 +20306,26,31.23,23,0.0 +20306,43,46,2,0.0 +20306,60,34,12,0.0 +20306,61,28.5,24,0.0 +20307,31,12.5,40,0.0 +20307,13,6,43,0.0 +20307,26,31.23,31,0.0 +20307,34,14,22,0.0 +20307,5,21.35,33,0.0 +20307,48,12.75,15,0.0 +20307,14,23.25,40,0.0 +20307,20,81,24,0.0 +20307,77,13,39,0.0 +20307,10,31,1,0.0 +20307,41,9.65,38,0.0 +20307,12,38,14,0.0 +20307,57,19.5,27,0.0 +20307,63,43.9,49,0.0 +20307,40,18.4,42,0.0 +20307,69,36,41,0.0 +20307,36,19,33,0.0 +20307,2,19,44,0.0 +20307,32,32,11,0.0 +20307,29,123.79,21,0.0 +20307,75,7.75,20,0.0 +20307,23,9,44,0.0 +20307,38,263.5,26,0.0 +20307,18,62.5,31,0.0 +20307,44,19.45,39,0.0 +20307,72,34.8,50,0.0 +20307,46,12,39,0.0 +20307,65,21.05,34,0.0 +20307,49,20,3,0.0 +20307,43,46,35,0.0 +20307,67,14,9,0.0 +20307,35,18,2,0.0 +20307,50,16.25,11,0.0 +20307,11,21,34,0.0 +20307,56,38,18,0.0 +20307,1,18,6,0.0 +20307,42,14,3,0.0 +20307,19,9.2,29,0.0 +20307,28,45.6,35,0.0 +20307,76,18,5,0.0 +20307,51,53,24,0.0 +20307,7,30,46,0.0 +20307,60,34,26,0.0 +20307,22,21,32,0.0 +20307,62,49.3,22,0.0 +20307,39,18,16,0.0 +20307,68,12.5,17,0.0 +20307,8,40,21,0.0 +20307,33,2.5,23,0.0 +20307,58,13.25,25,0.0 +20307,64,33.25,2,0.0 +20307,59,55,46,0.0 +20307,27,43.9,42,0.0 +20307,66,17,38,0.0 +20307,37,26,24,0.0 +20307,53,32.8,21,0.0 +20307,15,15.5,41,0.0 +20307,17,39,7,0.0 +20307,52,7,6,0.0 +20307,45,9.5,38,0.0 +20307,70,15,32,0.0 +20307,61,28.5,1,0.0 +20307,24,4.5,11,0.0 +20307,9,97,43,0.0 +20307,30,25.89,23,0.0 +20307,3,10,6,0.0 +20307,71,21.5,45,0.0 +20307,6,25,17,0.0 +20308,47,9.5,34,0.0 +20308,22,21,44,0.0 +20308,13,6,17,0.0 +20308,73,15,18,0.0 +20308,24,4.5,27,0.0 +20308,50,16.25,39,0.0 +20308,54,7.45,11,0.0 +20308,29,123.79,23,0.0 +20308,48,12.75,16,0.0 +20308,17,39,4,0.0 +20308,63,43.9,36,0.0 +20308,37,26,45,0.0 +20308,36,19,27,0.0 +20308,31,12.5,5,0.0 +20308,71,21.5,23,0.0 +20308,8,40,25,0.0 +20308,66,17,35,0.0 +20308,49,20,23,0.0 +20308,6,25,2,0.0 +20309,15,15.5,39,0.0 +20309,40,18.4,5,0.0 +20309,76,18,3,0.0 +20309,70,15,26,0.0 +20309,77,13,3,0.0 +20309,64,33.25,17,0.0 +20309,26,31.23,27,0.0 +20309,58,13.25,2,0.0 +20309,62,49.3,46,0.0 +20309,24,4.5,27,0.0 +20309,65,21.05,46,0.0 +20309,19,9.2,48,0.0 +20309,2,19,12,0.0 +20309,69,36,24,0.0 +20309,53,32.8,31,0.0 +20309,31,12.5,6,0.0 +20309,4,22,10,0.0 +20310,47,9.5,26,0.0 +20310,9,97,42,0.0 +20310,4,22,6,0.0 +20310,39,18,43,0.0 +20310,27,43.9,29,0.0 +20310,74,10,26,0.0 +20310,48,12.75,45,0.0 +20310,21,10,22,0.0 +20310,56,38,50,0.0 +20310,26,31.23,39,0.0 +20310,1,18,32,0.0 +20310,51,53,49,0.0 +20310,29,123.79,19,0.0 +20310,23,9,37,0.0 +20310,68,12.5,10,0.0 +20310,10,31,32,0.0 +20310,7,30,17,0.0 +20310,16,17.45,11,0.0 +20310,43,46,15,0.0 +20310,72,34.8,35,0.0 +20310,61,28.5,16,0.0 +20310,42,14,6,0.0 +20310,77,13,39,0.0 +20310,3,10,17,0.0 +20310,2,19,12,0.0 +20310,19,9.2,3,0.0 +20310,17,39,29,0.0 +20310,38,263.5,44,0.0 +20310,28,45.6,40,0.0 +20310,69,36,7,0.0 +20310,25,14,47,0.0 +20310,34,14,16,0.0 +20310,22,21,23,0.0 +20310,6,25,10,0.0 +20310,66,17,48,0.0 +20310,76,18,36,0.0 +20310,11,21,23,0.0 +20310,20,81,1,0.0 +20310,18,62.5,34,0.0 +20310,37,26,40,0.0 +20310,60,34,20,0.0 +20310,45,9.5,39,0.0 +20310,40,18.4,30,0.0 +20310,5,21.35,22,0.0 +20310,52,7,17,0.0 +20310,36,19,50,0.0 +20310,58,13.25,14,0.0 +20310,55,24,22,0.0 +20310,30,25.89,1,0.0 +20310,33,2.5,14,0.0 +20310,14,23.25,46,0.0 +20310,64,33.25,7,0.0 +20310,44,19.45,46,0.0 +20310,70,15,15,0.0 +20310,54,7.45,30,0.0 +20311,32,32,37,0.0 +20311,36,19,2,0.0 +20311,64,33.25,41,0.0 +20311,34,14,4,0.0 +20311,43,46,46,0.0 +20311,48,12.75,23,0.0 +20311,16,17.45,41,0.0 +20311,62,49.3,41,0.0 +20311,69,36,32,0.0 +20311,68,12.5,27,0.0 +20311,6,25,3,0.0 +20311,71,21.5,43,0.0 +20311,54,7.45,28,0.0 +20311,29,123.79,38,0.0 +20311,24,4.5,17,0.0 +20311,56,38,34,0.0 +20311,59,55,1,0.0 +20311,1,18,9,0.0 +20311,51,53,50,0.0 +20311,57,19.5,32,0.0 +20311,28,45.6,33,0.0 +20311,52,7,19,0.0 +20311,39,18,2,0.0 +20311,38,263.5,31,0.0 +20311,26,31.23,11,0.0 +20311,21,10,31,0.0 +20311,4,22,35,0.0 +20311,77,13,20,0.0 +20311,10,31,17,0.0 +20311,35,18,25,0.0 +20311,50,16.25,49,0.0 +20311,65,21.05,16,0.0 +20311,5,21.35,31,0.0 +20311,72,34.8,21,0.0 +20311,3,10,14,0.0 +20311,45,9.5,6,0.0 +20311,8,40,50,0.0 +20311,49,20,13,0.0 +20311,33,2.5,13,0.0 +20311,58,13.25,8,0.0 +20311,11,21,19,0.0 +20311,53,32.8,21,0.0 +20311,22,21,41,0.0 +20311,7,30,29,0.0 +20311,30,25.89,49,0.0 +20311,70,15,32,0.0 +20311,20,81,40,0.0 +20311,67,14,6,0.0 +20311,27,43.9,28,0.0 +20311,23,9,27,0.0 +20311,60,34,45,0.0 +20311,75,7.75,27,0.0 +20311,76,18,19,0.0 +20311,47,9.5,6,0.0 +20312,23,9,12,0.0 +20312,54,7.45,2,0.0 +20312,55,24,43,0.0 +20312,17,39,25,0.0 +20312,69,36,40,0.0 +20312,62,49.3,19,0.0 +20312,63,43.9,35,0.0 +20312,3,10,18,0.0 +20312,57,19.5,34,0.0 +20312,42,14,49,0.0 +20312,5,21.35,13,0.0 +20312,58,13.25,23,0.0 +20312,72,34.8,23,0.0 +20312,18,62.5,23,0.0 +20312,64,33.25,8,0.0 +20312,27,43.9,31,0.0 +20312,7,30,4,0.0 +20312,59,55,21,0.0 +20312,43,46,37,0.0 +20312,34,14,44,0.0 +20312,40,18.4,36,0.0 +20312,6,25,29,0.0 +20312,22,21,45,0.0 +20312,75,7.75,18,0.0 +20312,25,14,20,0.0 +20312,74,10,28,0.0 +20312,30,25.89,5,0.0 +20312,39,18,38,0.0 +20312,65,21.05,44,0.0 +20312,19,9.2,6,0.0 +20312,53,32.8,12,0.0 +20312,36,19,12,0.0 +20312,76,18,5,0.0 +20312,49,20,41,0.0 +20312,31,12.5,50,0.0 +20312,46,12,21,0.0 +20312,37,26,22,0.0 +20312,48,12.75,15,0.0 +20312,21,10,29,0.0 +20312,4,22,11,0.0 +20312,45,9.5,32,0.0 +20312,60,34,18,0.0 +20312,51,53,6,0.0 +20312,11,21,28,0.0 +20312,71,21.5,4,0.0 +20312,50,16.25,24,0.0 +20312,33,2.5,7,0.0 +20312,10,31,5,0.0 +20312,38,263.5,3,0.0 +20312,44,19.45,14,0.0 +20312,15,15.5,8,0.0 +20312,70,15,15,0.0 +20312,14,23.25,48,0.0 +20312,26,31.23,48,0.0 +20312,9,97,43,0.0 +20312,52,7,9,0.0 +20312,67,14,27,0.0 +20312,8,40,41,0.0 +20312,32,32,32,0.0 +20312,29,123.79,13,0.0 +20312,73,15,20,0.0 +20312,16,17.45,1,0.0 +20312,68,12.5,23,0.0 +20312,35,18,3,0.0 +20312,61,28.5,9,0.0 +20312,20,81,10,0.0 +20312,12,38,13,0.0 +20312,41,9.65,25,0.0 +20312,47,9.5,26,0.0 +20312,28,45.6,8,0.0 +20313,23,9,35,0.0 +20313,46,12,8,0.0 +20313,19,9.2,3,0.0 +20313,1,18,4,0.0 +20313,2,19,36,0.0 +20313,24,4.5,16,0.0 +20313,39,18,29,0.0 +20313,5,21.35,49,0.0 +20313,30,25.89,18,0.0 +20313,72,34.8,36,0.0 +20313,63,43.9,13,0.0 +20313,45,9.5,4,0.0 +20313,74,10,37,0.0 +20313,26,31.23,16,0.0 +20313,17,39,5,0.0 +20313,33,2.5,19,0.0 +20313,56,38,1,0.0 +20313,41,9.65,44,0.0 +20313,44,19.45,24,0.0 +20313,13,6,50,0.0 +20313,20,81,10,0.0 +20313,4,22,28,0.0 +20313,43,46,49,0.0 +20313,11,21,14,0.0 +20313,22,21,29,0.0 +20313,48,12.75,18,0.0 +20313,70,15,15,0.0 +20313,38,263.5,43,0.0 +20313,64,33.25,37,0.0 +20313,53,32.8,34,0.0 +20313,14,23.25,35,0.0 +20313,37,26,47,0.0 +20313,9,97,8,0.0 +20313,3,10,11,0.0 +20313,60,34,44,0.0 +20313,67,14,40,0.0 +20313,77,13,12,0.0 +20313,76,18,4,0.0 +20313,27,43.9,13,0.0 +20313,66,17,46,0.0 +20314,36,19,39,0.0 +20314,3,10,26,0.0 +20314,47,9.5,43,0.0 +20314,21,10,30,0.0 +20314,45,9.5,23,0.0 +20314,22,21,2,0.0 +20314,48,12.75,50,0.0 +20314,15,15.5,12,0.0 +20314,62,49.3,9,0.0 +20314,38,263.5,36,0.0 +20314,4,22,22,0.0 +20314,42,14,26,0.0 +20314,33,2.5,4,0.0 +20314,40,18.4,36,0.0 +20314,10,31,31,0.0 +20314,6,25,34,0.0 +20314,76,18,22,0.0 +20314,64,33.25,10,0.0 +20314,54,7.45,32,0.0 +20314,41,9.65,4,0.0 +20314,60,34,12,0.0 +20314,27,43.9,3,0.0 +20314,35,18,21,0.0 +20314,52,7,50,0.0 +20314,46,12,6,0.0 +20314,29,123.79,31,0.0 +20314,44,19.45,46,0.0 +20315,62,49.3,47,0.0 +20315,19,9.2,25,0.0 +20315,38,263.5,37,0.0 +20315,35,18,22,0.0 +20315,36,19,8,0.0 +20315,17,39,2,0.0 +20315,41,9.65,15,0.0 +20315,66,17,47,0.0 +20315,74,10,19,0.0 +20315,63,43.9,33,0.0 +20315,20,81,40,0.0 +20315,13,6,4,0.0 +20315,60,34,18,0.0 +20315,59,55,23,0.0 +20315,14,23.25,42,0.0 +20315,34,14,9,0.0 +20315,54,7.45,3,0.0 +20315,75,7.75,47,0.0 +20315,47,9.5,7,0.0 +20315,45,9.5,50,0.0 +20315,11,21,21,0.0 +20315,23,9,3,0.0 +20315,37,26,32,0.0 +20315,27,43.9,39,0.0 +20315,65,21.05,41,0.0 +20315,15,15.5,22,0.0 +20315,64,33.25,31,0.0 +20315,16,17.45,19,0.0 +20315,51,53,5,0.0 +20315,6,25,33,0.0 +20315,26,31.23,9,0.0 +20315,69,36,31,0.0 +20315,12,38,21,0.0 +20315,46,12,9,0.0 +20315,10,31,18,0.0 +20315,48,12.75,50,0.0 +20315,72,34.8,10,0.0 +20315,32,32,10,0.0 +20315,43,46,2,0.0 +20315,22,21,26,0.0 +20315,5,21.35,16,0.0 +20315,9,97,30,0.0 +20315,18,62.5,23,0.0 +20315,28,45.6,41,0.0 +20315,55,24,47,0.0 +20315,53,32.8,4,0.0 +20315,24,4.5,41,0.0 +20315,77,13,25,0.0 +20315,8,40,7,0.0 +20315,42,14,22,0.0 +20315,40,18.4,8,0.0 +20315,76,18,9,0.0 +20315,39,18,3,0.0 +20315,57,19.5,5,0.0 +20315,61,28.5,7,0.0 +20315,56,38,16,0.0 +20315,25,14,45,0.0 +20315,29,123.79,14,0.0 +20315,49,20,38,0.0 +20315,71,21.5,27,0.0 +20315,21,10,23,0.0 +20315,3,10,48,0.0 +20315,67,14,4,0.0 +20315,50,16.25,31,0.0 +20315,73,15,15,0.0 +20315,52,7,13,0.0 +20315,1,18,3,0.0 +20316,8,40,17,0.0 +20316,71,21.5,41,0.0 +20316,61,28.5,37,0.0 +20316,77,13,16,0.0 +20316,73,15,41,0.0 +20316,69,36,5,0.0 +20316,70,15,46,0.0 +20316,66,17,35,0.0 +20316,6,25,12,0.0 +20316,4,22,3,0.0 +20316,20,81,42,0.0 +20316,56,38,48,0.0 +20316,19,9.2,35,0.0 +20316,37,26,32,0.0 +20316,55,24,47,0.0 +20316,60,34,30,0.0 +20316,9,97,43,0.0 +20316,13,6,35,0.0 +20316,59,55,11,0.0 +20316,12,38,17,0.0 +20316,39,18,46,0.0 +20316,33,2.5,38,0.0 +20316,65,21.05,31,0.0 +20316,62,49.3,49,0.0 +20316,25,14,3,0.0 +20316,72,34.8,4,0.0 +20316,48,12.75,42,0.0 +20316,34,14,18,0.0 +20316,67,14,13,0.0 +20316,17,39,44,0.0 +20316,2,19,5,0.0 +20316,76,18,3,0.0 +20316,23,9,15,0.0 +20316,26,31.23,10,0.0 +20316,64,33.25,2,0.0 +20316,15,15.5,2,0.0 +20316,63,43.9,32,0.0 +20316,22,21,24,0.0 +20316,68,12.5,13,0.0 +20316,36,19,6,0.0 +20316,45,9.5,8,0.0 +20316,5,21.35,31,0.0 +20316,47,9.5,18,0.0 +20316,10,31,17,0.0 +20316,41,9.65,15,0.0 +20316,38,263.5,36,0.0 +20316,14,23.25,49,0.0 +20316,24,4.5,18,0.0 +20316,46,12,16,0.0 +20316,32,32,11,0.0 +20317,2,19,27,0.0 +20317,31,12.5,19,0.0 +20317,41,9.65,22,0.0 +20317,8,40,25,0.0 +20317,22,21,5,0.0 +20317,53,32.8,44,0.0 +20317,12,38,49,0.0 +20317,5,21.35,30,0.0 +20317,67,14,24,0.0 +20317,47,9.5,13,0.0 +20317,30,25.89,48,0.0 +20317,15,15.5,43,0.0 +20317,71,21.5,7,0.0 +20317,18,62.5,17,0.0 +20317,43,46,50,0.0 +20317,77,13,49,0.0 +20317,1,18,46,0.0 +20317,72,34.8,17,0.0 +20317,66,17,7,0.0 +20317,68,12.5,23,0.0 +20317,13,6,11,0.0 +20317,4,22,35,0.0 +20317,42,14,8,0.0 +20318,66,17,11,0.0 +20318,5,21.35,15,0.0 +20318,60,34,45,0.0 +20319,50,16.25,14,0.0 +20319,28,45.6,48,0.0 +20319,5,21.35,50,0.0 +20320,9,97,26,0.0 +20320,61,28.5,50,0.0 +20320,66,17,30,0.0 +20320,52,7,10,0.0 +20320,62,49.3,4,0.0 +20320,68,12.5,50,0.0 +20320,27,43.9,1,0.0 +20320,64,33.25,32,0.0 +20320,74,10,9,0.0 +20320,23,9,24,0.0 +20320,12,38,19,0.0 +20320,26,31.23,33,0.0 +20320,14,23.25,35,0.0 +20320,2,19,50,0.0 +20320,8,40,34,0.0 +20320,33,2.5,12,0.0 +20320,32,32,8,0.0 +20320,42,14,50,0.0 +20320,56,38,28,0.0 +20320,5,21.35,14,0.0 +20320,13,6,15,0.0 +20320,35,18,40,0.0 +20320,17,39,35,0.0 +20320,4,22,32,0.0 +20320,46,12,21,0.0 +20320,3,10,39,0.0 +20320,45,9.5,43,0.0 +20320,67,14,9,0.0 +20320,40,18.4,30,0.0 +20320,39,18,48,0.0 +20320,31,12.5,22,0.0 +20320,50,16.25,16,0.0 +20320,54,7.45,24,0.0 +20320,48,12.75,17,0.0 +20320,75,7.75,8,0.0 +20320,24,4.5,25,0.0 +20320,30,25.89,17,0.0 +20320,36,19,39,0.0 +20320,16,17.45,43,0.0 +20320,72,34.8,19,0.0 +20320,37,26,11,0.0 +20320,76,18,23,0.0 +20320,65,21.05,43,0.0 +20320,49,20,5,0.0 +20320,59,55,25,0.0 +20320,19,9.2,24,0.0 +20320,1,18,26,0.0 +20320,77,13,11,0.0 +20320,25,14,25,0.0 +20321,19,9.2,48,0.0 +20321,5,21.35,34,0.0 +20321,40,18.4,30,0.0 +20321,57,19.5,37,0.0 +20321,29,123.79,43,0.0 +20321,24,4.5,41,0.0 +20321,62,49.3,4,0.0 +20321,77,13,30,0.0 +20321,52,7,6,0.0 +20321,20,81,38,0.0 +20321,11,21,16,0.0 +20321,13,6,46,0.0 +20321,61,28.5,29,0.0 +20321,64,33.25,29,0.0 +20321,49,20,48,0.0 +20321,8,40,37,0.0 +20321,65,21.05,24,0.0 +20321,74,10,6,0.0 +20321,46,12,36,0.0 +20321,48,12.75,22,0.0 +20321,23,9,43,0.0 +20321,59,55,3,0.0 +20321,67,14,45,0.0 +20321,71,21.5,23,0.0 +20321,53,32.8,8,0.0 +20321,31,12.5,23,0.0 +20321,12,38,24,0.0 +20321,37,26,20,0.0 +20321,72,34.8,33,0.0 +20321,36,19,17,0.0 +20321,45,9.5,34,0.0 +20321,22,21,45,0.0 +20321,4,22,39,0.0 +20321,63,43.9,36,0.0 +20321,2,19,45,0.0 +20321,32,32,42,0.0 +20321,43,46,38,0.0 +20321,6,25,44,0.0 +20321,18,62.5,20,0.0 +20321,25,14,24,0.0 +20321,1,18,6,0.0 +20321,76,18,48,0.0 +20321,42,14,7,0.0 +20321,47,9.5,49,0.0 +20321,16,17.45,30,0.0 +20322,41,9.65,1,0.0 +20322,60,34,2,0.0 +20322,45,9.5,42,0.0 +20322,49,20,15,0.0 +20322,32,32,47,0.0 +20322,50,16.25,40,0.0 +20322,68,12.5,2,0.0 +20322,38,263.5,26,0.0 +20322,66,17,32,0.0 +20322,46,12,31,0.0 +20322,24,4.5,13,0.0 +20322,3,10,47,0.0 +20322,77,13,16,0.0 +20322,74,10,21,0.0 +20322,29,123.79,12,0.0 +20322,7,30,42,0.0 +20322,35,18,30,0.0 +20322,26,31.23,39,0.0 +20322,34,14,17,0.0 +20322,22,21,31,0.0 +20322,30,25.89,43,0.0 +20322,23,9,11,0.0 +20322,52,7,42,0.0 +20322,15,15.5,2,0.0 +20322,47,9.5,20,0.0 +20322,31,12.5,4,0.0 +20322,75,7.75,15,0.0 +20322,42,14,9,0.0 +20322,9,97,30,0.0 +20322,56,38,37,0.0 +20322,65,21.05,21,0.0 +20322,14,23.25,45,0.0 +20322,25,14,42,0.0 +20322,62,49.3,40,0.0 +20322,27,43.9,48,0.0 +20322,51,53,46,0.0 +20322,57,19.5,15,0.0 +20322,20,81,5,0.0 +20322,19,9.2,40,0.0 +20322,71,21.5,44,0.0 +20322,53,32.8,43,0.0 +20322,4,22,5,0.0 +20322,63,43.9,12,0.0 +20322,33,2.5,27,0.0 +20322,11,21,9,0.0 +20322,16,17.45,19,0.0 +20322,18,62.5,24,0.0 +20322,1,18,36,0.0 +20322,37,26,10,0.0 +20322,36,19,24,0.0 +20322,5,21.35,4,0.0 +20322,55,24,24,0.0 +20322,13,6,40,0.0 +20322,2,19,45,0.0 +20322,54,7.45,20,0.0 +20322,12,38,16,0.0 +20322,73,15,5,0.0 +20322,69,36,23,0.0 +20322,76,18,11,0.0 +20322,48,12.75,34,0.0 +20322,61,28.5,4,0.0 +20322,67,14,27,0.0 +20322,8,40,35,0.0 +20322,17,39,20,0.0 +20322,58,13.25,2,0.0 +20322,40,18.4,15,0.0 +20322,21,10,17,0.0 +20322,44,19.45,39,0.0 +20322,72,34.8,9,0.0 +20322,43,46,26,0.0 +20322,64,33.25,17,0.0 +20322,28,45.6,25,0.0 +20322,39,18,9,0.0 +20322,10,31,17,0.0 +20322,70,15,17,0.0 +20323,8,40,34,0.0 +20323,39,18,39,0.0 +20323,30,25.89,23,0.0 +20323,17,39,28,0.0 +20323,67,14,5,0.0 +20323,50,16.25,39,0.0 +20323,14,23.25,47,0.0 +20323,36,19,28,0.0 +20323,12,38,7,0.0 +20323,49,20,40,0.0 +20323,75,7.75,34,0.0 +20323,63,43.9,17,0.0 +20323,13,6,32,0.0 +20323,52,7,12,0.0 +20323,73,15,44,0.0 +20324,60,34,26,0.0 +20324,71,21.5,6,0.0 +20324,26,31.23,43,0.0 +20324,2,19,14,0.0 +20324,11,21,35,0.0 +20324,30,25.89,50,0.0 +20324,70,15,16,0.0 +20324,8,40,9,0.0 +20324,13,6,38,0.0 +20324,6,25,39,0.0 +20324,66,17,23,0.0 +20324,48,12.75,50,0.0 +20324,28,45.6,35,0.0 +20324,35,18,48,0.0 +20324,63,43.9,31,0.0 +20324,37,26,26,0.0 +20324,51,53,5,0.0 +20324,23,9,38,0.0 +20324,38,263.5,31,0.0 +20324,68,12.5,47,0.0 +20324,16,17.45,31,0.0 +20324,53,32.8,16,0.0 +20324,64,33.25,28,0.0 +20324,21,10,5,0.0 +20324,47,9.5,17,0.0 +20324,34,14,9,0.0 +20324,42,14,30,0.0 +20324,3,10,9,0.0 +20324,17,39,31,0.0 +20324,55,24,36,0.0 +20324,57,19.5,2,0.0 +20324,15,15.5,37,0.0 +20324,1,18,30,0.0 +20324,9,97,50,0.0 +20324,18,62.5,17,0.0 +20324,75,7.75,6,0.0 +20324,33,2.5,12,0.0 +20324,49,20,45,0.0 +20324,46,12,42,0.0 +20324,72,34.8,19,0.0 +20324,29,123.79,18,0.0 +20324,59,55,26,0.0 +20324,14,23.25,42,0.0 +20324,52,7,37,0.0 +20324,76,18,4,0.0 +20324,31,12.5,34,0.0 +20324,41,9.65,15,0.0 +20324,5,21.35,39,0.0 +20324,58,13.25,21,0.0 +20324,36,19,17,0.0 +20324,44,19.45,11,0.0 +20324,65,21.05,30,0.0 +20324,50,16.25,48,0.0 +20324,56,38,13,0.0 +20324,27,43.9,25,0.0 +20324,67,14,31,0.0 +20324,69,36,49,0.0 +20324,39,18,33,0.0 +20324,7,30,21,0.0 +20324,61,28.5,31,0.0 +20324,24,4.5,43,0.0 +20324,77,13,33,0.0 +20324,43,46,27,0.0 +20324,10,31,47,0.0 +20324,12,38,8,0.0 +20324,25,14,24,0.0 +20324,22,21,45,0.0 +20324,74,10,49,0.0 +20324,40,18.4,2,0.0 +20324,4,22,37,0.0 +20324,32,32,13,0.0 +20324,62,49.3,7,0.0 +20324,45,9.5,7,0.0 +20324,19,9.2,25,0.0 +20324,73,15,46,0.0 +20325,36,19,20,0.0 +20325,3,10,40,0.0 +20325,66,17,36,0.0 +20325,7,30,20,0.0 +20325,59,55,23,0.0 +20325,45,9.5,19,0.0 +20325,19,9.2,29,0.0 +20325,61,28.5,43,0.0 +20325,75,7.75,36,0.0 +20325,74,10,34,0.0 +20325,22,21,42,0.0 +20325,56,38,46,0.0 +20325,10,31,32,0.0 +20325,39,18,16,0.0 +20325,6,25,36,0.0 +20325,42,14,33,0.0 +20325,14,23.25,11,0.0 +20325,69,36,41,0.0 +20325,11,21,31,0.0 +20325,35,18,14,0.0 +20325,4,22,25,0.0 +20325,60,34,37,0.0 +20325,9,97,25,0.0 +20325,5,21.35,44,0.0 +20325,67,14,5,0.0 +20325,13,6,11,0.0 +20325,20,81,43,0.0 +20325,1,18,48,0.0 +20325,43,46,34,0.0 +20325,12,38,27,0.0 +20325,28,45.6,16,0.0 +20325,44,19.45,49,0.0 +20325,32,32,9,0.0 +20325,72,34.8,4,0.0 +20325,37,26,39,0.0 +20325,58,13.25,9,0.0 +20325,24,4.5,27,0.0 +20325,30,25.89,15,0.0 +20325,23,9,49,0.0 +20326,20,81,25,0.0 +20326,46,12,24,0.0 +20326,75,7.75,36,0.0 +20326,61,28.5,17,0.0 +20326,69,36,40,0.0 +20326,54,7.45,8,0.0 +20326,18,62.5,34,0.0 +20326,30,25.89,5,0.0 +20326,57,19.5,32,0.0 +20326,4,22,37,0.0 +20326,77,13,20,0.0 +20326,56,38,41,0.0 +20326,34,14,1,0.0 +20326,10,31,21,0.0 +20326,70,15,23,0.0 +20326,63,43.9,26,0.0 +20326,5,21.35,4,0.0 +20326,8,40,45,0.0 +20326,35,18,13,0.0 +20326,66,17,41,0.0 +20326,52,7,15,0.0 +20326,40,18.4,41,0.0 +20326,31,12.5,24,0.0 +20326,19,9.2,49,0.0 +20326,59,55,15,0.0 +20326,45,9.5,32,0.0 +20326,29,123.79,9,0.0 +20326,7,30,37,0.0 +20326,36,19,29,0.0 +20326,17,39,1,0.0 +20326,68,12.5,42,0.0 +20326,43,46,4,0.0 +20326,62,49.3,35,0.0 +20326,51,53,11,0.0 +20326,26,31.23,18,0.0 +20326,16,17.45,38,0.0 +20326,3,10,36,0.0 +20326,39,18,50,0.0 +20326,25,14,30,0.0 +20326,72,34.8,9,0.0 +20326,14,23.25,36,0.0 +20326,49,20,33,0.0 +20326,76,18,44,0.0 +20326,37,26,27,0.0 +20326,27,43.9,46,0.0 +20326,53,32.8,17,0.0 +20326,71,21.5,28,0.0 +20326,50,16.25,28,0.0 +20326,15,15.5,21,0.0 +20326,6,25,33,0.0 +20326,9,97,27,0.0 +20326,23,9,50,0.0 +20326,12,38,45,0.0 +20326,28,45.6,21,0.0 +20326,38,263.5,31,0.0 +20326,44,19.45,28,0.0 +20326,67,14,45,0.0 +20326,11,21,23,0.0 +20326,32,32,28,0.0 +20326,1,18,9,0.0 +20326,74,10,3,0.0 +20326,2,19,29,0.0 +20326,73,15,44,0.0 +20326,55,24,24,0.0 +20326,24,4.5,15,0.0 +20326,41,9.65,41,0.0 +20326,22,21,11,0.0 +20326,13,6,5,0.0 +20326,58,13.25,24,0.0 +20326,47,9.5,18,0.0 +20326,65,21.05,22,0.0 +20326,42,14,9,0.0 +20326,60,34,23,0.0 +20326,21,10,21,0.0 +20327,32,32,3,0.0 +20327,41,9.65,50,0.0 +20327,69,36,30,0.0 +20327,13,6,50,0.0 +20327,46,12,15,0.0 +20327,25,14,43,0.0 +20327,77,13,6,0.0 +20327,5,21.35,10,0.0 +20327,18,62.5,18,0.0 +20327,27,43.9,47,0.0 +20327,22,21,30,0.0 +20327,53,32.8,13,0.0 +20327,55,24,2,0.0 +20327,34,14,45,0.0 +20327,48,12.75,35,0.0 +20327,44,19.45,34,0.0 +20327,51,53,50,0.0 +20327,26,31.23,10,0.0 +20327,59,55,39,0.0 +20327,65,21.05,48,0.0 +20327,30,25.89,11,0.0 +20327,72,34.8,46,0.0 +20327,63,43.9,27,0.0 +20327,45,9.5,38,0.0 +20327,37,26,28,0.0 +20327,31,12.5,10,0.0 +20327,33,2.5,4,0.0 +20327,23,9,36,0.0 +20327,1,18,29,0.0 +20327,60,34,47,0.0 +20327,10,31,9,0.0 +20327,29,123.79,9,0.0 +20327,28,45.6,8,0.0 +20327,7,30,21,0.0 +20327,61,28.5,36,0.0 +20327,6,25,49,0.0 +20327,19,9.2,38,0.0 +20327,57,19.5,34,0.0 +20327,9,97,34,0.0 +20327,21,10,17,0.0 +20327,42,14,19,0.0 +20327,58,13.25,31,0.0 +20327,54,7.45,33,0.0 +20327,17,39,5,0.0 +20327,15,15.5,1,0.0 +20327,35,18,35,0.0 +20327,64,33.25,10,0.0 +20327,67,14,16,0.0 +20327,56,38,22,0.0 +20327,76,18,9,0.0 +20327,66,17,23,0.0 +20327,2,19,41,0.0 +20327,8,40,14,0.0 +20327,74,10,10,0.0 +20327,36,19,4,0.0 +20327,11,21,37,0.0 +20327,14,23.25,18,0.0 +20327,52,7,18,0.0 +20327,62,49.3,9,0.0 +20327,3,10,1,0.0 +20327,43,46,24,0.0 +20327,39,18,6,0.0 +20327,20,81,30,0.0 +20327,40,18.4,20,0.0 +20327,12,38,36,0.0 +20327,50,16.25,23,0.0 +20327,16,17.45,36,0.0 +20327,75,7.75,48,0.0 +20327,68,12.5,36,0.0 +20327,71,21.5,12,0.0 +20327,4,22,21,0.0 +20327,70,15,15,0.0 +20327,73,15,6,0.0 +20328,1,18,22,0.0 +20328,21,10,7,0.0 +20328,56,38,41,0.0 +20328,12,38,5,0.0 +20328,4,22,28,0.0 +20328,64,33.25,48,0.0 +20328,40,18.4,1,0.0 +20328,22,21,26,0.0 +20328,54,7.45,21,0.0 +20328,2,19,35,0.0 +20328,52,7,34,0.0 +20328,73,15,43,0.0 +20328,49,20,8,0.0 +20329,69,36,1,0.0 +20329,47,9.5,32,0.0 +20329,30,25.89,13,0.0 +20329,52,7,3,0.0 +20329,70,15,44,0.0 +20329,14,23.25,36,0.0 +20329,19,9.2,29,0.0 +20329,64,33.25,34,0.0 +20329,23,9,6,0.0 +20329,48,12.75,28,0.0 +20329,34,14,23,0.0 +20330,65,21.05,44,0.0 +20330,16,17.45,26,0.0 +20330,58,13.25,40,0.0 +20330,72,34.8,21,0.0 +20330,63,43.9,31,0.0 +20330,36,19,25,0.0 +20330,61,28.5,4,0.0 +20330,17,39,7,0.0 +20330,20,81,9,0.0 +20330,42,14,48,0.0 +20330,39,18,40,0.0 +20330,22,21,22,0.0 +20330,59,55,15,0.0 +20330,12,38,3,0.0 +20330,44,19.45,5,0.0 +20330,19,9.2,24,0.0 +20330,57,19.5,43,0.0 +20330,56,38,32,0.0 +20330,47,9.5,8,0.0 +20330,43,46,14,0.0 +20330,23,9,39,0.0 +20330,15,15.5,10,0.0 +20330,33,2.5,21,0.0 +20330,45,9.5,17,0.0 +20330,3,10,33,0.0 +20330,13,6,17,0.0 +20330,73,15,1,0.0 +20330,26,31.23,26,0.0 +20330,67,14,8,0.0 +20330,27,43.9,11,0.0 +20330,24,4.5,23,0.0 +20330,37,26,18,0.0 +20330,40,18.4,22,0.0 +20330,32,32,23,0.0 +20330,62,49.3,39,0.0 +20330,76,18,46,0.0 +20330,35,18,12,0.0 +20330,68,12.5,15,0.0 +20330,69,36,39,0.0 +20330,60,34,43,0.0 +20330,2,19,10,0.0 +20330,14,23.25,16,0.0 +20330,9,97,7,0.0 +20330,54,7.45,18,0.0 +20330,29,123.79,48,0.0 +20330,71,21.5,23,0.0 +20330,75,7.75,40,0.0 +20330,70,15,27,0.0 +20330,64,33.25,38,0.0 +20330,66,17,21,0.0 +20330,52,7,43,0.0 +20330,25,14,26,0.0 +20330,46,12,42,0.0 +20330,6,25,18,0.0 +20330,4,22,39,0.0 +20330,41,9.65,50,0.0 +20330,49,20,19,0.0 +20330,5,21.35,49,0.0 +20330,21,10,49,0.0 +20330,28,45.6,47,0.0 +20330,34,14,20,0.0 +20330,48,12.75,3,0.0 +20330,11,21,36,0.0 +20330,8,40,5,0.0 +20330,55,24,27,0.0 +20330,18,62.5,33,0.0 +20330,74,10,5,0.0 +20330,10,31,35,0.0 +20330,77,13,47,0.0 +20330,38,263.5,1,0.0 +20330,7,30,18,0.0 +20330,30,25.89,18,0.0 +20330,51,53,17,0.0 +20330,50,16.25,26,0.0 +20330,1,18,19,0.0 +20331,42,14,18,0.0 +20331,33,2.5,1,0.0 +20331,24,4.5,9,0.0 +20331,51,53,47,0.0 +20331,72,34.8,12,0.0 +20331,69,36,25,0.0 +20331,71,21.5,34,0.0 +20331,14,23.25,35,0.0 +20331,1,18,45,0.0 +20331,52,7,33,0.0 +20331,3,10,44,0.0 +20331,67,14,42,0.0 +20331,35,18,12,0.0 +20331,61,28.5,38,0.0 +20331,7,30,15,0.0 +20331,38,263.5,30,0.0 +20331,68,12.5,27,0.0 +20331,56,38,29,0.0 +20331,36,19,8,0.0 +20331,40,18.4,39,0.0 +20331,77,13,11,0.0 +20331,64,33.25,28,0.0 +20331,13,6,26,0.0 +20331,19,9.2,23,0.0 +20331,37,26,44,0.0 +20331,28,45.6,6,0.0 +20331,15,15.5,27,0.0 +20331,12,38,39,0.0 +20331,6,25,22,0.0 +20331,8,40,25,0.0 +20331,41,9.65,27,0.0 +20331,76,18,31,0.0 +20331,34,14,27,0.0 +20331,4,22,49,0.0 +20331,63,43.9,17,0.0 +20331,60,34,2,0.0 +20331,25,14,44,0.0 +20331,20,81,26,0.0 +20331,11,21,19,0.0 +20331,9,97,13,0.0 +20331,59,55,16,0.0 +20331,26,31.23,42,0.0 +20331,46,12,21,0.0 +20331,22,21,30,0.0 +20331,58,13.25,34,0.0 +20331,39,18,40,0.0 +20331,2,19,14,0.0 +20331,66,17,33,0.0 +20331,74,10,38,0.0 +20331,29,123.79,8,0.0 +20331,70,15,20,0.0 +20331,43,46,13,0.0 +20331,75,7.75,8,0.0 +20331,54,7.45,48,0.0 +20331,32,32,35,0.0 +20331,47,9.5,41,0.0 +20331,65,21.05,24,0.0 +20331,57,19.5,45,0.0 +20331,53,32.8,24,0.0 +20331,27,43.9,30,0.0 +20331,23,9,6,0.0 +20331,48,12.75,1,0.0 +20331,5,21.35,37,0.0 +20331,44,19.45,50,0.0 +20331,55,24,15,0.0 +20331,18,62.5,45,0.0 +20331,21,10,6,0.0 +20331,73,15,7,0.0 +20331,10,31,31,0.0 +20332,6,25,5,0.0 +20332,72,34.8,42,0.0 +20332,29,123.79,26,0.0 +20332,68,12.5,37,0.0 +20332,14,23.25,21,0.0 +20332,22,21,17,0.0 +20332,40,18.4,16,0.0 +20332,10,31,19,0.0 +20332,3,10,3,0.0 +20332,46,12,12,0.0 +20332,48,12.75,44,0.0 +20332,7,30,47,0.0 +20332,73,15,12,0.0 +20332,9,97,33,0.0 +20332,59,55,27,0.0 +20332,56,38,22,0.0 +20332,11,21,3,0.0 +20332,71,21.5,39,0.0 +20332,44,19.45,36,0.0 +20332,41,9.65,35,0.0 +20332,76,18,29,0.0 +20332,20,81,5,0.0 +20332,52,7,31,0.0 +20332,16,17.45,30,0.0 +20332,18,62.5,20,0.0 +20332,32,32,40,0.0 +20332,50,16.25,29,0.0 +20332,60,34,3,0.0 +20332,53,32.8,26,0.0 +20332,39,18,14,0.0 +20332,33,2.5,10,0.0 +20332,43,46,3,0.0 +20332,21,10,18,0.0 +20332,5,21.35,7,0.0 +20332,65,21.05,2,0.0 +20332,19,9.2,11,0.0 +20332,15,15.5,50,0.0 +20332,69,36,8,0.0 +20332,8,40,24,0.0 +20332,37,26,36,0.0 +20332,49,20,18,0.0 +20332,74,10,24,0.0 +20332,25,14,46,0.0 +20332,26,31.23,18,0.0 +20332,67,14,17,0.0 +20332,61,28.5,17,0.0 +20332,13,6,6,0.0 +20332,42,14,44,0.0 +20332,4,22,42,0.0 +20332,51,53,5,0.0 +20332,75,7.75,42,0.0 +20332,30,25.89,38,0.0 +20332,64,33.25,19,0.0 +20332,54,7.45,47,0.0 +20332,70,15,1,0.0 +20332,38,263.5,26,0.0 +20332,66,17,27,0.0 +20332,45,9.5,16,0.0 +20332,55,24,5,0.0 +20332,23,9,36,0.0 +20332,28,45.6,49,0.0 +20332,63,43.9,34,0.0 +20332,31,12.5,25,0.0 +20332,12,38,34,0.0 +20332,77,13,26,0.0 +20332,1,18,39,0.0 +20332,2,19,30,0.0 +20332,36,19,3,0.0 +20332,17,39,19,0.0 +20332,24,4.5,12,0.0 +20332,35,18,45,0.0 +20332,58,13.25,10,0.0 +20333,49,20,21,0.0 +20333,68,12.5,46,0.0 +20333,21,10,44,0.0 +20333,76,18,42,0.0 +20333,14,23.25,21,0.0 +20333,10,31,35,0.0 +20333,41,9.65,47,0.0 +20333,75,7.75,42,0.0 +20333,39,18,39,0.0 +20333,12,38,39,0.0 +20333,73,15,22,0.0 +20333,6,25,16,0.0 +20333,27,43.9,21,0.0 +20333,56,38,35,0.0 +20333,29,123.79,39,0.0 +20333,77,13,14,0.0 +20334,39,18,31,0.0 +20334,18,62.5,50,0.0 +20334,2,19,36,0.0 +20334,37,26,31,0.0 +20334,49,20,11,0.0 +20334,20,81,35,0.0 +20334,52,7,24,0.0 +20334,25,14,15,0.0 +20334,5,21.35,25,0.0 +20334,15,15.5,45,0.0 +20334,21,10,36,0.0 +20334,70,15,20,0.0 +20334,9,97,38,0.0 +20334,44,19.45,30,0.0 +20334,35,18,13,0.0 +20334,32,32,15,0.0 +20334,75,7.75,29,0.0 +20334,34,14,40,0.0 +20334,54,7.45,31,0.0 +20334,71,21.5,40,0.0 +20334,33,2.5,14,0.0 +20334,51,53,39,0.0 +20334,17,39,42,0.0 +20334,7,30,24,0.0 +20334,1,18,36,0.0 +20334,56,38,27,0.0 +20334,50,16.25,16,0.0 +20334,31,12.5,45,0.0 +20334,8,40,13,0.0 +20334,77,13,48,0.0 +20334,12,38,20,0.0 +20334,4,22,5,0.0 +20334,13,6,48,0.0 +20334,16,17.45,32,0.0 +20334,42,14,23,0.0 +20334,57,19.5,4,0.0 +20334,53,32.8,39,0.0 +20334,45,9.5,47,0.0 +20334,30,25.89,35,0.0 +20334,38,263.5,27,0.0 +20334,28,45.6,29,0.0 +20334,36,19,23,0.0 +20334,46,12,50,0.0 +20334,24,4.5,7,0.0 +20334,55,24,30,0.0 +20334,58,13.25,9,0.0 +20334,10,31,6,0.0 +20334,76,18,49,0.0 +20334,40,18.4,5,0.0 +20334,48,12.75,48,0.0 +20334,47,9.5,16,0.0 +20334,41,9.65,34,0.0 +20334,43,46,10,0.0 +20335,5,21.35,32,0.0 +20335,30,25.89,36,0.0 +20335,65,21.05,40,0.0 +20335,75,7.75,8,0.0 +20335,8,40,4,0.0 +20335,47,9.5,21,0.0 +20335,35,18,35,0.0 +20335,22,21,15,0.0 +20335,32,32,6,0.0 +20335,48,12.75,21,0.0 +20335,68,12.5,27,0.0 +20335,23,9,23,0.0 +20335,10,31,33,0.0 +20335,64,33.25,44,0.0 +20335,50,16.25,40,0.0 +20335,29,123.79,47,0.0 +20336,6,25,38,0.0 +20336,25,14,46,0.0 +20336,30,25.89,29,0.0 +20336,47,9.5,9,0.0 +20336,70,15,10,0.0 +20336,71,21.5,5,0.0 +20336,28,45.6,18,0.0 +20336,49,20,32,0.0 +20336,74,10,12,0.0 +20336,45,9.5,23,0.0 +20336,64,33.25,1,0.0 +20336,67,14,39,0.0 +20336,31,12.5,12,0.0 +20336,57,19.5,16,0.0 +20336,77,13,21,0.0 +20336,19,9.2,12,0.0 +20336,58,13.25,2,0.0 +20336,42,14,38,0.0 +20336,63,43.9,43,0.0 +20336,54,7.45,12,0.0 +20336,72,34.8,27,0.0 +20336,65,21.05,8,0.0 +20336,68,12.5,12,0.0 +20336,10,31,27,0.0 +20336,39,18,31,0.0 +20336,73,15,41,0.0 +20336,55,24,12,0.0 +20336,43,46,17,0.0 +20336,60,34,26,0.0 +20336,8,40,36,0.0 +20336,24,4.5,24,0.0 +20336,75,7.75,21,0.0 +20336,48,12.75,29,0.0 +20336,32,32,28,0.0 +20337,15,15.5,7,0.0 +20337,48,12.75,40,0.0 +20337,23,9,25,0.0 +20337,42,14,48,0.0 +20337,73,15,8,0.0 +20338,74,10,30,0.0 +20338,59,55,31,0.0 +20338,47,9.5,1,0.0 +20338,37,26,22,0.0 +20338,76,18,19,0.0 +20338,17,39,3,0.0 +20338,22,21,5,0.0 +20338,65,21.05,49,0.0 +20338,56,38,24,0.0 +20338,24,4.5,43,0.0 +20338,53,32.8,45,0.0 +20338,71,21.5,28,0.0 +20338,18,62.5,34,0.0 +20338,13,6,24,0.0 +20338,75,7.75,6,0.0 +20338,20,81,44,0.0 +20338,34,14,16,0.0 +20338,42,14,18,0.0 +20338,52,7,50,0.0 +20338,51,53,50,0.0 +20338,31,12.5,33,0.0 +20338,32,32,30,0.0 +20338,67,14,19,0.0 +20338,38,263.5,18,0.0 +20338,46,12,43,0.0 +20338,16,17.45,20,0.0 +20338,63,43.9,19,0.0 +20338,57,19.5,34,0.0 +20338,23,9,10,0.0 +20338,11,21,9,0.0 +20338,64,33.25,44,0.0 +20338,70,15,24,0.0 +20338,2,19,40,0.0 +20338,12,38,1,0.0 +20338,36,19,26,0.0 +20338,39,18,50,0.0 +20338,28,45.6,27,0.0 +20338,50,16.25,22,0.0 +20339,22,21,6,0.0 +20339,53,32.8,4,0.0 +20339,60,34,38,0.0 +20339,21,10,40,0.0 +20339,29,123.79,39,0.0 +20339,33,2.5,13,0.0 +20339,2,19,39,0.0 +20339,41,9.65,32,0.0 +20339,68,12.5,2,0.0 +20339,18,62.5,5,0.0 +20339,35,18,12,0.0 +20339,71,21.5,19,0.0 +20339,36,19,46,0.0 +20339,40,18.4,50,0.0 +20339,8,40,30,0.0 +20339,15,15.5,15,0.0 +20339,70,15,21,0.0 +20339,20,81,39,0.0 +20339,51,53,13,0.0 +20339,17,39,42,0.0 +20339,13,6,1,0.0 +20339,75,7.75,50,0.0 +20339,7,30,33,0.0 +20339,34,14,50,0.0 +20339,23,9,44,0.0 +20339,55,24,46,0.0 +20339,64,33.25,44,0.0 +20339,57,19.5,3,0.0 +20339,27,43.9,30,0.0 +20339,73,15,9,0.0 +20339,6,25,11,0.0 +20339,74,10,18,0.0 +20339,11,21,24,0.0 +20339,3,10,43,0.0 +20339,46,12,31,0.0 +20339,63,43.9,3,0.0 +20339,58,13.25,30,0.0 +20339,16,17.45,50,0.0 +20339,50,16.25,48,0.0 +20339,52,7,11,0.0 +20339,66,17,11,0.0 +20339,10,31,3,0.0 +20339,65,21.05,14,0.0 +20339,76,18,31,0.0 +20339,42,14,44,0.0 +20339,14,23.25,2,0.0 +20339,48,12.75,2,0.0 +20339,59,55,23,0.0 +20340,26,31.23,38,0.0 +20341,25,14,45,0.0 +20341,64,33.25,34,0.0 +20341,21,10,12,0.0 +20341,61,28.5,33,0.0 +20341,30,25.89,10,0.0 +20341,36,19,48,0.0 +20341,8,40,11,0.0 +20341,60,34,25,0.0 +20341,42,14,34,0.0 +20341,53,32.8,6,0.0 +20341,33,2.5,6,0.0 +20341,7,30,16,0.0 +20341,51,53,8,0.0 +20341,43,46,2,0.0 +20341,76,18,13,0.0 +20341,41,9.65,30,0.0 +20341,62,49.3,43,0.0 +20341,37,26,50,0.0 +20341,29,123.79,13,0.0 +20341,34,14,48,0.0 +20341,19,9.2,39,0.0 +20341,54,7.45,40,0.0 +20341,14,23.25,11,0.0 +20341,5,21.35,13,0.0 +20341,26,31.23,10,0.0 +20341,46,12,32,0.0 +20341,52,7,1,0.0 +20341,69,36,17,0.0 +20341,10,31,27,0.0 +20341,73,15,24,0.0 +20341,18,62.5,44,0.0 +20341,65,21.05,14,0.0 +20341,67,14,29,0.0 +20341,17,39,33,0.0 +20341,68,12.5,41,0.0 +20341,24,4.5,34,0.0 +20341,58,13.25,47,0.0 +20341,23,9,12,0.0 +20341,27,43.9,44,0.0 +20341,16,17.45,46,0.0 +20341,55,24,38,0.0 +20341,59,55,41,0.0 +20341,45,9.5,49,0.0 +20341,71,21.5,32,0.0 +20341,11,21,23,0.0 +20341,49,20,24,0.0 +20341,9,97,30,0.0 +20341,12,38,12,0.0 +20341,63,43.9,14,0.0 +20341,15,15.5,7,0.0 +20342,21,10,27,0.0 +20342,28,45.6,14,0.0 +20342,54,7.45,14,0.0 +20342,74,10,1,0.0 +20342,15,15.5,38,0.0 +20342,64,33.25,3,0.0 +20342,20,81,14,0.0 +20342,2,19,8,0.0 +20342,71,21.5,37,0.0 +20342,7,30,36,0.0 +20342,68,12.5,33,0.0 +20342,24,4.5,42,0.0 +20342,67,14,19,0.0 +20342,50,16.25,17,0.0 +20342,57,19.5,35,0.0 +20342,4,22,45,0.0 +20342,10,31,1,0.0 +20342,72,34.8,33,0.0 +20342,61,28.5,26,0.0 +20342,62,49.3,35,0.0 +20342,27,43.9,20,0.0 +20342,35,18,4,0.0 +20342,63,43.9,21,0.0 +20342,23,9,9,0.0 +20342,46,12,12,0.0 +20342,43,46,37,0.0 +20342,65,21.05,20,0.0 +20342,77,13,22,0.0 +20342,33,2.5,47,0.0 +20342,31,12.5,11,0.0 +20342,37,26,47,0.0 +20342,48,12.75,34,0.0 +20342,11,21,30,0.0 +20342,18,62.5,38,0.0 +20342,56,38,10,0.0 +20342,36,19,8,0.0 +20342,22,21,41,0.0 +20342,55,24,37,0.0 +20342,26,31.23,42,0.0 +20342,12,38,35,0.0 +20342,59,55,38,0.0 +20342,19,9.2,16,0.0 +20342,51,53,21,0.0 +20342,69,36,28,0.0 +20342,17,39,41,0.0 +20342,41,9.65,16,0.0 +20342,49,20,17,0.0 +20342,73,15,42,0.0 +20342,14,23.25,30,0.0 +20342,6,25,15,0.0 +20342,42,14,50,0.0 +20342,3,10,37,0.0 +20342,52,7,21,0.0 +20342,40,18.4,4,0.0 +20343,13,6,3,0.0 +20343,49,20,35,0.0 +20343,2,19,47,0.0 +20343,30,25.89,44,0.0 +20343,6,25,25,0.0 +20343,45,9.5,48,0.0 +20343,69,36,9,0.0 +20343,4,22,33,0.0 +20343,77,13,12,0.0 +20343,11,21,30,0.0 +20343,44,19.45,28,0.0 +20343,31,12.5,18,0.0 +20343,34,14,24,0.0 +20343,62,49.3,25,0.0 +20343,67,14,27,0.0 +20343,5,21.35,25,0.0 +20343,63,43.9,9,0.0 +20343,73,15,1,0.0 +20343,3,10,28,0.0 +20343,76,18,10,0.0 +20343,59,55,25,0.0 +20343,68,12.5,2,0.0 +20343,55,24,5,0.0 +20343,38,263.5,10,0.0 +20343,25,14,5,0.0 +20343,61,28.5,22,0.0 +20343,54,7.45,8,0.0 +20343,23,9,42,0.0 +20343,57,19.5,3,0.0 +20343,19,9.2,24,0.0 +20343,71,21.5,11,0.0 +20343,32,32,38,0.0 +20343,39,18,3,0.0 +20343,1,18,41,0.0 +20343,9,97,7,0.0 +20343,27,43.9,12,0.0 +20343,22,21,48,0.0 +20343,12,38,6,0.0 +20343,24,4.5,18,0.0 +20343,53,32.8,34,0.0 +20343,42,14,34,0.0 +20343,50,16.25,44,0.0 +20343,36,19,41,0.0 +20343,17,39,44,0.0 +20343,26,31.23,48,0.0 +20343,52,7,27,0.0 +20343,74,10,22,0.0 +20343,10,31,44,0.0 +20343,60,34,38,0.0 +20343,18,62.5,41,0.0 +20343,65,21.05,25,0.0 +20343,20,81,3,0.0 +20343,43,46,17,0.0 +20343,37,26,28,0.0 +20343,41,9.65,46,0.0 +20343,28,45.6,23,0.0 +20343,75,7.75,31,0.0 +20343,46,12,14,0.0 +20343,40,18.4,33,0.0 +20343,47,9.5,41,0.0 +20343,64,33.25,45,0.0 +20343,72,34.8,36,0.0 +20343,7,30,6,0.0 +20343,66,17,27,0.0 +20344,65,21.05,8,0.0 +20344,21,10,44,0.0 +20344,51,53,2,0.0 +20344,5,21.35,47,0.0 +20344,16,17.45,21,0.0 +20344,31,12.5,47,0.0 +20344,60,34,49,0.0 +20344,20,81,34,0.0 +20344,40,18.4,23,0.0 +20344,57,19.5,26,0.0 +20344,27,43.9,24,0.0 +20344,10,31,47,0.0 +20344,6,25,40,0.0 +20344,18,62.5,36,0.0 +20344,32,32,41,0.0 +20344,71,21.5,9,0.0 +20344,67,14,48,0.0 +20344,22,21,49,0.0 +20344,46,12,9,0.0 +20344,42,14,23,0.0 +20344,45,9.5,37,0.0 +20344,52,7,3,0.0 +20344,64,33.25,34,0.0 +20344,30,25.89,39,0.0 +20344,15,15.5,5,0.0 +20344,44,19.45,14,0.0 +20344,11,21,48,0.0 +20344,13,6,22,0.0 +20344,1,18,44,0.0 +20344,33,2.5,9,0.0 +20344,12,38,11,0.0 +20344,73,15,9,0.0 +20344,74,10,45,0.0 +20344,14,23.25,8,0.0 +20344,62,49.3,43,0.0 +20344,58,13.25,14,0.0 +20344,41,9.65,30,0.0 +20344,34,14,40,0.0 +20344,48,12.75,32,0.0 +20344,28,45.6,41,0.0 +20344,35,18,21,0.0 +20344,61,28.5,43,0.0 +20344,70,15,2,0.0 +20344,25,14,36,0.0 +20344,9,97,30,0.0 +20344,49,20,22,0.0 +20344,7,30,2,0.0 +20344,38,263.5,17,0.0 +20344,43,46,23,0.0 +20344,29,123.79,20,0.0 +20344,63,43.9,18,0.0 +20344,76,18,26,0.0 +20344,23,9,10,0.0 +20344,8,40,9,0.0 +20344,2,19,19,0.0 +20344,69,36,5,0.0 +20344,17,39,20,0.0 +20344,59,55,43,0.0 +20344,47,9.5,45,0.0 +20344,54,7.45,18,0.0 +20344,3,10,11,0.0 +20344,68,12.5,47,0.0 +20344,36,19,39,0.0 +20344,19,9.2,43,0.0 +20344,26,31.23,46,0.0 +20344,66,17,50,0.0 +20344,55,24,6,0.0 +20344,4,22,17,0.0 +20344,56,38,5,0.0 +20344,53,32.8,34,0.0 +20345,45,9.5,13,0.0 +20345,6,25,7,0.0 +20345,23,9,8,0.0 +20345,15,15.5,45,0.0 +20345,58,13.25,32,0.0 +20345,59,55,46,0.0 +20345,68,12.5,12,0.0 +20346,69,36,6,0.0 +20346,30,25.89,34,0.0 +20346,64,33.25,29,0.0 +20346,18,62.5,29,0.0 +20346,12,38,17,0.0 +20346,15,15.5,17,0.0 +20347,41,9.65,13,0.0 +20347,26,31.23,12,0.0 +20347,56,38,19,0.0 +20347,45,9.5,40,0.0 +20347,8,40,26,0.0 +20347,12,38,22,0.0 +20347,18,62.5,35,0.0 +20347,38,263.5,49,0.0 +20347,46,12,31,0.0 +20347,19,9.2,39,0.0 +20347,36,19,13,0.0 +20347,5,21.35,9,0.0 +20347,15,15.5,26,0.0 +20347,34,14,22,0.0 +20347,3,10,43,0.0 +20347,4,22,35,0.0 +20347,74,10,23,0.0 +20347,66,17,1,0.0 +20347,55,24,37,0.0 +20347,22,21,35,0.0 +20347,39,18,36,0.0 +20347,59,55,13,0.0 +20347,16,17.45,43,0.0 +20347,73,15,26,0.0 +20347,6,25,45,0.0 +20347,63,43.9,29,0.0 +20347,52,7,27,0.0 +20347,14,23.25,3,0.0 +20347,29,123.79,19,0.0 +20347,53,32.8,32,0.0 +20347,49,20,8,0.0 +20347,61,28.5,11,0.0 +20347,48,12.75,41,0.0 +20347,75,7.75,45,0.0 +20347,9,97,13,0.0 +20348,77,13,13,0.0 +20348,14,23.25,47,0.0 +20348,33,2.5,21,0.0 +20348,57,19.5,29,0.0 +20348,71,21.5,11,0.0 +20348,42,14,33,0.0 +20348,8,40,46,0.0 +20348,11,21,25,0.0 +20348,60,34,47,0.0 +20348,76,18,18,0.0 +20348,70,15,37,0.0 +20348,20,81,28,0.0 +20348,49,20,12,0.0 +20348,29,123.79,3,0.0 +20348,19,9.2,1,0.0 +20348,65,21.05,22,0.0 +20348,23,9,7,0.0 +20348,24,4.5,18,0.0 +20348,34,14,17,0.0 +20348,18,62.5,49,0.0 +20348,48,12.75,24,0.0 +20348,12,38,29,0.0 +20348,35,18,13,0.0 +20348,46,12,5,0.0 +20348,51,53,11,0.0 +20348,73,15,3,0.0 +20348,26,31.23,29,0.0 +20348,38,263.5,31,0.0 +20348,2,19,24,0.0 +20348,30,25.89,12,0.0 +20348,13,6,48,0.0 +20349,26,31.23,27,0.0 +20349,16,17.45,34,0.0 +20349,20,81,37,0.0 +20349,71,21.5,31,0.0 +20349,8,40,20,0.0 +20349,6,25,3,0.0 +20349,40,18.4,48,0.0 +20349,42,14,8,0.0 +20349,64,33.25,26,0.0 +20349,48,12.75,11,0.0 +20349,67,14,10,0.0 +20349,14,23.25,16,0.0 +20349,7,30,14,0.0 +20349,9,97,22,0.0 +20349,59,55,7,0.0 +20349,76,18,24,0.0 +20349,38,263.5,49,0.0 +20349,55,24,28,0.0 +20349,73,15,2,0.0 +20349,61,28.5,25,0.0 +20349,68,12.5,14,0.0 +20349,23,9,30,0.0 +20349,72,34.8,11,0.0 +20349,62,49.3,26,0.0 +20349,57,19.5,22,0.0 +20349,39,18,40,0.0 +20349,43,46,2,0.0 +20349,37,26,31,0.0 +20349,35,18,31,0.0 +20349,13,6,41,0.0 +20349,66,17,14,0.0 +20349,69,36,34,0.0 +20349,58,13.25,25,0.0 +20349,25,14,40,0.0 +20349,3,10,14,0.0 +20349,22,21,22,0.0 +20349,33,2.5,5,0.0 +20349,50,16.25,29,0.0 +20349,53,32.8,18,0.0 +20349,32,32,50,0.0 +20349,27,43.9,37,0.0 +20349,10,31,25,0.0 +20349,41,9.65,6,0.0 +20349,28,45.6,14,0.0 +20349,31,12.5,17,0.0 +20349,52,7,40,0.0 +20349,4,22,20,0.0 +20349,36,19,36,0.0 +20349,54,7.45,29,0.0 +20349,74,10,31,0.0 +20349,34,14,10,0.0 +20349,17,39,19,0.0 +20349,30,25.89,9,0.0 +20349,51,53,29,0.0 +20349,11,21,34,0.0 +20349,47,9.5,35,0.0 +20349,60,34,50,0.0 +20349,5,21.35,26,0.0 +20349,18,62.5,11,0.0 +20349,21,10,12,0.0 +20349,19,9.2,4,0.0 +20349,24,4.5,26,0.0 +20349,49,20,6,0.0 +20349,75,7.75,35,0.0 +20349,1,18,8,0.0 +20349,56,38,22,0.0 +20349,70,15,43,0.0 +20350,66,17,23,0.0 +20350,57,19.5,43,0.0 +20350,75,7.75,4,0.0 +20350,28,45.6,36,0.0 +20350,39,18,40,0.0 +20350,65,21.05,29,0.0 +20350,19,9.2,28,0.0 +20350,43,46,29,0.0 +20350,18,62.5,15,0.0 +20350,61,28.5,14,0.0 +20350,10,31,13,0.0 +20350,6,25,4,0.0 +20350,70,15,3,0.0 +20350,48,12.75,13,0.0 +20350,56,38,43,0.0 +20350,24,4.5,29,0.0 +20350,73,15,9,0.0 +20350,52,7,16,0.0 +20350,69,36,13,0.0 +20350,30,25.89,8,0.0 +20350,62,49.3,7,0.0 +20350,35,18,31,0.0 +20350,45,9.5,38,0.0 +20350,54,7.45,19,0.0 +20350,60,34,24,0.0 +20350,12,38,3,0.0 +20350,51,53,11,0.0 +20350,59,55,22,0.0 +20350,13,6,22,0.0 +20350,50,16.25,20,0.0 +20350,33,2.5,40,0.0 +20350,42,14,43,0.0 +20350,53,32.8,7,0.0 +20350,16,17.45,45,0.0 +20350,34,14,24,0.0 +20350,55,24,9,0.0 +20350,58,13.25,7,0.0 +20350,76,18,24,0.0 +20350,41,9.65,4,0.0 +20350,26,31.23,10,0.0 +20350,72,34.8,14,0.0 +20350,29,123.79,2,0.0 +20350,71,21.5,49,0.0 +20350,64,33.25,18,0.0 +20350,74,10,46,0.0 +20350,49,20,47,0.0 +20350,68,12.5,39,0.0 +20350,15,15.5,35,0.0 +20350,63,43.9,22,0.0 +20350,1,18,45,0.0 +20350,3,10,44,0.0 +20350,20,81,30,0.0 +20350,11,21,40,0.0 +20350,27,43.9,49,0.0 +20350,5,21.35,3,0.0 +20350,14,23.25,39,0.0 +20350,31,12.5,7,0.0 +20350,36,19,40,0.0 +20350,47,9.5,16,0.0 +20350,77,13,11,0.0 +20350,32,32,5,0.0 +20350,22,21,6,0.0 +20350,21,10,46,0.0 +20350,46,12,11,0.0 +20350,67,14,20,0.0 +20350,23,9,7,0.0 +20350,4,22,18,0.0 +20350,2,19,33,0.0 +20350,44,19.45,35,0.0 +20350,17,39,17,0.0 +20351,3,10,18,0.0 +20351,27,43.9,42,0.0 +20351,10,31,26,0.0 +20351,52,7,36,0.0 +20351,15,15.5,24,0.0 +20351,74,10,20,0.0 +20351,7,30,33,0.0 +20351,41,9.65,13,0.0 +20351,42,14,4,0.0 +20351,13,6,45,0.0 +20351,46,12,15,0.0 +20351,76,18,32,0.0 +20351,63,43.9,33,0.0 +20351,31,12.5,20,0.0 +20351,56,38,1,0.0 +20351,24,4.5,32,0.0 +20351,39,18,47,0.0 +20351,43,46,3,0.0 +20351,17,39,7,0.0 +20351,44,19.45,40,0.0 +20351,25,14,20,0.0 +20351,5,21.35,40,0.0 +20351,19,9.2,37,0.0 +20351,75,7.75,40,0.0 +20351,29,123.79,20,0.0 +20351,12,38,10,0.0 +20351,33,2.5,32,0.0 +20351,23,9,32,0.0 +20351,4,22,19,0.0 +20351,53,32.8,48,0.0 +20351,62,49.3,39,0.0 +20351,49,20,42,0.0 +20351,68,12.5,29,0.0 +20351,66,17,5,0.0 +20351,47,9.5,29,0.0 +20351,18,62.5,5,0.0 +20351,28,45.6,49,0.0 +20351,16,17.45,40,0.0 +20351,55,24,8,0.0 +20351,40,18.4,45,0.0 +20351,65,21.05,31,0.0 +20351,22,21,31,0.0 +20351,37,26,44,0.0 +20351,6,25,29,0.0 +20351,14,23.25,28,0.0 +20351,30,25.89,31,0.0 +20351,36,19,25,0.0 +20351,58,13.25,1,0.0 +20351,2,19,10,0.0 +20351,70,15,18,0.0 +20351,32,32,44,0.0 +20351,54,7.45,31,0.0 +20351,59,55,21,0.0 +20351,67,14,21,0.0 +20351,71,21.5,34,0.0 +20351,57,19.5,21,0.0 +20351,73,15,29,0.0 +20351,35,18,45,0.0 +20351,72,34.8,13,0.0 +20351,50,16.25,8,0.0 +20351,60,34,19,0.0 +20351,1,18,16,0.0 +20351,64,33.25,13,0.0 +20351,69,36,37,0.0 +20351,9,97,1,0.0 +20351,38,263.5,26,0.0 +20351,34,14,40,0.0 +20351,77,13,3,0.0 +20352,9,97,38,0.0 +20352,38,263.5,4,0.0 +20352,6,25,10,0.0 +20352,12,38,27,0.0 +20352,52,7,18,0.0 +20352,54,7.45,43,0.0 +20352,44,19.45,11,0.0 +20352,13,6,7,0.0 +20352,28,45.6,36,0.0 +20352,26,31.23,40,0.0 +20352,75,7.75,7,0.0 +20352,5,21.35,45,0.0 +20352,25,14,45,0.0 +20352,15,15.5,32,0.0 +20352,31,12.5,4,0.0 +20352,7,30,19,0.0 +20352,32,32,8,0.0 +20352,1,18,10,0.0 +20352,74,10,37,0.0 +20352,27,43.9,8,0.0 +20352,72,34.8,44,0.0 +20352,62,49.3,31,0.0 +20353,48,12.75,46,0.0 +20353,62,49.3,36,0.0 +20353,13,6,12,0.0 +20353,8,40,33,0.0 +20353,23,9,19,0.0 +20353,63,43.9,44,0.0 +20353,27,43.9,38,0.0 +20353,10,31,38,0.0 +20353,7,30,26,0.0 +20354,71,21.5,39,0.0 +20354,3,10,10,0.0 +20354,33,2.5,19,0.0 +20354,52,7,43,0.0 +20354,5,21.35,9,0.0 +20354,69,36,3,0.0 +20354,19,9.2,18,0.0 +20354,61,28.5,21,0.0 +20354,10,31,27,0.0 +20354,9,97,24,0.0 +20354,65,21.05,3,0.0 +20354,31,12.5,7,0.0 +20354,76,18,38,0.0 +20354,28,45.6,40,0.0 +20354,70,15,2,0.0 +20354,46,12,23,0.0 +20354,55,24,1,0.0 +20354,42,14,26,0.0 +20354,17,39,35,0.0 +20354,7,30,33,0.0 +20354,48,12.75,49,0.0 +20354,23,9,49,0.0 +20354,73,15,35,0.0 +20355,10,31,43,0.0 +20355,8,40,34,0.0 +20355,54,7.45,27,0.0 +20355,55,24,15,0.0 +20355,15,15.5,13,0.0 +20355,17,39,3,0.0 +20355,20,81,3,0.0 +20355,61,28.5,2,0.0 +20355,72,34.8,1,0.0 +20355,58,13.25,21,0.0 +20355,29,123.79,31,0.0 +20355,46,12,11,0.0 +20355,71,21.5,44,0.0 +20355,35,18,5,0.0 +20355,37,26,37,0.0 +20355,66,17,15,0.0 +20355,26,31.23,12,0.0 +20355,40,18.4,35,0.0 +20355,23,9,23,0.0 +20355,25,14,15,0.0 +20355,60,34,25,0.0 +20355,44,19.45,12,0.0 +20355,59,55,26,0.0 +20355,3,10,19,0.0 +20355,18,62.5,13,0.0 +20355,63,43.9,50,0.0 +20355,13,6,22,0.0 +20355,48,12.75,17,0.0 +20355,32,32,26,0.0 +20355,31,12.5,40,0.0 +20355,11,21,27,0.0 +20355,70,15,26,0.0 +20355,24,4.5,17,0.0 +20355,14,23.25,10,0.0 +20355,28,45.6,34,0.0 +20355,73,15,11,0.0 +20355,69,36,20,0.0 +20355,45,9.5,49,0.0 +20355,62,49.3,31,0.0 +20355,4,22,26,0.0 +20355,67,14,41,0.0 +20355,64,33.25,11,0.0 +20355,5,21.35,17,0.0 +20355,56,38,28,0.0 +20355,19,9.2,8,0.0 +20355,27,43.9,18,0.0 +20355,30,25.89,19,0.0 +20355,74,10,4,0.0 +20355,16,17.45,42,0.0 +20355,52,7,42,0.0 +20355,53,32.8,40,0.0 +20355,7,30,20,0.0 +20355,33,2.5,46,0.0 +20355,9,97,16,0.0 +20355,34,14,41,0.0 +20355,57,19.5,26,0.0 +20355,51,53,40,0.0 +20355,39,18,50,0.0 +20355,41,9.65,3,0.0 +20355,38,263.5,46,0.0 +20355,42,14,25,0.0 +20355,75,7.75,13,0.0 +20355,2,19,50,0.0 +20355,6,25,22,0.0 +20355,68,12.5,20,0.0 +20355,76,18,14,0.0 +20355,65,21.05,24,0.0 +20355,43,46,48,0.0 +20355,12,38,45,0.0 +20355,49,20,5,0.0 +20355,47,9.5,49,0.0 +20355,50,16.25,44,0.0 +20356,38,263.5,17,0.0 +20356,35,18,49,0.0 +20356,55,24,47,0.0 +20356,61,28.5,21,0.0 +20356,72,34.8,23,0.0 +20356,10,31,37,0.0 +20356,48,12.75,5,0.0 +20356,30,25.89,24,0.0 +20356,29,123.79,38,0.0 +20356,60,34,10,0.0 +20356,73,15,5,0.0 +20356,74,10,6,0.0 +20356,14,23.25,8,0.0 +20356,36,19,8,0.0 +20356,27,43.9,38,0.0 +20356,46,12,27,0.0 +20356,1,18,38,0.0 +20356,67,14,4,0.0 +20356,26,31.23,13,0.0 +20356,62,49.3,5,0.0 +20356,40,18.4,15,0.0 +20356,45,9.5,30,0.0 +20356,4,22,30,0.0 +20356,64,33.25,29,0.0 +20356,47,9.5,5,0.0 +20356,5,21.35,13,0.0 +20356,7,30,2,0.0 +20356,43,46,49,0.0 +20356,42,14,42,0.0 +20356,17,39,19,0.0 +20357,76,18,13,0.0 +20357,25,14,39,0.0 +20357,29,123.79,22,0.0 +20357,17,39,32,0.0 +20357,72,34.8,41,0.0 +20357,16,17.45,21,0.0 +20357,30,25.89,43,0.0 +20357,10,31,49,0.0 +20357,64,33.25,8,0.0 +20357,63,43.9,2,0.0 +20357,67,14,39,0.0 +20357,9,97,23,0.0 +20357,46,12,37,0.0 +20357,56,38,24,0.0 +20357,35,18,25,0.0 +20358,50,16.25,6,0.0 +20358,64,33.25,13,0.0 +20358,63,43.9,24,0.0 +20358,2,19,40,0.0 +20358,20,81,11,0.0 +20358,46,12,43,0.0 +20358,72,34.8,24,0.0 +20358,7,30,42,0.0 +20358,71,21.5,42,0.0 +20358,77,13,10,0.0 +20358,65,21.05,3,0.0 +20358,59,55,7,0.0 +20358,22,21,31,0.0 +20358,47,9.5,3,0.0 +20358,15,15.5,5,0.0 +20358,6,25,39,0.0 +20358,48,12.75,41,0.0 +20358,25,14,47,0.0 +20358,60,34,10,0.0 +20358,36,19,33,0.0 +20358,1,18,3,0.0 +20358,9,97,45,0.0 +20358,4,22,21,0.0 +20358,17,39,31,0.0 +20358,51,53,50,0.0 +20358,39,18,20,0.0 +20358,53,32.8,18,0.0 +20358,13,6,44,0.0 +20358,42,14,39,0.0 +20358,43,46,1,0.0 +20358,31,12.5,12,0.0 +20358,10,31,47,0.0 +20358,28,45.6,33,0.0 +20358,27,43.9,5,0.0 +20358,33,2.5,19,0.0 +20358,35,18,15,0.0 +20358,5,21.35,16,0.0 +20358,58,13.25,47,0.0 +20358,14,23.25,14,0.0 +20358,74,10,36,0.0 +20358,52,7,44,0.0 +20358,41,9.65,28,0.0 +20358,8,40,38,0.0 +20358,30,25.89,8,0.0 +20358,67,14,35,0.0 +20358,18,62.5,40,0.0 +20358,29,123.79,46,0.0 +20358,26,31.23,27,0.0 +20358,34,14,46,0.0 +20358,23,9,31,0.0 +20358,75,7.75,8,0.0 +20358,55,24,5,0.0 +20358,16,17.45,50,0.0 +20358,73,15,21,0.0 +20358,66,17,41,0.0 +20358,54,7.45,47,0.0 +20358,45,9.5,27,0.0 +20358,68,12.5,5,0.0 +20358,76,18,23,0.0 +20359,48,12.75,37,0.0 +20359,21,10,2,0.0 +20359,77,13,14,0.0 +20359,58,13.25,45,0.0 +20359,6,25,11,0.0 +20359,44,19.45,30,0.0 +20359,72,34.8,43,0.0 +20359,59,55,35,0.0 +20359,8,40,20,0.0 +20359,36,19,9,0.0 +20359,38,263.5,1,0.0 +20359,53,32.8,45,0.0 +20359,34,14,2,0.0 +20359,2,19,24,0.0 +20359,69,36,5,0.0 +20359,41,9.65,19,0.0 +20359,17,39,5,0.0 +20359,40,18.4,5,0.0 +20359,22,21,17,0.0 +20359,68,12.5,16,0.0 +20359,45,9.5,8,0.0 +20359,50,16.25,19,0.0 +20359,11,21,48,0.0 +20359,43,46,31,0.0 +20359,52,7,24,0.0 +20359,62,49.3,24,0.0 +20359,31,12.5,7,0.0 +20359,9,97,9,0.0 +20359,70,15,43,0.0 +20359,71,21.5,27,0.0 +20359,15,15.5,23,0.0 +20359,39,18,27,0.0 +20359,74,10,22,0.0 +20359,66,17,24,0.0 +20359,61,28.5,34,0.0 +20359,60,34,16,0.0 +20359,18,62.5,37,0.0 +20359,51,53,44,0.0 +20359,16,17.45,14,0.0 +20359,35,18,49,0.0 +20359,10,31,12,0.0 +20359,4,22,48,0.0 +20359,13,6,47,0.0 +20359,65,21.05,14,0.0 +20359,30,25.89,41,0.0 +20360,8,40,1,0.0 +20360,58,13.25,49,0.0 +20360,25,14,33,0.0 +20360,59,55,34,0.0 +20360,34,14,14,0.0 +20360,65,21.05,44,0.0 +20360,26,31.23,48,0.0 +20360,15,15.5,49,0.0 +20360,50,16.25,2,0.0 +20360,20,81,41,0.0 +20360,13,6,42,0.0 +20360,56,38,32,0.0 +20360,77,13,5,0.0 +20360,33,2.5,11,0.0 +20360,22,21,23,0.0 +20360,17,39,26,0.0 +20360,76,18,12,0.0 +20360,66,17,33,0.0 +20360,18,62.5,27,0.0 +20360,38,263.5,27,0.0 +20360,11,21,19,0.0 +20360,37,26,47,0.0 +20360,28,45.6,12,0.0 +20360,42,14,29,0.0 +20360,4,22,48,0.0 +20360,48,12.75,12,0.0 +20360,27,43.9,32,0.0 +20360,75,7.75,39,0.0 +20360,1,18,13,0.0 +20360,23,9,9,0.0 +20360,10,31,5,0.0 +20360,46,12,25,0.0 +20360,70,15,38,0.0 +20360,31,12.5,13,0.0 +20360,71,21.5,29,0.0 +20360,2,19,17,0.0 +20360,68,12.5,6,0.0 +20360,54,7.45,47,0.0 +20360,32,32,19,0.0 +20360,36,19,7,0.0 +20360,62,49.3,6,0.0 +20360,5,21.35,23,0.0 +20360,43,46,19,0.0 +20360,51,53,44,0.0 +20360,29,123.79,16,0.0 +20360,64,33.25,31,0.0 +20360,63,43.9,18,0.0 +20360,55,24,5,0.0 +20360,21,10,38,0.0 +20360,14,23.25,21,0.0 +20360,16,17.45,44,0.0 +20361,21,10,48,0.0 +20361,4,22,10,0.0 +20361,53,32.8,27,0.0 +20361,19,9.2,4,0.0 +20361,15,15.5,5,0.0 +20361,55,24,4,0.0 +20361,71,21.5,14,0.0 +20361,13,6,47,0.0 +20361,18,62.5,24,0.0 +20361,2,19,32,0.0 +20361,26,31.23,36,0.0 +20361,24,4.5,16,0.0 +20361,41,9.65,4,0.0 +20361,23,9,7,0.0 +20361,34,14,44,0.0 +20361,20,81,34,0.0 +20361,76,18,35,0.0 +20361,44,19.45,8,0.0 +20361,54,7.45,17,0.0 +20361,40,18.4,16,0.0 +20361,5,21.35,45,0.0 +20361,64,33.25,6,0.0 +20361,32,32,4,0.0 +20361,56,38,41,0.0 +20361,45,9.5,14,0.0 +20361,52,7,22,0.0 +20361,70,15,42,0.0 +20361,22,21,12,0.0 +20361,25,14,4,0.0 +20361,14,23.25,33,0.0 +20361,31,12.5,26,0.0 +20361,17,39,49,0.0 +20361,50,16.25,31,0.0 +20361,47,9.5,35,0.0 +20361,35,18,48,0.0 +20361,69,36,39,0.0 +20361,75,7.75,7,0.0 +20361,59,55,8,0.0 +20361,65,21.05,40,0.0 +20361,60,34,37,0.0 +20361,43,46,26,0.0 +20361,62,49.3,43,0.0 +20361,74,10,36,0.0 +20361,67,14,27,0.0 +20361,38,263.5,6,0.0 +20361,7,30,19,0.0 +20361,16,17.45,34,0.0 +20361,6,25,14,0.0 +20361,28,45.6,11,0.0 +20361,10,31,34,0.0 +20361,12,38,33,0.0 +20361,29,123.79,50,0.0 +20361,68,12.5,13,0.0 +20361,46,12,41,0.0 +20361,63,43.9,42,0.0 +20361,30,25.89,25,0.0 +20361,9,97,4,0.0 +20361,36,19,10,0.0 +20361,57,19.5,45,0.0 +20361,61,28.5,32,0.0 +20361,8,40,24,0.0 +20361,58,13.25,28,0.0 +20361,51,53,40,0.0 +20361,48,12.75,20,0.0 +20361,72,34.8,45,0.0 +20361,49,20,50,0.0 +20361,3,10,12,0.0 +20361,77,13,20,0.0 +20361,33,2.5,32,0.0 +20361,66,17,14,0.0 +20361,39,18,39,0.0 +20361,1,18,1,0.0 +20361,27,43.9,24,0.0 +20361,73,15,40,0.0 +20362,48,12.75,19,0.0 +20362,34,14,26,0.0 +20362,77,13,35,0.0 +20362,26,31.23,9,0.0 +20362,56,38,21,0.0 +20362,71,21.5,5,0.0 +20362,76,18,42,0.0 +20362,47,9.5,20,0.0 +20362,53,32.8,17,0.0 +20362,1,18,43,0.0 +20362,54,7.45,14,0.0 +20362,10,31,9,0.0 +20362,21,10,37,0.0 +20362,25,14,34,0.0 +20362,15,15.5,22,0.0 +20362,32,32,18,0.0 +20362,44,19.45,22,0.0 +20362,40,18.4,3,0.0 +20362,8,40,17,0.0 +20362,28,45.6,40,0.0 +20362,52,7,17,0.0 +20362,20,81,27,0.0 +20362,41,9.65,15,0.0 +20362,72,34.8,50,0.0 +20362,67,14,32,0.0 +20362,64,33.25,19,0.0 +20362,22,21,34,0.0 +20362,2,19,6,0.0 +20362,55,24,20,0.0 +20362,36,19,46,0.0 +20362,11,21,26,0.0 +20362,45,9.5,44,0.0 +20362,12,38,35,0.0 +20362,37,26,47,0.0 +20362,9,97,46,0.0 +20362,19,9.2,17,0.0 +20362,3,10,39,0.0 +20362,43,46,27,0.0 +20362,68,12.5,9,0.0 +20362,13,6,1,0.0 +20362,70,15,42,0.0 +20362,49,20,18,0.0 +20362,35,18,50,0.0 +20362,18,62.5,40,0.0 +20362,74,10,39,0.0 +20362,14,23.25,32,0.0 +20362,6,25,27,0.0 +20362,75,7.75,23,0.0 +20362,60,34,25,0.0 +20362,61,28.5,21,0.0 +20362,63,43.9,45,0.0 +20362,73,15,12,0.0 +20362,31,12.5,32,0.0 +20362,17,39,45,0.0 +20362,59,55,49,0.0 +20362,39,18,4,0.0 +20362,58,13.25,32,0.0 +20362,38,263.5,8,0.0 +20362,7,30,10,0.0 +20362,66,17,23,0.0 +20362,42,14,32,0.0 +20362,29,123.79,12,0.0 +20362,24,4.5,34,0.0 +20362,30,25.89,46,0.0 +20362,46,12,2,0.0 +20362,27,43.9,18,0.0 +20362,23,9,49,0.0 +20362,4,22,45,0.0 +20363,65,21.05,13,0.0 +20363,53,32.8,17,0.0 +20363,68,12.5,36,0.0 +20363,43,46,19,0.0 +20363,19,9.2,26,0.0 +20363,7,30,25,0.0 +20363,25,14,32,0.0 +20363,28,45.6,37,0.0 +20363,39,18,20,0.0 +20363,34,14,50,0.0 +20363,3,10,35,0.0 +20363,36,19,43,0.0 +20363,77,13,28,0.0 +20363,47,9.5,8,0.0 +20364,47,9.5,10,0.0 +20364,56,38,21,0.0 +20364,58,13.25,46,0.0 +20364,71,21.5,22,0.0 +20364,55,24,3,0.0 +20364,31,12.5,38,0.0 +20364,29,123.79,35,0.0 +20364,30,25.89,38,0.0 +20364,65,21.05,36,0.0 +20364,19,9.2,17,0.0 +20364,24,4.5,20,0.0 +20364,3,10,44,0.0 +20364,64,33.25,6,0.0 +20364,32,32,37,0.0 +20364,28,45.6,44,0.0 +20364,68,12.5,24,0.0 +20364,41,9.65,32,0.0 +20364,15,15.5,33,0.0 +20364,76,18,6,0.0 +20364,39,18,27,0.0 +20364,66,17,40,0.0 +20364,45,9.5,36,0.0 +20364,36,19,15,0.0 +20364,53,32.8,10,0.0 +20364,46,12,35,0.0 +20364,42,14,5,0.0 +20364,67,14,30,0.0 +20364,5,21.35,49,0.0 +20364,37,26,31,0.0 +20364,52,7,20,0.0 +20364,13,6,42,0.0 +20364,60,34,19,0.0 +20364,49,20,3,0.0 +20364,9,97,2,0.0 +20364,74,10,45,0.0 +20364,33,2.5,43,0.0 +20365,36,19,24,0.0 +20365,47,9.5,50,0.0 +20365,73,15,44,0.0 +20365,57,19.5,10,0.0 +20365,10,31,28,0.0 +20365,49,20,9,0.0 +20365,18,62.5,4,0.0 +20365,2,19,38,0.0 +20365,68,12.5,50,0.0 +20365,4,22,2,0.0 +20365,25,14,14,0.0 +20365,20,81,34,0.0 +20365,6,25,35,0.0 +20365,22,21,13,0.0 +20365,41,9.65,48,0.0 +20365,67,14,28,0.0 +20365,33,2.5,45,0.0 +20365,74,10,35,0.0 +20365,34,14,44,0.0 +20365,52,7,37,0.0 +20365,44,19.45,18,0.0 +20365,11,21,1,0.0 +20365,24,4.5,43,0.0 +20365,43,46,4,0.0 +20365,8,40,46,0.0 +20365,50,16.25,34,0.0 +20365,21,10,17,0.0 +20365,63,43.9,47,0.0 +20365,28,45.6,41,0.0 +20365,26,31.23,21,0.0 +20365,3,10,37,0.0 +20365,38,263.5,3,0.0 +20366,67,14,13,0.0 +20366,19,9.2,30,0.0 +20366,12,38,27,0.0 +20366,18,62.5,21,0.0 +20366,27,43.9,49,0.0 +20366,66,17,18,0.0 +20366,16,17.45,18,0.0 +20366,38,263.5,45,0.0 +20366,5,21.35,35,0.0 +20366,34,14,23,0.0 +20366,2,19,43,0.0 +20366,56,38,41,0.0 +20366,48,12.75,38,0.0 +20366,42,14,6,0.0 +20366,54,7.45,45,0.0 +20366,59,55,20,0.0 +20366,31,12.5,21,0.0 +20366,39,18,27,0.0 +20366,23,9,14,0.0 +20366,9,97,6,0.0 +20366,28,45.6,48,0.0 +20366,53,32.8,41,0.0 +20366,36,19,4,0.0 +20366,30,25.89,25,0.0 +20366,75,7.75,1,0.0 +20366,55,24,43,0.0 +20366,8,40,23,0.0 +20366,11,21,24,0.0 +20366,58,13.25,26,0.0 +20366,10,31,21,0.0 +20366,3,10,36,0.0 +20367,30,25.89,2,0.0 +20367,59,55,36,0.0 +20367,4,22,30,0.0 +20367,1,18,3,0.0 +20367,46,12,20,0.0 +20367,52,7,6,0.0 +20367,61,28.5,22,0.0 +20367,65,21.05,29,0.0 +20367,37,26,40,0.0 +20367,67,14,33,0.0 +20367,60,34,7,0.0 +20367,42,14,16,0.0 +20367,43,46,48,0.0 +20367,70,15,32,0.0 +20367,71,21.5,50,0.0 +20367,9,97,11,0.0 +20367,8,40,43,0.0 +20367,57,19.5,44,0.0 +20367,24,4.5,24,0.0 +20367,69,36,2,0.0 +20367,27,43.9,19,0.0 +20368,59,55,46,0.0 +20368,64,33.25,43,0.0 +20368,65,21.05,40,0.0 +20368,49,20,21,0.0 +20368,23,9,38,0.0 +20368,58,13.25,10,0.0 +20368,54,7.45,48,0.0 +20368,48,12.75,46,0.0 +20368,55,24,25,0.0 +20368,73,15,12,0.0 +20368,43,46,46,0.0 +20368,11,21,16,0.0 +20368,74,10,11,0.0 +20368,41,9.65,50,0.0 +20368,18,62.5,18,0.0 +20368,5,21.35,10,0.0 +20368,52,7,36,0.0 +20368,8,40,1,0.0 +20368,62,49.3,14,0.0 +20368,37,26,36,0.0 +20368,51,53,18,0.0 +20368,42,14,26,0.0 +20368,35,18,45,0.0 +20368,68,12.5,50,0.0 +20368,45,9.5,45,0.0 +20368,24,4.5,32,0.0 +20368,69,36,25,0.0 +20368,4,22,27,0.0 +20368,31,12.5,30,0.0 +20368,29,123.79,2,0.0 +20368,70,15,35,0.0 +20368,38,263.5,40,0.0 +20368,36,19,7,0.0 +20368,20,81,5,0.0 +20368,3,10,1,0.0 +20368,14,23.25,33,0.0 +20368,33,2.5,27,0.0 +20368,1,18,16,0.0 +20368,50,16.25,20,0.0 +20369,74,10,47,0.0 +20369,12,38,38,0.0 +20369,33,2.5,33,0.0 +20369,56,38,25,0.0 +20369,75,7.75,50,0.0 +20369,17,39,25,0.0 +20369,50,16.25,11,0.0 +20369,16,17.45,20,0.0 +20369,3,10,36,0.0 +20369,38,263.5,21,0.0 +20369,45,9.5,43,0.0 +20369,15,15.5,31,0.0 +20369,39,18,42,0.0 +20369,30,25.89,4,0.0 +20369,52,7,19,0.0 +20369,23,9,17,0.0 +20369,55,24,49,0.0 +20369,67,14,47,0.0 +20369,27,43.9,33,0.0 +20369,71,21.5,17,0.0 +20369,7,30,7,0.0 +20370,24,4.5,47,0.0 +20370,63,43.9,39,0.0 +20370,27,43.9,37,0.0 +20370,9,97,34,0.0 +20370,62,49.3,8,0.0 +20370,54,7.45,49,0.0 +20370,11,21,50,0.0 +20370,5,21.35,46,0.0 +20370,3,10,29,0.0 +20370,53,32.8,40,0.0 +20370,45,9.5,27,0.0 +20370,10,31,15,0.0 +20370,40,18.4,41,0.0 +20370,39,18,38,0.0 +20370,29,123.79,22,0.0 +20370,72,34.8,30,0.0 +20370,69,36,7,0.0 +20371,14,23.25,49,0.0 +20371,46,12,11,0.0 +20371,23,9,45,0.0 +20371,37,26,24,0.0 +20371,52,7,43,0.0 +20371,67,14,39,0.0 +20371,62,49.3,21,0.0 +20371,16,17.45,33,0.0 +20371,29,123.79,24,0.0 +20371,66,17,47,0.0 +20371,59,55,20,0.0 +20371,42,14,16,0.0 +20371,63,43.9,16,0.0 +20371,1,18,31,0.0 +20371,40,18.4,22,0.0 +20371,9,97,49,0.0 +20371,6,25,16,0.0 +20371,50,16.25,31,0.0 +20371,45,9.5,22,0.0 +20371,61,28.5,24,0.0 +20371,25,14,1,0.0 +20371,34,14,34,0.0 +20371,53,32.8,43,0.0 +20371,18,62.5,47,0.0 +20371,28,45.6,24,0.0 +20371,8,40,33,0.0 +20371,19,9.2,16,0.0 +20371,26,31.23,44,0.0 +20371,38,263.5,5,0.0 +20371,44,19.45,9,0.0 +20371,71,21.5,17,0.0 +20371,21,10,8,0.0 +20371,13,6,11,0.0 +20371,2,19,20,0.0 +20371,65,21.05,29,0.0 +20371,20,81,19,0.0 +20371,43,46,25,0.0 +20371,7,30,32,0.0 +20371,17,39,28,0.0 +20371,41,9.65,37,0.0 +20371,74,10,30,0.0 +20371,35,18,21,0.0 +20371,36,19,24,0.0 +20371,77,13,26,0.0 +20371,60,34,28,0.0 +20371,70,15,31,0.0 +20371,58,13.25,36,0.0 +20371,5,21.35,41,0.0 +20371,10,31,20,0.0 +20371,48,12.75,10,0.0 +20371,76,18,6,0.0 +20371,27,43.9,20,0.0 +20372,61,28.5,19,0.0 +20372,38,263.5,29,0.0 +20372,49,20,28,0.0 +20372,30,25.89,2,0.0 +20372,64,33.25,14,0.0 +20372,76,18,2,0.0 +20372,31,12.5,29,0.0 +20372,75,7.75,47,0.0 +20372,54,7.45,48,0.0 +20372,48,12.75,36,0.0 +20372,22,21,11,0.0 +20372,58,13.25,7,0.0 +20372,68,12.5,45,0.0 +20372,77,13,6,0.0 +20372,15,15.5,4,0.0 +20372,24,4.5,43,0.0 +20372,39,18,1,0.0 +20372,12,38,39,0.0 +20372,3,10,18,0.0 +20372,43,46,49,0.0 +20372,45,9.5,17,0.0 +20372,1,18,37,0.0 +20372,13,6,23,0.0 +20372,16,17.45,34,0.0 +20372,6,25,6,0.0 +20372,59,55,22,0.0 +20372,41,9.65,45,0.0 +20372,47,9.5,49,0.0 +20372,2,19,48,0.0 +20372,50,16.25,10,0.0 +20372,35,18,16,0.0 +20372,32,32,5,0.0 +20372,63,43.9,37,0.0 +20372,71,21.5,18,0.0 +20372,62,49.3,48,0.0 +20372,19,9.2,5,0.0 +20372,4,22,34,0.0 +20372,17,39,19,0.0 +20372,42,14,5,0.0 +20372,52,7,7,0.0 +20372,70,15,17,0.0 +20372,44,19.45,10,0.0 +20372,9,97,16,0.0 +20372,73,15,28,0.0 +20372,72,34.8,3,0.0 +20372,27,43.9,38,0.0 +20372,20,81,26,0.0 +20372,46,12,9,0.0 +20372,53,32.8,5,0.0 +20372,65,21.05,4,0.0 +20372,69,36,27,0.0 +20372,23,9,50,0.0 +20372,57,19.5,42,0.0 +20372,28,45.6,9,0.0 +20372,7,30,28,0.0 +20372,18,62.5,17,0.0 +20372,8,40,22,0.0 +20372,34,14,27,0.0 +20372,11,21,1,0.0 +20372,56,38,30,0.0 +20372,51,53,4,0.0 +20372,67,14,32,0.0 +20372,29,123.79,32,0.0 +20372,74,10,20,0.0 +20372,33,2.5,29,0.0 +20372,55,24,42,0.0 +20372,26,31.23,32,0.0 +20372,14,23.25,6,0.0 +20372,21,10,35,0.0 +20372,40,18.4,9,0.0 +20372,5,21.35,29,0.0 +20372,25,14,26,0.0 +20372,10,31,14,0.0 +20372,37,26,38,0.0 +20372,36,19,7,0.0 +20372,60,34,32,0.0 +20373,45,9.5,44,0.0 +20373,9,97,35,0.0 +20373,56,38,43,0.0 +20373,38,263.5,39,0.0 +20373,71,21.5,49,0.0 +20373,4,22,39,0.0 +20373,28,45.6,10,0.0 +20373,36,19,24,0.0 +20374,10,31,12,0.0 +20374,4,22,48,0.0 +20374,27,43.9,11,0.0 +20374,20,81,11,0.0 +20374,57,19.5,42,0.0 +20374,29,123.79,37,0.0 +20374,40,18.4,19,0.0 +20374,51,53,10,0.0 +20374,48,12.75,6,0.0 +20374,37,26,27,0.0 +20374,59,55,12,0.0 +20374,30,25.89,23,0.0 +20374,14,23.25,15,0.0 +20374,32,32,18,0.0 +20374,7,30,20,0.0 +20374,73,15,16,0.0 +20374,76,18,43,0.0 +20374,16,17.45,50,0.0 +20374,63,43.9,45,0.0 +20374,11,21,36,0.0 +20374,3,10,23,0.0 +20374,66,17,30,0.0 +20374,53,32.8,40,0.0 +20374,28,45.6,46,0.0 +20374,69,36,24,0.0 +20374,70,15,20,0.0 +20375,20,81,22,0.0 +20375,13,6,19,0.0 +20375,48,12.75,24,0.0 +20375,11,21,37,0.0 +20375,65,21.05,29,0.0 +20375,7,30,31,0.0 +20375,23,9,34,0.0 +20375,69,36,12,0.0 +20375,51,53,42,0.0 +20375,19,9.2,10,0.0 +20375,5,21.35,7,0.0 +20375,43,46,44,0.0 +20375,8,40,23,0.0 +20375,38,263.5,18,0.0 +20376,66,17,37,0.0 +20376,43,46,41,0.0 +20376,42,14,46,0.0 +20376,38,263.5,43,0.0 +20376,49,20,49,0.0 +20376,73,15,17,0.0 +20376,19,9.2,6,0.0 +20376,3,10,48,0.0 +20376,46,12,39,0.0 +20376,39,18,46,0.0 +20376,65,21.05,38,0.0 +20376,5,21.35,48,0.0 +20376,50,16.25,32,0.0 +20376,7,30,35,0.0 +20376,63,43.9,25,0.0 +20376,74,10,11,0.0 +20376,21,10,41,0.0 +20376,62,49.3,29,0.0 +20376,23,9,21,0.0 +20376,30,25.89,27,0.0 +20376,29,123.79,39,0.0 +20376,18,62.5,49,0.0 +20376,12,38,36,0.0 +20376,56,38,17,0.0 +20376,47,9.5,36,0.0 +20376,45,9.5,14,0.0 +20376,60,34,26,0.0 +20376,35,18,5,0.0 +20376,67,14,41,0.0 +20376,9,97,17,0.0 +20376,11,21,13,0.0 +20376,51,53,9,0.0 +20376,48,12.75,41,0.0 +20376,6,25,12,0.0 +20376,16,17.45,38,0.0 +20376,37,26,10,0.0 +20376,52,7,7,0.0 +20376,68,12.5,34,0.0 +20376,54,7.45,28,0.0 +20376,2,19,34,0.0 +20376,72,34.8,48,0.0 +20376,10,31,40,0.0 +20376,8,40,26,0.0 +20376,76,18,26,0.0 +20377,68,12.5,11,0.0 +20377,26,31.23,21,0.0 +20377,19,9.2,13,0.0 +20377,18,62.5,33,0.0 +20377,15,15.5,50,0.0 +20377,1,18,32,0.0 +20377,60,34,4,0.0 +20377,61,28.5,41,0.0 +20377,46,12,40,0.0 +20377,32,32,16,0.0 +20377,24,4.5,44,0.0 +20377,39,18,2,0.0 +20377,69,36,24,0.0 +20377,33,2.5,31,0.0 +20377,28,45.6,31,0.0 +20377,55,24,6,0.0 +20377,6,25,24,0.0 +20377,45,9.5,32,0.0 +20377,40,18.4,44,0.0 +20377,22,21,25,0.0 +20377,41,9.65,15,0.0 +20377,17,39,35,0.0 +20377,10,31,5,0.0 +20377,42,14,12,0.0 +20377,72,34.8,25,0.0 +20377,71,21.5,22,0.0 +20377,9,97,48,0.0 +20377,37,26,37,0.0 +20377,5,21.35,21,0.0 +20377,56,38,6,0.0 +20377,36,19,50,0.0 +20377,21,10,35,0.0 +20378,56,38,48,0.0 +20378,10,31,43,0.0 +20378,77,13,30,0.0 +20378,32,32,15,0.0 +20378,6,25,27,0.0 +20378,57,19.5,40,0.0 +20378,14,23.25,18,0.0 +20378,43,46,28,0.0 +20378,55,24,17,0.0 +20378,73,15,42,0.0 +20378,27,43.9,12,0.0 +20378,33,2.5,8,0.0 +20378,24,4.5,2,0.0 +20378,54,7.45,34,0.0 +20378,13,6,39,0.0 +20378,63,43.9,19,0.0 +20378,53,32.8,29,0.0 +20378,29,123.79,45,0.0 +20378,28,45.6,5,0.0 +20378,44,19.45,44,0.0 +20378,47,9.5,10,0.0 +20378,45,9.5,20,0.0 +20378,61,28.5,39,0.0 +20378,65,21.05,44,0.0 +20378,1,18,23,0.0 +20378,70,15,50,0.0 +20378,35,18,44,0.0 +20378,2,19,34,0.0 +20378,50,16.25,12,0.0 +20378,48,12.75,46,0.0 +20378,16,17.45,42,0.0 +20378,71,21.5,6,0.0 +20378,39,18,11,0.0 +20378,21,10,9,0.0 +20378,5,21.35,2,0.0 +20378,59,55,41,0.0 +20378,17,39,26,0.0 +20378,8,40,9,0.0 +20378,60,34,10,0.0 +20378,49,20,14,0.0 +20378,36,19,13,0.0 +20378,3,10,11,0.0 +20378,41,9.65,12,0.0 +20378,68,12.5,32,0.0 +20378,51,53,4,0.0 +20378,64,33.25,27,0.0 +20378,7,30,22,0.0 +20378,19,9.2,28,0.0 +20378,52,7,18,0.0 +20378,40,18.4,4,0.0 +20378,37,26,50,0.0 +20378,12,38,43,0.0 +20378,75,7.75,34,0.0 +20378,22,21,27,0.0 +20378,67,14,44,0.0 +20378,25,14,30,0.0 +20378,72,34.8,1,0.0 +20378,4,22,23,0.0 +20378,26,31.23,5,0.0 +20378,15,15.5,47,0.0 +20378,23,9,25,0.0 +20378,30,25.89,30,0.0 +20378,9,97,1,0.0 +20378,42,14,18,0.0 +20378,74,10,31,0.0 +20378,66,17,32,0.0 +20378,18,62.5,3,0.0 +20378,76,18,31,0.0 +20378,20,81,33,0.0 +20378,34,14,25,0.0 +20378,38,263.5,27,0.0 +20379,1,18,13,0.0 +20379,44,19.45,13,0.0 +20379,11,21,12,0.0 +20379,41,9.65,29,0.0 +20379,43,46,33,0.0 +20379,26,31.23,10,0.0 +20379,77,13,2,0.0 +20379,46,12,6,0.0 +20379,28,45.6,25,0.0 +20379,69,36,20,0.0 +20379,30,25.89,50,0.0 +20379,74,10,46,0.0 +20379,21,10,35,0.0 +20379,7,30,15,0.0 +20379,6,25,43,0.0 +20379,47,9.5,42,0.0 +20379,56,38,43,0.0 +20379,58,13.25,11,0.0 +20379,42,14,24,0.0 +20379,54,7.45,11,0.0 +20379,19,9.2,46,0.0 +20379,25,14,27,0.0 +20379,35,18,18,0.0 +20379,8,40,5,0.0 +20379,73,15,6,0.0 +20379,27,43.9,46,0.0 +20379,45,9.5,16,0.0 +20379,39,18,17,0.0 +20379,22,21,40,0.0 +20379,33,2.5,35,0.0 +20380,61,28.5,38,0.0 +20381,10,31,12,0.0 +20381,52,7,24,0.0 +20381,74,10,49,0.0 +20381,23,9,36,0.0 +20381,3,10,8,0.0 +20381,64,33.25,21,0.0 +20381,9,97,37,0.0 +20381,45,9.5,35,0.0 +20381,1,18,43,0.0 +20381,15,15.5,43,0.0 +20381,59,55,28,0.0 +20381,63,43.9,44,0.0 +20381,40,18.4,29,0.0 +20381,22,21,43,0.0 +20381,6,25,7,0.0 +20381,75,7.75,46,0.0 +20381,26,31.23,47,0.0 +20381,76,18,26,0.0 +20381,11,21,28,0.0 +20381,33,2.5,34,0.0 +20381,21,10,10,0.0 +20381,34,14,17,0.0 +20381,55,24,33,0.0 +20382,49,20,50,0.0 +20382,34,14,31,0.0 +20382,46,12,39,0.0 +20382,64,33.25,24,0.0 +20382,52,7,47,0.0 +20382,1,18,13,0.0 +20382,4,22,20,0.0 +20382,26,31.23,39,0.0 +20382,22,21,48,0.0 +20382,57,19.5,16,0.0 +20382,63,43.9,33,0.0 +20382,77,13,8,0.0 +20382,25,14,38,0.0 +20382,32,32,50,0.0 +20382,75,7.75,44,0.0 +20382,38,263.5,50,0.0 +20382,2,19,37,0.0 +20382,69,36,28,0.0 +20382,56,38,37,0.0 +20382,59,55,17,0.0 +20382,28,45.6,26,0.0 +20382,10,31,2,0.0 +20382,17,39,50,0.0 +20382,70,15,32,0.0 +20382,40,18.4,42,0.0 +20382,65,21.05,31,0.0 +20382,14,23.25,9,0.0 +20382,66,17,18,0.0 +20382,41,9.65,7,0.0 +20382,31,12.5,34,0.0 +20382,72,34.8,22,0.0 +20382,44,19.45,11,0.0 +20382,29,123.79,21,0.0 +20382,36,19,41,0.0 +20382,60,34,5,0.0 +20382,33,2.5,41,0.0 +20382,73,15,41,0.0 +20383,13,6,32,0.0 +20383,51,53,6,0.0 +20383,42,14,23,0.0 +20383,9,97,2,0.0 +20383,40,18.4,11,0.0 +20383,26,31.23,43,0.0 +20383,31,12.5,42,0.0 +20383,49,20,3,0.0 +20383,38,263.5,13,0.0 +20383,77,13,34,0.0 +20383,61,28.5,37,0.0 +20383,37,26,19,0.0 +20383,62,49.3,41,0.0 +20383,52,7,40,0.0 +20383,63,43.9,12,0.0 +20383,12,38,42,0.0 +20383,76,18,39,0.0 +20383,43,46,34,0.0 +20383,46,12,23,0.0 +20383,29,123.79,43,0.0 +20383,54,7.45,45,0.0 +20383,22,21,18,0.0 +20383,57,19.5,4,0.0 +20383,32,32,32,0.0 +20383,33,2.5,5,0.0 +20383,18,62.5,17,0.0 +20383,67,14,2,0.0 +20383,11,21,47,0.0 +20383,64,33.25,16,0.0 +20383,19,9.2,26,0.0 +20383,36,19,28,0.0 +20383,75,7.75,22,0.0 +20383,4,22,18,0.0 +20383,27,43.9,45,0.0 +20383,1,18,46,0.0 +20383,24,4.5,44,0.0 +20383,47,9.5,45,0.0 +20383,23,9,20,0.0 +20383,53,32.8,28,0.0 +20383,21,10,14,0.0 +20383,39,18,18,0.0 +20383,14,23.25,44,0.0 +20383,8,40,19,0.0 +20383,35,18,15,0.0 +20383,3,10,21,0.0 +20383,66,17,29,0.0 +20383,10,31,21,0.0 +20383,28,45.6,1,0.0 +20383,50,16.25,29,0.0 +20383,65,21.05,5,0.0 +20383,68,12.5,11,0.0 +20383,20,81,35,0.0 +20383,58,13.25,29,0.0 +20383,59,55,49,0.0 +20383,7,30,11,0.0 +20383,15,15.5,4,0.0 +20383,6,25,31,0.0 +20383,5,21.35,9,0.0 +20383,69,36,44,0.0 +20383,25,14,39,0.0 +20383,71,21.5,25,0.0 +20383,34,14,2,0.0 +20383,72,34.8,33,0.0 +20383,30,25.89,46,0.0 +20383,55,24,44,0.0 +20383,44,19.45,16,0.0 +20384,39,18,12,0.0 +20384,56,38,9,0.0 +20384,75,7.75,48,0.0 +20384,69,36,15,0.0 +20384,34,14,42,0.0 +20384,77,13,38,0.0 +20384,15,15.5,43,0.0 +20384,63,43.9,20,0.0 +20384,10,31,32,0.0 +20384,64,33.25,33,0.0 +20384,35,18,35,0.0 +20384,6,25,41,0.0 +20384,26,31.23,20,0.0 +20384,7,30,41,0.0 +20384,19,9.2,22,0.0 +20384,27,43.9,2,0.0 +20384,49,20,23,0.0 +20384,66,17,19,0.0 +20384,32,32,3,0.0 +20384,12,38,20,0.0 +20384,20,81,25,0.0 +20384,55,24,29,0.0 +20384,22,21,40,0.0 +20384,58,13.25,32,0.0 +20384,41,9.65,30,0.0 +20384,67,14,27,0.0 +20384,76,18,2,0.0 +20384,68,12.5,49,0.0 +20384,65,21.05,23,0.0 +20384,62,49.3,18,0.0 +20384,30,25.89,41,0.0 +20384,47,9.5,37,0.0 +20384,1,18,16,0.0 +20384,23,9,15,0.0 +20384,59,55,34,0.0 +20384,72,34.8,38,0.0 +20384,48,12.75,40,0.0 +20384,43,46,31,0.0 +20384,36,19,8,0.0 +20384,38,263.5,42,0.0 +20384,8,40,23,0.0 +20384,9,97,24,0.0 +20384,5,21.35,10,0.0 +20384,28,45.6,6,0.0 +20384,50,16.25,22,0.0 +20384,17,39,4,0.0 +20384,60,34,17,0.0 +20384,44,19.45,29,0.0 +20384,53,32.8,25,0.0 +20384,74,10,30,0.0 +20384,3,10,45,0.0 +20384,52,7,22,0.0 +20384,13,6,2,0.0 +20384,31,12.5,16,0.0 +20384,24,4.5,17,0.0 +20384,51,53,33,0.0 +20384,18,62.5,43,0.0 +20384,42,14,13,0.0 +20384,45,9.5,42,0.0 +20384,70,15,32,0.0 +20384,71,21.5,3,0.0 +20385,7,30,15,0.0 +20385,26,31.23,21,0.0 +20385,51,53,30,0.0 +20385,22,21,18,0.0 +20385,58,13.25,6,0.0 +20386,69,36,50,0.0 +20386,45,9.5,26,0.0 +20386,34,14,16,0.0 +20386,27,43.9,44,0.0 +20386,76,18,24,0.0 +20386,47,9.5,48,0.0 +20386,25,14,21,0.0 +20386,48,12.75,18,0.0 +20386,20,81,9,0.0 +20386,63,43.9,37,0.0 +20386,37,26,26,0.0 +20386,3,10,31,0.0 +20386,52,7,42,0.0 +20386,16,17.45,13,0.0 +20386,65,21.05,26,0.0 +20386,66,17,1,0.0 +20386,13,6,23,0.0 +20386,12,38,28,0.0 +20386,67,14,7,0.0 +20386,59,55,27,0.0 +20386,4,22,3,0.0 +20386,2,19,50,0.0 +20386,30,25.89,36,0.0 +20386,8,40,17,0.0 +20386,41,9.65,40,0.0 +20386,53,32.8,42,0.0 +20386,36,19,29,0.0 +20386,17,39,23,0.0 +20386,15,15.5,45,0.0 +20386,57,19.5,46,0.0 +20386,33,2.5,42,0.0 +20386,1,18,34,0.0 +20386,7,30,47,0.0 +20386,62,49.3,34,0.0 +20386,10,31,13,0.0 +20386,49,20,1,0.0 +20386,31,12.5,49,0.0 +20386,60,34,50,0.0 +20386,72,34.8,14,0.0 +20386,43,46,20,0.0 +20386,75,7.75,34,0.0 +20386,5,21.35,50,0.0 +20386,19,9.2,47,0.0 +20386,18,62.5,20,0.0 +20386,50,16.25,41,0.0 +20386,61,28.5,40,0.0 +20386,46,12,33,0.0 +20386,22,21,11,0.0 +20386,44,19.45,2,0.0 +20386,6,25,48,0.0 +20386,38,263.5,16,0.0 +20386,70,15,47,0.0 +20386,29,123.79,21,0.0 +20386,71,21.5,7,0.0 +20386,55,24,47,0.0 +20386,40,18.4,1,0.0 +20386,73,15,31,0.0 +20386,24,4.5,5,0.0 +20386,42,14,26,0.0 +20387,39,18,28,0.0 +20387,28,45.6,39,0.0 +20387,47,9.5,29,0.0 +20387,61,28.5,26,0.0 +20387,56,38,7,0.0 +20387,41,9.65,46,0.0 +20387,25,14,46,0.0 +20387,76,18,2,0.0 +20387,4,22,10,0.0 +20387,18,62.5,16,0.0 +20387,66,17,28,0.0 +20387,60,34,42,0.0 +20387,52,7,10,0.0 +20387,29,123.79,10,0.0 +20387,30,25.89,25,0.0 +20387,44,19.45,1,0.0 +20387,14,23.25,32,0.0 +20387,71,21.5,22,0.0 +20388,5,21.35,40,0.0 +20388,44,19.45,26,0.0 +20388,30,25.89,23,0.0 +20388,76,18,39,0.0 +20389,19,9.2,36,0.0 +20389,72,34.8,1,0.0 +20389,2,19,15,0.0 +20389,13,6,4,0.0 +20389,64,33.25,15,0.0 +20389,54,7.45,39,0.0 +20389,1,18,50,0.0 +20389,73,15,42,0.0 +20389,17,39,21,0.0 +20389,70,15,14,0.0 +20389,59,55,21,0.0 +20389,7,30,10,0.0 +20389,69,36,27,0.0 +20389,56,38,19,0.0 +20389,45,9.5,13,0.0 +20389,49,20,45,0.0 +20389,62,49.3,12,0.0 +20389,53,32.8,38,0.0 +20389,37,26,47,0.0 +20389,27,43.9,26,0.0 +20389,68,12.5,39,0.0 +20389,50,16.25,24,0.0 +20389,33,2.5,14,0.0 +20389,24,4.5,16,0.0 +20389,39,18,16,0.0 +20389,43,46,32,0.0 +20389,31,12.5,8,0.0 +20389,4,22,18,0.0 +20389,46,12,46,0.0 +20389,40,18.4,44,0.0 +20389,21,10,29,0.0 +20389,18,62.5,48,0.0 +20389,51,53,38,0.0 +20389,6,25,25,0.0 +20389,20,81,42,0.0 +20389,34,14,50,0.0 +20389,65,21.05,34,0.0 +20389,36,19,5,0.0 +20389,52,7,1,0.0 +20389,71,21.5,42,0.0 +20389,47,9.5,41,0.0 +20389,22,21,33,0.0 +20389,32,32,4,0.0 +20389,30,25.89,38,0.0 +20389,8,40,42,0.0 +20389,60,34,33,0.0 +20389,77,13,33,0.0 +20389,35,18,6,0.0 +20389,15,15.5,37,0.0 +20389,63,43.9,24,0.0 +20389,44,19.45,18,0.0 +20389,38,263.5,21,0.0 +20389,16,17.45,44,0.0 +20389,14,23.25,7,0.0 +20389,42,14,43,0.0 +20389,5,21.35,20,0.0 +20389,41,9.65,48,0.0 +20389,76,18,14,0.0 +20389,9,97,41,0.0 +20390,45,9.5,22,0.0 +20390,26,31.23,13,0.0 +20390,49,20,28,0.0 +20390,60,34,29,0.0 +20390,12,38,36,0.0 +20390,59,55,9,0.0 +20390,54,7.45,45,0.0 +20390,42,14,7,0.0 +20390,5,21.35,43,0.0 +20390,75,7.75,30,0.0 +20390,3,10,13,0.0 +20390,77,13,37,0.0 +20390,29,123.79,36,0.0 +20390,68,12.5,16,0.0 +20390,24,4.5,42,0.0 +20390,40,18.4,39,0.0 +20390,38,263.5,49,0.0 +20390,66,17,26,0.0 +20390,39,18,3,0.0 +20390,28,45.6,30,0.0 +20390,71,21.5,32,0.0 +20390,63,43.9,26,0.0 +20390,36,19,35,0.0 +20390,21,10,43,0.0 +20390,8,40,50,0.0 +20390,61,28.5,31,0.0 +20390,33,2.5,50,0.0 +20390,20,81,24,0.0 +20390,14,23.25,3,0.0 +20390,18,62.5,36,0.0 +20390,9,97,15,0.0 +20390,22,21,23,0.0 +20390,55,24,18,0.0 +20390,51,53,37,0.0 +20390,2,19,27,0.0 +20390,4,22,34,0.0 +20390,10,31,45,0.0 +20390,64,33.25,1,0.0 +20390,17,39,13,0.0 +20390,62,49.3,36,0.0 +20390,57,19.5,34,0.0 +20390,52,7,28,0.0 +20390,69,36,39,0.0 +20390,30,25.89,16,0.0 +20390,46,12,36,0.0 +20390,50,16.25,17,0.0 +20390,72,34.8,5,0.0 +20390,32,32,18,0.0 +20390,47,9.5,35,0.0 +20390,67,14,14,0.0 +20390,37,26,43,0.0 +20390,56,38,6,0.0 +20390,43,46,22,0.0 +20390,23,9,39,0.0 +20390,76,18,33,0.0 +20391,70,15,2,0.0 +20391,77,13,3,0.0 +20391,65,21.05,43,0.0 +20391,47,9.5,1,0.0 +20391,26,31.23,46,0.0 +20391,66,17,8,0.0 +20391,12,38,18,0.0 +20391,69,36,38,0.0 +20391,5,21.35,41,0.0 +20391,54,7.45,35,0.0 +20391,35,18,1,0.0 +20391,75,7.75,18,0.0 +20391,10,31,18,0.0 +20391,8,40,35,0.0 +20391,59,55,2,0.0 +20391,13,6,37,0.0 +20391,58,13.25,23,0.0 +20391,71,21.5,3,0.0 +20391,76,18,13,0.0 +20391,36,19,42,0.0 +20391,27,43.9,39,0.0 +20391,61,28.5,16,0.0 +20391,16,17.45,33,0.0 +20391,24,4.5,48,0.0 +20391,3,10,11,0.0 +20391,52,7,21,0.0 +20391,31,12.5,40,0.0 +20391,30,25.89,50,0.0 +20391,19,9.2,24,0.0 +20391,67,14,3,0.0 +20391,1,18,21,0.0 +20391,73,15,29,0.0 +20391,23,9,9,0.0 +20391,53,32.8,44,0.0 +20391,34,14,24,0.0 +20391,40,18.4,20,0.0 +20391,55,24,40,0.0 +20391,64,33.25,23,0.0 +20391,29,123.79,41,0.0 +20391,28,45.6,34,0.0 +20391,32,32,17,0.0 +20391,25,14,19,0.0 +20391,15,15.5,37,0.0 +20391,6,25,25,0.0 +20391,39,18,3,0.0 +20391,51,53,8,0.0 +20391,38,263.5,45,0.0 +20391,11,21,39,0.0 +20391,42,14,49,0.0 +20391,74,10,15,0.0 +20391,9,97,41,0.0 +20391,50,16.25,8,0.0 +20391,56,38,29,0.0 +20392,64,33.25,40,0.0 +20392,18,62.5,26,0.0 +20392,44,19.45,32,0.0 +20392,54,7.45,31,0.0 +20392,36,19,11,0.0 +20392,10,31,50,0.0 +20392,70,15,18,0.0 +20392,58,13.25,9,0.0 +20392,26,31.23,26,0.0 +20392,67,14,48,0.0 +20392,68,12.5,7,0.0 +20392,63,43.9,7,0.0 +20392,16,17.45,47,0.0 +20392,6,25,14,0.0 +20392,22,21,2,0.0 +20392,40,18.4,18,0.0 +20392,74,10,8,0.0 +20392,21,10,48,0.0 +20392,24,4.5,48,0.0 +20392,55,24,24,0.0 +20392,75,7.75,39,0.0 +20392,29,123.79,49,0.0 +20392,53,32.8,45,0.0 +20392,3,10,44,0.0 +20392,23,9,45,0.0 +20392,66,17,42,0.0 +20392,25,14,2,0.0 +20392,28,45.6,17,0.0 +20392,9,97,32,0.0 +20392,31,12.5,35,0.0 +20392,30,25.89,45,0.0 +20392,35,18,25,0.0 +20392,15,15.5,47,0.0 +20392,5,21.35,47,0.0 +20392,13,6,2,0.0 +20392,41,9.65,43,0.0 +20392,1,18,11,0.0 +20392,50,16.25,5,0.0 +20392,38,263.5,47,0.0 +20392,32,32,2,0.0 +20392,2,19,4,0.0 +20392,46,12,16,0.0 +20392,65,21.05,37,0.0 +20392,39,18,1,0.0 +20392,73,15,4,0.0 +20392,37,26,34,0.0 +20392,62,49.3,14,0.0 +20392,43,46,43,0.0 +20392,14,23.25,6,0.0 +20392,4,22,24,0.0 +20392,19,9.2,7,0.0 +20392,76,18,10,0.0 +20392,17,39,29,0.0 +20392,20,81,25,0.0 +20392,45,9.5,40,0.0 +20392,12,38,35,0.0 +20392,49,20,1,0.0 +20392,33,2.5,30,0.0 +20392,69,36,37,0.0 +20392,42,14,39,0.0 +20392,47,9.5,26,0.0 +20392,34,14,46,0.0 +20393,24,4.5,1,0.0 +20393,31,12.5,50,0.0 +20393,17,39,30,0.0 +20393,15,15.5,24,0.0 +20393,76,18,21,0.0 +20393,46,12,27,0.0 +20393,65,21.05,44,0.0 +20393,56,38,21,0.0 +20393,59,55,22,0.0 +20393,77,13,47,0.0 +20393,36,19,24,0.0 +20393,45,9.5,21,0.0 +20393,61,28.5,33,0.0 +20393,39,18,14,0.0 +20393,49,20,1,0.0 +20393,64,33.25,46,0.0 +20393,27,43.9,13,0.0 +20393,20,81,6,0.0 +20393,38,263.5,3,0.0 +20393,4,22,27,0.0 +20393,58,13.25,35,0.0 +20393,50,16.25,18,0.0 +20393,9,97,15,0.0 +20393,33,2.5,36,0.0 +20393,2,19,14,0.0 +20393,52,7,2,0.0 +20393,10,31,45,0.0 +20393,22,21,19,0.0 +20393,1,18,43,0.0 +20393,47,9.5,1,0.0 +20393,35,18,42,0.0 +20393,60,34,40,0.0 +20393,18,62.5,19,0.0 +20393,14,23.25,9,0.0 +20393,54,7.45,9,0.0 +20393,68,12.5,45,0.0 +20393,70,15,24,0.0 +20393,41,9.65,24,0.0 +20393,73,15,28,0.0 +20393,55,24,28,0.0 +20393,11,21,6,0.0 +20393,66,17,45,0.0 +20393,37,26,27,0.0 +20393,53,32.8,19,0.0 +20393,44,19.45,18,0.0 +20393,16,17.45,3,0.0 +20393,43,46,44,0.0 +20393,57,19.5,33,0.0 +20393,29,123.79,35,0.0 +20393,69,36,33,0.0 +20393,74,10,26,0.0 +20393,12,38,7,0.0 +20393,42,14,15,0.0 +20393,28,45.6,20,0.0 +20394,44,19.45,37,0.0 +20394,18,62.5,49,0.0 +20394,24,4.5,42,0.0 +20394,39,18,12,0.0 +20394,10,31,31,0.0 +20394,50,16.25,38,0.0 +20394,54,7.45,40,0.0 +20394,51,53,37,0.0 +20394,47,9.5,28,0.0 +20394,59,55,31,0.0 +20394,22,21,43,0.0 +20394,77,13,15,0.0 +20394,55,24,12,0.0 +20394,41,9.65,48,0.0 +20394,37,26,28,0.0 +20394,38,263.5,20,0.0 +20394,60,34,17,0.0 +20394,73,15,23,0.0 +20394,74,10,3,0.0 +20394,23,9,16,0.0 +20394,70,15,46,0.0 +20394,28,45.6,9,0.0 +20394,57,19.5,13,0.0 +20394,19,9.2,30,0.0 +20394,66,17,21,0.0 +20394,15,15.5,9,0.0 +20394,40,18.4,40,0.0 +20394,36,19,16,0.0 +20394,76,18,4,0.0 +20394,6,25,21,0.0 +20394,20,81,45,0.0 +20394,12,38,8,0.0 +20394,26,31.23,31,0.0 +20394,63,43.9,34,0.0 +20394,58,13.25,38,0.0 +20394,67,14,32,0.0 +20394,32,32,45,0.0 +20394,4,22,28,0.0 +20394,16,17.45,40,0.0 +20394,7,30,23,0.0 +20394,64,33.25,43,0.0 +20394,3,10,26,0.0 +20395,61,28.5,14,0.0 +20395,45,9.5,36,0.0 +20395,74,10,13,0.0 +20395,35,18,31,0.0 +20395,60,34,32,0.0 +20395,1,18,21,0.0 +20395,51,53,2,0.0 +20395,70,15,42,0.0 +20395,75,7.75,30,0.0 +20395,23,9,4,0.0 +20395,53,32.8,2,0.0 +20395,19,9.2,27,0.0 +20395,31,12.5,46,0.0 +20395,26,31.23,23,0.0 +20395,76,18,24,0.0 +20395,47,9.5,44,0.0 +20395,30,25.89,11,0.0 +20395,24,4.5,2,0.0 +20395,66,17,31,0.0 +20395,71,21.5,24,0.0 +20395,8,40,29,0.0 +20395,58,13.25,18,0.0 +20395,33,2.5,48,0.0 +20395,39,18,24,0.0 +20395,13,6,26,0.0 +20395,50,16.25,46,0.0 +20395,62,49.3,18,0.0 +20395,29,123.79,38,0.0 +20395,32,32,46,0.0 +20395,65,21.05,36,0.0 +20395,3,10,6,0.0 +20395,25,14,48,0.0 +20395,48,12.75,10,0.0 +20395,41,9.65,21,0.0 +20395,37,26,42,0.0 +20395,72,34.8,6,0.0 +20395,42,14,17,0.0 +20396,76,18,9,0.0 +20396,50,16.25,16,0.0 +20396,68,12.5,2,0.0 +20396,30,25.89,19,0.0 +20396,71,21.5,13,0.0 +20396,37,26,3,0.0 +20396,4,22,10,0.0 +20396,24,4.5,41,0.0 +20396,21,10,3,0.0 +20396,31,12.5,28,0.0 +20396,20,81,47,0.0 +20396,32,32,11,0.0 +20396,60,34,38,0.0 +20396,7,30,47,0.0 +20396,15,15.5,32,0.0 +20396,73,15,43,0.0 +20396,59,55,36,0.0 +20396,6,25,19,0.0 +20396,16,17.45,31,0.0 +20396,14,23.25,5,0.0 +20396,45,9.5,17,0.0 +20396,53,32.8,9,0.0 +20396,58,13.25,20,0.0 +20396,1,18,2,0.0 +20396,25,14,11,0.0 +20396,34,14,24,0.0 +20396,28,45.6,4,0.0 +20396,51,53,29,0.0 +20396,17,39,6,0.0 +20396,70,15,20,0.0 +20396,67,14,32,0.0 +20396,74,10,47,0.0 +20396,3,10,49,0.0 +20396,11,21,28,0.0 +20396,39,18,31,0.0 +20396,55,24,17,0.0 +20396,52,7,43,0.0 +20396,49,20,8,0.0 +20396,66,17,16,0.0 +20396,2,19,44,0.0 +20396,5,21.35,10,0.0 +20396,41,9.65,32,0.0 +20396,29,123.79,8,0.0 +20396,19,9.2,23,0.0 +20396,9,97,14,0.0 +20396,22,21,7,0.0 +20396,42,14,44,0.0 +20396,43,46,34,0.0 +20396,47,9.5,35,0.0 +20396,23,9,3,0.0 +20397,12,38,26,0.0 +20397,53,32.8,6,0.0 +20397,57,19.5,2,0.0 +20397,19,9.2,47,0.0 +20397,39,18,7,0.0 +20397,28,45.6,50,0.0 +20397,69,36,23,0.0 +20397,59,55,12,0.0 +20397,22,21,4,0.0 +20397,50,16.25,4,0.0 +20397,67,14,10,0.0 +20397,58,13.25,17,0.0 +20397,23,9,43,0.0 +20397,16,17.45,49,0.0 +20397,49,20,13,0.0 +20397,13,6,37,0.0 +20397,36,19,30,0.0 +20397,44,19.45,19,0.0 +20397,70,15,16,0.0 +20397,29,123.79,44,0.0 +20397,54,7.45,11,0.0 +20397,38,263.5,24,0.0 +20397,71,21.5,19,0.0 +20397,2,19,19,0.0 +20397,30,25.89,2,0.0 +20397,40,18.4,42,0.0 +20397,7,30,41,0.0 +20397,33,2.5,14,0.0 +20397,62,49.3,7,0.0 +20397,31,12.5,6,0.0 +20397,15,15.5,14,0.0 +20397,41,9.65,2,0.0 +20397,42,14,27,0.0 +20397,3,10,33,0.0 +20397,48,12.75,22,0.0 +20397,18,62.5,8,0.0 +20397,74,10,42,0.0 +20397,72,34.8,32,0.0 +20397,6,25,5,0.0 +20397,55,24,8,0.0 +20397,10,31,11,0.0 +20397,4,22,1,0.0 +20397,63,43.9,16,0.0 +20397,51,53,49,0.0 +20397,24,4.5,41,0.0 +20397,77,13,19,0.0 +20397,46,12,41,0.0 +20397,5,21.35,2,0.0 +20397,47,9.5,22,0.0 +20397,66,17,5,0.0 +20397,26,31.23,1,0.0 +20397,61,28.5,33,0.0 +20397,25,14,18,0.0 +20397,32,32,4,0.0 +20397,76,18,28,0.0 +20397,20,81,39,0.0 +20397,73,15,15,0.0 +20397,56,38,5,0.0 +20397,17,39,17,0.0 +20397,1,18,49,0.0 +20397,37,26,35,0.0 +20397,43,46,14,0.0 +20397,75,7.75,9,0.0 +20397,65,21.05,43,0.0 +20397,14,23.25,42,0.0 +20397,34,14,5,0.0 +20398,59,55,38,0.0 +20398,71,21.5,34,0.0 +20398,47,9.5,38,0.0 +20398,55,24,22,0.0 +20398,31,12.5,1,0.0 +20398,32,32,34,0.0 +20398,75,7.75,37,0.0 +20398,52,7,23,0.0 +20398,38,263.5,50,0.0 +20399,64,33.25,38,0.0 +20399,47,9.5,15,0.0 +20399,3,10,3,0.0 +20399,17,39,31,0.0 +20399,52,7,45,0.0 +20399,4,22,35,0.0 +20399,73,15,30,0.0 +20399,40,18.4,24,0.0 +20399,38,263.5,22,0.0 +20399,77,13,17,0.0 +20399,34,14,21,0.0 +20399,68,12.5,36,0.0 +20399,2,19,26,0.0 +20399,26,31.23,12,0.0 +20399,56,38,42,0.0 +20399,62,49.3,9,0.0 +20399,1,18,5,0.0 +20399,6,25,26,0.0 +20399,20,81,29,0.0 +20399,39,18,50,0.0 +20399,67,14,9,0.0 +20399,19,9.2,46,0.0 +20399,21,10,10,0.0 +20399,33,2.5,17,0.0 +20399,42,14,22,0.0 +20399,54,7.45,47,0.0 +20399,30,25.89,40,0.0 +20399,35,18,49,0.0 +20399,70,15,31,0.0 +20399,72,34.8,20,0.0 +20399,74,10,49,0.0 +20399,71,21.5,18,0.0 +20399,18,62.5,41,0.0 +20399,37,26,15,0.0 +20399,45,9.5,15,0.0 +20399,29,123.79,7,0.0 +20399,9,97,3,0.0 +20399,63,43.9,44,0.0 +20399,75,7.75,37,0.0 +20399,59,55,6,0.0 +20399,43,46,13,0.0 +20399,7,30,10,0.0 +20399,14,23.25,19,0.0 +20399,12,38,13,0.0 +20399,57,19.5,42,0.0 +20399,69,36,11,0.0 +20399,28,45.6,23,0.0 +20399,31,12.5,38,0.0 +20399,5,21.35,17,0.0 +20399,36,19,29,0.0 +20399,55,24,45,0.0 +20399,53,32.8,19,0.0 +20399,24,4.5,25,0.0 +20399,51,53,49,0.0 +20399,76,18,10,0.0 +20399,66,17,2,0.0 +20399,22,21,11,0.0 +20399,60,34,5,0.0 +20399,46,12,50,0.0 +20399,32,32,41,0.0 +20399,41,9.65,14,0.0 +20399,48,12.75,18,0.0 +20399,25,14,21,0.0 +20399,65,21.05,6,0.0 +20399,50,16.25,44,0.0 +20399,27,43.9,10,0.0 +20399,44,19.45,42,0.0 +20399,49,20,33,0.0 +20399,23,9,36,0.0 +20399,58,13.25,9,0.0 +20399,8,40,22,0.0 +20400,32,32,45,0.0 +20400,15,15.5,4,0.0 +20400,67,14,50,0.0 +20400,27,43.9,5,0.0 +20400,37,26,16,0.0 +20400,58,13.25,48,0.0 +20400,60,34,15,0.0 +20400,49,20,2,0.0 +20400,73,15,25,0.0 +20400,6,25,41,0.0 +20400,75,7.75,49,0.0 +20400,36,19,25,0.0 +20400,52,7,6,0.0 +20400,11,21,31,0.0 +20400,3,10,26,0.0 +20400,8,40,30,0.0 +20400,38,263.5,2,0.0 +20400,10,31,31,0.0 +20400,57,19.5,9,0.0 +20400,14,23.25,14,0.0 +20400,34,14,19,0.0 +20400,53,32.8,18,0.0 +20400,41,9.65,45,0.0 +20400,25,14,40,0.0 +20400,43,46,22,0.0 +20400,56,38,5,0.0 +20400,51,53,47,0.0 +20400,66,17,37,0.0 +20400,22,21,47,0.0 +20400,28,45.6,1,0.0 +20400,47,9.5,43,0.0 +20400,72,34.8,40,0.0 +20400,68,12.5,43,0.0 +20400,45,9.5,32,0.0 +20400,17,39,45,0.0 +20401,63,43.9,22,0.0 +20401,62,49.3,25,0.0 +20401,68,12.5,21,0.0 +20401,50,16.25,30,0.0 +20401,5,21.35,27,0.0 +20401,67,14,8,0.0 +20401,77,13,27,0.0 +20401,4,22,50,0.0 +20401,49,20,2,0.0 +20401,51,53,3,0.0 +20401,11,21,35,0.0 +20401,30,25.89,7,0.0 +20401,19,9.2,17,0.0 +20401,28,45.6,47,0.0 +20401,6,25,34,0.0 +20401,46,12,5,0.0 +20401,22,21,14,0.0 +20401,27,43.9,41,0.0 +20401,8,40,49,0.0 +20401,34,14,28,0.0 +20401,59,55,35,0.0 +20401,16,17.45,9,0.0 +20401,76,18,13,0.0 +20401,48,12.75,25,0.0 +20401,72,34.8,14,0.0 +20401,1,18,14,0.0 +20401,26,31.23,44,0.0 +20401,14,23.25,8,0.0 +20401,52,7,15,0.0 +20402,20,81,36,0.0 +20402,49,20,17,0.0 +20402,58,13.25,9,0.0 +20403,43,46,11,0.0 +20403,2,19,47,0.0 +20403,36,19,22,0.0 +20403,21,10,6,0.0 +20403,6,25,41,0.0 +20404,13,6,18,0.0 +20404,4,22,34,0.0 +20404,43,46,36,0.0 +20404,11,21,11,0.0 +20404,12,38,35,0.0 +20404,54,7.45,44,0.0 +20404,62,49.3,19,0.0 +20404,72,34.8,44,0.0 +20404,58,13.25,1,0.0 +20404,20,81,35,0.0 +20404,57,19.5,32,0.0 +20404,50,16.25,31,0.0 +20404,70,15,33,0.0 +20404,17,39,17,0.0 +20404,63,43.9,19,0.0 +20404,74,10,47,0.0 +20404,32,32,47,0.0 +20404,60,34,32,0.0 +20404,7,30,2,0.0 +20404,42,14,3,0.0 +20404,53,32.8,40,0.0 +20404,51,53,19,0.0 +20404,67,14,23,0.0 +20404,44,19.45,44,0.0 +20405,21,10,15,0.0 +20405,64,33.25,10,0.0 +20405,55,24,34,0.0 +20405,72,34.8,50,0.0 +20405,70,15,13,0.0 +20405,14,23.25,21,0.0 +20405,47,9.5,35,0.0 +20405,61,28.5,31,0.0 +20405,10,31,37,0.0 +20405,68,12.5,17,0.0 +20405,71,21.5,29,0.0 +20405,77,13,6,0.0 +20405,39,18,49,0.0 +20405,56,38,35,0.0 +20405,34,14,44,0.0 +20405,44,19.45,6,0.0 +20405,57,19.5,49,0.0 +20405,63,43.9,45,0.0 +20405,73,15,4,0.0 +20405,76,18,10,0.0 +20406,65,21.05,21,0.0 +20406,23,9,48,0.0 +20406,7,30,40,0.0 +20406,49,20,48,0.0 +20406,71,21.5,18,0.0 +20406,72,34.8,30,0.0 +20406,17,39,46,0.0 +20406,41,9.65,25,0.0 +20406,20,81,49,0.0 +20406,50,16.25,10,0.0 +20406,29,123.79,44,0.0 +20406,61,28.5,36,0.0 +20406,5,21.35,31,0.0 +20406,16,17.45,44,0.0 +20406,37,26,28,0.0 +20406,60,34,20,0.0 +20406,66,17,38,0.0 +20406,31,12.5,24,0.0 +20406,47,9.5,41,0.0 +20406,26,31.23,8,0.0 +20406,13,6,26,0.0 +20406,57,19.5,16,0.0 +20406,24,4.5,9,0.0 +20406,19,9.2,16,0.0 +20406,25,14,15,0.0 +20406,22,21,27,0.0 +20406,48,12.75,49,0.0 +20406,74,10,15,0.0 +20406,67,14,14,0.0 +20406,51,53,15,0.0 +20406,64,33.25,32,0.0 +20406,18,62.5,27,0.0 +20406,14,23.25,47,0.0 +20406,45,9.5,14,0.0 +20406,9,97,4,0.0 +20406,43,46,46,0.0 +20406,15,15.5,10,0.0 +20406,4,22,35,0.0 +20406,8,40,16,0.0 +20406,34,14,18,0.0 +20406,36,19,42,0.0 +20406,11,21,34,0.0 +20406,53,32.8,10,0.0 +20406,30,25.89,50,0.0 +20406,73,15,37,0.0 +20406,59,55,26,0.0 +20406,33,2.5,35,0.0 +20406,58,13.25,15,0.0 +20406,28,45.6,38,0.0 +20406,44,19.45,25,0.0 +20406,62,49.3,22,0.0 +20407,62,49.3,37,0.0 +20407,52,7,10,0.0 +20407,39,18,18,0.0 +20407,55,24,25,0.0 +20407,70,15,45,0.0 +20407,57,19.5,39,0.0 +20407,65,21.05,2,0.0 +20407,44,19.45,2,0.0 +20407,74,10,14,0.0 +20407,9,97,32,0.0 +20407,72,34.8,4,0.0 +20407,27,43.9,2,0.0 +20407,4,22,3,0.0 +20407,49,20,24,0.0 +20407,37,26,5,0.0 +20407,59,55,49,0.0 +20407,60,34,42,0.0 +20407,35,18,39,0.0 +20408,8,40,42,0.0 +20408,38,263.5,11,0.0 +20408,19,9.2,50,0.0 +20408,4,22,15,0.0 +20408,75,7.75,48,0.0 +20408,48,12.75,12,0.0 +20408,34,14,45,0.0 +20408,32,32,13,0.0 +20408,23,9,26,0.0 +20408,9,97,4,0.0 +20408,45,9.5,1,0.0 +20408,1,18,34,0.0 +20408,10,31,38,0.0 +20408,63,43.9,10,0.0 +20408,15,15.5,3,0.0 +20408,18,62.5,3,0.0 +20408,73,15,43,0.0 +20408,24,4.5,27,0.0 +20408,77,13,28,0.0 +20408,55,24,42,0.0 +20408,57,19.5,31,0.0 +20408,65,21.05,48,0.0 +20408,28,45.6,18,0.0 +20408,3,10,36,0.0 +20408,76,18,22,0.0 +20408,53,32.8,15,0.0 +20408,35,18,15,0.0 +20408,61,28.5,19,0.0 +20408,69,36,37,0.0 +20408,64,33.25,25,0.0 +20408,51,53,37,0.0 +20408,6,25,35,0.0 +20408,41,9.65,29,0.0 +20408,21,10,5,0.0 +20408,60,34,30,0.0 +20408,33,2.5,9,0.0 +20408,2,19,5,0.0 +20408,37,26,27,0.0 +20408,72,34.8,40,0.0 +20408,27,43.9,35,0.0 +20408,68,12.5,35,0.0 +20408,13,6,2,0.0 +20408,40,18.4,1,0.0 +20408,67,14,37,0.0 +20409,76,18,10,0.0 +20409,1,18,25,0.0 +20409,69,36,18,0.0 +20409,34,14,50,0.0 +20409,43,46,5,0.0 +20409,28,45.6,28,0.0 +20409,18,62.5,27,0.0 +20409,26,31.23,46,0.0 +20409,44,19.45,39,0.0 +20409,22,21,28,0.0 +20409,5,21.35,1,0.0 +20410,57,19.5,30,0.0 +20410,7,30,11,0.0 +20410,47,9.5,35,0.0 +20410,33,2.5,12,0.0 +20410,65,21.05,3,0.0 +20410,44,19.45,45,0.0 +20410,54,7.45,29,0.0 +20410,36,19,2,0.0 +20410,67,14,26,0.0 +20410,73,15,21,0.0 +20410,2,19,27,0.0 +20410,71,21.5,23,0.0 +20410,28,45.6,14,0.0 +20410,56,38,15,0.0 +20410,58,13.25,14,0.0 +20410,43,46,45,0.0 +20410,69,36,35,0.0 +20410,16,17.45,24,0.0 +20410,3,10,3,0.0 +20410,18,62.5,22,0.0 +20410,12,38,43,0.0 +20410,45,9.5,19,0.0 +20410,68,12.5,41,0.0 +20410,20,81,41,0.0 +20410,1,18,10,0.0 +20410,50,16.25,48,0.0 +20410,51,53,5,0.0 +20410,34,14,27,0.0 +20410,31,12.5,45,0.0 +20410,63,43.9,33,0.0 +20410,40,18.4,48,0.0 +20410,61,28.5,44,0.0 +20410,4,22,42,0.0 +20410,6,25,36,0.0 +20410,8,40,12,0.0 +20410,22,21,47,0.0 +20410,15,15.5,50,0.0 +20410,62,49.3,7,0.0 +20410,23,9,27,0.0 +20410,37,26,33,0.0 +20410,42,14,37,0.0 +20410,39,18,21,0.0 +20410,21,10,12,0.0 +20410,60,34,44,0.0 +20410,64,33.25,41,0.0 +20410,59,55,45,0.0 +20410,35,18,36,0.0 +20410,41,9.65,49,0.0 +20410,75,7.75,41,0.0 +20410,66,17,45,0.0 +20410,10,31,46,0.0 +20410,25,14,7,0.0 +20410,70,15,25,0.0 +20410,17,39,37,0.0 +20410,52,7,43,0.0 +20410,32,32,33,0.0 +20410,55,24,26,0.0 +20410,38,263.5,4,0.0 +20410,53,32.8,24,0.0 +20410,77,13,25,0.0 +20410,5,21.35,12,0.0 +20410,24,4.5,21,0.0 +20411,32,32,46,0.0 +20411,27,43.9,14,0.0 +20411,15,15.5,42,0.0 +20411,29,123.79,28,0.0 +20411,30,25.89,4,0.0 +20411,26,31.23,35,0.0 +20411,55,24,20,0.0 +20411,4,22,5,0.0 +20411,3,10,25,0.0 +20411,33,2.5,7,0.0 +20411,77,13,42,0.0 +20411,5,21.35,5,0.0 +20411,2,19,30,0.0 +20411,8,40,40,0.0 +20411,21,10,43,0.0 +20411,44,19.45,40,0.0 +20411,66,17,8,0.0 +20411,42,14,5,0.0 +20411,18,62.5,37,0.0 +20411,74,10,39,0.0 +20411,67,14,15,0.0 +20411,46,12,47,0.0 +20411,45,9.5,7,0.0 +20411,71,21.5,16,0.0 +20411,54,7.45,50,0.0 +20411,14,23.25,22,0.0 +20411,61,28.5,25,0.0 +20411,43,46,47,0.0 +20411,38,263.5,43,0.0 +20411,17,39,19,0.0 +20411,73,15,40,0.0 +20411,35,18,38,0.0 +20411,28,45.6,12,0.0 +20411,31,12.5,6,0.0 +20411,49,20,19,0.0 +20411,72,34.8,37,0.0 +20411,65,21.05,31,0.0 +20411,68,12.5,17,0.0 +20411,10,31,50,0.0 +20411,24,4.5,33,0.0 +20411,60,34,24,0.0 +20411,1,18,15,0.0 +20411,39,18,11,0.0 +20411,57,19.5,44,0.0 +20411,12,38,4,0.0 +20411,22,21,22,0.0 +20411,69,36,32,0.0 +20411,34,14,12,0.0 +20411,51,53,31,0.0 +20411,11,21,24,0.0 +20411,36,19,28,0.0 +20411,23,9,6,0.0 +20411,58,13.25,44,0.0 +20411,75,7.75,32,0.0 +20411,53,32.8,25,0.0 +20411,64,33.25,44,0.0 +20411,41,9.65,14,0.0 +20411,9,97,27,0.0 +20411,63,43.9,33,0.0 +20411,6,25,27,0.0 +20412,66,17,19,0.0 +20412,9,97,43,0.0 +20412,47,9.5,12,0.0 +20412,43,46,23,0.0 +20412,74,10,3,0.0 +20412,38,263.5,6,0.0 +20412,45,9.5,36,0.0 +20412,68,12.5,26,0.0 +20412,7,30,5,0.0 +20412,37,26,20,0.0 +20412,13,6,37,0.0 +20412,73,15,5,0.0 +20412,41,9.65,38,0.0 +20412,52,7,46,0.0 +20412,24,4.5,44,0.0 +20412,34,14,17,0.0 +20412,72,34.8,16,0.0 +20412,55,24,24,0.0 +20412,28,45.6,4,0.0 +20412,58,13.25,18,0.0 +20412,56,38,5,0.0 +20412,71,21.5,22,0.0 +20412,12,38,25,0.0 +20412,42,14,3,0.0 +20412,17,39,48,0.0 +20412,39,18,42,0.0 +20412,46,12,3,0.0 +20412,1,18,41,0.0 +20412,18,62.5,20,0.0 +20412,53,32.8,14,0.0 +20412,70,15,3,0.0 +20412,35,18,29,0.0 +20412,76,18,29,0.0 +20412,64,33.25,6,0.0 +20412,61,28.5,27,0.0 +20412,5,21.35,48,0.0 +20412,65,21.05,50,0.0 +20412,49,20,30,0.0 +20412,25,14,41,0.0 +20412,57,19.5,41,0.0 +20412,11,21,21,0.0 +20412,10,31,3,0.0 +20412,63,43.9,32,0.0 +20412,19,9.2,43,0.0 +20412,20,81,19,0.0 +20412,36,19,49,0.0 +20412,15,15.5,4,0.0 +20412,30,25.89,32,0.0 +20412,69,36,35,0.0 +20412,60,34,42,0.0 +20412,8,40,11,0.0 +20412,62,49.3,21,0.0 +20412,29,123.79,8,0.0 +20412,33,2.5,15,0.0 +20412,21,10,8,0.0 +20412,59,55,1,0.0 +20412,16,17.45,24,0.0 +20412,27,43.9,43,0.0 +20412,48,12.75,16,0.0 +20412,3,10,3,0.0 +20413,15,15.5,41,0.0 +20413,27,43.9,28,0.0 +20413,69,36,30,0.0 +20413,9,97,43,0.0 +20413,44,19.45,23,0.0 +20413,36,19,36,0.0 +20413,59,55,22,0.0 +20413,56,38,15,0.0 +20413,38,263.5,42,0.0 +20413,18,62.5,34,0.0 +20413,40,18.4,16,0.0 +20413,5,21.35,24,0.0 +20413,57,19.5,9,0.0 +20413,8,40,4,0.0 +20413,73,15,36,0.0 +20413,47,9.5,34,0.0 +20413,46,12,19,0.0 +20413,14,23.25,6,0.0 +20413,72,34.8,28,0.0 +20413,54,7.45,36,0.0 +20413,74,10,43,0.0 +20413,77,13,23,0.0 +20413,42,14,5,0.0 +20413,20,81,22,0.0 +20413,35,18,22,0.0 +20413,16,17.45,31,0.0 +20414,5,21.35,9,0.0 +20414,64,33.25,17,0.0 +20414,40,18.4,27,0.0 +20414,1,18,19,0.0 +20414,6,25,29,0.0 +20414,32,32,7,0.0 +20414,54,7.45,28,0.0 +20414,56,38,44,0.0 +20414,9,97,14,0.0 +20414,28,45.6,8,0.0 +20414,69,36,39,0.0 +20414,10,31,46,0.0 +20414,45,9.5,28,0.0 +20414,57,19.5,40,0.0 +20414,34,14,36,0.0 +20414,62,49.3,17,0.0 +20414,44,19.45,47,0.0 +20414,19,9.2,14,0.0 +20414,21,10,11,0.0 +20415,36,19,3,0.0 +20415,46,12,22,0.0 +20415,42,14,2,0.0 +20415,37,26,5,0.0 +20415,58,13.25,9,0.0 +20415,33,2.5,29,0.0 +20415,30,25.89,10,0.0 +20415,23,9,42,0.0 +20415,14,23.25,35,0.0 +20415,51,53,33,0.0 +20415,73,15,2,0.0 +20415,49,20,41,0.0 +20415,39,18,2,0.0 +20415,38,263.5,16,0.0 +20415,50,16.25,36,0.0 +20415,47,9.5,26,0.0 +20415,60,34,15,0.0 +20415,10,31,4,0.0 +20415,53,32.8,2,0.0 +20415,45,9.5,47,0.0 +20415,76,18,48,0.0 +20415,55,24,1,0.0 +20415,44,19.45,7,0.0 +20415,17,39,39,0.0 +20415,72,34.8,39,0.0 +20415,32,32,37,0.0 +20415,15,15.5,38,0.0 +20415,16,17.45,16,0.0 +20415,75,7.75,44,0.0 +20415,27,43.9,40,0.0 +20415,3,10,26,0.0 +20415,34,14,50,0.0 +20415,12,38,4,0.0 +20415,65,21.05,1,0.0 +20415,19,9.2,2,0.0 +20415,57,19.5,36,0.0 +20415,66,17,45,0.0 +20415,31,12.5,33,0.0 +20415,77,13,41,0.0 +20415,40,18.4,39,0.0 +20415,68,12.5,25,0.0 +20415,24,4.5,28,0.0 +20415,35,18,28,0.0 +20415,62,49.3,6,0.0 +20415,56,38,15,0.0 +20415,71,21.5,45,0.0 +20415,7,30,32,0.0 +20415,18,62.5,47,0.0 +20415,22,21,2,0.0 +20416,20,81,22,0.0 +20416,72,34.8,26,0.0 +20416,54,7.45,18,0.0 +20416,60,34,28,0.0 +20416,31,12.5,36,0.0 +20416,77,13,2,0.0 +20416,1,18,48,0.0 +20416,16,17.45,47,0.0 +20416,7,30,29,0.0 +20416,44,19.45,42,0.0 +20416,13,6,29,0.0 +20416,56,38,11,0.0 +20416,38,263.5,25,0.0 +20416,73,15,48,0.0 +20416,5,21.35,25,0.0 +20416,25,14,18,0.0 +20416,21,10,29,0.0 +20416,48,12.75,39,0.0 +20416,64,33.25,10,0.0 +20416,55,24,29,0.0 +20416,14,23.25,27,0.0 +20416,39,18,50,0.0 +20416,27,43.9,25,0.0 +20416,68,12.5,12,0.0 +20416,40,18.4,36,0.0 +20416,51,53,45,0.0 +20416,52,7,38,0.0 +20416,30,25.89,13,0.0 +20416,33,2.5,47,0.0 +20416,3,10,26,0.0 +20416,37,26,11,0.0 +20416,45,9.5,38,0.0 +20416,53,32.8,16,0.0 +20416,34,14,3,0.0 +20416,67,14,40,0.0 +20416,32,32,18,0.0 +20416,75,7.75,19,0.0 +20416,50,16.25,41,0.0 +20416,11,21,13,0.0 +20416,4,22,12,0.0 +20416,62,49.3,42,0.0 +20416,28,45.6,10,0.0 +20416,70,15,21,0.0 +20416,43,46,35,0.0 +20416,74,10,16,0.0 +20416,76,18,7,0.0 +20416,19,9.2,11,0.0 +20416,12,38,32,0.0 +20416,8,40,20,0.0 +20416,29,123.79,27,0.0 +20416,61,28.5,2,0.0 +20417,45,9.5,15,0.0 +20417,3,10,20,0.0 +20417,34,14,13,0.0 +20417,50,16.25,47,0.0 +20417,23,9,30,0.0 +20417,69,36,8,0.0 +20417,15,15.5,45,0.0 +20417,65,21.05,41,0.0 +20417,24,4.5,21,0.0 +20417,72,34.8,41,0.0 +20417,55,24,31,0.0 +20417,36,19,4,0.0 +20417,2,19,49,0.0 +20417,16,17.45,5,0.0 +20417,66,17,6,0.0 +20417,63,43.9,7,0.0 +20417,31,12.5,11,0.0 +20417,51,53,26,0.0 +20417,39,18,36,0.0 +20417,56,38,47,0.0 +20417,70,15,38,0.0 +20417,33,2.5,35,0.0 +20418,34,14,8,0.0 +20418,50,16.25,5,0.0 +20418,60,34,22,0.0 +20418,59,55,26,0.0 +20418,11,21,50,0.0 +20418,16,17.45,33,0.0 +20418,63,43.9,41,0.0 +20418,20,81,44,0.0 +20418,35,18,39,0.0 +20418,76,18,19,0.0 +20418,75,7.75,19,0.0 +20418,2,19,50,0.0 +20418,77,13,9,0.0 +20418,55,24,49,0.0 +20418,48,12.75,21,0.0 +20418,73,15,47,0.0 +20418,6,25,29,0.0 +20418,71,21.5,1,0.0 +20418,61,28.5,19,0.0 +20418,68,12.5,22,0.0 +20418,26,31.23,36,0.0 +20418,62,49.3,22,0.0 +20418,65,21.05,27,0.0 +20418,42,14,7,0.0 +20418,13,6,29,0.0 +20418,49,20,1,0.0 +20418,45,9.5,32,0.0 +20418,39,18,28,0.0 +20418,44,19.45,47,0.0 +20418,32,32,44,0.0 +20418,28,45.6,1,0.0 +20418,69,36,1,0.0 +20418,54,7.45,11,0.0 +20418,72,34.8,17,0.0 +20418,40,18.4,6,0.0 +20418,15,15.5,35,0.0 +20418,52,7,38,0.0 +20418,53,32.8,1,0.0 +20418,57,19.5,12,0.0 +20418,43,46,18,0.0 +20418,47,9.5,27,0.0 +20418,36,19,31,0.0 +20418,22,21,38,0.0 +20418,19,9.2,25,0.0 +20418,9,97,12,0.0 +20418,33,2.5,26,0.0 +20418,1,18,50,0.0 +20418,64,33.25,47,0.0 +20418,29,123.79,43,0.0 +20418,14,23.25,30,0.0 +20419,23,9,30,0.0 +20419,70,15,16,0.0 +20419,72,34.8,33,0.0 +20419,27,43.9,22,0.0 +20419,47,9.5,32,0.0 +20419,37,26,23,0.0 +20419,62,49.3,27,0.0 +20419,45,9.5,31,0.0 +20419,15,15.5,22,0.0 +20419,21,10,43,0.0 +20419,3,10,7,0.0 +20419,6,25,20,0.0 +20419,12,38,26,0.0 +20419,20,81,37,0.0 +20420,62,49.3,1,0.0 +20420,17,39,19,0.0 +20420,44,19.45,17,0.0 +20420,48,12.75,8,0.0 +20420,77,13,7,0.0 +20420,19,9.2,28,0.0 +20420,33,2.5,39,0.0 +20420,12,38,39,0.0 +20420,8,40,19,0.0 +20420,40,18.4,35,0.0 +20420,56,38,43,0.0 +20420,53,32.8,28,0.0 +20420,28,45.6,40,0.0 +20421,20,81,3,0.0 +20421,32,32,15,0.0 +20421,50,16.25,9,0.0 +20421,16,17.45,1,0.0 +20421,39,18,42,0.0 +20421,51,53,5,0.0 +20421,2,19,7,0.0 +20421,71,21.5,47,0.0 +20421,9,97,37,0.0 +20421,56,38,19,0.0 +20421,28,45.6,3,0.0 +20421,54,7.45,5,0.0 +20421,59,55,29,0.0 +20421,11,21,19,0.0 +20421,42,14,50,0.0 +20421,24,4.5,24,0.0 +20421,52,7,10,0.0 +20421,29,123.79,26,0.0 +20421,27,43.9,37,0.0 +20421,53,32.8,3,0.0 +20421,67,14,17,0.0 +20421,22,21,10,0.0 +20421,40,18.4,35,0.0 +20421,30,25.89,30,0.0 +20421,26,31.23,50,0.0 +20421,65,21.05,16,0.0 +20421,6,25,5,0.0 +20421,17,39,46,0.0 +20422,33,2.5,10,0.0 +20422,3,10,50,0.0 +20422,11,21,50,0.0 +20422,16,17.45,41,0.0 +20422,31,12.5,29,0.0 +20422,55,24,13,0.0 +20422,7,30,7,0.0 +20422,17,39,17,0.0 +20422,72,34.8,19,0.0 +20422,30,25.89,11,0.0 +20422,46,12,31,0.0 +20422,42,14,20,0.0 +20422,66,17,14,0.0 +20422,4,22,10,0.0 +20422,9,97,18,0.0 +20422,36,19,43,0.0 +20422,44,19.45,2,0.0 +20422,70,15,12,0.0 +20422,39,18,26,0.0 +20422,23,9,47,0.0 +20422,6,25,41,0.0 +20422,50,16.25,48,0.0 +20422,69,36,23,0.0 +20423,5,21.35,45,0.0 +20423,75,7.75,2,0.0 +20423,13,6,44,0.0 +20424,28,45.6,9,0.0 +20424,63,43.9,26,0.0 +20424,5,21.35,21,0.0 +20424,68,12.5,11,0.0 +20424,25,14,3,0.0 +20424,16,17.45,25,0.0 +20424,74,10,13,0.0 +20424,35,18,30,0.0 +20424,22,21,26,0.0 +20424,33,2.5,8,0.0 +20424,66,17,31,0.0 +20424,17,39,35,0.0 +20424,57,19.5,14,0.0 +20424,72,34.8,39,0.0 +20424,70,15,5,0.0 +20424,73,15,25,0.0 +20424,62,49.3,3,0.0 +20424,77,13,23,0.0 +20424,15,15.5,47,0.0 +20424,39,18,3,0.0 +20424,56,38,28,0.0 +20424,36,19,42,0.0 +20424,21,10,4,0.0 +20424,40,18.4,28,0.0 +20424,46,12,16,0.0 +20424,13,6,37,0.0 +20424,32,32,19,0.0 +20424,23,9,17,0.0 +20424,14,23.25,8,0.0 +20424,8,40,32,0.0 +20424,48,12.75,25,0.0 +20424,24,4.5,14,0.0 +20424,76,18,6,0.0 +20424,20,81,50,0.0 +20424,67,14,1,0.0 +20424,37,26,18,0.0 +20424,43,46,46,0.0 +20424,53,32.8,40,0.0 +20424,31,12.5,30,0.0 +20424,6,25,21,0.0 +20424,49,20,8,0.0 +20424,42,14,47,0.0 +20424,18,62.5,12,0.0 +20424,3,10,5,0.0 +20424,34,14,24,0.0 +20424,27,43.9,11,0.0 +20424,47,9.5,27,0.0 +20424,61,28.5,20,0.0 +20424,11,21,4,0.0 +20424,38,263.5,40,0.0 +20424,60,34,6,0.0 +20424,10,31,41,0.0 +20424,55,24,37,0.0 +20424,58,13.25,33,0.0 +20424,59,55,21,0.0 +20424,52,7,22,0.0 +20424,44,19.45,29,0.0 +20425,17,39,23,0.0 +20425,19,9.2,32,0.0 +20425,14,23.25,44,0.0 +20425,21,10,18,0.0 +20425,12,38,3,0.0 +20425,16,17.45,41,0.0 +20425,73,15,40,0.0 +20425,10,31,5,0.0 +20425,56,38,41,0.0 +20425,37,26,42,0.0 +20425,62,49.3,49,0.0 +20425,27,43.9,14,0.0 +20425,39,18,50,0.0 +20425,34,14,41,0.0 +20425,5,21.35,49,0.0 +20425,67,14,14,0.0 +20425,38,263.5,47,0.0 +20425,13,6,33,0.0 +20425,32,32,10,0.0 +20425,31,12.5,2,0.0 +20425,48,12.75,1,0.0 +20425,52,7,46,0.0 +20425,35,18,14,0.0 +20425,7,30,22,0.0 +20425,28,45.6,25,0.0 +20425,46,12,6,0.0 +20425,68,12.5,30,0.0 +20425,71,21.5,34,0.0 +20425,70,15,13,0.0 +20425,40,18.4,24,0.0 +20425,23,9,1,0.0 +20425,11,21,37,0.0 +20425,55,24,4,0.0 +20425,51,53,18,0.0 +20425,22,21,7,0.0 +20425,64,33.25,40,0.0 +20425,57,19.5,11,0.0 +20425,58,13.25,11,0.0 +20425,49,20,35,0.0 +20425,2,19,32,0.0 +20425,66,17,34,0.0 +20425,15,15.5,16,0.0 +20425,72,34.8,16,0.0 +20425,53,32.8,41,0.0 +20425,60,34,27,0.0 +20425,8,40,22,0.0 +20425,3,10,1,0.0 +20425,50,16.25,11,0.0 +20425,61,28.5,26,0.0 +20425,44,19.45,41,0.0 +20425,42,14,45,0.0 +20426,15,15.5,21,0.0 +20426,1,18,16,0.0 +20426,20,81,47,0.0 +20426,49,20,46,0.0 +20426,72,34.8,41,0.0 +20426,22,21,7,0.0 +20426,23,9,26,0.0 +20426,56,38,46,0.0 +20427,20,81,46,0.0 +20427,34,14,46,0.0 +20427,66,17,15,0.0 +20427,7,30,16,0.0 +20427,42,14,24,0.0 +20427,23,9,17,0.0 +20427,21,10,15,0.0 +20427,13,6,13,0.0 +20427,38,263.5,16,0.0 +20427,62,49.3,50,0.0 +20427,32,32,29,0.0 +20427,49,20,41,0.0 +20427,56,38,16,0.0 +20427,69,36,8,0.0 +20427,58,13.25,7,0.0 +20427,55,24,20,0.0 +20427,27,43.9,30,0.0 +20427,63,43.9,22,0.0 +20427,53,32.8,46,0.0 +20427,68,12.5,36,0.0 +20427,64,33.25,29,0.0 +20427,60,34,41,0.0 +20427,28,45.6,20,0.0 +20427,51,53,1,0.0 +20427,12,38,23,0.0 +20427,15,15.5,27,0.0 +20427,5,21.35,9,0.0 +20427,19,9.2,47,0.0 +20427,70,15,27,0.0 +20427,54,7.45,15,0.0 +20427,72,34.8,46,0.0 +20427,30,25.89,2,0.0 +20427,76,18,9,0.0 +20427,57,19.5,28,0.0 +20427,14,23.25,5,0.0 +20427,74,10,44,0.0 +20427,31,12.5,6,0.0 +20427,37,26,43,0.0 +20427,3,10,43,0.0 +20427,44,19.45,11,0.0 +20427,41,9.65,15,0.0 +20427,65,21.05,18,0.0 +20427,1,18,24,0.0 +20427,4,22,10,0.0 +20427,36,19,19,0.0 +20427,2,19,7,0.0 +20427,29,123.79,42,0.0 +20427,8,40,24,0.0 +20427,10,31,17,0.0 +20427,67,14,29,0.0 +20427,25,14,12,0.0 +20427,18,62.5,17,0.0 +20427,40,18.4,33,0.0 +20427,46,12,30,0.0 +20428,63,43.9,19,0.0 +20428,74,10,25,0.0 +20428,3,10,10,0.0 +20428,36,19,9,0.0 +20428,37,26,34,0.0 +20428,11,21,8,0.0 +20428,19,9.2,17,0.0 +20428,61,28.5,48,0.0 +20428,5,21.35,1,0.0 +20428,22,21,17,0.0 +20428,43,46,3,0.0 +20428,57,19.5,29,0.0 +20428,16,17.45,43,0.0 +20428,75,7.75,44,0.0 +20428,71,21.5,2,0.0 +20428,48,12.75,3,0.0 +20428,42,14,25,0.0 +20428,51,53,10,0.0 +20428,25,14,9,0.0 +20428,76,18,9,0.0 +20428,31,12.5,48,0.0 +20428,66,17,11,0.0 +20428,1,18,14,0.0 +20428,39,18,43,0.0 +20428,29,123.79,50,0.0 +20429,23,9,39,0.0 +20429,10,31,6,0.0 +20429,77,13,37,0.0 +20429,7,30,11,0.0 +20429,29,123.79,22,0.0 +20429,27,43.9,7,0.0 +20429,38,263.5,30,0.0 +20429,21,10,41,0.0 +20429,60,34,42,0.0 +20429,24,4.5,32,0.0 +20429,75,7.75,10,0.0 +20429,36,19,14,0.0 +20429,62,49.3,9,0.0 +20429,67,14,16,0.0 +20429,47,9.5,32,0.0 +20429,39,18,17,0.0 +20429,72,34.8,18,0.0 +20429,8,40,13,0.0 +20429,4,22,11,0.0 +20429,32,32,1,0.0 +20429,31,12.5,36,0.0 +20429,70,15,45,0.0 +20429,76,18,32,0.0 +20429,50,16.25,1,0.0 +20429,64,33.25,45,0.0 +20430,16,17.45,15,0.0 +20430,32,32,1,0.0 +20430,22,21,33,0.0 +20430,57,19.5,48,0.0 +20430,45,9.5,28,0.0 +20430,2,19,32,0.0 +20430,39,18,1,0.0 +20430,66,17,14,0.0 +20430,36,19,10,0.0 +20430,21,10,2,0.0 +20430,25,14,11,0.0 +20430,48,12.75,28,0.0 +20430,13,6,2,0.0 +20430,38,263.5,8,0.0 +20430,47,9.5,5,0.0 +20430,44,19.45,45,0.0 +20430,4,22,34,0.0 +20430,15,15.5,39,0.0 +20430,1,18,44,0.0 +20430,10,31,8,0.0 +20430,28,45.6,33,0.0 +20430,76,18,43,0.0 +20430,64,33.25,20,0.0 +20430,40,18.4,37,0.0 +20430,67,14,9,0.0 +20430,61,28.5,19,0.0 +20430,41,9.65,23,0.0 +20430,70,15,13,0.0 +20430,43,46,41,0.0 +20430,27,43.9,15,0.0 +20430,30,25.89,29,0.0 +20430,71,21.5,28,0.0 +20430,34,14,12,0.0 +20430,60,34,7,0.0 +20430,58,13.25,4,0.0 +20430,73,15,10,0.0 +20430,59,55,37,0.0 +20430,17,39,16,0.0 +20430,46,12,13,0.0 +20430,9,97,1,0.0 +20430,52,7,37,0.0 +20430,33,2.5,14,0.0 +20430,65,21.05,20,0.0 +20430,49,20,45,0.0 +20430,8,40,40,0.0 +20430,74,10,12,0.0 +20430,69,36,18,0.0 +20430,11,21,15,0.0 +20430,14,23.25,33,0.0 +20430,63,43.9,28,0.0 +20430,23,9,6,0.0 +20430,37,26,31,0.0 +20430,75,7.75,40,0.0 +20430,72,34.8,14,0.0 +20430,7,30,25,0.0 +20430,54,7.45,46,0.0 +20430,68,12.5,9,0.0 +20430,56,38,46,0.0 +20430,31,12.5,19,0.0 +20430,62,49.3,27,0.0 +20431,30,25.89,48,0.0 +20431,35,18,5,0.0 +20431,24,4.5,26,0.0 +20431,62,49.3,43,0.0 +20431,29,123.79,47,0.0 +20431,72,34.8,48,0.0 +20431,36,19,6,0.0 +20432,20,81,7,0.0 +20432,57,19.5,18,0.0 +20432,22,21,13,0.0 +20432,58,13.25,16,0.0 +20432,39,18,22,0.0 +20432,61,28.5,2,0.0 +20432,35,18,46,0.0 +20432,48,12.75,27,0.0 +20432,15,15.5,30,0.0 +20432,9,97,28,0.0 +20432,45,9.5,49,0.0 +20432,38,263.5,19,0.0 +20432,76,18,6,0.0 +20432,55,24,32,0.0 +20432,28,45.6,27,0.0 +20432,40,18.4,23,0.0 +20432,29,123.79,28,0.0 +20432,67,14,49,0.0 +20432,42,14,2,0.0 +20432,18,62.5,41,0.0 +20432,69,36,38,0.0 +20432,32,32,31,0.0 +20432,19,9.2,25,0.0 +20432,56,38,2,0.0 +20432,17,39,44,0.0 +20432,12,38,11,0.0 +20432,51,53,43,0.0 +20432,26,31.23,7,0.0 +20432,30,25.89,36,0.0 +20432,5,21.35,26,0.0 +20432,24,4.5,21,0.0 +20433,55,24,5,0.0 +20433,71,21.5,30,0.0 +20433,41,9.65,40,0.0 +20433,50,16.25,47,0.0 +20433,59,55,11,0.0 +20433,51,53,39,0.0 +20433,20,81,37,0.0 +20433,72,34.8,48,0.0 +20433,65,21.05,28,0.0 +20433,24,4.5,29,0.0 +20433,34,14,14,0.0 +20433,69,36,45,0.0 +20433,53,32.8,29,0.0 +20433,19,9.2,30,0.0 +20433,23,9,28,0.0 +20433,49,20,12,0.0 +20433,36,19,13,0.0 +20433,35,18,4,0.0 +20433,5,21.35,44,0.0 +20433,26,31.23,39,0.0 +20433,74,10,35,0.0 +20433,46,12,9,0.0 +20433,32,32,32,0.0 +20433,21,10,11,0.0 +20433,57,19.5,45,0.0 +20433,10,31,2,0.0 +20433,62,49.3,22,0.0 +20433,70,15,31,0.0 +20433,47,9.5,41,0.0 +20433,61,28.5,38,0.0 +20433,58,13.25,22,0.0 +20433,54,7.45,28,0.0 +20433,75,7.75,22,0.0 +20434,36,19,15,0.0 +20434,39,18,9,0.0 +20434,43,46,39,0.0 +20434,14,23.25,6,0.0 +20434,29,123.79,6,0.0 +20434,3,10,33,0.0 +20434,58,13.25,1,0.0 +20434,4,22,27,0.0 +20434,60,34,24,0.0 +20434,6,25,3,0.0 +20434,13,6,48,0.0 +20434,61,28.5,44,0.0 +20434,63,43.9,36,0.0 +20434,56,38,16,0.0 +20434,2,19,31,0.0 +20434,1,18,41,0.0 +20434,76,18,23,0.0 +20434,47,9.5,20,0.0 +20434,64,33.25,4,0.0 +20434,22,21,43,0.0 +20434,38,263.5,43,0.0 +20434,15,15.5,35,0.0 +20434,50,16.25,7,0.0 +20434,75,7.75,35,0.0 +20434,21,10,13,0.0 +20434,51,53,3,0.0 +20434,11,21,44,0.0 +20434,74,10,26,0.0 +20434,24,4.5,25,0.0 +20434,46,12,4,0.0 +20434,41,9.65,28,0.0 +20434,40,18.4,5,0.0 +20434,45,9.5,13,0.0 +20434,57,19.5,29,0.0 +20434,54,7.45,18,0.0 +20434,65,21.05,1,0.0 +20434,73,15,31,0.0 +20434,26,31.23,38,0.0 +20434,30,25.89,16,0.0 +20434,7,30,36,0.0 +20434,35,18,12,0.0 +20434,66,17,7,0.0 +20434,10,31,42,0.0 +20435,61,28.5,45,0.0 +20435,60,34,33,0.0 +20435,77,13,40,0.0 +20435,22,21,23,0.0 +20435,49,20,5,0.0 +20435,14,23.25,15,0.0 +20435,55,24,13,0.0 +20435,75,7.75,35,0.0 +20435,12,38,25,0.0 +20435,25,14,21,0.0 +20435,38,263.5,27,0.0 +20435,2,19,2,0.0 +20435,62,49.3,22,0.0 +20435,71,21.5,41,0.0 +20435,16,17.45,31,0.0 +20435,53,32.8,44,0.0 +20435,54,7.45,39,0.0 +20435,19,9.2,9,0.0 +20435,58,13.25,36,0.0 +20435,47,9.5,22,0.0 +20435,76,18,9,0.0 +20435,70,15,49,0.0 +20435,36,19,39,0.0 +20435,48,12.75,32,0.0 +20435,10,31,21,0.0 +20435,6,25,26,0.0 +20435,37,26,50,0.0 +20435,7,30,50,0.0 +20435,44,19.45,10,0.0 +20435,65,21.05,6,0.0 +20435,69,36,44,0.0 +20435,31,12.5,46,0.0 +20435,18,62.5,43,0.0 +20435,39,18,7,0.0 +20435,68,12.5,21,0.0 +20435,34,14,16,0.0 +20435,59,55,11,0.0 +20435,41,9.65,35,0.0 +20435,11,21,5,0.0 +20435,73,15,6,0.0 +20435,50,16.25,32,0.0 +20436,11,21,9,0.0 +20437,60,34,2,0.0 +20437,48,12.75,18,0.0 +20437,73,15,15,0.0 +20437,71,21.5,45,0.0 +20437,69,36,35,0.0 +20437,34,14,20,0.0 +20437,53,32.8,4,0.0 +20437,62,49.3,45,0.0 +20437,46,12,31,0.0 +20437,76,18,25,0.0 +20437,66,17,36,0.0 +20437,16,17.45,31,0.0 +20437,67,14,32,0.0 +20437,22,21,44,0.0 +20437,75,7.75,45,0.0 +20437,9,97,12,0.0 +20437,42,14,4,0.0 +20437,63,43.9,19,0.0 +20437,3,10,50,0.0 +20437,25,14,41,0.0 +20437,40,18.4,36,0.0 +20437,51,53,43,0.0 +20437,24,4.5,3,0.0 +20437,45,9.5,3,0.0 +20437,44,19.45,23,0.0 +20437,23,9,21,0.0 +20437,64,33.25,5,0.0 +20437,57,19.5,7,0.0 +20437,11,21,2,0.0 +20437,30,25.89,7,0.0 +20437,58,13.25,42,0.0 +20437,50,16.25,32,0.0 +20437,31,12.5,21,0.0 +20437,12,38,25,0.0 +20437,39,18,6,0.0 +20437,28,45.6,30,0.0 +20437,10,31,35,0.0 +20437,37,26,24,0.0 +20437,8,40,14,0.0 +20437,52,7,4,0.0 +20437,19,9.2,44,0.0 +20437,13,6,33,0.0 +20437,20,81,40,0.0 +20437,14,23.25,24,0.0 +20437,55,24,2,0.0 +20437,6,25,37,0.0 +20437,35,18,23,0.0 +20437,68,12.5,11,0.0 +20437,61,28.5,16,0.0 +20437,36,19,22,0.0 +20437,74,10,50,0.0 +20437,17,39,22,0.0 +20437,38,263.5,42,0.0 +20437,15,15.5,23,0.0 +20437,70,15,37,0.0 +20437,2,19,24,0.0 +20437,1,18,44,0.0 +20437,77,13,1,0.0 +20437,56,38,45,0.0 +20437,18,62.5,28,0.0 +20438,74,10,12,0.0 +20438,5,21.35,22,0.0 +20438,9,97,30,0.0 +20438,19,9.2,38,0.0 +20438,57,19.5,43,0.0 +20438,49,20,18,0.0 +20438,16,17.45,23,0.0 +20438,17,39,26,0.0 +20438,23,9,28,0.0 +20438,29,123.79,33,0.0 +20438,70,15,15,0.0 +20438,22,21,34,0.0 +20438,51,53,19,0.0 +20438,77,13,36,0.0 +20438,46,12,19,0.0 +20438,53,32.8,21,0.0 +20438,76,18,2,0.0 +20438,65,21.05,18,0.0 +20438,24,4.5,44,0.0 +20438,34,14,11,0.0 +20438,30,25.89,27,0.0 +20438,33,2.5,10,0.0 +20438,72,34.8,40,0.0 +20438,6,25,20,0.0 +20438,3,10,44,0.0 +20438,13,6,33,0.0 +20438,69,36,40,0.0 +20438,7,30,29,0.0 +20438,1,18,14,0.0 +20438,75,7.75,33,0.0 +20438,59,55,2,0.0 +20438,64,33.25,6,0.0 +20438,32,32,41,0.0 +20438,56,38,47,0.0 +20438,48,12.75,5,0.0 +20438,73,15,20,0.0 +20438,54,7.45,21,0.0 +20438,28,45.6,34,0.0 +20438,58,13.25,1,0.0 +20438,47,9.5,20,0.0 +20438,44,19.45,23,0.0 +20438,12,38,27,0.0 +20438,8,40,20,0.0 +20438,35,18,36,0.0 +20438,26,31.23,5,0.0 +20438,42,14,26,0.0 +20438,45,9.5,27,0.0 +20438,36,19,10,0.0 +20438,40,18.4,1,0.0 +20438,39,18,39,0.0 +20438,67,14,33,0.0 +20438,27,43.9,22,0.0 +20438,68,12.5,16,0.0 +20438,20,81,40,0.0 +20438,52,7,6,0.0 +20438,10,31,9,0.0 +20438,21,10,44,0.0 +20438,18,62.5,38,0.0 +20438,66,17,41,0.0 +20438,55,24,28,0.0 +20438,2,19,13,0.0 +20439,10,31,33,0.0 +20439,6,25,44,0.0 +20439,27,43.9,31,0.0 +20439,44,19.45,43,0.0 +20439,63,43.9,3,0.0 +20439,47,9.5,30,0.0 +20439,48,12.75,42,0.0 +20439,32,32,15,0.0 +20439,77,13,14,0.0 +20439,13,6,4,0.0 +20439,24,4.5,31,0.0 +20439,75,7.75,47,0.0 +20439,69,36,19,0.0 +20439,38,263.5,31,0.0 +20439,28,45.6,21,0.0 +20439,19,9.2,20,0.0 +20439,11,21,9,0.0 +20439,40,18.4,48,0.0 +20439,64,33.25,34,0.0 +20439,67,14,41,0.0 +20439,60,34,40,0.0 +20439,68,12.5,25,0.0 +20439,1,18,25,0.0 +20439,46,12,17,0.0 +20439,23,9,9,0.0 +20439,29,123.79,10,0.0 +20439,62,49.3,25,0.0 +20439,37,26,9,0.0 +20439,45,9.5,15,0.0 +20439,31,12.5,7,0.0 +20439,22,21,45,0.0 +20439,18,62.5,18,0.0 +20439,34,14,39,0.0 +20439,4,22,2,0.0 +20439,51,53,8,0.0 +20439,14,23.25,30,0.0 +20439,36,19,18,0.0 +20439,3,10,34,0.0 +20439,65,21.05,40,0.0 +20439,35,18,40,0.0 +20439,73,15,11,0.0 +20439,52,7,17,0.0 +20439,57,19.5,29,0.0 +20439,26,31.23,14,0.0 +20439,7,30,26,0.0 +20439,74,10,14,0.0 +20439,8,40,19,0.0 +20439,54,7.45,33,0.0 +20439,16,17.45,45,0.0 +20439,15,15.5,46,0.0 +20439,49,20,26,0.0 +20439,61,28.5,19,0.0 +20439,39,18,50,0.0 +20439,12,38,46,0.0 +20439,42,14,40,0.0 +20439,76,18,34,0.0 +20439,25,14,17,0.0 +20439,53,32.8,2,0.0 +20439,50,16.25,1,0.0 +20439,21,10,13,0.0 +20439,17,39,47,0.0 +20439,30,25.89,24,0.0 +20439,70,15,36,0.0 +20439,33,2.5,44,0.0 +20439,43,46,17,0.0 +20439,9,97,34,0.0 +20439,56,38,7,0.0 +20439,2,19,24,0.0 +20439,5,21.35,11,0.0 +20439,55,24,32,0.0 +20439,72,34.8,13,0.0 +20439,41,9.65,37,0.0 +20439,66,17,30,0.0 +20440,40,18.4,25,0.0 +20440,73,15,42,0.0 +20440,24,4.5,3,0.0 +20440,77,13,34,0.0 +20440,48,12.75,43,0.0 +20440,10,31,28,0.0 +20440,6,25,25,0.0 +20440,69,36,40,0.0 +20440,75,7.75,23,0.0 +20440,19,9.2,16,0.0 +20440,21,10,13,0.0 +20440,9,97,5,0.0 +20440,56,38,24,0.0 +20440,63,43.9,47,0.0 +20440,42,14,9,0.0 +20440,8,40,28,0.0 +20440,68,12.5,44,0.0 +20440,30,25.89,24,0.0 +20440,57,19.5,24,0.0 +20440,76,18,40,0.0 +20440,28,45.6,5,0.0 +20440,35,18,40,0.0 +20440,3,10,28,0.0 +20440,55,24,1,0.0 +20440,16,17.45,29,0.0 +20440,62,49.3,11,0.0 +20440,44,19.45,22,0.0 +20440,32,32,27,0.0 +20440,39,18,17,0.0 +20440,52,7,50,0.0 +20440,14,23.25,30,0.0 +20440,26,31.23,26,0.0 +20440,41,9.65,48,0.0 +20440,46,12,12,0.0 +20440,74,10,19,0.0 +20440,31,12.5,50,0.0 +20440,53,32.8,48,0.0 +20440,61,28.5,16,0.0 +20440,5,21.35,17,0.0 +20440,23,9,38,0.0 +20440,65,21.05,43,0.0 +20440,66,17,48,0.0 +20440,20,81,3,0.0 +20440,2,19,40,0.0 +20440,27,43.9,5,0.0 +20440,64,33.25,47,0.0 +20440,71,21.5,6,0.0 +20440,18,62.5,18,0.0 +20440,43,46,33,0.0 +20440,70,15,13,0.0 +20440,12,38,47,0.0 +20440,54,7.45,33,0.0 +20440,11,21,47,0.0 +20440,13,6,42,0.0 +20440,25,14,3,0.0 +20440,47,9.5,40,0.0 +20440,58,13.25,25,0.0 +20440,29,123.79,11,0.0 +20440,45,9.5,22,0.0 +20440,60,34,19,0.0 +20440,17,39,27,0.0 +20440,67,14,6,0.0 +20440,7,30,15,0.0 +20440,51,53,10,0.0 +20440,72,34.8,26,0.0 +20440,1,18,3,0.0 +20440,34,14,5,0.0 +20441,23,9,20,0.0 +20441,47,9.5,35,0.0 +20441,74,10,45,0.0 +20441,49,20,38,0.0 +20441,35,18,20,0.0 +20441,17,39,42,0.0 +20441,36,19,6,0.0 +20441,9,97,46,0.0 +20441,24,4.5,14,0.0 +20441,50,16.25,19,0.0 +20441,66,17,37,0.0 +20441,62,49.3,28,0.0 +20441,55,24,20,0.0 +20441,54,7.45,5,0.0 +20441,5,21.35,6,0.0 +20441,44,19.45,19,0.0 +20441,19,9.2,27,0.0 +20441,4,22,37,0.0 +20441,39,18,37,0.0 +20441,48,12.75,13,0.0 +20441,52,7,3,0.0 +20441,41,9.65,20,0.0 +20441,65,21.05,1,0.0 +20441,63,43.9,14,0.0 +20441,16,17.45,41,0.0 +20441,75,7.75,45,0.0 +20441,27,43.9,28,0.0 +20441,22,21,48,0.0 +20441,59,55,44,0.0 +20441,1,18,30,0.0 +20441,38,263.5,6,0.0 +20441,29,123.79,9,0.0 +20441,21,10,41,0.0 +20441,14,23.25,17,0.0 +20441,7,30,18,0.0 +20441,60,34,50,0.0 +20442,43,46,5,0.0 +20442,3,10,11,0.0 +20442,74,10,12,0.0 +20442,72,34.8,4,0.0 +20442,29,123.79,27,0.0 +20442,36,19,2,0.0 +20442,1,18,50,0.0 +20442,9,97,43,0.0 +20442,54,7.45,44,0.0 +20442,53,32.8,2,0.0 +20442,2,19,6,0.0 +20442,14,23.25,49,0.0 +20442,39,18,41,0.0 +20442,41,9.65,21,0.0 +20442,20,81,28,0.0 +20442,56,38,18,0.0 +20442,58,13.25,21,0.0 +20442,32,32,12,0.0 +20442,65,21.05,49,0.0 +20442,19,9.2,31,0.0 +20442,62,49.3,7,0.0 +20442,57,19.5,6,0.0 +20443,75,7.75,46,0.0 +20443,31,12.5,37,0.0 +20443,15,15.5,50,0.0 +20443,19,9.2,23,0.0 +20443,52,7,22,0.0 +20443,4,22,30,0.0 +20443,57,19.5,49,0.0 +20443,1,18,13,0.0 +20443,60,34,13,0.0 +20443,67,14,47,0.0 +20443,21,10,42,0.0 +20443,47,9.5,46,0.0 +20443,28,45.6,21,0.0 +20443,11,21,35,0.0 +20443,65,21.05,30,0.0 +20443,7,30,26,0.0 +20443,58,13.25,22,0.0 +20443,23,9,15,0.0 +20443,25,14,31,0.0 +20443,6,25,13,0.0 +20443,5,21.35,50,0.0 +20443,35,18,48,0.0 +20443,64,33.25,26,0.0 +20443,40,18.4,36,0.0 +20443,50,16.25,26,0.0 +20443,41,9.65,27,0.0 +20443,66,17,49,0.0 +20443,46,12,19,0.0 +20443,16,17.45,47,0.0 +20443,8,40,48,0.0 +20443,70,15,38,0.0 +20443,74,10,19,0.0 +20443,2,19,25,0.0 +20443,12,38,14,0.0 +20443,37,26,20,0.0 +20443,55,24,22,0.0 +20443,34,14,40,0.0 +20443,71,21.5,32,0.0 +20443,56,38,46,0.0 +20443,61,28.5,15,0.0 +20443,9,97,34,0.0 +20443,68,12.5,4,0.0 +20443,69,36,47,0.0 +20443,62,49.3,29,0.0 +20443,73,15,16,0.0 +20443,20,81,38,0.0 +20443,72,34.8,28,0.0 +20443,33,2.5,32,0.0 +20443,49,20,27,0.0 +20443,54,7.45,45,0.0 +20443,48,12.75,20,0.0 +20443,42,14,31,0.0 +20443,77,13,4,0.0 +20443,38,263.5,21,0.0 +20443,22,21,40,0.0 +20443,63,43.9,23,0.0 +20443,44,19.45,38,0.0 +20443,18,62.5,32,0.0 +20443,45,9.5,22,0.0 +20443,13,6,26,0.0 +20443,51,53,40,0.0 +20443,36,19,35,0.0 +20443,39,18,41,0.0 +20443,27,43.9,38,0.0 +20443,29,123.79,4,0.0 +20443,43,46,50,0.0 +20443,59,55,10,0.0 +20443,14,23.25,10,0.0 +20443,10,31,24,0.0 +20443,17,39,9,0.0 +20444,19,9.2,24,0.0 +20444,1,18,9,0.0 +20444,7,30,15,0.0 +20444,70,15,7,0.0 +20444,33,2.5,30,0.0 +20444,53,32.8,34,0.0 +20444,38,263.5,47,0.0 +20444,43,46,39,0.0 +20444,8,40,29,0.0 +20444,65,21.05,19,0.0 +20444,54,7.45,41,0.0 +20444,3,10,11,0.0 +20444,35,18,33,0.0 +20444,59,55,36,0.0 +20444,2,19,50,0.0 +20444,50,16.25,16,0.0 +20444,34,14,16,0.0 +20444,13,6,4,0.0 +20444,41,9.65,11,0.0 +20444,12,38,2,0.0 +20444,64,33.25,15,0.0 +20444,36,19,40,0.0 +20444,47,9.5,19,0.0 +20444,51,53,19,0.0 +20444,69,36,47,0.0 +20444,15,15.5,13,0.0 +20444,72,34.8,44,0.0 +20444,66,17,48,0.0 +20444,45,9.5,8,0.0 +20444,39,18,39,0.0 +20444,4,22,5,0.0 +20444,28,45.6,43,0.0 +20444,49,20,29,0.0 +20444,25,14,31,0.0 +20444,40,18.4,21,0.0 +20444,30,25.89,27,0.0 +20444,52,7,4,0.0 +20444,16,17.45,5,0.0 +20444,74,10,21,0.0 +20444,23,9,12,0.0 +20444,76,18,10,0.0 +20444,37,26,3,0.0 +20444,32,32,6,0.0 +20444,62,49.3,2,0.0 +20444,5,21.35,43,0.0 +20444,63,43.9,21,0.0 +20444,17,39,17,0.0 +20444,56,38,43,0.0 +20444,29,123.79,48,0.0 +20444,44,19.45,7,0.0 +20444,6,25,26,0.0 +20444,18,62.5,6,0.0 +20444,42,14,40,0.0 +20444,22,21,33,0.0 +20444,20,81,44,0.0 +20444,58,13.25,21,0.0 +20444,68,12.5,27,0.0 +20444,14,23.25,31,0.0 +20444,46,12,46,0.0 +20444,24,4.5,33,0.0 +20444,73,15,28,0.0 +20444,60,34,36,0.0 +20444,61,28.5,21,0.0 +20444,9,97,23,0.0 +20444,55,24,17,0.0 +20444,67,14,11,0.0 +20444,26,31.23,50,0.0 +20444,71,21.5,39,0.0 +20445,55,24,18,0.0 +20445,65,21.05,48,0.0 +20445,45,9.5,45,0.0 +20445,40,18.4,7,0.0 +20445,23,9,43,0.0 +20445,59,55,25,0.0 +20445,76,18,46,0.0 +20445,63,43.9,8,0.0 +20445,18,62.5,4,0.0 +20445,50,16.25,2,0.0 +20445,71,21.5,17,0.0 +20445,75,7.75,34,0.0 +20445,13,6,13,0.0 +20445,4,22,37,0.0 +20445,11,21,28,0.0 +20445,56,38,11,0.0 +20445,60,34,5,0.0 +20445,41,9.65,36,0.0 +20445,30,25.89,28,0.0 +20445,73,15,35,0.0 +20445,1,18,35,0.0 +20445,6,25,37,0.0 +20445,47,9.5,31,0.0 +20445,27,43.9,34,0.0 +20445,38,263.5,7,0.0 +20445,54,7.45,26,0.0 +20445,37,26,39,0.0 +20445,14,23.25,31,0.0 +20445,42,14,36,0.0 +20445,74,10,28,0.0 +20445,15,15.5,10,0.0 +20445,77,13,50,0.0 +20445,70,15,38,0.0 +20445,34,14,13,0.0 +20445,24,4.5,25,0.0 +20445,32,32,34,0.0 +20445,53,32.8,21,0.0 +20445,26,31.23,10,0.0 +20445,48,12.75,10,0.0 +20445,25,14,50,0.0 +20445,58,13.25,35,0.0 +20445,33,2.5,50,0.0 +20445,69,36,45,0.0 +20445,43,46,32,0.0 +20445,52,7,32,0.0 +20445,31,12.5,48,0.0 +20445,29,123.79,41,0.0 +20445,22,21,20,0.0 +20445,68,12.5,1,0.0 +20445,28,45.6,15,0.0 +20445,57,19.5,33,0.0 +20445,17,39,33,0.0 +20445,66,17,5,0.0 +20445,35,18,31,0.0 +20445,39,18,5,0.0 +20445,61,28.5,35,0.0 +20445,16,17.45,14,0.0 +20445,10,31,32,0.0 +20445,19,9.2,17,0.0 +20445,44,19.45,1,0.0 +20445,51,53,21,0.0 +20445,21,10,12,0.0 +20445,3,10,3,0.0 +20445,64,33.25,20,0.0 +20445,46,12,34,0.0 +20445,62,49.3,47,0.0 +20445,67,14,24,0.0 +20445,2,19,48,0.0 +20445,12,38,18,0.0 +20445,8,40,8,0.0 +20446,22,21,23,0.0 +20446,63,43.9,9,0.0 +20446,35,18,21,0.0 +20446,65,21.05,23,0.0 +20446,8,40,30,0.0 +20446,1,18,25,0.0 +20446,11,21,50,0.0 +20446,10,31,4,0.0 +20446,46,12,44,0.0 +20446,77,13,44,0.0 +20446,26,31.23,44,0.0 +20446,50,16.25,22,0.0 +20446,32,32,39,0.0 +20446,36,19,12,0.0 +20446,18,62.5,38,0.0 +20446,37,26,8,0.0 +20446,33,2.5,36,0.0 +20446,20,81,38,0.0 +20446,58,13.25,6,0.0 +20446,19,9.2,44,0.0 +20446,62,49.3,19,0.0 +20446,55,24,5,0.0 +20446,71,21.5,8,0.0 +20446,54,7.45,14,0.0 +20446,24,4.5,18,0.0 +20446,38,263.5,40,0.0 +20446,48,12.75,6,0.0 +20446,31,12.5,48,0.0 +20446,51,53,49,0.0 +20446,69,36,39,0.0 +20446,59,55,4,0.0 +20446,3,10,12,0.0 +20446,49,20,11,0.0 +20446,14,23.25,5,0.0 +20446,16,17.45,42,0.0 +20446,66,17,1,0.0 +20446,30,25.89,11,0.0 +20446,70,15,1,0.0 +20446,67,14,37,0.0 +20446,28,45.6,18,0.0 +20446,74,10,23,0.0 +20446,2,19,44,0.0 +20446,60,34,38,0.0 +20446,52,7,9,0.0 +20446,5,21.35,15,0.0 +20446,25,14,42,0.0 +20446,21,10,4,0.0 +20446,41,9.65,37,0.0 +20446,13,6,8,0.0 +20446,43,46,43,0.0 +20446,15,15.5,27,0.0 +20446,73,15,36,0.0 +20446,75,7.75,45,0.0 +20446,61,28.5,42,0.0 +20446,45,9.5,43,0.0 +20446,57,19.5,43,0.0 +20446,9,97,20,0.0 +20446,29,123.79,11,0.0 +20446,17,39,15,0.0 +20446,42,14,3,0.0 +20446,34,14,48,0.0 +20446,4,22,50,0.0 +20446,72,34.8,34,0.0 +20446,53,32.8,39,0.0 +20446,12,38,13,0.0 +20446,27,43.9,23,0.0 +20446,7,30,8,0.0 +20447,37,26,16,0.0 +20447,71,21.5,34,0.0 +20447,9,97,28,0.0 +20447,63,43.9,1,0.0 +20447,41,9.65,43,0.0 +20447,23,9,10,0.0 +20447,43,46,3,0.0 +20447,42,14,35,0.0 +20447,49,20,17,0.0 +20447,16,17.45,4,0.0 +20447,76,18,26,0.0 +20447,40,18.4,38,0.0 +20447,73,15,33,0.0 +20447,64,33.25,34,0.0 +20447,13,6,22,0.0 +20447,17,39,8,0.0 +20447,58,13.25,47,0.0 +20447,74,10,27,0.0 +20447,29,123.79,6,0.0 +20447,22,21,31,0.0 +20447,35,18,13,0.0 +20447,50,16.25,29,0.0 +20447,52,7,29,0.0 +20447,53,32.8,3,0.0 +20447,69,36,3,0.0 +20447,70,15,21,0.0 +20447,47,9.5,32,0.0 +20447,57,19.5,23,0.0 +20447,66,17,6,0.0 +20447,59,55,21,0.0 +20447,54,7.45,39,0.0 +20447,27,43.9,40,0.0 +20447,39,18,5,0.0 +20447,46,12,19,0.0 +20447,60,34,4,0.0 +20447,20,81,46,0.0 +20448,77,13,33,0.0 +20449,34,14,45,0.0 +20449,61,28.5,23,0.0 +20449,22,21,48,0.0 +20449,20,81,20,0.0 +20449,36,19,24,0.0 +20449,35,18,21,0.0 +20449,57,19.5,8,0.0 +20449,63,43.9,24,0.0 +20449,26,31.23,25,0.0 +20449,49,20,35,0.0 +20449,15,15.5,30,0.0 +20449,29,123.79,22,0.0 +20449,60,34,17,0.0 +20449,9,97,33,0.0 +20449,47,9.5,23,0.0 +20449,69,36,8,0.0 +20449,58,13.25,30,0.0 +20449,70,15,38,0.0 +20449,42,14,19,0.0 +20449,59,55,4,0.0 +20449,2,19,17,0.0 +20449,56,38,29,0.0 +20449,25,14,39,0.0 +20449,24,4.5,12,0.0 +20449,72,34.8,42,0.0 +20449,46,12,2,0.0 +20449,43,46,4,0.0 +20449,54,7.45,15,0.0 +20449,38,263.5,39,0.0 +20449,23,9,46,0.0 +20449,30,25.89,32,0.0 +20449,48,12.75,39,0.0 +20449,62,49.3,42,0.0 +20449,17,39,3,0.0 +20449,28,45.6,38,0.0 +20450,8,40,11,0.0 +20450,5,21.35,9,0.0 +20450,57,19.5,23,0.0 +20450,37,26,14,0.0 +20450,17,39,25,0.0 +20450,1,18,40,0.0 +20450,21,10,29,0.0 +20450,4,22,30,0.0 +20450,28,45.6,18,0.0 +20450,71,21.5,50,0.0 +20450,66,17,27,0.0 +20450,33,2.5,47,0.0 +20450,47,9.5,10,0.0 +20450,46,12,9,0.0 +20450,38,263.5,19,0.0 +20450,61,28.5,41,0.0 +20450,43,46,37,0.0 +20450,24,4.5,23,0.0 +20450,20,81,32,0.0 +20450,70,15,38,0.0 +20450,73,15,11,0.0 +20450,14,23.25,21,0.0 +20450,40,18.4,12,0.0 +20450,15,15.5,6,0.0 +20450,48,12.75,9,0.0 +20450,7,30,45,0.0 +20450,74,10,18,0.0 +20450,54,7.45,22,0.0 +20450,31,12.5,30,0.0 +20450,72,34.8,26,0.0 +20450,36,19,11,0.0 +20450,27,43.9,49,0.0 +20450,22,21,21,0.0 +20450,19,9.2,1,0.0 +20450,29,123.79,35,0.0 +20450,69,36,27,0.0 +20450,18,62.5,33,0.0 +20450,42,14,22,0.0 +20450,58,13.25,40,0.0 +20450,53,32.8,12,0.0 +20450,3,10,38,0.0 +20450,52,7,24,0.0 +20450,76,18,3,0.0 +20450,56,38,34,0.0 +20450,10,31,7,0.0 +20450,2,19,35,0.0 +20450,49,20,48,0.0 +20450,9,97,2,0.0 +20450,25,14,6,0.0 +20450,41,9.65,1,0.0 +20450,64,33.25,26,0.0 +20450,23,9,23,0.0 +20450,60,34,35,0.0 +20450,68,12.5,33,0.0 +20450,11,21,45,0.0 +20450,12,38,43,0.0 +20451,40,18.4,23,0.0 +20451,47,9.5,5,0.0 +20451,22,21,33,0.0 +20451,42,14,38,0.0 +20451,30,25.89,46,0.0 +20451,1,18,15,0.0 +20451,12,38,10,0.0 +20451,27,43.9,39,0.0 +20451,58,13.25,29,0.0 +20451,60,34,43,0.0 +20451,48,12.75,22,0.0 +20451,46,12,10,0.0 +20451,18,62.5,39,0.0 +20451,7,30,4,0.0 +20451,63,43.9,32,0.0 +20451,45,9.5,27,0.0 +20451,17,39,3,0.0 +20451,35,18,10,0.0 +20451,51,53,46,0.0 +20451,61,28.5,19,0.0 +20451,14,23.25,46,0.0 +20451,44,19.45,46,0.0 +20451,6,25,30,0.0 +20451,49,20,23,0.0 +20451,29,123.79,2,0.0 +20451,16,17.45,40,0.0 +20451,9,97,44,0.0 +20451,15,15.5,21,0.0 +20451,74,10,47,0.0 +20451,11,21,32,0.0 +20451,23,9,5,0.0 +20451,20,81,37,0.0 +20451,53,32.8,46,0.0 +20451,3,10,47,0.0 +20451,33,2.5,23,0.0 +20451,39,18,31,0.0 +20451,38,263.5,44,0.0 +20451,25,14,33,0.0 +20451,72,34.8,50,0.0 +20451,4,22,7,0.0 +20451,62,49.3,34,0.0 +20451,55,24,33,0.0 +20451,57,19.5,36,0.0 +20451,52,7,50,0.0 +20451,21,10,11,0.0 +20451,75,7.75,21,0.0 +20451,64,33.25,9,0.0 +20451,37,26,2,0.0 +20451,56,38,38,0.0 +20451,26,31.23,9,0.0 +20451,2,19,33,0.0 +20451,10,31,8,0.0 +20451,36,19,24,0.0 +20451,67,14,17,0.0 +20451,28,45.6,12,0.0 +20451,24,4.5,32,0.0 +20451,65,21.05,25,0.0 +20452,42,14,24,0.0 +20452,27,43.9,23,0.0 +20452,8,40,3,0.0 +20452,52,7,20,0.0 +20452,47,9.5,41,0.0 +20452,11,21,26,0.0 +20452,13,6,6,0.0 +20452,40,18.4,15,0.0 +20452,71,21.5,40,0.0 +20452,24,4.5,24,0.0 +20452,62,49.3,35,0.0 +20453,71,21.5,28,0.0 +20453,14,23.25,44,0.0 +20453,24,4.5,2,0.0 +20453,11,21,3,0.0 +20453,28,45.6,41,0.0 +20453,16,17.45,12,0.0 +20453,44,19.45,27,0.0 +20453,47,9.5,39,0.0 +20453,64,33.25,48,0.0 +20453,30,25.89,2,0.0 +20453,50,16.25,22,0.0 +20453,63,43.9,19,0.0 +20453,10,31,10,0.0 +20453,48,12.75,46,0.0 +20453,17,39,20,0.0 +20453,27,43.9,32,0.0 +20453,33,2.5,29,0.0 +20453,8,40,45,0.0 +20453,52,7,10,0.0 +20453,1,18,43,0.0 +20453,29,123.79,12,0.0 +20453,59,55,20,0.0 +20453,5,21.35,14,0.0 +20453,49,20,27,0.0 +20453,77,13,40,0.0 +20453,35,18,42,0.0 +20453,9,97,17,0.0 +20453,51,53,35,0.0 +20453,75,7.75,47,0.0 +20453,67,14,33,0.0 +20453,56,38,24,0.0 +20453,12,38,20,0.0 +20453,65,21.05,40,0.0 +20453,40,18.4,16,0.0 +20453,7,30,32,0.0 +20453,58,13.25,43,0.0 +20453,76,18,22,0.0 +20453,46,12,32,0.0 +20453,34,14,44,0.0 +20453,60,34,22,0.0 +20453,3,10,12,0.0 +20453,21,10,28,0.0 +20453,13,6,28,0.0 +20453,32,32,28,0.0 +20453,55,24,27,0.0 +20453,54,7.45,10,0.0 +20453,42,14,19,0.0 +20453,66,17,36,0.0 +20453,22,21,47,0.0 +20453,43,46,17,0.0 +20453,53,32.8,3,0.0 +20453,37,26,36,0.0 +20453,4,22,15,0.0 +20453,70,15,26,0.0 +20453,19,9.2,37,0.0 +20453,45,9.5,21,0.0 +20453,36,19,27,0.0 +20453,72,34.8,21,0.0 +20453,15,15.5,22,0.0 +20453,20,81,39,0.0 +20453,57,19.5,4,0.0 +20453,39,18,3,0.0 +20453,74,10,48,0.0 +20453,18,62.5,46,0.0 +20453,26,31.23,29,0.0 +20453,31,12.5,44,0.0 +20454,21,10,26,0.0 +20454,64,33.25,50,0.0 +20454,68,12.5,45,0.0 +20454,52,7,13,0.0 +20454,32,32,17,0.0 +20454,47,9.5,48,0.0 +20454,20,81,33,0.0 +20454,70,15,8,0.0 +20454,58,13.25,41,0.0 +20454,75,7.75,19,0.0 +20454,57,19.5,37,0.0 +20454,56,38,13,0.0 +20454,61,28.5,36,0.0 +20454,4,22,27,0.0 +20454,66,17,37,0.0 +20454,54,7.45,26,0.0 +20454,69,36,22,0.0 +20454,11,21,2,0.0 +20454,36,19,32,0.0 +20454,55,24,44,0.0 +20454,2,19,1,0.0 +20454,23,9,39,0.0 +20454,25,14,37,0.0 +20454,73,15,25,0.0 +20454,5,21.35,36,0.0 +20454,59,55,25,0.0 +20454,6,25,41,0.0 +20454,16,17.45,44,0.0 +20454,42,14,24,0.0 +20454,38,263.5,9,0.0 +20454,62,49.3,38,0.0 +20454,27,43.9,33,0.0 +20454,13,6,32,0.0 +20454,10,31,29,0.0 +20454,15,15.5,27,0.0 +20454,26,31.23,9,0.0 +20454,41,9.65,4,0.0 +20454,46,12,12,0.0 +20454,50,16.25,39,0.0 +20454,40,18.4,13,0.0 +20454,39,18,18,0.0 +20454,74,10,45,0.0 +20455,32,32,29,0.0 +20455,39,18,26,0.0 +20455,2,19,25,0.0 +20455,35,18,35,0.0 +20455,59,55,38,0.0 +20455,36,19,45,0.0 +20455,66,17,43,0.0 +20455,68,12.5,39,0.0 +20455,69,36,39,0.0 +20455,77,13,2,0.0 +20455,65,21.05,15,0.0 +20455,58,13.25,47,0.0 +20455,21,10,40,0.0 +20455,23,9,22,0.0 +20455,11,21,40,0.0 +20455,67,14,18,0.0 +20455,24,4.5,18,0.0 +20455,25,14,48,0.0 +20455,72,34.8,40,0.0 +20455,37,26,24,0.0 +20455,62,49.3,35,0.0 +20455,46,12,43,0.0 +20455,50,16.25,48,0.0 +20455,5,21.35,25,0.0 +20455,13,6,11,0.0 +20455,9,97,43,0.0 +20455,71,21.5,11,0.0 +20455,73,15,10,0.0 +20455,54,7.45,26,0.0 +20455,49,20,3,0.0 +20455,47,9.5,40,0.0 +20455,3,10,23,0.0 +20455,6,25,4,0.0 +20455,70,15,40,0.0 +20455,10,31,24,0.0 +20455,14,23.25,29,0.0 +20455,42,14,13,0.0 +20455,48,12.75,46,0.0 +20455,22,21,18,0.0 +20455,43,46,6,0.0 +20455,64,33.25,10,0.0 +20455,57,19.5,9,0.0 +20455,40,18.4,21,0.0 +20455,12,38,34,0.0 +20455,53,32.8,38,0.0 +20455,30,25.89,22,0.0 +20455,31,12.5,48,0.0 +20455,15,15.5,20,0.0 +20455,74,10,47,0.0 +20455,28,45.6,46,0.0 +20455,17,39,38,0.0 +20455,76,18,34,0.0 +20455,60,34,9,0.0 +20455,8,40,2,0.0 +20455,18,62.5,4,0.0 +20455,19,9.2,38,0.0 +20455,55,24,22,0.0 +20455,7,30,49,0.0 +20455,41,9.65,19,0.0 +20455,4,22,6,0.0 +20455,44,19.45,21,0.0 +20455,20,81,33,0.0 +20455,1,18,10,0.0 +20456,12,38,8,0.0 +20456,69,36,17,0.0 +20456,71,21.5,50,0.0 +20456,24,4.5,34,0.0 +20456,11,21,33,0.0 +20456,22,21,16,0.0 +20456,64,33.25,22,0.0 +20456,61,28.5,12,0.0 +20456,4,22,37,0.0 +20456,39,18,31,0.0 +20456,52,7,3,0.0 +20456,74,10,44,0.0 +20456,49,20,29,0.0 +20456,46,12,45,0.0 +20456,51,53,44,0.0 +20456,54,7.45,41,0.0 +20456,73,15,9,0.0 +20456,26,31.23,15,0.0 +20456,27,43.9,19,0.0 +20456,63,43.9,46,0.0 +20456,70,15,25,0.0 +20456,50,16.25,27,0.0 +20456,40,18.4,2,0.0 +20456,9,97,22,0.0 +20456,38,263.5,47,0.0 +20456,18,62.5,8,0.0 +20456,65,21.05,39,0.0 +20456,35,18,28,0.0 +20456,30,25.89,18,0.0 +20456,66,17,44,0.0 +20456,17,39,12,0.0 +20456,60,34,1,0.0 +20456,16,17.45,34,0.0 +20456,15,15.5,47,0.0 +20456,13,6,8,0.0 +20456,7,30,9,0.0 +20456,62,49.3,46,0.0 +20456,34,14,35,0.0 +20456,57,19.5,9,0.0 +20456,21,10,25,0.0 +20456,56,38,47,0.0 +20456,68,12.5,11,0.0 +20456,53,32.8,40,0.0 +20456,67,14,19,0.0 +20456,5,21.35,4,0.0 +20456,76,18,24,0.0 +20456,10,31,32,0.0 +20456,19,9.2,37,0.0 +20456,20,81,50,0.0 +20456,43,46,28,0.0 +20456,37,26,19,0.0 +20456,75,7.75,6,0.0 +20456,58,13.25,36,0.0 +20456,44,19.45,42,0.0 +20456,45,9.5,24,0.0 +20456,36,19,11,0.0 +20456,41,9.65,43,0.0 +20456,33,2.5,6,0.0 +20456,47,9.5,46,0.0 +20456,31,12.5,9,0.0 +20456,23,9,19,0.0 +20456,28,45.6,33,0.0 +20456,42,14,43,0.0 +20456,14,23.25,26,0.0 +20456,55,24,1,0.0 +20456,8,40,1,0.0 +20456,48,12.75,9,0.0 +20456,2,19,36,0.0 +20456,1,18,1,0.0 +20456,3,10,32,0.0 +20456,77,13,50,0.0 +20456,6,25,17,0.0 +20457,7,30,33,0.0 +20457,76,18,50,0.0 +20457,10,31,45,0.0 +20457,49,20,37,0.0 +20457,33,2.5,15,0.0 +20457,27,43.9,50,0.0 +20457,26,31.23,50,0.0 +20458,53,32.8,6,0.0 +20458,14,23.25,44,0.0 +20458,10,31,28,0.0 +20458,51,53,2,0.0 +20458,44,19.45,38,0.0 +20458,13,6,33,0.0 +20458,75,7.75,24,0.0 +20458,65,21.05,27,0.0 +20458,50,16.25,15,0.0 +20458,42,14,18,0.0 +20458,74,10,24,0.0 +20458,35,18,50,0.0 +20458,15,15.5,13,0.0 +20458,58,13.25,20,0.0 +20458,76,18,20,0.0 +20458,70,15,45,0.0 +20458,59,55,50,0.0 +20458,28,45.6,21,0.0 +20458,31,12.5,43,0.0 +20458,56,38,43,0.0 +20458,41,9.65,42,0.0 +20458,27,43.9,12,0.0 +20458,54,7.45,42,0.0 +20458,17,39,16,0.0 +20458,62,49.3,33,0.0 +20458,39,18,30,0.0 +20458,69,36,15,0.0 +20459,26,31.23,17,0.0 +20459,76,18,23,0.0 +20459,67,14,13,0.0 +20459,3,10,19,0.0 +20459,75,7.75,50,0.0 +20459,15,15.5,5,0.0 +20459,40,18.4,30,0.0 +20459,55,24,11,0.0 +20459,12,38,30,0.0 +20459,60,34,46,0.0 +20459,37,26,31,0.0 +20459,52,7,39,0.0 +20459,38,263.5,49,0.0 +20459,58,13.25,49,0.0 +20459,27,43.9,6,0.0 +20459,57,19.5,6,0.0 +20459,45,9.5,14,0.0 +20459,70,15,22,0.0 +20459,11,21,11,0.0 +20459,33,2.5,19,0.0 +20459,14,23.25,39,0.0 +20459,9,97,4,0.0 +20459,65,21.05,30,0.0 +20459,28,45.6,32,0.0 +20459,64,33.25,30,0.0 +20459,73,15,22,0.0 +20459,59,55,29,0.0 +20459,69,36,34,0.0 +20459,17,39,27,0.0 +20459,46,12,34,0.0 +20459,44,19.45,12,0.0 +20459,54,7.45,10,0.0 +20459,24,4.5,47,0.0 +20459,4,22,4,0.0 +20459,61,28.5,21,0.0 +20459,7,30,23,0.0 +20459,66,17,35,0.0 +20459,53,32.8,26,0.0 +20459,49,20,29,0.0 +20459,39,18,21,0.0 +20459,25,14,39,0.0 +20459,71,21.5,44,0.0 +20460,20,81,26,0.0 +20460,52,7,47,0.0 +20460,76,18,46,0.0 +20460,7,30,41,0.0 +20460,8,40,35,0.0 +20460,33,2.5,15,0.0 +20460,30,25.89,11,0.0 +20460,73,15,15,0.0 +20460,1,18,16,0.0 +20460,77,13,5,0.0 +20460,58,13.25,36,0.0 +20460,50,16.25,32,0.0 +20460,18,62.5,34,0.0 +20460,65,21.05,29,0.0 +20460,66,17,35,0.0 +20460,64,33.25,3,0.0 +20460,75,7.75,46,0.0 +20460,38,263.5,43,0.0 +20460,60,34,18,0.0 +20460,45,9.5,37,0.0 +20460,67,14,6,0.0 +20460,16,17.45,29,0.0 +20460,71,21.5,15,0.0 +20460,3,10,1,0.0 +20460,14,23.25,31,0.0 +20460,39,18,33,0.0 +20460,37,26,2,0.0 +20460,15,15.5,35,0.0 +20460,10,31,15,0.0 +20460,42,14,18,0.0 +20460,9,97,25,0.0 +20461,17,39,28,0.0 +20461,31,12.5,1,0.0 +20461,36,19,12,0.0 +20461,45,9.5,32,0.0 +20462,9,97,49,0.0 +20462,41,9.65,23,0.0 +20462,76,18,21,0.0 +20462,17,39,11,0.0 +20462,64,33.25,18,0.0 +20462,35,18,25,0.0 +20462,66,17,3,0.0 +20462,12,38,17,0.0 +20462,61,28.5,46,0.0 +20462,69,36,5,0.0 +20462,15,15.5,11,0.0 +20462,47,9.5,26,0.0 +20462,57,19.5,21,0.0 +20462,44,19.45,29,0.0 +20462,21,10,17,0.0 +20462,31,12.5,8,0.0 +20462,10,31,31,0.0 +20462,68,12.5,21,0.0 +20462,2,19,26,0.0 +20462,3,10,33,0.0 +20462,46,12,40,0.0 +20462,24,4.5,33,0.0 +20463,18,62.5,40,0.0 +20463,38,263.5,26,0.0 +20463,30,25.89,31,0.0 +20463,54,7.45,33,0.0 +20463,31,12.5,26,0.0 +20463,50,16.25,37,0.0 +20463,52,7,6,0.0 +20463,14,23.25,42,0.0 +20463,20,81,42,0.0 +20463,10,31,21,0.0 +20463,16,17.45,13,0.0 +20463,4,22,11,0.0 +20463,44,19.45,10,0.0 +20463,51,53,23,0.0 +20463,49,20,8,0.0 +20463,12,38,49,0.0 +20463,3,10,47,0.0 +20463,36,19,16,0.0 +20463,43,46,41,0.0 +20463,75,7.75,18,0.0 +20463,32,32,25,0.0 +20463,57,19.5,34,0.0 +20463,59,55,39,0.0 +20463,11,21,40,0.0 +20463,58,13.25,14,0.0 +20463,68,12.5,2,0.0 +20463,77,13,22,0.0 +20464,77,13,30,0.0 +20464,58,13.25,10,0.0 +20464,37,26,10,0.0 +20464,5,21.35,5,0.0 +20464,36,19,14,0.0 +20464,64,33.25,49,0.0 +20464,27,43.9,47,0.0 +20464,42,14,6,0.0 +20464,66,17,15,0.0 +20464,10,31,35,0.0 +20464,38,263.5,25,0.0 +20464,16,17.45,27,0.0 +20464,18,62.5,24,0.0 +20464,68,12.5,14,0.0 +20464,22,21,19,0.0 +20464,61,28.5,48,0.0 +20464,25,14,28,0.0 +20464,67,14,43,0.0 +20464,72,34.8,45,0.0 +20464,41,9.65,28,0.0 +20464,9,97,13,0.0 +20464,54,7.45,6,0.0 +20464,74,10,4,0.0 +20464,28,45.6,15,0.0 +20464,32,32,37,0.0 +20464,62,49.3,42,0.0 +20464,35,18,30,0.0 +20464,17,39,31,0.0 +20464,11,21,4,0.0 +20464,55,24,23,0.0 +20464,2,19,18,0.0 +20464,34,14,35,0.0 +20464,3,10,14,0.0 +20464,56,38,31,0.0 +20464,45,9.5,40,0.0 +20464,49,20,46,0.0 +20464,26,31.23,12,0.0 +20464,20,81,36,0.0 +20464,47,9.5,48,0.0 +20464,15,15.5,45,0.0 +20464,76,18,41,0.0 +20464,53,32.8,31,0.0 +20464,23,9,2,0.0 +20464,43,46,17,0.0 +20464,29,123.79,22,0.0 +20464,1,18,16,0.0 +20464,8,40,8,0.0 +20464,6,25,16,0.0 +20464,21,10,37,0.0 +20464,39,18,10,0.0 +20464,31,12.5,18,0.0 +20464,75,7.75,2,0.0 +20464,69,36,38,0.0 +20464,7,30,34,0.0 +20465,37,26,46,0.0 +20466,75,7.75,23,0.0 +20466,8,40,31,0.0 +20466,40,18.4,15,0.0 +20466,72,34.8,36,0.0 +20466,54,7.45,24,0.0 +20466,2,19,13,0.0 +20466,68,12.5,34,0.0 +20466,73,15,49,0.0 +20466,1,18,10,0.0 +20466,25,14,23,0.0 +20466,61,28.5,15,0.0 +20466,41,9.65,29,0.0 +20466,37,26,34,0.0 +20466,29,123.79,6,0.0 +20466,69,36,33,0.0 +20466,57,19.5,46,0.0 +20466,31,12.5,49,0.0 +20466,59,55,40,0.0 +20466,53,32.8,49,0.0 +20466,22,21,2,0.0 +20466,44,19.45,5,0.0 +20466,39,18,5,0.0 +20466,63,43.9,45,0.0 +20466,51,53,23,0.0 +20467,13,6,14,0.0 +20467,58,13.25,20,0.0 +20467,11,21,50,0.0 +20467,15,15.5,42,0.0 +20467,44,19.45,19,0.0 +20467,72,34.8,27,0.0 +20467,57,19.5,48,0.0 +20467,38,263.5,41,0.0 +20467,43,46,10,0.0 +20467,70,15,26,0.0 +20467,28,45.6,2,0.0 +20467,67,14,40,0.0 +20467,65,21.05,2,0.0 +20467,35,18,36,0.0 +20467,7,30,48,0.0 +20467,50,16.25,25,0.0 +20467,12,38,39,0.0 +20467,14,23.25,17,0.0 +20467,16,17.45,49,0.0 +20467,39,18,31,0.0 +20467,73,15,34,0.0 +20467,2,19,15,0.0 +20467,42,14,40,0.0 +20467,17,39,18,0.0 +20467,45,9.5,14,0.0 +20467,36,19,16,0.0 +20467,4,22,28,0.0 +20467,27,43.9,24,0.0 +20467,77,13,50,0.0 +20467,20,81,4,0.0 +20467,49,20,7,0.0 +20467,54,7.45,49,0.0 +20467,37,26,24,0.0 +20467,59,55,37,0.0 +20467,53,32.8,34,0.0 +20467,21,10,9,0.0 +20467,18,62.5,3,0.0 +20467,26,31.23,34,0.0 +20467,1,18,30,0.0 +20467,48,12.75,12,0.0 +20467,71,21.5,34,0.0 +20467,5,21.35,33,0.0 +20467,34,14,38,0.0 +20467,76,18,20,0.0 +20467,51,53,42,0.0 +20467,30,25.89,48,0.0 +20467,8,40,5,0.0 +20467,69,36,11,0.0 +20467,6,25,1,0.0 +20467,19,9.2,46,0.0 +20467,31,12.5,40,0.0 +20467,46,12,3,0.0 +20467,32,32,29,0.0 +20467,33,2.5,18,0.0 +20468,74,10,50,0.0 +20468,13,6,23,0.0 +20468,72,34.8,35,0.0 +20468,55,24,35,0.0 +20468,34,14,45,0.0 +20468,65,21.05,45,0.0 +20468,38,263.5,5,0.0 +20468,54,7.45,6,0.0 +20468,46,12,45,0.0 +20468,50,16.25,30,0.0 +20468,44,19.45,8,0.0 +20468,26,31.23,14,0.0 +20468,22,21,10,0.0 +20468,47,9.5,37,0.0 +20468,76,18,12,0.0 +20468,30,25.89,4,0.0 +20468,64,33.25,42,0.0 +20468,75,7.75,13,0.0 +20468,60,34,47,0.0 +20468,15,15.5,28,0.0 +20468,48,12.75,45,0.0 +20468,4,22,50,0.0 +20468,32,32,3,0.0 +20468,19,9.2,50,0.0 +20468,10,31,23,0.0 +20468,8,40,22,0.0 +20468,21,10,10,0.0 +20468,35,18,2,0.0 +20468,37,26,25,0.0 +20468,77,13,11,0.0 +20468,40,18.4,33,0.0 +20468,17,39,31,0.0 +20468,51,53,13,0.0 +20468,63,43.9,10,0.0 +20468,57,19.5,21,0.0 +20468,71,21.5,36,0.0 +20468,18,62.5,8,0.0 +20468,14,23.25,18,0.0 +20468,16,17.45,20,0.0 +20468,5,21.35,1,0.0 +20468,70,15,11,0.0 +20468,45,9.5,6,0.0 +20468,27,43.9,33,0.0 +20468,59,55,9,0.0 +20468,62,49.3,12,0.0 +20468,33,2.5,10,0.0 +20468,36,19,17,0.0 +20468,61,28.5,26,0.0 +20468,53,32.8,6,0.0 +20468,9,97,10,0.0 +20468,2,19,32,0.0 +20468,41,9.65,18,0.0 +20468,6,25,34,0.0 +20468,11,21,22,0.0 +20468,39,18,7,0.0 +20468,58,13.25,8,0.0 +20468,3,10,40,0.0 +20468,29,123.79,7,0.0 +20468,56,38,32,0.0 +20468,12,38,15,0.0 +20468,49,20,25,0.0 +20468,7,30,25,0.0 +20468,69,36,25,0.0 +20468,20,81,43,0.0 +20468,31,12.5,49,0.0 +20468,28,45.6,50,0.0 +20468,42,14,18,0.0 +20468,25,14,19,0.0 +20468,1,18,6,0.0 +20468,52,7,14,0.0 +20468,66,17,29,0.0 +20468,67,14,6,0.0 +20469,8,40,30,0.0 +20469,71,21.5,23,0.0 +20469,36,19,25,0.0 +20469,5,21.35,4,0.0 +20469,40,18.4,50,0.0 +20469,13,6,46,0.0 +20469,18,62.5,6,0.0 +20469,24,4.5,6,0.0 +20469,31,12.5,7,0.0 +20469,25,14,33,0.0 +20469,48,12.75,15,0.0 +20469,54,7.45,23,0.0 +20469,64,33.25,6,0.0 +20469,68,12.5,25,0.0 +20469,28,45.6,38,0.0 +20469,41,9.65,24,0.0 +20469,50,16.25,13,0.0 +20469,75,7.75,33,0.0 +20469,69,36,45,0.0 +20469,38,263.5,35,0.0 +20469,33,2.5,15,0.0 +20469,35,18,15,0.0 +20469,10,31,1,0.0 +20469,61,28.5,25,0.0 +20469,53,32.8,23,0.0 +20469,65,21.05,44,0.0 +20469,11,21,9,0.0 +20469,57,19.5,31,0.0 +20469,49,20,7,0.0 +20469,21,10,42,0.0 +20469,59,55,44,0.0 +20469,55,24,41,0.0 +20469,52,7,32,0.0 +20469,22,21,28,0.0 +20469,15,15.5,28,0.0 +20469,2,19,39,0.0 +20469,47,9.5,14,0.0 +20469,32,32,5,0.0 +20470,51,53,4,0.0 +20470,26,31.23,23,0.0 +20470,24,4.5,18,0.0 +20470,60,34,43,0.0 +20470,27,43.9,31,0.0 +20470,4,22,30,0.0 +20470,64,33.25,12,0.0 +20470,71,21.5,2,0.0 +20470,54,7.45,2,0.0 +20470,36,19,12,0.0 +20470,43,46,12,0.0 +20470,63,43.9,50,0.0 +20470,45,9.5,45,0.0 +20470,40,18.4,24,0.0 +20470,74,10,12,0.0 +20470,35,18,31,0.0 +20470,34,14,36,0.0 +20470,67,14,47,0.0 +20470,38,263.5,46,0.0 +20470,44,19.45,31,0.0 +20470,15,15.5,36,0.0 +20470,13,6,23,0.0 +20470,3,10,25,0.0 +20470,65,21.05,40,0.0 +20470,1,18,1,0.0 +20470,57,19.5,42,0.0 +20471,71,21.5,25,0.0 +20471,53,32.8,50,0.0 +20471,67,14,50,0.0 +20471,60,34,42,0.0 +20471,24,4.5,38,0.0 +20471,75,7.75,44,0.0 +20471,7,30,28,0.0 +20471,21,10,35,0.0 +20471,39,18,14,0.0 +20471,11,21,12,0.0 +20471,2,19,48,0.0 +20471,23,9,5,0.0 +20471,9,97,47,0.0 +20471,65,21.05,32,0.0 +20471,16,17.45,3,0.0 +20471,31,12.5,13,0.0 +20471,33,2.5,8,0.0 +20471,40,18.4,33,0.0 +20471,48,12.75,40,0.0 +20471,38,263.5,37,0.0 +20471,4,22,25,0.0 +20472,42,14,6,0.0 +20472,39,18,47,0.0 +20472,28,45.6,6,0.0 +20472,2,19,11,0.0 +20472,67,14,4,0.0 +20472,44,19.45,5,0.0 +20472,4,22,31,0.0 +20472,58,13.25,24,0.0 +20472,20,81,46,0.0 +20472,57,19.5,3,0.0 +20472,5,21.35,44,0.0 +20472,51,53,10,0.0 +20472,50,16.25,1,0.0 +20472,65,21.05,32,0.0 +20472,41,9.65,50,0.0 +20472,31,12.5,14,0.0 +20472,34,14,16,0.0 +20472,1,18,48,0.0 +20472,17,39,18,0.0 +20472,59,55,3,0.0 +20472,29,123.79,10,0.0 +20472,19,9.2,24,0.0 +20473,11,21,10,0.0 +20473,43,46,16,0.0 +20473,14,23.25,8,0.0 +20473,65,21.05,33,0.0 +20473,45,9.5,35,0.0 +20473,20,81,18,0.0 +20473,53,32.8,2,0.0 +20473,12,38,21,0.0 +20473,77,13,23,0.0 +20473,36,19,21,0.0 +20473,41,9.65,43,0.0 +20473,49,20,1,0.0 +20473,13,6,18,0.0 +20473,8,40,12,0.0 +20473,6,25,2,0.0 +20473,71,21.5,19,0.0 +20473,27,43.9,34,0.0 +20473,4,22,6,0.0 +20473,62,49.3,17,0.0 +20473,15,15.5,33,0.0 +20473,68,12.5,45,0.0 +20473,7,30,36,0.0 +20473,44,19.45,25,0.0 +20473,42,14,18,0.0 +20473,56,38,49,0.0 +20473,76,18,14,0.0 +20473,30,25.89,22,0.0 +20473,26,31.23,8,0.0 +20473,48,12.75,19,0.0 +20473,51,53,26,0.0 +20473,58,13.25,32,0.0 +20473,60,34,39,0.0 +20473,32,32,36,0.0 +20473,10,31,49,0.0 +20473,73,15,5,0.0 +20473,39,18,33,0.0 +20473,70,15,9,0.0 +20473,67,14,35,0.0 +20473,2,19,33,0.0 +20473,33,2.5,32,0.0 +20473,28,45.6,6,0.0 +20473,17,39,3,0.0 +20473,1,18,29,0.0 +20473,55,24,11,0.0 +20473,29,123.79,1,0.0 +20473,24,4.5,5,0.0 +20473,9,97,2,0.0 +20473,37,26,48,0.0 +20473,21,10,30,0.0 +20473,75,7.75,2,0.0 +20473,5,21.35,11,0.0 +20473,38,263.5,44,0.0 +20473,16,17.45,9,0.0 +20473,22,21,18,0.0 +20473,23,9,17,0.0 +20473,40,18.4,13,0.0 +20473,50,16.25,25,0.0 +20473,72,34.8,9,0.0 +20473,52,7,40,0.0 +20474,41,9.65,4,0.0 +20474,26,31.23,26,0.0 +20474,28,45.6,18,0.0 +20474,58,13.25,47,0.0 +20474,14,23.25,3,0.0 +20474,71,21.5,24,0.0 +20474,49,20,36,0.0 +20474,22,21,5,0.0 +20474,21,10,45,0.0 +20474,27,43.9,47,0.0 +20474,42,14,19,0.0 +20474,62,49.3,42,0.0 +20474,30,25.89,43,0.0 +20474,3,10,24,0.0 +20474,34,14,11,0.0 +20474,18,62.5,11,0.0 +20474,19,9.2,11,0.0 +20474,54,7.45,44,0.0 +20474,4,22,17,0.0 +20474,56,38,6,0.0 +20474,51,53,34,0.0 +20474,20,81,31,0.0 +20474,72,34.8,36,0.0 +20474,69,36,42,0.0 +20474,57,19.5,34,0.0 +20474,53,32.8,34,0.0 +20474,76,18,30,0.0 +20474,55,24,41,0.0 +20474,8,40,38,0.0 +20474,6,25,11,0.0 +20474,67,14,30,0.0 +20474,61,28.5,41,0.0 +20474,46,12,32,0.0 +20474,12,38,1,0.0 +20474,66,17,44,0.0 +20474,33,2.5,32,0.0 +20474,38,263.5,50,0.0 +20474,11,21,27,0.0 +20474,13,6,43,0.0 +20475,51,53,9,0.0 +20475,13,6,50,0.0 +20475,74,10,32,0.0 +20475,50,16.25,13,0.0 +20475,32,32,25,0.0 +20475,58,13.25,29,0.0 +20475,37,26,13,0.0 +20475,65,21.05,2,0.0 +20475,21,10,26,0.0 +20475,67,14,4,0.0 +20475,48,12.75,10,0.0 +20475,69,36,12,0.0 +20475,77,13,22,0.0 +20475,31,12.5,17,0.0 +20475,36,19,40,0.0 +20475,34,14,17,0.0 +20475,22,21,20,0.0 +20475,30,25.89,2,0.0 +20475,17,39,26,0.0 +20475,63,43.9,49,0.0 +20475,6,25,26,0.0 +20475,64,33.25,25,0.0 +20475,26,31.23,37,0.0 +20475,61,28.5,1,0.0 +20475,47,9.5,15,0.0 +20475,33,2.5,44,0.0 +20475,3,10,25,0.0 +20475,75,7.75,38,0.0 +20475,7,30,3,0.0 +20475,52,7,13,0.0 +20475,10,31,1,0.0 +20475,55,24,50,0.0 +20475,18,62.5,35,0.0 +20475,62,49.3,14,0.0 +20475,15,15.5,37,0.0 +20475,16,17.45,18,0.0 +20475,24,4.5,48,0.0 +20475,68,12.5,37,0.0 +20475,70,15,40,0.0 +20475,44,19.45,37,0.0 +20475,72,34.8,12,0.0 +20476,1,18,23,0.0 +20476,66,17,12,0.0 +20476,69,36,16,0.0 +20476,19,9.2,31,0.0 +20476,22,21,46,0.0 +20476,5,21.35,34,0.0 +20476,43,46,17,0.0 +20476,30,25.89,36,0.0 +20476,38,263.5,13,0.0 +20476,76,18,41,0.0 +20476,4,22,46,0.0 +20476,73,15,37,0.0 +20476,8,40,19,0.0 +20476,41,9.65,41,0.0 +20476,45,9.5,32,0.0 +20476,50,16.25,38,0.0 +20476,47,9.5,20,0.0 +20476,40,18.4,10,0.0 +20476,57,19.5,43,0.0 +20476,68,12.5,24,0.0 +20476,64,33.25,45,0.0 +20476,48,12.75,37,0.0 +20476,11,21,34,0.0 +20476,24,4.5,36,0.0 +20476,33,2.5,44,0.0 +20476,27,43.9,45,0.0 +20476,14,23.25,26,0.0 +20476,77,13,47,0.0 +20476,59,55,44,0.0 +20476,62,49.3,18,0.0 +20476,63,43.9,12,0.0 +20476,12,38,5,0.0 +20476,37,26,31,0.0 +20476,46,12,22,0.0 +20476,39,18,17,0.0 +20476,53,32.8,12,0.0 +20476,71,21.5,44,0.0 +20476,54,7.45,26,0.0 +20476,65,21.05,6,0.0 +20476,17,39,20,0.0 +20476,2,19,19,0.0 +20476,29,123.79,43,0.0 +20477,4,22,47,0.0 +20477,25,14,15,0.0 +20477,68,12.5,20,0.0 +20477,58,13.25,19,0.0 +20477,26,31.23,50,0.0 +20477,61,28.5,25,0.0 +20477,63,43.9,16,0.0 +20477,3,10,50,0.0 +20477,53,32.8,26,0.0 +20477,65,21.05,24,0.0 +20477,69,36,38,0.0 +20477,29,123.79,19,0.0 +20477,62,49.3,28,0.0 +20477,40,18.4,27,0.0 +20477,21,10,27,0.0 +20477,12,38,8,0.0 +20477,13,6,47,0.0 +20477,39,18,21,0.0 +20477,9,97,41,0.0 +20477,66,17,16,0.0 +20477,74,10,23,0.0 +20477,27,43.9,28,0.0 +20477,70,15,40,0.0 +20477,59,55,35,0.0 +20477,37,26,21,0.0 +20477,2,19,50,0.0 +20477,15,15.5,46,0.0 +20477,14,23.25,9,0.0 +20477,77,13,1,0.0 +20477,36,19,7,0.0 +20477,28,45.6,15,0.0 +20477,31,12.5,1,0.0 +20477,67,14,7,0.0 +20477,43,46,35,0.0 +20477,49,20,23,0.0 +20477,35,18,50,0.0 +20477,45,9.5,43,0.0 +20477,44,19.45,7,0.0 +20477,42,14,44,0.0 +20477,76,18,49,0.0 +20477,11,21,29,0.0 +20477,7,30,25,0.0 +20477,23,9,34,0.0 +20477,8,40,26,0.0 +20477,38,263.5,19,0.0 +20477,24,4.5,38,0.0 +20477,33,2.5,34,0.0 +20477,72,34.8,34,0.0 +20477,73,15,16,0.0 +20477,18,62.5,34,0.0 +20477,22,21,27,0.0 +20477,1,18,22,0.0 +20477,54,7.45,38,0.0 +20477,60,34,17,0.0 +20477,64,33.25,43,0.0 +20477,55,24,49,0.0 +20477,20,81,22,0.0 +20477,30,25.89,50,0.0 +20477,41,9.65,31,0.0 +20478,60,34,6,0.0 +20478,27,43.9,4,0.0 +20478,18,62.5,21,0.0 +20478,33,2.5,39,0.0 +20478,75,7.75,10,0.0 +20478,41,9.65,14,0.0 +20478,44,19.45,26,0.0 +20478,67,14,23,0.0 +20478,61,28.5,33,0.0 +20478,20,81,23,0.0 +20478,19,9.2,13,0.0 +20478,63,43.9,11,0.0 +20478,57,19.5,1,0.0 +20478,39,18,18,0.0 +20479,58,13.25,14,0.0 +20479,44,19.45,35,0.0 +20479,22,21,42,0.0 +20479,35,18,42,0.0 +20479,32,32,30,0.0 +20479,17,39,1,0.0 +20479,52,7,28,0.0 +20479,76,18,45,0.0 +20479,53,32.8,30,0.0 +20479,10,31,9,0.0 +20479,46,12,36,0.0 +20479,67,14,33,0.0 +20479,26,31.23,5,0.0 +20479,27,43.9,38,0.0 +20480,16,17.45,48,0.0 +20480,61,28.5,7,0.0 +20480,52,7,13,0.0 +20480,20,81,10,0.0 +20480,51,53,29,0.0 +20480,76,18,11,0.0 +20480,31,12.5,12,0.0 +20480,24,4.5,31,0.0 +20480,57,19.5,29,0.0 +20480,50,16.25,22,0.0 +20480,64,33.25,15,0.0 +20480,6,25,28,0.0 +20481,43,46,36,0.0 +20481,64,33.25,32,0.0 +20481,56,38,10,0.0 +20481,6,25,4,0.0 +20481,73,15,32,0.0 +20481,55,24,40,0.0 +20481,69,36,46,0.0 +20481,77,13,49,0.0 +20481,39,18,21,0.0 +20481,51,53,18,0.0 +20481,27,43.9,28,0.0 +20481,40,18.4,42,0.0 +20481,26,31.23,19,0.0 +20481,70,15,50,0.0 +20481,11,21,36,0.0 +20481,12,38,39,0.0 +20481,35,18,50,0.0 +20481,57,19.5,39,0.0 +20481,59,55,17,0.0 +20481,63,43.9,14,0.0 +20481,19,9.2,9,0.0 +20481,24,4.5,43,0.0 +20481,17,39,11,0.0 +20481,76,18,50,0.0 +20481,9,97,40,0.0 +20481,15,15.5,2,0.0 +20481,50,16.25,13,0.0 +20481,13,6,29,0.0 +20481,67,14,32,0.0 +20482,42,14,46,0.0 +20482,35,18,3,0.0 +20482,62,49.3,23,0.0 +20482,60,34,31,0.0 +20482,7,30,36,0.0 +20482,28,45.6,11,0.0 +20482,43,46,11,0.0 +20482,48,12.75,31,0.0 +20482,33,2.5,39,0.0 +20482,11,21,47,0.0 +20482,38,263.5,32,0.0 +20482,18,62.5,26,0.0 +20482,17,39,1,0.0 +20482,50,16.25,2,0.0 +20482,34,14,6,0.0 +20482,13,6,30,0.0 +20482,45,9.5,26,0.0 +20482,36,19,34,0.0 +20482,59,55,23,0.0 +20482,41,9.65,32,0.0 +20482,58,13.25,25,0.0 +20482,55,24,7,0.0 +20482,67,14,11,0.0 +20482,49,20,37,0.0 +20483,13,6,3,0.0 +20483,39,18,29,0.0 +20483,34,14,11,0.0 +20483,20,81,31,0.0 +20483,23,9,15,0.0 +20483,49,20,35,0.0 +20483,70,15,33,0.0 +20483,66,17,7,0.0 +20483,56,38,46,0.0 +20483,15,15.5,7,0.0 +20483,68,12.5,16,0.0 +20483,58,13.25,3,0.0 +20483,71,21.5,1,0.0 +20483,75,7.75,27,0.0 +20483,44,19.45,17,0.0 +20483,7,30,11,0.0 +20483,36,19,36,0.0 +20483,57,19.5,40,0.0 +20483,51,53,31,0.0 +20483,31,12.5,38,0.0 +20483,4,22,39,0.0 +20483,37,26,5,0.0 +20483,61,28.5,44,0.0 +20483,41,9.65,23,0.0 +20483,10,31,40,0.0 +20483,9,97,23,0.0 +20483,35,18,29,0.0 +20483,74,10,8,0.0 +20483,33,2.5,24,0.0 +20483,21,10,13,0.0 +20483,27,43.9,22,0.0 +20483,62,49.3,22,0.0 +20483,64,33.25,15,0.0 +20484,38,263.5,8,0.0 +20484,71,21.5,16,0.0 +20484,46,12,13,0.0 +20485,46,12,22,0.0 +20485,71,21.5,50,0.0 +20485,34,14,15,0.0 +20485,13,6,26,0.0 +20485,57,19.5,22,0.0 +20485,23,9,13,0.0 +20485,30,25.89,39,0.0 +20485,58,13.25,40,0.0 +20485,43,46,7,0.0 +20485,47,9.5,21,0.0 +20485,33,2.5,17,0.0 +20485,75,7.75,5,0.0 +20485,14,23.25,25,0.0 +20485,61,28.5,17,0.0 +20485,52,7,35,0.0 +20485,55,24,49,0.0 +20485,68,12.5,50,0.0 +20485,56,38,11,0.0 +20485,36,19,50,0.0 +20485,17,39,23,0.0 +20485,50,16.25,27,0.0 +20485,25,14,5,0.0 +20485,10,31,46,0.0 +20485,16,17.45,19,0.0 +20485,26,31.23,32,0.0 +20485,15,15.5,36,0.0 +20485,66,17,41,0.0 +20485,54,7.45,9,0.0 +20485,42,14,33,0.0 +20485,39,18,2,0.0 +20485,8,40,49,0.0 +20485,41,9.65,48,0.0 +20485,72,34.8,41,0.0 +20485,4,22,26,0.0 +20485,9,97,26,0.0 +20485,59,55,5,0.0 +20485,74,10,21,0.0 +20485,22,21,24,0.0 +20485,60,34,10,0.0 +20485,5,21.35,3,0.0 +20485,40,18.4,11,0.0 +20485,77,13,8,0.0 +20485,35,18,44,0.0 +20485,44,19.45,1,0.0 +20485,6,25,36,0.0 +20485,76,18,18,0.0 +20485,7,30,15,0.0 +20485,32,32,43,0.0 +20485,27,43.9,18,0.0 +20485,38,263.5,43,0.0 +20485,67,14,36,0.0 +20485,70,15,12,0.0 +20485,51,53,8,0.0 +20485,53,32.8,43,0.0 +20485,21,10,35,0.0 +20485,31,12.5,15,0.0 +20485,69,36,35,0.0 +20485,18,62.5,21,0.0 +20485,24,4.5,10,0.0 +20485,45,9.5,2,0.0 +20485,1,18,1,0.0 +20485,28,45.6,16,0.0 +20485,64,33.25,9,0.0 +20485,49,20,26,0.0 +20485,65,21.05,40,0.0 +20485,3,10,11,0.0 +20485,37,26,30,0.0 +20486,77,13,25,0.0 +20486,9,97,50,0.0 +20486,25,14,20,0.0 +20486,8,40,17,0.0 +20486,58,13.25,21,0.0 +20486,24,4.5,7,0.0 +20486,54,7.45,37,0.0 +20486,30,25.89,22,0.0 +20486,62,49.3,46,0.0 +20486,31,12.5,44,0.0 +20486,47,9.5,38,0.0 +20486,65,21.05,47,0.0 +20487,58,13.25,32,0.0 +20487,72,34.8,21,0.0 +20487,39,18,12,0.0 +20487,48,12.75,8,0.0 +20487,53,32.8,47,0.0 +20487,67,14,11,0.0 +20487,32,32,24,0.0 +20487,46,12,50,0.0 +20487,19,9.2,8,0.0 +20487,38,263.5,43,0.0 +20487,61,28.5,37,0.0 +20487,59,55,48,0.0 +20487,33,2.5,24,0.0 +20487,10,31,44,0.0 +20487,22,21,11,0.0 +20487,3,10,31,0.0 +20487,52,7,7,0.0 +20487,12,38,30,0.0 +20487,23,9,30,0.0 +20487,29,123.79,42,0.0 +20487,71,21.5,45,0.0 +20487,31,12.5,46,0.0 +20487,49,20,18,0.0 +20487,43,46,33,0.0 +20487,6,25,18,0.0 +20487,36,19,43,0.0 +20487,65,21.05,35,0.0 +20487,74,10,48,0.0 +20487,55,24,22,0.0 +20487,21,10,5,0.0 +20487,76,18,11,0.0 +20487,64,33.25,6,0.0 +20487,60,34,39,0.0 +20487,40,18.4,8,0.0 +20487,8,40,14,0.0 +20487,2,19,19,0.0 +20488,22,21,35,0.0 +20488,21,10,40,0.0 +20488,77,13,18,0.0 +20488,28,45.6,1,0.0 +20488,16,17.45,37,0.0 +20488,37,26,9,0.0 +20488,52,7,9,0.0 +20488,54,7.45,33,0.0 +20488,4,22,16,0.0 +20488,35,18,32,0.0 +20488,19,9.2,38,0.0 +20488,39,18,33,0.0 +20488,51,53,14,0.0 +20488,3,10,5,0.0 +20488,32,32,42,0.0 +20488,67,14,31,0.0 +20488,76,18,2,0.0 +20488,26,31.23,23,0.0 +20488,15,15.5,10,0.0 +20488,8,40,42,0.0 +20488,17,39,48,0.0 +20488,2,19,42,0.0 +20488,47,9.5,8,0.0 +20488,36,19,33,0.0 +20489,29,123.79,32,0.0 +20489,70,15,38,0.0 +20489,63,43.9,25,0.0 +20489,18,62.5,17,0.0 +20489,28,45.6,14,0.0 +20489,3,10,18,0.0 +20489,35,18,32,0.0 +20489,15,15.5,45,0.0 +20489,77,13,46,0.0 +20489,51,53,22,0.0 +20489,54,7.45,4,0.0 +20489,57,19.5,40,0.0 +20489,60,34,39,0.0 +20489,72,34.8,6,0.0 +20489,13,6,33,0.0 +20489,27,43.9,40,0.0 +20489,24,4.5,14,0.0 +20489,52,7,48,0.0 +20489,64,33.25,8,0.0 +20489,5,21.35,4,0.0 +20489,46,12,11,0.0 +20489,47,9.5,48,0.0 +20489,1,18,19,0.0 +20489,22,21,16,0.0 +20489,68,12.5,9,0.0 +20489,55,24,45,0.0 +20489,69,36,38,0.0 +20489,58,13.25,7,0.0 +20489,41,9.65,39,0.0 +20489,62,49.3,18,0.0 +20489,61,28.5,9,0.0 +20489,59,55,42,0.0 +20489,73,15,49,0.0 +20489,66,17,4,0.0 +20489,49,20,8,0.0 +20489,26,31.23,26,0.0 +20489,71,21.5,30,0.0 +20489,37,26,35,0.0 +20489,9,97,11,0.0 +20489,43,46,3,0.0 +20489,10,31,12,0.0 +20489,12,38,43,0.0 +20489,21,10,17,0.0 +20489,53,32.8,36,0.0 +20489,44,19.45,21,0.0 +20489,65,21.05,30,0.0 +20489,36,19,27,0.0 +20490,5,21.35,3,0.0 +20490,17,39,20,0.0 +20490,23,9,48,0.0 +20490,2,19,5,0.0 +20490,9,97,36,0.0 +20490,50,16.25,19,0.0 +20490,4,22,22,0.0 +20490,12,38,22,0.0 +20490,26,31.23,24,0.0 +20490,66,17,3,0.0 +20490,53,32.8,22,0.0 +20490,7,30,35,0.0 +20490,30,25.89,41,0.0 +20490,32,32,49,0.0 +20490,70,15,50,0.0 +20490,46,12,23,0.0 +20490,60,34,35,0.0 +20490,45,9.5,40,0.0 +20490,35,18,5,0.0 +20490,19,9.2,17,0.0 +20490,62,49.3,46,0.0 +20490,57,19.5,14,0.0 +20490,36,19,17,0.0 +20490,37,26,31,0.0 +20490,14,23.25,1,0.0 +20490,68,12.5,34,0.0 +20490,11,21,50,0.0 +20490,8,40,43,0.0 +20490,47,9.5,46,0.0 +20490,39,18,6,0.0 +20490,71,21.5,43,0.0 +20490,21,10,12,0.0 +20490,73,15,48,0.0 +20490,69,36,48,0.0 +20490,72,34.8,46,0.0 +20490,24,4.5,4,0.0 +20490,67,14,11,0.0 +20491,70,15,3,0.0 +20491,6,25,36,0.0 +20491,21,10,49,0.0 +20491,69,36,19,0.0 +20491,72,34.8,32,0.0 +20491,23,9,30,0.0 +20492,13,6,23,0.0 +20492,19,9.2,47,0.0 +20492,40,18.4,33,0.0 +20492,52,7,9,0.0 +20492,67,14,17,0.0 +20492,11,21,7,0.0 +20492,53,32.8,22,0.0 +20492,41,9.65,15,0.0 +20492,69,36,34,0.0 +20492,29,123.79,10,0.0 +20492,65,21.05,38,0.0 +20492,59,55,18,0.0 +20492,24,4.5,16,0.0 +20492,48,12.75,23,0.0 +20492,38,263.5,9,0.0 +20492,58,13.25,28,0.0 +20492,71,21.5,50,0.0 +20492,17,39,35,0.0 +20492,72,34.8,5,0.0 +20492,12,38,33,0.0 +20492,23,9,37,0.0 +20492,45,9.5,37,0.0 +20492,34,14,46,0.0 +20492,77,13,13,0.0 +20492,5,21.35,38,0.0 +20492,35,18,30,0.0 +20492,28,45.6,27,0.0 +20492,9,97,41,0.0 +20492,26,31.23,49,0.0 +20492,36,19,44,0.0 +20492,31,12.5,5,0.0 +20492,51,53,18,0.0 +20492,61,28.5,29,0.0 +20492,18,62.5,46,0.0 +20492,3,10,40,0.0 +20492,21,10,6,0.0 +20492,4,22,28,0.0 +20492,10,31,29,0.0 +20492,75,7.75,39,0.0 +20492,73,15,33,0.0 +20492,32,32,47,0.0 +20492,57,19.5,14,0.0 +20492,54,7.45,2,0.0 +20492,56,38,43,0.0 +20492,50,16.25,29,0.0 +20492,49,20,47,0.0 +20492,15,15.5,4,0.0 +20492,33,2.5,24,0.0 +20492,74,10,35,0.0 +20492,62,49.3,27,0.0 +20492,47,9.5,4,0.0 +20492,64,33.25,33,0.0 +20492,6,25,41,0.0 +20492,22,21,9,0.0 +20492,16,17.45,33,0.0 +20492,63,43.9,24,0.0 +20492,14,23.25,30,0.0 +20492,55,24,22,0.0 +20492,44,19.45,47,0.0 +20492,8,40,24,0.0 +20492,66,17,36,0.0 +20492,37,26,12,0.0 +20492,7,30,46,0.0 +20492,68,12.5,46,0.0 +20492,27,43.9,45,0.0 +20492,46,12,39,0.0 +20492,70,15,15,0.0 +20492,25,14,6,0.0 +20492,2,19,29,0.0 +20492,30,25.89,47,0.0 +20492,42,14,32,0.0 +20493,25,14,21,0.0 +20493,70,15,46,0.0 +20493,41,9.65,26,0.0 +20493,20,81,4,0.0 +20493,6,25,43,0.0 +20493,71,21.5,32,0.0 +20493,19,9.2,4,0.0 +20493,50,16.25,24,0.0 +20493,53,32.8,33,0.0 +20493,65,21.05,13,0.0 +20493,16,17.45,45,0.0 +20493,27,43.9,6,0.0 +20493,48,12.75,18,0.0 +20493,46,12,38,0.0 +20493,38,263.5,25,0.0 +20493,75,7.75,8,0.0 +20493,30,25.89,34,0.0 +20493,13,6,37,0.0 +20493,56,38,38,0.0 +20493,58,13.25,15,0.0 +20493,32,32,9,0.0 +20493,3,10,15,0.0 +20493,77,13,4,0.0 +20493,8,40,47,0.0 +20493,2,19,36,0.0 +20493,52,7,5,0.0 +20493,12,38,42,0.0 +20493,47,9.5,31,0.0 +20493,11,21,49,0.0 +20493,44,19.45,41,0.0 +20493,74,10,33,0.0 +20493,63,43.9,11,0.0 +20493,61,28.5,30,0.0 +20493,33,2.5,50,0.0 +20493,18,62.5,48,0.0 +20493,24,4.5,48,0.0 +20493,23,9,9,0.0 +20493,26,31.23,15,0.0 +20493,1,18,42,0.0 +20493,67,14,46,0.0 +20493,64,33.25,7,0.0 +20493,28,45.6,15,0.0 +20493,73,15,7,0.0 +20493,21,10,15,0.0 +20493,43,46,37,0.0 +20493,15,15.5,4,0.0 +20494,14,23.25,44,0.0 +20494,77,13,15,0.0 +20494,41,9.65,4,0.0 +20494,16,17.45,50,0.0 +20494,22,21,49,0.0 +20494,71,21.5,39,0.0 +20494,8,40,23,0.0 +20494,21,10,42,0.0 +20494,59,55,46,0.0 +20494,24,4.5,16,0.0 +20494,50,16.25,40,0.0 +20494,54,7.45,32,0.0 +20494,70,15,48,0.0 +20494,17,39,38,0.0 +20494,38,263.5,31,0.0 +20494,11,21,18,0.0 +20494,32,32,3,0.0 +20494,6,25,46,0.0 +20494,5,21.35,2,0.0 +20494,3,10,23,0.0 +20494,33,2.5,37,0.0 +20494,25,14,23,0.0 +20494,67,14,15,0.0 +20494,2,19,38,0.0 +20494,57,19.5,10,0.0 +20494,64,33.25,26,0.0 +20494,26,31.23,12,0.0 +20494,68,12.5,49,0.0 +20494,61,28.5,48,0.0 +20494,69,36,17,0.0 +20494,4,22,46,0.0 +20494,36,19,32,0.0 +20494,34,14,7,0.0 +20494,60,34,7,0.0 +20494,9,97,14,0.0 +20494,43,46,20,0.0 +20494,73,15,14,0.0 +20494,19,9.2,25,0.0 +20494,47,9.5,10,0.0 +20494,72,34.8,7,0.0 +20494,45,9.5,21,0.0 +20494,48,12.75,50,0.0 +20494,15,15.5,16,0.0 +20494,49,20,29,0.0 +20494,30,25.89,41,0.0 +20494,75,7.75,9,0.0 +20494,62,49.3,31,0.0 +20494,37,26,2,0.0 +20494,52,7,42,0.0 +20494,58,13.25,27,0.0 +20494,42,14,46,0.0 +20494,66,17,25,0.0 +20494,74,10,32,0.0 +20494,1,18,42,0.0 +20494,13,6,12,0.0 +20494,20,81,29,0.0 +20494,12,38,1,0.0 +20494,76,18,41,0.0 +20494,44,19.45,4,0.0 +20494,63,43.9,11,0.0 +20494,7,30,12,0.0 +20494,39,18,22,0.0 +20494,18,62.5,11,0.0 +20494,35,18,7,0.0 +20494,27,43.9,47,0.0 +20494,53,32.8,26,0.0 +20494,51,53,35,0.0 +20494,29,123.79,41,0.0 +20494,10,31,26,0.0 +20494,65,21.05,6,0.0 +20494,23,9,41,0.0 +20494,46,12,25,0.0 +20495,2,19,19,0.0 +20495,23,9,11,0.0 +20495,31,12.5,22,0.0 +20495,50,16.25,31,0.0 +20495,77,13,21,0.0 +20495,66,17,18,0.0 +20495,67,14,5,0.0 +20495,73,15,27,0.0 +20496,39,18,10,0.0 +20496,42,14,20,0.0 +20496,68,12.5,20,0.0 +20496,29,123.79,38,0.0 +20496,32,32,43,0.0 +20496,60,34,45,0.0 +20496,20,81,6,0.0 +20496,71,21.5,46,0.0 +20496,76,18,2,0.0 +20496,72,34.8,24,0.0 +20496,9,97,28,0.0 +20496,75,7.75,43,0.0 +20496,58,13.25,19,0.0 +20496,28,45.6,33,0.0 +20496,55,24,21,0.0 +20496,43,46,24,0.0 +20496,66,17,24,0.0 +20496,25,14,11,0.0 +20496,67,14,10,0.0 +20496,23,9,21,0.0 +20496,3,10,28,0.0 +20496,18,62.5,15,0.0 +20496,22,21,6,0.0 +20496,13,6,3,0.0 +20496,48,12.75,7,0.0 +20496,41,9.65,20,0.0 +20496,45,9.5,44,0.0 +20496,6,25,35,0.0 +20496,70,15,40,0.0 +20496,57,19.5,21,0.0 +20496,52,7,19,0.0 +20496,4,22,18,0.0 +20496,12,38,23,0.0 +20496,30,25.89,50,0.0 +20496,11,21,35,0.0 +20496,15,15.5,43,0.0 +20497,65,21.05,2,0.0 +20497,11,21,47,0.0 +20497,5,21.35,1,0.0 +20497,8,40,39,0.0 +20497,58,13.25,20,0.0 +20497,77,13,32,0.0 +20497,42,14,34,0.0 +20497,22,21,5,0.0 +20497,50,16.25,25,0.0 +20497,47,9.5,8,0.0 +20497,33,2.5,43,0.0 +20497,40,18.4,5,0.0 +20497,66,17,45,0.0 +20497,20,81,35,0.0 +20498,66,17,35,0.0 +20498,20,81,10,0.0 +20498,37,26,15,0.0 +20498,30,25.89,8,0.0 +20498,21,10,39,0.0 +20498,64,33.25,4,0.0 +20498,36,19,9,0.0 +20498,73,15,24,0.0 +20498,70,15,24,0.0 +20498,7,30,24,0.0 +20498,13,6,12,0.0 +20498,65,21.05,46,0.0 +20498,26,31.23,21,0.0 +20498,76,18,14,0.0 +20498,10,31,4,0.0 +20498,34,14,2,0.0 +20498,9,97,15,0.0 +20498,43,46,32,0.0 +20498,15,15.5,10,0.0 +20498,42,14,31,0.0 +20498,32,32,47,0.0 +20498,55,24,16,0.0 +20498,24,4.5,21,0.0 +20498,11,21,47,0.0 +20498,47,9.5,12,0.0 +20498,23,9,41,0.0 +20498,75,7.75,15,0.0 +20498,56,38,17,0.0 +20498,22,21,31,0.0 +20498,40,18.4,16,0.0 +20498,19,9.2,20,0.0 +20498,68,12.5,1,0.0 +20498,3,10,8,0.0 +20498,59,55,4,0.0 +20499,1,18,25,0.0 +20499,10,31,25,0.0 +20499,57,19.5,2,0.0 +20499,43,46,41,0.0 +20499,24,4.5,45,0.0 +20499,50,16.25,9,0.0 +20499,65,21.05,22,0.0 +20499,29,123.79,13,0.0 +20499,71,21.5,13,0.0 +20499,14,23.25,25,0.0 +20499,31,12.5,19,0.0 +20499,67,14,1,0.0 +20499,61,28.5,40,0.0 +20499,32,32,19,0.0 +20499,39,18,44,0.0 +20499,30,25.89,19,0.0 +20499,17,39,42,0.0 +20499,5,21.35,37,0.0 +20499,54,7.45,46,0.0 +20500,75,7.75,42,0.0 +20500,69,36,23,0.0 +20500,58,13.25,30,0.0 +20500,33,2.5,25,0.0 +20500,37,26,25,0.0 +20500,77,13,16,0.0 +20500,34,14,17,0.0 +20500,3,10,49,0.0 +20500,43,46,17,0.0 +20500,54,7.45,20,0.0 +20500,36,19,36,0.0 +20500,9,97,49,0.0 +20500,48,12.75,47,0.0 +20500,15,15.5,36,0.0 +20500,18,62.5,11,0.0 +20500,45,9.5,49,0.0 +20500,12,38,25,0.0 +20500,40,18.4,27,0.0 +20500,26,31.23,12,0.0 +20500,56,38,50,0.0 +20500,1,18,4,0.0 +20500,64,33.25,35,0.0 +20500,14,23.25,26,0.0 +20500,62,49.3,19,0.0 +20500,53,32.8,8,0.0 +20500,16,17.45,30,0.0 +20500,31,12.5,39,0.0 +20500,74,10,39,0.0 +20500,5,21.35,23,0.0 +20500,27,43.9,9,0.0 +20500,32,32,45,0.0 +20500,29,123.79,41,0.0 +20500,63,43.9,26,0.0 +20500,76,18,42,0.0 +20500,22,21,18,0.0 +20500,6,25,47,0.0 +20500,41,9.65,49,0.0 +20500,49,20,25,0.0 +20500,55,24,46,0.0 +20500,10,31,7,0.0 +20500,2,19,8,0.0 +20500,66,17,50,0.0 +20500,52,7,45,0.0 +20500,13,6,29,0.0 +20500,21,10,33,0.0 +20500,46,12,9,0.0 +20500,68,12.5,36,0.0 +20500,61,28.5,32,0.0 +20500,42,14,38,0.0 +20500,17,39,22,0.0 +20500,25,14,31,0.0 +20500,60,34,9,0.0 +20500,57,19.5,5,0.0 +20501,30,25.89,45,0.0 +20501,50,16.25,25,0.0 +20501,51,53,25,0.0 +20501,59,55,45,0.0 +20501,68,12.5,12,0.0 +20501,47,9.5,14,0.0 +20501,39,18,34,0.0 +20501,70,15,5,0.0 +20501,66,17,10,0.0 +20501,6,25,3,0.0 +20502,61,28.5,4,0.0 +20502,43,46,26,0.0 +20502,50,16.25,44,0.0 +20502,35,18,29,0.0 +20502,74,10,18,0.0 +20502,47,9.5,32,0.0 +20502,57,19.5,2,0.0 +20502,18,62.5,5,0.0 +20502,1,18,46,0.0 +20502,30,25.89,30,0.0 +20502,55,24,37,0.0 +20502,51,53,8,0.0 +20502,44,19.45,28,0.0 +20502,24,4.5,11,0.0 +20502,53,32.8,42,0.0 +20502,23,9,9,0.0 +20502,65,21.05,33,0.0 +20502,15,15.5,26,0.0 +20502,31,12.5,14,0.0 +20502,63,43.9,44,0.0 +20502,37,26,30,0.0 +20502,32,32,34,0.0 +20502,70,15,47,0.0 +20502,49,20,3,0.0 +20502,40,18.4,41,0.0 +20502,41,9.65,20,0.0 +20502,71,21.5,43,0.0 +20502,58,13.25,30,0.0 +20502,45,9.5,26,0.0 +20502,73,15,38,0.0 +20502,77,13,39,0.0 +20502,59,55,41,0.0 +20502,38,263.5,28,0.0 +20502,52,7,7,0.0 +20502,56,38,43,0.0 +20502,3,10,21,0.0 +20502,69,36,14,0.0 +20502,8,40,2,0.0 +20502,26,31.23,22,0.0 +20502,28,45.6,6,0.0 +20502,21,10,24,0.0 +20502,11,21,14,0.0 +20502,75,7.75,23,0.0 +20502,60,34,23,0.0 +20502,7,30,37,0.0 +20502,46,12,8,0.0 +20502,4,22,29,0.0 +20502,34,14,33,0.0 +20502,48,12.75,17,0.0 +20502,2,19,17,0.0 +20502,54,7.45,26,0.0 +20502,16,17.45,27,0.0 +20502,33,2.5,32,0.0 +20502,72,34.8,28,0.0 +20502,25,14,45,0.0 +20502,13,6,6,0.0 +20502,5,21.35,35,0.0 +20502,12,38,33,0.0 +20502,27,43.9,28,0.0 +20503,24,4.5,6,0.0 +20503,12,38,1,0.0 +20503,41,9.65,13,0.0 +20503,7,30,41,0.0 +20503,20,81,44,0.0 +20503,19,9.2,22,0.0 +20503,56,38,10,0.0 +20503,53,32.8,6,0.0 +20503,51,53,22,0.0 +20503,60,34,24,0.0 +20503,22,21,18,0.0 +20503,29,123.79,45,0.0 +20503,27,43.9,18,0.0 +20503,2,19,1,0.0 +20503,54,7.45,26,0.0 +20503,21,10,10,0.0 +20503,73,15,29,0.0 +20503,33,2.5,22,0.0 +20503,5,21.35,24,0.0 +20503,72,34.8,13,0.0 +20503,61,28.5,12,0.0 +20503,38,263.5,21,0.0 +20503,42,14,38,0.0 +20503,74,10,47,0.0 +20503,62,49.3,40,0.0 +20503,69,36,25,0.0 +20503,31,12.5,8,0.0 +20503,18,62.5,29,0.0 +20503,15,15.5,17,0.0 +20503,55,24,26,0.0 +20503,59,55,18,0.0 +20503,57,19.5,36,0.0 +20503,64,33.25,3,0.0 +20503,48,12.75,48,0.0 +20503,39,18,31,0.0 +20503,8,40,25,0.0 +20503,52,7,48,0.0 +20503,14,23.25,45,0.0 +20503,50,16.25,12,0.0 +20503,35,18,28,0.0 +20503,25,14,49,0.0 +20503,26,31.23,31,0.0 +20504,55,24,4,0.0 +20504,36,19,24,0.0 +20504,59,55,22,0.0 +20504,45,9.5,30,0.0 +20504,35,18,26,0.0 +20504,54,7.45,12,0.0 +20504,5,21.35,23,0.0 +20504,7,30,3,0.0 +20504,46,12,1,0.0 +20504,49,20,21,0.0 +20504,72,34.8,24,0.0 +20504,30,25.89,9,0.0 +20504,21,10,10,0.0 +20504,20,81,18,0.0 +20504,66,17,2,0.0 +20504,68,12.5,29,0.0 +20504,28,45.6,43,0.0 +20504,48,12.75,14,0.0 +20504,52,7,48,0.0 +20504,74,10,47,0.0 +20504,1,18,18,0.0 +20504,75,7.75,47,0.0 +20504,26,31.23,5,0.0 +20504,32,32,50,0.0 +20504,69,36,18,0.0 +20504,40,18.4,18,0.0 +20504,41,9.65,47,0.0 +20504,11,21,19,0.0 +20504,61,28.5,46,0.0 +20504,62,49.3,1,0.0 +20504,13,6,14,0.0 +20504,53,32.8,10,0.0 +20505,64,33.25,23,0.0 +20505,25,14,6,0.0 +20505,32,32,3,0.0 +20505,67,14,50,0.0 +20505,9,97,11,0.0 +20505,55,24,2,0.0 +20505,60,34,6,0.0 +20505,45,9.5,28,0.0 +20505,38,263.5,26,0.0 +20505,72,34.8,35,0.0 +20505,73,15,14,0.0 +20505,10,31,29,0.0 +20505,27,43.9,1,0.0 +20505,59,55,21,0.0 +20505,33,2.5,24,0.0 +20505,76,18,42,0.0 +20505,36,19,8,0.0 +20505,14,23.25,47,0.0 +20505,56,38,39,0.0 +20505,21,10,39,0.0 +20505,74,10,50,0.0 +20505,20,81,7,0.0 +20505,15,15.5,40,0.0 +20505,29,123.79,22,0.0 +20505,47,9.5,44,0.0 +20505,69,36,32,0.0 +20505,24,4.5,8,0.0 +20505,48,12.75,17,0.0 +20505,65,21.05,8,0.0 +20505,42,14,37,0.0 +20505,70,15,48,0.0 +20505,68,12.5,17,0.0 +20505,53,32.8,25,0.0 +20505,52,7,25,0.0 +20505,41,9.65,5,0.0 +20505,7,30,47,0.0 +20505,51,53,20,0.0 +20505,13,6,5,0.0 +20505,58,13.25,47,0.0 +20506,74,10,42,0.0 +20506,38,263.5,11,0.0 +20506,54,7.45,44,0.0 +20506,59,55,22,0.0 +20506,27,43.9,45,0.0 +20506,67,14,48,0.0 +20506,7,30,49,0.0 +20506,42,14,7,0.0 +20506,57,19.5,30,0.0 +20506,30,25.89,44,0.0 +20506,5,21.35,44,0.0 +20506,29,123.79,15,0.0 +20506,69,36,26,0.0 +20506,31,12.5,2,0.0 +20506,43,46,46,0.0 +20506,51,53,50,0.0 +20506,26,31.23,40,0.0 +20506,36,19,11,0.0 +20506,70,15,37,0.0 +20506,14,23.25,9,0.0 +20506,11,21,20,0.0 +20506,64,33.25,39,0.0 +20506,41,9.65,34,0.0 +20506,10,31,33,0.0 +20506,48,12.75,12,0.0 +20506,23,9,5,0.0 +20506,37,26,46,0.0 +20506,65,21.05,40,0.0 +20506,17,39,18,0.0 +20506,66,17,33,0.0 +20506,72,34.8,14,0.0 +20506,13,6,21,0.0 +20506,55,24,7,0.0 +20506,56,38,21,0.0 +20506,39,18,19,0.0 +20506,21,10,39,0.0 +20506,63,43.9,21,0.0 +20506,3,10,6,0.0 +20506,28,45.6,19,0.0 +20506,18,62.5,1,0.0 +20506,25,14,11,0.0 +20506,9,97,9,0.0 +20506,71,21.5,1,0.0 +20506,75,7.75,2,0.0 +20506,45,9.5,29,0.0 +20506,16,17.45,7,0.0 +20506,44,19.45,11,0.0 +20506,19,9.2,12,0.0 +20506,34,14,49,0.0 +20506,53,32.8,39,0.0 +20506,1,18,9,0.0 +20506,61,28.5,25,0.0 +20506,20,81,43,0.0 +20506,52,7,48,0.0 +20506,15,15.5,11,0.0 +20506,4,22,15,0.0 +20506,8,40,4,0.0 +20506,47,9.5,49,0.0 +20506,2,19,20,0.0 +20507,71,21.5,46,0.0 +20507,49,20,21,0.0 +20507,40,18.4,11,0.0 +20507,51,53,20,0.0 +20507,31,12.5,33,0.0 +20507,36,19,6,0.0 +20507,63,43.9,13,0.0 +20507,15,15.5,45,0.0 +20507,21,10,22,0.0 +20507,19,9.2,21,0.0 +20507,50,16.25,45,0.0 +20507,67,14,26,0.0 +20507,52,7,23,0.0 +20507,25,14,10,0.0 +20507,38,263.5,41,0.0 +20507,16,17.45,6,0.0 +20507,20,81,43,0.0 +20507,27,43.9,19,0.0 +20507,10,31,29,0.0 +20507,7,30,44,0.0 +20507,66,17,3,0.0 +20507,14,23.25,11,0.0 +20507,5,21.35,46,0.0 +20507,76,18,7,0.0 +20507,75,7.75,50,0.0 +20507,64,33.25,4,0.0 +20507,41,9.65,24,0.0 +20507,77,13,46,0.0 +20507,1,18,32,0.0 +20507,18,62.5,14,0.0 +20507,73,15,11,0.0 +20507,65,21.05,5,0.0 +20507,44,19.45,33,0.0 +20507,46,12,18,0.0 +20507,22,21,36,0.0 +20507,69,36,11,0.0 +20507,11,21,43,0.0 +20507,58,13.25,20,0.0 +20507,2,19,29,0.0 +20507,4,22,23,0.0 +20507,48,12.75,8,0.0 +20507,37,26,4,0.0 +20507,45,9.5,28,0.0 +20507,6,25,42,0.0 +20507,68,12.5,49,0.0 +20507,56,38,37,0.0 +20507,53,32.8,46,0.0 +20507,43,46,21,0.0 +20507,55,24,20,0.0 +20507,30,25.89,50,0.0 +20507,35,18,42,0.0 +20507,26,31.23,41,0.0 +20507,62,49.3,46,0.0 +20507,60,34,21,0.0 +20508,12,38,20,0.0 +20508,66,17,4,0.0 +20508,69,36,50,0.0 +20508,7,30,25,0.0 +20508,34,14,41,0.0 +20508,28,45.6,25,0.0 +20508,2,19,8,0.0 +20508,71,21.5,9,0.0 +20508,3,10,36,0.0 +20508,10,31,40,0.0 +20508,72,34.8,27,0.0 +20508,75,7.75,24,0.0 +20508,4,22,27,0.0 +20508,31,12.5,9,0.0 +20508,38,263.5,10,0.0 +20508,73,15,47,0.0 +20508,67,14,38,0.0 +20508,24,4.5,47,0.0 +20508,35,18,3,0.0 +20508,51,53,38,0.0 +20508,25,14,28,0.0 +20508,8,40,20,0.0 +20508,52,7,42,0.0 +20509,58,13.25,16,0.0 +20509,12,38,10,0.0 +20509,7,30,25,0.0 +20509,71,21.5,38,0.0 +20509,39,18,36,0.0 +20509,72,34.8,11,0.0 +20509,76,18,47,0.0 +20509,60,34,14,0.0 +20509,69,36,12,0.0 +20509,42,14,49,0.0 +20509,1,18,45,0.0 +20509,38,263.5,17,0.0 +20509,68,12.5,22,0.0 +20509,44,19.45,15,0.0 +20509,54,7.45,14,0.0 +20509,16,17.45,48,0.0 +20509,62,49.3,31,0.0 +20509,19,9.2,2,0.0 +20509,26,31.23,21,0.0 +20509,59,55,27,0.0 +20509,32,32,45,0.0 +20509,21,10,40,0.0 +20509,35,18,21,0.0 +20509,64,33.25,10,0.0 +20509,46,12,8,0.0 +20509,49,20,17,0.0 +20509,4,22,12,0.0 +20509,23,9,19,0.0 +20509,48,12.75,36,0.0 +20509,25,14,9,0.0 +20509,74,10,3,0.0 +20509,66,17,35,0.0 +20509,15,15.5,7,0.0 +20509,24,4.5,4,0.0 +20509,67,14,24,0.0 +20509,77,13,40,0.0 +20509,61,28.5,17,0.0 +20509,2,19,26,0.0 +20509,31,12.5,35,0.0 +20509,28,45.6,46,0.0 +20509,18,62.5,42,0.0 +20509,52,7,12,0.0 +20509,70,15,22,0.0 +20509,6,25,43,0.0 +20509,37,26,41,0.0 +20509,75,7.75,49,0.0 +20509,29,123.79,10,0.0 +20509,41,9.65,6,0.0 +20509,17,39,28,0.0 +20509,20,81,5,0.0 +20509,9,97,5,0.0 +20509,3,10,39,0.0 +20509,13,6,22,0.0 +20509,53,32.8,49,0.0 +20509,27,43.9,18,0.0 +20509,36,19,13,0.0 +20509,65,21.05,14,0.0 +20509,22,21,21,0.0 +20509,30,25.89,14,0.0 +20509,51,53,41,0.0 +20509,40,18.4,43,0.0 +20509,5,21.35,49,0.0 +20509,63,43.9,46,0.0 +20509,45,9.5,43,0.0 +20509,55,24,35,0.0 +20509,73,15,2,0.0 +20509,8,40,13,0.0 +20509,14,23.25,21,0.0 +20509,43,46,31,0.0 +20509,57,19.5,40,0.0 +20509,11,21,11,0.0 +20509,56,38,29,0.0 +20509,34,14,46,0.0 +20509,47,9.5,10,0.0 +20509,10,31,14,0.0 +20510,71,21.5,32,0.0 +20510,42,14,11,0.0 +20510,21,10,7,0.0 +20510,38,263.5,39,0.0 +20510,69,36,44,0.0 +20510,56,38,22,0.0 +20510,36,19,6,0.0 +20510,51,53,13,0.0 +20510,16,17.45,49,0.0 +20510,6,25,16,0.0 +20510,66,17,22,0.0 +20510,30,25.89,12,0.0 +20510,74,10,3,0.0 +20510,40,18.4,30,0.0 +20510,23,9,1,0.0 +20511,64,33.25,34,0.0 +20511,24,4.5,8,0.0 +20511,28,45.6,3,0.0 +20511,12,38,33,0.0 +20511,31,12.5,22,0.0 +20511,41,9.65,22,0.0 +20511,15,15.5,44,0.0 +20511,66,17,29,0.0 +20511,51,53,50,0.0 +20511,67,14,42,0.0 +20511,3,10,19,0.0 +20511,53,32.8,35,0.0 +20511,7,30,31,0.0 +20511,36,19,26,0.0 +20511,55,24,41,0.0 +20511,59,55,37,0.0 +20511,75,7.75,4,0.0 +20511,68,12.5,36,0.0 +20512,3,10,33,0.0 +20512,47,9.5,7,0.0 +20512,50,16.25,11,0.0 +20512,43,46,39,0.0 +20513,2,19,49,0.0 +20513,5,21.35,35,0.0 +20513,8,40,12,0.0 +20513,32,32,47,0.0 +20513,26,31.23,6,0.0 +20513,13,6,44,0.0 +20513,1,18,27,0.0 +20513,7,30,15,0.0 +20513,46,12,16,0.0 +20513,30,25.89,50,0.0 +20513,77,13,25,0.0 +20513,60,34,46,0.0 +20513,62,49.3,10,0.0 +20513,54,7.45,3,0.0 +20513,49,20,10,0.0 +20513,64,33.25,43,0.0 +20513,12,38,6,0.0 +20513,22,21,49,0.0 +20513,42,14,39,0.0 +20513,56,38,19,0.0 +20513,57,19.5,34,0.0 +20513,67,14,11,0.0 +20513,36,19,44,0.0 +20513,65,21.05,14,0.0 +20513,11,21,13,0.0 +20513,75,7.75,44,0.0 +20513,53,32.8,21,0.0 +20513,27,43.9,10,0.0 +20513,4,22,3,0.0 +20513,63,43.9,11,0.0 +20513,61,28.5,38,0.0 +20513,70,15,47,0.0 +20513,45,9.5,28,0.0 +20513,44,19.45,11,0.0 +20513,33,2.5,30,0.0 +20513,71,21.5,5,0.0 +20513,19,9.2,18,0.0 +20513,69,36,6,0.0 +20513,35,18,4,0.0 +20513,17,39,14,0.0 +20513,74,10,35,0.0 +20513,21,10,22,0.0 +20513,29,123.79,49,0.0 +20513,52,7,25,0.0 +20513,58,13.25,22,0.0 +20513,16,17.45,8,0.0 +20513,15,15.5,38,0.0 +20513,41,9.65,35,0.0 +20513,9,97,24,0.0 +20513,48,12.75,23,0.0 +20513,68,12.5,35,0.0 +20513,18,62.5,4,0.0 +20513,10,31,17,0.0 +20513,28,45.6,22,0.0 +20513,66,17,38,0.0 +20513,25,14,37,0.0 +20513,38,263.5,13,0.0 +20513,73,15,35,0.0 +20513,43,46,31,0.0 +20513,40,18.4,20,0.0 +20514,77,13,35,0.0 +20514,10,31,44,0.0 +20514,34,14,7,0.0 +20514,29,123.79,24,0.0 +20514,70,15,26,0.0 +20514,71,21.5,29,0.0 +20514,48,12.75,46,0.0 +20514,44,19.45,4,0.0 +20514,56,38,2,0.0 +20514,42,14,28,0.0 +20514,69,36,29,0.0 +20514,8,40,22,0.0 +20514,76,18,23,0.0 +20514,15,15.5,6,0.0 +20514,52,7,42,0.0 +20514,62,49.3,44,0.0 +20514,72,34.8,38,0.0 +20514,49,20,13,0.0 +20514,20,81,30,0.0 +20514,5,21.35,14,0.0 +20514,27,43.9,15,0.0 +20514,50,16.25,27,0.0 +20514,21,10,18,0.0 +20514,1,18,41,0.0 +20514,68,12.5,13,0.0 +20514,17,39,4,0.0 +20514,9,97,9,0.0 +20514,2,19,1,0.0 +20514,59,55,6,0.0 +20514,64,33.25,1,0.0 +20514,51,53,18,0.0 +20514,43,46,37,0.0 +20514,54,7.45,24,0.0 +20514,63,43.9,17,0.0 +20514,53,32.8,31,0.0 +20514,31,12.5,2,0.0 +20514,65,21.05,21,0.0 +20514,41,9.65,8,0.0 +20514,46,12,10,0.0 +20514,45,9.5,33,0.0 +20514,73,15,10,0.0 +20514,67,14,35,0.0 +20514,19,9.2,20,0.0 +20514,38,263.5,36,0.0 +20514,75,7.75,15,0.0 +20514,16,17.45,6,0.0 +20514,22,21,4,0.0 +20514,61,28.5,43,0.0 +20514,13,6,30,0.0 +20514,36,19,15,0.0 +20514,23,9,15,0.0 +20515,40,18.4,31,0.0 +20515,9,97,27,0.0 +20515,35,18,14,0.0 +20515,49,20,28,0.0 +20515,14,23.25,33,0.0 +20515,12,38,33,0.0 +20515,69,36,45,0.0 +20515,50,16.25,9,0.0 +20515,51,53,6,0.0 +20515,1,18,27,0.0 +20515,65,21.05,23,0.0 +20515,20,81,19,0.0 +20515,4,22,36,0.0 +20515,11,21,31,0.0 +20515,7,30,41,0.0 +20515,54,7.45,39,0.0 +20515,67,14,42,0.0 +20515,58,13.25,20,0.0 +20515,28,45.6,8,0.0 +20515,55,24,17,0.0 +20515,53,32.8,14,0.0 +20515,33,2.5,9,0.0 +20515,22,21,8,0.0 +20515,25,14,3,0.0 +20515,30,25.89,33,0.0 +20515,43,46,6,0.0 +20515,36,19,9,0.0 +20515,71,21.5,49,0.0 +20515,13,6,43,0.0 +20515,26,31.23,37,0.0 +20515,70,15,48,0.0 +20515,41,9.65,16,0.0 +20515,3,10,28,0.0 +20515,45,9.5,3,0.0 +20515,16,17.45,22,0.0 +20515,21,10,39,0.0 +20515,47,9.5,13,0.0 +20515,76,18,49,0.0 +20515,52,7,21,0.0 +20515,10,31,19,0.0 +20515,74,10,43,0.0 +20515,27,43.9,44,0.0 +20515,75,7.75,16,0.0 +20515,48,12.75,7,0.0 +20515,29,123.79,7,0.0 +20515,39,18,26,0.0 +20515,24,4.5,32,0.0 +20516,69,36,20,0.0 +20516,49,20,12,0.0 +20516,72,34.8,27,0.0 +20516,7,30,32,0.0 +20516,37,26,25,0.0 +20516,51,53,8,0.0 +20516,5,21.35,48,0.0 +20516,54,7.45,27,0.0 +20516,4,22,28,0.0 +20516,36,19,21,0.0 +20516,10,31,1,0.0 +20516,21,10,30,0.0 +20516,13,6,41,0.0 +20516,2,19,27,0.0 +20516,39,18,5,0.0 +20516,52,7,8,0.0 +20516,18,62.5,47,0.0 +20516,44,19.45,21,0.0 +20516,67,14,32,0.0 +20516,11,21,28,0.0 +20516,16,17.45,48,0.0 +20516,17,39,50,0.0 +20516,60,34,42,0.0 +20516,56,38,7,0.0 +20516,29,123.79,22,0.0 +20516,43,46,45,0.0 +20516,76,18,40,0.0 +20516,28,45.6,2,0.0 +20516,15,15.5,26,0.0 +20516,47,9.5,40,0.0 +20516,34,14,31,0.0 +20516,26,31.23,26,0.0 +20516,24,4.5,30,0.0 +20516,48,12.75,20,0.0 +20516,31,12.5,18,0.0 +20516,71,21.5,13,0.0 +20516,61,28.5,47,0.0 +20516,12,38,24,0.0 +20516,35,18,26,0.0 +20516,9,97,35,0.0 +20516,40,18.4,48,0.0 +20516,27,43.9,28,0.0 +20516,64,33.25,22,0.0 +20516,68,12.5,50,0.0 +20516,1,18,28,0.0 +20516,14,23.25,7,0.0 +20516,55,24,2,0.0 +20516,62,49.3,12,0.0 +20516,32,32,28,0.0 +20516,77,13,19,0.0 +20516,59,55,37,0.0 +20516,58,13.25,47,0.0 +20516,20,81,11,0.0 +20516,75,7.75,23,0.0 +20516,66,17,13,0.0 +20516,6,25,17,0.0 +20516,42,14,30,0.0 +20516,41,9.65,27,0.0 +20516,50,16.25,32,0.0 +20516,8,40,49,0.0 +20516,19,9.2,34,0.0 +20516,22,21,24,0.0 +20516,23,9,15,0.0 +20516,33,2.5,47,0.0 +20516,70,15,17,0.0 +20516,30,25.89,4,0.0 +20516,65,21.05,39,0.0 +20516,74,10,24,0.0 +20516,57,19.5,40,0.0 +20516,38,263.5,50,0.0 +20516,53,32.8,18,0.0 +20516,46,12,37,0.0 +20516,63,43.9,31,0.0 +20517,48,12.75,32,0.0 +20517,42,14,46,0.0 +20517,66,17,19,0.0 +20517,58,13.25,25,0.0 +20517,25,14,44,0.0 +20517,13,6,37,0.0 +20517,10,31,47,0.0 +20517,74,10,17,0.0 +20517,24,4.5,38,0.0 +20517,16,17.45,17,0.0 +20517,18,62.5,9,0.0 +20517,35,18,16,0.0 +20517,31,12.5,13,0.0 +20517,28,45.6,21,0.0 +20517,27,43.9,24,0.0 +20517,52,7,25,0.0 +20517,33,2.5,46,0.0 +20517,51,53,17,0.0 +20517,63,43.9,31,0.0 +20517,36,19,36,0.0 +20517,77,13,50,0.0 +20517,20,81,32,0.0 +20517,49,20,49,0.0 +20517,32,32,17,0.0 +20517,73,15,16,0.0 +20517,1,18,44,0.0 +20517,69,36,37,0.0 +20517,7,30,23,0.0 +20517,34,14,25,0.0 +20517,70,15,22,0.0 +20518,5,21.35,35,0.0 +20518,39,18,13,0.0 +20518,27,43.9,2,0.0 +20518,68,12.5,7,0.0 +20518,8,40,3,0.0 +20518,13,6,5,0.0 +20518,73,15,39,0.0 +20518,71,21.5,26,0.0 +20518,3,10,23,0.0 +20518,37,26,27,0.0 +20518,44,19.45,7,0.0 +20518,74,10,41,0.0 +20518,46,12,41,0.0 +20518,9,97,27,0.0 +20518,36,19,32,0.0 +20518,42,14,11,0.0 +20518,45,9.5,29,0.0 +20518,24,4.5,33,0.0 +20518,58,13.25,25,0.0 +20518,56,38,26,0.0 +20518,30,25.89,29,0.0 +20518,7,30,43,0.0 +20518,38,263.5,28,0.0 +20518,1,18,7,0.0 +20518,43,46,5,0.0 +20518,47,9.5,33,0.0 +20518,55,24,34,0.0 +20518,33,2.5,4,0.0 +20518,32,32,31,0.0 +20518,76,18,42,0.0 +20518,40,18.4,33,0.0 +20518,70,15,10,0.0 +20518,62,49.3,11,0.0 +20518,66,17,18,0.0 +20518,60,34,6,0.0 +20518,77,13,33,0.0 +20518,21,10,5,0.0 +20518,25,14,42,0.0 +20518,63,43.9,33,0.0 +20518,64,33.25,47,0.0 +20518,26,31.23,49,0.0 +20518,10,31,4,0.0 +20518,29,123.79,49,0.0 +20518,14,23.25,38,0.0 +20518,17,39,44,0.0 +20518,15,15.5,50,0.0 +20518,69,36,5,0.0 +20518,53,32.8,37,0.0 +20518,11,21,43,0.0 +20518,22,21,22,0.0 +20518,18,62.5,35,0.0 +20518,48,12.75,15,0.0 +20518,75,7.75,29,0.0 +20518,51,53,13,0.0 +20518,12,38,39,0.0 +20518,31,12.5,13,0.0 +20518,65,21.05,3,0.0 +20518,57,19.5,11,0.0 +20518,52,7,30,0.0 +20518,49,20,10,0.0 +20518,23,9,21,0.0 +20518,35,18,34,0.0 +20518,50,16.25,21,0.0 +20518,61,28.5,3,0.0 +20518,16,17.45,28,0.0 +20518,28,45.6,50,0.0 +20518,20,81,46,0.0 +20518,59,55,24,0.0 +20518,41,9.65,30,0.0 +20518,2,19,22,0.0 +20519,2,19,2,0.0 +20519,31,12.5,50,0.0 +20519,21,10,10,0.0 +20519,20,81,44,0.0 +20519,41,9.65,37,0.0 +20519,67,14,20,0.0 +20519,27,43.9,49,0.0 +20519,36,19,36,0.0 +20519,16,17.45,30,0.0 +20519,7,30,13,0.0 +20519,9,97,45,0.0 +20519,15,15.5,7,0.0 +20519,69,36,2,0.0 +20519,49,20,35,0.0 +20519,29,123.79,14,0.0 +20519,53,32.8,18,0.0 +20519,5,21.35,47,0.0 +20519,35,18,28,0.0 +20519,4,22,50,0.0 +20519,62,49.3,14,0.0 +20519,77,13,29,0.0 +20519,13,6,48,0.0 +20519,25,14,27,0.0 +20519,48,12.75,46,0.0 +20519,30,25.89,45,0.0 +20519,8,40,44,0.0 +20519,38,263.5,24,0.0 +20519,32,32,34,0.0 +20519,64,33.25,40,0.0 +20519,37,26,2,0.0 +20519,60,34,29,0.0 +20519,11,21,31,0.0 +20519,74,10,46,0.0 +20519,47,9.5,48,0.0 +20519,65,21.05,5,0.0 +20519,52,7,41,0.0 +20519,75,7.75,2,0.0 +20519,61,28.5,13,0.0 +20519,17,39,5,0.0 +20519,22,21,46,0.0 +20519,50,16.25,4,0.0 +20519,57,19.5,25,0.0 +20519,10,31,27,0.0 +20519,3,10,27,0.0 +20519,14,23.25,30,0.0 +20519,23,9,49,0.0 +20519,42,14,19,0.0 +20519,63,43.9,35,0.0 +20519,43,46,33,0.0 +20519,66,17,4,0.0 +20519,44,19.45,16,0.0 +20519,45,9.5,5,0.0 +20520,35,18,43,0.0 +20520,17,39,19,0.0 +20520,10,31,11,0.0 +20520,62,49.3,2,0.0 +20520,55,24,48,0.0 +20520,20,81,18,0.0 +20520,25,14,46,0.0 +20520,77,13,41,0.0 +20520,45,9.5,49,0.0 +20520,12,38,49,0.0 +20520,61,28.5,16,0.0 +20520,37,26,2,0.0 +20520,29,123.79,38,0.0 +20520,8,40,49,0.0 +20520,56,38,28,0.0 +20520,50,16.25,39,0.0 +20520,59,55,18,0.0 +20520,60,34,38,0.0 +20520,58,13.25,17,0.0 +20520,69,36,5,0.0 +20520,48,12.75,28,0.0 +20520,9,97,28,0.0 +20520,52,7,20,0.0 +20520,64,33.25,8,0.0 +20520,43,46,50,0.0 +20520,53,32.8,46,0.0 +20520,19,9.2,28,0.0 +20520,74,10,36,0.0 +20520,33,2.5,32,0.0 +20520,51,53,12,0.0 +20520,7,30,41,0.0 +20520,76,18,16,0.0 +20520,70,15,29,0.0 +20520,66,17,14,0.0 +20520,68,12.5,49,0.0 +20520,24,4.5,10,0.0 +20520,27,43.9,8,0.0 +20520,40,18.4,49,0.0 +20520,21,10,15,0.0 +20520,3,10,44,0.0 +20520,6,25,34,0.0 +20520,36,19,41,0.0 +20520,28,45.6,39,0.0 +20520,13,6,26,0.0 +20520,39,18,41,0.0 +20520,11,21,17,0.0 +20520,72,34.8,13,0.0 +20520,2,19,2,0.0 +20520,63,43.9,12,0.0 +20520,18,62.5,40,0.0 +20520,1,18,21,0.0 +20520,5,21.35,13,0.0 +20520,75,7.75,2,0.0 +20520,65,21.05,43,0.0 +20520,42,14,50,0.0 +20520,44,19.45,49,0.0 +20520,31,12.5,6,0.0 +20520,32,32,29,0.0 +20520,30,25.89,7,0.0 +20520,47,9.5,10,0.0 +20520,4,22,3,0.0 +20520,41,9.65,33,0.0 +20520,26,31.23,11,0.0 +20520,49,20,35,0.0 +20520,54,7.45,13,0.0 +20520,71,21.5,48,0.0 +20520,67,14,27,0.0 +20520,14,23.25,13,0.0 +20521,6,25,18,0.0 +20521,73,15,6,0.0 +20521,60,34,34,0.0 +20521,55,24,22,0.0 +20521,13,6,26,0.0 +20521,16,17.45,38,0.0 +20521,71,21.5,12,0.0 +20521,23,9,45,0.0 +20521,21,10,17,0.0 +20521,1,18,7,0.0 +20521,72,34.8,30,0.0 +20521,28,45.6,9,0.0 +20521,67,14,38,0.0 +20521,49,20,1,0.0 +20521,7,30,32,0.0 +20521,2,19,41,0.0 +20521,14,23.25,29,0.0 +20521,77,13,2,0.0 +20521,30,25.89,22,0.0 +20521,65,21.05,16,0.0 +20521,24,4.5,32,0.0 +20521,25,14,1,0.0 +20521,58,13.25,46,0.0 +20521,37,26,10,0.0 +20521,56,38,3,0.0 +20521,69,36,9,0.0 +20521,40,18.4,38,0.0 +20521,61,28.5,21,0.0 +20521,43,46,41,0.0 +20521,50,16.25,38,0.0 +20521,5,21.35,33,0.0 +20521,12,38,44,0.0 +20521,54,7.45,23,0.0 +20521,32,32,31,0.0 +20521,51,53,43,0.0 +20521,74,10,23,0.0 +20521,35,18,35,0.0 +20521,10,31,1,0.0 +20521,4,22,31,0.0 +20521,59,55,16,0.0 +20521,11,21,28,0.0 +20521,8,40,41,0.0 +20521,26,31.23,38,0.0 +20521,36,19,6,0.0 +20521,64,33.25,35,0.0 +20521,33,2.5,46,0.0 +20521,42,14,45,0.0 +20521,3,10,35,0.0 +20521,20,81,43,0.0 +20521,53,32.8,47,0.0 +20521,19,9.2,36,0.0 +20521,63,43.9,28,0.0 +20521,46,12,43,0.0 +20522,35,18,23,0.0 +20522,11,21,44,0.0 +20522,73,15,14,0.0 +20522,9,97,1,0.0 +20522,56,38,38,0.0 +20522,57,19.5,4,0.0 +20522,59,55,28,0.0 +20522,55,24,5,0.0 +20522,28,45.6,29,0.0 +20522,32,32,32,0.0 +20522,20,81,32,0.0 +20522,24,4.5,13,0.0 +20522,27,43.9,38,0.0 +20522,46,12,47,0.0 +20522,4,22,19,0.0 +20522,34,14,26,0.0 +20522,10,31,3,0.0 +20522,12,38,23,0.0 +20522,41,9.65,24,0.0 +20522,65,21.05,47,0.0 +20522,5,21.35,27,0.0 +20522,40,18.4,38,0.0 +20522,31,12.5,2,0.0 +20522,68,12.5,10,0.0 +20522,38,263.5,11,0.0 +20522,72,34.8,10,0.0 +20522,76,18,35,0.0 +20522,22,21,4,0.0 +20522,71,21.5,44,0.0 +20522,14,23.25,33,0.0 +20522,19,9.2,35,0.0 +20522,49,20,26,0.0 +20522,52,7,23,0.0 +20522,67,14,33,0.0 +20522,51,53,35,0.0 +20522,17,39,14,0.0 +20522,21,10,13,0.0 +20522,61,28.5,22,0.0 +20522,8,40,8,0.0 +20522,7,30,39,0.0 +20522,48,12.75,49,0.0 +20522,1,18,3,0.0 +20522,43,46,14,0.0 +20522,39,18,17,0.0 +20523,73,15,10,0.0 +20524,61,28.5,44,0.0 +20524,7,30,11,0.0 +20524,62,49.3,42,0.0 +20524,70,15,7,0.0 +20524,73,15,22,0.0 +20524,63,43.9,22,0.0 +20524,49,20,41,0.0 +20524,2,19,33,0.0 +20524,54,7.45,22,0.0 +20524,72,34.8,34,0.0 +20524,19,9.2,20,0.0 +20524,77,13,21,0.0 +20524,1,18,46,0.0 +20524,9,97,25,0.0 +20524,26,31.23,23,0.0 +20524,44,19.45,33,0.0 +20524,34,14,45,0.0 +20524,46,12,31,0.0 +20524,14,23.25,45,0.0 +20525,77,13,17,0.0 +20525,6,25,46,0.0 +20525,29,123.79,36,0.0 +20525,7,30,35,0.0 +20525,70,15,26,0.0 +20525,63,43.9,25,0.0 +20525,59,55,15,0.0 +20525,11,21,18,0.0 +20525,26,31.23,45,0.0 +20525,52,7,21,0.0 +20525,40,18.4,16,0.0 +20525,32,32,36,0.0 +20525,44,19.45,36,0.0 +20525,37,26,21,0.0 +20525,22,21,48,0.0 +20525,31,12.5,45,0.0 +20525,51,53,15,0.0 +20525,21,10,8,0.0 +20525,1,18,44,0.0 +20525,18,62.5,38,0.0 +20525,38,263.5,36,0.0 +20525,66,17,4,0.0 +20525,74,10,46,0.0 +20525,67,14,43,0.0 +20525,25,14,6,0.0 +20525,65,21.05,36,0.0 +20525,62,49.3,3,0.0 +20525,23,9,1,0.0 +20525,43,46,27,0.0 +20525,68,12.5,5,0.0 +20525,12,38,36,0.0 +20525,49,20,36,0.0 +20525,19,9.2,17,0.0 +20525,27,43.9,40,0.0 +20525,64,33.25,36,0.0 +20525,13,6,28,0.0 +20525,45,9.5,27,0.0 +20525,16,17.45,48,0.0 +20525,35,18,11,0.0 +20525,20,81,14,0.0 +20525,48,12.75,35,0.0 +20525,55,24,35,0.0 +20525,28,45.6,41,0.0 +20526,49,20,15,0.0 +20526,34,14,4,0.0 +20526,19,9.2,10,0.0 +20526,46,12,8,0.0 +20526,69,36,38,0.0 +20526,5,21.35,44,0.0 +20526,59,55,7,0.0 +20526,22,21,23,0.0 +20526,43,46,7,0.0 +20526,61,28.5,48,0.0 +20526,38,263.5,20,0.0 +20526,31,12.5,49,0.0 +20526,41,9.65,32,0.0 +20526,56,38,10,0.0 +20526,74,10,20,0.0 +20526,73,15,24,0.0 +20526,67,14,45,0.0 +20526,57,19.5,44,0.0 +20526,1,18,38,0.0 +20526,37,26,40,0.0 +20526,30,25.89,42,0.0 +20526,68,12.5,3,0.0 +20526,52,7,29,0.0 +20526,45,9.5,18,0.0 +20526,11,21,31,0.0 +20526,15,15.5,48,0.0 +20526,9,97,48,0.0 +20526,2,19,18,0.0 +20526,77,13,48,0.0 +20526,10,31,32,0.0 +20526,14,23.25,35,0.0 +20526,55,24,30,0.0 +20526,13,6,6,0.0 +20526,24,4.5,19,0.0 +20526,76,18,23,0.0 +20526,7,30,28,0.0 +20526,18,62.5,48,0.0 +20526,12,38,32,0.0 +20526,51,53,44,0.0 +20526,36,19,2,0.0 +20526,39,18,27,0.0 +20526,27,43.9,46,0.0 +20526,62,49.3,30,0.0 +20526,64,33.25,30,0.0 +20526,63,43.9,12,0.0 +20526,33,2.5,4,0.0 +20526,66,17,11,0.0 +20526,35,18,18,0.0 +20526,6,25,32,0.0 +20526,65,21.05,10,0.0 +20526,40,18.4,7,0.0 +20526,71,21.5,29,0.0 +20526,21,10,48,0.0 +20526,29,123.79,34,0.0 +20526,25,14,4,0.0 +20526,48,12.75,7,0.0 +20527,5,21.35,30,0.0 +20527,33,2.5,19,0.0 +20527,44,19.45,50,0.0 +20527,53,32.8,40,0.0 +20527,13,6,44,0.0 +20527,45,9.5,47,0.0 +20527,24,4.5,19,0.0 +20527,11,21,35,0.0 +20527,58,13.25,2,0.0 +20527,66,17,18,0.0 +20527,74,10,8,0.0 +20527,28,45.6,35,0.0 +20527,69,36,38,0.0 +20527,32,32,27,0.0 +20527,14,23.25,26,0.0 +20527,40,18.4,5,0.0 +20527,10,31,33,0.0 +20527,56,38,48,0.0 +20527,43,46,26,0.0 +20527,39,18,48,0.0 +20527,63,43.9,8,0.0 +20527,36,19,33,0.0 +20527,6,25,37,0.0 +20527,9,97,9,0.0 +20527,59,55,20,0.0 +20527,35,18,9,0.0 +20527,68,12.5,26,0.0 +20527,29,123.79,35,0.0 +20527,8,40,42,0.0 +20527,46,12,18,0.0 +20527,37,26,50,0.0 +20527,31,12.5,25,0.0 +20527,51,53,7,0.0 +20527,34,14,30,0.0 +20527,4,22,46,0.0 +20527,64,33.25,14,0.0 +20527,67,14,48,0.0 +20528,13,6,20,0.0 +20528,17,39,19,0.0 +20528,35,18,42,0.0 +20528,64,33.25,28,0.0 +20528,43,46,42,0.0 +20528,49,20,45,0.0 +20528,66,17,10,0.0 +20528,19,9.2,48,0.0 +20528,60,34,50,0.0 +20528,15,15.5,31,0.0 +20528,24,4.5,49,0.0 +20528,7,30,42,0.0 +20528,36,19,2,0.0 +20528,46,12,12,0.0 +20528,51,53,16,0.0 +20528,71,21.5,33,0.0 +20528,59,55,40,0.0 +20528,12,38,32,0.0 +20528,29,123.79,9,0.0 +20528,57,19.5,11,0.0 +20528,23,9,46,0.0 +20528,62,49.3,50,0.0 +20528,74,10,38,0.0 +20528,30,25.89,43,0.0 +20528,63,43.9,15,0.0 +20528,8,40,20,0.0 +20528,72,34.8,32,0.0 +20528,14,23.25,42,0.0 +20528,20,81,6,0.0 +20528,2,19,15,0.0 +20528,32,32,3,0.0 +20528,53,32.8,39,0.0 +20528,41,9.65,12,0.0 +20528,18,62.5,39,0.0 +20528,40,18.4,26,0.0 +20528,45,9.5,11,0.0 +20528,65,21.05,47,0.0 +20528,61,28.5,42,0.0 +20528,48,12.75,39,0.0 +20528,75,7.75,13,0.0 +20528,11,21,21,0.0 +20528,70,15,44,0.0 +20528,25,14,23,0.0 +20528,31,12.5,36,0.0 +20528,9,97,9,0.0 +20528,33,2.5,27,0.0 +20529,76,18,20,0.0 +20529,56,38,27,0.0 +20529,35,18,50,0.0 +20529,71,21.5,14,0.0 +20529,45,9.5,13,0.0 +20529,1,18,23,0.0 +20529,46,12,23,0.0 +20529,68,12.5,28,0.0 +20529,42,14,14,0.0 +20529,63,43.9,21,0.0 +20529,5,21.35,4,0.0 +20529,17,39,12,0.0 +20530,6,25,46,0.0 +20530,26,31.23,39,0.0 +20530,46,12,34,0.0 +20530,68,12.5,30,0.0 +20530,55,24,10,0.0 +20530,24,4.5,9,0.0 +20530,35,18,41,0.0 +20530,65,21.05,25,0.0 +20530,34,14,3,0.0 +20530,16,17.45,6,0.0 +20530,2,19,17,0.0 +20530,50,16.25,39,0.0 +20530,30,25.89,33,0.0 +20530,56,38,47,0.0 +20530,18,62.5,29,0.0 +20530,67,14,15,0.0 +20531,37,26,38,0.0 +20531,57,19.5,28,0.0 +20531,40,18.4,45,0.0 +20531,68,12.5,18,0.0 +20531,54,7.45,50,0.0 +20531,15,15.5,32,0.0 +20531,77,13,19,0.0 +20531,38,263.5,39,0.0 +20531,24,4.5,2,0.0 +20531,20,81,7,0.0 +20531,59,55,22,0.0 +20531,34,14,38,0.0 +20531,76,18,11,0.0 +20531,72,34.8,4,0.0 +20531,66,17,40,0.0 +20531,26,31.23,35,0.0 +20531,19,9.2,25,0.0 +20531,1,18,39,0.0 +20531,56,38,29,0.0 +20531,13,6,14,0.0 +20531,14,23.25,49,0.0 +20531,10,31,30,0.0 +20531,73,15,34,0.0 +20531,43,46,18,0.0 +20531,64,33.25,43,0.0 +20531,60,34,5,0.0 +20531,65,21.05,31,0.0 +20531,70,15,14,0.0 +20531,35,18,13,0.0 +20532,51,53,3,0.0 +20532,6,25,32,0.0 +20532,77,13,8,0.0 +20532,12,38,25,0.0 +20532,61,28.5,16,0.0 +20532,8,40,14,0.0 +20532,22,21,49,0.0 +20532,57,19.5,1,0.0 +20532,27,43.9,16,0.0 +20532,54,7.45,40,0.0 +20532,19,9.2,37,0.0 +20532,13,6,3,0.0 +20532,62,49.3,42,0.0 +20532,49,20,16,0.0 +20532,44,19.45,4,0.0 +20532,14,23.25,20,0.0 +20532,42,14,21,0.0 +20532,74,10,16,0.0 +20532,10,31,10,0.0 +20532,48,12.75,30,0.0 +20532,33,2.5,37,0.0 +20532,28,45.6,22,0.0 +20532,65,21.05,26,0.0 +20532,26,31.23,47,0.0 +20532,18,62.5,31,0.0 +20532,9,97,6,0.0 +20532,30,25.89,47,0.0 +20532,7,30,16,0.0 +20532,38,263.5,5,0.0 +20532,37,26,38,0.0 +20532,76,18,11,0.0 +20532,3,10,26,0.0 +20532,34,14,48,0.0 +20532,67,14,35,0.0 +20532,50,16.25,5,0.0 +20532,4,22,25,0.0 +20532,29,123.79,23,0.0 +20532,68,12.5,42,0.0 +20532,52,7,41,0.0 +20532,2,19,2,0.0 +20532,24,4.5,25,0.0 +20532,41,9.65,27,0.0 +20532,43,46,1,0.0 +20532,58,13.25,13,0.0 +20532,11,21,39,0.0 +20532,47,9.5,7,0.0 +20532,36,19,42,0.0 +20532,35,18,12,0.0 +20532,70,15,2,0.0 +20532,16,17.45,3,0.0 +20532,40,18.4,12,0.0 +20532,75,7.75,8,0.0 +20532,63,43.9,30,0.0 +20532,71,21.5,30,0.0 +20532,32,32,44,0.0 +20532,55,24,37,0.0 +20532,15,15.5,33,0.0 +20532,69,36,39,0.0 +20532,17,39,47,0.0 +20532,59,55,49,0.0 +20532,20,81,49,0.0 +20532,46,12,46,0.0 +20532,64,33.25,33,0.0 +20532,56,38,9,0.0 +20532,1,18,2,0.0 +20532,31,12.5,18,0.0 +20532,66,17,3,0.0 +20532,72,34.8,24,0.0 +20532,60,34,40,0.0 +20532,73,15,50,0.0 +20533,10,31,12,0.0 +20533,61,28.5,38,0.0 +20533,34,14,25,0.0 +20533,13,6,25,0.0 +20533,62,49.3,47,0.0 +20533,53,32.8,25,0.0 +20533,18,62.5,19,0.0 +20533,23,9,27,0.0 +20533,39,18,31,0.0 +20533,37,26,25,0.0 +20533,6,25,39,0.0 +20533,45,9.5,36,0.0 +20533,55,24,40,0.0 +20533,25,14,23,0.0 +20533,12,38,17,0.0 +20533,49,20,31,0.0 +20533,65,21.05,45,0.0 +20533,14,23.25,39,0.0 +20533,71,21.5,2,0.0 +20533,69,36,29,0.0 +20533,41,9.65,39,0.0 +20533,11,21,29,0.0 +20533,66,17,26,0.0 +20533,26,31.23,45,0.0 +20533,75,7.75,34,0.0 +20533,50,16.25,37,0.0 +20533,19,9.2,4,0.0 +20533,7,30,47,0.0 +20533,72,34.8,44,0.0 +20533,3,10,16,0.0 +20533,40,18.4,7,0.0 +20533,51,53,35,0.0 +20533,21,10,48,0.0 +20533,73,15,49,0.0 +20533,32,32,19,0.0 +20533,74,10,3,0.0 +20533,9,97,2,0.0 +20533,33,2.5,37,0.0 +20533,68,12.5,9,0.0 +20533,2,19,8,0.0 +20533,27,43.9,38,0.0 +20533,36,19,28,0.0 +20533,58,13.25,46,0.0 +20533,47,9.5,49,0.0 +20533,60,34,39,0.0 +20533,5,21.35,33,0.0 +20533,1,18,28,0.0 +20533,67,14,31,0.0 +20533,15,15.5,40,0.0 +20533,8,40,13,0.0 +20533,20,81,31,0.0 +20533,77,13,47,0.0 +20533,16,17.45,34,0.0 +20534,27,43.9,13,0.0 +20534,24,4.5,49,0.0 +20534,11,21,3,0.0 +20534,30,25.89,43,0.0 +20534,5,21.35,23,0.0 +20534,59,55,19,0.0 +20534,51,53,8,0.0 +20534,58,13.25,41,0.0 +20534,32,32,50,0.0 +20534,22,21,50,0.0 +20534,29,123.79,22,0.0 +20534,56,38,47,0.0 +20534,17,39,12,0.0 +20534,53,32.8,49,0.0 +20535,6,25,34,0.0 +20535,35,18,48,0.0 +20535,70,15,27,0.0 +20535,47,9.5,16,0.0 +20535,34,14,26,0.0 +20535,43,46,24,0.0 +20535,33,2.5,24,0.0 +20535,2,19,4,0.0 +20535,11,21,28,0.0 +20535,63,43.9,43,0.0 +20535,67,14,8,0.0 +20535,7,30,39,0.0 +20535,5,21.35,20,0.0 +20535,41,9.65,9,0.0 +20535,36,19,43,0.0 +20535,44,19.45,44,0.0 +20535,77,13,31,0.0 +20535,31,12.5,36,0.0 +20535,17,39,21,0.0 +20535,26,31.23,37,0.0 +20535,12,38,14,0.0 +20535,13,6,29,0.0 +20535,62,49.3,20,0.0 +20535,21,10,6,0.0 +20535,4,22,14,0.0 +20536,12,38,9,0.0 +20536,9,97,17,0.0 +20536,61,28.5,49,0.0 +20536,56,38,11,0.0 +20536,41,9.65,12,0.0 +20536,54,7.45,24,0.0 +20536,77,13,50,0.0 +20536,27,43.9,23,0.0 +20536,35,18,15,0.0 +20536,24,4.5,18,0.0 +20536,1,18,32,0.0 +20536,64,33.25,24,0.0 +20536,10,31,36,0.0 +20536,52,7,23,0.0 +20536,16,17.45,5,0.0 +20536,76,18,44,0.0 +20536,65,21.05,25,0.0 +20536,58,13.25,1,0.0 +20536,73,15,42,0.0 +20536,51,53,46,0.0 +20536,67,14,40,0.0 +20536,31,12.5,21,0.0 +20536,63,43.9,44,0.0 +20536,7,30,10,0.0 +20536,43,46,22,0.0 +20536,40,18.4,29,0.0 +20536,38,263.5,47,0.0 +20536,70,15,41,0.0 +20536,8,40,27,0.0 +20536,20,81,12,0.0 +20536,22,21,17,0.0 +20536,21,10,13,0.0 +20537,57,19.5,5,0.0 +20537,20,81,50,0.0 +20537,36,19,29,0.0 +20538,30,25.89,44,0.0 +20538,31,12.5,8,0.0 +20538,18,62.5,25,0.0 +20538,59,55,25,0.0 +20538,38,263.5,23,0.0 +20538,25,14,21,0.0 +20538,43,46,2,0.0 +20538,36,19,46,0.0 +20538,53,32.8,2,0.0 +20539,18,62.5,15,0.0 +20539,76,18,46,0.0 +20539,60,34,22,0.0 +20539,68,12.5,22,0.0 +20539,2,19,40,0.0 +20539,20,81,6,0.0 +20539,58,13.25,48,0.0 +20539,30,25.89,1,0.0 +20539,62,49.3,33,0.0 +20539,44,19.45,4,0.0 +20539,19,9.2,36,0.0 +20539,66,17,9,0.0 +20539,34,14,38,0.0 +20539,28,45.6,44,0.0 +20539,49,20,46,0.0 +20539,24,4.5,9,0.0 +20539,21,10,14,0.0 +20539,61,28.5,26,0.0 +20539,73,15,40,0.0 +20539,72,34.8,4,0.0 +20539,8,40,1,0.0 +20539,26,31.23,50,0.0 +20539,1,18,4,0.0 +20539,69,36,36,0.0 +20539,37,26,41,0.0 +20539,70,15,3,0.0 +20539,46,12,34,0.0 +20539,23,9,10,0.0 +20539,11,21,23,0.0 +20539,7,30,2,0.0 +20539,25,14,21,0.0 +20539,31,12.5,1,0.0 +20539,16,17.45,24,0.0 +20539,43,46,41,0.0 +20539,9,97,5,0.0 +20539,65,21.05,42,0.0 +20539,51,53,5,0.0 +20539,56,38,30,0.0 +20539,50,16.25,47,0.0 +20539,47,9.5,1,0.0 +20539,40,18.4,22,0.0 +20539,6,25,46,0.0 +20539,38,263.5,42,0.0 +20539,32,32,6,0.0 +20539,74,10,12,0.0 +20539,22,21,33,0.0 +20539,52,7,10,0.0 +20539,54,7.45,8,0.0 +20539,13,6,16,0.0 +20539,17,39,28,0.0 +20539,57,19.5,33,0.0 +20539,71,21.5,26,0.0 +20539,53,32.8,49,0.0 +20539,48,12.75,36,0.0 +20539,3,10,23,0.0 +20539,15,15.5,5,0.0 +20539,59,55,50,0.0 +20539,63,43.9,39,0.0 +20539,27,43.9,18,0.0 +20539,4,22,23,0.0 +20539,67,14,42,0.0 +20539,41,9.65,28,0.0 +20539,5,21.35,32,0.0 +20539,29,123.79,35,0.0 +20539,75,7.75,43,0.0 +20539,33,2.5,4,0.0 +20539,12,38,23,0.0 +20539,35,18,19,0.0 +20539,36,19,39,0.0 +20539,55,24,20,0.0 +20540,9,97,17,0.0 +20540,8,40,13,0.0 +20540,11,21,36,0.0 +20540,46,12,6,0.0 +20540,47,9.5,3,0.0 +20540,52,7,4,0.0 +20540,33,2.5,2,0.0 +20540,32,32,45,0.0 +20540,17,39,18,0.0 +20540,13,6,42,0.0 +20540,74,10,47,0.0 +20540,21,10,25,0.0 +20540,54,7.45,27,0.0 +20540,18,62.5,4,0.0 +20540,69,36,47,0.0 +20540,66,17,21,0.0 +20540,15,15.5,37,0.0 +20540,5,21.35,26,0.0 +20540,51,53,8,0.0 +20540,60,34,19,0.0 +20540,45,9.5,37,0.0 +20540,70,15,43,0.0 +20540,55,24,12,0.0 +20540,61,28.5,24,0.0 +20540,50,16.25,34,0.0 +20541,20,81,8,0.0 +20541,73,15,6,0.0 +20541,23,9,23,0.0 +20541,6,25,49,0.0 +20541,45,9.5,23,0.0 +20541,54,7.45,4,0.0 +20541,7,30,24,0.0 +20541,63,43.9,49,0.0 +20541,71,21.5,11,0.0 +20541,12,38,50,0.0 +20541,18,62.5,34,0.0 +20541,3,10,6,0.0 +20541,65,21.05,4,0.0 +20541,67,14,43,0.0 +20541,14,23.25,49,0.0 +20541,75,7.75,29,0.0 +20541,35,18,39,0.0 +20541,58,13.25,26,0.0 +20541,5,21.35,25,0.0 +20541,69,36,43,0.0 +20541,24,4.5,24,0.0 +20541,57,19.5,27,0.0 +20541,53,32.8,20,0.0 +20541,21,10,37,0.0 +20541,56,38,50,0.0 +20541,27,43.9,10,0.0 +20541,29,123.79,7,0.0 +20541,38,263.5,26,0.0 +20541,47,9.5,36,0.0 +20541,34,14,28,0.0 +20541,50,16.25,17,0.0 +20541,19,9.2,3,0.0 +20541,16,17.45,41,0.0 +20541,17,39,26,0.0 +20541,64,33.25,13,0.0 +20541,43,46,6,0.0 +20541,30,25.89,12,0.0 +20541,8,40,33,0.0 +20542,48,12.75,15,0.0 +20542,29,123.79,22,0.0 +20542,77,13,41,0.0 +20542,51,53,50,0.0 +20542,2,19,31,0.0 +20542,25,14,18,0.0 +20542,15,15.5,48,0.0 +20542,49,20,37,0.0 +20542,22,21,8,0.0 +20542,42,14,11,0.0 +20542,12,38,42,0.0 +20543,1,18,33,0.0 +20543,5,21.35,25,0.0 +20543,16,17.45,42,0.0 +20543,13,6,17,0.0 +20543,65,21.05,7,0.0 +20543,38,263.5,42,0.0 +20543,7,30,18,0.0 +20543,62,49.3,12,0.0 +20543,45,9.5,14,0.0 +20543,56,38,42,0.0 +20543,25,14,28,0.0 +20543,55,24,30,0.0 +20543,34,14,24,0.0 +20543,69,36,6,0.0 +20543,12,38,14,0.0 +20543,30,25.89,1,0.0 +20543,77,13,50,0.0 +20543,43,46,11,0.0 +20543,17,39,35,0.0 +20543,8,40,37,0.0 +20543,10,31,39,0.0 +20543,19,9.2,11,0.0 +20543,22,21,5,0.0 +20543,51,53,15,0.0 +20543,9,97,38,0.0 +20543,41,9.65,12,0.0 +20543,70,15,27,0.0 +20543,49,20,10,0.0 +20543,67,14,40,0.0 +20543,76,18,16,0.0 +20543,2,19,19,0.0 +20543,14,23.25,9,0.0 +20543,48,12.75,18,0.0 +20543,33,2.5,28,0.0 +20543,4,22,37,0.0 +20543,53,32.8,36,0.0 +20543,27,43.9,29,0.0 +20543,18,62.5,39,0.0 +20543,28,45.6,40,0.0 +20543,63,43.9,38,0.0 +20543,44,19.45,15,0.0 +20543,72,34.8,39,0.0 +20543,75,7.75,38,0.0 +20543,50,16.25,41,0.0 +20543,59,55,29,0.0 +20543,40,18.4,20,0.0 +20543,29,123.79,24,0.0 +20543,6,25,6,0.0 +20543,15,15.5,1,0.0 +20543,36,19,19,0.0 +20543,23,9,43,0.0 +20543,42,14,3,0.0 +20543,39,18,46,0.0 +20543,64,33.25,16,0.0 +20543,74,10,15,0.0 +20543,73,15,24,0.0 +20543,60,34,33,0.0 +20543,24,4.5,39,0.0 +20543,32,32,32,0.0 +20543,21,10,6,0.0 +20543,31,12.5,3,0.0 +20543,37,26,43,0.0 +20543,11,21,28,0.0 +20543,47,9.5,27,0.0 +20543,58,13.25,3,0.0 +20543,54,7.45,13,0.0 +20543,52,7,27,0.0 +20543,57,19.5,27,0.0 +20543,61,28.5,5,0.0 +20543,68,12.5,28,0.0 +20543,71,21.5,27,0.0 +20544,76,18,7,0.0 +20544,68,12.5,46,0.0 +20544,75,7.75,50,0.0 +20544,31,12.5,31,0.0 +20544,35,18,39,0.0 +20544,14,23.25,31,0.0 +20544,30,25.89,49,0.0 +20545,35,18,43,0.0 +20545,28,45.6,9,0.0 +20545,38,263.5,20,0.0 +20545,63,43.9,14,0.0 +20545,70,15,18,0.0 +20545,37,26,48,0.0 +20545,60,34,26,0.0 +20545,8,40,19,0.0 +20545,9,97,27,0.0 +20545,11,21,42,0.0 +20545,10,31,38,0.0 +20545,75,7.75,14,0.0 +20545,40,18.4,42,0.0 +20545,16,17.45,29,0.0 +20545,44,19.45,44,0.0 +20545,52,7,17,0.0 +20545,12,38,4,0.0 +20545,46,12,2,0.0 +20545,19,9.2,34,0.0 +20545,76,18,3,0.0 +20545,45,9.5,42,0.0 +20545,39,18,15,0.0 +20545,21,10,24,0.0 +20545,64,33.25,32,0.0 +20545,3,10,49,0.0 +20545,33,2.5,3,0.0 +20545,41,9.65,23,0.0 +20545,74,10,7,0.0 +20545,23,9,1,0.0 +20545,57,19.5,41,0.0 +20545,42,14,22,0.0 +20545,34,14,19,0.0 +20545,22,21,13,0.0 +20545,1,18,24,0.0 +20545,27,43.9,38,0.0 +20545,53,32.8,33,0.0 +20545,4,22,21,0.0 +20545,6,25,43,0.0 +20545,18,62.5,34,0.0 +20545,25,14,26,0.0 +20545,59,55,8,0.0 +20545,13,6,42,0.0 +20546,12,38,9,0.0 +20546,17,39,46,0.0 +20546,74,10,21,0.0 +20546,42,14,8,0.0 +20546,31,12.5,9,0.0 +20546,60,34,14,0.0 +20546,58,13.25,37,0.0 +20546,64,33.25,12,0.0 +20546,36,19,30,0.0 +20546,70,15,36,0.0 +20546,24,4.5,15,0.0 +20546,77,13,22,0.0 +20546,57,19.5,42,0.0 +20546,44,19.45,33,0.0 +20546,27,43.9,2,0.0 +20546,22,21,16,0.0 +20546,69,36,48,0.0 +20546,43,46,24,0.0 +20546,75,7.75,37,0.0 +20546,19,9.2,2,0.0 +20546,47,9.5,11,0.0 +20547,54,7.45,50,0.0 +20547,51,53,17,0.0 +20547,36,19,49,0.0 +20547,26,31.23,47,0.0 +20547,49,20,47,0.0 +20547,56,38,19,0.0 +20547,20,81,44,0.0 +20547,37,26,8,0.0 +20547,13,6,12,0.0 +20547,60,34,42,0.0 +20547,61,28.5,6,0.0 +20547,42,14,20,0.0 +20547,33,2.5,1,0.0 +20547,3,10,49,0.0 +20547,50,16.25,2,0.0 +20547,4,22,48,0.0 +20547,73,15,24,0.0 +20547,40,18.4,36,0.0 +20547,9,97,41,0.0 +20547,30,25.89,9,0.0 +20547,29,123.79,23,0.0 +20547,41,9.65,48,0.0 +20547,43,46,45,0.0 +20547,74,10,1,0.0 +20547,22,21,47,0.0 +20547,59,55,48,0.0 +20547,5,21.35,50,0.0 +20547,38,263.5,41,0.0 +20547,18,62.5,32,0.0 +20547,70,15,33,0.0 +20547,19,9.2,49,0.0 +20547,76,18,40,0.0 +20547,23,9,7,0.0 +20547,53,32.8,10,0.0 +20547,52,7,29,0.0 +20547,62,49.3,18,0.0 +20547,21,10,12,0.0 +20547,28,45.6,46,0.0 +20547,63,43.9,9,0.0 +20547,1,18,33,0.0 +20547,47,9.5,23,0.0 +20547,45,9.5,29,0.0 +20547,24,4.5,41,0.0 +20547,35,18,23,0.0 +20547,2,19,14,0.0 +20547,64,33.25,15,0.0 +20547,65,21.05,48,0.0 +20547,71,21.5,5,0.0 +20547,34,14,4,0.0 +20547,57,19.5,1,0.0 +20547,69,36,14,0.0 +20547,44,19.45,23,0.0 +20547,77,13,46,0.0 +20547,32,32,32,0.0 +20548,45,9.5,22,0.0 +20548,74,10,23,0.0 +20548,46,12,8,0.0 +20548,50,16.25,47,0.0 +20548,30,25.89,43,0.0 +20548,72,34.8,22,0.0 +20548,43,46,29,0.0 +20548,44,19.45,41,0.0 +20548,9,97,43,0.0 +20548,3,10,50,0.0 +20548,73,15,45,0.0 +20548,57,19.5,22,0.0 +20548,65,21.05,35,0.0 +20548,27,43.9,23,0.0 +20548,64,33.25,1,0.0 +20548,52,7,29,0.0 +20548,8,40,11,0.0 +20548,12,38,25,0.0 +20548,20,81,4,0.0 +20548,19,9.2,2,0.0 +20548,18,62.5,31,0.0 +20548,2,19,25,0.0 +20548,11,21,10,0.0 +20548,51,53,26,0.0 +20548,34,14,36,0.0 +20548,15,15.5,19,0.0 +20548,48,12.75,27,0.0 +20548,29,123.79,3,0.0 +20548,63,43.9,46,0.0 +20548,38,263.5,13,0.0 +20548,36,19,49,0.0 +20548,1,18,2,0.0 +20548,41,9.65,13,0.0 +20548,75,7.75,6,0.0 +20548,32,32,19,0.0 +20548,26,31.23,48,0.0 +20548,5,21.35,39,0.0 +20548,17,39,31,0.0 +20548,42,14,2,0.0 +20548,55,24,35,0.0 +20548,6,25,32,0.0 +20548,31,12.5,44,0.0 +20548,25,14,49,0.0 +20548,47,9.5,26,0.0 +20548,13,6,9,0.0 +20548,61,28.5,18,0.0 +20548,66,17,13,0.0 +20548,77,13,1,0.0 +20548,4,22,19,0.0 +20548,37,26,49,0.0 +20548,71,21.5,26,0.0 +20548,53,32.8,17,0.0 +20548,59,55,3,0.0 +20548,70,15,21,0.0 +20548,24,4.5,6,0.0 +20548,67,14,45,0.0 +20548,28,45.6,10,0.0 +20548,69,36,41,0.0 +20548,56,38,30,0.0 +20548,68,12.5,42,0.0 +20548,35,18,44,0.0 +20548,23,9,43,0.0 +20548,16,17.45,50,0.0 +20548,49,20,31,0.0 +20549,20,81,3,0.0 +20549,58,13.25,44,0.0 +20549,26,31.23,6,0.0 +20549,67,14,50,0.0 +20549,27,43.9,30,0.0 +20549,55,24,21,0.0 +20549,10,31,36,0.0 +20549,35,18,20,0.0 +20549,65,21.05,17,0.0 +20549,33,2.5,50,0.0 +20549,5,21.35,17,0.0 +20550,28,45.6,37,0.0 +20550,25,14,1,0.0 +20550,66,17,41,0.0 +20550,59,55,18,0.0 +20550,12,38,38,0.0 +20550,15,15.5,31,0.0 +20550,54,7.45,26,0.0 +20550,48,12.75,42,0.0 +20550,8,40,2,0.0 +20550,32,32,50,0.0 +20550,55,24,29,0.0 +20550,68,12.5,49,0.0 +20550,58,13.25,48,0.0 +20550,52,7,12,0.0 +20550,77,13,40,0.0 +20550,5,21.35,46,0.0 +20550,70,15,15,0.0 +20550,56,38,20,0.0 +20550,10,31,25,0.0 +20550,69,36,48,0.0 +20550,73,15,45,0.0 +20550,65,21.05,30,0.0 +20550,30,25.89,6,0.0 +20550,39,18,17,0.0 +20550,37,26,30,0.0 +20550,16,17.45,11,0.0 +20550,33,2.5,46,0.0 +20550,47,9.5,27,0.0 +20551,22,21,26,0.0 +20551,63,43.9,23,0.0 +20551,17,39,12,0.0 +20551,41,9.65,8,0.0 +20551,54,7.45,7,0.0 +20551,6,25,48,0.0 +20551,42,14,46,0.0 +20551,4,22,15,0.0 +20551,45,9.5,46,0.0 +20551,20,81,5,0.0 +20551,69,36,14,0.0 +20551,33,2.5,24,0.0 +20552,56,38,37,0.0 +20552,29,123.79,32,0.0 +20552,47,9.5,42,0.0 +20552,25,14,39,0.0 +20552,58,13.25,22,0.0 +20552,40,18.4,25,0.0 +20552,51,53,43,0.0 +20552,17,39,32,0.0 +20552,76,18,49,0.0 +20552,23,9,25,0.0 +20552,27,43.9,6,0.0 +20552,65,21.05,7,0.0 +20552,16,17.45,30,0.0 +20552,64,33.25,15,0.0 +20552,15,15.5,41,0.0 +20552,43,46,48,0.0 +20553,12,38,30,0.0 +20553,74,10,35,0.0 +20553,29,123.79,34,0.0 +20553,38,263.5,20,0.0 +20553,52,7,26,0.0 +20553,44,19.45,12,0.0 +20553,15,15.5,31,0.0 +20553,8,40,43,0.0 +20553,7,30,48,0.0 +20553,43,46,9,0.0 +20553,30,25.89,22,0.0 +20553,14,23.25,21,0.0 +20553,36,19,48,0.0 +20553,58,13.25,10,0.0 +20553,16,17.45,13,0.0 +20553,66,17,22,0.0 +20553,18,62.5,25,0.0 +20553,23,9,5,0.0 +20553,63,43.9,16,0.0 +20553,68,12.5,4,0.0 +20553,39,18,22,0.0 +20553,32,32,5,0.0 +20553,47,9.5,4,0.0 +20553,57,19.5,27,0.0 +20553,62,49.3,19,0.0 +20553,21,10,17,0.0 +20553,64,33.25,10,0.0 +20553,27,43.9,22,0.0 +20554,33,2.5,50,0.0 +20554,69,36,46,0.0 +20554,48,12.75,17,0.0 +20554,15,15.5,8,0.0 +20554,60,34,36,0.0 +20554,53,32.8,36,0.0 +20554,45,9.5,5,0.0 +20554,65,21.05,29,0.0 +20554,72,34.8,26,0.0 +20554,19,9.2,11,0.0 +20554,35,18,48,0.0 +20554,63,43.9,34,0.0 +20554,41,9.65,13,0.0 +20554,28,45.6,20,0.0 +20554,9,97,7,0.0 +20554,61,28.5,22,0.0 +20554,8,40,3,0.0 +20554,10,31,11,0.0 +20554,37,26,1,0.0 +20554,32,32,26,0.0 +20554,12,38,35,0.0 +20554,29,123.79,42,0.0 +20554,36,19,12,0.0 +20554,52,7,37,0.0 +20554,6,25,34,0.0 +20554,46,12,49,0.0 +20554,38,263.5,49,0.0 +20554,66,17,44,0.0 +20554,21,10,45,0.0 +20554,57,19.5,11,0.0 +20554,4,22,10,0.0 +20554,59,55,47,0.0 +20554,51,53,8,0.0 +20554,62,49.3,4,0.0 +20554,77,13,3,0.0 +20554,30,25.89,43,0.0 +20554,18,62.5,46,0.0 +20554,70,15,2,0.0 +20554,75,7.75,50,0.0 +20554,71,21.5,17,0.0 +20554,42,14,31,0.0 +20554,23,9,46,0.0 +20554,5,21.35,50,0.0 +20554,76,18,18,0.0 +20554,14,23.25,4,0.0 +20555,52,7,46,0.0 +20555,25,14,38,0.0 +20555,22,21,25,0.0 +20555,48,12.75,6,0.0 +20555,2,19,38,0.0 +20555,41,9.65,50,0.0 +20555,45,9.5,18,0.0 +20555,14,23.25,42,0.0 +20555,35,18,5,0.0 +20555,77,13,13,0.0 +20555,33,2.5,8,0.0 +20555,58,13.25,11,0.0 +20555,7,30,48,0.0 +20555,31,12.5,48,0.0 +20555,56,38,5,0.0 +20555,65,21.05,50,0.0 +20555,1,18,14,0.0 +20555,17,39,22,0.0 +20555,21,10,47,0.0 +20555,51,53,9,0.0 +20555,30,25.89,31,0.0 +20555,67,14,11,0.0 +20555,18,62.5,29,0.0 +20555,40,18.4,9,0.0 +20555,44,19.45,24,0.0 +20555,55,24,30,0.0 +20555,20,81,47,0.0 +20555,71,21.5,17,0.0 +20555,75,7.75,5,0.0 +20555,11,21,45,0.0 +20555,12,38,20,0.0 +20555,4,22,1,0.0 +20555,42,14,18,0.0 +20555,19,9.2,48,0.0 +20555,73,15,19,0.0 +20555,53,32.8,15,0.0 +20555,38,263.5,7,0.0 +20555,50,16.25,2,0.0 +20555,26,31.23,31,0.0 +20555,3,10,29,0.0 +20555,57,19.5,37,0.0 +20555,60,34,35,0.0 +20555,37,26,7,0.0 +20555,47,9.5,37,0.0 +20555,43,46,43,0.0 +20555,49,20,22,0.0 +20555,9,97,15,0.0 +20555,72,34.8,41,0.0 +20555,62,49.3,11,0.0 +20555,74,10,17,0.0 +20555,39,18,2,0.0 +20555,64,33.25,22,0.0 +20555,68,12.5,7,0.0 +20555,6,25,42,0.0 +20555,34,14,23,0.0 +20555,10,31,36,0.0 +20555,28,45.6,7,0.0 +20555,76,18,8,0.0 +20555,23,9,47,0.0 +20555,54,7.45,36,0.0 +20555,15,15.5,30,0.0 +20555,63,43.9,5,0.0 +20555,5,21.35,36,0.0 +20555,69,36,45,0.0 +20555,27,43.9,27,0.0 +20555,70,15,45,0.0 +20555,46,12,44,0.0 +20555,16,17.45,24,0.0 +20555,13,6,1,0.0 +20555,24,4.5,13,0.0 +20555,61,28.5,11,0.0 +20555,29,123.79,40,0.0 +20556,19,9.2,48,0.0 +20556,17,39,19,0.0 +20556,30,25.89,23,0.0 +20556,52,7,43,0.0 +20556,59,55,19,0.0 +20556,54,7.45,6,0.0 +20556,4,22,10,0.0 +20556,26,31.23,25,0.0 +20556,65,21.05,12,0.0 +20556,32,32,14,0.0 +20556,41,9.65,34,0.0 +20556,69,36,40,0.0 +20556,68,12.5,33,0.0 +20556,67,14,45,0.0 +20556,10,31,6,0.0 +20556,22,21,43,0.0 +20556,5,21.35,32,0.0 +20556,61,28.5,35,0.0 +20556,66,17,9,0.0 +20556,31,12.5,50,0.0 +20556,24,4.5,23,0.0 +20556,6,25,6,0.0 +20556,70,15,49,0.0 +20556,75,7.75,47,0.0 +20556,14,23.25,13,0.0 +20556,15,15.5,21,0.0 +20556,21,10,35,0.0 +20556,51,53,8,0.0 +20556,33,2.5,29,0.0 +20556,44,19.45,7,0.0 +20556,64,33.25,27,0.0 +20556,1,18,42,0.0 +20556,71,21.5,33,0.0 +20556,7,30,47,0.0 +20556,48,12.75,10,0.0 +20557,28,45.6,24,0.0 +20557,58,13.25,22,0.0 +20557,37,26,18,0.0 +20557,70,15,18,0.0 +20557,40,18.4,45,0.0 +20557,74,10,15,0.0 +20557,26,31.23,20,0.0 +20557,12,38,18,0.0 +20557,11,21,50,0.0 +20557,65,21.05,40,0.0 +20557,38,263.5,17,0.0 +20557,47,9.5,32,0.0 +20557,31,12.5,34,0.0 +20557,32,32,8,0.0 +20557,10,31,16,0.0 +20557,1,18,36,0.0 +20557,62,49.3,3,0.0 +20557,6,25,40,0.0 +20557,45,9.5,45,0.0 +20557,43,46,39,0.0 +20557,48,12.75,15,0.0 +20557,22,21,21,0.0 +20557,77,13,40,0.0 +20557,4,22,22,0.0 +20557,72,34.8,8,0.0 +20557,49,20,24,0.0 +20557,29,123.79,1,0.0 +20557,24,4.5,20,0.0 +20557,14,23.25,39,0.0 +20557,39,18,24,0.0 +20557,52,7,28,0.0 +20557,73,15,17,0.0 +20557,56,38,1,0.0 +20557,15,15.5,49,0.0 +20557,36,19,8,0.0 +20557,33,2.5,45,0.0 +20558,65,21.05,3,0.0 +20558,43,46,24,0.0 +20558,10,31,45,0.0 +20558,56,38,42,0.0 +20558,14,23.25,26,0.0 +20558,19,9.2,31,0.0 +20558,30,25.89,25,0.0 +20558,52,7,26,0.0 +20558,70,15,5,0.0 +20558,53,32.8,47,0.0 +20558,39,18,43,0.0 +20558,31,12.5,39,0.0 +20558,67,14,9,0.0 +20558,33,2.5,42,0.0 +20558,40,18.4,34,0.0 +20558,6,25,49,0.0 +20558,77,13,43,0.0 +20558,28,45.6,9,0.0 +20558,29,123.79,27,0.0 +20558,45,9.5,39,0.0 +20558,26,31.23,16,0.0 +20558,51,53,11,0.0 +20558,5,21.35,43,0.0 +20558,54,7.45,36,0.0 +20558,59,55,7,0.0 +20558,13,6,4,0.0 +20558,46,12,22,0.0 +20558,76,18,11,0.0 +20558,15,15.5,26,0.0 +20558,12,38,37,0.0 +20558,2,19,28,0.0 +20558,7,30,7,0.0 +20558,63,43.9,40,0.0 +20558,8,40,8,0.0 +20558,36,19,26,0.0 +20558,50,16.25,9,0.0 +20558,34,14,11,0.0 +20558,38,263.5,31,0.0 +20558,55,24,50,0.0 +20558,44,19.45,47,0.0 +20558,68,12.5,24,0.0 +20558,64,33.25,37,0.0 +20558,61,28.5,12,0.0 +20558,66,17,47,0.0 +20558,16,17.45,27,0.0 +20558,49,20,10,0.0 +20558,22,21,43,0.0 +20558,4,22,41,0.0 +20558,21,10,39,0.0 +20558,3,10,15,0.0 +20558,72,34.8,15,0.0 +20558,1,18,22,0.0 +20558,11,21,45,0.0 +20558,17,39,30,0.0 +20558,23,9,19,0.0 +20558,47,9.5,10,0.0 +20558,48,12.75,8,0.0 +20558,35,18,36,0.0 +20558,75,7.75,36,0.0 +20558,62,49.3,23,0.0 +20558,73,15,20,0.0 +20558,41,9.65,15,0.0 +20558,25,14,32,0.0 +20558,27,43.9,1,0.0 +20558,24,4.5,38,0.0 +20558,37,26,22,0.0 +20558,58,13.25,1,0.0 +20558,9,97,42,0.0 +20558,69,36,36,0.0 +20558,57,19.5,49,0.0 +20558,74,10,35,0.0 +20558,32,32,12,0.0 +20558,71,21.5,32,0.0 +20558,18,62.5,1,0.0 +20558,60,34,40,0.0 +20559,49,20,26,0.0 +20559,61,28.5,42,0.0 +20560,51,53,25,0.0 +20560,77,13,50,0.0 +20560,63,43.9,40,0.0 +20560,20,81,24,0.0 +20560,4,22,20,0.0 +20560,21,10,44,0.0 +20560,34,14,48,0.0 +20560,50,16.25,35,0.0 +20560,62,49.3,17,0.0 +20560,54,7.45,16,0.0 +20560,17,39,13,0.0 +20560,43,46,6,0.0 +20560,16,17.45,35,0.0 +20560,69,36,31,0.0 +20560,2,19,38,0.0 +20560,52,7,39,0.0 +20560,13,6,39,0.0 +20560,29,123.79,28,0.0 +20560,47,9.5,18,0.0 +20560,19,9.2,28,0.0 +20560,40,18.4,6,0.0 +20560,73,15,14,0.0 +20560,76,18,27,0.0 +20560,27,43.9,20,0.0 +20560,58,13.25,18,0.0 +20560,46,12,42,0.0 +20560,71,21.5,8,0.0 +20560,12,38,18,0.0 +20560,33,2.5,46,0.0 +20560,48,12.75,5,0.0 +20560,10,31,39,0.0 +20560,9,97,7,0.0 +20560,49,20,16,0.0 +20560,35,18,33,0.0 +20560,37,26,9,0.0 +20560,70,15,4,0.0 +20560,75,7.75,34,0.0 +20560,31,12.5,39,0.0 +20560,67,14,8,0.0 +20560,42,14,36,0.0 +20560,3,10,18,0.0 +20560,25,14,33,0.0 +20560,59,55,19,0.0 +20560,11,21,49,0.0 +20560,66,17,17,0.0 +20560,41,9.65,48,0.0 +20560,23,9,20,0.0 +20561,24,4.5,50,0.0 +20561,74,10,40,0.0 +20561,29,123.79,15,0.0 +20561,2,19,35,0.0 +20561,23,9,2,0.0 +20561,6,25,30,0.0 +20561,41,9.65,30,0.0 +20561,55,24,9,0.0 +20561,18,62.5,21,0.0 +20561,30,25.89,25,0.0 +20561,26,31.23,36,0.0 +20561,38,263.5,38,0.0 +20561,62,49.3,15,0.0 +20561,28,45.6,19,0.0 +20561,13,6,5,0.0 +20561,68,12.5,45,0.0 +20561,71,21.5,15,0.0 +20561,3,10,27,0.0 +20561,19,9.2,5,0.0 +20561,51,53,17,0.0 +20561,7,30,47,0.0 +20561,27,43.9,49,0.0 +20561,70,15,34,0.0 +20561,15,15.5,15,0.0 +20561,37,26,18,0.0 +20561,59,55,33,0.0 +20561,21,10,6,0.0 +20561,12,38,45,0.0 +20561,77,13,5,0.0 +20561,4,22,11,0.0 +20561,48,12.75,17,0.0 +20561,45,9.5,6,0.0 +20561,43,46,29,0.0 +20561,42,14,48,0.0 +20561,22,21,14,0.0 +20561,58,13.25,2,0.0 +20561,39,18,22,0.0 +20561,72,34.8,25,0.0 +20561,34,14,44,0.0 +20561,32,32,40,0.0 +20561,52,7,34,0.0 +20561,17,39,25,0.0 +20561,67,14,27,0.0 +20561,33,2.5,27,0.0 +20561,16,17.45,38,0.0 +20561,10,31,23,0.0 +20561,56,38,30,0.0 +20561,76,18,13,0.0 +20561,8,40,50,0.0 +20561,61,28.5,1,0.0 +20561,69,36,12,0.0 +20561,11,21,21,0.0 +20561,49,20,19,0.0 +20561,64,33.25,36,0.0 +20561,36,19,22,0.0 +20561,20,81,12,0.0 +20561,1,18,20,0.0 +20561,75,7.75,31,0.0 +20561,31,12.5,6,0.0 +20562,58,13.25,27,0.0 +20562,74,10,18,0.0 +20562,75,7.75,45,0.0 +20562,6,25,2,0.0 +20562,53,32.8,26,0.0 +20562,46,12,6,0.0 +20562,33,2.5,42,0.0 +20562,59,55,42,0.0 +20562,22,21,40,0.0 +20562,2,19,8,0.0 +20562,61,28.5,3,0.0 +20562,36,19,23,0.0 +20562,70,15,40,0.0 +20562,16,17.45,19,0.0 +20563,46,12,22,0.0 +20563,53,32.8,44,0.0 +20563,67,14,24,0.0 +20563,70,15,26,0.0 +20563,64,33.25,5,0.0 +20563,71,21.5,50,0.0 +20563,50,16.25,29,0.0 +20563,54,7.45,4,0.0 +20563,51,53,9,0.0 +20563,47,9.5,43,0.0 +20563,20,81,42,0.0 +20563,28,45.6,47,0.0 +20563,68,12.5,3,0.0 +20563,62,49.3,23,0.0 +20563,2,19,36,0.0 +20563,25,14,16,0.0 +20563,27,43.9,23,0.0 +20563,29,123.79,23,0.0 +20563,18,62.5,47,0.0 +20563,16,17.45,7,0.0 +20563,33,2.5,29,0.0 +20563,17,39,1,0.0 +20563,40,18.4,3,0.0 +20563,15,15.5,28,0.0 +20563,7,30,40,0.0 +20563,13,6,20,0.0 +20563,72,34.8,24,0.0 +20563,74,10,40,0.0 +20563,14,23.25,40,0.0 +20563,69,36,27,0.0 +20563,9,97,3,0.0 +20563,24,4.5,40,0.0 +20563,43,46,23,0.0 +20563,44,19.45,44,0.0 +20563,38,263.5,17,0.0 +20563,48,12.75,14,0.0 +20563,36,19,14,0.0 +20563,21,10,2,0.0 +20563,75,7.75,13,0.0 +20563,31,12.5,46,0.0 +20563,39,18,41,0.0 +20563,30,25.89,24,0.0 +20563,58,13.25,48,0.0 +20563,55,24,2,0.0 +20563,76,18,16,0.0 +20563,19,9.2,45,0.0 +20563,73,15,18,0.0 +20563,11,21,23,0.0 +20563,49,20,35,0.0 +20563,35,18,27,0.0 +20563,1,18,45,0.0 +20563,63,43.9,40,0.0 +20563,45,9.5,3,0.0 +20563,41,9.65,35,0.0 +20563,42,14,49,0.0 +20563,66,17,28,0.0 +20563,37,26,20,0.0 +20563,57,19.5,37,0.0 +20563,56,38,1,0.0 +20563,77,13,42,0.0 +20563,59,55,33,0.0 +20563,65,21.05,34,0.0 +20563,23,9,42,0.0 +20563,60,34,22,0.0 +20563,10,31,50,0.0 +20563,52,7,40,0.0 +20563,6,25,13,0.0 +20563,34,14,43,0.0 +20563,22,21,3,0.0 +20563,4,22,3,0.0 +20564,6,25,39,0.0 +20564,69,36,21,0.0 +20564,52,7,11,0.0 +20564,30,25.89,47,0.0 +20564,39,18,49,0.0 +20564,18,62.5,48,0.0 +20564,50,16.25,3,0.0 +20564,70,15,37,0.0 +20564,15,15.5,7,0.0 +20564,48,12.75,5,0.0 +20564,20,81,11,0.0 +20565,5,21.35,22,0.0 +20565,49,20,15,0.0 +20565,16,17.45,3,0.0 +20565,17,39,40,0.0 +20565,35,18,48,0.0 +20565,2,19,32,0.0 +20565,19,9.2,28,0.0 +20565,53,32.8,34,0.0 +20565,66,17,19,0.0 +20565,40,18.4,28,0.0 +20565,76,18,40,0.0 +20565,70,15,18,0.0 +20565,3,10,43,0.0 +20565,38,263.5,45,0.0 +20565,55,24,18,0.0 +20565,27,43.9,7,0.0 +20565,62,49.3,26,0.0 +20565,59,55,1,0.0 +20565,39,18,47,0.0 +20565,7,30,14,0.0 +20565,57,19.5,6,0.0 +20565,50,16.25,27,0.0 +20565,4,22,41,0.0 +20565,21,10,8,0.0 +20565,15,15.5,44,0.0 +20565,72,34.8,20,0.0 +20565,29,123.79,16,0.0 +20565,65,21.05,28,0.0 +20565,67,14,43,0.0 +20565,51,53,36,0.0 +20565,22,21,19,0.0 +20565,41,9.65,40,0.0 +20565,48,12.75,2,0.0 +20565,28,45.6,35,0.0 +20565,52,7,47,0.0 +20565,71,21.5,27,0.0 +20565,33,2.5,39,0.0 +20565,1,18,42,0.0 +20565,20,81,43,0.0 +20565,25,14,39,0.0 +20565,13,6,30,0.0 +20565,42,14,36,0.0 +20565,64,33.25,15,0.0 +20565,68,12.5,35,0.0 +20565,14,23.25,39,0.0 +20565,46,12,26,0.0 +20566,53,32.8,25,0.0 +20566,75,7.75,3,0.0 +20566,49,20,33,0.0 +20566,22,21,27,0.0 +20566,35,18,3,0.0 +20566,7,30,38,0.0 +20566,44,19.45,43,0.0 +20567,5,21.35,2,0.0 +20567,46,12,35,0.0 +20567,14,23.25,27,0.0 +20567,7,30,16,0.0 +20567,54,7.45,12,0.0 +20567,10,31,5,0.0 +20567,64,33.25,21,0.0 +20567,2,19,27,0.0 +20567,74,10,22,0.0 +20567,58,13.25,34,0.0 +20567,70,15,40,0.0 +20567,47,9.5,25,0.0 +20567,13,6,16,0.0 +20567,76,18,33,0.0 +20567,25,14,10,0.0 +20567,28,45.6,29,0.0 +20567,31,12.5,19,0.0 +20567,65,21.05,1,0.0 +20567,57,19.5,31,0.0 +20567,34,14,17,0.0 +20567,43,46,45,0.0 +20567,69,36,14,0.0 +20567,11,21,21,0.0 +20567,8,40,46,0.0 +20567,44,19.45,11,0.0 +20567,23,9,17,0.0 +20567,63,43.9,39,0.0 +20567,66,17,40,0.0 +20567,38,263.5,34,0.0 +20567,30,25.89,36,0.0 +20567,41,9.65,12,0.0 +20567,15,15.5,43,0.0 +20567,6,25,17,0.0 +20567,36,19,36,0.0 +20567,60,34,23,0.0 +20567,77,13,37,0.0 +20567,20,81,39,0.0 +20567,40,18.4,14,0.0 +20567,72,34.8,29,0.0 +20567,71,21.5,19,0.0 +20567,62,49.3,35,0.0 +20567,19,9.2,13,0.0 +20568,75,7.75,8,0.0 +20568,64,33.25,3,0.0 +20568,42,14,33,0.0 +20568,63,43.9,20,0.0 +20568,32,32,6,0.0 +20568,16,17.45,37,0.0 +20568,8,40,35,0.0 +20568,4,22,32,0.0 +20568,3,10,48,0.0 +20568,55,24,49,0.0 +20568,41,9.65,15,0.0 +20568,5,21.35,34,0.0 +20568,31,12.5,23,0.0 +20568,58,13.25,6,0.0 +20568,22,21,14,0.0 +20568,10,31,14,0.0 +20568,11,21,38,0.0 +20568,39,18,47,0.0 +20568,23,9,9,0.0 +20568,29,123.79,27,0.0 +20568,62,49.3,17,0.0 +20568,14,23.25,35,0.0 +20568,37,26,43,0.0 +20568,52,7,23,0.0 +20568,49,20,27,0.0 +20568,40,18.4,21,0.0 +20568,36,19,39,0.0 +20568,77,13,21,0.0 +20568,71,21.5,40,0.0 +20568,73,15,4,0.0 +20568,43,46,27,0.0 +20568,25,14,16,0.0 +20568,68,12.5,28,0.0 +20568,15,15.5,1,0.0 +20568,70,15,21,0.0 +20568,45,9.5,43,0.0 +20568,17,39,43,0.0 +20568,59,55,12,0.0 +20568,72,34.8,12,0.0 +20568,54,7.45,50,0.0 +20568,53,32.8,49,0.0 +20568,61,28.5,10,0.0 +20568,13,6,22,0.0 +20568,74,10,47,0.0 +20568,33,2.5,9,0.0 +20568,28,45.6,11,0.0 +20568,34,14,8,0.0 +20568,50,16.25,12,0.0 +20568,30,25.89,43,0.0 +20568,65,21.05,33,0.0 +20568,38,263.5,34,0.0 +20568,2,19,16,0.0 +20568,44,19.45,9,0.0 +20568,26,31.23,12,0.0 +20568,51,53,30,0.0 +20568,21,10,26,0.0 +20568,19,9.2,34,0.0 +20568,60,34,12,0.0 +20568,69,36,14,0.0 +20568,35,18,23,0.0 +20568,76,18,32,0.0 +20569,4,22,49,0.0 +20569,10,31,38,0.0 +20569,33,2.5,5,0.0 +20569,43,46,45,0.0 +20569,60,34,34,0.0 +20569,32,32,24,0.0 +20569,12,38,2,0.0 +20569,51,53,3,0.0 +20569,34,14,49,0.0 +20569,70,15,16,0.0 +20569,66,17,29,0.0 +20569,35,18,34,0.0 +20569,7,30,1,0.0 +20569,61,28.5,40,0.0 +20569,45,9.5,16,0.0 +20569,59,55,28,0.0 +20569,50,16.25,43,0.0 +20569,63,43.9,19,0.0 +20569,20,81,33,0.0 +20569,67,14,34,0.0 +20569,30,25.89,14,0.0 +20569,8,40,22,0.0 +20569,56,38,17,0.0 +20569,37,26,30,0.0 +20569,29,123.79,2,0.0 +20569,47,9.5,21,0.0 +20569,24,4.5,16,0.0 +20569,76,18,36,0.0 +20569,54,7.45,41,0.0 +20569,19,9.2,6,0.0 +20569,57,19.5,25,0.0 +20569,62,49.3,46,0.0 +20569,65,21.05,33,0.0 +20569,58,13.25,2,0.0 +20569,1,18,45,0.0 +20569,53,32.8,29,0.0 +20569,74,10,46,0.0 +20569,6,25,3,0.0 +20569,17,39,15,0.0 +20569,15,15.5,43,0.0 +20569,27,43.9,21,0.0 +20569,9,97,17,0.0 +20569,5,21.35,7,0.0 +20569,18,62.5,20,0.0 +20569,40,18.4,35,0.0 +20569,42,14,50,0.0 +20569,48,12.75,50,0.0 +20569,31,12.5,47,0.0 +20569,23,9,30,0.0 +20569,13,6,11,0.0 +20570,70,15,20,0.0 +20570,25,14,24,0.0 +20570,24,4.5,40,0.0 +20570,52,7,46,0.0 +20570,14,23.25,40,0.0 +20570,58,13.25,26,0.0 +20570,17,39,6,0.0 +20570,71,21.5,10,0.0 +20570,41,9.65,2,0.0 +20570,47,9.5,19,0.0 +20570,20,81,13,0.0 +20570,57,19.5,12,0.0 +20570,3,10,47,0.0 +20570,29,123.79,15,0.0 +20570,42,14,28,0.0 +20570,37,26,43,0.0 +20570,59,55,24,0.0 +20570,72,34.8,7,0.0 +20570,27,43.9,10,0.0 +20570,35,18,12,0.0 +20570,68,12.5,20,0.0 +20570,19,9.2,33,0.0 +20570,4,22,38,0.0 +20570,11,21,11,0.0 +20570,44,19.45,1,0.0 +20570,33,2.5,19,0.0 +20570,60,34,46,0.0 +20570,63,43.9,13,0.0 +20570,48,12.75,14,0.0 +20570,16,17.45,40,0.0 +20570,6,25,35,0.0 +20570,21,10,18,0.0 +20570,22,21,23,0.0 +20570,66,17,16,0.0 +20570,56,38,35,0.0 +20570,10,31,16,0.0 +20571,63,43.9,2,0.0 +20571,70,15,18,0.0 +20571,12,38,3,0.0 +20571,24,4.5,42,0.0 +20571,17,39,14,0.0 +20571,40,18.4,41,0.0 +20571,19,9.2,18,0.0 +20571,7,30,25,0.0 +20571,11,21,31,0.0 +20571,25,14,36,0.0 +20571,57,19.5,30,0.0 +20571,51,53,9,0.0 +20571,37,26,10,0.0 +20571,47,9.5,26,0.0 +20571,64,33.25,19,0.0 +20571,5,21.35,9,0.0 +20571,54,7.45,15,0.0 +20571,28,45.6,28,0.0 +20571,75,7.75,7,0.0 +20571,4,22,13,0.0 +20571,56,38,47,0.0 +20571,72,34.8,17,0.0 +20571,45,9.5,17,0.0 +20571,26,31.23,39,0.0 +20571,68,12.5,42,0.0 +20571,2,19,26,0.0 +20571,36,19,48,0.0 +20571,22,21,35,0.0 +20571,44,19.45,27,0.0 +20571,66,17,38,0.0 +20571,33,2.5,50,0.0 +20571,65,21.05,48,0.0 +20571,73,15,7,0.0 +20571,77,13,20,0.0 +20571,1,18,15,0.0 +20571,60,34,31,0.0 +20571,3,10,28,0.0 +20571,61,28.5,32,0.0 +20571,62,49.3,48,0.0 +20571,31,12.5,31,0.0 +20571,13,6,36,0.0 +20571,27,43.9,24,0.0 +20571,20,81,30,0.0 +20571,58,13.25,33,0.0 +20571,67,14,1,0.0 +20571,55,24,15,0.0 +20571,9,97,19,0.0 +20571,76,18,4,0.0 +20571,69,36,14,0.0 +20571,74,10,43,0.0 +20571,10,31,24,0.0 +20571,59,55,50,0.0 +20571,39,18,12,0.0 +20571,23,9,35,0.0 +20571,29,123.79,36,0.0 +20571,46,12,18,0.0 +20571,16,17.45,31,0.0 +20571,8,40,31,0.0 +20571,42,14,7,0.0 +20571,35,18,17,0.0 +20571,38,263.5,46,0.0 +20571,50,16.25,37,0.0 +20571,18,62.5,50,0.0 +20571,52,7,14,0.0 +20571,48,12.75,41,0.0 +20571,14,23.25,21,0.0 +20571,41,9.65,3,0.0 +20572,12,38,35,0.0 +20572,17,39,1,0.0 +20572,43,46,38,0.0 +20572,72,34.8,24,0.0 +20572,26,31.23,11,0.0 +20572,9,97,39,0.0 +20572,22,21,22,0.0 +20572,38,263.5,47,0.0 +20572,77,13,26,0.0 +20572,39,18,4,0.0 +20572,30,25.89,40,0.0 +20572,51,53,2,0.0 +20572,7,30,39,0.0 +20572,19,9.2,43,0.0 +20572,25,14,34,0.0 +20572,44,19.45,1,0.0 +20572,41,9.65,20,0.0 +20572,55,24,19,0.0 +20572,18,62.5,26,0.0 +20572,15,15.5,26,0.0 +20572,27,43.9,49,0.0 +20572,40,18.4,41,0.0 +20572,61,28.5,1,0.0 +20572,24,4.5,34,0.0 +20572,67,14,30,0.0 +20572,29,123.79,1,0.0 +20572,58,13.25,11,0.0 +20572,2,19,27,0.0 +20572,35,18,10,0.0 +20572,57,19.5,27,0.0 +20572,47,9.5,5,0.0 +20572,48,12.75,50,0.0 +20572,64,33.25,30,0.0 +20572,74,10,4,0.0 +20572,42,14,19,0.0 +20572,1,18,47,0.0 +20572,28,45.6,16,0.0 +20572,73,15,41,0.0 +20572,66,17,35,0.0 +20572,33,2.5,48,0.0 +20572,63,43.9,17,0.0 +20572,36,19,8,0.0 +20572,13,6,8,0.0 +20572,14,23.25,20,0.0 +20572,4,22,20,0.0 +20572,23,9,28,0.0 +20572,56,38,23,0.0 +20572,49,20,9,0.0 +20572,34,14,27,0.0 +20572,70,15,23,0.0 +20572,32,32,37,0.0 +20572,75,7.75,8,0.0 +20572,45,9.5,7,0.0 +20572,46,12,5,0.0 +20572,31,12.5,32,0.0 +20572,3,10,8,0.0 +20572,68,12.5,22,0.0 +20573,70,15,50,0.0 +20573,54,7.45,15,0.0 +20573,45,9.5,32,0.0 +20573,8,40,28,0.0 +20573,34,14,25,0.0 +20573,76,18,39,0.0 +20573,52,7,34,0.0 +20573,46,12,27,0.0 +20573,23,9,20,0.0 +20573,39,18,3,0.0 +20573,42,14,45,0.0 +20573,58,13.25,19,0.0 +20573,73,15,10,0.0 +20573,25,14,20,0.0 +20573,24,4.5,25,0.0 +20573,36,19,11,0.0 +20573,74,10,50,0.0 +20573,75,7.75,2,0.0 +20573,71,21.5,27,0.0 +20573,29,123.79,4,0.0 +20573,32,32,31,0.0 +20573,50,16.25,4,0.0 +20573,21,10,10,0.0 +20573,72,34.8,14,0.0 +20573,43,46,27,0.0 +20573,56,38,41,0.0 +20573,31,12.5,27,0.0 +20573,49,20,9,0.0 +20573,62,49.3,32,0.0 +20573,59,55,33,0.0 +20573,10,31,6,0.0 +20573,51,53,16,0.0 +20573,16,17.45,6,0.0 +20573,11,21,42,0.0 +20573,63,43.9,31,0.0 +20573,47,9.5,23,0.0 +20573,17,39,32,0.0 +20573,2,19,3,0.0 +20573,6,25,8,0.0 +20573,27,43.9,46,0.0 +20573,57,19.5,44,0.0 +20573,67,14,22,0.0 +20573,13,6,13,0.0 +20574,39,18,4,0.0 +20574,74,10,5,0.0 +20574,22,21,14,0.0 +20575,10,31,45,0.0 +20575,11,21,19,0.0 +20575,77,13,38,0.0 +20575,74,10,14,0.0 +20575,56,38,10,0.0 +20575,41,9.65,41,0.0 +20575,6,25,5,0.0 +20575,13,6,29,0.0 +20575,50,16.25,21,0.0 +20575,2,19,15,0.0 +20575,22,21,44,0.0 +20575,35,18,1,0.0 +20575,40,18.4,18,0.0 +20575,68,12.5,12,0.0 +20575,66,17,38,0.0 +20575,32,32,3,0.0 +20575,3,10,16,0.0 +20575,39,18,26,0.0 +20575,37,26,24,0.0 +20575,67,14,7,0.0 +20575,63,43.9,40,0.0 +20575,69,36,25,0.0 +20575,62,49.3,39,0.0 +20575,59,55,35,0.0 +20575,44,19.45,22,0.0 +20575,49,20,49,0.0 +20575,73,15,25,0.0 +20575,23,9,7,0.0 +20575,71,21.5,43,0.0 +20575,52,7,25,0.0 +20575,75,7.75,12,0.0 +20575,26,31.23,35,0.0 +20575,29,123.79,13,0.0 +20575,31,12.5,33,0.0 +20575,5,21.35,6,0.0 +20575,72,34.8,42,0.0 +20575,70,15,37,0.0 +20575,76,18,5,0.0 +20575,28,45.6,3,0.0 +20575,64,33.25,33,0.0 +20575,15,15.5,47,0.0 +20575,9,97,37,0.0 +20575,18,62.5,45,0.0 +20575,20,81,12,0.0 +20575,43,46,4,0.0 +20575,38,263.5,48,0.0 +20575,12,38,3,0.0 +20575,1,18,24,0.0 +20575,36,19,7,0.0 +20575,7,30,35,0.0 +20575,16,17.45,29,0.0 +20575,61,28.5,9,0.0 +20575,55,24,22,0.0 +20575,14,23.25,38,0.0 +20575,53,32.8,1,0.0 +20576,39,18,5,0.0 +20576,65,21.05,45,0.0 +20576,1,18,21,0.0 +20576,9,97,15,0.0 +20576,58,13.25,43,0.0 +20576,67,14,10,0.0 +20576,77,13,31,0.0 +20576,46,12,27,0.0 +20576,25,14,48,0.0 +20576,21,10,21,0.0 +20576,74,10,23,0.0 +20576,64,33.25,14,0.0 +20576,71,21.5,11,0.0 +20576,48,12.75,17,0.0 +20576,52,7,8,0.0 +20576,33,2.5,13,0.0 +20576,20,81,33,0.0 +20576,2,19,25,0.0 +20576,27,43.9,21,0.0 +20576,18,62.5,22,0.0 +20576,3,10,20,0.0 +20576,38,263.5,32,0.0 +20576,54,7.45,13,0.0 +20576,30,25.89,29,0.0 +20576,15,15.5,32,0.0 +20576,62,49.3,46,0.0 +20576,4,22,31,0.0 +20576,5,21.35,18,0.0 +20576,57,19.5,35,0.0 +20576,34,14,16,0.0 +20576,41,9.65,12,0.0 +20576,23,9,44,0.0 +20576,7,30,47,0.0 +20576,70,15,19,0.0 +20576,37,26,38,0.0 +20576,40,18.4,20,0.0 +20576,35,18,33,0.0 +20576,59,55,42,0.0 +20576,26,31.23,46,0.0 +20576,36,19,32,0.0 +20577,44,19.45,29,0.0 +20577,65,21.05,15,0.0 +20577,49,20,33,0.0 +20577,56,38,36,0.0 +20577,45,9.5,35,0.0 +20577,37,26,1,0.0 +20577,64,33.25,23,0.0 +20577,63,43.9,7,0.0 +20577,68,12.5,49,0.0 +20577,27,43.9,8,0.0 +20578,21,10,42,0.0 +20578,30,25.89,43,0.0 +20578,31,12.5,35,0.0 +20578,56,38,35,0.0 +20578,76,18,32,0.0 +20578,7,30,34,0.0 +20578,1,18,12,0.0 +20578,60,34,20,0.0 +20578,35,18,14,0.0 +20578,48,12.75,14,0.0 +20578,55,24,39,0.0 +20578,28,45.6,21,0.0 +20578,8,40,4,0.0 +20578,66,17,44,0.0 +20578,50,16.25,14,0.0 +20578,19,9.2,16,0.0 +20578,9,97,34,0.0 +20578,46,12,38,0.0 +20578,18,62.5,47,0.0 +20579,10,31,2,0.0 +20579,46,12,43,0.0 +20579,39,18,1,0.0 +20579,60,34,37,0.0 +20579,11,21,34,0.0 +20579,53,32.8,15,0.0 +20579,49,20,47,0.0 +20580,14,23.25,33,0.0 +20580,9,97,15,0.0 +20580,57,19.5,20,0.0 +20580,19,9.2,30,0.0 +20580,4,22,1,0.0 +20580,27,43.9,27,0.0 +20580,51,53,20,0.0 +20580,46,12,1,0.0 +20580,1,18,44,0.0 +20580,15,15.5,50,0.0 +20580,12,38,37,0.0 +20580,67,14,3,0.0 +20580,52,7,16,0.0 +20580,40,18.4,2,0.0 +20580,6,25,36,0.0 +20580,35,18,32,0.0 +20580,42,14,6,0.0 +20580,58,13.25,16,0.0 +20580,48,12.75,12,0.0 +20580,37,26,47,0.0 +20580,76,18,33,0.0 +20580,16,17.45,14,0.0 +20580,70,15,2,0.0 +20580,50,16.25,13,0.0 +20580,68,12.5,28,0.0 +20580,45,9.5,16,0.0 +20580,72,34.8,40,0.0 +20580,7,30,29,0.0 +20580,3,10,36,0.0 +20580,38,263.5,41,0.0 +20580,5,21.35,20,0.0 +20580,60,34,14,0.0 +20580,77,13,28,0.0 +20580,63,43.9,2,0.0 +20580,20,81,8,0.0 +20580,10,31,6,0.0 +20580,33,2.5,44,0.0 +20580,22,21,24,0.0 +20580,47,9.5,6,0.0 +20580,18,62.5,33,0.0 +20580,2,19,34,0.0 +20580,34,14,17,0.0 +20580,59,55,14,0.0 +20580,28,45.6,36,0.0 +20580,55,24,27,0.0 +20580,36,19,49,0.0 +20580,53,32.8,49,0.0 +20580,8,40,37,0.0 +20580,32,32,35,0.0 +20580,26,31.23,1,0.0 +20580,31,12.5,45,0.0 +20580,30,25.89,1,0.0 +20580,49,20,31,0.0 +20580,74,10,13,0.0 +20580,44,19.45,16,0.0 +20580,75,7.75,49,0.0 +20580,43,46,11,0.0 +20581,8,40,20,0.0 +20581,55,24,4,0.0 +20581,75,7.75,3,0.0 +20581,11,21,33,0.0 +20581,53,32.8,19,0.0 +20581,43,46,49,0.0 +20581,54,7.45,49,0.0 +20581,5,21.35,50,0.0 +20581,38,263.5,19,0.0 +20581,37,26,13,0.0 +20581,31,12.5,50,0.0 +20581,77,13,16,0.0 +20582,41,9.65,37,0.0 +20582,8,40,48,0.0 +20582,62,49.3,37,0.0 +20582,11,21,16,0.0 +20582,4,22,26,0.0 +20582,30,25.89,30,0.0 +20582,28,45.6,21,0.0 +20582,75,7.75,42,0.0 +20582,25,14,24,0.0 +20582,21,10,33,0.0 +20582,64,33.25,22,0.0 +20582,69,36,36,0.0 +20582,55,24,40,0.0 +20582,63,43.9,49,0.0 +20582,68,12.5,19,0.0 +20582,58,13.25,29,0.0 +20582,53,32.8,24,0.0 +20582,44,19.45,47,0.0 +20583,19,9.2,8,0.0 +20583,75,7.75,19,0.0 +20583,33,2.5,9,0.0 +20583,7,30,12,0.0 +20583,20,81,1,0.0 +20583,45,9.5,8,0.0 +20583,1,18,40,0.0 +20583,66,17,8,0.0 +20583,32,32,22,0.0 +20583,40,18.4,39,0.0 +20583,70,15,26,0.0 +20583,68,12.5,40,0.0 +20583,41,9.65,40,0.0 +20583,54,7.45,25,0.0 +20583,67,14,48,0.0 +20583,44,19.45,13,0.0 +20583,51,53,29,0.0 +20583,3,10,46,0.0 +20583,10,31,3,0.0 +20583,8,40,8,0.0 +20583,11,21,36,0.0 +20583,27,43.9,35,0.0 +20583,24,4.5,23,0.0 +20583,72,34.8,21,0.0 +20583,63,43.9,12,0.0 +20583,31,12.5,10,0.0 +20584,57,19.5,4,0.0 +20584,32,32,50,0.0 +20584,12,38,20,0.0 +20584,61,28.5,34,0.0 +20584,36,19,38,0.0 +20584,30,25.89,20,0.0 +20584,1,18,16,0.0 +20585,11,21,46,0.0 +20585,55,24,28,0.0 +20585,64,33.25,26,0.0 +20585,23,9,42,0.0 +20585,26,31.23,44,0.0 +20585,54,7.45,35,0.0 +20585,36,19,22,0.0 +20585,53,32.8,1,0.0 +20585,59,55,21,0.0 +20585,21,10,6,0.0 +20585,43,46,12,0.0 +20585,6,25,5,0.0 +20585,73,15,3,0.0 +20585,12,38,29,0.0 +20585,4,22,35,0.0 +20585,60,34,39,0.0 +20585,19,9.2,34,0.0 +20585,41,9.65,42,0.0 +20585,27,43.9,38,0.0 +20585,70,15,34,0.0 +20585,50,16.25,35,0.0 +20585,30,25.89,21,0.0 +20585,5,21.35,15,0.0 +20585,35,18,41,0.0 +20585,28,45.6,34,0.0 +20585,13,6,16,0.0 +20585,37,26,32,0.0 +20585,57,19.5,38,0.0 +20585,9,97,17,0.0 +20585,34,14,8,0.0 +20585,65,21.05,15,0.0 +20585,48,12.75,11,0.0 +20585,47,9.5,27,0.0 +20585,29,123.79,29,0.0 +20585,75,7.75,18,0.0 +20585,66,17,47,0.0 +20585,69,36,10,0.0 +20585,1,18,41,0.0 +20585,63,43.9,3,0.0 +20585,2,19,8,0.0 +20585,10,31,16,0.0 +20585,52,7,41,0.0 +20585,17,39,15,0.0 +20585,20,81,8,0.0 +20585,51,53,25,0.0 +20585,49,20,21,0.0 +20585,68,12.5,21,0.0 +20585,8,40,30,0.0 +20585,74,10,5,0.0 +20585,76,18,23,0.0 +20586,77,13,22,0.0 +20586,43,46,22,0.0 +20586,50,16.25,32,0.0 +20586,48,12.75,39,0.0 +20586,42,14,17,0.0 +20586,47,9.5,12,0.0 +20586,56,38,1,0.0 +20586,55,24,27,0.0 +20586,18,62.5,34,0.0 +20586,28,45.6,50,0.0 +20586,6,25,32,0.0 +20586,30,25.89,39,0.0 +20586,24,4.5,5,0.0 +20586,12,38,19,0.0 +20586,14,23.25,23,0.0 +20586,59,55,46,0.0 +20586,22,21,8,0.0 +20586,34,14,11,0.0 +20586,52,7,35,0.0 +20586,54,7.45,21,0.0 +20586,66,17,25,0.0 +20586,37,26,19,0.0 +20586,2,19,45,0.0 +20586,33,2.5,13,0.0 +20586,70,15,30,0.0 +20586,49,20,47,0.0 +20586,11,21,46,0.0 +20586,45,9.5,45,0.0 +20586,16,17.45,46,0.0 +20586,74,10,26,0.0 +20586,75,7.75,35,0.0 +20586,71,21.5,14,0.0 +20586,62,49.3,32,0.0 +20586,15,15.5,45,0.0 +20586,35,18,1,0.0 +20586,65,21.05,43,0.0 +20586,68,12.5,23,0.0 +20586,31,12.5,8,0.0 +20586,76,18,34,0.0 +20586,72,34.8,48,0.0 +20587,8,40,3,0.0 +20587,12,38,32,0.0 +20587,62,49.3,13,0.0 +20587,33,2.5,23,0.0 +20587,74,10,18,0.0 +20587,26,31.23,33,0.0 +20588,27,43.9,10,0.0 +20588,47,9.5,28,0.0 +20588,70,15,29,0.0 +20588,14,23.25,1,0.0 +20588,63,43.9,43,0.0 +20588,7,30,39,0.0 +20588,55,24,14,0.0 +20588,68,12.5,9,0.0 +20588,60,34,42,0.0 +20588,12,38,1,0.0 +20588,50,16.25,34,0.0 +20589,22,21,4,0.0 +20589,37,26,15,0.0 +20589,34,14,34,0.0 +20589,10,31,27,0.0 +20589,59,55,34,0.0 +20589,41,9.65,11,0.0 +20589,73,15,30,0.0 +20589,75,7.75,15,0.0 +20589,9,97,6,0.0 +20589,31,12.5,42,0.0 +20589,16,17.45,18,0.0 +20589,29,123.79,26,0.0 +20589,39,18,26,0.0 +20590,17,39,4,0.0 +20590,42,14,44,0.0 +20590,72,34.8,21,0.0 +20590,47,9.5,14,0.0 +20590,11,21,27,0.0 +20590,20,81,13,0.0 +20590,58,13.25,13,0.0 +20590,66,17,36,0.0 +20590,34,14,18,0.0 +20590,25,14,33,0.0 +20590,5,21.35,32,0.0 +20590,77,13,9,0.0 +20590,43,46,21,0.0 +20590,55,24,47,0.0 +20590,48,12.75,35,0.0 +20590,1,18,38,0.0 +20590,22,21,44,0.0 +20590,16,17.45,24,0.0 +20590,51,53,43,0.0 +20590,32,32,37,0.0 +20590,29,123.79,17,0.0 +20590,12,38,32,0.0 +20590,28,45.6,16,0.0 +20590,14,23.25,27,0.0 +20590,49,20,33,0.0 +20590,65,21.05,10,0.0 +20590,33,2.5,5,0.0 +20590,26,31.23,3,0.0 +20590,67,14,37,0.0 +20590,30,25.89,2,0.0 +20590,74,10,44,0.0 +20590,62,49.3,13,0.0 +20590,60,34,10,0.0 +20590,40,18.4,12,0.0 +20590,24,4.5,12,0.0 +20590,68,12.5,29,0.0 +20590,4,22,31,0.0 +20590,70,15,18,0.0 +20590,39,18,9,0.0 +20590,6,25,29,0.0 +20590,56,38,4,0.0 +20590,36,19,11,0.0 +20590,37,26,32,0.0 +20590,64,33.25,20,0.0 +20590,75,7.75,42,0.0 +20590,7,30,27,0.0 +20590,41,9.65,13,0.0 +20590,3,10,23,0.0 +20590,44,19.45,18,0.0 +20590,52,7,23,0.0 +20590,59,55,38,0.0 +20590,21,10,24,0.0 +20590,57,19.5,38,0.0 +20590,46,12,20,0.0 +20590,23,9,31,0.0 +20590,27,43.9,42,0.0 +20590,73,15,9,0.0 +20590,19,9.2,25,0.0 +20590,8,40,1,0.0 +20590,69,36,28,0.0 +20590,15,15.5,18,0.0 +20590,61,28.5,1,0.0 +20590,45,9.5,32,0.0 +20590,53,32.8,2,0.0 +20590,35,18,2,0.0 +20590,13,6,41,0.0 +20590,38,263.5,33,0.0 +20591,5,21.35,11,0.0 +20591,75,7.75,1,0.0 +20591,61,28.5,49,0.0 +20591,31,12.5,38,0.0 +20591,66,17,49,0.0 +20591,37,26,16,0.0 +20591,23,9,5,0.0 +20591,54,7.45,3,0.0 +20591,59,55,20,0.0 +20591,20,81,12,0.0 +20591,70,15,3,0.0 +20591,1,18,33,0.0 +20591,46,12,45,0.0 +20591,40,18.4,36,0.0 +20591,24,4.5,39,0.0 +20591,11,21,8,0.0 +20591,30,25.89,5,0.0 +20591,42,14,21,0.0 +20591,38,263.5,20,0.0 +20591,14,23.25,41,0.0 +20591,15,15.5,27,0.0 +20591,74,10,39,0.0 +20591,34,14,9,0.0 +20591,72,34.8,37,0.0 +20591,65,21.05,43,0.0 +20591,12,38,48,0.0 +20591,64,33.25,20,0.0 +20591,51,53,39,0.0 +20591,35,18,34,0.0 +20591,6,25,44,0.0 +20591,16,17.45,50,0.0 +20591,69,36,18,0.0 +20591,44,19.45,4,0.0 +20591,57,19.5,29,0.0 +20591,10,31,24,0.0 +20592,53,32.8,10,0.0 +20592,20,81,18,0.0 +20592,32,32,34,0.0 +20592,44,19.45,6,0.0 +20592,68,12.5,8,0.0 +20592,22,21,38,0.0 +20592,42,14,7,0.0 +20592,52,7,25,0.0 +20592,27,43.9,7,0.0 +20592,1,18,17,0.0 +20592,73,15,42,0.0 +20592,5,21.35,35,0.0 +20592,60,34,27,0.0 +20592,35,18,31,0.0 +20592,36,19,40,0.0 +20592,12,38,32,0.0 +20592,45,9.5,34,0.0 +20592,24,4.5,6,0.0 +20592,51,53,45,0.0 +20592,31,12.5,1,0.0 +20592,49,20,43,0.0 +20592,16,17.45,8,0.0 +20592,67,14,10,0.0 +20592,11,21,21,0.0 +20592,65,21.05,12,0.0 +20592,2,19,10,0.0 +20592,26,31.23,49,0.0 +20592,46,12,22,0.0 +20592,3,10,7,0.0 +20592,70,15,34,0.0 +20592,61,28.5,27,0.0 +20592,48,12.75,19,0.0 +20592,50,16.25,13,0.0 +20592,34,14,45,0.0 +20592,41,9.65,7,0.0 +20593,77,13,48,0.0 +20593,66,17,30,0.0 +20593,33,2.5,49,0.0 +20593,16,17.45,45,0.0 +20593,47,9.5,45,0.0 +20593,9,97,43,0.0 +20593,68,12.5,1,0.0 +20593,34,14,39,0.0 +20593,35,18,33,0.0 +20593,67,14,30,0.0 +20593,64,33.25,27,0.0 +20593,6,25,48,0.0 +20593,25,14,6,0.0 +20593,3,10,9,0.0 +20593,45,9.5,27,0.0 +20593,28,45.6,24,0.0 +20593,20,81,7,0.0 +20593,51,53,2,0.0 +20593,70,15,45,0.0 +20593,27,43.9,27,0.0 +20593,11,21,12,0.0 +20593,26,31.23,5,0.0 +20593,71,21.5,48,0.0 +20593,49,20,4,0.0 +20593,12,38,17,0.0 +20593,8,40,13,0.0 +20593,73,15,49,0.0 +20593,42,14,42,0.0 +20593,48,12.75,20,0.0 +20593,37,26,14,0.0 +20593,54,7.45,4,0.0 +20593,46,12,17,0.0 +20593,7,30,4,0.0 +20593,5,21.35,21,0.0 +20593,69,36,36,0.0 +20593,44,19.45,10,0.0 +20594,33,2.5,25,0.0 +20594,30,25.89,46,0.0 +20594,46,12,1,0.0 +20594,17,39,11,0.0 +20594,69,36,36,0.0 +20594,77,13,30,0.0 +20594,61,28.5,37,0.0 +20594,55,24,34,0.0 +20594,58,13.25,37,0.0 +20594,47,9.5,24,0.0 +20594,22,21,36,0.0 +20594,3,10,33,0.0 +20594,56,38,27,0.0 +20594,49,20,42,0.0 +20594,65,21.05,44,0.0 +20594,54,7.45,4,0.0 +20594,15,15.5,29,0.0 +20594,41,9.65,22,0.0 +20594,39,18,18,0.0 +20594,31,12.5,19,0.0 +20594,1,18,28,0.0 +20594,8,40,17,0.0 +20594,74,10,37,0.0 +20594,5,21.35,3,0.0 +20594,35,18,15,0.0 +20594,67,14,10,0.0 +20594,27,43.9,2,0.0 +20594,26,31.23,3,0.0 +20594,73,15,18,0.0 +20594,57,19.5,12,0.0 +20594,18,62.5,42,0.0 +20594,2,19,46,0.0 +20594,72,34.8,20,0.0 +20594,66,17,15,0.0 +20594,23,9,22,0.0 +20594,42,14,45,0.0 +20594,60,34,31,0.0 +20594,36,19,9,0.0 +20594,44,19.45,18,0.0 +20594,24,4.5,49,0.0 +20594,63,43.9,2,0.0 +20594,50,16.25,17,0.0 +20594,51,53,38,0.0 +20594,4,22,7,0.0 +20594,11,21,15,0.0 +20594,20,81,42,0.0 +20594,34,14,27,0.0 +20594,75,7.75,46,0.0 +20594,70,15,2,0.0 +20594,10,31,42,0.0 +20594,52,7,13,0.0 +20594,12,38,36,0.0 +20595,54,7.45,36,0.0 +20595,31,12.5,22,0.0 +20595,38,263.5,40,0.0 +20595,53,32.8,27,0.0 +20595,15,15.5,15,0.0 +20595,11,21,37,0.0 +20595,7,30,12,0.0 +20595,21,10,3,0.0 +20595,49,20,23,0.0 +20595,69,36,16,0.0 +20595,56,38,15,0.0 +20595,52,7,6,0.0 +20595,40,18.4,32,0.0 +20595,68,12.5,6,0.0 +20595,2,19,2,0.0 +20595,62,49.3,10,0.0 +20595,23,9,49,0.0 +20595,10,31,12,0.0 +20595,28,45.6,27,0.0 +20595,22,21,40,0.0 +20595,67,14,40,0.0 +20595,30,25.89,35,0.0 +20595,34,14,49,0.0 +20595,3,10,45,0.0 +20596,76,18,8,0.0 +20596,77,13,5,0.0 +20596,30,25.89,8,0.0 +20596,34,14,10,0.0 +20597,25,14,3,0.0 +20597,61,28.5,44,0.0 +20597,12,38,26,0.0 +20597,33,2.5,30,0.0 +20597,67,14,12,0.0 +20597,43,46,29,0.0 +20597,50,16.25,16,0.0 +20597,17,39,7,0.0 +20597,1,18,21,0.0 +20597,57,19.5,35,0.0 +20597,6,25,25,0.0 +20598,53,32.8,21,0.0 +20598,76,18,2,0.0 +20598,72,34.8,27,0.0 +20598,4,22,10,0.0 +20598,67,14,23,0.0 +20598,27,43.9,27,0.0 +20598,2,19,35,0.0 +20598,34,14,22,0.0 +20598,8,40,3,0.0 +20598,41,9.65,15,0.0 +20598,37,26,21,0.0 +20598,29,123.79,30,0.0 +20598,24,4.5,6,0.0 +20598,75,7.75,20,0.0 +20598,6,25,28,0.0 +20598,52,7,21,0.0 +20598,14,23.25,4,0.0 +20598,64,33.25,19,0.0 +20598,1,18,49,0.0 +20598,32,32,40,0.0 +20598,33,2.5,4,0.0 +20598,74,10,31,0.0 +20598,62,49.3,27,0.0 +20598,71,21.5,24,0.0 +20598,57,19.5,13,0.0 +20598,19,9.2,17,0.0 +20598,20,81,46,0.0 +20598,68,12.5,12,0.0 +20598,36,19,42,0.0 +20598,23,9,6,0.0 +20598,69,36,45,0.0 +20598,42,14,5,0.0 +20598,54,7.45,2,0.0 +20598,25,14,35,0.0 +20598,45,9.5,10,0.0 +20598,17,39,45,0.0 +20598,50,16.25,44,0.0 +20598,43,46,28,0.0 +20598,9,97,43,0.0 +20598,35,18,41,0.0 +20598,38,263.5,30,0.0 +20598,13,6,41,0.0 +20598,46,12,6,0.0 +20598,30,25.89,42,0.0 +20598,39,18,10,0.0 +20598,73,15,37,0.0 +20598,63,43.9,15,0.0 +20598,77,13,25,0.0 +20598,3,10,26,0.0 +20598,21,10,38,0.0 +20598,70,15,40,0.0 +20598,44,19.45,48,0.0 +20599,65,21.05,27,0.0 +20599,34,14,22,0.0 +20599,30,25.89,40,0.0 +20599,56,38,27,0.0 +20599,10,31,30,0.0 +20599,36,19,43,0.0 +20599,23,9,3,0.0 +20599,69,36,12,0.0 +20599,9,97,11,0.0 +20599,11,21,48,0.0 +20599,27,43.9,20,0.0 +20599,55,24,46,0.0 +20599,41,9.65,43,0.0 +20599,7,30,8,0.0 +20599,31,12.5,10,0.0 +20599,72,34.8,33,0.0 +20599,70,15,27,0.0 +20599,54,7.45,46,0.0 +20599,46,12,4,0.0 +20599,2,19,8,0.0 +20599,17,39,15,0.0 +20599,73,15,29,0.0 +20599,18,62.5,35,0.0 +20599,13,6,46,0.0 +20599,32,32,30,0.0 +20599,40,18.4,15,0.0 +20599,6,25,32,0.0 +20599,77,13,20,0.0 +20599,16,17.45,50,0.0 +20599,8,40,24,0.0 +20599,25,14,42,0.0 +20599,48,12.75,38,0.0 +20599,59,55,30,0.0 +20599,28,45.6,13,0.0 +20599,19,9.2,39,0.0 +20599,37,26,11,0.0 +20599,24,4.5,38,0.0 +20599,3,10,25,0.0 +20599,39,18,26,0.0 +20599,15,15.5,4,0.0 +20599,44,19.45,14,0.0 +20599,58,13.25,34,0.0 +20599,60,34,25,0.0 +20599,35,18,22,0.0 +20599,50,16.25,22,0.0 +20599,53,32.8,16,0.0 +20599,45,9.5,27,0.0 +20599,47,9.5,9,0.0 +20599,38,263.5,7,0.0 +20600,63,43.9,24,0.0 +20600,25,14,29,0.0 +20600,73,15,3,0.0 +20600,30,25.89,24,0.0 +20600,41,9.65,39,0.0 +20600,20,81,49,0.0 +20600,42,14,24,0.0 +20600,7,30,21,0.0 +20600,24,4.5,46,0.0 +20600,14,23.25,27,0.0 +20600,4,22,29,0.0 +20600,2,19,35,0.0 +20600,52,7,23,0.0 +20600,23,9,44,0.0 +20600,76,18,34,0.0 +20600,38,263.5,22,0.0 +20600,36,19,19,0.0 +20600,29,123.79,10,0.0 +20600,71,21.5,32,0.0 +20600,28,45.6,42,0.0 +20600,39,18,40,0.0 +20600,75,7.75,7,0.0 +20600,44,19.45,22,0.0 +20600,22,21,7,0.0 +20600,51,53,32,0.0 +20600,64,33.25,14,0.0 +20600,72,34.8,42,0.0 +20600,10,31,10,0.0 +20600,66,17,46,0.0 +20600,40,18.4,22,0.0 +20600,74,10,8,0.0 +20600,15,15.5,7,0.0 +20600,45,9.5,12,0.0 +20600,53,32.8,24,0.0 +20600,13,6,6,0.0 +20600,18,62.5,40,0.0 +20600,47,9.5,9,0.0 +20600,56,38,5,0.0 +20600,17,39,14,0.0 +20600,68,12.5,4,0.0 +20600,49,20,13,0.0 +20600,59,55,12,0.0 +20600,34,14,34,0.0 +20600,69,36,26,0.0 +20600,16,17.45,16,0.0 +20600,12,38,13,0.0 +20601,17,39,25,0.0 +20601,57,19.5,34,0.0 +20601,11,21,30,0.0 +20601,73,15,2,0.0 +20601,4,22,23,0.0 +20601,33,2.5,18,0.0 +20601,48,12.75,35,0.0 +20602,31,12.5,24,0.0 +20602,64,33.25,25,0.0 +20602,74,10,36,0.0 +20602,21,10,18,0.0 +20602,50,16.25,27,0.0 +20602,60,34,21,0.0 +20602,53,32.8,25,0.0 +20602,56,38,49,0.0 +20602,70,15,6,0.0 +20602,13,6,37,0.0 +20602,71,21.5,17,0.0 +20602,63,43.9,50,0.0 +20602,34,14,39,0.0 +20602,11,21,37,0.0 +20602,30,25.89,24,0.0 +20602,20,81,13,0.0 +20602,48,12.75,5,0.0 +20602,18,62.5,13,0.0 +20602,7,30,27,0.0 +20602,39,18,36,0.0 +20602,23,9,33,0.0 +20602,62,49.3,24,0.0 +20602,10,31,18,0.0 +20602,32,32,40,0.0 +20602,42,14,10,0.0 +20602,1,18,49,0.0 +20602,58,13.25,42,0.0 +20602,44,19.45,30,0.0 +20602,37,26,6,0.0 +20602,59,55,32,0.0 +20602,76,18,27,0.0 +20602,9,97,41,0.0 +20602,25,14,35,0.0 +20602,65,21.05,29,0.0 +20602,67,14,47,0.0 +20602,69,36,13,0.0 +20602,47,9.5,17,0.0 +20602,29,123.79,20,0.0 +20602,19,9.2,24,0.0 +20602,4,22,21,0.0 +20602,26,31.23,29,0.0 +20602,46,12,17,0.0 +20602,8,40,41,0.0 +20602,52,7,39,0.0 +20602,6,25,35,0.0 +20603,45,9.5,49,0.0 +20603,47,9.5,41,0.0 +20603,22,21,38,0.0 +20603,70,15,50,0.0 +20603,69,36,40,0.0 +20603,57,19.5,15,0.0 +20603,71,21.5,46,0.0 +20603,75,7.75,26,0.0 +20603,76,18,42,0.0 +20603,13,6,2,0.0 +20603,66,17,42,0.0 +20603,72,34.8,23,0.0 +20603,63,43.9,22,0.0 +20603,74,10,30,0.0 +20603,38,263.5,45,0.0 +20603,55,24,49,0.0 +20603,1,18,4,0.0 +20603,15,15.5,7,0.0 +20603,26,31.23,4,0.0 +20603,56,38,12,0.0 +20603,68,12.5,48,0.0 +20603,49,20,33,0.0 +20603,12,38,46,0.0 +20603,10,31,8,0.0 +20603,8,40,8,0.0 +20603,28,45.6,17,0.0 +20603,54,7.45,38,0.0 +20603,52,7,50,0.0 +20603,43,46,1,0.0 +20603,32,32,17,0.0 +20603,46,12,47,0.0 +20603,36,19,47,0.0 +20603,65,21.05,39,0.0 +20603,51,53,18,0.0 +20603,40,18.4,29,0.0 +20603,39,18,48,0.0 +20603,23,9,41,0.0 +20603,6,25,41,0.0 +20603,34,14,45,0.0 +20603,44,19.45,46,0.0 +20603,37,26,37,0.0 +20603,60,34,11,0.0 +20603,48,12.75,28,0.0 +20603,50,16.25,9,0.0 +20603,16,17.45,50,0.0 +20603,9,97,4,0.0 +20603,53,32.8,10,0.0 +20603,25,14,6,0.0 +20603,31,12.5,1,0.0 +20603,58,13.25,16,0.0 +20603,29,123.79,4,0.0 +20603,21,10,37,0.0 +20603,30,25.89,25,0.0 +20603,5,21.35,13,0.0 +20603,67,14,24,0.0 +20603,35,18,34,0.0 +20603,18,62.5,12,0.0 +20603,11,21,2,0.0 +20603,64,33.25,8,0.0 +20603,2,19,18,0.0 +20603,42,14,27,0.0 +20603,17,39,2,0.0 +20603,20,81,38,0.0 +20603,62,49.3,26,0.0 +20603,41,9.65,31,0.0 +20603,73,15,13,0.0 +20603,3,10,8,0.0 +20604,6,25,11,0.0 +20604,8,40,19,0.0 +20604,1,18,26,0.0 +20604,54,7.45,21,0.0 +20604,13,6,26,0.0 +20604,62,49.3,42,0.0 +20604,14,23.25,14,0.0 +20604,32,32,40,0.0 +20604,73,15,22,0.0 +20604,70,15,38,0.0 +20604,68,12.5,34,0.0 +20604,53,32.8,34,0.0 +20604,52,7,2,0.0 +20604,11,21,23,0.0 +20604,47,9.5,5,0.0 +20604,55,24,36,0.0 +20604,18,62.5,34,0.0 +20604,35,18,21,0.0 +20604,61,28.5,20,0.0 +20604,72,34.8,43,0.0 +20604,75,7.75,4,0.0 +20604,44,19.45,9,0.0 +20604,22,21,30,0.0 +20604,66,17,22,0.0 +20604,77,13,26,0.0 +20604,10,31,18,0.0 +20604,39,18,14,0.0 +20604,24,4.5,5,0.0 +20604,64,33.25,47,0.0 +20604,27,43.9,5,0.0 +20604,31,12.5,19,0.0 +20604,9,97,17,0.0 +20604,19,9.2,9,0.0 +20604,15,15.5,3,0.0 +20604,3,10,16,0.0 +20604,48,12.75,43,0.0 +20604,41,9.65,50,0.0 +20604,49,20,9,0.0 +20604,40,18.4,10,0.0 +20604,46,12,30,0.0 +20604,51,53,41,0.0 +20604,25,14,34,0.0 +20604,56,38,31,0.0 +20604,34,14,46,0.0 +20604,2,19,8,0.0 +20604,21,10,9,0.0 +20604,28,45.6,8,0.0 +20604,5,21.35,23,0.0 +20604,71,21.5,47,0.0 +20604,63,43.9,32,0.0 +20604,50,16.25,38,0.0 +20604,7,30,25,0.0 +20604,23,9,10,0.0 +20604,69,36,44,0.0 +20604,43,46,28,0.0 +20604,65,21.05,42,0.0 +20605,12,38,38,0.0 +20605,76,18,43,0.0 +20605,62,49.3,29,0.0 +20605,2,19,10,0.0 +20605,52,7,13,0.0 +20605,68,12.5,49,0.0 +20605,15,15.5,9,0.0 +20605,24,4.5,33,0.0 +20605,51,53,29,0.0 +20605,27,43.9,44,0.0 +20605,50,16.25,25,0.0 +20605,28,45.6,9,0.0 +20605,65,21.05,47,0.0 +20605,45,9.5,24,0.0 +20605,34,14,19,0.0 +20605,70,15,7,0.0 +20605,16,17.45,18,0.0 +20605,57,19.5,36,0.0 +20605,67,14,36,0.0 +20605,4,22,12,0.0 +20605,31,12.5,21,0.0 +20605,32,32,42,0.0 +20605,11,21,46,0.0 +20605,20,81,19,0.0 +20605,60,34,36,0.0 +20605,72,34.8,18,0.0 +20605,40,18.4,10,0.0 +20605,36,19,10,0.0 +20605,47,9.5,46,0.0 +20605,38,263.5,48,0.0 +20605,53,32.8,22,0.0 +20605,41,9.65,24,0.0 +20605,33,2.5,18,0.0 +20605,42,14,32,0.0 +20605,13,6,38,0.0 +20605,75,7.75,23,0.0 +20605,29,123.79,1,0.0 +20605,48,12.75,23,0.0 +20605,1,18,3,0.0 +20605,55,24,47,0.0 +20605,14,23.25,7,0.0 +20605,23,9,33,0.0 +20605,77,13,1,0.0 +20605,3,10,6,0.0 +20605,17,39,20,0.0 +20605,35,18,25,0.0 +20605,46,12,2,0.0 +20605,69,36,39,0.0 +20605,74,10,34,0.0 +20605,66,17,40,0.0 +20605,43,46,1,0.0 +20605,73,15,43,0.0 +20605,63,43.9,7,0.0 +20605,8,40,32,0.0 +20605,30,25.89,44,0.0 +20605,7,30,34,0.0 +20605,26,31.23,13,0.0 +20605,64,33.25,1,0.0 +20605,71,21.5,27,0.0 +20605,59,55,21,0.0 +20605,56,38,12,0.0 +20605,10,31,39,0.0 +20605,44,19.45,37,0.0 +20606,2,19,2,0.0 +20606,75,7.75,28,0.0 +20606,66,17,31,0.0 +20606,39,18,18,0.0 +20606,61,28.5,30,0.0 +20606,23,9,20,0.0 +20606,40,18.4,13,0.0 +20606,70,15,49,0.0 +20606,65,21.05,43,0.0 +20606,53,32.8,9,0.0 +20606,34,14,9,0.0 +20606,45,9.5,39,0.0 +20606,43,46,14,0.0 +20606,29,123.79,45,0.0 +20606,21,10,45,0.0 +20606,14,23.25,2,0.0 +20606,46,12,30,0.0 +20606,56,38,13,0.0 +20606,71,21.5,47,0.0 +20606,68,12.5,46,0.0 +20606,72,34.8,26,0.0 +20606,63,43.9,6,0.0 +20606,30,25.89,48,0.0 +20606,11,21,41,0.0 +20606,22,21,15,0.0 +20606,47,9.5,37,0.0 +20606,19,9.2,17,0.0 +20606,64,33.25,13,0.0 +20606,20,81,16,0.0 +20606,36,19,35,0.0 +20606,8,40,33,0.0 +20606,27,43.9,24,0.0 +20606,6,25,38,0.0 +20606,59,55,10,0.0 +20606,28,45.6,35,0.0 +20606,7,30,7,0.0 +20606,54,7.45,34,0.0 +20606,9,97,18,0.0 +20606,4,22,47,0.0 +20606,13,6,3,0.0 +20606,10,31,21,0.0 +20606,44,19.45,7,0.0 +20606,35,18,49,0.0 +20606,12,38,7,0.0 +20606,62,49.3,24,0.0 +20606,67,14,16,0.0 +20606,38,263.5,22,0.0 +20606,5,21.35,23,0.0 +20606,42,14,18,0.0 +20606,76,18,4,0.0 +20606,77,13,43,0.0 +20606,52,7,13,0.0 +20606,3,10,8,0.0 +20606,73,15,22,0.0 +20606,48,12.75,44,0.0 +20606,33,2.5,48,0.0 +20607,36,19,14,0.0 +20607,45,9.5,41,0.0 +20607,73,15,48,0.0 +20607,15,15.5,26,0.0 +20607,51,53,38,0.0 +20607,53,32.8,13,0.0 +20607,30,25.89,14,0.0 +20607,50,16.25,13,0.0 +20607,21,10,47,0.0 +20607,20,81,44,0.0 +20607,74,10,25,0.0 +20607,52,7,5,0.0 +20607,5,21.35,41,0.0 +20607,49,20,2,0.0 +20607,62,49.3,20,0.0 +20607,14,23.25,43,0.0 +20607,59,55,19,0.0 +20607,56,38,18,0.0 +20607,54,7.45,16,0.0 +20607,2,19,6,0.0 +20607,3,10,3,0.0 +20607,13,6,48,0.0 +20607,77,13,18,0.0 +20607,28,45.6,15,0.0 +20607,4,22,20,0.0 +20607,48,12.75,9,0.0 +20607,27,43.9,19,0.0 +20607,19,9.2,32,0.0 +20607,41,9.65,24,0.0 +20607,60,34,44,0.0 +20607,7,30,21,0.0 +20607,35,18,26,0.0 +20607,39,18,1,0.0 +20607,11,21,34,0.0 +20607,16,17.45,34,0.0 +20607,38,263.5,29,0.0 +20607,44,19.45,5,0.0 +20607,37,26,45,0.0 +20607,42,14,14,0.0 +20607,33,2.5,48,0.0 +20607,31,12.5,17,0.0 +20607,24,4.5,9,0.0 +20607,47,9.5,36,0.0 +20607,57,19.5,48,0.0 +20607,61,28.5,4,0.0 +20607,69,36,44,0.0 +20607,58,13.25,8,0.0 +20608,61,28.5,45,0.0 +20608,40,18.4,50,0.0 +20608,29,123.79,23,0.0 +20608,1,18,45,0.0 +20608,73,15,27,0.0 +20608,43,46,47,0.0 +20608,46,12,44,0.0 +20608,10,31,2,0.0 +20608,47,9.5,20,0.0 +20608,72,34.8,22,0.0 +20608,75,7.75,28,0.0 +20608,31,12.5,43,0.0 +20608,56,38,33,0.0 +20608,11,21,19,0.0 +20608,57,19.5,22,0.0 +20608,77,13,38,0.0 +20608,27,43.9,12,0.0 +20608,34,14,9,0.0 +20608,44,19.45,49,0.0 +20608,76,18,17,0.0 +20608,68,12.5,25,0.0 +20608,49,20,50,0.0 +20608,54,7.45,33,0.0 +20609,14,23.25,9,0.0 +20609,25,14,44,0.0 +20609,39,18,24,0.0 +20609,31,12.5,34,0.0 +20609,59,55,47,0.0 +20609,4,22,2,0.0 +20609,48,12.75,6,0.0 +20609,57,19.5,17,0.0 +20609,21,10,49,0.0 +20609,13,6,2,0.0 +20609,26,31.23,38,0.0 +20609,11,21,36,0.0 +20609,8,40,43,0.0 +20609,75,7.75,38,0.0 +20609,68,12.5,30,0.0 +20609,77,13,34,0.0 +20609,64,33.25,22,0.0 +20609,15,15.5,17,0.0 +20609,47,9.5,38,0.0 +20609,35,18,40,0.0 +20609,60,34,15,0.0 +20609,5,21.35,46,0.0 +20609,50,16.25,21,0.0 +20609,12,38,10,0.0 +20609,10,31,17,0.0 +20609,63,43.9,19,0.0 +20609,3,10,28,0.0 +20609,45,9.5,23,0.0 +20609,6,25,5,0.0 +20609,27,43.9,13,0.0 +20609,69,36,17,0.0 +20609,46,12,4,0.0 +20609,49,20,38,0.0 +20609,53,32.8,15,0.0 +20609,55,24,12,0.0 +20609,74,10,40,0.0 +20609,17,39,32,0.0 +20609,16,17.45,47,0.0 +20609,73,15,23,0.0 +20609,51,53,33,0.0 +20609,22,21,49,0.0 +20609,2,19,5,0.0 +20609,56,38,10,0.0 +20609,71,21.5,32,0.0 +20609,61,28.5,18,0.0 +20609,32,32,46,0.0 +20609,65,21.05,44,0.0 +20609,43,46,7,0.0 +20609,76,18,13,0.0 +20609,58,13.25,39,0.0 +20609,40,18.4,18,0.0 +20609,72,34.8,50,0.0 +20609,19,9.2,30,0.0 +20609,41,9.65,2,0.0 +20609,38,263.5,33,0.0 +20609,18,62.5,20,0.0 +20609,7,30,7,0.0 +20609,42,14,27,0.0 +20609,37,26,28,0.0 +20609,67,14,14,0.0 +20609,24,4.5,34,0.0 +20609,29,123.79,47,0.0 +20609,20,81,23,0.0 +20609,70,15,3,0.0 +20609,66,17,36,0.0 +20609,30,25.89,45,0.0 +20610,21,10,28,0.0 +20610,37,26,19,0.0 +20610,46,12,14,0.0 +20610,48,12.75,32,0.0 +20610,3,10,49,0.0 +20610,68,12.5,27,0.0 +20610,58,13.25,4,0.0 +20610,19,9.2,21,0.0 +20610,31,12.5,47,0.0 +20610,43,46,2,0.0 +20610,57,19.5,2,0.0 +20610,69,36,23,0.0 +20610,64,33.25,15,0.0 +20610,33,2.5,3,0.0 +20610,5,21.35,15,0.0 +20610,65,21.05,11,0.0 +20610,27,43.9,31,0.0 +20610,2,19,6,0.0 +20610,75,7.75,34,0.0 +20610,49,20,43,0.0 +20610,70,15,19,0.0 +20610,17,39,49,0.0 +20610,35,18,20,0.0 +20610,61,28.5,30,0.0 +20610,50,16.25,41,0.0 +20610,42,14,27,0.0 +20611,26,31.23,26,0.0 +20611,3,10,22,0.0 +20611,57,19.5,2,0.0 +20611,12,38,1,0.0 +20611,73,15,12,0.0 +20611,18,62.5,22,0.0 +20611,44,19.45,9,0.0 +20611,65,21.05,5,0.0 +20611,69,36,28,0.0 +20611,34,14,1,0.0 +20611,6,25,5,0.0 +20611,74,10,10,0.0 +20611,23,9,21,0.0 +20611,11,21,23,0.0 +20611,48,12.75,6,0.0 +20612,46,12,33,0.0 +20612,54,7.45,29,0.0 +20612,19,9.2,25,0.0 +20612,50,16.25,19,0.0 +20612,27,43.9,36,0.0 +20612,66,17,33,0.0 +20612,43,46,47,0.0 +20612,34,14,24,0.0 +20612,48,12.75,50,0.0 +20612,51,53,4,0.0 +20612,65,21.05,7,0.0 +20612,72,34.8,35,0.0 +20612,40,18.4,19,0.0 +20612,3,10,7,0.0 +20612,38,263.5,24,0.0 +20612,35,18,33,0.0 +20612,8,40,7,0.0 +20612,64,33.25,21,0.0 +20612,10,31,32,0.0 +20612,73,15,9,0.0 +20612,29,123.79,39,0.0 +20612,5,21.35,43,0.0 +20612,9,97,45,0.0 +20612,16,17.45,26,0.0 +20612,17,39,48,0.0 +20612,22,21,50,0.0 +20612,7,30,2,0.0 +20612,4,22,10,0.0 +20612,1,18,32,0.0 +20612,18,62.5,10,0.0 +20612,32,32,9,0.0 +20612,28,45.6,5,0.0 +20612,47,9.5,40,0.0 +20612,14,23.25,8,0.0 +20612,41,9.65,7,0.0 +20612,11,21,42,0.0 +20612,2,19,19,0.0 +20612,21,10,40,0.0 +20612,36,19,15,0.0 +20612,31,12.5,4,0.0 +20612,49,20,39,0.0 +20612,33,2.5,9,0.0 +20612,53,32.8,32,0.0 +20613,33,2.5,46,0.0 +20613,39,18,19,0.0 +20613,50,16.25,5,0.0 +20613,69,36,36,0.0 +20613,49,20,48,0.0 +20614,25,14,7,0.0 +20614,21,10,7,0.0 +20614,37,26,36,0.0 +20614,74,10,44,0.0 +20614,76,18,43,0.0 +20614,15,15.5,9,0.0 +20614,71,21.5,33,0.0 +20614,29,123.79,24,0.0 +20614,16,17.45,12,0.0 +20614,72,34.8,29,0.0 +20615,51,53,3,0.0 +20615,43,46,46,0.0 +20615,4,22,20,0.0 +20615,73,15,38,0.0 +20615,59,55,38,0.0 +20615,58,13.25,23,0.0 +20615,18,62.5,3,0.0 +20615,31,12.5,39,0.0 +20615,75,7.75,20,0.0 +20615,42,14,33,0.0 +20615,7,30,32,0.0 +20615,5,21.35,17,0.0 +20615,14,23.25,8,0.0 +20615,38,263.5,29,0.0 +20615,27,43.9,5,0.0 +20615,66,17,12,0.0 +20615,76,18,44,0.0 +20615,61,28.5,20,0.0 +20615,10,31,25,0.0 +20615,29,123.79,26,0.0 +20615,41,9.65,22,0.0 +20615,69,36,13,0.0 +20615,65,21.05,16,0.0 +20615,22,21,10,0.0 +20615,49,20,12,0.0 +20615,21,10,27,0.0 +20615,16,17.45,25,0.0 +20615,13,6,20,0.0 +20615,23,9,43,0.0 +20615,30,25.89,37,0.0 +20615,55,24,48,0.0 +20615,24,4.5,18,0.0 +20615,1,18,41,0.0 +20615,39,18,42,0.0 +20615,33,2.5,45,0.0 +20615,3,10,16,0.0 +20615,50,16.25,50,0.0 +20615,28,45.6,42,0.0 +20615,46,12,42,0.0 +20615,77,13,16,0.0 +20615,2,19,44,0.0 +20615,68,12.5,10,0.0 +20615,60,34,43,0.0 +20615,19,9.2,41,0.0 +20615,63,43.9,46,0.0 +20615,47,9.5,14,0.0 +20615,44,19.45,14,0.0 +20615,56,38,42,0.0 +20615,54,7.45,47,0.0 +20615,62,49.3,26,0.0 +20615,37,26,26,0.0 +20615,57,19.5,34,0.0 +20615,26,31.23,7,0.0 +20615,53,32.8,35,0.0 +20615,67,14,20,0.0 +20615,52,7,13,0.0 +20615,17,39,32,0.0 +20615,35,18,41,0.0 +20615,71,21.5,49,0.0 +20615,11,21,9,0.0 +20615,20,81,37,0.0 +20615,48,12.75,38,0.0 +20615,8,40,42,0.0 +20615,74,10,32,0.0 +20615,45,9.5,49,0.0 +20615,9,97,21,0.0 +20616,28,45.6,35,0.0 +20616,61,28.5,13,0.0 +20616,56,38,34,0.0 +20616,25,14,14,0.0 +20616,59,55,28,0.0 +20617,59,55,35,0.0 +20617,39,18,47,0.0 +20617,4,22,48,0.0 +20617,40,18.4,17,0.0 +20617,16,17.45,32,0.0 +20617,17,39,30,0.0 +20617,23,9,23,0.0 +20617,64,33.25,38,0.0 +20617,14,23.25,22,0.0 +20617,29,123.79,49,0.0 +20617,75,7.75,43,0.0 +20617,8,40,41,0.0 +20617,48,12.75,16,0.0 +20617,53,32.8,8,0.0 +20617,36,19,19,0.0 +20617,49,20,47,0.0 +20617,44,19.45,16,0.0 +20617,15,15.5,11,0.0 +20617,2,19,19,0.0 +20617,10,31,30,0.0 +20617,24,4.5,43,0.0 +20617,28,45.6,20,0.0 +20617,32,32,3,0.0 +20617,21,10,8,0.0 +20617,12,38,43,0.0 +20617,69,36,38,0.0 +20617,31,12.5,2,0.0 +20617,73,15,40,0.0 +20617,19,9.2,30,0.0 +20617,20,81,24,0.0 +20617,60,34,33,0.0 +20617,22,21,47,0.0 +20617,47,9.5,18,0.0 +20617,46,12,45,0.0 +20617,57,19.5,36,0.0 +20617,71,21.5,36,0.0 +20617,1,18,41,0.0 +20617,43,46,18,0.0 +20617,33,2.5,44,0.0 +20617,6,25,35,0.0 +20617,37,26,43,0.0 +20617,67,14,5,0.0 +20617,42,14,1,0.0 +20617,72,34.8,10,0.0 +20617,38,263.5,29,0.0 +20617,7,30,20,0.0 +20617,74,10,2,0.0 +20617,5,21.35,27,0.0 +20617,68,12.5,19,0.0 +20617,54,7.45,2,0.0 +20617,41,9.65,36,0.0 +20617,11,21,38,0.0 +20617,3,10,44,0.0 +20617,51,53,7,0.0 +20617,13,6,8,0.0 +20617,76,18,15,0.0 +20617,77,13,30,0.0 +20617,61,28.5,11,0.0 +20617,25,14,3,0.0 +20617,9,97,32,0.0 +20617,66,17,25,0.0 +20617,35,18,24,0.0 +20617,45,9.5,9,0.0 +20617,65,21.05,25,0.0 +20617,30,25.89,42,0.0 +20617,50,16.25,3,0.0 +20617,52,7,9,0.0 +20617,63,43.9,23,0.0 +20617,55,24,5,0.0 +20617,56,38,32,0.0 +20617,58,13.25,2,0.0 +20617,27,43.9,34,0.0 +20617,34,14,1,0.0 +20617,26,31.23,6,0.0 +20617,70,15,21,0.0 +20618,55,24,35,0.0 +20618,27,43.9,20,0.0 +20618,49,20,3,0.0 +20618,9,97,30,0.0 +20618,42,14,44,0.0 +20618,44,19.45,12,0.0 +20618,35,18,39,0.0 +20618,60,34,5,0.0 +20618,32,32,23,0.0 +20618,64,33.25,29,0.0 +20618,4,22,36,0.0 +20618,72,34.8,19,0.0 +20618,63,43.9,23,0.0 +20618,70,15,6,0.0 +20618,74,10,17,0.0 +20618,66,17,26,0.0 +20618,47,9.5,17,0.0 +20618,48,12.75,48,0.0 +20618,71,21.5,48,0.0 +20618,67,14,22,0.0 +20618,18,62.5,43,0.0 +20618,43,46,44,0.0 +20618,7,30,48,0.0 +20618,12,38,50,0.0 +20618,31,12.5,33,0.0 +20618,16,17.45,27,0.0 +20618,38,263.5,31,0.0 +20618,6,25,48,0.0 +20618,53,32.8,9,0.0 +20618,13,6,20,0.0 +20618,29,123.79,9,0.0 +20618,58,13.25,50,0.0 +20618,51,53,35,0.0 +20618,62,49.3,2,0.0 +20618,73,15,17,0.0 +20618,76,18,16,0.0 +20618,5,21.35,14,0.0 +20618,65,21.05,36,0.0 +20618,17,39,49,0.0 +20618,10,31,21,0.0 +20618,11,21,14,0.0 +20618,69,36,44,0.0 +20618,56,38,33,0.0 +20618,46,12,39,0.0 +20618,57,19.5,21,0.0 +20618,20,81,39,0.0 +20618,24,4.5,28,0.0 +20618,3,10,34,0.0 +20618,54,7.45,46,0.0 +20618,75,7.75,8,0.0 +20618,50,16.25,24,0.0 +20618,36,19,22,0.0 +20618,52,7,42,0.0 +20618,61,28.5,10,0.0 +20618,26,31.23,42,0.0 +20618,40,18.4,48,0.0 +20618,19,9.2,14,0.0 +20618,23,9,14,0.0 +20618,37,26,33,0.0 +20618,15,15.5,10,0.0 +20618,8,40,6,0.0 +20618,14,23.25,6,0.0 +20618,59,55,37,0.0 +20618,1,18,35,0.0 +20618,30,25.89,33,0.0 +20618,45,9.5,19,0.0 +20618,22,21,10,0.0 +20618,41,9.65,15,0.0 +20618,68,12.5,31,0.0 +20619,77,13,33,0.0 +20619,16,17.45,4,0.0 +20619,28,45.6,41,0.0 +20619,3,10,15,0.0 +20619,42,14,32,0.0 +20619,67,14,4,0.0 +20619,6,25,48,0.0 +20619,57,19.5,45,0.0 +20619,9,97,41,0.0 +20619,66,17,28,0.0 +20619,60,34,3,0.0 +20619,52,7,43,0.0 +20619,25,14,1,0.0 +20619,43,46,21,0.0 +20619,68,12.5,17,0.0 +20619,50,16.25,15,0.0 +20619,15,15.5,39,0.0 +20619,32,32,17,0.0 +20619,47,9.5,34,0.0 +20619,63,43.9,12,0.0 +20619,2,19,21,0.0 +20619,19,9.2,11,0.0 +20619,41,9.65,21,0.0 +20619,51,53,8,0.0 +20619,76,18,39,0.0 +20619,8,40,40,0.0 +20619,70,15,17,0.0 +20619,23,9,49,0.0 +20619,31,12.5,33,0.0 +20619,34,14,22,0.0 +20619,71,21.5,2,0.0 +20619,33,2.5,9,0.0 +20619,35,18,21,0.0 +20619,1,18,14,0.0 +20619,45,9.5,1,0.0 +20619,40,18.4,9,0.0 +20619,69,36,35,0.0 +20619,58,13.25,45,0.0 +20619,56,38,45,0.0 +20619,39,18,16,0.0 +20619,21,10,41,0.0 +20619,75,7.75,14,0.0 +20619,4,22,45,0.0 +20619,7,30,8,0.0 +20619,61,28.5,20,0.0 +20619,5,21.35,43,0.0 +20619,38,263.5,50,0.0 +20619,30,25.89,20,0.0 +20619,46,12,6,0.0 +20619,18,62.5,13,0.0 +20619,44,19.45,23,0.0 +20619,72,34.8,34,0.0 +20619,20,81,45,0.0 +20619,27,43.9,47,0.0 +20619,26,31.23,18,0.0 +20619,62,49.3,34,0.0 +20619,22,21,36,0.0 +20619,48,12.75,15,0.0 +20619,54,7.45,18,0.0 +20619,55,24,41,0.0 +20619,49,20,3,0.0 +20619,14,23.25,4,0.0 +20619,29,123.79,35,0.0 +20619,74,10,12,0.0 +20619,53,32.8,47,0.0 +20619,13,6,12,0.0 +20619,37,26,31,0.0 +20619,10,31,44,0.0 +20619,65,21.05,27,0.0 +20619,64,33.25,40,0.0 +20619,11,21,34,0.0 +20619,24,4.5,25,0.0 +20620,70,15,43,0.0 +20620,25,14,11,0.0 +20620,41,9.65,11,0.0 +20620,30,25.89,45,0.0 +20620,43,46,25,0.0 +20620,28,45.6,39,0.0 +20620,6,25,43,0.0 +20621,1,18,34,0.0 +20621,15,15.5,3,0.0 +20621,48,12.75,24,0.0 +20621,69,36,40,0.0 +20621,36,19,50,0.0 +20621,49,20,7,0.0 +20621,21,10,10,0.0 +20621,54,7.45,7,0.0 +20621,64,33.25,37,0.0 +20621,65,21.05,43,0.0 +20621,22,21,29,0.0 +20621,40,18.4,5,0.0 +20621,38,263.5,29,0.0 +20621,20,81,49,0.0 +20621,6,25,10,0.0 +20621,7,30,20,0.0 +20621,29,123.79,47,0.0 +20621,24,4.5,27,0.0 +20621,68,12.5,37,0.0 +20621,18,62.5,25,0.0 +20621,70,15,30,0.0 +20621,50,16.25,16,0.0 +20621,52,7,15,0.0 +20621,25,14,24,0.0 +20622,74,10,17,0.0 +20622,35,18,17,0.0 +20622,61,28.5,14,0.0 +20622,56,38,7,0.0 +20622,21,10,38,0.0 +20622,3,10,25,0.0 +20622,29,123.79,1,0.0 +20622,71,21.5,9,0.0 +20622,14,23.25,37,0.0 +20622,54,7.45,6,0.0 +20622,11,21,23,0.0 +20622,17,39,34,0.0 +20622,76,18,6,0.0 +20622,47,9.5,39,0.0 +20622,46,12,4,0.0 +20622,45,9.5,35,0.0 +20622,73,15,17,0.0 +20622,23,9,6,0.0 +20622,12,38,48,0.0 +20622,75,7.75,29,0.0 +20622,22,21,22,0.0 +20622,34,14,5,0.0 +20622,18,62.5,36,0.0 +20622,64,33.25,33,0.0 +20622,60,34,5,0.0 +20622,20,81,20,0.0 +20622,67,14,44,0.0 +20622,26,31.23,39,0.0 +20622,19,9.2,43,0.0 +20622,30,25.89,33,0.0 +20622,37,26,24,0.0 +20622,8,40,17,0.0 +20622,62,49.3,23,0.0 +20622,77,13,34,0.0 +20622,5,21.35,26,0.0 +20622,16,17.45,32,0.0 +20623,44,19.45,1,0.0 +20623,25,14,11,0.0 +20623,8,40,43,0.0 +20623,41,9.65,47,0.0 +20623,22,21,26,0.0 +20623,67,14,47,0.0 +20623,33,2.5,4,0.0 +20623,28,45.6,6,0.0 +20623,37,26,11,0.0 +20624,29,123.79,24,0.0 +20624,60,34,3,0.0 +20624,32,32,20,0.0 +20624,18,62.5,12,0.0 +20624,63,43.9,16,0.0 +20624,31,12.5,26,0.0 +20624,55,24,17,0.0 +20624,20,81,27,0.0 +20624,61,28.5,8,0.0 +20624,76,18,34,0.0 +20624,43,46,36,0.0 +20624,75,7.75,11,0.0 +20624,66,17,15,0.0 +20624,65,21.05,36,0.0 +20624,70,15,35,0.0 +20624,56,38,5,0.0 +20624,40,18.4,34,0.0 +20624,36,19,48,0.0 +20624,48,12.75,30,0.0 +20624,13,6,8,0.0 +20624,45,9.5,31,0.0 +20624,33,2.5,5,0.0 +20624,41,9.65,14,0.0 +20624,22,21,41,0.0 +20624,28,45.6,22,0.0 +20625,36,19,40,0.0 +20625,35,18,10,0.0 +20625,68,12.5,14,0.0 +20625,67,14,41,0.0 +20625,37,26,42,0.0 +20625,43,46,20,0.0 +20625,53,32.8,48,0.0 +20625,50,16.25,33,0.0 +20625,52,7,19,0.0 +20625,48,12.75,3,0.0 +20625,47,9.5,5,0.0 +20625,34,14,4,0.0 +20625,40,18.4,15,0.0 +20625,55,24,40,0.0 +20625,54,7.45,33,0.0 +20625,29,123.79,23,0.0 +20625,76,18,25,0.0 +20626,44,19.45,35,0.0 +20626,61,28.5,10,0.0 +20626,22,21,8,0.0 +20626,74,10,28,0.0 +20626,30,25.89,19,0.0 +20626,35,18,7,0.0 +20626,58,13.25,30,0.0 +20626,75,7.75,4,0.0 +20626,72,34.8,6,0.0 +20626,12,38,20,0.0 +20626,66,17,31,0.0 +20626,34,14,49,0.0 +20626,63,43.9,31,0.0 +20626,51,53,38,0.0 +20626,69,36,25,0.0 +20626,71,21.5,16,0.0 +20626,1,18,18,0.0 +20626,59,55,5,0.0 +20626,24,4.5,28,0.0 +20626,48,12.75,11,0.0 +20626,27,43.9,26,0.0 +20626,14,23.25,17,0.0 +20626,16,17.45,19,0.0 +20626,3,10,12,0.0 +20626,23,9,47,0.0 +20626,10,31,33,0.0 +20626,19,9.2,18,0.0 +20626,5,21.35,23,0.0 +20626,68,12.5,31,0.0 +20626,40,18.4,27,0.0 +20626,64,33.25,21,0.0 +20626,29,123.79,7,0.0 +20626,18,62.5,9,0.0 +20626,2,19,16,0.0 +20626,76,18,15,0.0 +20626,9,97,23,0.0 +20626,7,30,11,0.0 +20626,6,25,12,0.0 +20626,55,24,49,0.0 +20627,73,15,39,0.0 +20627,63,43.9,42,0.0 +20627,60,34,6,0.0 +20627,13,6,22,0.0 +20627,22,21,32,0.0 +20627,11,21,7,0.0 +20627,34,14,35,0.0 +20627,14,23.25,45,0.0 +20627,6,25,18,0.0 +20628,24,4.5,14,0.0 +20628,54,7.45,3,0.0 +20628,41,9.65,22,0.0 +20628,45,9.5,35,0.0 +20628,35,18,32,0.0 +20628,61,28.5,47,0.0 +20628,59,55,50,0.0 +20628,29,123.79,44,0.0 +20628,39,18,28,0.0 +20628,62,49.3,26,0.0 +20628,43,46,42,0.0 +20628,53,32.8,8,0.0 +20628,11,21,36,0.0 +20628,28,45.6,16,0.0 +20628,51,53,12,0.0 +20628,36,19,23,0.0 +20628,47,9.5,42,0.0 +20628,1,18,28,0.0 +20628,67,14,11,0.0 +20628,20,81,35,0.0 +20628,58,13.25,10,0.0 +20628,64,33.25,15,0.0 +20628,25,14,29,0.0 +20628,46,12,39,0.0 +20628,18,62.5,10,0.0 +20628,73,15,33,0.0 +20628,32,32,25,0.0 +20628,8,40,17,0.0 +20628,34,14,29,0.0 +20628,55,24,21,0.0 +20628,4,22,11,0.0 +20628,7,30,45,0.0 +20628,42,14,44,0.0 +20628,50,16.25,34,0.0 +20628,63,43.9,32,0.0 +20628,77,13,19,0.0 +20628,71,21.5,27,0.0 +20628,70,15,5,0.0 +20628,69,36,28,0.0 +20628,37,26,29,0.0 +20628,21,10,38,0.0 +20628,72,34.8,2,0.0 +20628,31,12.5,49,0.0 +20628,40,18.4,18,0.0 +20628,22,21,19,0.0 +20628,10,31,10,0.0 +20628,19,9.2,42,0.0 +20628,52,7,39,0.0 +20628,75,7.75,21,0.0 +20628,56,38,3,0.0 +20628,12,38,8,0.0 +20628,30,25.89,19,0.0 +20628,23,9,45,0.0 +20628,38,263.5,9,0.0 +20628,74,10,23,0.0 +20628,76,18,21,0.0 +20628,17,39,24,0.0 +20628,16,17.45,37,0.0 +20628,3,10,23,0.0 +20628,26,31.23,42,0.0 +20628,49,20,3,0.0 +20628,15,15.5,7,0.0 +20628,68,12.5,50,0.0 +20628,2,19,31,0.0 +20628,44,19.45,8,0.0 +20628,57,19.5,37,0.0 +20628,66,17,46,0.0 +20628,48,12.75,11,0.0 +20628,27,43.9,48,0.0 +20628,14,23.25,4,0.0 +20628,6,25,4,0.0 +20628,60,34,44,0.0 +20628,9,97,25,0.0 +20628,65,21.05,39,0.0 +20628,5,21.35,6,0.0 +20629,41,9.65,15,0.0 +20629,46,12,20,0.0 +20629,7,30,24,0.0 +20629,77,13,42,0.0 +20629,25,14,10,0.0 +20629,23,9,28,0.0 +20629,48,12.75,17,0.0 +20629,28,45.6,3,0.0 +20629,17,39,24,0.0 +20629,40,18.4,36,0.0 +20629,71,21.5,40,0.0 +20629,59,55,16,0.0 +20629,60,34,32,0.0 +20629,67,14,17,0.0 +20629,65,21.05,23,0.0 +20629,15,15.5,5,0.0 +20629,56,38,34,0.0 +20629,57,19.5,37,0.0 +20629,20,81,1,0.0 +20629,8,40,7,0.0 +20629,22,21,3,0.0 +20629,18,62.5,36,0.0 +20629,34,14,1,0.0 +20629,70,15,29,0.0 +20629,39,18,21,0.0 +20629,12,38,10,0.0 +20629,29,123.79,37,0.0 +20629,1,18,10,0.0 +20629,55,24,11,0.0 +20629,50,16.25,11,0.0 +20629,74,10,36,0.0 +20629,45,9.5,3,0.0 +20629,61,28.5,12,0.0 +20629,52,7,39,0.0 +20629,66,17,26,0.0 +20629,30,25.89,18,0.0 +20629,19,9.2,40,0.0 +20629,5,21.35,3,0.0 +20629,76,18,12,0.0 +20629,69,36,29,0.0 +20629,49,20,48,0.0 +20629,54,7.45,29,0.0 +20629,68,12.5,36,0.0 +20629,13,6,47,0.0 +20630,50,16.25,11,0.0 +20630,60,34,29,0.0 +20630,33,2.5,21,0.0 +20630,27,43.9,31,0.0 +20630,41,9.65,41,0.0 +20630,59,55,30,0.0 +20630,43,46,20,0.0 +20630,35,18,34,0.0 +20630,29,123.79,12,0.0 +20630,31,12.5,34,0.0 +20630,76,18,22,0.0 +20630,20,81,22,0.0 +20630,48,12.75,17,0.0 +20630,17,39,35,0.0 +20630,71,21.5,29,0.0 +20630,56,38,12,0.0 +20630,57,19.5,42,0.0 +20630,32,32,23,0.0 +20630,64,33.25,37,0.0 +20630,28,45.6,16,0.0 +20630,13,6,10,0.0 +20630,25,14,26,0.0 +20630,24,4.5,20,0.0 +20630,2,19,43,0.0 +20630,69,36,5,0.0 +20630,21,10,35,0.0 +20630,73,15,50,0.0 +20630,62,49.3,25,0.0 +20630,46,12,42,0.0 +20630,38,263.5,12,0.0 +20630,8,40,1,0.0 +20630,47,9.5,27,0.0 +20630,4,22,41,0.0 +20630,67,14,44,0.0 +20630,51,53,9,0.0 +20630,23,9,16,0.0 +20630,52,7,22,0.0 +20630,36,19,19,0.0 +20630,54,7.45,15,0.0 +20630,12,38,41,0.0 +20630,74,10,8,0.0 +20630,34,14,3,0.0 +20630,75,7.75,16,0.0 +20630,30,25.89,38,0.0 +20630,26,31.23,22,0.0 +20630,45,9.5,26,0.0 +20630,65,21.05,32,0.0 +20630,39,18,25,0.0 +20630,63,43.9,42,0.0 +20630,19,9.2,47,0.0 +20630,15,15.5,45,0.0 +20630,5,21.35,21,0.0 +20630,44,19.45,13,0.0 +20630,42,14,32,0.0 +20630,61,28.5,43,0.0 +20630,3,10,28,0.0 +20630,68,12.5,47,0.0 +20630,37,26,45,0.0 +20630,77,13,31,0.0 +20630,18,62.5,36,0.0 +20630,1,18,40,0.0 +20630,6,25,6,0.0 +20630,16,17.45,37,0.0 +20630,10,31,36,0.0 +20630,14,23.25,36,0.0 +20630,66,17,46,0.0 +20630,7,30,33,0.0 +20630,72,34.8,23,0.0 +20631,56,38,15,0.0 +20631,55,24,12,0.0 +20631,25,14,42,0.0 +20631,4,22,17,0.0 +20631,64,33.25,20,0.0 +20631,40,18.4,19,0.0 +20631,13,6,33,0.0 +20631,29,123.79,18,0.0 +20631,72,34.8,29,0.0 +20631,20,81,15,0.0 +20631,38,263.5,8,0.0 +20631,71,21.5,45,0.0 +20631,66,17,25,0.0 +20631,52,7,38,0.0 +20631,45,9.5,14,0.0 +20631,77,13,31,0.0 +20631,17,39,37,0.0 +20631,63,43.9,33,0.0 +20631,9,97,13,0.0 +20631,30,25.89,24,0.0 +20631,75,7.75,48,0.0 +20631,50,16.25,5,0.0 +20631,67,14,1,0.0 +20631,46,12,6,0.0 +20631,43,46,41,0.0 +20631,48,12.75,13,0.0 +20631,6,25,24,0.0 +20631,49,20,39,0.0 +20631,65,21.05,39,0.0 +20632,18,62.5,45,0.0 +20632,28,45.6,25,0.0 +20632,64,33.25,10,0.0 +20632,43,46,44,0.0 +20632,23,9,35,0.0 +20632,56,38,18,0.0 +20632,71,21.5,10,0.0 +20632,57,19.5,45,0.0 +20632,74,10,29,0.0 +20632,68,12.5,48,0.0 +20632,10,31,43,0.0 +20632,59,55,7,0.0 +20632,9,97,2,0.0 +20632,38,263.5,42,0.0 +20632,34,14,4,0.0 +20632,26,31.23,15,0.0 +20632,36,19,11,0.0 +20632,25,14,42,0.0 +20632,66,17,23,0.0 +20632,5,21.35,39,0.0 +20632,61,28.5,50,0.0 +20632,17,39,18,0.0 +20632,15,15.5,43,0.0 +20632,75,7.75,1,0.0 +20632,20,81,48,0.0 +20632,12,38,30,0.0 +20632,63,43.9,31,0.0 +20632,42,14,5,0.0 +20632,55,24,32,0.0 +20632,73,15,11,0.0 +20632,35,18,4,0.0 +20632,3,10,25,0.0 +20632,41,9.65,3,0.0 +20632,32,32,1,0.0 +20632,46,12,22,0.0 +20632,65,21.05,36,0.0 +20632,40,18.4,31,0.0 +20632,49,20,44,0.0 +20632,51,53,46,0.0 +20632,14,23.25,44,0.0 +20632,19,9.2,4,0.0 +20632,44,19.45,38,0.0 +20632,6,25,32,0.0 +20632,22,21,5,0.0 +20632,37,26,24,0.0 +20632,58,13.25,16,0.0 +20632,54,7.45,40,0.0 +20632,47,9.5,29,0.0 +20632,13,6,3,0.0 +20632,27,43.9,41,0.0 +20632,30,25.89,26,0.0 +20632,16,17.45,48,0.0 +20633,38,263.5,27,0.0 +20633,18,62.5,6,0.0 +20633,62,49.3,25,0.0 +20633,24,4.5,5,0.0 +20633,71,21.5,31,0.0 +20633,65,21.05,32,0.0 +20633,23,9,1,0.0 +20633,9,97,35,0.0 +20633,52,7,35,0.0 +20633,25,14,14,0.0 +20633,7,30,2,0.0 +20633,50,16.25,5,0.0 +20633,36,19,30,0.0 +20633,63,43.9,41,0.0 +20633,68,12.5,11,0.0 +20633,59,55,22,0.0 +20633,47,9.5,48,0.0 +20633,51,53,28,0.0 +20633,4,22,44,0.0 +20633,45,9.5,20,0.0 +20633,77,13,25,0.0 +20633,19,9.2,32,0.0 +20633,60,34,11,0.0 +20633,29,123.79,48,0.0 +20633,27,43.9,44,0.0 +20633,3,10,16,0.0 +20633,56,38,49,0.0 +20633,49,20,5,0.0 +20633,48,12.75,8,0.0 +20633,55,24,5,0.0 +20633,34,14,13,0.0 +20633,32,32,23,0.0 +20633,54,7.45,37,0.0 +20633,74,10,11,0.0 +20633,53,32.8,46,0.0 +20633,70,15,17,0.0 +20633,73,15,40,0.0 +20634,7,30,40,0.0 +20634,68,12.5,9,0.0 +20634,72,34.8,37,0.0 +20634,11,21,34,0.0 +20634,64,33.25,38,0.0 +20634,74,10,2,0.0 +20635,49,20,46,0.0 +20635,37,26,3,0.0 +20635,9,97,16,0.0 +20635,13,6,40,0.0 +20635,3,10,19,0.0 +20635,66,17,41,0.0 +20635,25,14,14,0.0 +20635,39,18,50,0.0 +20635,58,13.25,45,0.0 +20635,53,32.8,20,0.0 +20635,70,15,29,0.0 +20635,50,16.25,3,0.0 +20635,18,62.5,25,0.0 +20635,31,12.5,6,0.0 +20635,60,34,22,0.0 +20635,65,21.05,18,0.0 +20635,22,21,23,0.0 +20635,28,45.6,27,0.0 +20635,40,18.4,22,0.0 +20635,38,263.5,8,0.0 +20635,73,15,12,0.0 +20635,30,25.89,10,0.0 +20635,52,7,46,0.0 +20635,41,9.65,3,0.0 +20635,4,22,48,0.0 +20635,27,43.9,39,0.0 +20635,47,9.5,23,0.0 +20635,74,10,20,0.0 +20635,59,55,24,0.0 +20635,51,53,43,0.0 +20635,6,25,20,0.0 +20635,24,4.5,5,0.0 +20635,14,23.25,9,0.0 +20635,62,49.3,17,0.0 +20635,32,32,5,0.0 +20635,57,19.5,49,0.0 +20635,67,14,36,0.0 +20635,19,9.2,29,0.0 +20635,54,7.45,6,0.0 +20635,42,14,4,0.0 +20635,16,17.45,31,0.0 +20635,44,19.45,14,0.0 +20635,43,46,34,0.0 +20635,15,15.5,14,0.0 +20635,17,39,42,0.0 +20635,33,2.5,10,0.0 +20635,45,9.5,19,0.0 +20635,63,43.9,29,0.0 +20635,2,19,48,0.0 +20635,8,40,50,0.0 +20635,75,7.75,23,0.0 +20635,69,36,11,0.0 +20635,7,30,39,0.0 +20635,64,33.25,36,0.0 +20635,61,28.5,29,0.0 +20635,20,81,2,0.0 +20635,71,21.5,47,0.0 +20635,68,12.5,27,0.0 +20635,48,12.75,18,0.0 +20635,77,13,18,0.0 +20635,35,18,38,0.0 +20635,12,38,34,0.0 +20635,10,31,4,0.0 +20635,26,31.23,23,0.0 +20635,1,18,4,0.0 +20636,52,7,18,0.0 +20636,5,21.35,37,0.0 +20636,69,36,44,0.0 +20636,15,15.5,29,0.0 +20637,16,17.45,19,0.0 +20637,17,39,26,0.0 +20637,51,53,24,0.0 +20637,26,31.23,32,0.0 +20637,64,33.25,5,0.0 +20637,22,21,48,0.0 +20637,39,18,19,0.0 +20637,38,263.5,36,0.0 +20637,6,25,18,0.0 +20637,68,12.5,7,0.0 +20637,9,97,36,0.0 +20637,31,12.5,1,0.0 +20637,27,43.9,14,0.0 +20637,46,12,27,0.0 +20637,15,15.5,28,0.0 +20637,12,38,34,0.0 +20637,29,123.79,17,0.0 +20637,33,2.5,5,0.0 +20637,55,24,23,0.0 +20637,14,23.25,6,0.0 +20637,48,12.75,9,0.0 +20637,47,9.5,20,0.0 +20637,35,18,50,0.0 +20637,67,14,21,0.0 +20637,7,30,47,0.0 +20637,32,32,9,0.0 +20637,11,21,16,0.0 +20637,58,13.25,47,0.0 +20637,76,18,27,0.0 +20637,24,4.5,28,0.0 +20637,13,6,15,0.0 +20637,50,16.25,3,0.0 +20637,40,18.4,21,0.0 +20637,53,32.8,14,0.0 +20637,34,14,19,0.0 +20637,49,20,18,0.0 +20637,69,36,47,0.0 +20637,2,19,2,0.0 +20637,60,34,35,0.0 +20637,41,9.65,1,0.0 +20638,41,9.65,21,0.0 +20638,8,40,50,0.0 +20638,21,10,27,0.0 +20638,4,22,21,0.0 +20638,46,12,40,0.0 +20638,75,7.75,29,0.0 +20638,11,21,36,0.0 +20638,58,13.25,20,0.0 +20638,47,9.5,4,0.0 +20638,64,33.25,11,0.0 +20638,6,25,27,0.0 +20638,60,34,48,0.0 +20638,69,36,28,0.0 +20638,31,12.5,42,0.0 +20638,54,7.45,41,0.0 +20638,25,14,13,0.0 +20638,14,23.25,33,0.0 +20638,15,15.5,31,0.0 +20638,76,18,46,0.0 +20638,53,32.8,5,0.0 +20638,1,18,44,0.0 +20638,36,19,11,0.0 +20638,48,12.75,27,0.0 +20638,37,26,25,0.0 +20638,35,18,23,0.0 +20638,63,43.9,28,0.0 +20638,12,38,9,0.0 +20638,43,46,44,0.0 +20638,74,10,43,0.0 +20638,22,21,22,0.0 +20638,66,17,35,0.0 +20638,3,10,20,0.0 +20638,9,97,29,0.0 +20638,51,53,39,0.0 +20638,13,6,3,0.0 +20638,23,9,30,0.0 +20638,42,14,5,0.0 +20638,65,21.05,30,0.0 +20638,68,12.5,17,0.0 +20638,38,263.5,45,0.0 +20638,49,20,18,0.0 +20638,62,49.3,47,0.0 +20638,73,15,17,0.0 +20638,7,30,46,0.0 +20638,67,14,44,0.0 +20638,61,28.5,29,0.0 +20638,26,31.23,34,0.0 +20638,2,19,49,0.0 +20638,45,9.5,8,0.0 +20638,19,9.2,8,0.0 +20638,71,21.5,45,0.0 +20638,30,25.89,8,0.0 +20638,33,2.5,8,0.0 +20638,28,45.6,24,0.0 +20638,44,19.45,7,0.0 +20638,18,62.5,4,0.0 +20638,29,123.79,17,0.0 +20638,10,31,14,0.0 +20638,55,24,45,0.0 +20638,39,18,15,0.0 +20638,52,7,22,0.0 +20638,20,81,37,0.0 +20639,32,32,16,0.0 +20639,64,33.25,4,0.0 +20639,27,43.9,20,0.0 +20639,62,49.3,50,0.0 +20639,29,123.79,36,0.0 +20639,58,13.25,38,0.0 +20639,76,18,20,0.0 +20639,70,15,16,0.0 +20639,16,17.45,36,0.0 +20639,48,12.75,50,0.0 +20639,56,38,35,0.0 +20639,68,12.5,10,0.0 +20639,25,14,21,0.0 +20639,12,38,48,0.0 +20639,31,12.5,19,0.0 +20639,71,21.5,8,0.0 +20639,72,34.8,24,0.0 +20639,51,53,42,0.0 +20639,36,19,19,0.0 +20639,60,34,33,0.0 +20639,42,14,36,0.0 +20639,77,13,6,0.0 +20639,7,30,2,0.0 +20639,21,10,8,0.0 +20639,66,17,6,0.0 +20639,11,21,37,0.0 +20639,13,6,22,0.0 +20639,18,62.5,36,0.0 +20639,69,36,47,0.0 +20639,54,7.45,41,0.0 +20639,19,9.2,20,0.0 +20639,35,18,43,0.0 +20639,75,7.75,31,0.0 +20639,9,97,5,0.0 +20639,73,15,7,0.0 +20640,60,34,42,0.0 +20640,62,49.3,23,0.0 +20640,47,9.5,34,0.0 +20640,51,53,2,0.0 +20640,69,36,44,0.0 +20640,48,12.75,10,0.0 +20640,13,6,12,0.0 +20640,22,21,22,0.0 +20640,53,32.8,20,0.0 +20640,52,7,50,0.0 +20640,20,81,40,0.0 +20640,76,18,44,0.0 +20640,19,9.2,9,0.0 +20640,72,34.8,4,0.0 +20640,71,21.5,4,0.0 +20640,17,39,34,0.0 +20640,41,9.65,39,0.0 +20640,38,263.5,11,0.0 +20640,74,10,27,0.0 +20640,6,25,46,0.0 +20640,44,19.45,39,0.0 +20640,55,24,16,0.0 +20640,39,18,19,0.0 +20640,12,38,36,0.0 +20640,67,14,32,0.0 +20640,58,13.25,2,0.0 +20640,26,31.23,41,0.0 +20640,34,14,33,0.0 +20640,2,19,10,0.0 +20640,40,18.4,42,0.0 +20640,66,17,3,0.0 +20640,16,17.45,29,0.0 +20640,59,55,45,0.0 +20640,50,16.25,22,0.0 +20641,46,12,2,0.0 +20641,60,34,8,0.0 +20641,26,31.23,38,0.0 +20641,45,9.5,19,0.0 +20641,70,15,20,0.0 +20641,59,55,12,0.0 +20641,66,17,48,0.0 +20641,7,30,8,0.0 +20641,23,9,22,0.0 +20641,32,32,17,0.0 +20641,3,10,47,0.0 +20641,77,13,49,0.0 +20641,37,26,49,0.0 +20641,56,38,50,0.0 +20641,20,81,30,0.0 +20641,25,14,50,0.0 +20641,74,10,35,0.0 +20641,38,263.5,16,0.0 +20641,55,24,4,0.0 +20641,44,19.45,18,0.0 +20641,22,21,5,0.0 +20641,71,21.5,33,0.0 +20641,67,14,11,0.0 +20641,18,62.5,12,0.0 +20641,24,4.5,7,0.0 +20641,16,17.45,31,0.0 +20641,12,38,46,0.0 +20641,36,19,35,0.0 +20641,30,25.89,25,0.0 +20641,4,22,8,0.0 +20641,15,15.5,16,0.0 +20641,39,18,39,0.0 +20641,40,18.4,35,0.0 +20641,5,21.35,7,0.0 +20641,47,9.5,11,0.0 +20641,53,32.8,27,0.0 +20641,29,123.79,50,0.0 +20641,2,19,15,0.0 +20641,1,18,19,0.0 +20641,69,36,19,0.0 +20641,17,39,30,0.0 +20641,68,12.5,22,0.0 +20641,8,40,27,0.0 +20641,31,12.5,21,0.0 +20641,11,21,35,0.0 +20641,13,6,34,0.0 +20641,54,7.45,42,0.0 +20641,6,25,18,0.0 +20641,50,16.25,10,0.0 +20642,34,14,7,0.0 +20642,43,46,50,0.0 +20642,60,34,45,0.0 +20642,61,28.5,28,0.0 +20642,44,19.45,19,0.0 +20643,67,14,20,0.0 +20643,42,14,35,0.0 +20643,9,97,17,0.0 +20643,44,19.45,42,0.0 +20643,58,13.25,6,0.0 +20643,52,7,14,0.0 +20643,66,17,48,0.0 +20643,45,9.5,7,0.0 +20643,43,46,1,0.0 +20643,25,14,8,0.0 +20643,59,55,50,0.0 +20643,29,123.79,25,0.0 +20643,76,18,13,0.0 +20643,40,18.4,21,0.0 +20643,46,12,3,0.0 +20643,63,43.9,3,0.0 +20643,2,19,32,0.0 +20643,41,9.65,50,0.0 +20643,51,53,20,0.0 +20643,4,22,19,0.0 +20643,21,10,26,0.0 +20643,17,39,5,0.0 +20643,75,7.75,28,0.0 +20643,8,40,23,0.0 +20643,69,36,1,0.0 +20643,56,38,25,0.0 +20643,36,19,18,0.0 +20643,47,9.5,18,0.0 +20643,55,24,46,0.0 +20643,13,6,31,0.0 +20643,49,20,33,0.0 +20643,18,62.5,48,0.0 +20643,50,16.25,48,0.0 +20643,12,38,3,0.0 +20643,48,12.75,34,0.0 +20643,38,263.5,39,0.0 +20643,14,23.25,29,0.0 +20643,26,31.23,40,0.0 +20643,23,9,42,0.0 +20643,33,2.5,1,0.0 +20643,1,18,49,0.0 +20643,68,12.5,43,0.0 +20643,10,31,11,0.0 +20643,37,26,47,0.0 +20643,65,21.05,19,0.0 +20643,71,21.5,3,0.0 +20643,73,15,35,0.0 +20643,54,7.45,39,0.0 +20643,64,33.25,11,0.0 +20643,30,25.89,34,0.0 +20643,28,45.6,31,0.0 +20643,57,19.5,49,0.0 +20643,35,18,6,0.0 +20643,11,21,37,0.0 +20643,62,49.3,20,0.0 +20643,16,17.45,21,0.0 +20643,24,4.5,28,0.0 +20643,7,30,42,0.0 +20643,22,21,28,0.0 +20643,34,14,4,0.0 +20643,3,10,22,0.0 +20644,67,14,39,0.0 +20644,22,21,36,0.0 +20644,50,16.25,47,0.0 +20644,29,123.79,18,0.0 +20644,77,13,18,0.0 +20644,31,12.5,32,0.0 +20644,74,10,21,0.0 +20644,9,97,7,0.0 +20644,20,81,38,0.0 +20644,53,32.8,34,0.0 +20644,36,19,49,0.0 +20644,51,53,24,0.0 +20644,15,15.5,1,0.0 +20644,72,34.8,39,0.0 +20644,6,25,33,0.0 +20644,10,31,50,0.0 +20644,66,17,22,0.0 +20644,41,9.65,7,0.0 +20644,7,30,3,0.0 +20644,32,32,19,0.0 +20644,47,9.5,31,0.0 +20644,60,34,25,0.0 +20644,42,14,17,0.0 +20644,19,9.2,48,0.0 +20644,37,26,8,0.0 +20644,54,7.45,29,0.0 +20644,4,22,15,0.0 +20644,24,4.5,20,0.0 +20644,76,18,25,0.0 +20644,27,43.9,49,0.0 +20644,3,10,2,0.0 +20644,13,6,13,0.0 +20644,64,33.25,11,0.0 +20644,46,12,26,0.0 +20644,38,263.5,28,0.0 +20644,52,7,12,0.0 +20644,57,19.5,33,0.0 +20644,2,19,10,0.0 +20644,45,9.5,30,0.0 +20644,71,21.5,32,0.0 +20644,28,45.6,19,0.0 +20644,26,31.23,5,0.0 +20644,69,36,26,0.0 +20644,65,21.05,40,0.0 +20644,5,21.35,39,0.0 +20644,43,46,46,0.0 +20644,49,20,25,0.0 +20644,16,17.45,49,0.0 +20644,55,24,40,0.0 +20644,75,7.75,7,0.0 +20644,17,39,24,0.0 +20644,1,18,3,0.0 +20644,70,15,26,0.0 +20644,33,2.5,2,0.0 +20644,25,14,33,0.0 +20644,56,38,1,0.0 +20644,68,12.5,22,0.0 +20644,58,13.25,8,0.0 +20644,39,18,17,0.0 +20644,48,12.75,11,0.0 +20644,21,10,23,0.0 +20644,34,14,26,0.0 +20644,35,18,9,0.0 +20644,11,21,24,0.0 +20644,62,49.3,49,0.0 +20644,30,25.89,30,0.0 +20644,12,38,12,0.0 +20644,73,15,9,0.0 +20644,63,43.9,11,0.0 +20645,3,10,13,0.0 +20645,68,12.5,14,0.0 +20645,34,14,9,0.0 +20645,9,97,15,0.0 +20645,26,31.23,9,0.0 +20645,22,21,44,0.0 +20645,54,7.45,48,0.0 +20645,19,9.2,19,0.0 +20645,57,19.5,3,0.0 +20645,2,19,49,0.0 +20645,69,36,48,0.0 +20645,14,23.25,17,0.0 +20645,31,12.5,7,0.0 +20645,71,21.5,17,0.0 +20645,27,43.9,49,0.0 +20645,60,34,49,0.0 +20645,50,16.25,9,0.0 +20645,49,20,46,0.0 +20645,56,38,28,0.0 +20645,55,24,5,0.0 +20645,75,7.75,42,0.0 +20645,28,45.6,8,0.0 +20645,58,13.25,8,0.0 +20645,51,53,26,0.0 +20645,6,25,47,0.0 +20645,37,26,2,0.0 +20645,72,34.8,44,0.0 +20645,40,18.4,42,0.0 +20645,16,17.45,33,0.0 +20645,4,22,47,0.0 +20645,76,18,39,0.0 +20645,39,18,8,0.0 +20645,10,31,44,0.0 +20645,30,25.89,10,0.0 +20645,23,9,28,0.0 +20645,43,46,7,0.0 +20645,63,43.9,25,0.0 +20645,61,28.5,37,0.0 +20645,44,19.45,43,0.0 +20645,73,15,50,0.0 +20645,20,81,3,0.0 +20645,7,30,1,0.0 +20645,8,40,23,0.0 +20645,52,7,20,0.0 +20645,5,21.35,9,0.0 +20645,62,49.3,37,0.0 +20645,46,12,27,0.0 +20645,48,12.75,49,0.0 +20645,77,13,38,0.0 +20645,42,14,48,0.0 +20645,33,2.5,30,0.0 +20645,1,18,22,0.0 +20645,38,263.5,1,0.0 +20645,65,21.05,17,0.0 +20645,53,32.8,46,0.0 +20645,25,14,31,0.0 +20645,59,55,34,0.0 +20645,24,4.5,37,0.0 +20645,45,9.5,38,0.0 +20645,13,6,39,0.0 +20646,63,43.9,32,0.0 +20646,68,12.5,14,0.0 +20646,50,16.25,2,0.0 +20646,13,6,1,0.0 +20646,11,21,46,0.0 +20646,56,38,32,0.0 +20646,21,10,9,0.0 +20646,42,14,23,0.0 +20646,17,39,50,0.0 +20646,33,2.5,29,0.0 +20646,2,19,24,0.0 +20646,3,10,12,0.0 +20646,37,26,19,0.0 +20646,29,123.79,32,0.0 +20646,73,15,28,0.0 +20646,74,10,11,0.0 +20646,25,14,24,0.0 +20646,8,40,23,0.0 +20646,12,38,37,0.0 +20646,6,25,23,0.0 +20646,59,55,32,0.0 +20646,19,9.2,7,0.0 +20646,66,17,21,0.0 +20646,7,30,44,0.0 +20646,70,15,40,0.0 +20646,44,19.45,44,0.0 +20646,69,36,13,0.0 +20646,57,19.5,9,0.0 +20646,46,12,14,0.0 +20646,10,31,38,0.0 +20646,27,43.9,10,0.0 +20647,52,7,24,0.0 +20647,22,21,36,0.0 +20647,67,14,15,0.0 +20647,10,31,35,0.0 +20647,11,21,37,0.0 +20647,77,13,4,0.0 +20647,73,15,44,0.0 +20647,65,21.05,1,0.0 +20647,46,12,48,0.0 +20647,5,21.35,48,0.0 +20647,8,40,24,0.0 +20647,63,43.9,44,0.0 +20647,29,123.79,1,0.0 +20647,2,19,13,0.0 +20647,60,34,18,0.0 +20647,19,9.2,40,0.0 +20647,57,19.5,38,0.0 +20647,53,32.8,8,0.0 +20647,38,263.5,37,0.0 +20647,45,9.5,43,0.0 +20647,25,14,2,0.0 +20647,32,32,24,0.0 +20647,27,43.9,14,0.0 +20647,40,18.4,45,0.0 +20647,71,21.5,9,0.0 +20647,7,30,44,0.0 +20647,37,26,50,0.0 +20647,62,49.3,17,0.0 +20647,16,17.45,11,0.0 +20647,72,34.8,6,0.0 +20647,3,10,2,0.0 +20647,12,38,27,0.0 +20647,64,33.25,40,0.0 +20647,21,10,47,0.0 +20647,68,12.5,45,0.0 +20647,6,25,2,0.0 +20647,35,18,2,0.0 +20647,47,9.5,20,0.0 +20647,13,6,19,0.0 +20647,51,53,9,0.0 +20647,17,39,19,0.0 +20647,70,15,14,0.0 +20647,36,19,28,0.0 +20647,41,9.65,7,0.0 +20647,44,19.45,12,0.0 +20647,33,2.5,10,0.0 +20647,4,22,48,0.0 +20648,16,17.45,46,0.0 +20648,54,7.45,3,0.0 +20648,6,25,33,0.0 +20648,27,43.9,45,0.0 +20648,29,123.79,17,0.0 +20648,41,9.65,21,0.0 +20648,21,10,37,0.0 +20648,72,34.8,19,0.0 +20648,66,17,22,0.0 +20648,5,21.35,34,0.0 +20648,58,13.25,6,0.0 +20648,35,18,19,0.0 +20648,46,12,27,0.0 +20648,47,9.5,26,0.0 +20648,43,46,22,0.0 +20648,14,23.25,18,0.0 +20648,57,19.5,26,0.0 +20648,50,16.25,5,0.0 +20648,44,19.45,48,0.0 +20648,68,12.5,20,0.0 +20648,74,10,8,0.0 +20648,45,9.5,21,0.0 +20648,22,21,22,0.0 +20648,34,14,10,0.0 +20648,9,97,6,0.0 +20648,73,15,5,0.0 +20648,26,31.23,31,0.0 +20648,71,21.5,48,0.0 +20648,70,15,14,0.0 +20648,56,38,48,0.0 +20648,17,39,19,0.0 +20648,63,43.9,49,0.0 +20648,33,2.5,41,0.0 +20648,42,14,6,0.0 +20648,64,33.25,25,0.0 +20648,51,53,24,0.0 +20648,76,18,12,0.0 +20648,40,18.4,20,0.0 +20648,19,9.2,50,0.0 +20648,62,49.3,2,0.0 +20648,13,6,30,0.0 +20648,37,26,10,0.0 +20648,65,21.05,45,0.0 +20648,24,4.5,16,0.0 +20648,10,31,39,0.0 +20648,25,14,42,0.0 +20648,1,18,7,0.0 +20648,15,15.5,9,0.0 +20648,60,34,30,0.0 +20648,38,263.5,5,0.0 +20648,12,38,42,0.0 +20648,67,14,8,0.0 +20648,36,19,5,0.0 +20648,55,24,22,0.0 +20648,32,32,38,0.0 +20648,59,55,13,0.0 +20648,30,25.89,31,0.0 +20648,61,28.5,30,0.0 +20648,4,22,2,0.0 +20648,3,10,6,0.0 +20648,2,19,10,0.0 +20648,28,45.6,24,0.0 +20648,39,18,32,0.0 +20648,31,12.5,24,0.0 +20648,77,13,43,0.0 +20648,48,12.75,11,0.0 +20648,20,81,39,0.0 +20648,18,62.5,1,0.0 +20648,23,9,15,0.0 +20648,75,7.75,48,0.0 +20648,7,30,12,0.0 +20648,49,20,16,0.0 +20648,52,7,7,0.0 +20648,8,40,8,0.0 +20648,11,21,30,0.0 +20648,53,32.8,31,0.0 +20649,30,25.89,9,0.0 +20649,41,9.65,21,0.0 +20649,59,55,7,0.0 +20649,34,14,17,0.0 +20649,76,18,42,0.0 +20649,3,10,2,0.0 +20649,50,16.25,30,0.0 +20649,62,49.3,28,0.0 +20649,66,17,3,0.0 +20649,24,4.5,7,0.0 +20649,22,21,31,0.0 +20649,39,18,4,0.0 +20649,40,18.4,39,0.0 +20649,8,40,6,0.0 +20649,74,10,50,0.0 +20649,54,7.45,6,0.0 +20649,43,46,49,0.0 +20649,57,19.5,43,0.0 +20649,10,31,22,0.0 +20649,27,43.9,41,0.0 +20649,4,22,36,0.0 +20649,68,12.5,34,0.0 +20649,64,33.25,11,0.0 +20649,61,28.5,10,0.0 +20649,14,23.25,11,0.0 +20649,6,25,36,0.0 +20649,69,36,25,0.0 +20649,58,13.25,23,0.0 +20649,45,9.5,35,0.0 +20649,52,7,30,0.0 +20649,19,9.2,22,0.0 +20649,9,97,26,0.0 +20649,1,18,15,0.0 +20649,20,81,33,0.0 +20649,23,9,34,0.0 +20649,38,263.5,2,0.0 +20649,16,17.45,38,0.0 +20649,63,43.9,8,0.0 +20649,72,34.8,11,0.0 +20649,26,31.23,49,0.0 +20649,51,53,4,0.0 +20649,21,10,23,0.0 +20649,67,14,13,0.0 +20649,37,26,15,0.0 +20649,49,20,5,0.0 +20649,15,15.5,15,0.0 +20649,25,14,15,0.0 +20649,2,19,3,0.0 +20649,36,19,40,0.0 +20649,29,123.79,45,0.0 +20649,28,45.6,27,0.0 +20649,60,34,17,0.0 +20649,13,6,39,0.0 +20649,17,39,29,0.0 +20649,18,62.5,48,0.0 +20649,71,21.5,45,0.0 +20649,46,12,12,0.0 +20650,77,13,36,0.0 +20650,63,43.9,30,0.0 +20650,13,6,3,0.0 +20650,57,19.5,3,0.0 +20650,35,18,23,0.0 +20650,54,7.45,2,0.0 +20650,39,18,48,0.0 +20650,11,21,14,0.0 +20650,6,25,24,0.0 +20650,56,38,18,0.0 +20650,32,32,25,0.0 +20650,58,13.25,32,0.0 +20650,52,7,17,0.0 +20650,47,9.5,5,0.0 +20650,16,17.45,34,0.0 +20650,2,19,8,0.0 +20650,7,30,32,0.0 +20650,68,12.5,20,0.0 +20650,27,43.9,24,0.0 +20650,70,15,39,0.0 +20650,38,263.5,36,0.0 +20650,75,7.75,37,0.0 +20650,74,10,42,0.0 +20650,72,34.8,43,0.0 +20650,66,17,26,0.0 +20650,14,23.25,2,0.0 +20650,12,38,42,0.0 +20650,44,19.45,26,0.0 +20651,74,10,13,0.0 +20651,49,20,27,0.0 +20651,22,21,34,0.0 +20651,33,2.5,16,0.0 +20651,37,26,15,0.0 +20651,4,22,9,0.0 +20651,17,39,15,0.0 +20651,9,97,24,0.0 +20651,46,12,33,0.0 +20651,39,18,25,0.0 +20651,75,7.75,26,0.0 +20651,42,14,45,0.0 +20651,29,123.79,32,0.0 +20651,69,36,18,0.0 +20651,63,43.9,40,0.0 +20651,51,53,41,0.0 +20651,68,12.5,10,0.0 +20651,64,33.25,50,0.0 +20651,25,14,40,0.0 +20651,7,30,37,0.0 +20651,67,14,7,0.0 +20651,47,9.5,32,0.0 +20651,8,40,17,0.0 +20651,41,9.65,49,0.0 +20651,77,13,7,0.0 +20651,30,25.89,25,0.0 +20651,59,55,23,0.0 +20651,50,16.25,43,0.0 +20651,35,18,22,0.0 +20651,26,31.23,34,0.0 +20651,21,10,35,0.0 +20651,20,81,20,0.0 +20651,16,17.45,34,0.0 +20651,61,28.5,44,0.0 +20651,54,7.45,1,0.0 +20651,70,15,35,0.0 +20651,40,18.4,46,0.0 +20651,2,19,8,0.0 +20651,56,38,50,0.0 +20651,76,18,48,0.0 +20651,31,12.5,22,0.0 +20651,48,12.75,4,0.0 +20651,32,32,20,0.0 +20651,28,45.6,28,0.0 +20651,57,19.5,2,0.0 +20651,5,21.35,46,0.0 +20651,13,6,43,0.0 +20652,61,28.5,32,0.0 +20652,17,39,28,0.0 +20652,12,38,46,0.0 +20652,38,263.5,45,0.0 +20652,20,81,11,0.0 +20652,77,13,43,0.0 +20652,63,43.9,17,0.0 +20652,14,23.25,8,0.0 +20652,27,43.9,33,0.0 +20652,51,53,41,0.0 +20652,3,10,24,0.0 +20652,4,22,46,0.0 +20652,28,45.6,19,0.0 +20652,74,10,42,0.0 +20652,64,33.25,26,0.0 +20652,34,14,45,0.0 +20652,66,17,20,0.0 +20652,48,12.75,26,0.0 +20652,23,9,44,0.0 +20652,36,19,36,0.0 +20652,31,12.5,3,0.0 +20652,42,14,20,0.0 +20652,13,6,29,0.0 +20652,2,19,23,0.0 +20652,50,16.25,28,0.0 +20652,19,9.2,3,0.0 +20652,41,9.65,8,0.0 +20652,40,18.4,14,0.0 +20652,47,9.5,26,0.0 +20652,29,123.79,41,0.0 +20652,59,55,18,0.0 +20652,9,97,41,0.0 +20652,16,17.45,36,0.0 +20652,25,14,1,0.0 +20652,57,19.5,9,0.0 +20652,10,31,43,0.0 +20652,22,21,12,0.0 +20652,6,25,35,0.0 +20652,55,24,46,0.0 +20652,43,46,21,0.0 +20652,76,18,48,0.0 +20652,62,49.3,47,0.0 +20652,49,20,27,0.0 +20652,5,21.35,44,0.0 +20652,21,10,36,0.0 +20652,56,38,16,0.0 +20652,7,30,44,0.0 +20652,60,34,10,0.0 +20652,69,36,41,0.0 +20652,53,32.8,33,0.0 +20652,8,40,20,0.0 +20652,54,7.45,9,0.0 +20652,30,25.89,33,0.0 +20652,15,15.5,46,0.0 +20652,75,7.75,9,0.0 +20653,74,10,27,0.0 +20653,70,15,48,0.0 +20653,12,38,36,0.0 +20653,45,9.5,4,0.0 +20653,26,31.23,29,0.0 +20653,23,9,49,0.0 +20653,69,36,28,0.0 +20653,30,25.89,27,0.0 +20653,33,2.5,21,0.0 +20653,49,20,24,0.0 +20653,77,13,50,0.0 +20653,15,15.5,13,0.0 +20653,37,26,30,0.0 +20653,2,19,17,0.0 +20653,29,123.79,12,0.0 +20653,4,22,45,0.0 +20653,42,14,37,0.0 +20653,25,14,32,0.0 +20653,28,45.6,25,0.0 +20653,52,7,29,0.0 +20653,1,18,25,0.0 +20654,4,22,12,0.0 +20654,17,39,30,0.0 +20654,10,31,18,0.0 +20654,36,19,26,0.0 +20654,6,25,1,0.0 +20654,50,16.25,27,0.0 +20654,25,14,50,0.0 +20654,39,18,36,0.0 +20654,7,30,44,0.0 +20654,9,97,15,0.0 +20654,11,21,16,0.0 +20654,48,12.75,50,0.0 +20654,2,19,3,0.0 +20654,23,9,21,0.0 +20654,64,33.25,48,0.0 +20654,34,14,14,0.0 +20654,66,17,39,0.0 +20654,3,10,28,0.0 +20654,43,46,44,0.0 +20654,63,43.9,30,0.0 +20654,20,81,38,0.0 +20654,45,9.5,3,0.0 +20654,18,62.5,3,0.0 +20654,33,2.5,40,0.0 +20654,38,263.5,8,0.0 +20654,8,40,13,0.0 +20654,14,23.25,5,0.0 +20654,76,18,23,0.0 +20654,65,21.05,17,0.0 +20654,13,6,4,0.0 +20654,35,18,21,0.0 +20654,52,7,2,0.0 +20654,37,26,48,0.0 +20654,21,10,10,0.0 +20654,30,25.89,23,0.0 +20654,56,38,8,0.0 +20654,42,14,35,0.0 +20654,57,19.5,7,0.0 +20654,29,123.79,24,0.0 +20654,53,32.8,48,0.0 +20654,22,21,4,0.0 +20654,27,43.9,10,0.0 +20654,62,49.3,5,0.0 +20654,75,7.75,43,0.0 +20654,28,45.6,3,0.0 +20654,71,21.5,14,0.0 +20654,32,32,16,0.0 +20654,49,20,36,0.0 +20654,55,24,15,0.0 +20654,70,15,26,0.0 +20654,46,12,45,0.0 +20654,68,12.5,19,0.0 +20654,51,53,21,0.0 +20654,47,9.5,14,0.0 +20654,24,4.5,18,0.0 +20654,69,36,24,0.0 +20654,44,19.45,48,0.0 +20654,61,28.5,40,0.0 +20654,19,9.2,11,0.0 +20654,60,34,4,0.0 +20654,67,14,22,0.0 +20654,72,34.8,40,0.0 +20654,74,10,46,0.0 +20654,40,18.4,30,0.0 +20654,41,9.65,8,0.0 +20654,73,15,25,0.0 +20654,5,21.35,30,0.0 +20654,12,38,6,0.0 +20654,16,17.45,40,0.0 +20654,15,15.5,9,0.0 +20654,26,31.23,14,0.0 +20654,58,13.25,49,0.0 +20654,59,55,25,0.0 +20654,31,12.5,31,0.0 +20655,77,13,36,0.0 +20655,18,62.5,27,0.0 +20655,1,18,40,0.0 +20655,13,6,33,0.0 +20655,31,12.5,39,0.0 +20655,63,43.9,34,0.0 +20655,61,28.5,9,0.0 +20655,70,15,24,0.0 +20655,74,10,49,0.0 +20655,52,7,31,0.0 +20655,27,43.9,10,0.0 +20655,76,18,26,0.0 +20655,10,31,19,0.0 +20655,62,49.3,13,0.0 +20655,53,32.8,1,0.0 +20655,11,21,22,0.0 +20655,12,38,23,0.0 +20655,25,14,18,0.0 +20655,38,263.5,6,0.0 +20655,46,12,15,0.0 +20655,50,16.25,32,0.0 +20655,39,18,36,0.0 +20655,54,7.45,2,0.0 +20655,44,19.45,45,0.0 +20655,23,9,18,0.0 +20655,56,38,41,0.0 +20655,71,21.5,36,0.0 +20655,34,14,45,0.0 +20655,2,19,9,0.0 +20655,8,40,19,0.0 +20655,73,15,43,0.0 +20655,5,21.35,13,0.0 +20655,66,17,46,0.0 +20655,30,25.89,20,0.0 +20655,16,17.45,6,0.0 +20655,68,12.5,32,0.0 +20655,15,15.5,10,0.0 +20655,69,36,45,0.0 +20655,26,31.23,31,0.0 +20655,45,9.5,48,0.0 +20655,37,26,47,0.0 +20655,36,19,49,0.0 +20655,32,32,18,0.0 +20655,43,46,30,0.0 +20655,29,123.79,35,0.0 +20655,28,45.6,35,0.0 +20655,55,24,30,0.0 +20655,75,7.75,30,0.0 +20655,48,12.75,1,0.0 +20655,60,34,13,0.0 +20655,17,39,6,0.0 +20655,19,9.2,10,0.0 +20655,57,19.5,45,0.0 +20655,3,10,26,0.0 +20655,4,22,43,0.0 +20655,7,30,5,0.0 +20655,58,13.25,2,0.0 +20655,21,10,26,0.0 +20655,41,9.65,24,0.0 +20655,6,25,14,0.0 +20655,20,81,11,0.0 +20655,47,9.5,19,0.0 +20655,72,34.8,27,0.0 +20655,33,2.5,14,0.0 +20655,49,20,20,0.0 +20655,24,4.5,17,0.0 +20655,64,33.25,39,0.0 +20655,9,97,24,0.0 +20655,40,18.4,47,0.0 +20655,59,55,46,0.0 +20655,35,18,48,0.0 +20655,22,21,43,0.0 +20655,65,21.05,49,0.0 +20655,42,14,39,0.0 +20655,14,23.25,38,0.0 +20655,67,14,40,0.0 +20655,51,53,44,0.0 +20656,2,19,10,0.0 +20656,12,38,27,0.0 +20656,15,15.5,14,0.0 +20656,18,62.5,12,0.0 +20656,27,43.9,6,0.0 +20656,46,12,45,0.0 +20656,23,9,9,0.0 +20656,36,19,31,0.0 +20656,75,7.75,44,0.0 +20656,71,21.5,2,0.0 +20656,40,18.4,31,0.0 +20656,55,24,50,0.0 +20656,76,18,28,0.0 +20656,51,53,29,0.0 +20656,41,9.65,40,0.0 +20656,22,21,38,0.0 +20656,1,18,30,0.0 +20656,42,14,15,0.0 +20656,58,13.25,35,0.0 +20656,14,23.25,20,0.0 +20656,32,32,25,0.0 +20656,57,19.5,32,0.0 +20656,8,40,33,0.0 +20656,62,49.3,44,0.0 +20656,34,14,8,0.0 +20656,26,31.23,48,0.0 +20656,28,45.6,27,0.0 +20656,47,9.5,38,0.0 +20657,23,9,3,0.0 +20657,29,123.79,38,0.0 +20657,69,36,17,0.0 +20657,67,14,3,0.0 +20657,62,49.3,14,0.0 +20657,52,7,20,0.0 +20657,56,38,48,0.0 +20657,77,13,8,0.0 +20657,1,18,32,0.0 +20657,50,16.25,49,0.0 +20657,75,7.75,39,0.0 +20657,45,9.5,34,0.0 +20657,48,12.75,45,0.0 +20657,73,15,38,0.0 +20657,22,21,48,0.0 +20657,16,17.45,39,0.0 +20657,38,263.5,45,0.0 +20657,36,19,17,0.0 +20658,57,19.5,22,0.0 +20658,40,18.4,23,0.0 +20659,10,31,19,0.0 +20659,12,38,45,0.0 +20659,49,20,31,0.0 +20659,18,62.5,14,0.0 +20659,44,19.45,16,0.0 +20659,17,39,46,0.0 +20659,53,32.8,2,0.0 +20659,42,14,24,0.0 +20659,50,16.25,29,0.0 +20659,77,13,47,0.0 +20659,61,28.5,14,0.0 +20659,6,25,33,0.0 +20659,73,15,3,0.0 +20659,27,43.9,17,0.0 +20659,70,15,37,0.0 +20659,24,4.5,41,0.0 +20659,43,46,15,0.0 +20659,8,40,24,0.0 +20659,59,55,43,0.0 +20659,19,9.2,39,0.0 +20659,11,21,4,0.0 +20659,20,81,22,0.0 +20659,56,38,20,0.0 +20659,39,18,43,0.0 +20659,40,18.4,24,0.0 +20659,62,49.3,50,0.0 +20659,32,32,14,0.0 +20659,48,12.75,14,0.0 +20659,51,53,17,0.0 +20659,68,12.5,21,0.0 +20659,52,7,11,0.0 +20659,7,30,22,0.0 +20659,26,31.23,33,0.0 +20659,36,19,34,0.0 +20659,47,9.5,24,0.0 +20659,66,17,49,0.0 +20659,60,34,15,0.0 +20659,54,7.45,27,0.0 +20659,76,18,25,0.0 +20659,29,123.79,45,0.0 +20659,69,36,8,0.0 +20659,74,10,32,0.0 +20659,25,14,8,0.0 +20659,64,33.25,25,0.0 +20659,71,21.5,45,0.0 +20659,33,2.5,49,0.0 +20659,30,25.89,23,0.0 +20659,22,21,6,0.0 +20659,15,15.5,21,0.0 +20659,1,18,35,0.0 +20659,41,9.65,32,0.0 +20659,55,24,29,0.0 +20659,75,7.75,50,0.0 +20659,58,13.25,25,0.0 +20659,13,6,49,0.0 +20659,23,9,36,0.0 +20659,4,22,12,0.0 +20659,3,10,27,0.0 +20659,16,17.45,26,0.0 +20659,31,12.5,50,0.0 +20659,37,26,4,0.0 +20659,14,23.25,19,0.0 +20659,63,43.9,34,0.0 +20659,67,14,9,0.0 +20659,35,18,35,0.0 +20659,65,21.05,3,0.0 +20659,9,97,1,0.0 +20659,21,10,24,0.0 +20659,34,14,44,0.0 +20659,72,34.8,40,0.0 +20660,58,13.25,16,0.0 +20660,65,21.05,38,0.0 +20660,6,25,40,0.0 +20660,1,18,37,0.0 +20660,9,97,34,0.0 +20660,8,40,37,0.0 +20660,13,6,41,0.0 +20660,21,10,25,0.0 +20660,77,13,3,0.0 +20660,24,4.5,39,0.0 +20660,20,81,36,0.0 +20660,30,25.89,47,0.0 +20660,41,9.65,38,0.0 +20660,26,31.23,24,0.0 +20660,70,15,6,0.0 +20660,54,7.45,47,0.0 +20660,53,32.8,11,0.0 +20660,56,38,5,0.0 +20660,60,34,48,0.0 +20660,40,18.4,35,0.0 +20660,22,21,15,0.0 +20660,51,53,33,0.0 +20660,44,19.45,48,0.0 +20660,68,12.5,46,0.0 +20660,73,15,34,0.0 +20660,27,43.9,2,0.0 +20660,45,9.5,22,0.0 +20660,64,33.25,36,0.0 +20660,69,36,38,0.0 +20660,15,15.5,36,0.0 +20660,37,26,29,0.0 +20660,52,7,45,0.0 +20660,63,43.9,40,0.0 +20660,25,14,29,0.0 +20660,34,14,31,0.0 +20660,48,12.75,49,0.0 +20660,19,9.2,22,0.0 +20660,18,62.5,35,0.0 +20660,42,14,15,0.0 +20660,2,19,33,0.0 +20660,75,7.75,5,0.0 +20660,76,18,47,0.0 +20660,72,34.8,43,0.0 +20660,17,39,18,0.0 +20660,49,20,35,0.0 +20660,31,12.5,1,0.0 +20661,39,18,1,0.0 +20661,50,16.25,18,0.0 +20661,46,12,42,0.0 +20661,74,10,13,0.0 +20661,42,14,30,0.0 +20661,24,4.5,5,0.0 +20661,66,17,3,0.0 +20661,76,18,9,0.0 +20661,12,38,32,0.0 +20661,44,19.45,4,0.0 +20661,47,9.5,36,0.0 +20661,40,18.4,42,0.0 +20661,75,7.75,4,0.0 +20661,14,23.25,31,0.0 +20661,73,15,49,0.0 +20661,64,33.25,1,0.0 +20661,36,19,33,0.0 +20661,20,81,38,0.0 +20661,68,12.5,25,0.0 +20661,69,36,48,0.0 +20662,42,14,28,0.0 +20662,49,20,10,0.0 +20662,21,10,22,0.0 +20662,67,14,30,0.0 +20662,7,30,13,0.0 +20662,5,21.35,36,0.0 +20662,30,25.89,31,0.0 +20662,24,4.5,25,0.0 +20662,39,18,44,0.0 +20662,27,43.9,25,0.0 +20662,14,23.25,5,0.0 +20662,66,17,9,0.0 +20662,23,9,29,0.0 +20662,17,39,14,0.0 +20662,75,7.75,18,0.0 +20662,20,81,40,0.0 +20662,36,19,26,0.0 +20662,15,15.5,20,0.0 +20662,76,18,34,0.0 +20662,2,19,3,0.0 +20662,70,15,7,0.0 +20662,69,36,19,0.0 +20662,53,32.8,31,0.0 +20662,50,16.25,41,0.0 +20662,63,43.9,39,0.0 +20662,54,7.45,25,0.0 +20662,64,33.25,34,0.0 +20662,18,62.5,31,0.0 +20662,19,9.2,14,0.0 +20662,51,53,42,0.0 +20662,73,15,10,0.0 +20662,65,21.05,34,0.0 +20662,34,14,4,0.0 +20662,38,263.5,33,0.0 +20662,68,12.5,19,0.0 +20662,16,17.45,1,0.0 +20663,6,25,47,0.0 +20663,26,31.23,28,0.0 +20663,36,19,8,0.0 +20663,16,17.45,44,0.0 +20663,23,9,34,0.0 +20663,46,12,11,0.0 +20663,69,36,48,0.0 +20663,54,7.45,48,0.0 +20663,71,21.5,35,0.0 +20663,19,9.2,6,0.0 +20663,33,2.5,27,0.0 +20663,22,21,29,0.0 +20663,15,15.5,14,0.0 +20663,75,7.75,22,0.0 +20663,11,21,36,0.0 +20663,18,62.5,36,0.0 +20663,38,263.5,24,0.0 +20663,17,39,42,0.0 +20663,67,14,40,0.0 +20663,60,34,2,0.0 +20663,47,9.5,38,0.0 +20663,39,18,49,0.0 +20663,64,33.25,5,0.0 +20663,50,16.25,33,0.0 +20663,41,9.65,28,0.0 +20663,58,13.25,33,0.0 +20663,49,20,35,0.0 +20663,62,49.3,10,0.0 +20663,45,9.5,2,0.0 +20663,29,123.79,24,0.0 +20663,9,97,26,0.0 +20663,8,40,24,0.0 +20663,5,21.35,32,0.0 +20663,14,23.25,48,0.0 +20663,59,55,4,0.0 +20663,13,6,12,0.0 +20663,42,14,5,0.0 +20663,44,19.45,27,0.0 +20663,77,13,7,0.0 +20663,76,18,40,0.0 +20663,51,53,13,0.0 +20663,65,21.05,41,0.0 +20663,20,81,26,0.0 +20663,72,34.8,25,0.0 +20663,7,30,14,0.0 +20664,70,15,13,0.0 +20664,45,9.5,33,0.0 +20664,29,123.79,41,0.0 +20664,50,16.25,6,0.0 +20664,69,36,15,0.0 +20664,64,33.25,48,0.0 +20664,54,7.45,30,0.0 +20664,12,38,17,0.0 +20664,8,40,18,0.0 +20664,15,15.5,29,0.0 +20664,47,9.5,32,0.0 +20664,52,7,22,0.0 +20664,57,19.5,8,0.0 +20664,34,14,50,0.0 +20664,17,39,32,0.0 +20664,66,17,26,0.0 +20664,42,14,12,0.0 +20664,72,34.8,41,0.0 +20664,60,34,49,0.0 +20664,1,18,24,0.0 +20664,32,32,10,0.0 +20664,49,20,7,0.0 +20664,11,21,25,0.0 +20664,24,4.5,13,0.0 +20664,36,19,17,0.0 +20664,71,21.5,2,0.0 +20664,75,7.75,35,0.0 +20664,58,13.25,7,0.0 +20664,19,9.2,30,0.0 +20664,37,26,32,0.0 +20664,9,97,24,0.0 +20664,10,31,38,0.0 +20664,44,19.45,33,0.0 +20664,48,12.75,19,0.0 +20664,65,21.05,6,0.0 +20664,77,13,35,0.0 +20664,67,14,11,0.0 +20664,63,43.9,7,0.0 +20664,55,24,39,0.0 +20664,27,43.9,6,0.0 +20664,61,28.5,27,0.0 +20664,76,18,20,0.0 +20664,2,19,14,0.0 +20664,53,32.8,25,0.0 +20664,26,31.23,3,0.0 +20664,4,22,33,0.0 +20664,28,45.6,31,0.0 +20664,43,46,32,0.0 +20664,62,49.3,1,0.0 +20664,40,18.4,34,0.0 +20664,35,18,47,0.0 +20664,6,25,40,0.0 +20664,51,53,33,0.0 +20664,7,30,15,0.0 +20664,33,2.5,12,0.0 +20664,21,10,10,0.0 +20664,22,21,26,0.0 +20664,68,12.5,9,0.0 +20664,5,21.35,47,0.0 +20664,41,9.65,18,0.0 +20664,20,81,3,0.0 +20664,39,18,32,0.0 +20664,18,62.5,26,0.0 +20664,59,55,25,0.0 +20664,16,17.45,27,0.0 +20664,25,14,24,0.0 +20664,56,38,24,0.0 +20664,31,12.5,23,0.0 +20664,23,9,47,0.0 +20665,33,2.5,26,0.0 +20665,24,4.5,47,0.0 +20665,21,10,29,0.0 +20665,30,25.89,33,0.0 +20665,46,12,23,0.0 +20665,54,7.45,39,0.0 +20665,44,19.45,45,0.0 +20665,28,45.6,9,0.0 +20665,18,62.5,49,0.0 +20665,62,49.3,42,0.0 +20665,72,34.8,15,0.0 +20665,64,33.25,28,0.0 +20665,8,40,37,0.0 +20665,29,123.79,44,0.0 +20665,69,36,1,0.0 +20665,58,13.25,39,0.0 +20665,77,13,13,0.0 +20665,14,23.25,45,0.0 +20665,65,21.05,33,0.0 +20665,4,22,39,0.0 +20665,70,15,2,0.0 +20665,31,12.5,3,0.0 +20665,13,6,2,0.0 +20665,51,53,16,0.0 +20665,47,9.5,46,0.0 +20665,2,19,25,0.0 +20665,16,17.45,9,0.0 +20665,52,7,6,0.0 +20665,63,43.9,15,0.0 +20665,15,15.5,23,0.0 +20665,3,10,41,0.0 +20665,60,34,6,0.0 +20665,23,9,39,0.0 +20665,43,46,2,0.0 +20665,50,16.25,45,0.0 +20665,76,18,45,0.0 +20665,42,14,45,0.0 +20665,48,12.75,13,0.0 +20665,57,19.5,9,0.0 +20665,26,31.23,33,0.0 +20665,10,31,19,0.0 +20665,75,7.75,41,0.0 +20665,56,38,25,0.0 +20665,41,9.65,48,0.0 +20665,59,55,32,0.0 +20665,1,18,23,0.0 +20665,38,263.5,29,0.0 +20665,6,25,3,0.0 +20665,36,19,9,0.0 +20665,61,28.5,4,0.0 +20665,5,21.35,17,0.0 +20665,9,97,20,0.0 +20665,49,20,46,0.0 +20665,22,21,34,0.0 +20665,19,9.2,43,0.0 +20665,74,10,39,0.0 +20665,37,26,3,0.0 +20665,66,17,41,0.0 +20665,53,32.8,7,0.0 +20665,39,18,26,0.0 +20665,11,21,22,0.0 +20665,12,38,14,0.0 +20665,7,30,8,0.0 +20665,25,14,34,0.0 +20665,45,9.5,15,0.0 +20665,17,39,29,0.0 +20665,32,32,47,0.0 +20665,20,81,16,0.0 +20665,71,21.5,33,0.0 +20665,40,18.4,41,0.0 +20665,67,14,5,0.0 +20665,27,43.9,20,0.0 +20665,35,18,35,0.0 +20665,73,15,3,0.0 +20665,34,14,18,0.0 +20665,55,24,45,0.0 +20665,68,12.5,43,0.0 +20666,8,40,13,0.0 +20666,54,7.45,32,0.0 +20666,49,20,36,0.0 +20666,75,7.75,21,0.0 +20666,4,22,5,0.0 +20666,36,19,47,0.0 +20666,60,34,17,0.0 +20666,35,18,8,0.0 +20666,61,28.5,7,0.0 +20666,27,43.9,18,0.0 +20666,30,25.89,17,0.0 +20666,2,19,45,0.0 +20666,57,19.5,28,0.0 +20666,20,81,48,0.0 +20666,19,9.2,43,0.0 +20666,44,19.45,43,0.0 +20666,65,21.05,50,0.0 +20666,72,34.8,19,0.0 +20666,12,38,3,0.0 +20666,32,32,32,0.0 +20666,76,18,30,0.0 +20666,39,18,39,0.0 +20666,73,15,15,0.0 +20666,48,12.75,33,0.0 +20666,62,49.3,15,0.0 +20666,3,10,13,0.0 +20666,58,13.25,8,0.0 +20666,46,12,28,0.0 +20666,69,36,21,0.0 +20666,29,123.79,34,0.0 +20666,23,9,4,0.0 +20666,43,46,35,0.0 +20666,53,32.8,8,0.0 +20666,66,17,27,0.0 +20666,40,18.4,33,0.0 +20666,18,62.5,4,0.0 +20666,13,6,9,0.0 +20666,5,21.35,33,0.0 +20666,51,53,22,0.0 +20666,10,31,35,0.0 +20666,70,15,27,0.0 +20666,52,7,20,0.0 +20666,56,38,43,0.0 +20666,7,30,43,0.0 +20666,34,14,41,0.0 +20666,1,18,29,0.0 +20666,11,21,47,0.0 +20666,45,9.5,41,0.0 +20666,28,45.6,45,0.0 +20666,77,13,11,0.0 +20666,14,23.25,1,0.0 +20666,71,21.5,11,0.0 +20666,24,4.5,30,0.0 +20666,37,26,46,0.0 +20666,41,9.65,12,0.0 +20666,22,21,14,0.0 +20666,74,10,37,0.0 +20666,38,263.5,41,0.0 +20666,15,15.5,29,0.0 +20666,67,14,48,0.0 +20666,6,25,26,0.0 +20666,33,2.5,44,0.0 +20666,42,14,9,0.0 +20667,56,38,25,0.0 +20667,50,16.25,21,0.0 +20667,66,17,19,0.0 +20667,24,4.5,12,0.0 +20667,71,21.5,27,0.0 +20667,51,53,17,0.0 +20667,55,24,19,0.0 +20667,72,34.8,1,0.0 +20667,65,21.05,30,0.0 +20667,5,21.35,30,0.0 +20667,64,33.25,32,0.0 +20667,16,17.45,15,0.0 +20667,12,38,41,0.0 +20667,34,14,9,0.0 +20667,3,10,11,0.0 +20667,54,7.45,33,0.0 +20667,23,9,12,0.0 +20667,36,19,44,0.0 +20667,63,43.9,3,0.0 +20667,4,22,29,0.0 +20667,39,18,6,0.0 +20667,42,14,4,0.0 +20667,7,30,26,0.0 +20667,49,20,27,0.0 +20667,76,18,43,0.0 +20667,25,14,12,0.0 +20667,9,97,47,0.0 +20667,62,49.3,6,0.0 +20667,73,15,49,0.0 +20667,60,34,21,0.0 +20667,41,9.65,29,0.0 +20667,46,12,9,0.0 +20667,35,18,25,0.0 +20667,48,12.75,35,0.0 +20667,27,43.9,6,0.0 +20667,10,31,45,0.0 +20667,45,9.5,9,0.0 +20667,75,7.75,16,0.0 +20667,28,45.6,2,0.0 +20667,29,123.79,50,0.0 +20667,37,26,19,0.0 +20667,61,28.5,29,0.0 +20667,67,14,9,0.0 +20667,77,13,11,0.0 +20667,18,62.5,39,0.0 +20667,69,36,35,0.0 +20667,20,81,42,0.0 +20667,32,32,18,0.0 +20667,74,10,14,0.0 +20667,59,55,44,0.0 +20668,55,24,10,0.0 +20668,3,10,50,0.0 +20668,16,17.45,22,0.0 +20668,25,14,32,0.0 +20668,34,14,27,0.0 +20668,67,14,22,0.0 +20668,72,34.8,24,0.0 +20668,74,10,4,0.0 +20668,51,53,7,0.0 +20668,68,12.5,10,0.0 +20668,66,17,30,0.0 +20668,11,21,4,0.0 +20668,75,7.75,44,0.0 +20668,12,38,2,0.0 +20668,58,13.25,27,0.0 +20668,35,18,18,0.0 +20668,54,7.45,9,0.0 +20668,30,25.89,19,0.0 +20668,57,19.5,50,0.0 +20668,70,15,35,0.0 +20668,53,32.8,19,0.0 +20668,8,40,3,0.0 +20668,23,9,40,0.0 +20668,49,20,23,0.0 +20668,46,12,7,0.0 +20668,59,55,1,0.0 +20668,76,18,32,0.0 +20668,62,49.3,2,0.0 +20668,40,18.4,7,0.0 +20668,1,18,40,0.0 +20668,77,13,49,0.0 +20669,24,4.5,47,0.0 +20669,71,21.5,20,0.0 +20669,56,38,39,0.0 +20669,68,12.5,17,0.0 +20669,25,14,27,0.0 +20669,60,34,23,0.0 +20669,54,7.45,32,0.0 +20669,5,21.35,3,0.0 +20669,34,14,3,0.0 +20669,46,12,43,0.0 +20669,13,6,5,0.0 +20669,58,13.25,12,0.0 +20669,20,81,47,0.0 +20669,65,21.05,22,0.0 +20669,76,18,7,0.0 +20669,48,12.75,47,0.0 +20669,47,9.5,49,0.0 +20669,57,19.5,31,0.0 +20669,17,39,12,0.0 +20669,74,10,31,0.0 +20669,45,9.5,43,0.0 +20669,63,43.9,15,0.0 +20669,31,12.5,9,0.0 +20669,49,20,39,0.0 +20669,27,43.9,19,0.0 +20669,14,23.25,13,0.0 +20669,77,13,6,0.0 +20669,1,18,50,0.0 +20669,51,53,27,0.0 +20669,61,28.5,49,0.0 +20669,75,7.75,20,0.0 +20669,12,38,43,0.0 +20670,27,43.9,29,0.0 +20670,34,14,37,0.0 +20670,45,9.5,17,0.0 +20670,1,18,30,0.0 +20670,59,55,25,0.0 +20670,69,36,39,0.0 +20670,62,49.3,11,0.0 +20670,68,12.5,19,0.0 +20670,49,20,36,0.0 +20670,60,34,31,0.0 +20670,77,13,11,0.0 +20670,4,22,23,0.0 +20670,22,21,21,0.0 +20671,53,32.8,37,0.0 +20671,1,18,43,0.0 +20671,8,40,22,0.0 +20671,54,7.45,24,0.0 +20671,37,26,4,0.0 +20671,33,2.5,43,0.0 +20671,65,21.05,27,0.0 +20671,73,15,2,0.0 +20671,42,14,29,0.0 +20671,71,21.5,34,0.0 +20671,11,21,36,0.0 +20671,3,10,12,0.0 +20671,31,12.5,23,0.0 +20671,61,28.5,2,0.0 +20671,12,38,45,0.0 +20671,77,13,28,0.0 +20671,75,7.75,13,0.0 +20671,70,15,42,0.0 +20671,25,14,24,0.0 +20671,63,43.9,30,0.0 +20671,38,263.5,45,0.0 +20671,51,53,30,0.0 +20671,15,15.5,27,0.0 +20671,35,18,19,0.0 +20671,36,19,20,0.0 +20671,64,33.25,2,0.0 +20671,58,13.25,44,0.0 +20671,9,97,17,0.0 +20671,49,20,10,0.0 +20671,39,18,17,0.0 +20671,24,4.5,7,0.0 +20671,6,25,32,0.0 +20671,46,12,8,0.0 +20671,5,21.35,13,0.0 +20671,44,19.45,30,0.0 +20671,72,34.8,42,0.0 +20671,16,17.45,50,0.0 +20671,60,34,36,0.0 +20671,32,32,14,0.0 +20671,14,23.25,14,0.0 +20671,57,19.5,4,0.0 +20671,62,49.3,11,0.0 +20671,45,9.5,5,0.0 +20671,43,46,45,0.0 +20671,66,17,28,0.0 +20671,48,12.75,49,0.0 +20671,26,31.23,7,0.0 +20671,30,25.89,10,0.0 +20671,29,123.79,9,0.0 +20671,68,12.5,20,0.0 +20671,10,31,3,0.0 +20671,27,43.9,45,0.0 +20672,35,18,8,0.0 +20672,73,15,8,0.0 +20672,37,26,27,0.0 +20672,41,9.65,2,0.0 +20672,10,31,15,0.0 +20672,53,32.8,17,0.0 +20672,38,263.5,28,0.0 +20672,13,6,14,0.0 +20672,58,13.25,43,0.0 +20672,44,19.45,12,0.0 +20672,69,36,5,0.0 +20672,59,55,10,0.0 +20672,60,34,25,0.0 +20672,14,23.25,18,0.0 +20672,43,46,33,0.0 +20672,7,30,39,0.0 +20672,28,45.6,37,0.0 +20672,16,17.45,18,0.0 +20672,1,18,3,0.0 +20672,11,21,34,0.0 +20672,33,2.5,43,0.0 +20672,25,14,16,0.0 +20672,5,21.35,43,0.0 +20672,75,7.75,44,0.0 +20673,13,6,30,0.0 +20673,1,18,23,0.0 +20673,50,16.25,28,0.0 +20673,54,7.45,6,0.0 +20673,20,81,37,0.0 +20673,42,14,22,0.0 +20673,6,25,14,0.0 +20673,16,17.45,32,0.0 +20673,28,45.6,32,0.0 +20673,76,18,44,0.0 +20673,2,19,31,0.0 +20673,11,21,20,0.0 +20673,36,19,38,0.0 +20673,68,12.5,6,0.0 +20673,46,12,33,0.0 +20673,59,55,23,0.0 +20673,51,53,3,0.0 +20673,7,30,9,0.0 +20673,10,31,30,0.0 +20673,67,14,10,0.0 +20673,14,23.25,42,0.0 +20673,49,20,14,0.0 +20673,5,21.35,7,0.0 +20673,9,97,38,0.0 +20673,26,31.23,43,0.0 +20673,47,9.5,36,0.0 +20673,77,13,17,0.0 +20673,27,43.9,25,0.0 +20673,55,24,38,0.0 +20673,58,13.25,43,0.0 +20673,71,21.5,32,0.0 +20673,60,34,36,0.0 +20673,69,36,19,0.0 +20673,3,10,25,0.0 +20673,37,26,48,0.0 +20673,72,34.8,9,0.0 +20673,53,32.8,16,0.0 +20673,56,38,25,0.0 +20673,21,10,46,0.0 +20673,48,12.75,12,0.0 +20673,12,38,12,0.0 +20673,22,21,16,0.0 +20673,23,9,4,0.0 +20673,66,17,33,0.0 +20673,38,263.5,11,0.0 +20673,73,15,22,0.0 +20673,29,123.79,18,0.0 +20673,25,14,39,0.0 +20673,34,14,42,0.0 +20673,31,12.5,33,0.0 +20673,63,43.9,21,0.0 +20673,8,40,38,0.0 +20673,64,33.25,42,0.0 +20673,62,49.3,24,0.0 +20673,57,19.5,21,0.0 +20673,4,22,11,0.0 +20673,45,9.5,8,0.0 +20673,15,15.5,30,0.0 +20673,32,32,24,0.0 +20673,30,25.89,14,0.0 +20673,40,18.4,20,0.0 +20673,24,4.5,36,0.0 +20673,39,18,10,0.0 +20673,18,62.5,12,0.0 +20673,70,15,7,0.0 +20673,43,46,33,0.0 +20673,52,7,32,0.0 +20674,50,16.25,41,0.0 +20674,61,28.5,4,0.0 +20674,32,32,12,0.0 +20674,65,21.05,15,0.0 +20674,20,81,49,0.0 +20674,18,62.5,23,0.0 +20674,41,9.65,32,0.0 +20674,54,7.45,12,0.0 +20674,19,9.2,5,0.0 +20674,17,39,24,0.0 +20674,77,13,46,0.0 +20674,37,26,24,0.0 +20674,52,7,32,0.0 +20675,56,38,38,0.0 +20675,45,9.5,17,0.0 +20675,53,32.8,39,0.0 +20675,66,17,41,0.0 +20675,39,18,17,0.0 +20675,26,31.23,29,0.0 +20675,75,7.75,8,0.0 +20675,71,21.5,29,0.0 +20675,1,18,50,0.0 +20675,67,14,18,0.0 +20675,43,46,37,0.0 +20675,13,6,30,0.0 +20675,37,26,32,0.0 +20675,58,13.25,22,0.0 +20675,65,21.05,15,0.0 +20675,50,16.25,29,0.0 +20675,28,45.6,46,0.0 +20675,3,10,39,0.0 +20675,16,17.45,9,0.0 +20675,12,38,28,0.0 +20675,52,7,16,0.0 +20675,5,21.35,3,0.0 +20675,7,30,10,0.0 +20675,4,22,13,0.0 +20675,11,21,10,0.0 +20675,60,34,38,0.0 +20675,29,123.79,7,0.0 +20675,18,62.5,9,0.0 +20675,70,15,21,0.0 +20675,32,32,45,0.0 +20675,48,12.75,14,0.0 +20675,14,23.25,4,0.0 +20675,6,25,21,0.0 +20675,2,19,43,0.0 +20675,10,31,29,0.0 +20675,31,12.5,29,0.0 +20675,68,12.5,46,0.0 +20675,42,14,33,0.0 +20675,64,33.25,16,0.0 +20675,51,53,49,0.0 +20675,24,4.5,38,0.0 +20675,34,14,3,0.0 +20675,73,15,17,0.0 +20675,40,18.4,10,0.0 +20676,34,14,18,0.0 +20676,75,7.75,45,0.0 +20676,28,45.6,38,0.0 +20676,2,19,12,0.0 +20676,62,49.3,26,0.0 +20676,71,21.5,12,0.0 +20676,48,12.75,7,0.0 +20676,13,6,24,0.0 +20676,37,26,48,0.0 +20676,76,18,37,0.0 +20676,77,13,39,0.0 +20676,53,32.8,1,0.0 +20676,38,263.5,23,0.0 +20676,47,9.5,47,0.0 +20676,10,31,14,0.0 +20676,32,32,5,0.0 +20676,73,15,24,0.0 +20676,24,4.5,26,0.0 +20676,50,16.25,23,0.0 +20676,21,10,45,0.0 +20676,15,15.5,42,0.0 +20676,42,14,25,0.0 +20676,55,24,34,0.0 +20676,7,30,26,0.0 +20676,25,14,48,0.0 +20676,9,97,23,0.0 +20676,18,62.5,1,0.0 +20676,64,33.25,8,0.0 +20676,27,43.9,2,0.0 +20676,65,21.05,37,0.0 +20676,14,23.25,20,0.0 +20676,59,55,48,0.0 +20676,6,25,18,0.0 +20676,16,17.45,25,0.0 +20676,26,31.23,20,0.0 +20676,54,7.45,36,0.0 +20676,41,9.65,16,0.0 +20676,12,38,21,0.0 +20676,1,18,16,0.0 +20676,20,81,42,0.0 +20676,40,18.4,4,0.0 +20676,19,9.2,50,0.0 +20676,70,15,27,0.0 +20676,46,12,34,0.0 +20676,35,18,41,0.0 +20676,5,21.35,39,0.0 +20676,45,9.5,14,0.0 +20676,60,34,43,0.0 +20676,29,123.79,26,0.0 +20676,23,9,18,0.0 +20676,67,14,12,0.0 +20676,61,28.5,17,0.0 +20676,44,19.45,46,0.0 +20676,17,39,34,0.0 +20676,30,25.89,7,0.0 +20676,33,2.5,26,0.0 +20676,51,53,35,0.0 +20676,8,40,28,0.0 +20676,68,12.5,26,0.0 +20676,4,22,43,0.0 +20676,31,12.5,37,0.0 +20676,69,36,4,0.0 +20676,43,46,50,0.0 +20676,22,21,49,0.0 +20676,52,7,18,0.0 +20676,39,18,18,0.0 +20676,56,38,36,0.0 +20676,11,21,8,0.0 +20676,57,19.5,39,0.0 +20676,49,20,50,0.0 +20677,74,10,38,0.0 +20677,11,21,20,0.0 +20677,8,40,15,0.0 +20677,47,9.5,7,0.0 +20677,16,17.45,26,0.0 +20677,43,46,49,0.0 +20677,75,7.75,29,0.0 +20677,7,30,40,0.0 +20677,69,36,22,0.0 +20677,45,9.5,48,0.0 +20677,60,34,35,0.0 +20677,2,19,27,0.0 +20677,37,26,11,0.0 +20677,33,2.5,46,0.0 +20677,76,18,5,0.0 +20677,63,43.9,35,0.0 +20677,23,9,15,0.0 +20677,68,12.5,30,0.0 +20677,42,14,14,0.0 +20677,67,14,49,0.0 +20677,17,39,12,0.0 +20677,46,12,10,0.0 +20677,25,14,21,0.0 +20677,29,123.79,19,0.0 +20677,61,28.5,29,0.0 +20677,50,16.25,12,0.0 +20677,20,81,19,0.0 +20677,31,12.5,23,0.0 +20677,19,9.2,43,0.0 +20677,70,15,4,0.0 +20677,9,97,34,0.0 +20677,66,17,3,0.0 +20677,54,7.45,45,0.0 +20677,56,38,38,0.0 +20677,32,32,1,0.0 +20677,34,14,31,0.0 +20677,6,25,4,0.0 +20677,73,15,20,0.0 +20677,4,22,17,0.0 +20677,62,49.3,32,0.0 +20677,53,32.8,25,0.0 +20677,18,62.5,42,0.0 +20677,13,6,37,0.0 +20677,72,34.8,48,0.0 +20677,27,43.9,11,0.0 +20677,21,10,26,0.0 +20677,51,53,48,0.0 +20677,39,18,25,0.0 +20677,58,13.25,49,0.0 +20677,28,45.6,36,0.0 +20677,77,13,7,0.0 +20677,24,4.5,37,0.0 +20677,52,7,21,0.0 +20677,10,31,46,0.0 +20677,55,24,47,0.0 +20677,48,12.75,49,0.0 +20677,57,19.5,6,0.0 +20677,71,21.5,43,0.0 +20677,36,19,40,0.0 +20677,59,55,4,0.0 +20677,14,23.25,18,0.0 +20677,35,18,11,0.0 +20677,1,18,6,0.0 +20677,26,31.23,19,0.0 +20677,3,10,6,0.0 +20677,40,18.4,12,0.0 +20677,49,20,15,0.0 +20677,30,25.89,22,0.0 +20677,12,38,36,0.0 +20677,5,21.35,32,0.0 +20677,64,33.25,48,0.0 +20677,38,263.5,49,0.0 +20677,65,21.05,9,0.0 +20677,15,15.5,1,0.0 +20677,41,9.65,10,0.0 +20677,22,21,47,0.0 +20678,36,19,20,0.0 +20678,69,36,13,0.0 +20678,49,20,48,0.0 +20678,37,26,42,0.0 +20678,22,21,36,0.0 +20678,51,53,49,0.0 +20678,57,19.5,24,0.0 +20678,53,32.8,34,0.0 +20678,3,10,28,0.0 +20678,72,34.8,44,0.0 +20678,42,14,37,0.0 +20678,34,14,9,0.0 +20678,32,32,38,0.0 +20678,47,9.5,20,0.0 +20678,2,19,27,0.0 +20678,54,7.45,44,0.0 +20678,52,7,20,0.0 +20678,29,123.79,48,0.0 +20678,59,55,49,0.0 +20678,9,97,18,0.0 +20678,45,9.5,32,0.0 +20678,77,13,21,0.0 +20678,26,31.23,34,0.0 +20678,73,15,15,0.0 +20678,60,34,3,0.0 +20678,58,13.25,14,0.0 +20678,17,39,2,0.0 +20679,12,38,10,0.0 +20679,30,25.89,7,0.0 +20679,59,55,47,0.0 +20679,49,20,30,0.0 +20679,62,49.3,22,0.0 +20679,31,12.5,48,0.0 +20679,56,38,47,0.0 +20679,26,31.23,28,0.0 +20679,13,6,2,0.0 +20679,69,36,8,0.0 +20679,51,53,41,0.0 +20679,8,40,24,0.0 +20679,33,2.5,44,0.0 +20679,7,30,16,0.0 +20679,42,14,27,0.0 +20679,11,21,17,0.0 +20679,60,34,5,0.0 +20679,3,10,7,0.0 +20679,34,14,36,0.0 +20679,38,263.5,1,0.0 +20679,14,23.25,23,0.0 +20679,53,32.8,9,0.0 +20679,43,46,38,0.0 +20679,74,10,35,0.0 +20679,35,18,22,0.0 +20679,76,18,46,0.0 +20679,64,33.25,26,0.0 +20679,24,4.5,33,0.0 +20679,18,62.5,43,0.0 +20679,10,31,3,0.0 +20679,50,16.25,18,0.0 +20679,52,7,10,0.0 +20679,29,123.79,40,0.0 +20679,75,7.75,42,0.0 +20679,46,12,7,0.0 +20679,61,28.5,17,0.0 +20679,48,12.75,16,0.0 +20679,22,21,23,0.0 +20679,37,26,40,0.0 +20679,2,19,40,0.0 +20679,17,39,12,0.0 +20679,39,18,6,0.0 +20679,25,14,6,0.0 +20679,68,12.5,31,0.0 +20679,9,97,31,0.0 +20679,36,19,36,0.0 +20679,65,21.05,37,0.0 +20679,71,21.5,2,0.0 +20679,73,15,9,0.0 +20679,21,10,17,0.0 +20679,77,13,5,0.0 +20679,19,9.2,49,0.0 +20679,70,15,44,0.0 +20679,41,9.65,18,0.0 +20679,54,7.45,5,0.0 +20679,40,18.4,42,0.0 +20680,68,12.5,46,0.0 +20680,14,23.25,30,0.0 +20680,45,9.5,25,0.0 +20680,21,10,36,0.0 +20680,76,18,26,0.0 +20680,60,34,45,0.0 +20680,20,81,48,0.0 +20680,6,25,13,0.0 +20680,66,17,32,0.0 +20680,19,9.2,49,0.0 +20680,11,21,35,0.0 +20680,36,19,23,0.0 +20680,7,30,5,0.0 +20680,18,62.5,33,0.0 +20681,21,10,35,0.0 +20681,53,32.8,25,0.0 +20681,7,30,45,0.0 +20681,13,6,3,0.0 +20681,69,36,23,0.0 +20681,15,15.5,17,0.0 +20681,39,18,32,0.0 +20681,47,9.5,4,0.0 +20681,1,18,13,0.0 +20681,40,18.4,41,0.0 +20681,57,19.5,16,0.0 +20681,32,32,38,0.0 +20681,5,21.35,16,0.0 +20681,65,21.05,34,0.0 +20681,48,12.75,5,0.0 +20681,71,21.5,41,0.0 +20681,14,23.25,17,0.0 +20681,17,39,25,0.0 +20681,27,43.9,7,0.0 +20681,45,9.5,37,0.0 +20681,22,21,14,0.0 +20681,56,38,9,0.0 +20681,50,16.25,47,0.0 +20681,38,263.5,24,0.0 +20681,12,38,10,0.0 +20681,26,31.23,46,0.0 +20681,37,26,47,0.0 +20681,64,33.25,17,0.0 +20681,16,17.45,24,0.0 +20681,74,10,26,0.0 +20681,67,14,43,0.0 +20681,25,14,43,0.0 +20681,18,62.5,3,0.0 +20681,33,2.5,42,0.0 +20681,11,21,4,0.0 +20681,70,15,19,0.0 +20681,43,46,24,0.0 +20682,67,14,28,0.0 +20682,19,9.2,10,0.0 +20682,11,21,21,0.0 +20682,2,19,27,0.0 +20682,56,38,13,0.0 +20682,17,39,45,0.0 +20682,53,32.8,41,0.0 +20682,36,19,39,0.0 +20682,18,62.5,47,0.0 +20683,36,19,18,0.0 +20683,22,21,1,0.0 +20683,67,14,46,0.0 +20683,21,10,27,0.0 +20683,47,9.5,48,0.0 +20683,44,19.45,25,0.0 +20683,32,32,2,0.0 +20683,13,6,15,0.0 +20683,72,34.8,47,0.0 +20683,25,14,27,0.0 +20683,12,38,8,0.0 +20683,53,32.8,5,0.0 +20683,35,18,34,0.0 +20683,51,53,30,0.0 +20683,14,23.25,12,0.0 +20683,20,81,49,0.0 +20683,62,49.3,40,0.0 +20683,38,263.5,45,0.0 +20683,49,20,32,0.0 +20683,37,26,50,0.0 +20683,68,12.5,9,0.0 +20683,43,46,34,0.0 +20683,28,45.6,18,0.0 +20683,15,15.5,30,0.0 +20683,31,12.5,10,0.0 +20683,55,24,50,0.0 +20683,8,40,28,0.0 +20683,41,9.65,38,0.0 +20683,75,7.75,34,0.0 +20683,29,123.79,29,0.0 +20683,30,25.89,2,0.0 +20683,11,21,46,0.0 +20683,19,9.2,33,0.0 +20683,56,38,12,0.0 +20683,2,19,19,0.0 +20683,16,17.45,13,0.0 +20683,10,31,18,0.0 +20683,4,22,49,0.0 +20683,45,9.5,16,0.0 +20683,24,4.5,40,0.0 +20683,1,18,42,0.0 +20683,60,34,8,0.0 +20683,5,21.35,4,0.0 +20683,64,33.25,14,0.0 +20683,3,10,49,0.0 +20683,34,14,25,0.0 +20683,57,19.5,40,0.0 +20683,58,13.25,1,0.0 +20683,40,18.4,31,0.0 +20683,70,15,3,0.0 +20683,63,43.9,2,0.0 +20683,50,16.25,22,0.0 +20683,48,12.75,30,0.0 +20683,77,13,9,0.0 +20683,76,18,16,0.0 +20683,66,17,17,0.0 +20683,6,25,26,0.0 +20683,27,43.9,32,0.0 +20683,18,62.5,5,0.0 +20683,71,21.5,10,0.0 +20683,59,55,10,0.0 +20684,70,15,35,0.0 +20684,60,34,14,0.0 +20684,35,18,5,0.0 +20684,30,25.89,3,0.0 +20684,57,19.5,1,0.0 +20684,23,9,2,0.0 +20684,29,123.79,30,0.0 +20684,52,7,12,0.0 +20684,51,53,1,0.0 +20684,31,12.5,15,0.0 +20684,48,12.75,3,0.0 +20684,56,38,19,0.0 +20684,25,14,34,0.0 +20684,16,17.45,24,0.0 +20684,17,39,48,0.0 +20684,33,2.5,28,0.0 +20684,27,43.9,21,0.0 +20684,4,22,15,0.0 +20684,44,19.45,24,0.0 +20684,73,15,36,0.0 +20684,69,36,1,0.0 +20684,71,21.5,32,0.0 +20684,66,17,37,0.0 +20684,40,18.4,15,0.0 +20684,72,34.8,3,0.0 +20684,7,30,50,0.0 +20684,3,10,47,0.0 +20684,24,4.5,32,0.0 +20684,64,33.25,8,0.0 +20684,10,31,32,0.0 +20684,61,28.5,44,0.0 +20684,67,14,2,0.0 +20684,43,46,9,0.0 +20684,26,31.23,43,0.0 +20684,53,32.8,27,0.0 +20684,21,10,30,0.0 +20684,19,9.2,40,0.0 +20684,47,9.5,25,0.0 +20684,5,21.35,30,0.0 +20684,28,45.6,8,0.0 +20684,62,49.3,5,0.0 +20684,14,23.25,43,0.0 +20684,45,9.5,45,0.0 +20684,32,32,38,0.0 +20684,38,263.5,32,0.0 +20684,9,97,44,0.0 +20684,68,12.5,40,0.0 +20684,37,26,8,0.0 +20684,77,13,36,0.0 +20684,74,10,46,0.0 +20684,55,24,5,0.0 +20684,65,21.05,49,0.0 +20684,59,55,31,0.0 +20684,34,14,45,0.0 +20684,36,19,11,0.0 +20684,46,12,48,0.0 +20684,54,7.45,9,0.0 +20684,8,40,44,0.0 +20684,15,15.5,32,0.0 +20684,12,38,21,0.0 +20685,61,28.5,26,0.0 +20685,5,21.35,39,0.0 +20685,58,13.25,42,0.0 +20685,13,6,40,0.0 +20685,37,26,14,0.0 +20685,68,12.5,35,0.0 +20685,51,53,1,0.0 +20685,33,2.5,27,0.0 +20685,22,21,23,0.0 +20685,16,17.45,24,0.0 +20685,41,9.65,43,0.0 +20685,7,30,49,0.0 +20685,23,9,26,0.0 +20685,1,18,33,0.0 +20685,14,23.25,1,0.0 +20685,28,45.6,40,0.0 +20685,26,31.23,38,0.0 +20685,62,49.3,7,0.0 +20685,32,32,8,0.0 +20685,66,17,23,0.0 +20685,60,34,20,0.0 +20685,18,62.5,45,0.0 +20685,21,10,2,0.0 +20685,45,9.5,25,0.0 +20685,39,18,37,0.0 +20685,11,21,14,0.0 +20685,3,10,47,0.0 +20685,52,7,25,0.0 +20685,25,14,22,0.0 +20685,6,25,47,0.0 +20685,59,55,24,0.0 +20685,29,123.79,38,0.0 +20685,55,24,30,0.0 +20685,47,9.5,2,0.0 +20685,73,15,18,0.0 +20685,36,19,47,0.0 +20685,4,22,16,0.0 +20685,65,21.05,17,0.0 +20685,8,40,34,0.0 +20685,30,25.89,24,0.0 +20685,19,9.2,6,0.0 +20685,40,18.4,27,0.0 +20685,24,4.5,8,0.0 +20685,12,38,37,0.0 +20685,53,32.8,49,0.0 +20685,20,81,13,0.0 +20685,48,12.75,11,0.0 +20685,57,19.5,13,0.0 +20685,46,12,3,0.0 +20686,5,21.35,11,0.0 +20686,64,33.25,30,0.0 +20686,77,13,8,0.0 +20686,9,97,5,0.0 +20686,11,21,16,0.0 +20686,42,14,35,0.0 +20687,38,263.5,26,0.0 +20688,36,19,33,0.0 +20688,17,39,31,0.0 +20688,69,36,42,0.0 +20688,34,14,13,0.0 +20688,77,13,21,0.0 +20688,27,43.9,12,0.0 +20688,55,24,35,0.0 +20688,51,53,13,0.0 +20688,41,9.65,32,0.0 +20688,22,21,46,0.0 +20688,20,81,49,0.0 +20688,15,15.5,25,0.0 +20688,1,18,38,0.0 +20688,2,19,12,0.0 +20688,66,17,9,0.0 +20688,73,15,21,0.0 +20688,30,25.89,28,0.0 +20688,75,7.75,27,0.0 +20688,37,26,33,0.0 +20688,19,9.2,8,0.0 +20688,61,28.5,45,0.0 +20688,45,9.5,8,0.0 +20688,3,10,47,0.0 +20688,28,45.6,15,0.0 +20688,11,21,4,0.0 +20688,38,263.5,4,0.0 +20688,14,23.25,27,0.0 +20689,59,55,50,0.0 +20689,66,17,8,0.0 +20689,65,21.05,18,0.0 +20689,7,30,18,0.0 +20689,3,10,9,0.0 +20689,24,4.5,49,0.0 +20689,34,14,18,0.0 +20689,71,21.5,20,0.0 +20689,9,97,43,0.0 +20689,68,12.5,23,0.0 +20689,76,18,20,0.0 +20689,13,6,44,0.0 +20689,63,43.9,16,0.0 +20689,44,19.45,49,0.0 +20689,53,32.8,11,0.0 +20689,48,12.75,32,0.0 +20689,40,18.4,33,0.0 +20689,46,12,36,0.0 +20689,69,36,44,0.0 +20689,57,19.5,22,0.0 +20689,31,12.5,45,0.0 +20689,22,21,42,0.0 +20689,8,40,10,0.0 +20689,12,38,21,0.0 +20689,20,81,23,0.0 +20689,5,21.35,37,0.0 +20689,77,13,50,0.0 +20689,52,7,35,0.0 +20689,19,9.2,3,0.0 +20689,14,23.25,22,0.0 +20689,37,26,16,0.0 +20689,25,14,23,0.0 +20689,18,62.5,31,0.0 +20689,70,15,31,0.0 +20689,42,14,38,0.0 +20689,55,24,6,0.0 +20689,17,39,1,0.0 +20689,43,46,19,0.0 +20689,10,31,36,0.0 +20689,73,15,30,0.0 +20689,23,9,8,0.0 +20689,60,34,25,0.0 +20689,47,9.5,5,0.0 +20689,29,123.79,36,0.0 +20689,1,18,28,0.0 +20689,26,31.23,16,0.0 +20689,41,9.65,18,0.0 +20689,32,32,48,0.0 +20689,72,34.8,9,0.0 +20689,74,10,20,0.0 +20689,49,20,13,0.0 +20689,27,43.9,29,0.0 +20689,33,2.5,13,0.0 +20689,62,49.3,3,0.0 +20689,6,25,17,0.0 +20690,37,26,14,0.0 +20690,71,21.5,2,0.0 +20690,76,18,48,0.0 +20690,49,20,17,0.0 +20690,40,18.4,11,0.0 +20690,31,12.5,21,0.0 +20690,32,32,38,0.0 +20690,12,38,26,0.0 +20690,4,22,35,0.0 +20690,47,9.5,44,0.0 +20690,14,23.25,35,0.0 +20690,72,34.8,19,0.0 +20690,28,45.6,41,0.0 +20690,38,263.5,15,0.0 +20690,13,6,18,0.0 +20690,23,9,23,0.0 +20690,11,21,4,0.0 +20690,29,123.79,47,0.0 +20690,5,21.35,2,0.0 +20690,35,18,6,0.0 +20690,68,12.5,42,0.0 +20690,74,10,27,0.0 +20690,70,15,19,0.0 +20690,24,4.5,8,0.0 +20690,9,97,19,0.0 +20690,51,53,30,0.0 +20690,54,7.45,40,0.0 +20690,17,39,33,0.0 +20690,64,33.25,18,0.0 +20690,22,21,12,0.0 +20690,63,43.9,30,0.0 +20690,18,62.5,10,0.0 +20690,30,25.89,18,0.0 +20690,25,14,23,0.0 +20691,31,12.5,3,0.0 +20691,36,19,43,0.0 +20691,1,18,29,0.0 +20691,7,30,7,0.0 +20691,47,9.5,2,0.0 +20691,65,21.05,3,0.0 +20691,16,17.45,40,0.0 +20691,2,19,37,0.0 +20691,60,34,9,0.0 +20691,24,4.5,45,0.0 +20691,40,18.4,28,0.0 +20691,57,19.5,23,0.0 +20691,6,25,24,0.0 +20691,46,12,9,0.0 +20691,66,17,46,0.0 +20691,29,123.79,40,0.0 +20691,13,6,18,0.0 +20691,54,7.45,31,0.0 +20691,18,62.5,3,0.0 +20691,45,9.5,12,0.0 +20691,59,55,9,0.0 +20691,75,7.75,38,0.0 +20691,44,19.45,23,0.0 +20691,38,263.5,46,0.0 +20691,9,97,23,0.0 +20691,77,13,49,0.0 +20691,37,26,20,0.0 +20691,70,15,41,0.0 +20691,20,81,11,0.0 +20691,73,15,28,0.0 +20691,21,10,11,0.0 +20691,68,12.5,26,0.0 +20692,20,81,5,0.0 +20692,6,25,29,0.0 +20692,21,10,14,0.0 +20692,47,9.5,41,0.0 +20692,52,7,32,0.0 +20692,14,23.25,17,0.0 +20692,3,10,35,0.0 +20692,54,7.45,49,0.0 +20692,10,31,6,0.0 +20692,71,21.5,38,0.0 +20692,68,12.5,38,0.0 +20692,17,39,29,0.0 +20692,2,19,5,0.0 +20692,7,30,24,0.0 +20692,22,21,5,0.0 +20692,76,18,35,0.0 +20692,27,43.9,48,0.0 +20692,57,19.5,24,0.0 +20692,24,4.5,35,0.0 +20692,32,32,36,0.0 +20692,30,25.89,36,0.0 +20692,4,22,45,0.0 +20692,59,55,49,0.0 +20692,16,17.45,13,0.0 +20692,55,24,40,0.0 +20692,46,12,47,0.0 +20692,12,38,8,0.0 +20692,34,14,11,0.0 +20692,72,34.8,31,0.0 +20692,37,26,46,0.0 +20692,8,40,7,0.0 +20692,43,46,18,0.0 +20692,38,263.5,13,0.0 +20692,29,123.79,36,0.0 +20692,28,45.6,44,0.0 +20692,61,28.5,14,0.0 +20692,9,97,2,0.0 +20692,63,43.9,29,0.0 +20692,74,10,25,0.0 +20692,45,9.5,38,0.0 +20692,1,18,24,0.0 +20693,54,7.45,45,0.0 +20693,73,15,39,0.0 +20693,18,62.5,38,0.0 +20693,27,43.9,5,0.0 +20693,53,32.8,45,0.0 +20693,70,15,18,0.0 +20693,58,13.25,29,0.0 +20693,5,21.35,34,0.0 +20693,6,25,12,0.0 +20693,50,16.25,45,0.0 +20693,26,31.23,38,0.0 +20693,22,21,19,0.0 +20693,33,2.5,30,0.0 +20693,44,19.45,33,0.0 +20693,25,14,27,0.0 +20693,37,26,23,0.0 +20693,77,13,4,0.0 +20693,75,7.75,18,0.0 +20693,59,55,39,0.0 +20693,14,23.25,21,0.0 +20693,38,263.5,13,0.0 +20693,20,81,23,0.0 +20693,32,32,11,0.0 +20693,19,9.2,35,0.0 +20693,67,14,26,0.0 +20693,34,14,46,0.0 +20693,71,21.5,38,0.0 +20693,9,97,5,0.0 +20693,43,46,8,0.0 +20693,41,9.65,25,0.0 +20693,2,19,11,0.0 +20693,1,18,48,0.0 +20693,31,12.5,14,0.0 +20693,62,49.3,47,0.0 +20693,60,34,3,0.0 +20693,21,10,25,0.0 +20693,46,12,49,0.0 +20693,48,12.75,41,0.0 +20693,36,19,31,0.0 +20693,55,24,21,0.0 +20693,42,14,25,0.0 +20693,7,30,17,0.0 +20693,74,10,26,0.0 +20693,13,6,34,0.0 +20693,28,45.6,1,0.0 +20693,17,39,47,0.0 +20693,47,9.5,22,0.0 +20693,3,10,4,0.0 +20693,10,31,20,0.0 +20693,72,34.8,36,0.0 +20694,14,23.25,34,0.0 +20694,6,25,31,0.0 +20694,19,9.2,32,0.0 +20694,23,9,18,0.0 +20694,44,19.45,3,0.0 +20694,30,25.89,19,0.0 +20694,47,9.5,49,0.0 +20694,5,21.35,28,0.0 +20694,58,13.25,31,0.0 +20694,25,14,5,0.0 +20694,16,17.45,7,0.0 +20695,13,6,12,0.0 +20695,31,12.5,17,0.0 +20695,28,45.6,30,0.0 +20695,9,97,46,0.0 +20695,29,123.79,3,0.0 +20695,71,21.5,4,0.0 +20695,39,18,21,0.0 +20695,61,28.5,11,0.0 +20695,45,9.5,3,0.0 +20695,52,7,29,0.0 +20695,50,16.25,8,0.0 +20695,56,38,5,0.0 +20695,3,10,44,0.0 +20695,8,40,4,0.0 +20695,73,15,50,0.0 +20695,10,31,33,0.0 +20695,74,10,27,0.0 +20695,25,14,19,0.0 +20695,19,9.2,50,0.0 +20695,20,81,15,0.0 +20695,35,18,22,0.0 +20695,1,18,31,0.0 +20695,40,18.4,4,0.0 +20695,2,19,7,0.0 +20695,68,12.5,3,0.0 +20695,67,14,16,0.0 +20695,16,17.45,36,0.0 +20696,25,14,34,0.0 +20696,72,34.8,30,0.0 +20696,13,6,37,0.0 +20696,58,13.25,27,0.0 +20696,6,25,7,0.0 +20696,56,38,20,0.0 +20696,19,9.2,29,0.0 +20696,45,9.5,3,0.0 +20696,22,21,27,0.0 +20696,27,43.9,44,0.0 +20696,76,18,24,0.0 +20696,32,32,25,0.0 +20696,55,24,13,0.0 +20696,17,39,19,0.0 +20696,34,14,23,0.0 +20696,66,17,26,0.0 +20696,23,9,6,0.0 +20696,59,55,35,0.0 +20696,15,15.5,29,0.0 +20696,41,9.65,39,0.0 +20696,35,18,18,0.0 +20696,14,23.25,15,0.0 +20696,43,46,26,0.0 +20696,4,22,25,0.0 +20697,32,32,13,0.0 +20697,19,9.2,30,0.0 +20697,15,15.5,34,0.0 +20697,64,33.25,3,0.0 +20697,11,21,32,0.0 +20697,69,36,30,0.0 +20697,24,4.5,6,0.0 +20697,58,13.25,11,0.0 +20697,41,9.65,45,0.0 +20697,33,2.5,36,0.0 +20697,77,13,35,0.0 +20697,44,19.45,28,0.0 +20697,71,21.5,22,0.0 +20697,59,55,22,0.0 +20698,44,19.45,35,0.0 +20698,59,55,42,0.0 +20698,17,39,1,0.0 +20698,16,17.45,3,0.0 +20698,67,14,12,0.0 +20698,11,21,22,0.0 +20698,26,31.23,35,0.0 +20698,30,25.89,32,0.0 +20698,73,15,12,0.0 +20698,10,31,6,0.0 +20698,19,9.2,27,0.0 +20698,45,9.5,23,0.0 +20698,49,20,31,0.0 +20698,20,81,33,0.0 +20698,12,38,24,0.0 +20698,46,12,19,0.0 +20698,23,9,33,0.0 +20698,74,10,45,0.0 +20698,7,30,7,0.0 +20698,64,33.25,40,0.0 +20698,42,14,8,0.0 +20698,62,49.3,17,0.0 +20698,21,10,42,0.0 +20698,1,18,46,0.0 +20698,75,7.75,27,0.0 +20698,61,28.5,38,0.0 +20698,53,32.8,35,0.0 +20698,56,38,38,0.0 +20698,39,18,38,0.0 +20699,62,49.3,48,0.0 +20699,67,14,10,0.0 +20699,48,12.75,9,0.0 +20699,56,38,8,0.0 +20699,66,17,37,0.0 +20699,32,32,44,0.0 +20699,60,34,33,0.0 +20699,54,7.45,9,0.0 +20699,26,31.23,43,0.0 +20699,41,9.65,27,0.0 +20699,42,14,36,0.0 +20699,12,38,30,0.0 +20699,21,10,37,0.0 +20699,70,15,45,0.0 +20699,63,43.9,46,0.0 +20699,30,25.89,36,0.0 +20699,46,12,15,0.0 +20699,39,18,23,0.0 +20699,36,19,25,0.0 +20699,74,10,33,0.0 +20699,16,17.45,31,0.0 +20699,23,9,38,0.0 +20699,8,40,43,0.0 +20699,14,23.25,49,0.0 +20699,10,31,31,0.0 +20699,43,46,38,0.0 +20699,52,7,1,0.0 +20699,68,12.5,28,0.0 +20699,2,19,19,0.0 +20699,58,13.25,2,0.0 +20699,4,22,39,0.0 +20699,61,28.5,3,0.0 +20699,31,12.5,2,0.0 +20699,27,43.9,22,0.0 +20699,34,14,22,0.0 +20699,24,4.5,47,0.0 +20699,35,18,29,0.0 +20699,29,123.79,23,0.0 +20699,7,30,4,0.0 +20699,59,55,20,0.0 +20699,45,9.5,20,0.0 +20699,49,20,28,0.0 +20699,71,21.5,41,0.0 +20699,13,6,11,0.0 +20699,17,39,6,0.0 +20699,11,21,20,0.0 +20699,19,9.2,11,0.0 +20699,9,97,48,0.0 +20699,1,18,5,0.0 +20699,6,25,18,0.0 +20699,28,45.6,41,0.0 +20699,77,13,28,0.0 +20699,25,14,23,0.0 +20700,26,31.23,5,0.0 +20700,56,38,15,0.0 +20700,29,123.79,45,0.0 +20700,69,36,24,0.0 +20700,64,33.25,25,0.0 +20700,52,7,18,0.0 +20700,32,32,2,0.0 +20700,25,14,9,0.0 +20700,41,9.65,4,0.0 +20700,71,21.5,29,0.0 +20700,4,22,45,0.0 +20700,21,10,19,0.0 +20700,61,28.5,40,0.0 +20700,77,13,8,0.0 +20700,47,9.5,7,0.0 +20700,5,21.35,44,0.0 +20700,51,53,29,0.0 +20700,70,15,16,0.0 +20700,59,55,27,0.0 +20700,54,7.45,38,0.0 +20700,63,43.9,14,0.0 +20700,68,12.5,9,0.0 +20700,57,19.5,30,0.0 +20700,72,34.8,33,0.0 +20700,1,18,47,0.0 +20700,12,38,27,0.0 +20700,6,25,1,0.0 +20700,67,14,42,0.0 +20700,17,39,36,0.0 +20700,2,19,4,0.0 +20700,62,49.3,36,0.0 +20700,13,6,31,0.0 +20700,24,4.5,16,0.0 +20700,74,10,28,0.0 +20700,75,7.75,33,0.0 +20700,7,30,47,0.0 +20700,44,19.45,1,0.0 +20700,30,25.89,36,0.0 +20700,65,21.05,5,0.0 +20700,38,263.5,44,0.0 +20700,45,9.5,11,0.0 +20700,43,46,18,0.0 +20700,58,13.25,12,0.0 +20700,60,34,13,0.0 +20700,66,17,1,0.0 +20700,14,23.25,24,0.0 +20700,36,19,44,0.0 +20700,23,9,13,0.0 +20700,50,16.25,38,0.0 +20700,27,43.9,24,0.0 +20700,76,18,31,0.0 +20700,55,24,10,0.0 +20700,37,26,36,0.0 +20700,19,9.2,27,0.0 +20701,43,46,5,0.0 +20701,16,17.45,6,0.0 +20701,5,21.35,12,0.0 +20701,24,4.5,18,0.0 +20701,41,9.65,43,0.0 +20701,72,34.8,7,0.0 +20701,33,2.5,15,0.0 +20701,52,7,25,0.0 +20701,69,36,8,0.0 +20701,34,14,28,0.0 +20701,2,19,41,0.0 +20701,20,81,18,0.0 +20701,9,97,44,0.0 +20701,8,40,11,0.0 +20701,68,12.5,29,0.0 +20701,11,21,32,0.0 +20701,74,10,15,0.0 +20701,77,13,30,0.0 +20701,7,30,21,0.0 +20701,54,7.45,48,0.0 +20701,63,43.9,10,0.0 +20701,10,31,5,0.0 +20701,58,13.25,49,0.0 +20701,47,9.5,38,0.0 +20701,61,28.5,16,0.0 +20701,75,7.75,30,0.0 +20701,55,24,11,0.0 +20701,22,21,27,0.0 +20701,56,38,46,0.0 +20701,31,12.5,39,0.0 +20701,48,12.75,46,0.0 +20701,49,20,26,0.0 +20701,40,18.4,5,0.0 +20701,3,10,25,0.0 +20701,23,9,34,0.0 +20701,27,43.9,49,0.0 +20701,76,18,47,0.0 +20702,13,6,16,0.0 +20702,24,4.5,29,0.0 +20702,62,49.3,12,0.0 +20702,5,21.35,16,0.0 +20702,67,14,6,0.0 +20702,77,13,41,0.0 +20702,72,34.8,49,0.0 +20702,28,45.6,32,0.0 +20702,70,15,30,0.0 +20702,14,23.25,32,0.0 +20702,30,25.89,11,0.0 +20702,22,21,31,0.0 +20702,12,38,32,0.0 +20702,36,19,37,0.0 +20702,47,9.5,42,0.0 +20702,8,40,14,0.0 +20702,44,19.45,6,0.0 +20702,4,22,7,0.0 +20702,34,14,9,0.0 +20702,15,15.5,13,0.0 +20702,38,263.5,32,0.0 +20702,19,9.2,25,0.0 +20702,53,32.8,50,0.0 +20702,16,17.45,39,0.0 +20702,27,43.9,44,0.0 +20702,73,15,8,0.0 +20702,69,36,39,0.0 +20702,65,21.05,30,0.0 +20702,33,2.5,20,0.0 +20702,31,12.5,27,0.0 +20702,50,16.25,16,0.0 +20702,56,38,8,0.0 +20702,60,34,38,0.0 +20702,29,123.79,20,0.0 +20702,7,30,32,0.0 +20702,59,55,16,0.0 +20702,10,31,42,0.0 +20702,9,97,19,0.0 +20702,64,33.25,24,0.0 +20702,48,12.75,6,0.0 +20702,26,31.23,20,0.0 +20702,49,20,47,0.0 +20702,43,46,7,0.0 +20702,51,53,24,0.0 +20702,41,9.65,40,0.0 +20702,57,19.5,24,0.0 +20702,66,17,24,0.0 +20702,55,24,50,0.0 +20702,35,18,39,0.0 +20702,3,10,47,0.0 +20702,42,14,25,0.0 +20702,45,9.5,50,0.0 +20702,58,13.25,4,0.0 +20702,37,26,42,0.0 +20702,52,7,31,0.0 +20702,63,43.9,32,0.0 +20702,2,19,38,0.0 +20702,61,28.5,24,0.0 +20702,71,21.5,2,0.0 +20702,32,32,48,0.0 +20702,75,7.75,33,0.0 +20702,46,12,46,0.0 +20702,25,14,24,0.0 +20702,6,25,13,0.0 +20702,40,18.4,10,0.0 +20702,54,7.45,38,0.0 +20702,76,18,29,0.0 +20702,11,21,17,0.0 +20703,30,25.89,24,0.0 +20703,59,55,6,0.0 +20703,4,22,16,0.0 +20703,11,21,3,0.0 +20703,19,9.2,11,0.0 +20703,1,18,26,0.0 +20703,9,97,5,0.0 +20703,67,14,29,0.0 +20703,2,19,2,0.0 +20703,57,19.5,11,0.0 +20703,53,32.8,29,0.0 +20703,54,7.45,15,0.0 +20704,28,45.6,2,0.0 +20704,63,43.9,23,0.0 +20704,46,12,43,0.0 +20704,29,123.79,19,0.0 +20704,58,13.25,17,0.0 +20704,23,9,23,0.0 +20704,17,39,10,0.0 +20704,5,21.35,14,0.0 +20704,6,25,35,0.0 +20704,49,20,33,0.0 +20704,52,7,3,0.0 +20704,67,14,16,0.0 +20704,48,12.75,10,0.0 +20704,24,4.5,16,0.0 +20704,72,34.8,28,0.0 +20704,53,32.8,48,0.0 +20704,18,62.5,30,0.0 +20704,21,10,10,0.0 +20704,20,81,25,0.0 +20704,71,21.5,21,0.0 +20704,45,9.5,47,0.0 +20704,15,15.5,12,0.0 +20704,27,43.9,46,0.0 +20704,57,19.5,41,0.0 +20704,11,21,38,0.0 +20704,37,26,22,0.0 +20704,55,24,32,0.0 +20704,10,31,17,0.0 +20704,69,36,25,0.0 +20704,74,10,27,0.0 +20704,30,25.89,20,0.0 +20704,32,32,27,0.0 +20704,41,9.65,18,0.0 +20705,72,34.8,49,0.0 +20705,30,25.89,39,0.0 +20705,38,263.5,6,0.0 +20705,64,33.25,37,0.0 +20705,56,38,15,0.0 +20705,33,2.5,22,0.0 +20705,52,7,28,0.0 +20705,21,10,7,0.0 +20705,20,81,50,0.0 +20705,37,26,47,0.0 +20705,1,18,25,0.0 +20705,35,18,27,0.0 +20705,26,31.23,41,0.0 +20705,51,53,34,0.0 +20705,5,21.35,49,0.0 +20705,71,21.5,26,0.0 +20705,23,9,13,0.0 +20705,41,9.65,16,0.0 +20705,60,34,40,0.0 +20705,69,36,42,0.0 +20705,13,6,8,0.0 +20705,68,12.5,9,0.0 +20705,42,14,44,0.0 +20705,36,19,49,0.0 +20705,43,46,14,0.0 +20705,29,123.79,22,0.0 +20705,19,9.2,25,0.0 +20705,49,20,43,0.0 +20705,10,31,23,0.0 +20705,28,45.6,14,0.0 +20705,53,32.8,23,0.0 +20705,58,13.25,43,0.0 +20705,57,19.5,1,0.0 +20706,47,9.5,6,0.0 +20706,6,25,47,0.0 +20706,69,36,25,0.0 +20706,2,19,17,0.0 +20706,13,6,25,0.0 +20706,17,39,35,0.0 +20706,16,17.45,27,0.0 +20706,26,31.23,2,0.0 +20706,43,46,49,0.0 +20706,76,18,50,0.0 +20706,70,15,23,0.0 +20706,23,9,29,0.0 +20706,15,15.5,22,0.0 +20706,7,30,5,0.0 +20706,53,32.8,39,0.0 +20706,33,2.5,3,0.0 +20706,63,43.9,42,0.0 +20706,42,14,39,0.0 +20706,71,21.5,50,0.0 +20706,31,12.5,20,0.0 +20706,28,45.6,9,0.0 +20706,54,7.45,28,0.0 +20706,73,15,35,0.0 +20706,36,19,19,0.0 +20706,8,40,38,0.0 +20706,27,43.9,22,0.0 +20706,19,9.2,46,0.0 +20706,25,14,44,0.0 +20706,58,13.25,16,0.0 +20706,52,7,5,0.0 +20706,18,62.5,15,0.0 +20706,55,24,40,0.0 +20706,10,31,31,0.0 +20706,14,23.25,2,0.0 +20706,48,12.75,11,0.0 +20706,30,25.89,35,0.0 +20706,56,38,5,0.0 +20706,68,12.5,32,0.0 +20706,11,21,9,0.0 +20707,7,30,29,0.0 +20707,46,12,12,0.0 +20707,65,21.05,12,0.0 +20707,29,123.79,28,0.0 +20707,63,43.9,39,0.0 +20707,42,14,23,0.0 +20708,65,21.05,18,0.0 +20708,23,9,40,0.0 +20708,39,18,32,0.0 +20708,19,9.2,23,0.0 +20708,68,12.5,38,0.0 +20708,52,7,7,0.0 +20708,41,9.65,30,0.0 +20708,63,43.9,24,0.0 +20708,3,10,20,0.0 +20708,28,45.6,12,0.0 +20708,72,34.8,46,0.0 +20708,75,7.75,12,0.0 +20708,43,46,46,0.0 +20708,29,123.79,40,0.0 +20708,40,18.4,27,0.0 +20708,73,15,15,0.0 +20708,71,21.5,36,0.0 +20708,4,22,9,0.0 +20708,2,19,41,0.0 +20708,9,97,49,0.0 +20708,45,9.5,35,0.0 +20708,66,17,24,0.0 +20708,31,12.5,45,0.0 +20708,56,38,10,0.0 +20708,34,14,29,0.0 +20708,61,28.5,20,0.0 +20708,38,263.5,43,0.0 +20708,53,32.8,22,0.0 +20708,76,18,43,0.0 +20708,13,6,28,0.0 +20708,25,14,23,0.0 +20708,11,21,49,0.0 +20708,22,21,23,0.0 +20708,7,30,41,0.0 +20708,42,14,18,0.0 +20708,58,13.25,37,0.0 +20708,54,7.45,41,0.0 +20708,46,12,11,0.0 +20708,44,19.45,23,0.0 +20708,55,24,9,0.0 +20708,49,20,27,0.0 +20708,24,4.5,10,0.0 +20708,62,49.3,27,0.0 +20708,69,36,38,0.0 +20708,5,21.35,23,0.0 +20708,57,19.5,46,0.0 +20708,48,12.75,21,0.0 +20708,26,31.23,5,0.0 +20708,30,25.89,25,0.0 +20708,17,39,37,0.0 +20708,64,33.25,16,0.0 +20708,27,43.9,3,0.0 +20708,36,19,23,0.0 +20708,70,15,23,0.0 +20708,8,40,19,0.0 +20708,20,81,50,0.0 +20708,16,17.45,27,0.0 +20708,32,32,14,0.0 +20708,33,2.5,29,0.0 +20708,77,13,19,0.0 +20708,59,55,35,0.0 +20708,6,25,28,0.0 +20708,18,62.5,49,0.0 +20708,67,14,7,0.0 +20708,47,9.5,27,0.0 +20708,21,10,17,0.0 +20708,10,31,35,0.0 +20708,1,18,30,0.0 +20708,37,26,3,0.0 +20708,74,10,5,0.0 +20708,15,15.5,29,0.0 +20709,9,97,27,0.0 +20709,22,21,30,0.0 +20709,53,32.8,38,0.0 +20709,39,18,17,0.0 +20709,73,15,39,0.0 +20710,38,263.5,44,0.0 +20710,27,43.9,11,0.0 +20710,77,13,14,0.0 +20710,54,7.45,46,0.0 +20710,2,19,2,0.0 +20710,16,17.45,26,0.0 +20710,33,2.5,39,0.0 +20710,44,19.45,35,0.0 +20710,23,9,47,0.0 +20710,43,46,5,0.0 +20710,29,123.79,13,0.0 +20710,10,31,27,0.0 +20710,28,45.6,27,0.0 +20710,7,30,48,0.0 +20710,19,9.2,48,0.0 +20710,46,12,20,0.0 +20710,41,9.65,41,0.0 +20710,35,18,43,0.0 +20711,20,81,7,0.0 +20711,73,15,28,0.0 +20711,57,19.5,41,0.0 +20711,65,21.05,43,0.0 +20711,72,34.8,38,0.0 +20711,71,21.5,11,0.0 +20711,24,4.5,43,0.0 +20711,47,9.5,49,0.0 +20711,62,49.3,13,0.0 +20711,46,12,24,0.0 +20711,77,13,6,0.0 +20711,63,43.9,32,0.0 +20711,69,36,47,0.0 +20711,16,17.45,32,0.0 +20711,11,21,7,0.0 +20711,19,9.2,6,0.0 +20711,55,24,10,0.0 +20711,40,18.4,4,0.0 +20711,2,19,15,0.0 +20711,6,25,10,0.0 +20711,21,10,27,0.0 +20711,51,53,33,0.0 +20711,54,7.45,16,0.0 +20711,30,25.89,34,0.0 +20711,26,31.23,23,0.0 +20711,22,21,38,0.0 +20711,74,10,23,0.0 +20711,38,263.5,48,0.0 +20711,76,18,46,0.0 +20711,68,12.5,7,0.0 +20711,50,16.25,20,0.0 +20711,13,6,12,0.0 +20711,43,46,47,0.0 +20711,48,12.75,38,0.0 +20711,66,17,32,0.0 +20712,74,10,9,0.0 +20712,23,9,16,0.0 +20712,77,13,46,0.0 +20712,40,18.4,46,0.0 +20712,63,43.9,6,0.0 +20712,54,7.45,44,0.0 +20712,57,19.5,14,0.0 +20712,46,12,47,0.0 +20712,71,21.5,13,0.0 +20712,14,23.25,16,0.0 +20712,34,14,15,0.0 +20712,68,12.5,42,0.0 +20712,58,13.25,15,0.0 +20712,21,10,9,0.0 +20712,2,19,39,0.0 +20712,75,7.75,15,0.0 +20712,9,97,11,0.0 +20712,3,10,48,0.0 +20712,19,9.2,45,0.0 +20712,67,14,13,0.0 +20712,32,32,37,0.0 +20712,65,21.05,2,0.0 +20712,29,123.79,11,0.0 +20712,60,34,27,0.0 +20712,27,43.9,50,0.0 +20712,6,25,32,0.0 +20712,50,16.25,27,0.0 +20712,73,15,32,0.0 +20712,38,263.5,28,0.0 +20712,1,18,24,0.0 +20712,59,55,35,0.0 +20712,18,62.5,50,0.0 +20712,30,25.89,5,0.0 +20712,41,9.65,24,0.0 +20712,5,21.35,14,0.0 +20713,60,34,12,0.0 +20713,57,19.5,43,0.0 +20713,23,9,44,0.0 +20713,8,40,47,0.0 +20713,49,20,5,0.0 +20713,15,15.5,12,0.0 +20713,68,12.5,36,0.0 +20713,75,7.75,14,0.0 +20713,38,263.5,23,0.0 +20713,32,32,22,0.0 +20713,52,7,3,0.0 +20713,5,21.35,29,0.0 +20713,63,43.9,4,0.0 +20713,18,62.5,23,0.0 +20713,12,38,11,0.0 +20713,44,19.45,48,0.0 +20713,48,12.75,10,0.0 +20713,59,55,27,0.0 +20713,45,9.5,43,0.0 +20714,28,45.6,33,0.0 +20714,51,53,39,0.0 +20714,5,21.35,42,0.0 +20714,19,9.2,9,0.0 +20714,27,43.9,28,0.0 +20714,63,43.9,20,0.0 +20714,65,21.05,5,0.0 +20714,38,263.5,49,0.0 +20714,60,34,42,0.0 +20714,24,4.5,1,0.0 +20714,46,12,46,0.0 +20714,10,31,14,0.0 +20714,26,31.23,18,0.0 +20714,48,12.75,19,0.0 +20714,35,18,46,0.0 +20714,75,7.75,34,0.0 +20714,54,7.45,10,0.0 +20714,56,38,49,0.0 +20714,17,39,15,0.0 +20714,18,62.5,35,0.0 +20715,33,2.5,43,0.0 +20716,71,21.5,6,0.0 +20716,45,9.5,36,0.0 +20716,70,15,40,0.0 +20716,58,13.25,33,0.0 +20716,30,25.89,3,0.0 +20716,73,15,21,0.0 +20716,36,19,29,0.0 +20716,51,53,2,0.0 +20716,50,16.25,39,0.0 +20716,59,55,29,0.0 +20716,61,28.5,43,0.0 +20716,49,20,49,0.0 +20716,60,34,15,0.0 +20716,77,13,45,0.0 +20716,64,33.25,49,0.0 +20716,72,34.8,12,0.0 +20716,5,21.35,8,0.0 +20716,23,9,23,0.0 +20716,54,7.45,50,0.0 +20716,35,18,39,0.0 +20716,19,9.2,22,0.0 +20716,62,49.3,45,0.0 +20716,53,32.8,37,0.0 +20716,9,97,40,0.0 +20716,55,24,21,0.0 +20716,17,39,2,0.0 +20716,67,14,18,0.0 +20716,16,17.45,3,0.0 +20717,41,9.65,40,0.0 +20717,15,15.5,34,0.0 +20717,52,7,4,0.0 +20717,76,18,30,0.0 +20717,58,13.25,40,0.0 +20717,31,12.5,29,0.0 +20717,50,16.25,21,0.0 +20717,25,14,44,0.0 +20717,18,62.5,31,0.0 +20717,38,263.5,7,0.0 +20717,61,28.5,3,0.0 +20717,3,10,10,0.0 +20717,4,22,9,0.0 +20717,36,19,25,0.0 +20717,44,19.45,34,0.0 +20717,74,10,7,0.0 +20717,29,123.79,18,0.0 +20717,65,21.05,30,0.0 +20717,22,21,15,0.0 +20717,63,43.9,30,0.0 +20717,75,7.75,4,0.0 +20717,21,10,34,0.0 +20717,35,18,41,0.0 +20717,6,25,6,0.0 +20717,7,30,33,0.0 +20717,10,31,2,0.0 +20717,49,20,46,0.0 +20717,37,26,41,0.0 +20717,23,9,44,0.0 +20717,66,17,24,0.0 +20717,34,14,37,0.0 +20717,17,39,18,0.0 +20717,64,33.25,31,0.0 +20717,72,34.8,25,0.0 +20717,71,21.5,35,0.0 +20717,42,14,24,0.0 +20717,68,12.5,8,0.0 +20717,40,18.4,6,0.0 +20717,14,23.25,2,0.0 +20717,69,36,21,0.0 +20717,30,25.89,45,0.0 +20717,70,15,7,0.0 +20717,43,46,24,0.0 +20717,45,9.5,20,0.0 +20717,57,19.5,10,0.0 +20717,16,17.45,46,0.0 +20717,13,6,12,0.0 +20717,19,9.2,38,0.0 +20717,62,49.3,26,0.0 +20718,77,13,17,0.0 +20718,34,14,43,0.0 +20718,20,81,15,0.0 +20718,62,49.3,39,0.0 +20718,66,17,45,0.0 +20718,14,23.25,14,0.0 +20718,15,15.5,36,0.0 +20718,2,19,1,0.0 +20718,72,34.8,33,0.0 +20718,47,9.5,47,0.0 +20718,25,14,11,0.0 +20718,53,32.8,11,0.0 +20718,16,17.45,11,0.0 +20718,56,38,6,0.0 +20718,24,4.5,43,0.0 +20718,5,21.35,22,0.0 +20718,10,31,39,0.0 +20718,36,19,15,0.0 +20718,13,6,23,0.0 +20718,6,25,47,0.0 +20718,64,33.25,23,0.0 +20718,76,18,32,0.0 +20718,30,25.89,10,0.0 +20718,44,19.45,15,0.0 +20718,41,9.65,43,0.0 +20718,54,7.45,22,0.0 +20718,73,15,37,0.0 +20718,9,97,1,0.0 +20718,26,31.23,17,0.0 +20718,45,9.5,35,0.0 +20718,37,26,30,0.0 +20718,23,9,28,0.0 +20718,65,21.05,14,0.0 +20718,69,36,35,0.0 +20718,49,20,42,0.0 +20718,21,10,9,0.0 +20718,33,2.5,23,0.0 +20718,43,46,2,0.0 +20718,35,18,27,0.0 +20718,38,263.5,25,0.0 +20718,17,39,15,0.0 +20718,55,24,34,0.0 +20718,75,7.75,13,0.0 +20718,68,12.5,23,0.0 +20718,12,38,24,0.0 +20718,57,19.5,7,0.0 +20718,71,21.5,49,0.0 +20718,31,12.5,35,0.0 +20718,58,13.25,16,0.0 +20718,39,18,39,0.0 +20718,42,14,33,0.0 +20718,7,30,37,0.0 +20718,59,55,44,0.0 +20718,52,7,1,0.0 +20719,66,17,38,0.0 +20719,68,12.5,41,0.0 +20719,75,7.75,14,0.0 +20719,59,55,6,0.0 +20719,5,21.35,4,0.0 +20719,32,32,38,0.0 +20719,77,13,48,0.0 +20719,14,23.25,8,0.0 +20720,5,21.35,45,0.0 +20720,26,31.23,33,0.0 +20720,36,19,47,0.0 +20720,10,31,13,0.0 +20720,29,123.79,50,0.0 +20720,42,14,32,0.0 +20720,27,43.9,5,0.0 +20720,3,10,44,0.0 +20720,52,7,33,0.0 +20720,6,25,38,0.0 +20720,53,32.8,48,0.0 +20720,25,14,14,0.0 +20720,66,17,18,0.0 +20720,64,33.25,9,0.0 +20720,70,15,47,0.0 +20720,22,21,50,0.0 +20720,48,12.75,2,0.0 +20720,2,19,23,0.0 +20720,74,10,32,0.0 +20720,73,15,38,0.0 +20720,41,9.65,45,0.0 +20720,15,15.5,9,0.0 +20720,37,26,48,0.0 +20720,61,28.5,49,0.0 +20720,62,49.3,14,0.0 +20720,72,34.8,14,0.0 +20720,54,7.45,14,0.0 +20720,63,43.9,33,0.0 +20720,28,45.6,17,0.0 +20720,24,4.5,16,0.0 +20720,56,38,45,0.0 +20720,9,97,38,0.0 +20720,20,81,23,0.0 +20720,39,18,43,0.0 +20720,30,25.89,36,0.0 +20720,57,19.5,42,0.0 +20720,16,17.45,23,0.0 +20720,44,19.45,7,0.0 +20720,40,18.4,11,0.0 +20721,50,16.25,4,0.0 +20721,2,19,15,0.0 +20721,51,53,26,0.0 +20721,13,6,17,0.0 +20721,72,34.8,25,0.0 +20721,52,7,44,0.0 +20721,16,17.45,27,0.0 +20721,47,9.5,11,0.0 +20721,23,9,26,0.0 +20721,35,18,37,0.0 +20721,75,7.75,14,0.0 +20721,36,19,27,0.0 +20721,68,12.5,48,0.0 +20721,25,14,17,0.0 +20721,58,13.25,44,0.0 +20721,46,12,27,0.0 +20721,48,12.75,39,0.0 +20721,3,10,12,0.0 +20721,1,18,23,0.0 +20721,4,22,49,0.0 +20721,7,30,29,0.0 +20721,54,7.45,32,0.0 +20721,20,81,27,0.0 +20721,65,21.05,49,0.0 +20721,40,18.4,2,0.0 +20721,32,32,5,0.0 +20721,59,55,26,0.0 +20721,77,13,48,0.0 +20721,22,21,10,0.0 +20721,57,19.5,23,0.0 +20721,42,14,24,0.0 +20722,76,18,43,0.0 +20722,72,34.8,27,0.0 +20722,32,32,11,0.0 +20722,70,15,13,0.0 +20722,44,19.45,42,0.0 +20722,58,13.25,41,0.0 +20722,16,17.45,34,0.0 +20722,56,38,47,0.0 +20722,60,34,26,0.0 +20722,13,6,6,0.0 +20722,18,62.5,44,0.0 +20722,9,97,31,0.0 +20722,52,7,32,0.0 +20722,34,14,29,0.0 +20722,30,25.89,47,0.0 +20722,5,21.35,45,0.0 +20722,24,4.5,29,0.0 +20722,11,21,17,0.0 +20722,2,19,20,0.0 +20722,28,45.6,8,0.0 +20722,46,12,41,0.0 +20722,27,43.9,10,0.0 +20722,55,24,31,0.0 +20722,43,46,24,0.0 +20722,26,31.23,3,0.0 +20722,3,10,1,0.0 +20722,39,18,12,0.0 +20722,59,55,49,0.0 +20722,20,81,45,0.0 +20722,17,39,35,0.0 +20722,61,28.5,38,0.0 +20722,57,19.5,41,0.0 +20722,54,7.45,36,0.0 +20722,8,40,49,0.0 +20722,35,18,5,0.0 +20722,38,263.5,37,0.0 +20722,64,33.25,13,0.0 +20722,62,49.3,25,0.0 +20722,77,13,30,0.0 +20722,36,19,24,0.0 +20722,71,21.5,16,0.0 +20722,65,21.05,9,0.0 +20722,25,14,48,0.0 +20722,69,36,15,0.0 +20722,48,12.75,25,0.0 +20722,67,14,8,0.0 +20722,10,31,13,0.0 +20722,1,18,20,0.0 +20722,51,53,23,0.0 +20722,41,9.65,33,0.0 +20722,37,26,13,0.0 +20722,15,15.5,19,0.0 +20722,21,10,35,0.0 +20722,45,9.5,23,0.0 +20722,12,38,43,0.0 +20722,40,18.4,30,0.0 +20722,23,9,18,0.0 +20722,4,22,32,0.0 +20722,42,14,3,0.0 +20722,50,16.25,20,0.0 +20722,47,9.5,50,0.0 +20722,14,23.25,4,0.0 +20722,73,15,33,0.0 +20722,49,20,22,0.0 +20722,66,17,8,0.0 +20722,29,123.79,2,0.0 +20722,75,7.75,47,0.0 +20722,63,43.9,23,0.0 +20722,68,12.5,20,0.0 +20722,74,10,40,0.0 +20722,6,25,13,0.0 +20723,16,17.45,44,0.0 +20723,39,18,35,0.0 +20723,69,36,8,0.0 +20723,42,14,35,0.0 +20723,38,263.5,39,0.0 +20723,49,20,24,0.0 +20723,13,6,11,0.0 +20723,1,18,11,0.0 +20723,34,14,45,0.0 +20723,24,4.5,16,0.0 +20723,36,19,14,0.0 +20723,73,15,29,0.0 +20723,51,53,18,0.0 +20723,54,7.45,40,0.0 +20723,29,123.79,42,0.0 +20723,25,14,6,0.0 +20723,10,31,32,0.0 +20723,7,30,1,0.0 +20723,59,55,3,0.0 +20723,40,18.4,41,0.0 +20723,12,38,36,0.0 +20723,65,21.05,48,0.0 +20723,76,18,1,0.0 +20723,45,9.5,28,0.0 +20723,47,9.5,25,0.0 +20723,37,26,26,0.0 +20723,70,15,28,0.0 +20723,72,34.8,18,0.0 +20723,53,32.8,45,0.0 +20723,11,21,8,0.0 +20723,44,19.45,37,0.0 +20723,17,39,3,0.0 +20723,55,24,3,0.0 +20723,30,25.89,24,0.0 +20723,50,16.25,2,0.0 +20723,28,45.6,38,0.0 +20723,35,18,16,0.0 +20723,5,21.35,42,0.0 +20723,46,12,41,0.0 +20723,14,23.25,23,0.0 +20723,32,32,40,0.0 +20723,61,28.5,28,0.0 +20723,2,19,14,0.0 +20723,62,49.3,15,0.0 +20723,58,13.25,10,0.0 +20723,60,34,46,0.0 +20724,34,14,31,0.0 +20724,21,10,22,0.0 +20724,25,14,41,0.0 +20724,59,55,7,0.0 +20724,41,9.65,43,0.0 +20724,5,21.35,34,0.0 +20724,58,13.25,50,0.0 +20724,74,10,32,0.0 +20724,13,6,48,0.0 +20724,29,123.79,18,0.0 +20724,26,31.23,15,0.0 +20724,56,38,49,0.0 +20724,75,7.75,20,0.0 +20724,65,21.05,11,0.0 +20724,77,13,16,0.0 +20724,47,9.5,33,0.0 +20724,61,28.5,36,0.0 +20724,72,34.8,39,0.0 +20724,17,39,5,0.0 +20724,18,62.5,44,0.0 +20724,39,18,10,0.0 +20724,66,17,32,0.0 +20724,67,14,38,0.0 +20724,44,19.45,2,0.0 +20724,38,263.5,37,0.0 +20724,11,21,44,0.0 +20724,19,9.2,38,0.0 +20724,45,9.5,7,0.0 +20724,32,32,20,0.0 +20724,16,17.45,4,0.0 +20724,71,21.5,2,0.0 +20724,62,49.3,35,0.0 +20724,55,24,48,0.0 +20724,12,38,44,0.0 +20724,1,18,4,0.0 +20724,57,19.5,18,0.0 +20724,52,7,15,0.0 +20725,19,9.2,44,0.0 +20725,66,17,29,0.0 +20725,73,15,4,0.0 +20725,26,31.23,6,0.0 +20725,25,14,22,0.0 +20725,57,19.5,36,0.0 +20725,70,15,32,0.0 +20725,24,4.5,26,0.0 +20725,67,14,29,0.0 +20725,2,19,14,0.0 +20725,38,263.5,2,0.0 +20725,35,18,17,0.0 +20725,31,12.5,39,0.0 +20725,15,15.5,20,0.0 +20725,77,13,19,0.0 +20725,43,46,29,0.0 +20725,29,123.79,30,0.0 +20725,48,12.75,5,0.0 +20725,9,97,1,0.0 +20725,8,40,1,0.0 +20725,76,18,11,0.0 +20725,47,9.5,34,0.0 +20725,37,26,30,0.0 +20725,62,49.3,44,0.0 +20725,28,45.6,23,0.0 +20725,10,31,32,0.0 +20725,5,21.35,36,0.0 +20725,75,7.75,26,0.0 +20725,33,2.5,6,0.0 +20725,4,22,19,0.0 +20725,22,21,17,0.0 +20725,72,34.8,27,0.0 +20725,64,33.25,8,0.0 +20725,50,16.25,24,0.0 +20725,1,18,24,0.0 +20725,12,38,32,0.0 +20725,56,38,19,0.0 +20725,42,14,7,0.0 +20725,71,21.5,26,0.0 +20725,20,81,14,0.0 +20725,55,24,16,0.0 +20725,58,13.25,36,0.0 +20725,36,19,22,0.0 +20725,49,20,16,0.0 +20725,23,9,3,0.0 +20725,54,7.45,41,0.0 +20725,13,6,49,0.0 +20725,74,10,16,0.0 +20725,40,18.4,16,0.0 +20725,16,17.45,25,0.0 +20725,27,43.9,46,0.0 +20725,45,9.5,9,0.0 +20725,41,9.65,32,0.0 +20725,34,14,33,0.0 +20725,30,25.89,26,0.0 +20725,51,53,40,0.0 +20725,46,12,39,0.0 +20725,68,12.5,41,0.0 +20725,21,10,20,0.0 +20725,63,43.9,43,0.0 +20725,52,7,50,0.0 +20725,6,25,28,0.0 +20725,3,10,32,0.0 +20725,11,21,33,0.0 +20726,25,14,15,0.0 +20726,49,20,32,0.0 +20726,10,31,23,0.0 +20726,14,23.25,17,0.0 +20726,65,21.05,30,0.0 +20726,15,15.5,12,0.0 +20726,62,49.3,22,0.0 +20726,60,34,37,0.0 +20726,41,9.65,41,0.0 +20726,20,81,40,0.0 +20726,33,2.5,1,0.0 +20726,34,14,41,0.0 +20726,5,21.35,23,0.0 +20726,66,17,42,0.0 +20726,63,43.9,47,0.0 +20726,11,21,40,0.0 +20726,4,22,8,0.0 +20726,1,18,8,0.0 +20726,73,15,46,0.0 +20726,12,38,11,0.0 +20726,64,33.25,9,0.0 +20726,42,14,34,0.0 +20726,76,18,47,0.0 +20726,30,25.89,45,0.0 +20726,71,21.5,16,0.0 +20726,17,39,30,0.0 +20726,77,13,48,0.0 +20726,27,43.9,31,0.0 +20726,50,16.25,26,0.0 +20726,37,26,44,0.0 +20727,44,19.45,33,0.0 +20727,11,21,39,0.0 +20727,62,49.3,8,0.0 +20727,32,32,30,0.0 +20727,5,21.35,35,0.0 +20727,19,9.2,24,0.0 +20727,37,26,44,0.0 +20727,54,7.45,4,0.0 +20727,38,263.5,41,0.0 +20727,47,9.5,16,0.0 +20727,4,22,44,0.0 +20727,10,31,7,0.0 +20727,6,25,7,0.0 +20727,70,15,15,0.0 +20727,1,18,31,0.0 +20727,25,14,27,0.0 +20727,42,14,27,0.0 +20727,12,38,39,0.0 +20727,16,17.45,41,0.0 +20727,39,18,35,0.0 +20727,68,12.5,48,0.0 +20727,45,9.5,31,0.0 +20727,75,7.75,46,0.0 +20727,67,14,35,0.0 +20727,9,97,20,0.0 +20727,60,34,24,0.0 +20727,50,16.25,6,0.0 +20727,30,25.89,8,0.0 +20727,8,40,40,0.0 +20727,27,43.9,30,0.0 +20727,3,10,10,0.0 +20727,77,13,5,0.0 +20727,52,7,25,0.0 +20727,2,19,11,0.0 +20727,22,21,18,0.0 +20727,18,62.5,15,0.0 +20727,41,9.65,48,0.0 +20727,23,9,14,0.0 +20727,20,81,5,0.0 +20727,40,18.4,8,0.0 +20727,36,19,30,0.0 +20727,71,21.5,28,0.0 +20727,35,18,19,0.0 +20727,13,6,12,0.0 +20727,43,46,13,0.0 +20727,28,45.6,46,0.0 +20727,24,4.5,10,0.0 +20727,53,32.8,11,0.0 +20727,69,36,23,0.0 +20727,49,20,4,0.0 +20727,66,17,17,0.0 +20727,73,15,24,0.0 +20727,55,24,29,0.0 +20727,46,12,19,0.0 +20727,61,28.5,19,0.0 +20727,17,39,29,0.0 +20727,26,31.23,29,0.0 +20727,14,23.25,22,0.0 +20727,76,18,10,0.0 +20727,7,30,40,0.0 +20727,34,14,36,0.0 +20727,57,19.5,18,0.0 +20727,33,2.5,5,0.0 +20727,64,33.25,46,0.0 +20727,72,34.8,33,0.0 +20727,21,10,47,0.0 +20727,48,12.75,3,0.0 +20727,51,53,13,0.0 +20727,56,38,49,0.0 +20727,74,10,35,0.0 +20727,58,13.25,26,0.0 +20727,59,55,48,0.0 +20727,29,123.79,35,0.0 +20727,31,12.5,46,0.0 +20727,63,43.9,1,0.0 +20728,62,49.3,22,0.0 +20728,43,46,25,0.0 +20728,75,7.75,27,0.0 +20728,58,13.25,3,0.0 +20728,64,33.25,4,0.0 +20728,27,43.9,35,0.0 +20728,63,43.9,16,0.0 +20728,21,10,46,0.0 +20728,60,34,2,0.0 +20728,8,40,30,0.0 +20728,24,4.5,13,0.0 +20728,49,20,41,0.0 +20728,45,9.5,1,0.0 +20728,29,123.79,45,0.0 +20728,7,30,41,0.0 +20728,33,2.5,22,0.0 +20728,15,15.5,7,0.0 +20728,22,21,11,0.0 +20728,19,9.2,2,0.0 +20728,50,16.25,10,0.0 +20728,65,21.05,8,0.0 +20728,76,18,2,0.0 +20728,20,81,43,0.0 +20728,25,14,47,0.0 +20728,30,25.89,41,0.0 +20728,37,26,1,0.0 +20728,31,12.5,2,0.0 +20728,14,23.25,8,0.0 +20728,44,19.45,43,0.0 +20728,69,36,26,0.0 +20728,55,24,12,0.0 +20728,71,21.5,30,0.0 +20728,70,15,18,0.0 +20728,41,9.65,47,0.0 +20728,74,10,41,0.0 +20728,39,18,11,0.0 +20728,56,38,37,0.0 +20728,48,12.75,46,0.0 +20728,34,14,45,0.0 +20729,41,9.65,38,0.0 +20729,27,43.9,27,0.0 +20729,39,18,46,0.0 +20729,49,20,33,0.0 +20729,47,9.5,28,0.0 +20729,55,24,19,0.0 +20729,8,40,46,0.0 +20729,4,22,8,0.0 +20729,22,21,11,0.0 +20729,33,2.5,10,0.0 +20729,19,9.2,27,0.0 +20729,69,36,19,0.0 +20729,17,39,11,0.0 +20729,3,10,37,0.0 +20729,75,7.75,35,0.0 +20729,12,38,28,0.0 +20729,61,28.5,35,0.0 +20729,10,31,18,0.0 +20729,58,13.25,48,0.0 +20729,21,10,15,0.0 +20729,26,31.23,34,0.0 +20729,62,49.3,16,0.0 +20729,54,7.45,43,0.0 +20729,29,123.79,31,0.0 +20729,14,23.25,23,0.0 +20729,37,26,34,0.0 +20729,52,7,3,0.0 +20729,74,10,48,0.0 +20729,25,14,6,0.0 +20729,5,21.35,11,0.0 +20729,16,17.45,36,0.0 +20729,6,25,20,0.0 +20729,32,32,27,0.0 +20729,64,33.25,36,0.0 +20729,1,18,43,0.0 +20729,48,12.75,31,0.0 +20729,72,34.8,1,0.0 +20729,9,97,27,0.0 +20729,77,13,4,0.0 +20729,68,12.5,33,0.0 +20729,70,15,29,0.0 +20729,65,21.05,3,0.0 +20729,30,25.89,47,0.0 +20729,51,53,3,0.0 +20729,71,21.5,28,0.0 +20729,18,62.5,20,0.0 +20729,73,15,26,0.0 +20729,44,19.45,37,0.0 +20729,28,45.6,50,0.0 +20729,7,30,19,0.0 +20729,11,21,11,0.0 +20729,43,46,22,0.0 +20729,50,16.25,46,0.0 +20729,67,14,26,0.0 +20729,23,9,17,0.0 +20729,42,14,17,0.0 +20729,13,6,14,0.0 +20729,59,55,33,0.0 +20729,57,19.5,42,0.0 +20729,36,19,8,0.0 +20729,31,12.5,34,0.0 +20729,15,15.5,7,0.0 +20729,46,12,45,0.0 +20729,20,81,23,0.0 +20729,53,32.8,36,0.0 +20729,40,18.4,43,0.0 +20729,63,43.9,1,0.0 +20730,29,123.79,18,0.0 +20730,2,19,16,0.0 +20730,66,17,46,0.0 +20730,11,21,43,0.0 +20730,23,9,43,0.0 +20730,8,40,26,0.0 +20730,21,10,39,0.0 +20730,6,25,34,0.0 +20730,28,45.6,45,0.0 +20730,34,14,15,0.0 +20730,57,19.5,10,0.0 +20730,42,14,8,0.0 +20730,38,263.5,24,0.0 +20730,41,9.65,49,0.0 +20730,64,33.25,14,0.0 +20730,5,21.35,39,0.0 +20730,62,49.3,17,0.0 +20730,22,21,19,0.0 +20730,43,46,8,0.0 +20730,69,36,23,0.0 +20730,49,20,21,0.0 +20730,53,32.8,39,0.0 +20730,45,9.5,12,0.0 +20730,51,53,19,0.0 +20730,35,18,15,0.0 +20730,7,30,45,0.0 +20730,17,39,44,0.0 +20730,30,25.89,42,0.0 +20730,58,13.25,46,0.0 +20730,70,15,8,0.0 +20730,25,14,10,0.0 +20730,76,18,21,0.0 +20730,48,12.75,33,0.0 +20730,12,38,32,0.0 +20730,31,12.5,18,0.0 +20730,72,34.8,50,0.0 +20730,75,7.75,24,0.0 +20730,47,9.5,8,0.0 +20730,20,81,21,0.0 +20730,56,38,1,0.0 +20730,60,34,49,0.0 +20730,50,16.25,32,0.0 +20730,55,24,49,0.0 +20730,18,62.5,34,0.0 +20730,61,28.5,8,0.0 +20730,71,21.5,28,0.0 +20730,67,14,43,0.0 +20730,15,15.5,9,0.0 +20730,68,12.5,22,0.0 +20730,63,43.9,21,0.0 +20730,9,97,13,0.0 +20730,33,2.5,47,0.0 +20730,52,7,3,0.0 +20730,32,32,22,0.0 +20730,14,23.25,32,0.0 +20730,74,10,41,0.0 +20730,40,18.4,7,0.0 +20730,4,22,1,0.0 +20730,36,19,21,0.0 +20730,44,19.45,22,0.0 +20731,10,31,18,0.0 +20731,9,97,25,0.0 +20731,64,33.25,42,0.0 +20731,16,17.45,19,0.0 +20731,6,25,3,0.0 +20731,61,28.5,45,0.0 +20731,50,16.25,7,0.0 +20731,77,13,5,0.0 +20731,13,6,4,0.0 +20731,71,21.5,47,0.0 +20731,35,18,16,0.0 +20731,58,13.25,29,0.0 +20731,54,7.45,47,0.0 +20732,17,39,11,0.0 +20732,26,31.23,10,0.0 +20732,49,20,37,0.0 +20732,25,14,2,0.0 +20732,32,32,7,0.0 +20732,18,62.5,20,0.0 +20732,22,21,15,0.0 +20732,23,9,19,0.0 +20732,45,9.5,10,0.0 +20732,3,10,47,0.0 +20732,70,15,8,0.0 +20732,61,28.5,45,0.0 +20732,28,45.6,20,0.0 +20732,34,14,12,0.0 +20732,40,18.4,23,0.0 +20732,12,38,14,0.0 +20732,64,33.25,14,0.0 +20732,24,4.5,23,0.0 +20732,1,18,5,0.0 +20732,46,12,10,0.0 +20732,33,2.5,30,0.0 +20732,76,18,22,0.0 +20732,11,21,26,0.0 +20732,35,18,3,0.0 +20732,5,21.35,36,0.0 +20732,73,15,16,0.0 +20732,42,14,12,0.0 +20732,7,30,23,0.0 +20732,56,38,1,0.0 +20732,2,19,29,0.0 +20732,59,55,25,0.0 +20732,37,26,6,0.0 +20732,15,15.5,12,0.0 +20732,20,81,30,0.0 +20732,62,49.3,39,0.0 +20733,27,43.9,31,0.0 +20733,11,21,39,0.0 +20734,1,18,26,0.0 +20734,30,25.89,16,0.0 +20734,53,32.8,9,0.0 +20734,29,123.79,46,0.0 +20734,52,7,8,0.0 +20734,5,21.35,16,0.0 +20734,12,38,29,0.0 +20734,25,14,11,0.0 +20734,69,36,43,0.0 +20734,41,9.65,11,0.0 +20734,75,7.75,3,0.0 +20734,16,17.45,37,0.0 +20734,77,13,47,0.0 +20734,40,18.4,22,0.0 +20734,26,31.23,18,0.0 +20734,8,40,31,0.0 +20734,48,12.75,14,0.0 +20735,52,7,45,0.0 +20735,73,15,9,0.0 +20735,77,13,30,0.0 +20735,41,9.65,42,0.0 +20735,30,25.89,26,0.0 +20735,37,26,44,0.0 +20735,17,39,14,0.0 +20736,41,9.65,22,0.0 +20736,17,39,10,0.0 +20736,18,62.5,14,0.0 +20736,63,43.9,20,0.0 +20736,57,19.5,50,0.0 +20736,58,13.25,39,0.0 +20736,3,10,47,0.0 +20736,51,53,21,0.0 +20736,66,17,37,0.0 +20736,62,49.3,7,0.0 +20736,38,263.5,31,0.0 +20736,77,13,48,0.0 +20736,69,36,43,0.0 +20736,15,15.5,10,0.0 +20736,65,21.05,25,0.0 +20736,27,43.9,12,0.0 +20736,33,2.5,1,0.0 +20736,73,15,45,0.0 +20736,37,26,41,0.0 +20736,19,9.2,46,0.0 +20736,21,10,17,0.0 +20736,74,10,14,0.0 +20736,55,24,48,0.0 +20736,43,46,7,0.0 +20736,4,22,7,0.0 +20736,64,33.25,36,0.0 +20736,2,19,9,0.0 +20736,13,6,5,0.0 +20736,20,81,42,0.0 +20736,44,19.45,34,0.0 +20736,30,25.89,5,0.0 +20736,36,19,43,0.0 +20736,28,45.6,31,0.0 +20736,39,18,12,0.0 +20736,10,31,35,0.0 +20736,31,12.5,20,0.0 +20736,16,17.45,37,0.0 +20736,9,97,24,0.0 +20736,56,38,42,0.0 +20736,45,9.5,15,0.0 +20736,35,18,17,0.0 +20736,32,32,48,0.0 +20736,14,23.25,29,0.0 +20736,12,38,20,0.0 +20736,8,40,41,0.0 +20736,42,14,10,0.0 +20736,70,15,49,0.0 +20736,11,21,38,0.0 +20736,68,12.5,17,0.0 +20736,53,32.8,29,0.0 +20736,60,34,25,0.0 +20736,1,18,22,0.0 +20736,34,14,7,0.0 +20736,50,16.25,37,0.0 +20736,7,30,28,0.0 +20736,48,12.75,45,0.0 +20736,47,9.5,16,0.0 +20736,49,20,36,0.0 +20736,76,18,2,0.0 +20736,5,21.35,24,0.0 +20736,71,21.5,49,0.0 +20736,24,4.5,42,0.0 +20736,75,7.75,5,0.0 +20736,25,14,17,0.0 +20736,29,123.79,32,0.0 +20736,6,25,16,0.0 +20736,40,18.4,8,0.0 +20736,22,21,9,0.0 +20736,26,31.23,14,0.0 +20736,54,7.45,46,0.0 +20736,61,28.5,17,0.0 +20736,59,55,16,0.0 +20736,67,14,50,0.0 +20736,52,7,34,0.0 +20736,23,9,42,0.0 +20736,72,34.8,41,0.0 +20737,31,12.5,42,0.0 +20737,46,12,33,0.0 +20737,4,22,8,0.0 +20737,74,10,4,0.0 +20737,66,17,29,0.0 +20737,63,43.9,34,0.0 +20737,49,20,33,0.0 +20738,43,46,43,0.0 +20738,2,19,6,0.0 +20738,40,18.4,14,0.0 +20738,17,39,3,0.0 +20738,11,21,49,0.0 +20738,57,19.5,3,0.0 +20738,70,15,5,0.0 +20738,58,13.25,26,0.0 +20738,16,17.45,18,0.0 +20738,67,14,4,0.0 +20738,74,10,6,0.0 +20738,61,28.5,25,0.0 +20738,5,21.35,12,0.0 +20738,42,14,10,0.0 +20738,63,43.9,1,0.0 +20738,38,263.5,3,0.0 +20738,72,34.8,5,0.0 +20738,31,12.5,38,0.0 +20738,7,30,8,0.0 +20738,35,18,9,0.0 +20738,22,21,14,0.0 +20738,46,12,36,0.0 +20738,33,2.5,14,0.0 +20738,8,40,3,0.0 +20738,54,7.45,22,0.0 +20738,56,38,6,0.0 +20738,13,6,10,0.0 +20738,64,33.25,15,0.0 +20738,50,16.25,48,0.0 +20738,66,17,47,0.0 +20738,65,21.05,5,0.0 +20738,9,97,44,0.0 +20738,19,9.2,7,0.0 +20738,69,36,22,0.0 +20738,20,81,10,0.0 +20738,77,13,27,0.0 +20738,45,9.5,3,0.0 +20738,27,43.9,20,0.0 +20738,14,23.25,4,0.0 +20738,32,32,2,0.0 +20738,28,45.6,34,0.0 +20738,55,24,46,0.0 +20738,6,25,18,0.0 +20738,1,18,29,0.0 +20738,37,26,4,0.0 +20739,21,10,47,0.0 +20739,9,97,27,0.0 +20739,64,33.25,48,0.0 +20739,66,17,43,0.0 +20739,38,263.5,35,0.0 +20739,74,10,16,0.0 +20739,27,43.9,41,0.0 +20739,31,12.5,50,0.0 +20739,37,26,27,0.0 +20739,55,24,40,0.0 +20739,51,53,30,0.0 +20739,28,45.6,2,0.0 +20739,63,43.9,36,0.0 +20739,25,14,24,0.0 +20739,67,14,25,0.0 +20739,42,14,49,0.0 +20739,65,21.05,23,0.0 +20739,18,62.5,9,0.0 +20739,6,25,23,0.0 +20739,13,6,11,0.0 +20739,19,9.2,46,0.0 +20739,29,123.79,13,0.0 +20739,39,18,36,0.0 +20739,70,15,7,0.0 +20739,53,32.8,1,0.0 +20740,36,19,29,0.0 +20740,9,97,12,0.0 +20740,51,53,35,0.0 +20740,77,13,13,0.0 +20740,13,6,3,0.0 +20740,28,45.6,24,0.0 +20740,72,34.8,22,0.0 +20740,39,18,43,0.0 +20740,20,81,25,0.0 +20740,70,15,30,0.0 +20740,68,12.5,45,0.0 +20740,44,19.45,48,0.0 +20740,56,38,42,0.0 +20740,52,7,24,0.0 +20740,14,23.25,29,0.0 +20740,41,9.65,39,0.0 +20740,48,12.75,7,0.0 +20740,22,21,19,0.0 +20740,5,21.35,7,0.0 +20740,55,24,10,0.0 +20740,17,39,30,0.0 +20740,31,12.5,34,0.0 +20740,21,10,22,0.0 +20740,27,43.9,34,0.0 +20740,69,36,13,0.0 +20740,32,32,27,0.0 +20740,30,25.89,8,0.0 +20740,38,263.5,10,0.0 +20740,64,33.25,1,0.0 +20740,67,14,37,0.0 +20740,35,18,16,0.0 +20740,25,14,17,0.0 +20740,46,12,8,0.0 +20740,26,31.23,27,0.0 +20740,59,55,44,0.0 +20740,61,28.5,42,0.0 +20740,76,18,16,0.0 +20740,19,9.2,26,0.0 +20740,43,46,15,0.0 +20740,54,7.45,14,0.0 +20740,65,21.05,35,0.0 +20740,3,10,33,0.0 +20740,47,9.5,12,0.0 +20740,12,38,16,0.0 +20740,57,19.5,47,0.0 +20740,40,18.4,27,0.0 +20740,73,15,1,0.0 +20740,15,15.5,20,0.0 +20740,37,26,15,0.0 +20740,8,40,48,0.0 +20740,34,14,39,0.0 +20740,71,21.5,26,0.0 +20740,29,123.79,18,0.0 +20740,16,17.45,25,0.0 +20740,6,25,4,0.0 +20740,74,10,37,0.0 +20740,49,20,47,0.0 +20740,1,18,14,0.0 +20740,42,14,4,0.0 +20740,24,4.5,50,0.0 +20741,51,53,40,0.0 +20741,48,12.75,12,0.0 +20741,11,21,46,0.0 +20741,46,12,14,0.0 +20741,76,18,43,0.0 +20741,71,21.5,16,0.0 +20741,66,17,13,0.0 +20741,12,38,6,0.0 +20741,74,10,22,0.0 +20741,33,2.5,16,0.0 +20741,64,33.25,48,0.0 +20741,75,7.75,39,0.0 +20741,41,9.65,5,0.0 +20741,15,15.5,25,0.0 +20741,70,15,49,0.0 +20741,16,17.45,41,0.0 +20741,60,34,26,0.0 +20742,29,123.79,25,0.0 +20742,23,9,43,0.0 +20742,67,14,18,0.0 +20742,26,31.23,3,0.0 +20742,68,12.5,27,0.0 +20742,13,6,14,0.0 +20742,50,16.25,31,0.0 +20742,20,81,47,0.0 +20742,12,38,31,0.0 +20742,6,25,46,0.0 +20742,65,21.05,34,0.0 +20742,18,62.5,38,0.0 +20742,24,4.5,9,0.0 +20742,8,40,15,0.0 +20742,40,18.4,9,0.0 +20742,63,43.9,8,0.0 +20742,42,14,31,0.0 +20742,3,10,47,0.0 +20742,47,9.5,22,0.0 +20742,58,13.25,26,0.0 +20742,2,19,31,0.0 +20742,74,10,48,0.0 +20742,14,23.25,26,0.0 +20742,5,21.35,43,0.0 +20742,11,21,7,0.0 +20742,71,21.5,46,0.0 +20742,10,31,33,0.0 +20742,56,38,2,0.0 +20742,51,53,49,0.0 +20742,33,2.5,34,0.0 +20742,69,36,21,0.0 +20742,61,28.5,30,0.0 +20742,46,12,32,0.0 +20742,19,9.2,20,0.0 +20742,55,24,42,0.0 +20742,7,30,13,0.0 +20742,4,22,36,0.0 +20742,32,32,27,0.0 +20742,52,7,27,0.0 +20742,1,18,18,0.0 +20742,36,19,24,0.0 +20742,75,7.75,39,0.0 +20742,49,20,12,0.0 +20742,22,21,46,0.0 +20742,30,25.89,35,0.0 +20742,28,45.6,6,0.0 +20742,21,10,2,0.0 +20742,25,14,5,0.0 +20742,9,97,16,0.0 +20742,34,14,37,0.0 +20742,54,7.45,21,0.0 +20742,37,26,45,0.0 +20742,60,34,25,0.0 +20742,16,17.45,9,0.0 +20742,72,34.8,19,0.0 +20742,45,9.5,20,0.0 +20742,17,39,26,0.0 +20742,27,43.9,13,0.0 +20743,54,7.45,41,0.0 +20743,39,18,37,0.0 +20743,72,34.8,36,0.0 +20743,65,21.05,17,0.0 +20743,46,12,25,0.0 +20743,76,18,20,0.0 +20744,20,81,28,0.0 +20744,35,18,25,0.0 +20744,19,9.2,32,0.0 +20744,44,19.45,27,0.0 +20744,2,19,32,0.0 +20744,40,18.4,46,0.0 +20744,41,9.65,29,0.0 +20744,72,34.8,15,0.0 +20744,56,38,15,0.0 +20744,10,31,31,0.0 +20744,18,62.5,47,0.0 +20744,16,17.45,47,0.0 +20744,61,28.5,5,0.0 +20744,22,21,3,0.0 +20744,63,43.9,33,0.0 +20744,25,14,5,0.0 +20744,55,24,32,0.0 +20744,64,33.25,19,0.0 +20744,4,22,42,0.0 +20744,1,18,2,0.0 +20744,7,30,10,0.0 +20744,26,31.23,8,0.0 +20744,11,21,35,0.0 +20745,20,81,47,0.0 +20745,2,19,18,0.0 +20745,42,14,1,0.0 +20745,6,25,46,0.0 +20745,32,32,24,0.0 +20745,41,9.65,22,0.0 +20745,35,18,20,0.0 +20745,37,26,3,0.0 +20745,10,31,6,0.0 +20745,5,21.35,21,0.0 +20745,54,7.45,28,0.0 +20745,27,43.9,9,0.0 +20745,15,15.5,20,0.0 +20745,18,62.5,14,0.0 +20745,19,9.2,36,0.0 +20745,53,32.8,37,0.0 +20745,30,25.89,2,0.0 +20745,68,12.5,48,0.0 +20745,63,43.9,46,0.0 +20745,49,20,31,0.0 +20745,47,9.5,16,0.0 +20745,71,21.5,7,0.0 +20745,9,97,5,0.0 +20745,29,123.79,2,0.0 +20746,68,12.5,18,0.0 +20746,23,9,44,0.0 +20746,43,46,30,0.0 +20746,71,21.5,32,0.0 +20746,56,38,48,0.0 +20746,75,7.75,44,0.0 +20746,63,43.9,47,0.0 +20746,65,21.05,32,0.0 +20746,17,39,49,0.0 +20746,32,32,31,0.0 +20746,76,18,42,0.0 +20746,45,9.5,40,0.0 +20746,3,10,6,0.0 +20746,48,12.75,26,0.0 +20746,62,49.3,30,0.0 +20746,6,25,46,0.0 +20746,38,263.5,50,0.0 +20746,19,9.2,47,0.0 +20746,51,53,9,0.0 +20747,32,32,24,0.0 +20747,64,33.25,29,0.0 +20747,21,10,44,0.0 +20748,36,19,19,0.0 +20748,15,15.5,42,0.0 +20748,65,21.05,37,0.0 +20748,76,18,11,0.0 +20748,21,10,30,0.0 +20748,45,9.5,47,0.0 +20748,44,19.45,33,0.0 +20748,72,34.8,18,0.0 +20748,27,43.9,26,0.0 +20748,59,55,11,0.0 +20749,42,14,35,0.0 +20749,35,18,10,0.0 +20749,29,123.79,35,0.0 +20749,28,45.6,32,0.0 +20749,31,12.5,27,0.0 +20749,14,23.25,41,0.0 +20749,50,16.25,11,0.0 +20749,77,13,2,0.0 +20749,30,25.89,10,0.0 +20749,2,19,20,0.0 +20749,45,9.5,14,0.0 +20750,43,46,45,0.0 +20750,14,23.25,18,0.0 +20750,24,4.5,31,0.0 +20750,37,26,27,0.0 +20750,7,30,45,0.0 +20750,46,12,47,0.0 +20750,35,18,37,0.0 +20750,26,31.23,25,0.0 +20750,68,12.5,26,0.0 +20750,21,10,2,0.0 +20750,47,9.5,36,0.0 +20750,17,39,23,0.0 +20750,73,15,31,0.0 +20750,5,21.35,31,0.0 +20750,25,14,35,0.0 +20750,77,13,26,0.0 +20750,16,17.45,45,0.0 +20750,59,55,5,0.0 +20750,31,12.5,18,0.0 +20750,33,2.5,6,0.0 +20750,41,9.65,35,0.0 +20750,57,19.5,26,0.0 +20750,76,18,46,0.0 +20750,27,43.9,43,0.0 +20750,54,7.45,2,0.0 +20750,67,14,44,0.0 +20750,19,9.2,6,0.0 +20750,53,32.8,50,0.0 +20750,28,45.6,6,0.0 +20750,2,19,32,0.0 +20750,11,21,3,0.0 +20750,32,32,41,0.0 +20750,42,14,50,0.0 +20750,39,18,21,0.0 +20750,12,38,4,0.0 +20750,8,40,30,0.0 +20750,36,19,48,0.0 +20750,55,24,19,0.0 +20750,58,13.25,43,0.0 +20750,1,18,22,0.0 +20750,13,6,41,0.0 +20750,23,9,7,0.0 +20750,49,20,22,0.0 +20750,10,31,8,0.0 +20750,9,97,46,0.0 +20750,65,21.05,14,0.0 +20750,56,38,5,0.0 +20750,63,43.9,6,0.0 +20750,15,15.5,37,0.0 +20750,6,25,5,0.0 +20750,74,10,42,0.0 +20750,72,34.8,1,0.0 +20750,71,21.5,24,0.0 +20750,20,81,2,0.0 +20750,40,18.4,22,0.0 +20750,48,12.75,48,0.0 +20750,70,15,3,0.0 +20750,60,34,50,0.0 +20750,22,21,25,0.0 +20750,51,53,29,0.0 +20750,44,19.45,32,0.0 +20750,45,9.5,44,0.0 +20750,3,10,6,0.0 +20750,18,62.5,49,0.0 +20750,29,123.79,38,0.0 +20750,64,33.25,30,0.0 +20750,52,7,22,0.0 +20750,34,14,35,0.0 +20750,61,28.5,20,0.0 +20750,30,25.89,25,0.0 +20750,50,16.25,21,0.0 +20750,69,36,21,0.0 +20750,4,22,3,0.0 +20750,62,49.3,5,0.0 +20751,60,34,22,0.0 +20751,17,39,8,0.0 +20751,23,9,39,0.0 +20751,50,16.25,9,0.0 +20751,38,263.5,30,0.0 +20751,7,30,48,0.0 +20751,32,32,37,0.0 +20751,20,81,26,0.0 +20751,70,15,22,0.0 +20751,54,7.45,12,0.0 +20751,34,14,11,0.0 +20751,4,22,21,0.0 +20751,45,9.5,2,0.0 +20751,58,13.25,18,0.0 +20751,1,18,26,0.0 +20751,64,33.25,28,0.0 +20751,66,17,35,0.0 +20751,53,32.8,10,0.0 +20751,2,19,12,0.0 +20751,24,4.5,47,0.0 +20751,36,19,40,0.0 +20751,62,49.3,32,0.0 +20751,49,20,37,0.0 +20751,11,21,7,0.0 +20751,74,10,41,0.0 +20751,61,28.5,24,0.0 +20751,30,25.89,1,0.0 +20751,65,21.05,46,0.0 +20751,6,25,17,0.0 +20751,43,46,19,0.0 +20751,37,26,6,0.0 +20751,25,14,44,0.0 +20751,27,43.9,1,0.0 +20751,46,12,30,0.0 +20751,14,23.25,3,0.0 +20751,63,43.9,19,0.0 +20751,56,38,6,0.0 +20751,3,10,19,0.0 +20751,68,12.5,14,0.0 +20751,75,7.75,43,0.0 +20751,39,18,46,0.0 +20751,69,36,22,0.0 +20751,73,15,20,0.0 +20752,52,7,10,0.0 +20752,59,55,32,0.0 +20752,42,14,8,0.0 +20752,70,15,40,0.0 +20752,22,21,31,0.0 +20752,11,21,34,0.0 +20752,41,9.65,33,0.0 +20752,2,19,45,0.0 +20752,48,12.75,25,0.0 +20752,71,21.5,35,0.0 +20752,73,15,10,0.0 +20752,49,20,37,0.0 +20752,75,7.75,2,0.0 +20752,57,19.5,43,0.0 +20752,24,4.5,19,0.0 +20752,68,12.5,9,0.0 +20752,1,18,34,0.0 +20752,51,53,5,0.0 +20752,16,17.45,20,0.0 +20752,39,18,31,0.0 +20752,32,32,50,0.0 +20752,45,9.5,39,0.0 +20752,60,34,27,0.0 +20752,35,18,18,0.0 +20752,7,30,10,0.0 +20752,12,38,6,0.0 +20752,37,26,15,0.0 +20752,30,25.89,17,0.0 +20752,65,21.05,14,0.0 +20752,9,97,43,0.0 +20752,33,2.5,9,0.0 +20752,40,18.4,37,0.0 +20752,53,32.8,6,0.0 +20752,17,39,47,0.0 +20752,72,34.8,30,0.0 +20752,34,14,39,0.0 +20752,76,18,42,0.0 +20752,38,263.5,45,0.0 +20752,23,9,50,0.0 +20753,6,25,10,0.0 +20753,7,30,28,0.0 +20753,19,9.2,22,0.0 +20753,24,4.5,35,0.0 +20753,39,18,5,0.0 +20753,77,13,47,0.0 +20753,37,26,12,0.0 +20753,66,17,27,0.0 +20753,65,21.05,37,0.0 +20753,23,9,32,0.0 +20753,16,17.45,2,0.0 +20753,52,7,17,0.0 +20753,50,16.25,14,0.0 +20753,32,32,2,0.0 +20754,14,23.25,44,0.0 +20754,58,13.25,15,0.0 +20754,25,14,22,0.0 +20754,73,15,16,0.0 +20754,72,34.8,28,0.0 +20754,24,4.5,50,0.0 +20754,61,28.5,23,0.0 +20754,47,9.5,43,0.0 +20754,7,30,31,0.0 +20754,15,15.5,27,0.0 +20754,9,97,2,0.0 +20754,77,13,35,0.0 +20754,32,32,39,0.0 +20754,19,9.2,18,0.0 +20754,18,62.5,7,0.0 +20754,42,14,24,0.0 +20754,13,6,1,0.0 +20754,31,12.5,9,0.0 +20754,33,2.5,30,0.0 +20754,35,18,19,0.0 +20754,11,21,34,0.0 +20754,62,49.3,30,0.0 +20754,51,53,12,0.0 +20754,8,40,50,0.0 +20754,34,14,42,0.0 +20754,56,38,50,0.0 +20754,48,12.75,7,0.0 +20754,75,7.75,35,0.0 +20754,3,10,21,0.0 +20754,16,17.45,47,0.0 +20754,68,12.5,31,0.0 +20754,10,31,31,0.0 +20754,59,55,13,0.0 +20754,38,263.5,9,0.0 +20754,63,43.9,46,0.0 +20754,37,26,43,0.0 +20754,71,21.5,40,0.0 +20754,6,25,31,0.0 +20754,20,81,27,0.0 +20754,54,7.45,45,0.0 +20754,70,15,13,0.0 +20754,67,14,45,0.0 +20754,29,123.79,20,0.0 +20754,39,18,44,0.0 +20754,28,45.6,40,0.0 +20754,65,21.05,49,0.0 +20754,66,17,39,0.0 +20754,49,20,17,0.0 +20754,76,18,6,0.0 +20754,26,31.23,50,0.0 +20754,21,10,47,0.0 +20754,36,19,44,0.0 +20754,27,43.9,47,0.0 +20754,40,18.4,17,0.0 +20754,55,24,33,0.0 +20754,12,38,26,0.0 +20754,45,9.5,26,0.0 +20755,16,17.45,22,0.0 +20755,19,9.2,49,0.0 +20755,5,21.35,8,0.0 +20755,47,9.5,17,0.0 +20756,68,12.5,16,0.0 +20756,41,9.65,14,0.0 +20756,53,32.8,13,0.0 +20756,51,53,8,0.0 +20756,29,123.79,25,0.0 +20756,8,40,4,0.0 +20756,43,46,45,0.0 +20756,25,14,34,0.0 +20756,73,15,42,0.0 +20756,32,32,3,0.0 +20756,30,25.89,2,0.0 +20756,3,10,19,0.0 +20756,59,55,42,0.0 +20756,69,36,39,0.0 +20756,45,9.5,36,0.0 +20756,52,7,23,0.0 +20756,38,263.5,14,0.0 +20756,5,21.35,15,0.0 +20756,67,14,32,0.0 +20756,33,2.5,34,0.0 +20756,27,43.9,22,0.0 +20756,34,14,2,0.0 +20756,16,17.45,7,0.0 +20756,76,18,19,0.0 +20757,13,6,34,0.0 +20757,58,13.25,12,0.0 +20757,37,26,2,0.0 +20757,59,55,13,0.0 +20757,14,23.25,6,0.0 +20757,54,7.45,8,0.0 +20757,67,14,35,0.0 +20757,11,21,20,0.0 +20757,52,7,45,0.0 +20757,45,9.5,1,0.0 +20757,50,16.25,20,0.0 +20757,18,62.5,3,0.0 +20757,29,123.79,50,0.0 +20757,2,19,15,0.0 +20757,44,19.45,2,0.0 +20757,5,21.35,32,0.0 +20757,26,31.23,49,0.0 +20757,51,53,38,0.0 +20757,48,12.75,42,0.0 +20757,20,81,5,0.0 +20757,23,9,44,0.0 +20757,27,43.9,22,0.0 +20757,43,46,28,0.0 +20757,12,38,31,0.0 +20757,24,4.5,28,0.0 +20757,33,2.5,9,0.0 +20757,36,19,43,0.0 +20758,36,19,23,0.0 +20758,25,14,12,0.0 +20758,41,9.65,40,0.0 +20758,42,14,4,0.0 +20758,72,34.8,5,0.0 +20758,58,13.25,46,0.0 +20758,53,32.8,36,0.0 +20758,68,12.5,11,0.0 +20758,24,4.5,32,0.0 +20758,54,7.45,36,0.0 +20758,8,40,13,0.0 +20758,63,43.9,37,0.0 +20758,38,263.5,8,0.0 +20758,44,19.45,32,0.0 +20758,21,10,21,0.0 +20758,1,18,9,0.0 +20758,10,31,2,0.0 +20758,56,38,33,0.0 +20758,16,17.45,3,0.0 +20758,19,9.2,2,0.0 +20758,28,45.6,20,0.0 +20758,20,81,25,0.0 +20758,14,23.25,20,0.0 +20758,17,39,29,0.0 +20758,30,25.89,47,0.0 +20758,15,15.5,6,0.0 +20758,43,46,41,0.0 +20758,35,18,18,0.0 +20758,62,49.3,34,0.0 +20758,75,7.75,32,0.0 +20758,49,20,3,0.0 +20758,29,123.79,46,0.0 +20758,7,30,32,0.0 +20758,60,34,10,0.0 +20758,55,24,2,0.0 +20758,77,13,41,0.0 +20758,32,32,46,0.0 +20758,22,21,9,0.0 +20758,34,14,19,0.0 +20758,23,9,49,0.0 +20758,12,38,15,0.0 +20758,5,21.35,10,0.0 +20758,45,9.5,48,0.0 +20758,40,18.4,24,0.0 +20758,67,14,4,0.0 +20758,61,28.5,32,0.0 +20758,37,26,21,0.0 +20758,70,15,9,0.0 +20758,50,16.25,21,0.0 +20758,6,25,22,0.0 +20758,11,21,38,0.0 +20758,57,19.5,34,0.0 +20758,26,31.23,31,0.0 +20758,73,15,5,0.0 +20758,46,12,15,0.0 +20758,59,55,50,0.0 +20758,74,10,38,0.0 +20758,66,17,48,0.0 +20759,1,18,49,0.0 +20759,8,40,29,0.0 +20759,64,33.25,26,0.0 +20759,25,14,43,0.0 +20759,30,25.89,24,0.0 +20759,4,22,16,0.0 +20759,38,263.5,11,0.0 +20759,37,26,29,0.0 +20759,34,14,16,0.0 +20759,22,21,30,0.0 +20759,58,13.25,9,0.0 +20759,51,53,48,0.0 +20759,59,55,39,0.0 +20759,50,16.25,1,0.0 +20759,20,81,39,0.0 +20759,72,34.8,15,0.0 +20759,5,21.35,12,0.0 +20759,17,39,32,0.0 +20759,74,10,39,0.0 +20759,10,31,23,0.0 +20759,66,17,3,0.0 +20759,33,2.5,34,0.0 +20759,13,6,41,0.0 +20759,18,62.5,40,0.0 +20759,44,19.45,2,0.0 +20760,9,97,45,0.0 +20760,65,21.05,46,0.0 +20760,6,25,12,0.0 +20760,49,20,46,0.0 +20760,36,19,38,0.0 +20760,73,15,27,0.0 +20760,48,12.75,43,0.0 +20760,29,123.79,21,0.0 +20760,3,10,42,0.0 +20760,35,18,32,0.0 +20761,58,13.25,16,0.0 +20761,20,81,17,0.0 +20761,59,55,7,0.0 +20761,55,24,2,0.0 +20761,35,18,10,0.0 +20761,45,9.5,34,0.0 +20761,61,28.5,11,0.0 +20761,32,32,40,0.0 +20761,1,18,25,0.0 +20761,31,12.5,46,0.0 +20761,50,16.25,5,0.0 +20761,63,43.9,18,0.0 +20761,48,12.75,6,0.0 +20761,11,21,18,0.0 +20761,76,18,37,0.0 +20761,37,26,16,0.0 +20761,62,49.3,37,0.0 +20761,5,21.35,37,0.0 +20761,25,14,24,0.0 +20761,47,9.5,4,0.0 +20761,53,32.8,49,0.0 +20761,66,17,1,0.0 +20761,7,30,47,0.0 +20761,13,6,15,0.0 +20761,2,19,3,0.0 +20761,34,14,22,0.0 +20761,6,25,6,0.0 +20761,8,40,20,0.0 +20761,51,53,9,0.0 +20761,19,9.2,14,0.0 +20761,75,7.75,31,0.0 +20761,41,9.65,41,0.0 +20761,15,15.5,43,0.0 +20761,16,17.45,12,0.0 +20761,38,263.5,37,0.0 +20761,3,10,43,0.0 +20761,71,21.5,14,0.0 +20761,24,4.5,47,0.0 +20762,41,9.65,21,0.0 +20762,17,39,36,0.0 +20762,49,20,43,0.0 +20762,62,49.3,29,0.0 +20762,52,7,2,0.0 +20762,75,7.75,31,0.0 +20762,72,34.8,2,0.0 +20762,71,21.5,26,0.0 +20762,38,263.5,2,0.0 +20762,70,15,15,0.0 +20762,51,53,34,0.0 +20762,56,38,3,0.0 +20762,22,21,47,0.0 +20762,5,21.35,24,0.0 +20762,57,19.5,48,0.0 +20762,21,10,32,0.0 +20762,10,31,10,0.0 +20762,63,43.9,48,0.0 +20762,58,13.25,44,0.0 +20763,52,7,23,0.0 +20763,53,32.8,2,0.0 +20763,57,19.5,8,0.0 +20764,18,62.5,4,0.0 +20764,13,6,13,0.0 +20764,43,46,2,0.0 +20764,77,13,36,0.0 +20764,25,14,16,0.0 +20764,42,14,3,0.0 +20764,3,10,43,0.0 +20764,57,19.5,8,0.0 +20764,24,4.5,20,0.0 +20764,72,34.8,45,0.0 +20764,55,24,30,0.0 +20764,6,25,14,0.0 +20764,62,49.3,20,0.0 +20764,23,9,2,0.0 +20764,36,19,30,0.0 +20764,7,30,21,0.0 +20764,50,16.25,36,0.0 +20764,61,28.5,26,0.0 +20764,4,22,3,0.0 +20764,71,21.5,49,0.0 +20764,1,18,5,0.0 +20764,30,25.89,14,0.0 +20764,51,53,15,0.0 +20764,65,21.05,29,0.0 +20764,63,43.9,7,0.0 +20764,14,23.25,45,0.0 +20764,41,9.65,47,0.0 +20764,73,15,46,0.0 +20764,75,7.75,29,0.0 +20764,59,55,33,0.0 +20764,22,21,25,0.0 +20764,53,32.8,5,0.0 +20764,31,12.5,45,0.0 +20764,38,263.5,9,0.0 +20764,33,2.5,17,0.0 +20764,67,14,50,0.0 +20764,15,15.5,34,0.0 +20764,28,45.6,13,0.0 +20764,49,20,4,0.0 +20764,47,9.5,17,0.0 +20764,45,9.5,36,0.0 +20764,52,7,42,0.0 +20764,12,38,19,0.0 +20764,68,12.5,22,0.0 +20764,66,17,3,0.0 +20764,44,19.45,33,0.0 +20764,54,7.45,25,0.0 +20764,29,123.79,30,0.0 +20764,10,31,21,0.0 +20764,70,15,21,0.0 +20764,2,19,28,0.0 +20764,48,12.75,4,0.0 +20764,76,18,25,0.0 +20764,37,26,20,0.0 +20764,69,36,19,0.0 +20764,9,97,29,0.0 +20764,17,39,45,0.0 +20764,20,81,25,0.0 +20764,26,31.23,46,0.0 +20764,39,18,48,0.0 +20764,46,12,45,0.0 +20764,35,18,17,0.0 +20764,19,9.2,31,0.0 +20764,8,40,17,0.0 +20764,5,21.35,34,0.0 +20765,33,2.5,5,0.0 +20765,31,12.5,19,0.0 +20765,28,45.6,48,0.0 +20765,14,23.25,5,0.0 +20765,23,9,5,0.0 +20765,24,4.5,7,0.0 +20765,9,97,3,0.0 +20765,10,31,10,0.0 +20765,37,26,3,0.0 +20765,21,10,20,0.0 +20765,19,9.2,13,0.0 +20765,51,53,37,0.0 +20765,4,22,36,0.0 +20765,34,14,21,0.0 +20765,15,15.5,16,0.0 +20765,54,7.45,35,0.0 +20765,40,18.4,47,0.0 +20765,58,13.25,41,0.0 +20765,16,17.45,29,0.0 +20765,5,21.35,3,0.0 +20765,38,263.5,4,0.0 +20765,53,32.8,48,0.0 +20765,68,12.5,39,0.0 +20765,76,18,1,0.0 +20765,2,19,25,0.0 +20765,57,19.5,26,0.0 +20765,32,32,46,0.0 +20765,1,18,1,0.0 +20765,12,38,20,0.0 +20765,30,25.89,4,0.0 +20765,65,21.05,23,0.0 +20765,27,43.9,24,0.0 +20765,47,9.5,2,0.0 +20765,41,9.65,29,0.0 +20765,11,21,34,0.0 +20765,29,123.79,38,0.0 +20765,17,39,2,0.0 +20765,72,34.8,44,0.0 +20765,35,18,44,0.0 +20765,63,43.9,41,0.0 +20765,48,12.75,5,0.0 +20765,62,49.3,29,0.0 +20765,25,14,1,0.0 +20765,26,31.23,50,0.0 +20765,74,10,5,0.0 +20765,70,15,2,0.0 +20765,67,14,16,0.0 +20765,13,6,15,0.0 +20765,73,15,27,0.0 +20765,49,20,7,0.0 +20765,55,24,42,0.0 +20765,8,40,45,0.0 +20766,2,19,24,0.0 +20766,11,21,32,0.0 +20766,67,14,11,0.0 +20766,77,13,22,0.0 +20766,74,10,11,0.0 +20766,42,14,26,0.0 +20766,49,20,38,0.0 +20766,13,6,50,0.0 +20766,1,18,25,0.0 +20766,5,21.35,6,0.0 +20766,31,12.5,8,0.0 +20766,62,49.3,40,0.0 +20766,59,55,3,0.0 +20766,60,34,24,0.0 +20766,30,25.89,18,0.0 +20766,72,34.8,25,0.0 +20766,64,33.25,36,0.0 +20766,51,53,35,0.0 +20766,36,19,42,0.0 +20766,70,15,22,0.0 +20766,57,19.5,16,0.0 +20766,52,7,39,0.0 +20766,10,31,4,0.0 +20766,7,30,50,0.0 +20766,39,18,14,0.0 +20766,15,15.5,11,0.0 +20766,27,43.9,35,0.0 +20766,25,14,49,0.0 +20766,38,263.5,12,0.0 +20766,66,17,48,0.0 +20766,55,24,50,0.0 +20766,46,12,4,0.0 +20766,16,17.45,36,0.0 +20766,53,32.8,43,0.0 +20766,75,7.75,19,0.0 +20766,32,32,8,0.0 +20766,33,2.5,43,0.0 +20766,37,26,31,0.0 +20766,21,10,40,0.0 +20766,23,9,2,0.0 +20766,4,22,39,0.0 +20766,14,23.25,30,0.0 +20766,35,18,3,0.0 +20766,24,4.5,37,0.0 +20766,8,40,1,0.0 +20766,34,14,38,0.0 +20766,3,10,33,0.0 +20767,74,10,31,0.0 +20767,15,15.5,21,0.0 +20767,20,81,21,0.0 +20767,51,53,13,0.0 +20767,22,21,33,0.0 +20767,38,263.5,44,0.0 +20767,41,9.65,33,0.0 +20767,27,43.9,33,0.0 +20767,23,9,50,0.0 +20767,7,30,46,0.0 +20767,50,16.25,33,0.0 +20767,63,43.9,23,0.0 +20767,59,55,27,0.0 +20767,3,10,19,0.0 +20768,48,12.75,9,0.0 +20768,54,7.45,14,0.0 +20768,40,18.4,42,0.0 +20768,4,22,12,0.0 +20768,67,14,25,0.0 +20768,75,7.75,49,0.0 +20768,10,31,6,0.0 +20768,74,10,3,0.0 +20768,28,45.6,24,0.0 +20768,22,21,4,0.0 +20768,18,62.5,38,0.0 +20768,55,24,12,0.0 +20768,5,21.35,26,0.0 +20768,66,17,22,0.0 +20768,47,9.5,30,0.0 +20768,12,38,9,0.0 +20768,63,43.9,31,0.0 +20768,3,10,50,0.0 +20768,29,123.79,22,0.0 +20768,49,20,49,0.0 +20768,36,19,35,0.0 +20768,27,43.9,8,0.0 +20768,23,9,27,0.0 +20768,73,15,48,0.0 +20768,51,53,18,0.0 +20768,60,34,43,0.0 +20768,52,7,18,0.0 +20768,14,23.25,40,0.0 +20768,72,34.8,41,0.0 +20768,70,15,7,0.0 +20768,24,4.5,12,0.0 +20768,58,13.25,17,0.0 +20768,50,16.25,12,0.0 +20768,42,14,31,0.0 +20768,35,18,25,0.0 +20768,21,10,29,0.0 +20768,17,39,16,0.0 +20769,8,40,5,0.0 +20769,18,62.5,39,0.0 +20769,60,34,35,0.0 +20769,29,123.79,41,0.0 +20769,35,18,13,0.0 +20769,70,15,18,0.0 +20769,37,26,22,0.0 +20769,46,12,2,0.0 +20769,34,14,40,0.0 +20769,51,53,41,0.0 +20770,76,18,42,0.0 +20771,31,12.5,15,0.0 +20771,15,15.5,50,0.0 +20771,32,32,43,0.0 +20771,75,7.75,42,0.0 +20771,28,45.6,1,0.0 +20771,33,2.5,40,0.0 +20771,9,97,39,0.0 +20771,56,38,41,0.0 +20771,13,6,40,0.0 +20771,4,22,20,0.0 +20771,74,10,12,0.0 +20771,44,19.45,31,0.0 +20771,40,18.4,27,0.0 +20771,35,18,15,0.0 +20771,76,18,33,0.0 +20771,59,55,24,0.0 +20771,58,13.25,22,0.0 +20771,29,123.79,22,0.0 +20771,53,32.8,28,0.0 +20771,16,17.45,11,0.0 +20771,71,21.5,8,0.0 +20771,70,15,17,0.0 +20771,77,13,45,0.0 +20771,36,19,36,0.0 +20771,57,19.5,5,0.0 +20771,64,33.25,32,0.0 +20771,25,14,1,0.0 +20771,27,43.9,41,0.0 +20771,48,12.75,39,0.0 +20771,49,20,28,0.0 +20771,67,14,36,0.0 +20771,52,7,44,0.0 +20771,6,25,10,0.0 +20771,34,14,2,0.0 +20771,54,7.45,26,0.0 +20771,23,9,42,0.0 +20771,42,14,27,0.0 +20771,69,36,50,0.0 +20771,24,4.5,25,0.0 +20771,7,30,27,0.0 +20771,8,40,32,0.0 +20771,26,31.23,29,0.0 +20771,30,25.89,9,0.0 +20771,10,31,17,0.0 +20771,38,263.5,6,0.0 +20771,39,18,39,0.0 +20771,21,10,22,0.0 +20771,14,23.25,21,0.0 +20771,19,9.2,23,0.0 +20771,66,17,1,0.0 +20771,60,34,26,0.0 +20771,65,21.05,7,0.0 +20771,20,81,12,0.0 +20771,63,43.9,22,0.0 +20771,73,15,46,0.0 +20771,3,10,11,0.0 +20771,50,16.25,5,0.0 +20771,47,9.5,37,0.0 +20771,43,46,48,0.0 +20771,61,28.5,43,0.0 +20771,45,9.5,30,0.0 +20771,62,49.3,46,0.0 +20771,51,53,9,0.0 +20771,11,21,15,0.0 +20771,5,21.35,44,0.0 +20771,2,19,7,0.0 +20771,68,12.5,23,0.0 +20771,37,26,50,0.0 +20771,17,39,43,0.0 +20771,12,38,45,0.0 +20771,72,34.8,4,0.0 +20771,46,12,32,0.0 +20771,41,9.65,24,0.0 +20771,1,18,17,0.0 +20771,55,24,35,0.0 +20772,75,7.75,7,0.0 +20772,55,24,15,0.0 +20772,31,12.5,14,0.0 +20772,77,13,20,0.0 +20772,59,55,46,0.0 +20772,26,31.23,47,0.0 +20772,19,9.2,14,0.0 +20772,58,13.25,4,0.0 +20772,18,62.5,27,0.0 +20772,29,123.79,27,0.0 +20772,60,34,15,0.0 +20772,51,53,3,0.0 +20772,74,10,9,0.0 +20772,47,9.5,48,0.0 +20772,8,40,49,0.0 +20772,14,23.25,1,0.0 +20772,70,15,31,0.0 +20772,52,7,38,0.0 +20772,50,16.25,46,0.0 +20772,21,10,26,0.0 +20772,39,18,16,0.0 +20772,10,31,6,0.0 +20772,33,2.5,48,0.0 +20772,62,49.3,43,0.0 +20772,56,38,43,0.0 +20772,48,12.75,42,0.0 +20772,72,34.8,32,0.0 +20772,25,14,25,0.0 +20772,17,39,22,0.0 +20772,54,7.45,17,0.0 +20772,49,20,33,0.0 +20772,67,14,11,0.0 +20772,15,15.5,30,0.0 +20772,53,32.8,38,0.0 +20772,16,17.45,40,0.0 +20772,64,33.25,27,0.0 +20772,36,19,43,0.0 +20772,37,26,1,0.0 +20772,61,28.5,42,0.0 +20772,20,81,45,0.0 +20772,68,12.5,10,0.0 +20772,76,18,43,0.0 +20772,3,10,8,0.0 +20772,13,6,50,0.0 +20772,30,25.89,47,0.0 +20772,5,21.35,10,0.0 +20772,38,263.5,6,0.0 +20772,69,36,5,0.0 +20772,23,9,37,0.0 +20772,46,12,24,0.0 +20772,24,4.5,49,0.0 +20772,34,14,33,0.0 +20772,1,18,44,0.0 +20772,27,43.9,11,0.0 +20772,32,32,45,0.0 +20772,11,21,19,0.0 +20772,4,22,44,0.0 +20772,66,17,18,0.0 +20772,40,18.4,36,0.0 +20772,57,19.5,1,0.0 +20772,45,9.5,39,0.0 +20772,73,15,1,0.0 +20773,76,18,15,0.0 +20773,12,38,36,0.0 +20773,50,16.25,22,0.0 +20773,13,6,39,0.0 +20773,7,30,13,0.0 +20773,46,12,3,0.0 +20773,18,62.5,47,0.0 +20773,53,32.8,7,0.0 +20773,9,97,18,0.0 +20773,40,18.4,40,0.0 +20773,70,15,16,0.0 +20773,54,7.45,9,0.0 +20773,24,4.5,1,0.0 +20773,2,19,47,0.0 +20773,37,26,30,0.0 +20773,38,263.5,18,0.0 +20773,52,7,20,0.0 +20773,32,32,1,0.0 +20773,29,123.79,22,0.0 +20773,74,10,35,0.0 +20773,45,9.5,10,0.0 +20773,73,15,24,0.0 +20773,6,25,5,0.0 +20773,71,21.5,44,0.0 +20773,28,45.6,18,0.0 +20773,3,10,7,0.0 +20773,66,17,44,0.0 +20773,69,36,42,0.0 +20773,41,9.65,42,0.0 +20773,55,24,15,0.0 +20774,69,36,38,0.0 +20774,58,13.25,3,0.0 +20774,28,45.6,13,0.0 +20774,17,39,45,0.0 +20774,63,43.9,4,0.0 +20774,37,26,40,0.0 +20774,8,40,27,0.0 +20774,5,21.35,21,0.0 +20774,71,21.5,48,0.0 +20774,75,7.75,50,0.0 +20774,23,9,22,0.0 +20774,57,19.5,35,0.0 +20774,27,43.9,35,0.0 +20774,24,4.5,12,0.0 +20774,60,34,19,0.0 +20774,47,9.5,49,0.0 +20774,68,12.5,27,0.0 +20774,45,9.5,40,0.0 +20774,40,18.4,35,0.0 +20774,44,19.45,44,0.0 +20774,43,46,37,0.0 +20774,38,263.5,26,0.0 +20774,72,34.8,3,0.0 +20774,46,12,23,0.0 +20774,20,81,5,0.0 +20774,21,10,37,0.0 +20774,13,6,11,0.0 +20774,26,31.23,50,0.0 +20774,65,21.05,35,0.0 +20774,15,15.5,20,0.0 +20774,25,14,45,0.0 +20774,64,33.25,7,0.0 +20774,30,25.89,10,0.0 +20774,32,32,3,0.0 +20774,3,10,25,0.0 +20774,41,9.65,33,0.0 +20774,52,7,35,0.0 +20774,50,16.25,36,0.0 +20774,22,21,40,0.0 +20774,53,32.8,50,0.0 +20774,11,21,32,0.0 +20774,1,18,13,0.0 +20774,19,9.2,30,0.0 +20774,6,25,31,0.0 +20774,66,17,29,0.0 +20774,77,13,49,0.0 +20774,54,7.45,44,0.0 +20774,56,38,6,0.0 +20774,34,14,27,0.0 +20774,4,22,41,0.0 +20774,62,49.3,16,0.0 +20774,36,19,13,0.0 +20774,18,62.5,43,0.0 +20774,33,2.5,34,0.0 +20774,61,28.5,17,0.0 +20774,12,38,11,0.0 +20774,14,23.25,36,0.0 +20774,31,12.5,42,0.0 +20774,51,53,19,0.0 +20774,55,24,46,0.0 +20774,7,30,30,0.0 +20774,35,18,6,0.0 +20774,73,15,33,0.0 +20774,67,14,23,0.0 +20775,38,263.5,4,0.0 +20775,43,46,47,0.0 +20775,50,16.25,16,0.0 +20775,68,12.5,16,0.0 +20775,34,14,1,0.0 +20775,57,19.5,34,0.0 +20775,65,21.05,31,0.0 +20775,66,17,27,0.0 +20775,2,19,36,0.0 +20775,15,15.5,43,0.0 +20775,40,18.4,3,0.0 +20775,17,39,13,0.0 +20775,25,14,1,0.0 +20775,19,9.2,3,0.0 +20775,6,25,39,0.0 +20775,4,22,34,0.0 +20775,76,18,23,0.0 +20775,23,9,38,0.0 +20775,18,62.5,48,0.0 +20775,39,18,36,0.0 +20775,42,14,44,0.0 +20775,20,81,24,0.0 +20775,8,40,32,0.0 +20775,67,14,18,0.0 +20775,31,12.5,5,0.0 +20775,28,45.6,25,0.0 +20775,58,13.25,25,0.0 +20775,33,2.5,26,0.0 +20775,5,21.35,25,0.0 +20775,1,18,29,0.0 +20775,52,7,7,0.0 +20775,30,25.89,11,0.0 +20775,36,19,50,0.0 +20775,32,32,5,0.0 +20775,9,97,8,0.0 +20775,45,9.5,39,0.0 +20775,24,4.5,48,0.0 +20775,49,20,24,0.0 +20775,13,6,27,0.0 +20775,10,31,45,0.0 +20775,12,38,9,0.0 +20775,27,43.9,48,0.0 +20775,54,7.45,5,0.0 +20775,11,21,22,0.0 +20775,22,21,11,0.0 +20775,60,34,46,0.0 +20775,7,30,31,0.0 +20775,51,53,36,0.0 +20775,16,17.45,43,0.0 +20775,72,34.8,50,0.0 +20775,73,15,48,0.0 +20775,71,21.5,22,0.0 +20775,70,15,22,0.0 +20775,59,55,32,0.0 +20775,3,10,2,0.0 +20775,56,38,39,0.0 +20775,44,19.45,4,0.0 +20775,41,9.65,33,0.0 +20775,26,31.23,47,0.0 +20775,46,12,43,0.0 +20775,55,24,27,0.0 +20775,74,10,22,0.0 +20775,62,49.3,5,0.0 +20775,21,10,13,0.0 +20775,29,123.79,9,0.0 +20775,77,13,46,0.0 +20775,75,7.75,47,0.0 +20776,31,12.5,34,0.0 +20776,9,97,29,0.0 +20776,50,16.25,41,0.0 +20776,5,21.35,1,0.0 +20776,69,36,16,0.0 +20776,54,7.45,14,0.0 +20776,17,39,12,0.0 +20776,57,19.5,1,0.0 +20776,16,17.45,15,0.0 +20776,51,53,37,0.0 +20776,6,25,43,0.0 +20776,76,18,34,0.0 +20776,4,22,4,0.0 +20776,40,18.4,41,0.0 +20776,32,32,22,0.0 +20776,20,81,13,0.0 +20776,1,18,47,0.0 +20776,30,25.89,31,0.0 +20776,13,6,9,0.0 +20776,68,12.5,36,0.0 +20776,33,2.5,15,0.0 +20776,23,9,20,0.0 +20776,58,13.25,44,0.0 +20776,72,34.8,46,0.0 +20776,77,13,45,0.0 +20776,63,43.9,44,0.0 +20776,29,123.79,5,0.0 +20776,55,24,6,0.0 +20776,8,40,9,0.0 +20776,73,15,7,0.0 +20776,67,14,8,0.0 +20776,26,31.23,16,0.0 +20776,24,4.5,38,0.0 +20776,75,7.75,45,0.0 +20776,53,32.8,26,0.0 +20776,14,23.25,39,0.0 +20776,28,45.6,34,0.0 +20776,47,9.5,18,0.0 +20776,64,33.25,19,0.0 +20776,37,26,5,0.0 +20776,18,62.5,4,0.0 +20776,45,9.5,40,0.0 +20776,70,15,29,0.0 +20776,12,38,47,0.0 +20776,15,15.5,6,0.0 +20776,2,19,14,0.0 +20776,35,18,20,0.0 +20776,41,9.65,29,0.0 +20776,71,21.5,10,0.0 +20776,10,31,43,0.0 +20776,61,28.5,16,0.0 +20776,66,17,29,0.0 +20776,44,19.45,33,0.0 +20776,74,10,27,0.0 +20776,59,55,41,0.0 +20776,19,9.2,3,0.0 +20776,43,46,4,0.0 +20776,3,10,18,0.0 +20776,34,14,33,0.0 +20776,27,43.9,6,0.0 +20776,46,12,29,0.0 +20776,65,21.05,2,0.0 +20776,42,14,50,0.0 +20777,46,12,15,0.0 +20777,68,12.5,10,0.0 +20777,53,32.8,2,0.0 +20777,30,25.89,14,0.0 +20777,75,7.75,18,0.0 +20777,29,123.79,43,0.0 +20778,31,12.5,3,0.0 +20778,38,263.5,11,0.0 +20778,37,26,32,0.0 +20778,5,21.35,46,0.0 +20778,2,19,13,0.0 +20778,32,32,41,0.0 +20778,42,14,27,0.0 +20778,56,38,21,0.0 +20778,18,62.5,15,0.0 +20778,26,31.23,19,0.0 +20778,63,43.9,29,0.0 +20778,23,9,3,0.0 +20778,48,12.75,20,0.0 +20778,52,7,46,0.0 +20778,14,23.25,24,0.0 +20778,51,53,8,0.0 +20778,8,40,13,0.0 +20778,44,19.45,43,0.0 +20778,65,21.05,32,0.0 +20778,73,15,39,0.0 +20778,59,55,22,0.0 +20778,30,25.89,33,0.0 +20778,29,123.79,38,0.0 +20778,20,81,42,0.0 +20778,69,36,36,0.0 +20778,25,14,34,0.0 +20778,71,21.5,18,0.0 +20778,58,13.25,47,0.0 +20778,16,17.45,25,0.0 +20778,34,14,9,0.0 +20778,10,31,50,0.0 +20778,67,14,19,0.0 +20778,28,45.6,10,0.0 +20778,41,9.65,44,0.0 +20778,36,19,2,0.0 +20778,13,6,34,0.0 +20778,61,28.5,46,0.0 +20778,57,19.5,24,0.0 +20778,53,32.8,13,0.0 +20778,24,4.5,13,0.0 +20778,70,15,22,0.0 +20778,60,34,4,0.0 +20778,1,18,45,0.0 +20779,58,13.25,42,0.0 +20779,61,28.5,17,0.0 +20779,18,62.5,35,0.0 +20779,24,4.5,47,0.0 +20779,17,39,17,0.0 +20779,8,40,37,0.0 +20779,23,9,17,0.0 +20779,72,34.8,9,0.0 +20779,29,123.79,24,0.0 +20779,46,12,20,0.0 +20779,14,23.25,12,0.0 +20779,43,46,46,0.0 +20779,64,33.25,5,0.0 +20779,9,97,34,0.0 +20779,1,18,24,0.0 +20779,70,15,10,0.0 +20779,12,38,35,0.0 +20779,33,2.5,16,0.0 +20779,55,24,49,0.0 +20779,34,14,33,0.0 +20779,77,13,3,0.0 +20779,67,14,20,0.0 +20779,60,34,31,0.0 +20779,13,6,7,0.0 +20779,19,9.2,38,0.0 +20779,52,7,31,0.0 +20779,26,31.23,25,0.0 +20779,38,263.5,46,0.0 +20779,74,10,44,0.0 +20779,44,19.45,5,0.0 +20779,53,32.8,3,0.0 +20779,21,10,43,0.0 +20779,48,12.75,50,0.0 +20779,47,9.5,22,0.0 +20779,11,21,3,0.0 +20779,5,21.35,25,0.0 +20779,57,19.5,40,0.0 +20779,39,18,17,0.0 +20779,59,55,13,0.0 +20779,66,17,43,0.0 +20779,73,15,38,0.0 +20779,2,19,11,0.0 +20779,50,16.25,45,0.0 +20779,42,14,26,0.0 +20779,56,38,14,0.0 +20779,15,15.5,17,0.0 +20779,36,19,12,0.0 +20779,10,31,34,0.0 +20779,32,32,23,0.0 +20779,62,49.3,21,0.0 +20779,51,53,43,0.0 +20779,27,43.9,41,0.0 +20779,71,21.5,4,0.0 +20779,31,12.5,29,0.0 +20779,69,36,25,0.0 +20779,4,22,17,0.0 +20779,28,45.6,22,0.0 +20779,68,12.5,17,0.0 +20779,41,9.65,49,0.0 +20779,75,7.75,20,0.0 +20779,45,9.5,20,0.0 +20779,40,18.4,40,0.0 +20779,3,10,20,0.0 +20779,54,7.45,11,0.0 +20779,7,30,21,0.0 +20779,49,20,32,0.0 +20779,35,18,50,0.0 +20780,63,43.9,7,0.0 +20780,15,15.5,30,0.0 +20780,57,19.5,49,0.0 +20780,1,18,35,0.0 +20780,8,40,32,0.0 +20780,59,55,8,0.0 +20780,58,13.25,24,0.0 +20780,39,18,4,0.0 +20780,66,17,28,0.0 +20780,46,12,14,0.0 +20780,67,14,17,0.0 +20780,19,9.2,2,0.0 +20780,17,39,3,0.0 +20780,47,9.5,6,0.0 +20780,64,33.25,1,0.0 +20780,16,17.45,48,0.0 +20780,42,14,41,0.0 +20780,3,10,8,0.0 +20780,53,32.8,42,0.0 +20780,61,28.5,46,0.0 +20780,6,25,46,0.0 +20780,11,21,46,0.0 +20780,26,31.23,26,0.0 +20780,48,12.75,11,0.0 +20780,29,123.79,5,0.0 +20780,18,62.5,12,0.0 +20781,16,17.45,44,0.0 +20781,5,21.35,42,0.0 +20781,54,7.45,47,0.0 +20781,66,17,3,0.0 +20781,15,15.5,28,0.0 +20781,41,9.65,49,0.0 +20781,4,22,8,0.0 +20781,56,38,50,0.0 +20781,11,21,36,0.0 +20781,33,2.5,32,0.0 +20781,48,12.75,40,0.0 +20781,13,6,5,0.0 +20781,35,18,34,0.0 +20782,53,32.8,46,0.0 +20782,7,30,8,0.0 +20782,73,15,20,0.0 +20782,18,62.5,33,0.0 +20782,45,9.5,17,0.0 +20782,47,9.5,28,0.0 +20782,65,21.05,24,0.0 +20782,66,17,35,0.0 +20782,24,4.5,20,0.0 +20782,59,55,11,0.0 +20782,8,40,25,0.0 +20782,68,12.5,43,0.0 +20782,11,21,34,0.0 +20782,34,14,19,0.0 +20782,40,18.4,46,0.0 +20782,44,19.45,21,0.0 +20782,46,12,12,0.0 +20782,55,24,49,0.0 +20782,64,33.25,40,0.0 +20782,13,6,33,0.0 +20782,20,81,26,0.0 +20782,57,19.5,25,0.0 +20782,3,10,39,0.0 +20782,4,22,35,0.0 +20782,74,10,11,0.0 +20782,39,18,45,0.0 +20782,41,9.65,50,0.0 +20782,52,7,48,0.0 +20782,72,34.8,45,0.0 +20782,14,23.25,40,0.0 +20782,54,7.45,36,0.0 +20782,22,21,16,0.0 +20782,26,31.23,15,0.0 +20782,77,13,34,0.0 +20782,27,43.9,30,0.0 +20782,49,20,32,0.0 +20782,32,32,27,0.0 +20782,37,26,14,0.0 +20782,69,36,50,0.0 +20782,28,45.6,31,0.0 +20782,51,53,4,0.0 +20782,5,21.35,41,0.0 +20782,29,123.79,18,0.0 +20782,10,31,46,0.0 +20782,12,38,25,0.0 +20782,1,18,39,0.0 +20782,17,39,3,0.0 +20782,16,17.45,24,0.0 +20782,21,10,16,0.0 +20782,63,43.9,41,0.0 +20782,71,21.5,34,0.0 +20782,60,34,23,0.0 +20782,35,18,18,0.0 +20782,31,12.5,26,0.0 +20782,50,16.25,49,0.0 +20782,19,9.2,33,0.0 +20782,56,38,15,0.0 +20782,61,28.5,31,0.0 +20782,15,15.5,10,0.0 +20782,70,15,43,0.0 +20782,76,18,34,0.0 +20783,15,15.5,4,0.0 +20783,53,32.8,10,0.0 +20783,21,10,16,0.0 +20783,40,18.4,4,0.0 +20783,61,28.5,33,0.0 +20783,29,123.79,10,0.0 +20783,65,21.05,46,0.0 +20783,8,40,20,0.0 +20783,76,18,3,0.0 +20783,10,31,16,0.0 +20783,55,24,5,0.0 +20783,34,14,26,0.0 +20783,18,62.5,41,0.0 +20783,58,13.25,38,0.0 +20783,44,19.45,15,0.0 +20783,69,36,24,0.0 +20783,17,39,7,0.0 +20783,6,25,24,0.0 +20783,75,7.75,14,0.0 +20783,27,43.9,9,0.0 +20783,46,12,48,0.0 +20783,51,53,23,0.0 +20783,47,9.5,41,0.0 +20783,66,17,23,0.0 +20783,45,9.5,2,0.0 +20784,24,4.5,45,0.0 +20784,25,14,24,0.0 +20784,40,18.4,26,0.0 +20784,15,15.5,11,0.0 +20784,20,81,46,0.0 +20784,37,26,6,0.0 +20784,55,24,13,0.0 +20784,2,19,5,0.0 +20784,5,21.35,16,0.0 +20784,38,263.5,48,0.0 +20784,6,25,44,0.0 +20784,60,34,30,0.0 +20784,49,20,8,0.0 +20784,50,16.25,31,0.0 +20784,30,25.89,31,0.0 +20784,76,18,13,0.0 +20784,9,97,3,0.0 +20784,3,10,22,0.0 +20784,70,15,49,0.0 +20784,10,31,2,0.0 +20784,19,9.2,26,0.0 +20784,42,14,1,0.0 +20784,23,9,46,0.0 +20784,77,13,19,0.0 +20784,66,17,11,0.0 +20784,45,9.5,44,0.0 +20784,48,12.75,14,0.0 +20784,75,7.75,14,0.0 +20784,74,10,6,0.0 +20784,36,19,38,0.0 +20784,35,18,16,0.0 +20784,44,19.45,11,0.0 +20784,52,7,30,0.0 +20784,7,30,34,0.0 +20784,31,12.5,26,0.0 +20784,21,10,29,0.0 +20784,69,36,50,0.0 +20784,27,43.9,46,0.0 +20784,64,33.25,11,0.0 +20784,46,12,23,0.0 +20784,61,28.5,1,0.0 +20784,58,13.25,20,0.0 +20784,51,53,47,0.0 +20784,33,2.5,3,0.0 +20784,47,9.5,16,0.0 +20784,71,21.5,45,0.0 +20784,67,14,25,0.0 +20784,72,34.8,21,0.0 +20784,17,39,30,0.0 +20784,62,49.3,8,0.0 +20784,11,21,21,0.0 +20784,1,18,46,0.0 +20784,68,12.5,19,0.0 +20784,18,62.5,27,0.0 +20784,65,21.05,25,0.0 +20785,71,21.5,9,0.0 +20785,40,18.4,43,0.0 +20785,77,13,9,0.0 +20785,52,7,27,0.0 +20785,17,39,14,0.0 +20785,26,31.23,13,0.0 +20785,2,19,6,0.0 +20785,37,26,49,0.0 +20785,70,15,4,0.0 +20785,34,14,40,0.0 +20785,44,19.45,31,0.0 +20785,47,9.5,29,0.0 +20785,66,17,44,0.0 +20785,9,97,26,0.0 +20785,27,43.9,34,0.0 +20785,24,4.5,3,0.0 +20785,5,21.35,42,0.0 +20785,8,40,50,0.0 +20785,1,18,13,0.0 +20785,13,6,25,0.0 +20785,46,12,14,0.0 +20785,51,53,2,0.0 +20785,32,32,1,0.0 +20785,50,16.25,39,0.0 +20785,58,13.25,1,0.0 +20785,33,2.5,49,0.0 +20785,69,36,23,0.0 +20785,48,12.75,40,0.0 +20785,20,81,25,0.0 +20785,11,21,35,0.0 +20785,65,21.05,43,0.0 +20785,18,62.5,23,0.0 +20785,74,10,42,0.0 +20785,19,9.2,1,0.0 +20785,29,123.79,27,0.0 +20785,45,9.5,45,0.0 +20785,42,14,38,0.0 +20785,49,20,43,0.0 +20785,3,10,10,0.0 +20785,55,24,10,0.0 +20785,22,21,34,0.0 +20785,35,18,10,0.0 +20785,73,15,14,0.0 +20785,61,28.5,47,0.0 +20786,76,18,25,0.0 +20786,13,6,8,0.0 +20786,20,81,35,0.0 +20786,59,55,42,0.0 +20786,17,39,40,0.0 +20786,50,16.25,49,0.0 +20786,37,26,37,0.0 +20786,69,36,23,0.0 +20786,41,9.65,41,0.0 +20786,64,33.25,25,0.0 +20786,34,14,21,0.0 +20786,5,21.35,24,0.0 +20787,2,19,7,0.0 +20787,31,12.5,6,0.0 +20787,62,49.3,5,0.0 +20787,29,123.79,10,0.0 +20787,38,263.5,32,0.0 +20787,77,13,27,0.0 +20787,19,9.2,15,0.0 +20787,46,12,41,0.0 +20787,44,19.45,41,0.0 +20787,15,15.5,21,0.0 +20787,53,32.8,27,0.0 +20787,9,97,32,0.0 +20788,40,18.4,1,0.0 +20788,32,32,48,0.0 +20788,35,18,31,0.0 +20788,34,14,46,0.0 +20788,19,9.2,37,0.0 +20789,30,25.89,50,0.0 +20789,77,13,40,0.0 +20789,27,43.9,12,0.0 +20789,21,10,31,0.0 +20789,40,18.4,30,0.0 +20789,46,12,21,0.0 +20789,32,32,12,0.0 +20789,70,15,33,0.0 +20789,62,49.3,32,0.0 +20789,54,7.45,29,0.0 +20789,57,19.5,38,0.0 +20789,26,31.23,27,0.0 +20789,50,16.25,37,0.0 +20789,1,18,7,0.0 +20789,28,45.6,37,0.0 +20789,13,6,22,0.0 +20789,20,81,13,0.0 +20789,72,34.8,11,0.0 +20789,67,14,40,0.0 +20789,16,17.45,30,0.0 +20789,48,12.75,44,0.0 +20789,12,38,29,0.0 +20789,53,32.8,45,0.0 +20789,22,21,48,0.0 +20789,44,19.45,18,0.0 +20789,37,26,23,0.0 +20789,36,19,29,0.0 +20789,15,15.5,26,0.0 +20789,19,9.2,18,0.0 +20789,39,18,35,0.0 +20789,11,21,25,0.0 +20789,73,15,7,0.0 +20789,5,21.35,17,0.0 +20789,9,97,21,0.0 +20789,51,53,6,0.0 +20789,10,31,32,0.0 +20789,63,43.9,23,0.0 +20789,7,30,45,0.0 +20789,75,7.75,50,0.0 +20789,35,18,19,0.0 +20789,41,9.65,46,0.0 +20789,14,23.25,21,0.0 +20789,4,22,7,0.0 +20789,17,39,13,0.0 +20789,47,9.5,47,0.0 +20789,60,34,4,0.0 +20789,52,7,13,0.0 +20789,56,38,21,0.0 +20789,18,62.5,6,0.0 +20789,64,33.25,9,0.0 +20789,61,28.5,15,0.0 +20789,38,263.5,21,0.0 +20789,68,12.5,11,0.0 +20790,23,9,3,0.0 +20790,53,32.8,8,0.0 +20790,1,18,19,0.0 +20790,50,16.25,23,0.0 +20790,32,32,16,0.0 +20790,10,31,16,0.0 +20790,76,18,35,0.0 +20790,22,21,48,0.0 +20790,8,40,9,0.0 +20790,11,21,11,0.0 +20790,30,25.89,8,0.0 +20790,35,18,44,0.0 +20790,14,23.25,50,0.0 +20790,31,12.5,18,0.0 +20790,60,34,50,0.0 +20790,17,39,4,0.0 +20790,73,15,28,0.0 +20790,40,18.4,46,0.0 +20790,29,123.79,2,0.0 +20790,74,10,17,0.0 +20790,4,22,3,0.0 +20790,44,19.45,49,0.0 +20790,12,38,37,0.0 +20790,66,17,42,0.0 +20790,21,10,2,0.0 +20790,34,14,4,0.0 +20790,70,15,49,0.0 +20790,37,26,11,0.0 +20790,64,33.25,20,0.0 +20790,54,7.45,32,0.0 +20790,38,263.5,48,0.0 +20790,68,12.5,42,0.0 +20790,46,12,31,0.0 +20790,9,97,45,0.0 +20790,20,81,1,0.0 +20790,27,43.9,4,0.0 +20790,45,9.5,30,0.0 +20790,51,53,40,0.0 +20790,56,38,32,0.0 +20790,25,14,19,0.0 +20790,33,2.5,21,0.0 +20790,26,31.23,9,0.0 +20790,19,9.2,47,0.0 +20790,41,9.65,42,0.0 +20790,59,55,15,0.0 +20790,7,30,19,0.0 +20790,52,7,32,0.0 +20790,63,43.9,42,0.0 +20790,5,21.35,5,0.0 +20790,2,19,6,0.0 +20790,36,19,15,0.0 +20790,71,21.5,1,0.0 +20790,6,25,45,0.0 +20790,62,49.3,46,0.0 +20790,43,46,49,0.0 +20790,65,21.05,41,0.0 +20790,57,19.5,25,0.0 +20790,49,20,45,0.0 +20790,3,10,10,0.0 +20790,67,14,29,0.0 +20790,42,14,8,0.0 +20790,16,17.45,36,0.0 +20790,15,15.5,10,0.0 +20791,2,19,49,0.0 +20791,71,21.5,18,0.0 +20791,66,17,36,0.0 +20791,38,263.5,10,0.0 +20791,72,34.8,18,0.0 +20791,53,32.8,24,0.0 +20791,22,21,34,0.0 +20791,68,12.5,47,0.0 +20791,8,40,17,0.0 +20791,28,45.6,5,0.0 +20791,67,14,50,0.0 +20791,14,23.25,3,0.0 +20791,35,18,44,0.0 +20791,25,14,12,0.0 +20791,69,36,15,0.0 +20791,41,9.65,19,0.0 +20791,42,14,3,0.0 +20791,21,10,5,0.0 +20791,4,22,43,0.0 +20791,27,43.9,1,0.0 +20791,43,46,20,0.0 +20791,34,14,26,0.0 +20791,48,12.75,27,0.0 +20791,12,38,44,0.0 +20791,24,4.5,42,0.0 +20791,16,17.45,2,0.0 +20791,76,18,4,0.0 +20791,58,13.25,19,0.0 +20791,45,9.5,6,0.0 +20791,40,18.4,29,0.0 +20791,51,53,49,0.0 +20791,19,9.2,6,0.0 +20791,62,49.3,38,0.0 +20791,23,9,41,0.0 +20791,31,12.5,14,0.0 +20791,59,55,48,0.0 +20791,44,19.45,43,0.0 +20791,47,9.5,18,0.0 +20791,52,7,23,0.0 +20791,63,43.9,20,0.0 +20791,3,10,44,0.0 +20791,61,28.5,50,0.0 +20791,77,13,32,0.0 +20792,67,14,20,0.0 +20792,65,21.05,14,0.0 +20792,45,9.5,22,0.0 +20792,23,9,40,0.0 +20792,69,36,12,0.0 +20792,4,22,28,0.0 +20792,28,45.6,19,0.0 +20792,20,81,42,0.0 +20792,58,13.25,43,0.0 +20792,11,21,49,0.0 +20792,38,263.5,10,0.0 +20792,9,97,2,0.0 +20792,44,19.45,35,0.0 +20792,35,18,49,0.0 +20792,61,28.5,49,0.0 +20792,8,40,29,0.0 +20792,53,32.8,21,0.0 +20792,1,18,40,0.0 +20792,31,12.5,3,0.0 +20792,10,31,25,0.0 +20792,2,19,3,0.0 +20792,26,31.23,30,0.0 +20792,63,43.9,32,0.0 +20792,40,18.4,50,0.0 +20792,15,15.5,25,0.0 +20792,77,13,36,0.0 +20792,29,123.79,20,0.0 +20792,42,14,38,0.0 +20792,59,55,45,0.0 +20792,24,4.5,5,0.0 +20792,49,20,19,0.0 +20792,18,62.5,20,0.0 +20792,17,39,43,0.0 +20792,5,21.35,11,0.0 +20792,3,10,50,0.0 +20792,22,21,27,0.0 +20792,46,12,28,0.0 +20792,19,9.2,49,0.0 +20792,66,17,40,0.0 +20792,62,49.3,4,0.0 +20792,41,9.65,46,0.0 +20792,21,10,31,0.0 +20792,32,32,32,0.0 +20792,36,19,45,0.0 +20792,16,17.45,14,0.0 +20792,25,14,15,0.0 +20792,12,38,9,0.0 +20792,56,38,30,0.0 +20792,68,12.5,8,0.0 +20792,14,23.25,50,0.0 +20793,62,49.3,35,0.0 +20793,53,32.8,17,0.0 +20793,17,39,21,0.0 +20793,59,55,30,0.0 +20793,5,21.35,42,0.0 +20793,60,34,44,0.0 +20793,35,18,21,0.0 +20793,58,13.25,26,0.0 +20793,30,25.89,45,0.0 +20793,13,6,47,0.0 +20793,61,28.5,16,0.0 +20793,6,25,38,0.0 +20793,56,38,4,0.0 +20793,43,46,37,0.0 +20793,4,22,16,0.0 +20793,28,45.6,29,0.0 +20793,70,15,41,0.0 +20793,45,9.5,34,0.0 +20793,41,9.65,1,0.0 +20793,16,17.45,50,0.0 +20793,75,7.75,39,0.0 +20793,1,18,2,0.0 +20793,34,14,11,0.0 +20793,25,14,49,0.0 +20793,54,7.45,26,0.0 +20793,48,12.75,21,0.0 +20793,68,12.5,28,0.0 +20793,63,43.9,18,0.0 +20793,72,34.8,45,0.0 +20793,10,31,20,0.0 +20793,46,12,12,0.0 +20793,29,123.79,49,0.0 +20793,38,263.5,38,0.0 +20793,32,32,8,0.0 +20793,65,21.05,19,0.0 +20793,19,9.2,28,0.0 +20793,40,18.4,23,0.0 +20793,33,2.5,21,0.0 +20793,26,31.23,24,0.0 +20793,36,19,1,0.0 +20793,55,24,27,0.0 +20793,77,13,20,0.0 +20793,18,62.5,46,0.0 +20793,47,9.5,33,0.0 +20793,71,21.5,33,0.0 +20793,9,97,27,0.0 +20793,15,15.5,35,0.0 +20793,12,38,40,0.0 +20793,74,10,11,0.0 +20793,24,4.5,3,0.0 +20793,44,19.45,15,0.0 +20793,49,20,20,0.0 +20793,76,18,6,0.0 +20793,27,43.9,17,0.0 +20793,39,18,2,0.0 +20793,42,14,36,0.0 +20793,20,81,48,0.0 +20793,21,10,31,0.0 +20793,22,21,42,0.0 +20793,11,21,24,0.0 +20793,67,14,20,0.0 +20793,7,30,40,0.0 +20794,10,31,19,0.0 +20794,1,18,21,0.0 +20794,41,9.65,49,0.0 +20794,8,40,15,0.0 +20794,48,12.75,36,0.0 +20794,53,32.8,27,0.0 +20794,29,123.79,4,0.0 +20794,54,7.45,16,0.0 +20794,6,25,12,0.0 +20794,45,9.5,13,0.0 +20794,39,18,21,0.0 +20794,15,15.5,7,0.0 +20794,16,17.45,21,0.0 +20794,35,18,44,0.0 +20794,56,38,6,0.0 +20794,66,17,2,0.0 +20794,55,24,5,0.0 +20794,4,22,46,0.0 +20794,36,19,38,0.0 +20794,3,10,42,0.0 +20794,69,36,34,0.0 +20794,75,7.75,6,0.0 +20794,64,33.25,9,0.0 +20794,38,263.5,21,0.0 +20794,17,39,6,0.0 +20794,50,16.25,7,0.0 +20794,49,20,18,0.0 +20794,26,31.23,39,0.0 +20794,43,46,36,0.0 +20794,67,14,26,0.0 +20794,71,21.5,20,0.0 +20794,46,12,13,0.0 +20794,59,55,48,0.0 +20794,44,19.45,13,0.0 +20794,51,53,9,0.0 +20794,22,21,6,0.0 +20794,63,43.9,9,0.0 +20794,32,32,5,0.0 +20794,57,19.5,7,0.0 +20794,2,19,25,0.0 +20794,65,21.05,32,0.0 +20794,23,9,35,0.0 +20794,20,81,27,0.0 +20794,47,9.5,35,0.0 +20794,31,12.5,35,0.0 +20794,61,28.5,43,0.0 +20794,42,14,30,0.0 +20794,70,15,10,0.0 +20794,18,62.5,15,0.0 +20794,19,9.2,10,0.0 +20794,34,14,18,0.0 +20794,68,12.5,4,0.0 +20794,27,43.9,25,0.0 +20794,9,97,25,0.0 +20794,5,21.35,19,0.0 +20794,72,34.8,12,0.0 +20794,21,10,27,0.0 +20794,12,38,45,0.0 +20794,76,18,26,0.0 +20794,7,30,21,0.0 +20794,25,14,43,0.0 +20794,14,23.25,19,0.0 +20794,62,49.3,41,0.0 +20794,60,34,11,0.0 +20794,73,15,23,0.0 +20794,58,13.25,27,0.0 +20794,11,21,48,0.0 +20794,30,25.89,48,0.0 +20794,74,10,41,0.0 +20794,52,7,48,0.0 +20794,13,6,45,0.0 +20794,28,45.6,14,0.0 +20794,24,4.5,25,0.0 +20794,77,13,30,0.0 +20794,33,2.5,7,0.0 +20794,37,26,26,0.0 +20795,18,62.5,30,0.0 +20795,25,14,21,0.0 +20795,20,81,13,0.0 +20795,10,31,27,0.0 +20795,75,7.75,16,0.0 +20795,2,19,39,0.0 +20795,36,19,9,0.0 +20795,47,9.5,1,0.0 +20795,51,53,4,0.0 +20795,48,12.75,36,0.0 +20795,72,34.8,20,0.0 +20795,34,14,38,0.0 +20795,5,21.35,20,0.0 +20795,27,43.9,42,0.0 +20795,64,33.25,41,0.0 +20795,65,21.05,19,0.0 +20795,37,26,6,0.0 +20795,24,4.5,46,0.0 +20795,62,49.3,14,0.0 +20795,63,43.9,14,0.0 +20795,14,23.25,22,0.0 +20795,53,32.8,3,0.0 +20795,7,30,31,0.0 +20795,29,123.79,39,0.0 +20795,46,12,32,0.0 +20795,42,14,1,0.0 +20795,60,34,18,0.0 +20795,22,21,1,0.0 +20795,68,12.5,40,0.0 +20795,61,28.5,7,0.0 +20795,71,21.5,12,0.0 +20795,13,6,16,0.0 +20795,31,12.5,22,0.0 +20795,38,263.5,29,0.0 +20795,59,55,40,0.0 +20795,45,9.5,25,0.0 +20795,6,25,11,0.0 +20795,56,38,26,0.0 +20795,11,21,18,0.0 +20795,74,10,18,0.0 +20795,9,97,3,0.0 +20795,12,38,12,0.0 +20795,4,22,39,0.0 +20795,23,9,34,0.0 +20795,35,18,43,0.0 +20796,12,38,21,0.0 +20796,45,9.5,28,0.0 +20796,38,263.5,36,0.0 +20796,6,25,23,0.0 +20796,44,19.45,12,0.0 +20796,66,17,19,0.0 +20796,49,20,29,0.0 +20796,18,62.5,37,0.0 +20796,30,25.89,33,0.0 +20796,59,55,27,0.0 +20796,14,23.25,24,0.0 +20796,1,18,49,0.0 +20796,65,21.05,2,0.0 +20796,17,39,32,0.0 +20796,74,10,15,0.0 +20796,24,4.5,29,0.0 +20796,57,19.5,17,0.0 +20796,19,9.2,11,0.0 +20796,28,45.6,13,0.0 +20796,33,2.5,29,0.0 +20796,55,24,13,0.0 +20796,29,123.79,4,0.0 +20796,47,9.5,42,0.0 +20796,46,12,6,0.0 +20796,32,32,27,0.0 +20796,52,7,46,0.0 +20796,41,9.65,16,0.0 +20796,16,17.45,17,0.0 +20796,70,15,26,0.0 +20796,53,32.8,10,0.0 +20796,3,10,2,0.0 +20796,62,49.3,42,0.0 +20796,15,15.5,36,0.0 +20796,51,53,10,0.0 +20796,26,31.23,42,0.0 +20796,64,33.25,29,0.0 +20796,58,13.25,10,0.0 +20796,21,10,31,0.0 +20796,40,18.4,39,0.0 +20796,73,15,12,0.0 +20796,71,21.5,29,0.0 +20796,39,18,39,0.0 +20796,50,16.25,30,0.0 +20796,43,46,14,0.0 +20796,37,26,29,0.0 +20796,42,14,2,0.0 +20796,22,21,29,0.0 +20796,11,21,29,0.0 +20796,54,7.45,17,0.0 +20796,77,13,27,0.0 +20796,20,81,34,0.0 +20797,34,14,33,0.0 +20797,36,19,18,0.0 +20797,54,7.45,21,0.0 +20797,17,39,43,0.0 +20797,73,15,46,0.0 +20797,51,53,42,0.0 +20797,58,13.25,21,0.0 +20797,18,62.5,46,0.0 +20797,25,14,1,0.0 +20797,4,22,40,0.0 +20797,38,263.5,21,0.0 +20797,5,21.35,12,0.0 +20797,59,55,32,0.0 +20797,71,21.5,32,0.0 +20797,32,32,43,0.0 +20797,74,10,32,0.0 +20797,46,12,31,0.0 +20797,76,18,28,0.0 +20797,44,19.45,14,0.0 +20797,40,18.4,27,0.0 +20797,37,26,7,0.0 +20797,70,15,9,0.0 +20797,6,25,4,0.0 +20797,30,25.89,35,0.0 +20797,63,43.9,44,0.0 +20797,56,38,19,0.0 +20797,68,12.5,6,0.0 +20797,27,43.9,27,0.0 +20797,15,15.5,21,0.0 +20797,19,9.2,42,0.0 +20797,11,21,29,0.0 +20797,29,123.79,11,0.0 +20797,52,7,35,0.0 +20797,77,13,9,0.0 +20797,55,24,3,0.0 +20797,42,14,39,0.0 +20797,13,6,23,0.0 +20797,26,31.23,49,0.0 +20797,9,97,28,0.0 +20797,12,38,39,0.0 +20797,60,34,8,0.0 +20797,39,18,4,0.0 +20797,16,17.45,26,0.0 +20797,2,19,27,0.0 +20797,65,21.05,11,0.0 +20797,66,17,25,0.0 +20797,22,21,29,0.0 +20797,57,19.5,42,0.0 +20797,75,7.75,16,0.0 +20797,45,9.5,17,0.0 +20797,20,81,27,0.0 +20797,64,33.25,20,0.0 +20797,7,30,34,0.0 +20797,50,16.25,4,0.0 +20797,35,18,35,0.0 +20797,72,34.8,31,0.0 +20797,28,45.6,49,0.0 +20797,49,20,44,0.0 +20797,14,23.25,38,0.0 +20797,48,12.75,10,0.0 +20797,67,14,34,0.0 +20797,41,9.65,20,0.0 +20797,10,31,39,0.0 +20797,8,40,26,0.0 +20797,33,2.5,30,0.0 +20797,47,9.5,31,0.0 +20797,43,46,12,0.0 +20797,23,9,33,0.0 +20797,21,10,46,0.0 +20797,1,18,20,0.0 +20797,69,36,47,0.0 +20798,19,9.2,50,0.0 +20798,12,38,44,0.0 +20798,49,20,26,0.0 +20798,57,19.5,37,0.0 +20798,69,36,34,0.0 +20798,13,6,10,0.0 +20798,62,49.3,47,0.0 +20798,56,38,10,0.0 +20798,53,32.8,17,0.0 +20798,17,39,24,0.0 +20798,34,14,40,0.0 +20798,41,9.65,42,0.0 +20798,27,43.9,42,0.0 +20798,18,62.5,22,0.0 +20798,65,21.05,1,0.0 +20798,42,14,26,0.0 +20798,37,26,32,0.0 +20798,26,31.23,38,0.0 +20798,9,97,49,0.0 +20798,31,12.5,33,0.0 +20798,46,12,25,0.0 +20798,10,31,38,0.0 +20798,61,28.5,30,0.0 +20798,11,21,4,0.0 +20798,77,13,17,0.0 +20798,30,25.89,33,0.0 +20798,39,18,49,0.0 +20798,51,53,26,0.0 +20798,55,24,9,0.0 +20798,36,19,25,0.0 +20798,43,46,36,0.0 +20798,38,263.5,12,0.0 +20798,45,9.5,32,0.0 +20798,74,10,22,0.0 +20798,22,21,43,0.0 +20798,32,32,2,0.0 +20798,20,81,38,0.0 +20798,50,16.25,16,0.0 +20798,23,9,34,0.0 +20798,21,10,19,0.0 +20798,8,40,42,0.0 +20798,35,18,5,0.0 +20798,44,19.45,35,0.0 +20798,76,18,40,0.0 +20798,33,2.5,31,0.0 +20798,2,19,34,0.0 +20798,47,9.5,7,0.0 +20798,75,7.75,19,0.0 +20798,5,21.35,20,0.0 +20798,6,25,12,0.0 +20798,15,15.5,48,0.0 +20798,24,4.5,40,0.0 +20798,28,45.6,30,0.0 +20798,7,30,5,0.0 +20798,64,33.25,14,0.0 +20798,59,55,5,0.0 +20798,4,22,23,0.0 +20798,29,123.79,29,0.0 +20798,1,18,42,0.0 +20798,54,7.45,31,0.0 +20798,52,7,36,0.0 +20798,60,34,19,0.0 +20798,68,12.5,13,0.0 +20798,25,14,2,0.0 +20798,16,17.45,22,0.0 +20798,71,21.5,23,0.0 +20798,73,15,7,0.0 +20798,63,43.9,24,0.0 +20798,40,18.4,32,0.0 +20798,3,10,8,0.0 +20798,67,14,11,0.0 +20798,66,17,48,0.0 +20799,36,19,27,0.0 +20799,73,15,49,0.0 +20799,70,15,21,0.0 +20799,67,14,6,0.0 +20799,4,22,28,0.0 +20799,55,24,24,0.0 +20799,50,16.25,5,0.0 +20799,47,9.5,6,0.0 +20799,66,17,49,0.0 +20799,71,21.5,27,0.0 +20799,35,18,47,0.0 +20799,2,19,35,0.0 +20799,62,49.3,4,0.0 +20799,72,34.8,2,0.0 +20799,1,18,36,0.0 +20799,75,7.75,1,0.0 +20799,28,45.6,41,0.0 +20799,42,14,17,0.0 +20799,32,32,29,0.0 +20799,26,31.23,12,0.0 +20799,16,17.45,13,0.0 +20799,14,23.25,18,0.0 +20799,5,21.35,14,0.0 +20799,52,7,1,0.0 +20799,43,46,41,0.0 +20799,58,13.25,30,0.0 +20799,45,9.5,20,0.0 +20799,76,18,33,0.0 +20799,38,263.5,45,0.0 +20799,65,21.05,13,0.0 +20799,64,33.25,24,0.0 +20799,48,12.75,4,0.0 +20799,18,62.5,28,0.0 +20799,57,19.5,48,0.0 +20799,31,12.5,24,0.0 +20799,68,12.5,48,0.0 +20799,3,10,28,0.0 +20799,6,25,13,0.0 +20799,33,2.5,39,0.0 +20799,7,30,45,0.0 +20799,40,18.4,15,0.0 +20799,39,18,23,0.0 +20799,22,21,12,0.0 +20799,53,32.8,32,0.0 +20799,49,20,48,0.0 +20799,60,34,41,0.0 +20799,61,28.5,5,0.0 +20799,23,9,21,0.0 +20799,9,97,36,0.0 +20800,76,18,10,0.0 +20800,61,28.5,28,0.0 +20800,62,49.3,25,0.0 +20800,41,9.65,14,0.0 +20800,59,55,26,0.0 +20800,37,26,16,0.0 +20800,43,46,12,0.0 +20800,33,2.5,30,0.0 +20800,11,21,25,0.0 +20800,77,13,18,0.0 +20800,49,20,14,0.0 +20800,21,10,4,0.0 +20800,44,19.45,5,0.0 +20800,10,31,4,0.0 +20800,23,9,37,0.0 +20800,66,17,3,0.0 +20800,13,6,50,0.0 +20800,60,34,43,0.0 +20800,16,17.45,42,0.0 +20800,65,21.05,32,0.0 +20800,9,97,27,0.0 +20800,57,19.5,41,0.0 +20800,42,14,29,0.0 +20800,18,62.5,39,0.0 +20800,53,32.8,46,0.0 +20800,55,24,45,0.0 +20800,1,18,1,0.0 +20800,40,18.4,44,0.0 +20800,31,12.5,34,0.0 +20800,73,15,31,0.0 +20800,74,10,10,0.0 +20800,8,40,49,0.0 +20800,36,19,17,0.0 +20800,58,13.25,36,0.0 +20800,32,32,15,0.0 +20800,19,9.2,27,0.0 +20800,68,12.5,22,0.0 +20800,4,22,49,0.0 +20800,64,33.25,21,0.0 +20800,17,39,9,0.0 +20800,7,30,25,0.0 +20800,34,14,17,0.0 +20800,2,19,40,0.0 +20800,46,12,40,0.0 +20800,38,263.5,15,0.0 +20800,28,45.6,40,0.0 +20800,39,18,3,0.0 +20800,26,31.23,22,0.0 +20800,29,123.79,28,0.0 +20800,52,7,34,0.0 +20800,22,21,8,0.0 +20800,24,4.5,20,0.0 +20800,3,10,37,0.0 +20800,48,12.75,23,0.0 +20800,63,43.9,3,0.0 +20800,20,81,36,0.0 +20800,51,53,31,0.0 +20801,2,19,49,0.0 +20801,7,30,14,0.0 +20801,24,4.5,7,0.0 +20801,77,13,15,0.0 +20801,33,2.5,9,0.0 +20801,42,14,35,0.0 +20801,1,18,27,0.0 +20801,13,6,48,0.0 +20801,70,15,5,0.0 +20801,19,9.2,37,0.0 +20801,43,46,32,0.0 +20801,61,28.5,21,0.0 +20801,3,10,46,0.0 +20801,36,19,43,0.0 +20801,51,53,3,0.0 +20801,72,34.8,50,0.0 +20801,66,17,33,0.0 +20801,52,7,36,0.0 +20801,9,97,12,0.0 +20801,62,49.3,46,0.0 +20801,58,13.25,32,0.0 +20802,12,38,12,0.0 +20802,49,20,38,0.0 +20802,47,9.5,8,0.0 +20802,35,18,17,0.0 +20802,19,9.2,16,0.0 +20802,66,17,45,0.0 +20802,52,7,41,0.0 +20802,44,19.45,26,0.0 +20802,18,62.5,38,0.0 +20802,27,43.9,27,0.0 +20802,63,43.9,17,0.0 +20802,76,18,36,0.0 +20803,20,81,16,0.0 +20803,23,9,40,0.0 +20803,58,13.25,20,0.0 +20803,42,14,21,0.0 +20803,65,21.05,13,0.0 +20803,40,18.4,5,0.0 +20803,59,55,45,0.0 +20803,62,49.3,34,0.0 +20803,55,24,32,0.0 +20803,34,14,28,0.0 +20803,66,17,22,0.0 +20803,74,10,49,0.0 +20803,53,32.8,38,0.0 +20804,59,55,14,0.0 +20804,63,43.9,1,0.0 +20804,68,12.5,47,0.0 +20804,30,25.89,15,0.0 +20804,57,19.5,29,0.0 +20805,26,31.23,10,0.0 +20805,71,21.5,35,0.0 +20805,39,18,38,0.0 +20805,54,7.45,33,0.0 +20805,44,19.45,15,0.0 +20805,60,34,39,0.0 +20805,51,53,45,0.0 +20805,17,39,16,0.0 +20805,76,18,9,0.0 +20805,43,46,19,0.0 +20805,41,9.65,44,0.0 +20805,61,28.5,27,0.0 +20805,68,12.5,28,0.0 +20805,12,38,23,0.0 +20805,16,17.45,30,0.0 +20805,28,45.6,23,0.0 +20805,34,14,35,0.0 +20805,59,55,17,0.0 +20805,2,19,27,0.0 +20805,27,43.9,47,0.0 +20805,5,21.35,6,0.0 +20805,21,10,43,0.0 +20805,45,9.5,31,0.0 +20805,18,62.5,5,0.0 +20805,65,21.05,44,0.0 +20805,40,18.4,30,0.0 +20805,55,24,16,0.0 +20805,72,34.8,15,0.0 +20805,30,25.89,29,0.0 +20805,77,13,37,0.0 +20805,62,49.3,21,0.0 +20805,36,19,26,0.0 +20805,37,26,39,0.0 +20805,9,97,37,0.0 +20805,31,12.5,26,0.0 +20805,24,4.5,45,0.0 +20805,74,10,3,0.0 +20805,4,22,7,0.0 +20805,52,7,50,0.0 +20805,10,31,13,0.0 +20805,69,36,8,0.0 +20805,67,14,14,0.0 +20805,35,18,12,0.0 +20805,29,123.79,19,0.0 +20805,64,33.25,19,0.0 +20805,33,2.5,40,0.0 +20805,47,9.5,19,0.0 +20805,57,19.5,35,0.0 +20805,58,13.25,17,0.0 +20805,14,23.25,16,0.0 +20805,11,21,44,0.0 +20805,1,18,28,0.0 +20805,63,43.9,24,0.0 +20805,73,15,22,0.0 +20805,8,40,37,0.0 +20805,22,21,8,0.0 +20805,53,32.8,42,0.0 +20805,25,14,38,0.0 +20805,6,25,22,0.0 +20805,23,9,37,0.0 +20805,7,30,24,0.0 +20805,48,12.75,35,0.0 +20805,13,6,35,0.0 +20805,42,14,12,0.0 +20805,20,81,38,0.0 +20805,75,7.75,42,0.0 +20805,38,263.5,38,0.0 +20805,15,15.5,10,0.0 +20805,70,15,20,0.0 +20805,32,32,26,0.0 +20806,63,43.9,35,0.0 +20806,10,31,29,0.0 +20806,23,9,22,0.0 +20806,14,23.25,20,0.0 +20806,31,12.5,29,0.0 +20806,46,12,7,0.0 +20806,20,81,47,0.0 +20806,18,62.5,26,0.0 +20806,64,33.25,3,0.0 +20806,27,43.9,25,0.0 +20806,4,22,37,0.0 +20806,1,18,18,0.0 +20806,71,21.5,7,0.0 +20806,54,7.45,39,0.0 +20806,66,17,25,0.0 +20806,19,9.2,37,0.0 +20806,34,14,41,0.0 +20806,11,21,6,0.0 +20806,40,18.4,39,0.0 +20806,22,21,6,0.0 +20806,9,97,45,0.0 +20806,49,20,7,0.0 +20806,58,13.25,41,0.0 +20806,52,7,43,0.0 +20806,48,12.75,28,0.0 +20806,57,19.5,45,0.0 +20806,32,32,47,0.0 +20806,72,34.8,29,0.0 +20806,8,40,46,0.0 +20806,38,263.5,49,0.0 +20806,26,31.23,18,0.0 +20806,77,13,1,0.0 +20806,7,30,19,0.0 +20806,44,19.45,43,0.0 +20806,53,32.8,31,0.0 +20806,42,14,6,0.0 +20806,2,19,36,0.0 +20806,75,7.75,31,0.0 +20806,47,9.5,7,0.0 +20806,36,19,38,0.0 +20806,17,39,46,0.0 +20806,60,34,48,0.0 +20806,62,49.3,40,0.0 +20806,59,55,29,0.0 +20806,13,6,2,0.0 +20806,28,45.6,49,0.0 +20806,21,10,46,0.0 +20806,65,21.05,47,0.0 +20806,25,14,50,0.0 +20806,35,18,9,0.0 +20806,16,17.45,23,0.0 +20806,45,9.5,48,0.0 +20806,56,38,9,0.0 +20806,30,25.89,43,0.0 +20807,12,38,29,0.0 +20807,45,9.5,6,0.0 +20807,68,12.5,38,0.0 +20807,63,43.9,11,0.0 +20807,42,14,40,0.0 +20807,61,28.5,13,0.0 +20807,15,15.5,34,0.0 +20807,11,21,7,0.0 +20807,52,7,34,0.0 +20807,3,10,49,0.0 +20807,49,20,24,0.0 +20807,21,10,49,0.0 +20807,73,15,13,0.0 +20807,64,33.25,20,0.0 +20807,44,19.45,34,0.0 +20807,18,62.5,44,0.0 +20807,71,21.5,43,0.0 +20807,2,19,23,0.0 +20807,62,49.3,42,0.0 +20807,16,17.45,11,0.0 +20807,40,18.4,10,0.0 +20807,19,9.2,30,0.0 +20807,72,34.8,40,0.0 +20807,33,2.5,39,0.0 +20807,26,31.23,22,0.0 +20807,31,12.5,37,0.0 +20807,30,25.89,1,0.0 +20807,57,19.5,20,0.0 +20807,10,31,18,0.0 +20807,8,40,27,0.0 +20807,38,263.5,48,0.0 +20807,58,13.25,1,0.0 +20807,50,16.25,25,0.0 +20807,39,18,20,0.0 +20807,14,23.25,28,0.0 +20807,9,97,23,0.0 +20807,7,30,33,0.0 +20807,36,19,49,0.0 +20807,54,7.45,23,0.0 +20807,37,26,13,0.0 +20807,20,81,5,0.0 +20807,65,21.05,35,0.0 +20807,5,21.35,11,0.0 +20807,56,38,16,0.0 +20807,27,43.9,6,0.0 +20807,23,9,7,0.0 +20807,75,7.75,47,0.0 +20807,28,45.6,7,0.0 +20807,48,12.75,27,0.0 +20807,59,55,7,0.0 +20807,17,39,14,0.0 +20807,60,34,38,0.0 +20807,51,53,36,0.0 +20808,34,14,24,0.0 +20808,40,18.4,46,0.0 +20808,22,21,26,0.0 +20808,60,34,39,0.0 +20808,51,53,38,0.0 +20808,61,28.5,42,0.0 +20808,14,23.25,31,0.0 +20808,35,18,8,0.0 +20808,27,43.9,47,0.0 +20808,44,19.45,26,0.0 +20808,19,9.2,12,0.0 +20808,67,14,41,0.0 +20808,21,10,16,0.0 +20808,43,46,43,0.0 +20808,57,19.5,2,0.0 +20808,54,7.45,36,0.0 +20808,4,22,27,0.0 +20808,28,45.6,15,0.0 +20808,6,25,47,0.0 +20808,45,9.5,38,0.0 +20808,49,20,20,0.0 +20808,50,16.25,11,0.0 +20808,13,6,26,0.0 +20808,41,9.65,20,0.0 +20808,75,7.75,50,0.0 +20808,63,43.9,4,0.0 +20808,39,18,27,0.0 +20808,24,4.5,20,0.0 +20808,64,33.25,36,0.0 +20808,26,31.23,22,0.0 +20808,8,40,34,0.0 +20808,70,15,25,0.0 +20808,16,17.45,44,0.0 +20808,5,21.35,15,0.0 +20808,9,97,34,0.0 +20808,69,36,17,0.0 +20808,68,12.5,14,0.0 +20808,33,2.5,18,0.0 +20808,7,30,25,0.0 +20808,62,49.3,25,0.0 +20809,6,25,18,0.0 +20809,42,14,41,0.0 +20809,19,9.2,12,0.0 +20809,66,17,12,0.0 +20809,62,49.3,34,0.0 +20809,70,15,8,0.0 +20809,48,12.75,13,0.0 +20809,40,18.4,48,0.0 +20809,9,97,1,0.0 +20809,24,4.5,34,0.0 +20809,49,20,30,0.0 +20809,7,30,10,0.0 +20809,38,263.5,46,0.0 +20809,54,7.45,18,0.0 +20809,27,43.9,28,0.0 +20810,71,21.5,49,0.0 +20810,51,53,25,0.0 +20810,63,43.9,8,0.0 +20810,38,263.5,14,0.0 +20810,10,31,13,0.0 +20810,40,18.4,6,0.0 +20810,45,9.5,39,0.0 +20810,62,49.3,35,0.0 +20810,76,18,47,0.0 +20810,59,55,48,0.0 +20810,49,20,44,0.0 +20810,53,32.8,17,0.0 +20810,67,14,30,0.0 +20810,1,18,8,0.0 +20810,17,39,39,0.0 +20810,29,123.79,22,0.0 +20810,34,14,6,0.0 +20810,4,22,23,0.0 +20810,35,18,30,0.0 +20810,30,25.89,41,0.0 +20810,57,19.5,27,0.0 +20810,73,15,27,0.0 +20810,65,21.05,2,0.0 +20810,5,21.35,10,0.0 +20810,37,26,43,0.0 +20810,7,30,12,0.0 +20810,55,24,27,0.0 +20810,8,40,50,0.0 +20810,6,25,28,0.0 +20810,70,15,32,0.0 +20810,23,9,45,0.0 +20810,28,45.6,9,0.0 +20810,22,21,15,0.0 +20810,54,7.45,10,0.0 +20810,46,12,37,0.0 +20810,72,34.8,46,0.0 +20810,74,10,42,0.0 +20810,56,38,4,0.0 +20810,48,12.75,49,0.0 +20810,3,10,40,0.0 +20810,66,17,49,0.0 +20810,58,13.25,47,0.0 +20810,61,28.5,3,0.0 +20810,15,15.5,47,0.0 +20810,26,31.23,23,0.0 +20810,42,14,41,0.0 +20810,47,9.5,3,0.0 +20810,16,17.45,50,0.0 +20810,2,19,49,0.0 +20810,25,14,40,0.0 +20810,69,36,10,0.0 +20810,64,33.25,4,0.0 +20810,33,2.5,36,0.0 +20810,18,62.5,9,0.0 +20810,41,9.65,9,0.0 +20810,19,9.2,17,0.0 +20810,44,19.45,30,0.0 +20810,31,12.5,19,0.0 +20810,52,7,31,0.0 +20810,77,13,25,0.0 +20810,13,6,10,0.0 +20810,11,21,19,0.0 +20810,14,23.25,12,0.0 +20810,39,18,50,0.0 +20810,20,81,48,0.0 +20810,43,46,17,0.0 +20810,75,7.75,38,0.0 +20811,64,33.25,17,0.0 +20811,42,14,29,0.0 +20811,26,31.23,31,0.0 +20811,23,9,37,0.0 +20811,75,7.75,37,0.0 +20811,58,13.25,47,0.0 +20811,72,34.8,48,0.0 +20811,71,21.5,3,0.0 +20811,4,22,39,0.0 +20811,60,34,32,0.0 +20811,73,15,1,0.0 +20811,31,12.5,32,0.0 +20811,13,6,24,0.0 +20811,2,19,36,0.0 +20811,65,21.05,31,0.0 +20811,46,12,21,0.0 +20811,29,123.79,11,0.0 +20811,39,18,5,0.0 +20811,5,21.35,42,0.0 +20811,1,18,34,0.0 +20811,17,39,15,0.0 +20811,22,21,23,0.0 +20811,70,15,26,0.0 +20811,66,17,49,0.0 +20811,76,18,13,0.0 +20811,33,2.5,6,0.0 +20811,10,31,1,0.0 +20811,32,32,38,0.0 +20811,48,12.75,7,0.0 +20811,51,53,12,0.0 +20811,74,10,24,0.0 +20811,6,25,34,0.0 +20811,21,10,14,0.0 +20811,44,19.45,8,0.0 +20811,67,14,3,0.0 +20811,7,30,38,0.0 +20811,30,25.89,41,0.0 +20811,62,49.3,50,0.0 +20811,8,40,12,0.0 +20811,53,32.8,41,0.0 +20811,19,9.2,20,0.0 +20811,68,12.5,32,0.0 +20811,38,263.5,47,0.0 +20811,69,36,39,0.0 +20811,28,45.6,17,0.0 +20811,34,14,40,0.0 +20811,41,9.65,48,0.0 +20811,59,55,15,0.0 +20811,55,24,19,0.0 +20811,14,23.25,36,0.0 +20811,11,21,41,0.0 +20811,18,62.5,34,0.0 +20811,63,43.9,15,0.0 +20811,12,38,8,0.0 +20811,40,18.4,38,0.0 +20811,50,16.25,4,0.0 +20811,57,19.5,18,0.0 +20811,20,81,9,0.0 +20811,54,7.45,35,0.0 +20811,24,4.5,14,0.0 +20811,56,38,28,0.0 +20811,45,9.5,16,0.0 +20811,9,97,17,0.0 +20811,37,26,28,0.0 +20811,25,14,39,0.0 +20811,36,19,7,0.0 +20811,35,18,35,0.0 +20811,47,9.5,43,0.0 +20811,43,46,2,0.0 +20811,15,15.5,49,0.0 +20812,64,33.25,44,0.0 +20812,62,49.3,47,0.0 +20812,10,31,27,0.0 +20812,45,9.5,16,0.0 +20812,19,9.2,27,0.0 +20812,2,19,30,0.0 +20812,30,25.89,14,0.0 +20812,76,18,5,0.0 +20812,52,7,46,0.0 +20812,70,15,25,0.0 +20812,29,123.79,2,0.0 +20812,20,81,16,0.0 +20812,57,19.5,41,0.0 +20812,26,31.23,37,0.0 +20812,56,38,44,0.0 +20812,23,9,24,0.0 +20812,38,263.5,50,0.0 +20812,49,20,13,0.0 +20812,22,21,1,0.0 +20812,50,16.25,31,0.0 +20812,46,12,14,0.0 +20812,35,18,12,0.0 +20812,28,45.6,40,0.0 +20812,48,12.75,48,0.0 +20812,54,7.45,20,0.0 +20812,34,14,24,0.0 +20812,65,21.05,28,0.0 +20812,59,55,29,0.0 +20812,7,30,26,0.0 +20812,8,40,8,0.0 +20812,44,19.45,28,0.0 +20812,41,9.65,48,0.0 +20812,17,39,21,0.0 +20812,51,53,32,0.0 +20812,77,13,2,0.0 +20812,11,21,35,0.0 +20812,58,13.25,8,0.0 +20812,33,2.5,7,0.0 +20812,15,15.5,11,0.0 +20812,67,14,27,0.0 +20812,39,18,28,0.0 +20812,32,32,25,0.0 +20812,27,43.9,4,0.0 +20813,57,19.5,33,0.0 +20813,60,34,21,0.0 +20813,55,24,38,0.0 +20813,3,10,33,0.0 +20813,74,10,27,0.0 +20813,63,43.9,5,0.0 +20813,51,53,1,0.0 +20813,46,12,29,0.0 +20813,33,2.5,40,0.0 +20813,13,6,25,0.0 +20813,4,22,38,0.0 +20813,27,43.9,5,0.0 +20813,17,39,4,0.0 +20813,56,38,40,0.0 +20813,7,30,22,0.0 +20813,19,9.2,1,0.0 +20813,23,9,22,0.0 +20813,75,7.75,36,0.0 +20813,15,15.5,28,0.0 +20813,77,13,37,0.0 +20813,48,12.75,3,0.0 +20813,66,17,25,0.0 +20813,65,21.05,35,0.0 +20813,14,23.25,41,0.0 +20813,52,7,8,0.0 +20813,50,16.25,38,0.0 +20813,53,32.8,20,0.0 +20813,8,40,23,0.0 +20813,28,45.6,33,0.0 +20814,47,9.5,14,0.0 +20814,73,15,27,0.0 +20814,26,31.23,11,0.0 +20814,70,15,37,0.0 +20814,62,49.3,6,0.0 +20814,67,14,26,0.0 +20814,8,40,45,0.0 +20814,57,19.5,13,0.0 +20814,51,53,7,0.0 +20814,20,81,1,0.0 +20815,17,39,5,0.0 +20815,49,20,11,0.0 +20815,55,24,1,0.0 +20815,56,38,2,0.0 +20815,63,43.9,23,0.0 +20815,76,18,5,0.0 +20815,70,15,22,0.0 +20815,45,9.5,43,0.0 +20815,51,53,1,0.0 +20815,32,32,46,0.0 +20815,10,31,12,0.0 +20815,47,9.5,24,0.0 +20815,5,21.35,47,0.0 +20815,20,81,25,0.0 +20815,48,12.75,9,0.0 +20815,64,33.25,20,0.0 +20815,26,31.23,17,0.0 +20815,6,25,32,0.0 +20815,25,14,23,0.0 +20815,24,4.5,5,0.0 +20815,11,21,41,0.0 +20815,1,18,5,0.0 +20815,66,17,34,0.0 +20815,18,62.5,16,0.0 +20815,31,12.5,50,0.0 +20815,69,36,44,0.0 +20815,67,14,15,0.0 +20815,34,14,4,0.0 +20815,9,97,21,0.0 +20815,28,45.6,29,0.0 +20815,61,28.5,18,0.0 +20815,53,32.8,44,0.0 +20815,14,23.25,5,0.0 +20815,13,6,1,0.0 +20815,44,19.45,18,0.0 +20815,40,18.4,15,0.0 +20815,54,7.45,32,0.0 +20815,22,21,18,0.0 +20815,72,34.8,41,0.0 +20815,8,40,28,0.0 +20815,15,15.5,40,0.0 +20815,58,13.25,6,0.0 +20815,50,16.25,37,0.0 +20815,62,49.3,11,0.0 +20815,68,12.5,20,0.0 +20815,35,18,28,0.0 +20815,2,19,21,0.0 +20815,7,30,6,0.0 +20815,23,9,37,0.0 +20815,52,7,44,0.0 +20815,30,25.89,39,0.0 +20815,12,38,37,0.0 +20815,71,21.5,15,0.0 +20816,66,17,12,0.0 +20816,58,13.25,9,0.0 +20816,19,9.2,39,0.0 +20816,54,7.45,20,0.0 +20816,74,10,40,0.0 +20816,33,2.5,19,0.0 +20816,71,21.5,13,0.0 +20816,3,10,46,0.0 +20816,17,39,3,0.0 +20816,10,31,10,0.0 +20816,41,9.65,25,0.0 +20816,62,49.3,3,0.0 +20816,13,6,27,0.0 +20816,36,19,3,0.0 +20816,47,9.5,31,0.0 +20816,23,9,2,0.0 +20816,29,123.79,43,0.0 +20816,28,45.6,33,0.0 +20816,70,15,50,0.0 +20816,6,25,2,0.0 +20817,70,15,24,0.0 +20817,11,21,26,0.0 +20817,54,7.45,1,0.0 +20817,20,81,32,0.0 +20817,35,18,20,0.0 +20817,36,19,12,0.0 +20817,32,32,15,0.0 +20817,52,7,8,0.0 +20817,19,9.2,6,0.0 +20817,26,31.23,49,0.0 +20817,38,263.5,5,0.0 +20817,76,18,17,0.0 +20817,47,9.5,46,0.0 +20817,60,34,41,0.0 +20817,64,33.25,37,0.0 +20817,51,53,40,0.0 +20817,73,15,31,0.0 +20818,8,40,33,0.0 +20818,36,19,33,0.0 +20818,23,9,21,0.0 +20818,41,9.65,29,0.0 +20818,50,16.25,17,0.0 +20818,71,21.5,28,0.0 +20819,36,19,37,0.0 +20819,30,25.89,47,0.0 +20819,29,123.79,44,0.0 +20819,58,13.25,22,0.0 +20819,26,31.23,12,0.0 +20819,55,24,28,0.0 +20819,74,10,3,0.0 +20819,35,18,6,0.0 +20819,34,14,34,0.0 +20819,9,97,22,0.0 +20819,68,12.5,22,0.0 +20819,73,15,21,0.0 +20819,49,20,24,0.0 +20819,53,32.8,19,0.0 +20819,6,25,8,0.0 +20819,5,21.35,42,0.0 +20819,20,81,15,0.0 +20819,14,23.25,12,0.0 +20819,76,18,1,0.0 +20819,12,38,21,0.0 +20819,44,19.45,12,0.0 +20819,42,14,12,0.0 +20819,61,28.5,3,0.0 +20819,64,33.25,25,0.0 +20819,41,9.65,16,0.0 +20819,40,18.4,35,0.0 +20819,56,38,3,0.0 +20819,39,18,15,0.0 +20819,21,10,4,0.0 +20819,48,12.75,49,0.0 +20819,4,22,32,0.0 +20819,33,2.5,35,0.0 +20819,8,40,26,0.0 +20819,17,39,40,0.0 +20819,28,45.6,33,0.0 +20819,37,26,22,0.0 +20819,13,6,19,0.0 +20819,3,10,5,0.0 +20819,66,17,47,0.0 +20819,51,53,42,0.0 +20819,43,46,32,0.0 +20819,63,43.9,47,0.0 +20819,19,9.2,16,0.0 +20819,50,16.25,43,0.0 +20819,31,12.5,2,0.0 +20819,27,43.9,40,0.0 +20819,54,7.45,1,0.0 +20819,65,21.05,47,0.0 +20819,2,19,49,0.0 +20819,67,14,39,0.0 +20819,62,49.3,49,0.0 +20819,46,12,5,0.0 +20819,38,263.5,42,0.0 +20820,58,13.25,39,0.0 +20820,60,34,37,0.0 +20820,63,43.9,9,0.0 +20820,77,13,14,0.0 +20820,25,14,23,0.0 +20820,11,21,28,0.0 +20820,12,38,10,0.0 +20820,24,4.5,32,0.0 +20820,73,15,3,0.0 +20820,3,10,15,0.0 +20820,72,34.8,1,0.0 +20820,7,30,20,0.0 +20820,18,62.5,20,0.0 +20820,40,18.4,28,0.0 +20821,27,43.9,20,0.0 +20821,61,28.5,46,0.0 +20821,32,32,29,0.0 +20821,55,24,40,0.0 +20821,71,21.5,1,0.0 +20821,76,18,42,0.0 +20821,64,33.25,12,0.0 +20821,59,55,3,0.0 +20821,17,39,17,0.0 +20821,5,21.35,28,0.0 +20821,43,46,32,0.0 +20821,2,19,42,0.0 +20821,16,17.45,46,0.0 +20821,74,10,27,0.0 +20821,10,31,31,0.0 +20821,24,4.5,9,0.0 +20821,29,123.79,13,0.0 +20821,44,19.45,3,0.0 +20821,9,97,33,0.0 +20821,52,7,36,0.0 +20821,60,34,42,0.0 +20821,22,21,45,0.0 +20821,51,53,50,0.0 +20821,45,9.5,18,0.0 +20821,25,14,41,0.0 +20821,23,9,21,0.0 +20821,26,31.23,46,0.0 +20821,77,13,39,0.0 +20821,18,62.5,50,0.0 +20821,38,263.5,23,0.0 +20821,63,43.9,35,0.0 +20821,3,10,15,0.0 +20821,72,34.8,47,0.0 +20821,6,25,4,0.0 +20821,28,45.6,28,0.0 +20821,12,38,46,0.0 +20821,31,12.5,48,0.0 +20821,1,18,44,0.0 +20821,39,18,23,0.0 +20821,7,30,21,0.0 +20821,19,9.2,9,0.0 +20821,53,32.8,18,0.0 +20821,34,14,11,0.0 +20821,36,19,50,0.0 +20821,33,2.5,7,0.0 +20821,30,25.89,41,0.0 +20821,14,23.25,43,0.0 +20821,68,12.5,21,0.0 +20821,58,13.25,34,0.0 +20822,55,24,5,0.0 +20822,70,15,28,0.0 +20822,20,81,49,0.0 +20822,10,31,22,0.0 +20822,9,97,4,0.0 +20822,62,49.3,17,0.0 +20822,27,43.9,32,0.0 +20822,13,6,24,0.0 +20822,60,34,3,0.0 +20822,41,9.65,2,0.0 +20822,30,25.89,39,0.0 +20822,72,34.8,6,0.0 +20822,68,12.5,11,0.0 +20822,24,4.5,10,0.0 +20822,66,17,12,0.0 +20822,37,26,14,0.0 +20822,21,10,26,0.0 +20822,33,2.5,15,0.0 +20822,63,43.9,3,0.0 +20822,19,9.2,22,0.0 +20822,17,39,39,0.0 +20822,54,7.45,15,0.0 +20822,59,55,45,0.0 +20822,35,18,47,0.0 +20822,71,21.5,10,0.0 +20822,8,40,47,0.0 +20822,77,13,18,0.0 +20822,31,12.5,30,0.0 +20822,39,18,21,0.0 +20822,42,14,46,0.0 +20822,47,9.5,41,0.0 +20822,46,12,13,0.0 +20822,23,9,1,0.0 +20822,45,9.5,20,0.0 +20822,1,18,24,0.0 +20822,49,20,2,0.0 +20822,61,28.5,3,0.0 +20822,25,14,42,0.0 +20822,34,14,41,0.0 +20822,52,7,14,0.0 +20822,11,21,3,0.0 +20822,12,38,14,0.0 +20822,4,22,22,0.0 +20822,29,123.79,48,0.0 +20822,40,18.4,25,0.0 +20822,15,15.5,27,0.0 +20822,36,19,43,0.0 +20822,43,46,33,0.0 +20823,3,10,16,0.0 +20823,9,97,25,0.0 +20823,32,32,8,0.0 +20823,52,7,39,0.0 +20823,44,19.45,1,0.0 +20823,27,43.9,6,0.0 +20823,15,15.5,11,0.0 +20823,20,81,28,0.0 +20823,61,28.5,18,0.0 +20823,14,23.25,37,0.0 +20823,12,38,20,0.0 +20823,60,34,5,0.0 +20823,29,123.79,23,0.0 +20823,24,4.5,7,0.0 +20823,10,31,46,0.0 +20823,16,17.45,23,0.0 +20823,25,14,21,0.0 +20823,68,12.5,17,0.0 +20823,63,43.9,12,0.0 +20823,47,9.5,34,0.0 +20823,45,9.5,4,0.0 +20823,53,32.8,49,0.0 +20823,51,53,15,0.0 +20823,64,33.25,18,0.0 +20823,65,21.05,9,0.0 +20823,42,14,11,0.0 +20823,17,39,30,0.0 +20823,48,12.75,16,0.0 +20823,77,13,19,0.0 +20823,21,10,46,0.0 +20823,67,14,22,0.0 +20823,74,10,13,0.0 +20823,40,18.4,22,0.0 +20823,66,17,13,0.0 +20823,31,12.5,7,0.0 +20823,76,18,22,0.0 +20823,6,25,44,0.0 +20823,70,15,17,0.0 +20823,39,18,20,0.0 +20823,8,40,26,0.0 +20823,33,2.5,32,0.0 +20823,62,49.3,9,0.0 +20823,7,30,43,0.0 +20823,36,19,26,0.0 +20823,71,21.5,49,0.0 +20823,57,19.5,10,0.0 +20823,73,15,44,0.0 +20823,13,6,31,0.0 +20823,50,16.25,25,0.0 +20823,59,55,20,0.0 +20823,26,31.23,7,0.0 +20823,28,45.6,13,0.0 +20823,34,14,50,0.0 +20823,46,12,50,0.0 +20823,2,19,36,0.0 +20823,49,20,6,0.0 +20824,6,25,38,0.0 +20824,50,16.25,32,0.0 +20824,66,17,15,0.0 +20824,11,21,49,0.0 +20824,65,21.05,21,0.0 +20824,4,22,42,0.0 +20824,68,12.5,28,0.0 +20824,67,14,9,0.0 +20824,51,53,26,0.0 +20824,64,33.25,4,0.0 +20824,71,21.5,1,0.0 +20824,13,6,1,0.0 +20824,30,25.89,36,0.0 +20824,53,32.8,30,0.0 +20824,77,13,26,0.0 +20824,9,97,34,0.0 +20824,76,18,13,0.0 +20824,20,81,45,0.0 +20824,75,7.75,29,0.0 +20824,23,9,26,0.0 +20824,32,32,16,0.0 +20824,46,12,1,0.0 +20824,43,46,46,0.0 +20824,7,30,18,0.0 +20824,56,38,6,0.0 +20824,40,18.4,17,0.0 +20824,42,14,28,0.0 +20824,49,20,26,0.0 +20824,58,13.25,34,0.0 +20824,18,62.5,41,0.0 +20824,29,123.79,21,0.0 +20824,72,34.8,46,0.0 +20824,44,19.45,16,0.0 +20824,45,9.5,32,0.0 +20824,24,4.5,27,0.0 +20824,48,12.75,32,0.0 +20824,35,18,47,0.0 +20824,63,43.9,21,0.0 +20824,34,14,41,0.0 +20824,55,24,42,0.0 +20824,15,15.5,46,0.0 +20824,47,9.5,8,0.0 +20824,5,21.35,35,0.0 +20824,17,39,1,0.0 +20824,2,19,22,0.0 +20824,19,9.2,6,0.0 +20824,70,15,6,0.0 +20824,59,55,44,0.0 +20824,36,19,2,0.0 +20824,73,15,42,0.0 +20824,69,36,27,0.0 +20824,52,7,16,0.0 +20824,41,9.65,41,0.0 +20824,33,2.5,33,0.0 +20824,26,31.23,38,0.0 +20824,8,40,16,0.0 +20825,24,4.5,46,0.0 +20825,63,43.9,15,0.0 +20825,26,31.23,14,0.0 +20825,73,15,7,0.0 +20825,35,18,11,0.0 +20825,23,9,34,0.0 +20825,39,18,12,0.0 +20825,50,16.25,27,0.0 +20825,11,21,24,0.0 +20825,57,19.5,26,0.0 +20825,66,17,1,0.0 +20825,29,123.79,9,0.0 +20825,10,31,17,0.0 +20825,34,14,22,0.0 +20825,13,6,43,0.0 +20825,60,34,36,0.0 +20825,46,12,27,0.0 +20825,49,20,1,0.0 +20825,68,12.5,25,0.0 +20825,30,25.89,21,0.0 +20825,17,39,5,0.0 +20825,51,53,44,0.0 +20825,12,38,7,0.0 +20825,36,19,11,0.0 +20825,56,38,22,0.0 +20825,41,9.65,7,0.0 +20825,33,2.5,5,0.0 +20825,9,97,45,0.0 +20825,61,28.5,11,0.0 +20825,21,10,24,0.0 +20825,55,24,21,0.0 +20825,69,36,41,0.0 +20825,25,14,43,0.0 +20825,58,13.25,10,0.0 +20825,8,40,41,0.0 +20825,2,19,43,0.0 +20825,1,18,34,0.0 +20825,76,18,19,0.0 +20825,59,55,4,0.0 +20825,64,33.25,33,0.0 +20825,45,9.5,42,0.0 +20825,14,23.25,1,0.0 +20825,70,15,20,0.0 +20825,18,62.5,17,0.0 +20826,22,21,47,0.0 +20826,48,12.75,15,0.0 +20826,74,10,35,0.0 +20826,61,28.5,36,0.0 +20826,10,31,42,0.0 +20826,23,9,29,0.0 +20826,41,9.65,47,0.0 +20826,24,4.5,3,0.0 +20826,33,2.5,4,0.0 +20826,68,12.5,2,0.0 +20826,43,46,19,0.0 +20826,58,13.25,18,0.0 +20826,46,12,23,0.0 +20826,19,9.2,31,0.0 +20826,39,18,39,0.0 +20826,13,6,21,0.0 +20826,2,19,44,0.0 +20826,59,55,26,0.0 +20826,69,36,38,0.0 +20826,8,40,34,0.0 +20826,75,7.75,2,0.0 +20826,25,14,24,0.0 +20826,63,43.9,16,0.0 +20826,3,10,26,0.0 +20826,70,15,16,0.0 +20826,9,97,14,0.0 +20826,20,81,44,0.0 +20826,32,32,47,0.0 +20826,26,31.23,36,0.0 +20826,18,62.5,43,0.0 +20826,52,7,2,0.0 +20826,14,23.25,29,0.0 +20826,16,17.45,32,0.0 +20826,36,19,11,0.0 +20826,34,14,15,0.0 +20827,5,21.35,34,0.0 +20827,30,25.89,32,0.0 +20827,64,33.25,25,0.0 +20827,68,12.5,16,0.0 +20827,58,13.25,10,0.0 +20827,42,14,19,0.0 +20827,12,38,16,0.0 +20827,17,39,20,0.0 +20827,60,34,11,0.0 +20827,71,21.5,37,0.0 +20827,61,28.5,6,0.0 +20827,56,38,9,0.0 +20827,31,12.5,17,0.0 +20827,16,17.45,31,0.0 +20827,13,6,49,0.0 +20827,54,7.45,29,0.0 +20827,39,18,30,0.0 +20827,21,10,17,0.0 +20827,36,19,28,0.0 +20827,3,10,35,0.0 +20827,74,10,4,0.0 +20827,26,31.23,11,0.0 +20827,46,12,12,0.0 +20827,57,19.5,39,0.0 +20827,22,21,31,0.0 +20827,4,22,18,0.0 +20827,55,24,14,0.0 +20827,2,19,25,0.0 +20827,40,18.4,27,0.0 +20827,73,15,38,0.0 +20827,19,9.2,36,0.0 +20827,75,7.75,33,0.0 +20827,8,40,37,0.0 +20827,24,4.5,2,0.0 +20827,1,18,37,0.0 +20827,76,18,41,0.0 +20827,66,17,13,0.0 +20827,28,45.6,10,0.0 +20827,48,12.75,7,0.0 +20827,41,9.65,6,0.0 +20827,62,49.3,12,0.0 +20827,23,9,46,0.0 +20827,34,14,26,0.0 +20827,10,31,42,0.0 +20827,67,14,17,0.0 +20827,47,9.5,25,0.0 +20827,18,62.5,7,0.0 +20827,20,81,46,0.0 +20827,29,123.79,2,0.0 +20827,44,19.45,42,0.0 +20827,72,34.8,21,0.0 +20827,69,36,12,0.0 +20827,32,32,38,0.0 +20827,7,30,3,0.0 +20827,45,9.5,40,0.0 +20827,38,263.5,43,0.0 +20827,43,46,24,0.0 +20827,65,21.05,45,0.0 +20827,49,20,12,0.0 +20827,50,16.25,38,0.0 +20827,37,26,19,0.0 +20827,27,43.9,48,0.0 +20827,9,97,45,0.0 +20827,53,32.8,36,0.0 +20827,52,7,47,0.0 +20827,51,53,24,0.0 +20827,15,15.5,27,0.0 +20828,13,6,29,0.0 +20828,10,31,34,0.0 +20828,4,22,29,0.0 +20828,19,9.2,28,0.0 +20828,72,34.8,45,0.0 +20828,21,10,29,0.0 +20828,51,53,22,0.0 +20828,14,23.25,10,0.0 +20828,42,14,8,0.0 +20828,29,123.79,10,0.0 +20828,2,19,13,0.0 +20828,38,263.5,24,0.0 +20828,1,18,47,0.0 +20828,66,17,41,0.0 +20828,34,14,20,0.0 +20828,6,25,43,0.0 +20828,37,26,1,0.0 +20828,67,14,50,0.0 +20828,69,36,41,0.0 +20828,57,19.5,43,0.0 +20828,26,31.23,25,0.0 +20828,8,40,22,0.0 +20828,62,49.3,13,0.0 +20828,35,18,28,0.0 +20828,77,13,43,0.0 +20828,53,32.8,47,0.0 +20828,71,21.5,31,0.0 +20828,24,4.5,32,0.0 +20828,43,46,7,0.0 +20828,32,32,25,0.0 +20828,41,9.65,22,0.0 +20828,40,18.4,46,0.0 +20828,70,15,24,0.0 +20828,11,21,15,0.0 +20828,48,12.75,19,0.0 +20828,39,18,49,0.0 +20828,7,30,50,0.0 +20828,68,12.5,19,0.0 +20828,52,7,12,0.0 +20828,23,9,44,0.0 +20828,25,14,42,0.0 +20828,65,21.05,23,0.0 +20828,22,21,18,0.0 +20828,5,21.35,30,0.0 +20828,61,28.5,7,0.0 +20828,28,45.6,44,0.0 +20828,50,16.25,19,0.0 +20828,59,55,35,0.0 +20828,31,12.5,20,0.0 +20828,27,43.9,3,0.0 +20828,75,7.75,21,0.0 +20828,16,17.45,48,0.0 +20828,12,38,41,0.0 +20828,54,7.45,32,0.0 +20828,30,25.89,23,0.0 +20828,36,19,12,0.0 +20828,60,34,31,0.0 +20828,45,9.5,18,0.0 +20828,47,9.5,3,0.0 +20828,64,33.25,10,0.0 +20828,58,13.25,43,0.0 +20828,76,18,33,0.0 +20828,46,12,33,0.0 +20828,33,2.5,28,0.0 +20828,63,43.9,28,0.0 +20828,15,15.5,8,0.0 +20829,61,28.5,49,0.0 +20829,59,55,28,0.0 +20829,30,25.89,35,0.0 +20829,3,10,50,0.0 +20829,57,19.5,5,0.0 +20829,37,26,36,0.0 +20829,16,17.45,6,0.0 +20829,7,30,9,0.0 +20829,24,4.5,21,0.0 +20829,22,21,46,0.0 +20829,69,36,4,0.0 +20829,73,15,45,0.0 +20829,35,18,15,0.0 +20829,70,15,21,0.0 +20829,8,40,3,0.0 +20829,21,10,11,0.0 +20829,26,31.23,30,0.0 +20829,58,13.25,3,0.0 +20829,75,7.75,22,0.0 +20829,33,2.5,10,0.0 +20829,47,9.5,6,0.0 +20829,54,7.45,49,0.0 +20829,32,32,47,0.0 +20829,15,15.5,39,0.0 +20829,12,38,17,0.0 +20829,63,43.9,36,0.0 +20829,20,81,11,0.0 +20829,65,21.05,40,0.0 +20829,45,9.5,20,0.0 +20829,64,33.25,32,0.0 +20829,48,12.75,15,0.0 +20829,41,9.65,37,0.0 +20829,18,62.5,45,0.0 +20829,1,18,20,0.0 +20829,2,19,29,0.0 +20829,49,20,21,0.0 +20829,11,21,9,0.0 +20829,36,19,30,0.0 +20829,46,12,3,0.0 +20829,42,14,47,0.0 +20829,10,31,49,0.0 +20829,52,7,8,0.0 +20829,50,16.25,23,0.0 +20829,4,22,22,0.0 +20829,72,34.8,14,0.0 +20829,5,21.35,3,0.0 +20829,17,39,42,0.0 +20829,71,21.5,19,0.0 +20829,77,13,7,0.0 +20829,25,14,15,0.0 +20829,31,12.5,14,0.0 +20829,28,45.6,13,0.0 +20829,43,46,47,0.0 +20829,66,17,20,0.0 +20829,38,263.5,26,0.0 +20829,53,32.8,28,0.0 +20829,34,14,8,0.0 +20829,23,9,31,0.0 +20829,19,9.2,25,0.0 +20829,51,53,33,0.0 +20829,14,23.25,10,0.0 +20830,77,13,9,0.0 +20830,6,25,29,0.0 +20830,75,7.75,34,0.0 +20830,71,21.5,45,0.0 +20830,33,2.5,30,0.0 +20830,13,6,29,0.0 +20830,55,24,33,0.0 +20830,14,23.25,23,0.0 +20830,23,9,17,0.0 +20830,17,39,21,0.0 +20830,20,81,4,0.0 +20830,5,21.35,19,0.0 +20830,34,14,40,0.0 +20830,44,19.45,9,0.0 +20830,60,34,32,0.0 +20830,74,10,30,0.0 +20830,9,97,30,0.0 +20830,21,10,39,0.0 +20830,68,12.5,10,0.0 +20830,25,14,14,0.0 +20830,38,263.5,38,0.0 +20830,46,12,43,0.0 +20830,31,12.5,4,0.0 +20830,43,46,40,0.0 +20830,26,31.23,45,0.0 +20830,52,7,35,0.0 +20830,19,9.2,17,0.0 +20831,37,26,6,0.0 +20831,8,40,28,0.0 +20831,61,28.5,7,0.0 +20831,59,55,49,0.0 +20831,23,9,20,0.0 +20831,34,14,5,0.0 +20831,45,9.5,43,0.0 +20831,49,20,46,0.0 +20831,6,25,39,0.0 +20831,12,38,39,0.0 +20831,10,31,20,0.0 +20831,75,7.75,21,0.0 +20831,27,43.9,43,0.0 +20831,52,7,13,0.0 +20831,44,19.45,18,0.0 +20831,33,2.5,29,0.0 +20831,43,46,2,0.0 +20831,1,18,41,0.0 +20831,60,34,14,0.0 +20831,14,23.25,10,0.0 +20831,74,10,48,0.0 +20831,77,13,18,0.0 +20831,72,34.8,30,0.0 +20831,51,53,41,0.0 +20831,32,32,35,0.0 +20831,11,21,30,0.0 +20831,15,15.5,27,0.0 +20831,13,6,36,0.0 +20831,29,123.79,43,0.0 +20831,4,22,9,0.0 +20831,58,13.25,44,0.0 +20831,48,12.75,5,0.0 +20831,71,21.5,25,0.0 +20831,40,18.4,46,0.0 +20831,25,14,18,0.0 +20831,76,18,39,0.0 +20831,64,33.25,15,0.0 +20831,18,62.5,38,0.0 +20831,16,17.45,39,0.0 +20831,50,16.25,39,0.0 +20831,19,9.2,41,0.0 +20831,47,9.5,10,0.0 +20831,39,18,3,0.0 +20831,26,31.23,7,0.0 +20831,55,24,49,0.0 +20831,73,15,31,0.0 +20831,69,36,37,0.0 +20831,46,12,5,0.0 +20831,67,14,48,0.0 +20831,68,12.5,34,0.0 +20831,56,38,29,0.0 +20831,42,14,3,0.0 +20831,65,21.05,39,0.0 +20831,38,263.5,4,0.0 +20831,31,12.5,2,0.0 +20831,36,19,3,0.0 +20831,24,4.5,34,0.0 +20831,22,21,33,0.0 +20831,54,7.45,1,0.0 +20831,35,18,30,0.0 +20831,5,21.35,37,0.0 +20831,53,32.8,16,0.0 +20831,20,81,46,0.0 +20831,3,10,21,0.0 +20831,2,19,9,0.0 +20831,70,15,19,0.0 +20831,62,49.3,32,0.0 +20831,28,45.6,48,0.0 +20831,66,17,37,0.0 +20831,21,10,33,0.0 +20831,17,39,26,0.0 +20831,57,19.5,32,0.0 +20831,41,9.65,8,0.0 +20831,30,25.89,27,0.0 +20831,7,30,19,0.0 +20831,9,97,30,0.0 +20831,63,43.9,39,0.0 +20832,62,49.3,35,0.0 +20832,74,10,15,0.0 +20832,45,9.5,44,0.0 +20832,14,23.25,38,0.0 +20832,46,12,41,0.0 +20832,17,39,20,0.0 +20832,47,9.5,19,0.0 +20832,76,18,36,0.0 +20832,61,28.5,43,0.0 +20832,11,21,36,0.0 +20832,67,14,8,0.0 +20832,23,9,8,0.0 +20832,2,19,32,0.0 +20832,52,7,32,0.0 +20832,60,34,40,0.0 +20832,77,13,45,0.0 +20832,49,20,2,0.0 +20832,70,15,35,0.0 +20832,28,45.6,12,0.0 +20832,73,15,45,0.0 +20832,6,25,17,0.0 +20832,10,31,31,0.0 +20832,13,6,44,0.0 +20832,58,13.25,21,0.0 +20832,44,19.45,1,0.0 +20832,53,32.8,38,0.0 +20832,38,263.5,27,0.0 +20832,15,15.5,32,0.0 +20832,4,22,33,0.0 +20832,43,46,1,0.0 +20832,22,21,13,0.0 +20832,54,7.45,32,0.0 +20832,40,18.4,1,0.0 +20832,55,24,11,0.0 +20832,9,97,13,0.0 +20832,31,12.5,21,0.0 +20832,29,123.79,30,0.0 +20832,21,10,23,0.0 +20832,12,38,9,0.0 +20832,34,14,9,0.0 +20832,25,14,39,0.0 +20832,72,34.8,15,0.0 +20832,18,62.5,23,0.0 +20832,24,4.5,15,0.0 +20832,59,55,16,0.0 +20832,75,7.75,24,0.0 +20832,36,19,18,0.0 +20832,39,18,33,0.0 +20832,63,43.9,29,0.0 +20832,27,43.9,4,0.0 +20832,33,2.5,39,0.0 +20832,65,21.05,25,0.0 +20832,37,26,48,0.0 +20832,5,21.35,28,0.0 +20833,67,14,29,0.0 +20833,76,18,6,0.0 +20833,33,2.5,36,0.0 +20833,16,17.45,15,0.0 +20833,34,14,25,0.0 +20833,1,18,42,0.0 +20833,5,21.35,7,0.0 +20833,45,9.5,44,0.0 +20833,44,19.45,40,0.0 +20833,56,38,32,0.0 +20833,12,38,46,0.0 +20833,68,12.5,44,0.0 +20833,3,10,32,0.0 +20833,66,17,48,0.0 +20833,15,15.5,1,0.0 +20833,13,6,7,0.0 +20833,32,32,47,0.0 +20833,2,19,4,0.0 +20833,7,30,7,0.0 +20833,75,7.75,47,0.0 +20833,49,20,5,0.0 +20833,20,81,33,0.0 +20833,41,9.65,39,0.0 +20833,38,263.5,21,0.0 +20833,50,16.25,31,0.0 +20833,31,12.5,3,0.0 +20833,21,10,10,0.0 +20833,73,15,47,0.0 +20833,48,12.75,36,0.0 +20833,46,12,38,0.0 +20833,14,23.25,33,0.0 +20833,6,25,11,0.0 +20833,69,36,24,0.0 +20833,60,34,20,0.0 +20833,42,14,1,0.0 +20833,53,32.8,32,0.0 +20833,58,13.25,23,0.0 +20833,57,19.5,22,0.0 +20833,9,97,35,0.0 +20833,26,31.23,6,0.0 +20833,19,9.2,24,0.0 +20833,72,34.8,15,0.0 +20833,18,62.5,18,0.0 +20833,39,18,25,0.0 +20833,54,7.45,26,0.0 +20833,10,31,49,0.0 +20833,22,21,16,0.0 +20833,35,18,19,0.0 +20833,74,10,35,0.0 +20833,51,53,33,0.0 +20833,27,43.9,37,0.0 +20833,61,28.5,1,0.0 +20834,64,33.25,26,0.0 +20834,68,12.5,49,0.0 +20834,27,43.9,41,0.0 +20834,20,81,30,0.0 +20834,19,9.2,22,0.0 +20834,44,19.45,46,0.0 +20834,11,21,35,0.0 +20834,6,25,34,0.0 +20834,8,40,6,0.0 +20834,29,123.79,10,0.0 +20834,55,24,33,0.0 +20834,60,34,8,0.0 +20834,12,38,2,0.0 +20834,10,31,28,0.0 +20834,71,21.5,4,0.0 +20835,63,43.9,9,0.0 +20835,47,9.5,49,0.0 +20835,64,33.25,28,0.0 +20835,9,97,6,0.0 +20835,67,14,14,0.0 +20835,77,13,43,0.0 +20835,62,49.3,19,0.0 +20835,20,81,49,0.0 +20835,54,7.45,28,0.0 +20835,45,9.5,6,0.0 +20835,74,10,32,0.0 +20835,68,12.5,12,0.0 +20835,3,10,42,0.0 +20835,37,26,1,0.0 +20835,71,21.5,32,0.0 +20835,8,40,48,0.0 +20835,18,62.5,5,0.0 +20835,25,14,22,0.0 +20835,72,34.8,21,0.0 +20835,55,24,33,0.0 +20835,36,19,4,0.0 +20835,61,28.5,43,0.0 +20835,38,263.5,20,0.0 +20835,42,14,16,0.0 +20835,29,123.79,2,0.0 +20835,27,43.9,41,0.0 +20835,22,21,27,0.0 +20835,39,18,21,0.0 +20835,17,39,39,0.0 +20835,50,16.25,21,0.0 +20835,76,18,34,0.0 +20835,48,12.75,3,0.0 +20835,31,12.5,13,0.0 +20835,41,9.65,11,0.0 +20835,2,19,45,0.0 +20835,12,38,47,0.0 +20835,60,34,33,0.0 +20835,70,15,16,0.0 +20835,73,15,19,0.0 +20835,15,15.5,38,0.0 +20835,46,12,48,0.0 +20835,16,17.45,41,0.0 +20835,1,18,44,0.0 +20835,53,32.8,6,0.0 +20835,11,21,32,0.0 +20835,32,32,37,0.0 +20835,13,6,26,0.0 +20835,43,46,6,0.0 +20835,58,13.25,13,0.0 +20835,40,18.4,33,0.0 +20835,49,20,22,0.0 +20835,59,55,47,0.0 +20835,56,38,28,0.0 +20835,24,4.5,15,0.0 +20835,10,31,49,0.0 +20835,7,30,45,0.0 +20835,34,14,28,0.0 +20836,67,14,19,0.0 +20836,70,15,21,0.0 +20836,75,7.75,29,0.0 +20836,24,4.5,9,0.0 +20836,28,45.6,10,0.0 +20836,58,13.25,22,0.0 +20836,23,9,32,0.0 +20836,61,28.5,15,0.0 +20836,56,38,1,0.0 +20836,73,15,21,0.0 +20836,69,36,44,0.0 +20836,14,23.25,29,0.0 +20836,65,21.05,9,0.0 +20836,33,2.5,38,0.0 +20836,31,12.5,26,0.0 +20836,29,123.79,40,0.0 +20836,42,14,46,0.0 +20836,50,16.25,38,0.0 +20836,13,6,9,0.0 +20836,41,9.65,36,0.0 +20836,35,18,28,0.0 +20836,45,9.5,25,0.0 +20836,11,21,16,0.0 +20836,15,15.5,2,0.0 +20836,27,43.9,49,0.0 +20836,59,55,44,0.0 +20836,34,14,15,0.0 +20836,30,25.89,2,0.0 +20836,2,19,28,0.0 +20836,9,97,34,0.0 +20836,7,30,7,0.0 +20836,38,263.5,27,0.0 +20836,32,32,14,0.0 +20836,8,40,21,0.0 +20836,19,9.2,28,0.0 +20836,47,9.5,10,0.0 +20836,63,43.9,38,0.0 +20836,17,39,14,0.0 +20836,26,31.23,41,0.0 +20836,62,49.3,19,0.0 +20837,7,30,20,0.0 +20837,71,21.5,31,0.0 +20837,23,9,6,0.0 +20837,36,19,16,0.0 +20837,29,123.79,34,0.0 +20837,6,25,2,0.0 +20837,60,34,21,0.0 +20837,70,15,1,0.0 +20837,69,36,46,0.0 +20837,63,43.9,50,0.0 +20837,3,10,24,0.0 +20837,14,23.25,37,0.0 +20837,18,62.5,28,0.0 +20837,38,263.5,49,0.0 +20837,52,7,27,0.0 +20837,49,20,18,0.0 +20837,56,38,31,0.0 +20837,44,19.45,7,0.0 +20837,57,19.5,35,0.0 +20837,50,16.25,1,0.0 +20837,51,53,14,0.0 +20837,12,38,41,0.0 +20837,54,7.45,27,0.0 +20837,34,14,10,0.0 +20837,13,6,23,0.0 +20837,66,17,20,0.0 +20837,40,18.4,27,0.0 +20837,74,10,48,0.0 +20837,64,33.25,38,0.0 +20837,2,19,39,0.0 +20837,68,12.5,41,0.0 +20837,46,12,4,0.0 +20837,43,46,24,0.0 +20837,35,18,45,0.0 +20837,4,22,5,0.0 +20837,1,18,16,0.0 +20837,19,9.2,33,0.0 +20837,39,18,40,0.0 +20837,77,13,37,0.0 +20837,61,28.5,14,0.0 +20837,20,81,38,0.0 +20837,41,9.65,28,0.0 +20837,53,32.8,5,0.0 +20837,15,15.5,41,0.0 +20837,67,14,27,0.0 +20837,47,9.5,12,0.0 +20837,72,34.8,10,0.0 +20837,58,13.25,7,0.0 +20837,21,10,7,0.0 +20837,73,15,34,0.0 +20837,10,31,27,0.0 +20837,37,26,46,0.0 +20837,26,31.23,7,0.0 +20837,33,2.5,20,0.0 +20837,9,97,19,0.0 +20837,8,40,20,0.0 +20837,48,12.75,9,0.0 +20838,15,15.5,6,0.0 +20838,6,25,15,0.0 +20838,56,38,21,0.0 +20838,66,17,27,0.0 +20838,58,13.25,26,0.0 +20838,16,17.45,48,0.0 +20838,17,39,16,0.0 +20838,64,33.25,43,0.0 +20838,77,13,32,0.0 +20838,4,22,33,0.0 +20838,46,12,28,0.0 +20838,72,34.8,36,0.0 +20838,38,263.5,49,0.0 +20838,37,26,48,0.0 +20838,10,31,22,0.0 +20838,36,19,12,0.0 +20838,40,18.4,45,0.0 +20838,20,81,33,0.0 +20838,34,14,29,0.0 +20838,49,20,47,0.0 +20838,35,18,47,0.0 +20838,57,19.5,34,0.0 +20838,21,10,44,0.0 +20838,28,45.6,46,0.0 +20838,44,19.45,21,0.0 +20838,22,21,23,0.0 +20838,76,18,16,0.0 +20838,69,36,10,0.0 +20838,60,34,34,0.0 +20838,5,21.35,9,0.0 +20838,2,19,13,0.0 +20838,75,7.75,31,0.0 +20838,53,32.8,26,0.0 +20838,59,55,40,0.0 +20838,18,62.5,14,0.0 +20838,29,123.79,22,0.0 +20838,9,97,26,0.0 +20838,43,46,39,0.0 +20838,14,23.25,14,0.0 +20838,26,31.23,30,0.0 +20838,8,40,15,0.0 +20838,31,12.5,11,0.0 +20838,47,9.5,45,0.0 +20838,42,14,2,0.0 +20838,51,53,29,0.0 +20838,63,43.9,14,0.0 +20838,41,9.65,6,0.0 +20838,30,25.89,25,0.0 +20838,13,6,28,0.0 +20838,27,43.9,35,0.0 +20838,12,38,31,0.0 +20838,19,9.2,43,0.0 +20838,67,14,38,0.0 +20838,24,4.5,36,0.0 +20838,62,49.3,12,0.0 +20838,25,14,36,0.0 +20838,54,7.45,19,0.0 +20838,45,9.5,31,0.0 +20838,73,15,4,0.0 +20838,61,28.5,1,0.0 +20838,11,21,1,0.0 +20838,1,18,33,0.0 +20838,74,10,49,0.0 +20839,29,123.79,17,0.0 +20839,18,62.5,18,0.0 +20839,75,7.75,8,0.0 +20839,71,21.5,8,0.0 +20839,22,21,28,0.0 +20839,49,20,12,0.0 +20839,39,18,7,0.0 +20839,27,43.9,9,0.0 +20839,32,32,14,0.0 +20839,69,36,18,0.0 +20839,53,32.8,36,0.0 +20839,77,13,49,0.0 +20839,41,9.65,45,0.0 +20839,3,10,16,0.0 +20839,44,19.45,29,0.0 +20839,42,14,28,0.0 +20839,24,4.5,28,0.0 +20839,50,16.25,3,0.0 +20839,68,12.5,47,0.0 +20839,35,18,10,0.0 +20839,16,17.45,32,0.0 +20839,15,15.5,37,0.0 +20839,65,21.05,4,0.0 +20839,30,25.89,35,0.0 +20839,21,10,1,0.0 +20839,11,21,7,0.0 +20839,51,53,48,0.0 +20839,36,19,35,0.0 +20839,59,55,7,0.0 +20839,28,45.6,24,0.0 +20839,70,15,15,0.0 +20839,1,18,4,0.0 +20839,19,9.2,40,0.0 +20839,31,12.5,32,0.0 +20839,8,40,41,0.0 +20839,10,31,47,0.0 +20839,33,2.5,23,0.0 +20839,73,15,20,0.0 +20839,25,14,30,0.0 +20839,76,18,47,0.0 +20839,38,263.5,39,0.0 +20839,63,43.9,35,0.0 +20839,60,34,6,0.0 +20839,4,22,26,0.0 +20839,37,26,46,0.0 +20839,72,34.8,50,0.0 +20839,46,12,4,0.0 +20839,52,7,6,0.0 +20839,5,21.35,13,0.0 +20839,66,17,17,0.0 +20839,54,7.45,38,0.0 +20839,9,97,11,0.0 +20839,61,28.5,41,0.0 +20839,74,10,45,0.0 +20839,58,13.25,42,0.0 +20839,56,38,34,0.0 +20839,23,9,25,0.0 +20839,13,6,28,0.0 +20839,26,31.23,10,0.0 +20839,40,18.4,39,0.0 +20839,20,81,29,0.0 +20839,12,38,13,0.0 +20839,57,19.5,49,0.0 +20839,45,9.5,27,0.0 +20839,14,23.25,45,0.0 +20839,7,30,4,0.0 +20839,64,33.25,25,0.0 +20839,62,49.3,31,0.0 +20839,6,25,18,0.0 +20839,34,14,12,0.0 +20839,17,39,22,0.0 +20840,39,18,29,0.0 +20840,62,49.3,2,0.0 +20840,23,9,45,0.0 +20840,45,9.5,34,0.0 +20840,55,24,27,0.0 +20840,54,7.45,14,0.0 +20840,31,12.5,50,0.0 +20840,51,53,23,0.0 +20840,57,19.5,5,0.0 +20840,18,62.5,38,0.0 +20840,29,123.79,35,0.0 +20840,60,34,46,0.0 +20840,65,21.05,35,0.0 +20840,15,15.5,23,0.0 +20840,52,7,35,0.0 +20840,36,19,1,0.0 +20840,71,21.5,25,0.0 +20840,9,97,25,0.0 +20840,58,13.25,34,0.0 +20840,8,40,24,0.0 +20840,50,16.25,28,0.0 +20840,56,38,14,0.0 +20840,70,15,50,0.0 +20840,25,14,19,0.0 +20840,12,38,3,0.0 +20840,61,28.5,32,0.0 +20840,40,18.4,39,0.0 +20840,14,23.25,25,0.0 +20840,32,32,30,0.0 +20840,16,17.45,11,0.0 +20840,75,7.75,13,0.0 +20840,41,9.65,27,0.0 +20840,46,12,30,0.0 +20840,76,18,9,0.0 +20840,10,31,48,0.0 +20840,19,9.2,32,0.0 +20840,59,55,39,0.0 +20840,2,19,12,0.0 +20840,21,10,27,0.0 +20840,30,25.89,7,0.0 +20840,34,14,50,0.0 +20840,1,18,15,0.0 +20840,22,21,30,0.0 +20840,48,12.75,23,0.0 +20840,17,39,18,0.0 +20840,43,46,36,0.0 +20840,38,263.5,27,0.0 +20840,3,10,4,0.0 +20840,73,15,32,0.0 +20840,66,17,48,0.0 +20840,6,25,23,0.0 +20840,49,20,49,0.0 +20840,63,43.9,9,0.0 +20840,26,31.23,45,0.0 +20840,42,14,4,0.0 +20840,4,22,39,0.0 +20840,7,30,29,0.0 +20840,53,32.8,1,0.0 +20840,11,21,24,0.0 +20840,33,2.5,28,0.0 +20840,74,10,50,0.0 +20840,68,12.5,32,0.0 +20840,28,45.6,13,0.0 +20840,47,9.5,6,0.0 +20840,77,13,19,0.0 +20840,13,6,38,0.0 +20840,27,43.9,4,0.0 +20840,69,36,35,0.0 +20840,67,14,47,0.0 +20840,72,34.8,15,0.0 +20840,44,19.45,2,0.0 +20840,35,18,38,0.0 +20840,24,4.5,16,0.0 +20840,37,26,41,0.0 +20840,20,81,16,0.0 +20841,17,39,17,0.0 +20841,32,32,10,0.0 +20841,20,81,15,0.0 +20841,16,17.45,42,0.0 +20841,29,123.79,16,0.0 +20841,51,53,38,0.0 +20841,76,18,50,0.0 +20841,69,36,5,0.0 +20841,55,24,32,0.0 +20841,74,10,46,0.0 +20841,43,46,27,0.0 +20841,9,97,26,0.0 +20841,45,9.5,41,0.0 +20841,14,23.25,36,0.0 +20841,52,7,29,0.0 +20841,64,33.25,14,0.0 +20841,2,19,36,0.0 +20841,35,18,28,0.0 +20841,54,7.45,27,0.0 +20841,44,19.45,12,0.0 +20841,63,43.9,11,0.0 +20841,57,19.5,7,0.0 +20841,58,13.25,14,0.0 +20841,23,9,15,0.0 +20841,21,10,17,0.0 +20841,53,32.8,6,0.0 +20841,68,12.5,11,0.0 +20841,30,25.89,28,0.0 +20841,70,15,2,0.0 +20841,40,18.4,13,0.0 +20841,47,9.5,27,0.0 +20841,77,13,20,0.0 +20841,65,21.05,10,0.0 +20841,33,2.5,38,0.0 +20841,59,55,28,0.0 +20841,10,31,26,0.0 +20841,13,6,27,0.0 +20841,7,30,16,0.0 +20841,67,14,9,0.0 +20841,50,16.25,48,0.0 +20841,5,21.35,37,0.0 +20841,4,22,17,0.0 +20841,62,49.3,25,0.0 +20841,60,34,25,0.0 +20841,48,12.75,27,0.0 +20841,11,21,40,0.0 +20841,46,12,40,0.0 +20841,66,17,9,0.0 +20841,37,26,8,0.0 +20841,61,28.5,1,0.0 +20841,26,31.23,45,0.0 +20841,28,45.6,32,0.0 +20841,31,12.5,32,0.0 +20841,27,43.9,43,0.0 +20841,19,9.2,4,0.0 +20841,12,38,23,0.0 +20841,25,14,23,0.0 +20841,34,14,24,0.0 +20841,36,19,46,0.0 +20841,56,38,31,0.0 +20841,42,14,49,0.0 +20841,1,18,2,0.0 +20841,71,21.5,23,0.0 +20841,18,62.5,48,0.0 +20841,49,20,24,0.0 +20841,72,34.8,46,0.0 +20841,24,4.5,45,0.0 +20841,38,263.5,32,0.0 +20841,8,40,31,0.0 +20841,75,7.75,18,0.0 +20841,22,21,21,0.0 +20841,15,15.5,34,0.0 +20841,3,10,6,0.0 +20841,39,18,11,0.0 +20841,73,15,25,0.0 +20841,41,9.65,14,0.0 +20841,6,25,8,0.0 +20842,70,15,3,0.0 +20842,50,16.25,37,0.0 +20842,30,25.89,10,0.0 +20842,8,40,37,0.0 +20842,48,12.75,49,0.0 +20842,21,10,13,0.0 +20842,25,14,16,0.0 +20842,13,6,30,0.0 +20842,68,12.5,30,0.0 +20842,58,13.25,48,0.0 +20842,32,32,39,0.0 +20842,49,20,38,0.0 +20842,2,19,22,0.0 +20842,34,14,5,0.0 +20842,6,25,36,0.0 +20842,38,263.5,44,0.0 +20842,47,9.5,11,0.0 +20842,45,9.5,46,0.0 +20842,36,19,14,0.0 +20842,56,38,43,0.0 +20842,42,14,39,0.0 +20842,60,34,16,0.0 +20842,1,18,49,0.0 +20842,55,24,41,0.0 +20842,23,9,13,0.0 +20842,4,22,8,0.0 +20842,14,23.25,21,0.0 +20842,72,34.8,8,0.0 +20842,9,97,30,0.0 +20842,5,21.35,29,0.0 +20842,63,43.9,5,0.0 +20842,40,18.4,50,0.0 +20842,43,46,48,0.0 +20842,51,53,40,0.0 +20842,33,2.5,19,0.0 +20842,64,33.25,37,0.0 +20842,12,38,15,0.0 +20842,61,28.5,41,0.0 +20842,74,10,2,0.0 +20842,3,10,47,0.0 +20843,59,55,48,0.0 +20843,30,25.89,27,0.0 +20843,12,38,19,0.0 +20843,38,263.5,37,0.0 +20843,62,49.3,43,0.0 +20843,75,7.75,46,0.0 +20843,57,19.5,30,0.0 +20843,63,43.9,39,0.0 +20843,15,15.5,26,0.0 +20843,37,26,49,0.0 +20843,39,18,37,0.0 +20843,5,21.35,16,0.0 +20843,26,31.23,32,0.0 +20843,11,21,12,0.0 +20843,51,53,28,0.0 +20843,29,123.79,7,0.0 +20843,35,18,39,0.0 +20843,46,12,9,0.0 +20843,64,33.25,29,0.0 +20843,10,31,14,0.0 +20843,24,4.5,47,0.0 +20843,23,9,46,0.0 +20843,58,13.25,36,0.0 +20843,65,21.05,11,0.0 +20843,20,81,23,0.0 +20843,9,97,40,0.0 +20843,72,34.8,19,0.0 +20843,3,10,42,0.0 +20843,2,19,39,0.0 +20843,77,13,13,0.0 +20843,18,62.5,30,0.0 +20843,13,6,32,0.0 +20843,31,12.5,27,0.0 +20844,13,6,14,0.0 +20844,57,19.5,45,0.0 +20844,63,43.9,30,0.0 +20844,33,2.5,44,0.0 +20844,15,15.5,20,0.0 +20844,42,14,18,0.0 +20844,59,55,49,0.0 +20844,16,17.45,8,0.0 +20844,10,31,10,0.0 +20844,11,21,3,0.0 +20844,50,16.25,26,0.0 +20844,36,19,40,0.0 +20844,60,34,5,0.0 +20844,69,36,38,0.0 +20844,73,15,10,0.0 +20844,52,7,48,0.0 +20844,23,9,44,0.0 +20844,29,123.79,17,0.0 +20844,37,26,42,0.0 +20844,46,12,27,0.0 +20844,53,32.8,37,0.0 +20844,17,39,28,0.0 +20844,58,13.25,46,0.0 +20844,66,17,37,0.0 +20844,48,12.75,34,0.0 +20844,76,18,11,0.0 +20844,22,21,26,0.0 +20844,75,7.75,14,0.0 +20844,39,18,19,0.0 +20844,62,49.3,37,0.0 +20844,14,23.25,47,0.0 +20844,3,10,41,0.0 +20844,5,21.35,12,0.0 +20844,70,15,38,0.0 +20844,56,38,37,0.0 +20844,74,10,39,0.0 +20844,44,19.45,1,0.0 +20844,67,14,1,0.0 +20844,77,13,13,0.0 +20844,9,97,46,0.0 +20844,12,38,7,0.0 +20844,54,7.45,50,0.0 +20844,49,20,33,0.0 +20844,26,31.23,22,0.0 +20844,2,19,3,0.0 +20844,28,45.6,22,0.0 +20844,6,25,3,0.0 +20844,4,22,31,0.0 +20845,53,32.8,36,0.0 +20845,63,43.9,26,0.0 +20845,58,13.25,10,0.0 +20845,71,21.5,44,0.0 +20845,20,81,24,0.0 +20845,25,14,37,0.0 +20845,35,18,46,0.0 +20845,29,123.79,32,0.0 +20845,48,12.75,27,0.0 +20845,7,30,7,0.0 +20845,17,39,48,0.0 +20845,52,7,32,0.0 +20845,30,25.89,48,0.0 +20845,3,10,34,0.0 +20845,55,24,24,0.0 +20846,70,15,20,0.0 +20846,40,18.4,17,0.0 +20846,43,46,39,0.0 +20846,22,21,8,0.0 +20846,50,16.25,19,0.0 +20846,66,17,44,0.0 +20846,59,55,10,0.0 +20846,63,43.9,8,0.0 +20846,45,9.5,35,0.0 +20846,9,97,17,0.0 +20846,21,10,26,0.0 +20846,20,81,8,0.0 +20846,46,12,14,0.0 +20846,67,14,3,0.0 +20846,17,39,48,0.0 +20846,60,34,44,0.0 +20846,55,24,32,0.0 +20846,52,7,28,0.0 +20846,58,13.25,42,0.0 +20846,71,21.5,47,0.0 +20846,39,18,49,0.0 +20846,6,25,49,0.0 +20846,16,17.45,28,0.0 +20846,61,28.5,48,0.0 +20846,53,32.8,42,0.0 +20846,37,26,45,0.0 +20846,25,14,24,0.0 +20846,31,12.5,3,0.0 +20846,27,43.9,25,0.0 +20846,34,14,3,0.0 +20846,4,22,46,0.0 +20846,33,2.5,49,0.0 +20846,13,6,41,0.0 +20846,38,263.5,2,0.0 +20846,76,18,42,0.0 +20846,15,15.5,26,0.0 +20846,36,19,32,0.0 +20846,24,4.5,49,0.0 +20846,65,21.05,17,0.0 +20846,35,18,46,0.0 +20846,26,31.23,29,0.0 +20846,74,10,12,0.0 +20846,48,12.75,18,0.0 +20846,47,9.5,31,0.0 +20846,75,7.75,13,0.0 +20846,30,25.89,21,0.0 +20846,73,15,12,0.0 +20846,11,21,41,0.0 +20846,32,32,28,0.0 +20846,42,14,4,0.0 +20846,54,7.45,49,0.0 +20846,19,9.2,24,0.0 +20846,14,23.25,43,0.0 +20846,7,30,8,0.0 +20846,12,38,29,0.0 +20846,1,18,37,0.0 +20846,28,45.6,40,0.0 +20847,27,43.9,22,0.0 +20847,6,25,38,0.0 +20847,59,55,37,0.0 +20847,68,12.5,6,0.0 +20847,17,39,36,0.0 +20847,51,53,41,0.0 +20847,77,13,35,0.0 +20847,64,33.25,9,0.0 +20847,56,38,11,0.0 +20847,11,21,3,0.0 +20847,61,28.5,31,0.0 +20847,1,18,5,0.0 +20847,26,31.23,30,0.0 +20847,76,18,12,0.0 +20847,13,6,21,0.0 +20847,69,36,30,0.0 +20847,52,7,33,0.0 +20847,50,16.25,19,0.0 +20847,10,31,41,0.0 +20847,9,97,8,0.0 +20847,58,13.25,30,0.0 +20847,44,19.45,30,0.0 +20847,30,25.89,9,0.0 +20847,23,9,33,0.0 +20847,53,32.8,32,0.0 +20847,66,17,39,0.0 +20847,31,12.5,38,0.0 +20847,48,12.75,20,0.0 +20847,62,49.3,18,0.0 +20847,18,62.5,26,0.0 +20847,47,9.5,9,0.0 +20847,15,15.5,34,0.0 +20847,43,46,15,0.0 +20847,5,21.35,15,0.0 +20847,49,20,17,0.0 +20847,57,19.5,44,0.0 +20847,60,34,30,0.0 +20847,32,32,37,0.0 +20847,22,21,23,0.0 +20847,34,14,9,0.0 +20847,41,9.65,8,0.0 +20847,46,12,49,0.0 +20847,37,26,24,0.0 +20847,2,19,3,0.0 +20847,55,24,28,0.0 +20847,39,18,47,0.0 +20847,65,21.05,45,0.0 +20847,33,2.5,40,0.0 +20847,67,14,13,0.0 +20847,4,22,13,0.0 +20847,42,14,8,0.0 +20847,12,38,44,0.0 +20847,40,18.4,40,0.0 +20847,74,10,18,0.0 +20847,63,43.9,25,0.0 +20847,72,34.8,38,0.0 +20847,3,10,14,0.0 +20847,19,9.2,29,0.0 +20847,25,14,13,0.0 +20847,35,18,36,0.0 +20847,16,17.45,47,0.0 +20847,75,7.75,13,0.0 +20847,45,9.5,45,0.0 +20847,29,123.79,11,0.0 +20847,7,30,31,0.0 +20847,70,15,30,0.0 +20847,36,19,9,0.0 +20848,31,12.5,20,0.0 +20848,8,40,31,0.0 +20848,30,25.89,36,0.0 +20848,51,53,34,0.0 +20848,60,34,16,0.0 +20848,50,16.25,30,0.0 +20848,52,7,12,0.0 +20848,16,17.45,29,0.0 +20848,24,4.5,22,0.0 +20848,67,14,43,0.0 +20848,20,81,38,0.0 +20848,10,31,23,0.0 +20848,23,9,31,0.0 +20848,9,97,17,0.0 +20848,55,24,13,0.0 +20848,5,21.35,30,0.0 +20848,38,263.5,2,0.0 +20848,66,17,25,0.0 +20848,3,10,3,0.0 +20848,6,25,42,0.0 +20848,21,10,40,0.0 +20848,34,14,10,0.0 +20848,27,43.9,28,0.0 +20848,58,13.25,38,0.0 +20848,41,9.65,20,0.0 +20848,40,18.4,34,0.0 +20848,57,19.5,32,0.0 +20848,42,14,20,0.0 +20848,74,10,47,0.0 +20848,48,12.75,28,0.0 +20848,2,19,11,0.0 +20848,32,32,25,0.0 +20848,17,39,24,0.0 +20848,1,18,48,0.0 +20848,22,21,2,0.0 +20848,56,38,42,0.0 +20848,35,18,12,0.0 +20848,49,20,15,0.0 +20848,53,32.8,10,0.0 +20848,44,19.45,14,0.0 +20848,4,22,48,0.0 +20848,13,6,1,0.0 +20849,52,7,38,0.0 +20849,50,16.25,34,0.0 +20849,17,39,23,0.0 +20849,49,20,2,0.0 +20849,6,25,47,0.0 +20849,44,19.45,20,0.0 +20849,41,9.65,32,0.0 +20849,13,6,5,0.0 +20849,54,7.45,33,0.0 +20849,66,17,38,0.0 +20849,53,32.8,49,0.0 +20849,40,18.4,13,0.0 +20849,56,38,12,0.0 +20849,38,263.5,29,0.0 +20849,8,40,29,0.0 +20849,21,10,41,0.0 +20849,10,31,31,0.0 +20849,37,26,35,0.0 +20849,57,19.5,38,0.0 +20849,43,46,33,0.0 +20849,77,13,13,0.0 +20849,62,49.3,26,0.0 +20849,19,9.2,16,0.0 +20849,60,34,4,0.0 +20849,1,18,34,0.0 +20849,24,4.5,46,0.0 +20849,16,17.45,4,0.0 +20849,29,123.79,45,0.0 +20849,11,21,42,0.0 +20849,58,13.25,39,0.0 +20849,42,14,21,0.0 +20849,67,14,8,0.0 +20849,2,19,41,0.0 +20849,32,32,46,0.0 +20849,69,36,30,0.0 +20849,30,25.89,13,0.0 +20849,31,12.5,45,0.0 +20849,3,10,25,0.0 +20849,65,21.05,3,0.0 +20849,5,21.35,40,0.0 +20849,70,15,23,0.0 +20849,28,45.6,28,0.0 +20849,39,18,1,0.0 +20849,51,53,14,0.0 +20849,12,38,17,0.0 +20849,48,12.75,25,0.0 +20849,35,18,12,0.0 +20849,26,31.23,2,0.0 +20849,76,18,18,0.0 +20849,36,19,29,0.0 +20849,61,28.5,50,0.0 +20849,59,55,23,0.0 +20849,75,7.75,18,0.0 +20849,64,33.25,36,0.0 +20849,23,9,37,0.0 +20849,68,12.5,45,0.0 +20850,44,19.45,44,0.0 +20850,41,9.65,43,0.0 +20850,71,21.5,3,0.0 +20850,56,38,41,0.0 +20850,57,19.5,14,0.0 +20850,48,12.75,26,0.0 +20850,19,9.2,12,0.0 +20850,45,9.5,36,0.0 +20850,68,12.5,34,0.0 +20850,11,21,23,0.0 +20850,39,18,39,0.0 +20850,22,21,45,0.0 +20850,21,10,9,0.0 +20850,37,26,42,0.0 +20850,2,19,11,0.0 +20850,69,36,39,0.0 +20850,73,15,33,0.0 +20850,13,6,15,0.0 +20850,63,43.9,33,0.0 +20850,15,15.5,2,0.0 +20850,8,40,36,0.0 +20850,58,13.25,37,0.0 +20850,1,18,24,0.0 +20850,10,31,25,0.0 +20850,61,28.5,30,0.0 +20850,60,34,25,0.0 +20850,20,81,17,0.0 +20850,67,14,43,0.0 +20850,77,13,18,0.0 +20850,43,46,28,0.0 +20850,3,10,4,0.0 +20850,34,14,33,0.0 +20850,17,39,5,0.0 +20850,32,32,10,0.0 +20850,31,12.5,41,0.0 +20850,36,19,31,0.0 +20850,64,33.25,28,0.0 +20850,54,7.45,39,0.0 +20850,47,9.5,42,0.0 +20850,53,32.8,21,0.0 +20850,75,7.75,46,0.0 +20850,46,12,4,0.0 +20850,25,14,46,0.0 +20850,40,18.4,22,0.0 +20850,5,21.35,30,0.0 +20850,16,17.45,19,0.0 +20850,24,4.5,32,0.0 +20850,30,25.89,31,0.0 +20850,6,25,30,0.0 +20850,18,62.5,19,0.0 +20850,28,45.6,40,0.0 +20850,42,14,44,0.0 +20850,72,34.8,7,0.0 +20850,4,22,4,0.0 +20850,74,10,28,0.0 +20850,14,23.25,31,0.0 +20850,33,2.5,17,0.0 +20850,27,43.9,25,0.0 +20850,7,30,14,0.0 +20850,66,17,48,0.0 +20850,51,53,9,0.0 +20850,70,15,49,0.0 +20850,38,263.5,40,0.0 +20850,76,18,39,0.0 +20850,52,7,49,0.0 +20850,55,24,28,0.0 +20850,59,55,32,0.0 +20850,23,9,22,0.0 +20850,62,49.3,29,0.0 +20850,26,31.23,1,0.0 +20850,65,21.05,24,0.0 +20850,29,123.79,15,0.0 +20850,50,16.25,28,0.0 +20850,12,38,40,0.0 +20850,49,20,19,0.0 +20850,9,97,43,0.0 +20850,35,18,42,0.0 +20851,62,49.3,5,0.0 +20851,21,10,13,0.0 +20851,30,25.89,38,0.0 +20851,27,43.9,20,0.0 +20851,22,21,14,0.0 +20851,37,26,10,0.0 +20851,8,40,33,0.0 +20851,3,10,19,0.0 +20851,61,28.5,16,0.0 +20851,40,18.4,38,0.0 +20851,20,81,10,0.0 +20851,58,13.25,46,0.0 +20851,14,23.25,24,0.0 +20851,29,123.79,24,0.0 +20851,12,38,32,0.0 +20851,4,22,50,0.0 +20851,41,9.65,28,0.0 +20851,54,7.45,34,0.0 +20851,19,9.2,40,0.0 +20851,44,19.45,38,0.0 +20851,75,7.75,14,0.0 +20851,31,12.5,36,0.0 +20851,18,62.5,41,0.0 +20851,43,46,41,0.0 +20851,49,20,14,0.0 +20851,65,21.05,23,0.0 +20851,23,9,36,0.0 +20851,16,17.45,21,0.0 +20851,32,32,28,0.0 +20851,73,15,41,0.0 +20851,64,33.25,14,0.0 +20851,53,32.8,21,0.0 +20851,52,7,40,0.0 +20851,35,18,29,0.0 +20851,28,45.6,36,0.0 +20851,26,31.23,31,0.0 +20851,5,21.35,24,0.0 +20851,36,19,17,0.0 +20851,24,4.5,12,0.0 +20851,6,25,22,0.0 +20851,17,39,20,0.0 +20851,55,24,45,0.0 +20851,11,21,36,0.0 +20851,74,10,13,0.0 +20851,69,36,1,0.0 +20851,34,14,47,0.0 +20851,56,38,30,0.0 +20851,76,18,45,0.0 +20851,7,30,11,0.0 +20851,70,15,2,0.0 +20851,42,14,33,0.0 +20851,46,12,40,0.0 +20851,77,13,22,0.0 +20851,57,19.5,1,0.0 +20851,71,21.5,37,0.0 +20851,48,12.75,5,0.0 +20851,2,19,20,0.0 +20851,68,12.5,6,0.0 +20851,50,16.25,30,0.0 +20851,67,14,10,0.0 +20852,42,14,49,0.0 +20852,77,13,42,0.0 +20852,9,97,8,0.0 +20852,27,43.9,4,0.0 +20852,54,7.45,46,0.0 +20852,55,24,30,0.0 +20852,63,43.9,34,0.0 +20852,66,17,9,0.0 +20852,58,13.25,28,0.0 +20852,69,36,30,0.0 +20852,57,19.5,11,0.0 +20852,67,14,31,0.0 +20852,29,123.79,12,0.0 +20852,64,33.25,38,0.0 +20852,14,23.25,42,0.0 +20852,44,19.45,21,0.0 +20852,56,38,13,0.0 +20852,50,16.25,14,0.0 +20852,16,17.45,40,0.0 +20852,13,6,15,0.0 +20852,59,55,33,0.0 +20852,36,19,7,0.0 +20852,6,25,46,0.0 +20852,22,21,4,0.0 +20852,74,10,35,0.0 +20852,25,14,35,0.0 +20852,43,46,50,0.0 +20852,46,12,20,0.0 +20852,38,263.5,25,0.0 +20852,5,21.35,24,0.0 +20852,3,10,49,0.0 +20852,2,19,6,0.0 +20852,18,62.5,39,0.0 +20852,72,34.8,30,0.0 +20852,71,21.5,43,0.0 +20852,15,15.5,48,0.0 +20852,65,21.05,38,0.0 +20852,40,18.4,19,0.0 +20852,30,25.89,45,0.0 +20852,61,28.5,19,0.0 +20852,53,32.8,46,0.0 +20852,49,20,45,0.0 +20852,39,18,30,0.0 +20852,21,10,36,0.0 +20853,1,18,22,0.0 +20853,42,14,9,0.0 +20853,70,15,2,0.0 +20853,69,36,5,0.0 +20853,58,13.25,44,0.0 +20853,71,21.5,26,0.0 +20853,49,20,19,0.0 +20853,10,31,18,0.0 +20853,75,7.75,16,0.0 +20853,64,33.25,11,0.0 +20853,26,31.23,3,0.0 +20853,33,2.5,30,0.0 +20853,68,12.5,10,0.0 +20853,50,16.25,38,0.0 +20853,60,34,34,0.0 +20853,30,25.89,26,0.0 +20853,19,9.2,25,0.0 +20853,35,18,18,0.0 +20853,4,22,22,0.0 +20853,6,25,14,0.0 +20853,25,14,47,0.0 +20853,18,62.5,6,0.0 +20853,23,9,17,0.0 +20853,47,9.5,34,0.0 +20853,32,32,36,0.0 +20853,8,40,32,0.0 +20853,54,7.45,16,0.0 +20853,77,13,24,0.0 +20853,22,21,39,0.0 +20853,52,7,41,0.0 +20853,65,21.05,9,0.0 +20853,62,49.3,11,0.0 +20854,50,16.25,23,0.0 +20854,9,97,7,0.0 +20854,29,123.79,22,0.0 +20854,28,45.6,9,0.0 +20854,72,34.8,44,0.0 +20854,76,18,49,0.0 +20854,52,7,31,0.0 +20854,53,32.8,49,0.0 +20854,1,18,21,0.0 +20854,21,10,49,0.0 +20854,67,14,44,0.0 +20854,38,263.5,2,0.0 +20854,31,12.5,36,0.0 +20854,10,31,32,0.0 +20854,56,38,30,0.0 +20854,77,13,38,0.0 +20854,73,15,16,0.0 +20854,65,21.05,8,0.0 +20855,76,18,42,0.0 +20855,60,34,17,0.0 +20855,17,39,15,0.0 +20855,43,46,19,0.0 +20855,63,43.9,49,0.0 +20855,1,18,38,0.0 +20855,68,12.5,17,0.0 +20855,69,36,15,0.0 +20855,74,10,5,0.0 +20855,61,28.5,28,0.0 +20855,6,25,30,0.0 +20855,73,15,44,0.0 +20855,2,19,3,0.0 +20855,39,18,41,0.0 +20855,55,24,4,0.0 +20855,3,10,46,0.0 +20855,13,6,35,0.0 +20855,56,38,10,0.0 +20855,50,16.25,27,0.0 +20855,19,9.2,50,0.0 +20855,15,15.5,1,0.0 +20855,16,17.45,11,0.0 +20855,58,13.25,6,0.0 +20855,7,30,3,0.0 +20855,57,19.5,16,0.0 +20855,14,23.25,41,0.0 +20855,20,81,50,0.0 +20855,29,123.79,9,0.0 +20855,12,38,12,0.0 +20855,18,62.5,30,0.0 +20855,65,21.05,6,0.0 +20855,11,21,40,0.0 +20855,9,97,21,0.0 +20855,47,9.5,44,0.0 +20855,22,21,8,0.0 +20855,33,2.5,49,0.0 +20855,77,13,43,0.0 +20855,21,10,18,0.0 +20855,48,12.75,48,0.0 +20855,28,45.6,21,0.0 +20855,27,43.9,46,0.0 +20855,26,31.23,22,0.0 +20855,72,34.8,14,0.0 +20855,54,7.45,22,0.0 +20855,36,19,43,0.0 +20855,41,9.65,1,0.0 +20856,49,20,38,0.0 +20856,26,31.23,31,0.0 +20856,66,17,38,0.0 +20856,68,12.5,18,0.0 +20856,40,18.4,27,0.0 +20856,69,36,18,0.0 +20856,28,45.6,48,0.0 +20856,58,13.25,25,0.0 +20856,41,9.65,16,0.0 +20856,39,18,20,0.0 +20856,64,33.25,3,0.0 +20856,18,62.5,33,0.0 +20856,23,9,9,0.0 +20857,44,19.45,6,0.0 +20857,6,25,12,0.0 +20857,33,2.5,33,0.0 +20857,73,15,37,0.0 +20857,25,14,50,0.0 +20857,20,81,36,0.0 +20857,17,39,28,0.0 +20857,32,32,19,0.0 +20857,49,20,9,0.0 +20857,12,38,3,0.0 +20857,75,7.75,28,0.0 +20857,68,12.5,41,0.0 +20857,45,9.5,1,0.0 +20857,36,19,21,0.0 +20857,34,14,36,0.0 +20857,59,55,24,0.0 +20857,38,263.5,50,0.0 +20857,55,24,14,0.0 +20857,31,12.5,35,0.0 +20857,14,23.25,50,0.0 +20857,28,45.6,5,0.0 +20857,46,12,36,0.0 +20857,39,18,47,0.0 +20857,29,123.79,21,0.0 +20857,40,18.4,8,0.0 +20857,21,10,5,0.0 +20857,69,36,38,0.0 +20857,35,18,5,0.0 +20857,7,30,13,0.0 +20857,77,13,23,0.0 +20858,20,81,28,0.0 +20858,47,9.5,14,0.0 +20858,12,38,20,0.0 +20858,73,15,1,0.0 +20858,66,17,45,0.0 +20858,67,14,39,0.0 +20858,52,7,25,0.0 +20858,55,24,31,0.0 +20858,49,20,1,0.0 +20858,37,26,31,0.0 +20858,2,19,43,0.0 +20858,75,7.75,28,0.0 +20858,57,19.5,18,0.0 +20858,16,17.45,34,0.0 +20858,45,9.5,6,0.0 +20858,76,18,28,0.0 +20858,25,14,11,0.0 +20858,22,21,3,0.0 +20858,13,6,4,0.0 +20858,15,15.5,40,0.0 +20858,68,12.5,50,0.0 +20858,51,53,44,0.0 +20858,24,4.5,35,0.0 +20858,7,30,13,0.0 +20858,11,21,27,0.0 +20858,59,55,9,0.0 +20858,6,25,14,0.0 +20858,40,18.4,46,0.0 +20858,48,12.75,37,0.0 +20858,10,31,32,0.0 +20858,56,38,4,0.0 +20858,19,9.2,20,0.0 +20858,34,14,5,0.0 +20858,60,34,11,0.0 +20858,1,18,15,0.0 +20858,38,263.5,13,0.0 +20858,31,12.5,41,0.0 +20858,69,36,10,0.0 +20858,35,18,46,0.0 +20858,9,97,23,0.0 +20858,74,10,30,0.0 +20858,30,25.89,16,0.0 +20858,72,34.8,17,0.0 +20858,41,9.65,22,0.0 +20858,77,13,19,0.0 +20858,14,23.25,39,0.0 +20858,53,32.8,26,0.0 +20858,23,9,23,0.0 +20858,64,33.25,48,0.0 +20858,54,7.45,15,0.0 +20858,50,16.25,19,0.0 +20858,39,18,28,0.0 +20858,62,49.3,7,0.0 +20858,3,10,21,0.0 +20858,32,32,14,0.0 +20858,33,2.5,2,0.0 +20858,4,22,18,0.0 +20858,46,12,15,0.0 +20858,29,123.79,48,0.0 +20858,27,43.9,19,0.0 +20858,5,21.35,3,0.0 +20858,18,62.5,7,0.0 +20858,63,43.9,8,0.0 +20858,43,46,20,0.0 +20858,65,21.05,41,0.0 +20858,70,15,7,0.0 +20858,8,40,1,0.0 +20858,42,14,2,0.0 +20858,44,19.45,19,0.0 +20858,26,31.23,5,0.0 +20858,61,28.5,25,0.0 +20858,36,19,20,0.0 +20858,28,45.6,6,0.0 +20858,17,39,29,0.0 +20858,21,10,13,0.0 +20858,58,13.25,3,0.0 +20858,71,21.5,8,0.0 +20859,65,21.05,26,0.0 +20859,40,18.4,1,0.0 +20859,4,22,25,0.0 +20859,9,97,19,0.0 +20859,50,16.25,40,0.0 +20859,57,19.5,2,0.0 +20859,42,14,32,0.0 +20859,38,263.5,46,0.0 +20859,53,32.8,14,0.0 +20859,43,46,29,0.0 +20859,71,21.5,41,0.0 +20859,72,34.8,28,0.0 +20859,74,10,26,0.0 +20859,10,31,48,0.0 +20859,12,38,6,0.0 +20859,55,24,36,0.0 +20859,73,15,19,0.0 +20859,24,4.5,2,0.0 +20859,67,14,20,0.0 +20859,27,43.9,36,0.0 +20859,54,7.45,50,0.0 +20859,76,18,12,0.0 +20859,60,34,27,0.0 +20859,36,19,25,0.0 +20859,25,14,39,0.0 +20859,19,9.2,16,0.0 +20859,17,39,30,0.0 +20859,47,9.5,29,0.0 +20859,32,32,12,0.0 +20859,7,30,31,0.0 +20859,51,53,4,0.0 +20859,77,13,28,0.0 +20859,70,15,19,0.0 +20859,64,33.25,36,0.0 +20859,26,31.23,15,0.0 +20859,31,12.5,2,0.0 +20860,71,21.5,5,0.0 +20860,67,14,34,0.0 +20860,60,34,12,0.0 +20860,11,21,27,0.0 +20860,29,123.79,3,0.0 +20860,42,14,31,0.0 +20860,52,7,36,0.0 +20860,58,13.25,12,0.0 +20860,76,18,47,0.0 +20860,25,14,8,0.0 +20860,36,19,9,0.0 +20860,18,62.5,45,0.0 +20860,3,10,14,0.0 +20860,33,2.5,9,0.0 +20860,10,31,26,0.0 +20860,48,12.75,47,0.0 +20860,66,17,43,0.0 +20860,38,263.5,11,0.0 +20860,4,22,18,0.0 +20860,56,38,26,0.0 +20860,46,12,6,0.0 +20860,64,33.25,46,0.0 +20860,37,26,31,0.0 +20860,49,20,12,0.0 +20860,59,55,47,0.0 +20860,23,9,46,0.0 +20860,9,97,45,0.0 +20860,12,38,39,0.0 +20860,68,12.5,30,0.0 +20860,24,4.5,28,0.0 +20860,61,28.5,8,0.0 +20860,43,46,32,0.0 +20860,57,19.5,47,0.0 +20860,20,81,13,0.0 +20861,33,2.5,13,0.0 +20861,55,24,40,0.0 +20861,12,38,47,0.0 +20861,35,18,9,0.0 +20861,51,53,40,0.0 +20861,30,25.89,6,0.0 +20861,21,10,9,0.0 +20861,72,34.8,33,0.0 +20861,28,45.6,34,0.0 +20861,25,14,6,0.0 +20861,41,9.65,38,0.0 +20861,44,19.45,15,0.0 +20861,53,32.8,2,0.0 +20861,23,9,30,0.0 +20861,43,46,2,0.0 +20861,39,18,30,0.0 +20861,27,43.9,29,0.0 +20861,20,81,5,0.0 +20861,66,17,45,0.0 +20861,37,26,32,0.0 +20861,40,18.4,50,0.0 +20861,17,39,38,0.0 +20861,8,40,41,0.0 +20861,60,34,19,0.0 +20861,4,22,21,0.0 +20861,15,15.5,35,0.0 +20861,7,30,20,0.0 +20861,13,6,19,0.0 +20861,68,12.5,23,0.0 +20861,11,21,3,0.0 +20861,3,10,35,0.0 +20861,65,21.05,3,0.0 +20861,49,20,20,0.0 +20861,14,23.25,44,0.0 +20861,56,38,3,0.0 +20861,52,7,15,0.0 +20861,50,16.25,12,0.0 +20861,70,15,6,0.0 +20861,61,28.5,22,0.0 +20861,6,25,19,0.0 +20861,24,4.5,15,0.0 +20861,62,49.3,7,0.0 +20861,59,55,46,0.0 +20861,46,12,50,0.0 +20861,22,21,4,0.0 +20861,34,14,23,0.0 +20861,31,12.5,39,0.0 +20861,54,7.45,27,0.0 +20861,48,12.75,29,0.0 +20861,42,14,24,0.0 +20861,26,31.23,33,0.0 +20861,69,36,39,0.0 +20861,71,21.5,30,0.0 +20861,57,19.5,24,0.0 +20861,32,32,4,0.0 +20861,5,21.35,11,0.0 +20861,45,9.5,31,0.0 +20861,64,33.25,42,0.0 +20861,73,15,26,0.0 +20861,9,97,41,0.0 +20861,18,62.5,35,0.0 +20861,2,19,8,0.0 +20861,38,263.5,15,0.0 +20861,47,9.5,11,0.0 +20861,1,18,41,0.0 +20861,75,7.75,40,0.0 +20861,10,31,30,0.0 +20861,19,9.2,3,0.0 +20861,67,14,42,0.0 +20861,74,10,2,0.0 +20862,37,26,27,0.0 +20862,38,263.5,12,0.0 +20862,11,21,42,0.0 +20862,19,9.2,30,0.0 +20862,47,9.5,39,0.0 +20862,45,9.5,23,0.0 +20862,36,19,30,0.0 +20862,65,21.05,30,0.0 +20862,32,32,36,0.0 +20862,59,55,21,0.0 +20862,73,15,23,0.0 +20862,72,34.8,35,0.0 +20862,10,31,44,0.0 +20862,57,19.5,3,0.0 +20862,29,123.79,17,0.0 +20862,1,18,16,0.0 +20862,6,25,39,0.0 +20862,43,46,35,0.0 +20862,26,31.23,48,0.0 +20862,35,18,30,0.0 +20862,61,28.5,4,0.0 +20862,46,12,17,0.0 +20862,33,2.5,8,0.0 +20862,74,10,22,0.0 +20863,51,53,4,0.0 +20863,25,14,23,0.0 +20863,29,123.79,31,0.0 +20863,68,12.5,19,0.0 +20863,49,20,25,0.0 +20863,18,62.5,22,0.0 +20863,1,18,9,0.0 +20863,30,25.89,13,0.0 +20863,70,15,19,0.0 +20863,37,26,31,0.0 +20863,26,31.23,31,0.0 +20863,62,49.3,44,0.0 +20863,50,16.25,23,0.0 +20863,76,18,3,0.0 +20863,69,36,7,0.0 +20863,61,28.5,2,0.0 +20863,34,14,20,0.0 +20863,9,97,14,0.0 +20863,39,18,49,0.0 +20863,31,12.5,14,0.0 +20863,11,21,49,0.0 +20863,32,32,25,0.0 +20863,16,17.45,34,0.0 +20863,7,30,28,0.0 +20863,47,9.5,38,0.0 +20863,28,45.6,31,0.0 +20863,46,12,17,0.0 +20863,6,25,20,0.0 +20863,56,38,14,0.0 +20863,67,14,23,0.0 +20863,36,19,42,0.0 +20863,5,21.35,11,0.0 +20863,71,21.5,28,0.0 +20863,41,9.65,7,0.0 +20863,58,13.25,33,0.0 +20863,35,18,7,0.0 +20863,66,17,26,0.0 +20863,64,33.25,14,0.0 +20863,27,43.9,14,0.0 +20863,13,6,49,0.0 +20863,10,31,21,0.0 +20863,48,12.75,31,0.0 +20863,53,32.8,39,0.0 +20863,12,38,4,0.0 +20863,57,19.5,17,0.0 +20863,75,7.75,14,0.0 +20863,74,10,46,0.0 +20863,22,21,14,0.0 +20863,14,23.25,28,0.0 +20863,40,18.4,25,0.0 +20863,44,19.45,23,0.0 +20863,4,22,43,0.0 +20863,23,9,46,0.0 +20863,72,34.8,21,0.0 +20863,21,10,34,0.0 +20863,45,9.5,1,0.0 +20863,60,34,39,0.0 +20863,38,263.5,44,0.0 +20863,65,21.05,6,0.0 +20863,17,39,17,0.0 +20863,77,13,12,0.0 +20863,42,14,49,0.0 +20863,24,4.5,42,0.0 +20863,8,40,10,0.0 +20863,43,46,35,0.0 +20863,55,24,34,0.0 +20863,15,15.5,20,0.0 +20863,3,10,32,0.0 +20864,54,7.45,28,0.0 +20864,18,62.5,36,0.0 +20864,55,24,15,0.0 +20864,4,22,20,0.0 +20864,52,7,20,0.0 +20864,47,9.5,20,0.0 +20864,32,32,19,0.0 +20864,44,19.45,42,0.0 +20864,51,53,14,0.0 +20864,20,81,38,0.0 +20864,64,33.25,2,0.0 +20864,42,14,42,0.0 +20864,22,21,27,0.0 +20864,35,18,34,0.0 +20864,46,12,14,0.0 +20864,60,34,24,0.0 +20864,26,31.23,41,0.0 +20864,37,26,2,0.0 +20864,16,17.45,28,0.0 +20864,1,18,13,0.0 +20864,57,19.5,43,0.0 +20865,44,19.45,45,0.0 +20865,23,9,24,0.0 +20865,46,12,22,0.0 +20865,60,34,15,0.0 +20865,1,18,1,0.0 +20865,59,55,30,0.0 +20865,70,15,48,0.0 +20865,63,43.9,23,0.0 +20865,18,62.5,2,0.0 +20865,25,14,45,0.0 +20865,57,19.5,16,0.0 +20866,63,43.9,41,0.0 +20866,66,17,27,0.0 +20866,45,9.5,46,0.0 +20866,75,7.75,35,0.0 +20866,69,36,36,0.0 +20866,51,53,7,0.0 +20866,38,263.5,2,0.0 +20866,48,12.75,36,0.0 +20866,60,34,15,0.0 +20866,7,30,50,0.0 +20866,64,33.25,23,0.0 +20866,53,32.8,34,0.0 +20866,24,4.5,3,0.0 +20866,17,39,14,0.0 +20866,15,15.5,36,0.0 +20866,32,32,28,0.0 +20866,6,25,50,0.0 +20866,71,21.5,23,0.0 +20866,61,28.5,5,0.0 +20866,42,14,31,0.0 +20866,74,10,1,0.0 +20866,35,18,32,0.0 +20866,5,21.35,44,0.0 +20866,57,19.5,14,0.0 +20866,44,19.45,15,0.0 +20866,65,21.05,27,0.0 +20866,22,21,11,0.0 +20866,36,19,31,0.0 +20866,28,45.6,19,0.0 +20866,14,23.25,45,0.0 +20866,68,12.5,50,0.0 +20866,18,62.5,2,0.0 +20866,25,14,6,0.0 +20866,33,2.5,29,0.0 +20866,21,10,43,0.0 +20866,34,14,49,0.0 +20866,23,9,33,0.0 +20866,76,18,27,0.0 +20866,10,31,37,0.0 +20866,40,18.4,11,0.0 +20866,58,13.25,45,0.0 +20866,4,22,6,0.0 +20866,19,9.2,10,0.0 +20866,9,97,3,0.0 +20867,44,19.45,48,0.0 +20867,20,81,31,0.0 +20867,70,15,33,0.0 +20867,51,53,31,0.0 +20867,71,21.5,41,0.0 +20867,38,263.5,18,0.0 +20867,12,38,50,0.0 +20867,1,18,33,0.0 +20867,30,25.89,19,0.0 +20867,22,21,33,0.0 +20867,40,18.4,4,0.0 +20867,7,30,4,0.0 +20867,77,13,12,0.0 +20867,11,21,37,0.0 +20867,18,62.5,49,0.0 +20867,72,34.8,12,0.0 +20867,43,46,48,0.0 +20867,76,18,13,0.0 +20867,67,14,21,0.0 +20867,27,43.9,39,0.0 +20867,60,34,3,0.0 +20867,66,17,36,0.0 +20867,23,9,40,0.0 +20867,39,18,50,0.0 +20867,69,36,19,0.0 +20867,47,9.5,8,0.0 +20867,55,24,48,0.0 +20867,50,16.25,25,0.0 +20867,24,4.5,47,0.0 +20867,45,9.5,13,0.0 +20867,59,55,33,0.0 +20867,21,10,18,0.0 +20867,8,40,30,0.0 +20867,46,12,48,0.0 +20867,10,31,47,0.0 +20867,29,123.79,5,0.0 +20867,36,19,22,0.0 +20867,33,2.5,48,0.0 +20867,57,19.5,26,0.0 +20868,69,36,14,0.0 +20868,25,14,13,0.0 +20868,2,19,50,0.0 +20868,21,10,16,0.0 +20868,1,18,23,0.0 +20868,26,31.23,44,0.0 +20868,7,30,39,0.0 +20868,14,23.25,20,0.0 +20868,66,17,29,0.0 +20868,41,9.65,9,0.0 +20868,70,15,15,0.0 +20868,11,21,42,0.0 +20868,53,32.8,16,0.0 +20868,64,33.25,2,0.0 +20868,13,6,46,0.0 +20868,23,9,14,0.0 +20868,12,38,17,0.0 +20868,35,18,42,0.0 +20868,47,9.5,40,0.0 +20868,60,34,34,0.0 +20868,18,62.5,41,0.0 +20868,46,12,20,0.0 +20868,8,40,28,0.0 +20868,67,14,42,0.0 +20868,6,25,38,0.0 +20868,49,20,16,0.0 +20868,56,38,35,0.0 +20868,33,2.5,40,0.0 +20868,76,18,42,0.0 +20868,48,12.75,25,0.0 +20868,16,17.45,41,0.0 +20868,72,34.8,23,0.0 +20868,54,7.45,19,0.0 +20868,34,14,49,0.0 +20868,40,18.4,36,0.0 +20868,15,15.5,46,0.0 +20868,28,45.6,28,0.0 +20868,75,7.75,18,0.0 +20868,5,21.35,31,0.0 +20868,36,19,15,0.0 +20868,39,18,28,0.0 +20868,24,4.5,12,0.0 +20868,32,32,41,0.0 +20868,17,39,7,0.0 +20868,37,26,43,0.0 +20868,10,31,49,0.0 +20868,22,21,44,0.0 +20868,63,43.9,35,0.0 +20868,55,24,5,0.0 +20868,50,16.25,41,0.0 +20868,58,13.25,44,0.0 +20868,73,15,4,0.0 +20868,74,10,30,0.0 +20868,71,21.5,3,0.0 +20868,38,263.5,47,0.0 +20868,42,14,44,0.0 +20868,62,49.3,34,0.0 +20868,19,9.2,9,0.0 +20868,9,97,50,0.0 +20868,68,12.5,26,0.0 +20868,45,9.5,3,0.0 +20868,51,53,47,0.0 +20868,20,81,11,0.0 +20868,29,123.79,48,0.0 +20868,52,7,49,0.0 +20868,61,28.5,30,0.0 +20868,59,55,10,0.0 +20868,4,22,36,0.0 +20869,40,18.4,40,0.0 +20869,10,31,20,0.0 +20869,23,9,18,0.0 +20869,73,15,22,0.0 +20869,65,21.05,14,0.0 +20869,69,36,12,0.0 +20869,4,22,4,0.0 +20869,5,21.35,38,0.0 +20869,28,45.6,19,0.0 +20869,68,12.5,45,0.0 +20869,49,20,3,0.0 +20869,60,34,32,0.0 +20869,29,123.79,3,0.0 +20869,7,30,39,0.0 +20869,74,10,21,0.0 +20869,36,19,25,0.0 +20869,26,31.23,50,0.0 +20869,67,14,9,0.0 +20869,22,21,39,0.0 +20869,72,34.8,39,0.0 +20869,21,10,5,0.0 +20869,55,24,31,0.0 +20869,70,15,31,0.0 +20869,58,13.25,7,0.0 +20869,17,39,1,0.0 +20870,41,9.65,46,0.0 +20870,45,9.5,11,0.0 +20870,20,81,25,0.0 +20870,28,45.6,41,0.0 +20870,57,19.5,33,0.0 +20870,58,13.25,32,0.0 +20870,69,36,3,0.0 +20870,62,49.3,9,0.0 +20870,7,30,32,0.0 +20870,2,19,8,0.0 +20870,5,21.35,14,0.0 +20870,51,53,20,0.0 +20870,67,14,16,0.0 +20870,31,12.5,18,0.0 +20870,6,25,48,0.0 +20870,22,21,20,0.0 +20870,71,21.5,1,0.0 +20870,63,43.9,36,0.0 +20870,55,24,13,0.0 +20870,76,18,35,0.0 +20870,68,12.5,35,0.0 +20870,19,9.2,1,0.0 +20870,15,15.5,3,0.0 +20870,40,18.4,9,0.0 +20870,54,7.45,32,0.0 +20870,44,19.45,22,0.0 +20870,35,18,29,0.0 +20870,43,46,15,0.0 +20870,26,31.23,25,0.0 +20870,56,38,3,0.0 +20870,1,18,4,0.0 +20870,36,19,16,0.0 +20870,59,55,7,0.0 +20870,30,25.89,14,0.0 +20870,33,2.5,28,0.0 +20870,46,12,50,0.0 +20870,77,13,22,0.0 +20870,37,26,23,0.0 +20870,32,32,16,0.0 +20870,60,34,37,0.0 +20870,18,62.5,40,0.0 +20870,38,263.5,42,0.0 +20870,72,34.8,23,0.0 +20870,42,14,2,0.0 +20870,13,6,47,0.0 +20870,50,16.25,34,0.0 +20870,14,23.25,15,0.0 +20870,17,39,50,0.0 +20870,61,28.5,39,0.0 +20870,75,7.75,24,0.0 +20870,21,10,45,0.0 +20870,24,4.5,21,0.0 +20870,39,18,3,0.0 +20870,12,38,23,0.0 +20870,25,14,20,0.0 +20870,29,123.79,46,0.0 +20870,3,10,5,0.0 +20870,8,40,13,0.0 +20870,16,17.45,16,0.0 +20870,27,43.9,27,0.0 +20870,23,9,48,0.0 +20870,74,10,48,0.0 +20871,17,39,24,0.0 +20871,63,43.9,4,0.0 +20871,19,9.2,16,0.0 +20871,75,7.75,23,0.0 +20871,74,10,45,0.0 +20871,13,6,14,0.0 +20871,48,12.75,44,0.0 +20871,52,7,37,0.0 +20871,43,46,38,0.0 +20871,25,14,36,0.0 +20871,9,97,22,0.0 +20871,4,22,46,0.0 +20871,7,30,30,0.0 +20871,44,19.45,21,0.0 +20871,62,49.3,11,0.0 +20871,39,18,43,0.0 +20871,55,24,20,0.0 +20871,56,38,44,0.0 +20871,77,13,49,0.0 +20871,26,31.23,33,0.0 +20871,61,28.5,26,0.0 +20871,57,19.5,47,0.0 +20871,59,55,15,0.0 +20871,58,13.25,32,0.0 +20871,10,31,46,0.0 +20871,65,21.05,12,0.0 +20871,64,33.25,38,0.0 +20871,30,25.89,12,0.0 +20871,73,15,3,0.0 +20871,2,19,25,0.0 +20871,29,123.79,17,0.0 +20871,6,25,5,0.0 +20871,67,14,10,0.0 +20871,66,17,38,0.0 +20871,51,53,20,0.0 +20871,36,19,45,0.0 +20871,32,32,50,0.0 +20871,27,43.9,13,0.0 +20871,34,14,18,0.0 +20871,50,16.25,27,0.0 +20871,15,15.5,2,0.0 +20871,28,45.6,29,0.0 +20871,60,34,49,0.0 +20871,68,12.5,10,0.0 +20871,23,9,8,0.0 +20871,72,34.8,7,0.0 +20871,12,38,3,0.0 +20871,40,18.4,38,0.0 +20871,24,4.5,11,0.0 +20871,33,2.5,48,0.0 +20871,35,18,45,0.0 +20871,70,15,47,0.0 +20871,53,32.8,7,0.0 +20871,3,10,36,0.0 +20871,46,12,15,0.0 +20871,54,7.45,46,0.0 +20871,18,62.5,41,0.0 +20871,8,40,10,0.0 +20871,76,18,23,0.0 +20871,45,9.5,46,0.0 +20871,21,10,46,0.0 +20871,41,9.65,5,0.0 +20871,31,12.5,48,0.0 +20872,72,34.8,4,0.0 +20872,73,15,1,0.0 +20872,33,2.5,31,0.0 +20873,21,10,36,0.0 +20873,42,14,28,0.0 +20873,40,18.4,33,0.0 +20873,1,18,3,0.0 +20873,68,12.5,38,0.0 +20873,62,49.3,34,0.0 +20873,73,15,29,0.0 +20873,61,28.5,40,0.0 +20873,58,13.25,10,0.0 +20873,53,32.8,43,0.0 +20873,59,55,9,0.0 +20873,72,34.8,47,0.0 +20873,18,62.5,23,0.0 +20873,33,2.5,34,0.0 +20873,74,10,4,0.0 +20873,12,38,46,0.0 +20873,57,19.5,37,0.0 +20873,10,31,7,0.0 +20873,70,15,16,0.0 +20873,63,43.9,8,0.0 +20873,31,12.5,28,0.0 +20873,25,14,28,0.0 +20873,51,53,44,0.0 +20873,48,12.75,20,0.0 +20874,13,6,13,0.0 +20874,20,81,10,0.0 +20874,58,13.25,6,0.0 +20874,3,10,49,0.0 +20874,57,19.5,18,0.0 +20874,38,263.5,40,0.0 +20874,41,9.65,46,0.0 +20874,11,21,35,0.0 +20874,33,2.5,42,0.0 +20874,65,21.05,5,0.0 +20874,60,34,47,0.0 +20874,22,21,1,0.0 +20874,37,26,42,0.0 +20874,12,38,42,0.0 +20874,73,15,6,0.0 +20874,72,34.8,39,0.0 +20874,15,15.5,23,0.0 +20874,77,13,47,0.0 +20874,51,53,10,0.0 +20874,40,18.4,23,0.0 +20874,27,43.9,2,0.0 +20874,43,46,33,0.0 +20874,52,7,33,0.0 +20874,7,30,18,0.0 +20874,75,7.75,9,0.0 +20874,48,12.75,1,0.0 +20874,42,14,20,0.0 +20874,6,25,40,0.0 +20874,74,10,6,0.0 +20874,17,39,45,0.0 +20874,64,33.25,22,0.0 +20874,16,17.45,24,0.0 +20874,35,18,43,0.0 +20874,68,12.5,14,0.0 +20874,1,18,11,0.0 +20874,76,18,13,0.0 +20874,26,31.23,42,0.0 +20874,8,40,31,0.0 +20874,47,9.5,2,0.0 +20874,21,10,49,0.0 +20874,10,31,1,0.0 +20874,30,25.89,28,0.0 +20874,53,32.8,22,0.0 +20874,18,62.5,20,0.0 +20874,66,17,6,0.0 +20874,55,24,17,0.0 +20874,59,55,35,0.0 +20874,69,36,50,0.0 +20874,46,12,2,0.0 +20874,63,43.9,22,0.0 +20874,34,14,23,0.0 +20874,31,12.5,17,0.0 +20874,9,97,37,0.0 +20874,36,19,33,0.0 +20874,49,20,1,0.0 +20874,56,38,13,0.0 +20874,5,21.35,34,0.0 +20874,44,19.45,5,0.0 +20874,50,16.25,25,0.0 +20874,14,23.25,47,0.0 +20874,71,21.5,6,0.0 +20874,23,9,23,0.0 +20874,61,28.5,28,0.0 +20874,19,9.2,19,0.0 +20874,25,14,34,0.0 +20874,24,4.5,30,0.0 +20874,70,15,8,0.0 +20874,39,18,35,0.0 +20874,54,7.45,3,0.0 +20874,67,14,27,0.0 +20874,29,123.79,28,0.0 +20874,62,49.3,45,0.0 +20874,2,19,25,0.0 +20874,45,9.5,2,0.0 +20874,28,45.6,18,0.0 +20875,28,45.6,17,0.0 +20875,75,7.75,6,0.0 +20875,77,13,27,0.0 +20875,39,18,29,0.0 +20875,13,6,18,0.0 +20875,8,40,39,0.0 +20875,25,14,50,0.0 +20875,21,10,12,0.0 +20875,27,43.9,7,0.0 +20875,72,34.8,4,0.0 +20875,49,20,37,0.0 +20875,64,33.25,26,0.0 +20875,60,34,18,0.0 +20875,26,31.23,46,0.0 +20875,34,14,42,0.0 +20875,15,15.5,37,0.0 +20875,3,10,48,0.0 +20875,5,21.35,2,0.0 +20875,50,16.25,47,0.0 +20875,63,43.9,6,0.0 +20875,23,9,1,0.0 +20876,26,31.23,24,0.0 +20876,64,33.25,1,0.0 +20876,19,9.2,39,0.0 +20876,56,38,37,0.0 +20876,10,31,5,0.0 +20876,6,25,44,0.0 +20876,76,18,25,0.0 +20876,41,9.65,23,0.0 +20876,47,9.5,42,0.0 +20876,38,263.5,2,0.0 +20876,13,6,5,0.0 +20876,14,23.25,2,0.0 +20876,29,123.79,50,0.0 +20876,40,18.4,2,0.0 +20876,42,14,1,0.0 +20876,5,21.35,22,0.0 +20876,65,21.05,41,0.0 +20876,70,15,7,0.0 +20876,73,15,28,0.0 +20876,57,19.5,26,0.0 +20876,2,19,8,0.0 +20876,21,10,5,0.0 +20876,1,18,15,0.0 +20876,30,25.89,38,0.0 +20876,61,28.5,27,0.0 +20876,7,30,46,0.0 +20876,16,17.45,50,0.0 +20876,74,10,24,0.0 +20876,68,12.5,8,0.0 +20876,33,2.5,40,0.0 +20876,23,9,43,0.0 +20876,12,38,12,0.0 +20876,3,10,22,0.0 +20876,28,45.6,18,0.0 +20876,27,43.9,30,0.0 +20876,44,19.45,17,0.0 +20876,59,55,44,0.0 +20876,53,32.8,47,0.0 +20876,55,24,30,0.0 +20876,54,7.45,19,0.0 +20876,24,4.5,27,0.0 +20876,8,40,7,0.0 +20876,22,21,19,0.0 +20876,50,16.25,38,0.0 +20876,58,13.25,29,0.0 +20876,15,15.5,39,0.0 +20876,25,14,27,0.0 +20876,62,49.3,50,0.0 +20876,46,12,1,0.0 +20876,60,34,40,0.0 +20876,35,18,24,0.0 +20876,31,12.5,14,0.0 +20876,49,20,33,0.0 +20876,51,53,46,0.0 +20876,4,22,8,0.0 +20876,77,13,18,0.0 +20876,48,12.75,15,0.0 +20876,9,97,4,0.0 +20876,11,21,49,0.0 +20876,63,43.9,28,0.0 +20876,69,36,2,0.0 +20876,67,14,20,0.0 +20876,52,7,16,0.0 +20876,43,46,49,0.0 +20876,20,81,39,0.0 +20876,34,14,19,0.0 +20876,66,17,22,0.0 +20876,72,34.8,42,0.0 +20876,37,26,2,0.0 +20876,39,18,23,0.0 +20876,71,21.5,27,0.0 +20876,36,19,6,0.0 +20876,32,32,5,0.0 +20876,17,39,28,0.0 +20876,45,9.5,20,0.0 +20876,75,7.75,22,0.0 +20877,70,15,43,0.0 +20877,52,7,41,0.0 +20877,75,7.75,37,0.0 +20877,1,18,33,0.0 +20877,27,43.9,50,0.0 +20877,15,15.5,42,0.0 +20877,45,9.5,24,0.0 +20877,58,13.25,16,0.0 +20877,34,14,5,0.0 +20877,39,18,24,0.0 +20877,29,123.79,32,0.0 +20877,7,30,8,0.0 +20877,35,18,3,0.0 +20877,14,23.25,28,0.0 +20877,74,10,30,0.0 +20877,30,25.89,1,0.0 +20877,16,17.45,17,0.0 +20877,69,36,10,0.0 +20877,72,34.8,21,0.0 +20877,2,19,48,0.0 +20877,18,62.5,33,0.0 +20877,38,263.5,44,0.0 +20877,41,9.65,20,0.0 +20877,26,31.23,26,0.0 +20877,21,10,10,0.0 +20877,9,97,46,0.0 +20877,10,31,27,0.0 +20877,23,9,50,0.0 +20877,33,2.5,27,0.0 +20877,40,18.4,10,0.0 +20877,28,45.6,48,0.0 +20877,64,33.25,5,0.0 +20877,36,19,21,0.0 +20878,55,24,32,0.0 +20878,4,22,40,0.0 +20878,76,18,12,0.0 +20878,10,31,2,0.0 +20878,70,15,17,0.0 +20878,48,12.75,27,0.0 +20878,17,39,20,0.0 +20878,29,123.79,8,0.0 +20878,39,18,20,0.0 +20878,30,25.89,39,0.0 +20878,41,9.65,2,0.0 +20878,33,2.5,38,0.0 +20878,36,19,46,0.0 +20878,13,6,16,0.0 +20878,3,10,50,0.0 +20878,38,263.5,43,0.0 +20878,58,13.25,35,0.0 +20878,63,43.9,4,0.0 +20878,2,19,2,0.0 +20878,71,21.5,29,0.0 +20878,9,97,12,0.0 +20878,68,12.5,43,0.0 +20878,37,26,19,0.0 +20878,49,20,21,0.0 +20878,43,46,1,0.0 +20878,19,9.2,29,0.0 +20878,27,43.9,9,0.0 +20878,42,14,5,0.0 +20878,11,21,28,0.0 +20878,73,15,50,0.0 +20878,47,9.5,19,0.0 +20878,59,55,33,0.0 +20878,18,62.5,29,0.0 +20878,74,10,28,0.0 +20878,6,25,13,0.0 +20878,46,12,33,0.0 +20878,54,7.45,44,0.0 +20878,67,14,42,0.0 +20878,75,7.75,22,0.0 +20878,34,14,26,0.0 +20878,65,21.05,14,0.0 +20878,45,9.5,21,0.0 +20878,25,14,36,0.0 +20878,1,18,1,0.0 +20878,56,38,41,0.0 +20878,20,81,27,0.0 +20878,14,23.25,27,0.0 +20878,28,45.6,33,0.0 +20878,52,7,14,0.0 +20879,2,19,45,0.0 +20879,49,20,42,0.0 +20879,14,23.25,31,0.0 +20879,5,21.35,38,0.0 +20879,74,10,41,0.0 +20879,13,6,47,0.0 +20879,3,10,19,0.0 +20879,73,15,29,0.0 +20879,9,97,39,0.0 +20879,19,9.2,42,0.0 +20879,23,9,10,0.0 +20879,29,123.79,34,0.0 +20879,41,9.65,30,0.0 +20879,47,9.5,26,0.0 +20879,48,12.75,47,0.0 +20879,8,40,39,0.0 +20879,6,25,34,0.0 +20879,75,7.75,24,0.0 +20879,72,34.8,40,0.0 +20879,38,263.5,1,0.0 +20879,28,45.6,15,0.0 +20879,77,13,10,0.0 +20879,31,12.5,32,0.0 +20879,67,14,18,0.0 +20879,4,22,7,0.0 +20879,36,19,29,0.0 +20879,39,18,22,0.0 +20879,66,17,19,0.0 +20879,32,32,46,0.0 +20879,54,7.45,28,0.0 +20879,58,13.25,27,0.0 +20879,70,15,11,0.0 +20879,68,12.5,29,0.0 +20879,64,33.25,37,0.0 +20879,25,14,20,0.0 +20879,76,18,15,0.0 +20879,33,2.5,44,0.0 +20879,27,43.9,49,0.0 +20879,7,30,45,0.0 +20879,35,18,25,0.0 +20879,11,21,3,0.0 +20879,20,81,41,0.0 +20879,17,39,21,0.0 +20879,71,21.5,8,0.0 +20880,51,53,31,0.0 +20880,58,13.25,12,0.0 +20880,15,15.5,28,0.0 +20880,74,10,37,0.0 +20880,22,21,16,0.0 +20880,40,18.4,29,0.0 +20880,53,32.8,27,0.0 +20880,18,62.5,45,0.0 +20880,65,21.05,15,0.0 +20880,2,19,17,0.0 +20880,31,12.5,18,0.0 +20880,8,40,9,0.0 +20880,4,22,21,0.0 +20880,62,49.3,34,0.0 +20880,35,18,8,0.0 +20880,67,14,33,0.0 +20880,48,12.75,4,0.0 +20880,70,15,39,0.0 +20880,64,33.25,22,0.0 +20880,66,17,42,0.0 +20880,29,123.79,43,0.0 +20880,26,31.23,7,0.0 +20880,10,31,3,0.0 +20880,56,38,49,0.0 +20880,19,9.2,44,0.0 +20880,33,2.5,47,0.0 +20880,27,43.9,42,0.0 +20880,11,21,35,0.0 +20880,14,23.25,9,0.0 +20880,52,7,21,0.0 +20880,41,9.65,48,0.0 +20880,60,34,49,0.0 +20880,42,14,19,0.0 +20880,63,43.9,29,0.0 +20880,30,25.89,11,0.0 +20880,34,14,33,0.0 +20880,47,9.5,24,0.0 +20880,59,55,19,0.0 +20880,32,32,44,0.0 +20880,75,7.75,12,0.0 +20880,71,21.5,17,0.0 +20880,69,36,29,0.0 +20880,77,13,9,0.0 +20880,37,26,44,0.0 +20880,36,19,27,0.0 +20880,49,20,34,0.0 +20880,24,4.5,20,0.0 +20880,13,6,38,0.0 +20880,6,25,15,0.0 +20880,28,45.6,7,0.0 +20880,73,15,12,0.0 +20880,45,9.5,18,0.0 +20880,46,12,15,0.0 +20880,21,10,15,0.0 +20880,39,18,32,0.0 +20880,61,28.5,38,0.0 +20880,68,12.5,37,0.0 +20880,38,263.5,2,0.0 +20880,43,46,2,0.0 +20880,76,18,39,0.0 +20881,73,15,41,0.0 +20881,42,14,4,0.0 +20881,63,43.9,18,0.0 +20881,9,97,35,0.0 +20881,17,39,18,0.0 +20881,55,24,29,0.0 +20881,11,21,19,0.0 +20881,72,34.8,22,0.0 +20881,27,43.9,34,0.0 +20881,47,9.5,7,0.0 +20881,46,12,23,0.0 +20881,16,17.45,28,0.0 +20881,65,21.05,14,0.0 +20881,19,9.2,1,0.0 +20881,66,17,19,0.0 +20881,48,12.75,31,0.0 +20881,26,31.23,1,0.0 +20881,12,38,19,0.0 +20881,77,13,39,0.0 +20881,14,23.25,48,0.0 +20881,40,18.4,49,0.0 +20881,30,25.89,23,0.0 +20881,21,10,25,0.0 +20881,62,49.3,3,0.0 +20881,49,20,37,0.0 +20881,5,21.35,24,0.0 +20881,50,16.25,37,0.0 +20881,41,9.65,12,0.0 +20881,75,7.75,6,0.0 +20881,31,12.5,47,0.0 +20881,15,15.5,40,0.0 +20881,6,25,16,0.0 +20881,53,32.8,26,0.0 +20881,32,32,50,0.0 +20881,74,10,33,0.0 +20881,24,4.5,27,0.0 +20881,1,18,48,0.0 +20881,34,14,16,0.0 +20881,4,22,47,0.0 +20881,61,28.5,30,0.0 +20881,69,36,15,0.0 +20881,56,38,37,0.0 +20881,29,123.79,31,0.0 +20881,76,18,46,0.0 +20881,3,10,10,0.0 +20881,68,12.5,8,0.0 +20881,2,19,36,0.0 +20881,71,21.5,31,0.0 +20881,23,9,50,0.0 +20881,58,13.25,6,0.0 +20881,13,6,44,0.0 +20881,54,7.45,18,0.0 +20881,67,14,3,0.0 +20881,51,53,29,0.0 +20881,44,19.45,8,0.0 +20881,37,26,12,0.0 +20882,39,18,32,0.0 +20882,61,28.5,46,0.0 +20882,73,15,43,0.0 +20882,44,19.45,5,0.0 +20883,62,49.3,31,0.0 +20883,42,14,29,0.0 +20883,16,17.45,32,0.0 +20883,19,9.2,35,0.0 +20883,51,53,37,0.0 +20883,14,23.25,26,0.0 +20883,73,15,3,0.0 +20883,15,15.5,36,0.0 +20883,27,43.9,50,0.0 +20883,33,2.5,7,0.0 +20883,52,7,25,0.0 +20883,9,97,11,0.0 +20883,6,25,44,0.0 +20883,11,21,9,0.0 +20883,23,9,8,0.0 +20883,32,32,44,0.0 +20883,49,20,11,0.0 +20883,72,34.8,9,0.0 +20883,63,43.9,49,0.0 +20883,17,39,26,0.0 +20883,29,123.79,18,0.0 +20883,53,32.8,35,0.0 +20883,47,9.5,5,0.0 +20883,71,21.5,49,0.0 +20883,10,31,48,0.0 +20883,26,31.23,47,0.0 +20883,60,34,4,0.0 +20883,5,21.35,36,0.0 +20883,46,12,38,0.0 +20883,58,13.25,14,0.0 +20883,55,24,37,0.0 +20883,61,28.5,26,0.0 +20883,68,12.5,8,0.0 +20883,8,40,50,0.0 +20883,12,38,47,0.0 +20883,48,12.75,46,0.0 +20883,66,17,32,0.0 +20883,35,18,5,0.0 +20883,25,14,31,0.0 +20883,13,6,50,0.0 +20883,76,18,45,0.0 +20883,44,19.45,30,0.0 +20883,69,36,33,0.0 +20883,70,15,13,0.0 +20883,41,9.65,23,0.0 +20883,34,14,10,0.0 +20883,75,7.75,36,0.0 +20883,45,9.5,5,0.0 +20883,59,55,22,0.0 +20883,2,19,12,0.0 +20883,54,7.45,50,0.0 +20883,38,263.5,21,0.0 +20883,50,16.25,16,0.0 +20884,52,7,10,0.0 +20884,53,32.8,19,0.0 +20884,70,15,1,0.0 +20884,30,25.89,46,0.0 +20884,26,31.23,4,0.0 +20884,65,21.05,3,0.0 +20884,58,13.25,32,0.0 +20884,5,21.35,34,0.0 +20884,77,13,28,0.0 +20884,10,31,13,0.0 +20884,47,9.5,9,0.0 +20884,69,36,44,0.0 +20884,15,15.5,11,0.0 +20884,62,49.3,24,0.0 +20884,36,19,46,0.0 +20884,71,21.5,39,0.0 +20884,8,40,21,0.0 +20884,7,30,16,0.0 +20884,56,38,2,0.0 +20884,2,19,31,0.0 +20884,42,14,20,0.0 +20884,50,16.25,17,0.0 +20884,72,34.8,3,0.0 +20884,24,4.5,16,0.0 +20884,45,9.5,4,0.0 +20884,9,97,18,0.0 +20884,54,7.45,12,0.0 +20884,1,18,2,0.0 +20884,19,9.2,50,0.0 +20884,31,12.5,43,0.0 +20884,17,39,47,0.0 +20884,75,7.75,6,0.0 +20884,64,33.25,6,0.0 +20884,38,263.5,15,0.0 +20884,43,46,35,0.0 +20884,12,38,25,0.0 +20884,16,17.45,37,0.0 +20884,20,81,7,0.0 +20884,44,19.45,21,0.0 +20884,66,17,27,0.0 +20884,37,26,22,0.0 +20884,34,14,22,0.0 +20884,41,9.65,11,0.0 +20884,23,9,44,0.0 +20884,35,18,21,0.0 +20884,3,10,43,0.0 +20884,60,34,10,0.0 +20884,57,19.5,5,0.0 +20884,55,24,23,0.0 +20884,76,18,7,0.0 +20884,13,6,34,0.0 +20884,74,10,45,0.0 +20884,59,55,10,0.0 +20884,67,14,48,0.0 +20884,6,25,22,0.0 +20884,18,62.5,14,0.0 +20884,4,22,6,0.0 +20884,28,45.6,12,0.0 +20884,39,18,38,0.0 +20884,32,32,19,0.0 +20884,63,43.9,8,0.0 +20884,46,12,39,0.0 +20884,33,2.5,26,0.0 +20884,14,23.25,28,0.0 +20884,40,18.4,29,0.0 +20884,29,123.79,48,0.0 +20884,73,15,29,0.0 +20884,22,21,29,0.0 +20884,61,28.5,45,0.0 +20884,11,21,40,0.0 +20884,21,10,9,0.0 +20884,49,20,1,0.0 +20885,3,10,3,0.0 +20885,60,34,32,0.0 +20885,11,21,6,0.0 +20885,15,15.5,20,0.0 +20885,53,32.8,19,0.0 +20885,35,18,7,0.0 +20885,26,31.23,34,0.0 +20885,62,49.3,43,0.0 +20885,43,46,23,0.0 +20885,17,39,30,0.0 +20885,6,25,17,0.0 +20885,71,21.5,40,0.0 +20885,50,16.25,4,0.0 +20885,77,13,16,0.0 +20885,49,20,15,0.0 +20885,64,33.25,40,0.0 +20885,75,7.75,6,0.0 +20885,38,263.5,21,0.0 +20885,22,21,14,0.0 +20885,54,7.45,12,0.0 +20885,57,19.5,50,0.0 +20885,44,19.45,34,0.0 +20885,14,23.25,41,0.0 +20885,65,21.05,9,0.0 +20885,2,19,11,0.0 +20885,68,12.5,13,0.0 +20885,21,10,37,0.0 +20885,55,24,44,0.0 +20885,56,38,11,0.0 +20885,4,22,29,0.0 +20885,46,12,20,0.0 +20885,18,62.5,12,0.0 +20885,36,19,6,0.0 +20885,41,9.65,31,0.0 +20885,63,43.9,40,0.0 +20885,66,17,21,0.0 +20885,19,9.2,44,0.0 +20885,25,14,7,0.0 +20885,16,17.45,23,0.0 +20885,5,21.35,38,0.0 +20885,33,2.5,49,0.0 +20885,1,18,13,0.0 +20885,29,123.79,48,0.0 +20885,24,4.5,7,0.0 +20885,67,14,39,0.0 +20885,58,13.25,3,0.0 +20885,52,7,46,0.0 +20885,51,53,40,0.0 +20885,74,10,27,0.0 +20885,8,40,17,0.0 +20885,73,15,10,0.0 +20885,27,43.9,31,0.0 +20885,13,6,43,0.0 +20885,59,55,10,0.0 +20885,10,31,2,0.0 +20885,32,32,40,0.0 +20885,69,36,38,0.0 +20885,12,38,48,0.0 +20885,30,25.89,30,0.0 +20885,48,12.75,17,0.0 +20885,45,9.5,16,0.0 +20885,9,97,16,0.0 +20885,76,18,40,0.0 +20885,47,9.5,48,0.0 +20885,70,15,24,0.0 +20885,42,14,5,0.0 +20885,37,26,10,0.0 +20885,72,34.8,48,0.0 +20885,7,30,31,0.0 +20885,23,9,36,0.0 +20885,34,14,25,0.0 +20885,20,81,34,0.0 +20885,31,12.5,4,0.0 +20885,61,28.5,34,0.0 +20885,40,18.4,22,0.0 +20885,39,18,47,0.0 +20885,28,45.6,39,0.0 +20886,1,18,28,0.0 +20886,31,12.5,47,0.0 +20886,32,32,21,0.0 +20886,43,46,3,0.0 +20886,8,40,13,0.0 +20886,19,9.2,11,0.0 +20886,22,21,36,0.0 +20886,17,39,11,0.0 +20886,45,9.5,40,0.0 +20886,50,16.25,22,0.0 +20886,27,43.9,36,0.0 +20886,71,21.5,31,0.0 +20886,4,22,39,0.0 +20886,36,19,22,0.0 +20886,16,17.45,22,0.0 +20886,5,21.35,9,0.0 +20886,11,21,39,0.0 +20886,24,4.5,12,0.0 +20886,14,23.25,23,0.0 +20886,41,9.65,47,0.0 +20886,37,26,7,0.0 +20886,60,34,44,0.0 +20886,62,49.3,41,0.0 +20886,57,19.5,19,0.0 +20886,44,19.45,29,0.0 +20886,73,15,20,0.0 +20886,2,19,33,0.0 +20886,49,20,46,0.0 +20886,54,7.45,15,0.0 +20886,69,36,33,0.0 +20886,68,12.5,34,0.0 +20886,61,28.5,15,0.0 +20886,39,18,32,0.0 +20886,64,33.25,29,0.0 +20886,65,21.05,42,0.0 +20887,28,45.6,10,0.0 +20887,24,4.5,22,0.0 +20887,66,17,43,0.0 +20887,32,32,46,0.0 +20887,40,18.4,5,0.0 +20887,77,13,38,0.0 +20887,7,30,28,0.0 +20887,65,21.05,11,0.0 +20887,4,22,9,0.0 +20887,50,16.25,24,0.0 +20887,26,31.23,16,0.0 +20887,45,9.5,47,0.0 +20887,29,123.79,42,0.0 +20887,27,43.9,43,0.0 +20887,11,21,50,0.0 +20887,42,14,13,0.0 +20887,71,21.5,24,0.0 +20887,6,25,40,0.0 +20887,12,38,26,0.0 +20887,41,9.65,9,0.0 +20887,61,28.5,50,0.0 +20887,72,34.8,30,0.0 +20887,53,32.8,46,0.0 +20887,68,12.5,38,0.0 +20887,43,46,33,0.0 +20887,3,10,44,0.0 +20887,37,26,11,0.0 +20887,34,14,25,0.0 +20887,59,55,1,0.0 +20887,16,17.45,32,0.0 +20887,74,10,40,0.0 +20887,44,19.45,23,0.0 +20887,13,6,21,0.0 +20887,36,19,33,0.0 +20887,56,38,37,0.0 +20887,19,9.2,36,0.0 +20887,51,53,38,0.0 +20887,33,2.5,30,0.0 +20887,15,15.5,31,0.0 +20887,22,21,42,0.0 +20887,48,12.75,34,0.0 +20887,75,7.75,33,0.0 +20887,63,43.9,44,0.0 +20887,31,12.5,14,0.0 +20887,58,13.25,39,0.0 +20887,9,97,45,0.0 +20887,35,18,41,0.0 +20887,47,9.5,28,0.0 +20887,76,18,33,0.0 +20887,17,39,2,0.0 +20887,73,15,23,0.0 +20887,2,19,46,0.0 +20887,39,18,39,0.0 +20887,49,20,25,0.0 +20887,67,14,47,0.0 +20888,20,81,39,0.0 +20888,15,15.5,40,0.0 +20888,41,9.65,14,0.0 +20888,11,21,17,0.0 +20888,36,19,37,0.0 +20888,48,12.75,14,0.0 +20888,68,12.5,50,0.0 +20888,42,14,8,0.0 +20888,47,9.5,20,0.0 +20888,3,10,44,0.0 +20888,27,43.9,23,0.0 +20888,25,14,37,0.0 +20888,9,97,35,0.0 +20889,11,21,50,0.0 +20889,5,21.35,31,0.0 +20889,57,19.5,50,0.0 +20889,77,13,10,0.0 +20889,68,12.5,28,0.0 +20890,30,25.89,9,0.0 +20890,49,20,4,0.0 +20890,42,14,45,0.0 +20890,71,21.5,25,0.0 +20890,43,46,4,0.0 +20890,23,9,16,0.0 +20890,76,18,24,0.0 +20890,44,19.45,25,0.0 +20890,21,10,17,0.0 +20890,41,9.65,32,0.0 +20890,9,97,20,0.0 +20890,7,30,28,0.0 +20890,25,14,32,0.0 +20890,70,15,18,0.0 +20890,34,14,1,0.0 +20890,1,18,41,0.0 +20890,27,43.9,1,0.0 +20890,6,25,41,0.0 +20890,57,19.5,32,0.0 +20890,26,31.23,27,0.0 +20890,32,32,20,0.0 +20890,54,7.45,32,0.0 +20890,58,13.25,15,0.0 +20890,46,12,47,0.0 +20890,77,13,32,0.0 +20890,73,15,16,0.0 +20890,29,123.79,50,0.0 +20890,50,16.25,49,0.0 +20890,52,7,29,0.0 +20890,63,43.9,29,0.0 +20890,14,23.25,2,0.0 +20890,31,12.5,19,0.0 +20890,51,53,23,0.0 +20890,12,38,35,0.0 +20890,59,55,24,0.0 +20890,33,2.5,26,0.0 +20890,48,12.75,36,0.0 +20890,15,15.5,43,0.0 +20890,24,4.5,14,0.0 +20890,67,14,8,0.0 +20890,45,9.5,22,0.0 +20890,10,31,5,0.0 +20890,65,21.05,45,0.0 +20890,8,40,50,0.0 +20890,11,21,25,0.0 +20890,69,36,14,0.0 +20890,39,18,3,0.0 +20890,2,19,22,0.0 +20890,62,49.3,30,0.0 +20890,61,28.5,17,0.0 +20890,5,21.35,2,0.0 +20890,53,32.8,28,0.0 +20890,38,263.5,39,0.0 +20890,75,7.75,28,0.0 +20890,20,81,20,0.0 +20890,64,33.25,43,0.0 +20890,16,17.45,6,0.0 +20890,68,12.5,10,0.0 +20890,22,21,44,0.0 +20890,19,9.2,29,0.0 +20890,3,10,3,0.0 +20890,37,26,10,0.0 +20890,4,22,7,0.0 +20890,66,17,20,0.0 +20890,47,9.5,18,0.0 +20890,40,18.4,35,0.0 +20890,72,34.8,32,0.0 +20890,28,45.6,45,0.0 +20890,17,39,39,0.0 +20890,36,19,29,0.0 +20890,35,18,27,0.0 +20890,18,62.5,26,0.0 +20890,74,10,18,0.0 +20890,60,34,41,0.0 +20890,55,24,4,0.0 +20890,13,6,3,0.0 +20891,11,21,18,0.0 +20891,5,21.35,27,0.0 +20891,62,49.3,43,0.0 +20891,4,22,33,0.0 +20891,40,18.4,27,0.0 +20891,9,97,37,0.0 +20891,31,12.5,16,0.0 +20891,28,45.6,40,0.0 +20891,12,38,31,0.0 +20891,24,4.5,24,0.0 +20891,20,81,41,0.0 +20891,27,43.9,32,0.0 +20891,72,34.8,38,0.0 +20891,38,263.5,27,0.0 +20891,51,53,35,0.0 +20891,22,21,32,0.0 +20891,74,10,48,0.0 +20891,41,9.65,45,0.0 +20891,63,43.9,3,0.0 +20891,68,12.5,12,0.0 +20891,50,16.25,15,0.0 +20891,13,6,39,0.0 +20891,1,18,3,0.0 +20891,2,19,47,0.0 +20891,33,2.5,50,0.0 +20891,32,32,14,0.0 +20891,23,9,45,0.0 +20892,20,81,43,0.0 +20892,65,21.05,8,0.0 +20892,9,97,40,0.0 +20892,43,46,36,0.0 +20892,54,7.45,9,0.0 +20892,8,40,48,0.0 +20892,60,34,29,0.0 +20892,72,34.8,22,0.0 +20892,5,21.35,35,0.0 +20892,7,30,19,0.0 +20892,11,21,9,0.0 +20892,32,32,50,0.0 +20892,47,9.5,24,0.0 +20892,51,53,3,0.0 +20892,50,16.25,16,0.0 +20892,66,17,15,0.0 +20892,53,32.8,33,0.0 +20892,27,43.9,38,0.0 +20892,56,38,31,0.0 +20892,69,36,15,0.0 +20892,4,22,17,0.0 +20892,68,12.5,49,0.0 +20892,75,7.75,17,0.0 +20892,70,15,37,0.0 +20893,52,7,46,0.0 +20893,30,25.89,36,0.0 +20893,19,9.2,19,0.0 +20893,68,12.5,16,0.0 +20893,72,34.8,22,0.0 +20893,1,18,9,0.0 +20893,71,21.5,46,0.0 +20893,54,7.45,26,0.0 +20893,26,31.23,31,0.0 +20893,21,10,10,0.0 +20893,66,17,8,0.0 +20893,5,21.35,47,0.0 +20893,42,14,50,0.0 +20893,70,15,20,0.0 +20893,45,9.5,6,0.0 +20893,32,32,15,0.0 +20893,33,2.5,38,0.0 +20893,47,9.5,37,0.0 +20893,29,123.79,12,0.0 +20893,69,36,17,0.0 +20893,4,22,46,0.0 +20893,67,14,43,0.0 +20893,34,14,37,0.0 +20893,28,45.6,37,0.0 +20893,17,39,23,0.0 +20893,25,14,8,0.0 +20893,6,25,34,0.0 +20893,57,19.5,11,0.0 +20893,60,34,24,0.0 +20893,9,97,40,0.0 +20893,62,49.3,24,0.0 +20893,50,16.25,33,0.0 +20893,38,263.5,27,0.0 +20893,12,38,4,0.0 +20893,24,4.5,42,0.0 +20893,2,19,31,0.0 +20893,8,40,23,0.0 +20893,14,23.25,17,0.0 +20893,23,9,18,0.0 +20893,11,21,45,0.0 +20893,73,15,17,0.0 +20893,58,13.25,4,0.0 +20893,16,17.45,43,0.0 +20893,49,20,15,0.0 +20893,63,43.9,7,0.0 +20893,59,55,35,0.0 +20893,53,32.8,44,0.0 +20893,10,31,9,0.0 +20893,43,46,47,0.0 +20893,55,24,13,0.0 +20893,41,9.65,17,0.0 +20893,44,19.45,9,0.0 +20893,3,10,19,0.0 +20893,74,10,39,0.0 +20893,37,26,17,0.0 +20893,48,12.75,9,0.0 +20893,40,18.4,20,0.0 +20893,61,28.5,23,0.0 +20893,13,6,40,0.0 +20893,36,19,9,0.0 +20893,56,38,9,0.0 +20893,77,13,32,0.0 +20893,46,12,44,0.0 +20893,39,18,11,0.0 +20894,43,46,48,0.0 +20894,31,12.5,5,0.0 +20894,18,62.5,47,0.0 +20894,46,12,43,0.0 +20894,59,55,37,0.0 +20894,20,81,10,0.0 +20894,39,18,29,0.0 +20894,3,10,27,0.0 +20894,75,7.75,41,0.0 +20894,62,49.3,30,0.0 +20894,12,38,2,0.0 +20894,24,4.5,44,0.0 +20894,45,9.5,32,0.0 +20894,50,16.25,41,0.0 +20894,48,12.75,42,0.0 +20894,29,123.79,22,0.0 +20894,52,7,42,0.0 +20894,40,18.4,50,0.0 +20894,66,17,43,0.0 +20894,71,21.5,34,0.0 +20894,16,17.45,15,0.0 +20894,60,34,33,0.0 +20894,58,13.25,28,0.0 +20894,11,21,11,0.0 +20894,28,45.6,5,0.0 +20894,4,22,3,0.0 +20894,38,263.5,9,0.0 +20894,19,9.2,25,0.0 +20894,2,19,44,0.0 +20894,36,19,7,0.0 +20894,30,25.89,42,0.0 +20894,35,18,8,0.0 +20894,54,7.45,37,0.0 +20894,8,40,1,0.0 +20894,42,14,45,0.0 +20894,70,15,24,0.0 +20894,25,14,13,0.0 +20895,14,23.25,19,0.0 +20895,61,28.5,27,0.0 +20895,45,9.5,20,0.0 +20895,39,18,41,0.0 +20895,48,12.75,21,0.0 +20895,72,34.8,3,0.0 +20895,18,62.5,44,0.0 +20895,67,14,42,0.0 +20895,55,24,39,0.0 +20895,8,40,16,0.0 +20895,26,31.23,17,0.0 +20895,51,53,21,0.0 +20895,20,81,23,0.0 +20895,75,7.75,24,0.0 +20895,34,14,6,0.0 +20895,24,4.5,24,0.0 +20895,7,30,24,0.0 +20895,4,22,8,0.0 +20895,3,10,22,0.0 +20895,60,34,18,0.0 +20895,22,21,18,0.0 +20895,19,9.2,39,0.0 +20895,11,21,18,0.0 +20895,74,10,21,0.0 +20895,41,9.65,46,0.0 +20895,47,9.5,41,0.0 +20895,28,45.6,44,0.0 +20895,77,13,29,0.0 +20895,31,12.5,42,0.0 +20895,35,18,29,0.0 +20895,36,19,41,0.0 +20895,37,26,12,0.0 +20895,23,9,23,0.0 +20895,25,14,38,0.0 +20895,59,55,15,0.0 +20895,62,49.3,43,0.0 +20895,40,18.4,45,0.0 +20895,54,7.45,6,0.0 +20895,52,7,47,0.0 +20895,10,31,35,0.0 +20895,2,19,14,0.0 +20895,43,46,49,0.0 +20895,73,15,38,0.0 +20895,68,12.5,32,0.0 +20895,42,14,31,0.0 +20895,38,263.5,22,0.0 +20895,21,10,30,0.0 +20895,56,38,9,0.0 +20895,76,18,14,0.0 +20895,29,123.79,2,0.0 +20895,64,33.25,2,0.0 +20895,30,25.89,33,0.0 +20895,57,19.5,40,0.0 +20895,27,43.9,38,0.0 +20895,9,97,37,0.0 +20896,51,53,44,0.0 +20896,63,43.9,29,0.0 +20896,50,16.25,34,0.0 +20896,52,7,3,0.0 +20896,9,97,22,0.0 +20896,74,10,38,0.0 +20896,27,43.9,42,0.0 +20896,30,25.89,40,0.0 +20896,38,263.5,39,0.0 +20896,46,12,27,0.0 +20896,4,22,35,0.0 +20896,25,14,14,0.0 +20896,49,20,43,0.0 +20896,18,62.5,35,0.0 +20896,29,123.79,28,0.0 +20897,33,2.5,6,0.0 +20897,28,45.6,21,0.0 +20897,34,14,9,0.0 +20897,9,97,3,0.0 +20898,47,9.5,11,0.0 +20898,67,14,4,0.0 +20898,10,31,50,0.0 +20898,11,21,45,0.0 +20898,28,45.6,14,0.0 +20898,65,21.05,11,0.0 +20898,16,17.45,31,0.0 +20898,33,2.5,44,0.0 +20898,8,40,19,0.0 +20898,24,4.5,4,0.0 +20898,26,31.23,46,0.0 +20898,44,19.45,24,0.0 +20898,56,38,1,0.0 +20898,70,15,7,0.0 +20898,63,43.9,10,0.0 +20898,17,39,13,0.0 +20898,73,15,31,0.0 +20898,42,14,21,0.0 +20898,41,9.65,19,0.0 +20898,59,55,7,0.0 +20898,9,97,17,0.0 +20898,29,123.79,19,0.0 +20898,34,14,20,0.0 +20898,43,46,17,0.0 +20898,35,18,30,0.0 +20898,61,28.5,25,0.0 +20898,4,22,28,0.0 +20898,36,19,31,0.0 +20898,53,32.8,39,0.0 +20898,3,10,45,0.0 +20898,25,14,45,0.0 +20898,18,62.5,44,0.0 +20898,23,9,7,0.0 +20898,49,20,20,0.0 +20898,12,38,13,0.0 +20898,48,12.75,36,0.0 +20898,40,18.4,23,0.0 +20898,71,21.5,47,0.0 +20898,22,21,33,0.0 +20898,21,10,10,0.0 +20898,15,15.5,14,0.0 +20898,27,43.9,23,0.0 +20898,37,26,19,0.0 +20898,7,30,31,0.0 +20898,76,18,18,0.0 +20898,2,19,43,0.0 +20898,39,18,12,0.0 +20899,17,39,9,0.0 +20900,42,14,35,0.0 +20900,45,9.5,30,0.0 +20900,48,12.75,7,0.0 +20900,59,55,9,0.0 +20900,61,28.5,39,0.0 +20900,11,21,29,0.0 +20900,32,32,32,0.0 +20900,20,81,38,0.0 +20900,23,9,45,0.0 +20900,29,123.79,49,0.0 +20900,47,9.5,29,0.0 +20901,6,25,48,0.0 +20901,29,123.79,43,0.0 +20901,20,81,38,0.0 +20901,50,16.25,21,0.0 +20901,27,43.9,45,0.0 +20901,37,26,50,0.0 +20901,15,15.5,36,0.0 +20901,68,12.5,43,0.0 +20901,53,32.8,50,0.0 +20901,77,13,37,0.0 +20901,36,19,11,0.0 +20901,61,28.5,6,0.0 +20901,64,33.25,5,0.0 +20901,2,19,8,0.0 +20901,16,17.45,50,0.0 +20901,39,18,1,0.0 +20901,43,46,50,0.0 +20901,62,49.3,41,0.0 +20901,65,21.05,24,0.0 +20901,74,10,30,0.0 +20901,32,32,37,0.0 +20901,72,34.8,40,0.0 +20902,61,28.5,26,0.0 +20902,58,13.25,18,0.0 +20902,51,53,25,0.0 +20902,29,123.79,7,0.0 +20902,33,2.5,20,0.0 +20902,77,13,32,0.0 +20902,41,9.65,44,0.0 +20902,63,43.9,44,0.0 +20902,44,19.45,14,0.0 +20902,45,9.5,38,0.0 +20902,47,9.5,17,0.0 +20902,13,6,47,0.0 +20902,67,14,28,0.0 +20902,64,33.25,25,0.0 +20902,50,16.25,12,0.0 +20902,21,10,9,0.0 +20902,53,32.8,18,0.0 +20902,2,19,3,0.0 +20902,10,31,4,0.0 +20902,25,14,33,0.0 +20902,68,12.5,8,0.0 +20902,59,55,17,0.0 +20902,40,18.4,48,0.0 +20902,38,263.5,34,0.0 +20902,56,38,29,0.0 +20902,32,32,45,0.0 +20902,76,18,46,0.0 +20902,19,9.2,7,0.0 +20902,57,19.5,31,0.0 +20902,24,4.5,39,0.0 +20902,65,21.05,46,0.0 +20902,1,18,34,0.0 +20902,39,18,6,0.0 +20902,7,30,5,0.0 +20902,75,7.75,48,0.0 +20902,22,21,40,0.0 +20902,3,10,21,0.0 +20902,20,81,12,0.0 +20902,6,25,49,0.0 +20902,42,14,34,0.0 +20902,71,21.5,15,0.0 +20902,9,97,37,0.0 +20902,54,7.45,6,0.0 +20902,12,38,45,0.0 +20902,72,34.8,39,0.0 +20902,23,9,12,0.0 +20902,43,46,13,0.0 +20902,73,15,35,0.0 +20902,60,34,43,0.0 +20902,34,14,13,0.0 +20902,26,31.23,35,0.0 +20902,16,17.45,8,0.0 +20902,48,12.75,27,0.0 +20902,31,12.5,41,0.0 +20902,30,25.89,32,0.0 +20902,49,20,1,0.0 +20902,74,10,5,0.0 +20902,17,39,47,0.0 +20902,37,26,35,0.0 +20902,62,49.3,32,0.0 +20902,69,36,6,0.0 +20902,15,15.5,39,0.0 +20902,18,62.5,46,0.0 +20902,55,24,1,0.0 +20902,4,22,8,0.0 +20902,5,21.35,8,0.0 +20902,66,17,9,0.0 +20902,14,23.25,42,0.0 +20902,35,18,22,0.0 +20902,8,40,43,0.0 +20902,11,21,31,0.0 +20902,28,45.6,18,0.0 +20902,70,15,50,0.0 +20903,9,97,30,0.0 +20903,75,7.75,11,0.0 +20903,27,43.9,18,0.0 +20903,59,55,49,0.0 +20903,67,14,47,0.0 +20903,19,9.2,40,0.0 +20903,42,14,13,0.0 +20903,34,14,47,0.0 +20903,33,2.5,12,0.0 +20903,63,43.9,45,0.0 +20903,26,31.23,29,0.0 +20903,40,18.4,41,0.0 +20903,32,32,30,0.0 +20903,6,25,9,0.0 +20903,5,21.35,16,0.0 +20903,16,17.45,14,0.0 +20903,73,15,15,0.0 +20903,28,45.6,41,0.0 +20903,15,15.5,9,0.0 +20903,43,46,22,0.0 +20903,18,62.5,40,0.0 +20903,17,39,25,0.0 +20903,51,53,38,0.0 +20903,14,23.25,4,0.0 +20903,11,21,28,0.0 +20903,56,38,15,0.0 +20903,3,10,33,0.0 +20903,50,16.25,5,0.0 +20903,57,19.5,21,0.0 +20903,47,9.5,43,0.0 +20903,23,9,44,0.0 +20903,31,12.5,42,0.0 +20903,25,14,34,0.0 +20903,44,19.45,43,0.0 +20903,37,26,38,0.0 +20903,10,31,47,0.0 +20903,35,18,20,0.0 +20903,64,33.25,30,0.0 +20903,54,7.45,29,0.0 +20903,68,12.5,22,0.0 +20903,65,21.05,9,0.0 +20903,72,34.8,41,0.0 +20903,21,10,7,0.0 +20903,4,22,10,0.0 +20903,76,18,3,0.0 +20903,41,9.65,3,0.0 +20903,69,36,22,0.0 +20904,24,4.5,38,0.0 +20904,23,9,22,0.0 +20904,4,22,48,0.0 +20904,77,13,49,0.0 +20904,9,97,7,0.0 +20904,5,21.35,11,0.0 +20904,37,26,39,0.0 +20904,75,7.75,4,0.0 +20904,1,18,8,0.0 +20904,50,16.25,39,0.0 +20904,59,55,28,0.0 +20904,71,21.5,14,0.0 +20904,58,13.25,7,0.0 +20904,43,46,31,0.0 +20904,19,9.2,4,0.0 +20904,29,123.79,23,0.0 +20904,8,40,8,0.0 +20904,32,32,44,0.0 +20904,46,12,12,0.0 +20904,60,34,31,0.0 +20904,55,24,20,0.0 +20904,12,38,28,0.0 +20904,76,18,38,0.0 +20904,34,14,39,0.0 +20904,27,43.9,12,0.0 +20904,69,36,17,0.0 +20904,6,25,35,0.0 +20904,20,81,17,0.0 +20904,72,34.8,25,0.0 +20904,28,45.6,5,0.0 +20904,42,14,12,0.0 +20904,56,38,12,0.0 +20904,48,12.75,18,0.0 +20904,47,9.5,5,0.0 +20904,36,19,34,0.0 +20904,38,263.5,29,0.0 +20904,26,31.23,36,0.0 +20904,51,53,24,0.0 +20904,13,6,41,0.0 +20904,66,17,20,0.0 +20904,49,20,36,0.0 +20904,14,23.25,28,0.0 +20904,61,28.5,20,0.0 +20904,17,39,33,0.0 +20904,2,19,4,0.0 +20904,35,18,1,0.0 +20904,33,2.5,35,0.0 +20904,62,49.3,36,0.0 +20904,65,21.05,9,0.0 +20904,54,7.45,22,0.0 +20905,18,62.5,37,0.0 +20905,37,26,15,0.0 +20905,13,6,23,0.0 +20905,19,9.2,13,0.0 +20905,38,263.5,34,0.0 +20905,67,14,32,0.0 +20905,61,28.5,11,0.0 +20905,20,81,42,0.0 +20905,10,31,20,0.0 +20905,41,9.65,17,0.0 +20905,23,9,17,0.0 +20905,39,18,18,0.0 +20905,33,2.5,16,0.0 +20905,35,18,15,0.0 +20905,49,20,36,0.0 +20905,63,43.9,8,0.0 +20905,73,15,37,0.0 +20905,5,21.35,46,0.0 +20905,54,7.45,32,0.0 +20905,11,21,8,0.0 +20905,27,43.9,9,0.0 +20905,51,53,50,0.0 +20905,70,15,5,0.0 +20905,76,18,29,0.0 +20905,8,40,49,0.0 +20905,43,46,17,0.0 +20905,55,24,28,0.0 +20905,25,14,5,0.0 +20905,71,21.5,41,0.0 +20905,68,12.5,25,0.0 +20905,4,22,32,0.0 +20905,59,55,34,0.0 +20905,77,13,30,0.0 +20905,62,49.3,34,0.0 +20905,14,23.25,18,0.0 +20905,29,123.79,23,0.0 +20905,12,38,17,0.0 +20905,6,25,31,0.0 +20905,58,13.25,26,0.0 +20905,60,34,15,0.0 +20905,72,34.8,42,0.0 +20905,65,21.05,6,0.0 +20905,16,17.45,17,0.0 +20906,8,40,36,0.0 +20906,51,53,17,0.0 +20906,11,21,10,0.0 +20906,28,45.6,30,0.0 +20906,22,21,36,0.0 +20906,76,18,14,0.0 +20906,41,9.65,36,0.0 +20906,39,18,40,0.0 +20906,1,18,50,0.0 +20906,63,43.9,44,0.0 +20906,48,12.75,37,0.0 +20906,29,123.79,38,0.0 +20906,6,25,17,0.0 +20906,42,14,5,0.0 +20906,62,49.3,37,0.0 +20906,18,62.5,1,0.0 +20906,32,32,37,0.0 +20906,74,10,49,0.0 +20906,33,2.5,31,0.0 +20906,20,81,37,0.0 +20906,46,12,46,0.0 +20906,61,28.5,37,0.0 +20906,55,24,37,0.0 +20906,65,21.05,26,0.0 +20906,34,14,6,0.0 +20906,43,46,34,0.0 +20906,24,4.5,21,0.0 +20906,27,43.9,22,0.0 +20906,59,55,14,0.0 +20906,71,21.5,16,0.0 +20906,30,25.89,1,0.0 +20906,10,31,40,0.0 +20906,66,17,2,0.0 +20906,69,36,7,0.0 +20906,13,6,26,0.0 +20906,53,32.8,13,0.0 +20906,75,7.75,2,0.0 +20906,16,17.45,23,0.0 +20906,35,18,9,0.0 +20906,58,13.25,17,0.0 +20906,12,38,1,0.0 +20906,56,38,3,0.0 +20906,40,18.4,30,0.0 +20906,9,97,19,0.0 +20906,60,34,19,0.0 +20906,17,39,50,0.0 +20906,77,13,34,0.0 +20906,23,9,42,0.0 +20906,14,23.25,4,0.0 +20906,64,33.25,27,0.0 +20906,67,14,27,0.0 +20906,38,263.5,32,0.0 +20906,25,14,43,0.0 +20906,37,26,37,0.0 +20906,72,34.8,5,0.0 +20906,36,19,33,0.0 +20906,54,7.45,4,0.0 +20906,7,30,33,0.0 +20906,70,15,24,0.0 +20906,5,21.35,1,0.0 +20906,49,20,10,0.0 +20906,4,22,14,0.0 +20906,50,16.25,27,0.0 +20906,73,15,38,0.0 +20906,19,9.2,30,0.0 +20906,44,19.45,25,0.0 +20906,57,19.5,40,0.0 +20906,2,19,50,0.0 +20906,3,10,24,0.0 +20906,47,9.5,30,0.0 +20906,45,9.5,49,0.0 +20906,31,12.5,30,0.0 +20906,15,15.5,24,0.0 +20906,52,7,39,0.0 +20906,26,31.23,38,0.0 +20906,68,12.5,10,0.0 +20906,21,10,21,0.0 +20907,49,20,42,0.0 +20907,23,9,22,0.0 +20907,14,23.25,30,0.0 +20907,19,9.2,43,0.0 +20907,11,21,22,0.0 +20907,28,45.6,5,0.0 +20907,5,21.35,26,0.0 +20907,38,263.5,10,0.0 +20907,42,14,5,0.0 +20907,34,14,44,0.0 +20907,35,18,9,0.0 +20907,67,14,38,0.0 +20907,43,46,15,0.0 +20907,65,21.05,35,0.0 +20907,7,30,37,0.0 +20907,6,25,9,0.0 +20907,61,28.5,29,0.0 +20907,15,15.5,45,0.0 +20907,72,34.8,30,0.0 +20907,63,43.9,10,0.0 +20907,37,26,44,0.0 +20907,32,32,4,0.0 +20907,51,53,25,0.0 +20907,13,6,30,0.0 +20907,48,12.75,33,0.0 +20907,73,15,50,0.0 +20907,57,19.5,37,0.0 +20907,59,55,40,0.0 +20907,16,17.45,30,0.0 +20907,9,97,17,0.0 +20907,26,31.23,7,0.0 +20907,41,9.65,31,0.0 +20907,52,7,16,0.0 +20907,53,32.8,13,0.0 +20907,46,12,13,0.0 +20907,3,10,32,0.0 +20907,4,22,24,0.0 +20907,10,31,22,0.0 +20907,33,2.5,21,0.0 +20907,58,13.25,15,0.0 +20907,56,38,5,0.0 +20907,8,40,50,0.0 +20907,39,18,49,0.0 +20907,69,36,7,0.0 +20907,76,18,3,0.0 +20907,25,14,35,0.0 +20907,31,12.5,7,0.0 +20907,45,9.5,35,0.0 +20907,21,10,50,0.0 +20907,22,21,22,0.0 +20907,18,62.5,43,0.0 +20908,61,28.5,1,0.0 +20908,6,25,17,0.0 +20908,35,18,45,0.0 +20908,47,9.5,18,0.0 +20908,70,15,22,0.0 +20908,9,97,29,0.0 +20908,39,18,33,0.0 +20908,62,49.3,8,0.0 +20908,51,53,36,0.0 +20908,38,263.5,27,0.0 +20908,49,20,13,0.0 +20908,33,2.5,16,0.0 +20908,66,17,33,0.0 +20908,1,18,39,0.0 +20908,12,38,22,0.0 +20908,34,14,41,0.0 +20908,48,12.75,19,0.0 +20908,36,19,2,0.0 +20908,7,30,2,0.0 +20908,15,15.5,23,0.0 +20908,55,24,29,0.0 +20908,71,21.5,27,0.0 +20908,8,40,24,0.0 +20908,25,14,21,0.0 +20908,22,21,17,0.0 +20908,41,9.65,16,0.0 +20908,18,62.5,48,0.0 +20908,59,55,21,0.0 +20908,74,10,3,0.0 +20908,65,21.05,32,0.0 +20908,75,7.75,27,0.0 +20908,44,19.45,9,0.0 +20908,3,10,48,0.0 +20908,43,46,9,0.0 +20908,13,6,45,0.0 +20908,73,15,2,0.0 +20908,28,45.6,16,0.0 +20908,60,34,48,0.0 +20908,63,43.9,19,0.0 +20908,72,34.8,20,0.0 +20908,23,9,31,0.0 +20908,5,21.35,25,0.0 +20908,64,33.25,4,0.0 +20908,69,36,49,0.0 +20908,77,13,2,0.0 +20908,54,7.45,45,0.0 +20908,2,19,4,0.0 +20908,53,32.8,13,0.0 +20908,19,9.2,6,0.0 +20908,46,12,22,0.0 +20908,20,81,31,0.0 +20908,57,19.5,43,0.0 +20908,14,23.25,27,0.0 +20908,56,38,12,0.0 +20908,76,18,2,0.0 +20908,27,43.9,42,0.0 +20908,26,31.23,49,0.0 +20908,67,14,42,0.0 +20909,76,18,28,0.0 +20909,39,18,6,0.0 +20909,35,18,44,0.0 +20909,71,21.5,4,0.0 +20909,4,22,17,0.0 +20909,28,45.6,42,0.0 +20910,57,19.5,45,0.0 +20910,25,14,40,0.0 +20910,47,9.5,47,0.0 +20910,23,9,9,0.0 +20910,32,32,6,0.0 +20910,63,43.9,8,0.0 +20910,12,38,23,0.0 +20910,71,21.5,16,0.0 +20910,72,34.8,11,0.0 +20910,73,15,11,0.0 +20910,1,18,28,0.0 +20910,30,25.89,39,0.0 +20910,64,33.25,27,0.0 +20910,43,46,44,0.0 +20910,5,21.35,44,0.0 +20910,77,13,40,0.0 +20910,33,2.5,3,0.0 +20910,68,12.5,22,0.0 +20910,6,25,13,0.0 +20910,69,36,36,0.0 +20911,12,38,25,0.0 +20911,26,31.23,26,0.0 +20911,48,12.75,36,0.0 +20911,9,97,15,0.0 +20911,62,49.3,20,0.0 +20911,55,24,41,0.0 +20911,59,55,1,0.0 +20911,53,32.8,8,0.0 +20911,49,20,30,0.0 +20911,52,7,40,0.0 +20911,27,43.9,10,0.0 +20911,44,19.45,42,0.0 +20911,11,21,42,0.0 +20911,17,39,33,0.0 +20911,23,9,38,0.0 +20911,42,14,8,0.0 +20911,63,43.9,29,0.0 +20911,29,123.79,13,0.0 +20911,15,15.5,22,0.0 +20911,67,14,12,0.0 +20911,47,9.5,5,0.0 +20911,77,13,18,0.0 +20911,70,15,47,0.0 +20911,35,18,49,0.0 +20911,8,40,18,0.0 +20911,1,18,38,0.0 +20911,30,25.89,28,0.0 +20911,71,21.5,45,0.0 +20911,16,17.45,18,0.0 +20911,74,10,29,0.0 +20911,61,28.5,8,0.0 +20911,69,36,16,0.0 +20911,38,263.5,26,0.0 +20911,24,4.5,17,0.0 +20911,43,46,30,0.0 +20911,14,23.25,9,0.0 +20911,54,7.45,6,0.0 +20911,36,19,34,0.0 +20911,50,16.25,31,0.0 +20911,68,12.5,40,0.0 +20911,73,15,14,0.0 +20911,60,34,14,0.0 +20911,4,22,36,0.0 +20911,76,18,3,0.0 +20911,64,33.25,12,0.0 +20911,13,6,21,0.0 +20911,18,62.5,13,0.0 +20911,65,21.05,46,0.0 +20912,48,12.75,36,0.0 +20912,4,22,45,0.0 +20912,31,12.5,23,0.0 +20912,32,32,17,0.0 +20912,64,33.25,39,0.0 +20912,5,21.35,18,0.0 +20912,39,18,46,0.0 +20912,28,45.6,7,0.0 +20912,6,25,35,0.0 +20912,74,10,33,0.0 +20912,41,9.65,11,0.0 +20912,68,12.5,20,0.0 +20912,56,38,47,0.0 +20912,51,53,43,0.0 +20912,63,43.9,18,0.0 +20912,19,9.2,13,0.0 +20912,21,10,36,0.0 +20912,1,18,23,0.0 +20912,49,20,9,0.0 +20912,44,19.45,17,0.0 +20912,36,19,35,0.0 +20912,69,36,29,0.0 +20912,16,17.45,47,0.0 +20912,66,17,13,0.0 +20912,34,14,6,0.0 +20912,3,10,43,0.0 +20912,65,21.05,14,0.0 +20912,47,9.5,39,0.0 +20912,15,15.5,17,0.0 +20912,67,14,35,0.0 +20912,55,24,31,0.0 +20912,52,7,30,0.0 +20912,60,34,35,0.0 +20912,20,81,30,0.0 +20912,43,46,7,0.0 +20912,23,9,18,0.0 +20912,53,32.8,28,0.0 +20912,57,19.5,13,0.0 +20912,2,19,13,0.0 +20912,62,49.3,5,0.0 +20912,13,6,1,0.0 +20912,38,263.5,28,0.0 +20912,77,13,49,0.0 +20912,46,12,22,0.0 +20912,18,62.5,42,0.0 +20912,29,123.79,40,0.0 +20912,61,28.5,42,0.0 +20912,24,4.5,43,0.0 +20912,40,18.4,48,0.0 +20912,35,18,20,0.0 +20912,10,31,17,0.0 +20912,76,18,32,0.0 +20912,17,39,44,0.0 +20912,58,13.25,44,0.0 +20912,26,31.23,42,0.0 +20912,73,15,5,0.0 +20912,11,21,16,0.0 +20912,70,15,44,0.0 +20912,33,2.5,42,0.0 +20912,71,21.5,39,0.0 +20912,50,16.25,46,0.0 +20912,12,38,50,0.0 +20912,30,25.89,32,0.0 +20912,14,23.25,12,0.0 +20912,59,55,49,0.0 +20912,72,34.8,43,0.0 +20912,37,26,2,0.0 +20912,8,40,20,0.0 +20912,22,21,30,0.0 +20912,42,14,14,0.0 +20912,75,7.75,23,0.0 +20912,25,14,19,0.0 +20913,24,4.5,24,0.0 +20913,34,14,13,0.0 +20913,43,46,45,0.0 +20913,7,30,6,0.0 +20913,58,13.25,30,0.0 +20913,44,19.45,32,0.0 +20913,60,34,48,0.0 +20913,28,45.6,33,0.0 +20913,20,81,4,0.0 +20913,72,34.8,50,0.0 +20913,11,21,13,0.0 +20913,8,40,28,0.0 +20913,13,6,17,0.0 +20913,38,263.5,37,0.0 +20913,32,32,45,0.0 +20913,18,62.5,38,0.0 +20913,66,17,23,0.0 +20913,63,43.9,28,0.0 +20913,47,9.5,33,0.0 +20913,9,97,36,0.0 +20913,73,15,3,0.0 +20913,51,53,28,0.0 +20913,41,9.65,30,0.0 +20913,30,25.89,39,0.0 +20913,64,33.25,19,0.0 +20913,3,10,45,0.0 +20913,37,26,27,0.0 +20913,29,123.79,7,0.0 +20913,25,14,23,0.0 +20913,62,49.3,8,0.0 +20913,23,9,8,0.0 +20913,42,14,49,0.0 +20913,48,12.75,46,0.0 +20913,77,13,42,0.0 +20913,19,9.2,10,0.0 +20913,45,9.5,19,0.0 +20913,16,17.45,24,0.0 +20913,59,55,19,0.0 +20913,53,32.8,40,0.0 +20913,1,18,48,0.0 +20913,74,10,34,0.0 +20913,2,19,43,0.0 +20913,33,2.5,29,0.0 +20913,61,28.5,48,0.0 +20913,70,15,21,0.0 +20913,14,23.25,16,0.0 +20913,21,10,26,0.0 +20913,68,12.5,48,0.0 +20913,12,38,22,0.0 +20913,22,21,27,0.0 +20913,27,43.9,36,0.0 +20913,36,19,24,0.0 +20913,71,21.5,18,0.0 +20913,69,36,7,0.0 +20913,26,31.23,29,0.0 +20914,34,14,28,0.0 +20914,14,23.25,34,0.0 +20914,10,31,39,0.0 +20914,28,45.6,16,0.0 +20914,45,9.5,31,0.0 +20914,39,18,30,0.0 +20914,56,38,34,0.0 +20914,75,7.75,40,0.0 +20914,68,12.5,4,0.0 +20914,23,9,34,0.0 +20914,24,4.5,43,0.0 +20914,67,14,16,0.0 +20914,17,39,20,0.0 +20914,73,15,36,0.0 +20914,31,12.5,32,0.0 +20914,7,30,50,0.0 +20914,63,43.9,40,0.0 +20915,8,40,45,0.0 +20915,32,32,7,0.0 +20915,12,38,30,0.0 +20915,60,34,36,0.0 +20915,30,25.89,36,0.0 +20915,65,21.05,26,0.0 +20915,10,31,23,0.0 +20915,61,28.5,25,0.0 +20915,46,12,9,0.0 +20915,5,21.35,47,0.0 +20915,47,9.5,35,0.0 +20915,18,62.5,39,0.0 +20915,67,14,5,0.0 +20915,59,55,18,0.0 +20915,2,19,40,0.0 +20915,57,19.5,46,0.0 +20915,40,18.4,40,0.0 +20915,37,26,7,0.0 +20915,19,9.2,15,0.0 +20915,34,14,5,0.0 +20915,68,12.5,8,0.0 +20915,29,123.79,36,0.0 +20915,33,2.5,15,0.0 +20915,14,23.25,42,0.0 +20915,27,43.9,41,0.0 +20915,7,30,13,0.0 +20915,48,12.75,19,0.0 +20915,76,18,27,0.0 +20915,72,34.8,7,0.0 +20915,44,19.45,35,0.0 +20915,42,14,36,0.0 +20915,4,22,21,0.0 +20915,26,31.23,36,0.0 +20915,38,263.5,42,0.0 +20915,58,13.25,24,0.0 +20915,9,97,45,0.0 +20915,75,7.75,7,0.0 +20915,73,15,24,0.0 +20915,17,39,12,0.0 +20915,3,10,25,0.0 +20915,70,15,17,0.0 +20915,21,10,2,0.0 +20915,54,7.45,35,0.0 +20915,15,15.5,14,0.0 +20915,39,18,41,0.0 +20915,1,18,6,0.0 +20915,24,4.5,45,0.0 +20916,39,18,41,0.0 +20916,41,9.65,32,0.0 +20916,69,36,16,0.0 +20916,13,6,39,0.0 +20917,8,40,11,0.0 +20917,46,12,1,0.0 +20917,34,14,11,0.0 +20917,59,55,25,0.0 +20917,43,46,35,0.0 +20917,72,34.8,49,0.0 +20917,54,7.45,34,0.0 +20917,22,21,30,0.0 +20917,50,16.25,45,0.0 +20917,40,18.4,32,0.0 +20917,36,19,15,0.0 +20917,27,43.9,25,0.0 +20917,73,15,18,0.0 +20917,67,14,15,0.0 +20917,18,62.5,2,0.0 +20917,76,18,44,0.0 +20917,74,10,32,0.0 +20917,11,21,29,0.0 +20917,64,33.25,12,0.0 +20917,10,31,38,0.0 +20917,25,14,20,0.0 +20917,26,31.23,2,0.0 +20917,52,7,8,0.0 +20917,48,12.75,39,0.0 +20917,28,45.6,41,0.0 +20917,33,2.5,16,0.0 +20917,56,38,32,0.0 +20917,45,9.5,24,0.0 +20917,51,53,26,0.0 +20917,60,34,46,0.0 +20917,14,23.25,1,0.0 +20917,41,9.65,10,0.0 +20917,70,15,7,0.0 +20917,24,4.5,39,0.0 +20917,32,32,20,0.0 +20917,5,21.35,7,0.0 +20917,61,28.5,32,0.0 +20917,69,36,2,0.0 +20917,17,39,25,0.0 +20917,15,15.5,14,0.0 +20917,44,19.45,20,0.0 +20917,16,17.45,25,0.0 +20917,7,30,14,0.0 +20917,53,32.8,37,0.0 +20917,6,25,50,0.0 +20917,13,6,22,0.0 +20917,38,263.5,36,0.0 +20917,55,24,10,0.0 +20917,39,18,38,0.0 +20917,31,12.5,39,0.0 +20917,42,14,22,0.0 +20917,3,10,19,0.0 +20917,66,17,23,0.0 +20917,23,9,20,0.0 +20917,71,21.5,41,0.0 +20917,58,13.25,23,0.0 +20917,21,10,35,0.0 +20917,68,12.5,39,0.0 +20917,1,18,32,0.0 +20917,2,19,14,0.0 +20917,63,43.9,20,0.0 +20917,77,13,17,0.0 +20917,62,49.3,22,0.0 +20917,30,25.89,37,0.0 +20917,49,20,49,0.0 +20917,19,9.2,43,0.0 +20917,35,18,4,0.0 +20917,29,123.79,28,0.0 +20917,75,7.75,4,0.0 +20917,65,21.05,7,0.0 +20917,4,22,32,0.0 +20917,12,38,40,0.0 +20918,22,21,42,0.0 +20918,58,13.25,45,0.0 +20918,12,38,11,0.0 +20918,64,33.25,8,0.0 +20918,48,12.75,4,0.0 +20918,21,10,28,0.0 +20918,65,21.05,20,0.0 +20918,50,16.25,16,0.0 +20918,57,19.5,5,0.0 +20918,46,12,19,0.0 +20918,27,43.9,6,0.0 +20918,11,21,38,0.0 +20918,56,38,16,0.0 +20918,15,15.5,22,0.0 +20918,20,81,12,0.0 +20918,18,62.5,15,0.0 +20918,66,17,30,0.0 +20918,9,97,23,0.0 +20918,73,15,28,0.0 +20918,28,45.6,23,0.0 +20918,6,25,21,0.0 +20918,26,31.23,28,0.0 +20918,31,12.5,13,0.0 +20918,68,12.5,9,0.0 +20918,14,23.25,7,0.0 +20918,1,18,43,0.0 +20918,41,9.65,7,0.0 +20918,69,36,14,0.0 +20918,35,18,16,0.0 +20918,39,18,20,0.0 +20918,60,34,43,0.0 +20918,72,34.8,3,0.0 +20918,16,17.45,20,0.0 +20918,36,19,28,0.0 +20918,49,20,22,0.0 +20918,25,14,36,0.0 +20918,8,40,27,0.0 +20918,17,39,24,0.0 +20918,2,19,22,0.0 +20918,7,30,7,0.0 +20918,75,7.75,19,0.0 +20918,38,263.5,31,0.0 +20918,24,4.5,11,0.0 +20918,76,18,5,0.0 +20918,71,21.5,49,0.0 +20918,70,15,20,0.0 +20918,30,25.89,50,0.0 +20918,63,43.9,3,0.0 +20918,4,22,28,0.0 +20918,51,53,20,0.0 +20918,54,7.45,10,0.0 +20918,67,14,44,0.0 +20919,64,33.25,43,0.0 +20919,58,13.25,23,0.0 +20919,65,21.05,28,0.0 +20919,38,263.5,15,0.0 +20919,51,53,48,0.0 +20919,63,43.9,3,0.0 +20920,1,18,7,0.0 +20920,3,10,15,0.0 +20920,26,31.23,2,0.0 +20920,69,36,46,0.0 +20920,55,24,44,0.0 +20920,11,21,20,0.0 +20920,76,18,10,0.0 +20920,41,9.65,19,0.0 +20920,8,40,14,0.0 +20920,34,14,30,0.0 +20920,43,46,31,0.0 +20920,47,9.5,43,0.0 +20920,60,34,17,0.0 +20920,53,32.8,36,0.0 +20920,74,10,48,0.0 +20920,44,19.45,19,0.0 +20920,40,18.4,8,0.0 +20920,63,43.9,36,0.0 +20920,64,33.25,30,0.0 +20920,68,12.5,8,0.0 +20920,35,18,47,0.0 +20920,56,38,33,0.0 +20920,13,6,30,0.0 +20920,50,16.25,23,0.0 +20920,33,2.5,22,0.0 +20920,7,30,13,0.0 +20920,22,21,5,0.0 +20920,5,21.35,41,0.0 +20920,27,43.9,43,0.0 +20920,52,7,20,0.0 +20920,65,21.05,7,0.0 +20920,45,9.5,28,0.0 +20920,2,19,49,0.0 +20920,18,62.5,7,0.0 +20920,4,22,10,0.0 +20920,58,13.25,39,0.0 +20920,67,14,37,0.0 +20920,14,23.25,23,0.0 +20920,62,49.3,26,0.0 +20920,21,10,49,0.0 +20920,24,4.5,48,0.0 +20920,59,55,28,0.0 +20920,51,53,3,0.0 +20920,61,28.5,2,0.0 +20920,9,97,25,0.0 +20920,30,25.89,9,0.0 +20920,48,12.75,43,0.0 +20920,23,9,46,0.0 +20920,15,15.5,7,0.0 +20920,75,7.75,22,0.0 +20920,19,9.2,19,0.0 +20920,29,123.79,39,0.0 +20920,38,263.5,29,0.0 +20920,20,81,3,0.0 +20920,46,12,43,0.0 +20920,16,17.45,39,0.0 +20920,42,14,42,0.0 +20920,72,34.8,24,0.0 +20920,6,25,43,0.0 +20920,12,38,14,0.0 +20920,17,39,38,0.0 +20920,37,26,13,0.0 +20920,73,15,22,0.0 +20920,10,31,43,0.0 +20920,39,18,6,0.0 +20920,28,45.6,49,0.0 +20920,49,20,33,0.0 +20920,36,19,27,0.0 +20920,71,21.5,26,0.0 +20920,70,15,36,0.0 +20921,43,46,40,0.0 +20921,7,30,19,0.0 +20921,47,9.5,41,0.0 +20921,64,33.25,41,0.0 +20921,31,12.5,49,0.0 +20921,53,32.8,12,0.0 +20921,60,34,42,0.0 +20921,23,9,8,0.0 +20921,17,39,16,0.0 +20921,37,26,34,0.0 +20921,68,12.5,26,0.0 +20921,6,25,17,0.0 +20921,56,38,37,0.0 +20921,54,7.45,14,0.0 +20921,61,28.5,26,0.0 +20921,75,7.75,22,0.0 +20921,13,6,43,0.0 +20921,2,19,19,0.0 +20921,36,19,2,0.0 +20921,50,16.25,35,0.0 +20921,5,21.35,18,0.0 +20921,63,43.9,13,0.0 +20921,19,9.2,17,0.0 +20921,33,2.5,36,0.0 +20921,62,49.3,41,0.0 +20921,76,18,10,0.0 +20921,77,13,21,0.0 +20921,42,14,31,0.0 +20921,38,263.5,14,0.0 +20921,44,19.45,35,0.0 +20921,58,13.25,14,0.0 +20921,65,21.05,28,0.0 +20921,18,62.5,9,0.0 +20921,45,9.5,31,0.0 +20921,70,15,4,0.0 +20921,20,81,24,0.0 +20921,74,10,14,0.0 +20921,16,17.45,8,0.0 +20921,57,19.5,16,0.0 +20921,32,32,4,0.0 +20921,35,18,3,0.0 +20921,72,34.8,31,0.0 +20921,1,18,33,0.0 +20921,51,53,41,0.0 +20921,41,9.65,4,0.0 +20921,8,40,38,0.0 +20921,26,31.23,40,0.0 +20922,5,21.35,23,0.0 +20922,3,10,1,0.0 +20922,35,18,15,0.0 +20922,30,25.89,49,0.0 +20922,64,33.25,50,0.0 +20922,55,24,5,0.0 +20922,18,62.5,6,0.0 +20922,39,18,22,0.0 +20922,65,21.05,49,0.0 +20922,72,34.8,20,0.0 +20922,41,9.65,33,0.0 +20922,36,19,3,0.0 +20922,48,12.75,17,0.0 +20922,75,7.75,30,0.0 +20922,17,39,35,0.0 +20922,33,2.5,34,0.0 +20922,7,30,25,0.0 +20922,42,14,15,0.0 +20922,69,36,7,0.0 +20922,27,43.9,22,0.0 +20922,20,81,49,0.0 +20922,12,38,42,0.0 +20922,60,34,4,0.0 +20922,52,7,12,0.0 +20922,11,21,34,0.0 +20922,44,19.45,33,0.0 +20922,2,19,46,0.0 +20922,38,263.5,30,0.0 +20922,19,9.2,44,0.0 +20922,6,25,11,0.0 +20922,68,12.5,19,0.0 +20922,26,31.23,24,0.0 +20922,28,45.6,24,0.0 +20922,43,46,41,0.0 +20922,10,31,24,0.0 +20922,24,4.5,4,0.0 +20922,74,10,42,0.0 +20922,58,13.25,1,0.0 +20922,4,22,25,0.0 +20922,1,18,25,0.0 +20922,46,12,10,0.0 +20922,63,43.9,41,0.0 +20922,67,14,48,0.0 +20922,32,32,36,0.0 +20922,71,21.5,44,0.0 +20922,76,18,6,0.0 +20922,59,55,1,0.0 +20922,61,28.5,13,0.0 +20922,77,13,8,0.0 +20922,22,21,11,0.0 +20922,57,19.5,9,0.0 +20922,40,18.4,15,0.0 +20922,23,9,22,0.0 +20922,15,15.5,4,0.0 +20922,13,6,8,0.0 +20922,73,15,46,0.0 +20922,34,14,25,0.0 +20922,51,53,43,0.0 +20922,50,16.25,1,0.0 +20922,9,97,48,0.0 +20923,61,28.5,31,0.0 +20923,75,7.75,32,0.0 +20923,65,21.05,19,0.0 +20923,9,97,16,0.0 +20923,35,18,38,0.0 +20923,72,34.8,42,0.0 +20923,46,12,37,0.0 +20923,26,31.23,38,0.0 +20923,62,49.3,34,0.0 +20924,54,7.45,29,0.0 +20924,74,10,34,0.0 +20924,16,17.45,7,0.0 +20924,69,36,10,0.0 +20924,31,12.5,37,0.0 +20924,53,32.8,36,0.0 +20924,75,7.75,22,0.0 +20924,44,19.45,41,0.0 +20924,21,10,48,0.0 +20924,59,55,46,0.0 +20924,37,26,23,0.0 +20924,45,9.5,25,0.0 +20924,24,4.5,8,0.0 +20924,3,10,50,0.0 +20924,27,43.9,7,0.0 +20924,1,18,37,0.0 +20924,46,12,50,0.0 +20924,76,18,42,0.0 +20924,56,38,38,0.0 +20924,77,13,28,0.0 +20924,40,18.4,46,0.0 +20924,71,21.5,49,0.0 +20924,70,15,21,0.0 +20924,57,19.5,49,0.0 +20924,64,33.25,34,0.0 +20924,51,53,36,0.0 +20924,17,39,50,0.0 +20924,13,6,21,0.0 +20924,41,9.65,1,0.0 +20924,73,15,7,0.0 +20924,14,23.25,2,0.0 +20924,36,19,27,0.0 +20924,30,25.89,39,0.0 +20924,26,31.23,43,0.0 +20924,5,21.35,44,0.0 +20924,43,46,12,0.0 +20924,47,9.5,14,0.0 +20924,55,24,24,0.0 +20924,48,12.75,37,0.0 +20924,67,14,35,0.0 +20924,4,22,14,0.0 +20924,11,21,18,0.0 +20924,28,45.6,45,0.0 +20925,1,18,31,0.0 +20925,46,12,33,0.0 +20925,45,9.5,38,0.0 +20926,69,36,20,0.0 +20926,66,17,13,0.0 +20926,34,14,48,0.0 +20926,25,14,28,0.0 +20926,55,24,8,0.0 +20926,33,2.5,4,0.0 +20926,67,14,23,0.0 +20926,8,40,25,0.0 +20926,62,49.3,47,0.0 +20926,52,7,25,0.0 +20926,71,21.5,43,0.0 +20926,23,9,30,0.0 +20926,26,31.23,37,0.0 +20926,18,62.5,33,0.0 +20926,42,14,28,0.0 +20926,61,28.5,44,0.0 +20926,10,31,35,0.0 +20926,27,43.9,15,0.0 +20926,60,34,15,0.0 +20926,15,15.5,29,0.0 +20926,31,12.5,44,0.0 +20926,5,21.35,37,0.0 +20926,47,9.5,27,0.0 +20926,29,123.79,16,0.0 +20926,17,39,37,0.0 +20926,48,12.75,21,0.0 +20926,14,23.25,17,0.0 +20926,38,263.5,41,0.0 +20926,7,30,36,0.0 +20926,74,10,6,0.0 +20926,9,97,20,0.0 +20926,43,46,14,0.0 +20926,36,19,4,0.0 +20926,3,10,36,0.0 +20926,16,17.45,27,0.0 +20926,64,33.25,27,0.0 +20926,11,21,20,0.0 +20926,54,7.45,22,0.0 +20926,37,26,44,0.0 +20926,45,9.5,35,0.0 +20926,76,18,28,0.0 +20926,65,21.05,49,0.0 +20926,6,25,43,0.0 +20926,59,55,32,0.0 +20926,22,21,8,0.0 +20926,75,7.75,9,0.0 +20926,12,38,27,0.0 +20926,63,43.9,11,0.0 +20926,1,18,18,0.0 +20926,70,15,3,0.0 +20926,21,10,40,0.0 +20926,35,18,4,0.0 +20926,56,38,20,0.0 +20926,32,32,20,0.0 +20926,20,81,20,0.0 +20926,58,13.25,27,0.0 +20926,30,25.89,20,0.0 +20926,44,19.45,49,0.0 +20926,2,19,37,0.0 +20926,49,20,18,0.0 +20926,57,19.5,9,0.0 +20926,39,18,30,0.0 +20926,77,13,47,0.0 +20926,72,34.8,16,0.0 +20926,13,6,14,0.0 +20926,24,4.5,44,0.0 +20926,4,22,13,0.0 +20926,73,15,3,0.0 +20927,75,7.75,12,0.0 +20927,64,33.25,44,0.0 +20927,48,12.75,35,0.0 +20927,60,34,47,0.0 +20927,21,10,26,0.0 +20927,26,31.23,17,0.0 +20927,4,22,27,0.0 +20927,42,14,13,0.0 +20927,70,15,2,0.0 +20927,58,13.25,2,0.0 +20927,18,62.5,35,0.0 +20927,76,18,7,0.0 +20927,37,26,46,0.0 +20927,23,9,44,0.0 +20927,62,49.3,21,0.0 +20927,63,43.9,5,0.0 +20927,29,123.79,47,0.0 +20927,51,53,6,0.0 +20927,52,7,20,0.0 +20927,13,6,11,0.0 +20927,3,10,34,0.0 +20927,56,38,20,0.0 +20927,36,19,45,0.0 +20927,1,18,8,0.0 +20927,31,12.5,2,0.0 +20927,11,21,8,0.0 +20927,32,32,49,0.0 +20927,66,17,29,0.0 +20927,65,21.05,13,0.0 +20927,33,2.5,1,0.0 +20927,25,14,13,0.0 +20927,30,25.89,2,0.0 +20927,67,14,1,0.0 +20927,50,16.25,14,0.0 +20927,54,7.45,23,0.0 +20927,8,40,21,0.0 +20927,57,19.5,27,0.0 +20927,41,9.65,23,0.0 +20927,12,38,39,0.0 +20927,43,46,5,0.0 +20927,19,9.2,26,0.0 +20927,72,34.8,18,0.0 +20927,38,263.5,49,0.0 +20927,20,81,28,0.0 +20927,5,21.35,28,0.0 +20927,34,14,32,0.0 +20927,68,12.5,50,0.0 +20927,59,55,29,0.0 +20927,61,28.5,25,0.0 +20927,40,18.4,33,0.0 +20927,17,39,8,0.0 +20927,53,32.8,30,0.0 +20927,2,19,50,0.0 +20927,6,25,8,0.0 +20927,14,23.25,44,0.0 +20927,10,31,25,0.0 +20927,24,4.5,18,0.0 +20927,44,19.45,47,0.0 +20927,22,21,43,0.0 +20927,16,17.45,23,0.0 +20927,55,24,26,0.0 +20928,66,17,20,0.0 +20928,26,31.23,29,0.0 +20928,68,12.5,20,0.0 +20928,25,14,20,0.0 +20928,12,38,13,0.0 +20928,60,34,20,0.0 +20928,74,10,8,0.0 +20928,56,38,48,0.0 +20928,37,26,19,0.0 +20928,50,16.25,30,0.0 +20928,41,9.65,19,0.0 +20928,57,19.5,11,0.0 +20928,3,10,26,0.0 +20928,42,14,13,0.0 +20928,39,18,41,0.0 +20928,22,21,34,0.0 +20928,24,4.5,34,0.0 +20928,27,43.9,13,0.0 +20928,2,19,49,0.0 +20928,34,14,23,0.0 +20928,70,15,19,0.0 +20928,45,9.5,5,0.0 +20928,47,9.5,29,0.0 +20928,29,123.79,4,0.0 +20928,1,18,33,0.0 +20928,61,28.5,30,0.0 +20928,72,34.8,37,0.0 +20928,21,10,9,0.0 +20928,59,55,8,0.0 +20928,44,19.45,12,0.0 +20928,46,12,32,0.0 +20928,13,6,39,0.0 +20928,76,18,48,0.0 +20928,32,32,27,0.0 +20928,48,12.75,43,0.0 +20928,77,13,12,0.0 +20928,40,18.4,3,0.0 +20928,15,15.5,12,0.0 +20928,6,25,21,0.0 +20928,36,19,39,0.0 +20928,65,21.05,28,0.0 +20928,14,23.25,49,0.0 +20928,67,14,16,0.0 +20928,71,21.5,19,0.0 +20928,43,46,17,0.0 +20928,53,32.8,28,0.0 +20928,69,36,34,0.0 +20928,23,9,48,0.0 +20928,20,81,6,0.0 +20928,58,13.25,35,0.0 +20928,19,9.2,1,0.0 +20928,38,263.5,14,0.0 +20928,28,45.6,19,0.0 +20928,64,33.25,9,0.0 +20928,54,7.45,10,0.0 +20928,18,62.5,5,0.0 +20928,16,17.45,13,0.0 +20928,17,39,25,0.0 +20928,49,20,38,0.0 +20928,5,21.35,12,0.0 +20928,7,30,34,0.0 +20928,35,18,7,0.0 +20928,55,24,3,0.0 +20928,10,31,14,0.0 +20928,62,49.3,33,0.0 +20928,31,12.5,44,0.0 +20928,11,21,43,0.0 +20928,9,97,47,0.0 +20928,73,15,8,0.0 +20928,63,43.9,3,0.0 +20928,33,2.5,29,0.0 +20928,8,40,8,0.0 +20928,52,7,32,0.0 +20929,19,9.2,6,0.0 +20929,67,14,17,0.0 +20929,70,15,49,0.0 +20929,24,4.5,7,0.0 +20929,37,26,22,0.0 +20929,14,23.25,24,0.0 +20929,74,10,7,0.0 +20929,64,33.25,24,0.0 +20929,4,22,31,0.0 +20929,69,36,14,0.0 +20929,32,32,39,0.0 +20929,29,123.79,2,0.0 +20929,39,18,29,0.0 +20929,63,43.9,36,0.0 +20929,68,12.5,33,0.0 +20929,2,19,15,0.0 +20929,57,19.5,21,0.0 +20929,7,30,3,0.0 +20929,44,19.45,28,0.0 +20929,58,13.25,40,0.0 +20929,20,81,13,0.0 +20929,51,53,4,0.0 +20929,9,97,6,0.0 +20929,50,16.25,41,0.0 +20929,21,10,13,0.0 +20929,65,21.05,1,0.0 +20929,42,14,47,0.0 +20929,33,2.5,23,0.0 +20929,62,49.3,9,0.0 +20929,52,7,41,0.0 +20929,16,17.45,36,0.0 +20929,17,39,33,0.0 +20929,6,25,36,0.0 +20929,45,9.5,20,0.0 +20929,27,43.9,16,0.0 +20929,35,18,45,0.0 +20929,72,34.8,45,0.0 +20929,30,25.89,8,0.0 +20929,38,263.5,32,0.0 +20929,48,12.75,36,0.0 +20929,76,18,26,0.0 +20929,11,21,43,0.0 +20929,3,10,18,0.0 +20929,12,38,38,0.0 +20929,73,15,37,0.0 +20929,77,13,7,0.0 +20929,22,21,10,0.0 +20929,59,55,28,0.0 +20929,15,15.5,8,0.0 +20929,47,9.5,5,0.0 +20929,49,20,42,0.0 +20929,31,12.5,7,0.0 +20929,13,6,43,0.0 +20929,23,9,42,0.0 +20929,25,14,31,0.0 +20929,8,40,13,0.0 +20929,55,24,36,0.0 +20929,53,32.8,23,0.0 +20929,5,21.35,21,0.0 +20929,1,18,2,0.0 +20929,43,46,8,0.0 +20929,61,28.5,3,0.0 +20929,36,19,44,0.0 +20929,46,12,36,0.0 +20929,56,38,28,0.0 +20929,26,31.23,33,0.0 +20929,75,7.75,14,0.0 +20929,10,31,6,0.0 +20929,40,18.4,13,0.0 +20929,54,7.45,13,0.0 +20930,39,18,2,0.0 +20930,21,10,18,0.0 +20930,35,18,16,0.0 +20930,4,22,35,0.0 +20930,37,26,31,0.0 +20930,50,16.25,41,0.0 +20930,23,9,1,0.0 +20930,64,33.25,20,0.0 +20930,55,24,4,0.0 +20930,48,12.75,28,0.0 +20930,62,49.3,4,0.0 +20930,31,12.5,34,0.0 +20930,69,36,32,0.0 +20930,40,18.4,10,0.0 +20930,28,45.6,3,0.0 +20930,15,15.5,23,0.0 +20930,17,39,43,0.0 +20930,9,97,50,0.0 +20930,5,21.35,47,0.0 +20930,18,62.5,33,0.0 +20930,16,17.45,47,0.0 +20930,29,123.79,1,0.0 +20930,41,9.65,17,0.0 +20930,70,15,18,0.0 +20930,33,2.5,3,0.0 +20930,75,7.75,22,0.0 +20930,71,21.5,22,0.0 +20930,14,23.25,32,0.0 +20930,10,31,31,0.0 +20930,44,19.45,49,0.0 +20930,1,18,48,0.0 +20930,43,46,34,0.0 +20930,11,21,33,0.0 +20930,58,13.25,10,0.0 +20930,59,55,9,0.0 +20930,68,12.5,19,0.0 +20930,7,30,48,0.0 +20930,6,25,23,0.0 +20930,36,19,18,0.0 +20930,72,34.8,33,0.0 +20930,53,32.8,44,0.0 +20930,76,18,35,0.0 +20930,52,7,8,0.0 +20930,32,32,38,0.0 +20930,8,40,17,0.0 +20930,38,263.5,29,0.0 +20930,49,20,44,0.0 +20930,74,10,16,0.0 +20930,30,25.89,35,0.0 +20930,61,28.5,2,0.0 +20930,22,21,8,0.0 +20930,73,15,22,0.0 +20930,57,19.5,45,0.0 +20930,56,38,7,0.0 +20930,26,31.23,7,0.0 +20930,12,38,40,0.0 +20930,34,14,3,0.0 +20930,20,81,29,0.0 +20930,19,9.2,42,0.0 +20930,51,53,11,0.0 +20930,13,6,10,0.0 +20930,60,34,22,0.0 +20930,77,13,9,0.0 +20930,45,9.5,4,0.0 +20930,54,7.45,6,0.0 +20930,46,12,38,0.0 +20930,3,10,48,0.0 +20930,2,19,47,0.0 +20930,24,4.5,49,0.0 +20930,63,43.9,35,0.0 +20930,25,14,15,0.0 +20930,47,9.5,50,0.0 +20930,66,17,49,0.0 +20930,42,14,17,0.0 +20930,27,43.9,41,0.0 +20930,65,21.05,11,0.0 +20931,71,21.5,42,0.0 +20931,33,2.5,15,0.0 +20931,2,19,46,0.0 +20931,20,81,34,0.0 +20931,49,20,13,0.0 +20931,53,32.8,48,0.0 +20931,26,31.23,29,0.0 +20931,25,14,43,0.0 +20931,44,19.45,29,0.0 +20931,45,9.5,23,0.0 +20931,70,15,35,0.0 +20931,65,21.05,44,0.0 +20931,30,25.89,3,0.0 +20931,35,18,19,0.0 +20931,3,10,39,0.0 +20931,60,34,39,0.0 +20931,10,31,48,0.0 +20931,46,12,14,0.0 +20931,73,15,25,0.0 +20931,75,7.75,13,0.0 +20931,38,263.5,8,0.0 +20931,62,49.3,21,0.0 +20931,48,12.75,39,0.0 +20931,12,38,31,0.0 +20931,54,7.45,25,0.0 +20931,5,21.35,17,0.0 +20931,43,46,28,0.0 +20931,56,38,30,0.0 +20931,59,55,28,0.0 +20931,68,12.5,3,0.0 +20931,69,36,41,0.0 +20931,7,30,18,0.0 +20931,28,45.6,32,0.0 +20931,11,21,32,0.0 +20931,29,123.79,21,0.0 +20931,23,9,2,0.0 +20931,36,19,1,0.0 +20931,16,17.45,19,0.0 +20931,4,22,13,0.0 +20931,39,18,42,0.0 +20931,41,9.65,42,0.0 +20931,8,40,3,0.0 +20931,52,7,39,0.0 +20931,31,12.5,50,0.0 +20931,74,10,15,0.0 +20931,42,14,16,0.0 +20931,55,24,17,0.0 +20931,21,10,24,0.0 +20931,67,14,2,0.0 +20931,27,43.9,22,0.0 +20931,14,23.25,48,0.0 +20931,15,15.5,11,0.0 +20931,64,33.25,29,0.0 +20931,1,18,14,0.0 +20931,47,9.5,7,0.0 +20931,72,34.8,26,0.0 +20931,58,13.25,2,0.0 +20931,19,9.2,11,0.0 +20931,77,13,3,0.0 +20931,24,4.5,35,0.0 +20931,76,18,42,0.0 +20931,18,62.5,38,0.0 +20931,22,21,49,0.0 +20931,17,39,29,0.0 +20931,61,28.5,32,0.0 +20931,57,19.5,38,0.0 +20931,34,14,30,0.0 +20931,9,97,18,0.0 +20931,40,18.4,42,0.0 +20931,63,43.9,30,0.0 +20931,13,6,24,0.0 +20931,32,32,40,0.0 +20931,6,25,24,0.0 +20931,51,53,17,0.0 +20932,42,14,22,0.0 +20932,18,62.5,4,0.0 +20933,12,38,15,0.0 +20933,76,18,33,0.0 +20933,35,18,43,0.0 +20933,10,31,24,0.0 +20933,6,25,5,0.0 +20933,7,30,11,0.0 +20933,64,33.25,23,0.0 +20933,70,15,1,0.0 +20933,15,15.5,21,0.0 +20933,18,62.5,2,0.0 +20933,26,31.23,35,0.0 +20933,22,21,4,0.0 +20933,4,22,21,0.0 +20933,58,13.25,5,0.0 +20933,71,21.5,14,0.0 +20933,9,97,17,0.0 +20933,77,13,47,0.0 +20933,55,24,41,0.0 +20933,61,28.5,12,0.0 +20933,40,18.4,3,0.0 +20933,60,34,11,0.0 +20933,43,46,40,0.0 +20933,38,263.5,6,0.0 +20933,75,7.75,4,0.0 +20933,46,12,47,0.0 +20933,14,23.25,32,0.0 +20933,62,49.3,31,0.0 +20933,1,18,10,0.0 +20933,19,9.2,46,0.0 +20933,13,6,41,0.0 +20933,33,2.5,6,0.0 +20933,48,12.75,5,0.0 +20933,16,17.45,12,0.0 +20933,74,10,23,0.0 +20933,28,45.6,50,0.0 +20933,57,19.5,24,0.0 +20933,52,7,22,0.0 +20933,68,12.5,15,0.0 +20933,69,36,43,0.0 +20933,44,19.45,11,0.0 +20933,37,26,40,0.0 +20933,20,81,50,0.0 +20933,21,10,30,0.0 +20933,54,7.45,14,0.0 +20933,42,14,44,0.0 +20933,45,9.5,46,0.0 +20933,56,38,48,0.0 +20933,41,9.65,3,0.0 +20933,72,34.8,40,0.0 +20933,24,4.5,8,0.0 +20933,53,32.8,29,0.0 +20933,65,21.05,32,0.0 +20933,34,14,3,0.0 +20933,73,15,8,0.0 +20933,31,12.5,34,0.0 +20933,51,53,30,0.0 +20933,3,10,48,0.0 +20933,11,21,4,0.0 +20933,8,40,39,0.0 +20933,5,21.35,34,0.0 +20933,50,16.25,36,0.0 +20933,32,32,32,0.0 +20934,73,15,27,0.0 +20934,38,263.5,5,0.0 +20934,60,34,19,0.0 +20934,3,10,43,0.0 +20934,43,46,34,0.0 +20934,58,13.25,21,0.0 +20934,1,18,37,0.0 +20934,54,7.45,15,0.0 +20934,24,4.5,20,0.0 +20934,72,34.8,37,0.0 +20934,29,123.79,30,0.0 +20934,26,31.23,49,0.0 +20934,20,81,5,0.0 +20934,13,6,10,0.0 +20934,5,21.35,36,0.0 +20934,39,18,10,0.0 +20934,27,43.9,45,0.0 +20934,31,12.5,33,0.0 +20934,10,31,8,0.0 +20934,69,36,22,0.0 +20934,19,9.2,29,0.0 +20934,4,22,44,0.0 +20934,65,21.05,27,0.0 +20934,53,32.8,48,0.0 +20934,15,15.5,22,0.0 +20934,22,21,26,0.0 +20934,56,38,49,0.0 +20934,28,45.6,38,0.0 +20934,25,14,39,0.0 +20934,47,9.5,16,0.0 +20934,66,17,18,0.0 +20934,63,43.9,9,0.0 +20934,75,7.75,40,0.0 +20934,34,14,29,0.0 +20934,7,30,33,0.0 +20934,45,9.5,19,0.0 +20934,55,24,31,0.0 +20934,64,33.25,43,0.0 +20934,36,19,18,0.0 +20934,11,21,26,0.0 +20934,49,20,28,0.0 +20934,50,16.25,41,0.0 +20934,67,14,6,0.0 +20934,51,53,23,0.0 +20934,62,49.3,34,0.0 +20935,55,24,19,0.0 +20935,3,10,25,0.0 +20935,76,18,33,0.0 +20935,54,7.45,26,0.0 +20935,16,17.45,28,0.0 +20935,25,14,48,0.0 +20935,22,21,49,0.0 +20935,40,18.4,16,0.0 +20935,23,9,7,0.0 +20935,18,62.5,13,0.0 +20935,59,55,38,0.0 +20935,10,31,35,0.0 +20935,73,15,2,0.0 +20935,46,12,19,0.0 +20935,77,13,50,0.0 +20935,8,40,44,0.0 +20935,53,32.8,14,0.0 +20935,74,10,45,0.0 +20935,62,49.3,16,0.0 +20935,72,34.8,28,0.0 +20935,14,23.25,25,0.0 +20935,58,13.25,28,0.0 +20935,29,123.79,2,0.0 +20935,2,19,7,0.0 +20935,36,19,28,0.0 +20935,39,18,36,0.0 +20935,67,14,44,0.0 +20935,28,45.6,11,0.0 +20935,33,2.5,34,0.0 +20935,57,19.5,35,0.0 +20935,17,39,40,0.0 +20935,51,53,17,0.0 +20935,30,25.89,48,0.0 +20935,48,12.75,21,0.0 +20935,41,9.65,5,0.0 +20935,5,21.35,39,0.0 +20935,42,14,34,0.0 +20935,70,15,40,0.0 +20935,31,12.5,48,0.0 +20936,21,10,13,0.0 +20936,39,18,27,0.0 +20936,54,7.45,5,0.0 +20936,67,14,7,0.0 +20936,48,12.75,3,0.0 +20936,76,18,2,0.0 +20936,28,45.6,17,0.0 +20936,37,26,21,0.0 +20936,57,19.5,39,0.0 +20936,59,55,15,0.0 +20936,43,46,44,0.0 +20936,18,62.5,19,0.0 +20937,44,19.45,48,0.0 +20937,59,55,14,0.0 +20937,28,45.6,16,0.0 +20937,74,10,40,0.0 +20937,14,23.25,2,0.0 +20937,52,7,38,0.0 +20937,20,81,39,0.0 +20937,29,123.79,45,0.0 +20938,38,263.5,12,0.0 +20938,35,18,25,0.0 +20938,6,25,29,0.0 +20938,27,43.9,14,0.0 +20938,47,9.5,29,0.0 +20938,49,20,25,0.0 +20938,46,12,5,0.0 +20938,75,7.75,20,0.0 +20938,37,26,24,0.0 +20938,24,4.5,21,0.0 +20938,61,28.5,4,0.0 +20938,71,21.5,9,0.0 +20938,58,13.25,9,0.0 +20938,13,6,21,0.0 +20938,22,21,46,0.0 +20938,57,19.5,15,0.0 +20938,33,2.5,39,0.0 +20938,43,46,46,0.0 +20938,73,15,12,0.0 +20938,23,9,2,0.0 +20938,7,30,50,0.0 +20938,31,12.5,2,0.0 +20938,20,81,44,0.0 +20938,9,97,45,0.0 +20938,18,62.5,5,0.0 +20938,64,33.25,20,0.0 +20938,74,10,17,0.0 +20938,5,21.35,12,0.0 +20938,77,13,22,0.0 +20938,15,15.5,47,0.0 +20938,59,55,17,0.0 +20938,68,12.5,34,0.0 +20939,62,49.3,16,0.0 +20939,13,6,6,0.0 +20939,40,18.4,22,0.0 +20939,12,38,7,0.0 +20939,38,263.5,27,0.0 +20939,73,15,42,0.0 +20939,6,25,27,0.0 +20939,48,12.75,6,0.0 +20939,10,31,25,0.0 +20939,55,24,31,0.0 +20939,27,43.9,35,0.0 +20939,67,14,32,0.0 +20939,5,21.35,50,0.0 +20939,43,46,19,0.0 +20939,37,26,41,0.0 +20939,50,16.25,29,0.0 +20939,58,13.25,33,0.0 +20939,24,4.5,27,0.0 +20939,76,18,10,0.0 +20939,25,14,38,0.0 +20939,66,17,2,0.0 +20939,26,31.23,33,0.0 +20939,3,10,14,0.0 +20939,72,34.8,46,0.0 +20939,65,21.05,33,0.0 +20939,11,21,28,0.0 +20939,41,9.65,28,0.0 +20939,68,12.5,34,0.0 +20939,18,62.5,2,0.0 +20939,70,15,31,0.0 +20939,9,97,30,0.0 +20939,52,7,41,0.0 +20939,59,55,50,0.0 +20939,22,21,9,0.0 +20939,51,53,17,0.0 +20939,44,19.45,21,0.0 +20939,56,38,16,0.0 +20939,53,32.8,44,0.0 +20939,33,2.5,9,0.0 +20939,2,19,2,0.0 +20939,36,19,44,0.0 +20939,30,25.89,41,0.0 +20939,63,43.9,25,0.0 +20939,60,34,36,0.0 +20939,71,21.5,50,0.0 +20939,34,14,44,0.0 +20939,69,36,5,0.0 +20939,15,15.5,34,0.0 +20940,50,16.25,20,0.0 +20940,34,14,46,0.0 +20940,45,9.5,4,0.0 +20940,21,10,50,0.0 +20940,73,15,31,0.0 +20940,53,32.8,6,0.0 +20940,41,9.65,6,0.0 +20940,27,43.9,11,0.0 +20940,52,7,46,0.0 +20940,35,18,39,0.0 +20940,13,6,41,0.0 +20940,9,97,38,0.0 +20940,29,123.79,1,0.0 +20940,28,45.6,49,0.0 +20940,75,7.75,7,0.0 +20940,56,38,42,0.0 +20940,40,18.4,39,0.0 +20940,31,12.5,30,0.0 +20940,20,81,36,0.0 +20940,43,46,7,0.0 +20940,5,21.35,36,0.0 +20940,66,17,26,0.0 +20940,11,21,37,0.0 +20940,7,30,22,0.0 +20940,71,21.5,38,0.0 +20940,62,49.3,14,0.0 +20940,3,10,20,0.0 +20940,4,22,6,0.0 +20940,47,9.5,18,0.0 +20940,10,31,32,0.0 +20940,64,33.25,34,0.0 +20940,59,55,25,0.0 +20940,76,18,15,0.0 +20940,49,20,20,0.0 +20940,74,10,42,0.0 +20940,6,25,2,0.0 +20940,77,13,41,0.0 +20940,30,25.89,44,0.0 +20940,42,14,5,0.0 +20940,8,40,8,0.0 +20940,67,14,21,0.0 +20940,46,12,29,0.0 +20940,33,2.5,29,0.0 +20940,12,38,1,0.0 +20940,57,19.5,45,0.0 +20940,69,36,49,0.0 +20940,32,32,23,0.0 +20940,17,39,45,0.0 +20940,26,31.23,32,0.0 +20940,2,19,13,0.0 +20940,37,26,19,0.0 +20940,18,62.5,20,0.0 +20940,23,9,36,0.0 +20940,61,28.5,16,0.0 +20940,55,24,25,0.0 +20940,54,7.45,27,0.0 +20940,24,4.5,28,0.0 +20940,36,19,16,0.0 +20940,72,34.8,6,0.0 +20940,38,263.5,30,0.0 +20940,68,12.5,21,0.0 +20940,19,9.2,40,0.0 +20940,25,14,45,0.0 +20940,65,21.05,41,0.0 +20940,51,53,1,0.0 +20940,70,15,33,0.0 +20940,22,21,29,0.0 +20941,74,10,16,0.0 +20941,64,33.25,21,0.0 +20941,76,18,19,0.0 +20941,42,14,18,0.0 +20941,30,25.89,5,0.0 +20941,15,15.5,20,0.0 +20942,15,15.5,4,0.0 +20942,2,19,33,0.0 +20942,60,34,4,0.0 +20942,14,23.25,27,0.0 +20942,74,10,41,0.0 +20942,30,25.89,30,0.0 +20942,18,62.5,1,0.0 +20942,34,14,27,0.0 +20943,59,55,33,0.0 +20943,19,9.2,28,0.0 +20943,32,32,9,0.0 +20943,5,21.35,30,0.0 +20943,48,12.75,10,0.0 +20943,1,18,16,0.0 +20943,17,39,16,0.0 +20943,63,43.9,41,0.0 +20943,47,9.5,5,0.0 +20943,18,62.5,42,0.0 +20943,71,21.5,37,0.0 +20943,3,10,44,0.0 +20943,42,14,36,0.0 +20943,70,15,44,0.0 +20943,7,30,30,0.0 +20943,72,34.8,35,0.0 +20944,68,12.5,29,0.0 +20944,40,18.4,35,0.0 +20944,61,28.5,25,0.0 +20944,18,62.5,41,0.0 +20944,29,123.79,16,0.0 +20944,32,32,8,0.0 +20944,58,13.25,33,0.0 +20944,55,24,25,0.0 +20944,31,12.5,2,0.0 +20944,19,9.2,2,0.0 +20944,50,16.25,31,0.0 +20944,33,2.5,32,0.0 +20944,21,10,1,0.0 +20944,1,18,9,0.0 +20944,64,33.25,32,0.0 +20944,66,17,8,0.0 +20944,35,18,17,0.0 +20944,51,53,50,0.0 +20944,69,36,47,0.0 +20944,27,43.9,20,0.0 +20944,5,21.35,43,0.0 +20944,60,34,15,0.0 +20944,24,4.5,10,0.0 +20944,67,14,50,0.0 +20944,76,18,17,0.0 +20944,34,14,2,0.0 +20944,57,19.5,26,0.0 +20944,10,31,20,0.0 +20944,26,31.23,43,0.0 +20944,14,23.25,44,0.0 +20944,38,263.5,36,0.0 +20944,54,7.45,25,0.0 +20944,41,9.65,10,0.0 +20944,63,43.9,9,0.0 +20944,45,9.5,30,0.0 +20944,20,81,9,0.0 +20944,47,9.5,47,0.0 +20944,46,12,26,0.0 +20944,25,14,46,0.0 +20944,6,25,33,0.0 +20944,42,14,3,0.0 +20944,72,34.8,46,0.0 +20944,52,7,6,0.0 +20944,43,46,42,0.0 +20944,44,19.45,24,0.0 +20944,49,20,16,0.0 +20944,2,19,35,0.0 +20944,73,15,1,0.0 +20944,3,10,28,0.0 +20944,23,9,26,0.0 +20944,16,17.45,36,0.0 +20944,75,7.75,24,0.0 +20944,56,38,36,0.0 +20944,77,13,7,0.0 +20944,28,45.6,33,0.0 +20944,39,18,36,0.0 +20944,12,38,30,0.0 +20944,36,19,12,0.0 +20944,62,49.3,25,0.0 +20944,74,10,20,0.0 +20944,7,30,36,0.0 +20944,11,21,17,0.0 +20944,4,22,6,0.0 +20944,65,21.05,22,0.0 +20944,17,39,34,0.0 +20944,13,6,21,0.0 +20944,59,55,44,0.0 +20944,70,15,49,0.0 +20944,37,26,48,0.0 +20944,9,97,4,0.0 +20944,8,40,47,0.0 +20944,71,21.5,33,0.0 +20944,30,25.89,9,0.0 +20944,22,21,41,0.0 +20944,53,32.8,40,0.0 +20945,65,21.05,50,0.0 +20945,61,28.5,18,0.0 +20945,76,18,50,0.0 +20945,66,17,42,0.0 +20945,73,15,50,0.0 +20945,11,21,26,0.0 +20945,25,14,2,0.0 +20945,55,24,9,0.0 +20945,71,21.5,37,0.0 +20945,54,7.45,9,0.0 +20945,56,38,25,0.0 +20945,5,21.35,30,0.0 +20945,4,22,46,0.0 +20945,34,14,13,0.0 +20945,1,18,23,0.0 +20945,7,30,10,0.0 +20945,39,18,12,0.0 +20945,43,46,7,0.0 +20945,12,38,29,0.0 +20946,75,7.75,38,0.0 +20946,24,4.5,50,0.0 +20946,53,32.8,7,0.0 +20946,36,19,38,0.0 +20946,26,31.23,43,0.0 +20946,3,10,11,0.0 +20946,50,16.25,36,0.0 +20946,31,12.5,38,0.0 +20946,20,81,24,0.0 +20946,13,6,36,0.0 +20946,14,23.25,14,0.0 +20946,62,49.3,50,0.0 +20946,33,2.5,40,0.0 +20947,76,18,10,0.0 +20947,73,15,8,0.0 +20947,56,38,13,0.0 +20947,39,18,16,0.0 +20947,12,38,37,0.0 +20947,72,34.8,25,0.0 +20947,7,30,8,0.0 +20947,63,43.9,36,0.0 +20947,32,32,41,0.0 +20947,1,18,28,0.0 +20947,36,19,33,0.0 +20947,25,14,46,0.0 +20947,71,21.5,36,0.0 +20947,28,45.6,13,0.0 +20947,17,39,41,0.0 +20947,16,17.45,45,0.0 +20947,19,9.2,16,0.0 +20947,8,40,14,0.0 +20947,2,19,6,0.0 +20947,64,33.25,38,0.0 +20947,3,10,29,0.0 +20947,21,10,5,0.0 +20947,38,263.5,3,0.0 +20947,49,20,20,0.0 +20947,22,21,41,0.0 +20947,67,14,5,0.0 +20947,29,123.79,47,0.0 +20947,68,12.5,36,0.0 +20947,48,12.75,39,0.0 +20947,30,25.89,39,0.0 +20947,50,16.25,6,0.0 +20947,53,32.8,48,0.0 +20947,20,81,29,0.0 +20947,75,7.75,32,0.0 +20947,69,36,1,0.0 +20947,52,7,23,0.0 +20947,33,2.5,45,0.0 +20947,58,13.25,10,0.0 +20947,5,21.35,20,0.0 +20947,14,23.25,10,0.0 +20947,57,19.5,7,0.0 +20947,42,14,20,0.0 +20947,74,10,41,0.0 +20947,11,21,17,0.0 +20947,44,19.45,29,0.0 +20947,23,9,30,0.0 +20947,77,13,48,0.0 +20947,51,53,5,0.0 +20947,27,43.9,26,0.0 +20947,55,24,18,0.0 +20948,68,12.5,16,0.0 +20948,54,7.45,28,0.0 +20948,51,53,35,0.0 +20948,18,62.5,25,0.0 +20948,55,24,42,0.0 +20948,24,4.5,43,0.0 +20948,46,12,8,0.0 +20948,8,40,46,0.0 +20948,59,55,18,0.0 +20948,27,43.9,25,0.0 +20948,45,9.5,11,0.0 +20948,56,38,49,0.0 +20948,12,38,4,0.0 +20948,14,23.25,47,0.0 +20948,37,26,36,0.0 +20948,40,18.4,12,0.0 +20948,10,31,3,0.0 +20948,42,14,39,0.0 +20948,7,30,36,0.0 +20948,53,32.8,14,0.0 +20948,75,7.75,25,0.0 +20948,74,10,42,0.0 +20948,2,19,13,0.0 +20948,33,2.5,13,0.0 +20948,31,12.5,46,0.0 +20948,21,10,21,0.0 +20948,36,19,33,0.0 +20948,9,97,37,0.0 +20948,20,81,32,0.0 +20948,61,28.5,19,0.0 +20948,29,123.79,23,0.0 +20948,44,19.45,23,0.0 +20949,69,36,29,0.0 +20949,59,55,17,0.0 +20949,61,28.5,3,0.0 +20949,31,12.5,27,0.0 +20949,51,53,36,0.0 +20949,12,38,34,0.0 +20949,33,2.5,16,0.0 +20949,9,97,9,0.0 +20949,30,25.89,4,0.0 +20949,22,21,34,0.0 +20949,23,9,34,0.0 +20949,75,7.75,22,0.0 +20949,40,18.4,2,0.0 +20949,45,9.5,48,0.0 +20949,14,23.25,41,0.0 +20949,11,21,10,0.0 +20949,32,32,22,0.0 +20949,64,33.25,44,0.0 +20949,62,49.3,50,0.0 +20949,24,4.5,27,0.0 +20949,72,34.8,21,0.0 +20949,19,9.2,17,0.0 +20949,26,31.23,43,0.0 +20949,52,7,40,0.0 +20949,36,19,27,0.0 +20949,17,39,36,0.0 +20949,15,15.5,13,0.0 +20950,17,39,38,0.0 +20950,48,12.75,32,0.0 +20950,20,81,22,0.0 +20950,39,18,33,0.0 +20950,24,4.5,41,0.0 +20950,49,20,39,0.0 +20950,68,12.5,13,0.0 +20950,37,26,2,0.0 +20950,34,14,41,0.0 +20950,50,16.25,8,0.0 +20950,13,6,42,0.0 +20950,19,9.2,28,0.0 +20950,76,18,41,0.0 +20950,36,19,39,0.0 +20950,71,21.5,7,0.0 +20950,72,34.8,47,0.0 +20950,29,123.79,16,0.0 +20950,57,19.5,31,0.0 +20950,15,15.5,18,0.0 +20950,33,2.5,9,0.0 +20950,7,30,35,0.0 +20950,9,97,44,0.0 +20950,54,7.45,47,0.0 +20950,45,9.5,25,0.0 +20950,31,12.5,50,0.0 +20950,60,34,46,0.0 +20950,75,7.75,8,0.0 +20950,70,15,50,0.0 +20950,47,9.5,24,0.0 +20950,43,46,34,0.0 +20950,2,19,22,0.0 +20950,5,21.35,45,0.0 +20950,1,18,42,0.0 +20950,26,31.23,27,0.0 +20950,11,21,28,0.0 +20950,41,9.65,3,0.0 +20950,4,22,5,0.0 +20950,46,12,29,0.0 +20950,67,14,12,0.0 +20950,56,38,33,0.0 +20950,59,55,31,0.0 +20950,77,13,49,0.0 +20950,22,21,9,0.0 +20950,44,19.45,7,0.0 +20950,30,25.89,40,0.0 +20950,28,45.6,9,0.0 +20950,3,10,22,0.0 +20950,74,10,4,0.0 +20950,58,13.25,40,0.0 +20950,8,40,39,0.0 +20950,62,49.3,25,0.0 +20950,21,10,14,0.0 +20950,55,24,16,0.0 +20950,69,36,1,0.0 +20950,40,18.4,28,0.0 +20950,63,43.9,29,0.0 +20950,38,263.5,31,0.0 +20950,6,25,5,0.0 +20950,61,28.5,14,0.0 +20950,53,32.8,5,0.0 +20950,25,14,44,0.0 +20950,18,62.5,43,0.0 +20950,27,43.9,44,0.0 +20950,35,18,44,0.0 +20950,66,17,32,0.0 +20950,65,21.05,3,0.0 +20950,10,31,25,0.0 +20950,32,32,21,0.0 +20950,42,14,1,0.0 +20950,16,17.45,22,0.0 +20950,52,7,4,0.0 +20950,73,15,30,0.0 +20950,14,23.25,26,0.0 +20950,23,9,15,0.0 +20950,64,33.25,3,0.0 +20950,12,38,41,0.0 +20950,51,53,33,0.0 +20951,30,25.89,44,0.0 +20951,4,22,49,0.0 +20951,27,43.9,46,0.0 +20951,16,17.45,48,0.0 +20951,46,12,50,0.0 +20951,49,20,44,0.0 +20951,74,10,10,0.0 +20951,60,34,32,0.0 +20951,28,45.6,37,0.0 +20951,50,16.25,19,0.0 +20951,23,9,2,0.0 +20951,7,30,3,0.0 +20951,53,32.8,22,0.0 +20951,45,9.5,18,0.0 +20951,25,14,49,0.0 +20952,15,15.5,18,0.0 +20952,54,7.45,30,0.0 +20952,34,14,22,0.0 +20952,41,9.65,32,0.0 +20952,27,43.9,12,0.0 +20952,67,14,10,0.0 +20952,37,26,44,0.0 +20952,53,32.8,44,0.0 +20952,70,15,38,0.0 +20952,1,18,36,0.0 +20952,11,21,42,0.0 +20952,64,33.25,13,0.0 +20952,31,12.5,36,0.0 +20952,23,9,38,0.0 +20952,48,12.75,22,0.0 +20952,65,21.05,16,0.0 +20952,51,53,41,0.0 +20952,7,30,14,0.0 +20952,3,10,21,0.0 +20952,9,97,30,0.0 +20952,71,21.5,19,0.0 +20952,61,28.5,14,0.0 +20952,68,12.5,13,0.0 +20952,42,14,37,0.0 +20952,46,12,18,0.0 +20952,36,19,39,0.0 +20952,25,14,20,0.0 +20952,49,20,41,0.0 +20952,20,81,2,0.0 +20952,50,16.25,29,0.0 +20952,39,18,32,0.0 +20952,56,38,36,0.0 +20952,40,18.4,4,0.0 +20952,72,34.8,13,0.0 +20952,43,46,47,0.0 +20952,16,17.45,14,0.0 +20952,77,13,14,0.0 +20952,32,32,22,0.0 +20952,60,34,8,0.0 +20953,77,13,24,0.0 +20953,1,18,9,0.0 +20953,74,10,15,0.0 +20953,17,39,26,0.0 +20953,16,17.45,17,0.0 +20953,57,19.5,42,0.0 +20953,46,12,34,0.0 +20953,44,19.45,19,0.0 +20953,55,24,29,0.0 +20953,4,22,3,0.0 +20953,70,15,15,0.0 +20953,59,55,36,0.0 +20954,36,19,11,0.0 +20954,9,97,15,0.0 +20954,71,21.5,6,0.0 +20954,14,23.25,22,0.0 +20954,65,21.05,8,0.0 +20954,30,25.89,30,0.0 +20954,12,38,9,0.0 +20954,13,6,19,0.0 +20954,73,15,15,0.0 +20954,8,40,16,0.0 +20954,66,17,16,0.0 +20954,39,18,41,0.0 +20954,48,12.75,27,0.0 +20954,62,49.3,33,0.0 +20954,60,34,47,0.0 +20954,22,21,31,0.0 +20954,74,10,39,0.0 +20954,2,19,12,0.0 +20954,56,38,1,0.0 +20954,54,7.45,50,0.0 +20954,46,12,24,0.0 +20954,18,62.5,23,0.0 +20954,29,123.79,19,0.0 +20954,68,12.5,44,0.0 +20954,75,7.75,50,0.0 +20954,17,39,8,0.0 +20954,19,9.2,21,0.0 +20954,35,18,45,0.0 +20954,16,17.45,49,0.0 +20954,21,10,37,0.0 +20954,15,15.5,32,0.0 +20954,42,14,50,0.0 +20954,55,24,46,0.0 +20955,63,43.9,17,0.0 +20955,14,23.25,40,0.0 +20955,28,45.6,44,0.0 +20955,33,2.5,16,0.0 +20956,42,14,43,0.0 +20956,52,7,44,0.0 +20956,56,38,17,0.0 +20956,29,123.79,7,0.0 +20956,2,19,2,0.0 +20956,77,13,50,0.0 +20956,24,4.5,36,0.0 +20956,7,30,12,0.0 +20956,20,81,34,0.0 +20956,39,18,2,0.0 +20956,64,33.25,30,0.0 +20956,58,13.25,50,0.0 +20956,16,17.45,38,0.0 +20956,5,21.35,20,0.0 +20956,67,14,44,0.0 +20956,76,18,41,0.0 +20956,10,31,8,0.0 +20956,60,34,33,0.0 +20956,72,34.8,49,0.0 +20956,34,14,3,0.0 +20956,40,18.4,4,0.0 +20956,49,20,27,0.0 +20956,18,62.5,49,0.0 +20956,74,10,41,0.0 +20956,26,31.23,44,0.0 +20956,25,14,15,0.0 +20956,36,19,13,0.0 +20956,44,19.45,4,0.0 +20956,21,10,48,0.0 +20956,70,15,22,0.0 +20956,35,18,38,0.0 +20957,53,32.8,48,0.0 +20957,7,30,22,0.0 +20957,39,18,34,0.0 +20957,9,97,33,0.0 +20957,76,18,15,0.0 +20957,24,4.5,36,0.0 +20957,10,31,26,0.0 +20957,27,43.9,20,0.0 +20957,44,19.45,46,0.0 +20957,5,21.35,13,0.0 +20957,13,6,1,0.0 +20957,8,40,17,0.0 +20957,55,24,41,0.0 +20957,56,38,27,0.0 +20957,38,263.5,34,0.0 +20957,68,12.5,39,0.0 +20957,28,45.6,5,0.0 +20957,6,25,28,0.0 +20957,72,34.8,8,0.0 +20957,4,22,5,0.0 +20957,59,55,2,0.0 +20957,14,23.25,4,0.0 +20957,22,21,45,0.0 +20957,70,15,35,0.0 +20957,25,14,43,0.0 +20957,77,13,2,0.0 +20957,26,31.23,34,0.0 +20958,13,6,8,0.0 +20958,51,53,49,0.0 +20958,3,10,6,0.0 +20958,24,4.5,48,0.0 +20958,65,21.05,2,0.0 +20958,9,97,28,0.0 +20958,18,62.5,11,0.0 +20958,58,13.25,23,0.0 +20958,46,12,26,0.0 +20958,49,20,9,0.0 +20958,16,17.45,7,0.0 +20958,57,19.5,6,0.0 +20958,27,43.9,15,0.0 +20958,69,36,9,0.0 +20958,15,15.5,15,0.0 +20958,67,14,47,0.0 +20958,34,14,11,0.0 +20958,71,21.5,31,0.0 +20958,23,9,30,0.0 +20958,25,14,2,0.0 +20958,37,26,28,0.0 +20958,4,22,47,0.0 +20958,77,13,44,0.0 +20958,22,21,38,0.0 +20958,44,19.45,17,0.0 +20958,12,38,8,0.0 +20958,8,40,11,0.0 +20959,48,12.75,31,0.0 +20959,23,9,13,0.0 +20959,51,53,12,0.0 +20959,35,18,19,0.0 +20959,9,97,6,0.0 +20959,29,123.79,14,0.0 +20959,53,32.8,32,0.0 +20959,61,28.5,11,0.0 +20959,43,46,25,0.0 +20959,3,10,48,0.0 +20959,57,19.5,29,0.0 +20959,47,9.5,6,0.0 +20959,44,19.45,41,0.0 +20959,5,21.35,21,0.0 +20959,70,15,2,0.0 +20959,20,81,3,0.0 +20959,50,16.25,39,0.0 +20959,12,38,5,0.0 +20959,73,15,11,0.0 +20959,67,14,35,0.0 +20959,68,12.5,48,0.0 +20959,17,39,6,0.0 +20959,16,17.45,25,0.0 +20959,15,15.5,48,0.0 +20959,38,263.5,40,0.0 +20959,24,4.5,31,0.0 +20959,52,7,1,0.0 +20959,27,43.9,12,0.0 +20959,76,18,33,0.0 +20959,14,23.25,48,0.0 +20959,77,13,32,0.0 +20959,59,55,36,0.0 +20959,54,7.45,13,0.0 +20959,49,20,12,0.0 +20959,55,24,8,0.0 +20959,19,9.2,38,0.0 +20959,39,18,46,0.0 +20959,60,34,29,0.0 +20959,2,19,11,0.0 +20959,34,14,9,0.0 +20959,21,10,33,0.0 +20959,33,2.5,43,0.0 +20959,42,14,23,0.0 +20959,74,10,37,0.0 +20960,22,21,32,0.0 +20960,58,13.25,11,0.0 +20960,53,32.8,47,0.0 +20960,39,18,14,0.0 +20960,43,46,35,0.0 +20960,48,12.75,1,0.0 +20960,6,25,1,0.0 +20960,69,36,4,0.0 +20960,36,19,4,0.0 +20960,67,14,38,0.0 +20960,77,13,18,0.0 +20960,20,81,39,0.0 +20960,62,49.3,20,0.0 +20960,52,7,38,0.0 +20960,24,4.5,23,0.0 +20960,68,12.5,21,0.0 +20960,45,9.5,6,0.0 +20960,10,31,31,0.0 +20961,61,28.5,5,0.0 +20961,46,12,34,0.0 +20961,73,15,38,0.0 +20961,45,9.5,4,0.0 +20961,43,46,48,0.0 +20961,57,19.5,19,0.0 +20961,64,33.25,3,0.0 +20961,58,13.25,6,0.0 +20961,33,2.5,31,0.0 +20961,37,26,13,0.0 +20961,14,23.25,50,0.0 +20961,55,24,10,0.0 +20961,72,34.8,3,0.0 +20961,5,21.35,7,0.0 +20961,6,25,18,0.0 +20961,10,31,7,0.0 +20961,12,38,1,0.0 +20961,74,10,11,0.0 +20961,51,53,30,0.0 +20961,54,7.45,2,0.0 +20961,25,14,24,0.0 +20961,69,36,42,0.0 +20961,39,18,14,0.0 +20961,52,7,19,0.0 +20961,35,18,38,0.0 +20961,41,9.65,49,0.0 +20961,66,17,19,0.0 +20961,7,30,17,0.0 +20961,38,263.5,44,0.0 +20961,62,49.3,32,0.0 +20961,26,31.23,28,0.0 +20961,18,62.5,44,0.0 +20961,31,12.5,34,0.0 +20961,70,15,22,0.0 +20961,24,4.5,2,0.0 +20961,21,10,13,0.0 +20961,13,6,49,0.0 +20961,22,21,24,0.0 +20961,15,15.5,32,0.0 +20961,48,12.75,49,0.0 +20961,20,81,25,0.0 +20961,32,32,7,0.0 +20961,16,17.45,26,0.0 +20961,11,21,9,0.0 +20961,27,43.9,19,0.0 +20961,75,7.75,4,0.0 +20961,56,38,47,0.0 +20961,59,55,26,0.0 +20961,76,18,27,0.0 +20961,49,20,21,0.0 +20961,44,19.45,8,0.0 +20961,36,19,36,0.0 +20961,71,21.5,30,0.0 +20961,8,40,45,0.0 +20961,34,14,5,0.0 +20961,77,13,9,0.0 +20961,3,10,43,0.0 +20961,23,9,15,0.0 +20961,68,12.5,29,0.0 +20961,9,97,10,0.0 +20961,60,34,7,0.0 +20961,4,22,42,0.0 +20961,63,43.9,5,0.0 +20961,2,19,39,0.0 +20961,40,18.4,9,0.0 +20961,42,14,27,0.0 +20961,19,9.2,11,0.0 +20961,30,25.89,38,0.0 +20961,17,39,9,0.0 +20961,47,9.5,26,0.0 +20961,65,21.05,49,0.0 +20961,29,123.79,4,0.0 +20961,53,32.8,32,0.0 +20962,6,25,25,0.0 +20962,43,46,7,0.0 +20962,59,55,5,0.0 +20962,69,36,40,0.0 +20962,9,97,24,0.0 +20962,29,123.79,7,0.0 +20962,73,15,28,0.0 +20962,16,17.45,5,0.0 +20962,2,19,50,0.0 +20962,22,21,12,0.0 +20962,14,23.25,27,0.0 +20962,67,14,6,0.0 +20962,10,31,31,0.0 +20962,46,12,13,0.0 +20962,11,21,49,0.0 +20962,32,32,48,0.0 +20962,51,53,50,0.0 +20962,1,18,11,0.0 +20962,34,14,5,0.0 +20962,60,34,19,0.0 +20962,19,9.2,21,0.0 +20962,47,9.5,21,0.0 +20962,20,81,29,0.0 +20962,71,21.5,33,0.0 +20962,25,14,39,0.0 +20962,74,10,8,0.0 +20962,75,7.75,8,0.0 +20962,55,24,47,0.0 +20962,61,28.5,23,0.0 +20962,63,43.9,3,0.0 +20962,26,31.23,17,0.0 +20962,65,21.05,33,0.0 +20962,12,38,10,0.0 +20962,3,10,29,0.0 +20962,70,15,12,0.0 +20962,44,19.45,49,0.0 +20962,31,12.5,12,0.0 +20962,48,12.75,20,0.0 +20962,54,7.45,31,0.0 +20962,41,9.65,6,0.0 +20962,45,9.5,36,0.0 +20962,76,18,41,0.0 +20962,58,13.25,3,0.0 +20962,40,18.4,40,0.0 +20962,37,26,23,0.0 +20962,53,32.8,35,0.0 +20962,50,16.25,25,0.0 +20962,39,18,49,0.0 +20962,24,4.5,31,0.0 +20962,27,43.9,1,0.0 +20962,13,6,42,0.0 +20962,52,7,28,0.0 +20962,5,21.35,3,0.0 +20962,38,263.5,15,0.0 +20962,30,25.89,34,0.0 +20962,42,14,33,0.0 +20963,42,14,20,0.0 +20963,3,10,23,0.0 +20963,13,6,26,0.0 +20963,74,10,34,0.0 +20963,19,9.2,45,0.0 +20963,15,15.5,23,0.0 +20963,46,12,34,0.0 +20963,56,38,7,0.0 +20963,21,10,13,0.0 +20963,48,12.75,17,0.0 +20964,70,15,11,0.0 +20964,23,9,2,0.0 +20964,5,21.35,49,0.0 +20964,26,31.23,2,0.0 +20964,6,25,48,0.0 +20964,25,14,10,0.0 +20964,47,9.5,50,0.0 +20964,35,18,4,0.0 +20964,64,33.25,44,0.0 +20964,46,12,24,0.0 +20964,10,31,23,0.0 +20964,24,4.5,23,0.0 +20964,61,28.5,23,0.0 +20964,41,9.65,42,0.0 +20964,60,34,13,0.0 +20964,40,18.4,36,0.0 +20964,48,12.75,13,0.0 +20964,55,24,1,0.0 +20964,50,16.25,11,0.0 +20964,74,10,29,0.0 +20964,54,7.45,47,0.0 +20964,76,18,28,0.0 +20964,30,25.89,7,0.0 +20964,63,43.9,23,0.0 +20964,57,19.5,15,0.0 +20964,19,9.2,17,0.0 +20964,32,32,4,0.0 +20964,22,21,48,0.0 +20964,7,30,31,0.0 +20964,17,39,49,0.0 +20964,58,13.25,8,0.0 +20964,62,49.3,48,0.0 +20964,68,12.5,14,0.0 +20964,77,13,19,0.0 +20964,8,40,12,0.0 +20964,52,7,42,0.0 +20964,43,46,10,0.0 +20964,4,22,27,0.0 +20964,44,19.45,29,0.0 +20964,39,18,41,0.0 +20964,18,62.5,18,0.0 +20964,75,7.75,8,0.0 +20964,66,17,35,0.0 +20964,3,10,40,0.0 +20964,13,6,23,0.0 +20964,45,9.5,34,0.0 +20964,33,2.5,5,0.0 +20964,42,14,41,0.0 +20964,21,10,15,0.0 +20964,31,12.5,47,0.0 +20964,71,21.5,19,0.0 +20964,28,45.6,23,0.0 +20965,39,18,36,0.0 +20965,42,14,17,0.0 +20965,65,21.05,6,0.0 +20965,35,18,10,0.0 +20965,53,32.8,12,0.0 +20965,71,21.5,14,0.0 +20965,70,15,38,0.0 +20965,32,32,35,0.0 +20965,5,21.35,12,0.0 +20965,6,25,1,0.0 +20965,17,39,5,0.0 +20965,48,12.75,14,0.0 +20965,64,33.25,7,0.0 +20965,30,25.89,30,0.0 +20965,77,13,5,0.0 +20965,60,34,34,0.0 +20965,19,9.2,18,0.0 +20966,16,17.45,48,0.0 +20966,45,9.5,5,0.0 +20966,7,30,40,0.0 +20966,42,14,7,0.0 +20966,27,43.9,23,0.0 +20966,48,12.75,17,0.0 +20966,36,19,41,0.0 +20966,67,14,14,0.0 +20966,35,18,47,0.0 +20966,10,31,47,0.0 +20966,8,40,27,0.0 +20966,74,10,30,0.0 +20966,1,18,10,0.0 +20966,41,9.65,32,0.0 +20966,11,21,7,0.0 +20966,68,12.5,47,0.0 +20966,52,7,23,0.0 +20966,14,23.25,16,0.0 +20966,12,38,37,0.0 +20966,76,18,10,0.0 +20966,3,10,36,0.0 +20966,54,7.45,50,0.0 +20966,46,12,17,0.0 +20966,63,43.9,39,0.0 +20966,15,15.5,33,0.0 +20966,38,263.5,32,0.0 +20966,19,9.2,31,0.0 +20966,62,49.3,33,0.0 +20966,49,20,31,0.0 +20966,70,15,25,0.0 +20966,17,39,22,0.0 +20966,6,25,42,0.0 +20966,28,45.6,14,0.0 +20966,20,81,33,0.0 +20966,24,4.5,38,0.0 +20966,23,9,26,0.0 +20966,5,21.35,2,0.0 +20966,39,18,32,0.0 +20966,31,12.5,1,0.0 +20966,43,46,45,0.0 +20966,55,24,37,0.0 +20966,50,16.25,40,0.0 +20966,51,53,33,0.0 +20966,61,28.5,32,0.0 +20966,72,34.8,17,0.0 +20966,47,9.5,42,0.0 +20966,26,31.23,49,0.0 +20966,37,26,11,0.0 +20966,69,36,36,0.0 +20966,25,14,14,0.0 +20966,56,38,32,0.0 +20966,34,14,21,0.0 +20966,13,6,35,0.0 +20966,75,7.75,9,0.0 +20966,30,25.89,32,0.0 +20966,77,13,47,0.0 +20966,9,97,17,0.0 +20966,4,22,46,0.0 +20967,32,32,34,0.0 +20967,54,7.45,17,0.0 +20967,60,34,21,0.0 +20967,3,10,50,0.0 +20967,34,14,20,0.0 +20967,69,36,3,0.0 +20967,17,39,11,0.0 +20967,51,53,23,0.0 +20967,41,9.65,29,0.0 +20967,25,14,7,0.0 +20967,50,16.25,50,0.0 +20967,44,19.45,10,0.0 +20967,66,17,27,0.0 +20967,57,19.5,37,0.0 +20967,10,31,7,0.0 +20967,36,19,43,0.0 +20967,9,97,37,0.0 +20967,77,13,45,0.0 +20967,73,15,44,0.0 +20967,55,24,15,0.0 +20967,15,15.5,46,0.0 +20967,28,45.6,34,0.0 +20967,5,21.35,18,0.0 +20967,74,10,37,0.0 +20967,75,7.75,19,0.0 +20967,27,43.9,13,0.0 +20967,39,18,29,0.0 +20967,63,43.9,3,0.0 +20967,61,28.5,4,0.0 +20967,33,2.5,30,0.0 +20967,42,14,1,0.0 +20967,64,33.25,40,0.0 +20967,45,9.5,36,0.0 +20967,59,55,1,0.0 +20967,30,25.89,19,0.0 +20967,68,12.5,30,0.0 +20967,71,21.5,11,0.0 +20967,19,9.2,32,0.0 +20967,21,10,25,0.0 +20967,38,263.5,18,0.0 +20968,25,14,7,0.0 +20968,13,6,20,0.0 +20968,4,22,23,0.0 +20968,53,32.8,10,0.0 +20968,69,36,3,0.0 +20968,58,13.25,22,0.0 +20968,51,53,49,0.0 +20968,36,19,24,0.0 +20968,17,39,10,0.0 +20968,19,9.2,23,0.0 +20968,60,34,34,0.0 +20968,37,26,42,0.0 +20968,70,15,5,0.0 +20968,9,97,17,0.0 +20968,68,12.5,33,0.0 +20968,2,19,34,0.0 +20969,62,49.3,24,0.0 +20969,45,9.5,42,0.0 +20969,54,7.45,18,0.0 +20969,30,25.89,32,0.0 +20969,47,9.5,7,0.0 +20969,74,10,3,0.0 +20969,38,263.5,18,0.0 +20969,29,123.79,1,0.0 +20969,67,14,25,0.0 +20969,15,15.5,44,0.0 +20969,18,62.5,39,0.0 +20969,13,6,22,0.0 +20969,35,18,17,0.0 +20969,21,10,44,0.0 +20969,12,38,39,0.0 +20970,49,20,26,0.0 +20970,56,38,14,0.0 +20970,34,14,40,0.0 +20970,42,14,25,0.0 +20970,77,13,23,0.0 +20970,75,7.75,33,0.0 +20970,7,30,11,0.0 +20970,68,12.5,43,0.0 +20970,28,45.6,23,0.0 +20970,57,19.5,34,0.0 +20970,30,25.89,7,0.0 +20970,15,15.5,24,0.0 +20970,59,55,6,0.0 +20970,47,9.5,48,0.0 +20970,12,38,30,0.0 +20970,53,32.8,22,0.0 +20970,23,9,23,0.0 +20970,10,31,33,0.0 +20970,24,4.5,35,0.0 +20970,48,12.75,38,0.0 +20970,8,40,32,0.0 +20971,14,23.25,23,0.0 +20971,55,24,10,0.0 +20971,33,2.5,29,0.0 +20971,72,34.8,23,0.0 +20971,5,21.35,28,0.0 +20971,71,21.5,33,0.0 +20971,47,9.5,39,0.0 +20971,1,18,14,0.0 +20971,22,21,13,0.0 +20971,44,19.45,9,0.0 +20971,76,18,13,0.0 +20971,37,26,8,0.0 +20971,63,43.9,34,0.0 +20971,48,12.75,34,0.0 +20971,66,17,35,0.0 +20971,31,12.5,8,0.0 +20971,10,31,13,0.0 +20971,8,40,23,0.0 +20971,12,38,48,0.0 +20971,61,28.5,19,0.0 +20971,49,20,8,0.0 +20971,40,18.4,37,0.0 +20971,23,9,44,0.0 +20971,15,15.5,3,0.0 +20971,26,31.23,11,0.0 +20971,2,19,16,0.0 +20971,20,81,13,0.0 +20971,7,30,36,0.0 +20971,35,18,42,0.0 +20971,38,263.5,20,0.0 +20971,51,53,23,0.0 +20971,59,55,2,0.0 +20972,30,25.89,13,0.0 +20972,63,43.9,4,0.0 +20972,8,40,2,0.0 +20972,39,18,40,0.0 +20972,53,32.8,46,0.0 +20972,48,12.75,14,0.0 +20972,41,9.65,20,0.0 +20972,33,2.5,8,0.0 +20972,31,12.5,16,0.0 +20972,42,14,20,0.0 +20972,55,24,28,0.0 +20972,40,18.4,4,0.0 +20972,70,15,47,0.0 +20972,66,17,41,0.0 +20972,14,23.25,42,0.0 +20972,29,123.79,33,0.0 +20972,76,18,14,0.0 +20972,4,22,47,0.0 +20973,14,23.25,18,0.0 +20974,41,9.65,15,0.0 +20974,26,31.23,11,0.0 +20974,11,21,10,0.0 +20974,38,263.5,30,0.0 +20974,65,21.05,12,0.0 +20974,19,9.2,43,0.0 +20974,74,10,19,0.0 +20974,61,28.5,7,0.0 +20974,68,12.5,5,0.0 +20974,15,15.5,36,0.0 +20974,28,45.6,26,0.0 +20974,2,19,43,0.0 +20974,71,21.5,32,0.0 +20974,51,53,15,0.0 +20974,13,6,44,0.0 +20974,42,14,41,0.0 +20974,35,18,9,0.0 +20974,21,10,29,0.0 +20974,31,12.5,45,0.0 +20974,10,31,44,0.0 +20974,16,17.45,7,0.0 +20974,30,25.89,22,0.0 +20974,48,12.75,36,0.0 +20974,27,43.9,10,0.0 +20974,14,23.25,17,0.0 +20974,67,14,49,0.0 +20974,72,34.8,12,0.0 +20974,62,49.3,3,0.0 +20974,53,32.8,50,0.0 +20974,20,81,34,0.0 +20974,63,43.9,20,0.0 +20974,37,26,13,0.0 +20974,77,13,31,0.0 +20974,58,13.25,22,0.0 +20974,76,18,39,0.0 +20974,9,97,24,0.0 +20974,18,62.5,43,0.0 +20974,75,7.75,3,0.0 +20974,70,15,4,0.0 +20974,60,34,35,0.0 +20974,73,15,16,0.0 +20974,29,123.79,41,0.0 +20974,55,24,10,0.0 +20974,36,19,44,0.0 +20974,64,33.25,13,0.0 +20974,25,14,32,0.0 +20974,59,55,13,0.0 +20974,52,7,21,0.0 +20974,46,12,26,0.0 +20975,76,18,44,0.0 +20975,28,45.6,35,0.0 +20975,61,28.5,50,0.0 +20976,6,25,25,0.0 +20976,4,22,12,0.0 +20976,76,18,47,0.0 +20976,28,45.6,34,0.0 +20976,31,12.5,12,0.0 +20976,73,15,31,0.0 +20976,21,10,39,0.0 +20976,45,9.5,39,0.0 +20976,3,10,13,0.0 +20976,19,9.2,50,0.0 +20976,59,55,33,0.0 +20976,56,38,29,0.0 +20976,60,34,30,0.0 +20976,14,23.25,7,0.0 +20976,64,33.25,19,0.0 +20976,54,7.45,29,0.0 +20976,29,123.79,7,0.0 +20976,50,16.25,16,0.0 +20976,20,81,25,0.0 +20976,15,15.5,19,0.0 +20976,70,15,17,0.0 +20976,36,19,50,0.0 +20976,55,24,39,0.0 +20976,12,38,42,0.0 +20976,26,31.23,42,0.0 +20976,63,43.9,22,0.0 +20976,7,30,39,0.0 +20976,10,31,40,0.0 +20976,61,28.5,29,0.0 +20976,8,40,5,0.0 +20976,65,21.05,39,0.0 +20976,25,14,3,0.0 +20976,62,49.3,41,0.0 +20976,16,17.45,12,0.0 +20976,34,14,21,0.0 +20976,57,19.5,44,0.0 +20976,1,18,21,0.0 +20976,23,9,7,0.0 +20976,52,7,29,0.0 +20976,37,26,48,0.0 +20976,53,32.8,24,0.0 +20976,22,21,32,0.0 +20976,33,2.5,24,0.0 +20976,69,36,37,0.0 +20976,40,18.4,3,0.0 +20976,41,9.65,37,0.0 +20976,68,12.5,43,0.0 +20976,47,9.5,46,0.0 +20976,43,46,6,0.0 +20976,66,17,45,0.0 +20976,71,21.5,6,0.0 +20977,35,18,11,0.0 +20977,51,53,44,0.0 +20977,44,19.45,7,0.0 +20977,73,15,30,0.0 +20977,66,17,42,0.0 +20977,13,6,36,0.0 +20977,40,18.4,37,0.0 +20977,28,45.6,34,0.0 +20977,9,97,6,0.0 +20977,63,43.9,46,0.0 +20977,15,15.5,46,0.0 +20977,71,21.5,36,0.0 +20977,32,32,39,0.0 +20977,26,31.23,13,0.0 +20977,49,20,33,0.0 +20977,64,33.25,23,0.0 +20977,68,12.5,17,0.0 +20977,43,46,5,0.0 +20977,31,12.5,45,0.0 +20977,30,25.89,42,0.0 +20978,28,45.6,9,0.0 +20978,4,22,20,0.0 +20978,45,9.5,15,0.0 +20978,74,10,21,0.0 +20978,30,25.89,15,0.0 +20978,34,14,37,0.0 +20978,2,19,12,0.0 +20978,40,18.4,8,0.0 +20978,61,28.5,28,0.0 +20978,19,9.2,35,0.0 +20978,71,21.5,4,0.0 +20978,16,17.45,13,0.0 +20978,62,49.3,20,0.0 +20978,50,16.25,50,0.0 +20978,10,31,46,0.0 +20978,75,7.75,47,0.0 +20978,77,13,16,0.0 +20978,6,25,22,0.0 +20978,5,21.35,1,0.0 +20978,32,32,40,0.0 +20978,49,20,45,0.0 +20978,12,38,38,0.0 +20978,72,34.8,13,0.0 +20978,20,81,8,0.0 +20978,63,43.9,7,0.0 +20978,57,19.5,12,0.0 +20979,62,49.3,17,0.0 +20979,9,97,15,0.0 +20979,39,18,25,0.0 +20979,23,9,9,0.0 +20979,66,17,37,0.0 +20979,27,43.9,47,0.0 +20979,48,12.75,25,0.0 +20979,26,31.23,8,0.0 +20979,31,12.5,6,0.0 +20979,50,16.25,46,0.0 +20979,60,34,1,0.0 +20979,7,30,38,0.0 +20979,29,123.79,34,0.0 +20979,34,14,33,0.0 +20979,40,18.4,11,0.0 +20979,3,10,48,0.0 +20979,38,263.5,7,0.0 +20980,13,6,26,0.0 +20980,72,34.8,3,0.0 +20980,29,123.79,25,0.0 +20980,2,19,40,0.0 +20980,51,53,7,0.0 +20980,48,12.75,11,0.0 +20980,75,7.75,19,0.0 +20980,8,40,34,0.0 +20980,68,12.5,33,0.0 +20981,49,20,35,0.0 +20981,29,123.79,29,0.0 +20981,12,38,19,0.0 +20981,25,14,4,0.0 +20981,13,6,22,0.0 +20981,41,9.65,27,0.0 +20981,26,31.23,28,0.0 +20981,14,23.25,18,0.0 +20981,34,14,48,0.0 +20981,10,31,40,0.0 +20981,46,12,16,0.0 +20981,20,81,40,0.0 +20981,43,46,7,0.0 +20981,76,18,24,0.0 +20981,36,19,21,0.0 +20981,32,32,49,0.0 +20981,62,49.3,40,0.0 +20981,73,15,34,0.0 +20981,21,10,30,0.0 +20981,54,7.45,2,0.0 +20981,75,7.75,49,0.0 +20981,71,21.5,45,0.0 +20981,45,9.5,3,0.0 +20981,77,13,30,0.0 +20981,9,97,20,0.0 +20981,50,16.25,31,0.0 +20981,47,9.5,5,0.0 +20981,18,62.5,48,0.0 +20981,3,10,48,0.0 +20981,15,15.5,35,0.0 +20981,58,13.25,3,0.0 +20982,26,31.23,10,0.0 +20982,21,10,18,0.0 +20982,42,14,13,0.0 +20982,48,12.75,7,0.0 +20982,70,15,47,0.0 +20982,53,32.8,16,0.0 +20982,62,49.3,46,0.0 +20982,4,22,45,0.0 +20982,33,2.5,3,0.0 +20982,13,6,26,0.0 +20982,67,14,40,0.0 +20982,66,17,18,0.0 +20982,24,4.5,24,0.0 +20982,14,23.25,28,0.0 +20982,25,14,3,0.0 +20982,39,18,12,0.0 +20982,59,55,26,0.0 +20982,51,53,48,0.0 +20982,3,10,17,0.0 +20982,60,34,34,0.0 +20982,41,9.65,3,0.0 +20982,45,9.5,36,0.0 +20982,17,39,45,0.0 +20982,58,13.25,27,0.0 +20982,76,18,21,0.0 +20982,74,10,29,0.0 +20982,6,25,49,0.0 +20982,68,12.5,34,0.0 +20982,46,12,8,0.0 +20982,49,20,37,0.0 +20982,34,14,33,0.0 +20982,40,18.4,40,0.0 +20982,20,81,7,0.0 +20983,49,20,10,0.0 +20983,63,43.9,48,0.0 +20983,27,43.9,7,0.0 +20983,21,10,38,0.0 +20983,30,25.89,47,0.0 +20983,77,13,42,0.0 +20983,68,12.5,15,0.0 +20983,43,46,42,0.0 +20983,70,15,19,0.0 +20983,18,62.5,31,0.0 +20983,34,14,37,0.0 +20983,29,123.79,36,0.0 +20983,5,21.35,19,0.0 +20983,11,21,16,0.0 +20983,26,31.23,12,0.0 +20983,51,53,16,0.0 +20983,9,97,33,0.0 +20983,15,15.5,11,0.0 +20983,19,9.2,1,0.0 +20983,38,263.5,26,0.0 +20983,37,26,39,0.0 +20983,76,18,29,0.0 +20983,10,31,36,0.0 +20983,39,18,23,0.0 +20983,40,18.4,38,0.0 +20983,52,7,16,0.0 +20983,36,19,28,0.0 +20983,3,10,12,0.0 +20983,17,39,5,0.0 +20983,7,30,2,0.0 +20983,74,10,25,0.0 +20983,54,7.45,46,0.0 +20983,23,9,28,0.0 +20983,61,28.5,10,0.0 +20983,24,4.5,35,0.0 +20983,42,14,21,0.0 +20983,16,17.45,36,0.0 +20983,33,2.5,7,0.0 +20983,50,16.25,39,0.0 +20983,13,6,11,0.0 +20983,58,13.25,23,0.0 +20983,8,40,8,0.0 +20983,69,36,31,0.0 +20983,64,33.25,12,0.0 +20983,1,18,12,0.0 +20983,47,9.5,48,0.0 +20983,71,21.5,33,0.0 +20983,35,18,42,0.0 +20983,2,19,6,0.0 +20983,67,14,23,0.0 +20983,56,38,33,0.0 +20983,14,23.25,43,0.0 +20983,62,49.3,37,0.0 +20983,72,34.8,8,0.0 +20983,57,19.5,46,0.0 +20983,6,25,38,0.0 +20983,4,22,9,0.0 +20983,60,34,49,0.0 +20983,65,21.05,20,0.0 +20983,12,38,40,0.0 +20983,28,45.6,36,0.0 +20983,75,7.75,45,0.0 +20983,45,9.5,43,0.0 +20983,22,21,19,0.0 +20983,73,15,28,0.0 +20983,32,32,5,0.0 +20983,20,81,18,0.0 +20983,48,12.75,20,0.0 +20983,41,9.65,26,0.0 +20983,46,12,6,0.0 +20983,31,12.5,11,0.0 +20984,76,18,20,0.0 +20984,18,62.5,23,0.0 +20984,67,14,27,0.0 +20984,2,19,15,0.0 +20984,30,25.89,24,0.0 +20984,36,19,23,0.0 +20984,12,38,37,0.0 +20984,75,7.75,34,0.0 +20984,57,19.5,27,0.0 +20984,7,30,48,0.0 +20984,32,32,47,0.0 +20984,51,53,31,0.0 +20984,14,23.25,8,0.0 +20984,50,16.25,14,0.0 +20984,15,15.5,45,0.0 +20984,68,12.5,20,0.0 +20984,13,6,14,0.0 +20984,27,43.9,30,0.0 +20984,41,9.65,45,0.0 +20984,56,38,2,0.0 +20984,60,34,15,0.0 +20984,69,36,7,0.0 +20984,65,21.05,28,0.0 +20984,38,263.5,3,0.0 +20984,26,31.23,36,0.0 +20984,24,4.5,48,0.0 +20984,59,55,34,0.0 +20984,35,18,23,0.0 +20984,37,26,42,0.0 +20984,34,14,34,0.0 +20984,5,21.35,32,0.0 +20984,46,12,4,0.0 +20984,52,7,12,0.0 +20984,66,17,39,0.0 +20984,20,81,30,0.0 +20984,28,45.6,40,0.0 +20984,10,31,15,0.0 +20984,8,40,5,0.0 +20984,1,18,43,0.0 +20984,21,10,19,0.0 +20984,72,34.8,14,0.0 +20984,22,21,14,0.0 +20984,19,9.2,11,0.0 +20984,77,13,4,0.0 +20984,45,9.5,4,0.0 +20984,25,14,22,0.0 +20984,17,39,6,0.0 +20984,71,21.5,14,0.0 +20985,4,22,7,0.0 +20985,30,25.89,39,0.0 +20985,2,19,41,0.0 +20985,17,39,40,0.0 +20985,70,15,10,0.0 +20985,44,19.45,13,0.0 +20985,13,6,14,0.0 +20985,64,33.25,14,0.0 +20985,14,23.25,2,0.0 +20985,58,13.25,9,0.0 +20985,53,32.8,41,0.0 +20985,24,4.5,32,0.0 +20985,71,21.5,5,0.0 +20985,5,21.35,5,0.0 +20985,11,21,37,0.0 +20985,39,18,10,0.0 +20985,10,31,16,0.0 +20985,42,14,25,0.0 +20985,28,45.6,4,0.0 +20985,55,24,40,0.0 +20985,20,81,30,0.0 +20986,12,38,13,0.0 +20986,30,25.89,8,0.0 +20986,9,97,1,0.0 +20986,77,13,13,0.0 +20986,38,263.5,31,0.0 +20987,58,13.25,7,0.0 +20987,50,16.25,21,0.0 +20987,16,17.45,33,0.0 +20987,72,34.8,4,0.0 +20987,3,10,14,0.0 +20987,24,4.5,17,0.0 +20987,8,40,16,0.0 +20987,41,9.65,18,0.0 +20987,21,10,42,0.0 +20987,32,32,23,0.0 +20987,54,7.45,19,0.0 +20987,77,13,40,0.0 +20987,1,18,46,0.0 +20987,15,15.5,9,0.0 +20987,71,21.5,13,0.0 +20987,35,18,43,0.0 +20987,63,43.9,16,0.0 +20987,61,28.5,33,0.0 +20987,18,62.5,35,0.0 +20987,55,24,37,0.0 +20987,4,22,24,0.0 +20987,59,55,4,0.0 +20987,9,97,16,0.0 +20987,22,21,13,0.0 +20987,66,17,47,0.0 +20987,37,26,14,0.0 +20987,19,9.2,29,0.0 +20987,44,19.45,48,0.0 +20987,74,10,36,0.0 +20987,33,2.5,8,0.0 +20987,47,9.5,21,0.0 +20987,26,31.23,33,0.0 +20987,39,18,36,0.0 +20987,67,14,34,0.0 +20987,7,30,16,0.0 +20988,41,9.65,24,0.0 +20988,36,19,38,0.0 +20988,31,12.5,41,0.0 +20988,52,7,15,0.0 +20988,35,18,50,0.0 +20988,70,15,29,0.0 +20988,53,32.8,25,0.0 +20988,8,40,29,0.0 +20988,51,53,47,0.0 +20988,43,46,10,0.0 +20988,16,17.45,25,0.0 +20988,56,38,25,0.0 +20988,47,9.5,35,0.0 +20988,26,31.23,21,0.0 +20988,48,12.75,41,0.0 +20988,13,6,14,0.0 +20988,73,15,47,0.0 +20988,30,25.89,8,0.0 +20988,46,12,40,0.0 +20988,5,21.35,49,0.0 +20988,50,16.25,3,0.0 +20988,9,97,13,0.0 +20988,21,10,18,0.0 +20988,75,7.75,32,0.0 +20988,76,18,9,0.0 +20988,23,9,39,0.0 +20988,72,34.8,31,0.0 +20988,19,9.2,31,0.0 +20988,62,49.3,30,0.0 +20988,69,36,29,0.0 +20988,45,9.5,16,0.0 +20988,63,43.9,41,0.0 +20988,71,21.5,44,0.0 +20988,44,19.45,20,0.0 +20988,3,10,39,0.0 +20988,49,20,1,0.0 +20988,11,21,37,0.0 +20988,27,43.9,12,0.0 +20988,22,21,24,0.0 +20988,59,55,3,0.0 +20988,67,14,43,0.0 +20988,32,32,10,0.0 +20988,6,25,20,0.0 +20988,29,123.79,41,0.0 +20988,77,13,18,0.0 +20988,12,38,47,0.0 +20988,34,14,14,0.0 +20988,66,17,14,0.0 +20988,24,4.5,32,0.0 +20988,64,33.25,39,0.0 +20988,42,14,19,0.0 +20988,40,18.4,38,0.0 +20988,20,81,33,0.0 +20988,58,13.25,6,0.0 +20988,38,263.5,23,0.0 +20988,60,34,9,0.0 +20988,14,23.25,16,0.0 +20988,1,18,46,0.0 +20988,68,12.5,2,0.0 +20988,37,26,19,0.0 +20988,25,14,44,0.0 +20988,39,18,25,0.0 +20988,33,2.5,14,0.0 +20988,15,15.5,44,0.0 +20988,54,7.45,3,0.0 +20988,28,45.6,37,0.0 +20988,65,21.05,4,0.0 +20989,73,15,37,0.0 +20989,68,12.5,39,0.0 +20989,31,12.5,16,0.0 +20989,29,123.79,26,0.0 +20989,23,9,5,0.0 +20989,4,22,45,0.0 +20989,76,18,12,0.0 +20989,2,19,5,0.0 +20989,37,26,29,0.0 +20989,26,31.23,2,0.0 +20989,47,9.5,31,0.0 +20989,45,9.5,15,0.0 +20989,55,24,21,0.0 +20989,13,6,18,0.0 +20989,59,55,30,0.0 +20989,5,21.35,33,0.0 +20989,72,34.8,26,0.0 +20989,64,33.25,35,0.0 +20989,52,7,15,0.0 +20989,6,25,36,0.0 +20989,77,13,2,0.0 +20989,22,21,16,0.0 +20989,71,21.5,42,0.0 +20989,34,14,43,0.0 +20989,57,19.5,22,0.0 +20989,30,25.89,10,0.0 +20989,61,28.5,26,0.0 +20989,50,16.25,33,0.0 +20989,74,10,27,0.0 +20989,70,15,40,0.0 +20989,62,49.3,11,0.0 +20989,56,38,8,0.0 +20989,9,97,40,0.0 +20989,39,18,27,0.0 +20989,49,20,42,0.0 +20989,21,10,7,0.0 +20989,43,46,23,0.0 +20989,60,34,38,0.0 +20989,53,32.8,10,0.0 +20989,67,14,13,0.0 +20989,7,30,41,0.0 +20989,66,17,37,0.0 +20989,35,18,5,0.0 +20989,19,9.2,5,0.0 +20989,24,4.5,31,0.0 +20989,17,39,1,0.0 +20989,27,43.9,22,0.0 +20989,32,32,35,0.0 +20989,42,14,41,0.0 +20989,46,12,19,0.0 +20989,65,21.05,38,0.0 +20989,10,31,40,0.0 +20989,1,18,40,0.0 +20989,11,21,41,0.0 +20989,25,14,17,0.0 +20989,69,36,5,0.0 +20989,15,15.5,32,0.0 +20989,14,23.25,32,0.0 +20989,38,263.5,38,0.0 +20989,75,7.75,6,0.0 +20989,8,40,16,0.0 +20989,33,2.5,8,0.0 +20989,3,10,7,0.0 +20989,51,53,45,0.0 +20989,48,12.75,27,0.0 +20989,18,62.5,2,0.0 +20989,20,81,11,0.0 +20989,54,7.45,40,0.0 +20989,12,38,28,0.0 +20989,36,19,1,0.0 +20989,44,19.45,50,0.0 +20989,40,18.4,30,0.0 +20989,28,45.6,39,0.0 +20989,41,9.65,32,0.0 +20989,58,13.25,32,0.0 +20990,1,18,45,0.0 +20990,50,16.25,11,0.0 +20991,55,24,46,0.0 +20991,35,18,28,0.0 +20991,75,7.75,14,0.0 +20991,76,18,27,0.0 +20991,20,81,15,0.0 +20991,32,32,47,0.0 +20991,51,53,4,0.0 +20991,60,34,31,0.0 +20991,36,19,44,0.0 +20991,19,9.2,17,0.0 +20991,50,16.25,46,0.0 +20991,48,12.75,5,0.0 +20991,28,45.6,20,0.0 +20991,46,12,24,0.0 +20991,37,26,5,0.0 +20991,23,9,34,0.0 +20991,74,10,20,0.0 +20991,70,15,38,0.0 +20991,30,25.89,38,0.0 +20991,40,18.4,9,0.0 +20991,5,21.35,23,0.0 +20991,38,263.5,22,0.0 +20991,24,4.5,23,0.0 +20991,13,6,47,0.0 +20991,34,14,30,0.0 +20991,39,18,40,0.0 +20991,29,123.79,24,0.0 +20991,47,9.5,39,0.0 +20991,33,2.5,47,0.0 +20991,2,19,36,0.0 +20991,53,32.8,38,0.0 +20991,67,14,26,0.0 +20991,63,43.9,29,0.0 +20991,12,38,26,0.0 +20991,52,7,6,0.0 +20991,11,21,22,0.0 +20991,54,7.45,33,0.0 +20991,73,15,42,0.0 +20991,58,13.25,36,0.0 +20991,1,18,49,0.0 +20991,14,23.25,20,0.0 +20991,66,17,22,0.0 +20991,72,34.8,44,0.0 +20991,7,30,25,0.0 +20991,43,46,18,0.0 +20991,64,33.25,10,0.0 +20991,59,55,5,0.0 +20991,65,21.05,14,0.0 +20991,31,12.5,45,0.0 +20991,22,21,27,0.0 +20991,21,10,16,0.0 +20991,71,21.5,23,0.0 +20991,77,13,24,0.0 +20991,15,15.5,10,0.0 +20991,68,12.5,6,0.0 +20991,57,19.5,24,0.0 +20991,25,14,7,0.0 +20991,17,39,32,0.0 +20991,8,40,21,0.0 +20991,3,10,30,0.0 +20991,6,25,11,0.0 +20991,49,20,27,0.0 +20991,62,49.3,3,0.0 +20992,7,30,25,0.0 +20992,74,10,30,0.0 +20992,12,38,5,0.0 +20992,8,40,22,0.0 +20992,5,21.35,19,0.0 +20992,42,14,6,0.0 +20992,21,10,5,0.0 +20992,23,9,36,0.0 +20992,61,28.5,6,0.0 +20992,2,19,1,0.0 +20992,18,62.5,2,0.0 +20992,49,20,10,0.0 +20992,3,10,26,0.0 +20992,77,13,49,0.0 +20992,35,18,45,0.0 +20992,31,12.5,3,0.0 +20992,60,34,10,0.0 +20992,69,36,28,0.0 +20992,38,263.5,32,0.0 +20992,44,19.45,30,0.0 +20992,40,18.4,9,0.0 +20992,4,22,25,0.0 +20992,52,7,8,0.0 +20992,58,13.25,7,0.0 +20992,55,24,38,0.0 +20992,65,21.05,35,0.0 +20992,9,97,50,0.0 +20992,59,55,49,0.0 +20992,62,49.3,31,0.0 +20992,14,23.25,6,0.0 +20992,11,21,46,0.0 +20992,54,7.45,44,0.0 +20992,72,34.8,14,0.0 +20992,50,16.25,34,0.0 +20992,33,2.5,45,0.0 +20992,43,46,32,0.0 +20993,67,14,30,0.0 +20993,50,16.25,49,0.0 +20993,53,32.8,25,0.0 +20993,54,7.45,21,0.0 +20993,68,12.5,45,0.0 +20993,10,31,47,0.0 +20993,20,81,34,0.0 +20993,42,14,27,0.0 +20993,34,14,3,0.0 +20993,6,25,13,0.0 +20993,45,9.5,45,0.0 +20993,30,25.89,8,0.0 +20993,74,10,38,0.0 +20993,7,30,30,0.0 +20993,66,17,21,0.0 +20993,57,19.5,28,0.0 +20993,51,53,24,0.0 +20993,64,33.25,13,0.0 +20993,44,19.45,20,0.0 +20993,17,39,39,0.0 +20993,65,21.05,47,0.0 +20993,31,12.5,37,0.0 +20993,8,40,16,0.0 +20993,47,9.5,26,0.0 +20993,37,26,4,0.0 +20993,4,22,36,0.0 +20993,60,34,1,0.0 +20993,52,7,47,0.0 +20993,76,18,19,0.0 +20993,23,9,7,0.0 +20993,62,49.3,15,0.0 +20993,28,45.6,9,0.0 +20993,46,12,2,0.0 +20993,61,28.5,11,0.0 +20993,72,34.8,18,0.0 +20993,3,10,34,0.0 +20993,26,31.23,42,0.0 +20993,32,32,40,0.0 +20993,1,18,36,0.0 +20993,36,19,40,0.0 +20993,35,18,25,0.0 +20993,56,38,36,0.0 +20993,58,13.25,29,0.0 +20993,13,6,12,0.0 +20993,63,43.9,2,0.0 +20993,9,97,8,0.0 +20993,11,21,24,0.0 +20993,49,20,43,0.0 +20993,16,17.45,42,0.0 +20993,59,55,18,0.0 +20993,18,62.5,11,0.0 +20993,21,10,48,0.0 +20993,48,12.75,14,0.0 +20993,14,23.25,28,0.0 +20993,38,263.5,50,0.0 +20993,71,21.5,5,0.0 +20993,41,9.65,7,0.0 +20993,40,18.4,37,0.0 +20993,24,4.5,44,0.0 +20993,43,46,34,0.0 +20993,33,2.5,13,0.0 +20993,70,15,39,0.0 +20993,15,15.5,16,0.0 +20993,69,36,25,0.0 +20993,19,9.2,7,0.0 +20993,12,38,38,0.0 +20993,39,18,25,0.0 +20993,77,13,18,0.0 +20994,75,7.75,37,0.0 +20994,11,21,34,0.0 +20994,20,81,25,0.0 +20994,29,123.79,44,0.0 +20994,3,10,33,0.0 +20994,17,39,2,0.0 +20994,24,4.5,5,0.0 +20994,73,15,36,0.0 +20994,30,25.89,21,0.0 +20994,35,18,28,0.0 +20994,53,32.8,32,0.0 +20994,26,31.23,50,0.0 +20994,28,45.6,17,0.0 +20994,13,6,44,0.0 +20994,47,9.5,32,0.0 +20994,36,19,13,0.0 +20994,72,34.8,11,0.0 +20994,41,9.65,50,0.0 +20994,10,31,30,0.0 +20994,48,12.75,19,0.0 +20994,70,15,10,0.0 +20994,4,22,36,0.0 +20994,62,49.3,9,0.0 +20994,71,21.5,49,0.0 +20994,38,263.5,47,0.0 +20994,2,19,34,0.0 +20994,18,62.5,30,0.0 +20994,65,21.05,29,0.0 +20994,32,32,42,0.0 +20994,37,26,39,0.0 +20994,49,20,16,0.0 +20994,33,2.5,23,0.0 +20994,57,19.5,11,0.0 +20994,46,12,29,0.0 +20994,50,16.25,50,0.0 +20994,42,14,23,0.0 +20994,51,53,37,0.0 +20994,39,18,9,0.0 +20994,43,46,43,0.0 +20994,66,17,42,0.0 +20994,12,38,7,0.0 +20994,40,18.4,18,0.0 +20994,54,7.45,13,0.0 +20994,68,12.5,34,0.0 +20994,8,40,21,0.0 +20994,77,13,49,0.0 +20994,59,55,34,0.0 +20994,16,17.45,29,0.0 +20994,44,19.45,6,0.0 +20994,67,14,17,0.0 +20994,25,14,48,0.0 +20994,1,18,10,0.0 +20994,69,36,6,0.0 +20994,74,10,32,0.0 +20994,63,43.9,9,0.0 +20994,21,10,47,0.0 +20994,27,43.9,41,0.0 +20994,6,25,31,0.0 +20994,7,30,7,0.0 +20995,38,263.5,21,0.0 +20995,15,15.5,29,0.0 +20995,31,12.5,42,0.0 +20995,75,7.75,12,0.0 +20995,46,12,24,0.0 +20995,25,14,6,0.0 +20995,35,18,9,0.0 +20995,54,7.45,44,0.0 +20995,73,15,44,0.0 +20995,63,43.9,30,0.0 +20995,14,23.25,47,0.0 +20995,49,20,18,0.0 +20995,67,14,14,0.0 +20995,33,2.5,12,0.0 +20995,32,32,3,0.0 +20995,50,16.25,8,0.0 +20995,62,49.3,3,0.0 +20995,7,30,50,0.0 +20995,59,55,6,0.0 +20995,52,7,45,0.0 +20995,40,18.4,50,0.0 +20995,17,39,29,0.0 +20995,74,10,18,0.0 +20995,41,9.65,28,0.0 +20995,37,26,3,0.0 +20995,72,34.8,46,0.0 +20995,64,33.25,40,0.0 +20995,11,21,48,0.0 +20995,69,36,6,0.0 +20995,29,123.79,41,0.0 +20995,68,12.5,32,0.0 +20995,26,31.23,9,0.0 +20995,1,18,6,0.0 +20995,71,21.5,31,0.0 +20995,77,13,23,0.0 +20995,16,17.45,45,0.0 +20995,2,19,28,0.0 +20995,23,9,25,0.0 +20995,70,15,15,0.0 +20995,45,9.5,23,0.0 +20995,42,14,32,0.0 +20995,8,40,19,0.0 +20995,48,12.75,21,0.0 +20995,4,22,43,0.0 +20995,9,97,11,0.0 +20995,36,19,2,0.0 +20995,65,21.05,30,0.0 +20995,3,10,19,0.0 +20995,19,9.2,25,0.0 +20995,21,10,17,0.0 +20995,39,18,44,0.0 +20995,43,46,9,0.0 +20995,20,81,26,0.0 +20995,27,43.9,39,0.0 +20995,5,21.35,20,0.0 +20995,58,13.25,50,0.0 +20995,10,31,47,0.0 +20995,13,6,10,0.0 +20995,24,4.5,22,0.0 +20995,76,18,48,0.0 +20995,18,62.5,45,0.0 +20995,56,38,34,0.0 +20995,57,19.5,4,0.0 +20995,60,34,17,0.0 +20995,61,28.5,3,0.0 +20995,30,25.89,7,0.0 +20995,22,21,12,0.0 +20995,66,17,7,0.0 +20996,57,19.5,48,0.0 +20996,68,12.5,48,0.0 +20996,67,14,23,0.0 +20996,18,62.5,34,0.0 +20996,69,36,40,0.0 +20996,36,19,38,0.0 +20996,3,10,3,0.0 +20996,8,40,42,0.0 +20996,34,14,41,0.0 +20996,5,21.35,21,0.0 +20996,72,34.8,44,0.0 +20996,28,45.6,17,0.0 +20996,53,32.8,34,0.0 +20996,24,4.5,33,0.0 +20996,17,39,29,0.0 +20996,21,10,18,0.0 +20996,51,53,37,0.0 +20996,19,9.2,35,0.0 +20996,41,9.65,8,0.0 +20996,49,20,4,0.0 +20996,6,25,5,0.0 +20996,14,23.25,4,0.0 +20996,64,33.25,16,0.0 +20996,15,15.5,7,0.0 +20996,54,7.45,3,0.0 +20996,55,24,18,0.0 +20996,10,31,33,0.0 +20996,22,21,12,0.0 +20996,66,17,26,0.0 +20996,45,9.5,6,0.0 +20996,20,81,11,0.0 +20996,31,12.5,13,0.0 +20996,46,12,19,0.0 +20996,60,34,6,0.0 +20996,73,15,45,0.0 +20996,37,26,19,0.0 +20996,29,123.79,5,0.0 +20996,75,7.75,43,0.0 +20997,8,40,24,0.0 +20997,50,16.25,12,0.0 +20997,45,9.5,40,0.0 +20997,68,12.5,9,0.0 +20997,21,10,45,0.0 +20997,76,18,47,0.0 +20997,3,10,15,0.0 +20997,43,46,12,0.0 +20997,31,12.5,35,0.0 +20997,38,263.5,2,0.0 +20997,62,49.3,20,0.0 +20997,7,30,24,0.0 +20997,12,38,39,0.0 +20997,69,36,25,0.0 +20997,25,14,32,0.0 +20997,60,34,8,0.0 +20997,34,14,47,0.0 +20997,52,7,45,0.0 +20997,36,19,37,0.0 +20997,17,39,42,0.0 +20997,65,21.05,41,0.0 +20997,6,25,29,0.0 +20997,26,31.23,8,0.0 +20997,55,24,36,0.0 +20997,16,17.45,27,0.0 +20997,15,15.5,33,0.0 +20997,18,62.5,30,0.0 +20997,33,2.5,35,0.0 +20997,41,9.65,39,0.0 +20997,54,7.45,12,0.0 +20997,47,9.5,30,0.0 +20997,77,13,46,0.0 +20997,23,9,4,0.0 +20997,53,32.8,19,0.0 +20997,19,9.2,38,0.0 +20997,71,21.5,37,0.0 +20997,22,21,1,0.0 +20997,51,53,31,0.0 +20997,75,7.75,45,0.0 +20997,59,55,8,0.0 +20997,74,10,41,0.0 +20997,24,4.5,9,0.0 +20997,29,123.79,2,0.0 +20998,21,10,47,0.0 +20998,72,34.8,16,0.0 +20998,35,18,12,0.0 +20998,66,17,42,0.0 +20998,2,19,24,0.0 +20998,29,123.79,33,0.0 +20998,46,12,38,0.0 +20998,65,21.05,36,0.0 +20998,32,32,15,0.0 +20998,19,9.2,47,0.0 +20998,73,15,36,0.0 +20998,9,97,39,0.0 +20998,28,45.6,31,0.0 +20998,77,13,36,0.0 +20998,62,49.3,3,0.0 +20998,51,53,41,0.0 +20999,33,2.5,21,0.0 +20999,52,7,39,0.0 +20999,37,26,4,0.0 +20999,59,55,31,0.0 +20999,10,31,15,0.0 +20999,53,32.8,13,0.0 +20999,44,19.45,27,0.0 +20999,43,46,37,0.0 +20999,66,17,40,0.0 +20999,60,34,40,0.0 +20999,71,21.5,43,0.0 +20999,76,18,49,0.0 +20999,2,19,46,0.0 +20999,74,10,9,0.0 +20999,73,15,30,0.0 +20999,3,10,1,0.0 +20999,27,43.9,34,0.0 +20999,26,31.23,19,0.0 +20999,5,21.35,45,0.0 +20999,67,14,11,0.0 +20999,19,9.2,11,0.0 +20999,42,14,1,0.0 +20999,57,19.5,40,0.0 +20999,64,33.25,45,0.0 +20999,8,40,22,0.0 +21000,63,43.9,43,0.0 +21000,9,97,14,0.0 +21000,38,263.5,33,0.0 +21000,3,10,24,0.0 +21000,51,53,41,0.0 +21000,72,34.8,34,0.0 +21000,14,23.25,20,0.0 +21000,27,43.9,27,0.0 +21000,40,18.4,13,0.0 +21000,35,18,19,0.0 +21000,33,2.5,18,0.0 +21000,6,25,39,0.0 +21000,18,62.5,34,0.0 +21000,67,14,25,0.0 +21000,17,39,29,0.0 +21000,42,14,50,0.0 +21000,29,123.79,11,0.0 +21000,34,14,33,0.0 +21000,53,32.8,34,0.0 +21000,7,30,50,0.0 +21000,74,10,26,0.0 +21000,16,17.45,39,0.0 +21000,11,21,35,0.0 +21000,23,9,16,0.0 +21000,8,40,29,0.0 +21000,5,21.35,6,0.0 +21000,55,24,12,0.0 +21000,48,12.75,19,0.0 +21000,10,31,30,0.0 +21000,43,46,20,0.0 +21000,19,9.2,8,0.0 +21000,22,21,36,0.0 +21000,26,31.23,23,0.0 +21000,76,18,42,0.0 +21000,4,22,17,0.0 +21000,15,15.5,22,0.0 +21000,2,19,17,0.0 +21000,20,81,30,0.0 +21000,64,33.25,5,0.0 +21000,56,38,46,0.0 +21000,71,21.5,14,0.0 +21000,49,20,14,0.0 +21000,52,7,37,0.0 +21000,31,12.5,15,0.0 +21000,68,12.5,46,0.0 +21000,77,13,44,0.0 +21000,36,19,20,0.0 +21000,30,25.89,20,0.0 +21000,66,17,24,0.0 +21000,37,26,4,0.0 +21000,58,13.25,48,0.0 +21000,61,28.5,2,0.0 +21000,39,18,18,0.0 +21000,41,9.65,24,0.0 +21000,44,19.45,39,0.0 +21000,50,16.25,27,0.0 +21000,47,9.5,33,0.0 +21000,69,36,6,0.0 +21000,54,7.45,15,0.0 +21000,24,4.5,1,0.0 +21000,32,32,12,0.0 +21000,25,14,28,0.0 +21001,77,13,35,0.0 +21001,75,7.75,28,0.0 +21001,4,22,20,0.0 +21001,31,12.5,19,0.0 +21001,59,55,46,0.0 +21002,72,34.8,16,0.0 +21002,71,21.5,3,0.0 +21002,52,7,13,0.0 +21002,75,7.75,20,0.0 +21002,28,45.6,8,0.0 +21002,22,21,46,0.0 +21002,25,14,40,0.0 +21002,76,18,49,0.0 +21002,57,19.5,22,0.0 +21002,15,15.5,4,0.0 +21002,18,62.5,44,0.0 +21002,1,18,33,0.0 +21002,49,20,32,0.0 +21002,61,28.5,8,0.0 +21002,34,14,33,0.0 +21002,45,9.5,47,0.0 +21002,47,9.5,35,0.0 +21002,2,19,31,0.0 +21002,12,38,37,0.0 +21002,40,18.4,43,0.0 +21002,3,10,36,0.0 +21002,7,30,7,0.0 +21002,31,12.5,45,0.0 +21002,51,53,34,0.0 +21002,5,21.35,16,0.0 +21002,13,6,13,0.0 +21002,68,12.5,44,0.0 +21002,41,9.65,50,0.0 +21002,37,26,15,0.0 +21002,39,18,3,0.0 +21002,29,123.79,31,0.0 +21002,43,46,31,0.0 +21002,8,40,9,0.0 +21002,54,7.45,8,0.0 +21002,48,12.75,19,0.0 +21002,56,38,36,0.0 +21002,69,36,29,0.0 +21002,64,33.25,14,0.0 +21002,36,19,25,0.0 +21002,6,25,14,0.0 +21002,67,14,12,0.0 +21002,62,49.3,34,0.0 +21002,55,24,34,0.0 +21002,70,15,10,0.0 +21002,38,263.5,31,0.0 +21002,17,39,14,0.0 +21002,9,97,19,0.0 +21002,33,2.5,31,0.0 +21002,42,14,40,0.0 +21002,44,19.45,22,0.0 +21002,58,13.25,33,0.0 +21002,20,81,29,0.0 +21002,77,13,42,0.0 +21002,11,21,35,0.0 +21002,19,9.2,26,0.0 +21002,65,21.05,23,0.0 +21002,30,25.89,10,0.0 +21002,66,17,23,0.0 +21002,59,55,4,0.0 +21002,50,16.25,8,0.0 +21002,23,9,7,0.0 +21002,46,12,24,0.0 +21002,26,31.23,47,0.0 +21002,32,32,40,0.0 +21002,16,17.45,46,0.0 +21002,21,10,13,0.0 +21002,27,43.9,38,0.0 +21002,73,15,13,0.0 +21002,74,10,43,0.0 +21002,24,4.5,36,0.0 +21002,4,22,15,0.0 +21002,35,18,13,0.0 +21002,63,43.9,22,0.0 +21002,14,23.25,6,0.0 +21002,60,34,16,0.0 +21002,53,32.8,20,0.0 +21003,70,15,22,0.0 +21003,34,14,47,0.0 +21003,63,43.9,45,0.0 +21003,58,13.25,34,0.0 +21003,69,36,11,0.0 +21003,68,12.5,39,0.0 +21003,39,18,45,0.0 +21003,42,14,41,0.0 +21003,3,10,11,0.0 +21003,35,18,49,0.0 +21003,66,17,20,0.0 +21003,55,24,33,0.0 +21003,17,39,37,0.0 +21003,24,4.5,21,0.0 +21003,51,53,48,0.0 +21003,31,12.5,3,0.0 +21003,25,14,50,0.0 +21003,11,21,14,0.0 +21003,19,9.2,43,0.0 +21003,1,18,4,0.0 +21003,49,20,5,0.0 +21003,57,19.5,3,0.0 +21003,28,45.6,9,0.0 +21003,47,9.5,28,0.0 +21003,77,13,41,0.0 +21003,64,33.25,18,0.0 +21003,10,31,3,0.0 +21003,33,2.5,25,0.0 +21003,46,12,41,0.0 +21003,32,32,35,0.0 +21003,71,21.5,29,0.0 +21003,36,19,41,0.0 +21003,13,6,1,0.0 +21003,76,18,18,0.0 +21003,38,263.5,13,0.0 +21003,60,34,43,0.0 +21003,12,38,41,0.0 +21003,48,12.75,26,0.0 +21003,15,15.5,24,0.0 +21003,40,18.4,4,0.0 +21003,41,9.65,34,0.0 +21003,45,9.5,44,0.0 +21003,54,7.45,44,0.0 +21003,56,38,38,0.0 +21003,20,81,48,0.0 +21003,44,19.45,24,0.0 +21003,61,28.5,26,0.0 +21003,7,30,41,0.0 +21003,75,7.75,23,0.0 +21003,62,49.3,31,0.0 +21003,2,19,13,0.0 +21003,27,43.9,29,0.0 +21003,65,21.05,31,0.0 +21003,30,25.89,39,0.0 +21003,18,62.5,50,0.0 +21003,50,16.25,7,0.0 +21003,29,123.79,36,0.0 +21003,72,34.8,28,0.0 +21003,5,21.35,44,0.0 +21003,67,14,28,0.0 +21003,43,46,15,0.0 +21003,22,21,20,0.0 +21003,73,15,27,0.0 +21003,52,7,12,0.0 +21004,22,21,22,0.0 +21004,45,9.5,50,0.0 +21004,24,4.5,48,0.0 +21004,52,7,49,0.0 +21004,62,49.3,5,0.0 +21004,56,38,37,0.0 +21004,74,10,36,0.0 +21004,34,14,42,0.0 +21004,58,13.25,46,0.0 +21004,3,10,7,0.0 +21004,70,15,6,0.0 +21004,16,17.45,19,0.0 +21004,11,21,7,0.0 +21004,6,25,32,0.0 +21004,20,81,43,0.0 +21004,55,24,22,0.0 +21004,71,21.5,30,0.0 +21004,30,25.89,34,0.0 +21005,68,12.5,16,0.0 +21005,48,12.75,38,0.0 +21005,62,49.3,23,0.0 +21005,63,43.9,44,0.0 +21005,38,263.5,11,0.0 +21005,14,23.25,19,0.0 +21005,3,10,3,0.0 +21005,60,34,5,0.0 +21005,64,33.25,29,0.0 +21005,29,123.79,46,0.0 +21005,47,9.5,15,0.0 +21005,24,4.5,13,0.0 +21005,39,18,21,0.0 +21005,66,17,19,0.0 +21005,51,53,19,0.0 +21005,11,21,6,0.0 +21005,9,97,7,0.0 +21005,10,31,36,0.0 +21005,55,24,10,0.0 +21005,36,19,36,0.0 +21005,52,7,25,0.0 +21005,27,43.9,7,0.0 +21005,30,25.89,23,0.0 +21005,33,2.5,9,0.0 +21005,13,6,5,0.0 +21005,19,9.2,48,0.0 +21005,74,10,7,0.0 +21005,56,38,16,0.0 +21005,12,38,9,0.0 +21005,49,20,7,0.0 +21005,46,12,35,0.0 +21005,22,21,17,0.0 +21005,65,21.05,14,0.0 +21005,32,32,17,0.0 +21006,17,39,14,0.0 +21006,55,24,15,0.0 +21006,37,26,13,0.0 +21006,5,21.35,50,0.0 +21006,50,16.25,33,0.0 +21006,48,12.75,12,0.0 +21006,73,15,48,0.0 +21006,41,9.65,8,0.0 +21006,13,6,33,0.0 +21006,30,25.89,25,0.0 +21006,45,9.5,39,0.0 +21006,42,14,47,0.0 +21006,58,13.25,22,0.0 +21006,47,9.5,30,0.0 +21006,52,7,11,0.0 +21006,7,30,16,0.0 +21006,68,12.5,4,0.0 +21006,36,19,35,0.0 +21006,49,20,10,0.0 +21006,77,13,32,0.0 +21006,16,17.45,39,0.0 +21006,51,53,19,0.0 +21006,18,62.5,3,0.0 +21006,57,19.5,44,0.0 +21006,70,15,33,0.0 +21006,35,18,36,0.0 +21006,46,12,5,0.0 +21006,10,31,31,0.0 +21006,2,19,31,0.0 +21006,32,32,32,0.0 +21006,63,43.9,23,0.0 +21006,74,10,3,0.0 +21006,44,19.45,17,0.0 +21006,39,18,19,0.0 +21006,20,81,35,0.0 +21006,40,18.4,49,0.0 +21006,75,7.75,17,0.0 +21006,59,55,26,0.0 +21006,23,9,29,0.0 +21007,1,18,48,0.0 +21007,39,18,17,0.0 +21008,26,31.23,32,0.0 +21008,53,32.8,25,0.0 +21008,24,4.5,32,0.0 +21008,38,263.5,21,0.0 +21008,59,55,29,0.0 +21008,7,30,37,0.0 +21008,37,26,2,0.0 +21008,47,9.5,17,0.0 +21008,44,19.45,30,0.0 +21008,46,12,14,0.0 +21008,74,10,14,0.0 +21008,9,97,20,0.0 +21008,60,34,16,0.0 +21008,58,13.25,42,0.0 +21008,3,10,15,0.0 +21008,8,40,13,0.0 +21008,54,7.45,23,0.0 +21008,14,23.25,13,0.0 +21008,65,21.05,31,0.0 +21008,10,31,18,0.0 +21008,29,123.79,34,0.0 +21008,28,45.6,33,0.0 +21008,21,10,15,0.0 +21008,68,12.5,42,0.0 +21008,66,17,19,0.0 +21008,18,62.5,47,0.0 +21008,39,18,38,0.0 +21008,16,17.45,26,0.0 +21008,42,14,30,0.0 +21008,23,9,28,0.0 +21008,19,9.2,45,0.0 +21008,5,21.35,5,0.0 +21008,22,21,47,0.0 +21008,64,33.25,10,0.0 +21008,77,13,29,0.0 +21008,35,18,5,0.0 +21008,61,28.5,22,0.0 +21008,76,18,15,0.0 +21008,6,25,39,0.0 +21008,63,43.9,45,0.0 +21008,69,36,22,0.0 +21008,43,46,39,0.0 +21008,32,32,4,0.0 +21008,50,16.25,1,0.0 +21008,49,20,32,0.0 +21008,72,34.8,39,0.0 +21008,36,19,1,0.0 +21008,57,19.5,27,0.0 +21008,67,14,12,0.0 +21008,51,53,43,0.0 +21008,30,25.89,47,0.0 +21008,1,18,14,0.0 +21008,11,21,6,0.0 +21008,56,38,39,0.0 +21008,55,24,29,0.0 +21008,12,38,4,0.0 +21008,73,15,26,0.0 +21008,25,14,30,0.0 +21008,31,12.5,12,0.0 +21008,15,15.5,11,0.0 +21008,17,39,33,0.0 +21008,48,12.75,36,0.0 +21008,71,21.5,32,0.0 +21008,33,2.5,39,0.0 +21008,20,81,48,0.0 +21008,70,15,23,0.0 +21008,62,49.3,28,0.0 +21008,41,9.65,30,0.0 +21008,4,22,21,0.0 +21009,75,7.75,43,0.0 +21009,39,18,39,0.0 +21009,77,13,32,0.0 +21009,3,10,45,0.0 +21009,76,18,28,0.0 +21009,38,263.5,36,0.0 +21009,29,123.79,16,0.0 +21009,69,36,39,0.0 +21009,9,97,12,0.0 +21009,53,32.8,29,0.0 +21009,23,9,29,0.0 +21009,1,18,7,0.0 +21009,44,19.45,35,0.0 +21009,7,30,26,0.0 +21009,25,14,49,0.0 +21009,41,9.65,45,0.0 +21009,10,31,21,0.0 +21009,46,12,35,0.0 +21009,14,23.25,1,0.0 +21009,48,12.75,20,0.0 +21009,50,16.25,47,0.0 +21009,54,7.45,7,0.0 +21009,11,21,2,0.0 +21009,72,34.8,20,0.0 +21009,74,10,35,0.0 +21009,34,14,19,0.0 +21009,61,28.5,29,0.0 +21009,35,18,11,0.0 +21009,13,6,30,0.0 +21009,8,40,29,0.0 +21009,71,21.5,1,0.0 +21009,43,46,40,0.0 +21009,42,14,12,0.0 +21009,62,49.3,29,0.0 +21009,19,9.2,38,0.0 +21009,2,19,45,0.0 +21009,66,17,25,0.0 +21009,32,32,22,0.0 +21009,49,20,17,0.0 +21009,26,31.23,10,0.0 +21009,20,81,6,0.0 +21009,45,9.5,41,0.0 +21009,65,21.05,38,0.0 +21009,12,38,41,0.0 +21009,31,12.5,17,0.0 +21009,33,2.5,23,0.0 +21009,60,34,37,0.0 +21009,6,25,32,0.0 +21009,15,15.5,29,0.0 +21009,40,18.4,19,0.0 +21009,56,38,3,0.0 +21009,59,55,32,0.0 +21009,68,12.5,16,0.0 +21009,52,7,46,0.0 +21009,36,19,16,0.0 +21009,73,15,17,0.0 +21009,47,9.5,16,0.0 +21009,51,53,29,0.0 +21009,28,45.6,25,0.0 +21009,22,21,15,0.0 +21010,31,12.5,29,0.0 +21010,8,40,39,0.0 +21010,36,19,47,0.0 +21010,2,19,19,0.0 +21010,18,62.5,14,0.0 +21010,47,9.5,31,0.0 +21010,54,7.45,1,0.0 +21010,23,9,8,0.0 +21010,63,43.9,3,0.0 +21010,60,34,1,0.0 +21010,70,15,6,0.0 +21010,29,123.79,25,0.0 +21010,17,39,44,0.0 +21010,32,32,49,0.0 +21010,9,97,32,0.0 +21010,50,16.25,40,0.0 +21010,57,19.5,9,0.0 +21010,65,21.05,31,0.0 +21010,7,30,50,0.0 +21010,69,36,13,0.0 +21010,15,15.5,19,0.0 +21010,37,26,38,0.0 +21010,61,28.5,15,0.0 +21010,13,6,30,0.0 +21010,51,53,12,0.0 +21010,55,24,15,0.0 +21010,21,10,24,0.0 +21010,76,18,14,0.0 +21010,59,55,20,0.0 +21010,26,31.23,50,0.0 +21010,67,14,31,0.0 +21010,38,263.5,29,0.0 +21010,4,22,24,0.0 +21010,33,2.5,15,0.0 +21010,66,17,18,0.0 +21010,27,43.9,18,0.0 +21010,41,9.65,21,0.0 +21010,40,18.4,14,0.0 +21010,44,19.45,44,0.0 +21010,28,45.6,17,0.0 +21010,72,34.8,13,0.0 +21010,3,10,1,0.0 +21010,62,49.3,45,0.0 +21010,30,25.89,8,0.0 +21010,73,15,19,0.0 +21010,22,21,8,0.0 +21010,53,32.8,1,0.0 +21010,25,14,18,0.0 +21010,24,4.5,2,0.0 +21010,48,12.75,24,0.0 +21010,58,13.25,19,0.0 +21010,74,10,23,0.0 +21010,20,81,22,0.0 +21010,19,9.2,45,0.0 +21010,68,12.5,31,0.0 +21010,71,21.5,38,0.0 +21010,56,38,47,0.0 +21010,46,12,35,0.0 +21010,35,18,37,0.0 +21010,39,18,20,0.0 +21010,52,7,16,0.0 +21010,5,21.35,45,0.0 +21010,14,23.25,30,0.0 +21010,43,46,32,0.0 +21010,64,33.25,26,0.0 +21010,12,38,13,0.0 +21010,11,21,27,0.0 +21010,42,14,17,0.0 +21010,49,20,25,0.0 +21010,34,14,36,0.0 +21010,45,9.5,50,0.0 +21010,75,7.75,39,0.0 +21010,10,31,5,0.0 +21011,57,19.5,2,0.0 +21011,44,19.45,46,0.0 +21011,32,32,44,0.0 +21011,42,14,36,0.0 +21011,31,12.5,18,0.0 +21011,18,62.5,39,0.0 +21011,1,18,4,0.0 +21011,30,25.89,25,0.0 +21011,41,9.65,42,0.0 +21011,60,34,14,0.0 +21011,68,12.5,8,0.0 +21011,24,4.5,7,0.0 +21011,74,10,46,0.0 +21011,3,10,37,0.0 +21011,72,34.8,14,0.0 +21011,61,28.5,3,0.0 +21011,33,2.5,40,0.0 +21011,52,7,35,0.0 +21011,38,263.5,12,0.0 +21011,7,30,24,0.0 +21011,65,21.05,31,0.0 +21011,55,24,39,0.0 +21011,59,55,50,0.0 +21011,37,26,30,0.0 +21011,23,9,5,0.0 +21011,10,31,20,0.0 +21011,25,14,33,0.0 +21011,19,9.2,45,0.0 +21011,77,13,31,0.0 +21011,22,21,12,0.0 +21011,9,97,39,0.0 +21011,54,7.45,49,0.0 +21011,8,40,4,0.0 +21011,76,18,13,0.0 +21011,47,9.5,24,0.0 +21011,14,23.25,32,0.0 +21011,29,123.79,43,0.0 +21011,43,46,35,0.0 +21011,73,15,23,0.0 +21011,66,17,1,0.0 +21011,36,19,33,0.0 +21011,49,20,33,0.0 +21011,39,18,26,0.0 +21011,17,39,39,0.0 +21011,4,22,34,0.0 +21011,63,43.9,14,0.0 +21011,11,21,12,0.0 +21011,28,45.6,20,0.0 +21011,2,19,27,0.0 +21011,58,13.25,42,0.0 +21011,16,17.45,37,0.0 +21011,69,36,41,0.0 +21011,40,18.4,19,0.0 +21011,62,49.3,39,0.0 +21011,64,33.25,47,0.0 +21011,56,38,37,0.0 +21011,20,81,47,0.0 +21011,21,10,30,0.0 +21011,48,12.75,20,0.0 +21011,46,12,48,0.0 +21011,6,25,31,0.0 +21011,53,32.8,29,0.0 +21011,71,21.5,26,0.0 +21011,5,21.35,23,0.0 +21011,35,18,31,0.0 +21011,34,14,29,0.0 +21011,45,9.5,47,0.0 +21011,15,15.5,7,0.0 +21011,51,53,43,0.0 +21011,50,16.25,37,0.0 +21011,70,15,9,0.0 +21011,26,31.23,36,0.0 +21011,13,6,3,0.0 +21011,67,14,4,0.0 +21011,75,7.75,38,0.0 +21011,12,38,44,0.0 +21012,35,18,9,0.0 +21012,15,15.5,16,0.0 +21012,22,21,11,0.0 +21012,18,62.5,15,0.0 +21012,31,12.5,15,0.0 +21012,29,123.79,48,0.0 +21012,39,18,4,0.0 +21012,68,12.5,33,0.0 +21012,21,10,30,0.0 +21012,76,18,37,0.0 +21012,51,53,41,0.0 +21012,4,22,43,0.0 +21012,1,18,42,0.0 +21012,74,10,4,0.0 +21012,73,15,2,0.0 +21012,37,26,2,0.0 +21012,71,21.5,33,0.0 +21012,57,19.5,45,0.0 +21012,11,21,25,0.0 +21012,33,2.5,9,0.0 +21012,62,49.3,41,0.0 +21012,7,30,9,0.0 +21012,36,19,29,0.0 +21012,60,34,39,0.0 +21012,6,25,26,0.0 +21012,17,39,23,0.0 +21012,41,9.65,21,0.0 +21012,72,34.8,1,0.0 +21012,65,21.05,47,0.0 +21012,75,7.75,27,0.0 +21012,58,13.25,27,0.0 +21012,24,4.5,4,0.0 +21012,59,55,10,0.0 +21012,2,19,8,0.0 +21012,14,23.25,9,0.0 +21012,64,33.25,4,0.0 +21013,42,14,10,0.0 +21013,52,7,34,0.0 +21013,58,13.25,18,0.0 +21013,28,45.6,44,0.0 +21013,74,10,49,0.0 +21013,35,18,44,0.0 +21013,38,263.5,16,0.0 +21013,73,15,43,0.0 +21013,36,19,39,0.0 +21013,13,6,25,0.0 +21013,37,26,43,0.0 +21013,57,19.5,38,0.0 +21013,75,7.75,32,0.0 +21013,72,34.8,43,0.0 +21013,67,14,43,0.0 +21013,70,15,34,0.0 +21013,66,17,35,0.0 +21013,60,34,11,0.0 +21013,25,14,27,0.0 +21013,9,97,11,0.0 +21013,4,22,34,0.0 +21013,54,7.45,50,0.0 +21013,16,17.45,49,0.0 +21013,10,31,46,0.0 +21013,11,21,31,0.0 +21013,48,12.75,16,0.0 +21013,27,43.9,24,0.0 +21013,20,81,9,0.0 +21013,8,40,43,0.0 +21013,30,25.89,4,0.0 +21013,46,12,20,0.0 +21013,18,62.5,12,0.0 +21013,56,38,12,0.0 +21013,22,21,7,0.0 +21013,63,43.9,8,0.0 +21013,32,32,6,0.0 +21013,26,31.23,42,0.0 +21013,19,9.2,9,0.0 +21013,47,9.5,8,0.0 +21013,24,4.5,46,0.0 +21013,2,19,6,0.0 +21013,3,10,13,0.0 +21013,68,12.5,35,0.0 +21013,69,36,13,0.0 +21013,5,21.35,29,0.0 +21013,34,14,12,0.0 +21013,77,13,13,0.0 +21013,55,24,35,0.0 +21013,50,16.25,49,0.0 +21013,33,2.5,28,0.0 +21013,29,123.79,26,0.0 +21013,31,12.5,32,0.0 +21013,40,18.4,35,0.0 +21013,23,9,30,0.0 +21013,51,53,38,0.0 +21013,41,9.65,50,0.0 +21013,15,15.5,22,0.0 +21013,65,21.05,17,0.0 +21013,71,21.5,17,0.0 +21013,53,32.8,46,0.0 +21013,59,55,48,0.0 +21014,10,31,16,0.0 +21014,5,21.35,21,0.0 +21014,6,25,40,0.0 +21014,30,25.89,33,0.0 +21014,8,40,44,0.0 +21014,42,14,27,0.0 +21014,4,22,21,0.0 +21014,26,31.23,29,0.0 +21014,46,12,9,0.0 +21014,1,18,29,0.0 +21014,14,23.25,8,0.0 +21014,75,7.75,4,0.0 +21014,62,49.3,26,0.0 +21014,22,21,27,0.0 +21014,51,53,9,0.0 +21014,73,15,21,0.0 +21014,47,9.5,31,0.0 +21014,34,14,15,0.0 +21014,57,19.5,41,0.0 +21014,3,10,3,0.0 +21014,53,32.8,42,0.0 +21014,50,16.25,33,0.0 +21014,17,39,16,0.0 +21014,45,9.5,14,0.0 +21014,18,62.5,33,0.0 +21014,11,21,17,0.0 +21014,15,15.5,8,0.0 +21014,33,2.5,18,0.0 +21014,64,33.25,29,0.0 +21014,13,6,15,0.0 +21014,39,18,44,0.0 +21014,28,45.6,31,0.0 +21014,20,81,19,0.0 +21014,59,55,13,0.0 +21014,37,26,28,0.0 +21014,68,12.5,42,0.0 +21014,74,10,27,0.0 +21014,25,14,43,0.0 +21014,19,9.2,45,0.0 +21014,27,43.9,36,0.0 +21014,66,17,2,0.0 +21014,24,4.5,40,0.0 +21014,41,9.65,39,0.0 +21014,54,7.45,35,0.0 +21014,16,17.45,48,0.0 +21014,32,32,18,0.0 +21014,52,7,22,0.0 +21014,61,28.5,24,0.0 +21014,65,21.05,21,0.0 +21014,44,19.45,6,0.0 +21014,43,46,20,0.0 +21014,7,30,20,0.0 +21014,55,24,16,0.0 +21014,77,13,18,0.0 +21014,12,38,37,0.0 +21014,70,15,28,0.0 +21015,42,14,17,0.0 +21015,19,9.2,4,0.0 +21015,64,33.25,25,0.0 +21015,27,43.9,30,0.0 +21015,36,19,14,0.0 +21015,1,18,4,0.0 +21015,18,62.5,17,0.0 +21015,47,9.5,43,0.0 +21015,37,26,31,0.0 +21015,76,18,24,0.0 +21015,62,49.3,10,0.0 +21015,55,24,39,0.0 +21015,13,6,43,0.0 +21015,39,18,31,0.0 +21015,67,14,22,0.0 +21015,17,39,47,0.0 +21015,3,10,47,0.0 +21015,7,30,45,0.0 +21015,49,20,20,0.0 +21015,46,12,29,0.0 +21015,72,34.8,11,0.0 +21015,12,38,32,0.0 +21015,68,12.5,35,0.0 +21015,23,9,7,0.0 +21015,6,25,26,0.0 +21015,16,17.45,6,0.0 +21015,9,97,25,0.0 +21015,8,40,2,0.0 +21015,35,18,10,0.0 +21015,4,22,33,0.0 +21015,77,13,11,0.0 +21015,22,21,9,0.0 +21015,66,17,44,0.0 +21015,41,9.65,48,0.0 +21015,34,14,13,0.0 +21015,32,32,25,0.0 +21015,69,36,27,0.0 +21015,53,32.8,43,0.0 +21015,33,2.5,1,0.0 +21015,61,28.5,43,0.0 +21015,10,31,3,0.0 +21015,45,9.5,47,0.0 +21015,14,23.25,37,0.0 +21015,75,7.75,25,0.0 +21015,20,81,6,0.0 +21015,59,55,42,0.0 +21015,52,7,45,0.0 +21015,15,15.5,41,0.0 +21015,57,19.5,25,0.0 +21015,24,4.5,21,0.0 +21015,60,34,50,0.0 +21015,28,45.6,7,0.0 +21015,30,25.89,46,0.0 +21015,58,13.25,48,0.0 +21015,48,12.75,31,0.0 +21015,65,21.05,13,0.0 +21015,43,46,35,0.0 +21015,44,19.45,2,0.0 +21015,2,19,30,0.0 +21015,5,21.35,29,0.0 +21015,21,10,11,0.0 +21015,70,15,29,0.0 +21015,74,10,14,0.0 +21015,25,14,22,0.0 +21015,54,7.45,23,0.0 +21015,31,12.5,46,0.0 +21015,73,15,46,0.0 +21015,51,53,4,0.0 +21015,50,16.25,31,0.0 +21015,40,18.4,24,0.0 +21015,26,31.23,33,0.0 +21015,29,123.79,49,0.0 +21016,72,34.8,20,0.0 +21016,58,13.25,34,0.0 +21016,3,10,21,0.0 +21016,46,12,5,0.0 +21017,22,21,36,0.0 +21017,11,21,29,0.0 +21017,65,21.05,32,0.0 +21017,49,20,17,0.0 +21017,52,7,34,0.0 +21017,8,40,28,0.0 +21017,70,15,46,0.0 +21017,51,53,4,0.0 +21017,75,7.75,26,0.0 +21017,60,34,2,0.0 +21017,72,34.8,28,0.0 +21017,18,62.5,24,0.0 +21017,54,7.45,32,0.0 +21017,37,26,2,0.0 +21017,26,31.23,43,0.0 +21017,35,18,26,0.0 +21017,7,30,49,0.0 +21017,39,18,1,0.0 +21017,17,39,24,0.0 +21017,30,25.89,2,0.0 +21017,55,24,17,0.0 +21017,62,49.3,24,0.0 +21017,56,38,29,0.0 +21017,74,10,45,0.0 +21018,13,6,2,0.0 +21018,74,10,19,0.0 +21018,14,23.25,16,0.0 +21018,7,30,8,0.0 +21018,26,31.23,7,0.0 +21018,72,34.8,37,0.0 +21018,46,12,27,0.0 +21018,15,15.5,48,0.0 +21018,32,32,23,0.0 +21018,5,21.35,19,0.0 +21018,76,18,20,0.0 +21018,6,25,9,0.0 +21018,63,43.9,5,0.0 +21018,11,21,27,0.0 +21019,45,9.5,23,0.0 +21019,21,10,34,0.0 +21019,41,9.65,35,0.0 +21019,33,2.5,12,0.0 +21019,30,25.89,38,0.0 +21020,45,9.5,29,0.0 +21020,56,38,24,0.0 +21020,20,81,28,0.0 +21020,37,26,34,0.0 +21020,27,43.9,42,0.0 +21020,14,23.25,46,0.0 +21020,10,31,13,0.0 +21020,34,14,31,0.0 +21020,29,123.79,35,0.0 +21020,25,14,19,0.0 +21020,58,13.25,22,0.0 +21020,31,12.5,28,0.0 +21020,65,21.05,19,0.0 +21020,38,263.5,37,0.0 +21020,3,10,23,0.0 +21020,12,38,30,0.0 +21020,16,17.45,17,0.0 +21020,42,14,8,0.0 +21020,7,30,20,0.0 +21020,28,45.6,9,0.0 +21020,51,53,42,0.0 +21020,57,19.5,11,0.0 +21020,53,32.8,22,0.0 +21020,75,7.75,14,0.0 +21020,60,34,4,0.0 +21020,68,12.5,8,0.0 +21020,66,17,14,0.0 +21020,30,25.89,45,0.0 +21020,22,21,35,0.0 +21020,49,20,6,0.0 +21020,70,15,6,0.0 +21020,61,28.5,13,0.0 +21020,41,9.65,18,0.0 +21020,67,14,28,0.0 +21020,47,9.5,32,0.0 +21020,8,40,6,0.0 +21020,35,18,1,0.0 +21020,17,39,19,0.0 +21020,9,97,16,0.0 +21020,23,9,10,0.0 +21020,77,13,43,0.0 +21020,52,7,19,0.0 +21020,5,21.35,30,0.0 +21020,40,18.4,6,0.0 +21020,72,34.8,18,0.0 +21020,33,2.5,47,0.0 +21020,54,7.45,36,0.0 +21020,69,36,43,0.0 +21020,55,24,26,0.0 +21020,76,18,22,0.0 +21020,59,55,26,0.0 +21020,6,25,6,0.0 +21020,73,15,21,0.0 +21020,62,49.3,37,0.0 +21020,74,10,41,0.0 +21020,4,22,11,0.0 +21020,32,32,43,0.0 +21020,46,12,31,0.0 +21020,13,6,47,0.0 +21020,44,19.45,16,0.0 +21020,24,4.5,48,0.0 +21020,1,18,30,0.0 +21020,18,62.5,39,0.0 +21020,2,19,46,0.0 +21020,50,16.25,7,0.0 +21020,21,10,9,0.0 +21020,39,18,21,0.0 +21020,26,31.23,7,0.0 +21020,15,15.5,16,0.0 +21020,36,19,14,0.0 +21020,71,21.5,4,0.0 +21020,43,46,40,0.0 +21020,19,9.2,21,0.0 +21020,11,21,43,0.0 +21021,42,14,26,0.0 +21021,32,32,48,0.0 +21021,26,31.23,3,0.0 +21021,2,19,15,0.0 +21021,13,6,11,0.0 +21021,36,19,19,0.0 +21021,49,20,31,0.0 +21021,69,36,46,0.0 +21022,8,40,15,0.0 +21022,57,19.5,14,0.0 +21022,54,7.45,43,0.0 +21022,7,30,24,0.0 +21022,26,31.23,34,0.0 +21022,23,9,32,0.0 +21023,23,9,29,0.0 +21023,50,16.25,7,0.0 +21023,70,15,29,0.0 +21023,42,14,27,0.0 +21023,56,38,14,0.0 +21023,46,12,21,0.0 +21023,28,45.6,35,0.0 +21023,21,10,21,0.0 +21023,73,15,9,0.0 +21023,31,12.5,21,0.0 +21023,53,32.8,19,0.0 +21023,6,25,46,0.0 +21023,58,13.25,41,0.0 +21023,7,30,50,0.0 +21023,76,18,17,0.0 +21023,72,34.8,28,0.0 +21023,67,14,42,0.0 +21023,44,19.45,50,0.0 +21023,34,14,14,0.0 +21023,63,43.9,39,0.0 +21023,24,4.5,11,0.0 +21023,75,7.75,44,0.0 +21023,38,263.5,48,0.0 +21023,54,7.45,17,0.0 +21023,39,18,49,0.0 +21023,1,18,43,0.0 +21023,2,19,34,0.0 +21023,9,97,2,0.0 +21023,18,62.5,1,0.0 +21023,11,21,16,0.0 +21023,47,9.5,39,0.0 +21023,43,46,36,0.0 +21023,40,18.4,50,0.0 +21023,48,12.75,50,0.0 +21023,19,9.2,14,0.0 +21023,55,24,26,0.0 +21023,45,9.5,4,0.0 +21023,74,10,19,0.0 +21023,64,33.25,9,0.0 +21023,77,13,38,0.0 +21023,14,23.25,21,0.0 +21023,22,21,44,0.0 +21024,75,7.75,6,0.0 +21024,49,20,36,0.0 +21024,66,17,31,0.0 +21024,25,14,24,0.0 +21024,2,19,50,0.0 +21024,55,24,28,0.0 +21024,34,14,9,0.0 +21024,35,18,45,0.0 +21024,37,26,9,0.0 +21024,26,31.23,18,0.0 +21024,5,21.35,26,0.0 +21024,8,40,49,0.0 +21024,28,45.6,14,0.0 +21024,36,19,27,0.0 +21024,60,34,36,0.0 +21024,44,19.45,37,0.0 +21024,6,25,42,0.0 +21024,39,18,42,0.0 +21024,9,97,31,0.0 +21024,73,15,18,0.0 +21024,1,18,15,0.0 +21024,54,7.45,26,0.0 +21024,32,32,7,0.0 +21024,74,10,9,0.0 +21024,64,33.25,37,0.0 +21024,77,13,46,0.0 +21024,71,21.5,41,0.0 +21024,11,21,47,0.0 +21024,59,55,3,0.0 +21024,68,12.5,30,0.0 +21024,62,49.3,35,0.0 +21024,14,23.25,42,0.0 +21024,58,13.25,3,0.0 +21024,72,34.8,12,0.0 +21024,20,81,22,0.0 +21024,22,21,14,0.0 +21024,48,12.75,23,0.0 +21024,45,9.5,34,0.0 +21024,29,123.79,37,0.0 +21024,70,15,4,0.0 +21024,43,46,36,0.0 +21024,19,9.2,28,0.0 +21024,50,16.25,9,0.0 +21024,51,53,40,0.0 +21024,24,4.5,49,0.0 +21024,7,30,45,0.0 +21024,13,6,9,0.0 +21024,27,43.9,19,0.0 +21024,3,10,47,0.0 +21024,38,263.5,33,0.0 +21024,40,18.4,46,0.0 +21024,61,28.5,26,0.0 +21024,33,2.5,26,0.0 +21024,21,10,39,0.0 +21024,23,9,30,0.0 +21024,17,39,25,0.0 +21024,4,22,41,0.0 +21024,76,18,47,0.0 +21024,65,21.05,14,0.0 +21025,25,14,16,0.0 +21025,36,19,12,0.0 +21025,13,6,2,0.0 +21025,29,123.79,46,0.0 +21025,20,81,49,0.0 +21025,9,97,40,0.0 +21025,23,9,34,0.0 +21025,42,14,10,0.0 +21025,67,14,1,0.0 +21025,34,14,32,0.0 +21025,75,7.75,11,0.0 +21025,27,43.9,39,0.0 +21025,49,20,38,0.0 +21025,35,18,36,0.0 +21025,66,17,5,0.0 +21025,15,15.5,43,0.0 +21025,62,49.3,36,0.0 +21025,10,31,14,0.0 +21025,7,30,19,0.0 +21025,22,21,37,0.0 +21025,12,38,18,0.0 +21025,2,19,16,0.0 +21025,45,9.5,37,0.0 +21025,44,19.45,6,0.0 +21025,8,40,43,0.0 +21025,70,15,1,0.0 +21025,46,12,31,0.0 +21025,73,15,2,0.0 +21025,76,18,3,0.0 +21025,19,9.2,40,0.0 +21025,18,62.5,46,0.0 +21025,1,18,47,0.0 +21025,4,22,20,0.0 +21025,30,25.89,11,0.0 +21025,54,7.45,19,0.0 +21025,26,31.23,29,0.0 +21025,5,21.35,46,0.0 +21025,63,43.9,47,0.0 +21025,71,21.5,32,0.0 +21025,31,12.5,16,0.0 +21025,47,9.5,45,0.0 +21025,60,34,1,0.0 +21025,77,13,16,0.0 +21025,55,24,38,0.0 +21025,72,34.8,20,0.0 +21025,56,38,6,0.0 +21025,6,25,20,0.0 +21025,74,10,48,0.0 +21025,32,32,27,0.0 +21025,33,2.5,32,0.0 +21025,16,17.45,24,0.0 +21025,40,18.4,50,0.0 +21025,28,45.6,11,0.0 +21025,53,32.8,32,0.0 +21025,17,39,31,0.0 +21025,69,36,45,0.0 +21025,43,46,36,0.0 +21025,51,53,4,0.0 +21025,24,4.5,3,0.0 +21025,3,10,30,0.0 +21025,58,13.25,3,0.0 +21025,38,263.5,18,0.0 +21025,57,19.5,37,0.0 +21025,64,33.25,40,0.0 +21025,11,21,30,0.0 +21025,68,12.5,37,0.0 +21025,59,55,48,0.0 +21026,67,14,1,0.0 +21026,35,18,11,0.0 +21026,75,7.75,47,0.0 +21026,51,53,7,0.0 +21026,52,7,20,0.0 +21026,11,21,11,0.0 +21026,20,81,41,0.0 +21026,32,32,8,0.0 +21026,44,19.45,19,0.0 +21026,50,16.25,35,0.0 +21026,14,23.25,17,0.0 +21026,18,62.5,17,0.0 +21026,49,20,15,0.0 +21026,7,30,48,0.0 +21026,6,25,38,0.0 +21026,68,12.5,38,0.0 +21026,39,18,28,0.0 +21026,72,34.8,34,0.0 +21026,77,13,4,0.0 +21026,69,36,26,0.0 +21026,56,38,10,0.0 +21026,70,15,32,0.0 +21026,61,28.5,43,0.0 +21026,73,15,11,0.0 +21026,41,9.65,21,0.0 +21026,45,9.5,35,0.0 +21026,55,24,19,0.0 +21026,40,18.4,2,0.0 +21026,36,19,48,0.0 +21026,8,40,21,0.0 +21026,58,13.25,44,0.0 +21026,34,14,25,0.0 +21026,23,9,32,0.0 +21027,17,39,22,0.0 +21027,38,263.5,11,0.0 +21027,22,21,10,0.0 +21027,53,32.8,21,0.0 +21027,18,62.5,25,0.0 +21027,9,97,19,0.0 +21027,29,123.79,25,0.0 +21027,43,46,19,0.0 +21027,57,19.5,38,0.0 +21027,61,28.5,7,0.0 +21027,71,21.5,18,0.0 +21027,69,36,7,0.0 +21027,32,32,15,0.0 +21027,39,18,38,0.0 +21027,55,24,45,0.0 +21027,56,38,36,0.0 +21027,74,10,24,0.0 +21027,33,2.5,34,0.0 +21027,24,4.5,43,0.0 +21027,16,17.45,37,0.0 +21028,59,55,11,0.0 +21028,16,17.45,24,0.0 +21028,42,14,23,0.0 +21028,70,15,28,0.0 +21028,50,16.25,31,0.0 +21028,51,53,48,0.0 +21028,66,17,12,0.0 +21028,77,13,49,0.0 +21028,30,25.89,34,0.0 +21028,48,12.75,19,0.0 +21028,58,13.25,26,0.0 +21028,23,9,47,0.0 +21028,74,10,40,0.0 +21028,40,18.4,6,0.0 +21028,21,10,13,0.0 +21028,2,19,46,0.0 +21028,52,7,48,0.0 +21028,44,19.45,27,0.0 +21028,33,2.5,10,0.0 +21028,29,123.79,45,0.0 +21028,62,49.3,3,0.0 +21028,4,22,34,0.0 +21028,15,15.5,4,0.0 +21028,24,4.5,2,0.0 +21028,7,30,40,0.0 +21028,8,40,10,0.0 +21028,26,31.23,9,0.0 +21028,67,14,37,0.0 +21028,36,19,23,0.0 +21028,49,20,32,0.0 +21028,19,9.2,32,0.0 +21028,28,45.6,47,0.0 +21028,61,28.5,14,0.0 +21028,41,9.65,41,0.0 +21028,13,6,39,0.0 +21028,35,18,21,0.0 +21028,20,81,6,0.0 +21028,54,7.45,2,0.0 +21028,1,18,24,0.0 +21028,72,34.8,50,0.0 +21028,47,9.5,24,0.0 +21028,3,10,47,0.0 +21028,43,46,13,0.0 +21028,46,12,30,0.0 +21028,39,18,10,0.0 +21028,17,39,43,0.0 +21028,11,21,24,0.0 +21028,73,15,1,0.0 +21028,68,12.5,2,0.0 +21028,56,38,4,0.0 +21028,38,263.5,42,0.0 +21028,22,21,48,0.0 +21029,2,19,14,0.0 +21029,5,21.35,7,0.0 +21029,73,15,7,0.0 +21029,71,21.5,26,0.0 +21029,33,2.5,22,0.0 +21029,13,6,43,0.0 +21029,37,26,24,0.0 +21029,72,34.8,24,0.0 +21029,67,14,20,0.0 +21029,27,43.9,43,0.0 +21029,53,32.8,30,0.0 +21029,41,9.65,20,0.0 +21029,31,12.5,28,0.0 +21029,19,9.2,47,0.0 +21029,11,21,27,0.0 +21029,51,53,38,0.0 +21029,20,81,9,0.0 +21029,10,31,44,0.0 +21029,57,19.5,28,0.0 +21029,23,9,40,0.0 +21029,32,32,17,0.0 +21029,48,12.75,33,0.0 +21029,26,31.23,27,0.0 +21030,18,62.5,27,0.0 +21030,65,21.05,29,0.0 +21030,48,12.75,30,0.0 +21030,53,32.8,40,0.0 +21030,64,33.25,26,0.0 +21030,4,22,11,0.0 +21030,25,14,33,0.0 +21030,43,46,34,0.0 +21030,39,18,5,0.0 +21030,42,14,5,0.0 +21030,29,123.79,48,0.0 +21030,44,19.45,35,0.0 +21030,13,6,19,0.0 +21030,35,18,14,0.0 +21030,52,7,26,0.0 +21030,67,14,19,0.0 +21030,19,9.2,37,0.0 +21030,11,21,47,0.0 +21030,45,9.5,2,0.0 +21030,23,9,5,0.0 +21030,70,15,26,0.0 +21030,12,38,40,0.0 +21030,17,39,11,0.0 +21030,72,34.8,19,0.0 +21030,31,12.5,41,0.0 +21030,27,43.9,14,0.0 +21030,28,45.6,31,0.0 +21030,77,13,11,0.0 +21030,50,16.25,12,0.0 +21030,2,19,17,0.0 +21030,33,2.5,13,0.0 +21030,3,10,4,0.0 +21030,66,17,11,0.0 +21030,73,15,46,0.0 +21030,20,81,47,0.0 +21030,69,36,38,0.0 +21030,22,21,41,0.0 +21030,6,25,27,0.0 +21031,60,34,31,0.0 +21031,45,9.5,9,0.0 +21031,71,21.5,20,0.0 +21031,15,15.5,32,0.0 +21031,4,22,9,0.0 +21031,21,10,22,0.0 +21031,1,18,46,0.0 +21031,32,32,49,0.0 +21031,68,12.5,20,0.0 +21031,11,21,19,0.0 +21031,7,30,12,0.0 +21031,61,28.5,31,0.0 +21031,72,34.8,35,0.0 +21031,25,14,9,0.0 +21031,27,43.9,28,0.0 +21031,26,31.23,36,0.0 +21031,8,40,26,0.0 +21031,49,20,45,0.0 +21031,31,12.5,9,0.0 +21031,17,39,5,0.0 +21031,19,9.2,43,0.0 +21031,12,38,44,0.0 +21031,39,18,24,0.0 +21031,41,9.65,17,0.0 +21031,50,16.25,14,0.0 +21031,30,25.89,25,0.0 +21031,18,62.5,48,0.0 +21031,10,31,8,0.0 +21031,44,19.45,30,0.0 +21032,64,33.25,7,0.0 +21032,33,2.5,23,0.0 +21032,59,55,1,0.0 +21032,17,39,21,0.0 +21032,68,12.5,40,0.0 +21032,75,7.75,24,0.0 +21032,57,19.5,11,0.0 +21032,49,20,24,0.0 +21032,18,62.5,36,0.0 +21032,23,9,14,0.0 +21032,36,19,42,0.0 +21032,4,22,35,0.0 +21032,48,12.75,22,0.0 +21032,35,18,26,0.0 +21032,30,25.89,50,0.0 +21032,24,4.5,40,0.0 +21032,54,7.45,48,0.0 +21032,32,32,11,0.0 +21032,66,17,28,0.0 +21032,12,38,27,0.0 +21032,55,24,33,0.0 +21032,69,36,15,0.0 +21032,73,15,27,0.0 +21032,11,21,43,0.0 +21032,29,123.79,50,0.0 +21032,45,9.5,25,0.0 +21032,3,10,12,0.0 +21032,5,21.35,47,0.0 +21032,43,46,1,0.0 +21032,14,23.25,36,0.0 +21032,52,7,23,0.0 +21032,20,81,21,0.0 +21032,7,30,19,0.0 +21032,61,28.5,18,0.0 +21032,16,17.45,7,0.0 +21033,47,9.5,17,0.0 +21033,38,263.5,1,0.0 +21033,60,34,5,0.0 +21033,20,81,15,0.0 +21033,19,9.2,49,0.0 +21033,27,43.9,30,0.0 +21033,10,31,44,0.0 +21033,14,23.25,48,0.0 +21033,72,34.8,42,0.0 +21033,40,18.4,4,0.0 +21033,52,7,6,0.0 +21033,69,36,33,0.0 +21033,22,21,39,0.0 +21033,64,33.25,20,0.0 +21033,31,12.5,15,0.0 +21033,43,46,42,0.0 +21033,36,19,45,0.0 +21033,3,10,37,0.0 +21033,67,14,9,0.0 +21033,37,26,9,0.0 +21033,54,7.45,18,0.0 +21033,59,55,1,0.0 +21033,39,18,29,0.0 +21034,14,23.25,15,0.0 +21034,64,33.25,25,0.0 +21034,72,34.8,21,0.0 +21034,36,19,25,0.0 +21034,20,81,32,0.0 +21034,42,14,2,0.0 +21034,24,4.5,47,0.0 +21034,21,10,48,0.0 +21034,9,97,35,0.0 +21034,38,263.5,45,0.0 +21034,52,7,34,0.0 +21034,59,55,24,0.0 +21034,48,12.75,35,0.0 +21034,50,16.25,19,0.0 +21034,66,17,43,0.0 +21034,61,28.5,4,0.0 +21034,26,31.23,23,0.0 +21034,32,32,3,0.0 +21035,28,45.6,22,0.0 +21035,23,9,44,0.0 +21035,5,21.35,50,0.0 +21035,21,10,10,0.0 +21035,75,7.75,18,0.0 +21036,63,43.9,24,0.0 +21036,20,81,48,0.0 +21036,5,21.35,13,0.0 +21036,76,18,28,0.0 +21036,12,38,35,0.0 +21036,43,46,8,0.0 +21036,77,13,3,0.0 +21036,67,14,47,0.0 +21036,15,15.5,4,0.0 +21036,41,9.65,11,0.0 +21036,9,97,34,0.0 +21036,10,31,16,0.0 +21036,42,14,28,0.0 +21036,68,12.5,40,0.0 +21036,18,62.5,22,0.0 +21036,16,17.45,50,0.0 +21036,36,19,22,0.0 +21036,2,19,43,0.0 +21036,37,26,35,0.0 +21036,70,15,40,0.0 +21036,7,30,26,0.0 +21036,40,18.4,1,0.0 +21036,58,13.25,43,0.0 +21036,66,17,48,0.0 +21036,71,21.5,16,0.0 +21036,31,12.5,47,0.0 +21036,53,32.8,42,0.0 +21036,19,9.2,44,0.0 +21036,46,12,31,0.0 +21036,38,263.5,2,0.0 +21036,64,33.25,32,0.0 +21036,47,9.5,30,0.0 +21036,73,15,13,0.0 +21036,69,36,48,0.0 +21036,8,40,20,0.0 +21036,75,7.75,2,0.0 +21036,57,19.5,27,0.0 +21036,49,20,34,0.0 +21036,6,25,3,0.0 +21036,54,7.45,37,0.0 +21036,60,34,6,0.0 +21036,33,2.5,45,0.0 +21036,21,10,5,0.0 +21036,65,21.05,5,0.0 +21036,62,49.3,19,0.0 +21036,25,14,40,0.0 +21036,1,18,43,0.0 +21036,51,53,10,0.0 +21036,26,31.23,4,0.0 +21036,56,38,44,0.0 +21036,4,22,26,0.0 +21036,55,24,17,0.0 +21036,11,21,1,0.0 +21036,45,9.5,38,0.0 +21036,50,16.25,46,0.0 +21036,17,39,16,0.0 +21036,44,19.45,39,0.0 +21036,23,9,21,0.0 +21036,3,10,30,0.0 +21036,28,45.6,32,0.0 +21036,59,55,21,0.0 +21036,32,32,10,0.0 +21036,52,7,6,0.0 +21036,29,123.79,43,0.0 +21036,14,23.25,17,0.0 +21036,74,10,48,0.0 +21036,48,12.75,34,0.0 +21036,34,14,47,0.0 +21037,62,49.3,35,0.0 +21037,44,19.45,2,0.0 +21037,54,7.45,20,0.0 +21037,30,25.89,41,0.0 +21037,29,123.79,50,0.0 +21037,68,12.5,10,0.0 +21037,59,55,44,0.0 +21037,75,7.75,4,0.0 +21037,33,2.5,24,0.0 +21037,40,18.4,23,0.0 +21037,74,10,47,0.0 +21037,6,25,17,0.0 +21037,24,4.5,20,0.0 +21037,1,18,5,0.0 +21037,51,53,28,0.0 +21037,22,21,28,0.0 +21037,21,10,48,0.0 +21037,65,21.05,14,0.0 +21037,48,12.75,37,0.0 +21038,6,25,34,0.0 +21038,4,22,11,0.0 +21038,1,18,29,0.0 +21038,28,45.6,39,0.0 +21038,44,19.45,2,0.0 +21038,22,21,10,0.0 +21038,61,28.5,49,0.0 +21038,70,15,30,0.0 +21038,41,9.65,36,0.0 +21038,72,34.8,28,0.0 +21038,25,14,42,0.0 +21038,42,14,8,0.0 +21038,3,10,48,0.0 +21038,65,21.05,16,0.0 +21038,56,38,8,0.0 +21038,21,10,36,0.0 +21038,39,18,50,0.0 +21038,50,16.25,28,0.0 +21038,15,15.5,43,0.0 +21038,46,12,46,0.0 +21038,16,17.45,12,0.0 +21038,34,14,14,0.0 +21038,18,62.5,48,0.0 +21038,52,7,49,0.0 +21038,35,18,10,0.0 +21038,9,97,5,0.0 +21038,54,7.45,33,0.0 +21038,33,2.5,31,0.0 +21038,67,14,6,0.0 +21038,26,31.23,6,0.0 +21038,11,21,8,0.0 +21038,74,10,10,0.0 +21039,61,28.5,2,0.0 +21039,58,13.25,39,0.0 +21039,64,33.25,17,0.0 +21039,38,263.5,35,0.0 +21039,6,25,26,0.0 +21039,76,18,1,0.0 +21039,12,38,29,0.0 +21039,62,49.3,46,0.0 +21039,21,10,1,0.0 +21039,63,43.9,4,0.0 +21039,66,17,50,0.0 +21039,46,12,10,0.0 +21039,19,9.2,19,0.0 +21039,5,21.35,46,0.0 +21039,39,18,18,0.0 +21039,42,14,4,0.0 +21039,26,31.23,32,0.0 +21039,56,38,30,0.0 +21039,30,25.89,7,0.0 +21040,47,9.5,31,0.0 +21040,16,17.45,29,0.0 +21040,75,7.75,15,0.0 +21040,39,18,28,0.0 +21040,6,25,3,0.0 +21040,28,45.6,3,0.0 +21040,40,18.4,29,0.0 +21040,57,19.5,15,0.0 +21040,5,21.35,12,0.0 +21040,45,9.5,26,0.0 +21040,3,10,23,0.0 +21040,34,14,22,0.0 +21040,1,18,15,0.0 +21040,73,15,2,0.0 +21040,62,49.3,12,0.0 +21040,12,38,40,0.0 +21040,50,16.25,27,0.0 +21040,23,9,6,0.0 +21040,21,10,46,0.0 +21040,58,13.25,30,0.0 +21040,9,97,48,0.0 +21040,14,23.25,48,0.0 +21040,69,36,29,0.0 +21040,30,25.89,10,0.0 +21040,71,21.5,50,0.0 +21040,31,12.5,47,0.0 +21040,38,263.5,44,0.0 +21040,70,15,3,0.0 +21040,27,43.9,30,0.0 +21040,37,26,22,0.0 +21040,10,31,38,0.0 +21040,77,13,23,0.0 +21040,51,53,41,0.0 +21041,20,81,34,0.0 +21041,31,12.5,42,0.0 +21041,27,43.9,2,0.0 +21041,60,34,12,0.0 +21041,50,16.25,6,0.0 +21041,5,21.35,22,0.0 +21041,47,9.5,23,0.0 +21041,56,38,35,0.0 +21041,68,12.5,13,0.0 +21042,73,15,17,0.0 +21042,66,17,42,0.0 +21043,75,7.75,4,0.0 +21043,55,24,41,0.0 +21043,2,19,19,0.0 +21043,4,22,38,0.0 +21043,42,14,28,0.0 +21043,39,18,30,0.0 +21043,6,25,1,0.0 +21043,15,15.5,17,0.0 +21043,68,12.5,19,0.0 +21043,25,14,21,0.0 +21043,20,81,10,0.0 +21043,73,15,3,0.0 +21043,70,15,29,0.0 +21043,1,18,35,0.0 +21043,12,38,42,0.0 +21043,48,12.75,23,0.0 +21043,7,30,31,0.0 +21043,57,19.5,5,0.0 +21043,49,20,43,0.0 +21043,36,19,33,0.0 +21043,3,10,8,0.0 +21043,45,9.5,1,0.0 +21043,63,43.9,37,0.0 +21043,50,16.25,32,0.0 +21043,41,9.65,33,0.0 +21043,26,31.23,44,0.0 +21043,35,18,31,0.0 +21043,11,21,20,0.0 +21043,27,43.9,3,0.0 +21043,62,49.3,43,0.0 +21043,74,10,40,0.0 +21043,47,9.5,7,0.0 +21043,16,17.45,25,0.0 +21043,67,14,38,0.0 +21043,65,21.05,31,0.0 +21043,38,263.5,46,0.0 +21043,77,13,39,0.0 +21043,8,40,13,0.0 +21043,34,14,3,0.0 +21043,54,7.45,37,0.0 +21043,28,45.6,24,0.0 +21043,33,2.5,9,0.0 +21043,44,19.45,7,0.0 +21043,58,13.25,27,0.0 +21043,32,32,25,0.0 +21043,60,34,11,0.0 +21044,58,13.25,24,0.0 +21044,49,20,31,0.0 +21044,55,24,35,0.0 +21044,11,21,25,0.0 +21044,42,14,36,0.0 +21044,32,32,20,0.0 +21044,3,10,8,0.0 +21044,27,43.9,1,0.0 +21044,28,45.6,36,0.0 +21044,47,9.5,49,0.0 +21044,59,55,13,0.0 +21044,56,38,42,0.0 +21044,10,31,32,0.0 +21044,69,36,24,0.0 +21044,71,21.5,35,0.0 +21044,54,7.45,15,0.0 +21044,33,2.5,22,0.0 +21044,9,97,31,0.0 +21044,64,33.25,21,0.0 +21044,76,18,15,0.0 +21044,35,18,29,0.0 +21044,53,32.8,32,0.0 +21044,43,46,2,0.0 +21044,21,10,20,0.0 +21044,24,4.5,23,0.0 +21044,31,12.5,21,0.0 +21044,40,18.4,50,0.0 +21044,44,19.45,21,0.0 +21044,75,7.75,1,0.0 +21044,1,18,32,0.0 +21044,2,19,10,0.0 +21044,29,123.79,7,0.0 +21044,70,15,21,0.0 +21044,37,26,6,0.0 +21044,30,25.89,10,0.0 +21044,36,19,38,0.0 +21045,75,7.75,18,0.0 +21045,16,17.45,4,0.0 +21045,5,21.35,39,0.0 +21045,12,38,3,0.0 +21045,38,263.5,35,0.0 +21045,28,45.6,34,0.0 +21045,23,9,33,0.0 +21045,41,9.65,30,0.0 +21045,47,9.5,20,0.0 +21045,67,14,4,0.0 +21045,73,15,27,0.0 +21045,63,43.9,29,0.0 +21045,24,4.5,25,0.0 +21045,42,14,17,0.0 +21045,64,33.25,49,0.0 +21045,13,6,8,0.0 +21045,2,19,40,0.0 +21045,65,21.05,37,0.0 +21045,59,55,14,0.0 +21045,36,19,8,0.0 +21045,66,17,18,0.0 +21045,57,19.5,38,0.0 +21045,60,34,38,0.0 +21045,34,14,43,0.0 +21045,48,12.75,3,0.0 +21045,17,39,17,0.0 +21045,3,10,8,0.0 +21045,45,9.5,10,0.0 +21046,1,18,35,0.0 +21046,25,14,1,0.0 +21046,20,81,25,0.0 +21046,62,49.3,23,0.0 +21046,24,4.5,29,0.0 +21046,74,10,22,0.0 +21046,32,32,50,0.0 +21046,23,9,7,0.0 +21046,64,33.25,32,0.0 +21046,47,9.5,40,0.0 +21046,43,46,16,0.0 +21046,59,55,47,0.0 +21046,41,9.65,42,0.0 +21046,3,10,15,0.0 +21046,67,14,42,0.0 +21046,28,45.6,20,0.0 +21046,66,17,19,0.0 +21046,27,43.9,50,0.0 +21046,51,53,4,0.0 +21046,19,9.2,31,0.0 +21046,17,39,42,0.0 +21046,69,36,34,0.0 +21046,50,16.25,18,0.0 +21046,8,40,18,0.0 +21046,2,19,35,0.0 +21046,71,21.5,41,0.0 +21047,63,43.9,2,0.0 +21047,27,43.9,45,0.0 +21047,45,9.5,21,0.0 +21047,31,12.5,33,0.0 +21047,17,39,22,0.0 +21047,56,38,23,0.0 +21047,6,25,5,0.0 +21047,33,2.5,13,0.0 +21047,62,49.3,1,0.0 +21047,7,30,15,0.0 +21047,15,15.5,13,0.0 +21047,44,19.45,43,0.0 +21047,64,33.25,42,0.0 +21047,24,4.5,11,0.0 +21047,75,7.75,50,0.0 +21047,16,17.45,10,0.0 +21048,7,30,47,0.0 +21048,64,33.25,13,0.0 +21048,32,32,1,0.0 +21048,47,9.5,39,0.0 +21048,23,9,42,0.0 +21048,6,25,43,0.0 +21048,66,17,3,0.0 +21048,40,18.4,48,0.0 +21048,56,38,49,0.0 +21048,46,12,8,0.0 +21048,31,12.5,38,0.0 +21048,70,15,45,0.0 +21048,72,34.8,26,0.0 +21048,45,9.5,46,0.0 +21048,50,16.25,15,0.0 +21048,28,45.6,20,0.0 +21048,14,23.25,16,0.0 +21048,60,34,30,0.0 +21048,55,24,16,0.0 +21048,34,14,29,0.0 +21048,54,7.45,38,0.0 +21048,63,43.9,36,0.0 +21048,67,14,27,0.0 +21048,33,2.5,26,0.0 +21048,15,15.5,12,0.0 +21048,18,62.5,43,0.0 +21048,49,20,48,0.0 +21048,10,31,17,0.0 +21048,19,9.2,46,0.0 +21048,9,97,8,0.0 +21048,68,12.5,24,0.0 +21048,42,14,3,0.0 +21048,3,10,48,0.0 +21048,75,7.75,47,0.0 +21048,41,9.65,23,0.0 +21048,26,31.23,48,0.0 +21048,73,15,46,0.0 +21048,11,21,46,0.0 +21048,74,10,8,0.0 +21049,72,34.8,17,0.0 +21049,32,32,48,0.0 +21049,38,263.5,30,0.0 +21049,50,16.25,50,0.0 +21049,66,17,49,0.0 +21049,47,9.5,18,0.0 +21049,21,10,33,0.0 +21049,37,26,5,0.0 +21049,73,15,14,0.0 +21049,2,19,2,0.0 +21049,67,14,2,0.0 +21049,58,13.25,36,0.0 +21049,36,19,47,0.0 +21049,65,21.05,15,0.0 +21049,16,17.45,30,0.0 +21049,13,6,29,0.0 +21049,31,12.5,32,0.0 +21049,29,123.79,8,0.0 +21049,63,43.9,1,0.0 +21049,76,18,46,0.0 +21049,54,7.45,34,0.0 +21049,49,20,29,0.0 +21049,68,12.5,42,0.0 +21049,75,7.75,34,0.0 +21049,14,23.25,25,0.0 +21049,46,12,6,0.0 +21049,34,14,10,0.0 +21049,28,45.6,36,0.0 +21049,12,38,33,0.0 +21049,17,39,8,0.0 +21049,20,81,20,0.0 +21049,3,10,36,0.0 +21049,8,40,28,0.0 +21049,22,21,25,0.0 +21049,56,38,42,0.0 +21049,18,62.5,3,0.0 +21049,11,21,7,0.0 +21049,62,49.3,2,0.0 +21049,41,9.65,19,0.0 +21049,77,13,46,0.0 +21049,24,4.5,44,0.0 +21049,27,43.9,26,0.0 +21049,19,9.2,24,0.0 +21049,15,15.5,28,0.0 +21049,10,31,45,0.0 +21049,5,21.35,44,0.0 +21049,26,31.23,6,0.0 +21049,57,19.5,35,0.0 +21049,48,12.75,13,0.0 +21049,42,14,42,0.0 +21049,7,30,12,0.0 +21049,30,25.89,39,0.0 +21049,52,7,3,0.0 +21049,74,10,43,0.0 +21049,71,21.5,34,0.0 +21049,39,18,21,0.0 +21049,1,18,31,0.0 +21049,60,34,19,0.0 +21050,68,12.5,19,0.0 +21050,62,49.3,27,0.0 +21050,9,97,39,0.0 +21050,27,43.9,3,0.0 +21050,52,7,32,0.0 +21050,26,31.23,42,0.0 +21050,43,46,45,0.0 +21050,71,21.5,49,0.0 +21050,76,18,45,0.0 +21050,44,19.45,36,0.0 +21050,7,30,28,0.0 +21050,10,31,24,0.0 +21050,32,32,30,0.0 +21050,69,36,16,0.0 +21050,17,39,5,0.0 +21050,41,9.65,23,0.0 +21050,59,55,20,0.0 +21050,28,45.6,16,0.0 +21050,55,24,41,0.0 +21050,33,2.5,17,0.0 +21050,16,17.45,26,0.0 +21050,36,19,48,0.0 +21050,14,23.25,18,0.0 +21050,12,38,20,0.0 +21050,3,10,16,0.0 +21050,20,81,12,0.0 +21050,50,16.25,32,0.0 +21050,49,20,28,0.0 +21050,45,9.5,48,0.0 +21050,65,21.05,17,0.0 +21050,22,21,20,0.0 +21050,6,25,33,0.0 +21050,73,15,46,0.0 +21050,46,12,4,0.0 +21050,67,14,49,0.0 +21050,47,9.5,38,0.0 +21050,66,17,46,0.0 +21050,75,7.75,43,0.0 +21050,35,18,25,0.0 +21050,24,4.5,3,0.0 +21050,57,19.5,48,0.0 +21050,18,62.5,37,0.0 +21051,2,19,20,0.0 +21051,53,32.8,28,0.0 +21052,62,49.3,12,0.0 +21052,48,12.75,9,0.0 +21052,68,12.5,30,0.0 +21052,54,7.45,48,0.0 +21052,10,31,25,0.0 +21052,64,33.25,47,0.0 +21052,30,25.89,43,0.0 +21052,61,28.5,31,0.0 +21052,41,9.65,46,0.0 +21052,75,7.75,20,0.0 +21052,32,32,18,0.0 +21052,52,7,26,0.0 +21052,34,14,40,0.0 +21052,14,23.25,29,0.0 +21052,6,25,47,0.0 +21052,55,24,17,0.0 +21052,46,12,29,0.0 +21052,42,14,21,0.0 +21052,23,9,40,0.0 +21052,59,55,43,0.0 +21052,76,18,16,0.0 +21052,57,19.5,10,0.0 +21052,71,21.5,26,0.0 +21052,45,9.5,27,0.0 +21052,13,6,44,0.0 +21052,22,21,26,0.0 +21052,77,13,40,0.0 +21052,31,12.5,42,0.0 +21052,2,19,11,0.0 +21052,26,31.23,9,0.0 +21052,35,18,6,0.0 +21052,37,26,31,0.0 +21052,43,46,27,0.0 +21052,20,81,23,0.0 +21052,74,10,24,0.0 +21052,44,19.45,19,0.0 +21052,3,10,20,0.0 +21052,70,15,8,0.0 +21052,56,38,45,0.0 +21052,63,43.9,40,0.0 +21052,53,32.8,5,0.0 +21052,21,10,4,0.0 +21052,33,2.5,22,0.0 +21052,58,13.25,30,0.0 +21052,12,38,34,0.0 +21052,29,123.79,44,0.0 +21052,1,18,7,0.0 +21052,72,34.8,36,0.0 +21052,50,16.25,32,0.0 +21052,66,17,32,0.0 +21052,36,19,2,0.0 +21052,67,14,32,0.0 +21052,60,34,16,0.0 +21052,19,9.2,31,0.0 +21052,25,14,48,0.0 +21052,16,17.45,28,0.0 +21052,11,21,14,0.0 +21052,18,62.5,43,0.0 +21052,9,97,41,0.0 +21052,69,36,36,0.0 +21052,38,263.5,42,0.0 +21052,40,18.4,39,0.0 +21052,49,20,11,0.0 +21053,75,7.75,11,0.0 +21053,49,20,31,0.0 +21053,63,43.9,8,0.0 +21053,72,34.8,15,0.0 +21054,35,18,28,0.0 +21054,72,34.8,31,0.0 +21054,16,17.45,12,0.0 +21054,12,38,39,0.0 +21054,26,31.23,25,0.0 +21054,60,34,18,0.0 +21054,28,45.6,40,0.0 +21054,37,26,46,0.0 +21054,36,19,44,0.0 +21054,14,23.25,28,0.0 +21054,2,19,24,0.0 +21054,66,17,23,0.0 +21054,21,10,26,0.0 +21054,32,32,38,0.0 +21054,43,46,14,0.0 +21054,8,40,48,0.0 +21054,10,31,18,0.0 +21054,49,20,20,0.0 +21054,31,12.5,18,0.0 +21054,9,97,19,0.0 +21054,24,4.5,26,0.0 +21054,22,21,16,0.0 +21054,20,81,4,0.0 +21054,57,19.5,30,0.0 +21054,40,18.4,28,0.0 +21054,51,53,2,0.0 +21054,74,10,44,0.0 +21054,6,25,27,0.0 +21054,44,19.45,12,0.0 +21054,42,14,10,0.0 +21054,62,49.3,43,0.0 +21054,67,14,3,0.0 +21055,18,62.5,32,0.0 +21055,42,14,17,0.0 +21055,29,123.79,7,0.0 +21055,8,40,28,0.0 +21055,37,26,22,0.0 +21056,68,12.5,13,0.0 +21056,67,14,36,0.0 +21056,64,33.25,33,0.0 +21056,70,15,40,0.0 +21056,63,43.9,38,0.0 +21056,34,14,29,0.0 +21056,71,21.5,8,0.0 +21056,58,13.25,40,0.0 +21056,24,4.5,34,0.0 +21056,57,19.5,41,0.0 +21056,50,16.25,12,0.0 +21056,18,62.5,20,0.0 +21056,44,19.45,46,0.0 +21056,11,21,26,0.0 +21056,36,19,17,0.0 +21056,37,26,27,0.0 +21056,39,18,26,0.0 +21056,69,36,18,0.0 +21056,56,38,25,0.0 +21056,45,9.5,22,0.0 +21056,61,28.5,16,0.0 +21056,25,14,41,0.0 +21056,15,15.5,42,0.0 +21056,8,40,35,0.0 +21056,46,12,28,0.0 +21056,74,10,13,0.0 +21056,30,25.89,38,0.0 +21056,66,17,38,0.0 +21056,77,13,18,0.0 +21056,27,43.9,44,0.0 +21056,75,7.75,35,0.0 +21056,47,9.5,42,0.0 +21056,65,21.05,41,0.0 +21056,29,123.79,18,0.0 +21056,21,10,12,0.0 +21056,49,20,20,0.0 +21056,72,34.8,44,0.0 +21056,40,18.4,18,0.0 +21056,19,9.2,15,0.0 +21056,12,38,3,0.0 +21056,4,22,1,0.0 +21056,14,23.25,42,0.0 +21056,54,7.45,12,0.0 +21056,51,53,33,0.0 +21056,38,263.5,9,0.0 +21056,23,9,29,0.0 +21056,1,18,27,0.0 +21056,20,81,29,0.0 +21056,5,21.35,47,0.0 +21056,17,39,39,0.0 +21056,22,21,22,0.0 +21056,60,34,22,0.0 +21056,76,18,24,0.0 +21056,6,25,5,0.0 +21056,26,31.23,47,0.0 +21056,2,19,19,0.0 +21056,43,46,18,0.0 +21056,10,31,30,0.0 +21056,55,24,37,0.0 +21056,53,32.8,24,0.0 +21056,35,18,1,0.0 +21056,33,2.5,46,0.0 +21056,73,15,39,0.0 +21056,3,10,27,0.0 +21056,13,6,46,0.0 +21056,52,7,26,0.0 +21057,57,19.5,39,0.0 +21058,29,123.79,13,0.0 +21058,12,38,49,0.0 +21058,62,49.3,13,0.0 +21058,68,12.5,8,0.0 +21058,70,15,28,0.0 +21058,30,25.89,15,0.0 +21058,67,14,26,0.0 +21058,47,9.5,1,0.0 +21058,31,12.5,41,0.0 +21058,28,45.6,16,0.0 +21058,9,97,10,0.0 +21058,36,19,6,0.0 +21058,3,10,34,0.0 +21058,23,9,32,0.0 +21058,43,46,13,0.0 +21058,14,23.25,36,0.0 +21058,55,24,47,0.0 +21058,71,21.5,32,0.0 +21058,25,14,2,0.0 +21058,39,18,3,0.0 +21059,68,12.5,43,0.0 +21059,53,32.8,6,0.0 +21059,28,45.6,5,0.0 +21059,14,23.25,4,0.0 +21059,75,7.75,20,0.0 +21059,1,18,42,0.0 +21059,29,123.79,29,0.0 +21059,17,39,15,0.0 +21059,24,4.5,35,0.0 +21059,33,2.5,50,0.0 +21059,6,25,9,0.0 +21059,70,15,2,0.0 +21059,10,31,37,0.0 +21059,64,33.25,10,0.0 +21059,32,32,27,0.0 +21059,49,20,36,0.0 +21059,60,34,1,0.0 +21059,71,21.5,12,0.0 +21059,59,55,37,0.0 +21059,47,9.5,21,0.0 +21060,29,123.79,34,0.0 +21060,75,7.75,34,0.0 +21060,74,10,48,0.0 +21060,67,14,41,0.0 +21060,12,38,2,0.0 +21060,76,18,26,0.0 +21060,4,22,20,0.0 +21060,10,31,1,0.0 +21060,7,30,36,0.0 +21060,1,18,33,0.0 +21060,65,21.05,35,0.0 +21060,28,45.6,46,0.0 +21060,11,21,26,0.0 +21060,13,6,37,0.0 +21060,63,43.9,33,0.0 +21060,69,36,32,0.0 +21060,45,9.5,34,0.0 +21060,48,12.75,5,0.0 +21060,32,32,23,0.0 +21060,40,18.4,3,0.0 +21060,66,17,46,0.0 +21060,49,20,5,0.0 +21060,72,34.8,10,0.0 +21060,73,15,28,0.0 +21060,25,14,2,0.0 +21060,42,14,20,0.0 +21061,4,22,36,0.0 +21061,15,15.5,37,0.0 +21061,58,13.25,43,0.0 +21061,14,23.25,12,0.0 +21061,53,32.8,38,0.0 +21061,24,4.5,46,0.0 +21061,17,39,46,0.0 +21061,40,18.4,47,0.0 +21061,1,18,16,0.0 +21061,5,21.35,40,0.0 +21061,25,14,37,0.0 +21061,55,24,30,0.0 +21061,33,2.5,27,0.0 +21061,66,17,14,0.0 +21061,20,81,34,0.0 +21061,6,25,47,0.0 +21061,26,31.23,44,0.0 +21061,65,21.05,22,0.0 +21061,51,53,39,0.0 +21061,44,19.45,16,0.0 +21061,74,10,14,0.0 +21061,75,7.75,6,0.0 +21061,32,32,20,0.0 +21061,63,43.9,7,0.0 +21061,54,7.45,9,0.0 +21061,62,49.3,16,0.0 +21061,34,14,25,0.0 +21061,71,21.5,17,0.0 +21061,76,18,8,0.0 +21061,38,263.5,9,0.0 +21061,37,26,5,0.0 +21061,23,9,33,0.0 +21061,45,9.5,49,0.0 +21061,46,12,42,0.0 +21061,72,34.8,26,0.0 +21061,73,15,26,0.0 +21061,19,9.2,35,0.0 +21061,21,10,38,0.0 +21061,69,36,1,0.0 +21061,8,40,32,0.0 +21061,11,21,20,0.0 +21061,42,14,50,0.0 +21061,16,17.45,18,0.0 +21061,77,13,47,0.0 +21061,7,30,45,0.0 +21061,43,46,13,0.0 +21061,10,31,28,0.0 +21061,30,25.89,44,0.0 +21061,61,28.5,11,0.0 +21061,2,19,41,0.0 +21061,22,21,24,0.0 +21061,29,123.79,27,0.0 +21061,31,12.5,46,0.0 +21061,13,6,8,0.0 +21061,9,97,30,0.0 +21061,56,38,40,0.0 +21061,52,7,8,0.0 +21061,3,10,49,0.0 +21061,59,55,38,0.0 +21061,68,12.5,18,0.0 +21061,41,9.65,3,0.0 +21061,39,18,18,0.0 +21061,67,14,25,0.0 +21061,70,15,45,0.0 +21061,50,16.25,21,0.0 +21061,47,9.5,7,0.0 +21061,28,45.6,42,0.0 +21061,49,20,28,0.0 +21061,48,12.75,15,0.0 +21061,60,34,38,0.0 +21061,35,18,42,0.0 +21061,36,19,26,0.0 +21061,27,43.9,41,0.0 +21061,18,62.5,10,0.0 +21061,57,19.5,6,0.0 +21062,29,123.79,36,0.0 +21062,28,45.6,1,0.0 +21062,31,12.5,28,0.0 +21062,64,33.25,34,0.0 +21062,23,9,36,0.0 +21062,6,25,48,0.0 +21062,46,12,16,0.0 +21062,70,15,14,0.0 +21062,24,4.5,12,0.0 +21062,1,18,37,0.0 +21062,35,18,41,0.0 +21062,43,46,6,0.0 +21062,32,32,27,0.0 +21062,42,14,24,0.0 +21062,54,7.45,42,0.0 +21062,51,53,47,0.0 +21062,65,21.05,4,0.0 +21062,77,13,38,0.0 +21062,12,38,37,0.0 +21062,41,9.65,7,0.0 +21062,58,13.25,23,0.0 +21062,9,97,8,0.0 +21062,67,14,49,0.0 +21062,37,26,36,0.0 +21062,48,12.75,28,0.0 +21062,26,31.23,16,0.0 +21062,5,21.35,14,0.0 +21062,2,19,6,0.0 +21062,76,18,22,0.0 +21062,27,43.9,17,0.0 +21062,19,9.2,45,0.0 +21062,52,7,31,0.0 +21062,11,21,19,0.0 +21062,45,9.5,18,0.0 +21062,34,14,18,0.0 +21062,15,15.5,35,0.0 +21062,39,18,5,0.0 +21062,17,39,35,0.0 +21062,47,9.5,31,0.0 +21062,14,23.25,8,0.0 +21062,68,12.5,38,0.0 +21062,16,17.45,19,0.0 +21062,13,6,20,0.0 +21062,50,16.25,12,0.0 +21062,75,7.75,8,0.0 +21062,7,30,46,0.0 +21062,30,25.89,27,0.0 +21062,25,14,46,0.0 +21062,63,43.9,50,0.0 +21062,72,34.8,37,0.0 +21062,20,81,18,0.0 +21062,40,18.4,25,0.0 +21062,10,31,41,0.0 +21062,33,2.5,6,0.0 +21062,62,49.3,26,0.0 +21062,22,21,45,0.0 +21062,38,263.5,33,0.0 +21062,49,20,44,0.0 +21062,60,34,43,0.0 +21062,4,22,35,0.0 +21062,8,40,23,0.0 +21062,61,28.5,14,0.0 +21062,59,55,16,0.0 +21062,3,10,22,0.0 +21062,66,17,50,0.0 +21062,55,24,50,0.0 +21062,57,19.5,35,0.0 +21062,69,36,17,0.0 +21062,36,19,6,0.0 +21062,71,21.5,17,0.0 +21063,27,43.9,26,0.0 +21063,74,10,4,0.0 +21063,9,97,3,0.0 +21063,10,31,23,0.0 +21063,73,15,25,0.0 +21063,56,38,46,0.0 +21063,17,39,49,0.0 +21063,20,81,41,0.0 +21063,69,36,9,0.0 +21063,31,12.5,24,0.0 +21063,33,2.5,47,0.0 +21063,47,9.5,27,0.0 +21063,49,20,50,0.0 +21063,36,19,39,0.0 +21063,30,25.89,49,0.0 +21063,15,15.5,30,0.0 +21063,64,33.25,37,0.0 +21063,16,17.45,1,0.0 +21063,75,7.75,6,0.0 +21063,41,9.65,12,0.0 +21063,8,40,35,0.0 +21063,6,25,41,0.0 +21063,60,34,24,0.0 +21063,46,12,35,0.0 +21063,76,18,10,0.0 +21063,19,9.2,9,0.0 +21063,28,45.6,14,0.0 +21063,40,18.4,5,0.0 +21063,59,55,36,0.0 +21063,67,14,8,0.0 +21063,53,32.8,3,0.0 +21063,25,14,44,0.0 +21063,38,263.5,25,0.0 +21063,57,19.5,11,0.0 +21063,68,12.5,20,0.0 +21063,45,9.5,46,0.0 +21064,19,9.2,38,0.0 +21064,54,7.45,8,0.0 +21064,37,26,1,0.0 +21064,45,9.5,19,0.0 +21064,27,43.9,42,0.0 +21064,65,21.05,2,0.0 +21064,8,40,24,0.0 +21064,11,21,35,0.0 +21064,60,34,42,0.0 +21064,73,15,21,0.0 +21064,15,15.5,22,0.0 +21064,7,30,42,0.0 +21064,2,19,36,0.0 +21064,6,25,20,0.0 +21064,21,10,26,0.0 +21064,59,55,31,0.0 +21064,26,31.23,19,0.0 +21064,77,13,19,0.0 +21064,30,25.89,32,0.0 +21064,17,39,7,0.0 +21064,5,21.35,21,0.0 +21064,51,53,13,0.0 +21064,50,16.25,44,0.0 +21064,46,12,7,0.0 +21064,14,23.25,19,0.0 +21064,57,19.5,48,0.0 +21065,49,20,5,0.0 +21065,4,22,39,0.0 +21065,3,10,8,0.0 +21065,14,23.25,20,0.0 +21065,16,17.45,35,0.0 +21065,30,25.89,14,0.0 +21065,32,32,34,0.0 +21065,53,32.8,46,0.0 +21065,8,40,2,0.0 +21065,2,19,35,0.0 +21065,48,12.75,40,0.0 +21065,11,21,12,0.0 +21065,31,12.5,29,0.0 +21065,12,38,10,0.0 +21065,6,25,35,0.0 +21065,54,7.45,13,0.0 +21065,34,14,17,0.0 +21065,22,21,39,0.0 +21065,68,12.5,13,0.0 +21065,44,19.45,16,0.0 +21065,65,21.05,15,0.0 +21065,74,10,50,0.0 +21065,52,7,26,0.0 +21065,23,9,7,0.0 +21065,45,9.5,3,0.0 +21065,60,34,8,0.0 +21065,59,55,18,0.0 +21065,25,14,23,0.0 +21065,56,38,23,0.0 +21065,69,36,15,0.0 +21065,50,16.25,46,0.0 +21065,27,43.9,20,0.0 +21065,76,18,25,0.0 +21065,58,13.25,11,0.0 +21065,5,21.35,50,0.0 +21065,29,123.79,18,0.0 +21065,63,43.9,24,0.0 +21065,41,9.65,36,0.0 +21065,7,30,34,0.0 +21065,42,14,44,0.0 +21065,1,18,33,0.0 +21065,64,33.25,9,0.0 +21065,75,7.75,42,0.0 +21065,21,10,50,0.0 +21065,28,45.6,11,0.0 +21065,35,18,49,0.0 +21065,70,15,8,0.0 +21065,10,31,6,0.0 +21065,18,62.5,28,0.0 +21065,46,12,9,0.0 +21065,9,97,7,0.0 +21065,38,263.5,9,0.0 +21065,57,19.5,15,0.0 +21065,72,34.8,35,0.0 +21065,17,39,3,0.0 +21065,33,2.5,44,0.0 +21065,62,49.3,23,0.0 +21065,15,15.5,28,0.0 +21065,40,18.4,37,0.0 +21065,67,14,9,0.0 +21065,36,19,37,0.0 +21065,73,15,36,0.0 +21065,66,17,46,0.0 +21065,24,4.5,20,0.0 +21065,77,13,17,0.0 +21065,43,46,17,0.0 +21065,19,9.2,15,0.0 +21065,20,81,18,0.0 +21065,47,9.5,2,0.0 +21065,39,18,22,0.0 +21066,48,12.75,12,0.0 +21066,51,53,49,0.0 +21066,12,38,41,0.0 +21066,23,9,9,0.0 +21066,63,43.9,20,0.0 +21066,59,55,21,0.0 +21066,53,32.8,19,0.0 +21066,32,32,12,0.0 +21066,3,10,23,0.0 +21066,30,25.89,43,0.0 +21066,70,15,1,0.0 +21066,13,6,38,0.0 +21066,49,20,44,0.0 +21066,20,81,10,0.0 +21066,58,13.25,42,0.0 +21066,75,7.75,7,0.0 +21066,22,21,49,0.0 +21066,24,4.5,21,0.0 +21066,6,25,9,0.0 +21066,44,19.45,7,0.0 +21066,2,19,41,0.0 +21066,34,14,47,0.0 +21066,69,36,9,0.0 +21066,56,38,15,0.0 +21066,28,45.6,19,0.0 +21066,25,14,16,0.0 +21066,72,34.8,48,0.0 +21066,46,12,20,0.0 +21066,74,10,47,0.0 +21066,35,18,18,0.0 +21066,73,15,36,0.0 +21066,43,46,3,0.0 +21066,61,28.5,39,0.0 +21066,47,9.5,37,0.0 +21066,8,40,43,0.0 +21066,17,39,16,0.0 +21066,11,21,26,0.0 +21066,77,13,35,0.0 +21066,57,19.5,46,0.0 +21066,65,21.05,21,0.0 +21066,27,43.9,3,0.0 +21066,1,18,43,0.0 +21067,51,53,28,0.0 +21067,46,12,7,0.0 +21067,34,14,36,0.0 +21067,23,9,6,0.0 +21067,17,39,1,0.0 +21067,36,19,28,0.0 +21067,24,4.5,47,0.0 +21067,15,15.5,6,0.0 +21067,11,21,20,0.0 +21067,28,45.6,19,0.0 +21067,41,9.65,20,0.0 +21067,64,33.25,18,0.0 +21067,76,18,30,0.0 +21067,25,14,39,0.0 +21067,16,17.45,44,0.0 +21067,10,31,49,0.0 +21067,77,13,48,0.0 +21067,67,14,6,0.0 +21067,75,7.75,24,0.0 +21067,9,97,16,0.0 +21067,56,38,33,0.0 +21067,69,36,10,0.0 +21067,31,12.5,5,0.0 +21067,61,28.5,20,0.0 +21067,50,16.25,3,0.0 +21067,73,15,31,0.0 +21067,43,46,49,0.0 +21067,4,22,38,0.0 +21067,60,34,22,0.0 +21067,13,6,43,0.0 +21067,72,34.8,13,0.0 +21067,47,9.5,42,0.0 +21067,19,9.2,30,0.0 +21067,52,7,39,0.0 +21067,63,43.9,17,0.0 +21067,68,12.5,9,0.0 +21067,32,32,13,0.0 +21067,38,263.5,28,0.0 +21067,5,21.35,47,0.0 +21067,12,38,23,0.0 +21067,6,25,11,0.0 +21067,8,40,30,0.0 +21067,57,19.5,18,0.0 +21067,42,14,32,0.0 +21067,35,18,49,0.0 +21067,62,49.3,36,0.0 +21067,59,55,21,0.0 +21067,44,19.45,11,0.0 +21067,48,12.75,40,0.0 +21067,14,23.25,8,0.0 +21067,71,21.5,15,0.0 +21067,49,20,16,0.0 +21067,55,24,33,0.0 +21067,37,26,27,0.0 +21067,70,15,1,0.0 +21068,61,28.5,24,0.0 +21068,63,43.9,19,0.0 +21068,76,18,38,0.0 +21068,71,21.5,28,0.0 +21068,32,32,39,0.0 +21068,70,15,32,0.0 +21068,68,12.5,43,0.0 +21068,27,43.9,44,0.0 +21068,12,38,18,0.0 +21068,25,14,14,0.0 +21068,50,16.25,47,0.0 +21068,72,34.8,47,0.0 +21068,34,14,7,0.0 +21068,8,40,48,0.0 +21068,54,7.45,14,0.0 +21068,17,39,4,0.0 +21068,45,9.5,36,0.0 +21068,43,46,39,0.0 +21068,13,6,7,0.0 +21068,11,21,3,0.0 +21068,38,263.5,23,0.0 +21068,49,20,37,0.0 +21068,18,62.5,37,0.0 +21068,42,14,35,0.0 +21068,58,13.25,6,0.0 +21068,9,97,4,0.0 +21068,62,49.3,5,0.0 +21068,5,21.35,16,0.0 +21068,31,12.5,9,0.0 +21068,65,21.05,31,0.0 +21068,2,19,47,0.0 +21068,35,18,44,0.0 +21068,16,17.45,30,0.0 +21068,6,25,7,0.0 +21068,20,81,46,0.0 +21068,52,7,3,0.0 +21068,64,33.25,31,0.0 +21068,22,21,11,0.0 +21068,66,17,46,0.0 +21068,55,24,7,0.0 +21068,60,34,15,0.0 +21068,56,38,40,0.0 +21068,46,12,15,0.0 +21068,21,10,14,0.0 +21068,30,25.89,17,0.0 +21068,36,19,28,0.0 +21068,28,45.6,45,0.0 +21068,77,13,48,0.0 +21068,1,18,39,0.0 +21068,44,19.45,13,0.0 +21068,4,22,20,0.0 +21068,29,123.79,49,0.0 +21068,7,30,50,0.0 +21068,14,23.25,18,0.0 +21068,41,9.65,7,0.0 +21068,39,18,45,0.0 +21068,23,9,8,0.0 +21068,48,12.75,34,0.0 +21068,26,31.23,21,0.0 +21068,47,9.5,40,0.0 +21068,59,55,35,0.0 +21068,40,18.4,34,0.0 +21068,19,9.2,44,0.0 +21068,15,15.5,25,0.0 +21068,37,26,41,0.0 +21068,75,7.75,17,0.0 +21068,24,4.5,22,0.0 +21068,73,15,8,0.0 +21068,3,10,31,0.0 +21068,74,10,39,0.0 +21068,51,53,5,0.0 +21068,67,14,43,0.0 +21068,69,36,19,0.0 +21069,63,43.9,20,0.0 +21069,20,81,12,0.0 +21069,26,31.23,18,0.0 +21069,77,13,46,0.0 +21069,18,62.5,15,0.0 +21069,41,9.65,35,0.0 +21069,8,40,10,0.0 +21069,25,14,16,0.0 +21069,5,21.35,46,0.0 +21069,22,21,27,0.0 +21069,1,18,10,0.0 +21069,46,12,28,0.0 +21069,53,32.8,3,0.0 +21069,54,7.45,42,0.0 +21069,56,38,42,0.0 +21069,9,97,27,0.0 +21069,39,18,5,0.0 +21069,66,17,4,0.0 +21069,32,32,40,0.0 +21069,71,21.5,49,0.0 +21069,49,20,29,0.0 +21069,3,10,21,0.0 +21069,51,53,15,0.0 +21069,7,30,24,0.0 +21069,12,38,29,0.0 +21069,15,15.5,41,0.0 +21070,11,21,50,0.0 +21070,16,17.45,7,0.0 +21070,25,14,2,0.0 +21070,54,7.45,47,0.0 +21070,31,12.5,50,0.0 +21070,37,26,3,0.0 +21070,3,10,30,0.0 +21070,56,38,39,0.0 +21070,20,81,16,0.0 +21070,32,32,5,0.0 +21070,53,32.8,12,0.0 +21070,36,19,40,0.0 +21070,29,123.79,20,0.0 +21070,30,25.89,24,0.0 +21070,39,18,28,0.0 +21070,43,46,23,0.0 +21070,58,13.25,31,0.0 +21070,33,2.5,34,0.0 +21070,13,6,27,0.0 +21070,6,25,33,0.0 +21070,49,20,50,0.0 +21070,71,21.5,6,0.0 +21070,2,19,1,0.0 +21070,1,18,11,0.0 +21070,4,22,50,0.0 +21070,52,7,35,0.0 +21070,19,9.2,42,0.0 +21070,51,53,45,0.0 +21070,34,14,27,0.0 +21070,62,49.3,32,0.0 +21070,73,15,25,0.0 +21070,10,31,42,0.0 +21070,55,24,28,0.0 +21070,17,39,29,0.0 +21070,23,9,20,0.0 +21070,14,23.25,15,0.0 +21070,35,18,34,0.0 +21070,8,40,22,0.0 +21070,38,263.5,18,0.0 +21070,46,12,44,0.0 +21070,63,43.9,45,0.0 +21070,40,18.4,22,0.0 +21070,77,13,44,0.0 +21070,65,21.05,29,0.0 +21070,59,55,44,0.0 +21070,57,19.5,2,0.0 +21070,66,17,20,0.0 +21070,47,9.5,34,0.0 +21070,45,9.5,1,0.0 +21070,24,4.5,11,0.0 +21070,21,10,46,0.0 +21070,74,10,44,0.0 +21070,70,15,11,0.0 +21070,18,62.5,32,0.0 +21070,68,12.5,40,0.0 +21070,44,19.45,18,0.0 +21070,28,45.6,16,0.0 +21070,69,36,49,0.0 +21070,41,9.65,9,0.0 +21070,67,14,2,0.0 +21070,61,28.5,43,0.0 +21070,27,43.9,42,0.0 +21070,22,21,45,0.0 +21070,5,21.35,8,0.0 +21070,48,12.75,48,0.0 +21070,9,97,21,0.0 +21070,60,34,14,0.0 +21070,76,18,16,0.0 +21070,72,34.8,2,0.0 +21070,15,15.5,34,0.0 +21070,64,33.25,32,0.0 +21070,7,30,47,0.0 +21071,32,32,48,0.0 +21071,21,10,28,0.0 +21071,10,31,11,0.0 +21071,6,25,50,0.0 +21071,19,9.2,14,0.0 +21071,51,53,42,0.0 +21071,66,17,8,0.0 +21071,31,12.5,43,0.0 +21071,46,12,38,0.0 +21071,27,43.9,21,0.0 +21071,72,34.8,38,0.0 +21071,29,123.79,10,0.0 +21071,15,15.5,18,0.0 +21071,42,14,15,0.0 +21071,16,17.45,8,0.0 +21071,28,45.6,6,0.0 +21071,64,33.25,48,0.0 +21071,58,13.25,32,0.0 +21071,59,55,41,0.0 +21071,5,21.35,27,0.0 +21071,47,9.5,47,0.0 +21071,40,18.4,23,0.0 +21071,41,9.65,26,0.0 +21071,22,21,43,0.0 +21071,53,32.8,48,0.0 +21071,75,7.75,5,0.0 +21071,60,34,24,0.0 +21071,7,30,50,0.0 +21072,22,21,25,0.0 +21072,20,81,9,0.0 +21072,55,24,14,0.0 +21073,62,49.3,11,0.0 +21073,46,12,43,0.0 +21073,11,21,10,0.0 +21073,65,21.05,17,0.0 +21073,7,30,22,0.0 +21073,53,32.8,16,0.0 +21073,43,46,29,0.0 +21073,57,19.5,30,0.0 +21073,44,19.45,29,0.0 +21073,58,13.25,15,0.0 +21073,13,6,33,0.0 +21073,40,18.4,28,0.0 +21073,3,10,25,0.0 +21073,22,21,43,0.0 +21073,14,23.25,35,0.0 +21073,15,15.5,17,0.0 +21073,71,21.5,1,0.0 +21073,19,9.2,38,0.0 +21073,54,7.45,36,0.0 +21073,2,19,23,0.0 +21073,67,14,41,0.0 +21073,38,263.5,40,0.0 +21073,33,2.5,12,0.0 +21073,16,17.45,23,0.0 +21073,66,17,25,0.0 +21073,41,9.65,3,0.0 +21073,32,32,35,0.0 +21073,18,62.5,3,0.0 +21073,28,45.6,36,0.0 +21073,74,10,14,0.0 +21073,76,18,38,0.0 +21073,27,43.9,18,0.0 +21073,48,12.75,37,0.0 +21073,10,31,23,0.0 +21073,45,9.5,32,0.0 +21073,12,38,13,0.0 +21073,25,14,12,0.0 +21073,60,34,19,0.0 +21073,70,15,17,0.0 +21073,36,19,33,0.0 +21073,29,123.79,30,0.0 +21073,63,43.9,37,0.0 +21073,64,33.25,4,0.0 +21073,21,10,36,0.0 +21073,4,22,38,0.0 +21073,47,9.5,35,0.0 +21073,23,9,33,0.0 +21073,8,40,43,0.0 +21073,56,38,14,0.0 +21073,42,14,43,0.0 +21073,17,39,46,0.0 +21073,61,28.5,39,0.0 +21073,20,81,38,0.0 +21074,46,12,16,0.0 +21074,75,7.75,32,0.0 +21074,27,43.9,29,0.0 +21074,48,12.75,8,0.0 +21074,58,13.25,21,0.0 +21074,31,12.5,42,0.0 +21074,37,26,30,0.0 +21074,3,10,20,0.0 +21074,2,19,6,0.0 +21074,5,21.35,45,0.0 +21074,73,15,30,0.0 +21074,54,7.45,12,0.0 +21074,64,33.25,6,0.0 +21074,76,18,21,0.0 +21074,52,7,12,0.0 +21074,60,34,33,0.0 +21074,36,19,23,0.0 +21074,42,14,23,0.0 +21074,20,81,9,0.0 +21074,9,97,44,0.0 +21074,32,32,48,0.0 +21074,23,9,12,0.0 +21074,25,14,9,0.0 +21074,59,55,18,0.0 +21074,41,9.65,17,0.0 +21074,26,31.23,18,0.0 +21074,56,38,45,0.0 +21074,67,14,36,0.0 +21074,30,25.89,1,0.0 +21074,34,14,21,0.0 +21074,74,10,41,0.0 +21074,33,2.5,26,0.0 +21074,57,19.5,10,0.0 +21074,13,6,40,0.0 +21074,66,17,41,0.0 +21074,10,31,31,0.0 +21074,38,263.5,28,0.0 +21074,68,12.5,48,0.0 +21074,21,10,16,0.0 +21074,15,15.5,34,0.0 +21074,12,38,38,0.0 +21074,77,13,35,0.0 +21074,69,36,49,0.0 +21074,61,28.5,41,0.0 +21074,49,20,43,0.0 +21074,43,46,50,0.0 +21074,19,9.2,46,0.0 +21074,39,18,22,0.0 +21074,16,17.45,13,0.0 +21074,24,4.5,26,0.0 +21074,44,19.45,13,0.0 +21074,17,39,11,0.0 +21074,50,16.25,45,0.0 +21074,70,15,39,0.0 +21074,65,21.05,23,0.0 +21074,55,24,43,0.0 +21074,40,18.4,46,0.0 +21074,47,9.5,23,0.0 +21074,18,62.5,4,0.0 +21074,28,45.6,33,0.0 +21074,8,40,32,0.0 +21074,53,32.8,41,0.0 +21074,29,123.79,36,0.0 +21074,6,25,24,0.0 +21074,71,21.5,3,0.0 +21074,63,43.9,28,0.0 +21074,4,22,16,0.0 +21075,50,16.25,39,0.0 +21075,62,49.3,35,0.0 +21075,71,21.5,34,0.0 +21075,4,22,11,0.0 +21075,68,12.5,29,0.0 +21075,25,14,24,0.0 +21075,5,21.35,21,0.0 +21075,64,33.25,21,0.0 +21075,55,24,31,0.0 +21075,51,53,47,0.0 +21075,38,263.5,35,0.0 +21075,45,9.5,17,0.0 +21075,28,45.6,38,0.0 +21075,20,81,6,0.0 +21075,17,39,4,0.0 +21075,23,9,49,0.0 +21075,41,9.65,48,0.0 +21075,53,32.8,44,0.0 +21075,37,26,1,0.0 +21075,36,19,24,0.0 +21075,19,9.2,18,0.0 +21075,21,10,46,0.0 +21075,61,28.5,6,0.0 +21075,10,31,14,0.0 +21075,77,13,5,0.0 +21075,12,38,42,0.0 +21075,49,20,45,0.0 +21075,69,36,15,0.0 +21075,46,12,23,0.0 +21076,46,12,13,0.0 +21076,69,36,27,0.0 +21076,74,10,11,0.0 +21076,61,28.5,50,0.0 +21076,36,19,31,0.0 +21076,26,31.23,18,0.0 +21076,44,19.45,48,0.0 +21076,29,123.79,39,0.0 +21076,1,18,10,0.0 +21076,71,21.5,8,0.0 +21076,52,7,9,0.0 +21076,27,43.9,44,0.0 +21076,33,2.5,1,0.0 +21076,6,25,23,0.0 +21076,28,45.6,16,0.0 +21076,73,15,45,0.0 +21076,64,33.25,16,0.0 +21076,68,12.5,25,0.0 +21076,39,18,7,0.0 +21076,48,12.75,17,0.0 +21076,37,26,4,0.0 +21076,77,13,29,0.0 +21076,76,18,46,0.0 +21076,11,21,36,0.0 +21076,58,13.25,7,0.0 +21076,67,14,27,0.0 +21076,9,97,10,0.0 +21076,17,39,27,0.0 +21076,30,25.89,3,0.0 +21076,21,10,33,0.0 +21076,49,20,15,0.0 +21076,57,19.5,34,0.0 +21076,40,18.4,35,0.0 +21076,34,14,35,0.0 +21076,2,19,17,0.0 +21076,56,38,22,0.0 +21077,49,20,31,0.0 +21077,56,38,10,0.0 +21077,18,62.5,31,0.0 +21077,71,21.5,4,0.0 +21077,23,9,39,0.0 +21077,32,32,13,0.0 +21077,54,7.45,28,0.0 +21077,33,2.5,19,0.0 +21077,37,26,9,0.0 +21077,73,15,2,0.0 +21077,1,18,47,0.0 +21077,4,22,41,0.0 +21077,28,45.6,26,0.0 +21077,72,34.8,8,0.0 +21077,41,9.65,27,0.0 +21077,16,17.45,14,0.0 +21077,58,13.25,12,0.0 +21077,15,15.5,45,0.0 +21077,11,21,24,0.0 +21077,19,9.2,15,0.0 +21077,47,9.5,18,0.0 +21077,67,14,20,0.0 +21077,35,18,8,0.0 +21077,42,14,40,0.0 +21077,40,18.4,30,0.0 +21077,38,263.5,2,0.0 +21077,66,17,9,0.0 +21077,20,81,13,0.0 +21077,60,34,21,0.0 +21077,9,97,20,0.0 +21077,74,10,16,0.0 +21077,70,15,45,0.0 +21077,10,31,4,0.0 +21077,44,19.45,37,0.0 +21077,39,18,42,0.0 +21077,76,18,45,0.0 +21077,27,43.9,43,0.0 +21077,13,6,35,0.0 +21077,55,24,4,0.0 +21077,77,13,28,0.0 +21077,24,4.5,32,0.0 +21077,69,36,49,0.0 +21077,17,39,12,0.0 +21077,48,12.75,40,0.0 +21077,59,55,42,0.0 +21077,68,12.5,38,0.0 +21077,30,25.89,4,0.0 +21077,12,38,38,0.0 +21077,52,7,3,0.0 +21077,25,14,29,0.0 +21077,6,25,22,0.0 +21078,25,14,46,0.0 +21078,21,10,39,0.0 +21078,7,30,14,0.0 +21078,2,19,28,0.0 +21078,61,28.5,39,0.0 +21078,22,21,4,0.0 +21078,30,25.89,38,0.0 +21078,33,2.5,1,0.0 +21078,52,7,39,0.0 +21078,46,12,31,0.0 +21078,74,10,10,0.0 +21078,71,21.5,8,0.0 +21078,41,9.65,18,0.0 +21078,56,38,15,0.0 +21078,35,18,42,0.0 +21078,10,31,30,0.0 +21078,57,19.5,50,0.0 +21078,38,263.5,29,0.0 +21078,9,97,48,0.0 +21078,19,9.2,32,0.0 +21078,47,9.5,22,0.0 +21078,17,39,32,0.0 +21078,32,32,30,0.0 +21078,13,6,3,0.0 +21079,77,13,48,0.0 +21079,42,14,8,0.0 +21079,43,46,7,0.0 +21079,3,10,32,0.0 +21079,19,9.2,7,0.0 +21079,5,21.35,27,0.0 +21079,45,9.5,13,0.0 +21079,17,39,49,0.0 +21079,56,38,11,0.0 +21079,2,19,6,0.0 +21079,71,21.5,9,0.0 +21079,67,14,17,0.0 +21079,25,14,34,0.0 +21079,20,81,1,0.0 +21079,27,43.9,43,0.0 +21079,57,19.5,23,0.0 +21079,53,32.8,1,0.0 +21079,60,34,24,0.0 +21079,61,28.5,23,0.0 +21079,18,62.5,38,0.0 +21079,55,24,29,0.0 +21079,14,23.25,34,0.0 +21079,49,20,12,0.0 +21079,74,10,31,0.0 +21079,37,26,16,0.0 +21079,73,15,18,0.0 +21079,11,21,22,0.0 +21079,58,13.25,13,0.0 +21079,38,263.5,31,0.0 +21079,7,30,43,0.0 +21079,13,6,22,0.0 +21079,28,45.6,16,0.0 +21079,64,33.25,16,0.0 +21079,51,53,43,0.0 +21079,39,18,2,0.0 +21079,59,55,32,0.0 +21079,31,12.5,37,0.0 +21079,23,9,35,0.0 +21079,66,17,42,0.0 +21079,24,4.5,7,0.0 +21079,72,34.8,1,0.0 +21079,1,18,43,0.0 +21079,68,12.5,22,0.0 +21079,44,19.45,18,0.0 +21079,9,97,21,0.0 +21079,48,12.75,12,0.0 +21080,26,31.23,44,0.0 +21080,4,22,1,0.0 +21080,19,9.2,26,0.0 +21080,22,21,11,0.0 +21080,64,33.25,41,0.0 +21080,73,15,21,0.0 +21080,48,12.75,4,0.0 +21080,31,12.5,10,0.0 +21080,12,38,29,0.0 +21080,49,20,21,0.0 +21080,68,12.5,22,0.0 +21080,53,32.8,3,0.0 +21080,18,62.5,19,0.0 +21080,65,21.05,20,0.0 +21080,27,43.9,35,0.0 +21080,28,45.6,9,0.0 +21080,58,13.25,37,0.0 +21080,56,38,1,0.0 +21080,37,26,6,0.0 +21080,1,18,20,0.0 +21080,61,28.5,5,0.0 +21080,14,23.25,3,0.0 +21080,17,39,39,0.0 +21080,34,14,49,0.0 +21080,7,30,5,0.0 +21080,74,10,16,0.0 +21080,59,55,45,0.0 +21080,46,12,8,0.0 +21080,66,17,10,0.0 +21080,55,24,43,0.0 +21080,62,49.3,45,0.0 +21080,60,34,38,0.0 +21080,41,9.65,27,0.0 +21080,63,43.9,34,0.0 +21080,23,9,50,0.0 +21080,5,21.35,12,0.0 +21080,16,17.45,6,0.0 +21080,2,19,21,0.0 +21080,6,25,49,0.0 +21080,40,18.4,11,0.0 +21080,67,14,30,0.0 +21080,20,81,50,0.0 +21080,44,19.45,40,0.0 +21080,15,15.5,15,0.0 +21080,77,13,29,0.0 +21080,76,18,18,0.0 +21080,25,14,36,0.0 +21080,3,10,33,0.0 +21080,8,40,18,0.0 +21080,52,7,23,0.0 +21080,70,15,17,0.0 +21080,11,21,3,0.0 +21080,13,6,4,0.0 +21080,38,263.5,6,0.0 +21080,69,36,36,0.0 +21080,57,19.5,1,0.0 +21080,32,32,46,0.0 +21080,33,2.5,19,0.0 +21080,35,18,14,0.0 +21080,71,21.5,3,0.0 +21080,54,7.45,29,0.0 +21080,51,53,32,0.0 +21080,42,14,20,0.0 +21080,72,34.8,12,0.0 +21080,50,16.25,48,0.0 +21080,10,31,14,0.0 +21080,36,19,20,0.0 +21080,39,18,1,0.0 +21080,30,25.89,45,0.0 +21080,75,7.75,39,0.0 +21080,43,46,39,0.0 +21080,24,4.5,22,0.0 +21080,9,97,9,0.0 +21080,47,9.5,9,0.0 +21080,45,9.5,37,0.0 +21080,29,123.79,5,0.0 +21081,53,32.8,1,0.0 +21081,45,9.5,50,0.0 +21081,76,18,43,0.0 +21081,55,24,46,0.0 +21081,46,12,31,0.0 +21081,21,10,20,0.0 +21081,67,14,45,0.0 +21081,70,15,36,0.0 +21081,64,33.25,5,0.0 +21081,73,15,43,0.0 +21081,9,97,18,0.0 +21081,15,15.5,32,0.0 +21081,6,25,34,0.0 +21081,47,9.5,34,0.0 +21081,22,21,31,0.0 +21081,11,21,20,0.0 +21081,12,38,36,0.0 +21081,13,6,9,0.0 +21081,26,31.23,40,0.0 +21081,65,21.05,27,0.0 +21081,63,43.9,9,0.0 +21081,49,20,42,0.0 +21081,23,9,14,0.0 +21081,61,28.5,48,0.0 +21081,40,18.4,24,0.0 +21081,10,31,25,0.0 +21081,24,4.5,27,0.0 +21081,4,22,24,0.0 +21081,44,19.45,38,0.0 +21081,25,14,16,0.0 +21081,74,10,39,0.0 +21082,42,14,24,0.0 +21082,27,43.9,4,0.0 +21082,26,31.23,21,0.0 +21082,59,55,28,0.0 +21083,29,123.79,3,0.0 +21083,64,33.25,17,0.0 +21083,39,18,27,0.0 +21083,18,62.5,15,0.0 +21083,52,7,11,0.0 +21083,58,13.25,5,0.0 +21083,36,19,13,0.0 +21083,34,14,50,0.0 +21083,66,17,4,0.0 +21083,16,17.45,45,0.0 +21083,15,15.5,44,0.0 +21083,26,31.23,16,0.0 +21083,21,10,17,0.0 +21083,22,21,17,0.0 +21083,31,12.5,20,0.0 +21083,59,55,38,0.0 +21083,55,24,34,0.0 +21083,62,49.3,25,0.0 +21083,76,18,24,0.0 +21083,33,2.5,17,0.0 +21083,56,38,48,0.0 +21083,38,263.5,12,0.0 +21083,54,7.45,26,0.0 +21083,11,21,21,0.0 +21083,46,12,49,0.0 +21083,6,25,34,0.0 +21083,37,26,30,0.0 +21083,74,10,20,0.0 +21083,8,40,20,0.0 +21083,14,23.25,21,0.0 +21083,77,13,43,0.0 +21083,57,19.5,49,0.0 +21083,25,14,31,0.0 +21083,20,81,40,0.0 +21083,40,18.4,8,0.0 +21083,1,18,4,0.0 +21083,23,9,25,0.0 +21083,4,22,17,0.0 +21083,75,7.75,36,0.0 +21083,44,19.45,7,0.0 +21083,50,16.25,26,0.0 +21083,19,9.2,26,0.0 +21083,9,97,26,0.0 +21083,69,36,15,0.0 +21083,30,25.89,4,0.0 +21083,2,19,35,0.0 +21083,51,53,5,0.0 +21083,35,18,13,0.0 +21083,17,39,27,0.0 +21083,49,20,22,0.0 +21083,32,32,41,0.0 +21083,41,9.65,22,0.0 +21083,13,6,41,0.0 +21083,47,9.5,18,0.0 +21083,65,21.05,38,0.0 +21083,71,21.5,24,0.0 +21084,7,30,12,0.0 +21084,11,21,26,0.0 +21084,53,32.8,27,0.0 +21084,37,26,38,0.0 +21084,67,14,34,0.0 +21084,15,15.5,40,0.0 +21084,46,12,8,0.0 +21084,50,16.25,9,0.0 +21084,73,15,42,0.0 +21084,34,14,29,0.0 +21084,41,9.65,28,0.0 +21084,57,19.5,18,0.0 +21084,20,81,7,0.0 +21084,6,25,8,0.0 +21084,55,24,2,0.0 +21084,75,7.75,15,0.0 +21084,40,18.4,22,0.0 +21084,27,43.9,38,0.0 +21084,19,9.2,26,0.0 +21084,47,9.5,45,0.0 +21084,52,7,15,0.0 +21084,42,14,50,0.0 +21084,36,19,34,0.0 +21084,63,43.9,17,0.0 +21084,25,14,50,0.0 +21084,5,21.35,11,0.0 +21084,74,10,17,0.0 +21084,1,18,28,0.0 +21084,70,15,3,0.0 +21084,49,20,19,0.0 +21084,58,13.25,5,0.0 +21084,9,97,35,0.0 +21084,8,40,1,0.0 +21084,21,10,43,0.0 +21084,16,17.45,11,0.0 +21084,76,18,8,0.0 +21084,64,33.25,19,0.0 +21084,59,55,1,0.0 +21084,12,38,49,0.0 +21084,29,123.79,19,0.0 +21084,68,12.5,27,0.0 +21084,31,12.5,7,0.0 +21084,13,6,5,0.0 +21084,10,31,45,0.0 +21084,72,34.8,22,0.0 +21084,23,9,48,0.0 +21084,71,21.5,35,0.0 +21084,56,38,9,0.0 +21084,35,18,18,0.0 +21084,14,23.25,21,0.0 +21084,45,9.5,23,0.0 +21084,65,21.05,23,0.0 +21084,22,21,47,0.0 +21084,2,19,4,0.0 +21084,43,46,21,0.0 +21084,66,17,24,0.0 +21084,24,4.5,22,0.0 +21084,51,53,19,0.0 +21084,77,13,37,0.0 +21084,48,12.75,21,0.0 +21084,30,25.89,25,0.0 +21084,60,34,12,0.0 +21084,44,19.45,7,0.0 +21085,77,13,48,0.0 +21085,39,18,7,0.0 +21085,15,15.5,40,0.0 +21085,10,31,40,0.0 +21085,26,31.23,34,0.0 +21085,28,45.6,3,0.0 +21085,12,38,46,0.0 +21085,13,6,35,0.0 +21085,73,15,36,0.0 +21085,34,14,13,0.0 +21085,60,34,22,0.0 +21085,44,19.45,30,0.0 +21085,20,81,11,0.0 +21085,31,12.5,38,0.0 +21085,70,15,39,0.0 +21085,2,19,4,0.0 +21085,32,32,43,0.0 +21085,45,9.5,22,0.0 +21085,65,21.05,10,0.0 +21085,6,25,8,0.0 +21085,4,22,39,0.0 +21085,66,17,35,0.0 +21085,46,12,28,0.0 +21085,51,53,21,0.0 +21086,59,55,43,0.0 +21086,53,32.8,39,0.0 +21086,5,21.35,26,0.0 +21086,33,2.5,50,0.0 +21086,35,18,41,0.0 +21086,28,45.6,17,0.0 +21086,61,28.5,7,0.0 +21086,32,32,4,0.0 +21086,41,9.65,13,0.0 +21086,58,13.25,17,0.0 +21086,15,15.5,28,0.0 +21086,24,4.5,41,0.0 +21086,51,53,41,0.0 +21086,37,26,28,0.0 +21086,48,12.75,12,0.0 +21086,46,12,40,0.0 +21086,47,9.5,34,0.0 +21086,39,18,43,0.0 +21086,34,14,17,0.0 +21086,64,33.25,33,0.0 +21086,30,25.89,1,0.0 +21086,44,19.45,44,0.0 +21086,19,9.2,28,0.0 +21086,43,46,10,0.0 +21086,22,21,16,0.0 +21086,26,31.23,13,0.0 +21086,63,43.9,26,0.0 +21087,55,24,44,0.0 +21087,7,30,4,0.0 +21087,53,32.8,36,0.0 +21087,42,14,23,0.0 +21087,17,39,3,0.0 +21087,18,62.5,34,0.0 +21087,70,15,11,0.0 +21087,40,18.4,42,0.0 +21087,6,25,10,0.0 +21087,74,10,47,0.0 +21087,25,14,24,0.0 +21087,15,15.5,30,0.0 +21087,38,263.5,2,0.0 +21087,66,17,34,0.0 +21087,27,43.9,26,0.0 +21087,61,28.5,7,0.0 +21087,2,19,8,0.0 +21087,10,31,41,0.0 +21087,54,7.45,5,0.0 +21087,34,14,3,0.0 +21087,76,18,40,0.0 +21088,67,14,7,0.0 +21088,3,10,37,0.0 +21088,5,21.35,14,0.0 +21089,28,45.6,29,0.0 +21089,9,97,36,0.0 +21089,22,21,18,0.0 +21089,72,34.8,21,0.0 +21089,35,18,26,0.0 +21089,13,6,48,0.0 +21089,40,18.4,15,0.0 +21089,65,21.05,14,0.0 +21089,24,4.5,19,0.0 +21089,46,12,30,0.0 +21089,18,62.5,19,0.0 +21089,33,2.5,26,0.0 +21089,36,19,11,0.0 +21089,5,21.35,13,0.0 +21089,16,17.45,42,0.0 +21089,27,43.9,20,0.0 +21089,4,22,31,0.0 +21089,64,33.25,23,0.0 +21089,47,9.5,16,0.0 +21089,69,36,18,0.0 +21089,44,19.45,10,0.0 +21089,60,34,46,0.0 +21089,39,18,37,0.0 +21089,31,12.5,7,0.0 +21089,62,49.3,30,0.0 +21089,66,17,30,0.0 +21089,7,30,3,0.0 +21089,26,31.23,13,0.0 +21089,20,81,26,0.0 +21089,37,26,4,0.0 +21089,29,123.79,17,0.0 +21089,59,55,18,0.0 +21089,32,32,17,0.0 +21089,30,25.89,6,0.0 +21089,71,21.5,27,0.0 +21089,76,18,42,0.0 +21089,50,16.25,23,0.0 +21089,8,40,45,0.0 +21089,10,31,17,0.0 +21089,3,10,21,0.0 +21089,68,12.5,29,0.0 +21089,73,15,24,0.0 +21089,43,46,26,0.0 +21089,45,9.5,47,0.0 +21089,42,14,1,0.0 +21089,48,12.75,30,0.0 +21089,21,10,16,0.0 +21089,34,14,36,0.0 +21089,6,25,41,0.0 +21089,75,7.75,19,0.0 +21089,52,7,11,0.0 +21089,67,14,44,0.0 +21089,14,23.25,44,0.0 +21089,23,9,26,0.0 +21089,51,53,50,0.0 +21089,17,39,38,0.0 +21089,12,38,21,0.0 +21089,25,14,17,0.0 +21089,70,15,42,0.0 +21089,58,13.25,35,0.0 +21089,74,10,46,0.0 +21089,19,9.2,26,0.0 +21089,57,19.5,36,0.0 +21089,41,9.65,16,0.0 +21089,2,19,15,0.0 +21089,53,32.8,11,0.0 +21089,54,7.45,42,0.0 +21089,38,263.5,13,0.0 +21089,56,38,41,0.0 +21089,61,28.5,37,0.0 +21089,77,13,25,0.0 +21089,55,24,32,0.0 +21089,63,43.9,2,0.0 +21089,1,18,19,0.0 +21089,11,21,25,0.0 +21090,66,17,19,0.0 +21090,3,10,25,0.0 +21090,41,9.65,13,0.0 +21090,65,21.05,12,0.0 +21090,70,15,13,0.0 +21090,44,19.45,1,0.0 +21090,42,14,50,0.0 +21090,2,19,33,0.0 +21090,26,31.23,23,0.0 +21090,39,18,2,0.0 +21090,43,46,14,0.0 +21090,51,53,24,0.0 +21090,52,7,1,0.0 +21090,20,81,47,0.0 +21090,12,38,20,0.0 +21090,47,9.5,6,0.0 +21090,22,21,47,0.0 +21090,53,32.8,7,0.0 +21090,55,24,42,0.0 +21090,8,40,18,0.0 +21090,64,33.25,1,0.0 +21090,50,16.25,36,0.0 +21090,34,14,28,0.0 +21090,71,21.5,2,0.0 +21090,28,45.6,49,0.0 +21090,15,15.5,11,0.0 +21090,25,14,5,0.0 +21090,72,34.8,25,0.0 +21090,48,12.75,14,0.0 +21090,23,9,50,0.0 +21090,61,28.5,49,0.0 +21090,21,10,25,0.0 +21090,14,23.25,30,0.0 +21090,1,18,31,0.0 +21090,63,43.9,7,0.0 +21090,30,25.89,32,0.0 +21090,11,21,18,0.0 +21090,16,17.45,47,0.0 +21090,19,9.2,4,0.0 +21090,60,34,8,0.0 +21090,33,2.5,6,0.0 +21090,56,38,17,0.0 +21090,46,12,19,0.0 +21090,77,13,42,0.0 +21090,68,12.5,17,0.0 +21090,9,97,24,0.0 +21090,36,19,13,0.0 +21090,45,9.5,50,0.0 +21090,74,10,43,0.0 +21090,69,36,44,0.0 +21090,67,14,25,0.0 +21090,32,32,5,0.0 +21090,35,18,24,0.0 +21090,58,13.25,19,0.0 +21090,10,31,25,0.0 +21090,73,15,11,0.0 +21090,29,123.79,28,0.0 +21090,4,22,27,0.0 +21090,31,12.5,33,0.0 +21091,23,9,13,0.0 +21091,26,31.23,8,0.0 +21091,68,12.5,39,0.0 +21091,5,21.35,15,0.0 +21091,72,34.8,46,0.0 +21091,24,4.5,17,0.0 +21091,56,38,12,0.0 +21091,11,21,38,0.0 +21091,14,23.25,14,0.0 +21091,59,55,2,0.0 +21091,31,12.5,32,0.0 +21091,29,123.79,3,0.0 +21091,19,9.2,49,0.0 +21091,8,40,50,0.0 +21091,12,38,27,0.0 +21091,54,7.45,26,0.0 +21091,37,26,42,0.0 +21091,55,24,36,0.0 +21091,6,25,4,0.0 +21091,48,12.75,37,0.0 +21091,2,19,11,0.0 +21091,49,20,39,0.0 +21091,34,14,50,0.0 +21091,4,22,2,0.0 +21091,42,14,2,0.0 +21091,36,19,12,0.0 +21091,35,18,49,0.0 +21091,74,10,13,0.0 +21091,53,32.8,27,0.0 +21091,30,25.89,15,0.0 +21091,46,12,24,0.0 +21091,18,62.5,15,0.0 +21091,43,46,45,0.0 +21091,57,19.5,35,0.0 +21091,17,39,7,0.0 +21091,27,43.9,30,0.0 +21091,52,7,15,0.0 +21091,41,9.65,19,0.0 +21091,1,18,37,0.0 +21091,73,15,45,0.0 +21091,10,31,23,0.0 +21091,58,13.25,18,0.0 +21091,50,16.25,23,0.0 +21091,66,17,4,0.0 +21091,69,36,43,0.0 +21091,76,18,44,0.0 +21091,25,14,44,0.0 +21091,20,81,24,0.0 +21092,6,25,15,0.0 +21092,30,25.89,15,0.0 +21092,34,14,4,0.0 +21093,44,19.45,45,0.0 +21093,48,12.75,4,0.0 +21093,6,25,14,0.0 +21093,18,62.5,6,0.0 +21093,28,45.6,46,0.0 +21093,53,32.8,33,0.0 +21093,17,39,2,0.0 +21093,62,49.3,8,0.0 +21093,15,15.5,37,0.0 +21093,12,38,12,0.0 +21093,74,10,41,0.0 +21093,59,55,39,0.0 +21093,75,7.75,44,0.0 +21093,61,28.5,35,0.0 +21093,23,9,2,0.0 +21093,30,25.89,9,0.0 +21093,7,30,16,0.0 +21093,50,16.25,13,0.0 +21093,20,81,22,0.0 +21093,8,40,41,0.0 +21093,51,53,49,0.0 +21093,58,13.25,19,0.0 +21094,5,21.35,7,0.0 +21094,58,13.25,45,0.0 +21094,73,15,37,0.0 +21094,23,9,32,0.0 +21094,59,55,29,0.0 +21094,4,22,44,0.0 +21094,63,43.9,38,0.0 +21094,65,21.05,12,0.0 +21094,10,31,50,0.0 +21094,36,19,25,0.0 +21094,15,15.5,33,0.0 +21094,42,14,8,0.0 +21094,39,18,40,0.0 +21094,69,36,3,0.0 +21094,27,43.9,18,0.0 +21094,30,25.89,31,0.0 +21094,61,28.5,23,0.0 +21094,9,97,46,0.0 +21094,12,38,35,0.0 +21094,2,19,36,0.0 +21094,46,12,33,0.0 +21094,18,62.5,35,0.0 +21094,34,14,40,0.0 +21094,25,14,19,0.0 +21094,48,12.75,38,0.0 +21094,8,40,46,0.0 +21094,67,14,24,0.0 +21094,6,25,5,0.0 +21094,32,32,6,0.0 +21094,75,7.75,7,0.0 +21094,66,17,43,0.0 +21094,16,17.45,39,0.0 +21094,50,16.25,27,0.0 +21094,14,23.25,41,0.0 +21094,3,10,29,0.0 +21094,47,9.5,22,0.0 +21094,31,12.5,15,0.0 +21094,20,81,34,0.0 +21094,72,34.8,2,0.0 +21094,64,33.25,44,0.0 +21094,35,18,1,0.0 +21094,13,6,38,0.0 +21094,49,20,27,0.0 +21094,17,39,23,0.0 +21094,28,45.6,32,0.0 +21094,62,49.3,44,0.0 +21094,22,21,11,0.0 +21094,70,15,46,0.0 +21094,52,7,3,0.0 +21094,57,19.5,20,0.0 +21094,55,24,43,0.0 +21094,51,53,23,0.0 +21094,60,34,33,0.0 +21094,68,12.5,42,0.0 +21094,56,38,30,0.0 +21094,7,30,31,0.0 +21094,11,21,16,0.0 +21094,53,32.8,13,0.0 +21094,19,9.2,5,0.0 +21094,40,18.4,20,0.0 +21094,38,263.5,22,0.0 +21094,77,13,21,0.0 +21094,24,4.5,43,0.0 +21094,54,7.45,30,0.0 +21094,45,9.5,37,0.0 +21094,41,9.65,5,0.0 +21094,37,26,7,0.0 +21094,74,10,33,0.0 +21095,60,34,49,0.0 +21095,17,39,10,0.0 +21095,51,53,31,0.0 +21095,31,12.5,30,0.0 +21095,6,25,35,0.0 +21095,65,21.05,30,0.0 +21095,11,21,7,0.0 +21095,71,21.5,42,0.0 +21095,58,13.25,41,0.0 +21095,77,13,36,0.0 +21095,33,2.5,37,0.0 +21095,14,23.25,33,0.0 +21095,45,9.5,7,0.0 +21095,24,4.5,29,0.0 +21095,7,30,46,0.0 +21095,41,9.65,48,0.0 +21095,1,18,13,0.0 +21095,39,18,2,0.0 +21095,48,12.75,20,0.0 +21095,22,21,38,0.0 +21095,21,10,12,0.0 +21095,56,38,5,0.0 +21095,73,15,25,0.0 +21095,3,10,2,0.0 +21095,4,22,28,0.0 +21095,2,19,15,0.0 +21095,66,17,46,0.0 +21095,46,12,5,0.0 +21095,50,16.25,37,0.0 +21095,29,123.79,25,0.0 +21095,40,18.4,27,0.0 +21095,43,46,16,0.0 +21095,62,49.3,6,0.0 +21095,27,43.9,29,0.0 +21095,59,55,49,0.0 +21095,23,9,20,0.0 +21095,54,7.45,5,0.0 +21095,44,19.45,8,0.0 +21095,32,32,46,0.0 +21095,64,33.25,8,0.0 +21095,18,62.5,23,0.0 +21095,34,14,24,0.0 +21095,35,18,4,0.0 +21095,5,21.35,45,0.0 +21095,72,34.8,15,0.0 +21095,30,25.89,25,0.0 +21095,25,14,22,0.0 +21095,67,14,27,0.0 +21095,28,45.6,33,0.0 +21095,10,31,14,0.0 +21095,47,9.5,46,0.0 +21095,55,24,14,0.0 +21095,52,7,39,0.0 +21096,11,21,44,0.0 +21096,29,123.79,18,0.0 +21096,12,38,25,0.0 +21096,6,25,26,0.0 +21096,42,14,14,0.0 +21096,75,7.75,30,0.0 +21096,44,19.45,17,0.0 +21096,48,12.75,13,0.0 +21096,9,97,43,0.0 +21096,38,263.5,13,0.0 +21096,41,9.65,50,0.0 +21096,51,53,38,0.0 +21096,34,14,7,0.0 +21096,64,33.25,39,0.0 +21096,28,45.6,47,0.0 +21096,27,43.9,35,0.0 +21096,72,34.8,27,0.0 +21096,52,7,9,0.0 +21096,16,17.45,38,0.0 +21096,36,19,4,0.0 +21096,20,81,29,0.0 +21096,47,9.5,44,0.0 +21096,76,18,7,0.0 +21096,2,19,7,0.0 +21096,65,21.05,43,0.0 +21096,67,14,46,0.0 +21096,53,32.8,40,0.0 +21096,46,12,39,0.0 +21096,55,24,22,0.0 +21096,30,25.89,24,0.0 +21096,40,18.4,4,0.0 +21096,3,10,34,0.0 +21096,71,21.5,49,0.0 +21096,63,43.9,43,0.0 +21096,66,17,12,0.0 +21096,7,30,14,0.0 +21096,14,23.25,9,0.0 +21096,4,22,25,0.0 +21096,15,15.5,14,0.0 +21096,57,19.5,23,0.0 +21096,68,12.5,42,0.0 +21096,31,12.5,32,0.0 +21096,50,16.25,29,0.0 +21096,39,18,19,0.0 +21096,54,7.45,42,0.0 +21096,1,18,14,0.0 +21096,62,49.3,43,0.0 +21096,24,4.5,4,0.0 +21096,45,9.5,8,0.0 +21096,74,10,35,0.0 +21096,56,38,22,0.0 +21096,10,31,29,0.0 +21096,21,10,16,0.0 +21096,32,32,27,0.0 +21096,59,55,21,0.0 +21096,33,2.5,3,0.0 +21096,77,13,44,0.0 +21096,19,9.2,20,0.0 +21096,13,6,17,0.0 +21096,18,62.5,40,0.0 +21096,8,40,34,0.0 +21096,17,39,41,0.0 +21096,61,28.5,15,0.0 +21096,5,21.35,27,0.0 +21096,70,15,42,0.0 +21097,45,9.5,41,0.0 +21097,22,21,43,0.0 +21097,28,45.6,47,0.0 +21097,76,18,35,0.0 +21097,48,12.75,27,0.0 +21097,14,23.25,13,0.0 +21097,55,24,45,0.0 +21097,15,15.5,7,0.0 +21097,38,263.5,8,0.0 +21097,24,4.5,28,0.0 +21097,6,25,10,0.0 +21097,74,10,3,0.0 +21097,61,28.5,27,0.0 +21097,47,9.5,29,0.0 +21097,31,12.5,16,0.0 +21097,56,38,23,0.0 +21097,16,17.45,12,0.0 +21097,17,39,31,0.0 +21097,5,21.35,50,0.0 +21097,21,10,40,0.0 +21097,63,43.9,40,0.0 +21097,12,38,31,0.0 +21097,35,18,28,0.0 +21097,70,15,15,0.0 +21097,25,14,27,0.0 +21097,30,25.89,23,0.0 +21097,43,46,48,0.0 +21097,33,2.5,38,0.0 +21097,32,32,44,0.0 +21097,2,19,42,0.0 +21097,19,9.2,13,0.0 +21097,72,34.8,16,0.0 +21097,39,18,29,0.0 +21097,57,19.5,26,0.0 +21097,50,16.25,37,0.0 +21097,54,7.45,33,0.0 +21097,10,31,32,0.0 +21097,68,12.5,12,0.0 +21097,75,7.75,49,0.0 +21097,26,31.23,25,0.0 +21097,29,123.79,16,0.0 +21097,7,30,48,0.0 +21097,18,62.5,40,0.0 +21097,37,26,7,0.0 +21097,71,21.5,11,0.0 +21098,48,12.75,42,0.0 +21098,32,32,26,0.0 +21098,10,31,19,0.0 +21098,38,263.5,3,0.0 +21098,2,19,9,0.0 +21098,68,12.5,24,0.0 +21098,55,24,25,0.0 +21098,11,21,13,0.0 +21098,49,20,49,0.0 +21098,63,43.9,31,0.0 +21098,56,38,26,0.0 +21098,72,34.8,32,0.0 +21098,4,22,50,0.0 +21098,6,25,27,0.0 +21098,9,97,39,0.0 +21098,54,7.45,3,0.0 +21098,26,31.23,44,0.0 +21098,3,10,3,0.0 +21098,42,14,6,0.0 +21098,47,9.5,17,0.0 +21098,21,10,26,0.0 +21098,20,81,40,0.0 +21098,51,53,10,0.0 +21098,7,30,49,0.0 +21098,37,26,50,0.0 +21098,53,32.8,34,0.0 +21098,57,19.5,7,0.0 +21098,34,14,2,0.0 +21098,30,25.89,42,0.0 +21098,52,7,38,0.0 +21098,19,9.2,47,0.0 +21098,28,45.6,41,0.0 +21098,66,17,49,0.0 +21098,70,15,26,0.0 +21098,27,43.9,11,0.0 +21098,35,18,26,0.0 +21098,50,16.25,7,0.0 +21098,76,18,25,0.0 +21098,39,18,4,0.0 +21098,33,2.5,44,0.0 +21098,61,28.5,36,0.0 +21099,75,7.75,41,0.0 +21099,36,19,7,0.0 +21099,59,55,26,0.0 +21099,39,18,23,0.0 +21099,40,18.4,33,0.0 +21099,34,14,50,0.0 +21099,42,14,18,0.0 +21099,56,38,39,0.0 +21099,20,81,46,0.0 +21099,77,13,13,0.0 +21099,10,31,23,0.0 +21099,11,21,41,0.0 +21099,72,34.8,41,0.0 +21099,31,12.5,32,0.0 +21099,19,9.2,9,0.0 +21099,37,26,36,0.0 +21099,32,32,25,0.0 +21099,65,21.05,1,0.0 +21099,7,30,29,0.0 +21099,45,9.5,3,0.0 +21099,64,33.25,16,0.0 +21099,71,21.5,21,0.0 +21099,41,9.65,29,0.0 +21099,22,21,5,0.0 +21099,63,43.9,44,0.0 +21099,54,7.45,27,0.0 +21099,33,2.5,21,0.0 +21099,1,18,11,0.0 +21099,58,13.25,5,0.0 +21099,61,28.5,3,0.0 +21099,35,18,4,0.0 +21099,68,12.5,12,0.0 +21099,3,10,5,0.0 +21099,18,62.5,26,0.0 +21099,76,18,24,0.0 +21099,17,39,38,0.0 +21099,69,36,17,0.0 +21099,4,22,50,0.0 +21099,62,49.3,45,0.0 +21099,29,123.79,30,0.0 +21099,67,14,48,0.0 +21099,73,15,9,0.0 +21099,23,9,14,0.0 +21099,21,10,40,0.0 +21099,46,12,48,0.0 +21099,5,21.35,5,0.0 +21099,51,53,36,0.0 +21099,66,17,33,0.0 +21099,57,19.5,12,0.0 +21099,14,23.25,42,0.0 +21099,30,25.89,49,0.0 +21099,47,9.5,11,0.0 +21099,70,15,16,0.0 +21099,26,31.23,1,0.0 +21099,49,20,35,0.0 +21099,2,19,12,0.0 +21099,6,25,13,0.0 +21099,53,32.8,20,0.0 +21099,12,38,6,0.0 +21099,55,24,20,0.0 +21099,60,34,18,0.0 +21100,10,31,2,0.0 +21100,39,18,13,0.0 +21100,20,81,11,0.0 +21100,58,13.25,21,0.0 +21100,49,20,24,0.0 +21100,2,19,18,0.0 +21100,16,17.45,11,0.0 +21100,75,7.75,15,0.0 +21100,68,12.5,5,0.0 +21100,48,12.75,25,0.0 +21100,12,38,39,0.0 +21100,60,34,46,0.0 +21100,42,14,4,0.0 +21100,73,15,29,0.0 +21100,4,22,41,0.0 +21100,5,21.35,46,0.0 +21100,1,18,31,0.0 +21100,54,7.45,15,0.0 +21100,6,25,4,0.0 +21100,35,18,17,0.0 +21100,53,32.8,35,0.0 +21100,21,10,45,0.0 +21100,50,16.25,24,0.0 +21100,27,43.9,19,0.0 +21100,37,26,24,0.0 +21100,41,9.65,42,0.0 +21100,29,123.79,25,0.0 +21100,9,97,36,0.0 +21100,64,33.25,45,0.0 +21100,43,46,42,0.0 +21100,19,9.2,25,0.0 +21100,13,6,2,0.0 +21100,34,14,1,0.0 +21100,47,9.5,31,0.0 +21100,57,19.5,29,0.0 +21100,17,39,40,0.0 +21100,26,31.23,23,0.0 +21100,56,38,5,0.0 +21100,14,23.25,3,0.0 +21100,63,43.9,37,0.0 +21100,31,12.5,10,0.0 +21100,28,45.6,10,0.0 +21100,30,25.89,13,0.0 +21100,24,4.5,40,0.0 +21100,32,32,32,0.0 +21100,45,9.5,45,0.0 +21100,18,62.5,25,0.0 +21100,22,21,48,0.0 +21100,71,21.5,28,0.0 +21100,62,49.3,22,0.0 +21100,55,24,36,0.0 +21100,8,40,43,0.0 +21100,11,21,38,0.0 +21100,44,19.45,21,0.0 +21100,69,36,47,0.0 +21100,65,21.05,24,0.0 +21100,51,53,12,0.0 +21100,76,18,31,0.0 +21100,25,14,24,0.0 +21100,72,34.8,36,0.0 +21100,61,28.5,33,0.0 +21100,59,55,29,0.0 +21100,52,7,42,0.0 +21100,66,17,38,0.0 +21100,67,14,34,0.0 +21100,70,15,25,0.0 +21100,38,263.5,20,0.0 +21100,15,15.5,6,0.0 +21100,74,10,28,0.0 +21101,4,22,41,0.0 +21101,49,20,34,0.0 +21101,46,12,5,0.0 +21101,15,15.5,20,0.0 +21101,72,34.8,23,0.0 +21101,23,9,3,0.0 +21101,37,26,14,0.0 +21101,77,13,19,0.0 +21101,51,53,28,0.0 +21101,16,17.45,44,0.0 +21101,60,34,10,0.0 +21101,68,12.5,4,0.0 +21101,30,25.89,46,0.0 +21101,74,10,5,0.0 +21101,56,38,41,0.0 +21101,7,30,36,0.0 +21101,47,9.5,30,0.0 +21101,5,21.35,18,0.0 +21101,50,16.25,37,0.0 +21101,40,18.4,39,0.0 +21101,48,12.75,45,0.0 +21101,34,14,17,0.0 +21101,58,13.25,40,0.0 +21101,69,36,21,0.0 +21101,10,31,23,0.0 +21101,2,19,14,0.0 +21101,3,10,2,0.0 +21101,45,9.5,22,0.0 +21101,9,97,3,0.0 +21101,43,46,6,0.0 +21101,52,7,48,0.0 +21101,29,123.79,42,0.0 +21101,1,18,40,0.0 +21101,75,7.75,26,0.0 +21101,54,7.45,21,0.0 +21101,53,32.8,20,0.0 +21101,8,40,30,0.0 +21101,6,25,14,0.0 +21101,44,19.45,15,0.0 +21101,31,12.5,43,0.0 +21101,21,10,31,0.0 +21101,38,263.5,8,0.0 +21101,33,2.5,13,0.0 +21101,65,21.05,20,0.0 +21101,25,14,32,0.0 +21101,42,14,30,0.0 +21101,64,33.25,40,0.0 +21101,27,43.9,4,0.0 +21101,13,6,5,0.0 +21101,55,24,50,0.0 +21101,70,15,13,0.0 +21102,11,21,23,0.0 +21102,7,30,22,0.0 +21102,77,13,41,0.0 +21102,52,7,23,0.0 +21102,22,21,11,0.0 +21102,75,7.75,35,0.0 +21102,50,16.25,31,0.0 +21102,41,9.65,20,0.0 +21102,4,22,49,0.0 +21102,47,9.5,17,0.0 +21102,17,39,17,0.0 +21102,46,12,22,0.0 +21102,19,9.2,15,0.0 +21102,59,55,44,0.0 +21102,54,7.45,36,0.0 +21102,60,34,3,0.0 +21102,30,25.89,32,0.0 +21102,43,46,4,0.0 +21102,21,10,34,0.0 +21102,1,18,3,0.0 +21102,34,14,50,0.0 +21102,42,14,11,0.0 +21102,9,97,45,0.0 +21102,37,26,10,0.0 +21102,69,36,28,0.0 +21102,64,33.25,26,0.0 +21102,71,21.5,46,0.0 +21102,49,20,3,0.0 +21102,51,53,8,0.0 +21102,8,40,50,0.0 +21102,15,15.5,4,0.0 +21102,55,24,32,0.0 +21102,57,19.5,7,0.0 +21102,67,14,42,0.0 +21102,6,25,48,0.0 +21102,35,18,36,0.0 +21102,13,6,49,0.0 +21102,29,123.79,11,0.0 +21102,10,31,3,0.0 +21102,25,14,2,0.0 +21102,68,12.5,30,0.0 +21102,66,17,25,0.0 +21102,31,12.5,45,0.0 +21102,70,15,30,0.0 +21102,39,18,29,0.0 +21102,14,23.25,20,0.0 +21102,45,9.5,23,0.0 +21102,28,45.6,16,0.0 +21102,36,19,49,0.0 +21102,26,31.23,30,0.0 +21102,16,17.45,43,0.0 +21102,73,15,15,0.0 +21102,56,38,15,0.0 +21103,14,23.25,39,0.0 +21103,68,12.5,12,0.0 +21103,22,21,18,0.0 +21103,76,18,18,0.0 +21103,53,32.8,22,0.0 +21103,77,13,30,0.0 +21103,37,26,44,0.0 +21103,41,9.65,14,0.0 +21103,10,31,34,0.0 +21103,59,55,3,0.0 +21103,58,13.25,36,0.0 +21103,2,19,32,0.0 +21103,36,19,14,0.0 +21103,62,49.3,4,0.0 +21103,44,19.45,20,0.0 +21103,73,15,18,0.0 +21103,19,9.2,24,0.0 +21103,5,21.35,6,0.0 +21103,23,9,5,0.0 +21103,70,15,47,0.0 +21103,20,81,35,0.0 +21103,8,40,21,0.0 +21103,72,34.8,32,0.0 +21103,4,22,39,0.0 +21103,33,2.5,36,0.0 +21103,24,4.5,40,0.0 +21103,21,10,24,0.0 +21103,38,263.5,22,0.0 +21103,39,18,24,0.0 +21103,30,25.89,18,0.0 +21103,65,21.05,25,0.0 +21103,40,18.4,1,0.0 +21104,1,18,42,0.0 +21104,10,31,10,0.0 +21104,74,10,40,0.0 +21104,57,19.5,48,0.0 +21104,7,30,13,0.0 +21104,38,263.5,24,0.0 +21104,77,13,42,0.0 +21104,49,20,18,0.0 +21104,37,26,12,0.0 +21104,64,33.25,8,0.0 +21104,69,36,3,0.0 +21104,52,7,8,0.0 +21104,25,14,28,0.0 +21104,21,10,48,0.0 +21104,11,21,33,0.0 +21104,59,55,33,0.0 +21104,34,14,44,0.0 +21104,44,19.45,3,0.0 +21104,46,12,10,0.0 +21104,51,53,31,0.0 +21104,39,18,30,0.0 +21104,48,12.75,46,0.0 +21104,16,17.45,26,0.0 +21104,18,62.5,17,0.0 +21104,27,43.9,14,0.0 +21104,70,15,47,0.0 +21104,33,2.5,37,0.0 +21104,12,38,18,0.0 +21104,75,7.75,45,0.0 +21104,54,7.45,14,0.0 +21104,8,40,43,0.0 +21104,47,9.5,28,0.0 +21104,66,17,16,0.0 +21104,35,18,33,0.0 +21104,41,9.65,46,0.0 +21104,13,6,23,0.0 +21104,58,13.25,42,0.0 +21104,2,19,44,0.0 +21104,45,9.5,31,0.0 +21104,31,12.5,39,0.0 +21104,23,9,12,0.0 +21104,36,19,12,0.0 +21104,40,18.4,44,0.0 +21104,42,14,25,0.0 +21104,3,10,2,0.0 +21104,24,4.5,40,0.0 +21104,72,34.8,26,0.0 +21104,6,25,9,0.0 +21104,30,25.89,17,0.0 +21104,26,31.23,8,0.0 +21104,65,21.05,27,0.0 +21104,15,15.5,45,0.0 +21104,28,45.6,19,0.0 +21104,55,24,46,0.0 +21104,67,14,30,0.0 +21104,68,12.5,16,0.0 +21104,19,9.2,19,0.0 +21104,5,21.35,8,0.0 +21105,3,10,18,0.0 +21105,9,97,27,0.0 +21105,53,32.8,24,0.0 +21105,32,32,8,0.0 +21105,62,49.3,3,0.0 +21105,73,15,12,0.0 +21105,69,36,34,0.0 +21105,42,14,47,0.0 +21105,52,7,14,0.0 +21105,19,9.2,17,0.0 +21105,29,123.79,42,0.0 +21105,21,10,49,0.0 +21105,67,14,6,0.0 +21105,61,28.5,38,0.0 +21105,22,21,42,0.0 +21105,13,6,14,0.0 +21105,1,18,5,0.0 +21105,63,43.9,30,0.0 +21105,54,7.45,12,0.0 +21105,15,15.5,50,0.0 +21105,74,10,47,0.0 +21105,5,21.35,19,0.0 +21105,48,12.75,31,0.0 +21105,49,20,28,0.0 +21105,6,25,47,0.0 +21105,68,12.5,36,0.0 +21105,23,9,43,0.0 +21105,59,55,5,0.0 +21105,35,18,37,0.0 +21105,31,12.5,42,0.0 +21105,75,7.75,36,0.0 +21106,22,21,18,0.0 +21106,65,21.05,41,0.0 +21106,57,19.5,29,0.0 +21106,28,45.6,49,0.0 +21106,31,12.5,42,0.0 +21106,13,6,7,0.0 +21106,18,62.5,2,0.0 +21106,6,25,23,0.0 +21106,70,15,19,0.0 +21106,73,15,50,0.0 +21106,59,55,29,0.0 +21106,32,32,44,0.0 +21106,1,18,46,0.0 +21106,17,39,35,0.0 +21106,2,19,29,0.0 +21106,25,14,14,0.0 +21106,35,18,28,0.0 +21106,29,123.79,50,0.0 +21106,48,12.75,21,0.0 +21106,15,15.5,8,0.0 +21106,77,13,27,0.0 +21106,11,21,26,0.0 +21106,39,18,17,0.0 +21106,27,43.9,48,0.0 +21106,10,31,18,0.0 +21106,23,9,44,0.0 +21106,40,18.4,42,0.0 +21106,58,13.25,46,0.0 +21106,38,263.5,23,0.0 +21106,54,7.45,33,0.0 +21106,53,32.8,32,0.0 +21106,75,7.75,43,0.0 +21106,34,14,23,0.0 +21106,9,97,33,0.0 +21106,62,49.3,36,0.0 +21106,61,28.5,40,0.0 +21106,49,20,1,0.0 +21106,42,14,25,0.0 +21106,37,26,46,0.0 +21106,30,25.89,26,0.0 +21106,36,19,30,0.0 +21106,45,9.5,12,0.0 +21106,20,81,13,0.0 +21106,43,46,7,0.0 +21106,5,21.35,10,0.0 +21106,16,17.45,27,0.0 +21106,67,14,21,0.0 +21106,66,17,39,0.0 +21106,3,10,10,0.0 +21106,4,22,48,0.0 +21106,72,34.8,44,0.0 +21106,74,10,10,0.0 +21106,68,12.5,20,0.0 +21106,71,21.5,22,0.0 +21106,12,38,23,0.0 +21106,41,9.65,14,0.0 +21106,26,31.23,36,0.0 +21106,8,40,6,0.0 +21106,46,12,6,0.0 +21106,63,43.9,27,0.0 +21106,52,7,14,0.0 +21106,51,53,10,0.0 +21106,56,38,50,0.0 +21106,64,33.25,11,0.0 +21106,60,34,46,0.0 +21106,21,10,30,0.0 +21106,47,9.5,14,0.0 +21106,44,19.45,49,0.0 +21106,33,2.5,31,0.0 +21106,7,30,1,0.0 +21106,69,36,25,0.0 +21106,50,16.25,1,0.0 +21106,19,9.2,9,0.0 +21106,14,23.25,18,0.0 +21106,55,24,27,0.0 +21106,76,18,27,0.0 +21107,21,10,10,0.0 +21107,15,15.5,37,0.0 +21107,74,10,36,0.0 +21107,26,31.23,49,0.0 +21107,30,25.89,28,0.0 +21107,25,14,26,0.0 +21107,51,53,8,0.0 +21107,22,21,5,0.0 +21107,65,21.05,32,0.0 +21107,8,40,17,0.0 +21107,48,12.75,10,0.0 +21107,14,23.25,45,0.0 +21107,5,21.35,13,0.0 +21107,69,36,45,0.0 +21107,54,7.45,31,0.0 +21107,7,30,12,0.0 +21107,38,263.5,49,0.0 +21107,43,46,44,0.0 +21107,49,20,9,0.0 +21107,39,18,13,0.0 +21107,31,12.5,47,0.0 +21107,45,9.5,31,0.0 +21107,61,28.5,18,0.0 +21107,20,81,9,0.0 +21107,37,26,33,0.0 +21107,27,43.9,33,0.0 +21107,10,31,48,0.0 +21107,60,34,46,0.0 +21107,34,14,33,0.0 +21107,50,16.25,33,0.0 +21107,64,33.25,44,0.0 +21107,36,19,18,0.0 +21107,62,49.3,47,0.0 +21107,42,14,24,0.0 +21107,63,43.9,24,0.0 +21107,23,9,5,0.0 +21107,28,45.6,8,0.0 +21107,55,24,19,0.0 +21107,35,18,35,0.0 +21107,53,32.8,5,0.0 +21107,72,34.8,33,0.0 +21107,73,15,33,0.0 +21107,11,21,49,0.0 +21107,47,9.5,16,0.0 +21107,56,38,11,0.0 +21107,32,32,18,0.0 +21107,57,19.5,15,0.0 +21107,29,123.79,39,0.0 +21107,77,13,47,0.0 +21107,3,10,13,0.0 +21107,24,4.5,30,0.0 +21107,16,17.45,7,0.0 +21107,75,7.75,19,0.0 +21107,68,12.5,44,0.0 +21107,46,12,48,0.0 +21107,17,39,2,0.0 +21107,41,9.65,22,0.0 +21108,71,21.5,13,0.0 +21108,50,16.25,37,0.0 +21108,6,25,31,0.0 +21108,61,28.5,42,0.0 +21108,49,20,21,0.0 +21109,36,19,19,0.0 +21109,14,23.25,7,0.0 +21109,32,32,16,0.0 +21109,40,18.4,6,0.0 +21109,24,4.5,50,0.0 +21109,71,21.5,12,0.0 +21109,43,46,5,0.0 +21109,9,97,29,0.0 +21109,62,49.3,6,0.0 +21109,34,14,6,0.0 +21109,55,24,37,0.0 +21109,63,43.9,38,0.0 +21109,72,34.8,22,0.0 +21109,41,9.65,22,0.0 +21109,60,34,47,0.0 +21109,47,9.5,27,0.0 +21109,68,12.5,50,0.0 +21109,28,45.6,35,0.0 +21109,59,55,35,0.0 +21109,16,17.45,20,0.0 +21109,39,18,33,0.0 +21109,17,39,36,0.0 +21109,35,18,13,0.0 +21109,37,26,50,0.0 +21109,67,14,27,0.0 +21109,42,14,43,0.0 +21109,70,15,27,0.0 +21109,10,31,42,0.0 +21110,36,19,45,0.0 +21110,22,21,28,0.0 +21110,3,10,10,0.0 +21110,61,28.5,10,0.0 +21110,66,17,18,0.0 +21110,26,31.23,11,0.0 +21110,14,23.25,24,0.0 +21110,41,9.65,14,0.0 +21110,16,17.45,5,0.0 +21110,53,32.8,44,0.0 +21110,71,21.5,46,0.0 +21111,26,31.23,15,0.0 +21111,63,43.9,23,0.0 +21111,70,15,4,0.0 +21111,12,38,36,0.0 +21111,41,9.65,48,0.0 +21111,59,55,13,0.0 +21111,21,10,46,0.0 +21111,30,25.89,37,0.0 +21111,39,18,36,0.0 +21111,51,53,13,0.0 +21111,1,18,9,0.0 +21111,50,16.25,50,0.0 +21111,42,14,36,0.0 +21111,73,15,8,0.0 +21111,24,4.5,30,0.0 +21111,33,2.5,44,0.0 +21111,7,30,7,0.0 +21111,3,10,7,0.0 +21111,43,46,50,0.0 +21111,35,18,4,0.0 +21111,47,9.5,29,0.0 +21111,34,14,9,0.0 +21111,23,9,43,0.0 +21111,48,12.75,27,0.0 +21111,40,18.4,11,0.0 +21111,54,7.45,48,0.0 +21112,54,7.45,48,0.0 +21112,39,18,8,0.0 +21112,4,22,47,0.0 +21112,60,34,25,0.0 +21112,49,20,11,0.0 +21112,37,26,2,0.0 +21112,42,14,12,0.0 +21112,75,7.75,47,0.0 +21112,29,123.79,49,0.0 +21112,47,9.5,18,0.0 +21113,69,36,2,0.0 +21113,13,6,43,0.0 +21113,58,13.25,27,0.0 +21113,53,32.8,6,0.0 +21113,18,62.5,7,0.0 +21113,1,18,21,0.0 +21113,76,18,12,0.0 +21113,34,14,10,0.0 +21113,4,22,24,0.0 +21113,24,4.5,5,0.0 +21114,41,9.65,50,0.0 +21114,11,21,41,0.0 +21114,16,17.45,8,0.0 +21114,26,31.23,50,0.0 +21114,23,9,49,0.0 +21114,40,18.4,26,0.0 +21114,8,40,21,0.0 +21114,45,9.5,1,0.0 +21114,7,30,47,0.0 +21114,36,19,28,0.0 +21114,22,21,16,0.0 +21114,70,15,21,0.0 +21114,15,15.5,46,0.0 +21114,35,18,5,0.0 +21114,39,18,16,0.0 +21114,53,32.8,28,0.0 +21114,44,19.45,9,0.0 +21114,30,25.89,50,0.0 +21114,63,43.9,35,0.0 +21114,17,39,32,0.0 +21114,34,14,38,0.0 +21114,68,12.5,23,0.0 +21114,4,22,25,0.0 +21114,50,16.25,28,0.0 +21114,73,15,24,0.0 +21114,56,38,6,0.0 +21114,38,263.5,15,0.0 +21114,1,18,26,0.0 +21114,72,34.8,43,0.0 +21114,29,123.79,25,0.0 +21114,37,26,48,0.0 +21114,43,46,17,0.0 +21114,28,45.6,2,0.0 +21114,14,23.25,2,0.0 +21114,65,21.05,33,0.0 +21114,51,53,47,0.0 +21114,76,18,14,0.0 +21114,60,34,35,0.0 +21114,27,43.9,1,0.0 +21115,69,36,6,0.0 +21115,7,30,14,0.0 +21115,63,43.9,22,0.0 +21115,6,25,50,0.0 +21115,1,18,49,0.0 +21115,27,43.9,16,0.0 +21115,72,34.8,3,0.0 +21115,71,21.5,32,0.0 +21115,31,12.5,3,0.0 +21115,21,10,36,0.0 +21115,44,19.45,20,0.0 +21115,39,18,20,0.0 +21115,11,21,32,0.0 +21115,37,26,49,0.0 +21115,23,9,15,0.0 +21115,55,24,44,0.0 +21115,38,263.5,42,0.0 +21115,77,13,9,0.0 +21115,58,13.25,2,0.0 +21115,68,12.5,11,0.0 +21115,50,16.25,32,0.0 +21115,28,45.6,7,0.0 +21115,19,9.2,19,0.0 +21115,14,23.25,48,0.0 +21115,67,14,40,0.0 +21116,5,21.35,21,0.0 +21116,36,19,22,0.0 +21116,76,18,9,0.0 +21116,47,9.5,48,0.0 +21116,10,31,9,0.0 +21116,39,18,7,0.0 +21116,69,36,32,0.0 +21116,28,45.6,11,0.0 +21116,72,34.8,35,0.0 +21116,71,21.5,21,0.0 +21116,17,39,9,0.0 +21116,32,32,4,0.0 +21116,59,55,39,0.0 +21116,6,25,9,0.0 +21116,19,9.2,14,0.0 +21116,52,7,25,0.0 +21116,50,16.25,3,0.0 +21116,74,10,49,0.0 +21116,21,10,48,0.0 +21116,65,21.05,43,0.0 +21116,77,13,2,0.0 +21116,2,19,25,0.0 +21116,62,49.3,11,0.0 +21116,43,46,10,0.0 +21116,18,62.5,13,0.0 +21116,73,15,45,0.0 +21116,20,81,44,0.0 +21116,14,23.25,36,0.0 +21116,24,4.5,21,0.0 +21116,66,17,41,0.0 +21116,54,7.45,5,0.0 +21116,64,33.25,35,0.0 +21116,46,12,48,0.0 +21116,75,7.75,23,0.0 +21116,34,14,40,0.0 +21116,25,14,33,0.0 +21116,3,10,26,0.0 +21116,45,9.5,11,0.0 +21116,42,14,31,0.0 +21116,13,6,35,0.0 +21116,11,21,44,0.0 +21116,49,20,26,0.0 +21116,15,15.5,16,0.0 +21116,26,31.23,1,0.0 +21116,22,21,27,0.0 +21116,4,22,26,0.0 +21116,8,40,29,0.0 +21116,57,19.5,11,0.0 +21116,51,53,44,0.0 +21116,12,38,7,0.0 +21116,7,30,30,0.0 +21116,48,12.75,16,0.0 +21116,23,9,39,0.0 +21116,9,97,25,0.0 +21116,1,18,36,0.0 +21116,68,12.5,24,0.0 +21116,40,18.4,23,0.0 +21116,16,17.45,36,0.0 +21116,37,26,48,0.0 +21116,27,43.9,42,0.0 +21116,35,18,27,0.0 +21116,53,32.8,41,0.0 +21116,55,24,27,0.0 +21116,58,13.25,23,0.0 +21116,67,14,37,0.0 +21116,29,123.79,8,0.0 +21116,56,38,13,0.0 +21116,70,15,38,0.0 +21116,30,25.89,40,0.0 +21116,38,263.5,7,0.0 +21116,60,34,42,0.0 +21116,41,9.65,49,0.0 +21116,33,2.5,27,0.0 +21116,63,43.9,3,0.0 +21116,61,28.5,12,0.0 +21117,27,43.9,15,0.0 +21117,4,22,21,0.0 +21117,2,19,31,0.0 +21117,13,6,28,0.0 +21117,3,10,21,0.0 +21117,14,23.25,8,0.0 +21117,59,55,20,0.0 +21117,8,40,7,0.0 +21117,54,7.45,35,0.0 +21117,76,18,16,0.0 +21117,17,39,6,0.0 +21117,43,46,16,0.0 +21117,29,123.79,23,0.0 +21117,65,21.05,9,0.0 +21117,36,19,14,0.0 +21117,32,32,18,0.0 +21117,63,43.9,12,0.0 +21117,47,9.5,12,0.0 +21117,20,81,18,0.0 +21117,1,18,24,0.0 +21117,35,18,17,0.0 +21117,7,30,35,0.0 +21117,38,263.5,47,0.0 +21117,55,24,11,0.0 +21117,46,12,16,0.0 +21117,66,17,31,0.0 +21117,75,7.75,31,0.0 +21117,15,15.5,33,0.0 +21117,57,19.5,47,0.0 +21117,10,31,42,0.0 +21117,69,36,14,0.0 +21117,77,13,48,0.0 +21117,23,9,18,0.0 +21117,6,25,23,0.0 +21117,28,45.6,19,0.0 +21117,21,10,41,0.0 +21117,67,14,15,0.0 +21117,22,21,10,0.0 +21117,58,13.25,10,0.0 +21117,11,21,47,0.0 +21117,48,12.75,48,0.0 +21117,26,31.23,13,0.0 +21118,8,40,14,0.0 +21118,48,12.75,21,0.0 +21118,57,19.5,41,0.0 +21118,65,21.05,31,0.0 +21118,64,33.25,27,0.0 +21118,5,21.35,8,0.0 +21118,31,12.5,14,0.0 +21118,42,14,50,0.0 +21118,3,10,42,0.0 +21118,34,14,38,0.0 +21118,38,263.5,37,0.0 +21118,62,49.3,6,0.0 +21118,43,46,37,0.0 +21118,2,19,26,0.0 +21118,63,43.9,15,0.0 +21118,49,20,29,0.0 +21118,72,34.8,38,0.0 +21118,74,10,18,0.0 +21118,51,53,4,0.0 +21118,54,7.45,43,0.0 +21118,20,81,45,0.0 +21118,14,23.25,11,0.0 +21118,37,26,10,0.0 +21118,76,18,39,0.0 +21118,59,55,18,0.0 +21118,47,9.5,4,0.0 +21118,60,34,32,0.0 +21118,70,15,24,0.0 +21118,1,18,33,0.0 +21118,6,25,10,0.0 +21118,15,15.5,46,0.0 +21118,35,18,21,0.0 +21118,77,13,19,0.0 +21118,40,18.4,22,0.0 +21118,71,21.5,49,0.0 +21118,61,28.5,37,0.0 +21118,75,7.75,19,0.0 +21118,23,9,8,0.0 +21118,10,31,29,0.0 +21118,46,12,21,0.0 +21118,66,17,27,0.0 +21118,68,12.5,25,0.0 +21118,13,6,43,0.0 +21118,56,38,50,0.0 +21118,30,25.89,20,0.0 +21118,18,62.5,15,0.0 +21118,67,14,6,0.0 +21119,51,53,40,0.0 +21119,47,9.5,29,0.0 +21119,35,18,43,0.0 +21119,67,14,19,0.0 +21119,7,30,16,0.0 +21119,6,25,2,0.0 +21119,75,7.75,31,0.0 +21119,39,18,17,0.0 +21119,74,10,4,0.0 +21119,63,43.9,15,0.0 +21119,19,9.2,1,0.0 +21119,29,123.79,7,0.0 +21119,40,18.4,30,0.0 +21119,18,62.5,8,0.0 +21119,58,13.25,6,0.0 +21119,17,39,25,0.0 +21119,36,19,10,0.0 +21119,30,25.89,43,0.0 +21119,21,10,18,0.0 +21119,25,14,10,0.0 +21119,73,15,10,0.0 +21119,38,263.5,10,0.0 +21119,65,21.05,17,0.0 +21119,49,20,35,0.0 +21119,60,34,50,0.0 +21119,62,49.3,24,0.0 +21119,54,7.45,25,0.0 +21119,53,32.8,43,0.0 +21119,26,31.23,36,0.0 +21119,66,17,12,0.0 +21119,24,4.5,36,0.0 +21119,48,12.75,17,0.0 +21119,46,12,19,0.0 +21119,8,40,15,0.0 +21119,50,16.25,32,0.0 +21119,32,32,34,0.0 +21119,1,18,3,0.0 +21119,27,43.9,30,0.0 +21119,14,23.25,25,0.0 +21119,10,31,49,0.0 +21119,70,15,2,0.0 +21119,43,46,15,0.0 +21119,4,22,33,0.0 +21119,41,9.65,30,0.0 +21119,45,9.5,30,0.0 +21119,77,13,21,0.0 +21119,59,55,36,0.0 +21119,68,12.5,9,0.0 +21119,33,2.5,28,0.0 +21119,56,38,12,0.0 +21119,64,33.25,19,0.0 +21119,69,36,30,0.0 +21119,44,19.45,50,0.0 +21119,34,14,41,0.0 +21120,26,31.23,44,0.0 +21120,63,43.9,5,0.0 +21120,41,9.65,31,0.0 +21120,22,21,24,0.0 +21120,60,34,3,0.0 +21120,30,25.89,31,0.0 +21120,29,123.79,47,0.0 +21120,67,14,15,0.0 +21120,45,9.5,22,0.0 +21120,14,23.25,46,0.0 +21120,62,49.3,49,0.0 +21120,37,26,10,0.0 +21120,39,18,28,0.0 +21120,76,18,42,0.0 +21120,38,263.5,43,0.0 +21120,10,31,33,0.0 +21120,72,34.8,30,0.0 +21120,6,25,33,0.0 +21120,47,9.5,45,0.0 +21120,35,18,29,0.0 +21120,27,43.9,36,0.0 +21120,9,97,28,0.0 +21120,8,40,6,0.0 +21120,2,19,31,0.0 +21120,4,22,41,0.0 +21120,54,7.45,8,0.0 +21120,55,24,1,0.0 +21120,19,9.2,1,0.0 +21120,18,62.5,8,0.0 +21120,46,12,33,0.0 +21120,73,15,36,0.0 +21120,11,21,34,0.0 +21120,66,17,14,0.0 +21120,53,32.8,24,0.0 +21120,21,10,30,0.0 +21120,51,53,36,0.0 +21120,32,32,41,0.0 +21120,49,20,21,0.0 +21120,48,12.75,29,0.0 +21120,13,6,4,0.0 +21120,52,7,2,0.0 +21120,77,13,7,0.0 +21120,58,13.25,14,0.0 +21120,33,2.5,44,0.0 +21120,64,33.25,21,0.0 +21120,3,10,16,0.0 +21120,17,39,15,0.0 +21120,40,18.4,2,0.0 +21120,1,18,3,0.0 +21120,71,21.5,34,0.0 +21120,15,15.5,23,0.0 +21120,50,16.25,32,0.0 +21120,43,46,1,0.0 +21120,34,14,27,0.0 +21120,69,36,14,0.0 +21120,56,38,4,0.0 +21120,7,30,40,0.0 +21120,23,9,49,0.0 +21120,42,14,44,0.0 +21120,59,55,14,0.0 +21120,74,10,13,0.0 +21120,25,14,50,0.0 +21120,65,21.05,25,0.0 +21120,16,17.45,36,0.0 +21120,28,45.6,28,0.0 +21120,24,4.5,35,0.0 +21120,44,19.45,10,0.0 +21120,70,15,3,0.0 +21120,75,7.75,5,0.0 +21120,61,28.5,17,0.0 +21120,20,81,45,0.0 +21120,68,12.5,33,0.0 +21120,36,19,39,0.0 +21120,12,38,6,0.0 +21120,5,21.35,37,0.0 +21121,48,12.75,36,0.0 +21121,74,10,11,0.0 +21121,58,13.25,44,0.0 +21121,9,97,3,0.0 +21121,14,23.25,31,0.0 +21121,75,7.75,48,0.0 +21121,7,30,42,0.0 +21121,38,263.5,6,0.0 +21121,17,39,43,0.0 +21121,54,7.45,8,0.0 +21121,39,18,44,0.0 +21121,41,9.65,17,0.0 +21121,61,28.5,6,0.0 +21121,64,33.25,2,0.0 +21121,19,9.2,28,0.0 +21121,47,9.5,36,0.0 +21121,32,32,19,0.0 +21121,46,12,35,0.0 +21121,8,40,43,0.0 +21121,55,24,39,0.0 +21121,15,15.5,8,0.0 +21121,4,22,23,0.0 +21121,11,21,31,0.0 +21121,63,43.9,14,0.0 +21121,20,81,7,0.0 +21121,66,17,38,0.0 +21121,67,14,25,0.0 +21121,13,6,19,0.0 +21121,77,13,47,0.0 +21121,42,14,50,0.0 +21121,6,25,43,0.0 +21121,29,123.79,31,0.0 +21121,22,21,28,0.0 +21121,18,62.5,42,0.0 +21121,30,25.89,23,0.0 +21121,51,53,46,0.0 +21121,60,34,42,0.0 +21121,1,18,25,0.0 +21121,34,14,29,0.0 +21121,72,34.8,1,0.0 +21121,45,9.5,10,0.0 +21121,62,49.3,38,0.0 +21121,16,17.45,49,0.0 +21121,57,19.5,15,0.0 +21121,52,7,34,0.0 +21121,65,21.05,27,0.0 +21121,68,12.5,19,0.0 +21121,31,12.5,3,0.0 +21121,2,19,44,0.0 +21121,5,21.35,39,0.0 +21121,37,26,50,0.0 +21121,36,19,36,0.0 +21121,3,10,46,0.0 +21121,25,14,37,0.0 +21121,24,4.5,48,0.0 +21121,59,55,4,0.0 +21121,49,20,8,0.0 +21121,71,21.5,27,0.0 +21121,76,18,2,0.0 +21121,73,15,14,0.0 +21121,40,18.4,39,0.0 +21121,56,38,3,0.0 +21121,28,45.6,39,0.0 +21121,10,31,49,0.0 +21121,23,9,17,0.0 +21121,70,15,31,0.0 +21121,53,32.8,41,0.0 +21121,44,19.45,10,0.0 +21121,27,43.9,46,0.0 +21121,33,2.5,31,0.0 +21121,43,46,20,0.0 +21121,21,10,6,0.0 +21121,12,38,40,0.0 +21122,43,46,33,0.0 +21122,27,43.9,33,0.0 +21122,71,21.5,11,0.0 +21122,21,10,16,0.0 +21122,50,16.25,23,0.0 +21122,35,18,23,0.0 +21122,17,39,17,0.0 +21122,64,33.25,24,0.0 +21122,39,18,11,0.0 +21122,48,12.75,6,0.0 +21122,10,31,47,0.0 +21122,49,20,40,0.0 +21122,77,13,5,0.0 +21122,12,38,4,0.0 +21122,38,263.5,20,0.0 +21122,33,2.5,37,0.0 +21122,9,97,37,0.0 +21122,5,21.35,40,0.0 +21122,7,30,24,0.0 +21122,57,19.5,13,0.0 +21122,72,34.8,24,0.0 +21122,40,18.4,23,0.0 +21122,42,14,37,0.0 +21122,62,49.3,5,0.0 +21122,65,21.05,14,0.0 +21122,37,26,37,0.0 +21122,15,15.5,23,0.0 +21122,32,32,46,0.0 +21122,59,55,34,0.0 +21122,44,19.45,25,0.0 +21122,69,36,29,0.0 +21122,24,4.5,28,0.0 +21122,6,25,42,0.0 +21122,14,23.25,10,0.0 +21122,54,7.45,3,0.0 +21122,66,17,20,0.0 +21122,56,38,21,0.0 +21122,67,14,6,0.0 +21122,20,81,19,0.0 +21122,1,18,17,0.0 +21122,63,43.9,15,0.0 +21122,61,28.5,45,0.0 +21122,53,32.8,29,0.0 +21122,2,19,30,0.0 +21122,30,25.89,19,0.0 +21122,74,10,13,0.0 +21122,23,9,4,0.0 +21123,22,21,20,0.0 +21123,73,15,7,0.0 +21123,33,2.5,45,0.0 +21123,55,24,39,0.0 +21123,54,7.45,2,0.0 +21123,20,81,9,0.0 +21123,69,36,19,0.0 +21123,58,13.25,47,0.0 +21123,18,62.5,48,0.0 +21123,32,32,45,0.0 +21123,42,14,35,0.0 +21123,35,18,19,0.0 +21123,14,23.25,38,0.0 +21123,37,26,27,0.0 +21123,68,12.5,33,0.0 +21123,1,18,15,0.0 +21123,28,45.6,50,0.0 +21123,66,17,47,0.0 +21123,23,9,22,0.0 +21123,9,97,2,0.0 +21123,26,31.23,31,0.0 +21123,25,14,2,0.0 +21123,21,10,23,0.0 +21123,39,18,25,0.0 +21123,53,32.8,25,0.0 +21123,77,13,49,0.0 +21123,57,19.5,18,0.0 +21123,2,19,24,0.0 +21123,4,22,37,0.0 +21123,64,33.25,8,0.0 +21123,48,12.75,4,0.0 +21123,36,19,20,0.0 +21123,12,38,30,0.0 +21123,7,30,40,0.0 +21123,46,12,37,0.0 +21123,71,21.5,9,0.0 +21123,29,123.79,23,0.0 +21123,5,21.35,46,0.0 +21123,74,10,15,0.0 +21123,43,46,32,0.0 +21123,45,9.5,3,0.0 +21123,34,14,5,0.0 +21123,65,21.05,15,0.0 +21123,6,25,14,0.0 +21123,16,17.45,11,0.0 +21123,11,21,2,0.0 +21123,24,4.5,21,0.0 +21123,61,28.5,11,0.0 +21123,63,43.9,43,0.0 +21123,51,53,36,0.0 +21123,56,38,50,0.0 +21123,49,20,27,0.0 +21123,59,55,40,0.0 +21123,15,15.5,42,0.0 +21123,38,263.5,26,0.0 +21123,13,6,50,0.0 +21123,60,34,25,0.0 +21123,70,15,38,0.0 +21123,3,10,40,0.0 +21123,67,14,13,0.0 +21123,10,31,40,0.0 +21123,72,34.8,12,0.0 +21123,52,7,13,0.0 +21124,6,25,36,0.0 +21124,77,13,32,0.0 +21124,44,19.45,28,0.0 +21124,59,55,47,0.0 +21124,29,123.79,25,0.0 +21124,21,10,17,0.0 +21124,28,45.6,20,0.0 +21124,5,21.35,34,0.0 +21124,50,16.25,12,0.0 +21124,1,18,32,0.0 +21124,7,30,48,0.0 +21124,22,21,4,0.0 +21124,46,12,42,0.0 +21124,73,15,31,0.0 +21124,41,9.65,47,0.0 +21124,43,46,2,0.0 +21124,40,18.4,41,0.0 +21124,48,12.75,32,0.0 +21124,70,15,49,0.0 +21124,35,18,23,0.0 +21124,18,62.5,32,0.0 +21124,17,39,47,0.0 +21124,74,10,43,0.0 +21124,75,7.75,2,0.0 +21124,24,4.5,20,0.0 +21124,57,19.5,45,0.0 +21124,49,20,2,0.0 +21124,64,33.25,49,0.0 +21124,76,18,22,0.0 +21124,39,18,21,0.0 +21124,30,25.89,43,0.0 +21124,65,21.05,44,0.0 +21124,63,43.9,43,0.0 +21124,32,32,35,0.0 +21124,13,6,21,0.0 +21124,8,40,49,0.0 +21124,66,17,19,0.0 +21124,61,28.5,37,0.0 +21124,15,15.5,32,0.0 +21124,19,9.2,44,0.0 +21124,71,21.5,23,0.0 +21124,25,14,43,0.0 +21125,15,15.5,47,0.0 +21125,2,19,19,0.0 +21125,50,16.25,25,0.0 +21125,18,62.5,45,0.0 +21125,22,21,32,0.0 +21125,52,7,47,0.0 +21125,20,81,18,0.0 +21125,64,33.25,9,0.0 +21125,63,43.9,29,0.0 +21125,1,18,9,0.0 +21125,43,46,16,0.0 +21125,16,17.45,33,0.0 +21125,6,25,42,0.0 +21125,53,32.8,9,0.0 +21125,62,49.3,47,0.0 +21125,9,97,8,0.0 +21125,7,30,20,0.0 +21125,60,34,3,0.0 +21125,48,12.75,46,0.0 +21125,37,26,2,0.0 +21125,54,7.45,29,0.0 +21125,23,9,9,0.0 +21125,76,18,46,0.0 +21125,55,24,11,0.0 +21125,8,40,46,0.0 +21125,42,14,50,0.0 +21125,69,36,45,0.0 +21125,66,17,41,0.0 +21125,4,22,47,0.0 +21125,38,263.5,14,0.0 +21125,24,4.5,49,0.0 +21125,70,15,23,0.0 +21125,44,19.45,50,0.0 +21125,28,45.6,19,0.0 +21125,77,13,29,0.0 +21125,5,21.35,50,0.0 +21125,29,123.79,23,0.0 +21125,65,21.05,24,0.0 +21125,72,34.8,22,0.0 +21125,39,18,17,0.0 +21125,68,12.5,40,0.0 +21125,35,18,5,0.0 +21125,57,19.5,15,0.0 +21126,5,21.35,19,0.0 +21127,76,18,47,0.0 +21127,2,19,7,0.0 +21127,40,18.4,24,0.0 +21127,38,263.5,39,0.0 +21127,41,9.65,26,0.0 +21127,55,24,26,0.0 +21127,67,14,26,0.0 +21127,14,23.25,33,0.0 +21127,66,17,50,0.0 +21127,25,14,33,0.0 +21127,15,15.5,37,0.0 +21127,36,19,40,0.0 +21127,71,21.5,13,0.0 +21127,5,21.35,40,0.0 +21127,31,12.5,1,0.0 +21127,29,123.79,38,0.0 +21127,56,38,20,0.0 +21127,42,14,18,0.0 +21127,20,81,26,0.0 +21127,28,45.6,3,0.0 +21127,4,22,32,0.0 +21127,57,19.5,7,0.0 +21127,21,10,1,0.0 +21127,35,18,33,0.0 +21127,22,21,8,0.0 +21127,16,17.45,35,0.0 +21127,65,21.05,30,0.0 +21127,63,43.9,31,0.0 +21127,62,49.3,32,0.0 +21127,61,28.5,28,0.0 +21127,54,7.45,4,0.0 +21127,18,62.5,47,0.0 +21127,24,4.5,15,0.0 +21127,8,40,21,0.0 +21127,10,31,1,0.0 +21127,32,32,40,0.0 +21127,23,9,6,0.0 +21127,6,25,46,0.0 +21127,33,2.5,42,0.0 +21127,77,13,35,0.0 +21127,19,9.2,8,0.0 +21127,34,14,32,0.0 +21127,45,9.5,46,0.0 +21127,60,34,13,0.0 +21127,50,16.25,45,0.0 +21127,48,12.75,21,0.0 +21127,73,15,16,0.0 +21127,74,10,35,0.0 +21127,69,36,21,0.0 +21127,13,6,29,0.0 +21127,17,39,35,0.0 +21128,53,32.8,17,0.0 +21128,50,16.25,10,0.0 +21128,17,39,45,0.0 +21128,75,7.75,29,0.0 +21129,5,21.35,44,0.0 +21129,37,26,13,0.0 +21129,15,15.5,27,0.0 +21129,17,39,40,0.0 +21129,18,62.5,36,0.0 +21129,68,12.5,13,0.0 +21129,2,19,50,0.0 +21129,65,21.05,17,0.0 +21130,4,22,3,0.0 +21130,16,17.45,50,0.0 +21130,36,19,16,0.0 +21130,1,18,27,0.0 +21130,21,10,7,0.0 +21130,9,97,2,0.0 +21130,7,30,15,0.0 +21130,15,15.5,21,0.0 +21130,26,31.23,1,0.0 +21130,63,43.9,38,0.0 +21130,52,7,33,0.0 +21130,13,6,44,0.0 +21130,75,7.75,43,0.0 +21130,14,23.25,10,0.0 +21130,6,25,35,0.0 +21130,53,32.8,41,0.0 +21130,10,31,10,0.0 +21130,66,17,8,0.0 +21130,60,34,9,0.0 +21130,72,34.8,43,0.0 +21130,11,21,20,0.0 +21130,40,18.4,37,0.0 +21130,56,38,47,0.0 +21130,34,14,44,0.0 +21130,38,263.5,29,0.0 +21130,54,7.45,1,0.0 +21130,3,10,11,0.0 +21130,61,28.5,20,0.0 +21130,67,14,3,0.0 +21130,49,20,25,0.0 +21130,32,32,43,0.0 +21130,45,9.5,33,0.0 +21130,47,9.5,13,0.0 +21130,28,45.6,21,0.0 +21130,31,12.5,14,0.0 +21130,76,18,1,0.0 +21130,65,21.05,9,0.0 +21130,77,13,10,0.0 +21130,55,24,19,0.0 +21130,48,12.75,17,0.0 +21130,44,19.45,23,0.0 +21130,5,21.35,27,0.0 +21130,41,9.65,3,0.0 +21130,39,18,6,0.0 +21130,51,53,45,0.0 +21130,30,25.89,41,0.0 +21130,33,2.5,17,0.0 +21130,12,38,36,0.0 +21130,74,10,15,0.0 +21130,22,21,36,0.0 +21130,19,9.2,20,0.0 +21130,24,4.5,24,0.0 +21130,69,36,50,0.0 +21130,23,9,17,0.0 +21130,71,21.5,15,0.0 +21130,20,81,2,0.0 +21130,29,123.79,10,0.0 +21130,27,43.9,3,0.0 +21130,58,13.25,38,0.0 +21130,68,12.5,35,0.0 +21130,43,46,1,0.0 +21130,17,39,6,0.0 +21130,50,16.25,21,0.0 +21130,57,19.5,45,0.0 +21130,64,33.25,15,0.0 +21130,59,55,49,0.0 +21130,62,49.3,19,0.0 +21130,42,14,14,0.0 +21130,18,62.5,30,0.0 +21131,25,14,9,0.0 +21131,73,15,13,0.0 +21131,38,263.5,5,0.0 +21131,45,9.5,8,0.0 +21131,17,39,5,0.0 +21131,33,2.5,35,0.0 +21131,69,36,35,0.0 +21131,3,10,9,0.0 +21131,63,43.9,14,0.0 +21131,34,14,44,0.0 +21131,62,49.3,40,0.0 +21131,48,12.75,42,0.0 +21131,41,9.65,41,0.0 +21131,26,31.23,5,0.0 +21131,18,62.5,26,0.0 +21131,23,9,44,0.0 +21131,55,24,33,0.0 +21131,66,17,38,0.0 +21131,57,19.5,23,0.0 +21131,51,53,35,0.0 +21131,12,38,44,0.0 +21131,21,10,18,0.0 +21131,75,7.75,14,0.0 +21131,59,55,38,0.0 +21131,13,6,45,0.0 +21131,6,25,26,0.0 +21131,15,15.5,11,0.0 +21131,74,10,11,0.0 +21131,64,33.25,29,0.0 +21131,61,28.5,22,0.0 +21131,1,18,19,0.0 +21131,49,20,12,0.0 +21131,47,9.5,42,0.0 +21131,65,21.05,15,0.0 +21131,30,25.89,2,0.0 +21131,53,32.8,27,0.0 +21131,54,7.45,14,0.0 +21131,50,16.25,39,0.0 +21131,60,34,14,0.0 +21131,70,15,41,0.0 +21131,5,21.35,16,0.0 +21131,67,14,33,0.0 +21131,72,34.8,11,0.0 +21131,9,97,20,0.0 +21131,31,12.5,6,0.0 +21131,29,123.79,50,0.0 +21131,42,14,41,0.0 +21131,7,30,34,0.0 +21131,71,21.5,25,0.0 +21131,32,32,41,0.0 +21131,28,45.6,7,0.0 +21131,14,23.25,6,0.0 +21131,46,12,41,0.0 +21131,8,40,28,0.0 +21131,37,26,19,0.0 +21131,36,19,48,0.0 +21131,4,22,24,0.0 +21131,52,7,35,0.0 +21131,44,19.45,26,0.0 +21131,2,19,21,0.0 +21131,27,43.9,9,0.0 +21132,68,12.5,8,0.0 +21132,12,38,41,0.0 +21132,76,18,31,0.0 +21132,7,30,8,0.0 +21132,63,43.9,36,0.0 +21132,29,123.79,35,0.0 +21132,33,2.5,40,0.0 +21132,4,22,23,0.0 +21132,65,21.05,38,0.0 +21132,10,31,37,0.0 +21132,43,46,25,0.0 +21132,52,7,16,0.0 +21132,60,34,47,0.0 +21132,26,31.23,11,0.0 +21132,35,18,30,0.0 +21132,2,19,31,0.0 +21132,73,15,13,0.0 +21132,16,17.45,37,0.0 +21132,34,14,30,0.0 +21132,19,9.2,38,0.0 +21132,59,55,29,0.0 +21132,6,25,38,0.0 +21132,14,23.25,14,0.0 +21132,53,32.8,21,0.0 +21132,74,10,29,0.0 +21132,46,12,19,0.0 +21132,20,81,10,0.0 +21132,39,18,28,0.0 +21132,56,38,33,0.0 +21132,61,28.5,4,0.0 +21132,21,10,15,0.0 +21132,70,15,43,0.0 +21132,1,18,5,0.0 +21133,63,43.9,14,0.0 +21133,28,45.6,11,0.0 +21133,35,18,33,0.0 +21133,56,38,28,0.0 +21133,40,18.4,29,0.0 +21133,1,18,27,0.0 +21133,24,4.5,10,0.0 +21133,12,38,25,0.0 +21133,76,18,17,0.0 +21133,25,14,25,0.0 +21133,30,25.89,17,0.0 +21133,14,23.25,24,0.0 +21133,74,10,18,0.0 +21133,55,24,6,0.0 +21133,17,39,13,0.0 +21133,33,2.5,29,0.0 +21133,18,62.5,1,0.0 +21133,68,12.5,47,0.0 +21133,34,14,47,0.0 +21133,36,19,20,0.0 +21133,47,9.5,42,0.0 +21133,48,12.75,17,0.0 +21133,9,97,6,0.0 +21133,65,21.05,45,0.0 +21133,66,17,9,0.0 +21133,29,123.79,8,0.0 +21133,22,21,28,0.0 +21134,68,12.5,40,0.0 +21134,51,53,46,0.0 +21134,16,17.45,21,0.0 +21134,40,18.4,30,0.0 +21134,26,31.23,26,0.0 +21134,29,123.79,35,0.0 +21134,76,18,11,0.0 +21134,21,10,43,0.0 +21134,57,19.5,24,0.0 +21134,13,6,29,0.0 +21134,22,21,15,0.0 +21134,75,7.75,9,0.0 +21134,4,22,30,0.0 +21135,15,15.5,47,0.0 +21135,52,7,48,0.0 +21135,19,9.2,15,0.0 +21135,36,19,19,0.0 +21135,17,39,35,0.0 +21135,65,21.05,42,0.0 +21135,7,30,16,0.0 +21135,16,17.45,27,0.0 +21135,68,12.5,19,0.0 +21135,32,32,4,0.0 +21135,74,10,11,0.0 +21135,25,14,44,0.0 +21135,26,31.23,38,0.0 +21135,63,43.9,26,0.0 +21135,43,46,37,0.0 +21135,34,14,4,0.0 +21135,21,10,30,0.0 +21135,31,12.5,28,0.0 +21135,60,34,17,0.0 +21135,55,24,32,0.0 +21135,37,26,49,0.0 +21135,20,81,1,0.0 +21135,73,15,3,0.0 +21135,66,17,47,0.0 +21135,42,14,35,0.0 +21135,33,2.5,44,0.0 +21135,71,21.5,37,0.0 +21135,8,40,37,0.0 +21135,13,6,28,0.0 +21135,51,53,4,0.0 +21135,58,13.25,42,0.0 +21135,41,9.65,32,0.0 +21135,45,9.5,39,0.0 +21135,59,55,47,0.0 +21135,5,21.35,47,0.0 +21135,11,21,30,0.0 +21135,6,25,40,0.0 +21135,72,34.8,12,0.0 +21135,9,97,39,0.0 +21135,46,12,13,0.0 +21135,47,9.5,4,0.0 +21135,29,123.79,27,0.0 +21135,39,18,47,0.0 +21135,62,49.3,38,0.0 +21135,35,18,48,0.0 +21135,50,16.25,2,0.0 +21135,70,15,40,0.0 +21135,18,62.5,46,0.0 +21135,27,43.9,21,0.0 +21135,38,263.5,35,0.0 +21136,34,14,16,0.0 +21136,4,22,28,0.0 +21136,60,34,50,0.0 +21136,28,45.6,7,0.0 +21137,40,18.4,44,0.0 +21137,66,17,40,0.0 +21137,51,53,30,0.0 +21137,77,13,29,0.0 +21137,28,45.6,18,0.0 +21137,74,10,30,0.0 +21137,34,14,25,0.0 +21137,23,9,40,0.0 +21137,14,23.25,9,0.0 +21137,43,46,20,0.0 +21137,56,38,33,0.0 +21137,68,12.5,4,0.0 +21137,61,28.5,45,0.0 +21137,55,24,34,0.0 +21137,15,15.5,48,0.0 +21137,31,12.5,20,0.0 +21137,49,20,8,0.0 +21137,57,19.5,22,0.0 +21137,58,13.25,37,0.0 +21137,70,15,16,0.0 +21137,73,15,1,0.0 +21137,53,32.8,45,0.0 +21137,3,10,47,0.0 +21137,64,33.25,47,0.0 +21137,32,32,27,0.0 +21137,41,9.65,2,0.0 +21137,59,55,42,0.0 +21137,6,25,10,0.0 +21137,33,2.5,43,0.0 +21137,29,123.79,16,0.0 +21137,26,31.23,5,0.0 +21137,20,81,10,0.0 +21137,10,31,1,0.0 +21137,21,10,24,0.0 +21138,43,46,15,0.0 +21138,52,7,27,0.0 +21138,67,14,5,0.0 +21138,40,18.4,32,0.0 +21138,5,21.35,38,0.0 +21138,16,17.45,14,0.0 +21138,18,62.5,44,0.0 +21138,77,13,45,0.0 +21138,75,7.75,6,0.0 +21138,69,36,34,0.0 +21138,8,40,23,0.0 +21138,74,10,44,0.0 +21138,39,18,5,0.0 +21138,9,97,2,0.0 +21138,71,21.5,45,0.0 +21138,20,81,39,0.0 +21138,29,123.79,26,0.0 +21138,54,7.45,41,0.0 +21138,64,33.25,11,0.0 +21138,10,31,3,0.0 +21138,28,45.6,46,0.0 +21138,36,19,31,0.0 +21138,72,34.8,21,0.0 +21138,66,17,22,0.0 +21138,70,15,19,0.0 +21138,48,12.75,45,0.0 +21138,47,9.5,5,0.0 +21138,1,18,16,0.0 +21138,53,32.8,41,0.0 +21138,33,2.5,46,0.0 +21138,23,9,35,0.0 +21138,26,31.23,17,0.0 +21138,65,21.05,5,0.0 +21139,7,30,43,0.0 +21139,27,43.9,13,0.0 +21139,31,12.5,47,0.0 +21139,53,32.8,41,0.0 +21139,60,34,32,0.0 +21139,37,26,44,0.0 +21140,57,19.5,49,0.0 +21140,58,13.25,29,0.0 +21140,77,13,15,0.0 +21140,71,21.5,15,0.0 +21140,67,14,14,0.0 +21140,32,32,12,0.0 +21140,24,4.5,20,0.0 +21140,68,12.5,8,0.0 +21140,72,34.8,9,0.0 +21140,26,31.23,25,0.0 +21140,76,18,1,0.0 +21140,44,19.45,44,0.0 +21140,20,81,16,0.0 +21140,53,32.8,10,0.0 +21140,49,20,5,0.0 +21140,73,15,48,0.0 +21140,12,38,24,0.0 +21140,31,12.5,42,0.0 +21140,14,23.25,45,0.0 +21140,39,18,40,0.0 +21140,54,7.45,25,0.0 +21140,11,21,6,0.0 +21140,75,7.75,12,0.0 +21140,59,55,25,0.0 +21140,4,22,4,0.0 +21140,60,34,41,0.0 +21140,50,16.25,23,0.0 +21140,15,15.5,36,0.0 +21140,27,43.9,33,0.0 +21140,18,62.5,19,0.0 +21140,65,21.05,46,0.0 +21140,7,30,9,0.0 +21140,42,14,31,0.0 +21140,40,18.4,13,0.0 +21140,28,45.6,29,0.0 +21140,1,18,15,0.0 +21140,55,24,32,0.0 +21140,10,31,24,0.0 +21140,6,25,44,0.0 +21140,5,21.35,44,0.0 +21140,22,21,16,0.0 +21140,30,25.89,32,0.0 +21140,47,9.5,19,0.0 +21140,35,18,5,0.0 +21140,51,53,1,0.0 +21140,56,38,45,0.0 +21140,66,17,49,0.0 +21140,2,19,28,0.0 +21140,13,6,39,0.0 +21140,16,17.45,30,0.0 +21140,29,123.79,7,0.0 +21140,64,33.25,34,0.0 +21140,74,10,17,0.0 +21140,21,10,20,0.0 +21140,61,28.5,15,0.0 +21140,62,49.3,18,0.0 +21140,45,9.5,10,0.0 +21140,41,9.65,7,0.0 +21141,42,14,13,0.0 +21141,30,25.89,2,0.0 +21141,59,55,16,0.0 +21141,31,12.5,10,0.0 +21141,20,81,31,0.0 +21141,49,20,34,0.0 +21141,26,31.23,11,0.0 +21141,4,22,33,0.0 +21141,57,19.5,9,0.0 +21141,14,23.25,12,0.0 +21141,50,16.25,31,0.0 +21141,52,7,29,0.0 +21141,69,36,19,0.0 +21141,61,28.5,37,0.0 +21141,8,40,42,0.0 +21141,28,45.6,23,0.0 +21141,76,18,10,0.0 +21141,53,32.8,48,0.0 +21141,2,19,1,0.0 +21141,11,21,47,0.0 +21141,75,7.75,40,0.0 +21141,3,10,15,0.0 +21141,60,34,21,0.0 +21141,18,62.5,35,0.0 +21141,77,13,29,0.0 +21141,5,21.35,45,0.0 +21141,21,10,3,0.0 +21141,43,46,27,0.0 +21141,65,21.05,36,0.0 +21141,51,53,44,0.0 +21141,16,17.45,36,0.0 +21141,40,18.4,27,0.0 +21141,34,14,38,0.0 +21141,1,18,8,0.0 +21141,36,19,44,0.0 +21141,63,43.9,31,0.0 +21141,68,12.5,38,0.0 +21141,39,18,20,0.0 +21141,6,25,49,0.0 +21141,74,10,18,0.0 +21141,25,14,32,0.0 +21141,29,123.79,19,0.0 +21141,7,30,23,0.0 +21141,27,43.9,13,0.0 +21141,35,18,35,0.0 +21141,62,49.3,41,0.0 +21141,24,4.5,49,0.0 +21141,48,12.75,39,0.0 +21141,70,15,13,0.0 +21141,55,24,14,0.0 +21141,58,13.25,9,0.0 +21141,54,7.45,33,0.0 +21141,73,15,27,0.0 +21141,44,19.45,6,0.0 +21141,45,9.5,33,0.0 +21141,23,9,35,0.0 +21141,64,33.25,17,0.0 +21141,22,21,28,0.0 +21141,47,9.5,42,0.0 +21141,15,15.5,44,0.0 +21141,10,31,37,0.0 +21141,37,26,27,0.0 +21141,66,17,6,0.0 +21142,41,9.65,24,0.0 +21142,69,36,43,0.0 +21142,52,7,37,0.0 +21142,60,34,12,0.0 +21142,12,38,11,0.0 +21142,54,7.45,27,0.0 +21142,37,26,4,0.0 +21142,74,10,37,0.0 +21142,42,14,20,0.0 +21142,39,18,45,0.0 +21142,13,6,28,0.0 +21142,63,43.9,31,0.0 +21142,48,12.75,44,0.0 +21142,23,9,27,0.0 +21142,1,18,37,0.0 +21142,58,13.25,15,0.0 +21142,31,12.5,22,0.0 +21142,15,15.5,16,0.0 +21142,7,30,14,0.0 +21142,28,45.6,48,0.0 +21142,26,31.23,42,0.0 +21142,71,21.5,21,0.0 +21142,32,32,29,0.0 +21142,2,19,28,0.0 +21143,17,39,31,0.0 +21143,32,32,34,0.0 +21143,15,15.5,29,0.0 +21143,16,17.45,40,0.0 +21143,20,81,28,0.0 +21143,25,14,8,0.0 +21143,68,12.5,22,0.0 +21143,47,9.5,22,0.0 +21143,30,25.89,40,0.0 +21143,66,17,11,0.0 +21144,40,18.4,37,0.0 +21144,21,10,2,0.0 +21144,36,19,45,0.0 +21144,27,43.9,28,0.0 +21144,57,19.5,42,0.0 +21144,63,43.9,41,0.0 +21144,50,16.25,33,0.0 +21144,15,15.5,10,0.0 +21144,52,7,25,0.0 +21144,64,33.25,1,0.0 +21144,61,28.5,20,0.0 +21144,39,18,44,0.0 +21144,59,55,14,0.0 +21144,14,23.25,5,0.0 +21144,77,13,43,0.0 +21144,68,12.5,27,0.0 +21144,12,38,26,0.0 +21144,46,12,23,0.0 +21144,54,7.45,23,0.0 +21144,18,62.5,10,0.0 +21144,53,32.8,4,0.0 +21144,25,14,47,0.0 +21144,30,25.89,47,0.0 +21144,74,10,26,0.0 +21144,6,25,3,0.0 +21144,73,15,6,0.0 +21144,70,15,21,0.0 +21144,33,2.5,45,0.0 +21144,28,45.6,32,0.0 +21144,41,9.65,36,0.0 +21144,11,21,6,0.0 +21144,42,14,27,0.0 +21144,55,24,48,0.0 +21144,19,9.2,13,0.0 +21144,56,38,50,0.0 +21144,60,34,44,0.0 +21144,37,26,41,0.0 +21144,7,30,9,0.0 +21144,4,22,20,0.0 +21144,29,123.79,46,0.0 +21144,32,32,13,0.0 +21144,38,263.5,5,0.0 +21144,16,17.45,18,0.0 +21144,44,19.45,45,0.0 +21144,51,53,47,0.0 +21144,34,14,36,0.0 +21144,48,12.75,1,0.0 +21144,2,19,11,0.0 +21144,65,21.05,6,0.0 +21144,10,31,37,0.0 +21144,45,9.5,33,0.0 +21144,26,31.23,41,0.0 +21144,43,46,36,0.0 +21144,31,12.5,17,0.0 +21144,3,10,39,0.0 +21144,17,39,24,0.0 +21144,24,4.5,10,0.0 +21144,62,49.3,18,0.0 +21144,71,21.5,42,0.0 +21144,20,81,10,0.0 +21144,23,9,40,0.0 +21144,69,36,38,0.0 +21144,66,17,47,0.0 +21144,72,34.8,2,0.0 +21144,22,21,8,0.0 +21144,8,40,27,0.0 +21144,76,18,15,0.0 +21144,1,18,13,0.0 +21144,58,13.25,26,0.0 +21145,66,17,29,0.0 +21145,49,20,28,0.0 +21145,75,7.75,48,0.0 +21145,77,13,3,0.0 +21145,50,16.25,4,0.0 +21145,7,30,40,0.0 +21145,37,26,42,0.0 +21145,18,62.5,32,0.0 +21145,8,40,11,0.0 +21145,65,21.05,38,0.0 +21145,60,34,50,0.0 +21145,4,22,30,0.0 +21145,29,123.79,13,0.0 +21145,57,19.5,12,0.0 +21145,59,55,22,0.0 +21145,44,19.45,42,0.0 +21145,51,53,42,0.0 +21145,1,18,10,0.0 +21145,68,12.5,18,0.0 +21145,61,28.5,31,0.0 +21145,58,13.25,16,0.0 +21145,36,19,50,0.0 +21145,62,49.3,19,0.0 +21145,11,21,10,0.0 +21145,41,9.65,3,0.0 +21145,20,81,29,0.0 +21145,5,21.35,28,0.0 +21145,15,15.5,23,0.0 +21145,9,97,45,0.0 +21145,10,31,32,0.0 +21145,34,14,30,0.0 +21145,46,12,34,0.0 +21145,22,21,47,0.0 +21145,45,9.5,17,0.0 +21145,38,263.5,2,0.0 +21145,24,4.5,40,0.0 +21145,55,24,3,0.0 +21145,40,18.4,4,0.0 +21145,2,19,28,0.0 +21145,28,45.6,22,0.0 +21145,19,9.2,6,0.0 +21145,30,25.89,30,0.0 +21145,54,7.45,18,0.0 +21145,53,32.8,43,0.0 +21145,14,23.25,7,0.0 +21145,35,18,20,0.0 +21145,12,38,24,0.0 +21145,70,15,30,0.0 +21145,63,43.9,5,0.0 +21145,17,39,2,0.0 +21145,42,14,25,0.0 +21145,23,9,20,0.0 +21145,47,9.5,49,0.0 +21145,31,12.5,42,0.0 +21145,76,18,5,0.0 +21145,43,46,45,0.0 +21145,72,34.8,39,0.0 +21145,33,2.5,5,0.0 +21145,74,10,34,0.0 +21145,21,10,33,0.0 +21145,3,10,29,0.0 +21145,56,38,3,0.0 +21145,67,14,24,0.0 +21145,6,25,23,0.0 +21145,69,36,44,0.0 +21145,39,18,41,0.0 +21145,48,12.75,35,0.0 +21145,25,14,5,0.0 +21145,73,15,37,0.0 +21145,27,43.9,33,0.0 +21145,16,17.45,4,0.0 +21145,32,32,37,0.0 +21145,26,31.23,36,0.0 +21146,72,34.8,48,0.0 +21146,60,34,23,0.0 +21146,37,26,31,0.0 +21146,30,25.89,10,0.0 +21146,10,31,16,0.0 +21146,14,23.25,8,0.0 +21146,17,39,16,0.0 +21146,20,81,48,0.0 +21146,12,38,2,0.0 +21146,47,9.5,12,0.0 +21146,44,19.45,26,0.0 +21146,46,12,47,0.0 +21146,31,12.5,11,0.0 +21146,52,7,18,0.0 +21146,22,21,49,0.0 +21146,57,19.5,14,0.0 +21146,11,21,14,0.0 +21146,29,123.79,4,0.0 +21146,75,7.75,38,0.0 +21146,34,14,31,0.0 +21146,5,21.35,40,0.0 +21146,9,97,42,0.0 +21146,24,4.5,20,0.0 +21146,55,24,46,0.0 +21146,48,12.75,28,0.0 +21146,61,28.5,4,0.0 +21146,49,20,41,0.0 +21146,50,16.25,33,0.0 +21146,7,30,2,0.0 +21146,21,10,3,0.0 +21146,51,53,7,0.0 +21146,68,12.5,32,0.0 +21146,58,13.25,27,0.0 +21146,56,38,47,0.0 +21146,62,49.3,10,0.0 +21146,15,15.5,5,0.0 +21146,43,46,36,0.0 +21146,38,263.5,18,0.0 +21146,13,6,9,0.0 +21146,77,13,34,0.0 +21146,25,14,18,0.0 +21146,71,21.5,31,0.0 +21146,1,18,42,0.0 +21146,2,19,22,0.0 +21146,8,40,5,0.0 +21146,45,9.5,22,0.0 +21146,23,9,11,0.0 +21146,41,9.65,25,0.0 +21146,59,55,29,0.0 +21146,42,14,14,0.0 +21146,4,22,49,0.0 +21146,27,43.9,33,0.0 +21146,70,15,50,0.0 +21146,26,31.23,15,0.0 +21146,76,18,44,0.0 +21146,67,14,31,0.0 +21146,40,18.4,14,0.0 +21146,28,45.6,8,0.0 +21146,6,25,30,0.0 +21146,66,17,11,0.0 +21146,36,19,49,0.0 +21146,3,10,13,0.0 +21146,53,32.8,22,0.0 +21146,39,18,19,0.0 +21146,65,21.05,37,0.0 +21147,54,7.45,15,0.0 +21147,72,34.8,3,0.0 +21147,69,36,31,0.0 +21147,19,9.2,8,0.0 +21147,66,17,5,0.0 +21147,74,10,15,0.0 +21147,2,19,15,0.0 +21147,62,49.3,39,0.0 +21148,29,123.79,39,0.0 +21148,19,9.2,44,0.0 +21148,73,15,49,0.0 +21148,51,53,2,0.0 +21148,44,19.45,5,0.0 +21148,58,13.25,39,0.0 +21148,27,43.9,18,0.0 +21148,55,24,45,0.0 +21148,35,18,37,0.0 +21148,45,9.5,16,0.0 +21148,54,7.45,27,0.0 +21148,53,32.8,17,0.0 +21148,70,15,26,0.0 +21148,59,55,30,0.0 +21148,31,12.5,50,0.0 +21148,56,38,20,0.0 +21148,21,10,6,0.0 +21148,36,19,14,0.0 +21148,32,32,37,0.0 +21148,74,10,6,0.0 +21148,43,46,9,0.0 +21148,41,9.65,11,0.0 +21148,14,23.25,14,0.0 +21148,48,12.75,45,0.0 +21148,3,10,37,0.0 +21148,52,7,21,0.0 +21148,16,17.45,5,0.0 +21148,15,15.5,39,0.0 +21148,11,21,12,0.0 +21148,69,36,38,0.0 +21148,49,20,17,0.0 +21148,40,18.4,9,0.0 +21148,72,34.8,13,0.0 +21148,64,33.25,13,0.0 +21148,47,9.5,32,0.0 +21148,50,16.25,46,0.0 +21148,4,22,12,0.0 +21148,71,21.5,45,0.0 +21148,65,21.05,45,0.0 +21148,66,17,42,0.0 +21148,2,19,34,0.0 +21148,60,34,7,0.0 +21148,34,14,7,0.0 +21148,22,21,4,0.0 +21148,13,6,2,0.0 +21148,76,18,35,0.0 +21148,42,14,37,0.0 +21148,68,12.5,4,0.0 +21148,57,19.5,27,0.0 +21148,67,14,16,0.0 +21148,75,7.75,23,0.0 +21148,7,30,4,0.0 +21149,34,14,13,0.0 +21149,2,19,46,0.0 +21149,53,32.8,36,0.0 +21149,74,10,14,0.0 +21149,28,45.6,37,0.0 +21149,27,43.9,47,0.0 +21149,69,36,4,0.0 +21149,17,39,28,0.0 +21149,45,9.5,46,0.0 +21149,22,21,10,0.0 +21149,54,7.45,29,0.0 +21149,62,49.3,16,0.0 +21149,44,19.45,9,0.0 +21149,36,19,3,0.0 +21149,23,9,26,0.0 +21149,25,14,37,0.0 +21149,73,15,42,0.0 +21149,31,12.5,39,0.0 +21149,57,19.5,3,0.0 +21149,67,14,1,0.0 +21149,42,14,11,0.0 +21149,61,28.5,15,0.0 +21149,55,24,29,0.0 +21149,20,81,42,0.0 +21149,52,7,8,0.0 +21149,40,18.4,48,0.0 +21149,37,26,48,0.0 +21149,16,17.45,45,0.0 +21149,8,40,5,0.0 +21149,72,34.8,36,0.0 +21149,29,123.79,3,0.0 +21149,30,25.89,42,0.0 +21149,66,17,34,0.0 +21149,49,20,26,0.0 +21149,6,25,42,0.0 +21149,3,10,4,0.0 +21149,60,34,8,0.0 +21149,59,55,27,0.0 +21149,1,18,41,0.0 +21149,18,62.5,38,0.0 +21149,41,9.65,47,0.0 +21149,38,263.5,3,0.0 +21149,76,18,4,0.0 +21149,15,15.5,32,0.0 +21149,64,33.25,11,0.0 +21149,4,22,49,0.0 +21149,7,30,6,0.0 +21149,63,43.9,49,0.0 +21149,65,21.05,45,0.0 +21149,9,97,50,0.0 +21150,21,10,9,0.0 +21150,39,18,9,0.0 +21150,14,23.25,14,0.0 +21150,36,19,12,0.0 +21150,53,32.8,27,0.0 +21150,46,12,16,0.0 +21150,2,19,10,0.0 +21150,17,39,2,0.0 +21150,69,36,22,0.0 +21150,73,15,11,0.0 +21150,55,24,37,0.0 +21150,23,9,36,0.0 +21150,75,7.75,34,0.0 +21150,58,13.25,19,0.0 +21150,29,123.79,29,0.0 +21150,11,21,25,0.0 +21150,26,31.23,7,0.0 +21150,63,43.9,44,0.0 +21150,20,81,24,0.0 +21150,8,40,7,0.0 +21151,27,43.9,35,0.0 +21151,64,33.25,5,0.0 +21151,7,30,24,0.0 +21151,13,6,3,0.0 +21151,67,14,11,0.0 +21151,72,34.8,24,0.0 +21151,28,45.6,34,0.0 +21152,38,263.5,20,0.0 +21152,23,9,37,0.0 +21152,75,7.75,24,0.0 +21152,64,33.25,25,0.0 +21152,17,39,19,0.0 +21152,50,16.25,3,0.0 +21152,63,43.9,10,0.0 +21152,34,14,33,0.0 +21152,12,38,20,0.0 +21152,22,21,11,0.0 +21152,59,55,11,0.0 +21152,13,6,42,0.0 +21152,35,18,25,0.0 +21152,72,34.8,24,0.0 +21152,15,15.5,46,0.0 +21152,3,10,18,0.0 +21152,67,14,23,0.0 +21152,60,34,16,0.0 +21152,6,25,5,0.0 +21152,37,26,36,0.0 +21152,36,19,40,0.0 +21152,9,97,18,0.0 +21152,26,31.23,40,0.0 +21152,19,9.2,1,0.0 +21152,52,7,39,0.0 +21152,10,31,15,0.0 +21152,48,12.75,32,0.0 +21152,27,43.9,27,0.0 +21152,41,9.65,32,0.0 +21152,20,81,16,0.0 +21152,74,10,24,0.0 +21152,47,9.5,50,0.0 +21152,18,62.5,9,0.0 +21152,32,32,41,0.0 +21152,29,123.79,23,0.0 +21152,66,17,33,0.0 +21152,69,36,44,0.0 +21152,2,19,6,0.0 +21152,71,21.5,10,0.0 +21152,44,19.45,14,0.0 +21153,76,18,3,0.0 +21153,64,33.25,37,0.0 +21153,14,23.25,43,0.0 +21153,9,97,41,0.0 +21153,62,49.3,27,0.0 +21153,77,13,4,0.0 +21153,72,34.8,47,0.0 +21153,67,14,9,0.0 +21153,58,13.25,22,0.0 +21153,45,9.5,32,0.0 +21153,57,19.5,13,0.0 +21153,37,26,13,0.0 +21153,38,263.5,9,0.0 +21153,44,19.45,34,0.0 +21153,35,18,48,0.0 +21153,10,31,12,0.0 +21153,52,7,17,0.0 +21153,48,12.75,7,0.0 +21153,5,21.35,20,0.0 +21153,40,18.4,32,0.0 +21153,19,9.2,4,0.0 +21153,47,9.5,11,0.0 +21153,34,14,50,0.0 +21153,66,17,10,0.0 +21153,28,45.6,50,0.0 +21153,59,55,6,0.0 +21153,2,19,50,0.0 +21153,54,7.45,38,0.0 +21153,50,16.25,43,0.0 +21153,70,15,15,0.0 +21153,20,81,15,0.0 +21153,53,32.8,49,0.0 +21153,7,30,7,0.0 +21153,56,38,20,0.0 +21153,29,123.79,34,0.0 +21153,23,9,3,0.0 +21153,63,43.9,14,0.0 +21153,71,21.5,35,0.0 +21153,33,2.5,2,0.0 +21153,73,15,7,0.0 +21153,18,62.5,25,0.0 +21153,30,25.89,16,0.0 +21153,12,38,19,0.0 +21153,15,15.5,23,0.0 +21153,61,28.5,25,0.0 +21153,3,10,34,0.0 +21153,49,20,36,0.0 +21153,25,14,1,0.0 +21153,75,7.75,6,0.0 +21154,36,19,40,0.0 +21154,25,14,1,0.0 +21154,7,30,29,0.0 +21154,54,7.45,42,0.0 +21154,66,17,25,0.0 +21154,24,4.5,45,0.0 +21154,2,19,27,0.0 +21154,15,15.5,35,0.0 +21154,43,46,35,0.0 +21154,46,12,15,0.0 +21154,53,32.8,35,0.0 +21154,29,123.79,8,0.0 +21154,69,36,12,0.0 +21154,41,9.65,9,0.0 +21154,10,31,44,0.0 +21154,76,18,39,0.0 +21154,67,14,30,0.0 +21154,13,6,40,0.0 +21154,62,49.3,27,0.0 +21154,37,26,4,0.0 +21154,71,21.5,40,0.0 +21154,22,21,21,0.0 +21154,70,15,21,0.0 +21154,50,16.25,27,0.0 +21154,63,43.9,23,0.0 +21154,48,12.75,14,0.0 +21154,31,12.5,11,0.0 +21154,19,9.2,23,0.0 +21154,17,39,50,0.0 +21154,33,2.5,47,0.0 +21154,40,18.4,43,0.0 +21154,51,53,10,0.0 +21154,8,40,37,0.0 +21154,61,28.5,39,0.0 +21154,5,21.35,16,0.0 +21154,68,12.5,49,0.0 +21154,42,14,35,0.0 +21154,45,9.5,19,0.0 +21154,1,18,44,0.0 +21154,60,34,7,0.0 +21154,75,7.75,46,0.0 +21154,56,38,29,0.0 +21154,65,21.05,50,0.0 +21154,27,43.9,16,0.0 +21154,6,25,11,0.0 +21154,39,18,23,0.0 +21154,57,19.5,7,0.0 +21154,12,38,19,0.0 +21154,55,24,47,0.0 +21154,30,25.89,35,0.0 +21154,3,10,1,0.0 +21154,38,263.5,1,0.0 +21154,52,7,8,0.0 +21154,44,19.45,44,0.0 +21154,28,45.6,50,0.0 +21154,14,23.25,17,0.0 +21154,77,13,41,0.0 +21154,23,9,37,0.0 +21154,20,81,42,0.0 +21154,64,33.25,46,0.0 +21154,18,62.5,32,0.0 +21154,74,10,35,0.0 +21154,35,18,41,0.0 +21154,47,9.5,44,0.0 +21154,58,13.25,46,0.0 +21154,59,55,50,0.0 +21155,62,49.3,41,0.0 +21155,39,18,30,0.0 +21155,66,17,44,0.0 +21155,33,2.5,21,0.0 +21155,48,12.75,4,0.0 +21155,50,16.25,41,0.0 +21155,76,18,32,0.0 +21155,2,19,37,0.0 +21155,42,14,1,0.0 +21155,14,23.25,50,0.0 +21155,72,34.8,36,0.0 +21155,65,21.05,31,0.0 +21155,30,25.89,47,0.0 +21155,11,21,3,0.0 +21155,5,21.35,27,0.0 +21155,68,12.5,26,0.0 +21155,54,7.45,4,0.0 +21155,59,55,12,0.0 +21155,21,10,23,0.0 +21155,26,31.23,30,0.0 +21155,56,38,38,0.0 +21155,35,18,11,0.0 +21155,58,13.25,44,0.0 +21155,23,9,32,0.0 +21155,12,38,29,0.0 +21155,36,19,41,0.0 +21155,16,17.45,11,0.0 +21155,13,6,14,0.0 +21155,40,18.4,46,0.0 +21155,45,9.5,8,0.0 +21155,70,15,19,0.0 +21155,60,34,6,0.0 +21155,43,46,12,0.0 +21155,19,9.2,39,0.0 +21155,9,97,5,0.0 +21155,28,45.6,36,0.0 +21155,25,14,37,0.0 +21155,6,25,14,0.0 +21155,75,7.75,5,0.0 +21155,31,12.5,41,0.0 +21155,15,15.5,39,0.0 +21155,20,81,12,0.0 +21155,53,32.8,37,0.0 +21155,64,33.25,50,0.0 +21155,55,24,12,0.0 +21155,61,28.5,4,0.0 +21155,67,14,2,0.0 +21155,69,36,14,0.0 +21155,7,30,3,0.0 +21155,46,12,23,0.0 +21155,29,123.79,46,0.0 +21155,63,43.9,27,0.0 +21155,77,13,22,0.0 +21155,57,19.5,37,0.0 +21155,74,10,30,0.0 +21155,10,31,26,0.0 +21155,24,4.5,48,0.0 +21155,38,263.5,20,0.0 +21155,37,26,2,0.0 +21155,71,21.5,7,0.0 +21155,41,9.65,47,0.0 +21155,1,18,24,0.0 +21155,8,40,47,0.0 +21156,16,17.45,48,0.0 +21156,53,32.8,7,0.0 +21156,24,4.5,49,0.0 +21156,75,7.75,42,0.0 +21156,31,12.5,18,0.0 +21156,3,10,16,0.0 +21156,17,39,18,0.0 +21156,76,18,48,0.0 +21156,69,36,48,0.0 +21156,52,7,1,0.0 +21156,49,20,37,0.0 +21156,72,34.8,34,0.0 +21156,1,18,31,0.0 +21156,6,25,31,0.0 +21156,37,26,17,0.0 +21156,18,62.5,12,0.0 +21156,23,9,6,0.0 +21156,4,22,23,0.0 +21156,30,25.89,50,0.0 +21156,29,123.79,25,0.0 +21156,21,10,2,0.0 +21156,14,23.25,23,0.0 +21156,10,31,19,0.0 +21156,70,15,42,0.0 +21156,39,18,26,0.0 +21156,54,7.45,46,0.0 +21156,77,13,24,0.0 +21156,25,14,8,0.0 +21156,35,18,34,0.0 +21156,64,33.25,31,0.0 +21156,33,2.5,4,0.0 +21156,46,12,14,0.0 +21156,42,14,24,0.0 +21156,5,21.35,42,0.0 +21156,47,9.5,26,0.0 +21156,19,9.2,37,0.0 +21156,44,19.45,4,0.0 +21156,67,14,19,0.0 +21156,20,81,41,0.0 +21156,59,55,1,0.0 +21156,51,53,34,0.0 +21156,7,30,17,0.0 +21156,73,15,20,0.0 +21156,71,21.5,34,0.0 +21156,74,10,47,0.0 +21156,8,40,22,0.0 +21156,34,14,35,0.0 +21156,32,32,16,0.0 +21156,58,13.25,20,0.0 +21156,48,12.75,44,0.0 +21156,2,19,4,0.0 +21156,15,15.5,6,0.0 +21156,60,34,37,0.0 +21156,26,31.23,4,0.0 +21156,22,21,26,0.0 +21157,76,18,15,0.0 +21157,63,43.9,12,0.0 +21157,30,25.89,43,0.0 +21157,10,31,38,0.0 +21157,34,14,42,0.0 +21157,4,22,10,0.0 +21157,35,18,42,0.0 +21157,8,40,36,0.0 +21157,38,263.5,20,0.0 +21157,74,10,26,0.0 +21157,37,26,17,0.0 +21157,55,24,23,0.0 +21157,3,10,29,0.0 +21157,68,12.5,31,0.0 +21157,7,30,13,0.0 +21157,28,45.6,22,0.0 +21157,1,18,49,0.0 +21157,32,32,4,0.0 +21157,71,21.5,50,0.0 +21157,77,13,12,0.0 +21157,16,17.45,21,0.0 +21157,54,7.45,8,0.0 +21157,41,9.65,26,0.0 +21157,33,2.5,13,0.0 +21157,23,9,25,0.0 +21157,60,34,46,0.0 +21157,48,12.75,15,0.0 +21157,39,18,42,0.0 +21157,61,28.5,50,0.0 +21158,26,31.23,21,0.0 +21158,2,19,45,0.0 +21158,57,19.5,35,0.0 +21158,70,15,32,0.0 +21158,38,263.5,41,0.0 +21158,22,21,30,0.0 +21158,65,21.05,38,0.0 +21158,77,13,7,0.0 +21158,12,38,26,0.0 +21158,1,18,6,0.0 +21158,34,14,38,0.0 +21158,47,9.5,44,0.0 +21158,36,19,31,0.0 +21158,53,32.8,3,0.0 +21158,5,21.35,10,0.0 +21158,60,34,24,0.0 +21158,50,16.25,41,0.0 +21158,76,18,16,0.0 +21158,3,10,1,0.0 +21158,14,23.25,14,0.0 +21158,48,12.75,12,0.0 +21158,24,4.5,50,0.0 +21158,39,18,45,0.0 +21158,46,12,23,0.0 +21158,56,38,27,0.0 +21158,32,32,44,0.0 +21158,61,28.5,8,0.0 +21158,64,33.25,9,0.0 +21158,15,15.5,12,0.0 +21158,37,26,29,0.0 +21158,30,25.89,16,0.0 +21158,4,22,28,0.0 +21158,74,10,43,0.0 +21158,20,81,26,0.0 +21158,68,12.5,40,0.0 +21158,8,40,20,0.0 +21158,35,18,37,0.0 +21158,25,14,20,0.0 +21158,21,10,7,0.0 +21158,7,30,34,0.0 +21158,13,6,33,0.0 +21158,72,34.8,17,0.0 +21158,9,97,49,0.0 +21158,11,21,50,0.0 +21158,59,55,5,0.0 +21158,55,24,20,0.0 +21158,19,9.2,18,0.0 +21158,23,9,7,0.0 +21158,49,20,26,0.0 +21159,72,34.8,41,0.0 +21159,75,7.75,49,0.0 +21159,69,36,39,0.0 +21159,24,4.5,15,0.0 +21159,33,2.5,43,0.0 +21159,74,10,17,0.0 +21159,37,26,50,0.0 +21159,56,38,47,0.0 +21159,65,21.05,38,0.0 +21159,68,12.5,11,0.0 +21159,17,39,36,0.0 +21159,73,15,22,0.0 +21159,23,9,24,0.0 +21159,4,22,36,0.0 +21159,62,49.3,1,0.0 +21159,30,25.89,17,0.0 +21159,12,38,22,0.0 +21159,77,13,17,0.0 +21159,22,21,4,0.0 +21159,15,15.5,49,0.0 +21159,28,45.6,30,0.0 +21160,12,38,46,0.0 +21160,44,19.45,14,0.0 +21160,53,32.8,17,0.0 +21160,36,19,37,0.0 +21160,5,21.35,5,0.0 +21160,19,9.2,42,0.0 +21160,63,43.9,14,0.0 +21160,35,18,14,0.0 +21160,29,123.79,24,0.0 +21160,59,55,21,0.0 +21160,40,18.4,29,0.0 +21160,74,10,49,0.0 +21160,27,43.9,25,0.0 +21160,20,81,29,0.0 +21160,46,12,21,0.0 +21160,13,6,31,0.0 +21160,28,45.6,26,0.0 +21160,45,9.5,21,0.0 +21160,25,14,18,0.0 +21160,48,12.75,28,0.0 +21160,4,22,46,0.0 +21160,60,34,11,0.0 +21160,56,38,38,0.0 +21160,67,14,36,0.0 +21160,10,31,39,0.0 +21160,37,26,39,0.0 +21160,16,17.45,42,0.0 +21160,77,13,30,0.0 +21160,58,13.25,28,0.0 +21160,50,16.25,11,0.0 +21160,72,34.8,50,0.0 +21160,54,7.45,6,0.0 +21160,39,18,33,0.0 +21160,9,97,28,0.0 +21160,57,19.5,47,0.0 +21160,15,15.5,48,0.0 +21160,6,25,40,0.0 +21160,76,18,34,0.0 +21160,47,9.5,35,0.0 +21160,23,9,40,0.0 +21160,34,14,23,0.0 +21160,52,7,45,0.0 +21160,17,39,40,0.0 +21160,26,31.23,17,0.0 +21160,31,12.5,40,0.0 +21160,2,19,20,0.0 +21161,62,49.3,41,0.0 +21161,57,19.5,8,0.0 +21161,28,45.6,30,0.0 +21161,33,2.5,26,0.0 +21161,75,7.75,37,0.0 +21161,3,10,35,0.0 +21161,6,25,1,0.0 +21161,73,15,11,0.0 +21161,26,31.23,20,0.0 +21161,59,55,13,0.0 +21161,21,10,8,0.0 +21161,64,33.25,44,0.0 +21161,70,15,18,0.0 +21161,35,18,38,0.0 +21161,2,19,5,0.0 +21161,61,28.5,8,0.0 +21161,52,7,38,0.0 +21161,11,21,50,0.0 +21161,58,13.25,10,0.0 +21161,77,13,46,0.0 +21161,31,12.5,40,0.0 +21161,24,4.5,14,0.0 +21161,17,39,44,0.0 +21161,4,22,11,0.0 +21161,32,32,49,0.0 +21161,39,18,16,0.0 +21161,5,21.35,4,0.0 +21161,25,14,33,0.0 +21161,76,18,32,0.0 +21161,49,20,40,0.0 +21161,53,32.8,1,0.0 +21161,46,12,6,0.0 +21161,23,9,38,0.0 +21161,8,40,2,0.0 +21161,41,9.65,12,0.0 +21161,74,10,12,0.0 +21161,48,12.75,5,0.0 +21161,56,38,47,0.0 +21161,38,263.5,25,0.0 +21161,19,9.2,32,0.0 +21161,47,9.5,35,0.0 +21161,27,43.9,5,0.0 +21161,12,38,5,0.0 +21161,14,23.25,9,0.0 +21161,29,123.79,2,0.0 +21161,66,17,18,0.0 +21161,42,14,25,0.0 +21161,18,62.5,38,0.0 +21161,16,17.45,50,0.0 +21161,72,34.8,27,0.0 +21161,9,97,6,0.0 +21161,34,14,24,0.0 +21161,63,43.9,10,0.0 +21161,65,21.05,16,0.0 +21161,50,16.25,25,0.0 +21161,55,24,46,0.0 +21161,20,81,31,0.0 +21161,67,14,12,0.0 +21161,37,26,24,0.0 +21161,30,25.89,39,0.0 +21161,51,53,32,0.0 +21161,44,19.45,7,0.0 +21161,13,6,20,0.0 +21161,71,21.5,27,0.0 +21162,49,20,46,0.0 +21162,29,123.79,1,0.0 +21162,41,9.65,22,0.0 +21162,60,34,29,0.0 +21162,25,14,9,0.0 +21162,1,18,26,0.0 +21162,70,15,13,0.0 +21162,33,2.5,43,0.0 +21162,43,46,12,0.0 +21162,53,32.8,49,0.0 +21162,37,26,5,0.0 +21162,67,14,33,0.0 +21162,28,45.6,47,0.0 +21162,24,4.5,34,0.0 +21162,40,18.4,41,0.0 +21162,27,43.9,44,0.0 +21162,73,15,19,0.0 +21162,68,12.5,39,0.0 +21162,14,23.25,36,0.0 +21162,54,7.45,40,0.0 +21162,44,19.45,22,0.0 +21162,18,62.5,22,0.0 +21162,59,55,21,0.0 +21162,21,10,8,0.0 +21162,2,19,1,0.0 +21162,15,15.5,7,0.0 +21162,34,14,48,0.0 +21162,47,9.5,25,0.0 +21162,19,9.2,7,0.0 +21162,32,32,44,0.0 +21162,75,7.75,37,0.0 +21163,48,12.75,34,0.0 +21163,12,38,6,0.0 +21163,30,25.89,22,0.0 +21163,11,21,40,0.0 +21163,55,24,49,0.0 +21163,60,34,16,0.0 +21163,50,16.25,8,0.0 +21163,34,14,3,0.0 +21163,26,31.23,1,0.0 +21163,14,23.25,23,0.0 +21163,68,12.5,12,0.0 +21163,24,4.5,22,0.0 +21163,70,15,40,0.0 +21163,4,22,4,0.0 +21163,41,9.65,7,0.0 +21163,42,14,31,0.0 +21163,49,20,33,0.0 +21163,76,18,50,0.0 +21163,52,7,41,0.0 +21163,47,9.5,35,0.0 +21163,39,18,18,0.0 +21163,19,9.2,21,0.0 +21163,43,46,18,0.0 +21163,63,43.9,7,0.0 +21163,54,7.45,15,0.0 +21163,77,13,8,0.0 +21163,44,19.45,22,0.0 +21163,53,32.8,28,0.0 +21163,25,14,2,0.0 +21163,35,18,44,0.0 +21163,28,45.6,37,0.0 +21163,20,81,29,0.0 +21163,23,9,7,0.0 +21163,3,10,34,0.0 +21163,22,21,3,0.0 +21163,33,2.5,27,0.0 +21163,72,34.8,18,0.0 +21163,32,32,9,0.0 +21163,56,38,30,0.0 +21163,65,21.05,18,0.0 +21163,21,10,44,0.0 +21163,46,12,27,0.0 +21163,6,25,16,0.0 +21163,73,15,10,0.0 +21163,7,30,43,0.0 +21163,27,43.9,26,0.0 +21163,13,6,7,0.0 +21163,38,263.5,20,0.0 +21163,57,19.5,12,0.0 +21163,59,55,34,0.0 +21163,74,10,6,0.0 +21163,29,123.79,47,0.0 +21163,64,33.25,12,0.0 +21163,15,15.5,37,0.0 +21163,5,21.35,4,0.0 +21163,75,7.75,18,0.0 +21163,45,9.5,41,0.0 +21163,37,26,26,0.0 +21163,2,19,15,0.0 +21163,58,13.25,2,0.0 +21163,9,97,27,0.0 +21164,47,9.5,29,0.0 +21164,74,10,9,0.0 +21164,35,18,13,0.0 +21164,27,43.9,16,0.0 +21164,48,12.75,31,0.0 +21164,7,30,15,0.0 +21164,21,10,9,0.0 +21164,49,20,20,0.0 +21164,67,14,5,0.0 +21164,1,18,36,0.0 +21164,72,34.8,9,0.0 +21164,10,31,17,0.0 +21164,6,25,2,0.0 +21164,41,9.65,26,0.0 +21164,25,14,34,0.0 +21164,40,18.4,31,0.0 +21164,70,15,22,0.0 +21164,32,32,44,0.0 +21164,38,263.5,36,0.0 +21164,16,17.45,2,0.0 +21164,8,40,25,0.0 +21164,69,36,11,0.0 +21164,28,45.6,31,0.0 +21164,63,43.9,42,0.0 +21164,14,23.25,45,0.0 +21164,36,19,43,0.0 +21164,77,13,18,0.0 +21164,52,7,46,0.0 +21164,15,15.5,17,0.0 +21164,31,12.5,26,0.0 +21164,60,34,45,0.0 +21164,26,31.23,15,0.0 +21164,24,4.5,1,0.0 +21164,11,21,50,0.0 +21164,50,16.25,27,0.0 +21164,18,62.5,33,0.0 +21164,75,7.75,12,0.0 +21164,34,14,29,0.0 +21164,29,123.79,42,0.0 +21164,53,32.8,36,0.0 +21164,2,19,18,0.0 +21164,37,26,46,0.0 +21164,13,6,43,0.0 +21164,3,10,23,0.0 +21164,57,19.5,33,0.0 +21164,76,18,29,0.0 +21164,62,49.3,27,0.0 +21164,22,21,50,0.0 +21164,55,24,5,0.0 +21164,12,38,12,0.0 +21164,5,21.35,13,0.0 +21164,61,28.5,39,0.0 +21164,54,7.45,17,0.0 +21164,19,9.2,19,0.0 +21164,58,13.25,27,0.0 +21164,43,46,46,0.0 +21164,45,9.5,22,0.0 +21164,71,21.5,18,0.0 +21164,39,18,12,0.0 +21164,64,33.25,3,0.0 +21164,59,55,19,0.0 +21165,39,18,4,0.0 +21165,4,22,40,0.0 +21165,27,43.9,27,0.0 +21165,24,4.5,29,0.0 +21165,74,10,31,0.0 +21166,2,19,20,0.0 +21166,65,21.05,33,0.0 +21166,41,9.65,1,0.0 +21166,30,25.89,30,0.0 +21166,22,21,29,0.0 +21166,37,26,49,0.0 +21166,44,19.45,28,0.0 +21166,75,7.75,37,0.0 +21166,62,49.3,9,0.0 +21166,28,45.6,2,0.0 +21166,48,12.75,14,0.0 +21166,3,10,4,0.0 +21166,5,21.35,16,0.0 +21166,11,21,27,0.0 +21166,40,18.4,27,0.0 +21166,26,31.23,45,0.0 +21166,8,40,2,0.0 +21166,14,23.25,23,0.0 +21166,27,43.9,42,0.0 +21166,7,30,31,0.0 +21166,6,25,4,0.0 +21166,10,31,29,0.0 +21166,20,81,7,0.0 +21166,54,7.45,18,0.0 +21166,1,18,39,0.0 +21166,70,15,39,0.0 +21166,18,62.5,26,0.0 +21166,25,14,8,0.0 +21166,61,28.5,15,0.0 +21166,12,38,28,0.0 +21166,52,7,37,0.0 +21166,50,16.25,42,0.0 +21166,42,14,7,0.0 +21166,34,14,35,0.0 +21166,49,20,21,0.0 +21166,56,38,26,0.0 +21166,67,14,16,0.0 +21166,66,17,26,0.0 +21166,13,6,23,0.0 +21166,15,15.5,50,0.0 +21167,13,6,9,0.0 +21167,21,10,21,0.0 +21167,30,25.89,42,0.0 +21167,34,14,35,0.0 +21167,65,21.05,36,0.0 +21167,1,18,17,0.0 +21167,11,21,4,0.0 +21167,18,62.5,36,0.0 +21167,56,38,18,0.0 +21167,15,15.5,3,0.0 +21167,64,33.25,39,0.0 +21167,75,7.75,40,0.0 +21167,41,9.65,11,0.0 +21167,53,32.8,5,0.0 +21167,27,43.9,46,0.0 +21167,40,18.4,23,0.0 +21167,55,24,24,0.0 +21167,45,9.5,10,0.0 +21167,4,22,4,0.0 +21167,50,16.25,10,0.0 +21167,6,25,1,0.0 +21168,17,39,28,0.0 +21168,5,21.35,33,0.0 +21168,75,7.75,20,0.0 +21168,76,18,7,0.0 +21168,34,14,4,0.0 +21168,35,18,46,0.0 +21168,27,43.9,38,0.0 +21168,51,53,24,0.0 +21168,20,81,37,0.0 +21168,69,36,20,0.0 +21168,54,7.45,49,0.0 +21168,18,62.5,3,0.0 +21168,70,15,41,0.0 +21168,12,38,47,0.0 +21168,24,4.5,19,0.0 +21168,77,13,29,0.0 +21168,28,45.6,36,0.0 +21168,14,23.25,27,0.0 +21168,64,33.25,4,0.0 +21168,44,19.45,13,0.0 +21168,25,14,36,0.0 +21168,41,9.65,36,0.0 +21168,1,18,11,0.0 +21168,13,6,44,0.0 +21168,47,9.5,25,0.0 +21168,10,31,31,0.0 +21168,48,12.75,2,0.0 +21168,31,12.5,15,0.0 +21169,6,25,46,0.0 +21169,48,12.75,14,0.0 +21169,76,18,44,0.0 +21169,28,45.6,31,0.0 +21169,5,21.35,39,0.0 +21169,74,10,20,0.0 +21169,66,17,11,0.0 +21169,7,30,26,0.0 +21169,26,31.23,32,0.0 +21169,8,40,24,0.0 +21169,22,21,46,0.0 +21169,27,43.9,31,0.0 +21169,72,34.8,7,0.0 +21169,44,19.45,22,0.0 +21169,64,33.25,8,0.0 +21169,17,39,2,0.0 +21169,37,26,15,0.0 +21169,62,49.3,48,0.0 +21169,68,12.5,40,0.0 +21169,33,2.5,37,0.0 +21169,36,19,47,0.0 +21169,40,18.4,29,0.0 +21169,51,53,4,0.0 +21169,19,9.2,5,0.0 +21169,39,18,13,0.0 +21169,47,9.5,15,0.0 +21169,38,263.5,40,0.0 +21169,63,43.9,7,0.0 +21169,75,7.75,24,0.0 +21169,25,14,45,0.0 +21169,23,9,29,0.0 +21169,3,10,27,0.0 +21169,77,13,50,0.0 +21169,35,18,39,0.0 +21169,34,14,2,0.0 +21169,29,123.79,32,0.0 +21169,55,24,42,0.0 +21169,20,81,1,0.0 +21169,41,9.65,5,0.0 +21169,32,32,31,0.0 +21169,73,15,41,0.0 +21169,13,6,15,0.0 +21169,18,62.5,8,0.0 +21169,49,20,8,0.0 +21169,2,19,49,0.0 +21169,52,7,14,0.0 +21169,56,38,5,0.0 +21169,71,21.5,32,0.0 +21169,50,16.25,32,0.0 +21169,15,15.5,46,0.0 +21169,57,19.5,35,0.0 +21169,12,38,7,0.0 +21169,11,21,44,0.0 +21169,59,55,50,0.0 +21169,42,14,31,0.0 +21169,60,34,7,0.0 +21169,31,12.5,41,0.0 +21169,45,9.5,23,0.0 +21169,61,28.5,33,0.0 +21169,67,14,20,0.0 +21169,53,32.8,33,0.0 +21169,14,23.25,46,0.0 +21169,69,36,32,0.0 +21169,24,4.5,49,0.0 +21169,58,13.25,45,0.0 +21169,21,10,50,0.0 +21169,16,17.45,24,0.0 +21169,43,46,50,0.0 +21169,46,12,5,0.0 +21169,9,97,15,0.0 +21169,30,25.89,28,0.0 +21169,65,21.05,37,0.0 +21169,54,7.45,22,0.0 +21169,4,22,38,0.0 +21170,6,25,49,0.0 +21170,36,19,20,0.0 +21170,13,6,16,0.0 +21170,46,12,37,0.0 +21170,22,21,12,0.0 +21170,2,19,2,0.0 +21170,21,10,10,0.0 +21170,58,13.25,36,0.0 +21170,48,12.75,38,0.0 +21170,31,12.5,16,0.0 +21170,30,25.89,18,0.0 +21170,38,263.5,6,0.0 +21170,49,20,41,0.0 +21171,36,19,49,0.0 +21171,4,22,27,0.0 +21171,38,263.5,25,0.0 +21171,32,32,40,0.0 +21171,62,49.3,7,0.0 +21171,30,25.89,48,0.0 +21171,44,19.45,9,0.0 +21171,31,12.5,21,0.0 +21171,76,18,1,0.0 +21171,7,30,36,0.0 +21171,71,21.5,3,0.0 +21171,39,18,49,0.0 +21171,41,9.65,7,0.0 +21171,17,39,42,0.0 +21171,18,62.5,7,0.0 +21171,6,25,32,0.0 +21171,43,46,19,0.0 +21171,58,13.25,19,0.0 +21171,37,26,48,0.0 +21171,59,55,50,0.0 +21171,61,28.5,49,0.0 +21171,2,19,21,0.0 +21171,70,15,32,0.0 +21171,35,18,44,0.0 +21171,40,18.4,39,0.0 +21171,74,10,34,0.0 +21171,22,21,6,0.0 +21171,75,7.75,40,0.0 +21171,55,24,25,0.0 +21171,1,18,32,0.0 +21171,68,12.5,47,0.0 +21171,45,9.5,44,0.0 +21171,27,43.9,32,0.0 +21171,48,12.75,20,0.0 +21171,66,17,50,0.0 +21171,34,14,33,0.0 +21171,15,15.5,6,0.0 +21171,29,123.79,3,0.0 +21171,51,53,17,0.0 +21171,64,33.25,48,0.0 +21171,69,36,43,0.0 +21171,12,38,11,0.0 +21171,26,31.23,27,0.0 +21171,50,16.25,47,0.0 +21171,23,9,41,0.0 +21171,65,21.05,11,0.0 +21171,28,45.6,34,0.0 +21171,49,20,34,0.0 +21171,24,4.5,46,0.0 +21171,8,40,15,0.0 +21171,60,34,38,0.0 +21171,54,7.45,30,0.0 +21171,13,6,35,0.0 +21171,9,97,39,0.0 +21172,75,7.75,7,0.0 +21172,22,21,48,0.0 +21172,39,18,43,0.0 +21172,29,123.79,36,0.0 +21172,65,21.05,42,0.0 +21172,50,16.25,23,0.0 +21172,57,19.5,14,0.0 +21172,30,25.89,17,0.0 +21172,41,9.65,3,0.0 +21172,27,43.9,50,0.0 +21172,48,12.75,1,0.0 +21172,19,9.2,11,0.0 +21173,27,43.9,28,0.0 +21173,41,9.65,26,0.0 +21173,20,81,7,0.0 +21173,63,43.9,37,0.0 +21173,55,24,18,0.0 +21173,10,31,18,0.0 +21173,2,19,9,0.0 +21173,22,21,18,0.0 +21173,7,30,47,0.0 +21173,12,38,33,0.0 +21173,74,10,42,0.0 +21173,64,33.25,41,0.0 +21173,47,9.5,9,0.0 +21173,13,6,10,0.0 +21173,35,18,7,0.0 +21173,33,2.5,45,0.0 +21173,39,18,1,0.0 +21173,46,12,44,0.0 +21173,31,12.5,49,0.0 +21173,66,17,9,0.0 +21173,49,20,41,0.0 +21173,56,38,15,0.0 +21173,48,12.75,42,0.0 +21173,1,18,6,0.0 +21173,23,9,22,0.0 +21173,21,10,48,0.0 +21173,62,49.3,27,0.0 +21173,28,45.6,33,0.0 +21173,24,4.5,27,0.0 +21173,54,7.45,35,0.0 +21173,70,15,18,0.0 +21173,68,12.5,50,0.0 +21173,11,21,47,0.0 +21173,25,14,22,0.0 +21173,6,25,26,0.0 +21173,5,21.35,18,0.0 +21173,57,19.5,30,0.0 +21173,3,10,5,0.0 +21173,61,28.5,40,0.0 +21173,4,22,38,0.0 +21173,30,25.89,21,0.0 +21173,43,46,14,0.0 +21173,58,13.25,42,0.0 +21173,29,123.79,9,0.0 +21173,19,9.2,46,0.0 +21173,53,32.8,14,0.0 +21173,67,14,14,0.0 +21174,77,13,8,0.0 +21174,54,7.45,26,0.0 +21174,40,18.4,7,0.0 +21174,4,22,30,0.0 +21174,65,21.05,30,0.0 +21174,67,14,40,0.0 +21174,61,28.5,46,0.0 +21174,42,14,8,0.0 +21174,72,34.8,9,0.0 +21174,32,32,5,0.0 +21174,14,23.25,3,0.0 +21175,26,31.23,30,0.0 +21175,15,15.5,29,0.0 +21176,68,12.5,8,0.0 +21176,53,32.8,3,0.0 +21176,26,31.23,47,0.0 +21176,64,33.25,37,0.0 +21176,25,14,16,0.0 +21176,34,14,43,0.0 +21176,27,43.9,31,0.0 +21176,38,263.5,19,0.0 +21176,50,16.25,22,0.0 +21176,17,39,25,0.0 +21176,59,55,25,0.0 +21176,69,36,19,0.0 +21176,6,25,34,0.0 +21176,1,18,9,0.0 +21176,30,25.89,28,0.0 +21176,15,15.5,17,0.0 +21177,61,28.5,39,0.0 +21177,45,9.5,14,0.0 +21177,17,39,32,0.0 +21177,5,21.35,23,0.0 +21177,47,9.5,37,0.0 +21177,10,31,36,0.0 +21177,62,49.3,15,0.0 +21177,31,12.5,1,0.0 +21177,54,7.45,36,0.0 +21177,60,34,4,0.0 +21177,49,20,9,0.0 +21177,6,25,38,0.0 +21177,57,19.5,23,0.0 +21177,4,22,19,0.0 +21177,38,263.5,10,0.0 +21177,43,46,13,0.0 +21177,3,10,12,0.0 +21177,66,17,39,0.0 +21177,73,15,29,0.0 +21177,69,36,6,0.0 +21177,51,53,45,0.0 +21177,22,21,28,0.0 +21177,59,55,31,0.0 +21177,46,12,43,0.0 +21177,2,19,48,0.0 +21177,30,25.89,32,0.0 +21177,25,14,11,0.0 +21177,65,21.05,16,0.0 +21177,56,38,6,0.0 +21177,70,15,37,0.0 +21177,1,18,16,0.0 +21177,63,43.9,45,0.0 +21177,75,7.75,6,0.0 +21177,37,26,47,0.0 +21177,34,14,25,0.0 +21177,33,2.5,47,0.0 +21177,15,15.5,19,0.0 +21177,42,14,11,0.0 +21177,39,18,40,0.0 +21177,29,123.79,20,0.0 +21177,12,38,28,0.0 +21177,41,9.65,14,0.0 +21177,7,30,32,0.0 +21177,64,33.25,38,0.0 +21177,55,24,2,0.0 +21177,26,31.23,26,0.0 +21177,53,32.8,14,0.0 +21177,32,32,42,0.0 +21177,40,18.4,38,0.0 +21177,27,43.9,2,0.0 +21177,77,13,44,0.0 +21177,74,10,15,0.0 +21177,18,62.5,29,0.0 +21177,23,9,4,0.0 +21177,28,45.6,5,0.0 +21177,35,18,29,0.0 +21177,14,23.25,23,0.0 +21177,48,12.75,38,0.0 +21177,16,17.45,50,0.0 +21177,52,7,41,0.0 +21177,19,9.2,41,0.0 +21177,36,19,18,0.0 +21177,44,19.45,8,0.0 +21177,24,4.5,18,0.0 +21177,76,18,5,0.0 +21177,71,21.5,32,0.0 +21177,11,21,48,0.0 +21177,13,6,5,0.0 +21177,67,14,37,0.0 +21177,72,34.8,42,0.0 +21177,20,81,31,0.0 +21177,9,97,47,0.0 +21177,50,16.25,43,0.0 +21177,68,12.5,48,0.0 +21177,21,10,27,0.0 +21178,50,16.25,47,0.0 +21178,69,36,29,0.0 +21178,34,14,36,0.0 +21178,56,38,35,0.0 +21178,27,43.9,46,0.0 +21178,48,12.75,12,0.0 +21178,46,12,45,0.0 +21178,57,19.5,24,0.0 +21178,14,23.25,41,0.0 +21178,2,19,17,0.0 +21178,40,18.4,6,0.0 +21178,73,15,46,0.0 +21178,60,34,39,0.0 +21178,67,14,23,0.0 +21179,5,21.35,8,0.0 +21179,38,263.5,33,0.0 +21179,35,18,35,0.0 +21179,46,12,36,0.0 +21179,1,18,40,0.0 +21179,39,18,50,0.0 +21179,18,62.5,21,0.0 +21179,3,10,19,0.0 +21179,32,32,50,0.0 +21179,71,21.5,48,0.0 +21179,66,17,30,0.0 +21179,62,49.3,49,0.0 +21180,19,9.2,22,0.0 +21180,26,31.23,42,0.0 +21180,8,40,2,0.0 +21180,5,21.35,34,0.0 +21180,4,22,14,0.0 +21180,52,7,33,0.0 +21180,9,97,50,0.0 +21180,15,15.5,17,0.0 +21180,31,12.5,11,0.0 +21180,77,13,5,0.0 +21180,24,4.5,3,0.0 +21180,33,2.5,38,0.0 +21180,59,55,31,0.0 +21180,18,62.5,41,0.0 +21180,34,14,23,0.0 +21180,61,28.5,26,0.0 +21180,53,32.8,46,0.0 +21180,46,12,19,0.0 +21180,43,46,48,0.0 +21180,70,15,7,0.0 +21180,71,21.5,20,0.0 +21180,35,18,7,0.0 +21180,66,17,41,0.0 +21180,27,43.9,3,0.0 +21180,75,7.75,8,0.0 +21181,55,24,11,0.0 +21181,34,14,7,0.0 +21181,69,36,39,0.0 +21181,18,62.5,4,0.0 +21181,51,53,27,0.0 +21181,71,21.5,5,0.0 +21181,58,13.25,27,0.0 +21181,2,19,40,0.0 +21181,32,32,30,0.0 +21181,20,81,45,0.0 +21181,50,16.25,15,0.0 +21181,48,12.75,20,0.0 +21181,59,55,46,0.0 +21182,28,45.6,16,0.0 +21182,25,14,16,0.0 +21182,75,7.75,6,0.0 +21182,27,43.9,7,0.0 +21182,68,12.5,46,0.0 +21182,16,17.45,14,0.0 +21182,55,24,20,0.0 +21182,8,40,6,0.0 +21182,52,7,29,0.0 +21182,9,97,20,0.0 +21182,5,21.35,47,0.0 +21182,59,55,41,0.0 +21182,56,38,45,0.0 +21182,53,32.8,12,0.0 +21182,49,20,29,0.0 +21182,72,34.8,14,0.0 +21182,74,10,14,0.0 +21182,7,30,1,0.0 +21182,37,26,25,0.0 +21182,57,19.5,14,0.0 +21182,51,53,7,0.0 +21182,31,12.5,24,0.0 +21182,41,9.65,4,0.0 +21182,64,33.25,5,0.0 +21182,42,14,24,0.0 +21182,38,263.5,31,0.0 +21182,6,25,31,0.0 +21182,45,9.5,23,0.0 +21182,13,6,4,0.0 +21182,18,62.5,26,0.0 +21182,46,12,44,0.0 +21182,44,19.45,41,0.0 +21182,23,9,5,0.0 +21182,70,15,45,0.0 +21182,3,10,19,0.0 +21182,21,10,50,0.0 +21182,61,28.5,39,0.0 +21182,26,31.23,49,0.0 +21182,15,15.5,3,0.0 +21182,66,17,3,0.0 +21182,50,16.25,20,0.0 +21182,58,13.25,1,0.0 +21182,77,13,12,0.0 +21182,24,4.5,27,0.0 +21182,10,31,26,0.0 +21182,4,22,38,0.0 +21182,47,9.5,36,0.0 +21182,20,81,22,0.0 +21182,36,19,24,0.0 +21182,48,12.75,37,0.0 +21182,67,14,26,0.0 +21182,32,32,35,0.0 +21183,69,36,27,0.0 +21183,72,34.8,33,0.0 +21183,21,10,15,0.0 +21183,27,43.9,48,0.0 +21183,49,20,6,0.0 +21183,51,53,25,0.0 +21183,19,9.2,11,0.0 +21183,62,49.3,21,0.0 +21183,20,81,22,0.0 +21183,57,19.5,50,0.0 +21183,12,38,41,0.0 +21183,39,18,2,0.0 +21183,44,19.45,3,0.0 +21183,41,9.65,29,0.0 +21183,58,13.25,26,0.0 +21183,47,9.5,16,0.0 +21183,31,12.5,2,0.0 +21183,64,33.25,39,0.0 +21183,25,14,29,0.0 +21183,46,12,45,0.0 +21183,14,23.25,9,0.0 +21183,74,10,3,0.0 +21183,37,26,5,0.0 +21183,53,32.8,6,0.0 +21183,4,22,17,0.0 +21183,7,30,41,0.0 +21183,35,18,43,0.0 +21183,54,7.45,5,0.0 +21183,67,14,41,0.0 +21184,34,14,41,0.0 +21184,21,10,6,0.0 +21184,33,2.5,30,0.0 +21184,55,24,14,0.0 +21184,20,81,27,0.0 +21184,74,10,40,0.0 +21184,62,49.3,19,0.0 +21184,48,12.75,46,0.0 +21184,53,32.8,48,0.0 +21184,28,45.6,44,0.0 +21184,11,21,19,0.0 +21184,75,7.75,28,0.0 +21184,19,9.2,19,0.0 +21184,39,18,21,0.0 +21184,1,18,17,0.0 +21184,36,19,29,0.0 +21184,57,19.5,33,0.0 +21184,13,6,3,0.0 +21184,12,38,44,0.0 +21184,60,34,37,0.0 +21184,68,12.5,38,0.0 +21184,14,23.25,25,0.0 +21184,76,18,31,0.0 +21184,54,7.45,21,0.0 +21184,16,17.45,35,0.0 +21184,38,263.5,24,0.0 +21184,49,20,47,0.0 +21184,18,62.5,44,0.0 +21184,42,14,5,0.0 +21184,8,40,14,0.0 +21184,31,12.5,18,0.0 +21184,77,13,8,0.0 +21184,45,9.5,33,0.0 +21184,51,53,31,0.0 +21184,5,21.35,27,0.0 +21185,40,18.4,49,0.0 +21185,77,13,14,0.0 +21185,38,263.5,28,0.0 +21185,33,2.5,13,0.0 +21185,51,53,5,0.0 +21185,65,21.05,15,0.0 +21185,39,18,50,0.0 +21185,18,62.5,22,0.0 +21185,62,49.3,37,0.0 +21185,55,24,15,0.0 +21185,75,7.75,22,0.0 +21185,34,14,48,0.0 +21185,64,33.25,28,0.0 +21185,23,9,28,0.0 +21185,25,14,47,0.0 +21185,37,26,4,0.0 +21185,45,9.5,19,0.0 +21185,2,19,36,0.0 +21185,11,21,8,0.0 +21185,54,7.45,18,0.0 +21185,24,4.5,49,0.0 +21185,12,38,29,0.0 +21185,20,81,47,0.0 +21185,15,15.5,34,0.0 +21185,57,19.5,32,0.0 +21185,73,15,50,0.0 +21185,74,10,2,0.0 +21185,76,18,47,0.0 +21185,5,21.35,25,0.0 +21185,31,12.5,21,0.0 +21185,56,38,17,0.0 +21185,42,14,44,0.0 +21185,59,55,39,0.0 +21185,70,15,10,0.0 +21185,72,34.8,40,0.0 +21185,63,43.9,7,0.0 +21185,27,43.9,28,0.0 +21185,21,10,43,0.0 +21185,53,32.8,16,0.0 +21185,29,123.79,15,0.0 +21185,7,30,9,0.0 +21185,49,20,25,0.0 +21185,46,12,45,0.0 +21185,26,31.23,20,0.0 +21185,22,21,36,0.0 +21185,28,45.6,29,0.0 +21185,48,12.75,35,0.0 +21185,32,32,41,0.0 +21185,13,6,47,0.0 +21185,4,22,23,0.0 +21185,66,17,39,0.0 +21185,10,31,46,0.0 +21185,61,28.5,28,0.0 +21185,36,19,18,0.0 +21185,50,16.25,17,0.0 +21185,14,23.25,23,0.0 +21185,3,10,29,0.0 +21185,41,9.65,29,0.0 +21185,52,7,38,0.0 +21185,67,14,17,0.0 +21185,47,9.5,12,0.0 +21185,68,12.5,1,0.0 +21185,44,19.45,39,0.0 +21185,58,13.25,30,0.0 +21185,19,9.2,14,0.0 +21185,1,18,41,0.0 +21186,74,10,42,0.0 +21186,26,31.23,26,0.0 +21186,7,30,48,0.0 +21186,39,18,25,0.0 +21186,59,55,14,0.0 +21186,16,17.45,31,0.0 +21186,51,53,4,0.0 +21186,17,39,3,0.0 +21186,73,15,26,0.0 +21186,8,40,44,0.0 +21186,49,20,40,0.0 +21186,53,32.8,39,0.0 +21186,76,18,16,0.0 +21186,64,33.25,18,0.0 +21186,30,25.89,37,0.0 +21186,3,10,17,0.0 +21186,24,4.5,18,0.0 +21186,54,7.45,1,0.0 +21186,34,14,46,0.0 +21186,11,21,5,0.0 +21186,18,62.5,48,0.0 +21186,37,26,9,0.0 +21186,65,21.05,24,0.0 +21186,67,14,34,0.0 +21186,5,21.35,26,0.0 +21186,43,46,49,0.0 +21186,32,32,19,0.0 +21186,61,28.5,30,0.0 +21186,41,9.65,4,0.0 +21186,2,19,7,0.0 +21186,33,2.5,8,0.0 +21186,12,38,16,0.0 +21186,47,9.5,26,0.0 +21186,69,36,23,0.0 +21186,68,12.5,21,0.0 +21186,63,43.9,43,0.0 +21186,4,22,2,0.0 +21186,23,9,27,0.0 +21186,20,81,22,0.0 +21186,44,19.45,40,0.0 +21187,37,26,13,0.0 +21188,52,7,13,0.0 +21188,1,18,17,0.0 +21188,29,123.79,38,0.0 +21188,38,263.5,1,0.0 +21188,62,49.3,26,0.0 +21188,75,7.75,43,0.0 +21188,5,21.35,46,0.0 +21188,33,2.5,35,0.0 +21188,48,12.75,34,0.0 +21188,21,10,18,0.0 +21188,69,36,28,0.0 +21188,8,40,43,0.0 +21188,7,30,25,0.0 +21188,14,23.25,43,0.0 +21188,20,81,42,0.0 +21188,2,19,49,0.0 +21188,65,21.05,29,0.0 +21188,60,34,25,0.0 +21188,49,20,25,0.0 +21188,59,55,20,0.0 +21188,15,15.5,6,0.0 +21188,26,31.23,1,0.0 +21188,30,25.89,30,0.0 +21188,77,13,46,0.0 +21188,63,43.9,27,0.0 +21188,13,6,30,0.0 +21188,22,21,48,0.0 +21188,54,7.45,34,0.0 +21188,17,39,18,0.0 +21188,47,9.5,47,0.0 +21188,44,19.45,10,0.0 +21188,9,97,8,0.0 +21188,43,46,15,0.0 +21188,23,9,10,0.0 +21188,61,28.5,7,0.0 +21188,35,18,30,0.0 +21188,4,22,49,0.0 +21188,41,9.65,40,0.0 +21188,66,17,3,0.0 +21188,70,15,30,0.0 +21188,74,10,24,0.0 +21188,25,14,15,0.0 +21188,40,18.4,23,0.0 +21188,24,4.5,31,0.0 +21188,31,12.5,25,0.0 +21188,72,34.8,42,0.0 +21188,18,62.5,27,0.0 +21189,45,9.5,22,0.0 +21189,62,49.3,27,0.0 +21189,11,21,36,0.0 +21189,35,18,6,0.0 +21189,44,19.45,32,0.0 +21189,50,16.25,35,0.0 +21189,72,34.8,7,0.0 +21189,76,18,7,0.0 +21189,38,263.5,35,0.0 +21189,24,4.5,46,0.0 +21189,3,10,43,0.0 +21189,36,19,38,0.0 +21189,26,31.23,10,0.0 +21189,32,32,40,0.0 +21189,20,81,36,0.0 +21189,66,17,14,0.0 +21189,60,34,43,0.0 +21189,49,20,40,0.0 +21189,53,32.8,9,0.0 +21189,74,10,22,0.0 +21189,9,97,31,0.0 +21189,55,24,3,0.0 +21189,68,12.5,21,0.0 +21189,7,30,20,0.0 +21189,69,36,44,0.0 +21189,30,25.89,12,0.0 +21189,51,53,45,0.0 +21189,4,22,22,0.0 +21189,21,10,41,0.0 +21189,12,38,19,0.0 +21189,14,23.25,18,0.0 +21189,46,12,38,0.0 +21189,73,15,2,0.0 +21189,77,13,10,0.0 +21189,8,40,26,0.0 +21189,5,21.35,14,0.0 +21189,71,21.5,40,0.0 +21189,58,13.25,16,0.0 +21189,25,14,9,0.0 +21189,29,123.79,24,0.0 +21189,56,38,36,0.0 +21189,57,19.5,2,0.0 +21189,39,18,19,0.0 +21189,17,39,4,0.0 +21189,22,21,2,0.0 +21189,16,17.45,29,0.0 +21189,52,7,10,0.0 +21189,40,18.4,8,0.0 +21189,28,45.6,27,0.0 +21189,31,12.5,33,0.0 +21189,10,31,13,0.0 +21189,23,9,40,0.0 +21190,72,34.8,42,0.0 +21190,49,20,18,0.0 +21190,69,36,23,0.0 +21190,30,25.89,18,0.0 +21190,32,32,37,0.0 +21190,23,9,48,0.0 +21190,77,13,17,0.0 +21190,60,34,23,0.0 +21190,50,16.25,4,0.0 +21190,67,14,31,0.0 +21190,51,53,2,0.0 +21190,10,31,5,0.0 +21190,54,7.45,1,0.0 +21190,29,123.79,28,0.0 +21190,39,18,10,0.0 +21190,35,18,1,0.0 +21190,59,55,28,0.0 +21190,26,31.23,21,0.0 +21190,63,43.9,45,0.0 +21190,3,10,1,0.0 +21190,5,21.35,9,0.0 +21190,70,15,23,0.0 +21190,53,32.8,24,0.0 +21190,55,24,18,0.0 +21190,28,45.6,19,0.0 +21190,19,9.2,15,0.0 +21190,27,43.9,22,0.0 +21190,25,14,26,0.0 +21190,43,46,19,0.0 +21190,24,4.5,34,0.0 +21190,4,22,21,0.0 +21190,73,15,37,0.0 +21190,20,81,12,0.0 +21190,33,2.5,8,0.0 +21190,22,21,3,0.0 +21191,30,25.89,5,0.0 +21191,21,10,17,0.0 +21191,77,13,32,0.0 +21191,19,9.2,48,0.0 +21191,37,26,29,0.0 +21192,66,17,44,0.0 +21192,29,123.79,16,0.0 +21192,18,62.5,6,0.0 +21192,31,12.5,34,0.0 +21192,41,9.65,12,0.0 +21192,63,43.9,50,0.0 +21192,19,9.2,19,0.0 +21193,67,14,22,0.0 +21193,61,28.5,21,0.0 +21193,26,31.23,38,0.0 +21193,39,18,6,0.0 +21193,56,38,43,0.0 +21193,52,7,18,0.0 +21193,48,12.75,11,0.0 +21193,49,20,12,0.0 +21193,19,9.2,40,0.0 +21193,42,14,7,0.0 +21193,6,25,10,0.0 +21193,58,13.25,48,0.0 +21193,1,18,27,0.0 +21193,50,16.25,31,0.0 +21193,71,21.5,17,0.0 +21193,24,4.5,35,0.0 +21193,76,18,21,0.0 +21193,33,2.5,19,0.0 +21193,73,15,10,0.0 +21193,70,15,40,0.0 +21193,72,34.8,50,0.0 +21193,68,12.5,28,0.0 +21193,37,26,5,0.0 +21193,12,38,28,0.0 +21193,60,34,10,0.0 +21193,63,43.9,26,0.0 +21193,14,23.25,42,0.0 +21193,20,81,30,0.0 +21193,7,30,45,0.0 +21193,34,14,15,0.0 +21193,44,19.45,13,0.0 +21193,54,7.45,11,0.0 +21193,22,21,50,0.0 +21193,36,19,47,0.0 +21193,45,9.5,48,0.0 +21193,47,9.5,34,0.0 +21193,41,9.65,33,0.0 +21193,30,25.89,20,0.0 +21193,74,10,11,0.0 +21194,1,18,28,0.0 +21194,53,32.8,31,0.0 +21194,49,20,28,0.0 +21194,30,25.89,16,0.0 +21194,37,26,30,0.0 +21194,59,55,45,0.0 +21194,11,21,18,0.0 +21194,8,40,37,0.0 +21194,40,18.4,19,0.0 +21194,56,38,47,0.0 +21194,64,33.25,3,0.0 +21194,69,36,31,0.0 +21194,72,34.8,20,0.0 +21194,5,21.35,24,0.0 +21194,13,6,47,0.0 +21194,22,21,17,0.0 +21194,39,18,42,0.0 +21194,74,10,10,0.0 +21194,18,62.5,45,0.0 +21194,25,14,34,0.0 +21194,24,4.5,10,0.0 +21194,46,12,33,0.0 +21194,16,17.45,50,0.0 +21195,2,19,18,0.0 +21195,49,20,20,0.0 +21195,45,9.5,38,0.0 +21195,5,21.35,47,0.0 +21195,22,21,50,0.0 +21195,41,9.65,4,0.0 +21195,33,2.5,22,0.0 +21195,35,18,47,0.0 +21195,21,10,39,0.0 +21195,4,22,11,0.0 +21195,23,9,28,0.0 +21195,9,97,46,0.0 +21196,39,18,40,0.0 +21196,66,17,6,0.0 +21196,68,12.5,9,0.0 +21196,77,13,10,0.0 +21196,45,9.5,33,0.0 +21196,13,6,45,0.0 +21196,71,21.5,19,0.0 +21196,44,19.45,19,0.0 +21196,35,18,7,0.0 +21196,17,39,46,0.0 +21196,19,9.2,7,0.0 +21196,36,19,15,0.0 +21196,50,16.25,47,0.0 +21196,12,38,46,0.0 +21196,65,21.05,22,0.0 +21196,48,12.75,46,0.0 +21196,73,15,4,0.0 +21196,32,32,5,0.0 +21196,4,22,22,0.0 +21196,1,18,38,0.0 +21196,55,24,44,0.0 +21196,61,28.5,17,0.0 +21196,8,40,12,0.0 +21196,46,12,35,0.0 +21196,29,123.79,31,0.0 +21196,53,32.8,10,0.0 +21196,57,19.5,44,0.0 +21196,62,49.3,30,0.0 +21196,24,4.5,21,0.0 +21196,75,7.75,2,0.0 +21196,14,23.25,49,0.0 +21196,21,10,8,0.0 +21196,16,17.45,45,0.0 +21196,40,18.4,29,0.0 +21196,70,15,32,0.0 +21196,11,21,42,0.0 +21196,37,26,45,0.0 +21196,60,34,40,0.0 +21196,34,14,10,0.0 +21196,47,9.5,20,0.0 +21196,52,7,27,0.0 +21196,49,20,12,0.0 +21197,40,18.4,7,0.0 +21197,72,34.8,50,0.0 +21197,31,12.5,5,0.0 +21197,29,123.79,11,0.0 +21197,8,40,16,0.0 +21197,13,6,16,0.0 +21197,58,13.25,28,0.0 +21197,10,31,2,0.0 +21197,19,9.2,50,0.0 +21197,52,7,7,0.0 +21197,59,55,29,0.0 +21197,75,7.75,46,0.0 +21197,1,18,15,0.0 +21197,43,46,33,0.0 +21197,36,19,28,0.0 +21197,71,21.5,36,0.0 +21197,73,15,41,0.0 +21197,47,9.5,15,0.0 +21197,63,43.9,2,0.0 +21197,23,9,15,0.0 +21197,76,18,49,0.0 +21197,26,31.23,15,0.0 +21197,22,21,13,0.0 +21197,53,32.8,26,0.0 +21197,61,28.5,7,0.0 +21197,25,14,17,0.0 +21197,46,12,43,0.0 +21197,14,23.25,21,0.0 +21197,17,39,12,0.0 +21197,6,25,11,0.0 +21197,15,15.5,21,0.0 +21197,28,45.6,47,0.0 +21197,56,38,35,0.0 +21197,54,7.45,10,0.0 +21197,16,17.45,5,0.0 +21197,69,36,48,0.0 +21197,18,62.5,39,0.0 +21197,67,14,43,0.0 +21197,44,19.45,21,0.0 +21197,32,32,13,0.0 +21197,68,12.5,3,0.0 +21197,11,21,36,0.0 +21197,77,13,29,0.0 +21197,51,53,39,0.0 +21197,45,9.5,15,0.0 +21197,48,12.75,13,0.0 +21197,49,20,13,0.0 +21197,12,38,22,0.0 +21197,5,21.35,42,0.0 +21197,3,10,47,0.0 +21197,7,30,33,0.0 +21197,24,4.5,6,0.0 +21197,50,16.25,29,0.0 +21197,20,81,24,0.0 +21197,42,14,14,0.0 +21197,55,24,29,0.0 +21197,41,9.65,20,0.0 +21197,21,10,45,0.0 +21197,64,33.25,45,0.0 +21197,65,21.05,23,0.0 +21197,38,263.5,37,0.0 +21197,34,14,9,0.0 +21197,35,18,11,0.0 +21197,74,10,24,0.0 +21197,70,15,18,0.0 +21197,4,22,22,0.0 +21197,9,97,17,0.0 +21197,27,43.9,44,0.0 +21197,60,34,24,0.0 +21197,30,25.89,36,0.0 +21197,37,26,44,0.0 +21197,62,49.3,6,0.0 +21197,39,18,3,0.0 +21197,2,19,27,0.0 +21197,33,2.5,8,0.0 +21198,5,21.35,47,0.0 +21198,16,17.45,37,0.0 +21198,9,97,40,0.0 +21198,52,7,6,0.0 +21198,37,26,4,0.0 +21198,56,38,41,0.0 +21198,42,14,24,0.0 +21198,43,46,20,0.0 +21198,72,34.8,2,0.0 +21198,34,14,36,0.0 +21198,28,45.6,16,0.0 +21198,21,10,31,0.0 +21198,63,43.9,20,0.0 +21198,60,34,12,0.0 +21198,68,12.5,4,0.0 +21198,7,30,7,0.0 +21198,2,19,6,0.0 +21198,77,13,50,0.0 +21198,57,19.5,4,0.0 +21198,47,9.5,47,0.0 +21198,41,9.65,18,0.0 +21198,3,10,47,0.0 +21198,27,43.9,7,0.0 +21198,59,55,24,0.0 +21198,6,25,7,0.0 +21198,39,18,3,0.0 +21198,44,19.45,15,0.0 +21198,15,15.5,45,0.0 +21198,53,32.8,46,0.0 +21198,10,31,40,0.0 +21198,40,18.4,9,0.0 +21198,13,6,27,0.0 +21198,67,14,6,0.0 +21198,50,16.25,19,0.0 +21198,22,21,8,0.0 +21198,38,263.5,30,0.0 +21198,69,36,18,0.0 +21198,76,18,43,0.0 +21198,49,20,32,0.0 +21198,48,12.75,37,0.0 +21198,24,4.5,31,0.0 +21198,14,23.25,32,0.0 +21198,73,15,7,0.0 +21198,74,10,4,0.0 +21198,54,7.45,39,0.0 +21198,58,13.25,24,0.0 +21198,19,9.2,9,0.0 +21198,17,39,12,0.0 +21198,4,22,31,0.0 +21198,55,24,25,0.0 +21198,18,62.5,12,0.0 +21198,30,25.89,11,0.0 +21198,33,2.5,50,0.0 +21198,23,9,50,0.0 +21198,11,21,35,0.0 +21198,32,32,27,0.0 +21198,12,38,32,0.0 +21198,75,7.75,10,0.0 +21198,64,33.25,30,0.0 +21198,1,18,41,0.0 +21198,29,123.79,42,0.0 +21198,8,40,39,0.0 +21198,66,17,32,0.0 +21198,71,21.5,24,0.0 +21198,35,18,33,0.0 +21198,65,21.05,30,0.0 +21198,31,12.5,7,0.0 +21198,51,53,1,0.0 +21198,45,9.5,31,0.0 +21198,36,19,35,0.0 +21198,70,15,40,0.0 +21198,61,28.5,43,0.0 +21198,26,31.23,46,0.0 +21199,3,10,44,0.0 +21199,22,21,35,0.0 +21199,24,4.5,37,0.0 +21199,77,13,22,0.0 +21199,46,12,24,0.0 +21199,20,81,28,0.0 +21199,65,21.05,26,0.0 +21199,60,34,49,0.0 +21199,36,19,47,0.0 +21199,2,19,13,0.0 +21199,33,2.5,14,0.0 +21199,39,18,10,0.0 +21199,48,12.75,29,0.0 +21199,53,32.8,47,0.0 +21199,12,38,43,0.0 +21199,27,43.9,32,0.0 +21199,8,40,31,0.0 +21199,54,7.45,15,0.0 +21199,45,9.5,19,0.0 +21199,15,15.5,13,0.0 +21199,47,9.5,26,0.0 +21199,6,25,32,0.0 +21199,17,39,28,0.0 +21199,71,21.5,20,0.0 +21199,9,97,43,0.0 +21199,25,14,39,0.0 +21199,59,55,15,0.0 +21199,66,17,32,0.0 +21199,64,33.25,27,0.0 +21199,62,49.3,15,0.0 +21199,23,9,45,0.0 +21199,50,16.25,14,0.0 +21199,56,38,2,0.0 +21199,4,22,17,0.0 +21199,38,263.5,13,0.0 +21199,10,31,22,0.0 +21199,41,9.65,5,0.0 +21199,52,7,16,0.0 +21199,40,18.4,20,0.0 +21199,5,21.35,47,0.0 +21199,19,9.2,23,0.0 +21199,76,18,26,0.0 +21199,58,13.25,13,0.0 +21199,29,123.79,47,0.0 +21199,72,34.8,22,0.0 +21199,68,12.5,27,0.0 +21199,67,14,35,0.0 +21199,14,23.25,15,0.0 +21199,69,36,31,0.0 +21199,28,45.6,23,0.0 +21199,51,53,48,0.0 +21199,35,18,23,0.0 +21199,7,30,12,0.0 +21199,30,25.89,36,0.0 +21199,44,19.45,4,0.0 +21199,43,46,27,0.0 +21199,61,28.5,24,0.0 +21199,16,17.45,49,0.0 +21199,32,32,5,0.0 +21199,75,7.75,35,0.0 +21199,49,20,48,0.0 +21199,13,6,14,0.0 +21199,42,14,41,0.0 +21199,55,24,24,0.0 +21199,26,31.23,12,0.0 +21199,57,19.5,35,0.0 +21199,74,10,19,0.0 +21199,70,15,35,0.0 +21199,63,43.9,13,0.0 +21199,21,10,45,0.0 +21199,37,26,26,0.0 +21200,71,21.5,30,0.0 +21200,42,14,32,0.0 +21200,54,7.45,46,0.0 +21201,3,10,49,0.0 +21201,17,39,21,0.0 +21201,50,16.25,38,0.0 +21201,71,21.5,5,0.0 +21201,11,21,35,0.0 +21201,54,7.45,39,0.0 +21201,69,36,33,0.0 +21201,59,55,36,0.0 +21201,8,40,37,0.0 +21201,74,10,48,0.0 +21201,64,33.25,16,0.0 +21201,28,45.6,10,0.0 +21201,41,9.65,39,0.0 +21201,56,38,42,0.0 +21201,63,43.9,22,0.0 +21201,38,263.5,32,0.0 +21201,10,31,11,0.0 +21201,9,97,30,0.0 +21201,16,17.45,42,0.0 +21201,77,13,24,0.0 +21201,70,15,36,0.0 +21201,57,19.5,32,0.0 +21201,55,24,2,0.0 +21201,26,31.23,10,0.0 +21201,15,15.5,45,0.0 +21201,43,46,29,0.0 +21201,73,15,9,0.0 +21201,25,14,26,0.0 +21201,4,22,40,0.0 +21201,47,9.5,16,0.0 +21201,7,30,35,0.0 +21201,30,25.89,3,0.0 +21201,67,14,41,0.0 +21201,75,7.75,13,0.0 +21201,36,19,16,0.0 +21201,21,10,20,0.0 +21201,45,9.5,41,0.0 +21201,34,14,44,0.0 +21201,39,18,21,0.0 +21201,14,23.25,30,0.0 +21201,23,9,25,0.0 +21201,48,12.75,35,0.0 +21201,49,20,14,0.0 +21201,35,18,47,0.0 +21201,31,12.5,4,0.0 +21201,19,9.2,43,0.0 +21201,58,13.25,11,0.0 +21201,33,2.5,37,0.0 +21201,20,81,18,0.0 +21202,16,17.45,17,0.0 +21202,51,53,34,0.0 +21202,62,49.3,2,0.0 +21202,23,9,5,0.0 +21202,41,9.65,21,0.0 +21202,8,40,6,0.0 +21202,65,21.05,16,0.0 +21202,64,33.25,16,0.0 +21202,2,19,37,0.0 +21202,24,4.5,14,0.0 +21202,4,22,22,0.0 +21202,68,12.5,17,0.0 +21202,58,13.25,20,0.0 +21202,52,7,28,0.0 +21202,57,19.5,28,0.0 +21202,28,45.6,45,0.0 +21202,30,25.89,48,0.0 +21202,77,13,6,0.0 +21202,61,28.5,29,0.0 +21202,74,10,12,0.0 +21202,46,12,17,0.0 +21202,66,17,37,0.0 +21202,43,46,10,0.0 +21202,55,24,11,0.0 +21202,69,36,35,0.0 +21202,6,25,43,0.0 +21202,18,62.5,12,0.0 +21202,35,18,46,0.0 +21202,47,9.5,30,0.0 +21202,56,38,30,0.0 +21202,17,39,45,0.0 +21202,73,15,27,0.0 +21202,22,21,2,0.0 +21202,26,31.23,35,0.0 +21202,45,9.5,34,0.0 +21202,67,14,20,0.0 +21202,36,19,36,0.0 +21202,37,26,36,0.0 +21202,19,9.2,31,0.0 +21203,9,97,47,0.0 +21203,37,26,31,0.0 +21203,55,24,13,0.0 +21203,53,32.8,46,0.0 +21203,63,43.9,12,0.0 +21203,70,15,36,0.0 +21203,5,21.35,21,0.0 +21203,21,10,50,0.0 +21203,40,18.4,10,0.0 +21203,19,9.2,18,0.0 +21203,76,18,20,0.0 +21203,16,17.45,8,0.0 +21203,69,36,35,0.0 +21203,24,4.5,29,0.0 +21203,64,33.25,16,0.0 +21203,7,30,49,0.0 +21203,12,38,35,0.0 +21203,15,15.5,12,0.0 +21203,36,19,9,0.0 +21203,28,45.6,45,0.0 +21203,39,18,29,0.0 +21203,49,20,1,0.0 +21203,43,46,44,0.0 +21203,42,14,37,0.0 +21203,2,19,31,0.0 +21203,50,16.25,20,0.0 +21204,43,46,11,0.0 +21204,51,53,22,0.0 +21204,66,17,32,0.0 +21204,10,31,36,0.0 +21204,55,24,2,0.0 +21204,74,10,8,0.0 +21204,9,97,26,0.0 +21204,25,14,50,0.0 +21204,54,7.45,41,0.0 +21204,17,39,46,0.0 +21204,50,16.25,32,0.0 +21204,22,21,25,0.0 +21204,44,19.45,5,0.0 +21204,69,36,11,0.0 +21204,59,55,14,0.0 +21204,20,81,15,0.0 +21204,62,49.3,46,0.0 +21204,68,12.5,40,0.0 +21204,15,15.5,20,0.0 +21204,77,13,13,0.0 +21204,26,31.23,37,0.0 +21204,76,18,7,0.0 +21204,19,9.2,11,0.0 +21204,53,32.8,13,0.0 +21204,71,21.5,2,0.0 +21204,75,7.75,12,0.0 +21204,39,18,24,0.0 +21204,1,18,6,0.0 +21204,49,20,6,0.0 +21204,32,32,16,0.0 +21204,7,30,20,0.0 +21204,67,14,40,0.0 +21204,64,33.25,8,0.0 +21204,37,26,8,0.0 +21204,23,9,35,0.0 +21204,70,15,6,0.0 +21204,52,7,18,0.0 +21204,58,13.25,36,0.0 +21204,3,10,3,0.0 +21204,72,34.8,45,0.0 +21204,40,18.4,17,0.0 +21204,65,21.05,12,0.0 +21204,36,19,11,0.0 +21204,24,4.5,33,0.0 +21204,56,38,16,0.0 +21204,73,15,5,0.0 +21204,45,9.5,41,0.0 +21204,41,9.65,8,0.0 +21204,33,2.5,31,0.0 +21204,14,23.25,43,0.0 +21204,38,263.5,9,0.0 +21204,28,45.6,48,0.0 +21204,61,28.5,36,0.0 +21205,16,17.45,22,0.0 +21205,47,9.5,8,0.0 +21205,50,16.25,37,0.0 +21205,27,43.9,45,0.0 +21205,60,34,12,0.0 +21205,25,14,18,0.0 +21205,71,21.5,49,0.0 +21205,34,14,8,0.0 +21205,23,9,40,0.0 +21205,63,43.9,33,0.0 +21205,49,20,17,0.0 +21205,10,31,43,0.0 +21205,55,24,10,0.0 +21205,57,19.5,26,0.0 +21205,31,12.5,48,0.0 +21206,75,7.75,3,0.0 +21206,33,2.5,14,0.0 +21206,53,32.8,21,0.0 +21206,67,14,35,0.0 +21206,49,20,2,0.0 +21206,60,34,2,0.0 +21206,71,21.5,36,0.0 +21206,59,55,29,0.0 +21206,69,36,25,0.0 +21206,17,39,22,0.0 +21206,2,19,3,0.0 +21206,32,32,37,0.0 +21206,52,7,15,0.0 +21206,36,19,36,0.0 +21206,56,38,23,0.0 +21206,42,14,47,0.0 +21206,1,18,22,0.0 +21206,6,25,46,0.0 +21206,18,62.5,45,0.0 +21206,25,14,2,0.0 +21206,43,46,37,0.0 +21206,29,123.79,16,0.0 +21206,65,21.05,6,0.0 +21206,21,10,24,0.0 +21206,63,43.9,42,0.0 +21206,46,12,2,0.0 +21206,70,15,45,0.0 +21206,19,9.2,30,0.0 +21206,45,9.5,47,0.0 +21206,14,23.25,48,0.0 +21206,54,7.45,18,0.0 +21206,68,12.5,18,0.0 +21206,10,31,45,0.0 +21206,30,25.89,35,0.0 +21206,28,45.6,11,0.0 +21206,15,15.5,38,0.0 +21206,27,43.9,24,0.0 +21206,22,21,14,0.0 +21206,23,9,8,0.0 +21207,5,21.35,17,0.0 +21207,57,19.5,20,0.0 +21207,45,9.5,32,0.0 +21207,30,25.89,23,0.0 +21207,28,45.6,46,0.0 +21207,29,123.79,40,0.0 +21207,60,34,21,0.0 +21207,73,15,27,0.0 +21207,70,15,41,0.0 +21207,8,40,14,0.0 +21207,53,32.8,23,0.0 +21207,6,25,50,0.0 +21207,25,14,36,0.0 +21207,62,49.3,29,0.0 +21207,55,24,4,0.0 +21207,16,17.45,8,0.0 +21207,40,18.4,1,0.0 +21207,54,7.45,9,0.0 +21207,50,16.25,16,0.0 +21207,38,263.5,24,0.0 +21207,4,22,10,0.0 +21207,46,12,48,0.0 +21207,18,62.5,1,0.0 +21207,22,21,16,0.0 +21207,19,9.2,3,0.0 +21207,72,34.8,50,0.0 +21207,69,36,45,0.0 +21207,10,31,40,0.0 +21207,21,10,26,0.0 +21207,17,39,8,0.0 +21207,11,21,38,0.0 +21207,7,30,35,0.0 +21207,12,38,17,0.0 +21207,14,23.25,8,0.0 +21207,76,18,23,0.0 +21207,32,32,17,0.0 +21207,48,12.75,12,0.0 +21207,1,18,40,0.0 +21207,24,4.5,31,0.0 +21207,58,13.25,27,0.0 +21207,31,12.5,50,0.0 +21207,68,12.5,49,0.0 +21207,59,55,37,0.0 +21207,3,10,17,0.0 +21207,27,43.9,4,0.0 +21207,75,7.75,38,0.0 +21207,51,53,47,0.0 +21207,43,46,41,0.0 +21207,49,20,43,0.0 +21207,61,28.5,34,0.0 +21207,33,2.5,7,0.0 +21207,42,14,40,0.0 +21207,71,21.5,28,0.0 +21207,35,18,10,0.0 +21207,15,15.5,3,0.0 +21207,64,33.25,44,0.0 +21207,63,43.9,13,0.0 +21207,2,19,40,0.0 +21207,77,13,49,0.0 +21207,13,6,34,0.0 +21207,52,7,43,0.0 +21207,47,9.5,28,0.0 +21207,39,18,28,0.0 +21207,37,26,11,0.0 +21207,36,19,45,0.0 +21207,74,10,7,0.0 +21207,9,97,1,0.0 +21207,41,9.65,30,0.0 +21207,20,81,13,0.0 +21208,5,21.35,25,0.0 +21208,7,30,6,0.0 +21208,70,15,20,0.0 +21208,24,4.5,48,0.0 +21208,60,34,48,0.0 +21208,54,7.45,37,0.0 +21208,56,38,29,0.0 +21208,42,14,29,0.0 +21208,17,39,8,0.0 +21208,45,9.5,26,0.0 +21208,33,2.5,5,0.0 +21208,66,17,27,0.0 +21208,20,81,14,0.0 +21208,34,14,7,0.0 +21208,67,14,13,0.0 +21208,74,10,42,0.0 +21208,36,19,33,0.0 +21208,55,24,41,0.0 +21208,63,43.9,45,0.0 +21208,58,13.25,20,0.0 +21208,32,32,11,0.0 +21208,19,9.2,48,0.0 +21208,4,22,32,0.0 +21208,1,18,26,0.0 +21208,62,49.3,38,0.0 +21208,12,38,4,0.0 +21208,48,12.75,17,0.0 +21208,11,21,16,0.0 +21208,22,21,2,0.0 +21208,35,18,24,0.0 +21208,49,20,15,0.0 +21208,3,10,21,0.0 +21208,16,17.45,16,0.0 +21208,76,18,43,0.0 +21208,10,31,28,0.0 +21208,57,19.5,25,0.0 +21209,6,25,26,0.0 +21209,64,33.25,17,0.0 +21209,66,17,40,0.0 +21209,74,10,18,0.0 +21209,10,31,14,0.0 +21209,60,34,20,0.0 +21209,12,38,39,0.0 +21209,55,24,17,0.0 +21209,56,38,6,0.0 +21209,44,19.45,3,0.0 +21209,23,9,37,0.0 +21209,67,14,3,0.0 +21209,42,14,34,0.0 +21209,49,20,47,0.0 +21209,32,32,7,0.0 +21209,69,36,42,0.0 +21209,41,9.65,13,0.0 +21209,76,18,21,0.0 +21209,22,21,40,0.0 +21209,39,18,6,0.0 +21209,21,10,10,0.0 +21209,34,14,36,0.0 +21209,20,81,26,0.0 +21209,31,12.5,47,0.0 +21209,61,28.5,31,0.0 +21209,17,39,6,0.0 +21209,27,43.9,48,0.0 +21209,35,18,13,0.0 +21209,54,7.45,45,0.0 +21209,47,9.5,10,0.0 +21209,26,31.23,33,0.0 +21209,4,22,37,0.0 +21209,18,62.5,25,0.0 +21209,71,21.5,29,0.0 +21209,75,7.75,4,0.0 +21209,15,15.5,21,0.0 +21209,29,123.79,43,0.0 +21210,44,19.45,24,0.0 +21210,58,13.25,47,0.0 +21210,42,14,10,0.0 +21210,55,24,40,0.0 +21210,7,30,44,0.0 +21210,27,43.9,4,0.0 +21210,26,31.23,44,0.0 +21210,73,15,43,0.0 +21210,34,14,26,0.0 +21210,20,81,9,0.0 +21210,35,18,11,0.0 +21210,70,15,42,0.0 +21210,68,12.5,25,0.0 +21210,17,39,2,0.0 +21210,19,9.2,21,0.0 +21210,61,28.5,13,0.0 +21210,40,18.4,24,0.0 +21210,45,9.5,21,0.0 +21210,33,2.5,45,0.0 +21210,74,10,33,0.0 +21210,53,32.8,41,0.0 +21210,12,38,38,0.0 +21210,67,14,47,0.0 +21210,57,19.5,4,0.0 +21210,77,13,48,0.0 +21210,13,6,11,0.0 +21210,52,7,44,0.0 +21210,21,10,25,0.0 +21210,36,19,12,0.0 +21210,43,46,47,0.0 +21210,9,97,7,0.0 +21210,64,33.25,43,0.0 +21210,4,22,10,0.0 +21210,24,4.5,4,0.0 +21210,11,21,34,0.0 +21211,46,12,13,0.0 +21211,23,9,20,0.0 +21211,49,20,45,0.0 +21211,56,38,34,0.0 +21211,47,9.5,19,0.0 +21211,22,21,7,0.0 +21211,76,18,37,0.0 +21211,39,18,38,0.0 +21211,60,34,47,0.0 +21211,37,26,49,0.0 +21211,65,21.05,43,0.0 +21211,54,7.45,39,0.0 +21211,55,24,4,0.0 +21211,8,40,3,0.0 +21211,57,19.5,47,0.0 +21211,63,43.9,24,0.0 +21211,48,12.75,26,0.0 +21211,33,2.5,41,0.0 +21211,30,25.89,29,0.0 +21211,17,39,12,0.0 +21211,29,123.79,26,0.0 +21211,69,36,20,0.0 +21211,61,28.5,5,0.0 +21211,64,33.25,7,0.0 +21211,72,34.8,48,0.0 +21211,45,9.5,45,0.0 +21211,12,38,32,0.0 +21211,15,15.5,7,0.0 +21211,44,19.45,10,0.0 +21211,70,15,7,0.0 +21211,53,32.8,10,0.0 +21211,7,30,35,0.0 +21211,3,10,4,0.0 +21211,20,81,28,0.0 +21211,38,263.5,4,0.0 +21211,40,18.4,35,0.0 +21211,43,46,46,0.0 +21211,32,32,12,0.0 +21211,19,9.2,13,0.0 +21211,26,31.23,6,0.0 +21211,42,14,47,0.0 +21211,34,14,7,0.0 +21211,77,13,16,0.0 +21211,73,15,22,0.0 +21211,16,17.45,3,0.0 +21211,13,6,40,0.0 +21211,31,12.5,2,0.0 +21211,11,21,24,0.0 +21211,67,14,38,0.0 +21211,2,19,33,0.0 +21211,36,19,30,0.0 +21211,10,31,38,0.0 +21211,58,13.25,46,0.0 +21211,4,22,24,0.0 +21211,71,21.5,32,0.0 +21211,25,14,8,0.0 +21211,59,55,21,0.0 +21211,1,18,21,0.0 +21211,35,18,34,0.0 +21212,17,39,12,0.0 +21212,60,34,31,0.0 +21212,44,19.45,39,0.0 +21212,69,36,11,0.0 +21212,72,34.8,25,0.0 +21212,1,18,40,0.0 +21212,41,9.65,28,0.0 +21212,36,19,6,0.0 +21212,39,18,49,0.0 +21212,31,12.5,29,0.0 +21212,29,123.79,20,0.0 +21212,26,31.23,24,0.0 +21212,11,21,8,0.0 +21212,54,7.45,21,0.0 +21212,64,33.25,1,0.0 +21212,42,14,18,0.0 +21212,51,53,4,0.0 +21212,58,13.25,41,0.0 +21212,9,97,7,0.0 +21212,62,49.3,45,0.0 +21212,10,31,48,0.0 +21212,14,23.25,45,0.0 +21212,35,18,32,0.0 +21212,46,12,23,0.0 +21212,74,10,13,0.0 +21212,13,6,14,0.0 +21212,20,81,14,0.0 +21212,47,9.5,5,0.0 +21212,23,9,26,0.0 +21212,34,14,21,0.0 +21212,8,40,29,0.0 +21212,57,19.5,44,0.0 +21212,16,17.45,29,0.0 +21212,3,10,17,0.0 +21212,38,263.5,33,0.0 +21212,76,18,33,0.0 +21212,2,19,11,0.0 +21212,25,14,7,0.0 +21212,73,15,25,0.0 +21212,50,16.25,23,0.0 +21212,6,25,44,0.0 +21212,56,38,4,0.0 +21212,70,15,46,0.0 +21212,19,9.2,14,0.0 +21212,22,21,14,0.0 +21212,7,30,35,0.0 +21212,61,28.5,7,0.0 +21212,15,15.5,47,0.0 +21212,21,10,27,0.0 +21212,67,14,29,0.0 +21212,30,25.89,13,0.0 +21212,53,32.8,12,0.0 +21212,68,12.5,36,0.0 +21213,15,15.5,43,0.0 +21213,32,32,44,0.0 +21213,42,14,23,0.0 +21213,41,9.65,5,0.0 +21213,29,123.79,32,0.0 +21213,45,9.5,46,0.0 +21213,55,24,39,0.0 +21213,26,31.23,38,0.0 +21213,71,21.5,34,0.0 +21213,20,81,31,0.0 +21213,56,38,9,0.0 +21213,46,12,25,0.0 +21213,48,12.75,30,0.0 +21213,62,49.3,35,0.0 +21213,33,2.5,30,0.0 +21213,13,6,34,0.0 +21213,54,7.45,13,0.0 +21213,31,12.5,40,0.0 +21213,47,9.5,17,0.0 +21213,68,12.5,30,0.0 +21213,75,7.75,16,0.0 +21213,66,17,12,0.0 +21213,17,39,29,0.0 +21213,25,14,27,0.0 +21213,24,4.5,7,0.0 +21213,72,34.8,26,0.0 +21213,36,19,19,0.0 +21213,43,46,34,0.0 +21213,70,15,39,0.0 +21213,53,32.8,21,0.0 +21213,44,19.45,25,0.0 +21213,18,62.5,30,0.0 +21213,69,36,46,0.0 +21213,65,21.05,33,0.0 +21213,27,43.9,38,0.0 +21213,11,21,38,0.0 +21214,30,25.89,31,0.0 +21214,32,32,21,0.0 +21214,53,32.8,6,0.0 +21214,77,13,49,0.0 +21214,37,26,14,0.0 +21214,42,14,31,0.0 +21214,76,18,2,0.0 +21214,70,15,41,0.0 +21214,31,12.5,24,0.0 +21214,40,18.4,3,0.0 +21214,23,9,7,0.0 +21214,69,36,46,0.0 +21214,34,14,44,0.0 +21214,51,53,35,0.0 +21214,35,18,36,0.0 +21214,59,55,48,0.0 +21214,44,19.45,27,0.0 +21214,1,18,50,0.0 +21214,2,19,2,0.0 +21214,22,21,30,0.0 +21214,3,10,11,0.0 +21214,13,6,37,0.0 +21214,66,17,16,0.0 +21214,46,12,42,0.0 +21214,48,12.75,37,0.0 +21214,71,21.5,13,0.0 +21214,17,39,42,0.0 +21214,73,15,41,0.0 +21214,60,34,5,0.0 +21214,58,13.25,40,0.0 +21214,21,10,41,0.0 +21214,64,33.25,43,0.0 +21214,50,16.25,45,0.0 +21214,36,19,48,0.0 +21214,28,45.6,11,0.0 +21214,6,25,34,0.0 +21214,49,20,6,0.0 +21214,63,43.9,2,0.0 +21214,38,263.5,22,0.0 +21214,20,81,44,0.0 +21214,55,24,17,0.0 +21214,27,43.9,15,0.0 +21214,29,123.79,40,0.0 +21214,74,10,6,0.0 +21214,25,14,8,0.0 +21214,39,18,10,0.0 +21214,41,9.65,9,0.0 +21214,67,14,28,0.0 +21214,8,40,31,0.0 +21214,47,9.5,46,0.0 +21214,7,30,49,0.0 +21215,35,18,20,0.0 +21215,30,25.89,37,0.0 +21215,60,34,17,0.0 +21215,62,49.3,9,0.0 +21215,71,21.5,29,0.0 +21215,12,38,42,0.0 +21215,7,30,13,0.0 +21215,31,12.5,29,0.0 +21215,55,24,33,0.0 +21215,40,18.4,33,0.0 +21215,17,39,45,0.0 +21215,48,12.75,36,0.0 +21215,44,19.45,20,0.0 +21215,5,21.35,13,0.0 +21215,20,81,14,0.0 +21215,75,7.75,6,0.0 +21215,52,7,2,0.0 +21215,63,43.9,32,0.0 +21215,32,32,42,0.0 +21215,23,9,21,0.0 +21215,66,17,44,0.0 +21215,76,18,28,0.0 +21215,59,55,18,0.0 +21215,53,32.8,19,0.0 +21215,2,19,33,0.0 +21215,16,17.45,35,0.0 +21215,46,12,14,0.0 +21215,58,13.25,13,0.0 +21215,72,34.8,14,0.0 +21216,41,9.65,49,0.0 +21216,14,23.25,18,0.0 +21216,30,25.89,14,0.0 +21216,50,16.25,46,0.0 +21216,1,18,2,0.0 +21216,35,18,7,0.0 +21216,32,32,31,0.0 +21216,20,81,40,0.0 +21216,24,4.5,12,0.0 +21216,33,2.5,38,0.0 +21216,55,24,50,0.0 +21216,39,18,2,0.0 +21216,28,45.6,2,0.0 +21216,59,55,27,0.0 +21216,62,49.3,9,0.0 +21216,18,62.5,12,0.0 +21216,22,21,18,0.0 +21216,11,21,16,0.0 +21216,58,13.25,37,0.0 +21216,77,13,23,0.0 +21216,51,53,28,0.0 +21216,16,17.45,36,0.0 +21216,65,21.05,7,0.0 +21216,52,7,48,0.0 +21216,29,123.79,4,0.0 +21216,26,31.23,47,0.0 +21216,40,18.4,41,0.0 +21216,31,12.5,47,0.0 +21216,70,15,46,0.0 +21216,42,14,19,0.0 +21216,15,15.5,33,0.0 +21216,64,33.25,38,0.0 +21216,17,39,7,0.0 +21217,17,39,32,0.0 +21217,74,10,34,0.0 +21217,54,7.45,44,0.0 +21217,6,25,9,0.0 +21217,21,10,39,0.0 +21217,26,31.23,20,0.0 +21217,7,30,42,0.0 +21217,72,34.8,24,0.0 +21217,59,55,13,0.0 +21217,46,12,18,0.0 +21217,23,9,5,0.0 +21217,51,53,50,0.0 +21217,33,2.5,23,0.0 +21217,36,19,23,0.0 +21217,56,38,15,0.0 +21217,4,22,42,0.0 +21217,25,14,40,0.0 +21217,41,9.65,16,0.0 +21217,50,16.25,29,0.0 +21217,43,46,47,0.0 +21217,9,97,45,0.0 +21217,12,38,29,0.0 +21217,71,21.5,49,0.0 +21217,58,13.25,9,0.0 +21217,44,19.45,21,0.0 +21217,53,32.8,38,0.0 +21217,73,15,33,0.0 +21217,75,7.75,41,0.0 +21217,63,43.9,13,0.0 +21217,65,21.05,20,0.0 +21217,62,49.3,27,0.0 +21217,8,40,15,0.0 +21217,42,14,36,0.0 +21217,14,23.25,18,0.0 +21217,67,14,38,0.0 +21217,16,17.45,31,0.0 +21217,66,17,33,0.0 +21217,18,62.5,50,0.0 +21217,60,34,19,0.0 +21217,5,21.35,4,0.0 +21217,11,21,25,0.0 +21217,39,18,43,0.0 +21217,40,18.4,27,0.0 +21217,52,7,15,0.0 +21217,32,32,15,0.0 +21217,35,18,34,0.0 +21217,76,18,12,0.0 +21217,24,4.5,32,0.0 +21217,1,18,42,0.0 +21217,15,15.5,23,0.0 +21217,70,15,13,0.0 +21217,55,24,3,0.0 +21217,64,33.25,3,0.0 +21217,49,20,4,0.0 +21217,10,31,6,0.0 +21217,29,123.79,2,0.0 +21217,61,28.5,5,0.0 +21217,19,9.2,35,0.0 +21217,2,19,39,0.0 +21217,22,21,33,0.0 +21217,45,9.5,19,0.0 +21217,38,263.5,19,0.0 +21217,30,25.89,49,0.0 +21217,3,10,19,0.0 +21217,47,9.5,31,0.0 +21217,57,19.5,32,0.0 +21217,77,13,42,0.0 +21217,27,43.9,30,0.0 +21217,68,12.5,25,0.0 +21217,37,26,39,0.0 +21217,13,6,47,0.0 +21217,31,12.5,26,0.0 +21218,15,15.5,28,0.0 +21218,34,14,30,0.0 +21218,55,24,42,0.0 +21218,16,17.45,19,0.0 +21218,11,21,16,0.0 +21218,10,31,50,0.0 +21218,37,26,8,0.0 +21218,48,12.75,44,0.0 +21218,28,45.6,27,0.0 +21218,50,16.25,38,0.0 +21218,38,263.5,11,0.0 +21218,17,39,19,0.0 +21219,8,40,9,0.0 +21219,14,23.25,30,0.0 +21219,75,7.75,33,0.0 +21219,58,13.25,5,0.0 +21219,50,16.25,17,0.0 +21219,43,46,36,0.0 +21219,67,14,23,0.0 +21219,76,18,22,0.0 +21219,34,14,50,0.0 +21219,72,34.8,17,0.0 +21219,65,21.05,1,0.0 +21219,52,7,46,0.0 +21219,59,55,15,0.0 +21219,46,12,27,0.0 +21219,39,18,48,0.0 +21219,54,7.45,2,0.0 +21219,10,31,50,0.0 +21219,22,21,41,0.0 +21219,64,33.25,42,0.0 +21219,70,15,33,0.0 +21219,32,32,11,0.0 +21219,28,45.6,32,0.0 +21219,44,19.45,17,0.0 +21219,68,12.5,18,0.0 +21219,18,62.5,45,0.0 +21219,57,19.5,30,0.0 +21219,55,24,2,0.0 +21219,73,15,28,0.0 +21219,38,263.5,7,0.0 +21219,24,4.5,22,0.0 +21219,53,32.8,31,0.0 +21219,17,39,4,0.0 +21219,27,43.9,34,0.0 +21219,33,2.5,39,0.0 +21219,48,12.75,50,0.0 +21219,45,9.5,42,0.0 +21219,9,97,35,0.0 +21219,69,36,6,0.0 +21219,41,9.65,19,0.0 +21219,56,38,50,0.0 +21219,26,31.23,12,0.0 +21219,66,17,16,0.0 +21219,61,28.5,28,0.0 +21220,32,32,6,0.0 +21220,72,34.8,25,0.0 +21220,70,15,12,0.0 +21220,64,33.25,44,0.0 +21220,69,36,45,0.0 +21220,1,18,17,0.0 +21220,54,7.45,35,0.0 +21220,21,10,1,0.0 +21220,31,12.5,33,0.0 +21220,61,28.5,15,0.0 +21220,35,18,14,0.0 +21220,74,10,42,0.0 +21220,16,17.45,6,0.0 +21220,30,25.89,31,0.0 +21220,63,43.9,38,0.0 +21220,38,263.5,3,0.0 +21220,18,62.5,11,0.0 +21220,4,22,28,0.0 +21220,41,9.65,26,0.0 +21220,50,16.25,5,0.0 +21220,62,49.3,28,0.0 +21220,15,15.5,46,0.0 +21220,26,31.23,40,0.0 +21220,71,21.5,13,0.0 +21220,17,39,35,0.0 +21220,24,4.5,17,0.0 +21220,25,14,43,0.0 +21220,59,55,32,0.0 +21220,27,43.9,36,0.0 +21220,65,21.05,33,0.0 +21220,55,24,46,0.0 +21220,56,38,13,0.0 +21220,68,12.5,19,0.0 +21220,3,10,19,0.0 +21220,5,21.35,46,0.0 +21220,29,123.79,31,0.0 +21220,52,7,36,0.0 +21220,75,7.75,14,0.0 +21220,51,53,8,0.0 +21220,2,19,21,0.0 +21220,6,25,50,0.0 +21220,12,38,33,0.0 +21220,36,19,1,0.0 +21220,19,9.2,41,0.0 +21220,76,18,8,0.0 +21220,13,6,43,0.0 +21220,34,14,10,0.0 +21221,71,21.5,19,0.0 +21221,43,46,22,0.0 +21221,56,38,50,0.0 +21221,33,2.5,47,0.0 +21221,23,9,26,0.0 +21221,41,9.65,41,0.0 +21221,36,19,50,0.0 +21221,70,15,5,0.0 +21221,54,7.45,28,0.0 +21221,66,17,11,0.0 +21221,62,49.3,2,0.0 +21221,35,18,18,0.0 +21221,74,10,26,0.0 +21221,12,38,37,0.0 +21221,59,55,36,0.0 +21221,53,32.8,36,0.0 +21221,57,19.5,30,0.0 +21221,8,40,40,0.0 +21221,75,7.75,27,0.0 +21221,46,12,1,0.0 +21221,24,4.5,40,0.0 +21221,55,24,43,0.0 +21221,49,20,8,0.0 +21221,32,32,6,0.0 +21221,39,18,36,0.0 +21221,47,9.5,29,0.0 +21221,5,21.35,42,0.0 +21221,34,14,5,0.0 +21221,38,263.5,38,0.0 +21221,2,19,16,0.0 +21221,37,26,44,0.0 +21221,31,12.5,50,0.0 +21221,10,31,38,0.0 +21221,25,14,5,0.0 +21221,6,25,17,0.0 +21221,3,10,7,0.0 +21221,51,53,28,0.0 +21221,26,31.23,38,0.0 +21222,25,14,22,0.0 +21222,16,17.45,11,0.0 +21222,53,32.8,2,0.0 +21222,22,21,49,0.0 +21222,36,19,2,0.0 +21222,55,24,50,0.0 +21222,2,19,50,0.0 +21222,6,25,19,0.0 +21222,33,2.5,22,0.0 +21222,61,28.5,25,0.0 +21222,10,31,27,0.0 +21222,29,123.79,49,0.0 +21222,30,25.89,7,0.0 +21222,72,34.8,34,0.0 +21222,62,49.3,17,0.0 +21222,54,7.45,2,0.0 +21222,49,20,11,0.0 +21222,76,18,35,0.0 +21222,50,16.25,47,0.0 +21222,11,21,33,0.0 +21222,57,19.5,18,0.0 +21222,66,17,48,0.0 +21222,38,263.5,26,0.0 +21222,9,97,36,0.0 +21222,73,15,15,0.0 +21222,75,7.75,27,0.0 +21222,13,6,1,0.0 +21222,42,14,34,0.0 +21222,45,9.5,24,0.0 +21222,26,31.23,19,0.0 +21222,37,26,46,0.0 +21222,19,9.2,20,0.0 +21222,27,43.9,49,0.0 +21222,71,21.5,6,0.0 +21222,35,18,41,0.0 +21222,24,4.5,48,0.0 +21222,58,13.25,8,0.0 +21222,20,81,34,0.0 +21222,46,12,1,0.0 +21222,41,9.65,20,0.0 +21222,60,34,1,0.0 +21222,3,10,42,0.0 +21222,74,10,16,0.0 +21222,1,18,40,0.0 +21222,65,21.05,11,0.0 +21222,48,12.75,43,0.0 +21222,59,55,29,0.0 +21222,39,18,20,0.0 +21222,17,39,48,0.0 +21222,63,43.9,13,0.0 +21222,77,13,40,0.0 +21222,47,9.5,43,0.0 +21222,44,19.45,7,0.0 +21222,14,23.25,50,0.0 +21222,52,7,40,0.0 +21222,18,62.5,42,0.0 +21222,7,30,31,0.0 +21222,12,38,10,0.0 +21222,69,36,14,0.0 +21222,4,22,18,0.0 +21222,5,21.35,4,0.0 +21222,28,45.6,37,0.0 +21222,68,12.5,29,0.0 +21222,51,53,24,0.0 +21222,43,46,15,0.0 +21222,21,10,33,0.0 +21222,64,33.25,10,0.0 +21222,32,32,45,0.0 +21222,67,14,11,0.0 +21222,56,38,33,0.0 +21222,23,9,38,0.0 +21222,40,18.4,2,0.0 +21222,70,15,31,0.0 +21223,18,62.5,14,0.0 +21223,25,14,19,0.0 +21223,55,24,49,0.0 +21223,7,30,30,0.0 +21223,15,15.5,25,0.0 +21223,68,12.5,38,0.0 +21223,6,25,45,0.0 +21223,26,31.23,18,0.0 +21223,9,97,12,0.0 +21223,39,18,23,0.0 +21223,24,4.5,9,0.0 +21223,34,14,46,0.0 +21223,76,18,44,0.0 +21223,46,12,4,0.0 +21223,10,31,11,0.0 +21223,35,18,47,0.0 +21223,20,81,16,0.0 +21223,14,23.25,26,0.0 +21223,51,53,19,0.0 +21223,50,16.25,48,0.0 +21223,11,21,30,0.0 +21223,23,9,28,0.0 +21223,44,19.45,38,0.0 +21223,56,38,45,0.0 +21223,36,19,10,0.0 +21223,48,12.75,44,0.0 +21223,65,21.05,19,0.0 +21223,4,22,22,0.0 +21223,69,36,44,0.0 +21223,75,7.75,16,0.0 +21223,29,123.79,9,0.0 +21223,74,10,27,0.0 +21223,54,7.45,32,0.0 +21223,21,10,31,0.0 +21223,31,12.5,21,0.0 +21223,72,34.8,24,0.0 +21223,1,18,25,0.0 +21223,59,55,24,0.0 +21224,73,15,38,0.0 +21224,3,10,41,0.0 +21224,6,25,4,0.0 +21224,49,20,5,0.0 +21224,62,49.3,33,0.0 +21224,24,4.5,34,0.0 +21224,75,7.75,47,0.0 +21224,47,9.5,46,0.0 +21224,46,12,10,0.0 +21224,39,18,20,0.0 +21224,22,21,2,0.0 +21224,44,19.45,23,0.0 +21224,32,32,29,0.0 +21224,41,9.65,33,0.0 +21224,19,9.2,27,0.0 +21224,23,9,50,0.0 +21224,52,7,46,0.0 +21224,60,34,1,0.0 +21224,13,6,23,0.0 +21224,42,14,49,0.0 +21224,33,2.5,50,0.0 +21224,63,43.9,43,0.0 +21225,8,40,20,0.0 +21225,76,18,31,0.0 +21225,10,31,13,0.0 +21225,12,38,13,0.0 +21225,64,33.25,45,0.0 +21225,32,32,38,0.0 +21225,34,14,21,0.0 +21225,45,9.5,31,0.0 +21225,2,19,44,0.0 +21225,52,7,14,0.0 +21225,40,18.4,26,0.0 +21225,50,16.25,31,0.0 +21225,27,43.9,10,0.0 +21225,46,12,16,0.0 +21225,33,2.5,12,0.0 +21225,60,34,1,0.0 +21225,3,10,15,0.0 +21225,24,4.5,21,0.0 +21225,69,36,46,0.0 +21225,53,32.8,30,0.0 +21225,54,7.45,10,0.0 +21225,71,21.5,12,0.0 +21225,55,24,16,0.0 +21225,16,17.45,46,0.0 +21225,7,30,35,0.0 +21225,17,39,26,0.0 +21225,23,9,37,0.0 +21225,28,45.6,39,0.0 +21225,14,23.25,10,0.0 +21225,44,19.45,11,0.0 +21225,38,263.5,13,0.0 +21225,75,7.75,29,0.0 +21225,63,43.9,10,0.0 +21225,77,13,48,0.0 +21225,67,14,20,0.0 +21225,35,18,48,0.0 +21225,43,46,41,0.0 +21225,31,12.5,37,0.0 +21225,11,21,33,0.0 +21225,21,10,44,0.0 +21225,1,18,15,0.0 +21225,41,9.65,6,0.0 +21225,13,6,24,0.0 +21225,56,38,20,0.0 +21225,37,26,25,0.0 +21225,58,13.25,20,0.0 +21225,57,19.5,30,0.0 +21225,70,15,14,0.0 +21225,47,9.5,38,0.0 +21226,33,2.5,1,0.0 +21226,6,25,6,0.0 +21226,45,9.5,19,0.0 +21226,14,23.25,28,0.0 +21226,61,28.5,44,0.0 +21226,75,7.75,8,0.0 +21226,18,62.5,29,0.0 +21226,16,17.45,44,0.0 +21226,41,9.65,15,0.0 +21226,59,55,35,0.0 +21226,56,38,11,0.0 +21226,13,6,7,0.0 +21226,47,9.5,19,0.0 +21226,7,30,29,0.0 +21226,24,4.5,44,0.0 +21226,74,10,37,0.0 +21226,15,15.5,25,0.0 +21226,43,46,23,0.0 +21226,26,31.23,39,0.0 +21226,8,40,21,0.0 +21226,48,12.75,11,0.0 +21226,51,53,46,0.0 +21226,62,49.3,41,0.0 +21226,37,26,41,0.0 +21226,44,19.45,45,0.0 +21226,32,32,5,0.0 +21226,4,22,14,0.0 +21226,9,97,18,0.0 +21226,65,21.05,38,0.0 +21226,71,21.5,22,0.0 +21226,46,12,19,0.0 +21226,67,14,8,0.0 +21226,38,263.5,35,0.0 +21226,53,32.8,23,0.0 +21226,52,7,22,0.0 +21227,40,18.4,38,0.0 +21227,62,49.3,30,0.0 +21227,41,9.65,21,0.0 +21227,27,43.9,43,0.0 +21227,75,7.75,16,0.0 +21227,70,15,14,0.0 +21227,50,16.25,29,0.0 +21227,60,34,15,0.0 +21227,54,7.45,32,0.0 +21227,35,18,1,0.0 +21227,17,39,49,0.0 +21227,26,31.23,38,0.0 +21227,69,36,9,0.0 +21227,19,9.2,34,0.0 +21227,72,34.8,34,0.0 +21227,57,19.5,17,0.0 +21227,22,21,22,0.0 +21227,47,9.5,2,0.0 +21227,7,30,45,0.0 +21227,66,17,6,0.0 +21227,24,4.5,44,0.0 +21227,67,14,47,0.0 +21227,23,9,21,0.0 +21227,13,6,24,0.0 +21227,59,55,4,0.0 +21227,5,21.35,33,0.0 +21227,52,7,26,0.0 +21227,44,19.45,47,0.0 +21227,1,18,8,0.0 +21228,10,31,10,0.0 +21228,74,10,35,0.0 +21228,71,21.5,50,0.0 +21228,8,40,37,0.0 +21228,46,12,21,0.0 +21228,70,15,13,0.0 +21228,43,46,50,0.0 +21228,17,39,40,0.0 +21228,36,19,47,0.0 +21228,21,10,24,0.0 +21228,13,6,27,0.0 +21228,22,21,39,0.0 +21228,73,15,34,0.0 +21228,50,16.25,5,0.0 +21228,68,12.5,16,0.0 +21228,35,18,12,0.0 +21228,58,13.25,39,0.0 +21228,40,18.4,45,0.0 +21228,15,15.5,18,0.0 +21228,20,81,10,0.0 +21228,3,10,44,0.0 +21228,5,21.35,24,0.0 +21228,37,26,15,0.0 +21228,56,38,24,0.0 +21228,55,24,3,0.0 +21228,25,14,15,0.0 +21228,16,17.45,21,0.0 +21228,12,38,23,0.0 +21228,9,97,25,0.0 +21228,39,18,5,0.0 +21228,2,19,26,0.0 +21228,31,12.5,48,0.0 +21228,11,21,32,0.0 +21228,67,14,7,0.0 +21228,24,4.5,48,0.0 +21228,6,25,45,0.0 +21228,1,18,5,0.0 +21228,77,13,39,0.0 +21228,18,62.5,9,0.0 +21228,30,25.89,20,0.0 +21228,29,123.79,8,0.0 +21228,57,19.5,1,0.0 +21228,63,43.9,44,0.0 +21228,62,49.3,5,0.0 +21228,53,32.8,13,0.0 +21229,37,26,8,0.0 +21229,53,32.8,7,0.0 +21229,25,14,39,0.0 +21229,9,97,9,0.0 +21229,15,15.5,46,0.0 +21229,35,18,13,0.0 +21229,11,21,43,0.0 +21229,26,31.23,21,0.0 +21229,36,19,37,0.0 +21229,23,9,12,0.0 +21229,66,17,45,0.0 +21229,30,25.89,37,0.0 +21229,68,12.5,2,0.0 +21229,77,13,38,0.0 +21229,75,7.75,25,0.0 +21229,32,32,32,0.0 +21229,56,38,29,0.0 +21229,31,12.5,39,0.0 +21229,5,21.35,41,0.0 +21229,50,16.25,12,0.0 +21229,39,18,43,0.0 +21229,74,10,2,0.0 +21229,33,2.5,27,0.0 +21229,63,43.9,11,0.0 +21229,8,40,31,0.0 +21229,43,46,6,0.0 +21229,2,19,34,0.0 +21229,28,45.6,18,0.0 +21229,67,14,19,0.0 +21229,41,9.65,20,0.0 +21229,46,12,39,0.0 +21229,71,21.5,2,0.0 +21229,59,55,27,0.0 +21229,42,14,4,0.0 +21229,47,9.5,32,0.0 +21229,70,15,35,0.0 +21229,7,30,33,0.0 +21229,3,10,13,0.0 +21229,44,19.45,47,0.0 +21229,29,123.79,20,0.0 +21229,14,23.25,39,0.0 +21229,24,4.5,30,0.0 +21229,45,9.5,26,0.0 +21229,13,6,2,0.0 +21229,76,18,3,0.0 +21229,12,38,13,0.0 +21229,27,43.9,42,0.0 +21229,19,9.2,7,0.0 +21230,33,2.5,46,0.0 +21230,52,7,26,0.0 +21230,42,14,14,0.0 +21230,69,36,13,0.0 +21230,32,32,41,0.0 +21230,58,13.25,10,0.0 +21230,43,46,34,0.0 +21230,54,7.45,35,0.0 +21230,66,17,24,0.0 +21230,34,14,20,0.0 +21230,20,81,13,0.0 +21230,1,18,36,0.0 +21230,38,263.5,3,0.0 +21230,53,32.8,10,0.0 +21230,7,30,28,0.0 +21230,2,19,23,0.0 +21230,57,19.5,48,0.0 +21230,56,38,5,0.0 +21230,8,40,48,0.0 +21230,35,18,32,0.0 +21230,3,10,44,0.0 +21230,46,12,13,0.0 +21230,5,21.35,30,0.0 +21230,19,9.2,48,0.0 +21230,72,34.8,22,0.0 +21230,31,12.5,15,0.0 +21230,73,15,27,0.0 +21230,45,9.5,19,0.0 +21230,22,21,22,0.0 +21230,10,31,44,0.0 +21230,75,7.75,34,0.0 +21230,4,22,40,0.0 +21230,41,9.65,5,0.0 +21230,6,25,37,0.0 +21230,40,18.4,19,0.0 +21230,62,49.3,14,0.0 +21230,11,21,24,0.0 +21230,18,62.5,16,0.0 +21230,12,38,44,0.0 +21230,71,21.5,49,0.0 +21230,28,45.6,7,0.0 +21230,74,10,43,0.0 +21230,29,123.79,13,0.0 +21230,61,28.5,23,0.0 +21230,14,23.25,12,0.0 +21230,67,14,39,0.0 +21230,26,31.23,26,0.0 +21230,36,19,19,0.0 +21230,39,18,1,0.0 +21230,68,12.5,16,0.0 +21230,21,10,13,0.0 +21230,51,53,2,0.0 +21230,16,17.45,49,0.0 +21230,15,15.5,39,0.0 +21230,48,12.75,47,0.0 +21230,55,24,2,0.0 +21230,65,21.05,48,0.0 +21230,50,16.25,50,0.0 +21230,59,55,44,0.0 +21230,30,25.89,12,0.0 +21230,47,9.5,25,0.0 +21230,70,15,47,0.0 +21230,44,19.45,21,0.0 +21230,27,43.9,40,0.0 +21230,24,4.5,41,0.0 +21230,25,14,13,0.0 +21231,11,21,12,0.0 +21231,67,14,48,0.0 +21231,46,12,41,0.0 +21231,24,4.5,36,0.0 +21231,33,2.5,31,0.0 +21231,64,33.25,21,0.0 +21231,63,43.9,15,0.0 +21231,36,19,9,0.0 +21231,12,38,44,0.0 +21231,56,38,27,0.0 +21231,32,32,1,0.0 +21231,21,10,32,0.0 +21231,38,263.5,40,0.0 +21231,75,7.75,16,0.0 +21231,53,32.8,42,0.0 +21231,60,34,3,0.0 +21231,72,34.8,28,0.0 +21231,77,13,42,0.0 +21231,58,13.25,45,0.0 +21231,1,18,12,0.0 +21231,10,31,27,0.0 +21231,22,21,12,0.0 +21231,34,14,7,0.0 +21231,43,46,16,0.0 +21231,3,10,43,0.0 +21231,13,6,5,0.0 +21231,25,14,28,0.0 +21231,44,19.45,7,0.0 +21231,71,21.5,15,0.0 +21231,55,24,17,0.0 +21231,18,62.5,25,0.0 +21231,9,97,24,0.0 +21231,29,123.79,40,0.0 +21231,16,17.45,47,0.0 +21231,27,43.9,5,0.0 +21231,73,15,40,0.0 +21231,14,23.25,30,0.0 +21231,66,17,48,0.0 +21231,49,20,10,0.0 +21231,68,12.5,13,0.0 +21231,7,30,2,0.0 +21231,50,16.25,28,0.0 +21231,51,53,10,0.0 +21231,69,36,21,0.0 +21231,76,18,34,0.0 +21231,37,26,46,0.0 +21231,41,9.65,17,0.0 +21231,4,22,46,0.0 +21231,39,18,7,0.0 +21231,30,25.89,44,0.0 +21231,15,15.5,27,0.0 +21231,6,25,22,0.0 +21231,42,14,2,0.0 +21231,59,55,36,0.0 +21231,65,21.05,41,0.0 +21231,70,15,22,0.0 +21231,40,18.4,11,0.0 +21231,5,21.35,39,0.0 +21231,62,49.3,47,0.0 +21231,23,9,39,0.0 +21231,74,10,22,0.0 +21231,35,18,29,0.0 +21231,47,9.5,25,0.0 +21231,20,81,37,0.0 +21231,57,19.5,14,0.0 +21231,19,9.2,20,0.0 +21231,31,12.5,43,0.0 +21231,17,39,22,0.0 +21231,2,19,17,0.0 +21231,28,45.6,18,0.0 +21231,61,28.5,27,0.0 +21231,8,40,11,0.0 +21231,54,7.45,9,0.0 +21231,45,9.5,24,0.0 +21231,52,7,14,0.0 +21231,48,12.75,29,0.0 +21232,8,40,49,0.0 +21232,31,12.5,36,0.0 +21232,12,38,17,0.0 +21232,21,10,31,0.0 +21232,56,38,23,0.0 +21232,77,13,24,0.0 +21232,9,97,48,0.0 +21232,11,21,40,0.0 +21232,7,30,31,0.0 +21232,48,12.75,15,0.0 +21232,41,9.65,49,0.0 +21232,27,43.9,49,0.0 +21232,23,9,1,0.0 +21232,57,19.5,20,0.0 +21232,16,17.45,13,0.0 +21232,17,39,26,0.0 +21233,50,16.25,26,0.0 +21233,27,43.9,42,0.0 +21233,72,34.8,3,0.0 +21233,31,12.5,40,0.0 +21233,7,30,49,0.0 +21234,23,9,8,0.0 +21234,56,38,2,0.0 +21234,53,32.8,26,0.0 +21234,31,12.5,9,0.0 +21234,64,33.25,35,0.0 +21234,44,19.45,31,0.0 +21234,70,15,30,0.0 +21234,49,20,15,0.0 +21234,65,21.05,18,0.0 +21234,39,18,41,0.0 +21234,12,38,7,0.0 +21234,25,14,28,0.0 +21234,29,123.79,30,0.0 +21234,1,18,15,0.0 +21234,24,4.5,8,0.0 +21234,58,13.25,10,0.0 +21234,62,49.3,46,0.0 +21234,27,43.9,34,0.0 +21234,37,26,38,0.0 +21234,60,34,22,0.0 +21234,71,21.5,20,0.0 +21234,16,17.45,32,0.0 +21234,42,14,43,0.0 +21234,13,6,13,0.0 +21234,3,10,17,0.0 +21234,51,53,29,0.0 +21234,57,19.5,31,0.0 +21234,46,12,4,0.0 +21234,4,22,3,0.0 +21234,40,18.4,45,0.0 +21234,10,31,12,0.0 +21234,54,7.45,32,0.0 +21234,67,14,40,0.0 +21234,59,55,35,0.0 +21234,55,24,5,0.0 +21234,22,21,36,0.0 +21234,19,9.2,36,0.0 +21234,77,13,26,0.0 +21234,28,45.6,16,0.0 +21234,43,46,5,0.0 +21234,69,36,29,0.0 +21234,7,30,4,0.0 +21234,48,12.75,44,0.0 +21234,75,7.75,23,0.0 +21234,41,9.65,29,0.0 +21234,17,39,40,0.0 +21234,61,28.5,25,0.0 +21234,5,21.35,31,0.0 +21234,32,32,26,0.0 +21234,21,10,37,0.0 +21234,30,25.89,31,0.0 +21234,26,31.23,17,0.0 +21234,73,15,5,0.0 +21234,8,40,38,0.0 +21234,45,9.5,15,0.0 +21234,36,19,20,0.0 +21234,63,43.9,39,0.0 +21234,2,19,40,0.0 +21235,44,19.45,23,0.0 +21235,29,123.79,26,0.0 +21235,65,21.05,48,0.0 +21235,45,9.5,36,0.0 +21235,11,21,1,0.0 +21235,73,15,21,0.0 +21235,20,81,40,0.0 +21235,19,9.2,35,0.0 +21235,69,36,21,0.0 +21235,3,10,23,0.0 +21235,33,2.5,5,0.0 +21235,31,12.5,19,0.0 +21235,7,30,4,0.0 +21235,40,18.4,2,0.0 +21235,56,38,4,0.0 +21235,14,23.25,27,0.0 +21235,24,4.5,18,0.0 +21235,8,40,50,0.0 +21235,12,38,31,0.0 +21235,34,14,31,0.0 +21235,5,21.35,46,0.0 +21235,48,12.75,37,0.0 +21235,61,28.5,45,0.0 +21235,1,18,25,0.0 +21235,64,33.25,18,0.0 +21235,16,17.45,26,0.0 +21235,53,32.8,34,0.0 +21235,13,6,26,0.0 +21235,9,97,17,0.0 +21236,43,46,43,0.0 +21236,74,10,2,0.0 +21236,69,36,9,0.0 +21236,44,19.45,23,0.0 +21236,11,21,1,0.0 +21236,6,25,10,0.0 +21236,71,21.5,39,0.0 +21236,2,19,4,0.0 +21236,47,9.5,16,0.0 +21236,26,31.23,31,0.0 +21236,52,7,47,0.0 +21236,75,7.75,50,0.0 +21236,67,14,47,0.0 +21236,59,55,42,0.0 +21236,28,45.6,48,0.0 +21236,55,24,43,0.0 +21236,40,18.4,34,0.0 +21236,41,9.65,12,0.0 +21236,22,21,25,0.0 +21236,15,15.5,34,0.0 +21236,38,263.5,3,0.0 +21236,27,43.9,6,0.0 +21236,9,97,5,0.0 +21236,37,26,35,0.0 +21236,46,12,14,0.0 +21236,65,21.05,20,0.0 +21236,39,18,19,0.0 +21236,29,123.79,17,0.0 +21236,33,2.5,42,0.0 +21236,32,32,30,0.0 +21236,77,13,45,0.0 +21236,36,19,48,0.0 +21236,35,18,21,0.0 +21236,10,31,38,0.0 +21236,17,39,50,0.0 +21236,51,53,22,0.0 +21236,25,14,25,0.0 +21237,31,12.5,13,0.0 +21237,68,12.5,13,0.0 +21237,22,21,18,0.0 +21237,21,10,1,0.0 +21237,14,23.25,41,0.0 +21237,5,21.35,25,0.0 +21237,33,2.5,4,0.0 +21237,74,10,43,0.0 +21237,69,36,42,0.0 +21237,77,13,1,0.0 +21237,43,46,2,0.0 +21237,23,9,32,0.0 +21237,3,10,42,0.0 +21237,56,38,29,0.0 +21237,25,14,38,0.0 +21237,34,14,32,0.0 +21237,40,18.4,49,0.0 +21237,75,7.75,15,0.0 +21237,54,7.45,32,0.0 +21237,71,21.5,9,0.0 +21237,1,18,36,0.0 +21237,46,12,49,0.0 +21238,35,18,22,0.0 +21238,21,10,35,0.0 +21238,27,43.9,33,0.0 +21238,67,14,3,0.0 +21238,11,21,50,0.0 +21238,76,18,8,0.0 +21238,64,33.25,23,0.0 +21238,44,19.45,24,0.0 +21238,29,123.79,1,0.0 +21238,15,15.5,18,0.0 +21238,36,19,31,0.0 +21238,60,34,7,0.0 +21238,39,18,22,0.0 +21238,37,26,39,0.0 +21238,8,40,23,0.0 +21238,51,53,25,0.0 +21238,7,30,18,0.0 +21238,43,46,15,0.0 +21238,41,9.65,12,0.0 +21238,18,62.5,16,0.0 +21238,61,28.5,3,0.0 +21239,9,97,35,0.0 +21239,66,17,28,0.0 +21239,16,17.45,15,0.0 +21239,69,36,28,0.0 +21239,44,19.45,42,0.0 +21239,42,14,27,0.0 +21239,59,55,31,0.0 +21239,26,31.23,12,0.0 +21239,52,7,11,0.0 +21239,35,18,39,0.0 +21239,72,34.8,29,0.0 +21239,22,21,15,0.0 +21240,2,19,13,0.0 +21240,33,2.5,10,0.0 +21240,15,15.5,2,0.0 +21240,13,6,9,0.0 +21240,50,16.25,43,0.0 +21240,63,43.9,45,0.0 +21240,44,19.45,4,0.0 +21240,42,14,29,0.0 +21240,11,21,22,0.0 +21240,38,263.5,37,0.0 +21240,71,21.5,44,0.0 +21240,28,45.6,37,0.0 +21240,14,23.25,8,0.0 +21240,51,53,23,0.0 +21240,73,15,8,0.0 +21240,26,31.23,21,0.0 +21240,6,25,46,0.0 +21240,32,32,38,0.0 +21240,40,18.4,22,0.0 +21240,43,46,13,0.0 +21240,77,13,23,0.0 +21240,59,55,25,0.0 +21240,8,40,34,0.0 +21240,67,14,26,0.0 +21240,19,9.2,27,0.0 +21240,34,14,39,0.0 +21240,68,12.5,34,0.0 +21240,31,12.5,14,0.0 +21240,25,14,8,0.0 +21240,58,13.25,1,0.0 +21240,17,39,34,0.0 +21240,52,7,20,0.0 +21240,56,38,1,0.0 +21240,70,15,34,0.0 +21240,4,22,13,0.0 +21240,21,10,14,0.0 +21240,75,7.75,14,0.0 +21240,39,18,30,0.0 +21240,48,12.75,34,0.0 +21240,76,18,14,0.0 +21240,12,38,20,0.0 +21240,5,21.35,19,0.0 +21240,22,21,21,0.0 +21240,61,28.5,10,0.0 +21240,60,34,1,0.0 +21240,69,36,17,0.0 +21240,18,62.5,41,0.0 +21240,9,97,6,0.0 +21240,16,17.45,19,0.0 +21240,23,9,1,0.0 +21240,24,4.5,42,0.0 +21240,74,10,6,0.0 +21240,37,26,50,0.0 +21240,30,25.89,42,0.0 +21240,65,21.05,13,0.0 +21240,1,18,23,0.0 +21240,62,49.3,10,0.0 +21240,54,7.45,4,0.0 +21240,3,10,31,0.0 +21240,36,19,34,0.0 +21240,27,43.9,6,0.0 +21240,66,17,33,0.0 +21240,41,9.65,39,0.0 +21240,53,32.8,26,0.0 +21240,49,20,24,0.0 +21240,35,18,21,0.0 +21240,46,12,1,0.0 +21240,45,9.5,9,0.0 +21240,47,9.5,6,0.0 +21240,10,31,4,0.0 +21240,72,34.8,26,0.0 +21240,7,30,47,0.0 +21241,30,25.89,49,0.0 +21241,56,38,47,0.0 +21241,32,32,4,0.0 +21241,41,9.65,40,0.0 +21241,13,6,17,0.0 +21241,11,21,2,0.0 +21241,19,9.2,25,0.0 +21241,46,12,13,0.0 +21241,1,18,40,0.0 +21241,59,55,13,0.0 +21241,77,13,16,0.0 +21242,44,19.45,37,0.0 +21242,75,7.75,49,0.0 +21242,65,21.05,45,0.0 +21242,62,49.3,10,0.0 +21242,2,19,26,0.0 +21242,4,22,11,0.0 +21242,57,19.5,14,0.0 +21242,20,81,31,0.0 +21242,14,23.25,45,0.0 +21242,59,55,42,0.0 +21242,54,7.45,3,0.0 +21242,77,13,23,0.0 +21242,64,33.25,50,0.0 +21242,63,43.9,47,0.0 +21242,27,43.9,15,0.0 +21242,67,14,5,0.0 +21242,19,9.2,32,0.0 +21242,70,15,49,0.0 +21242,29,123.79,18,0.0 +21242,31,12.5,46,0.0 +21242,30,25.89,3,0.0 +21242,34,14,31,0.0 +21242,71,21.5,33,0.0 +21242,51,53,32,0.0 +21242,22,21,15,0.0 +21242,61,28.5,8,0.0 +21242,73,15,16,0.0 +21242,17,39,26,0.0 +21242,10,31,45,0.0 +21242,35,18,50,0.0 +21242,58,13.25,44,0.0 +21242,49,20,39,0.0 +21242,16,17.45,29,0.0 +21243,5,21.35,31,0.0 +21243,15,15.5,20,0.0 +21243,72,34.8,11,0.0 +21243,61,28.5,12,0.0 +21243,6,25,28,0.0 +21243,1,18,6,0.0 +21243,43,46,47,0.0 +21243,54,7.45,39,0.0 +21243,48,12.75,38,0.0 +21243,21,10,27,0.0 +21243,34,14,17,0.0 +21243,36,19,19,0.0 +21243,33,2.5,49,0.0 +21243,68,12.5,43,0.0 +21243,73,15,45,0.0 +21243,70,15,38,0.0 +21243,39,18,8,0.0 +21243,14,23.25,21,0.0 +21243,50,16.25,40,0.0 +21243,8,40,36,0.0 +21243,45,9.5,1,0.0 +21243,62,49.3,40,0.0 +21243,65,21.05,48,0.0 +21243,9,97,34,0.0 +21243,22,21,33,0.0 +21243,71,21.5,27,0.0 +21243,59,55,38,0.0 +21243,55,24,11,0.0 +21243,30,25.89,9,0.0 +21244,3,10,31,0.0 +21244,65,21.05,15,0.0 +21244,75,7.75,2,0.0 +21244,47,9.5,32,0.0 +21244,20,81,28,0.0 +21244,35,18,48,0.0 +21245,67,14,41,0.0 +21245,26,31.23,29,0.0 +21245,10,31,26,0.0 +21245,1,18,20,0.0 +21245,37,26,34,0.0 +21245,58,13.25,10,0.0 +21245,59,55,50,0.0 +21245,17,39,29,0.0 +21245,70,15,16,0.0 +21245,13,6,8,0.0 +21245,53,32.8,45,0.0 +21245,27,43.9,8,0.0 +21245,25,14,50,0.0 +21245,36,19,12,0.0 +21245,11,21,50,0.0 +21245,62,49.3,21,0.0 +21245,35,18,28,0.0 +21245,29,123.79,42,0.0 +21245,73,15,13,0.0 +21245,74,10,9,0.0 +21245,7,30,26,0.0 +21245,34,14,42,0.0 +21245,21,10,18,0.0 +21245,15,15.5,33,0.0 +21245,64,33.25,13,0.0 +21245,60,34,33,0.0 +21245,69,36,43,0.0 +21245,57,19.5,5,0.0 +21245,42,14,27,0.0 +21245,56,38,29,0.0 +21245,77,13,6,0.0 +21245,46,12,40,0.0 +21245,30,25.89,7,0.0 +21245,65,21.05,46,0.0 +21245,24,4.5,47,0.0 +21245,28,45.6,47,0.0 +21245,19,9.2,42,0.0 +21245,76,18,43,0.0 +21245,16,17.45,16,0.0 +21245,23,9,11,0.0 +21245,66,17,12,0.0 +21245,5,21.35,25,0.0 +21245,61,28.5,24,0.0 +21245,68,12.5,41,0.0 +21245,54,7.45,7,0.0 +21245,32,32,49,0.0 +21245,72,34.8,28,0.0 +21245,44,19.45,45,0.0 +21245,41,9.65,21,0.0 +21245,45,9.5,23,0.0 +21245,18,62.5,41,0.0 +21245,9,97,32,0.0 +21245,52,7,4,0.0 +21245,2,19,21,0.0 +21245,51,53,32,0.0 +21245,75,7.75,9,0.0 +21245,38,263.5,34,0.0 +21245,50,16.25,29,0.0 +21245,8,40,49,0.0 +21245,48,12.75,39,0.0 +21246,34,14,24,0.0 +21246,43,46,34,0.0 +21246,55,24,5,0.0 +21246,71,21.5,9,0.0 +21246,51,53,7,0.0 +21246,7,30,28,0.0 +21246,1,18,17,0.0 +21246,62,49.3,47,0.0 +21246,45,9.5,16,0.0 +21246,76,18,44,0.0 +21246,30,25.89,31,0.0 +21246,37,26,24,0.0 +21246,60,34,46,0.0 +21246,38,263.5,24,0.0 +21246,68,12.5,30,0.0 +21246,54,7.45,40,0.0 +21246,64,33.25,18,0.0 +21246,53,32.8,9,0.0 +21246,69,36,10,0.0 +21246,73,15,17,0.0 +21246,14,23.25,45,0.0 +21246,13,6,25,0.0 +21246,23,9,33,0.0 +21246,4,22,25,0.0 +21246,42,14,42,0.0 +21246,2,19,24,0.0 +21246,52,7,3,0.0 +21246,48,12.75,32,0.0 +21246,3,10,44,0.0 +21246,70,15,37,0.0 +21246,25,14,10,0.0 +21246,58,13.25,34,0.0 +21246,17,39,14,0.0 +21246,32,32,27,0.0 +21247,10,31,46,0.0 +21247,34,14,17,0.0 +21247,32,32,25,0.0 +21247,8,40,15,0.0 +21247,56,38,47,0.0 +21247,72,34.8,39,0.0 +21247,7,30,3,0.0 +21247,27,43.9,8,0.0 +21247,9,97,18,0.0 +21247,76,18,43,0.0 +21247,28,45.6,20,0.0 +21247,11,21,43,0.0 +21247,65,21.05,42,0.0 +21247,19,9.2,10,0.0 +21247,53,32.8,10,0.0 +21247,74,10,17,0.0 +21247,5,21.35,45,0.0 +21247,64,33.25,37,0.0 +21247,41,9.65,11,0.0 +21247,60,34,46,0.0 +21247,30,25.89,30,0.0 +21247,55,24,40,0.0 +21247,17,39,39,0.0 +21247,58,13.25,29,0.0 +21247,33,2.5,3,0.0 +21247,42,14,29,0.0 +21247,15,15.5,49,0.0 +21247,35,18,22,0.0 +21247,1,18,27,0.0 +21247,12,38,12,0.0 +21247,31,12.5,47,0.0 +21247,16,17.45,13,0.0 +21247,21,10,48,0.0 +21247,52,7,7,0.0 +21247,2,19,23,0.0 +21247,69,36,23,0.0 +21247,45,9.5,34,0.0 +21247,6,25,46,0.0 +21247,25,14,8,0.0 +21247,61,28.5,26,0.0 +21247,51,53,37,0.0 +21247,4,22,7,0.0 +21247,75,7.75,4,0.0 +21247,22,21,19,0.0 +21247,71,21.5,16,0.0 +21247,68,12.5,46,0.0 +21247,73,15,5,0.0 +21247,26,31.23,16,0.0 +21248,25,14,44,0.0 +21248,11,21,14,0.0 +21248,24,4.5,28,0.0 +21248,77,13,10,0.0 +21248,8,40,4,0.0 +21248,51,53,39,0.0 +21248,70,15,2,0.0 +21248,22,21,44,0.0 +21248,59,55,42,0.0 +21248,36,19,27,0.0 +21248,2,19,47,0.0 +21248,69,36,21,0.0 +21248,71,21.5,37,0.0 +21248,38,263.5,42,0.0 +21248,19,9.2,44,0.0 +21248,54,7.45,14,0.0 +21248,64,33.25,5,0.0 +21248,62,49.3,35,0.0 +21248,6,25,32,0.0 +21248,39,18,4,0.0 +21248,53,32.8,12,0.0 +21248,57,19.5,32,0.0 +21248,12,38,42,0.0 +21248,9,97,18,0.0 +21248,60,34,1,0.0 +21248,41,9.65,49,0.0 +21248,45,9.5,45,0.0 +21248,67,14,41,0.0 +21248,49,20,50,0.0 +21248,74,10,44,0.0 +21248,66,17,39,0.0 +21248,28,45.6,6,0.0 +21248,21,10,46,0.0 +21248,5,21.35,37,0.0 +21248,76,18,25,0.0 +21248,56,38,30,0.0 +21248,35,18,30,0.0 +21248,29,123.79,42,0.0 +21248,68,12.5,24,0.0 +21248,33,2.5,44,0.0 +21248,40,18.4,50,0.0 +21248,42,14,43,0.0 +21248,58,13.25,31,0.0 +21248,65,21.05,44,0.0 +21248,37,26,19,0.0 +21248,46,12,47,0.0 +21248,43,46,31,0.0 +21248,14,23.25,49,0.0 +21248,10,31,27,0.0 +21248,1,18,7,0.0 +21248,20,81,43,0.0 +21248,30,25.89,45,0.0 +21248,26,31.23,1,0.0 +21248,52,7,5,0.0 +21248,61,28.5,36,0.0 +21248,31,12.5,38,0.0 +21248,34,14,13,0.0 +21248,3,10,17,0.0 +21248,27,43.9,45,0.0 +21248,32,32,34,0.0 +21248,15,15.5,48,0.0 +21248,63,43.9,9,0.0 +21248,23,9,35,0.0 +21248,48,12.75,36,0.0 +21249,75,7.75,46,0.0 +21249,37,26,20,0.0 +21249,11,21,11,0.0 +21249,45,9.5,39,0.0 +21249,15,15.5,27,0.0 +21249,18,62.5,43,0.0 +21249,22,21,37,0.0 +21249,13,6,40,0.0 +21249,24,4.5,9,0.0 +21249,74,10,49,0.0 +21249,62,49.3,27,0.0 +21249,8,40,7,0.0 +21249,38,263.5,23,0.0 +21249,28,45.6,9,0.0 +21249,21,10,27,0.0 +21249,23,9,13,0.0 +21250,23,9,21,0.0 +21250,64,33.25,5,0.0 +21250,67,14,43,0.0 +21250,20,81,31,0.0 +21250,9,97,9,0.0 +21250,41,9.65,16,0.0 +21250,54,7.45,48,0.0 +21250,56,38,49,0.0 +21250,49,20,43,0.0 +21250,42,14,36,0.0 +21250,5,21.35,49,0.0 +21250,22,21,6,0.0 +21250,32,32,9,0.0 +21250,37,26,48,0.0 +21250,57,19.5,35,0.0 +21250,74,10,34,0.0 +21250,66,17,42,0.0 +21250,36,19,31,0.0 +21250,45,9.5,42,0.0 +21250,44,19.45,47,0.0 +21250,2,19,31,0.0 +21250,31,12.5,25,0.0 +21250,58,13.25,32,0.0 +21250,52,7,45,0.0 +21250,50,16.25,7,0.0 +21250,6,25,41,0.0 +21250,40,18.4,2,0.0 +21250,48,12.75,48,0.0 +21250,38,263.5,12,0.0 +21250,17,39,35,0.0 +21250,55,24,29,0.0 +21250,26,31.23,20,0.0 +21250,16,17.45,26,0.0 +21250,43,46,40,0.0 +21250,68,12.5,46,0.0 +21250,63,43.9,50,0.0 +21250,77,13,17,0.0 +21250,35,18,21,0.0 +21250,15,15.5,8,0.0 +21250,34,14,38,0.0 +21250,10,31,10,0.0 +21250,25,14,1,0.0 +21251,25,14,38,0.0 +21251,75,7.75,48,0.0 +21251,70,15,12,0.0 +21251,58,13.25,20,0.0 +21251,3,10,11,0.0 +21251,49,20,37,0.0 +21251,56,38,26,0.0 +21251,24,4.5,4,0.0 +21251,40,18.4,35,0.0 +21251,4,22,46,0.0 +21251,47,9.5,46,0.0 +21251,32,32,23,0.0 +21251,17,39,31,0.0 +21251,15,15.5,18,0.0 +21251,48,12.75,37,0.0 +21251,54,7.45,50,0.0 +21251,72,34.8,12,0.0 +21251,57,19.5,34,0.0 +21251,27,43.9,47,0.0 +21251,65,21.05,46,0.0 +21251,8,40,50,0.0 +21251,6,25,20,0.0 +21251,28,45.6,3,0.0 +21251,74,10,27,0.0 +21251,30,25.89,12,0.0 +21251,16,17.45,20,0.0 +21251,21,10,43,0.0 +21251,76,18,15,0.0 +21251,60,34,46,0.0 +21251,44,19.45,6,0.0 +21251,73,15,30,0.0 +21251,18,62.5,13,0.0 +21251,77,13,34,0.0 +21251,62,49.3,11,0.0 +21251,26,31.23,42,0.0 +21251,51,53,2,0.0 +21251,13,6,8,0.0 +21251,63,43.9,29,0.0 +21251,11,21,21,0.0 +21251,69,36,29,0.0 +21251,59,55,13,0.0 +21251,39,18,22,0.0 +21251,53,32.8,39,0.0 +21251,1,18,41,0.0 +21251,12,38,26,0.0 +21251,61,28.5,23,0.0 +21251,2,19,28,0.0 +21251,29,123.79,26,0.0 +21251,38,263.5,2,0.0 +21251,31,12.5,50,0.0 +21251,55,24,9,0.0 +21251,14,23.25,37,0.0 +21251,22,21,17,0.0 +21251,45,9.5,27,0.0 +21252,72,34.8,49,0.0 +21252,77,13,20,0.0 +21252,37,26,20,0.0 +21252,74,10,49,0.0 +21252,27,43.9,34,0.0 +21252,26,31.23,27,0.0 +21252,34,14,21,0.0 +21252,55,24,9,0.0 +21252,5,21.35,26,0.0 +21252,24,4.5,37,0.0 +21252,52,7,46,0.0 +21252,47,9.5,12,0.0 +21252,62,49.3,6,0.0 +21252,2,19,37,0.0 +21252,18,62.5,49,0.0 +21252,25,14,28,0.0 +21252,48,12.75,6,0.0 +21252,54,7.45,14,0.0 +21252,33,2.5,22,0.0 +21252,14,23.25,25,0.0 +21252,39,18,44,0.0 +21252,12,38,38,0.0 +21252,13,6,2,0.0 +21252,31,12.5,45,0.0 +21252,60,34,17,0.0 +21252,57,19.5,41,0.0 +21252,50,16.25,22,0.0 +21252,73,15,21,0.0 +21252,70,15,37,0.0 +21252,41,9.65,2,0.0 +21252,28,45.6,2,0.0 +21252,7,30,16,0.0 +21252,21,10,50,0.0 +21252,4,22,12,0.0 +21252,32,32,7,0.0 +21252,22,21,33,0.0 +21252,15,15.5,9,0.0 +21253,19,9.2,25,0.0 +21253,61,28.5,28,0.0 +21253,5,21.35,10,0.0 +21253,14,23.25,19,0.0 +21253,31,12.5,33,0.0 +21253,37,26,31,0.0 +21253,45,9.5,28,0.0 +21253,33,2.5,30,0.0 +21253,12,38,6,0.0 +21253,62,49.3,14,0.0 +21253,43,46,15,0.0 +21253,8,40,49,0.0 +21253,28,45.6,31,0.0 +21253,17,39,22,0.0 +21253,69,36,7,0.0 +21253,11,21,18,0.0 +21253,24,4.5,44,0.0 +21253,21,10,39,0.0 +21253,34,14,30,0.0 +21253,77,13,22,0.0 +21253,42,14,49,0.0 +21253,71,21.5,45,0.0 +21253,15,15.5,13,0.0 +21253,30,25.89,27,0.0 +21253,4,22,40,0.0 +21253,6,25,34,0.0 +21253,13,6,20,0.0 +21253,22,21,25,0.0 +21253,59,55,12,0.0 +21253,55,24,19,0.0 +21253,18,62.5,48,0.0 +21253,66,17,50,0.0 +21253,60,34,17,0.0 +21253,73,15,32,0.0 +21253,57,19.5,33,0.0 +21253,44,19.45,3,0.0 +21253,64,33.25,2,0.0 +21253,67,14,7,0.0 +21253,9,97,37,0.0 +21253,16,17.45,47,0.0 +21253,23,9,23,0.0 +21253,50,16.25,10,0.0 +21253,49,20,34,0.0 +21254,56,38,41,0.0 +21254,13,6,4,0.0 +21254,65,21.05,13,0.0 +21254,39,18,28,0.0 +21254,57,19.5,13,0.0 +21254,51,53,46,0.0 +21254,63,43.9,18,0.0 +21254,25,14,24,0.0 +21254,52,7,20,0.0 +21254,44,19.45,39,0.0 +21254,8,40,27,0.0 +21254,33,2.5,48,0.0 +21254,32,32,26,0.0 +21254,74,10,17,0.0 +21254,34,14,16,0.0 +21254,17,39,40,0.0 +21254,45,9.5,44,0.0 +21254,77,13,5,0.0 +21254,48,12.75,34,0.0 +21254,61,28.5,19,0.0 +21254,54,7.45,29,0.0 +21254,72,34.8,22,0.0 +21254,5,21.35,2,0.0 +21254,19,9.2,13,0.0 +21254,7,30,32,0.0 +21254,3,10,42,0.0 +21254,68,12.5,11,0.0 +21254,67,14,1,0.0 +21254,46,12,33,0.0 +21254,70,15,24,0.0 +21254,28,45.6,47,0.0 +21254,10,31,34,0.0 +21254,16,17.45,47,0.0 +21254,43,46,25,0.0 +21254,6,25,38,0.0 +21254,40,18.4,25,0.0 +21255,49,20,18,0.0 +21255,13,6,43,0.0 +21255,48,12.75,45,0.0 +21255,54,7.45,13,0.0 +21255,8,40,13,0.0 +21255,71,21.5,9,0.0 +21255,51,53,46,0.0 +21255,77,13,40,0.0 +21255,41,9.65,46,0.0 +21255,7,30,14,0.0 +21255,45,9.5,36,0.0 +21255,72,34.8,38,0.0 +21255,44,19.45,18,0.0 +21255,1,18,47,0.0 +21255,67,14,16,0.0 +21255,32,32,26,0.0 +21255,66,17,18,0.0 +21255,60,34,38,0.0 +21255,9,97,14,0.0 +21255,6,25,27,0.0 +21255,23,9,50,0.0 +21255,27,43.9,8,0.0 +21255,39,18,10,0.0 +21255,47,9.5,34,0.0 +21255,12,38,5,0.0 +21255,18,62.5,37,0.0 +21255,56,38,6,0.0 +21255,35,18,42,0.0 +21255,68,12.5,2,0.0 +21255,16,17.45,11,0.0 +21255,33,2.5,22,0.0 +21255,38,263.5,41,0.0 +21255,63,43.9,20,0.0 +21255,25,14,3,0.0 +21255,61,28.5,50,0.0 +21255,15,15.5,27,0.0 +21255,26,31.23,4,0.0 +21255,22,21,24,0.0 +21255,40,18.4,38,0.0 +21255,57,19.5,45,0.0 +21255,29,123.79,35,0.0 +21255,5,21.35,5,0.0 +21255,10,31,21,0.0 +21255,70,15,47,0.0 +21255,28,45.6,12,0.0 +21255,43,46,42,0.0 +21255,24,4.5,34,0.0 +21255,37,26,39,0.0 +21255,14,23.25,49,0.0 +21255,58,13.25,46,0.0 +21255,42,14,2,0.0 +21255,64,33.25,11,0.0 +21255,59,55,30,0.0 +21255,20,81,16,0.0 +21255,46,12,7,0.0 +21255,19,9.2,45,0.0 +21255,4,22,26,0.0 +21255,21,10,3,0.0 +21255,52,7,35,0.0 +21255,73,15,30,0.0 +21255,69,36,19,0.0 +21255,62,49.3,38,0.0 +21255,53,32.8,46,0.0 +21255,30,25.89,23,0.0 +21255,76,18,8,0.0 +21255,50,16.25,45,0.0 +21255,55,24,45,0.0 +21256,55,24,21,0.0 +21256,61,28.5,2,0.0 +21256,16,17.45,7,0.0 +21257,19,9.2,11,0.0 +21258,10,31,8,0.0 +21258,34,14,49,0.0 +21258,48,12.75,47,0.0 +21258,31,12.5,12,0.0 +21258,59,55,18,0.0 +21258,41,9.65,20,0.0 +21258,37,26,14,0.0 +21258,3,10,17,0.0 +21258,43,46,35,0.0 +21258,44,19.45,11,0.0 +21258,52,7,18,0.0 +21258,4,22,28,0.0 +21258,46,12,9,0.0 +21258,16,17.45,26,0.0 +21258,49,20,32,0.0 +21258,5,21.35,2,0.0 +21258,65,21.05,44,0.0 +21258,13,6,21,0.0 +21258,40,18.4,12,0.0 +21258,60,34,17,0.0 +21258,53,32.8,9,0.0 +21258,72,34.8,49,0.0 +21258,36,19,15,0.0 +21258,50,16.25,27,0.0 +21258,62,49.3,37,0.0 +21258,30,25.89,2,0.0 +21258,71,21.5,26,0.0 +21258,74,10,39,0.0 +21258,32,32,49,0.0 +21258,58,13.25,8,0.0 +21258,70,15,43,0.0 +21258,27,43.9,45,0.0 +21258,26,31.23,24,0.0 +21258,14,23.25,36,0.0 +21258,42,14,11,0.0 +21258,68,12.5,25,0.0 +21258,22,21,12,0.0 +21258,1,18,23,0.0 +21258,39,18,19,0.0 +21258,6,25,9,0.0 +21258,63,43.9,1,0.0 +21258,76,18,7,0.0 +21258,75,7.75,12,0.0 +21258,77,13,7,0.0 +21259,51,53,6,0.0 +21259,46,12,41,0.0 +21259,29,123.79,50,0.0 +21259,33,2.5,25,0.0 +21259,71,21.5,2,0.0 +21259,53,32.8,42,0.0 +21259,34,14,25,0.0 +21259,16,17.45,27,0.0 +21259,65,21.05,46,0.0 +21259,21,10,47,0.0 +21259,72,34.8,2,0.0 +21259,13,6,31,0.0 +21259,4,22,34,0.0 +21259,35,18,10,0.0 +21259,70,15,36,0.0 +21259,49,20,30,0.0 +21259,55,24,17,0.0 +21259,61,28.5,26,0.0 +21259,63,43.9,8,0.0 +21259,19,9.2,49,0.0 +21259,22,21,43,0.0 +21259,60,34,44,0.0 +21259,47,9.5,47,0.0 +21259,17,39,38,0.0 +21259,26,31.23,22,0.0 +21259,58,13.25,23,0.0 +21259,43,46,5,0.0 +21259,68,12.5,34,0.0 +21259,3,10,22,0.0 +21259,67,14,12,0.0 +21259,11,21,40,0.0 +21259,69,36,2,0.0 +21259,27,43.9,30,0.0 +21259,15,15.5,43,0.0 +21259,75,7.75,13,0.0 +21259,37,26,2,0.0 +21259,62,49.3,40,0.0 +21259,45,9.5,20,0.0 +21259,7,30,16,0.0 +21260,50,16.25,39,0.0 +21260,72,34.8,13,0.0 +21260,9,97,28,0.0 +21260,65,21.05,21,0.0 +21260,25,14,21,0.0 +21260,29,123.79,3,0.0 +21260,11,21,46,0.0 +21260,70,15,43,0.0 +21260,19,9.2,25,0.0 +21260,2,19,18,0.0 +21260,53,32.8,17,0.0 +21260,34,14,35,0.0 +21260,16,17.45,20,0.0 +21260,75,7.75,23,0.0 +21260,12,38,15,0.0 +21260,46,12,16,0.0 +21260,39,18,39,0.0 +21260,61,28.5,49,0.0 +21260,45,9.5,26,0.0 +21260,67,14,34,0.0 +21260,20,81,15,0.0 +21260,76,18,10,0.0 +21260,10,31,39,0.0 +21260,14,23.25,11,0.0 +21260,31,12.5,33,0.0 +21260,32,32,41,0.0 +21260,40,18.4,37,0.0 +21260,13,6,40,0.0 +21260,57,19.5,5,0.0 +21260,4,22,40,0.0 +21260,52,7,47,0.0 +21260,18,62.5,14,0.0 +21260,73,15,23,0.0 +21260,48,12.75,42,0.0 +21260,69,36,42,0.0 +21260,58,13.25,49,0.0 +21260,74,10,27,0.0 +21260,71,21.5,1,0.0 +21260,62,49.3,8,0.0 +21260,35,18,40,0.0 +21260,21,10,8,0.0 +21260,59,55,1,0.0 +21260,27,43.9,35,0.0 +21260,44,19.45,19,0.0 +21260,3,10,48,0.0 +21260,26,31.23,31,0.0 +21260,23,9,3,0.0 +21260,42,14,2,0.0 +21260,28,45.6,34,0.0 +21260,77,13,30,0.0 +21260,54,7.45,44,0.0 +21260,6,25,37,0.0 +21260,55,24,11,0.0 +21260,43,46,25,0.0 +21260,63,43.9,24,0.0 +21260,68,12.5,41,0.0 +21260,15,15.5,13,0.0 +21260,1,18,23,0.0 +21260,56,38,29,0.0 +21261,17,39,12,0.0 +21261,61,28.5,5,0.0 +21261,75,7.75,36,0.0 +21261,66,17,21,0.0 +21261,77,13,11,0.0 +21261,76,18,9,0.0 +21261,18,62.5,11,0.0 +21261,20,81,3,0.0 +21261,33,2.5,3,0.0 +21261,22,21,30,0.0 +21261,55,24,10,0.0 +21261,34,14,21,0.0 +21261,70,15,29,0.0 +21261,42,14,9,0.0 +21262,40,18.4,20,0.0 +21262,73,15,37,0.0 +21262,21,10,25,0.0 +21262,26,31.23,40,0.0 +21262,36,19,42,0.0 +21262,42,14,41,0.0 +21262,70,15,28,0.0 +21263,66,17,11,0.0 +21263,44,19.45,12,0.0 +21263,7,30,50,0.0 +21263,72,34.8,39,0.0 +21263,15,15.5,35,0.0 +21263,43,46,9,0.0 +21263,21,10,13,0.0 +21263,65,21.05,35,0.0 +21263,48,12.75,11,0.0 +21263,41,9.65,12,0.0 +21263,47,9.5,7,0.0 +21263,77,13,13,0.0 +21263,67,14,30,0.0 +21263,31,12.5,49,0.0 +21263,25,14,18,0.0 +21263,37,26,26,0.0 +21263,28,45.6,20,0.0 +21263,64,33.25,22,0.0 +21263,27,43.9,48,0.0 +21263,46,12,45,0.0 +21263,69,36,13,0.0 +21263,34,14,32,0.0 +21263,38,263.5,26,0.0 +21263,50,16.25,9,0.0 +21263,54,7.45,10,0.0 +21263,2,19,17,0.0 +21263,14,23.25,39,0.0 +21263,19,9.2,1,0.0 +21263,62,49.3,45,0.0 +21263,6,25,42,0.0 +21263,26,31.23,2,0.0 +21263,57,19.5,38,0.0 +21263,60,34,25,0.0 +21263,33,2.5,19,0.0 +21263,58,13.25,32,0.0 +21263,9,97,27,0.0 +21263,40,18.4,50,0.0 +21263,4,22,26,0.0 +21263,11,21,21,0.0 +21263,53,32.8,4,0.0 +21263,10,31,2,0.0 +21263,32,32,9,0.0 +21263,59,55,14,0.0 +21263,22,21,1,0.0 +21263,55,24,10,0.0 +21263,70,15,17,0.0 +21263,73,15,34,0.0 +21263,49,20,46,0.0 +21263,17,39,28,0.0 +21263,61,28.5,46,0.0 +21263,23,9,50,0.0 +21263,52,7,3,0.0 +21263,35,18,20,0.0 +21263,29,123.79,20,0.0 +21263,36,19,34,0.0 +21263,30,25.89,10,0.0 +21264,52,7,15,0.0 +21264,48,12.75,38,0.0 +21264,15,15.5,26,0.0 +21264,13,6,25,0.0 +21264,11,21,37,0.0 +21264,50,16.25,44,0.0 +21264,10,31,11,0.0 +21264,62,49.3,21,0.0 +21264,60,34,43,0.0 +21264,40,18.4,18,0.0 +21264,47,9.5,22,0.0 +21265,55,24,19,0.0 +21265,44,19.45,40,0.0 +21265,1,18,49,0.0 +21265,58,13.25,12,0.0 +21265,45,9.5,20,0.0 +21265,38,263.5,19,0.0 +21265,20,81,47,0.0 +21265,46,12,7,0.0 +21265,71,21.5,32,0.0 +21265,28,45.6,4,0.0 +21265,69,36,44,0.0 +21265,31,12.5,29,0.0 +21265,32,32,7,0.0 +21265,47,9.5,36,0.0 +21265,67,14,49,0.0 +21265,62,49.3,11,0.0 +21265,48,12.75,5,0.0 +21265,70,15,20,0.0 +21265,11,21,48,0.0 +21265,12,38,24,0.0 +21265,49,20,27,0.0 +21265,3,10,34,0.0 +21265,24,4.5,40,0.0 +21265,64,33.25,26,0.0 +21265,22,21,19,0.0 +21265,50,16.25,6,0.0 +21265,61,28.5,32,0.0 +21265,74,10,13,0.0 +21265,6,25,21,0.0 +21265,23,9,41,0.0 +21265,18,62.5,33,0.0 +21265,36,19,29,0.0 +21265,52,7,28,0.0 +21265,25,14,11,0.0 +21265,63,43.9,43,0.0 +21265,43,46,20,0.0 +21265,53,32.8,10,0.0 +21265,9,97,44,0.0 +21265,29,123.79,36,0.0 +21265,39,18,12,0.0 +21265,73,15,17,0.0 +21265,77,13,13,0.0 +21265,37,26,46,0.0 +21265,66,17,12,0.0 +21265,27,43.9,23,0.0 +21265,72,34.8,45,0.0 +21265,51,53,45,0.0 +21265,26,31.23,6,0.0 +21265,19,9.2,6,0.0 +21265,4,22,2,0.0 +21265,40,18.4,30,0.0 +21265,33,2.5,5,0.0 +21265,34,14,27,0.0 +21265,41,9.65,44,0.0 +21265,2,19,8,0.0 +21265,17,39,20,0.0 +21265,35,18,29,0.0 +21266,25,14,1,0.0 +21266,23,9,2,0.0 +21266,46,12,36,0.0 +21266,47,9.5,19,0.0 +21266,19,9.2,14,0.0 +21266,41,9.65,17,0.0 +21266,6,25,39,0.0 +21266,12,38,14,0.0 +21266,15,15.5,6,0.0 +21266,59,55,37,0.0 +21266,73,15,38,0.0 +21266,64,33.25,14,0.0 +21266,52,7,20,0.0 +21266,4,22,9,0.0 +21266,1,18,8,0.0 +21266,65,21.05,42,0.0 +21266,11,21,1,0.0 +21266,22,21,2,0.0 +21266,21,10,35,0.0 +21266,53,32.8,1,0.0 +21266,51,53,21,0.0 +21266,3,10,33,0.0 +21266,31,12.5,41,0.0 +21266,44,19.45,32,0.0 +21266,32,32,5,0.0 +21266,63,43.9,10,0.0 +21266,76,18,24,0.0 +21266,50,16.25,49,0.0 +21266,39,18,3,0.0 +21266,67,14,44,0.0 +21266,74,10,1,0.0 +21266,62,49.3,50,0.0 +21266,17,39,2,0.0 +21266,43,46,27,0.0 +21267,18,62.5,24,0.0 +21267,46,12,12,0.0 +21267,43,46,42,0.0 +21267,13,6,50,0.0 +21267,72,34.8,50,0.0 +21267,23,9,4,0.0 +21267,31,12.5,6,0.0 +21267,67,14,7,0.0 +21267,19,9.2,2,0.0 +21267,70,15,21,0.0 +21267,51,53,39,0.0 +21267,75,7.75,41,0.0 +21267,15,15.5,41,0.0 +21267,65,21.05,49,0.0 +21267,9,97,20,0.0 +21267,48,12.75,13,0.0 +21267,57,19.5,10,0.0 +21267,44,19.45,48,0.0 +21267,58,13.25,46,0.0 +21267,52,7,16,0.0 +21267,20,81,1,0.0 +21268,54,7.45,32,0.0 +21268,46,12,35,0.0 +21268,36,19,7,0.0 +21268,70,15,40,0.0 +21268,57,19.5,18,0.0 +21268,73,15,23,0.0 +21268,14,23.25,47,0.0 +21268,11,21,8,0.0 +21268,55,24,34,0.0 +21268,38,263.5,47,0.0 +21268,3,10,23,0.0 +21268,17,39,43,0.0 +21268,15,15.5,26,0.0 +21268,16,17.45,35,0.0 +21268,59,55,33,0.0 +21268,33,2.5,24,0.0 +21268,37,26,42,0.0 +21268,49,20,40,0.0 +21268,23,9,38,0.0 +21268,61,28.5,19,0.0 +21268,45,9.5,4,0.0 +21268,26,31.23,40,0.0 +21268,25,14,45,0.0 +21269,23,9,48,0.0 +21269,71,21.5,42,0.0 +21269,73,15,15,0.0 +21269,9,97,41,0.0 +21269,37,26,28,0.0 +21269,58,13.25,21,0.0 +21269,31,12.5,37,0.0 +21270,3,10,47,0.0 +21270,12,38,24,0.0 +21270,8,40,1,0.0 +21270,33,2.5,24,0.0 +21270,15,15.5,8,0.0 +21270,22,21,8,0.0 +21270,52,7,8,0.0 +21270,32,32,10,0.0 +21270,57,19.5,41,0.0 +21270,10,31,23,0.0 +21271,20,81,10,0.0 +21271,25,14,50,0.0 +21271,74,10,6,0.0 +21271,9,97,20,0.0 +21271,59,55,28,0.0 +21271,17,39,14,0.0 +21271,48,12.75,19,0.0 +21271,46,12,30,0.0 +21271,37,26,17,0.0 +21271,42,14,25,0.0 +21271,5,21.35,1,0.0 +21271,8,40,20,0.0 +21271,26,31.23,32,0.0 +21271,62,49.3,23,0.0 +21271,31,12.5,14,0.0 +21271,72,34.8,16,0.0 +21271,69,36,46,0.0 +21271,56,38,47,0.0 +21271,33,2.5,43,0.0 +21271,29,123.79,13,0.0 +21271,40,18.4,21,0.0 +21271,61,28.5,25,0.0 +21271,38,263.5,28,0.0 +21271,1,18,22,0.0 +21271,52,7,34,0.0 +21271,75,7.75,32,0.0 +21271,57,19.5,37,0.0 +21271,3,10,40,0.0 +21271,71,21.5,21,0.0 +21271,2,19,21,0.0 +21271,60,34,26,0.0 +21271,66,17,9,0.0 +21271,4,22,49,0.0 +21271,18,62.5,36,0.0 +21271,43,46,2,0.0 +21271,34,14,46,0.0 +21271,54,7.45,39,0.0 +21271,65,21.05,28,0.0 +21271,28,45.6,42,0.0 +21271,21,10,48,0.0 +21271,44,19.45,50,0.0 +21271,6,25,48,0.0 +21271,13,6,46,0.0 +21271,19,9.2,47,0.0 +21271,49,20,18,0.0 +21271,63,43.9,4,0.0 +21271,30,25.89,34,0.0 +21271,76,18,7,0.0 +21271,77,13,40,0.0 +21271,15,15.5,48,0.0 +21271,58,13.25,15,0.0 +21271,36,19,9,0.0 +21271,73,15,4,0.0 +21271,67,14,3,0.0 +21271,23,9,34,0.0 +21271,14,23.25,37,0.0 +21271,68,12.5,49,0.0 +21271,22,21,11,0.0 +21271,41,9.65,10,0.0 +21271,35,18,50,0.0 +21271,64,33.25,36,0.0 +21271,45,9.5,12,0.0 +21271,12,38,26,0.0 +21271,47,9.5,42,0.0 +21271,50,16.25,3,0.0 +21272,41,9.65,40,0.0 +21272,10,31,39,0.0 +21272,35,18,32,0.0 +21272,25,14,17,0.0 +21272,32,32,26,0.0 +21272,42,14,48,0.0 +21272,33,2.5,28,0.0 +21272,21,10,44,0.0 +21272,1,18,36,0.0 +21272,11,21,50,0.0 +21272,64,33.25,14,0.0 +21272,23,9,33,0.0 +21272,57,19.5,30,0.0 +21272,49,20,44,0.0 +21272,55,24,7,0.0 +21272,69,36,8,0.0 +21272,46,12,30,0.0 +21272,66,17,25,0.0 +21272,19,9.2,27,0.0 +21272,67,14,35,0.0 +21272,24,4.5,20,0.0 +21272,5,21.35,9,0.0 +21272,65,21.05,6,0.0 +21272,56,38,36,0.0 +21272,43,46,6,0.0 +21272,45,9.5,33,0.0 +21272,30,25.89,35,0.0 +21272,6,25,15,0.0 +21272,36,19,35,0.0 +21272,38,263.5,1,0.0 +21272,71,21.5,44,0.0 +21272,18,62.5,33,0.0 +21272,40,18.4,35,0.0 +21272,4,22,15,0.0 +21272,60,34,10,0.0 +21272,9,97,27,0.0 +21272,31,12.5,11,0.0 +21272,7,30,19,0.0 +21272,34,14,41,0.0 +21272,16,17.45,29,0.0 +21272,76,18,20,0.0 +21272,59,55,8,0.0 +21272,13,6,13,0.0 +21272,20,81,50,0.0 +21272,61,28.5,46,0.0 +21272,47,9.5,30,0.0 +21272,50,16.25,30,0.0 +21273,8,40,23,0.0 +21273,76,18,27,0.0 +21273,69,36,2,0.0 +21273,27,43.9,6,0.0 +21273,53,32.8,25,0.0 +21273,14,23.25,2,0.0 +21273,57,19.5,9,0.0 +21273,43,46,26,0.0 +21273,64,33.25,6,0.0 +21273,77,13,16,0.0 +21273,56,38,40,0.0 +21273,55,24,3,0.0 +21273,72,34.8,3,0.0 +21273,34,14,39,0.0 +21273,39,18,34,0.0 +21273,68,12.5,11,0.0 +21273,42,14,27,0.0 +21273,74,10,22,0.0 +21273,20,81,22,0.0 +21273,17,39,9,0.0 +21273,4,22,21,0.0 +21273,35,18,32,0.0 +21273,23,9,7,0.0 +21273,16,17.45,39,0.0 +21273,66,17,12,0.0 +21273,12,38,18,0.0 +21273,44,19.45,10,0.0 +21273,40,18.4,46,0.0 +21273,67,14,5,0.0 +21273,45,9.5,16,0.0 +21273,46,12,37,0.0 +21273,65,21.05,46,0.0 +21273,11,21,38,0.0 +21273,71,21.5,21,0.0 +21273,37,26,12,0.0 +21273,3,10,45,0.0 +21273,29,123.79,18,0.0 +21273,49,20,29,0.0 +21273,7,30,9,0.0 +21273,6,25,49,0.0 +21273,9,97,29,0.0 +21273,52,7,33,0.0 +21273,48,12.75,10,0.0 +21273,1,18,17,0.0 +21273,32,32,32,0.0 +21273,36,19,16,0.0 +21273,51,53,21,0.0 +21273,26,31.23,22,0.0 +21273,54,7.45,18,0.0 +21273,61,28.5,33,0.0 +21273,47,9.5,9,0.0 +21273,30,25.89,17,0.0 +21273,10,31,27,0.0 +21273,73,15,8,0.0 +21273,31,12.5,4,0.0 +21273,2,19,43,0.0 +21273,59,55,27,0.0 +21273,13,6,35,0.0 +21273,58,13.25,28,0.0 +21274,49,20,16,0.0 +21274,25,14,47,0.0 +21274,50,16.25,47,0.0 +21274,6,25,42,0.0 +21274,41,9.65,4,0.0 +21274,60,34,34,0.0 +21274,53,32.8,39,0.0 +21274,65,21.05,42,0.0 +21274,67,14,34,0.0 +21274,48,12.75,19,0.0 +21274,66,17,31,0.0 +21274,33,2.5,6,0.0 +21274,44,19.45,19,0.0 +21274,26,31.23,4,0.0 +21274,36,19,29,0.0 +21274,19,9.2,29,0.0 +21274,35,18,7,0.0 +21274,11,21,38,0.0 +21274,57,19.5,22,0.0 +21274,61,28.5,1,0.0 +21274,68,12.5,39,0.0 +21274,12,38,30,0.0 +21274,71,21.5,11,0.0 +21274,2,19,33,0.0 +21274,28,45.6,19,0.0 +21274,22,21,11,0.0 +21274,17,39,14,0.0 +21274,20,81,10,0.0 +21274,31,12.5,15,0.0 +21274,40,18.4,27,0.0 +21274,62,49.3,11,0.0 +21274,72,34.8,49,0.0 +21274,70,15,45,0.0 +21274,23,9,44,0.0 +21274,14,23.25,22,0.0 +21274,10,31,34,0.0 +21274,34,14,6,0.0 +21274,4,22,7,0.0 +21274,54,7.45,10,0.0 +21274,43,46,50,0.0 +21274,64,33.25,39,0.0 +21274,52,7,20,0.0 +21274,27,43.9,36,0.0 +21274,45,9.5,42,0.0 +21274,15,15.5,13,0.0 +21274,59,55,40,0.0 +21274,5,21.35,30,0.0 +21274,24,4.5,45,0.0 +21274,7,30,40,0.0 +21274,3,10,31,0.0 +21274,55,24,14,0.0 +21274,30,25.89,27,0.0 +21274,8,40,1,0.0 +21274,75,7.75,4,0.0 +21274,56,38,18,0.0 +21274,51,53,32,0.0 +21274,42,14,33,0.0 +21274,32,32,8,0.0 +21274,16,17.45,49,0.0 +21274,58,13.25,31,0.0 +21274,77,13,11,0.0 +21274,38,263.5,23,0.0 +21275,59,55,44,0.0 +21275,55,24,13,0.0 +21275,39,18,19,0.0 +21275,20,81,24,0.0 +21275,9,97,31,0.0 +21275,44,19.45,9,0.0 +21275,32,32,46,0.0 +21275,46,12,40,0.0 +21275,19,9.2,39,0.0 +21275,54,7.45,31,0.0 +21275,37,26,20,0.0 +21275,45,9.5,17,0.0 +21275,58,13.25,5,0.0 +21275,38,263.5,39,0.0 +21275,13,6,46,0.0 +21275,25,14,26,0.0 +21275,51,53,39,0.0 +21275,40,18.4,9,0.0 +21275,53,32.8,28,0.0 +21275,47,9.5,3,0.0 +21275,64,33.25,5,0.0 +21275,30,25.89,3,0.0 +21275,52,7,2,0.0 +21275,67,14,25,0.0 +21275,66,17,15,0.0 +21275,35,18,42,0.0 +21275,17,39,27,0.0 +21275,43,46,40,0.0 +21275,41,9.65,1,0.0 +21275,14,23.25,39,0.0 +21275,2,19,8,0.0 +21275,34,14,37,0.0 +21275,77,13,25,0.0 +21276,21,10,1,0.0 +21276,71,21.5,17,0.0 +21276,1,18,41,0.0 +21276,69,36,11,0.0 +21276,60,34,25,0.0 +21276,18,62.5,48,0.0 +21276,6,25,50,0.0 +21276,7,30,50,0.0 +21276,12,38,19,0.0 +21276,59,55,5,0.0 +21276,20,81,11,0.0 +21276,27,43.9,5,0.0 +21276,34,14,37,0.0 +21276,39,18,7,0.0 +21276,63,43.9,7,0.0 +21276,26,31.23,22,0.0 +21276,53,32.8,37,0.0 +21276,9,97,37,0.0 +21276,13,6,13,0.0 +21276,17,39,10,0.0 +21276,5,21.35,33,0.0 +21276,38,263.5,16,0.0 +21276,77,13,1,0.0 +21276,70,15,39,0.0 +21276,22,21,8,0.0 +21276,42,14,1,0.0 +21276,47,9.5,16,0.0 +21276,52,7,35,0.0 +21276,74,10,6,0.0 +21276,62,49.3,39,0.0 +21276,73,15,48,0.0 +21276,49,20,41,0.0 +21276,45,9.5,12,0.0 +21276,36,19,11,0.0 +21277,64,33.25,43,0.0 +21277,48,12.75,4,0.0 +21277,72,34.8,19,0.0 +21278,43,46,6,0.0 +21278,73,15,31,0.0 +21278,36,19,19,0.0 +21278,33,2.5,36,0.0 +21278,34,14,21,0.0 +21278,57,19.5,48,0.0 +21278,5,21.35,41,0.0 +21278,46,12,32,0.0 +21278,22,21,32,0.0 +21278,13,6,13,0.0 +21278,38,263.5,17,0.0 +21278,67,14,14,0.0 +21278,26,31.23,32,0.0 +21278,74,10,7,0.0 +21278,75,7.75,19,0.0 +21278,32,32,44,0.0 +21278,69,36,15,0.0 +21278,2,19,34,0.0 +21278,42,14,26,0.0 +21278,40,18.4,28,0.0 +21278,35,18,39,0.0 +21278,8,40,18,0.0 +21278,11,21,3,0.0 +21278,18,62.5,45,0.0 +21278,45,9.5,46,0.0 +21278,51,53,21,0.0 +21278,10,31,40,0.0 +21278,24,4.5,15,0.0 +21278,21,10,25,0.0 +21278,64,33.25,42,0.0 +21278,3,10,10,0.0 +21278,70,15,18,0.0 +21278,30,25.89,12,0.0 +21278,31,12.5,13,0.0 +21278,16,17.45,35,0.0 +21278,60,34,1,0.0 +21278,61,28.5,17,0.0 +21278,44,19.45,14,0.0 +21278,37,26,38,0.0 +21278,47,9.5,50,0.0 +21278,49,20,44,0.0 +21278,54,7.45,14,0.0 +21279,55,24,44,0.0 +21279,26,31.23,39,0.0 +21279,48,12.75,28,0.0 +21279,15,15.5,3,0.0 +21279,41,9.65,24,0.0 +21279,4,22,1,0.0 +21279,30,25.89,34,0.0 +21279,67,14,49,0.0 +21279,39,18,29,0.0 +21279,19,9.2,37,0.0 +21279,64,33.25,46,0.0 +21279,40,18.4,46,0.0 +21279,16,17.45,37,0.0 +21279,53,32.8,37,0.0 +21279,72,34.8,28,0.0 +21279,59,55,39,0.0 +21279,71,21.5,1,0.0 +21279,24,4.5,42,0.0 +21279,21,10,9,0.0 +21279,18,62.5,28,0.0 +21279,42,14,17,0.0 +21279,68,12.5,18,0.0 +21279,52,7,5,0.0 +21279,46,12,28,0.0 +21279,73,15,16,0.0 +21279,3,10,17,0.0 +21279,9,97,5,0.0 +21279,14,23.25,29,0.0 +21279,37,26,36,0.0 +21279,5,21.35,9,0.0 +21280,1,18,25,0.0 +21280,33,2.5,41,0.0 +21280,20,81,43,0.0 +21280,19,9.2,43,0.0 +21280,2,19,47,0.0 +21280,48,12.75,11,0.0 +21280,34,14,40,0.0 +21280,43,46,31,0.0 +21280,14,23.25,4,0.0 +21280,74,10,38,0.0 +21280,71,21.5,25,0.0 +21280,7,30,47,0.0 +21280,63,43.9,7,0.0 +21280,72,34.8,34,0.0 +21280,30,25.89,40,0.0 +21280,35,18,31,0.0 +21280,52,7,36,0.0 +21280,70,15,38,0.0 +21280,9,97,15,0.0 +21281,66,17,16,0.0 +21281,75,7.75,7,0.0 +21281,60,34,18,0.0 +21281,14,23.25,44,0.0 +21281,73,15,21,0.0 +21281,48,12.75,13,0.0 +21281,28,45.6,40,0.0 +21281,37,26,29,0.0 +21281,53,32.8,13,0.0 +21281,62,49.3,46,0.0 +21281,55,24,41,0.0 +21281,65,21.05,48,0.0 +21281,50,16.25,1,0.0 +21281,56,38,42,0.0 +21281,8,40,2,0.0 +21281,4,22,42,0.0 +21281,6,25,13,0.0 +21281,69,36,6,0.0 +21281,32,32,36,0.0 +21281,49,20,28,0.0 +21281,36,19,37,0.0 +21281,31,12.5,23,0.0 +21281,44,19.45,5,0.0 +21281,43,46,32,0.0 +21281,11,21,14,0.0 +21281,58,13.25,21,0.0 +21281,9,97,29,0.0 +21281,5,21.35,4,0.0 +21281,25,14,45,0.0 +21281,7,30,43,0.0 +21281,1,18,25,0.0 +21281,42,14,16,0.0 +21281,67,14,46,0.0 +21281,51,53,30,0.0 +21281,64,33.25,50,0.0 +21281,30,25.89,10,0.0 +21281,23,9,21,0.0 +21281,59,55,10,0.0 +21281,3,10,4,0.0 +21281,70,15,20,0.0 +21282,23,9,33,0.0 +21282,25,14,23,0.0 +21282,38,263.5,46,0.0 +21282,44,19.45,18,0.0 +21282,63,43.9,48,0.0 +21282,16,17.45,41,0.0 +21282,41,9.65,18,0.0 +21282,51,53,2,0.0 +21282,8,40,27,0.0 +21282,39,18,25,0.0 +21282,57,19.5,20,0.0 +21282,17,39,33,0.0 +21282,52,7,10,0.0 +21282,54,7.45,23,0.0 +21282,72,34.8,43,0.0 +21282,50,16.25,45,0.0 +21282,31,12.5,18,0.0 +21282,36,19,3,0.0 +21282,71,21.5,6,0.0 +21282,62,49.3,22,0.0 +21282,30,25.89,35,0.0 +21283,8,40,19,0.0 +21283,59,55,17,0.0 +21283,77,13,33,0.0 +21283,68,12.5,2,0.0 +21283,71,21.5,32,0.0 +21283,74,10,12,0.0 +21283,20,81,36,0.0 +21283,60,34,12,0.0 +21283,32,32,46,0.0 +21283,46,12,12,0.0 +21283,1,18,12,0.0 +21283,72,34.8,32,0.0 +21283,10,31,10,0.0 +21283,21,10,30,0.0 +21283,36,19,25,0.0 +21283,29,123.79,43,0.0 +21283,40,18.4,38,0.0 +21283,19,9.2,23,0.0 +21283,75,7.75,43,0.0 +21283,57,19.5,22,0.0 +21283,73,15,1,0.0 +21283,70,15,50,0.0 +21283,65,21.05,35,0.0 +21283,3,10,21,0.0 +21283,33,2.5,35,0.0 +21283,34,14,25,0.0 +21283,58,13.25,29,0.0 +21283,31,12.5,43,0.0 +21283,13,6,21,0.0 +21283,69,36,33,0.0 +21283,38,263.5,28,0.0 +21283,54,7.45,45,0.0 +21283,22,21,33,0.0 +21283,23,9,45,0.0 +21283,56,38,3,0.0 +21283,35,18,39,0.0 +21283,41,9.65,12,0.0 +21283,45,9.5,1,0.0 +21283,61,28.5,37,0.0 +21283,62,49.3,20,0.0 +21283,48,12.75,12,0.0 +21283,26,31.23,14,0.0 +21283,24,4.5,38,0.0 +21283,6,25,7,0.0 +21283,55,24,22,0.0 +21283,15,15.5,18,0.0 +21283,63,43.9,11,0.0 +21283,9,97,21,0.0 +21283,50,16.25,40,0.0 +21283,39,18,3,0.0 +21283,28,45.6,31,0.0 +21283,43,46,43,0.0 +21283,18,62.5,28,0.0 +21284,60,34,29,0.0 +21284,67,14,30,0.0 +21284,64,33.25,33,0.0 +21284,43,46,47,0.0 +21284,68,12.5,42,0.0 +21284,52,7,38,0.0 +21284,70,15,20,0.0 +21284,31,12.5,11,0.0 +21284,1,18,18,0.0 +21284,75,7.75,23,0.0 +21284,62,49.3,34,0.0 +21284,21,10,44,0.0 +21284,50,16.25,6,0.0 +21284,38,263.5,11,0.0 +21284,26,31.23,17,0.0 +21284,11,21,39,0.0 +21284,61,28.5,43,0.0 +21284,36,19,27,0.0 +21284,2,19,10,0.0 +21284,35,18,10,0.0 +21284,8,40,28,0.0 +21284,27,43.9,14,0.0 +21284,29,123.79,27,0.0 +21284,16,17.45,27,0.0 +21284,44,19.45,17,0.0 +21284,32,32,11,0.0 +21284,54,7.45,48,0.0 +21284,66,17,25,0.0 +21284,71,21.5,29,0.0 +21284,17,39,30,0.0 +21284,24,4.5,34,0.0 +21284,53,32.8,30,0.0 +21284,33,2.5,3,0.0 +21284,73,15,48,0.0 +21284,6,25,32,0.0 +21284,63,43.9,47,0.0 +21284,28,45.6,21,0.0 +21284,77,13,41,0.0 +21284,58,13.25,43,0.0 +21284,74,10,9,0.0 +21284,25,14,24,0.0 +21284,14,23.25,46,0.0 +21284,3,10,20,0.0 +21284,40,18.4,31,0.0 +21284,39,18,1,0.0 +21284,59,55,13,0.0 +21284,76,18,30,0.0 +21284,72,34.8,34,0.0 +21284,18,62.5,4,0.0 +21284,23,9,20,0.0 +21284,34,14,18,0.0 +21284,41,9.65,44,0.0 +21284,49,20,40,0.0 +21284,5,21.35,11,0.0 +21284,19,9.2,31,0.0 +21284,47,9.5,39,0.0 +21284,48,12.75,21,0.0 +21284,12,38,26,0.0 +21284,51,53,21,0.0 +21284,20,81,41,0.0 +21285,73,15,43,0.0 +21285,40,18.4,50,0.0 +21285,72,34.8,28,0.0 +21285,75,7.75,35,0.0 +21285,49,20,24,0.0 +21285,20,81,33,0.0 +21285,10,31,48,0.0 +21285,17,39,2,0.0 +21285,12,38,48,0.0 +21285,27,43.9,30,0.0 +21285,32,32,1,0.0 +21285,31,12.5,1,0.0 +21285,30,25.89,44,0.0 +21285,68,12.5,30,0.0 +21285,66,17,15,0.0 +21285,58,13.25,8,0.0 +21285,45,9.5,8,0.0 +21285,52,7,31,0.0 +21285,77,13,15,0.0 +21285,4,22,11,0.0 +21285,22,21,43,0.0 +21285,9,97,11,0.0 +21285,67,14,25,0.0 +21285,16,17.45,43,0.0 +21285,11,21,12,0.0 +21285,44,19.45,15,0.0 +21285,76,18,18,0.0 +21285,39,18,20,0.0 +21285,37,26,32,0.0 +21285,13,6,28,0.0 +21285,29,123.79,28,0.0 +21285,69,36,9,0.0 +21285,34,14,14,0.0 +21286,3,10,42,0.0 +21286,13,6,39,0.0 +21286,63,43.9,2,0.0 +21286,74,10,10,0.0 +21286,65,21.05,7,0.0 +21286,39,18,39,0.0 +21286,2,19,15,0.0 +21286,9,97,1,0.0 +21286,68,12.5,37,0.0 +21286,12,38,41,0.0 +21286,76,18,36,0.0 +21286,71,21.5,30,0.0 +21286,46,12,4,0.0 +21286,72,34.8,44,0.0 +21286,29,123.79,32,0.0 +21286,20,81,40,0.0 +21286,32,32,30,0.0 +21286,41,9.65,40,0.0 +21286,66,17,9,0.0 +21286,8,40,33,0.0 +21286,22,21,23,0.0 +21286,37,26,37,0.0 +21286,15,15.5,36,0.0 +21286,11,21,24,0.0 +21286,6,25,12,0.0 +21287,12,38,20,0.0 +21287,22,21,7,0.0 +21287,40,18.4,36,0.0 +21287,77,13,23,0.0 +21287,8,40,26,0.0 +21287,64,33.25,48,0.0 +21287,46,12,24,0.0 +21287,33,2.5,7,0.0 +21287,6,25,8,0.0 +21287,29,123.79,49,0.0 +21287,9,97,16,0.0 +21287,31,12.5,31,0.0 +21287,14,23.25,14,0.0 +21287,25,14,30,0.0 +21287,54,7.45,34,0.0 +21287,66,17,48,0.0 +21287,62,49.3,36,0.0 +21287,4,22,11,0.0 +21287,56,38,42,0.0 +21287,10,31,34,0.0 +21287,5,21.35,29,0.0 +21287,36,19,14,0.0 +21287,1,18,22,0.0 +21287,7,30,3,0.0 +21287,19,9.2,48,0.0 +21287,20,81,49,0.0 +21287,72,34.8,15,0.0 +21287,30,25.89,48,0.0 +21287,15,15.5,4,0.0 +21287,49,20,20,0.0 +21287,61,28.5,17,0.0 +21287,13,6,2,0.0 +21287,21,10,41,0.0 +21287,70,15,50,0.0 +21287,3,10,29,0.0 +21287,53,32.8,34,0.0 +21287,55,24,22,0.0 +21287,69,36,10,0.0 +21287,45,9.5,27,0.0 +21287,17,39,39,0.0 +21287,23,9,19,0.0 +21287,74,10,11,0.0 +21287,50,16.25,49,0.0 +21287,11,21,31,0.0 +21287,68,12.5,19,0.0 +21287,2,19,4,0.0 +21287,65,21.05,46,0.0 +21287,32,32,28,0.0 +21287,42,14,20,0.0 +21287,44,19.45,17,0.0 +21287,57,19.5,14,0.0 +21287,60,34,22,0.0 +21287,73,15,39,0.0 +21287,26,31.23,15,0.0 +21287,41,9.65,17,0.0 +21287,38,263.5,48,0.0 +21287,27,43.9,22,0.0 +21287,24,4.5,4,0.0 +21287,47,9.5,35,0.0 +21287,28,45.6,3,0.0 +21287,59,55,49,0.0 +21288,25,14,42,0.0 +21288,8,40,35,0.0 +21288,59,55,2,0.0 +21288,55,24,32,0.0 +21288,19,9.2,23,0.0 +21288,71,21.5,18,0.0 +21288,45,9.5,24,0.0 +21288,22,21,13,0.0 +21288,64,33.25,9,0.0 +21288,27,43.9,43,0.0 +21288,75,7.75,29,0.0 +21288,28,45.6,12,0.0 +21288,26,31.23,46,0.0 +21288,18,62.5,29,0.0 +21288,4,22,38,0.0 +21288,66,17,4,0.0 +21288,35,18,8,0.0 +21288,51,53,13,0.0 +21288,32,32,33,0.0 +21288,68,12.5,41,0.0 +21288,58,13.25,1,0.0 +21288,39,18,43,0.0 +21288,20,81,17,0.0 +21288,6,25,34,0.0 +21288,9,97,11,0.0 +21288,12,38,3,0.0 +21288,16,17.45,24,0.0 +21288,37,26,20,0.0 +21288,52,7,37,0.0 +21288,15,15.5,2,0.0 +21288,41,9.65,7,0.0 +21288,2,19,7,0.0 +21288,36,19,48,0.0 +21288,54,7.45,20,0.0 +21288,46,12,17,0.0 +21288,21,10,4,0.0 +21288,33,2.5,44,0.0 +21288,34,14,11,0.0 +21288,13,6,44,0.0 +21288,53,32.8,36,0.0 +21288,42,14,33,0.0 +21288,67,14,5,0.0 +21288,30,25.89,1,0.0 +21288,72,34.8,42,0.0 +21288,31,12.5,22,0.0 +21288,73,15,19,0.0 +21288,7,30,39,0.0 +21288,14,23.25,2,0.0 +21288,50,16.25,46,0.0 +21288,77,13,25,0.0 +21288,11,21,43,0.0 +21288,63,43.9,47,0.0 +21288,47,9.5,43,0.0 +21288,62,49.3,28,0.0 +21288,74,10,24,0.0 +21288,56,38,38,0.0 +21288,3,10,30,0.0 +21288,23,9,40,0.0 +21288,5,21.35,39,0.0 +21288,24,4.5,50,0.0 +21288,44,19.45,36,0.0 +21288,1,18,50,0.0 +21288,61,28.5,43,0.0 +21288,57,19.5,41,0.0 +21288,69,36,28,0.0 +21288,29,123.79,25,0.0 +21288,38,263.5,19,0.0 +21288,48,12.75,2,0.0 +21288,40,18.4,12,0.0 +21288,76,18,10,0.0 +21288,60,34,18,0.0 +21288,10,31,39,0.0 +21288,49,20,10,0.0 +21288,65,21.05,5,0.0 +21288,43,46,27,0.0 +21288,70,15,23,0.0 +21288,17,39,23,0.0 +21289,42,14,13,0.0 +21289,38,263.5,27,0.0 +21289,51,53,31,0.0 +21290,66,17,10,0.0 +21290,7,30,3,0.0 +21290,37,26,24,0.0 +21290,55,24,32,0.0 +21290,58,13.25,9,0.0 +21290,41,9.65,28,0.0 +21290,44,19.45,32,0.0 +21290,29,123.79,33,0.0 +21290,27,43.9,50,0.0 +21290,23,9,38,0.0 +21290,18,62.5,10,0.0 +21290,2,19,38,0.0 +21290,6,25,33,0.0 +21290,30,25.89,29,0.0 +21290,24,4.5,41,0.0 +21290,32,32,20,0.0 +21290,65,21.05,23,0.0 +21290,10,31,28,0.0 +21290,77,13,6,0.0 +21290,31,12.5,49,0.0 +21290,3,10,6,0.0 +21290,38,263.5,25,0.0 +21290,33,2.5,10,0.0 +21290,47,9.5,35,0.0 +21290,69,36,23,0.0 +21290,52,7,44,0.0 +21290,36,19,44,0.0 +21290,60,34,3,0.0 +21290,34,14,46,0.0 +21290,59,55,43,0.0 +21290,53,32.8,17,0.0 +21290,42,14,31,0.0 +21290,62,49.3,48,0.0 +21290,67,14,14,0.0 +21290,20,81,10,0.0 +21290,64,33.25,38,0.0 +21290,71,21.5,3,0.0 +21290,75,7.75,29,0.0 +21290,46,12,18,0.0 +21291,32,32,3,0.0 +21291,5,21.35,15,0.0 +21291,62,49.3,45,0.0 +21291,20,81,4,0.0 +21291,43,46,2,0.0 +21291,49,20,19,0.0 +21291,29,123.79,44,0.0 +21291,64,33.25,25,0.0 +21291,25,14,34,0.0 +21291,53,32.8,19,0.0 +21291,3,10,46,0.0 +21291,34,14,49,0.0 +21291,21,10,15,0.0 +21291,40,18.4,20,0.0 +21291,37,26,21,0.0 +21291,48,12.75,20,0.0 +21291,2,19,26,0.0 +21291,19,9.2,7,0.0 +21291,57,19.5,41,0.0 +21291,67,14,37,0.0 +21291,24,4.5,22,0.0 +21291,73,15,50,0.0 +21291,44,19.45,20,0.0 +21291,28,45.6,24,0.0 +21291,17,39,42,0.0 +21291,15,15.5,37,0.0 +21291,9,97,47,0.0 +21291,50,16.25,14,0.0 +21291,8,40,19,0.0 +21291,11,21,40,0.0 +21292,47,9.5,4,0.0 +21292,69,36,9,0.0 +21292,6,25,13,0.0 +21292,20,81,50,0.0 +21292,46,12,11,0.0 +21292,43,46,34,0.0 +21292,13,6,7,0.0 +21292,52,7,29,0.0 +21292,32,32,13,0.0 +21292,17,39,33,0.0 +21292,5,21.35,47,0.0 +21292,12,38,35,0.0 +21292,73,15,43,0.0 +21293,66,17,13,0.0 +21293,6,25,26,0.0 +21293,24,4.5,40,0.0 +21293,15,15.5,12,0.0 +21293,29,123.79,46,0.0 +21293,61,28.5,6,0.0 +21293,68,12.5,30,0.0 +21293,47,9.5,18,0.0 +21293,58,13.25,28,0.0 +21293,18,62.5,8,0.0 +21293,13,6,42,0.0 +21293,72,34.8,43,0.0 +21293,17,39,30,0.0 +21293,2,19,50,0.0 +21293,10,31,18,0.0 +21293,19,9.2,44,0.0 +21293,30,25.89,10,0.0 +21293,9,97,14,0.0 +21293,23,9,41,0.0 +21293,75,7.75,20,0.0 +21293,64,33.25,8,0.0 +21293,74,10,28,0.0 +21293,26,31.23,9,0.0 +21293,44,19.45,14,0.0 +21293,34,14,29,0.0 +21293,7,30,41,0.0 +21293,22,21,38,0.0 +21293,32,32,49,0.0 +21293,46,12,14,0.0 +21293,77,13,26,0.0 +21293,1,18,6,0.0 +21293,45,9.5,9,0.0 +21294,55,24,34,0.0 +21294,19,9.2,4,0.0 +21294,53,32.8,40,0.0 +21294,47,9.5,50,0.0 +21294,50,16.25,47,0.0 +21294,11,21,50,0.0 +21294,15,15.5,29,0.0 +21294,24,4.5,31,0.0 +21294,61,28.5,46,0.0 +21294,44,19.45,32,0.0 +21294,64,33.25,48,0.0 +21294,6,25,35,0.0 +21294,52,7,4,0.0 +21294,62,49.3,28,0.0 +21294,67,14,45,0.0 +21294,14,23.25,7,0.0 +21294,4,22,6,0.0 +21294,1,18,14,0.0 +21294,56,38,15,0.0 +21294,40,18.4,13,0.0 +21294,69,36,13,0.0 +21294,68,12.5,32,0.0 +21294,25,14,15,0.0 +21294,65,21.05,43,0.0 +21294,39,18,44,0.0 +21294,54,7.45,36,0.0 +21294,63,43.9,5,0.0 +21294,28,45.6,6,0.0 +21294,30,25.89,17,0.0 +21294,18,62.5,46,0.0 +21294,49,20,22,0.0 +21294,16,17.45,42,0.0 +21294,59,55,34,0.0 +21294,38,263.5,14,0.0 +21294,21,10,19,0.0 +21294,22,21,38,0.0 +21294,17,39,36,0.0 +21294,36,19,7,0.0 +21294,66,17,40,0.0 +21294,58,13.25,26,0.0 +21294,77,13,12,0.0 +21294,75,7.75,7,0.0 +21294,10,31,38,0.0 +21294,57,19.5,43,0.0 +21294,72,34.8,44,0.0 +21294,35,18,34,0.0 +21294,74,10,41,0.0 +21294,51,53,15,0.0 +21294,29,123.79,31,0.0 +21294,41,9.65,4,0.0 +21294,43,46,7,0.0 +21294,48,12.75,40,0.0 +21294,71,21.5,35,0.0 +21294,37,26,46,0.0 +21294,23,9,35,0.0 +21294,73,15,8,0.0 +21294,45,9.5,31,0.0 +21294,46,12,42,0.0 +21295,31,12.5,21,0.0 +21295,55,24,31,0.0 +21295,22,21,49,0.0 +21295,34,14,2,0.0 +21295,47,9.5,9,0.0 +21295,46,12,16,0.0 +21295,25,14,16,0.0 +21295,30,25.89,38,0.0 +21295,21,10,50,0.0 +21295,5,21.35,48,0.0 +21295,7,30,46,0.0 +21295,75,7.75,43,0.0 +21295,71,21.5,39,0.0 +21295,38,263.5,18,0.0 +21295,26,31.23,2,0.0 +21295,16,17.45,10,0.0 +21295,65,21.05,48,0.0 +21295,73,15,20,0.0 +21295,23,9,18,0.0 +21295,24,4.5,21,0.0 +21295,42,14,24,0.0 +21295,63,43.9,22,0.0 +21295,77,13,11,0.0 +21295,56,38,18,0.0 +21295,76,18,26,0.0 +21295,61,28.5,22,0.0 +21295,14,23.25,34,0.0 +21295,67,14,47,0.0 +21295,49,20,17,0.0 +21295,37,26,39,0.0 +21295,54,7.45,14,0.0 +21296,76,18,19,0.0 +21296,23,9,39,0.0 +21296,32,32,47,0.0 +21296,42,14,36,0.0 +21296,33,2.5,49,0.0 +21296,15,15.5,31,0.0 +21296,46,12,27,0.0 +21296,40,18.4,7,0.0 +21296,48,12.75,3,0.0 +21296,7,30,9,0.0 +21297,37,26,48,0.0 +21297,44,19.45,13,0.0 +21297,34,14,47,0.0 +21297,57,19.5,22,0.0 +21297,8,40,30,0.0 +21297,10,31,12,0.0 +21297,74,10,26,0.0 +21297,72,34.8,48,0.0 +21297,16,17.45,46,0.0 +21297,28,45.6,39,0.0 +21297,35,18,43,0.0 +21297,13,6,50,0.0 +21297,65,21.05,24,0.0 +21297,26,31.23,31,0.0 +21297,20,81,6,0.0 +21297,54,7.45,37,0.0 +21297,39,18,37,0.0 +21297,15,15.5,2,0.0 +21297,22,21,6,0.0 +21297,32,32,7,0.0 +21297,71,21.5,22,0.0 +21297,23,9,21,0.0 +21297,12,38,33,0.0 +21297,27,43.9,31,0.0 +21297,38,263.5,15,0.0 +21298,7,30,41,0.0 +21298,68,12.5,22,0.0 +21298,50,16.25,3,0.0 +21298,1,18,35,0.0 +21298,24,4.5,37,0.0 +21298,52,7,21,0.0 +21298,33,2.5,18,0.0 +21298,39,18,6,0.0 +21298,56,38,14,0.0 +21298,45,9.5,9,0.0 +21298,53,32.8,31,0.0 +21298,72,34.8,20,0.0 +21298,4,22,1,0.0 +21299,46,12,50,0.0 +21299,68,12.5,14,0.0 +21299,73,15,1,0.0 +21299,62,49.3,48,0.0 +21299,38,263.5,20,0.0 +21299,21,10,33,0.0 +21299,2,19,15,0.0 +21299,48,12.75,5,0.0 +21299,17,39,30,0.0 +21299,42,14,32,0.0 +21299,66,17,39,0.0 +21299,75,7.75,2,0.0 +21299,65,21.05,10,0.0 +21299,40,18.4,26,0.0 +21299,36,19,36,0.0 +21299,15,15.5,5,0.0 +21299,56,38,17,0.0 +21299,39,18,38,0.0 +21299,28,45.6,22,0.0 +21299,31,12.5,48,0.0 +21299,26,31.23,30,0.0 +21299,33,2.5,45,0.0 +21299,16,17.45,43,0.0 +21299,60,34,11,0.0 +21299,5,21.35,27,0.0 +21299,58,13.25,17,0.0 +21299,6,25,42,0.0 +21299,27,43.9,44,0.0 +21299,18,62.5,19,0.0 +21299,30,25.89,10,0.0 +21299,59,55,38,0.0 +21299,71,21.5,14,0.0 +21299,72,34.8,10,0.0 +21299,47,9.5,6,0.0 +21299,44,19.45,5,0.0 +21299,1,18,12,0.0 +21299,10,31,40,0.0 +21299,29,123.79,38,0.0 +21299,57,19.5,42,0.0 +21299,19,9.2,12,0.0 +21299,53,32.8,21,0.0 +21299,22,21,22,0.0 +21299,20,81,21,0.0 +21299,41,9.65,5,0.0 +21299,7,30,34,0.0 +21299,43,46,18,0.0 +21299,37,26,32,0.0 +21299,77,13,16,0.0 +21299,35,18,6,0.0 +21299,69,36,33,0.0 +21299,61,28.5,6,0.0 +21299,11,21,18,0.0 +21299,8,40,17,0.0 +21299,14,23.25,34,0.0 +21299,74,10,16,0.0 +21299,3,10,47,0.0 +21299,25,14,28,0.0 +21299,24,4.5,47,0.0 +21299,67,14,22,0.0 +21299,52,7,37,0.0 +21299,32,32,20,0.0 +21299,70,15,29,0.0 +21299,12,38,29,0.0 +21300,35,18,30,0.0 +21300,43,46,14,0.0 +21300,52,7,24,0.0 +21300,25,14,19,0.0 +21300,75,7.75,36,0.0 +21300,49,20,2,0.0 +21300,67,14,26,0.0 +21300,38,263.5,33,0.0 +21300,33,2.5,22,0.0 +21300,7,30,21,0.0 +21300,53,32.8,10,0.0 +21300,30,25.89,17,0.0 +21300,3,10,21,0.0 +21300,11,21,37,0.0 +21300,9,97,15,0.0 +21300,44,19.45,24,0.0 +21300,54,7.45,32,0.0 +21300,14,23.25,30,0.0 +21300,15,15.5,5,0.0 +21300,77,13,2,0.0 +21300,13,6,9,0.0 +21300,56,38,37,0.0 +21300,28,45.6,27,0.0 +21300,59,55,23,0.0 +21300,48,12.75,11,0.0 +21300,58,13.25,20,0.0 +21300,19,9.2,20,0.0 +21300,2,19,18,0.0 +21300,22,21,19,0.0 +21300,61,28.5,1,0.0 +21300,72,34.8,35,0.0 +21300,34,14,25,0.0 +21300,62,49.3,46,0.0 +21300,64,33.25,18,0.0 +21300,16,17.45,43,0.0 +21300,41,9.65,21,0.0 +21300,10,31,20,0.0 +21300,74,10,34,0.0 +21300,57,19.5,3,0.0 +21300,6,25,4,0.0 +21300,20,81,16,0.0 +21300,26,31.23,6,0.0 +21300,76,18,47,0.0 +21300,24,4.5,6,0.0 +21300,73,15,36,0.0 +21300,12,38,25,0.0 +21300,55,24,11,0.0 +21300,32,32,47,0.0 +21300,66,17,12,0.0 +21300,70,15,39,0.0 +21300,65,21.05,33,0.0 +21300,8,40,47,0.0 +21300,37,26,15,0.0 +21300,1,18,27,0.0 +21300,46,12,9,0.0 +21300,31,12.5,46,0.0 +21300,71,21.5,40,0.0 +21300,27,43.9,18,0.0 +21300,50,16.25,31,0.0 +21300,17,39,15,0.0 +21301,68,12.5,34,0.0 +21301,7,30,19,0.0 +21301,53,32.8,29,0.0 +21301,8,40,11,0.0 +21301,5,21.35,30,0.0 +21301,73,15,18,0.0 +21301,20,81,22,0.0 +21301,13,6,11,0.0 +21301,65,21.05,13,0.0 +21301,2,19,23,0.0 +21301,25,14,47,0.0 +21301,63,43.9,14,0.0 +21301,70,15,13,0.0 +21302,43,46,38,0.0 +21302,73,15,37,0.0 +21302,45,9.5,28,0.0 +21302,36,19,38,0.0 +21302,75,7.75,37,0.0 +21302,21,10,45,0.0 +21302,38,263.5,25,0.0 +21302,53,32.8,37,0.0 +21302,42,14,7,0.0 +21302,63,43.9,10,0.0 +21302,44,19.45,32,0.0 +21302,15,15.5,8,0.0 +21302,35,18,45,0.0 +21302,52,7,20,0.0 +21302,61,28.5,48,0.0 +21302,13,6,33,0.0 +21302,19,9.2,33,0.0 +21302,32,32,8,0.0 +21302,17,39,16,0.0 +21302,58,13.25,12,0.0 +21302,18,62.5,24,0.0 +21302,50,16.25,11,0.0 +21302,60,34,32,0.0 +21302,72,34.8,22,0.0 +21302,4,22,48,0.0 +21302,10,31,31,0.0 +21302,12,38,46,0.0 +21302,28,45.6,17,0.0 +21302,8,40,25,0.0 +21302,48,12.75,47,0.0 +21302,25,14,40,0.0 +21302,37,26,47,0.0 +21302,56,38,29,0.0 +21302,76,18,26,0.0 +21302,30,25.89,33,0.0 +21302,46,12,18,0.0 +21302,29,123.79,40,0.0 +21302,69,36,2,0.0 +21302,47,9.5,39,0.0 +21302,3,10,18,0.0 +21302,7,30,36,0.0 +21302,9,97,34,0.0 +21302,40,18.4,19,0.0 +21302,1,18,12,0.0 +21302,2,19,24,0.0 +21302,51,53,49,0.0 +21302,33,2.5,46,0.0 +21302,34,14,30,0.0 +21302,55,24,6,0.0 +21302,68,12.5,34,0.0 +21302,64,33.25,48,0.0 +21302,16,17.45,43,0.0 +21302,31,12.5,9,0.0 +21302,54,7.45,47,0.0 +21302,59,55,40,0.0 +21302,22,21,27,0.0 +21302,27,43.9,5,0.0 +21302,26,31.23,48,0.0 +21302,49,20,36,0.0 +21302,11,21,17,0.0 +21302,70,15,14,0.0 +21302,65,21.05,47,0.0 +21302,24,4.5,24,0.0 +21302,77,13,27,0.0 +21302,71,21.5,31,0.0 +21302,23,9,27,0.0 +21302,57,19.5,2,0.0 +21302,74,10,24,0.0 +21302,20,81,5,0.0 +21302,14,23.25,16,0.0 +21302,41,9.65,17,0.0 +21303,58,13.25,31,0.0 +21303,29,123.79,17,0.0 +21303,31,12.5,19,0.0 +21303,5,21.35,20,0.0 +21303,2,19,29,0.0 +21303,18,62.5,29,0.0 +21303,77,13,46,0.0 +21303,63,43.9,44,0.0 +21303,11,21,16,0.0 +21303,59,55,1,0.0 +21303,67,14,6,0.0 +21303,20,81,44,0.0 +21303,42,14,41,0.0 +21303,3,10,31,0.0 +21303,4,22,36,0.0 +21303,35,18,33,0.0 +21303,68,12.5,50,0.0 +21303,45,9.5,38,0.0 +21303,69,36,38,0.0 +21303,26,31.23,39,0.0 +21303,70,15,5,0.0 +21303,14,23.25,20,0.0 +21303,7,30,21,0.0 +21303,8,40,50,0.0 +21303,73,15,47,0.0 +21303,36,19,43,0.0 +21303,48,12.75,8,0.0 +21303,34,14,21,0.0 +21303,57,19.5,22,0.0 +21303,54,7.45,48,0.0 +21303,47,9.5,36,0.0 +21303,41,9.65,3,0.0 +21303,13,6,45,0.0 +21303,27,43.9,24,0.0 +21303,53,32.8,43,0.0 +21303,24,4.5,24,0.0 +21303,9,97,42,0.0 +21303,21,10,1,0.0 +21303,10,31,5,0.0 +21303,39,18,29,0.0 +21303,65,21.05,38,0.0 +21303,25,14,29,0.0 +21303,1,18,48,0.0 +21303,56,38,29,0.0 +21303,19,9.2,50,0.0 +21303,60,34,16,0.0 +21303,49,20,13,0.0 +21303,22,21,37,0.0 +21303,17,39,35,0.0 +21303,23,9,12,0.0 +21304,15,15.5,39,0.0 +21304,27,43.9,28,0.0 +21304,44,19.45,42,0.0 +21304,11,21,4,0.0 +21304,1,18,49,0.0 +21304,76,18,25,0.0 +21304,13,6,41,0.0 +21304,58,13.25,8,0.0 +21304,56,38,5,0.0 +21304,34,14,45,0.0 +21304,25,14,13,0.0 +21304,43,46,17,0.0 +21304,77,13,37,0.0 +21304,66,17,31,0.0 +21304,62,49.3,16,0.0 +21304,33,2.5,11,0.0 +21304,53,32.8,42,0.0 +21304,2,19,30,0.0 +21304,29,123.79,48,0.0 +21304,60,34,21,0.0 +21305,62,49.3,13,0.0 +21305,28,45.6,16,0.0 +21305,27,43.9,32,0.0 +21305,47,9.5,20,0.0 +21305,60,34,38,0.0 +21305,20,81,15,0.0 +21305,21,10,30,0.0 +21305,31,12.5,18,0.0 +21305,32,32,41,0.0 +21305,4,22,33,0.0 +21305,13,6,5,0.0 +21305,12,38,40,0.0 +21305,71,21.5,29,0.0 +21305,73,15,44,0.0 +21305,44,19.45,23,0.0 +21305,70,15,10,0.0 +21305,42,14,39,0.0 +21305,56,38,30,0.0 +21305,46,12,13,0.0 +21305,3,10,7,0.0 +21305,59,55,36,0.0 +21305,36,19,17,0.0 +21305,50,16.25,7,0.0 +21305,74,10,32,0.0 +21305,24,4.5,40,0.0 +21306,38,263.5,48,0.0 +21306,48,12.75,12,0.0 +21306,63,43.9,40,0.0 +21307,12,38,32,0.0 +21307,16,17.45,40,0.0 +21307,50,16.25,42,0.0 +21307,63,43.9,44,0.0 +21307,31,12.5,47,0.0 +21307,51,53,23,0.0 +21307,73,15,33,0.0 +21307,72,34.8,31,0.0 +21307,58,13.25,39,0.0 +21307,60,34,15,0.0 +21307,36,19,8,0.0 +21307,27,43.9,9,0.0 +21307,10,31,40,0.0 +21307,46,12,24,0.0 +21307,21,10,29,0.0 +21307,52,7,4,0.0 +21307,61,28.5,43,0.0 +21307,19,9.2,32,0.0 +21307,65,21.05,10,0.0 +21307,34,14,29,0.0 +21307,5,21.35,38,0.0 +21307,47,9.5,6,0.0 +21307,3,10,6,0.0 +21307,55,24,8,0.0 +21307,64,33.25,11,0.0 +21307,43,46,25,0.0 +21307,29,123.79,6,0.0 +21307,53,32.8,25,0.0 +21308,48,12.75,6,0.0 +21308,16,17.45,28,0.0 +21308,12,38,28,0.0 +21308,44,19.45,22,0.0 +21308,31,12.5,8,0.0 +21308,40,18.4,23,0.0 +21308,57,19.5,16,0.0 +21308,4,22,31,0.0 +21308,66,17,9,0.0 +21308,11,21,34,0.0 +21308,33,2.5,37,0.0 +21308,18,62.5,10,0.0 +21308,36,19,20,0.0 +21309,4,22,7,0.0 +21309,57,19.5,6,0.0 +21309,22,21,15,0.0 +21309,26,31.23,47,0.0 +21309,28,45.6,10,0.0 +21309,32,32,31,0.0 +21309,73,15,20,0.0 +21309,25,14,36,0.0 +21309,7,30,48,0.0 +21309,53,32.8,14,0.0 +21309,27,43.9,9,0.0 +21309,51,53,7,0.0 +21309,17,39,20,0.0 +21309,69,36,14,0.0 +21309,10,31,3,0.0 +21309,41,9.65,35,0.0 +21309,68,12.5,16,0.0 +21309,18,62.5,17,0.0 +21309,49,20,33,0.0 +21309,55,24,22,0.0 +21309,12,38,10,0.0 +21309,15,15.5,20,0.0 +21309,58,13.25,35,0.0 +21309,63,43.9,15,0.0 +21309,66,17,5,0.0 +21309,14,23.25,24,0.0 +21309,75,7.75,22,0.0 +21309,23,9,34,0.0 +21309,44,19.45,41,0.0 +21309,5,21.35,10,0.0 +21309,13,6,22,0.0 +21309,77,13,21,0.0 +21309,6,25,26,0.0 +21309,47,9.5,36,0.0 +21309,29,123.79,35,0.0 +21309,60,34,14,0.0 +21309,21,10,39,0.0 +21309,76,18,10,0.0 +21309,39,18,6,0.0 +21309,70,15,22,0.0 +21309,65,21.05,31,0.0 +21309,30,25.89,6,0.0 +21309,45,9.5,43,0.0 +21309,72,34.8,50,0.0 +21309,9,97,35,0.0 +21309,36,19,18,0.0 +21309,33,2.5,10,0.0 +21309,52,7,33,0.0 +21309,74,10,2,0.0 +21309,62,49.3,46,0.0 +21309,35,18,38,0.0 +21310,37,26,29,0.0 +21310,26,31.23,2,0.0 +21310,3,10,21,0.0 +21310,12,38,15,0.0 +21310,57,19.5,6,0.0 +21310,70,15,44,0.0 +21310,47,9.5,35,0.0 +21310,59,55,13,0.0 +21310,35,18,44,0.0 +21310,19,9.2,34,0.0 +21310,53,32.8,49,0.0 +21310,66,17,2,0.0 +21310,64,33.25,45,0.0 +21310,58,13.25,39,0.0 +21310,22,21,23,0.0 +21310,17,39,23,0.0 +21310,15,15.5,29,0.0 +21310,72,34.8,44,0.0 +21310,55,24,17,0.0 +21310,68,12.5,16,0.0 +21310,32,32,50,0.0 +21310,39,18,18,0.0 +21310,77,13,18,0.0 +21310,5,21.35,17,0.0 +21310,7,30,17,0.0 +21310,67,14,4,0.0 +21310,38,263.5,35,0.0 +21310,75,7.75,48,0.0 +21310,65,21.05,19,0.0 +21310,24,4.5,50,0.0 +21310,56,38,44,0.0 +21310,4,22,3,0.0 +21310,11,21,29,0.0 +21310,63,43.9,31,0.0 +21310,71,21.5,29,0.0 +21310,2,19,4,0.0 +21310,43,46,13,0.0 +21310,40,18.4,48,0.0 +21310,41,9.65,24,0.0 +21310,54,7.45,8,0.0 +21310,51,53,12,0.0 +21310,14,23.25,31,0.0 +21310,8,40,33,0.0 +21310,52,7,33,0.0 +21310,60,34,34,0.0 +21310,1,18,39,0.0 +21310,23,9,21,0.0 +21310,30,25.89,34,0.0 +21310,13,6,45,0.0 +21310,73,15,8,0.0 +21310,42,14,27,0.0 +21310,33,2.5,37,0.0 +21310,20,81,15,0.0 +21310,69,36,45,0.0 +21310,6,25,1,0.0 +21310,18,62.5,2,0.0 +21311,46,12,23,0.0 +21311,28,45.6,7,0.0 +21311,31,12.5,39,0.0 +21311,70,15,11,0.0 +21311,14,23.25,26,0.0 +21311,11,21,8,0.0 +21311,56,38,12,0.0 +21311,19,9.2,7,0.0 +21311,3,10,10,0.0 +21311,32,32,7,0.0 +21311,75,7.75,4,0.0 +21311,48,12.75,28,0.0 +21311,40,18.4,20,0.0 +21311,58,13.25,33,0.0 +21311,8,40,26,0.0 +21311,73,15,21,0.0 +21311,5,21.35,11,0.0 +21311,25,14,34,0.0 +21311,29,123.79,37,0.0 +21311,6,25,39,0.0 +21311,27,43.9,20,0.0 +21311,66,17,34,0.0 +21311,64,33.25,44,0.0 +21311,71,21.5,45,0.0 +21311,51,53,2,0.0 +21311,24,4.5,4,0.0 +21311,39,18,21,0.0 +21311,30,25.89,27,0.0 +21311,49,20,2,0.0 +21311,47,9.5,45,0.0 +21311,35,18,43,0.0 +21311,12,38,40,0.0 +21311,68,12.5,46,0.0 +21311,22,21,22,0.0 +21311,37,26,43,0.0 +21311,67,14,2,0.0 +21311,16,17.45,46,0.0 +21311,43,46,6,0.0 +21311,65,21.05,19,0.0 +21311,7,30,37,0.0 +21311,69,36,34,0.0 +21311,36,19,44,0.0 +21311,34,14,47,0.0 +21311,63,43.9,21,0.0 +21311,4,22,27,0.0 +21312,58,13.25,14,0.0 +21312,59,55,34,0.0 +21312,48,12.75,28,0.0 +21312,39,18,47,0.0 +21312,31,12.5,2,0.0 +21312,69,36,14,0.0 +21312,36,19,50,0.0 +21312,61,28.5,25,0.0 +21312,30,25.89,21,0.0 +21312,76,18,44,0.0 +21312,68,12.5,48,0.0 +21312,29,123.79,45,0.0 +21312,73,15,32,0.0 +21312,55,24,42,0.0 +21312,6,25,5,0.0 +21312,53,32.8,41,0.0 +21312,41,9.65,47,0.0 +21312,28,45.6,48,0.0 +21312,54,7.45,30,0.0 +21312,34,14,37,0.0 +21312,37,26,39,0.0 +21312,50,16.25,28,0.0 +21312,72,34.8,23,0.0 +21312,24,4.5,46,0.0 +21312,57,19.5,33,0.0 +21312,23,9,24,0.0 +21312,27,43.9,40,0.0 +21312,62,49.3,21,0.0 +21312,33,2.5,44,0.0 +21312,12,38,15,0.0 +21312,13,6,20,0.0 +21312,77,13,7,0.0 +21312,42,14,36,0.0 +21312,70,15,20,0.0 +21312,21,10,33,0.0 +21312,17,39,50,0.0 +21312,38,263.5,37,0.0 +21312,67,14,34,0.0 +21312,44,19.45,32,0.0 +21312,71,21.5,1,0.0 +21312,45,9.5,20,0.0 +21312,15,15.5,50,0.0 +21312,5,21.35,46,0.0 +21312,63,43.9,7,0.0 +21312,25,14,20,0.0 +21312,7,30,43,0.0 +21312,64,33.25,1,0.0 +21312,10,31,37,0.0 +21312,35,18,43,0.0 +21312,20,81,5,0.0 +21312,56,38,45,0.0 +21312,26,31.23,31,0.0 +21312,16,17.45,21,0.0 +21312,46,12,13,0.0 +21312,66,17,33,0.0 +21312,49,20,23,0.0 +21312,60,34,8,0.0 +21312,65,21.05,42,0.0 +21313,32,32,2,0.0 +21313,6,25,15,0.0 +21313,42,14,5,0.0 +21313,69,36,48,0.0 +21313,47,9.5,9,0.0 +21313,30,25.89,16,0.0 +21313,71,21.5,44,0.0 +21313,21,10,3,0.0 +21313,73,15,8,0.0 +21313,75,7.75,10,0.0 +21313,63,43.9,40,0.0 +21313,48,12.75,23,0.0 +21313,17,39,20,0.0 +21313,13,6,36,0.0 +21313,28,45.6,11,0.0 +21313,8,40,10,0.0 +21313,1,18,40,0.0 +21313,37,26,41,0.0 +21313,15,15.5,17,0.0 +21314,75,7.75,22,0.0 +21314,8,40,45,0.0 +21314,69,36,49,0.0 +21314,44,19.45,13,0.0 +21314,38,263.5,24,0.0 +21314,7,30,45,0.0 +21314,52,7,17,0.0 +21314,2,19,24,0.0 +21314,19,9.2,4,0.0 +21314,43,46,11,0.0 +21314,77,13,49,0.0 +21314,73,15,37,0.0 +21314,14,23.25,14,0.0 +21314,71,21.5,4,0.0 +21314,45,9.5,44,0.0 +21314,34,14,31,0.0 +21314,53,32.8,37,0.0 +21314,76,18,40,0.0 +21314,1,18,4,0.0 +21314,64,33.25,9,0.0 +21314,72,34.8,47,0.0 +21314,3,10,8,0.0 +21314,42,14,11,0.0 +21314,67,14,22,0.0 +21314,27,43.9,15,0.0 +21314,22,21,6,0.0 +21314,59,55,34,0.0 +21314,56,38,11,0.0 +21314,24,4.5,14,0.0 +21314,15,15.5,17,0.0 +21314,40,18.4,37,0.0 +21314,39,18,46,0.0 +21314,70,15,41,0.0 +21314,29,123.79,19,0.0 +21314,46,12,14,0.0 +21314,5,21.35,23,0.0 +21314,18,62.5,43,0.0 +21314,28,45.6,44,0.0 +21314,9,97,26,0.0 +21314,11,21,43,0.0 +21314,41,9.65,27,0.0 +21314,30,25.89,30,0.0 +21314,4,22,17,0.0 +21314,37,26,22,0.0 +21314,23,9,40,0.0 +21314,32,32,40,0.0 +21314,61,28.5,27,0.0 +21314,13,6,15,0.0 +21314,63,43.9,47,0.0 +21314,26,31.23,6,0.0 +21314,20,81,30,0.0 +21315,20,81,26,0.0 +21315,68,12.5,9,0.0 +21315,55,24,35,0.0 +21315,25,14,1,0.0 +21315,49,20,28,0.0 +21315,2,19,20,0.0 +21315,3,10,26,0.0 +21315,24,4.5,8,0.0 +21315,31,12.5,31,0.0 +21315,8,40,32,0.0 +21315,48,12.75,37,0.0 +21315,5,21.35,3,0.0 +21315,15,15.5,25,0.0 +21315,35,18,44,0.0 +21315,59,55,42,0.0 +21315,73,15,18,0.0 +21315,56,38,31,0.0 +21315,37,26,6,0.0 +21315,41,9.65,50,0.0 +21315,58,13.25,9,0.0 +21315,39,18,5,0.0 +21315,64,33.25,35,0.0 +21315,74,10,14,0.0 +21315,51,53,18,0.0 +21315,38,263.5,36,0.0 +21315,71,21.5,2,0.0 +21315,52,7,7,0.0 +21315,34,14,14,0.0 +21315,54,7.45,33,0.0 +21315,61,28.5,16,0.0 +21315,69,36,49,0.0 +21315,45,9.5,18,0.0 +21315,18,62.5,27,0.0 +21315,27,43.9,50,0.0 +21315,1,18,23,0.0 +21315,26,31.23,46,0.0 +21315,70,15,44,0.0 +21315,22,21,26,0.0 +21316,50,16.25,43,0.0 +21316,60,34,19,0.0 +21316,38,263.5,4,0.0 +21316,57,19.5,36,0.0 +21316,74,10,17,0.0 +21316,56,38,42,0.0 +21316,62,49.3,24,0.0 +21316,33,2.5,46,0.0 +21316,54,7.45,40,0.0 +21316,16,17.45,4,0.0 +21316,32,32,18,0.0 +21316,75,7.75,41,0.0 +21316,76,18,11,0.0 +21316,7,30,42,0.0 +21316,53,32.8,8,0.0 +21317,61,28.5,49,0.0 +21317,8,40,16,0.0 +21317,64,33.25,4,0.0 +21317,53,32.8,5,0.0 +21317,45,9.5,39,0.0 +21317,76,18,34,0.0 +21317,31,12.5,38,0.0 +21317,43,46,37,0.0 +21317,22,21,36,0.0 +21317,19,9.2,42,0.0 +21317,74,10,8,0.0 +21317,12,38,50,0.0 +21317,65,21.05,32,0.0 +21317,47,9.5,22,0.0 +21317,33,2.5,9,0.0 +21317,69,36,30,0.0 +21317,1,18,32,0.0 +21317,77,13,5,0.0 +21317,67,14,41,0.0 +21317,41,9.65,34,0.0 +21317,2,19,32,0.0 +21317,39,18,17,0.0 +21317,36,19,12,0.0 +21317,37,26,8,0.0 +21317,59,55,29,0.0 +21317,32,32,8,0.0 +21317,11,21,40,0.0 +21317,6,25,34,0.0 +21317,63,43.9,42,0.0 +21318,53,32.8,44,0.0 +21318,32,32,29,0.0 +21318,76,18,29,0.0 +21318,66,17,16,0.0 +21318,12,38,10,0.0 +21318,11,21,33,0.0 +21318,34,14,36,0.0 +21318,77,13,36,0.0 +21318,40,18.4,43,0.0 +21318,27,43.9,7,0.0 +21318,35,18,38,0.0 +21318,33,2.5,9,0.0 +21318,24,4.5,32,0.0 +21318,61,28.5,34,0.0 +21318,59,55,19,0.0 +21318,46,12,17,0.0 +21318,19,9.2,29,0.0 +21318,1,18,27,0.0 +21318,14,23.25,13,0.0 +21318,9,97,24,0.0 +21318,49,20,42,0.0 +21318,29,123.79,4,0.0 +21318,74,10,29,0.0 +21318,41,9.65,19,0.0 +21318,15,15.5,15,0.0 +21318,63,43.9,34,0.0 +21318,65,21.05,42,0.0 +21318,68,12.5,20,0.0 +21318,73,15,40,0.0 +21318,10,31,43,0.0 +21318,69,36,31,0.0 +21318,44,19.45,47,0.0 +21318,16,17.45,16,0.0 +21318,30,25.89,36,0.0 +21318,4,22,6,0.0 +21318,42,14,4,0.0 +21318,8,40,30,0.0 +21318,58,13.25,38,0.0 +21318,54,7.45,48,0.0 +21318,3,10,23,0.0 +21318,17,39,2,0.0 +21318,72,34.8,25,0.0 +21318,22,21,18,0.0 +21318,56,38,34,0.0 +21318,47,9.5,14,0.0 +21318,39,18,44,0.0 +21318,13,6,33,0.0 +21318,71,21.5,35,0.0 +21318,7,30,31,0.0 +21319,70,15,34,0.0 +21319,31,12.5,25,0.0 +21319,42,14,49,0.0 +21319,50,16.25,48,0.0 +21319,48,12.75,24,0.0 +21319,8,40,39,0.0 +21319,20,81,2,0.0 +21319,21,10,41,0.0 +21319,5,21.35,9,0.0 +21319,66,17,38,0.0 +21319,37,26,1,0.0 +21319,7,30,31,0.0 +21319,19,9.2,42,0.0 +21319,72,34.8,42,0.0 +21319,26,31.23,2,0.0 +21319,69,36,6,0.0 +21319,44,19.45,29,0.0 +21319,64,33.25,1,0.0 +21319,17,39,17,0.0 +21319,28,45.6,22,0.0 +21319,71,21.5,36,0.0 +21319,34,14,44,0.0 +21319,61,28.5,15,0.0 +21319,10,31,41,0.0 +21319,14,23.25,28,0.0 +21319,53,32.8,50,0.0 +21319,55,24,20,0.0 +21319,39,18,34,0.0 +21319,24,4.5,35,0.0 +21319,13,6,6,0.0 +21319,76,18,5,0.0 +21319,57,19.5,50,0.0 +21319,2,19,30,0.0 +21319,35,18,8,0.0 +21319,56,38,4,0.0 +21319,18,62.5,14,0.0 +21319,23,9,49,0.0 +21319,38,263.5,50,0.0 +21319,54,7.45,14,0.0 +21319,25,14,10,0.0 +21319,22,21,39,0.0 +21319,73,15,9,0.0 +21319,45,9.5,11,0.0 +21319,65,21.05,15,0.0 +21319,6,25,50,0.0 +21319,46,12,45,0.0 +21319,52,7,9,0.0 +21319,77,13,35,0.0 +21319,68,12.5,10,0.0 +21319,32,32,31,0.0 +21319,3,10,18,0.0 +21319,67,14,43,0.0 +21319,47,9.5,39,0.0 +21319,75,7.75,10,0.0 +21320,77,13,27,0.0 +21320,4,22,31,0.0 +21320,37,26,31,0.0 +21320,17,39,27,0.0 +21320,20,81,4,0.0 +21320,62,49.3,18,0.0 +21320,49,20,16,0.0 +21320,41,9.65,32,0.0 +21320,36,19,11,0.0 +21320,55,24,27,0.0 +21320,60,34,35,0.0 +21320,68,12.5,9,0.0 +21320,12,38,21,0.0 +21320,61,28.5,45,0.0 +21320,15,15.5,36,0.0 +21320,45,9.5,18,0.0 +21320,11,21,50,0.0 +21320,75,7.75,39,0.0 +21320,14,23.25,2,0.0 +21320,9,97,14,0.0 +21320,29,123.79,42,0.0 +21320,48,12.75,31,0.0 +21320,7,30,9,0.0 +21320,2,19,34,0.0 +21320,6,25,12,0.0 +21320,18,62.5,12,0.0 +21320,39,18,6,0.0 +21320,40,18.4,11,0.0 +21320,25,14,29,0.0 +21320,13,6,13,0.0 +21320,3,10,9,0.0 +21320,19,9.2,31,0.0 +21320,22,21,47,0.0 +21320,51,53,9,0.0 +21320,42,14,1,0.0 +21320,73,15,19,0.0 +21320,1,18,9,0.0 +21320,69,36,29,0.0 +21320,67,14,4,0.0 +21320,28,45.6,43,0.0 +21320,74,10,4,0.0 +21320,31,12.5,5,0.0 +21320,10,31,32,0.0 +21320,43,46,50,0.0 +21320,52,7,50,0.0 +21320,76,18,39,0.0 +21320,38,263.5,30,0.0 +21320,26,31.23,33,0.0 +21320,33,2.5,13,0.0 +21320,50,16.25,43,0.0 +21320,5,21.35,35,0.0 +21320,66,17,26,0.0 +21320,71,21.5,35,0.0 +21320,23,9,28,0.0 +21320,35,18,20,0.0 +21320,59,55,18,0.0 +21320,44,19.45,27,0.0 +21320,32,32,12,0.0 +21320,54,7.45,47,0.0 +21320,58,13.25,26,0.0 +21320,30,25.89,44,0.0 +21320,24,4.5,36,0.0 +21320,8,40,1,0.0 +21320,70,15,49,0.0 +21320,47,9.5,27,0.0 +21320,27,43.9,41,0.0 +21320,63,43.9,11,0.0 +21320,16,17.45,11,0.0 +21320,65,21.05,42,0.0 +21320,56,38,41,0.0 +21320,21,10,40,0.0 +21320,64,33.25,41,0.0 +21321,65,21.05,36,0.0 +21321,53,32.8,16,0.0 +21321,41,9.65,38,0.0 +21321,50,16.25,6,0.0 +21321,64,33.25,16,0.0 +21321,54,7.45,4,0.0 +21321,31,12.5,49,0.0 +21321,4,22,38,0.0 +21321,13,6,3,0.0 +21321,55,24,13,0.0 +21321,40,18.4,12,0.0 +21321,72,34.8,36,0.0 +21321,45,9.5,14,0.0 +21321,42,14,49,0.0 +21321,6,25,28,0.0 +21321,16,17.45,2,0.0 +21321,8,40,12,0.0 +21321,24,4.5,34,0.0 +21321,74,10,20,0.0 +21321,46,12,25,0.0 +21321,21,10,8,0.0 +21321,22,21,46,0.0 +21321,7,30,6,0.0 +21321,2,19,12,0.0 +21321,67,14,48,0.0 +21321,34,14,34,0.0 +21321,58,13.25,27,0.0 +21321,10,31,21,0.0 +21321,11,21,24,0.0 +21321,12,38,12,0.0 +21321,51,53,2,0.0 +21321,32,32,2,0.0 +21321,70,15,38,0.0 +21321,36,19,50,0.0 +21321,33,2.5,49,0.0 +21321,30,25.89,32,0.0 +21321,1,18,48,0.0 +21321,69,36,38,0.0 +21321,75,7.75,37,0.0 +21321,66,17,20,0.0 +21321,35,18,31,0.0 +21321,59,55,45,0.0 +21321,47,9.5,19,0.0 +21321,3,10,13,0.0 +21321,44,19.45,10,0.0 +21321,25,14,43,0.0 +21321,18,62.5,24,0.0 +21321,71,21.5,11,0.0 +21321,29,123.79,30,0.0 +21321,19,9.2,42,0.0 +21321,5,21.35,23,0.0 +21322,64,33.25,49,0.0 +21322,59,55,26,0.0 +21322,24,4.5,46,0.0 +21322,2,19,42,0.0 +21322,39,18,25,0.0 +21322,38,263.5,1,0.0 +21322,48,12.75,4,0.0 +21322,34,14,29,0.0 +21322,12,38,13,0.0 +21322,71,21.5,1,0.0 +21322,44,19.45,19,0.0 +21322,54,7.45,21,0.0 +21322,20,81,24,0.0 +21322,60,34,43,0.0 +21322,66,17,20,0.0 +21322,7,30,32,0.0 +21322,75,7.75,6,0.0 +21322,74,10,9,0.0 +21322,52,7,1,0.0 +21322,28,45.6,11,0.0 +21322,53,32.8,16,0.0 +21322,18,62.5,3,0.0 +21322,10,31,37,0.0 +21322,68,12.5,33,0.0 +21322,3,10,33,0.0 +21322,27,43.9,20,0.0 +21322,77,13,34,0.0 +21322,73,15,43,0.0 +21322,65,21.05,9,0.0 +21322,61,28.5,26,0.0 +21322,50,16.25,40,0.0 +21322,14,23.25,14,0.0 +21322,49,20,7,0.0 +21322,67,14,11,0.0 +21322,42,14,16,0.0 +21322,41,9.65,25,0.0 +21322,32,32,38,0.0 +21322,9,97,31,0.0 +21322,55,24,39,0.0 +21322,5,21.35,43,0.0 +21322,45,9.5,36,0.0 +21322,62,49.3,41,0.0 +21322,56,38,7,0.0 +21322,30,25.89,23,0.0 +21322,35,18,10,0.0 +21322,8,40,20,0.0 +21322,51,53,50,0.0 +21322,4,22,16,0.0 +21322,23,9,13,0.0 +21322,22,21,18,0.0 +21322,29,123.79,44,0.0 +21322,33,2.5,12,0.0 +21322,11,21,31,0.0 +21322,57,19.5,15,0.0 +21322,26,31.23,21,0.0 +21322,40,18.4,30,0.0 +21322,13,6,38,0.0 +21322,43,46,39,0.0 +21322,25,14,37,0.0 +21322,19,9.2,23,0.0 +21322,46,12,25,0.0 +21322,16,17.45,15,0.0 +21322,76,18,49,0.0 +21322,17,39,35,0.0 +21322,31,12.5,1,0.0 +21323,69,36,2,0.0 +21323,22,21,43,0.0 +21323,20,81,5,0.0 +21323,71,21.5,45,0.0 +21323,3,10,5,0.0 +21323,35,18,17,0.0 +21323,41,9.65,29,0.0 +21323,43,46,48,0.0 +21323,38,263.5,15,0.0 +21323,50,16.25,38,0.0 +21323,51,53,18,0.0 +21323,39,18,17,0.0 +21323,74,10,48,0.0 +21323,62,49.3,45,0.0 +21323,48,12.75,11,0.0 +21323,17,39,19,0.0 +21323,76,18,7,0.0 +21323,64,33.25,22,0.0 +21323,70,15,32,0.0 +21323,63,43.9,12,0.0 +21323,4,22,29,0.0 +21323,57,19.5,39,0.0 +21323,37,26,28,0.0 +21324,11,21,49,0.0 +21324,40,18.4,48,0.0 +21324,21,10,25,0.0 +21324,57,19.5,7,0.0 +21324,75,7.75,1,0.0 +21324,20,81,7,0.0 +21324,65,21.05,10,0.0 +21324,45,9.5,17,0.0 +21324,4,22,7,0.0 +21324,69,36,23,0.0 +21324,2,19,24,0.0 +21324,13,6,27,0.0 +21324,67,14,3,0.0 +21324,54,7.45,24,0.0 +21324,43,46,23,0.0 +21324,6,25,33,0.0 +21324,14,23.25,15,0.0 +21324,33,2.5,31,0.0 +21324,12,38,36,0.0 +21325,61,28.5,34,0.0 +21325,62,49.3,25,0.0 +21325,74,10,3,0.0 +21325,28,45.6,34,0.0 +21325,77,13,23,0.0 +21325,66,17,47,0.0 +21326,46,12,43,0.0 +21326,64,33.25,38,0.0 +21326,6,25,27,0.0 +21326,58,13.25,9,0.0 +21326,51,53,10,0.0 +21326,70,15,5,0.0 +21326,32,32,26,0.0 +21326,75,7.75,21,0.0 +21326,15,15.5,48,0.0 +21326,4,22,16,0.0 +21326,77,13,4,0.0 +21326,25,14,44,0.0 +21326,19,9.2,26,0.0 +21326,55,24,31,0.0 +21326,29,123.79,28,0.0 +21326,67,14,1,0.0 +21326,30,25.89,8,0.0 +21326,57,19.5,49,0.0 +21326,61,28.5,15,0.0 +21326,18,62.5,32,0.0 +21326,41,9.65,49,0.0 +21326,38,263.5,39,0.0 +21327,61,28.5,2,0.0 +21327,49,20,2,0.0 +21327,68,12.5,11,0.0 +21327,37,26,44,0.0 +21327,67,14,18,0.0 +21327,57,19.5,7,0.0 +21327,75,7.75,14,0.0 +21327,26,31.23,34,0.0 +21327,45,9.5,30,0.0 +21327,38,263.5,13,0.0 +21327,43,46,34,0.0 +21327,9,97,46,0.0 +21327,36,19,8,0.0 +21327,69,36,30,0.0 +21327,52,7,47,0.0 +21327,13,6,41,0.0 +21327,59,55,9,0.0 +21327,77,13,8,0.0 +21327,21,10,29,0.0 +21327,71,21.5,49,0.0 +21327,18,62.5,12,0.0 +21327,4,22,16,0.0 +21327,42,14,16,0.0 +21327,73,15,31,0.0 +21327,27,43.9,44,0.0 +21327,12,38,27,0.0 +21327,74,10,45,0.0 +21327,31,12.5,48,0.0 +21327,54,7.45,44,0.0 +21327,17,39,14,0.0 +21327,14,23.25,13,0.0 +21327,1,18,49,0.0 +21327,28,45.6,22,0.0 +21328,76,18,32,0.0 +21328,74,10,31,0.0 +21328,10,31,23,0.0 +21328,4,22,12,0.0 +21328,46,12,10,0.0 +21328,25,14,1,0.0 +21328,44,19.45,36,0.0 +21328,37,26,37,0.0 +21328,70,15,27,0.0 +21328,47,9.5,29,0.0 +21328,43,46,6,0.0 +21328,42,14,30,0.0 +21328,39,18,26,0.0 +21328,28,45.6,33,0.0 +21328,45,9.5,32,0.0 +21328,19,9.2,38,0.0 +21328,77,13,44,0.0 +21328,75,7.75,28,0.0 +21328,11,21,45,0.0 +21328,34,14,13,0.0 +21328,31,12.5,9,0.0 +21328,29,123.79,44,0.0 +21328,26,31.23,30,0.0 +21328,3,10,18,0.0 +21328,24,4.5,16,0.0 +21328,62,49.3,46,0.0 +21328,67,14,3,0.0 +21328,17,39,9,0.0 +21328,69,36,12,0.0 +21328,38,263.5,47,0.0 +21328,48,12.75,46,0.0 +21328,33,2.5,28,0.0 +21328,53,32.8,39,0.0 +21328,8,40,24,0.0 +21328,22,21,50,0.0 +21328,57,19.5,3,0.0 +21328,59,55,4,0.0 +21328,60,34,27,0.0 +21328,51,53,46,0.0 +21328,55,24,32,0.0 +21328,71,21.5,43,0.0 +21329,10,31,2,0.0 +21329,43,46,25,0.0 +21329,37,26,25,0.0 +21329,1,18,10,0.0 +21329,14,23.25,26,0.0 +21329,36,19,10,0.0 +21329,55,24,25,0.0 +21329,6,25,30,0.0 +21329,73,15,17,0.0 +21329,30,25.89,36,0.0 +21329,57,19.5,29,0.0 +21329,16,17.45,28,0.0 +21329,34,14,17,0.0 +21329,17,39,1,0.0 +21329,8,40,49,0.0 +21329,42,14,14,0.0 +21329,66,17,50,0.0 +21329,65,21.05,26,0.0 +21329,29,123.79,21,0.0 +21329,24,4.5,8,0.0 +21329,27,43.9,24,0.0 +21329,31,12.5,23,0.0 +21329,52,7,17,0.0 +21329,40,18.4,13,0.0 +21329,19,9.2,18,0.0 +21329,64,33.25,43,0.0 +21329,9,97,6,0.0 +21329,59,55,30,0.0 +21329,2,19,8,0.0 +21329,47,9.5,23,0.0 +21329,46,12,8,0.0 +21329,28,45.6,11,0.0 +21329,22,21,8,0.0 +21329,45,9.5,3,0.0 +21329,35,18,42,0.0 +21329,3,10,2,0.0 +21329,58,13.25,46,0.0 +21329,32,32,20,0.0 +21329,72,34.8,18,0.0 +21329,12,38,22,0.0 +21329,15,15.5,20,0.0 +21329,11,21,36,0.0 +21329,33,2.5,1,0.0 +21329,39,18,42,0.0 +21329,44,19.45,8,0.0 +21329,68,12.5,20,0.0 +21329,38,263.5,20,0.0 +21329,77,13,29,0.0 +21329,49,20,8,0.0 +21329,63,43.9,18,0.0 +21329,5,21.35,5,0.0 +21329,18,62.5,47,0.0 +21329,20,81,17,0.0 +21329,60,34,4,0.0 +21329,48,12.75,38,0.0 +21329,7,30,49,0.0 +21329,70,15,25,0.0 +21329,56,38,11,0.0 +21329,75,7.75,16,0.0 +21329,71,21.5,44,0.0 +21329,69,36,4,0.0 +21329,54,7.45,8,0.0 +21329,62,49.3,15,0.0 +21329,51,53,41,0.0 +21329,50,16.25,41,0.0 +21329,21,10,33,0.0 +21329,4,22,14,0.0 +21329,76,18,22,0.0 +21329,53,32.8,21,0.0 +21329,61,28.5,37,0.0 +21329,23,9,50,0.0 +21329,25,14,34,0.0 +21329,74,10,19,0.0 +21330,32,32,35,0.0 +21330,45,9.5,41,0.0 +21330,58,13.25,36,0.0 +21330,10,31,30,0.0 +21330,31,12.5,21,0.0 +21330,65,21.05,34,0.0 +21330,20,81,24,0.0 +21330,42,14,32,0.0 +21330,9,97,47,0.0 +21330,34,14,16,0.0 +21330,15,15.5,36,0.0 +21330,67,14,22,0.0 +21330,25,14,6,0.0 +21330,62,49.3,48,0.0 +21330,29,123.79,34,0.0 +21330,55,24,11,0.0 +21330,38,263.5,9,0.0 +21331,5,21.35,4,0.0 +21331,32,32,43,0.0 +21331,58,13.25,44,0.0 +21331,76,18,8,0.0 +21331,61,28.5,2,0.0 +21331,25,14,11,0.0 +21331,77,13,7,0.0 +21331,30,25.89,48,0.0 +21331,68,12.5,7,0.0 +21331,24,4.5,6,0.0 +21331,38,263.5,21,0.0 +21331,49,20,11,0.0 +21331,52,7,36,0.0 +21331,10,31,35,0.0 +21331,33,2.5,26,0.0 +21331,1,18,38,0.0 +21331,47,9.5,18,0.0 +21331,29,123.79,40,0.0 +21331,72,34.8,28,0.0 +21331,59,55,36,0.0 +21331,6,25,4,0.0 +21331,4,22,47,0.0 +21331,67,14,4,0.0 +21331,66,17,12,0.0 +21331,73,15,1,0.0 +21331,41,9.65,27,0.0 +21331,34,14,8,0.0 +21331,11,21,33,0.0 +21331,51,53,29,0.0 +21331,2,19,28,0.0 +21331,8,40,38,0.0 +21331,15,15.5,26,0.0 +21331,74,10,4,0.0 +21331,50,16.25,12,0.0 +21331,46,12,2,0.0 +21331,35,18,50,0.0 +21331,75,7.75,46,0.0 +21331,55,24,9,0.0 +21331,26,31.23,1,0.0 +21331,13,6,34,0.0 +21331,65,21.05,49,0.0 +21331,70,15,20,0.0 +21331,40,18.4,48,0.0 +21331,63,43.9,44,0.0 +21331,18,62.5,24,0.0 +21331,23,9,39,0.0 +21331,37,26,32,0.0 +21331,27,43.9,26,0.0 +21331,54,7.45,12,0.0 +21331,42,14,37,0.0 +21331,12,38,6,0.0 +21331,16,17.45,3,0.0 +21331,71,21.5,17,0.0 +21331,17,39,26,0.0 +21331,7,30,24,0.0 +21331,48,12.75,40,0.0 +21331,62,49.3,33,0.0 +21331,56,38,5,0.0 +21331,9,97,4,0.0 +21331,3,10,40,0.0 +21331,14,23.25,5,0.0 +21331,20,81,47,0.0 +21331,45,9.5,2,0.0 +21331,57,19.5,22,0.0 +21331,53,32.8,30,0.0 +21331,36,19,12,0.0 +21331,64,33.25,12,0.0 +21331,39,18,32,0.0 +21331,43,46,7,0.0 +21331,31,12.5,10,0.0 +21332,51,53,5,0.0 +21332,52,7,21,0.0 +21332,8,40,30,0.0 +21332,1,18,23,0.0 +21332,33,2.5,3,0.0 +21332,40,18.4,29,0.0 +21332,57,19.5,3,0.0 +21332,23,9,23,0.0 +21332,12,38,50,0.0 +21332,9,97,9,0.0 +21332,72,34.8,10,0.0 +21332,47,9.5,11,0.0 +21332,59,55,9,0.0 +21332,65,21.05,31,0.0 +21333,60,34,10,0.0 +21333,14,23.25,6,0.0 +21333,66,17,9,0.0 +21333,7,30,13,0.0 +21333,75,7.75,47,0.0 +21333,47,9.5,45,0.0 +21333,46,12,37,0.0 +21333,19,9.2,3,0.0 +21333,13,6,31,0.0 +21333,72,34.8,17,0.0 +21333,10,31,30,0.0 +21333,56,38,41,0.0 +21333,69,36,29,0.0 +21333,70,15,43,0.0 +21333,8,40,7,0.0 +21333,25,14,19,0.0 +21333,12,38,11,0.0 +21333,27,43.9,15,0.0 +21333,67,14,13,0.0 +21333,41,9.65,26,0.0 +21333,5,21.35,4,0.0 +21333,77,13,9,0.0 +21333,4,22,23,0.0 +21333,65,21.05,36,0.0 +21333,21,10,22,0.0 +21333,30,25.89,4,0.0 +21333,76,18,8,0.0 +21333,3,10,38,0.0 +21333,61,28.5,20,0.0 +21333,37,26,6,0.0 +21333,68,12.5,15,0.0 +21333,62,49.3,49,0.0 +21333,2,19,40,0.0 +21333,45,9.5,22,0.0 +21333,11,21,10,0.0 +21333,38,263.5,44,0.0 +21333,59,55,20,0.0 +21333,15,15.5,26,0.0 +21333,51,53,31,0.0 +21333,23,9,48,0.0 +21333,1,18,11,0.0 +21333,22,21,9,0.0 +21333,35,18,31,0.0 +21333,17,39,2,0.0 +21333,32,32,5,0.0 +21333,6,25,27,0.0 +21333,63,43.9,45,0.0 +21333,24,4.5,33,0.0 +21333,54,7.45,42,0.0 +21333,26,31.23,37,0.0 +21333,9,97,41,0.0 +21333,40,18.4,28,0.0 +21333,57,19.5,18,0.0 +21333,16,17.45,46,0.0 +21333,20,81,47,0.0 +21333,49,20,15,0.0 +21333,18,62.5,40,0.0 +21333,50,16.25,37,0.0 +21333,52,7,50,0.0 +21333,74,10,41,0.0 +21333,44,19.45,43,0.0 +21333,64,33.25,49,0.0 +21333,34,14,20,0.0 +21333,71,21.5,24,0.0 +21334,11,21,31,0.0 +21334,67,14,22,0.0 +21334,77,13,36,0.0 +21334,8,40,39,0.0 +21334,69,36,45,0.0 +21334,3,10,30,0.0 +21334,1,18,24,0.0 +21334,15,15.5,41,0.0 +21334,31,12.5,33,0.0 +21334,24,4.5,11,0.0 +21334,68,12.5,35,0.0 +21334,75,7.75,43,0.0 +21334,30,25.89,18,0.0 +21334,44,19.45,28,0.0 +21334,60,34,44,0.0 +21334,40,18.4,7,0.0 +21334,19,9.2,16,0.0 +21334,61,28.5,27,0.0 +21334,17,39,30,0.0 +21334,43,46,32,0.0 +21334,4,22,35,0.0 +21334,45,9.5,5,0.0 +21334,65,21.05,47,0.0 +21334,34,14,3,0.0 +21334,54,7.45,37,0.0 +21334,13,6,5,0.0 +21334,14,23.25,32,0.0 +21334,37,26,47,0.0 +21335,60,34,17,0.0 +21335,59,55,23,0.0 +21335,13,6,44,0.0 +21335,65,21.05,11,0.0 +21335,64,33.25,15,0.0 +21335,28,45.6,14,0.0 +21335,75,7.75,37,0.0 +21335,61,28.5,4,0.0 +21335,45,9.5,18,0.0 +21335,12,38,35,0.0 +21335,7,30,7,0.0 +21335,54,7.45,2,0.0 +21335,51,53,38,0.0 +21335,74,10,39,0.0 +21335,6,25,19,0.0 +21335,11,21,3,0.0 +21335,73,15,35,0.0 +21335,63,43.9,23,0.0 +21335,46,12,37,0.0 +21335,68,12.5,48,0.0 +21335,1,18,2,0.0 +21335,23,9,18,0.0 +21335,52,7,9,0.0 +21335,66,17,39,0.0 +21335,57,19.5,45,0.0 +21335,71,21.5,11,0.0 +21335,16,17.45,40,0.0 +21335,77,13,18,0.0 +21335,62,49.3,10,0.0 +21335,33,2.5,32,0.0 +21335,58,13.25,31,0.0 +21335,27,43.9,20,0.0 +21335,25,14,3,0.0 +21335,44,19.45,15,0.0 +21335,69,36,25,0.0 +21335,43,46,13,0.0 +21335,31,12.5,37,0.0 +21335,32,32,44,0.0 +21335,20,81,8,0.0 +21335,9,97,1,0.0 +21335,72,34.8,42,0.0 +21335,41,9.65,21,0.0 +21335,34,14,34,0.0 +21335,40,18.4,20,0.0 +21335,56,38,26,0.0 +21335,15,15.5,4,0.0 +21335,55,24,46,0.0 +21335,10,31,18,0.0 +21335,49,20,6,0.0 +21335,38,263.5,17,0.0 +21335,22,21,6,0.0 +21335,76,18,18,0.0 +21335,50,16.25,1,0.0 +21335,5,21.35,22,0.0 +21335,24,4.5,37,0.0 +21335,4,22,45,0.0 +21335,67,14,21,0.0 +21335,3,10,10,0.0 +21335,53,32.8,29,0.0 +21335,26,31.23,2,0.0 +21335,2,19,8,0.0 +21335,29,123.79,21,0.0 +21335,48,12.75,32,0.0 +21335,18,62.5,36,0.0 +21335,35,18,24,0.0 +21335,37,26,6,0.0 +21335,36,19,10,0.0 +21335,8,40,9,0.0 +21335,70,15,47,0.0 +21335,14,23.25,36,0.0 +21335,19,9.2,23,0.0 +21335,17,39,23,0.0 +21335,47,9.5,22,0.0 +21335,39,18,46,0.0 +21335,21,10,38,0.0 +21336,12,38,12,0.0 +21336,2,19,35,0.0 +21336,53,32.8,49,0.0 +21336,49,20,38,0.0 +21336,68,12.5,7,0.0 +21336,45,9.5,25,0.0 +21336,22,21,46,0.0 +21336,74,10,31,0.0 +21336,30,25.89,26,0.0 +21336,48,12.75,32,0.0 +21336,26,31.23,20,0.0 +21336,40,18.4,17,0.0 +21337,2,19,16,0.0 +21337,10,31,29,0.0 +21337,56,38,8,0.0 +21337,8,40,14,0.0 +21337,21,10,41,0.0 +21337,75,7.75,26,0.0 +21337,71,21.5,34,0.0 +21337,59,55,28,0.0 +21337,43,46,27,0.0 +21337,76,18,36,0.0 +21337,52,7,1,0.0 +21337,32,32,48,0.0 +21337,67,14,26,0.0 +21337,77,13,28,0.0 +21337,6,25,47,0.0 +21337,70,15,28,0.0 +21337,34,14,34,0.0 +21337,39,18,27,0.0 +21337,40,18.4,2,0.0 +21337,65,21.05,12,0.0 +21337,23,9,49,0.0 +21337,35,18,40,0.0 +21337,13,6,27,0.0 +21337,62,49.3,17,0.0 +21337,30,25.89,19,0.0 +21337,61,28.5,11,0.0 +21337,45,9.5,26,0.0 +21337,12,38,38,0.0 +21337,42,14,31,0.0 +21337,47,9.5,40,0.0 +21337,28,45.6,14,0.0 +21337,14,23.25,14,0.0 +21337,29,123.79,44,0.0 +21337,49,20,3,0.0 +21337,4,22,31,0.0 +21337,63,43.9,17,0.0 +21337,50,16.25,34,0.0 +21337,36,19,1,0.0 +21337,16,17.45,43,0.0 +21337,54,7.45,14,0.0 +21337,1,18,16,0.0 +21337,7,30,1,0.0 +21338,3,10,15,0.0 +21338,35,18,31,0.0 +21338,14,23.25,2,0.0 +21338,64,33.25,21,0.0 +21338,32,32,48,0.0 +21338,43,46,47,0.0 +21338,2,19,41,0.0 +21338,77,13,49,0.0 +21338,16,17.45,1,0.0 +21338,55,24,1,0.0 +21338,4,22,17,0.0 +21338,26,31.23,45,0.0 +21338,33,2.5,22,0.0 +21338,5,21.35,7,0.0 +21338,44,19.45,17,0.0 +21338,71,21.5,21,0.0 +21338,39,18,41,0.0 +21338,1,18,2,0.0 +21338,15,15.5,40,0.0 +21338,58,13.25,15,0.0 +21338,21,10,40,0.0 +21338,38,263.5,29,0.0 +21338,56,38,5,0.0 +21338,45,9.5,33,0.0 +21338,8,40,14,0.0 +21338,61,28.5,36,0.0 +21338,20,81,44,0.0 +21338,7,30,8,0.0 +21338,12,38,14,0.0 +21338,67,14,31,0.0 +21338,52,7,24,0.0 +21338,75,7.75,42,0.0 +21339,39,18,35,0.0 +21339,22,21,2,0.0 +21339,49,20,39,0.0 +21339,25,14,6,0.0 +21340,30,25.89,47,0.0 +21340,23,9,4,0.0 +21340,37,26,26,0.0 +21340,15,15.5,24,0.0 +21340,39,18,42,0.0 +21340,46,12,30,0.0 +21340,14,23.25,6,0.0 +21340,28,45.6,11,0.0 +21340,10,31,44,0.0 +21340,52,7,37,0.0 +21340,18,62.5,48,0.0 +21340,9,97,45,0.0 +21340,32,32,8,0.0 +21340,53,32.8,48,0.0 +21340,16,17.45,13,0.0 +21340,74,10,7,0.0 +21340,36,19,22,0.0 +21340,20,81,5,0.0 +21340,57,19.5,35,0.0 +21340,2,19,19,0.0 +21340,66,17,2,0.0 +21340,72,34.8,7,0.0 +21340,60,34,9,0.0 +21340,54,7.45,32,0.0 +21340,33,2.5,13,0.0 +21340,50,16.25,9,0.0 +21340,24,4.5,9,0.0 +21340,12,38,49,0.0 +21340,7,30,18,0.0 +21340,62,49.3,35,0.0 +21340,65,21.05,30,0.0 +21340,41,9.65,22,0.0 +21340,34,14,25,0.0 +21340,67,14,37,0.0 +21340,68,12.5,28,0.0 +21340,29,123.79,7,0.0 +21340,26,31.23,32,0.0 +21340,64,33.25,36,0.0 +21340,70,15,20,0.0 +21340,73,15,44,0.0 +21340,75,7.75,15,0.0 +21340,4,22,39,0.0 +21340,71,21.5,40,0.0 +21340,48,12.75,37,0.0 +21340,19,9.2,3,0.0 +21340,45,9.5,46,0.0 +21340,47,9.5,42,0.0 +21340,55,24,12,0.0 +21340,61,28.5,28,0.0 +21340,63,43.9,14,0.0 +21340,56,38,1,0.0 +21340,22,21,29,0.0 +21340,25,14,49,0.0 +21340,8,40,4,0.0 +21340,6,25,31,0.0 +21340,17,39,16,0.0 +21340,76,18,15,0.0 +21340,59,55,6,0.0 +21340,13,6,9,0.0 +21340,44,19.45,12,0.0 +21340,49,20,3,0.0 +21340,40,18.4,27,0.0 +21340,58,13.25,7,0.0 +21340,35,18,31,0.0 +21340,27,43.9,5,0.0 +21340,38,263.5,27,0.0 +21340,31,12.5,26,0.0 +21340,77,13,45,0.0 +21341,10,31,15,0.0 +21341,50,16.25,49,0.0 +21341,21,10,7,0.0 +21341,77,13,7,0.0 +21341,40,18.4,48,0.0 +21341,4,22,35,0.0 +21341,17,39,22,0.0 +21341,65,21.05,25,0.0 +21341,58,13.25,2,0.0 +21341,37,26,40,0.0 +21341,60,34,8,0.0 +21341,24,4.5,35,0.0 +21341,13,6,39,0.0 +21341,39,18,23,0.0 +21341,61,28.5,8,0.0 +21341,69,36,39,0.0 +21341,7,30,27,0.0 +21341,45,9.5,33,0.0 +21341,34,14,41,0.0 +21341,32,32,19,0.0 +21341,42,14,21,0.0 +21341,25,14,8,0.0 +21341,68,12.5,34,0.0 +21341,51,53,25,0.0 +21341,48,12.75,30,0.0 +21341,15,15.5,46,0.0 +21341,56,38,47,0.0 +21341,52,7,21,0.0 +21341,19,9.2,40,0.0 +21341,57,19.5,17,0.0 +21341,67,14,6,0.0 +21341,53,32.8,3,0.0 +21341,22,21,5,0.0 +21341,44,19.45,12,0.0 +21341,47,9.5,13,0.0 +21341,11,21,32,0.0 +21341,35,18,40,0.0 +21341,72,34.8,47,0.0 +21341,76,18,26,0.0 +21341,31,12.5,7,0.0 +21341,12,38,20,0.0 +21341,41,9.65,30,0.0 +21342,5,21.35,10,0.0 +21342,57,19.5,40,0.0 +21342,40,18.4,45,0.0 +21342,33,2.5,40,0.0 +21342,50,16.25,50,0.0 +21342,10,31,1,0.0 +21342,41,9.65,27,0.0 +21343,5,21.35,22,0.0 +21343,65,21.05,1,0.0 +21343,56,38,48,0.0 +21343,72,34.8,24,0.0 +21343,19,9.2,5,0.0 +21343,68,12.5,19,0.0 +21343,58,13.25,39,0.0 +21343,4,22,3,0.0 +21343,48,12.75,37,0.0 +21343,74,10,31,0.0 +21343,16,17.45,4,0.0 +21343,45,9.5,24,0.0 +21343,14,23.25,16,0.0 +21343,52,7,8,0.0 +21343,21,10,16,0.0 +21343,60,34,12,0.0 +21343,11,21,4,0.0 +21343,57,19.5,18,0.0 +21343,27,43.9,28,0.0 +21343,12,38,29,0.0 +21343,20,81,13,0.0 +21343,39,18,17,0.0 +21343,9,97,49,0.0 +21343,43,46,28,0.0 +21343,40,18.4,23,0.0 +21343,38,263.5,9,0.0 +21343,31,12.5,37,0.0 +21343,54,7.45,47,0.0 +21343,49,20,7,0.0 +21343,6,25,13,0.0 +21343,26,31.23,3,0.0 +21343,71,21.5,32,0.0 +21343,61,28.5,21,0.0 +21343,30,25.89,24,0.0 +21343,69,36,19,0.0 +21343,70,15,46,0.0 +21343,67,14,46,0.0 +21343,53,32.8,3,0.0 +21343,24,4.5,49,0.0 +21343,59,55,15,0.0 +21343,64,33.25,37,0.0 +21343,75,7.75,7,0.0 +21343,23,9,50,0.0 +21343,1,18,7,0.0 +21343,63,43.9,48,0.0 +21343,36,19,15,0.0 +21343,32,32,49,0.0 +21343,29,123.79,1,0.0 +21343,22,21,36,0.0 +21343,28,45.6,32,0.0 +21343,50,16.25,48,0.0 +21343,2,19,7,0.0 +21343,3,10,27,0.0 +21343,47,9.5,18,0.0 +21343,37,26,37,0.0 +21343,44,19.45,28,0.0 +21343,62,49.3,34,0.0 +21343,41,9.65,31,0.0 +21343,33,2.5,20,0.0 +21343,17,39,35,0.0 +21344,64,33.25,15,0.0 +21344,21,10,50,0.0 +21344,63,43.9,22,0.0 +21344,75,7.75,20,0.0 +21344,49,20,27,0.0 +21344,15,15.5,43,0.0 +21344,36,19,31,0.0 +21344,59,55,32,0.0 +21344,46,12,37,0.0 +21345,26,31.23,47,0.0 +21345,70,15,21,0.0 +21345,59,55,17,0.0 +21345,32,32,28,0.0 +21345,30,25.89,42,0.0 +21345,22,21,3,0.0 +21345,20,81,22,0.0 +21345,65,21.05,2,0.0 +21345,68,12.5,48,0.0 +21345,42,14,41,0.0 +21345,29,123.79,13,0.0 +21345,58,13.25,30,0.0 +21345,4,22,25,0.0 +21345,24,4.5,42,0.0 +21345,67,14,27,0.0 +21345,1,18,46,0.0 +21345,11,21,21,0.0 +21345,57,19.5,16,0.0 +21345,43,46,24,0.0 +21345,3,10,30,0.0 +21345,31,12.5,22,0.0 +21345,62,49.3,42,0.0 +21345,12,38,26,0.0 +21345,74,10,10,0.0 +21345,61,28.5,21,0.0 +21345,64,33.25,34,0.0 +21345,25,14,46,0.0 +21345,28,45.6,25,0.0 +21345,34,14,42,0.0 +21346,21,10,37,0.0 +21346,5,21.35,47,0.0 +21346,34,14,8,0.0 +21346,66,17,33,0.0 +21346,53,32.8,26,0.0 +21346,50,16.25,39,0.0 +21346,43,46,24,0.0 +21346,38,263.5,2,0.0 +21346,41,9.65,1,0.0 +21346,63,43.9,23,0.0 +21346,19,9.2,25,0.0 +21346,12,38,12,0.0 +21346,72,34.8,15,0.0 +21346,20,81,42,0.0 +21346,46,12,32,0.0 +21346,32,32,4,0.0 +21346,36,19,3,0.0 +21346,48,12.75,24,0.0 +21346,25,14,35,0.0 +21346,75,7.75,8,0.0 +21346,17,39,25,0.0 +21346,2,19,49,0.0 +21346,31,12.5,17,0.0 +21346,55,24,39,0.0 +21346,68,12.5,6,0.0 +21346,65,21.05,7,0.0 +21346,69,36,10,0.0 +21346,30,25.89,29,0.0 +21346,37,26,4,0.0 +21346,1,18,35,0.0 +21346,4,22,35,0.0 +21346,33,2.5,34,0.0 +21346,52,7,20,0.0 +21346,23,9,11,0.0 +21346,42,14,29,0.0 +21346,45,9.5,19,0.0 +21346,40,18.4,29,0.0 +21346,7,30,27,0.0 +21346,13,6,49,0.0 +21346,14,23.25,45,0.0 +21346,35,18,43,0.0 +21346,54,7.45,16,0.0 +21346,57,19.5,20,0.0 +21346,62,49.3,44,0.0 +21346,22,21,46,0.0 +21346,10,31,33,0.0 +21346,59,55,37,0.0 +21346,39,18,14,0.0 +21346,26,31.23,46,0.0 +21346,61,28.5,38,0.0 +21346,16,17.45,13,0.0 +21346,18,62.5,13,0.0 +21346,51,53,36,0.0 +21346,64,33.25,49,0.0 +21346,49,20,45,0.0 +21346,6,25,30,0.0 +21346,60,34,15,0.0 +21347,28,45.6,25,0.0 +21347,47,9.5,12,0.0 +21347,68,12.5,29,0.0 +21347,10,31,33,0.0 +21347,64,33.25,44,0.0 +21347,30,25.89,18,0.0 +21347,67,14,21,0.0 +21347,52,7,50,0.0 +21347,31,12.5,36,0.0 +21347,27,43.9,29,0.0 +21347,5,21.35,4,0.0 +21347,1,18,30,0.0 +21347,14,23.25,23,0.0 +21347,45,9.5,40,0.0 +21347,23,9,26,0.0 +21347,74,10,43,0.0 +21347,33,2.5,10,0.0 +21347,51,53,27,0.0 +21347,11,21,12,0.0 +21347,50,16.25,50,0.0 +21347,2,19,4,0.0 +21347,15,15.5,5,0.0 +21347,73,15,20,0.0 +21347,12,38,15,0.0 +21347,60,34,20,0.0 +21347,77,13,30,0.0 +21347,35,18,15,0.0 +21347,25,14,11,0.0 +21347,55,24,49,0.0 +21347,46,12,1,0.0 +21347,69,36,22,0.0 +21347,24,4.5,27,0.0 +21347,41,9.65,20,0.0 +21347,53,32.8,13,0.0 +21347,70,15,31,0.0 +21347,34,14,30,0.0 +21347,17,39,33,0.0 +21348,61,28.5,34,0.0 +21348,70,15,48,0.0 +21348,51,53,17,0.0 +21348,66,17,9,0.0 +21348,20,81,41,0.0 +21348,29,123.79,33,0.0 +21348,5,21.35,49,0.0 +21348,45,9.5,14,0.0 +21348,3,10,30,0.0 +21348,59,55,34,0.0 +21348,57,19.5,8,0.0 +21348,64,33.25,32,0.0 +21348,24,4.5,37,0.0 +21348,73,15,11,0.0 +21348,77,13,35,0.0 +21348,40,18.4,39,0.0 +21348,65,21.05,7,0.0 +21348,58,13.25,12,0.0 +21348,26,31.23,16,0.0 +21348,32,32,35,0.0 +21348,74,10,26,0.0 +21348,76,18,37,0.0 +21348,10,31,4,0.0 +21348,17,39,25,0.0 +21348,72,34.8,25,0.0 +21348,52,7,7,0.0 +21348,37,26,35,0.0 +21348,35,18,31,0.0 +21348,43,46,10,0.0 +21348,8,40,21,0.0 +21348,25,14,1,0.0 +21348,2,19,15,0.0 +21348,7,30,32,0.0 +21348,15,15.5,43,0.0 +21348,9,97,48,0.0 +21348,22,21,48,0.0 +21348,12,38,22,0.0 +21348,19,9.2,45,0.0 +21348,56,38,47,0.0 +21348,71,21.5,45,0.0 +21348,4,22,17,0.0 +21348,27,43.9,24,0.0 +21348,44,19.45,50,0.0 +21348,6,25,22,0.0 +21348,63,43.9,44,0.0 +21348,48,12.75,4,0.0 +21348,50,16.25,9,0.0 +21348,68,12.5,10,0.0 +21348,28,45.6,36,0.0 +21348,49,20,3,0.0 +21348,14,23.25,39,0.0 +21348,34,14,6,0.0 +21348,39,18,11,0.0 +21348,46,12,9,0.0 +21348,31,12.5,26,0.0 +21348,1,18,30,0.0 +21348,30,25.89,22,0.0 +21348,23,9,28,0.0 +21348,75,7.75,10,0.0 +21349,14,23.25,6,0.0 +21349,58,13.25,13,0.0 +21349,73,15,3,0.0 +21349,16,17.45,12,0.0 +21349,28,45.6,38,0.0 +21349,47,9.5,31,0.0 +21349,66,17,5,0.0 +21349,77,13,30,0.0 +21349,9,97,41,0.0 +21349,65,21.05,8,0.0 +21349,40,18.4,41,0.0 +21349,68,12.5,26,0.0 +21349,1,18,43,0.0 +21350,6,25,44,0.0 +21350,18,62.5,30,0.0 +21350,25,14,44,0.0 +21350,70,15,5,0.0 +21350,21,10,23,0.0 +21350,3,10,23,0.0 +21350,29,123.79,47,0.0 +21350,52,7,32,0.0 +21350,67,14,24,0.0 +21350,65,21.05,50,0.0 +21350,46,12,32,0.0 +21350,75,7.75,44,0.0 +21350,17,39,8,0.0 +21350,5,21.35,3,0.0 +21350,39,18,25,0.0 +21350,40,18.4,29,0.0 +21350,68,12.5,1,0.0 +21350,57,19.5,29,0.0 +21350,33,2.5,48,0.0 +21350,45,9.5,17,0.0 +21350,69,36,41,0.0 +21350,4,22,49,0.0 +21350,49,20,48,0.0 +21350,58,13.25,40,0.0 +21350,26,31.23,26,0.0 +21350,38,263.5,4,0.0 +21350,73,15,39,0.0 +21350,23,9,41,0.0 +21350,8,40,47,0.0 +21350,53,32.8,14,0.0 +21350,2,19,17,0.0 +21350,60,34,36,0.0 +21350,27,43.9,49,0.0 +21350,56,38,32,0.0 +21350,63,43.9,7,0.0 +21350,34,14,10,0.0 +21350,11,21,23,0.0 +21350,54,7.45,14,0.0 +21350,50,16.25,18,0.0 +21350,20,81,13,0.0 +21350,10,31,9,0.0 +21350,48,12.75,4,0.0 +21350,19,9.2,34,0.0 +21350,74,10,3,0.0 +21350,72,34.8,4,0.0 +21350,64,33.25,2,0.0 +21350,32,32,2,0.0 +21350,51,53,19,0.0 +21350,14,23.25,44,0.0 +21350,9,97,10,0.0 +21350,44,19.45,3,0.0 +21350,1,18,11,0.0 +21350,66,17,24,0.0 +21350,22,21,47,0.0 +21350,13,6,9,0.0 +21350,62,49.3,2,0.0 +21350,7,30,27,0.0 +21350,15,15.5,40,0.0 +21350,31,12.5,11,0.0 +21350,55,24,27,0.0 +21350,35,18,1,0.0 +21350,37,26,2,0.0 +21350,16,17.45,49,0.0 +21350,59,55,26,0.0 +21350,41,9.65,34,0.0 +21350,28,45.6,10,0.0 +21350,42,14,17,0.0 +21350,12,38,3,0.0 +21350,24,4.5,28,0.0 +21350,76,18,42,0.0 +21351,7,30,34,0.0 +21351,37,26,44,0.0 +21351,72,34.8,24,0.0 +21351,53,32.8,39,0.0 +21351,77,13,24,0.0 +21351,76,18,20,0.0 +21351,29,123.79,29,0.0 +21351,16,17.45,13,0.0 +21351,21,10,36,0.0 +21351,9,97,23,0.0 +21351,46,12,21,0.0 +21351,8,40,36,0.0 +21351,48,12.75,26,0.0 +21351,24,4.5,8,0.0 +21351,12,38,21,0.0 +21351,18,62.5,36,0.0 +21351,60,34,18,0.0 +21351,22,21,21,0.0 +21351,3,10,11,0.0 +21351,45,9.5,25,0.0 +21351,66,17,48,0.0 +21351,11,21,9,0.0 +21351,44,19.45,5,0.0 +21351,42,14,40,0.0 +21351,71,21.5,44,0.0 +21351,61,28.5,10,0.0 +21351,65,21.05,47,0.0 +21351,70,15,15,0.0 +21351,50,16.25,22,0.0 +21351,27,43.9,24,0.0 +21351,43,46,45,0.0 +21351,36,19,5,0.0 +21351,5,21.35,30,0.0 +21351,13,6,44,0.0 +21351,17,39,35,0.0 +21352,45,9.5,26,0.0 +21352,69,36,23,0.0 +21352,55,24,3,0.0 +21352,25,14,23,0.0 +21352,36,19,19,0.0 +21352,23,9,4,0.0 +21352,38,263.5,20,0.0 +21352,30,25.89,46,0.0 +21352,51,53,12,0.0 +21352,76,18,9,0.0 +21352,71,21.5,14,0.0 +21352,28,45.6,32,0.0 +21352,35,18,35,0.0 +21352,5,21.35,6,0.0 +21352,65,21.05,11,0.0 +21352,66,17,37,0.0 +21352,10,31,26,0.0 +21352,73,15,41,0.0 +21352,3,10,13,0.0 +21352,57,19.5,31,0.0 +21352,50,16.25,5,0.0 +21352,39,18,15,0.0 +21352,46,12,21,0.0 +21352,56,38,32,0.0 +21352,40,18.4,11,0.0 +21352,26,31.23,48,0.0 +21352,48,12.75,36,0.0 +21352,2,19,8,0.0 +21352,59,55,37,0.0 +21352,33,2.5,31,0.0 +21352,24,4.5,6,0.0 +21352,8,40,43,0.0 +21352,14,23.25,6,0.0 +21352,16,17.45,27,0.0 +21352,15,15.5,32,0.0 +21352,42,14,14,0.0 +21352,17,39,16,0.0 +21352,72,34.8,26,0.0 +21352,37,26,43,0.0 +21352,61,28.5,45,0.0 +21352,20,81,22,0.0 +21352,32,32,24,0.0 +21352,64,33.25,4,0.0 +21352,53,32.8,29,0.0 +21352,62,49.3,13,0.0 +21352,19,9.2,26,0.0 +21352,52,7,1,0.0 +21352,47,9.5,17,0.0 +21352,1,18,45,0.0 +21352,44,19.45,4,0.0 +21352,63,43.9,11,0.0 +21352,34,14,14,0.0 +21352,67,14,9,0.0 +21352,9,97,5,0.0 +21352,31,12.5,28,0.0 +21352,41,9.65,50,0.0 +21352,68,12.5,34,0.0 +21352,77,13,25,0.0 +21352,75,7.75,30,0.0 +21352,74,10,47,0.0 +21352,18,62.5,31,0.0 +21352,29,123.79,26,0.0 +21352,27,43.9,10,0.0 +21352,58,13.25,38,0.0 +21352,7,30,8,0.0 +21352,4,22,26,0.0 +21352,22,21,16,0.0 +21352,60,34,6,0.0 +21352,11,21,16,0.0 +21353,41,9.65,35,0.0 +21353,69,36,43,0.0 +21353,65,21.05,33,0.0 +21353,28,45.6,25,0.0 +21353,16,17.45,18,0.0 +21353,56,38,20,0.0 +21353,6,25,27,0.0 +21353,37,26,19,0.0 +21353,1,18,6,0.0 +21353,30,25.89,23,0.0 +21353,54,7.45,25,0.0 +21353,7,30,49,0.0 +21353,46,12,44,0.0 +21353,23,9,44,0.0 +21353,52,7,42,0.0 +21353,77,13,5,0.0 +21353,9,97,29,0.0 +21353,14,23.25,3,0.0 +21353,22,21,34,0.0 +21353,32,32,16,0.0 +21353,40,18.4,36,0.0 +21354,51,53,16,0.0 +21354,22,21,49,0.0 +21354,18,62.5,37,0.0 +21354,19,9.2,16,0.0 +21354,57,19.5,1,0.0 +21354,36,19,37,0.0 +21354,34,14,23,0.0 +21354,63,43.9,40,0.0 +21354,72,34.8,44,0.0 +21354,13,6,45,0.0 +21354,64,33.25,37,0.0 +21354,40,18.4,10,0.0 +21354,67,14,12,0.0 +21354,27,43.9,4,0.0 +21354,30,25.89,37,0.0 +21354,41,9.65,45,0.0 +21354,74,10,45,0.0 +21354,50,16.25,25,0.0 +21354,28,45.6,31,0.0 +21354,8,40,38,0.0 +21354,70,15,42,0.0 +21354,55,24,35,0.0 +21354,65,21.05,44,0.0 +21354,77,13,1,0.0 +21354,56,38,47,0.0 +21354,11,21,20,0.0 +21354,2,19,22,0.0 +21354,3,10,5,0.0 +21354,69,36,41,0.0 +21354,16,17.45,24,0.0 +21354,61,28.5,47,0.0 +21354,21,10,35,0.0 +21354,66,17,48,0.0 +21354,9,97,42,0.0 +21354,7,30,17,0.0 +21354,71,21.5,15,0.0 +21354,35,18,36,0.0 +21354,20,81,14,0.0 +21354,38,263.5,29,0.0 +21354,75,7.75,16,0.0 +21354,31,12.5,26,0.0 +21354,4,22,1,0.0 +21354,29,123.79,48,0.0 +21354,23,9,36,0.0 +21354,33,2.5,22,0.0 +21354,42,14,22,0.0 +21355,31,12.5,41,0.0 +21355,13,6,36,0.0 +21355,63,43.9,26,0.0 +21355,19,9.2,27,0.0 +21355,35,18,6,0.0 +21355,73,15,28,0.0 +21355,2,19,7,0.0 +21355,36,19,36,0.0 +21355,8,40,32,0.0 +21355,18,62.5,50,0.0 +21355,24,4.5,23,0.0 +21355,44,19.45,49,0.0 +21355,16,17.45,47,0.0 +21355,29,123.79,44,0.0 +21355,20,81,41,0.0 +21355,48,12.75,17,0.0 +21355,10,31,48,0.0 +21355,45,9.5,1,0.0 +21355,14,23.25,44,0.0 +21355,66,17,6,0.0 +21355,38,263.5,26,0.0 +21355,58,13.25,13,0.0 +21355,55,24,43,0.0 +21355,3,10,29,0.0 +21355,30,25.89,35,0.0 +21355,65,21.05,9,0.0 +21355,33,2.5,29,0.0 +21355,54,7.45,26,0.0 +21355,56,38,15,0.0 +21355,22,21,41,0.0 +21355,7,30,21,0.0 +21355,64,33.25,14,0.0 +21355,9,97,49,0.0 +21355,74,10,14,0.0 +21355,53,32.8,15,0.0 +21355,42,14,26,0.0 +21355,5,21.35,42,0.0 +21355,12,38,28,0.0 +21355,1,18,43,0.0 +21355,4,22,5,0.0 +21355,50,16.25,9,0.0 +21355,46,12,10,0.0 +21355,75,7.75,31,0.0 +21355,41,9.65,30,0.0 +21355,62,49.3,33,0.0 +21355,70,15,28,0.0 +21355,37,26,12,0.0 +21355,47,9.5,10,0.0 +21355,51,53,50,0.0 +21355,60,34,13,0.0 +21355,34,14,36,0.0 +21355,67,14,23,0.0 +21355,27,43.9,11,0.0 +21356,40,18.4,23,0.0 +21356,66,17,6,0.0 +21356,1,18,42,0.0 +21356,21,10,21,0.0 +21356,50,16.25,10,0.0 +21356,75,7.75,44,0.0 +21356,22,21,19,0.0 +21357,27,43.9,18,0.0 +21357,71,21.5,4,0.0 +21357,30,25.89,39,0.0 +21357,32,32,2,0.0 +21357,39,18,27,0.0 +21357,8,40,4,0.0 +21357,63,43.9,14,0.0 +21357,65,21.05,4,0.0 +21357,62,49.3,20,0.0 +21357,47,9.5,31,0.0 +21357,77,13,30,0.0 +21357,73,15,22,0.0 +21357,35,18,38,0.0 +21357,72,34.8,13,0.0 +21357,75,7.75,25,0.0 +21357,7,30,5,0.0 +21357,67,14,32,0.0 +21357,26,31.23,44,0.0 +21357,55,24,12,0.0 +21357,16,17.45,27,0.0 +21357,22,21,30,0.0 +21357,29,123.79,12,0.0 +21357,24,4.5,45,0.0 +21357,25,14,25,0.0 +21357,41,9.65,41,0.0 +21357,58,13.25,31,0.0 +21357,42,14,1,0.0 +21357,57,19.5,49,0.0 +21357,33,2.5,25,0.0 +21357,70,15,36,0.0 +21357,51,53,17,0.0 +21357,45,9.5,47,0.0 +21357,5,21.35,1,0.0 +21357,20,81,22,0.0 +21357,37,26,13,0.0 +21357,13,6,22,0.0 +21357,40,18.4,8,0.0 +21358,33,2.5,24,0.0 +21358,39,18,30,0.0 +21358,38,263.5,19,0.0 +21358,57,19.5,44,0.0 +21358,67,14,28,0.0 +21358,66,17,15,0.0 +21358,52,7,2,0.0 +21359,35,18,44,0.0 +21359,3,10,23,0.0 +21359,34,14,42,0.0 +21359,63,43.9,1,0.0 +21359,60,34,18,0.0 +21359,75,7.75,39,0.0 +21359,44,19.45,3,0.0 +21359,40,18.4,16,0.0 +21359,45,9.5,7,0.0 +21359,70,15,50,0.0 +21359,43,46,24,0.0 +21359,69,36,50,0.0 +21359,1,18,49,0.0 +21359,31,12.5,26,0.0 +21359,76,18,47,0.0 +21359,4,22,18,0.0 +21359,28,45.6,16,0.0 +21359,59,55,14,0.0 +21359,51,53,42,0.0 +21359,42,14,11,0.0 +21359,68,12.5,6,0.0 +21359,50,16.25,31,0.0 +21359,62,49.3,6,0.0 +21359,74,10,45,0.0 +21359,36,19,39,0.0 +21359,22,21,41,0.0 +21359,14,23.25,34,0.0 +21359,2,19,33,0.0 +21359,20,81,28,0.0 +21359,72,34.8,16,0.0 +21359,47,9.5,49,0.0 +21359,33,2.5,4,0.0 +21359,18,62.5,28,0.0 +21359,53,32.8,38,0.0 +21359,52,7,29,0.0 +21359,56,38,41,0.0 +21359,30,25.89,16,0.0 +21359,49,20,21,0.0 +21359,64,33.25,47,0.0 +21359,5,21.35,25,0.0 +21359,54,7.45,33,0.0 +21359,77,13,6,0.0 +21359,27,43.9,24,0.0 +21359,25,14,13,0.0 +21359,32,32,18,0.0 +21359,65,21.05,26,0.0 +21359,29,123.79,39,0.0 +21359,11,21,35,0.0 +21359,24,4.5,43,0.0 +21359,10,31,34,0.0 +21359,17,39,30,0.0 +21359,23,9,2,0.0 +21359,41,9.65,9,0.0 +21359,12,38,21,0.0 +21359,67,14,38,0.0 +21360,60,34,33,0.0 +21360,52,7,50,0.0 +21360,33,2.5,6,0.0 +21360,10,31,33,0.0 +21360,72,34.8,22,0.0 +21360,50,16.25,11,0.0 +21360,19,9.2,4,0.0 +21360,46,12,29,0.0 +21360,22,21,44,0.0 +21360,76,18,35,0.0 +21360,48,12.75,2,0.0 +21360,36,19,30,0.0 +21360,2,19,38,0.0 +21360,62,49.3,37,0.0 +21360,20,81,7,0.0 +21360,41,9.65,15,0.0 +21360,75,7.75,43,0.0 +21360,65,21.05,30,0.0 +21360,13,6,8,0.0 +21360,77,13,22,0.0 +21360,34,14,32,0.0 +21360,11,21,46,0.0 +21360,68,12.5,21,0.0 +21360,37,26,11,0.0 +21360,1,18,16,0.0 +21360,74,10,28,0.0 +21360,21,10,23,0.0 +21360,63,43.9,41,0.0 +21360,55,24,9,0.0 +21360,73,15,36,0.0 +21360,43,46,50,0.0 +21360,51,53,43,0.0 +21360,17,39,8,0.0 +21360,26,31.23,9,0.0 +21360,49,20,28,0.0 +21360,69,36,41,0.0 +21360,54,7.45,15,0.0 +21360,39,18,28,0.0 +21360,71,21.5,30,0.0 +21361,13,6,22,0.0 +21361,66,17,22,0.0 +21361,49,20,18,0.0 +21361,40,18.4,37,0.0 +21361,9,97,17,0.0 +21361,65,21.05,13,0.0 +21361,18,62.5,22,0.0 +21361,67,14,7,0.0 +21361,52,7,39,0.0 +21361,19,9.2,45,0.0 +21361,53,32.8,36,0.0 +21361,60,34,17,0.0 +21361,32,32,8,0.0 +21361,62,49.3,4,0.0 +21361,11,21,4,0.0 +21361,25,14,27,0.0 +21361,21,10,18,0.0 +21361,76,18,14,0.0 +21361,61,28.5,2,0.0 +21361,63,43.9,17,0.0 +21361,71,21.5,32,0.0 +21361,59,55,42,0.0 +21361,22,21,21,0.0 +21361,77,13,7,0.0 +21361,34,14,47,0.0 +21361,54,7.45,44,0.0 +21361,3,10,36,0.0 +21361,33,2.5,39,0.0 +21361,48,12.75,46,0.0 +21361,2,19,32,0.0 +21361,17,39,35,0.0 +21361,16,17.45,45,0.0 +21361,28,45.6,39,0.0 +21361,14,23.25,33,0.0 +21361,5,21.35,39,0.0 +21361,15,15.5,1,0.0 +21361,30,25.89,11,0.0 +21361,8,40,30,0.0 +21361,64,33.25,11,0.0 +21362,25,14,24,0.0 +21362,39,18,47,0.0 +21362,52,7,49,0.0 +21362,53,32.8,41,0.0 +21362,42,14,38,0.0 +21362,36,19,32,0.0 +21362,30,25.89,42,0.0 +21362,77,13,26,0.0 +21362,54,7.45,22,0.0 +21362,58,13.25,16,0.0 +21362,18,62.5,15,0.0 +21362,47,9.5,19,0.0 +21362,70,15,30,0.0 +21362,6,25,20,0.0 +21362,48,12.75,50,0.0 +21362,11,21,39,0.0 +21362,35,18,16,0.0 +21362,40,18.4,49,0.0 +21362,55,24,14,0.0 +21362,57,19.5,2,0.0 +21362,12,38,7,0.0 +21362,73,15,37,0.0 +21362,16,17.45,2,0.0 +21362,38,263.5,22,0.0 +21362,76,18,2,0.0 +21362,9,97,40,0.0 +21362,27,43.9,26,0.0 +21362,74,10,45,0.0 +21362,56,38,16,0.0 +21362,64,33.25,9,0.0 +21362,32,32,45,0.0 +21362,62,49.3,1,0.0 +21363,40,18.4,39,0.0 +21363,2,19,2,0.0 +21363,44,19.45,8,0.0 +21363,28,45.6,7,0.0 +21363,57,19.5,48,0.0 +21363,3,10,27,0.0 +21363,50,16.25,19,0.0 +21363,67,14,24,0.0 +21363,75,7.75,19,0.0 +21363,12,38,21,0.0 +21363,77,13,34,0.0 +21363,38,263.5,11,0.0 +21363,25,14,31,0.0 +21363,19,9.2,33,0.0 +21363,37,26,50,0.0 +21363,34,14,34,0.0 +21363,18,62.5,3,0.0 +21363,60,34,37,0.0 +21363,58,13.25,2,0.0 +21363,41,9.65,40,0.0 +21363,33,2.5,46,0.0 +21363,17,39,44,0.0 +21363,56,38,11,0.0 +21363,64,33.25,2,0.0 +21363,4,22,27,0.0 +21363,51,53,43,0.0 +21363,52,7,5,0.0 +21363,39,18,19,0.0 +21363,11,21,25,0.0 +21363,29,123.79,38,0.0 +21363,45,9.5,45,0.0 +21363,1,18,25,0.0 +21363,24,4.5,36,0.0 +21363,63,43.9,20,0.0 +21364,58,13.25,6,0.0 +21364,75,7.75,28,0.0 +21364,50,16.25,48,0.0 +21364,46,12,1,0.0 +21364,2,19,30,0.0 +21364,20,81,28,0.0 +21364,15,15.5,31,0.0 +21364,44,19.45,25,0.0 +21364,23,9,3,0.0 +21364,22,21,33,0.0 +21364,70,15,14,0.0 +21364,6,25,11,0.0 +21364,34,14,5,0.0 +21364,35,18,44,0.0 +21364,45,9.5,28,0.0 +21364,8,40,38,0.0 +21364,52,7,36,0.0 +21364,26,31.23,12,0.0 +21364,48,12.75,41,0.0 +21364,71,21.5,15,0.0 +21364,1,18,28,0.0 +21364,10,31,5,0.0 +21364,24,4.5,47,0.0 +21364,40,18.4,22,0.0 +21364,76,18,38,0.0 +21364,19,9.2,24,0.0 +21364,12,38,5,0.0 +21364,68,12.5,4,0.0 +21364,11,21,12,0.0 +21364,38,263.5,16,0.0 +21364,60,34,38,0.0 +21364,4,22,42,0.0 +21364,28,45.6,37,0.0 +21364,16,17.45,24,0.0 +21364,14,23.25,26,0.0 +21364,55,24,2,0.0 +21364,61,28.5,37,0.0 +21364,57,19.5,24,0.0 +21364,67,14,19,0.0 +21364,65,21.05,35,0.0 +21364,21,10,41,0.0 +21364,69,36,13,0.0 +21364,47,9.5,37,0.0 +21364,43,46,36,0.0 +21364,54,7.45,50,0.0 +21364,63,43.9,50,0.0 +21364,17,39,29,0.0 +21364,41,9.65,5,0.0 +21364,74,10,4,0.0 +21364,59,55,42,0.0 +21364,18,62.5,7,0.0 +21365,73,15,1,0.0 +21365,27,43.9,38,0.0 +21365,34,14,38,0.0 +21365,46,12,10,0.0 +21365,58,13.25,20,0.0 +21365,20,81,13,0.0 +21365,42,14,17,0.0 +21365,21,10,19,0.0 +21365,60,34,42,0.0 +21365,8,40,46,0.0 +21365,25,14,20,0.0 +21365,38,263.5,6,0.0 +21365,10,31,45,0.0 +21365,71,21.5,33,0.0 +21365,41,9.65,8,0.0 +21365,45,9.5,9,0.0 +21365,69,36,32,0.0 +21365,33,2.5,43,0.0 +21365,9,97,7,0.0 +21365,31,12.5,22,0.0 +21365,24,4.5,34,0.0 +21365,5,21.35,6,0.0 +21365,49,20,14,0.0 +21365,56,38,48,0.0 +21365,64,33.25,9,0.0 +21365,3,10,40,0.0 +21365,1,18,24,0.0 +21365,43,46,13,0.0 +21365,76,18,7,0.0 +21365,57,19.5,9,0.0 +21365,28,45.6,47,0.0 +21365,26,31.23,45,0.0 +21365,12,38,23,0.0 +21365,36,19,31,0.0 +21365,59,55,40,0.0 +21365,52,7,30,0.0 +21365,51,53,23,0.0 +21365,75,7.75,25,0.0 +21365,53,32.8,22,0.0 +21365,74,10,9,0.0 +21365,18,62.5,17,0.0 +21365,2,19,44,0.0 +21365,30,25.89,48,0.0 +21365,13,6,21,0.0 +21365,11,21,16,0.0 +21365,44,19.45,2,0.0 +21365,67,14,2,0.0 +21365,29,123.79,36,0.0 +21365,4,22,10,0.0 +21365,6,25,15,0.0 +21365,40,18.4,8,0.0 +21366,19,9.2,4,0.0 +21366,67,14,36,0.0 +21366,58,13.25,2,0.0 +21366,62,49.3,42,0.0 +21366,18,62.5,34,0.0 +21366,61,28.5,18,0.0 +21366,11,21,50,0.0 +21366,13,6,40,0.0 +21366,60,34,37,0.0 +21366,49,20,19,0.0 +21366,47,9.5,26,0.0 +21366,57,19.5,26,0.0 +21366,33,2.5,44,0.0 +21366,46,12,18,0.0 +21366,8,40,47,0.0 +21366,14,23.25,43,0.0 +21367,70,15,19,0.0 +21367,55,24,28,0.0 +21367,4,22,13,0.0 +21367,63,43.9,25,0.0 +21367,6,25,2,0.0 +21367,60,34,24,0.0 +21367,14,23.25,48,0.0 +21367,38,263.5,39,0.0 +21367,62,49.3,42,0.0 +21367,71,21.5,21,0.0 +21367,7,30,4,0.0 +21367,30,25.89,27,0.0 +21367,76,18,31,0.0 +21367,47,9.5,9,0.0 +21367,69,36,14,0.0 +21367,52,7,1,0.0 +21367,15,15.5,26,0.0 +21367,40,18.4,47,0.0 +21367,77,13,23,0.0 +21367,3,10,39,0.0 +21367,8,40,14,0.0 +21367,31,12.5,4,0.0 +21367,49,20,19,0.0 +21367,37,26,18,0.0 +21367,19,9.2,16,0.0 +21367,23,9,16,0.0 +21367,36,19,10,0.0 +21367,58,13.25,35,0.0 +21367,17,39,10,0.0 +21367,1,18,14,0.0 +21367,54,7.45,24,0.0 +21367,68,12.5,39,0.0 +21367,67,14,3,0.0 +21367,45,9.5,6,0.0 +21367,65,21.05,26,0.0 +21367,66,17,10,0.0 +21367,51,53,35,0.0 +21367,61,28.5,27,0.0 +21367,12,38,11,0.0 +21367,73,15,7,0.0 +21367,21,10,8,0.0 +21367,28,45.6,29,0.0 +21367,53,32.8,27,0.0 +21367,39,18,40,0.0 +21367,22,21,2,0.0 +21367,43,46,39,0.0 +21367,74,10,14,0.0 +21367,48,12.75,40,0.0 +21367,33,2.5,40,0.0 +21367,75,7.75,10,0.0 +21367,20,81,25,0.0 +21367,46,12,18,0.0 +21367,29,123.79,26,0.0 +21367,25,14,34,0.0 +21367,16,17.45,17,0.0 +21367,35,18,14,0.0 +21367,11,21,31,0.0 +21367,13,6,31,0.0 +21367,59,55,4,0.0 +21367,5,21.35,28,0.0 +21367,9,97,9,0.0 +21367,41,9.65,2,0.0 +21367,64,33.25,41,0.0 +21367,57,19.5,43,0.0 +21367,24,4.5,40,0.0 +21367,32,32,3,0.0 +21367,10,31,25,0.0 +21367,34,14,37,0.0 +21367,2,19,33,0.0 +21367,26,31.23,44,0.0 +21367,56,38,50,0.0 +21367,72,34.8,29,0.0 +21367,42,14,35,0.0 +21368,65,21.05,6,0.0 +21368,38,263.5,33,0.0 +21368,13,6,34,0.0 +21368,28,45.6,23,0.0 +21368,73,15,8,0.0 +21368,54,7.45,7,0.0 +21368,33,2.5,22,0.0 +21368,61,28.5,20,0.0 +21368,21,10,26,0.0 +21368,55,24,10,0.0 +21368,75,7.75,1,0.0 +21368,45,9.5,44,0.0 +21368,31,12.5,50,0.0 +21368,11,21,44,0.0 +21368,58,13.25,47,0.0 +21368,43,46,36,0.0 +21368,44,19.45,31,0.0 +21368,16,17.45,28,0.0 +21368,47,9.5,24,0.0 +21368,7,30,6,0.0 +21368,15,15.5,49,0.0 +21368,59,55,39,0.0 +21368,24,4.5,37,0.0 +21368,17,39,19,0.0 +21368,40,18.4,30,0.0 +21368,42,14,44,0.0 +21369,76,18,16,0.0 +21369,50,16.25,5,0.0 +21369,71,21.5,11,0.0 +21369,70,15,37,0.0 +21369,77,13,50,0.0 +21369,32,32,49,0.0 +21369,36,19,33,0.0 +21369,60,34,43,0.0 +21369,19,9.2,30,0.0 +21369,2,19,18,0.0 +21369,74,10,10,0.0 +21369,65,21.05,11,0.0 +21369,39,18,42,0.0 +21369,55,24,32,0.0 +21369,30,25.89,46,0.0 +21370,30,25.89,11,0.0 +21370,33,2.5,14,0.0 +21370,4,22,24,0.0 +21370,49,20,1,0.0 +21370,52,7,42,0.0 +21370,23,9,39,0.0 +21370,69,36,9,0.0 +21370,62,49.3,21,0.0 +21370,19,9.2,47,0.0 +21370,63,43.9,41,0.0 +21370,73,15,23,0.0 +21370,40,18.4,9,0.0 +21370,74,10,38,0.0 +21370,39,18,45,0.0 +21370,3,10,27,0.0 +21370,58,13.25,9,0.0 +21370,71,21.5,38,0.0 +21370,47,9.5,16,0.0 +21370,46,12,20,0.0 +21370,50,16.25,22,0.0 +21370,26,31.23,27,0.0 +21370,51,53,12,0.0 +21370,8,40,42,0.0 +21370,43,46,23,0.0 +21370,42,14,16,0.0 +21370,66,17,45,0.0 +21370,75,7.75,25,0.0 +21370,27,43.9,7,0.0 +21370,76,18,7,0.0 +21370,65,21.05,13,0.0 +21370,34,14,50,0.0 +21370,41,9.65,26,0.0 +21370,59,55,21,0.0 +21370,25,14,36,0.0 +21370,9,97,36,0.0 +21370,22,21,27,0.0 +21370,35,18,4,0.0 +21370,31,12.5,45,0.0 +21370,18,62.5,37,0.0 +21370,1,18,50,0.0 +21370,38,263.5,10,0.0 +21370,56,38,25,0.0 +21370,7,30,22,0.0 +21370,37,26,32,0.0 +21370,54,7.45,36,0.0 +21370,6,25,24,0.0 +21370,45,9.5,39,0.0 +21370,10,31,44,0.0 +21370,72,34.8,7,0.0 +21370,11,21,37,0.0 +21370,36,19,30,0.0 +21370,57,19.5,28,0.0 +21370,16,17.45,34,0.0 +21370,15,15.5,29,0.0 +21370,61,28.5,4,0.0 +21370,24,4.5,37,0.0 +21370,68,12.5,5,0.0 +21370,2,19,46,0.0 +21370,14,23.25,17,0.0 +21370,60,34,50,0.0 +21370,77,13,46,0.0 +21370,32,32,46,0.0 +21370,64,33.25,23,0.0 +21370,67,14,21,0.0 +21371,43,46,47,0.0 +21371,66,17,38,0.0 +21371,30,25.89,35,0.0 +21371,42,14,45,0.0 +21371,58,13.25,14,0.0 +21371,10,31,20,0.0 +21371,5,21.35,28,0.0 +21371,53,32.8,49,0.0 +21371,1,18,38,0.0 +21371,77,13,43,0.0 +21371,20,81,4,0.0 +21371,38,263.5,24,0.0 +21371,51,53,10,0.0 +21371,48,12.75,43,0.0 +21371,67,14,1,0.0 +21371,62,49.3,30,0.0 +21371,54,7.45,17,0.0 +21371,35,18,15,0.0 +21371,6,25,4,0.0 +21371,29,123.79,39,0.0 +21371,23,9,22,0.0 +21371,71,21.5,48,0.0 +21371,7,30,44,0.0 +21371,36,19,33,0.0 +21371,2,19,12,0.0 +21371,76,18,49,0.0 +21371,63,43.9,48,0.0 +21371,26,31.23,49,0.0 +21371,13,6,37,0.0 +21371,68,12.5,50,0.0 +21371,31,12.5,47,0.0 +21371,8,40,15,0.0 +21371,61,28.5,43,0.0 +21371,37,26,23,0.0 +21371,18,62.5,47,0.0 +21371,50,16.25,5,0.0 +21371,64,33.25,19,0.0 +21371,44,19.45,20,0.0 +21371,46,12,36,0.0 +21371,70,15,10,0.0 +21371,25,14,18,0.0 +21371,16,17.45,36,0.0 +21372,71,21.5,38,0.0 +21372,2,19,28,0.0 +21372,13,6,10,0.0 +21372,28,45.6,28,0.0 +21372,74,10,44,0.0 +21372,31,12.5,13,0.0 +21372,51,53,41,0.0 +21372,60,34,8,0.0 +21372,47,9.5,7,0.0 +21372,62,49.3,6,0.0 +21372,70,15,24,0.0 +21372,76,18,38,0.0 +21372,26,31.23,42,0.0 +21372,36,19,7,0.0 +21372,4,22,9,0.0 +21372,69,36,4,0.0 +21373,60,34,21,0.0 +21373,55,24,49,0.0 +21373,14,23.25,39,0.0 +21373,71,21.5,26,0.0 +21373,18,62.5,17,0.0 +21373,29,123.79,22,0.0 +21373,42,14,23,0.0 +21373,16,17.45,16,0.0 +21373,37,26,42,0.0 +21373,70,15,10,0.0 +21373,52,7,42,0.0 +21373,39,18,47,0.0 +21373,61,28.5,40,0.0 +21373,49,20,4,0.0 +21373,50,16.25,4,0.0 +21373,56,38,49,0.0 +21373,45,9.5,31,0.0 +21373,77,13,26,0.0 +21373,65,21.05,23,0.0 +21373,1,18,41,0.0 +21373,21,10,30,0.0 +21373,9,97,25,0.0 +21373,8,40,40,0.0 +21373,11,21,1,0.0 +21373,24,4.5,40,0.0 +21373,26,31.23,35,0.0 +21373,63,43.9,22,0.0 +21373,30,25.89,7,0.0 +21373,10,31,17,0.0 +21373,13,6,5,0.0 +21373,75,7.75,34,0.0 +21373,74,10,6,0.0 +21373,73,15,48,0.0 +21373,62,49.3,36,0.0 +21373,25,14,31,0.0 +21373,35,18,8,0.0 +21373,12,38,47,0.0 +21373,38,263.5,2,0.0 +21373,43,46,3,0.0 +21373,72,34.8,49,0.0 +21373,28,45.6,19,0.0 +21374,36,19,47,0.0 +21374,43,46,32,0.0 +21374,16,17.45,14,0.0 +21374,14,23.25,30,0.0 +21374,54,7.45,44,0.0 +21374,3,10,14,0.0 +21374,77,13,10,0.0 +21374,48,12.75,17,0.0 +21374,7,30,41,0.0 +21374,61,28.5,16,0.0 +21374,55,24,27,0.0 +21374,50,16.25,41,0.0 +21374,65,21.05,31,0.0 +21374,30,25.89,22,0.0 +21374,56,38,37,0.0 +21374,51,53,15,0.0 +21374,52,7,36,0.0 +21374,53,32.8,17,0.0 +21374,11,21,21,0.0 +21374,2,19,47,0.0 +21374,13,6,1,0.0 +21374,66,17,8,0.0 +21374,64,33.25,29,0.0 +21374,32,32,17,0.0 +21374,75,7.75,14,0.0 +21374,28,45.6,20,0.0 +21374,76,18,26,0.0 +21374,60,34,23,0.0 +21374,26,31.23,9,0.0 +21374,21,10,2,0.0 +21374,6,25,42,0.0 +21374,59,55,42,0.0 +21374,33,2.5,46,0.0 +21374,29,123.79,37,0.0 +21374,68,12.5,31,0.0 +21374,22,21,25,0.0 +21374,67,14,23,0.0 +21374,49,20,30,0.0 +21374,62,49.3,27,0.0 +21374,23,9,5,0.0 +21374,63,43.9,25,0.0 +21374,20,81,24,0.0 +21374,58,13.25,46,0.0 +21374,72,34.8,25,0.0 +21374,34,14,16,0.0 +21374,45,9.5,26,0.0 +21374,71,21.5,24,0.0 +21374,18,62.5,13,0.0 +21374,40,18.4,8,0.0 +21374,35,18,24,0.0 +21374,10,31,5,0.0 +21374,46,12,4,0.0 +21374,8,40,25,0.0 +21374,70,15,42,0.0 +21374,5,21.35,31,0.0 +21374,37,26,10,0.0 +21374,73,15,10,0.0 +21374,69,36,43,0.0 +21374,41,9.65,17,0.0 +21374,24,4.5,4,0.0 +21374,44,19.45,48,0.0 +21374,39,18,24,0.0 +21374,12,38,3,0.0 +21374,31,12.5,3,0.0 +21374,38,263.5,25,0.0 +21374,47,9.5,9,0.0 +21375,60,34,49,0.0 +21375,34,14,45,0.0 +21375,14,23.25,1,0.0 +21376,69,36,38,0.0 +21376,65,21.05,26,0.0 +21376,4,22,33,0.0 +21376,67,14,12,0.0 +21376,22,21,49,0.0 +21376,63,43.9,16,0.0 +21376,43,46,17,0.0 +21376,46,12,33,0.0 +21376,11,21,19,0.0 +21376,74,10,23,0.0 +21376,24,4.5,3,0.0 +21376,55,24,17,0.0 +21376,28,45.6,24,0.0 +21376,57,19.5,50,0.0 +21377,15,15.5,43,0.0 +21377,27,43.9,33,0.0 +21377,3,10,11,0.0 +21377,56,38,28,0.0 +21378,9,97,28,0.0 +21378,68,12.5,12,0.0 +21378,2,19,25,0.0 +21378,63,43.9,22,0.0 +21378,66,17,25,0.0 +21378,58,13.25,32,0.0 +21378,13,6,3,0.0 +21378,55,24,37,0.0 +21378,60,34,26,0.0 +21378,29,123.79,10,0.0 +21378,57,19.5,12,0.0 +21378,1,18,47,0.0 +21378,4,22,32,0.0 +21379,24,4.5,49,0.0 +21379,69,36,28,0.0 +21379,55,24,19,0.0 +21379,29,123.79,21,0.0 +21379,44,19.45,3,0.0 +21379,33,2.5,30,0.0 +21379,3,10,42,0.0 +21379,30,25.89,50,0.0 +21379,64,33.25,44,0.0 +21379,76,18,41,0.0 +21379,18,62.5,20,0.0 +21379,12,38,7,0.0 +21379,16,17.45,40,0.0 +21379,10,31,29,0.0 +21379,60,34,7,0.0 +21379,1,18,41,0.0 +21379,36,19,30,0.0 +21379,7,30,11,0.0 +21379,14,23.25,28,0.0 +21379,25,14,28,0.0 +21379,5,21.35,16,0.0 +21379,61,28.5,28,0.0 +21379,2,19,47,0.0 +21379,47,9.5,43,0.0 +21379,58,13.25,48,0.0 +21379,65,21.05,45,0.0 +21379,70,15,29,0.0 +21379,31,12.5,12,0.0 +21379,26,31.23,43,0.0 +21379,37,26,29,0.0 +21379,66,17,49,0.0 +21379,22,21,23,0.0 +21379,53,32.8,10,0.0 +21379,9,97,22,0.0 +21379,49,20,21,0.0 +21379,32,32,37,0.0 +21379,6,25,43,0.0 +21379,23,9,3,0.0 +21379,35,18,29,0.0 +21379,54,7.45,12,0.0 +21379,68,12.5,26,0.0 +21379,50,16.25,29,0.0 +21379,39,18,50,0.0 +21379,73,15,49,0.0 +21379,19,9.2,41,0.0 +21379,20,81,35,0.0 +21379,40,18.4,7,0.0 +21379,43,46,20,0.0 +21379,75,7.75,39,0.0 +21379,11,21,42,0.0 +21379,17,39,14,0.0 +21379,63,43.9,49,0.0 +21379,21,10,23,0.0 +21379,51,53,34,0.0 +21379,59,55,10,0.0 +21379,46,12,28,0.0 +21379,56,38,17,0.0 +21379,41,9.65,16,0.0 +21380,36,19,1,0.0 +21380,74,10,14,0.0 +21380,30,25.89,11,0.0 +21380,72,34.8,48,0.0 +21380,52,7,49,0.0 +21380,10,31,16,0.0 +21380,1,18,11,0.0 +21380,13,6,28,0.0 +21380,25,14,36,0.0 +21380,34,14,1,0.0 +21380,39,18,31,0.0 +21380,60,34,43,0.0 +21380,70,15,42,0.0 +21380,64,33.25,11,0.0 +21380,41,9.65,45,0.0 +21381,25,14,3,0.0 +21381,71,21.5,17,0.0 +21381,42,14,38,0.0 +21381,59,55,37,0.0 +21381,31,12.5,45,0.0 +21381,37,26,14,0.0 +21381,5,21.35,47,0.0 +21381,22,21,44,0.0 +21381,1,18,22,0.0 +21381,69,36,5,0.0 +21381,21,10,46,0.0 +21381,35,18,29,0.0 +21381,16,17.45,36,0.0 +21381,41,9.65,14,0.0 +21381,65,21.05,36,0.0 +21381,26,31.23,36,0.0 +21381,11,21,19,0.0 +21381,68,12.5,25,0.0 +21381,49,20,4,0.0 +21381,44,19.45,10,0.0 +21381,66,17,10,0.0 +21381,6,25,32,0.0 +21381,15,15.5,50,0.0 +21381,4,22,38,0.0 +21381,39,18,17,0.0 +21381,30,25.89,41,0.0 +21381,45,9.5,4,0.0 +21381,8,40,49,0.0 +21381,55,24,15,0.0 +21381,2,19,34,0.0 +21381,14,23.25,5,0.0 +21381,9,97,15,0.0 +21381,62,49.3,46,0.0 +21381,57,19.5,48,0.0 +21381,51,53,21,0.0 +21381,50,16.25,12,0.0 +21381,70,15,1,0.0 +21381,64,33.25,14,0.0 +21381,32,32,16,0.0 +21381,27,43.9,1,0.0 +21381,36,19,21,0.0 +21381,56,38,45,0.0 +21381,12,38,38,0.0 +21381,40,18.4,4,0.0 +21381,61,28.5,18,0.0 +21381,73,15,42,0.0 +21381,38,263.5,26,0.0 +21381,28,45.6,10,0.0 +21381,77,13,19,0.0 +21381,43,46,38,0.0 +21381,17,39,49,0.0 +21381,74,10,25,0.0 +21381,60,34,50,0.0 +21381,54,7.45,36,0.0 +21381,75,7.75,4,0.0 +21381,34,14,30,0.0 +21381,24,4.5,20,0.0 +21381,3,10,12,0.0 +21381,33,2.5,49,0.0 +21381,48,12.75,47,0.0 +21381,19,9.2,23,0.0 +21381,72,34.8,37,0.0 +21381,67,14,18,0.0 +21381,20,81,46,0.0 +21381,18,62.5,13,0.0 +21381,13,6,45,0.0 +21381,76,18,47,0.0 +21381,10,31,49,0.0 +21381,7,30,43,0.0 +21381,58,13.25,20,0.0 +21382,45,9.5,31,0.0 +21383,77,13,43,0.0 +21383,45,9.5,3,0.0 +21383,56,38,1,0.0 +21383,30,25.89,2,0.0 +21383,41,9.65,41,0.0 +21383,54,7.45,48,0.0 +21383,60,34,46,0.0 +21383,25,14,31,0.0 +21383,9,97,30,0.0 +21383,20,81,6,0.0 +21383,18,62.5,19,0.0 +21383,66,17,16,0.0 +21383,27,43.9,39,0.0 +21383,3,10,38,0.0 +21383,74,10,37,0.0 +21384,3,10,33,0.0 +21384,37,26,36,0.0 +21384,14,23.25,27,0.0 +21384,50,16.25,23,0.0 +21384,19,9.2,32,0.0 +21384,59,55,44,0.0 +21384,1,18,43,0.0 +21384,27,43.9,35,0.0 +21384,76,18,13,0.0 +21384,34,14,26,0.0 +21384,75,7.75,5,0.0 +21384,51,53,23,0.0 +21384,44,19.45,24,0.0 +21384,39,18,14,0.0 +21384,17,39,18,0.0 +21384,61,28.5,10,0.0 +21384,11,21,45,0.0 +21384,31,12.5,43,0.0 +21384,38,263.5,30,0.0 +21384,71,21.5,8,0.0 +21384,43,46,9,0.0 +21384,29,123.79,33,0.0 +21384,13,6,4,0.0 +21384,74,10,23,0.0 +21384,30,25.89,10,0.0 +21384,42,14,9,0.0 +21384,36,19,39,0.0 +21384,47,9.5,36,0.0 +21384,77,13,9,0.0 +21384,20,81,46,0.0 +21384,28,45.6,32,0.0 +21384,35,18,12,0.0 +21384,58,13.25,8,0.0 +21384,32,32,33,0.0 +21384,54,7.45,21,0.0 +21384,52,7,13,0.0 +21384,40,18.4,2,0.0 +21384,16,17.45,42,0.0 +21384,15,15.5,22,0.0 +21384,45,9.5,34,0.0 +21384,73,15,43,0.0 +21384,69,36,32,0.0 +21384,60,34,18,0.0 +21384,33,2.5,9,0.0 +21384,56,38,25,0.0 +21384,46,12,35,0.0 +21384,8,40,36,0.0 +21384,12,38,9,0.0 +21385,53,32.8,49,0.0 +21385,33,2.5,38,0.0 +21385,49,20,1,0.0 +21385,54,7.45,40,0.0 +21385,76,18,5,0.0 +21385,57,19.5,15,0.0 +21385,32,32,20,0.0 +21385,28,45.6,29,0.0 +21385,34,14,42,0.0 +21385,27,43.9,44,0.0 +21385,22,21,40,0.0 +21385,58,13.25,38,0.0 +21386,15,15.5,12,0.0 +21386,27,43.9,5,0.0 +21386,14,23.25,18,0.0 +21386,61,28.5,1,0.0 +21386,2,19,43,0.0 +21386,26,31.23,49,0.0 +21386,36,19,15,0.0 +21386,13,6,33,0.0 +21386,19,9.2,25,0.0 +21386,52,7,49,0.0 +21386,23,9,5,0.0 +21386,39,18,26,0.0 +21386,56,38,2,0.0 +21386,64,33.25,43,0.0 +21386,66,17,21,0.0 +21386,51,53,2,0.0 +21386,44,19.45,3,0.0 +21386,31,12.5,4,0.0 +21386,69,36,33,0.0 +21386,70,15,19,0.0 +21386,35,18,8,0.0 +21386,58,13.25,43,0.0 +21386,67,14,46,0.0 +21386,43,46,12,0.0 +21386,45,9.5,20,0.0 +21386,17,39,18,0.0 +21386,48,12.75,10,0.0 +21386,10,31,1,0.0 +21386,9,97,23,0.0 +21386,38,263.5,10,0.0 +21386,77,13,1,0.0 +21386,6,25,6,0.0 +21387,31,12.5,47,0.0 +21387,7,30,39,0.0 +21387,49,20,38,0.0 +21387,5,21.35,40,0.0 +21387,26,31.23,41,0.0 +21387,69,36,17,0.0 +21387,1,18,31,0.0 +21387,9,97,43,0.0 +21388,23,9,12,0.0 +21388,39,18,33,0.0 +21388,27,43.9,32,0.0 +21388,42,14,46,0.0 +21388,38,263.5,25,0.0 +21388,1,18,11,0.0 +21388,29,123.79,43,0.0 +21388,72,34.8,35,0.0 +21388,49,20,7,0.0 +21388,53,32.8,27,0.0 +21388,31,12.5,9,0.0 +21388,22,21,15,0.0 +21388,76,18,20,0.0 +21388,20,81,34,0.0 +21388,19,9.2,41,0.0 +21388,59,55,17,0.0 +21388,51,53,12,0.0 +21388,30,25.89,49,0.0 +21388,13,6,42,0.0 +21388,11,21,16,0.0 +21388,63,43.9,12,0.0 +21388,74,10,49,0.0 +21388,24,4.5,13,0.0 +21388,26,31.23,8,0.0 +21388,2,19,2,0.0 +21388,68,12.5,3,0.0 +21388,34,14,23,0.0 +21388,48,12.75,2,0.0 +21388,55,24,31,0.0 +21389,25,14,23,0.0 +21389,19,9.2,25,0.0 +21389,35,18,2,0.0 +21389,1,18,33,0.0 +21389,75,7.75,26,0.0 +21389,2,19,10,0.0 +21389,32,32,12,0.0 +21389,70,15,5,0.0 +21389,64,33.25,11,0.0 +21389,43,46,31,0.0 +21389,77,13,10,0.0 +21389,15,15.5,8,0.0 +21389,69,36,20,0.0 +21389,31,12.5,38,0.0 +21389,29,123.79,39,0.0 +21389,51,53,36,0.0 +21389,48,12.75,48,0.0 +21389,27,43.9,4,0.0 +21389,73,15,24,0.0 +21389,56,38,36,0.0 +21389,9,97,19,0.0 +21389,36,19,35,0.0 +21389,8,40,14,0.0 +21389,18,62.5,45,0.0 +21389,46,12,34,0.0 +21389,58,13.25,39,0.0 +21389,11,21,47,0.0 +21389,39,18,43,0.0 +21389,28,45.6,38,0.0 +21389,24,4.5,10,0.0 +21389,71,21.5,10,0.0 +21389,34,14,9,0.0 +21389,47,9.5,2,0.0 +21389,23,9,25,0.0 +21389,6,25,7,0.0 +21389,49,20,50,0.0 +21389,50,16.25,42,0.0 +21389,26,31.23,43,0.0 +21389,42,14,42,0.0 +21389,44,19.45,20,0.0 +21389,40,18.4,21,0.0 +21389,22,21,21,0.0 +21389,63,43.9,22,0.0 +21389,76,18,15,0.0 +21389,38,263.5,46,0.0 +21389,14,23.25,35,0.0 +21389,12,38,15,0.0 +21389,37,26,8,0.0 +21389,59,55,5,0.0 +21389,30,25.89,20,0.0 +21389,45,9.5,29,0.0 +21389,53,32.8,42,0.0 +21389,57,19.5,36,0.0 +21389,13,6,19,0.0 +21389,41,9.65,1,0.0 +21389,4,22,25,0.0 +21389,74,10,39,0.0 +21389,61,28.5,26,0.0 +21389,65,21.05,25,0.0 +21389,55,24,39,0.0 +21389,3,10,26,0.0 +21389,21,10,7,0.0 +21389,7,30,44,0.0 +21389,72,34.8,33,0.0 +21389,5,21.35,38,0.0 +21389,20,81,4,0.0 +21389,52,7,6,0.0 +21389,68,12.5,44,0.0 +21389,17,39,40,0.0 +21389,54,7.45,42,0.0 +21390,35,18,15,0.0 +21390,27,43.9,26,0.0 +21390,16,17.45,25,0.0 +21390,6,25,29,0.0 +21390,34,14,45,0.0 +21390,66,17,12,0.0 +21390,26,31.23,46,0.0 +21390,63,43.9,39,0.0 +21390,7,30,3,0.0 +21390,54,7.45,17,0.0 +21390,73,15,11,0.0 +21390,9,97,7,0.0 +21390,15,15.5,19,0.0 +21390,20,81,10,0.0 +21390,72,34.8,34,0.0 +21390,64,33.25,1,0.0 +21390,3,10,22,0.0 +21390,8,40,7,0.0 +21390,24,4.5,2,0.0 +21390,50,16.25,11,0.0 +21390,55,24,40,0.0 +21390,28,45.6,11,0.0 +21390,45,9.5,16,0.0 +21390,42,14,38,0.0 +21390,4,22,30,0.0 +21390,31,12.5,25,0.0 +21390,52,7,16,0.0 +21390,25,14,3,0.0 +21390,60,34,49,0.0 +21390,37,26,48,0.0 +21390,76,18,4,0.0 +21390,29,123.79,2,0.0 +21390,74,10,46,0.0 +21390,1,18,27,0.0 +21390,22,21,35,0.0 +21390,77,13,36,0.0 +21390,21,10,3,0.0 +21390,5,21.35,45,0.0 +21390,2,19,10,0.0 +21390,47,9.5,38,0.0 +21390,36,19,15,0.0 +21390,65,21.05,46,0.0 +21390,40,18.4,45,0.0 +21390,19,9.2,4,0.0 +21390,49,20,34,0.0 +21390,56,38,30,0.0 +21390,14,23.25,38,0.0 +21390,13,6,33,0.0 +21390,41,9.65,2,0.0 +21390,10,31,28,0.0 +21391,45,9.5,47,0.0 +21391,66,17,44,0.0 +21391,21,10,29,0.0 +21391,24,4.5,13,0.0 +21391,6,25,19,0.0 +21391,60,34,13,0.0 +21391,18,62.5,15,0.0 +21391,10,31,10,0.0 +21391,41,9.65,15,0.0 +21391,49,20,33,0.0 +21391,48,12.75,38,0.0 +21391,68,12.5,7,0.0 +21391,77,13,37,0.0 +21391,35,18,37,0.0 +21391,72,34.8,5,0.0 +21391,17,39,50,0.0 +21391,28,45.6,31,0.0 +21391,73,15,32,0.0 +21391,43,46,29,0.0 +21391,74,10,32,0.0 +21391,39,18,14,0.0 +21391,55,24,46,0.0 +21391,13,6,3,0.0 +21391,31,12.5,39,0.0 +21391,57,19.5,17,0.0 +21391,25,14,43,0.0 +21391,64,33.25,34,0.0 +21391,56,38,5,0.0 +21391,44,19.45,27,0.0 +21391,3,10,10,0.0 +21391,38,263.5,44,0.0 +21391,11,21,9,0.0 +21391,7,30,22,0.0 +21391,5,21.35,49,0.0 +21391,1,18,26,0.0 +21391,67,14,43,0.0 +21391,19,9.2,37,0.0 +21391,54,7.45,9,0.0 +21391,40,18.4,46,0.0 +21391,47,9.5,20,0.0 +21391,53,32.8,4,0.0 +21391,16,17.45,10,0.0 +21391,76,18,23,0.0 +21391,33,2.5,6,0.0 +21391,12,38,41,0.0 +21391,42,14,16,0.0 +21391,4,22,49,0.0 +21391,32,32,27,0.0 +21391,37,26,29,0.0 +21391,71,21.5,37,0.0 +21391,62,49.3,14,0.0 +21391,46,12,7,0.0 +21391,2,19,21,0.0 +21391,26,31.23,8,0.0 +21391,36,19,46,0.0 +21391,23,9,36,0.0 +21391,9,97,26,0.0 +21391,70,15,50,0.0 +21391,59,55,40,0.0 +21391,51,53,41,0.0 +21391,52,7,14,0.0 +21391,14,23.25,16,0.0 +21391,34,14,1,0.0 +21391,63,43.9,24,0.0 +21391,65,21.05,39,0.0 +21391,58,13.25,44,0.0 +21391,61,28.5,31,0.0 +21391,22,21,29,0.0 +21391,29,123.79,31,0.0 +21391,69,36,27,0.0 +21391,15,15.5,5,0.0 +21391,30,25.89,3,0.0 +21391,50,16.25,32,0.0 +21391,20,81,2,0.0 +21392,46,12,36,0.0 +21392,17,39,1,0.0 +21392,47,9.5,24,0.0 +21392,67,14,34,0.0 +21392,58,13.25,48,0.0 +21392,24,4.5,14,0.0 +21392,72,34.8,12,0.0 +21392,9,97,43,0.0 +21392,54,7.45,37,0.0 +21392,2,19,47,0.0 +21392,37,26,44,0.0 +21392,27,43.9,14,0.0 +21392,21,10,38,0.0 +21392,22,21,18,0.0 +21392,12,38,5,0.0 +21392,69,36,10,0.0 +21392,70,15,50,0.0 +21392,43,46,19,0.0 +21392,40,18.4,17,0.0 +21392,44,19.45,39,0.0 +21392,15,15.5,25,0.0 +21392,18,62.5,22,0.0 +21392,38,263.5,28,0.0 +21392,63,43.9,28,0.0 +21392,51,53,31,0.0 +21392,34,14,29,0.0 +21393,21,10,28,0.0 +21393,64,33.25,50,0.0 +21393,34,14,28,0.0 +21393,52,7,14,0.0 +21393,76,18,22,0.0 +21393,22,21,48,0.0 +21393,63,43.9,33,0.0 +21393,48,12.75,45,0.0 +21393,25,14,32,0.0 +21393,57,19.5,34,0.0 +21393,41,9.65,23,0.0 +21393,53,32.8,29,0.0 +21393,36,19,7,0.0 +21393,38,263.5,16,0.0 +21393,55,24,38,0.0 +21393,4,22,26,0.0 +21393,1,18,18,0.0 +21393,8,40,32,0.0 +21393,77,13,2,0.0 +21393,13,6,24,0.0 +21393,39,18,28,0.0 +21393,9,97,48,0.0 +21393,2,19,37,0.0 +21393,33,2.5,7,0.0 +21393,32,32,32,0.0 +21393,59,55,4,0.0 +21393,47,9.5,31,0.0 +21393,42,14,26,0.0 +21393,61,28.5,20,0.0 +21393,44,19.45,22,0.0 +21393,74,10,2,0.0 +21393,24,4.5,46,0.0 +21393,46,12,31,0.0 +21393,49,20,11,0.0 +21393,67,14,46,0.0 +21393,27,43.9,9,0.0 +21393,19,9.2,3,0.0 +21393,69,36,44,0.0 +21393,30,25.89,12,0.0 +21393,10,31,18,0.0 +21393,31,12.5,6,0.0 +21393,35,18,31,0.0 +21393,15,15.5,38,0.0 +21393,40,18.4,11,0.0 +21393,71,21.5,42,0.0 +21393,29,123.79,44,0.0 +21393,66,17,18,0.0 +21393,14,23.25,20,0.0 +21393,65,21.05,6,0.0 +21393,17,39,23,0.0 +21393,18,62.5,3,0.0 +21393,43,46,50,0.0 +21393,28,45.6,31,0.0 +21393,73,15,3,0.0 +21393,58,13.25,25,0.0 +21393,54,7.45,35,0.0 +21393,5,21.35,15,0.0 +21393,11,21,30,0.0 +21393,16,17.45,33,0.0 +21393,6,25,26,0.0 +21393,37,26,12,0.0 +21393,72,34.8,25,0.0 +21393,56,38,39,0.0 +21393,12,38,49,0.0 +21394,24,4.5,44,0.0 +21394,11,21,34,0.0 +21394,55,24,12,0.0 +21394,63,43.9,35,0.0 +21394,14,23.25,14,0.0 +21394,29,123.79,2,0.0 +21394,50,16.25,36,0.0 +21394,17,39,2,0.0 +21394,71,21.5,46,0.0 +21394,8,40,36,0.0 +21394,53,32.8,6,0.0 +21394,6,25,45,0.0 +21394,57,19.5,36,0.0 +21394,41,9.65,43,0.0 +21394,31,12.5,6,0.0 +21394,34,14,44,0.0 +21394,27,43.9,44,0.0 +21394,10,31,25,0.0 +21394,66,17,20,0.0 +21394,45,9.5,28,0.0 +21394,60,34,18,0.0 +21394,5,21.35,33,0.0 +21394,38,263.5,37,0.0 +21394,18,62.5,10,0.0 +21394,1,18,9,0.0 +21394,37,26,20,0.0 +21394,35,18,9,0.0 +21394,15,15.5,46,0.0 +21394,25,14,36,0.0 +21394,30,25.89,30,0.0 +21394,4,22,16,0.0 +21394,77,13,31,0.0 +21394,7,30,39,0.0 +21394,36,19,25,0.0 +21394,49,20,29,0.0 +21394,64,33.25,37,0.0 +21394,33,2.5,9,0.0 +21394,16,17.45,22,0.0 +21394,47,9.5,3,0.0 +21394,9,97,17,0.0 +21394,23,9,7,0.0 +21394,42,14,2,0.0 +21394,52,7,41,0.0 +21394,13,6,4,0.0 +21394,43,46,40,0.0 +21394,12,38,20,0.0 +21394,74,10,33,0.0 +21395,44,19.45,41,0.0 +21395,24,4.5,44,0.0 +21395,73,15,16,0.0 +21395,36,19,35,0.0 +21395,48,12.75,35,0.0 +21395,22,21,38,0.0 +21395,25,14,33,0.0 +21395,60,34,21,0.0 +21395,37,26,4,0.0 +21395,77,13,29,0.0 +21395,53,32.8,29,0.0 +21395,57,19.5,12,0.0 +21395,2,19,14,0.0 +21395,35,18,4,0.0 +21395,52,7,40,0.0 +21395,5,21.35,6,0.0 +21395,58,13.25,22,0.0 +21395,29,123.79,33,0.0 +21395,61,28.5,21,0.0 +21395,32,32,13,0.0 +21395,19,9.2,30,0.0 +21395,16,17.45,39,0.0 +21395,41,9.65,15,0.0 +21395,15,15.5,28,0.0 +21395,26,31.23,48,0.0 +21395,4,22,44,0.0 +21395,13,6,28,0.0 +21395,54,7.45,14,0.0 +21395,9,97,48,0.0 +21395,30,25.89,12,0.0 +21395,21,10,47,0.0 +21395,62,49.3,17,0.0 +21395,65,21.05,50,0.0 +21395,51,53,6,0.0 +21395,63,43.9,44,0.0 +21395,31,12.5,22,0.0 +21395,14,23.25,2,0.0 +21395,72,34.8,23,0.0 +21395,75,7.75,33,0.0 +21395,66,17,12,0.0 +21395,20,81,19,0.0 +21395,34,14,30,0.0 +21395,69,36,41,0.0 +21395,70,15,2,0.0 +21395,23,9,47,0.0 +21395,8,40,24,0.0 +21395,39,18,25,0.0 +21395,67,14,22,0.0 +21395,76,18,46,0.0 +21395,17,39,19,0.0 +21395,46,12,14,0.0 +21395,3,10,30,0.0 +21395,40,18.4,39,0.0 +21395,64,33.25,17,0.0 +21395,55,24,37,0.0 +21395,33,2.5,26,0.0 +21395,74,10,15,0.0 +21395,47,9.5,22,0.0 +21395,43,46,24,0.0 +21395,50,16.25,40,0.0 +21395,49,20,19,0.0 +21395,56,38,32,0.0 +21395,71,21.5,20,0.0 +21396,9,97,10,0.0 +21396,28,45.6,7,0.0 +21397,6,25,3,0.0 +21397,64,33.25,23,0.0 +21397,42,14,3,0.0 +21397,45,9.5,26,0.0 +21397,12,38,2,0.0 +21397,18,62.5,25,0.0 +21397,27,43.9,9,0.0 +21397,41,9.65,9,0.0 +21397,56,38,14,0.0 +21397,23,9,19,0.0 +21397,25,14,37,0.0 +21397,75,7.75,34,0.0 +21397,47,9.5,17,0.0 +21397,14,23.25,14,0.0 +21397,26,31.23,6,0.0 +21397,44,19.45,27,0.0 +21397,1,18,34,0.0 +21397,33,2.5,5,0.0 +21397,8,40,9,0.0 +21397,40,18.4,12,0.0 +21397,57,19.5,48,0.0 +21397,11,21,45,0.0 +21397,74,10,4,0.0 +21397,32,32,37,0.0 +21397,51,53,17,0.0 +21397,59,55,23,0.0 +21397,4,22,12,0.0 +21397,9,97,31,0.0 +21397,65,21.05,49,0.0 +21397,50,16.25,48,0.0 +21397,7,30,37,0.0 +21397,70,15,48,0.0 +21398,29,123.79,26,0.0 +21398,11,21,3,0.0 +21398,57,19.5,27,0.0 +21398,19,9.2,46,0.0 +21398,54,7.45,31,0.0 +21398,23,9,10,0.0 +21398,76,18,33,0.0 +21398,61,28.5,32,0.0 +21398,38,263.5,6,0.0 +21398,51,53,35,0.0 +21398,73,15,35,0.0 +21398,43,46,39,0.0 +21398,63,43.9,5,0.0 +21398,18,62.5,41,0.0 +21398,70,15,35,0.0 +21398,48,12.75,46,0.0 +21398,39,18,50,0.0 +21398,21,10,34,0.0 +21398,53,32.8,19,0.0 +21398,42,14,5,0.0 +21398,44,19.45,18,0.0 +21398,15,15.5,7,0.0 +21398,16,17.45,43,0.0 +21398,40,18.4,14,0.0 +21398,6,25,7,0.0 +21398,10,31,49,0.0 +21398,22,21,34,0.0 +21398,66,17,32,0.0 +21398,1,18,5,0.0 +21398,20,81,5,0.0 +21398,8,40,45,0.0 +21398,47,9.5,15,0.0 +21398,13,6,19,0.0 +21398,72,34.8,37,0.0 +21398,26,31.23,19,0.0 +21398,27,43.9,50,0.0 +21398,30,25.89,6,0.0 +21398,3,10,2,0.0 +21398,68,12.5,35,0.0 +21398,46,12,44,0.0 +21398,45,9.5,11,0.0 +21398,62,49.3,8,0.0 +21398,77,13,5,0.0 +21398,31,12.5,24,0.0 +21398,52,7,13,0.0 +21398,24,4.5,7,0.0 +21398,33,2.5,29,0.0 +21398,2,19,16,0.0 +21398,34,14,9,0.0 +21398,55,24,9,0.0 +21398,12,38,21,0.0 +21398,17,39,4,0.0 +21398,28,45.6,26,0.0 +21399,32,32,3,0.0 +21399,24,4.5,46,0.0 +21399,37,26,34,0.0 +21399,20,81,16,0.0 +21399,15,15.5,33,0.0 +21399,6,25,1,0.0 +21399,10,31,27,0.0 +21399,35,18,50,0.0 +21399,61,28.5,12,0.0 +21399,7,30,17,0.0 +21399,77,13,23,0.0 +21399,34,14,34,0.0 +21399,23,9,11,0.0 +21399,55,24,24,0.0 +21399,22,21,15,0.0 +21399,68,12.5,48,0.0 +21399,36,19,22,0.0 +21399,49,20,11,0.0 +21399,44,19.45,12,0.0 +21399,12,38,44,0.0 +21399,11,21,17,0.0 +21399,66,17,6,0.0 +21399,60,34,48,0.0 +21399,38,263.5,1,0.0 +21399,2,19,23,0.0 +21399,72,34.8,21,0.0 +21399,30,25.89,17,0.0 +21399,9,97,33,0.0 +21399,1,18,43,0.0 +21399,74,10,16,0.0 +21399,4,22,16,0.0 +21399,41,9.65,4,0.0 +21399,5,21.35,6,0.0 +21400,69,36,29,0.0 +21400,41,9.65,45,0.0 +21400,9,97,7,0.0 +21400,14,23.25,29,0.0 +21400,27,43.9,34,0.0 +21400,71,21.5,34,0.0 +21400,48,12.75,34,0.0 +21400,25,14,30,0.0 +21400,51,53,48,0.0 +21400,55,24,4,0.0 +21400,52,7,15,0.0 +21400,50,16.25,9,0.0 +21400,28,45.6,45,0.0 +21401,24,4.5,48,0.0 +21401,53,32.8,13,0.0 +21401,11,21,29,0.0 +21401,68,12.5,13,0.0 +21401,22,21,26,0.0 +21401,5,21.35,40,0.0 +21401,66,17,42,0.0 +21401,29,123.79,1,0.0 +21401,62,49.3,27,0.0 +21401,43,46,9,0.0 +21401,63,43.9,23,0.0 +21401,41,9.65,18,0.0 +21401,49,20,11,0.0 +21401,55,24,12,0.0 +21401,59,55,48,0.0 +21401,31,12.5,14,0.0 +21401,26,31.23,47,0.0 +21401,2,19,48,0.0 +21401,39,18,18,0.0 +21401,3,10,11,0.0 +21401,10,31,7,0.0 +21401,48,12.75,45,0.0 +21401,38,263.5,14,0.0 +21401,30,25.89,18,0.0 +21401,60,34,15,0.0 +21401,67,14,39,0.0 +21401,54,7.45,12,0.0 +21401,17,39,33,0.0 +21401,4,22,3,0.0 +21401,57,19.5,23,0.0 +21401,28,45.6,17,0.0 +21401,25,14,27,0.0 +21401,35,18,43,0.0 +21401,21,10,6,0.0 +21401,71,21.5,49,0.0 +21401,33,2.5,42,0.0 +21401,50,16.25,33,0.0 +21401,44,19.45,29,0.0 +21401,40,18.4,3,0.0 +21401,76,18,30,0.0 +21401,27,43.9,31,0.0 +21401,75,7.75,14,0.0 +21401,6,25,7,0.0 +21401,70,15,31,0.0 +21402,41,9.65,45,0.0 +21402,54,7.45,25,0.0 +21402,15,15.5,7,0.0 +21402,64,33.25,16,0.0 +21402,37,26,20,0.0 +21402,23,9,49,0.0 +21402,67,14,42,0.0 +21402,13,6,49,0.0 +21402,34,14,5,0.0 +21402,49,20,14,0.0 +21402,51,53,10,0.0 +21402,18,62.5,18,0.0 +21402,8,40,7,0.0 +21402,68,12.5,5,0.0 +21402,46,12,18,0.0 +21402,38,263.5,7,0.0 +21402,43,46,19,0.0 +21402,29,123.79,30,0.0 +21402,61,28.5,34,0.0 +21402,52,7,34,0.0 +21402,9,97,25,0.0 +21402,57,19.5,13,0.0 +21402,76,18,29,0.0 +21402,28,45.6,41,0.0 +21402,7,30,8,0.0 +21402,12,38,39,0.0 +21402,1,18,1,0.0 +21402,19,9.2,37,0.0 +21402,30,25.89,24,0.0 +21402,62,49.3,30,0.0 +21403,3,10,19,0.0 +21403,71,21.5,18,0.0 +21403,67,14,27,0.0 +21403,39,18,27,0.0 +21403,64,33.25,5,0.0 +21403,50,16.25,31,0.0 +21403,10,31,20,0.0 +21403,19,9.2,45,0.0 +21403,8,40,44,0.0 +21403,63,43.9,3,0.0 +21403,36,19,43,0.0 +21403,9,97,1,0.0 +21403,41,9.65,35,0.0 +21403,11,21,41,0.0 +21403,48,12.75,38,0.0 +21403,47,9.5,10,0.0 +21403,61,28.5,21,0.0 +21403,12,38,19,0.0 +21403,70,15,16,0.0 +21403,35,18,9,0.0 +21403,76,18,17,0.0 +21403,66,17,37,0.0 +21403,4,22,47,0.0 +21403,25,14,25,0.0 +21403,23,9,20,0.0 +21403,18,62.5,23,0.0 +21403,44,19.45,18,0.0 +21403,72,34.8,29,0.0 +21403,57,19.5,43,0.0 +21403,33,2.5,17,0.0 +21403,5,21.35,34,0.0 +21403,20,81,45,0.0 +21403,15,15.5,35,0.0 +21403,54,7.45,41,0.0 +21403,6,25,1,0.0 +21403,49,20,49,0.0 +21403,28,45.6,7,0.0 +21403,53,32.8,13,0.0 +21403,77,13,39,0.0 +21403,13,6,50,0.0 +21403,22,21,22,0.0 +21403,42,14,40,0.0 +21403,58,13.25,48,0.0 +21403,55,24,15,0.0 +21403,45,9.5,24,0.0 +21403,73,15,24,0.0 +21403,29,123.79,9,0.0 +21403,31,12.5,19,0.0 +21403,75,7.75,41,0.0 +21403,21,10,14,0.0 +21403,16,17.45,9,0.0 +21403,51,53,48,0.0 +21403,60,34,17,0.0 +21403,14,23.25,42,0.0 +21404,70,15,3,0.0 +21404,35,18,9,0.0 +21404,16,17.45,8,0.0 +21404,50,16.25,8,0.0 +21404,61,28.5,36,0.0 +21404,39,18,16,0.0 +21404,9,97,6,0.0 +21404,24,4.5,35,0.0 +21404,21,10,23,0.0 +21404,37,26,29,0.0 +21404,51,53,49,0.0 +21404,22,21,6,0.0 +21404,62,49.3,10,0.0 +21405,17,39,30,0.0 +21405,6,25,5,0.0 +21405,11,21,32,0.0 +21405,64,33.25,4,0.0 +21405,54,7.45,42,0.0 +21405,36,19,5,0.0 +21405,63,43.9,10,0.0 +21405,18,62.5,3,0.0 +21405,69,36,39,0.0 +21405,40,18.4,19,0.0 +21405,61,28.5,43,0.0 +21405,70,15,2,0.0 +21405,53,32.8,43,0.0 +21405,46,12,20,0.0 +21405,57,19.5,17,0.0 +21406,63,43.9,3,0.0 +21406,38,263.5,48,0.0 +21406,50,16.25,23,0.0 +21406,4,22,31,0.0 +21406,19,9.2,19,0.0 +21406,37,26,12,0.0 +21406,72,34.8,18,0.0 +21406,60,34,19,0.0 +21406,1,18,44,0.0 +21406,35,18,25,0.0 +21406,39,18,9,0.0 +21406,8,40,37,0.0 +21406,28,45.6,19,0.0 +21406,17,39,7,0.0 +21406,43,46,28,0.0 +21406,49,20,12,0.0 +21406,69,36,25,0.0 +21406,68,12.5,39,0.0 +21406,47,9.5,3,0.0 +21406,41,9.65,33,0.0 +21406,16,17.45,18,0.0 +21406,24,4.5,43,0.0 +21406,66,17,37,0.0 +21406,52,7,11,0.0 +21406,2,19,49,0.0 +21406,71,21.5,38,0.0 +21406,75,7.75,46,0.0 +21406,10,31,33,0.0 +21406,11,21,23,0.0 +21406,62,49.3,13,0.0 +21406,27,43.9,50,0.0 +21406,7,30,28,0.0 +21406,34,14,20,0.0 +21406,21,10,8,0.0 +21406,30,25.89,46,0.0 +21406,6,25,15,0.0 +21406,32,32,24,0.0 +21406,18,62.5,36,0.0 +21406,64,33.25,49,0.0 +21406,23,9,8,0.0 +21406,31,12.5,28,0.0 +21406,26,31.23,10,0.0 +21406,33,2.5,36,0.0 +21406,46,12,46,0.0 +21406,74,10,31,0.0 +21406,61,28.5,32,0.0 +21406,42,14,32,0.0 +21406,15,15.5,45,0.0 +21406,59,55,44,0.0 +21406,3,10,42,0.0 +21406,76,18,36,0.0 +21406,55,24,45,0.0 +21406,77,13,36,0.0 +21406,67,14,36,0.0 +21406,53,32.8,40,0.0 +21406,44,19.45,10,0.0 +21406,12,38,16,0.0 +21406,56,38,45,0.0 +21406,29,123.79,27,0.0 +21406,54,7.45,35,0.0 +21407,40,18.4,31,0.0 +21407,51,53,20,0.0 +21407,43,46,24,0.0 +21407,38,263.5,9,0.0 +21407,54,7.45,45,0.0 +21407,16,17.45,45,0.0 +21407,37,26,20,0.0 +21407,10,31,45,0.0 +21407,76,18,30,0.0 +21407,7,30,29,0.0 +21407,65,21.05,29,0.0 +21407,68,12.5,8,0.0 +21407,26,31.23,40,0.0 +21407,6,25,32,0.0 +21407,36,19,23,0.0 +21407,12,38,22,0.0 +21407,11,21,50,0.0 +21407,73,15,11,0.0 +21407,62,49.3,8,0.0 +21407,70,15,16,0.0 +21407,21,10,28,0.0 +21407,8,40,31,0.0 +21407,71,21.5,22,0.0 +21407,9,97,29,0.0 +21407,48,12.75,34,0.0 +21407,31,12.5,45,0.0 +21407,56,38,10,0.0 +21407,18,62.5,34,0.0 +21407,55,24,44,0.0 +21407,29,123.79,8,0.0 +21407,45,9.5,35,0.0 +21407,60,34,43,0.0 +21407,14,23.25,31,0.0 +21407,13,6,26,0.0 +21407,63,43.9,23,0.0 +21407,42,14,50,0.0 +21407,64,33.25,36,0.0 +21407,34,14,17,0.0 +21407,74,10,47,0.0 +21407,41,9.65,42,0.0 +21407,22,21,39,0.0 +21407,27,43.9,44,0.0 +21407,5,21.35,20,0.0 +21407,1,18,17,0.0 +21407,50,16.25,12,0.0 +21407,39,18,28,0.0 +21407,17,39,19,0.0 +21407,53,32.8,16,0.0 +21407,46,12,36,0.0 +21407,58,13.25,14,0.0 +21407,49,20,4,0.0 +21407,67,14,11,0.0 +21407,15,15.5,12,0.0 +21407,28,45.6,8,0.0 +21407,30,25.89,4,0.0 +21407,25,14,41,0.0 +21407,59,55,35,0.0 +21407,52,7,43,0.0 +21407,57,19.5,50,0.0 +21407,2,19,50,0.0 +21407,77,13,28,0.0 +21407,35,18,44,0.0 +21407,4,22,38,0.0 +21407,33,2.5,48,0.0 +21407,61,28.5,32,0.0 +21407,32,32,5,0.0 +21407,66,17,10,0.0 +21407,24,4.5,37,0.0 +21408,51,53,49,0.0 +21408,10,31,28,0.0 +21408,73,15,45,0.0 +21408,20,81,38,0.0 +21408,2,19,32,0.0 +21408,54,7.45,2,0.0 +21408,12,38,37,0.0 +21408,61,28.5,33,0.0 +21408,8,40,2,0.0 +21408,24,4.5,42,0.0 +21408,45,9.5,17,0.0 +21408,13,6,50,0.0 +21408,16,17.45,36,0.0 +21408,3,10,25,0.0 +21408,40,18.4,10,0.0 +21408,56,38,25,0.0 +21408,57,19.5,5,0.0 +21408,32,32,42,0.0 +21408,49,20,38,0.0 +21408,34,14,23,0.0 +21408,42,14,34,0.0 +21408,63,43.9,10,0.0 +21408,41,9.65,39,0.0 +21408,60,34,9,0.0 +21408,46,12,33,0.0 +21408,11,21,25,0.0 +21408,23,9,46,0.0 +21408,58,13.25,2,0.0 +21408,5,21.35,33,0.0 +21408,62,49.3,20,0.0 +21408,25,14,4,0.0 +21408,1,18,31,0.0 +21408,38,263.5,14,0.0 +21408,4,22,13,0.0 +21408,30,25.89,1,0.0 +21408,76,18,27,0.0 +21408,36,19,38,0.0 +21408,18,62.5,40,0.0 +21408,74,10,49,0.0 +21408,71,21.5,42,0.0 +21408,22,21,23,0.0 +21408,15,15.5,17,0.0 +21408,72,34.8,7,0.0 +21408,17,39,30,0.0 +21408,69,36,26,0.0 +21408,37,26,22,0.0 +21408,59,55,19,0.0 +21408,35,18,27,0.0 +21408,47,9.5,13,0.0 +21408,33,2.5,24,0.0 +21408,48,12.75,22,0.0 +21408,31,12.5,39,0.0 +21408,39,18,44,0.0 +21408,44,19.45,8,0.0 +21408,27,43.9,46,0.0 +21408,50,16.25,7,0.0 +21408,43,46,15,0.0 +21408,52,7,7,0.0 +21408,65,21.05,26,0.0 +21408,6,25,4,0.0 +21408,66,17,36,0.0 +21408,7,30,27,0.0 +21408,67,14,45,0.0 +21408,28,45.6,13,0.0 +21408,21,10,10,0.0 +21408,70,15,26,0.0 +21408,19,9.2,22,0.0 +21408,77,13,7,0.0 +21408,26,31.23,1,0.0 +21408,75,7.75,9,0.0 +21408,55,24,39,0.0 +21408,14,23.25,15,0.0 +21408,53,32.8,17,0.0 +21408,68,12.5,12,0.0 +21408,9,97,33,0.0 +21408,29,123.79,25,0.0 +21409,69,36,18,0.0 +21409,26,31.23,30,0.0 +21409,73,15,20,0.0 +21409,29,123.79,10,0.0 +21409,38,263.5,48,0.0 +21409,46,12,44,0.0 +21409,15,15.5,31,0.0 +21409,8,40,30,0.0 +21409,3,10,38,0.0 +21409,58,13.25,49,0.0 +21409,34,14,22,0.0 +21409,9,97,5,0.0 +21409,4,22,13,0.0 +21409,13,6,9,0.0 +21409,51,53,42,0.0 +21409,47,9.5,27,0.0 +21409,11,21,23,0.0 +21409,14,23.25,4,0.0 +21409,6,25,15,0.0 +21409,76,18,16,0.0 +21409,30,25.89,39,0.0 +21409,74,10,33,0.0 +21409,65,21.05,32,0.0 +21409,71,21.5,12,0.0 +21409,10,31,46,0.0 +21409,31,12.5,41,0.0 +21409,27,43.9,45,0.0 +21409,64,33.25,37,0.0 +21409,49,20,28,0.0 +21409,55,24,20,0.0 +21409,16,17.45,17,0.0 +21409,1,18,2,0.0 +21409,67,14,47,0.0 +21409,48,12.75,14,0.0 +21409,21,10,7,0.0 +21409,50,16.25,22,0.0 +21409,43,46,30,0.0 +21409,25,14,35,0.0 +21409,19,9.2,42,0.0 +21409,44,19.45,18,0.0 +21409,35,18,10,0.0 +21409,75,7.75,12,0.0 +21409,53,32.8,28,0.0 +21409,63,43.9,16,0.0 +21409,7,30,27,0.0 +21409,66,17,20,0.0 +21409,57,19.5,34,0.0 +21409,36,19,30,0.0 +21409,12,38,3,0.0 +21409,40,18.4,32,0.0 +21409,56,38,14,0.0 +21409,28,45.6,3,0.0 +21409,23,9,49,0.0 +21409,42,14,47,0.0 +21409,60,34,2,0.0 +21409,41,9.65,43,0.0 +21409,68,12.5,26,0.0 +21409,32,32,44,0.0 +21409,45,9.5,2,0.0 +21409,62,49.3,40,0.0 +21409,24,4.5,44,0.0 +21409,37,26,31,0.0 +21409,17,39,41,0.0 +21409,59,55,3,0.0 +21409,61,28.5,36,0.0 +21409,33,2.5,34,0.0 +21409,2,19,6,0.0 +21409,52,7,22,0.0 +21410,1,18,24,0.0 +21410,51,53,21,0.0 +21410,67,14,2,0.0 +21410,17,39,31,0.0 +21410,25,14,16,0.0 +21410,77,13,47,0.0 +21410,52,7,32,0.0 +21410,24,4.5,44,0.0 +21410,4,22,4,0.0 +21410,18,62.5,23,0.0 +21410,63,43.9,48,0.0 +21410,43,46,50,0.0 +21410,10,31,44,0.0 +21410,56,38,3,0.0 +21410,50,16.25,17,0.0 +21410,72,34.8,46,0.0 +21410,26,31.23,12,0.0 +21410,28,45.6,32,0.0 +21410,37,26,46,0.0 +21410,8,40,9,0.0 +21410,55,24,15,0.0 +21410,30,25.89,38,0.0 +21410,76,18,14,0.0 +21410,40,18.4,28,0.0 +21410,73,15,39,0.0 +21410,23,9,17,0.0 +21410,65,21.05,39,0.0 +21410,60,34,50,0.0 +21410,32,32,26,0.0 +21410,54,7.45,45,0.0 +21410,15,15.5,44,0.0 +21410,70,15,34,0.0 +21410,47,9.5,15,0.0 +21410,6,25,44,0.0 +21410,35,18,25,0.0 +21410,33,2.5,6,0.0 +21410,39,18,10,0.0 +21410,41,9.65,28,0.0 +21410,31,12.5,41,0.0 +21410,46,12,5,0.0 +21410,44,19.45,42,0.0 +21410,36,19,17,0.0 +21410,58,13.25,11,0.0 +21410,19,9.2,40,0.0 +21410,48,12.75,46,0.0 +21410,3,10,46,0.0 +21410,64,33.25,8,0.0 +21410,75,7.75,17,0.0 +21410,69,36,20,0.0 +21410,57,19.5,16,0.0 +21410,9,97,8,0.0 +21410,62,49.3,4,0.0 +21410,27,43.9,30,0.0 +21410,66,17,2,0.0 +21410,16,17.45,42,0.0 +21410,5,21.35,41,0.0 +21410,14,23.25,44,0.0 +21410,42,14,30,0.0 +21410,74,10,38,0.0 +21410,38,263.5,23,0.0 +21410,22,21,23,0.0 +21411,70,15,15,0.0 +21411,61,28.5,17,0.0 +21411,44,19.45,10,0.0 +21411,71,21.5,18,0.0 +21411,66,17,27,0.0 +21411,56,38,48,0.0 +21411,51,53,48,0.0 +21411,49,20,34,0.0 +21411,45,9.5,44,0.0 +21411,42,14,9,0.0 +21411,37,26,40,0.0 +21411,74,10,2,0.0 +21411,38,263.5,5,0.0 +21411,7,30,12,0.0 +21411,14,23.25,4,0.0 +21411,40,18.4,33,0.0 +21411,64,33.25,30,0.0 +21411,62,49.3,23,0.0 +21411,46,12,20,0.0 +21411,18,62.5,34,0.0 +21411,28,45.6,18,0.0 +21411,60,34,1,0.0 +21411,19,9.2,1,0.0 +21411,43,46,5,0.0 +21411,1,18,16,0.0 +21411,57,19.5,47,0.0 +21411,6,25,2,0.0 +21411,55,24,45,0.0 +21411,31,12.5,25,0.0 +21411,76,18,27,0.0 +21411,73,15,48,0.0 +21411,24,4.5,28,0.0 +21411,5,21.35,42,0.0 +21411,69,36,15,0.0 +21411,16,17.45,28,0.0 +21411,8,40,25,0.0 +21411,25,14,17,0.0 +21411,4,22,9,0.0 +21411,39,18,26,0.0 +21411,29,123.79,41,0.0 +21411,3,10,8,0.0 +21411,52,7,2,0.0 +21411,68,12.5,35,0.0 +21411,41,9.65,23,0.0 +21411,34,14,10,0.0 +21411,2,19,46,0.0 +21411,59,55,7,0.0 +21411,30,25.89,46,0.0 +21411,48,12.75,21,0.0 +21411,72,34.8,47,0.0 +21411,20,81,13,0.0 +21411,63,43.9,38,0.0 +21411,26,31.23,46,0.0 +21411,50,16.25,46,0.0 +21411,75,7.75,26,0.0 +21411,47,9.5,13,0.0 +21411,9,97,10,0.0 +21411,77,13,33,0.0 +21411,17,39,39,0.0 +21411,15,15.5,7,0.0 +21411,27,43.9,12,0.0 +21411,54,7.45,1,0.0 +21411,12,38,24,0.0 +21411,11,21,33,0.0 +21411,65,21.05,1,0.0 +21411,10,31,41,0.0 +21411,22,21,1,0.0 +21411,23,9,47,0.0 +21411,13,6,45,0.0 +21411,67,14,18,0.0 +21411,33,2.5,39,0.0 +21411,53,32.8,40,0.0 +21412,61,28.5,28,0.0 +21412,49,20,21,0.0 +21412,28,45.6,21,0.0 +21412,53,32.8,30,0.0 +21412,68,12.5,29,0.0 +21412,40,18.4,28,0.0 +21412,59,55,35,0.0 +21412,65,21.05,7,0.0 +21412,56,38,35,0.0 +21413,53,32.8,15,0.0 +21413,5,21.35,3,0.0 +21413,63,43.9,36,0.0 +21413,57,19.5,32,0.0 +21413,25,14,35,0.0 +21413,27,43.9,17,0.0 +21413,61,28.5,27,0.0 +21413,59,55,17,0.0 +21413,49,20,24,0.0 +21413,76,18,39,0.0 +21413,44,19.45,25,0.0 +21413,8,40,20,0.0 +21413,28,45.6,1,0.0 +21413,64,33.25,33,0.0 +21413,73,15,9,0.0 +21413,30,25.89,7,0.0 +21413,46,12,14,0.0 +21413,24,4.5,29,0.0 +21413,42,14,5,0.0 +21413,45,9.5,11,0.0 +21413,69,36,6,0.0 +21413,29,123.79,45,0.0 +21413,62,49.3,18,0.0 +21413,33,2.5,37,0.0 +21413,65,21.05,36,0.0 +21413,72,34.8,30,0.0 +21413,68,12.5,10,0.0 +21413,70,15,15,0.0 +21413,4,22,37,0.0 +21413,21,10,17,0.0 +21413,11,21,24,0.0 +21413,71,21.5,45,0.0 +21413,7,30,40,0.0 +21413,67,14,9,0.0 +21413,58,13.25,4,0.0 +21413,50,16.25,32,0.0 +21413,48,12.75,8,0.0 +21413,15,15.5,29,0.0 +21413,60,34,33,0.0 +21413,31,12.5,39,0.0 +21413,23,9,15,0.0 +21413,41,9.65,23,0.0 +21413,43,46,31,0.0 +21413,6,25,27,0.0 +21413,56,38,42,0.0 +21414,60,34,4,0.0 +21414,14,23.25,28,0.0 +21414,48,12.75,23,0.0 +21414,63,43.9,35,0.0 +21414,13,6,40,0.0 +21414,35,18,31,0.0 +21414,67,14,45,0.0 +21414,44,19.45,20,0.0 +21414,46,12,7,0.0 +21414,23,9,31,0.0 +21414,40,18.4,7,0.0 +21414,68,12.5,36,0.0 +21414,43,46,6,0.0 +21414,56,38,38,0.0 +21414,75,7.75,38,0.0 +21414,74,10,35,0.0 +21414,6,25,33,0.0 +21414,19,9.2,5,0.0 +21414,59,55,3,0.0 +21414,47,9.5,2,0.0 +21415,47,9.5,31,0.0 +21415,2,19,38,0.0 +21415,76,18,34,0.0 +21415,15,15.5,17,0.0 +21415,30,25.89,19,0.0 +21415,63,43.9,20,0.0 +21415,54,7.45,11,0.0 +21415,75,7.75,43,0.0 +21415,36,19,29,0.0 +21415,24,4.5,14,0.0 +21415,26,31.23,15,0.0 +21415,11,21,49,0.0 +21415,57,19.5,34,0.0 +21415,59,55,44,0.0 +21415,40,18.4,8,0.0 +21415,12,38,21,0.0 +21415,45,9.5,26,0.0 +21415,73,15,26,0.0 +21415,62,49.3,32,0.0 +21415,61,28.5,8,0.0 +21415,48,12.75,12,0.0 +21415,10,31,24,0.0 +21415,70,15,24,0.0 +21415,35,18,29,0.0 +21415,8,40,36,0.0 +21415,7,30,24,0.0 +21415,28,45.6,28,0.0 +21415,1,18,25,0.0 +21415,17,39,43,0.0 +21415,9,97,1,0.0 +21415,6,25,37,0.0 +21415,23,9,40,0.0 +21415,32,32,23,0.0 +21415,20,81,24,0.0 +21415,19,9.2,11,0.0 +21415,50,16.25,35,0.0 +21415,51,53,34,0.0 +21415,39,18,38,0.0 +21415,64,33.25,32,0.0 +21415,56,38,48,0.0 +21415,13,6,6,0.0 +21415,72,34.8,42,0.0 +21415,38,263.5,11,0.0 +21415,69,36,3,0.0 +21415,33,2.5,40,0.0 +21415,44,19.45,5,0.0 +21415,66,17,49,0.0 +21415,71,21.5,31,0.0 +21415,25,14,45,0.0 +21415,18,62.5,26,0.0 +21415,55,24,25,0.0 +21415,22,21,45,0.0 +21415,16,17.45,47,0.0 +21415,58,13.25,37,0.0 +21416,47,9.5,7,0.0 +21416,30,25.89,20,0.0 +21416,76,18,50,0.0 +21416,27,43.9,31,0.0 +21416,66,17,39,0.0 +21416,12,38,10,0.0 +21416,58,13.25,46,0.0 +21416,37,26,32,0.0 +21416,67,14,44,0.0 +21416,19,9.2,33,0.0 +21416,40,18.4,33,0.0 +21416,38,263.5,34,0.0 +21416,49,20,5,0.0 +21416,65,21.05,12,0.0 +21416,51,53,29,0.0 +21416,8,40,40,0.0 +21416,5,21.35,31,0.0 +21416,2,19,14,0.0 +21416,42,14,22,0.0 +21416,48,12.75,39,0.0 +21416,63,43.9,27,0.0 +21416,9,97,46,0.0 +21416,43,46,11,0.0 +21416,6,25,40,0.0 +21416,44,19.45,46,0.0 +21416,35,18,32,0.0 +21416,68,12.5,13,0.0 +21416,34,14,36,0.0 +21416,1,18,18,0.0 +21416,69,36,50,0.0 +21416,55,24,18,0.0 +21416,18,62.5,12,0.0 +21416,60,34,26,0.0 +21416,64,33.25,22,0.0 +21416,4,22,18,0.0 +21416,10,31,25,0.0 +21416,77,13,37,0.0 +21416,50,16.25,28,0.0 +21416,59,55,13,0.0 +21416,41,9.65,23,0.0 +21416,61,28.5,23,0.0 +21416,28,45.6,41,0.0 +21416,17,39,20,0.0 +21416,45,9.5,44,0.0 +21416,54,7.45,47,0.0 +21416,7,30,42,0.0 +21416,57,19.5,20,0.0 +21416,20,81,37,0.0 +21416,32,32,24,0.0 +21416,74,10,47,0.0 +21416,15,15.5,35,0.0 +21416,36,19,29,0.0 +21416,56,38,25,0.0 +21416,39,18,36,0.0 +21416,14,23.25,5,0.0 +21416,62,49.3,5,0.0 +21416,23,9,30,0.0 +21416,22,21,18,0.0 +21416,16,17.45,15,0.0 +21416,53,32.8,5,0.0 +21417,73,15,11,0.0 +21417,55,24,35,0.0 +21417,48,12.75,3,0.0 +21417,4,22,44,0.0 +21417,57,19.5,42,0.0 +21417,8,40,37,0.0 +21417,68,12.5,23,0.0 +21417,62,49.3,15,0.0 +21417,11,21,12,0.0 +21417,30,25.89,24,0.0 +21417,7,30,8,0.0 +21417,16,17.45,23,0.0 +21417,35,18,13,0.0 +21417,70,15,39,0.0 +21417,51,53,49,0.0 +21417,29,123.79,2,0.0 +21417,19,9.2,12,0.0 +21417,53,32.8,50,0.0 +21417,72,34.8,38,0.0 +21417,22,21,2,0.0 +21417,32,32,19,0.0 +21417,24,4.5,24,0.0 +21417,74,10,40,0.0 +21417,58,13.25,24,0.0 +21417,52,7,29,0.0 +21418,51,53,6,0.0 +21418,37,26,30,0.0 +21418,2,19,4,0.0 +21418,76,18,5,0.0 +21418,56,38,46,0.0 +21418,11,21,14,0.0 +21418,4,22,21,0.0 +21418,39,18,35,0.0 +21418,50,16.25,46,0.0 +21418,6,25,18,0.0 +21418,53,32.8,33,0.0 +21418,14,23.25,30,0.0 +21418,40,18.4,29,0.0 +21418,29,123.79,22,0.0 +21418,27,43.9,26,0.0 +21418,1,18,9,0.0 +21418,42,14,23,0.0 +21418,49,20,14,0.0 +21418,57,19.5,11,0.0 +21418,67,14,35,0.0 +21418,41,9.65,41,0.0 +21418,68,12.5,43,0.0 +21418,58,13.25,26,0.0 +21418,31,12.5,2,0.0 +21418,16,17.45,37,0.0 +21418,59,55,19,0.0 +21418,33,2.5,39,0.0 +21418,35,18,11,0.0 +21418,74,10,38,0.0 +21418,63,43.9,35,0.0 +21418,71,21.5,30,0.0 +21418,73,15,25,0.0 +21418,34,14,23,0.0 +21418,61,28.5,47,0.0 +21418,62,49.3,24,0.0 +21418,26,31.23,28,0.0 +21418,3,10,2,0.0 +21418,38,263.5,14,0.0 +21418,77,13,17,0.0 +21418,24,4.5,45,0.0 +21418,9,97,50,0.0 +21418,75,7.75,4,0.0 +21418,22,21,18,0.0 +21418,55,24,29,0.0 +21418,28,45.6,28,0.0 +21418,72,34.8,3,0.0 +21418,47,9.5,11,0.0 +21418,48,12.75,32,0.0 +21418,65,21.05,33,0.0 +21418,25,14,17,0.0 +21418,17,39,46,0.0 +21418,30,25.89,15,0.0 +21418,13,6,24,0.0 +21418,52,7,36,0.0 +21418,60,34,45,0.0 +21418,44,19.45,42,0.0 +21418,20,81,46,0.0 +21418,36,19,20,0.0 +21418,32,32,7,0.0 +21418,66,17,27,0.0 +21418,19,9.2,5,0.0 +21418,18,62.5,2,0.0 +21418,54,7.45,33,0.0 +21418,5,21.35,37,0.0 +21418,69,36,39,0.0 +21418,64,33.25,40,0.0 +21418,70,15,24,0.0 +21418,45,9.5,42,0.0 +21418,21,10,5,0.0 +21418,23,9,23,0.0 +21418,7,30,36,0.0 +21418,10,31,46,0.0 +21418,8,40,44,0.0 +21418,43,46,30,0.0 +21418,46,12,19,0.0 +21418,15,15.5,6,0.0 +21419,20,81,37,0.0 +21419,49,20,2,0.0 +21419,63,43.9,36,0.0 +21419,51,53,10,0.0 +21419,69,36,49,0.0 +21419,19,9.2,36,0.0 +21419,59,55,28,0.0 +21419,5,21.35,19,0.0 +21419,29,123.79,49,0.0 +21419,35,18,33,0.0 +21419,33,2.5,21,0.0 +21419,27,43.9,6,0.0 +21419,56,38,5,0.0 +21419,48,12.75,43,0.0 +21419,47,9.5,33,0.0 +21419,71,21.5,14,0.0 +21419,28,45.6,21,0.0 +21419,24,4.5,42,0.0 +21419,58,13.25,2,0.0 +21419,30,25.89,20,0.0 +21419,38,263.5,10,0.0 +21419,64,33.25,50,0.0 +21419,18,62.5,31,0.0 +21419,6,25,16,0.0 +21419,74,10,30,0.0 +21419,41,9.65,15,0.0 +21419,31,12.5,9,0.0 +21419,10,31,15,0.0 +21419,55,24,39,0.0 +21419,17,39,9,0.0 +21419,60,34,23,0.0 +21419,22,21,34,0.0 +21419,44,19.45,12,0.0 +21419,11,21,16,0.0 +21419,4,22,27,0.0 +21419,50,16.25,2,0.0 +21419,76,18,47,0.0 +21419,54,7.45,31,0.0 +21419,2,19,28,0.0 +21419,1,18,31,0.0 +21419,67,14,6,0.0 +21419,34,14,32,0.0 +21419,15,15.5,32,0.0 +21419,3,10,12,0.0 +21419,42,14,13,0.0 +21419,9,97,26,0.0 +21419,53,32.8,15,0.0 +21419,52,7,26,0.0 +21419,8,40,14,0.0 +21419,73,15,15,0.0 +21420,33,2.5,10,0.0 +21420,56,38,24,0.0 +21420,19,9.2,50,0.0 +21420,73,15,40,0.0 +21420,38,263.5,43,0.0 +21420,14,23.25,5,0.0 +21420,5,21.35,32,0.0 +21420,4,22,42,0.0 +21420,72,34.8,47,0.0 +21420,9,97,23,0.0 +21420,31,12.5,15,0.0 +21420,15,15.5,6,0.0 +21420,29,123.79,11,0.0 +21420,28,45.6,15,0.0 +21420,11,21,15,0.0 +21420,77,13,8,0.0 +21420,6,25,11,0.0 +21420,44,19.45,28,0.0 +21420,57,19.5,38,0.0 +21420,66,17,16,0.0 +21420,16,17.45,26,0.0 +21420,63,43.9,48,0.0 +21420,54,7.45,7,0.0 +21420,55,24,31,0.0 +21420,42,14,2,0.0 +21420,52,7,44,0.0 +21420,70,15,47,0.0 +21420,30,25.89,23,0.0 +21420,61,28.5,8,0.0 +21420,39,18,15,0.0 +21420,62,49.3,12,0.0 +21420,43,46,5,0.0 +21420,46,12,22,0.0 +21420,21,10,18,0.0 +21420,59,55,42,0.0 +21420,1,18,32,0.0 +21420,13,6,16,0.0 +21420,17,39,38,0.0 +21420,45,9.5,27,0.0 +21420,23,9,46,0.0 +21420,50,16.25,44,0.0 +21420,71,21.5,21,0.0 +21420,37,26,16,0.0 +21420,26,31.23,7,0.0 +21420,10,31,6,0.0 +21420,69,36,13,0.0 +21420,64,33.25,4,0.0 +21420,18,62.5,4,0.0 +21420,47,9.5,48,0.0 +21420,36,19,22,0.0 +21420,34,14,15,0.0 +21420,8,40,30,0.0 +21420,48,12.75,6,0.0 +21420,22,21,5,0.0 +21420,41,9.65,13,0.0 +21420,65,21.05,26,0.0 +21420,24,4.5,37,0.0 +21420,32,32,28,0.0 +21420,58,13.25,47,0.0 +21420,40,18.4,25,0.0 +21420,3,10,34,0.0 +21420,7,30,3,0.0 +21420,76,18,39,0.0 +21420,35,18,8,0.0 +21420,51,53,45,0.0 +21420,20,81,17,0.0 +21420,74,10,26,0.0 +21420,27,43.9,28,0.0 +21420,68,12.5,40,0.0 +21420,67,14,39,0.0 +21420,2,19,19,0.0 +21420,49,20,1,0.0 +21420,25,14,43,0.0 +21421,12,38,32,0.0 +21421,3,10,24,0.0 +21421,33,2.5,33,0.0 +21421,45,9.5,47,0.0 +21421,69,36,19,0.0 +21422,37,26,18,0.0 +21422,28,45.6,3,0.0 +21422,75,7.75,25,0.0 +21422,9,97,23,0.0 +21422,56,38,32,0.0 +21422,73,15,17,0.0 +21422,19,9.2,15,0.0 +21422,7,30,17,0.0 +21422,31,12.5,8,0.0 +21422,47,9.5,23,0.0 +21422,52,7,11,0.0 +21422,6,25,40,0.0 +21423,33,2.5,48,0.0 +21423,20,81,36,0.0 +21423,14,23.25,48,0.0 +21423,60,34,29,0.0 +21423,31,12.5,12,0.0 +21423,15,15.5,11,0.0 +21423,9,97,42,0.0 +21423,67,14,41,0.0 +21423,77,13,8,0.0 +21423,41,9.65,38,0.0 +21423,45,9.5,45,0.0 +21423,24,4.5,37,0.0 +21423,53,32.8,44,0.0 +21423,51,53,17,0.0 +21423,73,15,32,0.0 +21423,12,38,2,0.0 +21423,63,43.9,29,0.0 +21423,55,24,29,0.0 +21423,36,19,9,0.0 +21423,26,31.23,49,0.0 +21423,43,46,35,0.0 +21423,66,17,11,0.0 +21423,13,6,36,0.0 +21423,16,17.45,38,0.0 +21423,68,12.5,9,0.0 +21423,4,22,3,0.0 +21423,18,62.5,33,0.0 +21423,7,30,22,0.0 +21423,46,12,36,0.0 +21423,47,9.5,35,0.0 +21423,74,10,1,0.0 +21423,28,45.6,36,0.0 +21423,64,33.25,5,0.0 +21423,61,28.5,29,0.0 +21423,2,19,3,0.0 +21423,23,9,40,0.0 +21423,19,9.2,8,0.0 +21423,30,25.89,17,0.0 +21423,10,31,50,0.0 +21424,11,21,39,0.0 +21424,72,34.8,49,0.0 +21424,68,12.5,33,0.0 +21424,16,17.45,48,0.0 +21424,20,81,15,0.0 +21424,55,24,8,0.0 +21424,22,21,2,0.0 +21424,15,15.5,10,0.0 +21424,50,16.25,26,0.0 +21424,59,55,16,0.0 +21425,12,38,8,0.0 +21425,35,18,10,0.0 +21425,72,34.8,45,0.0 +21425,46,12,14,0.0 +21425,25,14,28,0.0 +21425,14,23.25,45,0.0 +21425,39,18,47,0.0 +21425,60,34,5,0.0 +21425,33,2.5,6,0.0 +21425,10,31,39,0.0 +21425,65,21.05,9,0.0 +21425,61,28.5,7,0.0 +21425,4,22,29,0.0 +21425,2,19,19,0.0 +21425,64,33.25,4,0.0 +21425,15,15.5,47,0.0 +21425,28,45.6,36,0.0 +21425,36,19,50,0.0 +21425,30,25.89,25,0.0 +21425,22,21,45,0.0 +21425,75,7.75,26,0.0 +21425,13,6,44,0.0 +21425,47,9.5,1,0.0 +21425,21,10,14,0.0 +21425,3,10,48,0.0 +21425,63,43.9,15,0.0 +21425,6,25,1,0.0 +21425,38,263.5,29,0.0 +21425,24,4.5,31,0.0 +21425,76,18,48,0.0 +21425,17,39,36,0.0 +21425,51,53,21,0.0 +21425,16,17.45,46,0.0 +21425,29,123.79,33,0.0 +21425,56,38,6,0.0 +21425,48,12.75,28,0.0 +21425,31,12.5,38,0.0 +21425,27,43.9,39,0.0 +21425,1,18,14,0.0 +21425,42,14,10,0.0 +21425,59,55,1,0.0 +21425,77,13,10,0.0 +21425,20,81,31,0.0 +21425,5,21.35,36,0.0 +21426,62,49.3,25,0.0 +21426,37,26,3,0.0 +21426,63,43.9,6,0.0 +21426,66,17,22,0.0 +21426,42,14,33,0.0 +21426,20,81,16,0.0 +21426,46,12,38,0.0 +21426,65,21.05,15,0.0 +21426,73,15,12,0.0 +21426,31,12.5,41,0.0 +21426,61,28.5,20,0.0 +21426,8,40,47,0.0 +21426,14,23.25,32,0.0 +21426,27,43.9,39,0.0 +21426,36,19,4,0.0 +21426,3,10,33,0.0 +21426,52,7,10,0.0 +21426,6,25,33,0.0 +21426,12,38,37,0.0 +21426,72,34.8,50,0.0 +21426,76,18,11,0.0 +21426,21,10,29,0.0 +21426,41,9.65,4,0.0 +21426,13,6,18,0.0 +21426,60,34,37,0.0 +21426,24,4.5,16,0.0 +21426,70,15,23,0.0 +21426,26,31.23,18,0.0 +21426,58,13.25,41,0.0 +21426,68,12.5,37,0.0 +21426,64,33.25,1,0.0 +21426,53,32.8,38,0.0 +21426,77,13,45,0.0 +21426,57,19.5,3,0.0 +21426,67,14,10,0.0 +21426,50,16.25,40,0.0 +21426,1,18,9,0.0 +21426,7,30,24,0.0 +21426,47,9.5,30,0.0 +21426,33,2.5,43,0.0 +21426,54,7.45,11,0.0 +21426,28,45.6,22,0.0 +21426,10,31,7,0.0 +21426,38,263.5,22,0.0 +21426,22,21,30,0.0 +21427,50,16.25,10,0.0 +21427,38,263.5,13,0.0 +21427,8,40,18,0.0 +21427,24,4.5,49,0.0 +21427,46,12,39,0.0 +21427,4,22,8,0.0 +21427,13,6,8,0.0 +21427,71,21.5,18,0.0 +21427,63,43.9,42,0.0 +21427,45,9.5,21,0.0 +21427,15,15.5,3,0.0 +21427,49,20,31,0.0 +21427,12,38,25,0.0 +21427,26,31.23,36,0.0 +21427,2,19,30,0.0 +21427,43,46,6,0.0 +21427,25,14,32,0.0 +21427,62,49.3,32,0.0 +21427,31,12.5,3,0.0 +21427,17,39,10,0.0 +21427,5,21.35,6,0.0 +21427,11,21,42,0.0 +21427,77,13,8,0.0 +21427,69,36,30,0.0 +21427,61,28.5,34,0.0 +21427,18,62.5,24,0.0 +21427,55,24,37,0.0 +21427,58,13.25,45,0.0 +21427,21,10,17,0.0 +21427,20,81,38,0.0 +21427,32,32,1,0.0 +21427,22,21,46,0.0 +21427,40,18.4,22,0.0 +21427,9,97,17,0.0 +21427,76,18,35,0.0 +21427,74,10,15,0.0 +21427,72,34.8,50,0.0 +21428,65,21.05,9,0.0 +21428,24,4.5,2,0.0 +21428,55,24,49,0.0 +21428,74,10,32,0.0 +21428,43,46,3,0.0 +21428,49,20,38,0.0 +21428,57,19.5,18,0.0 +21428,58,13.25,28,0.0 +21428,28,45.6,29,0.0 +21428,47,9.5,15,0.0 +21428,7,30,13,0.0 +21428,4,22,28,0.0 +21428,63,43.9,41,0.0 +21428,68,12.5,4,0.0 +21428,75,7.75,19,0.0 +21428,71,21.5,50,0.0 +21428,29,123.79,20,0.0 +21428,62,49.3,23,0.0 +21428,52,7,20,0.0 +21428,1,18,48,0.0 +21428,45,9.5,43,0.0 +21428,42,14,7,0.0 +21428,16,17.45,25,0.0 +21428,61,28.5,29,0.0 +21428,70,15,9,0.0 +21428,40,18.4,1,0.0 +21428,64,33.25,15,0.0 +21428,35,18,28,0.0 +21428,66,17,5,0.0 +21428,67,14,3,0.0 +21428,23,9,41,0.0 +21428,48,12.75,45,0.0 +21428,31,12.5,10,0.0 +21428,25,14,43,0.0 +21428,5,21.35,31,0.0 +21428,18,62.5,27,0.0 +21428,69,36,48,0.0 +21428,22,21,29,0.0 +21428,6,25,32,0.0 +21428,8,40,39,0.0 +21428,37,26,1,0.0 +21428,11,21,17,0.0 +21428,33,2.5,32,0.0 +21428,51,53,50,0.0 +21428,20,81,24,0.0 +21428,54,7.45,36,0.0 +21428,12,38,39,0.0 +21428,26,31.23,13,0.0 +21428,46,12,40,0.0 +21428,15,15.5,11,0.0 +21428,14,23.25,14,0.0 +21428,30,25.89,24,0.0 +21428,38,263.5,22,0.0 +21428,72,34.8,9,0.0 +21428,39,18,13,0.0 +21428,73,15,26,0.0 +21428,27,43.9,21,0.0 +21428,3,10,50,0.0 +21428,32,32,31,0.0 +21428,17,39,49,0.0 +21428,10,31,13,0.0 +21428,77,13,23,0.0 +21428,56,38,47,0.0 +21428,50,16.25,45,0.0 +21428,9,97,46,0.0 +21428,36,19,48,0.0 +21428,53,32.8,1,0.0 +21428,21,10,22,0.0 +21428,41,9.65,38,0.0 +21428,59,55,4,0.0 +21428,34,14,13,0.0 +21429,48,12.75,49,0.0 +21429,73,15,20,0.0 +21429,41,9.65,26,0.0 +21429,8,40,16,0.0 +21429,75,7.75,6,0.0 +21429,72,34.8,25,0.0 +21429,15,15.5,6,0.0 +21429,3,10,12,0.0 +21429,68,12.5,41,0.0 +21429,76,18,11,0.0 +21429,27,43.9,20,0.0 +21429,17,39,17,0.0 +21429,29,123.79,48,0.0 +21429,11,21,30,0.0 +21429,16,17.45,31,0.0 +21429,1,18,16,0.0 +21429,39,18,15,0.0 +21429,6,25,26,0.0 +21429,38,263.5,19,0.0 +21429,43,46,20,0.0 +21429,45,9.5,12,0.0 +21429,24,4.5,2,0.0 +21429,58,13.25,36,0.0 +21429,36,19,24,0.0 +21429,31,12.5,27,0.0 +21429,50,16.25,10,0.0 +21429,13,6,26,0.0 +21429,57,19.5,21,0.0 +21429,10,31,9,0.0 +21429,37,26,7,0.0 +21429,59,55,20,0.0 +21429,46,12,50,0.0 +21429,26,31.23,14,0.0 +21429,61,28.5,40,0.0 +21429,40,18.4,42,0.0 +21429,42,14,9,0.0 +21429,21,10,14,0.0 +21429,70,15,41,0.0 +21429,30,25.89,11,0.0 +21429,32,32,41,0.0 +21429,9,97,49,0.0 +21429,56,38,3,0.0 +21429,44,19.45,42,0.0 +21429,7,30,39,0.0 +21429,20,81,39,0.0 +21429,19,9.2,27,0.0 +21429,69,36,27,0.0 +21429,74,10,30,0.0 +21429,18,62.5,18,0.0 +21429,2,19,28,0.0 +21429,12,38,2,0.0 +21429,55,24,17,0.0 +21429,28,45.6,32,0.0 +21429,63,43.9,37,0.0 +21429,47,9.5,24,0.0 +21429,22,21,13,0.0 +21429,66,17,31,0.0 +21429,52,7,12,0.0 +21429,54,7.45,41,0.0 +21429,33,2.5,46,0.0 +21429,4,22,7,0.0 +21429,23,9,49,0.0 +21429,77,13,35,0.0 +21429,14,23.25,49,0.0 +21429,67,14,32,0.0 +21429,53,32.8,20,0.0 +21430,52,7,42,0.0 +21430,61,28.5,22,0.0 +21430,50,16.25,28,0.0 +21430,27,43.9,35,0.0 +21430,71,21.5,12,0.0 +21430,8,40,40,0.0 +21430,40,18.4,45,0.0 +21430,28,45.6,33,0.0 +21430,57,19.5,7,0.0 +21430,12,38,17,0.0 +21430,72,34.8,13,0.0 +21430,25,14,39,0.0 +21430,39,18,23,0.0 +21430,56,38,48,0.0 +21430,32,32,22,0.0 +21430,5,21.35,13,0.0 +21430,18,62.5,12,0.0 +21430,31,12.5,2,0.0 +21430,17,39,11,0.0 +21430,60,34,21,0.0 +21430,30,25.89,28,0.0 +21430,7,30,49,0.0 +21430,48,12.75,32,0.0 +21430,23,9,38,0.0 +21430,44,19.45,21,0.0 +21430,55,24,8,0.0 +21430,53,32.8,24,0.0 +21430,24,4.5,1,0.0 +21430,73,15,18,0.0 +21430,26,31.23,9,0.0 +21430,4,22,3,0.0 +21430,65,21.05,4,0.0 +21430,42,14,42,0.0 +21430,33,2.5,24,0.0 +21430,36,19,37,0.0 +21430,45,9.5,33,0.0 +21430,54,7.45,31,0.0 +21430,75,7.75,6,0.0 +21430,9,97,23,0.0 +21430,19,9.2,7,0.0 +21430,70,15,33,0.0 +21430,10,31,38,0.0 +21430,77,13,45,0.0 +21430,64,33.25,30,0.0 +21430,11,21,35,0.0 +21430,51,53,48,0.0 +21430,46,12,14,0.0 +21430,67,14,38,0.0 +21430,21,10,50,0.0 +21430,16,17.45,35,0.0 +21430,20,81,3,0.0 +21430,62,49.3,27,0.0 +21430,74,10,1,0.0 +21430,1,18,33,0.0 +21430,14,23.25,12,0.0 +21431,6,25,19,0.0 +21431,41,9.65,42,0.0 +21431,56,38,44,0.0 +21431,16,17.45,2,0.0 +21431,74,10,35,0.0 +21431,10,31,11,0.0 +21432,16,17.45,21,0.0 +21432,67,14,27,0.0 +21432,39,18,36,0.0 +21432,31,12.5,30,0.0 +21432,36,19,32,0.0 +21432,2,19,35,0.0 +21432,7,30,7,0.0 +21432,9,97,19,0.0 +21432,54,7.45,31,0.0 +21432,55,24,25,0.0 +21432,62,49.3,1,0.0 +21432,70,15,40,0.0 +21432,20,81,29,0.0 +21432,33,2.5,36,0.0 +21432,6,25,34,0.0 +21432,4,22,10,0.0 +21432,50,16.25,6,0.0 +21432,30,25.89,41,0.0 +21432,77,13,39,0.0 +21433,50,16.25,20,0.0 +21433,45,9.5,8,0.0 +21433,36,19,35,0.0 +21433,76,18,22,0.0 +21433,52,7,18,0.0 +21433,72,34.8,5,0.0 +21433,35,18,18,0.0 +21433,34,14,7,0.0 +21433,27,43.9,4,0.0 +21433,7,30,24,0.0 +21433,4,22,1,0.0 +21433,19,9.2,49,0.0 +21433,70,15,48,0.0 +21433,17,39,25,0.0 +21433,58,13.25,6,0.0 +21433,8,40,4,0.0 +21433,54,7.45,23,0.0 +21433,73,15,22,0.0 +21433,44,19.45,40,0.0 +21433,33,2.5,23,0.0 +21433,55,24,22,0.0 +21433,23,9,48,0.0 +21433,21,10,13,0.0 +21433,18,62.5,24,0.0 +21433,25,14,9,0.0 +21433,5,21.35,21,0.0 +21433,53,32.8,11,0.0 +21433,37,26,50,0.0 +21433,11,21,48,0.0 +21434,68,12.5,4,0.0 +21434,5,21.35,49,0.0 +21434,50,16.25,1,0.0 +21434,13,6,30,0.0 +21434,70,15,38,0.0 +21434,14,23.25,29,0.0 +21434,61,28.5,30,0.0 +21434,34,14,22,0.0 +21434,2,19,13,0.0 +21434,56,38,20,0.0 +21434,63,43.9,43,0.0 +21434,8,40,4,0.0 +21434,33,2.5,26,0.0 +21434,25,14,11,0.0 +21434,17,39,12,0.0 +21434,35,18,15,0.0 +21434,28,45.6,17,0.0 +21434,19,9.2,21,0.0 +21434,18,62.5,21,0.0 +21434,60,34,40,0.0 +21434,7,30,29,0.0 +21434,67,14,40,0.0 +21434,66,17,25,0.0 +21434,43,46,46,0.0 +21434,76,18,36,0.0 +21434,38,263.5,35,0.0 +21434,36,19,22,0.0 +21434,71,21.5,1,0.0 +21434,52,7,21,0.0 +21434,73,15,5,0.0 +21434,48,12.75,13,0.0 +21434,54,7.45,27,0.0 +21434,40,18.4,1,0.0 +21434,3,10,1,0.0 +21434,55,24,36,0.0 +21434,47,9.5,36,0.0 +21434,15,15.5,46,0.0 +21434,11,21,44,0.0 +21434,21,10,50,0.0 +21434,23,9,3,0.0 +21434,62,49.3,34,0.0 +21434,41,9.65,20,0.0 +21434,16,17.45,15,0.0 +21434,53,32.8,32,0.0 +21435,28,45.6,18,0.0 +21435,46,12,20,0.0 +21435,56,38,44,0.0 +21435,51,53,48,0.0 +21435,76,18,21,0.0 +21435,61,28.5,36,0.0 +21435,4,22,49,0.0 +21435,66,17,3,0.0 +21435,14,23.25,47,0.0 +21435,10,31,28,0.0 +21435,6,25,31,0.0 +21435,64,33.25,44,0.0 +21435,21,10,35,0.0 +21436,50,16.25,18,0.0 +21436,32,32,2,0.0 +21436,23,9,21,0.0 +21436,41,9.65,20,0.0 +21436,51,53,37,0.0 +21436,13,6,43,0.0 +21436,47,9.5,48,0.0 +21436,10,31,6,0.0 +21436,34,14,41,0.0 +21436,54,7.45,1,0.0 +21436,66,17,13,0.0 +21436,73,15,7,0.0 +21436,36,19,15,0.0 +21436,16,17.45,22,0.0 +21436,53,32.8,9,0.0 +21436,63,43.9,39,0.0 +21436,26,31.23,15,0.0 +21436,68,12.5,10,0.0 +21436,4,22,49,0.0 +21436,64,33.25,9,0.0 +21436,18,62.5,7,0.0 +21436,75,7.75,30,0.0 +21436,46,12,42,0.0 +21436,35,18,12,0.0 +21436,21,10,32,0.0 +21436,12,38,48,0.0 +21436,43,46,33,0.0 +21436,67,14,12,0.0 +21436,31,12.5,8,0.0 +21436,71,21.5,50,0.0 +21436,38,263.5,40,0.0 +21436,77,13,5,0.0 +21436,74,10,20,0.0 +21436,30,25.89,30,0.0 +21436,9,97,50,0.0 +21436,55,24,37,0.0 +21436,57,19.5,46,0.0 +21436,6,25,8,0.0 +21436,37,26,36,0.0 +21436,58,13.25,2,0.0 +21436,69,36,3,0.0 +21436,49,20,23,0.0 +21436,62,49.3,48,0.0 +21437,48,12.75,29,0.0 +21437,27,43.9,34,0.0 +21437,35,18,5,0.0 +21437,36,19,45,0.0 +21437,15,15.5,40,0.0 +21437,50,16.25,41,0.0 +21437,54,7.45,50,0.0 +21437,26,31.23,42,0.0 +21437,72,34.8,18,0.0 +21437,53,32.8,7,0.0 +21437,77,13,14,0.0 +21437,69,36,12,0.0 +21437,32,32,33,0.0 +21437,57,19.5,7,0.0 +21437,62,49.3,13,0.0 +21437,74,10,9,0.0 +21437,37,26,22,0.0 +21437,47,9.5,26,0.0 +21437,10,31,17,0.0 +21437,29,123.79,50,0.0 +21437,58,13.25,7,0.0 +21437,2,19,43,0.0 +21437,42,14,41,0.0 +21437,33,2.5,37,0.0 +21437,21,10,47,0.0 +21437,22,21,17,0.0 +21437,6,25,46,0.0 +21437,41,9.65,3,0.0 +21437,14,23.25,14,0.0 +21437,64,33.25,36,0.0 +21437,51,53,39,0.0 +21437,7,30,14,0.0 +21437,67,14,12,0.0 +21437,38,263.5,17,0.0 +21437,1,18,16,0.0 +21437,16,17.45,47,0.0 +21437,31,12.5,38,0.0 +21437,68,12.5,35,0.0 +21437,17,39,49,0.0 +21437,59,55,39,0.0 +21437,18,62.5,28,0.0 +21437,5,21.35,35,0.0 +21437,12,38,17,0.0 +21437,24,4.5,11,0.0 +21437,65,21.05,40,0.0 +21437,56,38,26,0.0 +21437,70,15,2,0.0 +21437,75,7.75,35,0.0 +21437,60,34,22,0.0 +21437,25,14,31,0.0 +21437,9,97,50,0.0 +21437,52,7,8,0.0 +21437,43,46,45,0.0 +21437,11,21,9,0.0 +21437,55,24,6,0.0 +21437,76,18,50,0.0 +21437,61,28.5,48,0.0 +21437,23,9,15,0.0 +21437,40,18.4,19,0.0 +21437,39,18,50,0.0 +21437,73,15,38,0.0 +21437,63,43.9,44,0.0 +21437,66,17,47,0.0 +21437,71,21.5,50,0.0 +21437,4,22,11,0.0 +21437,19,9.2,19,0.0 +21437,3,10,13,0.0 +21438,11,21,31,0.0 +21438,12,38,11,0.0 +21438,6,25,28,0.0 +21438,33,2.5,19,0.0 +21438,75,7.75,12,0.0 +21438,3,10,28,0.0 +21438,41,9.65,40,0.0 +21438,50,16.25,20,0.0 +21438,24,4.5,43,0.0 +21438,68,12.5,27,0.0 +21438,66,17,16,0.0 +21438,32,32,12,0.0 +21438,7,30,21,0.0 +21438,60,34,21,0.0 +21438,42,14,12,0.0 +21438,9,97,6,0.0 +21438,64,33.25,36,0.0 +21438,27,43.9,32,0.0 +21438,71,21.5,4,0.0 +21438,40,18.4,48,0.0 +21438,52,7,40,0.0 +21438,18,62.5,43,0.0 +21438,65,21.05,13,0.0 +21438,15,15.5,48,0.0 +21438,37,26,27,0.0 +21438,67,14,44,0.0 +21438,23,9,5,0.0 +21438,54,7.45,46,0.0 +21438,70,15,17,0.0 +21438,8,40,6,0.0 +21438,19,9.2,13,0.0 +21438,36,19,22,0.0 +21438,2,19,9,0.0 +21438,17,39,13,0.0 +21438,34,14,42,0.0 +21438,39,18,37,0.0 +21438,72,34.8,4,0.0 +21438,55,24,2,0.0 +21438,25,14,12,0.0 +21438,43,46,12,0.0 +21438,77,13,12,0.0 +21438,53,32.8,34,0.0 +21438,14,23.25,16,0.0 +21438,47,9.5,18,0.0 +21438,26,31.23,15,0.0 +21438,1,18,4,0.0 +21438,56,38,43,0.0 +21438,74,10,13,0.0 +21438,44,19.45,31,0.0 +21438,38,263.5,18,0.0 +21438,51,53,9,0.0 +21438,29,123.79,4,0.0 +21438,20,81,40,0.0 +21438,13,6,38,0.0 +21438,21,10,34,0.0 +21438,22,21,47,0.0 +21438,30,25.89,7,0.0 +21438,31,12.5,36,0.0 +21438,63,43.9,37,0.0 +21438,4,22,11,0.0 +21438,46,12,20,0.0 +21438,35,18,6,0.0 +21438,62,49.3,21,0.0 +21438,69,36,22,0.0 +21439,6,25,11,0.0 +21439,27,43.9,46,0.0 +21439,44,19.45,3,0.0 +21439,8,40,8,0.0 +21439,74,10,9,0.0 +21439,46,12,10,0.0 +21439,4,22,17,0.0 +21439,31,12.5,33,0.0 +21439,13,6,43,0.0 +21439,53,32.8,4,0.0 +21439,29,123.79,33,0.0 +21439,38,263.5,38,0.0 +21439,37,26,22,0.0 +21439,17,39,12,0.0 +21439,66,17,19,0.0 +21439,1,18,44,0.0 +21439,23,9,18,0.0 +21439,55,24,49,0.0 +21439,70,15,6,0.0 +21439,35,18,40,0.0 +21439,5,21.35,29,0.0 +21439,49,20,46,0.0 +21439,25,14,33,0.0 +21439,75,7.75,48,0.0 +21439,16,17.45,41,0.0 +21439,19,9.2,27,0.0 +21439,51,53,15,0.0 +21439,40,18.4,26,0.0 +21439,73,15,30,0.0 +21439,63,43.9,20,0.0 +21439,61,28.5,7,0.0 +21439,45,9.5,40,0.0 +21440,72,34.8,49,0.0 +21440,69,36,17,0.0 +21440,24,4.5,41,0.0 +21440,65,21.05,38,0.0 +21440,36,19,2,0.0 +21440,10,31,6,0.0 +21440,6,25,2,0.0 +21440,44,19.45,49,0.0 +21440,47,9.5,49,0.0 +21440,50,16.25,34,0.0 +21440,2,19,1,0.0 +21440,13,6,25,0.0 +21440,74,10,34,0.0 +21440,53,32.8,44,0.0 +21440,43,46,47,0.0 +21440,56,38,16,0.0 +21440,58,13.25,36,0.0 +21440,66,17,9,0.0 +21440,67,14,27,0.0 +21440,21,10,4,0.0 +21440,40,18.4,45,0.0 +21440,75,7.75,21,0.0 +21440,64,33.25,40,0.0 +21440,17,39,27,0.0 +21440,27,43.9,43,0.0 +21440,60,34,21,0.0 +21440,34,14,37,0.0 +21440,12,38,6,0.0 +21440,37,26,27,0.0 +21440,76,18,39,0.0 +21440,4,22,40,0.0 +21440,22,21,3,0.0 +21440,71,21.5,4,0.0 +21440,9,97,6,0.0 +21440,35,18,44,0.0 +21440,15,15.5,22,0.0 +21440,54,7.45,9,0.0 +21440,55,24,41,0.0 +21440,31,12.5,17,0.0 +21440,16,17.45,9,0.0 +21440,25,14,21,0.0 +21440,45,9.5,10,0.0 +21440,61,28.5,37,0.0 +21440,49,20,24,0.0 +21440,51,53,50,0.0 +21440,41,9.65,35,0.0 +21440,52,7,12,0.0 +21440,14,23.25,38,0.0 +21440,32,32,48,0.0 +21440,11,21,30,0.0 +21440,59,55,22,0.0 +21440,29,123.79,48,0.0 +21440,62,49.3,2,0.0 +21440,57,19.5,15,0.0 +21440,39,18,15,0.0 +21440,30,25.89,18,0.0 +21440,33,2.5,16,0.0 +21440,73,15,8,0.0 +21440,8,40,23,0.0 +21440,19,9.2,29,0.0 +21440,63,43.9,5,0.0 +21440,3,10,25,0.0 +21440,68,12.5,26,0.0 +21440,1,18,12,0.0 +21440,48,12.75,16,0.0 +21440,26,31.23,18,0.0 +21440,46,12,12,0.0 +21441,67,14,35,0.0 +21441,51,53,41,0.0 +21441,30,25.89,2,0.0 +21441,55,24,50,0.0 +21441,22,21,3,0.0 +21441,9,97,37,0.0 +21441,31,12.5,30,0.0 +21441,2,19,50,0.0 +21441,44,19.45,4,0.0 +21441,48,12.75,14,0.0 +21441,12,38,32,0.0 +21441,49,20,19,0.0 +21441,73,15,30,0.0 +21442,20,81,21,0.0 +21442,33,2.5,7,0.0 +21442,52,7,4,0.0 +21442,27,43.9,47,0.0 +21442,19,9.2,24,0.0 +21442,31,12.5,37,0.0 +21442,45,9.5,17,0.0 +21442,69,36,45,0.0 +21442,32,32,1,0.0 +21442,67,14,46,0.0 +21442,75,7.75,8,0.0 +21442,61,28.5,44,0.0 +21442,30,25.89,25,0.0 +21442,77,13,30,0.0 +21442,1,18,20,0.0 +21442,43,46,19,0.0 +21442,3,10,46,0.0 +21442,10,31,47,0.0 +21442,46,12,48,0.0 +21442,47,9.5,28,0.0 +21442,22,21,50,0.0 +21442,11,21,44,0.0 +21442,73,15,16,0.0 +21442,16,17.45,18,0.0 +21442,76,18,47,0.0 +21442,37,26,40,0.0 +21442,29,123.79,9,0.0 +21442,60,34,44,0.0 +21442,2,19,50,0.0 +21442,58,13.25,12,0.0 +21442,57,19.5,25,0.0 +21442,34,14,17,0.0 +21442,49,20,50,0.0 +21442,38,263.5,32,0.0 +21442,63,43.9,34,0.0 +21442,65,21.05,13,0.0 +21442,48,12.75,2,0.0 +21442,13,6,46,0.0 +21442,40,18.4,1,0.0 +21442,54,7.45,47,0.0 +21442,23,9,28,0.0 +21442,9,97,8,0.0 +21442,66,17,26,0.0 +21442,26,31.23,7,0.0 +21442,64,33.25,25,0.0 +21442,5,21.35,11,0.0 +21442,62,49.3,13,0.0 +21442,56,38,19,0.0 +21442,74,10,12,0.0 +21442,4,22,16,0.0 +21442,17,39,50,0.0 +21442,15,15.5,35,0.0 +21442,72,34.8,24,0.0 +21442,28,45.6,11,0.0 +21442,71,21.5,5,0.0 +21442,68,12.5,34,0.0 +21442,35,18,40,0.0 +21442,51,53,44,0.0 +21442,24,4.5,47,0.0 +21442,59,55,30,0.0 +21442,25,14,40,0.0 +21442,53,32.8,38,0.0 +21442,39,18,10,0.0 +21442,55,24,36,0.0 +21442,21,10,10,0.0 +21442,70,15,22,0.0 +21442,8,40,20,0.0 +21442,18,62.5,37,0.0 +21442,44,19.45,8,0.0 +21442,50,16.25,36,0.0 +21442,14,23.25,13,0.0 +21442,42,14,12,0.0 +21442,6,25,31,0.0 +21442,7,30,35,0.0 +21442,12,38,46,0.0 +21443,52,7,34,0.0 +21443,67,14,43,0.0 +21443,46,12,1,0.0 +21443,28,45.6,9,0.0 +21443,12,38,10,0.0 +21443,45,9.5,40,0.0 +21443,6,25,34,0.0 +21443,68,12.5,34,0.0 +21443,60,34,24,0.0 +21443,41,9.65,29,0.0 +21443,57,19.5,4,0.0 +21443,32,32,3,0.0 +21443,14,23.25,33,0.0 +21443,55,24,5,0.0 +21443,72,34.8,21,0.0 +21443,19,9.2,7,0.0 +21443,34,14,44,0.0 +21443,5,21.35,50,0.0 +21443,9,97,7,0.0 +21443,1,18,30,0.0 +21443,23,9,18,0.0 +21443,7,30,25,0.0 +21443,58,13.25,26,0.0 +21443,30,25.89,7,0.0 +21443,70,15,2,0.0 +21443,43,46,34,0.0 +21443,71,21.5,20,0.0 +21443,26,31.23,44,0.0 +21443,47,9.5,10,0.0 +21443,29,123.79,31,0.0 +21443,48,12.75,29,0.0 +21443,74,10,36,0.0 +21443,11,21,45,0.0 +21443,22,21,43,0.0 +21443,20,81,14,0.0 +21443,66,17,11,0.0 +21443,37,26,10,0.0 +21443,56,38,18,0.0 +21443,25,14,32,0.0 +21443,10,31,40,0.0 +21443,31,12.5,29,0.0 +21443,54,7.45,4,0.0 +21443,36,19,24,0.0 +21443,8,40,29,0.0 +21443,53,32.8,42,0.0 +21443,2,19,42,0.0 +21443,64,33.25,34,0.0 +21443,39,18,40,0.0 +21443,33,2.5,4,0.0 +21443,73,15,12,0.0 +21443,38,263.5,35,0.0 +21443,44,19.45,46,0.0 +21443,50,16.25,25,0.0 +21443,65,21.05,32,0.0 +21443,13,6,24,0.0 +21443,15,15.5,48,0.0 +21443,59,55,29,0.0 +21443,77,13,49,0.0 +21443,18,62.5,1,0.0 +21443,63,43.9,3,0.0 +21443,17,39,10,0.0 +21443,3,10,35,0.0 +21443,27,43.9,1,0.0 +21443,35,18,45,0.0 +21443,40,18.4,1,0.0 +21443,76,18,13,0.0 +21443,75,7.75,43,0.0 +21443,4,22,22,0.0 +21444,17,39,1,0.0 +21444,9,97,34,0.0 +21444,16,17.45,45,0.0 +21444,12,38,34,0.0 +21444,73,15,49,0.0 +21444,2,19,36,0.0 +21444,53,32.8,47,0.0 +21444,35,18,4,0.0 +21444,8,40,5,0.0 +21444,11,21,48,0.0 +21444,62,49.3,43,0.0 +21444,75,7.75,39,0.0 +21444,60,34,48,0.0 +21444,7,30,11,0.0 +21444,58,13.25,20,0.0 +21444,68,12.5,24,0.0 +21444,23,9,37,0.0 +21444,24,4.5,32,0.0 +21444,45,9.5,30,0.0 +21444,55,24,34,0.0 +21444,56,38,46,0.0 +21444,3,10,37,0.0 +21444,51,53,14,0.0 +21444,70,15,4,0.0 +21444,29,123.79,25,0.0 +21444,6,25,1,0.0 +21444,40,18.4,41,0.0 +21444,5,21.35,35,0.0 +21444,4,22,36,0.0 +21444,57,19.5,49,0.0 +21444,64,33.25,21,0.0 +21444,71,21.5,2,0.0 +21444,39,18,28,0.0 +21444,72,34.8,38,0.0 +21444,76,18,34,0.0 +21444,10,31,2,0.0 +21444,59,55,23,0.0 +21444,63,43.9,18,0.0 +21444,34,14,41,0.0 +21444,14,23.25,21,0.0 +21444,43,46,10,0.0 +21444,42,14,41,0.0 +21444,38,263.5,30,0.0 +21444,66,17,32,0.0 +21444,30,25.89,10,0.0 +21444,46,12,5,0.0 +21444,19,9.2,34,0.0 +21444,25,14,6,0.0 +21444,67,14,47,0.0 +21444,28,45.6,31,0.0 +21444,44,19.45,27,0.0 +21444,41,9.65,19,0.0 +21444,26,31.23,1,0.0 +21444,65,21.05,47,0.0 +21444,48,12.75,31,0.0 +21444,33,2.5,17,0.0 +21444,31,12.5,26,0.0 +21444,77,13,8,0.0 +21444,22,21,14,0.0 +21444,13,6,39,0.0 +21444,27,43.9,22,0.0 +21444,52,7,44,0.0 +21444,1,18,18,0.0 +21444,49,20,29,0.0 +21444,32,32,26,0.0 +21444,18,62.5,22,0.0 +21444,15,15.5,17,0.0 +21444,36,19,17,0.0 +21445,34,14,38,0.0 +21445,21,10,16,0.0 +21445,65,21.05,45,0.0 +21445,22,21,38,0.0 +21445,57,19.5,17,0.0 +21445,47,9.5,12,0.0 +21445,67,14,34,0.0 +21445,33,2.5,24,0.0 +21445,32,32,34,0.0 +21445,43,46,36,0.0 +21445,9,97,5,0.0 +21445,62,49.3,45,0.0 +21445,13,6,23,0.0 +21445,37,26,11,0.0 +21445,3,10,47,0.0 +21445,28,45.6,25,0.0 +21445,8,40,28,0.0 +21445,54,7.45,34,0.0 +21445,66,17,17,0.0 +21445,75,7.75,32,0.0 +21445,52,7,27,0.0 +21445,18,62.5,23,0.0 +21445,35,18,24,0.0 +21445,44,19.45,10,0.0 +21445,16,17.45,21,0.0 +21445,61,28.5,50,0.0 +21445,2,19,44,0.0 +21445,19,9.2,48,0.0 +21445,36,19,26,0.0 +21445,15,15.5,48,0.0 +21445,31,12.5,49,0.0 +21445,39,18,13,0.0 +21445,14,23.25,13,0.0 +21445,41,9.65,46,0.0 +21445,11,21,30,0.0 +21445,25,14,30,0.0 +21445,77,13,45,0.0 +21445,59,55,26,0.0 +21445,71,21.5,49,0.0 +21445,38,263.5,40,0.0 +21445,30,25.89,26,0.0 +21445,24,4.5,30,0.0 +21445,23,9,31,0.0 +21445,53,32.8,18,0.0 +21445,73,15,21,0.0 +21445,46,12,18,0.0 +21445,42,14,43,0.0 +21445,48,12.75,33,0.0 +21445,4,22,32,0.0 +21445,64,33.25,4,0.0 +21445,7,30,39,0.0 +21445,1,18,9,0.0 +21445,63,43.9,47,0.0 +21445,51,53,4,0.0 +21445,26,31.23,38,0.0 +21445,6,25,19,0.0 +21446,20,81,34,0.0 +21446,36,19,40,0.0 +21446,74,10,44,0.0 +21446,65,21.05,47,0.0 +21446,17,39,47,0.0 +21446,34,14,15,0.0 +21446,18,62.5,41,0.0 +21446,4,22,33,0.0 +21446,2,19,5,0.0 +21446,7,30,49,0.0 +21446,61,28.5,34,0.0 +21446,76,18,35,0.0 +21446,13,6,4,0.0 +21446,6,25,34,0.0 +21446,25,14,16,0.0 +21446,72,34.8,43,0.0 +21446,73,15,23,0.0 +21446,63,43.9,37,0.0 +21446,26,31.23,34,0.0 +21446,44,19.45,1,0.0 +21446,71,21.5,25,0.0 +21446,1,18,35,0.0 +21446,43,46,6,0.0 +21446,29,123.79,35,0.0 +21446,58,13.25,18,0.0 +21446,59,55,35,0.0 +21446,64,33.25,11,0.0 +21446,9,97,35,0.0 +21446,49,20,37,0.0 +21446,50,16.25,46,0.0 +21446,67,14,1,0.0 +21446,66,17,31,0.0 +21446,47,9.5,37,0.0 +21446,48,12.75,13,0.0 +21446,19,9.2,35,0.0 +21446,52,7,38,0.0 +21446,24,4.5,10,0.0 +21446,8,40,2,0.0 +21446,57,19.5,30,0.0 +21447,76,18,40,0.0 +21447,49,20,2,0.0 +21447,66,17,25,0.0 +21447,34,14,11,0.0 +21447,42,14,34,0.0 +21447,67,14,46,0.0 +21447,46,12,44,0.0 +21447,17,39,43,0.0 +21447,52,7,27,0.0 +21447,59,55,28,0.0 +21448,69,36,41,0.0 +21448,33,2.5,9,0.0 +21448,15,15.5,6,0.0 +21448,57,19.5,42,0.0 +21448,1,18,14,0.0 +21448,45,9.5,14,0.0 +21448,64,33.25,48,0.0 +21448,26,31.23,48,0.0 +21448,50,16.25,40,0.0 +21448,54,7.45,13,0.0 +21448,31,12.5,46,0.0 +21448,39,18,36,0.0 +21448,27,43.9,37,0.0 +21448,18,62.5,45,0.0 +21448,22,21,23,0.0 +21448,40,18.4,8,0.0 +21448,37,26,12,0.0 +21448,12,38,3,0.0 +21448,68,12.5,32,0.0 +21448,10,31,26,0.0 +21448,44,19.45,20,0.0 +21448,51,53,25,0.0 +21448,61,28.5,10,0.0 +21448,29,123.79,44,0.0 +21448,21,10,30,0.0 +21448,34,14,32,0.0 +21448,71,21.5,4,0.0 +21448,5,21.35,15,0.0 +21448,63,43.9,25,0.0 +21448,67,14,31,0.0 +21448,56,38,6,0.0 +21448,48,12.75,42,0.0 +21448,53,32.8,5,0.0 +21448,13,6,13,0.0 +21448,76,18,43,0.0 +21448,4,22,8,0.0 +21448,42,14,21,0.0 +21448,72,34.8,14,0.0 +21448,19,9.2,23,0.0 +21448,62,49.3,41,0.0 +21448,24,4.5,50,0.0 +21448,30,25.89,23,0.0 +21448,14,23.25,25,0.0 +21448,47,9.5,3,0.0 +21448,66,17,39,0.0 +21448,41,9.65,26,0.0 +21448,52,7,18,0.0 +21448,16,17.45,17,0.0 +21448,59,55,2,0.0 +21448,23,9,4,0.0 +21448,46,12,40,0.0 +21448,7,30,6,0.0 +21448,49,20,28,0.0 +21448,25,14,36,0.0 +21448,38,263.5,2,0.0 +21448,74,10,30,0.0 +21448,77,13,22,0.0 +21448,32,32,3,0.0 +21448,55,24,10,0.0 +21448,60,34,42,0.0 +21448,6,25,41,0.0 +21448,20,81,45,0.0 +21448,9,97,18,0.0 +21448,43,46,44,0.0 +21448,3,10,36,0.0 +21448,28,45.6,43,0.0 +21448,35,18,16,0.0 +21448,11,21,18,0.0 +21449,77,13,40,0.0 +21449,15,15.5,7,0.0 +21449,75,7.75,11,0.0 +21449,70,15,47,0.0 +21449,1,18,44,0.0 +21449,51,53,48,0.0 +21449,11,21,11,0.0 +21449,57,19.5,8,0.0 +21449,17,39,33,0.0 +21449,36,19,17,0.0 +21449,14,23.25,14,0.0 +21449,63,43.9,36,0.0 +21449,48,12.75,20,0.0 +21449,34,14,11,0.0 +21449,46,12,42,0.0 +21449,65,21.05,25,0.0 +21449,12,38,27,0.0 +21449,25,14,45,0.0 +21449,30,25.89,21,0.0 +21450,57,19.5,46,0.0 +21450,64,33.25,12,0.0 +21450,26,31.23,36,0.0 +21450,9,97,26,0.0 +21450,3,10,14,0.0 +21450,61,28.5,34,0.0 +21450,43,46,33,0.0 +21450,42,14,9,0.0 +21450,62,49.3,6,0.0 +21450,16,17.45,42,0.0 +21450,38,263.5,37,0.0 +21450,63,43.9,22,0.0 +21450,24,4.5,12,0.0 +21450,74,10,39,0.0 +21450,56,38,19,0.0 +21450,73,15,40,0.0 +21450,66,17,19,0.0 +21450,60,34,40,0.0 +21450,2,19,42,0.0 +21450,59,55,3,0.0 +21450,68,12.5,29,0.0 +21450,52,7,34,0.0 +21450,39,18,34,0.0 +21450,75,7.75,38,0.0 +21450,55,24,2,0.0 +21450,35,18,41,0.0 +21450,53,32.8,9,0.0 +21450,71,21.5,43,0.0 +21450,58,13.25,16,0.0 +21450,6,25,31,0.0 +21450,51,53,9,0.0 +21450,8,40,28,0.0 +21450,46,12,32,0.0 +21450,17,39,1,0.0 +21450,77,13,7,0.0 +21450,37,26,13,0.0 +21450,1,18,28,0.0 +21450,20,81,46,0.0 +21450,23,9,38,0.0 +21450,65,21.05,37,0.0 +21450,29,123.79,2,0.0 +21450,30,25.89,37,0.0 +21450,13,6,39,0.0 +21450,11,21,29,0.0 +21450,7,30,4,0.0 +21450,67,14,50,0.0 +21450,18,62.5,22,0.0 +21450,70,15,44,0.0 +21450,45,9.5,34,0.0 +21450,76,18,39,0.0 +21450,48,12.75,37,0.0 +21450,36,19,48,0.0 +21450,32,32,1,0.0 +21450,34,14,43,0.0 +21450,28,45.6,29,0.0 +21450,69,36,5,0.0 +21450,25,14,13,0.0 +21450,19,9.2,47,0.0 +21450,72,34.8,40,0.0 +21450,49,20,25,0.0 +21450,21,10,49,0.0 +21451,69,36,4,0.0 +21451,60,34,24,0.0 +21451,27,43.9,4,0.0 +21451,14,23.25,21,0.0 +21451,18,62.5,27,0.0 +21451,61,28.5,19,0.0 +21451,42,14,4,0.0 +21451,40,18.4,43,0.0 +21451,25,14,19,0.0 +21451,46,12,44,0.0 +21451,64,33.25,13,0.0 +21451,28,45.6,26,0.0 +21451,55,24,40,0.0 +21451,13,6,25,0.0 +21451,34,14,46,0.0 +21451,26,31.23,34,0.0 +21451,52,7,28,0.0 +21452,15,15.5,46,0.0 +21452,57,19.5,48,0.0 +21452,64,33.25,50,0.0 +21452,18,62.5,45,0.0 +21452,27,43.9,24,0.0 +21452,32,32,13,0.0 +21452,53,32.8,35,0.0 +21452,36,19,39,0.0 +21452,22,21,44,0.0 +21452,73,15,29,0.0 +21452,70,15,30,0.0 +21452,2,19,8,0.0 +21452,52,7,41,0.0 +21452,46,12,2,0.0 +21452,17,39,5,0.0 +21452,69,36,30,0.0 +21452,41,9.65,20,0.0 +21452,75,7.75,27,0.0 +21452,34,14,13,0.0 +21452,13,6,33,0.0 +21452,35,18,29,0.0 +21452,5,21.35,24,0.0 +21452,67,14,24,0.0 +21452,26,31.23,11,0.0 +21452,11,21,31,0.0 +21452,45,9.5,41,0.0 +21452,37,26,43,0.0 +21452,47,9.5,45,0.0 +21452,62,49.3,21,0.0 +21452,77,13,23,0.0 +21452,23,9,23,0.0 +21452,21,10,8,0.0 +21452,33,2.5,3,0.0 +21452,6,25,19,0.0 +21452,60,34,15,0.0 +21452,4,22,50,0.0 +21452,39,18,16,0.0 +21452,61,28.5,40,0.0 +21452,55,24,19,0.0 +21452,28,45.6,31,0.0 +21452,44,19.45,26,0.0 +21452,20,81,10,0.0 +21452,42,14,18,0.0 +21452,48,12.75,12,0.0 +21452,43,46,13,0.0 +21452,30,25.89,31,0.0 +21452,14,23.25,31,0.0 +21452,76,18,1,0.0 +21452,51,53,19,0.0 +21452,24,4.5,37,0.0 +21452,68,12.5,8,0.0 +21452,63,43.9,9,0.0 +21452,65,21.05,25,0.0 +21452,10,31,36,0.0 +21452,25,14,25,0.0 +21452,29,123.79,46,0.0 +21452,66,17,27,0.0 +21452,72,34.8,48,0.0 +21452,58,13.25,13,0.0 +21452,40,18.4,39,0.0 +21452,1,18,2,0.0 +21452,12,38,21,0.0 +21452,74,10,8,0.0 +21452,50,16.25,49,0.0 +21452,19,9.2,50,0.0 +21452,54,7.45,19,0.0 +21452,3,10,16,0.0 +21452,56,38,26,0.0 +21452,9,97,48,0.0 +21452,8,40,31,0.0 +21452,16,17.45,17,0.0 +21453,30,25.89,34,0.0 +21453,36,19,49,0.0 +21453,54,7.45,11,0.0 +21453,37,26,10,0.0 +21453,48,12.75,11,0.0 +21453,55,24,48,0.0 +21453,23,9,23,0.0 +21453,26,31.23,39,0.0 +21453,25,14,30,0.0 +21453,49,20,6,0.0 +21453,61,28.5,6,0.0 +21453,39,18,13,0.0 +21453,5,21.35,1,0.0 +21453,57,19.5,12,0.0 +21453,41,9.65,40,0.0 +21453,35,18,17,0.0 +21453,38,263.5,38,0.0 +21453,20,81,26,0.0 +21454,32,32,46,0.0 +21454,64,33.25,15,0.0 +21454,53,32.8,8,0.0 +21454,38,263.5,35,0.0 +21454,16,17.45,7,0.0 +21454,13,6,20,0.0 +21454,71,21.5,44,0.0 +21454,7,30,47,0.0 +21454,73,15,6,0.0 +21454,49,20,41,0.0 +21454,5,21.35,3,0.0 +21454,21,10,19,0.0 +21454,62,49.3,33,0.0 +21454,11,21,46,0.0 +21454,60,34,2,0.0 +21454,77,13,4,0.0 +21454,28,45.6,22,0.0 +21454,6,25,45,0.0 +21454,19,9.2,35,0.0 +21454,33,2.5,33,0.0 +21454,47,9.5,6,0.0 +21454,4,22,9,0.0 +21454,74,10,18,0.0 +21454,46,12,19,0.0 +21454,9,97,40,0.0 +21454,51,53,31,0.0 +21454,22,21,49,0.0 +21454,23,9,12,0.0 +21454,50,16.25,49,0.0 +21454,18,62.5,43,0.0 +21454,55,24,8,0.0 +21454,70,15,49,0.0 +21454,24,4.5,46,0.0 +21454,66,17,9,0.0 +21454,12,38,50,0.0 +21454,63,43.9,41,0.0 +21454,58,13.25,44,0.0 +21454,29,123.79,27,0.0 +21454,17,39,48,0.0 +21454,31,12.5,14,0.0 +21454,57,19.5,37,0.0 +21454,67,14,4,0.0 +21454,43,46,30,0.0 +21454,3,10,15,0.0 +21454,2,19,48,0.0 +21454,37,26,9,0.0 +21454,1,18,47,0.0 +21454,20,81,45,0.0 +21454,10,31,19,0.0 +21454,27,43.9,50,0.0 +21454,15,15.5,5,0.0 +21454,52,7,4,0.0 +21454,35,18,26,0.0 +21454,72,34.8,47,0.0 +21454,45,9.5,22,0.0 +21455,1,18,44,0.0 +21455,43,46,2,0.0 +21455,52,7,16,0.0 +21455,29,123.79,42,0.0 +21456,74,10,42,0.0 +21456,76,18,47,0.0 +21456,35,18,11,0.0 +21456,44,19.45,28,0.0 +21456,2,19,17,0.0 +21456,47,9.5,47,0.0 +21456,73,15,20,0.0 +21456,1,18,37,0.0 +21456,43,46,1,0.0 +21456,39,18,46,0.0 +21456,59,55,4,0.0 +21456,11,21,14,0.0 +21456,40,18.4,3,0.0 +21456,16,17.45,46,0.0 +21456,65,21.05,48,0.0 +21456,23,9,4,0.0 +21456,41,9.65,33,0.0 +21456,54,7.45,40,0.0 +21456,34,14,34,0.0 +21456,8,40,19,0.0 +21456,26,31.23,16,0.0 +21456,9,97,5,0.0 +21456,48,12.75,17,0.0 +21456,37,26,18,0.0 +21456,64,33.25,20,0.0 +21456,56,38,14,0.0 +21456,22,21,8,0.0 +21456,69,36,10,0.0 +21456,45,9.5,31,0.0 +21456,36,19,28,0.0 +21457,73,15,45,0.0 +21457,30,25.89,25,0.0 +21457,41,9.65,36,0.0 +21457,28,45.6,31,0.0 +21457,13,6,4,0.0 +21457,75,7.75,16,0.0 +21457,27,43.9,44,0.0 +21457,35,18,29,0.0 +21457,1,18,7,0.0 +21457,3,10,19,0.0 +21457,62,49.3,14,0.0 +21457,39,18,24,0.0 +21457,6,25,38,0.0 +21457,67,14,45,0.0 +21457,47,9.5,23,0.0 +21457,19,9.2,29,0.0 +21457,56,38,1,0.0 +21457,52,7,7,0.0 +21457,49,20,7,0.0 +21457,74,10,15,0.0 +21457,51,53,9,0.0 +21457,64,33.25,43,0.0 +21457,14,23.25,38,0.0 +21457,23,9,27,0.0 +21457,71,21.5,17,0.0 +21457,5,21.35,25,0.0 +21457,57,19.5,24,0.0 +21457,20,81,17,0.0 +21457,77,13,14,0.0 +21457,46,12,10,0.0 +21458,33,2.5,15,0.0 +21458,63,43.9,22,0.0 +21458,30,25.89,15,0.0 +21458,68,12.5,33,0.0 +21458,28,45.6,23,0.0 +21458,1,18,31,0.0 +21458,65,21.05,40,0.0 +21458,3,10,19,0.0 +21458,13,6,9,0.0 +21458,26,31.23,3,0.0 +21458,11,21,17,0.0 +21458,22,21,32,0.0 +21458,34,14,15,0.0 +21458,44,19.45,25,0.0 +21458,15,15.5,19,0.0 +21458,21,10,38,0.0 +21458,41,9.65,7,0.0 +21458,45,9.5,18,0.0 +21458,25,14,8,0.0 +21458,50,16.25,24,0.0 +21458,31,12.5,39,0.0 +21458,6,25,48,0.0 +21458,14,23.25,44,0.0 +21459,40,18.4,47,0.0 +21459,34,14,1,0.0 +21459,43,46,37,0.0 +21459,9,97,12,0.0 +21459,11,21,25,0.0 +21459,16,17.45,7,0.0 +21459,44,19.45,43,0.0 +21459,29,123.79,37,0.0 +21459,42,14,23,0.0 +21459,69,36,26,0.0 +21459,15,15.5,5,0.0 +21459,70,15,10,0.0 +21459,45,9.5,33,0.0 +21459,3,10,17,0.0 +21459,20,81,40,0.0 +21459,31,12.5,29,0.0 +21459,59,55,50,0.0 +21459,66,17,2,0.0 +21459,17,39,39,0.0 +21459,28,45.6,42,0.0 +21459,53,32.8,5,0.0 +21459,60,34,27,0.0 +21459,6,25,6,0.0 +21459,26,31.23,6,0.0 +21459,1,18,44,0.0 +21459,8,40,39,0.0 +21459,38,263.5,41,0.0 +21459,41,9.65,35,0.0 +21459,27,43.9,14,0.0 +21459,58,13.25,45,0.0 +21459,30,25.89,17,0.0 +21459,75,7.75,34,0.0 +21459,23,9,39,0.0 +21459,51,53,12,0.0 +21459,46,12,32,0.0 +21459,72,34.8,41,0.0 +21459,33,2.5,31,0.0 +21459,73,15,44,0.0 +21459,32,32,30,0.0 +21459,13,6,13,0.0 +21459,76,18,8,0.0 +21459,62,49.3,45,0.0 +21459,19,9.2,34,0.0 +21459,22,21,18,0.0 +21459,25,14,18,0.0 +21460,33,2.5,20,0.0 +21460,18,62.5,38,0.0 +21460,23,9,37,0.0 +21460,62,49.3,6,0.0 +21460,19,9.2,22,0.0 +21460,46,12,9,0.0 +21460,20,81,7,0.0 +21460,15,15.5,20,0.0 +21460,59,55,36,0.0 +21460,73,15,20,0.0 +21460,71,21.5,46,0.0 +21460,75,7.75,21,0.0 +21460,11,21,7,0.0 +21460,43,46,23,0.0 +21460,1,18,30,0.0 +21460,64,33.25,5,0.0 +21460,54,7.45,28,0.0 +21460,37,26,2,0.0 +21460,39,18,21,0.0 +21460,24,4.5,30,0.0 +21460,65,21.05,28,0.0 +21460,74,10,8,0.0 +21460,35,18,11,0.0 +21460,3,10,20,0.0 +21460,52,7,20,0.0 +21460,44,19.45,4,0.0 +21460,55,24,19,0.0 +21460,49,20,45,0.0 +21460,38,263.5,26,0.0 +21460,28,45.6,25,0.0 +21460,60,34,44,0.0 +21460,4,22,24,0.0 +21460,25,14,38,0.0 +21460,7,30,18,0.0 +21460,29,123.79,3,0.0 +21460,16,17.45,8,0.0 +21460,36,19,30,0.0 +21460,53,32.8,38,0.0 +21460,42,14,4,0.0 +21460,67,14,21,0.0 +21460,30,25.89,22,0.0 +21460,57,19.5,1,0.0 +21460,40,18.4,25,0.0 +21460,5,21.35,37,0.0 +21460,63,43.9,13,0.0 +21460,72,34.8,17,0.0 +21460,17,39,11,0.0 +21460,27,43.9,9,0.0 +21460,58,13.25,2,0.0 +21460,12,38,35,0.0 +21460,31,12.5,36,0.0 +21460,76,18,44,0.0 +21460,22,21,3,0.0 +21460,50,16.25,16,0.0 +21460,21,10,38,0.0 +21460,56,38,5,0.0 +21460,48,12.75,9,0.0 +21460,69,36,12,0.0 +21460,8,40,12,0.0 +21460,6,25,11,0.0 +21460,32,32,49,0.0 +21460,41,9.65,42,0.0 +21460,51,53,12,0.0 +21460,26,31.23,4,0.0 +21460,47,9.5,6,0.0 +21460,10,31,2,0.0 +21460,70,15,15,0.0 +21460,66,17,49,0.0 +21460,9,97,38,0.0 +21460,2,19,11,0.0 +21460,45,9.5,8,0.0 +21460,13,6,30,0.0 +21461,2,19,31,0.0 +21461,46,12,4,0.0 +21461,37,26,26,0.0 +21461,55,24,2,0.0 +21461,48,12.75,36,0.0 +21461,67,14,40,0.0 +21461,61,28.5,47,0.0 +21461,72,34.8,10,0.0 +21461,33,2.5,33,0.0 +21461,27,43.9,39,0.0 +21461,6,25,29,0.0 +21461,66,17,39,0.0 +21461,30,25.89,48,0.0 +21461,9,97,5,0.0 +21461,73,15,26,0.0 +21461,10,31,30,0.0 +21461,31,12.5,42,0.0 +21461,18,62.5,38,0.0 +21461,56,38,10,0.0 +21461,63,43.9,32,0.0 +21461,77,13,21,0.0 +21461,26,31.23,30,0.0 +21461,68,12.5,50,0.0 +21461,71,21.5,42,0.0 +21461,49,20,45,0.0 +21461,40,18.4,3,0.0 +21461,28,45.6,37,0.0 +21461,65,21.05,16,0.0 +21461,50,16.25,20,0.0 +21461,32,32,6,0.0 +21461,35,18,19,0.0 +21461,42,14,28,0.0 +21461,47,9.5,36,0.0 +21461,5,21.35,47,0.0 +21461,53,32.8,27,0.0 +21461,43,46,29,0.0 +21461,8,40,24,0.0 +21461,76,18,30,0.0 +21461,3,10,47,0.0 +21461,44,19.45,40,0.0 +21461,21,10,49,0.0 +21461,62,49.3,26,0.0 +21461,16,17.45,6,0.0 +21461,19,9.2,35,0.0 +21461,45,9.5,28,0.0 +21461,4,22,2,0.0 +21461,60,34,27,0.0 +21461,11,21,6,0.0 +21461,34,14,48,0.0 +21461,51,53,11,0.0 +21461,36,19,25,0.0 +21461,13,6,16,0.0 +21461,59,55,44,0.0 +21461,39,18,50,0.0 +21461,14,23.25,28,0.0 +21461,38,263.5,31,0.0 +21461,23,9,26,0.0 +21461,17,39,22,0.0 +21461,20,81,38,0.0 +21461,58,13.25,21,0.0 +21461,41,9.65,5,0.0 +21461,54,7.45,31,0.0 +21461,75,7.75,48,0.0 +21461,15,15.5,43,0.0 +21461,70,15,42,0.0 +21461,74,10,26,0.0 +21461,22,21,33,0.0 +21461,7,30,2,0.0 +21461,52,7,25,0.0 +21461,1,18,42,0.0 +21461,69,36,6,0.0 +21461,24,4.5,46,0.0 +21461,29,123.79,43,0.0 +21461,25,14,40,0.0 +21461,12,38,42,0.0 +21461,64,33.25,18,0.0 +21462,15,15.5,22,0.0 +21462,38,263.5,20,0.0 +21462,27,43.9,20,0.0 +21462,76,18,36,0.0 +21462,21,10,16,0.0 +21462,37,26,36,0.0 +21462,44,19.45,25,0.0 +21462,43,46,6,0.0 +21462,71,21.5,31,0.0 +21462,33,2.5,6,0.0 +21462,1,18,21,0.0 +21462,66,17,7,0.0 +21462,18,62.5,11,0.0 +21462,24,4.5,26,0.0 +21462,52,7,22,0.0 +21462,14,23.25,32,0.0 +21462,77,13,27,0.0 +21462,50,16.25,46,0.0 +21462,62,49.3,3,0.0 +21462,61,28.5,19,0.0 +21462,64,33.25,46,0.0 +21462,36,19,31,0.0 +21462,32,32,37,0.0 +21462,47,9.5,1,0.0 +21462,48,12.75,48,0.0 +21462,73,15,2,0.0 +21462,9,97,14,0.0 +21463,45,9.5,11,0.0 +21463,46,12,8,0.0 +21463,52,7,11,0.0 +21463,11,21,24,0.0 +21463,61,28.5,49,0.0 +21463,34,14,23,0.0 +21463,35,18,25,0.0 +21463,31,12.5,4,0.0 +21463,50,16.25,5,0.0 +21463,3,10,21,0.0 +21463,19,9.2,26,0.0 +21463,38,263.5,6,0.0 +21463,71,21.5,13,0.0 +21463,60,34,14,0.0 +21463,13,6,7,0.0 +21463,64,33.25,32,0.0 +21463,59,55,38,0.0 +21463,53,32.8,35,0.0 +21463,70,15,50,0.0 +21463,18,62.5,32,0.0 +21463,9,97,13,0.0 +21463,20,81,18,0.0 +21463,16,17.45,33,0.0 +21463,5,21.35,19,0.0 +21463,17,39,43,0.0 +21463,21,10,37,0.0 +21463,62,49.3,35,0.0 +21463,57,19.5,14,0.0 +21463,36,19,46,0.0 +21463,24,4.5,15,0.0 +21464,40,18.4,6,0.0 +21464,60,34,20,0.0 +21464,65,21.05,18,0.0 +21464,4,22,1,0.0 +21464,61,28.5,13,0.0 +21464,34,14,43,0.0 +21464,5,21.35,11,0.0 +21464,37,26,48,0.0 +21464,62,49.3,38,0.0 +21464,17,39,27,0.0 +21464,15,15.5,50,0.0 +21464,7,30,21,0.0 +21464,75,7.75,9,0.0 +21464,58,13.25,47,0.0 +21464,53,32.8,18,0.0 +21464,59,55,35,0.0 +21465,76,18,40,0.0 +21465,47,9.5,7,0.0 +21465,10,31,17,0.0 +21465,59,55,21,0.0 +21465,20,81,40,0.0 +21465,63,43.9,23,0.0 +21465,30,25.89,17,0.0 +21465,37,26,44,0.0 +21465,52,7,48,0.0 +21465,5,21.35,7,0.0 +21465,26,31.23,24,0.0 +21465,2,19,27,0.0 +21465,17,39,27,0.0 +21465,6,25,14,0.0 +21465,50,16.25,45,0.0 +21465,46,12,21,0.0 +21465,43,46,9,0.0 +21465,61,28.5,44,0.0 +21465,23,9,14,0.0 +21465,13,6,13,0.0 +21465,38,263.5,22,0.0 +21465,51,53,43,0.0 +21465,68,12.5,42,0.0 +21465,7,30,3,0.0 +21465,58,13.25,25,0.0 +21465,70,15,44,0.0 +21465,12,38,3,0.0 +21465,53,32.8,12,0.0 +21465,19,9.2,47,0.0 +21465,41,9.65,1,0.0 +21465,54,7.45,19,0.0 +21465,16,17.45,10,0.0 +21465,35,18,18,0.0 +21465,21,10,24,0.0 +21465,62,49.3,48,0.0 +21465,9,97,49,0.0 +21465,24,4.5,38,0.0 +21465,69,36,49,0.0 +21465,25,14,44,0.0 +21465,60,34,40,0.0 +21465,34,14,36,0.0 +21465,71,21.5,34,0.0 +21465,57,19.5,6,0.0 +21465,28,45.6,42,0.0 +21465,3,10,49,0.0 +21465,74,10,29,0.0 +21465,14,23.25,48,0.0 +21465,39,18,10,0.0 +21465,22,21,11,0.0 +21465,8,40,22,0.0 +21465,27,43.9,28,0.0 +21465,67,14,42,0.0 +21465,44,19.45,19,0.0 +21465,1,18,50,0.0 +21466,53,32.8,13,0.0 +21466,36,19,45,0.0 +21466,44,19.45,8,0.0 +21466,26,31.23,8,0.0 +21466,39,18,6,0.0 +21467,53,32.8,11,0.0 +21467,41,9.65,32,0.0 +21467,46,12,21,0.0 +21467,59,55,49,0.0 +21467,75,7.75,40,0.0 +21467,17,39,17,0.0 +21467,35,18,34,0.0 +21467,47,9.5,43,0.0 +21467,27,43.9,1,0.0 +21467,44,19.45,7,0.0 +21467,31,12.5,41,0.0 +21467,22,21,41,0.0 +21467,10,31,29,0.0 +21467,21,10,20,0.0 +21467,76,18,6,0.0 +21467,67,14,27,0.0 +21467,28,45.6,6,0.0 +21467,9,97,50,0.0 +21467,42,14,36,0.0 +21467,73,15,3,0.0 +21467,12,38,13,0.0 +21467,13,6,7,0.0 +21467,66,17,28,0.0 +21467,36,19,27,0.0 +21467,14,23.25,9,0.0 +21467,37,26,36,0.0 +21467,24,4.5,38,0.0 +21467,62,49.3,20,0.0 +21467,63,43.9,16,0.0 +21467,48,12.75,33,0.0 +21467,72,34.8,44,0.0 +21467,5,21.35,43,0.0 +21467,7,30,44,0.0 +21467,4,22,18,0.0 +21467,51,53,37,0.0 +21467,39,18,15,0.0 +21467,25,14,41,0.0 +21467,69,36,13,0.0 +21467,38,263.5,40,0.0 +21467,34,14,34,0.0 +21467,45,9.5,9,0.0 +21467,6,25,34,0.0 +21467,1,18,50,0.0 +21467,61,28.5,43,0.0 +21467,64,33.25,4,0.0 +21467,3,10,31,0.0 +21467,70,15,37,0.0 +21467,33,2.5,21,0.0 +21467,68,12.5,14,0.0 +21467,74,10,40,0.0 +21467,11,21,31,0.0 +21467,32,32,41,0.0 +21467,52,7,5,0.0 +21467,2,19,17,0.0 +21467,50,16.25,32,0.0 +21467,40,18.4,47,0.0 +21467,58,13.25,44,0.0 +21467,20,81,9,0.0 +21467,56,38,2,0.0 +21467,43,46,2,0.0 +21467,8,40,45,0.0 +21467,54,7.45,17,0.0 +21468,8,40,41,0.0 +21468,47,9.5,5,0.0 +21468,17,39,7,0.0 +21468,31,12.5,44,0.0 +21468,20,81,1,0.0 +21468,48,12.75,46,0.0 +21468,36,19,12,0.0 +21468,44,19.45,21,0.0 +21468,1,18,48,0.0 +21468,62,49.3,26,0.0 +21468,30,25.89,34,0.0 +21468,46,12,27,0.0 +21468,18,62.5,26,0.0 +21468,29,123.79,9,0.0 +21468,50,16.25,33,0.0 +21468,69,36,20,0.0 +21468,58,13.25,1,0.0 +21468,75,7.75,48,0.0 +21468,22,21,27,0.0 +21468,27,43.9,31,0.0 +21468,4,22,24,0.0 +21469,70,15,34,0.0 +21469,12,38,48,0.0 +21469,28,45.6,31,0.0 +21469,3,10,32,0.0 +21469,53,32.8,47,0.0 +21469,33,2.5,22,0.0 +21469,29,123.79,17,0.0 +21469,51,53,31,0.0 +21469,43,46,41,0.0 +21469,13,6,47,0.0 +21469,45,9.5,50,0.0 +21469,34,14,11,0.0 +21469,50,16.25,12,0.0 +21469,7,30,3,0.0 +21469,40,18.4,25,0.0 +21469,37,26,16,0.0 +21469,73,15,38,0.0 +21469,9,97,12,0.0 +21469,64,33.25,40,0.0 +21469,42,14,39,0.0 +21469,77,13,20,0.0 +21469,36,19,39,0.0 +21469,10,31,45,0.0 +21469,38,263.5,34,0.0 +21469,21,10,26,0.0 +21469,25,14,1,0.0 +21469,8,40,44,0.0 +21469,2,19,45,0.0 +21469,22,21,33,0.0 +21469,49,20,5,0.0 +21469,61,28.5,31,0.0 +21469,66,17,28,0.0 +21469,6,25,36,0.0 +21469,17,39,2,0.0 +21469,4,22,25,0.0 +21469,71,21.5,48,0.0 +21469,39,18,19,0.0 +21469,72,34.8,4,0.0 +21469,54,7.45,7,0.0 +21469,75,7.75,34,0.0 +21469,55,24,44,0.0 +21469,67,14,14,0.0 +21469,14,23.25,28,0.0 +21469,60,34,7,0.0 +21469,57,19.5,27,0.0 +21469,59,55,8,0.0 +21469,48,12.75,12,0.0 +21469,69,36,50,0.0 +21469,68,12.5,14,0.0 +21469,23,9,3,0.0 +21469,16,17.45,26,0.0 +21469,65,21.05,24,0.0 +21469,26,31.23,2,0.0 +21469,27,43.9,46,0.0 +21469,5,21.35,42,0.0 +21469,32,32,1,0.0 +21469,31,12.5,44,0.0 +21469,62,49.3,3,0.0 +21469,24,4.5,29,0.0 +21469,19,9.2,2,0.0 +21469,41,9.65,22,0.0 +21469,20,81,42,0.0 +21469,44,19.45,33,0.0 +21469,63,43.9,26,0.0 +21469,1,18,48,0.0 +21469,18,62.5,46,0.0 +21469,30,25.89,15,0.0 +21469,52,7,22,0.0 +21469,35,18,36,0.0 +21469,47,9.5,28,0.0 +21470,10,31,21,0.0 +21470,32,32,50,0.0 +21470,77,13,2,0.0 +21470,43,46,46,0.0 +21470,57,19.5,37,0.0 +21470,40,18.4,39,0.0 +21470,21,10,25,0.0 +21470,54,7.45,49,0.0 +21470,65,21.05,4,0.0 +21470,74,10,19,0.0 +21470,50,16.25,34,0.0 +21470,68,12.5,39,0.0 +21470,2,19,23,0.0 +21470,4,22,16,0.0 +21470,70,15,1,0.0 +21470,29,123.79,32,0.0 +21470,6,25,29,0.0 +21470,55,24,14,0.0 +21470,47,9.5,4,0.0 +21470,63,43.9,14,0.0 +21470,69,36,18,0.0 +21471,44,19.45,21,0.0 +21471,43,46,47,0.0 +21471,39,18,37,0.0 +21471,3,10,28,0.0 +21471,31,12.5,48,0.0 +21471,67,14,42,0.0 +21471,5,21.35,23,0.0 +21471,59,55,12,0.0 +21471,42,14,1,0.0 +21471,64,33.25,36,0.0 +21471,24,4.5,27,0.0 +21471,41,9.65,24,0.0 +21471,46,12,13,0.0 +21471,9,97,38,0.0 +21471,68,12.5,50,0.0 +21471,76,18,31,0.0 +21471,56,38,22,0.0 +21471,58,13.25,7,0.0 +21471,1,18,40,0.0 +21471,21,10,20,0.0 +21471,48,12.75,17,0.0 +21471,75,7.75,5,0.0 +21471,65,21.05,33,0.0 +21471,72,34.8,33,0.0 +21471,27,43.9,33,0.0 +21471,7,30,14,0.0 +21471,16,17.45,10,0.0 +21471,18,62.5,11,0.0 +21471,47,9.5,46,0.0 +21472,4,22,33,0.0 +21473,21,10,48,0.0 +21473,31,12.5,9,0.0 +21473,20,81,39,0.0 +21473,55,24,11,0.0 +21473,4,22,50,0.0 +21473,49,20,2,0.0 +21473,39,18,18,0.0 +21473,56,38,50,0.0 +21473,15,15.5,8,0.0 +21473,9,97,8,0.0 +21473,6,25,16,0.0 +21473,10,31,46,0.0 +21473,48,12.75,41,0.0 +21473,41,9.65,14,0.0 +21473,66,17,39,0.0 +21473,63,43.9,13,0.0 +21473,1,18,45,0.0 +21473,45,9.5,28,0.0 +21473,19,9.2,22,0.0 +21473,27,43.9,32,0.0 +21473,68,12.5,28,0.0 +21473,23,9,21,0.0 +21473,75,7.75,6,0.0 +21473,24,4.5,43,0.0 +21473,33,2.5,24,0.0 +21473,40,18.4,31,0.0 +21473,70,15,17,0.0 +21473,64,33.25,20,0.0 +21473,54,7.45,50,0.0 +21473,5,21.35,9,0.0 +21473,47,9.5,32,0.0 +21473,2,19,44,0.0 +21474,59,55,43,0.0 +21474,71,21.5,37,0.0 +21474,69,36,40,0.0 +21474,61,28.5,36,0.0 +21474,77,13,23,0.0 +21474,43,46,13,0.0 +21474,49,20,34,0.0 +21474,33,2.5,44,0.0 +21474,67,14,41,0.0 +21474,75,7.75,29,0.0 +21474,34,14,40,0.0 +21474,52,7,30,0.0 +21474,11,21,45,0.0 +21474,76,18,32,0.0 +21474,12,38,48,0.0 +21474,13,6,41,0.0 +21474,6,25,13,0.0 +21474,4,22,31,0.0 +21474,8,40,42,0.0 +21474,39,18,7,0.0 +21474,18,62.5,3,0.0 +21474,38,263.5,22,0.0 +21474,10,31,17,0.0 +21474,58,13.25,49,0.0 +21474,5,21.35,43,0.0 +21474,70,15,19,0.0 +21474,66,17,28,0.0 +21474,60,34,3,0.0 +21474,2,19,17,0.0 +21474,45,9.5,42,0.0 +21474,22,21,17,0.0 +21474,29,123.79,34,0.0 +21474,53,32.8,16,0.0 +21474,19,9.2,8,0.0 +21474,32,32,22,0.0 +21474,35,18,14,0.0 +21474,50,16.25,16,0.0 +21474,16,17.45,30,0.0 +21474,23,9,13,0.0 +21474,7,30,24,0.0 +21474,55,24,9,0.0 +21474,47,9.5,28,0.0 +21474,3,10,21,0.0 +21474,26,31.23,3,0.0 +21474,64,33.25,1,0.0 +21474,37,26,20,0.0 +21474,40,18.4,43,0.0 +21474,9,97,22,0.0 +21474,41,9.65,33,0.0 +21474,63,43.9,21,0.0 +21474,14,23.25,25,0.0 +21474,27,43.9,44,0.0 +21474,46,12,44,0.0 +21474,28,45.6,15,0.0 +21474,57,19.5,13,0.0 +21474,44,19.45,40,0.0 +21474,36,19,9,0.0 +21474,65,21.05,41,0.0 +21474,15,15.5,20,0.0 +21474,48,12.75,8,0.0 +21474,20,81,19,0.0 +21474,25,14,45,0.0 +21474,62,49.3,30,0.0 +21474,68,12.5,45,0.0 +21474,42,14,29,0.0 +21474,21,10,14,0.0 +21474,72,34.8,2,0.0 +21474,31,12.5,11,0.0 +21474,17,39,18,0.0 +21474,54,7.45,9,0.0 +21474,74,10,9,0.0 +21474,56,38,39,0.0 +21474,1,18,23,0.0 +21474,30,25.89,40,0.0 +21475,23,9,17,0.0 +21475,70,15,37,0.0 +21475,34,14,23,0.0 +21475,2,19,7,0.0 +21475,38,263.5,4,0.0 +21476,37,26,38,0.0 +21476,38,263.5,17,0.0 +21476,31,12.5,4,0.0 +21476,66,17,12,0.0 +21476,20,81,43,0.0 +21476,52,7,16,0.0 +21476,64,33.25,26,0.0 +21476,10,31,42,0.0 +21476,70,15,10,0.0 +21476,12,38,49,0.0 +21476,41,9.65,11,0.0 +21476,73,15,3,0.0 +21476,9,97,44,0.0 +21476,32,32,8,0.0 +21476,33,2.5,4,0.0 +21476,3,10,31,0.0 +21476,54,7.45,15,0.0 +21476,5,21.35,10,0.0 +21476,71,21.5,26,0.0 +21476,25,14,18,0.0 +21476,77,13,10,0.0 +21476,16,17.45,48,0.0 +21476,40,18.4,28,0.0 +21476,18,62.5,32,0.0 +21476,76,18,13,0.0 +21476,45,9.5,28,0.0 +21477,57,19.5,22,0.0 +21477,7,30,12,0.0 +21477,76,18,27,0.0 +21477,49,20,4,0.0 +21477,70,15,38,0.0 +21477,6,25,44,0.0 +21477,44,19.45,14,0.0 +21477,8,40,44,0.0 +21477,73,15,17,0.0 +21477,54,7.45,10,0.0 +21477,39,18,7,0.0 +21477,59,55,32,0.0 +21477,2,19,8,0.0 +21477,31,12.5,37,0.0 +21477,22,21,8,0.0 +21477,23,9,36,0.0 +21477,53,32.8,7,0.0 +21477,5,21.35,1,0.0 +21477,32,32,21,0.0 +21477,12,38,41,0.0 +21477,16,17.45,16,0.0 +21477,68,12.5,48,0.0 +21477,75,7.75,39,0.0 +21477,60,34,28,0.0 +21477,46,12,26,0.0 +21477,48,12.75,17,0.0 +21477,62,49.3,31,0.0 +21477,41,9.65,36,0.0 +21477,55,24,48,0.0 +21477,21,10,34,0.0 +21477,35,18,14,0.0 +21477,67,14,13,0.0 +21477,14,23.25,48,0.0 +21477,52,7,3,0.0 +21477,24,4.5,13,0.0 +21477,43,46,40,0.0 +21477,50,16.25,43,0.0 +21477,27,43.9,34,0.0 +21478,17,39,31,0.0 +21478,22,21,31,0.0 +21478,28,45.6,29,0.0 +21478,54,7.45,1,0.0 +21478,18,62.5,41,0.0 +21478,12,38,37,0.0 +21478,39,18,28,0.0 +21478,3,10,46,0.0 +21478,72,34.8,39,0.0 +21478,35,18,25,0.0 +21478,50,16.25,44,0.0 +21478,52,7,46,0.0 +21478,38,263.5,14,0.0 +21478,74,10,18,0.0 +21478,40,18.4,46,0.0 +21478,4,22,2,0.0 +21478,60,34,14,0.0 +21478,37,26,7,0.0 +21478,14,23.25,12,0.0 +21478,41,9.65,30,0.0 +21478,46,12,46,0.0 +21478,57,19.5,34,0.0 +21478,11,21,48,0.0 +21478,55,24,30,0.0 +21478,42,14,45,0.0 +21478,51,53,15,0.0 +21478,5,21.35,47,0.0 +21478,8,40,2,0.0 +21478,15,15.5,6,0.0 +21478,25,14,38,0.0 +21478,48,12.75,9,0.0 +21478,1,18,7,0.0 +21478,45,9.5,31,0.0 +21478,7,30,30,0.0 +21478,13,6,5,0.0 +21478,49,20,5,0.0 +21478,64,33.25,43,0.0 +21478,9,97,40,0.0 +21478,66,17,34,0.0 +21478,70,15,11,0.0 +21478,53,32.8,20,0.0 +21478,21,10,43,0.0 +21478,63,43.9,15,0.0 +21478,32,32,12,0.0 +21478,77,13,15,0.0 +21478,2,19,13,0.0 +21478,29,123.79,42,0.0 +21478,68,12.5,8,0.0 +21478,19,9.2,18,0.0 +21478,10,31,47,0.0 +21478,73,15,30,0.0 +21478,43,46,35,0.0 +21478,67,14,36,0.0 +21478,24,4.5,7,0.0 +21478,31,12.5,38,0.0 +21478,44,19.45,4,0.0 +21478,30,25.89,39,0.0 +21478,69,36,27,0.0 +21478,47,9.5,42,0.0 +21478,71,21.5,27,0.0 +21479,24,4.5,20,0.0 +21479,51,53,14,0.0 +21479,27,43.9,18,0.0 +21479,2,19,17,0.0 +21479,42,14,50,0.0 +21479,50,16.25,33,0.0 +21479,71,21.5,7,0.0 +21479,58,13.25,36,0.0 +21479,65,21.05,38,0.0 +21479,40,18.4,20,0.0 +21479,57,19.5,49,0.0 +21479,56,38,35,0.0 +21479,7,30,6,0.0 +21479,45,9.5,20,0.0 +21479,14,23.25,22,0.0 +21479,67,14,42,0.0 +21479,6,25,50,0.0 +21479,62,49.3,7,0.0 +21479,29,123.79,18,0.0 +21479,73,15,35,0.0 +21479,26,31.23,23,0.0 +21479,13,6,38,0.0 +21479,38,263.5,22,0.0 +21479,25,14,36,0.0 +21479,32,32,35,0.0 +21479,52,7,19,0.0 +21479,41,9.65,32,0.0 +21479,69,36,41,0.0 +21479,9,97,5,0.0 +21479,37,26,18,0.0 +21479,53,32.8,47,0.0 +21479,70,15,37,0.0 +21479,23,9,33,0.0 +21479,61,28.5,25,0.0 +21479,43,46,21,0.0 +21479,74,10,40,0.0 +21479,1,18,29,0.0 +21479,15,15.5,2,0.0 +21479,75,7.75,18,0.0 +21479,11,21,20,0.0 +21479,34,14,48,0.0 +21479,19,9.2,25,0.0 +21479,46,12,47,0.0 +21479,21,10,26,0.0 +21479,30,25.89,24,0.0 +21479,55,24,8,0.0 +21479,72,34.8,8,0.0 +21479,22,21,23,0.0 +21479,16,17.45,23,0.0 +21479,66,17,9,0.0 +21479,18,62.5,16,0.0 +21479,8,40,28,0.0 +21479,3,10,9,0.0 +21480,60,34,28,0.0 +21480,12,38,33,0.0 +21480,71,21.5,11,0.0 +21480,69,36,26,0.0 +21480,77,13,39,0.0 +21481,33,2.5,6,0.0 +21481,53,32.8,16,0.0 +21481,60,34,25,0.0 +21481,44,19.45,48,0.0 +21481,2,19,33,0.0 +21481,21,10,11,0.0 +21481,32,32,4,0.0 +21481,61,28.5,14,0.0 +21481,8,40,46,0.0 +21481,12,38,2,0.0 +21481,65,21.05,18,0.0 +21481,67,14,16,0.0 +21481,47,9.5,23,0.0 +21481,50,16.25,11,0.0 +21481,28,45.6,18,0.0 +21481,68,12.5,19,0.0 +21481,4,22,17,0.0 +21481,19,9.2,17,0.0 +21481,5,21.35,4,0.0 +21481,49,20,30,0.0 +21481,71,21.5,37,0.0 +21481,42,14,31,0.0 +21481,52,7,48,0.0 +21481,40,18.4,12,0.0 +21481,63,43.9,25,0.0 +21481,16,17.45,13,0.0 +21481,59,55,45,0.0 +21481,62,49.3,33,0.0 +21481,73,15,45,0.0 +21481,45,9.5,47,0.0 +21481,74,10,29,0.0 +21481,34,14,40,0.0 +21481,31,12.5,13,0.0 +21481,56,38,22,0.0 +21481,14,23.25,48,0.0 +21481,15,15.5,42,0.0 +21481,69,36,42,0.0 +21481,64,33.25,12,0.0 +21481,77,13,10,0.0 +21481,25,14,14,0.0 +21481,48,12.75,18,0.0 +21481,66,17,45,0.0 +21481,9,97,25,0.0 +21481,1,18,11,0.0 +21481,35,18,27,0.0 +21481,3,10,4,0.0 +21481,22,21,43,0.0 +21481,36,19,45,0.0 +21481,7,30,47,0.0 +21482,13,6,45,0.0 +21482,49,20,9,0.0 +21482,46,12,6,0.0 +21482,37,26,50,0.0 +21482,6,25,49,0.0 +21482,7,30,15,0.0 +21482,35,18,30,0.0 +21482,72,34.8,13,0.0 +21482,8,40,20,0.0 +21482,56,38,11,0.0 +21482,14,23.25,40,0.0 +21482,66,17,38,0.0 +21482,42,14,36,0.0 +21482,75,7.75,46,0.0 +21482,77,13,41,0.0 +21482,26,31.23,49,0.0 +21482,40,18.4,11,0.0 +21482,65,21.05,14,0.0 +21482,23,9,10,0.0 +21482,32,32,38,0.0 +21482,60,34,11,0.0 +21482,18,62.5,35,0.0 +21482,24,4.5,5,0.0 +21482,47,9.5,10,0.0 +21482,30,25.89,13,0.0 +21482,39,18,19,0.0 +21482,27,43.9,13,0.0 +21482,5,21.35,36,0.0 +21482,31,12.5,47,0.0 +21482,62,49.3,10,0.0 +21482,58,13.25,42,0.0 +21482,43,46,46,0.0 +21482,67,14,44,0.0 +21482,41,9.65,28,0.0 +21482,38,263.5,36,0.0 +21482,57,19.5,48,0.0 +21482,55,24,7,0.0 +21482,4,22,41,0.0 +21482,19,9.2,50,0.0 +21482,33,2.5,38,0.0 +21482,48,12.75,7,0.0 +21482,34,14,21,0.0 +21482,17,39,31,0.0 +21482,2,19,8,0.0 +21482,28,45.6,17,0.0 +21482,73,15,20,0.0 +21482,29,123.79,49,0.0 +21482,76,18,47,0.0 +21482,45,9.5,12,0.0 +21482,74,10,32,0.0 +21482,22,21,15,0.0 +21482,11,21,42,0.0 +21482,10,31,27,0.0 +21482,15,15.5,27,0.0 +21483,59,55,27,0.0 +21483,48,12.75,30,0.0 +21483,17,39,47,0.0 +21483,58,13.25,36,0.0 +21483,13,6,27,0.0 +21483,8,40,3,0.0 +21483,75,7.75,22,0.0 +21483,20,81,20,0.0 +21483,57,19.5,45,0.0 +21483,24,4.5,31,0.0 +21483,63,43.9,6,0.0 +21483,70,15,49,0.0 +21483,26,31.23,7,0.0 +21483,44,19.45,6,0.0 +21483,38,263.5,42,0.0 +21483,3,10,34,0.0 +21483,4,22,1,0.0 +21483,61,28.5,22,0.0 +21483,5,21.35,16,0.0 +21483,23,9,43,0.0 +21483,40,18.4,19,0.0 +21483,9,97,34,0.0 +21483,56,38,7,0.0 +21483,25,14,29,0.0 +21483,21,10,47,0.0 +21483,39,18,22,0.0 +21483,53,32.8,27,0.0 +21483,15,15.5,14,0.0 +21483,67,14,36,0.0 +21483,55,24,9,0.0 +21483,30,25.89,25,0.0 +21483,42,14,35,0.0 +21483,14,23.25,49,0.0 +21483,32,32,25,0.0 +21483,27,43.9,23,0.0 +21484,31,12.5,7,0.0 +21484,28,45.6,24,0.0 +21484,2,19,34,0.0 +21484,71,21.5,22,0.0 +21484,52,7,30,0.0 +21484,63,43.9,16,0.0 +21484,10,31,8,0.0 +21484,7,30,38,0.0 +21484,75,7.75,41,0.0 +21484,34,14,45,0.0 +21484,19,9.2,15,0.0 +21484,61,28.5,39,0.0 +21485,64,33.25,40,0.0 +21485,16,17.45,11,0.0 +21485,74,10,16,0.0 +21485,31,12.5,30,0.0 +21485,39,18,22,0.0 +21485,23,9,16,0.0 +21485,48,12.75,39,0.0 +21485,28,45.6,50,0.0 +21485,8,40,21,0.0 +21485,19,9.2,40,0.0 +21485,65,21.05,8,0.0 +21485,18,62.5,42,0.0 +21485,13,6,32,0.0 +21485,7,30,45,0.0 +21485,73,15,50,0.0 +21485,56,38,42,0.0 +21485,9,97,49,0.0 +21485,70,15,42,0.0 +21485,24,4.5,20,0.0 +21485,52,7,46,0.0 +21485,42,14,28,0.0 +21485,45,9.5,32,0.0 +21485,25,14,11,0.0 +21485,5,21.35,25,0.0 +21485,22,21,8,0.0 +21485,60,34,41,0.0 +21485,2,19,44,0.0 +21485,53,32.8,38,0.0 +21485,51,53,43,0.0 +21485,44,19.45,30,0.0 +21485,27,43.9,19,0.0 +21485,54,7.45,41,0.0 +21485,66,17,3,0.0 +21485,59,55,29,0.0 +21485,35,18,14,0.0 +21485,77,13,48,0.0 +21485,1,18,41,0.0 +21485,20,81,36,0.0 +21485,62,49.3,22,0.0 +21485,17,39,8,0.0 +21485,49,20,26,0.0 +21485,43,46,36,0.0 +21485,76,18,29,0.0 +21485,33,2.5,27,0.0 +21485,40,18.4,1,0.0 +21485,6,25,2,0.0 +21485,75,7.75,2,0.0 +21485,69,36,27,0.0 +21485,41,9.65,49,0.0 +21485,47,9.5,3,0.0 +21485,61,28.5,18,0.0 +21485,11,21,22,0.0 +21485,14,23.25,23,0.0 +21485,30,25.89,46,0.0 +21485,32,32,6,0.0 +21485,34,14,17,0.0 +21486,39,18,30,0.0 +21486,21,10,20,0.0 +21486,70,15,35,0.0 +21486,63,43.9,10,0.0 +21486,55,24,38,0.0 +21486,19,9.2,23,0.0 +21486,61,28.5,17,0.0 +21486,12,38,17,0.0 +21486,51,53,26,0.0 +21486,7,30,48,0.0 +21486,26,31.23,17,0.0 +21486,49,20,12,0.0 +21486,42,14,12,0.0 +21486,38,263.5,29,0.0 +21486,57,19.5,38,0.0 +21486,30,25.89,18,0.0 +21486,2,19,6,0.0 +21486,73,15,36,0.0 +21486,48,12.75,1,0.0 +21486,17,39,40,0.0 +21486,16,17.45,6,0.0 +21486,50,16.25,8,0.0 +21486,59,55,50,0.0 +21486,28,45.6,28,0.0 +21486,45,9.5,18,0.0 +21486,56,38,31,0.0 +21486,62,49.3,14,0.0 +21486,43,46,45,0.0 +21486,3,10,50,0.0 +21486,25,14,9,0.0 +21486,64,33.25,3,0.0 +21486,1,18,37,0.0 +21486,22,21,36,0.0 +21486,15,15.5,47,0.0 +21486,34,14,47,0.0 +21486,10,31,7,0.0 +21486,77,13,25,0.0 +21486,24,4.5,2,0.0 +21486,66,17,40,0.0 +21486,18,62.5,9,0.0 +21486,68,12.5,27,0.0 +21486,41,9.65,26,0.0 +21486,14,23.25,6,0.0 +21486,60,34,20,0.0 +21486,47,9.5,33,0.0 +21486,6,25,30,0.0 +21486,20,81,24,0.0 +21486,23,9,45,0.0 +21486,29,123.79,37,0.0 +21486,74,10,6,0.0 +21486,67,14,26,0.0 +21486,5,21.35,49,0.0 +21486,69,36,44,0.0 +21486,32,32,17,0.0 +21486,65,21.05,13,0.0 +21486,35,18,6,0.0 +21486,36,19,15,0.0 +21486,40,18.4,42,0.0 +21486,44,19.45,7,0.0 +21486,54,7.45,3,0.0 +21486,72,34.8,20,0.0 +21486,37,26,45,0.0 +21486,8,40,10,0.0 +21486,9,97,23,0.0 +21486,4,22,50,0.0 +21486,11,21,23,0.0 +21486,31,12.5,7,0.0 +21486,33,2.5,29,0.0 +21486,76,18,28,0.0 +21487,42,14,32,0.0 +21487,26,31.23,36,0.0 +21487,63,43.9,43,0.0 +21487,37,26,41,0.0 +21487,57,19.5,30,0.0 +21487,73,15,45,0.0 +21487,60,34,26,0.0 +21487,51,53,48,0.0 +21487,67,14,32,0.0 +21487,4,22,24,0.0 +21487,61,28.5,9,0.0 +21487,11,21,43,0.0 +21488,44,19.45,41,0.0 +21488,35,18,44,0.0 +21488,42,14,22,0.0 +21488,61,28.5,28,0.0 +21488,60,34,36,0.0 +21488,24,4.5,40,0.0 +21488,62,49.3,19,0.0 +21488,14,23.25,24,0.0 +21488,73,15,48,0.0 +21488,12,38,26,0.0 +21488,23,9,11,0.0 +21488,6,25,13,0.0 +21488,26,31.23,24,0.0 +21488,43,46,28,0.0 +21488,2,19,16,0.0 +21488,27,43.9,17,0.0 +21488,20,81,47,0.0 +21488,1,18,49,0.0 +21488,29,123.79,24,0.0 +21488,67,14,13,0.0 +21488,59,55,2,0.0 +21488,51,53,42,0.0 +21488,72,34.8,7,0.0 +21488,58,13.25,22,0.0 +21488,48,12.75,27,0.0 +21488,37,26,20,0.0 +21488,47,9.5,15,0.0 +21488,16,17.45,27,0.0 +21488,33,2.5,50,0.0 +21488,18,62.5,28,0.0 +21488,21,10,44,0.0 +21488,76,18,39,0.0 +21488,49,20,22,0.0 +21488,4,22,39,0.0 +21488,52,7,31,0.0 +21488,46,12,21,0.0 +21488,17,39,10,0.0 +21488,71,21.5,33,0.0 +21488,32,32,16,0.0 +21488,40,18.4,17,0.0 +21488,38,263.5,39,0.0 +21488,30,25.89,34,0.0 +21488,36,19,1,0.0 +21488,10,31,24,0.0 +21488,41,9.65,42,0.0 +21488,56,38,26,0.0 +21488,25,14,15,0.0 +21488,65,21.05,3,0.0 +21488,69,36,14,0.0 +21488,45,9.5,29,0.0 +21488,66,17,23,0.0 +21488,63,43.9,18,0.0 +21488,15,15.5,11,0.0 +21488,64,33.25,19,0.0 +21488,31,12.5,28,0.0 +21488,9,97,44,0.0 +21488,54,7.45,4,0.0 +21488,39,18,35,0.0 +21488,57,19.5,34,0.0 +21488,5,21.35,6,0.0 +21488,8,40,38,0.0 +21488,55,24,9,0.0 +21488,13,6,3,0.0 +21488,22,21,11,0.0 +21488,68,12.5,4,0.0 +21488,3,10,21,0.0 +21488,75,7.75,27,0.0 +21488,50,16.25,25,0.0 +21488,53,32.8,13,0.0 +21488,70,15,33,0.0 +21489,55,24,12,0.0 +21489,6,25,15,0.0 +21489,23,9,28,0.0 +21489,36,19,5,0.0 +21489,58,13.25,36,0.0 +21489,54,7.45,33,0.0 +21489,63,43.9,36,0.0 +21489,18,62.5,34,0.0 +21489,25,14,49,0.0 +21489,24,4.5,20,0.0 +21489,60,34,6,0.0 +21489,59,55,1,0.0 +21489,42,14,34,0.0 +21489,2,19,30,0.0 +21489,35,18,44,0.0 +21489,34,14,24,0.0 +21489,9,97,42,0.0 +21489,66,17,35,0.0 +21489,16,17.45,48,0.0 +21489,64,33.25,4,0.0 +21489,76,18,39,0.0 +21489,52,7,23,0.0 +21489,71,21.5,2,0.0 +21489,20,81,43,0.0 +21489,56,38,6,0.0 +21489,13,6,9,0.0 +21489,39,18,38,0.0 +21489,8,40,13,0.0 +21489,61,28.5,10,0.0 +21489,30,25.89,26,0.0 +21489,75,7.75,32,0.0 +21489,50,16.25,32,0.0 +21489,3,10,18,0.0 +21489,11,21,18,0.0 +21489,28,45.6,21,0.0 +21489,14,23.25,32,0.0 +21489,22,21,23,0.0 +21489,44,19.45,17,0.0 +21489,21,10,34,0.0 +21489,48,12.75,11,0.0 +21489,69,36,20,0.0 +21489,10,31,39,0.0 +21489,45,9.5,11,0.0 +21489,29,123.79,48,0.0 +21489,43,46,44,0.0 +21489,4,22,22,0.0 +21489,51,53,1,0.0 +21489,72,34.8,8,0.0 +21489,26,31.23,10,0.0 +21489,46,12,8,0.0 +21489,33,2.5,6,0.0 +21489,31,12.5,5,0.0 +21489,15,15.5,40,0.0 +21489,53,32.8,27,0.0 +21490,52,7,23,0.0 +21490,7,30,37,0.0 +21490,31,12.5,39,0.0 +21490,77,13,6,0.0 +21490,38,263.5,35,0.0 +21490,74,10,50,0.0 +21490,45,9.5,32,0.0 +21490,27,43.9,9,0.0 +21490,23,9,36,0.0 +21490,2,19,46,0.0 +21490,12,38,27,0.0 +21490,49,20,32,0.0 +21490,46,12,31,0.0 +21490,20,81,28,0.0 +21490,28,45.6,22,0.0 +21490,60,34,1,0.0 +21490,26,31.23,43,0.0 +21490,22,21,16,0.0 +21490,16,17.45,6,0.0 +21490,71,21.5,31,0.0 +21490,67,14,19,0.0 +21490,39,18,3,0.0 +21490,43,46,28,0.0 +21490,6,25,44,0.0 +21490,75,7.75,27,0.0 +21490,56,38,36,0.0 +21490,76,18,8,0.0 +21490,50,16.25,16,0.0 +21490,53,32.8,39,0.0 +21490,19,9.2,23,0.0 +21490,64,33.25,17,0.0 +21490,69,36,11,0.0 +21490,70,15,40,0.0 +21490,37,26,30,0.0 +21490,21,10,10,0.0 +21490,11,21,11,0.0 +21490,30,25.89,42,0.0 +21490,61,28.5,47,0.0 +21490,29,123.79,46,0.0 +21490,59,55,34,0.0 +21490,8,40,4,0.0 +21490,17,39,42,0.0 +21490,47,9.5,9,0.0 +21490,51,53,15,0.0 +21490,40,18.4,45,0.0 +21490,4,22,27,0.0 +21490,13,6,45,0.0 +21490,32,32,46,0.0 +21490,58,13.25,28,0.0 +21490,41,9.65,25,0.0 +21490,54,7.45,10,0.0 +21490,36,19,44,0.0 +21490,55,24,11,0.0 +21490,18,62.5,43,0.0 +21490,42,14,31,0.0 +21490,15,15.5,47,0.0 +21490,48,12.75,24,0.0 +21490,25,14,4,0.0 +21490,5,21.35,38,0.0 +21490,14,23.25,2,0.0 +21490,72,34.8,29,0.0 +21490,68,12.5,47,0.0 +21490,57,19.5,40,0.0 +21490,1,18,14,0.0 +21490,44,19.45,44,0.0 +21490,65,21.05,49,0.0 +21490,9,97,13,0.0 +21490,35,18,43,0.0 +21490,10,31,2,0.0 +21490,73,15,41,0.0 +21490,24,4.5,38,0.0 +21490,34,14,22,0.0 +21490,63,43.9,30,0.0 +21490,62,49.3,45,0.0 +21491,1,18,34,0.0 +21491,46,12,8,0.0 +21491,25,14,4,0.0 +21491,4,22,9,0.0 +21491,18,62.5,20,0.0 +21491,39,18,14,0.0 +21491,26,31.23,44,0.0 +21491,48,12.75,17,0.0 +21491,76,18,45,0.0 +21491,66,17,23,0.0 +21491,43,46,16,0.0 +21491,63,43.9,18,0.0 +21491,42,14,27,0.0 +21491,15,15.5,44,0.0 +21491,54,7.45,21,0.0 +21491,44,19.45,11,0.0 +21491,70,15,35,0.0 +21491,30,25.89,39,0.0 +21491,74,10,4,0.0 +21491,56,38,13,0.0 +21491,50,16.25,29,0.0 +21491,31,12.5,19,0.0 +21491,52,7,42,0.0 +21491,38,263.5,42,0.0 +21491,68,12.5,12,0.0 +21491,47,9.5,35,0.0 +21491,21,10,13,0.0 +21491,53,32.8,16,0.0 +21492,28,45.6,12,0.0 +21492,40,18.4,38,0.0 +21492,25,14,34,0.0 +21492,16,17.45,6,0.0 +21492,35,18,24,0.0 +21492,32,32,1,0.0 +21492,7,30,29,0.0 +21492,36,19,34,0.0 +21492,50,16.25,27,0.0 +21492,20,81,10,0.0 +21492,60,34,48,0.0 +21492,61,28.5,47,0.0 +21492,29,123.79,30,0.0 +21492,72,34.8,26,0.0 +21492,9,97,14,0.0 +21492,52,7,35,0.0 +21492,63,43.9,49,0.0 +21492,56,38,21,0.0 +21492,49,20,38,0.0 +21492,77,13,9,0.0 +21492,19,9.2,48,0.0 +21492,65,21.05,38,0.0 +21492,3,10,17,0.0 +21492,64,33.25,14,0.0 +21492,66,17,15,0.0 +21492,21,10,35,0.0 +21492,12,38,36,0.0 +21492,22,21,25,0.0 +21492,76,18,3,0.0 +21492,47,9.5,26,0.0 +21492,1,18,8,0.0 +21492,51,53,8,0.0 +21492,27,43.9,43,0.0 +21492,57,19.5,23,0.0 +21492,17,39,19,0.0 +21492,39,18,40,0.0 +21492,74,10,12,0.0 +21492,26,31.23,20,0.0 +21492,53,32.8,38,0.0 +21492,45,9.5,33,0.0 +21492,43,46,38,0.0 +21492,46,12,31,0.0 +21492,5,21.35,30,0.0 +21492,44,19.45,41,0.0 +21492,6,25,33,0.0 +21492,23,9,36,0.0 +21492,14,23.25,21,0.0 +21492,8,40,31,0.0 +21492,70,15,32,0.0 +21492,18,62.5,49,0.0 +21492,55,24,16,0.0 +21492,62,49.3,1,0.0 +21492,59,55,14,0.0 +21492,48,12.75,35,0.0 +21492,34,14,50,0.0 +21492,10,31,43,0.0 +21492,13,6,27,0.0 +21492,15,15.5,17,0.0 +21492,31,12.5,35,0.0 +21492,33,2.5,9,0.0 +21492,69,36,12,0.0 +21492,30,25.89,20,0.0 +21492,42,14,31,0.0 +21492,73,15,31,0.0 +21492,4,22,13,0.0 +21492,71,21.5,44,0.0 +21492,75,7.75,1,0.0 +21492,2,19,9,0.0 +21492,41,9.65,36,0.0 +21492,58,13.25,46,0.0 +21492,54,7.45,30,0.0 +21492,37,26,41,0.0 +21492,11,21,47,0.0 +21492,24,4.5,29,0.0 +21492,38,263.5,8,0.0 +21492,67,14,48,0.0 +21492,68,12.5,32,0.0 +21493,4,22,14,0.0 +21493,14,23.25,33,0.0 +21493,64,33.25,31,0.0 +21493,45,9.5,36,0.0 +21493,48,12.75,50,0.0 +21493,54,7.45,36,0.0 +21493,63,43.9,37,0.0 +21493,57,19.5,31,0.0 +21493,76,18,21,0.0 +21493,10,31,25,0.0 +21493,73,15,26,0.0 +21493,29,123.79,6,0.0 +21493,8,40,9,0.0 +21493,51,53,35,0.0 +21493,11,21,31,0.0 +21493,39,18,27,0.0 +21493,38,263.5,7,0.0 +21493,18,62.5,29,0.0 +21493,19,9.2,13,0.0 +21493,1,18,11,0.0 +21493,69,36,7,0.0 +21493,36,19,47,0.0 +21493,71,21.5,16,0.0 +21493,44,19.45,38,0.0 +21493,2,19,1,0.0 +21493,12,38,45,0.0 +21493,60,34,3,0.0 +21493,52,7,44,0.0 +21493,70,15,21,0.0 +21493,37,26,29,0.0 +21493,35,18,18,0.0 +21493,75,7.75,29,0.0 +21493,47,9.5,11,0.0 +21493,58,13.25,27,0.0 +21493,65,21.05,42,0.0 +21493,33,2.5,1,0.0 +21493,22,21,42,0.0 +21493,23,9,14,0.0 +21493,31,12.5,43,0.0 +21493,42,14,23,0.0 +21494,38,263.5,9,0.0 +21495,28,45.6,36,0.0 +21495,55,24,29,0.0 +21495,65,21.05,30,0.0 +21495,49,20,40,0.0 +21495,72,34.8,36,0.0 +21495,58,13.25,21,0.0 +21495,6,25,20,0.0 +21495,64,33.25,40,0.0 +21495,30,25.89,45,0.0 +21495,19,9.2,21,0.0 +21495,73,15,19,0.0 +21495,13,6,1,0.0 +21495,70,15,44,0.0 +21495,23,9,12,0.0 +21495,18,62.5,13,0.0 +21495,32,32,25,0.0 +21495,31,12.5,2,0.0 +21496,31,12.5,10,0.0 +21496,32,32,34,0.0 +21496,28,45.6,29,0.0 +21496,62,49.3,31,0.0 +21496,44,19.45,30,0.0 +21496,64,33.25,24,0.0 +21496,52,7,6,0.0 +21496,51,53,22,0.0 +21496,20,81,16,0.0 +21496,25,14,28,0.0 +21496,3,10,15,0.0 +21496,11,21,39,0.0 +21496,37,26,6,0.0 +21496,58,13.25,28,0.0 +21496,27,43.9,2,0.0 +21496,26,31.23,7,0.0 +21496,36,19,27,0.0 +21496,24,4.5,33,0.0 +21496,5,21.35,44,0.0 +21496,19,9.2,22,0.0 +21496,7,30,13,0.0 +21496,43,46,13,0.0 +21496,42,14,6,0.0 +21496,40,18.4,2,0.0 +21496,8,40,15,0.0 +21496,4,22,33,0.0 +21496,75,7.75,46,0.0 +21496,9,97,3,0.0 +21496,57,19.5,3,0.0 +21496,60,34,46,0.0 +21496,49,20,25,0.0 +21496,29,123.79,19,0.0 +21496,14,23.25,5,0.0 +21496,45,9.5,17,0.0 +21496,68,12.5,40,0.0 +21496,12,38,49,0.0 +21496,6,25,50,0.0 +21496,47,9.5,12,0.0 +21496,46,12,34,0.0 +21496,54,7.45,17,0.0 +21496,23,9,13,0.0 +21497,12,38,47,0.0 +21498,52,7,15,0.0 +21498,17,39,39,0.0 +21498,34,14,40,0.0 +21498,27,43.9,16,0.0 +21498,28,45.6,48,0.0 +21498,57,19.5,36,0.0 +21498,69,36,41,0.0 +21498,48,12.75,50,0.0 +21498,30,25.89,41,0.0 +21498,63,43.9,44,0.0 +21498,75,7.75,48,0.0 +21498,5,21.35,41,0.0 +21498,22,21,5,0.0 +21498,49,20,19,0.0 +21498,62,49.3,16,0.0 +21498,13,6,37,0.0 +21498,47,9.5,45,0.0 +21499,67,14,10,0.0 +21499,16,17.45,4,0.0 +21499,23,9,42,0.0 +21499,44,19.45,30,0.0 +21499,43,46,41,0.0 +21499,31,12.5,32,0.0 +21499,65,21.05,39,0.0 +21499,77,13,28,0.0 +21499,72,34.8,48,0.0 +21499,68,12.5,34,0.0 +21499,46,12,9,0.0 +21499,75,7.75,12,0.0 +21499,5,21.35,50,0.0 +21499,70,15,27,0.0 +21499,47,9.5,39,0.0 +21499,10,31,29,0.0 +21499,13,6,4,0.0 +21499,59,55,25,0.0 +21499,30,25.89,48,0.0 +21499,48,12.75,49,0.0 +21499,51,53,8,0.0 +21499,69,36,50,0.0 +21499,41,9.65,31,0.0 +21499,3,10,32,0.0 +21499,18,62.5,40,0.0 +21499,7,30,10,0.0 +21499,8,40,50,0.0 +21499,14,23.25,32,0.0 +21499,24,4.5,37,0.0 +21499,6,25,44,0.0 +21499,32,32,33,0.0 +21499,17,39,28,0.0 +21499,49,20,9,0.0 +21499,19,9.2,19,0.0 +21499,1,18,7,0.0 +21499,22,21,27,0.0 +21499,58,13.25,13,0.0 +21499,28,45.6,18,0.0 +21499,12,38,37,0.0 +21499,57,19.5,5,0.0 +21499,40,18.4,26,0.0 +21499,15,15.5,4,0.0 +21499,56,38,33,0.0 +21499,45,9.5,3,0.0 +21499,33,2.5,40,0.0 +21500,21,10,28,0.0 +21500,44,19.45,16,0.0 +21500,1,18,40,0.0 +21500,10,31,25,0.0 +21500,68,12.5,47,0.0 +21500,18,62.5,25,0.0 +21500,27,43.9,18,0.0 +21500,24,4.5,17,0.0 +21500,46,12,27,0.0 +21500,62,49.3,45,0.0 +21500,29,123.79,11,0.0 +21500,72,34.8,17,0.0 +21500,25,14,3,0.0 +21500,6,25,25,0.0 +21500,22,21,33,0.0 +21500,65,21.05,33,0.0 +21500,41,9.65,44,0.0 +21500,16,17.45,35,0.0 +21500,77,13,50,0.0 +21500,66,17,39,0.0 +21500,36,19,2,0.0 +21500,63,43.9,14,0.0 +21500,40,18.4,33,0.0 +21500,73,15,25,0.0 +21500,47,9.5,8,0.0 +21500,12,38,40,0.0 +21500,35,18,19,0.0 +21500,5,21.35,44,0.0 +21500,28,45.6,39,0.0 +21500,61,28.5,28,0.0 +21500,53,32.8,12,0.0 +21500,54,7.45,37,0.0 +21500,32,32,19,0.0 +21500,20,81,18,0.0 +21500,23,9,3,0.0 +21500,50,16.25,49,0.0 +21500,59,55,11,0.0 +21500,30,25.89,34,0.0 +21500,75,7.75,22,0.0 +21500,7,30,6,0.0 +21500,60,34,22,0.0 +21500,8,40,46,0.0 +21500,51,53,44,0.0 +21500,26,31.23,22,0.0 +21500,48,12.75,11,0.0 +21501,40,18.4,13,0.0 +21501,74,10,48,0.0 +21501,12,38,18,0.0 +21501,66,17,31,0.0 +21501,37,26,28,0.0 +21501,2,19,34,0.0 +21501,41,9.65,46,0.0 +21501,21,10,20,0.0 +21501,1,18,6,0.0 +21501,19,9.2,1,0.0 +21501,39,18,7,0.0 +21501,22,21,36,0.0 +21501,62,49.3,26,0.0 +21501,13,6,33,0.0 +21501,64,33.25,34,0.0 +21501,7,30,50,0.0 +21501,45,9.5,28,0.0 +21501,33,2.5,16,0.0 +21501,11,21,15,0.0 +21501,58,13.25,44,0.0 +21501,43,46,35,0.0 +21501,4,22,39,0.0 +21501,29,123.79,31,0.0 +21501,77,13,3,0.0 +21501,67,14,46,0.0 +21501,72,34.8,9,0.0 +21501,47,9.5,41,0.0 +21501,27,43.9,49,0.0 +21501,50,16.25,34,0.0 +21501,31,12.5,42,0.0 +21501,75,7.75,6,0.0 +21501,44,19.45,18,0.0 +21501,38,263.5,36,0.0 +21501,46,12,49,0.0 +21501,26,31.23,39,0.0 +21501,56,38,12,0.0 +21501,17,39,26,0.0 +21501,61,28.5,49,0.0 +21501,9,97,14,0.0 +21501,59,55,32,0.0 +21501,60,34,24,0.0 +21501,36,19,15,0.0 +21501,14,23.25,42,0.0 +21501,20,81,38,0.0 +21501,51,53,40,0.0 +21501,5,21.35,11,0.0 +21501,55,24,1,0.0 +21501,34,14,1,0.0 +21501,15,15.5,31,0.0 +21501,48,12.75,18,0.0 +21501,68,12.5,50,0.0 +21501,10,31,19,0.0 +21501,28,45.6,44,0.0 +21501,65,21.05,49,0.0 +21501,6,25,4,0.0 +21501,42,14,43,0.0 +21501,16,17.45,23,0.0 +21501,53,32.8,42,0.0 +21501,35,18,46,0.0 +21501,70,15,9,0.0 +21501,52,7,49,0.0 +21501,8,40,30,0.0 +21502,32,32,27,0.0 +21502,4,22,33,0.0 +21502,35,18,26,0.0 +21502,38,263.5,4,0.0 +21502,73,15,35,0.0 +21502,14,23.25,3,0.0 +21502,34,14,45,0.0 +21502,41,9.65,50,0.0 +21502,12,38,47,0.0 +21502,19,9.2,18,0.0 +21502,27,43.9,47,0.0 +21502,24,4.5,3,0.0 +21502,53,32.8,40,0.0 +21502,15,15.5,48,0.0 +21502,46,12,45,0.0 +21502,13,6,40,0.0 +21502,64,33.25,41,0.0 +21502,43,46,40,0.0 +21502,2,19,43,0.0 +21502,56,38,10,0.0 +21502,69,36,14,0.0 +21502,70,15,19,0.0 +21502,3,10,47,0.0 +21502,74,10,17,0.0 +21502,37,26,26,0.0 +21502,17,39,27,0.0 +21502,55,24,23,0.0 +21502,28,45.6,3,0.0 +21502,68,12.5,19,0.0 +21502,30,25.89,19,0.0 +21502,23,9,24,0.0 +21502,9,97,3,0.0 +21502,29,123.79,24,0.0 +21502,66,17,16,0.0 +21502,52,7,3,0.0 +21502,49,20,32,0.0 +21502,18,62.5,23,0.0 +21502,61,28.5,37,0.0 +21503,36,19,15,0.0 +21503,13,6,30,0.0 +21503,65,21.05,25,0.0 +21503,26,31.23,40,0.0 +21503,31,12.5,2,0.0 +21503,27,43.9,27,0.0 +21503,19,9.2,12,0.0 +21503,42,14,3,0.0 +21503,63,43.9,34,0.0 +21503,39,18,26,0.0 +21503,67,14,28,0.0 +21503,17,39,46,0.0 +21503,52,7,15,0.0 +21503,41,9.65,6,0.0 +21503,55,24,8,0.0 +21503,69,36,16,0.0 +21503,47,9.5,12,0.0 +21503,61,28.5,4,0.0 +21503,7,30,7,0.0 +21503,56,38,3,0.0 +21503,16,17.45,27,0.0 +21503,30,25.89,26,0.0 +21503,51,53,13,0.0 +21503,21,10,25,0.0 +21503,50,16.25,47,0.0 +21503,68,12.5,15,0.0 +21503,64,33.25,32,0.0 +21503,2,19,42,0.0 +21503,14,23.25,14,0.0 +21503,38,263.5,40,0.0 +21503,70,15,41,0.0 +21503,20,81,11,0.0 +21503,72,34.8,39,0.0 +21503,74,10,45,0.0 +21503,34,14,44,0.0 +21503,24,4.5,48,0.0 +21503,5,21.35,23,0.0 +21503,62,49.3,5,0.0 +21503,44,19.45,25,0.0 +21503,73,15,11,0.0 +21503,1,18,25,0.0 +21503,29,123.79,44,0.0 +21503,11,21,23,0.0 +21503,40,18.4,41,0.0 +21503,77,13,27,0.0 +21503,48,12.75,26,0.0 +21503,66,17,1,0.0 +21503,58,13.25,13,0.0 +21503,49,20,11,0.0 +21503,15,15.5,14,0.0 +21503,6,25,46,0.0 +21503,45,9.5,44,0.0 +21503,54,7.45,47,0.0 +21503,37,26,16,0.0 +21503,22,21,4,0.0 +21503,43,46,37,0.0 +21503,75,7.75,9,0.0 +21503,18,62.5,31,0.0 +21503,8,40,46,0.0 +21503,53,32.8,49,0.0 +21503,23,9,47,0.0 +21503,57,19.5,33,0.0 +21504,48,12.75,33,0.0 +21504,29,123.79,46,0.0 +21504,73,15,7,0.0 +21504,9,97,11,0.0 +21504,46,12,25,0.0 +21504,1,18,26,0.0 +21504,20,81,35,0.0 +21504,21,10,35,0.0 +21504,33,2.5,21,0.0 +21504,22,21,19,0.0 +21504,39,18,21,0.0 +21504,74,10,39,0.0 +21504,67,14,16,0.0 +21504,76,18,42,0.0 +21504,43,46,24,0.0 +21504,6,25,13,0.0 +21504,18,62.5,27,0.0 +21504,44,19.45,34,0.0 +21504,52,7,26,0.0 +21504,71,21.5,18,0.0 +21504,77,13,28,0.0 +21504,66,17,19,0.0 +21504,17,39,23,0.0 +21504,34,14,44,0.0 +21504,59,55,13,0.0 +21504,75,7.75,44,0.0 +21504,49,20,30,0.0 +21504,56,38,19,0.0 +21504,57,19.5,19,0.0 +21504,61,28.5,4,0.0 +21504,28,45.6,22,0.0 +21504,70,15,29,0.0 +21504,26,31.23,46,0.0 +21504,63,43.9,50,0.0 +21504,10,31,24,0.0 +21504,55,24,37,0.0 +21504,13,6,39,0.0 +21504,64,33.25,43,0.0 +21504,36,19,47,0.0 +21504,42,14,8,0.0 +21504,3,10,22,0.0 +21504,32,32,43,0.0 +21504,4,22,11,0.0 +21504,50,16.25,46,0.0 +21504,16,17.45,19,0.0 +21504,47,9.5,6,0.0 +21504,65,21.05,6,0.0 +21504,25,14,27,0.0 +21504,30,25.89,28,0.0 +21504,51,53,40,0.0 +21504,53,32.8,4,0.0 +21504,7,30,17,0.0 +21504,58,13.25,33,0.0 +21504,37,26,36,0.0 +21504,38,263.5,27,0.0 +21504,72,34.8,1,0.0 +21504,69,36,13,0.0 +21504,68,12.5,11,0.0 +21505,31,12.5,26,0.0 +21505,43,46,14,0.0 +21505,2,19,12,0.0 +21505,16,17.45,18,0.0 +21505,6,25,12,0.0 +21505,36,19,1,0.0 +21505,17,39,14,0.0 +21505,47,9.5,8,0.0 +21505,53,32.8,3,0.0 +21505,42,14,2,0.0 +21505,57,19.5,36,0.0 +21505,3,10,24,0.0 +21505,46,12,34,0.0 +21505,15,15.5,32,0.0 +21505,19,9.2,23,0.0 +21505,41,9.65,20,0.0 +21505,67,14,29,0.0 +21505,61,28.5,18,0.0 +21505,64,33.25,18,0.0 +21505,27,43.9,10,0.0 +21505,77,13,18,0.0 +21505,28,45.6,7,0.0 +21505,23,9,19,0.0 +21505,66,17,41,0.0 +21505,52,7,28,0.0 +21505,29,123.79,28,0.0 +21505,71,21.5,28,0.0 +21505,49,20,11,0.0 +21505,18,62.5,4,0.0 +21505,59,55,17,0.0 +21505,37,26,2,0.0 +21505,54,7.45,7,0.0 +21505,1,18,50,0.0 +21505,25,14,41,0.0 +21505,12,38,42,0.0 +21505,39,18,25,0.0 +21505,30,25.89,10,0.0 +21505,68,12.5,32,0.0 +21505,69,36,33,0.0 +21505,60,34,2,0.0 +21505,62,49.3,17,0.0 +21505,74,10,10,0.0 +21505,32,32,33,0.0 +21505,76,18,12,0.0 +21505,50,16.25,47,0.0 +21505,70,15,24,0.0 +21505,10,31,34,0.0 +21505,34,14,32,0.0 +21505,8,40,44,0.0 +21505,65,21.05,6,0.0 +21505,45,9.5,47,0.0 +21505,56,38,20,0.0 +21505,35,18,9,0.0 +21505,72,34.8,5,0.0 +21505,38,263.5,39,0.0 +21505,58,13.25,28,0.0 +21505,14,23.25,12,0.0 +21505,73,15,24,0.0 +21505,9,97,38,0.0 +21505,5,21.35,17,0.0 +21505,44,19.45,22,0.0 +21505,4,22,27,0.0 +21505,26,31.23,45,0.0 +21505,20,81,6,0.0 +21505,48,12.75,10,0.0 +21505,63,43.9,22,0.0 +21505,40,18.4,45,0.0 +21505,24,4.5,45,0.0 +21505,21,10,40,0.0 +21505,75,7.75,36,0.0 +21505,51,53,30,0.0 +21505,55,24,45,0.0 +21505,33,2.5,42,0.0 +21505,22,21,27,0.0 +21506,34,14,13,0.0 +21506,46,12,35,0.0 +21506,72,34.8,28,0.0 +21506,75,7.75,42,0.0 +21506,53,32.8,27,0.0 +21506,48,12.75,31,0.0 +21506,3,10,16,0.0 +21506,15,15.5,34,0.0 +21506,59,55,18,0.0 +21506,35,18,27,0.0 +21506,54,7.45,45,0.0 +21506,31,12.5,29,0.0 +21506,60,34,40,0.0 +21506,55,24,11,0.0 +21506,69,36,25,0.0 +21506,76,18,4,0.0 +21506,41,9.65,16,0.0 +21506,65,21.05,50,0.0 +21506,56,38,7,0.0 +21506,45,9.5,8,0.0 +21506,51,53,46,0.0 +21506,47,9.5,13,0.0 +21506,39,18,14,0.0 +21506,38,263.5,33,0.0 +21506,61,28.5,8,0.0 +21506,2,19,4,0.0 +21506,20,81,21,0.0 +21506,6,25,45,0.0 +21506,5,21.35,11,0.0 +21506,23,9,43,0.0 +21506,27,43.9,25,0.0 +21506,32,32,7,0.0 +21506,57,19.5,11,0.0 +21506,16,17.45,42,0.0 +21506,62,49.3,39,0.0 +21506,17,39,30,0.0 +21507,51,53,47,0.0 +21507,28,45.6,29,0.0 +21507,27,43.9,9,0.0 +21507,58,13.25,26,0.0 +21507,33,2.5,2,0.0 +21507,25,14,31,0.0 +21507,22,21,37,0.0 +21507,14,23.25,11,0.0 +21507,42,14,34,0.0 +21507,45,9.5,30,0.0 +21507,48,12.75,19,0.0 +21507,75,7.75,4,0.0 +21507,32,32,38,0.0 +21507,8,40,14,0.0 +21507,23,9,31,0.0 +21507,62,49.3,7,0.0 +21507,65,21.05,29,0.0 +21507,68,12.5,9,0.0 +21507,41,9.65,47,0.0 +21507,46,12,29,0.0 +21507,20,81,35,0.0 +21507,34,14,21,0.0 +21507,49,20,36,0.0 +21507,4,22,20,0.0 +21507,67,14,19,0.0 +21507,59,55,17,0.0 +21507,57,19.5,44,0.0 +21507,53,32.8,44,0.0 +21507,3,10,40,0.0 +21507,47,9.5,25,0.0 +21507,73,15,1,0.0 +21507,60,34,14,0.0 +21507,18,62.5,5,0.0 +21507,66,17,19,0.0 +21507,9,97,29,0.0 +21507,70,15,37,0.0 +21507,37,26,36,0.0 +21508,40,18.4,17,0.0 +21508,48,12.75,36,0.0 +21508,57,19.5,19,0.0 +21508,41,9.65,6,0.0 +21508,60,34,17,0.0 +21508,15,15.5,36,0.0 +21508,77,13,29,0.0 +21508,32,32,7,0.0 +21508,28,45.6,47,0.0 +21508,26,31.23,27,0.0 +21508,63,43.9,20,0.0 +21508,74,10,9,0.0 +21508,31,12.5,6,0.0 +21508,67,14,16,0.0 +21508,44,19.45,34,0.0 +21508,25,14,42,0.0 +21508,9,97,20,0.0 +21508,46,12,31,0.0 +21508,61,28.5,39,0.0 +21508,70,15,25,0.0 +21508,71,21.5,50,0.0 +21508,16,17.45,22,0.0 +21508,23,9,29,0.0 +21508,47,9.5,41,0.0 +21508,33,2.5,43,0.0 +21508,45,9.5,22,0.0 +21508,17,39,6,0.0 +21508,72,34.8,39,0.0 +21508,12,38,21,0.0 +21508,66,17,34,0.0 +21508,58,13.25,43,0.0 +21508,50,16.25,33,0.0 +21508,19,9.2,22,0.0 +21508,18,62.5,15,0.0 +21508,64,33.25,9,0.0 +21508,37,26,43,0.0 +21508,36,19,35,0.0 +21508,43,46,33,0.0 +21508,1,18,38,0.0 +21508,68,12.5,32,0.0 +21508,75,7.75,5,0.0 +21508,8,40,26,0.0 +21508,22,21,20,0.0 +21508,7,30,34,0.0 +21508,27,43.9,15,0.0 +21508,21,10,35,0.0 +21508,13,6,14,0.0 +21508,52,7,46,0.0 +21508,53,32.8,35,0.0 +21508,6,25,42,0.0 +21508,3,10,19,0.0 +21508,34,14,22,0.0 +21508,24,4.5,44,0.0 +21508,14,23.25,13,0.0 +21508,20,81,21,0.0 +21508,5,21.35,43,0.0 +21508,62,49.3,44,0.0 +21509,2,19,1,0.0 +21509,9,97,20,0.0 +21509,22,21,22,0.0 +21509,54,7.45,41,0.0 +21509,56,38,44,0.0 +21509,26,31.23,13,0.0 +21509,57,19.5,13,0.0 +21509,15,15.5,6,0.0 +21509,64,33.25,39,0.0 +21509,67,14,18,0.0 +21509,66,17,24,0.0 +21509,14,23.25,40,0.0 +21509,73,15,11,0.0 +21509,60,34,16,0.0 +21509,76,18,25,0.0 +21509,31,12.5,50,0.0 +21509,37,26,2,0.0 +21509,61,28.5,19,0.0 +21509,53,32.8,14,0.0 +21509,32,32,45,0.0 +21509,13,6,46,0.0 +21509,63,43.9,43,0.0 +21509,65,21.05,3,0.0 +21509,19,9.2,25,0.0 +21509,51,53,42,0.0 +21509,39,18,36,0.0 +21509,48,12.75,29,0.0 +21509,30,25.89,11,0.0 +21509,28,45.6,22,0.0 +21509,49,20,40,0.0 +21509,70,15,13,0.0 +21509,68,12.5,21,0.0 +21509,8,40,16,0.0 +21509,45,9.5,19,0.0 +21509,7,30,36,0.0 +21509,71,21.5,48,0.0 +21509,72,34.8,39,0.0 +21509,41,9.65,8,0.0 +21509,1,18,30,0.0 +21509,6,25,40,0.0 +21509,44,19.45,13,0.0 +21509,52,7,37,0.0 +21509,35,18,6,0.0 +21509,16,17.45,50,0.0 +21509,58,13.25,2,0.0 +21509,43,46,49,0.0 +21509,18,62.5,13,0.0 +21509,77,13,34,0.0 +21509,29,123.79,22,0.0 +21509,3,10,15,0.0 +21509,33,2.5,11,0.0 +21509,10,31,47,0.0 +21509,4,22,16,0.0 +21509,11,21,27,0.0 +21509,36,19,37,0.0 +21509,46,12,10,0.0 +21509,74,10,44,0.0 +21509,42,14,17,0.0 +21510,57,19.5,46,0.0 +21510,67,14,10,0.0 +21510,68,12.5,29,0.0 +21510,16,17.45,38,0.0 +21510,7,30,21,0.0 +21511,27,43.9,48,0.0 +21511,2,19,22,0.0 +21511,58,13.25,34,0.0 +21511,48,12.75,31,0.0 +21511,47,9.5,34,0.0 +21511,12,38,28,0.0 +21511,45,9.5,8,0.0 +21511,56,38,31,0.0 +21511,33,2.5,31,0.0 +21511,76,18,10,0.0 +21511,26,31.23,12,0.0 +21511,4,22,23,0.0 +21511,64,33.25,45,0.0 +21511,68,12.5,29,0.0 +21511,41,9.65,9,0.0 +21511,66,17,50,0.0 +21511,37,26,42,0.0 +21511,70,15,6,0.0 +21511,24,4.5,42,0.0 +21511,54,7.45,9,0.0 +21511,55,24,24,0.0 +21511,34,14,6,0.0 +21511,72,34.8,39,0.0 +21511,49,20,40,0.0 +21511,7,30,20,0.0 +21511,67,14,47,0.0 +21511,74,10,28,0.0 +21511,8,40,16,0.0 +21511,32,32,17,0.0 +21511,39,18,47,0.0 +21511,63,43.9,23,0.0 +21511,75,7.75,29,0.0 +21511,53,32.8,38,0.0 +21511,5,21.35,33,0.0 +21511,18,62.5,7,0.0 +21511,17,39,20,0.0 +21511,35,18,50,0.0 +21511,42,14,4,0.0 +21511,25,14,20,0.0 +21511,3,10,47,0.0 +21511,16,17.45,40,0.0 +21511,20,81,21,0.0 +21511,9,97,17,0.0 +21511,1,18,43,0.0 +21511,46,12,37,0.0 +21511,11,21,31,0.0 +21511,50,16.25,13,0.0 +21511,71,21.5,11,0.0 +21511,31,12.5,18,0.0 +21511,44,19.45,20,0.0 +21511,40,18.4,5,0.0 +21511,28,45.6,18,0.0 +21511,36,19,3,0.0 +21511,57,19.5,34,0.0 +21512,30,25.89,31,0.0 +21512,18,62.5,26,0.0 +21512,55,24,41,0.0 +21512,54,7.45,9,0.0 +21512,64,33.25,32,0.0 +21512,53,32.8,16,0.0 +21512,17,39,39,0.0 +21512,11,21,17,0.0 +21512,72,34.8,47,0.0 +21512,26,31.23,38,0.0 +21512,43,46,10,0.0 +21512,35,18,42,0.0 +21512,60,34,19,0.0 +21512,74,10,18,0.0 +21512,57,19.5,19,0.0 +21512,61,28.5,7,0.0 +21512,76,18,11,0.0 +21512,29,123.79,41,0.0 +21512,31,12.5,39,0.0 +21512,37,26,41,0.0 +21512,65,21.05,39,0.0 +21512,46,12,19,0.0 +21512,23,9,22,0.0 +21512,52,7,40,0.0 +21512,19,9.2,14,0.0 +21512,69,36,38,0.0 +21512,1,18,47,0.0 +21512,48,12.75,47,0.0 +21512,15,15.5,38,0.0 +21512,45,9.5,16,0.0 +21512,36,19,40,0.0 +21512,51,53,18,0.0 +21512,6,25,39,0.0 +21512,10,31,31,0.0 +21512,68,12.5,48,0.0 +21512,27,43.9,18,0.0 +21512,66,17,18,0.0 +21512,71,21.5,40,0.0 +21512,12,38,22,0.0 +21512,14,23.25,40,0.0 +21512,21,10,49,0.0 +21512,75,7.75,43,0.0 +21512,3,10,41,0.0 +21512,13,6,23,0.0 +21512,2,19,24,0.0 +21512,58,13.25,27,0.0 +21512,9,97,7,0.0 +21512,34,14,44,0.0 +21512,28,45.6,34,0.0 +21512,38,263.5,42,0.0 +21512,70,15,29,0.0 +21512,56,38,48,0.0 +21513,76,18,2,0.0 +21513,13,6,6,0.0 +21513,60,34,45,0.0 +21513,49,20,7,0.0 +21513,20,81,31,0.0 +21513,28,45.6,26,0.0 +21513,73,15,31,0.0 +21513,69,36,17,0.0 +21513,27,43.9,5,0.0 +21513,50,16.25,41,0.0 +21513,41,9.65,38,0.0 +21513,18,62.5,31,0.0 +21513,58,13.25,38,0.0 +21513,37,26,36,0.0 +21513,71,21.5,43,0.0 +21513,14,23.25,40,0.0 +21513,38,263.5,17,0.0 +21513,51,53,18,0.0 +21513,62,49.3,7,0.0 +21514,58,13.25,44,0.0 +21514,47,9.5,27,0.0 +21514,25,14,7,0.0 +21514,31,12.5,50,0.0 +21514,76,18,5,0.0 +21514,28,45.6,9,0.0 +21514,40,18.4,13,0.0 +21514,62,49.3,12,0.0 +21514,36,19,49,0.0 +21514,22,21,30,0.0 +21514,65,21.05,24,0.0 +21514,19,9.2,22,0.0 +21514,16,17.45,14,0.0 +21514,18,62.5,2,0.0 +21514,30,25.89,22,0.0 +21514,45,9.5,25,0.0 +21514,14,23.25,22,0.0 +21514,3,10,9,0.0 +21514,66,17,19,0.0 +21514,71,21.5,12,0.0 +21514,8,40,45,0.0 +21514,56,38,42,0.0 +21514,5,21.35,1,0.0 +21514,4,22,44,0.0 +21514,6,25,16,0.0 +21514,61,28.5,22,0.0 +21514,26,31.23,24,0.0 +21514,69,36,30,0.0 +21514,21,10,14,0.0 +21514,29,123.79,24,0.0 +21514,52,7,32,0.0 +21514,67,14,5,0.0 +21514,48,12.75,25,0.0 +21514,38,263.5,48,0.0 +21514,63,43.9,1,0.0 +21514,50,16.25,38,0.0 +21514,51,53,31,0.0 +21514,43,46,2,0.0 +21514,42,14,14,0.0 +21514,27,43.9,18,0.0 +21514,59,55,25,0.0 +21514,74,10,19,0.0 +21514,35,18,38,0.0 +21514,13,6,34,0.0 +21514,53,32.8,1,0.0 +21514,24,4.5,32,0.0 +21514,23,9,9,0.0 +21514,73,15,11,0.0 +21514,34,14,26,0.0 +21514,46,12,24,0.0 +21514,17,39,6,0.0 +21514,7,30,43,0.0 +21514,32,32,45,0.0 +21514,15,15.5,21,0.0 +21514,11,21,37,0.0 +21514,12,38,50,0.0 +21514,37,26,19,0.0 +21514,70,15,37,0.0 +21514,75,7.75,23,0.0 +21514,64,33.25,46,0.0 +21514,2,19,12,0.0 +21514,20,81,31,0.0 +21514,39,18,1,0.0 +21514,72,34.8,44,0.0 +21514,54,7.45,13,0.0 +21514,41,9.65,42,0.0 +21514,77,13,39,0.0 +21514,10,31,8,0.0 +21514,60,34,50,0.0 +21514,1,18,12,0.0 +21514,9,97,22,0.0 +21514,68,12.5,22,0.0 +21514,33,2.5,10,0.0 +21514,55,24,4,0.0 +21515,17,39,19,0.0 +21515,22,21,47,0.0 +21515,7,30,43,0.0 +21515,49,20,11,0.0 +21515,29,123.79,18,0.0 +21515,28,45.6,19,0.0 +21515,21,10,21,0.0 +21515,1,18,18,0.0 +21515,56,38,27,0.0 +21515,44,19.45,45,0.0 +21515,33,2.5,10,0.0 +21515,68,12.5,17,0.0 +21515,9,97,49,0.0 +21515,73,15,1,0.0 +21515,52,7,10,0.0 +21515,5,21.35,29,0.0 +21515,50,16.25,25,0.0 +21515,66,17,46,0.0 +21515,40,18.4,43,0.0 +21515,65,21.05,38,0.0 +21515,42,14,15,0.0 +21515,54,7.45,38,0.0 +21515,57,19.5,37,0.0 +21515,61,28.5,35,0.0 +21515,27,43.9,20,0.0 +21516,7,30,32,0.0 +21516,9,97,21,0.0 +21516,26,31.23,50,0.0 +21516,6,25,31,0.0 +21516,56,38,46,0.0 +21516,67,14,26,0.0 +21516,14,23.25,30,0.0 +21516,46,12,34,0.0 +21516,16,17.45,14,0.0 +21516,19,9.2,50,0.0 +21516,58,13.25,19,0.0 +21517,45,9.5,1,0.0 +21517,10,31,10,0.0 +21517,37,26,19,0.0 +21517,24,4.5,26,0.0 +21517,33,2.5,4,0.0 +21517,38,263.5,35,0.0 +21517,13,6,14,0.0 +21517,70,15,12,0.0 +21517,69,36,4,0.0 +21517,64,33.25,13,0.0 +21517,76,18,21,0.0 +21517,30,25.89,40,0.0 +21517,21,10,6,0.0 +21517,62,49.3,41,0.0 +21517,68,12.5,25,0.0 +21517,74,10,16,0.0 +21517,51,53,15,0.0 +21517,54,7.45,33,0.0 +21517,14,23.25,23,0.0 +21517,71,21.5,16,0.0 +21517,65,21.05,14,0.0 +21517,23,9,2,0.0 +21517,40,18.4,32,0.0 +21517,67,14,38,0.0 +21517,73,15,11,0.0 +21517,42,14,50,0.0 +21517,57,19.5,20,0.0 +21517,17,39,10,0.0 +21517,20,81,3,0.0 +21517,36,19,22,0.0 +21517,72,34.8,48,0.0 +21517,16,17.45,7,0.0 +21517,35,18,4,0.0 +21517,41,9.65,18,0.0 +21517,22,21,37,0.0 +21517,1,18,18,0.0 +21517,29,123.79,39,0.0 +21517,27,43.9,10,0.0 +21517,48,12.75,38,0.0 +21517,9,97,14,0.0 +21517,56,38,48,0.0 +21517,53,32.8,28,0.0 +21517,46,12,8,0.0 +21517,6,25,33,0.0 +21517,8,40,43,0.0 +21517,49,20,39,0.0 +21517,58,13.25,2,0.0 +21517,39,18,43,0.0 +21517,77,13,44,0.0 +21517,25,14,42,0.0 +21517,60,34,33,0.0 +21517,28,45.6,3,0.0 +21517,15,15.5,36,0.0 +21517,52,7,50,0.0 +21518,4,22,6,0.0 +21518,1,18,42,0.0 +21518,11,21,14,0.0 +21518,32,32,1,0.0 +21518,59,55,33,0.0 +21518,10,31,46,0.0 +21518,52,7,30,0.0 +21518,63,43.9,29,0.0 +21518,53,32.8,11,0.0 +21518,13,6,20,0.0 +21518,2,19,40,0.0 +21518,22,21,22,0.0 +21518,35,18,48,0.0 +21518,75,7.75,49,0.0 +21518,69,36,36,0.0 +21518,67,14,38,0.0 +21518,48,12.75,41,0.0 +21518,30,25.89,32,0.0 +21518,15,15.5,1,0.0 +21518,25,14,15,0.0 +21518,8,40,43,0.0 +21519,18,62.5,44,0.0 +21519,48,12.75,10,0.0 +21519,73,15,44,0.0 +21519,61,28.5,16,0.0 +21519,3,10,23,0.0 +21519,32,32,21,0.0 +21519,15,15.5,44,0.0 +21519,44,19.45,7,0.0 +21519,46,12,10,0.0 +21519,13,6,35,0.0 +21519,39,18,13,0.0 +21519,40,18.4,34,0.0 +21519,56,38,36,0.0 +21519,1,18,43,0.0 +21519,21,10,37,0.0 +21519,60,34,7,0.0 +21519,31,12.5,15,0.0 +21519,26,31.23,3,0.0 +21519,23,9,11,0.0 +21519,24,4.5,35,0.0 +21519,4,22,21,0.0 +21519,41,9.65,45,0.0 +21519,2,19,31,0.0 +21519,47,9.5,37,0.0 +21519,19,9.2,47,0.0 +21519,38,263.5,44,0.0 +21519,68,12.5,5,0.0 +21519,63,43.9,38,0.0 +21519,42,14,3,0.0 +21519,25,14,25,0.0 +21519,6,25,50,0.0 +21519,75,7.75,25,0.0 +21519,37,26,18,0.0 +21519,52,7,45,0.0 +21519,57,19.5,9,0.0 +21519,59,55,5,0.0 +21519,29,123.79,34,0.0 +21520,16,17.45,31,0.0 +21520,36,19,20,0.0 +21520,41,9.65,49,0.0 +21520,70,15,50,0.0 +21520,59,55,18,0.0 +21520,24,4.5,24,0.0 +21520,42,14,37,0.0 +21520,29,123.79,45,0.0 +21520,6,25,39,0.0 +21520,56,38,22,0.0 +21520,38,263.5,44,0.0 +21520,31,12.5,4,0.0 +21520,62,49.3,5,0.0 +21520,73,15,26,0.0 +21520,58,13.25,26,0.0 +21520,50,16.25,32,0.0 +21520,11,21,15,0.0 +21520,48,12.75,15,0.0 +21520,72,34.8,6,0.0 +21520,15,15.5,17,0.0 +21520,2,19,21,0.0 +21520,51,53,39,0.0 +21520,63,43.9,25,0.0 +21520,8,40,22,0.0 +21520,44,19.45,7,0.0 +21520,22,21,15,0.0 +21520,75,7.75,27,0.0 +21520,34,14,24,0.0 +21520,45,9.5,14,0.0 +21520,19,9.2,38,0.0 +21520,17,39,7,0.0 +21520,33,2.5,28,0.0 +21521,33,2.5,30,0.0 +21521,52,7,31,0.0 +21521,11,21,6,0.0 +21521,60,34,34,0.0 +21521,26,31.23,12,0.0 +21521,59,55,9,0.0 +21522,30,25.89,40,0.0 +21522,67,14,38,0.0 +21522,55,24,35,0.0 +21522,10,31,47,0.0 +21522,7,30,23,0.0 +21522,20,81,49,0.0 +21522,52,7,20,0.0 +21522,37,26,43,0.0 +21522,13,6,6,0.0 +21522,25,14,4,0.0 +21522,77,13,1,0.0 +21522,31,12.5,23,0.0 +21522,14,23.25,45,0.0 +21522,60,34,38,0.0 +21522,28,45.6,42,0.0 +21522,50,16.25,34,0.0 +21522,26,31.23,40,0.0 +21522,39,18,49,0.0 +21522,17,39,38,0.0 +21522,5,21.35,27,0.0 +21522,36,19,5,0.0 +21522,29,123.79,9,0.0 +21522,35,18,37,0.0 +21522,24,4.5,47,0.0 +21522,58,13.25,50,0.0 +21522,59,55,37,0.0 +21522,48,12.75,45,0.0 +21522,63,43.9,3,0.0 +21522,32,32,5,0.0 +21522,40,18.4,10,0.0 +21522,73,15,28,0.0 +21522,71,21.5,43,0.0 +21522,57,19.5,16,0.0 +21522,66,17,29,0.0 +21522,43,46,41,0.0 +21522,74,10,23,0.0 +21522,27,43.9,20,0.0 +21522,69,36,14,0.0 +21522,44,19.45,7,0.0 +21522,41,9.65,24,0.0 +21522,72,34.8,30,0.0 +21522,46,12,9,0.0 +21522,51,53,3,0.0 +21522,53,32.8,21,0.0 +21522,16,17.45,48,0.0 +21522,1,18,38,0.0 +21522,38,263.5,43,0.0 +21522,21,10,7,0.0 +21522,9,97,16,0.0 +21522,19,9.2,46,0.0 +21522,70,15,43,0.0 +21522,23,9,50,0.0 +21522,12,38,6,0.0 +21522,45,9.5,16,0.0 +21523,13,6,13,0.0 +21523,30,25.89,7,0.0 +21523,69,36,33,0.0 +21523,42,14,5,0.0 +21523,23,9,37,0.0 +21523,76,18,21,0.0 +21523,8,40,41,0.0 +21523,41,9.65,41,0.0 +21523,57,19.5,11,0.0 +21523,33,2.5,26,0.0 +21523,71,21.5,2,0.0 +21523,34,14,14,0.0 +21523,40,18.4,9,0.0 +21523,58,13.25,7,0.0 +21523,49,20,12,0.0 +21523,25,14,37,0.0 +21523,32,32,29,0.0 +21523,66,17,40,0.0 +21523,61,28.5,48,0.0 +21523,53,32.8,20,0.0 +21523,17,39,40,0.0 +21523,22,21,38,0.0 +21523,48,12.75,32,0.0 +21523,62,49.3,13,0.0 +21523,28,45.6,1,0.0 +21523,31,12.5,5,0.0 +21523,46,12,33,0.0 +21523,5,21.35,1,0.0 +21523,51,53,22,0.0 +21523,64,33.25,25,0.0 +21523,35,18,29,0.0 +21523,43,46,5,0.0 +21523,16,17.45,9,0.0 +21523,29,123.79,2,0.0 +21523,27,43.9,47,0.0 +21523,56,38,2,0.0 +21523,68,12.5,43,0.0 +21523,37,26,50,0.0 +21523,59,55,12,0.0 +21523,44,19.45,35,0.0 +21524,29,123.79,25,0.0 +21524,30,25.89,8,0.0 +21524,56,38,2,0.0 +21524,7,30,4,0.0 +21524,76,18,2,0.0 +21524,38,263.5,18,0.0 +21524,52,7,46,0.0 +21524,34,14,25,0.0 +21524,25,14,9,0.0 +21524,33,2.5,42,0.0 +21524,43,46,37,0.0 +21524,64,33.25,42,0.0 +21524,45,9.5,16,0.0 +21524,32,32,49,0.0 +21524,10,31,42,0.0 +21524,59,55,7,0.0 +21525,69,36,39,0.0 +21525,76,18,9,0.0 +21525,8,40,30,0.0 +21525,51,53,12,0.0 +21525,31,12.5,45,0.0 +21525,28,45.6,41,0.0 +21525,56,38,39,0.0 +21525,39,18,8,0.0 +21525,70,15,43,0.0 +21525,22,21,5,0.0 +21525,25,14,7,0.0 +21525,14,23.25,42,0.0 +21525,20,81,26,0.0 +21525,58,13.25,7,0.0 +21525,9,97,5,0.0 +21525,19,9.2,4,0.0 +21525,13,6,15,0.0 +21525,53,32.8,20,0.0 +21525,68,12.5,31,0.0 +21525,55,24,48,0.0 +21525,35,18,42,0.0 +21525,10,31,4,0.0 +21525,44,19.45,36,0.0 +21525,41,9.65,15,0.0 +21525,37,26,46,0.0 +21525,38,263.5,1,0.0 +21525,12,38,33,0.0 +21525,32,32,25,0.0 +21525,65,21.05,8,0.0 +21525,23,9,46,0.0 +21525,72,34.8,37,0.0 +21525,27,43.9,50,0.0 +21525,75,7.75,31,0.0 +21526,14,23.25,21,0.0 +21526,35,18,14,0.0 +21526,41,9.65,35,0.0 +21526,64,33.25,4,0.0 +21526,29,123.79,6,0.0 +21526,50,16.25,35,0.0 +21526,69,36,41,0.0 +21526,18,62.5,4,0.0 +21526,27,43.9,32,0.0 +21526,54,7.45,23,0.0 +21526,37,26,26,0.0 +21526,3,10,34,0.0 +21526,76,18,45,0.0 +21526,4,22,2,0.0 +21526,58,13.25,45,0.0 +21526,53,32.8,41,0.0 +21526,47,9.5,43,0.0 +21526,19,9.2,16,0.0 +21526,6,25,20,0.0 +21526,21,10,38,0.0 +21526,36,19,34,0.0 +21526,25,14,31,0.0 +21526,33,2.5,32,0.0 +21526,46,12,33,0.0 +21526,48,12.75,33,0.0 +21526,55,24,30,0.0 +21526,44,19.45,30,0.0 +21526,10,31,3,0.0 +21526,23,9,30,0.0 +21526,59,55,10,0.0 +21526,15,15.5,19,0.0 +21526,39,18,49,0.0 +21526,65,21.05,19,0.0 +21526,38,263.5,3,0.0 +21526,71,21.5,17,0.0 +21526,32,32,1,0.0 +21526,45,9.5,42,0.0 +21526,61,28.5,16,0.0 +21526,13,6,36,0.0 +21526,5,21.35,32,0.0 +21526,52,7,26,0.0 +21526,72,34.8,27,0.0 +21526,2,19,45,0.0 +21526,34,14,17,0.0 +21526,26,31.23,5,0.0 +21526,7,30,10,0.0 +21526,22,21,10,0.0 +21526,40,18.4,35,0.0 +21526,75,7.75,36,0.0 +21526,73,15,41,0.0 +21526,43,46,25,0.0 +21526,56,38,29,0.0 +21526,70,15,4,0.0 +21526,42,14,18,0.0 +21526,30,25.89,5,0.0 +21527,3,10,20,0.0 +21527,68,12.5,30,0.0 +21527,27,43.9,50,0.0 +21527,26,31.23,24,0.0 +21527,29,123.79,8,0.0 +21527,7,30,34,0.0 +21527,62,49.3,15,0.0 +21527,28,45.6,29,0.0 +21527,61,28.5,49,0.0 +21527,1,18,34,0.0 +21527,44,19.45,42,0.0 +21527,51,53,12,0.0 +21527,19,9.2,18,0.0 +21527,40,18.4,40,0.0 +21527,50,16.25,16,0.0 +21527,56,38,10,0.0 +21527,30,25.89,30,0.0 +21527,74,10,23,0.0 +21527,75,7.75,3,0.0 +21527,41,9.65,42,0.0 +21527,66,17,29,0.0 +21527,16,17.45,14,0.0 +21527,23,9,38,0.0 +21527,2,19,16,0.0 +21527,6,25,33,0.0 +21527,36,19,16,0.0 +21527,32,32,40,0.0 +21527,25,14,6,0.0 +21527,13,6,45,0.0 +21527,73,15,4,0.0 +21527,47,9.5,4,0.0 +21527,37,26,48,0.0 +21527,5,21.35,40,0.0 +21527,43,46,8,0.0 +21527,34,14,37,0.0 +21527,45,9.5,7,0.0 +21527,60,34,37,0.0 +21527,18,62.5,16,0.0 +21527,69,36,20,0.0 +21527,4,22,12,0.0 +21527,21,10,36,0.0 +21527,58,13.25,16,0.0 +21527,10,31,28,0.0 +21527,38,263.5,33,0.0 +21527,46,12,32,0.0 +21527,20,81,13,0.0 +21528,39,18,5,0.0 +21528,33,2.5,12,0.0 +21528,3,10,13,0.0 +21528,42,14,37,0.0 +21528,55,24,15,0.0 +21528,27,43.9,29,0.0 +21528,2,19,7,0.0 +21529,57,19.5,34,0.0 +21529,20,81,24,0.0 +21529,75,7.75,27,0.0 +21529,17,39,19,0.0 +21529,50,16.25,3,0.0 +21529,77,13,9,0.0 +21529,7,30,43,0.0 +21529,76,18,39,0.0 +21529,48,12.75,46,0.0 +21529,19,9.2,22,0.0 +21529,18,62.5,4,0.0 +21529,55,24,6,0.0 +21529,36,19,26,0.0 +21530,19,9.2,32,0.0 +21530,45,9.5,31,0.0 +21530,2,19,25,0.0 +21530,5,21.35,50,0.0 +21530,64,33.25,45,0.0 +21530,11,21,47,0.0 +21530,49,20,43,0.0 +21530,43,46,26,0.0 +21530,50,16.25,17,0.0 +21530,9,97,40,0.0 +21530,12,38,27,0.0 +21530,48,12.75,19,0.0 +21530,26,31.23,10,0.0 +21530,23,9,18,0.0 +21530,77,13,14,0.0 +21530,70,15,24,0.0 +21530,33,2.5,49,0.0 +21530,59,55,32,0.0 +21530,51,53,31,0.0 +21530,57,19.5,14,0.0 +21530,17,39,11,0.0 +21530,52,7,34,0.0 +21530,36,19,47,0.0 +21530,42,14,44,0.0 +21530,66,17,26,0.0 +21530,10,31,30,0.0 +21530,46,12,8,0.0 +21530,27,43.9,49,0.0 +21530,53,32.8,19,0.0 +21531,24,4.5,29,0.0 +21531,7,30,20,0.0 +21531,30,25.89,41,0.0 +21531,23,9,11,0.0 +21531,59,55,6,0.0 +21531,18,62.5,38,0.0 +21531,55,24,24,0.0 +21531,10,31,12,0.0 +21531,77,13,25,0.0 +21531,26,31.23,12,0.0 +21531,48,12.75,30,0.0 +21531,2,19,6,0.0 +21531,45,9.5,1,0.0 +21531,62,49.3,22,0.0 +21532,7,30,23,0.0 +21532,45,9.5,30,0.0 +21533,35,18,47,0.0 +21533,2,19,45,0.0 +21533,50,16.25,46,0.0 +21533,69,36,40,0.0 +21534,60,34,46,0.0 +21534,61,28.5,36,0.0 +21534,25,14,23,0.0 +21534,70,15,30,0.0 +21534,46,12,36,0.0 +21534,56,38,49,0.0 +21534,69,36,22,0.0 +21534,10,31,38,0.0 +21534,40,18.4,26,0.0 +21534,39,18,47,0.0 +21534,36,19,4,0.0 +21535,41,9.65,31,0.0 +21535,30,25.89,4,0.0 +21535,7,30,21,0.0 +21535,66,17,8,0.0 +21535,75,7.75,43,0.0 +21535,64,33.25,40,0.0 +21535,43,46,39,0.0 +21535,59,55,11,0.0 +21535,53,32.8,1,0.0 +21535,27,43.9,39,0.0 +21535,38,263.5,1,0.0 +21535,60,34,16,0.0 +21535,55,24,15,0.0 +21535,25,14,11,0.0 +21535,11,21,22,0.0 +21535,20,81,17,0.0 +21535,36,19,8,0.0 +21535,61,28.5,20,0.0 +21535,28,45.6,45,0.0 +21535,51,53,14,0.0 +21535,29,123.79,28,0.0 +21535,6,25,7,0.0 +21535,65,21.05,23,0.0 +21535,71,21.5,45,0.0 +21535,10,31,6,0.0 +21535,24,4.5,40,0.0 +21535,70,15,35,0.0 +21535,62,49.3,45,0.0 +21535,14,23.25,3,0.0 +21535,4,22,38,0.0 +21535,8,40,7,0.0 +21536,23,9,20,0.0 +21536,22,21,49,0.0 +21536,7,30,6,0.0 +21536,38,263.5,25,0.0 +21536,3,10,36,0.0 +21536,12,38,3,0.0 +21536,73,15,5,0.0 +21536,36,19,23,0.0 +21536,60,34,16,0.0 +21536,40,18.4,38,0.0 +21536,59,55,48,0.0 +21536,33,2.5,31,0.0 +21536,64,33.25,38,0.0 +21536,69,36,5,0.0 +21536,8,40,29,0.0 +21536,42,14,44,0.0 +21536,15,15.5,42,0.0 +21536,65,21.05,11,0.0 +21536,34,14,29,0.0 +21536,76,18,22,0.0 +21536,66,17,14,0.0 +21536,46,12,11,0.0 +21536,49,20,39,0.0 +21536,14,23.25,17,0.0 +21536,31,12.5,37,0.0 +21536,54,7.45,45,0.0 +21536,50,16.25,11,0.0 +21536,44,19.45,5,0.0 +21536,63,43.9,48,0.0 +21536,2,19,41,0.0 +21536,26,31.23,32,0.0 +21537,18,62.5,16,0.0 +21537,56,38,19,0.0 +21537,44,19.45,16,0.0 +21537,28,45.6,46,0.0 +21537,59,55,47,0.0 +21537,46,12,32,0.0 +21537,49,20,34,0.0 +21537,16,17.45,2,0.0 +21537,9,97,29,0.0 +21537,31,12.5,21,0.0 +21537,74,10,18,0.0 +21537,8,40,48,0.0 +21538,76,18,34,0.0 +21538,70,15,5,0.0 +21538,68,12.5,8,0.0 +21538,63,43.9,2,0.0 +21538,26,31.23,36,0.0 +21538,58,13.25,5,0.0 +21538,5,21.35,15,0.0 +21538,7,30,17,0.0 +21538,48,12.75,2,0.0 +21538,74,10,9,0.0 +21538,18,62.5,19,0.0 +21538,47,9.5,40,0.0 +21538,62,49.3,36,0.0 +21538,21,10,16,0.0 +21538,64,33.25,28,0.0 +21538,15,15.5,11,0.0 +21538,46,12,16,0.0 +21538,4,22,31,0.0 +21538,19,9.2,28,0.0 +21538,24,4.5,12,0.0 +21538,67,14,33,0.0 +21538,37,26,35,0.0 +21538,10,31,26,0.0 +21538,49,20,42,0.0 +21538,17,39,47,0.0 +21538,39,18,33,0.0 +21538,3,10,11,0.0 +21538,29,123.79,5,0.0 +21538,25,14,14,0.0 +21538,36,19,18,0.0 +21538,8,40,13,0.0 +21538,9,97,8,0.0 +21538,44,19.45,23,0.0 +21538,69,36,31,0.0 +21538,54,7.45,38,0.0 +21538,2,19,25,0.0 +21538,52,7,20,0.0 +21538,30,25.89,8,0.0 +21538,71,21.5,1,0.0 +21538,23,9,23,0.0 +21538,53,32.8,1,0.0 +21538,34,14,37,0.0 +21538,42,14,26,0.0 +21538,59,55,12,0.0 +21538,41,9.65,7,0.0 +21538,11,21,2,0.0 +21538,50,16.25,46,0.0 +21538,40,18.4,48,0.0 +21538,22,21,27,0.0 +21538,77,13,17,0.0 +21538,65,21.05,49,0.0 +21538,61,28.5,25,0.0 +21538,1,18,30,0.0 +21538,38,263.5,24,0.0 +21538,60,34,11,0.0 +21538,56,38,19,0.0 +21538,51,53,49,0.0 +21538,75,7.75,10,0.0 +21538,33,2.5,48,0.0 +21538,16,17.45,12,0.0 +21538,12,38,46,0.0 +21538,14,23.25,40,0.0 +21538,55,24,5,0.0 +21538,13,6,34,0.0 +21538,31,12.5,36,0.0 +21538,43,46,15,0.0 +21538,35,18,46,0.0 +21538,57,19.5,15,0.0 +21538,66,17,7,0.0 +21538,73,15,12,0.0 +21538,32,32,19,0.0 +21538,27,43.9,29,0.0 +21538,20,81,28,0.0 +21538,6,25,27,0.0 +21538,28,45.6,19,0.0 +21538,45,9.5,33,0.0 +21539,57,19.5,45,0.0 +21539,66,17,19,0.0 +21539,14,23.25,16,0.0 +21539,35,18,41,0.0 +21539,67,14,49,0.0 +21539,21,10,41,0.0 +21539,15,15.5,6,0.0 +21539,45,9.5,17,0.0 +21539,3,10,10,0.0 +21539,42,14,16,0.0 +21539,31,12.5,47,0.0 +21539,2,19,41,0.0 +21539,34,14,48,0.0 +21539,27,43.9,1,0.0 +21539,9,97,6,0.0 +21539,59,55,38,0.0 +21539,48,12.75,43,0.0 +21539,28,45.6,26,0.0 +21539,24,4.5,12,0.0 +21539,19,9.2,25,0.0 +21539,4,22,18,0.0 +21539,70,15,17,0.0 +21539,62,49.3,28,0.0 +21539,38,263.5,3,0.0 +21539,1,18,28,0.0 +21539,54,7.45,9,0.0 +21539,12,38,6,0.0 +21539,77,13,12,0.0 +21539,64,33.25,30,0.0 +21539,37,26,28,0.0 +21539,39,18,11,0.0 +21539,72,34.8,18,0.0 +21539,40,18.4,37,0.0 +21539,43,46,30,0.0 +21539,25,14,14,0.0 +21539,29,123.79,16,0.0 +21539,20,81,5,0.0 +21540,5,21.35,29,0.0 +21540,69,36,19,0.0 +21540,36,19,18,0.0 +21540,42,14,46,0.0 +21540,49,20,42,0.0 +21540,18,62.5,10,0.0 +21540,63,43.9,23,0.0 +21540,10,31,25,0.0 +21541,41,9.65,7,0.0 +21541,52,7,46,0.0 +21541,12,38,22,0.0 +21541,58,13.25,35,0.0 +21541,27,43.9,48,0.0 +21541,43,46,26,0.0 +21541,66,17,43,0.0 +21541,62,49.3,23,0.0 +21541,19,9.2,19,0.0 +21541,30,25.89,12,0.0 +21541,29,123.79,26,0.0 +21541,75,7.75,8,0.0 +21541,28,45.6,9,0.0 +21541,13,6,31,0.0 +21541,55,24,12,0.0 +21541,18,62.5,11,0.0 +21541,46,12,29,0.0 +21541,3,10,2,0.0 +21541,34,14,27,0.0 +21541,7,30,44,0.0 +21541,20,81,4,0.0 +21541,51,53,31,0.0 +21541,65,21.05,27,0.0 +21541,44,19.45,48,0.0 +21541,40,18.4,38,0.0 +21541,6,25,49,0.0 +21541,53,32.8,23,0.0 +21541,49,20,29,0.0 +21541,4,22,48,0.0 +21541,72,34.8,25,0.0 +21541,70,15,26,0.0 +21541,36,19,10,0.0 +21541,39,18,25,0.0 +21541,77,13,8,0.0 +21541,16,17.45,44,0.0 +21541,64,33.25,19,0.0 +21541,9,97,50,0.0 +21541,33,2.5,6,0.0 +21541,59,55,1,0.0 +21541,73,15,17,0.0 +21541,23,9,27,0.0 +21541,45,9.5,32,0.0 +21541,2,19,33,0.0 +21541,31,12.5,24,0.0 +21541,67,14,4,0.0 +21541,74,10,31,0.0 +21541,32,32,49,0.0 +21541,54,7.45,14,0.0 +21541,17,39,39,0.0 +21541,5,21.35,29,0.0 +21541,37,26,35,0.0 +21541,50,16.25,12,0.0 +21541,48,12.75,15,0.0 +21541,69,36,20,0.0 +21541,15,15.5,20,0.0 +21541,26,31.23,23,0.0 +21541,38,263.5,49,0.0 +21541,68,12.5,8,0.0 +21541,35,18,12,0.0 +21541,25,14,44,0.0 +21541,63,43.9,7,0.0 +21541,60,34,22,0.0 +21541,56,38,6,0.0 +21541,14,23.25,38,0.0 +21541,61,28.5,16,0.0 +21541,22,21,6,0.0 +21542,23,9,47,0.0 +21542,38,263.5,48,0.0 +21542,15,15.5,48,0.0 +21543,9,97,34,0.0 +21543,23,9,11,0.0 +21543,51,53,40,0.0 +21543,39,18,31,0.0 +21543,68,12.5,34,0.0 +21543,22,21,29,0.0 +21543,53,32.8,40,0.0 +21543,65,21.05,27,0.0 +21543,40,18.4,27,0.0 +21543,71,21.5,43,0.0 +21543,7,30,28,0.0 +21543,28,45.6,40,0.0 +21543,58,13.25,1,0.0 +21543,54,7.45,9,0.0 +21543,42,14,4,0.0 +21543,74,10,9,0.0 +21543,69,36,23,0.0 +21543,41,9.65,8,0.0 +21543,70,15,2,0.0 +21544,65,21.05,14,0.0 +21544,49,20,5,0.0 +21544,76,18,36,0.0 +21544,35,18,43,0.0 +21544,37,26,2,0.0 +21544,70,15,41,0.0 +21544,41,9.65,34,0.0 +21544,8,40,43,0.0 +21544,27,43.9,16,0.0 +21544,9,97,14,0.0 +21544,48,12.75,24,0.0 +21544,71,21.5,34,0.0 +21544,68,12.5,23,0.0 +21544,58,13.25,8,0.0 +21544,30,25.89,43,0.0 +21544,22,21,5,0.0 +21544,15,15.5,40,0.0 +21544,73,15,7,0.0 +21544,3,10,3,0.0 +21544,36,19,35,0.0 +21544,74,10,40,0.0 +21544,57,19.5,17,0.0 +21544,20,81,8,0.0 +21544,51,53,39,0.0 +21544,46,12,38,0.0 +21544,64,33.25,27,0.0 +21544,44,19.45,47,0.0 +21544,6,25,46,0.0 +21544,17,39,21,0.0 +21544,32,32,42,0.0 +21544,77,13,48,0.0 +21544,38,263.5,13,0.0 +21544,54,7.45,4,0.0 +21544,31,12.5,25,0.0 +21544,26,31.23,50,0.0 +21544,21,10,3,0.0 +21544,66,17,29,0.0 +21544,24,4.5,6,0.0 +21544,52,7,18,0.0 +21544,45,9.5,19,0.0 +21544,72,34.8,33,0.0 +21544,14,23.25,22,0.0 +21544,53,32.8,22,0.0 +21544,5,21.35,44,0.0 +21544,34,14,45,0.0 +21544,63,43.9,48,0.0 +21544,55,24,46,0.0 +21544,56,38,16,0.0 +21544,2,19,17,0.0 +21544,40,18.4,36,0.0 +21544,61,28.5,39,0.0 +21544,19,9.2,48,0.0 +21544,43,46,24,0.0 +21544,39,18,39,0.0 +21544,69,36,45,0.0 +21544,47,9.5,19,0.0 +21544,1,18,2,0.0 +21544,16,17.45,4,0.0 +21544,7,30,12,0.0 +21544,59,55,30,0.0 +21544,60,34,10,0.0 +21544,18,62.5,39,0.0 +21545,26,31.23,7,0.0 +21545,24,4.5,8,0.0 +21545,51,53,50,0.0 +21546,12,38,5,0.0 +21546,76,18,37,0.0 +21546,20,81,10,0.0 +21546,69,36,7,0.0 +21546,44,19.45,48,0.0 +21546,55,24,16,0.0 +21546,3,10,42,0.0 +21546,58,13.25,25,0.0 +21546,56,38,42,0.0 +21546,1,18,8,0.0 +21546,16,17.45,27,0.0 +21546,26,31.23,11,0.0 +21546,47,9.5,46,0.0 +21546,24,4.5,32,0.0 +21546,34,14,43,0.0 +21546,17,39,16,0.0 +21546,38,263.5,26,0.0 +21546,22,21,36,0.0 +21546,70,15,16,0.0 +21546,50,16.25,18,0.0 +21546,13,6,42,0.0 +21546,68,12.5,18,0.0 +21546,40,18.4,40,0.0 +21546,21,10,31,0.0 +21546,29,123.79,3,0.0 +21546,42,14,8,0.0 +21546,5,21.35,10,0.0 +21546,51,53,7,0.0 +21546,11,21,42,0.0 +21546,46,12,3,0.0 +21546,23,9,36,0.0 +21546,35,18,33,0.0 +21546,9,97,28,0.0 +21546,41,9.65,12,0.0 +21546,71,21.5,2,0.0 +21546,57,19.5,29,0.0 +21546,37,26,36,0.0 +21547,38,263.5,40,0.0 +21547,33,2.5,25,0.0 +21547,43,46,46,0.0 +21547,27,43.9,3,0.0 +21547,68,12.5,23,0.0 +21547,64,33.25,27,0.0 +21547,9,97,20,0.0 +21547,54,7.45,45,0.0 +21547,47,9.5,34,0.0 +21547,75,7.75,14,0.0 +21547,32,32,15,0.0 +21547,7,30,34,0.0 +21547,71,21.5,11,0.0 +21547,58,13.25,11,0.0 +21547,77,13,40,0.0 +21547,16,17.45,17,0.0 +21548,57,19.5,48,0.0 +21548,46,12,22,0.0 +21548,31,12.5,37,0.0 +21548,41,9.65,19,0.0 +21548,5,21.35,29,0.0 +21548,38,263.5,40,0.0 +21548,34,14,4,0.0 +21548,49,20,23,0.0 +21548,8,40,2,0.0 +21548,77,13,29,0.0 +21548,23,9,23,0.0 +21548,35,18,17,0.0 +21548,69,36,23,0.0 +21548,51,53,25,0.0 +21548,1,18,23,0.0 +21548,44,19.45,41,0.0 +21548,56,38,5,0.0 +21548,16,17.45,32,0.0 +21548,76,18,45,0.0 +21548,61,28.5,36,0.0 +21548,29,123.79,2,0.0 +21548,2,19,1,0.0 +21548,73,15,44,0.0 +21548,39,18,37,0.0 +21548,66,17,49,0.0 +21548,14,23.25,7,0.0 +21548,50,16.25,47,0.0 +21548,32,32,46,0.0 +21548,33,2.5,46,0.0 +21548,12,38,19,0.0 +21548,63,43.9,41,0.0 +21548,62,49.3,16,0.0 +21548,54,7.45,26,0.0 +21548,36,19,44,0.0 +21548,52,7,14,0.0 +21548,37,26,19,0.0 +21548,40,18.4,2,0.0 +21548,72,34.8,49,0.0 +21548,22,21,49,0.0 +21548,21,10,31,0.0 +21548,6,25,46,0.0 +21548,28,45.6,5,0.0 +21548,58,13.25,38,0.0 +21548,75,7.75,8,0.0 +21548,47,9.5,49,0.0 +21548,7,30,8,0.0 +21548,19,9.2,44,0.0 +21548,11,21,9,0.0 +21548,10,31,8,0.0 +21548,26,31.23,44,0.0 +21548,25,14,40,0.0 +21548,4,22,22,0.0 +21548,68,12.5,5,0.0 +21549,33,2.5,1,0.0 +21549,16,17.45,17,0.0 +21549,60,34,47,0.0 +21549,21,10,42,0.0 +21549,71,21.5,50,0.0 +21549,19,9.2,18,0.0 +21549,34,14,9,0.0 +21549,7,30,36,0.0 +21549,38,263.5,48,0.0 +21549,52,7,28,0.0 +21549,70,15,34,0.0 +21549,4,22,9,0.0 +21549,50,16.25,22,0.0 +21549,41,9.65,42,0.0 +21549,48,12.75,28,0.0 +21549,27,43.9,26,0.0 +21549,1,18,50,0.0 +21549,61,28.5,43,0.0 +21549,62,49.3,45,0.0 +21549,67,14,33,0.0 +21549,24,4.5,26,0.0 +21549,28,45.6,10,0.0 +21549,26,31.23,8,0.0 +21549,18,62.5,22,0.0 +21549,31,12.5,35,0.0 +21549,75,7.75,47,0.0 +21549,14,23.25,22,0.0 +21549,58,13.25,11,0.0 +21549,45,9.5,38,0.0 +21549,2,19,45,0.0 +21549,40,18.4,17,0.0 +21549,22,21,50,0.0 +21549,68,12.5,23,0.0 +21549,5,21.35,44,0.0 +21549,47,9.5,18,0.0 +21549,10,31,26,0.0 +21549,69,36,41,0.0 +21549,43,46,24,0.0 +21549,56,38,7,0.0 +21549,55,24,26,0.0 +21549,12,38,38,0.0 +21549,46,12,7,0.0 +21549,9,97,24,0.0 +21549,44,19.45,29,0.0 +21549,25,14,15,0.0 +21549,77,13,18,0.0 +21549,42,14,47,0.0 +21549,6,25,28,0.0 +21549,54,7.45,50,0.0 +21549,66,17,39,0.0 +21549,35,18,10,0.0 +21549,17,39,26,0.0 +21549,51,53,22,0.0 +21549,39,18,14,0.0 +21549,59,55,18,0.0 +21549,13,6,18,0.0 +21549,11,21,38,0.0 +21549,20,81,21,0.0 +21549,37,26,19,0.0 +21549,57,19.5,26,0.0 +21549,8,40,35,0.0 +21549,74,10,26,0.0 +21549,36,19,44,0.0 +21549,63,43.9,10,0.0 +21549,23,9,14,0.0 +21549,49,20,8,0.0 +21549,32,32,1,0.0 +21549,30,25.89,26,0.0 +21550,26,31.23,46,0.0 +21550,22,21,29,0.0 +21550,61,28.5,30,0.0 +21550,69,36,14,0.0 +21550,37,26,29,0.0 +21550,28,45.6,38,0.0 +21550,10,31,39,0.0 +21550,34,14,17,0.0 +21550,15,15.5,42,0.0 +21550,44,19.45,25,0.0 +21550,57,19.5,7,0.0 +21550,21,10,12,0.0 +21550,20,81,47,0.0 +21550,60,34,21,0.0 +21550,2,19,14,0.0 +21550,38,263.5,31,0.0 +21550,14,23.25,25,0.0 +21550,56,38,25,0.0 +21550,3,10,31,0.0 +21550,5,21.35,44,0.0 +21550,52,7,31,0.0 +21550,31,12.5,17,0.0 +21550,77,13,48,0.0 +21550,46,12,10,0.0 +21550,13,6,7,0.0 +21550,59,55,5,0.0 +21550,54,7.45,50,0.0 +21550,67,14,15,0.0 +21550,49,20,22,0.0 +21550,35,18,16,0.0 +21550,8,40,9,0.0 +21550,41,9.65,35,0.0 +21550,27,43.9,22,0.0 +21550,9,97,21,0.0 +21550,12,38,28,0.0 +21550,1,18,36,0.0 +21550,32,32,50,0.0 +21550,72,34.8,41,0.0 +21550,48,12.75,19,0.0 +21550,23,9,42,0.0 +21550,71,21.5,36,0.0 +21550,18,62.5,49,0.0 +21550,6,25,39,0.0 +21550,7,30,11,0.0 +21550,65,21.05,9,0.0 +21550,66,17,42,0.0 +21550,4,22,35,0.0 +21550,45,9.5,38,0.0 +21550,40,18.4,5,0.0 +21550,62,49.3,10,0.0 +21550,11,21,11,0.0 +21550,19,9.2,23,0.0 +21550,63,43.9,17,0.0 +21550,64,33.25,45,0.0 +21550,24,4.5,35,0.0 +21550,75,7.75,47,0.0 +21550,43,46,14,0.0 +21550,25,14,19,0.0 +21550,29,123.79,8,0.0 +21551,63,43.9,24,0.0 +21551,74,10,35,0.0 +21551,7,30,30,0.0 +21551,37,26,15,0.0 +21551,38,263.5,1,0.0 +21551,33,2.5,37,0.0 +21551,61,28.5,5,0.0 +21551,71,21.5,3,0.0 +21551,2,19,46,0.0 +21551,39,18,23,0.0 +21551,70,15,4,0.0 +21551,41,9.65,46,0.0 +21551,6,25,19,0.0 +21551,13,6,34,0.0 +21551,31,12.5,23,0.0 +21551,60,34,44,0.0 +21551,30,25.89,31,0.0 +21551,49,20,23,0.0 +21551,54,7.45,22,0.0 +21551,77,13,19,0.0 +21551,24,4.5,47,0.0 +21551,51,53,25,0.0 +21551,4,22,29,0.0 +21551,26,31.23,5,0.0 +21551,5,21.35,11,0.0 +21551,15,15.5,39,0.0 +21551,21,10,17,0.0 +21551,14,23.25,34,0.0 +21551,68,12.5,42,0.0 +21551,50,16.25,48,0.0 +21551,29,123.79,36,0.0 +21551,27,43.9,16,0.0 +21551,35,18,13,0.0 +21552,42,14,15,0.0 +21552,31,12.5,42,0.0 +21552,32,32,25,0.0 +21552,51,53,35,0.0 +21552,11,21,12,0.0 +21552,54,7.45,30,0.0 +21552,23,9,28,0.0 +21552,48,12.75,25,0.0 +21552,14,23.25,30,0.0 +21552,77,13,14,0.0 +21552,13,6,28,0.0 +21552,24,4.5,46,0.0 +21552,72,34.8,7,0.0 +21552,45,9.5,32,0.0 +21552,34,14,12,0.0 +21552,22,21,23,0.0 +21552,66,17,31,0.0 +21552,12,38,8,0.0 +21553,37,26,16,0.0 +21553,39,18,15,0.0 +21553,60,34,50,0.0 +21553,69,36,45,0.0 +21553,72,34.8,45,0.0 +21553,40,18.4,5,0.0 +21553,58,13.25,31,0.0 +21553,30,25.89,37,0.0 +21553,23,9,49,0.0 +21553,11,21,48,0.0 +21553,70,15,49,0.0 +21553,5,21.35,29,0.0 +21553,68,12.5,4,0.0 +21553,17,39,14,0.0 +21553,45,9.5,3,0.0 +21553,49,20,27,0.0 +21553,15,15.5,3,0.0 +21553,42,14,24,0.0 +21553,34,14,17,0.0 +21553,1,18,11,0.0 +21554,4,22,20,0.0 +21554,59,55,31,0.0 +21554,73,15,35,0.0 +21554,3,10,9,0.0 +21554,65,21.05,40,0.0 +21554,54,7.45,3,0.0 +21554,75,7.75,44,0.0 +21554,29,123.79,5,0.0 +21554,18,62.5,21,0.0 +21554,53,32.8,39,0.0 +21554,76,18,27,0.0 +21554,12,38,19,0.0 +21554,63,43.9,19,0.0 +21554,1,18,10,0.0 +21554,74,10,48,0.0 +21554,60,34,45,0.0 +21554,16,17.45,23,0.0 +21554,32,32,35,0.0 +21554,8,40,1,0.0 +21554,22,21,10,0.0 +21554,62,49.3,44,0.0 +21554,26,31.23,29,0.0 +21554,33,2.5,46,0.0 +21554,56,38,38,0.0 +21554,71,21.5,26,0.0 +21554,52,7,41,0.0 +21554,34,14,37,0.0 +21554,61,28.5,35,0.0 +21554,42,14,50,0.0 +21554,15,15.5,8,0.0 +21554,37,26,23,0.0 +21554,35,18,32,0.0 +21554,6,25,41,0.0 +21554,58,13.25,38,0.0 +21554,38,263.5,19,0.0 +21554,21,10,15,0.0 +21554,24,4.5,41,0.0 +21554,68,12.5,49,0.0 +21554,50,16.25,9,0.0 +21554,31,12.5,11,0.0 +21554,51,53,4,0.0 +21554,66,17,46,0.0 +21554,77,13,28,0.0 +21554,45,9.5,7,0.0 +21554,9,97,39,0.0 +21554,2,19,38,0.0 +21554,5,21.35,14,0.0 +21554,19,9.2,7,0.0 +21554,11,21,29,0.0 +21554,7,30,12,0.0 +21554,23,9,18,0.0 +21554,49,20,35,0.0 +21554,17,39,18,0.0 +21554,70,15,2,0.0 +21554,43,46,24,0.0 +21554,64,33.25,19,0.0 +21554,30,25.89,12,0.0 +21554,39,18,35,0.0 +21554,25,14,43,0.0 +21554,69,36,4,0.0 +21555,24,4.5,30,0.0 +21555,62,49.3,33,0.0 +21555,40,18.4,49,0.0 +21555,17,39,33,0.0 +21555,48,12.75,25,0.0 +21555,28,45.6,48,0.0 +21555,29,123.79,30,0.0 +21555,15,15.5,42,0.0 +21555,9,97,10,0.0 +21555,26,31.23,23,0.0 +21555,6,25,48,0.0 +21555,77,13,34,0.0 +21555,54,7.45,20,0.0 +21555,66,17,39,0.0 +21555,56,38,8,0.0 +21555,10,31,21,0.0 +21555,68,12.5,13,0.0 +21555,38,263.5,26,0.0 +21555,52,7,38,0.0 +21555,53,32.8,25,0.0 +21555,42,14,9,0.0 +21555,57,19.5,10,0.0 +21556,31,12.5,44,0.0 +21556,34,14,3,0.0 +21556,2,19,47,0.0 +21556,17,39,6,0.0 +21556,16,17.45,42,0.0 +21556,19,9.2,40,0.0 +21556,64,33.25,40,0.0 +21556,4,22,42,0.0 +21556,75,7.75,4,0.0 +21556,67,14,30,0.0 +21556,44,19.45,4,0.0 +21556,12,38,40,0.0 +21556,54,7.45,12,0.0 +21556,58,13.25,22,0.0 +21556,51,53,2,0.0 +21556,71,21.5,7,0.0 +21556,55,24,11,0.0 +21556,21,10,26,0.0 +21556,11,21,47,0.0 +21556,18,62.5,50,0.0 +21556,73,15,12,0.0 +21556,60,34,17,0.0 +21556,45,9.5,2,0.0 +21556,49,20,28,0.0 +21556,30,25.89,14,0.0 +21556,28,45.6,6,0.0 +21556,5,21.35,42,0.0 +21556,47,9.5,48,0.0 +21556,39,18,14,0.0 +21556,76,18,40,0.0 +21556,7,30,16,0.0 +21556,72,34.8,48,0.0 +21557,25,14,29,0.0 +21557,3,10,33,0.0 +21557,68,12.5,40,0.0 +21557,43,46,44,0.0 +21557,6,25,38,0.0 +21557,21,10,26,0.0 +21557,65,21.05,26,0.0 +21557,63,43.9,49,0.0 +21557,77,13,46,0.0 +21557,9,97,43,0.0 +21557,59,55,14,0.0 +21557,30,25.89,1,0.0 +21557,55,24,8,0.0 +21557,57,19.5,50,0.0 +21557,37,26,41,0.0 +21557,20,81,9,0.0 +21557,67,14,16,0.0 +21557,54,7.45,41,0.0 +21557,49,20,35,0.0 +21557,32,32,30,0.0 +21557,34,14,27,0.0 +21557,28,45.6,45,0.0 +21557,62,49.3,46,0.0 +21557,17,39,26,0.0 +21557,36,19,46,0.0 +21557,5,21.35,20,0.0 +21557,50,16.25,36,0.0 +21557,13,6,30,0.0 +21557,12,38,30,0.0 +21557,51,53,40,0.0 +21557,74,10,13,0.0 +21557,69,36,5,0.0 +21557,22,21,37,0.0 +21557,45,9.5,28,0.0 +21557,31,12.5,32,0.0 +21557,73,15,7,0.0 +21557,44,19.45,1,0.0 +21557,42,14,13,0.0 +21558,77,13,50,0.0 +21558,51,53,30,0.0 +21558,53,32.8,12,0.0 +21558,6,25,31,0.0 +21558,26,31.23,36,0.0 +21559,24,4.5,4,0.0 +21559,55,24,15,0.0 +21559,35,18,33,0.0 +21559,29,123.79,30,0.0 +21559,48,12.75,7,0.0 +21559,40,18.4,3,0.0 +21559,61,28.5,29,0.0 +21559,32,32,45,0.0 +21559,8,40,20,0.0 +21559,22,21,32,0.0 +21559,26,31.23,12,0.0 +21559,39,18,46,0.0 +21559,19,9.2,32,0.0 +21559,75,7.75,26,0.0 +21559,31,12.5,32,0.0 +21559,70,15,5,0.0 +21559,16,17.45,36,0.0 +21559,36,19,10,0.0 +21559,17,39,33,0.0 +21559,57,19.5,45,0.0 +21559,15,15.5,19,0.0 +21559,23,9,11,0.0 +21559,6,25,27,0.0 +21559,51,53,16,0.0 +21559,9,97,20,0.0 +21559,56,38,39,0.0 +21559,73,15,31,0.0 +21559,41,9.65,14,0.0 +21559,25,14,4,0.0 +21559,37,26,5,0.0 +21559,72,34.8,35,0.0 +21559,76,18,26,0.0 +21559,64,33.25,10,0.0 +21559,43,46,32,0.0 +21559,34,14,16,0.0 +21559,69,36,40,0.0 +21559,30,25.89,36,0.0 +21559,59,55,8,0.0 +21559,28,45.6,1,0.0 +21559,12,38,17,0.0 +21559,65,21.05,19,0.0 +21559,14,23.25,44,0.0 +21559,67,14,41,0.0 +21559,54,7.45,27,0.0 +21559,20,81,21,0.0 +21559,62,49.3,27,0.0 +21559,10,31,40,0.0 +21559,2,19,37,0.0 +21559,33,2.5,24,0.0 +21559,5,21.35,45,0.0 +21559,21,10,7,0.0 +21559,18,62.5,12,0.0 +21559,11,21,14,0.0 +21559,68,12.5,47,0.0 +21559,1,18,37,0.0 +21559,66,17,41,0.0 +21559,4,22,9,0.0 +21559,45,9.5,20,0.0 +21559,3,10,34,0.0 +21559,77,13,33,0.0 +21559,71,21.5,3,0.0 +21559,47,9.5,37,0.0 +21560,63,43.9,37,0.0 +21560,72,34.8,8,0.0 +21560,29,123.79,35,0.0 +21560,53,32.8,37,0.0 +21560,42,14,46,0.0 +21560,26,31.23,39,0.0 +21560,50,16.25,3,0.0 +21560,13,6,47,0.0 +21560,19,9.2,44,0.0 +21560,70,15,7,0.0 +21560,30,25.89,17,0.0 +21560,16,17.45,37,0.0 +21560,39,18,21,0.0 +21561,16,17.45,26,0.0 +21561,65,21.05,8,0.0 +21561,1,18,13,0.0 +21561,46,12,28,0.0 +21561,69,36,10,0.0 +21561,59,55,31,0.0 +21561,72,34.8,30,0.0 +21561,41,9.65,2,0.0 +21561,19,9.2,13,0.0 +21561,12,38,40,0.0 +21561,10,31,36,0.0 +21561,74,10,4,0.0 +21561,56,38,36,0.0 +21561,43,46,20,0.0 +21561,50,16.25,38,0.0 +21561,28,45.6,18,0.0 +21561,34,14,27,0.0 +21561,24,4.5,22,0.0 +21561,68,12.5,31,0.0 +21561,57,19.5,9,0.0 +21561,62,49.3,3,0.0 +21561,21,10,21,0.0 +21561,31,12.5,16,0.0 +21561,30,25.89,50,0.0 +21561,38,263.5,1,0.0 +21561,73,15,10,0.0 +21561,63,43.9,4,0.0 +21561,42,14,12,0.0 +21561,3,10,24,0.0 +21561,39,18,14,0.0 +21561,51,53,34,0.0 +21561,48,12.75,2,0.0 +21561,7,30,1,0.0 +21561,20,81,40,0.0 +21561,70,15,34,0.0 +21561,45,9.5,5,0.0 +21561,5,21.35,3,0.0 +21561,53,32.8,38,0.0 +21561,32,32,25,0.0 +21561,22,21,32,0.0 +21561,40,18.4,2,0.0 +21561,75,7.75,1,0.0 +21561,33,2.5,17,0.0 +21561,58,13.25,6,0.0 +21561,71,21.5,3,0.0 +21561,29,123.79,41,0.0 +21561,13,6,33,0.0 +21561,55,24,33,0.0 +21561,77,13,4,0.0 +21561,15,15.5,24,0.0 +21561,61,28.5,11,0.0 +21561,14,23.25,27,0.0 +21561,47,9.5,42,0.0 +21561,35,18,31,0.0 +21561,76,18,19,0.0 +21561,17,39,27,0.0 +21561,54,7.45,49,0.0 +21561,4,22,9,0.0 +21561,49,20,20,0.0 +21561,9,97,22,0.0 +21561,66,17,37,0.0 +21561,60,34,12,0.0 +21561,36,19,1,0.0 +21561,64,33.25,45,0.0 +21561,11,21,6,0.0 +21561,8,40,15,0.0 +21561,27,43.9,46,0.0 +21561,26,31.23,34,0.0 +21561,23,9,50,0.0 +21562,4,22,14,0.0 +21562,72,34.8,25,0.0 +21562,43,46,20,0.0 +21562,35,18,50,0.0 +21562,27,43.9,45,0.0 +21562,63,43.9,45,0.0 +21562,28,45.6,47,0.0 +21562,50,16.25,47,0.0 +21562,10,31,10,0.0 +21562,19,9.2,46,0.0 +21562,58,13.25,24,0.0 +21562,64,33.25,45,0.0 +21562,31,12.5,44,0.0 +21562,70,15,4,0.0 +21562,74,10,35,0.0 +21562,69,36,32,0.0 +21562,56,38,41,0.0 +21562,17,39,7,0.0 +21562,54,7.45,49,0.0 +21562,32,32,17,0.0 +21562,26,31.23,28,0.0 +21562,1,18,33,0.0 +21562,45,9.5,33,0.0 +21562,65,21.05,49,0.0 +21562,23,9,20,0.0 +21562,21,10,30,0.0 +21562,55,24,31,0.0 +21562,22,21,31,0.0 +21562,34,14,39,0.0 +21562,37,26,31,0.0 +21562,38,263.5,47,0.0 +21562,66,17,9,0.0 +21562,24,4.5,43,0.0 +21562,39,18,9,0.0 +21562,7,30,34,0.0 +21562,40,18.4,18,0.0 +21562,48,12.75,49,0.0 +21562,14,23.25,4,0.0 +21562,30,25.89,26,0.0 +21562,36,19,50,0.0 +21562,77,13,38,0.0 +21562,33,2.5,48,0.0 +21562,20,81,18,0.0 +21562,71,21.5,41,0.0 +21562,46,12,18,0.0 +21562,9,97,1,0.0 +21562,53,32.8,12,0.0 +21563,23,9,18,0.0 +21563,13,6,48,0.0 +21563,76,18,31,0.0 +21563,22,21,45,0.0 +21563,40,18.4,46,0.0 +21563,15,15.5,29,0.0 +21563,53,32.8,43,0.0 +21563,58,13.25,24,0.0 +21563,70,15,23,0.0 +21563,71,21.5,7,0.0 +21563,5,21.35,11,0.0 +21563,44,19.45,39,0.0 +21563,9,97,18,0.0 +21563,34,14,44,0.0 +21563,54,7.45,9,0.0 +21563,68,12.5,32,0.0 +21563,57,19.5,13,0.0 +21563,33,2.5,33,0.0 +21563,21,10,34,0.0 +21563,37,26,40,0.0 +21563,1,18,8,0.0 +21563,35,18,24,0.0 +21563,72,34.8,29,0.0 +21563,60,34,42,0.0 +21563,43,46,24,0.0 +21563,59,55,3,0.0 +21563,18,62.5,35,0.0 +21563,20,81,41,0.0 +21563,39,18,36,0.0 +21563,51,53,25,0.0 +21563,52,7,3,0.0 +21563,47,9.5,34,0.0 +21563,50,16.25,1,0.0 +21563,26,31.23,33,0.0 +21563,48,12.75,25,0.0 +21563,8,40,34,0.0 +21563,61,28.5,40,0.0 +21563,73,15,25,0.0 +21563,25,14,5,0.0 +21563,27,43.9,47,0.0 +21563,11,21,9,0.0 +21563,6,25,31,0.0 +21563,17,39,15,0.0 +21563,36,19,40,0.0 +21563,55,24,5,0.0 +21563,30,25.89,17,0.0 +21563,65,21.05,29,0.0 +21563,42,14,16,0.0 +21563,31,12.5,13,0.0 +21563,77,13,19,0.0 +21563,32,32,12,0.0 +21563,69,36,36,0.0 +21563,45,9.5,14,0.0 +21563,38,263.5,7,0.0 +21563,14,23.25,1,0.0 +21563,10,31,3,0.0 +21563,12,38,6,0.0 +21563,16,17.45,8,0.0 +21563,41,9.65,7,0.0 +21563,46,12,24,0.0 +21563,66,17,19,0.0 +21563,24,4.5,49,0.0 +21563,62,49.3,28,0.0 +21563,3,10,23,0.0 +21564,55,24,11,0.0 +21564,26,31.23,6,0.0 +21564,74,10,12,0.0 +21564,3,10,42,0.0 +21564,25,14,9,0.0 +21564,18,62.5,18,0.0 +21564,19,9.2,3,0.0 +21564,31,12.5,41,0.0 +21564,45,9.5,24,0.0 +21564,37,26,12,0.0 +21564,73,15,42,0.0 +21564,70,15,13,0.0 +21564,41,9.65,17,0.0 +21564,14,23.25,24,0.0 +21564,8,40,41,0.0 +21564,28,45.6,26,0.0 +21564,68,12.5,21,0.0 +21564,33,2.5,10,0.0 +21564,12,38,5,0.0 +21564,32,32,7,0.0 +21564,69,36,25,0.0 +21564,22,21,22,0.0 +21564,29,123.79,19,0.0 +21564,4,22,5,0.0 +21564,34,14,1,0.0 +21564,64,33.25,7,0.0 +21564,7,30,20,0.0 +21564,36,19,16,0.0 +21564,39,18,10,0.0 +21564,71,21.5,35,0.0 +21564,16,17.45,29,0.0 +21564,30,25.89,25,0.0 +21564,9,97,4,0.0 +21564,58,13.25,35,0.0 +21564,10,31,46,0.0 +21564,67,14,11,0.0 +21564,23,9,7,0.0 +21564,42,14,7,0.0 +21564,24,4.5,1,0.0 +21564,5,21.35,13,0.0 +21564,46,12,26,0.0 +21564,76,18,49,0.0 +21564,38,263.5,44,0.0 +21564,59,55,48,0.0 +21564,1,18,22,0.0 +21564,6,25,27,0.0 +21564,49,20,23,0.0 +21564,54,7.45,13,0.0 +21564,52,7,40,0.0 +21564,44,19.45,14,0.0 +21564,60,34,36,0.0 +21564,66,17,23,0.0 +21564,35,18,16,0.0 +21564,63,43.9,24,0.0 +21564,57,19.5,14,0.0 +21564,40,18.4,11,0.0 +21564,17,39,6,0.0 +21564,65,21.05,19,0.0 +21564,20,81,21,0.0 +21564,72,34.8,1,0.0 +21565,49,20,27,0.0 +21565,58,13.25,31,0.0 +21565,59,55,42,0.0 +21565,38,263.5,42,0.0 +21565,55,24,2,0.0 +21565,66,17,25,0.0 +21565,5,21.35,50,0.0 +21565,31,12.5,46,0.0 +21565,3,10,13,0.0 +21565,48,12.75,5,0.0 +21565,63,43.9,33,0.0 +21565,2,19,48,0.0 +21565,33,2.5,26,0.0 +21565,44,19.45,28,0.0 +21565,11,21,44,0.0 +21565,76,18,19,0.0 +21565,29,123.79,42,0.0 +21565,20,81,20,0.0 +21565,65,21.05,4,0.0 +21565,56,38,2,0.0 +21565,24,4.5,33,0.0 +21565,72,34.8,44,0.0 +21565,1,18,9,0.0 +21565,27,43.9,17,0.0 +21565,6,25,9,0.0 +21565,9,97,9,0.0 +21565,62,49.3,9,0.0 +21565,4,22,44,0.0 +21565,45,9.5,9,0.0 +21565,71,21.5,14,0.0 +21565,39,18,35,0.0 +21565,35,18,10,0.0 +21565,8,40,39,0.0 +21566,40,18.4,14,0.0 +21566,5,21.35,6,0.0 +21566,50,16.25,18,0.0 +21566,30,25.89,22,0.0 +21566,9,97,20,0.0 +21566,48,12.75,37,0.0 +21566,37,26,35,0.0 +21566,66,17,22,0.0 +21566,26,31.23,17,0.0 +21566,71,21.5,11,0.0 +21566,74,10,40,0.0 +21566,31,12.5,6,0.0 +21566,29,123.79,37,0.0 +21566,18,62.5,11,0.0 +21566,53,32.8,23,0.0 +21566,8,40,48,0.0 +21566,46,12,44,0.0 +21566,34,14,5,0.0 +21566,56,38,42,0.0 +21566,41,9.65,12,0.0 +21566,69,36,5,0.0 +21566,64,33.25,4,0.0 +21566,58,13.25,9,0.0 +21566,1,18,39,0.0 +21566,65,21.05,16,0.0 +21566,43,46,48,0.0 +21566,12,38,22,0.0 +21566,55,24,8,0.0 +21566,73,15,7,0.0 +21566,39,18,34,0.0 +21566,57,19.5,30,0.0 +21566,42,14,43,0.0 +21566,45,9.5,7,0.0 +21566,15,15.5,44,0.0 +21566,4,22,25,0.0 +21566,25,14,24,0.0 +21566,54,7.45,41,0.0 +21566,72,34.8,15,0.0 +21566,6,25,28,0.0 +21566,51,53,27,0.0 +21566,76,18,35,0.0 +21566,59,55,6,0.0 +21566,32,32,31,0.0 +21566,63,43.9,50,0.0 +21566,16,17.45,22,0.0 +21566,60,34,8,0.0 +21566,14,23.25,23,0.0 +21566,67,14,46,0.0 +21566,62,49.3,46,0.0 +21566,70,15,18,0.0 +21566,27,43.9,10,0.0 +21566,23,9,30,0.0 +21566,10,31,1,0.0 +21566,21,10,21,0.0 +21566,49,20,48,0.0 +21566,28,45.6,5,0.0 +21566,47,9.5,15,0.0 +21566,7,30,50,0.0 +21566,77,13,42,0.0 +21566,24,4.5,45,0.0 +21566,22,21,33,0.0 +21566,38,263.5,22,0.0 +21566,19,9.2,30,0.0 +21566,13,6,12,0.0 +21566,44,19.45,41,0.0 +21566,3,10,10,0.0 +21566,35,18,7,0.0 +21566,68,12.5,28,0.0 +21566,2,19,24,0.0 +21566,61,28.5,1,0.0 +21566,33,2.5,13,0.0 +21566,52,7,46,0.0 +21566,36,19,24,0.0 +21566,20,81,33,0.0 +21566,11,21,8,0.0 +21566,17,39,41,0.0 +21567,46,12,13,0.0 +21567,26,31.23,30,0.0 +21567,21,10,45,0.0 +21567,37,26,29,0.0 +21567,35,18,35,0.0 +21567,67,14,26,0.0 +21567,36,19,31,0.0 +21567,23,9,33,0.0 +21567,66,17,25,0.0 +21567,20,81,10,0.0 +21567,44,19.45,4,0.0 +21567,63,43.9,44,0.0 +21567,64,33.25,43,0.0 +21567,32,32,38,0.0 +21567,65,21.05,12,0.0 +21567,39,18,10,0.0 +21567,33,2.5,25,0.0 +21567,13,6,21,0.0 +21567,38,263.5,21,0.0 +21567,2,19,5,0.0 +21567,12,38,11,0.0 +21567,49,20,1,0.0 +21567,51,53,19,0.0 +21567,4,22,40,0.0 +21567,58,13.25,20,0.0 +21567,31,12.5,22,0.0 +21567,16,17.45,27,0.0 +21567,59,55,6,0.0 +21567,18,62.5,34,0.0 +21567,62,49.3,15,0.0 +21567,8,40,25,0.0 +21567,15,15.5,46,0.0 +21567,9,97,20,0.0 +21567,5,21.35,32,0.0 +21567,11,21,6,0.0 +21567,57,19.5,44,0.0 +21567,30,25.89,45,0.0 +21567,34,14,19,0.0 +21567,71,21.5,23,0.0 +21567,19,9.2,11,0.0 +21567,42,14,14,0.0 +21567,74,10,29,0.0 +21567,45,9.5,40,0.0 +21567,6,25,8,0.0 +21567,43,46,7,0.0 +21567,14,23.25,43,0.0 +21567,56,38,41,0.0 +21567,52,7,29,0.0 +21567,77,13,9,0.0 +21567,73,15,44,0.0 +21567,25,14,39,0.0 +21567,53,32.8,9,0.0 +21567,61,28.5,43,0.0 +21567,24,4.5,32,0.0 +21567,22,21,32,0.0 +21567,76,18,44,0.0 +21567,54,7.45,1,0.0 +21567,68,12.5,10,0.0 +21567,27,43.9,41,0.0 +21567,75,7.75,39,0.0 +21567,7,30,29,0.0 +21567,17,39,29,0.0 +21567,40,18.4,6,0.0 +21567,70,15,2,0.0 +21567,28,45.6,36,0.0 +21567,29,123.79,37,0.0 +21567,60,34,20,0.0 +21567,48,12.75,44,0.0 +21567,3,10,49,0.0 +21567,41,9.65,1,0.0 +21567,69,36,33,0.0 +21567,72,34.8,8,0.0 +21568,51,53,9,0.0 +21568,36,19,18,0.0 +21568,46,12,19,0.0 +21568,32,32,20,0.0 +21568,53,32.8,3,0.0 +21568,57,19.5,48,0.0 +21568,43,46,43,0.0 +21569,12,38,26,0.0 +21569,24,4.5,7,0.0 +21569,59,55,3,0.0 +21569,52,7,28,0.0 +21569,48,12.75,49,0.0 +21569,30,25.89,10,0.0 +21569,73,15,1,0.0 +21569,23,9,9,0.0 +21570,58,13.25,6,0.0 +21570,57,19.5,37,0.0 +21570,75,7.75,1,0.0 +21570,47,9.5,49,0.0 +21570,10,31,19,0.0 +21570,20,81,31,0.0 +21570,69,36,1,0.0 +21570,54,7.45,26,0.0 +21570,64,33.25,42,0.0 +21570,32,32,44,0.0 +21570,5,21.35,35,0.0 +21570,12,38,36,0.0 +21570,72,34.8,36,0.0 +21570,70,15,44,0.0 +21570,11,21,27,0.0 +21570,65,21.05,26,0.0 +21570,29,123.79,11,0.0 +21570,63,43.9,27,0.0 +21570,42,14,25,0.0 +21570,28,45.6,15,0.0 +21570,68,12.5,50,0.0 +21570,50,16.25,17,0.0 +21570,26,31.23,48,0.0 +21570,16,17.45,16,0.0 +21570,6,25,21,0.0 +21570,51,53,26,0.0 +21571,54,7.45,25,0.0 +21571,51,53,36,0.0 +21571,4,22,11,0.0 +21571,15,15.5,35,0.0 +21571,32,32,38,0.0 +21571,44,19.45,20,0.0 +21571,67,14,31,0.0 +21571,27,43.9,16,0.0 +21571,49,20,33,0.0 +21571,76,18,7,0.0 +21571,71,21.5,1,0.0 +21571,29,123.79,5,0.0 +21571,23,9,16,0.0 +21571,58,13.25,12,0.0 +21571,66,17,24,0.0 +21571,9,97,34,0.0 +21571,39,18,14,0.0 +21571,16,17.45,38,0.0 +21571,12,38,9,0.0 +21571,33,2.5,35,0.0 +21571,61,28.5,15,0.0 +21571,6,25,8,0.0 +21571,5,21.35,29,0.0 +21571,18,62.5,15,0.0 +21571,64,33.25,31,0.0 +21571,36,19,22,0.0 +21571,19,9.2,47,0.0 +21571,56,38,47,0.0 +21571,65,21.05,14,0.0 +21571,10,31,30,0.0 +21571,42,14,12,0.0 +21571,38,263.5,21,0.0 +21571,75,7.75,6,0.0 +21571,52,7,36,0.0 +21571,77,13,47,0.0 +21571,70,15,25,0.0 +21571,57,19.5,25,0.0 +21571,3,10,44,0.0 +21571,1,18,48,0.0 +21571,50,16.25,25,0.0 +21571,59,55,16,0.0 +21571,20,81,38,0.0 +21571,31,12.5,7,0.0 +21571,55,24,49,0.0 +21571,22,21,10,0.0 +21571,26,31.23,14,0.0 +21571,73,15,17,0.0 +21572,77,13,1,0.0 +21572,76,18,35,0.0 +21572,60,34,18,0.0 +21572,46,12,24,0.0 +21572,59,55,16,0.0 +21572,73,15,25,0.0 +21572,19,9.2,11,0.0 +21572,2,19,17,0.0 +21572,37,26,25,0.0 +21572,8,40,39,0.0 +21572,7,30,20,0.0 +21572,53,32.8,4,0.0 +21572,24,4.5,8,0.0 +21572,75,7.75,8,0.0 +21572,5,21.35,43,0.0 +21572,22,21,23,0.0 +21572,58,13.25,8,0.0 +21572,20,81,16,0.0 +21572,74,10,36,0.0 +21572,70,15,25,0.0 +21572,25,14,40,0.0 +21572,64,33.25,15,0.0 +21572,29,123.79,39,0.0 +21572,10,31,24,0.0 +21572,47,9.5,16,0.0 +21572,1,18,1,0.0 +21572,71,21.5,9,0.0 +21572,41,9.65,41,0.0 +21572,33,2.5,41,0.0 +21572,14,23.25,9,0.0 +21572,62,49.3,21,0.0 +21572,31,12.5,45,0.0 +21572,55,24,27,0.0 +21572,28,45.6,19,0.0 +21572,15,15.5,16,0.0 +21572,3,10,4,0.0 +21572,67,14,22,0.0 +21572,66,17,8,0.0 +21572,43,46,38,0.0 +21572,18,62.5,17,0.0 +21572,54,7.45,29,0.0 +21572,57,19.5,47,0.0 +21572,69,36,46,0.0 +21572,51,53,28,0.0 +21572,42,14,24,0.0 +21572,4,22,27,0.0 +21572,23,9,32,0.0 +21572,44,19.45,36,0.0 +21572,68,12.5,13,0.0 +21572,26,31.23,1,0.0 +21572,38,263.5,15,0.0 +21572,63,43.9,42,0.0 +21572,61,28.5,42,0.0 +21572,39,18,16,0.0 +21572,30,25.89,27,0.0 +21572,17,39,3,0.0 +21572,34,14,39,0.0 +21572,56,38,42,0.0 +21572,27,43.9,30,0.0 +21572,6,25,19,0.0 +21572,13,6,38,0.0 +21572,50,16.25,14,0.0 +21572,40,18.4,47,0.0 +21572,72,34.8,7,0.0 +21573,42,14,10,0.0 +21573,27,43.9,6,0.0 +21573,40,18.4,22,0.0 +21573,8,40,45,0.0 +21573,10,31,26,0.0 +21573,70,15,9,0.0 +21573,20,81,7,0.0 +21573,77,13,22,0.0 +21573,7,30,43,0.0 +21573,68,12.5,10,0.0 +21573,47,9.5,1,0.0 +21573,45,9.5,1,0.0 +21573,22,21,7,0.0 +21573,5,21.35,50,0.0 +21573,11,21,47,0.0 +21573,39,18,33,0.0 +21573,65,21.05,29,0.0 +21573,25,14,19,0.0 +21573,34,14,37,0.0 +21573,53,32.8,6,0.0 +21573,76,18,15,0.0 +21573,21,10,9,0.0 +21573,9,97,50,0.0 +21573,16,17.45,30,0.0 +21573,67,14,47,0.0 +21573,56,38,18,0.0 +21573,73,15,35,0.0 +21573,48,12.75,36,0.0 +21573,19,9.2,4,0.0 +21573,75,7.75,1,0.0 +21573,49,20,5,0.0 +21573,66,17,20,0.0 +21573,59,55,12,0.0 +21573,60,34,48,0.0 +21573,61,28.5,8,0.0 +21573,44,19.45,12,0.0 +21573,30,25.89,29,0.0 +21573,29,123.79,47,0.0 +21573,24,4.5,10,0.0 +21573,50,16.25,24,0.0 +21573,33,2.5,45,0.0 +21573,12,38,47,0.0 +21573,14,23.25,7,0.0 +21573,51,53,2,0.0 +21573,71,21.5,35,0.0 +21573,43,46,44,0.0 +21573,38,263.5,4,0.0 +21573,6,25,13,0.0 +21573,26,31.23,32,0.0 +21573,28,45.6,26,0.0 +21573,46,12,1,0.0 +21573,58,13.25,42,0.0 +21573,23,9,46,0.0 +21573,54,7.45,14,0.0 +21573,18,62.5,38,0.0 +21573,36,19,11,0.0 +21573,17,39,49,0.0 +21573,15,15.5,36,0.0 +21573,74,10,15,0.0 +21573,37,26,23,0.0 +21573,4,22,6,0.0 +21573,55,24,47,0.0 +21573,13,6,12,0.0 +21573,3,10,36,0.0 +21573,72,34.8,38,0.0 +21573,35,18,18,0.0 +21573,52,7,8,0.0 +21573,1,18,38,0.0 +21573,69,36,39,0.0 +21573,2,19,5,0.0 +21573,63,43.9,28,0.0 +21573,64,33.25,30,0.0 +21573,31,12.5,16,0.0 +21573,57,19.5,12,0.0 +21573,62,49.3,1,0.0 +21573,32,32,37,0.0 +21573,41,9.65,16,0.0 +21574,68,12.5,44,0.0 +21574,52,7,32,0.0 +21574,74,10,43,0.0 +21574,67,14,24,0.0 +21574,50,16.25,48,0.0 +21574,7,30,12,0.0 +21574,72,34.8,27,0.0 +21574,24,4.5,12,0.0 +21574,16,17.45,23,0.0 +21574,61,28.5,21,0.0 +21574,76,18,9,0.0 +21574,34,14,1,0.0 +21574,73,15,48,0.0 +21574,49,20,47,0.0 +21574,13,6,11,0.0 +21574,36,19,37,0.0 +21574,11,21,7,0.0 +21574,71,21.5,15,0.0 +21574,37,26,23,0.0 +21574,53,32.8,33,0.0 +21574,58,13.25,26,0.0 +21574,42,14,15,0.0 +21574,26,31.23,27,0.0 +21574,31,12.5,10,0.0 +21574,70,15,31,0.0 +21574,41,9.65,30,0.0 +21574,14,23.25,49,0.0 +21574,28,45.6,9,0.0 +21574,12,38,20,0.0 +21574,1,18,18,0.0 +21574,60,34,36,0.0 +21574,33,2.5,27,0.0 +21574,48,12.75,13,0.0 +21574,55,24,28,0.0 +21574,9,97,8,0.0 +21574,65,21.05,46,0.0 +21574,43,46,9,0.0 +21574,2,19,28,0.0 +21574,6,25,23,0.0 +21574,54,7.45,50,0.0 +21574,46,12,16,0.0 +21574,45,9.5,36,0.0 +21575,30,25.89,45,0.0 +21575,69,36,1,0.0 +21575,20,81,50,0.0 +21575,61,28.5,50,0.0 +21575,40,18.4,21,0.0 +21575,34,14,7,0.0 +21575,5,21.35,8,0.0 +21575,57,19.5,8,0.0 +21575,64,33.25,12,0.0 +21575,6,25,28,0.0 +21575,22,21,31,0.0 +21575,67,14,43,0.0 +21575,1,18,11,0.0 +21575,53,32.8,41,0.0 +21575,54,7.45,16,0.0 +21575,25,14,26,0.0 +21575,63,43.9,1,0.0 +21575,41,9.65,34,0.0 +21575,32,32,44,0.0 +21575,62,49.3,45,0.0 +21576,65,21.05,41,0.0 +21576,53,32.8,6,0.0 +21576,68,12.5,30,0.0 +21576,36,19,38,0.0 +21576,54,7.45,42,0.0 +21576,37,26,23,0.0 +21576,62,49.3,47,0.0 +21576,31,12.5,28,0.0 +21576,22,21,26,0.0 +21576,28,45.6,16,0.0 +21576,16,17.45,13,0.0 +21576,56,38,33,0.0 +21576,49,20,20,0.0 +21576,50,16.25,5,0.0 +21576,41,9.65,26,0.0 +21576,8,40,14,0.0 +21576,24,4.5,4,0.0 +21576,66,17,30,0.0 +21576,63,43.9,29,0.0 +21576,32,32,44,0.0 +21576,59,55,32,0.0 +21576,71,21.5,43,0.0 +21576,64,33.25,16,0.0 +21576,60,34,10,0.0 +21576,38,263.5,9,0.0 +21576,42,14,5,0.0 +21576,67,14,7,0.0 +21576,15,15.5,1,0.0 +21576,58,13.25,7,0.0 +21576,10,31,30,0.0 +21576,52,7,23,0.0 +21576,35,18,43,0.0 +21576,34,14,7,0.0 +21576,1,18,15,0.0 +21576,23,9,34,0.0 +21576,30,25.89,49,0.0 +21576,33,2.5,33,0.0 +21576,46,12,49,0.0 +21576,27,43.9,1,0.0 +21576,61,28.5,30,0.0 +21576,5,21.35,39,0.0 +21576,26,31.23,43,0.0 +21576,77,13,40,0.0 +21576,11,21,4,0.0 +21576,9,97,24,0.0 +21576,6,25,40,0.0 +21576,29,123.79,39,0.0 +21576,70,15,39,0.0 +21576,47,9.5,43,0.0 +21576,43,46,18,0.0 +21576,13,6,42,0.0 +21576,25,14,29,0.0 +21576,44,19.45,7,0.0 +21576,20,81,36,0.0 +21577,39,18,22,0.0 +21577,34,14,42,0.0 +21577,4,22,24,0.0 +21577,73,15,16,0.0 +21577,63,43.9,24,0.0 +21577,70,15,17,0.0 +21577,1,18,40,0.0 +21577,72,34.8,38,0.0 +21577,37,26,48,0.0 +21577,51,53,40,0.0 +21577,47,9.5,50,0.0 +21577,43,46,27,0.0 +21577,10,31,36,0.0 +21577,30,25.89,30,0.0 +21577,20,81,12,0.0 +21577,25,14,26,0.0 +21577,54,7.45,32,0.0 +21577,67,14,40,0.0 +21577,75,7.75,27,0.0 +21577,56,38,38,0.0 +21577,42,14,14,0.0 +21577,71,21.5,14,0.0 +21577,16,17.45,19,0.0 +21577,6,25,16,0.0 +21577,62,49.3,12,0.0 +21577,76,18,30,0.0 +21577,59,55,20,0.0 +21577,28,45.6,32,0.0 +21577,64,33.25,6,0.0 +21577,35,18,28,0.0 +21577,49,20,46,0.0 +21577,46,12,23,0.0 +21577,58,13.25,49,0.0 +21577,22,21,16,0.0 +21577,60,34,24,0.0 +21577,13,6,34,0.0 +21577,3,10,39,0.0 +21577,29,123.79,37,0.0 +21577,68,12.5,43,0.0 +21577,40,18.4,48,0.0 +21577,15,15.5,41,0.0 +21577,17,39,24,0.0 +21577,7,30,19,0.0 +21577,45,9.5,24,0.0 +21577,50,16.25,1,0.0 +21577,24,4.5,24,0.0 +21577,21,10,15,0.0 +21577,61,28.5,41,0.0 +21577,69,36,2,0.0 +21577,74,10,16,0.0 +21577,27,43.9,2,0.0 +21577,55,24,2,0.0 +21577,36,19,16,0.0 +21577,38,263.5,42,0.0 +21577,48,12.75,12,0.0 +21577,19,9.2,34,0.0 +21577,66,17,3,0.0 +21578,39,18,16,0.0 +21578,14,23.25,11,0.0 +21578,62,49.3,23,0.0 +21578,66,17,36,0.0 +21578,77,13,24,0.0 +21578,1,18,15,0.0 +21578,6,25,39,0.0 +21578,50,16.25,42,0.0 +21578,24,4.5,8,0.0 +21578,25,14,15,0.0 +21578,32,32,38,0.0 +21578,38,263.5,10,0.0 +21579,20,81,26,0.0 +21580,36,19,3,0.0 +21580,49,20,3,0.0 +21580,38,263.5,37,0.0 +21580,24,4.5,22,0.0 +21580,3,10,30,0.0 +21580,57,19.5,45,0.0 +21580,64,33.25,36,0.0 +21580,27,43.9,4,0.0 +21580,58,13.25,21,0.0 +21580,13,6,36,0.0 +21580,8,40,6,0.0 +21580,74,10,42,0.0 +21580,51,53,5,0.0 +21580,72,34.8,2,0.0 +21580,19,9.2,17,0.0 +21580,5,21.35,25,0.0 +21580,76,18,23,0.0 +21580,66,17,45,0.0 +21580,71,21.5,1,0.0 +21580,43,46,43,0.0 +21580,59,55,11,0.0 +21580,73,15,23,0.0 +21580,18,62.5,24,0.0 +21580,37,26,47,0.0 +21580,32,32,42,0.0 +21580,16,17.45,39,0.0 +21580,40,18.4,11,0.0 +21580,61,28.5,45,0.0 +21580,7,30,10,0.0 +21580,2,19,12,0.0 +21580,77,13,20,0.0 +21580,23,9,28,0.0 +21580,30,25.89,5,0.0 +21580,6,25,32,0.0 +21580,41,9.65,44,0.0 +21580,48,12.75,12,0.0 +21580,42,14,42,0.0 +21580,75,7.75,10,0.0 +21580,65,21.05,39,0.0 +21580,1,18,32,0.0 +21580,44,19.45,19,0.0 +21580,35,18,30,0.0 +21580,67,14,9,0.0 +21580,52,7,36,0.0 +21580,15,15.5,26,0.0 +21580,60,34,14,0.0 +21580,14,23.25,25,0.0 +21580,50,16.25,35,0.0 +21580,9,97,27,0.0 +21580,34,14,28,0.0 +21580,47,9.5,19,0.0 +21580,70,15,48,0.0 +21581,31,12.5,44,0.0 +21581,21,10,32,0.0 +21581,75,7.75,26,0.0 +21581,67,14,33,0.0 +21581,50,16.25,2,0.0 +21581,48,12.75,4,0.0 +21581,20,81,13,0.0 +21581,27,43.9,28,0.0 +21581,53,32.8,38,0.0 +21581,29,123.79,32,0.0 +21581,33,2.5,4,0.0 +21581,51,53,18,0.0 +21581,16,17.45,3,0.0 +21581,72,34.8,9,0.0 +21581,44,19.45,26,0.0 +21581,70,15,30,0.0 +21581,68,12.5,33,0.0 +21581,59,55,47,0.0 +21581,58,13.25,26,0.0 +21581,74,10,13,0.0 +21581,35,18,40,0.0 +21581,19,9.2,27,0.0 +21581,8,40,33,0.0 +21581,37,26,41,0.0 +21581,2,19,40,0.0 +21581,62,49.3,13,0.0 +21581,54,7.45,14,0.0 +21581,25,14,18,0.0 +21581,6,25,28,0.0 +21581,41,9.65,35,0.0 +21581,1,18,25,0.0 +21581,15,15.5,25,0.0 +21581,3,10,36,0.0 +21581,73,15,16,0.0 +21581,39,18,17,0.0 +21581,61,28.5,24,0.0 +21581,14,23.25,27,0.0 +21581,22,21,36,0.0 +21581,13,6,33,0.0 +21581,77,13,22,0.0 +21581,28,45.6,41,0.0 +21581,34,14,31,0.0 +21581,5,21.35,36,0.0 +21581,9,97,18,0.0 +21581,45,9.5,36,0.0 +21581,40,18.4,25,0.0 +21581,55,24,2,0.0 +21581,10,31,25,0.0 +21581,17,39,21,0.0 +21581,23,9,9,0.0 +21581,76,18,30,0.0 +21581,24,4.5,48,0.0 +21581,47,9.5,9,0.0 +21581,49,20,2,0.0 +21581,43,46,4,0.0 +21581,26,31.23,1,0.0 +21581,46,12,40,0.0 +21581,18,62.5,12,0.0 +21581,60,34,42,0.0 +21581,64,33.25,26,0.0 +21581,66,17,46,0.0 +21581,4,22,19,0.0 +21582,45,9.5,12,0.0 +21582,52,7,4,0.0 +21582,28,45.6,12,0.0 +21582,5,21.35,4,0.0 +21582,44,19.45,42,0.0 +21582,63,43.9,41,0.0 +21582,51,53,30,0.0 +21582,67,14,12,0.0 +21582,50,16.25,19,0.0 +21582,19,9.2,38,0.0 +21582,64,33.25,33,0.0 +21582,77,13,22,0.0 +21582,27,43.9,20,0.0 +21582,65,21.05,25,0.0 +21582,47,9.5,12,0.0 +21582,55,24,35,0.0 +21582,2,19,34,0.0 +21582,23,9,12,0.0 +21582,48,12.75,13,0.0 +21582,29,123.79,8,0.0 +21582,73,15,50,0.0 +21582,12,38,16,0.0 +21582,36,19,31,0.0 +21582,74,10,32,0.0 +21583,51,53,20,0.0 +21583,41,9.65,12,0.0 +21583,17,39,26,0.0 +21583,49,20,13,0.0 +21583,4,22,5,0.0 +21583,73,15,38,0.0 +21583,34,14,22,0.0 +21583,66,17,39,0.0 +21583,30,25.89,19,0.0 +21583,67,14,1,0.0 +21583,40,18.4,17,0.0 +21583,9,97,2,0.0 +21583,57,19.5,40,0.0 +21583,47,9.5,46,0.0 +21583,70,15,4,0.0 +21583,33,2.5,12,0.0 +21583,63,43.9,24,0.0 +21583,68,12.5,47,0.0 +21583,7,30,47,0.0 +21583,28,45.6,45,0.0 +21583,39,18,27,0.0 +21583,59,55,45,0.0 +21583,12,38,13,0.0 +21583,19,9.2,35,0.0 +21583,32,32,26,0.0 +21583,54,7.45,17,0.0 +21583,25,14,33,0.0 +21583,56,38,1,0.0 +21583,15,15.5,44,0.0 +21583,6,25,45,0.0 +21583,52,7,25,0.0 +21583,53,32.8,37,0.0 +21583,3,10,46,0.0 +21583,61,28.5,39,0.0 +21583,23,9,17,0.0 +21583,64,33.25,24,0.0 +21583,58,13.25,34,0.0 +21583,45,9.5,5,0.0 +21584,10,31,37,0.0 +21584,40,18.4,6,0.0 +21584,2,19,5,0.0 +21584,39,18,18,0.0 +21584,19,9.2,4,0.0 +21584,12,38,14,0.0 +21584,45,9.5,12,0.0 +21584,15,15.5,40,0.0 +21584,71,21.5,43,0.0 +21584,32,32,19,0.0 +21584,72,34.8,8,0.0 +21584,64,33.25,31,0.0 +21584,37,26,27,0.0 +21584,24,4.5,49,0.0 +21584,26,31.23,14,0.0 +21584,66,17,19,0.0 +21584,28,45.6,18,0.0 +21584,60,34,11,0.0 +21584,6,25,48,0.0 +21584,8,40,20,0.0 +21584,11,21,20,0.0 +21584,3,10,9,0.0 +21584,59,55,24,0.0 +21584,55,24,35,0.0 +21584,73,15,18,0.0 +21585,18,62.5,2,0.0 +21585,68,12.5,44,0.0 +21585,3,10,17,0.0 +21585,22,21,20,0.0 +21585,66,17,11,0.0 +21585,56,38,16,0.0 +21585,62,49.3,1,0.0 +21585,75,7.75,1,0.0 +21585,33,2.5,37,0.0 +21585,4,22,18,0.0 +21585,21,10,9,0.0 +21585,54,7.45,25,0.0 +21585,35,18,43,0.0 +21585,61,28.5,35,0.0 +21585,29,123.79,20,0.0 +21585,37,26,17,0.0 +21585,74,10,19,0.0 +21585,30,25.89,49,0.0 +21585,10,31,8,0.0 +21585,19,9.2,50,0.0 +21585,1,18,48,0.0 +21585,17,39,37,0.0 +21586,16,17.45,47,0.0 +21586,11,21,30,0.0 +21586,45,9.5,26,0.0 +21586,59,55,21,0.0 +21586,58,13.25,40,0.0 +21586,41,9.65,18,0.0 +21586,47,9.5,7,0.0 +21586,71,21.5,11,0.0 +21586,68,12.5,22,0.0 +21586,49,20,1,0.0 +21586,5,21.35,37,0.0 +21586,3,10,27,0.0 +21586,18,62.5,41,0.0 +21587,34,14,38,0.0 +21587,55,24,1,0.0 +21587,69,36,7,0.0 +21587,6,25,17,0.0 +21587,10,31,5,0.0 +21587,8,40,19,0.0 +21587,46,12,37,0.0 +21587,68,12.5,44,0.0 +21587,38,263.5,3,0.0 +21587,19,9.2,19,0.0 +21587,18,62.5,25,0.0 +21587,22,21,20,0.0 +21587,70,15,22,0.0 +21587,9,97,42,0.0 +21587,42,14,41,0.0 +21587,58,13.25,19,0.0 +21587,31,12.5,39,0.0 +21587,50,16.25,33,0.0 +21587,13,6,23,0.0 +21587,36,19,44,0.0 +21587,17,39,46,0.0 +21587,77,13,15,0.0 +21587,23,9,21,0.0 +21587,44,19.45,40,0.0 +21587,12,38,7,0.0 +21587,25,14,43,0.0 +21587,62,49.3,19,0.0 +21587,30,25.89,24,0.0 +21587,61,28.5,45,0.0 +21587,40,18.4,50,0.0 +21587,63,43.9,11,0.0 +21587,57,19.5,23,0.0 +21587,11,21,37,0.0 +21587,43,46,29,0.0 +21587,21,10,8,0.0 +21587,47,9.5,50,0.0 +21587,5,21.35,17,0.0 +21587,72,34.8,8,0.0 +21587,51,53,7,0.0 +21587,20,81,14,0.0 +21587,56,38,14,0.0 +21587,4,22,38,0.0 +21587,66,17,47,0.0 +21587,52,7,22,0.0 +21587,64,33.25,25,0.0 +21587,41,9.65,26,0.0 +21587,54,7.45,37,0.0 +21587,71,21.5,47,0.0 +21587,49,20,4,0.0 +21587,27,43.9,45,0.0 +21587,16,17.45,30,0.0 +21588,27,43.9,22,0.0 +21588,21,10,14,0.0 +21588,41,9.65,14,0.0 +21588,52,7,18,0.0 +21588,34,14,40,0.0 +21588,5,21.35,38,0.0 +21588,56,38,20,0.0 +21588,44,19.45,50,0.0 +21588,32,32,34,0.0 +21588,66,17,40,0.0 +21588,11,21,7,0.0 +21588,3,10,24,0.0 +21588,10,31,9,0.0 +21588,25,14,36,0.0 +21588,1,18,34,0.0 +21588,54,7.45,21,0.0 +21588,67,14,48,0.0 +21588,38,263.5,32,0.0 +21588,59,55,43,0.0 +21588,65,21.05,23,0.0 +21588,15,15.5,4,0.0 +21588,36,19,7,0.0 +21588,63,43.9,19,0.0 +21588,64,33.25,33,0.0 +21588,45,9.5,5,0.0 +21588,12,38,5,0.0 +21588,18,62.5,11,0.0 +21588,62,49.3,31,0.0 +21588,61,28.5,10,0.0 +21588,20,81,29,0.0 +21588,13,6,22,0.0 +21588,17,39,48,0.0 +21588,73,15,40,0.0 +21588,9,97,49,0.0 +21588,43,46,16,0.0 +21588,71,21.5,46,0.0 +21588,51,53,39,0.0 +21588,22,21,50,0.0 +21588,31,12.5,4,0.0 +21588,14,23.25,32,0.0 +21588,40,18.4,4,0.0 +21588,39,18,23,0.0 +21589,46,12,11,0.0 +21589,36,19,44,0.0 +21589,60,34,28,0.0 +21589,56,38,28,0.0 +21589,38,263.5,2,0.0 +21589,57,19.5,33,0.0 +21589,5,21.35,21,0.0 +21589,30,25.89,5,0.0 +21589,67,14,33,0.0 +21589,31,12.5,17,0.0 +21589,74,10,43,0.0 +21589,11,21,30,0.0 +21589,16,17.45,31,0.0 +21589,12,38,41,0.0 +21589,15,15.5,47,0.0 +21589,21,10,44,0.0 +21589,1,18,49,0.0 +21589,35,18,17,0.0 +21589,45,9.5,36,0.0 +21589,4,22,28,0.0 +21589,44,19.45,43,0.0 +21589,50,16.25,42,0.0 +21589,61,28.5,48,0.0 +21589,10,31,43,0.0 +21589,14,23.25,34,0.0 +21589,25,14,40,0.0 +21589,49,20,13,0.0 +21589,65,21.05,29,0.0 +21589,3,10,28,0.0 +21589,66,17,17,0.0 +21589,63,43.9,11,0.0 +21589,20,81,17,0.0 +21589,13,6,33,0.0 +21589,6,25,19,0.0 +21589,2,19,5,0.0 +21589,27,43.9,7,0.0 +21589,23,9,26,0.0 +21589,43,46,13,0.0 +21589,9,97,30,0.0 +21589,54,7.45,3,0.0 +21589,22,21,15,0.0 +21589,34,14,14,0.0 +21589,58,13.25,19,0.0 +21589,41,9.65,9,0.0 +21589,71,21.5,17,0.0 +21589,19,9.2,19,0.0 +21589,70,15,30,0.0 +21589,33,2.5,12,0.0 +21589,55,24,18,0.0 +21589,62,49.3,28,0.0 +21589,51,53,44,0.0 +21589,8,40,40,0.0 +21589,73,15,16,0.0 +21589,42,14,13,0.0 +21589,48,12.75,44,0.0 +21589,47,9.5,10,0.0 +21589,64,33.25,42,0.0 +21589,7,30,3,0.0 +21589,72,34.8,28,0.0 +21589,32,32,49,0.0 +21589,29,123.79,18,0.0 +21589,28,45.6,11,0.0 +21589,39,18,25,0.0 +21589,68,12.5,11,0.0 +21590,74,10,23,0.0 +21590,5,21.35,10,0.0 +21590,63,43.9,34,0.0 +21590,13,6,26,0.0 +21590,68,12.5,40,0.0 +21590,15,15.5,35,0.0 +21590,4,22,15,0.0 +21590,36,19,30,0.0 +21590,76,18,20,0.0 +21590,55,24,22,0.0 +21590,1,18,22,0.0 +21590,65,21.05,29,0.0 +21590,62,49.3,38,0.0 +21590,14,23.25,48,0.0 +21590,29,123.79,49,0.0 +21590,6,25,18,0.0 +21590,34,14,35,0.0 +21590,58,13.25,7,0.0 +21590,60,34,33,0.0 +21590,70,15,7,0.0 +21590,50,16.25,8,0.0 +21590,46,12,45,0.0 +21590,2,19,36,0.0 +21590,69,36,46,0.0 +21590,9,97,38,0.0 +21590,71,21.5,19,0.0 +21590,64,33.25,42,0.0 +21590,11,21,47,0.0 +21590,23,9,29,0.0 +21590,10,31,17,0.0 +21590,40,18.4,15,0.0 +21590,67,14,10,0.0 +21590,25,14,34,0.0 +21590,3,10,24,0.0 +21590,77,13,42,0.0 +21590,43,46,43,0.0 +21590,56,38,42,0.0 +21590,72,34.8,18,0.0 +21590,75,7.75,44,0.0 +21590,20,81,17,0.0 +21590,73,15,38,0.0 +21590,28,45.6,5,0.0 +21590,17,39,8,0.0 +21590,45,9.5,44,0.0 +21590,31,12.5,36,0.0 +21590,27,43.9,7,0.0 +21590,7,30,25,0.0 +21590,52,7,45,0.0 +21590,41,9.65,4,0.0 +21590,35,18,22,0.0 +21590,38,263.5,3,0.0 +21590,51,53,6,0.0 +21590,61,28.5,26,0.0 +21590,54,7.45,49,0.0 +21590,24,4.5,16,0.0 +21590,53,32.8,27,0.0 +21590,44,19.45,25,0.0 +21590,32,32,14,0.0 +21590,30,25.89,27,0.0 +21590,19,9.2,13,0.0 +21590,26,31.23,34,0.0 +21590,18,62.5,7,0.0 +21590,37,26,44,0.0 +21590,59,55,27,0.0 +21590,12,38,49,0.0 +21591,20,81,22,0.0 +21591,30,25.89,36,0.0 +21591,34,14,8,0.0 +21591,61,28.5,26,0.0 +21591,59,55,44,0.0 +21591,73,15,33,0.0 +21591,38,263.5,46,0.0 +21591,47,9.5,3,0.0 +21591,54,7.45,19,0.0 +21591,17,39,35,0.0 +21591,15,15.5,39,0.0 +21591,69,36,39,0.0 +21591,50,16.25,7,0.0 +21591,64,33.25,33,0.0 +21591,57,19.5,43,0.0 +21591,51,53,29,0.0 +21591,55,24,13,0.0 +21591,41,9.65,49,0.0 +21591,60,34,7,0.0 +21591,8,40,35,0.0 +21591,62,49.3,23,0.0 +21591,18,62.5,24,0.0 +21591,7,30,6,0.0 +21591,13,6,33,0.0 +21591,33,2.5,34,0.0 +21591,75,7.75,50,0.0 +21591,45,9.5,39,0.0 +21591,65,21.05,39,0.0 +21591,48,12.75,49,0.0 +21591,39,18,8,0.0 +21591,77,13,16,0.0 +21591,19,9.2,1,0.0 +21591,2,19,49,0.0 +21591,67,14,34,0.0 +21591,16,17.45,37,0.0 +21591,46,12,38,0.0 +21591,11,21,43,0.0 +21591,29,123.79,13,0.0 +21591,68,12.5,31,0.0 +21591,44,19.45,9,0.0 +21591,56,38,8,0.0 +21591,52,7,9,0.0 +21591,4,22,3,0.0 +21591,49,20,18,0.0 +21591,36,19,38,0.0 +21591,31,12.5,31,0.0 +21591,22,21,48,0.0 +21591,21,10,28,0.0 +21591,53,32.8,50,0.0 +21591,27,43.9,39,0.0 +21591,6,25,9,0.0 +21591,25,14,11,0.0 +21591,10,31,17,0.0 +21591,26,31.23,16,0.0 +21591,74,10,42,0.0 +21591,23,9,24,0.0 +21591,24,4.5,23,0.0 +21591,9,97,22,0.0 +21591,76,18,2,0.0 +21591,66,17,14,0.0 +21591,63,43.9,2,0.0 +21591,70,15,32,0.0 +21591,12,38,36,0.0 +21592,61,28.5,50,0.0 +21592,4,22,44,0.0 +21592,35,18,20,0.0 +21592,6,25,50,0.0 +21592,71,21.5,2,0.0 +21592,29,123.79,13,0.0 +21592,39,18,35,0.0 +21592,64,33.25,45,0.0 +21592,41,9.65,4,0.0 +21592,72,34.8,16,0.0 +21592,52,7,38,0.0 +21592,15,15.5,46,0.0 +21592,47,9.5,17,0.0 +21592,24,4.5,7,0.0 +21592,9,97,26,0.0 +21592,1,18,46,0.0 +21592,27,43.9,46,0.0 +21592,30,25.89,17,0.0 +21592,37,26,2,0.0 +21592,55,24,45,0.0 +21592,18,62.5,16,0.0 +21592,48,12.75,23,0.0 +21592,32,32,40,0.0 +21592,51,53,29,0.0 +21592,42,14,1,0.0 +21592,28,45.6,44,0.0 +21592,13,6,37,0.0 +21592,10,31,40,0.0 +21592,3,10,32,0.0 +21592,62,49.3,34,0.0 +21592,76,18,39,0.0 +21592,50,16.25,31,0.0 +21592,5,21.35,4,0.0 +21592,14,23.25,50,0.0 +21592,11,21,41,0.0 +21592,22,21,1,0.0 +21592,20,81,45,0.0 +21592,66,17,45,0.0 +21592,31,12.5,2,0.0 +21592,63,43.9,20,0.0 +21592,75,7.75,17,0.0 +21592,33,2.5,29,0.0 +21592,68,12.5,45,0.0 +21592,17,39,7,0.0 +21592,57,19.5,20,0.0 +21592,40,18.4,11,0.0 +21592,73,15,2,0.0 +21592,65,21.05,20,0.0 +21592,44,19.45,5,0.0 +21592,49,20,16,0.0 +21592,45,9.5,19,0.0 +21593,43,46,34,0.0 +21593,65,21.05,37,0.0 +21593,48,12.75,39,0.0 +21593,53,32.8,45,0.0 +21593,42,14,34,0.0 +21593,19,9.2,3,0.0 +21593,44,19.45,7,0.0 +21593,70,15,48,0.0 +21593,45,9.5,31,0.0 +21593,62,49.3,38,0.0 +21593,26,31.23,5,0.0 +21593,8,40,24,0.0 +21593,38,263.5,7,0.0 +21593,46,12,7,0.0 +21593,47,9.5,24,0.0 +21593,6,25,22,0.0 +21593,20,81,30,0.0 +21593,21,10,34,0.0 +21593,14,23.25,2,0.0 +21593,72,34.8,45,0.0 +21593,51,53,14,0.0 +21593,54,7.45,29,0.0 +21593,12,38,29,0.0 +21593,59,55,13,0.0 +21593,73,15,25,0.0 +21593,31,12.5,40,0.0 +21593,16,17.45,41,0.0 +21593,55,24,31,0.0 +21593,1,18,41,0.0 +21593,60,34,10,0.0 +21593,49,20,3,0.0 +21593,52,7,8,0.0 +21593,23,9,16,0.0 +21593,64,33.25,47,0.0 +21593,71,21.5,47,0.0 +21593,22,21,11,0.0 +21593,28,45.6,35,0.0 +21593,66,17,13,0.0 +21593,30,25.89,28,0.0 +21593,61,28.5,43,0.0 +21593,3,10,24,0.0 +21594,48,12.75,7,0.0 +21594,65,21.05,37,0.0 +21594,57,19.5,20,0.0 +21594,27,43.9,13,0.0 +21594,2,19,34,0.0 +21594,43,46,24,0.0 +21594,46,12,15,0.0 +21594,30,25.89,22,0.0 +21594,74,10,14,0.0 +21594,17,39,6,0.0 +21594,64,33.25,19,0.0 +21594,37,26,4,0.0 +21594,36,19,11,0.0 +21594,47,9.5,20,0.0 +21594,45,9.5,13,0.0 +21594,73,15,26,0.0 +21594,15,15.5,5,0.0 +21594,63,43.9,48,0.0 +21594,7,30,47,0.0 +21594,3,10,37,0.0 +21594,72,34.8,34,0.0 +21594,71,21.5,36,0.0 +21594,18,62.5,8,0.0 +21594,6,25,32,0.0 +21594,52,7,21,0.0 +21594,35,18,27,0.0 +21594,50,16.25,21,0.0 +21594,38,263.5,41,0.0 +21594,40,18.4,15,0.0 +21594,8,40,12,0.0 +21594,14,23.25,25,0.0 +21594,16,17.45,20,0.0 +21594,32,32,17,0.0 +21594,59,55,23,0.0 +21594,39,18,24,0.0 +21594,23,9,7,0.0 +21594,54,7.45,48,0.0 +21595,18,62.5,21,0.0 +21595,74,10,19,0.0 +21595,70,15,35,0.0 +21595,40,18.4,3,0.0 +21595,11,21,41,0.0 +21595,13,6,15,0.0 +21595,64,33.25,36,0.0 +21595,49,20,47,0.0 +21595,66,17,36,0.0 +21595,67,14,12,0.0 +21595,3,10,46,0.0 +21595,6,25,15,0.0 +21595,19,9.2,44,0.0 +21595,61,28.5,31,0.0 +21595,36,19,12,0.0 +21595,22,21,32,0.0 +21595,62,49.3,33,0.0 +21595,50,16.25,45,0.0 +21595,12,38,50,0.0 +21595,77,13,30,0.0 +21595,16,17.45,24,0.0 +21595,26,31.23,35,0.0 +21595,54,7.45,19,0.0 +21595,9,97,13,0.0 +21595,45,9.5,46,0.0 +21595,72,34.8,2,0.0 +21595,42,14,39,0.0 +21595,55,24,26,0.0 +21595,24,4.5,22,0.0 +21595,20,81,9,0.0 +21595,34,14,27,0.0 +21595,10,31,28,0.0 +21595,69,36,11,0.0 +21595,31,12.5,12,0.0 +21595,48,12.75,26,0.0 +21595,52,7,3,0.0 +21595,27,43.9,22,0.0 +21595,51,53,15,0.0 +21595,75,7.75,14,0.0 +21595,30,25.89,16,0.0 +21595,25,14,17,0.0 +21595,8,40,48,0.0 +21595,28,45.6,25,0.0 +21595,56,38,49,0.0 +21595,44,19.45,30,0.0 +21595,32,32,4,0.0 +21595,60,34,38,0.0 +21595,17,39,40,0.0 +21595,58,13.25,46,0.0 +21595,73,15,14,0.0 +21595,68,12.5,50,0.0 +21595,21,10,1,0.0 +21595,41,9.65,43,0.0 +21595,15,15.5,21,0.0 +21595,63,43.9,15,0.0 +21595,14,23.25,41,0.0 +21595,46,12,42,0.0 +21595,53,32.8,9,0.0 +21595,5,21.35,14,0.0 +21595,2,19,6,0.0 +21595,4,22,33,0.0 +21595,76,18,19,0.0 +21595,1,18,16,0.0 +21595,29,123.79,16,0.0 +21595,23,9,45,0.0 +21595,43,46,27,0.0 +21596,60,34,5,0.0 +21596,58,13.25,21,0.0 +21596,42,14,21,0.0 +21596,27,43.9,46,0.0 +21596,48,12.75,20,0.0 +21596,41,9.65,19,0.0 +21596,54,7.45,11,0.0 +21596,65,21.05,19,0.0 +21596,18,62.5,46,0.0 +21596,74,10,16,0.0 +21596,37,26,24,0.0 +21597,50,16.25,24,0.0 +21597,67,14,46,0.0 +21597,45,9.5,8,0.0 +21597,21,10,4,0.0 +21597,19,9.2,22,0.0 +21597,18,62.5,35,0.0 +21597,58,13.25,18,0.0 +21597,43,46,7,0.0 +21597,1,18,25,0.0 +21597,46,12,25,0.0 +21597,77,13,49,0.0 +21597,42,14,50,0.0 +21597,41,9.65,10,0.0 +21597,74,10,27,0.0 +21597,6,25,34,0.0 +21597,3,10,32,0.0 +21597,62,49.3,6,0.0 +21597,65,21.05,37,0.0 +21597,34,14,33,0.0 +21597,53,32.8,13,0.0 +21597,10,31,35,0.0 +21597,37,26,49,0.0 +21597,20,81,39,0.0 +21597,9,97,43,0.0 +21597,15,15.5,45,0.0 +21597,39,18,26,0.0 +21597,48,12.75,6,0.0 +21597,56,38,46,0.0 +21597,11,21,21,0.0 +21597,66,17,22,0.0 +21597,69,36,36,0.0 +21597,51,53,40,0.0 +21597,8,40,29,0.0 +21597,44,19.45,13,0.0 +21597,33,2.5,35,0.0 +21597,24,4.5,33,0.0 +21597,27,43.9,32,0.0 +21597,4,22,46,0.0 +21597,17,39,23,0.0 +21597,52,7,14,0.0 +21597,68,12.5,42,0.0 +21597,72,34.8,19,0.0 +21597,71,21.5,1,0.0 +21597,75,7.75,43,0.0 +21597,12,38,39,0.0 +21597,25,14,5,0.0 +21597,14,23.25,16,0.0 +21597,32,32,29,0.0 +21597,55,24,29,0.0 +21597,5,21.35,21,0.0 +21597,23,9,39,0.0 +21597,47,9.5,46,0.0 +21597,61,28.5,12,0.0 +21597,40,18.4,23,0.0 +21597,22,21,42,0.0 +21597,54,7.45,24,0.0 +21597,2,19,14,0.0 +21597,38,263.5,15,0.0 +21597,31,12.5,44,0.0 +21597,64,33.25,44,0.0 +21597,13,6,4,0.0 +21597,16,17.45,33,0.0 +21597,26,31.23,50,0.0 +21597,29,123.79,14,0.0 +21597,70,15,5,0.0 +21597,73,15,21,0.0 +21597,76,18,11,0.0 +21597,36,19,27,0.0 +21597,28,45.6,21,0.0 +21597,63,43.9,50,0.0 +21597,59,55,5,0.0 +21597,60,34,15,0.0 +21597,57,19.5,30,0.0 +21598,34,14,34,0.0 +21598,49,20,17,0.0 +21598,26,31.23,13,0.0 +21598,55,24,34,0.0 +21598,67,14,42,0.0 +21598,54,7.45,48,0.0 +21598,28,45.6,17,0.0 +21598,77,13,50,0.0 +21598,58,13.25,2,0.0 +21598,44,19.45,45,0.0 +21598,73,15,40,0.0 +21598,51,53,26,0.0 +21598,76,18,41,0.0 +21598,40,18.4,35,0.0 +21598,66,17,14,0.0 +21598,59,55,48,0.0 +21598,11,21,32,0.0 +21598,22,21,40,0.0 +21598,2,19,10,0.0 +21598,60,34,32,0.0 +21598,46,12,17,0.0 +21598,68,12.5,33,0.0 +21598,17,39,37,0.0 +21598,3,10,18,0.0 +21598,71,21.5,19,0.0 +21598,48,12.75,3,0.0 +21598,38,263.5,35,0.0 +21598,56,38,49,0.0 +21598,14,23.25,36,0.0 +21598,37,26,3,0.0 +21598,29,123.79,14,0.0 +21598,13,6,13,0.0 +21598,36,19,18,0.0 +21598,31,12.5,11,0.0 +21598,65,21.05,34,0.0 +21598,25,14,39,0.0 +21598,10,31,24,0.0 +21598,70,15,44,0.0 +21598,30,25.89,41,0.0 +21598,20,81,39,0.0 +21598,72,34.8,46,0.0 +21598,42,14,11,0.0 +21599,44,19.45,49,0.0 +21599,52,7,35,0.0 +21599,31,12.5,22,0.0 +21599,5,21.35,30,0.0 +21599,70,15,42,0.0 +21599,56,38,27,0.0 +21599,20,81,29,0.0 +21599,11,21,28,0.0 +21599,43,46,40,0.0 +21599,14,23.25,28,0.0 +21599,28,45.6,35,0.0 +21599,18,62.5,34,0.0 +21599,61,28.5,14,0.0 +21599,39,18,43,0.0 +21599,29,123.79,47,0.0 +21599,15,15.5,30,0.0 +21599,57,19.5,36,0.0 +21599,51,53,35,0.0 +21599,13,6,16,0.0 +21599,32,32,9,0.0 +21599,69,36,10,0.0 +21599,21,10,30,0.0 +21599,72,34.8,35,0.0 +21599,35,18,33,0.0 +21599,59,55,38,0.0 +21599,16,17.45,32,0.0 +21599,54,7.45,23,0.0 +21599,45,9.5,25,0.0 +21599,22,21,2,0.0 +21599,4,22,33,0.0 +21599,17,39,26,0.0 +21599,46,12,50,0.0 +21599,73,15,28,0.0 +21599,76,18,30,0.0 +21599,41,9.65,46,0.0 +21599,71,21.5,4,0.0 +21599,77,13,32,0.0 +21599,24,4.5,35,0.0 +21599,48,12.75,50,0.0 +21599,64,33.25,6,0.0 +21599,3,10,38,0.0 +21599,38,263.5,45,0.0 +21599,42,14,36,0.0 +21599,36,19,21,0.0 +21599,26,31.23,9,0.0 +21599,47,9.5,20,0.0 +21599,1,18,5,0.0 +21599,10,31,48,0.0 +21599,62,49.3,35,0.0 +21599,75,7.75,30,0.0 +21599,55,24,46,0.0 +21599,37,26,46,0.0 +21599,65,21.05,20,0.0 +21599,12,38,41,0.0 +21599,34,14,7,0.0 +21599,50,16.25,2,0.0 +21599,53,32.8,30,0.0 +21599,23,9,34,0.0 +21599,30,25.89,23,0.0 +21599,6,25,35,0.0 +21600,22,21,23,0.0 +21600,2,19,20,0.0 +21600,12,38,1,0.0 +21600,31,12.5,44,0.0 +21600,63,43.9,20,0.0 +21600,58,13.25,33,0.0 +21600,73,15,35,0.0 +21600,77,13,30,0.0 +21600,19,9.2,14,0.0 +21600,55,24,47,0.0 +21600,65,21.05,27,0.0 +21600,72,34.8,43,0.0 +21600,30,25.89,9,0.0 +21600,64,33.25,24,0.0 +21600,15,15.5,12,0.0 +21600,9,97,11,0.0 +21600,59,55,22,0.0 +21600,69,36,28,0.0 +21600,50,16.25,6,0.0 +21600,36,19,47,0.0 +21600,38,263.5,17,0.0 +21600,44,19.45,49,0.0 +21600,67,14,10,0.0 +21600,8,40,46,0.0 +21600,53,32.8,25,0.0 +21600,49,20,20,0.0 +21600,45,9.5,8,0.0 +21600,6,25,9,0.0 +21600,11,21,38,0.0 +21600,32,32,13,0.0 +21600,39,18,44,0.0 +21600,35,18,47,0.0 +21600,70,15,23,0.0 +21600,16,17.45,20,0.0 +21600,47,9.5,16,0.0 +21600,24,4.5,19,0.0 +21600,60,34,39,0.0 +21600,40,18.4,28,0.0 +21600,74,10,10,0.0 +21600,41,9.65,49,0.0 +21600,3,10,21,0.0 +21600,5,21.35,14,0.0 +21600,10,31,24,0.0 +21600,20,81,11,0.0 +21600,33,2.5,22,0.0 +21600,61,28.5,6,0.0 +21600,29,123.79,44,0.0 +21600,56,38,3,0.0 +21601,46,12,36,0.0 +21601,53,32.8,40,0.0 +21601,28,45.6,41,0.0 +21601,44,19.45,9,0.0 +21601,10,31,42,0.0 +21601,12,38,13,0.0 +21601,14,23.25,37,0.0 +21601,61,28.5,18,0.0 +21601,77,13,38,0.0 +21601,70,15,13,0.0 +21601,76,18,42,0.0 +21601,16,17.45,49,0.0 +21601,31,12.5,50,0.0 +21601,75,7.75,33,0.0 +21601,4,22,43,0.0 +21601,8,40,17,0.0 +21601,26,31.23,7,0.0 +21601,34,14,39,0.0 +21601,22,21,39,0.0 +21601,30,25.89,46,0.0 +21601,29,123.79,49,0.0 +21601,74,10,21,0.0 +21601,19,9.2,19,0.0 +21601,66,17,25,0.0 +21601,17,39,8,0.0 +21601,73,15,45,0.0 +21601,52,7,16,0.0 +21601,40,18.4,49,0.0 +21601,39,18,24,0.0 +21601,49,20,21,0.0 +21601,62,49.3,29,0.0 +21601,65,21.05,46,0.0 +21601,48,12.75,48,0.0 +21601,11,21,4,0.0 +21601,47,9.5,46,0.0 +21601,5,21.35,26,0.0 +21601,35,18,10,0.0 +21601,9,97,3,0.0 +21601,41,9.65,25,0.0 +21601,37,26,42,0.0 +21601,2,19,2,0.0 +21601,32,32,28,0.0 +21601,72,34.8,33,0.0 +21601,67,14,50,0.0 +21601,27,43.9,49,0.0 +21601,55,24,18,0.0 +21601,57,19.5,10,0.0 +21601,69,36,26,0.0 +21601,3,10,32,0.0 +21601,21,10,26,0.0 +21601,56,38,26,0.0 +21601,33,2.5,20,0.0 +21601,25,14,22,0.0 +21601,38,263.5,45,0.0 +21601,58,13.25,4,0.0 +21601,24,4.5,36,0.0 +21601,64,33.25,17,0.0 +21601,59,55,32,0.0 +21601,15,15.5,10,0.0 +21601,63,43.9,2,0.0 +21601,71,21.5,30,0.0 +21601,23,9,32,0.0 +21601,51,53,14,0.0 +21601,54,7.45,37,0.0 +21601,50,16.25,2,0.0 +21601,6,25,47,0.0 +21601,42,14,15,0.0 +21601,13,6,28,0.0 +21601,36,19,27,0.0 +21601,45,9.5,45,0.0 +21601,43,46,45,0.0 +21601,68,12.5,44,0.0 +21602,39,18,49,0.0 +21602,74,10,43,0.0 +21602,59,55,1,0.0 +21602,37,26,8,0.0 +21602,63,43.9,27,0.0 +21602,28,45.6,8,0.0 +21602,24,4.5,2,0.0 +21602,12,38,28,0.0 +21602,17,39,48,0.0 +21602,61,28.5,44,0.0 +21602,7,30,20,0.0 +21602,67,14,50,0.0 +21602,1,18,43,0.0 +21602,72,34.8,15,0.0 +21602,3,10,36,0.0 +21602,18,62.5,21,0.0 +21602,60,34,25,0.0 +21602,30,25.89,6,0.0 +21602,10,31,29,0.0 +21602,46,12,10,0.0 +21602,44,19.45,20,0.0 +21602,19,9.2,10,0.0 +21602,55,24,33,0.0 +21602,22,21,4,0.0 +21602,33,2.5,14,0.0 +21602,16,17.45,25,0.0 +21602,9,97,32,0.0 +21602,26,31.23,31,0.0 +21602,68,12.5,9,0.0 +21602,23,9,22,0.0 +21602,42,14,27,0.0 +21602,25,14,14,0.0 +21602,65,21.05,33,0.0 +21602,66,17,42,0.0 +21602,71,21.5,41,0.0 +21602,54,7.45,9,0.0 +21602,11,21,8,0.0 +21602,75,7.75,22,0.0 +21602,4,22,37,0.0 +21602,40,18.4,24,0.0 +21602,58,13.25,23,0.0 +21602,47,9.5,24,0.0 +21602,70,15,16,0.0 +21602,15,15.5,19,0.0 +21602,14,23.25,44,0.0 +21602,49,20,35,0.0 +21602,43,46,33,0.0 +21602,57,19.5,35,0.0 +21602,21,10,41,0.0 +21602,35,18,2,0.0 +21602,34,14,19,0.0 +21602,27,43.9,14,0.0 +21602,64,33.25,31,0.0 +21602,8,40,48,0.0 +21602,52,7,49,0.0 +21602,31,12.5,49,0.0 +21602,48,12.75,23,0.0 +21602,53,32.8,49,0.0 +21602,2,19,4,0.0 +21602,73,15,32,0.0 +21602,29,123.79,40,0.0 +21602,62,49.3,41,0.0 +21602,45,9.5,28,0.0 +21602,32,32,42,0.0 +21603,66,17,8,0.0 +21603,49,20,45,0.0 +21603,59,55,15,0.0 +21603,39,18,33,0.0 +21603,73,15,23,0.0 +21603,76,18,50,0.0 +21603,41,9.65,39,0.0 +21603,32,32,40,0.0 +21603,29,123.79,47,0.0 +21603,5,21.35,26,0.0 +21603,2,19,10,0.0 +21603,11,21,49,0.0 +21603,54,7.45,27,0.0 +21603,43,46,12,0.0 +21603,56,38,25,0.0 +21603,14,23.25,25,0.0 +21603,45,9.5,43,0.0 +21603,31,12.5,1,0.0 +21603,6,25,28,0.0 +21603,47,9.5,29,0.0 +21603,28,45.6,33,0.0 +21603,63,43.9,48,0.0 +21603,4,22,9,0.0 +21603,18,62.5,10,0.0 +21603,33,2.5,24,0.0 +21603,64,33.25,35,0.0 +21603,35,18,14,0.0 +21603,58,13.25,23,0.0 +21603,50,16.25,35,0.0 +21603,71,21.5,29,0.0 +21603,19,9.2,17,0.0 +21603,22,21,31,0.0 +21603,65,21.05,5,0.0 +21603,61,28.5,29,0.0 +21603,42,14,34,0.0 +21603,21,10,18,0.0 +21604,76,18,19,0.0 +21604,58,13.25,41,0.0 +21604,52,7,12,0.0 +21604,12,38,11,0.0 +21604,18,62.5,5,0.0 +21604,13,6,50,0.0 +21604,66,17,28,0.0 +21604,7,30,40,0.0 +21604,43,46,22,0.0 +21604,10,31,12,0.0 +21604,3,10,39,0.0 +21604,41,9.65,14,0.0 +21604,60,34,14,0.0 +21604,23,9,7,0.0 +21604,45,9.5,3,0.0 +21604,21,10,18,0.0 +21604,56,38,4,0.0 +21604,61,28.5,46,0.0 +21604,34,14,22,0.0 +21604,1,18,44,0.0 +21604,75,7.75,10,0.0 +21604,73,15,8,0.0 +21604,11,21,15,0.0 +21604,64,33.25,50,0.0 +21604,9,97,42,0.0 +21604,42,14,33,0.0 +21604,70,15,31,0.0 +21604,5,21.35,24,0.0 +21604,27,43.9,26,0.0 +21604,37,26,34,0.0 +21604,40,18.4,10,0.0 +21604,38,263.5,46,0.0 +21604,46,12,16,0.0 +21604,62,49.3,10,0.0 +21604,72,34.8,44,0.0 +21604,31,12.5,2,0.0 +21604,24,4.5,32,0.0 +21604,16,17.45,21,0.0 +21604,19,9.2,42,0.0 +21604,2,19,1,0.0 +21604,8,40,20,0.0 +21604,6,25,19,0.0 +21604,63,43.9,50,0.0 +21604,65,21.05,35,0.0 +21604,59,55,9,0.0 +21604,36,19,40,0.0 +21604,33,2.5,39,0.0 +21604,68,12.5,4,0.0 +21604,35,18,4,0.0 +21604,77,13,46,0.0 +21604,25,14,27,0.0 +21604,4,22,18,0.0 +21604,44,19.45,39,0.0 +21604,26,31.23,4,0.0 +21604,71,21.5,2,0.0 +21604,57,19.5,20,0.0 +21604,17,39,49,0.0 +21604,30,25.89,43,0.0 +21604,74,10,42,0.0 +21604,22,21,41,0.0 +21604,67,14,17,0.0 +21604,47,9.5,44,0.0 +21604,49,20,14,0.0 +21604,48,12.75,19,0.0 +21604,28,45.6,23,0.0 +21604,20,81,26,0.0 +21604,32,32,18,0.0 +21604,29,123.79,26,0.0 +21604,14,23.25,1,0.0 +21604,55,24,38,0.0 +21604,51,53,5,0.0 +21604,54,7.45,34,0.0 +21604,53,32.8,4,0.0 +21604,39,18,39,0.0 +21604,15,15.5,50,0.0 +21604,50,16.25,37,0.0 +21604,69,36,24,0.0 +21605,33,2.5,2,0.0 +21605,4,22,8,0.0 +21605,18,62.5,30,0.0 +21605,20,81,29,0.0 +21605,1,18,38,0.0 +21605,50,16.25,48,0.0 +21605,47,9.5,26,0.0 +21605,34,14,34,0.0 +21605,68,12.5,31,0.0 +21605,44,19.45,18,0.0 +21605,73,15,46,0.0 +21605,14,23.25,33,0.0 +21605,27,43.9,38,0.0 +21605,25,14,23,0.0 +21605,5,21.35,38,0.0 +21605,71,21.5,12,0.0 +21605,32,32,44,0.0 +21605,36,19,11,0.0 +21605,52,7,3,0.0 +21605,48,12.75,41,0.0 +21605,15,15.5,35,0.0 +21605,42,14,42,0.0 +21605,6,25,37,0.0 +21605,77,13,25,0.0 +21605,46,12,9,0.0 +21605,70,15,15,0.0 +21605,59,55,13,0.0 +21605,67,14,22,0.0 +21605,74,10,10,0.0 +21605,8,40,49,0.0 +21605,57,19.5,11,0.0 +21605,23,9,22,0.0 +21605,30,25.89,30,0.0 +21605,40,18.4,6,0.0 +21605,38,263.5,33,0.0 +21605,55,24,29,0.0 +21605,76,18,42,0.0 +21605,54,7.45,40,0.0 +21605,26,31.23,14,0.0 +21605,9,97,2,0.0 +21605,43,46,36,0.0 +21605,41,9.65,15,0.0 +21605,11,21,10,0.0 +21605,3,10,25,0.0 +21605,63,43.9,25,0.0 +21605,61,28.5,11,0.0 +21605,7,30,15,0.0 +21605,64,33.25,2,0.0 +21605,17,39,37,0.0 +21605,75,7.75,18,0.0 +21605,69,36,29,0.0 +21605,22,21,38,0.0 +21605,16,17.45,46,0.0 +21605,29,123.79,9,0.0 +21605,65,21.05,11,0.0 +21605,72,34.8,10,0.0 +21605,56,38,44,0.0 +21605,13,6,15,0.0 +21605,24,4.5,2,0.0 +21605,51,53,11,0.0 +21605,28,45.6,3,0.0 +21605,45,9.5,42,0.0 +21605,31,12.5,10,0.0 +21605,19,9.2,13,0.0 +21605,58,13.25,13,0.0 +21605,49,20,6,0.0 +21605,35,18,27,0.0 +21605,10,31,5,0.0 +21605,60,34,25,0.0 +21605,62,49.3,28,0.0 +21605,12,38,37,0.0 +21606,18,62.5,11,0.0 +21606,67,14,8,0.0 +21606,68,12.5,37,0.0 +21606,60,34,9,0.0 +21606,65,21.05,44,0.0 +21606,32,32,3,0.0 +21606,24,4.5,49,0.0 +21606,30,25.89,32,0.0 +21606,7,30,46,0.0 +21606,23,9,41,0.0 +21606,62,49.3,44,0.0 +21606,21,10,33,0.0 +21606,63,43.9,27,0.0 +21606,71,21.5,35,0.0 +21606,72,34.8,10,0.0 +21606,13,6,12,0.0 +21606,59,55,22,0.0 +21606,40,18.4,43,0.0 +21606,27,43.9,44,0.0 +21606,3,10,18,0.0 +21606,41,9.65,7,0.0 +21606,14,23.25,13,0.0 +21606,22,21,17,0.0 +21606,17,39,22,0.0 +21606,25,14,5,0.0 +21606,8,40,45,0.0 +21606,43,46,29,0.0 +21606,61,28.5,13,0.0 +21606,49,20,18,0.0 +21606,10,31,12,0.0 +21606,29,123.79,25,0.0 +21606,51,53,42,0.0 +21606,75,7.75,37,0.0 +21606,48,12.75,1,0.0 +21606,52,7,26,0.0 +21606,47,9.5,2,0.0 +21607,6,25,43,0.0 +21607,21,10,45,0.0 +21607,2,19,35,0.0 +21607,73,15,46,0.0 +21607,19,9.2,7,0.0 +21607,16,17.45,24,0.0 +21607,62,49.3,37,0.0 +21607,30,25.89,7,0.0 +21607,14,23.25,37,0.0 +21607,36,19,8,0.0 +21607,57,19.5,6,0.0 +21607,33,2.5,1,0.0 +21607,29,123.79,28,0.0 +21607,51,53,20,0.0 +21607,71,21.5,37,0.0 +21607,56,38,6,0.0 +21607,65,21.05,15,0.0 +21607,63,43.9,5,0.0 +21607,18,62.5,31,0.0 +21607,15,15.5,35,0.0 +21607,66,17,45,0.0 +21607,50,16.25,1,0.0 +21607,4,22,36,0.0 +21607,11,21,2,0.0 +21607,68,12.5,31,0.0 +21607,72,34.8,47,0.0 +21607,38,263.5,47,0.0 +21607,43,46,17,0.0 +21607,55,24,33,0.0 +21607,27,43.9,9,0.0 +21607,48,12.75,6,0.0 +21607,75,7.75,16,0.0 +21607,39,18,48,0.0 +21607,41,9.65,37,0.0 +21607,5,21.35,1,0.0 +21607,28,45.6,38,0.0 +21607,74,10,2,0.0 +21607,22,21,41,0.0 +21607,47,9.5,13,0.0 +21607,20,81,49,0.0 +21607,9,97,42,0.0 +21607,31,12.5,44,0.0 +21607,25,14,29,0.0 +21607,10,31,45,0.0 +21607,60,34,6,0.0 +21607,58,13.25,29,0.0 +21607,40,18.4,35,0.0 +21607,8,40,13,0.0 +21607,44,19.45,32,0.0 +21607,32,32,13,0.0 +21607,24,4.5,21,0.0 +21607,67,14,46,0.0 +21607,1,18,4,0.0 +21607,7,30,42,0.0 +21607,35,18,37,0.0 +21607,26,31.23,27,0.0 +21607,12,38,27,0.0 +21607,69,36,29,0.0 +21607,34,14,46,0.0 +21607,37,26,43,0.0 +21607,13,6,24,0.0 +21607,17,39,18,0.0 +21607,49,20,42,0.0 +21607,52,7,37,0.0 +21607,53,32.8,20,0.0 +21607,3,10,30,0.0 +21607,23,9,10,0.0 +21607,46,12,27,0.0 +21608,69,36,38,0.0 +21608,45,9.5,30,0.0 +21608,68,12.5,34,0.0 +21608,1,18,28,0.0 +21608,25,14,43,0.0 +21608,64,33.25,49,0.0 +21608,2,19,39,0.0 +21608,47,9.5,3,0.0 +21608,61,28.5,2,0.0 +21608,28,45.6,29,0.0 +21608,65,21.05,20,0.0 +21608,66,17,17,0.0 +21608,26,31.23,32,0.0 +21608,56,38,11,0.0 +21608,10,31,13,0.0 +21608,19,9.2,44,0.0 +21608,44,19.45,14,0.0 +21608,60,34,45,0.0 +21608,22,21,26,0.0 +21608,12,38,20,0.0 +21608,52,7,32,0.0 +21608,72,34.8,25,0.0 +21608,23,9,43,0.0 +21608,21,10,24,0.0 +21608,32,32,25,0.0 +21608,31,12.5,6,0.0 +21608,20,81,2,0.0 +21608,75,7.75,26,0.0 +21608,53,32.8,45,0.0 +21608,29,123.79,40,0.0 +21608,13,6,33,0.0 +21608,67,14,35,0.0 +21608,40,18.4,20,0.0 +21608,70,15,38,0.0 +21608,8,40,36,0.0 +21608,76,18,17,0.0 +21608,38,263.5,42,0.0 +21608,59,55,2,0.0 +21608,58,13.25,18,0.0 +21608,5,21.35,4,0.0 +21608,42,14,32,0.0 +21608,73,15,34,0.0 +21608,39,18,45,0.0 +21608,30,25.89,24,0.0 +21609,48,12.75,21,0.0 +21609,25,14,7,0.0 +21610,76,18,31,0.0 +21610,39,18,42,0.0 +21610,57,19.5,26,0.0 +21610,4,22,43,0.0 +21610,15,15.5,13,0.0 +21610,42,14,21,0.0 +21610,5,21.35,46,0.0 +21610,1,18,43,0.0 +21610,36,19,30,0.0 +21610,77,13,6,0.0 +21610,65,21.05,36,0.0 +21610,67,14,39,0.0 +21610,22,21,50,0.0 +21610,11,21,42,0.0 +21610,47,9.5,10,0.0 +21610,35,18,33,0.0 +21611,30,25.89,15,0.0 +21611,39,18,5,0.0 +21611,66,17,33,0.0 +21611,27,43.9,43,0.0 +21611,32,32,17,0.0 +21611,41,9.65,9,0.0 +21611,48,12.75,9,0.0 +21611,31,12.5,18,0.0 +21611,17,39,21,0.0 +21611,5,21.35,41,0.0 +21611,67,14,2,0.0 +21611,21,10,13,0.0 +21611,11,21,17,0.0 +21611,12,38,32,0.0 +21611,70,15,14,0.0 +21611,72,34.8,28,0.0 +21611,49,20,8,0.0 +21611,23,9,33,0.0 +21611,20,81,3,0.0 +21611,26,31.23,41,0.0 +21611,36,19,32,0.0 +21611,24,4.5,41,0.0 +21611,13,6,36,0.0 +21611,3,10,45,0.0 +21611,4,22,24,0.0 +21611,19,9.2,33,0.0 +21611,10,31,27,0.0 +21611,7,30,40,0.0 +21611,22,21,24,0.0 +21611,9,97,14,0.0 +21611,62,49.3,33,0.0 +21611,65,21.05,46,0.0 +21611,52,7,44,0.0 +21611,47,9.5,41,0.0 +21611,6,25,45,0.0 +21611,54,7.45,10,0.0 +21611,35,18,17,0.0 +21611,43,46,35,0.0 +21611,77,13,31,0.0 +21611,42,14,6,0.0 +21611,40,18.4,25,0.0 +21611,60,34,23,0.0 +21611,61,28.5,16,0.0 +21611,16,17.45,50,0.0 +21611,33,2.5,41,0.0 +21611,69,36,8,0.0 +21611,28,45.6,35,0.0 +21611,59,55,14,0.0 +21611,2,19,31,0.0 +21611,44,19.45,17,0.0 +21611,71,21.5,4,0.0 +21611,50,16.25,4,0.0 +21611,63,43.9,6,0.0 +21611,8,40,35,0.0 +21611,68,12.5,40,0.0 +21611,51,53,5,0.0 +21611,29,123.79,1,0.0 +21611,14,23.25,13,0.0 +21611,76,18,10,0.0 +21611,38,263.5,5,0.0 +21611,57,19.5,42,0.0 +21611,55,24,21,0.0 +21611,74,10,1,0.0 +21612,64,33.25,33,0.0 +21612,63,43.9,18,0.0 +21613,60,34,34,0.0 +21613,23,9,6,0.0 +21613,70,15,34,0.0 +21613,35,18,38,0.0 +21613,43,46,38,0.0 +21613,73,15,9,0.0 +21613,49,20,23,0.0 +21613,52,7,22,0.0 +21613,40,18.4,32,0.0 +21613,62,49.3,41,0.0 +21613,32,32,34,0.0 +21613,14,23.25,48,0.0 +21613,38,263.5,45,0.0 +21613,76,18,44,0.0 +21613,51,53,10,0.0 +21613,19,9.2,27,0.0 +21613,75,7.75,20,0.0 +21613,36,19,38,0.0 +21613,64,33.25,5,0.0 +21613,39,18,17,0.0 +21613,57,19.5,50,0.0 +21613,65,21.05,23,0.0 +21613,9,97,17,0.0 +21613,66,17,4,0.0 +21613,5,21.35,44,0.0 +21613,29,123.79,2,0.0 +21613,53,32.8,48,0.0 +21613,28,45.6,10,0.0 +21613,41,9.65,4,0.0 +21613,17,39,33,0.0 +21613,45,9.5,39,0.0 +21613,55,24,31,0.0 +21613,77,13,25,0.0 +21613,68,12.5,8,0.0 +21613,69,36,34,0.0 +21613,50,16.25,44,0.0 +21614,32,32,25,0.0 +21614,46,12,42,0.0 +21614,40,18.4,26,0.0 +21614,76,18,44,0.0 +21614,37,26,41,0.0 +21614,57,19.5,17,0.0 +21614,19,9.2,21,0.0 +21614,26,31.23,40,0.0 +21614,15,15.5,13,0.0 +21614,41,9.65,49,0.0 +21614,11,21,37,0.0 +21614,12,38,26,0.0 +21614,2,19,45,0.0 +21614,20,81,11,0.0 +21614,30,25.89,46,0.0 +21614,47,9.5,17,0.0 +21614,6,25,38,0.0 +21614,13,6,22,0.0 +21614,63,43.9,22,0.0 +21614,24,4.5,20,0.0 +21614,55,24,46,0.0 +21614,53,32.8,47,0.0 +21614,64,33.25,3,0.0 +21614,72,34.8,41,0.0 +21614,48,12.75,28,0.0 +21614,29,123.79,49,0.0 +21614,3,10,31,0.0 +21614,70,15,10,0.0 +21614,60,34,6,0.0 +21614,38,263.5,43,0.0 +21614,52,7,28,0.0 +21614,17,39,20,0.0 +21614,50,16.25,39,0.0 +21614,75,7.75,32,0.0 +21614,69,36,9,0.0 +21614,33,2.5,28,0.0 +21614,10,31,31,0.0 +21614,65,21.05,13,0.0 +21614,31,12.5,19,0.0 +21614,58,13.25,21,0.0 +21614,16,17.45,39,0.0 +21614,74,10,46,0.0 +21614,66,17,2,0.0 +21614,25,14,40,0.0 +21614,43,46,30,0.0 +21614,59,55,32,0.0 +21614,56,38,5,0.0 +21614,21,10,42,0.0 +21614,39,18,29,0.0 +21614,36,19,16,0.0 +21614,35,18,37,0.0 +21614,42,14,8,0.0 +21614,18,62.5,36,0.0 +21614,54,7.45,44,0.0 +21614,45,9.5,13,0.0 +21614,51,53,2,0.0 +21614,28,45.6,48,0.0 +21614,5,21.35,40,0.0 +21614,27,43.9,18,0.0 +21614,73,15,3,0.0 +21614,34,14,32,0.0 +21614,22,21,23,0.0 +21614,49,20,36,0.0 +21614,67,14,39,0.0 +21614,62,49.3,6,0.0 +21614,68,12.5,9,0.0 +21614,71,21.5,17,0.0 +21614,4,22,14,0.0 +21614,7,30,37,0.0 +21614,44,19.45,10,0.0 +21614,14,23.25,49,0.0 +21614,9,97,35,0.0 +21614,1,18,19,0.0 +21614,61,28.5,21,0.0 +21614,23,9,49,0.0 +21614,8,40,19,0.0 +21614,77,13,38,0.0 +21615,18,62.5,32,0.0 +21615,22,21,23,0.0 +21615,15,15.5,12,0.0 +21615,44,19.45,42,0.0 +21615,50,16.25,2,0.0 +21615,23,9,32,0.0 +21615,60,34,31,0.0 +21615,5,21.35,3,0.0 +21615,10,31,13,0.0 +21615,42,14,22,0.0 +21615,20,81,39,0.0 +21615,33,2.5,2,0.0 +21615,64,33.25,42,0.0 +21615,21,10,42,0.0 +21615,69,36,7,0.0 +21615,4,22,34,0.0 +21615,45,9.5,27,0.0 +21615,65,21.05,49,0.0 +21615,7,30,10,0.0 +21615,16,17.45,20,0.0 +21615,70,15,24,0.0 +21615,52,7,3,0.0 +21615,36,19,40,0.0 +21615,32,32,8,0.0 +21615,63,43.9,29,0.0 +21615,72,34.8,36,0.0 +21615,14,23.25,50,0.0 +21615,35,18,44,0.0 +21615,66,17,2,0.0 +21615,41,9.65,48,0.0 +21615,12,38,44,0.0 +21615,40,18.4,25,0.0 +21615,51,53,28,0.0 +21615,11,21,3,0.0 +21615,68,12.5,9,0.0 +21615,47,9.5,34,0.0 +21615,29,123.79,6,0.0 +21615,8,40,40,0.0 +21615,37,26,20,0.0 +21615,30,25.89,46,0.0 +21615,56,38,3,0.0 +21615,55,24,6,0.0 +21615,49,20,2,0.0 +21615,13,6,41,0.0 +21615,34,14,6,0.0 +21615,74,10,15,0.0 +21615,38,263.5,21,0.0 +21615,61,28.5,50,0.0 +21615,31,12.5,36,0.0 +21615,43,46,19,0.0 +21615,73,15,4,0.0 +21615,1,18,8,0.0 +21615,62,49.3,29,0.0 +21616,75,7.75,48,0.0 +21616,13,6,37,0.0 +21616,20,81,29,0.0 +21616,72,34.8,20,0.0 +21616,21,10,13,0.0 +21616,44,19.45,44,0.0 +21616,2,19,26,0.0 +21616,45,9.5,6,0.0 +21616,16,17.45,19,0.0 +21616,15,15.5,47,0.0 +21616,41,9.65,28,0.0 +21616,33,2.5,9,0.0 +21616,8,40,27,0.0 +21616,30,25.89,47,0.0 +21616,48,12.75,47,0.0 +21616,36,19,9,0.0 +21616,5,21.35,33,0.0 +21616,26,31.23,20,0.0 +21616,53,32.8,12,0.0 +21616,11,21,50,0.0 +21616,70,15,19,0.0 +21616,19,9.2,26,0.0 +21616,24,4.5,10,0.0 +21616,28,45.6,4,0.0 +21617,54,7.45,32,0.0 +21617,18,62.5,24,0.0 +21617,46,12,8,0.0 +21617,22,21,10,0.0 +21617,27,43.9,10,0.0 +21617,6,25,2,0.0 +21617,64,33.25,48,0.0 +21617,52,7,37,0.0 +21617,37,26,34,0.0 +21617,69,36,9,0.0 +21617,17,39,4,0.0 +21617,42,14,36,0.0 +21617,39,18,43,0.0 +21617,5,21.35,50,0.0 +21617,26,31.23,33,0.0 +21617,24,4.5,3,0.0 +21617,62,49.3,45,0.0 +21617,49,20,20,0.0 +21617,67,14,10,0.0 +21617,20,81,50,0.0 +21617,58,13.25,36,0.0 +21617,70,15,42,0.0 +21617,65,21.05,18,0.0 +21617,38,263.5,27,0.0 +21617,2,19,35,0.0 +21617,10,31,34,0.0 +21617,3,10,13,0.0 +21617,15,15.5,29,0.0 +21617,71,21.5,47,0.0 +21617,19,9.2,8,0.0 +21617,56,38,1,0.0 +21617,73,15,11,0.0 +21617,16,17.45,33,0.0 +21617,25,14,48,0.0 +21617,7,30,43,0.0 +21617,14,23.25,6,0.0 +21617,50,16.25,3,0.0 +21617,30,25.89,6,0.0 +21617,40,18.4,36,0.0 +21617,35,18,24,0.0 +21617,60,34,6,0.0 +21617,57,19.5,20,0.0 +21617,43,46,23,0.0 +21617,53,32.8,26,0.0 +21617,23,9,15,0.0 +21617,72,34.8,3,0.0 +21617,55,24,15,0.0 +21617,45,9.5,15,0.0 +21617,51,53,47,0.0 +21617,66,17,41,0.0 +21617,77,13,44,0.0 +21617,74,10,42,0.0 +21617,41,9.65,26,0.0 +21618,31,12.5,15,0.0 +21618,73,15,32,0.0 +21618,68,12.5,7,0.0 +21618,24,4.5,28,0.0 +21618,46,12,15,0.0 +21618,76,18,11,0.0 +21618,67,14,8,0.0 +21618,57,19.5,6,0.0 +21618,33,2.5,14,0.0 +21618,45,9.5,16,0.0 +21618,52,7,24,0.0 +21618,49,20,26,0.0 +21618,22,21,4,0.0 +21618,20,81,32,0.0 +21618,28,45.6,44,0.0 +21618,10,31,48,0.0 +21618,30,25.89,48,0.0 +21618,17,39,26,0.0 +21618,15,15.5,24,0.0 +21618,54,7.45,1,0.0 +21618,13,6,46,0.0 +21618,40,18.4,26,0.0 +21618,37,26,25,0.0 +21619,24,4.5,8,0.0 +21619,49,20,5,0.0 +21619,59,55,18,0.0 +21619,74,10,22,0.0 +21619,16,17.45,20,0.0 +21619,5,21.35,31,0.0 +21619,31,12.5,42,0.0 +21619,66,17,46,0.0 +21619,17,39,3,0.0 +21619,58,13.25,3,0.0 +21619,50,16.25,20,0.0 +21619,13,6,47,0.0 +21619,38,263.5,6,0.0 +21619,48,12.75,24,0.0 +21619,62,49.3,30,0.0 +21619,29,123.79,47,0.0 +21619,67,14,43,0.0 +21619,27,43.9,34,0.0 +21619,40,18.4,41,0.0 +21619,10,31,18,0.0 +21619,35,18,46,0.0 +21619,75,7.75,8,0.0 +21619,21,10,33,0.0 +21619,2,19,16,0.0 +21619,3,10,19,0.0 +21619,54,7.45,47,0.0 +21619,71,21.5,12,0.0 +21619,55,24,29,0.0 +21619,19,9.2,34,0.0 +21619,64,33.25,7,0.0 +21619,61,28.5,31,0.0 +21619,51,53,17,0.0 +21619,45,9.5,20,0.0 +21619,39,18,26,0.0 +21619,44,19.45,3,0.0 +21619,1,18,42,0.0 +21619,43,46,32,0.0 +21619,65,21.05,23,0.0 +21619,4,22,8,0.0 +21619,18,62.5,8,0.0 +21619,22,21,36,0.0 +21619,26,31.23,27,0.0 +21619,42,14,33,0.0 +21619,30,25.89,25,0.0 +21619,63,43.9,5,0.0 +21619,32,32,36,0.0 +21619,25,14,49,0.0 +21619,77,13,6,0.0 +21619,69,36,46,0.0 +21619,8,40,10,0.0 +21619,20,81,3,0.0 +21619,70,15,5,0.0 +21619,36,19,4,0.0 +21619,72,34.8,1,0.0 +21619,15,15.5,46,0.0 +21619,60,34,14,0.0 +21619,11,21,30,0.0 +21619,6,25,32,0.0 +21619,9,97,48,0.0 +21619,47,9.5,31,0.0 +21619,28,45.6,48,0.0 +21619,12,38,48,0.0 +21619,7,30,21,0.0 +21619,33,2.5,34,0.0 +21619,68,12.5,18,0.0 +21619,34,14,21,0.0 +21619,56,38,28,0.0 +21619,73,15,45,0.0 +21619,46,12,27,0.0 +21619,57,19.5,4,0.0 +21619,76,18,43,0.0 +21619,52,7,29,0.0 +21619,53,32.8,4,0.0 +21619,23,9,37,0.0 +21619,14,23.25,13,0.0 +21620,21,10,24,0.0 +21620,77,13,21,0.0 +21620,28,45.6,40,0.0 +21620,15,15.5,28,0.0 +21620,64,33.25,24,0.0 +21620,39,18,43,0.0 +21620,72,34.8,15,0.0 +21620,76,18,17,0.0 +21620,68,12.5,45,0.0 +21620,27,43.9,21,0.0 +21620,55,24,29,0.0 +21620,26,31.23,11,0.0 +21620,38,263.5,30,0.0 +21621,46,12,21,0.0 +21621,33,2.5,23,0.0 +21621,21,10,40,0.0 +21621,30,25.89,20,0.0 +21621,5,21.35,25,0.0 +21621,74,10,11,0.0 +21621,29,123.79,26,0.0 +21621,50,16.25,29,0.0 +21621,64,33.25,34,0.0 +21621,42,14,34,0.0 +21621,61,28.5,44,0.0 +21621,53,32.8,5,0.0 +21621,62,49.3,21,0.0 +21621,16,17.45,17,0.0 +21621,13,6,22,0.0 +21621,44,19.45,36,0.0 +21621,69,36,28,0.0 +21621,60,34,34,0.0 +21621,77,13,26,0.0 +21621,40,18.4,3,0.0 +21621,35,18,25,0.0 +21621,38,263.5,46,0.0 +21621,34,14,28,0.0 +21621,2,19,48,0.0 +21621,6,25,30,0.0 +21621,55,24,37,0.0 +21621,54,7.45,43,0.0 +21621,67,14,27,0.0 +21621,8,40,30,0.0 +21621,27,43.9,38,0.0 +21621,20,81,45,0.0 +21621,12,38,16,0.0 +21621,63,43.9,48,0.0 +21621,1,18,18,0.0 +21621,15,15.5,13,0.0 +21621,24,4.5,2,0.0 +21621,65,21.05,28,0.0 +21622,17,39,33,0.0 +21622,3,10,39,0.0 +21622,55,24,30,0.0 +21622,74,10,7,0.0 +21622,37,26,45,0.0 +21622,11,21,14,0.0 +21622,51,53,5,0.0 +21622,72,34.8,33,0.0 +21622,68,12.5,50,0.0 +21622,59,55,7,0.0 +21622,20,81,46,0.0 +21622,30,25.89,2,0.0 +21622,50,16.25,43,0.0 +21622,66,17,8,0.0 +21622,46,12,23,0.0 +21622,10,31,46,0.0 +21622,5,21.35,33,0.0 +21622,43,46,50,0.0 +21622,2,19,43,0.0 +21622,12,38,41,0.0 +21622,16,17.45,30,0.0 +21622,28,45.6,23,0.0 +21622,64,33.25,29,0.0 +21622,25,14,41,0.0 +21622,40,18.4,20,0.0 +21622,60,34,50,0.0 +21622,35,18,32,0.0 +21622,6,25,2,0.0 +21622,56,38,7,0.0 +21622,52,7,2,0.0 +21622,69,36,50,0.0 +21622,42,14,38,0.0 +21622,24,4.5,27,0.0 +21622,53,32.8,28,0.0 +21622,38,263.5,33,0.0 +21622,44,19.45,2,0.0 +21622,77,13,12,0.0 +21622,13,6,17,0.0 +21622,47,9.5,24,0.0 +21622,54,7.45,23,0.0 +21622,19,9.2,16,0.0 +21622,18,62.5,20,0.0 +21622,45,9.5,37,0.0 +21622,48,12.75,26,0.0 +21622,70,15,24,0.0 +21622,76,18,44,0.0 +21622,31,12.5,22,0.0 +21622,58,13.25,27,0.0 +21622,32,32,8,0.0 +21622,21,10,46,0.0 +21623,61,28.5,30,0.0 +21623,59,55,20,0.0 +21623,55,24,27,0.0 +21623,66,17,14,0.0 +21623,10,31,44,0.0 +21623,41,9.65,4,0.0 +21623,37,26,47,0.0 +21624,34,14,38,0.0 +21624,75,7.75,29,0.0 +21624,71,21.5,24,0.0 +21624,54,7.45,42,0.0 +21624,32,32,29,0.0 +21624,57,19.5,15,0.0 +21624,56,38,4,0.0 +21624,14,23.25,33,0.0 +21624,35,18,40,0.0 +21624,27,43.9,14,0.0 +21624,6,25,48,0.0 +21624,31,12.5,32,0.0 +21624,76,18,15,0.0 +21624,37,26,1,0.0 +21624,49,20,3,0.0 +21624,43,46,28,0.0 +21624,52,7,38,0.0 +21624,21,10,32,0.0 +21624,72,34.8,48,0.0 +21624,12,38,29,0.0 +21624,25,14,34,0.0 +21624,61,28.5,21,0.0 +21624,1,18,8,0.0 +21624,24,4.5,5,0.0 +21624,45,9.5,40,0.0 +21624,28,45.6,10,0.0 +21624,30,25.89,16,0.0 +21624,26,31.23,28,0.0 +21624,59,55,29,0.0 +21624,11,21,9,0.0 +21624,44,19.45,28,0.0 +21624,70,15,11,0.0 +21624,67,14,26,0.0 +21624,23,9,18,0.0 +21624,60,34,15,0.0 +21624,22,21,7,0.0 +21624,77,13,15,0.0 +21624,66,17,50,0.0 +21624,62,49.3,43,0.0 +21624,13,6,22,0.0 +21624,8,40,46,0.0 +21624,73,15,47,0.0 +21624,41,9.65,45,0.0 +21624,15,15.5,27,0.0 +21624,69,36,46,0.0 +21624,51,53,20,0.0 +21624,18,62.5,34,0.0 +21624,46,12,2,0.0 +21624,9,97,2,0.0 +21624,5,21.35,39,0.0 +21624,10,31,31,0.0 +21624,64,33.25,44,0.0 +21624,38,263.5,15,0.0 +21624,4,22,13,0.0 +21624,3,10,16,0.0 +21624,47,9.5,6,0.0 +21624,50,16.25,15,0.0 +21624,63,43.9,49,0.0 +21624,74,10,6,0.0 +21624,33,2.5,25,0.0 +21624,2,19,39,0.0 +21624,39,18,30,0.0 +21624,19,9.2,10,0.0 +21624,65,21.05,17,0.0 +21624,16,17.45,31,0.0 +21624,53,32.8,28,0.0 +21624,68,12.5,38,0.0 +21624,40,18.4,31,0.0 +21624,20,81,22,0.0 +21624,29,123.79,35,0.0 +21624,17,39,15,0.0 +21624,48,12.75,23,0.0 +21624,36,19,16,0.0 +21625,26,31.23,8,0.0 +21625,39,18,34,0.0 +21625,37,26,30,0.0 +21625,30,25.89,22,0.0 +21625,31,12.5,3,0.0 +21625,69,36,1,0.0 +21625,74,10,17,0.0 +21625,5,21.35,37,0.0 +21625,52,7,46,0.0 +21625,36,19,28,0.0 +21625,68,12.5,2,0.0 +21625,22,21,40,0.0 +21625,76,18,24,0.0 +21625,1,18,41,0.0 +21625,53,32.8,46,0.0 +21625,23,9,3,0.0 +21625,46,12,35,0.0 +21625,56,38,8,0.0 +21625,71,21.5,15,0.0 +21625,38,263.5,15,0.0 +21625,75,7.75,23,0.0 +21625,21,10,7,0.0 +21625,3,10,50,0.0 +21625,73,15,45,0.0 +21625,32,32,34,0.0 +21625,14,23.25,25,0.0 +21625,49,20,40,0.0 +21625,55,24,8,0.0 +21625,63,43.9,14,0.0 +21625,67,14,11,0.0 +21625,10,31,9,0.0 +21625,4,22,39,0.0 +21625,51,53,44,0.0 +21625,18,62.5,6,0.0 +21625,64,33.25,14,0.0 +21625,58,13.25,6,0.0 +21625,2,19,46,0.0 +21625,7,30,43,0.0 +21625,8,40,40,0.0 +21625,24,4.5,18,0.0 +21625,60,34,36,0.0 +21625,47,9.5,11,0.0 +21625,27,43.9,41,0.0 +21625,35,18,34,0.0 +21625,34,14,48,0.0 +21625,72,34.8,23,0.0 +21625,65,21.05,44,0.0 +21625,54,7.45,22,0.0 +21625,43,46,1,0.0 +21625,20,81,11,0.0 +21626,74,10,21,0.0 +21626,48,12.75,30,0.0 +21626,44,19.45,16,0.0 +21626,20,81,15,0.0 +21626,17,39,38,0.0 +21626,18,62.5,21,0.0 +21626,26,31.23,45,0.0 +21626,7,30,45,0.0 +21626,37,26,35,0.0 +21626,19,9.2,4,0.0 +21626,43,46,49,0.0 +21626,77,13,11,0.0 +21626,16,17.45,34,0.0 +21626,23,9,13,0.0 +21626,73,15,4,0.0 +21626,51,53,37,0.0 +21626,25,14,26,0.0 +21626,11,21,48,0.0 +21626,21,10,23,0.0 +21626,6,25,29,0.0 +21626,62,49.3,27,0.0 +21626,59,55,49,0.0 +21626,57,19.5,24,0.0 +21626,76,18,48,0.0 +21626,39,18,39,0.0 +21626,71,21.5,26,0.0 +21626,68,12.5,29,0.0 +21626,29,123.79,15,0.0 +21626,55,24,39,0.0 +21626,75,7.75,41,0.0 +21626,3,10,50,0.0 +21626,9,97,22,0.0 +21626,50,16.25,36,0.0 +21626,65,21.05,43,0.0 +21626,8,40,31,0.0 +21626,49,20,42,0.0 +21626,13,6,43,0.0 +21626,53,32.8,29,0.0 +21627,3,10,24,0.0 +21627,15,15.5,30,0.0 +21627,25,14,40,0.0 +21627,32,32,38,0.0 +21627,74,10,5,0.0 +21627,56,38,22,0.0 +21627,19,9.2,16,0.0 +21627,11,21,22,0.0 +21627,48,12.75,21,0.0 +21627,29,123.79,1,0.0 +21627,60,34,46,0.0 +21627,42,14,25,0.0 +21627,10,31,34,0.0 +21627,23,9,12,0.0 +21627,26,31.23,27,0.0 +21627,71,21.5,24,0.0 +21627,5,21.35,19,0.0 +21627,1,18,8,0.0 +21627,63,43.9,13,0.0 +21627,50,16.25,25,0.0 +21627,68,12.5,47,0.0 +21627,55,24,24,0.0 +21627,21,10,6,0.0 +21627,18,62.5,47,0.0 +21627,61,28.5,37,0.0 +21627,9,97,9,0.0 +21627,4,22,34,0.0 +21627,73,15,23,0.0 +21627,35,18,5,0.0 +21627,7,30,6,0.0 +21627,46,12,26,0.0 +21627,66,17,20,0.0 +21627,72,34.8,9,0.0 +21627,27,43.9,34,0.0 +21627,54,7.45,46,0.0 +21627,40,18.4,27,0.0 +21627,62,49.3,45,0.0 +21627,20,81,7,0.0 +21627,44,19.45,16,0.0 +21627,75,7.75,31,0.0 +21627,22,21,37,0.0 +21627,2,19,11,0.0 +21627,43,46,35,0.0 +21627,58,13.25,35,0.0 +21627,38,263.5,21,0.0 +21627,34,14,6,0.0 +21627,36,19,22,0.0 +21627,51,53,50,0.0 +21627,33,2.5,36,0.0 +21627,24,4.5,19,0.0 +21627,17,39,36,0.0 +21627,59,55,25,0.0 +21627,49,20,33,0.0 +21627,45,9.5,32,0.0 +21627,65,21.05,37,0.0 +21627,77,13,21,0.0 +21627,12,38,28,0.0 +21628,15,15.5,21,0.0 +21628,45,9.5,25,0.0 +21628,26,31.23,24,0.0 +21628,37,26,7,0.0 +21628,23,9,26,0.0 +21628,17,39,26,0.0 +21628,36,19,50,0.0 +21628,51,53,22,0.0 +21628,59,55,32,0.0 +21628,71,21.5,10,0.0 +21628,61,28.5,34,0.0 +21628,21,10,16,0.0 +21628,67,14,22,0.0 +21628,74,10,10,0.0 +21628,8,40,10,0.0 +21628,1,18,37,0.0 +21628,49,20,25,0.0 +21628,66,17,49,0.0 +21628,27,43.9,16,0.0 +21628,72,34.8,50,0.0 +21628,70,15,17,0.0 +21628,69,36,41,0.0 +21628,42,14,33,0.0 +21628,44,19.45,15,0.0 +21628,19,9.2,43,0.0 +21628,7,30,21,0.0 +21629,75,7.75,34,0.0 +21629,44,19.45,1,0.0 +21629,47,9.5,32,0.0 +21629,3,10,17,0.0 +21629,19,9.2,8,0.0 +21629,46,12,25,0.0 +21629,66,17,49,0.0 +21629,28,45.6,7,0.0 +21629,27,43.9,46,0.0 +21629,24,4.5,8,0.0 +21629,56,38,37,0.0 +21629,69,36,18,0.0 +21629,1,18,37,0.0 +21629,53,32.8,5,0.0 +21629,11,21,10,0.0 +21629,7,30,20,0.0 +21629,57,19.5,2,0.0 +21629,76,18,7,0.0 +21629,61,28.5,24,0.0 +21629,63,43.9,2,0.0 +21629,10,31,23,0.0 +21629,23,9,21,0.0 +21629,2,19,41,0.0 +21629,65,21.05,24,0.0 +21630,64,33.25,30,0.0 +21630,18,62.5,1,0.0 +21630,61,28.5,8,0.0 +21630,75,7.75,10,0.0 +21630,57,19.5,39,0.0 +21630,20,81,48,0.0 +21630,22,21,17,0.0 +21630,14,23.25,49,0.0 +21630,76,18,18,0.0 +21630,11,21,34,0.0 +21630,54,7.45,22,0.0 +21630,27,43.9,10,0.0 +21630,52,7,46,0.0 +21630,63,43.9,35,0.0 +21630,24,4.5,49,0.0 +21630,68,12.5,38,0.0 +21630,39,18,12,0.0 +21630,35,18,8,0.0 +21630,32,32,15,0.0 +21630,15,15.5,47,0.0 +21630,16,17.45,46,0.0 +21630,51,53,23,0.0 +21630,46,12,45,0.0 +21630,55,24,3,0.0 +21630,29,123.79,6,0.0 +21630,65,21.05,44,0.0 +21630,2,19,16,0.0 +21630,62,49.3,17,0.0 +21630,40,18.4,35,0.0 +21630,60,34,37,0.0 +21630,8,40,26,0.0 +21630,13,6,25,0.0 +21630,56,38,40,0.0 +21630,47,9.5,25,0.0 +21630,7,30,20,0.0 +21630,33,2.5,36,0.0 +21630,4,22,18,0.0 +21630,74,10,23,0.0 +21630,67,14,17,0.0 +21630,73,15,12,0.0 +21630,41,9.65,3,0.0 +21630,28,45.6,35,0.0 +21630,59,55,39,0.0 +21630,31,12.5,29,0.0 +21630,44,19.45,35,0.0 +21630,71,21.5,30,0.0 +21630,70,15,40,0.0 +21630,72,34.8,18,0.0 +21630,5,21.35,46,0.0 +21630,66,17,12,0.0 +21630,42,14,28,0.0 +21630,1,18,44,0.0 +21630,26,31.23,31,0.0 +21630,37,26,30,0.0 +21630,38,263.5,7,0.0 +21630,9,97,45,0.0 +21630,69,36,32,0.0 +21630,12,38,42,0.0 +21630,53,32.8,13,0.0 +21630,58,13.25,26,0.0 +21630,77,13,39,0.0 +21630,6,25,49,0.0 +21630,10,31,2,0.0 +21630,49,20,33,0.0 +21631,30,25.89,36,0.0 +21631,70,15,26,0.0 +21631,11,21,45,0.0 +21631,72,34.8,41,0.0 +21631,42,14,38,0.0 +21631,14,23.25,8,0.0 +21632,60,34,39,0.0 +21632,27,43.9,2,0.0 +21632,12,38,1,0.0 +21632,34,14,46,0.0 +21632,50,16.25,4,0.0 +21632,3,10,48,0.0 +21632,73,15,33,0.0 +21632,53,32.8,34,0.0 +21632,11,21,33,0.0 +21632,5,21.35,24,0.0 +21632,69,36,22,0.0 +21632,61,28.5,2,0.0 +21632,62,49.3,25,0.0 +21632,33,2.5,44,0.0 +21632,18,62.5,21,0.0 +21632,70,15,11,0.0 +21632,24,4.5,30,0.0 +21632,16,17.45,43,0.0 +21633,10,31,40,0.0 +21633,2,19,28,0.0 +21633,31,12.5,27,0.0 +21633,68,12.5,22,0.0 +21633,28,45.6,37,0.0 +21633,24,4.5,26,0.0 +21633,1,18,12,0.0 +21633,16,17.45,16,0.0 +21633,71,21.5,40,0.0 +21633,74,10,16,0.0 +21633,56,38,45,0.0 +21633,76,18,22,0.0 +21633,29,123.79,31,0.0 +21633,67,14,36,0.0 +21633,50,16.25,9,0.0 +21633,47,9.5,16,0.0 +21633,7,30,20,0.0 +21633,73,15,9,0.0 +21633,6,25,33,0.0 +21633,17,39,38,0.0 +21633,35,18,9,0.0 +21633,60,34,11,0.0 +21633,20,81,35,0.0 +21633,44,19.45,25,0.0 +21633,32,32,44,0.0 +21633,8,40,26,0.0 +21633,38,263.5,27,0.0 +21633,45,9.5,48,0.0 +21633,72,34.8,38,0.0 +21633,5,21.35,16,0.0 +21633,36,19,30,0.0 +21633,12,38,7,0.0 +21633,58,13.25,17,0.0 +21633,4,22,29,0.0 +21633,48,12.75,36,0.0 +21633,55,24,7,0.0 +21633,27,43.9,17,0.0 +21633,42,14,31,0.0 +21633,69,36,49,0.0 +21633,53,32.8,24,0.0 +21633,66,17,47,0.0 +21633,49,20,6,0.0 +21633,70,15,19,0.0 +21633,39,18,50,0.0 +21633,40,18.4,1,0.0 +21633,33,2.5,42,0.0 +21633,52,7,2,0.0 +21633,11,21,42,0.0 +21633,63,43.9,22,0.0 +21633,25,14,17,0.0 +21633,75,7.75,26,0.0 +21633,43,46,32,0.0 +21633,37,26,33,0.0 +21633,34,14,14,0.0 +21633,62,49.3,2,0.0 +21633,19,9.2,47,0.0 +21633,15,15.5,39,0.0 +21633,64,33.25,9,0.0 +21633,30,25.89,23,0.0 +21633,65,21.05,35,0.0 +21633,61,28.5,18,0.0 +21633,54,7.45,21,0.0 +21633,18,62.5,9,0.0 +21633,41,9.65,11,0.0 +21633,21,10,9,0.0 +21633,77,13,50,0.0 +21633,26,31.23,2,0.0 +21633,22,21,3,0.0 +21633,23,9,18,0.0 +21633,51,53,41,0.0 +21633,9,97,27,0.0 +21633,14,23.25,2,0.0 +21633,13,6,42,0.0 +21633,57,19.5,32,0.0 +21633,46,12,14,0.0 +21633,3,10,27,0.0 +21634,17,39,46,0.0 +21634,76,18,2,0.0 +21634,6,25,6,0.0 +21634,55,24,2,0.0 +21634,28,45.6,11,0.0 +21634,45,9.5,5,0.0 +21634,20,81,3,0.0 +21634,22,21,31,0.0 +21634,63,43.9,44,0.0 +21634,57,19.5,46,0.0 +21634,24,4.5,27,0.0 +21634,69,36,18,0.0 +21634,41,9.65,34,0.0 +21634,13,6,20,0.0 +21634,11,21,45,0.0 +21634,4,22,21,0.0 +21635,10,31,23,0.0 +21635,24,4.5,14,0.0 +21635,11,21,48,0.0 +21635,18,62.5,38,0.0 +21635,20,81,46,0.0 +21635,74,10,2,0.0 +21635,31,12.5,27,0.0 +21635,7,30,25,0.0 +21635,71,21.5,7,0.0 +21635,61,28.5,40,0.0 +21635,23,9,42,0.0 +21635,39,18,3,0.0 +21635,67,14,17,0.0 +21635,57,19.5,8,0.0 +21635,42,14,45,0.0 +21635,45,9.5,1,0.0 +21635,68,12.5,6,0.0 +21635,21,10,24,0.0 +21635,52,7,5,0.0 +21635,2,19,21,0.0 +21635,65,21.05,26,0.0 +21635,17,39,8,0.0 +21635,50,16.25,21,0.0 +21635,14,23.25,25,0.0 +21635,25,14,17,0.0 +21635,47,9.5,6,0.0 +21635,36,19,49,0.0 +21635,69,36,25,0.0 +21635,30,25.89,5,0.0 +21635,70,15,18,0.0 +21635,73,15,29,0.0 +21635,77,13,8,0.0 +21635,66,17,32,0.0 +21635,63,43.9,16,0.0 +21635,72,34.8,18,0.0 +21635,19,9.2,3,0.0 +21635,28,45.6,30,0.0 +21635,54,7.45,14,0.0 +21635,4,22,4,0.0 +21635,1,18,13,0.0 +21635,38,263.5,30,0.0 +21635,51,53,24,0.0 +21635,76,18,39,0.0 +21635,15,15.5,41,0.0 +21635,41,9.65,40,0.0 +21635,13,6,36,0.0 +21635,6,25,26,0.0 +21635,5,21.35,33,0.0 +21635,53,32.8,26,0.0 +21635,33,2.5,18,0.0 +21635,64,33.25,35,0.0 +21635,56,38,25,0.0 +21635,44,19.45,40,0.0 +21635,58,13.25,19,0.0 +21635,75,7.75,40,0.0 +21635,59,55,32,0.0 +21635,16,17.45,22,0.0 +21635,22,21,38,0.0 +21635,8,40,1,0.0 +21635,12,38,36,0.0 +21635,37,26,13,0.0 +21635,27,43.9,44,0.0 +21635,32,32,14,0.0 +21635,34,14,45,0.0 +21635,55,24,37,0.0 +21635,26,31.23,32,0.0 +21635,40,18.4,35,0.0 +21635,9,97,38,0.0 +21635,43,46,9,0.0 +21635,62,49.3,17,0.0 +21635,49,20,10,0.0 +21635,3,10,11,0.0 +21635,35,18,23,0.0 +21635,46,12,34,0.0 +21635,48,12.75,13,0.0 +21635,29,123.79,20,0.0 +21635,60,34,33,0.0 +21636,63,43.9,36,0.0 +21636,10,31,46,0.0 +21636,31,12.5,46,0.0 +21636,51,53,50,0.0 +21636,67,14,19,0.0 +21636,23,9,46,0.0 +21636,59,55,21,0.0 +21636,70,15,37,0.0 +21636,9,97,12,0.0 +21636,32,32,9,0.0 +21636,12,38,12,0.0 +21636,62,49.3,17,0.0 +21636,58,13.25,21,0.0 +21636,27,43.9,35,0.0 +21636,46,12,15,0.0 +21636,28,45.6,32,0.0 +21636,5,21.35,17,0.0 +21636,33,2.5,17,0.0 +21636,11,21,32,0.0 +21636,26,31.23,48,0.0 +21636,13,6,37,0.0 +21636,73,15,2,0.0 +21636,20,81,50,0.0 +21636,55,24,26,0.0 +21636,21,10,38,0.0 +21636,8,40,7,0.0 +21636,76,18,27,0.0 +21636,15,15.5,36,0.0 +21636,24,4.5,13,0.0 +21636,44,19.45,38,0.0 +21636,40,18.4,5,0.0 +21636,64,33.25,17,0.0 +21636,19,9.2,14,0.0 +21636,52,7,10,0.0 +21636,18,62.5,2,0.0 +21636,4,22,44,0.0 +21636,34,14,5,0.0 +21636,30,25.89,8,0.0 +21636,6,25,15,0.0 +21636,42,14,48,0.0 +21636,61,28.5,19,0.0 +21636,36,19,31,0.0 +21636,72,34.8,22,0.0 +21636,47,9.5,10,0.0 +21636,25,14,40,0.0 +21636,53,32.8,15,0.0 +21636,38,263.5,6,0.0 +21636,65,21.05,34,0.0 +21636,48,12.75,44,0.0 +21636,1,18,25,0.0 +21636,29,123.79,28,0.0 +21636,68,12.5,30,0.0 +21636,56,38,35,0.0 +21636,41,9.65,36,0.0 +21636,75,7.75,41,0.0 +21636,16,17.45,49,0.0 +21636,66,17,8,0.0 +21636,43,46,1,0.0 +21636,71,21.5,20,0.0 +21636,77,13,1,0.0 +21637,13,6,44,0.0 +21637,43,46,15,0.0 +21637,48,12.75,46,0.0 +21637,76,18,30,0.0 +21637,42,14,38,0.0 +21637,32,32,15,0.0 +21637,65,21.05,5,0.0 +21637,36,19,21,0.0 +21637,1,18,28,0.0 +21637,53,32.8,8,0.0 +21637,9,97,1,0.0 +21637,29,123.79,19,0.0 +21637,66,17,9,0.0 +21637,18,62.5,49,0.0 +21637,52,7,15,0.0 +21637,47,9.5,8,0.0 +21637,55,24,44,0.0 +21637,70,15,3,0.0 +21637,46,12,41,0.0 +21637,69,36,30,0.0 +21637,5,21.35,50,0.0 +21637,31,12.5,38,0.0 +21637,62,49.3,37,0.0 +21637,63,43.9,45,0.0 +21637,57,19.5,37,0.0 +21637,22,21,25,0.0 +21637,40,18.4,44,0.0 +21637,49,20,22,0.0 +21637,21,10,42,0.0 +21638,42,14,4,0.0 +21638,61,28.5,34,0.0 +21638,53,32.8,9,0.0 +21638,57,19.5,44,0.0 +21638,4,22,2,0.0 +21638,32,32,41,0.0 +21638,12,38,38,0.0 +21638,73,15,45,0.0 +21638,31,12.5,34,0.0 +21638,66,17,48,0.0 +21638,65,21.05,14,0.0 +21638,68,12.5,24,0.0 +21638,74,10,11,0.0 +21638,14,23.25,26,0.0 +21638,20,81,8,0.0 +21638,67,14,37,0.0 +21638,64,33.25,38,0.0 +21638,35,18,17,0.0 +21638,8,40,18,0.0 +21638,60,34,26,0.0 +21638,56,38,16,0.0 +21638,59,55,41,0.0 +21638,75,7.75,24,0.0 +21638,23,9,30,0.0 +21638,77,13,37,0.0 +21638,25,14,32,0.0 +21638,17,39,10,0.0 +21638,46,12,16,0.0 +21638,36,19,8,0.0 +21638,54,7.45,26,0.0 +21638,72,34.8,49,0.0 +21638,37,26,39,0.0 +21638,10,31,30,0.0 +21638,16,17.45,9,0.0 +21638,22,21,41,0.0 +21638,58,13.25,49,0.0 +21638,51,53,23,0.0 +21638,15,15.5,6,0.0 +21638,45,9.5,40,0.0 +21638,18,62.5,37,0.0 +21638,29,123.79,45,0.0 +21638,47,9.5,36,0.0 +21639,27,43.9,1,0.0 +21639,24,4.5,25,0.0 +21639,46,12,39,0.0 +21639,39,18,30,0.0 +21639,60,34,37,0.0 +21639,48,12.75,11,0.0 +21639,1,18,26,0.0 +21639,67,14,35,0.0 +21639,35,18,45,0.0 +21639,9,97,1,0.0 +21639,58,13.25,32,0.0 +21639,26,31.23,34,0.0 +21639,34,14,5,0.0 +21639,52,7,49,0.0 +21639,50,16.25,47,0.0 +21639,66,17,45,0.0 +21639,31,12.5,22,0.0 +21639,6,25,45,0.0 +21639,20,81,17,0.0 +21639,45,9.5,17,0.0 +21639,32,32,37,0.0 +21639,62,49.3,36,0.0 +21639,23,9,35,0.0 +21639,57,19.5,39,0.0 +21639,69,36,38,0.0 +21639,76,18,44,0.0 +21639,25,14,41,0.0 +21639,4,22,49,0.0 +21639,36,19,29,0.0 +21639,74,10,27,0.0 +21639,21,10,15,0.0 +21639,33,2.5,7,0.0 +21639,29,123.79,35,0.0 +21639,7,30,30,0.0 +21639,18,62.5,39,0.0 +21639,51,53,38,0.0 +21639,37,26,22,0.0 +21639,55,24,7,0.0 +21639,28,45.6,23,0.0 +21639,54,7.45,6,0.0 +21639,14,23.25,5,0.0 +21639,70,15,29,0.0 +21639,61,28.5,38,0.0 +21639,73,15,38,0.0 +21639,56,38,48,0.0 +21639,11,21,15,0.0 +21639,59,55,1,0.0 +21639,12,38,37,0.0 +21639,22,21,42,0.0 +21639,15,15.5,11,0.0 +21639,3,10,15,0.0 +21639,16,17.45,7,0.0 +21639,17,39,30,0.0 +21639,13,6,35,0.0 +21639,41,9.65,13,0.0 +21639,38,263.5,28,0.0 +21639,65,21.05,9,0.0 +21639,53,32.8,32,0.0 +21639,8,40,41,0.0 +21639,44,19.45,4,0.0 +21639,75,7.75,20,0.0 +21639,64,33.25,12,0.0 +21639,68,12.5,46,0.0 +21639,30,25.89,42,0.0 +21639,10,31,20,0.0 +21639,72,34.8,9,0.0 +21640,30,25.89,24,0.0 +21640,28,45.6,27,0.0 +21640,64,33.25,8,0.0 +21640,67,14,6,0.0 +21640,35,18,9,0.0 +21640,32,32,33,0.0 +21640,17,39,29,0.0 +21640,40,18.4,20,0.0 +21640,53,32.8,33,0.0 +21640,33,2.5,14,0.0 +21640,48,12.75,31,0.0 +21640,21,10,34,0.0 +21640,16,17.45,47,0.0 +21640,71,21.5,16,0.0 +21640,31,12.5,33,0.0 +21640,52,7,48,0.0 +21640,46,12,32,0.0 +21640,50,16.25,5,0.0 +21640,62,49.3,23,0.0 +21640,60,34,28,0.0 +21640,63,43.9,19,0.0 +21640,7,30,18,0.0 +21640,42,14,6,0.0 +21640,10,31,34,0.0 +21640,55,24,48,0.0 +21640,66,17,33,0.0 +21640,77,13,50,0.0 +21640,3,10,48,0.0 +21640,43,46,38,0.0 +21640,19,9.2,21,0.0 +21640,38,263.5,13,0.0 +21640,51,53,45,0.0 +21640,74,10,10,0.0 +21640,41,9.65,15,0.0 +21640,36,19,40,0.0 +21640,49,20,36,0.0 +21640,57,19.5,42,0.0 +21640,25,14,37,0.0 +21640,15,15.5,22,0.0 +21640,73,15,33,0.0 +21640,70,15,9,0.0 +21640,12,38,32,0.0 +21640,8,40,47,0.0 +21640,72,34.8,7,0.0 +21640,68,12.5,44,0.0 +21640,76,18,20,0.0 +21640,14,23.25,44,0.0 +21640,6,25,42,0.0 +21641,64,33.25,37,0.0 +21641,56,38,34,0.0 +21641,19,9.2,13,0.0 +21641,14,23.25,49,0.0 +21641,13,6,30,0.0 +21641,54,7.45,47,0.0 +21641,63,43.9,17,0.0 +21641,9,97,42,0.0 +21641,24,4.5,9,0.0 +21641,58,13.25,3,0.0 +21641,8,40,20,0.0 +21641,22,21,35,0.0 +21641,40,18.4,40,0.0 +21641,61,28.5,37,0.0 +21641,44,19.45,46,0.0 +21641,45,9.5,42,0.0 +21641,66,17,33,0.0 +21641,15,15.5,37,0.0 +21641,49,20,38,0.0 +21641,39,18,33,0.0 +21641,59,55,42,0.0 +21641,21,10,39,0.0 +21641,75,7.75,15,0.0 +21641,53,32.8,31,0.0 +21641,51,53,3,0.0 +21641,42,14,30,0.0 +21641,67,14,4,0.0 +21641,28,45.6,34,0.0 +21641,69,36,16,0.0 +21641,27,43.9,13,0.0 +21641,29,123.79,20,0.0 +21641,25,14,26,0.0 +21641,26,31.23,17,0.0 +21641,46,12,34,0.0 +21641,37,26,46,0.0 +21641,71,21.5,31,0.0 +21641,70,15,2,0.0 +21641,2,19,18,0.0 +21641,12,38,42,0.0 +21641,48,12.75,37,0.0 +21641,43,46,33,0.0 +21641,6,25,21,0.0 +21641,7,30,47,0.0 +21641,41,9.65,30,0.0 +21641,55,24,47,0.0 +21641,72,34.8,9,0.0 +21641,47,9.5,6,0.0 +21641,17,39,50,0.0 +21641,32,32,11,0.0 +21641,5,21.35,17,0.0 +21641,73,15,31,0.0 +21641,68,12.5,29,0.0 +21641,65,21.05,11,0.0 +21641,34,14,35,0.0 +21641,10,31,28,0.0 +21641,4,22,9,0.0 +21641,33,2.5,35,0.0 +21641,20,81,27,0.0 +21641,38,263.5,36,0.0 +21641,76,18,5,0.0 +21642,51,53,19,0.0 +21642,13,6,27,0.0 +21643,43,46,11,0.0 +21643,29,123.79,39,0.0 +21643,71,21.5,24,0.0 +21643,5,21.35,22,0.0 +21643,50,16.25,37,0.0 +21643,25,14,37,0.0 +21643,4,22,37,0.0 +21643,23,9,16,0.0 +21643,57,19.5,40,0.0 +21643,49,20,22,0.0 +21643,35,18,46,0.0 +21643,59,55,21,0.0 +21643,32,32,6,0.0 +21643,9,97,22,0.0 +21643,62,49.3,38,0.0 +21643,10,31,39,0.0 +21643,52,7,25,0.0 +21643,21,10,43,0.0 +21643,15,15.5,21,0.0 +21643,39,18,5,0.0 +21643,68,12.5,32,0.0 +21643,22,21,20,0.0 +21643,55,24,17,0.0 +21643,65,21.05,43,0.0 +21643,46,12,36,0.0 +21643,8,40,4,0.0 +21643,45,9.5,28,0.0 +21643,30,25.89,32,0.0 +21643,28,45.6,47,0.0 +21643,61,28.5,16,0.0 +21643,70,15,11,0.0 +21643,53,32.8,49,0.0 +21643,74,10,38,0.0 +21643,64,33.25,36,0.0 +21643,48,12.75,46,0.0 +21643,38,263.5,42,0.0 +21643,72,34.8,3,0.0 +21643,13,6,13,0.0 +21643,47,9.5,30,0.0 +21643,20,81,12,0.0 +21643,27,43.9,11,0.0 +21643,19,9.2,50,0.0 +21643,14,23.25,11,0.0 +21644,2,19,6,0.0 +21644,24,4.5,12,0.0 +21644,4,22,9,0.0 +21644,63,43.9,11,0.0 +21644,37,26,21,0.0 +21644,33,2.5,13,0.0 +21644,7,30,4,0.0 +21644,58,13.25,29,0.0 +21644,73,15,10,0.0 +21644,15,15.5,46,0.0 +21644,46,12,37,0.0 +21644,57,19.5,16,0.0 +21644,48,12.75,33,0.0 +21644,18,62.5,21,0.0 +21644,53,32.8,14,0.0 +21644,74,10,8,0.0 +21644,44,19.45,1,0.0 +21644,42,14,25,0.0 +21644,36,19,15,0.0 +21645,49,20,39,0.0 +21645,8,40,16,0.0 +21645,4,22,15,0.0 +21645,29,123.79,17,0.0 +21645,6,25,16,0.0 +21645,76,18,22,0.0 +21645,38,263.5,39,0.0 +21645,13,6,49,0.0 +21645,43,46,2,0.0 +21645,23,9,5,0.0 +21645,50,16.25,21,0.0 +21645,11,21,43,0.0 +21645,45,9.5,8,0.0 +21645,62,49.3,41,0.0 +21645,44,19.45,18,0.0 +21645,31,12.5,30,0.0 +21645,17,39,2,0.0 +21645,15,15.5,42,0.0 +21645,41,9.65,11,0.0 +21645,72,34.8,45,0.0 +21645,19,9.2,36,0.0 +21645,73,15,45,0.0 +21645,7,30,6,0.0 +21645,3,10,10,0.0 +21645,32,32,19,0.0 +21645,63,43.9,4,0.0 +21645,40,18.4,7,0.0 +21645,14,23.25,33,0.0 +21645,58,13.25,1,0.0 +21645,65,21.05,48,0.0 +21645,61,28.5,42,0.0 +21645,39,18,50,0.0 +21645,12,38,4,0.0 +21645,24,4.5,16,0.0 +21645,37,26,3,0.0 +21645,59,55,19,0.0 +21645,9,97,38,0.0 +21645,69,36,20,0.0 +21645,36,19,39,0.0 +21645,2,19,34,0.0 +21645,67,14,14,0.0 +21645,71,21.5,9,0.0 +21645,70,15,27,0.0 +21645,64,33.25,29,0.0 +21645,60,34,27,0.0 +21645,25,14,26,0.0 +21645,10,31,26,0.0 +21645,52,7,5,0.0 +21645,18,62.5,37,0.0 +21645,53,32.8,35,0.0 +21645,20,81,20,0.0 +21645,56,38,50,0.0 +21645,68,12.5,23,0.0 +21645,77,13,48,0.0 +21645,74,10,6,0.0 +21645,34,14,15,0.0 +21645,5,21.35,11,0.0 +21645,16,17.45,36,0.0 +21645,47,9.5,43,0.0 +21645,42,14,16,0.0 +21645,57,19.5,34,0.0 +21645,46,12,24,0.0 +21645,55,24,3,0.0 +21645,66,17,10,0.0 +21645,54,7.45,6,0.0 +21645,26,31.23,22,0.0 +21645,21,10,19,0.0 +21645,75,7.75,23,0.0 +21645,33,2.5,24,0.0 +21645,48,12.75,47,0.0 +21645,51,53,29,0.0 +21645,28,45.6,7,0.0 +21645,22,21,44,0.0 +21646,76,18,30,0.0 +21646,58,13.25,34,0.0 +21646,53,32.8,24,0.0 +21646,65,21.05,19,0.0 +21646,45,9.5,28,0.0 +21646,70,15,20,0.0 +21647,44,19.45,22,0.0 +21647,55,24,1,0.0 +21647,21,10,32,0.0 +21647,38,263.5,16,0.0 +21647,22,21,22,0.0 +21647,60,34,33,0.0 +21648,20,81,30,0.0 +21648,34,14,22,0.0 +21648,24,4.5,32,0.0 +21648,11,21,35,0.0 +21648,76,18,15,0.0 +21648,63,43.9,36,0.0 +21648,77,13,17,0.0 +21648,51,53,7,0.0 +21648,5,21.35,45,0.0 +21648,42,14,22,0.0 +21648,67,14,36,0.0 +21648,75,7.75,46,0.0 +21648,64,33.25,41,0.0 +21648,44,19.45,27,0.0 +21648,10,31,9,0.0 +21648,60,34,10,0.0 +21648,4,22,49,0.0 +21648,40,18.4,39,0.0 +21648,74,10,31,0.0 +21648,70,15,37,0.0 +21648,18,62.5,30,0.0 +21648,68,12.5,42,0.0 +21648,26,31.23,35,0.0 +21648,36,19,12,0.0 +21648,62,49.3,31,0.0 +21648,30,25.89,1,0.0 +21648,59,55,23,0.0 +21648,54,7.45,44,0.0 +21648,32,32,41,0.0 +21648,17,39,5,0.0 +21648,25,14,44,0.0 +21648,73,15,24,0.0 +21648,58,13.25,15,0.0 +21648,49,20,21,0.0 +21648,57,19.5,48,0.0 +21648,13,6,8,0.0 +21648,61,28.5,13,0.0 +21648,9,97,21,0.0 +21648,69,36,2,0.0 +21648,14,23.25,37,0.0 +21648,43,46,46,0.0 +21648,29,123.79,43,0.0 +21648,37,26,11,0.0 +21648,21,10,12,0.0 +21648,50,16.25,14,0.0 +21648,47,9.5,5,0.0 +21648,71,21.5,6,0.0 +21648,31,12.5,23,0.0 +21648,7,30,30,0.0 +21648,39,18,19,0.0 +21648,33,2.5,6,0.0 +21648,45,9.5,18,0.0 +21648,46,12,25,0.0 +21648,19,9.2,28,0.0 +21648,3,10,7,0.0 +21648,8,40,20,0.0 +21648,12,38,8,0.0 +21648,41,9.65,2,0.0 +21648,35,18,3,0.0 +21648,72,34.8,47,0.0 +21648,55,24,21,0.0 +21648,15,15.5,16,0.0 +21648,6,25,23,0.0 +21648,66,17,34,0.0 +21648,38,263.5,49,0.0 +21648,16,17.45,45,0.0 +21648,2,19,27,0.0 +21648,22,21,13,0.0 +21649,75,7.75,7,0.0 +21649,71,21.5,10,0.0 +21649,39,18,1,0.0 +21649,70,15,46,0.0 +21649,53,32.8,22,0.0 +21649,62,49.3,31,0.0 +21649,25,14,26,0.0 +21649,11,21,48,0.0 +21649,51,53,43,0.0 +21649,40,18.4,37,0.0 +21649,18,62.5,31,0.0 +21649,19,9.2,6,0.0 +21649,8,40,38,0.0 +21649,32,32,32,0.0 +21649,27,43.9,14,0.0 +21650,65,21.05,10,0.0 +21650,22,21,28,0.0 +21650,50,16.25,5,0.0 +21650,3,10,35,0.0 +21650,14,23.25,42,0.0 +21650,44,19.45,6,0.0 +21650,31,12.5,8,0.0 +21650,63,43.9,27,0.0 +21650,62,49.3,20,0.0 +21650,51,53,8,0.0 +21650,38,263.5,25,0.0 +21650,33,2.5,45,0.0 +21650,64,33.25,19,0.0 +21650,34,14,18,0.0 +21650,75,7.75,21,0.0 +21650,6,25,43,0.0 +21650,30,25.89,1,0.0 +21650,52,7,12,0.0 +21650,16,17.45,29,0.0 +21650,40,18.4,14,0.0 +21650,25,14,23,0.0 +21650,32,32,50,0.0 +21651,2,19,14,0.0 +21651,23,9,28,0.0 +21651,4,22,3,0.0 +21651,15,15.5,7,0.0 +21651,28,45.6,35,0.0 +21651,53,32.8,8,0.0 +21651,54,7.45,19,0.0 +21651,33,2.5,44,0.0 +21651,49,20,4,0.0 +21651,6,25,25,0.0 +21651,63,43.9,20,0.0 +21651,20,81,46,0.0 +21651,13,6,8,0.0 +21651,3,10,8,0.0 +21651,74,10,35,0.0 +21651,59,55,34,0.0 +21651,11,21,25,0.0 +21651,27,43.9,6,0.0 +21651,9,97,5,0.0 +21651,68,12.5,42,0.0 +21651,40,18.4,34,0.0 +21651,47,9.5,47,0.0 +21651,21,10,31,0.0 +21651,57,19.5,7,0.0 +21651,48,12.75,31,0.0 +21651,5,21.35,31,0.0 +21651,69,36,3,0.0 +21651,26,31.23,10,0.0 +21651,12,38,2,0.0 +21651,41,9.65,4,0.0 +21651,51,53,29,0.0 +21651,25,14,4,0.0 +21651,60,34,17,0.0 +21651,58,13.25,5,0.0 +21651,72,34.8,42,0.0 +21651,70,15,2,0.0 +21651,37,26,1,0.0 +21651,14,23.25,10,0.0 +21651,19,9.2,35,0.0 +21651,7,30,30,0.0 +21651,50,16.25,47,0.0 +21651,22,21,9,0.0 +21651,38,263.5,9,0.0 +21651,64,33.25,50,0.0 +21651,17,39,7,0.0 +21651,67,14,6,0.0 +21651,1,18,10,0.0 +21651,18,62.5,10,0.0 +21651,62,49.3,44,0.0 +21651,56,38,40,0.0 +21651,73,15,11,0.0 +21651,55,24,44,0.0 +21651,44,19.45,22,0.0 +21651,66,17,25,0.0 +21652,44,19.45,7,0.0 +21652,50,16.25,44,0.0 +21652,3,10,24,0.0 +21652,68,12.5,4,0.0 +21652,16,17.45,20,0.0 +21652,2,19,40,0.0 +21652,7,30,44,0.0 +21653,69,36,3,0.0 +21653,54,7.45,26,0.0 +21653,25,14,49,0.0 +21653,33,2.5,14,0.0 +21653,5,21.35,1,0.0 +21653,12,38,9,0.0 +21653,8,40,50,0.0 +21653,35,18,35,0.0 +21653,3,10,9,0.0 +21653,20,81,43,0.0 +21653,23,9,42,0.0 +21653,44,19.45,43,0.0 +21653,72,34.8,50,0.0 +21653,43,46,12,0.0 +21653,30,25.89,30,0.0 +21653,64,33.25,48,0.0 +21653,9,97,25,0.0 +21653,16,17.45,8,0.0 +21653,48,12.75,43,0.0 +21653,6,25,35,0.0 +21653,28,45.6,38,0.0 +21653,68,12.5,24,0.0 +21653,26,31.23,19,0.0 +21653,15,15.5,32,0.0 +21653,42,14,25,0.0 +21653,22,21,40,0.0 +21653,40,18.4,25,0.0 +21653,49,20,41,0.0 +21653,32,32,30,0.0 +21653,38,263.5,29,0.0 +21653,51,53,40,0.0 +21653,46,12,12,0.0 +21653,53,32.8,38,0.0 +21653,21,10,1,0.0 +21653,63,43.9,46,0.0 +21653,45,9.5,39,0.0 +21653,37,26,39,0.0 +21653,67,14,31,0.0 +21653,34,14,32,0.0 +21653,7,30,25,0.0 +21653,4,22,21,0.0 +21653,52,7,45,0.0 +21653,56,38,25,0.0 +21653,66,17,1,0.0 +21653,70,15,47,0.0 +21653,39,18,49,0.0 +21653,73,15,36,0.0 +21653,76,18,22,0.0 +21653,77,13,33,0.0 +21653,41,9.65,22,0.0 +21653,71,21.5,16,0.0 +21653,50,16.25,19,0.0 +21653,11,21,37,0.0 +21653,47,9.5,2,0.0 +21653,29,123.79,36,0.0 +21654,59,55,46,0.0 +21654,25,14,18,0.0 +21654,45,9.5,30,0.0 +21654,71,21.5,33,0.0 +21654,67,14,49,0.0 +21654,52,7,20,0.0 +21654,56,38,35,0.0 +21654,33,2.5,13,0.0 +21654,60,34,8,0.0 +21654,66,17,26,0.0 +21654,40,18.4,49,0.0 +21654,49,20,29,0.0 +21654,37,26,34,0.0 +21654,5,21.35,38,0.0 +21654,63,43.9,23,0.0 +21654,73,15,45,0.0 +21654,75,7.75,47,0.0 +21654,43,46,21,0.0 +21654,27,43.9,37,0.0 +21654,64,33.25,45,0.0 +21654,51,53,17,0.0 +21654,8,40,27,0.0 +21654,28,45.6,8,0.0 +21654,7,30,4,0.0 +21654,2,19,34,0.0 +21654,9,97,3,0.0 +21654,48,12.75,3,0.0 +21655,30,25.89,31,0.0 +21655,58,13.25,4,0.0 +21655,53,32.8,45,0.0 +21655,75,7.75,41,0.0 +21655,11,21,18,0.0 +21655,43,46,40,0.0 +21655,64,33.25,5,0.0 +21655,3,10,38,0.0 +21655,62,49.3,3,0.0 +21655,65,21.05,23,0.0 +21655,67,14,31,0.0 +21655,73,15,35,0.0 +21655,54,7.45,28,0.0 +21655,71,21.5,42,0.0 +21655,69,36,5,0.0 +21655,29,123.79,42,0.0 +21655,63,43.9,12,0.0 +21655,35,18,46,0.0 +21655,25,14,14,0.0 +21655,33,2.5,40,0.0 +21655,13,6,38,0.0 +21655,68,12.5,24,0.0 +21655,21,10,46,0.0 +21655,20,81,47,0.0 +21655,51,53,20,0.0 +21655,37,26,39,0.0 +21655,36,19,9,0.0 +21655,17,39,9,0.0 +21655,39,18,43,0.0 +21655,74,10,21,0.0 +21655,27,43.9,35,0.0 +21655,24,4.5,39,0.0 +21655,16,17.45,41,0.0 +21655,70,15,15,0.0 +21655,4,22,15,0.0 +21655,42,14,45,0.0 +21655,1,18,19,0.0 +21655,50,16.25,22,0.0 +21655,19,9.2,16,0.0 +21655,31,12.5,20,0.0 +21655,76,18,47,0.0 +21655,7,30,11,0.0 +21655,10,31,1,0.0 +21655,57,19.5,8,0.0 +21655,2,19,25,0.0 +21655,44,19.45,41,0.0 +21655,18,62.5,2,0.0 +21655,34,14,6,0.0 +21655,47,9.5,30,0.0 +21655,23,9,41,0.0 +21655,56,38,27,0.0 +21655,32,32,48,0.0 +21655,49,20,36,0.0 +21655,9,97,22,0.0 +21655,72,34.8,37,0.0 +21655,52,7,17,0.0 +21656,65,21.05,34,0.0 +21656,48,12.75,25,0.0 +21656,47,9.5,18,0.0 +21656,18,62.5,43,0.0 +21656,61,28.5,13,0.0 +21656,74,10,40,0.0 +21656,66,17,6,0.0 +21656,51,53,24,0.0 +21656,73,15,46,0.0 +21656,6,25,48,0.0 +21656,22,21,40,0.0 +21656,19,9.2,14,0.0 +21656,76,18,8,0.0 +21656,27,43.9,18,0.0 +21656,55,24,42,0.0 +21656,45,9.5,49,0.0 +21656,10,31,26,0.0 +21656,2,19,44,0.0 +21656,29,123.79,10,0.0 +21656,1,18,3,0.0 +21656,58,13.25,44,0.0 +21656,4,22,23,0.0 +21656,39,18,23,0.0 +21656,60,34,2,0.0 +21656,13,6,10,0.0 +21656,62,49.3,29,0.0 +21656,69,36,12,0.0 +21656,20,81,24,0.0 +21656,50,16.25,22,0.0 +21656,32,32,46,0.0 +21656,17,39,30,0.0 +21656,67,14,41,0.0 +21656,72,34.8,3,0.0 +21656,30,25.89,18,0.0 +21656,3,10,28,0.0 +21656,38,263.5,31,0.0 +21656,23,9,49,0.0 +21656,68,12.5,32,0.0 +21656,7,30,29,0.0 +21656,21,10,48,0.0 +21656,33,2.5,30,0.0 +21656,25,14,29,0.0 +21656,28,45.6,41,0.0 +21656,56,38,16,0.0 +21656,44,19.45,33,0.0 +21656,57,19.5,10,0.0 +21656,46,12,50,0.0 +21656,9,97,22,0.0 +21656,26,31.23,33,0.0 +21656,52,7,18,0.0 +21656,8,40,11,0.0 +21656,75,7.75,10,0.0 +21656,71,21.5,29,0.0 +21656,49,20,12,0.0 +21656,14,23.25,15,0.0 +21656,53,32.8,42,0.0 +21656,15,15.5,22,0.0 +21656,24,4.5,19,0.0 +21656,59,55,14,0.0 +21656,5,21.35,19,0.0 +21656,43,46,6,0.0 +21656,40,18.4,24,0.0 +21656,41,9.65,24,0.0 +21657,27,43.9,48,0.0 +21657,48,12.75,18,0.0 +21657,42,14,49,0.0 +21657,26,31.23,48,0.0 +21657,64,33.25,44,0.0 +21657,25,14,19,0.0 +21657,57,19.5,1,0.0 +21657,46,12,13,0.0 +21657,50,16.25,44,0.0 +21657,11,21,33,0.0 +21657,16,17.45,45,0.0 +21657,47,9.5,9,0.0 +21657,70,15,43,0.0 +21657,67,14,36,0.0 +21657,45,9.5,10,0.0 +21657,68,12.5,36,0.0 +21657,36,19,16,0.0 +21657,9,97,13,0.0 +21657,66,17,38,0.0 +21657,65,21.05,44,0.0 +21657,12,38,27,0.0 +21657,61,28.5,16,0.0 +21657,2,19,31,0.0 +21657,75,7.75,39,0.0 +21657,1,18,30,0.0 +21658,62,49.3,43,0.0 +21658,57,19.5,44,0.0 +21658,10,31,12,0.0 +21658,18,62.5,13,0.0 +21658,41,9.65,10,0.0 +21658,39,18,7,0.0 +21658,60,34,11,0.0 +21658,7,30,26,0.0 +21658,49,20,21,0.0 +21658,22,21,33,0.0 +21658,59,55,15,0.0 +21658,17,39,31,0.0 +21658,29,123.79,6,0.0 +21658,23,9,32,0.0 +21658,12,38,50,0.0 +21658,21,10,33,0.0 +21658,8,40,2,0.0 +21658,37,26,43,0.0 +21658,15,15.5,27,0.0 +21658,25,14,18,0.0 +21658,73,15,38,0.0 +21658,51,53,6,0.0 +21658,34,14,29,0.0 +21658,11,21,10,0.0 +21658,35,18,26,0.0 +21658,75,7.75,44,0.0 +21658,13,6,25,0.0 +21658,4,22,47,0.0 +21658,74,10,46,0.0 +21658,33,2.5,43,0.0 +21658,14,23.25,11,0.0 +21658,16,17.45,23,0.0 +21658,54,7.45,8,0.0 +21658,70,15,16,0.0 +21658,3,10,14,0.0 +21658,32,32,22,0.0 +21658,56,38,48,0.0 +21658,77,13,36,0.0 +21658,55,24,27,0.0 +21658,27,43.9,24,0.0 +21658,24,4.5,43,0.0 +21658,38,263.5,7,0.0 +21658,31,12.5,50,0.0 +21658,20,81,50,0.0 +21658,36,19,12,0.0 +21658,48,12.75,7,0.0 +21658,52,7,35,0.0 +21658,44,19.45,25,0.0 +21658,72,34.8,20,0.0 +21659,2,19,7,0.0 +21659,76,18,17,0.0 +21659,7,30,43,0.0 +21659,38,263.5,25,0.0 +21659,56,38,3,0.0 +21659,71,21.5,21,0.0 +21659,64,33.25,8,0.0 +21659,8,40,3,0.0 +21659,59,55,49,0.0 +21659,47,9.5,2,0.0 +21659,75,7.75,46,0.0 +21659,58,13.25,28,0.0 +21659,54,7.45,33,0.0 +21659,33,2.5,48,0.0 +21659,68,12.5,12,0.0 +21659,28,45.6,8,0.0 +21659,14,23.25,38,0.0 +21659,34,14,28,0.0 +21659,36,19,31,0.0 +21659,41,9.65,40,0.0 +21659,52,7,32,0.0 +21659,51,53,42,0.0 +21659,17,39,12,0.0 +21659,18,62.5,2,0.0 +21659,22,21,4,0.0 +21659,30,25.89,37,0.0 +21659,61,28.5,13,0.0 +21659,77,13,31,0.0 +21659,31,12.5,50,0.0 +21659,44,19.45,30,0.0 +21659,69,36,26,0.0 +21659,42,14,30,0.0 +21659,3,10,39,0.0 +21659,70,15,37,0.0 +21659,35,18,38,0.0 +21659,12,38,40,0.0 +21660,77,13,47,0.0 +21660,6,25,6,0.0 +21660,75,7.75,34,0.0 +21660,28,45.6,9,0.0 +21660,39,18,49,0.0 +21660,73,15,12,0.0 +21660,15,15.5,1,0.0 +21660,35,18,50,0.0 +21660,22,21,2,0.0 +21660,8,40,23,0.0 +21660,38,263.5,47,0.0 +21660,26,31.23,17,0.0 +21660,3,10,7,0.0 +21660,70,15,26,0.0 +21660,51,53,28,0.0 +21660,53,32.8,4,0.0 +21660,18,62.5,35,0.0 +21660,62,49.3,38,0.0 +21660,69,36,3,0.0 +21660,58,13.25,4,0.0 +21660,43,46,35,0.0 +21660,63,43.9,19,0.0 +21660,45,9.5,1,0.0 +21660,21,10,44,0.0 +21660,1,18,3,0.0 +21660,4,22,13,0.0 +21660,57,19.5,41,0.0 +21660,49,20,32,0.0 +21660,34,14,43,0.0 +21660,29,123.79,15,0.0 +21660,48,12.75,37,0.0 +21660,55,24,14,0.0 +21660,10,31,33,0.0 +21660,7,30,8,0.0 +21660,31,12.5,5,0.0 +21660,67,14,23,0.0 +21660,2,19,20,0.0 +21660,12,38,45,0.0 +21660,32,32,17,0.0 +21660,74,10,31,0.0 +21660,40,18.4,42,0.0 +21660,50,16.25,26,0.0 +21660,64,33.25,44,0.0 +21660,76,18,31,0.0 +21660,24,4.5,34,0.0 +21660,56,38,36,0.0 +21661,72,34.8,10,0.0 +21661,39,18,50,0.0 +21661,37,26,43,0.0 +21661,31,12.5,38,0.0 +21661,14,23.25,40,0.0 +21661,61,28.5,2,0.0 +21661,24,4.5,37,0.0 +21661,9,97,18,0.0 +21661,60,34,20,0.0 +21661,19,9.2,1,0.0 +21661,45,9.5,37,0.0 +21661,52,7,21,0.0 +21661,1,18,32,0.0 +21661,6,25,17,0.0 +21661,65,21.05,12,0.0 +21661,40,18.4,34,0.0 +21661,69,36,7,0.0 +21661,50,16.25,29,0.0 +21661,32,32,14,0.0 +21661,77,13,15,0.0 +21661,23,9,29,0.0 +21661,3,10,42,0.0 +21661,28,45.6,13,0.0 +21661,2,19,13,0.0 +21661,21,10,35,0.0 +21661,17,39,48,0.0 +21661,26,31.23,46,0.0 +21661,75,7.75,5,0.0 +21661,29,123.79,13,0.0 +21661,57,19.5,6,0.0 +21661,44,19.45,38,0.0 +21661,4,22,13,0.0 +21661,38,263.5,30,0.0 +21661,25,14,13,0.0 +21661,49,20,6,0.0 +21661,42,14,3,0.0 +21661,18,62.5,10,0.0 +21661,70,15,5,0.0 +21661,53,32.8,42,0.0 +21661,34,14,47,0.0 +21661,74,10,38,0.0 +21661,20,81,39,0.0 +21661,30,25.89,5,0.0 +21661,12,38,27,0.0 +21661,48,12.75,10,0.0 +21661,10,31,30,0.0 +21661,76,18,42,0.0 +21661,41,9.65,19,0.0 +21661,63,43.9,2,0.0 +21661,16,17.45,6,0.0 +21661,71,21.5,30,0.0 +21661,13,6,29,0.0 +21661,8,40,47,0.0 +21661,56,38,44,0.0 +21661,36,19,2,0.0 +21661,55,24,23,0.0 +21661,46,12,11,0.0 +21662,61,28.5,3,0.0 +21662,44,19.45,45,0.0 +21662,11,21,37,0.0 +21662,64,33.25,5,0.0 +21662,22,21,26,0.0 +21662,15,15.5,11,0.0 +21662,70,15,4,0.0 +21662,58,13.25,5,0.0 +21662,13,6,22,0.0 +21662,56,38,44,0.0 +21662,34,14,45,0.0 +21662,69,36,34,0.0 +21662,37,26,19,0.0 +21662,31,12.5,9,0.0 +21662,65,21.05,29,0.0 +21662,25,14,38,0.0 +21662,59,55,43,0.0 +21662,43,46,24,0.0 +21662,6,25,7,0.0 +21662,49,20,24,0.0 +21662,5,21.35,15,0.0 +21662,75,7.75,13,0.0 +21662,12,38,41,0.0 +21662,68,12.5,17,0.0 +21662,52,7,8,0.0 +21662,42,14,18,0.0 +21662,9,97,7,0.0 +21662,29,123.79,7,0.0 +21662,63,43.9,44,0.0 +21662,73,15,29,0.0 +21662,72,34.8,11,0.0 +21662,39,18,28,0.0 +21662,53,32.8,17,0.0 +21662,50,16.25,14,0.0 +21662,16,17.45,16,0.0 +21662,55,24,30,0.0 +21662,7,30,15,0.0 +21662,1,18,23,0.0 +21662,18,62.5,7,0.0 +21662,38,263.5,21,0.0 +21662,4,22,41,0.0 +21662,74,10,1,0.0 +21662,21,10,37,0.0 +21662,57,19.5,48,0.0 +21662,8,40,8,0.0 +21662,60,34,43,0.0 +21662,62,49.3,1,0.0 +21662,27,43.9,47,0.0 +21662,47,9.5,12,0.0 +21662,66,17,11,0.0 +21662,35,18,46,0.0 +21662,24,4.5,25,0.0 +21662,40,18.4,48,0.0 +21662,30,25.89,18,0.0 +21662,2,19,35,0.0 +21663,31,12.5,8,0.0 +21663,76,18,32,0.0 +21663,3,10,8,0.0 +21663,55,24,4,0.0 +21663,30,25.89,11,0.0 +21663,21,10,13,0.0 +21663,39,18,4,0.0 +21663,25,14,10,0.0 +21663,5,21.35,14,0.0 +21663,8,40,37,0.0 +21663,67,14,32,0.0 +21663,20,81,27,0.0 +21663,60,34,15,0.0 +21663,28,45.6,21,0.0 +21663,23,9,32,0.0 +21663,72,34.8,15,0.0 +21663,32,32,9,0.0 +21663,41,9.65,40,0.0 +21663,75,7.75,45,0.0 +21663,69,36,27,0.0 +21663,38,263.5,6,0.0 +21663,22,21,29,0.0 +21663,24,4.5,9,0.0 +21663,13,6,11,0.0 +21663,9,97,26,0.0 +21663,2,19,41,0.0 +21664,74,10,44,0.0 +21664,76,18,45,0.0 +21665,12,38,28,0.0 +21665,31,12.5,33,0.0 +21665,61,28.5,24,0.0 +21665,34,14,40,0.0 +21665,25,14,16,0.0 +21665,55,24,45,0.0 +21665,52,7,6,0.0 +21665,35,18,24,0.0 +21665,2,19,46,0.0 +21665,65,21.05,41,0.0 +21665,56,38,10,0.0 +21665,36,19,30,0.0 +21665,73,15,2,0.0 +21665,5,21.35,3,0.0 +21665,23,9,47,0.0 +21665,17,39,47,0.0 +21665,77,13,7,0.0 +21665,22,21,27,0.0 +21665,74,10,27,0.0 +21665,19,9.2,41,0.0 +21665,9,97,22,0.0 +21665,49,20,26,0.0 +21665,51,53,29,0.0 +21665,67,14,12,0.0 +21665,29,123.79,35,0.0 +21665,76,18,3,0.0 +21665,14,23.25,11,0.0 +21665,6,25,9,0.0 +21665,63,43.9,19,0.0 +21665,42,14,46,0.0 +21665,75,7.75,14,0.0 +21665,33,2.5,47,0.0 +21665,71,21.5,17,0.0 +21665,57,19.5,1,0.0 +21665,10,31,44,0.0 +21665,46,12,44,0.0 +21665,70,15,4,0.0 +21665,48,12.75,43,0.0 +21665,27,43.9,1,0.0 +21665,30,25.89,35,0.0 +21665,28,45.6,10,0.0 +21665,18,62.5,20,0.0 +21665,41,9.65,15,0.0 +21665,54,7.45,27,0.0 +21666,18,62.5,15,0.0 +21666,76,18,46,0.0 +21666,38,263.5,11,0.0 +21666,29,123.79,28,0.0 +21666,67,14,33,0.0 +21666,16,17.45,16,0.0 +21666,63,43.9,31,0.0 +21666,75,7.75,6,0.0 +21666,11,21,23,0.0 +21666,70,15,14,0.0 +21666,20,81,15,0.0 +21666,72,34.8,7,0.0 +21666,34,14,39,0.0 +21666,50,16.25,27,0.0 +21666,60,34,13,0.0 +21666,33,2.5,21,0.0 +21666,41,9.65,4,0.0 +21666,35,18,6,0.0 +21666,66,17,48,0.0 +21666,9,97,44,0.0 +21666,65,21.05,3,0.0 +21666,69,36,5,0.0 +21666,48,12.75,14,0.0 +21666,24,4.5,19,0.0 +21666,47,9.5,4,0.0 +21666,68,12.5,50,0.0 +21666,22,21,49,0.0 +21666,44,19.45,20,0.0 +21666,71,21.5,20,0.0 +21666,58,13.25,48,0.0 +21666,62,49.3,6,0.0 +21666,52,7,14,0.0 +21666,7,30,19,0.0 +21666,12,38,9,0.0 +21666,36,19,21,0.0 +21666,59,55,44,0.0 +21666,51,53,42,0.0 +21666,49,20,23,0.0 +21666,15,15.5,28,0.0 +21666,31,12.5,12,0.0 +21666,4,22,33,0.0 +21666,54,7.45,22,0.0 +21666,43,46,1,0.0 +21666,23,9,7,0.0 +21666,40,18.4,12,0.0 +21666,57,19.5,50,0.0 +21666,10,31,9,0.0 +21666,27,43.9,31,0.0 +21666,64,33.25,29,0.0 +21666,5,21.35,9,0.0 +21666,13,6,11,0.0 +21666,42,14,4,0.0 +21666,77,13,29,0.0 +21666,56,38,25,0.0 +21666,3,10,9,0.0 +21666,37,26,15,0.0 +21666,32,32,36,0.0 +21666,21,10,32,0.0 +21666,73,15,35,0.0 +21666,28,45.6,39,0.0 +21666,61,28.5,40,0.0 +21666,25,14,24,0.0 +21666,55,24,41,0.0 +21666,26,31.23,36,0.0 +21667,74,10,9,0.0 +21667,45,9.5,8,0.0 +21667,61,28.5,50,0.0 +21667,47,9.5,1,0.0 +21667,63,43.9,43,0.0 +21667,11,21,18,0.0 +21667,12,38,16,0.0 +21667,7,30,35,0.0 +21667,19,9.2,22,0.0 +21667,42,14,4,0.0 +21667,30,25.89,5,0.0 +21667,59,55,44,0.0 +21668,5,21.35,32,0.0 +21668,38,263.5,10,0.0 +21668,4,22,14,0.0 +21668,26,31.23,19,0.0 +21668,40,18.4,11,0.0 +21668,6,25,30,0.0 +21668,1,18,1,0.0 +21668,60,34,45,0.0 +21668,65,21.05,43,0.0 +21668,48,12.75,5,0.0 +21668,56,38,4,0.0 +21668,17,39,23,0.0 +21668,28,45.6,44,0.0 +21668,73,15,20,0.0 +21668,32,32,43,0.0 +21668,55,24,20,0.0 +21668,76,18,7,0.0 +21668,72,34.8,24,0.0 +21668,68,12.5,48,0.0 +21668,51,53,49,0.0 +21668,77,13,20,0.0 +21668,41,9.65,17,0.0 +21668,7,30,15,0.0 +21668,36,19,7,0.0 +21668,2,19,4,0.0 +21668,46,12,47,0.0 +21668,14,23.25,17,0.0 +21668,61,28.5,44,0.0 +21668,45,9.5,11,0.0 +21668,75,7.75,41,0.0 +21668,63,43.9,49,0.0 +21668,10,31,26,0.0 +21668,23,9,21,0.0 +21668,19,9.2,13,0.0 +21668,47,9.5,32,0.0 +21668,18,62.5,19,0.0 +21668,44,19.45,14,0.0 +21668,54,7.45,10,0.0 +21668,62,49.3,24,0.0 +21668,15,15.5,37,0.0 +21668,24,4.5,29,0.0 +21668,30,25.89,18,0.0 +21668,53,32.8,49,0.0 +21668,37,26,36,0.0 +21668,3,10,24,0.0 +21668,64,33.25,32,0.0 +21668,8,40,29,0.0 +21668,25,14,25,0.0 +21668,11,21,42,0.0 +21668,34,14,31,0.0 +21668,39,18,6,0.0 +21668,67,14,40,0.0 +21668,49,20,29,0.0 +21668,43,46,3,0.0 +21668,29,123.79,14,0.0 +21669,20,81,45,0.0 +21669,21,10,44,0.0 +21669,38,263.5,46,0.0 +21669,12,38,25,0.0 +21669,3,10,44,0.0 +21669,32,32,39,0.0 +21669,51,53,50,0.0 +21669,47,9.5,2,0.0 +21669,46,12,49,0.0 +21669,49,20,41,0.0 +21669,22,21,37,0.0 +21669,11,21,22,0.0 +21669,31,12.5,10,0.0 +21669,1,18,19,0.0 +21669,37,26,26,0.0 +21669,62,49.3,48,0.0 +21669,24,4.5,15,0.0 +21669,34,14,31,0.0 +21669,6,25,13,0.0 +21669,16,17.45,24,0.0 +21669,75,7.75,9,0.0 +21669,70,15,35,0.0 +21669,36,19,28,0.0 +21669,15,15.5,44,0.0 +21669,42,14,26,0.0 +21669,54,7.45,7,0.0 +21669,40,18.4,17,0.0 +21669,67,14,5,0.0 +21669,26,31.23,17,0.0 +21669,71,21.5,11,0.0 +21669,65,21.05,26,0.0 +21669,56,38,11,0.0 +21669,77,13,38,0.0 +21669,69,36,26,0.0 +21669,4,22,1,0.0 +21669,30,25.89,50,0.0 +21669,60,34,36,0.0 +21669,57,19.5,31,0.0 +21669,17,39,15,0.0 +21669,19,9.2,15,0.0 +21669,59,55,50,0.0 +21669,28,45.6,2,0.0 +21669,5,21.35,40,0.0 +21669,52,7,25,0.0 +21669,23,9,36,0.0 +21669,25,14,1,0.0 +21669,64,33.25,33,0.0 +21669,43,46,38,0.0 +21669,55,24,26,0.0 +21669,73,15,31,0.0 +21669,2,19,38,0.0 +21669,7,30,26,0.0 +21669,13,6,40,0.0 +21669,68,12.5,26,0.0 +21669,44,19.45,5,0.0 +21669,50,16.25,19,0.0 +21669,76,18,21,0.0 +21669,63,43.9,27,0.0 +21669,33,2.5,47,0.0 +21669,72,34.8,3,0.0 +21669,8,40,48,0.0 +21669,27,43.9,48,0.0 +21669,41,9.65,35,0.0 +21669,48,12.75,22,0.0 +21669,53,32.8,15,0.0 +21669,18,62.5,44,0.0 +21669,9,97,19,0.0 +21669,35,18,31,0.0 +21669,14,23.25,44,0.0 +21669,58,13.25,36,0.0 +21669,74,10,25,0.0 +21669,39,18,15,0.0 +21669,29,123.79,50,0.0 +21669,66,17,3,0.0 +21670,46,12,44,0.0 +21670,66,17,39,0.0 +21670,15,15.5,24,0.0 +21670,23,9,25,0.0 +21670,69,36,37,0.0 +21670,68,12.5,14,0.0 +21670,77,13,31,0.0 +21671,59,55,11,0.0 +21671,32,32,48,0.0 +21671,52,7,5,0.0 +21671,53,32.8,14,0.0 +21671,60,34,22,0.0 +21671,23,9,9,0.0 +21671,64,33.25,14,0.0 +21671,24,4.5,7,0.0 +21671,7,30,44,0.0 +21671,76,18,38,0.0 +21671,69,36,14,0.0 +21671,73,15,35,0.0 +21671,16,17.45,20,0.0 +21671,40,18.4,25,0.0 +21671,33,2.5,12,0.0 +21671,34,14,48,0.0 +21671,56,38,49,0.0 +21671,49,20,34,0.0 +21671,21,10,35,0.0 +21671,30,25.89,11,0.0 +21671,37,26,28,0.0 +21671,10,31,49,0.0 +21671,5,21.35,25,0.0 +21671,51,53,26,0.0 +21671,29,123.79,41,0.0 +21671,36,19,18,0.0 +21671,17,39,33,0.0 +21671,18,62.5,22,0.0 +21671,61,28.5,2,0.0 +21671,41,9.65,5,0.0 +21671,66,17,50,0.0 +21671,15,15.5,15,0.0 +21671,55,24,30,0.0 +21671,2,19,38,0.0 +21671,72,34.8,38,0.0 +21671,50,16.25,28,0.0 +21671,46,12,26,0.0 +21671,42,14,28,0.0 +21671,8,40,22,0.0 +21671,48,12.75,18,0.0 +21671,38,263.5,7,0.0 +21671,44,19.45,19,0.0 +21671,14,23.25,37,0.0 +21671,11,21,38,0.0 +21671,62,49.3,9,0.0 +21671,39,18,1,0.0 +21671,65,21.05,39,0.0 +21671,45,9.5,42,0.0 +21671,28,45.6,29,0.0 +21671,70,15,33,0.0 +21671,67,14,42,0.0 +21672,6,25,36,0.0 +21672,23,9,5,0.0 +21672,75,7.75,32,0.0 +21672,39,18,21,0.0 +21672,68,12.5,34,0.0 +21672,67,14,49,0.0 +21672,9,97,35,0.0 +21672,7,30,21,0.0 +21672,43,46,18,0.0 +21672,28,45.6,35,0.0 +21672,76,18,9,0.0 +21672,66,17,33,0.0 +21672,30,25.89,43,0.0 +21672,69,36,17,0.0 +21672,62,49.3,5,0.0 +21672,19,9.2,38,0.0 +21672,61,28.5,37,0.0 +21672,37,26,48,0.0 +21672,73,15,46,0.0 +21672,4,22,4,0.0 +21672,70,15,42,0.0 +21672,71,21.5,19,0.0 +21672,22,21,49,0.0 +21672,54,7.45,16,0.0 +21672,38,263.5,34,0.0 +21672,40,18.4,39,0.0 +21672,44,19.45,24,0.0 +21672,49,20,29,0.0 +21672,2,19,33,0.0 +21672,46,12,20,0.0 +21672,27,43.9,18,0.0 +21672,21,10,10,0.0 +21672,34,14,10,0.0 +21672,17,39,4,0.0 +21672,58,13.25,34,0.0 +21672,12,38,42,0.0 +21672,16,17.45,50,0.0 +21672,60,34,6,0.0 +21672,52,7,42,0.0 +21672,33,2.5,40,0.0 +21672,24,4.5,8,0.0 +21672,77,13,46,0.0 +21672,1,18,24,0.0 +21672,10,31,24,0.0 +21672,65,21.05,37,0.0 +21672,26,31.23,31,0.0 +21672,56,38,34,0.0 +21672,59,55,22,0.0 +21672,25,14,36,0.0 +21672,14,23.25,35,0.0 +21672,18,62.5,11,0.0 +21672,74,10,30,0.0 +21672,72,34.8,40,0.0 +21672,41,9.65,32,0.0 +21672,57,19.5,28,0.0 +21672,48,12.75,21,0.0 +21672,36,19,6,0.0 +21672,13,6,35,0.0 +21672,45,9.5,19,0.0 +21672,42,14,43,0.0 +21672,8,40,13,0.0 +21672,51,53,46,0.0 +21673,2,19,36,0.0 +21673,9,97,1,0.0 +21673,59,55,28,0.0 +21673,53,32.8,6,0.0 +21673,58,13.25,38,0.0 +21673,48,12.75,50,0.0 +21673,36,19,33,0.0 +21673,61,28.5,10,0.0 +21673,54,7.45,41,0.0 +21673,71,21.5,11,0.0 +21673,76,18,22,0.0 +21673,23,9,37,0.0 +21673,4,22,47,0.0 +21673,75,7.75,4,0.0 +21673,39,18,9,0.0 +21673,46,12,6,0.0 +21673,17,39,22,0.0 +21673,7,30,40,0.0 +21673,32,32,6,0.0 +21673,62,49.3,33,0.0 +21674,15,15.5,43,0.0 +21674,72,34.8,45,0.0 +21674,62,49.3,16,0.0 +21674,26,31.23,30,0.0 +21674,36,19,4,0.0 +21674,69,36,36,0.0 +21674,13,6,35,0.0 +21674,46,12,15,0.0 +21674,17,39,49,0.0 +21674,6,25,30,0.0 +21674,43,46,2,0.0 +21674,30,25.89,50,0.0 +21674,73,15,24,0.0 +21674,76,18,19,0.0 +21674,53,32.8,39,0.0 +21674,51,53,9,0.0 +21674,77,13,10,0.0 +21674,11,21,35,0.0 +21674,39,18,26,0.0 +21674,56,38,24,0.0 +21674,59,55,11,0.0 +21674,41,9.65,15,0.0 +21674,1,18,17,0.0 +21674,7,30,30,0.0 +21674,32,32,38,0.0 +21674,35,18,47,0.0 +21674,5,21.35,15,0.0 +21674,75,7.75,38,0.0 +21674,67,14,33,0.0 +21674,29,123.79,18,0.0 +21674,33,2.5,7,0.0 +21674,45,9.5,7,0.0 +21674,55,24,10,0.0 +21674,50,16.25,50,0.0 +21674,68,12.5,8,0.0 +21674,38,263.5,7,0.0 +21674,71,21.5,25,0.0 +21674,4,22,4,0.0 +21674,9,97,40,0.0 +21674,3,10,43,0.0 +21674,58,13.25,3,0.0 +21674,65,21.05,23,0.0 +21674,74,10,8,0.0 +21674,63,43.9,39,0.0 +21674,2,19,11,0.0 +21674,21,10,40,0.0 +21674,64,33.25,38,0.0 +21674,60,34,48,0.0 +21674,34,14,16,0.0 +21674,16,17.45,17,0.0 +21674,57,19.5,10,0.0 +21674,24,4.5,11,0.0 +21674,18,62.5,14,0.0 +21674,54,7.45,49,0.0 +21674,12,38,45,0.0 +21674,8,40,17,0.0 +21674,14,23.25,8,0.0 +21674,61,28.5,27,0.0 +21674,10,31,19,0.0 +21675,18,62.5,30,0.0 +21675,40,18.4,36,0.0 +21675,45,9.5,2,0.0 +21675,69,36,1,0.0 +21675,59,55,50,0.0 +21675,32,32,48,0.0 +21675,35,18,7,0.0 +21675,47,9.5,26,0.0 +21675,55,24,6,0.0 +21675,8,40,41,0.0 +21675,52,7,32,0.0 +21675,23,9,6,0.0 +21675,73,15,47,0.0 +21675,7,30,35,0.0 +21675,36,19,42,0.0 +21675,65,21.05,41,0.0 +21675,31,12.5,21,0.0 +21675,20,81,15,0.0 +21675,1,18,46,0.0 +21675,41,9.65,11,0.0 +21675,44,19.45,29,0.0 +21675,46,12,2,0.0 +21675,61,28.5,48,0.0 +21675,28,45.6,23,0.0 +21675,57,19.5,31,0.0 +21675,11,21,24,0.0 +21675,6,25,16,0.0 +21675,68,12.5,10,0.0 +21675,58,13.25,47,0.0 +21676,21,10,9,0.0 +21676,46,12,50,0.0 +21676,56,38,37,0.0 +21676,5,21.35,37,0.0 +21676,53,32.8,6,0.0 +21676,49,20,35,0.0 +21676,48,12.75,32,0.0 +21676,36,19,23,0.0 +21676,15,15.5,21,0.0 +21676,4,22,14,0.0 +21676,59,55,11,0.0 +21676,69,36,3,0.0 +21676,75,7.75,21,0.0 +21676,27,43.9,23,0.0 +21676,19,9.2,20,0.0 +21676,29,123.79,25,0.0 +21676,26,31.23,47,0.0 +21676,37,26,33,0.0 +21676,10,31,30,0.0 +21676,40,18.4,42,0.0 +21676,64,33.25,40,0.0 +21676,35,18,1,0.0 +21676,7,30,3,0.0 +21676,2,19,3,0.0 +21676,72,34.8,32,0.0 +21676,62,49.3,27,0.0 +21676,71,21.5,31,0.0 +21676,58,13.25,18,0.0 +21676,14,23.25,46,0.0 +21676,77,13,18,0.0 +21676,33,2.5,34,0.0 +21676,60,34,44,0.0 +21676,11,21,43,0.0 +21676,68,12.5,1,0.0 +21677,46,12,9,0.0 +21677,29,123.79,9,0.0 +21677,68,12.5,49,0.0 +21677,75,7.75,21,0.0 +21677,26,31.23,18,0.0 +21677,12,38,16,0.0 +21677,63,43.9,22,0.0 +21677,62,49.3,38,0.0 +21677,42,14,28,0.0 +21677,9,97,8,0.0 +21677,76,18,15,0.0 +21677,65,21.05,36,0.0 +21677,22,21,1,0.0 +21677,43,46,38,0.0 +21677,48,12.75,32,0.0 +21677,54,7.45,26,0.0 +21677,37,26,39,0.0 +21677,36,19,12,0.0 +21677,27,43.9,16,0.0 +21677,58,13.25,3,0.0 +21677,7,30,28,0.0 +21677,52,7,9,0.0 +21677,30,25.89,25,0.0 +21677,40,18.4,7,0.0 +21677,70,15,37,0.0 +21677,50,16.25,22,0.0 +21677,51,53,35,0.0 +21677,32,32,38,0.0 +21677,21,10,32,0.0 +21677,14,23.25,15,0.0 +21677,45,9.5,2,0.0 +21677,20,81,5,0.0 +21677,49,20,25,0.0 +21677,24,4.5,19,0.0 +21677,11,21,44,0.0 +21677,19,9.2,10,0.0 +21677,53,32.8,16,0.0 +21677,28,45.6,47,0.0 +21677,6,25,45,0.0 +21677,35,18,15,0.0 +21677,5,21.35,4,0.0 +21677,77,13,39,0.0 +21677,56,38,35,0.0 +21677,73,15,5,0.0 +21677,71,21.5,25,0.0 +21677,74,10,31,0.0 +21677,17,39,3,0.0 +21677,72,34.8,34,0.0 +21677,2,19,28,0.0 +21677,1,18,14,0.0 +21677,69,36,43,0.0 +21677,13,6,23,0.0 +21677,44,19.45,19,0.0 +21677,34,14,6,0.0 +21677,23,9,9,0.0 +21677,16,17.45,6,0.0 +21677,31,12.5,17,0.0 +21677,18,62.5,8,0.0 +21677,64,33.25,10,0.0 +21677,4,22,33,0.0 +21677,60,34,41,0.0 +21677,61,28.5,16,0.0 +21677,15,15.5,39,0.0 +21677,8,40,32,0.0 +21677,47,9.5,49,0.0 +21677,66,17,27,0.0 +21677,3,10,44,0.0 +21677,41,9.65,15,0.0 +21677,10,31,9,0.0 +21677,67,14,22,0.0 +21678,33,2.5,29,0.0 +21678,13,6,26,0.0 +21678,35,18,31,0.0 +21678,17,39,26,0.0 +21678,61,28.5,30,0.0 +21678,10,31,7,0.0 +21679,34,14,48,0.0 +21679,63,43.9,10,0.0 +21679,60,34,43,0.0 +21679,49,20,37,0.0 +21679,30,25.89,14,0.0 +21679,53,32.8,46,0.0 +21679,43,46,37,0.0 +21679,24,4.5,48,0.0 +21679,18,62.5,15,0.0 +21679,64,33.25,29,0.0 +21679,32,32,48,0.0 +21679,42,14,21,0.0 +21679,11,21,4,0.0 +21679,13,6,21,0.0 +21679,20,81,18,0.0 +21679,51,53,29,0.0 +21679,65,21.05,35,0.0 +21679,31,12.5,50,0.0 +21679,15,15.5,20,0.0 +21679,28,45.6,48,0.0 +21679,8,40,6,0.0 +21679,50,16.25,35,0.0 +21679,72,34.8,9,0.0 +21680,37,26,27,0.0 +21680,41,9.65,2,0.0 +21680,7,30,31,0.0 +21680,10,31,24,0.0 +21680,23,9,22,0.0 +21680,71,21.5,4,0.0 +21680,50,16.25,46,0.0 +21680,74,10,3,0.0 +21680,57,19.5,6,0.0 +21680,9,97,35,0.0 +21680,42,14,15,0.0 +21680,19,9.2,41,0.0 +21680,73,15,29,0.0 +21680,13,6,48,0.0 +21680,72,34.8,45,0.0 +21680,35,18,30,0.0 +21680,49,20,28,0.0 +21680,29,123.79,12,0.0 +21680,48,12.75,44,0.0 +21680,39,18,50,0.0 +21680,24,4.5,6,0.0 +21680,36,19,50,0.0 +21680,27,43.9,10,0.0 +21680,28,45.6,23,0.0 +21680,11,21,1,0.0 +21680,46,12,20,0.0 +21680,67,14,37,0.0 +21680,69,36,3,0.0 +21680,15,15.5,1,0.0 +21680,5,21.35,8,0.0 +21680,55,24,5,0.0 +21680,70,15,14,0.0 +21680,22,21,19,0.0 +21680,52,7,27,0.0 +21680,34,14,10,0.0 +21680,38,263.5,38,0.0 +21680,40,18.4,27,0.0 +21680,6,25,15,0.0 +21680,58,13.25,18,0.0 +21680,53,32.8,42,0.0 +21680,45,9.5,37,0.0 +21680,3,10,42,0.0 +21680,61,28.5,34,0.0 +21680,54,7.45,47,0.0 +21680,76,18,46,0.0 +21680,56,38,25,0.0 +21680,33,2.5,45,0.0 +21680,31,12.5,22,0.0 +21680,60,34,12,0.0 +21680,17,39,31,0.0 +21681,50,16.25,18,0.0 +21681,42,14,48,0.0 +21681,74,10,18,0.0 +21682,2,19,50,0.0 +21682,66,17,2,0.0 +21682,43,46,1,0.0 +21682,12,38,46,0.0 +21682,74,10,25,0.0 +21682,47,9.5,2,0.0 +21682,55,24,38,0.0 +21682,60,34,14,0.0 +21682,23,9,2,0.0 +21682,57,19.5,22,0.0 +21682,45,9.5,22,0.0 +21682,63,43.9,39,0.0 +21682,10,31,5,0.0 +21682,3,10,13,0.0 +21682,1,18,44,0.0 +21682,27,43.9,42,0.0 +21682,42,14,40,0.0 +21682,5,21.35,7,0.0 +21682,56,38,3,0.0 +21682,64,33.25,28,0.0 +21682,76,18,40,0.0 +21682,28,45.6,4,0.0 +21682,51,53,24,0.0 +21682,25,14,3,0.0 +21682,48,12.75,15,0.0 +21682,54,7.45,25,0.0 +21682,65,21.05,40,0.0 +21682,61,28.5,42,0.0 +21682,62,49.3,35,0.0 +21682,68,12.5,48,0.0 +21682,52,7,18,0.0 +21682,72,34.8,39,0.0 +21682,44,19.45,28,0.0 +21682,59,55,40,0.0 +21682,15,15.5,49,0.0 +21682,26,31.23,28,0.0 +21682,31,12.5,25,0.0 +21683,33,2.5,18,0.0 +21683,2,19,42,0.0 +21683,57,19.5,37,0.0 +21683,16,17.45,7,0.0 +21683,48,12.75,4,0.0 +21683,4,22,29,0.0 +21683,35,18,26,0.0 +21683,45,9.5,37,0.0 +21683,27,43.9,17,0.0 +21683,14,23.25,7,0.0 +21683,41,9.65,43,0.0 +21683,40,18.4,48,0.0 +21683,58,13.25,44,0.0 +21683,36,19,47,0.0 +21683,9,97,9,0.0 +21683,76,18,18,0.0 +21683,47,9.5,32,0.0 +21683,32,32,27,0.0 +21683,50,16.25,16,0.0 +21683,67,14,37,0.0 +21683,12,38,4,0.0 +21683,13,6,10,0.0 +21683,61,28.5,26,0.0 +21683,10,31,15,0.0 +21683,15,15.5,45,0.0 +21683,52,7,10,0.0 +21683,66,17,5,0.0 +21683,6,25,30,0.0 +21683,64,33.25,6,0.0 +21683,69,36,6,0.0 +21683,55,24,6,0.0 +21683,51,53,35,0.0 +21683,44,19.45,36,0.0 +21683,75,7.75,12,0.0 +21683,3,10,47,0.0 +21683,21,10,36,0.0 +21683,38,263.5,14,0.0 +21683,22,21,29,0.0 +21683,74,10,39,0.0 +21683,68,12.5,31,0.0 +21683,60,34,26,0.0 +21683,42,14,29,0.0 +21684,63,43.9,20,0.0 +21684,2,19,8,0.0 +21684,34,14,17,0.0 +21684,12,38,27,0.0 +21684,36,19,49,0.0 +21684,4,22,42,0.0 +21684,74,10,19,0.0 +21684,1,18,43,0.0 +21684,14,23.25,32,0.0 +21684,59,55,16,0.0 +21684,6,25,13,0.0 +21684,16,17.45,20,0.0 +21684,49,20,31,0.0 +21684,65,21.05,30,0.0 +21684,35,18,15,0.0 +21684,53,32.8,21,0.0 +21684,55,24,23,0.0 +21684,30,25.89,2,0.0 +21684,61,28.5,20,0.0 +21684,68,12.5,46,0.0 +21684,72,34.8,30,0.0 +21684,48,12.75,32,0.0 +21684,64,33.25,12,0.0 +21684,24,4.5,1,0.0 +21684,5,21.35,41,0.0 +21684,54,7.45,29,0.0 +21684,69,36,22,0.0 +21684,47,9.5,45,0.0 +21684,57,19.5,47,0.0 +21684,40,18.4,14,0.0 +21684,28,45.6,46,0.0 +21684,70,15,21,0.0 +21684,7,30,23,0.0 +21685,50,16.25,14,0.0 +21685,77,13,48,0.0 +21685,24,4.5,7,0.0 +21685,53,32.8,45,0.0 +21685,66,17,17,0.0 +21685,73,15,36,0.0 +21685,5,21.35,44,0.0 +21685,55,24,43,0.0 +21685,68,12.5,34,0.0 +21685,45,9.5,16,0.0 +21685,39,18,15,0.0 +21685,54,7.45,23,0.0 +21685,35,18,23,0.0 +21685,10,31,11,0.0 +21685,67,14,44,0.0 +21685,74,10,27,0.0 +21685,14,23.25,39,0.0 +21685,16,17.45,44,0.0 +21685,56,38,45,0.0 +21685,31,12.5,45,0.0 +21685,23,9,43,0.0 +21685,4,22,27,0.0 +21685,22,21,26,0.0 +21685,44,19.45,1,0.0 +21685,9,97,31,0.0 +21685,59,55,17,0.0 +21685,17,39,29,0.0 +21685,65,21.05,48,0.0 +21685,51,53,34,0.0 +21685,19,9.2,33,0.0 +21685,8,40,31,0.0 +21685,30,25.89,15,0.0 +21685,21,10,27,0.0 +21685,61,28.5,9,0.0 +21685,62,49.3,47,0.0 +21685,46,12,37,0.0 +21685,72,34.8,25,0.0 +21685,12,38,10,0.0 +21685,11,21,49,0.0 +21685,48,12.75,19,0.0 +21685,3,10,45,0.0 +21685,25,14,32,0.0 +21685,63,43.9,5,0.0 +21685,49,20,15,0.0 +21685,15,15.5,39,0.0 +21685,69,36,50,0.0 +21685,75,7.75,5,0.0 +21685,36,19,50,0.0 +21685,42,14,21,0.0 +21685,64,33.25,37,0.0 +21685,37,26,32,0.0 +21685,28,45.6,44,0.0 +21685,2,19,5,0.0 +21685,29,123.79,13,0.0 +21685,26,31.23,26,0.0 +21685,52,7,44,0.0 +21685,60,34,11,0.0 +21685,38,263.5,36,0.0 +21685,57,19.5,40,0.0 +21685,7,30,10,0.0 +21685,40,18.4,28,0.0 +21685,6,25,1,0.0 +21685,33,2.5,45,0.0 +21685,32,32,15,0.0 +21685,47,9.5,30,0.0 +21686,16,17.45,5,0.0 +21686,74,10,42,0.0 +21686,2,19,16,0.0 +21686,23,9,29,0.0 +21686,14,23.25,49,0.0 +21686,33,2.5,32,0.0 +21686,24,4.5,24,0.0 +21686,60,34,31,0.0 +21686,15,15.5,10,0.0 +21686,13,6,41,0.0 +21686,4,22,28,0.0 +21686,76,18,31,0.0 +21686,54,7.45,49,0.0 +21686,41,9.65,45,0.0 +21686,34,14,8,0.0 +21686,73,15,24,0.0 +21686,22,21,4,0.0 +21686,6,25,22,0.0 +21686,67,14,11,0.0 +21686,31,12.5,19,0.0 +21686,64,33.25,33,0.0 +21686,51,53,47,0.0 +21686,72,34.8,48,0.0 +21686,1,18,48,0.0 +21686,47,9.5,32,0.0 +21686,21,10,48,0.0 +21686,25,14,48,0.0 +21686,46,12,48,0.0 +21686,35,18,45,0.0 +21686,11,21,50,0.0 +21686,71,21.5,34,0.0 +21686,18,62.5,31,0.0 +21686,65,21.05,3,0.0 +21686,61,28.5,26,0.0 +21686,77,13,6,0.0 +21686,48,12.75,45,0.0 +21686,19,9.2,45,0.0 +21686,49,20,11,0.0 +21686,9,97,36,0.0 +21686,56,38,34,0.0 +21686,17,39,31,0.0 +21686,40,18.4,9,0.0 +21686,44,19.45,16,0.0 +21686,26,31.23,26,0.0 +21686,63,43.9,50,0.0 +21686,28,45.6,8,0.0 +21686,29,123.79,30,0.0 +21686,75,7.75,7,0.0 +21686,39,18,45,0.0 +21686,52,7,16,0.0 +21686,27,43.9,41,0.0 +21686,62,49.3,10,0.0 +21686,57,19.5,43,0.0 +21686,70,15,24,0.0 +21686,10,31,11,0.0 +21686,36,19,4,0.0 +21686,66,17,25,0.0 +21686,38,263.5,39,0.0 +21686,37,26,35,0.0 +21686,7,30,24,0.0 +21686,8,40,40,0.0 +21686,3,10,47,0.0 +21686,30,25.89,21,0.0 +21686,12,38,33,0.0 +21686,5,21.35,36,0.0 +21686,59,55,12,0.0 +21686,43,46,35,0.0 +21686,42,14,3,0.0 +21686,20,81,1,0.0 +21686,45,9.5,44,0.0 +21686,69,36,37,0.0 +21686,53,32.8,10,0.0 +21686,68,12.5,7,0.0 +21686,32,32,31,0.0 +21686,55,24,14,0.0 +21687,25,14,16,0.0 +21687,37,26,42,0.0 +21687,4,22,21,0.0 +21687,61,28.5,40,0.0 +21687,8,40,4,0.0 +21687,35,18,20,0.0 +21687,20,81,41,0.0 +21687,60,34,36,0.0 +21687,45,9.5,18,0.0 +21687,69,36,3,0.0 +21687,42,14,10,0.0 +21687,21,10,11,0.0 +21687,2,19,40,0.0 +21687,71,21.5,6,0.0 +21687,19,9.2,7,0.0 +21687,77,13,48,0.0 +21687,7,30,19,0.0 +21687,10,31,16,0.0 +21687,51,53,43,0.0 +21687,75,7.75,16,0.0 +21687,5,21.35,3,0.0 +21687,68,12.5,17,0.0 +21687,36,19,13,0.0 +21687,11,21,29,0.0 +21687,49,20,35,0.0 +21687,1,18,47,0.0 +21687,65,21.05,21,0.0 +21687,23,9,40,0.0 +21687,70,15,38,0.0 +21687,76,18,6,0.0 +21687,44,19.45,28,0.0 +21687,22,21,32,0.0 +21687,28,45.6,46,0.0 +21687,53,32.8,40,0.0 +21687,9,97,47,0.0 +21687,39,18,27,0.0 +21687,67,14,36,0.0 +21687,30,25.89,1,0.0 +21687,40,18.4,16,0.0 +21687,3,10,40,0.0 +21687,12,38,48,0.0 +21687,32,32,30,0.0 +21687,54,7.45,34,0.0 +21688,14,23.25,31,0.0 +21688,47,9.5,4,0.0 +21688,53,32.8,12,0.0 +21688,32,32,25,0.0 +21688,3,10,47,0.0 +21688,64,33.25,47,0.0 +21688,2,19,44,0.0 +21688,68,12.5,17,0.0 +21688,37,26,29,0.0 +21688,61,28.5,26,0.0 +21688,41,9.65,42,0.0 +21688,70,15,50,0.0 +21688,30,25.89,31,0.0 +21688,58,13.25,6,0.0 +21688,56,38,45,0.0 +21688,46,12,46,0.0 +21688,63,43.9,45,0.0 +21688,9,97,31,0.0 +21688,36,19,35,0.0 +21688,54,7.45,19,0.0 +21688,29,123.79,46,0.0 +21688,60,34,31,0.0 +21688,62,49.3,33,0.0 +21688,33,2.5,32,0.0 +21688,50,16.25,27,0.0 +21688,69,36,1,0.0 +21688,11,21,43,0.0 +21688,59,55,23,0.0 +21688,76,18,34,0.0 +21688,26,31.23,29,0.0 +21688,8,40,39,0.0 +21688,67,14,13,0.0 +21688,51,53,50,0.0 +21688,12,38,40,0.0 +21688,6,25,10,0.0 +21688,48,12.75,7,0.0 +21688,7,30,12,0.0 +21688,74,10,14,0.0 +21688,1,18,42,0.0 +21688,20,81,47,0.0 +21688,65,21.05,33,0.0 +21688,35,18,28,0.0 +21688,44,19.45,11,0.0 +21688,19,9.2,15,0.0 +21688,52,7,26,0.0 +21688,39,18,21,0.0 +21688,38,263.5,38,0.0 +21688,25,14,41,0.0 +21688,73,15,37,0.0 +21688,43,46,13,0.0 +21688,27,43.9,16,0.0 +21688,57,19.5,28,0.0 +21688,40,18.4,34,0.0 +21688,72,34.8,28,0.0 +21688,13,6,44,0.0 +21688,21,10,10,0.0 +21688,15,15.5,40,0.0 +21688,66,17,42,0.0 +21688,49,20,26,0.0 +21688,22,21,50,0.0 +21688,31,12.5,34,0.0 +21688,17,39,31,0.0 +21688,23,9,18,0.0 +21688,24,4.5,23,0.0 +21688,34,14,2,0.0 +21688,45,9.5,38,0.0 +21688,77,13,41,0.0 +21688,28,45.6,41,0.0 +21689,39,18,48,0.0 +21689,38,263.5,41,0.0 +21689,54,7.45,1,0.0 +21689,42,14,22,0.0 +21689,44,19.45,21,0.0 +21689,32,32,42,0.0 +21689,17,39,28,0.0 +21689,9,97,18,0.0 +21689,10,31,45,0.0 +21689,53,32.8,5,0.0 +21689,51,53,50,0.0 +21689,11,21,32,0.0 +21689,56,38,1,0.0 +21689,71,21.5,34,0.0 +21689,52,7,12,0.0 +21689,65,21.05,11,0.0 +21689,75,7.75,9,0.0 +21689,77,13,36,0.0 +21689,76,18,43,0.0 +21689,21,10,36,0.0 +21689,15,15.5,43,0.0 +21689,59,55,16,0.0 +21689,5,21.35,18,0.0 +21689,23,9,20,0.0 +21689,41,9.65,14,0.0 +21689,14,23.25,21,0.0 +21689,16,17.45,44,0.0 +21689,27,43.9,36,0.0 +21689,63,43.9,17,0.0 +21689,49,20,38,0.0 +21689,25,14,4,0.0 +21689,43,46,34,0.0 +21689,36,19,28,0.0 +21689,12,38,16,0.0 +21689,24,4.5,41,0.0 +21689,13,6,32,0.0 +21689,55,24,40,0.0 +21689,64,33.25,20,0.0 +21689,73,15,50,0.0 +21689,33,2.5,40,0.0 +21689,30,25.89,24,0.0 +21689,58,13.25,41,0.0 +21689,70,15,42,0.0 +21689,18,62.5,27,0.0 +21689,6,25,20,0.0 +21689,72,34.8,23,0.0 +21689,61,28.5,5,0.0 +21689,40,18.4,5,0.0 +21689,4,22,3,0.0 +21689,68,12.5,14,0.0 +21689,35,18,39,0.0 +21689,69,36,49,0.0 +21689,66,17,27,0.0 +21689,74,10,25,0.0 +21689,37,26,30,0.0 +21689,45,9.5,44,0.0 +21689,28,45.6,40,0.0 +21689,26,31.23,17,0.0 +21689,50,16.25,5,0.0 +21689,3,10,16,0.0 +21689,29,123.79,41,0.0 +21689,67,14,41,0.0 +21689,31,12.5,23,0.0 +21689,34,14,40,0.0 +21689,57,19.5,16,0.0 +21689,62,49.3,29,0.0 +21689,47,9.5,20,0.0 +21689,48,12.75,6,0.0 +21689,8,40,8,0.0 +21689,46,12,44,0.0 +21689,60,34,8,0.0 +21689,22,21,10,0.0 +21689,20,81,14,0.0 +21690,59,55,40,0.0 +21690,67,14,35,0.0 +21690,31,12.5,5,0.0 +21690,45,9.5,6,0.0 +21690,14,23.25,29,0.0 +21690,25,14,47,0.0 +21690,58,13.25,1,0.0 +21690,9,97,34,0.0 +21690,43,46,45,0.0 +21690,70,15,48,0.0 +21690,8,40,27,0.0 +21690,40,18.4,7,0.0 +21690,18,62.5,43,0.0 +21690,47,9.5,7,0.0 +21690,57,19.5,9,0.0 +21690,24,4.5,1,0.0 +21690,13,6,11,0.0 +21690,28,45.6,7,0.0 +21690,5,21.35,18,0.0 +21690,34,14,17,0.0 +21690,26,31.23,29,0.0 +21690,11,21,5,0.0 +21690,30,25.89,21,0.0 +21690,20,81,42,0.0 +21690,7,30,6,0.0 +21690,62,49.3,18,0.0 +21690,72,34.8,37,0.0 +21690,48,12.75,37,0.0 +21690,19,9.2,30,0.0 +21690,15,15.5,15,0.0 +21690,46,12,19,0.0 +21690,61,28.5,40,0.0 +21690,6,25,4,0.0 +21690,69,36,27,0.0 +21690,55,24,24,0.0 +21690,71,21.5,47,0.0 +21690,53,32.8,40,0.0 +21690,29,123.79,10,0.0 +21690,63,43.9,34,0.0 +21690,77,13,44,0.0 +21691,48,12.75,32,0.0 +21691,67,14,28,0.0 +21691,65,21.05,33,0.0 +21691,5,21.35,21,0.0 +21691,22,21,48,0.0 +21691,61,28.5,19,0.0 +21691,27,43.9,23,0.0 +21691,42,14,11,0.0 +21691,12,38,2,0.0 +21691,37,26,19,0.0 +21691,62,49.3,16,0.0 +21691,8,40,22,0.0 +21691,38,263.5,32,0.0 +21691,44,19.45,40,0.0 +21691,2,19,25,0.0 +21692,32,32,49,0.0 +21692,70,15,28,0.0 +21692,23,9,14,0.0 +21692,37,26,35,0.0 +21692,8,40,44,0.0 +21692,15,15.5,47,0.0 +21692,9,97,10,0.0 +21692,36,19,47,0.0 +21692,62,49.3,7,0.0 +21692,28,45.6,39,0.0 +21692,12,38,5,0.0 +21692,3,10,30,0.0 +21692,33,2.5,34,0.0 +21692,2,19,14,0.0 +21692,30,25.89,35,0.0 +21692,72,34.8,18,0.0 +21692,51,53,43,0.0 +21692,14,23.25,22,0.0 +21692,68,12.5,43,0.0 +21692,18,62.5,8,0.0 +21692,20,81,37,0.0 +21692,39,18,10,0.0 +21692,49,20,49,0.0 +21692,19,9.2,48,0.0 +21692,16,17.45,22,0.0 +21692,47,9.5,45,0.0 +21692,6,25,11,0.0 +21692,61,28.5,9,0.0 +21692,21,10,48,0.0 +21692,7,30,37,0.0 +21692,65,21.05,49,0.0 +21692,53,32.8,31,0.0 +21692,25,14,31,0.0 +21692,54,7.45,11,0.0 +21692,56,38,9,0.0 +21692,11,21,30,0.0 +21692,31,12.5,14,0.0 +21692,73,15,15,0.0 +21692,67,14,16,0.0 +21692,26,31.23,7,0.0 +21692,69,36,30,0.0 +21692,29,123.79,30,0.0 +21692,42,14,13,0.0 +21692,50,16.25,49,0.0 +21692,22,21,27,0.0 +21692,5,21.35,25,0.0 +21692,44,19.45,48,0.0 +21692,45,9.5,18,0.0 +21692,46,12,43,0.0 +21692,34,14,33,0.0 +21692,1,18,13,0.0 +21692,13,6,41,0.0 +21692,43,46,16,0.0 +21692,38,263.5,41,0.0 +21692,77,13,35,0.0 +21692,48,12.75,43,0.0 +21692,59,55,39,0.0 +21692,66,17,10,0.0 +21692,55,24,47,0.0 +21692,17,39,9,0.0 +21692,58,13.25,8,0.0 +21692,4,22,34,0.0 +21692,71,21.5,45,0.0 +21692,10,31,4,0.0 +21692,52,7,39,0.0 +21692,24,4.5,21,0.0 +21692,76,18,18,0.0 +21692,57,19.5,40,0.0 +21692,27,43.9,47,0.0 +21692,75,7.75,26,0.0 +21692,64,33.25,19,0.0 +21692,40,18.4,9,0.0 +21692,74,10,39,0.0 +21692,60,34,50,0.0 +21692,35,18,22,0.0 +21692,41,9.65,13,0.0 +21692,63,43.9,22,0.0 +21693,55,24,19,0.0 +21693,23,9,17,0.0 +21693,66,17,47,0.0 +21693,74,10,8,0.0 +21693,48,12.75,9,0.0 +21693,67,14,49,0.0 +21693,64,33.25,45,0.0 +21693,70,15,26,0.0 +21693,11,21,24,0.0 +21693,58,13.25,49,0.0 +21693,57,19.5,15,0.0 +21693,19,9.2,11,0.0 +21693,35,18,18,0.0 +21693,75,7.75,11,0.0 +21693,13,6,11,0.0 +21693,40,18.4,24,0.0 +21693,59,55,31,0.0 +21693,29,123.79,28,0.0 +21693,10,31,34,0.0 +21693,22,21,17,0.0 +21693,32,32,42,0.0 +21693,24,4.5,23,0.0 +21693,38,263.5,10,0.0 +21693,76,18,18,0.0 +21693,50,16.25,31,0.0 +21693,1,18,48,0.0 +21693,6,25,18,0.0 +21693,52,7,11,0.0 +21693,15,15.5,33,0.0 +21693,17,39,27,0.0 +21693,44,19.45,27,0.0 +21693,4,22,45,0.0 +21693,9,97,36,0.0 +21693,26,31.23,48,0.0 +21693,53,32.8,17,0.0 +21693,39,18,43,0.0 +21693,41,9.65,10,0.0 +21693,54,7.45,3,0.0 +21693,42,14,19,0.0 +21693,12,38,36,0.0 +21693,30,25.89,21,0.0 +21693,45,9.5,5,0.0 +21693,34,14,27,0.0 +21693,16,17.45,2,0.0 +21693,60,34,49,0.0 +21693,8,40,26,0.0 +21693,27,43.9,28,0.0 +21693,36,19,46,0.0 +21693,31,12.5,43,0.0 +21693,51,53,16,0.0 +21693,62,49.3,37,0.0 +21693,61,28.5,3,0.0 +21693,28,45.6,35,0.0 +21693,69,36,8,0.0 +21693,71,21.5,10,0.0 +21693,33,2.5,50,0.0 +21693,68,12.5,16,0.0 +21693,77,13,28,0.0 +21693,25,14,42,0.0 +21693,73,15,41,0.0 +21693,20,81,32,0.0 +21693,65,21.05,19,0.0 +21693,49,20,4,0.0 +21693,2,19,18,0.0 +21693,7,30,48,0.0 +21693,18,62.5,24,0.0 +21693,14,23.25,6,0.0 +21693,21,10,22,0.0 +21693,43,46,39,0.0 +21693,5,21.35,39,0.0 +21693,47,9.5,38,0.0 +21694,15,15.5,4,0.0 +21694,46,12,28,0.0 +21694,23,9,11,0.0 +21694,13,6,43,0.0 +21694,67,14,8,0.0 +21694,44,19.45,29,0.0 +21694,61,28.5,35,0.0 +21694,70,15,44,0.0 +21694,68,12.5,29,0.0 +21694,38,263.5,48,0.0 +21694,35,18,9,0.0 +21695,57,19.5,34,0.0 +21695,7,30,8,0.0 +21695,42,14,14,0.0 +21695,37,26,27,0.0 +21695,54,7.45,45,0.0 +21695,69,36,47,0.0 +21695,30,25.89,31,0.0 +21695,6,25,34,0.0 +21695,48,12.75,48,0.0 +21695,47,9.5,8,0.0 +21695,44,19.45,47,0.0 +21695,10,31,20,0.0 +21695,43,46,39,0.0 +21695,12,38,14,0.0 +21695,75,7.75,27,0.0 +21695,9,97,21,0.0 +21695,67,14,26,0.0 +21695,24,4.5,21,0.0 +21695,45,9.5,26,0.0 +21695,16,17.45,16,0.0 +21695,41,9.65,19,0.0 +21695,5,21.35,25,0.0 +21695,21,10,41,0.0 +21695,63,43.9,44,0.0 +21695,66,17,11,0.0 +21695,73,15,45,0.0 +21695,64,33.25,33,0.0 +21695,3,10,22,0.0 +21695,13,6,40,0.0 +21695,19,9.2,30,0.0 +21695,20,81,47,0.0 +21695,22,21,37,0.0 +21695,34,14,37,0.0 +21695,62,49.3,44,0.0 +21695,61,28.5,23,0.0 +21695,17,39,6,0.0 +21695,52,7,5,0.0 +21695,25,14,41,0.0 +21695,31,12.5,18,0.0 +21695,59,55,44,0.0 +21695,18,62.5,40,0.0 +21695,60,34,33,0.0 +21695,28,45.6,31,0.0 +21695,76,18,4,0.0 +21695,71,21.5,17,0.0 +21695,77,13,35,0.0 +21695,70,15,8,0.0 +21695,39,18,11,0.0 +21696,77,13,43,0.0 +21696,76,18,42,0.0 +21696,18,62.5,32,0.0 +21696,22,21,23,0.0 +21696,14,23.25,3,0.0 +21696,67,14,1,0.0 +21696,16,17.45,23,0.0 +21696,57,19.5,16,0.0 +21696,13,6,17,0.0 +21696,64,33.25,35,0.0 +21696,72,34.8,35,0.0 +21696,60,34,12,0.0 +21696,20,81,24,0.0 +21696,28,45.6,21,0.0 +21696,52,7,2,0.0 +21696,46,12,5,0.0 +21696,35,18,36,0.0 +21696,21,10,37,0.0 +21696,40,18.4,32,0.0 +21696,54,7.45,29,0.0 +21696,74,10,28,0.0 +21696,5,21.35,38,0.0 +21696,55,24,47,0.0 +21696,59,55,23,0.0 +21696,68,12.5,28,0.0 +21696,71,21.5,12,0.0 +21696,61,28.5,44,0.0 +21696,50,16.25,36,0.0 +21696,1,18,44,0.0 +21696,58,13.25,24,0.0 +21696,30,25.89,20,0.0 +21696,63,43.9,40,0.0 +21696,31,12.5,49,0.0 +21696,6,25,22,0.0 +21696,37,26,27,0.0 +21696,38,263.5,37,0.0 +21696,2,19,26,0.0 +21696,51,53,37,0.0 +21696,11,21,30,0.0 +21696,25,14,43,0.0 +21696,24,4.5,9,0.0 +21696,42,14,14,0.0 +21696,45,9.5,25,0.0 +21696,49,20,44,0.0 +21696,26,31.23,26,0.0 +21696,23,9,31,0.0 +21696,56,38,40,0.0 +21696,75,7.75,24,0.0 +21696,3,10,24,0.0 +21696,34,14,12,0.0 +21696,41,9.65,3,0.0 +21696,65,21.05,15,0.0 +21696,19,9.2,21,0.0 +21696,15,15.5,34,0.0 +21696,70,15,24,0.0 +21696,69,36,12,0.0 +21696,12,38,22,0.0 +21696,48,12.75,47,0.0 +21696,66,17,7,0.0 +21696,53,32.8,7,0.0 +21696,17,39,7,0.0 +21696,27,43.9,3,0.0 +21696,33,2.5,20,0.0 +21696,39,18,48,0.0 +21696,47,9.5,42,0.0 +21696,29,123.79,32,0.0 +21696,10,31,28,0.0 +21697,2,19,6,0.0 +21697,60,34,30,0.0 +21697,55,24,40,0.0 +21697,48,12.75,16,0.0 +21697,4,22,19,0.0 +21697,56,38,29,0.0 +21697,22,21,32,0.0 +21697,61,28.5,13,0.0 +21697,76,18,26,0.0 +21697,59,55,26,0.0 +21697,64,33.25,33,0.0 +21697,66,17,39,0.0 +21697,63,43.9,2,0.0 +21697,73,15,50,0.0 +21697,26,31.23,12,0.0 +21697,15,15.5,39,0.0 +21697,53,32.8,46,0.0 +21697,12,38,41,0.0 +21697,39,18,16,0.0 +21697,40,18.4,29,0.0 +21697,37,26,21,0.0 +21697,72,34.8,28,0.0 +21697,47,9.5,2,0.0 +21697,52,7,28,0.0 +21697,69,36,27,0.0 +21697,17,39,25,0.0 +21697,65,21.05,34,0.0 +21697,38,263.5,44,0.0 +21697,67,14,38,0.0 +21697,45,9.5,8,0.0 +21697,74,10,10,0.0 +21697,70,15,19,0.0 +21697,8,40,15,0.0 +21697,24,4.5,41,0.0 +21697,20,81,23,0.0 +21697,43,46,35,0.0 +21697,41,9.65,6,0.0 +21697,23,9,37,0.0 +21698,76,18,32,0.0 +21698,44,19.45,20,0.0 +21698,31,12.5,20,0.0 +21698,62,49.3,28,0.0 +21698,57,19.5,19,0.0 +21698,36,19,17,0.0 +21698,16,17.45,22,0.0 +21698,50,16.25,21,0.0 +21698,11,21,15,0.0 +21698,4,22,15,0.0 +21698,67,14,5,0.0 +21698,55,24,44,0.0 +21698,3,10,35,0.0 +21698,51,53,8,0.0 +21698,6,25,25,0.0 +21698,60,34,10,0.0 +21698,75,7.75,34,0.0 +21698,9,97,30,0.0 +21698,56,38,9,0.0 +21698,24,4.5,45,0.0 +21698,28,45.6,44,0.0 +21698,53,32.8,42,0.0 +21698,20,81,36,0.0 +21698,7,30,43,0.0 +21698,47,9.5,4,0.0 +21698,19,9.2,39,0.0 +21698,69,36,13,0.0 +21698,40,18.4,36,0.0 +21698,61,28.5,42,0.0 +21698,39,18,9,0.0 +21698,23,9,2,0.0 +21698,68,12.5,42,0.0 +21698,22,21,15,0.0 +21698,59,55,18,0.0 +21698,58,13.25,48,0.0 +21698,38,263.5,50,0.0 +21698,70,15,48,0.0 +21699,55,24,24,0.0 +21699,4,22,30,0.0 +21699,71,21.5,47,0.0 +21699,30,25.89,36,0.0 +21699,66,17,5,0.0 +21699,10,31,26,0.0 +21699,9,97,40,0.0 +21699,35,18,20,0.0 +21699,33,2.5,4,0.0 +21699,21,10,42,0.0 +21699,77,13,38,0.0 +21699,3,10,47,0.0 +21699,20,81,34,0.0 +21699,53,32.8,40,0.0 +21699,16,17.45,21,0.0 +21699,7,30,16,0.0 +21699,57,19.5,21,0.0 +21699,62,49.3,36,0.0 +21699,44,19.45,30,0.0 +21699,65,21.05,30,0.0 +21699,39,18,42,0.0 +21699,43,46,42,0.0 +21699,6,25,14,0.0 +21699,32,32,34,0.0 +21699,23,9,48,0.0 +21699,46,12,50,0.0 +21699,34,14,2,0.0 +21699,69,36,47,0.0 +21699,17,39,45,0.0 +21699,12,38,7,0.0 +21699,63,43.9,39,0.0 +21699,1,18,19,0.0 +21699,13,6,19,0.0 +21699,2,19,47,0.0 +21699,52,7,7,0.0 +21699,72,34.8,8,0.0 +21699,27,43.9,15,0.0 +21699,59,55,14,0.0 +21700,64,33.25,18,0.0 +21700,31,12.5,20,0.0 +21700,30,25.89,21,0.0 +21700,67,14,19,0.0 +21700,13,6,24,0.0 +21700,24,4.5,50,0.0 +21700,33,2.5,3,0.0 +21700,36,19,33,0.0 +21700,40,18.4,28,0.0 +21700,17,39,10,0.0 +21700,70,15,36,0.0 +21700,44,19.45,16,0.0 +21700,5,21.35,35,0.0 +21700,18,62.5,19,0.0 +21701,46,12,33,0.0 +21701,68,12.5,43,0.0 +21701,16,17.45,42,0.0 +21701,26,31.23,33,0.0 +21701,70,15,25,0.0 +21701,2,19,22,0.0 +21701,35,18,33,0.0 +21701,63,43.9,34,0.0 +21701,39,18,44,0.0 +21701,3,10,40,0.0 +21701,57,19.5,1,0.0 +21701,13,6,48,0.0 +21701,18,62.5,1,0.0 +21701,23,9,18,0.0 +21701,19,9.2,23,0.0 +21701,60,34,11,0.0 +21701,45,9.5,7,0.0 +21701,22,21,30,0.0 +21701,21,10,37,0.0 +21701,72,34.8,32,0.0 +21701,4,22,30,0.0 +21701,67,14,11,0.0 +21701,14,23.25,4,0.0 +21701,38,263.5,40,0.0 +21701,24,4.5,28,0.0 +21701,44,19.45,22,0.0 +21701,43,46,35,0.0 +21701,50,16.25,39,0.0 +21701,41,9.65,44,0.0 +21701,77,13,37,0.0 +21701,9,97,7,0.0 +21701,6,25,22,0.0 +21701,54,7.45,23,0.0 +21701,25,14,15,0.0 +21701,75,7.75,17,0.0 +21701,73,15,17,0.0 +21701,15,15.5,3,0.0 +21701,1,18,34,0.0 +21701,65,21.05,16,0.0 +21701,31,12.5,34,0.0 +21701,7,30,40,0.0 +21701,36,19,32,0.0 +21701,61,28.5,21,0.0 +21701,37,26,18,0.0 +21702,3,10,50,0.0 +21702,49,20,30,0.0 +21702,44,19.45,33,0.0 +21702,10,31,19,0.0 +21702,50,16.25,31,0.0 +21702,4,22,47,0.0 +21702,72,34.8,36,0.0 +21702,46,12,11,0.0 +21702,7,30,21,0.0 +21702,39,18,10,0.0 +21702,34,14,1,0.0 +21702,5,21.35,30,0.0 +21702,45,9.5,44,0.0 +21702,1,18,21,0.0 +21702,15,15.5,29,0.0 +21702,31,12.5,44,0.0 +21702,64,33.25,6,0.0 +21702,13,6,33,0.0 +21702,30,25.89,25,0.0 +21702,25,14,23,0.0 +21702,66,17,27,0.0 +21702,40,18.4,29,0.0 +21702,62,49.3,1,0.0 +21702,73,15,6,0.0 +21702,36,19,3,0.0 +21702,70,15,46,0.0 +21702,18,62.5,20,0.0 +21702,61,28.5,15,0.0 +21702,69,36,36,0.0 +21702,74,10,33,0.0 +21702,28,45.6,8,0.0 +21702,53,32.8,21,0.0 +21702,75,7.75,30,0.0 +21702,9,97,48,0.0 +21702,57,19.5,48,0.0 +21702,6,25,50,0.0 +21702,32,32,1,0.0 +21703,76,18,50,0.0 +21703,43,46,44,0.0 +21703,54,7.45,29,0.0 +21703,49,20,10,0.0 +21703,24,4.5,15,0.0 +21703,56,38,19,0.0 +21703,62,49.3,44,0.0 +21703,33,2.5,27,0.0 +21703,71,21.5,11,0.0 +21703,20,81,47,0.0 +21703,57,19.5,2,0.0 +21703,77,13,21,0.0 +21703,32,32,47,0.0 +21703,30,25.89,18,0.0 +21703,59,55,30,0.0 +21703,7,30,22,0.0 +21703,6,25,2,0.0 +21703,67,14,32,0.0 +21703,68,12.5,6,0.0 +21703,51,53,41,0.0 +21703,28,45.6,25,0.0 +21703,1,18,33,0.0 +21703,53,32.8,2,0.0 +21703,22,21,17,0.0 +21703,63,43.9,40,0.0 +21703,69,36,28,0.0 +21703,16,17.45,10,0.0 +21703,44,19.45,3,0.0 +21703,55,24,43,0.0 +21703,31,12.5,13,0.0 +21703,2,19,41,0.0 +21703,40,18.4,10,0.0 +21703,64,33.25,50,0.0 +21703,25,14,17,0.0 +21703,74,10,48,0.0 +21703,5,21.35,7,0.0 +21703,9,97,26,0.0 +21703,8,40,8,0.0 +21703,58,13.25,8,0.0 +21703,61,28.5,22,0.0 +21703,10,31,49,0.0 +21703,27,43.9,13,0.0 +21703,18,62.5,14,0.0 +21703,47,9.5,44,0.0 +21703,34,14,19,0.0 +21703,73,15,18,0.0 +21703,60,34,28,0.0 +21704,38,263.5,50,0.0 +21704,2,19,4,0.0 +21704,66,17,10,0.0 +21704,4,22,25,0.0 +21704,74,10,3,0.0 +21704,68,12.5,9,0.0 +21704,61,28.5,18,0.0 +21704,50,16.25,2,0.0 +21704,65,21.05,16,0.0 +21704,35,18,38,0.0 +21704,63,43.9,24,0.0 +21704,58,13.25,38,0.0 +21704,70,15,7,0.0 +21704,40,18.4,32,0.0 +21704,1,18,48,0.0 +21704,18,62.5,10,0.0 +21704,22,21,23,0.0 +21704,39,18,49,0.0 +21704,51,53,15,0.0 +21704,71,21.5,42,0.0 +21704,69,36,47,0.0 +21704,14,23.25,45,0.0 +21704,9,97,37,0.0 +21704,24,4.5,23,0.0 +21704,49,20,6,0.0 +21704,17,39,49,0.0 +21704,43,46,13,0.0 +21704,32,32,12,0.0 +21704,75,7.75,14,0.0 +21704,48,12.75,39,0.0 +21704,6,25,4,0.0 +21704,37,26,34,0.0 +21704,56,38,16,0.0 +21704,3,10,20,0.0 +21704,60,34,48,0.0 +21704,11,21,8,0.0 +21704,30,25.89,49,0.0 +21704,8,40,43,0.0 +21704,41,9.65,23,0.0 +21704,19,9.2,14,0.0 +21704,21,10,46,0.0 +21704,46,12,46,0.0 +21704,16,17.45,40,0.0 +21704,77,13,40,0.0 +21704,10,31,50,0.0 +21704,27,43.9,22,0.0 +21704,72,34.8,7,0.0 +21704,73,15,33,0.0 +21704,26,31.23,39,0.0 +21704,44,19.45,2,0.0 +21704,36,19,15,0.0 +21704,67,14,24,0.0 +21704,57,19.5,7,0.0 +21704,5,21.35,15,0.0 +21704,53,32.8,16,0.0 +21704,13,6,22,0.0 +21705,59,55,34,0.0 +21705,48,12.75,26,0.0 +21705,9,97,21,0.0 +21705,49,20,37,0.0 +21705,3,10,15,0.0 +21705,19,9.2,11,0.0 +21705,21,10,22,0.0 +21705,38,263.5,33,0.0 +21705,4,22,32,0.0 +21705,40,18.4,27,0.0 +21705,10,31,7,0.0 +21705,52,7,15,0.0 +21705,25,14,10,0.0 +21705,15,15.5,29,0.0 +21705,70,15,19,0.0 +21705,45,9.5,20,0.0 +21705,2,19,22,0.0 +21705,32,32,46,0.0 +21705,73,15,6,0.0 +21705,23,9,30,0.0 +21705,17,39,38,0.0 +21705,42,14,32,0.0 +21705,34,14,9,0.0 +21705,67,14,14,0.0 +21705,60,34,1,0.0 +21705,8,40,11,0.0 +21705,13,6,18,0.0 +21705,30,25.89,44,0.0 +21705,31,12.5,47,0.0 +21705,58,13.25,26,0.0 +21705,72,34.8,18,0.0 +21705,46,12,18,0.0 +21705,44,19.45,12,0.0 +21705,16,17.45,11,0.0 +21705,63,43.9,16,0.0 +21705,20,81,29,0.0 +21705,76,18,21,0.0 +21705,65,21.05,10,0.0 +21705,47,9.5,18,0.0 +21705,54,7.45,2,0.0 +21705,43,46,50,0.0 +21705,57,19.5,9,0.0 +21705,27,43.9,31,0.0 +21705,75,7.75,12,0.0 +21706,26,31.23,11,0.0 +21706,60,34,20,0.0 +21706,31,12.5,9,0.0 +21706,77,13,1,0.0 +21706,3,10,20,0.0 +21706,53,32.8,17,0.0 +21706,67,14,23,0.0 +21706,27,43.9,31,0.0 +21706,49,20,28,0.0 +21706,64,33.25,5,0.0 +21706,66,17,21,0.0 +21706,33,2.5,38,0.0 +21706,23,9,45,0.0 +21706,72,34.8,46,0.0 +21706,46,12,28,0.0 +21706,29,123.79,41,0.0 +21706,34,14,18,0.0 +21706,12,38,3,0.0 +21706,57,19.5,48,0.0 +21706,15,15.5,46,0.0 +21706,44,19.45,34,0.0 +21706,2,19,45,0.0 +21707,67,14,45,0.0 +21707,51,53,49,0.0 +21707,10,31,11,0.0 +21707,55,24,12,0.0 +21707,44,19.45,8,0.0 +21707,17,39,26,0.0 +21707,32,32,12,0.0 +21707,56,38,42,0.0 +21707,6,25,21,0.0 +21707,13,6,20,0.0 +21707,53,32.8,23,0.0 +21707,30,25.89,35,0.0 +21707,71,21.5,5,0.0 +21707,37,26,32,0.0 +21707,77,13,21,0.0 +21707,48,12.75,14,0.0 +21707,42,14,45,0.0 +21707,16,17.45,25,0.0 +21707,24,4.5,41,0.0 +21707,11,21,22,0.0 +21707,20,81,43,0.0 +21707,18,62.5,1,0.0 +21707,61,28.5,29,0.0 +21707,27,43.9,13,0.0 +21707,25,14,37,0.0 +21707,2,19,6,0.0 +21707,36,19,42,0.0 +21707,49,20,28,0.0 +21707,9,97,41,0.0 +21707,38,263.5,23,0.0 +21707,23,9,29,0.0 +21707,63,43.9,39,0.0 +21707,7,30,27,0.0 +21707,64,33.25,37,0.0 +21707,50,16.25,45,0.0 +21707,28,45.6,29,0.0 +21707,5,21.35,11,0.0 +21708,70,15,24,0.0 +21708,74,10,6,0.0 +21708,76,18,2,0.0 +21708,20,81,13,0.0 +21708,3,10,35,0.0 +21708,66,17,46,0.0 +21708,18,62.5,36,0.0 +21708,59,55,46,0.0 +21708,46,12,34,0.0 +21708,64,33.25,8,0.0 +21708,17,39,17,0.0 +21708,9,97,11,0.0 +21709,16,17.45,36,0.0 +21709,53,32.8,37,0.0 +21709,43,46,50,0.0 +21709,59,55,17,0.0 +21709,17,39,30,0.0 +21709,61,28.5,35,0.0 +21709,34,14,50,0.0 +21709,37,26,17,0.0 +21709,56,38,4,0.0 +21709,54,7.45,28,0.0 +21709,24,4.5,18,0.0 +21709,1,18,2,0.0 +21709,27,43.9,32,0.0 +21709,31,12.5,14,0.0 +21709,41,9.65,50,0.0 +21709,77,13,45,0.0 +21709,13,6,45,0.0 +21709,30,25.89,18,0.0 +21709,75,7.75,16,0.0 +21709,71,21.5,31,0.0 +21709,74,10,22,0.0 +21709,21,10,26,0.0 +21709,29,123.79,36,0.0 +21709,64,33.25,12,0.0 +21709,33,2.5,35,0.0 +21709,65,21.05,3,0.0 +21709,9,97,32,0.0 +21709,38,263.5,33,0.0 +21709,50,16.25,39,0.0 +21709,2,19,49,0.0 +21709,67,14,31,0.0 +21709,12,38,30,0.0 +21709,4,22,43,0.0 +21709,26,31.23,40,0.0 +21709,22,21,16,0.0 +21709,10,31,47,0.0 +21709,47,9.5,50,0.0 +21709,57,19.5,18,0.0 +21709,51,53,35,0.0 +21709,63,43.9,15,0.0 +21709,23,9,29,0.0 +21709,39,18,19,0.0 +21709,20,81,17,0.0 +21709,7,30,17,0.0 +21710,25,14,38,0.0 +21710,44,19.45,47,0.0 +21710,59,55,1,0.0 +21710,19,9.2,25,0.0 +21710,63,43.9,6,0.0 +21710,37,26,44,0.0 +21710,51,53,29,0.0 +21710,27,43.9,42,0.0 +21710,26,31.23,48,0.0 +21710,67,14,48,0.0 +21710,31,12.5,12,0.0 +21710,73,15,4,0.0 +21710,4,22,8,0.0 +21710,32,32,26,0.0 +21710,16,17.45,44,0.0 +21710,11,21,28,0.0 +21710,62,49.3,32,0.0 +21710,60,34,40,0.0 +21710,10,31,31,0.0 +21710,57,19.5,10,0.0 +21710,52,7,25,0.0 +21710,40,18.4,8,0.0 +21710,56,38,36,0.0 +21710,68,12.5,39,0.0 +21710,48,12.75,19,0.0 +21710,75,7.75,30,0.0 +21710,14,23.25,37,0.0 +21710,2,19,31,0.0 +21710,64,33.25,32,0.0 +21710,66,17,4,0.0 +21710,18,62.5,10,0.0 +21710,71,21.5,13,0.0 +21710,53,32.8,41,0.0 +21710,13,6,13,0.0 +21710,5,21.35,48,0.0 +21710,76,18,50,0.0 +21710,39,18,11,0.0 +21710,42,14,35,0.0 +21710,23,9,13,0.0 +21710,6,25,49,0.0 +21711,77,13,47,0.0 +21711,27,43.9,12,0.0 +21711,62,49.3,16,0.0 +21711,23,9,31,0.0 +21711,60,34,15,0.0 +21711,75,7.75,11,0.0 +21711,32,32,32,0.0 +21711,29,123.79,30,0.0 +21711,9,97,7,0.0 +21711,18,62.5,11,0.0 +21711,50,16.25,23,0.0 +21711,47,9.5,41,0.0 +21711,35,18,6,0.0 +21711,34,14,16,0.0 +21711,71,21.5,46,0.0 +21711,41,9.65,45,0.0 +21711,46,12,29,0.0 +21711,5,21.35,48,0.0 +21711,19,9.2,33,0.0 +21711,12,38,38,0.0 +21711,16,17.45,45,0.0 +21711,54,7.45,38,0.0 +21711,3,10,46,0.0 +21711,52,7,49,0.0 +21711,26,31.23,6,0.0 +21711,14,23.25,24,0.0 +21711,69,36,48,0.0 +21711,59,55,37,0.0 +21711,48,12.75,16,0.0 +21711,43,46,14,0.0 +21711,13,6,1,0.0 +21711,66,17,50,0.0 +21711,68,12.5,3,0.0 +21711,72,34.8,28,0.0 +21711,70,15,14,0.0 +21711,24,4.5,49,0.0 +21711,36,19,2,0.0 +21711,61,28.5,21,0.0 +21711,56,38,32,0.0 +21711,67,14,22,0.0 +21711,1,18,4,0.0 +21711,51,53,34,0.0 +21711,49,20,15,0.0 +21711,30,25.89,25,0.0 +21711,2,19,24,0.0 +21711,58,13.25,18,0.0 +21711,39,18,27,0.0 +21711,42,14,37,0.0 +21711,22,21,21,0.0 +21711,74,10,48,0.0 +21711,15,15.5,27,0.0 +21711,45,9.5,18,0.0 +21711,11,21,3,0.0 +21711,17,39,25,0.0 +21711,6,25,5,0.0 +21711,38,263.5,26,0.0 +21711,28,45.6,30,0.0 +21711,65,21.05,15,0.0 +21711,10,31,5,0.0 +21711,20,81,39,0.0 +21711,8,40,7,0.0 +21711,57,19.5,3,0.0 +21711,64,33.25,25,0.0 +21711,31,12.5,12,0.0 +21711,44,19.45,6,0.0 +21711,25,14,23,0.0 +21712,66,17,3,0.0 +21712,69,36,45,0.0 +21712,13,6,34,0.0 +21712,12,38,36,0.0 +21712,67,14,30,0.0 +21712,50,16.25,8,0.0 +21712,54,7.45,10,0.0 +21712,70,15,12,0.0 +21712,46,12,37,0.0 +21712,4,22,16,0.0 +21712,31,12.5,17,0.0 +21712,21,10,46,0.0 +21712,51,53,31,0.0 +21712,15,15.5,15,0.0 +21713,1,18,14,0.0 +21713,9,97,21,0.0 +21713,28,45.6,26,0.0 +21713,75,7.75,45,0.0 +21713,43,46,37,0.0 +21713,76,18,10,0.0 +21713,24,4.5,24,0.0 +21713,26,31.23,50,0.0 +21713,10,31,49,0.0 +21713,47,9.5,46,0.0 +21713,46,12,41,0.0 +21713,70,15,31,0.0 +21713,56,38,46,0.0 +21713,77,13,39,0.0 +21713,32,32,12,0.0 +21713,48,12.75,48,0.0 +21713,38,263.5,9,0.0 +21713,6,25,50,0.0 +21713,4,22,50,0.0 +21713,25,14,30,0.0 +21713,23,9,39,0.0 +21713,40,18.4,33,0.0 +21713,14,23.25,47,0.0 +21713,55,24,16,0.0 +21713,42,14,47,0.0 +21713,18,62.5,40,0.0 +21713,53,32.8,28,0.0 +21713,65,21.05,16,0.0 +21713,20,81,16,0.0 +21713,35,18,34,0.0 +21713,54,7.45,47,0.0 +21713,74,10,42,0.0 +21713,15,15.5,44,0.0 +21713,36,19,35,0.0 +21713,71,21.5,8,0.0 +21713,21,10,25,0.0 +21713,3,10,29,0.0 +21713,31,12.5,11,0.0 +21713,64,33.25,28,0.0 +21713,72,34.8,24,0.0 +21713,34,14,16,0.0 +21713,59,55,47,0.0 +21713,62,49.3,46,0.0 +21713,69,36,48,0.0 +21713,7,30,16,0.0 +21713,73,15,9,0.0 +21713,27,43.9,49,0.0 +21713,68,12.5,47,0.0 +21713,50,16.25,42,0.0 +21714,8,40,28,0.0 +21714,60,34,24,0.0 +21714,1,18,17,0.0 +21714,45,9.5,18,0.0 +21714,39,18,30,0.0 +21714,18,62.5,31,0.0 +21714,14,23.25,26,0.0 +21714,36,19,25,0.0 +21714,21,10,37,0.0 +21714,11,21,49,0.0 +21714,33,2.5,6,0.0 +21714,64,33.25,4,0.0 +21714,51,53,25,0.0 +21714,59,55,29,0.0 +21714,5,21.35,41,0.0 +21714,75,7.75,13,0.0 +21714,50,16.25,31,0.0 +21714,25,14,39,0.0 +21714,67,14,24,0.0 +21714,19,9.2,41,0.0 +21714,57,19.5,41,0.0 +21714,46,12,10,0.0 +21714,24,4.5,12,0.0 +21714,68,12.5,9,0.0 +21714,77,13,29,0.0 +21714,12,38,7,0.0 +21714,4,22,23,0.0 +21714,3,10,24,0.0 +21714,20,81,41,0.0 +21714,61,28.5,10,0.0 +21714,49,20,14,0.0 +21714,42,14,33,0.0 +21714,31,12.5,7,0.0 +21714,28,45.6,3,0.0 +21714,48,12.75,30,0.0 +21714,54,7.45,5,0.0 +21714,53,32.8,28,0.0 +21714,22,21,16,0.0 +21714,62,49.3,19,0.0 +21714,23,9,12,0.0 +21714,44,19.45,34,0.0 +21715,50,16.25,5,0.0 +21715,5,21.35,32,0.0 +21715,56,38,20,0.0 +21715,22,21,30,0.0 +21715,2,19,27,0.0 +21715,19,9.2,27,0.0 +21715,44,19.45,32,0.0 +21715,58,13.25,42,0.0 +21715,28,45.6,17,0.0 +21715,12,38,15,0.0 +21715,27,43.9,42,0.0 +21715,70,15,23,0.0 +21715,61,28.5,18,0.0 +21715,35,18,2,0.0 +21715,17,39,23,0.0 +21715,23,9,21,0.0 +21715,69,36,50,0.0 +21715,4,22,29,0.0 +21715,11,21,29,0.0 +21715,40,18.4,22,0.0 +21715,30,25.89,32,0.0 +21715,16,17.45,7,0.0 +21715,77,13,19,0.0 +21715,75,7.75,47,0.0 +21715,65,21.05,35,0.0 +21715,6,25,5,0.0 +21715,39,18,19,0.0 +21715,48,12.75,38,0.0 +21715,3,10,13,0.0 +21715,24,4.5,29,0.0 +21715,60,34,33,0.0 +21715,55,24,27,0.0 +21715,36,19,47,0.0 +21715,32,32,19,0.0 +21715,45,9.5,3,0.0 +21715,49,20,39,0.0 +21715,52,7,42,0.0 +21715,20,81,38,0.0 +21715,29,123.79,31,0.0 +21715,47,9.5,37,0.0 +21715,57,19.5,14,0.0 +21715,33,2.5,19,0.0 +21715,74,10,24,0.0 +21716,65,21.05,33,0.0 +21716,66,17,43,0.0 +21716,15,15.5,12,0.0 +21716,1,18,36,0.0 +21716,30,25.89,32,0.0 +21716,18,62.5,47,0.0 +21716,51,53,16,0.0 +21716,19,9.2,25,0.0 +21716,45,9.5,5,0.0 +21716,28,45.6,26,0.0 +21716,41,9.65,50,0.0 +21716,62,49.3,45,0.0 +21716,38,263.5,25,0.0 +21716,76,18,43,0.0 +21716,43,46,21,0.0 +21716,5,21.35,18,0.0 +21716,44,19.45,3,0.0 +21716,33,2.5,18,0.0 +21716,52,7,12,0.0 +21716,56,38,42,0.0 +21716,6,25,26,0.0 +21716,71,21.5,14,0.0 +21716,23,9,39,0.0 +21716,8,40,41,0.0 +21716,69,36,40,0.0 +21716,55,24,32,0.0 +21716,68,12.5,10,0.0 +21716,10,31,25,0.0 +21716,4,22,16,0.0 +21716,53,32.8,39,0.0 +21716,61,28.5,3,0.0 +21716,13,6,38,0.0 +21716,74,10,24,0.0 +21716,12,38,20,0.0 +21716,20,81,8,0.0 +21716,17,39,18,0.0 +21716,54,7.45,23,0.0 +21716,24,4.5,4,0.0 +21716,67,14,5,0.0 +21716,73,15,33,0.0 +21716,36,19,1,0.0 +21716,35,18,26,0.0 +21716,60,34,4,0.0 +21716,11,21,15,0.0 +21716,26,31.23,5,0.0 +21716,49,20,10,0.0 +21716,59,55,1,0.0 +21716,32,32,12,0.0 +21716,25,14,21,0.0 +21716,47,9.5,41,0.0 +21717,6,25,42,0.0 +21717,73,15,2,0.0 +21717,46,12,34,0.0 +21717,56,38,18,0.0 +21717,68,12.5,39,0.0 +21717,32,32,33,0.0 +21717,39,18,38,0.0 +21717,3,10,16,0.0 +21717,7,30,48,0.0 +21717,42,14,29,0.0 +21717,65,21.05,33,0.0 +21717,10,31,15,0.0 +21717,77,13,3,0.0 +21717,31,12.5,28,0.0 +21717,64,33.25,45,0.0 +21717,45,9.5,36,0.0 +21717,69,36,9,0.0 +21717,16,17.45,37,0.0 +21717,27,43.9,1,0.0 +21718,64,33.25,18,0.0 +21718,29,123.79,47,0.0 +21718,23,9,28,0.0 +21718,4,22,5,0.0 +21718,71,21.5,28,0.0 +21718,60,34,25,0.0 +21718,63,43.9,13,0.0 +21718,11,21,39,0.0 +21718,75,7.75,14,0.0 +21718,39,18,47,0.0 +21718,49,20,39,0.0 +21718,35,18,25,0.0 +21718,3,10,30,0.0 +21719,46,12,28,0.0 +21719,28,45.6,6,0.0 +21719,49,20,18,0.0 +21719,1,18,47,0.0 +21719,23,9,27,0.0 +21719,36,19,7,0.0 +21719,2,19,32,0.0 +21719,47,9.5,22,0.0 +21719,44,19.45,43,0.0 +21719,8,40,9,0.0 +21719,70,15,43,0.0 +21719,17,39,49,0.0 +21719,5,21.35,12,0.0 +21719,61,28.5,36,0.0 +21719,41,9.65,47,0.0 +21719,35,18,18,0.0 +21719,45,9.5,20,0.0 +21719,22,21,40,0.0 +21719,54,7.45,20,0.0 +21719,40,18.4,22,0.0 +21719,27,43.9,17,0.0 +21719,4,22,43,0.0 +21719,3,10,21,0.0 +21719,58,13.25,41,0.0 +21719,73,15,11,0.0 +21719,77,13,2,0.0 +21719,69,36,42,0.0 +21719,13,6,39,0.0 +21719,25,14,8,0.0 +21719,51,53,12,0.0 +21719,68,12.5,36,0.0 +21719,20,81,25,0.0 +21719,43,46,35,0.0 +21719,33,2.5,3,0.0 +21719,24,4.5,25,0.0 +21719,48,12.75,29,0.0 +21719,34,14,46,0.0 +21719,64,33.25,28,0.0 +21719,53,32.8,19,0.0 +21719,59,55,4,0.0 +21719,75,7.75,20,0.0 +21719,56,38,26,0.0 +21719,14,23.25,14,0.0 +21719,67,14,40,0.0 +21719,71,21.5,39,0.0 +21720,77,13,50,0.0 +21720,8,40,8,0.0 +21720,70,15,21,0.0 +21720,68,12.5,16,0.0 +21720,76,18,41,0.0 +21720,23,9,33,0.0 +21720,36,19,29,0.0 +21720,56,38,36,0.0 +21720,39,18,46,0.0 +21720,67,14,21,0.0 +21720,40,18.4,18,0.0 +21720,22,21,25,0.0 +21720,34,14,43,0.0 +21720,19,9.2,40,0.0 +21720,66,17,47,0.0 +21720,74,10,15,0.0 +21720,13,6,45,0.0 +21720,48,12.75,43,0.0 +21720,51,53,41,0.0 +21720,72,34.8,6,0.0 +21720,17,39,26,0.0 +21720,1,18,49,0.0 +21720,29,123.79,8,0.0 +21720,63,43.9,8,0.0 +21720,47,9.5,10,0.0 +21720,44,19.45,6,0.0 +21720,71,21.5,14,0.0 +21720,12,38,26,0.0 +21720,42,14,14,0.0 +21720,69,36,21,0.0 +21720,27,43.9,32,0.0 +21720,25,14,31,0.0 +21721,5,21.35,3,0.0 +21721,49,20,24,0.0 +21721,63,43.9,12,0.0 +21721,7,30,31,0.0 +21721,70,15,30,0.0 +21721,43,46,17,0.0 +21721,11,21,5,0.0 +21721,61,28.5,34,0.0 +21721,40,18.4,11,0.0 +21721,31,12.5,24,0.0 +21721,22,21,20,0.0 +21721,28,45.6,4,0.0 +21721,37,26,34,0.0 +21721,4,22,24,0.0 +21722,71,21.5,5,0.0 +21722,7,30,27,0.0 +21722,41,9.65,19,0.0 +21722,24,4.5,34,0.0 +21722,70,15,33,0.0 +21722,44,19.45,44,0.0 +21722,20,81,44,0.0 +21722,17,39,10,0.0 +21722,56,38,22,0.0 +21723,24,4.5,44,0.0 +21723,18,62.5,16,0.0 +21723,15,15.5,22,0.0 +21723,67,14,6,0.0 +21723,23,9,16,0.0 +21723,5,21.35,7,0.0 +21723,77,13,4,0.0 +21723,8,40,33,0.0 +21723,10,31,18,0.0 +21723,49,20,3,0.0 +21723,6,25,45,0.0 +21723,25,14,9,0.0 +21723,71,21.5,28,0.0 +21723,34,14,4,0.0 +21723,11,21,8,0.0 +21723,64,33.25,13,0.0 +21723,39,18,1,0.0 +21723,37,26,15,0.0 +21723,56,38,38,0.0 +21723,62,49.3,43,0.0 +21723,57,19.5,46,0.0 +21723,63,43.9,14,0.0 +21723,19,9.2,4,0.0 +21723,50,16.25,31,0.0 +21723,9,97,48,0.0 +21723,59,55,22,0.0 +21723,22,21,33,0.0 +21723,55,24,21,0.0 +21723,28,45.6,9,0.0 +21723,1,18,47,0.0 +21723,14,23.25,36,0.0 +21723,38,263.5,32,0.0 +21723,74,10,7,0.0 +21723,32,32,12,0.0 +21723,27,43.9,5,0.0 +21723,7,30,36,0.0 +21723,69,36,10,0.0 +21723,54,7.45,10,0.0 +21723,12,38,4,0.0 +21723,2,19,47,0.0 +21723,26,31.23,40,0.0 +21723,40,18.4,5,0.0 +21723,16,17.45,46,0.0 +21723,61,28.5,16,0.0 +21723,42,14,50,0.0 +21723,76,18,30,0.0 +21723,47,9.5,32,0.0 +21723,70,15,16,0.0 +21723,31,12.5,21,0.0 +21723,48,12.75,14,0.0 +21723,72,34.8,23,0.0 +21723,66,17,14,0.0 +21723,4,22,11,0.0 +21723,73,15,44,0.0 +21723,20,81,39,0.0 +21723,33,2.5,18,0.0 +21723,46,12,5,0.0 +21723,41,9.65,39,0.0 +21723,51,53,47,0.0 +21724,42,14,22,0.0 +21724,67,14,34,0.0 +21724,48,12.75,27,0.0 +21724,27,43.9,42,0.0 +21724,65,21.05,13,0.0 +21724,6,25,25,0.0 +21724,17,39,35,0.0 +21724,22,21,28,0.0 +21724,23,9,28,0.0 +21724,68,12.5,8,0.0 +21724,7,30,15,0.0 +21724,11,21,19,0.0 +21724,10,31,47,0.0 +21724,5,21.35,40,0.0 +21724,15,15.5,27,0.0 +21724,39,18,19,0.0 +21724,20,81,41,0.0 +21724,54,7.45,32,0.0 +21724,70,15,33,0.0 +21724,57,19.5,35,0.0 +21724,59,55,33,0.0 +21724,66,17,35,0.0 +21724,29,123.79,39,0.0 +21724,28,45.6,13,0.0 +21724,38,263.5,40,0.0 +21724,61,28.5,47,0.0 +21724,4,22,15,0.0 +21724,34,14,4,0.0 +21724,33,2.5,4,0.0 +21724,36,19,47,0.0 +21724,13,6,36,0.0 +21724,77,13,27,0.0 +21724,8,40,10,0.0 +21724,3,10,20,0.0 +21724,76,18,6,0.0 +21724,60,34,20,0.0 +21724,9,97,42,0.0 +21724,2,19,38,0.0 +21724,49,20,3,0.0 +21724,53,32.8,19,0.0 +21724,26,31.23,1,0.0 +21724,37,26,2,0.0 +21724,71,21.5,15,0.0 +21724,55,24,10,0.0 +21725,76,18,22,0.0 +21725,29,123.79,23,0.0 +21725,51,53,38,0.0 +21725,21,10,46,0.0 +21725,9,97,18,0.0 +21725,74,10,11,0.0 +21725,6,25,19,0.0 +21725,67,14,5,0.0 +21725,33,2.5,50,0.0 +21725,68,12.5,43,0.0 +21725,30,25.89,11,0.0 +21725,57,19.5,20,0.0 +21725,55,24,1,0.0 +21725,63,43.9,50,0.0 +21725,19,9.2,31,0.0 +21725,28,45.6,46,0.0 +21725,58,13.25,16,0.0 +21725,66,17,9,0.0 +21725,5,21.35,49,0.0 +21725,8,40,42,0.0 +21725,14,23.25,5,0.0 +21725,3,10,11,0.0 +21725,13,6,30,0.0 +21725,17,39,25,0.0 +21725,52,7,7,0.0 +21725,64,33.25,4,0.0 +21725,44,19.45,42,0.0 +21725,59,55,6,0.0 +21725,39,18,16,0.0 +21725,72,34.8,35,0.0 +21725,40,18.4,35,0.0 +21725,22,21,15,0.0 +21725,38,263.5,8,0.0 +21725,25,14,4,0.0 +21725,43,46,7,0.0 +21725,45,9.5,10,0.0 +21725,37,26,2,0.0 +21725,12,38,24,0.0 +21725,7,30,33,0.0 +21725,61,28.5,42,0.0 +21725,53,32.8,39,0.0 +21725,73,15,47,0.0 +21725,10,31,4,0.0 +21725,1,18,44,0.0 +21725,48,12.75,42,0.0 +21725,62,49.3,11,0.0 +21725,49,20,40,0.0 +21725,70,15,11,0.0 +21725,4,22,26,0.0 +21725,15,15.5,22,0.0 +21725,46,12,49,0.0 +21725,20,81,23,0.0 +21725,2,19,46,0.0 +21725,11,21,1,0.0 +21725,32,32,4,0.0 +21725,26,31.23,4,0.0 +21726,75,7.75,16,0.0 +21726,74,10,42,0.0 +21726,36,19,19,0.0 +21726,55,24,23,0.0 +21726,62,49.3,20,0.0 +21726,7,30,40,0.0 +21726,17,39,47,0.0 +21726,42,14,44,0.0 +21726,34,14,16,0.0 +21726,1,18,28,0.0 +21726,21,10,38,0.0 +21726,69,36,29,0.0 +21726,29,123.79,14,0.0 +21726,72,34.8,12,0.0 +21726,39,18,3,0.0 +21726,25,14,38,0.0 +21726,31,12.5,1,0.0 +21726,47,9.5,10,0.0 +21726,2,19,46,0.0 +21726,11,21,12,0.0 +21726,54,7.45,2,0.0 +21726,38,263.5,19,0.0 +21726,15,15.5,15,0.0 +21726,35,18,42,0.0 +21726,5,21.35,41,0.0 +21726,71,21.5,34,0.0 +21726,26,31.23,49,0.0 +21726,70,15,11,0.0 +21726,66,17,18,0.0 +21726,58,13.25,41,0.0 +21726,16,17.45,34,0.0 +21726,51,53,13,0.0 +21726,63,43.9,24,0.0 +21726,10,31,21,0.0 +21726,19,9.2,47,0.0 +21726,18,62.5,38,0.0 +21726,77,13,10,0.0 +21726,76,18,13,0.0 +21726,44,19.45,32,0.0 +21726,56,38,49,0.0 +21726,43,46,25,0.0 +21726,60,34,32,0.0 +21726,28,45.6,38,0.0 +21726,64,33.25,18,0.0 +21726,12,38,42,0.0 +21726,49,20,46,0.0 +21726,13,6,42,0.0 +21726,6,25,12,0.0 +21726,37,26,27,0.0 +21726,32,32,31,0.0 +21726,4,22,11,0.0 +21726,73,15,30,0.0 +21726,41,9.65,16,0.0 +21726,22,21,22,0.0 +21726,67,14,35,0.0 +21726,8,40,49,0.0 +21726,50,16.25,11,0.0 +21726,40,18.4,38,0.0 +21726,9,97,8,0.0 +21726,53,32.8,21,0.0 +21726,14,23.25,48,0.0 +21726,59,55,47,0.0 +21726,3,10,33,0.0 +21726,23,9,4,0.0 +21726,52,7,7,0.0 +21726,30,25.89,1,0.0 +21726,46,12,20,0.0 +21726,65,21.05,11,0.0 +21726,45,9.5,21,0.0 +21726,61,28.5,42,0.0 +21726,24,4.5,42,0.0 +21727,76,18,49,0.0 +21727,55,24,34,0.0 +21727,38,263.5,26,0.0 +21727,39,18,42,0.0 +21727,68,12.5,45,0.0 +21727,65,21.05,49,0.0 +21727,32,32,4,0.0 +21727,12,38,24,0.0 +21727,28,45.6,20,0.0 +21727,64,33.25,38,0.0 +21727,6,25,43,0.0 +21727,14,23.25,16,0.0 +21727,23,9,10,0.0 +21727,46,12,13,0.0 +21727,8,40,9,0.0 +21727,10,31,35,0.0 +21727,53,32.8,17,0.0 +21727,60,34,32,0.0 +21727,44,19.45,45,0.0 +21727,45,9.5,12,0.0 +21727,59,55,29,0.0 +21727,3,10,28,0.0 +21727,63,43.9,47,0.0 +21727,26,31.23,18,0.0 +21727,56,38,12,0.0 +21727,19,9.2,3,0.0 +21727,37,26,42,0.0 +21727,73,15,30,0.0 +21727,1,18,36,0.0 +21727,74,10,29,0.0 +21727,50,16.25,50,0.0 +21727,13,6,30,0.0 +21728,56,38,32,0.0 +21728,55,24,49,0.0 +21728,60,34,16,0.0 +21728,4,22,43,0.0 +21728,10,31,44,0.0 +21728,57,19.5,7,0.0 +21728,14,23.25,21,0.0 +21728,21,10,13,0.0 +21728,31,12.5,21,0.0 +21728,26,31.23,47,0.0 +21728,69,36,20,0.0 +21728,29,123.79,14,0.0 +21728,19,9.2,6,0.0 +21728,9,97,20,0.0 +21728,6,25,48,0.0 +21728,54,7.45,5,0.0 +21728,66,17,50,0.0 +21728,50,16.25,32,0.0 +21728,73,15,8,0.0 +21728,17,39,42,0.0 +21728,11,21,36,0.0 +21728,63,43.9,29,0.0 +21728,47,9.5,30,0.0 +21728,32,32,49,0.0 +21728,52,7,13,0.0 +21728,51,53,49,0.0 +21728,7,30,22,0.0 +21728,20,81,18,0.0 +21728,2,19,47,0.0 +21728,38,263.5,40,0.0 +21728,24,4.5,36,0.0 +21728,75,7.75,48,0.0 +21728,77,13,33,0.0 +21728,48,12.75,17,0.0 +21728,33,2.5,3,0.0 +21728,72,34.8,44,0.0 +21728,1,18,17,0.0 +21728,37,26,24,0.0 +21728,43,46,44,0.0 +21728,61,28.5,14,0.0 +21728,16,17.45,23,0.0 +21728,39,18,11,0.0 +21728,13,6,27,0.0 +21728,53,32.8,6,0.0 +21728,28,45.6,21,0.0 +21728,62,49.3,15,0.0 +21728,67,14,5,0.0 +21728,12,38,29,0.0 +21728,30,25.89,41,0.0 +21728,65,21.05,17,0.0 +21728,64,33.25,22,0.0 +21728,44,19.45,33,0.0 +21728,34,14,28,0.0 +21728,27,43.9,36,0.0 +21728,5,21.35,33,0.0 +21728,41,9.65,49,0.0 +21728,15,15.5,12,0.0 +21728,71,21.5,39,0.0 +21728,36,19,17,0.0 +21728,46,12,31,0.0 +21728,45,9.5,4,0.0 +21728,22,21,2,0.0 +21728,8,40,34,0.0 +21728,25,14,23,0.0 +21728,23,9,29,0.0 +21728,70,15,11,0.0 +21729,44,19.45,27,0.0 +21729,58,13.25,31,0.0 +21729,59,55,13,0.0 +21729,3,10,6,0.0 +21729,20,81,15,0.0 +21729,70,15,24,0.0 +21729,61,28.5,50,0.0 +21729,38,263.5,15,0.0 +21729,39,18,25,0.0 +21729,26,31.23,47,0.0 +21729,13,6,7,0.0 +21729,5,21.35,48,0.0 +21729,4,22,28,0.0 +21729,65,21.05,37,0.0 +21729,23,9,4,0.0 +21729,43,46,42,0.0 +21729,64,33.25,45,0.0 +21729,68,12.5,46,0.0 +21729,14,23.25,31,0.0 +21729,36,19,32,0.0 +21729,6,25,2,0.0 +21729,50,16.25,22,0.0 +21729,35,18,41,0.0 +21729,25,14,21,0.0 +21729,16,17.45,31,0.0 +21729,17,39,36,0.0 +21729,32,32,26,0.0 +21730,57,19.5,3,0.0 +21730,64,33.25,33,0.0 +21730,48,12.75,11,0.0 +21730,39,18,16,0.0 +21730,75,7.75,27,0.0 +21730,32,32,14,0.0 +21730,6,25,3,0.0 +21730,77,13,42,0.0 +21730,47,9.5,25,0.0 +21730,41,9.65,19,0.0 +21730,17,39,8,0.0 +21730,19,9.2,20,0.0 +21730,23,9,8,0.0 +21730,15,15.5,37,0.0 +21730,58,13.25,47,0.0 +21730,8,40,41,0.0 +21730,30,25.89,37,0.0 +21730,13,6,48,0.0 +21730,63,43.9,35,0.0 +21730,12,38,22,0.0 +21730,4,22,20,0.0 +21730,66,17,26,0.0 +21730,14,23.25,4,0.0 +21730,22,21,48,0.0 +21730,26,31.23,20,0.0 +21730,18,62.5,9,0.0 +21730,27,43.9,18,0.0 +21730,43,46,28,0.0 +21730,9,97,7,0.0 +21730,10,31,43,0.0 +21730,24,4.5,30,0.0 +21730,21,10,8,0.0 +21730,11,21,5,0.0 +21730,50,16.25,25,0.0 +21730,1,18,22,0.0 +21730,52,7,48,0.0 +21730,25,14,23,0.0 +21730,55,24,39,0.0 +21730,45,9.5,40,0.0 +21731,69,36,17,0.0 +21731,14,23.25,10,0.0 +21731,71,21.5,9,0.0 +21731,62,49.3,37,0.0 +21731,13,6,48,0.0 +21732,77,13,26,0.0 +21732,49,20,44,0.0 +21732,26,31.23,15,0.0 +21732,15,15.5,42,0.0 +21732,12,38,2,0.0 +21732,25,14,48,0.0 +21732,11,21,8,0.0 +21732,24,4.5,26,0.0 +21732,76,18,36,0.0 +21732,9,97,19,0.0 +21732,34,14,48,0.0 +21732,17,39,17,0.0 +21732,47,9.5,1,0.0 +21732,56,38,25,0.0 +21732,32,32,30,0.0 +21732,55,24,16,0.0 +21732,70,15,1,0.0 +21733,45,9.5,35,0.0 +21733,77,13,36,0.0 +21733,28,45.6,19,0.0 +21733,8,40,24,0.0 +21733,57,19.5,30,0.0 +21733,70,15,33,0.0 +21733,47,9.5,48,0.0 +21733,4,22,44,0.0 +21733,38,263.5,38,0.0 +21733,33,2.5,20,0.0 +21733,6,25,22,0.0 +21733,72,34.8,8,0.0 +21733,68,12.5,18,0.0 +21733,18,62.5,21,0.0 +21733,22,21,28,0.0 +21733,61,28.5,45,0.0 +21733,3,10,2,0.0 +21733,36,19,8,0.0 +21733,66,17,13,0.0 +21733,51,53,29,0.0 +21733,42,14,12,0.0 +21733,69,36,17,0.0 +21733,43,46,3,0.0 +21733,13,6,7,0.0 +21733,56,38,46,0.0 +21733,54,7.45,37,0.0 +21733,16,17.45,31,0.0 +21733,48,12.75,37,0.0 +21734,12,38,28,0.0 +21734,73,15,5,0.0 +21734,58,13.25,10,0.0 +21734,14,23.25,46,0.0 +21734,34,14,28,0.0 +21734,64,33.25,27,0.0 +21734,70,15,4,0.0 +21734,75,7.75,35,0.0 +21734,63,43.9,23,0.0 +21734,56,38,47,0.0 +21734,67,14,48,0.0 +21734,22,21,42,0.0 +21734,38,263.5,28,0.0 +21734,48,12.75,49,0.0 +21734,40,18.4,9,0.0 +21734,39,18,1,0.0 +21734,57,19.5,46,0.0 +21734,10,31,11,0.0 +21734,53,32.8,2,0.0 +21734,49,20,11,0.0 +21734,20,81,32,0.0 +21734,65,21.05,10,0.0 +21734,51,53,21,0.0 +21734,61,28.5,39,0.0 +21734,2,19,32,0.0 +21734,37,26,9,0.0 +21734,43,46,45,0.0 +21734,44,19.45,46,0.0 +21734,15,15.5,1,0.0 +21734,8,40,48,0.0 +21734,71,21.5,35,0.0 +21734,17,39,7,0.0 +21734,36,19,4,0.0 +21734,32,32,29,0.0 +21734,21,10,38,0.0 +21734,26,31.23,6,0.0 +21734,5,21.35,46,0.0 +21734,9,97,30,0.0 +21734,35,18,50,0.0 +21734,47,9.5,40,0.0 +21734,42,14,13,0.0 +21734,11,21,5,0.0 +21734,7,30,45,0.0 +21734,13,6,49,0.0 +21734,4,22,14,0.0 +21734,59,55,48,0.0 +21734,77,13,1,0.0 +21734,68,12.5,1,0.0 +21734,24,4.5,49,0.0 +21734,23,9,40,0.0 +21734,18,62.5,45,0.0 +21734,76,18,38,0.0 +21734,19,9.2,10,0.0 +21734,46,12,47,0.0 +21734,54,7.45,40,0.0 +21734,29,123.79,7,0.0 +21734,31,12.5,8,0.0 +21734,25,14,22,0.0 +21734,52,7,11,0.0 +21734,72,34.8,5,0.0 +21735,49,20,40,0.0 +21735,48,12.75,43,0.0 +21735,18,62.5,26,0.0 +21735,10,31,25,0.0 +21735,58,13.25,31,0.0 +21735,44,19.45,3,0.0 +21736,39,18,11,0.0 +21736,33,2.5,20,0.0 +21736,66,17,41,0.0 +21736,55,24,38,0.0 +21736,65,21.05,1,0.0 +21736,5,21.35,35,0.0 +21736,12,38,22,0.0 +21736,57,19.5,44,0.0 +21736,53,32.8,10,0.0 +21736,72,34.8,18,0.0 +21736,34,14,34,0.0 +21736,31,12.5,18,0.0 +21736,60,34,44,0.0 +21736,75,7.75,44,0.0 +21736,64,33.25,47,0.0 +21736,23,9,47,0.0 +21736,4,22,34,0.0 +21736,76,18,1,0.0 +21736,45,9.5,33,0.0 +21736,20,81,13,0.0 +21736,7,30,32,0.0 +21736,73,15,29,0.0 +21736,11,21,13,0.0 +21736,74,10,32,0.0 +21736,48,12.75,8,0.0 +21736,29,123.79,50,0.0 +21736,1,18,15,0.0 +21736,17,39,41,0.0 +21736,25,14,29,0.0 +21736,16,17.45,25,0.0 +21736,77,13,39,0.0 +21737,9,97,3,0.0 +21737,71,21.5,7,0.0 +21737,30,25.89,20,0.0 +21737,49,20,14,0.0 +21737,14,23.25,48,0.0 +21737,35,18,29,0.0 +21737,43,46,7,0.0 +21737,39,18,32,0.0 +21737,28,45.6,11,0.0 +21737,21,10,1,0.0 +21737,22,21,38,0.0 +21737,33,2.5,47,0.0 +21737,63,43.9,37,0.0 +21737,50,16.25,48,0.0 +21737,7,30,12,0.0 +21737,58,13.25,26,0.0 +21737,15,15.5,38,0.0 +21737,36,19,36,0.0 +21737,34,14,37,0.0 +21737,46,12,34,0.0 +21737,10,31,8,0.0 +21737,67,14,8,0.0 +21737,72,34.8,19,0.0 +21737,74,10,40,0.0 +21737,24,4.5,30,0.0 +21737,77,13,32,0.0 +21737,53,32.8,12,0.0 +21737,41,9.65,34,0.0 +21737,57,19.5,25,0.0 +21737,61,28.5,34,0.0 +21737,18,62.5,32,0.0 +21737,8,40,42,0.0 +21737,48,12.75,47,0.0 +21737,31,12.5,32,0.0 +21737,32,32,19,0.0 +21737,17,39,19,0.0 +21737,62,49.3,12,0.0 +21737,40,18.4,25,0.0 +21737,76,18,20,0.0 +21737,73,15,8,0.0 +21737,60,34,30,0.0 +21738,15,15.5,28,0.0 +21738,71,21.5,8,0.0 +21738,2,19,50,0.0 +21738,48,12.75,26,0.0 +21738,10,31,43,0.0 +21739,4,22,46,0.0 +21739,61,28.5,19,0.0 +21739,6,25,3,0.0 +21739,28,45.6,21,0.0 +21739,53,32.8,25,0.0 +21739,76,18,8,0.0 +21739,43,46,13,0.0 +21739,1,18,12,0.0 +21739,15,15.5,25,0.0 +21739,52,7,33,0.0 +21739,24,4.5,26,0.0 +21739,32,32,23,0.0 +21739,47,9.5,5,0.0 +21739,11,21,49,0.0 +21739,68,12.5,8,0.0 +21739,46,12,1,0.0 +21739,8,40,13,0.0 +21739,70,15,30,0.0 +21739,38,263.5,1,0.0 +21739,3,10,17,0.0 +21739,40,18.4,13,0.0 +21739,66,17,18,0.0 +21739,25,14,14,0.0 +21739,30,25.89,7,0.0 +21739,17,39,37,0.0 +21739,72,34.8,6,0.0 +21739,69,36,7,0.0 +21739,49,20,10,0.0 +21739,63,43.9,20,0.0 +21739,74,10,28,0.0 +21739,54,7.45,6,0.0 +21739,2,19,38,0.0 +21739,41,9.65,20,0.0 +21739,64,33.25,9,0.0 +21739,42,14,7,0.0 +21739,21,10,37,0.0 +21739,48,12.75,15,0.0 +21739,9,97,46,0.0 +21739,39,18,11,0.0 +21739,18,62.5,33,0.0 +21739,13,6,9,0.0 +21739,36,19,38,0.0 +21739,16,17.45,5,0.0 +21739,55,24,24,0.0 +21740,74,10,10,0.0 +21740,59,55,13,0.0 +21740,37,26,25,0.0 +21740,63,43.9,47,0.0 +21740,41,9.65,37,0.0 +21740,51,53,43,0.0 +21740,71,21.5,21,0.0 +21740,27,43.9,17,0.0 +21740,62,49.3,44,0.0 +21740,19,9.2,36,0.0 +21740,10,31,11,0.0 +21740,20,81,13,0.0 +21740,54,7.45,27,0.0 +21740,77,13,19,0.0 +21740,4,22,16,0.0 +21740,24,4.5,21,0.0 +21740,49,20,22,0.0 +21740,29,123.79,36,0.0 +21740,69,36,27,0.0 +21740,40,18.4,46,0.0 +21740,26,31.23,39,0.0 +21740,57,19.5,50,0.0 +21740,47,9.5,20,0.0 +21740,18,62.5,10,0.0 +21740,45,9.5,25,0.0 +21740,42,14,9,0.0 +21740,9,97,38,0.0 +21740,66,17,43,0.0 +21740,34,14,23,0.0 +21740,73,15,30,0.0 +21740,65,21.05,12,0.0 +21740,12,38,38,0.0 +21740,44,19.45,27,0.0 +21740,55,24,8,0.0 +21740,30,25.89,34,0.0 +21740,52,7,1,0.0 +21740,68,12.5,41,0.0 +21740,61,28.5,29,0.0 +21740,28,45.6,2,0.0 +21740,13,6,47,0.0 +21740,8,40,30,0.0 +21740,17,39,36,0.0 +21740,21,10,33,0.0 +21740,5,21.35,10,0.0 +21740,75,7.75,21,0.0 +21740,33,2.5,26,0.0 +21740,67,14,26,0.0 +21740,11,21,4,0.0 +21740,70,15,48,0.0 +21740,6,25,34,0.0 +21740,53,32.8,26,0.0 +21740,14,23.25,48,0.0 +21740,36,19,7,0.0 +21740,43,46,6,0.0 +21740,58,13.25,26,0.0 +21740,15,15.5,36,0.0 +21740,76,18,31,0.0 +21740,3,10,5,0.0 +21741,22,21,9,0.0 +21741,10,31,36,0.0 +21741,29,123.79,26,0.0 +21741,9,97,33,0.0 +21741,67,14,30,0.0 +21741,31,12.5,48,0.0 +21741,69,36,2,0.0 +21741,23,9,49,0.0 +21741,33,2.5,4,0.0 +21741,32,32,33,0.0 +21741,30,25.89,7,0.0 +21741,64,33.25,32,0.0 +21741,47,9.5,42,0.0 +21741,70,15,22,0.0 +21741,42,14,40,0.0 +21741,63,43.9,47,0.0 +21741,72,34.8,38,0.0 +21741,12,38,22,0.0 +21741,19,9.2,8,0.0 +21741,25,14,26,0.0 +21741,38,263.5,13,0.0 +21741,35,18,27,0.0 +21741,66,17,4,0.0 +21741,62,49.3,43,0.0 +21741,46,12,25,0.0 +21741,16,17.45,26,0.0 +21741,37,26,12,0.0 +21741,18,62.5,37,0.0 +21741,54,7.45,6,0.0 +21741,60,34,27,0.0 +21741,41,9.65,7,0.0 +21741,17,39,28,0.0 +21741,39,18,11,0.0 +21741,53,32.8,50,0.0 +21741,59,55,15,0.0 +21741,55,24,15,0.0 +21741,28,45.6,15,0.0 +21741,50,16.25,1,0.0 +21741,20,81,26,0.0 +21741,65,21.05,11,0.0 +21741,61,28.5,28,0.0 +21741,36,19,21,0.0 +21741,13,6,32,0.0 +21741,57,19.5,47,0.0 +21741,1,18,44,0.0 +21741,68,12.5,48,0.0 +21741,15,15.5,10,0.0 +21741,4,22,42,0.0 +21741,24,4.5,12,0.0 +21741,52,7,11,0.0 +21741,7,30,13,0.0 +21741,26,31.23,17,0.0 +21741,3,10,50,0.0 +21741,34,14,13,0.0 +21741,58,13.25,14,0.0 +21741,6,25,50,0.0 +21741,77,13,11,0.0 +21741,75,7.75,13,0.0 +21741,8,40,15,0.0 +21741,71,21.5,8,0.0 +21741,51,53,17,0.0 +21741,56,38,18,0.0 +21741,14,23.25,46,0.0 +21741,5,21.35,2,0.0 +21741,2,19,44,0.0 +21741,49,20,30,0.0 +21741,43,46,36,0.0 +21741,74,10,19,0.0 +21741,44,19.45,49,0.0 +21741,11,21,35,0.0 +21741,21,10,17,0.0 +21741,73,15,31,0.0 +21741,40,18.4,47,0.0 +21741,76,18,17,0.0 +21742,32,32,34,0.0 +21742,19,9.2,38,0.0 +21742,43,46,39,0.0 +21742,36,19,26,0.0 +21742,42,14,9,0.0 +21742,51,53,2,0.0 +21742,18,62.5,40,0.0 +21742,45,9.5,44,0.0 +21742,69,36,11,0.0 +21742,15,15.5,29,0.0 +21742,23,9,4,0.0 +21742,62,49.3,35,0.0 +21742,4,22,50,0.0 +21742,41,9.65,35,0.0 +21742,31,12.5,39,0.0 +21742,58,13.25,12,0.0 +21742,8,40,34,0.0 +21742,37,26,47,0.0 +21742,61,28.5,50,0.0 +21742,11,21,15,0.0 +21742,21,10,5,0.0 +21742,67,14,13,0.0 +21742,14,23.25,41,0.0 +21742,75,7.75,18,0.0 +21742,25,14,13,0.0 +21742,65,21.05,8,0.0 +21742,46,12,18,0.0 +21742,48,12.75,42,0.0 +21742,53,32.8,33,0.0 +21742,28,45.6,32,0.0 +21742,47,9.5,40,0.0 +21742,2,19,26,0.0 +21742,76,18,17,0.0 +21742,7,30,42,0.0 +21742,60,34,16,0.0 +21742,55,24,45,0.0 +21742,3,10,31,0.0 +21742,38,263.5,28,0.0 +21742,5,21.35,20,0.0 +21742,74,10,26,0.0 +21742,17,39,1,0.0 +21742,27,43.9,24,0.0 +21742,12,38,35,0.0 +21742,1,18,14,0.0 +21742,70,15,16,0.0 +21742,35,18,11,0.0 +21742,72,34.8,13,0.0 +21742,30,25.89,37,0.0 +21742,56,38,32,0.0 +21742,39,18,17,0.0 +21742,77,13,50,0.0 +21742,73,15,5,0.0 +21742,40,18.4,49,0.0 +21742,9,97,21,0.0 +21742,26,31.23,48,0.0 +21742,44,19.45,38,0.0 +21742,59,55,16,0.0 +21742,16,17.45,10,0.0 +21742,20,81,33,0.0 +21743,55,24,48,0.0 +21743,72,34.8,45,0.0 +21743,39,18,36,0.0 +21743,48,12.75,44,0.0 +21743,53,32.8,24,0.0 +21743,24,4.5,42,0.0 +21743,40,18.4,10,0.0 +21743,77,13,8,0.0 +21743,21,10,30,0.0 +21743,60,34,20,0.0 +21743,45,9.5,22,0.0 +21743,17,39,43,0.0 +21743,42,14,49,0.0 +21743,4,22,5,0.0 +21743,43,46,5,0.0 +21743,57,19.5,44,0.0 +21743,35,18,42,0.0 +21743,38,263.5,23,0.0 +21743,69,36,12,0.0 +21743,41,9.65,24,0.0 +21743,16,17.45,41,0.0 +21743,22,21,21,0.0 +21743,23,9,30,0.0 +21743,25,14,27,0.0 +21743,56,38,34,0.0 +21743,62,49.3,7,0.0 +21743,9,97,3,0.0 +21743,11,21,46,0.0 +21743,6,25,37,0.0 +21743,29,123.79,8,0.0 +21743,64,33.25,50,0.0 +21743,50,16.25,36,0.0 +21743,49,20,30,0.0 +21743,59,55,21,0.0 +21743,32,32,23,0.0 +21743,74,10,24,0.0 +21743,37,26,1,0.0 +21743,34,14,16,0.0 +21743,65,21.05,44,0.0 +21743,14,23.25,46,0.0 +21743,31,12.5,18,0.0 +21743,66,17,50,0.0 +21743,54,7.45,13,0.0 +21743,2,19,41,0.0 +21743,3,10,20,0.0 +21743,71,21.5,21,0.0 +21743,76,18,50,0.0 +21743,5,21.35,44,0.0 +21743,67,14,23,0.0 +21743,13,6,32,0.0 +21743,8,40,17,0.0 +21743,75,7.75,23,0.0 +21743,19,9.2,23,0.0 +21743,68,12.5,14,0.0 +21743,61,28.5,49,0.0 +21743,15,15.5,38,0.0 +21743,36,19,29,0.0 +21743,70,15,16,0.0 +21743,63,43.9,6,0.0 +21743,18,62.5,49,0.0 +21743,20,81,2,0.0 +21743,30,25.89,3,0.0 +21743,47,9.5,46,0.0 +21743,51,53,33,0.0 +21744,18,62.5,25,0.0 +21744,41,9.65,20,0.0 +21744,2,19,38,0.0 +21744,52,7,33,0.0 +21744,23,9,32,0.0 +21744,19,9.2,28,0.0 +21744,76,18,36,0.0 +21744,10,31,19,0.0 +21744,6,25,33,0.0 +21744,11,21,16,0.0 +21744,26,31.23,22,0.0 +21744,49,20,47,0.0 +21744,44,19.45,22,0.0 +21744,61,28.5,2,0.0 +21744,53,32.8,48,0.0 +21745,44,19.45,18,0.0 +21745,66,17,48,0.0 +21745,19,9.2,16,0.0 +21745,1,18,10,0.0 +21745,38,263.5,41,0.0 +21745,55,24,13,0.0 +21745,59,55,38,0.0 +21745,4,22,45,0.0 +21745,25,14,38,0.0 +21745,69,36,19,0.0 +21745,57,19.5,4,0.0 +21745,72,34.8,43,0.0 +21745,14,23.25,9,0.0 +21745,74,10,35,0.0 +21745,26,31.23,15,0.0 +21745,15,15.5,34,0.0 +21745,33,2.5,45,0.0 +21745,53,32.8,23,0.0 +21745,7,30,3,0.0 +21745,36,19,47,0.0 +21745,11,21,22,0.0 +21745,60,34,18,0.0 +21745,13,6,28,0.0 +21745,37,26,31,0.0 +21745,8,40,15,0.0 +21745,45,9.5,40,0.0 +21745,56,38,44,0.0 +21745,22,21,38,0.0 +21746,40,18.4,48,0.0 +21746,66,17,45,0.0 +21746,15,15.5,44,0.0 +21746,25,14,4,0.0 +21746,62,49.3,30,0.0 +21747,53,32.8,36,0.0 +21747,61,28.5,25,0.0 +21747,7,30,45,0.0 +21747,22,21,42,0.0 +21747,59,55,50,0.0 +21747,48,12.75,17,0.0 +21747,23,9,40,0.0 +21747,52,7,9,0.0 +21747,16,17.45,50,0.0 +21747,50,16.25,24,0.0 +21747,64,33.25,50,0.0 +21747,69,36,44,0.0 +21747,33,2.5,41,0.0 +21747,45,9.5,16,0.0 +21747,11,21,49,0.0 +21747,1,18,10,0.0 +21747,71,21.5,21,0.0 +21747,12,38,9,0.0 +21747,5,21.35,47,0.0 +21747,76,18,21,0.0 +21747,35,18,46,0.0 +21747,8,40,33,0.0 +21747,44,19.45,48,0.0 +21747,26,31.23,42,0.0 +21747,68,12.5,17,0.0 +21747,58,13.25,25,0.0 +21747,55,24,39,0.0 +21747,41,9.65,44,0.0 +21747,57,19.5,19,0.0 +21747,67,14,50,0.0 +21747,21,10,20,0.0 +21747,66,17,18,0.0 +21747,28,45.6,16,0.0 +21747,46,12,15,0.0 +21747,36,19,42,0.0 +21747,17,39,46,0.0 +21747,70,15,27,0.0 +21747,15,15.5,2,0.0 +21747,60,34,12,0.0 +21747,62,49.3,8,0.0 +21747,14,23.25,12,0.0 +21747,24,4.5,33,0.0 +21747,34,14,21,0.0 +21747,30,25.89,11,0.0 +21747,49,20,21,0.0 +21747,20,81,14,0.0 +21747,31,12.5,49,0.0 +21747,27,43.9,13,0.0 +21747,65,21.05,16,0.0 +21747,56,38,33,0.0 +21747,37,26,26,0.0 +21747,72,34.8,45,0.0 +21747,42,14,49,0.0 +21747,39,18,37,0.0 +21747,77,13,47,0.0 +21747,47,9.5,32,0.0 +21747,2,19,20,0.0 +21747,73,15,4,0.0 +21747,25,14,21,0.0 +21747,75,7.75,25,0.0 +21747,74,10,3,0.0 +21747,54,7.45,37,0.0 +21747,6,25,23,0.0 +21747,18,62.5,35,0.0 +21747,4,22,13,0.0 +21747,3,10,28,0.0 +21747,38,263.5,13,0.0 +21747,63,43.9,29,0.0 +21747,32,32,1,0.0 +21748,10,31,46,0.0 +21748,20,81,42,0.0 +21748,24,4.5,44,0.0 +21748,59,55,43,0.0 +21748,26,31.23,16,0.0 +21748,33,2.5,3,0.0 +21748,76,18,6,0.0 +21748,48,12.75,21,0.0 +21748,66,17,24,0.0 +21748,35,18,30,0.0 +21748,37,26,49,0.0 +21748,69,36,41,0.0 +21748,50,16.25,36,0.0 +21748,57,19.5,23,0.0 +21748,30,25.89,35,0.0 +21748,56,38,35,0.0 +21748,44,19.45,47,0.0 +21748,38,263.5,48,0.0 +21748,8,40,11,0.0 +21748,9,97,3,0.0 +21748,40,18.4,17,0.0 +21748,68,12.5,24,0.0 +21748,15,15.5,26,0.0 +21748,67,14,13,0.0 +21748,61,28.5,10,0.0 +21748,53,32.8,31,0.0 +21748,31,12.5,10,0.0 +21748,6,25,13,0.0 +21748,77,13,11,0.0 +21748,42,14,39,0.0 +21748,41,9.65,13,0.0 +21748,32,32,41,0.0 +21748,64,33.25,49,0.0 +21748,27,43.9,25,0.0 +21748,29,123.79,37,0.0 +21748,46,12,5,0.0 +21748,36,19,3,0.0 +21748,14,23.25,17,0.0 +21748,34,14,15,0.0 +21748,47,9.5,25,0.0 +21748,49,20,23,0.0 +21748,52,7,33,0.0 +21748,72,34.8,19,0.0 +21748,58,13.25,5,0.0 +21748,71,21.5,30,0.0 +21748,19,9.2,30,0.0 +21748,55,24,10,0.0 +21748,22,21,13,0.0 +21749,47,9.5,6,0.0 +21749,1,18,7,0.0 +21749,11,21,10,0.0 +21749,31,12.5,50,0.0 +21749,24,4.5,50,0.0 +21749,44,19.45,21,0.0 +21749,49,20,9,0.0 +21749,21,10,12,0.0 +21749,76,18,1,0.0 +21749,10,31,15,0.0 +21749,56,38,6,0.0 +21749,13,6,31,0.0 +21749,30,25.89,34,0.0 +21749,15,15.5,17,0.0 +21749,14,23.25,3,0.0 +21749,18,62.5,12,0.0 +21749,45,9.5,29,0.0 +21749,35,18,32,0.0 +21749,17,39,23,0.0 +21749,16,17.45,45,0.0 +21749,61,28.5,26,0.0 +21749,70,15,17,0.0 +21749,5,21.35,41,0.0 +21749,62,49.3,20,0.0 +21749,8,40,34,0.0 +21749,32,32,21,0.0 +21749,59,55,14,0.0 +21749,67,14,11,0.0 +21749,52,7,25,0.0 +21749,27,43.9,42,0.0 +21749,37,26,8,0.0 +21749,57,19.5,12,0.0 +21749,41,9.65,12,0.0 +21749,9,97,20,0.0 +21749,28,45.6,47,0.0 +21749,77,13,10,0.0 +21749,12,38,45,0.0 +21749,7,30,42,0.0 +21749,42,14,1,0.0 +21749,20,81,43,0.0 +21749,34,14,26,0.0 +21749,72,34.8,27,0.0 +21750,39,18,41,0.0 +21750,44,19.45,30,0.0 +21750,45,9.5,28,0.0 +21750,28,45.6,22,0.0 +21750,46,12,37,0.0 +21750,67,14,50,0.0 +21750,22,21,36,0.0 +21750,48,12.75,37,0.0 +21750,54,7.45,46,0.0 +21750,26,31.23,45,0.0 +21750,3,10,34,0.0 +21750,18,62.5,41,0.0 +21750,13,6,49,0.0 +21750,16,17.45,47,0.0 +21750,57,19.5,17,0.0 +21750,66,17,44,0.0 +21750,32,32,47,0.0 +21750,50,16.25,38,0.0 +21750,8,40,11,0.0 +21750,25,14,4,0.0 +21750,69,36,24,0.0 +21750,30,25.89,2,0.0 +21750,52,7,11,0.0 +21750,74,10,34,0.0 +21750,72,34.8,22,0.0 +21750,15,15.5,39,0.0 +21750,31,12.5,22,0.0 +21750,12,38,1,0.0 +21750,21,10,33,0.0 +21750,58,13.25,17,0.0 +21750,27,43.9,25,0.0 +21750,55,24,14,0.0 +21750,71,21.5,45,0.0 +21750,19,9.2,26,0.0 +21750,33,2.5,30,0.0 +21750,43,46,43,0.0 +21750,64,33.25,16,0.0 +21750,61,28.5,45,0.0 +21750,7,30,18,0.0 +21750,10,31,41,0.0 +21750,42,14,34,0.0 +21750,6,25,23,0.0 +21750,49,20,49,0.0 +21750,68,12.5,12,0.0 +21750,47,9.5,16,0.0 +21750,70,15,33,0.0 +21750,17,39,38,0.0 +21750,24,4.5,36,0.0 +21750,62,49.3,21,0.0 +21750,14,23.25,10,0.0 +21750,60,34,14,0.0 +21750,37,26,5,0.0 +21750,77,13,50,0.0 +21750,11,21,27,0.0 +21750,65,21.05,32,0.0 +21750,34,14,33,0.0 +21750,36,19,16,0.0 +21750,1,18,18,0.0 +21750,23,9,11,0.0 +21750,35,18,31,0.0 +21750,4,22,3,0.0 +21750,38,263.5,49,0.0 +21750,59,55,2,0.0 +21750,2,19,11,0.0 +21750,20,81,38,0.0 +21750,5,21.35,16,0.0 +21750,41,9.65,9,0.0 +21750,76,18,16,0.0 +21750,75,7.75,4,0.0 +21750,53,32.8,45,0.0 +21750,9,97,36,0.0 +21750,51,53,11,0.0 +21751,14,23.25,39,0.0 +21752,34,14,5,0.0 +21752,20,81,40,0.0 +21752,17,39,29,0.0 +21752,71,21.5,11,0.0 +21752,30,25.89,25,0.0 +21752,66,17,35,0.0 +21752,44,19.45,30,0.0 +21752,26,31.23,28,0.0 +21752,32,32,13,0.0 +21752,42,14,29,0.0 +21752,72,34.8,6,0.0 +21752,77,13,28,0.0 +21752,22,21,49,0.0 +21752,10,31,14,0.0 +21752,8,40,42,0.0 +21752,50,16.25,16,0.0 +21752,68,12.5,36,0.0 +21752,53,32.8,28,0.0 +21752,27,43.9,31,0.0 +21752,23,9,11,0.0 +21752,7,30,4,0.0 +21752,11,21,5,0.0 +21752,73,15,32,0.0 +21752,4,22,21,0.0 +21752,39,18,36,0.0 +21752,1,18,41,0.0 +21752,14,23.25,49,0.0 +21752,75,7.75,18,0.0 +21752,51,53,45,0.0 +21752,59,55,26,0.0 +21752,37,26,38,0.0 +21752,25,14,1,0.0 +21752,13,6,31,0.0 +21752,69,36,31,0.0 +21752,28,45.6,46,0.0 +21752,6,25,18,0.0 +21752,60,34,16,0.0 +21752,2,19,37,0.0 +21752,19,9.2,46,0.0 +21752,65,21.05,26,0.0 +21752,5,21.35,40,0.0 +21752,41,9.65,29,0.0 +21752,63,43.9,2,0.0 +21752,76,18,34,0.0 +21752,45,9.5,16,0.0 +21752,74,10,19,0.0 +21752,46,12,39,0.0 +21752,36,19,18,0.0 +21752,61,28.5,7,0.0 +21752,9,97,2,0.0 +21752,64,33.25,1,0.0 +21752,43,46,44,0.0 +21752,52,7,6,0.0 +21752,29,123.79,43,0.0 +21752,3,10,29,0.0 +21752,40,18.4,48,0.0 +21752,48,12.75,47,0.0 +21752,67,14,1,0.0 +21752,21,10,38,0.0 +21752,62,49.3,25,0.0 +21752,16,17.45,38,0.0 +21753,63,43.9,34,0.0 +21753,68,12.5,10,0.0 +21753,72,34.8,42,0.0 +21753,24,4.5,21,0.0 +21753,43,46,42,0.0 +21753,62,49.3,20,0.0 +21753,61,28.5,46,0.0 +21753,8,40,4,0.0 +21753,30,25.89,39,0.0 +21753,39,18,50,0.0 +21753,56,38,35,0.0 +21753,67,14,6,0.0 +21753,75,7.75,2,0.0 +21753,71,21.5,26,0.0 +21753,15,15.5,7,0.0 +21753,59,55,29,0.0 +21753,73,15,10,0.0 +21753,47,9.5,43,0.0 +21753,66,17,31,0.0 +21753,23,9,21,0.0 +21753,16,17.45,4,0.0 +21753,57,19.5,2,0.0 +21753,34,14,36,0.0 +21753,52,7,46,0.0 +21753,36,19,34,0.0 +21753,76,18,34,0.0 +21753,27,43.9,40,0.0 +21753,55,24,11,0.0 +21754,18,62.5,35,0.0 +21754,50,16.25,40,0.0 +21754,48,12.75,29,0.0 +21754,24,4.5,25,0.0 +21754,11,21,8,0.0 +21754,67,14,42,0.0 +21754,15,15.5,12,0.0 +21754,76,18,21,0.0 +21754,49,20,10,0.0 +21754,4,22,32,0.0 +21754,66,17,2,0.0 +21754,59,55,29,0.0 +21754,41,9.65,4,0.0 +21754,16,17.45,33,0.0 +21754,2,19,8,0.0 +21754,46,12,29,0.0 +21754,73,15,31,0.0 +21754,58,13.25,33,0.0 +21754,71,21.5,12,0.0 +21754,17,39,12,0.0 +21754,29,123.79,38,0.0 +21754,26,31.23,11,0.0 +21754,33,2.5,8,0.0 +21754,62,49.3,25,0.0 +21754,74,10,28,0.0 +21754,12,38,33,0.0 +21754,39,18,22,0.0 +21754,60,34,40,0.0 +21754,35,18,17,0.0 +21754,22,21,43,0.0 +21754,55,24,47,0.0 +21754,36,19,38,0.0 +21754,25,14,17,0.0 +21754,69,36,34,0.0 +21754,54,7.45,9,0.0 +21754,31,12.5,22,0.0 +21754,20,81,47,0.0 +21754,8,40,35,0.0 +21754,63,43.9,13,0.0 +21754,10,31,18,0.0 +21754,68,12.5,30,0.0 +21754,45,9.5,48,0.0 +21754,3,10,33,0.0 +21754,65,21.05,9,0.0 +21754,40,18.4,46,0.0 +21754,6,25,38,0.0 +21754,19,9.2,19,0.0 +21754,37,26,7,0.0 +21754,32,32,47,0.0 +21754,44,19.45,32,0.0 +21754,64,33.25,30,0.0 +21754,56,38,3,0.0 +21754,28,45.6,34,0.0 +21754,43,46,17,0.0 +21754,23,9,38,0.0 +21754,21,10,27,0.0 +21754,5,21.35,22,0.0 +21754,42,14,41,0.0 +21755,8,40,15,0.0 +21755,20,81,2,0.0 +21755,57,19.5,38,0.0 +21755,62,49.3,44,0.0 +21755,19,9.2,43,0.0 +21755,55,24,39,0.0 +21755,30,25.89,40,0.0 +21755,65,21.05,32,0.0 +21755,24,4.5,9,0.0 +21755,25,14,23,0.0 +21755,38,263.5,5,0.0 +21755,37,26,11,0.0 +21755,11,21,24,0.0 +21755,32,32,23,0.0 +21755,66,17,9,0.0 +21755,54,7.45,47,0.0 +21755,16,17.45,26,0.0 +21755,41,9.65,36,0.0 +21755,46,12,14,0.0 +21755,21,10,35,0.0 +21755,71,21.5,50,0.0 +21755,52,7,36,0.0 +21755,68,12.5,21,0.0 +21755,40,18.4,30,0.0 +21755,28,45.6,38,0.0 +21755,44,19.45,38,0.0 +21755,6,25,2,0.0 +21756,16,17.45,7,0.0 +21756,27,43.9,20,0.0 +21756,42,14,20,0.0 +21756,56,38,20,0.0 +21756,29,123.79,31,0.0 +21756,39,18,1,0.0 +21756,3,10,19,0.0 +21756,54,7.45,37,0.0 +21756,20,81,26,0.0 +21756,64,33.25,11,0.0 +21756,6,25,3,0.0 +21756,5,21.35,5,0.0 +21756,36,19,9,0.0 +21756,68,12.5,34,0.0 +21756,21,10,23,0.0 +21757,58,13.25,26,0.0 +21757,44,19.45,25,0.0 +21757,3,10,47,0.0 +21757,2,19,4,0.0 +21757,13,6,49,0.0 +21757,77,13,23,0.0 +21757,17,39,27,0.0 +21757,34,14,24,0.0 +21757,59,55,12,0.0 +21757,37,26,3,0.0 +21757,12,38,26,0.0 +21757,14,23.25,32,0.0 +21757,33,2.5,29,0.0 +21757,69,36,7,0.0 +21757,52,7,50,0.0 +21757,54,7.45,2,0.0 +21757,38,263.5,6,0.0 +21757,32,32,21,0.0 +21757,8,40,7,0.0 +21757,42,14,7,0.0 +21757,35,18,38,0.0 +21757,72,34.8,16,0.0 +21757,31,12.5,21,0.0 +21757,23,9,50,0.0 +21757,47,9.5,5,0.0 +21757,75,7.75,2,0.0 +21757,25,14,42,0.0 +21757,9,97,15,0.0 +21757,48,12.75,1,0.0 +21757,15,15.5,32,0.0 +21757,26,31.23,42,0.0 +21757,7,30,49,0.0 +21757,65,21.05,47,0.0 +21757,39,18,49,0.0 +21757,70,15,38,0.0 +21757,67,14,36,0.0 +21757,22,21,50,0.0 +21757,19,9.2,49,0.0 +21757,45,9.5,4,0.0 +21757,53,32.8,44,0.0 +21757,56,38,1,0.0 +21758,37,26,3,0.0 +21758,6,25,10,0.0 +21758,16,17.45,47,0.0 +21758,49,20,46,0.0 +21758,76,18,31,0.0 +21758,23,9,13,0.0 +21758,50,16.25,43,0.0 +21758,45,9.5,4,0.0 +21758,54,7.45,6,0.0 +21758,67,14,36,0.0 +21758,9,97,33,0.0 +21758,27,43.9,8,0.0 +21758,58,13.25,1,0.0 +21758,17,39,4,0.0 +21758,10,31,20,0.0 +21758,8,40,24,0.0 +21758,30,25.89,11,0.0 +21758,59,55,46,0.0 +21758,64,33.25,10,0.0 +21758,46,12,30,0.0 +21758,71,21.5,40,0.0 +21758,47,9.5,32,0.0 +21758,14,23.25,42,0.0 +21758,25,14,30,0.0 +21758,29,123.79,38,0.0 +21758,57,19.5,49,0.0 +21758,42,14,41,0.0 +21758,2,19,35,0.0 +21758,66,17,5,0.0 +21758,18,62.5,49,0.0 +21759,48,12.75,20,0.0 +21759,18,62.5,16,0.0 +21759,12,38,15,0.0 +21759,40,18.4,16,0.0 +21759,60,34,27,0.0 +21759,15,15.5,37,0.0 +21759,57,19.5,8,0.0 +21759,50,16.25,4,0.0 +21759,26,31.23,49,0.0 +21759,23,9,31,0.0 +21759,28,45.6,35,0.0 +21759,35,18,23,0.0 +21759,33,2.5,50,0.0 +21759,38,263.5,47,0.0 +21759,19,9.2,39,0.0 +21759,61,28.5,37,0.0 +21759,13,6,26,0.0 +21759,20,81,10,0.0 +21759,29,123.79,20,0.0 +21759,55,24,7,0.0 +21759,76,18,16,0.0 +21759,59,55,41,0.0 +21759,36,19,27,0.0 +21759,3,10,33,0.0 +21759,31,12.5,26,0.0 +21759,47,9.5,33,0.0 +21759,62,49.3,48,0.0 +21759,53,32.8,49,0.0 +21759,41,9.65,3,0.0 +21759,68,12.5,50,0.0 +21759,27,43.9,22,0.0 +21759,73,15,21,0.0 +21759,77,13,28,0.0 +21759,51,53,19,0.0 +21759,17,39,7,0.0 +21759,44,19.45,6,0.0 +21759,43,46,24,0.0 +21759,71,21.5,48,0.0 +21759,70,15,19,0.0 +21759,42,14,47,0.0 +21759,66,17,30,0.0 +21759,72,34.8,30,0.0 +21759,11,21,4,0.0 +21759,16,17.45,25,0.0 +21759,9,97,46,0.0 +21759,7,30,5,0.0 +21759,46,12,5,0.0 +21759,34,14,8,0.0 +21759,65,21.05,32,0.0 +21759,5,21.35,18,0.0 +21759,25,14,26,0.0 +21759,32,32,9,0.0 +21759,4,22,21,0.0 +21759,56,38,32,0.0 +21759,67,14,39,0.0 +21759,39,18,39,0.0 +21759,75,7.75,18,0.0 +21759,37,26,25,0.0 +21759,6,25,44,0.0 +21759,1,18,32,0.0 +21759,8,40,41,0.0 +21759,49,20,24,0.0 +21759,69,36,34,0.0 +21759,52,7,5,0.0 +21759,64,33.25,39,0.0 +21759,30,25.89,23,0.0 +21759,45,9.5,39,0.0 +21760,9,97,30,0.0 +21760,28,45.6,9,0.0 +21760,42,14,36,0.0 +21760,56,38,5,0.0 +21760,35,18,46,0.0 +21760,37,26,7,0.0 +21760,62,49.3,4,0.0 +21760,47,9.5,6,0.0 +21760,53,32.8,47,0.0 +21760,18,62.5,14,0.0 +21760,76,18,35,0.0 +21760,22,21,34,0.0 +21760,4,22,33,0.0 +21760,44,19.45,47,0.0 +21760,33,2.5,5,0.0 +21761,35,18,24,0.0 +21761,29,123.79,9,0.0 +21761,61,28.5,12,0.0 +21761,1,18,5,0.0 +21761,47,9.5,21,0.0 +21761,62,49.3,42,0.0 +21761,51,53,41,0.0 +21761,57,19.5,3,0.0 +21761,45,9.5,34,0.0 +21761,55,24,9,0.0 +21761,7,30,1,0.0 +21761,9,97,15,0.0 +21761,65,21.05,42,0.0 +21761,13,6,13,0.0 +21761,41,9.65,21,0.0 +21761,54,7.45,49,0.0 +21761,20,81,21,0.0 +21761,66,17,46,0.0 +21761,38,263.5,19,0.0 +21761,59,55,25,0.0 +21761,16,17.45,20,0.0 +21761,27,43.9,23,0.0 +21761,30,25.89,28,0.0 +21761,26,31.23,46,0.0 +21761,74,10,39,0.0 +21761,11,21,23,0.0 +21761,15,15.5,5,0.0 +21761,25,14,15,0.0 +21761,33,2.5,5,0.0 +21761,42,14,24,0.0 +21761,6,25,44,0.0 +21761,32,32,34,0.0 +21761,56,38,15,0.0 +21761,58,13.25,39,0.0 +21761,28,45.6,39,0.0 +21761,37,26,11,0.0 +21761,71,21.5,26,0.0 +21761,60,34,32,0.0 +21761,21,10,42,0.0 +21761,23,9,19,0.0 +21761,69,36,35,0.0 +21761,76,18,13,0.0 +21761,72,34.8,10,0.0 +21761,50,16.25,11,0.0 +21761,24,4.5,32,0.0 +21761,5,21.35,21,0.0 +21761,73,15,37,0.0 +21761,36,19,13,0.0 +21761,43,46,1,0.0 +21761,14,23.25,37,0.0 +21761,52,7,22,0.0 +21761,63,43.9,32,0.0 +21761,8,40,14,0.0 +21761,49,20,9,0.0 +21761,67,14,36,0.0 +21761,53,32.8,36,0.0 +21761,10,31,32,0.0 +21761,18,62.5,40,0.0 +21761,17,39,29,0.0 +21761,22,21,6,0.0 +21761,46,12,29,0.0 +21761,34,14,12,0.0 +21761,4,22,37,0.0 +21761,31,12.5,11,0.0 +21761,44,19.45,43,0.0 +21761,3,10,6,0.0 +21761,40,18.4,9,0.0 +21761,68,12.5,19,0.0 +21761,75,7.75,7,0.0 +21761,77,13,21,0.0 +21761,39,18,49,0.0 +21761,64,33.25,48,0.0 +21762,45,9.5,48,0.0 +21762,12,38,45,0.0 +21762,34,14,47,0.0 +21762,61,28.5,29,0.0 +21762,55,24,27,0.0 +21762,72,34.8,7,0.0 +21762,64,33.25,28,0.0 +21762,38,263.5,21,0.0 +21762,77,13,23,0.0 +21762,25,14,9,0.0 +21762,20,81,7,0.0 +21762,40,18.4,45,0.0 +21762,35,18,21,0.0 +21762,7,30,29,0.0 +21762,21,10,8,0.0 +21762,69,36,32,0.0 +21762,70,15,12,0.0 +21762,74,10,48,0.0 +21762,44,19.45,33,0.0 +21762,49,20,46,0.0 +21762,41,9.65,9,0.0 +21762,18,62.5,33,0.0 +21762,22,21,4,0.0 +21762,31,12.5,40,0.0 +21762,46,12,16,0.0 +21762,17,39,27,0.0 +21762,26,31.23,23,0.0 +21762,11,21,5,0.0 +21762,63,43.9,29,0.0 +21762,15,15.5,4,0.0 +21762,68,12.5,38,0.0 +21762,56,38,14,0.0 +21762,53,32.8,41,0.0 +21762,8,40,20,0.0 +21762,73,15,40,0.0 +21762,48,12.75,15,0.0 +21762,1,18,24,0.0 +21762,14,23.25,16,0.0 +21762,4,22,2,0.0 +21762,54,7.45,26,0.0 +21762,76,18,40,0.0 +21762,57,19.5,47,0.0 +21762,32,32,35,0.0 +21762,67,14,24,0.0 +21762,65,21.05,39,0.0 +21762,28,45.6,47,0.0 +21763,49,20,7,0.0 +21763,69,36,32,0.0 +21763,1,18,28,0.0 +21763,57,19.5,13,0.0 +21763,48,12.75,18,0.0 +21763,38,263.5,42,0.0 +21763,33,2.5,31,0.0 +21763,6,25,38,0.0 +21764,70,15,11,0.0 +21764,2,19,30,0.0 +21764,31,12.5,23,0.0 +21764,24,4.5,23,0.0 +21764,43,46,11,0.0 +21764,58,13.25,1,0.0 +21764,56,38,43,0.0 +21764,11,21,2,0.0 +21764,5,21.35,23,0.0 +21764,73,15,26,0.0 +21764,62,49.3,11,0.0 +21764,45,9.5,47,0.0 +21764,75,7.75,20,0.0 +21764,59,55,17,0.0 +21764,41,9.65,14,0.0 +21764,64,33.25,19,0.0 +21764,44,19.45,18,0.0 +21764,3,10,8,0.0 +21764,7,30,30,0.0 +21764,23,9,33,0.0 +21764,55,24,6,0.0 +21764,25,14,19,0.0 +21764,13,6,3,0.0 +21764,36,19,28,0.0 +21765,32,32,46,0.0 +21765,42,14,21,0.0 +21765,13,6,27,0.0 +21765,46,12,18,0.0 +21765,34,14,33,0.0 +21765,15,15.5,9,0.0 +21765,48,12.75,45,0.0 +21765,8,40,37,0.0 +21765,25,14,16,0.0 +21765,4,22,17,0.0 +21765,10,31,36,0.0 +21765,63,43.9,27,0.0 +21765,26,31.23,37,0.0 +21765,21,10,35,0.0 +21765,49,20,40,0.0 +21765,64,33.25,45,0.0 +21765,71,21.5,27,0.0 +21765,41,9.65,15,0.0 +21765,14,23.25,34,0.0 +21765,2,19,10,0.0 +21765,18,62.5,8,0.0 +21765,27,43.9,8,0.0 +21765,51,53,42,0.0 +21765,12,38,42,0.0 +21765,23,9,8,0.0 +21765,44,19.45,20,0.0 +21765,35,18,10,0.0 +21765,20,81,49,0.0 +21765,55,24,22,0.0 +21765,67,14,12,0.0 +21765,6,25,50,0.0 +21765,39,18,11,0.0 +21765,37,26,10,0.0 +21765,56,38,25,0.0 +21765,60,34,23,0.0 +21765,62,49.3,35,0.0 +21765,77,13,25,0.0 +21765,17,39,45,0.0 +21765,76,18,2,0.0 +21765,47,9.5,50,0.0 +21765,19,9.2,24,0.0 +21765,5,21.35,41,0.0 +21765,66,17,32,0.0 +21765,45,9.5,33,0.0 +21765,70,15,13,0.0 +21765,22,21,26,0.0 +21765,36,19,22,0.0 +21765,29,123.79,20,0.0 +21765,74,10,9,0.0 +21765,38,263.5,34,0.0 +21765,16,17.45,46,0.0 +21765,61,28.5,40,0.0 +21765,30,25.89,36,0.0 +21765,33,2.5,33,0.0 +21765,11,21,36,0.0 +21765,69,36,4,0.0 +21765,65,21.05,11,0.0 +21765,9,97,41,0.0 +21765,72,34.8,38,0.0 +21765,57,19.5,37,0.0 +21765,58,13.25,36,0.0 +21765,68,12.5,50,0.0 +21765,52,7,36,0.0 +21765,40,18.4,20,0.0 +21765,3,10,4,0.0 +21766,2,19,49,0.0 +21766,36,19,34,0.0 +21766,25,14,33,0.0 +21766,56,38,18,0.0 +21766,49,20,44,0.0 +21766,29,123.79,49,0.0 +21766,50,16.25,32,0.0 +21766,74,10,29,0.0 +21766,42,14,5,0.0 +21766,33,2.5,11,0.0 +21766,62,49.3,44,0.0 +21766,30,25.89,24,0.0 +21766,39,18,27,0.0 +21766,34,14,26,0.0 +21766,12,38,24,0.0 +21766,48,12.75,26,0.0 +21766,53,32.8,1,0.0 +21766,47,9.5,35,0.0 +21766,67,14,24,0.0 +21766,54,7.45,11,0.0 +21766,69,36,17,0.0 +21766,59,55,24,0.0 +21766,28,45.6,28,0.0 +21766,65,21.05,21,0.0 +21767,33,2.5,41,0.0 +21767,35,18,28,0.0 +21767,64,33.25,24,0.0 +21767,74,10,27,0.0 +21767,48,12.75,24,0.0 +21767,68,12.5,26,0.0 +21767,65,21.05,41,0.0 +21767,39,18,43,0.0 +21767,24,4.5,13,0.0 +21767,10,31,11,0.0 +21767,61,28.5,8,0.0 +21767,17,39,12,0.0 +21767,7,30,1,0.0 +21767,20,81,28,0.0 +21767,44,19.45,25,0.0 +21767,26,31.23,36,0.0 +21767,53,32.8,6,0.0 +21767,31,12.5,40,0.0 +21767,58,13.25,49,0.0 +21767,70,15,24,0.0 +21767,38,263.5,45,0.0 +21767,77,13,4,0.0 +21767,32,32,3,0.0 +21767,28,45.6,27,0.0 +21767,36,19,42,0.0 +21767,62,49.3,9,0.0 +21767,18,62.5,24,0.0 +21767,14,23.25,48,0.0 +21767,13,6,49,0.0 +21767,25,14,2,0.0 +21767,47,9.5,45,0.0 +21767,11,21,39,0.0 +21767,41,9.65,26,0.0 +21767,16,17.45,36,0.0 +21767,63,43.9,33,0.0 +21767,3,10,37,0.0 +21767,23,9,49,0.0 +21767,21,10,8,0.0 +21767,42,14,35,0.0 +21767,67,14,35,0.0 +21767,43,46,46,0.0 +21767,55,24,27,0.0 +21767,72,34.8,20,0.0 +21767,66,17,10,0.0 +21767,49,20,23,0.0 +21767,30,25.89,48,0.0 +21767,9,97,38,0.0 +21768,35,18,17,0.0 +21768,10,31,26,0.0 +21768,62,49.3,46,0.0 +21768,42,14,31,0.0 +21768,66,17,30,0.0 +21768,41,9.65,50,0.0 +21768,29,123.79,34,0.0 +21768,53,32.8,47,0.0 +21768,43,46,46,0.0 +21768,32,32,20,0.0 +21768,51,53,50,0.0 +21768,45,9.5,28,0.0 +21768,14,23.25,48,0.0 +21768,70,15,26,0.0 +21768,15,15.5,50,0.0 +21768,50,16.25,28,0.0 +21768,12,38,7,0.0 +21768,18,62.5,8,0.0 +21768,20,81,47,0.0 +21768,75,7.75,41,0.0 +21768,67,14,37,0.0 +21768,8,40,13,0.0 +21768,5,21.35,43,0.0 +21768,19,9.2,24,0.0 +21768,74,10,6,0.0 +21768,28,45.6,45,0.0 +21768,38,263.5,42,0.0 +21768,11,21,17,0.0 +21768,3,10,9,0.0 +21768,56,38,25,0.0 +21768,17,39,24,0.0 +21768,76,18,33,0.0 +21768,24,4.5,46,0.0 +21768,1,18,43,0.0 +21768,47,9.5,20,0.0 +21768,73,15,4,0.0 +21768,4,22,26,0.0 +21768,65,21.05,47,0.0 +21768,69,36,3,0.0 +21768,2,19,2,0.0 +21768,71,21.5,31,0.0 +21768,40,18.4,27,0.0 +21768,7,30,23,0.0 +21768,25,14,43,0.0 +21768,31,12.5,25,0.0 +21768,49,20,18,0.0 +21768,46,12,27,0.0 +21768,55,24,17,0.0 +21768,57,19.5,36,0.0 +21768,34,14,28,0.0 +21768,9,97,2,0.0 +21769,37,26,1,0.0 +21769,31,12.5,35,0.0 +21769,46,12,3,0.0 +21769,52,7,14,0.0 +21769,36,19,36,0.0 +21769,4,22,50,0.0 +21769,75,7.75,4,0.0 +21769,44,19.45,49,0.0 +21769,30,25.89,37,0.0 +21769,67,14,27,0.0 +21769,41,9.65,36,0.0 +21769,14,23.25,31,0.0 +21769,51,53,12,0.0 +21769,74,10,33,0.0 +21769,8,40,15,0.0 +21769,59,55,19,0.0 +21769,27,43.9,21,0.0 +21769,2,19,3,0.0 +21769,28,45.6,42,0.0 +21769,62,49.3,12,0.0 +21769,42,14,47,0.0 +21769,35,18,40,0.0 +21769,58,13.25,25,0.0 +21769,76,18,37,0.0 +21769,3,10,20,0.0 +21769,15,15.5,6,0.0 +21769,34,14,4,0.0 +21769,11,21,10,0.0 +21769,5,21.35,43,0.0 +21769,32,32,28,0.0 +21769,64,33.25,2,0.0 +21769,53,32.8,23,0.0 +21769,54,7.45,30,0.0 +21769,72,34.8,40,0.0 +21769,55,24,40,0.0 +21769,63,43.9,16,0.0 +21769,12,38,42,0.0 +21769,40,18.4,36,0.0 +21769,9,97,26,0.0 +21769,70,15,42,0.0 +21769,38,263.5,6,0.0 +21769,13,6,12,0.0 +21769,65,21.05,7,0.0 +21769,68,12.5,16,0.0 +21769,45,9.5,48,0.0 +21769,6,25,7,0.0 +21769,71,21.5,8,0.0 +21769,39,18,27,0.0 +21769,49,20,20,0.0 +21769,50,16.25,22,0.0 +21769,23,9,14,0.0 +21770,5,21.35,29,0.0 +21770,41,9.65,21,0.0 +21770,33,2.5,26,0.0 +21770,9,97,6,0.0 +21770,52,7,32,0.0 +21770,37,26,32,0.0 +21770,46,12,41,0.0 +21770,16,17.45,1,0.0 +21770,4,22,17,0.0 +21770,76,18,27,0.0 +21770,47,9.5,9,0.0 +21770,55,24,14,0.0 +21770,68,12.5,29,0.0 +21770,71,21.5,8,0.0 +21770,22,21,36,0.0 +21770,74,10,23,0.0 +21770,10,31,34,0.0 +21770,28,45.6,26,0.0 +21770,58,13.25,23,0.0 +21770,27,43.9,28,0.0 +21770,64,33.25,16,0.0 +21770,45,9.5,48,0.0 +21770,31,12.5,4,0.0 +21770,20,81,19,0.0 +21770,26,31.23,8,0.0 +21770,18,62.5,42,0.0 +21770,69,36,26,0.0 +21770,34,14,49,0.0 +21770,23,9,12,0.0 +21770,24,4.5,21,0.0 +21770,54,7.45,21,0.0 +21770,51,53,14,0.0 +21770,7,30,34,0.0 +21770,1,18,4,0.0 +21770,57,19.5,19,0.0 +21770,14,23.25,45,0.0 +21770,56,38,5,0.0 +21770,17,39,17,0.0 +21770,59,55,34,0.0 +21770,48,12.75,32,0.0 +21770,40,18.4,19,0.0 +21770,13,6,4,0.0 +21770,62,49.3,8,0.0 +21770,15,15.5,15,0.0 +21770,66,17,11,0.0 +21770,49,20,16,0.0 +21770,35,18,36,0.0 +21770,36,19,10,0.0 +21770,11,21,17,0.0 +21770,39,18,50,0.0 +21770,63,43.9,14,0.0 +21770,38,263.5,9,0.0 +21770,42,14,32,0.0 +21770,29,123.79,44,0.0 +21770,32,32,8,0.0 +21770,50,16.25,49,0.0 +21770,25,14,48,0.0 +21770,6,25,10,0.0 +21770,77,13,34,0.0 +21770,3,10,24,0.0 +21770,53,32.8,26,0.0 +21770,43,46,48,0.0 +21770,8,40,20,0.0 +21770,30,25.89,47,0.0 +21770,21,10,8,0.0 +21770,72,34.8,34,0.0 +21770,19,9.2,47,0.0 +21770,44,19.45,19,0.0 +21770,65,21.05,22,0.0 +21770,2,19,19,0.0 +21770,70,15,32,0.0 +21771,61,28.5,31,0.0 +21771,20,81,41,0.0 +21771,9,97,17,0.0 +21771,43,46,18,0.0 +21771,45,9.5,9,0.0 +21771,28,45.6,32,0.0 +21771,70,15,11,0.0 +21771,17,39,33,0.0 +21771,6,25,45,0.0 +21771,39,18,9,0.0 +21772,6,25,36,0.0 +21773,54,7.45,47,0.0 +21773,46,12,43,0.0 +21773,45,9.5,32,0.0 +21773,18,62.5,16,0.0 +21773,65,21.05,50,0.0 +21773,29,123.79,13,0.0 +21773,47,9.5,47,0.0 +21773,23,9,30,0.0 +21773,30,25.89,26,0.0 +21773,41,9.65,19,0.0 +21773,4,22,32,0.0 +21773,36,19,7,0.0 +21773,34,14,3,0.0 +21773,57,19.5,50,0.0 +21773,44,19.45,3,0.0 +21773,55,24,9,0.0 +21773,48,12.75,15,0.0 +21773,74,10,9,0.0 +21773,1,18,44,0.0 +21773,50,16.25,13,0.0 +21773,3,10,2,0.0 +21773,70,15,25,0.0 +21773,17,39,28,0.0 +21773,64,33.25,31,0.0 +21773,2,19,12,0.0 +21773,28,45.6,32,0.0 +21773,26,31.23,50,0.0 +21773,10,31,36,0.0 +21773,27,43.9,4,0.0 +21773,7,30,40,0.0 +21773,24,4.5,42,0.0 +21773,21,10,7,0.0 +21773,77,13,18,0.0 +21773,35,18,13,0.0 +21773,56,38,45,0.0 +21773,61,28.5,27,0.0 +21773,5,21.35,26,0.0 +21773,60,34,4,0.0 +21773,22,21,11,0.0 +21773,76,18,33,0.0 +21773,63,43.9,26,0.0 +21773,69,36,41,0.0 +21773,33,2.5,47,0.0 +21773,40,18.4,22,0.0 +21773,16,17.45,8,0.0 +21773,73,15,35,0.0 +21773,9,97,33,0.0 +21773,68,12.5,46,0.0 +21773,53,32.8,8,0.0 +21773,32,32,43,0.0 +21773,11,21,15,0.0 +21773,37,26,32,0.0 +21773,75,7.75,3,0.0 +21773,49,20,39,0.0 +21774,69,36,13,0.0 +21774,8,40,31,0.0 +21774,9,97,45,0.0 +21774,41,9.65,35,0.0 +21774,37,26,35,0.0 +21774,12,38,3,0.0 +21774,23,9,39,0.0 +21774,66,17,35,0.0 +21774,51,53,7,0.0 +21774,58,13.25,1,0.0 +21774,24,4.5,7,0.0 +21774,31,12.5,35,0.0 +21774,34,14,48,0.0 +21774,52,7,48,0.0 +21774,15,15.5,37,0.0 +21774,25,14,32,0.0 +21774,74,10,44,0.0 +21775,1,18,28,0.0 +21775,36,19,3,0.0 +21775,60,34,21,0.0 +21775,68,12.5,28,0.0 +21775,76,18,38,0.0 +21775,54,7.45,10,0.0 +21775,18,62.5,16,0.0 +21775,11,21,2,0.0 +21775,22,21,23,0.0 +21775,25,14,30,0.0 +21775,31,12.5,25,0.0 +21775,20,81,2,0.0 +21775,8,40,41,0.0 +21775,40,18.4,26,0.0 +21775,24,4.5,40,0.0 +21775,27,43.9,9,0.0 +21775,28,45.6,11,0.0 +21775,23,9,41,0.0 +21775,66,17,21,0.0 +21775,61,28.5,38,0.0 +21775,13,6,35,0.0 +21775,38,263.5,4,0.0 +21775,10,31,40,0.0 +21775,33,2.5,41,0.0 +21775,62,49.3,28,0.0 +21775,53,32.8,47,0.0 +21775,77,13,5,0.0 +21775,70,15,48,0.0 +21775,6,25,50,0.0 +21775,52,7,47,0.0 +21775,2,19,21,0.0 +21775,34,14,12,0.0 +21775,74,10,42,0.0 +21775,43,46,48,0.0 +21775,72,34.8,18,0.0 +21775,59,55,33,0.0 +21775,41,9.65,7,0.0 +21775,16,17.45,7,0.0 +21775,46,12,34,0.0 +21775,35,18,7,0.0 +21775,45,9.5,49,0.0 +21775,29,123.79,37,0.0 +21775,30,25.89,32,0.0 +21775,37,26,50,0.0 +21775,32,32,31,0.0 +21775,69,36,35,0.0 +21775,12,38,43,0.0 +21775,71,21.5,35,0.0 +21775,26,31.23,18,0.0 +21775,63,43.9,4,0.0 +21775,47,9.5,8,0.0 +21775,15,15.5,42,0.0 +21776,57,19.5,47,0.0 +21776,30,25.89,23,0.0 +21776,49,20,24,0.0 +21776,16,17.45,9,0.0 +21776,7,30,10,0.0 +21776,45,9.5,41,0.0 +21776,13,6,20,0.0 +21776,6,25,23,0.0 +21776,25,14,37,0.0 +21776,10,31,30,0.0 +21776,1,18,50,0.0 +21776,21,10,36,0.0 +21776,61,28.5,23,0.0 +21776,39,18,35,0.0 +21776,4,22,28,0.0 +21776,17,39,40,0.0 +21776,60,34,12,0.0 +21776,34,14,39,0.0 +21776,15,15.5,35,0.0 +21776,76,18,32,0.0 +21776,31,12.5,24,0.0 +21776,18,62.5,42,0.0 +21776,24,4.5,10,0.0 +21776,37,26,30,0.0 +21776,47,9.5,9,0.0 +21776,40,18.4,26,0.0 +21776,62,49.3,15,0.0 +21776,42,14,48,0.0 +21776,33,2.5,27,0.0 +21776,54,7.45,38,0.0 +21776,67,14,38,0.0 +21776,77,13,10,0.0 +21776,14,23.25,13,0.0 +21776,5,21.35,24,0.0 +21776,28,45.6,36,0.0 +21776,52,7,11,0.0 +21776,22,21,20,0.0 +21776,56,38,12,0.0 +21776,36,19,21,0.0 +21776,2,19,19,0.0 +21776,65,21.05,36,0.0 +21776,68,12.5,18,0.0 +21776,3,10,50,0.0 +21776,50,16.25,10,0.0 +21776,64,33.25,41,0.0 +21776,53,32.8,39,0.0 +21776,71,21.5,33,0.0 +21776,74,10,17,0.0 +21776,41,9.65,29,0.0 +21776,20,81,17,0.0 +21776,38,263.5,39,0.0 +21776,27,43.9,4,0.0 +21776,72,34.8,5,0.0 +21776,23,9,3,0.0 +21776,69,36,47,0.0 +21776,75,7.75,22,0.0 +21776,26,31.23,48,0.0 +21776,48,12.75,47,0.0 +21776,73,15,14,0.0 +21776,32,32,25,0.0 +21776,8,40,48,0.0 +21776,63,43.9,1,0.0 +21776,46,12,14,0.0 +21776,35,18,12,0.0 +21776,11,21,16,0.0 +21776,9,97,31,0.0 +21776,12,38,7,0.0 +21776,70,15,43,0.0 +21776,51,53,28,0.0 +21776,43,46,45,0.0 +21776,19,9.2,50,0.0 +21776,44,19.45,35,0.0 +21776,55,24,13,0.0 +21776,66,17,12,0.0 +21777,35,18,40,0.0 +21777,70,15,17,0.0 +21777,67,14,50,0.0 +21777,50,16.25,3,0.0 +21777,15,15.5,21,0.0 +21777,17,39,34,0.0 +21777,75,7.75,36,0.0 +21777,71,21.5,32,0.0 +21777,56,38,18,0.0 +21777,31,12.5,31,0.0 +21777,8,40,11,0.0 +21777,51,53,46,0.0 +21777,37,26,50,0.0 +21777,1,18,2,0.0 +21777,25,14,12,0.0 +21777,26,31.23,32,0.0 +21777,48,12.75,2,0.0 +21777,57,19.5,31,0.0 +21777,65,21.05,12,0.0 +21777,32,32,43,0.0 +21777,43,46,5,0.0 +21777,12,38,18,0.0 +21777,68,12.5,38,0.0 +21777,42,14,30,0.0 +21777,28,45.6,3,0.0 +21777,38,263.5,1,0.0 +21777,64,33.25,46,0.0 +21777,44,19.45,40,0.0 +21777,54,7.45,37,0.0 +21777,14,23.25,43,0.0 +21777,13,6,33,0.0 +21777,19,9.2,5,0.0 +21777,76,18,32,0.0 +21777,69,36,42,0.0 +21777,53,32.8,1,0.0 +21777,7,30,15,0.0 +21777,77,13,38,0.0 +21777,33,2.5,16,0.0 +21777,16,17.45,11,0.0 +21777,18,62.5,48,0.0 +21777,58,13.25,25,0.0 +21777,27,43.9,3,0.0 +21777,36,19,26,0.0 +21777,9,97,45,0.0 +21777,30,25.89,20,0.0 +21777,72,34.8,34,0.0 +21777,46,12,9,0.0 +21777,39,18,38,0.0 +21777,62,49.3,39,0.0 +21777,66,17,7,0.0 +21777,55,24,20,0.0 +21777,5,21.35,23,0.0 +21777,3,10,20,0.0 +21777,61,28.5,22,0.0 +21777,60,34,38,0.0 +21777,22,21,6,0.0 +21777,11,21,4,0.0 +21777,21,10,1,0.0 +21777,45,9.5,47,0.0 +21777,73,15,33,0.0 +21777,41,9.65,44,0.0 +21777,10,31,14,0.0 +21777,40,18.4,19,0.0 +21777,47,9.5,23,0.0 +21777,6,25,50,0.0 +21777,34,14,25,0.0 +21777,24,4.5,39,0.0 +21777,29,123.79,27,0.0 +21778,5,21.35,22,0.0 +21778,32,32,13,0.0 +21778,37,26,13,0.0 +21778,57,19.5,26,0.0 +21778,43,46,33,0.0 +21778,66,17,20,0.0 +21778,36,19,22,0.0 +21778,18,62.5,43,0.0 +21778,63,43.9,41,0.0 +21778,38,263.5,43,0.0 +21778,3,10,21,0.0 +21778,54,7.45,26,0.0 +21778,19,9.2,32,0.0 +21778,71,21.5,24,0.0 +21778,13,6,25,0.0 +21778,17,39,8,0.0 +21778,70,15,26,0.0 +21778,6,25,6,0.0 +21778,2,19,1,0.0 +21778,59,55,31,0.0 +21778,77,13,13,0.0 +21778,53,32.8,12,0.0 +21778,25,14,19,0.0 +21778,72,34.8,25,0.0 +21778,55,24,8,0.0 +21778,65,21.05,21,0.0 +21778,52,7,9,0.0 +21778,9,97,48,0.0 +21778,14,23.25,38,0.0 +21778,16,17.45,46,0.0 +21778,27,43.9,42,0.0 +21778,30,25.89,38,0.0 +21778,22,21,31,0.0 +21778,21,10,38,0.0 +21778,4,22,46,0.0 +21778,61,28.5,24,0.0 +21778,20,81,18,0.0 +21778,39,18,4,0.0 +21778,64,33.25,16,0.0 +21778,29,123.79,44,0.0 +21778,10,31,29,0.0 +21778,69,36,7,0.0 +21778,50,16.25,22,0.0 +21778,33,2.5,23,0.0 +21778,75,7.75,35,0.0 +21778,47,9.5,32,0.0 +21778,58,13.25,39,0.0 +21778,7,30,23,0.0 +21778,12,38,17,0.0 +21778,40,18.4,48,0.0 +21778,56,38,2,0.0 +21778,67,14,17,0.0 +21778,35,18,8,0.0 +21778,41,9.65,35,0.0 +21778,44,19.45,25,0.0 +21779,40,18.4,23,0.0 +21779,43,46,25,0.0 +21779,17,39,41,0.0 +21779,65,21.05,16,0.0 +21779,53,32.8,48,0.0 +21779,23,9,7,0.0 +21779,51,53,43,0.0 +21779,70,15,10,0.0 +21779,56,38,4,0.0 +21779,60,34,10,0.0 +21779,20,81,17,0.0 +21779,4,22,37,0.0 +21779,75,7.75,35,0.0 +21779,67,14,30,0.0 +21779,31,12.5,48,0.0 +21779,77,13,29,0.0 +21779,44,19.45,19,0.0 +21779,72,34.8,1,0.0 +21779,19,9.2,9,0.0 +21779,32,32,22,0.0 +21779,24,4.5,30,0.0 +21779,46,12,18,0.0 +21779,11,21,20,0.0 +21779,21,10,6,0.0 +21779,37,26,50,0.0 +21779,26,31.23,39,0.0 +21779,5,21.35,15,0.0 +21779,15,15.5,40,0.0 +21779,28,45.6,2,0.0 +21779,48,12.75,46,0.0 +21779,69,36,38,0.0 +21779,18,62.5,29,0.0 +21779,62,49.3,21,0.0 +21779,3,10,4,0.0 +21780,68,12.5,42,0.0 +21780,64,33.25,11,0.0 +21780,16,17.45,45,0.0 +21780,67,14,25,0.0 +21780,55,24,49,0.0 +21780,40,18.4,36,0.0 +21780,28,45.6,11,0.0 +21780,12,38,38,0.0 +21780,36,19,27,0.0 +21780,29,123.79,25,0.0 +21780,27,43.9,47,0.0 +21780,11,21,21,0.0 +21780,42,14,20,0.0 +21780,62,49.3,2,0.0 +21780,48,12.75,18,0.0 +21780,47,9.5,29,0.0 +21780,6,25,5,0.0 +21780,56,38,34,0.0 +21780,13,6,5,0.0 +21780,51,53,4,0.0 +21780,44,19.45,22,0.0 +21780,23,9,32,0.0 +21780,22,21,2,0.0 +21780,24,4.5,34,0.0 +21780,14,23.25,43,0.0 +21780,69,36,43,0.0 +21780,8,40,17,0.0 +21780,49,20,2,0.0 +21780,53,32.8,5,0.0 +21780,72,34.8,21,0.0 +21780,3,10,8,0.0 +21780,2,19,25,0.0 +21780,33,2.5,9,0.0 +21780,71,21.5,1,0.0 +21780,57,19.5,3,0.0 +21780,77,13,38,0.0 +21780,46,12,17,0.0 +21780,43,46,46,0.0 +21780,4,22,5,0.0 +21780,21,10,13,0.0 +21780,26,31.23,8,0.0 +21780,30,25.89,49,0.0 +21780,31,12.5,30,0.0 +21780,32,32,41,0.0 +21780,70,15,1,0.0 +21780,5,21.35,44,0.0 +21781,73,15,1,0.0 +21781,40,18.4,37,0.0 +21781,50,16.25,21,0.0 +21781,61,28.5,26,0.0 +21781,28,45.6,41,0.0 +21781,11,21,19,0.0 +21781,8,40,29,0.0 +21781,67,14,22,0.0 +21781,54,7.45,35,0.0 +21781,77,13,7,0.0 +21781,65,21.05,11,0.0 +21781,16,17.45,42,0.0 +21781,10,31,31,0.0 +21781,62,49.3,10,0.0 +21781,22,21,25,0.0 +21781,57,19.5,21,0.0 +21782,10,31,50,0.0 +21782,46,12,20,0.0 +21782,34,14,33,0.0 +21782,48,12.75,45,0.0 +21782,24,4.5,36,0.0 +21782,72,34.8,14,0.0 +21782,54,7.45,32,0.0 +21782,73,15,32,0.0 +21782,67,14,5,0.0 +21782,44,19.45,42,0.0 +21782,47,9.5,44,0.0 +21783,50,16.25,1,0.0 +21783,54,7.45,43,0.0 +21783,64,33.25,9,0.0 +21783,71,21.5,5,0.0 +21783,33,2.5,30,0.0 +21783,21,10,21,0.0 +21783,76,18,17,0.0 +21783,61,28.5,5,0.0 +21783,37,26,8,0.0 +21783,52,7,10,0.0 +21783,46,12,25,0.0 +21783,16,17.45,34,0.0 +21783,18,62.5,41,0.0 +21783,67,14,18,0.0 +21783,36,19,41,0.0 +21783,56,38,28,0.0 +21783,9,97,38,0.0 +21783,66,17,8,0.0 +21783,26,31.23,46,0.0 +21783,1,18,25,0.0 +21783,43,46,44,0.0 +21783,63,43.9,39,0.0 +21783,31,12.5,28,0.0 +21783,13,6,11,0.0 +21783,34,14,16,0.0 +21783,22,21,44,0.0 +21783,6,25,31,0.0 +21783,41,9.65,11,0.0 +21783,12,38,21,0.0 +21783,72,34.8,12,0.0 +21783,59,55,43,0.0 +21783,75,7.75,6,0.0 +21783,58,13.25,24,0.0 +21783,42,14,38,0.0 +21783,53,32.8,29,0.0 +21783,14,23.25,23,0.0 +21783,39,18,33,0.0 +21783,24,4.5,2,0.0 +21783,49,20,40,0.0 +21783,7,30,29,0.0 +21783,5,21.35,34,0.0 +21783,44,19.45,3,0.0 +21783,2,19,22,0.0 +21783,28,45.6,39,0.0 +21783,70,15,47,0.0 +21783,47,9.5,39,0.0 +21783,51,53,4,0.0 +21783,69,36,20,0.0 +21783,4,22,6,0.0 +21783,25,14,36,0.0 +21783,15,15.5,7,0.0 +21783,11,21,24,0.0 +21783,20,81,41,0.0 +21783,38,263.5,5,0.0 +21783,30,25.89,23,0.0 +21783,27,43.9,50,0.0 +21783,48,12.75,36,0.0 +21784,7,30,38,0.0 +21784,75,7.75,18,0.0 +21784,57,19.5,13,0.0 +21784,53,32.8,8,0.0 +21784,77,13,31,0.0 +21784,11,21,22,0.0 +21784,16,17.45,23,0.0 +21784,72,34.8,32,0.0 +21784,39,18,15,0.0 +21784,69,36,10,0.0 +21784,26,31.23,11,0.0 +21784,58,13.25,47,0.0 +21784,1,18,9,0.0 +21784,37,26,26,0.0 +21784,48,12.75,38,0.0 +21784,22,21,45,0.0 +21784,8,40,1,0.0 +21784,66,17,10,0.0 +21784,55,24,40,0.0 +21784,21,10,11,0.0 +21784,51,53,25,0.0 +21784,9,97,8,0.0 +21784,6,25,26,0.0 +21784,32,32,37,0.0 +21784,14,23.25,24,0.0 +21784,45,9.5,33,0.0 +21784,34,14,48,0.0 +21784,5,21.35,43,0.0 +21784,25,14,30,0.0 +21784,17,39,15,0.0 +21784,36,19,2,0.0 +21784,23,9,21,0.0 +21784,42,14,12,0.0 +21784,49,20,18,0.0 +21784,59,55,23,0.0 +21784,4,22,6,0.0 +21784,24,4.5,31,0.0 +21784,62,49.3,26,0.0 +21784,54,7.45,44,0.0 +21784,43,46,21,0.0 +21784,41,9.65,30,0.0 +21784,47,9.5,36,0.0 +21784,52,7,27,0.0 +21784,10,31,35,0.0 +21784,18,62.5,44,0.0 +21784,76,18,34,0.0 +21784,63,43.9,24,0.0 +21784,29,123.79,29,0.0 +21784,60,34,25,0.0 +21784,65,21.05,43,0.0 +21784,44,19.45,4,0.0 +21784,28,45.6,45,0.0 +21784,15,15.5,17,0.0 +21784,73,15,24,0.0 +21784,13,6,6,0.0 +21784,27,43.9,6,0.0 +21784,46,12,21,0.0 +21784,2,19,27,0.0 +21784,3,10,43,0.0 +21784,64,33.25,25,0.0 +21784,56,38,8,0.0 +21784,20,81,1,0.0 +21784,31,12.5,17,0.0 +21785,73,15,13,0.0 +21785,25,14,15,0.0 +21785,42,14,30,0.0 +21785,27,43.9,46,0.0 +21785,39,18,27,0.0 +21785,31,12.5,32,0.0 +21785,61,28.5,27,0.0 +21785,9,97,2,0.0 +21785,30,25.89,16,0.0 +21785,38,263.5,24,0.0 +21785,17,39,5,0.0 +21785,55,24,17,0.0 +21785,23,9,26,0.0 +21785,29,123.79,15,0.0 +21785,74,10,2,0.0 +21785,43,46,45,0.0 +21785,21,10,28,0.0 +21785,5,21.35,30,0.0 +21785,51,53,21,0.0 +21785,72,34.8,18,0.0 +21785,56,38,3,0.0 +21786,46,12,44,0.0 +21786,39,18,50,0.0 +21786,10,31,25,0.0 +21786,72,34.8,44,0.0 +21786,74,10,36,0.0 +21786,73,15,7,0.0 +21786,64,33.25,36,0.0 +21786,24,4.5,4,0.0 +21786,20,81,1,0.0 +21786,28,45.6,17,0.0 +21786,15,15.5,41,0.0 +21786,23,9,26,0.0 +21786,68,12.5,34,0.0 +21786,51,53,14,0.0 +21786,29,123.79,13,0.0 +21786,35,18,8,0.0 +21786,61,28.5,44,0.0 +21786,4,22,44,0.0 +21786,7,30,39,0.0 +21786,62,49.3,50,0.0 +21786,75,7.75,6,0.0 +21786,49,20,29,0.0 +21787,3,10,46,0.0 +21787,21,10,21,0.0 +21787,9,97,29,0.0 +21787,31,12.5,34,0.0 +21787,4,22,10,0.0 +21787,28,45.6,14,0.0 +21787,18,62.5,45,0.0 +21787,63,43.9,10,0.0 +21787,34,14,20,0.0 +21787,51,53,22,0.0 +21787,35,18,33,0.0 +21787,66,17,12,0.0 +21787,19,9.2,15,0.0 +21787,62,49.3,11,0.0 +21787,29,123.79,13,0.0 +21787,16,17.45,48,0.0 +21787,41,9.65,14,0.0 +21787,47,9.5,33,0.0 +21787,70,15,27,0.0 +21787,27,43.9,49,0.0 +21787,72,34.8,30,0.0 +21787,61,28.5,3,0.0 +21787,12,38,32,0.0 +21787,56,38,37,0.0 +21787,67,14,43,0.0 +21787,37,26,50,0.0 +21787,46,12,21,0.0 +21787,23,9,1,0.0 +21787,43,46,44,0.0 +21787,20,81,37,0.0 +21787,30,25.89,45,0.0 +21787,32,32,39,0.0 +21787,14,23.25,1,0.0 +21787,59,55,5,0.0 +21787,58,13.25,15,0.0 +21787,77,13,28,0.0 +21787,68,12.5,27,0.0 +21787,64,33.25,2,0.0 +21787,36,19,32,0.0 +21787,13,6,32,0.0 +21787,24,4.5,31,0.0 +21787,75,7.75,35,0.0 +21787,26,31.23,2,0.0 +21787,17,39,17,0.0 +21787,50,16.25,12,0.0 +21787,42,14,24,0.0 +21787,73,15,28,0.0 +21787,15,15.5,41,0.0 +21787,65,21.05,8,0.0 +21787,57,19.5,31,0.0 +21787,60,34,7,0.0 +21787,7,30,2,0.0 +21787,74,10,4,0.0 +21787,25,14,38,0.0 +21787,2,19,9,0.0 +21787,6,25,3,0.0 +21787,49,20,20,0.0 +21787,38,263.5,25,0.0 +21787,69,36,41,0.0 +21787,5,21.35,29,0.0 +21787,71,21.5,44,0.0 +21787,54,7.45,12,0.0 +21787,1,18,5,0.0 +21787,33,2.5,27,0.0 +21787,11,21,35,0.0 +21787,76,18,11,0.0 +21787,53,32.8,28,0.0 +21787,55,24,47,0.0 +21787,52,7,18,0.0 +21788,41,9.65,15,0.0 +21788,34,14,49,0.0 +21788,9,97,18,0.0 +21788,71,21.5,10,0.0 +21788,1,18,8,0.0 +21789,31,12.5,29,0.0 +21789,55,24,41,0.0 +21789,52,7,19,0.0 +21789,9,97,46,0.0 +21789,37,26,14,0.0 +21789,51,53,28,0.0 +21789,60,34,42,0.0 +21789,34,14,1,0.0 +21789,72,34.8,38,0.0 +21789,27,43.9,49,0.0 +21789,35,18,29,0.0 +21789,61,28.5,9,0.0 +21789,44,19.45,49,0.0 +21789,39,18,2,0.0 +21789,66,17,36,0.0 +21789,22,21,42,0.0 +21789,7,30,50,0.0 +21789,49,20,41,0.0 +21789,25,14,29,0.0 +21789,46,12,4,0.0 +21789,28,45.6,20,0.0 +21789,41,9.65,33,0.0 +21789,10,31,48,0.0 +21789,3,10,2,0.0 +21789,11,21,40,0.0 +21789,76,18,27,0.0 +21789,16,17.45,9,0.0 +21789,77,13,21,0.0 +21789,53,32.8,2,0.0 +21789,20,81,43,0.0 +21789,1,18,13,0.0 +21789,47,9.5,5,0.0 +21789,62,49.3,8,0.0 +21789,63,43.9,50,0.0 +21789,48,12.75,24,0.0 +21789,24,4.5,25,0.0 +21789,32,32,10,0.0 +21789,6,25,50,0.0 +21789,69,36,6,0.0 +21789,13,6,23,0.0 +21789,64,33.25,2,0.0 +21789,67,14,32,0.0 +21789,73,15,47,0.0 +21789,8,40,49,0.0 +21789,23,9,31,0.0 +21789,12,38,45,0.0 +21789,42,14,47,0.0 +21789,17,39,40,0.0 +21789,14,23.25,44,0.0 +21789,74,10,29,0.0 +21789,26,31.23,24,0.0 +21789,71,21.5,32,0.0 +21789,50,16.25,14,0.0 +21789,33,2.5,4,0.0 +21789,18,62.5,13,0.0 +21789,68,12.5,13,0.0 +21789,56,38,6,0.0 +21789,57,19.5,5,0.0 +21789,29,123.79,16,0.0 +21789,15,15.5,30,0.0 +21789,43,46,35,0.0 +21789,19,9.2,45,0.0 +21789,75,7.75,45,0.0 +21789,54,7.45,16,0.0 +21789,59,55,32,0.0 +21789,70,15,39,0.0 +21789,4,22,41,0.0 +21789,21,10,4,0.0 +21789,65,21.05,22,0.0 +21789,2,19,29,0.0 +21789,38,263.5,38,0.0 +21789,5,21.35,19,0.0 +21789,36,19,50,0.0 +21789,58,13.25,44,0.0 +21789,30,25.89,30,0.0 +21790,31,12.5,9,0.0 +21790,37,26,32,0.0 +21790,69,36,21,0.0 +21790,30,25.89,4,0.0 +21790,8,40,33,0.0 +21790,76,18,1,0.0 +21790,23,9,8,0.0 +21790,7,30,45,0.0 +21790,61,28.5,23,0.0 +21790,67,14,26,0.0 +21790,47,9.5,4,0.0 +21790,36,19,3,0.0 +21790,21,10,10,0.0 +21790,42,14,30,0.0 +21790,50,16.25,19,0.0 +21790,70,15,47,0.0 +21790,54,7.45,5,0.0 +21790,28,45.6,32,0.0 +21790,10,31,16,0.0 +21790,44,19.45,48,0.0 +21790,34,14,5,0.0 +21790,25,14,14,0.0 +21790,68,12.5,13,0.0 +21790,22,21,5,0.0 +21790,3,10,7,0.0 +21790,46,12,43,0.0 +21790,59,55,43,0.0 +21790,55,24,44,0.0 +21790,77,13,1,0.0 +21790,56,38,5,0.0 +21790,16,17.45,15,0.0 +21790,39,18,2,0.0 +21790,66,17,8,0.0 +21790,43,46,13,0.0 +21790,33,2.5,50,0.0 +21790,74,10,42,0.0 +21790,15,15.5,43,0.0 +21790,11,21,25,0.0 +21790,40,18.4,6,0.0 +21790,9,97,25,0.0 +21790,57,19.5,33,0.0 +21790,64,33.25,9,0.0 +21790,29,123.79,3,0.0 +21790,2,19,42,0.0 +21790,4,22,31,0.0 +21790,6,25,6,0.0 +21790,49,20,15,0.0 +21790,51,53,16,0.0 +21790,65,21.05,32,0.0 +21790,27,43.9,50,0.0 +21790,26,31.23,40,0.0 +21790,13,6,36,0.0 +21790,60,34,25,0.0 +21790,5,21.35,5,0.0 +21790,35,18,8,0.0 +21790,41,9.65,48,0.0 +21790,63,43.9,22,0.0 +21790,62,49.3,17,0.0 +21790,20,81,24,0.0 +21790,12,38,10,0.0 +21790,19,9.2,24,0.0 +21790,73,15,2,0.0 +21790,71,21.5,7,0.0 +21790,24,4.5,23,0.0 +21790,75,7.75,27,0.0 +21790,58,13.25,42,0.0 +21790,17,39,7,0.0 +21791,53,32.8,30,0.0 +21791,45,9.5,30,0.0 +21791,36,19,17,0.0 +21791,3,10,19,0.0 +21791,2,19,14,0.0 +21791,68,12.5,23,0.0 +21791,41,9.65,46,0.0 +21791,46,12,50,0.0 +21791,48,12.75,25,0.0 +21791,39,18,11,0.0 +21791,49,20,25,0.0 +21791,74,10,41,0.0 +21791,16,17.45,28,0.0 +21791,72,34.8,13,0.0 +21791,75,7.75,26,0.0 +21791,15,15.5,39,0.0 +21791,51,53,27,0.0 +21791,67,14,41,0.0 +21791,26,31.23,11,0.0 +21791,59,55,49,0.0 +21791,63,43.9,44,0.0 +21791,55,24,6,0.0 +21791,35,18,40,0.0 +21791,10,31,37,0.0 +21791,13,6,33,0.0 +21791,7,30,3,0.0 +21791,9,97,5,0.0 +21791,40,18.4,43,0.0 +21791,38,263.5,28,0.0 +21791,57,19.5,46,0.0 +21791,27,43.9,6,0.0 +21791,28,45.6,44,0.0 +21791,62,49.3,34,0.0 +21791,73,15,50,0.0 +21791,77,13,22,0.0 +21791,66,17,41,0.0 +21791,47,9.5,22,0.0 +21791,54,7.45,46,0.0 +21791,50,16.25,17,0.0 +21791,12,38,30,0.0 +21791,11,21,44,0.0 +21791,19,9.2,6,0.0 +21791,34,14,40,0.0 +21791,14,23.25,8,0.0 +21791,1,18,47,0.0 +21791,5,21.35,5,0.0 +21791,30,25.89,6,0.0 +21791,21,10,30,0.0 +21791,61,28.5,30,0.0 +21791,37,26,39,0.0 +21791,25,14,37,0.0 +21791,76,18,8,0.0 +21791,31,12.5,4,0.0 +21791,56,38,41,0.0 +21792,2,19,48,0.0 +21792,48,12.75,14,0.0 +21792,20,81,43,0.0 +21792,46,12,15,0.0 +21792,30,25.89,12,0.0 +21792,31,12.5,19,0.0 +21792,10,31,41,0.0 +21792,11,21,14,0.0 +21792,9,97,6,0.0 +21792,76,18,8,0.0 +21792,61,28.5,26,0.0 +21792,29,123.79,37,0.0 +21792,77,13,50,0.0 +21792,6,25,30,0.0 +21792,55,24,22,0.0 +21792,41,9.65,34,0.0 +21792,40,18.4,45,0.0 +21792,15,15.5,3,0.0 +21792,56,38,31,0.0 +21792,7,30,5,0.0 +21792,58,13.25,5,0.0 +21792,63,43.9,29,0.0 +21792,44,19.45,13,0.0 +21792,22,21,31,0.0 +21792,25,14,27,0.0 +21793,29,123.79,36,0.0 +21793,11,21,34,0.0 +21793,30,25.89,10,0.0 +21793,15,15.5,24,0.0 +21793,8,40,17,0.0 +21793,74,10,7,0.0 +21793,70,15,2,0.0 +21793,5,21.35,32,0.0 +21793,22,21,22,0.0 +21793,4,22,25,0.0 +21793,19,9.2,39,0.0 +21793,71,21.5,27,0.0 +21793,54,7.45,43,0.0 +21793,38,263.5,12,0.0 +21793,9,97,38,0.0 +21793,53,32.8,6,0.0 +21793,24,4.5,50,0.0 +21793,12,38,15,0.0 +21793,32,32,34,0.0 +21793,23,9,31,0.0 +21793,33,2.5,10,0.0 +21793,49,20,23,0.0 +21793,1,18,14,0.0 +21793,67,14,41,0.0 +21793,37,26,48,0.0 +21793,56,38,16,0.0 +21793,35,18,38,0.0 +21793,2,19,47,0.0 +21793,40,18.4,41,0.0 +21793,27,43.9,33,0.0 +21793,60,34,35,0.0 +21793,64,33.25,47,0.0 +21793,52,7,38,0.0 +21794,60,34,41,0.0 +21794,38,263.5,31,0.0 +21794,67,14,7,0.0 +21794,9,97,22,0.0 +21794,22,21,47,0.0 +21794,36,19,29,0.0 +21794,54,7.45,20,0.0 +21794,17,39,14,0.0 +21794,46,12,43,0.0 +21794,43,46,24,0.0 +21794,42,14,32,0.0 +21794,11,21,32,0.0 +21794,66,17,11,0.0 +21794,20,81,32,0.0 +21794,3,10,12,0.0 +21794,62,49.3,20,0.0 +21794,47,9.5,11,0.0 +21794,77,13,36,0.0 +21794,27,43.9,48,0.0 +21794,68,12.5,17,0.0 +21794,44,19.45,21,0.0 +21794,19,9.2,22,0.0 +21794,64,33.25,1,0.0 +21794,34,14,23,0.0 +21794,24,4.5,23,0.0 +21794,2,19,15,0.0 +21794,56,38,34,0.0 +21794,73,15,6,0.0 +21794,25,14,39,0.0 +21794,59,55,25,0.0 +21794,53,32.8,22,0.0 +21794,58,13.25,47,0.0 +21794,33,2.5,10,0.0 +21794,40,18.4,38,0.0 +21794,75,7.75,3,0.0 +21794,72,34.8,27,0.0 +21794,12,38,18,0.0 +21794,65,21.05,40,0.0 +21794,32,32,25,0.0 +21794,30,25.89,25,0.0 +21794,74,10,32,0.0 +21794,6,25,45,0.0 +21794,28,45.6,15,0.0 +21794,31,12.5,28,0.0 +21794,69,36,34,0.0 +21794,16,17.45,7,0.0 +21794,8,40,5,0.0 +21794,49,20,20,0.0 +21794,41,9.65,14,0.0 +21794,70,15,8,0.0 +21794,51,53,5,0.0 +21794,39,18,3,0.0 +21794,18,62.5,13,0.0 +21794,45,9.5,24,0.0 +21794,4,22,24,0.0 +21794,21,10,30,0.0 +21794,14,23.25,18,0.0 +21794,55,24,50,0.0 +21794,23,9,50,0.0 +21794,29,123.79,7,0.0 +21794,7,30,2,0.0 +21794,61,28.5,44,0.0 +21794,13,6,9,0.0 +21794,1,18,42,0.0 +21794,10,31,35,0.0 +21795,37,26,22,0.0 +21795,9,97,20,0.0 +21795,27,43.9,33,0.0 +21795,25,14,50,0.0 +21796,18,62.5,6,0.0 +21796,27,43.9,37,0.0 +21796,31,12.5,13,0.0 +21796,71,21.5,5,0.0 +21796,72,34.8,5,0.0 +21796,44,19.45,50,0.0 +21796,70,15,42,0.0 +21796,56,38,30,0.0 +21797,55,24,47,0.0 +21797,41,9.65,4,0.0 +21797,77,13,38,0.0 +21797,38,263.5,11,0.0 +21797,70,15,37,0.0 +21797,67,14,40,0.0 +21797,71,21.5,17,0.0 +21797,52,7,43,0.0 +21797,51,53,24,0.0 +21797,36,19,31,0.0 +21797,50,16.25,48,0.0 +21797,59,55,15,0.0 +21797,25,14,15,0.0 +21797,5,21.35,36,0.0 +21797,49,20,21,0.0 +21797,60,34,5,0.0 +21797,22,21,41,0.0 +21797,1,18,24,0.0 +21797,76,18,34,0.0 +21797,58,13.25,5,0.0 +21797,42,14,39,0.0 +21797,32,32,11,0.0 +21798,36,19,43,0.0 +21798,6,25,19,0.0 +21798,17,39,47,0.0 +21798,19,9.2,10,0.0 +21798,62,49.3,34,0.0 +21798,23,9,18,0.0 +21798,44,19.45,4,0.0 +21798,40,18.4,45,0.0 +21798,76,18,5,0.0 +21798,52,7,29,0.0 +21798,21,10,13,0.0 +21798,54,7.45,17,0.0 +21798,66,17,18,0.0 +21798,8,40,20,0.0 +21798,50,16.25,34,0.0 +21798,30,25.89,20,0.0 +21798,10,31,7,0.0 +21798,39,18,39,0.0 +21798,26,31.23,31,0.0 +21798,18,62.5,42,0.0 +21798,46,12,27,0.0 +21798,74,10,22,0.0 +21798,28,45.6,19,0.0 +21798,31,12.5,13,0.0 +21798,75,7.75,2,0.0 +21798,7,30,10,0.0 +21798,77,13,3,0.0 +21798,47,9.5,4,0.0 +21798,64,33.25,12,0.0 +21798,71,21.5,15,0.0 +21799,66,17,23,0.0 +21799,28,45.6,22,0.0 +21799,18,62.5,16,0.0 +21799,76,18,15,0.0 +21799,14,23.25,31,0.0 +21799,29,123.79,20,0.0 +21799,13,6,47,0.0 +21799,74,10,6,0.0 +21799,43,46,37,0.0 +21799,26,31.23,26,0.0 +21799,25,14,27,0.0 +21799,15,15.5,20,0.0 +21799,3,10,19,0.0 +21799,6,25,26,0.0 +21799,31,12.5,10,0.0 +21799,52,7,49,0.0 +21799,1,18,6,0.0 +21799,60,34,35,0.0 +21799,34,14,46,0.0 +21799,33,2.5,37,0.0 +21799,30,25.89,49,0.0 +21799,48,12.75,20,0.0 +21799,37,26,46,0.0 +21799,70,15,33,0.0 +21799,65,21.05,19,0.0 +21799,63,43.9,18,0.0 +21799,32,32,40,0.0 +21799,54,7.45,42,0.0 +21799,73,15,1,0.0 +21799,35,18,41,0.0 +21799,56,38,2,0.0 +21799,62,49.3,12,0.0 +21799,57,19.5,22,0.0 +21799,67,14,12,0.0 +21799,17,39,28,0.0 +21799,55,24,27,0.0 +21799,75,7.75,16,0.0 +21799,10,31,9,0.0 +21799,22,21,35,0.0 +21799,19,9.2,31,0.0 +21799,51,53,21,0.0 +21799,27,43.9,2,0.0 +21799,44,19.45,33,0.0 +21799,77,13,48,0.0 +21799,49,20,37,0.0 +21799,58,13.25,11,0.0 +21799,71,21.5,47,0.0 +21799,72,34.8,3,0.0 +21799,47,9.5,26,0.0 +21799,24,4.5,6,0.0 +21799,7,30,3,0.0 +21799,16,17.45,13,0.0 +21799,2,19,45,0.0 +21799,8,40,5,0.0 +21799,9,97,16,0.0 +21799,42,14,38,0.0 +21799,59,55,35,0.0 +21799,64,33.25,39,0.0 +21799,68,12.5,47,0.0 +21799,21,10,2,0.0 +21799,12,38,39,0.0 +21799,36,19,11,0.0 +21799,5,21.35,8,0.0 +21799,38,263.5,24,0.0 +21799,20,81,22,0.0 +21799,45,9.5,25,0.0 +21799,41,9.65,2,0.0 +21799,11,21,12,0.0 +21799,4,22,10,0.0 +21799,61,28.5,21,0.0 +21799,53,32.8,48,0.0 +21799,50,16.25,9,0.0 +21799,40,18.4,39,0.0 +21799,23,9,7,0.0 +21799,39,18,29,0.0 +21799,69,36,6,0.0 +21799,46,12,35,0.0 +21800,58,13.25,14,0.0 +21800,37,26,18,0.0 +21800,7,30,6,0.0 +21800,23,9,13,0.0 +21800,41,9.65,38,0.0 +21800,6,25,19,0.0 +21800,62,49.3,44,0.0 +21800,70,15,3,0.0 +21800,2,19,9,0.0 +21800,72,34.8,23,0.0 +21800,36,19,18,0.0 +21800,31,12.5,23,0.0 +21800,14,23.25,22,0.0 +21800,64,33.25,25,0.0 +21800,18,62.5,34,0.0 +21800,53,32.8,35,0.0 +21800,42,14,13,0.0 +21800,57,19.5,31,0.0 +21800,12,38,39,0.0 +21800,1,18,2,0.0 +21800,54,7.45,29,0.0 +21800,39,18,44,0.0 +21800,40,18.4,5,0.0 +21800,44,19.45,34,0.0 +21800,45,9.5,47,0.0 +21800,66,17,1,0.0 +21800,16,17.45,3,0.0 +21800,19,9.2,48,0.0 +21800,21,10,21,0.0 +21800,71,21.5,4,0.0 +21800,56,38,33,0.0 +21800,52,7,27,0.0 +21800,48,12.75,42,0.0 +21800,34,14,21,0.0 +21800,47,9.5,18,0.0 +21800,49,20,44,0.0 +21800,60,34,50,0.0 +21800,11,21,13,0.0 +21800,46,12,6,0.0 +21800,10,31,48,0.0 +21800,24,4.5,29,0.0 +21800,15,15.5,25,0.0 +21800,61,28.5,26,0.0 +21800,22,21,12,0.0 +21800,50,16.25,49,0.0 +21800,59,55,18,0.0 +21800,3,10,49,0.0 +21800,5,21.35,15,0.0 +21800,68,12.5,46,0.0 +21800,67,14,11,0.0 +21800,63,43.9,47,0.0 +21800,29,123.79,4,0.0 +21800,55,24,33,0.0 +21800,77,13,4,0.0 +21800,51,53,35,0.0 +21800,65,21.05,6,0.0 +21800,69,36,46,0.0 +21800,30,25.89,20,0.0 +21800,25,14,8,0.0 +21800,9,97,41,0.0 +21800,32,32,33,0.0 +21800,17,39,36,0.0 +21800,43,46,24,0.0 +21800,4,22,37,0.0 +21800,13,6,22,0.0 +21800,75,7.75,12,0.0 +21800,74,10,34,0.0 +21800,27,43.9,46,0.0 +21800,28,45.6,6,0.0 +21800,38,263.5,33,0.0 +21800,26,31.23,5,0.0 +21801,56,38,11,0.0 +21801,3,10,48,0.0 +21801,17,39,30,0.0 +21801,40,18.4,24,0.0 +21801,67,14,42,0.0 +21801,22,21,13,0.0 +21801,77,13,40,0.0 +21801,14,23.25,28,0.0 +21801,73,15,21,0.0 +21801,39,18,46,0.0 +21801,70,15,37,0.0 +21802,63,43.9,14,0.0 +21802,26,31.23,46,0.0 +21802,52,7,23,0.0 +21802,45,9.5,18,0.0 +21802,13,6,40,0.0 +21802,41,9.65,36,0.0 +21802,53,32.8,35,0.0 +21802,71,21.5,48,0.0 +21802,60,34,6,0.0 +21802,24,4.5,45,0.0 +21802,29,123.79,7,0.0 +21802,7,30,13,0.0 +21802,76,18,29,0.0 +21802,8,40,7,0.0 +21802,19,9.2,46,0.0 +21802,57,19.5,38,0.0 +21802,59,55,1,0.0 +21802,62,49.3,20,0.0 +21802,18,62.5,47,0.0 +21802,70,15,37,0.0 +21802,12,38,41,0.0 +21802,31,12.5,30,0.0 +21802,50,16.25,35,0.0 +21802,20,81,29,0.0 +21802,67,14,31,0.0 +21802,28,45.6,4,0.0 +21802,10,31,30,0.0 +21802,73,15,42,0.0 +21802,1,18,6,0.0 +21802,75,7.75,1,0.0 +21802,40,18.4,28,0.0 +21802,39,18,1,0.0 +21802,22,21,8,0.0 +21802,51,53,38,0.0 +21802,32,32,17,0.0 +21802,65,21.05,18,0.0 +21802,69,36,26,0.0 +21802,23,9,39,0.0 +21802,5,21.35,18,0.0 +21802,77,13,42,0.0 +21802,49,20,40,0.0 +21802,72,34.8,2,0.0 +21803,67,14,8,0.0 +21803,68,12.5,36,0.0 +21803,54,7.45,46,0.0 +21803,34,14,31,0.0 +21803,73,15,7,0.0 +21803,65,21.05,28,0.0 +21803,33,2.5,18,0.0 +21803,25,14,20,0.0 +21803,53,32.8,35,0.0 +21803,62,49.3,16,0.0 +21803,48,12.75,34,0.0 +21803,3,10,31,0.0 +21803,12,38,9,0.0 +21803,70,15,35,0.0 +21803,17,39,40,0.0 +21803,50,16.25,6,0.0 +21803,14,23.25,47,0.0 +21803,24,4.5,47,0.0 +21803,55,24,21,0.0 +21803,28,45.6,28,0.0 +21803,58,13.25,3,0.0 +21803,40,18.4,16,0.0 +21803,35,18,42,0.0 +21803,60,34,26,0.0 +21803,29,123.79,14,0.0 +21803,19,9.2,2,0.0 +21803,76,18,6,0.0 +21803,45,9.5,26,0.0 +21803,4,22,48,0.0 +21803,52,7,50,0.0 +21803,72,34.8,8,0.0 +21803,74,10,17,0.0 +21803,8,40,24,0.0 +21803,59,55,25,0.0 +21803,56,38,13,0.0 +21803,38,263.5,23,0.0 +21803,37,26,50,0.0 +21803,66,17,34,0.0 +21803,31,12.5,15,0.0 +21803,13,6,10,0.0 +21803,57,19.5,7,0.0 +21803,7,30,19,0.0 +21803,75,7.75,41,0.0 +21803,36,19,5,0.0 +21803,27,43.9,48,0.0 +21803,61,28.5,31,0.0 +21803,32,32,11,0.0 +21803,26,31.23,9,0.0 +21803,71,21.5,7,0.0 +21803,30,25.89,35,0.0 +21804,9,97,34,0.0 +21804,43,46,41,0.0 +21804,15,15.5,2,0.0 +21804,11,21,41,0.0 +21804,20,81,6,0.0 +21804,21,10,17,0.0 +21804,23,9,1,0.0 +21804,67,14,11,0.0 +21804,29,123.79,38,0.0 +21804,69,36,12,0.0 +21804,75,7.75,29,0.0 +21804,72,34.8,26,0.0 +21804,34,14,9,0.0 +21804,46,12,36,0.0 +21804,56,38,42,0.0 +21804,17,39,32,0.0 +21804,60,34,34,0.0 +21804,19,9.2,5,0.0 +21804,45,9.5,34,0.0 +21804,58,13.25,9,0.0 +21804,7,30,42,0.0 +21804,24,4.5,39,0.0 +21804,71,21.5,20,0.0 +21804,31,12.5,31,0.0 +21804,70,15,35,0.0 +21804,59,55,31,0.0 +21804,49,20,37,0.0 +21804,76,18,15,0.0 +21804,12,38,16,0.0 +21804,50,16.25,8,0.0 +21804,10,31,4,0.0 +21804,35,18,36,0.0 +21804,22,21,1,0.0 +21804,57,19.5,17,0.0 +21804,39,18,35,0.0 +21804,26,31.23,6,0.0 +21804,41,9.65,49,0.0 +21804,37,26,10,0.0 +21804,52,7,40,0.0 +21804,14,23.25,45,0.0 +21804,32,32,42,0.0 +21804,2,19,44,0.0 +21804,66,17,33,0.0 +21804,44,19.45,44,0.0 +21804,3,10,20,0.0 +21804,47,9.5,15,0.0 +21804,36,19,8,0.0 +21804,42,14,31,0.0 +21804,74,10,23,0.0 +21804,27,43.9,28,0.0 +21804,55,24,21,0.0 +21804,54,7.45,3,0.0 +21804,77,13,7,0.0 +21804,25,14,27,0.0 +21804,63,43.9,41,0.0 +21804,40,18.4,7,0.0 +21804,8,40,12,0.0 +21804,68,12.5,4,0.0 +21804,13,6,16,0.0 +21804,62,49.3,26,0.0 +21804,73,15,48,0.0 +21804,16,17.45,47,0.0 +21804,33,2.5,16,0.0 +21804,65,21.05,17,0.0 +21804,53,32.8,1,0.0 +21804,61,28.5,47,0.0 +21804,30,25.89,30,0.0 +21804,64,33.25,14,0.0 +21804,38,263.5,3,0.0 +21804,6,25,3,0.0 +21804,51,53,25,0.0 +21805,4,22,43,0.0 +21805,38,263.5,6,0.0 +21805,7,30,9,0.0 +21805,14,23.25,41,0.0 +21805,32,32,1,0.0 +21805,23,9,21,0.0 +21805,28,45.6,37,0.0 +21805,12,38,39,0.0 +21805,64,33.25,5,0.0 +21805,18,62.5,50,0.0 +21805,49,20,18,0.0 +21805,56,38,35,0.0 +21805,6,25,19,0.0 +21805,63,43.9,19,0.0 +21805,65,21.05,45,0.0 +21805,76,18,3,0.0 +21805,30,25.89,4,0.0 +21805,59,55,23,0.0 +21805,37,26,19,0.0 +21805,66,17,12,0.0 +21805,53,32.8,34,0.0 +21805,8,40,13,0.0 +21805,22,21,1,0.0 +21805,20,81,37,0.0 +21805,57,19.5,39,0.0 +21805,60,34,27,0.0 +21805,9,97,44,0.0 +21805,31,12.5,14,0.0 +21805,33,2.5,26,0.0 +21805,69,36,44,0.0 +21805,25,14,40,0.0 +21805,52,7,34,0.0 +21805,15,15.5,32,0.0 +21805,29,123.79,32,0.0 +21805,68,12.5,4,0.0 +21805,55,24,8,0.0 +21805,13,6,20,0.0 +21805,54,7.45,13,0.0 +21805,3,10,5,0.0 +21805,10,31,49,0.0 +21805,74,10,40,0.0 +21805,71,21.5,7,0.0 +21805,51,53,39,0.0 +21805,70,15,48,0.0 +21805,58,13.25,21,0.0 +21805,26,31.23,6,0.0 +21805,75,7.75,40,0.0 +21806,1,18,26,0.0 +21806,35,18,41,0.0 +21806,57,19.5,28,0.0 +21806,36,19,44,0.0 +21806,54,7.45,19,0.0 +21806,48,12.75,37,0.0 +21806,34,14,28,0.0 +21806,17,39,11,0.0 +21806,10,31,2,0.0 +21806,58,13.25,27,0.0 +21806,26,31.23,10,0.0 +21806,31,12.5,27,0.0 +21806,70,15,14,0.0 +21806,12,38,44,0.0 +21806,62,49.3,45,0.0 +21806,75,7.75,40,0.0 +21806,24,4.5,15,0.0 +21806,7,30,40,0.0 +21806,72,34.8,12,0.0 +21806,23,9,45,0.0 +21806,15,15.5,33,0.0 +21806,74,10,42,0.0 +21806,69,36,45,0.0 +21806,73,15,49,0.0 +21806,11,21,42,0.0 +21806,49,20,21,0.0 +21806,61,28.5,30,0.0 +21806,53,32.8,35,0.0 +21806,56,38,33,0.0 +21806,9,97,16,0.0 +21806,59,55,25,0.0 +21806,4,22,11,0.0 +21806,3,10,48,0.0 +21806,66,17,1,0.0 +21806,55,24,18,0.0 +21806,19,9.2,14,0.0 +21806,51,53,4,0.0 +21806,65,21.05,22,0.0 +21806,8,40,35,0.0 +21806,22,21,36,0.0 +21806,52,7,40,0.0 +21806,60,34,28,0.0 +21806,45,9.5,38,0.0 +21806,6,25,18,0.0 +21806,14,23.25,4,0.0 +21806,43,46,24,0.0 +21806,18,62.5,45,0.0 +21806,41,9.65,1,0.0 +21806,38,263.5,14,0.0 +21807,74,10,13,0.0 +21807,37,26,49,0.0 +21807,50,16.25,38,0.0 +21807,52,7,13,0.0 +21807,28,45.6,35,0.0 +21807,3,10,49,0.0 +21807,24,4.5,18,0.0 +21807,29,123.79,23,0.0 +21807,66,17,4,0.0 +21807,65,21.05,33,0.0 +21807,54,7.45,29,0.0 +21807,77,13,37,0.0 +21807,70,15,42,0.0 +21807,46,12,32,0.0 +21807,30,25.89,24,0.0 +21807,51,53,16,0.0 +21807,36,19,27,0.0 +21807,49,20,19,0.0 +21807,73,15,33,0.0 +21807,38,263.5,36,0.0 +21807,26,31.23,18,0.0 +21807,69,36,25,0.0 +21807,10,31,49,0.0 +21807,76,18,31,0.0 +21807,2,19,22,0.0 +21807,44,19.45,34,0.0 +21807,27,43.9,5,0.0 +21807,59,55,6,0.0 +21807,21,10,35,0.0 +21807,19,9.2,1,0.0 +21807,23,9,23,0.0 +21807,43,46,10,0.0 +21807,15,15.5,18,0.0 +21807,33,2.5,32,0.0 +21807,62,49.3,35,0.0 +21807,12,38,15,0.0 +21807,25,14,20,0.0 +21807,63,43.9,50,0.0 +21808,8,40,46,0.0 +21808,63,43.9,48,0.0 +21808,76,18,32,0.0 +21808,47,9.5,19,0.0 +21808,4,22,16,0.0 +21808,74,10,28,0.0 +21808,36,19,14,0.0 +21808,69,36,47,0.0 +21808,65,21.05,5,0.0 +21808,21,10,25,0.0 +21808,40,18.4,42,0.0 +21808,61,28.5,43,0.0 +21808,46,12,39,0.0 +21808,25,14,44,0.0 +21808,33,2.5,40,0.0 +21808,48,12.75,11,0.0 +21808,70,15,28,0.0 +21808,35,18,12,0.0 +21808,3,10,1,0.0 +21808,39,18,26,0.0 +21809,14,23.25,26,0.0 +21809,23,9,3,0.0 +21809,29,123.79,45,0.0 +21809,10,31,37,0.0 +21809,7,30,10,0.0 +21809,12,38,29,0.0 +21809,9,97,1,0.0 +21809,44,19.45,37,0.0 +21809,60,34,28,0.0 +21809,46,12,17,0.0 +21809,61,28.5,27,0.0 +21809,58,13.25,34,0.0 +21809,24,4.5,38,0.0 +21809,72,34.8,3,0.0 +21809,30,25.89,21,0.0 +21809,57,19.5,47,0.0 +21809,66,17,50,0.0 +21809,6,25,24,0.0 +21809,69,36,16,0.0 +21809,67,14,40,0.0 +21809,55,24,5,0.0 +21809,52,7,28,0.0 +21809,28,45.6,33,0.0 +21809,34,14,22,0.0 +21809,2,19,44,0.0 +21810,50,16.25,19,0.0 +21810,27,43.9,42,0.0 +21810,17,39,18,0.0 +21810,15,15.5,35,0.0 +21810,31,12.5,10,0.0 +21810,20,81,5,0.0 +21810,52,7,27,0.0 +21810,18,62.5,43,0.0 +21810,10,31,31,0.0 +21810,46,12,35,0.0 +21810,3,10,34,0.0 +21810,76,18,24,0.0 +21810,77,13,39,0.0 +21810,71,21.5,29,0.0 +21810,8,40,8,0.0 +21810,26,31.23,37,0.0 +21810,60,34,30,0.0 +21810,66,17,11,0.0 +21810,33,2.5,33,0.0 +21810,41,9.65,42,0.0 +21810,62,49.3,39,0.0 +21810,37,26,9,0.0 +21811,37,26,37,0.0 +21811,26,31.23,13,0.0 +21811,62,49.3,48,0.0 +21811,43,46,3,0.0 +21811,56,38,17,0.0 +21811,4,22,36,0.0 +21811,14,23.25,23,0.0 +21811,5,21.35,33,0.0 +21811,7,30,48,0.0 +21811,66,17,22,0.0 +21811,55,24,40,0.0 +21811,70,15,44,0.0 +21811,47,9.5,8,0.0 +21811,65,21.05,40,0.0 +21811,27,43.9,6,0.0 +21811,24,4.5,25,0.0 +21811,18,62.5,15,0.0 +21811,72,34.8,40,0.0 +21811,17,39,48,0.0 +21811,67,14,33,0.0 +21811,54,7.45,37,0.0 +21811,11,21,38,0.0 +21811,29,123.79,6,0.0 +21811,60,34,28,0.0 +21811,74,10,7,0.0 +21811,57,19.5,32,0.0 +21811,23,9,5,0.0 +21811,48,12.75,17,0.0 +21811,75,7.75,37,0.0 +21811,3,10,43,0.0 +21811,58,13.25,50,0.0 +21811,71,21.5,4,0.0 +21811,6,25,31,0.0 +21811,15,15.5,41,0.0 +21811,61,28.5,50,0.0 +21811,19,9.2,47,0.0 +21811,25,14,18,0.0 +21811,12,38,26,0.0 +21811,34,14,12,0.0 +21811,30,25.89,4,0.0 +21811,32,32,38,0.0 +21811,59,55,23,0.0 +21811,76,18,29,0.0 +21811,52,7,41,0.0 +21811,50,16.25,22,0.0 +21811,9,97,18,0.0 +21811,31,12.5,40,0.0 +21811,22,21,47,0.0 +21811,39,18,8,0.0 +21811,36,19,16,0.0 +21811,13,6,49,0.0 +21811,53,32.8,39,0.0 +21811,2,19,21,0.0 +21811,64,33.25,2,0.0 +21811,28,45.6,40,0.0 +21811,20,81,44,0.0 +21811,77,13,40,0.0 +21811,16,17.45,31,0.0 +21811,35,18,12,0.0 +21811,1,18,31,0.0 +21811,38,263.5,28,0.0 +21811,46,12,7,0.0 +21811,33,2.5,45,0.0 +21811,49,20,16,0.0 +21811,63,43.9,37,0.0 +21812,32,32,5,0.0 +21812,35,18,3,0.0 +21812,59,55,31,0.0 +21812,13,6,31,0.0 +21812,47,9.5,5,0.0 +21812,60,34,30,0.0 +21812,14,23.25,47,0.0 +21812,46,12,45,0.0 +21812,43,46,42,0.0 +21812,17,39,5,0.0 +21812,52,7,38,0.0 +21812,36,19,15,0.0 +21812,8,40,24,0.0 +21812,24,4.5,47,0.0 +21812,67,14,11,0.0 +21813,64,33.25,23,0.0 +21813,77,13,1,0.0 +21813,42,14,33,0.0 +21813,1,18,1,0.0 +21813,14,23.25,37,0.0 +21813,8,40,24,0.0 +21813,63,43.9,32,0.0 +21813,44,19.45,1,0.0 +21813,18,62.5,7,0.0 +21813,23,9,26,0.0 +21813,39,18,43,0.0 +21813,24,4.5,36,0.0 +21813,32,32,44,0.0 +21813,15,15.5,48,0.0 +21813,52,7,35,0.0 +21813,62,49.3,4,0.0 +21813,12,38,7,0.0 +21813,69,36,37,0.0 +21813,36,19,5,0.0 +21813,33,2.5,38,0.0 +21813,76,18,19,0.0 +21813,20,81,17,0.0 +21813,46,12,24,0.0 +21813,30,25.89,37,0.0 +21813,72,34.8,43,0.0 +21813,60,34,49,0.0 +21813,27,43.9,8,0.0 +21813,10,31,13,0.0 +21813,58,13.25,48,0.0 +21813,53,32.8,28,0.0 +21813,75,7.75,5,0.0 +21813,51,53,34,0.0 +21813,29,123.79,31,0.0 +21813,26,31.23,1,0.0 +21813,16,17.45,11,0.0 +21813,13,6,38,0.0 +21813,70,15,44,0.0 +21813,2,19,8,0.0 +21813,5,21.35,13,0.0 +21813,7,30,14,0.0 +21813,31,12.5,32,0.0 +21813,17,39,1,0.0 +21813,22,21,46,0.0 +21813,41,9.65,18,0.0 +21813,49,20,32,0.0 +21813,56,38,29,0.0 +21813,6,25,20,0.0 +21813,19,9.2,20,0.0 +21813,4,22,9,0.0 +21813,73,15,34,0.0 +21813,37,26,45,0.0 +21813,74,10,43,0.0 +21813,48,12.75,12,0.0 +21813,55,24,12,0.0 +21813,3,10,43,0.0 +21813,34,14,7,0.0 +21814,76,18,33,0.0 +21814,69,36,38,0.0 +21814,61,28.5,45,0.0 +21814,1,18,4,0.0 +21814,55,24,29,0.0 +21814,38,263.5,16,0.0 +21814,71,21.5,9,0.0 +21814,50,16.25,28,0.0 +21814,51,53,47,0.0 +21814,16,17.45,24,0.0 +21814,9,97,15,0.0 +21814,14,23.25,6,0.0 +21814,53,32.8,3,0.0 +21814,65,21.05,19,0.0 +21814,52,7,3,0.0 +21814,41,9.65,8,0.0 +21814,17,39,37,0.0 +21814,68,12.5,6,0.0 +21814,70,15,32,0.0 +21814,35,18,1,0.0 +21814,37,26,46,0.0 +21814,30,25.89,21,0.0 +21814,43,46,46,0.0 +21814,63,43.9,27,0.0 +21814,4,22,30,0.0 +21814,15,15.5,50,0.0 +21814,6,25,3,0.0 +21814,18,62.5,34,0.0 +21814,54,7.45,38,0.0 +21814,12,38,30,0.0 +21814,25,14,5,0.0 +21814,75,7.75,36,0.0 +21814,21,10,46,0.0 +21814,60,34,28,0.0 +21814,67,14,26,0.0 +21814,10,31,25,0.0 +21814,11,21,24,0.0 +21814,72,34.8,7,0.0 +21814,48,12.75,7,0.0 +21814,2,19,33,0.0 +21814,36,19,38,0.0 +21814,77,13,10,0.0 +21814,47,9.5,33,0.0 +21814,3,10,41,0.0 +21814,49,20,3,0.0 +21814,74,10,26,0.0 +21814,26,31.23,31,0.0 +21814,62,49.3,14,0.0 +21814,7,30,25,0.0 +21814,27,43.9,15,0.0 +21814,23,9,26,0.0 +21814,22,21,41,0.0 +21814,46,12,48,0.0 +21814,40,18.4,25,0.0 +21814,45,9.5,9,0.0 +21814,5,21.35,12,0.0 +21814,28,45.6,46,0.0 +21814,33,2.5,8,0.0 +21814,56,38,46,0.0 +21814,24,4.5,5,0.0 +21814,31,12.5,12,0.0 +21814,59,55,36,0.0 +21814,34,14,47,0.0 +21814,73,15,13,0.0 +21814,64,33.25,50,0.0 +21814,13,6,34,0.0 +21814,57,19.5,1,0.0 +21814,19,9.2,5,0.0 +21814,20,81,46,0.0 +21814,29,123.79,30,0.0 +21814,66,17,28,0.0 +21814,32,32,8,0.0 +21814,42,14,16,0.0 +21814,8,40,30,0.0 +21814,44,19.45,40,0.0 +21815,66,17,17,0.0 +21815,25,14,32,0.0 +21815,33,2.5,33,0.0 +21815,53,32.8,4,0.0 +21815,57,19.5,19,0.0 +21815,68,12.5,19,0.0 +21815,67,14,36,0.0 +21815,41,9.65,45,0.0 +21815,5,21.35,49,0.0 +21815,16,17.45,48,0.0 +21815,22,21,32,0.0 +21815,14,23.25,31,0.0 +21815,2,19,5,0.0 +21815,71,21.5,43,0.0 +21815,73,15,12,0.0 +21815,60,34,30,0.0 +21815,12,38,4,0.0 +21815,29,123.79,19,0.0 +21815,52,7,20,0.0 +21815,4,22,20,0.0 +21815,24,4.5,26,0.0 +21815,74,10,42,0.0 +21815,34,14,32,0.0 +21815,3,10,33,0.0 +21815,48,12.75,37,0.0 +21815,17,39,20,0.0 +21815,1,18,45,0.0 +21815,77,13,30,0.0 +21815,27,43.9,50,0.0 +21815,69,36,1,0.0 +21815,8,40,44,0.0 +21815,75,7.75,16,0.0 +21815,58,13.25,16,0.0 +21815,39,18,2,0.0 +21815,44,19.45,35,0.0 +21815,54,7.45,14,0.0 +21815,46,12,13,0.0 +21815,70,15,28,0.0 +21815,64,33.25,27,0.0 +21815,72,34.8,47,0.0 +21815,35,18,46,0.0 +21815,32,32,48,0.0 +21815,30,25.89,16,0.0 +21815,20,81,34,0.0 +21815,13,6,10,0.0 +21816,16,17.45,6,0.0 +21816,39,18,28,0.0 +21816,64,33.25,21,0.0 +21816,41,9.65,28,0.0 +21816,11,21,15,0.0 +21816,59,55,20,0.0 +21816,27,43.9,26,0.0 +21816,40,18.4,48,0.0 +21816,66,17,6,0.0 +21816,31,12.5,17,0.0 +21816,53,32.8,24,0.0 +21816,69,36,12,0.0 +21816,8,40,7,0.0 +21816,49,20,3,0.0 +21816,55,24,36,0.0 +21816,12,38,30,0.0 +21816,19,9.2,33,0.0 +21816,52,7,28,0.0 +21816,56,38,16,0.0 +21816,45,9.5,40,0.0 +21816,75,7.75,44,0.0 +21816,46,12,43,0.0 +21816,68,12.5,27,0.0 +21816,6,25,39,0.0 +21816,32,32,47,0.0 +21816,1,18,4,0.0 +21816,76,18,2,0.0 +21816,61,28.5,24,0.0 +21816,24,4.5,8,0.0 +21816,73,15,41,0.0 +21816,35,18,38,0.0 +21816,23,9,13,0.0 +21816,72,34.8,28,0.0 +21816,22,21,36,0.0 +21816,3,10,16,0.0 +21816,34,14,30,0.0 +21816,28,45.6,42,0.0 +21816,20,81,46,0.0 +21816,67,14,1,0.0 +21816,60,34,40,0.0 +21816,26,31.23,39,0.0 +21816,42,14,28,0.0 +21816,62,49.3,29,0.0 +21816,48,12.75,34,0.0 +21816,63,43.9,50,0.0 +21817,21,10,5,0.0 +21817,24,4.5,45,0.0 +21817,64,33.25,10,0.0 +21817,36,19,47,0.0 +21817,28,45.6,3,0.0 +21817,2,19,13,0.0 +21817,16,17.45,47,0.0 +21817,12,38,44,0.0 +21817,39,18,26,0.0 +21817,27,43.9,23,0.0 +21817,61,28.5,48,0.0 +21817,35,18,47,0.0 +21817,55,24,25,0.0 +21817,1,18,42,0.0 +21817,29,123.79,19,0.0 +21817,3,10,19,0.0 +21817,43,46,40,0.0 +21817,56,38,19,0.0 +21817,53,32.8,26,0.0 +21817,17,39,25,0.0 +21817,59,55,6,0.0 +21817,49,20,34,0.0 +21817,77,13,2,0.0 +21817,8,40,46,0.0 +21817,46,12,25,0.0 +21817,42,14,21,0.0 +21817,44,19.45,23,0.0 +21817,40,18.4,19,0.0 +21817,38,263.5,1,0.0 +21817,37,26,44,0.0 +21817,54,7.45,6,0.0 +21817,74,10,4,0.0 +21817,45,9.5,1,0.0 +21817,57,19.5,1,0.0 +21817,66,17,48,0.0 +21817,19,9.2,37,0.0 +21817,73,15,1,0.0 +21817,4,22,7,0.0 +21817,63,43.9,6,0.0 +21817,32,32,21,0.0 +21817,62,49.3,47,0.0 +21817,5,21.35,4,0.0 +21817,33,2.5,8,0.0 +21817,22,21,37,0.0 +21817,31,12.5,21,0.0 +21817,30,25.89,38,0.0 +21817,15,15.5,21,0.0 +21817,7,30,23,0.0 +21817,9,97,1,0.0 +21818,71,21.5,33,0.0 +21818,54,7.45,39,0.0 +21818,36,19,41,0.0 +21818,63,43.9,3,0.0 +21818,47,9.5,46,0.0 +21818,37,26,23,0.0 +21818,69,36,23,0.0 +21818,59,55,1,0.0 +21818,1,18,2,0.0 +21818,12,38,32,0.0 +21818,56,38,47,0.0 +21818,68,12.5,34,0.0 +21818,3,10,50,0.0 +21818,4,22,39,0.0 +21818,65,21.05,14,0.0 +21818,43,46,36,0.0 +21818,58,13.25,49,0.0 +21818,74,10,8,0.0 +21818,23,9,35,0.0 +21818,6,25,14,0.0 +21818,45,9.5,50,0.0 +21818,61,28.5,40,0.0 +21818,40,18.4,36,0.0 +21818,48,12.75,9,0.0 +21818,21,10,19,0.0 +21818,39,18,30,0.0 +21818,76,18,7,0.0 +21818,67,14,8,0.0 +21818,50,16.25,34,0.0 +21818,64,33.25,29,0.0 +21818,5,21.35,7,0.0 +21818,22,21,28,0.0 +21818,30,25.89,7,0.0 +21818,20,81,4,0.0 +21818,51,53,44,0.0 +21819,17,39,6,0.0 +21819,56,38,12,0.0 +21819,43,46,10,0.0 +21819,32,32,3,0.0 +21819,10,31,13,0.0 +21819,24,4.5,31,0.0 +21819,14,23.25,22,0.0 +21819,65,21.05,27,0.0 +21819,25,14,27,0.0 +21819,6,25,10,0.0 +21819,23,9,20,0.0 +21820,19,9.2,46,0.0 +21820,34,14,49,0.0 +21820,46,12,17,0.0 +21820,7,30,10,0.0 +21820,33,2.5,25,0.0 +21820,63,43.9,42,0.0 +21820,9,97,18,0.0 +21820,18,62.5,20,0.0 +21820,70,15,43,0.0 +21820,2,19,4,0.0 +21820,26,31.23,37,0.0 +21820,57,19.5,29,0.0 +21820,61,28.5,24,0.0 +21820,62,49.3,25,0.0 +21820,53,32.8,1,0.0 +21820,31,12.5,48,0.0 +21820,16,17.45,1,0.0 +21820,76,18,35,0.0 +21820,65,21.05,46,0.0 +21820,4,22,10,0.0 +21820,67,14,18,0.0 +21820,58,13.25,30,0.0 +21820,48,12.75,15,0.0 +21820,39,18,48,0.0 +21820,74,10,1,0.0 +21820,68,12.5,37,0.0 +21820,56,38,26,0.0 +21820,38,263.5,29,0.0 +21820,72,34.8,9,0.0 +21820,77,13,48,0.0 +21820,21,10,11,0.0 +21820,66,17,24,0.0 +21820,25,14,28,0.0 +21820,50,16.25,17,0.0 +21820,44,19.45,16,0.0 +21820,71,21.5,43,0.0 +21820,13,6,5,0.0 +21820,59,55,50,0.0 +21820,17,39,16,0.0 +21820,45,9.5,8,0.0 +21820,64,33.25,17,0.0 +21820,23,9,2,0.0 +21820,27,43.9,23,0.0 +21820,35,18,26,0.0 +21820,12,38,38,0.0 +21820,8,40,19,0.0 +21820,20,81,15,0.0 +21820,5,21.35,26,0.0 +21820,29,123.79,5,0.0 +21820,22,21,42,0.0 +21820,49,20,26,0.0 +21820,54,7.45,20,0.0 +21820,10,31,47,0.0 +21820,6,25,12,0.0 +21820,24,4.5,32,0.0 +21820,40,18.4,39,0.0 +21820,28,45.6,32,0.0 +21820,15,15.5,30,0.0 +21820,11,21,3,0.0 +21820,32,32,46,0.0 +21820,73,15,23,0.0 +21820,41,9.65,7,0.0 +21820,47,9.5,26,0.0 +21821,54,7.45,22,0.0 +21821,52,7,39,0.0 +21821,31,12.5,18,0.0 +21821,53,32.8,32,0.0 +21821,41,9.65,31,0.0 +21821,40,18.4,8,0.0 +21821,29,123.79,23,0.0 +21821,42,14,7,0.0 +21821,55,24,38,0.0 +21821,61,28.5,42,0.0 +21821,27,43.9,31,0.0 +21821,68,12.5,1,0.0 +21821,73,15,27,0.0 +21821,37,26,46,0.0 +21821,45,9.5,2,0.0 +21821,8,40,38,0.0 +21821,62,49.3,49,0.0 +21821,77,13,1,0.0 +21821,44,19.45,25,0.0 +21821,66,17,38,0.0 +21821,59,55,11,0.0 +21821,9,97,31,0.0 +21821,43,46,23,0.0 +21821,19,9.2,1,0.0 +21821,5,21.35,43,0.0 +21821,1,18,47,0.0 +21821,25,14,45,0.0 +21821,75,7.75,45,0.0 +21821,63,43.9,35,0.0 +21821,26,31.23,13,0.0 +21821,56,38,21,0.0 +21821,50,16.25,22,0.0 +21821,51,53,9,0.0 +21821,12,38,45,0.0 +21821,14,23.25,2,0.0 +21821,22,21,11,0.0 +21821,33,2.5,46,0.0 +21821,65,21.05,48,0.0 +21821,69,36,36,0.0 +21821,46,12,18,0.0 +21821,71,21.5,43,0.0 +21821,2,19,5,0.0 +21821,74,10,37,0.0 +21821,24,4.5,49,0.0 +21821,60,34,17,0.0 +21821,10,31,8,0.0 +21821,64,33.25,47,0.0 +21821,34,14,34,0.0 +21821,35,18,1,0.0 +21821,49,20,36,0.0 +21821,70,15,31,0.0 +21821,13,6,47,0.0 +21821,4,22,3,0.0 +21821,11,21,9,0.0 +21821,7,30,3,0.0 +21821,38,263.5,42,0.0 +21821,17,39,9,0.0 +21821,23,9,24,0.0 +21822,23,9,26,0.0 +21822,6,25,46,0.0 +21822,45,9.5,20,0.0 +21822,75,7.75,1,0.0 +21822,33,2.5,9,0.0 +21822,4,22,50,0.0 +21822,55,24,6,0.0 +21822,42,14,15,0.0 +21822,30,25.89,13,0.0 +21822,27,43.9,1,0.0 +21822,9,97,11,0.0 +21822,32,32,37,0.0 +21822,65,21.05,15,0.0 +21822,10,31,25,0.0 +21822,74,10,15,0.0 +21822,18,62.5,3,0.0 +21822,66,17,11,0.0 +21822,17,39,19,0.0 +21822,13,6,15,0.0 +21822,57,19.5,42,0.0 +21823,72,34.8,21,0.0 +21823,44,19.45,27,0.0 +21823,34,14,23,0.0 +21823,37,26,34,0.0 +21823,6,25,27,0.0 +21823,56,38,26,0.0 +21823,42,14,32,0.0 +21823,38,263.5,18,0.0 +21823,68,12.5,17,0.0 +21823,39,18,36,0.0 +21823,9,97,37,0.0 +21823,4,22,10,0.0 +21823,60,34,11,0.0 +21823,54,7.45,43,0.0 +21823,26,31.23,15,0.0 +21823,46,12,32,0.0 +21823,23,9,20,0.0 +21823,15,15.5,45,0.0 +21823,2,19,35,0.0 +21823,58,13.25,17,0.0 +21823,13,6,45,0.0 +21823,77,13,13,0.0 +21823,11,21,24,0.0 +21823,36,19,36,0.0 +21823,18,62.5,17,0.0 +21823,59,55,29,0.0 +21823,33,2.5,29,0.0 +21823,32,32,38,0.0 +21823,67,14,49,0.0 +21823,21,10,2,0.0 +21823,48,12.75,46,0.0 +21823,1,18,4,0.0 +21823,74,10,4,0.0 +21823,7,30,38,0.0 +21823,66,17,19,0.0 +21823,3,10,25,0.0 +21823,51,53,17,0.0 +21823,22,21,45,0.0 +21823,53,32.8,30,0.0 +21823,50,16.25,21,0.0 +21823,64,33.25,19,0.0 +21823,62,49.3,43,0.0 +21823,14,23.25,22,0.0 +21823,71,21.5,44,0.0 +21823,73,15,12,0.0 +21823,12,38,8,0.0 +21823,31,12.5,16,0.0 +21823,45,9.5,43,0.0 +21823,43,46,7,0.0 +21823,20,81,39,0.0 +21824,20,81,19,0.0 +21824,57,19.5,21,0.0 +21824,40,18.4,15,0.0 +21824,76,18,27,0.0 +21824,41,9.65,8,0.0 +21824,45,9.5,33,0.0 +21824,24,4.5,7,0.0 +21824,47,9.5,16,0.0 +21824,75,7.75,31,0.0 +21824,22,21,6,0.0 +21824,14,23.25,36,0.0 +21824,2,19,23,0.0 +21824,9,97,27,0.0 +21824,44,19.45,41,0.0 +21824,69,36,5,0.0 +21824,64,33.25,37,0.0 +21824,65,21.05,20,0.0 +21824,35,18,36,0.0 +21824,46,12,10,0.0 +21824,58,13.25,18,0.0 +21824,12,38,40,0.0 +21824,30,25.89,21,0.0 +21824,13,6,46,0.0 +21824,25,14,18,0.0 +21824,21,10,34,0.0 +21824,38,263.5,50,0.0 +21824,49,20,17,0.0 +21825,12,38,29,0.0 +21825,19,9.2,21,0.0 +21825,7,30,34,0.0 +21825,11,21,30,0.0 +21825,5,21.35,42,0.0 +21825,34,14,49,0.0 +21825,17,39,10,0.0 +21825,8,40,42,0.0 +21825,15,15.5,31,0.0 +21825,28,45.6,31,0.0 +21826,67,14,25,0.0 +21826,12,38,26,0.0 +21826,53,32.8,15,0.0 +21826,65,21.05,7,0.0 +21826,66,17,12,0.0 +21826,16,17.45,42,0.0 +21826,43,46,24,0.0 +21826,2,19,39,0.0 +21826,28,45.6,18,0.0 +21826,4,22,8,0.0 +21826,36,19,34,0.0 +21826,7,30,48,0.0 +21826,57,19.5,27,0.0 +21826,32,32,27,0.0 +21826,50,16.25,22,0.0 +21826,69,36,12,0.0 +21826,54,7.45,8,0.0 +21826,11,21,38,0.0 +21826,42,14,6,0.0 +21826,58,13.25,8,0.0 +21826,71,21.5,29,0.0 +21827,74,10,16,0.0 +21827,70,15,9,0.0 +21827,28,45.6,28,0.0 +21827,58,13.25,10,0.0 +21827,60,34,50,0.0 +21827,71,21.5,35,0.0 +21827,50,16.25,21,0.0 +21827,19,9.2,18,0.0 +21827,61,28.5,2,0.0 +21827,35,18,43,0.0 +21827,56,38,27,0.0 +21827,27,43.9,50,0.0 +21827,29,123.79,50,0.0 +21828,45,9.5,6,0.0 +21828,53,32.8,47,0.0 +21828,21,10,43,0.0 +21828,40,18.4,17,0.0 +21828,27,43.9,49,0.0 +21828,59,55,29,0.0 +21828,61,28.5,6,0.0 +21828,22,21,37,0.0 +21828,50,16.25,45,0.0 +21828,39,18,24,0.0 +21828,71,21.5,43,0.0 +21828,57,19.5,5,0.0 +21828,33,2.5,19,0.0 +21828,31,12.5,4,0.0 +21828,17,39,11,0.0 +21828,4,22,40,0.0 +21828,56,38,26,0.0 +21828,54,7.45,41,0.0 +21828,48,12.75,27,0.0 +21828,46,12,49,0.0 +21828,76,18,12,0.0 +21828,10,31,13,0.0 +21828,60,34,18,0.0 +21828,34,14,35,0.0 +21828,47,9.5,28,0.0 +21828,18,62.5,46,0.0 +21828,12,38,8,0.0 +21828,1,18,43,0.0 +21828,29,123.79,37,0.0 +21828,13,6,42,0.0 +21828,19,9.2,9,0.0 +21828,30,25.89,16,0.0 +21828,5,21.35,7,0.0 +21828,11,21,15,0.0 +21828,68,12.5,44,0.0 +21828,66,17,39,0.0 +21828,7,30,35,0.0 +21828,52,7,40,0.0 +21828,63,43.9,16,0.0 +21828,2,19,19,0.0 +21828,65,21.05,23,0.0 +21828,15,15.5,42,0.0 +21828,77,13,26,0.0 +21828,37,26,36,0.0 +21828,35,18,36,0.0 +21828,42,14,2,0.0 +21828,74,10,4,0.0 +21828,16,17.45,35,0.0 +21828,14,23.25,33,0.0 +21828,38,263.5,38,0.0 +21828,72,34.8,29,0.0 +21828,62,49.3,2,0.0 +21828,9,97,41,0.0 +21828,20,81,4,0.0 +21828,69,36,33,0.0 +21828,64,33.25,38,0.0 +21828,26,31.23,8,0.0 +21828,67,14,25,0.0 +21828,6,25,50,0.0 +21828,55,24,34,0.0 +21828,24,4.5,37,0.0 +21828,23,9,49,0.0 +21828,49,20,41,0.0 +21828,3,10,25,0.0 +21828,8,40,8,0.0 +21828,70,15,24,0.0 +21828,44,19.45,14,0.0 +21828,36,19,50,0.0 +21828,58,13.25,30,0.0 +21828,28,45.6,38,0.0 +21829,7,30,14,0.0 +21829,3,10,47,0.0 +21829,8,40,21,0.0 +21829,31,12.5,44,0.0 +21829,49,20,25,0.0 +21829,46,12,21,0.0 +21829,19,9.2,8,0.0 +21829,67,14,19,0.0 +21829,27,43.9,35,0.0 +21829,44,19.45,25,0.0 +21829,26,31.23,20,0.0 +21829,9,97,23,0.0 +21829,11,21,18,0.0 +21829,70,15,47,0.0 +21829,71,21.5,11,0.0 +21829,24,4.5,3,0.0 +21829,56,38,24,0.0 +21829,74,10,3,0.0 +21829,65,21.05,19,0.0 +21829,37,26,43,0.0 +21829,61,28.5,12,0.0 +21829,21,10,8,0.0 +21829,40,18.4,15,0.0 +21829,1,18,16,0.0 +21829,15,15.5,35,0.0 +21829,5,21.35,12,0.0 +21829,30,25.89,38,0.0 +21829,57,19.5,45,0.0 +21829,2,19,11,0.0 +21829,47,9.5,13,0.0 +21829,33,2.5,31,0.0 +21829,63,43.9,46,0.0 +21829,66,17,4,0.0 +21829,36,19,4,0.0 +21829,48,12.75,26,0.0 +21829,60,34,18,0.0 +21829,25,14,34,0.0 +21829,52,7,16,0.0 +21829,77,13,10,0.0 +21829,32,32,27,0.0 +21829,20,81,7,0.0 +21829,51,53,48,0.0 +21829,22,21,31,0.0 +21829,41,9.65,28,0.0 +21829,23,9,44,0.0 +21829,68,12.5,27,0.0 +21829,75,7.75,9,0.0 +21829,50,16.25,26,0.0 +21829,38,263.5,49,0.0 +21829,29,123.79,5,0.0 +21829,42,14,32,0.0 +21830,64,33.25,33,0.0 +21830,16,17.45,14,0.0 +21830,39,18,46,0.0 +21830,7,30,1,0.0 +21830,56,38,23,0.0 +21830,61,28.5,30,0.0 +21830,2,19,35,0.0 +21830,60,34,11,0.0 +21830,13,6,6,0.0 +21830,50,16.25,34,0.0 +21830,72,34.8,50,0.0 +21830,4,22,7,0.0 +21830,18,62.5,10,0.0 +21830,54,7.45,33,0.0 +21830,34,14,10,0.0 +21830,51,53,4,0.0 +21830,22,21,3,0.0 +21830,62,49.3,22,0.0 +21830,20,81,26,0.0 +21830,49,20,38,0.0 +21830,12,38,8,0.0 +21830,21,10,30,0.0 +21830,46,12,9,0.0 +21830,73,15,44,0.0 +21830,1,18,45,0.0 +21830,17,39,34,0.0 +21830,5,21.35,5,0.0 +21830,71,21.5,32,0.0 +21830,41,9.65,26,0.0 +21830,11,21,43,0.0 +21830,25,14,26,0.0 +21830,43,46,32,0.0 +21830,42,14,39,0.0 +21830,32,32,27,0.0 +21830,69,36,31,0.0 +21830,58,13.25,41,0.0 +21830,26,31.23,41,0.0 +21830,55,24,45,0.0 +21830,65,21.05,29,0.0 +21830,74,10,25,0.0 +21830,63,43.9,37,0.0 +21830,48,12.75,49,0.0 +21830,59,55,36,0.0 +21830,38,263.5,40,0.0 +21830,40,18.4,40,0.0 +21830,10,31,11,0.0 +21830,37,26,12,0.0 +21830,27,43.9,50,0.0 +21830,52,7,11,0.0 +21831,70,15,3,0.0 +21831,71,21.5,10,0.0 +21831,38,263.5,27,0.0 +21831,22,21,23,0.0 +21831,36,19,22,0.0 +21831,12,38,29,0.0 +21831,60,34,40,0.0 +21831,59,55,4,0.0 +21831,33,2.5,25,0.0 +21831,42,14,46,0.0 +21831,20,81,12,0.0 +21831,53,32.8,37,0.0 +21831,5,21.35,28,0.0 +21831,19,9.2,27,0.0 +21831,50,16.25,12,0.0 +21831,16,17.45,14,0.0 +21831,49,20,30,0.0 +21831,14,23.25,46,0.0 +21831,56,38,23,0.0 +21831,30,25.89,4,0.0 +21831,9,97,21,0.0 +21831,34,14,46,0.0 +21831,17,39,12,0.0 +21831,57,19.5,32,0.0 +21831,75,7.75,35,0.0 +21831,55,24,36,0.0 +21831,66,17,25,0.0 +21831,73,15,42,0.0 +21831,3,10,7,0.0 +21831,62,49.3,46,0.0 +21831,39,18,45,0.0 +21831,47,9.5,47,0.0 +21831,10,31,16,0.0 +21831,23,9,11,0.0 +21831,40,18.4,50,0.0 +21831,61,28.5,21,0.0 +21831,46,12,27,0.0 +21831,37,26,48,0.0 +21831,31,12.5,30,0.0 +21831,63,43.9,24,0.0 +21831,41,9.65,21,0.0 +21831,48,12.75,33,0.0 +21831,77,13,49,0.0 +21831,1,18,7,0.0 +21831,11,21,3,0.0 +21831,26,31.23,37,0.0 +21831,7,30,7,0.0 +21831,67,14,14,0.0 +21831,74,10,29,0.0 +21831,64,33.25,21,0.0 +21831,6,25,30,0.0 +21831,25,14,33,0.0 +21831,45,9.5,28,0.0 +21831,35,18,36,0.0 +21831,28,45.6,40,0.0 +21831,44,19.45,27,0.0 +21831,13,6,48,0.0 +21831,51,53,40,0.0 +21831,32,32,4,0.0 +21831,4,22,42,0.0 +21831,69,36,7,0.0 +21831,15,15.5,34,0.0 +21831,54,7.45,48,0.0 +21831,8,40,44,0.0 +21831,72,34.8,8,0.0 +21831,27,43.9,13,0.0 +21831,18,62.5,27,0.0 +21831,68,12.5,17,0.0 +21832,24,4.5,6,0.0 +21832,46,12,10,0.0 +21832,26,31.23,34,0.0 +21832,39,18,36,0.0 +21832,49,20,23,0.0 +21832,73,15,31,0.0 +21832,10,31,21,0.0 +21832,35,18,30,0.0 +21832,52,7,42,0.0 +21832,19,9.2,40,0.0 +21832,48,12.75,47,0.0 +21832,13,6,43,0.0 +21832,42,14,24,0.0 +21832,54,7.45,41,0.0 +21832,41,9.65,10,0.0 +21832,45,9.5,29,0.0 +21832,18,62.5,28,0.0 +21832,11,21,9,0.0 +21832,56,38,19,0.0 +21832,15,15.5,38,0.0 +21832,50,16.25,25,0.0 +21832,6,25,9,0.0 +21832,28,45.6,21,0.0 +21832,59,55,38,0.0 +21832,9,97,4,0.0 +21832,31,12.5,20,0.0 +21832,51,53,27,0.0 +21832,65,21.05,22,0.0 +21832,68,12.5,39,0.0 +21832,36,19,28,0.0 +21832,4,22,27,0.0 +21832,25,14,27,0.0 +21832,40,18.4,15,0.0 +21832,61,28.5,9,0.0 +21832,12,38,3,0.0 +21832,60,34,30,0.0 +21832,72,34.8,25,0.0 +21832,62,49.3,1,0.0 +21832,32,32,30,0.0 +21832,2,19,48,0.0 +21832,47,9.5,28,0.0 +21832,22,21,39,0.0 +21832,29,123.79,48,0.0 +21832,70,15,7,0.0 +21832,58,13.25,49,0.0 +21832,34,14,45,0.0 +21832,75,7.75,4,0.0 +21832,33,2.5,50,0.0 +21832,76,18,5,0.0 +21832,67,14,15,0.0 +21832,1,18,1,0.0 +21832,7,30,30,0.0 +21832,63,43.9,4,0.0 +21832,16,17.45,37,0.0 +21832,20,81,49,0.0 +21832,38,263.5,36,0.0 +21832,69,36,32,0.0 +21832,64,33.25,28,0.0 +21832,8,40,8,0.0 +21832,53,32.8,18,0.0 +21832,37,26,39,0.0 +21832,23,9,12,0.0 +21832,17,39,39,0.0 +21832,5,21.35,39,0.0 +21832,44,19.45,5,0.0 +21832,71,21.5,26,0.0 +21832,3,10,24,0.0 +21832,27,43.9,17,0.0 +21833,41,9.65,8,0.0 +21833,5,21.35,15,0.0 +21833,20,81,15,0.0 +21833,61,28.5,47,0.0 +21833,10,31,34,0.0 +21833,2,19,35,0.0 +21833,48,12.75,30,0.0 +21833,49,20,50,0.0 +21833,58,13.25,23,0.0 +21833,25,14,3,0.0 +21833,62,49.3,14,0.0 +21833,72,34.8,8,0.0 +21833,37,26,33,0.0 +21833,13,6,11,0.0 +21833,73,15,25,0.0 +21833,56,38,49,0.0 +21833,17,39,35,0.0 +21833,23,9,32,0.0 +21833,38,263.5,38,0.0 +21833,74,10,37,0.0 +21833,54,7.45,6,0.0 +21833,60,34,28,0.0 +21833,9,97,36,0.0 +21833,30,25.89,38,0.0 +21833,7,30,41,0.0 +21833,29,123.79,43,0.0 +21833,70,15,36,0.0 +21833,22,21,9,0.0 +21833,46,12,14,0.0 +21833,32,32,35,0.0 +21833,31,12.5,17,0.0 +21833,57,19.5,43,0.0 +21833,4,22,20,0.0 +21833,21,10,21,0.0 +21833,34,14,11,0.0 +21833,42,14,1,0.0 +21833,36,19,34,0.0 +21833,76,18,2,0.0 +21833,71,21.5,7,0.0 +21833,3,10,40,0.0 +21833,33,2.5,36,0.0 +21833,51,53,41,0.0 +21833,11,21,10,0.0 +21833,27,43.9,34,0.0 +21833,75,7.75,25,0.0 +21833,47,9.5,44,0.0 +21833,67,14,9,0.0 +21833,59,55,24,0.0 +21833,6,25,42,0.0 +21833,15,15.5,39,0.0 +21833,35,18,41,0.0 +21833,24,4.5,41,0.0 +21833,40,18.4,32,0.0 +21833,28,45.6,16,0.0 +21834,5,21.35,9,0.0 +21834,70,15,46,0.0 +21834,13,6,18,0.0 +21834,47,9.5,29,0.0 +21834,1,18,36,0.0 +21834,46,12,34,0.0 +21834,20,81,5,0.0 +21834,9,97,20,0.0 +21834,64,33.25,19,0.0 +21834,10,31,42,0.0 +21834,28,45.6,27,0.0 +21834,15,15.5,15,0.0 +21834,53,32.8,25,0.0 +21834,42,14,3,0.0 +21834,45,9.5,47,0.0 +21834,69,36,36,0.0 +21834,2,19,42,0.0 +21834,58,13.25,43,0.0 +21834,39,18,4,0.0 +21834,67,14,35,0.0 +21834,17,39,23,0.0 +21834,57,19.5,38,0.0 +21834,25,14,1,0.0 +21834,31,12.5,27,0.0 +21834,12,38,25,0.0 +21834,4,22,22,0.0 +21834,44,19.45,31,0.0 +21834,8,40,2,0.0 +21834,16,17.45,19,0.0 +21834,48,12.75,13,0.0 +21834,27,43.9,50,0.0 +21834,38,263.5,36,0.0 +21834,22,21,42,0.0 +21834,21,10,5,0.0 +21834,35,18,14,0.0 +21834,50,16.25,27,0.0 +21834,76,18,20,0.0 +21834,3,10,45,0.0 +21834,66,17,22,0.0 +21834,65,21.05,1,0.0 +21834,18,62.5,22,0.0 +21834,24,4.5,41,0.0 +21834,51,53,45,0.0 +21834,41,9.65,25,0.0 +21834,61,28.5,40,0.0 +21835,19,9.2,46,0.0 +21835,27,43.9,37,0.0 +21835,29,123.79,11,0.0 +21835,67,14,41,0.0 +21835,4,22,32,0.0 +21835,25,14,6,0.0 +21835,75,7.75,21,0.0 +21835,63,43.9,8,0.0 +21835,35,18,26,0.0 +21835,55,24,38,0.0 +21835,64,33.25,12,0.0 +21835,12,38,27,0.0 +21835,70,15,47,0.0 +21835,66,17,4,0.0 +21835,20,81,32,0.0 +21835,50,16.25,7,0.0 +21835,3,10,47,0.0 +21835,33,2.5,27,0.0 +21836,39,18,48,0.0 +21836,7,30,12,0.0 +21836,73,15,4,0.0 +21836,24,4.5,7,0.0 +21836,25,14,11,0.0 +21836,26,31.23,40,0.0 +21836,20,81,36,0.0 +21836,19,9.2,31,0.0 +21836,32,32,47,0.0 +21836,16,17.45,48,0.0 +21836,40,18.4,45,0.0 +21836,9,97,7,0.0 +21836,71,21.5,12,0.0 +21836,17,39,11,0.0 +21836,30,25.89,16,0.0 +21836,76,18,25,0.0 +21836,57,19.5,28,0.0 +21836,46,12,47,0.0 +21836,64,33.25,43,0.0 +21836,1,18,5,0.0 +21836,28,45.6,1,0.0 +21836,41,9.65,3,0.0 +21836,48,12.75,38,0.0 +21836,67,14,32,0.0 +21836,3,10,39,0.0 +21836,42,14,35,0.0 +21836,15,15.5,3,0.0 +21836,36,19,28,0.0 +21836,21,10,43,0.0 +21836,70,15,8,0.0 +21836,52,7,18,0.0 +21836,11,21,36,0.0 +21836,12,38,4,0.0 +21836,47,9.5,1,0.0 +21836,75,7.75,18,0.0 +21836,6,25,16,0.0 +21836,4,22,4,0.0 +21836,60,34,6,0.0 +21836,5,21.35,46,0.0 +21836,22,21,41,0.0 +21836,8,40,14,0.0 +21836,10,31,34,0.0 +21836,50,16.25,39,0.0 +21836,63,43.9,14,0.0 +21836,23,9,11,0.0 +21836,18,62.5,26,0.0 +21836,53,32.8,22,0.0 +21836,34,14,48,0.0 +21836,45,9.5,43,0.0 +21836,2,19,2,0.0 +21836,72,34.8,8,0.0 +21836,44,19.45,36,0.0 +21836,56,38,50,0.0 +21836,51,53,15,0.0 +21836,61,28.5,32,0.0 +21836,55,24,13,0.0 +21836,65,21.05,37,0.0 +21836,35,18,22,0.0 +21836,59,55,33,0.0 +21836,33,2.5,4,0.0 +21836,54,7.45,45,0.0 +21836,43,46,2,0.0 +21836,14,23.25,47,0.0 +21836,69,36,10,0.0 +21836,49,20,23,0.0 +21836,31,12.5,18,0.0 +21836,37,26,2,0.0 +21836,62,49.3,9,0.0 +21836,77,13,27,0.0 +21836,13,6,49,0.0 +21836,66,17,1,0.0 +21836,58,13.25,18,0.0 +21836,74,10,10,0.0 +21836,38,263.5,5,0.0 +21836,29,123.79,33,0.0 +21836,68,12.5,50,0.0 +21837,14,23.25,13,0.0 +21837,24,4.5,6,0.0 +21837,35,18,14,0.0 +21838,2,19,33,0.0 +21838,26,31.23,42,0.0 +21838,3,10,35,0.0 +21838,74,10,31,0.0 +21838,54,7.45,6,0.0 +21838,49,20,5,0.0 +21838,19,9.2,18,0.0 +21838,31,12.5,32,0.0 +21838,35,18,26,0.0 +21838,42,14,36,0.0 +21838,13,6,38,0.0 +21838,15,15.5,10,0.0 +21838,62,49.3,7,0.0 +21838,27,43.9,33,0.0 +21838,71,21.5,22,0.0 +21838,12,38,13,0.0 +21838,56,38,17,0.0 +21838,11,21,11,0.0 +21838,4,22,28,0.0 +21838,30,25.89,10,0.0 +21838,51,53,21,0.0 +21838,37,26,12,0.0 +21838,7,30,17,0.0 +21838,9,97,25,0.0 +21838,39,18,28,0.0 +21838,58,13.25,24,0.0 +21838,6,25,5,0.0 +21838,20,81,36,0.0 +21838,59,55,16,0.0 +21838,14,23.25,10,0.0 +21838,55,24,39,0.0 +21838,52,7,10,0.0 +21838,61,28.5,35,0.0 +21838,73,15,41,0.0 +21838,45,9.5,31,0.0 +21838,53,32.8,41,0.0 +21838,47,9.5,47,0.0 +21838,43,46,43,0.0 +21839,39,18,50,0.0 +21839,72,34.8,3,0.0 +21839,32,32,50,0.0 +21839,36,19,48,0.0 +21839,35,18,9,0.0 +21839,75,7.75,23,0.0 +21839,2,19,8,0.0 +21839,48,12.75,37,0.0 +21839,73,15,26,0.0 +21839,5,21.35,18,0.0 +21839,28,45.6,12,0.0 +21839,64,33.25,47,0.0 +21839,49,20,34,0.0 +21839,15,15.5,12,0.0 +21840,1,18,34,0.0 +21840,72,34.8,27,0.0 +21840,24,4.5,31,0.0 +21840,8,40,40,0.0 +21840,32,32,20,0.0 +21840,5,21.35,4,0.0 +21840,69,36,35,0.0 +21840,68,12.5,49,0.0 +21840,77,13,36,0.0 +21840,35,18,24,0.0 +21840,70,15,46,0.0 +21840,18,62.5,21,0.0 +21840,30,25.89,34,0.0 +21840,73,15,7,0.0 +21840,38,263.5,5,0.0 +21840,26,31.23,6,0.0 +21840,33,2.5,47,0.0 +21840,31,12.5,45,0.0 +21840,45,9.5,37,0.0 +21840,48,12.75,37,0.0 +21840,60,34,15,0.0 +21840,49,20,21,0.0 +21840,46,12,30,0.0 +21840,50,16.25,4,0.0 +21840,37,26,32,0.0 +21840,25,14,42,0.0 +21840,74,10,22,0.0 +21840,65,21.05,7,0.0 +21840,66,17,8,0.0 +21840,47,9.5,40,0.0 +21841,74,10,42,0.0 +21841,49,20,45,0.0 +21841,52,7,36,0.0 +21841,73,15,41,0.0 +21841,10,31,2,0.0 +21841,66,17,19,0.0 +21841,61,28.5,26,0.0 +21841,53,32.8,46,0.0 +21841,38,263.5,9,0.0 +21841,39,18,23,0.0 +21841,29,123.79,27,0.0 +21841,50,16.25,46,0.0 +21841,40,18.4,36,0.0 +21841,60,34,6,0.0 +21841,5,21.35,2,0.0 +21841,19,9.2,29,0.0 +21841,20,81,25,0.0 +21841,42,14,18,0.0 +21841,65,21.05,43,0.0 +21841,75,7.75,10,0.0 +21841,27,43.9,46,0.0 +21841,68,12.5,26,0.0 +21841,16,17.45,11,0.0 +21841,6,25,47,0.0 +21841,67,14,8,0.0 +21841,43,46,9,0.0 +21841,72,34.8,36,0.0 +21841,15,15.5,19,0.0 +21841,17,39,16,0.0 +21841,22,21,24,0.0 +21841,45,9.5,46,0.0 +21841,11,21,48,0.0 +21841,64,33.25,7,0.0 +21841,76,18,48,0.0 +21841,34,14,32,0.0 +21841,51,53,24,0.0 +21841,36,19,37,0.0 +21841,3,10,28,0.0 +21841,59,55,47,0.0 +21841,37,26,47,0.0 +21841,31,12.5,46,0.0 +21841,25,14,43,0.0 +21841,9,97,17,0.0 +21841,35,18,2,0.0 +21841,47,9.5,47,0.0 +21841,8,40,12,0.0 +21841,2,19,49,0.0 +21841,44,19.45,21,0.0 +21841,28,45.6,32,0.0 +21841,26,31.23,2,0.0 +21841,24,4.5,39,0.0 +21841,21,10,32,0.0 +21841,1,18,39,0.0 +21841,62,49.3,5,0.0 +21841,54,7.45,18,0.0 +21841,63,43.9,35,0.0 +21841,13,6,7,0.0 +21841,57,19.5,14,0.0 +21841,58,13.25,6,0.0 +21841,77,13,19,0.0 +21841,32,32,34,0.0 +21841,70,15,40,0.0 +21841,46,12,9,0.0 +21841,7,30,47,0.0 +21841,4,22,21,0.0 +21841,23,9,49,0.0 +21841,12,38,25,0.0 +21841,33,2.5,17,0.0 +21841,55,24,13,0.0 +21841,41,9.65,25,0.0 +21841,30,25.89,48,0.0 +21841,69,36,6,0.0 +21841,56,38,22,0.0 +21841,18,62.5,16,0.0 +21842,28,45.6,29,0.0 +21842,77,13,22,0.0 +21842,36,19,13,0.0 +21842,56,38,21,0.0 +21842,50,16.25,20,0.0 +21842,42,14,41,0.0 +21842,73,15,31,0.0 +21842,8,40,46,0.0 +21842,60,34,15,0.0 +21842,71,21.5,31,0.0 +21842,55,24,24,0.0 +21842,26,31.23,1,0.0 +21842,25,14,43,0.0 +21842,66,17,9,0.0 +21842,24,4.5,20,0.0 +21842,20,81,44,0.0 +21842,11,21,50,0.0 +21843,73,15,40,0.0 +21843,31,12.5,41,0.0 +21843,72,34.8,41,0.0 +21843,69,36,7,0.0 +21843,42,14,21,0.0 +21843,3,10,34,0.0 +21843,59,55,30,0.0 +21843,46,12,29,0.0 +21843,76,18,5,0.0 +21843,61,28.5,3,0.0 +21843,24,4.5,42,0.0 +21843,34,14,25,0.0 +21843,41,9.65,5,0.0 +21843,75,7.75,3,0.0 +21843,49,20,9,0.0 +21843,20,81,31,0.0 +21843,50,16.25,30,0.0 +21843,22,21,9,0.0 +21843,71,21.5,10,0.0 +21843,4,22,28,0.0 +21843,67,14,16,0.0 +21843,62,49.3,10,0.0 +21843,56,38,44,0.0 +21843,15,15.5,50,0.0 +21843,38,263.5,50,0.0 +21843,14,23.25,13,0.0 +21843,21,10,3,0.0 +21843,1,18,15,0.0 +21843,66,17,44,0.0 +21843,8,40,24,0.0 +21843,13,6,35,0.0 +21844,37,26,13,0.0 +21844,6,25,3,0.0 +21844,53,32.8,22,0.0 +21844,31,12.5,21,0.0 +21844,17,39,6,0.0 +21844,77,13,37,0.0 +21844,65,21.05,4,0.0 +21844,3,10,35,0.0 +21844,26,31.23,49,0.0 +21844,1,18,33,0.0 +21844,38,263.5,44,0.0 +21844,30,25.89,28,0.0 +21844,48,12.75,42,0.0 +21844,14,23.25,17,0.0 +21844,4,22,26,0.0 +21844,76,18,11,0.0 +21844,19,9.2,49,0.0 +21844,25,14,2,0.0 +21844,49,20,10,0.0 +21844,20,81,28,0.0 +21844,56,38,2,0.0 +21844,21,10,27,0.0 +21844,33,2.5,14,0.0 +21844,47,9.5,40,0.0 +21844,12,38,23,0.0 +21844,2,19,33,0.0 +21844,29,123.79,48,0.0 +21844,44,19.45,36,0.0 +21844,51,53,31,0.0 +21844,70,15,37,0.0 +21844,35,18,47,0.0 +21844,73,15,12,0.0 +21844,74,10,5,0.0 +21844,27,43.9,7,0.0 +21844,8,40,35,0.0 +21844,39,18,5,0.0 +21844,18,62.5,6,0.0 +21844,68,12.5,34,0.0 +21844,41,9.65,24,0.0 +21844,75,7.75,37,0.0 +21844,61,28.5,37,0.0 +21844,71,21.5,32,0.0 +21844,11,21,2,0.0 +21844,32,32,40,0.0 +21844,9,97,25,0.0 +21844,59,55,45,0.0 +21844,34,14,41,0.0 +21844,46,12,42,0.0 +21844,24,4.5,24,0.0 +21844,63,43.9,34,0.0 +21844,28,45.6,34,0.0 +21844,72,34.8,12,0.0 +21844,60,34,22,0.0 +21844,43,46,40,0.0 +21844,36,19,19,0.0 +21844,57,19.5,47,0.0 +21844,23,9,27,0.0 +21844,45,9.5,25,0.0 +21844,67,14,22,0.0 +21844,42,14,37,0.0 +21844,40,18.4,43,0.0 +21844,55,24,25,0.0 +21845,68,12.5,29,0.0 +21845,40,18.4,13,0.0 +21845,2,19,38,0.0 +21845,71,21.5,36,0.0 +21845,48,12.75,8,0.0 +21845,9,97,9,0.0 +21845,49,20,30,0.0 +21845,56,38,12,0.0 +21845,64,33.25,25,0.0 +21845,26,31.23,3,0.0 +21845,32,32,29,0.0 +21845,23,9,50,0.0 +21845,44,19.45,31,0.0 +21845,73,15,40,0.0 +21845,35,18,22,0.0 +21845,18,62.5,15,0.0 +21845,47,9.5,30,0.0 +21845,76,18,19,0.0 +21845,27,43.9,27,0.0 +21845,29,123.79,35,0.0 +21845,42,14,6,0.0 +21845,66,17,2,0.0 +21845,74,10,33,0.0 +21845,63,43.9,35,0.0 +21845,58,13.25,31,0.0 +21845,52,7,5,0.0 +21845,55,24,41,0.0 +21845,70,15,33,0.0 +21845,59,55,45,0.0 +21845,7,30,42,0.0 +21845,62,49.3,22,0.0 +21845,25,14,12,0.0 +21845,28,45.6,1,0.0 +21845,12,38,35,0.0 +21845,30,25.89,13,0.0 +21845,22,21,18,0.0 +21845,6,25,2,0.0 +21845,13,6,40,0.0 +21845,15,15.5,8,0.0 +21845,53,32.8,22,0.0 +21845,11,21,33,0.0 +21845,33,2.5,18,0.0 +21845,24,4.5,19,0.0 +21845,43,46,24,0.0 +21845,3,10,10,0.0 +21845,39,18,38,0.0 +21845,38,263.5,10,0.0 +21845,75,7.75,3,0.0 +21845,10,31,5,0.0 +21845,60,34,30,0.0 +21845,20,81,13,0.0 +21845,34,14,31,0.0 +21845,14,23.25,39,0.0 +21845,72,34.8,35,0.0 +21845,46,12,16,0.0 +21846,37,26,33,0.0 +21846,27,43.9,8,0.0 +21846,33,2.5,22,0.0 +21846,43,46,15,0.0 +21846,14,23.25,5,0.0 +21846,72,34.8,26,0.0 +21847,62,49.3,44,0.0 +21847,2,19,43,0.0 +21847,12,38,35,0.0 +21847,18,62.5,3,0.0 +21847,10,31,3,0.0 +21847,43,46,27,0.0 +21847,23,9,33,0.0 +21847,53,32.8,40,0.0 +21847,71,21.5,3,0.0 +21847,16,17.45,10,0.0 +21847,4,22,40,0.0 +21847,17,39,28,0.0 +21847,64,33.25,18,0.0 +21847,1,18,17,0.0 +21847,36,19,31,0.0 +21847,49,20,7,0.0 +21847,27,43.9,24,0.0 +21847,63,43.9,4,0.0 +21847,24,4.5,39,0.0 +21847,29,123.79,1,0.0 +21847,66,17,24,0.0 +21847,76,18,46,0.0 +21847,65,21.05,42,0.0 +21847,13,6,4,0.0 +21847,67,14,41,0.0 +21847,9,97,34,0.0 +21847,3,10,28,0.0 +21847,19,9.2,2,0.0 +21847,74,10,2,0.0 +21847,39,18,30,0.0 +21847,75,7.75,5,0.0 +21847,59,55,10,0.0 +21847,22,21,17,0.0 +21847,33,2.5,48,0.0 +21847,11,21,42,0.0 +21847,35,18,18,0.0 +21847,26,31.23,35,0.0 +21847,30,25.89,44,0.0 +21847,77,13,44,0.0 +21847,32,32,39,0.0 +21847,34,14,32,0.0 +21847,56,38,11,0.0 +21847,20,81,45,0.0 +21847,8,40,2,0.0 +21847,37,26,26,0.0 +21847,42,14,42,0.0 +21847,70,15,43,0.0 +21847,38,263.5,2,0.0 +21847,6,25,5,0.0 +21847,31,12.5,20,0.0 +21847,41,9.65,37,0.0 +21847,73,15,11,0.0 +21847,5,21.35,12,0.0 +21847,69,36,37,0.0 +21847,7,30,6,0.0 +21847,60,34,44,0.0 +21847,50,16.25,8,0.0 +21847,51,53,2,0.0 +21847,68,12.5,9,0.0 +21847,48,12.75,7,0.0 +21847,46,12,46,0.0 +21847,28,45.6,2,0.0 +21847,54,7.45,26,0.0 +21847,72,34.8,34,0.0 +21847,40,18.4,34,0.0 +21847,58,13.25,39,0.0 +21847,61,28.5,22,0.0 +21847,52,7,42,0.0 +21847,15,15.5,27,0.0 +21848,29,123.79,15,0.0 +21848,21,10,23,0.0 +21848,75,7.75,46,0.0 +21848,73,15,39,0.0 +21848,48,12.75,18,0.0 +21848,77,13,39,0.0 +21848,40,18.4,5,0.0 +21848,43,46,13,0.0 +21848,22,21,50,0.0 +21848,3,10,19,0.0 +21848,67,14,36,0.0 +21848,8,40,42,0.0 +21848,27,43.9,2,0.0 +21848,44,19.45,22,0.0 +21848,66,17,30,0.0 +21848,17,39,47,0.0 +21848,55,24,8,0.0 +21848,41,9.65,42,0.0 +21848,71,21.5,34,0.0 +21849,21,10,25,0.0 +21849,10,31,25,0.0 +21849,33,2.5,30,0.0 +21849,26,31.23,8,0.0 +21849,74,10,17,0.0 +21849,17,39,5,0.0 +21849,52,7,2,0.0 +21849,65,21.05,34,0.0 +21849,22,21,28,0.0 +21849,34,14,47,0.0 +21849,67,14,1,0.0 +21849,12,38,39,0.0 +21849,5,21.35,8,0.0 +21849,43,46,39,0.0 +21849,46,12,17,0.0 +21849,71,21.5,5,0.0 +21849,18,62.5,47,0.0 +21849,53,32.8,48,0.0 +21849,61,28.5,22,0.0 +21849,48,12.75,9,0.0 +21849,56,38,30,0.0 +21849,41,9.65,28,0.0 +21850,23,9,48,0.0 +21850,30,25.89,50,0.0 +21850,5,21.35,7,0.0 +21850,1,18,23,0.0 +21850,29,123.79,21,0.0 +21850,71,21.5,4,0.0 +21850,57,19.5,27,0.0 +21850,70,15,23,0.0 +21850,13,6,17,0.0 +21850,40,18.4,7,0.0 +21850,22,21,12,0.0 +21850,52,7,1,0.0 +21850,7,30,44,0.0 +21850,67,14,45,0.0 +21850,69,36,28,0.0 +21850,47,9.5,27,0.0 +21850,46,12,38,0.0 +21850,38,263.5,8,0.0 +21850,63,43.9,10,0.0 +21850,44,19.45,45,0.0 +21850,43,46,15,0.0 +21850,59,55,48,0.0 +21850,45,9.5,24,0.0 +21850,37,26,43,0.0 +21850,65,21.05,14,0.0 +21850,68,12.5,45,0.0 +21850,21,10,34,0.0 +21850,76,18,40,0.0 +21850,73,15,35,0.0 +21850,49,20,8,0.0 +21850,16,17.45,6,0.0 +21850,51,53,10,0.0 +21850,58,13.25,16,0.0 +21850,39,18,11,0.0 +21850,10,31,41,0.0 +21850,61,28.5,30,0.0 +21850,36,19,22,0.0 +21850,12,38,30,0.0 +21850,53,32.8,44,0.0 +21850,28,45.6,38,0.0 +21850,75,7.75,48,0.0 +21850,66,17,30,0.0 +21850,14,23.25,35,0.0 +21850,11,21,48,0.0 +21850,64,33.25,15,0.0 +21850,2,19,45,0.0 +21850,34,14,3,0.0 +21850,26,31.23,27,0.0 +21850,27,43.9,39,0.0 +21851,53,32.8,48,0.0 +21851,22,21,34,0.0 +21851,16,17.45,40,0.0 +21851,77,13,3,0.0 +21851,25,14,22,0.0 +21851,9,97,41,0.0 +21851,74,10,27,0.0 +21851,55,24,25,0.0 +21851,73,15,35,0.0 +21851,20,81,10,0.0 +21851,2,19,5,0.0 +21851,31,12.5,16,0.0 +21851,46,12,1,0.0 +21851,32,32,41,0.0 +21851,49,20,4,0.0 +21851,8,40,36,0.0 +21851,26,31.23,2,0.0 +21851,43,46,38,0.0 +21851,63,43.9,25,0.0 +21851,62,49.3,3,0.0 +21851,11,21,46,0.0 +21851,4,22,17,0.0 +21851,66,17,9,0.0 +21851,35,18,47,0.0 +21851,65,21.05,11,0.0 +21851,10,31,40,0.0 +21851,75,7.75,16,0.0 +21851,54,7.45,32,0.0 +21851,3,10,18,0.0 +21851,42,14,10,0.0 +21851,57,19.5,49,0.0 +21852,60,34,44,0.0 +21852,45,9.5,46,0.0 +21852,50,16.25,30,0.0 +21852,47,9.5,2,0.0 +21852,39,18,50,0.0 +21852,38,263.5,33,0.0 +21852,32,32,31,0.0 +21852,64,33.25,33,0.0 +21852,22,21,37,0.0 +21852,49,20,16,0.0 +21852,33,2.5,1,0.0 +21852,3,10,17,0.0 +21852,14,23.25,16,0.0 +21852,75,7.75,36,0.0 +21852,23,9,20,0.0 +21852,31,12.5,13,0.0 +21852,24,4.5,13,0.0 +21852,15,15.5,39,0.0 +21852,27,43.9,22,0.0 +21852,18,62.5,26,0.0 +21852,10,31,50,0.0 +21852,11,21,43,0.0 +21852,53,32.8,15,0.0 +21852,20,81,38,0.0 +21852,73,15,39,0.0 +21852,25,14,3,0.0 +21852,68,12.5,34,0.0 +21852,66,17,5,0.0 +21852,37,26,5,0.0 +21852,21,10,37,0.0 +21852,8,40,18,0.0 +21852,12,38,8,0.0 +21852,70,15,40,0.0 +21852,55,24,4,0.0 +21852,17,39,20,0.0 +21852,77,13,2,0.0 +21852,76,18,37,0.0 +21852,19,9.2,28,0.0 +21852,2,19,6,0.0 +21852,29,123.79,8,0.0 +21852,51,53,6,0.0 +21852,48,12.75,38,0.0 +21852,63,43.9,9,0.0 +21852,34,14,42,0.0 +21852,62,49.3,42,0.0 +21852,56,38,38,0.0 +21852,4,22,24,0.0 +21852,65,21.05,6,0.0 +21852,16,17.45,3,0.0 +21852,42,14,41,0.0 +21852,46,12,35,0.0 +21852,9,97,22,0.0 +21852,54,7.45,24,0.0 +21852,35,18,33,0.0 +21852,40,18.4,2,0.0 +21852,36,19,29,0.0 +21852,26,31.23,43,0.0 +21852,52,7,5,0.0 +21852,43,46,40,0.0 +21852,59,55,50,0.0 +21852,61,28.5,31,0.0 +21853,67,14,17,0.0 +21853,6,25,17,0.0 +21853,41,9.65,50,0.0 +21853,58,13.25,14,0.0 +21853,34,14,14,0.0 +21853,4,22,26,0.0 +21853,55,24,33,0.0 +21853,22,21,11,0.0 +21853,26,31.23,43,0.0 +21853,35,18,10,0.0 +21853,10,31,1,0.0 +21853,20,81,39,0.0 +21853,37,26,20,0.0 +21853,52,7,9,0.0 +21853,72,34.8,20,0.0 +21853,1,18,1,0.0 +21853,33,2.5,35,0.0 +21853,56,38,14,0.0 +21853,2,19,28,0.0 +21853,30,25.89,16,0.0 +21853,29,123.79,24,0.0 +21853,47,9.5,33,0.0 +21853,36,19,13,0.0 +21853,59,55,8,0.0 +21853,14,23.25,29,0.0 +21853,66,17,35,0.0 +21853,61,28.5,1,0.0 +21853,8,40,26,0.0 +21853,13,6,49,0.0 +21853,70,15,31,0.0 +21853,17,39,33,0.0 +21853,50,16.25,11,0.0 +21853,68,12.5,43,0.0 +21853,11,21,15,0.0 +21853,12,38,7,0.0 +21853,49,20,34,0.0 +21853,38,263.5,20,0.0 +21853,3,10,46,0.0 +21853,40,18.4,33,0.0 +21853,5,21.35,31,0.0 +21853,54,7.45,28,0.0 +21853,32,32,38,0.0 +21853,53,32.8,49,0.0 +21853,77,13,31,0.0 +21853,18,62.5,47,0.0 +21853,74,10,41,0.0 +21853,16,17.45,11,0.0 +21853,27,43.9,19,0.0 +21853,43,46,15,0.0 +21853,39,18,13,0.0 +21853,57,19.5,4,0.0 +21853,42,14,18,0.0 +21853,7,30,48,0.0 +21853,63,43.9,31,0.0 +21853,45,9.5,1,0.0 +21853,64,33.25,27,0.0 +21853,9,97,44,0.0 +21853,28,45.6,8,0.0 +21853,24,4.5,33,0.0 +21853,21,10,38,0.0 +21853,69,36,35,0.0 +21853,46,12,43,0.0 +21853,62,49.3,48,0.0 +21853,51,53,21,0.0 +21853,60,34,1,0.0 +21853,15,15.5,23,0.0 +21853,71,21.5,15,0.0 +21853,31,12.5,46,0.0 +21853,44,19.45,43,0.0 +21853,73,15,17,0.0 +21853,76,18,12,0.0 +21854,44,19.45,49,0.0 +21854,36,19,8,0.0 +21854,6,25,32,0.0 +21854,22,21,39,0.0 +21854,68,12.5,17,0.0 +21854,53,32.8,36,0.0 +21854,25,14,32,0.0 +21854,9,97,13,0.0 +21854,29,123.79,1,0.0 +21854,23,9,32,0.0 +21854,33,2.5,3,0.0 +21854,38,263.5,30,0.0 +21854,51,53,18,0.0 +21854,20,81,20,0.0 +21854,60,34,2,0.0 +21854,21,10,34,0.0 +21854,57,19.5,42,0.0 +21854,17,39,10,0.0 +21854,11,21,37,0.0 +21854,43,46,44,0.0 +21854,14,23.25,19,0.0 +21854,32,32,41,0.0 +21855,45,9.5,35,0.0 +21855,7,30,7,0.0 +21855,19,9.2,2,0.0 +21855,15,15.5,28,0.0 +21855,59,55,47,0.0 +21855,3,10,8,0.0 +21855,77,13,23,0.0 +21855,24,4.5,21,0.0 +21855,43,46,43,0.0 +21855,8,40,27,0.0 +21855,2,19,14,0.0 +21855,26,31.23,11,0.0 +21855,25,14,16,0.0 +21855,10,31,21,0.0 +21855,63,43.9,36,0.0 +21855,20,81,19,0.0 +21855,76,18,46,0.0 +21855,5,21.35,19,0.0 +21855,12,38,9,0.0 +21855,73,15,35,0.0 +21855,11,21,23,0.0 +21855,33,2.5,9,0.0 +21855,69,36,45,0.0 +21855,41,9.65,3,0.0 +21855,16,17.45,33,0.0 +21855,40,18.4,1,0.0 +21855,66,17,31,0.0 +21855,39,18,50,0.0 +21855,48,12.75,35,0.0 +21855,35,18,47,0.0 +21855,18,62.5,25,0.0 +21855,68,12.5,29,0.0 +21855,72,34.8,42,0.0 +21855,17,39,31,0.0 +21855,51,53,49,0.0 +21855,23,9,4,0.0 +21855,6,25,22,0.0 +21855,42,14,44,0.0 +21855,4,22,11,0.0 +21855,22,21,11,0.0 +21856,40,18.4,13,0.0 +21856,3,10,29,0.0 +21856,43,46,3,0.0 +21856,67,14,15,0.0 +21856,8,40,17,0.0 +21856,53,32.8,45,0.0 +21856,4,22,24,0.0 +21856,62,49.3,27,0.0 +21856,28,45.6,12,0.0 +21856,23,9,6,0.0 +21856,35,18,9,0.0 +21856,22,21,41,0.0 +21856,33,2.5,31,0.0 +21856,10,31,1,0.0 +21856,55,24,10,0.0 +21856,27,43.9,33,0.0 +21856,9,97,44,0.0 +21856,13,6,27,0.0 +21856,59,55,17,0.0 +21857,49,20,36,0.0 +21857,73,15,46,0.0 +21857,27,43.9,2,0.0 +21857,4,22,19,0.0 +21857,6,25,2,0.0 +21857,17,39,22,0.0 +21857,51,53,28,0.0 +21857,41,9.65,41,0.0 +21857,67,14,27,0.0 +21857,25,14,49,0.0 +21857,71,21.5,28,0.0 +21857,48,12.75,20,0.0 +21857,11,21,44,0.0 +21857,3,10,4,0.0 +21857,9,97,25,0.0 +21857,38,263.5,1,0.0 +21857,58,13.25,34,0.0 +21857,62,49.3,30,0.0 +21857,30,25.89,40,0.0 +21857,54,7.45,23,0.0 +21857,20,81,23,0.0 +21857,64,33.25,28,0.0 +21857,12,38,32,0.0 +21857,70,15,5,0.0 +21857,72,34.8,40,0.0 +21857,33,2.5,46,0.0 +21857,53,32.8,31,0.0 +21857,37,26,43,0.0 +21857,14,23.25,23,0.0 +21857,40,18.4,38,0.0 +21857,22,21,27,0.0 +21857,56,38,19,0.0 +21857,19,9.2,36,0.0 +21857,43,46,31,0.0 +21857,65,21.05,45,0.0 +21857,15,15.5,44,0.0 +21857,74,10,27,0.0 +21857,66,17,14,0.0 +21857,21,10,50,0.0 +21857,60,34,38,0.0 +21857,59,55,40,0.0 +21857,35,18,22,0.0 +21857,50,16.25,2,0.0 +21857,1,18,12,0.0 +21857,47,9.5,28,0.0 +21857,57,19.5,12,0.0 +21857,16,17.45,22,0.0 +21857,39,18,24,0.0 +21857,61,28.5,2,0.0 +21857,63,43.9,21,0.0 +21857,76,18,38,0.0 +21857,31,12.5,30,0.0 +21857,42,14,9,0.0 +21857,29,123.79,26,0.0 +21857,45,9.5,23,0.0 +21857,28,45.6,20,0.0 +21857,34,14,10,0.0 +21857,75,7.75,34,0.0 +21857,5,21.35,14,0.0 +21857,7,30,12,0.0 +21857,10,31,47,0.0 +21857,52,7,21,0.0 +21857,44,19.45,49,0.0 +21857,36,19,39,0.0 +21857,23,9,45,0.0 +21857,69,36,12,0.0 +21857,77,13,21,0.0 +21857,32,32,2,0.0 +21857,68,12.5,20,0.0 +21857,18,62.5,4,0.0 +21857,24,4.5,47,0.0 +21857,2,19,23,0.0 +21857,13,6,7,0.0 +21857,46,12,28,0.0 +21858,50,16.25,27,0.0 +21858,65,21.05,18,0.0 +21858,7,30,18,0.0 +21858,74,10,28,0.0 +21858,16,17.45,23,0.0 +21858,23,9,22,0.0 +21858,14,23.25,2,0.0 +21858,77,13,3,0.0 +21858,34,14,21,0.0 +21858,73,15,22,0.0 +21858,27,43.9,49,0.0 +21858,36,19,36,0.0 +21858,63,43.9,3,0.0 +21858,67,14,31,0.0 +21858,56,38,26,0.0 +21858,25,14,41,0.0 +21858,8,40,32,0.0 +21858,21,10,23,0.0 +21858,40,18.4,16,0.0 +21858,6,25,35,0.0 +21858,60,34,34,0.0 +21858,44,19.45,46,0.0 +21858,13,6,36,0.0 +21858,26,31.23,3,0.0 +21858,31,12.5,26,0.0 +21858,72,34.8,49,0.0 +21858,17,39,31,0.0 +21858,3,10,19,0.0 +21858,76,18,27,0.0 +21858,19,9.2,16,0.0 +21858,41,9.65,12,0.0 +21858,29,123.79,33,0.0 +21858,45,9.5,48,0.0 +21858,18,62.5,38,0.0 +21858,43,46,44,0.0 +21858,10,31,11,0.0 +21858,4,22,49,0.0 +21858,46,12,11,0.0 +21858,57,19.5,11,0.0 +21858,30,25.89,48,0.0 +21858,59,55,30,0.0 +21858,70,15,32,0.0 +21858,53,32.8,25,0.0 +21858,12,38,37,0.0 +21858,9,97,34,0.0 +21858,61,28.5,14,0.0 +21858,54,7.45,14,0.0 +21858,58,13.25,12,0.0 +21858,11,21,45,0.0 +21858,51,53,29,0.0 +21858,24,4.5,31,0.0 +21858,35,18,34,0.0 +21858,22,21,34,0.0 +21858,71,21.5,28,0.0 +21858,33,2.5,5,0.0 +21858,1,18,44,0.0 +21858,52,7,1,0.0 +21858,5,21.35,35,0.0 +21859,2,19,29,0.0 +21859,57,19.5,37,0.0 +21859,3,10,4,0.0 +21859,26,31.23,11,0.0 +21859,15,15.5,28,0.0 +21859,60,34,13,0.0 +21859,31,12.5,29,0.0 +21859,50,16.25,35,0.0 +21859,43,46,28,0.0 +21859,34,14,7,0.0 +21859,28,45.6,1,0.0 +21859,30,25.89,2,0.0 +21859,29,123.79,17,0.0 +21859,38,263.5,27,0.0 +21859,58,13.25,37,0.0 +21859,73,15,14,0.0 +21859,12,38,40,0.0 +21859,63,43.9,7,0.0 +21859,17,39,1,0.0 +21859,68,12.5,24,0.0 +21859,54,7.45,46,0.0 +21859,44,19.45,21,0.0 +21859,49,20,33,0.0 +21859,55,24,24,0.0 +21859,9,97,20,0.0 +21859,62,49.3,30,0.0 +21859,75,7.75,41,0.0 +21859,14,23.25,43,0.0 +21859,52,7,33,0.0 +21859,1,18,8,0.0 +21859,66,17,21,0.0 +21859,33,2.5,45,0.0 +21859,18,62.5,7,0.0 +21859,25,14,21,0.0 +21859,27,43.9,41,0.0 +21859,47,9.5,37,0.0 +21859,42,14,29,0.0 +21859,21,10,22,0.0 +21859,37,26,20,0.0 +21859,69,36,2,0.0 +21860,52,7,41,0.0 +21860,5,21.35,30,0.0 +21860,65,21.05,1,0.0 +21860,72,34.8,40,0.0 +21860,23,9,20,0.0 +21860,70,15,50,0.0 +21860,39,18,36,0.0 +21860,31,12.5,14,0.0 +21860,38,263.5,12,0.0 +21860,27,43.9,25,0.0 +21860,62,49.3,3,0.0 +21860,22,21,4,0.0 +21860,46,12,17,0.0 +21860,17,39,13,0.0 +21860,15,15.5,27,0.0 +21860,49,20,46,0.0 +21860,25,14,27,0.0 +21860,63,43.9,32,0.0 +21860,56,38,17,0.0 +21860,14,23.25,1,0.0 +21860,32,32,10,0.0 +21861,66,17,25,0.0 +21861,49,20,30,0.0 +21861,70,15,10,0.0 +21861,36,19,30,0.0 +21861,13,6,37,0.0 +21861,45,9.5,47,0.0 +21861,2,19,36,0.0 +21861,46,12,30,0.0 +21861,22,21,42,0.0 +21861,6,25,34,0.0 +21861,68,12.5,40,0.0 +21861,19,9.2,16,0.0 +21861,51,53,6,0.0 +21861,55,24,18,0.0 +21861,38,263.5,12,0.0 +21861,56,38,18,0.0 +21861,60,34,29,0.0 +21861,18,62.5,34,0.0 +21861,50,16.25,49,0.0 +21861,4,22,32,0.0 +21861,39,18,20,0.0 +21861,47,9.5,19,0.0 +21861,57,19.5,34,0.0 +21861,27,43.9,9,0.0 +21861,63,43.9,36,0.0 +21861,7,30,34,0.0 +21861,75,7.75,7,0.0 +21861,71,21.5,39,0.0 +21861,21,10,21,0.0 +21861,3,10,35,0.0 +21861,35,18,34,0.0 +21861,34,14,3,0.0 +21861,37,26,48,0.0 +21861,12,38,5,0.0 +21861,25,14,43,0.0 +21861,77,13,45,0.0 +21861,40,18.4,38,0.0 +21861,67,14,1,0.0 +21861,8,40,10,0.0 +21861,14,23.25,38,0.0 +21861,53,32.8,46,0.0 +21861,59,55,25,0.0 +21861,20,81,48,0.0 +21861,43,46,15,0.0 +21861,69,36,38,0.0 +21861,54,7.45,24,0.0 +21861,61,28.5,18,0.0 +21861,24,4.5,17,0.0 +21861,65,21.05,49,0.0 +21861,48,12.75,10,0.0 +21861,5,21.35,38,0.0 +21861,73,15,22,0.0 +21861,23,9,24,0.0 +21861,31,12.5,41,0.0 +21861,26,31.23,40,0.0 +21861,74,10,30,0.0 +21861,32,32,11,0.0 +21861,10,31,40,0.0 +21861,28,45.6,35,0.0 +21862,22,21,6,0.0 +21862,70,15,49,0.0 +21863,48,12.75,49,0.0 +21863,33,2.5,20,0.0 +21863,43,46,28,0.0 +21863,16,17.45,44,0.0 +21863,41,9.65,11,0.0 +21863,13,6,1,0.0 +21863,50,16.25,32,0.0 +21863,5,21.35,19,0.0 +21863,32,32,22,0.0 +21863,20,81,15,0.0 +21863,61,28.5,23,0.0 +21863,1,18,7,0.0 +21863,10,31,14,0.0 +21863,19,9.2,25,0.0 +21863,30,25.89,28,0.0 +21863,68,12.5,39,0.0 +21863,25,14,10,0.0 +21863,63,43.9,2,0.0 +21863,77,13,46,0.0 +21863,47,9.5,37,0.0 +21863,76,18,24,0.0 +21863,66,17,6,0.0 +21863,65,21.05,3,0.0 +21863,31,12.5,11,0.0 +21863,44,19.45,24,0.0 +21863,27,43.9,32,0.0 +21863,42,14,8,0.0 +21863,22,21,45,0.0 +21863,34,14,18,0.0 +21863,7,30,30,0.0 +21863,52,7,25,0.0 +21863,37,26,11,0.0 +21863,54,7.45,45,0.0 +21863,55,24,50,0.0 +21863,15,15.5,10,0.0 +21863,64,33.25,49,0.0 +21863,11,21,19,0.0 +21863,57,19.5,25,0.0 +21863,23,9,26,0.0 +21863,69,36,30,0.0 +21863,2,19,19,0.0 +21863,59,55,33,0.0 +21863,46,12,30,0.0 +21863,14,23.25,7,0.0 +21863,35,18,16,0.0 +21863,18,62.5,45,0.0 +21863,72,34.8,47,0.0 +21863,26,31.23,45,0.0 +21863,71,21.5,7,0.0 +21863,29,123.79,50,0.0 +21863,49,20,36,0.0 +21863,60,34,33,0.0 +21863,51,53,41,0.0 +21863,28,45.6,46,0.0 +21863,75,7.75,25,0.0 +21863,12,38,35,0.0 +21863,74,10,47,0.0 +21863,40,18.4,49,0.0 +21863,62,49.3,32,0.0 +21863,21,10,35,0.0 +21863,56,38,37,0.0 +21863,39,18,46,0.0 +21863,3,10,21,0.0 +21863,24,4.5,45,0.0 +21863,36,19,24,0.0 +21863,9,97,1,0.0 +21863,4,22,37,0.0 +21864,64,33.25,29,0.0 +21864,61,28.5,7,0.0 +21864,12,38,6,0.0 +21864,76,18,41,0.0 +21864,59,55,24,0.0 +21864,71,21.5,29,0.0 +21864,20,81,19,0.0 +21864,3,10,20,0.0 +21864,50,16.25,27,0.0 +21864,52,7,24,0.0 +21864,31,12.5,12,0.0 +21864,38,263.5,19,0.0 +21864,33,2.5,16,0.0 +21864,8,40,42,0.0 +21864,74,10,36,0.0 +21864,66,17,28,0.0 +21864,63,43.9,29,0.0 +21864,68,12.5,38,0.0 +21864,18,62.5,34,0.0 +21864,30,25.89,25,0.0 +21864,15,15.5,17,0.0 +21864,10,31,9,0.0 +21864,19,9.2,37,0.0 +21864,57,19.5,13,0.0 +21864,40,18.4,2,0.0 +21864,1,18,33,0.0 +21864,21,10,37,0.0 +21864,24,4.5,14,0.0 +21864,46,12,49,0.0 +21864,69,36,2,0.0 +21864,41,9.65,7,0.0 +21864,77,13,40,0.0 +21864,70,15,14,0.0 +21864,34,14,30,0.0 +21864,60,34,21,0.0 +21864,48,12.75,7,0.0 +21864,16,17.45,6,0.0 +21864,54,7.45,43,0.0 +21864,67,14,31,0.0 +21864,55,24,33,0.0 +21864,27,43.9,13,0.0 +21864,23,9,45,0.0 +21864,28,45.6,34,0.0 +21864,32,32,26,0.0 +21864,11,21,35,0.0 +21864,45,9.5,6,0.0 +21864,29,123.79,10,0.0 +21865,31,12.5,47,0.0 +21865,20,81,11,0.0 +21865,10,31,29,0.0 +21865,57,19.5,20,0.0 +21865,26,31.23,11,0.0 +21865,62,49.3,31,0.0 +21865,32,32,40,0.0 +21865,1,18,50,0.0 +21865,53,32.8,27,0.0 +21865,39,18,21,0.0 +21865,72,34.8,15,0.0 +21865,7,30,11,0.0 +21865,16,17.45,31,0.0 +21865,19,9.2,12,0.0 +21865,23,9,21,0.0 +21865,35,18,26,0.0 +21865,46,12,30,0.0 +21865,38,263.5,28,0.0 +21865,42,14,26,0.0 +21865,54,7.45,9,0.0 +21865,18,62.5,5,0.0 +21865,25,14,31,0.0 +21865,55,24,11,0.0 +21865,36,19,43,0.0 +21865,33,2.5,33,0.0 +21865,65,21.05,4,0.0 +21865,60,34,35,0.0 +21865,66,17,10,0.0 +21865,76,18,20,0.0 +21865,29,123.79,41,0.0 +21865,4,22,26,0.0 +21865,45,9.5,44,0.0 +21865,17,39,42,0.0 +21865,28,45.6,30,0.0 +21865,44,19.45,19,0.0 +21865,12,38,23,0.0 +21865,27,43.9,6,0.0 +21865,48,12.75,6,0.0 +21865,3,10,33,0.0 +21865,58,13.25,47,0.0 +21865,69,36,12,0.0 +21865,43,46,47,0.0 +21865,21,10,2,0.0 +21865,22,21,48,0.0 +21865,59,55,33,0.0 +21865,6,25,28,0.0 +21865,75,7.75,23,0.0 +21865,47,9.5,48,0.0 +21865,15,15.5,12,0.0 +21865,77,13,23,0.0 +21865,8,40,40,0.0 +21865,11,21,36,0.0 +21865,56,38,10,0.0 +21865,61,28.5,22,0.0 +21865,5,21.35,1,0.0 +21865,14,23.25,37,0.0 +21865,73,15,5,0.0 +21865,67,14,33,0.0 +21866,35,18,10,0.0 +21866,54,7.45,39,0.0 +21866,25,14,25,0.0 +21866,10,31,39,0.0 +21866,39,18,50,0.0 +21866,56,38,45,0.0 +21866,29,123.79,43,0.0 +21866,19,9.2,28,0.0 +21866,55,24,12,0.0 +21866,45,9.5,12,0.0 +21866,18,62.5,11,0.0 +21866,14,23.25,27,0.0 +21866,32,32,4,0.0 +21866,2,19,45,0.0 +21866,70,15,26,0.0 +21866,21,10,14,0.0 +21866,17,39,50,0.0 +21866,7,30,7,0.0 +21867,25,14,28,0.0 +21867,33,2.5,38,0.0 +21867,77,13,6,0.0 +21867,55,24,48,0.0 +21867,58,13.25,21,0.0 +21867,41,9.65,42,0.0 +21867,3,10,19,0.0 +21867,71,21.5,13,0.0 +21867,6,25,46,0.0 +21867,13,6,5,0.0 +21867,43,46,8,0.0 +21867,60,34,6,0.0 +21867,70,15,14,0.0 +21867,39,18,14,0.0 +21867,14,23.25,17,0.0 +21867,8,40,44,0.0 +21867,2,19,23,0.0 +21867,46,12,17,0.0 +21867,37,26,26,0.0 +21867,47,9.5,47,0.0 +21867,62,49.3,44,0.0 +21867,76,18,14,0.0 +21867,57,19.5,35,0.0 +21867,66,17,46,0.0 +21867,36,19,47,0.0 +21868,10,31,29,0.0 +21868,9,97,40,0.0 +21868,53,32.8,36,0.0 +21868,36,19,21,0.0 +21868,12,38,13,0.0 +21868,23,9,48,0.0 +21868,70,15,28,0.0 +21868,40,18.4,14,0.0 +21868,68,12.5,34,0.0 +21868,30,25.89,45,0.0 +21868,75,7.75,21,0.0 +21868,66,17,42,0.0 +21868,8,40,49,0.0 +21868,55,24,5,0.0 +21868,15,15.5,17,0.0 +21868,39,18,13,0.0 +21868,54,7.45,43,0.0 +21868,67,14,7,0.0 +21868,34,14,4,0.0 +21868,47,9.5,15,0.0 +21868,73,15,17,0.0 +21868,44,19.45,10,0.0 +21868,28,45.6,2,0.0 +21868,13,6,24,0.0 +21868,21,10,30,0.0 +21868,38,263.5,30,0.0 +21868,33,2.5,46,0.0 +21868,45,9.5,27,0.0 +21868,26,31.23,29,0.0 +21868,74,10,5,0.0 +21868,63,43.9,35,0.0 +21868,59,55,48,0.0 +21868,43,46,9,0.0 +21868,48,12.75,18,0.0 +21868,69,36,34,0.0 +21868,14,23.25,13,0.0 +21868,32,32,26,0.0 +21868,6,25,39,0.0 +21868,4,22,34,0.0 +21869,53,32.8,50,0.0 +21869,20,81,6,0.0 +21869,32,32,31,0.0 +21869,25,14,48,0.0 +21869,74,10,8,0.0 +21869,3,10,5,0.0 +21869,76,18,25,0.0 +21869,24,4.5,42,0.0 +21869,68,12.5,15,0.0 +21869,29,123.79,13,0.0 +21869,31,12.5,43,0.0 +21869,65,21.05,10,0.0 +21869,7,30,43,0.0 +21869,61,28.5,1,0.0 +21869,11,21,24,0.0 +21869,23,9,16,0.0 +21869,6,25,25,0.0 +21869,71,21.5,22,0.0 +21869,40,18.4,1,0.0 +21869,66,17,21,0.0 +21869,38,263.5,21,0.0 +21869,15,15.5,26,0.0 +21869,28,45.6,13,0.0 +21869,36,19,33,0.0 +21869,17,39,16,0.0 +21869,30,25.89,22,0.0 +21869,26,31.23,23,0.0 +21869,51,53,49,0.0 +21869,16,17.45,39,0.0 +21869,52,7,15,0.0 +21869,46,12,21,0.0 +21869,34,14,33,0.0 +21869,55,24,10,0.0 +21869,64,33.25,46,0.0 +21869,49,20,41,0.0 +21869,5,21.35,47,0.0 +21869,35,18,21,0.0 +21869,54,7.45,22,0.0 +21869,50,16.25,38,0.0 +21869,8,40,12,0.0 +21869,2,19,6,0.0 +21869,12,38,49,0.0 +21869,9,97,41,0.0 +21869,70,15,36,0.0 +21869,45,9.5,34,0.0 +21869,77,13,16,0.0 +21869,47,9.5,18,0.0 +21869,18,62.5,40,0.0 +21869,57,19.5,11,0.0 +21869,72,34.8,20,0.0 +21869,13,6,27,0.0 +21869,43,46,14,0.0 +21869,48,12.75,37,0.0 +21869,75,7.75,34,0.0 +21869,33,2.5,15,0.0 +21869,56,38,37,0.0 +21869,22,21,10,0.0 +21869,4,22,30,0.0 +21869,10,31,7,0.0 +21869,60,34,42,0.0 +21869,41,9.65,14,0.0 +21869,63,43.9,25,0.0 +21869,19,9.2,9,0.0 +21869,59,55,32,0.0 +21869,1,18,28,0.0 +21869,67,14,12,0.0 +21869,37,26,30,0.0 +21869,44,19.45,9,0.0 +21869,69,36,20,0.0 +21869,21,10,12,0.0 +21869,14,23.25,18,0.0 +21869,27,43.9,28,0.0 +21869,73,15,13,0.0 +21869,58,13.25,28,0.0 +21869,39,18,16,0.0 +21869,62,49.3,21,0.0 +21869,42,14,34,0.0 +21870,28,45.6,31,0.0 +21870,77,13,23,0.0 +21870,6,25,43,0.0 +21870,18,62.5,15,0.0 +21870,54,7.45,16,0.0 +21870,62,49.3,46,0.0 +21870,1,18,16,0.0 +21870,60,34,28,0.0 +21870,13,6,33,0.0 +21870,67,14,28,0.0 +21870,33,2.5,8,0.0 +21870,36,19,8,0.0 +21870,57,19.5,28,0.0 +21870,23,9,14,0.0 +21870,42,14,6,0.0 +21870,71,21.5,15,0.0 +21870,40,18.4,31,0.0 +21870,14,23.25,14,0.0 +21870,15,15.5,32,0.0 +21870,76,18,35,0.0 +21870,43,46,4,0.0 +21870,58,13.25,36,0.0 +21870,61,28.5,29,0.0 +21870,2,19,9,0.0 +21870,17,39,17,0.0 +21870,25,14,18,0.0 +21870,66,17,17,0.0 +21870,64,33.25,38,0.0 +21870,34,14,49,0.0 +21870,75,7.75,41,0.0 +21870,4,22,7,0.0 +21870,70,15,42,0.0 +21870,56,38,30,0.0 +21870,16,17.45,49,0.0 +21870,9,97,5,0.0 +21870,51,53,50,0.0 +21870,74,10,43,0.0 +21870,65,21.05,11,0.0 +21870,27,43.9,47,0.0 +21870,59,55,23,0.0 +21870,73,15,50,0.0 +21870,46,12,50,0.0 +21870,44,19.45,3,0.0 +21870,37,26,38,0.0 +21870,22,21,43,0.0 +21870,53,32.8,46,0.0 +21870,68,12.5,4,0.0 +21870,31,12.5,22,0.0 +21870,3,10,46,0.0 +21870,41,9.65,40,0.0 +21870,21,10,20,0.0 +21870,7,30,33,0.0 +21870,55,24,17,0.0 +21870,48,12.75,23,0.0 +21870,49,20,36,0.0 +21870,35,18,5,0.0 +21870,24,4.5,7,0.0 +21870,38,263.5,27,0.0 +21870,72,34.8,46,0.0 +21870,32,32,27,0.0 +21870,30,25.89,37,0.0 +21870,12,38,23,0.0 +21870,63,43.9,18,0.0 +21870,19,9.2,32,0.0 +21870,8,40,22,0.0 +21870,52,7,22,0.0 +21870,10,31,29,0.0 +21870,39,18,41,0.0 +21871,19,9.2,19,0.0 +21871,37,26,48,0.0 +21871,43,46,5,0.0 +21871,33,2.5,48,0.0 +21871,38,263.5,33,0.0 +21871,50,16.25,47,0.0 +21871,11,21,35,0.0 +21871,34,14,1,0.0 +21871,2,19,24,0.0 +21871,65,21.05,49,0.0 +21872,44,19.45,18,0.0 +21872,65,21.05,35,0.0 +21872,30,25.89,7,0.0 +21872,11,21,30,0.0 +21872,1,18,38,0.0 +21872,4,22,32,0.0 +21872,52,7,33,0.0 +21872,76,18,37,0.0 +21872,53,32.8,25,0.0 +21872,51,53,24,0.0 +21872,63,43.9,40,0.0 +21872,77,13,33,0.0 +21872,3,10,12,0.0 +21872,24,4.5,21,0.0 +21872,68,12.5,30,0.0 +21872,48,12.75,41,0.0 +21872,54,7.45,27,0.0 +21872,72,34.8,47,0.0 +21872,26,31.23,38,0.0 +21872,27,43.9,37,0.0 +21872,57,19.5,31,0.0 +21872,22,21,26,0.0 +21872,45,9.5,19,0.0 +21872,12,38,34,0.0 +21872,35,18,12,0.0 +21872,66,17,19,0.0 +21872,39,18,37,0.0 +21872,25,14,43,0.0 +21872,73,15,28,0.0 +21872,10,31,9,0.0 +21872,61,28.5,45,0.0 +21872,60,34,13,0.0 +21872,2,19,29,0.0 +21872,9,97,41,0.0 +21872,50,16.25,27,0.0 +21872,59,55,19,0.0 +21872,29,123.79,12,0.0 +21872,23,9,43,0.0 +21872,7,30,41,0.0 +21872,55,24,40,0.0 +21872,70,15,7,0.0 +21872,17,39,17,0.0 +21872,67,14,39,0.0 +21872,20,81,17,0.0 +21872,74,10,36,0.0 +21872,43,46,18,0.0 +21872,36,19,5,0.0 +21872,47,9.5,45,0.0 +21872,58,13.25,5,0.0 +21872,41,9.65,8,0.0 +21872,13,6,2,0.0 +21872,15,15.5,2,0.0 +21872,18,62.5,38,0.0 +21872,56,38,14,0.0 +21872,69,36,6,0.0 +21872,49,20,22,0.0 +21872,75,7.75,44,0.0 +21872,71,21.5,37,0.0 +21872,33,2.5,30,0.0 +21872,42,14,47,0.0 +21872,34,14,13,0.0 +21872,19,9.2,11,0.0 +21872,5,21.35,5,0.0 +21873,65,21.05,12,0.0 +21873,11,21,21,0.0 +21873,2,19,9,0.0 +21873,28,45.6,15,0.0 +21873,33,2.5,25,0.0 +21873,61,28.5,17,0.0 +21873,3,10,47,0.0 +21873,43,46,44,0.0 +21873,5,21.35,8,0.0 +21873,7,30,2,0.0 +21873,56,38,4,0.0 +21873,27,43.9,34,0.0 +21873,66,17,30,0.0 +21873,19,9.2,33,0.0 +21873,18,62.5,12,0.0 +21873,45,9.5,35,0.0 +21874,26,31.23,30,0.0 +21874,57,19.5,14,0.0 +21874,35,18,18,0.0 +21874,8,40,4,0.0 +21874,42,14,3,0.0 +21874,49,20,27,0.0 +21874,70,15,30,0.0 +21874,32,32,13,0.0 +21874,73,15,17,0.0 +21874,56,38,3,0.0 +21874,20,81,34,0.0 +21874,15,15.5,24,0.0 +21874,43,46,5,0.0 +21874,27,43.9,18,0.0 +21874,40,18.4,46,0.0 +21874,76,18,38,0.0 +21874,58,13.25,49,0.0 +21874,69,36,25,0.0 +21874,11,21,11,0.0 +21874,44,19.45,9,0.0 +21874,33,2.5,49,0.0 +21874,46,12,42,0.0 +21874,59,55,42,0.0 +21874,14,23.25,18,0.0 +21874,36,19,44,0.0 +21874,64,33.25,31,0.0 +21874,24,4.5,18,0.0 +21874,38,263.5,29,0.0 +21874,30,25.89,34,0.0 +21874,62,49.3,39,0.0 +21874,50,16.25,8,0.0 +21874,3,10,4,0.0 +21874,18,62.5,41,0.0 +21874,71,21.5,47,0.0 +21874,28,45.6,50,0.0 +21874,16,17.45,45,0.0 +21874,4,22,24,0.0 +21874,48,12.75,17,0.0 +21874,1,18,48,0.0 +21874,41,9.65,10,0.0 +21874,54,7.45,1,0.0 +21874,21,10,15,0.0 +21874,47,9.5,22,0.0 +21874,31,12.5,40,0.0 +21874,17,39,47,0.0 +21874,61,28.5,32,0.0 +21874,77,13,34,0.0 +21874,29,123.79,44,0.0 +21874,12,38,14,0.0 +21874,13,6,22,0.0 +21874,6,25,3,0.0 +21874,67,14,39,0.0 +21874,25,14,31,0.0 +21874,7,30,19,0.0 +21874,23,9,39,0.0 +21875,32,32,28,0.0 +21875,69,36,15,0.0 +21875,42,14,6,0.0 +21875,4,22,28,0.0 +21875,45,9.5,37,0.0 +21875,71,21.5,43,0.0 +21875,33,2.5,31,0.0 +21875,52,7,8,0.0 +21875,29,123.79,24,0.0 +21875,6,25,15,0.0 +21875,36,19,19,0.0 +21875,59,55,3,0.0 +21875,64,33.25,47,0.0 +21875,66,17,43,0.0 +21875,30,25.89,45,0.0 +21875,47,9.5,1,0.0 +21875,21,10,27,0.0 +21875,44,19.45,30,0.0 +21875,54,7.45,18,0.0 +21875,60,34,45,0.0 +21875,61,28.5,6,0.0 +21875,31,12.5,7,0.0 +21875,25,14,24,0.0 +21875,20,81,10,0.0 +21875,48,12.75,33,0.0 +21875,16,17.45,17,0.0 +21875,7,30,24,0.0 +21875,62,49.3,36,0.0 +21875,39,18,38,0.0 +21875,68,12.5,3,0.0 +21875,70,15,20,0.0 +21875,37,26,35,0.0 +21875,75,7.75,7,0.0 +21875,57,19.5,33,0.0 +21875,28,45.6,25,0.0 +21875,34,14,19,0.0 +21875,10,31,6,0.0 +21875,43,46,41,0.0 +21875,14,23.25,15,0.0 +21875,13,6,12,0.0 +21875,74,10,33,0.0 +21875,27,43.9,22,0.0 +21875,5,21.35,8,0.0 +21875,24,4.5,36,0.0 +21875,17,39,38,0.0 +21875,40,18.4,9,0.0 +21875,9,97,5,0.0 +21875,41,9.65,3,0.0 +21875,63,43.9,45,0.0 +21875,15,15.5,5,0.0 +21876,26,31.23,20,0.0 +21876,5,21.35,11,0.0 +21876,57,19.5,34,0.0 +21876,12,38,23,0.0 +21876,10,31,8,0.0 +21876,60,34,22,0.0 +21876,74,10,46,0.0 +21876,67,14,26,0.0 +21877,62,49.3,15,0.0 +21877,8,40,22,0.0 +21877,67,14,47,0.0 +21877,24,4.5,41,0.0 +21877,1,18,12,0.0 +21877,46,12,42,0.0 +21877,61,28.5,22,0.0 +21877,53,32.8,43,0.0 +21877,63,43.9,42,0.0 +21877,43,46,50,0.0 +21877,6,25,8,0.0 +21877,14,23.25,8,0.0 +21877,66,17,15,0.0 +21877,28,45.6,25,0.0 +21877,34,14,46,0.0 +21877,39,18,2,0.0 +21877,49,20,42,0.0 +21877,3,10,10,0.0 +21878,49,20,43,0.0 +21878,55,24,9,0.0 +21878,70,15,13,0.0 +21878,16,17.45,31,0.0 +21878,23,9,4,0.0 +21878,22,21,29,0.0 +21878,45,9.5,31,0.0 +21878,52,7,49,0.0 +21878,67,14,4,0.0 +21878,48,12.75,48,0.0 +21878,2,19,16,0.0 +21878,36,19,32,0.0 +21878,53,32.8,11,0.0 +21878,21,10,50,0.0 +21878,54,7.45,36,0.0 +21878,62,49.3,11,0.0 +21878,8,40,8,0.0 +21878,51,53,25,0.0 +21878,37,26,37,0.0 +21879,41,9.65,22,0.0 +21879,67,14,39,0.0 +21879,18,62.5,30,0.0 +21879,40,18.4,21,0.0 +21879,55,24,48,0.0 +21879,50,16.25,23,0.0 +21879,17,39,2,0.0 +21879,27,43.9,11,0.0 +21879,45,9.5,47,0.0 +21879,49,20,8,0.0 +21879,72,34.8,5,0.0 +21879,22,21,30,0.0 +21879,6,25,39,0.0 +21879,66,17,42,0.0 +21879,16,17.45,42,0.0 +21879,73,15,15,0.0 +21879,44,19.45,19,0.0 +21879,52,7,5,0.0 +21879,26,31.23,24,0.0 +21879,48,12.75,28,0.0 +21879,62,49.3,13,0.0 +21879,21,10,48,0.0 +21879,37,26,43,0.0 +21879,70,15,24,0.0 +21879,19,9.2,22,0.0 +21879,64,33.25,48,0.0 +21879,74,10,17,0.0 +21879,36,19,36,0.0 +21879,43,46,27,0.0 +21879,11,21,16,0.0 +21879,28,45.6,25,0.0 +21879,8,40,15,0.0 +21879,71,21.5,28,0.0 +21879,75,7.75,23,0.0 +21879,69,36,45,0.0 +21879,65,21.05,49,0.0 +21879,46,12,22,0.0 +21879,34,14,34,0.0 +21879,35,18,4,0.0 +21879,38,263.5,2,0.0 +21879,59,55,31,0.0 +21879,2,19,5,0.0 +21879,42,14,30,0.0 +21879,10,31,31,0.0 +21879,54,7.45,30,0.0 +21879,77,13,41,0.0 +21879,3,10,45,0.0 +21879,57,19.5,1,0.0 +21879,63,43.9,20,0.0 +21879,56,38,13,0.0 +21879,13,6,10,0.0 +21879,33,2.5,37,0.0 +21879,60,34,50,0.0 +21879,76,18,42,0.0 +21879,5,21.35,7,0.0 +21879,53,32.8,37,0.0 +21879,1,18,35,0.0 +21879,23,9,11,0.0 +21879,61,28.5,18,0.0 +21879,25,14,6,0.0 +21879,29,123.79,29,0.0 +21879,47,9.5,16,0.0 +21879,14,23.25,7,0.0 +21879,51,53,13,0.0 +21879,24,4.5,28,0.0 +21879,39,18,24,0.0 +21879,30,25.89,44,0.0 +21879,9,97,19,0.0 +21879,4,22,20,0.0 +21879,12,38,12,0.0 +21879,31,12.5,18,0.0 +21879,7,30,36,0.0 +21879,15,15.5,28,0.0 +21879,58,13.25,20,0.0 +21879,32,32,9,0.0 +21879,20,81,46,0.0 +21879,68,12.5,5,0.0 +21880,62,49.3,11,0.0 +21880,35,18,16,0.0 +21880,9,97,19,0.0 +21880,26,31.23,47,0.0 +21880,76,18,41,0.0 +21880,23,9,9,0.0 +21880,68,12.5,35,0.0 +21880,22,21,22,0.0 +21880,39,18,37,0.0 +21880,4,22,13,0.0 +21880,19,9.2,48,0.0 +21880,64,33.25,16,0.0 +21880,25,14,30,0.0 +21880,41,9.65,26,0.0 +21880,33,2.5,33,0.0 +21880,11,21,49,0.0 +21880,45,9.5,8,0.0 +21880,57,19.5,23,0.0 +21880,47,9.5,41,0.0 +21880,37,26,40,0.0 +21881,71,21.5,5,0.0 +21881,69,36,17,0.0 +21881,11,21,39,0.0 +21881,13,6,16,0.0 +21881,50,16.25,37,0.0 +21881,16,17.45,9,0.0 +21881,45,9.5,1,0.0 +21881,26,31.23,26,0.0 +21881,23,9,24,0.0 +21881,48,12.75,14,0.0 +21881,12,38,14,0.0 +21881,44,19.45,29,0.0 +21881,67,14,13,0.0 +21881,59,55,48,0.0 +21881,58,13.25,44,0.0 +21881,29,123.79,6,0.0 +21881,3,10,14,0.0 +21882,54,7.45,19,0.0 +21882,48,12.75,1,0.0 +21882,12,38,28,0.0 +21882,19,9.2,3,0.0 +21882,15,15.5,46,0.0 +21882,52,7,7,0.0 +21882,7,30,30,0.0 +21882,41,9.65,5,0.0 +21882,60,34,22,0.0 +21882,64,33.25,38,0.0 +21882,67,14,7,0.0 +21882,14,23.25,15,0.0 +21882,23,9,17,0.0 +21882,39,18,15,0.0 +21882,58,13.25,46,0.0 +21882,55,24,43,0.0 +21882,56,38,30,0.0 +21883,71,21.5,46,0.0 +21883,43,46,22,0.0 +21883,46,12,43,0.0 +21883,55,24,18,0.0 +21883,22,21,40,0.0 +21883,51,53,35,0.0 +21883,53,32.8,30,0.0 +21883,54,7.45,17,0.0 +21883,8,40,37,0.0 +21883,24,4.5,8,0.0 +21883,29,123.79,13,0.0 +21883,21,10,24,0.0 +21883,30,25.89,13,0.0 +21883,25,14,39,0.0 +21883,10,31,37,0.0 +21883,56,38,45,0.0 +21883,32,32,20,0.0 +21883,48,12.75,26,0.0 +21883,75,7.75,27,0.0 +21883,27,43.9,28,0.0 +21883,42,14,10,0.0 +21883,14,23.25,7,0.0 +21883,16,17.45,41,0.0 +21883,65,21.05,29,0.0 +21883,49,20,10,0.0 +21883,36,19,47,0.0 +21883,4,22,17,0.0 +21883,1,18,39,0.0 +21883,64,33.25,40,0.0 +21883,3,10,48,0.0 +21883,35,18,44,0.0 +21883,5,21.35,4,0.0 +21883,11,21,35,0.0 +21883,38,263.5,32,0.0 +21883,7,30,23,0.0 +21883,50,16.25,38,0.0 +21883,76,18,43,0.0 +21883,73,15,11,0.0 +21883,39,18,45,0.0 +21883,58,13.25,49,0.0 +21883,69,36,15,0.0 +21883,67,14,1,0.0 +21884,39,18,18,0.0 +21884,6,25,42,0.0 +21884,27,43.9,40,0.0 +21884,13,6,27,0.0 +21884,74,10,22,0.0 +21884,28,45.6,5,0.0 +21884,2,19,46,0.0 +21884,45,9.5,12,0.0 +21884,18,62.5,14,0.0 +21884,24,4.5,13,0.0 +21884,37,26,44,0.0 +21884,48,12.75,38,0.0 +21884,40,18.4,35,0.0 +21884,77,13,35,0.0 +21884,31,12.5,43,0.0 +21884,50,16.25,40,0.0 +21884,38,263.5,4,0.0 +21884,7,30,44,0.0 +21884,8,40,31,0.0 +21884,3,10,34,0.0 +21884,14,23.25,14,0.0 +21884,26,31.23,19,0.0 +21884,76,18,50,0.0 +21884,59,55,23,0.0 +21884,66,17,46,0.0 +21884,46,12,30,0.0 +21884,25,14,30,0.0 +21884,72,34.8,34,0.0 +21884,5,21.35,19,0.0 +21884,30,25.89,13,0.0 +21885,35,18,9,0.0 +21885,18,62.5,11,0.0 +21885,46,12,31,0.0 +21885,42,14,33,0.0 +21885,5,21.35,32,0.0 +21885,12,38,29,0.0 +21885,73,15,21,0.0 +21885,77,13,19,0.0 +21885,19,9.2,40,0.0 +21885,76,18,31,0.0 +21885,21,10,17,0.0 +21885,9,97,1,0.0 +21885,20,81,13,0.0 +21885,68,12.5,21,0.0 +21885,52,7,12,0.0 +21885,70,15,5,0.0 +21885,63,43.9,36,0.0 +21885,75,7.75,40,0.0 +21885,67,14,42,0.0 +21885,39,18,15,0.0 +21885,49,20,36,0.0 +21885,47,9.5,2,0.0 +21885,65,21.05,43,0.0 +21885,56,38,47,0.0 +21885,38,263.5,2,0.0 +21885,43,46,33,0.0 +21885,50,16.25,46,0.0 +21885,57,19.5,26,0.0 +21885,58,13.25,17,0.0 +21885,6,25,40,0.0 +21885,36,19,45,0.0 +21885,37,26,49,0.0 +21885,2,19,34,0.0 +21885,72,34.8,9,0.0 +21885,33,2.5,21,0.0 +21885,60,34,27,0.0 +21885,53,32.8,13,0.0 +21885,16,17.45,13,0.0 +21885,1,18,41,0.0 +21885,4,22,29,0.0 +21885,48,12.75,35,0.0 +21885,51,53,2,0.0 +21885,61,28.5,34,0.0 +21885,10,31,7,0.0 +21885,44,19.45,19,0.0 +21885,55,24,13,0.0 +21885,8,40,14,0.0 +21885,40,18.4,34,0.0 +21885,29,123.79,20,0.0 +21885,41,9.65,45,0.0 +21885,66,17,43,0.0 +21885,26,31.23,47,0.0 +21885,71,21.5,2,0.0 +21885,3,10,34,0.0 +21886,33,2.5,37,0.0 +21886,6,25,21,0.0 +21886,14,23.25,44,0.0 +21886,61,28.5,42,0.0 +21886,62,49.3,20,0.0 +21886,35,18,22,0.0 +21886,68,12.5,12,0.0 +21886,3,10,8,0.0 +21886,41,9.65,39,0.0 +21886,12,38,42,0.0 +21886,45,9.5,24,0.0 +21886,52,7,31,0.0 +21886,32,32,27,0.0 +21886,71,21.5,25,0.0 +21886,21,10,50,0.0 +21886,16,17.45,37,0.0 +21886,70,15,31,0.0 +21886,63,43.9,22,0.0 +21886,7,30,25,0.0 +21886,77,13,34,0.0 +21886,20,81,49,0.0 +21886,26,31.23,20,0.0 +21886,60,34,40,0.0 +21886,54,7.45,17,0.0 +21886,46,12,33,0.0 +21886,28,45.6,34,0.0 +21886,10,31,34,0.0 +21886,43,46,3,0.0 +21886,49,20,24,0.0 +21886,18,62.5,7,0.0 +21886,50,16.25,4,0.0 +21886,66,17,15,0.0 +21886,19,9.2,48,0.0 +21886,22,21,4,0.0 +21886,13,6,4,0.0 +21886,74,10,48,0.0 +21886,24,4.5,2,0.0 +21886,67,14,10,0.0 +21886,34,14,3,0.0 +21886,69,36,45,0.0 +21886,48,12.75,8,0.0 +21886,65,21.05,22,0.0 +21886,73,15,22,0.0 +21886,75,7.75,8,0.0 +21886,4,22,27,0.0 +21886,58,13.25,27,0.0 +21886,64,33.25,35,0.0 +21886,59,55,41,0.0 +21886,38,263.5,7,0.0 +21886,40,18.4,31,0.0 +21886,15,15.5,24,0.0 +21886,72,34.8,34,0.0 +21887,56,38,37,0.0 +21887,65,21.05,19,0.0 +21887,46,12,7,0.0 +21887,10,31,17,0.0 +21887,57,19.5,8,0.0 +21887,40,18.4,46,0.0 +21887,14,23.25,48,0.0 +21887,74,10,9,0.0 +21887,16,17.45,39,0.0 +21887,31,12.5,48,0.0 +21887,27,43.9,35,0.0 +21887,77,13,38,0.0 +21887,34,14,32,0.0 +21887,60,34,50,0.0 +21887,15,15.5,33,0.0 +21887,45,9.5,9,0.0 +21887,30,25.89,21,0.0 +21887,24,4.5,36,0.0 +21887,36,19,47,0.0 +21887,38,263.5,49,0.0 +21887,44,19.45,33,0.0 +21887,2,19,46,0.0 +21887,32,32,41,0.0 +21887,8,40,40,0.0 +21887,20,81,10,0.0 +21887,13,6,20,0.0 +21887,12,38,5,0.0 +21887,52,7,46,0.0 +21887,49,20,27,0.0 +21887,7,30,6,0.0 +21887,42,14,36,0.0 +21887,29,123.79,28,0.0 +21887,26,31.23,32,0.0 +21887,28,45.6,18,0.0 +21887,19,9.2,9,0.0 +21887,67,14,2,0.0 +21887,75,7.75,35,0.0 +21887,48,12.75,5,0.0 +21887,50,16.25,9,0.0 +21887,43,46,43,0.0 +21887,68,12.5,46,0.0 +21887,41,9.65,46,0.0 +21887,59,55,16,0.0 +21887,35,18,11,0.0 +21887,51,53,4,0.0 +21887,1,18,33,0.0 +21887,5,21.35,7,0.0 +21887,11,21,49,0.0 +21887,25,14,34,0.0 +21887,72,34.8,36,0.0 +21887,62,49.3,48,0.0 +21887,69,36,47,0.0 +21887,4,22,38,0.0 +21887,6,25,29,0.0 +21887,17,39,47,0.0 +21887,71,21.5,10,0.0 +21887,18,62.5,20,0.0 +21887,58,13.25,23,0.0 +21887,9,97,23,0.0 +21887,47,9.5,5,0.0 +21887,33,2.5,27,0.0 +21887,53,32.8,31,0.0 +21887,21,10,31,0.0 +21887,64,33.25,34,0.0 +21887,63,43.9,2,0.0 +21887,22,21,43,0.0 +21887,73,15,7,0.0 +21887,23,9,37,0.0 +21887,54,7.45,2,0.0 +21887,61,28.5,13,0.0 +21888,43,46,6,0.0 +21888,6,25,48,0.0 +21888,11,21,50,0.0 +21888,15,15.5,1,0.0 +21888,26,31.23,31,0.0 +21888,42,14,10,0.0 +21888,35,18,32,0.0 +21888,22,21,40,0.0 +21888,25,14,47,0.0 +21888,1,18,29,0.0 +21888,33,2.5,41,0.0 +21888,73,15,35,0.0 +21888,9,97,14,0.0 +21888,40,18.4,50,0.0 +21888,48,12.75,47,0.0 +21888,68,12.5,17,0.0 +21888,64,33.25,17,0.0 +21888,19,9.2,26,0.0 +21888,2,19,11,0.0 +21888,49,20,48,0.0 +21888,30,25.89,42,0.0 +21888,76,18,25,0.0 +21888,20,81,26,0.0 +21888,4,22,37,0.0 +21888,17,39,41,0.0 +21888,59,55,17,0.0 +21888,39,18,17,0.0 +21888,45,9.5,17,0.0 +21888,62,49.3,36,0.0 +21888,16,17.45,22,0.0 +21888,60,34,26,0.0 +21888,50,16.25,50,0.0 +21888,5,21.35,12,0.0 +21888,28,45.6,27,0.0 +21888,47,9.5,25,0.0 +21888,75,7.75,5,0.0 +21888,71,21.5,35,0.0 +21888,46,12,7,0.0 +21888,66,17,17,0.0 +21888,27,43.9,43,0.0 +21888,3,10,47,0.0 +21888,21,10,21,0.0 +21888,38,263.5,10,0.0 +21888,58,13.25,13,0.0 +21888,53,32.8,33,0.0 +21888,29,123.79,33,0.0 +21888,31,12.5,39,0.0 +21888,72,34.8,14,0.0 +21888,63,43.9,2,0.0 +21888,24,4.5,46,0.0 +21888,7,30,4,0.0 +21888,61,28.5,30,0.0 +21888,12,38,22,0.0 +21888,54,7.45,24,0.0 +21888,70,15,39,0.0 +21888,14,23.25,31,0.0 +21888,18,62.5,31,0.0 +21888,67,14,42,0.0 +21888,44,19.45,19,0.0 +21888,10,31,49,0.0 +21888,41,9.65,2,0.0 +21888,51,53,15,0.0 +21889,9,97,20,0.0 +21889,23,9,36,0.0 +21889,68,12.5,10,0.0 +21889,77,13,44,0.0 +21889,49,20,36,0.0 +21889,73,15,20,0.0 +21889,52,7,28,0.0 +21890,32,32,10,0.0 +21890,65,21.05,33,0.0 +21890,10,31,36,0.0 +21890,13,6,33,0.0 +21890,22,21,36,0.0 +21890,34,14,4,0.0 +21890,2,19,23,0.0 +21890,25,14,43,0.0 +21890,33,2.5,17,0.0 +21890,12,38,31,0.0 +21890,56,38,14,0.0 +21890,62,49.3,30,0.0 +21890,44,19.45,13,0.0 +21890,57,19.5,48,0.0 +21890,15,15.5,6,0.0 +21890,37,26,33,0.0 +21890,11,21,22,0.0 +21890,55,24,46,0.0 +21890,19,9.2,16,0.0 +21890,28,45.6,28,0.0 +21890,18,62.5,19,0.0 +21890,63,43.9,40,0.0 +21890,17,39,44,0.0 +21890,31,12.5,38,0.0 +21890,29,123.79,49,0.0 +21890,48,12.75,43,0.0 +21890,6,25,27,0.0 +21890,54,7.45,17,0.0 +21890,46,12,48,0.0 +21890,66,17,4,0.0 +21890,8,40,17,0.0 +21890,26,31.23,18,0.0 +21890,71,21.5,46,0.0 +21890,39,18,50,0.0 +21890,45,9.5,22,0.0 +21890,77,13,36,0.0 +21890,61,28.5,5,0.0 +21890,30,25.89,47,0.0 +21890,68,12.5,13,0.0 +21890,35,18,29,0.0 +21890,64,33.25,33,0.0 +21890,51,53,31,0.0 +21890,50,16.25,13,0.0 +21890,41,9.65,1,0.0 +21890,16,17.45,13,0.0 +21890,60,34,9,0.0 +21890,23,9,4,0.0 +21890,20,81,22,0.0 +21890,3,10,41,0.0 +21890,69,36,47,0.0 +21890,4,22,15,0.0 +21890,14,23.25,17,0.0 +21890,75,7.75,25,0.0 +21890,1,18,46,0.0 +21890,70,15,16,0.0 +21890,42,14,29,0.0 +21890,24,4.5,41,0.0 +21890,76,18,43,0.0 +21890,7,30,11,0.0 +21890,40,18.4,34,0.0 +21890,53,32.8,31,0.0 +21890,52,7,41,0.0 +21890,27,43.9,5,0.0 +21890,49,20,50,0.0 +21890,36,19,50,0.0 +21890,21,10,15,0.0 +21890,67,14,41,0.0 +21890,59,55,12,0.0 +21890,58,13.25,43,0.0 +21890,73,15,28,0.0 +21890,5,21.35,42,0.0 +21890,9,97,35,0.0 +21890,43,46,16,0.0 +21890,47,9.5,12,0.0 +21890,72,34.8,31,0.0 +21891,4,22,32,0.0 +21891,8,40,1,0.0 +21891,35,18,35,0.0 +21891,52,7,48,0.0 +21891,29,123.79,34,0.0 +21891,20,81,19,0.0 +21891,16,17.45,19,0.0 +21891,2,19,1,0.0 +21891,33,2.5,1,0.0 +21891,47,9.5,16,0.0 +21891,65,21.05,12,0.0 +21891,22,21,40,0.0 +21891,23,9,12,0.0 +21891,51,53,32,0.0 +21891,57,19.5,49,0.0 +21891,19,9.2,22,0.0 +21891,27,43.9,16,0.0 +21891,28,45.6,23,0.0 +21891,59,55,43,0.0 +21891,37,26,21,0.0 +21891,69,36,29,0.0 +21891,72,34.8,43,0.0 +21891,53,32.8,4,0.0 +21891,58,13.25,20,0.0 +21891,46,12,40,0.0 +21891,39,18,47,0.0 +21891,10,31,38,0.0 +21891,14,23.25,14,0.0 +21891,26,31.23,31,0.0 +21891,32,32,20,0.0 +21891,75,7.75,49,0.0 +21891,73,15,32,0.0 +21891,48,12.75,39,0.0 +21891,54,7.45,42,0.0 +21891,63,43.9,35,0.0 +21891,34,14,15,0.0 +21891,6,25,30,0.0 +21891,67,14,40,0.0 +21891,61,28.5,50,0.0 +21891,31,12.5,34,0.0 +21891,55,24,43,0.0 +21891,25,14,13,0.0 +21891,21,10,31,0.0 +21891,42,14,28,0.0 +21891,71,21.5,28,0.0 +21891,24,4.5,8,0.0 +21891,43,46,26,0.0 +21891,7,30,7,0.0 +21891,12,38,23,0.0 +21891,56,38,25,0.0 +21891,41,9.65,9,0.0 +21892,68,12.5,32,0.0 +21892,15,15.5,31,0.0 +21892,16,17.45,29,0.0 +21892,69,36,48,0.0 +21892,46,12,4,0.0 +21892,20,81,4,0.0 +21892,47,9.5,4,0.0 +21892,4,22,19,0.0 +21892,58,13.25,47,0.0 +21892,26,31.23,48,0.0 +21892,3,10,22,0.0 +21892,24,4.5,7,0.0 +21892,66,17,8,0.0 +21892,42,14,9,0.0 +21892,10,31,50,0.0 +21892,63,43.9,3,0.0 +21892,56,38,4,0.0 +21892,30,25.89,48,0.0 +21892,38,263.5,32,0.0 +21892,61,28.5,30,0.0 +21892,44,19.45,4,0.0 +21892,27,43.9,17,0.0 +21892,23,9,41,0.0 +21892,14,23.25,23,0.0 +21892,29,123.79,2,0.0 +21892,52,7,50,0.0 +21892,45,9.5,38,0.0 +21892,9,97,45,0.0 +21892,59,55,37,0.0 +21892,33,2.5,39,0.0 +21892,19,9.2,39,0.0 +21892,75,7.75,48,0.0 +21892,8,40,36,0.0 +21892,31,12.5,31,0.0 +21892,21,10,22,0.0 +21892,71,21.5,30,0.0 +21892,62,49.3,35,0.0 +21892,73,15,22,0.0 +21892,34,14,10,0.0 +21892,13,6,12,0.0 +21892,50,16.25,36,0.0 +21892,35,18,5,0.0 +21892,60,34,46,0.0 +21892,22,21,5,0.0 +21892,54,7.45,15,0.0 +21892,74,10,47,0.0 +21892,39,18,31,0.0 +21892,67,14,25,0.0 +21892,65,21.05,9,0.0 +21892,37,26,41,0.0 +21892,6,25,27,0.0 +21892,32,32,3,0.0 +21892,36,19,3,0.0 +21892,25,14,48,0.0 +21892,43,46,5,0.0 +21892,48,12.75,24,0.0 +21892,77,13,44,0.0 +21892,41,9.65,38,0.0 +21892,11,21,49,0.0 +21893,31,12.5,47,0.0 +21893,24,4.5,18,0.0 +21893,55,24,5,0.0 +21893,65,21.05,23,0.0 +21893,35,18,28,0.0 +21893,60,34,12,0.0 +21893,61,28.5,19,0.0 +21893,54,7.45,43,0.0 +21893,50,16.25,12,0.0 +21893,13,6,12,0.0 +21893,58,13.25,24,0.0 +21893,8,40,24,0.0 +21894,34,14,9,0.0 +21894,1,18,2,0.0 +21894,44,19.45,29,0.0 +21894,23,9,50,0.0 +21894,8,40,27,0.0 +21894,38,263.5,17,0.0 +21894,25,14,12,0.0 +21894,14,23.25,25,0.0 +21894,48,12.75,45,0.0 +21894,10,31,2,0.0 +21894,72,34.8,31,0.0 +21894,64,33.25,39,0.0 +21894,6,25,7,0.0 +21894,4,22,8,0.0 +21894,71,21.5,9,0.0 +21894,69,36,37,0.0 +21894,57,19.5,2,0.0 +21894,75,7.75,7,0.0 +21894,37,26,18,0.0 +21895,72,34.8,24,0.0 +21895,15,15.5,3,0.0 +21895,21,10,30,0.0 +21895,47,9.5,47,0.0 +21896,20,81,6,0.0 +21896,24,4.5,48,0.0 +21896,29,123.79,33,0.0 +21896,57,19.5,25,0.0 +21896,65,21.05,47,0.0 +21896,28,45.6,47,0.0 +21896,9,97,24,0.0 +21896,69,36,45,0.0 +21896,7,30,47,0.0 +21896,10,31,2,0.0 +21896,26,31.23,20,0.0 +21896,61,28.5,16,0.0 +21896,33,2.5,18,0.0 +21896,50,16.25,44,0.0 +21896,22,21,33,0.0 +21896,63,43.9,1,0.0 +21896,23,9,15,0.0 +21896,46,12,6,0.0 +21896,52,7,22,0.0 +21896,76,18,22,0.0 +21896,6,25,26,0.0 +21896,31,12.5,42,0.0 +21896,51,53,1,0.0 +21896,13,6,2,0.0 +21896,16,17.45,3,0.0 +21896,18,62.5,22,0.0 +21896,8,40,4,0.0 +21896,70,15,7,0.0 +21896,54,7.45,17,0.0 +21896,42,14,19,0.0 +21896,32,32,33,0.0 +21896,44,19.45,16,0.0 +21896,15,15.5,10,0.0 +21896,60,34,1,0.0 +21896,49,20,8,0.0 +21896,25,14,28,0.0 +21896,36,19,46,0.0 +21896,53,32.8,41,0.0 +21896,45,9.5,50,0.0 +21896,75,7.75,17,0.0 +21896,4,22,33,0.0 +21896,58,13.25,34,0.0 +21896,55,24,23,0.0 +21896,47,9.5,12,0.0 +21896,3,10,32,0.0 +21896,56,38,43,0.0 +21896,48,12.75,10,0.0 +21896,62,49.3,32,0.0 +21896,21,10,12,0.0 +21896,41,9.65,9,0.0 +21897,27,43.9,25,0.0 +21897,9,97,8,0.0 +21897,42,14,6,0.0 +21897,2,19,19,0.0 +21897,22,21,33,0.0 +21897,66,17,13,0.0 +21897,32,32,30,0.0 +21897,16,17.45,6,0.0 +21897,45,9.5,48,0.0 +21897,17,39,43,0.0 +21897,29,123.79,19,0.0 +21897,25,14,46,0.0 +21897,6,25,31,0.0 +21897,1,18,26,0.0 +21897,63,43.9,41,0.0 +21897,49,20,6,0.0 +21897,58,13.25,27,0.0 +21897,50,16.25,47,0.0 +21897,75,7.75,17,0.0 +21897,39,18,33,0.0 +21897,51,53,29,0.0 +21897,21,10,19,0.0 +21897,46,12,38,0.0 +21897,13,6,4,0.0 +21898,16,17.45,19,0.0 +21898,26,31.23,42,0.0 +21898,24,4.5,49,0.0 +21898,33,2.5,4,0.0 +21898,48,12.75,46,0.0 +21898,50,16.25,9,0.0 +21898,76,18,36,0.0 +21898,57,19.5,2,0.0 +21898,58,13.25,41,0.0 +21898,53,32.8,14,0.0 +21898,6,25,32,0.0 +21898,63,43.9,45,0.0 +21898,27,43.9,14,0.0 +21898,56,38,28,0.0 +21898,51,53,15,0.0 +21898,19,9.2,49,0.0 +21898,47,9.5,24,0.0 +21898,21,10,10,0.0 +21898,40,18.4,6,0.0 +21898,36,19,43,0.0 +21898,30,25.89,47,0.0 +21898,74,10,30,0.0 +21898,3,10,13,0.0 +21898,38,263.5,33,0.0 +21898,75,7.75,14,0.0 +21898,20,81,33,0.0 +21898,77,13,10,0.0 +21898,72,34.8,34,0.0 +21898,67,14,33,0.0 +21898,37,26,6,0.0 +21898,34,14,33,0.0 +21898,18,62.5,22,0.0 +21898,44,19.45,17,0.0 +21898,49,20,14,0.0 +21898,7,30,32,0.0 +21898,4,22,16,0.0 +21898,46,12,16,0.0 +21898,23,9,31,0.0 +21898,13,6,8,0.0 +21898,8,40,22,0.0 +21898,60,34,25,0.0 +21898,22,21,35,0.0 +21898,45,9.5,31,0.0 +21898,55,24,9,0.0 +21898,31,12.5,47,0.0 +21898,65,21.05,6,0.0 +21898,42,14,41,0.0 +21898,73,15,24,0.0 +21898,25,14,4,0.0 +21898,43,46,49,0.0 +21898,41,9.65,24,0.0 +21898,2,19,5,0.0 +21898,61,28.5,35,0.0 +21898,39,18,36,0.0 +21898,28,45.6,1,0.0 +21898,68,12.5,7,0.0 +21898,10,31,5,0.0 +21898,54,7.45,6,0.0 +21898,70,15,6,0.0 +21898,17,39,18,0.0 +21899,49,20,24,0.0 +21899,24,4.5,19,0.0 +21899,34,14,1,0.0 +21899,66,17,48,0.0 +21899,67,14,11,0.0 +21899,70,15,40,0.0 +21899,51,53,12,0.0 +21899,32,32,17,0.0 +21899,57,19.5,15,0.0 +21899,41,9.65,1,0.0 +21899,71,21.5,44,0.0 +21899,26,31.23,4,0.0 +21899,45,9.5,9,0.0 +21899,35,18,26,0.0 +21899,15,15.5,23,0.0 +21899,52,7,28,0.0 +21899,44,19.45,34,0.0 +21899,54,7.45,16,0.0 +21899,1,18,31,0.0 +21899,30,25.89,28,0.0 +21899,59,55,45,0.0 +21899,28,45.6,47,0.0 +21899,63,43.9,44,0.0 +21899,37,26,8,0.0 +21899,40,18.4,6,0.0 +21899,7,30,21,0.0 +21899,77,13,12,0.0 +21899,22,21,41,0.0 +21899,6,25,27,0.0 +21899,43,46,15,0.0 +21899,21,10,37,0.0 +21899,56,38,44,0.0 +21899,69,36,11,0.0 +21899,8,40,34,0.0 +21899,73,15,39,0.0 +21899,46,12,28,0.0 +21899,60,34,36,0.0 +21899,18,62.5,44,0.0 +21899,11,21,38,0.0 +21899,20,81,45,0.0 +21899,29,123.79,39,0.0 +21899,68,12.5,48,0.0 +21899,9,97,20,0.0 +21899,65,21.05,27,0.0 +21899,33,2.5,30,0.0 +21899,10,31,11,0.0 +21899,47,9.5,3,0.0 +21899,38,263.5,23,0.0 +21899,74,10,4,0.0 +21899,27,43.9,46,0.0 +21900,15,15.5,20,0.0 +21900,43,46,23,0.0 +21900,48,12.75,16,0.0 +21900,27,43.9,28,0.0 +21900,34,14,19,0.0 +21900,74,10,43,0.0 +21900,36,19,31,0.0 +21900,17,39,17,0.0 +21900,21,10,16,0.0 +21900,3,10,45,0.0 +21900,1,18,10,0.0 +21900,35,18,28,0.0 +21900,42,14,45,0.0 +21900,24,4.5,42,0.0 +21900,5,21.35,40,0.0 +21900,46,12,8,0.0 +21901,27,43.9,48,0.0 +21901,43,46,20,0.0 +21901,57,19.5,33,0.0 +21901,32,32,36,0.0 +21901,56,38,47,0.0 +21902,55,24,39,0.0 +21902,30,25.89,18,0.0 +21902,61,28.5,32,0.0 +21902,77,13,24,0.0 +21902,43,46,42,0.0 +21902,41,9.65,19,0.0 +21902,52,7,7,0.0 +21902,26,31.23,9,0.0 +21902,44,19.45,4,0.0 +21902,13,6,23,0.0 +21902,11,21,9,0.0 +21902,47,9.5,21,0.0 +21902,56,38,46,0.0 +21902,9,97,50,0.0 +21902,16,17.45,37,0.0 +21902,28,45.6,10,0.0 +21902,18,62.5,8,0.0 +21902,5,21.35,41,0.0 +21903,37,26,13,0.0 +21903,26,31.23,21,0.0 +21903,17,39,28,0.0 +21903,56,38,22,0.0 +21903,8,40,35,0.0 +21903,11,21,35,0.0 +21903,52,7,49,0.0 +21903,31,12.5,16,0.0 +21903,47,9.5,23,0.0 +21903,13,6,10,0.0 +21903,62,49.3,4,0.0 +21903,53,32.8,10,0.0 +21903,25,14,34,0.0 +21903,33,2.5,45,0.0 +21903,59,55,13,0.0 +21903,19,9.2,23,0.0 +21903,75,7.75,40,0.0 +21903,28,45.6,48,0.0 +21903,63,43.9,27,0.0 +21903,10,31,11,0.0 +21903,57,19.5,2,0.0 +21903,14,23.25,2,0.0 +21903,66,17,17,0.0 +21903,5,21.35,41,0.0 +21903,65,21.05,36,0.0 +21903,58,13.25,11,0.0 +21903,1,18,16,0.0 +21903,16,17.45,17,0.0 +21903,35,18,9,0.0 +21903,9,97,43,0.0 +21903,77,13,38,0.0 +21903,51,53,4,0.0 +21903,67,14,6,0.0 +21903,42,14,40,0.0 +21903,38,263.5,34,0.0 +21903,7,30,11,0.0 +21904,2,19,47,0.0 +21904,5,21.35,44,0.0 +21904,44,19.45,33,0.0 +21904,45,9.5,7,0.0 +21904,18,62.5,42,0.0 +21904,6,25,29,0.0 +21904,60,34,5,0.0 +21904,73,15,21,0.0 +21904,35,18,17,0.0 +21904,4,22,15,0.0 +21904,22,21,14,0.0 +21904,23,9,5,0.0 +21904,14,23.25,30,0.0 +21904,40,18.4,32,0.0 +21904,43,46,17,0.0 +21904,54,7.45,17,0.0 +21904,15,15.5,16,0.0 +21904,59,55,23,0.0 +21904,58,13.25,16,0.0 +21904,71,21.5,27,0.0 +21904,25,14,48,0.0 +21904,34,14,47,0.0 +21905,17,39,32,0.0 +21905,75,7.75,50,0.0 +21905,58,13.25,21,0.0 +21905,15,15.5,14,0.0 +21905,23,9,8,0.0 +21905,43,46,47,0.0 +21905,53,32.8,14,0.0 +21905,14,23.25,31,0.0 +21905,47,9.5,16,0.0 +21906,75,7.75,6,0.0 +21906,45,9.5,22,0.0 +21906,73,15,24,0.0 +21906,65,21.05,50,0.0 +21906,35,18,17,0.0 +21906,47,9.5,45,0.0 +21906,53,32.8,45,0.0 +21906,66,17,22,0.0 +21906,27,43.9,7,0.0 +21906,69,36,41,0.0 +21906,21,10,36,0.0 +21906,77,13,13,0.0 +21906,33,2.5,27,0.0 +21906,64,33.25,14,0.0 +21906,67,14,21,0.0 +21907,47,9.5,40,0.0 +21907,63,43.9,47,0.0 +21907,51,53,33,0.0 +21908,28,45.6,24,0.0 +21908,1,18,10,0.0 +21908,13,6,49,0.0 +21908,26,31.23,21,0.0 +21908,57,19.5,4,0.0 +21908,77,13,18,0.0 +21908,74,10,24,0.0 +21908,45,9.5,32,0.0 +21908,38,263.5,45,0.0 +21908,29,123.79,24,0.0 +21908,41,9.65,25,0.0 +21908,66,17,47,0.0 +21908,3,10,45,0.0 +21908,20,81,24,0.0 +21908,30,25.89,45,0.0 +21908,48,12.75,2,0.0 +21908,9,97,34,0.0 +21908,24,4.5,12,0.0 +21908,5,21.35,24,0.0 +21908,51,53,38,0.0 +21908,40,18.4,23,0.0 +21908,75,7.75,1,0.0 +21908,52,7,16,0.0 +21908,60,34,44,0.0 +21908,68,12.5,31,0.0 +21908,15,15.5,21,0.0 +21908,64,33.25,50,0.0 +21908,37,26,8,0.0 +21908,54,7.45,34,0.0 +21908,14,23.25,36,0.0 +21908,4,22,14,0.0 +21908,59,55,39,0.0 +21908,19,9.2,35,0.0 +21908,49,20,40,0.0 +21908,53,32.8,10,0.0 +21908,25,14,39,0.0 +21908,46,12,4,0.0 +21908,44,19.45,43,0.0 +21908,31,12.5,47,0.0 +21908,50,16.25,41,0.0 +21908,69,36,33,0.0 +21908,7,30,40,0.0 +21908,58,13.25,32,0.0 +21908,72,34.8,16,0.0 +21908,16,17.45,11,0.0 +21908,67,14,9,0.0 +21908,10,31,8,0.0 +21908,2,19,33,0.0 +21908,12,38,23,0.0 +21908,11,21,34,0.0 +21908,39,18,50,0.0 +21908,23,9,5,0.0 +21908,73,15,23,0.0 +21908,32,32,45,0.0 +21908,18,62.5,20,0.0 +21908,21,10,12,0.0 +21908,56,38,10,0.0 +21908,76,18,23,0.0 +21908,34,14,20,0.0 +21908,22,21,28,0.0 +21908,17,39,1,0.0 +21908,55,24,25,0.0 +21908,35,18,38,0.0 +21908,71,21.5,47,0.0 +21908,62,49.3,8,0.0 +21908,70,15,48,0.0 +21908,65,21.05,2,0.0 +21908,47,9.5,48,0.0 +21908,36,19,22,0.0 +21908,61,28.5,13,0.0 +21909,75,7.75,46,0.0 +21909,26,31.23,18,0.0 +21909,35,18,7,0.0 +21909,56,38,10,0.0 +21909,49,20,3,0.0 +21909,37,26,37,0.0 +21909,67,14,48,0.0 +21909,16,17.45,3,0.0 +21909,58,13.25,46,0.0 +21909,55,24,49,0.0 +21909,39,18,36,0.0 +21909,73,15,28,0.0 +21909,43,46,20,0.0 +21909,52,7,10,0.0 +21909,3,10,15,0.0 +21909,27,43.9,30,0.0 +21909,70,15,30,0.0 +21909,25,14,20,0.0 +21909,8,40,9,0.0 +21909,62,49.3,17,0.0 +21909,76,18,47,0.0 +21909,33,2.5,17,0.0 +21909,41,9.65,32,0.0 +21909,15,15.5,32,0.0 +21909,46,12,36,0.0 +21909,65,21.05,47,0.0 +21909,30,25.89,28,0.0 +21909,68,12.5,34,0.0 +21909,47,9.5,24,0.0 +21909,54,7.45,3,0.0 +21909,72,34.8,42,0.0 +21909,59,55,46,0.0 +21909,7,30,4,0.0 +21909,9,97,12,0.0 +21909,38,263.5,14,0.0 +21909,32,32,23,0.0 +21909,57,19.5,3,0.0 +21909,74,10,8,0.0 +21909,17,39,10,0.0 +21909,42,14,10,0.0 +21909,51,53,16,0.0 +21909,6,25,41,0.0 +21910,5,21.35,39,0.0 +21910,12,38,6,0.0 +21910,55,24,26,0.0 +21910,16,17.45,24,0.0 +21910,65,21.05,25,0.0 +21910,11,21,20,0.0 +21910,69,36,19,0.0 +21910,21,10,24,0.0 +21910,50,16.25,25,0.0 +21910,36,19,27,0.0 +21910,32,32,29,0.0 +21910,37,26,35,0.0 +21910,75,7.75,4,0.0 +21910,1,18,31,0.0 +21910,42,14,21,0.0 +21910,70,15,4,0.0 +21910,47,9.5,43,0.0 +21910,38,263.5,22,0.0 +21910,46,12,22,0.0 +21910,17,39,9,0.0 +21910,51,53,30,0.0 +21910,30,25.89,37,0.0 +21910,49,20,46,0.0 +21910,45,9.5,31,0.0 +21910,64,33.25,21,0.0 +21910,48,12.75,14,0.0 +21910,28,45.6,27,0.0 +21910,25,14,44,0.0 +21910,41,9.65,39,0.0 +21910,59,55,31,0.0 +21910,40,18.4,32,0.0 +21910,6,25,44,0.0 +21910,58,13.25,1,0.0 +21910,62,49.3,38,0.0 +21910,43,46,23,0.0 +21910,35,18,33,0.0 +21910,76,18,15,0.0 +21910,61,28.5,3,0.0 +21910,33,2.5,11,0.0 +21910,72,34.8,12,0.0 +21910,9,97,21,0.0 +21910,2,19,39,0.0 +21910,77,13,15,0.0 +21910,44,19.45,20,0.0 +21911,42,14,14,0.0 +21911,38,263.5,8,0.0 +21911,6,25,48,0.0 +21911,23,9,8,0.0 +21911,37,26,16,0.0 +21911,52,7,26,0.0 +21911,34,14,20,0.0 +21911,8,40,32,0.0 +21911,24,4.5,31,0.0 +21911,67,14,44,0.0 +21911,7,30,25,0.0 +21911,70,15,6,0.0 +21911,61,28.5,47,0.0 +21911,4,22,45,0.0 +21911,21,10,37,0.0 +21911,28,45.6,37,0.0 +21911,75,7.75,13,0.0 +21911,20,81,17,0.0 +21911,1,18,48,0.0 +21911,48,12.75,15,0.0 +21911,66,17,27,0.0 +21911,76,18,14,0.0 +21911,14,23.25,13,0.0 +21911,26,31.23,35,0.0 +21911,46,12,39,0.0 +21911,27,43.9,14,0.0 +21911,13,6,29,0.0 +21911,19,9.2,22,0.0 +21911,77,13,24,0.0 +21911,49,20,13,0.0 +21911,29,123.79,32,0.0 +21911,43,46,40,0.0 +21911,64,33.25,32,0.0 +21911,39,18,13,0.0 +21911,72,34.8,25,0.0 +21911,15,15.5,40,0.0 +21911,40,18.4,7,0.0 +21911,9,97,10,0.0 +21911,71,21.5,12,0.0 +21911,2,19,23,0.0 +21911,59,55,14,0.0 +21911,69,36,17,0.0 +21912,6,25,30,0.0 +21912,24,4.5,50,0.0 +21912,48,12.75,32,0.0 +21912,3,10,21,0.0 +21912,25,14,20,0.0 +21912,72,34.8,50,0.0 +21912,56,38,22,0.0 +21912,52,7,4,0.0 +21912,41,9.65,19,0.0 +21912,15,15.5,42,0.0 +21912,76,18,43,0.0 +21912,53,32.8,10,0.0 +21912,74,10,42,0.0 +21912,18,62.5,14,0.0 +21912,50,16.25,15,0.0 +21912,71,21.5,10,0.0 +21912,32,32,17,0.0 +21912,70,15,13,0.0 +21912,22,21,48,0.0 +21912,45,9.5,21,0.0 +21912,30,25.89,38,0.0 +21912,7,30,38,0.0 +21912,51,53,30,0.0 +21912,28,45.6,5,0.0 +21912,10,31,38,0.0 +21912,2,19,47,0.0 +21912,69,36,1,0.0 +21912,42,14,27,0.0 +21912,19,9.2,4,0.0 +21912,4,22,39,0.0 +21912,73,15,43,0.0 +21912,40,18.4,43,0.0 +21912,66,17,40,0.0 +21912,54,7.45,14,0.0 +21912,35,18,43,0.0 +21912,16,17.45,7,0.0 +21912,68,12.5,20,0.0 +21912,33,2.5,7,0.0 +21912,62,49.3,1,0.0 +21912,49,20,30,0.0 +21912,44,19.45,10,0.0 +21912,13,6,11,0.0 +21912,36,19,39,0.0 +21912,23,9,41,0.0 +21912,29,123.79,46,0.0 +21912,65,21.05,2,0.0 +21912,46,12,37,0.0 +21912,58,13.25,38,0.0 +21912,12,38,49,0.0 +21912,67,14,25,0.0 +21912,14,23.25,4,0.0 +21912,59,55,43,0.0 +21912,43,46,15,0.0 +21912,75,7.75,12,0.0 +21912,20,81,27,0.0 +21912,61,28.5,34,0.0 +21912,77,13,47,0.0 +21913,17,39,12,0.0 +21913,16,17.45,9,0.0 +21913,31,12.5,14,0.0 +21913,43,46,14,0.0 +21913,22,21,24,0.0 +21913,13,6,27,0.0 +21913,14,23.25,50,0.0 +21913,55,24,7,0.0 +21913,1,18,37,0.0 +21913,42,14,38,0.0 +21913,34,14,32,0.0 +21913,75,7.75,47,0.0 +21913,21,10,40,0.0 +21913,48,12.75,40,0.0 +21913,20,81,17,0.0 +21913,11,21,16,0.0 +21913,41,9.65,1,0.0 +21913,24,4.5,28,0.0 +21913,76,18,5,0.0 +21913,6,25,11,0.0 +21913,58,13.25,30,0.0 +21913,67,14,36,0.0 +21913,59,55,15,0.0 +21913,72,34.8,9,0.0 +21913,33,2.5,3,0.0 +21913,4,22,33,0.0 +21913,5,21.35,21,0.0 +21913,10,31,30,0.0 +21913,69,36,34,0.0 +21913,27,43.9,9,0.0 +21913,25,14,34,0.0 +21913,53,32.8,37,0.0 +21913,15,15.5,13,0.0 +21913,9,97,25,0.0 +21913,46,12,6,0.0 +21913,71,21.5,30,0.0 +21913,70,15,7,0.0 +21913,64,33.25,11,0.0 +21913,56,38,40,0.0 +21913,36,19,31,0.0 +21913,26,31.23,34,0.0 +21913,18,62.5,30,0.0 +21914,26,31.23,4,0.0 +21914,40,18.4,13,0.0 +21914,20,81,12,0.0 +21914,76,18,20,0.0 +21914,58,13.25,46,0.0 +21914,17,39,27,0.0 +21914,52,7,14,0.0 +21914,55,24,26,0.0 +21914,43,46,27,0.0 +21914,77,13,26,0.0 +21914,5,21.35,11,0.0 +21914,38,263.5,50,0.0 +21914,12,38,24,0.0 +21914,59,55,44,0.0 +21914,19,9.2,12,0.0 +21914,13,6,41,0.0 +21914,53,32.8,38,0.0 +21914,51,53,13,0.0 +21914,49,20,50,0.0 +21914,8,40,15,0.0 +21914,45,9.5,46,0.0 +21914,65,21.05,15,0.0 +21914,23,9,2,0.0 +21914,67,14,31,0.0 +21914,24,4.5,40,0.0 +21914,50,16.25,12,0.0 +21914,70,15,21,0.0 +21914,34,14,15,0.0 +21914,44,19.45,39,0.0 +21914,61,28.5,49,0.0 +21914,31,12.5,15,0.0 +21914,41,9.65,3,0.0 +21914,14,23.25,29,0.0 +21914,64,33.25,26,0.0 +21914,2,19,17,0.0 +21914,39,18,46,0.0 +21914,60,34,5,0.0 +21914,75,7.75,12,0.0 +21914,63,43.9,14,0.0 +21914,11,21,37,0.0 +21914,29,123.79,35,0.0 +21914,62,49.3,13,0.0 +21914,28,45.6,22,0.0 +21914,42,14,15,0.0 +21914,21,10,15,0.0 +21914,37,26,11,0.0 +21914,18,62.5,21,0.0 +21914,35,18,23,0.0 +21914,71,21.5,29,0.0 +21914,33,2.5,47,0.0 +21914,15,15.5,26,0.0 +21914,1,18,26,0.0 +21914,27,43.9,14,0.0 +21914,6,25,7,0.0 +21914,46,12,4,0.0 +21914,47,9.5,27,0.0 +21914,68,12.5,3,0.0 +21914,16,17.45,38,0.0 +21914,30,25.89,28,0.0 +21914,9,97,45,0.0 +21914,3,10,24,0.0 +21914,7,30,17,0.0 +21914,32,32,29,0.0 +21914,73,15,37,0.0 +21914,56,38,48,0.0 +21914,25,14,49,0.0 +21914,69,36,8,0.0 +21914,22,21,32,0.0 +21914,66,17,28,0.0 +21914,36,19,37,0.0 +21914,72,34.8,28,0.0 +21914,10,31,32,0.0 +21914,48,12.75,38,0.0 +21914,54,7.45,10,0.0 +21914,74,10,18,0.0 +21914,57,19.5,50,0.0 +21914,4,22,26,0.0 +21915,63,43.9,6,0.0 +21915,1,18,46,0.0 +21915,39,18,31,0.0 +21915,32,32,21,0.0 +21915,10,31,20,0.0 +21915,73,15,49,0.0 +21915,37,26,32,0.0 +21915,27,43.9,10,0.0 +21915,70,15,33,0.0 +21915,6,25,19,0.0 +21915,40,18.4,33,0.0 +21915,13,6,30,0.0 +21915,71,21.5,17,0.0 +21915,20,81,32,0.0 +21915,69,36,22,0.0 +21915,74,10,44,0.0 +21915,3,10,42,0.0 +21915,47,9.5,38,0.0 +21915,54,7.45,47,0.0 +21915,77,13,28,0.0 +21915,5,21.35,15,0.0 +21915,12,38,12,0.0 +21915,49,20,22,0.0 +21915,4,22,5,0.0 +21915,34,14,19,0.0 +21915,45,9.5,31,0.0 +21915,29,123.79,12,0.0 +21915,76,18,47,0.0 +21915,43,46,16,0.0 +21915,2,19,41,0.0 +21915,57,19.5,19,0.0 +21915,55,24,19,0.0 +21915,8,40,21,0.0 +21915,72,34.8,34,0.0 +21915,65,21.05,1,0.0 +21915,44,19.45,14,0.0 +21915,62,49.3,35,0.0 +21915,48,12.75,17,0.0 +21915,18,62.5,14,0.0 +21915,24,4.5,46,0.0 +21915,46,12,32,0.0 +21915,67,14,21,0.0 +21915,28,45.6,46,0.0 +21915,68,12.5,36,0.0 +21915,30,25.89,45,0.0 +21915,16,17.45,7,0.0 +21915,50,16.25,36,0.0 +21915,14,23.25,44,0.0 +21915,52,7,23,0.0 +21915,41,9.65,34,0.0 +21915,19,9.2,1,0.0 +21915,15,15.5,26,0.0 +21915,23,9,14,0.0 +21915,9,97,35,0.0 +21915,51,53,20,0.0 +21915,75,7.75,3,0.0 +21915,38,263.5,48,0.0 +21915,25,14,50,0.0 +21915,56,38,17,0.0 +21915,64,33.25,50,0.0 +21915,42,14,28,0.0 +21915,35,18,8,0.0 +21915,31,12.5,15,0.0 +21915,26,31.23,19,0.0 +21915,58,13.25,50,0.0 +21915,21,10,50,0.0 +21915,36,19,7,0.0 +21915,17,39,9,0.0 +21916,21,10,21,0.0 +21916,48,12.75,42,0.0 +21916,69,36,25,0.0 +21916,46,12,11,0.0 +21916,4,22,9,0.0 +21916,62,49.3,17,0.0 +21916,74,10,37,0.0 +21916,38,263.5,6,0.0 +21916,20,81,39,0.0 +21916,52,7,39,0.0 +21916,66,17,36,0.0 +21916,6,25,13,0.0 +21916,23,9,42,0.0 +21916,14,23.25,42,0.0 +21916,36,19,30,0.0 +21916,40,18.4,2,0.0 +21916,67,14,3,0.0 +21916,1,18,47,0.0 +21916,15,15.5,11,0.0 +21916,17,39,7,0.0 +21916,73,15,3,0.0 +21916,7,30,42,0.0 +21916,22,21,22,0.0 +21916,10,31,43,0.0 +21917,63,43.9,14,0.0 +21917,9,97,17,0.0 +21917,46,12,33,0.0 +21917,68,12.5,3,0.0 +21917,17,39,3,0.0 +21917,71,21.5,39,0.0 +21917,76,18,42,0.0 +21917,48,12.75,43,0.0 +21917,73,15,35,0.0 +21917,55,24,44,0.0 +21917,59,55,29,0.0 +21917,25,14,38,0.0 +21917,49,20,2,0.0 +21917,64,33.25,31,0.0 +21917,72,34.8,12,0.0 +21917,45,9.5,5,0.0 +21917,74,10,41,0.0 +21917,16,17.45,8,0.0 +21917,31,12.5,41,0.0 +21917,27,43.9,23,0.0 +21917,54,7.45,49,0.0 +21917,43,46,36,0.0 +21917,65,21.05,25,0.0 +21917,21,10,50,0.0 +21917,32,32,32,0.0 +21917,13,6,6,0.0 +21917,22,21,48,0.0 +21917,5,21.35,15,0.0 +21917,3,10,43,0.0 +21917,56,38,45,0.0 +21917,70,15,34,0.0 +21917,40,18.4,3,0.0 +21917,77,13,30,0.0 +21917,14,23.25,50,0.0 +21917,44,19.45,6,0.0 +21917,15,15.5,36,0.0 +21917,8,40,15,0.0 +21917,34,14,27,0.0 +21917,61,28.5,6,0.0 +21917,6,25,10,0.0 +21917,11,21,47,0.0 +21917,67,14,2,0.0 +21917,51,53,39,0.0 +21917,1,18,29,0.0 +21917,12,38,21,0.0 +21917,20,81,39,0.0 +21917,10,31,42,0.0 +21917,52,7,42,0.0 +21917,33,2.5,6,0.0 +21917,4,22,37,0.0 +21917,66,17,33,0.0 +21917,7,30,31,0.0 +21917,42,14,13,0.0 +21917,41,9.65,32,0.0 +21917,75,7.75,50,0.0 +21917,35,18,5,0.0 +21917,36,19,7,0.0 +21917,19,9.2,6,0.0 +21917,58,13.25,29,0.0 +21917,29,123.79,13,0.0 +21917,62,49.3,21,0.0 +21917,37,26,6,0.0 +21917,57,19.5,43,0.0 +21917,39,18,14,0.0 +21917,60,34,15,0.0 +21917,53,32.8,35,0.0 +21917,24,4.5,9,0.0 +21917,26,31.23,16,0.0 +21917,30,25.89,37,0.0 +21917,47,9.5,35,0.0 +21917,69,36,10,0.0 +21917,23,9,18,0.0 +21917,38,263.5,31,0.0 +21917,2,19,38,0.0 +21917,18,62.5,21,0.0 +21917,50,16.25,1,0.0 +21917,28,45.6,4,0.0 +21918,27,43.9,25,0.0 +21918,54,7.45,35,0.0 +21918,58,13.25,42,0.0 +21918,22,21,17,0.0 +21918,64,33.25,25,0.0 +21918,36,19,18,0.0 +21918,18,62.5,11,0.0 +21918,21,10,34,0.0 +21918,76,18,39,0.0 +21918,57,19.5,21,0.0 +21918,45,9.5,12,0.0 +21918,74,10,35,0.0 +21918,47,9.5,17,0.0 +21918,77,13,34,0.0 +21918,37,26,7,0.0 +21918,12,38,24,0.0 +21918,75,7.75,1,0.0 +21918,31,12.5,27,0.0 +21918,8,40,28,0.0 +21918,17,39,33,0.0 +21918,38,263.5,8,0.0 +21918,56,38,3,0.0 +21918,61,28.5,42,0.0 +21918,30,25.89,27,0.0 +21918,26,31.23,9,0.0 +21918,23,9,13,0.0 +21918,40,18.4,48,0.0 +21918,11,21,49,0.0 +21918,62,49.3,49,0.0 +21918,9,97,36,0.0 +21918,55,24,29,0.0 +21918,7,30,2,0.0 +21918,19,9.2,13,0.0 +21918,43,46,38,0.0 +21918,15,15.5,2,0.0 +21918,13,6,35,0.0 +21918,69,36,17,0.0 +21918,68,12.5,8,0.0 +21918,46,12,37,0.0 +21918,60,34,11,0.0 +21918,34,14,31,0.0 +21918,41,9.65,13,0.0 +21918,63,43.9,24,0.0 +21919,28,45.6,26,0.0 +21919,32,32,28,0.0 +21919,13,6,26,0.0 +21919,18,62.5,26,0.0 +21919,43,46,38,0.0 +21919,74,10,31,0.0 +21919,45,9.5,9,0.0 +21919,27,43.9,45,0.0 +21919,14,23.25,42,0.0 +21919,73,15,19,0.0 +21919,1,18,37,0.0 +21919,37,26,1,0.0 +21919,57,19.5,5,0.0 +21919,40,18.4,46,0.0 +21919,52,7,28,0.0 +21919,60,34,8,0.0 +21919,48,12.75,9,0.0 +21919,41,9.65,23,0.0 +21919,58,13.25,28,0.0 +21919,29,123.79,28,0.0 +21919,72,34.8,11,0.0 +21919,20,81,37,0.0 +21919,5,21.35,27,0.0 +21919,71,21.5,27,0.0 +21919,38,263.5,31,0.0 +21919,36,19,30,0.0 +21919,8,40,23,0.0 +21919,34,14,15,0.0 +21919,35,18,21,0.0 +21919,47,9.5,25,0.0 +21919,69,36,4,0.0 +21919,76,18,20,0.0 +21919,66,17,3,0.0 +21919,70,15,33,0.0 +21919,39,18,23,0.0 +21919,22,21,46,0.0 +21919,49,20,16,0.0 +21919,23,9,28,0.0 +21919,44,19.45,45,0.0 +21919,25,14,46,0.0 +21919,54,7.45,32,0.0 +21919,53,32.8,19,0.0 +21919,15,15.5,30,0.0 +21919,50,16.25,19,0.0 +21919,4,22,29,0.0 +21919,63,43.9,41,0.0 +21919,51,53,50,0.0 +21919,2,19,44,0.0 +21919,17,39,36,0.0 +21919,68,12.5,49,0.0 +21919,11,21,28,0.0 +21919,9,97,38,0.0 +21919,46,12,21,0.0 +21919,61,28.5,25,0.0 +21919,3,10,23,0.0 +21919,16,17.45,41,0.0 +21919,56,38,1,0.0 +21919,26,31.23,38,0.0 +21919,42,14,49,0.0 +21919,62,49.3,19,0.0 +21919,67,14,47,0.0 +21919,59,55,19,0.0 +21919,12,38,8,0.0 +21919,31,12.5,11,0.0 +21919,77,13,10,0.0 +21919,21,10,20,0.0 +21919,6,25,50,0.0 +21919,24,4.5,10,0.0 +21919,75,7.75,17,0.0 +21920,23,9,17,0.0 +21920,41,9.65,32,0.0 +21920,20,81,11,0.0 +21920,70,15,27,0.0 +21920,7,30,2,0.0 +21920,24,4.5,46,0.0 +21920,40,18.4,20,0.0 +21920,66,17,5,0.0 +21920,33,2.5,8,0.0 +21920,18,62.5,11,0.0 +21920,15,15.5,44,0.0 +21920,6,25,20,0.0 +21920,48,12.75,15,0.0 +21920,71,21.5,1,0.0 +21920,60,34,45,0.0 +21920,10,31,2,0.0 +21920,69,36,33,0.0 +21920,9,97,25,0.0 +21920,26,31.23,6,0.0 +21920,27,43.9,12,0.0 +21920,2,19,23,0.0 +21920,50,16.25,41,0.0 +21920,51,53,7,0.0 +21920,74,10,9,0.0 +21920,43,46,33,0.0 +21920,39,18,39,0.0 +21920,53,32.8,7,0.0 +21920,12,38,36,0.0 +21920,29,123.79,28,0.0 +21920,25,14,38,0.0 +21920,42,14,41,0.0 +21920,11,21,48,0.0 +21920,37,26,3,0.0 +21920,64,33.25,23,0.0 +21920,62,49.3,47,0.0 +21920,65,21.05,23,0.0 +21920,73,15,17,0.0 +21920,61,28.5,23,0.0 +21920,36,19,50,0.0 +21920,76,18,35,0.0 +21920,32,32,25,0.0 +21920,52,7,5,0.0 +21920,72,34.8,48,0.0 +21920,75,7.75,3,0.0 +21920,21,10,22,0.0 +21920,31,12.5,29,0.0 +21921,75,7.75,2,0.0 +21921,55,24,45,0.0 +21921,64,33.25,31,0.0 +21921,56,38,3,0.0 +21921,3,10,2,0.0 +21921,6,25,8,0.0 +21921,33,2.5,3,0.0 +21921,52,7,1,0.0 +21921,69,36,27,0.0 +21921,14,23.25,36,0.0 +21921,50,16.25,47,0.0 +21921,15,15.5,17,0.0 +21921,20,81,11,0.0 +21921,44,19.45,22,0.0 +21921,27,43.9,45,0.0 +21921,58,13.25,28,0.0 +21921,38,263.5,19,0.0 +21921,45,9.5,32,0.0 +21921,1,18,31,0.0 +21921,16,17.45,21,0.0 +21921,72,34.8,20,0.0 +21921,39,18,32,0.0 +21921,42,14,30,0.0 +21921,62,49.3,25,0.0 +21921,60,34,14,0.0 +21921,5,21.35,8,0.0 +21921,53,32.8,20,0.0 +21921,32,32,31,0.0 +21922,73,15,29,0.0 +21922,71,21.5,26,0.0 +21922,23,9,12,0.0 +21922,15,15.5,42,0.0 +21922,59,55,20,0.0 +21922,74,10,8,0.0 +21922,52,7,8,0.0 +21922,12,38,20,0.0 +21922,28,45.6,1,0.0 +21922,31,12.5,31,0.0 +21922,61,28.5,3,0.0 +21922,48,12.75,31,0.0 +21922,54,7.45,45,0.0 +21922,33,2.5,37,0.0 +21922,19,9.2,15,0.0 +21922,18,62.5,5,0.0 +21922,16,17.45,22,0.0 +21922,30,25.89,22,0.0 +21922,10,31,11,0.0 +21922,68,12.5,5,0.0 +21922,43,46,34,0.0 +21922,14,23.25,33,0.0 +21922,64,33.25,50,0.0 +21922,11,21,49,0.0 +21922,2,19,40,0.0 +21922,50,16.25,32,0.0 +21922,6,25,36,0.0 +21922,38,263.5,29,0.0 +21922,35,18,13,0.0 +21922,62,49.3,15,0.0 +21922,70,15,11,0.0 +21922,29,123.79,40,0.0 +21922,17,39,47,0.0 +21922,76,18,8,0.0 +21922,75,7.75,32,0.0 +21922,56,38,42,0.0 +21922,47,9.5,24,0.0 +21922,55,24,15,0.0 +21922,69,36,23,0.0 +21922,51,53,35,0.0 +21922,45,9.5,12,0.0 +21922,39,18,9,0.0 +21922,24,4.5,19,0.0 +21922,46,12,33,0.0 +21922,72,34.8,39,0.0 +21922,42,14,48,0.0 +21922,1,18,44,0.0 +21922,36,19,12,0.0 +21922,4,22,14,0.0 +21922,65,21.05,16,0.0 +21922,25,14,3,0.0 +21922,66,17,28,0.0 +21922,58,13.25,16,0.0 +21922,34,14,36,0.0 +21922,53,32.8,46,0.0 +21922,77,13,37,0.0 +21922,32,32,38,0.0 +21922,22,21,21,0.0 +21922,3,10,12,0.0 +21922,57,19.5,40,0.0 +21922,7,30,32,0.0 +21922,60,34,50,0.0 +21923,20,81,23,0.0 +21923,63,43.9,23,0.0 +21923,36,19,48,0.0 +21923,46,12,38,0.0 +21923,8,40,25,0.0 +21923,23,9,49,0.0 +21923,62,49.3,42,0.0 +21923,15,15.5,38,0.0 +21923,43,46,10,0.0 +21923,56,38,14,0.0 +21923,61,28.5,15,0.0 +21923,30,25.89,9,0.0 +21923,53,32.8,39,0.0 +21923,12,38,6,0.0 +21923,28,45.6,8,0.0 +21923,44,19.45,23,0.0 +21923,68,12.5,17,0.0 +21923,9,97,4,0.0 +21923,11,21,7,0.0 +21923,4,22,38,0.0 +21923,34,14,29,0.0 +21923,77,13,8,0.0 +21923,21,10,33,0.0 +21923,50,16.25,15,0.0 +21923,2,19,40,0.0 +21923,70,15,30,0.0 +21923,75,7.75,17,0.0 +21923,16,17.45,17,0.0 +21923,51,53,47,0.0 +21923,27,43.9,24,0.0 +21923,13,6,12,0.0 +21923,41,9.65,18,0.0 +21923,37,26,41,0.0 +21923,64,33.25,45,0.0 +21923,52,7,8,0.0 +21923,71,21.5,30,0.0 +21923,1,18,49,0.0 +21923,40,18.4,4,0.0 +21923,69,36,14,0.0 +21923,5,21.35,22,0.0 +21923,29,123.79,4,0.0 +21923,72,34.8,13,0.0 +21923,6,25,22,0.0 +21923,38,263.5,17,0.0 +21923,14,23.25,1,0.0 +21923,24,4.5,37,0.0 +21923,25,14,17,0.0 +21923,67,14,7,0.0 +21924,33,2.5,5,0.0 +21924,22,21,15,0.0 +21924,42,14,34,0.0 +21924,6,25,16,0.0 +21924,54,7.45,22,0.0 +21924,60,34,14,0.0 +21924,15,15.5,22,0.0 +21924,25,14,27,0.0 +21924,2,19,21,0.0 +21924,11,21,43,0.0 +21924,66,17,49,0.0 +21924,28,45.6,47,0.0 +21924,46,12,41,0.0 +21924,30,25.89,32,0.0 +21924,7,30,16,0.0 +21924,24,4.5,49,0.0 +21924,26,31.23,1,0.0 +21924,48,12.75,7,0.0 +21924,51,53,23,0.0 +21924,4,22,39,0.0 +21924,58,13.25,38,0.0 +21924,44,19.45,45,0.0 +21924,71,21.5,27,0.0 +21924,76,18,2,0.0 +21924,12,38,18,0.0 +21924,37,26,17,0.0 +21924,10,31,47,0.0 +21924,68,12.5,46,0.0 +21925,32,32,14,0.0 +21925,29,123.79,41,0.0 +21925,21,10,3,0.0 +21925,59,55,27,0.0 +21925,57,19.5,3,0.0 +21925,3,10,37,0.0 +21925,55,24,27,0.0 +21925,45,9.5,26,0.0 +21925,33,2.5,44,0.0 +21925,52,7,9,0.0 +21925,25,14,42,0.0 +21925,63,43.9,6,0.0 +21925,49,20,11,0.0 +21925,15,15.5,24,0.0 +21925,41,9.65,6,0.0 +21925,39,18,40,0.0 +21926,22,21,40,0.0 +21926,2,19,27,0.0 +21926,74,10,15,0.0 +21926,31,12.5,23,0.0 +21926,1,18,37,0.0 +21926,24,4.5,45,0.0 +21926,71,21.5,28,0.0 +21926,35,18,15,0.0 +21926,8,40,33,0.0 +21926,25,14,10,0.0 +21926,50,16.25,47,0.0 +21926,51,53,31,0.0 +21926,21,10,27,0.0 +21926,42,14,16,0.0 +21926,57,19.5,5,0.0 +21926,39,18,15,0.0 +21926,56,38,23,0.0 +21926,64,33.25,6,0.0 +21926,38,263.5,3,0.0 +21926,53,32.8,47,0.0 +21926,10,31,50,0.0 +21926,60,34,15,0.0 +21926,33,2.5,50,0.0 +21926,62,49.3,10,0.0 +21926,61,28.5,13,0.0 +21926,59,55,39,0.0 +21926,47,9.5,21,0.0 +21926,40,18.4,33,0.0 +21926,27,43.9,4,0.0 +21926,52,7,18,0.0 +21926,67,14,48,0.0 +21926,7,30,24,0.0 +21926,55,24,25,0.0 +21926,49,20,30,0.0 +21927,29,123.79,50,0.0 +21927,24,4.5,26,0.0 +21927,73,15,15,0.0 +21927,42,14,2,0.0 +21927,11,21,46,0.0 +21927,18,62.5,14,0.0 +21927,43,46,12,0.0 +21927,28,45.6,2,0.0 +21927,72,34.8,2,0.0 +21927,48,12.75,21,0.0 +21927,4,22,24,0.0 +21927,7,30,33,0.0 +21927,65,21.05,45,0.0 +21927,33,2.5,37,0.0 +21927,36,19,14,0.0 +21927,75,7.75,20,0.0 +21927,49,20,40,0.0 +21927,22,21,6,0.0 +21927,20,81,36,0.0 +21927,58,13.25,12,0.0 +21927,45,9.5,18,0.0 +21927,55,24,41,0.0 +21927,51,53,1,0.0 +21927,14,23.25,18,0.0 +21927,61,28.5,21,0.0 +21927,35,18,21,0.0 +21927,2,19,37,0.0 +21927,31,12.5,31,0.0 +21928,26,31.23,11,0.0 +21928,67,14,21,0.0 +21928,39,18,2,0.0 +21928,53,32.8,36,0.0 +21928,6,25,10,0.0 +21928,74,10,22,0.0 +21928,43,46,48,0.0 +21928,69,36,30,0.0 +21928,75,7.75,50,0.0 +21928,65,21.05,49,0.0 +21928,73,15,37,0.0 +21928,76,18,39,0.0 +21928,36,19,46,0.0 +21928,31,12.5,48,0.0 +21928,44,19.45,25,0.0 +21928,9,97,9,0.0 +21928,14,23.25,45,0.0 +21928,72,34.8,48,0.0 +21928,58,13.25,45,0.0 +21928,60,34,7,0.0 +21928,25,14,32,0.0 +21928,16,17.45,2,0.0 +21928,7,30,8,0.0 +21928,59,55,46,0.0 +21928,15,15.5,43,0.0 +21928,33,2.5,28,0.0 +21928,42,14,31,0.0 +21928,57,19.5,25,0.0 +21928,46,12,29,0.0 +21928,23,9,11,0.0 +21928,63,43.9,32,0.0 +21928,48,12.75,42,0.0 +21928,32,32,13,0.0 +21928,52,7,12,0.0 +21928,61,28.5,19,0.0 +21928,71,21.5,24,0.0 +21928,11,21,45,0.0 +21928,13,6,36,0.0 +21928,5,21.35,45,0.0 +21928,34,14,25,0.0 +21928,47,9.5,7,0.0 +21928,27,43.9,41,0.0 +21928,56,38,20,0.0 +21928,54,7.45,48,0.0 +21928,66,17,16,0.0 +21928,21,10,22,0.0 +21928,24,4.5,42,0.0 +21928,18,62.5,43,0.0 +21928,2,19,24,0.0 +21928,22,21,30,0.0 +21928,12,38,1,0.0 +21928,4,22,28,0.0 +21928,30,25.89,22,0.0 +21928,77,13,25,0.0 +21928,38,263.5,33,0.0 +21928,3,10,48,0.0 +21928,41,9.65,24,0.0 +21928,19,9.2,28,0.0 +21928,64,33.25,13,0.0 +21928,10,31,44,0.0 +21928,45,9.5,48,0.0 +21928,37,26,35,0.0 +21928,68,12.5,22,0.0 +21928,29,123.79,1,0.0 +21928,62,49.3,11,0.0 +21928,50,16.25,16,0.0 +21928,51,53,22,0.0 +21928,49,20,41,0.0 +21928,35,18,15,0.0 +21928,40,18.4,35,0.0 +21928,20,81,26,0.0 +21928,55,24,3,0.0 +21929,4,22,11,0.0 +21929,15,15.5,42,0.0 +21929,59,55,21,0.0 +21929,7,30,34,0.0 +21929,8,40,33,0.0 +21929,30,25.89,50,0.0 +21929,34,14,30,0.0 +21929,16,17.45,25,0.0 +21929,67,14,47,0.0 +21929,14,23.25,6,0.0 +21929,68,12.5,22,0.0 +21929,73,15,14,0.0 +21929,35,18,30,0.0 +21929,53,32.8,37,0.0 +21929,28,45.6,12,0.0 +21929,22,21,31,0.0 +21929,49,20,2,0.0 +21929,72,34.8,36,0.0 +21929,3,10,39,0.0 +21929,74,10,32,0.0 +21929,48,12.75,37,0.0 +21929,57,19.5,16,0.0 +21929,31,12.5,5,0.0 +21929,62,49.3,4,0.0 +21929,23,9,25,0.0 +21929,61,28.5,34,0.0 +21929,24,4.5,34,0.0 +21929,27,43.9,47,0.0 +21929,71,21.5,32,0.0 +21929,58,13.25,19,0.0 +21929,64,33.25,15,0.0 +21929,66,17,47,0.0 +21929,75,7.75,14,0.0 +21929,21,10,50,0.0 +21929,18,62.5,31,0.0 +21929,9,97,38,0.0 +21929,52,7,5,0.0 +21929,50,16.25,12,0.0 +21929,39,18,39,0.0 +21929,63,43.9,42,0.0 +21929,55,24,38,0.0 +21929,51,53,19,0.0 +21929,70,15,29,0.0 +21929,19,9.2,26,0.0 +21929,40,18.4,21,0.0 +21929,12,38,47,0.0 +21929,54,7.45,7,0.0 +21929,56,38,1,0.0 +21930,37,26,45,0.0 +21930,19,9.2,21,0.0 +21930,33,2.5,13,0.0 +21930,12,38,21,0.0 +21930,14,23.25,3,0.0 +21930,54,7.45,14,0.0 +21930,43,46,27,0.0 +21930,29,123.79,36,0.0 +21930,17,39,3,0.0 +21930,55,24,17,0.0 +21930,11,21,12,0.0 +21930,31,12.5,24,0.0 +21930,65,21.05,15,0.0 +21930,69,36,34,0.0 +21930,21,10,39,0.0 +21930,15,15.5,38,0.0 +21930,61,28.5,2,0.0 +21930,51,53,33,0.0 +21930,46,12,40,0.0 +21930,18,62.5,41,0.0 +21930,8,40,34,0.0 +21930,53,32.8,12,0.0 +21930,71,21.5,5,0.0 +21930,70,15,44,0.0 +21930,9,97,49,0.0 +21930,35,18,33,0.0 +21930,77,13,32,0.0 +21930,24,4.5,13,0.0 +21930,45,9.5,35,0.0 +21930,32,32,9,0.0 +21930,27,43.9,13,0.0 +21930,6,25,3,0.0 +21931,73,15,37,0.0 +21931,6,25,24,0.0 +21931,14,23.25,16,0.0 +21931,55,24,35,0.0 +21931,47,9.5,26,0.0 +21931,74,10,26,0.0 +21931,38,263.5,10,0.0 +21931,10,31,50,0.0 +21931,15,15.5,19,0.0 +21931,52,7,15,0.0 +21931,32,32,39,0.0 +21931,12,38,6,0.0 +21931,37,26,48,0.0 +21931,69,36,1,0.0 +21931,5,21.35,33,0.0 +21931,9,97,27,0.0 +21931,61,28.5,17,0.0 +21931,63,43.9,14,0.0 +21931,4,22,41,0.0 +21931,58,13.25,36,0.0 +21931,24,4.5,17,0.0 +21931,11,21,35,0.0 +21931,46,12,35,0.0 +21931,20,81,32,0.0 +21931,60,34,49,0.0 +21931,34,14,3,0.0 +21931,41,9.65,32,0.0 +21931,25,14,29,0.0 +21931,17,39,37,0.0 +21931,28,45.6,39,0.0 +21931,67,14,1,0.0 +21931,54,7.45,47,0.0 +21931,23,9,12,0.0 +21931,51,53,36,0.0 +21931,43,46,31,0.0 +21931,19,9.2,14,0.0 +21931,16,17.45,12,0.0 +21931,39,18,9,0.0 +21931,57,19.5,8,0.0 +21931,49,20,4,0.0 +21931,42,14,32,0.0 +21931,27,43.9,42,0.0 +21931,53,32.8,36,0.0 +21931,33,2.5,27,0.0 +21931,65,21.05,25,0.0 +21931,48,12.75,14,0.0 +21931,66,17,4,0.0 +21931,29,123.79,8,0.0 +21931,50,16.25,2,0.0 +21931,68,12.5,40,0.0 +21931,56,38,23,0.0 +21931,45,9.5,21,0.0 +21931,44,19.45,12,0.0 +21932,42,14,47,0.0 +21932,52,7,6,0.0 +21932,18,62.5,46,0.0 +21932,23,9,23,0.0 +21932,62,49.3,30,0.0 +21932,38,263.5,30,0.0 +21932,17,39,23,0.0 +21932,44,19.45,25,0.0 +21932,64,33.25,11,0.0 +21932,21,10,29,0.0 +21932,5,21.35,19,0.0 +21932,63,43.9,42,0.0 +21932,67,14,29,0.0 +21932,72,34.8,5,0.0 +21932,19,9.2,50,0.0 +21932,74,10,6,0.0 +21932,66,17,39,0.0 +21932,46,12,26,0.0 +21932,29,123.79,12,0.0 +21933,58,13.25,38,0.0 +21933,70,15,21,0.0 +21933,63,43.9,1,0.0 +21933,59,55,3,0.0 +21933,41,9.65,35,0.0 +21933,50,16.25,38,0.0 +21933,54,7.45,30,0.0 +21933,32,32,33,0.0 +21933,18,62.5,32,0.0 +21933,49,20,28,0.0 +21933,72,34.8,13,0.0 +21933,34,14,6,0.0 +21933,27,43.9,41,0.0 +21933,57,19.5,33,0.0 +21933,6,25,37,0.0 +21933,42,14,43,0.0 +21933,33,2.5,40,0.0 +21933,12,38,35,0.0 +21933,21,10,22,0.0 +21933,48,12.75,12,0.0 +21933,53,32.8,47,0.0 +21933,69,36,13,0.0 +21933,19,9.2,13,0.0 +21933,64,33.25,41,0.0 +21933,60,34,14,0.0 +21933,74,10,39,0.0 +21933,65,21.05,41,0.0 +21933,46,12,25,0.0 +21933,25,14,18,0.0 +21933,31,12.5,4,0.0 +21933,76,18,13,0.0 +21933,29,123.79,19,0.0 +21933,40,18.4,26,0.0 +21933,56,38,11,0.0 +21933,36,19,28,0.0 +21933,4,22,39,0.0 +21933,75,7.75,24,0.0 +21933,37,26,50,0.0 +21933,68,12.5,42,0.0 +21933,10,31,42,0.0 +21933,67,14,38,0.0 +21933,71,21.5,17,0.0 +21933,45,9.5,49,0.0 +21933,2,19,15,0.0 +21933,5,21.35,41,0.0 +21933,15,15.5,21,0.0 +21933,28,45.6,8,0.0 +21933,44,19.45,23,0.0 +21933,30,25.89,14,0.0 +21933,1,18,13,0.0 +21933,55,24,50,0.0 +21933,3,10,17,0.0 +21933,73,15,39,0.0 +21933,38,263.5,33,0.0 +21933,66,17,40,0.0 +21933,51,53,21,0.0 +21933,11,21,47,0.0 +21933,8,40,8,0.0 +21933,23,9,16,0.0 +21933,62,49.3,16,0.0 +21933,13,6,40,0.0 +21933,24,4.5,13,0.0 +21933,9,97,14,0.0 +21933,47,9.5,35,0.0 +21933,20,81,40,0.0 +21934,60,34,18,0.0 +21934,55,24,39,0.0 +21934,3,10,8,0.0 +21934,10,31,28,0.0 +21934,35,18,24,0.0 +21934,43,46,42,0.0 +21934,29,123.79,25,0.0 +21935,71,21.5,3,0.0 +21935,75,7.75,3,0.0 +21935,57,19.5,2,0.0 +21935,43,46,35,0.0 +21935,52,7,20,0.0 +21935,74,10,20,0.0 +21935,27,43.9,42,0.0 +21935,61,28.5,29,0.0 +21935,42,14,27,0.0 +21935,44,19.45,5,0.0 +21935,22,21,26,0.0 +21935,50,16.25,6,0.0 +21935,62,49.3,46,0.0 +21935,25,14,35,0.0 +21935,2,19,35,0.0 +21935,53,32.8,37,0.0 +21935,46,12,40,0.0 +21935,60,34,46,0.0 +21935,21,10,24,0.0 +21935,16,17.45,39,0.0 +21935,58,13.25,7,0.0 +21935,45,9.5,23,0.0 +21935,7,30,11,0.0 +21935,72,34.8,33,0.0 +21935,56,38,1,0.0 +21935,66,17,32,0.0 +21935,14,23.25,13,0.0 +21935,3,10,40,0.0 +21935,4,22,15,0.0 +21935,65,21.05,1,0.0 +21935,13,6,21,0.0 +21935,28,45.6,1,0.0 +21935,59,55,37,0.0 +21935,68,12.5,50,0.0 +21935,39,18,6,0.0 +21935,17,39,23,0.0 +21935,38,263.5,32,0.0 +21935,54,7.45,36,0.0 +21935,73,15,7,0.0 +21935,33,2.5,38,0.0 +21935,37,26,28,0.0 +21935,29,123.79,12,0.0 +21935,15,15.5,29,0.0 +21935,10,31,20,0.0 +21935,1,18,20,0.0 +21935,35,18,41,0.0 +21935,47,9.5,22,0.0 +21935,23,9,37,0.0 +21935,36,19,23,0.0 +21935,6,25,21,0.0 +21935,48,12.75,50,0.0 +21935,69,36,41,0.0 +21935,49,20,48,0.0 +21935,63,43.9,12,0.0 +21935,8,40,44,0.0 +21935,55,24,29,0.0 +21935,40,18.4,21,0.0 +21935,19,9.2,22,0.0 +21935,41,9.65,10,0.0 +21935,64,33.25,24,0.0 +21935,26,31.23,32,0.0 +21935,51,53,15,0.0 +21935,77,13,48,0.0 +21935,20,81,30,0.0 +21935,31,12.5,40,0.0 +21935,11,21,26,0.0 +21935,30,25.89,29,0.0 +21935,34,14,32,0.0 +21935,24,4.5,1,0.0 +21935,18,62.5,10,0.0 +21935,67,14,14,0.0 +21935,12,38,6,0.0 +21935,9,97,34,0.0 +21935,76,18,34,0.0 +21936,1,18,48,0.0 +21936,23,9,35,0.0 +21936,76,18,25,0.0 +21936,34,14,47,0.0 +21936,38,263.5,49,0.0 +21936,67,14,36,0.0 +21936,13,6,49,0.0 +21936,48,12.75,1,0.0 +21936,26,31.23,44,0.0 +21936,11,21,6,0.0 +21936,33,2.5,31,0.0 +21936,32,32,42,0.0 +21936,43,46,14,0.0 +21936,74,10,16,0.0 +21936,24,4.5,36,0.0 +21936,9,97,37,0.0 +21936,2,19,2,0.0 +21936,62,49.3,32,0.0 +21936,31,12.5,3,0.0 +21936,6,25,33,0.0 +21936,50,16.25,3,0.0 +21936,22,21,24,0.0 +21936,35,18,47,0.0 +21936,73,15,25,0.0 +21936,47,9.5,29,0.0 +21936,49,20,35,0.0 +21936,29,123.79,22,0.0 +21936,75,7.75,28,0.0 +21936,46,12,42,0.0 +21936,27,43.9,28,0.0 +21936,39,18,8,0.0 +21936,17,39,5,0.0 +21936,53,32.8,1,0.0 +21936,60,34,24,0.0 +21936,52,7,1,0.0 +21936,56,38,10,0.0 +21936,51,53,27,0.0 +21936,72,34.8,27,0.0 +21936,77,13,7,0.0 +21936,40,18.4,9,0.0 +21936,71,21.5,42,0.0 +21936,64,33.25,16,0.0 +21936,44,19.45,30,0.0 +21936,59,55,17,0.0 +21936,45,9.5,3,0.0 +21936,4,22,17,0.0 +21936,63,43.9,32,0.0 +21936,65,21.05,48,0.0 +21936,3,10,10,0.0 +21936,18,62.5,29,0.0 +21936,16,17.45,11,0.0 +21936,12,38,37,0.0 +21936,5,21.35,15,0.0 +21936,19,9.2,36,0.0 +21936,36,19,13,0.0 +21936,7,30,1,0.0 +21936,37,26,43,0.0 +21936,69,36,11,0.0 +21936,30,25.89,45,0.0 +21936,28,45.6,5,0.0 +21936,68,12.5,4,0.0 +21936,70,15,25,0.0 +21937,38,263.5,5,0.0 +21937,27,43.9,1,0.0 +21937,12,38,44,0.0 +21937,51,53,38,0.0 +21937,54,7.45,2,0.0 +21937,48,12.75,36,0.0 +21937,17,39,32,0.0 +21937,23,9,31,0.0 +21937,65,21.05,8,0.0 +21937,39,18,17,0.0 +21937,59,55,49,0.0 +21937,47,9.5,25,0.0 +21937,44,19.45,30,0.0 +21937,33,2.5,37,0.0 +21937,62,49.3,23,0.0 +21937,19,9.2,16,0.0 +21937,25,14,48,0.0 +21937,6,25,1,0.0 +21937,77,13,2,0.0 +21937,7,30,14,0.0 +21937,67,14,27,0.0 +21937,34,14,26,0.0 +21937,30,25.89,5,0.0 +21937,15,15.5,12,0.0 +21937,10,31,7,0.0 +21937,53,32.8,15,0.0 +21938,65,21.05,16,0.0 +21938,1,18,13,0.0 +21938,26,31.23,48,0.0 +21938,51,53,22,0.0 +21938,75,7.75,10,0.0 +21938,33,2.5,3,0.0 +21938,50,16.25,43,0.0 +21938,71,21.5,12,0.0 +21938,37,26,15,0.0 +21938,29,123.79,33,0.0 +21938,24,4.5,43,0.0 +21938,76,18,31,0.0 +21938,27,43.9,13,0.0 +21938,48,12.75,9,0.0 +21938,10,31,16,0.0 +21938,68,12.5,48,0.0 +21938,32,32,40,0.0 +21938,14,23.25,40,0.0 +21938,64,33.25,25,0.0 +21938,44,19.45,50,0.0 +21938,45,9.5,12,0.0 +21938,61,28.5,16,0.0 +21938,28,45.6,39,0.0 +21938,2,19,26,0.0 +21938,56,38,11,0.0 +21938,69,36,37,0.0 +21938,23,9,32,0.0 +21938,47,9.5,21,0.0 +21938,52,7,15,0.0 +21939,8,40,4,0.0 +21939,73,15,35,0.0 +21939,38,263.5,26,0.0 +21939,34,14,13,0.0 +21939,58,13.25,43,0.0 +21939,65,21.05,35,0.0 +21939,20,81,46,0.0 +21939,2,19,27,0.0 +21939,70,15,17,0.0 +21939,59,55,43,0.0 +21939,30,25.89,31,0.0 +21939,21,10,43,0.0 +21939,25,14,18,0.0 +21939,48,12.75,18,0.0 +21939,29,123.79,35,0.0 +21939,50,16.25,43,0.0 +21939,32,32,23,0.0 +21939,15,15.5,32,0.0 +21939,16,17.45,33,0.0 +21939,75,7.75,15,0.0 +21939,40,18.4,50,0.0 +21939,7,30,24,0.0 +21939,46,12,16,0.0 +21939,18,62.5,47,0.0 +21939,22,21,45,0.0 +21939,37,26,47,0.0 +21939,31,12.5,16,0.0 +21939,77,13,1,0.0 +21939,4,22,50,0.0 +21939,52,7,42,0.0 +21939,23,9,13,0.0 +21939,41,9.65,36,0.0 +21939,64,33.25,48,0.0 +21939,6,25,21,0.0 +21939,5,21.35,22,0.0 +21939,47,9.5,6,0.0 +21939,56,38,42,0.0 +21939,17,39,42,0.0 +21939,60,34,3,0.0 +21939,69,36,25,0.0 +21939,35,18,9,0.0 +21939,42,14,12,0.0 +21939,9,97,3,0.0 +21939,74,10,30,0.0 +21939,68,12.5,10,0.0 +21940,14,23.25,18,0.0 +21940,59,55,17,0.0 +21940,10,31,3,0.0 +21940,30,25.89,25,0.0 +21940,75,7.75,38,0.0 +21940,35,18,3,0.0 +21940,27,43.9,21,0.0 +21940,50,16.25,49,0.0 +21940,21,10,13,0.0 +21940,23,9,3,0.0 +21940,55,24,26,0.0 +21940,31,12.5,29,0.0 +21940,37,26,47,0.0 +21940,39,18,18,0.0 +21940,66,17,31,0.0 +21940,24,4.5,12,0.0 +21940,5,21.35,9,0.0 +21940,6,25,45,0.0 +21940,53,32.8,33,0.0 +21940,67,14,21,0.0 +21940,38,263.5,39,0.0 +21941,4,22,42,0.0 +21941,67,14,23,0.0 +21941,5,21.35,16,0.0 +21941,37,26,11,0.0 +21941,27,43.9,47,0.0 +21941,39,18,24,0.0 +21941,19,9.2,44,0.0 +21941,72,34.8,22,0.0 +21941,2,19,40,0.0 +21941,68,12.5,6,0.0 +21941,46,12,29,0.0 +21941,42,14,16,0.0 +21941,21,10,44,0.0 +21941,10,31,32,0.0 +21941,36,19,23,0.0 +21941,31,12.5,3,0.0 +21941,29,123.79,21,0.0 +21941,15,15.5,45,0.0 +21941,55,24,26,0.0 +21941,9,97,48,0.0 +21941,48,12.75,48,0.0 +21941,77,13,16,0.0 +21941,51,53,29,0.0 +21941,13,6,33,0.0 +21941,3,10,32,0.0 +21941,52,7,47,0.0 +21941,56,38,23,0.0 +21941,28,45.6,43,0.0 +21941,6,25,15,0.0 +21941,66,17,21,0.0 +21941,11,21,41,0.0 +21941,70,15,22,0.0 +21941,34,14,46,0.0 +21942,31,12.5,6,0.0 +21942,4,22,19,0.0 +21942,46,12,1,0.0 +21942,7,30,15,0.0 +21942,40,18.4,34,0.0 +21942,71,21.5,4,0.0 +21942,50,16.25,46,0.0 +21942,58,13.25,30,0.0 +21942,65,21.05,36,0.0 +21942,37,26,32,0.0 +21942,68,12.5,17,0.0 +21942,13,6,8,0.0 +21942,10,31,10,0.0 +21942,67,14,50,0.0 +21942,61,28.5,31,0.0 +21942,20,81,40,0.0 +21942,74,10,40,0.0 +21942,2,19,5,0.0 +21942,27,43.9,22,0.0 +21942,18,62.5,14,0.0 +21942,21,10,50,0.0 +21942,12,38,38,0.0 +21942,75,7.75,50,0.0 +21942,52,7,16,0.0 +21942,25,14,10,0.0 +21942,16,17.45,29,0.0 +21942,66,17,41,0.0 +21942,42,14,4,0.0 +21942,1,18,9,0.0 +21942,24,4.5,7,0.0 +21942,34,14,23,0.0 +21942,17,39,30,0.0 +21942,64,33.25,11,0.0 +21942,73,15,34,0.0 +21942,32,32,13,0.0 +21942,14,23.25,31,0.0 +21943,18,62.5,24,0.0 +21943,58,13.25,13,0.0 +21943,4,22,40,0.0 +21943,6,25,28,0.0 +21943,62,49.3,13,0.0 +21943,40,18.4,32,0.0 +21943,9,97,17,0.0 +21943,12,38,12,0.0 +21943,49,20,48,0.0 +21943,65,21.05,9,0.0 +21943,32,32,21,0.0 +21943,7,30,11,0.0 +21943,14,23.25,24,0.0 +21943,47,9.5,6,0.0 +21943,53,32.8,18,0.0 +21943,22,21,29,0.0 +21943,20,81,29,0.0 +21943,57,19.5,49,0.0 +21943,5,21.35,45,0.0 +21943,24,4.5,47,0.0 +21943,45,9.5,41,0.0 +21943,16,17.45,37,0.0 +21943,1,18,50,0.0 +21943,30,25.89,31,0.0 +21943,21,10,24,0.0 +21943,17,39,2,0.0 +21943,41,9.65,14,0.0 +21943,31,12.5,46,0.0 +21943,68,12.5,27,0.0 +21943,2,19,47,0.0 +21943,23,9,7,0.0 +21943,33,2.5,10,0.0 +21943,69,36,4,0.0 +21943,63,43.9,7,0.0 +21943,29,123.79,8,0.0 +21943,73,15,29,0.0 +21943,19,9.2,48,0.0 +21943,61,28.5,42,0.0 +21943,46,12,44,0.0 +21943,44,19.45,26,0.0 +21943,15,15.5,2,0.0 +21943,8,40,33,0.0 +21943,38,263.5,30,0.0 +21943,26,31.23,29,0.0 +21943,3,10,49,0.0 +21944,11,21,9,0.0 +21944,22,21,6,0.0 +21944,10,31,28,0.0 +21944,49,20,46,0.0 +21944,44,19.45,50,0.0 +21944,25,14,14,0.0 +21944,53,32.8,32,0.0 +21944,33,2.5,43,0.0 +21944,37,26,31,0.0 +21944,14,23.25,37,0.0 +21944,1,18,15,0.0 +21944,30,25.89,5,0.0 +21944,31,12.5,10,0.0 +21944,54,7.45,8,0.0 +21945,5,21.35,10,0.0 +21945,33,2.5,17,0.0 +21945,21,10,1,0.0 +21945,49,20,18,0.0 +21945,73,15,42,0.0 +21945,52,7,19,0.0 +21945,1,18,1,0.0 +21945,55,24,4,0.0 +21945,31,12.5,49,0.0 +21945,42,14,49,0.0 +21945,69,36,8,0.0 +21945,3,10,38,0.0 +21945,32,32,3,0.0 +21945,22,21,29,0.0 +21945,48,12.75,14,0.0 +21946,67,14,3,0.0 +21946,16,17.45,48,0.0 +21946,56,38,12,0.0 +21946,73,15,19,0.0 +21946,53,32.8,3,0.0 +21946,29,123.79,45,0.0 +21946,63,43.9,50,0.0 +21946,38,263.5,32,0.0 +21946,9,97,33,0.0 +21946,52,7,48,0.0 +21946,75,7.75,3,0.0 +21946,5,21.35,11,0.0 +21946,8,40,39,0.0 +21946,32,32,1,0.0 +21946,76,18,11,0.0 +21946,6,25,33,0.0 +21946,20,81,46,0.0 +21946,3,10,31,0.0 +21946,31,12.5,36,0.0 +21946,62,49.3,35,0.0 +21946,37,26,44,0.0 +21946,47,9.5,14,0.0 +21946,39,18,28,0.0 +21946,58,13.25,41,0.0 +21946,17,39,6,0.0 +21946,57,19.5,27,0.0 +21946,43,46,22,0.0 +21946,41,9.65,42,0.0 +21946,44,19.45,8,0.0 +21946,34,14,36,0.0 +21946,65,21.05,8,0.0 +21946,25,14,17,0.0 +21946,26,31.23,9,0.0 +21946,23,9,22,0.0 +21946,28,45.6,8,0.0 +21946,27,43.9,38,0.0 +21946,2,19,21,0.0 +21946,54,7.45,29,0.0 +21946,51,53,25,0.0 +21947,26,31.23,35,0.0 +21947,62,49.3,25,0.0 +21947,50,16.25,11,0.0 +21947,54,7.45,30,0.0 +21947,35,18,31,0.0 +21947,57,19.5,15,0.0 +21947,28,45.6,47,0.0 +21947,32,32,24,0.0 +21947,11,21,5,0.0 +21947,14,23.25,5,0.0 +21947,44,19.45,27,0.0 +21947,68,12.5,1,0.0 +21947,1,18,44,0.0 +21947,49,20,31,0.0 +21947,3,10,3,0.0 +21947,42,14,13,0.0 +21947,12,38,15,0.0 +21947,4,22,36,0.0 +21947,29,123.79,34,0.0 +21947,21,10,5,0.0 +21947,69,36,36,0.0 +21947,77,13,37,0.0 +21947,40,18.4,44,0.0 +21947,55,24,44,0.0 +21947,67,14,19,0.0 +21947,59,55,15,0.0 +21947,43,46,33,0.0 +21947,6,25,30,0.0 +21947,41,9.65,8,0.0 +21947,48,12.75,14,0.0 +21947,27,43.9,25,0.0 +21947,31,12.5,47,0.0 +21947,8,40,35,0.0 +21947,9,97,9,0.0 +21947,45,9.5,15,0.0 +21947,37,26,38,0.0 +21947,17,39,46,0.0 +21947,20,81,10,0.0 +21948,46,12,15,0.0 +21948,56,38,47,0.0 +21948,76,18,25,0.0 +21948,45,9.5,3,0.0 +21948,63,43.9,33,0.0 +21948,52,7,50,0.0 +21948,53,32.8,3,0.0 +21948,31,12.5,34,0.0 +21948,33,2.5,41,0.0 +21948,26,31.23,8,0.0 +21948,51,53,5,0.0 +21948,73,15,7,0.0 +21948,43,46,19,0.0 +21948,59,55,15,0.0 +21948,18,62.5,12,0.0 +21948,66,17,20,0.0 +21949,42,14,13,0.0 +21949,1,18,37,0.0 +21949,63,43.9,4,0.0 +21949,6,25,42,0.0 +21949,35,18,22,0.0 +21949,37,26,20,0.0 +21949,24,4.5,36,0.0 +21949,28,45.6,13,0.0 +21949,73,15,33,0.0 +21949,21,10,19,0.0 +21949,49,20,41,0.0 +21949,3,10,34,0.0 +21949,46,12,47,0.0 +21949,15,15.5,49,0.0 +21949,59,55,41,0.0 +21949,16,17.45,15,0.0 +21949,61,28.5,18,0.0 +21949,65,21.05,48,0.0 +21949,71,21.5,29,0.0 +21949,38,263.5,28,0.0 +21949,53,32.8,27,0.0 +21949,10,31,10,0.0 +21949,51,53,38,0.0 +21949,54,7.45,43,0.0 +21949,57,19.5,3,0.0 +21949,22,21,35,0.0 +21950,49,20,40,0.0 +21950,3,10,29,0.0 +21950,14,23.25,6,0.0 +21950,53,32.8,1,0.0 +21950,13,6,28,0.0 +21950,44,19.45,41,0.0 +21950,29,123.79,19,0.0 +21950,23,9,10,0.0 +21950,68,12.5,16,0.0 +21950,58,13.25,6,0.0 +21950,2,19,7,0.0 +21950,47,9.5,14,0.0 +21950,9,97,27,0.0 +21950,42,14,6,0.0 +21950,69,36,29,0.0 +21950,75,7.75,34,0.0 +21950,20,81,18,0.0 +21950,39,18,37,0.0 +21950,5,21.35,36,0.0 +21950,36,19,1,0.0 +21950,46,12,44,0.0 +21950,48,12.75,8,0.0 +21950,18,62.5,12,0.0 +21950,21,10,47,0.0 +21950,4,22,19,0.0 +21950,38,263.5,39,0.0 +21950,65,21.05,14,0.0 +21950,76,18,35,0.0 +21950,66,17,14,0.0 +21950,52,7,6,0.0 +21950,61,28.5,27,0.0 +21950,15,15.5,21,0.0 +21950,72,34.8,50,0.0 +21950,24,4.5,18,0.0 +21950,63,43.9,21,0.0 +21950,19,9.2,9,0.0 +21950,26,31.23,8,0.0 +21950,35,18,34,0.0 +21950,31,12.5,5,0.0 +21950,16,17.45,24,0.0 +21950,60,34,9,0.0 +21950,8,40,9,0.0 +21950,70,15,33,0.0 +21950,43,46,50,0.0 +21950,30,25.89,37,0.0 +21950,50,16.25,40,0.0 +21950,34,14,25,0.0 +21950,57,19.5,45,0.0 +21950,73,15,49,0.0 +21950,10,31,33,0.0 +21950,12,38,45,0.0 +21950,1,18,50,0.0 +21950,45,9.5,33,0.0 +21950,32,32,29,0.0 +21950,51,53,30,0.0 +21950,17,39,45,0.0 +21950,7,30,3,0.0 +21950,74,10,31,0.0 +21950,56,38,26,0.0 +21950,62,49.3,34,0.0 +21950,67,14,5,0.0 +21950,11,21,42,0.0 +21950,55,24,31,0.0 +21950,28,45.6,49,0.0 +21950,27,43.9,11,0.0 +21951,68,12.5,13,0.0 +21951,6,25,19,0.0 +21951,35,18,50,0.0 +21951,26,31.23,31,0.0 +21951,46,12,38,0.0 +21951,52,7,12,0.0 +21951,12,38,42,0.0 +21951,74,10,16,0.0 +21951,50,16.25,4,0.0 +21951,36,19,37,0.0 +21951,72,34.8,38,0.0 +21951,42,14,5,0.0 +21951,25,14,35,0.0 +21951,69,36,46,0.0 +21951,27,43.9,21,0.0 +21952,71,21.5,22,0.0 +21952,1,18,42,0.0 +21952,8,40,47,0.0 +21952,7,30,48,0.0 +21952,69,36,20,0.0 +21952,68,12.5,29,0.0 +21952,37,26,43,0.0 +21952,74,10,40,0.0 +21952,66,17,9,0.0 +21952,45,9.5,20,0.0 +21952,61,28.5,37,0.0 +21952,18,62.5,50,0.0 +21952,73,15,20,0.0 +21952,31,12.5,39,0.0 +21952,20,81,23,0.0 +21952,39,18,30,0.0 +21952,23,9,49,0.0 +21952,15,15.5,11,0.0 +21952,60,34,31,0.0 +21952,46,12,39,0.0 +21952,5,21.35,2,0.0 +21952,75,7.75,8,0.0 +21952,33,2.5,37,0.0 +21952,9,97,44,0.0 +21952,22,21,11,0.0 +21952,48,12.75,14,0.0 +21952,44,19.45,15,0.0 +21952,49,20,35,0.0 +21952,3,10,49,0.0 +21952,32,32,25,0.0 +21952,40,18.4,26,0.0 +21952,47,9.5,42,0.0 +21952,51,53,46,0.0 +21953,54,7.45,24,0.0 +21953,32,32,32,0.0 +21953,26,31.23,5,0.0 +21953,37,26,10,0.0 +21953,19,9.2,10,0.0 +21953,59,55,1,0.0 +21953,63,43.9,16,0.0 +21953,58,13.25,2,0.0 +21953,16,17.45,46,0.0 +21953,67,14,41,0.0 +21953,27,43.9,50,0.0 +21953,43,46,19,0.0 +21953,41,9.65,8,0.0 +21953,68,12.5,12,0.0 +21953,48,12.75,14,0.0 +21953,7,30,33,0.0 +21953,64,33.25,23,0.0 +21953,24,4.5,46,0.0 +21953,8,40,3,0.0 +21953,50,16.25,47,0.0 +21953,31,12.5,17,0.0 +21953,10,31,33,0.0 +21953,4,22,13,0.0 +21953,53,32.8,30,0.0 +21953,14,23.25,19,0.0 +21953,69,36,15,0.0 +21953,74,10,26,0.0 +21953,40,18.4,9,0.0 +21953,3,10,13,0.0 +21953,56,38,47,0.0 +21953,13,6,35,0.0 +21953,55,24,44,0.0 +21953,1,18,27,0.0 +21953,18,62.5,38,0.0 +21953,62,49.3,22,0.0 +21953,34,14,4,0.0 +21953,45,9.5,30,0.0 +21953,46,12,14,0.0 +21953,66,17,47,0.0 +21953,75,7.75,39,0.0 +21953,72,34.8,8,0.0 +21953,60,34,49,0.0 +21953,12,38,6,0.0 +21953,38,263.5,2,0.0 +21953,2,19,3,0.0 +21953,5,21.35,15,0.0 +21953,29,123.79,43,0.0 +21953,61,28.5,44,0.0 +21953,73,15,43,0.0 +21953,28,45.6,21,0.0 +21953,20,81,49,0.0 +21953,47,9.5,50,0.0 +21953,35,18,42,0.0 +21953,76,18,20,0.0 +21953,70,15,1,0.0 +21953,49,20,43,0.0 +21953,33,2.5,9,0.0 +21953,22,21,18,0.0 +21953,44,19.45,4,0.0 +21953,25,14,28,0.0 +21953,30,25.89,47,0.0 +21953,6,25,48,0.0 +21953,23,9,45,0.0 +21953,17,39,16,0.0 +21953,57,19.5,6,0.0 +21953,15,15.5,3,0.0 +21953,11,21,49,0.0 +21953,9,97,29,0.0 +21953,52,7,44,0.0 +21953,36,19,13,0.0 +21953,39,18,33,0.0 +21954,7,30,28,0.0 +21954,32,32,35,0.0 +21954,5,21.35,4,0.0 +21954,51,53,11,0.0 +21954,15,15.5,42,0.0 +21954,61,28.5,21,0.0 +21954,38,263.5,9,0.0 +21954,30,25.89,4,0.0 +21954,3,10,4,0.0 +21954,17,39,38,0.0 +21954,24,4.5,46,0.0 +21954,62,49.3,28,0.0 +21954,56,38,25,0.0 +21954,18,62.5,8,0.0 +21954,58,13.25,27,0.0 +21954,72,34.8,21,0.0 +21954,12,38,2,0.0 +21954,52,7,9,0.0 +21954,11,21,13,0.0 +21954,74,10,6,0.0 +21954,53,32.8,45,0.0 +21954,39,18,18,0.0 +21954,76,18,31,0.0 +21954,27,43.9,29,0.0 +21955,44,19.45,9,0.0 +21955,17,39,5,0.0 +21955,56,38,43,0.0 +21955,16,17.45,42,0.0 +21955,19,9.2,2,0.0 +21955,26,31.23,48,0.0 +21955,30,25.89,18,0.0 +21955,58,13.25,36,0.0 +21955,53,32.8,38,0.0 +21955,40,18.4,7,0.0 +21955,65,21.05,30,0.0 +21955,6,25,41,0.0 +21955,34,14,23,0.0 +21955,28,45.6,39,0.0 +21956,75,7.75,43,0.0 +21956,36,19,17,0.0 +21956,61,28.5,38,0.0 +21956,59,55,19,0.0 +21956,60,34,22,0.0 +21956,16,17.45,36,0.0 +21956,72,34.8,36,0.0 +21956,2,19,44,0.0 +21956,3,10,16,0.0 +21956,68,12.5,1,0.0 +21956,4,22,14,0.0 +21956,28,45.6,28,0.0 +21956,56,38,14,0.0 +21956,23,9,24,0.0 +21956,29,123.79,15,0.0 +21956,50,16.25,10,0.0 +21956,7,30,28,0.0 +21956,71,21.5,1,0.0 +21956,65,21.05,24,0.0 +21956,25,14,37,0.0 +21956,66,17,13,0.0 +21956,1,18,8,0.0 +21956,54,7.45,40,0.0 +21956,26,31.23,30,0.0 +21956,32,32,18,0.0 +21956,44,19.45,32,0.0 +21956,31,12.5,8,0.0 +21956,12,38,9,0.0 +21956,33,2.5,18,0.0 +21956,27,43.9,29,0.0 +21956,46,12,41,0.0 +21956,8,40,27,0.0 +21956,62,49.3,46,0.0 +21956,37,26,21,0.0 +21956,18,62.5,38,0.0 +21956,19,9.2,50,0.0 +21956,51,53,6,0.0 +21956,52,7,28,0.0 +21956,48,12.75,39,0.0 +21956,38,263.5,22,0.0 +21956,41,9.65,25,0.0 +21956,14,23.25,27,0.0 +21956,42,14,27,0.0 +21956,5,21.35,46,0.0 +21956,45,9.5,24,0.0 +21956,63,43.9,9,0.0 +21956,55,24,47,0.0 +21956,67,14,31,0.0 +21956,20,81,13,0.0 +21956,76,18,30,0.0 +21956,49,20,49,0.0 +21956,73,15,10,0.0 +21956,11,21,5,0.0 +21956,22,21,24,0.0 +21956,6,25,38,0.0 +21956,21,10,25,0.0 +21956,57,19.5,38,0.0 +21956,24,4.5,38,0.0 +21956,53,32.8,23,0.0 +21956,58,13.25,39,0.0 +21956,17,39,15,0.0 +21956,70,15,48,0.0 +21956,13,6,24,0.0 +21956,9,97,49,0.0 +21956,35,18,42,0.0 +21956,47,9.5,20,0.0 +21956,64,33.25,17,0.0 +21956,40,18.4,12,0.0 +21956,30,25.89,39,0.0 +21956,69,36,47,0.0 +21956,34,14,25,0.0 +21956,10,31,13,0.0 +21956,15,15.5,39,0.0 +21956,39,18,18,0.0 +21957,48,12.75,8,0.0 +21957,74,10,30,0.0 +21957,36,19,9,0.0 +21957,60,34,45,0.0 +21957,25,14,13,0.0 +21957,2,19,48,0.0 +21957,26,31.23,22,0.0 +21957,12,38,2,0.0 +21957,37,26,13,0.0 +21957,34,14,47,0.0 +21957,64,33.25,25,0.0 +21957,61,28.5,13,0.0 +21957,5,21.35,1,0.0 +21957,47,9.5,10,0.0 +21957,30,25.89,35,0.0 +21957,58,13.25,30,0.0 +21957,70,15,17,0.0 +21957,77,13,10,0.0 +21957,16,17.45,14,0.0 +21957,38,263.5,2,0.0 +21957,22,21,26,0.0 +21957,8,40,26,0.0 +21957,65,21.05,38,0.0 +21957,32,32,44,0.0 +21957,13,6,17,0.0 +21957,44,19.45,32,0.0 +21957,57,19.5,50,0.0 +21957,27,43.9,7,0.0 +21957,67,14,39,0.0 +21957,53,32.8,42,0.0 +21957,40,18.4,2,0.0 +21957,75,7.75,9,0.0 +21957,18,62.5,10,0.0 +21957,31,12.5,10,0.0 +21957,4,22,23,0.0 +21957,33,2.5,9,0.0 +21957,54,7.45,26,0.0 +21957,39,18,5,0.0 +21957,17,39,43,0.0 +21957,66,17,24,0.0 +21957,46,12,21,0.0 +21957,35,18,21,0.0 +21957,19,9.2,20,0.0 +21957,45,9.5,16,0.0 +21957,56,38,38,0.0 +21957,15,15.5,16,0.0 +21957,1,18,21,0.0 +21957,51,53,36,0.0 +21957,73,15,1,0.0 +21957,24,4.5,29,0.0 +21957,49,20,22,0.0 +21957,42,14,48,0.0 +21957,11,21,24,0.0 +21957,76,18,28,0.0 +21957,59,55,50,0.0 +21957,10,31,1,0.0 +21957,41,9.65,3,0.0 +21957,21,10,22,0.0 +21957,43,46,25,0.0 +21957,3,10,9,0.0 +21957,69,36,41,0.0 +21957,68,12.5,14,0.0 +21957,6,25,24,0.0 +21957,71,21.5,40,0.0 +21957,50,16.25,48,0.0 +21957,72,34.8,34,0.0 +21957,29,123.79,2,0.0 +21957,9,97,7,0.0 +21957,14,23.25,20,0.0 +21957,63,43.9,31,0.0 +21957,55,24,48,0.0 +21957,7,30,6,0.0 +21957,28,45.6,29,0.0 +21957,20,81,20,0.0 +21957,23,9,36,0.0 +21958,52,7,16,0.0 +21958,42,14,10,0.0 +21958,33,2.5,40,0.0 +21958,21,10,16,0.0 +21958,73,15,25,0.0 +21958,18,62.5,32,0.0 +21958,28,45.6,9,0.0 +21958,16,17.45,29,0.0 +21958,19,9.2,7,0.0 +21958,43,46,23,0.0 +21958,54,7.45,11,0.0 +21958,64,33.25,28,0.0 +21959,28,45.6,36,0.0 +21959,46,12,20,0.0 +21959,77,13,34,0.0 +21959,19,9.2,1,0.0 +21959,30,25.89,45,0.0 +21959,70,15,5,0.0 +21959,12,38,24,0.0 +21959,35,18,1,0.0 +21959,42,14,44,0.0 +21959,72,34.8,33,0.0 +21959,64,33.25,23,0.0 +21959,75,7.75,20,0.0 +21959,7,30,2,0.0 +21959,25,14,37,0.0 +21959,44,19.45,25,0.0 +21959,63,43.9,21,0.0 +21959,39,18,5,0.0 +21959,58,13.25,32,0.0 +21959,21,10,40,0.0 +21959,29,123.79,19,0.0 +21959,31,12.5,29,0.0 +21959,6,25,21,0.0 +21959,1,18,18,0.0 +21959,43,46,15,0.0 +21959,60,34,30,0.0 +21959,76,18,35,0.0 +21959,55,24,8,0.0 +21959,45,9.5,7,0.0 +21959,57,19.5,49,0.0 +21959,69,36,49,0.0 +21959,4,22,5,0.0 +21959,41,9.65,6,0.0 +21959,8,40,9,0.0 +21959,48,12.75,7,0.0 +21959,2,19,24,0.0 +21959,37,26,27,0.0 +21959,13,6,20,0.0 +21959,73,15,42,0.0 +21959,26,31.23,33,0.0 +21959,24,4.5,12,0.0 +21959,9,97,47,0.0 +21959,65,21.05,17,0.0 +21959,56,38,37,0.0 +21959,62,49.3,19,0.0 +21959,52,7,4,0.0 +21959,18,62.5,21,0.0 +21959,59,55,46,0.0 +21960,24,4.5,41,0.0 +21960,71,21.5,6,0.0 +21960,63,43.9,33,0.0 +21960,31,12.5,3,0.0 +21960,3,10,4,0.0 +21960,57,19.5,50,0.0 +21960,72,34.8,23,0.0 +21960,9,97,23,0.0 +21960,48,12.75,24,0.0 +21960,62,49.3,15,0.0 +21960,70,15,5,0.0 +21960,69,36,17,0.0 +21960,15,15.5,24,0.0 +21960,53,32.8,40,0.0 +21960,12,38,7,0.0 +21960,27,43.9,2,0.0 +21960,13,6,49,0.0 +21960,49,20,30,0.0 +21960,5,21.35,17,0.0 +21960,54,7.45,49,0.0 +21960,34,14,28,0.0 +21960,74,10,12,0.0 +21960,17,39,45,0.0 +21960,19,9.2,42,0.0 +21960,68,12.5,45,0.0 +21960,52,7,1,0.0 +21960,11,21,4,0.0 +21960,58,13.25,45,0.0 +21960,47,9.5,29,0.0 +21960,64,33.25,45,0.0 +21960,59,55,26,0.0 +21960,61,28.5,33,0.0 +21960,66,17,8,0.0 +21960,38,263.5,23,0.0 +21960,29,123.79,18,0.0 +21960,23,9,30,0.0 +21960,40,18.4,33,0.0 +21960,8,40,8,0.0 +21960,28,45.6,14,0.0 +21960,14,23.25,39,0.0 +21960,41,9.65,32,0.0 +21960,77,13,41,0.0 +21960,18,62.5,17,0.0 +21960,67,14,5,0.0 +21960,75,7.75,33,0.0 +21960,7,30,2,0.0 +21960,42,14,21,0.0 +21960,73,15,45,0.0 +21960,16,17.45,36,0.0 +21960,22,21,42,0.0 +21960,39,18,12,0.0 +21961,22,21,13,0.0 +21961,16,17.45,44,0.0 +21961,46,12,42,0.0 +21961,47,9.5,20,0.0 +21961,63,43.9,41,0.0 +21961,60,34,22,0.0 +21961,50,16.25,9,0.0 +21961,32,32,36,0.0 +21961,15,15.5,28,0.0 +21961,18,62.5,44,0.0 +21961,67,14,19,0.0 +21961,71,21.5,5,0.0 +21961,35,18,27,0.0 +21961,10,31,27,0.0 +21961,3,10,31,0.0 +21961,74,10,21,0.0 +21961,30,25.89,38,0.0 +21961,34,14,46,0.0 +21961,6,25,16,0.0 +21961,14,23.25,19,0.0 +21961,4,22,40,0.0 +21961,73,15,10,0.0 +21961,54,7.45,22,0.0 +21961,12,38,2,0.0 +21961,68,12.5,24,0.0 +21961,28,45.6,49,0.0 +21961,58,13.25,32,0.0 +21961,5,21.35,45,0.0 +21961,76,18,22,0.0 +21961,24,4.5,34,0.0 +21961,43,46,9,0.0 +21961,45,9.5,34,0.0 +21961,61,28.5,47,0.0 +21961,17,39,36,0.0 +21961,29,123.79,22,0.0 +21961,48,12.75,24,0.0 +21961,69,36,50,0.0 +21961,37,26,47,0.0 +21961,53,32.8,46,0.0 +21961,66,17,41,0.0 +21961,41,9.65,32,0.0 +21961,49,20,48,0.0 +21961,2,19,4,0.0 +21961,27,43.9,5,0.0 +21961,33,2.5,2,0.0 +21961,44,19.45,6,0.0 +21961,75,7.75,39,0.0 +21961,36,19,42,0.0 +21961,55,24,17,0.0 +21961,59,55,40,0.0 +21961,42,14,31,0.0 +21961,72,34.8,29,0.0 +21961,1,18,20,0.0 +21961,21,10,31,0.0 +21961,7,30,50,0.0 +21961,25,14,8,0.0 +21961,13,6,11,0.0 +21961,70,15,32,0.0 +21961,65,21.05,1,0.0 +21961,64,33.25,15,0.0 +21961,9,97,28,0.0 +21961,8,40,10,0.0 +21961,62,49.3,10,0.0 +21961,31,12.5,34,0.0 +21961,19,9.2,25,0.0 +21961,57,19.5,20,0.0 +21961,77,13,44,0.0 +21961,51,53,33,0.0 +21961,40,18.4,46,0.0 +21961,11,21,43,0.0 +21961,56,38,29,0.0 +21961,20,81,48,0.0 +21961,23,9,38,0.0 +21961,26,31.23,5,0.0 +21961,39,18,13,0.0 +21961,52,7,38,0.0 +21961,38,263.5,35,0.0 +21962,40,18.4,2,0.0 +21962,68,12.5,6,0.0 +21962,58,13.25,31,0.0 +21962,52,7,1,0.0 +21962,39,18,6,0.0 +21962,69,36,50,0.0 +21962,25,14,38,0.0 +21962,9,97,49,0.0 +21962,14,23.25,34,0.0 +21962,47,9.5,8,0.0 +21962,54,7.45,18,0.0 +21962,61,28.5,11,0.0 +21962,66,17,40,0.0 +21962,38,263.5,22,0.0 +21962,19,9.2,40,0.0 +21962,67,14,13,0.0 +21962,21,10,1,0.0 +21962,59,55,35,0.0 +21962,13,6,38,0.0 +21962,51,53,36,0.0 +21962,27,43.9,14,0.0 +21962,30,25.89,4,0.0 +21962,35,18,22,0.0 +21962,20,81,2,0.0 +21962,18,62.5,37,0.0 +21963,14,23.25,26,0.0 +21963,15,15.5,48,0.0 +21963,41,9.65,25,0.0 +21963,34,14,18,0.0 +21963,46,12,45,0.0 +21963,54,7.45,4,0.0 +21963,57,19.5,20,0.0 +21963,5,21.35,34,0.0 +21963,64,33.25,50,0.0 +21963,11,21,18,0.0 +21963,7,30,47,0.0 +21963,18,62.5,46,0.0 +21963,28,45.6,47,0.0 +21963,3,10,48,0.0 +21963,37,26,22,0.0 +21963,43,46,24,0.0 +21963,58,13.25,50,0.0 +21963,61,28.5,33,0.0 +21963,35,18,8,0.0 +21963,17,39,22,0.0 +21963,77,13,5,0.0 +21963,68,12.5,46,0.0 +21963,42,14,26,0.0 +21963,19,9.2,38,0.0 +21963,16,17.45,13,0.0 +21963,52,7,5,0.0 +21963,22,21,40,0.0 +21963,55,24,42,0.0 +21963,2,19,12,0.0 +21963,36,19,29,0.0 +21963,27,43.9,49,0.0 +21963,1,18,44,0.0 +21963,59,55,25,0.0 +21963,65,21.05,36,0.0 +21963,10,31,39,0.0 +21963,38,263.5,1,0.0 +21963,67,14,43,0.0 +21963,23,9,47,0.0 +21963,44,19.45,10,0.0 +21963,75,7.75,17,0.0 +21963,33,2.5,31,0.0 +21963,73,15,14,0.0 +21963,21,10,3,0.0 +21963,62,49.3,48,0.0 +21963,32,32,34,0.0 +21963,60,34,45,0.0 +21963,30,25.89,14,0.0 +21963,13,6,32,0.0 +21963,26,31.23,42,0.0 +21963,76,18,36,0.0 +21963,53,32.8,2,0.0 +21963,39,18,39,0.0 +21963,74,10,4,0.0 +21963,49,20,16,0.0 +21963,40,18.4,20,0.0 +21963,45,9.5,10,0.0 +21963,48,12.75,37,0.0 +21963,56,38,6,0.0 +21963,25,14,19,0.0 +21963,6,25,5,0.0 +21963,31,12.5,3,0.0 +21963,63,43.9,28,0.0 +21963,47,9.5,11,0.0 +21963,24,4.5,28,0.0 +21963,12,38,1,0.0 +21963,72,34.8,35,0.0 +21963,9,97,15,0.0 +21963,8,40,34,0.0 +21963,29,123.79,18,0.0 +21963,4,22,23,0.0 +21963,20,81,12,0.0 +21963,50,16.25,13,0.0 +21963,71,21.5,43,0.0 +21963,66,17,43,0.0 +21963,69,36,32,0.0 +21964,35,18,28,0.0 +21964,13,6,44,0.0 +21964,55,24,1,0.0 +21964,76,18,16,0.0 +21964,53,32.8,30,0.0 +21964,33,2.5,10,0.0 +21964,71,21.5,43,0.0 +21964,46,12,22,0.0 +21964,72,34.8,12,0.0 +21964,31,12.5,22,0.0 +21964,73,15,16,0.0 +21964,58,13.25,49,0.0 +21964,51,53,25,0.0 +21964,25,14,49,0.0 +21964,47,9.5,28,0.0 +21964,68,12.5,21,0.0 +21964,19,9.2,18,0.0 +21964,23,9,5,0.0 +21964,7,30,9,0.0 +21964,24,4.5,4,0.0 +21964,41,9.65,42,0.0 +21964,48,12.75,41,0.0 +21964,65,21.05,16,0.0 +21964,69,36,38,0.0 +21964,21,10,9,0.0 +21964,10,31,7,0.0 +21964,63,43.9,38,0.0 +21964,40,18.4,49,0.0 +21964,37,26,32,0.0 +21964,1,18,30,0.0 +21964,8,40,43,0.0 +21964,6,25,26,0.0 +21964,39,18,31,0.0 +21964,62,49.3,17,0.0 +21964,59,55,26,0.0 +21964,11,21,36,0.0 +21964,27,43.9,26,0.0 +21964,75,7.75,2,0.0 +21964,34,14,37,0.0 +21964,44,19.45,48,0.0 +21964,50,16.25,22,0.0 +21964,26,31.23,31,0.0 +21964,74,10,6,0.0 +21964,56,38,1,0.0 +21964,77,13,36,0.0 +21964,43,46,42,0.0 +21964,42,14,43,0.0 +21964,70,15,26,0.0 +21964,15,15.5,46,0.0 +21964,9,97,16,0.0 +21964,28,45.6,21,0.0 +21964,14,23.25,16,0.0 +21964,54,7.45,27,0.0 +21964,57,19.5,29,0.0 +21964,3,10,7,0.0 +21964,22,21,18,0.0 +21964,61,28.5,7,0.0 +21964,60,34,26,0.0 +21964,20,81,5,0.0 +21964,52,7,1,0.0 +21964,36,19,30,0.0 +21964,49,20,4,0.0 +21964,29,123.79,24,0.0 +21964,18,62.5,27,0.0 +21965,21,10,27,0.0 +21965,33,2.5,41,0.0 +21965,17,39,16,0.0 +21965,34,14,24,0.0 +21965,31,12.5,4,0.0 +21965,53,32.8,36,0.0 +21965,26,31.23,15,0.0 +21965,73,15,15,0.0 +21965,62,49.3,6,0.0 +21965,13,6,7,0.0 +21965,12,38,3,0.0 +21965,16,17.45,33,0.0 +21965,76,18,50,0.0 +21966,61,28.5,38,0.0 +21966,69,36,4,0.0 +21966,15,15.5,1,0.0 +21966,37,26,34,0.0 +21966,68,12.5,20,0.0 +21966,60,34,3,0.0 +21966,30,25.89,31,0.0 +21966,14,23.25,7,0.0 +21966,54,7.45,31,0.0 +21966,5,21.35,26,0.0 +21966,50,16.25,19,0.0 +21966,23,9,43,0.0 +21966,25,14,38,0.0 +21966,39,18,50,0.0 +21966,51,53,22,0.0 +21966,40,18.4,4,0.0 +21966,33,2.5,2,0.0 +21966,49,20,41,0.0 +21966,38,263.5,1,0.0 +21966,59,55,25,0.0 +21966,16,17.45,37,0.0 +21966,55,24,46,0.0 +21966,11,21,5,0.0 +21966,75,7.75,2,0.0 +21966,8,40,22,0.0 +21966,1,18,37,0.0 +21966,57,19.5,29,0.0 +21966,47,9.5,3,0.0 +21966,34,14,13,0.0 +21966,9,97,34,0.0 +21966,29,123.79,49,0.0 +21966,74,10,43,0.0 +21966,63,43.9,17,0.0 +21966,22,21,13,0.0 +21966,77,13,9,0.0 +21966,18,62.5,4,0.0 +21966,41,9.65,9,0.0 +21966,3,10,2,0.0 +21966,73,15,32,0.0 +21966,28,45.6,31,0.0 +21966,58,13.25,41,0.0 +21966,13,6,39,0.0 +21966,27,43.9,40,0.0 +21966,66,17,15,0.0 +21966,65,21.05,26,0.0 +21966,43,46,39,0.0 +21966,32,32,20,0.0 +21966,20,81,26,0.0 +21966,26,31.23,2,0.0 +21967,65,21.05,5,0.0 +21967,69,36,22,0.0 +21967,25,14,21,0.0 +21967,24,4.5,33,0.0 +21967,12,38,41,0.0 +21967,47,9.5,48,0.0 +21967,35,18,27,0.0 +21967,34,14,6,0.0 +21967,26,31.23,19,0.0 +21967,73,15,20,0.0 +21967,37,26,27,0.0 +21967,16,17.45,34,0.0 +21967,51,53,14,0.0 +21967,41,9.65,13,0.0 +21967,1,18,38,0.0 +21967,6,25,33,0.0 +21967,38,263.5,17,0.0 +21967,2,19,50,0.0 +21967,3,10,30,0.0 +21967,67,14,20,0.0 +21967,52,7,43,0.0 +21967,54,7.45,38,0.0 +21967,57,19.5,41,0.0 +21967,4,22,37,0.0 +21967,68,12.5,49,0.0 +21967,76,18,18,0.0 +21967,56,38,17,0.0 +21967,71,21.5,42,0.0 +21967,48,12.75,18,0.0 +21967,29,123.79,44,0.0 +21967,59,55,47,0.0 +21967,39,18,37,0.0 +21967,5,21.35,26,0.0 +21967,60,34,38,0.0 +21967,21,10,10,0.0 +21967,14,23.25,27,0.0 +21967,23,9,18,0.0 +21968,41,9.65,4,0.0 +21968,4,22,37,0.0 +21968,36,19,5,0.0 +21968,68,12.5,33,0.0 +21968,40,18.4,39,0.0 +21968,6,25,46,0.0 +21968,23,9,44,0.0 +21968,7,30,39,0.0 +21968,64,33.25,37,0.0 +21968,2,19,35,0.0 +21968,22,21,2,0.0 +21968,37,26,33,0.0 +21968,60,34,18,0.0 +21968,26,31.23,32,0.0 +21968,3,10,17,0.0 +21968,70,15,17,0.0 +21968,33,2.5,4,0.0 +21968,49,20,25,0.0 +21968,17,39,17,0.0 +21968,14,23.25,2,0.0 +21968,12,38,19,0.0 +21968,38,263.5,13,0.0 +21968,19,9.2,38,0.0 +21968,24,4.5,29,0.0 +21968,5,21.35,21,0.0 +21968,42,14,8,0.0 +21968,62,49.3,45,0.0 +21968,75,7.75,3,0.0 +21968,43,46,34,0.0 +21968,77,13,44,0.0 +21968,11,21,43,0.0 +21968,73,15,41,0.0 +21968,1,18,44,0.0 +21968,56,38,28,0.0 +21968,8,40,35,0.0 +21968,51,53,6,0.0 +21968,13,6,30,0.0 +21968,58,13.25,10,0.0 +21968,30,25.89,24,0.0 +21968,54,7.45,28,0.0 +21968,9,97,39,0.0 +21968,46,12,14,0.0 +21968,35,18,30,0.0 +21968,27,43.9,40,0.0 +21968,66,17,3,0.0 +21968,59,55,18,0.0 +21968,21,10,39,0.0 +21968,72,34.8,22,0.0 +21968,47,9.5,28,0.0 +21968,34,14,44,0.0 +21968,74,10,48,0.0 +21968,39,18,21,0.0 +21968,57,19.5,31,0.0 +21968,31,12.5,36,0.0 +21968,61,28.5,44,0.0 +21968,25,14,40,0.0 +21968,76,18,25,0.0 +21968,18,62.5,21,0.0 +21968,65,21.05,20,0.0 +21968,32,32,11,0.0 +21968,67,14,27,0.0 +21968,45,9.5,15,0.0 +21968,16,17.45,42,0.0 +21968,15,15.5,22,0.0 +21969,40,18.4,49,0.0 +21969,71,21.5,4,0.0 +21969,69,36,31,0.0 +21969,38,263.5,6,0.0 +21969,43,46,42,0.0 +21969,12,38,12,0.0 +21969,58,13.25,42,0.0 +21969,41,9.65,17,0.0 +21969,65,21.05,42,0.0 +21969,49,20,15,0.0 +21969,4,22,40,0.0 +21969,67,14,8,0.0 +21969,74,10,50,0.0 +21969,20,81,24,0.0 +21969,55,24,30,0.0 +21969,8,40,12,0.0 +21969,32,32,49,0.0 +21969,73,15,29,0.0 +21970,72,34.8,17,0.0 +21970,48,12.75,8,0.0 +21970,63,43.9,8,0.0 +21970,70,15,25,0.0 +21970,50,16.25,16,0.0 +21970,69,36,11,0.0 +21970,9,97,1,0.0 +21970,47,9.5,43,0.0 +21971,28,45.6,47,0.0 +21971,38,263.5,2,0.0 +21971,71,21.5,34,0.0 +21971,8,40,40,0.0 +21971,27,43.9,27,0.0 +21971,37,26,43,0.0 +21971,21,10,5,0.0 +21971,58,13.25,50,0.0 +21971,15,15.5,34,0.0 +21971,46,12,32,0.0 +21971,30,25.89,13,0.0 +21971,59,55,9,0.0 +21971,70,15,25,0.0 +21971,49,20,11,0.0 +21971,31,12.5,33,0.0 +21971,54,7.45,1,0.0 +21971,76,18,21,0.0 +21971,10,31,11,0.0 +21971,69,36,47,0.0 +21971,48,12.75,13,0.0 +21971,63,43.9,47,0.0 +21971,60,34,7,0.0 +21971,62,49.3,15,0.0 +21971,22,21,7,0.0 +21971,12,38,23,0.0 +21971,53,32.8,42,0.0 +21971,14,23.25,28,0.0 +21971,61,28.5,33,0.0 +21971,73,15,23,0.0 +21971,26,31.23,27,0.0 +21971,7,30,37,0.0 +21971,4,22,39,0.0 +21971,74,10,47,0.0 +21971,43,46,8,0.0 +21971,51,53,44,0.0 +21971,57,19.5,38,0.0 +21971,52,7,35,0.0 +21971,35,18,44,0.0 +21971,2,19,16,0.0 +21971,25,14,23,0.0 +21971,67,14,33,0.0 +21971,19,9.2,40,0.0 +21971,39,18,12,0.0 +21971,56,38,32,0.0 +21971,45,9.5,37,0.0 +21971,32,32,13,0.0 +21971,64,33.25,27,0.0 +21971,29,123.79,25,0.0 +21971,50,16.25,40,0.0 +21971,68,12.5,6,0.0 +21971,72,34.8,24,0.0 +21971,75,7.75,42,0.0 +21971,17,39,7,0.0 +21971,41,9.65,27,0.0 +21971,18,62.5,18,0.0 +21971,9,97,8,0.0 +21971,1,18,10,0.0 +21971,65,21.05,17,0.0 +21971,11,21,7,0.0 +21971,5,21.35,14,0.0 +21971,42,14,50,0.0 +21971,20,81,8,0.0 +21971,34,14,13,0.0 +21971,40,18.4,24,0.0 +21972,21,10,44,0.0 +21972,34,14,49,0.0 +21972,72,34.8,9,0.0 +21972,70,15,30,0.0 +21972,52,7,36,0.0 +21972,38,263.5,6,0.0 +21972,56,38,32,0.0 +21972,17,39,42,0.0 +21972,67,14,31,0.0 +21972,43,46,49,0.0 +21972,7,30,17,0.0 +21972,68,12.5,42,0.0 +21972,69,36,40,0.0 +21972,26,31.23,27,0.0 +21972,32,32,19,0.0 +21972,29,123.79,40,0.0 +21972,65,21.05,22,0.0 +21972,35,18,43,0.0 +21972,58,13.25,5,0.0 +21972,42,14,3,0.0 +21972,74,10,6,0.0 +21972,71,21.5,33,0.0 +21972,55,24,25,0.0 +21972,15,15.5,19,0.0 +21972,6,25,39,0.0 +21972,75,7.75,1,0.0 +21972,77,13,1,0.0 +21972,51,53,33,0.0 +21972,25,14,4,0.0 +21972,60,34,19,0.0 +21972,37,26,21,0.0 +21972,36,19,30,0.0 +21972,12,38,44,0.0 +21972,8,40,3,0.0 +21972,4,22,20,0.0 +21972,24,4.5,49,0.0 +21972,39,18,49,0.0 +21972,45,9.5,19,0.0 +21972,9,97,38,0.0 +21972,22,21,35,0.0 +21972,50,16.25,7,0.0 +21972,10,31,31,0.0 +21972,66,17,40,0.0 +21972,44,19.45,5,0.0 +21972,14,23.25,23,0.0 +21972,73,15,13,0.0 +21972,54,7.45,40,0.0 +21972,40,18.4,9,0.0 +21972,49,20,32,0.0 +21972,2,19,3,0.0 +21972,27,43.9,42,0.0 +21972,28,45.6,32,0.0 +21972,48,12.75,41,0.0 +21972,47,9.5,9,0.0 +21972,30,25.89,43,0.0 +21972,5,21.35,45,0.0 +21972,31,12.5,8,0.0 +21972,19,9.2,44,0.0 +21972,57,19.5,15,0.0 +21972,76,18,22,0.0 +21972,46,12,33,0.0 +21972,64,33.25,33,0.0 +21972,53,32.8,40,0.0 +21972,3,10,7,0.0 +21972,63,43.9,5,0.0 +21972,41,9.65,33,0.0 +21972,16,17.45,27,0.0 +21972,59,55,31,0.0 +21972,33,2.5,49,0.0 +21972,23,9,9,0.0 +21973,45,9.5,40,0.0 +21973,21,10,5,0.0 +21973,47,9.5,32,0.0 +21973,54,7.45,15,0.0 +21973,9,97,23,0.0 +21973,38,263.5,27,0.0 +21973,57,19.5,26,0.0 +21973,19,9.2,6,0.0 +21973,17,39,19,0.0 +21973,53,32.8,24,0.0 +21973,63,43.9,2,0.0 +21973,72,34.8,19,0.0 +21973,3,10,26,0.0 +21973,48,12.75,34,0.0 +21973,22,21,2,0.0 +21973,26,31.23,25,0.0 +21973,65,21.05,9,0.0 +21973,55,24,31,0.0 +21973,77,13,16,0.0 +21973,34,14,43,0.0 +21973,11,21,49,0.0 +21973,12,38,28,0.0 +21973,23,9,20,0.0 +21973,58,13.25,10,0.0 +21973,60,34,43,0.0 +21973,68,12.5,31,0.0 +21973,33,2.5,29,0.0 +21973,7,30,26,0.0 +21973,51,53,15,0.0 +21973,44,19.45,16,0.0 +21973,10,31,22,0.0 +21973,66,17,8,0.0 +21973,30,25.89,39,0.0 +21973,76,18,32,0.0 +21973,69,36,35,0.0 +21973,18,62.5,49,0.0 +21973,74,10,16,0.0 +21973,29,123.79,39,0.0 +21973,50,16.25,2,0.0 +21973,5,21.35,40,0.0 +21973,36,19,22,0.0 +21973,2,19,25,0.0 +21973,64,33.25,37,0.0 +21973,61,28.5,15,0.0 +21973,24,4.5,12,0.0 +21973,49,20,2,0.0 +21973,20,81,35,0.0 +21973,6,25,49,0.0 +21973,1,18,33,0.0 +21973,31,12.5,20,0.0 +21973,27,43.9,21,0.0 +21973,46,12,14,0.0 +21973,32,32,28,0.0 +21973,15,15.5,21,0.0 +21973,75,7.75,32,0.0 +21973,4,22,27,0.0 +21974,8,40,41,0.0 +21974,21,10,46,0.0 +21974,40,18.4,10,0.0 +21974,26,31.23,28,0.0 +21974,42,14,36,0.0 +21974,18,62.5,14,0.0 +21974,17,39,41,0.0 +21974,9,97,24,0.0 +21974,65,21.05,34,0.0 +21974,54,7.45,7,0.0 +21974,47,9.5,8,0.0 +21974,51,53,37,0.0 +21974,61,28.5,32,0.0 +21974,35,18,13,0.0 +21974,22,21,27,0.0 +21974,50,16.25,11,0.0 +21974,72,34.8,46,0.0 +21974,39,18,41,0.0 +21974,49,20,28,0.0 +21974,43,46,5,0.0 +21974,74,10,20,0.0 +21974,23,9,38,0.0 +21974,10,31,21,0.0 +21974,73,15,48,0.0 +21974,16,17.45,15,0.0 +21974,34,14,22,0.0 +21975,25,14,2,0.0 +21975,62,49.3,25,0.0 +21975,71,21.5,25,0.0 +21975,41,9.65,8,0.0 +21975,11,21,8,0.0 +21975,38,263.5,18,0.0 +21975,20,81,7,0.0 +21975,75,7.75,47,0.0 +21975,16,17.45,6,0.0 +21975,5,21.35,20,0.0 +21975,22,21,4,0.0 +21975,69,36,8,0.0 +21975,18,62.5,22,0.0 +21975,58,13.25,12,0.0 +21975,46,12,30,0.0 +21975,73,15,47,0.0 +21975,33,2.5,47,0.0 +21975,12,38,21,0.0 +21975,4,22,9,0.0 +21975,23,9,36,0.0 +21975,54,7.45,20,0.0 +21975,51,53,3,0.0 +21975,36,19,33,0.0 +21975,14,23.25,42,0.0 +21975,26,31.23,38,0.0 +21975,61,28.5,26,0.0 +21975,7,30,7,0.0 +21975,32,32,18,0.0 +21975,52,7,28,0.0 +21975,24,4.5,17,0.0 +21975,49,20,23,0.0 +21975,65,21.05,47,0.0 +21975,31,12.5,17,0.0 +21975,53,32.8,49,0.0 +21975,6,25,22,0.0 +21975,28,45.6,23,0.0 +21975,19,9.2,29,0.0 +21975,39,18,30,0.0 +21975,77,13,30,0.0 +21975,56,38,48,0.0 +21975,43,46,13,0.0 +21975,1,18,14,0.0 +21975,63,43.9,39,0.0 +21975,17,39,34,0.0 +21975,30,25.89,10,0.0 +21975,47,9.5,42,0.0 +21975,13,6,44,0.0 +21975,68,12.5,29,0.0 +21975,76,18,46,0.0 +21975,50,16.25,49,0.0 +21975,70,15,44,0.0 +21975,44,19.45,7,0.0 +21975,57,19.5,25,0.0 +21975,66,17,37,0.0 +21975,67,14,31,0.0 +21975,9,97,50,0.0 +21975,29,123.79,6,0.0 +21975,72,34.8,23,0.0 +21975,10,31,7,0.0 +21975,60,34,42,0.0 +21975,2,19,33,0.0 +21975,42,14,25,0.0 +21975,8,40,22,0.0 +21975,45,9.5,43,0.0 +21975,40,18.4,1,0.0 +21975,74,10,18,0.0 +21975,21,10,41,0.0 +21975,3,10,12,0.0 +21975,15,15.5,12,0.0 +21975,55,24,18,0.0 +21975,59,55,50,0.0 +21975,64,33.25,2,0.0 +21975,34,14,2,0.0 +21975,35,18,38,0.0 +21975,27,43.9,42,0.0 +21975,37,26,33,0.0 +21976,50,16.25,46,0.0 +21976,7,30,6,0.0 +21976,5,21.35,4,0.0 +21976,26,31.23,8,0.0 +21976,19,9.2,20,0.0 +21976,51,53,11,0.0 +21976,21,10,30,0.0 +21976,56,38,47,0.0 +21976,14,23.25,29,0.0 +21976,16,17.45,27,0.0 +21976,49,20,45,0.0 +21976,33,2.5,5,0.0 +21976,25,14,7,0.0 +21976,37,26,26,0.0 +21976,64,33.25,2,0.0 +21976,66,17,24,0.0 +21976,60,34,34,0.0 +21976,44,19.45,42,0.0 +21976,4,22,37,0.0 +21976,13,6,9,0.0 +21976,53,32.8,18,0.0 +21976,73,15,25,0.0 +21976,15,15.5,33,0.0 +21976,42,14,33,0.0 +21976,65,21.05,25,0.0 +21976,52,7,5,0.0 +21976,20,81,41,0.0 +21976,12,38,36,0.0 +21976,39,18,5,0.0 +21976,43,46,5,0.0 +21976,55,24,50,0.0 +21976,22,21,10,0.0 +21976,40,18.4,30,0.0 +21976,34,14,15,0.0 +21976,75,7.75,18,0.0 +21976,77,13,41,0.0 +21977,34,14,40,0.0 +21977,32,32,26,0.0 +21977,52,7,11,0.0 +21977,60,34,4,0.0 +21977,9,97,36,0.0 +21977,12,38,8,0.0 +21977,49,20,43,0.0 +21977,45,9.5,18,0.0 +21977,57,19.5,14,0.0 +21977,8,40,35,0.0 +21977,42,14,46,0.0 +21977,43,46,44,0.0 +21977,22,21,12,0.0 +21977,74,10,47,0.0 +21977,44,19.45,30,0.0 +21977,50,16.25,34,0.0 +21977,56,38,2,0.0 +21977,6,25,45,0.0 +21977,70,15,43,0.0 +21977,59,55,9,0.0 +21977,24,4.5,42,0.0 +21977,65,21.05,24,0.0 +21977,75,7.75,35,0.0 +21977,55,24,28,0.0 +21977,10,31,23,0.0 +21977,64,33.25,28,0.0 +21977,54,7.45,22,0.0 +21977,71,21.5,20,0.0 +21977,27,43.9,35,0.0 +21977,25,14,39,0.0 +21977,66,17,23,0.0 +21977,37,26,49,0.0 +21977,62,49.3,14,0.0 +21977,63,43.9,12,0.0 +21977,41,9.65,37,0.0 +21977,23,9,30,0.0 +21977,29,123.79,50,0.0 +21977,48,12.75,27,0.0 +21977,16,17.45,1,0.0 +21977,76,18,48,0.0 +21977,47,9.5,31,0.0 +21977,4,22,8,0.0 +21977,61,28.5,23,0.0 +21977,53,32.8,45,0.0 +21977,18,62.5,26,0.0 +21977,28,45.6,18,0.0 +21977,46,12,35,0.0 +21977,33,2.5,32,0.0 +21977,7,30,45,0.0 +21977,20,81,39,0.0 +21977,3,10,29,0.0 +21977,40,18.4,26,0.0 +21977,17,39,13,0.0 +21977,72,34.8,17,0.0 +21977,77,13,19,0.0 +21978,11,21,40,0.0 +21978,72,34.8,16,0.0 +21978,48,12.75,20,0.0 +21978,34,14,20,0.0 +21978,77,13,33,0.0 +21978,15,15.5,16,0.0 +21978,65,21.05,22,0.0 +21978,39,18,22,0.0 +21978,61,28.5,21,0.0 +21978,69,36,43,0.0 +21978,45,9.5,47,0.0 +21978,23,9,15,0.0 +21978,10,31,13,0.0 +21978,19,9.2,1,0.0 +21978,3,10,22,0.0 +21978,9,97,12,0.0 +21978,24,4.5,50,0.0 +21978,22,21,40,0.0 +21978,41,9.65,31,0.0 +21978,62,49.3,43,0.0 +21978,30,25.89,40,0.0 +21978,18,62.5,48,0.0 +21978,6,25,28,0.0 +21978,76,18,49,0.0 +21978,68,12.5,33,0.0 +21978,50,16.25,44,0.0 +21978,27,43.9,17,0.0 +21978,21,10,29,0.0 +21978,28,45.6,43,0.0 +21978,64,33.25,44,0.0 +21978,40,18.4,10,0.0 +21978,32,32,16,0.0 +21979,64,33.25,46,0.0 +21979,49,20,47,0.0 +21979,2,19,9,0.0 +21979,22,21,30,0.0 +21979,66,17,26,0.0 +21979,34,14,12,0.0 +21979,10,31,26,0.0 +21979,12,38,13,0.0 +21979,46,12,12,0.0 +21979,40,18.4,50,0.0 +21979,70,15,5,0.0 +21979,23,9,42,0.0 +21979,4,22,27,0.0 +21979,37,26,50,0.0 +21979,54,7.45,34,0.0 +21979,21,10,21,0.0 +21979,77,13,10,0.0 +21980,47,9.5,23,0.0 +21980,44,19.45,35,0.0 +21980,58,13.25,47,0.0 +21980,11,21,41,0.0 +21980,34,14,15,0.0 +21980,38,263.5,9,0.0 +21980,26,31.23,3,0.0 +21980,23,9,17,0.0 +21980,31,12.5,35,0.0 +21980,51,53,3,0.0 +21980,14,23.25,10,0.0 +21980,35,18,40,0.0 +21980,64,33.25,36,0.0 +21980,13,6,21,0.0 +21980,40,18.4,12,0.0 +21980,56,38,8,0.0 +21980,1,18,12,0.0 +21980,9,97,42,0.0 +21980,45,9.5,34,0.0 +21980,73,15,6,0.0 +21980,76,18,46,0.0 +21980,52,7,23,0.0 +21980,30,25.89,38,0.0 +21980,15,15.5,15,0.0 +21980,66,17,37,0.0 +21980,54,7.45,30,0.0 +21980,2,19,5,0.0 +21980,70,15,18,0.0 +21980,65,21.05,39,0.0 +21980,16,17.45,7,0.0 +21980,10,31,26,0.0 +21980,3,10,4,0.0 +21980,63,43.9,50,0.0 +21980,19,9.2,38,0.0 +21980,5,21.35,46,0.0 +21980,28,45.6,10,0.0 +21980,21,10,10,0.0 +21980,29,123.79,5,0.0 +21980,32,32,44,0.0 +21980,62,49.3,6,0.0 +21980,6,25,42,0.0 +21980,12,38,21,0.0 +21980,68,12.5,47,0.0 +21980,57,19.5,24,0.0 +21980,39,18,6,0.0 +21980,4,22,11,0.0 +21980,17,39,49,0.0 +21980,37,26,42,0.0 +21980,18,62.5,27,0.0 +21980,77,13,13,0.0 +21980,33,2.5,15,0.0 +21980,59,55,10,0.0 +21980,36,19,7,0.0 +21980,24,4.5,26,0.0 +21980,72,34.8,39,0.0 +21980,27,43.9,45,0.0 +21980,67,14,29,0.0 +21980,20,81,43,0.0 +21980,75,7.75,23,0.0 +21980,25,14,48,0.0 +21980,50,16.25,21,0.0 +21980,71,21.5,23,0.0 +21980,8,40,36,0.0 +21980,49,20,2,0.0 +21980,42,14,13,0.0 +21980,61,28.5,8,0.0 +21980,48,12.75,5,0.0 +21981,25,14,15,0.0 +21981,34,14,36,0.0 +21981,52,7,50,0.0 +21981,70,15,49,0.0 +21981,7,30,17,0.0 +21981,24,4.5,24,0.0 +21981,27,43.9,8,0.0 +21981,60,34,34,0.0 +21981,71,21.5,33,0.0 +21981,36,19,9,0.0 +21981,10,31,5,0.0 +21981,3,10,33,0.0 +21981,39,18,41,0.0 +21981,21,10,31,0.0 +21981,16,17.45,43,0.0 +21981,15,15.5,32,0.0 +21981,11,21,15,0.0 +21981,75,7.75,41,0.0 +21981,45,9.5,20,0.0 +21981,59,55,15,0.0 +21981,14,23.25,50,0.0 +21981,50,16.25,27,0.0 +21982,60,34,38,0.0 +21982,16,17.45,34,0.0 +21982,29,123.79,49,0.0 +21982,35,18,9,0.0 +21982,76,18,30,0.0 +21982,3,10,39,0.0 +21982,51,53,41,0.0 +21982,33,2.5,14,0.0 +21982,20,81,39,0.0 +21982,56,38,48,0.0 +21982,2,19,21,0.0 +21982,4,22,29,0.0 +21982,46,12,27,0.0 +21982,18,62.5,3,0.0 +21982,27,43.9,12,0.0 +21982,41,9.65,40,0.0 +21982,43,46,2,0.0 +21982,19,9.2,42,0.0 +21982,36,19,33,0.0 +21982,24,4.5,28,0.0 +21982,31,12.5,48,0.0 +21982,61,28.5,18,0.0 +21982,64,33.25,47,0.0 +21982,45,9.5,9,0.0 +21982,70,15,22,0.0 +21982,32,32,11,0.0 +21982,14,23.25,8,0.0 +21982,17,39,11,0.0 +21982,66,17,47,0.0 +21982,62,49.3,28,0.0 +21982,63,43.9,45,0.0 +21982,68,12.5,47,0.0 +21982,10,31,24,0.0 +21982,73,15,20,0.0 +21982,1,18,41,0.0 +21982,71,21.5,40,0.0 +21982,53,32.8,21,0.0 +21982,47,9.5,9,0.0 +21982,7,30,5,0.0 +21982,44,19.45,38,0.0 +21982,23,9,15,0.0 +21982,5,21.35,45,0.0 +21982,52,7,10,0.0 +21982,37,26,27,0.0 +21982,28,45.6,20,0.0 +21982,42,14,21,0.0 +21982,54,7.45,12,0.0 +21982,48,12.75,35,0.0 +21982,55,24,50,0.0 +21982,50,16.25,45,0.0 +21982,21,10,5,0.0 +21982,38,263.5,45,0.0 +21982,12,38,17,0.0 +21982,77,13,42,0.0 +21982,57,19.5,31,0.0 +21982,59,55,41,0.0 +21982,25,14,3,0.0 +21982,34,14,27,0.0 +21982,65,21.05,48,0.0 +21982,8,40,2,0.0 +21982,69,36,3,0.0 +21982,39,18,3,0.0 +21982,11,21,6,0.0 +21982,13,6,26,0.0 +21982,26,31.23,37,0.0 +21982,40,18.4,46,0.0 +21982,9,97,29,0.0 +21982,30,25.89,42,0.0 +21983,64,33.25,16,0.0 +21983,10,31,39,0.0 +21983,41,9.65,12,0.0 +21983,20,81,23,0.0 +21983,3,10,3,0.0 +21983,70,15,17,0.0 +21983,36,19,33,0.0 +21983,69,36,18,0.0 +21983,67,14,34,0.0 +21983,15,15.5,29,0.0 +21983,13,6,39,0.0 +21983,12,38,32,0.0 +21983,2,19,21,0.0 +21983,62,49.3,19,0.0 +21983,37,26,31,0.0 +21983,68,12.5,22,0.0 +21983,77,13,26,0.0 +21983,66,17,24,0.0 +21983,30,25.89,42,0.0 +21983,58,13.25,12,0.0 +21983,46,12,50,0.0 +21983,54,7.45,42,0.0 +21983,74,10,20,0.0 +21983,38,263.5,19,0.0 +21983,22,21,29,0.0 +21983,61,28.5,16,0.0 +21983,44,19.45,44,0.0 +21983,28,45.6,32,0.0 +21983,7,30,33,0.0 +21983,29,123.79,17,0.0 +21983,25,14,36,0.0 +21983,40,18.4,41,0.0 +21983,31,12.5,17,0.0 +21983,47,9.5,9,0.0 +21983,56,38,17,0.0 +21983,39,18,16,0.0 +21983,11,21,12,0.0 +21983,1,18,12,0.0 +21983,9,97,33,0.0 +21983,5,21.35,28,0.0 +21983,65,21.05,1,0.0 +21983,8,40,23,0.0 +21983,14,23.25,40,0.0 +21983,32,32,27,0.0 +21983,71,21.5,21,0.0 +21983,33,2.5,35,0.0 +21983,59,55,22,0.0 +21983,60,34,38,0.0 +21983,34,14,49,0.0 +21983,24,4.5,15,0.0 +21983,43,46,4,0.0 +21983,16,17.45,16,0.0 +21983,6,25,20,0.0 +21983,17,39,26,0.0 +21983,63,43.9,15,0.0 +21983,23,9,45,0.0 +21983,27,43.9,31,0.0 +21983,19,9.2,7,0.0 +21983,48,12.75,7,0.0 +21983,51,53,22,0.0 +21983,55,24,32,0.0 +21983,72,34.8,1,0.0 +21983,42,14,21,0.0 +21983,57,19.5,17,0.0 +21983,75,7.75,46,0.0 +21983,35,18,6,0.0 +21983,52,7,44,0.0 +21983,50,16.25,2,0.0 +21983,76,18,47,0.0 +21984,42,14,4,0.0 +21984,12,38,42,0.0 +21984,20,81,24,0.0 +21984,10,31,44,0.0 +21984,11,21,46,0.0 +21984,23,9,9,0.0 +21984,29,123.79,18,0.0 +21984,50,16.25,35,0.0 +21984,4,22,25,0.0 +21984,30,25.89,28,0.0 +21984,65,21.05,27,0.0 +21984,37,26,2,0.0 +21984,13,6,10,0.0 +21984,36,19,48,0.0 +21984,54,7.45,14,0.0 +21984,16,17.45,2,0.0 +21984,32,32,2,0.0 +21984,40,18.4,8,0.0 +21984,63,43.9,22,0.0 +21984,18,62.5,49,0.0 +21984,45,9.5,44,0.0 +21984,67,14,16,0.0 +21984,57,19.5,40,0.0 +21984,60,34,19,0.0 +21984,51,53,30,0.0 +21984,47,9.5,1,0.0 +21984,48,12.75,43,0.0 +21984,7,30,33,0.0 +21984,6,25,46,0.0 +21984,3,10,20,0.0 +21984,49,20,20,0.0 +21984,44,19.45,5,0.0 +21984,28,45.6,43,0.0 +21984,27,43.9,34,0.0 +21984,61,28.5,42,0.0 +21984,72,34.8,3,0.0 +21984,9,97,15,0.0 +21984,17,39,24,0.0 +21984,39,18,44,0.0 +21984,73,15,43,0.0 +21984,71,21.5,5,0.0 +21984,58,13.25,41,0.0 +21984,25,14,22,0.0 +21984,2,19,22,0.0 +21984,75,7.75,26,0.0 +21984,66,17,2,0.0 +21984,74,10,11,0.0 +21984,70,15,14,0.0 +21984,55,24,18,0.0 +21984,56,38,32,0.0 +21984,33,2.5,9,0.0 +21984,59,55,50,0.0 +21985,15,15.5,15,0.0 +21985,44,19.45,24,0.0 +21985,41,9.65,31,0.0 +21985,45,9.5,39,0.0 +21985,63,43.9,16,0.0 +21985,37,26,40,0.0 +21985,68,12.5,18,0.0 +21985,26,31.23,13,0.0 +21985,42,14,31,0.0 +21985,10,31,5,0.0 +21985,58,13.25,23,0.0 +21985,16,17.45,4,0.0 +21985,71,21.5,38,0.0 +21985,12,38,18,0.0 +21985,57,19.5,42,0.0 +21985,38,263.5,41,0.0 +21985,75,7.75,15,0.0 +21985,3,10,18,0.0 +21985,32,32,9,0.0 +21985,60,34,33,0.0 +21985,9,97,40,0.0 +21985,70,15,2,0.0 +21985,47,9.5,6,0.0 +21985,22,21,19,0.0 +21985,69,36,30,0.0 +21985,30,25.89,47,0.0 +21985,6,25,46,0.0 +21985,29,123.79,41,0.0 +21985,61,28.5,10,0.0 +21985,11,21,45,0.0 +21985,72,34.8,11,0.0 +21985,40,18.4,18,0.0 +21985,50,16.25,21,0.0 +21985,28,45.6,25,0.0 +21985,36,19,28,0.0 +21985,56,38,8,0.0 +21985,62,49.3,45,0.0 +21985,65,21.05,5,0.0 +21985,31,12.5,2,0.0 +21985,4,22,10,0.0 +21985,49,20,1,0.0 +21985,51,53,43,0.0 +21985,8,40,40,0.0 +21985,74,10,45,0.0 +21985,24,4.5,32,0.0 +21985,34,14,34,0.0 +21985,39,18,50,0.0 +21985,73,15,19,0.0 +21985,17,39,47,0.0 +21985,54,7.45,22,0.0 +21985,67,14,17,0.0 +21985,64,33.25,3,0.0 +21985,43,46,48,0.0 +21985,25,14,1,0.0 +21985,14,23.25,9,0.0 +21985,20,81,5,0.0 +21985,55,24,16,0.0 +21985,48,12.75,26,0.0 +21985,52,7,40,0.0 +21985,1,18,3,0.0 +21985,27,43.9,39,0.0 +21985,7,30,8,0.0 +21985,2,19,45,0.0 +21985,53,32.8,8,0.0 +21985,66,17,38,0.0 +21985,13,6,1,0.0 +21985,19,9.2,4,0.0 +21985,23,9,34,0.0 +21986,16,17.45,6,0.0 +21986,19,9.2,31,0.0 +21986,12,38,40,0.0 +21986,76,18,19,0.0 +21986,47,9.5,37,0.0 +21986,15,15.5,10,0.0 +21986,26,31.23,33,0.0 +21986,34,14,13,0.0 +21986,21,10,36,0.0 +21986,54,7.45,50,0.0 +21986,70,15,14,0.0 +21986,52,7,47,0.0 +21986,27,43.9,32,0.0 +21986,61,28.5,6,0.0 +21986,2,19,24,0.0 +21986,30,25.89,39,0.0 +21986,25,14,32,0.0 +21986,53,32.8,40,0.0 +21986,29,123.79,47,0.0 +21986,56,38,38,0.0 +21986,4,22,5,0.0 +21986,55,24,18,0.0 +21986,41,9.65,28,0.0 +21986,38,263.5,18,0.0 +21986,66,17,48,0.0 +21986,48,12.75,46,0.0 +21987,75,7.75,4,0.0 +21987,73,15,48,0.0 +21987,6,25,26,0.0 +21987,19,9.2,6,0.0 +21987,29,123.79,10,0.0 +21987,13,6,6,0.0 +21987,16,17.45,48,0.0 +21987,71,21.5,34,0.0 +21987,49,20,21,0.0 +21987,48,12.75,16,0.0 +21987,58,13.25,22,0.0 +21987,7,30,31,0.0 +21987,38,263.5,11,0.0 +21987,9,97,31,0.0 +21987,39,18,35,0.0 +21987,15,15.5,1,0.0 +21987,42,14,50,0.0 +21987,17,39,15,0.0 +21987,4,22,25,0.0 +21987,64,33.25,32,0.0 +21987,22,21,31,0.0 +21987,50,16.25,28,0.0 +21987,40,18.4,44,0.0 +21987,26,31.23,28,0.0 +21987,76,18,9,0.0 +21987,37,26,7,0.0 +21987,24,4.5,46,0.0 +21987,32,32,7,0.0 +21987,77,13,46,0.0 +21988,4,22,40,0.0 +21988,71,21.5,37,0.0 +21988,22,21,10,0.0 +21988,76,18,7,0.0 +21988,68,12.5,48,0.0 +21988,74,10,32,0.0 +21988,26,31.23,1,0.0 +21988,41,9.65,11,0.0 +21988,10,31,24,0.0 +21988,45,9.5,40,0.0 +21988,60,34,4,0.0 +21988,48,12.75,44,0.0 +21988,72,34.8,8,0.0 +21988,12,38,43,0.0 +21988,39,18,30,0.0 +21988,42,14,8,0.0 +21988,5,21.35,44,0.0 +21988,14,23.25,12,0.0 +21988,44,19.45,48,0.0 +21988,24,4.5,37,0.0 +21988,35,18,43,0.0 +21988,58,13.25,30,0.0 +21988,40,18.4,49,0.0 +21988,31,12.5,37,0.0 +21988,66,17,27,0.0 +21988,11,21,10,0.0 +21988,73,15,13,0.0 +21988,61,28.5,7,0.0 +21988,51,53,33,0.0 +21988,69,36,28,0.0 +21988,32,32,4,0.0 +21988,56,38,6,0.0 +21988,43,46,21,0.0 +21988,1,18,27,0.0 +21988,47,9.5,45,0.0 +21989,71,21.5,47,0.0 +21989,17,39,38,0.0 +21989,57,19.5,22,0.0 +21989,59,55,47,0.0 +21989,13,6,46,0.0 +21989,44,19.45,44,0.0 +21989,29,123.79,43,0.0 +21989,28,45.6,46,0.0 +21989,6,25,28,0.0 +21989,5,21.35,40,0.0 +21989,67,14,29,0.0 +21989,22,21,10,0.0 +21989,3,10,22,0.0 +21989,27,43.9,39,0.0 +21989,9,97,8,0.0 +21989,2,19,17,0.0 +21989,36,19,26,0.0 +21989,52,7,38,0.0 +21989,50,16.25,43,0.0 +21989,49,20,8,0.0 +21989,45,9.5,2,0.0 +21990,35,18,49,0.0 +21990,21,10,39,0.0 +21990,2,19,4,0.0 +21990,32,32,21,0.0 +21990,73,15,20,0.0 +21990,36,19,46,0.0 +21990,48,12.75,40,0.0 +21990,49,20,11,0.0 +21990,17,39,3,0.0 +21990,3,10,36,0.0 +21990,13,6,21,0.0 +21990,59,55,6,0.0 +21990,10,31,33,0.0 +21990,43,46,23,0.0 +21990,11,21,4,0.0 +21990,45,9.5,38,0.0 +21990,74,10,50,0.0 +21990,58,13.25,44,0.0 +21990,29,123.79,41,0.0 +21990,41,9.65,17,0.0 +21990,60,34,5,0.0 +21990,67,14,5,0.0 +21990,50,16.25,39,0.0 +21990,19,9.2,38,0.0 +21990,66,17,26,0.0 +21990,15,15.5,25,0.0 +21990,77,13,37,0.0 +21990,1,18,22,0.0 +21990,61,28.5,34,0.0 +21990,70,15,48,0.0 +21990,38,263.5,8,0.0 +21990,51,53,7,0.0 +21990,47,9.5,37,0.0 +21990,14,23.25,36,0.0 +21990,57,19.5,3,0.0 +21990,25,14,17,0.0 +21990,40,18.4,10,0.0 +21990,52,7,16,0.0 +21990,5,21.35,7,0.0 +21990,28,45.6,30,0.0 +21990,68,12.5,33,0.0 +21990,46,12,26,0.0 +21990,76,18,41,0.0 +21990,62,49.3,17,0.0 +21990,65,21.05,30,0.0 +21990,33,2.5,27,0.0 +21990,30,25.89,2,0.0 +21990,54,7.45,16,0.0 +21990,55,24,30,0.0 +21990,63,43.9,3,0.0 +21990,24,4.5,13,0.0 +21990,71,21.5,6,0.0 +21990,69,36,7,0.0 +21990,64,33.25,50,0.0 +21990,72,34.8,23,0.0 +21990,7,30,29,0.0 +21990,26,31.23,11,0.0 +21990,42,14,31,0.0 +21990,6,25,7,0.0 +21990,22,21,14,0.0 +21990,37,26,9,0.0 +21990,56,38,49,0.0 +21990,18,62.5,18,0.0 +21990,20,81,38,0.0 +21990,75,7.75,40,0.0 +21990,8,40,17,0.0 +21990,27,43.9,25,0.0 +21990,39,18,9,0.0 +21990,4,22,11,0.0 +21990,44,19.45,39,0.0 +21990,53,32.8,39,0.0 +21990,23,9,10,0.0 +21990,31,12.5,1,0.0 +21990,12,38,50,0.0 +21990,34,14,36,0.0 +21990,16,17.45,50,0.0 +21990,9,97,17,0.0 +21991,60,34,50,0.0 +21991,12,38,27,0.0 +21991,17,39,11,0.0 +21991,18,62.5,35,0.0 +21991,33,2.5,36,0.0 +21991,22,21,47,0.0 +21991,37,26,5,0.0 +21991,42,14,9,0.0 +21991,14,23.25,7,0.0 +21991,58,13.25,2,0.0 +21991,6,25,33,0.0 +21991,71,21.5,35,0.0 +21991,13,6,40,0.0 +21991,4,22,33,0.0 +21991,32,32,1,0.0 +21991,15,15.5,10,0.0 +21991,47,9.5,2,0.0 +21991,57,19.5,2,0.0 +21991,10,31,8,0.0 +21991,70,15,40,0.0 +21991,11,21,32,0.0 +21991,31,12.5,28,0.0 +21991,34,14,47,0.0 +21991,65,21.05,10,0.0 +21991,77,13,46,0.0 +21991,24,4.5,7,0.0 +21991,1,18,42,0.0 +21991,7,30,10,0.0 +21991,9,97,26,0.0 +21991,5,21.35,21,0.0 +21991,39,18,20,0.0 +21991,41,9.65,41,0.0 +21991,3,10,9,0.0 +21991,49,20,46,0.0 +21991,74,10,42,0.0 +21991,61,28.5,27,0.0 +21991,76,18,14,0.0 +21991,66,17,6,0.0 +21991,23,9,3,0.0 +21991,8,40,1,0.0 +21991,68,12.5,11,0.0 +21992,68,12.5,41,0.0 +21992,64,33.25,3,0.0 +21992,73,15,18,0.0 +21992,32,32,9,0.0 +21992,31,12.5,44,0.0 +21992,69,36,17,0.0 +21992,38,263.5,33,0.0 +21992,2,19,43,0.0 +21992,7,30,45,0.0 +21992,17,39,13,0.0 +21992,35,18,28,0.0 +21992,53,32.8,11,0.0 +21992,10,31,35,0.0 +21992,24,4.5,3,0.0 +21992,3,10,40,0.0 +21992,59,55,27,0.0 +21992,58,13.25,33,0.0 +21992,76,18,2,0.0 +21992,1,18,46,0.0 +21992,40,18.4,34,0.0 +21992,57,19.5,24,0.0 +21992,4,22,13,0.0 +21992,28,45.6,27,0.0 +21992,6,25,39,0.0 +21992,20,81,44,0.0 +21992,67,14,29,0.0 +21992,19,9.2,4,0.0 +21992,23,9,8,0.0 +21992,25,14,10,0.0 +21992,52,7,10,0.0 +21992,33,2.5,18,0.0 +21992,8,40,34,0.0 +21992,65,21.05,17,0.0 +21992,11,21,5,0.0 +21993,31,12.5,32,0.0 +21993,30,25.89,45,0.0 +21993,68,12.5,38,0.0 +21993,9,97,32,0.0 +21993,26,31.23,31,0.0 +21993,57,19.5,15,0.0 +21993,48,12.75,39,0.0 +21993,63,43.9,40,0.0 +21993,41,9.65,32,0.0 +21993,19,9.2,43,0.0 +21993,38,263.5,8,0.0 +21993,43,46,41,0.0 +21993,55,24,39,0.0 +21993,49,20,8,0.0 +21993,2,19,22,0.0 +21993,70,15,2,0.0 +21993,14,23.25,10,0.0 +21993,25,14,3,0.0 +21993,40,18.4,13,0.0 +21993,5,21.35,35,0.0 +21993,6,25,45,0.0 +21993,45,9.5,33,0.0 +21993,13,6,22,0.0 +21993,39,18,18,0.0 +21993,29,123.79,40,0.0 +21993,47,9.5,24,0.0 +21993,1,18,25,0.0 +21993,34,14,18,0.0 +21993,17,39,11,0.0 +21994,65,21.05,3,0.0 +21994,64,33.25,42,0.0 +21994,50,16.25,11,0.0 +21994,48,12.75,40,0.0 +21994,30,25.89,50,0.0 +21994,56,38,10,0.0 +21994,69,36,20,0.0 +21994,52,7,24,0.0 +21994,18,62.5,15,0.0 +21994,33,2.5,50,0.0 +21994,25,14,47,0.0 +21994,57,19.5,32,0.0 +21994,19,9.2,32,0.0 +21994,68,12.5,20,0.0 +21994,4,22,6,0.0 +21994,71,21.5,26,0.0 +21994,13,6,17,0.0 +21994,32,32,24,0.0 +21994,54,7.45,44,0.0 +21994,76,18,33,0.0 +21994,75,7.75,12,0.0 +21994,38,263.5,17,0.0 +21994,14,23.25,42,0.0 +21994,67,14,37,0.0 +21994,58,13.25,31,0.0 +21994,49,20,1,0.0 +21994,66,17,17,0.0 +21994,31,12.5,13,0.0 +21994,34,14,19,0.0 +21994,23,9,33,0.0 +21994,21,10,46,0.0 +21994,20,81,9,0.0 +21994,9,97,13,0.0 +21994,60,34,21,0.0 +21994,70,15,21,0.0 +21994,5,21.35,26,0.0 +21994,59,55,22,0.0 +21994,63,43.9,22,0.0 +21994,16,17.45,15,0.0 +21994,11,21,11,0.0 +21994,2,19,14,0.0 +21994,72,34.8,5,0.0 +21994,3,10,9,0.0 +21994,27,43.9,36,0.0 +21994,55,24,24,0.0 +21994,43,46,50,0.0 +21994,22,21,5,0.0 +21994,40,18.4,9,0.0 +21994,61,28.5,17,0.0 +21994,12,38,34,0.0 +21994,10,31,36,0.0 +21994,39,18,30,0.0 +21994,42,14,28,0.0 +21994,35,18,13,0.0 +21994,26,31.23,27,0.0 +21994,24,4.5,42,0.0 +21994,7,30,10,0.0 +21994,62,49.3,42,0.0 +21994,15,15.5,30,0.0 +21994,47,9.5,2,0.0 +21994,37,26,32,0.0 +21994,73,15,48,0.0 +21994,51,53,37,0.0 +21994,74,10,19,0.0 +21994,45,9.5,31,0.0 +21994,36,19,30,0.0 +21994,6,25,1,0.0 +21994,29,123.79,23,0.0 +21994,53,32.8,35,0.0 +21994,46,12,1,0.0 +21994,8,40,49,0.0 +21994,1,18,30,0.0 +21995,51,53,25,0.0 +21995,68,12.5,17,0.0 +21995,56,38,48,0.0 +21995,22,21,22,0.0 +21995,44,19.45,12,0.0 +21995,35,18,31,0.0 +21995,47,9.5,14,0.0 +21995,45,9.5,20,0.0 +21995,71,21.5,45,0.0 +21995,1,18,19,0.0 +21995,67,14,40,0.0 +21995,27,43.9,40,0.0 +21995,53,32.8,36,0.0 +21995,48,12.75,7,0.0 +21995,29,123.79,21,0.0 +21995,52,7,10,0.0 +21995,73,15,14,0.0 +21995,37,26,29,0.0 +21995,57,19.5,6,0.0 +21995,38,263.5,8,0.0 +21995,30,25.89,19,0.0 +21995,46,12,5,0.0 +21995,55,24,47,0.0 +21995,36,19,30,0.0 +21995,54,7.45,27,0.0 +21995,34,14,22,0.0 +21995,8,40,37,0.0 +21995,61,28.5,46,0.0 +21995,77,13,3,0.0 +21995,66,17,41,0.0 +21995,3,10,31,0.0 +21995,65,21.05,1,0.0 +21995,9,97,42,0.0 +21995,5,21.35,5,0.0 +21995,13,6,3,0.0 +21995,12,38,13,0.0 +21995,7,30,25,0.0 +21995,19,9.2,33,0.0 +21995,24,4.5,2,0.0 +21995,74,10,37,0.0 +21995,6,25,37,0.0 +21995,72,34.8,37,0.0 +21995,25,14,5,0.0 +21995,17,39,28,0.0 +21995,39,18,19,0.0 +21995,62,49.3,36,0.0 +21996,39,18,47,0.0 +21996,70,15,7,0.0 +21996,4,22,17,0.0 +21996,75,7.75,35,0.0 +21996,33,2.5,3,0.0 +21996,68,12.5,22,0.0 +21996,38,263.5,9,0.0 +21996,26,31.23,29,0.0 +21996,49,20,9,0.0 +21997,41,9.65,7,0.0 +21997,52,7,13,0.0 +21997,64,33.25,48,0.0 +21997,17,39,33,0.0 +21997,19,9.2,14,0.0 +21997,1,18,19,0.0 +21997,11,21,34,0.0 +21997,49,20,20,0.0 +21997,54,7.45,1,0.0 +21997,31,12.5,14,0.0 +21997,60,34,28,0.0 +21997,6,25,47,0.0 +21997,59,55,6,0.0 +21997,5,21.35,24,0.0 +21997,50,16.25,11,0.0 +21997,70,15,46,0.0 +21997,20,81,48,0.0 +21997,71,21.5,16,0.0 +21997,47,9.5,7,0.0 +21997,61,28.5,10,0.0 +21997,25,14,10,0.0 +21997,7,30,13,0.0 +21997,66,17,16,0.0 +21997,32,32,10,0.0 +21997,24,4.5,6,0.0 +21997,35,18,34,0.0 +21998,36,19,20,0.0 +21998,15,15.5,4,0.0 +21998,53,32.8,9,0.0 +21998,4,22,44,0.0 +21998,38,263.5,18,0.0 +21998,20,81,24,0.0 +21998,30,25.89,35,0.0 +21998,26,31.23,39,0.0 +21998,14,23.25,41,0.0 +21998,34,14,34,0.0 +21998,43,46,42,0.0 +21998,11,21,34,0.0 +21998,17,39,39,0.0 +21998,75,7.75,35,0.0 +21998,59,55,45,0.0 +21998,67,14,32,0.0 +21998,52,7,36,0.0 +21998,5,21.35,29,0.0 +21998,66,17,18,0.0 +21998,47,9.5,26,0.0 +21998,16,17.45,17,0.0 +21998,63,43.9,45,0.0 +21998,69,36,47,0.0 +21998,2,19,2,0.0 +21998,41,9.65,46,0.0 +21998,62,49.3,22,0.0 +21998,23,9,34,0.0 +21998,13,6,3,0.0 +21998,32,32,45,0.0 +21998,31,12.5,4,0.0 +21998,19,9.2,30,0.0 +21998,37,26,48,0.0 +21998,56,38,42,0.0 +21998,70,15,3,0.0 +21998,48,12.75,48,0.0 +21998,29,123.79,29,0.0 +21998,40,18.4,4,0.0 +21998,74,10,15,0.0 +21998,39,18,49,0.0 +21998,51,53,45,0.0 +21998,33,2.5,16,0.0 +21998,44,19.45,12,0.0 +21998,61,28.5,12,0.0 +21998,35,18,33,0.0 +21998,77,13,47,0.0 +21998,22,21,45,0.0 +21998,65,21.05,5,0.0 +21998,57,19.5,41,0.0 +21998,76,18,30,0.0 +21998,46,12,27,0.0 +21998,42,14,11,0.0 +21998,54,7.45,23,0.0 +21998,45,9.5,18,0.0 +21998,27,43.9,7,0.0 +21998,73,15,17,0.0 +21998,10,31,36,0.0 +21998,21,10,13,0.0 +21998,7,30,26,0.0 +21998,64,33.25,42,0.0 +21998,3,10,45,0.0 +21998,58,13.25,8,0.0 +21998,50,16.25,10,0.0 +21999,63,43.9,31,0.0 +21999,36,19,35,0.0 +21999,48,12.75,28,0.0 +21999,4,22,19,0.0 +21999,41,9.65,24,0.0 +21999,26,31.23,37,0.0 +21999,67,14,21,0.0 +21999,6,25,46,0.0 +21999,19,9.2,39,0.0 +21999,40,18.4,19,0.0 +21999,70,15,39,0.0 +21999,9,97,46,0.0 +21999,45,9.5,47,0.0 +21999,49,20,12,0.0 +21999,16,17.45,1,0.0 +21999,13,6,5,0.0 +21999,33,2.5,50,0.0 +21999,75,7.75,13,0.0 +21999,32,32,41,0.0 +21999,28,45.6,47,0.0 +21999,43,46,25,0.0 +22000,56,38,3,0.0 +22000,31,12.5,3,0.0 +22000,23,9,20,0.0 +22000,39,18,20,0.0 +22000,64,33.25,5,0.0 +22000,29,123.79,6,0.0 +22000,2,19,31,0.0 +22000,40,18.4,3,0.0 +22000,27,43.9,34,0.0 +22000,43,46,21,0.0 +22000,41,9.65,19,0.0 +22000,69,36,13,0.0 +22000,65,21.05,20,0.0 +22000,9,97,29,0.0 +22000,16,17.45,27,0.0 +22000,47,9.5,17,0.0 +22000,37,26,12,0.0 +22000,49,20,29,0.0 +22000,52,7,43,0.0 +22000,70,15,44,0.0 +22000,36,19,41,0.0 +22000,30,25.89,5,0.0 +22000,76,18,28,0.0 +22000,19,9.2,15,0.0 +22000,51,53,9,0.0 +22000,11,21,22,0.0 +22000,34,14,50,0.0 +22000,73,15,10,0.0 +22000,57,19.5,24,0.0 +22000,25,14,13,0.0 +22000,74,10,20,0.0 +22000,10,31,29,0.0 +22000,17,39,24,0.0 +22000,48,12.75,49,0.0 +22001,58,13.25,8,0.0 +22001,18,62.5,15,0.0 +22001,31,12.5,25,0.0 +22001,71,21.5,5,0.0 +22001,67,14,29,0.0 +22001,4,22,41,0.0 +22001,3,10,39,0.0 +22001,30,25.89,19,0.0 +22001,35,18,29,0.0 +22001,72,34.8,1,0.0 +22001,62,49.3,22,0.0 +22001,17,39,42,0.0 +22001,38,263.5,41,0.0 +22001,59,55,7,0.0 +22001,50,16.25,30,0.0 +22001,52,7,29,0.0 +22001,53,32.8,6,0.0 +22001,41,9.65,14,0.0 +22001,32,32,25,0.0 +22001,11,21,37,0.0 +22001,16,17.45,27,0.0 +22001,68,12.5,21,0.0 +22001,26,31.23,26,0.0 +22001,12,38,4,0.0 +22001,75,7.75,9,0.0 +22001,64,33.25,30,0.0 +22001,13,6,26,0.0 +22001,34,14,40,0.0 +22001,51,53,20,0.0 +22001,54,7.45,45,0.0 +22001,43,46,25,0.0 +22001,1,18,45,0.0 +22001,44,19.45,18,0.0 +22001,55,24,33,0.0 +22001,57,19.5,14,0.0 +22001,2,19,28,0.0 +22001,45,9.5,24,0.0 +22001,40,18.4,30,0.0 +22001,25,14,12,0.0 +22001,19,9.2,17,0.0 +22001,60,34,14,0.0 +22001,47,9.5,11,0.0 +22001,73,15,44,0.0 +22001,74,10,16,0.0 +22001,5,21.35,15,0.0 +22001,42,14,35,0.0 +22001,23,9,45,0.0 +22001,65,21.05,28,0.0 +22001,10,31,44,0.0 +22001,37,26,3,0.0 +22001,69,36,12,0.0 +22001,61,28.5,42,0.0 +22001,48,12.75,13,0.0 +22001,7,30,16,0.0 +22001,14,23.25,35,0.0 +22001,22,21,17,0.0 +22001,8,40,11,0.0 +22001,56,38,11,0.0 +22001,49,20,33,0.0 +22001,21,10,40,0.0 +22001,63,43.9,32,0.0 +22001,33,2.5,35,0.0 +22001,39,18,17,0.0 +22001,77,13,8,0.0 +22001,15,15.5,40,0.0 +22002,53,32.8,38,0.0 +22002,28,45.6,35,0.0 +22002,21,10,38,0.0 +22002,54,7.45,26,0.0 +22002,44,19.45,20,0.0 +22002,55,24,16,0.0 +22002,11,21,20,0.0 +22002,45,9.5,20,0.0 +22002,6,25,30,0.0 +22002,46,12,30,0.0 +22002,5,21.35,5,0.0 +22002,30,25.89,17,0.0 +22002,17,39,36,0.0 +22002,50,16.25,47,0.0 +22002,47,9.5,38,0.0 +22002,76,18,35,0.0 +22002,42,14,23,0.0 +22002,38,263.5,37,0.0 +22002,25,14,24,0.0 +22002,68,12.5,22,0.0 +22002,3,10,25,0.0 +22002,65,21.05,26,0.0 +22002,59,55,12,0.0 +22002,57,19.5,37,0.0 +22002,43,46,27,0.0 +22002,24,4.5,38,0.0 +22002,77,13,11,0.0 +22002,63,43.9,7,0.0 +22002,62,49.3,41,0.0 +22002,37,26,45,0.0 +22002,60,34,12,0.0 +22002,16,17.45,4,0.0 +22002,35,18,21,0.0 +22002,41,9.65,30,0.0 +22002,14,23.25,15,0.0 +22002,27,43.9,10,0.0 +22002,2,19,46,0.0 +22002,20,81,14,0.0 +22002,12,38,20,0.0 +22002,7,30,9,0.0 +22002,13,6,31,0.0 +22002,8,40,45,0.0 +22002,15,15.5,1,0.0 +22002,66,17,22,0.0 +22002,9,97,40,0.0 +22002,48,12.75,7,0.0 +22002,29,123.79,42,0.0 +22002,34,14,26,0.0 +22002,56,38,44,0.0 +22002,33,2.5,8,0.0 +22002,19,9.2,10,0.0 +22002,32,32,36,0.0 +22002,74,10,34,0.0 +22002,49,20,21,0.0 +22002,58,13.25,23,0.0 +22002,1,18,14,0.0 +22002,64,33.25,40,0.0 +22002,72,34.8,27,0.0 +22002,70,15,50,0.0 +22002,31,12.5,46,0.0 +22002,36,19,3,0.0 +22002,40,18.4,33,0.0 +22002,67,14,17,0.0 +22002,18,62.5,28,0.0 +22002,26,31.23,35,0.0 +22002,22,21,22,0.0 +22002,4,22,1,0.0 +22002,73,15,21,0.0 +22002,61,28.5,25,0.0 +22002,52,7,16,0.0 +22002,71,21.5,6,0.0 +22002,10,31,45,0.0 +22002,23,9,43,0.0 +22002,39,18,23,0.0 +22002,75,7.75,13,0.0 +22002,69,36,33,0.0 +22002,51,53,48,0.0 +22003,45,9.5,13,0.0 +22004,46,12,28,0.0 +22004,76,18,2,0.0 +22004,1,18,8,0.0 +22004,10,31,17,0.0 +22004,53,32.8,12,0.0 +22004,67,14,37,0.0 +22004,24,4.5,28,0.0 +22004,48,12.75,38,0.0 +22004,51,53,14,0.0 +22004,55,24,50,0.0 +22004,23,9,4,0.0 +22004,63,43.9,29,0.0 +22004,45,9.5,17,0.0 +22004,9,97,38,0.0 +22004,27,43.9,38,0.0 +22004,6,25,21,0.0 +22004,68,12.5,6,0.0 +22004,57,19.5,41,0.0 +22004,71,21.5,21,0.0 +22004,12,38,3,0.0 +22004,69,36,24,0.0 +22004,29,123.79,18,0.0 +22004,7,30,33,0.0 +22004,36,19,37,0.0 +22004,39,18,2,0.0 +22004,65,21.05,20,0.0 +22004,14,23.25,49,0.0 +22004,61,28.5,24,0.0 +22004,77,13,29,0.0 +22004,15,15.5,37,0.0 +22004,25,14,30,0.0 +22004,47,9.5,4,0.0 +22004,22,21,4,0.0 +22004,40,18.4,25,0.0 +22004,17,39,6,0.0 +22004,37,26,29,0.0 +22004,52,7,33,0.0 +22004,2,19,37,0.0 +22004,20,81,14,0.0 +22004,64,33.25,6,0.0 +22004,35,18,34,0.0 +22004,66,17,4,0.0 +22004,75,7.75,10,0.0 +22004,72,34.8,10,0.0 +22004,62,49.3,42,0.0 +22004,30,25.89,2,0.0 +22004,3,10,47,0.0 +22004,59,55,49,0.0 +22004,56,38,49,0.0 +22004,5,21.35,37,0.0 +22004,11,21,24,0.0 +22004,60,34,31,0.0 +22004,32,32,50,0.0 +22005,33,2.5,8,0.0 +22005,54,7.45,40,0.0 +22005,45,9.5,32,0.0 +22005,18,62.5,27,0.0 +22005,67,14,39,0.0 +22005,6,25,7,0.0 +22005,4,22,35,0.0 +22005,47,9.5,50,0.0 +22005,8,40,41,0.0 +22005,14,23.25,29,0.0 +22005,12,38,48,0.0 +22005,31,12.5,34,0.0 +22005,21,10,40,0.0 +22005,37,26,19,0.0 +22005,66,17,28,0.0 +22005,73,15,18,0.0 +22005,20,81,17,0.0 +22005,64,33.25,8,0.0 +22005,42,14,7,0.0 +22005,57,19.5,19,0.0 +22005,40,18.4,13,0.0 +22005,19,9.2,3,0.0 +22005,48,12.75,45,0.0 +22005,13,6,4,0.0 +22005,24,4.5,11,0.0 +22005,72,34.8,45,0.0 +22005,27,43.9,44,0.0 +22005,16,17.45,30,0.0 +22005,15,15.5,27,0.0 +22005,41,9.65,17,0.0 +22005,7,30,35,0.0 +22005,3,10,36,0.0 +22005,74,10,18,0.0 +22005,25,14,14,0.0 +22005,49,20,25,0.0 +22005,61,28.5,5,0.0 +22005,1,18,21,0.0 +22005,76,18,7,0.0 +22005,39,18,3,0.0 +22005,69,36,10,0.0 +22005,32,32,34,0.0 +22005,51,53,40,0.0 +22005,30,25.89,35,0.0 +22005,70,15,42,0.0 +22005,71,21.5,42,0.0 +22005,5,21.35,8,0.0 +22005,43,46,14,0.0 +22005,63,43.9,24,0.0 +22005,9,97,33,0.0 +22005,29,123.79,41,0.0 +22005,60,34,11,0.0 +22005,75,7.75,47,0.0 +22005,23,9,39,0.0 +22005,38,263.5,8,0.0 +22005,22,21,23,0.0 +22005,35,18,21,0.0 +22005,55,24,30,0.0 +22005,10,31,35,0.0 +22005,65,21.05,43,0.0 +22005,58,13.25,29,0.0 +22005,26,31.23,18,0.0 +22005,52,7,45,0.0 +22005,36,19,15,0.0 +22005,77,13,3,0.0 +22006,50,16.25,49,0.0 +22006,44,19.45,24,0.0 +22006,29,123.79,35,0.0 +22006,10,31,42,0.0 +22006,45,9.5,28,0.0 +22006,24,4.5,4,0.0 +22006,26,31.23,43,0.0 +22006,34,14,46,0.0 +22006,1,18,19,0.0 +22006,7,30,41,0.0 +22006,38,263.5,23,0.0 +22006,12,38,4,0.0 +22006,18,62.5,4,0.0 +22006,59,55,34,0.0 +22006,35,18,6,0.0 +22006,46,12,28,0.0 +22006,43,46,30,0.0 +22006,65,21.05,45,0.0 +22006,8,40,26,0.0 +22006,77,13,22,0.0 +22006,22,21,30,0.0 +22006,13,6,34,0.0 +22006,32,32,29,0.0 +22006,58,13.25,2,0.0 +22006,39,18,19,0.0 +22006,67,14,46,0.0 +22006,4,22,31,0.0 +22006,3,10,34,0.0 +22006,68,12.5,22,0.0 +22006,40,18.4,11,0.0 +22006,28,45.6,49,0.0 +22006,23,9,5,0.0 +22006,52,7,23,0.0 +22006,57,19.5,5,0.0 +22006,49,20,4,0.0 +22006,69,36,1,0.0 +22006,54,7.45,36,0.0 +22006,16,17.45,34,0.0 +22006,41,9.65,47,0.0 +22006,66,17,27,0.0 +22006,71,21.5,46,0.0 +22006,64,33.25,39,0.0 +22006,72,34.8,37,0.0 +22006,51,53,37,0.0 +22006,47,9.5,21,0.0 +22006,17,39,7,0.0 +22006,42,14,14,0.0 +22006,76,18,31,0.0 +22006,31,12.5,36,0.0 +22006,20,81,26,0.0 +22006,62,49.3,46,0.0 +22006,30,25.89,50,0.0 +22006,55,24,20,0.0 +22006,9,97,43,0.0 +22006,21,10,46,0.0 +22006,19,9.2,29,0.0 +22006,25,14,4,0.0 +22006,56,38,37,0.0 +22006,5,21.35,12,0.0 +22006,63,43.9,33,0.0 +22006,27,43.9,16,0.0 +22006,36,19,38,0.0 +22006,61,28.5,27,0.0 +22006,75,7.75,21,0.0 +22006,2,19,1,0.0 +22006,6,25,48,0.0 +22006,37,26,26,0.0 +22006,60,34,27,0.0 +22006,33,2.5,30,0.0 +22006,11,21,5,0.0 +22007,17,39,16,0.0 +22007,55,24,37,0.0 +22007,61,28.5,46,0.0 +22007,40,18.4,9,0.0 +22007,60,34,21,0.0 +22007,29,123.79,21,0.0 +22007,75,7.75,36,0.0 +22007,36,19,40,0.0 +22007,30,25.89,3,0.0 +22007,71,21.5,21,0.0 +22007,70,15,24,0.0 +22007,12,38,25,0.0 +22007,48,12.75,12,0.0 +22007,46,12,14,0.0 +22007,1,18,30,0.0 +22007,68,12.5,32,0.0 +22007,39,18,5,0.0 +22007,44,19.45,15,0.0 +22007,25,14,34,0.0 +22007,51,53,27,0.0 +22007,43,46,22,0.0 +22007,19,9.2,38,0.0 +22007,74,10,21,0.0 +22007,20,81,39,0.0 +22007,77,13,35,0.0 +22007,67,14,49,0.0 +22007,63,43.9,43,0.0 +22007,14,23.25,8,0.0 +22007,54,7.45,38,0.0 +22007,22,21,15,0.0 +22007,31,12.5,46,0.0 +22007,3,10,38,0.0 +22007,24,4.5,17,0.0 +22007,23,9,22,0.0 +22007,42,14,13,0.0 +22007,34,14,1,0.0 +22007,47,9.5,29,0.0 +22007,65,21.05,38,0.0 +22007,11,21,13,0.0 +22007,2,19,46,0.0 +22007,69,36,13,0.0 +22007,9,97,46,0.0 +22007,38,263.5,9,0.0 +22007,13,6,42,0.0 +22007,72,34.8,29,0.0 +22007,53,32.8,1,0.0 +22007,32,32,48,0.0 +22007,49,20,50,0.0 +22007,59,55,44,0.0 +22007,52,7,19,0.0 +22007,10,31,46,0.0 +22007,56,38,3,0.0 +22007,64,33.25,42,0.0 +22007,5,21.35,40,0.0 +22007,45,9.5,2,0.0 +22007,18,62.5,31,0.0 +22007,28,45.6,46,0.0 +22007,8,40,30,0.0 +22007,58,13.25,34,0.0 +22007,50,16.25,8,0.0 +22008,2,19,31,0.0 +22008,4,22,19,0.0 +22008,52,7,23,0.0 +22008,10,31,3,0.0 +22008,74,10,8,0.0 +22008,1,18,15,0.0 +22008,58,13.25,29,0.0 +22008,48,12.75,9,0.0 +22008,62,49.3,15,0.0 +22008,13,6,37,0.0 +22008,23,9,4,0.0 +22008,64,33.25,1,0.0 +22008,53,32.8,12,0.0 +22008,35,18,38,0.0 +22008,30,25.89,24,0.0 +22008,22,21,44,0.0 +22008,45,9.5,43,0.0 +22008,12,38,47,0.0 +22008,36,19,35,0.0 +22008,44,19.45,30,0.0 +22008,41,9.65,20,0.0 +22008,66,17,19,0.0 +22008,6,25,14,0.0 +22008,24,4.5,32,0.0 +22008,68,12.5,31,0.0 +22008,28,45.6,18,0.0 +22008,3,10,21,0.0 +22008,16,17.45,49,0.0 +22008,57,19.5,48,0.0 +22008,69,36,15,0.0 +22008,63,43.9,40,0.0 +22008,70,15,32,0.0 +22008,55,24,10,0.0 +22008,25,14,33,0.0 +22008,17,39,43,0.0 +22008,7,30,38,0.0 +22008,59,55,8,0.0 +22008,40,18.4,2,0.0 +22008,14,23.25,45,0.0 +22008,77,13,24,0.0 +22008,67,14,7,0.0 +22008,39,18,10,0.0 +22008,32,32,46,0.0 +22008,75,7.75,42,0.0 +22008,15,15.5,41,0.0 +22008,42,14,3,0.0 +22008,29,123.79,19,0.0 +22008,11,21,20,0.0 +22008,46,12,28,0.0 +22008,34,14,24,0.0 +22008,51,53,36,0.0 +22008,72,34.8,40,0.0 +22008,38,263.5,36,0.0 +22008,61,28.5,4,0.0 +22008,56,38,19,0.0 +22008,9,97,7,0.0 +22008,21,10,42,0.0 +22008,33,2.5,16,0.0 +22008,43,46,47,0.0 +22008,26,31.23,49,0.0 +22008,19,9.2,46,0.0 +22008,49,20,27,0.0 +22008,47,9.5,15,0.0 +22008,76,18,4,0.0 +22008,73,15,21,0.0 +22008,54,7.45,34,0.0 +22008,5,21.35,19,0.0 +22008,20,81,33,0.0 +22008,65,21.05,36,0.0 +22009,3,10,46,0.0 +22009,12,38,2,0.0 +22009,59,55,30,0.0 +22009,40,18.4,23,0.0 +22009,31,12.5,20,0.0 +22009,70,15,44,0.0 +22009,26,31.23,3,0.0 +22009,22,21,6,0.0 +22009,4,22,19,0.0 +22009,67,14,46,0.0 +22009,11,21,38,0.0 +22009,16,17.45,9,0.0 +22009,62,49.3,9,0.0 +22009,6,25,28,0.0 +22009,68,12.5,48,0.0 +22009,25,14,43,0.0 +22009,51,53,37,0.0 +22009,50,16.25,8,0.0 +22009,41,9.65,16,0.0 +22009,29,123.79,15,0.0 +22009,39,18,34,0.0 +22009,35,18,14,0.0 +22009,13,6,10,0.0 +22009,61,28.5,42,0.0 +22009,53,32.8,37,0.0 +22009,28,45.6,48,0.0 +22009,42,14,28,0.0 +22009,69,36,33,0.0 +22009,2,19,23,0.0 +22009,65,21.05,26,0.0 +22009,46,12,49,0.0 +22009,73,15,14,0.0 +22009,44,19.45,16,0.0 +22009,55,24,14,0.0 +22009,20,81,24,0.0 +22009,66,17,11,0.0 +22009,47,9.5,29,0.0 +22009,15,15.5,3,0.0 +22009,14,23.25,38,0.0 +22009,24,4.5,19,0.0 +22010,53,32.8,41,0.0 +22010,15,15.5,10,0.0 +22010,63,43.9,48,0.0 +22010,19,9.2,16,0.0 +22010,50,16.25,24,0.0 +22010,14,23.25,42,0.0 +22010,27,43.9,20,0.0 +22010,2,19,13,0.0 +22010,74,10,21,0.0 +22010,70,15,21,0.0 +22010,52,7,18,0.0 +22010,33,2.5,15,0.0 +22010,59,55,37,0.0 +22010,67,14,23,0.0 +22010,45,9.5,46,0.0 +22010,43,46,11,0.0 +22010,5,21.35,5,0.0 +22010,72,34.8,38,0.0 +22010,64,33.25,50,0.0 +22010,32,32,1,0.0 +22010,6,25,34,0.0 +22010,41,9.65,50,0.0 +22010,4,22,31,0.0 +22010,65,21.05,33,0.0 +22010,3,10,25,0.0 +22010,10,31,32,0.0 +22010,11,21,15,0.0 +22010,77,13,26,0.0 +22010,68,12.5,39,0.0 +22010,75,7.75,21,0.0 +22010,40,18.4,39,0.0 +22010,25,14,20,0.0 +22010,8,40,10,0.0 +22010,71,21.5,50,0.0 +22010,18,62.5,16,0.0 +22010,55,24,30,0.0 +22010,29,123.79,7,0.0 +22010,51,53,15,0.0 +22010,9,97,37,0.0 +22010,48,12.75,32,0.0 +22010,60,34,49,0.0 +22011,27,43.9,48,0.0 +22011,70,15,16,0.0 +22011,20,81,41,0.0 +22011,2,19,17,0.0 +22011,21,10,31,0.0 +22011,25,14,19,0.0 +22011,10,31,37,0.0 +22012,44,19.45,5,0.0 +22012,72,34.8,18,0.0 +22012,8,40,28,0.0 +22012,37,26,21,0.0 +22012,61,28.5,36,0.0 +22012,73,15,46,0.0 +22012,12,38,19,0.0 +22012,5,21.35,38,0.0 +22012,60,34,50,0.0 +22012,65,21.05,7,0.0 +22012,35,18,42,0.0 +22012,22,21,35,0.0 +22012,27,43.9,22,0.0 +22012,24,4.5,3,0.0 +22012,17,39,40,0.0 +22012,42,14,39,0.0 +22012,32,32,9,0.0 +22012,45,9.5,46,0.0 +22012,43,46,48,0.0 +22012,2,19,50,0.0 +22012,14,23.25,42,0.0 +22012,53,32.8,33,0.0 +22013,2,19,29,0.0 +22013,15,15.5,7,0.0 +22013,26,31.23,17,0.0 +22013,47,9.5,1,0.0 +22013,36,19,7,0.0 +22013,34,14,24,0.0 +22013,76,18,47,0.0 +22013,14,23.25,1,0.0 +22013,63,43.9,32,0.0 +22013,40,18.4,24,0.0 +22013,32,32,5,0.0 +22013,57,19.5,21,0.0 +22013,37,26,42,0.0 +22013,60,34,35,0.0 +22013,38,263.5,2,0.0 +22013,4,22,22,0.0 +22013,67,14,30,0.0 +22013,66,17,21,0.0 +22014,51,53,32,0.0 +22014,50,16.25,17,0.0 +22014,44,19.45,45,0.0 +22014,49,20,39,0.0 +22014,15,15.5,34,0.0 +22014,41,9.65,42,0.0 +22014,64,33.25,30,0.0 +22014,70,15,48,0.0 +22014,77,13,32,0.0 +22014,69,36,20,0.0 +22014,75,7.75,8,0.0 +22014,24,4.5,9,0.0 +22014,52,7,22,0.0 +22014,66,17,16,0.0 +22014,43,46,27,0.0 +22014,48,12.75,30,0.0 +22014,26,31.23,2,0.0 +22014,6,25,4,0.0 +22014,65,21.05,11,0.0 +22014,62,49.3,14,0.0 +22014,61,28.5,41,0.0 +22014,38,263.5,37,0.0 +22014,22,21,30,0.0 +22014,2,19,37,0.0 +22014,19,9.2,49,0.0 +22014,71,21.5,41,0.0 +22014,60,34,15,0.0 +22014,39,18,15,0.0 +22014,14,23.25,34,0.0 +22014,4,22,25,0.0 +22014,68,12.5,10,0.0 +22014,16,17.45,34,0.0 +22014,34,14,24,0.0 +22014,30,25.89,39,0.0 +22014,12,38,9,0.0 +22015,77,13,40,0.0 +22015,47,9.5,17,0.0 +22015,29,123.79,32,0.0 +22015,21,10,4,0.0 +22015,75,7.75,19,0.0 +22015,54,7.45,37,0.0 +22015,70,15,43,0.0 +22015,48,12.75,31,0.0 +22015,73,15,25,0.0 +22015,7,30,35,0.0 +22015,19,9.2,46,0.0 +22015,57,19.5,9,0.0 +22015,42,14,9,0.0 +22015,9,97,27,0.0 +22015,20,81,1,0.0 +22015,39,18,23,0.0 +22015,1,18,24,0.0 +22015,62,49.3,4,0.0 +22015,17,39,36,0.0 +22015,6,25,32,0.0 +22015,68,12.5,17,0.0 +22015,52,7,41,0.0 +22015,41,9.65,38,0.0 +22015,2,19,4,0.0 +22015,22,21,11,0.0 +22015,72,34.8,48,0.0 +22015,31,12.5,11,0.0 +22015,66,17,6,0.0 +22015,43,46,20,0.0 +22015,60,34,6,0.0 +22015,34,14,28,0.0 +22015,11,21,1,0.0 +22015,36,19,39,0.0 +22015,69,36,44,0.0 +22015,44,19.45,3,0.0 +22015,33,2.5,2,0.0 +22015,23,9,43,0.0 +22015,30,25.89,50,0.0 +22015,63,43.9,38,0.0 +22015,24,4.5,40,0.0 +22015,65,21.05,34,0.0 +22015,10,31,39,0.0 +22015,53,32.8,38,0.0 +22016,22,21,7,0.0 +22016,34,14,41,0.0 +22016,49,20,31,0.0 +22016,31,12.5,47,0.0 +22016,37,26,33,0.0 +22016,7,30,49,0.0 +22016,58,13.25,42,0.0 +22016,50,16.25,43,0.0 +22016,70,15,45,0.0 +22016,14,23.25,47,0.0 +22016,44,19.45,16,0.0 +22016,59,55,23,0.0 +22016,33,2.5,5,0.0 +22016,8,40,43,0.0 +22016,67,14,48,0.0 +22016,19,9.2,33,0.0 +22016,52,7,31,0.0 +22016,56,38,1,0.0 +22016,76,18,18,0.0 +22016,68,12.5,5,0.0 +22016,48,12.75,41,0.0 +22016,26,31.23,9,0.0 +22016,21,10,49,0.0 +22016,25,14,42,0.0 +22016,47,9.5,14,0.0 +22016,61,28.5,13,0.0 +22016,2,19,25,0.0 +22016,55,24,9,0.0 +22016,32,32,13,0.0 +22016,74,10,27,0.0 +22016,18,62.5,47,0.0 +22017,77,13,8,0.0 +22017,21,10,12,0.0 +22017,46,12,23,0.0 +22017,32,32,33,0.0 +22017,73,15,24,0.0 +22017,13,6,34,0.0 +22017,33,2.5,31,0.0 +22017,76,18,3,0.0 +22017,74,10,4,0.0 +22017,20,81,9,0.0 +22017,59,55,19,0.0 +22017,34,14,36,0.0 +22017,48,12.75,25,0.0 +22017,11,21,11,0.0 +22017,9,97,30,0.0 +22017,71,21.5,42,0.0 +22017,10,31,26,0.0 +22017,26,31.23,46,0.0 +22017,47,9.5,18,0.0 +22017,43,46,18,0.0 +22017,72,34.8,5,0.0 +22017,30,25.89,21,0.0 +22017,41,9.65,21,0.0 +22017,64,33.25,5,0.0 +22017,75,7.75,4,0.0 +22017,31,12.5,37,0.0 +22017,44,19.45,47,0.0 +22017,53,32.8,33,0.0 +22017,37,26,25,0.0 +22017,35,18,39,0.0 +22017,40,18.4,10,0.0 +22017,67,14,44,0.0 +22017,70,15,26,0.0 +22018,68,12.5,2,0.0 +22018,70,15,34,0.0 +22018,77,13,8,0.0 +22018,45,9.5,43,0.0 +22018,29,123.79,3,0.0 +22018,66,17,47,0.0 +22018,28,45.6,33,0.0 +22018,51,53,25,0.0 +22019,49,20,4,0.0 +22019,54,7.45,15,0.0 +22019,52,7,40,0.0 +22019,47,9.5,9,0.0 +22019,59,55,45,0.0 +22019,16,17.45,30,0.0 +22019,5,21.35,31,0.0 +22019,69,36,4,0.0 +22019,20,81,32,0.0 +22019,13,6,45,0.0 +22019,21,10,13,0.0 +22019,3,10,41,0.0 +22019,61,28.5,16,0.0 +22019,43,46,5,0.0 +22019,77,13,32,0.0 +22019,46,12,5,0.0 +22019,35,18,46,0.0 +22019,56,38,50,0.0 +22019,53,32.8,39,0.0 +22019,57,19.5,50,0.0 +22019,14,23.25,22,0.0 +22019,34,14,47,0.0 +22019,74,10,32,0.0 +22019,63,43.9,2,0.0 +22019,1,18,24,0.0 +22019,18,62.5,25,0.0 +22019,12,38,41,0.0 +22019,73,15,50,0.0 +22019,8,40,43,0.0 +22019,17,39,38,0.0 +22019,40,18.4,23,0.0 +22019,45,9.5,46,0.0 +22019,24,4.5,48,0.0 +22019,27,43.9,34,0.0 +22019,75,7.75,25,0.0 +22019,7,30,15,0.0 +22019,60,34,22,0.0 +22019,25,14,44,0.0 +22019,28,45.6,24,0.0 +22019,55,24,16,0.0 +22019,76,18,3,0.0 +22019,9,97,39,0.0 +22019,36,19,44,0.0 +22019,29,123.79,30,0.0 +22019,44,19.45,11,0.0 +22019,68,12.5,50,0.0 +22019,30,25.89,44,0.0 +22019,50,16.25,31,0.0 +22019,62,49.3,17,0.0 +22019,26,31.23,43,0.0 +22019,6,25,8,0.0 +22019,2,19,26,0.0 +22019,72,34.8,30,0.0 +22019,65,21.05,33,0.0 +22019,51,53,50,0.0 +22019,11,21,32,0.0 +22019,48,12.75,1,0.0 +22019,33,2.5,14,0.0 +22019,32,32,8,0.0 +22019,39,18,24,0.0 +22019,22,21,27,0.0 +22019,70,15,5,0.0 +22019,58,13.25,23,0.0 +22019,66,17,26,0.0 +22019,64,33.25,4,0.0 +22019,37,26,12,0.0 +22019,10,31,16,0.0 +22019,41,9.65,49,0.0 +22019,4,22,19,0.0 +22019,71,21.5,43,0.0 +22019,67,14,49,0.0 +22019,42,14,19,0.0 +22019,15,15.5,1,0.0 +22019,19,9.2,22,0.0 +22019,23,9,11,0.0 +22019,38,263.5,17,0.0 +22019,31,12.5,30,0.0 +22020,8,40,12,0.0 +22020,16,17.45,4,0.0 +22020,30,25.89,20,0.0 +22020,42,14,38,0.0 +22020,18,62.5,2,0.0 +22020,57,19.5,31,0.0 +22020,60,34,14,0.0 +22020,25,14,29,0.0 +22020,67,14,34,0.0 +22020,46,12,18,0.0 +22020,73,15,40,0.0 +22020,6,25,18,0.0 +22020,49,20,2,0.0 +22020,54,7.45,46,0.0 +22020,69,36,32,0.0 +22020,1,18,32,0.0 +22020,29,123.79,10,0.0 +22020,27,43.9,24,0.0 +22020,32,32,25,0.0 +22020,37,26,45,0.0 +22020,75,7.75,8,0.0 +22020,48,12.75,42,0.0 +22020,20,81,14,0.0 +22020,63,43.9,19,0.0 +22020,71,21.5,18,0.0 +22021,65,21.05,3,0.0 +22021,71,21.5,44,0.0 +22021,66,17,34,0.0 +22021,41,9.65,29,0.0 +22021,17,39,18,0.0 +22021,38,263.5,3,0.0 +22021,50,16.25,4,0.0 +22021,73,15,20,0.0 +22021,74,10,13,0.0 +22021,23,9,25,0.0 +22021,42,14,28,0.0 +22021,76,18,20,0.0 +22021,75,7.75,34,0.0 +22021,5,21.35,15,0.0 +22021,30,25.89,2,0.0 +22021,3,10,50,0.0 +22021,40,18.4,32,0.0 +22021,53,32.8,16,0.0 +22021,67,14,8,0.0 +22021,64,33.25,29,0.0 +22021,35,18,12,0.0 +22021,56,38,24,0.0 +22021,18,62.5,47,0.0 +22021,12,38,48,0.0 +22021,62,49.3,10,0.0 +22021,22,21,34,0.0 +22021,13,6,38,0.0 +22021,68,12.5,17,0.0 +22021,2,19,21,0.0 +22021,32,32,28,0.0 +22021,20,81,19,0.0 +22021,36,19,31,0.0 +22021,7,30,2,0.0 +22021,34,14,6,0.0 +22021,70,15,47,0.0 +22021,49,20,26,0.0 +22021,37,26,15,0.0 +22021,24,4.5,17,0.0 +22021,19,9.2,3,0.0 +22021,39,18,15,0.0 +22021,46,12,16,0.0 +22021,58,13.25,26,0.0 +22021,57,19.5,43,0.0 +22021,21,10,33,0.0 +22021,29,123.79,9,0.0 +22021,55,24,30,0.0 +22021,33,2.5,37,0.0 +22021,51,53,29,0.0 +22021,15,15.5,41,0.0 +22021,26,31.23,39,0.0 +22021,47,9.5,1,0.0 +22021,54,7.45,6,0.0 +22021,44,19.45,26,0.0 +22021,4,22,50,0.0 +22022,64,33.25,25,0.0 +22022,63,43.9,21,0.0 +22022,37,26,40,0.0 +22022,54,7.45,44,0.0 +22022,36,19,25,0.0 +22022,76,18,45,0.0 +22022,74,10,28,0.0 +22023,58,13.25,42,0.0 +22023,36,19,9,0.0 +22023,5,21.35,47,0.0 +22023,59,55,6,0.0 +22023,67,14,4,0.0 +22023,4,22,24,0.0 +22023,12,38,18,0.0 +22023,73,15,8,0.0 +22023,40,18.4,29,0.0 +22023,15,15.5,34,0.0 +22023,24,4.5,20,0.0 +22023,64,33.25,19,0.0 +22023,9,97,20,0.0 +22023,11,21,39,0.0 +22023,74,10,11,0.0 +22023,71,21.5,29,0.0 +22023,38,263.5,24,0.0 +22023,33,2.5,48,0.0 +22023,72,34.8,4,0.0 +22023,16,17.45,26,0.0 +22023,62,49.3,7,0.0 +22023,66,17,12,0.0 +22023,56,38,43,0.0 +22023,44,19.45,33,0.0 +22023,42,14,22,0.0 +22023,19,9.2,15,0.0 +22023,31,12.5,22,0.0 +22023,13,6,47,0.0 +22023,20,81,18,0.0 +22023,65,21.05,21,0.0 +22023,35,18,31,0.0 +22023,27,43.9,18,0.0 +22023,25,14,17,0.0 +22023,75,7.75,32,0.0 +22023,76,18,41,0.0 +22023,17,39,8,0.0 +22023,39,18,3,0.0 +22023,54,7.45,20,0.0 +22024,31,12.5,23,0.0 +22024,41,9.65,41,0.0 +22025,8,40,39,0.0 +22025,16,17.45,31,0.0 +22025,55,24,44,0.0 +22025,37,26,20,0.0 +22025,43,46,13,0.0 +22025,6,25,50,0.0 +22025,9,97,13,0.0 +22025,75,7.75,16,0.0 +22025,13,6,8,0.0 +22025,7,30,32,0.0 +22025,57,19.5,3,0.0 +22025,63,43.9,15,0.0 +22025,74,10,6,0.0 +22026,67,14,17,0.0 +22026,5,21.35,29,0.0 +22026,24,4.5,5,0.0 +22026,16,17.45,14,0.0 +22026,72,34.8,12,0.0 +22026,76,18,29,0.0 +22026,23,9,15,0.0 +22026,32,32,1,0.0 +22027,10,31,13,0.0 +22027,70,15,14,0.0 +22027,8,40,40,0.0 +22027,47,9.5,20,0.0 +22027,24,4.5,19,0.0 +22027,69,36,27,0.0 +22027,51,53,16,0.0 +22027,25,14,34,0.0 +22027,45,9.5,7,0.0 +22027,57,19.5,10,0.0 +22027,74,10,7,0.0 +22027,20,81,21,0.0 +22027,5,21.35,21,0.0 +22027,41,9.65,34,0.0 +22027,43,46,42,0.0 +22027,44,19.45,30,0.0 +22027,27,43.9,50,0.0 +22027,75,7.75,23,0.0 +22027,63,43.9,7,0.0 +22027,11,21,41,0.0 +22028,22,21,19,0.0 +22028,61,28.5,50,0.0 +22028,5,21.35,14,0.0 +22028,23,9,17,0.0 +22028,30,25.89,5,0.0 +22028,69,36,37,0.0 +22028,76,18,44,0.0 +22028,20,81,34,0.0 +22028,67,14,34,0.0 +22028,27,43.9,48,0.0 +22029,51,53,37,0.0 +22029,24,4.5,5,0.0 +22029,54,7.45,32,0.0 +22029,48,12.75,49,0.0 +22029,45,9.5,26,0.0 +22029,21,10,19,0.0 +22029,43,46,45,0.0 +22029,76,18,19,0.0 +22029,63,43.9,11,0.0 +22029,33,2.5,6,0.0 +22029,34,14,16,0.0 +22029,53,32.8,28,0.0 +22029,47,9.5,11,0.0 +22029,38,263.5,11,0.0 +22029,60,34,49,0.0 +22029,18,62.5,42,0.0 +22029,11,21,16,0.0 +22029,72,34.8,7,0.0 +22029,58,13.25,5,0.0 +22029,7,30,16,0.0 +22029,22,21,38,0.0 +22029,65,21.05,36,0.0 +22029,40,18.4,14,0.0 +22029,31,12.5,50,0.0 +22029,25,14,45,0.0 +22029,73,15,49,0.0 +22029,67,14,10,0.0 +22029,71,21.5,3,0.0 +22030,33,2.5,16,0.0 +22030,32,32,15,0.0 +22030,65,21.05,3,0.0 +22030,63,43.9,21,0.0 +22030,54,7.45,39,0.0 +22030,52,7,32,0.0 +22030,12,38,27,0.0 +22030,55,24,30,0.0 +22030,60,34,38,0.0 +22030,71,21.5,9,0.0 +22030,24,4.5,34,0.0 +22030,23,9,50,0.0 +22030,11,21,15,0.0 +22030,74,10,22,0.0 +22030,20,81,14,0.0 +22030,17,39,15,0.0 +22031,26,31.23,6,0.0 +22031,53,32.8,37,0.0 +22031,55,24,44,0.0 +22031,18,62.5,1,0.0 +22031,64,33.25,11,0.0 +22031,27,43.9,16,0.0 +22031,21,10,45,0.0 +22031,9,97,24,0.0 +22031,59,55,38,0.0 +22031,10,31,4,0.0 +22031,19,9.2,15,0.0 +22031,49,20,45,0.0 +22031,33,2.5,46,0.0 +22031,60,34,23,0.0 +22031,74,10,11,0.0 +22031,54,7.45,43,0.0 +22031,40,18.4,42,0.0 +22031,75,7.75,33,0.0 +22031,13,6,41,0.0 +22031,38,263.5,36,0.0 +22031,3,10,15,0.0 +22031,71,21.5,1,0.0 +22031,68,12.5,11,0.0 +22031,1,18,31,0.0 +22031,69,36,23,0.0 +22031,37,26,28,0.0 +22031,15,15.5,6,0.0 +22031,5,21.35,10,0.0 +22031,36,19,18,0.0 +22031,25,14,20,0.0 +22031,8,40,4,0.0 +22031,28,45.6,26,0.0 +22031,12,38,28,0.0 +22031,30,25.89,9,0.0 +22031,66,17,14,0.0 +22031,70,15,20,0.0 +22031,63,43.9,2,0.0 +22031,51,53,21,0.0 +22031,29,123.79,6,0.0 +22031,45,9.5,15,0.0 +22031,56,38,7,0.0 +22031,22,21,44,0.0 +22031,24,4.5,2,0.0 +22031,4,22,41,0.0 +22031,39,18,45,0.0 +22031,67,14,12,0.0 +22031,32,32,12,0.0 +22031,48,12.75,36,0.0 +22031,50,16.25,28,0.0 +22031,17,39,17,0.0 +22031,2,19,15,0.0 +22031,23,9,37,0.0 +22031,35,18,15,0.0 +22031,16,17.45,12,0.0 +22031,61,28.5,34,0.0 +22031,20,81,26,0.0 +22031,43,46,13,0.0 +22031,31,12.5,5,0.0 +22031,65,21.05,27,0.0 +22031,14,23.25,39,0.0 +22031,76,18,35,0.0 +22031,62,49.3,31,0.0 +22031,58,13.25,40,0.0 +22031,11,21,6,0.0 +22031,42,14,6,0.0 +22031,7,30,17,0.0 +22031,57,19.5,20,0.0 +22031,47,9.5,31,0.0 +22031,34,14,7,0.0 +22031,77,13,11,0.0 +22032,41,9.65,3,0.0 +22032,25,14,44,0.0 +22032,59,55,4,0.0 +22032,8,40,26,0.0 +22032,33,2.5,19,0.0 +22032,48,12.75,33,0.0 +22032,39,18,26,0.0 +22032,69,36,27,0.0 +22032,20,81,33,0.0 +22032,55,24,17,0.0 +22032,62,49.3,6,0.0 +22032,3,10,20,0.0 +22032,45,9.5,44,0.0 +22032,70,15,17,0.0 +22032,76,18,33,0.0 +22032,58,13.25,4,0.0 +22032,36,19,12,0.0 +22032,14,23.25,38,0.0 +22032,2,19,38,0.0 +22032,61,28.5,12,0.0 +22032,37,26,22,0.0 +22032,40,18.4,16,0.0 +22032,32,32,35,0.0 +22032,29,123.79,8,0.0 +22032,52,7,2,0.0 +22032,11,21,5,0.0 +22032,31,12.5,32,0.0 +22032,5,21.35,26,0.0 +22032,9,97,7,0.0 +22033,75,7.75,45,0.0 +22033,46,12,43,0.0 +22033,57,19.5,34,0.0 +22033,45,9.5,35,0.0 +22033,52,7,15,0.0 +22033,68,12.5,12,0.0 +22033,27,43.9,32,0.0 +22033,40,18.4,42,0.0 +22033,66,17,45,0.0 +22033,25,14,13,0.0 +22033,6,25,12,0.0 +22033,5,21.35,39,0.0 +22033,31,12.5,18,0.0 +22033,30,25.89,48,0.0 +22033,72,34.8,42,0.0 +22033,7,30,36,0.0 +22033,36,19,36,0.0 +22033,38,263.5,35,0.0 +22033,44,19.45,26,0.0 +22033,41,9.65,50,0.0 +22033,8,40,16,0.0 +22033,74,10,13,0.0 +22033,58,13.25,44,0.0 +22033,56,38,50,0.0 +22033,16,17.45,46,0.0 +22033,3,10,14,0.0 +22033,37,26,40,0.0 +22033,24,4.5,31,0.0 +22033,2,19,34,0.0 +22033,33,2.5,31,0.0 +22033,43,46,33,0.0 +22033,17,39,9,0.0 +22033,21,10,45,0.0 +22033,39,18,25,0.0 +22033,62,49.3,8,0.0 +22033,65,21.05,43,0.0 +22033,10,31,50,0.0 +22033,69,36,22,0.0 +22033,64,33.25,17,0.0 +22033,28,45.6,18,0.0 +22033,61,28.5,35,0.0 +22033,55,24,14,0.0 +22033,50,16.25,35,0.0 +22033,15,15.5,30,0.0 +22033,13,6,5,0.0 +22033,14,23.25,28,0.0 +22033,1,18,6,0.0 +22033,67,14,40,0.0 +22033,22,21,31,0.0 +22033,29,123.79,24,0.0 +22033,51,53,32,0.0 +22033,4,22,29,0.0 +22033,48,12.75,34,0.0 +22033,19,9.2,42,0.0 +22033,9,97,50,0.0 +22033,35,18,16,0.0 +22033,34,14,45,0.0 +22033,49,20,36,0.0 +22033,18,62.5,35,0.0 +22033,26,31.23,37,0.0 +22033,77,13,24,0.0 +22033,63,43.9,50,0.0 +22033,73,15,24,0.0 +22033,12,38,2,0.0 +22033,47,9.5,22,0.0 +22033,20,81,27,0.0 +22033,60,34,13,0.0 +22033,70,15,10,0.0 +22033,23,9,6,0.0 +22033,76,18,32,0.0 +22033,54,7.45,3,0.0 +22033,53,32.8,24,0.0 +22033,59,55,38,0.0 +22034,16,17.45,41,0.0 +22034,38,263.5,23,0.0 +22034,59,55,4,0.0 +22034,57,19.5,26,0.0 +22034,21,10,7,0.0 +22034,15,15.5,22,0.0 +22034,70,15,3,0.0 +22034,61,28.5,49,0.0 +22034,14,23.25,35,0.0 +22034,35,18,41,0.0 +22034,29,123.79,6,0.0 +22034,77,13,27,0.0 +22034,34,14,49,0.0 +22034,37,26,47,0.0 +22034,58,13.25,1,0.0 +22034,41,9.65,36,0.0 +22034,46,12,3,0.0 +22034,52,7,27,0.0 +22034,8,40,29,0.0 +22034,56,38,31,0.0 +22034,11,21,32,0.0 +22034,40,18.4,23,0.0 +22034,3,10,41,0.0 +22034,53,32.8,21,0.0 +22034,69,36,19,0.0 +22034,30,25.89,3,0.0 +22035,24,4.5,26,0.0 +22035,33,2.5,6,0.0 +22035,2,19,37,0.0 +22035,9,97,31,0.0 +22035,29,123.79,9,0.0 +22035,48,12.75,25,0.0 +22035,7,30,21,0.0 +22035,6,25,27,0.0 +22035,18,62.5,31,0.0 +22035,70,15,3,0.0 +22035,16,17.45,20,0.0 +22035,49,20,38,0.0 +22035,28,45.6,23,0.0 +22035,44,19.45,21,0.0 +22035,14,23.25,42,0.0 +22035,74,10,20,0.0 +22035,67,14,49,0.0 +22035,25,14,10,0.0 +22035,22,21,22,0.0 +22035,55,24,47,0.0 +22035,64,33.25,3,0.0 +22035,77,13,37,0.0 +22035,32,32,37,0.0 +22035,50,16.25,48,0.0 +22035,51,53,3,0.0 +22035,34,14,15,0.0 +22035,5,21.35,5,0.0 +22035,69,36,15,0.0 +22035,54,7.45,40,0.0 +22036,37,26,38,0.0 +22036,36,19,10,0.0 +22036,35,18,39,0.0 +22036,30,25.89,25,0.0 +22036,66,17,14,0.0 +22036,51,53,28,0.0 +22036,14,23.25,4,0.0 +22036,29,123.79,14,0.0 +22036,58,13.25,49,0.0 +22036,76,18,33,0.0 +22036,34,14,17,0.0 +22036,1,18,50,0.0 +22036,74,10,32,0.0 +22036,28,45.6,50,0.0 +22036,60,34,26,0.0 +22036,10,31,10,0.0 +22036,70,15,27,0.0 +22036,25,14,46,0.0 +22036,18,62.5,16,0.0 +22036,22,21,48,0.0 +22036,65,21.05,33,0.0 +22036,72,34.8,47,0.0 +22036,11,21,15,0.0 +22036,59,55,43,0.0 +22036,63,43.9,30,0.0 +22036,73,15,37,0.0 +22036,32,32,43,0.0 +22036,24,4.5,45,0.0 +22036,68,12.5,28,0.0 +22036,64,33.25,26,0.0 +22036,17,39,18,0.0 +22036,23,9,33,0.0 +22036,3,10,23,0.0 +22036,46,12,43,0.0 +22036,26,31.23,40,0.0 +22036,57,19.5,47,0.0 +22036,38,263.5,27,0.0 +22036,27,43.9,20,0.0 +22036,67,14,48,0.0 +22036,52,7,36,0.0 +22036,69,36,43,0.0 +22036,45,9.5,6,0.0 +22036,43,46,6,0.0 +22036,8,40,49,0.0 +22036,47,9.5,28,0.0 +22036,19,9.2,23,0.0 +22036,5,21.35,1,0.0 +22036,41,9.65,43,0.0 +22036,49,20,42,0.0 +22036,6,25,18,0.0 +22036,53,32.8,19,0.0 +22036,50,16.25,11,0.0 +22036,4,22,1,0.0 +22036,71,21.5,23,0.0 +22036,12,38,24,0.0 +22036,40,18.4,10,0.0 +22036,48,12.75,39,0.0 +22036,42,14,6,0.0 +22036,20,81,22,0.0 +22036,16,17.45,17,0.0 +22036,77,13,22,0.0 +22036,55,24,1,0.0 +22036,61,28.5,35,0.0 +22036,56,38,20,0.0 +22036,9,97,48,0.0 +22036,62,49.3,49,0.0 +22036,39,18,2,0.0 +22036,21,10,7,0.0 +22037,43,46,10,0.0 +22037,29,123.79,41,0.0 +22037,69,36,48,0.0 +22037,72,34.8,31,0.0 +22037,28,45.6,29,0.0 +22037,48,12.75,40,0.0 +22037,46,12,26,0.0 +22037,13,6,49,0.0 +22037,36,19,41,0.0 +22037,54,7.45,9,0.0 +22037,11,21,47,0.0 +22037,25,14,34,0.0 +22037,40,18.4,12,0.0 +22037,15,15.5,28,0.0 +22037,67,14,26,0.0 +22037,2,19,1,0.0 +22037,19,9.2,45,0.0 +22037,7,30,14,0.0 +22037,26,31.23,23,0.0 +22037,68,12.5,15,0.0 +22037,57,19.5,15,0.0 +22037,75,7.75,43,0.0 +22037,50,16.25,6,0.0 +22037,63,43.9,40,0.0 +22037,56,38,24,0.0 +22037,70,15,1,0.0 +22037,8,40,22,0.0 +22037,31,12.5,24,0.0 +22037,37,26,38,0.0 +22037,60,34,47,0.0 +22037,35,18,7,0.0 +22037,12,38,22,0.0 +22037,49,20,13,0.0 +22037,1,18,17,0.0 +22037,14,23.25,23,0.0 +22037,38,263.5,2,0.0 +22037,18,62.5,14,0.0 +22037,53,32.8,46,0.0 +22037,23,9,23,0.0 +22037,42,14,14,0.0 +22037,27,43.9,4,0.0 +22037,62,49.3,44,0.0 +22037,47,9.5,16,0.0 +22037,21,10,18,0.0 +22037,45,9.5,16,0.0 +22037,9,97,3,0.0 +22037,4,22,46,0.0 +22037,51,53,6,0.0 +22038,64,33.25,1,0.0 +22038,7,30,44,0.0 +22038,55,24,10,0.0 +22038,53,32.8,32,0.0 +22038,8,40,31,0.0 +22038,5,21.35,18,0.0 +22038,10,31,10,0.0 +22038,23,9,12,0.0 +22038,28,45.6,22,0.0 +22038,3,10,4,0.0 +22038,77,13,34,0.0 +22038,4,22,42,0.0 +22039,3,10,6,0.0 +22039,32,32,6,0.0 +22039,52,7,11,0.0 +22039,26,31.23,47,0.0 +22039,40,18.4,2,0.0 +22039,53,32.8,20,0.0 +22039,54,7.45,28,0.0 +22039,72,34.8,25,0.0 +22039,28,45.6,45,0.0 +22039,69,36,17,0.0 +22039,58,13.25,50,0.0 +22039,76,18,37,0.0 +22039,51,53,40,0.0 +22039,6,25,41,0.0 +22039,44,19.45,13,0.0 +22039,68,12.5,42,0.0 +22039,8,40,16,0.0 +22039,57,19.5,16,0.0 +22039,46,12,37,0.0 +22039,49,20,37,0.0 +22039,41,9.65,23,0.0 +22039,34,14,35,0.0 +22039,48,12.75,18,0.0 +22039,70,15,23,0.0 +22039,5,21.35,35,0.0 +22039,31,12.5,18,0.0 +22039,33,2.5,26,0.0 +22039,30,25.89,37,0.0 +22039,73,15,28,0.0 +22040,27,43.9,40,0.0 +22040,5,21.35,17,0.0 +22041,61,28.5,38,0.0 +22041,1,18,42,0.0 +22041,48,12.75,6,0.0 +22041,56,38,49,0.0 +22041,15,15.5,7,0.0 +22041,60,34,11,0.0 +22041,29,123.79,11,0.0 +22041,46,12,49,0.0 +22041,40,18.4,28,0.0 +22041,63,43.9,9,0.0 +22041,55,24,18,0.0 +22041,33,2.5,46,0.0 +22041,20,81,40,0.0 +22041,14,23.25,21,0.0 +22041,26,31.23,49,0.0 +22041,59,55,21,0.0 +22041,58,13.25,25,0.0 +22041,32,32,46,0.0 +22041,76,18,6,0.0 +22041,18,62.5,2,0.0 +22041,69,36,21,0.0 +22041,45,9.5,8,0.0 +22041,49,20,32,0.0 +22041,35,18,45,0.0 +22041,47,9.5,38,0.0 +22041,39,18,4,0.0 +22041,7,30,3,0.0 +22041,70,15,17,0.0 +22041,16,17.45,48,0.0 +22041,9,97,1,0.0 +22041,11,21,5,0.0 +22041,67,14,19,0.0 +22041,23,9,30,0.0 +22041,34,14,3,0.0 +22041,53,32.8,20,0.0 +22041,65,21.05,19,0.0 +22041,72,34.8,10,0.0 +22041,22,21,25,0.0 +22041,62,49.3,5,0.0 +22041,68,12.5,22,0.0 +22041,50,16.25,4,0.0 +22041,6,25,36,0.0 +22041,13,6,46,0.0 +22041,24,4.5,15,0.0 +22041,36,19,44,0.0 +22041,10,31,21,0.0 +22041,77,13,50,0.0 +22041,31,12.5,41,0.0 +22041,74,10,47,0.0 +22041,25,14,46,0.0 +22041,37,26,27,0.0 +22042,74,10,15,0.0 +22042,58,13.25,36,0.0 +22042,17,39,44,0.0 +22042,28,45.6,41,0.0 +22042,62,49.3,39,0.0 +22042,9,97,13,0.0 +22042,1,18,29,0.0 +22042,3,10,24,0.0 +22042,44,19.45,38,0.0 +22042,38,263.5,33,0.0 +22042,65,21.05,41,0.0 +22042,66,17,17,0.0 +22042,26,31.23,6,0.0 +22042,60,34,28,0.0 +22043,54,7.45,41,0.0 +22043,15,15.5,24,0.0 +22043,7,30,34,0.0 +22043,69,36,21,0.0 +22043,70,15,1,0.0 +22043,57,19.5,49,0.0 +22043,13,6,3,0.0 +22043,47,9.5,49,0.0 +22043,76,18,44,0.0 +22043,37,26,28,0.0 +22043,45,9.5,10,0.0 +22043,8,40,11,0.0 +22043,18,62.5,40,0.0 +22043,48,12.75,16,0.0 +22043,10,31,1,0.0 +22043,33,2.5,5,0.0 +22043,62,49.3,29,0.0 +22043,72,34.8,32,0.0 +22043,12,38,28,0.0 +22043,1,18,32,0.0 +22043,53,32.8,19,0.0 +22043,71,21.5,26,0.0 +22043,64,33.25,18,0.0 +22043,31,12.5,50,0.0 +22043,24,4.5,29,0.0 +22043,30,25.89,35,0.0 +22043,75,7.75,12,0.0 +22043,17,39,23,0.0 +22043,52,7,13,0.0 +22043,56,38,39,0.0 +22043,34,14,24,0.0 +22043,16,17.45,23,0.0 +22043,29,123.79,50,0.0 +22043,4,22,19,0.0 +22043,36,19,19,0.0 +22043,49,20,17,0.0 +22043,38,263.5,50,0.0 +22043,11,21,18,0.0 +22043,43,46,1,0.0 +22043,28,45.6,32,0.0 +22043,3,10,2,0.0 +22043,42,14,44,0.0 +22043,63,43.9,14,0.0 +22043,5,21.35,44,0.0 +22043,67,14,36,0.0 +22043,58,13.25,6,0.0 +22043,66,17,38,0.0 +22043,26,31.23,10,0.0 +22043,77,13,28,0.0 +22043,61,28.5,8,0.0 +22043,50,16.25,29,0.0 +22043,14,23.25,18,0.0 +22043,25,14,4,0.0 +22043,2,19,18,0.0 +22043,65,21.05,9,0.0 +22043,55,24,25,0.0 +22043,59,55,45,0.0 +22043,19,9.2,26,0.0 +22043,20,81,7,0.0 +22043,21,10,4,0.0 +22043,39,18,15,0.0 +22043,73,15,17,0.0 +22043,9,97,37,0.0 +22043,74,10,42,0.0 +22043,27,43.9,19,0.0 +22043,51,53,12,0.0 +22043,32,32,33,0.0 +22043,60,34,24,0.0 +22043,41,9.65,46,0.0 +22043,44,19.45,2,0.0 +22043,68,12.5,16,0.0 +22043,46,12,23,0.0 +22043,35,18,45,0.0 +22043,23,9,16,0.0 +22043,40,18.4,11,0.0 +22043,22,21,6,0.0 +22043,6,25,29,0.0 +22044,71,21.5,38,0.0 +22044,14,23.25,24,0.0 +22044,22,21,25,0.0 +22044,27,43.9,16,0.0 +22044,13,6,29,0.0 +22044,23,9,34,0.0 +22044,76,18,34,0.0 +22044,12,38,17,0.0 +22044,26,31.23,43,0.0 +22044,47,9.5,33,0.0 +22044,40,18.4,5,0.0 +22044,64,33.25,15,0.0 +22044,37,26,7,0.0 +22044,56,38,16,0.0 +22044,59,55,19,0.0 +22044,50,16.25,38,0.0 +22044,74,10,14,0.0 +22044,77,13,23,0.0 +22044,29,123.79,46,0.0 +22044,5,21.35,7,0.0 +22044,21,10,10,0.0 +22044,30,25.89,9,0.0 +22044,69,36,49,0.0 +22044,67,14,42,0.0 +22044,18,62.5,37,0.0 +22044,7,30,4,0.0 +22044,6,25,10,0.0 +22044,20,81,15,0.0 +22044,42,14,7,0.0 +22044,55,24,29,0.0 +22044,73,15,35,0.0 +22044,24,4.5,21,0.0 +22044,17,39,33,0.0 +22044,68,12.5,31,0.0 +22044,19,9.2,49,0.0 +22044,41,9.65,13,0.0 +22044,35,18,33,0.0 +22044,52,7,34,0.0 +22044,75,7.75,44,0.0 +22044,8,40,33,0.0 +22044,15,15.5,46,0.0 +22044,54,7.45,18,0.0 +22044,53,32.8,19,0.0 +22044,1,18,9,0.0 +22044,44,19.45,43,0.0 +22044,60,34,14,0.0 +22044,32,32,19,0.0 +22044,51,53,38,0.0 +22044,58,13.25,43,0.0 +22044,2,19,37,0.0 +22044,72,34.8,36,0.0 +22044,34,14,27,0.0 +22044,31,12.5,7,0.0 +22044,33,2.5,30,0.0 +22044,49,20,23,0.0 +22044,45,9.5,13,0.0 +22044,61,28.5,9,0.0 +22044,4,22,29,0.0 +22044,11,21,34,0.0 +22044,63,43.9,47,0.0 +22044,28,45.6,11,0.0 +22044,65,21.05,32,0.0 +22044,66,17,46,0.0 +22044,48,12.75,41,0.0 +22044,25,14,11,0.0 +22044,9,97,7,0.0 +22044,10,31,19,0.0 +22044,57,19.5,5,0.0 +22044,39,18,1,0.0 +22044,70,15,50,0.0 +22044,38,263.5,3,0.0 +22044,36,19,2,0.0 +22044,62,49.3,41,0.0 +22044,46,12,30,0.0 +22044,43,46,17,0.0 +22045,3,10,38,0.0 +22045,42,14,38,0.0 +22045,41,9.65,43,0.0 +22045,55,24,48,0.0 +22045,36,19,32,0.0 +22045,48,12.75,46,0.0 +22045,5,21.35,28,0.0 +22045,16,17.45,43,0.0 +22045,51,53,25,0.0 +22045,53,32.8,32,0.0 +22045,34,14,44,0.0 +22045,62,49.3,3,0.0 +22045,6,25,32,0.0 +22045,2,19,23,0.0 +22045,22,21,45,0.0 +22045,69,36,45,0.0 +22045,40,18.4,19,0.0 +22045,28,45.6,17,0.0 +22045,25,14,37,0.0 +22045,1,18,47,0.0 +22045,13,6,36,0.0 +22045,18,62.5,31,0.0 +22045,67,14,27,0.0 +22045,74,10,45,0.0 +22045,49,20,14,0.0 +22046,25,14,9,0.0 +22046,43,46,40,0.0 +22046,51,53,10,0.0 +22046,53,32.8,17,0.0 +22046,15,15.5,10,0.0 +22046,58,13.25,27,0.0 +22046,77,13,15,0.0 +22046,22,21,13,0.0 +22046,33,2.5,13,0.0 +22046,13,6,14,0.0 +22046,65,21.05,46,0.0 +22046,31,12.5,29,0.0 +22046,45,9.5,17,0.0 +22046,12,38,31,0.0 +22046,35,18,1,0.0 +22046,4,22,20,0.0 +22046,75,7.75,1,0.0 +22046,20,81,44,0.0 +22046,11,21,14,0.0 +22046,62,49.3,16,0.0 +22046,50,16.25,28,0.0 +22046,72,34.8,1,0.0 +22046,26,31.23,30,0.0 +22046,69,36,3,0.0 +22046,9,97,26,0.0 +22046,76,18,46,0.0 +22047,49,20,34,0.0 +22047,18,62.5,39,0.0 +22047,10,31,20,0.0 +22047,23,9,46,0.0 +22047,53,32.8,49,0.0 +22047,1,18,49,0.0 +22047,6,25,42,0.0 +22047,34,14,19,0.0 +22047,2,19,31,0.0 +22047,29,123.79,12,0.0 +22047,12,38,20,0.0 +22047,66,17,33,0.0 +22047,58,13.25,32,0.0 +22047,7,30,44,0.0 +22048,36,19,11,0.0 +22048,37,26,10,0.0 +22048,26,31.23,41,0.0 +22048,11,21,9,0.0 +22048,27,43.9,34,0.0 +22048,5,21.35,48,0.0 +22048,39,18,11,0.0 +22048,3,10,28,0.0 +22048,10,31,15,0.0 +22048,13,6,30,0.0 +22048,54,7.45,12,0.0 +22048,21,10,26,0.0 +22048,22,21,27,0.0 +22048,76,18,17,0.0 +22048,53,32.8,39,0.0 +22048,6,25,24,0.0 +22048,19,9.2,8,0.0 +22048,59,55,38,0.0 +22048,66,17,34,0.0 +22048,51,53,19,0.0 +22048,42,14,1,0.0 +22048,15,15.5,1,0.0 +22048,33,2.5,13,0.0 +22048,68,12.5,48,0.0 +22048,4,22,33,0.0 +22048,77,13,8,0.0 +22048,46,12,50,0.0 +22048,16,17.45,33,0.0 +22048,50,16.25,4,0.0 +22048,35,18,10,0.0 +22048,56,38,1,0.0 +22048,23,9,20,0.0 +22048,61,28.5,22,0.0 +22048,43,46,13,0.0 +22049,33,2.5,30,0.0 +22049,12,38,42,0.0 +22049,3,10,7,0.0 +22049,18,62.5,40,0.0 +22050,74,10,45,0.0 +22050,23,9,19,0.0 +22050,55,24,9,0.0 +22050,25,14,4,0.0 +22050,20,81,19,0.0 +22050,49,20,32,0.0 +22050,58,13.25,29,0.0 +22050,43,46,19,0.0 +22050,76,18,21,0.0 +22050,33,2.5,30,0.0 +22050,65,21.05,3,0.0 +22050,21,10,38,0.0 +22050,75,7.75,23,0.0 +22050,77,13,4,0.0 +22050,41,9.65,36,0.0 +22050,44,19.45,44,0.0 +22050,29,123.79,25,0.0 +22050,18,62.5,35,0.0 +22050,7,30,8,0.0 +22050,27,43.9,45,0.0 +22050,24,4.5,41,0.0 +22050,42,14,5,0.0 +22050,60,34,15,0.0 +22050,56,38,44,0.0 +22050,13,6,1,0.0 +22050,32,32,40,0.0 +22050,66,17,42,0.0 +22051,41,9.65,30,0.0 +22051,12,38,21,0.0 +22051,69,36,7,0.0 +22051,53,32.8,37,0.0 +22051,67,14,17,0.0 +22051,2,19,40,0.0 +22051,46,12,33,0.0 +22051,58,13.25,23,0.0 +22051,75,7.75,44,0.0 +22051,14,23.25,32,0.0 +22051,29,123.79,11,0.0 +22051,60,34,19,0.0 +22051,74,10,32,0.0 +22051,73,15,50,0.0 +22051,50,16.25,12,0.0 +22051,39,18,20,0.0 +22051,24,4.5,48,0.0 +22051,52,7,47,0.0 +22051,40,18.4,36,0.0 +22051,23,9,24,0.0 +22051,21,10,29,0.0 +22051,62,49.3,32,0.0 +22051,76,18,43,0.0 +22051,10,31,46,0.0 +22051,57,19.5,32,0.0 +22051,37,26,38,0.0 +22051,34,14,43,0.0 +22051,1,18,17,0.0 +22051,64,33.25,10,0.0 +22051,51,53,33,0.0 +22051,26,31.23,21,0.0 +22051,48,12.75,23,0.0 +22051,8,40,48,0.0 +22051,16,17.45,5,0.0 +22052,72,34.8,7,0.0 +22052,22,21,47,0.0 +22052,66,17,24,0.0 +22052,61,28.5,29,0.0 +22052,62,49.3,19,0.0 +22052,7,30,46,0.0 +22052,56,38,16,0.0 +22052,28,45.6,41,0.0 +22052,76,18,36,0.0 +22052,13,6,14,0.0 +22052,6,25,40,0.0 +22052,39,18,33,0.0 +22052,20,81,1,0.0 +22052,47,9.5,4,0.0 +22052,12,38,23,0.0 +22052,65,21.05,49,0.0 +22052,52,7,41,0.0 +22052,27,43.9,3,0.0 +22052,53,32.8,32,0.0 +22052,1,18,47,0.0 +22052,63,43.9,39,0.0 +22052,49,20,30,0.0 +22052,5,21.35,23,0.0 +22052,55,24,23,0.0 +22052,60,34,35,0.0 +22052,40,18.4,10,0.0 +22052,77,13,32,0.0 +22052,17,39,4,0.0 +22052,46,12,30,0.0 +22052,29,123.79,30,0.0 +22052,75,7.75,42,0.0 +22052,73,15,3,0.0 +22052,26,31.23,16,0.0 +22052,50,16.25,5,0.0 +22052,68,12.5,30,0.0 +22052,44,19.45,5,0.0 +22052,25,14,24,0.0 +22052,4,22,25,0.0 +22052,31,12.5,4,0.0 +22052,71,21.5,32,0.0 +22052,64,33.25,45,0.0 +22052,57,19.5,2,0.0 +22052,58,13.25,28,0.0 +22052,48,12.75,8,0.0 +22052,33,2.5,25,0.0 +22052,41,9.65,39,0.0 +22052,11,21,19,0.0 +22052,38,263.5,36,0.0 +22052,67,14,9,0.0 +22052,10,31,28,0.0 +22052,74,10,2,0.0 +22052,14,23.25,28,0.0 +22052,45,9.5,20,0.0 +22052,23,9,23,0.0 +22052,70,15,17,0.0 +22052,32,32,15,0.0 +22052,37,26,25,0.0 +22052,3,10,38,0.0 +22052,51,53,8,0.0 +22052,42,14,9,0.0 +22052,69,36,46,0.0 +22052,21,10,33,0.0 +22053,1,18,31,0.0 +22053,13,6,2,0.0 +22053,68,12.5,21,0.0 +22053,17,39,34,0.0 +22053,41,9.65,25,0.0 +22053,52,7,16,0.0 +22053,30,25.89,24,0.0 +22053,38,263.5,33,0.0 +22053,37,26,33,0.0 +22053,59,55,1,0.0 +22053,72,34.8,19,0.0 +22053,51,53,26,0.0 +22053,48,12.75,13,0.0 +22053,50,16.25,5,0.0 +22053,71,21.5,32,0.0 +22053,63,43.9,38,0.0 +22053,35,18,28,0.0 +22053,70,15,49,0.0 +22053,42,14,34,0.0 +22053,19,9.2,28,0.0 +22053,33,2.5,23,0.0 +22053,75,7.75,4,0.0 +22053,28,45.6,45,0.0 +22053,9,97,26,0.0 +22053,73,15,6,0.0 +22053,74,10,38,0.0 +22053,31,12.5,5,0.0 +22053,11,21,8,0.0 +22053,15,15.5,14,0.0 +22053,65,21.05,23,0.0 +22053,7,30,36,0.0 +22053,77,13,45,0.0 +22053,56,38,44,0.0 +22053,40,18.4,40,0.0 +22053,58,13.25,30,0.0 +22053,76,18,2,0.0 +22053,32,32,9,0.0 +22053,23,9,13,0.0 +22053,24,4.5,49,0.0 +22053,5,21.35,9,0.0 +22053,55,24,36,0.0 +22053,4,22,48,0.0 +22053,25,14,9,0.0 +22053,14,23.25,15,0.0 +22053,44,19.45,32,0.0 +22053,57,19.5,22,0.0 +22053,61,28.5,38,0.0 +22053,64,33.25,28,0.0 +22053,47,9.5,27,0.0 +22053,12,38,33,0.0 +22053,2,19,35,0.0 +22053,66,17,42,0.0 +22053,16,17.45,12,0.0 +22053,43,46,8,0.0 +22053,10,31,37,0.0 +22053,34,14,39,0.0 +22054,34,14,29,0.0 +22054,65,21.05,30,0.0 +22054,2,19,23,0.0 +22054,45,9.5,12,0.0 +22054,75,7.75,28,0.0 +22054,50,16.25,16,0.0 +22054,40,18.4,18,0.0 +22054,29,123.79,13,0.0 +22054,51,53,36,0.0 +22054,61,28.5,36,0.0 +22054,76,18,40,0.0 +22054,13,6,42,0.0 +22054,64,33.25,16,0.0 +22054,8,40,28,0.0 +22054,11,21,49,0.0 +22054,6,25,18,0.0 +22055,37,26,46,0.0 +22055,25,14,34,0.0 +22055,67,14,11,0.0 +22055,14,23.25,5,0.0 +22055,17,39,50,0.0 +22055,42,14,36,0.0 +22055,34,14,10,0.0 +22055,35,18,3,0.0 +22055,69,36,31,0.0 +22055,1,18,1,0.0 +22055,58,13.25,28,0.0 +22055,50,16.25,31,0.0 +22055,5,21.35,26,0.0 +22055,22,21,41,0.0 +22055,30,25.89,41,0.0 +22055,21,10,34,0.0 +22055,39,18,13,0.0 +22055,2,19,5,0.0 +22055,10,31,47,0.0 +22055,31,12.5,34,0.0 +22055,29,123.79,24,0.0 +22055,43,46,24,0.0 +22055,18,62.5,22,0.0 +22055,9,97,45,0.0 +22055,66,17,33,0.0 +22056,26,31.23,25,0.0 +22056,2,19,49,0.0 +22056,62,49.3,45,0.0 +22056,1,18,44,0.0 +22056,67,14,50,0.0 +22056,35,18,35,0.0 +22056,21,10,5,0.0 +22056,13,6,40,0.0 +22056,3,10,42,0.0 +22056,71,21.5,18,0.0 +22056,60,34,5,0.0 +22056,76,18,27,0.0 +22056,48,12.75,32,0.0 +22056,18,62.5,41,0.0 +22056,65,21.05,44,0.0 +22056,40,18.4,42,0.0 +22056,33,2.5,11,0.0 +22056,63,43.9,30,0.0 +22056,45,9.5,26,0.0 +22056,59,55,34,0.0 +22056,36,19,6,0.0 +22056,39,18,29,0.0 +22056,43,46,27,0.0 +22056,64,33.25,5,0.0 +22056,41,9.65,27,0.0 +22056,8,40,6,0.0 +22056,9,97,17,0.0 +22056,73,15,30,0.0 +22056,5,21.35,50,0.0 +22056,4,22,14,0.0 +22056,24,4.5,38,0.0 +22056,49,20,46,0.0 +22056,54,7.45,25,0.0 +22056,52,7,30,0.0 +22056,29,123.79,31,0.0 +22056,15,15.5,22,0.0 +22056,69,36,10,0.0 +22056,32,32,26,0.0 +22056,12,38,9,0.0 +22056,51,53,34,0.0 +22056,34,14,9,0.0 +22056,19,9.2,23,0.0 +22056,44,19.45,42,0.0 +22056,16,17.45,21,0.0 +22056,27,43.9,6,0.0 +22056,70,15,45,0.0 +22056,53,32.8,9,0.0 +22056,42,14,32,0.0 +22056,38,263.5,1,0.0 +22056,61,28.5,4,0.0 +22056,23,9,7,0.0 +22056,74,10,8,0.0 +22056,50,16.25,27,0.0 +22057,59,55,39,0.0 +22057,9,97,37,0.0 +22057,64,33.25,26,0.0 +22057,39,18,23,0.0 +22057,77,13,40,0.0 +22057,33,2.5,35,0.0 +22057,53,32.8,43,0.0 +22058,34,14,18,0.0 +22058,1,18,27,0.0 +22058,55,24,3,0.0 +22058,44,19.45,29,0.0 +22058,54,7.45,8,0.0 +22058,69,36,25,0.0 +22058,10,31,25,0.0 +22058,72,34.8,35,0.0 +22058,37,26,41,0.0 +22058,58,13.25,3,0.0 +22058,52,7,25,0.0 +22058,29,123.79,8,0.0 +22058,5,21.35,9,0.0 +22058,48,12.75,11,0.0 +22058,19,9.2,46,0.0 +22058,68,12.5,8,0.0 +22058,30,25.89,33,0.0 +22058,42,14,42,0.0 +22058,6,25,16,0.0 +22058,43,46,40,0.0 +22058,53,32.8,10,0.0 +22058,46,12,11,0.0 +22058,61,28.5,41,0.0 +22058,11,21,31,0.0 +22058,75,7.75,10,0.0 +22058,7,30,6,0.0 +22058,56,38,40,0.0 +22058,45,9.5,15,0.0 +22058,47,9.5,1,0.0 +22058,76,18,22,0.0 +22058,50,16.25,29,0.0 +22058,63,43.9,30,0.0 +22058,9,97,48,0.0 +22058,20,81,44,0.0 +22058,4,22,8,0.0 +22058,39,18,6,0.0 +22058,38,263.5,28,0.0 +22058,62,49.3,32,0.0 +22058,51,53,41,0.0 +22058,28,45.6,18,0.0 +22058,21,10,28,0.0 +22058,65,21.05,12,0.0 +22058,41,9.65,43,0.0 +22058,13,6,35,0.0 +22058,60,34,12,0.0 +22058,66,17,7,0.0 +22058,23,9,13,0.0 +22058,8,40,37,0.0 +22058,3,10,34,0.0 +22058,73,15,37,0.0 +22058,67,14,11,0.0 +22058,35,18,2,0.0 +22058,33,2.5,42,0.0 +22058,40,18.4,47,0.0 +22058,36,19,13,0.0 +22058,77,13,14,0.0 +22058,25,14,22,0.0 +22058,15,15.5,44,0.0 +22058,16,17.45,40,0.0 +22058,70,15,36,0.0 +22058,2,19,1,0.0 +22058,49,20,29,0.0 +22058,17,39,11,0.0 +22058,27,43.9,3,0.0 +22058,31,12.5,36,0.0 +22058,57,19.5,47,0.0 +22058,26,31.23,28,0.0 +22058,22,21,29,0.0 +22058,18,62.5,39,0.0 +22058,74,10,49,0.0 +22058,64,33.25,5,0.0 +22059,74,10,20,0.0 +22059,2,19,27,0.0 +22059,48,12.75,2,0.0 +22059,62,49.3,46,0.0 +22059,70,15,3,0.0 +22059,9,97,41,0.0 +22059,41,9.65,41,0.0 +22059,38,263.5,26,0.0 +22059,12,38,43,0.0 +22059,65,21.05,2,0.0 +22059,72,34.8,37,0.0 +22059,43,46,13,0.0 +22059,68,12.5,20,0.0 +22059,57,19.5,6,0.0 +22059,35,18,29,0.0 +22059,52,7,22,0.0 +22059,36,19,36,0.0 +22059,69,36,11,0.0 +22059,71,21.5,49,0.0 +22059,29,123.79,47,0.0 +22059,27,43.9,3,0.0 +22059,58,13.25,41,0.0 +22059,11,21,48,0.0 +22059,31,12.5,40,0.0 +22059,14,23.25,45,0.0 +22059,25,14,13,0.0 +22059,40,18.4,1,0.0 +22059,26,31.23,15,0.0 +22059,6,25,50,0.0 +22059,24,4.5,1,0.0 +22059,59,55,45,0.0 +22059,7,30,50,0.0 +22059,8,40,40,0.0 +22060,30,25.89,18,0.0 +22060,58,13.25,19,0.0 +22060,34,14,15,0.0 +22060,20,81,18,0.0 +22060,31,12.5,32,0.0 +22060,66,17,44,0.0 +22060,65,21.05,6,0.0 +22060,22,21,44,0.0 +22060,72,34.8,23,0.0 +22060,2,19,14,0.0 +22060,38,263.5,42,0.0 +22060,23,9,44,0.0 +22060,9,97,30,0.0 +22060,45,9.5,20,0.0 +22060,54,7.45,17,0.0 +22060,50,16.25,31,0.0 +22060,11,21,9,0.0 +22060,73,15,16,0.0 +22060,10,31,6,0.0 +22060,62,49.3,16,0.0 +22060,27,43.9,49,0.0 +22060,13,6,28,0.0 +22060,3,10,28,0.0 +22060,76,18,24,0.0 +22060,43,46,4,0.0 +22060,44,19.45,16,0.0 +22060,36,19,48,0.0 +22060,4,22,9,0.0 +22060,46,12,28,0.0 +22060,61,28.5,20,0.0 +22060,59,55,21,0.0 +22060,7,30,39,0.0 +22060,70,15,43,0.0 +22060,24,4.5,4,0.0 +22060,74,10,9,0.0 +22060,41,9.65,33,0.0 +22060,71,21.5,13,0.0 +22060,14,23.25,32,0.0 +22060,28,45.6,21,0.0 +22060,8,40,24,0.0 +22060,1,18,29,0.0 +22060,57,19.5,50,0.0 +22060,53,32.8,40,0.0 +22060,33,2.5,32,0.0 +22060,25,14,9,0.0 +22060,29,123.79,16,0.0 +22060,32,32,46,0.0 +22060,69,36,2,0.0 +22060,39,18,46,0.0 +22060,63,43.9,10,0.0 +22060,35,18,28,0.0 +22060,12,38,46,0.0 +22060,17,39,37,0.0 +22060,51,53,20,0.0 +22060,18,62.5,33,0.0 +22060,77,13,24,0.0 +22060,56,38,9,0.0 +22060,60,34,39,0.0 +22060,6,25,10,0.0 +22060,16,17.45,24,0.0 +22060,49,20,13,0.0 +22060,37,26,21,0.0 +22060,47,9.5,24,0.0 +22060,75,7.75,49,0.0 +22060,67,14,40,0.0 +22060,68,12.5,45,0.0 +22060,40,18.4,37,0.0 +22060,26,31.23,7,0.0 +22060,48,12.75,49,0.0 +22060,55,24,12,0.0 +22060,42,14,4,0.0 +22060,15,15.5,38,0.0 +22060,52,7,35,0.0 +22060,5,21.35,45,0.0 +22060,64,33.25,2,0.0 +22061,3,10,49,0.0 +22061,62,49.3,41,0.0 +22061,71,21.5,19,0.0 +22061,61,28.5,48,0.0 +22061,45,9.5,47,0.0 +22061,74,10,25,0.0 +22061,13,6,14,0.0 +22061,34,14,18,0.0 +22061,68,12.5,49,0.0 +22061,30,25.89,49,0.0 +22061,43,46,1,0.0 +22061,7,30,9,0.0 +22061,37,26,13,0.0 +22061,11,21,1,0.0 +22061,40,18.4,30,0.0 +22061,64,33.25,10,0.0 +22061,29,123.79,35,0.0 +22061,5,21.35,6,0.0 +22061,32,32,3,0.0 +22061,44,19.45,8,0.0 +22061,52,7,18,0.0 +22061,6,25,16,0.0 +22061,76,18,30,0.0 +22061,20,81,24,0.0 +22061,8,40,9,0.0 +22061,39,18,20,0.0 +22062,5,21.35,22,0.0 +22062,7,30,3,0.0 +22062,43,46,40,0.0 +22062,36,19,33,0.0 +22062,77,13,14,0.0 +22062,18,62.5,41,0.0 +22062,11,21,3,0.0 +22062,71,21.5,30,0.0 +22062,53,32.8,32,0.0 +22062,70,15,22,0.0 +22062,61,28.5,44,0.0 +22062,37,26,49,0.0 +22062,48,12.75,13,0.0 +22062,28,45.6,43,0.0 +22062,3,10,28,0.0 +22062,15,15.5,33,0.0 +22062,51,53,46,0.0 +22062,47,9.5,48,0.0 +22062,9,97,40,0.0 +22062,72,34.8,22,0.0 +22062,14,23.25,35,0.0 +22062,60,34,23,0.0 +22062,57,19.5,27,0.0 +22062,73,15,27,0.0 +22062,65,21.05,44,0.0 +22062,55,24,14,0.0 +22062,32,32,10,0.0 +22062,27,43.9,31,0.0 +22062,50,16.25,43,0.0 +22062,21,10,50,0.0 +22062,30,25.89,38,0.0 +22062,10,31,42,0.0 +22062,59,55,44,0.0 +22062,8,40,21,0.0 +22062,56,38,42,0.0 +22062,62,49.3,47,0.0 +22062,34,14,7,0.0 +22062,40,18.4,33,0.0 +22062,52,7,26,0.0 +22062,64,33.25,23,0.0 +22062,74,10,31,0.0 +22063,61,28.5,40,0.0 +22063,11,21,50,0.0 +22063,28,45.6,26,0.0 +22063,7,30,21,0.0 +22063,40,18.4,30,0.0 +22063,30,25.89,32,0.0 +22063,74,10,15,0.0 +22063,56,38,8,0.0 +22063,1,18,33,0.0 +22063,49,20,23,0.0 +22063,45,9.5,43,0.0 +22063,20,81,32,0.0 +22063,14,23.25,5,0.0 +22063,69,36,5,0.0 +22063,68,12.5,17,0.0 +22063,5,21.35,34,0.0 +22063,42,14,40,0.0 +22063,19,9.2,1,0.0 +22063,6,25,8,0.0 +22063,48,12.75,45,0.0 +22063,66,17,18,0.0 +22063,70,15,21,0.0 +22063,65,21.05,47,0.0 +22063,37,26,29,0.0 +22063,35,18,35,0.0 +22063,2,19,30,0.0 +22063,26,31.23,15,0.0 +22063,41,9.65,20,0.0 +22063,23,9,42,0.0 +22063,36,19,3,0.0 +22063,4,22,9,0.0 +22063,25,14,26,0.0 +22063,44,19.45,24,0.0 +22063,12,38,38,0.0 +22063,3,10,43,0.0 +22063,57,19.5,39,0.0 +22063,17,39,9,0.0 +22063,76,18,7,0.0 +22063,18,62.5,35,0.0 +22063,67,14,47,0.0 +22063,33,2.5,13,0.0 +22063,58,13.25,12,0.0 +22063,8,40,17,0.0 +22063,63,43.9,28,0.0 +22063,24,4.5,18,0.0 +22063,75,7.75,13,0.0 +22063,60,34,33,0.0 +22063,15,15.5,23,0.0 +22063,31,12.5,30,0.0 +22063,39,18,27,0.0 +22063,16,17.45,43,0.0 +22063,62,49.3,32,0.0 +22063,51,53,10,0.0 +22063,59,55,21,0.0 +22063,21,10,50,0.0 +22063,52,7,19,0.0 +22063,55,24,36,0.0 +22063,9,97,34,0.0 +22063,50,16.25,35,0.0 +22063,10,31,50,0.0 +22063,32,32,28,0.0 +22063,43,46,45,0.0 +22063,46,12,46,0.0 +22063,72,34.8,39,0.0 +22063,34,14,19,0.0 +22063,29,123.79,41,0.0 +22063,64,33.25,50,0.0 +22063,47,9.5,10,0.0 +22063,27,43.9,49,0.0 +22063,38,263.5,10,0.0 +22063,54,7.45,4,0.0 +22063,73,15,41,0.0 +22063,71,21.5,47,0.0 +22063,13,6,47,0.0 +22063,53,32.8,48,0.0 +22063,77,13,33,0.0 +22064,74,10,40,0.0 +22064,9,97,36,0.0 +22064,67,14,9,0.0 +22064,15,15.5,8,0.0 +22064,59,55,3,0.0 +22064,33,2.5,5,0.0 +22064,55,24,50,0.0 +22064,70,15,36,0.0 +22064,43,46,10,0.0 +22064,63,43.9,16,0.0 +22064,69,36,20,0.0 +22064,49,20,40,0.0 +22064,30,25.89,21,0.0 +22064,38,263.5,44,0.0 +22064,75,7.75,25,0.0 +22064,6,25,43,0.0 +22064,24,4.5,44,0.0 +22064,32,32,8,0.0 +22064,48,12.75,2,0.0 +22064,53,32.8,31,0.0 +22064,42,14,27,0.0 +22064,77,13,49,0.0 +22064,16,17.45,27,0.0 +22065,34,14,23,0.0 +22065,6,25,25,0.0 +22065,29,123.79,15,0.0 +22065,51,53,46,0.0 +22065,73,15,26,0.0 +22065,39,18,14,0.0 +22065,1,18,15,0.0 +22065,55,24,25,0.0 +22065,50,16.25,15,0.0 +22065,65,21.05,46,0.0 +22065,25,14,44,0.0 +22065,7,30,31,0.0 +22065,17,39,46,0.0 +22065,42,14,15,0.0 +22065,30,25.89,4,0.0 +22065,23,9,33,0.0 +22065,9,97,44,0.0 +22065,10,31,31,0.0 +22065,20,81,45,0.0 +22065,71,21.5,30,0.0 +22065,8,40,15,0.0 +22065,76,18,37,0.0 +22065,11,21,20,0.0 +22066,16,17.45,29,0.0 +22066,23,9,7,0.0 +22066,5,21.35,38,0.0 +22066,32,32,30,0.0 +22066,46,12,33,0.0 +22066,3,10,48,0.0 +22066,76,18,26,0.0 +22066,44,19.45,43,0.0 +22066,68,12.5,39,0.0 +22066,36,19,41,0.0 +22066,67,14,8,0.0 +22066,19,9.2,35,0.0 +22066,1,18,4,0.0 +22066,41,9.65,24,0.0 +22066,48,12.75,2,0.0 +22066,6,25,35,0.0 +22066,30,25.89,19,0.0 +22066,2,19,30,0.0 +22066,77,13,8,0.0 +22066,4,22,34,0.0 +22066,33,2.5,5,0.0 +22066,11,21,13,0.0 +22066,35,18,25,0.0 +22066,39,18,27,0.0 +22066,63,43.9,34,0.0 +22066,61,28.5,13,0.0 +22066,12,38,44,0.0 +22066,8,40,30,0.0 +22066,47,9.5,13,0.0 +22066,28,45.6,18,0.0 +22066,64,33.25,29,0.0 +22066,22,21,45,0.0 +22066,20,81,27,0.0 +22066,73,15,38,0.0 +22066,15,15.5,8,0.0 +22066,40,18.4,48,0.0 +22066,56,38,8,0.0 +22066,31,12.5,47,0.0 +22066,57,19.5,22,0.0 +22066,9,97,30,0.0 +22066,10,31,16,0.0 +22066,62,49.3,41,0.0 +22066,70,15,17,0.0 +22066,50,16.25,22,0.0 +22066,49,20,39,0.0 +22066,34,14,38,0.0 +22066,72,34.8,6,0.0 +22066,69,36,35,0.0 +22066,25,14,6,0.0 +22066,55,24,14,0.0 +22066,66,17,33,0.0 +22066,29,123.79,40,0.0 +22066,13,6,41,0.0 +22066,53,32.8,32,0.0 +22066,24,4.5,28,0.0 +22066,71,21.5,37,0.0 +22066,38,263.5,5,0.0 +22066,37,26,26,0.0 +22066,58,13.25,49,0.0 +22066,26,31.23,12,0.0 +22066,43,46,11,0.0 +22066,52,7,13,0.0 +22066,21,10,45,0.0 +22066,65,21.05,30,0.0 +22066,60,34,32,0.0 +22067,29,123.79,36,0.0 +22067,57,19.5,26,0.0 +22067,45,9.5,1,0.0 +22067,12,38,37,0.0 +22067,22,21,7,0.0 +22067,63,43.9,34,0.0 +22067,13,6,7,0.0 +22067,50,16.25,1,0.0 +22067,71,21.5,39,0.0 +22067,67,14,32,0.0 +22067,51,53,28,0.0 +22067,15,15.5,29,0.0 +22068,64,33.25,27,0.0 +22068,48,12.75,44,0.0 +22068,36,19,25,0.0 +22068,25,14,12,0.0 +22069,45,9.5,14,0.0 +22069,72,34.8,5,0.0 +22069,75,7.75,6,0.0 +22069,62,49.3,50,0.0 +22069,53,32.8,50,0.0 +22069,41,9.65,17,0.0 +22069,43,46,28,0.0 +22069,29,123.79,16,0.0 +22069,68,12.5,6,0.0 +22069,32,32,14,0.0 +22069,63,43.9,31,0.0 +22069,3,10,44,0.0 +22069,42,14,36,0.0 +22069,51,53,10,0.0 +22069,67,14,39,0.0 +22069,47,9.5,3,0.0 +22069,61,28.5,19,0.0 +22069,54,7.45,12,0.0 +22069,9,97,16,0.0 +22069,5,21.35,21,0.0 +22069,12,38,22,0.0 +22069,44,19.45,27,0.0 +22069,52,7,14,0.0 +22069,4,22,8,0.0 +22069,16,17.45,37,0.0 +22069,40,18.4,19,0.0 +22069,66,17,1,0.0 +22069,6,25,26,0.0 +22069,25,14,18,0.0 +22069,34,14,27,0.0 +22069,50,16.25,19,0.0 +22069,33,2.5,13,0.0 +22069,70,15,9,0.0 +22069,23,9,14,0.0 +22069,74,10,19,0.0 +22069,46,12,46,0.0 +22069,28,45.6,45,0.0 +22069,22,21,5,0.0 +22069,65,21.05,37,0.0 +22069,39,18,8,0.0 +22069,56,38,5,0.0 +22069,60,34,3,0.0 +22069,58,13.25,45,0.0 +22069,76,18,30,0.0 +22069,55,24,26,0.0 +22069,19,9.2,4,0.0 +22069,30,25.89,3,0.0 +22069,69,36,14,0.0 +22069,14,23.25,24,0.0 +22069,48,12.75,41,0.0 +22069,35,18,14,0.0 +22069,36,19,4,0.0 +22069,17,39,18,0.0 +22069,59,55,11,0.0 +22069,31,12.5,12,0.0 +22069,15,15.5,32,0.0 +22069,24,4.5,21,0.0 +22069,11,21,1,0.0 +22069,21,10,29,0.0 +22069,38,263.5,8,0.0 +22069,64,33.25,7,0.0 +22069,13,6,11,0.0 +22069,10,31,10,0.0 +22069,57,19.5,40,0.0 +22069,18,62.5,31,0.0 +22069,7,30,23,0.0 +22069,73,15,44,0.0 +22069,49,20,29,0.0 +22069,27,43.9,7,0.0 +22069,26,31.23,32,0.0 +22069,37,26,20,0.0 +22069,1,18,16,0.0 +22069,8,40,1,0.0 +22069,20,81,42,0.0 +22070,57,19.5,19,0.0 +22070,9,97,23,0.0 +22070,62,49.3,46,0.0 +22070,40,18.4,14,0.0 +22070,15,15.5,49,0.0 +22070,55,24,26,0.0 +22070,25,14,1,0.0 +22070,34,14,25,0.0 +22070,44,19.45,6,0.0 +22070,70,15,31,0.0 +22070,53,32.8,21,0.0 +22070,17,39,44,0.0 +22070,45,9.5,21,0.0 +22070,73,15,5,0.0 +22070,2,19,46,0.0 +22070,76,18,17,0.0 +22070,31,12.5,42,0.0 +22070,69,36,26,0.0 +22070,11,21,12,0.0 +22070,41,9.65,37,0.0 +22070,35,18,14,0.0 +22070,42,14,48,0.0 +22070,47,9.5,39,0.0 +22070,8,40,34,0.0 +22070,1,18,16,0.0 +22070,60,34,44,0.0 +22071,26,31.23,45,0.0 +22071,47,9.5,41,0.0 +22071,44,19.45,9,0.0 +22071,51,53,40,0.0 +22071,16,17.45,14,0.0 +22071,36,19,23,0.0 +22071,38,263.5,25,0.0 +22071,10,31,36,0.0 +22071,70,15,48,0.0 +22071,23,9,44,0.0 +22071,61,28.5,36,0.0 +22071,59,55,43,0.0 +22071,71,21.5,16,0.0 +22071,66,17,20,0.0 +22071,13,6,35,0.0 +22071,9,97,17,0.0 +22071,17,39,40,0.0 +22071,57,19.5,40,0.0 +22071,39,18,48,0.0 +22071,2,19,22,0.0 +22071,49,20,23,0.0 +22071,31,12.5,17,0.0 +22071,74,10,48,0.0 +22071,68,12.5,31,0.0 +22071,21,10,22,0.0 +22071,64,33.25,35,0.0 +22071,20,81,13,0.0 +22071,60,34,8,0.0 +22071,41,9.65,2,0.0 +22071,7,30,8,0.0 +22071,24,4.5,13,0.0 +22071,62,49.3,18,0.0 +22071,35,18,36,0.0 +22071,63,43.9,20,0.0 +22071,18,62.5,37,0.0 +22071,34,14,3,0.0 +22071,43,46,13,0.0 +22071,6,25,30,0.0 +22071,1,18,40,0.0 +22071,58,13.25,15,0.0 +22071,50,16.25,37,0.0 +22071,40,18.4,43,0.0 +22071,32,32,5,0.0 +22071,69,36,46,0.0 +22071,28,45.6,36,0.0 +22071,48,12.75,21,0.0 +22071,73,15,22,0.0 +22071,19,9.2,33,0.0 +22071,56,38,3,0.0 +22071,55,24,33,0.0 +22071,27,43.9,1,0.0 +22071,25,14,41,0.0 +22071,53,32.8,25,0.0 +22071,77,13,44,0.0 +22071,30,25.89,22,0.0 +22072,7,30,12,0.0 +22072,35,18,34,0.0 +22072,64,33.25,16,0.0 +22072,38,263.5,36,0.0 +22072,39,18,38,0.0 +22072,11,21,31,0.0 +22072,13,6,2,0.0 +22072,27,43.9,49,0.0 +22072,2,19,36,0.0 +22072,8,40,44,0.0 +22072,74,10,45,0.0 +22072,30,25.89,9,0.0 +22072,36,19,12,0.0 +22072,32,32,36,0.0 +22072,49,20,19,0.0 +22072,40,18.4,32,0.0 +22072,77,13,23,0.0 +22072,52,7,9,0.0 +22072,20,81,16,0.0 +22072,65,21.05,40,0.0 +22072,23,9,21,0.0 +22072,76,18,6,0.0 +22072,55,24,28,0.0 +22072,62,49.3,41,0.0 +22072,70,15,2,0.0 +22072,68,12.5,36,0.0 +22072,67,14,32,0.0 +22072,33,2.5,50,0.0 +22072,4,22,15,0.0 +22072,41,9.65,25,0.0 +22072,59,55,3,0.0 +22072,3,10,35,0.0 +22072,16,17.45,8,0.0 +22072,28,45.6,9,0.0 +22072,5,21.35,10,0.0 +22072,72,34.8,42,0.0 +22072,43,46,28,0.0 +22072,9,97,16,0.0 +22072,61,28.5,46,0.0 +22072,56,38,10,0.0 +22072,25,14,44,0.0 +22072,42,14,34,0.0 +22072,29,123.79,20,0.0 +22072,71,21.5,26,0.0 +22072,14,23.25,39,0.0 +22072,15,15.5,45,0.0 +22072,57,19.5,24,0.0 +22072,37,26,18,0.0 +22072,73,15,23,0.0 +22072,58,13.25,7,0.0 +22072,31,12.5,4,0.0 +22072,26,31.23,41,0.0 +22072,53,32.8,20,0.0 +22072,51,53,43,0.0 +22072,1,18,13,0.0 +22072,48,12.75,27,0.0 +22072,66,17,23,0.0 +22072,69,36,10,0.0 +22072,54,7.45,12,0.0 +22072,12,38,11,0.0 +22072,60,34,31,0.0 +22072,6,25,34,0.0 +22072,63,43.9,24,0.0 +22072,19,9.2,3,0.0 +22072,44,19.45,48,0.0 +22072,45,9.5,43,0.0 +22072,75,7.75,20,0.0 +22072,17,39,30,0.0 +22072,47,9.5,3,0.0 +22072,10,31,10,0.0 +22072,46,12,24,0.0 +22072,22,21,5,0.0 +22072,24,4.5,35,0.0 +22073,43,46,45,0.0 +22073,49,20,4,0.0 +22073,35,18,28,0.0 +22073,21,10,29,0.0 +22073,37,26,35,0.0 +22073,34,14,36,0.0 +22073,20,81,3,0.0 +22073,24,4.5,47,0.0 +22073,14,23.25,1,0.0 +22073,32,32,35,0.0 +22073,55,24,16,0.0 +22073,45,9.5,13,0.0 +22073,54,7.45,23,0.0 +22073,48,12.75,39,0.0 +22073,47,9.5,32,0.0 +22073,26,31.23,30,0.0 +22073,42,14,20,0.0 +22073,5,21.35,29,0.0 +22073,23,9,13,0.0 +22073,52,7,24,0.0 +22073,8,40,28,0.0 +22073,11,21,34,0.0 +22073,40,18.4,4,0.0 +22073,19,9.2,49,0.0 +22073,27,43.9,41,0.0 +22073,68,12.5,1,0.0 +22073,36,19,35,0.0 +22073,29,123.79,7,0.0 +22073,76,18,42,0.0 +22073,38,263.5,48,0.0 +22073,70,15,39,0.0 +22073,65,21.05,12,0.0 +22073,63,43.9,6,0.0 +22073,9,97,7,0.0 +22073,6,25,31,0.0 +22073,7,30,35,0.0 +22073,13,6,47,0.0 +22073,28,45.6,16,0.0 +22073,58,13.25,29,0.0 +22073,57,19.5,31,0.0 +22073,51,53,18,0.0 +22073,44,19.45,46,0.0 +22073,75,7.75,40,0.0 +22073,15,15.5,20,0.0 +22073,62,49.3,35,0.0 +22073,12,38,35,0.0 +22073,50,16.25,39,0.0 +22073,67,14,42,0.0 +22073,74,10,2,0.0 +22073,39,18,25,0.0 +22073,22,21,42,0.0 +22073,4,22,17,0.0 +22073,56,38,2,0.0 +22073,2,19,16,0.0 +22073,66,17,28,0.0 +22073,53,32.8,46,0.0 +22073,33,2.5,22,0.0 +22073,31,12.5,29,0.0 +22073,71,21.5,19,0.0 +22073,16,17.45,47,0.0 +22073,73,15,4,0.0 +22074,65,21.05,23,0.0 +22074,8,40,2,0.0 +22074,71,21.5,45,0.0 +22074,52,7,8,0.0 +22074,64,33.25,38,0.0 +22074,38,263.5,40,0.0 +22074,50,16.25,20,0.0 +22074,47,9.5,24,0.0 +22074,37,26,39,0.0 +22074,24,4.5,50,0.0 +22074,5,21.35,17,0.0 +22074,69,36,45,0.0 +22074,54,7.45,10,0.0 +22074,11,21,23,0.0 +22074,19,9.2,41,0.0 +22074,57,19.5,20,0.0 +22074,60,34,47,0.0 +22074,43,46,38,0.0 +22074,73,15,25,0.0 +22074,9,97,12,0.0 +22074,23,9,5,0.0 +22074,3,10,25,0.0 +22074,34,14,39,0.0 +22074,32,32,27,0.0 +22074,21,10,50,0.0 +22074,45,9.5,41,0.0 +22074,40,18.4,37,0.0 +22074,53,32.8,21,0.0 +22074,77,13,39,0.0 +22074,76,18,50,0.0 +22074,36,19,48,0.0 +22074,70,15,44,0.0 +22074,17,39,14,0.0 +22074,75,7.75,35,0.0 +22074,39,18,16,0.0 +22074,62,49.3,39,0.0 +22074,56,38,11,0.0 +22074,55,24,50,0.0 +22074,41,9.65,2,0.0 +22074,31,12.5,6,0.0 +22074,72,34.8,7,0.0 +22074,4,22,3,0.0 +22074,66,17,26,0.0 +22074,46,12,47,0.0 +22074,26,31.23,42,0.0 +22074,51,53,11,0.0 +22074,35,18,32,0.0 +22074,25,14,28,0.0 +22074,48,12.75,27,0.0 +22074,61,28.5,42,0.0 +22074,6,25,13,0.0 +22074,74,10,28,0.0 +22074,2,19,46,0.0 +22074,63,43.9,31,0.0 +22074,13,6,9,0.0 +22074,14,23.25,4,0.0 +22074,18,62.5,18,0.0 +22074,44,19.45,20,0.0 +22074,29,123.79,23,0.0 +22074,59,55,24,0.0 +22074,42,14,9,0.0 +22074,68,12.5,28,0.0 +22074,27,43.9,12,0.0 +22074,7,30,10,0.0 +22074,16,17.45,50,0.0 +22074,1,18,27,0.0 +22074,49,20,14,0.0 +22075,5,21.35,34,0.0 +22075,63,43.9,42,0.0 +22075,56,38,26,0.0 +22075,70,15,12,0.0 +22075,62,49.3,25,0.0 +22075,24,4.5,14,0.0 +22075,37,26,39,0.0 +22075,14,23.25,4,0.0 +22075,42,14,14,0.0 +22075,22,21,31,0.0 +22075,67,14,19,0.0 +22075,46,12,35,0.0 +22075,11,21,19,0.0 +22075,72,34.8,17,0.0 +22075,55,24,2,0.0 +22075,66,17,5,0.0 +22075,60,34,18,0.0 +22075,29,123.79,46,0.0 +22075,47,9.5,49,0.0 +22075,9,97,12,0.0 +22075,69,36,18,0.0 +22075,77,13,8,0.0 +22076,24,4.5,32,0.0 +22076,53,32.8,36,0.0 +22076,69,36,48,0.0 +22076,31,12.5,24,0.0 +22076,54,7.45,43,0.0 +22076,71,21.5,3,0.0 +22076,10,31,2,0.0 +22076,26,31.23,42,0.0 +22076,56,38,46,0.0 +22076,25,14,9,0.0 +22076,18,62.5,32,0.0 +22076,33,2.5,2,0.0 +22076,23,9,12,0.0 +22076,57,19.5,35,0.0 +22076,75,7.75,2,0.0 +22076,30,25.89,13,0.0 +22076,36,19,28,0.0 +22076,66,17,35,0.0 +22076,9,97,48,0.0 +22076,64,33.25,2,0.0 +22076,13,6,12,0.0 +22076,43,46,2,0.0 +22076,42,14,42,0.0 +22076,29,123.79,22,0.0 +22076,1,18,41,0.0 +22076,50,16.25,12,0.0 +22076,37,26,44,0.0 +22076,48,12.75,20,0.0 +22076,46,12,9,0.0 +22076,20,81,29,0.0 +22076,17,39,29,0.0 +22076,21,10,32,0.0 +22076,51,53,9,0.0 +22076,77,13,12,0.0 +22076,40,18.4,43,0.0 +22076,28,45.6,21,0.0 +22076,60,34,6,0.0 +22076,2,19,14,0.0 +22076,65,21.05,31,0.0 +22076,11,21,33,0.0 +22076,4,22,26,0.0 +22076,15,15.5,44,0.0 +22076,8,40,42,0.0 +22076,32,32,20,0.0 +22076,45,9.5,38,0.0 +22076,16,17.45,24,0.0 +22076,68,12.5,50,0.0 +22076,27,43.9,34,0.0 +22076,39,18,3,0.0 +22076,35,18,5,0.0 +22076,63,43.9,4,0.0 +22077,52,7,26,0.0 +22077,56,38,28,0.0 +22077,45,9.5,19,0.0 +22077,14,23.25,30,0.0 +22077,58,13.25,17,0.0 +22077,23,9,44,0.0 +22077,28,45.6,18,0.0 +22077,76,18,30,0.0 +22077,68,12.5,40,0.0 +22077,74,10,45,0.0 +22077,32,32,26,0.0 +22077,25,14,28,0.0 +22078,50,16.25,26,0.0 +22078,45,9.5,3,0.0 +22078,16,17.45,37,0.0 +22078,27,43.9,49,0.0 +22078,5,21.35,24,0.0 +22078,20,81,13,0.0 +22078,42,14,17,0.0 +22078,69,36,34,0.0 +22078,7,30,39,0.0 +22078,59,55,43,0.0 +22078,64,33.25,16,0.0 +22078,77,13,25,0.0 +22078,71,21.5,32,0.0 +22078,24,4.5,36,0.0 +22078,2,19,46,0.0 +22078,57,19.5,47,0.0 +22078,61,28.5,5,0.0 +22078,18,62.5,40,0.0 +22078,58,13.25,50,0.0 +22078,56,38,49,0.0 +22078,29,123.79,50,0.0 +22078,28,45.6,39,0.0 +22078,32,32,8,0.0 +22079,75,7.75,37,0.0 +22079,20,81,2,0.0 +22079,74,10,39,0.0 +22079,47,9.5,42,0.0 +22079,26,31.23,35,0.0 +22079,39,18,42,0.0 +22079,38,263.5,3,0.0 +22079,62,49.3,34,0.0 +22079,63,43.9,11,0.0 +22079,69,36,37,0.0 +22079,57,19.5,24,0.0 +22079,54,7.45,25,0.0 +22079,14,23.25,8,0.0 +22079,9,97,30,0.0 +22079,65,21.05,29,0.0 +22079,17,39,15,0.0 +22079,29,123.79,29,0.0 +22079,37,26,49,0.0 +22079,18,62.5,6,0.0 +22079,4,22,2,0.0 +22079,21,10,5,0.0 +22079,12,38,18,0.0 +22079,6,25,13,0.0 +22079,45,9.5,8,0.0 +22079,68,12.5,48,0.0 +22079,41,9.65,32,0.0 +22079,44,19.45,50,0.0 +22079,66,17,2,0.0 +22079,53,32.8,8,0.0 +22079,48,12.75,43,0.0 +22079,15,15.5,36,0.0 +22079,60,34,23,0.0 +22079,52,7,26,0.0 +22079,32,32,10,0.0 +22079,13,6,27,0.0 +22079,71,21.5,16,0.0 +22079,49,20,4,0.0 +22079,70,15,20,0.0 +22079,59,55,26,0.0 +22079,67,14,41,0.0 +22079,23,9,32,0.0 +22079,42,14,17,0.0 +22079,56,38,46,0.0 +22079,1,18,16,0.0 +22079,40,18.4,9,0.0 +22079,72,34.8,37,0.0 +22079,43,46,41,0.0 +22079,77,13,31,0.0 +22079,35,18,2,0.0 +22079,36,19,46,0.0 +22079,33,2.5,9,0.0 +22079,51,53,11,0.0 +22079,34,14,48,0.0 +22079,58,13.25,12,0.0 +22079,7,30,2,0.0 +22079,3,10,12,0.0 +22079,73,15,47,0.0 +22080,6,25,39,0.0 +22080,61,28.5,42,0.0 +22080,26,31.23,8,0.0 +22080,8,40,30,0.0 +22080,39,18,16,0.0 +22080,58,13.25,16,0.0 +22080,75,7.75,29,0.0 +22080,50,16.25,11,0.0 +22080,22,21,44,0.0 +22080,16,17.45,18,0.0 +22080,28,45.6,45,0.0 +22080,29,123.79,2,0.0 +22080,49,20,46,0.0 +22080,36,19,39,0.0 +22080,7,30,17,0.0 +22080,5,21.35,23,0.0 +22080,77,13,18,0.0 +22080,71,21.5,39,0.0 +22080,17,39,13,0.0 +22080,73,15,44,0.0 +22080,42,14,13,0.0 +22080,19,9.2,45,0.0 +22080,63,43.9,9,0.0 +22080,65,21.05,23,0.0 +22080,46,12,31,0.0 +22080,34,14,36,0.0 +22080,64,33.25,19,0.0 +22080,21,10,50,0.0 +22080,15,15.5,49,0.0 +22080,9,97,41,0.0 +22080,30,25.89,30,0.0 +22080,11,21,6,0.0 +22080,37,26,50,0.0 +22080,33,2.5,50,0.0 +22080,76,18,10,0.0 +22080,40,18.4,16,0.0 +22080,53,32.8,21,0.0 +22080,54,7.45,16,0.0 +22080,14,23.25,41,0.0 +22080,56,38,38,0.0 +22080,60,34,34,0.0 +22080,48,12.75,26,0.0 +22080,52,7,28,0.0 +22080,69,36,2,0.0 +22080,72,34.8,23,0.0 +22080,51,53,16,0.0 +22080,2,19,9,0.0 +22080,12,38,40,0.0 +22080,25,14,40,0.0 +22080,55,24,18,0.0 +22080,18,62.5,20,0.0 +22080,62,49.3,4,0.0 +22080,31,12.5,13,0.0 +22080,47,9.5,43,0.0 +22080,32,32,33,0.0 +22080,23,9,29,0.0 +22080,43,46,33,0.0 +22080,35,18,12,0.0 +22080,38,263.5,9,0.0 +22080,74,10,30,0.0 +22080,1,18,16,0.0 +22080,41,9.65,28,0.0 +22080,24,4.5,16,0.0 +22080,67,14,47,0.0 +22080,27,43.9,14,0.0 +22080,4,22,3,0.0 +22081,51,53,1,0.0 +22081,1,18,6,0.0 +22081,75,7.75,24,0.0 +22081,52,7,34,0.0 +22081,38,263.5,40,0.0 +22081,44,19.45,27,0.0 +22081,39,18,28,0.0 +22081,30,25.89,21,0.0 +22081,58,13.25,6,0.0 +22082,8,40,41,0.0 +22082,24,4.5,28,0.0 +22082,37,26,21,0.0 +22082,29,123.79,8,0.0 +22082,34,14,12,0.0 +22082,66,17,1,0.0 +22082,11,21,44,0.0 +22082,53,32.8,34,0.0 +22082,44,19.45,14,0.0 +22082,70,15,34,0.0 +22082,10,31,5,0.0 +22082,43,46,14,0.0 +22082,13,6,32,0.0 +22082,58,13.25,6,0.0 +22082,73,15,29,0.0 +22082,48,12.75,47,0.0 +22082,33,2.5,46,0.0 +22082,49,20,23,0.0 +22082,21,10,9,0.0 +22082,55,24,2,0.0 +22082,25,14,26,0.0 +22082,40,18.4,28,0.0 +22082,17,39,35,0.0 +22082,71,21.5,35,0.0 +22082,12,38,11,0.0 +22082,63,43.9,7,0.0 +22082,1,18,2,0.0 +22082,4,22,47,0.0 +22082,68,12.5,31,0.0 +22082,36,19,6,0.0 +22082,74,10,35,0.0 +22082,46,12,48,0.0 +22082,26,31.23,23,0.0 +22082,75,7.75,17,0.0 +22082,7,30,47,0.0 +22082,47,9.5,38,0.0 +22082,18,62.5,36,0.0 +22082,30,25.89,41,0.0 +22082,42,14,36,0.0 +22082,27,43.9,28,0.0 +22082,20,81,41,0.0 +22082,65,21.05,31,0.0 +22082,59,55,25,0.0 +22082,38,263.5,17,0.0 +22082,67,14,39,0.0 +22082,69,36,28,0.0 +22082,76,18,27,0.0 +22082,64,33.25,3,0.0 +22082,56,38,10,0.0 +22082,72,34.8,17,0.0 +22082,32,32,40,0.0 +22082,41,9.65,3,0.0 +22082,22,21,7,0.0 +22082,5,21.35,45,0.0 +22082,39,18,40,0.0 +22082,54,7.45,37,0.0 +22082,52,7,24,0.0 +22082,35,18,49,0.0 +22082,23,9,27,0.0 +22082,3,10,12,0.0 +22082,2,19,24,0.0 +22082,15,15.5,19,0.0 +22082,45,9.5,7,0.0 +22082,50,16.25,5,0.0 +22082,61,28.5,49,0.0 +22082,62,49.3,35,0.0 +22082,57,19.5,20,0.0 +22082,14,23.25,7,0.0 +22082,16,17.45,40,0.0 +22082,31,12.5,10,0.0 +22083,29,123.79,2,0.0 +22083,70,15,38,0.0 +22083,38,263.5,43,0.0 +22084,15,15.5,41,0.0 +22084,58,13.25,19,0.0 +22084,32,32,14,0.0 +22084,3,10,44,0.0 +22084,8,40,38,0.0 +22084,26,31.23,48,0.0 +22084,61,28.5,22,0.0 +22084,6,25,37,0.0 +22084,11,21,6,0.0 +22084,55,24,37,0.0 +22084,59,55,18,0.0 +22084,14,23.25,10,0.0 +22084,76,18,33,0.0 +22084,28,45.6,45,0.0 +22084,63,43.9,32,0.0 +22084,75,7.75,8,0.0 +22084,16,17.45,38,0.0 +22084,71,21.5,40,0.0 +22084,30,25.89,28,0.0 +22084,36,19,42,0.0 +22084,45,9.5,42,0.0 +22084,43,46,8,0.0 +22084,77,13,41,0.0 +22084,56,38,39,0.0 +22084,37,26,10,0.0 +22084,74,10,29,0.0 +22084,22,21,18,0.0 +22084,54,7.45,16,0.0 +22084,72,34.8,28,0.0 +22084,47,9.5,26,0.0 +22084,68,12.5,35,0.0 +22084,51,53,48,0.0 +22084,1,18,23,0.0 +22084,21,10,12,0.0 +22084,60,34,8,0.0 +22084,5,21.35,38,0.0 +22084,73,15,18,0.0 +22084,66,17,22,0.0 +22084,19,9.2,34,0.0 +22084,52,7,43,0.0 +22084,57,19.5,31,0.0 +22084,39,18,14,0.0 +22084,69,36,47,0.0 +22084,12,38,13,0.0 +22084,62,49.3,39,0.0 +22084,50,16.25,1,0.0 +22084,24,4.5,20,0.0 +22084,46,12,25,0.0 +22084,25,14,33,0.0 +22085,72,34.8,4,0.0 +22085,29,123.79,22,0.0 +22085,75,7.75,18,0.0 +22085,13,6,6,0.0 +22085,11,21,31,0.0 +22085,62,49.3,16,0.0 +22085,30,25.89,25,0.0 +22085,69,36,46,0.0 +22085,3,10,11,0.0 +22085,48,12.75,10,0.0 +22085,43,46,30,0.0 +22085,53,32.8,24,0.0 +22085,39,18,24,0.0 +22085,55,24,11,0.0 +22085,24,4.5,43,0.0 +22085,58,13.25,21,0.0 +22085,51,53,30,0.0 +22085,22,21,14,0.0 +22085,21,10,15,0.0 +22085,47,9.5,26,0.0 +22085,25,14,25,0.0 +22085,26,31.23,21,0.0 +22085,64,33.25,50,0.0 +22085,44,19.45,15,0.0 +22085,50,16.25,46,0.0 +22085,33,2.5,2,0.0 +22085,49,20,41,0.0 +22085,45,9.5,3,0.0 +22085,20,81,48,0.0 +22085,66,17,45,0.0 +22085,52,7,50,0.0 +22085,8,40,13,0.0 +22085,14,23.25,42,0.0 +22085,15,15.5,14,0.0 +22085,19,9.2,21,0.0 +22085,34,14,45,0.0 +22085,6,25,37,0.0 +22085,31,12.5,31,0.0 +22085,60,34,22,0.0 +22085,2,19,4,0.0 +22085,42,14,47,0.0 +22085,5,21.35,14,0.0 +22085,61,28.5,49,0.0 +22085,68,12.5,6,0.0 +22085,9,97,24,0.0 +22085,41,9.65,24,0.0 +22085,70,15,21,0.0 +22086,48,12.75,8,0.0 +22086,4,22,39,0.0 +22086,1,18,47,0.0 +22086,64,33.25,47,0.0 +22086,8,40,14,0.0 +22086,76,18,8,0.0 +22086,33,2.5,11,0.0 +22086,10,31,34,0.0 +22086,23,9,14,0.0 +22086,51,53,37,0.0 +22086,2,19,24,0.0 +22086,56,38,32,0.0 +22086,75,7.75,37,0.0 +22086,28,45.6,8,0.0 +22086,20,81,47,0.0 +22086,38,263.5,33,0.0 +22086,29,123.79,26,0.0 +22086,37,26,5,0.0 +22087,53,32.8,30,0.0 +22087,69,36,33,0.0 +22087,38,263.5,4,0.0 +22087,5,21.35,7,0.0 +22087,27,43.9,1,0.0 +22087,23,9,9,0.0 +22087,15,15.5,45,0.0 +22087,51,53,6,0.0 +22087,10,31,41,0.0 +22087,25,14,24,0.0 +22087,73,15,22,0.0 +22087,41,9.65,28,0.0 +22087,30,25.89,44,0.0 +22087,34,14,4,0.0 +22087,6,25,24,0.0 +22087,40,18.4,21,0.0 +22087,37,26,20,0.0 +22087,47,9.5,34,0.0 +22087,54,7.45,42,0.0 +22087,20,81,7,0.0 +22087,2,19,48,0.0 +22087,24,4.5,47,0.0 +22087,62,49.3,25,0.0 +22087,33,2.5,6,0.0 +22087,65,21.05,10,0.0 +22087,11,21,6,0.0 +22087,77,13,3,0.0 +22087,18,62.5,5,0.0 +22087,68,12.5,12,0.0 +22087,56,38,49,0.0 +22087,17,39,5,0.0 +22087,72,34.8,3,0.0 +22087,75,7.75,34,0.0 +22087,61,28.5,30,0.0 +22087,8,40,29,0.0 +22087,55,24,15,0.0 +22087,14,23.25,5,0.0 +22087,63,43.9,20,0.0 +22087,31,12.5,42,0.0 +22088,25,14,24,0.0 +22088,46,12,15,0.0 +22088,3,10,24,0.0 +22088,1,18,13,0.0 +22088,63,43.9,1,0.0 +22088,61,28.5,46,0.0 +22088,53,32.8,8,0.0 +22088,59,55,11,0.0 +22088,49,20,30,0.0 +22088,70,15,43,0.0 +22088,65,21.05,3,0.0 +22088,36,19,32,0.0 +22088,39,18,33,0.0 +22088,34,14,32,0.0 +22088,72,34.8,45,0.0 +22088,20,81,42,0.0 +22088,24,4.5,31,0.0 +22088,44,19.45,19,0.0 +22088,74,10,35,0.0 +22088,56,38,47,0.0 +22088,38,263.5,7,0.0 +22088,31,12.5,5,0.0 +22088,13,6,11,0.0 +22088,51,53,7,0.0 +22088,69,36,21,0.0 +22088,14,23.25,26,0.0 +22088,52,7,16,0.0 +22088,45,9.5,8,0.0 +22088,62,49.3,39,0.0 +22088,37,26,3,0.0 +22088,4,22,2,0.0 +22088,55,24,23,0.0 +22088,47,9.5,22,0.0 +22088,11,21,50,0.0 +22088,48,12.75,9,0.0 +22088,30,25.89,11,0.0 +22088,75,7.75,21,0.0 +22088,17,39,39,0.0 +22088,28,45.6,10,0.0 +22088,12,38,8,0.0 +22088,76,18,13,0.0 +22088,21,10,39,0.0 +22088,43,46,3,0.0 +22088,5,21.35,28,0.0 +22088,2,19,17,0.0 +22088,6,25,3,0.0 +22088,54,7.45,9,0.0 +22088,26,31.23,22,0.0 +22088,50,16.25,30,0.0 +22088,73,15,33,0.0 +22088,23,9,3,0.0 +22088,58,13.25,2,0.0 +22088,7,30,12,0.0 +22088,67,14,23,0.0 +22088,32,32,10,0.0 +22088,64,33.25,17,0.0 +22088,29,123.79,8,0.0 +22088,66,17,8,0.0 +22088,41,9.65,14,0.0 +22088,71,21.5,16,0.0 +22088,22,21,49,0.0 +22088,15,15.5,18,0.0 +22088,9,97,47,0.0 +22088,57,19.5,44,0.0 +22088,18,62.5,23,0.0 +22088,33,2.5,46,0.0 +22089,7,30,16,0.0 +22089,18,62.5,24,0.0 +22089,72,34.8,23,0.0 +22090,58,13.25,44,0.0 +22090,39,18,16,0.0 +22090,72,34.8,38,0.0 +22090,69,36,16,0.0 +22090,25,14,43,0.0 +22090,3,10,28,0.0 +22090,66,17,29,0.0 +22090,55,24,30,0.0 +22090,11,21,12,0.0 +22090,40,18.4,46,0.0 +22090,59,55,6,0.0 +22090,45,9.5,49,0.0 +22090,19,9.2,3,0.0 +22090,54,7.45,43,0.0 +22090,29,123.79,32,0.0 +22090,61,28.5,8,0.0 +22090,27,43.9,40,0.0 +22090,63,43.9,11,0.0 +22090,52,7,48,0.0 +22090,20,81,43,0.0 +22091,29,123.79,48,0.0 +22091,44,19.45,45,0.0 +22091,61,28.5,16,0.0 +22091,10,31,45,0.0 +22091,74,10,14,0.0 +22091,58,13.25,11,0.0 +22091,23,9,22,0.0 +22091,62,49.3,12,0.0 +22091,36,19,12,0.0 +22091,48,12.75,43,0.0 +22091,6,25,36,0.0 +22091,7,30,40,0.0 +22091,70,15,35,0.0 +22091,26,31.23,17,0.0 +22091,76,18,48,0.0 +22091,68,12.5,15,0.0 +22091,4,22,38,0.0 +22091,12,38,17,0.0 +22091,66,17,41,0.0 +22091,5,21.35,11,0.0 +22091,24,4.5,2,0.0 +22091,59,55,11,0.0 +22091,16,17.45,36,0.0 +22091,52,7,18,0.0 +22091,18,62.5,5,0.0 +22091,25,14,5,0.0 +22091,35,18,15,0.0 +22091,43,46,28,0.0 +22091,9,97,27,0.0 +22091,47,9.5,37,0.0 +22091,30,25.89,25,0.0 +22091,8,40,35,0.0 +22091,1,18,14,0.0 +22091,3,10,42,0.0 +22091,56,38,13,0.0 +22091,75,7.75,43,0.0 +22091,40,18.4,31,0.0 +22091,50,16.25,27,0.0 +22091,14,23.25,33,0.0 +22091,17,39,1,0.0 +22091,72,34.8,13,0.0 +22091,73,15,19,0.0 +22091,21,10,48,0.0 +22091,63,43.9,40,0.0 +22091,54,7.45,5,0.0 +22091,65,21.05,21,0.0 +22091,13,6,34,0.0 +22091,53,32.8,7,0.0 +22091,60,34,14,0.0 +22091,51,53,36,0.0 +22091,57,19.5,15,0.0 +22091,28,45.6,30,0.0 +22091,15,15.5,31,0.0 +22091,45,9.5,33,0.0 +22091,42,14,10,0.0 +22091,34,14,34,0.0 +22091,46,12,39,0.0 +22091,77,13,32,0.0 +22091,49,20,37,0.0 +22091,71,21.5,41,0.0 +22091,41,9.65,13,0.0 +22091,19,9.2,10,0.0 +22092,1,18,18,0.0 +22092,9,97,31,0.0 +22092,43,46,22,0.0 +22092,30,25.89,38,0.0 +22092,16,17.45,46,0.0 +22092,37,26,5,0.0 +22092,19,9.2,4,0.0 +22092,56,38,31,0.0 +22092,48,12.75,38,0.0 +22092,75,7.75,34,0.0 +22092,31,12.5,20,0.0 +22092,23,9,46,0.0 +22092,74,10,5,0.0 +22092,10,31,7,0.0 +22092,2,19,19,0.0 +22092,17,39,28,0.0 +22092,32,32,5,0.0 +22092,18,62.5,2,0.0 +22092,20,81,3,0.0 +22092,5,21.35,26,0.0 +22092,33,2.5,26,0.0 +22092,50,16.25,24,0.0 +22092,7,30,29,0.0 +22092,21,10,49,0.0 +22092,8,40,47,0.0 +22092,51,53,23,0.0 +22092,66,17,8,0.0 +22092,64,33.25,49,0.0 +22092,4,22,1,0.0 +22092,70,15,47,0.0 +22092,26,31.23,50,0.0 +22092,52,7,25,0.0 +22092,49,20,19,0.0 +22092,12,38,23,0.0 +22093,34,14,25,0.0 +22093,21,10,25,0.0 +22093,44,19.45,37,0.0 +22093,64,33.25,20,0.0 +22093,77,13,9,0.0 +22093,3,10,8,0.0 +22093,10,31,27,0.0 +22093,63,43.9,31,0.0 +22093,19,9.2,22,0.0 +22093,55,24,19,0.0 +22093,75,7.75,28,0.0 +22093,31,12.5,42,0.0 +22093,53,32.8,4,0.0 +22093,20,81,13,0.0 +22093,43,46,26,0.0 +22093,26,31.23,49,0.0 +22093,72,34.8,35,0.0 +22093,48,12.75,30,0.0 +22093,70,15,11,0.0 +22093,12,38,3,0.0 +22093,29,123.79,27,0.0 +22093,5,21.35,46,0.0 +22093,73,15,22,0.0 +22093,50,16.25,18,0.0 +22093,41,9.65,4,0.0 +22093,76,18,13,0.0 +22093,11,21,38,0.0 +22093,17,39,15,0.0 +22093,46,12,9,0.0 +22093,18,62.5,23,0.0 +22093,74,10,25,0.0 +22093,45,9.5,38,0.0 +22093,65,21.05,12,0.0 +22093,56,38,2,0.0 +22093,58,13.25,28,0.0 +22093,57,19.5,4,0.0 +22093,47,9.5,35,0.0 +22093,71,21.5,41,0.0 +22093,37,26,12,0.0 +22093,33,2.5,5,0.0 +22093,54,7.45,22,0.0 +22093,60,34,49,0.0 +22093,66,17,5,0.0 +22093,39,18,4,0.0 +22093,7,30,26,0.0 +22093,69,36,7,0.0 +22094,33,2.5,43,0.0 +22094,70,15,36,0.0 +22094,17,39,49,0.0 +22094,7,30,25,0.0 +22094,3,10,50,0.0 +22094,75,7.75,19,0.0 +22094,22,21,43,0.0 +22094,12,38,3,0.0 +22094,66,17,19,0.0 +22094,35,18,2,0.0 +22094,21,10,6,0.0 +22094,4,22,17,0.0 +22094,38,263.5,47,0.0 +22094,32,32,10,0.0 +22094,30,25.89,37,0.0 +22094,37,26,2,0.0 +22094,2,19,8,0.0 +22094,34,14,15,0.0 +22094,6,25,40,0.0 +22094,49,20,4,0.0 +22094,77,13,17,0.0 +22094,15,15.5,32,0.0 +22094,62,49.3,31,0.0 +22094,56,38,3,0.0 +22094,20,81,26,0.0 +22094,31,12.5,6,0.0 +22094,57,19.5,14,0.0 +22094,61,28.5,38,0.0 +22094,53,32.8,11,0.0 +22094,29,123.79,1,0.0 +22094,69,36,23,0.0 +22094,13,6,45,0.0 +22094,72,34.8,24,0.0 +22094,55,24,39,0.0 +22094,65,21.05,6,0.0 +22094,39,18,6,0.0 +22094,58,13.25,45,0.0 +22094,47,9.5,33,0.0 +22094,26,31.23,46,0.0 +22094,28,45.6,14,0.0 +22094,9,97,50,0.0 +22094,46,12,39,0.0 +22094,63,43.9,13,0.0 +22094,59,55,27,0.0 +22094,43,46,12,0.0 +22094,68,12.5,26,0.0 +22094,41,9.65,42,0.0 +22094,23,9,32,0.0 +22094,67,14,29,0.0 +22094,19,9.2,2,0.0 +22094,36,19,2,0.0 +22094,54,7.45,8,0.0 +22094,5,21.35,27,0.0 +22094,18,62.5,37,0.0 +22094,52,7,21,0.0 +22094,11,21,48,0.0 +22094,51,53,39,0.0 +22094,25,14,47,0.0 +22094,42,14,20,0.0 +22094,74,10,1,0.0 +22094,64,33.25,2,0.0 +22094,40,18.4,40,0.0 +22094,71,21.5,25,0.0 +22094,1,18,8,0.0 +22094,45,9.5,11,0.0 +22094,50,16.25,28,0.0 +22094,60,34,40,0.0 +22094,14,23.25,20,0.0 +22094,44,19.45,49,0.0 +22094,16,17.45,49,0.0 +22094,27,43.9,15,0.0 +22094,10,31,26,0.0 +22094,8,40,10,0.0 +22094,73,15,15,0.0 +22095,38,263.5,24,0.0 +22095,16,17.45,22,0.0 +22095,73,15,8,0.0 +22095,63,43.9,11,0.0 +22095,44,19.45,36,0.0 +22095,34,14,13,0.0 +22095,33,2.5,19,0.0 +22095,3,10,13,0.0 +22095,51,53,28,0.0 +22095,12,38,7,0.0 +22095,10,31,7,0.0 +22095,69,36,6,0.0 +22095,52,7,38,0.0 +22095,21,10,42,0.0 +22095,48,12.75,22,0.0 +22095,60,34,34,0.0 +22095,30,25.89,9,0.0 +22095,41,9.65,26,0.0 +22095,43,46,32,0.0 +22095,58,13.25,18,0.0 +22095,18,62.5,42,0.0 +22095,67,14,8,0.0 +22095,65,21.05,3,0.0 +22095,2,19,20,0.0 +22095,72,34.8,31,0.0 +22095,19,9.2,37,0.0 +22095,39,18,45,0.0 +22095,27,43.9,34,0.0 +22095,46,12,10,0.0 +22095,31,12.5,32,0.0 +22095,24,4.5,44,0.0 +22096,67,14,45,0.0 +22096,12,38,11,0.0 +22096,32,32,39,0.0 +22096,77,13,42,0.0 +22096,13,6,12,0.0 +22096,7,30,27,0.0 +22096,45,9.5,39,0.0 +22096,34,14,4,0.0 +22096,27,43.9,15,0.0 +22096,49,20,13,0.0 +22096,1,18,20,0.0 +22096,23,9,8,0.0 +22096,70,15,34,0.0 +22096,4,22,9,0.0 +22096,39,18,6,0.0 +22096,59,55,17,0.0 +22096,61,28.5,28,0.0 +22096,48,12.75,4,0.0 +22096,40,18.4,2,0.0 +22096,11,21,23,0.0 +22096,52,7,48,0.0 +22096,53,32.8,33,0.0 +22096,18,62.5,6,0.0 +22096,55,24,48,0.0 +22096,24,4.5,22,0.0 +22096,72,34.8,22,0.0 +22096,57,19.5,26,0.0 +22096,15,15.5,48,0.0 +22096,6,25,50,0.0 +22096,47,9.5,7,0.0 +22096,28,45.6,38,0.0 +22096,44,19.45,19,0.0 +22096,69,36,2,0.0 +22096,71,21.5,33,0.0 +22096,14,23.25,31,0.0 +22096,2,19,28,0.0 +22096,16,17.45,7,0.0 +22096,37,26,16,0.0 +22096,3,10,28,0.0 +22096,30,25.89,40,0.0 +22096,19,9.2,46,0.0 +22096,26,31.23,49,0.0 +22096,62,49.3,45,0.0 +22096,20,81,36,0.0 +22096,66,17,45,0.0 +22096,33,2.5,8,0.0 +22096,8,40,6,0.0 +22096,63,43.9,21,0.0 +22096,46,12,36,0.0 +22096,41,9.65,23,0.0 +22096,35,18,48,0.0 +22096,21,10,32,0.0 +22096,31,12.5,44,0.0 +22096,36,19,1,0.0 +22096,43,46,7,0.0 +22097,15,15.5,37,0.0 +22097,27,43.9,17,0.0 +22097,60,34,34,0.0 +22097,22,21,25,0.0 +22097,77,13,6,0.0 +22097,14,23.25,32,0.0 +22097,9,97,28,0.0 +22097,4,22,45,0.0 +22097,26,31.23,44,0.0 +22097,24,4.5,5,0.0 +22097,67,14,46,0.0 +22097,11,21,44,0.0 +22097,61,28.5,4,0.0 +22097,8,40,39,0.0 +22097,36,19,22,0.0 +22098,2,19,33,0.0 +22098,66,17,12,0.0 +22098,32,32,31,0.0 +22098,55,24,21,0.0 +22098,28,45.6,25,0.0 +22098,18,62.5,38,0.0 +22098,73,15,38,0.0 +22098,1,18,25,0.0 +22098,71,21.5,23,0.0 +22098,48,12.75,29,0.0 +22098,19,9.2,34,0.0 +22098,12,38,50,0.0 +22098,13,6,4,0.0 +22098,46,12,44,0.0 +22098,59,55,37,0.0 +22098,38,263.5,43,0.0 +22098,44,19.45,25,0.0 +22098,37,26,40,0.0 +22098,14,23.25,21,0.0 +22098,60,34,45,0.0 +22098,31,12.5,19,0.0 +22098,4,22,29,0.0 +22098,63,43.9,18,0.0 +22098,50,16.25,9,0.0 +22098,33,2.5,50,0.0 +22098,21,10,42,0.0 +22098,10,31,34,0.0 +22098,17,39,18,0.0 +22098,62,49.3,14,0.0 +22098,40,18.4,15,0.0 +22098,22,21,14,0.0 +22098,25,14,32,0.0 +22098,35,18,18,0.0 +22098,43,46,25,0.0 +22098,27,43.9,34,0.0 +22099,61,28.5,10,0.0 +22099,4,22,21,0.0 +22099,19,9.2,22,0.0 +22099,62,49.3,14,0.0 +22099,45,9.5,28,0.0 +22099,56,38,23,0.0 +22099,74,10,39,0.0 +22099,52,7,36,0.0 +22099,20,81,12,0.0 +22099,26,31.23,40,0.0 +22099,13,6,16,0.0 +22099,53,32.8,49,0.0 +22099,51,53,16,0.0 +22099,73,15,30,0.0 +22099,15,15.5,17,0.0 +22099,76,18,44,0.0 +22099,65,21.05,30,0.0 +22099,32,32,41,0.0 +22099,30,25.89,29,0.0 +22099,18,62.5,13,0.0 +22099,67,14,30,0.0 +22099,58,13.25,38,0.0 +22099,22,21,1,0.0 +22099,28,45.6,5,0.0 +22099,10,31,13,0.0 +22099,57,19.5,34,0.0 +22099,66,17,3,0.0 +22099,71,21.5,13,0.0 +22099,6,25,17,0.0 +22099,35,18,23,0.0 +22099,59,55,12,0.0 +22099,9,97,44,0.0 +22099,5,21.35,11,0.0 +22099,3,10,2,0.0 +22099,40,18.4,27,0.0 +22099,34,14,32,0.0 +22099,47,9.5,12,0.0 +22099,2,19,11,0.0 +22099,70,15,36,0.0 +22099,77,13,4,0.0 +22099,29,123.79,44,0.0 +22099,54,7.45,39,0.0 +22099,43,46,24,0.0 +22099,69,36,13,0.0 +22099,39,18,3,0.0 +22099,31,12.5,21,0.0 +22099,72,34.8,31,0.0 +22100,70,15,1,0.0 +22100,44,19.45,27,0.0 +22100,17,39,25,0.0 +22100,69,36,37,0.0 +22100,9,97,17,0.0 +22100,77,13,3,0.0 +22100,43,46,28,0.0 +22100,73,15,5,0.0 +22100,29,123.79,2,0.0 +22100,38,263.5,48,0.0 +22100,54,7.45,3,0.0 +22100,4,22,5,0.0 +22100,34,14,4,0.0 +22100,63,43.9,15,0.0 +22100,40,18.4,31,0.0 +22100,47,9.5,26,0.0 +22100,46,12,28,0.0 +22100,11,21,17,0.0 +22100,41,9.65,14,0.0 +22100,35,18,47,0.0 +22100,49,20,22,0.0 +22100,59,55,10,0.0 +22100,25,14,25,0.0 +22100,31,12.5,28,0.0 +22100,52,7,50,0.0 +22100,72,34.8,36,0.0 +22100,53,32.8,15,0.0 +22100,20,81,1,0.0 +22100,3,10,9,0.0 +22100,15,15.5,34,0.0 +22100,8,40,33,0.0 +22100,62,49.3,46,0.0 +22100,5,21.35,35,0.0 +22100,50,16.25,49,0.0 +22100,65,21.05,47,0.0 +22100,71,21.5,17,0.0 +22100,30,25.89,48,0.0 +22100,39,18,50,0.0 +22100,7,30,33,0.0 +22100,55,24,7,0.0 +22100,10,31,8,0.0 +22100,24,4.5,44,0.0 +22100,28,45.6,18,0.0 +22100,19,9.2,13,0.0 +22100,51,53,14,0.0 +22100,68,12.5,39,0.0 +22100,23,9,21,0.0 +22100,14,23.25,9,0.0 +22100,37,26,38,0.0 +22100,36,19,27,0.0 +22100,21,10,46,0.0 +22100,75,7.75,14,0.0 +22100,60,34,8,0.0 +22100,61,28.5,20,0.0 +22100,45,9.5,24,0.0 +22100,2,19,28,0.0 +22100,26,31.23,45,0.0 +22100,22,21,45,0.0 +22100,18,62.5,28,0.0 +22100,42,14,50,0.0 +22100,64,33.25,23,0.0 +22100,12,38,17,0.0 +22100,16,17.45,27,0.0 +22100,27,43.9,24,0.0 +22100,76,18,19,0.0 +22100,56,38,10,0.0 +22100,74,10,8,0.0 +22100,13,6,4,0.0 +22100,33,2.5,28,0.0 +22100,57,19.5,29,0.0 +22100,48,12.75,7,0.0 +22101,8,40,26,0.0 +22101,75,7.75,8,0.0 +22101,18,62.5,20,0.0 +22101,42,14,50,0.0 +22101,19,9.2,28,0.0 +22101,35,18,33,0.0 +22101,69,36,5,0.0 +22101,28,45.6,5,0.0 +22101,14,23.25,15,0.0 +22101,56,38,41,0.0 +22101,20,81,11,0.0 +22101,46,12,42,0.0 +22101,72,34.8,38,0.0 +22101,62,49.3,15,0.0 +22101,45,9.5,17,0.0 +22101,63,43.9,23,0.0 +22101,48,12.75,19,0.0 +22101,60,34,26,0.0 +22101,21,10,35,0.0 +22101,15,15.5,15,0.0 +22101,12,38,11,0.0 +22101,51,53,20,0.0 +22101,7,30,2,0.0 +22101,37,26,39,0.0 +22101,44,19.45,41,0.0 +22101,64,33.25,48,0.0 +22101,68,12.5,4,0.0 +22101,25,14,41,0.0 +22101,38,263.5,20,0.0 +22101,11,21,31,0.0 +22101,76,18,11,0.0 +22101,32,32,17,0.0 +22101,59,55,49,0.0 +22101,2,19,40,0.0 +22101,41,9.65,48,0.0 +22101,29,123.79,48,0.0 +22101,49,20,38,0.0 +22101,9,97,18,0.0 +22101,61,28.5,25,0.0 +22101,73,15,32,0.0 +22101,23,9,46,0.0 +22101,31,12.5,11,0.0 +22101,39,18,18,0.0 +22101,67,14,2,0.0 +22101,43,46,40,0.0 +22101,71,21.5,19,0.0 +22101,30,25.89,25,0.0 +22101,36,19,31,0.0 +22101,57,19.5,35,0.0 +22101,70,15,22,0.0 +22101,66,17,15,0.0 +22101,55,24,39,0.0 +22101,26,31.23,25,0.0 +22101,4,22,3,0.0 +22101,74,10,49,0.0 +22101,6,25,42,0.0 +22101,34,14,50,0.0 +22101,16,17.45,8,0.0 +22101,33,2.5,6,0.0 +22101,50,16.25,19,0.0 +22101,17,39,47,0.0 +22101,47,9.5,18,0.0 +22101,22,21,8,0.0 +22101,65,21.05,32,0.0 +22101,77,13,10,0.0 +22101,40,18.4,49,0.0 +22101,24,4.5,16,0.0 +22102,10,31,38,0.0 +22102,56,38,22,0.0 +22102,61,28.5,42,0.0 +22102,6,25,6,0.0 +22102,77,13,29,0.0 +22102,23,9,17,0.0 +22102,24,4.5,29,0.0 +22102,35,18,41,0.0 +22102,76,18,49,0.0 +22102,3,10,20,0.0 +22102,53,32.8,15,0.0 +22102,34,14,10,0.0 +22102,20,81,5,0.0 +22102,59,55,50,0.0 +22102,25,14,37,0.0 +22102,4,22,33,0.0 +22102,38,263.5,35,0.0 +22102,11,21,12,0.0 +22102,40,18.4,48,0.0 +22102,13,6,46,0.0 +22102,12,38,13,0.0 +22102,30,25.89,38,0.0 +22102,57,19.5,33,0.0 +22102,33,2.5,6,0.0 +22102,44,19.45,46,0.0 +22103,60,34,32,0.0 +22103,18,62.5,17,0.0 +22103,31,12.5,17,0.0 +22103,67,14,4,0.0 +22103,1,18,13,0.0 +22103,66,17,39,0.0 +22103,17,39,27,0.0 +22103,69,36,33,0.0 +22103,51,53,19,0.0 +22103,73,15,42,0.0 +22103,75,7.75,38,0.0 +22103,55,24,2,0.0 +22103,2,19,45,0.0 +22103,58,13.25,36,0.0 +22103,6,25,45,0.0 +22103,54,7.45,23,0.0 +22103,61,28.5,25,0.0 +22103,24,4.5,42,0.0 +22103,5,21.35,45,0.0 +22103,14,23.25,27,0.0 +22103,11,21,41,0.0 +22103,20,81,41,0.0 +22103,63,43.9,36,0.0 +22103,27,43.9,27,0.0 +22103,64,33.25,2,0.0 +22103,22,21,7,0.0 +22103,38,263.5,4,0.0 +22103,68,12.5,49,0.0 +22103,47,9.5,21,0.0 +22103,46,12,12,0.0 +22103,37,26,22,0.0 +22103,44,19.45,14,0.0 +22103,30,25.89,12,0.0 +22103,43,46,14,0.0 +22103,77,13,35,0.0 +22103,74,10,33,0.0 +22103,25,14,14,0.0 +22103,10,31,22,0.0 +22103,29,123.79,37,0.0 +22103,53,32.8,10,0.0 +22103,12,38,50,0.0 +22103,7,30,40,0.0 +22103,26,31.23,18,0.0 +22103,33,2.5,12,0.0 +22103,57,19.5,23,0.0 +22103,35,18,26,0.0 +22103,28,45.6,43,0.0 +22103,36,19,43,0.0 +22103,32,32,44,0.0 +22103,50,16.25,49,0.0 +22103,9,97,31,0.0 +22103,40,18.4,22,0.0 +22104,65,21.05,5,0.0 +22104,38,263.5,17,0.0 +22104,57,19.5,9,0.0 +22104,77,13,20,0.0 +22104,19,9.2,28,0.0 +22104,43,46,23,0.0 +22104,76,18,12,0.0 +22104,54,7.45,17,0.0 +22104,21,10,31,0.0 +22104,72,34.8,9,0.0 +22104,4,22,2,0.0 +22104,75,7.75,42,0.0 +22104,9,97,5,0.0 +22104,2,19,37,0.0 +22104,25,14,43,0.0 +22104,69,36,24,0.0 +22104,26,31.23,5,0.0 +22104,3,10,32,0.0 +22104,31,12.5,37,0.0 +22105,45,9.5,18,0.0 +22105,32,32,46,0.0 +22105,7,30,27,0.0 +22105,23,9,49,0.0 +22105,2,19,50,0.0 +22105,9,97,33,0.0 +22105,72,34.8,35,0.0 +22105,51,53,41,0.0 +22105,38,263.5,32,0.0 +22105,77,13,8,0.0 +22105,6,25,31,0.0 +22105,16,17.45,28,0.0 +22105,36,19,24,0.0 +22105,58,13.25,30,0.0 +22105,52,7,32,0.0 +22105,12,38,39,0.0 +22105,65,21.05,2,0.0 +22105,31,12.5,17,0.0 +22105,48,12.75,28,0.0 +22105,14,23.25,25,0.0 +22105,64,33.25,1,0.0 +22105,39,18,7,0.0 +22105,63,43.9,15,0.0 +22105,74,10,36,0.0 +22105,30,25.89,25,0.0 +22105,67,14,21,0.0 +22105,3,10,46,0.0 +22105,37,26,44,0.0 +22105,62,49.3,49,0.0 +22105,21,10,40,0.0 +22105,42,14,7,0.0 +22105,40,18.4,20,0.0 +22105,15,15.5,27,0.0 +22105,71,21.5,16,0.0 +22105,49,20,26,0.0 +22105,44,19.45,26,0.0 +22105,5,21.35,34,0.0 +22105,57,19.5,26,0.0 +22105,46,12,49,0.0 +22105,24,4.5,41,0.0 +22105,43,46,26,0.0 +22105,76,18,24,0.0 +22105,69,36,28,0.0 +22105,10,31,27,0.0 +22105,56,38,37,0.0 +22105,73,15,2,0.0 +22105,41,9.65,13,0.0 +22105,29,123.79,40,0.0 +22105,61,28.5,40,0.0 +22105,13,6,42,0.0 +22105,53,32.8,32,0.0 +22105,4,22,31,0.0 +22105,55,24,32,0.0 +22105,28,45.6,44,0.0 +22105,27,43.9,3,0.0 +22105,47,9.5,26,0.0 +22105,1,18,49,0.0 +22105,22,21,10,0.0 +22105,59,55,22,0.0 +22105,70,15,36,0.0 +22105,18,62.5,21,0.0 +22105,8,40,11,0.0 +22105,25,14,46,0.0 +22105,19,9.2,42,0.0 +22105,33,2.5,21,0.0 +22105,11,21,31,0.0 +22105,60,34,15,0.0 +22105,66,17,32,0.0 +22105,75,7.75,10,0.0 +22106,25,14,3,0.0 +22106,34,14,35,0.0 +22106,3,10,38,0.0 +22106,33,2.5,50,0.0 +22106,68,12.5,44,0.0 +22106,41,9.65,17,0.0 +22106,74,10,3,0.0 +22106,19,9.2,19,0.0 +22106,17,39,11,0.0 +22106,13,6,21,0.0 +22106,56,38,48,0.0 +22106,12,38,24,0.0 +22106,55,24,29,0.0 +22106,58,13.25,39,0.0 +22106,70,15,10,0.0 +22106,46,12,34,0.0 +22106,43,46,49,0.0 +22106,40,18.4,50,0.0 +22106,44,19.45,28,0.0 +22106,63,43.9,21,0.0 +22106,29,123.79,35,0.0 +22106,76,18,28,0.0 +22106,35,18,32,0.0 +22106,67,14,11,0.0 +22106,1,18,26,0.0 +22106,36,19,33,0.0 +22106,15,15.5,17,0.0 +22106,61,28.5,49,0.0 +22106,8,40,18,0.0 +22107,38,263.5,25,0.0 +22107,12,38,26,0.0 +22107,51,53,10,0.0 +22107,30,25.89,8,0.0 +22107,63,43.9,14,0.0 +22107,7,30,11,0.0 +22107,22,21,5,0.0 +22107,10,31,4,0.0 +22107,44,19.45,26,0.0 +22107,31,12.5,20,0.0 +22107,32,32,15,0.0 +22107,54,7.45,32,0.0 +22107,15,15.5,28,0.0 +22107,26,31.23,10,0.0 +22107,33,2.5,45,0.0 +22107,65,21.05,49,0.0 +22107,62,49.3,17,0.0 +22107,11,21,32,0.0 +22107,75,7.75,50,0.0 +22107,48,12.75,45,0.0 +22108,30,25.89,30,0.0 +22108,64,33.25,33,0.0 +22108,45,9.5,25,0.0 +22108,15,15.5,27,0.0 +22108,62,49.3,37,0.0 +22108,48,12.75,43,0.0 +22108,57,19.5,40,0.0 +22108,73,15,25,0.0 +22108,17,39,24,0.0 +22108,35,18,44,0.0 +22108,34,14,4,0.0 +22108,70,15,23,0.0 +22108,4,22,25,0.0 +22108,9,97,21,0.0 +22108,2,19,13,0.0 +22108,36,19,16,0.0 +22108,76,18,7,0.0 +22108,27,43.9,18,0.0 +22108,39,18,23,0.0 +22108,68,12.5,33,0.0 +22108,47,9.5,7,0.0 +22108,18,62.5,33,0.0 +22108,50,16.25,27,0.0 +22108,37,26,20,0.0 +22108,77,13,8,0.0 +22108,42,14,30,0.0 +22108,61,28.5,15,0.0 +22108,31,12.5,35,0.0 +22108,67,14,45,0.0 +22108,65,21.05,29,0.0 +22108,40,18.4,20,0.0 +22108,72,34.8,39,0.0 +22108,3,10,14,0.0 +22108,69,36,25,0.0 +22108,43,46,14,0.0 +22108,32,32,16,0.0 +22108,7,30,41,0.0 +22108,51,53,22,0.0 +22108,53,32.8,46,0.0 +22108,66,17,7,0.0 +22108,10,31,24,0.0 +22108,71,21.5,9,0.0 +22108,75,7.75,42,0.0 +22108,12,38,18,0.0 +22108,46,12,2,0.0 +22108,22,21,38,0.0 +22108,13,6,7,0.0 +22108,59,55,7,0.0 +22108,19,9.2,14,0.0 +22108,24,4.5,19,0.0 +22108,52,7,25,0.0 +22108,41,9.65,21,0.0 +22108,38,263.5,2,0.0 +22108,49,20,47,0.0 +22108,8,40,5,0.0 +22108,26,31.23,42,0.0 +22108,74,10,12,0.0 +22109,45,9.5,1,0.0 +22109,38,263.5,3,0.0 +22109,30,25.89,47,0.0 +22109,57,19.5,32,0.0 +22109,71,21.5,28,0.0 +22109,46,12,6,0.0 +22109,53,32.8,49,0.0 +22109,56,38,15,0.0 +22109,17,39,40,0.0 +22109,77,13,30,0.0 +22109,6,25,15,0.0 +22109,72,34.8,2,0.0 +22109,52,7,11,0.0 +22109,47,9.5,27,0.0 +22109,41,9.65,18,0.0 +22109,65,21.05,44,0.0 +22109,10,31,18,0.0 +22109,60,34,19,0.0 +22109,1,18,12,0.0 +22109,11,21,45,0.0 +22109,43,46,16,0.0 +22109,62,49.3,31,0.0 +22109,33,2.5,18,0.0 +22109,14,23.25,40,0.0 +22109,28,45.6,3,0.0 +22109,75,7.75,44,0.0 +22109,26,31.23,39,0.0 +22109,69,36,19,0.0 +22109,63,43.9,16,0.0 +22109,2,19,9,0.0 +22109,76,18,13,0.0 +22109,18,62.5,1,0.0 +22109,66,17,37,0.0 +22109,29,123.79,18,0.0 +22109,59,55,45,0.0 +22109,12,38,48,0.0 +22109,35,18,18,0.0 +22109,36,19,7,0.0 +22109,21,10,25,0.0 +22109,13,6,16,0.0 +22109,48,12.75,18,0.0 +22109,44,19.45,45,0.0 +22109,40,18.4,15,0.0 +22109,23,9,11,0.0 +22109,39,18,43,0.0 +22109,61,28.5,2,0.0 +22109,50,16.25,47,0.0 +22109,34,14,33,0.0 +22109,67,14,11,0.0 +22109,19,9.2,29,0.0 +22109,20,81,8,0.0 +22109,32,32,38,0.0 +22109,74,10,15,0.0 +22109,54,7.45,31,0.0 +22109,15,15.5,7,0.0 +22109,16,17.45,49,0.0 +22109,5,21.35,36,0.0 +22109,64,33.25,31,0.0 +22109,73,15,50,0.0 +22109,7,30,30,0.0 +22109,9,97,35,0.0 +22109,49,20,43,0.0 +22109,22,21,48,0.0 +22109,42,14,32,0.0 +22110,42,14,43,0.0 +22110,28,45.6,20,0.0 +22111,13,6,15,0.0 +22111,66,17,16,0.0 +22111,44,19.45,46,0.0 +22111,35,18,23,0.0 +22111,33,2.5,15,0.0 +22111,24,4.5,49,0.0 +22111,34,14,31,0.0 +22111,67,14,6,0.0 +22111,76,18,31,0.0 +22111,77,13,28,0.0 +22111,73,15,5,0.0 +22111,63,43.9,21,0.0 +22111,9,97,49,0.0 +22111,4,22,50,0.0 +22111,15,15.5,23,0.0 +22111,19,9.2,24,0.0 +22111,25,14,18,0.0 +22111,68,12.5,31,0.0 +22111,21,10,37,0.0 +22111,28,45.6,49,0.0 +22111,52,7,10,0.0 +22111,31,12.5,42,0.0 +22111,14,23.25,38,0.0 +22111,51,53,10,0.0 +22111,49,20,21,0.0 +22111,7,30,24,0.0 +22111,10,31,41,0.0 +22111,69,36,24,0.0 +22111,75,7.75,24,0.0 +22111,2,19,49,0.0 +22111,60,34,34,0.0 +22111,23,9,27,0.0 +22111,42,14,30,0.0 +22111,61,28.5,21,0.0 +22111,48,12.75,6,0.0 +22111,39,18,42,0.0 +22111,62,49.3,43,0.0 +22111,18,62.5,6,0.0 +22111,50,16.25,29,0.0 +22111,71,21.5,18,0.0 +22111,29,123.79,27,0.0 +22111,56,38,41,0.0 +22111,22,21,18,0.0 +22111,59,55,17,0.0 +22111,5,21.35,36,0.0 +22111,43,46,32,0.0 +22111,36,19,21,0.0 +22111,72,34.8,6,0.0 +22111,8,40,2,0.0 +22111,57,19.5,7,0.0 +22111,20,81,36,0.0 +22111,47,9.5,8,0.0 +22111,11,21,37,0.0 +22111,40,18.4,30,0.0 +22111,74,10,37,0.0 +22111,54,7.45,2,0.0 +22111,64,33.25,1,0.0 +22111,1,18,34,0.0 +22111,41,9.65,28,0.0 +22111,12,38,50,0.0 +22111,37,26,43,0.0 +22112,68,12.5,15,0.0 +22112,25,14,10,0.0 +22112,32,32,44,0.0 +22112,41,9.65,12,0.0 +22112,77,13,19,0.0 +22112,35,18,25,0.0 +22112,62,49.3,23,0.0 +22112,40,18.4,13,0.0 +22112,4,22,31,0.0 +22113,57,19.5,17,0.0 +22113,25,14,31,0.0 +22113,45,9.5,29,0.0 +22113,22,21,14,0.0 +22113,44,19.45,36,0.0 +22113,15,15.5,42,0.0 +22113,32,32,13,0.0 +22113,18,62.5,3,0.0 +22113,42,14,7,0.0 +22113,61,28.5,33,0.0 +22113,10,31,49,0.0 +22113,2,19,40,0.0 +22113,76,18,10,0.0 +22113,17,39,24,0.0 +22113,46,12,21,0.0 +22113,59,55,10,0.0 +22113,50,16.25,41,0.0 +22113,3,10,46,0.0 +22113,60,34,20,0.0 +22113,41,9.65,28,0.0 +22113,7,30,36,0.0 +22113,19,9.2,42,0.0 +22113,38,263.5,21,0.0 +22113,47,9.5,50,0.0 +22113,26,31.23,30,0.0 +22113,34,14,14,0.0 +22113,21,10,14,0.0 +22113,8,40,29,0.0 +22113,24,4.5,26,0.0 +22113,6,25,25,0.0 +22113,12,38,41,0.0 +22113,70,15,31,0.0 +22113,56,38,27,0.0 +22113,31,12.5,34,0.0 +22113,23,9,19,0.0 +22113,72,34.8,17,0.0 +22113,68,12.5,14,0.0 +22113,66,17,29,0.0 +22113,49,20,27,0.0 +22113,30,25.89,40,0.0 +22113,67,14,30,0.0 +22113,52,7,26,0.0 +22113,40,18.4,19,0.0 +22113,77,13,28,0.0 +22113,62,49.3,28,0.0 +22113,11,21,45,0.0 +22113,55,24,47,0.0 +22113,35,18,22,0.0 +22113,43,46,14,0.0 +22113,14,23.25,17,0.0 +22113,4,22,2,0.0 +22113,9,97,50,0.0 +22113,36,19,32,0.0 +22113,27,43.9,9,0.0 +22113,53,32.8,50,0.0 +22113,20,81,9,0.0 +22113,5,21.35,32,0.0 +22113,48,12.75,10,0.0 +22113,1,18,32,0.0 +22113,54,7.45,2,0.0 +22113,39,18,25,0.0 +22113,28,45.6,44,0.0 +22113,63,43.9,16,0.0 +22113,71,21.5,50,0.0 +22113,74,10,14,0.0 +22113,16,17.45,48,0.0 +22113,37,26,18,0.0 +22114,73,15,38,0.0 +22114,75,7.75,12,0.0 +22114,2,19,26,0.0 +22114,37,26,41,0.0 +22114,49,20,12,0.0 +22114,13,6,14,0.0 +22114,54,7.45,39,0.0 +22114,69,36,39,0.0 +22114,57,19.5,10,0.0 +22114,66,17,10,0.0 +22114,35,18,5,0.0 +22114,23,9,48,0.0 +22114,51,53,48,0.0 +22114,48,12.75,40,0.0 +22114,10,31,39,0.0 +22114,50,16.25,36,0.0 +22114,24,4.5,14,0.0 +22115,50,16.25,4,0.0 +22115,42,14,12,0.0 +22115,54,7.45,15,0.0 +22115,58,13.25,5,0.0 +22115,70,15,47,0.0 +22115,13,6,42,0.0 +22115,7,30,46,0.0 +22115,41,9.65,2,0.0 +22115,72,34.8,22,0.0 +22115,33,2.5,36,0.0 +22115,29,123.79,23,0.0 +22115,39,18,50,0.0 +22115,24,4.5,25,0.0 +22115,49,20,46,0.0 +22115,22,21,28,0.0 +22115,35,18,42,0.0 +22115,37,26,25,0.0 +22115,65,21.05,14,0.0 +22115,6,25,2,0.0 +22115,11,21,22,0.0 +22115,53,32.8,42,0.0 +22115,2,19,38,0.0 +22115,16,17.45,43,0.0 +22115,27,43.9,4,0.0 +22115,1,18,24,0.0 +22115,25,14,4,0.0 +22115,69,36,7,0.0 +22115,15,15.5,46,0.0 +22115,75,7.75,4,0.0 +22115,34,14,9,0.0 +22115,47,9.5,18,0.0 +22115,64,33.25,4,0.0 +22115,62,49.3,42,0.0 +22115,5,21.35,12,0.0 +22115,46,12,2,0.0 +22115,32,32,16,0.0 +22115,67,14,34,0.0 +22115,4,22,40,0.0 +22115,66,17,6,0.0 +22116,33,2.5,10,0.0 +22116,27,43.9,18,0.0 +22116,45,9.5,14,0.0 +22116,76,18,36,0.0 +22116,10,31,5,0.0 +22116,56,38,18,0.0 +22116,7,30,33,0.0 +22116,70,15,39,0.0 +22116,5,21.35,29,0.0 +22116,40,18.4,38,0.0 +22116,28,45.6,41,0.0 +22116,8,40,38,0.0 +22116,30,25.89,15,0.0 +22116,53,32.8,30,0.0 +22116,75,7.75,34,0.0 +22116,74,10,19,0.0 +22116,49,20,35,0.0 +22116,59,55,10,0.0 +22116,50,16.25,28,0.0 +22116,35,18,24,0.0 +22116,13,6,46,0.0 +22116,17,39,14,0.0 +22117,20,81,7,0.0 +22117,42,14,26,0.0 +22117,18,62.5,4,0.0 +22117,34,14,13,0.0 +22117,53,32.8,30,0.0 +22117,49,20,27,0.0 +22117,57,19.5,50,0.0 +22117,40,18.4,36,0.0 +22117,25,14,14,0.0 +22117,1,18,34,0.0 +22117,74,10,23,0.0 +22117,22,21,50,0.0 +22117,71,21.5,18,0.0 +22117,16,17.45,40,0.0 +22117,31,12.5,46,0.0 +22117,39,18,17,0.0 +22117,51,53,8,0.0 +22117,30,25.89,20,0.0 +22117,46,12,40,0.0 +22117,62,49.3,31,0.0 +22117,35,18,1,0.0 +22117,23,9,46,0.0 +22117,10,31,30,0.0 +22117,4,22,7,0.0 +22117,17,39,11,0.0 +22117,67,14,10,0.0 +22117,27,43.9,9,0.0 +22117,54,7.45,28,0.0 +22117,33,2.5,48,0.0 +22117,44,19.45,32,0.0 +22117,32,32,24,0.0 +22117,69,36,13,0.0 +22117,64,33.25,35,0.0 +22117,65,21.05,48,0.0 +22117,56,38,10,0.0 +22117,73,15,28,0.0 +22117,26,31.23,14,0.0 +22117,24,4.5,30,0.0 +22117,63,43.9,1,0.0 +22117,68,12.5,10,0.0 +22117,76,18,43,0.0 +22117,9,97,2,0.0 +22117,5,21.35,8,0.0 +22117,52,7,29,0.0 +22117,3,10,43,0.0 +22117,11,21,22,0.0 +22117,43,46,36,0.0 +22117,7,30,48,0.0 +22117,28,45.6,48,0.0 +22117,48,12.75,10,0.0 +22117,72,34.8,48,0.0 +22117,14,23.25,46,0.0 +22117,15,15.5,48,0.0 +22117,8,40,50,0.0 +22117,36,19,18,0.0 +22117,60,34,24,0.0 +22117,29,123.79,18,0.0 +22117,41,9.65,49,0.0 +22117,55,24,49,0.0 +22117,66,17,36,0.0 +22117,12,38,28,0.0 +22117,77,13,50,0.0 +22117,19,9.2,14,0.0 +22117,21,10,19,0.0 +22117,2,19,40,0.0 +22117,50,16.25,12,0.0 +22118,20,81,16,0.0 +22118,22,21,37,0.0 +22118,75,7.75,28,0.0 +22118,77,13,3,0.0 +22118,1,18,30,0.0 +22118,23,9,9,0.0 +22118,7,30,35,0.0 +22118,26,31.23,43,0.0 +22118,71,21.5,47,0.0 +22118,54,7.45,28,0.0 +22118,35,18,18,0.0 +22118,15,15.5,14,0.0 +22118,37,26,36,0.0 +22118,67,14,6,0.0 +22118,62,49.3,14,0.0 +22118,70,15,40,0.0 +22118,29,123.79,6,0.0 +22118,72,34.8,31,0.0 +22118,47,9.5,40,0.0 +22118,9,97,20,0.0 +22118,73,15,10,0.0 +22118,68,12.5,2,0.0 +22118,34,14,9,0.0 +22118,6,25,23,0.0 +22118,2,19,15,0.0 +22118,41,9.65,19,0.0 +22118,60,34,42,0.0 +22118,33,2.5,39,0.0 +22118,8,40,17,0.0 +22118,39,18,41,0.0 +22118,45,9.5,39,0.0 +22118,64,33.25,31,0.0 +22118,53,32.8,25,0.0 +22118,58,13.25,28,0.0 +22118,19,9.2,20,0.0 +22118,36,19,47,0.0 +22118,18,62.5,16,0.0 +22118,11,21,14,0.0 +22118,25,14,41,0.0 +22118,57,19.5,27,0.0 +22118,17,39,40,0.0 +22118,24,4.5,46,0.0 +22118,50,16.25,14,0.0 +22118,48,12.75,3,0.0 +22118,44,19.45,43,0.0 +22118,63,43.9,24,0.0 +22118,61,28.5,22,0.0 +22118,28,45.6,25,0.0 +22118,38,263.5,43,0.0 +22119,12,38,21,0.0 +22119,46,12,21,0.0 +22119,73,15,28,0.0 +22119,1,18,3,0.0 +22119,38,263.5,14,0.0 +22119,28,45.6,20,0.0 +22119,72,34.8,13,0.0 +22119,34,14,35,0.0 +22119,47,9.5,20,0.0 +22119,66,17,1,0.0 +22119,53,32.8,1,0.0 +22119,22,21,35,0.0 +22119,50,16.25,46,0.0 +22119,43,46,20,0.0 +22119,23,9,47,0.0 +22119,9,97,9,0.0 +22119,26,31.23,9,0.0 +22119,77,13,9,0.0 +22119,63,43.9,45,0.0 +22119,56,38,47,0.0 +22119,58,13.25,4,0.0 +22119,41,9.65,49,0.0 +22119,68,12.5,10,0.0 +22119,14,23.25,15,0.0 +22119,65,21.05,32,0.0 +22119,42,14,49,0.0 +22119,25,14,7,0.0 +22119,51,53,7,0.0 +22119,15,15.5,28,0.0 +22119,70,15,46,0.0 +22119,30,25.89,5,0.0 +22119,24,4.5,25,0.0 +22119,29,123.79,31,0.0 +22119,2,19,26,0.0 +22119,74,10,50,0.0 +22119,8,40,41,0.0 +22119,40,18.4,12,0.0 +22119,13,6,35,0.0 +22119,35,18,43,0.0 +22119,16,17.45,40,0.0 +22119,27,43.9,21,0.0 +22119,17,39,30,0.0 +22119,18,62.5,12,0.0 +22119,39,18,29,0.0 +22119,7,30,11,0.0 +22119,76,18,45,0.0 +22119,32,32,1,0.0 +22119,64,33.25,33,0.0 +22119,75,7.75,8,0.0 +22119,6,25,30,0.0 +22119,37,26,9,0.0 +22119,44,19.45,25,0.0 +22119,62,49.3,42,0.0 +22119,33,2.5,23,0.0 +22119,10,31,43,0.0 +22119,48,12.75,31,0.0 +22119,19,9.2,23,0.0 +22119,67,14,50,0.0 +22119,11,21,34,0.0 +22120,43,46,5,0.0 +22120,37,26,16,0.0 +22120,14,23.25,35,0.0 +22120,27,43.9,13,0.0 +22120,73,15,50,0.0 +22120,52,7,38,0.0 +22120,12,38,12,0.0 +22120,42,14,16,0.0 +22120,36,19,2,0.0 +22120,6,25,44,0.0 +22120,56,38,7,0.0 +22120,17,39,10,0.0 +22120,68,12.5,46,0.0 +22120,4,22,20,0.0 +22120,70,15,3,0.0 +22120,47,9.5,4,0.0 +22120,64,33.25,24,0.0 +22120,40,18.4,49,0.0 +22120,76,18,11,0.0 +22120,75,7.75,20,0.0 +22120,10,31,1,0.0 +22120,39,18,25,0.0 +22120,65,21.05,46,0.0 +22120,60,34,11,0.0 +22120,74,10,49,0.0 +22120,2,19,12,0.0 +22120,46,12,8,0.0 +22120,71,21.5,28,0.0 +22120,13,6,43,0.0 +22120,23,9,48,0.0 +22120,24,4.5,31,0.0 +22121,37,26,38,0.0 +22121,52,7,45,0.0 +22121,12,38,19,0.0 +22121,60,34,49,0.0 +22121,33,2.5,22,0.0 +22121,42,14,18,0.0 +22121,44,19.45,2,0.0 +22121,31,12.5,35,0.0 +22122,69,36,15,0.0 +22122,13,6,14,0.0 +22122,15,15.5,50,0.0 +22122,38,263.5,14,0.0 +22122,64,33.25,11,0.0 +22122,33,2.5,32,0.0 +22122,56,38,9,0.0 +22122,8,40,29,0.0 +22122,25,14,11,0.0 +22122,54,7.45,44,0.0 +22122,10,31,8,0.0 +22122,71,21.5,44,0.0 +22122,14,23.25,44,0.0 +22122,12,38,26,0.0 +22122,43,46,34,0.0 +22122,5,21.35,13,0.0 +22122,68,12.5,35,0.0 +22122,20,81,47,0.0 +22122,19,9.2,36,0.0 +22122,27,43.9,25,0.0 +22122,52,7,45,0.0 +22122,49,20,24,0.0 +22122,51,53,4,0.0 +22122,41,9.65,16,0.0 +22122,75,7.75,49,0.0 +22122,48,12.75,16,0.0 +22122,74,10,49,0.0 +22122,32,32,44,0.0 +22122,3,10,46,0.0 +22122,58,13.25,15,0.0 +22122,16,17.45,7,0.0 +22122,26,31.23,33,0.0 +22122,2,19,45,0.0 +22122,47,9.5,7,0.0 +22122,28,45.6,46,0.0 +22122,77,13,48,0.0 +22122,11,21,44,0.0 +22122,55,24,50,0.0 +22122,62,49.3,35,0.0 +22122,53,32.8,28,0.0 +22122,61,28.5,42,0.0 +22122,21,10,1,0.0 +22122,65,21.05,48,0.0 +22122,30,25.89,41,0.0 +22122,9,97,17,0.0 +22122,23,9,11,0.0 +22122,63,43.9,12,0.0 +22122,39,18,14,0.0 +22122,45,9.5,4,0.0 +22122,31,12.5,16,0.0 +22122,17,39,1,0.0 +22122,70,15,31,0.0 +22122,67,14,34,0.0 +22122,76,18,42,0.0 +22122,37,26,9,0.0 +22122,24,4.5,12,0.0 +22122,40,18.4,23,0.0 +22122,72,34.8,26,0.0 +22122,1,18,14,0.0 +22122,6,25,34,0.0 +22122,44,19.45,3,0.0 +22122,36,19,20,0.0 +22122,35,18,50,0.0 +22122,50,16.25,13,0.0 +22122,22,21,37,0.0 +22122,57,19.5,44,0.0 +22122,34,14,46,0.0 +22122,7,30,24,0.0 +22123,11,21,12,0.0 +22123,32,32,44,0.0 +22123,23,9,8,0.0 +22123,62,49.3,4,0.0 +22123,44,19.45,4,0.0 +22123,18,62.5,21,0.0 +22123,35,18,47,0.0 +22123,14,23.25,27,0.0 +22123,15,15.5,7,0.0 +22123,69,36,41,0.0 +22123,8,40,22,0.0 +22123,50,16.25,4,0.0 +22123,48,12.75,2,0.0 +22123,28,45.6,37,0.0 +22123,43,46,14,0.0 +22123,21,10,19,0.0 +22123,73,15,21,0.0 +22123,58,13.25,38,0.0 +22123,36,19,13,0.0 +22123,40,18.4,49,0.0 +22123,1,18,29,0.0 +22123,17,39,39,0.0 +22123,53,32.8,35,0.0 +22123,9,97,50,0.0 +22123,61,28.5,43,0.0 +22123,65,21.05,11,0.0 +22123,37,26,21,0.0 +22123,39,18,18,0.0 +22123,31,12.5,50,0.0 +22123,63,43.9,50,0.0 +22123,77,13,41,0.0 +22123,30,25.89,30,0.0 +22123,72,34.8,4,0.0 +22123,66,17,21,0.0 +22123,22,21,48,0.0 +22123,70,15,36,0.0 +22123,57,19.5,43,0.0 +22123,52,7,13,0.0 +22123,56,38,26,0.0 +22123,41,9.65,24,0.0 +22123,12,38,12,0.0 +22123,16,17.45,8,0.0 +22123,67,14,24,0.0 +22123,34,14,3,0.0 +22123,75,7.75,28,0.0 +22123,49,20,22,0.0 +22123,74,10,46,0.0 +22123,3,10,43,0.0 +22123,55,24,40,0.0 +22123,46,12,4,0.0 +22123,29,123.79,16,0.0 +22123,10,31,41,0.0 +22123,59,55,27,0.0 +22123,54,7.45,30,0.0 +22123,26,31.23,22,0.0 +22123,71,21.5,8,0.0 +22124,56,38,5,0.0 +22124,70,15,6,0.0 +22124,67,14,46,0.0 +22124,74,10,6,0.0 +22124,64,33.25,7,0.0 +22124,4,22,48,0.0 +22124,40,18.4,15,0.0 +22124,35,18,2,0.0 +22124,46,12,3,0.0 +22124,75,7.75,26,0.0 +22124,15,15.5,7,0.0 +22124,54,7.45,48,0.0 +22124,58,13.25,2,0.0 +22124,65,21.05,40,0.0 +22124,16,17.45,18,0.0 +22124,1,18,29,0.0 +22124,41,9.65,27,0.0 +22124,49,20,5,0.0 +22124,38,263.5,48,0.0 +22124,51,53,18,0.0 +22124,52,7,1,0.0 +22124,30,25.89,8,0.0 +22124,60,34,36,0.0 +22124,31,12.5,15,0.0 +22124,5,21.35,14,0.0 +22124,25,14,38,0.0 +22125,49,20,13,0.0 +22125,61,28.5,38,0.0 +22125,19,9.2,4,0.0 +22125,22,21,28,0.0 +22125,75,7.75,21,0.0 +22125,35,18,50,0.0 +22125,51,53,26,0.0 +22125,7,30,32,0.0 +22125,13,6,46,0.0 +22125,36,19,33,0.0 +22125,65,21.05,44,0.0 +22125,73,15,43,0.0 +22125,50,16.25,20,0.0 +22125,47,9.5,5,0.0 +22125,45,9.5,22,0.0 +22125,62,49.3,50,0.0 +22125,1,18,31,0.0 +22125,2,19,17,0.0 +22125,41,9.65,6,0.0 +22125,53,32.8,4,0.0 +22125,33,2.5,44,0.0 +22125,67,14,4,0.0 +22125,56,38,16,0.0 +22125,18,62.5,35,0.0 +22125,25,14,27,0.0 +22125,44,19.45,36,0.0 +22125,71,21.5,1,0.0 +22125,69,36,30,0.0 +22125,8,40,8,0.0 +22125,37,26,34,0.0 +22125,23,9,43,0.0 +22125,5,21.35,1,0.0 +22125,54,7.45,16,0.0 +22125,77,13,37,0.0 +22125,43,46,40,0.0 +22125,72,34.8,22,0.0 +22125,17,39,19,0.0 +22125,14,23.25,18,0.0 +22125,58,13.25,29,0.0 +22125,59,55,3,0.0 +22125,24,4.5,47,0.0 +22125,10,31,30,0.0 +22125,15,15.5,14,0.0 +22125,27,43.9,37,0.0 +22125,29,123.79,13,0.0 +22125,12,38,38,0.0 +22125,38,263.5,7,0.0 +22125,21,10,38,0.0 +22125,11,21,14,0.0 +22125,60,34,20,0.0 +22125,3,10,21,0.0 +22125,64,33.25,6,0.0 +22125,34,14,19,0.0 +22126,45,9.5,2,0.0 +22126,34,14,39,0.0 +22126,16,17.45,49,0.0 +22126,73,15,47,0.0 +22126,56,38,15,0.0 +22126,33,2.5,35,0.0 +22126,42,14,47,0.0 +22126,18,62.5,4,0.0 +22126,2,19,25,0.0 +22126,9,97,15,0.0 +22126,59,55,23,0.0 +22126,53,32.8,34,0.0 +22126,44,19.45,2,0.0 +22126,7,30,43,0.0 +22126,60,34,11,0.0 +22126,20,81,29,0.0 +22126,1,18,23,0.0 +22126,25,14,20,0.0 +22126,48,12.75,45,0.0 +22126,37,26,36,0.0 +22126,14,23.25,26,0.0 +22126,4,22,22,0.0 +22126,30,25.89,16,0.0 +22126,17,39,18,0.0 +22126,35,18,20,0.0 +22126,66,17,20,0.0 +22126,40,18.4,20,0.0 +22126,12,38,15,0.0 +22126,64,33.25,18,0.0 +22126,15,15.5,13,0.0 +22126,13,6,45,0.0 +22126,11,21,21,0.0 +22126,68,12.5,4,0.0 +22126,62,49.3,2,0.0 +22126,21,10,32,0.0 +22126,52,7,37,0.0 +22126,24,4.5,26,0.0 +22126,39,18,17,0.0 +22126,10,31,19,0.0 +22126,27,43.9,28,0.0 +22126,41,9.65,3,0.0 +22126,72,34.8,22,0.0 +22126,29,123.79,36,0.0 +22126,28,45.6,2,0.0 +22126,19,9.2,45,0.0 +22126,71,21.5,36,0.0 +22126,26,31.23,41,0.0 +22126,75,7.75,5,0.0 +22126,61,28.5,15,0.0 +22127,13,6,36,0.0 +22127,8,40,28,0.0 +22127,60,34,10,0.0 +22127,12,38,20,0.0 +22127,2,19,23,0.0 +22127,1,18,34,0.0 +22127,28,45.6,50,0.0 +22127,33,2.5,27,0.0 +22127,10,31,47,0.0 +22127,15,15.5,33,0.0 +22127,42,14,7,0.0 +22127,20,81,32,0.0 +22127,31,12.5,7,0.0 +22127,3,10,47,0.0 +22127,6,25,43,0.0 +22127,67,14,50,0.0 +22127,64,33.25,8,0.0 +22127,68,12.5,30,0.0 +22127,53,32.8,18,0.0 +22127,41,9.65,10,0.0 +22127,52,7,25,0.0 +22127,16,17.45,1,0.0 +22127,36,19,23,0.0 +22127,55,24,15,0.0 +22127,32,32,14,0.0 +22127,44,19.45,19,0.0 +22127,75,7.75,44,0.0 +22128,24,4.5,29,0.0 +22128,75,7.75,43,0.0 +22128,41,9.65,37,0.0 +22128,46,12,9,0.0 +22128,72,34.8,45,0.0 +22128,26,31.23,21,0.0 +22128,6,25,9,0.0 +22128,7,30,22,0.0 +22128,1,18,44,0.0 +22128,32,32,23,0.0 +22128,67,14,34,0.0 +22128,54,7.45,33,0.0 +22128,61,28.5,12,0.0 +22128,38,263.5,10,0.0 +22128,52,7,36,0.0 +22128,68,12.5,18,0.0 +22128,2,19,18,0.0 +22128,59,55,42,0.0 +22128,5,21.35,45,0.0 +22128,12,38,13,0.0 +22128,3,10,45,0.0 +22128,65,21.05,35,0.0 +22128,50,16.25,22,0.0 +22128,76,18,19,0.0 +22128,34,14,46,0.0 +22128,29,123.79,24,0.0 +22128,36,19,49,0.0 +22128,47,9.5,32,0.0 +22128,55,24,36,0.0 +22128,13,6,30,0.0 +22128,53,32.8,2,0.0 +22128,35,18,28,0.0 +22128,43,46,18,0.0 +22128,66,17,47,0.0 +22128,44,19.45,43,0.0 +22128,56,38,49,0.0 +22128,23,9,22,0.0 +22128,42,14,47,0.0 +22128,74,10,48,0.0 +22128,4,22,48,0.0 +22128,51,53,5,0.0 +22128,19,9.2,41,0.0 +22128,69,36,20,0.0 +22128,20,81,36,0.0 +22128,60,34,17,0.0 +22128,25,14,32,0.0 +22128,16,17.45,1,0.0 +22128,14,23.25,20,0.0 +22128,18,62.5,2,0.0 +22128,49,20,2,0.0 +22128,62,49.3,35,0.0 +22129,49,20,37,0.0 +22129,72,34.8,14,0.0 +22129,25,14,11,0.0 +22129,54,7.45,8,0.0 +22129,10,31,25,0.0 +22129,75,7.75,1,0.0 +22129,32,32,9,0.0 +22129,1,18,26,0.0 +22129,36,19,26,0.0 +22129,40,18.4,25,0.0 +22129,71,21.5,50,0.0 +22129,37,26,11,0.0 +22129,47,9.5,25,0.0 +22129,5,21.35,42,0.0 +22129,77,13,40,0.0 +22129,2,19,47,0.0 +22129,74,10,34,0.0 +22129,41,9.65,19,0.0 +22129,38,263.5,7,0.0 +22129,59,55,44,0.0 +22129,16,17.45,10,0.0 +22129,11,21,17,0.0 +22129,12,38,46,0.0 +22129,3,10,21,0.0 +22129,46,12,16,0.0 +22129,63,43.9,50,0.0 +22129,73,15,2,0.0 +22129,56,38,18,0.0 +22129,31,12.5,43,0.0 +22129,64,33.25,11,0.0 +22129,52,7,10,0.0 +22129,58,13.25,10,0.0 +22129,19,9.2,47,0.0 +22129,14,23.25,38,0.0 +22129,21,10,10,0.0 +22129,4,22,27,0.0 +22129,61,28.5,13,0.0 +22129,45,9.5,15,0.0 +22129,6,25,4,0.0 +22129,50,16.25,17,0.0 +22129,62,49.3,15,0.0 +22129,34,14,37,0.0 +22129,26,31.23,3,0.0 +22129,24,4.5,23,0.0 +22129,15,15.5,6,0.0 +22129,70,15,34,0.0 +22129,7,30,8,0.0 +22129,8,40,13,0.0 +22129,43,46,43,0.0 +22129,28,45.6,11,0.0 +22129,68,12.5,22,0.0 +22129,42,14,23,0.0 +22129,9,97,26,0.0 +22129,29,123.79,15,0.0 +22129,23,9,24,0.0 +22129,22,21,13,0.0 +22129,60,34,32,0.0 +22129,44,19.45,8,0.0 +22129,33,2.5,33,0.0 +22129,67,14,30,0.0 +22129,69,36,30,0.0 +22129,55,24,29,0.0 +22130,15,15.5,17,0.0 +22130,23,9,38,0.0 +22130,10,31,46,0.0 +22130,56,38,5,0.0 +22130,63,43.9,10,0.0 +22130,57,19.5,23,0.0 +22130,34,14,11,0.0 +22130,76,18,32,0.0 +22130,13,6,8,0.0 +22131,37,26,47,0.0 +22131,54,7.45,17,0.0 +22131,6,25,34,0.0 +22131,1,18,31,0.0 +22131,36,19,5,0.0 +22131,2,19,20,0.0 +22131,43,46,26,0.0 +22131,10,31,30,0.0 +22131,22,21,30,0.0 +22131,29,123.79,31,0.0 +22131,51,53,2,0.0 +22131,60,34,33,0.0 +22131,26,31.23,24,0.0 +22131,28,45.6,19,0.0 +22131,12,38,49,0.0 +22131,62,49.3,44,0.0 +22131,74,10,23,0.0 +22131,21,10,18,0.0 +22131,63,43.9,2,0.0 +22131,19,9.2,42,0.0 +22131,50,16.25,19,0.0 +22131,3,10,11,0.0 +22131,35,18,21,0.0 +22131,73,15,38,0.0 +22131,15,15.5,45,0.0 +22131,55,24,37,0.0 +22131,66,17,19,0.0 +22131,16,17.45,32,0.0 +22131,25,14,39,0.0 +22131,33,2.5,5,0.0 +22131,58,13.25,47,0.0 +22131,64,33.25,20,0.0 +22131,69,36,26,0.0 +22131,52,7,19,0.0 +22131,65,21.05,5,0.0 +22131,72,34.8,44,0.0 +22131,49,20,39,0.0 +22131,14,23.25,3,0.0 +22131,23,9,17,0.0 +22131,13,6,10,0.0 +22131,38,263.5,43,0.0 +22131,44,19.45,46,0.0 +22131,68,12.5,44,0.0 +22131,11,21,2,0.0 +22131,20,81,37,0.0 +22131,76,18,38,0.0 +22131,42,14,40,0.0 +22131,24,4.5,15,0.0 +22132,73,15,5,0.0 +22133,27,43.9,48,0.0 +22133,41,9.65,16,0.0 +22133,18,62.5,18,0.0 +22134,26,31.23,40,0.0 +22134,71,21.5,18,0.0 +22134,66,17,45,0.0 +22134,7,30,50,0.0 +22134,11,21,36,0.0 +22134,17,39,48,0.0 +22134,16,17.45,6,0.0 +22134,35,18,29,0.0 +22134,59,55,15,0.0 +22134,18,62.5,19,0.0 +22134,8,40,42,0.0 +22134,15,15.5,36,0.0 +22134,40,18.4,50,0.0 +22134,70,15,47,0.0 +22134,53,32.8,8,0.0 +22134,49,20,5,0.0 +22134,32,32,7,0.0 +22134,48,12.75,15,0.0 +22134,55,24,33,0.0 +22134,43,46,28,0.0 +22134,12,38,48,0.0 +22135,17,39,40,0.0 +22135,31,12.5,44,0.0 +22135,26,31.23,24,0.0 +22135,69,36,21,0.0 +22135,20,81,7,0.0 +22135,68,12.5,17,0.0 +22135,45,9.5,46,0.0 +22135,23,9,40,0.0 +22135,43,46,9,0.0 +22135,37,26,32,0.0 +22135,16,17.45,16,0.0 +22135,71,21.5,25,0.0 +22135,40,18.4,16,0.0 +22135,48,12.75,41,0.0 +22135,27,43.9,8,0.0 +22135,4,22,25,0.0 +22135,46,12,23,0.0 +22135,44,19.45,14,0.0 +22135,41,9.65,48,0.0 +22135,66,17,24,0.0 +22135,42,14,13,0.0 +22135,64,33.25,40,0.0 +22135,65,21.05,31,0.0 +22136,22,21,36,0.0 +22136,8,40,49,0.0 +22136,77,13,36,0.0 +22136,19,9.2,11,0.0 +22136,35,18,33,0.0 +22136,55,24,21,0.0 +22136,54,7.45,45,0.0 +22136,44,19.45,24,0.0 +22136,67,14,10,0.0 +22136,60,34,32,0.0 +22136,39,18,45,0.0 +22136,23,9,37,0.0 +22136,73,15,2,0.0 +22136,59,55,9,0.0 +22136,18,62.5,48,0.0 +22136,57,19.5,21,0.0 +22136,20,81,38,0.0 +22136,53,32.8,7,0.0 +22136,71,21.5,7,0.0 +22136,48,12.75,15,0.0 +22136,42,14,14,0.0 +22136,68,12.5,18,0.0 +22136,38,263.5,15,0.0 +22136,72,34.8,21,0.0 +22136,36,19,37,0.0 +22136,9,97,31,0.0 +22136,58,13.25,27,0.0 +22136,1,18,19,0.0 +22136,52,7,43,0.0 +22136,62,49.3,24,0.0 +22136,11,21,47,0.0 +22136,69,36,17,0.0 +22136,13,6,46,0.0 +22136,70,15,12,0.0 +22136,3,10,21,0.0 +22136,10,31,23,0.0 +22136,75,7.75,5,0.0 +22136,37,26,15,0.0 +22136,5,21.35,6,0.0 +22136,47,9.5,47,0.0 +22136,50,16.25,30,0.0 +22136,46,12,28,0.0 +22136,65,21.05,21,0.0 +22136,32,32,1,0.0 +22136,27,43.9,30,0.0 +22137,4,22,15,0.0 +22137,49,20,2,0.0 +22137,14,23.25,1,0.0 +22137,1,18,10,0.0 +22137,29,123.79,4,0.0 +22137,18,62.5,16,0.0 +22137,7,30,14,0.0 +22137,15,15.5,46,0.0 +22137,34,14,38,0.0 +22137,59,55,9,0.0 +22137,55,24,29,0.0 +22137,48,12.75,29,0.0 +22137,76,18,10,0.0 +22137,62,49.3,37,0.0 +22137,33,2.5,16,0.0 +22137,45,9.5,30,0.0 +22137,20,81,12,0.0 +22137,46,12,47,0.0 +22137,44,19.45,43,0.0 +22137,37,26,28,0.0 +22137,6,25,40,0.0 +22137,61,28.5,22,0.0 +22137,43,46,2,0.0 +22137,70,15,21,0.0 +22137,47,9.5,40,0.0 +22137,9,97,15,0.0 +22137,30,25.89,46,0.0 +22137,69,36,14,0.0 +22137,39,18,31,0.0 +22137,32,32,41,0.0 +22138,26,31.23,14,0.0 +22138,70,15,49,0.0 +22138,25,14,21,0.0 +22138,46,12,28,0.0 +22138,30,25.89,13,0.0 +22138,18,62.5,42,0.0 +22138,5,21.35,39,0.0 +22138,73,15,50,0.0 +22138,11,21,23,0.0 +22138,16,17.45,25,0.0 +22138,19,9.2,19,0.0 +22138,22,21,24,0.0 +22138,2,19,25,0.0 +22138,38,263.5,39,0.0 +22138,39,18,23,0.0 +22138,54,7.45,25,0.0 +22138,67,14,12,0.0 +22138,74,10,28,0.0 +22138,47,9.5,9,0.0 +22138,31,12.5,35,0.0 +22138,42,14,1,0.0 +22139,35,18,47,0.0 +22139,10,31,7,0.0 +22139,2,19,2,0.0 +22139,54,7.45,24,0.0 +22139,74,10,42,0.0 +22139,53,32.8,29,0.0 +22139,1,18,41,0.0 +22139,15,15.5,34,0.0 +22139,57,19.5,46,0.0 +22139,16,17.45,8,0.0 +22139,48,12.75,47,0.0 +22139,30,25.89,7,0.0 +22139,50,16.25,15,0.0 +22139,14,23.25,39,0.0 +22139,11,21,10,0.0 +22139,38,263.5,49,0.0 +22139,6,25,37,0.0 +22140,38,263.5,45,0.0 +22140,33,2.5,34,0.0 +22140,60,34,19,0.0 +22140,52,7,30,0.0 +22140,45,9.5,24,0.0 +22140,25,14,12,0.0 +22140,22,21,35,0.0 +22140,66,17,10,0.0 +22140,76,18,28,0.0 +22140,4,22,3,0.0 +22140,13,6,48,0.0 +22140,77,13,2,0.0 +22140,12,38,44,0.0 +22140,18,62.5,46,0.0 +22140,42,14,7,0.0 +22140,67,14,22,0.0 +22140,10,31,15,0.0 +22140,23,9,31,0.0 +22140,8,40,35,0.0 +22140,29,123.79,14,0.0 +22140,31,12.5,42,0.0 +22140,69,36,45,0.0 +22140,72,34.8,2,0.0 +22140,63,43.9,16,0.0 +22140,68,12.5,25,0.0 +22140,56,38,7,0.0 +22140,41,9.65,47,0.0 +22140,7,30,33,0.0 +22140,35,18,11,0.0 +22140,26,31.23,46,0.0 +22140,17,39,14,0.0 +22140,61,28.5,30,0.0 +22140,44,19.45,20,0.0 +22140,70,15,28,0.0 +22141,12,38,37,0.0 +22141,14,23.25,47,0.0 +22141,31,12.5,17,0.0 +22141,77,13,37,0.0 +22141,69,36,20,0.0 +22141,58,13.25,36,0.0 +22141,46,12,13,0.0 +22141,67,14,20,0.0 +22141,71,21.5,19,0.0 +22141,8,40,17,0.0 +22141,70,15,25,0.0 +22141,45,9.5,48,0.0 +22141,66,17,25,0.0 +22141,10,31,45,0.0 +22141,60,34,4,0.0 +22141,23,9,36,0.0 +22141,25,14,9,0.0 +22141,28,45.6,18,0.0 +22141,41,9.65,41,0.0 +22141,30,25.89,15,0.0 +22141,26,31.23,46,0.0 +22141,43,46,11,0.0 +22141,4,22,23,0.0 +22141,35,18,17,0.0 +22141,64,33.25,33,0.0 +22141,39,18,50,0.0 +22141,7,30,33,0.0 +22141,38,263.5,28,0.0 +22141,74,10,47,0.0 +22141,24,4.5,15,0.0 +22141,48,12.75,1,0.0 +22142,11,21,37,0.0 +22142,41,9.65,20,0.0 +22142,7,30,1,0.0 +22142,31,12.5,38,0.0 +22142,6,25,43,0.0 +22142,69,36,19,0.0 +22142,22,21,6,0.0 +22142,43,46,33,0.0 +22142,50,16.25,2,0.0 +22142,74,10,37,0.0 +22142,2,19,39,0.0 +22142,66,17,43,0.0 +22142,5,21.35,10,0.0 +22142,54,7.45,30,0.0 +22142,45,9.5,33,0.0 +22142,13,6,46,0.0 +22142,52,7,22,0.0 +22142,53,32.8,15,0.0 +22142,77,13,45,0.0 +22142,8,40,33,0.0 +22142,49,20,6,0.0 +22142,61,28.5,1,0.0 +22142,16,17.45,31,0.0 +22142,46,12,17,0.0 +22142,1,18,8,0.0 +22142,3,10,46,0.0 +22142,44,19.45,8,0.0 +22142,64,33.25,47,0.0 +22142,67,14,24,0.0 +22142,26,31.23,21,0.0 +22142,42,14,33,0.0 +22142,47,9.5,46,0.0 +22142,38,263.5,1,0.0 +22142,25,14,15,0.0 +22142,71,21.5,46,0.0 +22142,21,10,44,0.0 +22142,36,19,13,0.0 +22142,34,14,33,0.0 +22142,75,7.75,11,0.0 +22142,30,25.89,49,0.0 +22143,59,55,35,0.0 +22143,66,17,26,0.0 +22143,55,24,23,0.0 +22143,75,7.75,39,0.0 +22143,43,46,7,0.0 +22143,44,19.45,24,0.0 +22144,58,13.25,34,0.0 +22144,18,62.5,2,0.0 +22144,15,15.5,48,0.0 +22145,49,20,37,0.0 +22145,67,14,2,0.0 +22145,73,15,11,0.0 +22145,52,7,29,0.0 +22145,34,14,6,0.0 +22145,62,49.3,22,0.0 +22145,14,23.25,1,0.0 +22145,42,14,23,0.0 +22145,15,15.5,47,0.0 +22145,68,12.5,37,0.0 +22145,48,12.75,4,0.0 +22145,61,28.5,14,0.0 +22145,11,21,43,0.0 +22145,54,7.45,7,0.0 +22145,45,9.5,39,0.0 +22145,29,123.79,32,0.0 +22145,2,19,23,0.0 +22145,64,33.25,25,0.0 +22145,77,13,36,0.0 +22145,74,10,15,0.0 +22145,32,32,50,0.0 +22145,69,36,30,0.0 +22145,53,32.8,26,0.0 +22145,7,30,18,0.0 +22145,20,81,2,0.0 +22145,46,12,37,0.0 +22145,4,22,23,0.0 +22145,17,39,27,0.0 +22145,70,15,11,0.0 +22145,6,25,7,0.0 +22145,51,53,10,0.0 +22145,33,2.5,29,0.0 +22145,58,13.25,34,0.0 +22145,35,18,19,0.0 +22145,56,38,50,0.0 +22145,31,12.5,31,0.0 +22145,25,14,39,0.0 +22145,19,9.2,4,0.0 +22145,44,19.45,24,0.0 +22145,12,38,49,0.0 +22145,13,6,46,0.0 +22145,23,9,39,0.0 +22145,39,18,28,0.0 +22145,28,45.6,22,0.0 +22145,30,25.89,36,0.0 +22145,47,9.5,14,0.0 +22145,3,10,49,0.0 +22145,18,62.5,6,0.0 +22145,38,263.5,6,0.0 +22145,5,21.35,39,0.0 +22145,16,17.45,5,0.0 +22145,10,31,13,0.0 +22145,63,43.9,41,0.0 +22145,41,9.65,25,0.0 +22145,43,46,33,0.0 +22145,71,21.5,49,0.0 +22145,26,31.23,3,0.0 +22145,27,43.9,24,0.0 +22146,49,20,14,0.0 +22146,6,25,36,0.0 +22146,28,45.6,3,0.0 +22146,50,16.25,34,0.0 +22146,61,28.5,16,0.0 +22146,1,18,7,0.0 +22146,9,97,31,0.0 +22146,76,18,31,0.0 +22146,57,19.5,6,0.0 +22146,54,7.45,5,0.0 +22146,27,43.9,18,0.0 +22146,26,31.23,29,0.0 +22146,77,13,15,0.0 +22146,56,38,28,0.0 +22146,25,14,35,0.0 +22146,15,15.5,16,0.0 +22146,22,21,10,0.0 +22146,69,36,46,0.0 +22146,44,19.45,41,0.0 +22146,23,9,45,0.0 +22146,68,12.5,43,0.0 +22146,21,10,43,0.0 +22146,53,32.8,13,0.0 +22146,43,46,6,0.0 +22146,74,10,25,0.0 +22146,48,12.75,25,0.0 +22146,37,26,28,0.0 +22146,17,39,36,0.0 +22146,46,12,36,0.0 +22146,62,49.3,15,0.0 +22146,30,25.89,35,0.0 +22146,42,14,44,0.0 +22146,3,10,32,0.0 +22146,60,34,49,0.0 +22146,36,19,26,0.0 +22146,70,15,50,0.0 +22146,66,17,11,0.0 +22146,8,40,7,0.0 +22146,63,43.9,21,0.0 +22146,71,21.5,15,0.0 +22146,73,15,16,0.0 +22146,10,31,48,0.0 +22146,41,9.65,1,0.0 +22146,7,30,26,0.0 +22146,11,21,2,0.0 +22146,19,9.2,34,0.0 +22146,16,17.45,32,0.0 +22146,55,24,48,0.0 +22146,47,9.5,48,0.0 +22146,72,34.8,1,0.0 +22146,35,18,4,0.0 +22146,20,81,44,0.0 +22146,51,53,24,0.0 +22146,75,7.75,43,0.0 +22146,65,21.05,27,0.0 +22146,4,22,38,0.0 +22146,34,14,12,0.0 +22146,58,13.25,20,0.0 +22146,32,32,43,0.0 +22146,45,9.5,48,0.0 +22146,64,33.25,30,0.0 +22146,38,263.5,30,0.0 +22146,29,123.79,7,0.0 +22147,46,12,43,0.0 +22147,40,18.4,19,0.0 +22147,18,62.5,4,0.0 +22147,42,14,22,0.0 +22147,69,36,22,0.0 +22147,29,123.79,24,0.0 +22147,35,18,12,0.0 +22147,28,45.6,38,0.0 +22147,41,9.65,29,0.0 +22147,23,9,42,0.0 +22147,71,21.5,16,0.0 +22147,20,81,7,0.0 +22147,54,7.45,29,0.0 +22147,49,20,17,0.0 +22147,27,43.9,17,0.0 +22147,57,19.5,1,0.0 +22147,2,19,25,0.0 +22147,59,55,29,0.0 +22147,70,15,26,0.0 +22147,22,21,12,0.0 +22147,33,2.5,46,0.0 +22147,39,18,14,0.0 +22147,26,31.23,23,0.0 +22147,19,9.2,49,0.0 +22147,12,38,20,0.0 +22147,7,30,9,0.0 +22147,65,21.05,20,0.0 +22147,31,12.5,16,0.0 +22147,68,12.5,50,0.0 +22147,62,49.3,23,0.0 +22147,11,21,5,0.0 +22147,21,10,2,0.0 +22147,9,97,13,0.0 +22147,8,40,12,0.0 +22147,72,34.8,26,0.0 +22147,51,53,32,0.0 +22147,37,26,34,0.0 +22147,38,263.5,7,0.0 +22147,73,15,17,0.0 +22147,3,10,23,0.0 +22147,32,32,16,0.0 +22147,25,14,15,0.0 +22147,61,28.5,13,0.0 +22147,5,21.35,5,0.0 +22147,56,38,37,0.0 +22147,14,23.25,12,0.0 +22147,53,32.8,26,0.0 +22147,43,46,41,0.0 +22147,36,19,12,0.0 +22148,5,21.35,8,0.0 +22148,40,18.4,48,0.0 +22148,54,7.45,13,0.0 +22148,51,53,45,0.0 +22148,69,36,46,0.0 +22148,66,17,31,0.0 +22148,59,55,12,0.0 +22148,73,15,13,0.0 +22148,45,9.5,8,0.0 +22148,47,9.5,23,0.0 +22148,30,25.89,45,0.0 +22148,49,20,25,0.0 +22148,43,46,12,0.0 +22148,32,32,11,0.0 +22148,2,19,12,0.0 +22148,50,16.25,14,0.0 +22148,37,26,19,0.0 +22148,75,7.75,26,0.0 +22148,56,38,6,0.0 +22148,16,17.45,40,0.0 +22148,20,81,46,0.0 +22148,10,31,37,0.0 +22148,60,34,41,0.0 +22148,55,24,36,0.0 +22148,28,45.6,37,0.0 +22148,61,28.5,9,0.0 +22148,23,9,26,0.0 +22148,24,4.5,42,0.0 +22148,76,18,41,0.0 +22148,34,14,16,0.0 +22148,72,34.8,29,0.0 +22148,67,14,32,0.0 +22148,13,6,7,0.0 +22148,25,14,11,0.0 +22148,46,12,2,0.0 +22148,27,43.9,38,0.0 +22148,33,2.5,18,0.0 +22148,36,19,3,0.0 +22148,6,25,47,0.0 +22148,26,31.23,10,0.0 +22148,31,12.5,5,0.0 +22148,41,9.65,14,0.0 +22148,52,7,44,0.0 +22148,18,62.5,45,0.0 +22148,15,15.5,29,0.0 +22148,3,10,39,0.0 +22148,74,10,34,0.0 +22148,77,13,24,0.0 +22148,63,43.9,38,0.0 +22148,71,21.5,26,0.0 +22148,38,263.5,9,0.0 +22148,64,33.25,21,0.0 +22149,11,21,42,0.0 +22149,67,14,45,0.0 +22149,54,7.45,41,0.0 +22149,6,25,34,0.0 +22149,2,19,38,0.0 +22149,41,9.65,21,0.0 +22149,22,21,43,0.0 +22149,56,38,40,0.0 +22149,4,22,39,0.0 +22149,30,25.89,42,0.0 +22149,52,7,19,0.0 +22149,63,43.9,32,0.0 +22149,43,46,7,0.0 +22149,73,15,18,0.0 +22149,10,31,29,0.0 +22149,46,12,45,0.0 +22149,65,21.05,36,0.0 +22149,68,12.5,5,0.0 +22149,59,55,19,0.0 +22149,15,15.5,44,0.0 +22149,24,4.5,49,0.0 +22149,60,34,30,0.0 +22149,21,10,50,0.0 +22149,75,7.75,43,0.0 +22149,42,14,14,0.0 +22149,31,12.5,28,0.0 +22149,64,33.25,40,0.0 +22149,74,10,4,0.0 +22149,14,23.25,3,0.0 +22149,44,19.45,25,0.0 +22149,19,9.2,3,0.0 +22149,29,123.79,38,0.0 +22149,45,9.5,5,0.0 +22150,62,49.3,36,0.0 +22150,28,45.6,27,0.0 +22150,22,21,9,0.0 +22150,43,46,12,0.0 +22150,49,20,3,0.0 +22150,77,13,14,0.0 +22150,8,40,43,0.0 +22150,25,14,19,0.0 +22150,48,12.75,41,0.0 +22150,38,263.5,14,0.0 +22150,1,18,9,0.0 +22151,68,12.5,9,0.0 +22151,46,12,6,0.0 +22151,32,32,50,0.0 +22151,41,9.65,50,0.0 +22151,40,18.4,30,0.0 +22151,64,33.25,42,0.0 +22151,72,34.8,11,0.0 +22151,19,9.2,9,0.0 +22151,59,55,17,0.0 +22151,69,36,22,0.0 +22151,54,7.45,39,0.0 +22151,43,46,35,0.0 +22151,37,26,28,0.0 +22151,30,25.89,18,0.0 +22151,76,18,19,0.0 +22151,15,15.5,29,0.0 +22151,47,9.5,7,0.0 +22151,42,14,48,0.0 +22151,44,19.45,34,0.0 +22151,16,17.45,30,0.0 +22151,18,62.5,36,0.0 +22151,8,40,48,0.0 +22151,39,18,23,0.0 +22151,55,24,7,0.0 +22151,23,9,16,0.0 +22151,5,21.35,40,0.0 +22151,3,10,6,0.0 +22151,77,13,13,0.0 +22151,17,39,24,0.0 +22151,31,12.5,31,0.0 +22151,57,19.5,14,0.0 +22151,56,38,3,0.0 +22151,62,49.3,8,0.0 +22151,48,12.75,37,0.0 +22151,21,10,16,0.0 +22151,12,38,12,0.0 +22151,52,7,11,0.0 +22151,22,21,46,0.0 +22151,71,21.5,42,0.0 +22151,20,81,9,0.0 +22151,65,21.05,27,0.0 +22151,2,19,23,0.0 +22151,38,263.5,6,0.0 +22151,33,2.5,6,0.0 +22151,66,17,8,0.0 +22151,4,22,33,0.0 +22151,6,25,22,0.0 +22151,1,18,22,0.0 +22151,27,43.9,17,0.0 +22151,53,32.8,5,0.0 +22152,51,53,4,0.0 +22152,58,13.25,9,0.0 +22152,68,12.5,8,0.0 +22152,67,14,48,0.0 +22152,17,39,37,0.0 +22152,66,17,24,0.0 +22152,70,15,5,0.0 +22152,45,9.5,2,0.0 +22152,39,18,38,0.0 +22152,16,17.45,26,0.0 +22152,63,43.9,44,0.0 +22152,71,21.5,1,0.0 +22152,37,26,39,0.0 +22152,18,62.5,49,0.0 +22152,19,9.2,2,0.0 +22152,23,9,45,0.0 +22152,21,10,5,0.0 +22152,69,36,46,0.0 +22152,13,6,33,0.0 +22152,65,21.05,37,0.0 +22152,41,9.65,46,0.0 +22152,25,14,18,0.0 +22152,36,19,39,0.0 +22152,31,12.5,38,0.0 +22152,44,19.45,7,0.0 +22152,55,24,3,0.0 +22152,76,18,46,0.0 +22152,14,23.25,10,0.0 +22152,35,18,23,0.0 +22152,40,18.4,30,0.0 +22152,43,46,30,0.0 +22152,28,45.6,1,0.0 +22152,4,22,14,0.0 +22152,57,19.5,36,0.0 +22152,20,81,49,0.0 +22152,49,20,21,0.0 +22152,9,97,31,0.0 +22152,47,9.5,32,0.0 +22152,54,7.45,16,0.0 +22152,33,2.5,14,0.0 +22152,1,18,15,0.0 +22152,29,123.79,50,0.0 +22152,38,263.5,18,0.0 +22152,74,10,43,0.0 +22152,61,28.5,27,0.0 +22152,32,32,42,0.0 +22152,11,21,2,0.0 +22152,64,33.25,19,0.0 +22152,52,7,16,0.0 +22152,46,12,36,0.0 +22152,42,14,49,0.0 +22152,77,13,45,0.0 +22152,8,40,40,0.0 +22152,48,12.75,8,0.0 +22152,22,21,35,0.0 +22152,15,15.5,48,0.0 +22152,50,16.25,5,0.0 +22152,12,38,39,0.0 +22152,24,4.5,33,0.0 +22152,6,25,32,0.0 +22152,62,49.3,5,0.0 +22152,34,14,39,0.0 +22152,3,10,38,0.0 +22152,73,15,47,0.0 +22152,72,34.8,33,0.0 +22152,53,32.8,40,0.0 +22152,7,30,25,0.0 +22152,5,21.35,36,0.0 +22152,2,19,33,0.0 +22153,67,14,40,0.0 +22153,12,38,20,0.0 +22153,58,13.25,10,0.0 +22153,31,12.5,13,0.0 +22153,16,17.45,26,0.0 +22153,5,21.35,50,0.0 +22153,72,34.8,4,0.0 +22153,23,9,13,0.0 +22153,9,97,26,0.0 +22153,19,9.2,26,0.0 +22153,69,36,22,0.0 +22153,63,43.9,21,0.0 +22153,44,19.45,23,0.0 +22153,36,19,28,0.0 +22153,8,40,35,0.0 +22153,15,15.5,50,0.0 +22153,49,20,47,0.0 +22153,74,10,38,0.0 +22153,73,15,15,0.0 +22153,7,30,21,0.0 +22153,27,43.9,12,0.0 +22153,35,18,20,0.0 +22153,1,18,42,0.0 +22153,52,7,32,0.0 +22153,17,39,10,0.0 +22153,48,12.75,2,0.0 +22153,61,28.5,27,0.0 +22153,29,123.79,17,0.0 +22153,37,26,11,0.0 +22153,62,49.3,48,0.0 +22153,55,24,43,0.0 +22153,75,7.75,43,0.0 +22153,33,2.5,41,0.0 +22153,77,13,35,0.0 +22153,6,25,3,0.0 +22153,76,18,31,0.0 +22153,13,6,41,0.0 +22153,2,19,38,0.0 +22153,43,46,36,0.0 +22153,39,18,7,0.0 +22153,51,53,34,0.0 +22153,28,45.6,48,0.0 +22153,14,23.25,5,0.0 +22153,11,21,29,0.0 +22153,57,19.5,33,0.0 +22153,3,10,18,0.0 +22153,24,4.5,20,0.0 +22153,18,62.5,1,0.0 +22153,59,55,11,0.0 +22153,54,7.45,16,0.0 +22153,65,21.05,41,0.0 +22153,53,32.8,22,0.0 +22153,20,81,7,0.0 +22153,22,21,42,0.0 +22153,41,9.65,3,0.0 +22153,10,31,44,0.0 +22153,46,12,35,0.0 +22153,70,15,4,0.0 +22153,47,9.5,40,0.0 +22153,71,21.5,32,0.0 +22153,64,33.25,41,0.0 +22153,30,25.89,35,0.0 +22153,38,263.5,49,0.0 +22153,60,34,11,0.0 +22153,34,14,49,0.0 +22153,45,9.5,18,0.0 +22154,68,12.5,1,0.0 +22154,71,21.5,33,0.0 +22154,44,19.45,23,0.0 +22154,6,25,22,0.0 +22154,37,26,14,0.0 +22154,7,30,25,0.0 +22154,11,21,6,0.0 +22154,46,12,23,0.0 +22154,32,32,33,0.0 +22154,5,21.35,33,0.0 +22154,41,9.65,31,0.0 +22154,55,24,38,0.0 +22154,42,14,21,0.0 +22154,38,263.5,16,0.0 +22154,35,18,27,0.0 +22154,39,18,14,0.0 +22154,54,7.45,43,0.0 +22154,10,31,3,0.0 +22154,65,21.05,33,0.0 +22154,56,38,10,0.0 +22154,8,40,29,0.0 +22154,62,49.3,12,0.0 +22154,4,22,8,0.0 +22154,45,9.5,8,0.0 +22154,77,13,2,0.0 +22154,14,23.25,48,0.0 +22154,9,97,24,0.0 +22154,24,4.5,47,0.0 +22154,26,31.23,42,0.0 +22154,51,53,9,0.0 +22154,2,19,7,0.0 +22154,72,34.8,6,0.0 +22154,19,9.2,34,0.0 +22154,50,16.25,41,0.0 +22154,12,38,43,0.0 +22154,59,55,12,0.0 +22154,73,15,49,0.0 +22154,17,39,22,0.0 +22154,49,20,5,0.0 +22154,66,17,6,0.0 +22154,75,7.75,3,0.0 +22154,23,9,21,0.0 +22154,63,43.9,1,0.0 +22154,47,9.5,25,0.0 +22154,30,25.89,30,0.0 +22154,43,46,17,0.0 +22154,60,34,20,0.0 +22154,15,15.5,2,0.0 +22154,61,28.5,40,0.0 +22154,74,10,20,0.0 +22154,25,14,44,0.0 +22154,13,6,27,0.0 +22154,31,12.5,44,0.0 +22154,29,123.79,23,0.0 +22154,52,7,10,0.0 +22154,3,10,48,0.0 +22154,48,12.75,45,0.0 +22154,28,45.6,16,0.0 +22154,69,36,30,0.0 +22155,30,25.89,50,0.0 +22155,61,28.5,25,0.0 +22155,77,13,27,0.0 +22155,38,263.5,33,0.0 +22155,34,14,9,0.0 +22155,26,31.23,41,0.0 +22155,76,18,7,0.0 +22155,9,97,46,0.0 +22155,58,13.25,8,0.0 +22155,1,18,20,0.0 +22155,67,14,9,0.0 +22155,48,12.75,25,0.0 +22155,70,15,43,0.0 +22155,14,23.25,32,0.0 +22155,54,7.45,42,0.0 +22155,53,32.8,37,0.0 +22155,47,9.5,26,0.0 +22155,6,25,50,0.0 +22155,71,21.5,20,0.0 +22155,65,21.05,49,0.0 +22155,28,45.6,26,0.0 +22155,7,30,38,0.0 +22155,63,43.9,38,0.0 +22155,36,19,18,0.0 +22155,19,9.2,21,0.0 +22155,16,17.45,33,0.0 +22155,51,53,19,0.0 +22155,15,15.5,40,0.0 +22155,31,12.5,18,0.0 +22155,22,21,26,0.0 +22155,49,20,10,0.0 +22155,23,9,33,0.0 +22155,40,18.4,22,0.0 +22155,68,12.5,30,0.0 +22155,2,19,46,0.0 +22155,20,81,11,0.0 +22155,56,38,27,0.0 +22155,25,14,7,0.0 +22156,69,36,19,0.0 +22156,11,21,43,0.0 +22156,8,40,37,0.0 +22156,57,19.5,3,0.0 +22156,74,10,24,0.0 +22156,58,13.25,21,0.0 +22156,41,9.65,11,0.0 +22156,9,97,44,0.0 +22156,22,21,21,0.0 +22156,53,32.8,40,0.0 +22156,73,15,46,0.0 +22156,29,123.79,31,0.0 +22156,46,12,42,0.0 +22156,26,31.23,4,0.0 +22156,63,43.9,38,0.0 +22156,6,25,50,0.0 +22156,27,43.9,34,0.0 +22156,18,62.5,49,0.0 +22156,3,10,46,0.0 +22156,75,7.75,49,0.0 +22156,42,14,48,0.0 +22156,40,18.4,1,0.0 +22156,4,22,10,0.0 +22156,37,26,5,0.0 +22156,70,15,3,0.0 +22156,54,7.45,28,0.0 +22156,31,12.5,6,0.0 +22156,23,9,38,0.0 +22156,56,38,44,0.0 +22156,10,31,47,0.0 +22156,24,4.5,3,0.0 +22156,32,32,45,0.0 +22156,76,18,35,0.0 +22156,55,24,38,0.0 +22157,34,14,45,0.0 +22157,53,32.8,38,0.0 +22157,10,31,40,0.0 +22157,24,4.5,20,0.0 +22157,45,9.5,24,0.0 +22157,43,46,5,0.0 +22157,33,2.5,16,0.0 +22157,38,263.5,35,0.0 +22157,77,13,2,0.0 +22157,35,18,18,0.0 +22157,6,25,13,0.0 +22157,25,14,3,0.0 +22157,27,43.9,9,0.0 +22157,75,7.75,50,0.0 +22157,37,26,11,0.0 +22157,55,24,12,0.0 +22157,42,14,28,0.0 +22157,59,55,47,0.0 +22157,20,81,22,0.0 +22157,16,17.45,45,0.0 +22157,46,12,41,0.0 +22157,32,32,44,0.0 +22157,40,18.4,34,0.0 +22157,51,53,1,0.0 +22157,69,36,25,0.0 +22157,14,23.25,40,0.0 +22158,1,18,19,0.0 +22158,54,7.45,39,0.0 +22158,49,20,20,0.0 +22158,65,21.05,50,0.0 +22158,25,14,27,0.0 +22158,62,49.3,8,0.0 +22158,45,9.5,4,0.0 +22158,12,38,1,0.0 +22158,67,14,37,0.0 +22158,71,21.5,19,0.0 +22158,20,81,7,0.0 +22159,44,19.45,31,0.0 +22159,11,21,45,0.0 +22160,53,32.8,30,0.0 +22160,6,25,9,0.0 +22160,50,16.25,47,0.0 +22160,22,21,11,0.0 +22160,8,40,1,0.0 +22160,44,19.45,46,0.0 +22160,9,97,28,0.0 +22160,12,38,20,0.0 +22160,5,21.35,50,0.0 +22160,30,25.89,32,0.0 +22160,2,19,32,0.0 +22160,11,21,47,0.0 +22160,25,14,11,0.0 +22160,64,33.25,15,0.0 +22160,37,26,50,0.0 +22160,38,263.5,35,0.0 +22160,56,38,48,0.0 +22160,23,9,42,0.0 +22160,73,15,8,0.0 +22160,17,39,34,0.0 +22160,20,81,27,0.0 +22160,43,46,36,0.0 +22160,76,18,14,0.0 +22160,62,49.3,18,0.0 +22160,69,36,42,0.0 +22160,39,18,5,0.0 +22160,10,31,24,0.0 +22160,47,9.5,5,0.0 +22160,16,17.45,16,0.0 +22160,60,34,8,0.0 +22160,35,18,46,0.0 +22160,32,32,2,0.0 +22160,65,21.05,27,0.0 +22160,46,12,4,0.0 +22160,54,7.45,44,0.0 +22160,52,7,19,0.0 +22160,29,123.79,12,0.0 +22160,18,62.5,4,0.0 +22160,27,43.9,39,0.0 +22161,69,36,3,0.0 +22161,24,4.5,41,0.0 +22161,65,21.05,48,0.0 +22161,2,19,19,0.0 +22161,63,43.9,20,0.0 +22161,5,21.35,4,0.0 +22161,59,55,8,0.0 +22161,19,9.2,31,0.0 +22161,21,10,8,0.0 +22161,17,39,11,0.0 +22161,55,24,11,0.0 +22161,36,19,17,0.0 +22161,14,23.25,50,0.0 +22161,62,49.3,25,0.0 +22161,53,32.8,21,0.0 +22161,67,14,44,0.0 +22161,38,263.5,1,0.0 +22161,11,21,17,0.0 +22161,40,18.4,36,0.0 +22161,26,31.23,3,0.0 +22161,8,40,36,0.0 +22161,66,17,13,0.0 +22161,20,81,20,0.0 +22161,34,14,8,0.0 +22161,32,32,42,0.0 +22161,77,13,9,0.0 +22161,18,62.5,14,0.0 +22161,41,9.65,38,0.0 +22161,37,26,19,0.0 +22161,7,30,38,0.0 +22161,54,7.45,5,0.0 +22161,75,7.75,5,0.0 +22161,22,21,19,0.0 +22161,28,45.6,21,0.0 +22161,43,46,36,0.0 +22161,39,18,5,0.0 +22161,9,97,26,0.0 +22161,57,19.5,33,0.0 +22161,3,10,46,0.0 +22161,16,17.45,11,0.0 +22161,52,7,39,0.0 +22161,25,14,9,0.0 +22161,47,9.5,49,0.0 +22162,6,25,50,0.0 +22162,53,32.8,40,0.0 +22162,7,30,44,0.0 +22162,66,17,45,0.0 +22162,13,6,38,0.0 +22162,67,14,14,0.0 +22162,12,38,5,0.0 +22162,47,9.5,30,0.0 +22162,52,7,9,0.0 +22162,58,13.25,8,0.0 +22162,46,12,5,0.0 +22162,76,18,32,0.0 +22162,39,18,17,0.0 +22162,77,13,12,0.0 +22162,19,9.2,46,0.0 +22162,65,21.05,37,0.0 +22162,41,9.65,25,0.0 +22162,9,97,50,0.0 +22162,1,18,24,0.0 +22162,11,21,25,0.0 +22163,30,25.89,10,0.0 +22163,1,18,19,0.0 +22163,22,21,33,0.0 +22163,44,19.45,12,0.0 +22163,60,34,39,0.0 +22163,24,4.5,44,0.0 +22163,13,6,32,0.0 +22163,39,18,41,0.0 +22163,21,10,23,0.0 +22163,36,19,12,0.0 +22163,64,33.25,29,0.0 +22163,70,15,35,0.0 +22163,66,17,34,0.0 +22163,65,21.05,50,0.0 +22163,40,18.4,39,0.0 +22163,46,12,29,0.0 +22163,50,16.25,13,0.0 +22163,32,32,47,0.0 +22163,51,53,37,0.0 +22163,6,25,30,0.0 +22163,72,34.8,3,0.0 +22163,49,20,10,0.0 +22163,76,18,16,0.0 +22163,68,12.5,9,0.0 +22163,35,18,36,0.0 +22163,3,10,38,0.0 +22163,16,17.45,33,0.0 +22163,12,38,40,0.0 +22163,53,32.8,1,0.0 +22163,77,13,9,0.0 +22163,63,43.9,39,0.0 +22163,61,28.5,41,0.0 +22163,74,10,10,0.0 +22163,17,39,24,0.0 +22163,33,2.5,30,0.0 +22163,11,21,29,0.0 +22163,59,55,27,0.0 +22163,5,21.35,26,0.0 +22163,2,19,27,0.0 +22163,26,31.23,24,0.0 +22163,19,9.2,19,0.0 +22163,58,13.25,19,0.0 +22163,62,49.3,19,0.0 +22163,42,14,29,0.0 +22163,73,15,41,0.0 +22163,67,14,3,0.0 +22163,27,43.9,7,0.0 +22163,75,7.75,49,0.0 +22163,10,31,32,0.0 +22164,58,13.25,31,0.0 +22164,74,10,22,0.0 +22164,21,10,33,0.0 +22164,10,31,23,0.0 +22164,24,4.5,34,0.0 +22164,33,2.5,21,0.0 +22164,50,16.25,38,0.0 +22164,19,9.2,33,0.0 +22164,35,18,24,0.0 +22164,46,12,46,0.0 +22164,49,20,7,0.0 +22164,51,53,38,0.0 +22164,4,22,32,0.0 +22164,67,14,18,0.0 +22164,63,43.9,48,0.0 +22164,6,25,4,0.0 +22164,18,62.5,14,0.0 +22164,5,21.35,39,0.0 +22164,48,12.75,33,0.0 +22164,53,32.8,5,0.0 +22164,16,17.45,33,0.0 +22164,71,21.5,8,0.0 +22164,23,9,31,0.0 +22164,1,18,5,0.0 +22164,69,36,15,0.0 +22164,57,19.5,9,0.0 +22164,7,30,29,0.0 +22164,65,21.05,4,0.0 +22165,65,21.05,21,0.0 +22165,62,49.3,25,0.0 +22165,29,123.79,3,0.0 +22165,50,16.25,40,0.0 +22165,54,7.45,27,0.0 +22165,60,34,40,0.0 +22165,67,14,15,0.0 +22165,21,10,38,0.0 +22165,14,23.25,39,0.0 +22165,26,31.23,7,0.0 +22165,25,14,4,0.0 +22165,43,46,16,0.0 +22165,19,9.2,49,0.0 +22165,69,36,4,0.0 +22165,61,28.5,35,0.0 +22165,8,40,34,0.0 +22165,4,22,42,0.0 +22165,36,19,46,0.0 +22165,64,33.25,31,0.0 +22165,75,7.75,13,0.0 +22165,42,14,18,0.0 +22165,38,263.5,1,0.0 +22165,15,15.5,2,0.0 +22165,41,9.65,18,0.0 +22165,55,24,19,0.0 +22165,73,15,31,0.0 +22165,10,31,17,0.0 +22166,33,2.5,17,0.0 +22166,65,21.05,47,0.0 +22166,59,55,20,0.0 +22166,22,21,9,0.0 +22166,28,45.6,19,0.0 +22166,36,19,30,0.0 +22166,26,31.23,44,0.0 +22166,56,38,5,0.0 +22166,20,81,20,0.0 +22166,9,97,17,0.0 +22166,43,46,43,0.0 +22166,8,40,42,0.0 +22166,3,10,27,0.0 +22166,31,12.5,49,0.0 +22166,45,9.5,27,0.0 +22166,76,18,36,0.0 +22166,14,23.25,19,0.0 +22166,77,13,1,0.0 +22166,21,10,18,0.0 +22166,24,4.5,33,0.0 +22166,38,263.5,37,0.0 +22167,77,13,18,0.0 +22167,21,10,42,0.0 +22167,54,7.45,32,0.0 +22167,9,97,13,0.0 +22167,17,39,43,0.0 +22167,63,43.9,34,0.0 +22167,19,9.2,28,0.0 +22167,75,7.75,24,0.0 +22167,23,9,14,0.0 +22167,11,21,48,0.0 +22167,44,19.45,14,0.0 +22167,55,24,50,0.0 +22167,69,36,2,0.0 +22167,74,10,10,0.0 +22167,29,123.79,34,0.0 +22167,34,14,13,0.0 +22167,68,12.5,29,0.0 +22167,73,15,12,0.0 +22167,62,49.3,29,0.0 +22167,59,55,6,0.0 +22167,43,46,14,0.0 +22167,3,10,12,0.0 +22167,61,28.5,30,0.0 +22167,27,43.9,32,0.0 +22167,40,18.4,8,0.0 +22167,16,17.45,22,0.0 +22167,12,38,41,0.0 +22167,49,20,24,0.0 +22167,39,18,37,0.0 +22167,53,32.8,45,0.0 +22167,24,4.5,21,0.0 +22167,42,14,29,0.0 +22167,45,9.5,17,0.0 +22167,38,263.5,38,0.0 +22167,18,62.5,49,0.0 +22167,22,21,32,0.0 +22167,70,15,3,0.0 +22167,58,13.25,27,0.0 +22167,41,9.65,41,0.0 +22167,25,14,44,0.0 +22167,50,16.25,24,0.0 +22167,32,32,40,0.0 +22167,4,22,26,0.0 +22167,48,12.75,41,0.0 +22167,51,53,31,0.0 +22167,2,19,49,0.0 +22167,47,9.5,44,0.0 +22167,31,12.5,18,0.0 +22167,28,45.6,2,0.0 +22167,67,14,41,0.0 +22167,46,12,23,0.0 +22167,65,21.05,13,0.0 +22167,57,19.5,13,0.0 +22167,8,40,47,0.0 +22167,56,38,40,0.0 +22167,37,26,24,0.0 +22167,13,6,4,0.0 +22167,76,18,40,0.0 +22167,66,17,11,0.0 +22167,5,21.35,6,0.0 +22167,36,19,35,0.0 +22167,52,7,48,0.0 +22167,7,30,13,0.0 +22167,26,31.23,44,0.0 +22167,35,18,26,0.0 +22167,20,81,25,0.0 +22167,30,25.89,49,0.0 +22167,15,15.5,7,0.0 +22167,64,33.25,20,0.0 +22168,74,10,25,0.0 +22168,44,19.45,44,0.0 +22168,50,16.25,34,0.0 +22168,49,20,18,0.0 +22168,2,19,38,0.0 +22168,75,7.75,23,0.0 +22168,19,9.2,14,0.0 +22168,38,263.5,31,0.0 +22168,9,97,10,0.0 +22168,42,14,16,0.0 +22168,21,10,13,0.0 +22168,17,39,17,0.0 +22168,13,6,26,0.0 +22168,71,21.5,17,0.0 +22168,37,26,26,0.0 +22168,40,18.4,37,0.0 +22168,11,21,41,0.0 +22168,35,18,29,0.0 +22168,67,14,2,0.0 +22168,60,34,31,0.0 +22168,61,28.5,47,0.0 +22168,66,17,4,0.0 +22168,52,7,10,0.0 +22168,26,31.23,24,0.0 +22168,23,9,21,0.0 +22168,57,19.5,25,0.0 +22168,24,4.5,37,0.0 +22168,65,21.05,33,0.0 +22168,62,49.3,17,0.0 +22168,58,13.25,21,0.0 +22168,20,81,22,0.0 +22168,22,21,43,0.0 +22168,70,15,39,0.0 +22168,30,25.89,36,0.0 +22168,8,40,1,0.0 +22168,48,12.75,44,0.0 +22168,46,12,36,0.0 +22168,3,10,24,0.0 +22168,64,33.25,36,0.0 +22168,12,38,25,0.0 +22168,16,17.45,16,0.0 +22168,45,9.5,29,0.0 +22168,51,53,43,0.0 +22168,34,14,10,0.0 +22168,55,24,8,0.0 +22168,31,12.5,27,0.0 +22168,10,31,50,0.0 +22168,4,22,14,0.0 +22168,36,19,37,0.0 +22168,77,13,29,0.0 +22168,41,9.65,20,0.0 +22168,25,14,20,0.0 +22168,69,36,25,0.0 +22168,14,23.25,15,0.0 +22168,5,21.35,37,0.0 +22168,18,62.5,20,0.0 +22168,76,18,37,0.0 +22168,59,55,44,0.0 +22168,27,43.9,28,0.0 +22168,32,32,16,0.0 +22168,54,7.45,21,0.0 +22168,63,43.9,26,0.0 +22168,53,32.8,19,0.0 +22168,43,46,2,0.0 +22168,73,15,7,0.0 +22169,19,9.2,11,0.0 +22169,61,28.5,2,0.0 +22169,26,31.23,37,0.0 +22169,44,19.45,22,0.0 +22169,49,20,44,0.0 +22169,40,18.4,30,0.0 +22169,28,45.6,7,0.0 +22169,5,21.35,34,0.0 +22169,34,14,5,0.0 +22169,54,7.45,42,0.0 +22169,23,9,31,0.0 +22169,53,32.8,50,0.0 +22169,59,55,29,0.0 +22169,63,43.9,49,0.0 +22169,25,14,21,0.0 +22169,18,62.5,31,0.0 +22169,20,81,26,0.0 +22169,9,97,43,0.0 +22169,39,18,42,0.0 +22169,56,38,38,0.0 +22169,37,26,27,0.0 +22169,66,17,15,0.0 +22169,45,9.5,20,0.0 +22170,39,18,11,0.0 +22170,75,7.75,33,0.0 +22170,58,13.25,5,0.0 +22170,11,21,43,0.0 +22170,40,18.4,22,0.0 +22170,10,31,49,0.0 +22170,7,30,37,0.0 +22170,3,10,44,0.0 +22170,68,12.5,44,0.0 +22170,55,24,7,0.0 +22170,30,25.89,8,0.0 +22170,54,7.45,4,0.0 +22170,5,21.35,3,0.0 +22170,9,97,46,0.0 +22170,62,49.3,19,0.0 +22170,69,36,36,0.0 +22170,67,14,16,0.0 +22170,50,16.25,17,0.0 +22170,36,19,40,0.0 +22170,48,12.75,19,0.0 +22170,44,19.45,43,0.0 +22170,31,12.5,30,0.0 +22170,38,263.5,28,0.0 +22170,35,18,2,0.0 +22170,28,45.6,39,0.0 +22170,52,7,17,0.0 +22170,42,14,24,0.0 +22170,59,55,49,0.0 +22170,19,9.2,27,0.0 +22170,29,123.79,29,0.0 +22170,71,21.5,42,0.0 +22170,14,23.25,20,0.0 +22170,18,62.5,12,0.0 +22170,4,22,21,0.0 +22170,57,19.5,48,0.0 +22170,53,32.8,20,0.0 +22170,2,19,16,0.0 +22170,15,15.5,35,0.0 +22170,34,14,15,0.0 +22170,66,17,33,0.0 +22170,32,32,23,0.0 +22170,63,43.9,9,0.0 +22170,41,9.65,27,0.0 +22170,13,6,35,0.0 +22170,65,21.05,46,0.0 +22170,21,10,8,0.0 +22170,20,81,36,0.0 +22170,1,18,3,0.0 +22170,45,9.5,29,0.0 +22170,46,12,46,0.0 +22170,70,15,17,0.0 +22170,17,39,45,0.0 +22170,25,14,38,0.0 +22170,6,25,2,0.0 +22170,64,33.25,36,0.0 +22170,60,34,34,0.0 +22170,24,4.5,46,0.0 +22170,12,38,18,0.0 +22170,16,17.45,37,0.0 +22170,76,18,20,0.0 +22171,14,23.25,38,0.0 +22171,28,45.6,19,0.0 +22171,43,46,34,0.0 +22171,5,21.35,46,0.0 +22171,34,14,5,0.0 +22171,57,19.5,30,0.0 +22171,74,10,18,0.0 +22171,31,12.5,47,0.0 +22171,12,38,20,0.0 +22171,63,43.9,26,0.0 +22171,16,17.45,41,0.0 +22171,58,13.25,6,0.0 +22171,33,2.5,23,0.0 +22171,23,9,35,0.0 +22171,21,10,49,0.0 +22171,48,12.75,50,0.0 +22171,51,53,31,0.0 +22171,20,81,5,0.0 +22171,65,21.05,42,0.0 +22171,59,55,49,0.0 +22171,11,21,3,0.0 +22171,62,49.3,37,0.0 +22171,76,18,3,0.0 +22171,40,18.4,43,0.0 +22171,2,19,11,0.0 +22171,18,62.5,35,0.0 +22171,32,32,15,0.0 +22171,22,21,44,0.0 +22171,72,34.8,48,0.0 +22171,37,26,12,0.0 +22171,38,263.5,32,0.0 +22171,47,9.5,9,0.0 +22171,69,36,17,0.0 +22171,8,40,16,0.0 +22171,30,25.89,28,0.0 +22171,68,12.5,3,0.0 +22171,42,14,47,0.0 +22171,49,20,32,0.0 +22171,26,31.23,15,0.0 +22171,67,14,47,0.0 +22171,24,4.5,25,0.0 +22171,7,30,33,0.0 +22171,1,18,49,0.0 +22171,29,123.79,16,0.0 +22171,70,15,47,0.0 +22171,64,33.25,9,0.0 +22171,39,18,41,0.0 +22171,44,19.45,41,0.0 +22171,55,24,11,0.0 +22171,3,10,3,0.0 +22171,56,38,43,0.0 +22171,71,21.5,35,0.0 +22171,36,19,41,0.0 +22171,73,15,17,0.0 +22171,35,18,3,0.0 +22171,66,17,6,0.0 +22171,41,9.65,47,0.0 +22171,75,7.75,1,0.0 +22171,10,31,14,0.0 +22172,62,49.3,35,0.0 +22172,66,17,19,0.0 +22172,45,9.5,38,0.0 +22172,40,18.4,36,0.0 +22172,25,14,34,0.0 +22172,3,10,37,0.0 +22172,44,19.45,28,0.0 +22172,13,6,48,0.0 +22172,70,15,3,0.0 +22172,34,14,39,0.0 +22172,41,9.65,20,0.0 +22172,57,19.5,39,0.0 +22172,54,7.45,31,0.0 +22172,19,9.2,10,0.0 +22172,1,18,16,0.0 +22172,21,10,14,0.0 +22172,8,40,16,0.0 +22172,36,19,50,0.0 +22172,55,24,48,0.0 +22172,69,36,17,0.0 +22172,16,17.45,31,0.0 +22172,7,30,21,0.0 +22172,72,34.8,12,0.0 +22172,51,53,4,0.0 +22172,35,18,30,0.0 +22172,42,14,44,0.0 +22172,37,26,48,0.0 +22172,49,20,6,0.0 +22172,9,97,12,0.0 +22172,12,38,15,0.0 +22172,77,13,42,0.0 +22172,75,7.75,38,0.0 +22172,46,12,30,0.0 +22172,27,43.9,22,0.0 +22172,39,18,3,0.0 +22172,56,38,11,0.0 +22172,24,4.5,46,0.0 +22172,10,31,4,0.0 +22172,47,9.5,50,0.0 +22172,76,18,31,0.0 +22172,29,123.79,34,0.0 +22172,5,21.35,34,0.0 +22172,38,263.5,5,0.0 +22172,73,15,40,0.0 +22172,58,13.25,48,0.0 +22172,4,22,17,0.0 +22172,50,16.25,24,0.0 +22172,71,21.5,12,0.0 +22172,63,43.9,17,0.0 +22172,15,15.5,26,0.0 +22172,74,10,21,0.0 +22172,28,45.6,9,0.0 +22172,11,21,40,0.0 +22172,53,32.8,3,0.0 +22172,31,12.5,28,0.0 +22172,6,25,31,0.0 +22172,22,21,4,0.0 +22172,32,32,42,0.0 +22172,33,2.5,33,0.0 +22172,17,39,33,0.0 +22172,14,23.25,19,0.0 +22172,64,33.25,28,0.0 +22172,20,81,37,0.0 +22172,52,7,26,0.0 +22172,48,12.75,45,0.0 +22172,23,9,14,0.0 +22172,67,14,44,0.0 +22172,65,21.05,47,0.0 +22172,68,12.5,15,0.0 +22172,60,34,35,0.0 +22173,58,13.25,36,0.0 +22173,67,14,6,0.0 +22173,51,53,29,0.0 +22173,7,30,14,0.0 +22173,59,55,4,0.0 +22173,13,6,19,0.0 +22173,2,19,6,0.0 +22173,54,7.45,16,0.0 +22173,44,19.45,6,0.0 +22173,31,12.5,11,0.0 +22173,22,21,1,0.0 +22173,41,9.65,44,0.0 +22173,14,23.25,1,0.0 +22173,45,9.5,49,0.0 +22173,40,18.4,2,0.0 +22173,3,10,15,0.0 +22173,48,12.75,5,0.0 +22173,30,25.89,50,0.0 +22173,68,12.5,48,0.0 +22173,26,31.23,6,0.0 +22173,21,10,44,0.0 +22173,61,28.5,31,0.0 +22173,69,36,25,0.0 +22173,25,14,37,0.0 +22173,76,18,31,0.0 +22173,17,39,42,0.0 +22173,1,18,32,0.0 +22173,39,18,1,0.0 +22173,64,33.25,22,0.0 +22174,62,49.3,37,0.0 +22174,71,21.5,42,0.0 +22174,37,26,8,0.0 +22174,66,17,25,0.0 +22174,60,34,1,0.0 +22174,67,14,17,0.0 +22174,35,18,36,0.0 +22174,7,30,46,0.0 +22174,10,31,30,0.0 +22174,19,9.2,40,0.0 +22174,50,16.25,31,0.0 +22174,23,9,34,0.0 +22174,58,13.25,9,0.0 +22174,30,25.89,48,0.0 +22174,45,9.5,32,0.0 +22174,26,31.23,50,0.0 +22174,59,55,44,0.0 +22175,9,97,26,0.0 +22175,16,17.45,9,0.0 +22175,54,7.45,36,0.0 +22175,4,22,41,0.0 +22175,44,19.45,17,0.0 +22175,58,13.25,3,0.0 +22175,43,46,13,0.0 +22175,60,34,13,0.0 +22175,28,45.6,17,0.0 +22175,39,18,6,0.0 +22175,1,18,22,0.0 +22175,62,49.3,45,0.0 +22175,27,43.9,44,0.0 +22175,19,9.2,46,0.0 +22175,51,53,9,0.0 +22175,20,81,24,0.0 +22175,61,28.5,5,0.0 +22175,31,12.5,24,0.0 +22175,77,13,3,0.0 +22175,13,6,16,0.0 +22175,71,21.5,16,0.0 +22175,29,123.79,32,0.0 +22175,65,21.05,8,0.0 +22175,46,12,40,0.0 +22175,75,7.75,33,0.0 +22175,14,23.25,28,0.0 +22175,50,16.25,43,0.0 +22175,63,43.9,22,0.0 +22175,49,20,18,0.0 +22175,67,14,35,0.0 +22175,57,19.5,3,0.0 +22175,17,39,31,0.0 +22175,41,9.65,5,0.0 +22175,45,9.5,50,0.0 +22175,8,40,24,0.0 +22175,70,15,7,0.0 +22175,30,25.89,43,0.0 +22175,33,2.5,33,0.0 +22175,23,9,43,0.0 +22175,55,24,40,0.0 +22175,47,9.5,49,0.0 +22175,53,32.8,50,0.0 +22175,35,18,25,0.0 +22175,11,21,18,0.0 +22175,48,12.75,37,0.0 +22175,3,10,12,0.0 +22175,32,32,40,0.0 +22175,34,14,50,0.0 +22175,42,14,48,0.0 +22175,76,18,34,0.0 +22175,38,263.5,8,0.0 +22175,68,12.5,24,0.0 +22175,52,7,34,0.0 +22175,73,15,2,0.0 +22175,2,19,19,0.0 +22175,22,21,42,0.0 +22176,39,18,14,0.0 +22176,47,9.5,7,0.0 +22176,38,263.5,50,0.0 +22176,62,49.3,50,0.0 +22176,24,4.5,42,0.0 +22176,44,19.45,4,0.0 +22176,18,62.5,43,0.0 +22176,19,9.2,49,0.0 +22176,37,26,50,0.0 +22176,30,25.89,36,0.0 +22176,8,40,5,0.0 +22176,58,13.25,49,0.0 +22176,66,17,11,0.0 +22176,20,81,6,0.0 +22176,65,21.05,29,0.0 +22176,27,43.9,15,0.0 +22176,42,14,33,0.0 +22176,46,12,14,0.0 +22176,43,46,10,0.0 +22176,10,31,9,0.0 +22176,16,17.45,48,0.0 +22176,35,18,15,0.0 +22176,1,18,4,0.0 +22176,61,28.5,2,0.0 +22176,5,21.35,5,0.0 +22176,60,34,35,0.0 +22176,13,6,50,0.0 +22176,28,45.6,38,0.0 +22176,22,21,16,0.0 +22176,76,18,50,0.0 +22176,34,14,32,0.0 +22176,17,39,9,0.0 +22176,31,12.5,24,0.0 +22176,55,24,4,0.0 +22176,77,13,25,0.0 +22176,49,20,4,0.0 +22176,6,25,39,0.0 +22177,63,43.9,44,0.0 +22177,41,9.65,18,0.0 +22177,13,6,21,0.0 +22177,55,24,47,0.0 +22177,60,34,3,0.0 +22177,33,2.5,8,0.0 +22177,38,263.5,11,0.0 +22177,5,21.35,38,0.0 +22177,59,55,25,0.0 +22177,52,7,11,0.0 +22177,32,32,32,0.0 +22177,43,46,37,0.0 +22177,34,14,11,0.0 +22177,16,17.45,9,0.0 +22177,51,53,6,0.0 +22177,36,19,49,0.0 +22177,73,15,11,0.0 +22177,23,9,2,0.0 +22177,66,17,32,0.0 +22177,11,21,39,0.0 +22177,28,45.6,40,0.0 +22177,64,33.25,39,0.0 +22177,27,43.9,8,0.0 +22177,74,10,45,0.0 +22177,71,21.5,33,0.0 +22177,44,19.45,44,0.0 +22177,6,25,38,0.0 +22177,3,10,9,0.0 +22177,1,18,12,0.0 +22177,37,26,22,0.0 +22177,30,25.89,8,0.0 +22177,61,28.5,38,0.0 +22177,25,14,38,0.0 +22177,40,18.4,11,0.0 +22177,77,13,4,0.0 +22177,56,38,25,0.0 +22177,58,13.25,21,0.0 +22177,69,36,26,0.0 +22177,10,31,30,0.0 +22177,46,12,28,0.0 +22177,29,123.79,4,0.0 +22177,68,12.5,27,0.0 +22177,31,12.5,34,0.0 +22177,50,16.25,30,0.0 +22177,45,9.5,30,0.0 +22177,7,30,21,0.0 +22177,67,14,22,0.0 +22177,70,15,34,0.0 +22177,22,21,34,0.0 +22177,18,62.5,43,0.0 +22177,24,4.5,31,0.0 +22177,19,9.2,6,0.0 +22177,75,7.75,30,0.0 +22177,35,18,12,0.0 +22177,2,19,8,0.0 +22177,20,81,15,0.0 +22177,57,19.5,49,0.0 +22178,59,55,42,0.0 +22178,68,12.5,42,0.0 +22178,27,43.9,43,0.0 +22178,43,46,21,0.0 +22178,10,31,37,0.0 +22178,63,43.9,33,0.0 +22178,4,22,28,0.0 +22178,46,12,26,0.0 +22178,18,62.5,8,0.0 +22178,74,10,15,0.0 +22178,24,4.5,34,0.0 +22178,33,2.5,2,0.0 +22178,49,20,25,0.0 +22178,67,14,26,0.0 +22178,73,15,39,0.0 +22178,55,24,6,0.0 +22178,13,6,49,0.0 +22178,52,7,7,0.0 +22178,38,263.5,39,0.0 +22178,14,23.25,19,0.0 +22178,32,32,24,0.0 +22178,30,25.89,46,0.0 +22178,3,10,39,0.0 +22179,52,7,10,0.0 +22179,5,21.35,48,0.0 +22179,70,15,13,0.0 +22179,39,18,46,0.0 +22179,41,9.65,29,0.0 +22179,19,9.2,36,0.0 +22179,61,28.5,49,0.0 +22179,76,18,20,0.0 +22179,21,10,35,0.0 +22179,69,36,19,0.0 +22179,15,15.5,48,0.0 +22179,28,45.6,12,0.0 +22179,13,6,8,0.0 +22179,26,31.23,11,0.0 +22179,38,263.5,24,0.0 +22179,23,9,21,0.0 +22179,49,20,34,0.0 +22179,1,18,21,0.0 +22179,62,49.3,45,0.0 +22179,37,26,37,0.0 +22179,36,19,39,0.0 +22179,43,46,6,0.0 +22179,56,38,39,0.0 +22179,2,19,38,0.0 +22179,29,123.79,31,0.0 +22179,48,12.75,31,0.0 +22179,40,18.4,5,0.0 +22179,73,15,1,0.0 +22179,9,97,43,0.0 +22179,71,21.5,47,0.0 +22179,50,16.25,17,0.0 +22179,3,10,50,0.0 +22179,46,12,19,0.0 +22179,14,23.25,47,0.0 +22179,77,13,23,0.0 +22179,63,43.9,7,0.0 +22179,75,7.75,20,0.0 +22179,18,62.5,14,0.0 +22179,24,4.5,2,0.0 +22179,27,43.9,49,0.0 +22179,7,30,3,0.0 +22179,25,14,38,0.0 +22179,33,2.5,44,0.0 +22179,31,12.5,46,0.0 +22179,16,17.45,16,0.0 +22179,47,9.5,19,0.0 +22179,6,25,36,0.0 +22179,65,21.05,45,0.0 +22179,67,14,19,0.0 +22179,12,38,46,0.0 +22179,17,39,41,0.0 +22179,11,21,46,0.0 +22179,34,14,17,0.0 +22179,53,32.8,49,0.0 +22179,45,9.5,13,0.0 +22179,44,19.45,16,0.0 +22179,20,81,31,0.0 +22179,8,40,5,0.0 +22179,66,17,47,0.0 +22179,4,22,40,0.0 +22180,34,14,35,0.0 +22180,60,34,29,0.0 +22180,62,49.3,30,0.0 +22180,77,13,46,0.0 +22180,58,13.25,35,0.0 +22180,12,38,28,0.0 +22180,71,21.5,29,0.0 +22180,17,39,10,0.0 +22180,56,38,6,0.0 +22180,49,20,6,0.0 +22180,72,34.8,31,0.0 +22180,70,15,8,0.0 +22180,5,21.35,10,0.0 +22180,16,17.45,30,0.0 +22181,37,26,37,0.0 +22181,36,19,41,0.0 +22181,2,19,8,0.0 +22181,4,22,37,0.0 +22181,55,24,34,0.0 +22181,41,9.65,36,0.0 +22181,18,62.5,1,0.0 +22181,63,43.9,32,0.0 +22181,14,23.25,15,0.0 +22181,17,39,4,0.0 +22181,19,9.2,13,0.0 +22181,66,17,41,0.0 +22181,31,12.5,48,0.0 +22181,1,18,29,0.0 +22181,71,21.5,27,0.0 +22181,16,17.45,50,0.0 +22181,33,2.5,47,0.0 +22181,40,18.4,39,0.0 +22181,60,34,7,0.0 +22181,69,36,5,0.0 +22181,11,21,36,0.0 +22181,39,18,13,0.0 +22181,57,19.5,21,0.0 +22181,43,46,22,0.0 +22181,64,33.25,3,0.0 +22181,44,19.45,3,0.0 +22181,7,30,37,0.0 +22181,21,10,32,0.0 +22181,8,40,18,0.0 +22181,59,55,48,0.0 +22182,48,12.75,39,0.0 +22182,25,14,12,0.0 +22182,16,17.45,21,0.0 +22182,67,14,27,0.0 +22182,69,36,43,0.0 +22182,76,18,19,0.0 +22182,28,45.6,40,0.0 +22182,52,7,25,0.0 +22182,18,62.5,22,0.0 +22182,22,21,12,0.0 +22182,26,31.23,47,0.0 +22182,5,21.35,45,0.0 +22182,55,24,29,0.0 +22182,59,55,47,0.0 +22182,62,49.3,45,0.0 +22182,27,43.9,38,0.0 +22182,20,81,17,0.0 +22182,50,16.25,18,0.0 +22182,68,12.5,10,0.0 +22182,64,33.25,11,0.0 +22182,57,19.5,11,0.0 +22182,31,12.5,33,0.0 +22182,72,34.8,43,0.0 +22182,39,18,46,0.0 +22182,1,18,6,0.0 +22182,23,9,34,0.0 +22182,14,23.25,12,0.0 +22182,44,19.45,30,0.0 +22182,51,53,42,0.0 +22182,43,46,7,0.0 +22182,65,21.05,27,0.0 +22182,53,32.8,44,0.0 +22182,46,12,38,0.0 +22182,30,25.89,15,0.0 +22182,42,14,28,0.0 +22182,73,15,45,0.0 +22182,2,19,45,0.0 +22182,47,9.5,17,0.0 +22183,52,7,37,0.0 +22183,26,31.23,41,0.0 +22183,73,15,30,0.0 +22183,67,14,44,0.0 +22183,16,17.45,23,0.0 +22183,24,4.5,11,0.0 +22183,29,123.79,11,0.0 +22183,56,38,5,0.0 +22183,46,12,34,0.0 +22183,60,34,22,0.0 +22183,6,25,14,0.0 +22183,45,9.5,37,0.0 +22183,13,6,25,0.0 +22183,75,7.75,20,0.0 +22183,70,15,12,0.0 +22183,40,18.4,28,0.0 +22183,43,46,4,0.0 +22183,54,7.45,35,0.0 +22183,68,12.5,41,0.0 +22183,27,43.9,37,0.0 +22183,32,32,4,0.0 +22183,12,38,34,0.0 +22183,2,19,30,0.0 +22184,6,25,18,0.0 +22184,30,25.89,10,0.0 +22184,57,19.5,35,0.0 +22184,44,19.45,3,0.0 +22184,55,24,23,0.0 +22184,29,123.79,43,0.0 +22184,67,14,10,0.0 +22184,52,7,19,0.0 +22184,39,18,17,0.0 +22184,72,34.8,25,0.0 +22184,38,263.5,40,0.0 +22184,13,6,22,0.0 +22184,65,21.05,35,0.0 +22184,42,14,13,0.0 +22184,8,40,3,0.0 +22184,11,21,43,0.0 +22184,43,46,10,0.0 +22184,63,43.9,5,0.0 +22184,58,13.25,48,0.0 +22184,71,21.5,33,0.0 +22184,35,18,16,0.0 +22184,4,22,18,0.0 +22184,49,20,41,0.0 +22184,12,38,31,0.0 +22184,77,13,16,0.0 +22184,15,15.5,13,0.0 +22184,41,9.65,34,0.0 +22184,64,33.25,2,0.0 +22184,61,28.5,27,0.0 +22184,68,12.5,43,0.0 +22184,20,81,32,0.0 +22184,62,49.3,6,0.0 +22184,19,9.2,39,0.0 +22185,15,15.5,21,0.0 +22185,11,21,24,0.0 +22185,54,7.45,24,0.0 +22185,5,21.35,15,0.0 +22185,9,97,12,0.0 +22185,62,49.3,35,0.0 +22185,57,19.5,34,0.0 +22185,7,30,48,0.0 +22185,72,34.8,46,0.0 +22185,55,24,43,0.0 +22185,49,20,49,0.0 +22185,44,19.45,10,0.0 +22185,17,39,11,0.0 +22185,71,21.5,8,0.0 +22185,59,55,15,0.0 +22185,73,15,4,0.0 +22185,34,14,20,0.0 +22185,76,18,28,0.0 +22185,23,9,27,0.0 +22185,18,62.5,19,0.0 +22185,45,9.5,46,0.0 +22185,1,18,12,0.0 +22185,74,10,40,0.0 +22185,22,21,46,0.0 +22185,43,46,21,0.0 +22185,52,7,8,0.0 +22185,77,13,40,0.0 +22185,30,25.89,35,0.0 +22185,67,14,5,0.0 +22185,51,53,8,0.0 +22185,20,81,12,0.0 +22185,12,38,4,0.0 +22185,28,45.6,8,0.0 +22185,68,12.5,4,0.0 +22185,14,23.25,6,0.0 +22185,58,13.25,3,0.0 +22185,4,22,2,0.0 +22185,48,12.75,20,0.0 +22185,16,17.45,47,0.0 +22186,22,21,24,0.0 +22186,62,49.3,19,0.0 +22186,43,46,2,0.0 +22186,4,22,42,0.0 +22186,70,15,41,0.0 +22186,56,38,41,0.0 +22186,2,19,48,0.0 +22186,31,12.5,30,0.0 +22186,28,45.6,36,0.0 +22186,53,32.8,24,0.0 +22186,26,31.23,6,0.0 +22186,35,18,42,0.0 +22186,63,43.9,20,0.0 +22186,25,14,22,0.0 +22186,45,9.5,37,0.0 +22186,32,32,35,0.0 +22186,12,38,32,0.0 +22186,29,123.79,7,0.0 +22187,63,43.9,33,0.0 +22187,28,45.6,20,0.0 +22187,49,20,50,0.0 +22187,26,31.23,38,0.0 +22187,73,15,20,0.0 +22187,34,14,4,0.0 +22187,8,40,37,0.0 +22187,68,12.5,49,0.0 +22187,5,21.35,50,0.0 +22187,69,36,28,0.0 +22187,24,4.5,4,0.0 +22187,59,55,29,0.0 +22187,19,9.2,22,0.0 +22187,37,26,4,0.0 +22187,52,7,3,0.0 +22187,43,46,22,0.0 +22187,51,53,17,0.0 +22187,13,6,3,0.0 +22187,44,19.45,12,0.0 +22187,74,10,15,0.0 +22187,12,38,5,0.0 +22187,72,34.8,27,0.0 +22187,1,18,27,0.0 +22187,67,14,40,0.0 +22187,70,15,36,0.0 +22187,45,9.5,20,0.0 +22187,53,32.8,33,0.0 +22187,7,30,32,0.0 +22187,25,14,22,0.0 +22187,61,28.5,39,0.0 +22187,66,17,27,0.0 +22187,65,21.05,4,0.0 +22187,22,21,23,0.0 +22187,47,9.5,43,0.0 +22187,33,2.5,21,0.0 +22187,64,33.25,49,0.0 +22187,46,12,47,0.0 +22187,56,38,21,0.0 +22187,2,19,48,0.0 +22188,7,30,8,0.0 +22188,76,18,30,0.0 +22188,55,24,46,0.0 +22188,38,263.5,2,0.0 +22188,16,17.45,19,0.0 +22188,63,43.9,43,0.0 +22188,56,38,49,0.0 +22188,53,32.8,50,0.0 +22188,71,21.5,36,0.0 +22188,1,18,13,0.0 +22188,20,81,17,0.0 +22188,59,55,33,0.0 +22188,10,31,1,0.0 +22188,45,9.5,38,0.0 +22188,13,6,21,0.0 +22188,48,12.75,3,0.0 +22188,50,16.25,24,0.0 +22188,18,62.5,17,0.0 +22188,62,49.3,30,0.0 +22188,31,12.5,6,0.0 +22188,12,38,15,0.0 +22189,13,6,3,0.0 +22189,76,18,47,0.0 +22189,45,9.5,33,0.0 +22189,8,40,29,0.0 +22189,14,23.25,32,0.0 +22189,69,36,26,0.0 +22189,16,17.45,50,0.0 +22189,17,39,9,0.0 +22189,77,13,20,0.0 +22189,63,43.9,3,0.0 +22189,62,49.3,7,0.0 +22189,23,9,43,0.0 +22189,58,13.25,41,0.0 +22189,27,43.9,27,0.0 +22189,67,14,17,0.0 +22189,1,18,3,0.0 +22189,36,19,26,0.0 +22189,64,33.25,17,0.0 +22189,44,19.45,49,0.0 +22189,39,18,13,0.0 +22189,73,15,20,0.0 +22189,53,32.8,39,0.0 +22189,26,31.23,13,0.0 +22189,60,34,36,0.0 +22189,10,31,35,0.0 +22189,32,32,40,0.0 +22189,54,7.45,17,0.0 +22189,5,21.35,28,0.0 +22189,3,10,13,0.0 +22189,19,9.2,34,0.0 +22189,34,14,20,0.0 +22189,66,17,16,0.0 +22189,18,62.5,25,0.0 +22189,74,10,4,0.0 +22189,25,14,46,0.0 +22189,47,9.5,50,0.0 +22189,72,34.8,39,0.0 +22189,55,24,34,0.0 +22189,70,15,13,0.0 +22189,33,2.5,33,0.0 +22189,21,10,16,0.0 +22189,31,12.5,25,0.0 +22189,61,28.5,43,0.0 +22189,4,22,20,0.0 +22190,23,9,44,0.0 +22190,12,38,31,0.0 +22190,17,39,4,0.0 +22190,64,33.25,27,0.0 +22190,8,40,27,0.0 +22190,22,21,50,0.0 +22190,57,19.5,47,0.0 +22190,45,9.5,30,0.0 +22190,48,12.75,16,0.0 +22190,53,32.8,35,0.0 +22190,68,12.5,7,0.0 +22190,73,15,34,0.0 +22190,6,25,49,0.0 +22190,11,21,45,0.0 +22190,28,45.6,44,0.0 +22190,19,9.2,21,0.0 +22190,65,21.05,23,0.0 +22190,41,9.65,21,0.0 +22191,8,40,14,0.0 +22191,4,22,19,0.0 +22191,55,24,2,0.0 +22191,66,17,20,0.0 +22191,31,12.5,1,0.0 +22191,51,53,48,0.0 +22191,44,19.45,47,0.0 +22191,13,6,36,0.0 +22191,62,49.3,4,0.0 +22191,71,21.5,40,0.0 +22191,19,9.2,4,0.0 +22191,59,55,8,0.0 +22191,69,36,17,0.0 +22191,46,12,16,0.0 +22191,57,19.5,35,0.0 +22191,22,21,17,0.0 +22191,49,20,18,0.0 +22191,54,7.45,34,0.0 +22191,37,26,14,0.0 +22191,30,25.89,15,0.0 +22191,65,21.05,2,0.0 +22191,45,9.5,31,0.0 +22191,43,46,22,0.0 +22191,7,30,35,0.0 +22191,10,31,19,0.0 +22191,25,14,44,0.0 +22191,58,13.25,45,0.0 +22191,16,17.45,13,0.0 +22191,34,14,15,0.0 +22191,18,62.5,11,0.0 +22191,41,9.65,8,0.0 +22191,39,18,6,0.0 +22191,38,263.5,30,0.0 +22191,76,18,22,0.0 +22191,6,25,11,0.0 +22191,33,2.5,8,0.0 +22191,40,18.4,43,0.0 +22191,61,28.5,32,0.0 +22191,2,19,11,0.0 +22191,9,97,26,0.0 +22191,36,19,19,0.0 +22191,42,14,4,0.0 +22191,23,9,15,0.0 +22191,26,31.23,44,0.0 +22191,48,12.75,37,0.0 +22191,73,15,46,0.0 +22191,50,16.25,16,0.0 +22191,67,14,25,0.0 +22191,60,34,39,0.0 +22191,74,10,21,0.0 +22191,20,81,33,0.0 +22191,27,43.9,48,0.0 +22191,35,18,33,0.0 +22191,47,9.5,21,0.0 +22191,24,4.5,43,0.0 +22191,64,33.25,49,0.0 +22191,70,15,38,0.0 +22191,28,45.6,12,0.0 +22192,39,18,47,0.0 +22192,68,12.5,39,0.0 +22192,3,10,45,0.0 +22192,2,19,18,0.0 +22192,38,263.5,38,0.0 +22192,72,34.8,2,0.0 +22192,69,36,3,0.0 +22192,19,9.2,49,0.0 +22192,42,14,7,0.0 +22192,76,18,46,0.0 +22192,36,19,28,0.0 +22192,54,7.45,4,0.0 +22192,66,17,32,0.0 +22192,5,21.35,41,0.0 +22192,24,4.5,20,0.0 +22192,67,14,47,0.0 +22193,10,31,10,0.0 +22193,46,12,9,0.0 +22193,77,13,2,0.0 +22193,34,14,35,0.0 +22193,52,7,39,0.0 +22193,44,19.45,35,0.0 +22193,65,21.05,6,0.0 +22193,8,40,1,0.0 +22193,71,21.5,3,0.0 +22194,40,18.4,33,0.0 +22194,6,25,3,0.0 +22194,70,15,44,0.0 +22194,47,9.5,37,0.0 +22194,14,23.25,30,0.0 +22194,72,34.8,27,0.0 +22194,28,45.6,37,0.0 +22194,48,12.75,13,0.0 +22194,53,32.8,3,0.0 +22194,75,7.75,22,0.0 +22194,57,19.5,5,0.0 +22194,77,13,35,0.0 +22194,67,14,7,0.0 +22194,31,12.5,6,0.0 +22194,41,9.65,13,0.0 +22194,45,9.5,47,0.0 +22194,59,55,11,0.0 +22194,42,14,18,0.0 +22194,13,6,29,0.0 +22194,35,18,36,0.0 +22194,39,18,38,0.0 +22194,3,10,49,0.0 +22194,36,19,33,0.0 +22194,25,14,44,0.0 +22194,11,21,42,0.0 +22194,12,38,49,0.0 +22194,73,15,21,0.0 +22194,30,25.89,41,0.0 +22194,46,12,6,0.0 +22194,10,31,16,0.0 +22194,34,14,50,0.0 +22194,62,49.3,17,0.0 +22194,60,34,12,0.0 +22194,27,43.9,12,0.0 +22194,50,16.25,45,0.0 +22194,54,7.45,27,0.0 +22194,8,40,50,0.0 +22194,23,9,2,0.0 +22194,61,28.5,48,0.0 +22194,15,15.5,42,0.0 +22194,17,39,35,0.0 +22194,56,38,21,0.0 +22194,52,7,37,0.0 +22194,18,62.5,9,0.0 +22194,5,21.35,26,0.0 +22194,22,21,38,0.0 +22195,8,40,34,0.0 +22195,66,17,25,0.0 +22195,44,19.45,34,0.0 +22195,9,97,40,0.0 +22195,62,49.3,31,0.0 +22195,42,14,15,0.0 +22195,56,38,27,0.0 +22195,48,12.75,13,0.0 +22195,30,25.89,32,0.0 +22195,61,28.5,28,0.0 +22195,10,31,50,0.0 +22195,13,6,26,0.0 +22195,2,19,39,0.0 +22196,53,32.8,15,0.0 +22196,22,21,30,0.0 +22196,48,12.75,12,0.0 +22196,41,9.65,6,0.0 +22196,1,18,10,0.0 +22196,12,38,16,0.0 +22196,55,24,18,0.0 +22196,68,12.5,41,0.0 +22196,62,49.3,30,0.0 +22196,39,18,14,0.0 +22196,26,31.23,48,0.0 +22196,29,123.79,47,0.0 +22196,6,25,4,0.0 +22196,42,14,39,0.0 +22196,24,4.5,18,0.0 +22196,49,20,45,0.0 +22196,57,19.5,44,0.0 +22196,61,28.5,25,0.0 +22196,56,38,45,0.0 +22196,35,18,9,0.0 +22196,2,19,8,0.0 +22196,33,2.5,8,0.0 +22196,73,15,45,0.0 +22196,28,45.6,5,0.0 +22196,19,9.2,38,0.0 +22196,17,39,26,0.0 +22196,44,19.45,24,0.0 +22196,20,81,48,0.0 +22196,4,22,23,0.0 +22196,58,13.25,8,0.0 +22196,3,10,12,0.0 +22196,14,23.25,29,0.0 +22196,74,10,45,0.0 +22196,7,30,21,0.0 +22196,43,46,37,0.0 +22196,38,263.5,26,0.0 +22196,76,18,23,0.0 +22196,59,55,40,0.0 +22196,77,13,21,0.0 +22196,11,21,19,0.0 +22196,40,18.4,25,0.0 +22196,52,7,48,0.0 +22196,37,26,45,0.0 +22196,50,16.25,30,0.0 +22196,69,36,9,0.0 +22196,45,9.5,48,0.0 +22196,46,12,27,0.0 +22196,18,62.5,6,0.0 +22196,15,15.5,42,0.0 +22196,34,14,20,0.0 +22196,72,34.8,30,0.0 +22196,47,9.5,2,0.0 +22196,64,33.25,39,0.0 +22196,8,40,23,0.0 +22196,70,15,30,0.0 +22196,25,14,38,0.0 +22196,71,21.5,21,0.0 +22196,60,34,38,0.0 +22196,21,10,3,0.0 +22196,65,21.05,30,0.0 +22196,27,43.9,29,0.0 +22196,30,25.89,19,0.0 +22197,18,62.5,39,0.0 +22197,57,19.5,3,0.0 +22197,26,31.23,25,0.0 +22197,44,19.45,27,0.0 +22197,37,26,39,0.0 +22197,55,24,46,0.0 +22197,42,14,17,0.0 +22197,51,53,25,0.0 +22197,59,55,43,0.0 +22197,17,39,17,0.0 +22198,21,10,1,0.0 +22198,59,55,41,0.0 +22198,7,30,9,0.0 +22198,16,17.45,20,0.0 +22199,4,22,50,0.0 +22199,51,53,39,0.0 +22199,21,10,29,0.0 +22199,12,38,13,0.0 +22199,18,62.5,41,0.0 +22199,25,14,23,0.0 +22199,9,97,12,0.0 +22199,28,45.6,34,0.0 +22199,59,55,37,0.0 +22199,38,263.5,3,0.0 +22199,23,9,44,0.0 +22199,75,7.75,24,0.0 +22199,1,18,14,0.0 +22199,29,123.79,39,0.0 +22199,66,17,3,0.0 +22199,55,24,24,0.0 +22199,47,9.5,45,0.0 +22199,11,21,39,0.0 +22199,71,21.5,13,0.0 +22199,13,6,38,0.0 +22199,27,43.9,1,0.0 +22199,16,17.45,8,0.0 +22199,56,38,20,0.0 +22199,2,19,36,0.0 +22199,36,19,21,0.0 +22199,30,25.89,43,0.0 +22199,54,7.45,12,0.0 +22199,72,34.8,15,0.0 +22199,37,26,14,0.0 +22199,8,40,33,0.0 +22199,6,25,24,0.0 +22199,49,20,25,0.0 +22199,67,14,4,0.0 +22199,61,28.5,5,0.0 +22199,39,18,40,0.0 +22199,62,49.3,18,0.0 +22199,3,10,42,0.0 +22199,64,33.25,7,0.0 +22199,57,19.5,6,0.0 +22199,40,18.4,16,0.0 +22199,33,2.5,40,0.0 +22199,42,14,43,0.0 +22199,24,4.5,14,0.0 +22199,35,18,46,0.0 +22199,45,9.5,49,0.0 +22199,69,36,26,0.0 +22199,7,30,44,0.0 +22199,68,12.5,18,0.0 +22199,14,23.25,33,0.0 +22199,46,12,33,0.0 +22199,48,12.75,48,0.0 +22199,41,9.65,47,0.0 +22199,17,39,45,0.0 +22199,65,21.05,48,0.0 +22199,22,21,41,0.0 +22199,58,13.25,14,0.0 +22199,74,10,1,0.0 +22199,5,21.35,12,0.0 +22199,50,16.25,37,0.0 +22200,72,34.8,4,0.0 +22200,46,12,1,0.0 +22200,43,46,31,0.0 +22200,54,7.45,28,0.0 +22200,40,18.4,37,0.0 +22200,4,22,38,0.0 +22200,60,34,11,0.0 +22200,73,15,37,0.0 +22200,58,13.25,37,0.0 +22200,20,81,20,0.0 +22200,15,15.5,2,0.0 +22200,19,9.2,38,0.0 +22200,33,2.5,1,0.0 +22200,70,15,22,0.0 +22200,3,10,2,0.0 +22200,16,17.45,35,0.0 +22200,48,12.75,9,0.0 +22200,7,30,4,0.0 +22200,67,14,19,0.0 +22200,36,19,38,0.0 +22200,64,33.25,47,0.0 +22200,62,49.3,10,0.0 +22200,44,19.45,15,0.0 +22200,30,25.89,21,0.0 +22200,68,12.5,17,0.0 +22200,75,7.75,43,0.0 +22200,63,43.9,22,0.0 +22200,28,45.6,4,0.0 +22200,34,14,11,0.0 +22200,2,19,22,0.0 +22200,71,21.5,17,0.0 +22200,59,55,30,0.0 +22200,11,21,36,0.0 +22200,8,40,49,0.0 +22200,37,26,18,0.0 +22200,17,39,26,0.0 +22200,13,6,34,0.0 +22200,69,36,44,0.0 +22200,26,31.23,46,0.0 +22200,51,53,26,0.0 +22200,45,9.5,20,0.0 +22200,35,18,43,0.0 +22200,52,7,9,0.0 +22200,29,123.79,9,0.0 +22200,38,263.5,16,0.0 +22200,14,23.25,47,0.0 +22200,21,10,2,0.0 +22200,9,97,35,0.0 +22200,65,21.05,18,0.0 +22200,42,14,12,0.0 +22200,76,18,18,0.0 +22200,12,38,23,0.0 +22200,41,9.65,31,0.0 +22200,77,13,4,0.0 +22200,39,18,48,0.0 +22200,18,62.5,49,0.0 +22200,22,21,1,0.0 +22200,23,9,1,0.0 +22200,10,31,7,0.0 +22200,24,4.5,2,0.0 +22200,49,20,44,0.0 +22200,55,24,18,0.0 +22200,74,10,18,0.0 +22200,57,19.5,48,0.0 +22200,27,43.9,39,0.0 +22200,66,17,45,0.0 +22200,31,12.5,33,0.0 +22200,56,38,26,0.0 +22200,6,25,34,0.0 +22200,32,32,30,0.0 +22201,19,9.2,45,0.0 +22201,69,36,34,0.0 +22201,58,13.25,37,0.0 +22201,34,14,7,0.0 +22201,51,53,42,0.0 +22201,71,21.5,34,0.0 +22201,20,81,34,0.0 +22201,40,18.4,44,0.0 +22201,5,21.35,10,0.0 +22201,15,15.5,28,0.0 +22201,22,21,50,0.0 +22201,46,12,15,0.0 +22201,47,9.5,12,0.0 +22202,31,12.5,42,0.0 +22202,41,9.65,34,0.0 +22203,40,18.4,2,0.0 +22203,75,7.75,29,0.0 +22203,70,15,30,0.0 +22203,43,46,21,0.0 +22203,22,21,23,0.0 +22203,15,15.5,36,0.0 +22203,47,9.5,20,0.0 +22203,10,31,8,0.0 +22203,8,40,9,0.0 +22203,44,19.45,21,0.0 +22203,4,22,23,0.0 +22203,69,36,44,0.0 +22203,26,31.23,38,0.0 +22203,21,10,46,0.0 +22203,53,32.8,27,0.0 +22203,5,21.35,42,0.0 +22203,65,21.05,8,0.0 +22203,31,12.5,3,0.0 +22203,62,49.3,6,0.0 +22203,60,34,10,0.0 +22203,12,38,14,0.0 +22203,55,24,25,0.0 +22203,17,39,30,0.0 +22203,52,7,30,0.0 +22203,13,6,14,0.0 +22203,45,9.5,43,0.0 +22203,59,55,27,0.0 +22203,7,30,41,0.0 +22203,25,14,33,0.0 +22203,73,15,20,0.0 +22203,48,12.75,11,0.0 +22203,27,43.9,33,0.0 +22203,63,43.9,29,0.0 +22203,35,18,13,0.0 +22203,37,26,26,0.0 +22203,14,23.25,1,0.0 +22203,33,2.5,33,0.0 +22203,66,17,43,0.0 +22203,6,25,37,0.0 +22204,9,97,28,0.0 +22204,4,22,50,0.0 +22204,22,21,39,0.0 +22204,7,30,29,0.0 +22204,66,17,2,0.0 +22204,60,34,45,0.0 +22204,16,17.45,3,0.0 +22204,19,9.2,19,0.0 +22204,14,23.25,9,0.0 +22204,74,10,24,0.0 +22204,5,21.35,18,0.0 +22204,29,123.79,12,0.0 +22204,62,49.3,20,0.0 +22204,3,10,7,0.0 +22204,55,24,29,0.0 +22204,23,9,2,0.0 +22204,63,43.9,39,0.0 +22204,68,12.5,14,0.0 +22204,52,7,45,0.0 +22204,35,18,37,0.0 +22204,77,13,3,0.0 +22204,47,9.5,6,0.0 +22204,15,15.5,11,0.0 +22204,13,6,29,0.0 +22204,10,31,39,0.0 +22204,25,14,13,0.0 +22204,46,12,29,0.0 +22204,17,39,29,0.0 +22204,56,38,25,0.0 +22204,50,16.25,25,0.0 +22204,31,12.5,23,0.0 +22204,8,40,29,0.0 +22204,32,32,11,0.0 +22204,48,12.75,50,0.0 +22204,28,45.6,28,0.0 +22204,54,7.45,33,0.0 +22204,41,9.65,16,0.0 +22204,30,25.89,3,0.0 +22204,42,14,28,0.0 +22204,59,55,31,0.0 +22204,70,15,11,0.0 +22204,33,2.5,10,0.0 +22204,69,36,34,0.0 +22204,6,25,29,0.0 +22204,20,81,25,0.0 +22204,73,15,1,0.0 +22204,51,53,35,0.0 +22204,53,32.8,24,0.0 +22204,43,46,1,0.0 +22204,18,62.5,12,0.0 +22204,12,38,17,0.0 +22204,34,14,46,0.0 +22204,71,21.5,2,0.0 +22204,36,19,32,0.0 +22204,72,34.8,47,0.0 +22204,38,263.5,29,0.0 +22204,27,43.9,28,0.0 +22204,39,18,35,0.0 +22204,57,19.5,4,0.0 +22204,2,19,31,0.0 +22204,58,13.25,25,0.0 +22204,49,20,46,0.0 +22204,45,9.5,23,0.0 +22204,37,26,34,0.0 +22204,65,21.05,50,0.0 +22204,26,31.23,8,0.0 +22204,21,10,19,0.0 +22204,24,4.5,7,0.0 +22204,76,18,28,0.0 +22204,11,21,42,0.0 +22205,75,7.75,3,0.0 +22205,38,263.5,34,0.0 +22205,59,55,25,0.0 +22205,31,12.5,6,0.0 +22205,44,19.45,45,0.0 +22205,73,15,39,0.0 +22205,9,97,18,0.0 +22205,24,4.5,10,0.0 +22205,11,21,17,0.0 +22205,49,20,44,0.0 +22205,8,40,7,0.0 +22205,66,17,42,0.0 +22205,23,9,25,0.0 +22205,53,32.8,8,0.0 +22205,2,19,20,0.0 +22205,14,23.25,8,0.0 +22205,46,12,27,0.0 +22205,10,31,3,0.0 +22205,32,32,22,0.0 +22205,22,21,2,0.0 +22205,69,36,25,0.0 +22205,29,123.79,2,0.0 +22205,47,9.5,11,0.0 +22205,50,16.25,36,0.0 +22205,68,12.5,44,0.0 +22205,17,39,18,0.0 +22205,67,14,28,0.0 +22205,57,19.5,19,0.0 +22205,54,7.45,11,0.0 +22205,76,18,25,0.0 +22205,71,21.5,37,0.0 +22205,62,49.3,41,0.0 +22205,39,18,36,0.0 +22205,6,25,19,0.0 +22205,56,38,29,0.0 +22205,55,24,46,0.0 +22205,41,9.65,30,0.0 +22205,16,17.45,2,0.0 +22205,40,18.4,24,0.0 +22205,36,19,16,0.0 +22205,74,10,37,0.0 +22205,20,81,20,0.0 +22205,42,14,19,0.0 +22205,52,7,40,0.0 +22205,5,21.35,5,0.0 +22205,77,13,28,0.0 +22205,61,28.5,39,0.0 +22205,43,46,50,0.0 +22205,4,22,42,0.0 +22205,15,15.5,8,0.0 +22205,19,9.2,41,0.0 +22205,18,62.5,48,0.0 +22205,25,14,47,0.0 +22205,64,33.25,31,0.0 +22205,72,34.8,12,0.0 +22205,3,10,15,0.0 +22205,27,43.9,50,0.0 +22205,60,34,43,0.0 +22205,1,18,24,0.0 +22205,33,2.5,26,0.0 +22205,45,9.5,50,0.0 +22205,34,14,33,0.0 +22205,37,26,25,0.0 +22205,26,31.23,34,0.0 +22205,28,45.6,13,0.0 +22205,30,25.89,39,0.0 +22205,48,12.75,12,0.0 +22205,21,10,25,0.0 +22205,70,15,20,0.0 +22205,13,6,18,0.0 +22205,65,21.05,4,0.0 +22205,51,53,14,0.0 +22205,7,30,44,0.0 +22205,12,38,47,0.0 +22205,63,43.9,8,0.0 +22206,69,36,41,0.0 +22206,36,19,29,0.0 +22206,23,9,42,0.0 +22206,55,24,20,0.0 +22206,59,55,19,0.0 +22206,18,62.5,11,0.0 +22206,45,9.5,38,0.0 +22206,65,21.05,2,0.0 +22206,12,38,9,0.0 +22206,32,32,22,0.0 +22206,5,21.35,3,0.0 +22206,57,19.5,17,0.0 +22206,11,21,41,0.0 +22206,54,7.45,8,0.0 +22206,6,25,14,0.0 +22206,48,12.75,38,0.0 +22206,13,6,37,0.0 +22206,4,22,36,0.0 +22206,46,12,49,0.0 +22206,41,9.65,40,0.0 +22206,66,17,6,0.0 +22206,44,19.45,16,0.0 +22206,71,21.5,34,0.0 +22206,15,15.5,45,0.0 +22206,34,14,8,0.0 +22206,53,32.8,46,0.0 +22206,58,13.25,31,0.0 +22206,33,2.5,40,0.0 +22206,27,43.9,26,0.0 +22206,37,26,49,0.0 +22206,16,17.45,41,0.0 +22206,42,14,49,0.0 +22206,74,10,49,0.0 +22206,20,81,46,0.0 +22206,25,14,7,0.0 +22206,67,14,48,0.0 +22206,30,25.89,2,0.0 +22206,51,53,1,0.0 +22206,68,12.5,23,0.0 +22206,21,10,50,0.0 +22206,40,18.4,34,0.0 +22206,49,20,42,0.0 +22206,70,15,31,0.0 +22206,3,10,40,0.0 +22206,26,31.23,37,0.0 +22206,77,13,47,0.0 +22206,76,18,34,0.0 +22206,38,263.5,50,0.0 +22206,62,49.3,42,0.0 +22206,14,23.25,48,0.0 +22206,72,34.8,28,0.0 +22206,43,46,24,0.0 +22206,17,39,13,0.0 +22206,60,34,19,0.0 +22207,6,25,11,0.0 +22207,15,15.5,20,0.0 +22207,69,36,42,0.0 +22207,1,18,24,0.0 +22207,63,43.9,12,0.0 +22207,7,30,37,0.0 +22207,17,39,35,0.0 +22207,42,14,44,0.0 +22207,62,49.3,48,0.0 +22207,47,9.5,40,0.0 +22207,35,18,3,0.0 +22207,31,12.5,24,0.0 +22207,41,9.65,45,0.0 +22207,43,46,10,0.0 +22207,13,6,37,0.0 +22207,46,12,50,0.0 +22207,44,19.45,22,0.0 +22207,51,53,2,0.0 +22207,27,43.9,40,0.0 +22207,58,13.25,2,0.0 +22207,55,24,12,0.0 +22207,59,55,12,0.0 +22207,70,15,1,0.0 +22207,8,40,45,0.0 +22207,73,15,35,0.0 +22207,32,32,46,0.0 +22207,49,20,33,0.0 +22207,23,9,28,0.0 +22207,3,10,27,0.0 +22207,11,21,29,0.0 +22207,28,45.6,47,0.0 +22207,54,7.45,17,0.0 +22207,2,19,32,0.0 +22207,14,23.25,23,0.0 +22207,53,32.8,41,0.0 +22207,12,38,3,0.0 +22207,37,26,47,0.0 +22207,50,16.25,8,0.0 +22207,48,12.75,38,0.0 +22207,19,9.2,34,0.0 +22207,57,19.5,39,0.0 +22207,66,17,11,0.0 +22207,45,9.5,40,0.0 +22207,71,21.5,44,0.0 +22207,60,34,45,0.0 +22207,56,38,37,0.0 +22207,72,34.8,42,0.0 +22207,9,97,50,0.0 +22207,20,81,17,0.0 +22207,52,7,21,0.0 +22207,40,18.4,42,0.0 +22207,68,12.5,49,0.0 +22207,24,4.5,8,0.0 +22207,67,14,28,0.0 +22207,10,31,32,0.0 +22207,4,22,13,0.0 +22207,75,7.75,14,0.0 +22208,10,31,46,0.0 +22208,20,81,8,0.0 +22208,64,33.25,6,0.0 +22208,76,18,6,0.0 +22208,63,43.9,43,0.0 +22208,55,24,33,0.0 +22209,25,14,8,0.0 +22209,20,81,22,0.0 +22209,61,28.5,12,0.0 +22209,7,30,49,0.0 +22209,64,33.25,12,0.0 +22209,33,2.5,1,0.0 +22209,13,6,42,0.0 +22209,34,14,8,0.0 +22209,63,43.9,19,0.0 +22209,15,15.5,38,0.0 +22209,48,12.75,36,0.0 +22209,5,21.35,49,0.0 +22209,42,14,1,0.0 +22209,16,17.45,36,0.0 +22209,36,19,20,0.0 +22209,51,53,35,0.0 +22209,11,21,2,0.0 +22209,10,31,2,0.0 +22209,70,15,34,0.0 +22209,40,18.4,8,0.0 +22209,53,32.8,18,0.0 +22209,41,9.65,4,0.0 +22209,39,18,45,0.0 +22209,26,31.23,24,0.0 +22209,44,19.45,19,0.0 +22210,59,55,39,0.0 +22210,16,17.45,43,0.0 +22210,18,62.5,23,0.0 +22210,20,81,28,0.0 +22210,61,28.5,3,0.0 +22210,76,18,24,0.0 +22210,68,12.5,2,0.0 +22210,5,21.35,7,0.0 +22210,35,18,8,0.0 +22210,25,14,1,0.0 +22210,7,30,48,0.0 +22210,60,34,27,0.0 +22210,48,12.75,33,0.0 +22210,12,38,12,0.0 +22210,27,43.9,36,0.0 +22210,77,13,9,0.0 +22210,74,10,47,0.0 +22210,28,45.6,37,0.0 +22211,44,19.45,13,0.0 +22211,15,15.5,44,0.0 +22211,32,32,37,0.0 +22211,65,21.05,19,0.0 +22211,55,24,10,0.0 +22211,40,18.4,32,0.0 +22211,45,9.5,48,0.0 +22211,62,49.3,30,0.0 +22211,53,32.8,2,0.0 +22211,58,13.25,42,0.0 +22211,9,97,4,0.0 +22211,37,26,21,0.0 +22211,36,19,34,0.0 +22211,38,263.5,3,0.0 +22211,13,6,37,0.0 +22211,73,15,37,0.0 +22211,42,14,32,0.0 +22211,18,62.5,24,0.0 +22211,68,12.5,32,0.0 +22211,54,7.45,3,0.0 +22211,67,14,10,0.0 +22211,17,39,37,0.0 +22211,76,18,30,0.0 +22211,33,2.5,32,0.0 +22211,7,30,25,0.0 +22212,76,18,33,0.0 +22212,70,15,49,0.0 +22212,64,33.25,19,0.0 +22212,18,62.5,28,0.0 +22212,33,2.5,45,0.0 +22212,77,13,3,0.0 +22212,6,25,42,0.0 +22212,20,81,48,0.0 +22212,11,21,6,0.0 +22212,22,21,48,0.0 +22212,62,49.3,11,0.0 +22212,4,22,49,0.0 +22212,23,9,6,0.0 +22212,36,19,9,0.0 +22212,25,14,33,0.0 +22212,26,31.23,31,0.0 +22212,49,20,39,0.0 +22212,17,39,32,0.0 +22212,66,17,5,0.0 +22212,29,123.79,1,0.0 +22212,59,55,11,0.0 +22212,32,32,18,0.0 +22212,12,38,38,0.0 +22212,50,16.25,46,0.0 +22212,14,23.25,42,0.0 +22212,39,18,21,0.0 +22212,28,45.6,36,0.0 +22212,24,4.5,6,0.0 +22212,69,36,5,0.0 +22212,40,18.4,4,0.0 +22212,2,19,20,0.0 +22212,21,10,9,0.0 +22212,13,6,37,0.0 +22212,54,7.45,12,0.0 +22212,71,21.5,13,0.0 +22212,57,19.5,29,0.0 +22212,46,12,16,0.0 +22212,52,7,31,0.0 +22212,35,18,31,0.0 +22212,67,14,46,0.0 +22212,60,34,31,0.0 +22212,43,46,20,0.0 +22212,56,38,25,0.0 +22212,41,9.65,29,0.0 +22212,48,12.75,34,0.0 +22212,68,12.5,32,0.0 +22212,9,97,21,0.0 +22212,65,21.05,15,0.0 +22212,19,9.2,20,0.0 +22212,73,15,36,0.0 +22212,47,9.5,15,0.0 +22212,55,24,27,0.0 +22212,7,30,2,0.0 +22212,1,18,31,0.0 +22212,37,26,9,0.0 +22212,63,43.9,15,0.0 +22212,10,31,33,0.0 +22212,75,7.75,29,0.0 +22212,5,21.35,15,0.0 +22212,44,19.45,33,0.0 +22212,27,43.9,11,0.0 +22212,3,10,23,0.0 +22212,61,28.5,12,0.0 +22212,8,40,33,0.0 +22212,58,13.25,34,0.0 +22212,34,14,47,0.0 +22212,31,12.5,15,0.0 +22212,74,10,7,0.0 +22213,36,19,31,0.0 +22213,74,10,14,0.0 +22213,41,9.65,3,0.0 +22213,46,12,48,0.0 +22213,76,18,33,0.0 +22213,34,14,1,0.0 +22213,10,31,9,0.0 +22213,33,2.5,45,0.0 +22213,58,13.25,10,0.0 +22213,45,9.5,17,0.0 +22213,69,36,30,0.0 +22214,68,12.5,37,0.0 +22214,46,12,47,0.0 +22214,60,34,11,0.0 +22214,45,9.5,4,0.0 +22214,9,97,4,0.0 +22214,4,22,13,0.0 +22214,47,9.5,48,0.0 +22214,15,15.5,4,0.0 +22214,8,40,25,0.0 +22214,64,33.25,37,0.0 +22214,62,49.3,46,0.0 +22214,39,18,30,0.0 +22214,26,31.23,35,0.0 +22214,32,32,39,0.0 +22214,59,55,7,0.0 +22214,1,18,50,0.0 +22214,53,32.8,40,0.0 +22214,10,31,46,0.0 +22214,12,38,2,0.0 +22214,16,17.45,21,0.0 +22214,36,19,45,0.0 +22214,3,10,12,0.0 +22214,41,9.65,23,0.0 +22214,76,18,5,0.0 +22214,70,15,38,0.0 +22214,34,14,20,0.0 +22214,50,16.25,40,0.0 +22214,23,9,22,0.0 +22214,44,19.45,29,0.0 +22214,37,26,18,0.0 +22214,66,17,50,0.0 +22214,25,14,19,0.0 +22214,54,7.45,44,0.0 +22214,35,18,19,0.0 +22214,19,9.2,38,0.0 +22214,71,21.5,12,0.0 +22214,2,19,30,0.0 +22214,55,24,6,0.0 +22214,63,43.9,47,0.0 +22214,75,7.75,43,0.0 +22214,18,62.5,18,0.0 +22214,20,81,38,0.0 +22214,38,263.5,37,0.0 +22214,22,21,1,0.0 +22214,21,10,48,0.0 +22214,52,7,34,0.0 +22214,28,45.6,30,0.0 +22214,14,23.25,3,0.0 +22214,31,12.5,41,0.0 +22214,27,43.9,22,0.0 +22214,73,15,47,0.0 +22214,11,21,32,0.0 +22214,48,12.75,23,0.0 +22214,7,30,50,0.0 +22214,61,28.5,27,0.0 +22214,6,25,33,0.0 +22214,33,2.5,48,0.0 +22214,67,14,2,0.0 +22214,65,21.05,7,0.0 +22214,74,10,28,0.0 +22214,57,19.5,46,0.0 +22214,51,53,15,0.0 +22214,49,20,25,0.0 +22214,17,39,41,0.0 +22214,69,36,21,0.0 +22214,40,18.4,6,0.0 +22214,30,25.89,10,0.0 +22214,58,13.25,43,0.0 +22214,43,46,47,0.0 +22215,13,6,40,0.0 +22215,51,53,11,0.0 +22215,67,14,26,0.0 +22215,22,21,41,0.0 +22215,43,46,35,0.0 +22215,4,22,2,0.0 +22215,7,30,4,0.0 +22215,36,19,46,0.0 +22215,5,21.35,29,0.0 +22215,62,49.3,4,0.0 +22215,11,21,25,0.0 +22215,54,7.45,36,0.0 +22216,71,21.5,4,0.0 +22216,56,38,33,0.0 +22216,38,263.5,1,0.0 +22216,62,49.3,34,0.0 +22216,49,20,17,0.0 +22216,17,39,5,0.0 +22216,35,18,37,0.0 +22216,74,10,27,0.0 +22216,31,12.5,35,0.0 +22216,70,15,25,0.0 +22216,19,9.2,12,0.0 +22216,43,46,43,0.0 +22216,40,18.4,23,0.0 +22216,22,21,21,0.0 +22216,41,9.65,31,0.0 +22216,69,36,30,0.0 +22216,47,9.5,1,0.0 +22216,16,17.45,26,0.0 +22216,2,19,8,0.0 +22216,75,7.75,5,0.0 +22216,65,21.05,11,0.0 +22216,51,53,17,0.0 +22216,15,15.5,44,0.0 +22216,68,12.5,9,0.0 +22216,21,10,46,0.0 +22216,77,13,15,0.0 +22217,73,15,47,0.0 +22217,55,24,35,0.0 +22217,26,31.23,1,0.0 +22217,46,12,49,0.0 +22217,24,4.5,27,0.0 +22217,39,18,3,0.0 +22217,64,33.25,42,0.0 +22217,47,9.5,13,0.0 +22217,12,38,5,0.0 +22217,41,9.65,46,0.0 +22217,3,10,45,0.0 +22217,56,38,5,0.0 +22217,25,14,23,0.0 +22217,13,6,22,0.0 +22217,21,10,23,0.0 +22217,18,62.5,33,0.0 +22217,52,7,38,0.0 +22217,58,13.25,22,0.0 +22217,7,30,23,0.0 +22217,40,18.4,19,0.0 +22217,77,13,9,0.0 +22217,71,21.5,14,0.0 +22217,57,19.5,10,0.0 +22217,15,15.5,33,0.0 +22217,17,39,2,0.0 +22217,72,34.8,24,0.0 +22217,35,18,11,0.0 +22217,76,18,28,0.0 +22217,1,18,20,0.0 +22217,60,34,26,0.0 +22217,6,25,4,0.0 +22217,44,19.45,12,0.0 +22217,54,7.45,44,0.0 +22217,14,23.25,30,0.0 +22217,11,21,2,0.0 +22217,30,25.89,34,0.0 +22217,49,20,9,0.0 +22217,66,17,15,0.0 +22217,51,53,42,0.0 +22217,32,32,46,0.0 +22217,67,14,8,0.0 +22217,70,15,5,0.0 +22217,45,9.5,30,0.0 +22217,74,10,25,0.0 +22217,5,21.35,16,0.0 +22217,4,22,42,0.0 +22217,50,16.25,39,0.0 +22217,2,19,31,0.0 +22217,19,9.2,17,0.0 +22217,62,49.3,34,0.0 +22217,37,26,28,0.0 +22217,68,12.5,29,0.0 +22217,48,12.75,41,0.0 +22217,61,28.5,11,0.0 +22217,23,9,28,0.0 +22217,8,40,46,0.0 +22217,38,263.5,4,0.0 +22217,9,97,39,0.0 +22217,33,2.5,37,0.0 +22217,29,123.79,15,0.0 +22217,10,31,36,0.0 +22217,22,21,30,0.0 +22218,33,2.5,44,0.0 +22218,9,97,28,0.0 +22218,49,20,3,0.0 +22218,27,43.9,19,0.0 +22218,75,7.75,23,0.0 +22218,22,21,41,0.0 +22218,29,123.79,44,0.0 +22218,59,55,39,0.0 +22218,55,24,10,0.0 +22218,44,19.45,48,0.0 +22218,24,4.5,8,0.0 +22218,35,18,6,0.0 +22218,51,53,11,0.0 +22218,50,16.25,13,0.0 +22218,62,49.3,49,0.0 +22218,8,40,42,0.0 +22218,52,7,47,0.0 +22218,32,32,43,0.0 +22218,28,45.6,29,0.0 +22218,15,15.5,46,0.0 +22218,53,32.8,19,0.0 +22218,4,22,25,0.0 +22218,25,14,39,0.0 +22218,77,13,43,0.0 +22218,68,12.5,3,0.0 +22218,65,21.05,6,0.0 +22218,61,28.5,48,0.0 +22218,36,19,19,0.0 +22218,45,9.5,3,0.0 +22218,43,46,44,0.0 +22218,7,30,41,0.0 +22218,69,36,10,0.0 +22218,37,26,50,0.0 +22218,39,18,15,0.0 +22218,2,19,13,0.0 +22218,66,17,24,0.0 +22218,64,33.25,5,0.0 +22218,76,18,11,0.0 +22219,25,14,17,0.0 +22219,69,36,3,0.0 +22219,51,53,14,0.0 +22219,60,34,14,0.0 +22219,13,6,45,0.0 +22219,68,12.5,40,0.0 +22219,8,40,1,0.0 +22220,47,9.5,12,0.0 +22220,77,13,20,0.0 +22220,3,10,23,0.0 +22220,8,40,27,0.0 +22220,41,9.65,50,0.0 +22220,61,28.5,28,0.0 +22220,42,14,39,0.0 +22220,29,123.79,8,0.0 +22220,66,17,48,0.0 +22220,46,12,44,0.0 +22220,34,14,39,0.0 +22220,58,13.25,36,0.0 +22220,65,21.05,3,0.0 +22220,49,20,43,0.0 +22220,76,18,19,0.0 +22220,30,25.89,36,0.0 +22220,53,32.8,46,0.0 +22220,17,39,3,0.0 +22220,20,81,4,0.0 +22220,68,12.5,33,0.0 +22220,54,7.45,22,0.0 +22220,2,19,4,0.0 +22220,62,49.3,22,0.0 +22220,59,55,4,0.0 +22220,72,34.8,27,0.0 +22220,48,12.75,1,0.0 +22220,33,2.5,11,0.0 +22220,1,18,26,0.0 +22220,12,38,7,0.0 +22220,18,62.5,27,0.0 +22220,16,17.45,46,0.0 +22220,74,10,35,0.0 +22220,14,23.25,13,0.0 +22220,32,32,29,0.0 +22220,63,43.9,21,0.0 +22220,56,38,45,0.0 +22220,15,15.5,1,0.0 +22220,10,31,49,0.0 +22220,35,18,25,0.0 +22220,43,46,27,0.0 +22220,70,15,7,0.0 +22220,67,14,25,0.0 +22220,64,33.25,27,0.0 +22220,13,6,41,0.0 +22220,7,30,38,0.0 +22220,28,45.6,49,0.0 +22220,6,25,33,0.0 +22220,50,16.25,40,0.0 +22220,73,15,21,0.0 +22220,37,26,11,0.0 +22220,75,7.75,12,0.0 +22220,44,19.45,49,0.0 +22220,4,22,11,0.0 +22220,22,21,48,0.0 +22220,11,21,29,0.0 +22220,24,4.5,8,0.0 +22220,31,12.5,28,0.0 +22220,57,19.5,6,0.0 +22220,5,21.35,21,0.0 +22220,60,34,21,0.0 +22220,19,9.2,38,0.0 +22220,40,18.4,48,0.0 +22220,25,14,30,0.0 +22220,71,21.5,8,0.0 +22221,14,23.25,14,0.0 +22221,62,49.3,20,0.0 +22221,21,10,12,0.0 +22221,9,97,23,0.0 +22222,56,38,5,0.0 +22222,48,12.75,3,0.0 +22222,50,16.25,31,0.0 +22222,18,62.5,34,0.0 +22222,28,45.6,41,0.0 +22223,24,4.5,34,0.0 +22223,66,17,39,0.0 +22223,54,7.45,9,0.0 +22223,29,123.79,50,0.0 +22223,3,10,13,0.0 +22223,4,22,11,0.0 +22223,55,24,21,0.0 +22223,16,17.45,14,0.0 +22223,46,12,34,0.0 +22223,62,49.3,14,0.0 +22223,51,53,45,0.0 +22223,15,15.5,19,0.0 +22223,1,18,5,0.0 +22223,48,12.75,50,0.0 +22223,11,21,5,0.0 +22223,39,18,31,0.0 +22223,45,9.5,31,0.0 +22223,44,19.45,46,0.0 +22223,68,12.5,38,0.0 +22223,42,14,21,0.0 +22223,13,6,2,0.0 +22223,18,62.5,29,0.0 +22224,51,53,47,0.0 +22224,9,97,11,0.0 +22224,20,81,3,0.0 +22224,59,55,38,0.0 +22224,18,62.5,4,0.0 +22224,46,12,31,0.0 +22224,14,23.25,34,0.0 +22224,4,22,48,0.0 +22224,33,2.5,31,0.0 +22224,55,24,12,0.0 +22224,13,6,36,0.0 +22224,67,14,16,0.0 +22224,35,18,7,0.0 +22224,28,45.6,24,0.0 +22224,41,9.65,45,0.0 +22224,38,263.5,37,0.0 +22224,49,20,32,0.0 +22224,54,7.45,20,0.0 +22224,52,7,45,0.0 +22224,34,14,30,0.0 +22224,7,30,20,0.0 +22224,19,9.2,9,0.0 +22224,39,18,46,0.0 +22224,29,123.79,12,0.0 +22224,23,9,47,0.0 +22224,70,15,29,0.0 +22224,3,10,8,0.0 +22224,53,32.8,50,0.0 +22224,72,34.8,14,0.0 +22224,61,28.5,8,0.0 +22224,12,38,3,0.0 +22224,22,21,30,0.0 +22224,62,49.3,36,0.0 +22224,47,9.5,7,0.0 +22224,21,10,22,0.0 +22224,75,7.75,17,0.0 +22224,37,26,23,0.0 +22224,43,46,48,0.0 +22224,65,21.05,50,0.0 +22224,1,18,48,0.0 +22224,73,15,8,0.0 +22224,5,21.35,2,0.0 +22224,60,34,14,0.0 +22224,16,17.45,48,0.0 +22224,2,19,44,0.0 +22224,30,25.89,23,0.0 +22224,48,12.75,12,0.0 +22224,68,12.5,14,0.0 +22224,25,14,12,0.0 +22224,24,4.5,12,0.0 +22224,66,17,41,0.0 +22224,50,16.25,50,0.0 +22224,44,19.45,15,0.0 +22224,27,43.9,7,0.0 +22224,63,43.9,21,0.0 +22224,69,36,15,0.0 +22224,11,21,29,0.0 +22224,10,31,45,0.0 +22224,76,18,23,0.0 +22224,32,32,47,0.0 +22224,15,15.5,29,0.0 +22224,31,12.5,24,0.0 +22224,42,14,32,0.0 +22224,77,13,48,0.0 +22224,40,18.4,40,0.0 +22225,59,55,36,0.0 +22225,48,12.75,43,0.0 +22225,32,32,2,0.0 +22225,8,40,3,0.0 +22225,63,43.9,21,0.0 +22225,39,18,46,0.0 +22225,4,22,27,0.0 +22225,21,10,34,0.0 +22225,46,12,45,0.0 +22225,20,81,14,0.0 +22225,71,21.5,16,0.0 +22225,36,19,23,0.0 +22225,29,123.79,43,0.0 +22225,26,31.23,18,0.0 +22225,28,45.6,37,0.0 +22225,62,49.3,50,0.0 +22225,10,31,5,0.0 +22225,40,18.4,32,0.0 +22225,17,39,7,0.0 +22225,23,9,40,0.0 +22225,44,19.45,2,0.0 +22225,25,14,43,0.0 +22225,61,28.5,10,0.0 +22225,2,19,12,0.0 +22225,65,21.05,30,0.0 +22225,3,10,27,0.0 +22225,22,21,26,0.0 +22225,69,36,20,0.0 +22225,14,23.25,9,0.0 +22225,5,21.35,7,0.0 +22225,73,15,9,0.0 +22226,23,9,23,0.0 +22226,22,21,17,0.0 +22226,29,123.79,36,0.0 +22226,11,21,46,0.0 +22226,52,7,7,0.0 +22226,69,36,5,0.0 +22226,65,21.05,4,0.0 +22226,16,17.45,14,0.0 +22226,57,19.5,28,0.0 +22226,20,81,49,0.0 +22226,67,14,47,0.0 +22226,64,33.25,7,0.0 +22226,36,19,5,0.0 +22226,37,26,3,0.0 +22227,13,6,32,0.0 +22227,54,7.45,35,0.0 +22227,4,22,19,0.0 +22227,41,9.65,13,0.0 +22227,37,26,35,0.0 +22227,33,2.5,4,0.0 +22227,61,28.5,10,0.0 +22227,20,81,9,0.0 +22227,52,7,17,0.0 +22227,16,17.45,34,0.0 +22227,18,62.5,37,0.0 +22227,11,21,37,0.0 +22227,68,12.5,16,0.0 +22227,34,14,27,0.0 +22227,43,46,35,0.0 +22227,10,31,28,0.0 +22227,24,4.5,43,0.0 +22227,46,12,38,0.0 +22227,49,20,20,0.0 +22227,25,14,40,0.0 +22227,2,19,35,0.0 +22227,40,18.4,1,0.0 +22227,31,12.5,22,0.0 +22227,38,263.5,11,0.0 +22227,66,17,20,0.0 +22227,12,38,30,0.0 +22227,29,123.79,39,0.0 +22227,70,15,21,0.0 +22227,39,18,2,0.0 +22227,48,12.75,24,0.0 +22227,55,24,6,0.0 +22227,74,10,10,0.0 +22227,7,30,29,0.0 +22227,72,34.8,9,0.0 +22227,30,25.89,3,0.0 +22227,69,36,43,0.0 +22227,71,21.5,42,0.0 +22227,32,32,47,0.0 +22227,27,43.9,33,0.0 +22227,36,19,35,0.0 +22227,73,15,43,0.0 +22227,60,34,32,0.0 +22227,59,55,5,0.0 +22227,51,53,25,0.0 +22227,62,49.3,16,0.0 +22227,77,13,35,0.0 +22227,19,9.2,29,0.0 +22227,14,23.25,5,0.0 +22227,64,33.25,25,0.0 +22227,67,14,38,0.0 +22227,6,25,50,0.0 +22227,21,10,43,0.0 +22227,44,19.45,41,0.0 +22227,35,18,44,0.0 +22227,22,21,25,0.0 +22227,57,19.5,2,0.0 +22227,65,21.05,8,0.0 +22227,76,18,37,0.0 +22227,17,39,12,0.0 +22227,1,18,34,0.0 +22227,50,16.25,39,0.0 +22227,42,14,6,0.0 +22227,47,9.5,13,0.0 +22227,8,40,3,0.0 +22227,63,43.9,40,0.0 +22227,15,15.5,46,0.0 +22227,53,32.8,35,0.0 +22227,56,38,22,0.0 +22227,26,31.23,3,0.0 +22227,45,9.5,20,0.0 +22227,9,97,14,0.0 +22228,31,12.5,46,0.0 +22228,1,18,37,0.0 +22228,63,43.9,14,0.0 +22228,40,18.4,18,0.0 +22228,71,21.5,42,0.0 +22228,29,123.79,45,0.0 +22228,73,15,29,0.0 +22228,2,19,31,0.0 +22228,76,18,12,0.0 +22228,72,34.8,19,0.0 +22228,45,9.5,34,0.0 +22228,48,12.75,3,0.0 +22228,60,34,12,0.0 +22228,8,40,23,0.0 +22228,43,46,37,0.0 +22228,7,30,44,0.0 +22228,38,263.5,20,0.0 +22228,66,17,15,0.0 +22228,39,18,26,0.0 +22228,27,43.9,47,0.0 +22228,44,19.45,27,0.0 +22228,26,31.23,27,0.0 +22228,70,15,22,0.0 +22228,41,9.65,50,0.0 +22228,64,33.25,1,0.0 +22228,56,38,12,0.0 +22228,22,21,24,0.0 +22228,21,10,41,0.0 +22228,68,12.5,43,0.0 +22228,59,55,16,0.0 +22228,75,7.75,1,0.0 +22228,35,18,29,0.0 +22228,77,13,5,0.0 +22228,16,17.45,29,0.0 +22228,74,10,15,0.0 +22228,25,14,16,0.0 +22228,13,6,35,0.0 +22228,9,97,39,0.0 +22228,19,9.2,18,0.0 +22228,28,45.6,20,0.0 +22228,42,14,38,0.0 +22228,65,21.05,28,0.0 +22228,67,14,34,0.0 +22228,61,28.5,34,0.0 +22228,5,21.35,8,0.0 +22228,14,23.25,40,0.0 +22228,58,13.25,18,0.0 +22228,57,19.5,21,0.0 +22228,46,12,28,0.0 +22228,4,22,13,0.0 +22228,3,10,41,0.0 +22228,15,15.5,10,0.0 +22228,49,20,32,0.0 +22228,17,39,50,0.0 +22228,33,2.5,2,0.0 +22228,34,14,16,0.0 +22228,23,9,41,0.0 +22228,6,25,46,0.0 +22228,10,31,43,0.0 +22228,47,9.5,40,0.0 +22228,30,25.89,45,0.0 +22229,8,40,5,0.0 +22229,4,22,17,0.0 +22229,60,34,32,0.0 +22229,54,7.45,15,0.0 +22229,74,10,7,0.0 +22229,68,12.5,2,0.0 +22229,52,7,18,0.0 +22229,29,123.79,16,0.0 +22229,20,81,30,0.0 +22229,35,18,10,0.0 +22229,25,14,2,0.0 +22229,21,10,16,0.0 +22229,41,9.65,43,0.0 +22229,15,15.5,26,0.0 +22229,28,45.6,45,0.0 +22229,64,33.25,42,0.0 +22229,38,263.5,38,0.0 +22229,55,24,12,0.0 +22229,59,55,33,0.0 +22229,7,30,3,0.0 +22229,62,49.3,19,0.0 +22229,66,17,21,0.0 +22229,1,18,40,0.0 +22229,58,13.25,22,0.0 +22229,56,38,13,0.0 +22229,67,14,45,0.0 +22229,57,19.5,23,0.0 +22229,3,10,26,0.0 +22229,33,2.5,23,0.0 +22229,49,20,16,0.0 +22229,47,9.5,41,0.0 +22229,45,9.5,5,0.0 +22229,30,25.89,50,0.0 +22229,39,18,7,0.0 +22229,24,4.5,26,0.0 +22229,70,15,30,0.0 +22229,13,6,36,0.0 +22229,48,12.75,3,0.0 +22229,23,9,49,0.0 +22229,42,14,1,0.0 +22229,26,31.23,46,0.0 +22229,51,53,41,0.0 +22229,27,43.9,2,0.0 +22229,76,18,48,0.0 +22229,34,14,29,0.0 +22229,11,21,6,0.0 +22230,50,16.25,39,0.0 +22230,60,34,5,0.0 +22230,76,18,47,0.0 +22230,43,46,6,0.0 +22230,19,9.2,50,0.0 +22230,61,28.5,11,0.0 +22230,15,15.5,48,0.0 +22230,49,20,12,0.0 +22230,73,15,46,0.0 +22230,11,21,39,0.0 +22230,70,15,13,0.0 +22230,24,4.5,41,0.0 +22230,9,97,33,0.0 +22230,55,24,6,0.0 +22230,72,34.8,19,0.0 +22230,58,13.25,22,0.0 +22230,37,26,20,0.0 +22230,46,12,22,0.0 +22230,8,40,22,0.0 +22230,32,32,13,0.0 +22230,38,263.5,36,0.0 +22230,40,18.4,3,0.0 +22230,25,14,24,0.0 +22230,45,9.5,41,0.0 +22230,69,36,30,0.0 +22230,44,19.45,20,0.0 +22230,36,19,3,0.0 +22230,53,32.8,40,0.0 +22230,35,18,21,0.0 +22230,59,55,38,0.0 +22230,18,62.5,43,0.0 +22230,29,123.79,9,0.0 +22230,16,17.45,33,0.0 +22230,20,81,4,0.0 +22230,26,31.23,13,0.0 +22230,66,17,2,0.0 +22230,56,38,5,0.0 +22230,62,49.3,9,0.0 +22230,75,7.75,22,0.0 +22230,67,14,47,0.0 +22230,13,6,3,0.0 +22230,1,18,20,0.0 +22230,48,12.75,18,0.0 +22230,42,14,29,0.0 +22230,3,10,31,0.0 +22230,74,10,30,0.0 +22230,51,53,9,0.0 +22230,68,12.5,32,0.0 +22230,12,38,42,0.0 +22230,27,43.9,7,0.0 +22230,4,22,42,0.0 +22230,52,7,22,0.0 +22230,2,19,28,0.0 +22230,54,7.45,9,0.0 +22230,41,9.65,3,0.0 +22230,39,18,1,0.0 +22231,66,17,20,0.0 +22231,44,19.45,17,0.0 +22231,31,12.5,4,0.0 +22231,76,18,11,0.0 +22231,62,49.3,31,0.0 +22231,34,14,8,0.0 +22231,64,33.25,42,0.0 +22231,46,12,9,0.0 +22231,15,15.5,31,0.0 +22231,61,28.5,29,0.0 +22231,67,14,33,0.0 +22231,43,46,43,0.0 +22231,32,32,30,0.0 +22231,20,81,12,0.0 +22231,45,9.5,41,0.0 +22231,37,26,9,0.0 +22231,47,9.5,38,0.0 +22231,40,18.4,24,0.0 +22231,35,18,45,0.0 +22231,56,38,47,0.0 +22231,14,23.25,28,0.0 +22231,50,16.25,8,0.0 +22231,73,15,4,0.0 +22232,77,13,42,0.0 +22232,71,21.5,2,0.0 +22232,69,36,33,0.0 +22232,13,6,4,0.0 +22232,57,19.5,2,0.0 +22232,17,39,39,0.0 +22232,24,4.5,37,0.0 +22232,38,263.5,32,0.0 +22232,35,18,6,0.0 +22232,49,20,8,0.0 +22232,18,62.5,32,0.0 +22232,41,9.65,18,0.0 +22232,32,32,18,0.0 +22232,19,9.2,17,0.0 +22232,43,46,46,0.0 +22232,22,21,1,0.0 +22232,34,14,16,0.0 +22232,3,10,19,0.0 +22232,58,13.25,25,0.0 +22232,75,7.75,28,0.0 +22232,44,19.45,43,0.0 +22232,20,81,28,0.0 +22232,14,23.25,10,0.0 +22232,62,49.3,15,0.0 +22232,21,10,31,0.0 +22232,74,10,4,0.0 +22232,52,7,47,0.0 +22232,39,18,9,0.0 +22232,67,14,8,0.0 +22232,29,123.79,20,0.0 +22232,63,43.9,20,0.0 +22233,63,43.9,15,0.0 +22233,1,18,33,0.0 +22233,61,28.5,3,0.0 +22233,60,34,44,0.0 +22233,30,25.89,41,0.0 +22233,16,17.45,3,0.0 +22233,12,38,41,0.0 +22233,40,18.4,40,0.0 +22233,74,10,50,0.0 +22233,67,14,45,0.0 +22233,71,21.5,31,0.0 +22233,66,17,5,0.0 +22233,14,23.25,40,0.0 +22233,41,9.65,36,0.0 +22233,38,263.5,12,0.0 +22233,35,18,36,0.0 +22233,72,34.8,36,0.0 +22233,68,12.5,11,0.0 +22233,43,46,39,0.0 +22233,75,7.75,24,0.0 +22233,49,20,7,0.0 +22233,9,97,22,0.0 +22233,11,21,39,0.0 +22233,5,21.35,43,0.0 +22233,29,123.79,1,0.0 +22233,33,2.5,44,0.0 +22233,36,19,47,0.0 +22233,56,38,24,0.0 +22233,19,9.2,3,0.0 +22233,59,55,43,0.0 +22233,64,33.25,42,0.0 +22233,58,13.25,13,0.0 +22233,54,7.45,42,0.0 +22233,45,9.5,16,0.0 +22233,52,7,8,0.0 +22233,13,6,39,0.0 +22233,39,18,13,0.0 +22233,26,31.23,20,0.0 +22233,70,15,6,0.0 +22233,15,15.5,34,0.0 +22233,57,19.5,46,0.0 +22233,73,15,41,0.0 +22233,42,14,39,0.0 +22233,62,49.3,30,0.0 +22233,6,25,15,0.0 +22233,23,9,29,0.0 +22233,8,40,3,0.0 +22233,32,32,17,0.0 +22233,10,31,10,0.0 +22233,51,53,49,0.0 +22233,25,14,16,0.0 +22233,76,18,17,0.0 +22233,37,26,37,0.0 +22233,18,62.5,49,0.0 +22233,17,39,38,0.0 +22233,47,9.5,2,0.0 +22233,77,13,26,0.0 +22233,55,24,33,0.0 +22233,27,43.9,27,0.0 +22233,3,10,31,0.0 +22233,21,10,40,0.0 +22233,7,30,20,0.0 +22233,65,21.05,28,0.0 +22233,53,32.8,50,0.0 +22233,69,36,42,0.0 +22233,24,4.5,31,0.0 +22233,50,16.25,9,0.0 +22233,22,21,40,0.0 +22233,46,12,25,0.0 +22233,20,81,12,0.0 +22233,44,19.45,27,0.0 +22233,48,12.75,36,0.0 +22233,31,12.5,16,0.0 +22233,28,45.6,16,0.0 +22233,4,22,43,0.0 +22234,18,62.5,25,0.0 +22234,43,46,13,0.0 +22234,39,18,29,0.0 +22234,16,17.45,13,0.0 +22234,30,25.89,34,0.0 +22234,19,9.2,26,0.0 +22234,48,12.75,3,0.0 +22234,27,43.9,35,0.0 +22234,40,18.4,35,0.0 +22234,52,7,2,0.0 +22234,72,34.8,45,0.0 +22234,11,21,50,0.0 +22234,3,10,32,0.0 +22234,37,26,10,0.0 +22234,12,38,22,0.0 +22234,28,45.6,14,0.0 +22234,47,9.5,42,0.0 +22234,58,13.25,43,0.0 +22234,29,123.79,50,0.0 +22234,31,12.5,38,0.0 +22235,40,18.4,12,0.0 +22235,14,23.25,37,0.0 +22235,62,49.3,4,0.0 +22235,23,9,36,0.0 +22235,16,17.45,46,0.0 +22235,26,31.23,4,0.0 +22235,42,14,44,0.0 +22235,57,19.5,8,0.0 +22235,4,22,22,0.0 +22235,2,19,28,0.0 +22235,74,10,38,0.0 +22235,35,18,37,0.0 +22235,60,34,24,0.0 +22235,24,4.5,50,0.0 +22235,46,12,9,0.0 +22235,59,55,12,0.0 +22235,11,21,26,0.0 +22235,21,10,47,0.0 +22235,5,21.35,19,0.0 +22235,49,20,14,0.0 +22235,45,9.5,31,0.0 +22235,12,38,13,0.0 +22235,72,34.8,4,0.0 +22235,53,32.8,22,0.0 +22235,70,15,13,0.0 +22235,31,12.5,25,0.0 +22235,58,13.25,16,0.0 +22235,9,97,15,0.0 +22235,6,25,40,0.0 +22235,73,15,11,0.0 +22235,17,39,3,0.0 +22235,29,123.79,50,0.0 +22235,8,40,35,0.0 +22235,13,6,30,0.0 +22235,75,7.75,33,0.0 +22235,30,25.89,18,0.0 +22235,66,17,25,0.0 +22235,3,10,22,0.0 +22235,19,9.2,34,0.0 +22235,18,62.5,22,0.0 +22235,64,33.25,10,0.0 +22235,32,32,19,0.0 +22235,22,21,20,0.0 +22235,63,43.9,12,0.0 +22235,47,9.5,11,0.0 +22235,43,46,16,0.0 +22235,38,263.5,6,0.0 +22235,54,7.45,24,0.0 +22235,71,21.5,32,0.0 +22235,37,26,38,0.0 +22235,20,81,37,0.0 +22235,34,14,12,0.0 +22235,10,31,18,0.0 +22236,32,32,12,0.0 +22236,34,14,3,0.0 +22236,60,34,43,0.0 +22236,33,2.5,48,0.0 +22236,50,16.25,15,0.0 +22236,20,81,38,0.0 +22236,55,24,45,0.0 +22236,2,19,23,0.0 +22236,54,7.45,16,0.0 +22236,22,21,44,0.0 +22236,72,34.8,33,0.0 +22236,9,97,1,0.0 +22236,14,23.25,6,0.0 +22236,58,13.25,21,0.0 +22236,28,45.6,24,0.0 +22236,73,15,37,0.0 +22236,42,14,37,0.0 +22236,3,10,35,0.0 +22236,7,30,26,0.0 +22236,41,9.65,20,0.0 +22236,37,26,9,0.0 +22236,67,14,4,0.0 +22236,29,123.79,43,0.0 +22237,10,31,31,0.0 +22237,35,18,37,0.0 +22237,4,22,36,0.0 +22237,72,34.8,42,0.0 +22237,49,20,17,0.0 +22237,70,15,37,0.0 +22237,53,32.8,38,0.0 +22237,18,62.5,17,0.0 +22237,32,32,32,0.0 +22237,36,19,16,0.0 +22237,51,53,47,0.0 +22237,73,15,6,0.0 +22237,65,21.05,15,0.0 +22237,6,25,2,0.0 +22237,69,36,6,0.0 +22237,39,18,32,0.0 +22237,16,17.45,35,0.0 +22237,20,81,49,0.0 +22237,58,13.25,5,0.0 +22237,68,12.5,36,0.0 +22237,74,10,29,0.0 +22237,22,21,16,0.0 +22237,25,14,10,0.0 +22237,37,26,22,0.0 +22237,46,12,24,0.0 +22237,50,16.25,31,0.0 +22237,29,123.79,39,0.0 +22237,76,18,3,0.0 +22237,77,13,50,0.0 +22237,42,14,40,0.0 +22237,59,55,28,0.0 +22237,61,28.5,13,0.0 +22237,75,7.75,46,0.0 +22237,17,39,13,0.0 +22237,66,17,43,0.0 +22237,33,2.5,30,0.0 +22237,15,15.5,14,0.0 +22237,23,9,42,0.0 +22237,55,24,45,0.0 +22237,27,43.9,38,0.0 +22237,47,9.5,4,0.0 +22237,45,9.5,7,0.0 +22237,28,45.6,32,0.0 +22237,19,9.2,6,0.0 +22237,34,14,18,0.0 +22237,30,25.89,6,0.0 +22237,2,19,13,0.0 +22237,71,21.5,12,0.0 +22237,56,38,44,0.0 +22237,52,7,8,0.0 +22237,12,38,23,0.0 +22237,62,49.3,19,0.0 +22237,21,10,42,0.0 +22238,77,13,14,0.0 +22238,71,21.5,16,0.0 +22238,9,97,43,0.0 +22238,1,18,41,0.0 +22238,4,22,9,0.0 +22238,73,15,39,0.0 +22238,49,20,13,0.0 +22239,39,18,2,0.0 +22239,10,31,50,0.0 +22239,20,81,37,0.0 +22239,72,34.8,19,0.0 +22239,15,15.5,41,0.0 +22239,76,18,45,0.0 +22239,77,13,21,0.0 +22239,38,263.5,35,0.0 +22239,48,12.75,18,0.0 +22239,67,14,12,0.0 +22239,19,9.2,15,0.0 +22239,46,12,42,0.0 +22239,56,38,6,0.0 +22239,8,40,32,0.0 +22239,57,19.5,9,0.0 +22239,1,18,20,0.0 +22239,24,4.5,12,0.0 +22239,9,97,6,0.0 +22239,18,62.5,17,0.0 +22239,11,21,47,0.0 +22239,60,34,30,0.0 +22239,54,7.45,19,0.0 +22239,7,30,49,0.0 +22239,30,25.89,21,0.0 +22239,62,49.3,19,0.0 +22239,75,7.75,11,0.0 +22239,32,32,17,0.0 +22239,27,43.9,20,0.0 +22239,13,6,46,0.0 +22239,3,10,33,0.0 +22239,37,26,45,0.0 +22239,68,12.5,14,0.0 +22239,4,22,46,0.0 +22239,35,18,48,0.0 +22239,41,9.65,45,0.0 +22239,66,17,2,0.0 +22239,51,53,8,0.0 +22239,5,21.35,39,0.0 +22239,22,21,40,0.0 +22239,2,19,29,0.0 +22239,21,10,11,0.0 +22239,42,14,27,0.0 +22239,65,21.05,13,0.0 +22239,33,2.5,40,0.0 +22239,36,19,20,0.0 +22239,23,9,13,0.0 +22239,47,9.5,44,0.0 +22239,29,123.79,42,0.0 +22239,63,43.9,43,0.0 +22239,59,55,27,0.0 +22239,34,14,19,0.0 +22239,31,12.5,49,0.0 +22239,44,19.45,36,0.0 +22239,14,23.25,3,0.0 +22239,70,15,33,0.0 +22239,6,25,28,0.0 +22239,40,18.4,7,0.0 +22239,12,38,28,0.0 +22239,28,45.6,4,0.0 +22240,64,33.25,50,0.0 +22240,25,14,35,0.0 +22240,40,18.4,45,0.0 +22240,3,10,22,0.0 +22240,14,23.25,49,0.0 +22240,11,21,2,0.0 +22240,72,34.8,39,0.0 +22240,50,16.25,32,0.0 +22240,6,25,37,0.0 +22240,1,18,7,0.0 +22240,34,14,28,0.0 +22240,71,21.5,47,0.0 +22240,17,39,38,0.0 +22240,77,13,18,0.0 +22240,21,10,1,0.0 +22240,37,26,48,0.0 +22240,49,20,25,0.0 +22240,20,81,2,0.0 +22240,45,9.5,14,0.0 +22240,23,9,25,0.0 +22240,39,18,9,0.0 +22240,65,21.05,1,0.0 +22240,55,24,11,0.0 +22240,19,9.2,11,0.0 +22240,22,21,35,0.0 +22240,5,21.35,15,0.0 +22240,61,28.5,30,0.0 +22240,31,12.5,44,0.0 +22240,18,62.5,2,0.0 +22240,51,53,2,0.0 +22240,63,43.9,31,0.0 +22240,44,19.45,46,0.0 +22240,27,43.9,2,0.0 +22240,15,15.5,43,0.0 +22240,2,19,9,0.0 +22240,73,15,47,0.0 +22240,33,2.5,25,0.0 +22240,7,30,13,0.0 +22240,43,46,22,0.0 +22240,69,36,44,0.0 +22240,32,32,48,0.0 +22240,70,15,37,0.0 +22240,56,38,37,0.0 +22240,24,4.5,46,0.0 +22240,8,40,15,0.0 +22240,35,18,2,0.0 +22240,75,7.75,25,0.0 +22240,9,97,5,0.0 +22240,10,31,44,0.0 +22240,38,263.5,17,0.0 +22240,28,45.6,15,0.0 +22240,4,22,15,0.0 +22240,29,123.79,4,0.0 +22240,76,18,49,0.0 +22241,34,14,50,0.0 +22241,58,13.25,7,0.0 +22241,66,17,45,0.0 +22241,9,97,34,0.0 +22241,44,19.45,27,0.0 +22241,61,28.5,50,0.0 +22241,20,81,7,0.0 +22241,13,6,49,0.0 +22241,35,18,19,0.0 +22241,25,14,38,0.0 +22241,28,45.6,16,0.0 +22241,54,7.45,37,0.0 +22241,10,31,15,0.0 +22241,6,25,3,0.0 +22241,2,19,18,0.0 +22242,60,34,3,0.0 +22242,9,97,5,0.0 +22242,65,21.05,38,0.0 +22242,31,12.5,8,0.0 +22242,15,15.5,1,0.0 +22242,67,14,11,0.0 +22242,21,10,26,0.0 +22242,73,15,15,0.0 +22242,30,25.89,3,0.0 +22242,55,24,16,0.0 +22242,25,14,6,0.0 +22242,42,14,13,0.0 +22242,44,19.45,27,0.0 +22242,72,34.8,5,0.0 +22242,53,32.8,14,0.0 +22242,35,18,13,0.0 +22242,59,55,12,0.0 +22242,12,38,43,0.0 +22242,10,31,12,0.0 +22242,28,45.6,46,0.0 +22242,4,22,21,0.0 +22242,6,25,2,0.0 +22242,38,263.5,20,0.0 +22242,17,39,40,0.0 +22242,19,9.2,13,0.0 +22242,66,17,32,0.0 +22242,51,53,14,0.0 +22242,70,15,43,0.0 +22242,41,9.65,2,0.0 +22242,39,18,5,0.0 +22242,40,18.4,20,0.0 +22242,74,10,33,0.0 +22242,54,7.45,48,0.0 +22242,58,13.25,4,0.0 +22242,62,49.3,23,0.0 +22242,3,10,21,0.0 +22242,8,40,40,0.0 +22242,1,18,50,0.0 +22242,7,30,43,0.0 +22242,22,21,7,0.0 +22242,36,19,18,0.0 +22242,43,46,17,0.0 +22242,16,17.45,17,0.0 +22242,5,21.35,9,0.0 +22242,29,123.79,34,0.0 +22242,57,19.5,27,0.0 +22242,2,19,42,0.0 +22242,63,43.9,18,0.0 +22242,75,7.75,50,0.0 +22242,37,26,20,0.0 +22242,46,12,12,0.0 +22242,47,9.5,14,0.0 +22242,52,7,33,0.0 +22242,76,18,19,0.0 +22242,49,20,19,0.0 +22242,27,43.9,20,0.0 +22242,61,28.5,26,0.0 +22242,56,38,20,0.0 +22242,34,14,39,0.0 +22242,26,31.23,15,0.0 +22242,14,23.25,9,0.0 +22242,64,33.25,34,0.0 +22242,20,81,16,0.0 +22242,32,32,46,0.0 +22242,68,12.5,24,0.0 +22242,69,36,23,0.0 +22242,45,9.5,25,0.0 +22242,23,9,14,0.0 +22243,60,34,33,0.0 +22243,23,9,15,0.0 +22243,33,2.5,22,0.0 +22243,10,31,44,0.0 +22243,19,9.2,6,0.0 +22243,6,25,48,0.0 +22243,31,12.5,21,0.0 +22243,47,9.5,37,0.0 +22243,65,21.05,1,0.0 +22243,36,19,30,0.0 +22243,57,19.5,3,0.0 +22243,64,33.25,43,0.0 +22243,45,9.5,50,0.0 +22243,69,36,35,0.0 +22243,39,18,13,0.0 +22243,59,55,11,0.0 +22243,42,14,15,0.0 +22243,53,32.8,43,0.0 +22244,72,34.8,6,0.0 +22244,1,18,48,0.0 +22244,52,7,39,0.0 +22244,41,9.65,34,0.0 +22244,27,43.9,20,0.0 +22244,55,24,23,0.0 +22244,61,28.5,45,0.0 +22244,51,53,11,0.0 +22244,53,32.8,50,0.0 +22244,17,39,16,0.0 +22244,57,19.5,46,0.0 +22244,45,9.5,28,0.0 +22244,29,123.79,3,0.0 +22244,21,10,2,0.0 +22244,31,12.5,13,0.0 +22244,58,13.25,25,0.0 +22244,44,19.45,44,0.0 +22244,37,26,13,0.0 +22244,43,46,20,0.0 +22244,46,12,22,0.0 +22244,68,12.5,13,0.0 +22244,64,33.25,31,0.0 +22244,14,23.25,25,0.0 +22244,30,25.89,7,0.0 +22244,39,18,10,0.0 +22244,13,6,49,0.0 +22244,76,18,30,0.0 +22244,63,43.9,5,0.0 +22244,19,9.2,9,0.0 +22244,69,36,9,0.0 +22244,42,14,21,0.0 +22244,20,81,22,0.0 +22244,33,2.5,35,0.0 +22244,48,12.75,11,0.0 +22244,73,15,29,0.0 +22244,40,18.4,7,0.0 +22244,38,263.5,39,0.0 +22244,24,4.5,28,0.0 +22244,10,31,47,0.0 +22244,35,18,37,0.0 +22244,65,21.05,2,0.0 +22244,74,10,9,0.0 +22244,6,25,17,0.0 +22244,49,20,28,0.0 +22244,5,21.35,15,0.0 +22244,23,9,29,0.0 +22244,7,30,34,0.0 +22244,15,15.5,4,0.0 +22244,62,49.3,47,0.0 +22244,16,17.45,1,0.0 +22244,47,9.5,6,0.0 +22244,11,21,29,0.0 +22244,56,38,23,0.0 +22244,26,31.23,42,0.0 +22244,67,14,11,0.0 +22244,3,10,33,0.0 +22244,66,17,43,0.0 +22244,71,21.5,12,0.0 +22245,22,21,24,0.0 +22245,5,21.35,37,0.0 +22245,33,2.5,40,0.0 +22246,76,18,34,0.0 +22246,71,21.5,47,0.0 +22246,65,21.05,18,0.0 +22246,3,10,4,0.0 +22246,20,81,32,0.0 +22246,53,32.8,31,0.0 +22246,44,19.45,2,0.0 +22246,77,13,6,0.0 +22246,70,15,27,0.0 +22246,9,97,42,0.0 +22246,29,123.79,6,0.0 +22246,16,17.45,47,0.0 +22246,68,12.5,27,0.0 +22246,48,12.75,24,0.0 +22246,55,24,34,0.0 +22246,17,39,36,0.0 +22246,33,2.5,44,0.0 +22246,34,14,1,0.0 +22246,19,9.2,1,0.0 +22246,4,22,33,0.0 +22246,49,20,39,0.0 +22246,31,12.5,36,0.0 +22246,27,43.9,49,0.0 +22246,5,21.35,42,0.0 +22246,54,7.45,41,0.0 +22246,64,33.25,23,0.0 +22246,40,18.4,38,0.0 +22246,11,21,18,0.0 +22246,69,36,38,0.0 +22246,18,62.5,46,0.0 +22246,37,26,12,0.0 +22246,12,38,37,0.0 +22246,67,14,4,0.0 +22246,66,17,3,0.0 +22246,25,14,33,0.0 +22246,43,46,13,0.0 +22246,52,7,43,0.0 +22246,22,21,24,0.0 +22246,15,15.5,2,0.0 +22246,36,19,3,0.0 +22246,56,38,2,0.0 +22246,47,9.5,24,0.0 +22246,28,45.6,26,0.0 +22246,7,30,31,0.0 +22246,73,15,9,0.0 +22246,8,40,4,0.0 +22246,13,6,38,0.0 +22246,1,18,21,0.0 +22246,30,25.89,22,0.0 +22246,57,19.5,14,0.0 +22246,38,263.5,31,0.0 +22246,21,10,39,0.0 +22246,35,18,22,0.0 +22246,51,53,15,0.0 +22246,60,34,9,0.0 +22246,32,32,27,0.0 +22247,66,17,36,0.0 +22247,30,25.89,21,0.0 +22247,19,9.2,31,0.0 +22247,14,23.25,12,0.0 +22247,15,15.5,40,0.0 +22247,76,18,3,0.0 +22247,73,15,30,0.0 +22247,65,21.05,20,0.0 +22247,61,28.5,29,0.0 +22247,68,12.5,8,0.0 +22247,21,10,10,0.0 +22247,67,14,48,0.0 +22247,64,33.25,50,0.0 +22247,60,34,25,0.0 +22247,28,45.6,31,0.0 +22247,6,25,11,0.0 +22247,39,18,40,0.0 +22247,49,20,37,0.0 +22247,25,14,34,0.0 +22247,23,9,31,0.0 +22247,5,21.35,41,0.0 +22247,48,12.75,36,0.0 +22247,22,21,8,0.0 +22247,41,9.65,5,0.0 +22247,59,55,10,0.0 +22247,10,31,35,0.0 +22247,74,10,32,0.0 +22247,52,7,43,0.0 +22247,31,12.5,28,0.0 +22247,34,14,42,0.0 +22247,63,43.9,42,0.0 +22247,50,16.25,7,0.0 +22247,47,9.5,2,0.0 +22247,57,19.5,41,0.0 +22247,55,24,23,0.0 +22247,27,43.9,4,0.0 +22247,51,53,9,0.0 +22247,62,49.3,15,0.0 +22247,72,34.8,6,0.0 +22247,32,32,12,0.0 +22247,71,21.5,44,0.0 +22247,43,46,27,0.0 +22247,33,2.5,10,0.0 +22247,70,15,26,0.0 +22247,12,38,4,0.0 +22247,7,30,3,0.0 +22247,45,9.5,16,0.0 +22247,46,12,39,0.0 +22247,69,36,50,0.0 +22247,24,4.5,9,0.0 +22247,16,17.45,43,0.0 +22247,54,7.45,49,0.0 +22247,75,7.75,35,0.0 +22247,4,22,47,0.0 +22247,56,38,41,0.0 +22247,8,40,20,0.0 +22247,1,18,11,0.0 +22247,18,62.5,4,0.0 +22247,2,19,40,0.0 +22247,20,81,31,0.0 +22247,44,19.45,1,0.0 +22247,3,10,13,0.0 +22247,9,97,28,0.0 +22247,58,13.25,49,0.0 +22247,11,21,4,0.0 +22247,37,26,22,0.0 +22247,13,6,2,0.0 +22247,17,39,4,0.0 +22247,40,18.4,12,0.0 +22247,29,123.79,22,0.0 +22247,53,32.8,4,0.0 +22247,35,18,8,0.0 +22248,25,14,7,0.0 +22248,37,26,1,0.0 +22248,21,10,43,0.0 +22248,64,33.25,10,0.0 +22248,68,12.5,14,0.0 +22248,63,43.9,40,0.0 +22248,33,2.5,21,0.0 +22248,57,19.5,26,0.0 +22248,30,25.89,28,0.0 +22248,71,21.5,47,0.0 +22248,42,14,44,0.0 +22248,62,49.3,23,0.0 +22248,66,17,27,0.0 +22248,38,263.5,7,0.0 +22248,34,14,21,0.0 +22248,35,18,40,0.0 +22248,59,55,15,0.0 +22248,52,7,40,0.0 +22248,43,46,44,0.0 +22248,16,17.45,3,0.0 +22248,28,45.6,18,0.0 +22248,76,18,25,0.0 +22248,13,6,20,0.0 +22248,15,15.5,21,0.0 +22248,10,31,41,0.0 +22248,24,4.5,41,0.0 +22248,31,12.5,25,0.0 +22248,50,16.25,1,0.0 +22248,41,9.65,36,0.0 +22248,48,12.75,9,0.0 +22248,32,32,27,0.0 +22248,45,9.5,26,0.0 +22248,4,22,10,0.0 +22248,77,13,6,0.0 +22248,51,53,11,0.0 +22248,44,19.45,47,0.0 +22248,17,39,49,0.0 +22248,70,15,35,0.0 +22248,39,18,39,0.0 +22248,22,21,11,0.0 +22248,2,19,26,0.0 +22248,6,25,36,0.0 +22248,55,24,16,0.0 +22248,61,28.5,35,0.0 +22249,66,17,32,0.0 +22249,77,13,12,0.0 +22249,50,16.25,47,0.0 +22249,48,12.75,11,0.0 +22249,57,19.5,7,0.0 +22249,15,15.5,46,0.0 +22249,72,34.8,3,0.0 +22249,2,19,1,0.0 +22249,25,14,16,0.0 +22249,63,43.9,47,0.0 +22249,58,13.25,24,0.0 +22249,41,9.65,40,0.0 +22249,7,30,36,0.0 +22249,39,18,26,0.0 +22249,26,31.23,9,0.0 +22249,47,9.5,47,0.0 +22249,59,55,28,0.0 +22250,1,18,47,0.0 +22250,71,21.5,14,0.0 +22250,34,14,28,0.0 +22250,55,24,38,0.0 +22250,59,55,43,0.0 +22250,75,7.75,36,0.0 +22250,43,46,5,0.0 +22250,42,14,24,0.0 +22250,62,49.3,20,0.0 +22250,38,263.5,45,0.0 +22250,61,28.5,35,0.0 +22250,77,13,4,0.0 +22250,18,62.5,29,0.0 +22250,68,12.5,35,0.0 +22250,47,9.5,26,0.0 +22250,37,26,4,0.0 +22250,30,25.89,35,0.0 +22250,58,13.25,20,0.0 +22250,60,34,43,0.0 +22250,52,7,29,0.0 +22250,10,31,19,0.0 +22250,64,33.25,13,0.0 +22250,23,9,36,0.0 +22250,26,31.23,39,0.0 +22251,57,19.5,41,0.0 +22251,39,18,48,0.0 +22251,54,7.45,10,0.0 +22251,68,12.5,32,0.0 +22251,8,40,1,0.0 +22251,72,34.8,11,0.0 +22251,56,38,6,0.0 +22251,10,31,22,0.0 +22251,52,7,1,0.0 +22251,69,36,25,0.0 +22251,36,19,37,0.0 +22251,59,55,34,0.0 +22251,27,43.9,43,0.0 +22251,12,38,32,0.0 +22251,15,15.5,43,0.0 +22251,77,13,13,0.0 +22251,74,10,33,0.0 +22251,58,13.25,14,0.0 +22251,2,19,13,0.0 +22251,24,4.5,32,0.0 +22251,40,18.4,25,0.0 +22251,11,21,8,0.0 +22251,61,28.5,4,0.0 +22252,16,17.45,20,0.0 +22252,30,25.89,44,0.0 +22252,57,19.5,44,0.0 +22252,61,28.5,32,0.0 +22252,6,25,42,0.0 +22252,66,17,46,0.0 +22252,23,9,44,0.0 +22252,24,4.5,9,0.0 +22252,1,18,47,0.0 +22252,75,7.75,1,0.0 +22252,45,9.5,2,0.0 +22252,3,10,16,0.0 +22252,28,45.6,5,0.0 +22252,63,43.9,42,0.0 +22252,43,46,16,0.0 +22252,72,34.8,46,0.0 +22252,29,123.79,28,0.0 +22252,46,12,22,0.0 +22252,17,39,32,0.0 +22252,13,6,46,0.0 +22252,37,26,3,0.0 +22252,58,13.25,20,0.0 +22252,50,16.25,9,0.0 +22252,26,31.23,13,0.0 +22252,42,14,1,0.0 +22252,11,21,34,0.0 +22252,74,10,5,0.0 +22252,14,23.25,46,0.0 +22252,70,15,25,0.0 +22252,69,36,48,0.0 +22252,55,24,19,0.0 +22252,8,40,38,0.0 +22252,73,15,37,0.0 +22252,60,34,29,0.0 +22252,22,21,19,0.0 +22252,39,18,11,0.0 +22252,77,13,14,0.0 +22252,31,12.5,20,0.0 +22252,19,9.2,47,0.0 +22252,40,18.4,14,0.0 +22252,59,55,43,0.0 +22252,20,81,32,0.0 +22252,21,10,47,0.0 +22252,27,43.9,13,0.0 +22252,38,263.5,12,0.0 +22252,25,14,9,0.0 +22252,48,12.75,27,0.0 +22252,41,9.65,13,0.0 +22252,4,22,20,0.0 +22252,7,30,4,0.0 +22252,67,14,28,0.0 +22253,19,9.2,48,0.0 +22253,38,263.5,44,0.0 +22253,44,19.45,25,0.0 +22253,45,9.5,27,0.0 +22253,55,24,38,0.0 +22254,10,31,23,0.0 +22254,28,45.6,7,0.0 +22254,53,32.8,29,0.0 +22254,6,25,19,0.0 +22254,51,53,50,0.0 +22254,21,10,16,0.0 +22254,13,6,29,0.0 +22254,60,34,3,0.0 +22254,30,25.89,41,0.0 +22254,2,19,15,0.0 +22254,14,23.25,6,0.0 +22254,31,12.5,48,0.0 +22254,5,21.35,45,0.0 +22254,33,2.5,17,0.0 +22254,55,24,19,0.0 +22254,70,15,41,0.0 +22254,40,18.4,49,0.0 +22254,74,10,50,0.0 +22254,63,43.9,39,0.0 +22254,54,7.45,42,0.0 +22254,67,14,3,0.0 +22254,23,9,34,0.0 +22254,52,7,30,0.0 +22254,68,12.5,4,0.0 +22254,8,40,15,0.0 +22254,76,18,16,0.0 +22254,15,15.5,42,0.0 +22254,16,17.45,26,0.0 +22255,43,46,33,0.0 +22255,44,19.45,8,0.0 +22255,5,21.35,50,0.0 +22255,67,14,5,0.0 +22255,50,16.25,30,0.0 +22255,8,40,10,0.0 +22255,14,23.25,30,0.0 +22255,47,9.5,46,0.0 +22255,23,9,25,0.0 +22255,73,15,5,0.0 +22255,71,21.5,26,0.0 +22255,68,12.5,44,0.0 +22255,26,31.23,28,0.0 +22255,9,97,50,0.0 +22255,65,21.05,35,0.0 +22255,35,18,6,0.0 +22255,28,45.6,27,0.0 +22255,69,36,25,0.0 +22255,10,31,28,0.0 +22255,2,19,24,0.0 +22255,64,33.25,1,0.0 +22255,63,43.9,9,0.0 +22255,4,22,30,0.0 +22255,46,12,25,0.0 +22255,15,15.5,23,0.0 +22255,54,7.45,8,0.0 +22255,74,10,40,0.0 +22255,16,17.45,16,0.0 +22255,34,14,17,0.0 +22255,59,55,35,0.0 +22255,70,15,15,0.0 +22255,51,53,4,0.0 +22255,31,12.5,5,0.0 +22255,61,28.5,48,0.0 +22255,55,24,46,0.0 +22255,53,32.8,15,0.0 +22255,66,17,32,0.0 +22255,11,21,44,0.0 +22255,20,81,21,0.0 +22255,12,38,28,0.0 +22255,18,62.5,17,0.0 +22255,48,12.75,7,0.0 +22255,76,18,3,0.0 +22255,25,14,38,0.0 +22255,37,26,32,0.0 +22255,21,10,15,0.0 +22256,46,12,9,0.0 +22256,65,21.05,3,0.0 +22256,68,12.5,21,0.0 +22256,55,24,48,0.0 +22256,73,15,38,0.0 +22256,42,14,27,0.0 +22256,15,15.5,44,0.0 +22256,28,45.6,39,0.0 +22256,76,18,1,0.0 +22256,2,19,15,0.0 +22256,13,6,10,0.0 +22256,38,263.5,49,0.0 +22256,26,31.23,47,0.0 +22256,4,22,48,0.0 +22256,61,28.5,27,0.0 +22256,14,23.25,27,0.0 +22256,66,17,9,0.0 +22256,41,9.65,1,0.0 +22256,32,32,45,0.0 +22256,56,38,48,0.0 +22256,43,46,44,0.0 +22256,3,10,49,0.0 +22256,58,13.25,16,0.0 +22256,8,40,5,0.0 +22256,11,21,17,0.0 +22256,60,34,31,0.0 +22256,54,7.45,9,0.0 +22256,72,34.8,35,0.0 +22256,29,123.79,42,0.0 +22256,40,18.4,35,0.0 +22256,24,4.5,47,0.0 +22256,70,15,11,0.0 +22256,53,32.8,38,0.0 +22256,25,14,8,0.0 +22256,17,39,20,0.0 +22256,27,43.9,40,0.0 +22256,75,7.75,2,0.0 +22256,23,9,42,0.0 +22256,5,21.35,14,0.0 +22256,7,30,20,0.0 +22256,39,18,24,0.0 +22256,18,62.5,33,0.0 +22256,59,55,23,0.0 +22256,48,12.75,3,0.0 +22256,64,33.25,2,0.0 +22256,74,10,15,0.0 +22256,33,2.5,48,0.0 +22256,45,9.5,7,0.0 +22256,16,17.45,49,0.0 +22256,52,7,35,0.0 +22256,30,25.89,22,0.0 +22256,49,20,31,0.0 +22256,57,19.5,16,0.0 +22256,37,26,34,0.0 +22256,22,21,25,0.0 +22256,69,36,50,0.0 +22256,77,13,24,0.0 +22256,9,97,45,0.0 +22256,19,9.2,14,0.0 +22256,20,81,34,0.0 +22256,31,12.5,37,0.0 +22256,36,19,3,0.0 +22256,1,18,9,0.0 +22256,44,19.45,25,0.0 +22256,6,25,48,0.0 +22256,50,16.25,7,0.0 +22256,35,18,16,0.0 +22256,10,31,42,0.0 +22256,71,21.5,25,0.0 +22256,21,10,10,0.0 +22256,12,38,38,0.0 +22257,58,13.25,6,0.0 +22257,3,10,14,0.0 +22257,51,53,47,0.0 +22257,74,10,11,0.0 +22257,6,25,8,0.0 +22257,65,21.05,6,0.0 +22257,52,7,28,0.0 +22257,27,43.9,25,0.0 +22257,45,9.5,29,0.0 +22257,25,14,4,0.0 +22257,46,12,8,0.0 +22257,44,19.45,27,0.0 +22257,29,123.79,16,0.0 +22257,17,39,2,0.0 +22257,55,24,25,0.0 +22257,62,49.3,12,0.0 +22257,71,21.5,20,0.0 +22257,28,45.6,29,0.0 +22257,67,14,42,0.0 +22257,20,81,20,0.0 +22257,19,9.2,22,0.0 +22257,35,18,42,0.0 +22257,39,18,2,0.0 +22257,13,6,32,0.0 +22258,18,62.5,17,0.0 +22258,2,19,19,0.0 +22258,53,32.8,22,0.0 +22258,31,12.5,21,0.0 +22258,24,4.5,4,0.0 +22259,60,34,16,0.0 +22259,46,12,14,0.0 +22259,13,6,7,0.0 +22259,74,10,39,0.0 +22259,30,25.89,30,0.0 +22259,58,13.25,2,0.0 +22259,8,40,20,0.0 +22259,66,17,18,0.0 +22260,32,32,9,0.0 +22260,44,19.45,42,0.0 +22260,9,97,12,0.0 +22260,46,12,42,0.0 +22260,36,19,30,0.0 +22260,34,14,9,0.0 +22260,6,25,47,0.0 +22260,26,31.23,34,0.0 +22260,59,55,43,0.0 +22260,1,18,19,0.0 +22260,52,7,20,0.0 +22260,5,21.35,24,0.0 +22260,53,32.8,23,0.0 +22260,40,18.4,13,0.0 +22260,21,10,3,0.0 +22260,60,34,26,0.0 +22260,70,15,18,0.0 +22260,12,38,17,0.0 +22260,4,22,4,0.0 +22260,35,18,38,0.0 +22260,61,28.5,1,0.0 +22260,43,46,22,0.0 +22260,55,24,17,0.0 +22260,65,21.05,50,0.0 +22260,68,12.5,30,0.0 +22260,72,34.8,31,0.0 +22260,3,10,1,0.0 +22260,57,19.5,32,0.0 +22260,42,14,30,0.0 +22260,7,30,50,0.0 +22260,23,9,11,0.0 +22260,56,38,26,0.0 +22260,27,43.9,50,0.0 +22260,37,26,39,0.0 +22260,77,13,7,0.0 +22260,73,15,6,0.0 +22260,38,263.5,5,0.0 +22260,48,12.75,17,0.0 +22260,13,6,18,0.0 +22260,30,25.89,28,0.0 +22260,51,53,7,0.0 +22260,67,14,32,0.0 +22260,64,33.25,23,0.0 +22260,10,31,17,0.0 +22260,18,62.5,24,0.0 +22260,69,36,8,0.0 +22260,17,39,5,0.0 +22260,54,7.45,12,0.0 +22260,76,18,24,0.0 +22260,47,9.5,41,0.0 +22260,71,21.5,48,0.0 +22260,15,15.5,37,0.0 +22260,16,17.45,18,0.0 +22260,19,9.2,46,0.0 +22260,29,123.79,21,0.0 +22260,74,10,13,0.0 +22260,33,2.5,22,0.0 +22261,1,18,22,0.0 +22261,31,12.5,24,0.0 +22261,48,12.75,36,0.0 +22261,15,15.5,32,0.0 +22261,4,22,1,0.0 +22261,54,7.45,6,0.0 +22261,52,7,44,0.0 +22261,40,18.4,27,0.0 +22261,18,62.5,2,0.0 +22261,71,21.5,3,0.0 +22261,43,46,13,0.0 +22261,5,21.35,16,0.0 +22261,42,14,30,0.0 +22261,58,13.25,36,0.0 +22261,49,20,49,0.0 +22261,66,17,27,0.0 +22261,45,9.5,9,0.0 +22261,20,81,37,0.0 +22261,16,17.45,45,0.0 +22261,13,6,21,0.0 +22261,11,21,27,0.0 +22261,29,123.79,28,0.0 +22261,33,2.5,20,0.0 +22261,44,19.45,25,0.0 +22261,53,32.8,38,0.0 +22261,59,55,43,0.0 +22261,9,97,48,0.0 +22261,65,21.05,22,0.0 +22261,39,18,48,0.0 +22261,19,9.2,1,0.0 +22261,7,30,36,0.0 +22261,25,14,43,0.0 +22261,56,38,14,0.0 +22261,38,263.5,41,0.0 +22261,77,13,20,0.0 +22261,69,36,33,0.0 +22261,68,12.5,50,0.0 +22261,63,43.9,26,0.0 +22261,57,19.5,12,0.0 +22261,10,31,40,0.0 +22261,2,19,10,0.0 +22261,74,10,15,0.0 +22261,3,10,4,0.0 +22261,47,9.5,39,0.0 +22261,26,31.23,5,0.0 +22261,27,43.9,14,0.0 +22262,33,2.5,42,0.0 +22262,50,16.25,47,0.0 +22262,24,4.5,22,0.0 +22262,13,6,9,0.0 +22262,72,34.8,21,0.0 +22262,5,21.35,1,0.0 +22262,42,14,8,0.0 +22262,52,7,29,0.0 +22262,21,10,11,0.0 +22262,38,263.5,14,0.0 +22262,75,7.75,25,0.0 +22262,41,9.65,28,0.0 +22262,22,21,41,0.0 +22262,57,19.5,34,0.0 +22262,35,18,34,0.0 +22262,40,18.4,46,0.0 +22262,26,31.23,33,0.0 +22262,27,43.9,30,0.0 +22262,4,22,38,0.0 +22262,10,31,21,0.0 +22262,62,49.3,24,0.0 +22262,68,12.5,36,0.0 +22262,12,38,9,0.0 +22262,69,36,3,0.0 +22263,22,21,17,0.0 +22263,41,9.65,24,0.0 +22263,69,36,29,0.0 +22263,2,19,24,0.0 +22263,64,33.25,40,0.0 +22263,71,21.5,4,0.0 +22263,57,19.5,19,0.0 +22263,11,21,14,0.0 +22263,23,9,9,0.0 +22263,49,20,34,0.0 +22263,53,32.8,4,0.0 +22263,61,28.5,1,0.0 +22263,50,16.25,17,0.0 +22263,43,46,17,0.0 +22263,45,9.5,47,0.0 +22263,24,4.5,1,0.0 +22263,51,53,22,0.0 +22263,44,19.45,15,0.0 +22263,75,7.75,47,0.0 +22263,34,14,21,0.0 +22263,47,9.5,16,0.0 +22263,6,25,41,0.0 +22263,67,14,15,0.0 +22263,27,43.9,41,0.0 +22263,55,24,16,0.0 +22263,15,15.5,34,0.0 +22263,26,31.23,34,0.0 +22263,12,38,1,0.0 +22263,70,15,5,0.0 +22263,8,40,44,0.0 +22263,17,39,25,0.0 +22263,18,62.5,7,0.0 +22263,65,21.05,20,0.0 +22263,54,7.45,11,0.0 +22263,59,55,5,0.0 +22263,5,21.35,16,0.0 +22263,7,30,47,0.0 +22263,77,13,35,0.0 +22263,58,13.25,31,0.0 +22263,28,45.6,3,0.0 +22263,73,15,47,0.0 +22263,60,34,16,0.0 +22263,62,49.3,21,0.0 +22263,16,17.45,6,0.0 +22263,3,10,45,0.0 +22263,19,9.2,35,0.0 +22263,31,12.5,33,0.0 +22263,63,43.9,21,0.0 +22263,1,18,44,0.0 +22263,66,17,2,0.0 +22264,46,12,47,0.0 +22264,51,53,33,0.0 +22264,30,25.89,36,0.0 +22264,20,81,46,0.0 +22264,55,24,26,0.0 +22264,24,4.5,40,0.0 +22264,28,45.6,9,0.0 +22264,14,23.25,48,0.0 +22264,73,15,16,0.0 +22264,52,7,48,0.0 +22264,17,39,28,0.0 +22264,11,21,2,0.0 +22264,67,14,9,0.0 +22264,60,34,48,0.0 +22264,21,10,39,0.0 +22264,40,18.4,22,0.0 +22264,63,43.9,2,0.0 +22264,66,17,49,0.0 +22264,12,38,34,0.0 +22264,34,14,48,0.0 +22264,61,28.5,19,0.0 +22264,39,18,18,0.0 +22264,32,32,8,0.0 +22264,48,12.75,27,0.0 +22264,23,9,18,0.0 +22264,41,9.65,21,0.0 +22264,22,21,47,0.0 +22264,1,18,48,0.0 +22265,23,9,17,0.0 +22265,66,17,5,0.0 +22265,11,21,15,0.0 +22265,55,24,45,0.0 +22265,44,19.45,22,0.0 +22265,14,23.25,37,0.0 +22265,42,14,8,0.0 +22265,18,62.5,20,0.0 +22265,39,18,40,0.0 +22265,9,97,14,0.0 +22265,63,43.9,13,0.0 +22265,46,12,7,0.0 +22265,21,10,29,0.0 +22265,10,31,5,0.0 +22265,64,33.25,14,0.0 +22265,49,20,50,0.0 +22265,45,9.5,45,0.0 +22265,32,32,15,0.0 +22265,72,34.8,33,0.0 +22265,74,10,6,0.0 +22265,57,19.5,12,0.0 +22265,47,9.5,18,0.0 +22265,31,12.5,21,0.0 +22265,65,21.05,27,0.0 +22265,50,16.25,50,0.0 +22265,17,39,47,0.0 +22265,25,14,7,0.0 +22265,70,15,49,0.0 +22265,77,13,30,0.0 +22265,59,55,45,0.0 +22265,5,21.35,45,0.0 +22265,43,46,32,0.0 +22265,24,4.5,25,0.0 +22265,37,26,9,0.0 +22265,7,30,26,0.0 +22265,12,38,40,0.0 +22265,53,32.8,22,0.0 +22265,40,18.4,7,0.0 +22265,8,40,9,0.0 +22265,75,7.75,36,0.0 +22265,38,263.5,14,0.0 +22265,36,19,45,0.0 +22265,73,15,3,0.0 +22265,76,18,9,0.0 +22265,4,22,18,0.0 +22265,29,123.79,34,0.0 +22265,30,25.89,34,0.0 +22265,35,18,40,0.0 +22265,69,36,30,0.0 +22265,28,45.6,29,0.0 +22265,33,2.5,37,0.0 +22265,27,43.9,39,0.0 +22265,13,6,48,0.0 +22265,19,9.2,42,0.0 +22265,51,53,3,0.0 +22265,3,10,32,0.0 +22265,62,49.3,36,0.0 +22265,54,7.45,27,0.0 +22265,68,12.5,38,0.0 +22265,6,25,19,0.0 +22265,52,7,29,0.0 +22265,15,15.5,11,0.0 +22265,16,17.45,46,0.0 +22265,48,12.75,39,0.0 +22265,26,31.23,11,0.0 +22265,20,81,16,0.0 +22265,41,9.65,25,0.0 +22265,61,28.5,19,0.0 +22265,60,34,3,0.0 +22265,1,18,36,0.0 +22265,67,14,20,0.0 +22265,2,19,3,0.0 +22265,58,13.25,26,0.0 +22265,34,14,39,0.0 +22266,74,10,23,0.0 +22266,63,43.9,16,0.0 +22266,43,46,7,0.0 +22266,51,53,12,0.0 +22266,58,13.25,30,0.0 +22266,76,18,5,0.0 +22266,64,33.25,6,0.0 +22266,7,30,20,0.0 +22266,36,19,47,0.0 +22266,65,21.05,2,0.0 +22266,24,4.5,29,0.0 +22266,28,45.6,9,0.0 +22266,20,81,19,0.0 +22266,14,23.25,32,0.0 +22266,54,7.45,20,0.0 +22266,19,9.2,41,0.0 +22266,32,32,9,0.0 +22266,66,17,5,0.0 +22266,67,14,9,0.0 +22266,26,31.23,5,0.0 +22266,60,34,34,0.0 +22266,16,17.45,14,0.0 +22266,41,9.65,9,0.0 +22266,23,9,11,0.0 +22266,33,2.5,10,0.0 +22266,30,25.89,48,0.0 +22266,55,24,4,0.0 +22266,42,14,5,0.0 +22266,17,39,9,0.0 +22266,18,62.5,15,0.0 +22266,38,263.5,40,0.0 +22266,5,21.35,47,0.0 +22266,21,10,42,0.0 +22266,69,36,46,0.0 +22266,48,12.75,3,0.0 +22266,75,7.75,41,0.0 +22266,8,40,41,0.0 +22266,50,16.25,46,0.0 +22266,56,38,24,0.0 +22266,47,9.5,29,0.0 +22266,11,21,32,0.0 +22266,22,21,4,0.0 +22266,45,9.5,34,0.0 +22266,46,12,5,0.0 +22266,9,97,22,0.0 +22266,52,7,26,0.0 +22266,73,15,5,0.0 +22266,61,28.5,17,0.0 +22266,49,20,29,0.0 +22266,1,18,20,0.0 +22266,70,15,42,0.0 +22266,31,12.5,11,0.0 +22266,25,14,32,0.0 +22266,71,21.5,32,0.0 +22266,4,22,46,0.0 +22266,2,19,28,0.0 +22266,29,123.79,34,0.0 +22266,44,19.45,25,0.0 +22266,59,55,6,0.0 +22266,35,18,1,0.0 +22266,6,25,49,0.0 +22266,53,32.8,33,0.0 +22266,40,18.4,29,0.0 +22266,72,34.8,31,0.0 +22266,10,31,15,0.0 +22266,37,26,15,0.0 +22266,13,6,12,0.0 +22266,39,18,14,0.0 +22266,34,14,9,0.0 +22266,57,19.5,21,0.0 +22266,68,12.5,10,0.0 +22266,12,38,48,0.0 +22266,15,15.5,42,0.0 +22266,77,13,3,0.0 +22266,62,49.3,26,0.0 +22266,3,10,34,0.0 +22267,7,30,45,0.0 +22267,56,38,13,0.0 +22267,28,45.6,31,0.0 +22267,4,22,37,0.0 +22267,36,19,41,0.0 +22267,75,7.75,3,0.0 +22267,29,123.79,28,0.0 +22267,58,13.25,35,0.0 +22267,14,23.25,33,0.0 +22267,23,9,24,0.0 +22267,76,18,43,0.0 +22267,35,18,45,0.0 +22267,46,12,5,0.0 +22267,50,16.25,30,0.0 +22267,33,2.5,15,0.0 +22267,38,263.5,47,0.0 +22267,49,20,6,0.0 +22267,9,97,8,0.0 +22267,69,36,49,0.0 +22267,60,34,26,0.0 +22267,72,34.8,6,0.0 +22267,8,40,8,0.0 +22267,42,14,23,0.0 +22267,48,12.75,13,0.0 +22267,71,21.5,6,0.0 +22267,37,26,1,0.0 +22267,73,15,18,0.0 +22267,34,14,20,0.0 +22267,17,39,7,0.0 +22267,30,25.89,11,0.0 +22267,12,38,46,0.0 +22267,27,43.9,3,0.0 +22267,10,31,28,0.0 +22267,65,21.05,17,0.0 +22267,66,17,50,0.0 +22267,25,14,18,0.0 +22267,59,55,24,0.0 +22267,2,19,50,0.0 +22267,63,43.9,5,0.0 +22267,11,21,25,0.0 +22267,26,31.23,9,0.0 +22267,52,7,45,0.0 +22267,55,24,48,0.0 +22267,16,17.45,31,0.0 +22267,39,18,19,0.0 +22267,44,19.45,41,0.0 +22267,68,12.5,8,0.0 +22267,62,49.3,26,0.0 +22267,18,62.5,37,0.0 +22267,5,21.35,44,0.0 +22267,1,18,35,0.0 +22267,57,19.5,27,0.0 +22267,31,12.5,20,0.0 +22267,70,15,15,0.0 +22267,20,81,13,0.0 +22267,21,10,44,0.0 +22267,3,10,38,0.0 +22267,22,21,20,0.0 +22267,15,15.5,39,0.0 +22267,64,33.25,44,0.0 +22267,13,6,44,0.0 +22267,6,25,28,0.0 +22268,72,34.8,49,0.0 +22268,18,62.5,26,0.0 +22268,41,9.65,28,0.0 +22268,48,12.75,28,0.0 +22268,36,19,21,0.0 +22268,29,123.79,31,0.0 +22268,62,49.3,27,0.0 +22268,10,31,38,0.0 +22268,19,9.2,40,0.0 +22268,54,7.45,42,0.0 +22268,51,53,19,0.0 +22268,47,9.5,39,0.0 +22268,11,21,43,0.0 +22268,74,10,6,0.0 +22268,21,10,26,0.0 +22268,30,25.89,25,0.0 +22268,58,13.25,28,0.0 +22268,60,34,23,0.0 +22268,53,32.8,3,0.0 +22268,49,20,48,0.0 +22268,28,45.6,41,0.0 +22268,13,6,33,0.0 +22268,50,16.25,25,0.0 +22268,43,46,12,0.0 +22268,1,18,37,0.0 +22268,25,14,17,0.0 +22268,22,21,3,0.0 +22268,7,30,11,0.0 +22268,16,17.45,40,0.0 +22268,46,12,34,0.0 +22268,17,39,31,0.0 +22268,2,19,42,0.0 +22268,32,32,12,0.0 +22268,14,23.25,37,0.0 +22268,66,17,15,0.0 +22268,40,18.4,38,0.0 +22268,27,43.9,8,0.0 +22268,12,38,30,0.0 +22268,37,26,46,0.0 +22268,59,55,34,0.0 +22268,20,81,14,0.0 +22268,77,13,10,0.0 +22268,69,36,17,0.0 +22268,56,38,30,0.0 +22269,29,123.79,16,0.0 +22269,40,18.4,49,0.0 +22269,7,30,11,0.0 +22269,3,10,19,0.0 +22269,35,18,46,0.0 +22269,25,14,8,0.0 +22269,43,46,14,0.0 +22269,9,97,18,0.0 +22269,12,38,29,0.0 +22269,54,7.45,12,0.0 +22269,39,18,24,0.0 +22269,33,2.5,19,0.0 +22269,11,21,37,0.0 +22269,16,17.45,9,0.0 +22269,69,36,48,0.0 +22269,10,31,48,0.0 +22269,37,26,34,0.0 +22269,73,15,41,0.0 +22269,62,49.3,9,0.0 +22269,5,21.35,13,0.0 +22269,2,19,29,0.0 +22269,75,7.75,35,0.0 +22269,58,13.25,17,0.0 +22269,21,10,39,0.0 +22269,74,10,40,0.0 +22269,31,12.5,31,0.0 +22269,1,18,42,0.0 +22269,36,19,24,0.0 +22269,14,23.25,19,0.0 +22269,15,15.5,44,0.0 +22269,60,34,31,0.0 +22269,53,32.8,27,0.0 +22269,49,20,9,0.0 +22269,61,28.5,35,0.0 +22269,64,33.25,30,0.0 +22269,59,55,48,0.0 +22269,28,45.6,17,0.0 +22269,30,25.89,33,0.0 +22269,20,81,22,0.0 +22269,57,19.5,4,0.0 +22269,41,9.65,38,0.0 +22269,76,18,26,0.0 +22269,6,25,40,0.0 +22269,44,19.45,25,0.0 +22270,35,18,31,0.0 +22270,55,24,15,0.0 +22270,6,25,6,0.0 +22270,70,15,47,0.0 +22270,17,39,29,0.0 +22270,46,12,32,0.0 +22270,71,21.5,12,0.0 +22270,11,21,28,0.0 +22270,77,13,24,0.0 +22270,19,9.2,7,0.0 +22270,39,18,3,0.0 +22270,42,14,10,0.0 +22270,8,40,22,0.0 +22270,62,49.3,28,0.0 +22270,69,36,25,0.0 +22270,14,23.25,23,0.0 +22270,12,38,4,0.0 +22270,75,7.75,3,0.0 +22270,65,21.05,9,0.0 +22270,56,38,38,0.0 +22270,15,15.5,9,0.0 +22270,10,31,40,0.0 +22270,29,123.79,34,0.0 +22270,76,18,32,0.0 +22270,58,13.25,22,0.0 +22270,41,9.65,34,0.0 +22270,73,15,34,0.0 +22270,18,62.5,41,0.0 +22270,66,17,26,0.0 +22270,51,53,6,0.0 +22270,27,43.9,41,0.0 +22270,57,19.5,44,0.0 +22270,34,14,4,0.0 +22270,16,17.45,6,0.0 +22270,61,28.5,30,0.0 +22270,25,14,23,0.0 +22270,49,20,20,0.0 +22270,64,33.25,34,0.0 +22270,59,55,32,0.0 +22270,67,14,19,0.0 +22270,23,9,28,0.0 +22270,52,7,26,0.0 +22270,2,19,5,0.0 +22270,63,43.9,40,0.0 +22270,68,12.5,45,0.0 +22270,13,6,25,0.0 +22270,22,21,15,0.0 +22270,9,97,39,0.0 +22270,50,16.25,42,0.0 +22270,45,9.5,26,0.0 +22270,1,18,2,0.0 +22270,5,21.35,31,0.0 +22270,37,26,12,0.0 +22270,44,19.45,23,0.0 +22270,48,12.75,27,0.0 +22270,40,18.4,36,0.0 +22270,20,81,22,0.0 +22270,53,32.8,37,0.0 +22270,72,34.8,35,0.0 +22270,38,263.5,37,0.0 +22270,32,32,4,0.0 +22270,33,2.5,14,0.0 +22270,54,7.45,32,0.0 +22270,30,25.89,9,0.0 +22270,3,10,19,0.0 +22270,4,22,6,0.0 +22270,47,9.5,21,0.0 +22270,36,19,49,0.0 +22270,43,46,19,0.0 +22270,24,4.5,41,0.0 +22270,74,10,48,0.0 +22270,28,45.6,14,0.0 +22270,31,12.5,21,0.0 +22270,60,34,30,0.0 +22270,21,10,2,0.0 +22271,12,38,2,0.0 +22271,65,21.05,4,0.0 +22271,29,123.79,45,0.0 +22271,61,28.5,23,0.0 +22271,72,34.8,6,0.0 +22271,3,10,4,0.0 +22271,71,21.5,35,0.0 +22271,31,12.5,19,0.0 +22271,73,15,32,0.0 +22271,55,24,26,0.0 +22271,69,36,11,0.0 +22271,17,39,26,0.0 +22271,8,40,49,0.0 +22271,9,97,19,0.0 +22271,20,81,20,0.0 +22271,70,15,28,0.0 +22271,62,49.3,45,0.0 +22271,66,17,28,0.0 +22271,59,55,27,0.0 +22271,60,34,7,0.0 +22271,5,21.35,20,0.0 +22271,47,9.5,5,0.0 +22271,39,18,39,0.0 +22271,28,45.6,23,0.0 +22271,18,62.5,12,0.0 +22271,56,38,10,0.0 +22271,77,13,24,0.0 +22271,68,12.5,42,0.0 +22271,1,18,39,0.0 +22271,42,14,7,0.0 +22271,74,10,10,0.0 +22271,30,25.89,37,0.0 +22271,41,9.65,22,0.0 +22271,11,21,34,0.0 +22271,25,14,20,0.0 +22271,53,32.8,29,0.0 +22271,43,46,31,0.0 +22271,2,19,46,0.0 +22271,45,9.5,49,0.0 +22271,46,12,18,0.0 +22271,51,53,37,0.0 +22271,27,43.9,46,0.0 +22271,50,16.25,35,0.0 +22271,54,7.45,41,0.0 +22271,21,10,15,0.0 +22271,33,2.5,36,0.0 +22271,40,18.4,45,0.0 +22271,14,23.25,6,0.0 +22271,76,18,7,0.0 +22271,48,12.75,38,0.0 +22271,52,7,25,0.0 +22271,15,15.5,10,0.0 +22271,44,19.45,6,0.0 +22271,19,9.2,12,0.0 +22271,49,20,44,0.0 +22271,32,32,34,0.0 +22271,24,4.5,46,0.0 +22271,37,26,8,0.0 +22271,6,25,37,0.0 +22271,57,19.5,1,0.0 +22271,7,30,33,0.0 +22271,36,19,45,0.0 +22271,35,18,7,0.0 +22271,26,31.23,43,0.0 +22271,38,263.5,6,0.0 +22272,21,10,14,0.0 +22272,23,9,42,0.0 +22272,24,4.5,1,0.0 +22272,69,36,27,0.0 +22272,16,17.45,14,0.0 +22272,52,7,18,0.0 +22272,12,38,47,0.0 +22272,48,12.75,41,0.0 +22272,32,32,13,0.0 +22272,30,25.89,9,0.0 +22272,15,15.5,40,0.0 +22272,4,22,7,0.0 +22272,11,21,2,0.0 +22272,7,30,21,0.0 +22272,8,40,32,0.0 +22272,17,39,40,0.0 +22272,40,18.4,3,0.0 +22272,9,97,45,0.0 +22272,51,53,44,0.0 +22272,13,6,37,0.0 +22272,57,19.5,45,0.0 +22272,1,18,49,0.0 +22272,27,43.9,43,0.0 +22272,6,25,5,0.0 +22272,77,13,25,0.0 +22272,45,9.5,41,0.0 +22272,64,33.25,26,0.0 +22272,62,49.3,28,0.0 +22272,46,12,25,0.0 +22272,3,10,26,0.0 +22272,58,13.25,2,0.0 +22272,34,14,40,0.0 +22272,68,12.5,43,0.0 +22272,41,9.65,4,0.0 +22272,44,19.45,45,0.0 +22272,31,12.5,34,0.0 +22272,53,32.8,22,0.0 +22272,61,28.5,12,0.0 +22272,50,16.25,48,0.0 +22272,28,45.6,12,0.0 +22272,73,15,44,0.0 +22272,42,14,37,0.0 +22272,26,31.23,46,0.0 +22272,2,19,47,0.0 +22272,10,31,6,0.0 +22272,19,9.2,12,0.0 +22272,35,18,25,0.0 +22272,18,62.5,2,0.0 +22272,72,34.8,42,0.0 +22272,60,34,41,0.0 +22272,71,21.5,8,0.0 +22272,75,7.75,26,0.0 +22272,14,23.25,3,0.0 +22272,37,26,37,0.0 +22272,47,9.5,20,0.0 +22272,5,21.35,25,0.0 +22272,65,21.05,2,0.0 +22272,66,17,49,0.0 +22272,55,24,30,0.0 +22272,54,7.45,43,0.0 +22272,49,20,10,0.0 +22272,74,10,9,0.0 +22272,33,2.5,29,0.0 +22272,67,14,1,0.0 +22273,52,7,17,0.0 +22273,39,18,8,0.0 +22273,56,38,9,0.0 +22273,55,24,41,0.0 +22273,20,81,11,0.0 +22273,68,12.5,31,0.0 +22273,17,39,41,0.0 +22273,28,45.6,43,0.0 +22273,33,2.5,40,0.0 +22273,38,263.5,46,0.0 +22273,31,12.5,44,0.0 +22273,14,23.25,37,0.0 +22273,41,9.65,49,0.0 +22273,4,22,45,0.0 +22273,59,55,28,0.0 +22273,11,21,33,0.0 +22273,61,28.5,18,0.0 +22273,10,31,7,0.0 +22273,53,32.8,21,0.0 +22273,2,19,11,0.0 +22273,13,6,29,0.0 +22273,32,32,8,0.0 +22273,16,17.45,45,0.0 +22273,24,4.5,15,0.0 +22273,12,38,18,0.0 +22273,7,30,49,0.0 +22273,73,15,19,0.0 +22273,36,19,34,0.0 +22273,27,43.9,50,0.0 +22273,57,19.5,4,0.0 +22273,44,19.45,20,0.0 +22273,77,13,27,0.0 +22273,54,7.45,23,0.0 +22273,29,123.79,43,0.0 +22273,72,34.8,42,0.0 +22273,75,7.75,26,0.0 +22273,65,21.05,34,0.0 +22273,26,31.23,21,0.0 +22273,69,36,32,0.0 +22273,48,12.75,33,0.0 +22273,66,17,35,0.0 +22273,18,62.5,16,0.0 +22273,19,9.2,40,0.0 +22273,58,13.25,32,0.0 +22273,40,18.4,29,0.0 +22273,63,43.9,21,0.0 +22273,8,40,28,0.0 +22273,34,14,23,0.0 +22273,5,21.35,42,0.0 +22273,43,46,10,0.0 +22273,62,49.3,44,0.0 +22273,51,53,45,0.0 +22273,3,10,15,0.0 +22273,64,33.25,28,0.0 +22273,25,14,10,0.0 +22273,23,9,26,0.0 +22273,76,18,46,0.0 +22273,45,9.5,42,0.0 +22273,74,10,25,0.0 +22273,6,25,8,0.0 +22273,1,18,47,0.0 +22273,37,26,36,0.0 +22273,49,20,18,0.0 +22273,9,97,42,0.0 +22273,15,15.5,22,0.0 +22273,22,21,31,0.0 +22273,70,15,13,0.0 +22273,47,9.5,37,0.0 +22273,30,25.89,38,0.0 +22273,46,12,1,0.0 +22273,50,16.25,8,0.0 +22273,67,14,33,0.0 +22274,23,9,10,0.0 +22274,34,14,11,0.0 +22274,74,10,14,0.0 +22274,19,9.2,16,0.0 +22274,4,22,6,0.0 +22274,15,15.5,20,0.0 +22274,32,32,6,0.0 +22274,9,97,10,0.0 +22274,51,53,29,0.0 +22274,12,38,6,0.0 +22274,13,6,26,0.0 +22274,49,20,45,0.0 +22274,39,18,26,0.0 +22274,62,49.3,44,0.0 +22274,55,24,22,0.0 +22274,68,12.5,49,0.0 +22274,5,21.35,13,0.0 +22274,22,21,23,0.0 +22274,48,12.75,49,0.0 +22274,20,81,45,0.0 +22274,50,16.25,38,0.0 +22274,36,19,33,0.0 +22274,63,43.9,24,0.0 +22274,31,12.5,23,0.0 +22274,1,18,32,0.0 +22274,46,12,37,0.0 +22274,25,14,28,0.0 +22274,27,43.9,16,0.0 +22274,18,62.5,43,0.0 +22274,16,17.45,1,0.0 +22274,77,13,24,0.0 +22274,65,21.05,13,0.0 +22274,7,30,35,0.0 +22275,7,30,2,0.0 +22275,77,13,42,0.0 +22275,37,26,20,0.0 +22275,5,21.35,8,0.0 +22275,6,25,50,0.0 +22275,76,18,35,0.0 +22275,64,33.25,21,0.0 +22275,58,13.25,7,0.0 +22275,47,9.5,42,0.0 +22275,55,24,31,0.0 +22275,1,18,6,0.0 +22275,18,62.5,15,0.0 +22275,8,40,45,0.0 +22275,25,14,17,0.0 +22275,13,6,22,0.0 +22275,43,46,23,0.0 +22275,52,7,47,0.0 +22275,36,19,13,0.0 +22275,44,19.45,4,0.0 +22275,41,9.65,31,0.0 +22275,34,14,36,0.0 +22275,46,12,9,0.0 +22275,75,7.75,46,0.0 +22275,22,21,14,0.0 +22275,14,23.25,42,0.0 +22275,63,43.9,21,0.0 +22275,67,14,20,0.0 +22275,54,7.45,32,0.0 +22275,27,43.9,4,0.0 +22275,66,17,25,0.0 +22275,60,34,34,0.0 +22275,56,38,48,0.0 +22275,17,39,18,0.0 +22275,31,12.5,19,0.0 +22275,53,32.8,31,0.0 +22275,11,21,39,0.0 +22275,74,10,34,0.0 +22275,35,18,23,0.0 +22275,72,34.8,47,0.0 +22275,61,28.5,7,0.0 +22275,69,36,22,0.0 +22275,12,38,50,0.0 +22275,23,9,11,0.0 +22275,71,21.5,41,0.0 +22275,48,12.75,23,0.0 +22275,73,15,50,0.0 +22275,40,18.4,38,0.0 +22275,45,9.5,3,0.0 +22275,65,21.05,31,0.0 +22275,21,10,10,0.0 +22275,33,2.5,17,0.0 +22275,3,10,32,0.0 +22275,38,263.5,15,0.0 +22275,32,32,10,0.0 +22275,59,55,1,0.0 +22275,9,97,40,0.0 +22275,28,45.6,18,0.0 +22275,16,17.45,13,0.0 +22276,70,15,13,0.0 +22276,16,17.45,24,0.0 +22276,22,21,25,0.0 +22276,43,46,40,0.0 +22276,63,43.9,29,0.0 +22276,50,16.25,28,0.0 +22276,7,30,3,0.0 +22276,55,24,50,0.0 +22276,48,12.75,39,0.0 +22276,58,13.25,29,0.0 +22276,67,14,48,0.0 +22276,25,14,33,0.0 +22276,28,45.6,35,0.0 +22276,75,7.75,40,0.0 +22277,15,15.5,27,0.0 +22277,75,7.75,23,0.0 +22277,76,18,47,0.0 +22277,66,17,8,0.0 +22277,9,97,30,0.0 +22277,59,55,10,0.0 +22277,19,9.2,42,0.0 +22277,2,19,26,0.0 +22277,65,21.05,3,0.0 +22277,50,16.25,1,0.0 +22277,23,9,20,0.0 +22277,61,28.5,3,0.0 +22277,40,18.4,30,0.0 +22277,34,14,33,0.0 +22277,32,32,13,0.0 +22277,56,38,30,0.0 +22277,49,20,2,0.0 +22278,14,23.25,2,0.0 +22278,8,40,40,0.0 +22278,47,9.5,4,0.0 +22278,55,24,35,0.0 +22278,40,18.4,38,0.0 +22278,24,4.5,15,0.0 +22278,32,32,2,0.0 +22278,65,21.05,9,0.0 +22278,3,10,21,0.0 +22278,22,21,45,0.0 +22278,45,9.5,3,0.0 +22278,7,30,22,0.0 +22278,25,14,15,0.0 +22278,17,39,9,0.0 +22278,68,12.5,32,0.0 +22278,77,13,23,0.0 +22278,72,34.8,36,0.0 +22278,42,14,25,0.0 +22278,57,19.5,9,0.0 +22278,41,9.65,13,0.0 +22278,30,25.89,43,0.0 +22278,13,6,35,0.0 +22278,43,46,18,0.0 +22278,35,18,1,0.0 +22278,31,12.5,48,0.0 +22278,15,15.5,17,0.0 +22278,48,12.75,31,0.0 +22278,33,2.5,23,0.0 +22278,70,15,7,0.0 +22278,44,19.45,49,0.0 +22278,34,14,42,0.0 +22278,73,15,31,0.0 +22278,61,28.5,37,0.0 +22278,76,18,4,0.0 +22278,56,38,28,0.0 +22278,66,17,50,0.0 +22278,20,81,30,0.0 +22278,71,21.5,25,0.0 +22278,67,14,18,0.0 +22278,2,19,43,0.0 +22278,11,21,17,0.0 +22278,19,9.2,47,0.0 +22278,52,7,14,0.0 +22278,37,26,50,0.0 +22278,5,21.35,2,0.0 +22278,1,18,4,0.0 +22278,9,97,5,0.0 +22278,38,263.5,13,0.0 +22278,46,12,18,0.0 +22278,29,123.79,6,0.0 +22278,16,17.45,42,0.0 +22278,62,49.3,31,0.0 +22278,27,43.9,48,0.0 +22278,54,7.45,19,0.0 +22278,21,10,50,0.0 +22278,49,20,46,0.0 +22278,26,31.23,3,0.0 +22278,23,9,19,0.0 +22278,74,10,16,0.0 +22278,12,38,34,0.0 +22278,58,13.25,12,0.0 +22278,39,18,31,0.0 +22278,28,45.6,17,0.0 +22278,10,31,13,0.0 +22278,50,16.25,19,0.0 +22278,75,7.75,43,0.0 +22278,36,19,49,0.0 +22278,69,36,1,0.0 +22278,64,33.25,20,0.0 +22278,60,34,34,0.0 +22278,59,55,19,0.0 +22278,4,22,34,0.0 +22278,6,25,41,0.0 +22278,53,32.8,46,0.0 +22278,51,53,40,0.0 +22279,74,10,26,0.0 +22279,15,15.5,22,0.0 +22279,16,17.45,26,0.0 +22279,53,32.8,40,0.0 +22279,70,15,50,0.0 +22279,3,10,12,0.0 +22279,11,21,32,0.0 +22279,65,21.05,45,0.0 +22279,27,43.9,32,0.0 +22279,54,7.45,25,0.0 +22279,50,16.25,45,0.0 +22279,28,45.6,2,0.0 +22279,31,12.5,3,0.0 +22279,6,25,35,0.0 +22279,20,81,38,0.0 +22279,61,28.5,10,0.0 +22279,44,19.45,19,0.0 +22279,17,39,32,0.0 +22279,2,19,14,0.0 +22279,40,18.4,33,0.0 +22279,60,34,36,0.0 +22279,35,18,10,0.0 +22279,48,12.75,47,0.0 +22279,23,9,13,0.0 +22279,26,31.23,45,0.0 +22279,76,18,23,0.0 +22279,42,14,31,0.0 +22279,34,14,38,0.0 +22279,66,17,40,0.0 +22279,19,9.2,20,0.0 +22279,51,53,46,0.0 +22279,52,7,10,0.0 +22279,39,18,6,0.0 +22279,57,19.5,10,0.0 +22279,68,12.5,34,0.0 +22279,22,21,44,0.0 +22279,25,14,16,0.0 +22279,29,123.79,31,0.0 +22279,30,25.89,16,0.0 +22279,10,31,2,0.0 +22279,43,46,22,0.0 +22279,71,21.5,25,0.0 +22279,75,7.75,23,0.0 +22279,8,40,25,0.0 +22279,64,33.25,30,0.0 +22279,73,15,22,0.0 +22279,59,55,26,0.0 +22279,5,21.35,7,0.0 +22279,14,23.25,4,0.0 +22279,49,20,35,0.0 +22279,32,32,15,0.0 +22279,56,38,43,0.0 +22279,9,97,16,0.0 +22279,77,13,10,0.0 +22279,47,9.5,17,0.0 +22279,4,22,9,0.0 +22279,12,38,26,0.0 +22279,21,10,22,0.0 +22279,67,14,37,0.0 +22280,21,10,45,0.0 +22280,53,32.8,10,0.0 +22280,37,26,9,0.0 +22280,16,17.45,44,0.0 +22280,33,2.5,41,0.0 +22280,54,7.45,35,0.0 +22280,70,15,9,0.0 +22280,42,14,31,0.0 +22280,52,7,25,0.0 +22280,57,19.5,40,0.0 +22280,51,53,1,0.0 +22280,71,21.5,23,0.0 +22280,32,32,18,0.0 +22280,72,34.8,29,0.0 +22280,44,19.45,24,0.0 +22280,40,18.4,11,0.0 +22280,22,21,9,0.0 +22280,14,23.25,23,0.0 +22280,20,81,2,0.0 +22280,31,12.5,46,0.0 +22280,46,12,26,0.0 +22281,1,18,4,0.0 +22281,8,40,28,0.0 +22281,11,21,26,0.0 +22281,53,32.8,43,0.0 +22281,36,19,42,0.0 +22281,45,9.5,35,0.0 +22281,17,39,43,0.0 +22281,76,18,48,0.0 +22281,19,9.2,19,0.0 +22281,56,38,21,0.0 +22281,10,31,44,0.0 +22281,42,14,23,0.0 +22281,38,263.5,21,0.0 +22281,26,31.23,15,0.0 +22281,49,20,7,0.0 +22281,65,21.05,8,0.0 +22281,77,13,19,0.0 +22281,14,23.25,17,0.0 +22281,18,62.5,23,0.0 +22281,67,14,18,0.0 +22281,70,15,20,0.0 +22281,31,12.5,1,0.0 +22281,72,34.8,34,0.0 +22281,2,19,11,0.0 +22281,74,10,44,0.0 +22281,50,16.25,25,0.0 +22281,21,10,31,0.0 +22281,5,21.35,48,0.0 +22281,61,28.5,37,0.0 +22281,6,25,49,0.0 +22281,55,24,18,0.0 +22281,12,38,35,0.0 +22281,60,34,25,0.0 +22281,22,21,50,0.0 +22281,40,18.4,35,0.0 +22281,46,12,42,0.0 +22281,54,7.45,41,0.0 +22281,35,18,45,0.0 +22281,28,45.6,25,0.0 +22281,3,10,21,0.0 +22281,20,81,31,0.0 +22281,63,43.9,30,0.0 +22281,43,46,42,0.0 +22281,15,15.5,16,0.0 +22281,66,17,20,0.0 +22281,30,25.89,47,0.0 +22281,33,2.5,18,0.0 +22282,20,81,29,0.0 +22282,53,32.8,35,0.0 +22282,47,9.5,42,0.0 +22282,43,46,12,0.0 +22282,28,45.6,48,0.0 +22282,56,38,47,0.0 +22282,58,13.25,22,0.0 +22282,16,17.45,30,0.0 +22282,11,21,19,0.0 +22282,9,97,44,0.0 +22282,67,14,17,0.0 +22282,75,7.75,3,0.0 +22282,76,18,9,0.0 +22282,27,43.9,3,0.0 +22282,7,30,39,0.0 +22282,39,18,24,0.0 +22282,52,7,28,0.0 +22282,71,21.5,39,0.0 +22282,68,12.5,6,0.0 +22282,66,17,29,0.0 +22282,40,18.4,34,0.0 +22282,13,6,28,0.0 +22282,23,9,2,0.0 +22282,10,31,33,0.0 +22282,69,36,28,0.0 +22282,74,10,6,0.0 +22282,54,7.45,7,0.0 +22282,61,28.5,36,0.0 +22282,55,24,24,0.0 +22282,34,14,32,0.0 +22282,5,21.35,16,0.0 +22282,3,10,35,0.0 +22282,2,19,46,0.0 +22282,50,16.25,25,0.0 +22282,31,12.5,33,0.0 +22282,48,12.75,25,0.0 +22282,73,15,2,0.0 +22282,59,55,50,0.0 +22282,19,9.2,2,0.0 +22282,42,14,30,0.0 +22282,57,19.5,10,0.0 +22282,41,9.65,39,0.0 +22282,21,10,23,0.0 +22282,14,23.25,2,0.0 +22282,1,18,28,0.0 +22282,60,34,40,0.0 +22282,77,13,1,0.0 +22282,22,21,9,0.0 +22282,62,49.3,12,0.0 +22282,8,40,41,0.0 +22282,64,33.25,49,0.0 +22282,15,15.5,18,0.0 +22282,12,38,37,0.0 +22282,37,26,39,0.0 +22282,51,53,23,0.0 +22282,32,32,6,0.0 +22282,33,2.5,8,0.0 +22282,26,31.23,44,0.0 +22282,30,25.89,34,0.0 +22282,35,18,9,0.0 +22282,25,14,43,0.0 +22282,63,43.9,21,0.0 +22282,4,22,41,0.0 +22282,36,19,31,0.0 +22282,17,39,31,0.0 +22282,18,62.5,15,0.0 +22282,29,123.79,31,0.0 +22283,74,10,11,0.0 +22283,22,21,34,0.0 +22283,13,6,6,0.0 +22283,62,49.3,45,0.0 +22283,73,15,5,0.0 +22283,30,25.89,25,0.0 +22283,45,9.5,48,0.0 +22283,8,40,39,0.0 +22283,3,10,18,0.0 +22283,51,53,43,0.0 +22283,2,19,41,0.0 +22283,34,14,12,0.0 +22283,23,9,3,0.0 +22283,17,39,10,0.0 +22283,68,12.5,25,0.0 +22283,77,13,10,0.0 +22283,40,18.4,38,0.0 +22283,75,7.75,18,0.0 +22283,72,34.8,27,0.0 +22283,60,34,12,0.0 +22283,48,12.75,47,0.0 +22283,37,26,34,0.0 +22283,16,17.45,16,0.0 +22283,47,9.5,10,0.0 +22283,46,12,8,0.0 +22283,29,123.79,30,0.0 +22283,54,7.45,16,0.0 +22283,49,20,31,0.0 +22283,19,9.2,45,0.0 +22283,55,24,36,0.0 +22283,15,15.5,18,0.0 +22283,70,15,50,0.0 +22283,11,21,38,0.0 +22283,7,30,49,0.0 +22283,33,2.5,20,0.0 +22283,63,43.9,4,0.0 +22283,41,9.65,30,0.0 +22283,27,43.9,36,0.0 +22283,24,4.5,35,0.0 +22283,32,32,48,0.0 +22283,71,21.5,3,0.0 +22283,58,13.25,25,0.0 +22283,1,18,27,0.0 +22283,4,22,31,0.0 +22283,76,18,6,0.0 +22283,21,10,47,0.0 +22283,44,19.45,47,0.0 +22283,28,45.6,46,0.0 +22283,39,18,9,0.0 +22283,59,55,30,0.0 +22283,26,31.23,41,0.0 +22283,42,14,37,0.0 +22283,65,21.05,26,0.0 +22283,6,25,24,0.0 +22283,56,38,25,0.0 +22283,20,81,15,0.0 +22283,36,19,32,0.0 +22283,14,23.25,28,0.0 +22283,57,19.5,23,0.0 +22283,25,14,22,0.0 +22283,31,12.5,42,0.0 +22283,67,14,46,0.0 +22283,9,97,16,0.0 +22283,18,62.5,32,0.0 +22283,69,36,36,0.0 +22283,52,7,42,0.0 +22284,61,28.5,50,0.0 +22284,2,19,42,0.0 +22284,13,6,39,0.0 +22284,62,49.3,42,0.0 +22284,8,40,29,0.0 +22284,53,32.8,47,0.0 +22284,20,81,48,0.0 +22284,74,10,43,0.0 +22284,48,12.75,14,0.0 +22284,27,43.9,6,0.0 +22284,1,18,31,0.0 +22284,51,53,26,0.0 +22284,5,21.35,22,0.0 +22284,55,24,45,0.0 +22284,12,38,33,0.0 +22284,11,21,11,0.0 +22284,22,21,17,0.0 +22284,9,97,14,0.0 +22284,18,62.5,7,0.0 +22284,52,7,31,0.0 +22284,7,30,17,0.0 +22284,63,43.9,25,0.0 +22284,54,7.45,33,0.0 +22284,41,9.65,16,0.0 +22284,58,13.25,27,0.0 +22284,16,17.45,28,0.0 +22284,4,22,16,0.0 +22284,14,23.25,44,0.0 +22284,35,18,10,0.0 +22284,28,45.6,38,0.0 +22284,71,21.5,49,0.0 +22284,66,17,36,0.0 +22284,19,9.2,36,0.0 +22284,44,19.45,12,0.0 +22284,49,20,4,0.0 +22284,23,9,34,0.0 +22284,72,34.8,42,0.0 +22284,40,18.4,47,0.0 +22284,47,9.5,17,0.0 +22284,29,123.79,34,0.0 +22284,50,16.25,5,0.0 +22284,46,12,31,0.0 +22284,43,46,10,0.0 +22284,24,4.5,16,0.0 +22284,77,13,27,0.0 +22284,21,10,35,0.0 +22284,17,39,7,0.0 +22284,69,36,12,0.0 +22284,25,14,9,0.0 +22284,75,7.75,9,0.0 +22284,65,21.05,43,0.0 +22284,67,14,50,0.0 +22284,10,31,20,0.0 +22284,56,38,43,0.0 +22284,57,19.5,41,0.0 +22284,26,31.23,25,0.0 +22284,59,55,45,0.0 +22284,42,14,16,0.0 +22284,45,9.5,44,0.0 +22284,68,12.5,28,0.0 +22284,32,32,14,0.0 +22284,70,15,13,0.0 +22284,15,15.5,37,0.0 +22284,30,25.89,47,0.0 +22284,36,19,24,0.0 +22284,38,263.5,39,0.0 +22284,39,18,17,0.0 +22284,60,34,31,0.0 +22284,33,2.5,7,0.0 +22284,6,25,47,0.0 +22285,17,39,11,0.0 +22285,33,2.5,11,0.0 +22285,18,62.5,39,0.0 +22285,76,18,15,0.0 +22285,45,9.5,27,0.0 +22285,31,12.5,49,0.0 +22285,36,19,44,0.0 +22285,51,53,1,0.0 +22285,54,7.45,32,0.0 +22285,8,40,40,0.0 +22285,48,12.75,17,0.0 +22285,25,14,48,0.0 +22285,28,45.6,21,0.0 +22285,14,23.25,48,0.0 +22285,49,20,25,0.0 +22285,12,38,42,0.0 +22285,61,28.5,38,0.0 +22285,39,18,11,0.0 +22285,64,33.25,10,0.0 +22285,73,15,42,0.0 +22285,29,123.79,35,0.0 +22285,77,13,47,0.0 +22285,2,19,42,0.0 +22285,50,16.25,34,0.0 +22285,23,9,7,0.0 +22285,3,10,31,0.0 +22285,26,31.23,20,0.0 +22285,32,32,18,0.0 +22285,53,32.8,35,0.0 +22285,47,9.5,22,0.0 +22285,60,34,29,0.0 +22285,20,81,26,0.0 +22286,33,2.5,31,0.0 +22286,35,18,33,0.0 +22286,71,21.5,37,0.0 +22286,25,14,38,0.0 +22286,14,23.25,1,0.0 +22286,44,19.45,8,0.0 +22286,40,18.4,47,0.0 +22286,72,34.8,29,0.0 +22286,57,19.5,4,0.0 +22286,45,9.5,18,0.0 +22286,58,13.25,29,0.0 +22286,64,33.25,14,0.0 +22286,13,6,50,0.0 +22286,67,14,42,0.0 +22286,62,49.3,46,0.0 +22286,26,31.23,15,0.0 +22286,5,21.35,9,0.0 +22286,3,10,25,0.0 +22286,41,9.65,31,0.0 +22286,51,53,29,0.0 +22286,46,12,12,0.0 +22286,65,21.05,1,0.0 +22286,15,15.5,30,0.0 +22286,24,4.5,31,0.0 +22286,74,10,8,0.0 +22286,9,97,10,0.0 +22286,18,62.5,36,0.0 +22286,66,17,49,0.0 +22286,10,31,3,0.0 +22286,54,7.45,26,0.0 +22286,1,18,22,0.0 +22286,20,81,27,0.0 +22286,42,14,40,0.0 +22286,21,10,26,0.0 +22286,2,19,21,0.0 +22286,11,21,18,0.0 +22286,22,21,29,0.0 +22286,30,25.89,47,0.0 +22286,59,55,6,0.0 +22286,4,22,47,0.0 +22286,60,34,17,0.0 +22286,76,18,26,0.0 +22286,75,7.75,6,0.0 +22286,37,26,7,0.0 +22286,29,123.79,34,0.0 +22286,39,18,15,0.0 +22286,48,12.75,36,0.0 +22286,36,19,33,0.0 +22286,31,12.5,8,0.0 +22286,56,38,27,0.0 +22286,38,263.5,16,0.0 +22286,77,13,38,0.0 +22286,68,12.5,12,0.0 +22286,61,28.5,24,0.0 +22286,34,14,31,0.0 +22286,43,46,28,0.0 +22286,23,9,34,0.0 +22286,70,15,29,0.0 +22286,63,43.9,45,0.0 +22286,47,9.5,22,0.0 +22286,73,15,30,0.0 +22286,50,16.25,20,0.0 +22286,6,25,29,0.0 +22286,32,32,25,0.0 +22286,53,32.8,35,0.0 +22286,27,43.9,20,0.0 +22286,8,40,1,0.0 +22287,67,14,27,0.0 +22287,8,40,10,0.0 +22287,51,53,23,0.0 +22287,69,36,29,0.0 +22287,57,19.5,15,0.0 +22287,7,30,2,0.0 +22287,37,26,25,0.0 +22287,72,34.8,48,0.0 +22287,61,28.5,20,0.0 +22287,24,4.5,8,0.0 +22287,33,2.5,20,0.0 +22287,68,12.5,17,0.0 +22287,43,46,38,0.0 +22287,39,18,37,0.0 +22287,64,33.25,48,0.0 +22287,63,43.9,33,0.0 +22287,48,12.75,23,0.0 +22287,23,9,28,0.0 +22287,11,21,39,0.0 +22287,62,49.3,7,0.0 +22287,12,38,9,0.0 +22287,2,19,50,0.0 +22287,70,15,21,0.0 +22287,52,7,43,0.0 +22287,16,17.45,21,0.0 +22287,38,263.5,41,0.0 +22287,27,43.9,2,0.0 +22287,21,10,45,0.0 +22287,18,62.5,4,0.0 +22287,65,21.05,12,0.0 +22287,30,25.89,28,0.0 +22287,42,14,23,0.0 +22287,58,13.25,24,0.0 +22287,50,16.25,23,0.0 +22287,14,23.25,6,0.0 +22287,49,20,30,0.0 +22287,4,22,5,0.0 +22287,34,14,14,0.0 +22287,6,25,37,0.0 +22287,9,97,36,0.0 +22287,71,21.5,6,0.0 +22287,26,31.23,32,0.0 +22287,3,10,12,0.0 +22287,36,19,5,0.0 +22287,66,17,3,0.0 +22287,35,18,41,0.0 +22287,77,13,50,0.0 +22287,10,31,23,0.0 +22287,32,32,32,0.0 +22287,75,7.75,19,0.0 +22287,76,18,25,0.0 +22287,22,21,5,0.0 +22287,54,7.45,31,0.0 +22287,13,6,27,0.0 +22287,41,9.65,21,0.0 +22287,25,14,12,0.0 +22287,19,9.2,14,0.0 +22287,5,21.35,36,0.0 +22287,47,9.5,35,0.0 +22287,29,123.79,35,0.0 +22287,55,24,49,0.0 +22287,53,32.8,49,0.0 +22287,31,12.5,15,0.0 +22287,28,45.6,8,0.0 +22287,20,81,40,0.0 +22287,60,34,27,0.0 +22287,45,9.5,13,0.0 +22287,73,15,34,0.0 +22287,56,38,43,0.0 +22288,53,32.8,45,0.0 +22288,24,4.5,50,0.0 +22288,61,28.5,11,0.0 +22288,72,34.8,44,0.0 +22288,49,20,7,0.0 +22288,22,21,31,0.0 +22288,29,123.79,33,0.0 +22288,75,7.75,2,0.0 +22288,13,6,26,0.0 +22288,55,24,49,0.0 +22289,19,9.2,33,0.0 +22289,12,38,14,0.0 +22289,7,30,44,0.0 +22289,25,14,41,0.0 +22289,52,7,10,0.0 +22289,73,15,50,0.0 +22289,75,7.75,9,0.0 +22289,74,10,7,0.0 +22289,2,19,16,0.0 +22289,62,49.3,21,0.0 +22289,70,15,6,0.0 +22289,48,12.75,25,0.0 +22289,57,19.5,50,0.0 +22289,43,46,50,0.0 +22289,20,81,10,0.0 +22289,33,2.5,27,0.0 +22289,31,12.5,41,0.0 +22289,1,18,2,0.0 +22289,55,24,45,0.0 +22289,8,40,12,0.0 +22289,45,9.5,37,0.0 +22289,50,16.25,4,0.0 +22289,10,31,40,0.0 +22289,9,97,40,0.0 +22289,77,13,9,0.0 +22289,30,25.89,39,0.0 +22289,28,45.6,30,0.0 +22290,77,13,21,0.0 +22290,43,46,41,0.0 +22290,60,34,41,0.0 +22290,33,2.5,18,0.0 +22290,9,97,32,0.0 +22290,1,18,30,0.0 +22290,40,18.4,30,0.0 +22290,54,7.45,45,0.0 +22290,56,38,29,0.0 +22290,32,32,14,0.0 +22290,51,53,40,0.0 +22290,52,7,42,0.0 +22290,21,10,50,0.0 +22290,4,22,34,0.0 +22290,46,12,50,0.0 +22290,68,12.5,1,0.0 +22290,55,24,39,0.0 +22290,25,14,32,0.0 +22290,10,31,42,0.0 +22290,67,14,30,0.0 +22290,18,62.5,23,0.0 +22290,7,30,35,0.0 +22290,49,20,23,0.0 +22290,13,6,12,0.0 +22290,71,21.5,36,0.0 +22290,17,39,13,0.0 +22290,36,19,14,0.0 +22290,69,36,6,0.0 +22290,23,9,5,0.0 +22290,41,9.65,39,0.0 +22290,65,21.05,24,0.0 +22290,20,81,49,0.0 +22290,63,43.9,5,0.0 +22290,15,15.5,23,0.0 +22290,48,12.75,29,0.0 +22290,3,10,28,0.0 +22290,50,16.25,45,0.0 +22291,45,9.5,23,0.0 +22291,23,9,30,0.0 +22291,59,55,27,0.0 +22291,30,25.89,36,0.0 +22291,7,30,18,0.0 +22291,28,45.6,23,0.0 +22291,4,22,23,0.0 +22291,74,10,45,0.0 +22291,69,36,44,0.0 +22291,66,17,24,0.0 +22291,58,13.25,32,0.0 +22291,33,2.5,46,0.0 +22291,40,18.4,36,0.0 +22291,1,18,24,0.0 +22291,77,13,43,0.0 +22291,63,43.9,12,0.0 +22291,68,12.5,14,0.0 +22291,18,62.5,6,0.0 +22291,12,38,33,0.0 +22291,71,21.5,30,0.0 +22291,61,28.5,39,0.0 +22291,34,14,18,0.0 +22291,48,12.75,16,0.0 +22291,6,25,17,0.0 +22291,2,19,24,0.0 +22291,43,46,3,0.0 +22291,32,32,16,0.0 +22291,70,15,28,0.0 +22291,8,40,31,0.0 +22291,36,19,20,0.0 +22291,75,7.75,2,0.0 +22291,13,6,37,0.0 +22291,22,21,10,0.0 +22291,73,15,6,0.0 +22291,57,19.5,6,0.0 +22291,52,7,25,0.0 +22291,17,39,33,0.0 +22291,16,17.45,18,0.0 +22291,11,21,11,0.0 +22291,10,31,48,0.0 +22291,39,18,40,0.0 +22291,76,18,3,0.0 +22291,44,19.45,41,0.0 +22291,62,49.3,7,0.0 +22291,41,9.65,16,0.0 +22291,26,31.23,31,0.0 +22291,38,263.5,9,0.0 +22291,9,97,18,0.0 +22291,3,10,43,0.0 +22291,72,34.8,32,0.0 +22291,31,12.5,39,0.0 +22291,64,33.25,44,0.0 +22291,29,123.79,30,0.0 +22291,21,10,46,0.0 +22291,46,12,33,0.0 +22291,55,24,36,0.0 +22291,42,14,5,0.0 +22291,50,16.25,23,0.0 +22291,25,14,30,0.0 +22291,51,53,46,0.0 +22291,56,38,14,0.0 +22291,27,43.9,46,0.0 +22291,19,9.2,35,0.0 +22291,49,20,30,0.0 +22291,20,81,22,0.0 +22291,65,21.05,29,0.0 +22291,37,26,38,0.0 +22291,15,15.5,24,0.0 +22291,53,32.8,28,0.0 +22291,5,21.35,32,0.0 +22291,67,14,36,0.0 +22291,54,7.45,33,0.0 +22291,47,9.5,47,0.0 +22292,7,30,45,0.0 +22292,70,15,43,0.0 +22292,21,10,47,0.0 +22292,10,31,18,0.0 +22292,37,26,49,0.0 +22292,62,49.3,26,0.0 +22292,17,39,18,0.0 +22292,58,13.25,31,0.0 +22292,68,12.5,30,0.0 +22292,27,43.9,33,0.0 +22292,9,97,5,0.0 +22292,60,34,36,0.0 +22292,55,24,11,0.0 +22292,24,4.5,43,0.0 +22292,28,45.6,25,0.0 +22292,71,21.5,36,0.0 +22292,76,18,33,0.0 +22292,19,9.2,34,0.0 +22292,8,40,13,0.0 +22292,47,9.5,49,0.0 +22292,44,19.45,49,0.0 +22292,49,20,36,0.0 +22292,77,13,35,0.0 +22292,5,21.35,16,0.0 +22292,75,7.75,19,0.0 +22293,75,7.75,45,0.0 +22293,37,26,21,0.0 +22293,24,4.5,22,0.0 +22293,8,40,19,0.0 +22293,55,24,8,0.0 +22293,74,10,28,0.0 +22293,44,19.45,16,0.0 +22293,26,31.23,14,0.0 +22293,28,45.6,27,0.0 +22293,35,18,34,0.0 +22293,30,25.89,7,0.0 +22293,3,10,15,0.0 +22293,42,14,17,0.0 +22293,17,39,50,0.0 +22293,52,7,4,0.0 +22293,51,53,50,0.0 +22293,31,12.5,50,0.0 +22293,41,9.65,29,0.0 +22293,15,15.5,20,0.0 +22293,18,62.5,1,0.0 +22293,63,43.9,6,0.0 +22293,59,55,46,0.0 +22293,11,21,5,0.0 +22293,61,28.5,38,0.0 +22293,20,81,10,0.0 +22293,47,9.5,48,0.0 +22293,12,38,38,0.0 +22293,39,18,15,0.0 +22293,64,33.25,20,0.0 +22293,29,123.79,43,0.0 +22293,46,12,38,0.0 +22293,38,263.5,12,0.0 +22293,70,15,35,0.0 +22293,33,2.5,24,0.0 +22293,4,22,24,0.0 +22293,2,19,27,0.0 +22293,62,49.3,37,0.0 +22293,27,43.9,37,0.0 +22293,9,97,31,0.0 +22293,57,19.5,10,0.0 +22293,45,9.5,13,0.0 +22293,58,13.25,14,0.0 +22293,50,16.25,28,0.0 +22293,71,21.5,20,0.0 +22293,7,30,18,0.0 +22293,19,9.2,40,0.0 +22293,25,14,33,0.0 +22293,22,21,39,0.0 +22293,5,21.35,37,0.0 +22293,65,21.05,23,0.0 +22293,23,9,43,0.0 +22293,56,38,27,0.0 +22293,10,31,10,0.0 +22293,40,18.4,26,0.0 +22293,13,6,4,0.0 +22293,54,7.45,6,0.0 +22293,66,17,25,0.0 +22293,48,12.75,15,0.0 +22293,32,32,47,0.0 +22293,34,14,35,0.0 +22293,68,12.5,6,0.0 +22293,76,18,41,0.0 +22293,36,19,42,0.0 +22293,73,15,10,0.0 +22294,17,39,47,0.0 +22294,45,9.5,7,0.0 +22294,16,17.45,25,0.0 +22294,28,45.6,2,0.0 +22294,42,14,29,0.0 +22294,14,23.25,11,0.0 +22294,9,97,41,0.0 +22294,61,28.5,22,0.0 +22294,37,26,7,0.0 +22294,33,2.5,28,0.0 +22294,51,53,32,0.0 +22294,4,22,29,0.0 +22294,6,25,28,0.0 +22294,23,9,16,0.0 +22294,77,13,40,0.0 +22294,50,16.25,40,0.0 +22294,7,30,42,0.0 +22294,30,25.89,7,0.0 +22294,27,43.9,15,0.0 +22294,65,21.05,50,0.0 +22294,69,36,32,0.0 +22294,55,24,16,0.0 +22294,75,7.75,22,0.0 +22294,18,62.5,44,0.0 +22294,36,19,6,0.0 +22294,2,19,26,0.0 +22294,60,34,9,0.0 +22294,29,123.79,21,0.0 +22294,63,43.9,49,0.0 +22294,46,12,34,0.0 +22294,71,21.5,40,0.0 +22294,35,18,43,0.0 +22294,31,12.5,22,0.0 +22294,12,38,2,0.0 +22294,8,40,45,0.0 +22294,39,18,5,0.0 +22294,21,10,29,0.0 +22294,26,31.23,37,0.0 +22294,58,13.25,49,0.0 +22294,74,10,40,0.0 +22294,59,55,42,0.0 +22294,72,34.8,5,0.0 +22295,15,15.5,7,0.0 +22295,28,45.6,21,0.0 +22295,57,19.5,49,0.0 +22295,16,17.45,9,0.0 +22295,20,81,5,0.0 +22295,70,15,33,0.0 +22295,19,9.2,40,0.0 +22295,4,22,46,0.0 +22295,3,10,40,0.0 +22295,48,12.75,33,0.0 +22295,8,40,12,0.0 +22295,46,12,12,0.0 +22295,38,263.5,38,0.0 +22295,25,14,44,0.0 +22295,60,34,2,0.0 +22295,62,49.3,1,0.0 +22295,18,62.5,1,0.0 +22295,71,21.5,7,0.0 +22295,77,13,19,0.0 +22295,55,24,17,0.0 +22295,7,30,13,0.0 +22295,67,14,46,0.0 +22296,71,21.5,37,0.0 +22296,40,18.4,4,0.0 +22296,27,43.9,32,0.0 +22296,38,263.5,36,0.0 +22296,11,21,32,0.0 +22296,45,9.5,37,0.0 +22296,65,21.05,21,0.0 +22296,16,17.45,26,0.0 +22296,61,28.5,21,0.0 +22296,57,19.5,8,0.0 +22296,23,9,21,0.0 +22296,6,25,9,0.0 +22296,28,45.6,31,0.0 +22296,53,32.8,20,0.0 +22296,8,40,18,0.0 +22296,39,18,27,0.0 +22296,54,7.45,33,0.0 +22296,25,14,21,0.0 +22296,52,7,5,0.0 +22296,36,19,23,0.0 +22296,67,14,48,0.0 +22296,2,19,40,0.0 +22296,76,18,18,0.0 +22296,51,53,19,0.0 +22296,74,10,27,0.0 +22296,68,12.5,6,0.0 +22296,20,81,26,0.0 +22296,70,15,20,0.0 +22296,10,31,33,0.0 +22296,59,55,25,0.0 +22296,56,38,35,0.0 +22296,4,22,35,0.0 +22296,37,26,38,0.0 +22296,32,32,38,0.0 +22296,46,12,21,0.0 +22296,33,2.5,28,0.0 +22296,5,21.35,26,0.0 +22296,26,31.23,49,0.0 +22296,29,123.79,2,0.0 +22296,3,10,15,0.0 +22296,47,9.5,41,0.0 +22296,55,24,6,0.0 +22296,48,12.75,45,0.0 +22296,24,4.5,6,0.0 +22296,21,10,44,0.0 +22296,77,13,3,0.0 +22296,63,43.9,4,0.0 +22296,17,39,45,0.0 +22296,31,12.5,23,0.0 +22296,62,49.3,3,0.0 +22296,19,9.2,12,0.0 +22296,9,97,38,0.0 +22296,30,25.89,25,0.0 +22296,35,18,48,0.0 +22296,34,14,29,0.0 +22296,69,36,5,0.0 +22296,7,30,26,0.0 +22296,41,9.65,14,0.0 +22296,12,38,37,0.0 +22296,22,21,36,0.0 +22296,50,16.25,45,0.0 +22296,43,46,43,0.0 +22296,75,7.75,45,0.0 +22296,72,34.8,47,0.0 +22296,15,15.5,42,0.0 +22296,44,19.45,3,0.0 +22296,1,18,35,0.0 +22296,18,62.5,46,0.0 +22296,64,33.25,40,0.0 +22296,42,14,6,0.0 +22296,49,20,20,0.0 +22296,13,6,12,0.0 +22297,6,25,8,0.0 +22297,39,18,24,0.0 +22297,14,23.25,44,0.0 +22297,59,55,43,0.0 +22297,45,9.5,16,0.0 +22297,20,81,7,0.0 +22297,3,10,17,0.0 +22297,70,15,50,0.0 +22297,19,9.2,50,0.0 +22297,34,14,20,0.0 +22297,4,22,24,0.0 +22297,27,43.9,29,0.0 +22297,13,6,36,0.0 +22297,65,21.05,23,0.0 +22297,58,13.25,8,0.0 +22297,69,36,40,0.0 +22297,15,15.5,10,0.0 +22297,57,19.5,34,0.0 +22297,67,14,15,0.0 +22297,35,18,39,0.0 +22297,73,15,50,0.0 +22297,22,21,12,0.0 +22297,7,30,4,0.0 +22297,66,17,45,0.0 +22297,12,38,28,0.0 +22297,62,49.3,39,0.0 +22297,77,13,44,0.0 +22297,16,17.45,30,0.0 +22297,25,14,32,0.0 +22297,37,26,32,0.0 +22297,51,53,34,0.0 +22297,48,12.75,44,0.0 +22297,32,32,6,0.0 +22297,75,7.75,35,0.0 +22297,17,39,9,0.0 +22297,49,20,10,0.0 +22297,23,9,7,0.0 +22297,71,21.5,46,0.0 +22297,26,31.23,39,0.0 +22298,13,6,6,0.0 +22298,63,43.9,20,0.0 +22298,12,38,21,0.0 +22298,18,62.5,48,0.0 +22298,74,10,5,0.0 +22298,49,20,15,0.0 +22298,71,21.5,29,0.0 +22298,55,24,23,0.0 +22298,39,18,34,0.0 +22299,24,4.5,41,0.0 +22299,49,20,18,0.0 +22299,45,9.5,15,0.0 +22299,25,14,40,0.0 +22299,53,32.8,36,0.0 +22299,35,18,24,0.0 +22299,44,19.45,21,0.0 +22299,28,45.6,11,0.0 +22299,34,14,4,0.0 +22299,46,12,49,0.0 +22299,15,15.5,1,0.0 +22299,41,9.65,35,0.0 +22299,30,25.89,46,0.0 +22299,11,21,40,0.0 +22299,39,18,6,0.0 +22299,2,19,29,0.0 +22299,20,81,48,0.0 +22299,3,10,27,0.0 +22299,31,12.5,2,0.0 +22299,14,23.25,31,0.0 +22299,62,49.3,18,0.0 +22299,19,9.2,21,0.0 +22300,64,33.25,10,0.0 +22300,60,34,6,0.0 +22300,47,9.5,32,0.0 +22300,2,19,46,0.0 +22300,19,9.2,18,0.0 +22300,59,55,32,0.0 +22300,71,21.5,25,0.0 +22300,12,38,3,0.0 +22300,5,21.35,38,0.0 +22300,66,17,18,0.0 +22300,33,2.5,32,0.0 +22300,45,9.5,38,0.0 +22300,25,14,13,0.0 +22300,18,62.5,23,0.0 +22300,48,12.75,10,0.0 +22300,37,26,17,0.0 +22300,4,22,29,0.0 +22300,21,10,30,0.0 +22300,38,263.5,36,0.0 +22300,52,7,5,0.0 +22300,67,14,42,0.0 +22300,15,15.5,34,0.0 +22300,43,46,26,0.0 +22300,6,25,43,0.0 +22300,31,12.5,48,0.0 +22300,28,45.6,32,0.0 +22300,17,39,19,0.0 +22300,77,13,48,0.0 +22300,20,81,2,0.0 +22300,76,18,15,0.0 +22301,2,19,34,0.0 +22301,39,18,37,0.0 +22301,10,31,16,0.0 +22301,19,9.2,24,0.0 +22301,18,62.5,31,0.0 +22301,27,43.9,10,0.0 +22301,5,21.35,4,0.0 +22301,68,12.5,42,0.0 +22301,29,123.79,18,0.0 +22301,70,15,17,0.0 +22301,14,23.25,42,0.0 +22301,73,15,50,0.0 +22301,24,4.5,41,0.0 +22301,11,21,10,0.0 +22301,58,13.25,30,0.0 +22301,47,9.5,22,0.0 +22301,36,19,5,0.0 +22301,61,28.5,20,0.0 +22301,3,10,2,0.0 +22301,28,45.6,21,0.0 +22301,16,17.45,9,0.0 +22301,23,9,45,0.0 +22301,26,31.23,41,0.0 +22301,62,49.3,42,0.0 +22301,6,25,23,0.0 +22301,35,18,7,0.0 +22301,38,263.5,30,0.0 +22301,20,81,42,0.0 +22301,69,36,11,0.0 +22301,4,22,47,0.0 +22301,42,14,5,0.0 +22301,51,53,9,0.0 +22301,54,7.45,43,0.0 +22301,8,40,4,0.0 +22301,12,38,8,0.0 +22301,43,46,47,0.0 +22301,64,33.25,19,0.0 +22301,66,17,13,0.0 +22301,44,19.45,5,0.0 +22301,75,7.75,40,0.0 +22301,30,25.89,27,0.0 +22301,40,18.4,2,0.0 +22301,31,12.5,19,0.0 +22301,57,19.5,29,0.0 +22301,13,6,10,0.0 +22301,46,12,27,0.0 +22301,25,14,29,0.0 +22301,34,14,39,0.0 +22301,65,21.05,10,0.0 +22301,17,39,42,0.0 +22301,56,38,16,0.0 +22301,15,15.5,50,0.0 +22301,77,13,25,0.0 +22301,76,18,35,0.0 +22301,71,21.5,7,0.0 +22301,1,18,9,0.0 +22301,33,2.5,17,0.0 +22301,49,20,25,0.0 +22301,21,10,45,0.0 +22301,50,16.25,35,0.0 +22301,22,21,19,0.0 +22301,9,97,44,0.0 +22301,63,43.9,9,0.0 +22301,32,32,9,0.0 +22301,72,34.8,1,0.0 +22301,52,7,15,0.0 +22301,37,26,25,0.0 +22301,74,10,22,0.0 +22301,41,9.65,48,0.0 +22301,67,14,29,0.0 +22301,48,12.75,42,0.0 +22301,55,24,47,0.0 +22301,45,9.5,36,0.0 +22301,53,32.8,32,0.0 +22301,60,34,24,0.0 +22301,7,30,30,0.0 +22301,59,55,1,0.0 +22302,35,18,12,0.0 +22302,1,18,14,0.0 +22302,40,18.4,2,0.0 +22302,68,12.5,50,0.0 +22302,64,33.25,6,0.0 +22302,7,30,15,0.0 +22302,24,4.5,42,0.0 +22302,70,15,33,0.0 +22302,33,2.5,24,0.0 +22302,47,9.5,31,0.0 +22302,61,28.5,6,0.0 +22302,17,39,48,0.0 +22302,62,49.3,5,0.0 +22302,65,21.05,18,0.0 +22302,20,81,12,0.0 +22302,51,53,47,0.0 +22302,18,62.5,41,0.0 +22302,67,14,11,0.0 +22302,57,19.5,42,0.0 +22302,22,21,11,0.0 +22302,48,12.75,45,0.0 +22302,8,40,48,0.0 +22302,41,9.65,26,0.0 +22302,49,20,4,0.0 +22302,42,14,18,0.0 +22302,4,22,9,0.0 +22302,28,45.6,30,0.0 +22302,32,32,4,0.0 +22302,71,21.5,18,0.0 +22302,52,7,7,0.0 +22302,12,38,2,0.0 +22302,30,25.89,11,0.0 +22302,6,25,17,0.0 +22302,2,19,4,0.0 +22302,69,36,45,0.0 +22302,45,9.5,38,0.0 +22302,75,7.75,32,0.0 +22302,11,21,7,0.0 +22303,70,15,18,0.0 +22303,39,18,27,0.0 +22303,18,62.5,28,0.0 +22303,41,9.65,49,0.0 +22303,61,28.5,37,0.0 +22303,15,15.5,47,0.0 +22303,73,15,27,0.0 +22303,10,31,44,0.0 +22303,17,39,15,0.0 +22303,24,4.5,4,0.0 +22303,55,24,3,0.0 +22303,63,43.9,1,0.0 +22303,19,9.2,36,0.0 +22303,29,123.79,4,0.0 +22303,77,13,29,0.0 +22303,75,7.75,25,0.0 +22303,1,18,34,0.0 +22303,48,12.75,24,0.0 +22303,9,97,27,0.0 +22303,44,19.45,50,0.0 +22303,64,33.25,4,0.0 +22303,21,10,3,0.0 +22303,52,7,18,0.0 +22303,2,19,3,0.0 +22303,30,25.89,8,0.0 +22303,74,10,43,0.0 +22303,50,16.25,22,0.0 +22303,23,9,33,0.0 +22303,20,81,31,0.0 +22303,38,263.5,1,0.0 +22303,28,45.6,8,0.0 +22303,56,38,24,0.0 +22303,4,22,12,0.0 +22303,45,9.5,32,0.0 +22303,59,55,24,0.0 +22303,3,10,42,0.0 +22303,40,18.4,44,0.0 +22303,72,34.8,3,0.0 +22303,13,6,46,0.0 +22303,36,19,14,0.0 +22303,26,31.23,23,0.0 +22303,31,12.5,30,0.0 +22303,35,18,38,0.0 +22303,27,43.9,45,0.0 +22303,67,14,22,0.0 +22303,37,26,11,0.0 +22303,60,34,21,0.0 +22303,5,21.35,26,0.0 +22303,76,18,38,0.0 +22303,33,2.5,17,0.0 +22303,53,32.8,45,0.0 +22303,7,30,18,0.0 +22303,8,40,50,0.0 +22303,25,14,15,0.0 +22303,46,12,33,0.0 +22303,51,53,44,0.0 +22304,52,7,25,0.0 +22304,67,14,6,0.0 +22304,24,4.5,9,0.0 +22304,48,12.75,28,0.0 +22304,29,123.79,8,0.0 +22304,74,10,37,0.0 +22304,35,18,13,0.0 +22304,7,30,15,0.0 +22304,40,18.4,13,0.0 +22304,15,15.5,14,0.0 +22304,61,28.5,2,0.0 +22304,6,25,47,0.0 +22304,58,13.25,31,0.0 +22304,66,17,45,0.0 +22304,8,40,30,0.0 +22304,77,13,8,0.0 +22304,34,14,40,0.0 +22304,56,38,7,0.0 +22304,44,19.45,19,0.0 +22304,36,19,4,0.0 +22304,3,10,41,0.0 +22304,42,14,48,0.0 +22304,76,18,21,0.0 +22304,51,53,50,0.0 +22304,60,34,16,0.0 +22304,12,38,34,0.0 +22304,68,12.5,15,0.0 +22304,31,12.5,32,0.0 +22304,38,263.5,21,0.0 +22304,27,43.9,15,0.0 +22304,49,20,11,0.0 +22304,41,9.65,14,0.0 +22304,65,21.05,11,0.0 +22304,69,36,31,0.0 +22305,23,9,30,0.0 +22305,50,16.25,47,0.0 +22305,28,45.6,5,0.0 +22305,60,34,5,0.0 +22305,31,12.5,31,0.0 +22305,3,10,29,0.0 +22305,13,6,34,0.0 +22305,22,21,2,0.0 +22305,72,34.8,41,0.0 +22305,68,12.5,37,0.0 +22305,2,19,46,0.0 +22305,38,263.5,27,0.0 +22305,35,18,21,0.0 +22305,64,33.25,29,0.0 +22305,47,9.5,9,0.0 +22305,46,12,11,0.0 +22305,66,17,33,0.0 +22305,57,19.5,41,0.0 +22305,76,18,46,0.0 +22305,39,18,34,0.0 +22305,16,17.45,8,0.0 +22305,27,43.9,14,0.0 +22305,67,14,46,0.0 +22305,55,24,13,0.0 +22305,43,46,14,0.0 +22305,26,31.23,38,0.0 +22305,30,25.89,47,0.0 +22305,75,7.75,46,0.0 +22305,5,21.35,7,0.0 +22305,15,15.5,2,0.0 +22305,14,23.25,48,0.0 +22305,49,20,23,0.0 +22305,63,43.9,31,0.0 +22305,69,36,48,0.0 +22305,17,39,6,0.0 +22305,54,7.45,13,0.0 +22305,12,38,39,0.0 +22305,21,10,17,0.0 +22305,11,21,12,0.0 +22305,48,12.75,45,0.0 +22305,6,25,31,0.0 +22305,4,22,42,0.0 +22305,73,15,36,0.0 +22305,53,32.8,3,0.0 +22305,32,32,29,0.0 +22305,36,19,16,0.0 +22305,41,9.65,13,0.0 +22305,61,28.5,15,0.0 +22305,51,53,17,0.0 +22305,24,4.5,29,0.0 +22305,58,13.25,5,0.0 +22305,52,7,47,0.0 +22305,34,14,39,0.0 +22306,41,9.65,36,0.0 +22306,53,32.8,34,0.0 +22306,52,7,22,0.0 +22306,48,12.75,12,0.0 +22306,38,263.5,22,0.0 +22306,62,49.3,28,0.0 +22306,34,14,34,0.0 +22306,39,18,48,0.0 +22306,44,19.45,4,0.0 +22306,5,21.35,15,0.0 +22306,65,21.05,10,0.0 +22306,31,12.5,41,0.0 +22306,21,10,31,0.0 +22306,29,123.79,42,0.0 +22306,40,18.4,6,0.0 +22306,63,43.9,39,0.0 +22306,55,24,49,0.0 +22306,18,62.5,43,0.0 +22306,35,18,28,0.0 +22306,26,31.23,2,0.0 +22306,43,46,17,0.0 +22306,27,43.9,27,0.0 +22306,11,21,7,0.0 +22306,46,12,30,0.0 +22306,42,14,20,0.0 +22306,66,17,9,0.0 +22306,10,31,5,0.0 +22306,70,15,4,0.0 +22306,19,9.2,4,0.0 +22306,7,30,13,0.0 +22306,24,4.5,28,0.0 +22306,77,13,14,0.0 +22306,9,97,18,0.0 +22306,12,38,33,0.0 +22306,6,25,3,0.0 +22306,1,18,9,0.0 +22306,45,9.5,7,0.0 +22306,28,45.6,23,0.0 +22306,67,14,5,0.0 +22306,51,53,25,0.0 +22306,30,25.89,34,0.0 +22306,32,32,38,0.0 +22306,58,13.25,48,0.0 +22306,50,16.25,39,0.0 +22306,23,9,4,0.0 +22306,60,34,6,0.0 +22306,61,28.5,2,0.0 +22306,73,15,45,0.0 +22306,68,12.5,31,0.0 +22306,69,36,30,0.0 +22306,49,20,25,0.0 +22306,13,6,24,0.0 +22306,33,2.5,10,0.0 +22306,16,17.45,33,0.0 +22306,22,21,7,0.0 +22307,25,14,33,0.0 +22307,13,6,34,0.0 +22307,67,14,38,0.0 +22307,18,62.5,30,0.0 +22307,41,9.65,12,0.0 +22307,46,12,37,0.0 +22307,27,43.9,24,0.0 +22307,9,97,49,0.0 +22307,16,17.45,5,0.0 +22307,2,19,24,0.0 +22307,66,17,19,0.0 +22307,60,34,35,0.0 +22307,48,12.75,14,0.0 +22307,29,123.79,28,0.0 +22307,51,53,29,0.0 +22307,12,38,39,0.0 +22307,32,32,37,0.0 +22307,24,4.5,41,0.0 +22307,57,19.5,7,0.0 +22307,3,10,3,0.0 +22307,33,2.5,30,0.0 +22307,44,19.45,50,0.0 +22307,74,10,50,0.0 +22307,50,16.25,4,0.0 +22307,59,55,37,0.0 +22307,31,12.5,18,0.0 +22308,71,21.5,37,0.0 +22308,34,14,9,0.0 +22308,55,24,43,0.0 +22308,53,32.8,44,0.0 +22308,33,2.5,28,0.0 +22308,65,21.05,32,0.0 +22308,52,7,17,0.0 +22308,1,18,15,0.0 +22308,76,18,21,0.0 +22308,37,26,32,0.0 +22308,60,34,44,0.0 +22308,15,15.5,26,0.0 +22308,25,14,46,0.0 +22308,62,49.3,19,0.0 +22308,19,9.2,7,0.0 +22308,41,9.65,45,0.0 +22308,24,4.5,15,0.0 +22308,51,53,45,0.0 +22308,42,14,50,0.0 +22308,58,13.25,41,0.0 +22308,69,36,8,0.0 +22308,68,12.5,31,0.0 +22308,27,43.9,48,0.0 +22308,39,18,31,0.0 +22308,49,20,43,0.0 +22308,22,21,49,0.0 +22308,43,46,13,0.0 +22308,16,17.45,40,0.0 +22308,31,12.5,2,0.0 +22308,59,55,5,0.0 +22308,47,9.5,11,0.0 +22308,77,13,33,0.0 +22308,66,17,6,0.0 +22308,70,15,39,0.0 +22308,13,6,7,0.0 +22308,5,21.35,2,0.0 +22308,21,10,29,0.0 +22308,57,19.5,23,0.0 +22308,64,33.25,24,0.0 +22308,32,32,20,0.0 +22308,4,22,7,0.0 +22308,75,7.75,30,0.0 +22308,6,25,11,0.0 +22308,14,23.25,12,0.0 +22308,23,9,44,0.0 +22308,8,40,9,0.0 +22308,28,45.6,50,0.0 +22308,18,62.5,48,0.0 +22308,73,15,23,0.0 +22308,11,21,43,0.0 +22308,44,19.45,40,0.0 +22308,45,9.5,8,0.0 +22308,29,123.79,17,0.0 +22308,74,10,7,0.0 +22309,21,10,43,0.0 +22309,77,13,28,0.0 +22309,27,43.9,7,0.0 +22309,15,15.5,45,0.0 +22309,12,38,41,0.0 +22309,1,18,44,0.0 +22309,64,33.25,41,0.0 +22309,60,34,43,0.0 +22309,6,25,10,0.0 +22309,18,62.5,31,0.0 +22309,45,9.5,4,0.0 +22309,14,23.25,1,0.0 +22309,43,46,8,0.0 +22309,71,21.5,15,0.0 +22309,20,81,39,0.0 +22309,76,18,18,0.0 +22309,17,39,35,0.0 +22309,19,9.2,37,0.0 +22309,70,15,11,0.0 +22309,52,7,35,0.0 +22309,44,19.45,3,0.0 +22309,26,31.23,40,0.0 +22309,75,7.75,23,0.0 +22309,56,38,10,0.0 +22309,67,14,24,0.0 +22309,37,26,44,0.0 +22309,31,12.5,18,0.0 +22309,46,12,46,0.0 +22309,39,18,19,0.0 +22309,10,31,37,0.0 +22309,58,13.25,21,0.0 +22309,9,97,26,0.0 +22309,50,16.25,8,0.0 +22309,7,30,36,0.0 +22310,4,22,48,0.0 +22310,26,31.23,36,0.0 +22310,20,81,49,0.0 +22310,28,45.6,40,0.0 +22310,52,7,20,0.0 +22310,22,21,2,0.0 +22310,46,12,35,0.0 +22310,37,26,43,0.0 +22310,51,53,41,0.0 +22310,61,28.5,6,0.0 +22310,7,30,11,0.0 +22310,25,14,10,0.0 +22310,70,15,45,0.0 +22310,16,17.45,50,0.0 +22310,38,263.5,31,0.0 +22310,57,19.5,43,0.0 +22310,56,38,49,0.0 +22310,74,10,26,0.0 +22310,15,15.5,47,0.0 +22310,49,20,19,0.0 +22310,36,19,11,0.0 +22310,68,12.5,5,0.0 +22310,72,34.8,43,0.0 +22310,33,2.5,36,0.0 +22310,29,123.79,31,0.0 +22310,5,21.35,43,0.0 +22310,18,62.5,36,0.0 +22310,17,39,5,0.0 +22310,40,18.4,14,0.0 +22310,50,16.25,14,0.0 +22310,55,24,18,0.0 +22310,62,49.3,44,0.0 +22310,9,97,47,0.0 +22310,10,31,3,0.0 +22310,43,46,11,0.0 +22310,39,18,22,0.0 +22310,47,9.5,27,0.0 +22310,12,38,6,0.0 +22310,24,4.5,17,0.0 +22310,73,15,20,0.0 +22310,27,43.9,8,0.0 +22310,48,12.75,21,0.0 +22310,42,14,15,0.0 +22310,59,55,23,0.0 +22310,67,14,40,0.0 +22310,8,40,48,0.0 +22310,63,43.9,30,0.0 +22310,21,10,28,0.0 +22310,65,21.05,31,0.0 +22310,75,7.75,31,0.0 +22310,31,12.5,6,0.0 +22310,71,21.5,1,0.0 +22310,13,6,20,0.0 +22310,30,25.89,35,0.0 +22310,64,33.25,5,0.0 +22310,69,36,13,0.0 +22310,3,10,44,0.0 +22310,23,9,28,0.0 +22310,14,23.25,49,0.0 +22310,32,32,9,0.0 +22310,2,19,31,0.0 +22310,54,7.45,36,0.0 +22310,11,21,37,0.0 +22310,60,34,49,0.0 +22310,6,25,47,0.0 +22310,76,18,6,0.0 +22310,41,9.65,25,0.0 +22310,44,19.45,24,0.0 +22310,1,18,38,0.0 +22310,19,9.2,9,0.0 +22311,27,43.9,40,0.0 +22311,10,31,35,0.0 +22311,12,38,36,0.0 +22311,4,22,25,0.0 +22311,40,18.4,34,0.0 +22311,24,4.5,33,0.0 +22311,52,7,47,0.0 +22311,72,34.8,20,0.0 +22311,16,17.45,8,0.0 +22311,58,13.25,6,0.0 +22311,46,12,2,0.0 +22311,48,12.75,30,0.0 +22311,1,18,34,0.0 +22311,33,2.5,19,0.0 +22311,62,49.3,19,0.0 +22311,70,15,50,0.0 +22311,15,15.5,20,0.0 +22311,17,39,29,0.0 +22311,37,26,50,0.0 +22311,47,9.5,26,0.0 +22311,41,9.65,32,0.0 +22311,32,32,1,0.0 +22311,6,25,18,0.0 +22311,7,30,36,0.0 +22311,35,18,44,0.0 +22311,71,21.5,24,0.0 +22311,8,40,2,0.0 +22311,77,13,39,0.0 +22311,28,45.6,23,0.0 +22311,30,25.89,26,0.0 +22311,50,16.25,43,0.0 +22311,51,53,4,0.0 +22312,54,7.45,47,0.0 +22312,25,14,1,0.0 +22312,26,31.23,47,0.0 +22312,21,10,9,0.0 +22312,61,28.5,39,0.0 +22312,11,21,42,0.0 +22312,22,21,15,0.0 +22312,69,36,43,0.0 +22312,5,21.35,7,0.0 +22312,34,14,8,0.0 +22312,2,19,4,0.0 +22312,46,12,25,0.0 +22312,72,34.8,32,0.0 +22312,62,49.3,35,0.0 +22312,43,46,36,0.0 +22312,6,25,17,0.0 +22312,38,263.5,7,0.0 +22312,49,20,3,0.0 +22312,15,15.5,5,0.0 +22312,37,26,35,0.0 +22312,64,33.25,9,0.0 +22312,68,12.5,25,0.0 +22312,17,39,5,0.0 +22312,50,16.25,24,0.0 +22312,65,21.05,10,0.0 +22312,24,4.5,50,0.0 +22312,30,25.89,49,0.0 +22312,4,22,32,0.0 +22312,10,31,33,0.0 +22312,35,18,8,0.0 +22312,57,19.5,16,0.0 +22312,23,9,19,0.0 +22312,8,40,15,0.0 +22312,14,23.25,22,0.0 +22312,33,2.5,33,0.0 +22312,36,19,49,0.0 +22312,70,15,40,0.0 +22312,18,62.5,38,0.0 +22312,16,17.45,22,0.0 +22312,75,7.75,45,0.0 +22312,48,12.75,37,0.0 +22312,66,17,13,0.0 +22312,3,10,16,0.0 +22312,29,123.79,4,0.0 +22312,44,19.45,11,0.0 +22312,74,10,6,0.0 +22312,19,9.2,18,0.0 +22312,77,13,2,0.0 +22312,27,43.9,19,0.0 +22312,59,55,35,0.0 +22312,45,9.5,38,0.0 +22312,12,38,48,0.0 +22312,9,97,35,0.0 +22312,76,18,29,0.0 +22312,52,7,4,0.0 +22312,31,12.5,18,0.0 +22312,67,14,35,0.0 +22312,58,13.25,37,0.0 +22312,51,53,36,0.0 +22312,39,18,16,0.0 +22312,53,32.8,42,0.0 +22312,7,30,40,0.0 +22312,42,14,6,0.0 +22313,50,16.25,36,0.0 +22313,26,31.23,12,0.0 +22313,28,45.6,25,0.0 +22313,54,7.45,48,0.0 +22313,48,12.75,27,0.0 +22313,31,12.5,32,0.0 +22313,67,14,19,0.0 +22313,18,62.5,3,0.0 +22313,6,25,12,0.0 +22314,11,21,25,0.0 +22315,65,21.05,21,0.0 +22315,35,18,9,0.0 +22315,37,26,35,0.0 +22315,20,81,33,0.0 +22315,70,15,6,0.0 +22315,14,23.25,17,0.0 +22315,64,33.25,1,0.0 +22315,59,55,27,0.0 +22315,19,9.2,1,0.0 +22315,8,40,43,0.0 +22315,56,38,30,0.0 +22315,41,9.65,25,0.0 +22315,40,18.4,29,0.0 +22315,62,49.3,21,0.0 +22315,3,10,48,0.0 +22315,10,31,4,0.0 +22315,4,22,48,0.0 +22315,22,21,5,0.0 +22315,29,123.79,13,0.0 +22315,17,39,29,0.0 +22315,5,21.35,7,0.0 +22315,16,17.45,26,0.0 +22315,34,14,33,0.0 +22315,2,19,40,0.0 +22315,60,34,49,0.0 +22315,46,12,41,0.0 +22315,72,34.8,10,0.0 +22315,61,28.5,8,0.0 +22315,76,18,13,0.0 +22315,49,20,30,0.0 +22315,66,17,24,0.0 +22315,6,25,22,0.0 +22315,55,24,37,0.0 +22315,26,31.23,1,0.0 +22315,38,263.5,29,0.0 +22315,27,43.9,30,0.0 +22315,43,46,25,0.0 +22315,28,45.6,19,0.0 +22316,66,17,18,0.0 +22316,57,19.5,12,0.0 +22316,59,55,28,0.0 +22316,9,97,8,0.0 +22316,46,12,47,0.0 +22316,13,6,13,0.0 +22316,68,12.5,29,0.0 +22316,7,30,17,0.0 +22316,27,43.9,29,0.0 +22316,51,53,47,0.0 +22316,73,15,24,0.0 +22316,18,62.5,30,0.0 +22316,42,14,24,0.0 +22316,76,18,6,0.0 +22316,72,34.8,33,0.0 +22316,70,15,9,0.0 +22316,55,24,43,0.0 +22316,5,21.35,16,0.0 +22316,14,23.25,38,0.0 +22316,43,46,6,0.0 +22316,39,18,41,0.0 +22316,1,18,21,0.0 +22316,29,123.79,1,0.0 +22316,62,49.3,7,0.0 +22316,47,9.5,6,0.0 +22316,50,16.25,49,0.0 +22316,15,15.5,33,0.0 +22316,77,13,9,0.0 +22316,11,21,7,0.0 +22316,12,38,34,0.0 +22316,53,32.8,32,0.0 +22316,52,7,21,0.0 +22316,35,18,40,0.0 +22316,33,2.5,13,0.0 +22316,71,21.5,38,0.0 +22316,8,40,39,0.0 +22316,3,10,27,0.0 +22316,56,38,23,0.0 +22316,37,26,32,0.0 +22316,60,34,5,0.0 +22316,22,21,26,0.0 +22317,47,9.5,18,0.0 +22317,62,49.3,45,0.0 +22317,13,6,49,0.0 +22317,45,9.5,13,0.0 +22317,54,7.45,44,0.0 +22317,32,32,41,0.0 +22317,37,26,7,0.0 +22317,10,31,23,0.0 +22317,33,2.5,19,0.0 +22317,76,18,2,0.0 +22317,46,12,45,0.0 +22317,67,14,19,0.0 +22317,43,46,22,0.0 +22317,44,19.45,22,0.0 +22317,65,21.05,47,0.0 +22317,69,36,48,0.0 +22317,4,22,20,0.0 +22317,50,16.25,46,0.0 +22318,67,14,16,0.0 +22318,15,15.5,7,0.0 +22318,66,17,23,0.0 +22318,49,20,23,0.0 +22318,74,10,45,0.0 +22318,46,12,10,0.0 +22318,47,9.5,5,0.0 +22318,70,15,15,0.0 +22318,50,16.25,4,0.0 +22318,8,40,9,0.0 +22318,38,263.5,40,0.0 +22318,30,25.89,1,0.0 +22318,4,22,14,0.0 +22318,16,17.45,39,0.0 +22318,25,14,1,0.0 +22318,24,4.5,1,0.0 +22318,27,43.9,17,0.0 +22318,56,38,2,0.0 +22318,55,24,20,0.0 +22318,28,45.6,6,0.0 +22318,32,32,18,0.0 +22318,6,25,16,0.0 +22318,23,9,41,0.0 +22318,52,7,34,0.0 +22319,48,12.75,30,0.0 +22319,68,12.5,28,0.0 +22319,11,21,41,0.0 +22319,63,43.9,31,0.0 +22319,16,17.45,34,0.0 +22319,57,19.5,27,0.0 +22319,47,9.5,14,0.0 +22319,44,19.45,25,0.0 +22319,29,123.79,16,0.0 +22319,64,33.25,15,0.0 +22319,26,31.23,50,0.0 +22319,36,19,6,0.0 +22319,17,39,7,0.0 +22319,65,21.05,2,0.0 +22319,51,53,4,0.0 +22319,30,25.89,13,0.0 +22319,2,19,18,0.0 +22319,71,21.5,13,0.0 +22319,58,13.25,36,0.0 +22319,20,81,18,0.0 +22319,61,28.5,47,0.0 +22319,37,26,6,0.0 +22319,73,15,33,0.0 +22319,31,12.5,14,0.0 +22319,74,10,28,0.0 +22319,6,25,39,0.0 +22319,42,14,45,0.0 +22319,67,14,43,0.0 +22319,43,46,6,0.0 +22320,73,15,18,0.0 +22320,65,21.05,19,0.0 +22320,64,33.25,8,0.0 +22320,24,4.5,4,0.0 +22320,17,39,41,0.0 +22320,52,7,19,0.0 +22320,63,43.9,14,0.0 +22320,59,55,8,0.0 +22320,45,9.5,24,0.0 +22320,30,25.89,6,0.0 +22321,76,18,50,0.0 +22321,2,19,7,0.0 +22321,29,123.79,21,0.0 +22321,45,9.5,39,0.0 +22321,22,21,5,0.0 +22321,64,33.25,23,0.0 +22321,1,18,9,0.0 +22321,25,14,43,0.0 +22321,50,16.25,12,0.0 +22321,67,14,27,0.0 +22321,68,12.5,32,0.0 +22321,21,10,14,0.0 +22321,32,32,8,0.0 +22321,16,17.45,48,0.0 +22321,62,49.3,38,0.0 +22321,60,34,12,0.0 +22321,12,38,19,0.0 +22321,65,21.05,32,0.0 +22321,7,30,29,0.0 +22321,39,18,16,0.0 +22321,18,62.5,44,0.0 +22321,14,23.25,18,0.0 +22321,53,32.8,19,0.0 +22321,72,34.8,14,0.0 +22321,27,43.9,43,0.0 +22321,6,25,26,0.0 +22321,46,12,47,0.0 +22321,4,22,26,0.0 +22321,31,12.5,41,0.0 +22321,28,45.6,12,0.0 +22321,26,31.23,39,0.0 +22321,44,19.45,41,0.0 +22321,15,15.5,25,0.0 +22321,41,9.65,47,0.0 +22321,66,17,33,0.0 +22321,19,9.2,40,0.0 +22321,51,53,46,0.0 +22321,70,15,4,0.0 +22321,33,2.5,50,0.0 +22321,11,21,21,0.0 +22321,54,7.45,19,0.0 +22321,73,15,43,0.0 +22321,17,39,45,0.0 +22321,57,19.5,22,0.0 +22321,24,4.5,31,0.0 +22321,23,9,39,0.0 +22321,52,7,45,0.0 +22321,10,31,9,0.0 +22321,8,40,13,0.0 +22321,71,21.5,9,0.0 +22321,69,36,16,0.0 +22321,43,46,39,0.0 +22321,13,6,6,0.0 +22321,63,43.9,45,0.0 +22321,9,97,35,0.0 +22321,49,20,25,0.0 +22321,55,24,33,0.0 +22321,56,38,42,0.0 +22321,74,10,4,0.0 +22321,35,18,11,0.0 +22321,48,12.75,8,0.0 +22321,3,10,13,0.0 +22321,36,19,32,0.0 +22321,40,18.4,19,0.0 +22321,42,14,8,0.0 +22321,34,14,10,0.0 +22321,38,263.5,50,0.0 +22321,5,21.35,18,0.0 +22321,59,55,48,0.0 +22321,58,13.25,12,0.0 +22321,75,7.75,27,0.0 +22321,77,13,16,0.0 +22321,30,25.89,49,0.0 +22321,20,81,2,0.0 +22322,63,43.9,1,0.0 +22322,23,9,2,0.0 +22322,73,15,31,0.0 +22322,51,53,16,0.0 +22322,38,263.5,39,0.0 +22322,25,14,41,0.0 +22322,11,21,25,0.0 +22322,9,97,30,0.0 +22322,71,21.5,2,0.0 +22322,57,19.5,7,0.0 +22322,20,81,1,0.0 +22322,58,13.25,38,0.0 +22322,54,7.45,46,0.0 +22322,21,10,18,0.0 +22322,35,18,16,0.0 +22322,69,36,16,0.0 +22322,1,18,10,0.0 +22322,42,14,5,0.0 +22322,34,14,38,0.0 +22322,26,31.23,32,0.0 +22322,17,39,2,0.0 +22322,59,55,26,0.0 +22322,53,32.8,1,0.0 +22322,33,2.5,30,0.0 +22322,4,22,10,0.0 +22322,14,23.25,19,0.0 +22322,45,9.5,28,0.0 +22322,55,24,1,0.0 +22323,1,18,30,0.0 +22323,25,14,45,0.0 +22323,46,12,30,0.0 +22323,77,13,28,0.0 +22323,37,26,35,0.0 +22323,12,38,31,0.0 +22323,56,38,42,0.0 +22323,26,31.23,11,0.0 +22323,71,21.5,22,0.0 +22323,4,22,15,0.0 +22323,43,46,17,0.0 +22323,62,49.3,10,0.0 +22323,21,10,11,0.0 +22323,52,7,4,0.0 +22323,74,10,10,0.0 +22323,73,15,9,0.0 +22323,68,12.5,11,0.0 +22323,59,55,47,0.0 +22323,16,17.45,13,0.0 +22323,19,9.2,33,0.0 +22323,51,53,40,0.0 +22323,38,263.5,20,0.0 +22323,57,19.5,8,0.0 +22323,28,45.6,37,0.0 +22323,70,15,48,0.0 +22324,33,2.5,40,0.0 +22324,14,23.25,9,0.0 +22324,39,18,26,0.0 +22324,22,21,1,0.0 +22324,56,38,49,0.0 +22324,44,19.45,28,0.0 +22324,43,46,45,0.0 +22324,20,81,31,0.0 +22324,61,28.5,38,0.0 +22324,9,97,26,0.0 +22324,73,15,15,0.0 +22324,62,49.3,19,0.0 +22324,30,25.89,45,0.0 +22324,25,14,13,0.0 +22324,36,19,28,0.0 +22324,57,19.5,18,0.0 +22324,27,43.9,23,0.0 +22324,52,7,34,0.0 +22324,6,25,42,0.0 +22324,72,34.8,50,0.0 +22324,35,18,43,0.0 +22324,65,21.05,14,0.0 +22324,16,17.45,17,0.0 +22324,8,40,23,0.0 +22324,19,9.2,40,0.0 +22324,4,22,8,0.0 +22324,24,4.5,44,0.0 +22324,17,39,17,0.0 +22324,3,10,30,0.0 +22324,67,14,35,0.0 +22324,10,31,35,0.0 +22324,77,13,18,0.0 +22324,53,32.8,46,0.0 +22324,75,7.75,35,0.0 +22324,58,13.25,3,0.0 +22324,42,14,6,0.0 +22324,26,31.23,20,0.0 +22324,45,9.5,47,0.0 +22324,47,9.5,9,0.0 +22324,49,20,25,0.0 +22324,69,36,4,0.0 +22324,18,62.5,47,0.0 +22324,41,9.65,3,0.0 +22324,2,19,33,0.0 +22324,70,15,32,0.0 +22324,64,33.25,31,0.0 +22325,52,7,6,0.0 +22325,21,10,8,0.0 +22325,13,6,41,0.0 +22325,1,18,32,0.0 +22325,63,43.9,13,0.0 +22325,74,10,36,0.0 +22325,12,38,29,0.0 +22325,75,7.75,10,0.0 +22325,5,21.35,39,0.0 +22325,33,2.5,48,0.0 +22325,67,14,3,0.0 +22325,45,9.5,10,0.0 +22325,41,9.65,27,0.0 +22325,9,97,31,0.0 +22325,24,4.5,27,0.0 +22325,64,33.25,49,0.0 +22325,22,21,37,0.0 +22325,20,81,14,0.0 +22325,55,24,5,0.0 +22326,37,26,27,0.0 +22326,46,12,47,0.0 +22326,6,25,33,0.0 +22326,23,9,17,0.0 +22326,22,21,26,0.0 +22326,47,9.5,21,0.0 +22326,73,15,14,0.0 +22326,59,55,44,0.0 +22326,44,19.45,26,0.0 +22326,64,33.25,38,0.0 +22326,58,13.25,27,0.0 +22326,63,43.9,35,0.0 +22326,53,32.8,41,0.0 +22326,3,10,7,0.0 +22326,51,53,27,0.0 +22326,13,6,21,0.0 +22326,76,18,37,0.0 +22326,71,21.5,34,0.0 +22326,21,10,28,0.0 +22326,54,7.45,42,0.0 +22326,14,23.25,24,0.0 +22326,17,39,44,0.0 +22326,12,38,4,0.0 +22326,20,81,6,0.0 +22326,8,40,19,0.0 +22326,24,4.5,2,0.0 +22326,31,12.5,13,0.0 +22326,75,7.75,43,0.0 +22326,34,14,32,0.0 +22327,77,13,13,0.0 +22327,26,31.23,45,0.0 +22327,31,12.5,21,0.0 +22327,76,18,36,0.0 +22327,15,15.5,27,0.0 +22327,3,10,21,0.0 +22327,52,7,21,0.0 +22327,17,39,30,0.0 +22327,46,12,27,0.0 +22327,27,43.9,37,0.0 +22327,2,19,6,0.0 +22327,49,20,12,0.0 +22327,69,36,30,0.0 +22327,30,25.89,50,0.0 +22327,14,23.25,11,0.0 +22327,62,49.3,47,0.0 +22327,16,17.45,38,0.0 +22327,1,18,18,0.0 +22327,56,38,37,0.0 +22327,7,30,12,0.0 +22327,8,40,43,0.0 +22327,33,2.5,10,0.0 +22327,29,123.79,39,0.0 +22327,40,18.4,15,0.0 +22327,51,53,4,0.0 +22327,6,25,48,0.0 +22327,9,97,47,0.0 +22327,74,10,46,0.0 +22327,4,22,35,0.0 +22327,22,21,2,0.0 +22327,11,21,5,0.0 +22327,34,14,7,0.0 +22327,47,9.5,22,0.0 +22327,55,24,47,0.0 +22328,63,43.9,7,0.0 +22328,50,16.25,45,0.0 +22328,62,49.3,42,0.0 +22328,58,13.25,30,0.0 +22328,20,81,46,0.0 +22328,46,12,45,0.0 +22328,37,26,27,0.0 +22328,74,10,39,0.0 +22328,52,7,16,0.0 +22328,12,38,4,0.0 +22328,36,19,2,0.0 +22328,28,45.6,16,0.0 +22328,3,10,15,0.0 +22328,57,19.5,17,0.0 +22328,2,19,28,0.0 +22328,76,18,28,0.0 +22328,32,32,23,0.0 +22328,67,14,18,0.0 +22329,59,55,11,0.0 +22329,76,18,49,0.0 +22329,57,19.5,1,0.0 +22329,14,23.25,11,0.0 +22329,44,19.45,17,0.0 +22329,65,21.05,40,0.0 +22329,12,38,32,0.0 +22329,72,34.8,5,0.0 +22329,26,31.23,30,0.0 +22329,15,15.5,43,0.0 +22329,51,53,45,0.0 +22329,40,18.4,47,0.0 +22329,52,7,25,0.0 +22329,39,18,21,0.0 +22329,77,13,23,0.0 +22329,49,20,19,0.0 +22329,31,12.5,42,0.0 +22329,23,9,32,0.0 +22329,74,10,19,0.0 +22329,48,12.75,10,0.0 +22329,67,14,5,0.0 +22329,45,9.5,35,0.0 +22329,58,13.25,23,0.0 +22329,13,6,22,0.0 +22329,75,7.75,21,0.0 +22329,73,15,13,0.0 +22329,9,97,24,0.0 +22329,19,9.2,11,0.0 +22329,18,62.5,36,0.0 +22329,66,17,33,0.0 +22329,47,9.5,49,0.0 +22329,16,17.45,50,0.0 +22329,53,32.8,13,0.0 +22329,32,32,10,0.0 +22329,55,24,34,0.0 +22329,36,19,5,0.0 +22329,46,12,36,0.0 +22329,61,28.5,3,0.0 +22329,50,16.25,9,0.0 +22329,71,21.5,11,0.0 +22329,64,33.25,45,0.0 +22329,56,38,29,0.0 +22329,34,14,25,0.0 +22329,70,15,4,0.0 +22329,20,81,20,0.0 +22329,60,34,47,0.0 +22329,28,45.6,39,0.0 +22330,56,38,49,0.0 +22330,9,97,6,0.0 +22331,10,31,45,0.0 +22331,22,21,35,0.0 +22331,18,62.5,11,0.0 +22331,76,18,1,0.0 +22331,4,22,45,0.0 +22331,46,12,50,0.0 +22331,40,18.4,45,0.0 +22331,19,9.2,40,0.0 +22331,39,18,49,0.0 +22331,66,17,32,0.0 +22331,3,10,28,0.0 +22331,53,32.8,10,0.0 +22331,55,24,42,0.0 +22331,25,14,22,0.0 +22331,42,14,43,0.0 +22331,49,20,38,0.0 +22331,63,43.9,50,0.0 +22331,77,13,43,0.0 +22331,72,34.8,16,0.0 +22331,58,13.25,21,0.0 +22331,47,9.5,9,0.0 +22332,63,43.9,17,0.0 +22332,18,62.5,45,0.0 +22332,28,45.6,49,0.0 +22332,50,16.25,2,0.0 +22332,19,9.2,45,0.0 +22332,65,21.05,18,0.0 +22332,4,22,50,0.0 +22332,15,15.5,37,0.0 +22332,7,30,23,0.0 +22332,35,18,10,0.0 +22332,34,14,30,0.0 +22332,6,25,4,0.0 +22332,56,38,46,0.0 +22332,53,32.8,15,0.0 +22332,5,21.35,21,0.0 +22332,1,18,4,0.0 +22333,15,15.5,28,0.0 +22333,68,12.5,30,0.0 +22333,16,17.45,9,0.0 +22333,30,25.89,42,0.0 +22333,20,81,28,0.0 +22333,47,9.5,48,0.0 +22333,11,21,8,0.0 +22333,62,49.3,16,0.0 +22333,48,12.75,22,0.0 +22333,46,12,47,0.0 +22333,71,21.5,3,0.0 +22333,40,18.4,25,0.0 +22333,76,18,10,0.0 +22333,52,7,37,0.0 +22333,33,2.5,46,0.0 +22333,67,14,13,0.0 +22333,12,38,12,0.0 +22333,57,19.5,5,0.0 +22333,77,13,21,0.0 +22333,66,17,17,0.0 +22333,74,10,28,0.0 +22334,69,36,36,0.0 +22334,9,97,21,0.0 +22334,38,263.5,46,0.0 +22334,10,31,15,0.0 +22334,11,21,48,0.0 +22334,57,19.5,7,0.0 +22334,52,7,35,0.0 +22334,54,7.45,31,0.0 +22334,50,16.25,22,0.0 +22334,29,123.79,18,0.0 +22334,36,19,31,0.0 +22334,32,32,43,0.0 +22334,25,14,24,0.0 +22334,59,55,35,0.0 +22334,56,38,12,0.0 +22334,13,6,42,0.0 +22334,66,17,12,0.0 +22334,35,18,38,0.0 +22334,58,13.25,11,0.0 +22334,39,18,25,0.0 +22334,49,20,46,0.0 +22334,22,21,48,0.0 +22334,70,15,46,0.0 +22334,18,62.5,44,0.0 +22334,77,13,21,0.0 +22334,19,9.2,14,0.0 +22334,23,9,40,0.0 +22334,68,12.5,40,0.0 +22334,27,43.9,22,0.0 +22334,73,15,15,0.0 +22334,42,14,9,0.0 +22334,74,10,40,0.0 +22334,64,33.25,6,0.0 +22334,41,9.65,27,0.0 +22334,20,81,40,0.0 +22334,75,7.75,2,0.0 +22334,4,22,45,0.0 +22334,60,34,8,0.0 +22334,37,26,26,0.0 +22334,62,49.3,13,0.0 +22334,26,31.23,14,0.0 +22334,63,43.9,3,0.0 +22334,71,21.5,12,0.0 +22334,7,30,43,0.0 +22334,14,23.25,24,0.0 +22334,76,18,23,0.0 +22334,5,21.35,9,0.0 +22334,8,40,28,0.0 +22334,40,18.4,44,0.0 +22334,65,21.05,12,0.0 +22334,15,15.5,38,0.0 +22334,55,24,34,0.0 +22334,31,12.5,1,0.0 +22334,12,38,20,0.0 +22334,24,4.5,42,0.0 +22334,72,34.8,6,0.0 +22334,61,28.5,24,0.0 +22334,46,12,20,0.0 +22334,48,12.75,40,0.0 +22334,1,18,29,0.0 +22334,53,32.8,8,0.0 +22334,6,25,48,0.0 +22334,21,10,17,0.0 +22334,45,9.5,15,0.0 +22334,16,17.45,20,0.0 +22335,28,45.6,20,0.0 +22335,49,20,25,0.0 +22335,12,38,7,0.0 +22335,29,123.79,1,0.0 +22335,41,9.65,38,0.0 +22335,47,9.5,28,0.0 +22335,21,10,41,0.0 +22335,61,28.5,42,0.0 +22335,7,30,9,0.0 +22335,57,19.5,18,0.0 +22335,15,15.5,2,0.0 +22335,74,10,22,0.0 +22335,14,23.25,9,0.0 +22335,51,53,9,0.0 +22335,77,13,17,0.0 +22335,22,21,24,0.0 +22335,33,2.5,27,0.0 +22335,54,7.45,48,0.0 +22335,26,31.23,43,0.0 +22335,3,10,2,0.0 +22335,46,12,16,0.0 +22335,67,14,29,0.0 +22335,50,16.25,45,0.0 +22335,18,62.5,8,0.0 +22335,68,12.5,32,0.0 +22335,73,15,32,0.0 +22335,37,26,9,0.0 +22335,30,25.89,23,0.0 +22335,64,33.25,43,0.0 +22335,13,6,8,0.0 +22335,71,21.5,14,0.0 +22335,76,18,40,0.0 +22335,16,17.45,1,0.0 +22335,70,15,5,0.0 +22335,27,43.9,14,0.0 +22335,40,18.4,14,0.0 +22335,43,46,8,0.0 +22335,4,22,15,0.0 +22335,39,18,22,0.0 +22336,17,39,15,0.0 +22336,56,38,39,0.0 +22336,15,15.5,4,0.0 +22336,5,21.35,50,0.0 +22336,13,6,44,0.0 +22336,10,31,20,0.0 +22336,18,62.5,43,0.0 +22336,51,53,24,0.0 +22336,33,2.5,1,0.0 +22336,21,10,48,0.0 +22336,52,7,44,0.0 +22336,25,14,11,0.0 +22336,57,19.5,46,0.0 +22336,66,17,37,0.0 +22336,39,18,27,0.0 +22336,38,263.5,3,0.0 +22336,24,4.5,30,0.0 +22336,22,21,44,0.0 +22336,73,15,34,0.0 +22336,4,22,23,0.0 +22336,47,9.5,9,0.0 +22336,1,18,33,0.0 +22336,28,45.6,34,0.0 +22337,59,55,48,0.0 +22337,43,46,38,0.0 +22337,61,28.5,48,0.0 +22337,44,19.45,2,0.0 +22337,52,7,42,0.0 +22337,41,9.65,46,0.0 +22337,77,13,48,0.0 +22337,28,45.6,5,0.0 +22337,39,18,34,0.0 +22337,69,36,2,0.0 +22337,1,18,32,0.0 +22337,14,23.25,26,0.0 +22337,24,4.5,28,0.0 +22337,48,12.75,6,0.0 +22337,46,12,25,0.0 +22337,65,21.05,24,0.0 +22337,49,20,30,0.0 +22337,16,17.45,21,0.0 +22337,31,12.5,42,0.0 +22337,62,49.3,45,0.0 +22337,51,53,20,0.0 +22337,54,7.45,20,0.0 +22337,33,2.5,47,0.0 +22337,66,17,9,0.0 +22338,37,26,13,0.0 +22338,45,9.5,29,0.0 +22338,77,13,12,0.0 +22338,76,18,21,0.0 +22338,28,45.6,6,0.0 +22338,13,6,18,0.0 +22338,68,12.5,47,0.0 +22338,49,20,32,0.0 +22338,47,9.5,2,0.0 +22338,29,123.79,37,0.0 +22338,57,19.5,50,0.0 +22338,24,4.5,25,0.0 +22338,39,18,33,0.0 +22338,71,21.5,15,0.0 +22338,65,21.05,10,0.0 +22338,58,13.25,46,0.0 +22338,72,34.8,37,0.0 +22338,38,263.5,39,0.0 +22338,27,43.9,19,0.0 +22338,20,81,34,0.0 +22338,6,25,21,0.0 +22338,19,9.2,1,0.0 +22338,18,62.5,38,0.0 +22338,10,31,21,0.0 +22338,69,36,38,0.0 +22338,21,10,49,0.0 +22338,51,53,4,0.0 +22338,2,19,42,0.0 +22338,75,7.75,21,0.0 +22338,15,15.5,35,0.0 +22338,42,14,41,0.0 +22338,23,9,49,0.0 +22338,44,19.45,31,0.0 +22338,40,18.4,46,0.0 +22338,26,31.23,26,0.0 +22338,36,19,46,0.0 +22338,56,38,24,0.0 +22338,8,40,45,0.0 +22338,17,39,14,0.0 +22338,4,22,17,0.0 +22338,67,14,12,0.0 +22338,22,21,22,0.0 +22338,34,14,42,0.0 +22338,66,17,33,0.0 +22338,25,14,35,0.0 +22338,33,2.5,20,0.0 +22338,35,18,38,0.0 +22338,50,16.25,1,0.0 +22338,46,12,23,0.0 +22338,63,43.9,16,0.0 +22338,43,46,16,0.0 +22338,74,10,4,0.0 +22339,66,17,1,0.0 +22339,70,15,5,0.0 +22339,12,38,23,0.0 +22339,59,55,35,0.0 +22339,8,40,43,0.0 +22339,65,21.05,27,0.0 +22339,51,53,20,0.0 +22339,42,14,29,0.0 +22339,73,15,1,0.0 +22339,36,19,34,0.0 +22339,63,43.9,24,0.0 +22339,74,10,11,0.0 +22339,50,16.25,25,0.0 +22339,14,23.25,34,0.0 +22339,17,39,31,0.0 +22339,62,49.3,39,0.0 +22339,6,25,35,0.0 +22339,16,17.45,11,0.0 +22339,68,12.5,34,0.0 +22339,34,14,37,0.0 +22339,22,21,44,0.0 +22339,26,31.23,18,0.0 +22340,38,263.5,47,0.0 +22340,49,20,36,0.0 +22340,60,34,8,0.0 +22340,19,9.2,35,0.0 +22340,45,9.5,22,0.0 +22340,34,14,34,0.0 +22340,35,18,21,0.0 +22340,50,16.25,20,0.0 +22340,75,7.75,24,0.0 +22340,54,7.45,27,0.0 +22340,5,21.35,23,0.0 +22340,55,24,39,0.0 +22340,43,46,12,0.0 +22340,22,21,25,0.0 +22340,24,4.5,4,0.0 +22340,68,12.5,28,0.0 +22341,42,14,11,0.0 +22341,61,28.5,36,0.0 +22341,53,32.8,6,0.0 +22341,21,10,33,0.0 +22341,22,21,32,0.0 +22341,5,21.35,47,0.0 +22341,52,7,49,0.0 +22341,48,12.75,37,0.0 +22341,24,4.5,3,0.0 +22341,28,45.6,16,0.0 +22341,12,38,27,0.0 +22341,43,46,39,0.0 +22341,29,123.79,35,0.0 +22341,44,19.45,44,0.0 +22341,7,30,28,0.0 +22341,70,15,23,0.0 +22341,36,19,28,0.0 +22341,16,17.45,23,0.0 +22341,73,15,20,0.0 +22341,55,24,25,0.0 +22341,41,9.65,9,0.0 +22341,67,14,44,0.0 +22341,59,55,47,0.0 +22341,58,13.25,44,0.0 +22341,71,21.5,35,0.0 +22341,10,31,9,0.0 +22341,69,36,6,0.0 +22341,56,38,28,0.0 +22341,65,21.05,28,0.0 +22341,30,25.89,6,0.0 +22341,25,14,49,0.0 +22341,3,10,28,0.0 +22341,46,12,37,0.0 +22341,39,18,16,0.0 +22341,8,40,34,0.0 +22341,37,26,42,0.0 +22341,38,263.5,41,0.0 +22341,76,18,3,0.0 +22341,72,34.8,35,0.0 +22341,33,2.5,49,0.0 +22341,34,14,15,0.0 +22341,75,7.75,13,0.0 +22341,32,32,19,0.0 +22341,1,18,10,0.0 +22341,63,43.9,47,0.0 +22341,77,13,45,0.0 +22341,11,21,23,0.0 +22341,13,6,20,0.0 +22341,2,19,15,0.0 +22341,57,19.5,20,0.0 +22341,40,18.4,21,0.0 +22341,62,49.3,39,0.0 +22341,35,18,41,0.0 +22341,19,9.2,13,0.0 +22341,20,81,25,0.0 +22341,66,17,50,0.0 +22341,54,7.45,21,0.0 +22342,60,34,15,0.0 +22342,18,62.5,43,0.0 +22342,11,21,17,0.0 +22342,69,36,29,0.0 +22342,43,46,18,0.0 +22342,35,18,36,0.0 +22342,23,9,10,0.0 +22342,68,12.5,24,0.0 +22342,16,17.45,8,0.0 +22342,10,31,14,0.0 +22342,6,25,22,0.0 +22342,44,19.45,6,0.0 +22342,37,26,28,0.0 +22342,22,21,3,0.0 +22342,70,15,37,0.0 +22342,1,18,48,0.0 +22342,63,43.9,7,0.0 +22342,3,10,31,0.0 +22342,13,6,40,0.0 +22342,48,12.75,43,0.0 +22342,19,9.2,1,0.0 +22342,30,25.89,48,0.0 +22342,76,18,49,0.0 +22342,64,33.25,26,0.0 +22342,42,14,33,0.0 +22342,24,4.5,44,0.0 +22342,52,7,2,0.0 +22342,14,23.25,4,0.0 +22342,57,19.5,40,0.0 +22342,59,55,49,0.0 +22342,49,20,46,0.0 +22343,33,2.5,14,0.0 +22343,65,21.05,15,0.0 +22343,26,31.23,16,0.0 +22343,17,39,8,0.0 +22343,20,81,44,0.0 +22343,2,19,32,0.0 +22343,25,14,41,0.0 +22343,52,7,28,0.0 +22343,53,32.8,14,0.0 +22343,38,263.5,23,0.0 +22343,29,123.79,50,0.0 +22343,35,18,48,0.0 +22343,55,24,46,0.0 +22343,43,46,3,0.0 +22343,70,15,14,0.0 +22343,47,9.5,7,0.0 +22343,21,10,37,0.0 +22343,57,19.5,16,0.0 +22343,64,33.25,18,0.0 +22343,11,21,25,0.0 +22343,6,25,19,0.0 +22343,36,19,39,0.0 +22343,51,53,41,0.0 +22343,18,62.5,34,0.0 +22343,68,12.5,10,0.0 +22343,50,16.25,44,0.0 +22343,63,43.9,43,0.0 +22343,45,9.5,41,0.0 +22343,16,17.45,25,0.0 +22343,13,6,34,0.0 +22343,32,32,5,0.0 +22343,15,15.5,4,0.0 +22343,56,38,43,0.0 +22343,4,22,27,0.0 +22343,22,21,28,0.0 +22343,66,17,32,0.0 +22344,32,32,39,0.0 +22344,50,16.25,49,0.0 +22344,2,19,22,0.0 +22344,43,46,20,0.0 +22344,68,12.5,45,0.0 +22344,73,15,37,0.0 +22344,51,53,43,0.0 +22344,64,33.25,30,0.0 +22344,76,18,12,0.0 +22344,17,39,34,0.0 +22344,67,14,12,0.0 +22344,34,14,16,0.0 +22344,46,12,20,0.0 +22344,10,31,25,0.0 +22344,48,12.75,1,0.0 +22344,39,18,29,0.0 +22344,66,17,31,0.0 +22344,63,43.9,49,0.0 +22344,19,9.2,27,0.0 +22344,20,81,21,0.0 +22344,71,21.5,46,0.0 +22344,15,15.5,36,0.0 +22344,33,2.5,15,0.0 +22344,65,21.05,31,0.0 +22344,69,36,10,0.0 +22344,1,18,1,0.0 +22344,56,38,49,0.0 +22344,45,9.5,32,0.0 +22344,57,19.5,25,0.0 +22344,53,32.8,26,0.0 +22344,30,25.89,14,0.0 +22344,61,28.5,27,0.0 +22344,60,34,35,0.0 +22344,49,20,20,0.0 +22344,55,24,36,0.0 +22344,4,22,47,0.0 +22344,9,97,14,0.0 +22344,12,38,34,0.0 +22344,72,34.8,8,0.0 +22344,41,9.65,41,0.0 +22344,52,7,1,0.0 +22344,18,62.5,8,0.0 +22344,62,49.3,10,0.0 +22344,8,40,47,0.0 +22344,25,14,4,0.0 +22344,54,7.45,40,0.0 +22344,59,55,30,0.0 +22344,3,10,16,0.0 +22344,26,31.23,32,0.0 +22344,7,30,7,0.0 +22344,24,4.5,44,0.0 +22344,14,23.25,48,0.0 +22344,29,123.79,48,0.0 +22344,47,9.5,14,0.0 +22344,37,26,45,0.0 +22344,38,263.5,30,0.0 +22344,31,12.5,5,0.0 +22344,28,45.6,18,0.0 +22344,6,25,25,0.0 +22344,42,14,50,0.0 +22344,36,19,15,0.0 +22344,77,13,9,0.0 +22344,27,43.9,25,0.0 +22344,75,7.75,36,0.0 +22344,22,21,16,0.0 +22344,11,21,33,0.0 +22344,13,6,18,0.0 +22344,40,18.4,31,0.0 +22344,23,9,47,0.0 +22344,35,18,2,0.0 +22345,2,19,38,0.0 +22345,26,31.23,7,0.0 +22345,43,46,10,0.0 +22345,60,34,1,0.0 +22345,64,33.25,45,0.0 +22345,71,21.5,36,0.0 +22345,1,18,43,0.0 +22345,13,6,12,0.0 +22345,68,12.5,39,0.0 +22345,49,20,40,0.0 +22345,39,18,11,0.0 +22345,31,12.5,14,0.0 +22345,29,123.79,47,0.0 +22345,67,14,31,0.0 +22345,24,4.5,11,0.0 +22345,54,7.45,12,0.0 +22345,21,10,18,0.0 +22345,34,14,47,0.0 +22345,27,43.9,11,0.0 +22345,14,23.25,5,0.0 +22345,30,25.89,20,0.0 +22345,10,31,5,0.0 +22345,12,38,17,0.0 +22345,17,39,22,0.0 +22345,50,16.25,16,0.0 +22345,37,26,28,0.0 +22345,74,10,44,0.0 +22345,42,14,28,0.0 +22345,25,14,28,0.0 +22345,41,9.65,31,0.0 +22345,58,13.25,12,0.0 +22345,19,9.2,23,0.0 +22345,15,15.5,47,0.0 +22345,7,30,25,0.0 +22345,6,25,25,0.0 +22345,16,17.45,31,0.0 +22345,66,17,30,0.0 +22345,56,38,22,0.0 +22345,35,18,49,0.0 +22345,47,9.5,47,0.0 +22345,9,97,16,0.0 +22345,8,40,6,0.0 +22345,72,34.8,28,0.0 +22345,61,28.5,19,0.0 +22345,38,263.5,11,0.0 +22345,18,62.5,38,0.0 +22345,51,53,6,0.0 +22345,63,43.9,44,0.0 +22345,33,2.5,34,0.0 +22345,36,19,36,0.0 +22345,76,18,8,0.0 +22345,55,24,14,0.0 +22345,3,10,11,0.0 +22345,11,21,23,0.0 +22345,52,7,21,0.0 +22345,22,21,31,0.0 +22345,23,9,9,0.0 +22345,53,32.8,19,0.0 +22345,77,13,46,0.0 +22345,32,32,22,0.0 +22345,5,21.35,13,0.0 +22345,46,12,12,0.0 +22345,57,19.5,24,0.0 +22345,40,18.4,32,0.0 +22345,28,45.6,3,0.0 +22345,62,49.3,7,0.0 +22345,75,7.75,1,0.0 +22345,4,22,28,0.0 +22345,59,55,33,0.0 +22345,44,19.45,12,0.0 +22345,73,15,33,0.0 +22345,20,81,44,0.0 +22346,64,33.25,37,0.0 +22346,23,9,6,0.0 +22346,33,2.5,33,0.0 +22346,59,55,39,0.0 +22346,30,25.89,46,0.0 +22346,62,49.3,29,0.0 +22346,2,19,35,0.0 +22346,73,15,36,0.0 +22346,6,25,9,0.0 +22346,45,9.5,7,0.0 +22346,29,123.79,46,0.0 +22346,65,21.05,46,0.0 +22346,24,4.5,4,0.0 +22346,10,31,18,0.0 +22346,42,14,35,0.0 +22346,19,9.2,34,0.0 +22346,4,22,13,0.0 +22346,37,26,19,0.0 +22346,51,53,19,0.0 +22346,9,97,9,0.0 +22346,43,46,40,0.0 +22346,31,12.5,24,0.0 +22346,44,19.45,31,0.0 +22346,35,18,32,0.0 +22346,66,17,40,0.0 +22346,22,21,8,0.0 +22346,71,21.5,16,0.0 +22346,3,10,5,0.0 +22346,25,14,19,0.0 +22346,36,19,50,0.0 +22346,38,263.5,46,0.0 +22346,75,7.75,41,0.0 +22346,16,17.45,1,0.0 +22346,77,13,24,0.0 +22346,18,62.5,11,0.0 +22346,55,24,26,0.0 +22346,32,32,25,0.0 +22346,54,7.45,16,0.0 +22346,14,23.25,32,0.0 +22346,1,18,15,0.0 +22346,50,16.25,36,0.0 +22346,17,39,2,0.0 +22346,46,12,13,0.0 +22346,61,28.5,43,0.0 +22346,70,15,17,0.0 +22346,53,32.8,9,0.0 +22346,58,13.25,4,0.0 +22346,76,18,41,0.0 +22346,28,45.6,2,0.0 +22346,63,43.9,38,0.0 +22346,68,12.5,34,0.0 +22346,60,34,43,0.0 +22346,15,15.5,12,0.0 +22346,34,14,5,0.0 +22346,27,43.9,23,0.0 +22346,69,36,44,0.0 +22346,26,31.23,36,0.0 +22346,5,21.35,28,0.0 +22346,7,30,6,0.0 +22346,21,10,20,0.0 +22346,56,38,15,0.0 +22346,47,9.5,27,0.0 +22346,8,40,20,0.0 +22346,40,18.4,2,0.0 +22346,13,6,36,0.0 +22346,49,20,6,0.0 +22346,12,38,13,0.0 +22346,72,34.8,15,0.0 +22346,39,18,45,0.0 +22347,6,25,4,0.0 +22347,48,12.75,45,0.0 +22347,15,15.5,39,0.0 +22347,51,53,46,0.0 +22347,55,24,19,0.0 +22347,28,45.6,29,0.0 +22347,23,9,43,0.0 +22347,30,25.89,34,0.0 +22347,22,21,49,0.0 +22348,1,18,23,0.0 +22348,57,19.5,28,0.0 +22348,33,2.5,3,0.0 +22348,48,12.75,13,0.0 +22348,27,43.9,25,0.0 +22348,46,12,11,0.0 +22348,10,31,34,0.0 +22348,11,21,21,0.0 +22348,25,14,11,0.0 +22348,6,25,40,0.0 +22348,77,13,24,0.0 +22348,40,18.4,2,0.0 +22348,52,7,15,0.0 +22348,41,9.65,18,0.0 +22348,72,34.8,49,0.0 +22348,24,4.5,4,0.0 +22348,31,12.5,21,0.0 +22348,14,23.25,48,0.0 +22349,25,14,4,0.0 +22349,17,39,23,0.0 +22349,15,15.5,39,0.0 +22349,44,19.45,46,0.0 +22349,39,18,6,0.0 +22349,49,20,44,0.0 +22349,41,9.65,38,0.0 +22349,55,24,21,0.0 +22349,3,10,39,0.0 +22349,12,38,34,0.0 +22349,51,53,8,0.0 +22349,72,34.8,8,0.0 +22349,53,32.8,15,0.0 +22350,19,9.2,37,0.0 +22350,22,21,16,0.0 +22350,44,19.45,2,0.0 +22350,54,7.45,32,0.0 +22350,11,21,24,0.0 +22350,73,15,32,0.0 +22350,12,38,15,0.0 +22350,1,18,50,0.0 +22350,74,10,49,0.0 +22350,14,23.25,43,0.0 +22350,48,12.75,42,0.0 +22350,8,40,33,0.0 +22350,42,14,48,0.0 +22350,43,46,4,0.0 +22350,77,13,14,0.0 +22350,66,17,31,0.0 +22350,49,20,40,0.0 +22350,9,97,43,0.0 +22350,61,28.5,1,0.0 +22350,24,4.5,31,0.0 +22350,41,9.65,48,0.0 +22350,3,10,29,0.0 +22350,33,2.5,1,0.0 +22350,70,15,11,0.0 +22350,50,16.25,17,0.0 +22350,53,32.8,50,0.0 +22350,76,18,32,0.0 +22350,59,55,30,0.0 +22350,52,7,25,0.0 +22350,31,12.5,29,0.0 +22350,10,31,33,0.0 +22350,15,15.5,23,0.0 +22350,55,24,45,0.0 +22350,21,10,26,0.0 +22350,51,53,46,0.0 +22350,36,19,32,0.0 +22350,23,9,26,0.0 +22350,56,38,26,0.0 +22350,57,19.5,42,0.0 +22350,37,26,35,0.0 +22350,72,34.8,38,0.0 +22350,4,22,5,0.0 +22350,64,33.25,20,0.0 +22350,34,14,21,0.0 +22350,58,13.25,5,0.0 +22350,65,21.05,27,0.0 +22350,71,21.5,33,0.0 +22350,20,81,5,0.0 +22350,16,17.45,40,0.0 +22350,62,49.3,17,0.0 +22350,5,21.35,36,0.0 +22350,32,32,21,0.0 +22350,35,18,14,0.0 +22350,40,18.4,26,0.0 +22350,46,12,40,0.0 +22350,29,123.79,43,0.0 +22350,2,19,41,0.0 +22350,7,30,4,0.0 +22350,26,31.23,17,0.0 +22350,75,7.75,23,0.0 +22350,67,14,44,0.0 +22350,30,25.89,46,0.0 +22350,63,43.9,32,0.0 +22350,27,43.9,25,0.0 +22350,47,9.5,34,0.0 +22350,28,45.6,5,0.0 +22350,6,25,41,0.0 +22350,25,14,23,0.0 +22350,39,18,19,0.0 +22351,76,18,22,0.0 +22351,62,49.3,25,0.0 +22351,43,46,16,0.0 +22351,26,31.23,36,0.0 +22351,69,36,23,0.0 +22351,60,34,19,0.0 +22351,11,21,21,0.0 +22351,74,10,2,0.0 +22351,28,45.6,22,0.0 +22351,37,26,4,0.0 +22351,71,21.5,26,0.0 +22351,25,14,7,0.0 +22351,23,9,17,0.0 +22351,66,17,47,0.0 +22351,53,32.8,18,0.0 +22351,20,81,46,0.0 +22351,15,15.5,15,0.0 +22351,67,14,42,0.0 +22351,44,19.45,1,0.0 +22351,59,55,6,0.0 +22351,46,12,48,0.0 +22351,70,15,50,0.0 +22351,13,6,20,0.0 +22351,8,40,37,0.0 +22351,47,9.5,41,0.0 +22351,73,15,35,0.0 +22351,4,22,47,0.0 +22351,52,7,40,0.0 +22351,49,20,50,0.0 +22351,50,16.25,37,0.0 +22351,54,7.45,11,0.0 +22352,38,263.5,1,0.0 +22352,10,31,2,0.0 +22352,12,38,14,0.0 +22352,24,4.5,23,0.0 +22352,19,9.2,46,0.0 +22352,22,21,20,0.0 +22352,13,6,36,0.0 +22352,54,7.45,9,0.0 +22352,27,43.9,18,0.0 +22352,28,45.6,17,0.0 +22352,41,9.65,50,0.0 +22352,50,16.25,38,0.0 +22352,72,34.8,45,0.0 +22352,66,17,9,0.0 +22352,70,15,5,0.0 +22352,9,97,24,0.0 +22352,23,9,32,0.0 +22352,52,7,25,0.0 +22352,44,19.45,19,0.0 +22352,45,9.5,14,0.0 +22352,25,14,27,0.0 +22352,32,32,43,0.0 +22352,65,21.05,18,0.0 +22352,14,23.25,29,0.0 +22352,55,24,40,0.0 +22352,48,12.75,8,0.0 +22352,61,28.5,23,0.0 +22352,21,10,13,0.0 +22352,64,33.25,46,0.0 +22352,77,13,11,0.0 +22352,29,123.79,43,0.0 +22352,8,40,6,0.0 +22352,59,55,9,0.0 +22352,75,7.75,19,0.0 +22352,60,34,42,0.0 +22352,7,30,14,0.0 +22352,6,25,13,0.0 +22352,16,17.45,46,0.0 +22352,49,20,38,0.0 +22352,67,14,41,0.0 +22352,76,18,16,0.0 +22352,40,18.4,28,0.0 +22352,2,19,35,0.0 +22353,40,18.4,42,0.0 +22353,64,33.25,15,0.0 +22353,69,36,19,0.0 +22353,58,13.25,4,0.0 +22353,7,30,4,0.0 +22353,65,21.05,40,0.0 +22353,19,9.2,2,0.0 +22353,45,9.5,28,0.0 +22353,34,14,17,0.0 +22353,5,21.35,42,0.0 +22353,35,18,43,0.0 +22353,15,15.5,16,0.0 +22353,10,31,32,0.0 +22354,72,34.8,2,0.0 +22354,58,13.25,10,0.0 +22354,66,17,23,0.0 +22354,50,16.25,39,0.0 +22354,47,9.5,11,0.0 +22354,6,25,18,0.0 +22354,31,12.5,20,0.0 +22354,37,26,3,0.0 +22354,16,17.45,2,0.0 +22354,59,55,5,0.0 +22354,10,31,38,0.0 +22354,77,13,36,0.0 +22354,74,10,16,0.0 +22354,9,97,32,0.0 +22354,34,14,15,0.0 +22354,63,43.9,37,0.0 +22354,11,21,13,0.0 +22354,62,49.3,4,0.0 +22354,68,12.5,1,0.0 +22354,42,14,9,0.0 +22354,61,28.5,44,0.0 +22354,15,15.5,41,0.0 +22354,43,46,14,0.0 +22354,44,19.45,47,0.0 +22354,60,34,15,0.0 +22354,24,4.5,24,0.0 +22354,51,53,20,0.0 +22354,5,21.35,42,0.0 +22354,71,21.5,40,0.0 +22354,65,21.05,15,0.0 +22354,53,32.8,48,0.0 +22354,48,12.75,19,0.0 +22354,23,9,4,0.0 +22354,30,25.89,26,0.0 +22354,70,15,22,0.0 +22354,40,18.4,11,0.0 +22354,25,14,12,0.0 +22354,22,21,30,0.0 +22354,27,43.9,12,0.0 +22354,35,18,47,0.0 +22354,19,9.2,23,0.0 +22354,20,81,32,0.0 +22354,45,9.5,18,0.0 +22354,8,40,49,0.0 +22354,12,38,49,0.0 +22354,28,45.6,42,0.0 +22354,26,31.23,33,0.0 +22354,32,32,36,0.0 +22354,76,18,34,0.0 +22354,4,22,36,0.0 +22354,64,33.25,25,0.0 +22354,3,10,30,0.0 +22354,54,7.45,7,0.0 +22354,41,9.65,1,0.0 +22354,39,18,20,0.0 +22354,29,123.79,45,0.0 +22354,17,39,37,0.0 +22354,56,38,32,0.0 +22354,69,36,22,0.0 +22354,36,19,13,0.0 +22354,1,18,5,0.0 +22354,13,6,35,0.0 +22354,38,263.5,49,0.0 +22354,7,30,3,0.0 +22354,73,15,7,0.0 +22354,46,12,45,0.0 +22354,75,7.75,10,0.0 +22354,57,19.5,13,0.0 +22354,52,7,23,0.0 +22354,14,23.25,43,0.0 +22354,49,20,18,0.0 +22355,45,9.5,20,0.0 +22355,44,19.45,45,0.0 +22355,60,34,22,0.0 +22355,64,33.25,2,0.0 +22355,1,18,36,0.0 +22355,43,46,43,0.0 +22355,25,14,33,0.0 +22355,2,19,45,0.0 +22355,37,26,41,0.0 +22355,29,123.79,25,0.0 +22355,73,15,40,0.0 +22355,75,7.75,42,0.0 +22355,21,10,29,0.0 +22355,9,97,18,0.0 +22355,4,22,16,0.0 +22355,49,20,24,0.0 +22356,38,263.5,20,0.0 +22356,64,33.25,15,0.0 +22356,44,19.45,19,0.0 +22356,46,12,37,0.0 +22356,20,81,21,0.0 +22356,54,7.45,27,0.0 +22356,4,22,13,0.0 +22356,14,23.25,16,0.0 +22356,62,49.3,37,0.0 +22356,71,21.5,3,0.0 +22356,3,10,5,0.0 +22356,15,15.5,1,0.0 +22356,31,12.5,46,0.0 +22356,43,46,22,0.0 +22356,29,123.79,38,0.0 +22356,37,26,41,0.0 +22356,9,97,35,0.0 +22356,76,18,17,0.0 +22356,6,25,1,0.0 +22356,63,43.9,45,0.0 +22356,50,16.25,41,0.0 +22356,56,38,37,0.0 +22356,55,24,38,0.0 +22357,70,15,42,0.0 +22357,11,21,23,0.0 +22357,1,18,46,0.0 +22357,28,45.6,50,0.0 +22357,40,18.4,25,0.0 +22357,41,9.65,49,0.0 +22357,64,33.25,29,0.0 +22357,65,21.05,24,0.0 +22357,46,12,34,0.0 +22357,33,2.5,27,0.0 +22357,22,21,39,0.0 +22357,67,14,19,0.0 +22357,25,14,10,0.0 +22357,75,7.75,18,0.0 +22357,52,7,48,0.0 +22357,39,18,45,0.0 +22357,3,10,44,0.0 +22357,58,13.25,30,0.0 +22357,27,43.9,41,0.0 +22357,54,7.45,30,0.0 +22357,44,19.45,39,0.0 +22357,32,32,8,0.0 +22357,18,62.5,22,0.0 +22357,73,15,30,0.0 +22357,68,12.5,7,0.0 +22357,66,17,25,0.0 +22357,15,15.5,21,0.0 +22358,20,81,15,0.0 +22358,22,21,40,0.0 +22358,42,14,22,0.0 +22358,67,14,19,0.0 +22358,61,28.5,13,0.0 +22358,63,43.9,14,0.0 +22358,50,16.25,45,0.0 +22358,3,10,30,0.0 +22358,66,17,17,0.0 +22358,33,2.5,30,0.0 +22358,52,7,8,0.0 +22358,54,7.45,11,0.0 +22358,30,25.89,29,0.0 +22358,15,15.5,6,0.0 +22358,21,10,21,0.0 +22358,28,45.6,12,0.0 +22358,46,12,49,0.0 +22358,44,19.45,35,0.0 +22358,41,9.65,17,0.0 +22358,31,12.5,31,0.0 +22358,10,31,21,0.0 +22358,73,15,30,0.0 +22358,34,14,42,0.0 +22358,29,123.79,1,0.0 +22358,9,97,37,0.0 +22358,7,30,8,0.0 +22358,5,21.35,25,0.0 +22358,36,19,42,0.0 +22358,25,14,4,0.0 +22358,12,38,26,0.0 +22358,69,36,2,0.0 +22358,4,22,41,0.0 +22358,60,34,42,0.0 +22358,48,12.75,45,0.0 +22358,40,18.4,6,0.0 +22358,71,21.5,40,0.0 +22358,38,263.5,22,0.0 +22358,68,12.5,50,0.0 +22358,8,40,14,0.0 +22358,75,7.75,17,0.0 +22358,2,19,18,0.0 +22358,35,18,14,0.0 +22358,77,13,33,0.0 +22358,58,13.25,37,0.0 +22358,39,18,35,0.0 +22358,49,20,49,0.0 +22358,16,17.45,7,0.0 +22358,76,18,14,0.0 +22358,13,6,1,0.0 +22358,11,21,40,0.0 +22358,47,9.5,24,0.0 +22358,70,15,6,0.0 +22358,23,9,9,0.0 +22358,27,43.9,38,0.0 +22358,14,23.25,40,0.0 +22358,26,31.23,10,0.0 +22358,62,49.3,19,0.0 +22359,28,45.6,25,0.0 +22359,71,21.5,31,0.0 +22359,26,31.23,4,0.0 +22359,13,6,1,0.0 +22359,25,14,28,0.0 +22359,31,12.5,19,0.0 +22359,76,18,34,0.0 +22359,59,55,17,0.0 +22359,18,62.5,50,0.0 +22359,37,26,26,0.0 +22359,3,10,26,0.0 +22359,46,12,22,0.0 +22359,35,18,18,0.0 +22359,70,15,15,0.0 +22359,21,10,25,0.0 +22359,69,36,42,0.0 +22359,60,34,8,0.0 +22359,22,21,25,0.0 +22359,75,7.75,34,0.0 +22359,62,49.3,2,0.0 +22359,54,7.45,22,0.0 +22359,50,16.25,6,0.0 +22359,52,7,15,0.0 +22359,32,32,33,0.0 +22359,36,19,17,0.0 +22359,48,12.75,37,0.0 +22359,68,12.5,29,0.0 +22359,55,24,23,0.0 +22360,25,14,28,0.0 +22360,10,31,45,0.0 +22360,29,123.79,4,0.0 +22360,37,26,23,0.0 +22360,13,6,25,0.0 +22360,52,7,34,0.0 +22360,46,12,29,0.0 +22360,73,15,47,0.0 +22360,2,19,6,0.0 +22360,39,18,49,0.0 +22360,11,21,14,0.0 +22361,13,6,8,0.0 +22361,12,38,16,0.0 +22361,47,9.5,37,0.0 +22361,59,55,3,0.0 +22361,56,38,6,0.0 +22361,58,13.25,40,0.0 +22361,71,21.5,45,0.0 +22361,22,21,22,0.0 +22361,21,10,17,0.0 +22361,31,12.5,3,0.0 +22361,39,18,37,0.0 +22361,16,17.45,44,0.0 +22361,32,32,35,0.0 +22361,19,9.2,2,0.0 +22361,5,21.35,43,0.0 +22361,43,46,13,0.0 +22361,65,21.05,48,0.0 +22361,62,49.3,42,0.0 +22361,45,9.5,17,0.0 +22361,73,15,24,0.0 +22361,64,33.25,43,0.0 +22361,38,263.5,23,0.0 +22361,15,15.5,49,0.0 +22361,70,15,36,0.0 +22361,25,14,31,0.0 +22361,23,9,43,0.0 +22361,10,31,12,0.0 +22361,29,123.79,39,0.0 +22361,50,16.25,16,0.0 +22361,34,14,27,0.0 +22361,49,20,27,0.0 +22361,37,26,27,0.0 +22361,28,45.6,4,0.0 +22361,57,19.5,24,0.0 +22361,4,22,30,0.0 +22361,2,19,40,0.0 +22361,18,62.5,3,0.0 +22361,53,32.8,48,0.0 +22361,36,19,3,0.0 +22361,6,25,23,0.0 +22361,9,97,6,0.0 +22361,52,7,22,0.0 +22361,30,25.89,44,0.0 +22361,67,14,4,0.0 +22361,35,18,27,0.0 +22361,42,14,49,0.0 +22362,70,15,4,0.0 +22362,40,18.4,13,0.0 +22362,34,14,32,0.0 +22362,36,19,11,0.0 +22362,68,12.5,17,0.0 +22362,49,20,38,0.0 +22362,29,123.79,25,0.0 +22362,55,24,25,0.0 +22362,37,26,42,0.0 +22362,3,10,24,0.0 +22362,62,49.3,22,0.0 +22362,41,9.65,50,0.0 +22362,16,17.45,33,0.0 +22362,12,38,2,0.0 +22362,28,45.6,47,0.0 +22362,51,53,9,0.0 +22362,32,32,19,0.0 +22362,13,6,4,0.0 +22362,39,18,28,0.0 +22362,21,10,14,0.0 +22362,67,14,48,0.0 +22362,46,12,48,0.0 +22362,74,10,10,0.0 +22362,7,30,38,0.0 +22362,5,21.35,19,0.0 +22362,48,12.75,27,0.0 +22362,8,40,9,0.0 +22362,2,19,42,0.0 +22362,1,18,45,0.0 +22362,42,14,41,0.0 +22362,64,33.25,16,0.0 +22362,10,31,36,0.0 +22362,75,7.75,45,0.0 +22362,50,16.25,15,0.0 +22362,44,19.45,26,0.0 +22362,27,43.9,26,0.0 +22362,53,32.8,25,0.0 +22362,72,34.8,27,0.0 +22362,4,22,18,0.0 +22362,6,25,29,0.0 +22362,15,15.5,36,0.0 +22362,9,97,7,0.0 +22362,56,38,28,0.0 +22362,11,21,36,0.0 +22362,54,7.45,12,0.0 +22362,35,18,7,0.0 +22362,76,18,27,0.0 +22362,30,25.89,25,0.0 +22362,59,55,27,0.0 +22362,61,28.5,4,0.0 +22362,43,46,48,0.0 +22362,17,39,49,0.0 +22362,22,21,11,0.0 +22362,20,81,13,0.0 +22362,73,15,8,0.0 +22362,47,9.5,32,0.0 +22362,19,9.2,8,0.0 +22362,18,62.5,29,0.0 +22362,65,21.05,9,0.0 +22362,31,12.5,48,0.0 +22362,77,13,29,0.0 +22362,26,31.23,44,0.0 +22362,23,9,17,0.0 +22362,25,14,25,0.0 +22362,69,36,45,0.0 +22362,33,2.5,45,0.0 +22362,66,17,7,0.0 +22362,38,263.5,30,0.0 +22362,71,21.5,21,0.0 +22362,24,4.5,18,0.0 +22363,59,55,26,0.0 +22363,62,49.3,39,0.0 +22363,72,34.8,17,0.0 +22363,36,19,7,0.0 +22363,37,26,11,0.0 +22363,16,17.45,6,0.0 +22363,20,81,46,0.0 +22363,11,21,36,0.0 +22363,26,31.23,44,0.0 +22363,54,7.45,12,0.0 +22364,63,43.9,46,0.0 +22364,61,28.5,40,0.0 +22364,74,10,32,0.0 +22364,13,6,46,0.0 +22364,52,7,43,0.0 +22364,18,62.5,1,0.0 +22364,31,12.5,15,0.0 +22364,68,12.5,9,0.0 +22364,58,13.25,9,0.0 +22364,66,17,11,0.0 +22364,47,9.5,33,0.0 +22364,32,32,9,0.0 +22364,39,18,30,0.0 +22364,28,45.6,20,0.0 +22364,34,14,39,0.0 +22364,12,38,35,0.0 +22364,62,49.3,8,0.0 +22364,42,14,3,0.0 +22364,70,15,50,0.0 +22364,43,46,36,0.0 +22364,37,26,22,0.0 +22364,69,36,2,0.0 +22364,35,18,50,0.0 +22364,22,21,17,0.0 +22364,14,23.25,46,0.0 +22364,44,19.45,27,0.0 +22364,7,30,34,0.0 +22364,72,34.8,47,0.0 +22364,27,43.9,38,0.0 +22364,56,38,39,0.0 +22364,10,31,15,0.0 +22364,11,21,36,0.0 +22364,49,20,4,0.0 +22364,36,19,1,0.0 +22364,51,53,18,0.0 +22364,4,22,45,0.0 +22364,25,14,17,0.0 +22364,46,12,20,0.0 +22364,17,39,14,0.0 +22364,45,9.5,7,0.0 +22364,15,15.5,9,0.0 +22364,67,14,35,0.0 +22364,50,16.25,32,0.0 +22364,1,18,48,0.0 +22364,20,81,4,0.0 +22364,19,9.2,13,0.0 +22364,73,15,14,0.0 +22364,26,31.23,36,0.0 +22364,54,7.45,40,0.0 +22364,6,25,18,0.0 +22364,65,21.05,30,0.0 +22364,71,21.5,16,0.0 +22364,16,17.45,48,0.0 +22364,3,10,48,0.0 +22364,40,18.4,6,0.0 +22364,2,19,20,0.0 +22364,21,10,27,0.0 +22364,29,123.79,28,0.0 +22364,76,18,27,0.0 +22364,55,24,34,0.0 +22364,48,12.75,10,0.0 +22364,8,40,13,0.0 +22364,64,33.25,48,0.0 +22364,38,263.5,17,0.0 +22364,53,32.8,36,0.0 +22364,5,21.35,14,0.0 +22364,57,19.5,8,0.0 +22364,41,9.65,32,0.0 +22364,59,55,9,0.0 +22364,60,34,45,0.0 +22364,75,7.75,16,0.0 +22364,9,97,14,0.0 +22364,24,4.5,36,0.0 +22364,33,2.5,33,0.0 +22364,30,25.89,32,0.0 +22365,35,18,7,0.0 +22365,23,9,29,0.0 +22365,31,12.5,41,0.0 +22365,59,55,6,0.0 +22365,17,39,29,0.0 +22365,53,32.8,2,0.0 +22365,58,13.25,45,0.0 +22365,10,31,5,0.0 +22365,37,26,10,0.0 +22365,21,10,39,0.0 +22365,11,21,44,0.0 +22365,25,14,13,0.0 +22365,66,17,22,0.0 +22365,61,28.5,42,0.0 +22365,76,18,19,0.0 +22365,75,7.75,19,0.0 +22365,27,43.9,34,0.0 +22365,70,15,48,0.0 +22365,15,15.5,37,0.0 +22365,12,38,4,0.0 +22365,60,34,7,0.0 +22365,36,19,13,0.0 +22365,30,25.89,45,0.0 +22365,24,4.5,33,0.0 +22365,3,10,14,0.0 +22365,72,34.8,41,0.0 +22365,4,22,50,0.0 +22365,14,23.25,34,0.0 +22365,28,45.6,16,0.0 +22365,68,12.5,5,0.0 +22365,51,53,17,0.0 +22365,63,43.9,8,0.0 +22365,33,2.5,32,0.0 +22365,50,16.25,6,0.0 +22365,13,6,21,0.0 +22365,26,31.23,45,0.0 +22365,46,12,15,0.0 +22365,9,97,11,0.0 +22365,55,24,6,0.0 +22365,1,18,39,0.0 +22365,57,19.5,38,0.0 +22365,40,18.4,16,0.0 +22365,71,21.5,10,0.0 +22365,22,21,6,0.0 +22365,43,46,20,0.0 +22365,74,10,10,0.0 +22365,54,7.45,3,0.0 +22365,73,15,3,0.0 +22365,47,9.5,36,0.0 +22365,49,20,5,0.0 +22365,42,14,3,0.0 +22365,62,49.3,1,0.0 +22365,38,263.5,46,0.0 +22365,8,40,34,0.0 +22365,65,21.05,9,0.0 +22365,56,38,5,0.0 +22365,41,9.65,33,0.0 +22365,29,123.79,35,0.0 +22365,16,17.45,28,0.0 +22365,64,33.25,40,0.0 +22365,67,14,48,0.0 +22365,20,81,27,0.0 +22365,39,18,49,0.0 +22365,32,32,31,0.0 +22365,48,12.75,36,0.0 +22365,45,9.5,13,0.0 +22365,6,25,44,0.0 +22365,18,62.5,14,0.0 +22365,5,21.35,18,0.0 +22365,34,14,15,0.0 +22365,7,30,34,0.0 +22365,2,19,45,0.0 +22365,44,19.45,41,0.0 +22366,48,12.75,20,0.0 +22366,70,15,5,0.0 +22366,43,46,31,0.0 +22366,8,40,31,0.0 +22366,25,14,29,0.0 +22366,34,14,45,0.0 +22366,3,10,42,0.0 +22366,44,19.45,27,0.0 +22366,55,24,12,0.0 +22366,77,13,49,0.0 +22366,50,16.25,5,0.0 +22366,54,7.45,14,0.0 +22366,4,22,11,0.0 +22366,9,97,19,0.0 +22366,72,34.8,24,0.0 +22366,67,14,38,0.0 +22366,65,21.05,31,0.0 +22366,60,34,17,0.0 +22366,35,18,43,0.0 +22366,46,12,37,0.0 +22366,16,17.45,25,0.0 +22366,66,17,49,0.0 +22366,27,43.9,32,0.0 +22366,69,36,16,0.0 +22366,47,9.5,17,0.0 +22366,57,19.5,29,0.0 +22366,45,9.5,41,0.0 +22366,63,43.9,24,0.0 +22366,71,21.5,46,0.0 +22366,56,38,15,0.0 +22367,12,38,15,0.0 +22367,24,4.5,25,0.0 +22367,17,39,43,0.0 +22367,77,13,22,0.0 +22367,11,21,22,0.0 +22367,40,18.4,12,0.0 +22367,69,36,46,0.0 +22367,25,14,15,0.0 +22367,47,9.5,3,0.0 +22367,48,12.75,21,0.0 +22367,33,2.5,30,0.0 +22367,13,6,11,0.0 +22367,37,26,15,0.0 +22367,38,263.5,28,0.0 +22367,15,15.5,13,0.0 +22367,28,45.6,41,0.0 +22367,72,34.8,38,0.0 +22367,64,33.25,16,0.0 +22367,52,7,11,0.0 +22367,29,123.79,11,0.0 +22367,46,12,38,0.0 +22367,73,15,3,0.0 +22367,45,9.5,48,0.0 +22367,67,14,26,0.0 +22367,22,21,18,0.0 +22367,1,18,2,0.0 +22367,65,21.05,19,0.0 +22367,26,31.23,33,0.0 +22367,56,38,11,0.0 +22367,60,34,30,0.0 +22367,62,49.3,27,0.0 +22367,19,9.2,12,0.0 +22367,68,12.5,29,0.0 +22367,50,16.25,25,0.0 +22367,63,43.9,22,0.0 +22367,59,55,17,0.0 +22367,35,18,18,0.0 +22368,57,19.5,46,0.0 +22368,65,21.05,7,0.0 +22368,50,16.25,9,0.0 +22368,14,23.25,32,0.0 +22368,23,9,12,0.0 +22368,32,32,27,0.0 +22368,40,18.4,7,0.0 +22368,68,12.5,21,0.0 +22368,34,14,4,0.0 +22368,15,15.5,18,0.0 +22368,22,21,38,0.0 +22368,1,18,21,0.0 +22368,30,25.89,28,0.0 +22368,72,34.8,40,0.0 +22368,26,31.23,13,0.0 +22368,77,13,13,0.0 +22368,70,15,23,0.0 +22368,18,62.5,45,0.0 +22368,24,4.5,9,0.0 +22368,41,9.65,2,0.0 +22368,42,14,14,0.0 +22368,21,10,48,0.0 +22368,74,10,7,0.0 +22368,4,22,19,0.0 +22368,75,7.75,36,0.0 +22368,9,97,43,0.0 +22368,62,49.3,8,0.0 +22368,39,18,37,0.0 +22368,52,7,32,0.0 +22368,20,81,36,0.0 +22368,36,19,19,0.0 +22368,8,40,44,0.0 +22369,17,39,43,0.0 +22369,43,46,24,0.0 +22369,45,9.5,10,0.0 +22369,68,12.5,14,0.0 +22369,3,10,48,0.0 +22369,50,16.25,2,0.0 +22369,66,17,36,0.0 +22369,74,10,1,0.0 +22369,25,14,36,0.0 +22369,64,33.25,39,0.0 +22369,37,26,36,0.0 +22369,69,36,15,0.0 +22369,41,9.65,13,0.0 +22369,24,4.5,4,0.0 +22369,32,32,38,0.0 +22369,58,13.25,47,0.0 +22369,9,97,25,0.0 +22369,4,22,27,0.0 +22369,7,30,12,0.0 +22369,18,62.5,3,0.0 +22369,67,14,29,0.0 +22369,48,12.75,35,0.0 +22369,55,24,5,0.0 +22369,62,49.3,32,0.0 +22369,54,7.45,5,0.0 +22369,20,81,21,0.0 +22369,16,17.45,40,0.0 +22369,28,45.6,17,0.0 +22369,65,21.05,41,0.0 +22369,10,31,10,0.0 +22369,46,12,14,0.0 +22369,1,18,21,0.0 +22370,42,14,5,0.0 +22370,73,15,45,0.0 +22370,29,123.79,17,0.0 +22370,63,43.9,2,0.0 +22370,2,19,38,0.0 +22370,24,4.5,25,0.0 +22370,20,81,20,0.0 +22370,11,21,31,0.0 +22370,62,49.3,1,0.0 +22370,48,12.75,28,0.0 +22370,6,25,1,0.0 +22370,49,20,21,0.0 +22370,77,13,6,0.0 +22370,44,19.45,44,0.0 +22370,7,30,31,0.0 +22370,70,15,26,0.0 +22370,5,21.35,13,0.0 +22370,58,13.25,39,0.0 +22370,23,9,15,0.0 +22370,25,14,27,0.0 +22370,9,97,21,0.0 +22370,43,46,12,0.0 +22370,10,31,38,0.0 +22370,54,7.45,7,0.0 +22370,57,19.5,46,0.0 +22370,4,22,20,0.0 +22370,72,34.8,16,0.0 +22370,16,17.45,29,0.0 +22370,40,18.4,49,0.0 +22370,32,32,28,0.0 +22370,47,9.5,11,0.0 +22370,65,21.05,33,0.0 +22370,50,16.25,7,0.0 +22370,27,43.9,47,0.0 +22370,60,34,9,0.0 +22370,51,53,16,0.0 +22370,64,33.25,16,0.0 +22370,52,7,35,0.0 +22370,1,18,48,0.0 +22370,67,14,24,0.0 +22370,30,25.89,43,0.0 +22370,55,24,49,0.0 +22370,68,12.5,41,0.0 +22370,26,31.23,40,0.0 +22370,45,9.5,10,0.0 +22370,8,40,23,0.0 +22370,3,10,36,0.0 +22370,69,36,23,0.0 +22370,36,19,18,0.0 +22370,41,9.65,26,0.0 +22370,35,18,2,0.0 +22371,71,21.5,45,0.0 +22372,46,12,11,0.0 +22372,51,53,47,0.0 +22372,74,10,22,0.0 +22372,18,62.5,26,0.0 +22372,20,81,25,0.0 +22372,50,16.25,46,0.0 +22372,8,40,16,0.0 +22372,65,21.05,46,0.0 +22372,24,4.5,48,0.0 +22372,19,9.2,42,0.0 +22372,17,39,36,0.0 +22372,40,18.4,8,0.0 +22372,49,20,36,0.0 +22372,38,263.5,18,0.0 +22372,41,9.65,11,0.0 +22372,42,14,18,0.0 +22372,6,25,23,0.0 +22372,47,9.5,7,0.0 +22372,37,26,40,0.0 +22372,66,17,46,0.0 +22372,64,33.25,38,0.0 +22372,71,21.5,10,0.0 +22373,68,12.5,25,0.0 +22373,76,18,11,0.0 +22373,1,18,32,0.0 +22373,40,18.4,25,0.0 +22373,69,36,17,0.0 +22373,5,21.35,43,0.0 +22373,54,7.45,20,0.0 +22373,32,32,28,0.0 +22373,27,43.9,4,0.0 +22373,48,12.75,11,0.0 +22373,57,19.5,14,0.0 +22373,22,21,3,0.0 +22373,60,34,43,0.0 +22373,36,19,10,0.0 +22373,62,49.3,16,0.0 +22373,75,7.75,50,0.0 +22373,3,10,29,0.0 +22373,28,45.6,2,0.0 +22373,47,9.5,48,0.0 +22373,38,263.5,6,0.0 +22373,30,25.89,48,0.0 +22373,2,19,35,0.0 +22373,24,4.5,1,0.0 +22373,8,40,11,0.0 +22373,56,38,30,0.0 +22373,61,28.5,50,0.0 +22373,58,13.25,48,0.0 +22373,29,123.79,26,0.0 +22373,39,18,27,0.0 +22373,64,33.25,46,0.0 +22373,41,9.65,13,0.0 +22374,48,12.75,32,0.0 +22374,63,43.9,47,0.0 +22374,8,40,32,0.0 +22374,24,4.5,7,0.0 +22374,20,81,16,0.0 +22374,52,7,18,0.0 +22374,22,21,41,0.0 +22374,11,21,45,0.0 +22374,28,45.6,4,0.0 +22374,6,25,35,0.0 +22374,5,21.35,6,0.0 +22374,38,263.5,5,0.0 +22374,18,62.5,46,0.0 +22374,53,32.8,19,0.0 +22374,4,22,46,0.0 +22374,57,19.5,6,0.0 +22374,77,13,34,0.0 +22374,13,6,42,0.0 +22374,21,10,13,0.0 +22374,45,9.5,40,0.0 +22374,31,12.5,38,0.0 +22374,23,9,25,0.0 +22374,2,19,21,0.0 +22374,55,24,47,0.0 +22374,12,38,47,0.0 +22374,65,21.05,46,0.0 +22374,73,15,38,0.0 +22374,62,49.3,14,0.0 +22374,37,26,14,0.0 +22374,1,18,14,0.0 +22374,69,36,49,0.0 +22374,75,7.75,2,0.0 +22374,30,25.89,14,0.0 +22374,10,31,14,0.0 +22374,19,9.2,32,0.0 +22374,56,38,21,0.0 +22374,67,14,44,0.0 +22374,34,14,46,0.0 +22374,54,7.45,5,0.0 +22374,40,18.4,34,0.0 +22374,44,19.45,47,0.0 +22374,43,46,7,0.0 +22374,58,13.25,16,0.0 +22374,32,32,26,0.0 +22374,71,21.5,24,0.0 +22374,49,20,21,0.0 +22374,36,19,27,0.0 +22374,72,34.8,25,0.0 +22374,60,34,39,0.0 +22374,27,43.9,10,0.0 +22374,3,10,21,0.0 +22374,41,9.65,41,0.0 +22374,35,18,4,0.0 +22374,47,9.5,44,0.0 +22374,39,18,48,0.0 +22374,70,15,36,0.0 +22374,66,17,1,0.0 +22374,59,55,44,0.0 +22374,50,16.25,35,0.0 +22374,68,12.5,33,0.0 +22374,42,14,5,0.0 +22374,16,17.45,4,0.0 +22374,46,12,20,0.0 +22374,15,15.5,36,0.0 +22374,9,97,39,0.0 +22374,61,28.5,25,0.0 +22375,73,15,16,0.0 +22375,24,4.5,50,0.0 +22375,65,21.05,45,0.0 +22375,38,263.5,9,0.0 +22375,43,46,46,0.0 +22375,16,17.45,18,0.0 +22375,48,12.75,12,0.0 +22375,40,18.4,30,0.0 +22375,19,9.2,29,0.0 +22375,17,39,44,0.0 +22375,62,49.3,3,0.0 +22375,57,19.5,1,0.0 +22375,72,34.8,12,0.0 +22375,12,38,8,0.0 +22375,71,21.5,18,0.0 +22375,18,62.5,35,0.0 +22375,9,97,15,0.0 +22375,46,12,8,0.0 +22376,3,10,17,0.0 +22376,34,14,5,0.0 +22376,49,20,18,0.0 +22376,71,21.5,43,0.0 +22376,41,9.65,2,0.0 +22376,29,123.79,22,0.0 +22376,1,18,14,0.0 +22376,25,14,49,0.0 +22376,2,19,47,0.0 +22376,63,43.9,1,0.0 +22376,42,14,17,0.0 +22376,39,18,37,0.0 +22376,73,15,22,0.0 +22376,59,55,45,0.0 +22376,38,263.5,22,0.0 +22376,56,38,25,0.0 +22376,47,9.5,10,0.0 +22376,37,26,28,0.0 +22376,11,21,37,0.0 +22376,17,39,18,0.0 +22376,46,12,14,0.0 +22376,67,14,20,0.0 +22376,48,12.75,25,0.0 +22376,13,6,2,0.0 +22376,26,31.23,24,0.0 +22376,16,17.45,22,0.0 +22376,22,21,20,0.0 +22376,10,31,5,0.0 +22376,60,34,9,0.0 +22376,65,21.05,14,0.0 +22376,19,9.2,19,0.0 +22376,4,22,23,0.0 +22376,64,33.25,25,0.0 +22376,43,46,4,0.0 +22376,50,16.25,15,0.0 +22376,20,81,23,0.0 +22376,75,7.75,11,0.0 +22376,18,62.5,27,0.0 +22376,53,32.8,42,0.0 +22376,7,30,29,0.0 +22376,44,19.45,50,0.0 +22376,5,21.35,38,0.0 +22376,21,10,50,0.0 +22376,28,45.6,37,0.0 +22376,70,15,30,0.0 +22376,52,7,18,0.0 +22376,51,53,25,0.0 +22376,61,28.5,42,0.0 +22376,33,2.5,27,0.0 +22376,54,7.45,11,0.0 +22376,30,25.89,47,0.0 +22376,77,13,24,0.0 +22376,14,23.25,31,0.0 +22376,35,18,11,0.0 +22376,32,32,14,0.0 +22376,23,9,14,0.0 +22376,72,34.8,28,0.0 +22376,40,18.4,16,0.0 +22376,45,9.5,25,0.0 +22376,66,17,45,0.0 +22376,57,19.5,2,0.0 +22377,37,26,10,0.0 +22377,28,45.6,39,0.0 +22377,9,97,27,0.0 +22377,77,13,40,0.0 +22377,13,6,4,0.0 +22378,13,6,30,0.0 +22379,23,9,7,0.0 +22379,47,9.5,2,0.0 +22379,38,263.5,4,0.0 +22379,5,21.35,34,0.0 +22379,31,12.5,38,0.0 +22379,45,9.5,12,0.0 +22379,68,12.5,17,0.0 +22379,49,20,8,0.0 +22379,75,7.75,35,0.0 +22379,35,18,43,0.0 +22379,2,19,17,0.0 +22379,34,14,7,0.0 +22379,73,15,41,0.0 +22379,25,14,24,0.0 +22379,58,13.25,27,0.0 +22379,14,23.25,33,0.0 +22379,50,16.25,34,0.0 +22379,42,14,20,0.0 +22379,33,2.5,27,0.0 +22379,71,21.5,36,0.0 +22379,46,12,16,0.0 +22379,8,40,15,0.0 +22379,77,13,31,0.0 +22379,74,10,24,0.0 +22380,31,12.5,6,0.0 +22380,30,25.89,12,0.0 +22380,66,17,14,0.0 +22380,73,15,49,0.0 +22380,71,21.5,14,0.0 +22380,74,10,8,0.0 +22380,2,19,11,0.0 +22380,1,18,18,0.0 +22380,14,23.25,2,0.0 +22380,34,14,15,0.0 +22380,11,21,19,0.0 +22380,3,10,50,0.0 +22380,10,31,6,0.0 +22380,63,43.9,30,0.0 +22380,43,46,9,0.0 +22380,51,53,48,0.0 +22380,12,38,11,0.0 +22380,23,9,9,0.0 +22380,46,12,35,0.0 +22380,60,34,48,0.0 +22380,75,7.75,4,0.0 +22380,20,81,8,0.0 +22380,18,62.5,28,0.0 +22380,61,28.5,30,0.0 +22380,5,21.35,14,0.0 +22380,42,14,11,0.0 +22380,4,22,49,0.0 +22380,22,21,1,0.0 +22380,13,6,2,0.0 +22380,64,33.25,36,0.0 +22380,6,25,13,0.0 +22380,49,20,26,0.0 +22380,47,9.5,29,0.0 +22380,69,36,4,0.0 +22380,39,18,39,0.0 +22380,62,49.3,22,0.0 +22380,53,32.8,44,0.0 +22380,44,19.45,36,0.0 +22380,27,43.9,45,0.0 +22380,32,32,24,0.0 +22380,57,19.5,1,0.0 +22380,54,7.45,20,0.0 +22380,55,24,7,0.0 +22380,8,40,4,0.0 +22380,25,14,40,0.0 +22380,40,18.4,38,0.0 +22380,7,30,31,0.0 +22380,21,10,18,0.0 +22380,24,4.5,46,0.0 +22380,15,15.5,3,0.0 +22380,41,9.65,4,0.0 +22380,50,16.25,34,0.0 +22380,68,12.5,46,0.0 +22380,48,12.75,45,0.0 +22380,67,14,33,0.0 +22380,38,263.5,28,0.0 +22380,9,97,30,0.0 +22380,70,15,48,0.0 +22380,36,19,7,0.0 +22380,28,45.6,47,0.0 +22380,65,21.05,12,0.0 +22380,77,13,43,0.0 +22380,29,123.79,11,0.0 +22380,19,9.2,11,0.0 +22380,26,31.23,45,0.0 +22380,56,38,44,0.0 +22380,72,34.8,46,0.0 +22380,16,17.45,11,0.0 +22380,33,2.5,14,0.0 +22380,52,7,9,0.0 +22380,58,13.25,12,0.0 +22380,76,18,41,0.0 +22381,55,24,38,0.0 +22381,61,28.5,41,0.0 +22381,59,55,48,0.0 +22381,13,6,8,0.0 +22381,17,39,11,0.0 +22381,39,18,11,0.0 +22381,25,14,26,0.0 +22381,9,97,6,0.0 +22381,53,32.8,2,0.0 +22381,30,25.89,26,0.0 +22381,18,62.5,29,0.0 +22381,56,38,18,0.0 +22381,2,19,5,0.0 +22381,42,14,20,0.0 +22381,36,19,13,0.0 +22381,54,7.45,28,0.0 +22381,10,31,23,0.0 +22381,5,21.35,43,0.0 +22381,76,18,2,0.0 +22381,58,13.25,49,0.0 +22381,66,17,48,0.0 +22381,46,12,9,0.0 +22381,64,33.25,20,0.0 +22381,28,45.6,7,0.0 +22381,3,10,39,0.0 +22381,6,25,43,0.0 +22381,8,40,45,0.0 +22381,41,9.65,20,0.0 +22381,38,263.5,12,0.0 +22381,73,15,41,0.0 +22381,45,9.5,36,0.0 +22381,63,43.9,44,0.0 +22381,32,32,47,0.0 +22381,34,14,25,0.0 +22381,52,7,5,0.0 +22381,69,36,9,0.0 +22381,72,34.8,26,0.0 +22381,14,23.25,27,0.0 +22381,7,30,7,0.0 +22381,20,81,17,0.0 +22381,43,46,27,0.0 +22381,47,9.5,36,0.0 +22381,15,15.5,11,0.0 +22381,74,10,21,0.0 +22381,48,12.75,20,0.0 +22381,68,12.5,37,0.0 +22381,75,7.75,45,0.0 +22381,26,31.23,36,0.0 +22381,29,123.79,43,0.0 +22381,60,34,47,0.0 +22381,77,13,8,0.0 +22381,71,21.5,17,0.0 +22381,16,17.45,3,0.0 +22381,11,21,9,0.0 +22381,23,9,14,0.0 +22381,62,49.3,47,0.0 +22381,33,2.5,14,0.0 +22381,70,15,20,0.0 +22381,21,10,41,0.0 +22381,44,19.45,29,0.0 +22381,51,53,23,0.0 +22381,67,14,48,0.0 +22381,40,18.4,40,0.0 +22382,4,22,34,0.0 +22382,6,25,16,0.0 +22382,66,17,43,0.0 +22382,16,17.45,41,0.0 +22382,73,15,12,0.0 +22382,43,46,8,0.0 +22382,68,12.5,44,0.0 +22382,63,43.9,13,0.0 +22383,53,32.8,11,0.0 +22383,5,21.35,18,0.0 +22383,42,14,48,0.0 +22383,1,18,15,0.0 +22383,77,13,44,0.0 +22383,18,62.5,32,0.0 +22383,8,40,14,0.0 +22383,33,2.5,26,0.0 +22383,32,32,45,0.0 +22383,4,22,44,0.0 +22383,72,34.8,46,0.0 +22383,73,15,43,0.0 +22383,27,43.9,32,0.0 +22383,36,19,48,0.0 +22383,52,7,18,0.0 +22383,66,17,27,0.0 +22383,55,24,17,0.0 +22383,24,4.5,10,0.0 +22383,15,15.5,13,0.0 +22383,25,14,2,0.0 +22383,65,21.05,14,0.0 +22383,35,18,32,0.0 +22383,49,20,5,0.0 +22383,45,9.5,36,0.0 +22383,34,14,19,0.0 +22383,62,49.3,33,0.0 +22383,60,34,12,0.0 +22383,13,6,33,0.0 +22384,67,14,29,0.0 +22384,45,9.5,50,0.0 +22384,13,6,22,0.0 +22384,28,45.6,35,0.0 +22384,31,12.5,10,0.0 +22384,48,12.75,22,0.0 +22384,18,62.5,35,0.0 +22384,49,20,27,0.0 +22384,43,46,33,0.0 +22384,46,12,3,0.0 +22384,42,14,26,0.0 +22384,14,23.25,2,0.0 +22384,32,32,34,0.0 +22384,60,34,50,0.0 +22384,34,14,48,0.0 +22384,75,7.75,6,0.0 +22384,44,19.45,29,0.0 +22384,70,15,15,0.0 +22384,4,22,40,0.0 +22384,27,43.9,47,0.0 +22384,59,55,50,0.0 +22384,65,21.05,30,0.0 +22384,41,9.65,23,0.0 +22384,50,16.25,40,0.0 +22384,5,21.35,10,0.0 +22384,71,21.5,4,0.0 +22384,12,38,45,0.0 +22384,15,15.5,4,0.0 +22384,51,53,16,0.0 +22384,22,21,24,0.0 +22384,10,31,4,0.0 +22384,68,12.5,26,0.0 +22384,33,2.5,10,0.0 +22384,40,18.4,47,0.0 +22384,16,17.45,38,0.0 +22384,11,21,32,0.0 +22384,9,97,24,0.0 +22384,66,17,16,0.0 +22384,63,43.9,39,0.0 +22384,19,9.2,31,0.0 +22384,58,13.25,49,0.0 +22384,39,18,37,0.0 +22384,61,28.5,36,0.0 +22384,2,19,28,0.0 +22384,56,38,45,0.0 +22384,35,18,20,0.0 +22384,21,10,48,0.0 +22384,17,39,34,0.0 +22384,52,7,35,0.0 +22384,1,18,33,0.0 +22384,24,4.5,25,0.0 +22384,25,14,39,0.0 +22384,69,36,14,0.0 +22384,62,49.3,25,0.0 +22384,8,40,42,0.0 +22384,73,15,9,0.0 +22384,64,33.25,14,0.0 +22384,20,81,41,0.0 +22384,72,34.8,50,0.0 +22384,37,26,31,0.0 +22384,55,24,7,0.0 +22384,36,19,1,0.0 +22384,23,9,26,0.0 +22384,29,123.79,43,0.0 +22384,3,10,26,0.0 +22384,26,31.23,7,0.0 +22384,74,10,8,0.0 +22384,54,7.45,11,0.0 +22385,26,31.23,11,0.0 +22385,30,25.89,7,0.0 +22385,65,21.05,12,0.0 +22385,50,16.25,14,0.0 +22385,69,36,2,0.0 +22385,67,14,41,0.0 +22385,37,26,30,0.0 +22385,60,34,29,0.0 +22385,27,43.9,21,0.0 +22385,32,32,32,0.0 +22385,8,40,19,0.0 +22385,54,7.45,3,0.0 +22385,31,12.5,4,0.0 +22385,17,39,31,0.0 +22385,68,12.5,46,0.0 +22385,41,9.65,41,0.0 +22385,4,22,5,0.0 +22385,73,15,42,0.0 +22385,1,18,7,0.0 +22385,11,21,36,0.0 +22385,71,21.5,43,0.0 +22385,29,123.79,6,0.0 +22385,45,9.5,21,0.0 +22385,10,31,19,0.0 +22385,75,7.75,17,0.0 +22385,3,10,45,0.0 +22385,57,19.5,31,0.0 +22385,72,34.8,4,0.0 +22385,62,49.3,46,0.0 +22385,22,21,21,0.0 +22385,51,53,35,0.0 +22385,2,19,49,0.0 +22385,21,10,18,0.0 +22385,64,33.25,37,0.0 +22385,20,81,20,0.0 +22385,25,14,16,0.0 +22385,19,9.2,15,0.0 +22385,14,23.25,21,0.0 +22385,66,17,26,0.0 +22385,28,45.6,29,0.0 +22385,9,97,36,0.0 +22385,58,13.25,39,0.0 +22386,45,9.5,14,0.0 +22386,7,30,27,0.0 +22386,75,7.75,14,0.0 +22386,30,25.89,12,0.0 +22386,51,53,43,0.0 +22387,20,81,44,0.0 +22387,33,2.5,31,0.0 +22387,52,7,45,0.0 +22387,55,24,11,0.0 +22387,35,18,7,0.0 +22387,14,23.25,1,0.0 +22387,34,14,40,0.0 +22387,76,18,13,0.0 +22387,27,43.9,18,0.0 +22387,57,19.5,7,0.0 +22387,10,31,35,0.0 +22387,63,43.9,8,0.0 +22387,70,15,44,0.0 +22387,68,12.5,17,0.0 +22387,2,19,13,0.0 +22387,64,33.25,21,0.0 +22387,73,15,23,0.0 +22387,7,30,39,0.0 +22387,41,9.65,8,0.0 +22387,54,7.45,44,0.0 +22387,8,40,22,0.0 +22387,56,38,16,0.0 +22387,19,9.2,31,0.0 +22387,47,9.5,10,0.0 +22387,66,17,46,0.0 +22387,69,36,37,0.0 +22387,72,34.8,3,0.0 +22387,1,18,12,0.0 +22387,58,13.25,2,0.0 +22387,22,21,16,0.0 +22387,4,22,31,0.0 +22387,38,263.5,30,0.0 +22387,5,21.35,29,0.0 +22387,24,4.5,13,0.0 +22387,23,9,42,0.0 +22387,21,10,25,0.0 +22387,65,21.05,4,0.0 +22387,9,97,37,0.0 +22387,17,39,4,0.0 +22387,11,21,41,0.0 +22387,6,25,46,0.0 +22387,39,18,32,0.0 +22387,29,123.79,26,0.0 +22387,60,34,4,0.0 +22387,45,9.5,38,0.0 +22387,12,38,28,0.0 +22387,48,12.75,36,0.0 +22387,28,45.6,8,0.0 +22387,67,14,48,0.0 +22387,16,17.45,7,0.0 +22388,31,12.5,43,0.0 +22388,61,28.5,8,0.0 +22388,57,19.5,6,0.0 +22388,38,263.5,15,0.0 +22388,75,7.75,30,0.0 +22388,10,31,49,0.0 +22388,28,45.6,37,0.0 +22388,18,62.5,34,0.0 +22388,24,4.5,40,0.0 +22388,74,10,20,0.0 +22388,15,15.5,28,0.0 +22388,43,46,36,0.0 +22388,5,21.35,15,0.0 +22388,76,18,7,0.0 +22388,60,34,5,0.0 +22388,30,25.89,5,0.0 +22388,59,55,30,0.0 +22388,7,30,11,0.0 +22388,34,14,31,0.0 +22388,65,21.05,6,0.0 +22388,6,25,31,0.0 +22388,64,33.25,7,0.0 +22388,2,19,38,0.0 +22388,36,19,48,0.0 +22388,62,49.3,26,0.0 +22388,11,21,45,0.0 +22388,1,18,2,0.0 +22388,23,9,34,0.0 +22388,66,17,2,0.0 +22388,26,31.23,43,0.0 +22388,13,6,21,0.0 +22388,33,2.5,46,0.0 +22388,72,34.8,32,0.0 +22388,27,43.9,12,0.0 +22388,9,97,25,0.0 +22388,42,14,18,0.0 +22388,69,36,24,0.0 +22388,68,12.5,47,0.0 +22388,53,32.8,38,0.0 +22388,48,12.75,46,0.0 +22388,8,40,24,0.0 +22388,21,10,39,0.0 +22388,49,20,42,0.0 +22388,51,53,3,0.0 +22388,58,13.25,19,0.0 +22388,54,7.45,5,0.0 +22388,17,39,7,0.0 +22388,77,13,3,0.0 +22388,14,23.25,26,0.0 +22388,16,17.45,26,0.0 +22388,44,19.45,40,0.0 +22388,45,9.5,8,0.0 +22388,56,38,50,0.0 +22388,29,123.79,14,0.0 +22388,22,21,20,0.0 +22388,3,10,29,0.0 +22388,39,18,22,0.0 +22388,20,81,33,0.0 +22388,35,18,28,0.0 +22389,8,40,41,0.0 +22389,75,7.75,21,0.0 +22389,21,10,2,0.0 +22389,12,38,1,0.0 +22389,5,21.35,17,0.0 +22389,58,13.25,50,0.0 +22389,66,17,44,0.0 +22389,7,30,29,0.0 +22389,38,263.5,34,0.0 +22389,31,12.5,6,0.0 +22389,3,10,41,0.0 +22389,24,4.5,26,0.0 +22389,1,18,38,0.0 +22389,20,81,2,0.0 +22389,37,26,43,0.0 +22390,2,19,31,0.0 +22390,27,43.9,43,0.0 +22390,12,38,31,0.0 +22390,16,17.45,25,0.0 +22390,77,13,22,0.0 +22390,75,7.75,28,0.0 +22390,34,14,45,0.0 +22390,45,9.5,30,0.0 +22390,19,9.2,48,0.0 +22390,15,15.5,38,0.0 +22390,39,18,22,0.0 +22390,69,36,22,0.0 +22390,53,32.8,7,0.0 +22390,32,32,7,0.0 +22390,9,97,8,0.0 +22390,25,14,10,0.0 +22390,6,25,14,0.0 +22390,61,28.5,39,0.0 +22390,20,81,24,0.0 +22390,68,12.5,32,0.0 +22390,54,7.45,40,0.0 +22390,76,18,13,0.0 +22390,38,263.5,5,0.0 +22390,72,34.8,22,0.0 +22390,73,15,44,0.0 +22390,67,14,40,0.0 +22390,60,34,19,0.0 +22390,10,31,31,0.0 +22390,33,2.5,11,0.0 +22390,41,9.65,23,0.0 +22390,18,62.5,48,0.0 +22390,49,20,8,0.0 +22390,13,6,12,0.0 +22390,62,49.3,45,0.0 +22390,8,40,1,0.0 +22390,70,15,8,0.0 +22390,71,21.5,7,0.0 +22390,46,12,1,0.0 +22390,57,19.5,9,0.0 +22390,40,18.4,42,0.0 +22390,66,17,14,0.0 +22390,48,12.75,25,0.0 +22390,24,4.5,39,0.0 +22390,30,25.89,25,0.0 +22390,51,53,29,0.0 +22390,1,18,33,0.0 +22390,31,12.5,34,0.0 +22390,74,10,49,0.0 +22390,63,43.9,28,0.0 +22390,5,21.35,26,0.0 +22390,3,10,28,0.0 +22390,52,7,23,0.0 +22390,64,33.25,17,0.0 +22390,58,13.25,33,0.0 +22390,35,18,6,0.0 +22390,21,10,16,0.0 +22390,7,30,37,0.0 +22390,28,45.6,25,0.0 +22390,50,16.25,45,0.0 +22390,43,46,24,0.0 +22390,37,26,49,0.0 +22390,11,21,46,0.0 +22390,42,14,10,0.0 +22390,65,21.05,37,0.0 +22390,14,23.25,23,0.0 +22390,17,39,17,0.0 +22390,4,22,47,0.0 +22391,23,9,11,0.0 +22391,76,18,44,0.0 +22391,54,7.45,2,0.0 +22391,1,18,10,0.0 +22391,35,18,13,0.0 +22391,2,19,1,0.0 +22391,14,23.25,18,0.0 +22391,77,13,11,0.0 +22391,4,22,23,0.0 +22391,22,21,27,0.0 +22391,57,19.5,1,0.0 +22391,43,46,31,0.0 +22391,55,24,28,0.0 +22391,10,31,5,0.0 +22391,67,14,29,0.0 +22391,69,36,22,0.0 +22391,26,31.23,50,0.0 +22391,45,9.5,9,0.0 +22391,60,34,13,0.0 +22391,47,9.5,38,0.0 +22391,75,7.75,39,0.0 +22391,63,43.9,8,0.0 +22391,31,12.5,36,0.0 +22391,28,45.6,18,0.0 +22391,50,16.25,38,0.0 +22391,12,38,24,0.0 +22391,73,15,48,0.0 +22392,26,31.23,8,0.0 +22392,57,19.5,27,0.0 +22392,16,17.45,29,0.0 +22393,25,14,23,0.0 +22393,44,19.45,24,0.0 +22393,55,24,19,0.0 +22393,69,36,34,0.0 +22393,29,123.79,20,0.0 +22393,46,12,41,0.0 +22393,58,13.25,37,0.0 +22393,31,12.5,17,0.0 +22393,66,17,21,0.0 +22393,27,43.9,13,0.0 +22393,4,22,28,0.0 +22394,66,17,15,0.0 +22394,8,40,49,0.0 +22394,74,10,12,0.0 +22394,28,45.6,10,0.0 +22394,22,21,12,0.0 +22394,11,21,3,0.0 +22394,57,19.5,26,0.0 +22394,63,43.9,9,0.0 +22394,60,34,49,0.0 +22394,26,31.23,21,0.0 +22394,54,7.45,34,0.0 +22394,40,18.4,5,0.0 +22394,19,9.2,7,0.0 +22394,14,23.25,21,0.0 +22394,30,25.89,43,0.0 +22394,2,19,10,0.0 +22394,73,15,40,0.0 +22394,18,62.5,12,0.0 +22394,35,18,20,0.0 +22394,43,46,34,0.0 +22394,41,9.65,5,0.0 +22394,39,18,48,0.0 +22394,72,34.8,34,0.0 +22394,33,2.5,23,0.0 +22394,59,55,42,0.0 +22394,21,10,6,0.0 +22394,34,14,21,0.0 +22394,56,38,3,0.0 +22394,77,13,17,0.0 +22394,23,9,10,0.0 +22394,42,14,20,0.0 +22394,44,19.45,23,0.0 +22394,9,97,29,0.0 +22394,38,263.5,29,0.0 +22394,51,53,45,0.0 +22394,71,21.5,45,0.0 +22394,37,26,19,0.0 +22394,13,6,16,0.0 +22394,1,18,41,0.0 +22394,61,28.5,23,0.0 +22394,47,9.5,13,0.0 +22394,10,31,39,0.0 +22394,15,15.5,30,0.0 +22394,24,4.5,38,0.0 +22394,5,21.35,14,0.0 +22394,55,24,19,0.0 +22394,7,30,17,0.0 +22394,49,20,14,0.0 +22394,48,12.75,10,0.0 +22394,68,12.5,13,0.0 +22394,70,15,49,0.0 +22394,46,12,50,0.0 +22394,20,81,46,0.0 +22394,75,7.75,5,0.0 +22394,31,12.5,1,0.0 +22394,64,33.25,4,0.0 +22394,62,49.3,32,0.0 +22394,3,10,7,0.0 +22394,29,123.79,38,0.0 +22395,66,17,8,0.0 +22395,11,21,21,0.0 +22395,47,9.5,12,0.0 +22395,57,19.5,37,0.0 +22395,40,18.4,5,0.0 +22395,67,14,8,0.0 +22395,24,4.5,5,0.0 +22395,8,40,36,0.0 +22395,74,10,11,0.0 +22395,68,12.5,20,0.0 +22395,23,9,30,0.0 +22395,27,43.9,14,0.0 +22395,64,33.25,36,0.0 +22395,48,12.75,16,0.0 +22395,14,23.25,47,0.0 +22395,15,15.5,40,0.0 +22395,45,9.5,24,0.0 +22395,49,20,38,0.0 +22395,54,7.45,42,0.0 +22395,2,19,6,0.0 +22395,36,19,32,0.0 +22395,21,10,14,0.0 +22395,17,39,8,0.0 +22395,3,10,17,0.0 +22395,56,38,32,0.0 +22395,77,13,39,0.0 +22395,9,97,21,0.0 +22395,25,14,22,0.0 +22395,34,14,30,0.0 +22395,1,18,9,0.0 +22395,72,34.8,44,0.0 +22395,52,7,26,0.0 +22395,50,16.25,42,0.0 +22395,10,31,26,0.0 +22395,76,18,45,0.0 +22395,30,25.89,47,0.0 +22395,73,15,37,0.0 +22395,33,2.5,34,0.0 +22395,70,15,23,0.0 +22395,35,18,4,0.0 +22395,69,36,16,0.0 +22395,4,22,9,0.0 +22395,42,14,11,0.0 +22395,43,46,42,0.0 +22396,41,9.65,25,0.0 +22396,4,22,41,0.0 +22396,53,32.8,46,0.0 +22396,68,12.5,19,0.0 +22396,75,7.75,10,0.0 +22396,7,30,38,0.0 +22396,27,43.9,27,0.0 +22396,33,2.5,16,0.0 +22396,23,9,12,0.0 +22396,38,263.5,7,0.0 +22396,50,16.25,36,0.0 +22396,29,123.79,14,0.0 +22396,20,81,16,0.0 +22396,46,12,15,0.0 +22396,13,6,22,0.0 +22396,52,7,35,0.0 +22396,60,34,8,0.0 +22396,28,45.6,28,0.0 +22396,47,9.5,37,0.0 +22396,9,97,15,0.0 +22396,63,43.9,39,0.0 +22396,54,7.45,22,0.0 +22396,31,12.5,18,0.0 +22396,21,10,9,0.0 +22396,35,18,14,0.0 +22396,19,9.2,3,0.0 +22396,74,10,22,0.0 +22396,72,34.8,36,0.0 +22396,10,31,14,0.0 +22396,58,13.25,30,0.0 +22397,55,24,6,0.0 +22397,38,263.5,28,0.0 +22398,1,18,9,0.0 +22398,60,34,5,0.0 +22398,4,22,7,0.0 +22398,52,7,29,0.0 +22398,57,19.5,35,0.0 +22398,18,62.5,37,0.0 +22398,16,17.45,1,0.0 +22398,65,21.05,47,0.0 +22398,30,25.89,39,0.0 +22398,56,38,6,0.0 +22398,26,31.23,1,0.0 +22398,45,9.5,46,0.0 +22398,32,32,45,0.0 +22398,50,16.25,25,0.0 +22398,39,18,26,0.0 +22398,10,31,19,0.0 +22398,36,19,46,0.0 +22398,20,81,21,0.0 +22398,22,21,27,0.0 +22398,68,12.5,24,0.0 +22398,43,46,11,0.0 +22398,17,39,35,0.0 +22398,3,10,50,0.0 +22398,77,13,42,0.0 +22398,59,55,45,0.0 +22398,11,21,44,0.0 +22398,6,25,23,0.0 +22398,49,20,14,0.0 +22398,70,15,13,0.0 +22398,75,7.75,37,0.0 +22398,71,21.5,43,0.0 +22398,21,10,16,0.0 +22398,13,6,26,0.0 +22398,61,28.5,21,0.0 +22398,42,14,49,0.0 +22398,40,18.4,47,0.0 +22398,47,9.5,35,0.0 +22398,63,43.9,34,0.0 +22398,2,19,23,0.0 +22398,38,263.5,31,0.0 +22398,9,97,8,0.0 +22398,28,45.6,24,0.0 +22398,37,26,22,0.0 +22398,74,10,39,0.0 +22398,19,9.2,13,0.0 +22398,73,15,41,0.0 +22398,41,9.65,15,0.0 +22398,29,123.79,12,0.0 +22398,14,23.25,17,0.0 +22398,23,9,6,0.0 +22398,27,43.9,31,0.0 +22398,24,4.5,6,0.0 +22398,53,32.8,12,0.0 +22398,55,24,11,0.0 +22398,31,12.5,27,0.0 +22398,58,13.25,45,0.0 +22398,48,12.75,44,0.0 +22398,64,33.25,26,0.0 +22398,15,15.5,2,0.0 +22398,25,14,23,0.0 +22398,7,30,23,0.0 +22398,67,14,48,0.0 +22398,69,36,50,0.0 +22398,5,21.35,36,0.0 +22398,12,38,15,0.0 +22398,66,17,26,0.0 +22398,51,53,49,0.0 +22398,46,12,41,0.0 +22399,75,7.75,8,0.0 +22399,6,25,16,0.0 +22399,12,38,23,0.0 +22399,62,49.3,37,0.0 +22399,19,9.2,34,0.0 +22399,22,21,20,0.0 +22399,11,21,46,0.0 +22399,29,123.79,22,0.0 +22399,55,24,10,0.0 +22399,26,31.23,1,0.0 +22399,76,18,38,0.0 +22399,27,43.9,41,0.0 +22399,4,22,31,0.0 +22399,5,21.35,6,0.0 +22399,37,26,3,0.0 +22399,43,46,2,0.0 +22399,66,17,4,0.0 +22399,39,18,7,0.0 +22399,56,38,47,0.0 +22399,14,23.25,11,0.0 +22399,32,32,18,0.0 +22399,77,13,38,0.0 +22399,8,40,23,0.0 +22399,42,14,28,0.0 +22399,24,4.5,38,0.0 +22399,52,7,26,0.0 +22399,7,30,43,0.0 +22399,45,9.5,2,0.0 +22399,67,14,40,0.0 +22399,25,14,30,0.0 +22399,34,14,30,0.0 +22399,70,15,17,0.0 +22399,30,25.89,30,0.0 +22399,50,16.25,2,0.0 +22399,15,15.5,6,0.0 +22399,59,55,2,0.0 +22399,68,12.5,38,0.0 +22399,3,10,5,0.0 +22399,18,62.5,11,0.0 +22399,17,39,35,0.0 +22399,2,19,21,0.0 +22399,63,43.9,46,0.0 +22399,58,13.25,34,0.0 +22399,35,18,29,0.0 +22399,73,15,43,0.0 +22399,49,20,27,0.0 +22399,53,32.8,22,0.0 +22399,10,31,32,0.0 +22399,64,33.25,27,0.0 +22399,61,28.5,47,0.0 +22399,57,19.5,34,0.0 +22399,36,19,17,0.0 +22399,23,9,41,0.0 +22399,69,36,3,0.0 +22399,33,2.5,38,0.0 +22399,44,19.45,8,0.0 +22399,1,18,17,0.0 +22399,71,21.5,24,0.0 +22399,48,12.75,27,0.0 +22399,51,53,9,0.0 +22399,38,263.5,13,0.0 +22399,31,12.5,31,0.0 +22399,16,17.45,40,0.0 +22399,13,6,26,0.0 +22399,47,9.5,11,0.0 +22399,9,97,13,0.0 +22399,41,9.65,44,0.0 +22399,65,21.05,3,0.0 +22399,40,18.4,11,0.0 +22399,28,45.6,34,0.0 +22399,20,81,6,0.0 +22399,54,7.45,12,0.0 +22399,72,34.8,2,0.0 +22400,37,26,46,0.0 +22400,33,2.5,50,0.0 +22400,62,49.3,32,0.0 +22400,60,34,4,0.0 +22400,48,12.75,43,0.0 +22400,1,18,30,0.0 +22400,36,19,17,0.0 +22400,23,9,41,0.0 +22400,56,38,32,0.0 +22400,24,4.5,19,0.0 +22400,8,40,1,0.0 +22400,69,36,35,0.0 +22400,13,6,28,0.0 +22400,12,38,25,0.0 +22400,41,9.65,28,0.0 +22400,17,39,47,0.0 +22400,77,13,23,0.0 +22400,70,15,16,0.0 +22400,47,9.5,50,0.0 +22400,66,17,34,0.0 +22400,27,43.9,39,0.0 +22400,75,7.75,42,0.0 +22400,9,97,38,0.0 +22400,55,24,22,0.0 +22400,45,9.5,35,0.0 +22400,59,55,34,0.0 +22400,52,7,26,0.0 +22400,19,9.2,6,0.0 +22400,72,34.8,33,0.0 +22400,65,21.05,10,0.0 +22400,31,12.5,43,0.0 +22400,73,15,33,0.0 +22400,67,14,35,0.0 +22400,44,19.45,1,0.0 +22400,53,32.8,31,0.0 +22400,58,13.25,18,0.0 +22401,41,9.65,11,0.0 +22401,28,45.6,30,0.0 +22401,32,32,18,0.0 +22401,50,16.25,10,0.0 +22401,24,4.5,3,0.0 +22401,75,7.75,18,0.0 +22401,48,12.75,23,0.0 +22401,12,38,19,0.0 +22401,18,62.5,47,0.0 +22401,36,19,36,0.0 +22401,1,18,46,0.0 +22401,59,55,48,0.0 +22401,71,21.5,2,0.0 +22401,31,12.5,45,0.0 +22401,74,10,2,0.0 +22401,2,19,13,0.0 +22401,13,6,22,0.0 +22401,67,14,16,0.0 +22401,44,19.45,24,0.0 +22401,53,32.8,8,0.0 +22401,33,2.5,8,0.0 +22401,42,14,45,0.0 +22401,16,17.45,20,0.0 +22401,4,22,16,0.0 +22401,40,18.4,30,0.0 +22401,51,53,32,0.0 +22401,62,49.3,47,0.0 +22401,57,19.5,35,0.0 +22401,5,21.35,2,0.0 +22401,76,18,26,0.0 +22401,30,25.89,13,0.0 +22401,39,18,6,0.0 +22401,23,9,26,0.0 +22401,20,81,23,0.0 +22401,55,24,12,0.0 +22401,10,31,1,0.0 +22401,45,9.5,10,0.0 +22401,38,263.5,29,0.0 +22401,49,20,11,0.0 +22401,17,39,15,0.0 +22401,66,17,8,0.0 +22401,43,46,7,0.0 +22401,14,23.25,9,0.0 +22401,27,43.9,7,0.0 +22401,46,12,28,0.0 +22401,29,123.79,17,0.0 +22401,63,43.9,18,0.0 +22401,73,15,6,0.0 +22401,65,21.05,16,0.0 +22401,58,13.25,37,0.0 +22401,52,7,3,0.0 +22401,15,15.5,26,0.0 +22401,69,36,29,0.0 +22401,35,18,42,0.0 +22401,21,10,28,0.0 +22401,22,21,17,0.0 +22401,61,28.5,43,0.0 +22401,60,34,28,0.0 +22401,34,14,25,0.0 +22401,11,21,19,0.0 +22401,64,33.25,49,0.0 +22401,77,13,26,0.0 +22401,37,26,16,0.0 +22401,72,34.8,40,0.0 +22401,68,12.5,19,0.0 +22401,9,97,1,0.0 +22401,7,30,20,0.0 +22401,54,7.45,37,0.0 +22401,47,9.5,29,0.0 +22401,8,40,34,0.0 +22402,5,21.35,50,0.0 +22402,29,123.79,5,0.0 +22402,14,23.25,21,0.0 +22402,6,25,32,0.0 +22402,36,19,21,0.0 +22402,18,62.5,18,0.0 +22402,16,17.45,41,0.0 +22402,17,39,17,0.0 +22402,73,15,22,0.0 +22402,56,38,42,0.0 +22402,20,81,26,0.0 +22402,32,32,20,0.0 +22402,37,26,31,0.0 +22402,65,21.05,41,0.0 +22402,15,15.5,49,0.0 +22402,21,10,11,0.0 +22402,25,14,13,0.0 +22402,38,263.5,14,0.0 +22402,43,46,44,0.0 +22402,22,21,2,0.0 +22402,10,31,13,0.0 +22402,28,45.6,46,0.0 +22402,13,6,37,0.0 +22402,70,15,41,0.0 +22402,71,21.5,15,0.0 +22402,72,34.8,7,0.0 +22402,12,38,22,0.0 +22402,11,21,5,0.0 +22402,23,9,44,0.0 +22402,69,36,28,0.0 +22402,2,19,15,0.0 +22402,54,7.45,13,0.0 +22402,58,13.25,36,0.0 +22402,77,13,17,0.0 +22403,12,38,5,0.0 +22403,48,12.75,1,0.0 +22403,69,36,12,0.0 +22403,74,10,6,0.0 +22403,25,14,49,0.0 +22403,23,9,23,0.0 +22403,54,7.45,11,0.0 +22403,29,123.79,8,0.0 +22403,60,34,26,0.0 +22403,14,23.25,38,0.0 +22403,42,14,18,0.0 +22403,45,9.5,34,0.0 +22403,75,7.75,17,0.0 +22403,33,2.5,6,0.0 +22403,24,4.5,20,0.0 +22403,4,22,48,0.0 +22403,3,10,42,0.0 +22403,10,31,9,0.0 +22403,21,10,39,0.0 +22403,62,49.3,11,0.0 +22403,70,15,4,0.0 +22403,36,19,50,0.0 +22404,58,13.25,36,0.0 +22404,63,43.9,18,0.0 +22404,35,18,25,0.0 +22404,7,30,44,0.0 +22404,59,55,28,0.0 +22404,76,18,1,0.0 +22404,31,12.5,9,0.0 +22404,46,12,9,0.0 +22404,36,19,24,0.0 +22404,16,17.45,19,0.0 +22404,18,62.5,11,0.0 +22404,45,9.5,19,0.0 +22404,42,14,18,0.0 +22404,66,17,20,0.0 +22404,10,31,8,0.0 +22404,25,14,11,0.0 +22404,17,39,34,0.0 +22404,70,15,8,0.0 +22404,68,12.5,35,0.0 +22404,39,18,11,0.0 +22404,54,7.45,32,0.0 +22404,1,18,16,0.0 +22404,2,19,26,0.0 +22404,23,9,39,0.0 +22404,48,12.75,10,0.0 +22404,20,81,45,0.0 +22404,64,33.25,46,0.0 +22404,3,10,5,0.0 +22404,4,22,36,0.0 +22404,33,2.5,44,0.0 +22404,26,31.23,24,0.0 +22404,8,40,50,0.0 +22404,43,46,18,0.0 +22404,60,34,5,0.0 +22404,50,16.25,41,0.0 +22404,53,32.8,25,0.0 +22404,34,14,21,0.0 +22404,32,32,49,0.0 +22404,12,38,44,0.0 +22404,5,21.35,2,0.0 +22404,30,25.89,13,0.0 +22404,27,43.9,2,0.0 +22404,44,19.45,2,0.0 +22404,24,4.5,41,0.0 +22404,28,45.6,25,0.0 +22404,55,24,19,0.0 +22404,22,21,28,0.0 +22404,61,28.5,37,0.0 +22404,37,26,44,0.0 +22404,9,97,18,0.0 +22404,62,49.3,18,0.0 +22404,69,36,16,0.0 +22404,56,38,41,0.0 +22404,47,9.5,48,0.0 +22404,15,15.5,49,0.0 +22404,67,14,31,0.0 +22404,13,6,38,0.0 +22404,40,18.4,16,0.0 +22404,72,34.8,20,0.0 +22404,14,23.25,26,0.0 +22404,65,21.05,50,0.0 +22404,74,10,13,0.0 +22404,19,9.2,50,0.0 +22404,11,21,24,0.0 +22404,57,19.5,29,0.0 +22404,49,20,38,0.0 +22404,71,21.5,25,0.0 +22404,73,15,1,0.0 +22404,75,7.75,36,0.0 +22404,38,263.5,16,0.0 +22404,41,9.65,34,0.0 +22404,77,13,16,0.0 +22404,52,7,24,0.0 +22404,51,53,12,0.0 +22404,29,123.79,15,0.0 +22404,6,25,29,0.0 +22404,21,10,28,0.0 +22405,56,38,31,0.0 +22405,73,15,31,0.0 +22405,74,10,32,0.0 +22405,1,18,19,0.0 +22405,69,36,42,0.0 +22405,42,14,28,0.0 +22405,34,14,45,0.0 +22405,52,7,2,0.0 +22405,25,14,35,0.0 +22405,30,25.89,5,0.0 +22405,50,16.25,5,0.0 +22405,49,20,44,0.0 +22405,48,12.75,24,0.0 +22405,15,15.5,31,0.0 +22405,64,33.25,16,0.0 +22405,26,31.23,16,0.0 +22405,38,263.5,25,0.0 +22405,2,19,6,0.0 +22405,6,25,26,0.0 +22405,57,19.5,31,0.0 +22405,67,14,50,0.0 +22405,77,13,7,0.0 +22406,50,16.25,38,0.0 +22406,55,24,26,0.0 +22406,62,49.3,32,0.0 +22406,68,12.5,24,0.0 +22406,65,21.05,23,0.0 +22406,28,45.6,14,0.0 +22406,3,10,42,0.0 +22406,59,55,37,0.0 +22406,60,34,4,0.0 +22406,76,18,17,0.0 +22406,57,19.5,11,0.0 +22406,39,18,6,0.0 +22406,44,19.45,7,0.0 +22406,58,13.25,20,0.0 +22406,47,9.5,40,0.0 +22406,38,263.5,32,0.0 +22406,19,9.2,27,0.0 +22406,69,36,38,0.0 +22406,21,10,34,0.0 +22406,30,25.89,36,0.0 +22407,72,34.8,45,0.0 +22407,9,97,6,0.0 +22407,60,34,25,0.0 +22407,8,40,10,0.0 +22407,11,21,1,0.0 +22407,69,36,1,0.0 +22407,18,62.5,13,0.0 +22407,14,23.25,40,0.0 +22407,3,10,6,0.0 +22407,45,9.5,10,0.0 +22407,55,24,16,0.0 +22407,34,14,46,0.0 +22407,19,9.2,5,0.0 +22407,20,81,32,0.0 +22407,26,31.23,26,0.0 +22407,49,20,22,0.0 +22407,32,32,21,0.0 +22407,23,9,33,0.0 +22407,37,26,44,0.0 +22407,27,43.9,50,0.0 +22408,21,10,18,0.0 +22408,46,12,16,0.0 +22408,15,15.5,30,0.0 +22408,10,31,41,0.0 +22408,13,6,49,0.0 +22408,39,18,47,0.0 +22408,58,13.25,8,0.0 +22408,33,2.5,48,0.0 +22408,20,81,12,0.0 +22408,67,14,23,0.0 +22408,4,22,26,0.0 +22408,25,14,33,0.0 +22408,45,9.5,25,0.0 +22408,9,97,27,0.0 +22408,76,18,42,0.0 +22408,75,7.75,37,0.0 +22408,42,14,26,0.0 +22408,17,39,48,0.0 +22408,62,49.3,30,0.0 +22408,32,32,36,0.0 +22408,29,123.79,48,0.0 +22408,70,15,26,0.0 +22409,7,30,18,0.0 +22409,32,32,12,0.0 +22409,19,9.2,17,0.0 +22409,37,26,33,0.0 +22409,66,17,9,0.0 +22409,45,9.5,9,0.0 +22409,41,9.65,12,0.0 +22409,31,12.5,48,0.0 +22409,29,123.79,49,0.0 +22409,12,38,6,0.0 +22409,26,31.23,1,0.0 +22409,17,39,5,0.0 +22409,71,21.5,41,0.0 +22409,40,18.4,9,0.0 +22409,63,43.9,3,0.0 +22409,4,22,39,0.0 +22409,30,25.89,45,0.0 +22409,50,16.25,42,0.0 +22409,34,14,34,0.0 +22409,72,34.8,45,0.0 +22409,3,10,16,0.0 +22409,25,14,46,0.0 +22409,68,12.5,1,0.0 +22409,51,53,22,0.0 +22409,52,7,41,0.0 +22409,69,36,26,0.0 +22409,15,15.5,42,0.0 +22409,44,19.45,43,0.0 +22409,43,46,43,0.0 +22409,22,21,23,0.0 +22409,11,21,45,0.0 +22409,61,28.5,40,0.0 +22409,74,10,42,0.0 +22409,28,45.6,32,0.0 +22409,64,33.25,31,0.0 +22409,59,55,37,0.0 +22409,13,6,35,0.0 +22409,58,13.25,31,0.0 +22409,21,10,13,0.0 +22409,73,15,26,0.0 +22409,49,20,31,0.0 +22409,75,7.75,48,0.0 +22409,14,23.25,50,0.0 +22409,42,14,30,0.0 +22409,54,7.45,13,0.0 +22409,8,40,42,0.0 +22409,6,25,50,0.0 +22409,60,34,44,0.0 +22409,2,19,44,0.0 +22409,16,17.45,22,0.0 +22409,5,21.35,21,0.0 +22409,39,18,41,0.0 +22409,76,18,12,0.0 +22409,65,21.05,9,0.0 +22409,9,97,7,0.0 +22409,1,18,43,0.0 +22409,53,32.8,44,0.0 +22409,18,62.5,48,0.0 +22409,67,14,35,0.0 +22409,77,13,47,0.0 +22409,46,12,3,0.0 +22409,36,19,34,0.0 +22409,48,12.75,23,0.0 +22409,27,43.9,15,0.0 +22410,18,62.5,50,0.0 +22410,67,14,10,0.0 +22410,30,25.89,18,0.0 +22410,58,13.25,41,0.0 +22410,8,40,18,0.0 +22410,69,36,39,0.0 +22410,66,17,46,0.0 +22410,13,6,5,0.0 +22410,39,18,1,0.0 +22410,11,21,49,0.0 +22410,77,13,42,0.0 +22410,51,53,5,0.0 +22410,20,81,11,0.0 +22410,57,19.5,27,0.0 +22410,34,14,43,0.0 +22410,74,10,1,0.0 +22410,44,19.45,18,0.0 +22410,15,15.5,33,0.0 +22410,40,18.4,20,0.0 +22410,31,12.5,23,0.0 +22410,71,21.5,44,0.0 +22410,22,21,2,0.0 +22410,24,4.5,29,0.0 +22410,29,123.79,49,0.0 +22410,3,10,20,0.0 +22410,28,45.6,5,0.0 +22410,7,30,24,0.0 +22410,36,19,23,0.0 +22410,48,12.75,25,0.0 +22410,52,7,7,0.0 +22410,19,9.2,33,0.0 +22410,16,17.45,26,0.0 +22410,33,2.5,37,0.0 +22410,75,7.75,31,0.0 +22410,45,9.5,24,0.0 +22410,76,18,31,0.0 +22410,62,49.3,3,0.0 +22411,8,40,10,0.0 +22411,47,9.5,25,0.0 +22411,21,10,30,0.0 +22411,53,32.8,30,0.0 +22411,59,55,14,0.0 +22411,56,38,28,0.0 +22411,44,19.45,20,0.0 +22411,57,19.5,18,0.0 +22411,24,4.5,20,0.0 +22411,69,36,5,0.0 +22411,72,34.8,15,0.0 +22411,26,31.23,48,0.0 +22411,46,12,34,0.0 +22411,31,12.5,22,0.0 +22411,32,32,10,0.0 +22412,9,97,8,0.0 +22412,42,14,40,0.0 +22412,59,55,4,0.0 +22412,70,15,9,0.0 +22412,39,18,14,0.0 +22412,16,17.45,25,0.0 +22412,28,45.6,50,0.0 +22412,20,81,50,0.0 +22412,43,46,21,0.0 +22412,46,12,31,0.0 +22412,10,31,42,0.0 +22412,65,21.05,37,0.0 +22412,27,43.9,15,0.0 +22412,61,28.5,12,0.0 +22412,7,30,7,0.0 +22412,35,18,19,0.0 +22412,72,34.8,35,0.0 +22412,38,263.5,21,0.0 +22412,21,10,21,0.0 +22412,31,12.5,20,0.0 +22412,67,14,32,0.0 +22412,50,16.25,26,0.0 +22413,66,17,43,0.0 +22413,38,263.5,17,0.0 +22413,61,28.5,21,0.0 +22413,49,20,22,0.0 +22413,41,9.65,42,0.0 +22414,44,19.45,15,0.0 +22414,47,9.5,8,0.0 +22414,1,18,14,0.0 +22414,5,21.35,30,0.0 +22414,75,7.75,6,0.0 +22414,27,43.9,21,0.0 +22414,2,19,50,0.0 +22414,76,18,1,0.0 +22414,37,26,44,0.0 +22414,42,14,8,0.0 +22414,28,45.6,1,0.0 +22414,65,21.05,25,0.0 +22414,69,36,4,0.0 +22414,71,21.5,24,0.0 +22414,29,123.79,13,0.0 +22414,59,55,31,0.0 +22414,46,12,42,0.0 +22414,20,81,22,0.0 +22414,63,43.9,45,0.0 +22414,26,31.23,35,0.0 +22414,60,34,37,0.0 +22414,30,25.89,1,0.0 +22414,22,21,18,0.0 +22414,39,18,43,0.0 +22414,61,28.5,19,0.0 +22414,64,33.25,31,0.0 +22414,51,53,16,0.0 +22414,35,18,25,0.0 +22414,48,12.75,28,0.0 +22414,36,19,31,0.0 +22414,67,14,17,0.0 +22414,17,39,2,0.0 +22414,25,14,4,0.0 +22414,31,12.5,6,0.0 +22414,12,38,19,0.0 +22414,49,20,18,0.0 +22414,68,12.5,35,0.0 +22414,58,13.25,22,0.0 +22414,33,2.5,25,0.0 +22414,45,9.5,43,0.0 +22414,53,32.8,43,0.0 +22414,38,263.5,42,0.0 +22414,66,17,49,0.0 +22414,9,97,37,0.0 +22414,10,31,13,0.0 +22414,7,30,18,0.0 +22414,24,4.5,12,0.0 +22414,70,15,11,0.0 +22414,11,21,26,0.0 +22414,13,6,12,0.0 +22414,41,9.65,15,0.0 +22414,54,7.45,5,0.0 +22414,4,22,13,0.0 +22414,52,7,42,0.0 +22414,50,16.25,11,0.0 +22414,15,15.5,50,0.0 +22414,62,49.3,37,0.0 +22415,37,26,33,0.0 +22415,69,36,16,0.0 +22415,44,19.45,19,0.0 +22415,49,20,18,0.0 +22415,18,62.5,19,0.0 +22416,59,55,35,0.0 +22416,32,32,2,0.0 +22416,75,7.75,12,0.0 +22416,57,19.5,37,0.0 +22416,39,18,22,0.0 +22416,9,97,40,0.0 +22416,70,15,30,0.0 +22416,31,12.5,2,0.0 +22416,16,17.45,3,0.0 +22416,18,62.5,43,0.0 +22416,35,18,39,0.0 +22416,14,23.25,12,0.0 +22416,45,9.5,45,0.0 +22416,33,2.5,14,0.0 +22416,37,26,29,0.0 +22416,42,14,48,0.0 +22416,11,21,5,0.0 +22416,15,15.5,31,0.0 +22416,2,19,39,0.0 +22416,1,18,12,0.0 +22416,60,34,33,0.0 +22416,12,38,7,0.0 +22416,48,12.75,28,0.0 +22416,23,9,10,0.0 +22416,41,9.65,38,0.0 +22416,26,31.23,41,0.0 +22416,13,6,36,0.0 +22416,20,81,21,0.0 +22416,36,19,5,0.0 +22416,73,15,19,0.0 +22417,37,26,26,0.0 +22417,15,15.5,8,0.0 +22417,58,13.25,9,0.0 +22417,40,18.4,11,0.0 +22417,26,31.23,7,0.0 +22417,54,7.45,50,0.0 +22417,24,4.5,40,0.0 +22417,20,81,26,0.0 +22417,36,19,28,0.0 +22417,73,15,45,0.0 +22417,41,9.65,6,0.0 +22417,66,17,35,0.0 +22417,46,12,27,0.0 +22417,45,9.5,47,0.0 +22417,72,34.8,15,0.0 +22418,44,19.45,23,0.0 +22418,9,97,25,0.0 +22418,36,19,50,0.0 +22418,57,19.5,42,0.0 +22418,60,34,2,0.0 +22418,51,53,12,0.0 +22418,13,6,14,0.0 +22418,6,25,28,0.0 +22418,55,24,49,0.0 +22418,42,14,39,0.0 +22418,73,15,31,0.0 +22418,72,34.8,22,0.0 +22418,45,9.5,45,0.0 +22418,47,9.5,41,0.0 +22418,41,9.65,3,0.0 +22418,54,7.45,10,0.0 +22418,63,43.9,19,0.0 +22418,2,19,6,0.0 +22418,35,18,8,0.0 +22418,22,21,4,0.0 +22418,48,12.75,18,0.0 +22418,62,49.3,26,0.0 +22418,30,25.89,31,0.0 +22418,69,36,5,0.0 +22419,11,21,39,0.0 +22419,44,19.45,25,0.0 +22419,5,21.35,44,0.0 +22419,27,43.9,16,0.0 +22419,41,9.65,41,0.0 +22419,53,32.8,15,0.0 +22419,54,7.45,19,0.0 +22419,74,10,47,0.0 +22419,22,21,43,0.0 +22419,31,12.5,33,0.0 +22419,30,25.89,7,0.0 +22419,16,17.45,30,0.0 +22419,77,13,40,0.0 +22419,70,15,46,0.0 +22419,23,9,10,0.0 +22419,66,17,28,0.0 +22419,48,12.75,24,0.0 +22419,38,263.5,28,0.0 +22419,43,46,25,0.0 +22419,36,19,50,0.0 +22419,63,43.9,15,0.0 +22419,61,28.5,5,0.0 +22419,60,34,39,0.0 +22419,32,32,48,0.0 +22419,21,10,39,0.0 +22419,29,123.79,9,0.0 +22419,65,21.05,36,0.0 +22419,34,14,11,0.0 +22419,24,4.5,41,0.0 +22419,14,23.25,31,0.0 +22419,1,18,31,0.0 +22419,62,49.3,37,0.0 +22419,10,31,15,0.0 +22419,75,7.75,48,0.0 +22419,69,36,17,0.0 +22419,17,39,31,0.0 +22419,12,38,13,0.0 +22419,56,38,32,0.0 +22419,64,33.25,31,0.0 +22419,42,14,5,0.0 +22419,20,81,22,0.0 +22419,8,40,8,0.0 +22419,37,26,6,0.0 +22419,50,16.25,47,0.0 +22419,2,19,25,0.0 +22419,57,19.5,42,0.0 +22419,26,31.23,37,0.0 +22419,18,62.5,10,0.0 +22419,58,13.25,5,0.0 +22419,3,10,14,0.0 +22419,71,21.5,44,0.0 +22419,19,9.2,1,0.0 +22419,46,12,37,0.0 +22419,55,24,37,0.0 +22419,76,18,33,0.0 +22419,40,18.4,41,0.0 +22419,35,18,36,0.0 +22419,25,14,49,0.0 +22419,52,7,28,0.0 +22419,15,15.5,50,0.0 +22420,60,34,18,0.0 +22420,70,15,3,0.0 +22421,11,21,41,0.0 +22421,47,9.5,25,0.0 +22421,24,4.5,48,0.0 +22421,21,10,35,0.0 +22421,35,18,34,0.0 +22421,39,18,18,0.0 +22421,33,2.5,4,0.0 +22421,40,18.4,40,0.0 +22421,5,21.35,2,0.0 +22421,70,15,30,0.0 +22421,75,7.75,26,0.0 +22421,48,12.75,5,0.0 +22421,28,45.6,23,0.0 +22421,23,9,48,0.0 +22421,1,18,14,0.0 +22421,22,21,5,0.0 +22421,16,17.45,9,0.0 +22421,54,7.45,21,0.0 +22421,68,12.5,10,0.0 +22421,30,25.89,29,0.0 +22421,67,14,50,0.0 +22421,34,14,47,0.0 +22422,1,18,33,0.0 +22422,41,9.65,41,0.0 +22422,67,14,41,0.0 +22422,71,21.5,49,0.0 +22422,19,9.2,27,0.0 +22422,70,15,5,0.0 +22422,48,12.75,3,0.0 +22422,16,17.45,5,0.0 +22422,44,19.45,24,0.0 +22422,29,123.79,7,0.0 +22422,10,31,13,0.0 +22422,36,19,6,0.0 +22422,35,18,22,0.0 +22422,58,13.25,25,0.0 +22422,57,19.5,2,0.0 +22422,64,33.25,34,0.0 +22423,44,19.45,43,0.0 +22423,32,32,10,0.0 +22423,12,38,6,0.0 +22423,75,7.75,31,0.0 +22423,28,45.6,23,0.0 +22423,72,34.8,38,0.0 +22423,53,32.8,16,0.0 +22423,71,21.5,12,0.0 +22423,66,17,1,0.0 +22423,57,19.5,12,0.0 +22423,36,19,40,0.0 +22423,48,12.75,23,0.0 +22423,25,14,48,0.0 +22423,46,12,14,0.0 +22423,42,14,20,0.0 +22423,49,20,37,0.0 +22423,1,18,10,0.0 +22423,39,18,48,0.0 +22423,6,25,18,0.0 +22423,63,43.9,17,0.0 +22423,47,9.5,6,0.0 +22423,22,21,22,0.0 +22423,26,31.23,3,0.0 +22423,73,15,47,0.0 +22423,55,24,23,0.0 +22423,8,40,46,0.0 +22423,56,38,20,0.0 +22423,14,23.25,41,0.0 +22423,61,28.5,42,0.0 +22423,64,33.25,22,0.0 +22423,69,36,7,0.0 +22423,67,14,6,0.0 +22423,35,18,14,0.0 +22423,76,18,44,0.0 +22423,38,263.5,18,0.0 +22423,70,15,43,0.0 +22423,77,13,1,0.0 +22423,7,30,37,0.0 +22423,33,2.5,22,0.0 +22423,59,55,5,0.0 +22423,52,7,37,0.0 +22423,20,81,1,0.0 +22423,19,9.2,31,0.0 +22423,29,123.79,25,0.0 +22423,62,49.3,34,0.0 +22423,27,43.9,35,0.0 +22423,16,17.45,16,0.0 +22423,60,34,40,0.0 +22423,74,10,11,0.0 +22423,45,9.5,31,0.0 +22423,5,21.35,25,0.0 +22423,54,7.45,50,0.0 +22423,10,31,1,0.0 +22423,65,21.05,21,0.0 +22423,3,10,1,0.0 +22423,50,16.25,30,0.0 +22423,37,26,49,0.0 +22423,4,22,18,0.0 +22423,41,9.65,1,0.0 +22423,11,21,22,0.0 +22423,31,12.5,12,0.0 +22423,13,6,33,0.0 +22423,30,25.89,30,0.0 +22423,51,53,2,0.0 +22423,68,12.5,47,0.0 +22423,17,39,7,0.0 +22423,40,18.4,21,0.0 +22423,2,19,9,0.0 +22423,15,15.5,17,0.0 +22423,34,14,42,0.0 +22423,58,13.25,26,0.0 +22423,43,46,33,0.0 +22423,21,10,11,0.0 +22424,13,6,6,0.0 +22424,45,9.5,15,0.0 +22424,46,12,30,0.0 +22424,31,12.5,41,0.0 +22424,6,25,37,0.0 +22424,56,38,41,0.0 +22424,69,36,39,0.0 +22424,19,9.2,35,0.0 +22424,43,46,19,0.0 +22424,20,81,20,0.0 +22424,68,12.5,50,0.0 +22424,14,23.25,17,0.0 +22424,27,43.9,37,0.0 +22424,64,33.25,23,0.0 +22424,54,7.45,31,0.0 +22424,34,14,17,0.0 +22424,59,55,10,0.0 +22424,1,18,32,0.0 +22424,60,34,20,0.0 +22424,37,26,36,0.0 +22424,57,19.5,45,0.0 +22424,39,18,22,0.0 +22424,18,62.5,30,0.0 +22424,76,18,10,0.0 +22424,72,34.8,19,0.0 +22424,22,21,41,0.0 +22424,17,39,37,0.0 +22424,12,38,4,0.0 +22424,2,19,17,0.0 +22424,44,19.45,27,0.0 +22424,75,7.75,23,0.0 +22424,55,24,42,0.0 +22425,30,25.89,32,0.0 +22425,68,12.5,23,0.0 +22425,43,46,49,0.0 +22425,41,9.65,5,0.0 +22425,77,13,15,0.0 +22425,58,13.25,47,0.0 +22425,40,18.4,14,0.0 +22425,42,14,38,0.0 +22425,8,40,29,0.0 +22425,57,19.5,24,0.0 +22425,64,33.25,41,0.0 +22425,70,15,18,0.0 +22425,7,30,4,0.0 +22426,61,28.5,1,0.0 +22426,31,12.5,11,0.0 +22426,17,39,32,0.0 +22426,50,16.25,28,0.0 +22426,27,43.9,16,0.0 +22426,5,21.35,10,0.0 +22426,57,19.5,29,0.0 +22426,47,9.5,42,0.0 +22426,8,40,17,0.0 +22426,15,15.5,25,0.0 +22426,7,30,19,0.0 +22427,29,123.79,48,0.0 +22427,49,20,46,0.0 +22427,72,34.8,47,0.0 +22427,61,28.5,1,0.0 +22427,24,4.5,44,0.0 +22427,45,9.5,38,0.0 +22427,44,19.45,43,0.0 +22427,46,12,47,0.0 +22427,65,21.05,49,0.0 +22427,20,81,46,0.0 +22427,71,21.5,49,0.0 +22427,18,62.5,50,0.0 +22427,36,19,32,0.0 +22427,4,22,15,0.0 +22427,66,17,38,0.0 +22427,68,12.5,12,0.0 +22427,6,25,12,0.0 +22427,17,39,35,0.0 +22427,21,10,10,0.0 +22427,76,18,22,0.0 +22427,74,10,16,0.0 +22427,16,17.45,46,0.0 +22427,39,18,5,0.0 +22427,8,40,15,0.0 +22427,12,38,28,0.0 +22427,60,34,10,0.0 +22427,51,53,49,0.0 +22427,73,15,41,0.0 +22427,48,12.75,23,0.0 +22427,11,21,31,0.0 +22427,75,7.75,33,0.0 +22427,30,25.89,16,0.0 +22427,62,49.3,35,0.0 +22427,58,13.25,33,0.0 +22427,63,43.9,14,0.0 +22427,56,38,15,0.0 +22427,23,9,43,0.0 +22427,25,14,25,0.0 +22427,53,32.8,5,0.0 +22427,52,7,25,0.0 +22427,34,14,44,0.0 +22427,40,18.4,39,0.0 +22427,59,55,7,0.0 +22427,32,32,28,0.0 +22427,41,9.65,38,0.0 +22427,38,263.5,37,0.0 +22427,77,13,50,0.0 +22427,27,43.9,46,0.0 +22427,7,30,29,0.0 +22427,47,9.5,36,0.0 +22427,35,18,32,0.0 +22427,19,9.2,28,0.0 +22427,14,23.25,3,0.0 +22427,50,16.25,48,0.0 +22427,28,45.6,43,0.0 +22427,22,21,42,0.0 +22428,2,19,21,0.0 +22428,55,24,22,0.0 +22428,27,43.9,10,0.0 +22428,67,14,14,0.0 +22428,30,25.89,1,0.0 +22428,74,10,22,0.0 +22428,43,46,34,0.0 +22428,18,62.5,33,0.0 +22428,33,2.5,41,0.0 +22428,66,17,5,0.0 +22428,44,19.45,2,0.0 +22428,58,13.25,29,0.0 +22428,31,12.5,50,0.0 +22428,24,4.5,9,0.0 +22428,10,31,40,0.0 +22428,64,33.25,46,0.0 +22428,23,9,10,0.0 +22428,38,263.5,40,0.0 +22428,69,36,23,0.0 +22428,1,18,25,0.0 +22428,61,28.5,35,0.0 +22428,41,9.65,20,0.0 +22428,35,18,11,0.0 +22428,9,97,7,0.0 +22428,72,34.8,37,0.0 +22428,8,40,38,0.0 +22428,34,14,22,0.0 +22428,36,19,7,0.0 +22428,70,15,20,0.0 +22428,26,31.23,16,0.0 +22428,49,20,12,0.0 +22428,40,18.4,33,0.0 +22428,48,12.75,4,0.0 +22428,51,53,38,0.0 +22428,56,38,27,0.0 +22428,20,81,26,0.0 +22428,21,10,7,0.0 +22428,57,19.5,29,0.0 +22428,42,14,13,0.0 +22428,11,21,24,0.0 +22428,39,18,46,0.0 +22428,32,32,37,0.0 +22428,12,38,36,0.0 +22428,76,18,1,0.0 +22428,52,7,20,0.0 +22428,73,15,49,0.0 +22429,16,17.45,27,0.0 +22429,6,25,45,0.0 +22429,13,6,50,0.0 +22429,17,39,37,0.0 +22429,2,19,18,0.0 +22429,14,23.25,48,0.0 +22429,4,22,28,0.0 +22429,76,18,28,0.0 +22429,12,38,7,0.0 +22429,1,18,42,0.0 +22429,55,24,17,0.0 +22429,43,46,22,0.0 +22429,50,16.25,28,0.0 +22429,26,31.23,28,0.0 +22429,32,32,32,0.0 +22429,19,9.2,38,0.0 +22429,28,45.6,1,0.0 +22429,38,263.5,23,0.0 +22429,9,97,7,0.0 +22429,42,14,4,0.0 +22429,46,12,46,0.0 +22429,22,21,15,0.0 +22429,36,19,39,0.0 +22429,35,18,24,0.0 +22429,10,31,4,0.0 +22429,44,19.45,44,0.0 +22429,41,9.65,34,0.0 +22429,73,15,1,0.0 +22429,58,13.25,29,0.0 +22429,47,9.5,43,0.0 +22429,64,33.25,38,0.0 +22429,49,20,20,0.0 +22429,45,9.5,9,0.0 +22429,34,14,15,0.0 +22429,30,25.89,23,0.0 +22429,20,81,15,0.0 +22429,70,15,44,0.0 +22429,7,30,20,0.0 +22429,25,14,44,0.0 +22429,11,21,15,0.0 +22429,67,14,18,0.0 +22429,51,53,28,0.0 +22429,71,21.5,34,0.0 +22429,15,15.5,29,0.0 +22429,77,13,22,0.0 +22429,65,21.05,7,0.0 +22429,5,21.35,33,0.0 +22429,40,18.4,26,0.0 +22429,56,38,14,0.0 +22429,8,40,40,0.0 +22429,59,55,19,0.0 +22429,29,123.79,35,0.0 +22429,23,9,26,0.0 +22429,48,12.75,29,0.0 +22429,66,17,5,0.0 +22429,37,26,34,0.0 +22429,33,2.5,47,0.0 +22429,72,34.8,33,0.0 +22429,57,19.5,3,0.0 +22429,63,43.9,49,0.0 +22429,61,28.5,26,0.0 +22429,52,7,20,0.0 +22429,24,4.5,5,0.0 +22429,39,18,49,0.0 +22429,62,49.3,46,0.0 +22429,18,62.5,14,0.0 +22429,74,10,18,0.0 +22429,27,43.9,7,0.0 +22429,54,7.45,43,0.0 +22429,21,10,7,0.0 +22429,75,7.75,29,0.0 +22429,3,10,3,0.0 +22429,68,12.5,1,0.0 +22429,69,36,50,0.0 +22429,53,32.8,42,0.0 +22430,69,36,38,0.0 +22430,75,7.75,30,0.0 +22430,76,18,34,0.0 +22430,71,21.5,37,0.0 +22430,43,46,40,0.0 +22430,62,49.3,14,0.0 +22430,50,16.25,42,0.0 +22430,24,4.5,37,0.0 +22430,1,18,4,0.0 +22430,10,31,5,0.0 +22430,67,14,48,0.0 +22430,39,18,6,0.0 +22430,47,9.5,49,0.0 +22430,4,22,21,0.0 +22430,57,19.5,36,0.0 +22430,30,25.89,31,0.0 +22430,73,15,21,0.0 +22430,33,2.5,47,0.0 +22430,22,21,22,0.0 +22430,55,24,26,0.0 +22430,66,17,26,0.0 +22430,25,14,46,0.0 +22430,29,123.79,34,0.0 +22430,6,25,43,0.0 +22430,34,14,48,0.0 +22430,44,19.45,12,0.0 +22430,21,10,49,0.0 +22430,12,38,39,0.0 +22430,3,10,34,0.0 +22430,41,9.65,32,0.0 +22430,28,45.6,38,0.0 +22430,54,7.45,25,0.0 +22430,36,19,29,0.0 +22430,17,39,46,0.0 +22430,11,21,35,0.0 +22430,74,10,44,0.0 +22430,18,62.5,35,0.0 +22430,38,263.5,47,0.0 +22430,14,23.25,48,0.0 +22430,16,17.45,16,0.0 +22430,32,32,42,0.0 +22430,49,20,41,0.0 +22430,72,34.8,6,0.0 +22430,26,31.23,39,0.0 +22430,42,14,9,0.0 +22430,8,40,36,0.0 +22430,9,97,41,0.0 +22430,48,12.75,17,0.0 +22430,59,55,37,0.0 +22430,56,38,6,0.0 +22430,7,30,36,0.0 +22430,60,34,16,0.0 +22430,15,15.5,32,0.0 +22430,45,9.5,31,0.0 +22430,68,12.5,5,0.0 +22430,61,28.5,13,0.0 +22430,19,9.2,36,0.0 +22430,35,18,35,0.0 +22430,23,9,2,0.0 +22430,27,43.9,10,0.0 +22430,2,19,35,0.0 +22430,40,18.4,18,0.0 +22430,46,12,23,0.0 +22430,52,7,35,0.0 +22431,76,18,9,0.0 +22431,71,21.5,11,0.0 +22431,22,21,17,0.0 +22431,73,15,28,0.0 +22431,45,9.5,27,0.0 +22431,38,263.5,17,0.0 +22431,66,17,27,0.0 +22431,50,16.25,10,0.0 +22431,32,32,41,0.0 +22431,31,12.5,24,0.0 +22431,41,9.65,11,0.0 +22431,58,13.25,40,0.0 +22431,61,28.5,32,0.0 +22431,55,24,9,0.0 +22431,62,49.3,3,0.0 +22431,56,38,2,0.0 +22431,24,4.5,12,0.0 +22431,46,12,27,0.0 +22431,29,123.79,12,0.0 +22431,21,10,1,0.0 +22431,34,14,49,0.0 +22431,19,9.2,37,0.0 +22431,1,18,2,0.0 +22431,17,39,22,0.0 +22431,13,6,26,0.0 +22431,75,7.75,9,0.0 +22431,63,43.9,19,0.0 +22431,12,38,39,0.0 +22431,69,36,40,0.0 +22431,37,26,14,0.0 +22431,65,21.05,31,0.0 +22431,39,18,9,0.0 +22431,28,45.6,14,0.0 +22431,53,32.8,23,0.0 +22431,20,81,46,0.0 +22431,70,15,27,0.0 +22431,57,19.5,2,0.0 +22431,5,21.35,22,0.0 +22431,44,19.45,27,0.0 +22431,14,23.25,10,0.0 +22431,51,53,10,0.0 +22431,48,12.75,47,0.0 +22431,35,18,37,0.0 +22431,4,22,29,0.0 +22431,6,25,2,0.0 +22431,7,30,7,0.0 +22431,11,21,29,0.0 +22431,25,14,26,0.0 +22431,3,10,12,0.0 +22431,47,9.5,14,0.0 +22431,8,40,10,0.0 +22431,43,46,14,0.0 +22431,59,55,47,0.0 +22431,40,18.4,9,0.0 +22431,27,43.9,44,0.0 +22431,15,15.5,27,0.0 +22431,72,34.8,17,0.0 +22431,30,25.89,11,0.0 +22431,54,7.45,30,0.0 +22431,67,14,35,0.0 +22431,36,19,38,0.0 +22431,42,14,27,0.0 +22431,74,10,11,0.0 +22431,68,12.5,22,0.0 +22431,10,31,16,0.0 +22431,77,13,28,0.0 +22431,49,20,16,0.0 +22431,64,33.25,50,0.0 +22431,33,2.5,35,0.0 +22431,52,7,2,0.0 +22431,9,97,13,0.0 +22431,18,62.5,22,0.0 +22431,60,34,33,0.0 +22431,26,31.23,30,0.0 +22432,41,9.65,35,0.0 +22432,70,15,48,0.0 +22432,69,36,37,0.0 +22432,73,15,26,0.0 +22432,31,12.5,35,0.0 +22432,34,14,38,0.0 +22432,71,21.5,2,0.0 +22432,44,19.45,19,0.0 +22432,74,10,50,0.0 +22432,42,14,40,0.0 +22432,47,9.5,11,0.0 +22432,43,46,36,0.0 +22432,68,12.5,13,0.0 +22432,59,55,29,0.0 +22432,9,97,41,0.0 +22432,13,6,31,0.0 +22432,28,45.6,9,0.0 +22432,57,19.5,35,0.0 +22432,25,14,43,0.0 +22432,60,34,44,0.0 +22432,62,49.3,14,0.0 +22432,66,17,49,0.0 +22432,5,21.35,24,0.0 +22432,45,9.5,2,0.0 +22432,15,15.5,1,0.0 +22432,58,13.25,10,0.0 +22432,63,43.9,13,0.0 +22432,20,81,26,0.0 +22432,27,43.9,32,0.0 +22432,14,23.25,6,0.0 +22432,1,18,38,0.0 +22432,16,17.45,10,0.0 +22432,54,7.45,14,0.0 +22432,50,16.25,30,0.0 +22432,29,123.79,47,0.0 +22432,35,18,3,0.0 +22432,46,12,37,0.0 +22432,39,18,26,0.0 +22432,10,31,8,0.0 +22432,48,12.75,50,0.0 +22432,22,21,6,0.0 +22432,30,25.89,35,0.0 +22432,40,18.4,18,0.0 +22432,51,53,6,0.0 +22432,8,40,33,0.0 +22432,4,22,38,0.0 +22432,52,7,9,0.0 +22432,53,32.8,13,0.0 +22432,33,2.5,19,0.0 +22432,65,21.05,29,0.0 +22432,18,62.5,30,0.0 +22432,37,26,28,0.0 +22432,6,25,24,0.0 +22432,26,31.23,26,0.0 +22432,72,34.8,39,0.0 +22432,23,9,36,0.0 +22432,11,21,28,0.0 +22432,67,14,5,0.0 +22432,32,32,30,0.0 +22432,76,18,15,0.0 +22432,75,7.75,16,0.0 +22432,38,263.5,16,0.0 +22432,21,10,4,0.0 +22432,36,19,42,0.0 +22432,77,13,15,0.0 +22432,49,20,17,0.0 +22432,17,39,3,0.0 +22432,56,38,31,0.0 +22432,2,19,24,0.0 +22433,46,12,20,0.0 +22433,26,31.23,49,0.0 +22433,40,18.4,23,0.0 +22433,12,38,1,0.0 +22433,25,14,3,0.0 +22433,32,32,37,0.0 +22433,52,7,46,0.0 +22433,72,34.8,9,0.0 +22433,44,19.45,28,0.0 +22433,68,12.5,40,0.0 +22433,18,62.5,50,0.0 +22433,67,14,35,0.0 +22433,16,17.45,1,0.0 +22433,31,12.5,1,0.0 +22433,53,32.8,13,0.0 +22433,48,12.75,5,0.0 +22433,23,9,4,0.0 +22433,77,13,16,0.0 +22433,55,24,45,0.0 +22433,5,21.35,17,0.0 +22433,43,46,15,0.0 +22433,76,18,19,0.0 +22433,57,19.5,47,0.0 +22433,27,43.9,33,0.0 +22433,1,18,39,0.0 +22433,11,21,10,0.0 +22433,17,39,18,0.0 +22433,37,26,6,0.0 +22433,66,17,8,0.0 +22433,60,34,42,0.0 +22433,45,9.5,16,0.0 +22433,62,49.3,32,0.0 +22433,3,10,16,0.0 +22433,6,25,32,0.0 +22433,64,33.25,21,0.0 +22433,14,23.25,16,0.0 +22433,69,36,48,0.0 +22433,38,263.5,17,0.0 +22433,21,10,2,0.0 +22433,50,16.25,28,0.0 +22433,22,21,43,0.0 +22433,8,40,30,0.0 +22433,59,55,49,0.0 +22433,2,19,17,0.0 +22433,15,15.5,49,0.0 +22434,63,43.9,37,0.0 +22434,36,19,32,0.0 +22434,14,23.25,3,0.0 +22434,28,45.6,46,0.0 +22434,71,21.5,21,0.0 +22434,55,24,42,0.0 +22434,31,12.5,42,0.0 +22434,67,14,9,0.0 +22434,27,43.9,2,0.0 +22434,1,18,38,0.0 +22434,51,53,50,0.0 +22434,64,33.25,50,0.0 +22434,22,21,18,0.0 +22434,49,20,32,0.0 +22434,21,10,50,0.0 +22434,41,9.65,9,0.0 +22434,6,25,21,0.0 +22434,58,13.25,31,0.0 +22434,32,32,6,0.0 +22434,42,14,24,0.0 +22434,69,36,29,0.0 +22434,15,15.5,10,0.0 +22434,56,38,48,0.0 +22434,73,15,47,0.0 +22434,33,2.5,11,0.0 +22434,4,22,9,0.0 +22434,68,12.5,45,0.0 +22434,61,28.5,41,0.0 +22434,20,81,10,0.0 +22434,47,9.5,34,0.0 +22434,34,14,45,0.0 +22434,8,40,20,0.0 +22434,13,6,38,0.0 +22434,2,19,40,0.0 +22434,29,123.79,45,0.0 +22434,48,12.75,38,0.0 +22434,9,97,18,0.0 +22434,59,55,36,0.0 +22434,72,34.8,11,0.0 +22434,11,21,2,0.0 +22434,16,17.45,24,0.0 +22434,35,18,8,0.0 +22434,65,21.05,15,0.0 +22434,46,12,46,0.0 +22434,18,62.5,42,0.0 +22434,5,21.35,48,0.0 +22434,43,46,18,0.0 +22434,23,9,49,0.0 +22434,37,26,25,0.0 +22434,44,19.45,28,0.0 +22434,52,7,36,0.0 +22434,24,4.5,43,0.0 +22434,54,7.45,5,0.0 +22434,74,10,37,0.0 +22434,62,49.3,17,0.0 +22434,60,34,2,0.0 +22434,50,16.25,16,0.0 +22434,57,19.5,35,0.0 +22434,70,15,26,0.0 +22435,4,22,39,0.0 +22435,19,9.2,2,0.0 +22435,2,19,38,0.0 +22435,76,18,23,0.0 +22435,58,13.25,25,0.0 +22435,8,40,48,0.0 +22435,64,33.25,14,0.0 +22435,12,38,17,0.0 +22435,5,21.35,6,0.0 +22435,6,25,27,0.0 +22435,41,9.65,42,0.0 +22435,74,10,9,0.0 +22435,29,123.79,30,0.0 +22435,33,2.5,12,0.0 +22435,23,9,5,0.0 +22435,22,21,33,0.0 +22435,62,49.3,1,0.0 +22435,42,14,26,0.0 +22435,59,55,2,0.0 +22435,55,24,20,0.0 +22435,37,26,1,0.0 +22435,49,20,29,0.0 +22435,20,81,14,0.0 +22435,16,17.45,5,0.0 +22435,48,12.75,1,0.0 +22435,26,31.23,2,0.0 +22435,70,15,20,0.0 +22435,35,18,25,0.0 +22435,46,12,8,0.0 +22435,60,34,39,0.0 +22435,69,36,48,0.0 +22435,43,46,7,0.0 +22435,10,31,33,0.0 +22435,57,19.5,1,0.0 +22435,9,97,2,0.0 +22435,45,9.5,30,0.0 +22436,1,18,34,0.0 +22436,64,33.25,13,0.0 +22436,26,31.23,12,0.0 +22436,20,81,35,0.0 +22436,17,39,35,0.0 +22436,19,9.2,31,0.0 +22436,32,32,42,0.0 +22436,47,9.5,23,0.0 +22436,28,45.6,23,0.0 +22436,8,40,46,0.0 +22436,49,20,45,0.0 +22436,61,28.5,29,0.0 +22436,41,9.65,11,0.0 +22436,25,14,16,0.0 +22436,27,43.9,43,0.0 +22436,65,21.05,22,0.0 +22436,18,62.5,2,0.0 +22436,14,23.25,2,0.0 +22436,66,17,48,0.0 +22436,40,18.4,40,0.0 +22436,31,12.5,11,0.0 +22436,75,7.75,5,0.0 +22436,34,14,1,0.0 +22436,53,32.8,27,0.0 +22436,74,10,4,0.0 +22436,7,30,32,0.0 +22436,43,46,13,0.0 +22436,50,16.25,42,0.0 +22436,60,34,25,0.0 +22436,48,12.75,21,0.0 +22436,3,10,12,0.0 +22436,51,53,12,0.0 +22436,15,15.5,20,0.0 +22436,29,123.79,19,0.0 +22436,62,49.3,34,0.0 +22436,67,14,16,0.0 +22436,36,19,8,0.0 +22436,69,36,31,0.0 +22436,30,25.89,48,0.0 +22436,6,25,3,0.0 +22436,58,13.25,37,0.0 +22436,39,18,27,0.0 +22436,71,21.5,42,0.0 +22436,55,24,22,0.0 +22436,23,9,28,0.0 +22436,22,21,7,0.0 +22436,35,18,40,0.0 +22436,44,19.45,20,0.0 +22436,2,19,3,0.0 +22436,57,19.5,17,0.0 +22436,77,13,45,0.0 +22436,42,14,14,0.0 +22436,12,38,50,0.0 +22437,25,14,8,0.0 +22437,52,7,15,0.0 +22437,14,23.25,23,0.0 +22437,16,17.45,31,0.0 +22437,31,12.5,31,0.0 +22437,61,28.5,1,0.0 +22437,4,22,6,0.0 +22437,59,55,28,0.0 +22437,33,2.5,3,0.0 +22437,28,45.6,22,0.0 +22437,67,14,4,0.0 +22437,39,18,46,0.0 +22438,63,43.9,33,0.0 +22438,29,123.79,31,0.0 +22438,47,9.5,24,0.0 +22438,76,18,32,0.0 +22438,70,15,36,0.0 +22438,56,38,34,0.0 +22438,42,14,36,0.0 +22438,6,25,45,0.0 +22438,9,97,18,0.0 +22438,16,17.45,48,0.0 +22438,28,45.6,49,0.0 +22438,54,7.45,4,0.0 +22438,11,21,49,0.0 +22438,58,13.25,1,0.0 +22438,68,12.5,38,0.0 +22438,62,49.3,3,0.0 +22438,52,7,48,0.0 +22438,22,21,8,0.0 +22438,26,31.23,13,0.0 +22438,12,38,3,0.0 +22438,65,21.05,28,0.0 +22438,73,15,24,0.0 +22438,35,18,43,0.0 +22438,64,33.25,10,0.0 +22438,1,18,19,0.0 +22438,33,2.5,13,0.0 +22438,77,13,44,0.0 +22438,71,21.5,17,0.0 +22438,14,23.25,29,0.0 +22438,53,32.8,47,0.0 +22438,23,9,13,0.0 +22438,30,25.89,42,0.0 +22438,25,14,8,0.0 +22438,46,12,47,0.0 +22438,38,263.5,38,0.0 +22438,60,34,41,0.0 +22438,20,81,11,0.0 +22438,66,17,26,0.0 +22438,32,32,28,0.0 +22438,13,6,4,0.0 +22438,5,21.35,26,0.0 +22438,7,30,3,0.0 +22438,45,9.5,15,0.0 +22438,75,7.75,12,0.0 +22438,49,20,22,0.0 +22438,50,16.25,19,0.0 +22438,72,34.8,50,0.0 +22438,4,22,40,0.0 +22438,24,4.5,11,0.0 +22438,3,10,36,0.0 +22438,19,9.2,28,0.0 +22438,34,14,45,0.0 +22438,57,19.5,13,0.0 +22438,17,39,8,0.0 +22438,31,12.5,44,0.0 +22438,10,31,20,0.0 +22438,37,26,28,0.0 +22439,7,30,28,0.0 +22439,32,32,4,0.0 +22439,63,43.9,21,0.0 +22439,77,13,47,0.0 +22439,62,49.3,19,0.0 +22439,16,17.45,45,0.0 +22439,4,22,36,0.0 +22439,2,19,29,0.0 +22439,72,34.8,45,0.0 +22439,61,28.5,44,0.0 +22439,15,15.5,7,0.0 +22439,22,21,14,0.0 +22439,50,16.25,4,0.0 +22439,23,9,34,0.0 +22440,10,31,21,0.0 +22440,62,49.3,47,0.0 +22440,28,45.6,15,0.0 +22440,11,21,37,0.0 +22440,8,40,38,0.0 +22440,33,2.5,46,0.0 +22440,19,9.2,6,0.0 +22440,32,32,34,0.0 +22440,65,21.05,17,0.0 +22440,5,21.35,13,0.0 +22440,23,9,45,0.0 +22440,4,22,40,0.0 +22440,56,38,43,0.0 +22440,75,7.75,28,0.0 +22440,20,81,15,0.0 +22440,9,97,19,0.0 +22440,57,19.5,28,0.0 +22440,74,10,37,0.0 +22440,44,19.45,15,0.0 +22440,71,21.5,31,0.0 +22440,77,13,36,0.0 +22440,76,18,26,0.0 +22440,69,36,13,0.0 +22440,2,19,12,0.0 +22440,47,9.5,29,0.0 +22440,58,13.25,4,0.0 +22440,17,39,35,0.0 +22441,27,43.9,8,0.0 +22441,77,13,20,0.0 +22441,57,19.5,1,0.0 +22441,37,26,35,0.0 +22441,6,25,3,0.0 +22441,3,10,16,0.0 +22441,73,15,2,0.0 +22441,75,7.75,5,0.0 +22441,8,40,28,0.0 +22441,18,62.5,23,0.0 +22441,54,7.45,32,0.0 +22441,53,32.8,25,0.0 +22441,25,14,27,0.0 +22441,51,53,10,0.0 +22441,20,81,15,0.0 +22441,52,7,12,0.0 +22441,67,14,23,0.0 +22441,17,39,39,0.0 +22441,74,10,34,0.0 +22441,59,55,39,0.0 +22441,65,21.05,24,0.0 +22441,34,14,41,0.0 +22441,16,17.45,41,0.0 +22441,19,9.2,30,0.0 +22441,60,34,10,0.0 +22441,40,18.4,41,0.0 +22441,45,9.5,30,0.0 +22441,24,4.5,23,0.0 +22441,56,38,44,0.0 +22441,43,46,48,0.0 +22441,68,12.5,43,0.0 +22441,47,9.5,31,0.0 +22441,39,18,23,0.0 +22441,32,32,7,0.0 +22441,29,123.79,5,0.0 +22441,41,9.65,31,0.0 +22441,71,21.5,8,0.0 +22441,38,263.5,42,0.0 +22441,9,97,40,0.0 +22441,76,18,11,0.0 +22441,1,18,48,0.0 +22441,69,36,47,0.0 +22441,15,15.5,7,0.0 +22441,22,21,18,0.0 +22441,12,38,40,0.0 +22441,50,16.25,8,0.0 +22441,2,19,42,0.0 +22441,33,2.5,7,0.0 +22441,44,19.45,37,0.0 +22441,35,18,33,0.0 +22441,21,10,49,0.0 +22441,66,17,10,0.0 +22441,26,31.23,22,0.0 +22441,11,21,14,0.0 +22441,72,34.8,7,0.0 +22441,62,49.3,34,0.0 +22441,61,28.5,27,0.0 +22441,4,22,24,0.0 +22441,63,43.9,42,0.0 +22441,14,23.25,21,0.0 +22441,70,15,42,0.0 +22441,48,12.75,43,0.0 +22441,10,31,30,0.0 +22441,42,14,28,0.0 +22441,36,19,46,0.0 +22441,64,33.25,16,0.0 +22441,46,12,28,0.0 +22441,23,9,3,0.0 +22441,55,24,28,0.0 +22442,48,12.75,40,0.0 +22442,67,14,10,0.0 +22442,14,23.25,45,0.0 +22442,54,7.45,30,0.0 +22442,75,7.75,45,0.0 +22442,20,81,42,0.0 +22442,57,19.5,33,0.0 +22442,69,36,15,0.0 +22442,21,10,49,0.0 +22442,3,10,22,0.0 +22442,11,21,3,0.0 +22442,39,18,26,0.0 +22442,8,40,34,0.0 +22442,7,30,39,0.0 +22442,62,49.3,41,0.0 +22442,61,28.5,25,0.0 +22442,12,38,16,0.0 +22442,22,21,41,0.0 +22442,71,21.5,36,0.0 +22442,56,38,42,0.0 +22442,24,4.5,9,0.0 +22442,18,62.5,42,0.0 +22442,47,9.5,4,0.0 +22442,76,18,23,0.0 +22442,13,6,49,0.0 +22442,40,18.4,6,0.0 +22442,42,14,13,0.0 +22442,9,97,45,0.0 +22442,55,24,18,0.0 +22442,37,26,29,0.0 +22442,43,46,17,0.0 +22442,70,15,44,0.0 +22442,45,9.5,37,0.0 +22442,2,19,38,0.0 +22442,26,31.23,12,0.0 +22442,29,123.79,34,0.0 +22442,74,10,19,0.0 +22442,23,9,10,0.0 +22442,65,21.05,12,0.0 +22442,60,34,50,0.0 +22442,64,33.25,32,0.0 +22442,28,45.6,21,0.0 +22442,4,22,26,0.0 +22442,10,31,18,0.0 +22442,68,12.5,45,0.0 +22442,38,263.5,26,0.0 +22442,41,9.65,25,0.0 +22443,74,10,40,0.0 +22443,45,9.5,34,0.0 +22443,63,43.9,2,0.0 +22443,38,263.5,18,0.0 +22443,12,38,22,0.0 +22443,15,15.5,14,0.0 +22443,31,12.5,32,0.0 +22443,13,6,42,0.0 +22443,76,18,50,0.0 +22443,24,4.5,24,0.0 +22443,51,53,33,0.0 +22443,64,33.25,29,0.0 +22443,40,18.4,16,0.0 +22443,4,22,47,0.0 +22443,5,21.35,2,0.0 +22443,41,9.65,48,0.0 +22443,10,31,29,0.0 +22443,60,34,40,0.0 +22443,14,23.25,38,0.0 +22443,6,25,49,0.0 +22443,28,45.6,15,0.0 +22443,58,13.25,34,0.0 +22444,39,18,26,0.0 +22444,69,36,6,0.0 +22444,2,19,32,0.0 +22444,28,45.6,41,0.0 +22444,63,43.9,25,0.0 +22444,15,15.5,7,0.0 +22444,48,12.75,3,0.0 +22444,65,21.05,1,0.0 +22444,38,263.5,26,0.0 +22444,17,39,30,0.0 +22444,75,7.75,16,0.0 +22444,49,20,45,0.0 +22444,60,34,11,0.0 +22444,22,21,4,0.0 +22444,67,14,49,0.0 +22444,72,34.8,19,0.0 +22444,24,4.5,10,0.0 +22444,21,10,30,0.0 +22444,45,9.5,48,0.0 +22444,19,9.2,39,0.0 +22444,55,24,49,0.0 +22444,35,18,9,0.0 +22444,66,17,22,0.0 +22444,41,9.65,25,0.0 +22444,37,26,9,0.0 +22444,3,10,4,0.0 +22444,20,81,10,0.0 +22444,30,25.89,47,0.0 +22444,56,38,12,0.0 +22444,18,62.5,32,0.0 +22444,10,31,11,0.0 +22444,36,19,49,0.0 +22444,57,19.5,48,0.0 +22444,25,14,11,0.0 +22444,64,33.25,37,0.0 +22444,34,14,42,0.0 +22444,7,30,11,0.0 +22444,31,12.5,9,0.0 +22444,27,43.9,26,0.0 +22444,47,9.5,43,0.0 +22444,40,18.4,28,0.0 +22444,54,7.45,12,0.0 +22444,74,10,19,0.0 +22444,51,53,16,0.0 +22444,58,13.25,1,0.0 +22444,32,32,50,0.0 +22444,26,31.23,15,0.0 +22444,59,55,6,0.0 +22444,73,15,17,0.0 +22444,43,46,27,0.0 +22444,44,19.45,17,0.0 +22444,5,21.35,3,0.0 +22444,8,40,31,0.0 +22444,13,6,21,0.0 +22444,1,18,35,0.0 +22444,33,2.5,27,0.0 +22444,61,28.5,32,0.0 +22445,41,9.65,14,0.0 +22445,50,16.25,26,0.0 +22445,34,14,30,0.0 +22445,46,12,28,0.0 +22445,15,15.5,22,0.0 +22445,10,31,15,0.0 +22445,54,7.45,49,0.0 +22445,59,55,28,0.0 +22445,24,4.5,44,0.0 +22445,25,14,28,0.0 +22445,75,7.75,21,0.0 +22445,68,12.5,29,0.0 +22445,63,43.9,22,0.0 +22445,2,19,12,0.0 +22445,58,13.25,38,0.0 +22445,65,21.05,27,0.0 +22445,9,97,12,0.0 +22445,64,33.25,3,0.0 +22445,32,32,20,0.0 +22445,17,39,32,0.0 +22445,42,14,38,0.0 +22445,56,38,35,0.0 +22445,36,19,44,0.0 +22445,49,20,10,0.0 +22445,4,22,6,0.0 +22445,8,40,50,0.0 +22445,39,18,3,0.0 +22445,47,9.5,47,0.0 +22445,30,25.89,20,0.0 +22445,60,34,2,0.0 +22445,35,18,48,0.0 +22445,72,34.8,41,0.0 +22445,48,12.75,34,0.0 +22445,71,21.5,28,0.0 +22445,37,26,5,0.0 +22445,61,28.5,5,0.0 +22445,52,7,21,0.0 +22445,13,6,25,0.0 +22445,20,81,49,0.0 +22445,21,10,40,0.0 +22445,74,10,30,0.0 +22445,62,49.3,45,0.0 +22445,19,9.2,9,0.0 +22445,16,17.45,9,0.0 +22445,22,21,44,0.0 +22445,31,12.5,32,0.0 +22445,12,38,14,0.0 +22445,76,18,7,0.0 +22445,67,14,49,0.0 +22445,55,24,12,0.0 +22445,18,62.5,30,0.0 +22445,27,43.9,32,0.0 +22445,3,10,13,0.0 +22445,45,9.5,7,0.0 +22445,69,36,41,0.0 +22445,7,30,33,0.0 +22445,33,2.5,39,0.0 +22445,11,21,42,0.0 +22445,51,53,41,0.0 +22445,14,23.25,50,0.0 +22445,77,13,47,0.0 +22445,53,32.8,36,0.0 +22445,66,17,22,0.0 +22445,70,15,49,0.0 +22445,5,21.35,27,0.0 +22445,23,9,43,0.0 +22445,26,31.23,2,0.0 +22445,40,18.4,23,0.0 +22445,73,15,38,0.0 +22445,44,19.45,33,0.0 +22445,6,25,19,0.0 +22445,38,263.5,16,0.0 +22445,43,46,40,0.0 +22445,28,45.6,21,0.0 +22445,57,19.5,21,0.0 +22445,29,123.79,39,0.0 +22446,76,18,47,0.0 +22446,77,13,6,0.0 +22446,39,18,43,0.0 +22446,35,18,25,0.0 +22446,14,23.25,34,0.0 +22446,38,263.5,7,0.0 +22446,64,33.25,8,0.0 +22446,60,34,27,0.0 +22446,24,4.5,11,0.0 +22446,68,12.5,50,0.0 +22446,7,30,40,0.0 +22447,51,53,12,0.0 +22447,72,34.8,3,0.0 +22447,55,24,14,0.0 +22447,44,19.45,47,0.0 +22447,7,30,13,0.0 +22447,56,38,33,0.0 +22447,75,7.75,27,0.0 +22447,5,21.35,48,0.0 +22447,71,21.5,10,0.0 +22447,53,32.8,37,0.0 +22447,17,39,42,0.0 +22447,61,28.5,15,0.0 +22447,26,31.23,13,0.0 +22447,12,38,32,0.0 +22447,54,7.45,14,0.0 +22447,62,49.3,43,0.0 +22447,68,12.5,29,0.0 +22447,1,18,37,0.0 +22447,70,15,33,0.0 +22447,47,9.5,2,0.0 +22447,11,21,30,0.0 +22447,57,19.5,27,0.0 +22447,67,14,30,0.0 +22447,48,12.75,23,0.0 +22447,21,10,9,0.0 +22447,40,18.4,39,0.0 +22447,45,9.5,25,0.0 +22447,9,97,15,0.0 +22447,8,40,45,0.0 +22447,27,43.9,10,0.0 +22447,41,9.65,30,0.0 +22447,30,25.89,21,0.0 +22447,4,22,39,0.0 +22447,59,55,20,0.0 +22447,74,10,34,0.0 +22448,66,17,11,0.0 +22448,43,46,45,0.0 +22448,76,18,28,0.0 +22448,21,10,9,0.0 +22448,74,10,20,0.0 +22448,71,21.5,24,0.0 +22448,65,21.05,17,0.0 +22448,9,97,39,0.0 +22448,37,26,31,0.0 +22448,33,2.5,25,0.0 +22448,17,39,11,0.0 +22448,22,21,8,0.0 +22448,69,36,18,0.0 +22448,11,21,48,0.0 +22448,3,10,28,0.0 +22448,49,20,10,0.0 +22448,19,9.2,38,0.0 +22448,8,40,41,0.0 +22448,63,43.9,48,0.0 +22448,39,18,17,0.0 +22448,31,12.5,37,0.0 +22448,61,28.5,4,0.0 +22448,42,14,24,0.0 +22448,51,53,45,0.0 +22448,70,15,7,0.0 +22448,77,13,46,0.0 +22448,40,18.4,47,0.0 +22448,25,14,18,0.0 +22448,1,18,44,0.0 +22448,73,15,50,0.0 +22448,24,4.5,4,0.0 +22448,16,17.45,8,0.0 +22448,46,12,17,0.0 +22448,7,30,39,0.0 +22448,60,34,37,0.0 +22448,67,14,13,0.0 +22448,36,19,8,0.0 +22448,30,25.89,6,0.0 +22448,5,21.35,13,0.0 +22448,27,43.9,22,0.0 +22448,48,12.75,26,0.0 +22448,32,32,47,0.0 +22448,4,22,36,0.0 +22448,23,9,6,0.0 +22448,26,31.23,24,0.0 +22448,41,9.65,34,0.0 +22448,15,15.5,6,0.0 +22448,2,19,35,0.0 +22449,42,14,23,0.0 +22449,22,21,45,0.0 +22449,38,263.5,16,0.0 +22449,6,25,38,0.0 +22449,54,7.45,26,0.0 +22449,45,9.5,28,0.0 +22449,75,7.75,10,0.0 +22449,55,24,28,0.0 +22449,9,97,50,0.0 +22449,5,21.35,43,0.0 +22449,2,19,23,0.0 +22449,50,16.25,31,0.0 +22449,51,53,31,0.0 +22449,18,62.5,31,0.0 +22449,7,30,45,0.0 +22449,58,13.25,29,0.0 +22449,11,21,17,0.0 +22449,68,12.5,11,0.0 +22449,4,22,34,0.0 +22450,67,14,12,0.0 +22450,47,9.5,25,0.0 +22450,4,22,7,0.0 +22450,63,43.9,33,0.0 +22450,18,62.5,46,0.0 +22450,45,9.5,48,0.0 +22450,71,21.5,39,0.0 +22450,46,12,29,0.0 +22450,72,34.8,43,0.0 +22450,26,31.23,45,0.0 +22450,25,14,22,0.0 +22450,61,28.5,6,0.0 +22450,39,18,40,0.0 +22450,32,32,22,0.0 +22450,3,10,2,0.0 +22450,76,18,4,0.0 +22450,38,263.5,27,0.0 +22450,65,21.05,7,0.0 +22450,43,46,16,0.0 +22451,9,97,40,0.0 +22451,47,9.5,31,0.0 +22451,18,62.5,7,0.0 +22451,12,38,49,0.0 +22451,36,19,18,0.0 +22451,60,34,27,0.0 +22451,70,15,19,0.0 +22451,4,22,45,0.0 +22451,32,32,9,0.0 +22451,27,43.9,35,0.0 +22451,22,21,35,0.0 +22451,44,19.45,33,0.0 +22451,49,20,13,0.0 +22451,21,10,7,0.0 +22451,54,7.45,49,0.0 +22451,14,23.25,12,0.0 +22451,42,14,15,0.0 +22451,76,18,32,0.0 +22451,7,30,47,0.0 +22451,55,24,3,0.0 +22451,48,12.75,23,0.0 +22451,10,31,42,0.0 +22451,64,33.25,21,0.0 +22451,8,40,30,0.0 +22451,11,21,12,0.0 +22451,53,32.8,13,0.0 +22451,45,9.5,25,0.0 +22451,77,13,9,0.0 +22451,3,10,1,0.0 +22451,69,36,27,0.0 +22451,40,18.4,15,0.0 +22451,59,55,18,0.0 +22451,31,12.5,5,0.0 +22451,17,39,5,0.0 +22451,24,4.5,24,0.0 +22451,28,45.6,41,0.0 +22451,23,9,47,0.0 +22451,56,38,43,0.0 +22451,33,2.5,11,0.0 +22451,29,123.79,45,0.0 +22451,13,6,48,0.0 +22451,35,18,6,0.0 +22451,5,21.35,10,0.0 +22451,62,49.3,18,0.0 +22451,25,14,30,0.0 +22451,50,16.25,15,0.0 +22451,37,26,17,0.0 +22451,72,34.8,43,0.0 +22451,41,9.65,24,0.0 +22451,6,25,33,0.0 +22451,73,15,27,0.0 +22451,57,19.5,5,0.0 +22451,66,17,14,0.0 +22451,26,31.23,29,0.0 +22451,15,15.5,2,0.0 +22451,16,17.45,3,0.0 +22451,51,53,32,0.0 +22451,19,9.2,31,0.0 +22451,39,18,22,0.0 +22451,34,14,7,0.0 +22451,63,43.9,7,0.0 +22451,65,21.05,36,0.0 +22451,58,13.25,36,0.0 +22451,30,25.89,16,0.0 +22451,61,28.5,30,0.0 +22451,52,7,16,0.0 +22451,74,10,45,0.0 +22451,68,12.5,26,0.0 +22451,20,81,26,0.0 +22452,26,31.23,18,0.0 +22452,36,19,25,0.0 +22452,43,46,14,0.0 +22452,77,13,42,0.0 +22452,4,22,2,0.0 +22452,23,9,25,0.0 +22452,65,21.05,25,0.0 +22452,19,9.2,9,0.0 +22452,68,12.5,46,0.0 +22452,59,55,29,0.0 +22452,2,19,4,0.0 +22452,9,97,21,0.0 +22452,38,263.5,13,0.0 +22452,25,14,33,0.0 +22452,22,21,8,0.0 +22452,52,7,50,0.0 +22452,76,18,31,0.0 +22452,47,9.5,24,0.0 +22452,28,45.6,48,0.0 +22453,4,22,29,0.0 +22453,67,14,47,0.0 +22453,32,32,50,0.0 +22453,14,23.25,28,0.0 +22453,74,10,15,0.0 +22453,43,46,42,0.0 +22453,24,4.5,3,0.0 +22453,21,10,35,0.0 +22453,30,25.89,15,0.0 +22453,31,12.5,7,0.0 +22453,1,18,37,0.0 +22453,42,14,33,0.0 +22453,5,21.35,20,0.0 +22453,2,19,45,0.0 +22453,70,15,31,0.0 +22453,61,28.5,38,0.0 +22453,23,9,42,0.0 +22453,46,12,1,0.0 +22453,75,7.75,14,0.0 +22453,26,31.23,6,0.0 +22453,55,24,45,0.0 +22453,62,49.3,1,0.0 +22453,39,18,39,0.0 +22453,54,7.45,48,0.0 +22453,49,20,17,0.0 +22453,16,17.45,38,0.0 +22453,7,30,14,0.0 +22453,59,55,14,0.0 +22453,66,17,43,0.0 +22453,77,13,10,0.0 +22453,73,15,28,0.0 +22453,19,9.2,49,0.0 +22453,40,18.4,40,0.0 +22453,12,38,18,0.0 +22453,37,26,44,0.0 +22453,51,53,12,0.0 +22453,3,10,16,0.0 +22453,64,33.25,38,0.0 +22453,34,14,12,0.0 +22453,47,9.5,22,0.0 +22453,44,19.45,27,0.0 +22453,50,16.25,26,0.0 +22453,36,19,28,0.0 +22453,11,21,40,0.0 +22453,33,2.5,26,0.0 +22453,65,21.05,1,0.0 +22453,41,9.65,35,0.0 +22453,28,45.6,38,0.0 +22453,10,31,35,0.0 +22453,27,43.9,8,0.0 +22453,60,34,4,0.0 +22453,68,12.5,17,0.0 +22453,56,38,50,0.0 +22453,48,12.75,10,0.0 +22453,71,21.5,18,0.0 +22453,38,263.5,48,0.0 +22453,13,6,12,0.0 +22453,6,25,7,0.0 +22453,58,13.25,50,0.0 +22453,17,39,37,0.0 +22453,9,97,35,0.0 +22453,69,36,13,0.0 +22453,8,40,29,0.0 +22453,52,7,28,0.0 +22453,53,32.8,12,0.0 +22454,74,10,11,0.0 +22454,34,14,47,0.0 +22454,60,34,19,0.0 +22454,67,14,5,0.0 +22454,6,25,43,0.0 +22454,54,7.45,37,0.0 +22454,38,263.5,3,0.0 +22454,19,9.2,19,0.0 +22454,55,24,10,0.0 +22454,16,17.45,12,0.0 +22454,43,46,47,0.0 +22455,62,49.3,14,0.0 +22455,36,19,18,0.0 +22455,38,263.5,24,0.0 +22455,41,9.65,45,0.0 +22455,66,17,25,0.0 +22455,59,55,2,0.0 +22455,9,97,19,0.0 +22455,51,53,32,0.0 +22455,34,14,29,0.0 +22455,49,20,49,0.0 +22455,11,21,7,0.0 +22455,33,2.5,24,0.0 +22455,37,26,3,0.0 +22455,13,6,30,0.0 +22455,23,9,7,0.0 +22455,52,7,15,0.0 +22455,17,39,9,0.0 +22455,53,32.8,12,0.0 +22455,55,24,26,0.0 +22455,24,4.5,15,0.0 +22455,77,13,6,0.0 +22455,40,18.4,6,0.0 +22455,46,12,3,0.0 +22455,54,7.45,41,0.0 +22455,56,38,17,0.0 +22455,68,12.5,19,0.0 +22455,22,21,21,0.0 +22455,2,19,6,0.0 +22455,64,33.25,9,0.0 +22455,4,22,5,0.0 +22455,8,40,24,0.0 +22455,7,30,38,0.0 +22455,61,28.5,7,0.0 +22455,60,34,46,0.0 +22455,67,14,47,0.0 +22455,70,15,10,0.0 +22455,74,10,9,0.0 +22455,43,46,18,0.0 +22455,27,43.9,10,0.0 +22456,12,38,16,0.0 +22456,38,263.5,7,0.0 +22456,11,21,9,0.0 +22456,5,21.35,36,0.0 +22456,33,2.5,4,0.0 +22456,42,14,18,0.0 +22456,23,9,31,0.0 +22456,45,9.5,31,0.0 +22456,77,13,33,0.0 +22456,24,4.5,1,0.0 +22456,47,9.5,43,0.0 +22456,68,12.5,43,0.0 +22456,57,19.5,8,0.0 +22456,62,49.3,5,0.0 +22456,18,62.5,30,0.0 +22456,22,21,36,0.0 +22457,61,28.5,9,0.0 +22457,18,62.5,35,0.0 +22457,65,21.05,23,0.0 +22457,68,12.5,36,0.0 +22457,6,25,15,0.0 +22457,12,38,35,0.0 +22457,74,10,47,0.0 +22457,53,32.8,1,0.0 +22457,43,46,47,0.0 +22457,55,24,13,0.0 +22457,66,17,34,0.0 +22457,47,9.5,13,0.0 +22457,38,263.5,2,0.0 +22457,31,12.5,29,0.0 +22457,52,7,44,0.0 +22457,45,9.5,42,0.0 +22457,54,7.45,26,0.0 +22457,44,19.45,15,0.0 +22457,70,15,17,0.0 +22457,71,21.5,25,0.0 +22457,4,22,4,0.0 +22457,24,4.5,14,0.0 +22457,16,17.45,32,0.0 +22457,75,7.75,24,0.0 +22457,9,97,48,0.0 +22457,59,55,49,0.0 +22457,77,13,33,0.0 +22457,21,10,22,0.0 +22457,2,19,46,0.0 +22457,72,34.8,21,0.0 +22457,69,36,42,0.0 +22457,67,14,5,0.0 +22457,48,12.75,47,0.0 +22457,27,43.9,17,0.0 +22457,64,33.25,44,0.0 +22457,13,6,48,0.0 +22457,28,45.6,28,0.0 +22457,56,38,45,0.0 +22457,60,34,44,0.0 +22457,8,40,26,0.0 +22457,30,25.89,36,0.0 +22457,33,2.5,4,0.0 +22457,58,13.25,18,0.0 +22457,29,123.79,45,0.0 +22457,14,23.25,17,0.0 +22457,11,21,28,0.0 +22457,7,30,11,0.0 +22457,34,14,9,0.0 +22457,37,26,45,0.0 +22457,51,53,5,0.0 +22457,62,49.3,19,0.0 +22457,22,21,4,0.0 +22457,41,9.65,21,0.0 +22457,20,81,34,0.0 +22457,19,9.2,26,0.0 +22457,1,18,19,0.0 +22457,46,12,17,0.0 +22458,48,12.75,34,0.0 +22458,5,21.35,46,0.0 +22458,13,6,1,0.0 +22458,51,53,35,0.0 +22458,66,17,8,0.0 +22458,74,10,32,0.0 +22458,59,55,49,0.0 +22458,18,62.5,12,0.0 +22458,22,21,44,0.0 +22459,21,10,19,0.0 +22459,19,9.2,21,0.0 +22459,4,22,18,0.0 +22459,61,28.5,43,0.0 +22459,17,39,9,0.0 +22459,11,21,30,0.0 +22459,44,19.45,37,0.0 +22459,77,13,21,0.0 +22459,47,9.5,38,0.0 +22459,10,31,15,0.0 +22459,58,13.25,18,0.0 +22459,48,12.75,30,0.0 +22459,59,55,13,0.0 +22459,28,45.6,22,0.0 +22459,45,9.5,2,0.0 +22459,69,36,10,0.0 +22459,52,7,24,0.0 +22459,36,19,48,0.0 +22459,15,15.5,36,0.0 +22459,14,23.25,27,0.0 +22459,22,21,28,0.0 +22459,8,40,43,0.0 +22459,43,46,22,0.0 +22459,54,7.45,14,0.0 +22459,60,34,26,0.0 +22459,1,18,16,0.0 +22459,12,38,1,0.0 +22459,32,32,8,0.0 +22459,27,43.9,5,0.0 +22459,51,53,26,0.0 +22459,35,18,32,0.0 +22459,33,2.5,6,0.0 +22459,16,17.45,35,0.0 +22459,25,14,1,0.0 +22459,65,21.05,22,0.0 +22459,2,19,19,0.0 +22459,57,19.5,4,0.0 +22459,66,17,8,0.0 +22459,26,31.23,25,0.0 +22459,50,16.25,33,0.0 +22459,76,18,23,0.0 +22459,53,32.8,10,0.0 +22459,24,4.5,4,0.0 +22459,5,21.35,13,0.0 +22459,29,123.79,31,0.0 +22459,41,9.65,26,0.0 +22459,64,33.25,21,0.0 +22459,31,12.5,43,0.0 +22459,20,81,18,0.0 +22459,30,25.89,13,0.0 +22459,37,26,43,0.0 +22459,34,14,14,0.0 +22459,73,15,44,0.0 +22459,6,25,50,0.0 +22459,75,7.75,48,0.0 +22459,70,15,20,0.0 +22460,56,38,13,0.0 +22460,66,17,20,0.0 +22460,67,14,9,0.0 +22460,71,21.5,6,0.0 +22460,68,12.5,32,0.0 +22460,55,24,7,0.0 +22460,1,18,49,0.0 +22460,57,19.5,3,0.0 +22460,19,9.2,3,0.0 +22460,72,34.8,31,0.0 +22460,6,25,5,0.0 +22460,3,10,23,0.0 +22460,11,21,14,0.0 +22460,76,18,38,0.0 +22460,54,7.45,41,0.0 +22460,22,21,10,0.0 +22460,75,7.75,25,0.0 +22460,61,28.5,28,0.0 +22460,27,43.9,45,0.0 +22460,4,22,6,0.0 +22460,32,32,39,0.0 +22460,12,38,20,0.0 +22460,28,45.6,28,0.0 +22460,29,123.79,10,0.0 +22460,44,19.45,39,0.0 +22460,50,16.25,46,0.0 +22460,30,25.89,25,0.0 +22460,10,31,4,0.0 +22460,40,18.4,23,0.0 +22460,46,12,39,0.0 +22460,13,6,1,0.0 +22460,62,49.3,42,0.0 +22460,48,12.75,13,0.0 +22460,5,21.35,13,0.0 +22460,47,9.5,35,0.0 +22460,53,32.8,9,0.0 +22460,60,34,46,0.0 +22460,33,2.5,19,0.0 +22460,24,4.5,21,0.0 +22460,69,36,34,0.0 +22460,26,31.23,14,0.0 +22460,45,9.5,22,0.0 +22460,36,19,40,0.0 +22460,74,10,35,0.0 +22460,38,263.5,46,0.0 +22460,34,14,7,0.0 +22460,51,53,24,0.0 +22460,59,55,23,0.0 +22460,58,13.25,12,0.0 +22460,64,33.25,23,0.0 +22460,49,20,37,0.0 +22460,63,43.9,2,0.0 +22460,25,14,32,0.0 +22460,70,15,44,0.0 +22460,23,9,23,0.0 +22460,7,30,50,0.0 +22460,77,13,16,0.0 +22460,8,40,36,0.0 +22460,52,7,35,0.0 +22460,17,39,22,0.0 +22460,14,23.25,8,0.0 +22460,2,19,18,0.0 +22460,43,46,39,0.0 +22460,9,97,44,0.0 +22460,35,18,33,0.0 +22460,31,12.5,1,0.0 +22460,39,18,37,0.0 +22461,14,23.25,43,0.0 +22461,12,38,9,0.0 +22461,76,18,21,0.0 +22461,15,15.5,28,0.0 +22461,70,15,7,0.0 +22461,11,21,26,0.0 +22461,3,10,41,0.0 +22461,2,19,45,0.0 +22461,60,34,48,0.0 +22461,38,263.5,45,0.0 +22461,49,20,21,0.0 +22461,28,45.6,45,0.0 +22461,65,21.05,24,0.0 +22461,9,97,48,0.0 +22461,59,55,1,0.0 +22461,17,39,10,0.0 +22461,42,14,35,0.0 +22461,66,17,2,0.0 +22461,61,28.5,18,0.0 +22461,36,19,6,0.0 +22461,25,14,31,0.0 +22461,54,7.45,44,0.0 +22461,72,34.8,11,0.0 +22461,53,32.8,8,0.0 +22461,5,21.35,30,0.0 +22461,37,26,23,0.0 +22462,65,21.05,37,0.0 +22462,52,7,24,0.0 +22462,76,18,17,0.0 +22462,3,10,21,0.0 +22462,44,19.45,16,0.0 +22462,27,43.9,37,0.0 +22462,39,18,15,0.0 +22462,68,12.5,10,0.0 +22462,51,53,21,0.0 +22462,29,123.79,34,0.0 +22462,69,36,48,0.0 +22462,50,16.25,4,0.0 +22462,41,9.65,48,0.0 +22462,45,9.5,36,0.0 +22462,35,18,13,0.0 +22462,47,9.5,49,0.0 +22462,8,40,13,0.0 +22462,49,20,18,0.0 +22462,56,38,2,0.0 +22463,53,32.8,18,0.0 +22463,5,21.35,50,0.0 +22463,33,2.5,26,0.0 +22463,16,17.45,49,0.0 +22463,63,43.9,20,0.0 +22463,25,14,8,0.0 +22463,58,13.25,5,0.0 +22463,56,38,29,0.0 +22463,32,32,16,0.0 +22463,3,10,14,0.0 +22463,65,21.05,14,0.0 +22463,20,81,7,0.0 +22463,77,13,12,0.0 +22463,45,9.5,31,0.0 +22463,6,25,32,0.0 +22463,8,40,37,0.0 +22463,46,12,37,0.0 +22463,36,19,3,0.0 +22463,55,24,40,0.0 +22463,41,9.65,14,0.0 +22464,70,15,7,0.0 +22464,2,19,17,0.0 +22464,28,45.6,39,0.0 +22464,12,38,32,0.0 +22464,10,31,25,0.0 +22464,26,31.23,18,0.0 +22464,61,28.5,26,0.0 +22464,65,21.05,16,0.0 +22464,25,14,13,0.0 +22464,64,33.25,40,0.0 +22464,35,18,4,0.0 +22464,74,10,44,0.0 +22464,72,34.8,18,0.0 +22464,15,15.5,40,0.0 +22464,68,12.5,1,0.0 +22464,66,17,48,0.0 +22464,49,20,36,0.0 +22464,20,81,34,0.0 +22464,76,18,22,0.0 +22464,22,21,7,0.0 +22464,39,18,22,0.0 +22464,56,38,30,0.0 +22464,23,9,11,0.0 +22464,75,7.75,8,0.0 +22464,6,25,21,0.0 +22464,41,9.65,49,0.0 +22464,50,16.25,24,0.0 +22464,53,32.8,37,0.0 +22464,32,32,3,0.0 +22464,54,7.45,40,0.0 +22464,24,4.5,26,0.0 +22464,29,123.79,44,0.0 +22464,16,17.45,13,0.0 +22464,38,263.5,15,0.0 +22464,69,36,31,0.0 +22464,73,15,10,0.0 +22464,59,55,17,0.0 +22464,36,19,26,0.0 +22464,71,21.5,35,0.0 +22464,48,12.75,16,0.0 +22464,21,10,31,0.0 +22464,30,25.89,9,0.0 +22464,37,26,43,0.0 +22464,57,19.5,27,0.0 +22464,9,97,22,0.0 +22464,43,46,11,0.0 +22464,17,39,39,0.0 +22464,34,14,34,0.0 +22464,60,34,47,0.0 +22464,46,12,18,0.0 +22464,14,23.25,19,0.0 +22464,63,43.9,34,0.0 +22464,13,6,13,0.0 +22464,33,2.5,31,0.0 +22464,5,21.35,44,0.0 +22464,8,40,29,0.0 +22464,52,7,22,0.0 +22465,77,13,42,0.0 +22465,54,7.45,34,0.0 +22465,57,19.5,7,0.0 +22465,39,18,8,0.0 +22465,9,97,26,0.0 +22465,69,36,34,0.0 +22465,26,31.23,19,0.0 +22465,4,22,13,0.0 +22465,17,39,20,0.0 +22465,8,40,30,0.0 +22465,29,123.79,20,0.0 +22465,37,26,26,0.0 +22465,5,21.35,5,0.0 +22465,3,10,31,0.0 +22465,56,38,9,0.0 +22465,55,24,32,0.0 +22465,40,18.4,40,0.0 +22465,36,19,11,0.0 +22465,25,14,26,0.0 +22465,66,17,50,0.0 +22465,45,9.5,22,0.0 +22465,48,12.75,39,0.0 +22465,23,9,25,0.0 +22465,44,19.45,30,0.0 +22465,14,23.25,18,0.0 +22465,7,30,7,0.0 +22465,38,263.5,18,0.0 +22465,60,34,25,0.0 +22465,46,12,11,0.0 +22465,71,21.5,40,0.0 +22465,74,10,22,0.0 +22465,59,55,20,0.0 +22465,28,45.6,23,0.0 +22465,62,49.3,22,0.0 +22465,20,81,16,0.0 +22465,11,21,25,0.0 +22465,75,7.75,49,0.0 +22465,13,6,18,0.0 +22465,70,15,46,0.0 +22465,42,14,37,0.0 +22465,22,21,30,0.0 +22465,73,15,30,0.0 +22466,50,16.25,16,0.0 +22466,72,34.8,26,0.0 +22466,47,9.5,50,0.0 +22466,19,9.2,36,0.0 +22466,29,123.79,38,0.0 +22466,58,13.25,39,0.0 +22466,73,15,29,0.0 +22466,5,21.35,9,0.0 +22466,70,15,18,0.0 +22466,25,14,50,0.0 +22466,8,40,14,0.0 +22466,36,19,27,0.0 +22466,27,43.9,10,0.0 +22466,55,24,11,0.0 +22466,59,55,45,0.0 +22466,39,18,14,0.0 +22466,60,34,41,0.0 +22466,53,32.8,28,0.0 +22466,52,7,21,0.0 +22466,74,10,39,0.0 +22466,68,12.5,36,0.0 +22466,77,13,29,0.0 +22466,35,18,18,0.0 +22466,49,20,6,0.0 +22466,62,49.3,10,0.0 +22466,31,12.5,36,0.0 +22466,10,31,29,0.0 +22466,76,18,21,0.0 +22466,22,21,15,0.0 +22466,63,43.9,14,0.0 +22466,18,62.5,41,0.0 +22466,30,25.89,10,0.0 +22466,44,19.45,49,0.0 +22466,12,38,32,0.0 +22466,67,14,28,0.0 +22466,9,97,7,0.0 +22466,4,22,32,0.0 +22466,75,7.75,9,0.0 +22466,61,28.5,2,0.0 +22466,69,36,31,0.0 +22467,29,123.79,29,0.0 +22467,28,45.6,3,0.0 +22467,42,14,47,0.0 +22467,52,7,47,0.0 +22467,63,43.9,21,0.0 +22467,70,15,29,0.0 +22467,76,18,25,0.0 +22467,24,4.5,7,0.0 +22467,69,36,42,0.0 +22467,40,18.4,16,0.0 +22468,60,34,37,0.0 +22468,73,15,33,0.0 +22468,59,55,17,0.0 +22468,18,62.5,19,0.0 +22468,40,18.4,17,0.0 +22468,37,26,29,0.0 +22468,56,38,35,0.0 +22468,30,25.89,46,0.0 +22468,19,9.2,29,0.0 +22468,77,13,29,0.0 +22468,68,12.5,1,0.0 +22468,46,12,21,0.0 +22468,29,123.79,37,0.0 +22468,66,17,27,0.0 +22468,45,9.5,9,0.0 +22468,9,97,30,0.0 +22468,51,53,23,0.0 +22468,24,4.5,49,0.0 +22468,34,14,6,0.0 +22468,74,10,33,0.0 +22468,75,7.75,36,0.0 +22468,26,31.23,40,0.0 +22468,23,9,47,0.0 +22468,49,20,37,0.0 +22468,16,17.45,31,0.0 +22468,76,18,22,0.0 +22468,13,6,42,0.0 +22468,72,34.8,40,0.0 +22468,21,10,23,0.0 +22468,63,43.9,23,0.0 +22468,8,40,36,0.0 +22468,41,9.65,20,0.0 +22468,10,31,37,0.0 +22468,35,18,21,0.0 +22468,31,12.5,25,0.0 +22468,17,39,2,0.0 +22468,47,9.5,11,0.0 +22468,28,45.6,5,0.0 +22468,62,49.3,41,0.0 +22468,42,14,13,0.0 +22469,13,6,38,0.0 +22469,45,9.5,4,0.0 +22469,49,20,8,0.0 +22469,52,7,7,0.0 +22469,62,49.3,31,0.0 +22469,5,21.35,24,0.0 +22469,21,10,32,0.0 +22469,14,23.25,4,0.0 +22469,68,12.5,24,0.0 +22469,35,18,17,0.0 +22469,20,81,39,0.0 +22469,3,10,12,0.0 +22469,71,21.5,23,0.0 +22469,23,9,17,0.0 +22469,8,40,3,0.0 +22469,77,13,38,0.0 +22469,37,26,8,0.0 +22469,61,28.5,34,0.0 +22469,7,30,43,0.0 +22469,50,16.25,27,0.0 +22469,9,97,3,0.0 +22469,63,43.9,35,0.0 +22469,70,15,31,0.0 +22469,56,38,11,0.0 +22469,55,24,7,0.0 +22469,48,12.75,35,0.0 +22469,34,14,47,0.0 +22469,28,45.6,22,0.0 +22469,1,18,12,0.0 +22469,6,25,6,0.0 +22469,25,14,41,0.0 +22469,64,33.25,31,0.0 +22469,10,31,12,0.0 +22469,11,21,15,0.0 +22469,69,36,9,0.0 +22469,51,53,28,0.0 +22469,2,19,20,0.0 +22469,57,19.5,16,0.0 +22469,39,18,10,0.0 +22469,12,38,9,0.0 +22469,36,19,5,0.0 +22469,43,46,13,0.0 +22469,46,12,12,0.0 +22469,32,32,39,0.0 +22469,41,9.65,44,0.0 +22469,33,2.5,19,0.0 +22469,66,17,29,0.0 +22469,47,9.5,32,0.0 +22469,60,34,36,0.0 +22469,38,263.5,22,0.0 +22469,40,18.4,50,0.0 +22469,72,34.8,40,0.0 +22469,18,62.5,49,0.0 +22469,15,15.5,41,0.0 +22469,27,43.9,13,0.0 +22469,44,19.45,15,0.0 +22469,24,4.5,48,0.0 +22469,22,21,47,0.0 +22469,67,14,46,0.0 +22469,54,7.45,4,0.0 +22469,4,22,21,0.0 +22469,31,12.5,23,0.0 +22469,74,10,24,0.0 +22469,59,55,23,0.0 +22470,30,25.89,20,0.0 +22470,43,46,39,0.0 +22471,20,81,17,0.0 +22471,24,4.5,13,0.0 +22471,25,14,13,0.0 +22471,55,24,15,0.0 +22471,30,25.89,36,0.0 +22471,60,34,35,0.0 +22471,52,7,10,0.0 +22471,27,43.9,26,0.0 +22471,66,17,9,0.0 +22471,56,38,24,0.0 +22471,44,19.45,36,0.0 +22471,70,15,50,0.0 +22471,19,9.2,41,0.0 +22471,42,14,3,0.0 +22471,32,32,13,0.0 +22471,53,32.8,42,0.0 +22471,43,46,14,0.0 +22471,38,263.5,1,0.0 +22471,3,10,30,0.0 +22471,47,9.5,46,0.0 +22471,57,19.5,34,0.0 +22471,12,38,26,0.0 +22471,17,39,29,0.0 +22471,22,21,50,0.0 +22471,14,23.25,47,0.0 +22471,39,18,23,0.0 +22471,18,62.5,1,0.0 +22471,54,7.45,19,0.0 +22471,29,123.79,1,0.0 +22471,16,17.45,26,0.0 +22471,4,22,36,0.0 +22471,75,7.75,30,0.0 +22471,74,10,14,0.0 +22471,45,9.5,3,0.0 +22471,68,12.5,27,0.0 +22471,37,26,10,0.0 +22471,48,12.75,22,0.0 +22471,62,49.3,39,0.0 +22471,36,19,20,0.0 +22471,46,12,43,0.0 +22471,71,21.5,11,0.0 +22471,77,13,31,0.0 +22471,34,14,50,0.0 +22471,35,18,7,0.0 +22471,8,40,37,0.0 +22471,15,15.5,10,0.0 +22471,11,21,40,0.0 +22471,21,10,38,0.0 +22471,40,18.4,36,0.0 +22471,49,20,22,0.0 +22471,50,16.25,35,0.0 +22471,23,9,22,0.0 +22471,26,31.23,30,0.0 +22471,6,25,49,0.0 +22471,1,18,5,0.0 +22471,10,31,8,0.0 +22471,69,36,3,0.0 +22471,61,28.5,4,0.0 +22471,31,12.5,32,0.0 +22471,5,21.35,1,0.0 +22471,51,53,33,0.0 +22471,72,34.8,45,0.0 +22471,73,15,22,0.0 +22471,33,2.5,7,0.0 +22471,64,33.25,49,0.0 +22471,9,97,4,0.0 +22471,58,13.25,20,0.0 +22471,67,14,10,0.0 +22471,65,21.05,17,0.0 +22471,63,43.9,38,0.0 +22471,41,9.65,43,0.0 +22471,28,45.6,10,0.0 +22471,7,30,15,0.0 +22472,45,9.5,27,0.0 +22472,71,21.5,39,0.0 +22472,65,21.05,29,0.0 +22473,56,38,24,0.0 +22473,70,15,31,0.0 +22473,46,12,17,0.0 +22473,73,15,42,0.0 +22473,41,9.65,24,0.0 +22473,66,17,14,0.0 +22473,47,9.5,31,0.0 +22473,33,2.5,6,0.0 +22473,22,21,4,0.0 +22473,35,18,23,0.0 +22473,49,20,27,0.0 +22473,18,62.5,33,0.0 +22473,9,97,42,0.0 +22473,76,18,49,0.0 +22473,43,46,30,0.0 +22473,44,19.45,12,0.0 +22473,51,53,14,0.0 +22473,14,23.25,19,0.0 +22473,30,25.89,44,0.0 +22473,19,9.2,45,0.0 +22473,25,14,50,0.0 +22473,39,18,21,0.0 +22473,34,14,6,0.0 +22473,36,19,31,0.0 +22473,69,36,11,0.0 +22473,77,13,34,0.0 +22473,62,49.3,26,0.0 +22473,24,4.5,16,0.0 +22473,42,14,16,0.0 +22473,7,30,18,0.0 +22473,54,7.45,13,0.0 +22474,36,19,23,0.0 +22474,44,19.45,44,0.0 +22474,74,10,46,0.0 +22474,64,33.25,2,0.0 +22474,5,21.35,36,0.0 +22474,61,28.5,14,0.0 +22474,4,22,12,0.0 +22474,65,21.05,25,0.0 +22474,27,43.9,24,0.0 +22474,46,12,41,0.0 +22474,55,24,9,0.0 +22474,18,62.5,41,0.0 +22474,14,23.25,10,0.0 +22474,32,32,8,0.0 +22474,26,31.23,3,0.0 +22474,62,49.3,35,0.0 +22474,39,18,16,0.0 +22474,73,15,39,0.0 +22474,34,14,40,0.0 +22474,67,14,44,0.0 +22474,75,7.75,24,0.0 +22474,63,43.9,15,0.0 +22474,50,16.25,30,0.0 +22474,10,31,27,0.0 +22474,54,7.45,41,0.0 +22474,31,12.5,23,0.0 +22474,28,45.6,22,0.0 +22474,48,12.75,48,0.0 +22474,59,55,41,0.0 +22474,35,18,21,0.0 +22474,68,12.5,27,0.0 +22474,24,4.5,29,0.0 +22474,25,14,46,0.0 +22474,66,17,5,0.0 +22474,76,18,15,0.0 +22474,29,123.79,14,0.0 +22474,38,263.5,2,0.0 +22474,9,97,6,0.0 +22474,41,9.65,35,0.0 +22474,16,17.45,27,0.0 +22474,13,6,17,0.0 +22474,30,25.89,22,0.0 +22474,57,19.5,23,0.0 +22474,8,40,18,0.0 +22474,1,18,5,0.0 +22474,22,21,36,0.0 +22474,77,13,30,0.0 +22474,72,34.8,18,0.0 +22474,23,9,12,0.0 +22474,33,2.5,35,0.0 +22474,69,36,17,0.0 +22474,70,15,28,0.0 +22474,12,38,7,0.0 +22474,20,81,33,0.0 +22475,47,9.5,41,0.0 +22475,58,13.25,24,0.0 +22475,50,16.25,9,0.0 +22475,52,7,7,0.0 +22475,21,10,5,0.0 +22475,23,9,2,0.0 +22475,62,49.3,50,0.0 +22475,35,18,26,0.0 +22475,31,12.5,34,0.0 +22475,26,31.23,24,0.0 +22475,45,9.5,13,0.0 +22475,34,14,25,0.0 +22475,33,2.5,22,0.0 +22475,63,43.9,12,0.0 +22475,57,19.5,22,0.0 +22475,68,12.5,24,0.0 +22475,59,55,21,0.0 +22475,72,34.8,15,0.0 +22475,12,38,23,0.0 +22475,27,43.9,2,0.0 +22475,16,17.45,33,0.0 +22475,64,33.25,39,0.0 +22475,61,28.5,8,0.0 +22475,10,31,34,0.0 +22475,43,46,48,0.0 +22475,46,12,18,0.0 +22475,19,9.2,45,0.0 +22475,29,123.79,28,0.0 +22475,71,21.5,23,0.0 +22475,53,32.8,18,0.0 +22476,20,81,32,0.0 +22476,65,21.05,4,0.0 +22476,10,31,4,0.0 +22476,37,26,31,0.0 +22476,11,21,8,0.0 +22476,35,18,29,0.0 +22476,43,46,45,0.0 +22476,2,19,15,0.0 +22476,72,34.8,35,0.0 +22476,73,15,44,0.0 +22476,53,32.8,33,0.0 +22476,63,43.9,16,0.0 +22476,57,19.5,10,0.0 +22476,60,34,32,0.0 +22476,66,17,28,0.0 +22476,77,13,5,0.0 +22476,61,28.5,20,0.0 +22476,45,9.5,37,0.0 +22477,63,43.9,43,0.0 +22477,21,10,49,0.0 +22477,4,22,45,0.0 +22477,37,26,8,0.0 +22477,51,53,29,0.0 +22477,48,12.75,23,0.0 +22477,23,9,44,0.0 +22477,41,9.65,2,0.0 +22477,60,34,34,0.0 +22477,15,15.5,6,0.0 +22477,31,12.5,32,0.0 +22477,20,81,31,0.0 +22477,25,14,28,0.0 +22477,38,263.5,12,0.0 +22477,71,21.5,6,0.0 +22477,58,13.25,6,0.0 +22477,36,19,1,0.0 +22477,27,43.9,45,0.0 +22477,77,13,11,0.0 +22477,17,39,16,0.0 +22477,5,21.35,3,0.0 +22477,44,19.45,17,0.0 +22477,49,20,41,0.0 +22477,16,17.45,3,0.0 +22477,24,4.5,27,0.0 +22477,62,49.3,9,0.0 +22477,6,25,48,0.0 +22477,43,46,14,0.0 +22477,52,7,43,0.0 +22477,45,9.5,26,0.0 +22477,61,28.5,9,0.0 +22477,64,33.25,46,0.0 +22477,47,9.5,40,0.0 +22477,57,19.5,43,0.0 +22477,73,15,14,0.0 +22477,68,12.5,41,0.0 +22477,40,18.4,15,0.0 +22477,33,2.5,34,0.0 +22477,29,123.79,25,0.0 +22477,34,14,14,0.0 +22477,9,97,4,0.0 +22477,70,15,23,0.0 +22477,11,21,8,0.0 +22477,39,18,19,0.0 +22477,72,34.8,34,0.0 +22477,65,21.05,32,0.0 +22477,32,32,20,0.0 +22477,30,25.89,10,0.0 +22477,42,14,50,0.0 +22477,3,10,2,0.0 +22477,28,45.6,14,0.0 +22477,35,18,16,0.0 +22477,2,19,39,0.0 +22477,1,18,44,0.0 +22477,19,9.2,43,0.0 +22477,13,6,24,0.0 +22477,8,40,26,0.0 +22477,53,32.8,11,0.0 +22477,66,17,30,0.0 +22477,67,14,14,0.0 +22477,54,7.45,25,0.0 +22477,74,10,34,0.0 +22477,10,31,45,0.0 +22477,14,23.25,31,0.0 +22477,59,55,34,0.0 +22477,56,38,10,0.0 +22477,55,24,22,0.0 +22478,53,32.8,18,0.0 +22478,62,49.3,17,0.0 +22478,29,123.79,40,0.0 +22478,2,19,24,0.0 +22478,48,12.75,16,0.0 +22478,6,25,21,0.0 +22478,40,18.4,21,0.0 +22478,11,21,6,0.0 +22478,17,39,48,0.0 +22478,7,30,49,0.0 +22478,24,4.5,27,0.0 +22478,38,263.5,40,0.0 +22478,45,9.5,40,0.0 +22478,15,15.5,20,0.0 +22478,23,9,19,0.0 +22478,49,20,22,0.0 +22478,52,7,10,0.0 +22479,22,21,33,0.0 +22479,67,14,45,0.0 +22479,55,24,10,0.0 +22479,75,7.75,32,0.0 +22479,8,40,36,0.0 +22479,43,46,16,0.0 +22479,37,26,27,0.0 +22479,33,2.5,37,0.0 +22479,51,53,45,0.0 +22479,20,81,24,0.0 +22479,17,39,6,0.0 +22479,36,19,25,0.0 +22479,54,7.45,30,0.0 +22479,29,123.79,27,0.0 +22479,10,31,4,0.0 +22479,35,18,50,0.0 +22479,13,6,2,0.0 +22479,46,12,35,0.0 +22479,21,10,8,0.0 +22479,48,12.75,2,0.0 +22479,5,21.35,7,0.0 +22479,42,14,47,0.0 +22479,34,14,30,0.0 +22479,65,21.05,18,0.0 +22479,56,38,17,0.0 +22479,71,21.5,37,0.0 +22479,25,14,33,0.0 +22479,64,33.25,3,0.0 +22479,73,15,12,0.0 +22479,32,32,8,0.0 +22479,27,43.9,10,0.0 +22479,45,9.5,45,0.0 +22480,71,21.5,14,0.0 +22480,17,39,6,0.0 +22480,1,18,12,0.0 +22480,66,17,38,0.0 +22480,62,49.3,41,0.0 +22480,75,7.75,4,0.0 +22480,49,20,41,0.0 +22480,41,9.65,34,0.0 +22480,30,25.89,25,0.0 +22480,13,6,14,0.0 +22480,46,12,46,0.0 +22480,29,123.79,46,0.0 +22480,34,14,1,0.0 +22480,36,19,3,0.0 +22480,5,21.35,28,0.0 +22480,73,15,50,0.0 +22480,69,36,45,0.0 +22480,2,19,20,0.0 +22480,53,32.8,5,0.0 +22480,70,15,11,0.0 +22480,3,10,38,0.0 +22480,72,34.8,35,0.0 +22480,38,263.5,45,0.0 +22481,33,2.5,31,0.0 +22481,21,10,8,0.0 +22481,36,19,49,0.0 +22481,77,13,35,0.0 +22481,44,19.45,21,0.0 +22481,68,12.5,32,0.0 +22481,13,6,9,0.0 +22481,73,15,37,0.0 +22481,64,33.25,39,0.0 +22481,69,36,26,0.0 +22481,1,18,6,0.0 +22481,22,21,49,0.0 +22481,75,7.75,26,0.0 +22481,60,34,14,0.0 +22481,12,38,39,0.0 +22481,41,9.65,29,0.0 +22481,39,18,33,0.0 +22481,18,62.5,15,0.0 +22482,73,15,18,0.0 +22482,32,32,18,0.0 +22482,77,13,7,0.0 +22482,3,10,22,0.0 +22482,69,36,11,0.0 +22482,23,9,50,0.0 +22482,60,34,40,0.0 +22482,26,31.23,9,0.0 +22482,53,32.8,17,0.0 +22482,13,6,19,0.0 +22482,37,26,23,0.0 +22482,46,12,48,0.0 +22482,41,9.65,37,0.0 +22482,31,12.5,24,0.0 +22482,76,18,14,0.0 +22482,45,9.5,16,0.0 +22482,39,18,40,0.0 +22482,61,28.5,3,0.0 +22482,50,16.25,39,0.0 +22482,19,9.2,30,0.0 +22482,43,46,20,0.0 +22482,12,38,16,0.0 +22482,30,25.89,26,0.0 +22482,8,40,8,0.0 +22482,40,18.4,1,0.0 +22482,17,39,6,0.0 +22482,6,25,48,0.0 +22482,51,53,48,0.0 +22482,36,19,21,0.0 +22482,7,30,26,0.0 +22482,21,10,25,0.0 +22482,38,263.5,39,0.0 +22482,55,24,19,0.0 +22482,70,15,43,0.0 +22482,48,12.75,42,0.0 +22482,62,49.3,18,0.0 +22482,14,23.25,9,0.0 +22482,56,38,48,0.0 +22482,9,97,27,0.0 +22482,57,19.5,36,0.0 +22482,47,9.5,47,0.0 +22482,52,7,41,0.0 +22482,18,62.5,8,0.0 +22482,44,19.45,14,0.0 +22482,75,7.75,49,0.0 +22482,71,21.5,30,0.0 +22482,25,14,1,0.0 +22482,10,31,22,0.0 +22482,35,18,47,0.0 +22482,72,34.8,32,0.0 +22482,65,21.05,39,0.0 +22482,4,22,35,0.0 +22482,27,43.9,17,0.0 +22482,5,21.35,8,0.0 +22482,58,13.25,42,0.0 +22482,54,7.45,49,0.0 +22482,29,123.79,23,0.0 +22482,68,12.5,45,0.0 +22482,33,2.5,48,0.0 +22482,1,18,47,0.0 +22482,63,43.9,27,0.0 +22482,15,15.5,30,0.0 +22482,66,17,16,0.0 +22482,24,4.5,16,0.0 +22482,67,14,24,0.0 +22482,20,81,34,0.0 +22482,11,21,14,0.0 +22482,16,17.45,8,0.0 +22483,70,15,16,0.0 +22483,64,33.25,19,0.0 +22483,76,18,50,0.0 +22483,48,12.75,41,0.0 +22483,61,28.5,9,0.0 +22483,57,19.5,29,0.0 +22483,68,12.5,43,0.0 +22483,8,40,39,0.0 +22483,32,32,38,0.0 +22483,25,14,29,0.0 +22483,9,97,16,0.0 +22483,11,21,23,0.0 +22483,56,38,41,0.0 +22483,52,7,22,0.0 +22483,17,39,4,0.0 +22483,5,21.35,7,0.0 +22483,53,32.8,19,0.0 +22483,20,81,15,0.0 +22483,35,18,11,0.0 +22483,63,43.9,8,0.0 +22483,62,49.3,10,0.0 +22483,26,31.23,23,0.0 +22483,46,12,22,0.0 +22483,67,14,36,0.0 +22483,16,17.45,19,0.0 +22483,22,21,24,0.0 +22483,34,14,33,0.0 +22483,49,20,18,0.0 +22483,55,24,19,0.0 +22483,65,21.05,32,0.0 +22483,24,4.5,44,0.0 +22483,39,18,20,0.0 +22483,21,10,40,0.0 +22483,58,13.25,30,0.0 +22484,11,21,28,0.0 +22484,13,6,24,0.0 +22484,10,31,17,0.0 +22484,25,14,6,0.0 +22484,33,2.5,45,0.0 +22484,53,32.8,44,0.0 +22484,45,9.5,38,0.0 +22484,21,10,1,0.0 +22484,12,38,11,0.0 +22484,73,15,13,0.0 +22484,39,18,7,0.0 +22484,47,9.5,25,0.0 +22484,57,19.5,10,0.0 +22484,6,25,23,0.0 +22484,48,12.75,36,0.0 +22484,1,18,43,0.0 +22484,32,32,43,0.0 +22485,74,10,41,0.0 +22485,24,4.5,40,0.0 +22485,10,31,21,0.0 +22485,7,30,16,0.0 +22485,32,32,14,0.0 +22485,26,31.23,33,0.0 +22485,44,19.45,22,0.0 +22485,66,17,5,0.0 +22485,63,43.9,45,0.0 +22485,70,15,20,0.0 +22485,38,263.5,9,0.0 +22485,27,43.9,40,0.0 +22485,41,9.65,18,0.0 +22485,71,21.5,10,0.0 +22485,31,12.5,38,0.0 +22485,14,23.25,49,0.0 +22485,22,21,2,0.0 +22486,67,14,37,0.0 +22486,64,33.25,31,0.0 +22486,26,31.23,20,0.0 +22486,31,12.5,15,0.0 +22486,40,18.4,18,0.0 +22486,52,7,34,0.0 +22486,29,123.79,8,0.0 +22486,44,19.45,14,0.0 +22486,14,23.25,12,0.0 +22486,20,81,33,0.0 +22486,13,6,29,0.0 +22486,58,13.25,21,0.0 +22486,19,9.2,47,0.0 +22486,27,43.9,19,0.0 +22486,46,12,14,0.0 +22486,17,39,23,0.0 +22486,55,24,16,0.0 +22486,72,34.8,3,0.0 +22486,37,26,29,0.0 +22486,16,17.45,11,0.0 +22487,50,16.25,3,0.0 +22487,32,32,19,0.0 +22487,35,18,16,0.0 +22487,58,13.25,36,0.0 +22487,74,10,27,0.0 +22487,60,34,11,0.0 +22487,16,17.45,27,0.0 +22487,6,25,33,0.0 +22487,48,12.75,47,0.0 +22487,2,19,18,0.0 +22487,67,14,12,0.0 +22487,49,20,26,0.0 +22487,3,10,44,0.0 +22487,61,28.5,42,0.0 +22487,37,26,18,0.0 +22487,21,10,38,0.0 +22487,29,123.79,9,0.0 +22487,71,21.5,3,0.0 +22487,36,19,18,0.0 +22488,65,21.05,12,0.0 +22488,16,17.45,4,0.0 +22488,28,45.6,48,0.0 +22488,64,33.25,47,0.0 +22488,10,31,18,0.0 +22488,33,2.5,33,0.0 +22488,67,14,26,0.0 +22488,57,19.5,3,0.0 +22488,9,97,22,0.0 +22488,13,6,22,0.0 +22488,17,39,7,0.0 +22488,51,53,9,0.0 +22488,54,7.45,17,0.0 +22488,46,12,28,0.0 +22488,59,55,9,0.0 +22488,41,9.65,34,0.0 +22488,21,10,30,0.0 +22488,36,19,48,0.0 +22488,40,18.4,21,0.0 +22488,29,123.79,4,0.0 +22488,4,22,45,0.0 +22488,72,34.8,7,0.0 +22488,69,36,33,0.0 +22488,52,7,39,0.0 +22488,25,14,48,0.0 +22488,61,28.5,27,0.0 +22488,15,15.5,10,0.0 +22488,34,14,8,0.0 +22488,62,49.3,14,0.0 +22488,42,14,7,0.0 +22488,71,21.5,50,0.0 +22488,53,32.8,42,0.0 +22488,23,9,45,0.0 +22488,20,81,6,0.0 +22488,30,25.89,26,0.0 +22488,47,9.5,17,0.0 +22488,77,13,36,0.0 +22488,14,23.25,31,0.0 +22488,48,12.75,23,0.0 +22488,68,12.5,37,0.0 +22488,70,15,28,0.0 +22488,56,38,43,0.0 +22488,66,17,45,0.0 +22488,26,31.23,30,0.0 +22488,19,9.2,18,0.0 +22488,11,21,17,0.0 +22488,45,9.5,41,0.0 +22488,6,25,20,0.0 +22488,37,26,29,0.0 +22488,35,18,15,0.0 +22488,1,18,42,0.0 +22488,39,18,10,0.0 +22488,27,43.9,3,0.0 +22488,49,20,31,0.0 +22488,3,10,24,0.0 +22488,38,263.5,26,0.0 +22488,50,16.25,7,0.0 +22488,76,18,30,0.0 +22489,72,34.8,23,0.0 +22489,40,18.4,9,0.0 +22489,27,43.9,4,0.0 +22489,59,55,29,0.0 +22489,16,17.45,31,0.0 +22489,71,21.5,18,0.0 +22489,21,10,48,0.0 +22489,37,26,37,0.0 +22489,41,9.65,9,0.0 +22489,34,14,7,0.0 +22489,42,14,34,0.0 +22489,54,7.45,3,0.0 +22489,44,19.45,29,0.0 +22489,32,32,41,0.0 +22489,30,25.89,42,0.0 +22489,17,39,32,0.0 +22489,11,21,26,0.0 +22489,50,16.25,7,0.0 +22489,46,12,13,0.0 +22489,24,4.5,46,0.0 +22489,6,25,42,0.0 +22489,48,12.75,17,0.0 +22489,26,31.23,28,0.0 +22489,25,14,25,0.0 +22489,5,21.35,5,0.0 +22489,9,97,31,0.0 +22489,43,46,10,0.0 +22489,55,24,31,0.0 +22489,29,123.79,43,0.0 +22489,57,19.5,3,0.0 +22489,62,49.3,20,0.0 +22489,13,6,44,0.0 +22489,8,40,38,0.0 +22489,49,20,23,0.0 +22489,20,81,9,0.0 +22489,76,18,33,0.0 +22489,28,45.6,26,0.0 +22489,12,38,29,0.0 +22489,19,9.2,35,0.0 +22489,70,15,15,0.0 +22489,66,17,7,0.0 +22489,74,10,26,0.0 +22489,15,15.5,42,0.0 +22489,77,13,49,0.0 +22489,36,19,32,0.0 +22489,33,2.5,20,0.0 +22489,68,12.5,6,0.0 +22489,31,12.5,5,0.0 +22489,58,13.25,17,0.0 +22489,73,15,26,0.0 +22489,38,263.5,14,0.0 +22489,61,28.5,39,0.0 +22489,23,9,7,0.0 +22490,14,23.25,39,0.0 +22490,33,2.5,39,0.0 +22490,54,7.45,36,0.0 +22490,72,34.8,29,0.0 +22490,68,12.5,35,0.0 +22490,32,32,2,0.0 +22490,45,9.5,50,0.0 +22490,55,24,23,0.0 +22490,31,12.5,8,0.0 +22490,36,19,21,0.0 +22490,18,62.5,45,0.0 +22490,1,18,8,0.0 +22490,16,17.45,47,0.0 +22490,44,19.45,8,0.0 +22490,2,19,14,0.0 +22490,40,18.4,13,0.0 +22490,3,10,49,0.0 +22490,77,13,7,0.0 +22490,23,9,14,0.0 +22490,57,19.5,19,0.0 +22490,46,12,50,0.0 +22490,76,18,21,0.0 +22490,62,49.3,15,0.0 +22490,48,12.75,18,0.0 +22490,7,30,1,0.0 +22490,59,55,43,0.0 +22490,67,14,17,0.0 +22490,71,21.5,10,0.0 +22490,73,15,16,0.0 +22490,12,38,26,0.0 +22490,75,7.75,3,0.0 +22490,43,46,47,0.0 +22490,29,123.79,13,0.0 +22490,56,38,45,0.0 +22490,35,18,2,0.0 +22490,50,16.25,28,0.0 +22490,69,36,1,0.0 +22490,70,15,46,0.0 +22490,49,20,44,0.0 +22490,10,31,2,0.0 +22490,6,25,9,0.0 +22490,41,9.65,17,0.0 +22490,25,14,12,0.0 +22490,24,4.5,49,0.0 +22490,39,18,30,0.0 +22490,19,9.2,41,0.0 +22490,30,25.89,50,0.0 +22490,9,97,42,0.0 +22490,34,14,46,0.0 +22490,26,31.23,10,0.0 +22490,27,43.9,36,0.0 +22490,5,21.35,39,0.0 +22490,66,17,2,0.0 +22490,13,6,41,0.0 +22490,8,40,46,0.0 +22490,15,15.5,34,0.0 +22490,65,21.05,22,0.0 +22490,53,32.8,20,0.0 +22490,61,28.5,49,0.0 +22490,51,53,13,0.0 +22490,22,21,48,0.0 +22490,63,43.9,25,0.0 +22490,4,22,21,0.0 +22490,21,10,42,0.0 +22490,17,39,7,0.0 +22490,74,10,26,0.0 +22490,42,14,43,0.0 +22490,37,26,30,0.0 +22490,52,7,20,0.0 +22490,20,81,20,0.0 +22490,60,34,31,0.0 +22490,28,45.6,4,0.0 +22490,58,13.25,30,0.0 +22490,38,263.5,4,0.0 +22490,64,33.25,43,0.0 +22491,7,30,38,0.0 +22491,68,12.5,4,0.0 +22491,69,36,26,0.0 +22491,54,7.45,23,0.0 +22491,4,22,26,0.0 +22491,42,14,49,0.0 +22491,66,17,50,0.0 +22491,11,21,1,0.0 +22491,1,18,22,0.0 +22491,17,39,5,0.0 +22491,10,31,28,0.0 +22491,41,9.65,3,0.0 +22491,62,49.3,49,0.0 +22491,44,19.45,35,0.0 +22491,24,4.5,2,0.0 +22491,38,263.5,45,0.0 +22491,63,43.9,25,0.0 +22491,76,18,7,0.0 +22491,77,13,1,0.0 +22491,39,18,32,0.0 +22491,35,18,12,0.0 +22491,60,34,1,0.0 +22491,56,38,1,0.0 +22491,45,9.5,6,0.0 +22491,30,25.89,22,0.0 +22491,57,19.5,40,0.0 +22491,72,34.8,43,0.0 +22491,32,32,49,0.0 +22491,67,14,12,0.0 +22491,18,62.5,20,0.0 +22491,37,26,14,0.0 +22491,74,10,50,0.0 +22491,26,31.23,18,0.0 +22491,34,14,4,0.0 +22491,3,10,1,0.0 +22491,73,15,38,0.0 +22491,58,13.25,40,0.0 +22491,8,40,27,0.0 +22492,53,32.8,21,0.0 +22492,59,55,40,0.0 +22492,55,24,21,0.0 +22492,34,14,48,0.0 +22492,46,12,49,0.0 +22492,19,9.2,44,0.0 +22492,75,7.75,45,0.0 +22492,13,6,29,0.0 +22492,16,17.45,48,0.0 +22492,72,34.8,38,0.0 +22492,43,46,16,0.0 +22492,39,18,49,0.0 +22492,28,45.6,4,0.0 +22492,32,32,34,0.0 +22492,15,15.5,20,0.0 +22492,61,28.5,8,0.0 +22492,50,16.25,8,0.0 +22492,25,14,26,0.0 +22492,10,31,26,0.0 +22492,26,31.23,20,0.0 +22492,6,25,35,0.0 +22492,8,40,45,0.0 +22492,30,25.89,50,0.0 +22492,60,34,6,0.0 +22492,54,7.45,40,0.0 +22492,71,21.5,21,0.0 +22492,65,21.05,28,0.0 +22492,40,18.4,35,0.0 +22492,62,49.3,46,0.0 +22492,56,38,40,0.0 +22492,66,17,20,0.0 +22492,47,9.5,24,0.0 +22492,57,19.5,47,0.0 +22492,18,62.5,36,0.0 +22492,45,9.5,8,0.0 +22492,41,9.65,3,0.0 +22492,24,4.5,23,0.0 +22492,36,19,1,0.0 +22492,42,14,5,0.0 +22492,64,33.25,5,0.0 +22492,67,14,20,0.0 +22492,17,39,30,0.0 +22492,5,21.35,27,0.0 +22492,70,15,27,0.0 +22492,69,36,22,0.0 +22493,70,15,24,0.0 +22493,14,23.25,49,0.0 +22493,22,21,43,0.0 +22493,58,13.25,6,0.0 +22493,30,25.89,21,0.0 +22493,64,33.25,41,0.0 +22493,49,20,25,0.0 +22493,29,123.79,48,0.0 +22493,27,43.9,18,0.0 +22493,71,21.5,31,0.0 +22493,33,2.5,38,0.0 +22493,11,21,33,0.0 +22493,3,10,26,0.0 +22493,7,30,9,0.0 +22493,50,16.25,15,0.0 +22493,77,13,15,0.0 +22493,62,49.3,28,0.0 +22493,20,81,28,0.0 +22493,10,31,23,0.0 +22493,54,7.45,2,0.0 +22493,56,38,43,0.0 +22493,34,14,3,0.0 +22493,59,55,28,0.0 +22493,18,62.5,5,0.0 +22493,46,12,28,0.0 +22493,39,18,8,0.0 +22493,42,14,7,0.0 +22493,15,15.5,18,0.0 +22493,53,32.8,30,0.0 +22493,76,18,28,0.0 +22494,56,38,46,0.0 +22494,10,31,4,0.0 +22494,54,7.45,46,0.0 +22494,48,12.75,22,0.0 +22494,51,53,27,0.0 +22494,22,21,16,0.0 +22494,71,21.5,21,0.0 +22494,29,123.79,39,0.0 +22494,28,45.6,47,0.0 +22494,37,26,45,0.0 +22494,8,40,21,0.0 +22494,74,10,9,0.0 +22494,58,13.25,20,0.0 +22494,45,9.5,40,0.0 +22495,4,22,37,0.0 +22495,34,14,29,0.0 +22495,6,25,20,0.0 +22495,53,32.8,41,0.0 +22495,38,263.5,22,0.0 +22495,56,38,2,0.0 +22495,55,24,50,0.0 +22495,25,14,32,0.0 +22495,77,13,1,0.0 +22495,69,36,35,0.0 +22495,11,21,22,0.0 +22495,67,14,28,0.0 +22495,1,18,47,0.0 +22495,19,9.2,1,0.0 +22495,29,123.79,7,0.0 +22495,59,55,17,0.0 +22495,74,10,46,0.0 +22495,21,10,26,0.0 +22495,12,38,10,0.0 +22495,46,12,48,0.0 +22495,65,21.05,18,0.0 +22495,7,30,17,0.0 +22495,47,9.5,17,0.0 +22495,10,31,13,0.0 +22495,2,19,18,0.0 +22495,42,14,2,0.0 +22495,23,9,45,0.0 +22495,66,17,22,0.0 +22495,72,34.8,40,0.0 +22495,5,21.35,50,0.0 +22495,62,49.3,40,0.0 +22495,58,13.25,49,0.0 +22495,40,18.4,27,0.0 +22495,43,46,25,0.0 +22495,35,18,1,0.0 +22495,33,2.5,32,0.0 +22495,9,97,19,0.0 +22495,37,26,14,0.0 +22495,63,43.9,22,0.0 +22495,22,21,5,0.0 +22495,26,31.23,17,0.0 +22495,71,21.5,2,0.0 +22495,36,19,35,0.0 +22495,45,9.5,6,0.0 +22495,8,40,42,0.0 +22495,50,16.25,17,0.0 +22495,30,25.89,38,0.0 +22495,60,34,27,0.0 +22495,73,15,28,0.0 +22495,52,7,30,0.0 +22495,24,4.5,23,0.0 +22495,13,6,32,0.0 +22495,64,33.25,24,0.0 +22495,68,12.5,11,0.0 +22495,57,19.5,35,0.0 +22495,48,12.75,28,0.0 +22495,75,7.75,8,0.0 +22495,61,28.5,11,0.0 +22495,18,62.5,31,0.0 +22495,70,15,37,0.0 +22495,41,9.65,48,0.0 +22495,54,7.45,9,0.0 +22495,3,10,15,0.0 +22495,39,18,9,0.0 +22495,76,18,20,0.0 +22495,15,15.5,16,0.0 +22495,20,81,35,0.0 +22496,37,26,2,0.0 +22496,16,17.45,32,0.0 +22496,64,33.25,36,0.0 +22496,7,30,45,0.0 +22496,70,15,7,0.0 +22496,39,18,17,0.0 +22496,35,18,34,0.0 +22496,45,9.5,4,0.0 +22496,23,9,25,0.0 +22496,59,55,37,0.0 +22496,51,53,33,0.0 +22496,6,25,14,0.0 +22496,29,123.79,7,0.0 +22496,26,31.23,7,0.0 +22496,68,12.5,41,0.0 +22496,9,97,34,0.0 +22496,44,19.45,21,0.0 +22496,36,19,46,0.0 +22496,15,15.5,21,0.0 +22496,57,19.5,17,0.0 +22496,73,15,38,0.0 +22496,8,40,38,0.0 +22496,55,24,26,0.0 +22496,27,43.9,49,0.0 +22496,77,13,42,0.0 +22496,20,81,48,0.0 +22496,61,28.5,41,0.0 +22496,74,10,38,0.0 +22496,41,9.65,15,0.0 +22496,56,38,29,0.0 +22496,71,21.5,33,0.0 +22496,33,2.5,14,0.0 +22496,32,32,13,0.0 +22496,58,13.25,25,0.0 +22496,2,19,45,0.0 +22496,69,36,44,0.0 +22496,4,22,46,0.0 +22496,60,34,27,0.0 +22496,5,21.35,23,0.0 +22496,30,25.89,22,0.0 +22496,46,12,21,0.0 +22496,21,10,11,0.0 +22496,40,18.4,17,0.0 +22496,11,21,15,0.0 +22496,24,4.5,15,0.0 +22496,1,18,43,0.0 +22496,18,62.5,17,0.0 +22496,65,21.05,32,0.0 +22496,53,32.8,37,0.0 +22496,48,12.75,32,0.0 +22496,14,23.25,45,0.0 +22496,12,38,29,0.0 +22496,49,20,48,0.0 +22496,19,9.2,31,0.0 +22496,28,45.6,26,0.0 +22496,43,46,21,0.0 +22496,3,10,41,0.0 +22496,52,7,24,0.0 +22496,62,49.3,6,0.0 +22496,34,14,47,0.0 +22496,54,7.45,37,0.0 +22496,17,39,19,0.0 +22496,50,16.25,3,0.0 +22496,67,14,25,0.0 +22496,10,31,1,0.0 +22497,32,32,19,0.0 +22497,57,19.5,32,0.0 +22497,52,7,43,0.0 +22497,3,10,15,0.0 +22497,20,81,50,0.0 +22497,54,7.45,44,0.0 +22497,35,18,33,0.0 +22497,8,40,13,0.0 +22497,27,43.9,8,0.0 +22497,18,62.5,37,0.0 +22497,63,43.9,49,0.0 +22497,39,18,14,0.0 +22497,6,25,39,0.0 +22497,31,12.5,17,0.0 +22497,4,22,22,0.0 +22497,28,45.6,10,0.0 +22497,17,39,33,0.0 +22497,76,18,16,0.0 +22497,42,14,4,0.0 +22497,70,15,10,0.0 +22497,19,9.2,44,0.0 +22497,46,12,38,0.0 +22497,13,6,42,0.0 +22497,25,14,15,0.0 +22497,49,20,39,0.0 +22497,23,9,34,0.0 +22497,77,13,4,0.0 +22497,43,46,46,0.0 +22497,58,13.25,25,0.0 +22497,14,23.25,30,0.0 +22497,67,14,9,0.0 +22497,53,32.8,36,0.0 +22497,50,16.25,3,0.0 +22497,38,263.5,3,0.0 +22497,55,24,43,0.0 +22498,30,25.89,24,0.0 +22498,25,14,11,0.0 +22498,42,14,32,0.0 +22498,9,97,20,0.0 +22498,74,10,1,0.0 +22498,32,32,38,0.0 +22498,23,9,13,0.0 +22498,8,40,8,0.0 +22498,21,10,34,0.0 +22498,75,7.75,4,0.0 +22498,5,21.35,1,0.0 +22498,56,38,49,0.0 +22498,4,22,4,0.0 +22498,49,20,31,0.0 +22498,73,15,46,0.0 +22499,71,21.5,19,0.0 +22499,68,12.5,5,0.0 +22499,70,15,26,0.0 +22499,10,31,25,0.0 +22499,66,17,44,0.0 +22499,31,12.5,20,0.0 +22499,58,13.25,29,0.0 +22499,1,18,27,0.0 +22499,53,32.8,29,0.0 +22499,17,39,45,0.0 +22499,16,17.45,33,0.0 +22499,76,18,31,0.0 +22499,39,18,41,0.0 +22499,50,16.25,46,0.0 +22499,7,30,40,0.0 +22499,67,14,18,0.0 +22499,54,7.45,2,0.0 +22499,2,19,27,0.0 +22499,44,19.45,29,0.0 +22499,34,14,9,0.0 +22499,56,38,17,0.0 +22499,45,9.5,27,0.0 +22499,60,34,34,0.0 +22499,32,32,10,0.0 +22499,8,40,26,0.0 +22499,19,9.2,40,0.0 +22499,4,22,22,0.0 +22499,77,13,30,0.0 +22499,11,21,11,0.0 +22499,35,18,2,0.0 +22499,42,14,38,0.0 +22500,50,16.25,49,0.0 +22500,44,19.45,45,0.0 +22500,42,14,15,0.0 +22500,48,12.75,13,0.0 +22500,72,34.8,48,0.0 +22500,5,21.35,27,0.0 +22500,60,34,27,0.0 +22500,57,19.5,27,0.0 +22500,65,21.05,7,0.0 +22500,13,6,27,0.0 +22500,70,15,47,0.0 +22500,41,9.65,42,0.0 +22500,76,18,12,0.0 +22500,10,31,41,0.0 +22500,73,15,28,0.0 +22500,49,20,42,0.0 +22500,47,9.5,27,0.0 +22500,11,21,37,0.0 +22500,8,40,46,0.0 +22500,51,53,29,0.0 +22500,17,39,48,0.0 +22500,26,31.23,40,0.0 +22500,20,81,36,0.0 +22500,7,30,27,0.0 +22500,6,25,45,0.0 +22500,12,38,19,0.0 +22500,25,14,13,0.0 +22500,16,17.45,34,0.0 +22501,12,38,40,0.0 +22501,77,13,21,0.0 +22501,4,22,1,0.0 +22501,10,31,21,0.0 +22501,13,6,21,0.0 +22501,64,33.25,18,0.0 +22501,36,19,5,0.0 +22501,71,21.5,15,0.0 +22501,14,23.25,30,0.0 +22501,31,12.5,21,0.0 +22501,19,9.2,35,0.0 +22501,74,10,7,0.0 +22501,25,14,45,0.0 +22501,42,14,4,0.0 +22501,38,263.5,29,0.0 +22501,44,19.45,13,0.0 +22501,47,9.5,48,0.0 +22501,76,18,30,0.0 +22501,62,49.3,23,0.0 +22501,21,10,19,0.0 +22501,70,15,33,0.0 +22501,53,32.8,22,0.0 +22501,55,24,20,0.0 +22501,7,30,13,0.0 +22501,6,25,37,0.0 +22501,24,4.5,11,0.0 +22501,45,9.5,23,0.0 +22501,73,15,4,0.0 +22501,68,12.5,43,0.0 +22501,35,18,43,0.0 +22501,46,12,2,0.0 +22501,5,21.35,12,0.0 +22501,65,21.05,38,0.0 +22501,2,19,37,0.0 +22501,30,25.89,3,0.0 +22501,26,31.23,10,0.0 +22501,17,39,31,0.0 +22501,54,7.45,8,0.0 +22501,41,9.65,21,0.0 +22501,28,45.6,26,0.0 +22501,20,81,7,0.0 +22501,49,20,47,0.0 +22501,57,19.5,50,0.0 +22501,66,17,2,0.0 +22501,15,15.5,22,0.0 +22501,75,7.75,49,0.0 +22501,50,16.25,50,0.0 +22501,43,46,21,0.0 +22501,34,14,8,0.0 +22502,16,17.45,49,0.0 +22502,31,12.5,40,0.0 +22502,28,45.6,41,0.0 +22502,47,9.5,18,0.0 +22502,30,25.89,25,0.0 +22502,15,15.5,29,0.0 +22502,43,46,32,0.0 +22502,51,53,24,0.0 +22502,2,19,31,0.0 +22502,53,32.8,27,0.0 +22502,74,10,1,0.0 +22502,68,12.5,20,0.0 +22502,40,18.4,3,0.0 +22502,20,81,31,0.0 +22502,57,19.5,31,0.0 +22502,39,18,30,0.0 +22502,24,4.5,33,0.0 +22502,63,43.9,38,0.0 +22502,50,16.25,35,0.0 +22502,3,10,31,0.0 +22502,61,28.5,31,0.0 +22502,26,31.23,50,0.0 +22502,48,12.75,30,0.0 +22502,27,43.9,43,0.0 +22502,29,123.79,27,0.0 +22502,69,36,15,0.0 +22502,72,34.8,13,0.0 +22502,12,38,31,0.0 +22502,17,39,37,0.0 +22502,52,7,6,0.0 +22502,70,15,15,0.0 +22502,77,13,43,0.0 +22502,67,14,38,0.0 +22502,33,2.5,16,0.0 +22502,42,14,24,0.0 +22502,58,13.25,8,0.0 +22502,59,55,24,0.0 +22502,22,21,2,0.0 +22502,73,15,11,0.0 +22502,5,21.35,27,0.0 +22502,64,33.25,13,0.0 +22502,66,17,21,0.0 +22503,75,7.75,43,0.0 +22503,23,9,9,0.0 +22503,15,15.5,34,0.0 +22503,36,19,32,0.0 +22503,42,14,10,0.0 +22503,26,31.23,5,0.0 +22503,20,81,50,0.0 +22503,8,40,12,0.0 +22503,39,18,45,0.0 +22503,60,34,24,0.0 +22503,57,19.5,30,0.0 +22503,43,46,17,0.0 +22503,6,25,11,0.0 +22503,50,16.25,11,0.0 +22503,41,9.65,31,0.0 +22503,76,18,13,0.0 +22503,71,21.5,18,0.0 +22503,74,10,2,0.0 +22503,46,12,45,0.0 +22503,68,12.5,18,0.0 +22503,16,17.45,8,0.0 +22503,73,15,41,0.0 +22503,4,22,19,0.0 +22503,3,10,30,0.0 +22503,72,34.8,45,0.0 +22503,17,39,35,0.0 +22503,61,28.5,3,0.0 +22503,38,263.5,2,0.0 +22503,58,13.25,36,0.0 +22503,30,25.89,8,0.0 +22503,1,18,4,0.0 +22503,27,43.9,11,0.0 +22503,40,18.4,26,0.0 +22503,47,9.5,4,0.0 +22503,33,2.5,8,0.0 +22503,49,20,17,0.0 +22503,10,31,48,0.0 +22503,69,36,1,0.0 +22503,70,15,49,0.0 +22503,59,55,38,0.0 +22503,24,4.5,21,0.0 +22503,52,7,12,0.0 +22503,14,23.25,42,0.0 +22504,4,22,12,0.0 +22504,16,17.45,3,0.0 +22504,29,123.79,19,0.0 +22504,60,34,50,0.0 +22504,26,31.23,17,0.0 +22504,77,13,47,0.0 +22504,15,15.5,45,0.0 +22504,44,19.45,17,0.0 +22504,61,28.5,26,0.0 +22504,2,19,38,0.0 +22504,48,12.75,1,0.0 +22504,57,19.5,30,0.0 +22504,41,9.65,14,0.0 +22504,9,97,13,0.0 +22504,7,30,21,0.0 +22504,71,21.5,29,0.0 +22504,3,10,4,0.0 +22504,54,7.45,46,0.0 +22504,22,21,25,0.0 +22504,75,7.75,31,0.0 +22505,9,97,3,0.0 +22505,43,46,6,0.0 +22505,61,28.5,10,0.0 +22505,68,12.5,22,0.0 +22505,45,9.5,17,0.0 +22505,13,6,26,0.0 +22505,15,15.5,4,0.0 +22505,77,13,26,0.0 +22505,66,17,24,0.0 +22505,30,25.89,25,0.0 +22505,57,19.5,9,0.0 +22505,34,14,30,0.0 +22505,19,9.2,14,0.0 +22505,23,9,42,0.0 +22505,44,19.45,10,0.0 +22505,20,81,7,0.0 +22505,31,12.5,35,0.0 +22505,53,32.8,4,0.0 +22505,70,15,12,0.0 +22505,58,13.25,48,0.0 +22505,56,38,14,0.0 +22505,52,7,15,0.0 +22505,54,7.45,21,0.0 +22505,74,10,41,0.0 +22505,76,18,13,0.0 +22505,3,10,26,0.0 +22505,69,36,42,0.0 +22505,65,21.05,13,0.0 +22505,48,12.75,5,0.0 +22505,6,25,19,0.0 +22505,27,43.9,36,0.0 +22505,37,26,46,0.0 +22505,51,53,39,0.0 +22505,12,38,2,0.0 +22505,63,43.9,42,0.0 +22505,67,14,2,0.0 +22505,22,21,46,0.0 +22505,29,123.79,23,0.0 +22505,59,55,5,0.0 +22505,71,21.5,48,0.0 +22505,24,4.5,22,0.0 +22505,18,62.5,23,0.0 +22505,35,18,8,0.0 +22505,41,9.65,37,0.0 +22505,11,21,15,0.0 +22505,40,18.4,19,0.0 +22505,72,34.8,8,0.0 +22505,1,18,7,0.0 +22505,10,31,10,0.0 +22505,75,7.75,41,0.0 +22505,36,19,27,0.0 +22505,17,39,3,0.0 +22505,50,16.25,36,0.0 +22505,21,10,45,0.0 +22505,16,17.45,7,0.0 +22505,5,21.35,19,0.0 +22505,32,32,47,0.0 +22505,8,40,20,0.0 +22505,55,24,23,0.0 +22505,39,18,36,0.0 +22505,47,9.5,7,0.0 +22505,73,15,5,0.0 +22505,42,14,29,0.0 +22505,4,22,6,0.0 +22505,60,34,49,0.0 +22505,26,31.23,24,0.0 +22505,46,12,26,0.0 +22505,7,30,26,0.0 +22505,25,14,1,0.0 +22505,49,20,17,0.0 +22505,38,263.5,38,0.0 +22505,2,19,25,0.0 +22505,14,23.25,15,0.0 +22505,62,49.3,22,0.0 +22505,28,45.6,44,0.0 +22506,27,43.9,15,0.0 +22506,62,49.3,46,0.0 +22506,74,10,16,0.0 +22506,21,10,17,0.0 +22506,15,15.5,36,0.0 +22506,63,43.9,19,0.0 +22506,44,19.45,46,0.0 +22506,18,62.5,2,0.0 +22506,73,15,13,0.0 +22506,13,6,15,0.0 +22506,38,263.5,20,0.0 +22506,75,7.75,43,0.0 +22506,47,9.5,28,0.0 +22506,45,9.5,23,0.0 +22506,72,34.8,36,0.0 +22506,77,13,15,0.0 +22506,70,15,27,0.0 +22506,40,18.4,3,0.0 +22507,17,39,28,0.0 +22507,64,33.25,10,0.0 +22507,43,46,16,0.0 +22507,67,14,1,0.0 +22507,1,18,42,0.0 +22507,35,18,29,0.0 +22507,63,43.9,33,0.0 +22507,14,23.25,47,0.0 +22507,53,32.8,28,0.0 +22507,70,15,41,0.0 +22507,27,43.9,13,0.0 +22507,65,21.05,45,0.0 +22508,58,13.25,13,0.0 +22508,1,18,16,0.0 +22508,29,123.79,22,0.0 +22508,60,34,13,0.0 +22508,26,31.23,20,0.0 +22508,6,25,44,0.0 +22508,33,2.5,2,0.0 +22508,45,9.5,26,0.0 +22508,12,38,18,0.0 +22508,46,12,40,0.0 +22508,42,14,13,0.0 +22508,9,97,45,0.0 +22508,3,10,12,0.0 +22508,41,9.65,9,0.0 +22508,24,4.5,3,0.0 +22508,10,31,6,0.0 +22508,74,10,18,0.0 +22508,16,17.45,22,0.0 +22508,27,43.9,47,0.0 +22508,39,18,31,0.0 +22508,25,14,31,0.0 +22508,35,18,22,0.0 +22508,67,14,13,0.0 +22508,59,55,41,0.0 +22508,2,19,13,0.0 +22508,65,21.05,25,0.0 +22508,20,81,37,0.0 +22508,73,15,11,0.0 +22508,18,62.5,26,0.0 +22508,30,25.89,24,0.0 +22508,53,32.8,22,0.0 +22508,75,7.75,11,0.0 +22508,68,12.5,42,0.0 +22508,22,21,35,0.0 +22508,36,19,32,0.0 +22508,56,38,45,0.0 +22508,61,28.5,31,0.0 +22508,31,12.5,39,0.0 +22508,17,39,17,0.0 +22508,14,23.25,25,0.0 +22508,48,12.75,10,0.0 +22508,70,15,22,0.0 +22508,5,21.35,17,0.0 +22508,4,22,11,0.0 +22508,69,36,22,0.0 +22508,57,19.5,7,0.0 +22508,62,49.3,50,0.0 +22508,37,26,44,0.0 +22508,49,20,21,0.0 +22508,23,9,26,0.0 +22508,28,45.6,43,0.0 +22508,13,6,9,0.0 +22508,44,19.45,47,0.0 +22508,71,21.5,7,0.0 +22508,77,13,14,0.0 +22508,72,34.8,12,0.0 +22508,34,14,8,0.0 +22508,66,17,28,0.0 +22508,64,33.25,10,0.0 +22508,50,16.25,10,0.0 +22508,63,43.9,26,0.0 +22508,15,15.5,32,0.0 +22508,54,7.45,24,0.0 +22508,55,24,50,0.0 +22508,43,46,39,0.0 +22508,47,9.5,25,0.0 +22508,40,18.4,41,0.0 +22508,7,30,25,0.0 +22509,39,18,49,0.0 +22509,24,4.5,12,0.0 +22509,42,14,44,0.0 +22509,66,17,21,0.0 +22509,4,22,42,0.0 +22509,60,34,10,0.0 +22509,46,12,8,0.0 +22509,45,9.5,13,0.0 +22509,57,19.5,9,0.0 +22509,37,26,18,0.0 +22509,31,12.5,13,0.0 +22509,75,7.75,31,0.0 +22509,6,25,46,0.0 +22509,30,25.89,19,0.0 +22509,3,10,17,0.0 +22509,70,15,3,0.0 +22509,7,30,20,0.0 +22509,25,14,9,0.0 +22509,48,12.75,30,0.0 +22509,16,17.45,15,0.0 +22510,16,17.45,42,0.0 +22510,48,12.75,16,0.0 +22510,4,22,26,0.0 +22510,72,34.8,15,0.0 +22510,39,18,40,0.0 +22510,60,34,26,0.0 +22510,43,46,41,0.0 +22510,11,21,6,0.0 +22510,68,12.5,46,0.0 +22510,45,9.5,25,0.0 +22510,24,4.5,50,0.0 +22510,28,45.6,11,0.0 +22510,74,10,18,0.0 +22511,3,10,21,0.0 +22511,34,14,27,0.0 +22511,35,18,44,0.0 +22511,71,21.5,30,0.0 +22511,73,15,13,0.0 +22511,55,24,15,0.0 +22511,53,32.8,16,0.0 +22511,77,13,22,0.0 +22511,61,28.5,23,0.0 +22511,42,14,26,0.0 +22511,59,55,22,0.0 +22511,13,6,27,0.0 +22511,36,19,25,0.0 +22511,6,25,46,0.0 +22511,46,12,37,0.0 +22511,69,36,17,0.0 +22511,5,21.35,5,0.0 +22511,52,7,47,0.0 +22511,32,32,21,0.0 +22511,29,123.79,45,0.0 +22511,41,9.65,21,0.0 +22511,21,10,17,0.0 +22511,68,12.5,13,0.0 +22511,72,34.8,33,0.0 +22511,56,38,44,0.0 +22511,50,16.25,6,0.0 +22511,76,18,21,0.0 +22511,11,21,34,0.0 +22511,14,23.25,48,0.0 +22512,24,4.5,31,0.0 +22512,18,62.5,44,0.0 +22512,55,24,16,0.0 +22512,47,9.5,6,0.0 +22512,4,22,12,0.0 +22512,67,14,44,0.0 +22512,5,21.35,11,0.0 +22512,14,23.25,34,0.0 +22512,3,10,7,0.0 +22512,76,18,21,0.0 +22512,1,18,17,0.0 +22512,17,39,34,0.0 +22512,63,43.9,40,0.0 +22512,12,38,20,0.0 +22512,41,9.65,39,0.0 +22512,42,14,37,0.0 +22512,32,32,3,0.0 +22512,34,14,49,0.0 +22512,39,18,35,0.0 +22512,40,18.4,24,0.0 +22512,2,19,28,0.0 +22512,49,20,44,0.0 +22512,45,9.5,15,0.0 +22512,66,17,34,0.0 +22513,8,40,36,0.0 +22513,2,19,34,0.0 +22513,77,13,9,0.0 +22513,11,21,45,0.0 +22513,64,33.25,2,0.0 +22513,9,97,11,0.0 +22513,31,12.5,34,0.0 +22513,19,9.2,4,0.0 +22513,35,18,41,0.0 +22513,50,16.25,12,0.0 +22513,3,10,32,0.0 +22513,32,32,20,0.0 +22513,15,15.5,3,0.0 +22513,14,23.25,19,0.0 +22513,68,12.5,43,0.0 +22513,56,38,1,0.0 +22513,30,25.89,34,0.0 +22513,54,7.45,32,0.0 +22513,12,38,16,0.0 +22513,43,46,46,0.0 +22513,60,34,40,0.0 +22513,57,19.5,44,0.0 +22513,58,13.25,23,0.0 +22513,23,9,41,0.0 +22513,67,14,5,0.0 +22513,75,7.75,47,0.0 +22513,5,21.35,31,0.0 +22513,52,7,43,0.0 +22513,27,43.9,19,0.0 +22514,76,18,35,0.0 +22514,34,14,29,0.0 +22514,26,31.23,22,0.0 +22514,14,23.25,22,0.0 +22514,52,7,1,0.0 +22514,57,19.5,28,0.0 +22514,73,15,20,0.0 +22514,43,46,17,0.0 +22514,51,53,30,0.0 +22514,68,12.5,32,0.0 +22514,71,21.5,8,0.0 +22514,32,32,17,0.0 +22514,15,15.5,19,0.0 +22514,42,14,6,0.0 +22514,66,17,48,0.0 +22514,63,43.9,23,0.0 +22514,21,10,18,0.0 +22514,72,34.8,22,0.0 +22514,65,21.05,47,0.0 +22514,31,12.5,16,0.0 +22514,75,7.75,11,0.0 +22514,62,49.3,19,0.0 +22514,3,10,11,0.0 +22514,9,97,34,0.0 +22514,55,24,18,0.0 +22514,48,12.75,41,0.0 +22514,54,7.45,15,0.0 +22514,27,43.9,50,0.0 +22514,24,4.5,31,0.0 +22514,10,31,19,0.0 +22514,22,21,30,0.0 +22514,35,18,17,0.0 +22514,67,14,33,0.0 +22514,61,28.5,46,0.0 +22514,2,19,11,0.0 +22514,64,33.25,10,0.0 +22515,4,22,43,0.0 +22515,55,24,18,0.0 +22515,15,15.5,12,0.0 +22515,29,123.79,33,0.0 +22515,43,46,15,0.0 +22515,66,17,17,0.0 +22515,19,9.2,3,0.0 +22515,44,19.45,41,0.0 +22515,60,34,40,0.0 +22515,71,21.5,47,0.0 +22515,13,6,15,0.0 +22515,14,23.25,14,0.0 +22515,41,9.65,49,0.0 +22515,10,31,36,0.0 +22515,31,12.5,29,0.0 +22515,58,13.25,49,0.0 +22515,65,21.05,24,0.0 +22515,48,12.75,30,0.0 +22515,51,53,20,0.0 +22515,9,97,26,0.0 +22515,8,40,10,0.0 +22515,67,14,49,0.0 +22515,3,10,15,0.0 +22515,45,9.5,1,0.0 +22515,23,9,10,0.0 +22515,59,55,26,0.0 +22515,6,25,32,0.0 +22515,73,15,26,0.0 +22515,50,16.25,8,0.0 +22515,64,33.25,7,0.0 +22515,54,7.45,46,0.0 +22515,26,31.23,20,0.0 +22515,69,36,46,0.0 +22515,38,263.5,13,0.0 +22515,35,18,7,0.0 +22515,42,14,5,0.0 +22515,27,43.9,19,0.0 +22515,40,18.4,11,0.0 +22515,11,21,40,0.0 +22515,52,7,42,0.0 +22515,68,12.5,48,0.0 +22515,24,4.5,37,0.0 +22515,22,21,49,0.0 +22515,47,9.5,6,0.0 +22515,2,19,4,0.0 +22515,34,14,15,0.0 +22515,16,17.45,11,0.0 +22515,62,49.3,22,0.0 +22515,37,26,13,0.0 +22515,1,18,4,0.0 +22515,46,12,29,0.0 +22515,72,34.8,15,0.0 +22515,74,10,20,0.0 +22515,21,10,38,0.0 +22515,33,2.5,45,0.0 +22515,49,20,16,0.0 +22515,17,39,34,0.0 +22515,57,19.5,16,0.0 +22515,7,30,37,0.0 +22515,77,13,45,0.0 +22515,56,38,14,0.0 +22515,63,43.9,40,0.0 +22515,61,28.5,47,0.0 +22515,25,14,44,0.0 +22515,30,25.89,31,0.0 +22515,75,7.75,49,0.0 +22516,67,14,19,0.0 +22516,2,19,6,0.0 +22516,27,43.9,29,0.0 +22516,25,14,20,0.0 +22516,37,26,15,0.0 +22516,1,18,27,0.0 +22516,66,17,50,0.0 +22516,69,36,43,0.0 +22516,4,22,16,0.0 +22516,59,55,39,0.0 +22516,36,19,26,0.0 +22516,18,62.5,13,0.0 +22516,39,18,47,0.0 +22516,20,81,41,0.0 +22516,9,97,24,0.0 +22516,17,39,20,0.0 +22516,46,12,36,0.0 +22516,26,31.23,3,0.0 +22516,8,40,33,0.0 +22516,64,33.25,45,0.0 +22516,29,123.79,20,0.0 +22516,53,32.8,28,0.0 +22516,22,21,26,0.0 +22516,50,16.25,2,0.0 +22516,51,53,38,0.0 +22516,71,21.5,31,0.0 +22516,76,18,25,0.0 +22516,7,30,2,0.0 +22516,23,9,38,0.0 +22516,12,38,48,0.0 +22516,70,15,40,0.0 +22516,21,10,16,0.0 +22516,11,21,11,0.0 +22516,44,19.45,24,0.0 +22516,61,28.5,20,0.0 +22516,33,2.5,49,0.0 +22516,74,10,17,0.0 +22516,57,19.5,2,0.0 +22516,58,13.25,22,0.0 +22516,45,9.5,10,0.0 +22516,72,34.8,9,0.0 +22516,55,24,42,0.0 +22516,30,25.89,31,0.0 +22516,32,32,5,0.0 +22516,48,12.75,12,0.0 +22516,65,21.05,46,0.0 +22516,40,18.4,46,0.0 +22516,77,13,23,0.0 +22516,10,31,50,0.0 +22516,60,34,50,0.0 +22516,49,20,49,0.0 +22516,73,15,31,0.0 +22516,47,9.5,13,0.0 +22516,62,49.3,28,0.0 +22516,34,14,44,0.0 +22516,41,9.65,50,0.0 +22516,19,9.2,6,0.0 +22516,38,263.5,14,0.0 +22516,68,12.5,2,0.0 +22516,14,23.25,46,0.0 +22516,3,10,27,0.0 +22516,63,43.9,2,0.0 +22516,75,7.75,21,0.0 +22516,43,46,43,0.0 +22516,42,14,48,0.0 +22517,11,21,7,0.0 +22517,1,18,40,0.0 +22517,14,23.25,48,0.0 +22517,63,43.9,41,0.0 +22517,36,19,40,0.0 +22517,16,17.45,26,0.0 +22517,55,24,25,0.0 +22517,60,34,28,0.0 +22517,47,9.5,23,0.0 +22517,29,123.79,17,0.0 +22517,8,40,1,0.0 +22517,21,10,6,0.0 +22517,75,7.75,4,0.0 +22517,20,81,13,0.0 +22517,77,13,41,0.0 +22517,7,30,32,0.0 +22517,69,36,23,0.0 +22517,59,55,4,0.0 +22517,51,53,32,0.0 +22517,42,14,25,0.0 +22517,26,31.23,48,0.0 +22517,31,12.5,26,0.0 +22517,53,32.8,12,0.0 +22517,66,17,14,0.0 +22517,65,21.05,42,0.0 +22517,49,20,43,0.0 +22517,70,15,47,0.0 +22517,45,9.5,34,0.0 +22517,24,4.5,7,0.0 +22517,10,31,13,0.0 +22517,39,18,45,0.0 +22517,23,9,18,0.0 +22517,64,33.25,32,0.0 +22517,56,38,23,0.0 +22517,62,49.3,1,0.0 +22517,37,26,41,0.0 +22517,34,14,10,0.0 +22517,52,7,5,0.0 +22517,13,6,48,0.0 +22517,76,18,14,0.0 +22517,41,9.65,24,0.0 +22517,74,10,5,0.0 +22517,2,19,16,0.0 +22517,4,22,6,0.0 +22517,71,21.5,17,0.0 +22517,18,62.5,24,0.0 +22517,12,38,20,0.0 +22517,61,28.5,39,0.0 +22517,46,12,40,0.0 +22517,35,18,24,0.0 +22517,73,15,21,0.0 +22517,3,10,36,0.0 +22517,33,2.5,49,0.0 +22518,3,10,18,0.0 +22518,47,9.5,32,0.0 +22518,35,18,39,0.0 +22518,51,53,42,0.0 +22518,63,43.9,20,0.0 +22518,41,9.65,39,0.0 +22518,25,14,46,0.0 +22518,22,21,12,0.0 +22518,44,19.45,7,0.0 +22518,14,23.25,15,0.0 +22518,67,14,40,0.0 +22518,36,19,7,0.0 +22518,28,45.6,5,0.0 +22518,6,25,14,0.0 +22518,9,97,45,0.0 +22518,73,15,35,0.0 +22518,12,38,11,0.0 +22518,23,9,37,0.0 +22518,58,13.25,12,0.0 +22519,32,32,19,0.0 +22519,77,13,27,0.0 +22519,8,40,40,0.0 +22519,48,12.75,7,0.0 +22519,7,30,29,0.0 +22519,28,45.6,45,0.0 +22519,33,2.5,16,0.0 +22519,24,4.5,25,0.0 +22519,72,34.8,6,0.0 +22519,17,39,15,0.0 +22519,71,21.5,48,0.0 +22519,5,21.35,33,0.0 +22519,40,18.4,17,0.0 +22519,74,10,37,0.0 +22519,73,15,40,0.0 +22519,51,53,27,0.0 +22519,45,9.5,1,0.0 +22519,50,16.25,5,0.0 +22519,21,10,16,0.0 +22519,4,22,25,0.0 +22519,31,12.5,11,0.0 +22519,15,15.5,37,0.0 +22519,23,9,21,0.0 +22519,44,19.45,12,0.0 +22519,60,34,23,0.0 +22519,76,18,50,0.0 +22519,1,18,30,0.0 +22519,64,33.25,48,0.0 +22519,12,38,45,0.0 +22519,46,12,15,0.0 +22519,62,49.3,44,0.0 +22519,63,43.9,2,0.0 +22519,11,21,49,0.0 +22520,55,24,19,0.0 +22520,17,39,13,0.0 +22520,76,18,4,0.0 +22520,71,21.5,24,0.0 +22520,47,9.5,45,0.0 +22520,6,25,27,0.0 +22520,1,18,45,0.0 +22520,72,34.8,34,0.0 +22520,40,18.4,44,0.0 +22520,16,17.45,30,0.0 +22520,64,33.25,6,0.0 +22520,43,46,23,0.0 +22520,68,12.5,49,0.0 +22520,3,10,38,0.0 +22520,23,9,34,0.0 +22520,5,21.35,21,0.0 +22520,73,15,1,0.0 +22520,12,38,5,0.0 +22520,44,19.45,45,0.0 +22520,37,26,35,0.0 +22520,65,21.05,47,0.0 +22520,8,40,28,0.0 +22520,56,38,29,0.0 +22520,38,263.5,25,0.0 +22520,11,21,12,0.0 +22520,20,81,46,0.0 +22520,4,22,12,0.0 +22520,54,7.45,24,0.0 +22520,31,12.5,9,0.0 +22521,62,49.3,29,0.0 +22521,41,9.65,33,0.0 +22521,24,4.5,39,0.0 +22521,3,10,24,0.0 +22521,28,45.6,11,0.0 +22521,37,26,30,0.0 +22521,54,7.45,42,0.0 +22521,59,55,3,0.0 +22521,7,30,47,0.0 +22521,32,32,27,0.0 +22521,16,17.45,33,0.0 +22521,68,12.5,28,0.0 +22521,31,12.5,10,0.0 +22521,15,15.5,4,0.0 +22521,39,18,12,0.0 +22521,49,20,6,0.0 +22521,6,25,39,0.0 +22521,71,21.5,29,0.0 +22521,25,14,26,0.0 +22521,55,24,41,0.0 +22521,29,123.79,14,0.0 +22521,10,31,7,0.0 +22521,53,32.8,18,0.0 +22521,75,7.75,20,0.0 +22521,51,53,11,0.0 +22521,61,28.5,33,0.0 +22521,44,19.45,13,0.0 +22521,35,18,17,0.0 +22521,67,14,3,0.0 +22521,63,43.9,6,0.0 +22521,52,7,45,0.0 +22521,21,10,5,0.0 +22521,13,6,44,0.0 +22521,38,263.5,24,0.0 +22521,33,2.5,41,0.0 +22521,26,31.23,4,0.0 +22521,27,43.9,49,0.0 +22521,36,19,7,0.0 +22521,58,13.25,24,0.0 +22521,18,62.5,46,0.0 +22521,46,12,48,0.0 +22521,8,40,49,0.0 +22522,33,2.5,50,0.0 +22522,37,26,23,0.0 +22522,22,21,24,0.0 +22522,54,7.45,28,0.0 +22522,17,39,2,0.0 +22522,29,123.79,45,0.0 +22522,40,18.4,30,0.0 +22522,70,15,26,0.0 +22522,8,40,21,0.0 +22522,1,18,38,0.0 +22522,3,10,1,0.0 +22522,19,9.2,22,0.0 +22522,24,4.5,3,0.0 +22522,62,49.3,41,0.0 +22522,63,43.9,45,0.0 +22522,74,10,43,0.0 +22522,64,33.25,40,0.0 +22522,25,14,39,0.0 +22522,60,34,5,0.0 +22522,36,19,36,0.0 +22522,30,25.89,9,0.0 +22522,41,9.65,8,0.0 +22522,5,21.35,48,0.0 +22522,50,16.25,46,0.0 +22522,31,12.5,12,0.0 +22522,26,31.23,17,0.0 +22522,28,45.6,19,0.0 +22522,34,14,3,0.0 +22522,35,18,28,0.0 +22522,71,21.5,42,0.0 +22522,69,36,44,0.0 +22522,51,53,37,0.0 +22522,7,30,19,0.0 +22522,53,32.8,15,0.0 +22522,11,21,2,0.0 +22522,12,38,36,0.0 +22522,65,21.05,9,0.0 +22522,6,25,34,0.0 +22522,47,9.5,6,0.0 +22522,72,34.8,12,0.0 +22522,75,7.75,46,0.0 +22522,32,32,32,0.0 +22522,66,17,47,0.0 +22522,23,9,46,0.0 +22522,43,46,2,0.0 +22522,49,20,13,0.0 +22522,45,9.5,45,0.0 +22522,21,10,11,0.0 +22522,15,15.5,46,0.0 +22522,38,263.5,15,0.0 +22522,77,13,39,0.0 +22522,44,19.45,25,0.0 +22522,20,81,12,0.0 +22522,56,38,7,0.0 +22522,39,18,36,0.0 +22522,55,24,49,0.0 +22523,25,14,10,0.0 +22523,11,21,34,0.0 +22523,6,25,16,0.0 +22523,51,53,35,0.0 +22523,44,19.45,10,0.0 +22523,56,38,22,0.0 +22524,16,17.45,27,0.0 +22524,49,20,39,0.0 +22524,19,9.2,1,0.0 +22524,17,39,43,0.0 +22524,11,21,16,0.0 +22524,38,263.5,6,0.0 +22524,75,7.75,18,0.0 +22524,48,12.75,14,0.0 +22524,3,10,33,0.0 +22524,72,34.8,18,0.0 +22524,57,19.5,41,0.0 +22524,29,123.79,6,0.0 +22524,55,24,22,0.0 +22524,63,43.9,18,0.0 +22525,4,22,50,0.0 +22525,20,81,48,0.0 +22525,68,12.5,29,0.0 +22525,17,39,17,0.0 +22525,59,55,16,0.0 +22525,8,40,49,0.0 +22525,33,2.5,9,0.0 +22525,23,9,7,0.0 +22525,6,25,40,0.0 +22525,39,18,26,0.0 +22525,24,4.5,34,0.0 +22525,1,18,24,0.0 +22525,40,18.4,47,0.0 +22525,41,9.65,21,0.0 +22525,38,263.5,42,0.0 +22525,7,30,36,0.0 +22525,73,15,30,0.0 +22525,16,17.45,31,0.0 +22525,74,10,18,0.0 +22525,61,28.5,50,0.0 +22525,47,9.5,4,0.0 +22525,25,14,8,0.0 +22525,60,34,23,0.0 +22525,72,34.8,2,0.0 +22525,64,33.25,7,0.0 +22525,26,31.23,5,0.0 +22526,29,123.79,12,0.0 +22526,12,38,21,0.0 +22526,71,21.5,11,0.0 +22526,39,18,23,0.0 +22526,75,7.75,32,0.0 +22526,59,55,33,0.0 +22526,3,10,46,0.0 +22526,55,24,46,0.0 +22526,70,15,35,0.0 +22526,25,14,47,0.0 +22526,18,62.5,4,0.0 +22526,67,14,24,0.0 +22526,36,19,3,0.0 +22526,51,53,31,0.0 +22526,2,19,33,0.0 +22526,37,26,49,0.0 +22526,22,21,19,0.0 +22526,41,9.65,3,0.0 +22526,20,81,8,0.0 +22526,50,16.25,14,0.0 +22526,72,34.8,12,0.0 +22526,31,12.5,44,0.0 +22526,62,49.3,40,0.0 +22526,64,33.25,18,0.0 +22526,45,9.5,10,0.0 +22526,77,13,44,0.0 +22526,44,19.45,19,0.0 +22526,32,32,15,0.0 +22526,23,9,30,0.0 +22526,52,7,30,0.0 +22526,40,18.4,7,0.0 +22526,14,23.25,7,0.0 +22526,8,40,44,0.0 +22526,26,31.23,18,0.0 +22526,13,6,2,0.0 +22526,27,43.9,11,0.0 +22526,63,43.9,7,0.0 +22526,49,20,49,0.0 +22526,61,28.5,2,0.0 +22526,30,25.89,17,0.0 +22526,58,13.25,25,0.0 +22526,74,10,6,0.0 +22526,68,12.5,11,0.0 +22526,76,18,30,0.0 +22526,56,38,8,0.0 +22526,42,14,50,0.0 +22526,69,36,24,0.0 +22527,17,39,6,0.0 +22527,24,4.5,25,0.0 +22527,74,10,13,0.0 +22527,58,13.25,35,0.0 +22527,68,12.5,41,0.0 +22527,72,34.8,9,0.0 +22527,28,45.6,37,0.0 +22527,59,55,10,0.0 +22527,25,14,29,0.0 +22527,26,31.23,38,0.0 +22527,71,21.5,15,0.0 +22527,46,12,2,0.0 +22527,7,30,35,0.0 +22527,49,20,28,0.0 +22527,40,18.4,14,0.0 +22527,29,123.79,49,0.0 +22527,66,17,7,0.0 +22527,41,9.65,47,0.0 +22527,11,21,34,0.0 +22527,51,53,19,0.0 +22527,70,15,32,0.0 +22527,1,18,26,0.0 +22527,19,9.2,19,0.0 +22527,15,15.5,25,0.0 +22527,13,6,1,0.0 +22527,53,32.8,48,0.0 +22527,8,40,9,0.0 +22527,62,49.3,24,0.0 +22527,67,14,2,0.0 +22527,14,23.25,24,0.0 +22527,32,32,19,0.0 +22527,61,28.5,29,0.0 +22527,34,14,14,0.0 +22527,30,25.89,1,0.0 +22527,10,31,1,0.0 +22527,5,21.35,43,0.0 +22527,44,19.45,48,0.0 +22527,31,12.5,1,0.0 +22527,63,43.9,13,0.0 +22527,35,18,32,0.0 +22527,18,62.5,39,0.0 +22527,36,19,32,0.0 +22527,55,24,27,0.0 +22527,56,38,34,0.0 +22527,20,81,10,0.0 +22527,6,25,15,0.0 +22527,54,7.45,1,0.0 +22527,73,15,7,0.0 +22527,43,46,18,0.0 +22527,33,2.5,42,0.0 +22527,52,7,29,0.0 +22527,22,21,11,0.0 +22527,69,36,7,0.0 +22527,3,10,42,0.0 +22527,9,97,36,0.0 +22527,60,34,43,0.0 +22527,57,19.5,2,0.0 +22527,27,43.9,34,0.0 +22527,12,38,34,0.0 +22527,2,19,31,0.0 +22527,16,17.45,46,0.0 +22527,38,263.5,47,0.0 +22527,21,10,40,0.0 +22527,50,16.25,17,0.0 +22527,4,22,19,0.0 +22527,48,12.75,37,0.0 +22527,77,13,26,0.0 +22527,39,18,38,0.0 +22527,23,9,3,0.0 +22527,64,33.25,35,0.0 +22527,42,14,15,0.0 +22527,75,7.75,5,0.0 +22527,47,9.5,4,0.0 +22527,76,18,37,0.0 +22527,45,9.5,31,0.0 +22527,37,26,27,0.0 +22528,2,19,13,0.0 +22528,41,9.65,14,0.0 +22528,56,38,24,0.0 +22528,42,14,10,0.0 +22528,27,43.9,17,0.0 +22528,29,123.79,18,0.0 +22528,3,10,41,0.0 +22528,36,19,14,0.0 +22528,15,15.5,6,0.0 +22528,60,34,2,0.0 +22528,76,18,29,0.0 +22528,17,39,40,0.0 +22528,24,4.5,2,0.0 +22528,9,97,48,0.0 +22528,57,19.5,25,0.0 +22528,11,21,9,0.0 +22528,39,18,39,0.0 +22528,59,55,11,0.0 +22529,27,43.9,33,0.0 +22529,67,14,16,0.0 +22529,3,10,17,0.0 +22529,49,20,38,0.0 +22529,5,21.35,15,0.0 +22529,25,14,8,0.0 +22529,64,33.25,25,0.0 +22529,37,26,38,0.0 +22529,20,81,4,0.0 +22529,70,15,49,0.0 +22529,11,21,40,0.0 +22529,16,17.45,14,0.0 +22529,56,38,42,0.0 +22529,7,30,19,0.0 +22529,23,9,40,0.0 +22529,52,7,13,0.0 +22529,24,4.5,20,0.0 +22529,69,36,49,0.0 +22529,59,55,33,0.0 +22529,65,21.05,27,0.0 +22529,58,13.25,1,0.0 +22529,28,45.6,48,0.0 +22529,29,123.79,8,0.0 +22529,2,19,22,0.0 +22529,40,18.4,34,0.0 +22529,73,15,43,0.0 +22529,44,19.45,36,0.0 +22529,14,23.25,43,0.0 +22529,31,12.5,25,0.0 +22529,41,9.65,47,0.0 +22529,71,21.5,45,0.0 +22529,9,97,49,0.0 +22529,17,39,26,0.0 +22529,15,15.5,9,0.0 +22529,57,19.5,39,0.0 +22529,75,7.75,42,0.0 +22529,21,10,36,0.0 +22529,72,34.8,8,0.0 +22529,45,9.5,42,0.0 +22529,74,10,29,0.0 +22529,60,34,38,0.0 +22529,77,13,27,0.0 +22529,51,53,16,0.0 +22529,43,46,30,0.0 +22529,35,18,6,0.0 +22529,22,21,47,0.0 +22529,55,24,3,0.0 +22529,48,12.75,19,0.0 +22529,76,18,37,0.0 +22529,50,16.25,19,0.0 +22530,38,263.5,2,0.0 +22530,68,12.5,49,0.0 +22530,21,10,4,0.0 +22530,33,2.5,38,0.0 +22530,55,24,26,0.0 +22530,54,7.45,32,0.0 +22530,10,31,48,0.0 +22530,59,55,44,0.0 +22530,7,30,3,0.0 +22530,51,53,30,0.0 +22530,11,21,10,0.0 +22530,57,19.5,33,0.0 +22530,12,38,9,0.0 +22530,20,81,14,0.0 +22530,48,12.75,44,0.0 +22530,63,43.9,48,0.0 +22530,50,16.25,22,0.0 +22530,47,9.5,9,0.0 +22530,60,34,31,0.0 +22530,41,9.65,29,0.0 +22530,64,33.25,31,0.0 +22530,58,13.25,17,0.0 +22530,2,19,21,0.0 +22530,61,28.5,17,0.0 +22530,72,34.8,30,0.0 +22530,52,7,30,0.0 +22530,16,17.45,24,0.0 +22530,46,12,34,0.0 +22530,26,31.23,1,0.0 +22530,8,40,42,0.0 +22530,28,45.6,10,0.0 +22530,23,9,28,0.0 +22530,34,14,30,0.0 +22530,22,21,34,0.0 +22530,36,19,1,0.0 +22530,45,9.5,20,0.0 +22530,70,15,36,0.0 +22530,40,18.4,37,0.0 +22530,37,26,30,0.0 +22530,73,15,2,0.0 +22530,66,17,29,0.0 +22530,25,14,35,0.0 +22530,17,39,16,0.0 +22530,4,22,39,0.0 +22530,53,32.8,33,0.0 +22531,77,13,31,0.0 +22531,67,14,30,0.0 +22531,4,22,22,0.0 +22531,24,4.5,5,0.0 +22531,7,30,19,0.0 +22531,63,43.9,28,0.0 +22531,15,15.5,26,0.0 +22531,31,12.5,31,0.0 +22531,62,49.3,9,0.0 +22531,65,21.05,28,0.0 +22531,76,18,30,0.0 +22531,68,12.5,7,0.0 +22531,13,6,38,0.0 +22531,12,38,16,0.0 +22531,26,31.23,31,0.0 +22531,2,19,4,0.0 +22531,60,34,39,0.0 +22531,54,7.45,24,0.0 +22531,59,55,34,0.0 +22531,38,263.5,12,0.0 +22531,56,38,45,0.0 +22531,51,53,11,0.0 +22531,30,25.89,49,0.0 +22531,61,28.5,17,0.0 +22531,69,36,14,0.0 +22531,34,14,49,0.0 +22531,44,19.45,34,0.0 +22531,46,12,9,0.0 +22531,45,9.5,8,0.0 +22531,52,7,24,0.0 +22531,74,10,16,0.0 +22531,48,12.75,16,0.0 +22531,73,15,12,0.0 +22531,27,43.9,29,0.0 +22531,10,31,48,0.0 +22531,33,2.5,28,0.0 +22531,19,9.2,6,0.0 +22531,55,24,40,0.0 +22531,70,15,31,0.0 +22531,43,46,46,0.0 +22531,20,81,23,0.0 +22531,53,32.8,11,0.0 +22531,49,20,42,0.0 +22531,41,9.65,30,0.0 +22531,8,40,18,0.0 +22531,11,21,44,0.0 +22531,64,33.25,41,0.0 +22531,37,26,18,0.0 +22531,75,7.75,25,0.0 +22531,66,17,50,0.0 +22531,1,18,12,0.0 +22531,3,10,26,0.0 +22531,16,17.45,8,0.0 +22531,71,21.5,2,0.0 +22531,28,45.6,39,0.0 +22531,35,18,50,0.0 +22531,58,13.25,29,0.0 +22531,18,62.5,24,0.0 +22531,29,123.79,50,0.0 +22532,75,7.75,11,0.0 +22532,15,15.5,39,0.0 +22532,60,34,3,0.0 +22532,49,20,18,0.0 +22532,51,53,1,0.0 +22532,1,18,7,0.0 +22532,32,32,2,0.0 +22532,29,123.79,46,0.0 +22532,9,97,43,0.0 +22532,33,2.5,24,0.0 +22532,71,21.5,17,0.0 +22532,27,43.9,27,0.0 +22532,68,12.5,45,0.0 +22532,74,10,47,0.0 +22532,26,31.23,2,0.0 +22532,67,14,40,0.0 +22532,36,19,16,0.0 +22532,72,34.8,23,0.0 +22532,37,26,8,0.0 +22532,17,39,33,0.0 +22532,58,13.25,22,0.0 +22532,43,46,42,0.0 +22532,14,23.25,26,0.0 +22532,2,19,40,0.0 +22532,28,45.6,1,0.0 +22532,65,21.05,39,0.0 +22532,22,21,35,0.0 +22532,23,9,37,0.0 +22532,12,38,24,0.0 +22532,10,31,2,0.0 +22532,47,9.5,39,0.0 +22532,35,18,31,0.0 +22532,19,9.2,46,0.0 +22532,52,7,33,0.0 +22532,77,13,43,0.0 +22532,25,14,39,0.0 +22532,66,17,24,0.0 +22532,61,28.5,48,0.0 +22532,45,9.5,20,0.0 +22532,50,16.25,27,0.0 +22532,70,15,44,0.0 +22532,59,55,8,0.0 +22532,39,18,28,0.0 +22532,16,17.45,1,0.0 +22532,21,10,8,0.0 +22533,50,16.25,39,0.0 +22533,25,14,37,0.0 +22533,39,18,37,0.0 +22533,48,12.75,18,0.0 +22533,17,39,8,0.0 +22533,30,25.89,10,0.0 +22533,37,26,14,0.0 +22533,43,46,42,0.0 +22533,34,14,9,0.0 +22533,14,23.25,26,0.0 +22533,3,10,31,0.0 +22533,60,34,6,0.0 +22533,68,12.5,28,0.0 +22533,10,31,21,0.0 +22533,31,12.5,32,0.0 +22533,74,10,12,0.0 +22533,49,20,30,0.0 +22534,8,40,6,0.0 +22534,21,10,6,0.0 +22534,55,24,9,0.0 +22534,25,14,6,0.0 +22534,3,10,17,0.0 +22534,71,21.5,48,0.0 +22534,44,19.45,30,0.0 +22534,47,9.5,39,0.0 +22534,77,13,35,0.0 +22534,41,9.65,38,0.0 +22534,37,26,2,0.0 +22534,27,43.9,42,0.0 +22534,13,6,4,0.0 +22534,64,33.25,26,0.0 +22534,35,18,22,0.0 +22534,9,97,7,0.0 +22534,34,14,37,0.0 +22534,52,7,27,0.0 +22534,60,34,11,0.0 +22534,12,38,26,0.0 +22534,30,25.89,37,0.0 +22534,36,19,26,0.0 +22534,33,2.5,11,0.0 +22534,50,16.25,20,0.0 +22534,29,123.79,48,0.0 +22534,11,21,19,0.0 +22534,74,10,45,0.0 +22534,63,43.9,36,0.0 +22534,17,39,42,0.0 +22534,1,18,20,0.0 +22534,59,55,31,0.0 +22534,46,12,11,0.0 +22534,56,38,43,0.0 +22534,42,14,50,0.0 +22534,58,13.25,47,0.0 +22534,23,9,50,0.0 +22534,32,32,10,0.0 +22534,16,17.45,16,0.0 +22534,2,19,13,0.0 +22534,31,12.5,25,0.0 +22535,1,18,25,0.0 +22535,3,10,33,0.0 +22535,43,46,48,0.0 +22535,41,9.65,24,0.0 +22536,16,17.45,42,0.0 +22536,13,6,18,0.0 +22536,61,28.5,20,0.0 +22536,26,31.23,1,0.0 +22536,50,16.25,22,0.0 +22536,69,36,33,0.0 +22536,2,19,44,0.0 +22536,9,97,8,0.0 +22536,5,21.35,18,0.0 +22536,37,26,35,0.0 +22536,36,19,2,0.0 +22536,77,13,39,0.0 +22536,28,45.6,27,0.0 +22536,56,38,35,0.0 +22536,4,22,47,0.0 +22536,29,123.79,41,0.0 +22536,54,7.45,2,0.0 +22536,33,2.5,33,0.0 +22536,51,53,8,0.0 +22536,3,10,25,0.0 +22536,52,7,49,0.0 +22536,76,18,7,0.0 +22536,27,43.9,24,0.0 +22536,15,15.5,2,0.0 +22536,53,32.8,37,0.0 +22536,17,39,3,0.0 +22537,62,49.3,6,0.0 +22537,52,7,6,0.0 +22537,48,12.75,36,0.0 +22537,1,18,32,0.0 +22537,61,28.5,5,0.0 +22537,43,46,7,0.0 +22538,1,18,37,0.0 +22538,29,123.79,23,0.0 +22538,50,16.25,24,0.0 +22538,39,18,14,0.0 +22538,37,26,40,0.0 +22538,6,25,25,0.0 +22538,54,7.45,47,0.0 +22538,4,22,9,0.0 +22538,21,10,39,0.0 +22538,32,32,44,0.0 +22538,49,20,14,0.0 +22538,57,19.5,17,0.0 +22538,3,10,7,0.0 +22538,47,9.5,33,0.0 +22538,27,43.9,16,0.0 +22539,71,21.5,20,0.0 +22539,16,17.45,41,0.0 +22539,43,46,10,0.0 +22539,19,9.2,29,0.0 +22539,41,9.65,29,0.0 +22539,33,2.5,33,0.0 +22539,18,62.5,3,0.0 +22539,1,18,15,0.0 +22539,65,21.05,17,0.0 +22539,14,23.25,5,0.0 +22539,67,14,22,0.0 +22539,29,123.79,48,0.0 +22539,51,53,23,0.0 +22539,15,15.5,43,0.0 +22539,40,18.4,31,0.0 +22539,37,26,31,0.0 +22539,42,14,34,0.0 +22539,75,7.75,11,0.0 +22539,46,12,38,0.0 +22539,70,15,46,0.0 +22539,24,4.5,36,0.0 +22539,53,32.8,33,0.0 +22539,77,13,19,0.0 +22539,57,19.5,47,0.0 +22539,73,15,12,0.0 +22539,32,32,23,0.0 +22540,20,81,38,0.0 +22540,1,18,44,0.0 +22540,43,46,6,0.0 +22540,28,45.6,39,0.0 +22540,17,39,2,0.0 +22540,44,19.45,47,0.0 +22540,68,12.5,43,0.0 +22540,6,25,3,0.0 +22540,11,21,24,0.0 +22540,75,7.75,40,0.0 +22540,59,55,43,0.0 +22540,14,23.25,12,0.0 +22540,22,21,18,0.0 +22540,4,22,49,0.0 +22540,46,12,26,0.0 +22540,39,18,3,0.0 +22540,76,18,10,0.0 +22540,64,33.25,9,0.0 +22540,63,43.9,24,0.0 +22540,30,25.89,14,0.0 +22540,37,26,24,0.0 +22540,36,19,5,0.0 +22540,41,9.65,43,0.0 +22540,21,10,10,0.0 +22540,32,32,3,0.0 +22540,8,40,37,0.0 +22540,67,14,5,0.0 +22540,49,20,1,0.0 +22540,58,13.25,48,0.0 +22540,9,97,3,0.0 +22540,40,18.4,5,0.0 +22540,51,53,33,0.0 +22540,53,32.8,48,0.0 +22540,34,14,28,0.0 +22540,35,18,15,0.0 +22540,7,30,38,0.0 +22541,23,9,23,0.0 +22541,17,39,12,0.0 +22541,55,24,33,0.0 +22541,21,10,40,0.0 +22541,48,12.75,46,0.0 +22541,39,18,7,0.0 +22541,13,6,44,0.0 +22541,44,19.45,3,0.0 +22541,42,14,38,0.0 +22541,76,18,46,0.0 +22541,71,21.5,5,0.0 +22541,60,34,37,0.0 +22541,25,14,6,0.0 +22541,30,25.89,31,0.0 +22541,47,9.5,32,0.0 +22541,62,49.3,6,0.0 +22541,69,36,32,0.0 +22541,35,18,45,0.0 +22541,10,31,12,0.0 +22541,66,17,34,0.0 +22541,1,18,9,0.0 +22541,50,16.25,38,0.0 +22541,7,30,28,0.0 +22541,9,97,31,0.0 +22541,51,53,16,0.0 +22541,52,7,33,0.0 +22541,49,20,1,0.0 +22541,43,46,15,0.0 +22541,40,18.4,21,0.0 +22541,64,33.25,6,0.0 +22541,70,15,37,0.0 +22541,59,55,45,0.0 +22541,34,14,49,0.0 +22542,7,30,35,0.0 +22542,24,4.5,13,0.0 +22542,46,12,39,0.0 +22542,31,12.5,13,0.0 +22542,36,19,33,0.0 +22542,2,19,38,0.0 +22542,42,14,33,0.0 +22542,58,13.25,27,0.0 +22542,53,32.8,36,0.0 +22542,26,31.23,42,0.0 +22542,16,17.45,50,0.0 +22542,48,12.75,37,0.0 +22542,64,33.25,38,0.0 +22542,47,9.5,13,0.0 +22543,21,10,10,0.0 +22543,10,31,41,0.0 +22543,53,32.8,23,0.0 +22543,18,62.5,21,0.0 +22543,3,10,27,0.0 +22543,58,13.25,13,0.0 +22543,66,17,12,0.0 +22543,32,32,48,0.0 +22543,64,33.25,6,0.0 +22543,11,21,28,0.0 +22543,41,9.65,14,0.0 +22543,9,97,4,0.0 +22543,27,43.9,17,0.0 +22543,1,18,3,0.0 +22543,43,46,11,0.0 +22543,28,45.6,40,0.0 +22543,56,38,33,0.0 +22543,35,18,49,0.0 +22544,17,39,33,0.0 +22544,56,38,34,0.0 +22544,28,45.6,20,0.0 +22544,75,7.75,16,0.0 +22544,13,6,41,0.0 +22544,35,18,42,0.0 +22544,21,10,49,0.0 +22544,77,13,35,0.0 +22544,33,2.5,27,0.0 +22544,51,53,42,0.0 +22544,71,21.5,21,0.0 +22544,48,12.75,19,0.0 +22544,6,25,24,0.0 +22544,53,32.8,18,0.0 +22544,30,25.89,5,0.0 +22544,76,18,1,0.0 +22544,31,12.5,15,0.0 +22544,60,34,44,0.0 +22544,43,46,11,0.0 +22544,25,14,40,0.0 +22544,19,9.2,9,0.0 +22544,63,43.9,9,0.0 +22544,34,14,18,0.0 +22544,68,12.5,25,0.0 +22544,73,15,20,0.0 +22544,8,40,14,0.0 +22544,9,97,18,0.0 +22544,55,24,29,0.0 +22544,32,32,36,0.0 +22544,2,19,47,0.0 +22544,7,30,5,0.0 +22544,38,263.5,19,0.0 +22544,14,23.25,39,0.0 +22544,3,10,19,0.0 +22544,22,21,28,0.0 +22544,40,18.4,28,0.0 +22544,45,9.5,30,0.0 +22544,11,21,28,0.0 +22544,20,81,7,0.0 +22544,49,20,13,0.0 +22544,44,19.45,2,0.0 +22544,41,9.65,23,0.0 +22545,41,9.65,37,0.0 +22545,50,16.25,24,0.0 +22545,75,7.75,41,0.0 +22545,5,21.35,49,0.0 +22545,32,32,50,0.0 +22545,77,13,49,0.0 +22545,76,18,18,0.0 +22545,54,7.45,2,0.0 +22545,28,45.6,17,0.0 +22545,59,55,45,0.0 +22545,73,15,28,0.0 +22545,35,18,23,0.0 +22545,33,2.5,25,0.0 +22545,39,18,5,0.0 +22545,49,20,48,0.0 +22545,7,30,45,0.0 +22545,67,14,44,0.0 +22545,16,17.45,21,0.0 +22545,70,15,21,0.0 +22545,64,33.25,29,0.0 +22545,61,28.5,41,0.0 +22545,37,26,6,0.0 +22545,52,7,19,0.0 +22545,3,10,3,0.0 +22545,72,34.8,31,0.0 +22545,56,38,38,0.0 +22545,21,10,41,0.0 +22545,22,21,32,0.0 +22545,15,15.5,46,0.0 +22545,24,4.5,17,0.0 +22545,17,39,34,0.0 +22545,20,81,28,0.0 +22545,6,25,1,0.0 +22545,31,12.5,19,0.0 +22545,44,19.45,25,0.0 +22545,55,24,43,0.0 +22545,71,21.5,23,0.0 +22545,26,31.23,31,0.0 +22545,18,62.5,41,0.0 +22545,62,49.3,13,0.0 +22545,10,31,25,0.0 +22545,48,12.75,31,0.0 +22545,23,9,45,0.0 +22545,66,17,22,0.0 +22545,51,53,36,0.0 +22546,68,12.5,35,0.0 +22546,16,17.45,2,0.0 +22546,7,30,2,0.0 +22547,24,4.5,26,0.0 +22547,40,18.4,26,0.0 +22547,27,43.9,37,0.0 +22547,1,18,8,0.0 +22547,25,14,41,0.0 +22547,26,31.23,40,0.0 +22547,7,30,15,0.0 +22547,15,15.5,49,0.0 +22547,14,23.25,17,0.0 +22547,21,10,48,0.0 +22547,11,21,27,0.0 +22547,3,10,9,0.0 +22547,51,53,4,0.0 +22547,64,33.25,44,0.0 +22548,43,46,17,0.0 +22548,50,16.25,33,0.0 +22548,71,21.5,2,0.0 +22548,18,62.5,16,0.0 +22548,74,10,37,0.0 +22548,1,18,18,0.0 +22548,16,17.45,27,0.0 +22548,22,21,10,0.0 +22548,15,15.5,39,0.0 +22548,32,32,4,0.0 +22548,49,20,29,0.0 +22549,52,7,29,0.0 +22549,34,14,12,0.0 +22549,39,18,22,0.0 +22549,6,25,11,0.0 +22549,41,9.65,5,0.0 +22549,76,18,50,0.0 +22549,65,21.05,8,0.0 +22549,74,10,42,0.0 +22549,29,123.79,8,0.0 +22549,8,40,37,0.0 +22549,71,21.5,6,0.0 +22549,12,38,48,0.0 +22549,15,15.5,33,0.0 +22549,22,21,9,0.0 +22549,77,13,22,0.0 +22549,14,23.25,19,0.0 +22549,56,38,7,0.0 +22549,58,13.25,15,0.0 +22549,59,55,38,0.0 +22549,38,263.5,37,0.0 +22549,54,7.45,9,0.0 +22549,70,15,8,0.0 +22549,51,53,17,0.0 +22549,60,34,42,0.0 +22549,49,20,10,0.0 +22549,5,21.35,10,0.0 +22549,64,33.25,28,0.0 +22549,57,19.5,31,0.0 +22549,7,30,22,0.0 +22549,75,7.75,5,0.0 +22549,19,9.2,20,0.0 +22549,1,18,6,0.0 +22549,67,14,43,0.0 +22549,63,43.9,22,0.0 +22549,72,34.8,32,0.0 +22549,62,49.3,49,0.0 +22549,68,12.5,33,0.0 +22549,3,10,44,0.0 +22549,50,16.25,47,0.0 +22549,37,26,19,0.0 +22549,55,24,1,0.0 +22549,42,14,49,0.0 +22550,59,55,50,0.0 +22550,64,33.25,8,0.0 +22550,74,10,1,0.0 +22550,66,17,26,0.0 +22550,48,12.75,17,0.0 +22550,1,18,39,0.0 +22550,61,28.5,45,0.0 +22550,73,15,11,0.0 +22550,34,14,5,0.0 +22550,75,7.75,41,0.0 +22550,42,14,37,0.0 +22550,38,263.5,31,0.0 +22550,63,43.9,26,0.0 +22550,6,25,24,0.0 +22550,29,123.79,24,0.0 +22550,21,10,9,0.0 +22550,20,81,32,0.0 +22550,18,62.5,38,0.0 +22550,46,12,40,0.0 +22550,36,19,45,0.0 +22550,50,16.25,33,0.0 +22550,69,36,2,0.0 +22550,55,24,10,0.0 +22550,3,10,25,0.0 +22550,28,45.6,38,0.0 +22550,47,9.5,12,0.0 +22550,54,7.45,38,0.0 +22550,5,21.35,40,0.0 +22550,68,12.5,30,0.0 +22550,41,9.65,41,0.0 +22550,45,9.5,41,0.0 +22550,30,25.89,49,0.0 +22550,16,17.45,21,0.0 +22550,32,32,29,0.0 +22550,76,18,32,0.0 +22550,2,19,46,0.0 +22550,14,23.25,22,0.0 +22550,71,21.5,30,0.0 +22550,22,21,48,0.0 +22550,43,46,49,0.0 +22550,35,18,36,0.0 +22550,70,15,18,0.0 +22550,53,32.8,2,0.0 +22550,52,7,12,0.0 +22550,44,19.45,42,0.0 +22550,12,38,24,0.0 +22550,33,2.5,5,0.0 +22550,10,31,26,0.0 +22550,49,20,4,0.0 +22550,11,21,41,0.0 +22550,60,34,36,0.0 +22550,67,14,29,0.0 +22550,25,14,23,0.0 +22550,27,43.9,3,0.0 +22550,26,31.23,33,0.0 +22550,39,18,12,0.0 +22550,31,12.5,35,0.0 +22550,72,34.8,25,0.0 +22550,13,6,1,0.0 +22550,19,9.2,36,0.0 +22551,4,22,20,0.0 +22551,58,13.25,36,0.0 +22551,16,17.45,49,0.0 +22551,38,263.5,17,0.0 +22551,8,40,25,0.0 +22551,2,19,33,0.0 +22551,29,123.79,39,0.0 +22551,66,17,39,0.0 +22551,45,9.5,27,0.0 +22551,10,31,43,0.0 +22551,75,7.75,44,0.0 +22551,50,16.25,17,0.0 +22551,53,32.8,2,0.0 +22551,41,9.65,35,0.0 +22551,22,21,6,0.0 +22551,44,19.45,14,0.0 +22551,19,9.2,46,0.0 +22551,64,33.25,17,0.0 +22551,28,45.6,36,0.0 +22551,71,21.5,42,0.0 +22551,47,9.5,15,0.0 +22552,10,31,4,0.0 +22552,61,28.5,11,0.0 +22552,53,32.8,22,0.0 +22552,9,97,18,0.0 +22552,73,15,20,0.0 +22552,22,21,27,0.0 +22552,45,9.5,30,0.0 +22552,37,26,40,0.0 +22552,3,10,22,0.0 +22552,31,12.5,45,0.0 +22552,63,43.9,2,0.0 +22552,62,49.3,35,0.0 +22552,70,15,49,0.0 +22552,42,14,31,0.0 +22552,28,45.6,48,0.0 +22552,75,7.75,10,0.0 +22552,39,18,5,0.0 +22552,13,6,14,0.0 +22552,66,17,20,0.0 +22552,60,34,12,0.0 +22552,77,13,29,0.0 +22552,29,123.79,7,0.0 +22552,49,20,41,0.0 +22552,64,33.25,32,0.0 +22552,18,62.5,47,0.0 +22552,32,32,10,0.0 +22552,33,2.5,11,0.0 +22552,76,18,26,0.0 +22552,8,40,46,0.0 +22552,6,25,45,0.0 +22552,59,55,15,0.0 +22552,40,18.4,24,0.0 +22552,48,12.75,32,0.0 +22552,17,39,12,0.0 +22552,12,38,12,0.0 +22552,26,31.23,22,0.0 +22552,34,14,26,0.0 +22552,27,43.9,26,0.0 +22552,44,19.45,43,0.0 +22552,68,12.5,33,0.0 +22552,24,4.5,2,0.0 +22552,57,19.5,13,0.0 +22552,7,30,35,0.0 +22552,14,23.25,11,0.0 +22552,23,9,4,0.0 +22552,30,25.89,14,0.0 +22552,46,12,39,0.0 +22552,1,18,44,0.0 +22552,56,38,4,0.0 +22552,72,34.8,4,0.0 +22552,74,10,17,0.0 +22552,4,22,2,0.0 +22552,20,81,24,0.0 +22552,67,14,23,0.0 +22552,35,18,8,0.0 +22552,52,7,4,0.0 +22552,43,46,47,0.0 +22552,21,10,11,0.0 +22552,51,53,4,0.0 +22552,41,9.65,5,0.0 +22552,2,19,16,0.0 +22552,54,7.45,10,0.0 +22552,58,13.25,13,0.0 +22552,5,21.35,46,0.0 +22552,16,17.45,40,0.0 +22552,15,15.5,25,0.0 +22552,19,9.2,34,0.0 +22553,10,31,12,0.0 +22553,56,38,28,0.0 +22553,47,9.5,37,0.0 +22553,58,13.25,40,0.0 +22553,49,20,27,0.0 +22553,21,10,45,0.0 +22553,65,21.05,4,0.0 +22554,29,123.79,48,0.0 +22554,12,38,9,0.0 +22554,54,7.45,6,0.0 +22554,36,19,27,0.0 +22554,22,21,44,0.0 +22554,38,263.5,48,0.0 +22554,66,17,47,0.0 +22554,49,20,36,0.0 +22554,46,12,39,0.0 +22554,25,14,38,0.0 +22554,21,10,38,0.0 +22554,24,4.5,42,0.0 +22554,34,14,19,0.0 +22554,45,9.5,9,0.0 +22554,70,15,14,0.0 +22554,13,6,4,0.0 +22554,35,18,22,0.0 +22554,20,81,10,0.0 +22554,43,46,9,0.0 +22554,62,49.3,12,0.0 +22554,58,13.25,39,0.0 +22554,1,18,19,0.0 +22554,8,40,27,0.0 +22554,30,25.89,2,0.0 +22554,31,12.5,9,0.0 +22554,51,53,11,0.0 +22554,32,32,37,0.0 +22554,10,31,42,0.0 +22554,60,34,45,0.0 +22554,61,28.5,27,0.0 +22554,5,21.35,8,0.0 +22554,76,18,39,0.0 +22554,40,18.4,4,0.0 +22554,15,15.5,50,0.0 +22555,68,12.5,40,0.0 +22555,12,38,28,0.0 +22555,39,18,5,0.0 +22555,25,14,42,0.0 +22555,46,12,4,0.0 +22555,45,9.5,30,0.0 +22555,2,19,37,0.0 +22555,38,263.5,31,0.0 +22555,15,15.5,3,0.0 +22555,5,21.35,22,0.0 +22555,6,25,43,0.0 +22555,30,25.89,31,0.0 +22555,56,38,35,0.0 +22555,16,17.45,44,0.0 +22555,20,81,26,0.0 +22555,55,24,45,0.0 +22555,31,12.5,26,0.0 +22555,70,15,44,0.0 +22555,47,9.5,16,0.0 +22555,58,13.25,18,0.0 +22555,28,45.6,23,0.0 +22555,54,7.45,31,0.0 +22555,34,14,34,0.0 +22555,61,28.5,40,0.0 +22555,63,43.9,10,0.0 +22555,24,4.5,13,0.0 +22555,29,123.79,6,0.0 +22555,44,19.45,21,0.0 +22555,26,31.23,7,0.0 +22555,48,12.75,24,0.0 +22555,14,23.25,25,0.0 +22555,42,14,38,0.0 +22555,40,18.4,37,0.0 +22555,23,9,31,0.0 +22555,77,13,30,0.0 +22555,50,16.25,15,0.0 +22555,18,62.5,5,0.0 +22555,8,40,30,0.0 +22555,37,26,10,0.0 +22555,36,19,15,0.0 +22555,62,49.3,43,0.0 +22555,41,9.65,5,0.0 +22555,60,34,44,0.0 +22555,51,53,41,0.0 +22555,67,14,13,0.0 +22555,53,32.8,46,0.0 +22555,65,21.05,32,0.0 +22556,76,18,21,0.0 +22556,69,36,8,0.0 +22556,3,10,12,0.0 +22556,19,9.2,12,0.0 +22556,65,21.05,5,0.0 +22556,24,4.5,42,0.0 +22556,50,16.25,20,0.0 +22556,67,14,43,0.0 +22556,55,24,36,0.0 +22556,43,46,36,0.0 +22556,59,55,18,0.0 +22556,15,15.5,6,0.0 +22556,71,21.5,47,0.0 +22556,61,28.5,23,0.0 +22556,11,21,23,0.0 +22556,62,49.3,30,0.0 +22556,5,21.35,20,0.0 +22556,54,7.45,11,0.0 +22556,27,43.9,40,0.0 +22557,66,17,27,0.0 +22557,37,26,9,0.0 +22557,9,97,32,0.0 +22557,23,9,33,0.0 +22557,74,10,7,0.0 +22557,14,23.25,1,0.0 +22557,27,43.9,2,0.0 +22557,44,19.45,9,0.0 +22557,32,32,13,0.0 +22557,19,9.2,25,0.0 +22557,3,10,35,0.0 +22557,7,30,13,0.0 +22557,76,18,16,0.0 +22557,73,15,33,0.0 +22557,68,12.5,14,0.0 +22557,41,9.65,10,0.0 +22557,15,15.5,2,0.0 +22557,70,15,40,0.0 +22557,12,38,3,0.0 +22557,69,36,29,0.0 +22557,54,7.45,35,0.0 +22557,58,13.25,21,0.0 +22557,42,14,25,0.0 +22557,21,10,39,0.0 +22557,18,62.5,26,0.0 +22557,1,18,12,0.0 +22557,51,53,21,0.0 +22557,77,13,42,0.0 +22557,40,18.4,19,0.0 +22557,55,24,18,0.0 +22557,36,19,47,0.0 +22557,67,14,8,0.0 +22557,33,2.5,40,0.0 +22558,16,17.45,10,0.0 +22558,57,19.5,13,0.0 +22558,49,20,35,0.0 +22558,9,97,26,0.0 +22558,7,30,5,0.0 +22558,53,32.8,15,0.0 +22558,4,22,25,0.0 +22558,32,32,37,0.0 +22558,31,12.5,20,0.0 +22558,1,18,37,0.0 +22558,62,49.3,11,0.0 +22558,24,4.5,31,0.0 +22558,64,33.25,35,0.0 +22558,38,263.5,22,0.0 +22558,45,9.5,37,0.0 +22558,51,53,33,0.0 +22558,72,34.8,3,0.0 +22558,3,10,37,0.0 +22558,77,13,19,0.0 +22558,69,36,1,0.0 +22558,28,45.6,3,0.0 +22558,63,43.9,16,0.0 +22558,39,18,44,0.0 +22558,34,14,37,0.0 +22558,37,26,21,0.0 +22558,35,18,38,0.0 +22558,14,23.25,41,0.0 +22558,13,6,30,0.0 +22558,27,43.9,2,0.0 +22558,22,21,4,0.0 +22558,30,25.89,23,0.0 +22558,48,12.75,31,0.0 +22558,36,19,1,0.0 +22558,41,9.65,32,0.0 +22558,60,34,6,0.0 +22558,18,62.5,10,0.0 +22558,73,15,7,0.0 +22558,70,15,12,0.0 +22558,68,12.5,9,0.0 +22558,43,46,10,0.0 +22558,25,14,10,0.0 +22558,21,10,30,0.0 +22558,8,40,40,0.0 +22558,66,17,5,0.0 +22559,11,21,8,0.0 +22559,4,22,31,0.0 +22559,14,23.25,39,0.0 +22559,2,19,3,0.0 +22559,52,7,12,0.0 +22559,22,21,8,0.0 +22559,50,16.25,1,0.0 +22559,40,18.4,19,0.0 +22559,27,43.9,39,0.0 +22559,76,18,44,0.0 +22559,69,36,29,0.0 +22559,43,46,21,0.0 +22559,38,263.5,4,0.0 +22559,25,14,17,0.0 +22559,42,14,36,0.0 +22559,35,18,46,0.0 +22559,56,38,21,0.0 +22559,1,18,22,0.0 +22559,71,21.5,1,0.0 +22559,46,12,30,0.0 +22559,63,43.9,45,0.0 +22559,34,14,12,0.0 +22559,66,17,20,0.0 +22559,32,32,34,0.0 +22559,73,15,25,0.0 +22559,59,55,18,0.0 +22559,12,38,38,0.0 +22559,17,39,5,0.0 +22559,41,9.65,22,0.0 +22559,61,28.5,42,0.0 +22559,51,53,14,0.0 +22559,72,34.8,44,0.0 +22559,5,21.35,5,0.0 +22559,16,17.45,3,0.0 +22559,48,12.75,45,0.0 +22559,15,15.5,47,0.0 +22559,36,19,25,0.0 +22559,21,10,41,0.0 +22559,33,2.5,7,0.0 +22559,8,40,41,0.0 +22559,19,9.2,22,0.0 +22559,54,7.45,16,0.0 +22559,55,24,32,0.0 +22559,31,12.5,10,0.0 +22559,62,49.3,9,0.0 +22559,58,13.25,45,0.0 +22559,23,9,41,0.0 +22559,75,7.75,34,0.0 +22559,10,31,23,0.0 +22559,13,6,19,0.0 +22559,28,45.6,46,0.0 +22559,39,18,9,0.0 +22559,9,97,2,0.0 +22559,74,10,27,0.0 +22559,68,12.5,27,0.0 +22559,24,4.5,6,0.0 +22559,60,34,9,0.0 +22559,20,81,1,0.0 +22559,26,31.23,1,0.0 +22559,29,123.79,16,0.0 +22559,57,19.5,35,0.0 +22559,6,25,48,0.0 +22559,49,20,47,0.0 +22559,53,32.8,49,0.0 +22559,7,30,50,0.0 +22559,44,19.45,9,0.0 +22559,37,26,21,0.0 +22559,64,33.25,29,0.0 +22560,72,34.8,25,0.0 +22560,68,12.5,28,0.0 +22560,23,9,1,0.0 +22560,51,53,43,0.0 +22560,32,32,40,0.0 +22560,73,15,20,0.0 +22560,62,49.3,47,0.0 +22560,57,19.5,47,0.0 +22560,71,21.5,7,0.0 +22560,34,14,6,0.0 +22560,3,10,48,0.0 +22560,30,25.89,44,0.0 +22560,77,13,10,0.0 +22560,67,14,43,0.0 +22560,44,19.45,49,0.0 +22560,59,55,21,0.0 +22560,43,46,30,0.0 +22560,64,33.25,36,0.0 +22560,18,62.5,21,0.0 +22560,28,45.6,20,0.0 +22560,48,12.75,41,0.0 +22560,54,7.45,19,0.0 +22560,21,10,39,0.0 +22560,46,12,20,0.0 +22560,38,263.5,16,0.0 +22560,70,15,13,0.0 +22561,45,9.5,47,0.0 +22561,5,21.35,41,0.0 +22561,36,19,14,0.0 +22561,27,43.9,9,0.0 +22561,71,21.5,37,0.0 +22561,31,12.5,26,0.0 +22561,10,31,44,0.0 +22561,18,62.5,34,0.0 +22561,74,10,26,0.0 +22561,15,15.5,18,0.0 +22561,39,18,11,0.0 +22561,46,12,30,0.0 +22561,44,19.45,39,0.0 +22561,57,19.5,5,0.0 +22561,70,15,46,0.0 +22561,68,12.5,14,0.0 +22561,58,13.25,23,0.0 +22561,19,9.2,43,0.0 +22561,32,32,43,0.0 +22561,59,55,27,0.0 +22561,29,123.79,22,0.0 +22561,12,38,19,0.0 +22561,13,6,23,0.0 +22561,51,53,11,0.0 +22561,75,7.75,35,0.0 +22561,40,18.4,34,0.0 +22561,61,28.5,19,0.0 +22561,20,81,27,0.0 +22561,9,97,1,0.0 +22561,64,33.25,47,0.0 +22561,42,14,19,0.0 +22561,52,7,2,0.0 +22561,8,40,31,0.0 +22561,30,25.89,34,0.0 +22561,25,14,13,0.0 +22561,77,13,7,0.0 +22561,3,10,29,0.0 +22561,43,46,38,0.0 +22561,41,9.65,49,0.0 +22561,55,24,46,0.0 +22561,2,19,15,0.0 +22561,1,18,2,0.0 +22561,65,21.05,7,0.0 +22561,63,43.9,9,0.0 +22562,53,32.8,45,0.0 +22562,28,45.6,17,0.0 +22562,77,13,10,0.0 +22562,18,62.5,49,0.0 +22562,66,17,25,0.0 +22562,7,30,13,0.0 +22562,39,18,16,0.0 +22562,70,15,49,0.0 +22562,48,12.75,10,0.0 +22562,36,19,50,0.0 +22562,43,46,20,0.0 +22562,21,10,3,0.0 +22562,33,2.5,23,0.0 +22562,5,21.35,48,0.0 +22562,16,17.45,34,0.0 +22562,6,25,41,0.0 +22562,75,7.75,18,0.0 +22562,27,43.9,20,0.0 +22562,61,28.5,12,0.0 +22562,50,16.25,17,0.0 +22562,51,53,26,0.0 +22562,17,39,34,0.0 +22562,49,20,16,0.0 +22562,12,38,23,0.0 +22562,20,81,20,0.0 +22562,26,31.23,43,0.0 +22562,15,15.5,46,0.0 +22562,76,18,43,0.0 +22562,45,9.5,45,0.0 +22562,74,10,24,0.0 +22562,40,18.4,26,0.0 +22562,10,31,15,0.0 +22562,65,21.05,26,0.0 +22562,59,55,32,0.0 +22562,46,12,31,0.0 +22562,8,40,14,0.0 +22562,57,19.5,43,0.0 +22562,56,38,28,0.0 +22562,58,13.25,48,0.0 +22562,19,9.2,35,0.0 +22562,30,25.89,47,0.0 +22562,38,263.5,27,0.0 +22562,4,22,15,0.0 +22562,69,36,23,0.0 +22562,11,21,16,0.0 +22562,13,6,1,0.0 +22562,72,34.8,11,0.0 +22562,2,19,41,0.0 +22562,29,123.79,47,0.0 +22562,3,10,50,0.0 +22563,72,34.8,1,0.0 +22563,75,7.75,50,0.0 +22563,9,97,15,0.0 +22563,14,23.25,31,0.0 +22563,66,17,23,0.0 +22563,24,4.5,10,0.0 +22564,13,6,13,0.0 +22564,52,7,23,0.0 +22564,17,39,49,0.0 +22564,23,9,42,0.0 +22564,74,10,50,0.0 +22564,69,36,47,0.0 +22564,55,24,34,0.0 +22564,48,12.75,5,0.0 +22564,76,18,9,0.0 +22564,77,13,42,0.0 +22564,47,9.5,36,0.0 +22564,41,9.65,18,0.0 +22564,29,123.79,38,0.0 +22564,34,14,42,0.0 +22564,3,10,39,0.0 +22564,12,38,26,0.0 +22564,1,18,30,0.0 +22564,57,19.5,7,0.0 +22564,4,22,41,0.0 +22564,25,14,34,0.0 +22564,40,18.4,18,0.0 +22564,39,18,42,0.0 +22564,62,49.3,34,0.0 +22564,50,16.25,45,0.0 +22564,64,33.25,48,0.0 +22564,31,12.5,26,0.0 +22564,70,15,15,0.0 +22564,36,19,24,0.0 +22564,49,20,17,0.0 +22564,26,31.23,43,0.0 +22564,61,28.5,44,0.0 +22564,19,9.2,36,0.0 +22564,33,2.5,24,0.0 +22564,53,32.8,15,0.0 +22564,56,38,4,0.0 +22564,2,19,43,0.0 +22564,27,43.9,4,0.0 +22564,59,55,30,0.0 +22564,11,21,16,0.0 +22564,24,4.5,45,0.0 +22564,60,34,8,0.0 +22564,14,23.25,44,0.0 +22564,28,45.6,25,0.0 +22564,43,46,16,0.0 +22564,15,15.5,14,0.0 +22565,56,38,36,0.0 +22565,58,13.25,23,0.0 +22566,3,10,4,0.0 +22566,6,25,32,0.0 +22566,41,9.65,43,0.0 +22566,72,34.8,38,0.0 +22567,32,32,27,0.0 +22567,19,9.2,35,0.0 +22567,2,19,4,0.0 +22567,9,97,25,0.0 +22567,72,34.8,2,0.0 +22567,75,7.75,10,0.0 +22567,1,18,14,0.0 +22567,68,12.5,12,0.0 +22567,24,4.5,14,0.0 +22567,71,21.5,5,0.0 +22567,31,12.5,26,0.0 +22567,20,81,45,0.0 +22567,62,49.3,44,0.0 +22567,42,14,42,0.0 +22567,66,17,31,0.0 +22567,58,13.25,45,0.0 +22567,17,39,29,0.0 +22567,6,25,22,0.0 +22567,18,62.5,38,0.0 +22567,41,9.65,31,0.0 +22567,10,31,21,0.0 +22567,4,22,23,0.0 +22567,61,28.5,6,0.0 +22567,22,21,9,0.0 +22567,55,24,25,0.0 +22567,13,6,46,0.0 +22567,65,21.05,45,0.0 +22567,52,7,27,0.0 +22567,35,18,8,0.0 +22568,5,21.35,1,0.0 +22568,71,21.5,19,0.0 +22568,23,9,24,0.0 +22568,30,25.89,37,0.0 +22568,52,7,31,0.0 +22568,19,9.2,33,0.0 +22568,70,15,17,0.0 +22568,25,14,13,0.0 +22568,18,62.5,39,0.0 +22568,62,49.3,7,0.0 +22568,65,21.05,37,0.0 +22568,8,40,48,0.0 +22568,74,10,41,0.0 +22568,28,45.6,44,0.0 +22568,46,12,4,0.0 +22568,11,21,31,0.0 +22568,40,18.4,16,0.0 +22568,45,9.5,18,0.0 +22568,13,6,31,0.0 +22568,36,19,25,0.0 +22568,32,32,32,0.0 +22568,76,18,35,0.0 +22568,47,9.5,14,0.0 +22568,61,28.5,34,0.0 +22568,10,31,34,0.0 +22568,64,33.25,11,0.0 +22568,16,17.45,46,0.0 +22568,60,34,43,0.0 +22568,2,19,9,0.0 +22568,26,31.23,46,0.0 +22568,35,18,11,0.0 +22568,1,18,48,0.0 +22568,34,14,50,0.0 +22568,68,12.5,3,0.0 +22568,50,16.25,44,0.0 +22568,58,13.25,36,0.0 +22568,37,26,50,0.0 +22568,4,22,32,0.0 +22568,9,97,5,0.0 +22569,2,19,16,0.0 +22569,23,9,46,0.0 +22569,19,9.2,14,0.0 +22569,44,19.45,20,0.0 +22569,27,43.9,39,0.0 +22569,70,15,35,0.0 +22569,9,97,2,0.0 +22569,29,123.79,42,0.0 +22569,76,18,27,0.0 +22569,16,17.45,31,0.0 +22569,26,31.23,28,0.0 +22569,66,17,21,0.0 +22569,15,15.5,33,0.0 +22569,8,40,42,0.0 +22569,68,12.5,36,0.0 +22569,52,7,4,0.0 +22570,27,43.9,2,0.0 +22570,69,36,17,0.0 +22570,12,38,19,0.0 +22570,41,9.65,18,0.0 +22570,30,25.89,18,0.0 +22570,50,16.25,7,0.0 +22570,35,18,25,0.0 +22570,51,53,32,0.0 +22570,29,123.79,32,0.0 +22570,76,18,41,0.0 +22570,48,12.75,48,0.0 +22570,14,23.25,30,0.0 +22570,43,46,11,0.0 +22570,25,14,30,0.0 +22570,73,15,12,0.0 +22570,3,10,16,0.0 +22570,49,20,5,0.0 +22570,36,19,6,0.0 +22570,9,97,28,0.0 +22570,55,24,46,0.0 +22570,1,18,49,0.0 +22570,67,14,45,0.0 +22570,54,7.45,31,0.0 +22570,37,26,37,0.0 +22570,32,32,33,0.0 +22570,62,49.3,9,0.0 +22570,4,22,26,0.0 +22570,77,13,4,0.0 +22570,16,17.45,26,0.0 +22570,63,43.9,22,0.0 +22570,6,25,43,0.0 +22570,23,9,26,0.0 +22570,53,32.8,18,0.0 +22570,21,10,27,0.0 +22570,60,34,18,0.0 +22570,5,21.35,46,0.0 +22570,65,21.05,46,0.0 +22570,2,19,7,0.0 +22570,10,31,47,0.0 +22570,44,19.45,31,0.0 +22570,64,33.25,26,0.0 +22570,22,21,28,0.0 +22570,28,45.6,29,0.0 +22570,68,12.5,42,0.0 +22570,15,15.5,32,0.0 +22570,71,21.5,19,0.0 +22570,40,18.4,12,0.0 +22570,7,30,17,0.0 +22570,45,9.5,21,0.0 +22570,70,15,47,0.0 +22570,42,14,4,0.0 +22570,57,19.5,36,0.0 +22570,33,2.5,42,0.0 +22570,72,34.8,12,0.0 +22570,8,40,20,0.0 +22570,58,13.25,10,0.0 +22570,59,55,45,0.0 +22570,38,263.5,20,0.0 +22570,61,28.5,49,0.0 +22570,75,7.75,23,0.0 +22570,31,12.5,18,0.0 +22570,20,81,30,0.0 +22570,52,7,27,0.0 +22570,47,9.5,36,0.0 +22570,17,39,40,0.0 +22570,24,4.5,31,0.0 +22570,19,9.2,26,0.0 +22570,56,38,19,0.0 +22570,26,31.23,47,0.0 +22571,75,7.75,47,0.0 +22571,70,15,21,0.0 +22571,11,21,49,0.0 +22571,18,62.5,28,0.0 +22571,48,12.75,18,0.0 +22571,38,263.5,50,0.0 +22571,30,25.89,24,0.0 +22571,59,55,44,0.0 +22571,6,25,42,0.0 +22571,16,17.45,19,0.0 +22571,67,14,19,0.0 +22571,12,38,4,0.0 +22571,45,9.5,7,0.0 +22571,65,21.05,15,0.0 +22571,54,7.45,24,0.0 +22571,23,9,19,0.0 +22571,72,34.8,31,0.0 +22571,42,14,34,0.0 +22571,53,32.8,44,0.0 +22571,76,18,49,0.0 +22571,56,38,7,0.0 +22571,15,15.5,8,0.0 +22571,7,30,18,0.0 +22571,62,49.3,27,0.0 +22571,41,9.65,41,0.0 +22571,68,12.5,3,0.0 +22571,49,20,41,0.0 +22571,29,123.79,44,0.0 +22571,61,28.5,19,0.0 +22571,28,45.6,17,0.0 +22571,14,23.25,31,0.0 +22571,52,7,42,0.0 +22571,36,19,40,0.0 +22571,25,14,37,0.0 +22571,64,33.25,39,0.0 +22571,63,43.9,45,0.0 +22571,9,97,33,0.0 +22571,1,18,23,0.0 +22571,37,26,30,0.0 +22571,44,19.45,42,0.0 +22571,43,46,28,0.0 +22571,73,15,17,0.0 +22571,2,19,23,0.0 +22571,69,36,24,0.0 +22571,39,18,24,0.0 +22571,74,10,34,0.0 +22571,22,21,23,0.0 +22571,57,19.5,23,0.0 +22571,8,40,40,0.0 +22571,32,32,13,0.0 +22571,46,12,35,0.0 +22571,33,2.5,32,0.0 +22571,40,18.4,49,0.0 +22571,5,21.35,25,0.0 +22571,27,43.9,21,0.0 +22571,34,14,48,0.0 +22571,55,24,18,0.0 +22571,47,9.5,44,0.0 +22571,35,18,43,0.0 +22571,66,17,49,0.0 +22571,13,6,16,0.0 +22571,58,13.25,9,0.0 +22571,10,31,27,0.0 +22571,60,34,41,0.0 +22571,31,12.5,28,0.0 +22571,24,4.5,48,0.0 +22571,17,39,38,0.0 +22571,51,53,41,0.0 +22571,26,31.23,23,0.0 +22571,20,81,6,0.0 +22571,77,13,45,0.0 +22571,50,16.25,12,0.0 +22571,19,9.2,28,0.0 +22571,71,21.5,45,0.0 +22572,49,20,7,0.0 +22572,60,34,30,0.0 +22572,38,263.5,46,0.0 +22572,33,2.5,41,0.0 +22572,31,12.5,3,0.0 +22572,64,33.25,50,0.0 +22572,76,18,29,0.0 +22572,73,15,16,0.0 +22572,3,10,21,0.0 +22572,20,81,43,0.0 +22572,32,32,4,0.0 +22572,41,9.65,7,0.0 +22572,43,46,31,0.0 +22572,26,31.23,1,0.0 +22572,59,55,33,0.0 +22572,6,25,49,0.0 +22572,21,10,50,0.0 +22572,8,40,31,0.0 +22572,35,18,23,0.0 +22572,66,17,47,0.0 +22573,9,97,42,0.0 +22574,35,18,35,0.0 +22574,39,18,42,0.0 +22574,43,46,14,0.0 +22575,55,24,13,0.0 +22575,69,36,8,0.0 +22575,70,15,45,0.0 +22575,27,43.9,25,0.0 +22575,65,21.05,44,0.0 +22575,7,30,8,0.0 +22575,39,18,47,0.0 +22575,67,14,33,0.0 +22575,60,34,4,0.0 +22575,34,14,44,0.0 +22575,29,123.79,2,0.0 +22575,48,12.75,49,0.0 +22575,63,43.9,7,0.0 +22575,61,28.5,30,0.0 +22575,47,9.5,35,0.0 +22575,20,81,4,0.0 +22575,37,26,38,0.0 +22575,28,45.6,29,0.0 +22575,6,25,7,0.0 +22575,24,4.5,39,0.0 +22575,40,18.4,31,0.0 +22575,42,14,28,0.0 +22575,56,38,49,0.0 +22575,30,25.89,3,0.0 +22575,54,7.45,14,0.0 +22575,35,18,33,0.0 +22575,32,32,22,0.0 +22575,21,10,44,0.0 +22575,72,34.8,28,0.0 +22575,77,13,29,0.0 +22575,25,14,30,0.0 +22575,41,9.65,32,0.0 +22575,11,21,31,0.0 +22575,75,7.75,41,0.0 +22575,58,13.25,14,0.0 +22575,76,18,46,0.0 +22575,23,9,18,0.0 +22575,18,62.5,13,0.0 +22575,3,10,30,0.0 +22575,46,12,28,0.0 +22575,13,6,6,0.0 +22575,64,33.25,24,0.0 +22575,51,53,33,0.0 +22575,71,21.5,5,0.0 +22575,14,23.25,18,0.0 +22575,31,12.5,37,0.0 +22575,10,31,36,0.0 +22575,57,19.5,15,0.0 +22575,17,39,39,0.0 +22575,66,17,23,0.0 +22575,5,21.35,44,0.0 +22575,16,17.45,19,0.0 +22575,45,9.5,45,0.0 +22575,44,19.45,44,0.0 +22575,68,12.5,18,0.0 +22575,8,40,28,0.0 +22575,26,31.23,18,0.0 +22575,12,38,30,0.0 +22575,53,32.8,7,0.0 +22575,49,20,12,0.0 +22575,33,2.5,15,0.0 +22575,4,22,5,0.0 +22575,62,49.3,40,0.0 +22575,52,7,11,0.0 +22575,59,55,30,0.0 +22575,1,18,48,0.0 +22575,36,19,30,0.0 +22575,19,9.2,47,0.0 +22575,9,97,4,0.0 +22575,2,19,11,0.0 +22575,38,263.5,32,0.0 +22575,22,21,44,0.0 +22575,50,16.25,9,0.0 +22575,74,10,29,0.0 +22575,15,15.5,28,0.0 +22575,73,15,49,0.0 +22576,43,46,29,0.0 +22576,33,2.5,46,0.0 +22576,62,49.3,40,0.0 +22576,27,43.9,34,0.0 +22576,19,9.2,6,0.0 +22576,24,4.5,31,0.0 +22576,9,97,25,0.0 +22576,23,9,28,0.0 +22576,26,31.23,10,0.0 +22576,68,12.5,2,0.0 +22576,71,21.5,13,0.0 +22576,5,21.35,24,0.0 +22576,10,31,35,0.0 +22576,73,15,14,0.0 +22576,36,19,49,0.0 +22576,30,25.89,23,0.0 +22576,44,19.45,30,0.0 +22576,6,25,25,0.0 +22576,76,18,3,0.0 +22576,7,30,3,0.0 +22576,75,7.75,27,0.0 +22576,29,123.79,38,0.0 +22576,25,14,44,0.0 +22576,22,21,15,0.0 +22576,74,10,31,0.0 +22576,35,18,40,0.0 +22576,38,263.5,40,0.0 +22576,60,34,40,0.0 +22576,34,14,12,0.0 +22576,63,43.9,5,0.0 +22576,59,55,15,0.0 +22576,65,21.05,43,0.0 +22576,14,23.25,4,0.0 +22576,41,9.65,6,0.0 +22576,15,15.5,16,0.0 +22576,56,38,11,0.0 +22576,69,36,40,0.0 +22576,11,21,14,0.0 +22576,54,7.45,10,0.0 +22576,72,34.8,6,0.0 +22576,48,12.75,19,0.0 +22576,61,28.5,20,0.0 +22576,3,10,22,0.0 +22576,51,53,28,0.0 +22577,53,32.8,44,0.0 +22577,21,10,20,0.0 +22577,68,12.5,16,0.0 +22577,5,21.35,6,0.0 +22577,39,18,38,0.0 +22577,57,19.5,3,0.0 +22577,36,19,43,0.0 +22577,9,97,20,0.0 +22577,67,14,34,0.0 +22577,43,46,20,0.0 +22577,15,15.5,38,0.0 +22577,74,10,13,0.0 +22577,27,43.9,7,0.0 +22577,69,36,31,0.0 +22577,71,21.5,34,0.0 +22577,29,123.79,5,0.0 +22577,77,13,6,0.0 +22577,45,9.5,31,0.0 +22577,37,26,40,0.0 +22577,51,53,48,0.0 +22577,44,19.45,21,0.0 +22577,49,20,21,0.0 +22577,60,34,13,0.0 +22577,54,7.45,48,0.0 +22577,70,15,19,0.0 +22577,7,30,47,0.0 +22577,47,9.5,14,0.0 +22577,11,21,31,0.0 +22577,13,6,29,0.0 +22577,42,14,10,0.0 +22577,1,18,32,0.0 +22577,22,21,18,0.0 +22577,35,18,32,0.0 +22577,4,22,11,0.0 +22577,20,81,8,0.0 +22577,48,12.75,28,0.0 +22577,3,10,27,0.0 +22577,26,31.23,40,0.0 +22577,30,25.89,4,0.0 +22577,63,43.9,16,0.0 +22577,61,28.5,29,0.0 +22577,31,12.5,17,0.0 +22577,18,62.5,41,0.0 +22577,64,33.25,33,0.0 +22577,62,49.3,9,0.0 +22577,56,38,1,0.0 +22577,28,45.6,11,0.0 +22577,25,14,31,0.0 +22577,32,32,13,0.0 +22577,14,23.25,39,0.0 +22577,24,4.5,29,0.0 +22577,55,24,41,0.0 +22577,46,12,7,0.0 +22577,76,18,48,0.0 +22578,5,21.35,22,0.0 +22578,40,18.4,30,0.0 +22578,1,18,26,0.0 +22578,67,14,6,0.0 +22578,51,53,29,0.0 +22578,29,123.79,28,0.0 +22578,46,12,39,0.0 +22578,34,14,14,0.0 +22578,13,6,6,0.0 +22578,56,38,48,0.0 +22578,10,31,43,0.0 +22578,62,49.3,9,0.0 +22578,33,2.5,20,0.0 +22578,63,43.9,27,0.0 +22578,15,15.5,9,0.0 +22578,71,21.5,16,0.0 +22578,38,263.5,44,0.0 +22578,48,12.75,26,0.0 +22578,23,9,21,0.0 +22578,74,10,2,0.0 +22578,3,10,8,0.0 +22578,76,18,43,0.0 +22578,43,46,28,0.0 +22578,31,12.5,5,0.0 +22578,70,15,30,0.0 +22578,16,17.45,1,0.0 +22578,39,18,17,0.0 +22578,18,62.5,10,0.0 +22578,44,19.45,25,0.0 +22578,30,25.89,14,0.0 +22578,19,9.2,34,0.0 +22578,50,16.25,8,0.0 +22578,9,97,19,0.0 +22578,55,24,17,0.0 +22578,25,14,13,0.0 +22578,53,32.8,36,0.0 +22578,37,26,1,0.0 +22578,21,10,49,0.0 +22578,27,43.9,16,0.0 +22578,69,36,23,0.0 +22578,28,45.6,23,0.0 +22578,47,9.5,27,0.0 +22578,22,21,5,0.0 +22578,11,21,17,0.0 +22578,58,13.25,24,0.0 +22578,26,31.23,13,0.0 +22578,54,7.45,38,0.0 +22578,45,9.5,18,0.0 +22578,8,40,29,0.0 +22578,17,39,1,0.0 +22578,52,7,27,0.0 +22578,2,19,43,0.0 +22578,73,15,22,0.0 +22578,68,12.5,7,0.0 +22578,41,9.65,2,0.0 +22578,6,25,44,0.0 +22578,61,28.5,4,0.0 +22578,36,19,42,0.0 +22579,43,46,19,0.0 +22579,35,18,49,0.0 +22579,14,23.25,40,0.0 +22579,28,45.6,26,0.0 +22579,2,19,44,0.0 +22579,16,17.45,41,0.0 +22579,15,15.5,38,0.0 +22579,24,4.5,10,0.0 +22579,3,10,13,0.0 +22579,11,21,37,0.0 +22579,46,12,5,0.0 +22579,51,53,1,0.0 +22579,39,18,34,0.0 +22579,13,6,26,0.0 +22579,48,12.75,49,0.0 +22579,4,22,1,0.0 +22579,25,14,30,0.0 +22579,30,25.89,4,0.0 +22579,60,34,1,0.0 +22579,20,81,7,0.0 +22579,23,9,15,0.0 +22579,58,13.25,35,0.0 +22579,55,24,3,0.0 +22579,63,43.9,41,0.0 +22579,10,31,31,0.0 +22579,66,17,45,0.0 +22579,61,28.5,28,0.0 +22579,1,18,48,0.0 +22579,33,2.5,42,0.0 +22579,5,21.35,34,0.0 +22579,47,9.5,9,0.0 +22579,74,10,28,0.0 +22579,42,14,6,0.0 +22579,71,21.5,16,0.0 +22579,40,18.4,49,0.0 +22579,41,9.65,36,0.0 +22579,31,12.5,48,0.0 +22579,26,31.23,5,0.0 +22579,49,20,32,0.0 +22579,45,9.5,26,0.0 +22579,68,12.5,35,0.0 +22579,50,16.25,37,0.0 +22579,22,21,46,0.0 +22579,18,62.5,10,0.0 +22579,27,43.9,18,0.0 +22579,44,19.45,14,0.0 +22579,76,18,29,0.0 +22579,53,32.8,7,0.0 +22579,57,19.5,3,0.0 +22580,73,15,1,0.0 +22580,67,14,24,0.0 +22580,54,7.45,46,0.0 +22580,70,15,9,0.0 +22580,26,31.23,22,0.0 +22580,60,34,37,0.0 +22580,35,18,17,0.0 +22580,32,32,12,0.0 +22580,2,19,46,0.0 +22580,58,13.25,19,0.0 +22580,42,14,44,0.0 +22581,48,12.75,35,0.0 +22581,35,18,37,0.0 +22581,62,49.3,34,0.0 +22581,39,18,42,0.0 +22581,65,21.05,6,0.0 +22581,74,10,37,0.0 +22581,41,9.65,31,0.0 +22581,11,21,6,0.0 +22581,19,9.2,2,0.0 +22581,46,12,12,0.0 +22581,18,62.5,34,0.0 +22581,37,26,15,0.0 +22581,47,9.5,23,0.0 +22581,26,31.23,28,0.0 +22581,5,21.35,6,0.0 +22581,24,4.5,23,0.0 +22581,38,263.5,33,0.0 +22581,31,12.5,10,0.0 +22581,22,21,9,0.0 +22581,36,19,19,0.0 +22581,32,32,20,0.0 +22581,29,123.79,17,0.0 +22581,44,19.45,5,0.0 +22581,77,13,27,0.0 +22581,63,43.9,12,0.0 +22581,58,13.25,3,0.0 +22581,23,9,6,0.0 +22581,12,38,46,0.0 +22581,34,14,38,0.0 +22581,33,2.5,25,0.0 +22581,61,28.5,8,0.0 +22581,70,15,50,0.0 +22581,40,18.4,8,0.0 +22581,60,34,12,0.0 +22581,55,24,45,0.0 +22581,8,40,31,0.0 +22581,7,30,32,0.0 +22582,50,16.25,27,0.0 +22582,6,25,31,0.0 +22582,22,21,32,0.0 +22582,69,36,9,0.0 +22582,7,30,22,0.0 +22582,34,14,35,0.0 +22582,63,43.9,19,0.0 +22582,72,34.8,22,0.0 +22582,30,25.89,37,0.0 +22582,1,18,50,0.0 +22582,41,9.65,39,0.0 +22582,24,4.5,4,0.0 +22582,16,17.45,18,0.0 +22582,25,14,20,0.0 +22582,39,18,21,0.0 +22582,73,15,3,0.0 +22582,3,10,40,0.0 +22582,38,263.5,21,0.0 +22582,36,19,25,0.0 +22582,43,46,12,0.0 +22582,40,18.4,38,0.0 +22582,19,9.2,39,0.0 +22582,11,21,50,0.0 +22582,31,12.5,20,0.0 +22582,45,9.5,21,0.0 +22582,58,13.25,22,0.0 +22582,67,14,39,0.0 +22582,60,34,22,0.0 +22582,18,62.5,36,0.0 +22582,33,2.5,38,0.0 +22582,29,123.79,22,0.0 +22582,9,97,18,0.0 +22582,68,12.5,15,0.0 +22582,37,26,35,0.0 +22582,4,22,32,0.0 +22583,34,14,50,0.0 +22583,65,21.05,8,0.0 +22583,62,49.3,8,0.0 +22583,10,31,36,0.0 +22583,57,19.5,31,0.0 +22583,66,17,4,0.0 +22583,69,36,16,0.0 +22583,32,32,6,0.0 +22583,63,43.9,3,0.0 +22583,28,45.6,8,0.0 +22583,40,18.4,41,0.0 +22583,37,26,36,0.0 +22583,23,9,34,0.0 +22583,56,38,23,0.0 +22583,12,38,12,0.0 +22583,58,13.25,33,0.0 +22583,38,263.5,8,0.0 +22583,11,21,20,0.0 +22583,42,14,15,0.0 +22583,77,13,42,0.0 +22583,55,24,50,0.0 +22583,41,9.65,35,0.0 +22583,51,53,5,0.0 +22583,39,18,18,0.0 +22583,68,12.5,33,0.0 +22583,26,31.23,43,0.0 +22583,50,16.25,28,0.0 +22583,25,14,33,0.0 +22583,4,22,2,0.0 +22583,5,21.35,42,0.0 +22583,60,34,21,0.0 +22583,19,9.2,25,0.0 +22583,24,4.5,31,0.0 +22583,1,18,42,0.0 +22583,70,15,43,0.0 +22583,64,33.25,11,0.0 +22583,52,7,37,0.0 +22583,45,9.5,38,0.0 +22583,47,9.5,27,0.0 +22583,8,40,20,0.0 +22583,21,10,18,0.0 +22583,59,55,23,0.0 +22583,27,43.9,22,0.0 +22583,75,7.75,3,0.0 +22583,54,7.45,6,0.0 +22583,31,12.5,9,0.0 +22583,61,28.5,32,0.0 +22583,73,15,7,0.0 +22583,36,19,15,0.0 +22583,35,18,4,0.0 +22583,15,15.5,48,0.0 +22583,6,25,6,0.0 +22583,7,30,36,0.0 +22584,40,18.4,46,0.0 +22584,24,4.5,35,0.0 +22584,53,32.8,2,0.0 +22584,17,39,32,0.0 +22584,18,62.5,31,0.0 +22584,13,6,7,0.0 +22584,75,7.75,6,0.0 +22584,58,13.25,20,0.0 +22584,69,36,45,0.0 +22584,1,18,33,0.0 +22584,51,53,50,0.0 +22584,77,13,33,0.0 +22584,28,45.6,27,0.0 +22584,14,23.25,8,0.0 +22584,76,18,8,0.0 +22584,16,17.45,13,0.0 +22584,31,12.5,28,0.0 +22584,12,38,39,0.0 +22584,44,19.45,22,0.0 +22584,37,26,47,0.0 +22584,2,19,28,0.0 +22584,71,21.5,14,0.0 +22584,55,24,48,0.0 +22584,7,30,18,0.0 +22584,47,9.5,31,0.0 +22584,65,21.05,8,0.0 +22584,33,2.5,34,0.0 +22584,73,15,3,0.0 +22584,20,81,2,0.0 +22584,5,21.35,42,0.0 +22584,21,10,42,0.0 +22584,38,263.5,35,0.0 +22584,49,20,19,0.0 +22584,54,7.45,14,0.0 +22584,39,18,47,0.0 +22584,66,17,1,0.0 +22584,10,31,33,0.0 +22584,30,25.89,8,0.0 +22584,32,32,42,0.0 +22584,27,43.9,25,0.0 +22584,23,9,2,0.0 +22584,8,40,23,0.0 +22584,6,25,1,0.0 +22584,61,28.5,19,0.0 +22584,35,18,12,0.0 +22584,42,14,7,0.0 +22584,52,7,8,0.0 +22584,56,38,11,0.0 +22584,62,49.3,24,0.0 +22584,46,12,24,0.0 +22584,25,14,14,0.0 +22584,19,9.2,4,0.0 +22584,45,9.5,38,0.0 +22584,68,12.5,17,0.0 +22584,29,123.79,28,0.0 +22584,11,21,16,0.0 +22584,57,19.5,42,0.0 +22584,36,19,41,0.0 +22584,15,15.5,24,0.0 +22584,72,34.8,10,0.0 +22584,4,22,42,0.0 +22584,67,14,34,0.0 +22584,26,31.23,22,0.0 +22584,74,10,21,0.0 +22584,63,43.9,1,0.0 +22584,50,16.25,29,0.0 +22584,22,21,39,0.0 +22584,41,9.65,22,0.0 +22584,43,46,28,0.0 +22584,3,10,40,0.0 +22584,34,14,12,0.0 +22584,60,34,10,0.0 +22584,9,97,13,0.0 +22584,70,15,22,0.0 +22584,48,12.75,11,0.0 +22584,64,33.25,14,0.0 +22585,69,36,34,0.0 +22585,16,17.45,11,0.0 +22585,35,18,29,0.0 +22585,28,45.6,21,0.0 +22585,76,18,46,0.0 +22585,62,49.3,8,0.0 +22585,54,7.45,47,0.0 +22585,2,19,9,0.0 +22585,73,15,21,0.0 +22585,5,21.35,4,0.0 +22585,44,19.45,47,0.0 +22585,12,38,34,0.0 +22585,15,15.5,44,0.0 +22585,18,62.5,7,0.0 +22585,22,21,35,0.0 +22585,64,33.25,38,0.0 +22585,31,12.5,44,0.0 +22585,56,38,14,0.0 +22585,41,9.65,28,0.0 +22585,9,97,7,0.0 +22585,25,14,19,0.0 +22585,55,24,15,0.0 +22585,46,12,8,0.0 +22585,36,19,20,0.0 +22585,42,14,4,0.0 +22585,23,9,3,0.0 +22585,14,23.25,21,0.0 +22585,33,2.5,34,0.0 +22585,17,39,27,0.0 +22585,58,13.25,17,0.0 +22585,51,53,12,0.0 +22585,45,9.5,11,0.0 +22585,7,30,50,0.0 +22586,19,9.2,8,0.0 +22586,46,12,10,0.0 +22586,71,21.5,50,0.0 +22586,3,10,30,0.0 +22586,56,38,49,0.0 +22586,15,15.5,14,0.0 +22586,35,18,1,0.0 +22586,62,49.3,4,0.0 +22586,8,40,36,0.0 +22586,10,31,46,0.0 +22586,2,19,36,0.0 +22586,21,10,1,0.0 +22586,73,15,5,0.0 +22586,11,21,49,0.0 +22586,6,25,32,0.0 +22586,66,17,24,0.0 +22586,34,14,1,0.0 +22586,27,43.9,17,0.0 +22586,52,7,43,0.0 +22586,14,23.25,40,0.0 +22586,4,22,7,0.0 +22586,58,13.25,11,0.0 +22586,33,2.5,47,0.0 +22586,50,16.25,18,0.0 +22586,49,20,40,0.0 +22586,74,10,19,0.0 +22586,70,15,39,0.0 +22586,64,33.25,3,0.0 +22586,28,45.6,7,0.0 +22586,59,55,15,0.0 +22586,12,38,46,0.0 +22586,22,21,47,0.0 +22586,67,14,31,0.0 +22586,63,43.9,47,0.0 +22586,24,4.5,32,0.0 +22586,44,19.45,47,0.0 +22586,75,7.75,45,0.0 +22586,48,12.75,27,0.0 +22586,9,97,32,0.0 +22586,69,36,20,0.0 +22586,68,12.5,20,0.0 +22586,37,26,35,0.0 +22586,39,18,8,0.0 +22586,57,19.5,23,0.0 +22586,30,25.89,24,0.0 +22586,42,14,44,0.0 +22586,72,34.8,10,0.0 +22586,13,6,4,0.0 +22586,1,18,22,0.0 +22586,61,28.5,3,0.0 +22587,36,19,34,0.0 +22587,40,18.4,20,0.0 +22587,3,10,18,0.0 +22587,62,49.3,40,0.0 +22587,32,32,13,0.0 +22587,28,45.6,5,0.0 +22587,75,7.75,15,0.0 +22587,64,33.25,44,0.0 +22587,1,18,11,0.0 +22587,43,46,6,0.0 +22588,72,34.8,29,0.0 +22588,16,17.45,49,0.0 +22588,44,19.45,28,0.0 +22588,58,13.25,48,0.0 +22588,32,32,43,0.0 +22588,15,15.5,30,0.0 +22588,8,40,26,0.0 +22588,5,21.35,49,0.0 +22588,26,31.23,13,0.0 +22588,28,45.6,12,0.0 +22588,62,49.3,32,0.0 +22588,70,15,3,0.0 +22588,51,53,9,0.0 +22588,21,10,17,0.0 +22588,18,62.5,21,0.0 +22588,64,33.25,36,0.0 +22588,25,14,18,0.0 +22588,9,97,3,0.0 +22588,4,22,13,0.0 +22588,60,34,12,0.0 +22588,13,6,4,0.0 +22588,41,9.65,3,0.0 +22588,6,25,27,0.0 +22588,46,12,13,0.0 +22588,29,123.79,3,0.0 +22588,57,19.5,38,0.0 +22588,1,18,21,0.0 +22588,55,24,48,0.0 +22588,73,15,3,0.0 +22588,67,14,19,0.0 +22588,69,36,46,0.0 +22588,71,21.5,10,0.0 +22588,20,81,41,0.0 +22588,59,55,41,0.0 +22588,61,28.5,39,0.0 +22588,47,9.5,8,0.0 +22588,42,14,9,0.0 +22588,75,7.75,11,0.0 +22588,7,30,9,0.0 +22588,34,14,45,0.0 +22588,45,9.5,14,0.0 +22588,74,10,8,0.0 +22588,39,18,29,0.0 +22588,40,18.4,10,0.0 +22588,49,20,7,0.0 +22588,30,25.89,41,0.0 +22588,77,13,12,0.0 +22588,19,9.2,25,0.0 +22588,56,38,6,0.0 +22588,2,19,41,0.0 +22588,11,21,44,0.0 +22588,37,26,50,0.0 +22588,3,10,40,0.0 +22588,38,263.5,2,0.0 +22588,22,21,10,0.0 +22588,66,17,24,0.0 +22588,10,31,12,0.0 +22588,31,12.5,45,0.0 +22588,54,7.45,29,0.0 +22588,36,19,16,0.0 +22588,35,18,34,0.0 +22588,14,23.25,29,0.0 +22588,12,38,17,0.0 +22588,48,12.75,36,0.0 +22589,50,16.25,50,0.0 +22589,31,12.5,22,0.0 +22589,34,14,11,0.0 +22589,3,10,25,0.0 +22589,15,15.5,21,0.0 +22589,41,9.65,4,0.0 +22589,42,14,38,0.0 +22589,37,26,26,0.0 +22589,35,18,8,0.0 +22589,45,9.5,40,0.0 +22589,7,30,50,0.0 +22589,2,19,6,0.0 +22589,75,7.75,12,0.0 +22589,38,263.5,39,0.0 +22589,56,38,34,0.0 +22589,46,12,15,0.0 +22589,61,28.5,50,0.0 +22589,54,7.45,30,0.0 +22589,53,32.8,18,0.0 +22589,63,43.9,20,0.0 +22589,51,53,1,0.0 +22589,62,49.3,13,0.0 +22589,71,21.5,33,0.0 +22589,12,38,27,0.0 +22589,77,13,45,0.0 +22589,33,2.5,9,0.0 +22589,60,34,23,0.0 +22589,49,20,20,0.0 +22589,52,7,34,0.0 +22589,4,22,38,0.0 +22589,76,18,6,0.0 +22589,6,25,6,0.0 +22589,58,13.25,42,0.0 +22589,48,12.75,15,0.0 +22589,18,62.5,33,0.0 +22589,66,17,37,0.0 +22589,23,9,26,0.0 +22589,57,19.5,49,0.0 +22589,9,97,30,0.0 +22589,19,9.2,10,0.0 +22589,67,14,3,0.0 +22589,44,19.45,36,0.0 +22589,69,36,33,0.0 +22589,68,12.5,29,0.0 +22589,26,31.23,37,0.0 +22589,25,14,5,0.0 +22589,70,15,25,0.0 +22589,27,43.9,37,0.0 +22589,55,24,36,0.0 +22589,11,21,31,0.0 +22589,32,32,29,0.0 +22589,1,18,6,0.0 +22589,28,45.6,39,0.0 +22589,16,17.45,31,0.0 +22589,17,39,50,0.0 +22589,20,81,9,0.0 +22589,47,9.5,27,0.0 +22589,36,19,44,0.0 +22589,10,31,42,0.0 +22589,24,4.5,9,0.0 +22589,40,18.4,36,0.0 +22590,35,18,14,0.0 +22590,16,17.45,37,0.0 +22590,17,39,25,0.0 +22590,33,2.5,22,0.0 +22590,42,14,5,0.0 +22590,27,43.9,15,0.0 +22590,71,21.5,29,0.0 +22590,25,14,17,0.0 +22590,61,28.5,7,0.0 +22590,41,9.65,47,0.0 +22590,8,40,4,0.0 +22590,65,21.05,3,0.0 +22590,40,18.4,36,0.0 +22590,48,12.75,13,0.0 +22590,34,14,39,0.0 +22590,77,13,21,0.0 +22590,47,9.5,25,0.0 +22590,62,49.3,17,0.0 +22590,20,81,16,0.0 +22590,9,97,33,0.0 +22590,14,23.25,8,0.0 +22590,54,7.45,16,0.0 +22590,5,21.35,3,0.0 +22590,39,18,18,0.0 +22590,44,19.45,42,0.0 +22590,21,10,31,0.0 +22590,4,22,1,0.0 +22590,32,32,30,0.0 +22590,43,46,17,0.0 +22590,59,55,46,0.0 +22590,10,31,19,0.0 +22590,73,15,4,0.0 +22590,51,53,40,0.0 +22590,36,19,47,0.0 +22590,38,263.5,42,0.0 +22590,13,6,40,0.0 +22590,46,12,14,0.0 +22590,24,4.5,2,0.0 +22590,49,20,28,0.0 +22590,60,34,11,0.0 +22590,22,21,21,0.0 +22590,1,18,30,0.0 +22590,29,123.79,26,0.0 +22590,26,31.23,2,0.0 +22591,27,43.9,8,0.0 +22591,75,7.75,38,0.0 +22591,25,14,5,0.0 +22591,35,18,23,0.0 +22591,18,62.5,24,0.0 +22591,8,40,5,0.0 +22591,74,10,48,0.0 +22591,17,39,37,0.0 +22591,77,13,7,0.0 +22591,56,38,46,0.0 +22591,42,14,45,0.0 +22591,61,28.5,29,0.0 +22591,64,33.25,9,0.0 +22591,23,9,35,0.0 +22591,29,123.79,17,0.0 +22591,60,34,25,0.0 +22591,69,36,24,0.0 +22591,3,10,31,0.0 +22591,38,263.5,8,0.0 +22591,68,12.5,1,0.0 +22591,34,14,41,0.0 +22591,52,7,1,0.0 +22591,15,15.5,33,0.0 +22591,51,53,41,0.0 +22591,72,34.8,39,0.0 +22591,36,19,2,0.0 +22591,12,38,49,0.0 +22591,76,18,14,0.0 +22591,70,15,34,0.0 +22591,66,17,27,0.0 +22591,55,24,36,0.0 +22591,71,21.5,48,0.0 +22591,20,81,27,0.0 +22591,54,7.45,24,0.0 +22591,9,97,32,0.0 +22591,41,9.65,16,0.0 +22591,39,18,28,0.0 +22591,24,4.5,30,0.0 +22591,43,46,8,0.0 +22591,1,18,28,0.0 +22591,58,13.25,7,0.0 +22591,19,9.2,36,0.0 +22591,47,9.5,40,0.0 +22591,65,21.05,5,0.0 +22591,46,12,47,0.0 +22591,28,45.6,13,0.0 +22591,26,31.23,8,0.0 +22591,14,23.25,10,0.0 +22591,30,25.89,22,0.0 +22591,31,12.5,29,0.0 +22591,33,2.5,44,0.0 +22591,62,49.3,1,0.0 +22591,11,21,44,0.0 +22591,45,9.5,24,0.0 +22591,6,25,14,0.0 +22591,57,19.5,2,0.0 +22591,49,20,42,0.0 +22591,44,19.45,31,0.0 +22592,53,32.8,23,0.0 +22592,40,18.4,25,0.0 +22592,19,9.2,3,0.0 +22592,34,14,2,0.0 +22592,71,21.5,47,0.0 +22592,75,7.75,1,0.0 +22592,77,13,8,0.0 +22592,60,34,4,0.0 +22592,51,53,24,0.0 +22592,12,38,49,0.0 +22592,44,19.45,48,0.0 +22592,58,13.25,3,0.0 +22592,61,28.5,16,0.0 +22593,24,4.5,47,0.0 +22593,68,12.5,40,0.0 +22593,15,15.5,22,0.0 +22594,76,18,24,0.0 +22594,29,123.79,46,0.0 +22594,4,22,48,0.0 +22594,37,26,43,0.0 +22594,71,21.5,47,0.0 +22594,17,39,29,0.0 +22594,57,19.5,42,0.0 +22594,2,19,16,0.0 +22594,23,9,29,0.0 +22594,27,43.9,3,0.0 +22594,65,21.05,26,0.0 +22594,47,9.5,5,0.0 +22594,21,10,8,0.0 +22594,59,55,34,0.0 +22594,6,25,17,0.0 +22594,26,31.23,48,0.0 +22594,50,16.25,7,0.0 +22594,22,21,13,0.0 +22594,19,9.2,3,0.0 +22594,39,18,50,0.0 +22594,74,10,25,0.0 +22594,31,12.5,6,0.0 +22594,33,2.5,20,0.0 +22594,41,9.65,15,0.0 +22594,1,18,18,0.0 +22594,42,14,44,0.0 +22594,13,6,2,0.0 +22594,7,30,20,0.0 +22594,54,7.45,46,0.0 +22594,35,18,49,0.0 +22594,36,19,22,0.0 +22594,11,21,39,0.0 +22594,3,10,3,0.0 +22594,51,53,43,0.0 +22594,75,7.75,27,0.0 +22594,40,18.4,15,0.0 +22594,58,13.25,5,0.0 +22594,63,43.9,45,0.0 +22594,20,81,7,0.0 +22594,24,4.5,4,0.0 +22594,60,34,11,0.0 +22594,72,34.8,19,0.0 +22594,34,14,16,0.0 +22594,16,17.45,36,0.0 +22594,43,46,3,0.0 +22594,14,23.25,9,0.0 +22594,64,33.25,11,0.0 +22594,61,28.5,19,0.0 +22594,25,14,19,0.0 +22594,69,36,7,0.0 +22594,5,21.35,34,0.0 +22594,66,17,6,0.0 +22594,68,12.5,13,0.0 +22594,62,49.3,1,0.0 +22594,9,97,9,0.0 +22594,8,40,17,0.0 +22594,45,9.5,16,0.0 +22594,77,13,45,0.0 +22594,38,263.5,39,0.0 +22594,55,24,38,0.0 +22594,53,32.8,2,0.0 +22594,70,15,44,0.0 +22594,28,45.6,29,0.0 +22595,24,4.5,24,0.0 +22595,56,38,47,0.0 +22595,19,9.2,21,0.0 +22595,46,12,9,0.0 +22595,52,7,24,0.0 +22595,66,17,33,0.0 +22595,29,123.79,24,0.0 +22595,17,39,22,0.0 +22595,77,13,32,0.0 +22595,57,19.5,32,0.0 +22595,65,21.05,36,0.0 +22595,25,14,21,0.0 +22595,45,9.5,4,0.0 +22595,33,2.5,21,0.0 +22595,3,10,39,0.0 +22595,69,36,44,0.0 +22595,32,32,19,0.0 +22595,70,15,35,0.0 +22595,47,9.5,35,0.0 +22595,49,20,2,0.0 +22595,12,38,40,0.0 +22595,40,18.4,12,0.0 +22595,27,43.9,6,0.0 +22595,76,18,36,0.0 +22595,10,31,11,0.0 +22595,60,34,15,0.0 +22596,47,9.5,34,0.0 +22596,26,31.23,29,0.0 +22596,70,15,21,0.0 +22596,6,25,45,0.0 +22596,68,12.5,3,0.0 +22596,28,45.6,31,0.0 +22596,58,13.25,3,0.0 +22596,45,9.5,47,0.0 +22596,11,21,4,0.0 +22596,37,26,19,0.0 +22596,12,38,2,0.0 +22596,15,15.5,31,0.0 +22596,17,39,22,0.0 +22596,27,43.9,12,0.0 +22596,7,30,2,0.0 +22596,56,38,30,0.0 +22596,34,14,49,0.0 +22596,22,21,49,0.0 +22596,16,17.45,50,0.0 +22596,43,46,17,0.0 +22596,74,10,16,0.0 +22596,63,43.9,20,0.0 +22596,51,53,33,0.0 +22596,73,15,42,0.0 +22596,38,263.5,19,0.0 +22596,4,22,35,0.0 +22596,66,17,37,0.0 +22596,65,21.05,4,0.0 +22596,67,14,39,0.0 +22596,21,10,37,0.0 +22596,39,18,21,0.0 +22596,48,12.75,31,0.0 +22596,69,36,27,0.0 +22596,14,23.25,38,0.0 +22596,57,19.5,39,0.0 +22596,10,31,31,0.0 +22596,23,9,38,0.0 +22596,18,62.5,40,0.0 +22596,19,9.2,31,0.0 +22596,50,16.25,44,0.0 +22596,64,33.25,43,0.0 +22596,5,21.35,16,0.0 +22596,49,20,22,0.0 +22596,71,21.5,44,0.0 +22596,76,18,43,0.0 +22596,59,55,49,0.0 +22596,77,13,2,0.0 +22596,24,4.5,46,0.0 +22596,60,34,17,0.0 +22596,61,28.5,46,0.0 +22596,53,32.8,32,0.0 +22596,75,7.75,18,0.0 +22596,32,32,40,0.0 +22596,30,25.89,33,0.0 +22596,62,49.3,12,0.0 +22596,41,9.65,4,0.0 +22596,42,14,30,0.0 +22596,72,34.8,30,0.0 +22596,44,19.45,22,0.0 +22596,52,7,11,0.0 +22596,13,6,41,0.0 +22597,34,14,15,0.0 +22597,60,34,3,0.0 +22597,4,22,29,0.0 +22597,22,21,3,0.0 +22597,55,24,24,0.0 +22597,62,49.3,7,0.0 +22597,69,36,22,0.0 +22597,25,14,37,0.0 +22597,8,40,1,0.0 +22597,30,25.89,49,0.0 +22597,28,45.6,43,0.0 +22597,39,18,33,0.0 +22597,27,43.9,11,0.0 +22597,31,12.5,19,0.0 +22597,9,97,47,0.0 +22597,21,10,50,0.0 +22597,59,55,18,0.0 +22597,43,46,6,0.0 +22597,67,14,30,0.0 +22597,26,31.23,33,0.0 +22597,19,9.2,22,0.0 +22597,63,43.9,5,0.0 +22597,41,9.65,14,0.0 +22597,12,38,26,0.0 +22597,73,15,10,0.0 +22597,5,21.35,9,0.0 +22597,56,38,37,0.0 +22597,33,2.5,25,0.0 +22597,64,33.25,16,0.0 +22597,54,7.45,22,0.0 +22597,23,9,49,0.0 +22597,70,15,36,0.0 +22597,35,18,18,0.0 +22597,76,18,13,0.0 +22597,57,19.5,33,0.0 +22597,65,21.05,37,0.0 +22597,20,81,19,0.0 +22597,50,16.25,13,0.0 +22597,18,62.5,28,0.0 +22597,24,4.5,14,0.0 +22597,72,34.8,13,0.0 +22597,16,17.45,25,0.0 +22597,77,13,49,0.0 +22597,1,18,12,0.0 +22597,38,263.5,17,0.0 +22597,51,53,21,0.0 +22598,36,19,12,0.0 +22598,63,43.9,40,0.0 +22598,40,18.4,19,0.0 +22598,7,30,33,0.0 +22598,61,28.5,14,0.0 +22598,55,24,30,0.0 +22598,46,12,14,0.0 +22598,18,62.5,47,0.0 +22598,65,21.05,44,0.0 +22598,20,81,14,0.0 +22598,26,31.23,25,0.0 +22598,72,34.8,48,0.0 +22598,76,18,20,0.0 +22598,44,19.45,10,0.0 +22598,47,9.5,18,0.0 +22598,58,13.25,35,0.0 +22598,59,55,18,0.0 +22598,21,10,8,0.0 +22598,77,13,15,0.0 +22598,60,34,10,0.0 +22598,69,36,8,0.0 +22598,25,14,8,0.0 +22598,67,14,26,0.0 +22599,66,17,29,0.0 +22599,61,28.5,33,0.0 +22599,34,14,45,0.0 +22599,16,17.45,9,0.0 +22599,15,15.5,34,0.0 +22599,10,31,48,0.0 +22599,7,30,20,0.0 +22599,59,55,16,0.0 +22599,35,18,48,0.0 +22599,27,43.9,43,0.0 +22599,46,12,5,0.0 +22599,68,12.5,23,0.0 +22599,55,24,10,0.0 +22599,45,9.5,45,0.0 +22599,60,34,47,0.0 +22599,2,19,30,0.0 +22599,12,38,32,0.0 +22599,40,18.4,30,0.0 +22599,52,7,13,0.0 +22599,36,19,24,0.0 +22599,28,45.6,6,0.0 +22599,25,14,11,0.0 +22599,24,4.5,22,0.0 +22599,33,2.5,41,0.0 +22599,4,22,40,0.0 +22599,73,15,38,0.0 +22599,48,12.75,45,0.0 +22599,22,21,32,0.0 +22599,65,21.05,3,0.0 +22599,44,19.45,50,0.0 +22599,30,25.89,4,0.0 +22599,71,21.5,14,0.0 +22599,6,25,35,0.0 +22599,76,18,40,0.0 +22599,23,9,9,0.0 +22599,49,20,2,0.0 +22599,13,6,27,0.0 +22599,75,7.75,11,0.0 +22599,63,43.9,2,0.0 +22599,3,10,28,0.0 +22599,42,14,37,0.0 +22599,53,32.8,22,0.0 +22599,9,97,44,0.0 +22599,41,9.65,20,0.0 +22600,15,15.5,2,0.0 +22600,30,25.89,7,0.0 +22600,28,45.6,26,0.0 +22600,1,18,33,0.0 +22600,45,9.5,27,0.0 +22600,16,17.45,15,0.0 +22600,25,14,46,0.0 +22601,28,45.6,14,0.0 +22601,53,32.8,11,0.0 +22601,17,39,18,0.0 +22601,38,263.5,12,0.0 +22601,70,15,2,0.0 +22601,72,34.8,20,0.0 +22602,7,30,41,0.0 +22602,66,17,25,0.0 +22602,3,10,4,0.0 +22602,58,13.25,49,0.0 +22602,74,10,32,0.0 +22602,43,46,26,0.0 +22602,17,39,30,0.0 +22603,21,10,13,0.0 +22603,44,19.45,38,0.0 +22603,12,38,25,0.0 +22603,60,34,40,0.0 +22603,28,45.6,13,0.0 +22603,51,53,1,0.0 +22603,69,36,14,0.0 +22603,13,6,43,0.0 +22603,72,34.8,46,0.0 +22603,56,38,34,0.0 +22603,36,19,23,0.0 +22603,8,40,29,0.0 +22603,3,10,17,0.0 +22603,23,9,46,0.0 +22603,29,123.79,25,0.0 +22603,64,33.25,12,0.0 +22603,22,21,38,0.0 +22603,73,15,28,0.0 +22603,62,49.3,45,0.0 +22603,34,14,44,0.0 +22603,5,21.35,16,0.0 +22604,52,7,24,0.0 +22604,9,97,9,0.0 +22604,58,13.25,19,0.0 +22604,46,12,43,0.0 +22604,26,31.23,15,0.0 +22604,25,14,50,0.0 +22604,40,18.4,10,0.0 +22604,72,34.8,16,0.0 +22604,18,62.5,9,0.0 +22604,28,45.6,23,0.0 +22604,49,20,23,0.0 +22604,57,19.5,43,0.0 +22604,61,28.5,12,0.0 +22604,68,12.5,49,0.0 +22604,69,36,32,0.0 +22604,31,12.5,11,0.0 +22604,38,263.5,33,0.0 +22604,2,19,45,0.0 +22604,33,2.5,8,0.0 +22604,3,10,23,0.0 +22604,39,18,25,0.0 +22604,29,123.79,10,0.0 +22604,76,18,33,0.0 +22604,54,7.45,13,0.0 +22604,8,40,33,0.0 +22604,37,26,16,0.0 +22604,70,15,15,0.0 +22604,16,17.45,8,0.0 +22604,41,9.65,7,0.0 +22604,13,6,23,0.0 +22604,45,9.5,6,0.0 +22604,23,9,6,0.0 +22604,11,21,23,0.0 +22604,7,30,3,0.0 +22604,75,7.75,19,0.0 +22604,35,18,13,0.0 +22604,47,9.5,26,0.0 +22604,4,22,36,0.0 +22604,65,21.05,32,0.0 +22604,24,4.5,46,0.0 +22604,66,17,30,0.0 +22604,30,25.89,42,0.0 +22604,14,23.25,39,0.0 +22604,71,21.5,46,0.0 +22604,50,16.25,26,0.0 +22604,42,14,17,0.0 +22604,32,32,36,0.0 +22604,6,25,19,0.0 +22604,53,32.8,35,0.0 +22604,43,46,4,0.0 +22604,48,12.75,9,0.0 +22604,12,38,25,0.0 +22604,17,39,47,0.0 +22604,1,18,25,0.0 +22604,74,10,42,0.0 +22604,51,53,46,0.0 +22605,64,33.25,21,0.0 +22605,50,16.25,31,0.0 +22605,38,263.5,8,0.0 +22605,36,19,27,0.0 +22605,26,31.23,34,0.0 +22605,14,23.25,39,0.0 +22605,33,2.5,6,0.0 +22605,32,32,50,0.0 +22605,77,13,46,0.0 +22605,6,25,42,0.0 +22605,62,49.3,8,0.0 +22605,51,53,16,0.0 +22605,56,38,42,0.0 +22605,15,15.5,42,0.0 +22605,10,31,20,0.0 +22605,22,21,6,0.0 +22605,47,9.5,1,0.0 +22605,2,19,43,0.0 +22605,1,18,27,0.0 +22605,52,7,31,0.0 +22605,21,10,5,0.0 +22605,4,22,9,0.0 +22605,43,46,47,0.0 +22605,53,32.8,48,0.0 +22605,72,34.8,47,0.0 +22605,24,4.5,31,0.0 +22605,45,9.5,31,0.0 +22605,42,14,41,0.0 +22605,65,21.05,27,0.0 +22605,18,62.5,28,0.0 +22605,20,81,33,0.0 +22605,5,21.35,28,0.0 +22605,31,12.5,22,0.0 +22605,29,123.79,47,0.0 +22605,17,39,7,0.0 +22605,19,9.2,11,0.0 +22605,7,30,18,0.0 +22605,30,25.89,14,0.0 +22605,12,38,36,0.0 +22605,13,6,39,0.0 +22605,71,21.5,49,0.0 +22605,74,10,19,0.0 +22605,75,7.75,4,0.0 +22605,9,97,39,0.0 +22605,41,9.65,34,0.0 +22605,58,13.25,41,0.0 +22605,69,36,2,0.0 +22605,48,12.75,34,0.0 +22605,63,43.9,4,0.0 +22605,11,21,38,0.0 +22605,49,20,30,0.0 +22605,67,14,43,0.0 +22605,39,18,4,0.0 +22605,28,45.6,18,0.0 +22605,57,19.5,12,0.0 +22605,66,17,38,0.0 +22605,70,15,4,0.0 +22605,37,26,17,0.0 +22605,76,18,12,0.0 +22605,68,12.5,18,0.0 +22605,23,9,6,0.0 +22605,8,40,7,0.0 +22606,17,39,14,0.0 +22606,10,31,9,0.0 +22606,8,40,36,0.0 +22606,42,14,40,0.0 +22606,51,53,4,0.0 +22606,4,22,5,0.0 +22606,48,12.75,17,0.0 +22606,21,10,21,0.0 +22606,58,13.25,38,0.0 +22606,36,19,11,0.0 +22606,55,24,30,0.0 +22606,74,10,37,0.0 +22606,62,49.3,7,0.0 +22606,54,7.45,3,0.0 +22606,25,14,20,0.0 +22606,22,21,5,0.0 +22606,1,18,3,0.0 +22606,9,97,31,0.0 +22606,18,62.5,18,0.0 +22606,45,9.5,32,0.0 +22606,70,15,15,0.0 +22606,56,38,37,0.0 +22606,57,19.5,7,0.0 +22606,44,19.45,23,0.0 +22606,6,25,18,0.0 +22606,61,28.5,23,0.0 +22606,67,14,49,0.0 +22606,23,9,31,0.0 +22606,65,21.05,3,0.0 +22606,41,9.65,34,0.0 +22606,75,7.75,27,0.0 +22606,35,18,3,0.0 +22606,60,34,19,0.0 +22606,5,21.35,21,0.0 +22606,19,9.2,24,0.0 +22606,52,7,24,0.0 +22606,39,18,25,0.0 +22606,20,81,21,0.0 +22606,64,33.25,17,0.0 +22606,59,55,31,0.0 +22606,29,123.79,36,0.0 +22606,71,21.5,32,0.0 +22606,28,45.6,2,0.0 +22606,32,32,21,0.0 +22606,15,15.5,44,0.0 +22606,66,17,17,0.0 +22606,14,23.25,31,0.0 +22606,31,12.5,46,0.0 +22606,43,46,48,0.0 +22606,27,43.9,44,0.0 +22606,46,12,22,0.0 +22606,12,38,4,0.0 +22606,11,21,1,0.0 +22606,3,10,46,0.0 +22606,53,32.8,40,0.0 +22607,74,10,18,0.0 +22607,43,46,36,0.0 +22607,5,21.35,44,0.0 +22607,42,14,36,0.0 +22607,35,18,19,0.0 +22607,3,10,4,0.0 +22607,58,13.25,44,0.0 +22607,20,81,40,0.0 +22607,23,9,7,0.0 +22607,14,23.25,23,0.0 +22607,25,14,21,0.0 +22607,12,38,25,0.0 +22607,41,9.65,41,0.0 +22607,52,7,36,0.0 +22607,60,34,40,0.0 +22607,4,22,14,0.0 +22607,22,21,29,0.0 +22607,2,19,50,0.0 +22607,72,34.8,27,0.0 +22607,26,31.23,4,0.0 +22607,13,6,35,0.0 +22607,16,17.45,23,0.0 +22607,59,55,9,0.0 +22607,54,7.45,18,0.0 +22607,44,19.45,35,0.0 +22607,69,36,38,0.0 +22607,17,39,32,0.0 +22607,10,31,45,0.0 +22607,38,263.5,25,0.0 +22607,67,14,27,0.0 +22607,7,30,48,0.0 +22607,27,43.9,28,0.0 +22607,34,14,33,0.0 +22607,51,53,22,0.0 +22607,62,49.3,44,0.0 +22607,9,97,43,0.0 +22607,33,2.5,35,0.0 +22607,64,33.25,43,0.0 +22607,39,18,34,0.0 +22607,77,13,25,0.0 +22607,55,24,14,0.0 +22607,57,19.5,14,0.0 +22607,8,40,40,0.0 +22607,29,123.79,24,0.0 +22608,43,46,22,0.0 +22608,59,55,18,0.0 +22608,16,17.45,7,0.0 +22608,56,38,5,0.0 +22608,14,23.25,2,0.0 +22608,72,34.8,29,0.0 +22608,46,12,42,0.0 +22608,22,21,10,0.0 +22608,42,14,7,0.0 +22608,71,21.5,1,0.0 +22608,5,21.35,29,0.0 +22608,2,19,46,0.0 +22608,58,13.25,29,0.0 +22608,31,12.5,22,0.0 +22608,45,9.5,45,0.0 +22608,44,19.45,30,0.0 +22608,24,4.5,11,0.0 +22608,29,123.79,44,0.0 +22608,3,10,33,0.0 +22608,8,40,13,0.0 +22608,7,30,18,0.0 +22608,38,263.5,20,0.0 +22608,73,15,16,0.0 +22608,25,14,48,0.0 +22608,54,7.45,45,0.0 +22608,17,39,14,0.0 +22608,37,26,20,0.0 +22608,15,15.5,36,0.0 +22608,26,31.23,17,0.0 +22608,18,62.5,24,0.0 +22608,68,12.5,38,0.0 +22608,57,19.5,32,0.0 +22608,50,16.25,2,0.0 +22608,55,24,5,0.0 +22608,30,25.89,23,0.0 +22608,13,6,9,0.0 +22608,49,20,25,0.0 +22608,75,7.75,14,0.0 +22608,65,21.05,5,0.0 +22608,76,18,4,0.0 +22608,35,18,10,0.0 +22608,11,21,12,0.0 +22608,34,14,45,0.0 +22608,62,49.3,16,0.0 +22608,66,17,48,0.0 +22608,27,43.9,9,0.0 +22608,41,9.65,34,0.0 +22608,21,10,14,0.0 +22608,23,9,15,0.0 +22608,67,14,23,0.0 +22608,77,13,35,0.0 +22608,60,34,4,0.0 +22608,10,31,20,0.0 +22608,4,22,21,0.0 +22608,70,15,29,0.0 +22608,64,33.25,23,0.0 +22608,33,2.5,23,0.0 +22608,52,7,37,0.0 +22608,63,43.9,17,0.0 +22608,1,18,10,0.0 +22608,20,81,45,0.0 +22608,53,32.8,7,0.0 +22608,69,36,35,0.0 +22608,9,97,47,0.0 +22608,61,28.5,26,0.0 +22608,12,38,39,0.0 +22608,28,45.6,9,0.0 +22609,52,7,44,0.0 +22609,48,12.75,48,0.0 +22609,33,2.5,35,0.0 +22609,23,9,39,0.0 +22609,1,18,29,0.0 +22609,38,263.5,33,0.0 +22609,17,39,18,0.0 +22609,6,25,41,0.0 +22609,14,23.25,29,0.0 +22609,19,9.2,14,0.0 +22609,61,28.5,17,0.0 +22609,32,32,41,0.0 +22609,57,19.5,37,0.0 +22609,18,62.5,5,0.0 +22609,43,46,24,0.0 +22609,70,15,43,0.0 +22609,58,13.25,6,0.0 +22609,46,12,9,0.0 +22609,3,10,12,0.0 +22609,44,19.45,6,0.0 +22609,66,17,24,0.0 +22609,40,18.4,3,0.0 +22609,74,10,15,0.0 +22609,13,6,20,0.0 +22609,34,14,10,0.0 +22609,2,19,37,0.0 +22609,15,15.5,34,0.0 +22609,76,18,49,0.0 +22609,5,21.35,23,0.0 +22609,50,16.25,22,0.0 +22609,11,21,38,0.0 +22609,36,19,41,0.0 +22609,49,20,48,0.0 +22609,56,38,31,0.0 +22609,63,43.9,6,0.0 +22609,12,38,33,0.0 +22609,51,53,18,0.0 +22609,31,12.5,16,0.0 +22609,65,21.05,2,0.0 +22609,45,9.5,13,0.0 +22609,62,49.3,24,0.0 +22609,41,9.65,42,0.0 +22609,37,26,40,0.0 +22609,4,22,30,0.0 +22609,53,32.8,5,0.0 +22609,22,21,31,0.0 +22609,39,18,17,0.0 +22609,29,123.79,38,0.0 +22609,30,25.89,20,0.0 +22609,28,45.6,27,0.0 +22609,47,9.5,43,0.0 +22609,25,14,32,0.0 +22609,21,10,42,0.0 +22609,26,31.23,48,0.0 +22609,68,12.5,28,0.0 +22609,69,36,2,0.0 +22609,73,15,43,0.0 +22609,72,34.8,6,0.0 +22610,50,16.25,6,0.0 +22610,27,43.9,17,0.0 +22610,18,62.5,44,0.0 +22610,1,18,26,0.0 +22610,31,12.5,5,0.0 +22610,62,49.3,44,0.0 +22610,39,18,17,0.0 +22610,33,2.5,50,0.0 +22610,2,19,2,0.0 +22610,54,7.45,8,0.0 +22610,8,40,11,0.0 +22610,49,20,13,0.0 +22610,71,21.5,9,0.0 +22610,77,13,15,0.0 +22611,48,12.75,15,0.0 +22611,18,62.5,47,0.0 +22611,3,10,29,0.0 +22611,27,43.9,37,0.0 +22611,69,36,29,0.0 +22611,21,10,14,0.0 +22611,23,9,40,0.0 +22611,42,14,19,0.0 +22611,9,97,41,0.0 +22611,71,21.5,2,0.0 +22611,20,81,46,0.0 +22611,8,40,48,0.0 +22611,1,18,48,0.0 +22611,75,7.75,26,0.0 +22611,62,49.3,17,0.0 +22611,54,7.45,20,0.0 +22611,16,17.45,20,0.0 +22611,55,24,31,0.0 +22611,47,9.5,44,0.0 +22611,32,32,47,0.0 +22611,38,263.5,7,0.0 +22611,63,43.9,49,0.0 +22611,36,19,13,0.0 +22611,77,13,13,0.0 +22611,28,45.6,29,0.0 +22611,44,19.45,9,0.0 +22611,30,25.89,23,0.0 +22611,40,18.4,36,0.0 +22611,66,17,16,0.0 +22611,74,10,44,0.0 +22611,52,7,24,0.0 +22611,11,21,28,0.0 +22611,76,18,44,0.0 +22611,34,14,29,0.0 +22611,53,32.8,36,0.0 +22611,64,33.25,20,0.0 +22611,6,25,32,0.0 +22611,49,20,3,0.0 +22611,10,31,20,0.0 +22611,7,30,31,0.0 +22611,60,34,5,0.0 +22611,58,13.25,14,0.0 +22611,5,21.35,10,0.0 +22611,67,14,1,0.0 +22611,39,18,35,0.0 +22611,25,14,23,0.0 +22611,50,16.25,3,0.0 +22611,17,39,10,0.0 +22611,4,22,24,0.0 +22611,65,21.05,7,0.0 +22611,13,6,6,0.0 +22611,29,123.79,32,0.0 +22611,24,4.5,25,0.0 +22611,35,18,26,0.0 +22611,15,15.5,50,0.0 +22611,56,38,49,0.0 +22611,33,2.5,49,0.0 +22611,45,9.5,45,0.0 +22611,51,53,40,0.0 +22611,37,26,24,0.0 +22611,41,9.65,2,0.0 +22611,19,9.2,45,0.0 +22611,2,19,13,0.0 +22611,26,31.23,48,0.0 +22611,12,38,7,0.0 +22611,43,46,26,0.0 +22611,22,21,46,0.0 +22611,14,23.25,16,0.0 +22611,59,55,18,0.0 +22611,31,12.5,13,0.0 +22611,61,28.5,44,0.0 +22611,57,19.5,5,0.0 +22611,68,12.5,40,0.0 +22611,70,15,16,0.0 +22611,72,34.8,44,0.0 +22611,73,15,20,0.0 +22611,46,12,13,0.0 +22612,39,18,47,0.0 +22612,68,12.5,16,0.0 +22612,45,9.5,43,0.0 +22612,21,10,35,0.0 +22612,58,13.25,8,0.0 +22612,37,26,1,0.0 +22612,76,18,43,0.0 +22612,66,17,17,0.0 +22612,1,18,11,0.0 +22612,5,21.35,8,0.0 +22612,64,33.25,33,0.0 +22612,3,10,48,0.0 +22612,24,4.5,34,0.0 +22612,67,14,2,0.0 +22612,62,49.3,44,0.0 +22612,75,7.75,31,0.0 +22612,17,39,21,0.0 +22612,53,32.8,46,0.0 +22612,52,7,29,0.0 +22612,71,21.5,37,0.0 +22612,32,32,14,0.0 +22612,41,9.65,5,0.0 +22612,38,263.5,44,0.0 +22612,59,55,47,0.0 +22612,15,15.5,2,0.0 +22612,70,15,46,0.0 +22612,18,62.5,8,0.0 +22612,13,6,26,0.0 +22612,19,9.2,21,0.0 +22612,29,123.79,26,0.0 +22612,22,21,5,0.0 +22612,10,31,36,0.0 +22612,33,2.5,15,0.0 +22612,54,7.45,31,0.0 +22612,72,34.8,7,0.0 +22612,50,16.25,45,0.0 +22612,14,23.25,12,0.0 +22612,47,9.5,16,0.0 +22612,35,18,28,0.0 +22612,7,30,42,0.0 +22613,34,14,5,0.0 +22613,24,4.5,2,0.0 +22613,2,19,19,0.0 +22613,76,18,10,0.0 +22613,66,17,10,0.0 +22613,12,38,24,0.0 +22613,50,16.25,28,0.0 +22613,22,21,25,0.0 +22613,11,21,36,0.0 +22613,30,25.89,27,0.0 +22614,36,19,17,0.0 +22614,76,18,34,0.0 +22614,5,21.35,30,0.0 +22614,19,9.2,17,0.0 +22614,9,97,36,0.0 +22614,66,17,44,0.0 +22614,10,31,28,0.0 +22614,6,25,38,0.0 +22614,35,18,25,0.0 +22614,13,6,45,0.0 +22614,20,81,47,0.0 +22614,54,7.45,9,0.0 +22614,75,7.75,37,0.0 +22614,18,62.5,3,0.0 +22614,65,21.05,29,0.0 +22614,8,40,49,0.0 +22614,11,21,10,0.0 +22615,62,49.3,35,0.0 +22615,3,10,26,0.0 +22615,29,123.79,19,0.0 +22615,18,62.5,2,0.0 +22615,75,7.75,26,0.0 +22615,54,7.45,36,0.0 +22615,30,25.89,1,0.0 +22615,4,22,39,0.0 +22615,71,21.5,38,0.0 +22615,59,55,16,0.0 +22615,44,19.45,39,0.0 +22615,50,16.25,10,0.0 +22615,33,2.5,5,0.0 +22615,45,9.5,38,0.0 +22615,28,45.6,18,0.0 +22615,76,18,5,0.0 +22615,53,32.8,44,0.0 +22615,66,17,12,0.0 +22615,61,28.5,30,0.0 +22615,73,15,19,0.0 +22615,21,10,10,0.0 +22615,13,6,29,0.0 +22615,51,53,17,0.0 +22615,60,34,10,0.0 +22615,6,25,11,0.0 +22615,16,17.45,11,0.0 +22615,55,24,17,0.0 +22615,12,38,18,0.0 +22615,19,9.2,25,0.0 +22615,57,19.5,49,0.0 +22615,58,13.25,49,0.0 +22615,5,21.35,10,0.0 +22615,9,97,50,0.0 +22615,69,36,23,0.0 +22615,43,46,37,0.0 +22615,26,31.23,1,0.0 +22615,74,10,9,0.0 +22615,25,14,35,0.0 +22615,24,4.5,26,0.0 +22615,31,12.5,13,0.0 +22615,35,18,17,0.0 +22615,1,18,24,0.0 +22615,47,9.5,37,0.0 +22615,22,21,15,0.0 +22615,38,263.5,42,0.0 +22615,70,15,9,0.0 +22615,49,20,39,0.0 +22615,72,34.8,45,0.0 +22615,40,18.4,44,0.0 +22615,56,38,28,0.0 +22615,65,21.05,14,0.0 +22615,64,33.25,20,0.0 +22616,26,31.23,26,0.0 +22616,49,20,48,0.0 +22616,55,24,29,0.0 +22616,65,21.05,13,0.0 +22616,10,31,13,0.0 +22616,64,33.25,22,0.0 +22616,56,38,2,0.0 +22616,34,14,47,0.0 +22616,43,46,16,0.0 +22616,77,13,29,0.0 +22616,54,7.45,5,0.0 +22616,72,34.8,22,0.0 +22616,52,7,39,0.0 +22616,16,17.45,13,0.0 +22616,69,36,24,0.0 +22616,76,18,9,0.0 +22616,12,38,13,0.0 +22616,47,9.5,26,0.0 +22616,63,43.9,50,0.0 +22616,39,18,30,0.0 +22616,59,55,36,0.0 +22616,11,21,12,0.0 +22616,14,23.25,41,0.0 +22616,46,12,17,0.0 +22616,40,18.4,33,0.0 +22617,46,12,20,0.0 +22617,38,263.5,46,0.0 +22617,49,20,16,0.0 +22617,37,26,34,0.0 +22617,36,19,26,0.0 +22617,41,9.65,48,0.0 +22617,34,14,7,0.0 +22617,59,55,41,0.0 +22617,67,14,23,0.0 +22617,12,38,17,0.0 +22617,17,39,18,0.0 +22617,27,43.9,17,0.0 +22617,58,13.25,25,0.0 +22617,65,21.05,1,0.0 +22617,8,40,44,0.0 +22617,71,21.5,9,0.0 +22617,57,19.5,27,0.0 +22617,77,13,50,0.0 +22617,10,31,42,0.0 +22617,75,7.75,46,0.0 +22617,60,34,8,0.0 +22617,19,9.2,49,0.0 +22617,21,10,8,0.0 +22617,23,9,23,0.0 +22617,2,19,25,0.0 +22617,20,81,32,0.0 +22617,74,10,28,0.0 +22617,48,12.75,31,0.0 +22617,63,43.9,46,0.0 +22617,22,21,14,0.0 +22617,32,32,43,0.0 +22617,5,21.35,42,0.0 +22617,45,9.5,34,0.0 +22617,3,10,33,0.0 +22617,55,24,15,0.0 +22617,33,2.5,4,0.0 +22617,53,32.8,36,0.0 +22617,6,25,36,0.0 +22617,50,16.25,1,0.0 +22617,16,17.45,33,0.0 +22617,66,17,29,0.0 +22617,24,4.5,42,0.0 +22617,73,15,7,0.0 +22617,31,12.5,22,0.0 +22617,56,38,34,0.0 +22617,42,14,12,0.0 +22617,29,123.79,38,0.0 +22617,7,30,11,0.0 +22617,39,18,9,0.0 +22617,72,34.8,11,0.0 +22617,25,14,34,0.0 +22617,4,22,43,0.0 +22617,15,15.5,16,0.0 +22617,18,62.5,9,0.0 +22617,51,53,21,0.0 +22617,43,46,35,0.0 +22617,64,33.25,46,0.0 +22617,68,12.5,13,0.0 +22617,9,97,6,0.0 +22617,76,18,9,0.0 +22617,61,28.5,2,0.0 +22617,40,18.4,32,0.0 +22617,35,18,13,0.0 +22617,70,15,3,0.0 +22617,62,49.3,44,0.0 +22617,11,21,24,0.0 +22617,26,31.23,38,0.0 +22617,52,7,25,0.0 +22617,13,6,15,0.0 +22617,28,45.6,28,0.0 +22618,16,17.45,32,0.0 +22618,26,31.23,42,0.0 +22618,63,43.9,11,0.0 +22618,25,14,5,0.0 +22618,71,21.5,4,0.0 +22618,60,34,10,0.0 +22618,54,7.45,22,0.0 +22618,43,46,29,0.0 +22618,75,7.75,45,0.0 +22618,55,24,5,0.0 +22618,65,21.05,34,0.0 +22618,72,34.8,42,0.0 +22618,31,12.5,41,0.0 +22618,19,9.2,42,0.0 +22618,15,15.5,36,0.0 +22618,10,31,20,0.0 +22618,41,9.65,33,0.0 +22618,13,6,21,0.0 +22618,23,9,17,0.0 +22618,37,26,47,0.0 +22618,46,12,21,0.0 +22618,34,14,27,0.0 +22618,42,14,18,0.0 +22618,1,18,28,0.0 +22618,38,263.5,3,0.0 +22618,8,40,15,0.0 +22618,21,10,50,0.0 +22618,64,33.25,15,0.0 +22618,51,53,34,0.0 +22618,69,36,5,0.0 +22618,67,14,29,0.0 +22618,52,7,21,0.0 +22618,35,18,12,0.0 +22618,14,23.25,4,0.0 +22618,9,97,37,0.0 +22618,32,32,27,0.0 +22618,3,10,26,0.0 +22618,5,21.35,25,0.0 +22618,74,10,13,0.0 +22618,29,123.79,5,0.0 +22618,40,18.4,19,0.0 +22618,39,18,34,0.0 +22618,33,2.5,13,0.0 +22618,11,21,1,0.0 +22619,25,14,5,0.0 +22619,13,6,26,0.0 +22619,74,10,4,0.0 +22619,77,13,30,0.0 +22619,32,32,13,0.0 +22619,31,12.5,15,0.0 +22619,51,53,17,0.0 +22619,30,25.89,42,0.0 +22619,49,20,22,0.0 +22619,55,24,45,0.0 +22619,23,9,16,0.0 +22619,26,31.23,11,0.0 +22619,42,14,13,0.0 +22619,16,17.45,5,0.0 +22619,18,62.5,1,0.0 +22619,67,14,30,0.0 +22619,1,18,34,0.0 +22619,52,7,19,0.0 +22619,41,9.65,4,0.0 +22619,9,97,47,0.0 +22619,14,23.25,29,0.0 +22619,39,18,29,0.0 +22619,20,81,10,0.0 +22619,15,15.5,2,0.0 +22619,33,2.5,3,0.0 +22619,27,43.9,10,0.0 +22619,22,21,44,0.0 +22619,72,34.8,9,0.0 +22619,48,12.75,37,0.0 +22619,12,38,17,0.0 +22619,21,10,42,0.0 +22619,68,12.5,15,0.0 +22619,2,19,50,0.0 +22619,3,10,19,0.0 +22619,76,18,5,0.0 +22619,66,17,21,0.0 +22619,11,21,28,0.0 +22619,6,25,11,0.0 +22619,38,263.5,33,0.0 +22619,40,18.4,16,0.0 +22619,71,21.5,39,0.0 +22619,43,46,33,0.0 +22619,36,19,49,0.0 +22619,29,123.79,5,0.0 +22619,73,15,33,0.0 +22620,38,263.5,30,0.0 +22620,22,21,7,0.0 +22620,7,30,47,0.0 +22620,53,32.8,47,0.0 +22620,63,43.9,7,0.0 +22620,18,62.5,28,0.0 +22620,46,12,15,0.0 +22620,3,10,32,0.0 +22620,20,81,37,0.0 +22620,1,18,12,0.0 +22620,16,17.45,13,0.0 +22620,9,97,33,0.0 +22620,2,19,44,0.0 +22620,57,19.5,25,0.0 +22620,17,39,32,0.0 +22620,30,25.89,3,0.0 +22620,47,9.5,44,0.0 +22620,8,40,33,0.0 +22620,66,17,14,0.0 +22620,67,14,26,0.0 +22620,60,34,28,0.0 +22620,10,31,37,0.0 +22620,77,13,6,0.0 +22620,40,18.4,45,0.0 +22620,73,15,29,0.0 +22620,70,15,50,0.0 +22620,29,123.79,23,0.0 +22620,74,10,25,0.0 +22620,59,55,19,0.0 +22620,56,38,31,0.0 +22620,44,19.45,41,0.0 +22620,52,7,35,0.0 +22620,31,12.5,31,0.0 +22620,41,9.65,12,0.0 +22620,68,12.5,48,0.0 +22620,69,36,24,0.0 +22620,4,22,36,0.0 +22620,21,10,50,0.0 +22620,58,13.25,25,0.0 +22620,23,9,1,0.0 +22620,54,7.45,4,0.0 +22620,42,14,18,0.0 +22620,65,21.05,18,0.0 +22620,50,16.25,36,0.0 +22620,34,14,21,0.0 +22620,72,34.8,43,0.0 +22620,75,7.75,27,0.0 +22620,33,2.5,37,0.0 +22620,43,46,18,0.0 +22620,35,18,6,0.0 +22620,12,38,5,0.0 +22620,62,49.3,35,0.0 +22620,25,14,30,0.0 +22620,76,18,23,0.0 +22620,49,20,46,0.0 +22620,39,18,10,0.0 +22620,24,4.5,5,0.0 +22620,64,33.25,3,0.0 +22620,27,43.9,34,0.0 +22620,51,53,41,0.0 +22620,36,19,47,0.0 +22620,28,45.6,7,0.0 +22620,15,15.5,24,0.0 +22620,71,21.5,18,0.0 +22620,14,23.25,33,0.0 +22620,48,12.75,27,0.0 +22620,55,24,29,0.0 +22620,6,25,11,0.0 +22621,43,46,40,0.0 +22621,14,23.25,8,0.0 +22621,59,55,20,0.0 +22621,76,18,25,0.0 +22621,39,18,33,0.0 +22621,71,21.5,5,0.0 +22621,25,14,41,0.0 +22621,20,81,11,0.0 +22621,66,17,36,0.0 +22621,7,30,25,0.0 +22621,61,28.5,10,0.0 +22621,37,26,21,0.0 +22621,26,31.23,36,0.0 +22621,53,32.8,3,0.0 +22621,32,32,28,0.0 +22621,5,21.35,38,0.0 +22621,13,6,27,0.0 +22621,27,43.9,11,0.0 +22621,28,45.6,42,0.0 +22621,67,14,12,0.0 +22621,10,31,3,0.0 +22621,34,14,25,0.0 +22621,73,15,10,0.0 +22621,23,9,28,0.0 +22621,60,34,6,0.0 +22621,56,38,28,0.0 +22621,36,19,4,0.0 +22621,29,123.79,28,0.0 +22621,33,2.5,17,0.0 +22621,11,21,48,0.0 +22621,47,9.5,31,0.0 +22621,6,25,29,0.0 +22621,70,15,30,0.0 +22621,3,10,11,0.0 +22621,72,34.8,36,0.0 +22621,42,14,14,0.0 +22621,24,4.5,1,0.0 +22621,62,49.3,37,0.0 +22621,2,19,18,0.0 +22621,54,7.45,16,0.0 +22621,8,40,43,0.0 +22621,77,13,30,0.0 +22621,30,25.89,5,0.0 +22621,16,17.45,32,0.0 +22621,49,20,44,0.0 +22621,38,263.5,41,0.0 +22621,1,18,1,0.0 +22621,65,21.05,9,0.0 +22621,51,53,27,0.0 +22621,41,9.65,12,0.0 +22621,69,36,35,0.0 +22621,52,7,24,0.0 +22622,33,2.5,10,0.0 +22622,44,19.45,41,0.0 +22622,30,25.89,23,0.0 +22622,12,38,6,0.0 +22622,13,6,42,0.0 +22622,69,36,24,0.0 +22622,71,21.5,41,0.0 +22622,73,15,44,0.0 +22622,63,43.9,1,0.0 +22622,39,18,7,0.0 +22622,15,15.5,33,0.0 +22622,42,14,40,0.0 +22622,48,12.75,38,0.0 +22622,52,7,9,0.0 +22622,11,21,20,0.0 +22622,18,62.5,49,0.0 +22622,27,43.9,39,0.0 +22622,70,15,45,0.0 +22622,34,14,33,0.0 +22623,41,9.65,44,0.0 +22623,16,17.45,42,0.0 +22623,71,21.5,7,0.0 +22623,34,14,30,0.0 +22623,39,18,21,0.0 +22623,46,12,31,0.0 +22623,24,4.5,22,0.0 +22623,20,81,5,0.0 +22623,26,31.23,31,0.0 +22623,19,9.2,28,0.0 +22623,42,14,24,0.0 +22623,35,18,6,0.0 +22623,43,46,48,0.0 +22623,17,39,23,0.0 +22623,58,13.25,48,0.0 +22623,74,10,5,0.0 +22624,44,19.45,39,0.0 +22624,47,9.5,20,0.0 +22624,61,28.5,8,0.0 +22624,31,12.5,20,0.0 +22624,45,9.5,18,0.0 +22624,76,18,16,0.0 +22624,38,263.5,26,0.0 +22624,25,14,3,0.0 +22624,75,7.75,38,0.0 +22624,4,22,5,0.0 +22624,64,33.25,29,0.0 +22624,18,62.5,7,0.0 +22624,2,19,37,0.0 +22624,42,14,8,0.0 +22624,60,34,20,0.0 +22624,6,25,22,0.0 +22624,27,43.9,50,0.0 +22624,56,38,48,0.0 +22624,72,34.8,20,0.0 +22624,1,18,32,0.0 +22624,35,18,25,0.0 +22624,70,15,14,0.0 +22624,9,97,42,0.0 +22624,46,12,7,0.0 +22624,66,17,3,0.0 +22624,13,6,9,0.0 +22624,17,39,45,0.0 +22624,57,19.5,6,0.0 +22624,14,23.25,25,0.0 +22624,40,18.4,24,0.0 +22624,67,14,3,0.0 +22624,54,7.45,33,0.0 +22624,77,13,26,0.0 +22624,3,10,30,0.0 +22624,5,21.35,48,0.0 +22624,37,26,30,0.0 +22624,30,25.89,33,0.0 +22624,8,40,13,0.0 +22624,26,31.23,5,0.0 +22624,20,81,27,0.0 +22624,39,18,9,0.0 +22624,49,20,12,0.0 +22624,43,46,16,0.0 +22624,50,16.25,31,0.0 +22624,52,7,10,0.0 +22624,63,43.9,50,0.0 +22624,62,49.3,2,0.0 +22624,11,21,31,0.0 +22624,32,32,12,0.0 +22624,16,17.45,15,0.0 +22624,41,9.65,2,0.0 +22624,65,21.05,50,0.0 +22624,59,55,30,0.0 +22624,48,12.75,45,0.0 +22624,53,32.8,43,0.0 +22624,33,2.5,30,0.0 +22624,10,31,14,0.0 +22624,36,19,1,0.0 +22624,28,45.6,40,0.0 +22624,19,9.2,34,0.0 +22624,55,24,22,0.0 +22624,23,9,7,0.0 +22624,12,38,12,0.0 +22624,58,13.25,42,0.0 +22624,24,4.5,49,0.0 +22624,74,10,21,0.0 +22624,22,21,16,0.0 +22625,22,21,40,0.0 +22625,28,45.6,31,0.0 +22625,68,12.5,21,0.0 +22625,12,38,31,0.0 +22625,8,40,29,0.0 +22625,44,19.45,5,0.0 +22625,69,36,1,0.0 +22625,30,25.89,43,0.0 +22625,52,7,14,0.0 +22625,33,2.5,7,0.0 +22625,34,14,20,0.0 +22625,65,21.05,27,0.0 +22625,3,10,28,0.0 +22626,6,25,41,0.0 +22626,71,21.5,7,0.0 +22626,9,97,19,0.0 +22626,49,20,24,0.0 +22626,26,31.23,32,0.0 +22626,56,38,9,0.0 +22626,37,26,34,0.0 +22626,58,13.25,26,0.0 +22626,34,14,21,0.0 +22626,23,9,2,0.0 +22626,53,32.8,42,0.0 +22626,33,2.5,38,0.0 +22626,3,10,22,0.0 +22626,27,43.9,27,0.0 +22626,7,30,14,0.0 +22626,43,46,6,0.0 +22626,19,9.2,40,0.0 +22626,76,18,28,0.0 +22626,41,9.65,16,0.0 +22626,68,12.5,40,0.0 +22626,29,123.79,35,0.0 +22626,40,18.4,7,0.0 +22626,15,15.5,23,0.0 +22626,35,18,19,0.0 +22626,17,39,8,0.0 +22626,11,21,45,0.0 +22626,67,14,35,0.0 +22626,32,32,17,0.0 +22626,47,9.5,43,0.0 +22626,51,53,34,0.0 +22626,25,14,4,0.0 +22627,16,17.45,16,0.0 +22627,25,14,4,0.0 +22627,22,21,48,0.0 +22627,34,14,46,0.0 +22627,52,7,27,0.0 +22627,59,55,45,0.0 +22627,65,21.05,46,0.0 +22627,57,19.5,13,0.0 +22627,54,7.45,47,0.0 +22627,64,33.25,17,0.0 +22627,40,18.4,24,0.0 +22627,67,14,9,0.0 +22627,51,53,28,0.0 +22627,66,17,15,0.0 +22627,56,38,26,0.0 +22627,69,36,20,0.0 +22627,12,38,26,0.0 +22627,43,46,2,0.0 +22627,77,13,36,0.0 +22627,19,9.2,40,0.0 +22627,9,97,7,0.0 +22627,73,15,16,0.0 +22627,31,12.5,34,0.0 +22627,11,21,25,0.0 +22627,76,18,14,0.0 +22627,70,15,23,0.0 +22627,3,10,23,0.0 +22627,14,23.25,6,0.0 +22627,21,10,45,0.0 +22627,5,21.35,22,0.0 +22627,68,12.5,18,0.0 +22627,6,25,4,0.0 +22627,42,14,7,0.0 +22627,60,34,19,0.0 +22627,47,9.5,19,0.0 +22627,35,18,17,0.0 +22627,17,39,2,0.0 +22627,75,7.75,3,0.0 +22627,10,31,13,0.0 +22627,36,19,31,0.0 +22627,24,4.5,28,0.0 +22627,74,10,5,0.0 +22627,50,16.25,47,0.0 +22627,48,12.75,4,0.0 +22627,49,20,35,0.0 +22627,38,263.5,50,0.0 +22627,71,21.5,13,0.0 +22627,30,25.89,31,0.0 +22627,15,15.5,17,0.0 +22627,29,123.79,1,0.0 +22627,55,24,41,0.0 +22627,18,62.5,18,0.0 +22627,1,18,28,0.0 +22627,72,34.8,35,0.0 +22627,13,6,3,0.0 +22627,41,9.65,36,0.0 +22627,4,22,2,0.0 +22627,32,32,38,0.0 +22627,8,40,35,0.0 +22627,2,19,22,0.0 +22627,37,26,40,0.0 +22627,23,9,31,0.0 +22627,44,19.45,11,0.0 +22627,62,49.3,30,0.0 +22627,61,28.5,33,0.0 +22627,46,12,8,0.0 +22627,58,13.25,12,0.0 +22627,63,43.9,15,0.0 +22627,26,31.23,12,0.0 +22627,39,18,1,0.0 +22628,26,31.23,22,0.0 +22628,77,13,7,0.0 +22628,2,19,49,0.0 +22628,73,15,19,0.0 +22628,39,18,29,0.0 +22628,70,15,29,0.0 +22628,59,55,10,0.0 +22628,31,12.5,5,0.0 +22628,15,15.5,20,0.0 +22628,40,18.4,37,0.0 +22628,54,7.45,6,0.0 +22628,33,2.5,8,0.0 +22628,66,17,39,0.0 +22628,62,49.3,43,0.0 +22628,57,19.5,50,0.0 +22628,5,21.35,14,0.0 +22628,45,9.5,3,0.0 +22628,52,7,29,0.0 +22628,23,9,46,0.0 +22628,34,14,17,0.0 +22628,60,34,14,0.0 +22628,71,21.5,37,0.0 +22628,51,53,31,0.0 +22628,56,38,34,0.0 +22628,74,10,18,0.0 +22628,68,12.5,8,0.0 +22628,72,34.8,38,0.0 +22628,55,24,49,0.0 +22628,24,4.5,24,0.0 +22628,7,30,8,0.0 +22628,9,97,19,0.0 +22628,38,263.5,31,0.0 +22628,44,19.45,19,0.0 +22628,22,21,50,0.0 +22628,58,13.25,35,0.0 +22628,16,17.45,9,0.0 +22628,19,9.2,4,0.0 +22628,32,32,37,0.0 +22628,50,16.25,26,0.0 +22628,61,28.5,47,0.0 +22628,75,7.75,35,0.0 +22628,14,23.25,14,0.0 +22628,11,21,11,0.0 +22628,46,12,35,0.0 +22628,67,14,39,0.0 +22628,10,31,39,0.0 +22628,8,40,28,0.0 +22628,13,6,2,0.0 +22628,4,22,40,0.0 +22628,47,9.5,41,0.0 +22628,53,32.8,46,0.0 +22628,35,18,35,0.0 +22628,42,14,47,0.0 +22628,37,26,3,0.0 +22628,17,39,50,0.0 +22628,63,43.9,18,0.0 +22628,64,33.25,10,0.0 +22628,65,21.05,50,0.0 +22628,18,62.5,39,0.0 +22628,28,45.6,38,0.0 +22628,21,10,35,0.0 +22628,36,19,32,0.0 +22628,12,38,1,0.0 +22628,6,25,48,0.0 +22628,25,14,42,0.0 +22628,48,12.75,29,0.0 +22628,49,20,20,0.0 +22628,41,9.65,13,0.0 +22628,3,10,9,0.0 +22629,52,7,27,0.0 +22629,36,19,26,0.0 +22629,50,16.25,20,0.0 +22629,2,19,21,0.0 +22629,27,43.9,9,0.0 +22629,35,18,6,0.0 +22629,22,21,6,0.0 +22629,29,123.79,4,0.0 +22629,65,21.05,48,0.0 +22629,15,15.5,1,0.0 +22629,16,17.45,10,0.0 +22629,56,38,3,0.0 +22629,54,7.45,16,0.0 +22629,44,19.45,21,0.0 +22629,77,13,23,0.0 +22629,53,32.8,3,0.0 +22629,11,21,4,0.0 +22629,4,22,12,0.0 +22629,1,18,34,0.0 +22629,60,34,8,0.0 +22629,28,45.6,6,0.0 +22629,45,9.5,35,0.0 +22629,25,14,14,0.0 +22629,55,24,12,0.0 +22629,37,26,26,0.0 +22630,21,10,33,0.0 +22630,61,28.5,28,0.0 +22630,73,15,14,0.0 +22630,62,49.3,16,0.0 +22630,35,18,11,0.0 +22630,5,21.35,8,0.0 +22630,36,19,28,0.0 +22630,33,2.5,44,0.0 +22630,65,21.05,1,0.0 +22630,37,26,20,0.0 +22630,10,31,38,0.0 +22630,15,15.5,1,0.0 +22630,34,14,9,0.0 +22630,26,31.23,25,0.0 +22630,17,39,29,0.0 +22630,57,19.5,46,0.0 +22630,52,7,33,0.0 +22630,64,33.25,3,0.0 +22631,18,62.5,29,0.0 +22631,11,21,38,0.0 +22631,17,39,20,0.0 +22631,36,19,14,0.0 +22631,16,17.45,15,0.0 +22631,14,23.25,14,0.0 +22631,41,9.65,11,0.0 +22631,48,12.75,32,0.0 +22631,52,7,2,0.0 +22631,39,18,13,0.0 +22631,63,43.9,26,0.0 +22631,38,263.5,28,0.0 +22631,29,123.79,18,0.0 +22631,42,14,48,0.0 +22631,37,26,10,0.0 +22631,50,16.25,16,0.0 +22631,57,19.5,27,0.0 +22631,69,36,26,0.0 +22631,43,46,20,0.0 +22631,32,32,45,0.0 +22631,65,21.05,12,0.0 +22631,61,28.5,9,0.0 +22631,33,2.5,46,0.0 +22631,49,20,5,0.0 +22632,52,7,10,0.0 +22632,9,97,40,0.0 +22632,59,55,28,0.0 +22632,57,19.5,42,0.0 +22632,22,21,33,0.0 +22632,66,17,40,0.0 +22632,31,12.5,4,0.0 +22632,30,25.89,2,0.0 +22632,53,32.8,22,0.0 +22632,49,20,21,0.0 +22632,10,31,33,0.0 +22632,15,15.5,4,0.0 +22632,58,13.25,14,0.0 +22632,45,9.5,33,0.0 +22632,26,31.23,44,0.0 +22633,53,32.8,12,0.0 +22633,64,33.25,37,0.0 +22633,20,81,50,0.0 +22633,27,43.9,16,0.0 +22633,40,18.4,39,0.0 +22633,38,263.5,18,0.0 +22633,17,39,12,0.0 +22633,74,10,12,0.0 +22633,46,12,37,0.0 +22633,15,15.5,31,0.0 +22633,9,97,46,0.0 +22633,50,16.25,35,0.0 +22633,44,19.45,23,0.0 +22633,71,21.5,41,0.0 +22633,16,17.45,33,0.0 +22633,8,40,12,0.0 +22633,11,21,22,0.0 +22633,47,9.5,39,0.0 +22633,36,19,46,0.0 +22633,37,26,26,0.0 +22633,67,14,6,0.0 +22633,33,2.5,6,0.0 +22633,54,7.45,31,0.0 +22633,24,4.5,20,0.0 +22633,30,25.89,47,0.0 +22633,28,45.6,38,0.0 +22634,45,9.5,13,0.0 +22634,24,4.5,27,0.0 +22634,60,34,6,0.0 +22634,34,14,19,0.0 +22634,73,15,28,0.0 +22634,8,40,33,0.0 +22634,9,97,27,0.0 +22634,38,263.5,22,0.0 +22634,13,6,42,0.0 +22634,2,19,29,0.0 +22634,75,7.75,24,0.0 +22634,72,34.8,16,0.0 +22634,39,18,26,0.0 +22634,66,17,20,0.0 +22634,16,17.45,30,0.0 +22634,30,25.89,3,0.0 +22634,27,43.9,22,0.0 +22634,46,12,34,0.0 +22634,67,14,2,0.0 +22634,5,21.35,42,0.0 +22634,35,18,24,0.0 +22634,37,26,41,0.0 +22634,20,81,9,0.0 +22634,61,28.5,6,0.0 +22634,10,31,30,0.0 +22634,44,19.45,27,0.0 +22634,47,9.5,12,0.0 +22634,49,20,27,0.0 +22634,29,123.79,46,0.0 +22634,12,38,9,0.0 +22634,40,18.4,43,0.0 +22634,43,46,1,0.0 +22634,48,12.75,48,0.0 +22634,19,9.2,27,0.0 +22634,69,36,18,0.0 +22634,59,55,27,0.0 +22634,63,43.9,25,0.0 +22634,6,25,19,0.0 +22634,64,33.25,16,0.0 +22634,68,12.5,31,0.0 +22634,50,16.25,35,0.0 +22634,31,12.5,16,0.0 +22634,17,39,12,0.0 +22634,71,21.5,8,0.0 +22634,76,18,9,0.0 +22634,21,10,28,0.0 +22634,32,32,31,0.0 +22634,3,10,19,0.0 +22634,70,15,24,0.0 +22634,22,21,13,0.0 +22634,53,32.8,1,0.0 +22634,74,10,50,0.0 +22634,4,22,9,0.0 +22634,15,15.5,30,0.0 +22634,77,13,41,0.0 +22634,14,23.25,25,0.0 +22634,11,21,48,0.0 +22634,1,18,14,0.0 +22634,41,9.65,27,0.0 +22634,42,14,11,0.0 +22634,65,21.05,46,0.0 +22634,18,62.5,43,0.0 +22634,28,45.6,31,0.0 +22634,56,38,22,0.0 +22634,36,19,22,0.0 +22634,52,7,19,0.0 +22634,7,30,35,0.0 +22634,26,31.23,38,0.0 +22634,25,14,46,0.0 +22634,62,49.3,35,0.0 +22635,69,36,46,0.0 +22635,57,19.5,37,0.0 +22635,19,9.2,28,0.0 +22635,32,32,34,0.0 +22635,31,12.5,33,0.0 +22635,56,38,29,0.0 +22635,44,19.45,27,0.0 +22635,14,23.25,1,0.0 +22635,58,13.25,28,0.0 +22635,20,81,15,0.0 +22635,55,24,33,0.0 +22635,6,25,23,0.0 +22635,2,19,15,0.0 +22635,67,14,39,0.0 +22635,47,9.5,24,0.0 +22635,36,19,25,0.0 +22635,45,9.5,6,0.0 +22635,25,14,41,0.0 +22635,43,46,48,0.0 +22635,28,45.6,23,0.0 +22635,65,21.05,7,0.0 +22635,49,20,32,0.0 +22635,53,32.8,3,0.0 +22635,34,14,7,0.0 +22635,22,21,37,0.0 +22635,18,62.5,8,0.0 +22635,39,18,10,0.0 +22635,61,28.5,27,0.0 +22635,62,49.3,15,0.0 +22635,24,4.5,36,0.0 +22635,1,18,34,0.0 +22635,37,26,35,0.0 +22635,46,12,17,0.0 +22635,66,17,45,0.0 +22635,76,18,38,0.0 +22635,9,97,2,0.0 +22635,35,18,43,0.0 +22635,52,7,3,0.0 +22635,7,30,12,0.0 +22635,75,7.75,7,0.0 +22635,71,21.5,32,0.0 +22635,72,34.8,50,0.0 +22635,4,22,38,0.0 +22635,30,25.89,10,0.0 +22635,40,18.4,11,0.0 +22635,74,10,40,0.0 +22635,68,12.5,48,0.0 +22635,50,16.25,6,0.0 +22635,3,10,35,0.0 +22635,77,13,49,0.0 +22635,73,15,22,0.0 +22635,51,53,43,0.0 +22635,23,9,23,0.0 +22635,48,12.75,19,0.0 +22635,10,31,43,0.0 +22635,27,43.9,12,0.0 +22635,5,21.35,42,0.0 +22635,8,40,14,0.0 +22635,38,263.5,15,0.0 +22635,63,43.9,12,0.0 +22636,33,2.5,38,0.0 +22636,18,62.5,28,0.0 +22636,21,10,27,0.0 +22636,29,123.79,9,0.0 +22636,42,14,11,0.0 +22636,20,81,14,0.0 +22636,57,19.5,2,0.0 +22636,64,33.25,20,0.0 +22636,12,38,2,0.0 +22636,65,21.05,33,0.0 +22636,27,43.9,10,0.0 +22636,2,19,45,0.0 +22636,61,28.5,9,0.0 +22636,22,21,17,0.0 +22636,40,18.4,8,0.0 +22636,53,32.8,33,0.0 +22636,5,21.35,10,0.0 +22636,39,18,47,0.0 +22636,60,34,30,0.0 +22636,38,263.5,45,0.0 +22636,26,31.23,2,0.0 +22636,54,7.45,50,0.0 +22636,44,19.45,18,0.0 +22636,50,16.25,29,0.0 +22636,24,4.5,11,0.0 +22636,10,31,15,0.0 +22636,47,9.5,17,0.0 +22636,72,34.8,49,0.0 +22636,52,7,46,0.0 +22636,1,18,38,0.0 +22636,51,53,11,0.0 +22636,73,15,6,0.0 +22636,35,18,5,0.0 +22636,31,12.5,12,0.0 +22636,13,6,24,0.0 +22636,49,20,42,0.0 +22636,48,12.75,14,0.0 +22636,56,38,20,0.0 +22636,4,22,11,0.0 +22636,55,24,23,0.0 +22636,46,12,35,0.0 +22636,9,97,16,0.0 +22636,43,46,25,0.0 +22636,8,40,15,0.0 +22637,57,19.5,39,0.0 +22637,58,13.25,30,0.0 +22637,61,28.5,23,0.0 +22637,73,15,20,0.0 +22637,10,31,34,0.0 +22637,75,7.75,12,0.0 +22637,59,55,42,0.0 +22637,31,12.5,13,0.0 +22637,60,34,16,0.0 +22637,26,31.23,32,0.0 +22637,67,14,40,0.0 +22637,56,38,48,0.0 +22637,11,21,6,0.0 +22637,22,21,25,0.0 +22637,49,20,27,0.0 +22637,62,49.3,44,0.0 +22637,23,9,26,0.0 +22637,44,19.45,2,0.0 +22637,5,21.35,30,0.0 +22637,45,9.5,36,0.0 +22637,27,43.9,42,0.0 +22637,34,14,40,0.0 +22637,55,24,2,0.0 +22637,41,9.65,1,0.0 +22637,71,21.5,12,0.0 +22637,13,6,29,0.0 +22637,32,32,47,0.0 +22637,15,15.5,15,0.0 +22637,64,33.25,17,0.0 +22637,74,10,12,0.0 +22637,33,2.5,33,0.0 +22637,76,18,10,0.0 +22637,4,22,4,0.0 +22638,64,33.25,41,0.0 +22638,51,53,46,0.0 +22638,73,15,4,0.0 +22638,5,21.35,50,0.0 +22638,34,14,15,0.0 +22638,25,14,3,0.0 +22638,55,24,5,0.0 +22638,46,12,28,0.0 +22638,48,12.75,28,0.0 +22638,45,9.5,19,0.0 +22638,75,7.75,30,0.0 +22638,10,31,7,0.0 +22638,17,39,7,0.0 +22638,18,62.5,34,0.0 +22638,53,32.8,2,0.0 +22638,62,49.3,45,0.0 +22638,68,12.5,21,0.0 +22638,61,28.5,8,0.0 +22638,70,15,36,0.0 +22638,47,9.5,4,0.0 +22638,11,21,21,0.0 +22638,35,18,4,0.0 +22638,39,18,33,0.0 +22638,41,9.65,31,0.0 +22638,44,19.45,47,0.0 +22638,1,18,4,0.0 +22638,74,10,26,0.0 +22638,31,12.5,5,0.0 +22638,42,14,1,0.0 +22638,65,21.05,43,0.0 +22638,20,81,23,0.0 +22638,29,123.79,14,0.0 +22638,7,30,10,0.0 +22638,8,40,5,0.0 +22638,76,18,33,0.0 +22638,54,7.45,15,0.0 +22638,28,45.6,16,0.0 +22638,19,9.2,16,0.0 +22638,22,21,36,0.0 +22638,12,38,26,0.0 +22638,43,46,19,0.0 +22638,16,17.45,4,0.0 +22638,14,23.25,16,0.0 +22638,37,26,21,0.0 +22638,6,25,26,0.0 +22638,3,10,4,0.0 +22638,15,15.5,10,0.0 +22638,27,43.9,28,0.0 +22638,77,13,47,0.0 +22638,69,36,22,0.0 +22638,56,38,14,0.0 +22638,67,14,50,0.0 +22638,13,6,49,0.0 +22638,52,7,39,0.0 +22638,71,21.5,5,0.0 +22638,50,16.25,36,0.0 +22638,9,97,33,0.0 +22638,59,55,48,0.0 +22638,33,2.5,8,0.0 +22638,21,10,6,0.0 +22638,30,25.89,9,0.0 +22638,26,31.23,31,0.0 +22638,23,9,34,0.0 +22638,60,34,33,0.0 +22638,63,43.9,33,0.0 +22638,32,32,15,0.0 +22638,49,20,23,0.0 +22638,24,4.5,8,0.0 +22638,40,18.4,8,0.0 +22638,72,34.8,41,0.0 +22638,66,17,30,0.0 +22638,58,13.25,12,0.0 +22638,36,19,30,0.0 +22638,57,19.5,33,0.0 +22639,42,14,19,0.0 +22639,38,263.5,35,0.0 +22639,28,45.6,22,0.0 +22639,60,34,5,0.0 +22639,61,28.5,15,0.0 +22639,68,12.5,44,0.0 +22639,70,15,13,0.0 +22639,9,97,5,0.0 +22639,2,19,25,0.0 +22639,65,21.05,1,0.0 +22639,31,12.5,10,0.0 +22639,43,46,5,0.0 +22639,13,6,47,0.0 +22639,20,81,40,0.0 +22639,36,19,5,0.0 +22639,64,33.25,38,0.0 +22639,48,12.75,8,0.0 +22639,18,62.5,50,0.0 +22639,5,21.35,8,0.0 +22639,55,24,28,0.0 +22639,46,12,10,0.0 +22639,71,21.5,27,0.0 +22639,50,16.25,30,0.0 +22639,16,17.45,3,0.0 +22639,47,9.5,30,0.0 +22639,66,17,43,0.0 +22639,3,10,20,0.0 +22639,14,23.25,15,0.0 +22639,54,7.45,4,0.0 +22639,19,9.2,10,0.0 +22639,6,25,37,0.0 +22639,11,21,23,0.0 +22639,1,18,10,0.0 +22639,49,20,5,0.0 +22639,21,10,47,0.0 +22639,77,13,3,0.0 +22639,29,123.79,21,0.0 +22639,52,7,33,0.0 +22639,23,9,1,0.0 +22639,76,18,13,0.0 +22639,57,19.5,46,0.0 +22639,27,43.9,40,0.0 +22639,26,31.23,34,0.0 +22639,10,31,6,0.0 +22639,37,26,35,0.0 +22639,12,38,12,0.0 +22639,59,55,47,0.0 +22639,7,30,29,0.0 +22639,67,14,26,0.0 +22639,62,49.3,10,0.0 +22639,8,40,31,0.0 +22639,32,32,16,0.0 +22639,17,39,40,0.0 +22639,41,9.65,27,0.0 +22639,4,22,46,0.0 +22639,75,7.75,40,0.0 +22639,44,19.45,25,0.0 +22639,40,18.4,17,0.0 +22639,63,43.9,5,0.0 +22639,35,18,26,0.0 +22639,53,32.8,6,0.0 +22639,39,18,27,0.0 +22639,51,53,25,0.0 +22639,69,36,43,0.0 +22639,34,14,19,0.0 +22639,30,25.89,25,0.0 +22639,56,38,46,0.0 +22640,30,25.89,44,0.0 +22640,32,32,29,0.0 +22640,74,10,3,0.0 +22640,65,21.05,25,0.0 +22640,60,34,36,0.0 +22640,67,14,38,0.0 +22640,10,31,13,0.0 +22640,4,22,48,0.0 +22640,34,14,42,0.0 +22640,55,24,43,0.0 +22640,77,13,16,0.0 +22640,5,21.35,18,0.0 +22640,23,9,47,0.0 +22640,47,9.5,36,0.0 +22640,21,10,30,0.0 +22640,72,34.8,38,0.0 +22640,59,55,39,0.0 +22640,18,62.5,29,0.0 +22640,28,45.6,29,0.0 +22640,14,23.25,32,0.0 +22640,19,9.2,47,0.0 +22640,22,21,30,0.0 +22640,53,32.8,44,0.0 +22640,71,21.5,15,0.0 +22640,35,18,18,0.0 +22640,42,14,24,0.0 +22640,17,39,10,0.0 +22640,13,6,49,0.0 +22640,38,263.5,44,0.0 +22640,37,26,3,0.0 +22640,15,15.5,43,0.0 +22640,70,15,8,0.0 +22640,58,13.25,32,0.0 +22640,25,14,40,0.0 +22640,20,81,38,0.0 +22640,26,31.23,42,0.0 +22640,61,28.5,20,0.0 +22640,39,18,43,0.0 +22640,40,18.4,9,0.0 +22640,63,43.9,38,0.0 +22640,48,12.75,19,0.0 +22640,7,30,28,0.0 +22640,46,12,17,0.0 +22640,36,19,35,0.0 +22640,75,7.75,15,0.0 +22640,9,97,24,0.0 +22640,16,17.45,43,0.0 +22640,6,25,36,0.0 +22640,62,49.3,19,0.0 +22640,51,53,29,0.0 +22640,31,12.5,18,0.0 +22640,41,9.65,44,0.0 +22640,24,4.5,4,0.0 +22640,12,38,41,0.0 +22640,66,17,40,0.0 +22641,45,9.5,36,0.0 +22641,19,9.2,2,0.0 +22641,3,10,47,0.0 +22641,1,18,44,0.0 +22641,57,19.5,47,0.0 +22641,16,17.45,9,0.0 +22641,21,10,2,0.0 +22641,24,4.5,6,0.0 +22641,31,12.5,44,0.0 +22641,30,25.89,27,0.0 +22641,38,263.5,50,0.0 +22641,50,16.25,39,0.0 +22641,29,123.79,17,0.0 +22641,60,34,39,0.0 +22641,15,15.5,16,0.0 +22641,14,23.25,40,0.0 +22641,58,13.25,18,0.0 +22641,76,18,18,0.0 +22641,41,9.65,34,0.0 +22642,1,18,8,0.0 +22642,10,31,23,0.0 +22642,71,21.5,47,0.0 +22642,70,15,36,0.0 +22642,50,16.25,33,0.0 +22642,44,19.45,7,0.0 +22642,53,32.8,6,0.0 +22642,34,14,42,0.0 +22642,32,32,5,0.0 +22642,48,12.75,26,0.0 +22642,14,23.25,30,0.0 +22642,37,26,1,0.0 +22642,28,45.6,34,0.0 +22642,68,12.5,37,0.0 +22642,65,21.05,39,0.0 +22642,4,22,4,0.0 +22642,16,17.45,43,0.0 +22642,12,38,18,0.0 +22642,40,18.4,21,0.0 +22642,15,15.5,10,0.0 +22642,54,7.45,9,0.0 +22642,56,38,6,0.0 +22642,5,21.35,19,0.0 +22642,25,14,2,0.0 +22642,73,15,2,0.0 +22642,6,25,10,0.0 +22642,42,14,25,0.0 +22642,59,55,49,0.0 +22642,75,7.75,46,0.0 +22642,22,21,19,0.0 +22642,23,9,40,0.0 +22642,7,30,15,0.0 +22643,15,15.5,43,0.0 +22643,71,21.5,18,0.0 +22643,35,18,43,0.0 +22643,74,10,37,0.0 +22643,10,31,29,0.0 +22643,63,43.9,43,0.0 +22643,27,43.9,18,0.0 +22643,24,4.5,23,0.0 +22643,43,46,34,0.0 +22643,68,12.5,40,0.0 +22643,61,28.5,37,0.0 +22643,5,21.35,13,0.0 +22643,60,34,20,0.0 +22643,14,23.25,27,0.0 +22643,36,19,2,0.0 +22643,4,22,50,0.0 +22643,33,2.5,40,0.0 +22643,2,19,30,0.0 +22643,17,39,17,0.0 +22643,39,18,8,0.0 +22643,57,19.5,42,0.0 +22643,12,38,19,0.0 +22643,59,55,4,0.0 +22643,52,7,32,0.0 +22643,50,16.25,26,0.0 +22643,69,36,24,0.0 +22643,54,7.45,28,0.0 +22643,62,49.3,11,0.0 +22643,30,25.89,26,0.0 +22643,73,15,14,0.0 +22643,51,53,48,0.0 +22643,67,14,13,0.0 +22643,31,12.5,35,0.0 +22643,49,20,44,0.0 +22643,64,33.25,40,0.0 +22643,53,32.8,30,0.0 +22643,21,10,50,0.0 +22643,20,81,12,0.0 +22643,44,19.45,37,0.0 +22643,65,21.05,27,0.0 +22643,18,62.5,33,0.0 +22643,3,10,16,0.0 +22643,34,14,35,0.0 +22643,32,32,35,0.0 +22643,76,18,21,0.0 +22643,1,18,26,0.0 +22643,19,9.2,11,0.0 +22643,56,38,2,0.0 +22643,55,24,20,0.0 +22643,41,9.65,8,0.0 +22643,66,17,48,0.0 +22644,6,25,14,0.0 +22644,75,7.75,38,0.0 +22644,31,12.5,17,0.0 +22644,15,15.5,5,0.0 +22644,12,38,46,0.0 +22644,13,6,6,0.0 +22644,9,97,45,0.0 +22644,43,46,25,0.0 +22644,27,43.9,35,0.0 +22644,62,49.3,11,0.0 +22644,55,24,9,0.0 +22644,10,31,10,0.0 +22644,54,7.45,9,0.0 +22644,37,26,9,0.0 +22644,53,32.8,5,0.0 +22644,33,2.5,40,0.0 +22644,61,28.5,1,0.0 +22644,66,17,29,0.0 +22644,20,81,48,0.0 +22645,75,7.75,30,0.0 +22645,76,18,19,0.0 +22645,1,18,45,0.0 +22645,31,12.5,29,0.0 +22645,27,43.9,23,0.0 +22645,17,39,18,0.0 +22645,46,12,13,0.0 +22645,24,4.5,31,0.0 +22645,77,13,26,0.0 +22645,73,15,48,0.0 +22645,38,263.5,27,0.0 +22645,48,12.75,24,0.0 +22645,47,9.5,13,0.0 +22645,45,9.5,13,0.0 +22645,54,7.45,8,0.0 +22645,8,40,11,0.0 +22645,22,21,19,0.0 +22645,32,32,48,0.0 +22645,20,81,23,0.0 +22645,23,9,25,0.0 +22645,4,22,5,0.0 +22645,51,53,6,0.0 +22645,39,18,3,0.0 +22645,33,2.5,1,0.0 +22645,44,19.45,24,0.0 +22645,14,23.25,37,0.0 +22645,7,30,20,0.0 +22645,64,33.25,36,0.0 +22645,55,24,49,0.0 +22645,13,6,21,0.0 +22645,42,14,33,0.0 +22645,68,12.5,18,0.0 +22645,35,18,40,0.0 +22645,56,38,42,0.0 +22645,37,26,26,0.0 +22645,62,49.3,49,0.0 +22645,57,19.5,15,0.0 +22645,6,25,43,0.0 +22645,65,21.05,23,0.0 +22645,21,10,29,0.0 +22645,30,25.89,42,0.0 +22645,70,15,27,0.0 +22645,60,34,48,0.0 +22645,3,10,47,0.0 +22645,18,62.5,37,0.0 +22645,2,19,24,0.0 +22646,62,49.3,20,0.0 +22646,20,81,18,0.0 +22646,10,31,43,0.0 +22646,72,34.8,30,0.0 +22646,59,55,8,0.0 +22646,30,25.89,43,0.0 +22646,74,10,50,0.0 +22646,40,18.4,20,0.0 +22646,67,14,11,0.0 +22646,7,30,6,0.0 +22646,31,12.5,13,0.0 +22646,75,7.75,33,0.0 +22646,26,31.23,8,0.0 +22646,9,97,9,0.0 +22646,76,18,7,0.0 +22646,27,43.9,2,0.0 +22646,69,36,14,0.0 +22646,71,21.5,2,0.0 +22646,50,16.25,32,0.0 +22646,54,7.45,41,0.0 +22646,18,62.5,39,0.0 +22646,42,14,39,0.0 +22646,22,21,1,0.0 +22646,12,38,45,0.0 +22646,36,19,11,0.0 +22646,21,10,32,0.0 +22646,6,25,34,0.0 +22646,11,21,7,0.0 +22646,28,45.6,13,0.0 +22646,29,123.79,42,0.0 +22646,64,33.25,40,0.0 +22646,39,18,33,0.0 +22646,55,24,17,0.0 +22646,37,26,13,0.0 +22646,61,28.5,5,0.0 +22646,44,19.45,29,0.0 +22646,73,15,1,0.0 +22646,3,10,13,0.0 +22646,14,23.25,24,0.0 +22646,51,53,2,0.0 +22646,70,15,1,0.0 +22646,25,14,45,0.0 +22646,58,13.25,36,0.0 +22646,34,14,7,0.0 +22646,38,263.5,2,0.0 +22646,68,12.5,19,0.0 +22646,65,21.05,21,0.0 +22646,56,38,33,0.0 +22646,17,39,9,0.0 +22646,52,7,48,0.0 +22646,1,18,46,0.0 +22647,38,263.5,1,0.0 +22647,15,15.5,46,0.0 +22647,45,9.5,30,0.0 +22647,44,19.45,13,0.0 +22647,63,43.9,38,0.0 +22647,39,18,32,0.0 +22647,43,46,50,0.0 +22647,76,18,8,0.0 +22647,35,18,9,0.0 +22647,40,18.4,48,0.0 +22647,26,31.23,5,0.0 +22647,21,10,24,0.0 +22647,66,17,29,0.0 +22647,77,13,14,0.0 +22647,10,31,35,0.0 +22647,49,20,24,0.0 +22647,12,38,32,0.0 +22647,18,62.5,2,0.0 +22647,20,81,46,0.0 +22647,41,9.65,25,0.0 +22647,60,34,35,0.0 +22647,17,39,37,0.0 +22647,70,15,4,0.0 +22647,62,49.3,22,0.0 +22647,55,24,26,0.0 +22647,46,12,43,0.0 +22647,8,40,8,0.0 +22647,3,10,43,0.0 +22647,74,10,24,0.0 +22647,31,12.5,21,0.0 +22647,50,16.25,37,0.0 +22647,56,38,37,0.0 +22647,9,97,19,0.0 +22647,13,6,16,0.0 +22647,53,32.8,34,0.0 +22647,5,21.35,26,0.0 +22647,71,21.5,15,0.0 +22647,24,4.5,9,0.0 +22647,57,19.5,3,0.0 +22647,6,25,38,0.0 +22647,59,55,26,0.0 +22647,52,7,16,0.0 +22647,64,33.25,19,0.0 +22647,48,12.75,42,0.0 +22647,2,19,24,0.0 +22647,69,36,6,0.0 +22647,67,14,25,0.0 +22647,14,23.25,30,0.0 +22647,11,21,4,0.0 +22647,61,28.5,21,0.0 +22647,30,25.89,11,0.0 +22647,65,21.05,24,0.0 +22647,23,9,15,0.0 +22647,27,43.9,23,0.0 +22647,37,26,6,0.0 +22647,73,15,1,0.0 +22647,75,7.75,11,0.0 +22647,54,7.45,47,0.0 +22647,19,9.2,35,0.0 +22647,42,14,20,0.0 +22647,29,123.79,12,0.0 +22647,51,53,23,0.0 +22647,68,12.5,32,0.0 +22647,22,21,35,0.0 +22647,72,34.8,15,0.0 +22648,43,46,31,0.0 +22648,28,45.6,42,0.0 +22648,77,13,3,0.0 +22648,33,2.5,18,0.0 +22648,47,9.5,4,0.0 +22648,49,20,16,0.0 +22648,31,12.5,22,0.0 +22648,15,15.5,47,0.0 +22648,50,16.25,2,0.0 +22648,53,32.8,18,0.0 +22648,75,7.75,24,0.0 +22648,73,15,5,0.0 +22648,64,33.25,24,0.0 +22648,34,14,16,0.0 +22648,57,19.5,15,0.0 +22648,44,19.45,11,0.0 +22648,6,25,42,0.0 +22648,45,9.5,6,0.0 +22648,24,4.5,28,0.0 +22648,54,7.45,44,0.0 +22648,4,22,23,0.0 +22648,7,30,50,0.0 +22648,11,21,38,0.0 +22648,12,38,35,0.0 +22648,3,10,20,0.0 +22648,37,26,12,0.0 +22648,59,55,24,0.0 +22648,10,31,41,0.0 +22648,29,123.79,41,0.0 +22648,17,39,28,0.0 +22648,52,7,6,0.0 +22648,65,21.05,46,0.0 +22648,46,12,28,0.0 +22648,19,9.2,26,0.0 +22648,40,18.4,46,0.0 +22648,70,15,34,0.0 +22649,25,14,17,0.0 +22649,38,263.5,22,0.0 +22649,28,45.6,42,0.0 +22649,20,81,48,0.0 +22649,22,21,49,0.0 +22649,46,12,35,0.0 +22649,4,22,27,0.0 +22649,45,9.5,22,0.0 +22649,33,2.5,48,0.0 +22649,5,21.35,32,0.0 +22649,66,17,46,0.0 +22649,73,15,13,0.0 +22649,60,34,9,0.0 +22649,50,16.25,42,0.0 +22649,63,43.9,18,0.0 +22649,17,39,20,0.0 +22649,72,34.8,46,0.0 +22649,8,40,13,0.0 +22649,12,38,26,0.0 +22649,77,13,49,0.0 +22649,39,18,7,0.0 +22649,42,14,23,0.0 +22649,76,18,16,0.0 +22649,26,31.23,36,0.0 +22649,15,15.5,46,0.0 +22649,7,30,6,0.0 +22649,64,33.25,13,0.0 +22649,23,9,14,0.0 +22649,13,6,47,0.0 +22649,37,26,40,0.0 +22649,47,9.5,9,0.0 +22649,1,18,33,0.0 +22649,44,19.45,3,0.0 +22649,11,21,31,0.0 +22649,14,23.25,5,0.0 +22649,53,32.8,31,0.0 +22649,16,17.45,45,0.0 +22649,40,18.4,2,0.0 +22649,24,4.5,29,0.0 +22649,43,46,50,0.0 +22649,32,32,41,0.0 +22649,48,12.75,16,0.0 +22649,10,31,12,0.0 +22649,75,7.75,35,0.0 +22649,51,53,38,0.0 +22649,19,9.2,22,0.0 +22649,29,123.79,10,0.0 +22649,41,9.65,4,0.0 +22649,27,43.9,23,0.0 +22649,67,14,40,0.0 +22649,62,49.3,40,0.0 +22649,59,55,13,0.0 +22649,3,10,9,0.0 +22649,30,25.89,9,0.0 +22649,49,20,2,0.0 +22649,70,15,23,0.0 +22649,58,13.25,24,0.0 +22649,65,21.05,12,0.0 +22649,69,36,5,0.0 +22649,35,18,14,0.0 +22649,71,21.5,6,0.0 +22649,74,10,3,0.0 +22649,55,24,25,0.0 +22649,54,7.45,43,0.0 +22649,18,62.5,33,0.0 +22649,2,19,27,0.0 +22649,9,97,26,0.0 +22649,36,19,6,0.0 +22649,21,10,40,0.0 +22649,61,28.5,37,0.0 +22649,57,19.5,25,0.0 +22649,34,14,18,0.0 +22649,56,38,49,0.0 +22650,31,12.5,17,0.0 +22650,37,26,50,0.0 +22650,49,20,2,0.0 +22650,65,21.05,5,0.0 +22650,69,36,14,0.0 +22650,64,33.25,13,0.0 +22650,2,19,4,0.0 +22650,56,38,19,0.0 +22650,48,12.75,40,0.0 +22650,46,12,15,0.0 +22650,10,31,21,0.0 +22650,47,9.5,23,0.0 +22650,1,18,15,0.0 +22650,68,12.5,25,0.0 +22650,30,25.89,12,0.0 +22650,38,263.5,23,0.0 +22650,52,7,33,0.0 +22650,14,23.25,20,0.0 +22650,42,14,15,0.0 +22650,58,13.25,16,0.0 +22650,59,55,8,0.0 +22650,51,53,37,0.0 +22650,9,97,35,0.0 +22650,7,30,46,0.0 +22650,72,34.8,2,0.0 +22650,6,25,14,0.0 +22650,27,43.9,15,0.0 +22650,60,34,10,0.0 +22650,70,15,27,0.0 +22650,29,123.79,15,0.0 +22650,33,2.5,6,0.0 +22650,15,15.5,9,0.0 +22650,62,49.3,40,0.0 +22650,74,10,27,0.0 +22650,76,18,35,0.0 +22650,11,21,1,0.0 +22650,5,21.35,11,0.0 +22650,44,19.45,8,0.0 +22650,36,19,47,0.0 +22650,45,9.5,45,0.0 +22650,25,14,37,0.0 +22650,12,38,15,0.0 +22650,73,15,25,0.0 +22650,63,43.9,9,0.0 +22650,17,39,48,0.0 +22650,53,32.8,35,0.0 +22650,22,21,7,0.0 +22650,43,46,25,0.0 +22650,23,9,42,0.0 +22650,54,7.45,2,0.0 +22650,39,18,21,0.0 +22650,24,4.5,5,0.0 +22650,40,18.4,38,0.0 +22650,57,19.5,48,0.0 +22650,13,6,46,0.0 +22650,55,24,46,0.0 +22650,16,17.45,40,0.0 +22650,75,7.75,30,0.0 +22650,28,45.6,27,0.0 +22650,50,16.25,6,0.0 +22650,8,40,21,0.0 +22650,34,14,43,0.0 +22651,5,21.35,17,0.0 +22651,7,30,31,0.0 +22651,58,13.25,41,0.0 +22651,28,45.6,7,0.0 +22651,6,25,1,0.0 +22651,48,12.75,36,0.0 +22651,14,23.25,6,0.0 +22651,11,21,21,0.0 +22651,29,123.79,27,0.0 +22651,64,33.25,48,0.0 +22651,15,15.5,15,0.0 +22651,67,14,15,0.0 +22651,32,32,48,0.0 +22651,23,9,13,0.0 +22651,49,20,24,0.0 +22651,31,12.5,49,0.0 +22651,22,21,9,0.0 +22651,39,18,37,0.0 +22651,20,81,10,0.0 +22651,25,14,45,0.0 +22651,33,2.5,4,0.0 +22651,74,10,15,0.0 +22651,50,16.25,6,0.0 +22651,35,18,33,0.0 +22651,18,62.5,49,0.0 +22651,68,12.5,33,0.0 +22651,41,9.65,38,0.0 +22651,37,26,16,0.0 +22651,72,34.8,2,0.0 +22651,61,28.5,47,0.0 +22651,45,9.5,37,0.0 +22651,4,22,37,0.0 +22651,40,18.4,41,0.0 +22651,52,7,10,0.0 +22651,12,38,33,0.0 +22651,54,7.45,49,0.0 +22651,44,19.45,50,0.0 +22651,70,15,45,0.0 +22651,38,263.5,47,0.0 +22651,69,36,20,0.0 +22651,24,4.5,27,0.0 +22651,42,14,29,0.0 +22651,1,18,16,0.0 +22651,47,9.5,45,0.0 +22651,17,39,47,0.0 +22651,75,7.75,37,0.0 +22651,43,46,13,0.0 +22651,59,55,46,0.0 +22651,76,18,42,0.0 +22652,8,40,2,0.0 +22652,53,32.8,18,0.0 +22652,17,39,9,0.0 +22652,52,7,40,0.0 +22652,29,123.79,1,0.0 +22652,13,6,26,0.0 +22652,45,9.5,47,0.0 +22652,16,17.45,31,0.0 +22652,70,15,6,0.0 +22652,50,16.25,43,0.0 +22653,32,32,43,0.0 +22653,1,18,50,0.0 +22653,44,19.45,11,0.0 +22653,62,49.3,44,0.0 +22653,40,18.4,14,0.0 +22653,41,9.65,21,0.0 +22653,16,17.45,15,0.0 +22653,22,21,38,0.0 +22653,56,38,36,0.0 +22653,33,2.5,13,0.0 +22653,65,21.05,12,0.0 +22653,8,40,23,0.0 +22653,30,25.89,41,0.0 +22653,46,12,1,0.0 +22653,31,12.5,18,0.0 +22653,51,53,26,0.0 +22653,5,21.35,26,0.0 +22653,71,21.5,31,0.0 +22653,38,263.5,42,0.0 +22653,7,30,13,0.0 +22653,20,81,7,0.0 +22653,39,18,44,0.0 +22653,61,28.5,45,0.0 +22653,23,9,16,0.0 +22653,11,21,3,0.0 +22653,74,10,11,0.0 +22653,43,46,38,0.0 +22653,18,62.5,16,0.0 +22653,17,39,27,0.0 +22653,37,26,24,0.0 +22653,36,19,13,0.0 +22653,6,25,34,0.0 +22654,66,17,17,0.0 +22654,56,38,21,0.0 +22654,23,9,28,0.0 +22654,70,15,49,0.0 +22654,17,39,42,0.0 +22654,39,18,39,0.0 +22654,8,40,44,0.0 +22654,15,15.5,17,0.0 +22654,69,36,2,0.0 +22654,67,14,2,0.0 +22654,30,25.89,48,0.0 +22654,74,10,36,0.0 +22654,5,21.35,42,0.0 +22654,25,14,2,0.0 +22654,45,9.5,31,0.0 +22654,37,26,46,0.0 +22654,27,43.9,14,0.0 +22654,35,18,7,0.0 +22654,13,6,28,0.0 +22654,4,22,27,0.0 +22654,19,9.2,40,0.0 +22654,34,14,8,0.0 +22654,28,45.6,20,0.0 +22654,51,53,21,0.0 +22654,62,49.3,17,0.0 +22654,21,10,8,0.0 +22654,73,15,34,0.0 +22654,33,2.5,9,0.0 +22654,1,18,48,0.0 +22654,22,21,38,0.0 +22654,41,9.65,28,0.0 +22654,54,7.45,12,0.0 +22654,42,14,39,0.0 +22654,60,34,1,0.0 +22654,77,13,20,0.0 +22654,29,123.79,2,0.0 +22654,50,16.25,43,0.0 +22654,63,43.9,15,0.0 +22654,72,34.8,40,0.0 +22654,20,81,20,0.0 +22654,53,32.8,2,0.0 +22654,36,19,35,0.0 +22654,47,9.5,22,0.0 +22654,9,97,29,0.0 +22654,3,10,10,0.0 +22654,68,12.5,20,0.0 +22654,61,28.5,29,0.0 +22654,43,46,49,0.0 +22654,2,19,39,0.0 +22654,38,263.5,15,0.0 +22654,64,33.25,5,0.0 +22654,12,38,47,0.0 +22654,6,25,45,0.0 +22655,27,43.9,1,0.0 +22655,75,7.75,43,0.0 +22655,30,25.89,26,0.0 +22655,56,38,34,0.0 +22655,55,24,37,0.0 +22655,34,14,6,0.0 +22655,68,12.5,18,0.0 +22655,31,12.5,46,0.0 +22655,23,9,8,0.0 +22655,65,21.05,2,0.0 +22655,51,53,2,0.0 +22655,8,40,46,0.0 +22655,3,10,34,0.0 +22655,59,55,4,0.0 +22655,26,31.23,27,0.0 +22655,40,18.4,24,0.0 +22655,76,18,30,0.0 +22655,73,15,7,0.0 +22655,13,6,46,0.0 +22655,66,17,11,0.0 +22655,37,26,2,0.0 +22655,10,31,37,0.0 +22656,68,12.5,20,0.0 +22656,23,9,10,0.0 +22656,43,46,39,0.0 +22656,6,25,13,0.0 +22656,24,4.5,17,0.0 +22656,32,32,46,0.0 +22656,10,31,12,0.0 +22656,71,21.5,25,0.0 +22656,14,23.25,38,0.0 +22656,51,53,11,0.0 +22656,11,21,34,0.0 +22656,7,30,43,0.0 +22656,50,16.25,17,0.0 +22656,54,7.45,47,0.0 +22656,26,31.23,18,0.0 +22656,62,49.3,26,0.0 +22656,8,40,47,0.0 +22656,59,55,16,0.0 +22656,1,18,42,0.0 +22656,47,9.5,30,0.0 +22656,22,21,40,0.0 +22656,55,24,21,0.0 +22656,37,26,1,0.0 +22656,67,14,7,0.0 +22656,2,19,49,0.0 +22656,46,12,46,0.0 +22656,33,2.5,50,0.0 +22656,35,18,33,0.0 +22656,75,7.75,25,0.0 +22656,53,32.8,48,0.0 +22656,49,20,35,0.0 +22656,61,28.5,17,0.0 +22656,76,18,36,0.0 +22656,21,10,45,0.0 +22656,64,33.25,25,0.0 +22656,72,34.8,2,0.0 +22656,52,7,45,0.0 +22656,28,45.6,20,0.0 +22656,18,62.5,22,0.0 +22656,34,14,49,0.0 +22656,45,9.5,11,0.0 +22656,9,97,18,0.0 +22656,20,81,27,0.0 +22656,70,15,33,0.0 +22656,29,123.79,17,0.0 +22656,58,13.25,30,0.0 +22656,30,25.89,14,0.0 +22656,40,18.4,25,0.0 +22656,16,17.45,5,0.0 +22656,5,21.35,17,0.0 +22656,56,38,17,0.0 +22656,39,18,7,0.0 +22656,42,14,19,0.0 +22656,36,19,25,0.0 +22656,41,9.65,48,0.0 +22656,27,43.9,20,0.0 +22656,44,19.45,36,0.0 +22656,12,38,31,0.0 +22656,13,6,20,0.0 +22656,38,263.5,38,0.0 +22656,60,34,33,0.0 +22656,63,43.9,40,0.0 +22657,42,14,13,0.0 +22657,13,6,44,0.0 +22657,32,32,3,0.0 +22657,75,7.75,8,0.0 +22657,71,21.5,46,0.0 +22657,25,14,16,0.0 +22657,37,26,41,0.0 +22657,24,4.5,11,0.0 +22657,61,28.5,35,0.0 +22657,63,43.9,23,0.0 +22657,69,36,11,0.0 +22657,39,18,41,0.0 +22657,20,81,35,0.0 +22657,4,22,47,0.0 +22657,40,18.4,6,0.0 +22657,57,19.5,47,0.0 +22657,26,31.23,11,0.0 +22657,7,30,10,0.0 +22657,51,53,47,0.0 +22657,2,19,5,0.0 +22657,54,7.45,4,0.0 +22657,53,32.8,42,0.0 +22657,67,14,36,0.0 +22657,73,15,35,0.0 +22657,34,14,5,0.0 +22657,66,17,23,0.0 +22657,44,19.45,41,0.0 +22657,5,21.35,33,0.0 +22657,74,10,31,0.0 +22657,68,12.5,40,0.0 +22657,50,16.25,3,0.0 +22657,3,10,9,0.0 +22658,20,81,9,0.0 +22658,57,19.5,29,0.0 +22658,42,14,7,0.0 +22658,52,7,35,0.0 +22658,68,12.5,23,0.0 +22658,11,21,45,0.0 +22658,65,21.05,45,0.0 +22658,28,45.6,25,0.0 +22658,53,32.8,48,0.0 +22658,48,12.75,40,0.0 +22658,9,97,38,0.0 +22658,64,33.25,41,0.0 +22658,2,19,48,0.0 +22658,29,123.79,43,0.0 +22658,75,7.75,42,0.0 +22658,54,7.45,9,0.0 +22658,58,13.25,50,0.0 +22658,8,40,45,0.0 +22658,34,14,25,0.0 +22658,27,43.9,13,0.0 +22658,35,18,43,0.0 +22658,77,13,23,0.0 +22658,73,15,43,0.0 +22658,3,10,36,0.0 +22658,26,31.23,45,0.0 +22658,38,263.5,38,0.0 +22658,22,21,44,0.0 +22658,25,14,17,0.0 +22658,45,9.5,5,0.0 +22659,14,23.25,12,0.0 +22659,19,9.2,42,0.0 +22659,49,20,28,0.0 +22659,34,14,50,0.0 +22659,41,9.65,16,0.0 +22659,16,17.45,47,0.0 +22659,13,6,40,0.0 +22659,38,263.5,25,0.0 +22659,48,12.75,8,0.0 +22659,24,4.5,42,0.0 +22659,46,12,19,0.0 +22659,57,19.5,38,0.0 +22659,75,7.75,12,0.0 +22659,39,18,30,0.0 +22659,73,15,26,0.0 +22659,43,46,14,0.0 +22659,2,19,48,0.0 +22659,65,21.05,45,0.0 +22659,58,13.25,6,0.0 +22659,60,34,45,0.0 +22659,28,45.6,22,0.0 +22659,61,28.5,35,0.0 +22659,69,36,26,0.0 +22659,12,38,43,0.0 +22659,67,14,15,0.0 +22659,71,21.5,7,0.0 +22659,68,12.5,36,0.0 +22660,72,34.8,27,0.0 +22660,70,15,21,0.0 +22660,55,24,5,0.0 +22660,44,19.45,48,0.0 +22660,68,12.5,33,0.0 +22660,2,19,39,0.0 +22660,75,7.75,9,0.0 +22660,8,40,12,0.0 +22660,6,25,9,0.0 +22660,54,7.45,18,0.0 +22660,76,18,30,0.0 +22660,69,36,1,0.0 +22660,30,25.89,44,0.0 +22660,59,55,31,0.0 +22660,24,4.5,27,0.0 +22660,15,15.5,6,0.0 +22660,9,97,21,0.0 +22660,73,15,29,0.0 +22660,67,14,4,0.0 +22660,4,22,5,0.0 +22660,20,81,45,0.0 +22660,45,9.5,38,0.0 +22660,13,6,42,0.0 +22660,38,263.5,24,0.0 +22660,5,21.35,43,0.0 +22660,14,23.25,37,0.0 +22660,17,39,10,0.0 +22660,27,43.9,39,0.0 +22660,46,12,32,0.0 +22660,29,123.79,33,0.0 +22660,40,18.4,6,0.0 +22660,58,13.25,11,0.0 +22660,32,32,40,0.0 +22660,34,14,15,0.0 +22660,39,18,18,0.0 +22660,53,32.8,37,0.0 +22660,52,7,44,0.0 +22660,23,9,19,0.0 +22660,42,14,30,0.0 +22660,21,10,16,0.0 +22660,26,31.23,40,0.0 +22660,43,46,30,0.0 +22660,7,30,28,0.0 +22660,65,21.05,13,0.0 +22660,3,10,45,0.0 +22660,37,26,37,0.0 +22660,56,38,16,0.0 +22660,74,10,47,0.0 +22660,22,21,28,0.0 +22660,60,34,4,0.0 +22660,41,9.65,26,0.0 +22660,33,2.5,4,0.0 +22660,50,16.25,26,0.0 +22660,36,19,23,0.0 +22660,31,12.5,31,0.0 +22660,16,17.45,36,0.0 +22660,66,17,26,0.0 +22660,28,45.6,24,0.0 +22660,49,20,37,0.0 +22660,19,9.2,41,0.0 +22660,11,21,18,0.0 +22660,63,43.9,37,0.0 +22660,48,12.75,12,0.0 +22660,35,18,25,0.0 +22660,10,31,17,0.0 +22660,1,18,30,0.0 +22660,71,21.5,40,0.0 +22660,18,62.5,46,0.0 +22660,61,28.5,44,0.0 +22660,25,14,20,0.0 +22661,55,24,23,0.0 +22661,75,7.75,26,0.0 +22661,62,49.3,1,0.0 +22661,52,7,15,0.0 +22661,22,21,47,0.0 +22661,35,18,26,0.0 +22661,31,12.5,21,0.0 +22661,24,4.5,36,0.0 +22661,66,17,37,0.0 +22661,27,43.9,4,0.0 +22661,74,10,38,0.0 +22661,25,14,18,0.0 +22661,2,19,15,0.0 +22661,65,21.05,10,0.0 +22661,7,30,44,0.0 +22661,38,263.5,42,0.0 +22661,67,14,3,0.0 +22661,15,15.5,45,0.0 +22661,19,9.2,28,0.0 +22661,41,9.65,37,0.0 +22661,16,17.45,14,0.0 +22661,40,18.4,7,0.0 +22661,69,36,41,0.0 +22661,14,23.25,34,0.0 +22661,76,18,37,0.0 +22661,71,21.5,7,0.0 +22662,16,17.45,33,0.0 +22662,76,18,7,0.0 +22662,66,17,28,0.0 +22662,19,9.2,39,0.0 +22662,33,2.5,15,0.0 +22662,53,32.8,7,0.0 +22662,74,10,42,0.0 +22662,21,10,9,0.0 +22662,29,123.79,4,0.0 +22662,59,55,11,0.0 +22662,41,9.65,42,0.0 +22662,71,21.5,31,0.0 +22662,10,31,46,0.0 +22662,73,15,16,0.0 +22662,28,45.6,20,0.0 +22662,9,97,29,0.0 +22662,12,38,30,0.0 +22662,32,32,37,0.0 +22662,55,24,8,0.0 +22662,14,23.25,12,0.0 +22662,27,43.9,8,0.0 +22662,30,25.89,28,0.0 +22662,48,12.75,2,0.0 +22662,65,21.05,13,0.0 +22662,20,81,11,0.0 +22662,45,9.5,31,0.0 +22662,36,19,15,0.0 +22662,3,10,50,0.0 +22662,57,19.5,22,0.0 +22662,47,9.5,49,0.0 +22662,25,14,15,0.0 +22662,43,46,17,0.0 +22662,23,9,40,0.0 +22662,7,30,41,0.0 +22662,70,15,5,0.0 +22662,5,21.35,10,0.0 +22662,17,39,26,0.0 +22662,49,20,32,0.0 +22662,8,40,32,0.0 +22662,38,263.5,39,0.0 +22662,46,12,35,0.0 +22662,63,43.9,39,0.0 +22662,58,13.25,10,0.0 +22663,45,9.5,26,0.0 +22663,4,22,6,0.0 +22663,15,15.5,22,0.0 +22663,47,9.5,28,0.0 +22663,60,34,1,0.0 +22663,44,19.45,3,0.0 +22663,70,15,21,0.0 +22663,72,34.8,11,0.0 +22663,62,49.3,10,0.0 +22663,21,10,44,0.0 +22663,38,263.5,34,0.0 +22663,9,97,1,0.0 +22663,42,14,36,0.0 +22663,33,2.5,17,0.0 +22663,51,53,8,0.0 +22663,75,7.75,28,0.0 +22663,73,15,10,0.0 +22663,76,18,3,0.0 +22663,6,25,11,0.0 +22663,34,14,21,0.0 +22663,55,24,44,0.0 +22663,69,36,7,0.0 +22663,65,21.05,3,0.0 +22663,48,12.75,22,0.0 +22663,30,25.89,50,0.0 +22663,49,20,11,0.0 +22663,61,28.5,36,0.0 +22663,17,39,6,0.0 +22663,29,123.79,35,0.0 +22663,2,19,21,0.0 +22663,46,12,5,0.0 +22663,36,19,17,0.0 +22663,12,38,32,0.0 +22663,10,31,33,0.0 +22663,22,21,40,0.0 +22663,25,14,24,0.0 +22663,67,14,35,0.0 +22663,40,18.4,12,0.0 +22663,5,21.35,33,0.0 +22663,56,38,26,0.0 +22663,28,45.6,17,0.0 +22663,53,32.8,25,0.0 +22663,64,33.25,7,0.0 +22663,11,21,36,0.0 +22663,63,43.9,40,0.0 +22663,3,10,25,0.0 +22663,1,18,25,0.0 +22663,71,21.5,42,0.0 +22663,66,17,17,0.0 +22663,20,81,19,0.0 +22663,41,9.65,5,0.0 +22663,74,10,44,0.0 +22663,16,17.45,47,0.0 +22663,77,13,38,0.0 +22663,37,26,28,0.0 +22663,43,46,16,0.0 +22663,32,32,20,0.0 +22663,13,6,26,0.0 +22663,14,23.25,45,0.0 +22663,23,9,13,0.0 +22663,26,31.23,25,0.0 +22663,19,9.2,42,0.0 +22663,68,12.5,14,0.0 +22663,58,13.25,5,0.0 +22663,7,30,21,0.0 +22663,31,12.5,14,0.0 +22663,18,62.5,11,0.0 +22663,39,18,40,0.0 +22663,52,7,39,0.0 +22663,8,40,48,0.0 +22663,27,43.9,47,0.0 +22663,57,19.5,23,0.0 +22663,59,55,17,0.0 +22663,24,4.5,45,0.0 +22663,54,7.45,48,0.0 +22664,42,14,15,0.0 +22664,30,25.89,19,0.0 +22664,34,14,20,0.0 +22664,8,40,43,0.0 +22664,75,7.75,15,0.0 +22664,56,38,40,0.0 +22664,21,10,21,0.0 +22664,72,34.8,35,0.0 +22664,37,26,12,0.0 +22664,36,19,17,0.0 +22664,62,49.3,44,0.0 +22664,18,62.5,1,0.0 +22664,55,24,47,0.0 +22664,53,32.8,25,0.0 +22664,31,12.5,48,0.0 +22664,23,9,31,0.0 +22664,35,18,12,0.0 +22664,66,17,4,0.0 +22664,47,9.5,24,0.0 +22664,15,15.5,24,0.0 +22664,43,46,33,0.0 +22664,57,19.5,17,0.0 +22664,77,13,49,0.0 +22664,11,21,25,0.0 +22664,40,18.4,42,0.0 +22664,59,55,35,0.0 +22664,46,12,6,0.0 +22664,50,16.25,3,0.0 +22664,28,45.6,8,0.0 +22664,26,31.23,32,0.0 +22664,5,21.35,7,0.0 +22664,6,25,15,0.0 +22664,61,28.5,39,0.0 +22664,20,81,33,0.0 +22664,4,22,25,0.0 +22664,38,263.5,33,0.0 +22664,2,19,39,0.0 +22664,9,97,37,0.0 +22664,64,33.25,6,0.0 +22664,58,13.25,3,0.0 +22664,12,38,44,0.0 +22664,63,43.9,33,0.0 +22664,70,15,24,0.0 +22664,49,20,45,0.0 +22664,27,43.9,26,0.0 +22664,13,6,26,0.0 +22664,54,7.45,33,0.0 +22664,17,39,24,0.0 +22664,24,4.5,11,0.0 +22664,76,18,13,0.0 +22664,73,15,14,0.0 +22664,3,10,44,0.0 +22664,39,18,38,0.0 +22664,45,9.5,7,0.0 +22664,16,17.45,36,0.0 +22664,33,2.5,5,0.0 +22664,48,12.75,27,0.0 +22664,22,21,16,0.0 +22664,19,9.2,5,0.0 +22664,10,31,36,0.0 +22664,1,18,41,0.0 +22664,69,36,3,0.0 +22665,32,32,30,0.0 +22665,23,9,34,0.0 +22665,24,4.5,39,0.0 +22665,73,15,12,0.0 +22665,6,25,28,0.0 +22665,29,123.79,1,0.0 +22665,22,21,20,0.0 +22665,70,15,2,0.0 +22665,55,24,43,0.0 +22665,54,7.45,15,0.0 +22665,36,19,46,0.0 +22665,42,14,22,0.0 +22665,30,25.89,22,0.0 +22665,26,31.23,37,0.0 +22665,39,18,5,0.0 +22665,58,13.25,14,0.0 +22665,25,14,34,0.0 +22665,5,21.35,20,0.0 +22665,3,10,37,0.0 +22665,34,14,27,0.0 +22665,61,28.5,35,0.0 +22665,38,263.5,47,0.0 +22666,59,55,48,0.0 +22666,64,33.25,36,0.0 +22666,18,62.5,21,0.0 +22666,1,18,37,0.0 +22666,55,24,21,0.0 +22666,49,20,13,0.0 +22666,74,10,12,0.0 +22666,62,49.3,42,0.0 +22666,22,21,5,0.0 +22666,43,46,45,0.0 +22666,73,15,30,0.0 +22666,5,21.35,6,0.0 +22666,32,32,27,0.0 +22666,28,45.6,34,0.0 +22666,14,23.25,48,0.0 +22666,63,43.9,24,0.0 +22666,23,9,45,0.0 +22666,57,19.5,44,0.0 +22666,47,9.5,33,0.0 +22666,20,81,24,0.0 +22666,34,14,8,0.0 +22666,60,34,34,0.0 +22666,76,18,43,0.0 +22666,52,7,1,0.0 +22666,19,9.2,31,0.0 +22666,39,18,23,0.0 +22666,40,18.4,6,0.0 +22666,69,36,26,0.0 +22666,7,30,45,0.0 +22666,37,26,30,0.0 +22667,50,16.25,10,0.0 +22667,57,19.5,31,0.0 +22667,18,62.5,7,0.0 +22667,4,22,22,0.0 +22667,59,55,44,0.0 +22667,3,10,17,0.0 +22667,35,18,15,0.0 +22667,52,7,19,0.0 +22667,41,9.65,25,0.0 +22667,5,21.35,34,0.0 +22667,71,21.5,22,0.0 +22667,44,19.45,46,0.0 +22667,51,53,48,0.0 +22667,69,36,19,0.0 +22667,76,18,44,0.0 +22667,15,15.5,37,0.0 +22667,12,38,46,0.0 +22667,26,31.23,17,0.0 +22667,7,30,30,0.0 +22667,16,17.45,1,0.0 +22667,61,28.5,32,0.0 +22667,63,43.9,14,0.0 +22667,2,19,9,0.0 +22667,75,7.75,43,0.0 +22667,60,34,1,0.0 +22667,43,46,16,0.0 +22667,58,13.25,38,0.0 +22667,9,97,36,0.0 +22667,37,26,42,0.0 +22667,29,123.79,31,0.0 +22667,34,14,34,0.0 +22667,17,39,33,0.0 +22667,40,18.4,17,0.0 +22667,74,10,27,0.0 +22667,73,15,20,0.0 +22667,55,24,39,0.0 +22667,54,7.45,8,0.0 +22667,30,25.89,10,0.0 +22667,45,9.5,48,0.0 +22667,49,20,16,0.0 +22667,38,263.5,5,0.0 +22667,13,6,23,0.0 +22667,1,18,38,0.0 +22667,10,31,22,0.0 +22667,46,12,43,0.0 +22667,39,18,45,0.0 +22667,72,34.8,42,0.0 +22667,32,32,11,0.0 +22667,67,14,16,0.0 +22667,14,23.25,19,0.0 +22667,53,32.8,8,0.0 +22667,64,33.25,48,0.0 +22667,28,45.6,44,0.0 +22667,42,14,16,0.0 +22667,21,10,5,0.0 +22667,33,2.5,14,0.0 +22667,27,43.9,49,0.0 +22667,48,12.75,23,0.0 +22667,6,25,10,0.0 +22667,23,9,40,0.0 +22667,8,40,46,0.0 +22667,65,21.05,11,0.0 +22667,19,9.2,32,0.0 +22667,25,14,39,0.0 +22667,20,81,32,0.0 +22667,66,17,42,0.0 +22667,56,38,29,0.0 +22668,42,14,10,0.0 +22668,54,7.45,19,0.0 +22668,61,28.5,23,0.0 +22668,1,18,48,0.0 +22668,15,15.5,38,0.0 +22668,50,16.25,30,0.0 +22668,11,21,47,0.0 +22668,51,53,34,0.0 +22668,29,123.79,38,0.0 +22668,5,21.35,27,0.0 +22668,23,9,50,0.0 +22668,77,13,19,0.0 +22668,41,9.65,42,0.0 +22668,27,43.9,30,0.0 +22668,19,9.2,35,0.0 +22668,48,12.75,40,0.0 +22668,56,38,4,0.0 +22668,26,31.23,23,0.0 +22668,8,40,19,0.0 +22668,43,46,21,0.0 +22668,40,18.4,10,0.0 +22668,4,22,20,0.0 +22668,68,12.5,15,0.0 +22668,53,32.8,8,0.0 +22668,32,32,36,0.0 +22668,18,62.5,31,0.0 +22668,37,26,33,0.0 +22668,65,21.05,27,0.0 +22668,44,19.45,45,0.0 +22668,52,7,14,0.0 +22668,21,10,32,0.0 +22668,63,43.9,13,0.0 +22668,69,36,31,0.0 +22668,12,38,22,0.0 +22668,73,15,47,0.0 +22668,34,14,2,0.0 +22668,25,14,43,0.0 +22668,9,97,9,0.0 +22668,60,34,45,0.0 +22668,33,2.5,4,0.0 +22668,39,18,36,0.0 +22668,57,19.5,23,0.0 +22668,67,14,12,0.0 +22668,10,31,23,0.0 +22668,70,15,9,0.0 +22668,62,49.3,33,0.0 +22668,28,45.6,49,0.0 +22668,47,9.5,15,0.0 +22668,36,19,34,0.0 +22668,66,17,29,0.0 +22668,59,55,4,0.0 +22668,46,12,12,0.0 +22668,6,25,50,0.0 +22668,49,20,44,0.0 +22668,72,34.8,18,0.0 +22668,30,25.89,13,0.0 +22668,13,6,43,0.0 +22668,35,18,35,0.0 +22668,3,10,25,0.0 +22668,75,7.75,32,0.0 +22668,17,39,19,0.0 +22668,22,21,19,0.0 +22668,76,18,19,0.0 +22668,7,30,16,0.0 +22668,45,9.5,6,0.0 +22668,20,81,35,0.0 +22668,24,4.5,2,0.0 +22668,74,10,6,0.0 +22669,70,15,46,0.0 +22669,47,9.5,38,0.0 +22670,75,7.75,21,0.0 +22670,8,40,29,0.0 +22670,30,25.89,7,0.0 +22670,22,21,9,0.0 +22670,21,10,17,0.0 +22670,55,24,45,0.0 +22670,72,34.8,6,0.0 +22670,12,38,2,0.0 +22670,43,46,11,0.0 +22670,67,14,46,0.0 +22670,13,6,24,0.0 +22670,49,20,37,0.0 +22670,56,38,14,0.0 +22670,25,14,30,0.0 +22670,7,30,25,0.0 +22670,48,12.75,33,0.0 +22670,52,7,44,0.0 +22670,69,36,16,0.0 +22670,66,17,36,0.0 +22670,24,4.5,33,0.0 +22670,35,18,9,0.0 +22670,62,49.3,36,0.0 +22670,58,13.25,47,0.0 +22670,26,31.23,48,0.0 +22670,10,31,13,0.0 +22670,53,32.8,5,0.0 +22670,73,15,29,0.0 +22670,33,2.5,23,0.0 +22670,63,43.9,37,0.0 +22670,34,14,30,0.0 +22670,37,26,11,0.0 +22670,16,17.45,29,0.0 +22670,68,12.5,7,0.0 +22670,46,12,32,0.0 +22670,42,14,45,0.0 +22670,76,18,20,0.0 +22670,47,9.5,2,0.0 +22670,54,7.45,11,0.0 +22670,32,32,30,0.0 +22670,14,23.25,8,0.0 +22670,1,18,26,0.0 +22670,50,16.25,34,0.0 +22670,15,15.5,29,0.0 +22670,19,9.2,33,0.0 +22670,9,97,47,0.0 +22670,44,19.45,31,0.0 +22670,3,10,2,0.0 +22670,77,13,39,0.0 +22670,65,21.05,21,0.0 +22670,23,9,1,0.0 +22670,4,22,8,0.0 +22670,29,123.79,40,0.0 +22670,40,18.4,9,0.0 +22670,17,39,12,0.0 +22670,18,62.5,41,0.0 +22670,59,55,2,0.0 +22670,20,81,31,0.0 +22670,5,21.35,3,0.0 +22670,60,34,36,0.0 +22671,35,18,34,0.0 +22671,38,263.5,30,0.0 +22671,29,123.79,31,0.0 +22671,68,12.5,20,0.0 +22671,1,18,17,0.0 +22671,75,7.75,31,0.0 +22671,54,7.45,40,0.0 +22671,10,31,35,0.0 +22671,46,12,8,0.0 +22671,31,12.5,38,0.0 +22671,76,18,13,0.0 +22671,13,6,18,0.0 +22671,59,55,40,0.0 +22671,61,28.5,24,0.0 +22671,6,25,21,0.0 +22671,30,25.89,31,0.0 +22671,66,17,6,0.0 +22671,48,12.75,28,0.0 +22671,22,21,8,0.0 +22671,70,15,46,0.0 +22671,15,15.5,10,0.0 +22671,53,32.8,15,0.0 +22671,36,19,40,0.0 +22671,23,9,43,0.0 +22671,40,18.4,3,0.0 +22671,19,9.2,29,0.0 +22671,51,53,23,0.0 +22671,44,19.45,48,0.0 +22671,42,14,9,0.0 +22671,69,36,38,0.0 +22671,4,22,12,0.0 +22671,5,21.35,50,0.0 +22671,37,26,15,0.0 +22671,45,9.5,25,0.0 +22672,40,18.4,1,0.0 +22672,68,12.5,47,0.0 +22672,24,4.5,5,0.0 +22672,12,38,24,0.0 +22672,2,19,3,0.0 +22672,18,62.5,40,0.0 +22672,25,14,43,0.0 +22672,21,10,30,0.0 +22672,53,32.8,15,0.0 +22672,8,40,9,0.0 +22672,62,49.3,3,0.0 +22672,35,18,41,0.0 +22672,74,10,23,0.0 +22672,71,21.5,31,0.0 +22672,20,81,4,0.0 +22672,47,9.5,29,0.0 +22672,70,15,46,0.0 +22672,32,32,36,0.0 +22672,77,13,6,0.0 +22672,16,17.45,13,0.0 +22672,27,43.9,43,0.0 +22672,9,97,50,0.0 +22672,38,263.5,11,0.0 +22672,28,45.6,11,0.0 +22672,41,9.65,38,0.0 +22672,66,17,22,0.0 +22672,30,25.89,19,0.0 +22672,37,26,17,0.0 +22672,39,18,11,0.0 +22672,60,34,37,0.0 +22672,11,21,18,0.0 +22672,75,7.75,35,0.0 +22672,63,43.9,8,0.0 +22672,69,36,23,0.0 +22672,5,21.35,41,0.0 +22672,45,9.5,24,0.0 +22672,76,18,2,0.0 +22672,26,31.23,28,0.0 +22672,56,38,3,0.0 +22672,48,12.75,25,0.0 +22672,52,7,31,0.0 +22672,51,53,23,0.0 +22672,43,46,5,0.0 +22672,13,6,31,0.0 +22672,65,21.05,23,0.0 +22672,42,14,25,0.0 +22672,29,123.79,30,0.0 +22672,72,34.8,35,0.0 +22672,36,19,13,0.0 +22672,7,30,17,0.0 +22672,34,14,15,0.0 +22672,55,24,34,0.0 +22673,44,19.45,39,0.0 +22673,40,18.4,20,0.0 +22673,33,2.5,32,0.0 +22674,5,21.35,36,0.0 +22674,16,17.45,50,0.0 +22674,20,81,43,0.0 +22674,51,53,3,0.0 +22674,61,28.5,9,0.0 +22674,44,19.45,26,0.0 +22674,38,263.5,42,0.0 +22674,42,14,13,0.0 +22675,12,38,35,0.0 +22675,19,9.2,43,0.0 +22675,34,14,48,0.0 +22675,26,31.23,25,0.0 +22675,70,15,3,0.0 +22675,68,12.5,8,0.0 +22675,56,38,48,0.0 +22675,29,123.79,29,0.0 +22675,57,19.5,4,0.0 +22675,59,55,39,0.0 +22675,5,21.35,46,0.0 +22675,50,16.25,40,0.0 +22675,39,18,38,0.0 +22675,7,30,20,0.0 +22675,47,9.5,27,0.0 +22675,65,21.05,38,0.0 +22675,22,21,13,0.0 +22675,71,21.5,23,0.0 +22675,23,9,46,0.0 +22675,41,9.65,33,0.0 +22675,66,17,28,0.0 +22675,55,24,43,0.0 +22675,44,19.45,45,0.0 +22675,13,6,14,0.0 +22675,28,45.6,9,0.0 +22675,37,26,37,0.0 +22675,67,14,8,0.0 +22675,60,34,35,0.0 +22675,42,14,30,0.0 +22675,77,13,20,0.0 +22675,48,12.75,11,0.0 +22675,64,33.25,49,0.0 +22675,21,10,2,0.0 +22675,3,10,9,0.0 +22675,54,7.45,28,0.0 +22675,8,40,14,0.0 +22675,11,21,18,0.0 +22675,62,49.3,32,0.0 +22675,76,18,14,0.0 +22675,36,19,50,0.0 +22675,24,4.5,35,0.0 +22675,31,12.5,10,0.0 +22675,40,18.4,25,0.0 +22675,52,7,18,0.0 +22675,27,43.9,19,0.0 +22675,14,23.25,17,0.0 +22675,74,10,9,0.0 +22675,15,15.5,23,0.0 +22675,53,32.8,39,0.0 +22675,18,62.5,50,0.0 +22675,17,39,37,0.0 +22675,49,20,50,0.0 +22675,73,15,36,0.0 +22675,72,34.8,22,0.0 +22675,61,28.5,17,0.0 +22675,69,36,20,0.0 +22675,2,19,3,0.0 +22675,38,263.5,45,0.0 +22675,33,2.5,39,0.0 +22676,74,10,12,0.0 +22676,36,19,5,0.0 +22676,35,18,3,0.0 +22676,11,21,42,0.0 +22676,27,43.9,35,0.0 +22676,9,97,10,0.0 +22676,42,14,36,0.0 +22676,52,7,33,0.0 +22676,17,39,48,0.0 +22676,61,28.5,22,0.0 +22676,39,18,11,0.0 +22676,33,2.5,36,0.0 +22676,56,38,48,0.0 +22676,75,7.75,10,0.0 +22676,64,33.25,47,0.0 +22676,16,17.45,27,0.0 +22676,19,9.2,8,0.0 +22676,48,12.75,27,0.0 +22676,77,13,34,0.0 +22676,6,25,16,0.0 +22676,38,263.5,27,0.0 +22676,10,31,1,0.0 +22676,18,62.5,38,0.0 +22676,15,15.5,24,0.0 +22676,37,26,44,0.0 +22676,63,43.9,5,0.0 +22676,46,12,41,0.0 +22676,22,21,30,0.0 +22676,62,49.3,35,0.0 +22676,50,16.25,29,0.0 +22676,72,34.8,8,0.0 +22676,51,53,33,0.0 +22676,70,15,29,0.0 +22676,31,12.5,46,0.0 +22676,34,14,2,0.0 +22676,7,30,22,0.0 +22676,23,9,34,0.0 +22676,4,22,23,0.0 +22676,69,36,30,0.0 +22676,53,32.8,24,0.0 +22676,60,34,30,0.0 +22676,43,46,42,0.0 +22676,20,81,14,0.0 +22676,5,21.35,7,0.0 +22676,76,18,49,0.0 +22676,58,13.25,47,0.0 +22676,24,4.5,46,0.0 +22676,66,17,35,0.0 +22676,55,24,38,0.0 +22676,26,31.23,8,0.0 +22676,12,38,12,0.0 +22676,59,55,20,0.0 +22676,25,14,12,0.0 +22676,57,19.5,38,0.0 +22676,3,10,26,0.0 +22676,65,21.05,22,0.0 +22676,8,40,1,0.0 +22676,21,10,26,0.0 +22676,28,45.6,32,0.0 +22676,73,15,16,0.0 +22676,29,123.79,34,0.0 +22676,14,23.25,22,0.0 +22676,40,18.4,17,0.0 +22676,47,9.5,42,0.0 +22676,2,19,21,0.0 +22676,41,9.65,49,0.0 +22676,1,18,32,0.0 +22676,54,7.45,29,0.0 +22676,68,12.5,42,0.0 +22676,44,19.45,50,0.0 +22676,45,9.5,24,0.0 +22676,30,25.89,2,0.0 +22676,71,21.5,48,0.0 +22676,67,14,40,0.0 +22676,13,6,19,0.0 +22676,32,32,3,0.0 +22676,49,20,22,0.0 +22677,7,30,22,0.0 +22677,22,21,29,0.0 +22677,1,18,21,0.0 +22677,25,14,45,0.0 +22677,34,14,35,0.0 +22677,72,34.8,16,0.0 +22677,63,43.9,36,0.0 +22677,42,14,25,0.0 +22677,52,7,4,0.0 +22677,65,21.05,32,0.0 +22677,45,9.5,24,0.0 +22677,59,55,12,0.0 +22677,67,14,16,0.0 +22677,9,97,45,0.0 +22677,27,43.9,19,0.0 +22677,71,21.5,27,0.0 +22677,40,18.4,38,0.0 +22677,50,16.25,5,0.0 +22677,49,20,14,0.0 +22677,37,26,18,0.0 +22677,38,263.5,42,0.0 +22678,41,9.65,47,0.0 +22678,35,18,45,0.0 +22678,49,20,47,0.0 +22678,15,15.5,28,0.0 +22678,44,19.45,30,0.0 +22678,72,34.8,34,0.0 +22678,9,97,2,0.0 +22678,50,16.25,31,0.0 +22678,51,53,35,0.0 +22678,10,31,21,0.0 +22678,59,55,21,0.0 +22678,62,49.3,26,0.0 +22678,48,12.75,16,0.0 +22678,74,10,27,0.0 +22678,68,12.5,2,0.0 +22678,11,21,45,0.0 +22678,19,9.2,49,0.0 +22678,26,31.23,4,0.0 +22678,47,9.5,33,0.0 +22678,37,26,17,0.0 +22678,24,4.5,49,0.0 +22678,39,18,1,0.0 +22678,18,62.5,24,0.0 +22678,29,123.79,46,0.0 +22678,67,14,33,0.0 +22678,70,15,19,0.0 +22678,57,19.5,10,0.0 +22678,38,263.5,31,0.0 +22678,64,33.25,34,0.0 +22678,33,2.5,31,0.0 +22678,7,30,26,0.0 +22678,56,38,8,0.0 +22678,53,32.8,16,0.0 +22678,30,25.89,29,0.0 +22678,20,81,6,0.0 +22678,40,18.4,24,0.0 +22678,52,7,2,0.0 +22678,4,22,27,0.0 +22678,75,7.75,24,0.0 +22678,22,21,46,0.0 +22678,12,38,27,0.0 +22678,14,23.25,33,0.0 +22678,66,17,20,0.0 +22678,45,9.5,26,0.0 +22678,2,19,14,0.0 +22678,69,36,44,0.0 +22678,54,7.45,18,0.0 +22678,16,17.45,24,0.0 +22678,31,12.5,49,0.0 +22678,21,10,33,0.0 +22678,61,28.5,16,0.0 +22678,27,43.9,46,0.0 +22678,23,9,36,0.0 +22678,8,40,20,0.0 +22678,6,25,34,0.0 +22678,36,19,15,0.0 +22678,60,34,1,0.0 +22678,32,32,47,0.0 +22678,76,18,9,0.0 +22678,42,14,35,0.0 +22678,17,39,47,0.0 +22678,46,12,49,0.0 +22678,58,13.25,48,0.0 +22678,13,6,11,0.0 +22678,71,21.5,2,0.0 +22678,5,21.35,19,0.0 +22678,77,13,23,0.0 +22679,58,13.25,28,0.0 +22679,77,13,6,0.0 +22679,69,36,32,0.0 +22679,30,25.89,33,0.0 +22679,68,12.5,47,0.0 +22679,25,14,34,0.0 +22679,49,20,27,0.0 +22679,12,38,12,0.0 +22679,50,16.25,40,0.0 +22679,17,39,14,0.0 +22679,53,32.8,8,0.0 +22680,36,19,36,0.0 +22680,72,34.8,36,0.0 +22680,1,18,30,0.0 +22680,2,19,9,0.0 +22680,3,10,49,0.0 +22680,33,2.5,16,0.0 +22680,30,25.89,26,0.0 +22680,68,12.5,30,0.0 +22680,5,21.35,27,0.0 +22680,69,36,46,0.0 +22680,67,14,19,0.0 +22680,15,15.5,28,0.0 +22680,77,13,30,0.0 +22680,73,15,5,0.0 +22680,19,9.2,40,0.0 +22680,44,19.45,38,0.0 +22680,63,43.9,1,0.0 +22680,62,49.3,2,0.0 +22680,7,30,36,0.0 +22680,46,12,17,0.0 +22680,20,81,27,0.0 +22680,57,19.5,30,0.0 +22680,51,53,48,0.0 +22680,25,14,30,0.0 +22680,45,9.5,8,0.0 +22680,31,12.5,4,0.0 +22680,28,45.6,30,0.0 +22680,66,17,36,0.0 +22680,12,38,5,0.0 +22680,49,20,28,0.0 +22680,74,10,3,0.0 +22680,58,13.25,44,0.0 +22680,8,40,13,0.0 +22680,53,32.8,4,0.0 +22680,65,21.05,18,0.0 +22680,52,7,39,0.0 +22680,9,97,30,0.0 +22680,34,14,34,0.0 +22680,10,31,37,0.0 +22680,42,14,48,0.0 +22680,48,12.75,31,0.0 +22680,4,22,49,0.0 +22680,70,15,25,0.0 +22680,39,18,41,0.0 +22680,18,62.5,48,0.0 +22680,60,34,22,0.0 +22680,17,39,40,0.0 +22680,75,7.75,2,0.0 +22680,40,18.4,16,0.0 +22680,14,23.25,26,0.0 +22680,71,21.5,41,0.0 +22680,27,43.9,33,0.0 +22680,22,21,7,0.0 +22680,13,6,21,0.0 +22680,41,9.65,36,0.0 +22680,47,9.5,43,0.0 +22680,29,123.79,14,0.0 +22680,23,9,38,0.0 +22680,64,33.25,17,0.0 +22680,35,18,35,0.0 +22680,55,24,19,0.0 +22680,38,263.5,24,0.0 +22680,16,17.45,3,0.0 +22680,21,10,34,0.0 +22680,32,32,46,0.0 +22681,68,12.5,22,0.0 +22681,24,4.5,17,0.0 +22681,70,15,14,0.0 +22681,25,14,20,0.0 +22681,15,15.5,7,0.0 +22681,7,30,34,0.0 +22681,16,17.45,8,0.0 +22681,14,23.25,36,0.0 +22681,50,16.25,27,0.0 +22681,10,31,7,0.0 +22681,49,20,15,0.0 +22681,48,12.75,31,0.0 +22681,19,9.2,44,0.0 +22681,69,36,11,0.0 +22681,52,7,45,0.0 +22681,47,9.5,1,0.0 +22681,41,9.65,5,0.0 +22681,44,19.45,43,0.0 +22681,12,38,18,0.0 +22681,65,21.05,32,0.0 +22681,40,18.4,28,0.0 +22681,62,49.3,29,0.0 +22681,46,12,45,0.0 +22681,76,18,45,0.0 +22681,26,31.23,21,0.0 +22681,3,10,24,0.0 +22681,30,25.89,47,0.0 +22681,59,55,18,0.0 +22681,43,46,49,0.0 +22681,22,21,2,0.0 +22681,42,14,38,0.0 +22681,64,33.25,13,0.0 +22681,23,9,21,0.0 +22681,18,62.5,16,0.0 +22681,13,6,16,0.0 +22681,8,40,10,0.0 +22681,17,39,10,0.0 +22681,75,7.75,26,0.0 +22681,73,15,9,0.0 +22681,32,32,5,0.0 +22681,67,14,30,0.0 +22681,51,53,30,0.0 +22681,27,43.9,39,0.0 +22681,37,26,9,0.0 +22681,28,45.6,41,0.0 +22681,77,13,26,0.0 +22681,33,2.5,6,0.0 +22681,39,18,5,0.0 +22681,9,97,3,0.0 +22681,11,21,39,0.0 +22681,45,9.5,10,0.0 +22681,36,19,16,0.0 +22681,31,12.5,19,0.0 +22681,72,34.8,42,0.0 +22681,60,34,31,0.0 +22681,74,10,30,0.0 +22681,1,18,4,0.0 +22681,71,21.5,12,0.0 +22681,2,19,16,0.0 +22681,21,10,5,0.0 +22681,5,21.35,49,0.0 +22681,66,17,49,0.0 +22681,58,13.25,6,0.0 +22681,34,14,11,0.0 +22681,57,19.5,42,0.0 +22681,56,38,36,0.0 +22681,20,81,47,0.0 +22682,39,18,26,0.0 +22682,15,15.5,14,0.0 +22682,1,18,43,0.0 +22682,72,34.8,19,0.0 +22682,55,24,31,0.0 +22682,32,32,30,0.0 +22682,62,49.3,28,0.0 +22682,14,23.25,39,0.0 +22682,37,26,21,0.0 +22682,11,21,13,0.0 +22682,54,7.45,28,0.0 +22682,12,38,41,0.0 +22682,47,9.5,1,0.0 +22682,48,12.75,4,0.0 +22682,40,18.4,29,0.0 +22682,5,21.35,12,0.0 +22682,16,17.45,12,0.0 +22682,27,43.9,25,0.0 +22682,43,46,47,0.0 +22682,75,7.75,29,0.0 +22682,64,33.25,31,0.0 +22682,56,38,14,0.0 +22682,60,34,2,0.0 +22682,58,13.25,30,0.0 +22682,36,19,3,0.0 +22682,74,10,31,0.0 +22682,25,14,9,0.0 +22682,41,9.65,32,0.0 +22682,71,21.5,49,0.0 +22682,42,14,13,0.0 +22682,52,7,18,0.0 +22682,51,53,15,0.0 +22682,18,62.5,43,0.0 +22682,77,13,50,0.0 +22682,66,17,43,0.0 +22682,2,19,12,0.0 +22682,8,40,6,0.0 +22682,24,4.5,8,0.0 +22682,67,14,26,0.0 +22682,61,28.5,50,0.0 +22682,30,25.89,14,0.0 +22682,70,15,50,0.0 +22682,28,45.6,41,0.0 +22682,17,39,42,0.0 +22682,38,263.5,34,0.0 +22682,6,25,23,0.0 +22682,76,18,16,0.0 +22682,53,32.8,45,0.0 +22682,7,30,34,0.0 +22682,73,15,38,0.0 +22682,63,43.9,39,0.0 +22682,26,31.23,18,0.0 +22682,29,123.79,7,0.0 +22682,31,12.5,47,0.0 +22682,13,6,39,0.0 +22682,69,36,13,0.0 +22682,33,2.5,16,0.0 +22682,44,19.45,14,0.0 +22682,50,16.25,21,0.0 +22682,68,12.5,4,0.0 +22683,21,10,17,0.0 +22683,56,38,17,0.0 +22683,66,17,12,0.0 +22683,10,31,44,0.0 +22683,63,43.9,31,0.0 +22683,60,34,49,0.0 +22683,47,9.5,20,0.0 +22684,69,36,17,0.0 +22684,5,21.35,42,0.0 +22684,30,25.89,34,0.0 +22684,59,55,38,0.0 +22684,10,31,47,0.0 +22684,22,21,21,0.0 +22684,52,7,17,0.0 +22684,67,14,29,0.0 +22684,56,38,7,0.0 +22684,8,40,34,0.0 +22684,49,20,30,0.0 +22685,33,2.5,46,0.0 +22685,8,40,32,0.0 +22685,57,19.5,33,0.0 +22685,6,25,13,0.0 +22685,36,19,40,0.0 +22685,26,31.23,46,0.0 +22685,48,12.75,12,0.0 +22685,51,53,27,0.0 +22685,44,19.45,11,0.0 +22685,12,38,48,0.0 +22685,59,55,15,0.0 +22685,66,17,39,0.0 +22685,1,18,8,0.0 +22685,41,9.65,34,0.0 +22685,49,20,25,0.0 +22685,30,25.89,27,0.0 +22685,29,123.79,19,0.0 +22685,13,6,24,0.0 +22685,77,13,48,0.0 +22685,61,28.5,15,0.0 +22685,9,97,44,0.0 +22685,75,7.75,9,0.0 +22685,53,32.8,17,0.0 +22685,31,12.5,50,0.0 +22685,37,26,31,0.0 +22685,11,21,43,0.0 +22685,56,38,23,0.0 +22685,63,43.9,31,0.0 +22685,45,9.5,41,0.0 +22685,27,43.9,25,0.0 +22685,55,24,29,0.0 +22685,62,49.3,3,0.0 +22685,76,18,18,0.0 +22685,2,19,35,0.0 +22685,52,7,30,0.0 +22685,74,10,9,0.0 +22685,25,14,6,0.0 +22685,23,9,34,0.0 +22685,20,81,26,0.0 +22685,28,45.6,2,0.0 +22685,69,36,26,0.0 +22685,38,263.5,7,0.0 +22685,21,10,28,0.0 +22685,19,9.2,7,0.0 +22685,67,14,8,0.0 +22685,24,4.5,8,0.0 +22685,72,34.8,20,0.0 +22685,54,7.45,27,0.0 +22685,14,23.25,22,0.0 +22685,64,33.25,14,0.0 +22685,7,30,20,0.0 +22685,17,39,31,0.0 +22685,5,21.35,26,0.0 +22685,32,32,5,0.0 +22685,39,18,42,0.0 +22685,22,21,22,0.0 +22685,34,14,30,0.0 +22685,4,22,10,0.0 +22685,70,15,32,0.0 +22685,58,13.25,35,0.0 +22685,3,10,18,0.0 +22685,18,62.5,29,0.0 +22685,10,31,36,0.0 +22685,60,34,25,0.0 +22685,50,16.25,9,0.0 +22686,22,21,47,0.0 +22686,29,123.79,41,0.0 +22686,67,14,44,0.0 +22686,45,9.5,4,0.0 +22686,3,10,47,0.0 +22686,18,62.5,7,0.0 +22686,56,38,40,0.0 +22686,31,12.5,5,0.0 +22686,40,18.4,48,0.0 +22686,20,81,24,0.0 +22686,73,15,20,0.0 +22687,1,18,1,0.0 +22687,16,17.45,32,0.0 +22687,39,18,49,0.0 +22687,26,31.23,37,0.0 +22688,73,15,27,0.0 +22688,4,22,18,0.0 +22688,38,263.5,14,0.0 +22688,31,12.5,14,0.0 +22688,1,18,45,0.0 +22688,54,7.45,27,0.0 +22688,60,34,50,0.0 +22688,10,31,50,0.0 +22688,56,38,4,0.0 +22688,59,55,33,0.0 +22688,23,9,37,0.0 +22688,41,9.65,2,0.0 +22688,58,13.25,21,0.0 +22688,42,14,20,0.0 +22689,50,16.25,7,0.0 +22689,23,9,45,0.0 +22689,57,19.5,50,0.0 +22689,13,6,45,0.0 +22689,27,43.9,31,0.0 +22689,33,2.5,12,0.0 +22689,30,25.89,14,0.0 +22689,55,24,16,0.0 +22689,15,15.5,33,0.0 +22689,52,7,9,0.0 +22689,25,14,16,0.0 +22689,60,34,24,0.0 +22689,74,10,39,0.0 +22689,1,18,16,0.0 +22689,62,49.3,4,0.0 +22689,68,12.5,48,0.0 +22689,14,23.25,11,0.0 +22689,71,21.5,18,0.0 +22689,3,10,18,0.0 +22689,61,28.5,6,0.0 +22689,17,39,16,0.0 +22689,69,36,14,0.0 +22689,45,9.5,28,0.0 +22689,37,26,45,0.0 +22689,35,18,22,0.0 +22689,24,4.5,19,0.0 +22689,36,19,27,0.0 +22689,26,31.23,9,0.0 +22689,77,13,3,0.0 +22689,42,14,26,0.0 +22689,63,43.9,8,0.0 +22689,18,62.5,12,0.0 +22689,53,32.8,50,0.0 +22689,16,17.45,5,0.0 +22689,10,31,43,0.0 +22689,75,7.75,15,0.0 +22689,5,21.35,30,0.0 +22689,6,25,21,0.0 +22689,59,55,4,0.0 +22689,19,9.2,1,0.0 +22689,22,21,21,0.0 +22689,67,14,33,0.0 +22689,64,33.25,22,0.0 +22689,28,45.6,6,0.0 +22689,20,81,33,0.0 +22689,41,9.65,4,0.0 +22689,73,15,38,0.0 +22689,70,15,22,0.0 +22689,66,17,38,0.0 +22689,58,13.25,46,0.0 +22689,43,46,29,0.0 +22689,11,21,25,0.0 +22689,47,9.5,30,0.0 +22690,60,34,2,0.0 +22690,16,17.45,34,0.0 +22690,35,18,9,0.0 +22690,32,32,34,0.0 +22690,43,46,13,0.0 +22690,18,62.5,46,0.0 +22690,75,7.75,37,0.0 +22690,49,20,49,0.0 +22690,76,18,23,0.0 +22690,19,9.2,36,0.0 +22690,21,10,7,0.0 +22690,28,45.6,17,0.0 +22690,63,43.9,41,0.0 +22690,54,7.45,11,0.0 +22690,44,19.45,21,0.0 +22690,31,12.5,29,0.0 +22690,24,4.5,26,0.0 +22690,10,31,14,0.0 +22690,58,13.25,24,0.0 +22690,30,25.89,30,0.0 +22690,56,38,20,0.0 +22690,26,31.23,50,0.0 +22690,7,30,27,0.0 +22690,3,10,21,0.0 +22690,66,17,2,0.0 +22690,61,28.5,13,0.0 +22690,6,25,44,0.0 +22690,62,49.3,35,0.0 +22690,37,26,15,0.0 +22690,29,123.79,25,0.0 +22690,38,263.5,1,0.0 +22690,14,23.25,30,0.0 +22690,4,22,15,0.0 +22690,48,12.75,43,0.0 +22690,64,33.25,25,0.0 +22690,17,39,29,0.0 +22690,65,21.05,27,0.0 +22690,74,10,49,0.0 +22690,9,97,31,0.0 +22690,67,14,49,0.0 +22690,13,6,26,0.0 +22690,39,18,34,0.0 +22690,59,55,39,0.0 +22690,57,19.5,46,0.0 +22690,73,15,31,0.0 +22690,70,15,32,0.0 +22690,69,36,18,0.0 +22690,15,15.5,32,0.0 +22690,1,18,48,0.0 +22690,51,53,37,0.0 +22690,23,9,43,0.0 +22690,25,14,40,0.0 +22690,77,13,48,0.0 +22690,8,40,20,0.0 +22690,53,32.8,20,0.0 +22690,71,21.5,37,0.0 +22690,68,12.5,3,0.0 +22690,42,14,12,0.0 +22690,46,12,30,0.0 +22690,11,21,13,0.0 +22690,33,2.5,43,0.0 +22690,55,24,33,0.0 +22690,41,9.65,5,0.0 +22690,47,9.5,14,0.0 +22690,50,16.25,39,0.0 +22690,20,81,22,0.0 +22690,36,19,1,0.0 +22690,12,38,23,0.0 +22690,22,21,24,0.0 +22690,5,21.35,5,0.0 +22690,52,7,34,0.0 +22690,72,34.8,48,0.0 +22690,34,14,13,0.0 +22690,45,9.5,8,0.0 +22690,27,43.9,32,0.0 +22690,40,18.4,45,0.0 +22690,2,19,49,0.0 +22691,23,9,32,0.0 +22691,47,9.5,47,0.0 +22691,36,19,45,0.0 +22691,60,34,28,0.0 +22691,56,38,13,0.0 +22691,72,34.8,7,0.0 +22691,58,13.25,2,0.0 +22691,26,31.23,10,0.0 +22691,41,9.65,16,0.0 +22691,13,6,28,0.0 +22691,54,7.45,8,0.0 +22691,44,19.45,14,0.0 +22691,8,40,36,0.0 +22692,65,21.05,47,0.0 +22692,43,46,44,0.0 +22692,68,12.5,39,0.0 +22692,61,28.5,37,0.0 +22692,52,7,4,0.0 +22692,26,31.23,21,0.0 +22692,45,9.5,22,0.0 +22692,75,7.75,24,0.0 +22692,64,33.25,7,0.0 +22692,60,34,41,0.0 +22692,11,21,22,0.0 +22692,7,30,38,0.0 +22692,21,10,31,0.0 +22693,14,23.25,13,0.0 +22693,76,18,17,0.0 +22693,69,36,7,0.0 +22693,12,38,5,0.0 +22693,55,24,37,0.0 +22693,20,81,11,0.0 +22693,51,53,28,0.0 +22693,21,10,23,0.0 +22693,7,30,30,0.0 +22693,70,15,36,0.0 +22693,62,49.3,28,0.0 +22693,53,32.8,22,0.0 +22693,31,12.5,17,0.0 +22693,23,9,45,0.0 +22693,4,22,37,0.0 +22693,27,43.9,11,0.0 +22693,17,39,5,0.0 +22693,30,25.89,3,0.0 +22693,1,18,1,0.0 +22693,36,19,25,0.0 +22693,6,25,23,0.0 +22693,33,2.5,36,0.0 +22693,64,33.25,4,0.0 +22693,77,13,22,0.0 +22693,43,46,10,0.0 +22693,22,21,48,0.0 +22693,54,7.45,44,0.0 +22693,63,43.9,4,0.0 +22693,59,55,2,0.0 +22693,38,263.5,29,0.0 +22693,10,31,2,0.0 +22693,34,14,47,0.0 +22693,19,9.2,5,0.0 +22693,48,12.75,48,0.0 +22693,71,21.5,8,0.0 +22693,47,9.5,13,0.0 +22693,74,10,40,0.0 +22693,40,18.4,34,0.0 +22693,24,4.5,34,0.0 +22693,44,19.45,42,0.0 +22693,65,21.05,2,0.0 +22693,45,9.5,15,0.0 +22693,32,32,30,0.0 +22693,73,15,29,0.0 +22693,9,97,18,0.0 +22693,56,38,29,0.0 +22693,46,12,18,0.0 +22693,72,34.8,34,0.0 +22693,29,123.79,45,0.0 +22693,5,21.35,23,0.0 +22693,58,13.25,28,0.0 +22693,37,26,21,0.0 +22693,2,19,23,0.0 +22693,18,62.5,17,0.0 +22693,8,40,24,0.0 +22693,67,14,33,0.0 +22693,52,7,12,0.0 +22693,42,14,32,0.0 +22693,16,17.45,37,0.0 +22693,57,19.5,30,0.0 +22693,68,12.5,41,0.0 +22693,25,14,9,0.0 +22693,50,16.25,35,0.0 +22693,26,31.23,32,0.0 +22693,49,20,28,0.0 +22693,13,6,19,0.0 +22693,61,28.5,41,0.0 +22693,15,15.5,49,0.0 +22693,75,7.75,49,0.0 +22693,35,18,28,0.0 +22694,14,23.25,14,0.0 +22694,62,49.3,42,0.0 +22694,77,13,35,0.0 +22694,11,21,21,0.0 +22694,35,18,11,0.0 +22694,68,12.5,18,0.0 +22694,13,6,37,0.0 +22694,24,4.5,40,0.0 +22694,60,34,3,0.0 +22694,27,43.9,1,0.0 +22694,56,38,3,0.0 +22694,48,12.75,34,0.0 +22694,67,14,3,0.0 +22694,47,9.5,19,0.0 +22694,8,40,43,0.0 +22694,5,21.35,27,0.0 +22694,75,7.75,9,0.0 +22694,33,2.5,12,0.0 +22694,18,62.5,32,0.0 +22694,10,31,47,0.0 +22694,38,263.5,22,0.0 +22694,17,39,29,0.0 +22694,21,10,49,0.0 +22694,59,55,46,0.0 +22694,54,7.45,9,0.0 +22694,64,33.25,40,0.0 +22694,42,14,36,0.0 +22694,76,18,4,0.0 +22694,57,19.5,29,0.0 +22694,66,17,40,0.0 +22694,3,10,23,0.0 +22694,72,34.8,42,0.0 +22694,4,22,34,0.0 +22694,50,16.25,44,0.0 +22694,44,19.45,11,0.0 +22694,12,38,13,0.0 +22694,52,7,50,0.0 +22694,71,21.5,33,0.0 +22694,43,46,12,0.0 +22694,28,45.6,47,0.0 +22694,49,20,20,0.0 +22694,55,24,38,0.0 +22694,2,19,10,0.0 +22694,34,14,44,0.0 +22694,16,17.45,31,0.0 +22694,31,12.5,34,0.0 +22694,9,97,3,0.0 +22694,36,19,2,0.0 +22694,73,15,33,0.0 +22694,51,53,34,0.0 +22694,1,18,36,0.0 +22694,23,9,37,0.0 +22694,46,12,1,0.0 +22694,15,15.5,37,0.0 +22694,37,26,20,0.0 +22694,58,13.25,42,0.0 +22694,7,30,3,0.0 +22694,6,25,41,0.0 +22694,63,43.9,32,0.0 +22694,30,25.89,22,0.0 +22694,39,18,1,0.0 +22694,20,81,46,0.0 +22694,69,36,14,0.0 +22694,29,123.79,45,0.0 +22694,41,9.65,6,0.0 +22694,70,15,13,0.0 +22694,26,31.23,17,0.0 +22695,48,12.75,6,0.0 +22695,64,33.25,24,0.0 +22695,56,38,10,0.0 +22695,28,45.6,17,0.0 +22695,69,36,41,0.0 +22695,52,7,48,0.0 +22695,67,14,13,0.0 +22695,71,21.5,3,0.0 +22695,59,55,32,0.0 +22695,39,18,29,0.0 +22695,3,10,40,0.0 +22695,42,14,33,0.0 +22695,1,18,21,0.0 +22695,49,20,25,0.0 +22695,25,14,17,0.0 +22695,61,28.5,45,0.0 +22695,57,19.5,6,0.0 +22695,10,31,26,0.0 +22695,74,10,13,0.0 +22695,38,263.5,1,0.0 +22695,75,7.75,32,0.0 +22695,19,9.2,26,0.0 +22695,17,39,9,0.0 +22695,24,4.5,37,0.0 +22695,20,81,48,0.0 +22695,44,19.45,50,0.0 +22695,2,19,47,0.0 +22695,18,62.5,23,0.0 +22695,23,9,4,0.0 +22695,73,15,3,0.0 +22695,35,18,7,0.0 +22695,6,25,44,0.0 +22695,22,21,2,0.0 +22695,30,25.89,14,0.0 +22695,41,9.65,40,0.0 +22695,8,40,7,0.0 +22695,63,43.9,31,0.0 +22695,47,9.5,27,0.0 +22695,40,18.4,38,0.0 +22695,55,24,18,0.0 +22695,53,32.8,40,0.0 +22695,76,18,35,0.0 +22695,58,13.25,3,0.0 +22695,36,19,40,0.0 +22695,21,10,32,0.0 +22695,45,9.5,30,0.0 +22695,13,6,37,0.0 +22695,70,15,9,0.0 +22695,77,13,28,0.0 +22695,33,2.5,39,0.0 +22695,15,15.5,42,0.0 +22695,11,21,18,0.0 +22695,16,17.45,3,0.0 +22695,5,21.35,33,0.0 +22695,7,30,27,0.0 +22695,26,31.23,38,0.0 +22695,68,12.5,35,0.0 +22695,65,21.05,41,0.0 +22695,32,32,3,0.0 +22695,12,38,12,0.0 +22696,34,14,38,0.0 +22696,53,32.8,9,0.0 +22696,44,19.45,22,0.0 +22696,16,17.45,18,0.0 +22696,3,10,39,0.0 +22696,32,32,41,0.0 +22696,60,34,44,0.0 +22696,1,18,48,0.0 +22696,71,21.5,41,0.0 +22696,27,43.9,20,0.0 +22696,72,34.8,1,0.0 +22697,38,263.5,18,0.0 +22697,32,32,22,0.0 +22697,77,13,33,0.0 +22697,53,32.8,44,0.0 +22697,55,24,47,0.0 +22697,42,14,26,0.0 +22697,31,12.5,11,0.0 +22697,35,18,23,0.0 +22697,54,7.45,42,0.0 +22697,15,15.5,42,0.0 +22697,56,38,11,0.0 +22697,26,31.23,22,0.0 +22697,36,19,25,0.0 +22697,41,9.65,13,0.0 +22697,22,21,31,0.0 +22697,64,33.25,24,0.0 +22697,49,20,14,0.0 +22697,21,10,35,0.0 +22698,37,26,31,0.0 +22698,68,12.5,50,0.0 +22698,65,21.05,47,0.0 +22698,28,45.6,33,0.0 +22698,31,12.5,19,0.0 +22698,58,13.25,15,0.0 +22698,76,18,23,0.0 +22698,11,21,5,0.0 +22698,34,14,38,0.0 +22698,74,10,23,0.0 +22698,5,21.35,17,0.0 +22698,4,22,8,0.0 +22698,12,38,35,0.0 +22698,60,34,21,0.0 +22698,54,7.45,48,0.0 +22698,77,13,24,0.0 +22698,16,17.45,20,0.0 +22698,61,28.5,5,0.0 +22698,15,15.5,18,0.0 +22698,33,2.5,26,0.0 +22698,70,15,12,0.0 +22698,75,7.75,14,0.0 +22698,7,30,49,0.0 +22698,55,24,40,0.0 +22698,45,9.5,23,0.0 +22698,41,9.65,19,0.0 +22698,46,12,27,0.0 +22698,52,7,36,0.0 +22698,20,81,37,0.0 +22698,66,17,23,0.0 +22698,19,9.2,21,0.0 +22698,22,21,40,0.0 +22698,14,23.25,5,0.0 +22698,39,18,44,0.0 +22698,69,36,9,0.0 +22698,35,18,17,0.0 +22698,24,4.5,10,0.0 +22698,48,12.75,43,0.0 +22698,47,9.5,46,0.0 +22698,53,32.8,46,0.0 +22698,6,25,31,0.0 +22698,8,40,10,0.0 +22698,27,43.9,5,0.0 +22698,64,33.25,27,0.0 +22698,63,43.9,23,0.0 +22698,2,19,42,0.0 +22698,25,14,24,0.0 +22698,71,21.5,7,0.0 +22698,40,18.4,8,0.0 +22698,13,6,10,0.0 +22698,67,14,42,0.0 +22698,17,39,7,0.0 +22698,36,19,9,0.0 +22698,72,34.8,34,0.0 +22698,30,25.89,23,0.0 +22698,9,97,18,0.0 +22698,49,20,33,0.0 +22698,26,31.23,38,0.0 +22698,62,49.3,1,0.0 +22698,10,31,41,0.0 +22698,59,55,45,0.0 +22698,3,10,19,0.0 +22698,56,38,36,0.0 +22698,29,123.79,34,0.0 +22698,23,9,20,0.0 +22698,38,263.5,11,0.0 +22698,57,19.5,44,0.0 +22698,21,10,1,0.0 +22698,50,16.25,4,0.0 +22698,44,19.45,4,0.0 +22698,1,18,27,0.0 +22698,32,32,38,0.0 +22699,51,53,29,0.0 +22699,5,21.35,42,0.0 +22699,77,13,5,0.0 +22699,37,26,20,0.0 +22699,63,43.9,41,0.0 +22699,53,32.8,41,0.0 +22699,9,97,34,0.0 +22699,68,12.5,29,0.0 +22699,43,46,36,0.0 +22699,44,19.45,6,0.0 +22699,58,13.25,38,0.0 +22699,27,43.9,12,0.0 +22699,50,16.25,13,0.0 +22699,39,18,29,0.0 +22699,52,7,18,0.0 +22699,16,17.45,48,0.0 +22699,41,9.65,7,0.0 +22699,59,55,8,0.0 +22699,22,21,2,0.0 +22699,36,19,33,0.0 +22699,13,6,49,0.0 +22699,14,23.25,3,0.0 +22700,66,17,2,0.0 +22700,10,31,1,0.0 +22700,32,32,39,0.0 +22700,70,15,12,0.0 +22700,41,9.65,38,0.0 +22700,29,123.79,4,0.0 +22701,58,13.25,11,0.0 +22701,39,18,45,0.0 +22701,22,21,24,0.0 +22701,9,97,11,0.0 +22701,50,16.25,39,0.0 +22701,14,23.25,12,0.0 +22701,59,55,11,0.0 +22701,44,19.45,45,0.0 +22701,30,25.89,37,0.0 +22701,49,20,14,0.0 +22701,70,15,49,0.0 +22701,53,32.8,40,0.0 +22701,74,10,45,0.0 +22701,71,21.5,13,0.0 +22701,5,21.35,35,0.0 +22701,55,24,5,0.0 +22701,37,26,26,0.0 +22701,61,28.5,21,0.0 +22701,35,18,32,0.0 +22701,65,21.05,16,0.0 +22701,13,6,35,0.0 +22701,16,17.45,17,0.0 +22701,43,46,14,0.0 +22701,47,9.5,34,0.0 +22701,72,34.8,18,0.0 +22701,69,36,9,0.0 +22701,27,43.9,10,0.0 +22701,23,9,15,0.0 +22702,54,7.45,10,0.0 +22702,3,10,36,0.0 +22702,32,32,22,0.0 +22702,31,12.5,46,0.0 +22702,48,12.75,16,0.0 +22702,16,17.45,2,0.0 +22702,73,15,50,0.0 +22702,20,81,22,0.0 +22702,64,33.25,50,0.0 +22702,50,16.25,44,0.0 +22702,28,45.6,4,0.0 +22702,38,263.5,15,0.0 +22702,42,14,46,0.0 +22702,34,14,26,0.0 +22702,62,49.3,25,0.0 +22702,10,31,46,0.0 +22702,72,34.8,32,0.0 +22702,43,46,14,0.0 +22702,66,17,14,0.0 +22702,1,18,36,0.0 +22702,18,62.5,13,0.0 +22702,75,7.75,17,0.0 +22702,27,43.9,9,0.0 +22702,36,19,49,0.0 +22702,67,14,30,0.0 +22702,71,21.5,40,0.0 +22702,69,36,14,0.0 +22702,65,21.05,19,0.0 +22702,44,19.45,33,0.0 +22702,7,30,39,0.0 +22702,30,25.89,36,0.0 +22702,2,19,9,0.0 +22702,77,13,20,0.0 +22702,47,9.5,7,0.0 +22702,45,9.5,10,0.0 +22702,11,21,7,0.0 +22702,58,13.25,50,0.0 +22702,21,10,2,0.0 +22702,5,21.35,35,0.0 +22702,13,6,45,0.0 +22702,49,20,39,0.0 +22702,6,25,45,0.0 +22702,60,34,5,0.0 +22702,17,39,5,0.0 +22702,26,31.23,45,0.0 +22702,22,21,7,0.0 +22702,70,15,12,0.0 +22702,12,38,21,0.0 +22702,46,12,32,0.0 +22702,25,14,21,0.0 +22702,63,43.9,49,0.0 +22702,14,23.25,23,0.0 +22702,15,15.5,48,0.0 +22702,23,9,50,0.0 +22702,8,40,15,0.0 +22702,76,18,23,0.0 +22702,19,9.2,46,0.0 +22702,39,18,19,0.0 +22702,57,19.5,6,0.0 +22702,74,10,12,0.0 +22702,41,9.65,28,0.0 +22702,4,22,31,0.0 +22702,61,28.5,28,0.0 +22702,33,2.5,48,0.0 +22702,53,32.8,22,0.0 +22702,52,7,25,0.0 +22703,4,22,33,0.0 +22703,29,123.79,34,0.0 +22703,14,23.25,21,0.0 +22703,16,17.45,11,0.0 +22703,10,31,7,0.0 +22703,3,10,22,0.0 +22703,6,25,14,0.0 +22703,71,21.5,20,0.0 +22703,36,19,49,0.0 +22703,30,25.89,8,0.0 +22703,41,9.65,36,0.0 +22703,52,7,10,0.0 +22703,68,12.5,42,0.0 +22703,1,18,8,0.0 +22703,7,30,2,0.0 +22703,49,20,14,0.0 +22703,2,19,7,0.0 +22703,27,43.9,4,0.0 +22703,42,14,27,0.0 +22703,21,10,46,0.0 +22703,77,13,30,0.0 +22703,62,49.3,28,0.0 +22703,12,38,16,0.0 +22703,43,46,6,0.0 +22703,23,9,31,0.0 +22703,5,21.35,44,0.0 +22703,39,18,24,0.0 +22703,34,14,50,0.0 +22703,73,15,45,0.0 +22703,57,19.5,28,0.0 +22703,35,18,48,0.0 +22703,44,19.45,17,0.0 +22703,37,26,49,0.0 +22703,25,14,40,0.0 +22703,17,39,10,0.0 +22703,61,28.5,41,0.0 +22703,64,33.25,3,0.0 +22703,72,34.8,16,0.0 +22703,76,18,9,0.0 +22703,33,2.5,14,0.0 +22703,8,40,44,0.0 +22703,24,4.5,44,0.0 +22703,63,43.9,46,0.0 +22703,19,9.2,29,0.0 +22704,18,62.5,41,0.0 +22704,51,53,30,0.0 +22704,41,9.65,7,0.0 +22704,16,17.45,39,0.0 +22704,33,2.5,35,0.0 +22704,71,21.5,33,0.0 +22704,22,21,5,0.0 +22704,43,46,23,0.0 +22704,65,21.05,35,0.0 +22704,69,36,28,0.0 +22704,32,32,11,0.0 +22704,63,43.9,12,0.0 +22704,36,19,17,0.0 +22704,9,97,24,0.0 +22704,34,14,28,0.0 +22704,19,9.2,2,0.0 +22704,24,4.5,7,0.0 +22704,37,26,27,0.0 +22704,67,14,2,0.0 +22704,8,40,30,0.0 +22704,55,24,11,0.0 +22704,57,19.5,44,0.0 +22704,68,12.5,1,0.0 +22704,70,15,7,0.0 +22705,65,21.05,27,0.0 +22705,16,17.45,48,0.0 +22705,42,14,42,0.0 +22705,7,30,38,0.0 +22705,22,21,36,0.0 +22705,49,20,26,0.0 +22705,12,38,15,0.0 +22705,30,25.89,28,0.0 +22706,71,21.5,39,0.0 +22706,24,4.5,1,0.0 +22706,11,21,19,0.0 +22706,8,40,4,0.0 +22706,26,31.23,12,0.0 +22706,50,16.25,2,0.0 +22706,46,12,13,0.0 +22706,22,21,10,0.0 +22706,56,38,46,0.0 +22706,59,55,45,0.0 +22706,10,31,3,0.0 +22706,48,12.75,24,0.0 +22706,17,39,33,0.0 +22706,20,81,17,0.0 +22706,30,25.89,50,0.0 +22706,69,36,48,0.0 +22706,33,2.5,43,0.0 +22706,66,17,19,0.0 +22706,57,19.5,28,0.0 +22706,75,7.75,13,0.0 +22706,74,10,45,0.0 +22706,53,32.8,29,0.0 +22707,69,36,13,0.0 +22707,64,33.25,6,0.0 +22707,68,12.5,5,0.0 +22707,66,17,47,0.0 +22707,24,4.5,43,0.0 +22707,32,32,25,0.0 +22707,43,46,28,0.0 +22707,70,15,1,0.0 +22707,31,12.5,18,0.0 +22707,39,18,8,0.0 +22707,50,16.25,40,0.0 +22707,12,38,7,0.0 +22707,10,31,24,0.0 +22707,37,26,28,0.0 +22707,62,49.3,48,0.0 +22707,18,62.5,49,0.0 +22707,55,24,1,0.0 +22707,52,7,9,0.0 +22707,40,18.4,27,0.0 +22707,76,18,40,0.0 +22707,77,13,31,0.0 +22707,38,263.5,49,0.0 +22707,71,21.5,17,0.0 +22707,42,14,8,0.0 +22708,13,6,18,0.0 +22708,46,12,47,0.0 +22708,72,34.8,44,0.0 +22708,21,10,12,0.0 +22708,48,12.75,40,0.0 +22708,37,26,27,0.0 +22708,71,21.5,18,0.0 +22708,38,263.5,30,0.0 +22708,3,10,14,0.0 +22708,69,36,24,0.0 +22708,67,14,1,0.0 +22708,44,19.45,9,0.0 +22708,32,32,20,0.0 +22708,43,46,46,0.0 +22708,66,17,41,0.0 +22708,53,32.8,49,0.0 +22708,20,81,46,0.0 +22708,27,43.9,10,0.0 +22708,64,33.25,49,0.0 +22708,16,17.45,47,0.0 +22708,77,13,31,0.0 +22708,74,10,46,0.0 +22708,36,19,36,0.0 +22708,17,39,43,0.0 +22708,1,18,19,0.0 +22708,9,97,22,0.0 +22708,47,9.5,16,0.0 +22708,14,23.25,37,0.0 +22708,57,19.5,29,0.0 +22708,50,16.25,36,0.0 +22708,54,7.45,16,0.0 +22708,60,34,1,0.0 +22708,7,30,44,0.0 +22708,2,19,40,0.0 +22708,31,12.5,22,0.0 +22708,62,49.3,31,0.0 +22708,6,25,18,0.0 +22708,42,14,47,0.0 +22708,52,7,31,0.0 +22708,30,25.89,44,0.0 +22708,39,18,41,0.0 +22708,56,38,35,0.0 +22708,28,45.6,27,0.0 +22708,11,21,24,0.0 +22708,29,123.79,24,0.0 +22708,59,55,21,0.0 +22708,22,21,33,0.0 +22708,65,21.05,41,0.0 +22708,58,13.25,7,0.0 +22708,15,15.5,6,0.0 +22708,35,18,2,0.0 +22708,68,12.5,47,0.0 +22708,76,18,42,0.0 +22708,8,40,15,0.0 +22708,33,2.5,40,0.0 +22708,5,21.35,49,0.0 +22708,24,4.5,48,0.0 +22708,34,14,26,0.0 +22708,26,31.23,11,0.0 +22708,55,24,47,0.0 +22708,70,15,24,0.0 +22708,18,62.5,5,0.0 +22708,75,7.75,21,0.0 +22709,11,21,15,0.0 +22709,36,19,45,0.0 +22709,31,12.5,19,0.0 +22709,75,7.75,12,0.0 +22709,24,4.5,32,0.0 +22709,42,14,15,0.0 +22709,21,10,6,0.0 +22709,30,25.89,36,0.0 +22709,9,97,8,0.0 +22709,73,15,49,0.0 +22709,46,12,1,0.0 +22709,65,21.05,34,0.0 +22709,51,53,45,0.0 +22709,35,18,19,0.0 +22709,55,24,18,0.0 +22709,47,9.5,15,0.0 +22709,22,21,10,0.0 +22709,57,19.5,43,0.0 +22709,56,38,44,0.0 +22709,70,15,9,0.0 +22709,49,20,47,0.0 +22709,50,16.25,40,0.0 +22709,61,28.5,19,0.0 +22709,6,25,1,0.0 +22709,59,55,14,0.0 +22709,2,19,24,0.0 +22709,52,7,49,0.0 +22709,67,14,23,0.0 +22709,38,263.5,13,0.0 +22709,4,22,5,0.0 +22709,12,38,16,0.0 +22709,74,10,35,0.0 +22709,28,45.6,12,0.0 +22709,10,31,21,0.0 +22709,25,14,18,0.0 +22709,23,9,35,0.0 +22709,29,123.79,10,0.0 +22709,43,46,24,0.0 +22709,14,23.25,20,0.0 +22709,76,18,33,0.0 +22709,45,9.5,11,0.0 +22709,34,14,40,0.0 +22709,26,31.23,3,0.0 +22709,3,10,43,0.0 +22709,44,19.45,25,0.0 +22709,18,62.5,31,0.0 +22709,17,39,50,0.0 +22710,12,38,10,0.0 +22710,6,25,37,0.0 +22710,34,14,22,0.0 +22710,7,30,3,0.0 +22710,54,7.45,26,0.0 +22710,51,53,44,0.0 +22710,9,97,2,0.0 +22710,15,15.5,9,0.0 +22710,29,123.79,50,0.0 +22710,27,43.9,9,0.0 +22710,69,36,30,0.0 +22710,31,12.5,49,0.0 +22710,67,14,28,0.0 +22710,8,40,44,0.0 +22710,62,49.3,25,0.0 +22710,26,31.23,40,0.0 +22710,40,18.4,22,0.0 +22710,60,34,20,0.0 +22710,37,26,36,0.0 +22710,71,21.5,43,0.0 +22710,53,32.8,11,0.0 +22710,44,19.45,41,0.0 +22710,49,20,49,0.0 +22710,38,263.5,7,0.0 +22710,21,10,29,0.0 +22710,61,28.5,37,0.0 +22710,70,15,28,0.0 +22710,63,43.9,8,0.0 +22710,68,12.5,11,0.0 +22710,73,15,34,0.0 +22710,43,46,41,0.0 +22710,65,21.05,31,0.0 +22710,46,12,13,0.0 +22710,16,17.45,31,0.0 +22710,42,14,23,0.0 +22710,23,9,33,0.0 +22710,57,19.5,19,0.0 +22710,14,23.25,9,0.0 +22710,64,33.25,42,0.0 +22710,3,10,45,0.0 +22710,76,18,19,0.0 +22710,20,81,47,0.0 +22710,19,9.2,15,0.0 +22710,47,9.5,6,0.0 +22710,2,19,38,0.0 +22710,75,7.75,41,0.0 +22710,50,16.25,31,0.0 +22710,56,38,40,0.0 +22710,30,25.89,25,0.0 +22710,24,4.5,47,0.0 +22710,45,9.5,36,0.0 +22710,25,14,42,0.0 +22710,39,18,34,0.0 +22710,28,45.6,47,0.0 +22710,17,39,30,0.0 +22710,58,13.25,21,0.0 +22710,77,13,44,0.0 +22710,36,19,5,0.0 +22710,13,6,35,0.0 +22710,22,21,29,0.0 +22710,33,2.5,36,0.0 +22710,48,12.75,36,0.0 +22710,35,18,44,0.0 +22710,10,31,20,0.0 +22710,55,24,25,0.0 +22710,4,22,41,0.0 +22710,74,10,5,0.0 +22710,1,18,22,0.0 +22710,18,62.5,33,0.0 +22710,11,21,35,0.0 +22710,66,17,10,0.0 +22711,10,31,44,0.0 +22711,29,123.79,40,0.0 +22711,62,49.3,15,0.0 +22711,15,15.5,13,0.0 +22711,39,18,8,0.0 +22711,7,30,44,0.0 +22711,71,21.5,33,0.0 +22711,70,15,48,0.0 +22711,75,7.75,40,0.0 +22711,4,22,40,0.0 +22711,30,25.89,50,0.0 +22711,23,9,46,0.0 +22711,50,16.25,14,0.0 +22711,36,19,42,0.0 +22711,76,18,8,0.0 +22711,67,14,13,0.0 +22711,16,17.45,46,0.0 +22711,49,20,36,0.0 +22711,40,18.4,32,0.0 +22711,61,28.5,45,0.0 +22711,3,10,9,0.0 +22711,47,9.5,16,0.0 +22711,68,12.5,50,0.0 +22711,14,23.25,7,0.0 +22711,72,34.8,34,0.0 +22711,28,45.6,36,0.0 +22711,44,19.45,11,0.0 +22711,51,53,32,0.0 +22711,20,81,2,0.0 +22711,58,13.25,41,0.0 +22711,21,10,26,0.0 +22711,56,38,3,0.0 +22711,33,2.5,44,0.0 +22711,34,14,7,0.0 +22711,32,32,24,0.0 +22711,12,38,48,0.0 +22711,59,55,25,0.0 +22711,74,10,38,0.0 +22711,35,18,3,0.0 +22711,9,97,41,0.0 +22711,69,36,38,0.0 +22711,18,62.5,10,0.0 +22711,52,7,33,0.0 +22711,57,19.5,36,0.0 +22711,17,39,21,0.0 +22711,31,12.5,39,0.0 +22711,65,21.05,17,0.0 +22711,25,14,9,0.0 +22711,77,13,32,0.0 +22711,37,26,30,0.0 +22711,26,31.23,48,0.0 +22711,24,4.5,13,0.0 +22711,2,19,5,0.0 +22711,73,15,15,0.0 +22711,55,24,20,0.0 +22711,54,7.45,41,0.0 +22711,6,25,11,0.0 +22711,45,9.5,6,0.0 +22712,60,34,23,0.0 +22712,13,6,36,0.0 +22712,54,7.45,28,0.0 +22712,7,30,5,0.0 +22713,75,7.75,4,0.0 +22713,30,25.89,4,0.0 +22713,40,18.4,38,0.0 +22713,57,19.5,48,0.0 +22713,23,9,19,0.0 +22713,51,53,6,0.0 +22713,16,17.45,8,0.0 +22713,62,49.3,30,0.0 +22713,8,40,35,0.0 +22713,56,38,23,0.0 +22713,29,123.79,15,0.0 +22713,18,62.5,23,0.0 +22713,21,10,45,0.0 +22713,55,24,18,0.0 +22713,66,17,6,0.0 +22713,47,9.5,5,0.0 +22713,7,30,39,0.0 +22713,14,23.25,4,0.0 +22713,13,6,12,0.0 +22713,50,16.25,44,0.0 +22713,9,97,2,0.0 +22714,47,9.5,10,0.0 +22714,37,26,36,0.0 +22714,75,7.75,21,0.0 +22714,16,17.45,46,0.0 +22714,66,17,36,0.0 +22714,30,25.89,37,0.0 +22714,22,21,22,0.0 +22714,3,10,38,0.0 +22714,53,32.8,28,0.0 +22714,13,6,5,0.0 +22714,61,28.5,41,0.0 +22714,26,31.23,19,0.0 +22714,18,62.5,10,0.0 +22714,63,43.9,48,0.0 +22714,31,12.5,33,0.0 +22714,4,22,1,0.0 +22714,15,15.5,36,0.0 +22714,57,19.5,36,0.0 +22714,73,15,2,0.0 +22714,5,21.35,30,0.0 +22714,28,45.6,20,0.0 +22714,58,13.25,16,0.0 +22714,32,32,16,0.0 +22714,41,9.65,49,0.0 +22714,8,40,36,0.0 +22714,51,53,46,0.0 +22714,60,34,25,0.0 +22714,17,39,41,0.0 +22714,23,9,15,0.0 +22714,21,10,9,0.0 +22714,62,49.3,41,0.0 +22714,76,18,43,0.0 +22714,68,12.5,42,0.0 +22714,48,12.75,49,0.0 +22714,19,9.2,20,0.0 +22714,1,18,31,0.0 +22714,70,15,28,0.0 +22714,50,16.25,33,0.0 +22714,52,7,37,0.0 +22714,20,81,29,0.0 +22714,72,34.8,26,0.0 +22714,9,97,20,0.0 +22714,77,13,26,0.0 +22714,33,2.5,23,0.0 +22714,27,43.9,18,0.0 +22714,2,19,24,0.0 +22714,46,12,22,0.0 +22714,34,14,20,0.0 +22714,64,33.25,7,0.0 +22714,69,36,26,0.0 +22714,35,18,25,0.0 +22714,14,23.25,33,0.0 +22714,12,38,47,0.0 +22714,24,4.5,24,0.0 +22714,54,7.45,30,0.0 +22714,42,14,46,0.0 +22714,59,55,48,0.0 +22714,38,263.5,5,0.0 +22714,49,20,17,0.0 +22714,74,10,15,0.0 +22714,65,21.05,2,0.0 +22715,77,13,21,0.0 +22716,32,32,30,0.0 +22716,46,12,22,0.0 +22716,76,18,13,0.0 +22716,40,18.4,18,0.0 +22716,8,40,3,0.0 +22716,58,13.25,11,0.0 +22716,14,23.25,21,0.0 +22716,31,12.5,38,0.0 +22716,36,19,40,0.0 +22716,72,34.8,50,0.0 +22716,45,9.5,42,0.0 +22716,24,4.5,18,0.0 +22716,64,33.25,24,0.0 +22716,26,31.23,38,0.0 +22716,66,17,2,0.0 +22716,3,10,42,0.0 +22716,33,2.5,24,0.0 +22716,69,36,23,0.0 +22716,1,18,16,0.0 +22716,4,22,49,0.0 +22716,56,38,34,0.0 +22716,70,15,10,0.0 +22716,11,21,36,0.0 +22716,61,28.5,18,0.0 +22716,47,9.5,44,0.0 +22716,25,14,6,0.0 +22716,21,10,28,0.0 +22716,62,49.3,11,0.0 +22716,49,20,16,0.0 +22716,43,46,13,0.0 +22716,38,263.5,46,0.0 +22716,10,31,23,0.0 +22716,7,30,31,0.0 +22716,41,9.65,12,0.0 +22716,65,21.05,7,0.0 +22716,9,97,16,0.0 +22716,12,38,5,0.0 +22716,57,19.5,37,0.0 +22716,22,21,49,0.0 +22716,59,55,38,0.0 +22716,68,12.5,42,0.0 +22716,53,32.8,24,0.0 +22716,63,43.9,21,0.0 +22716,75,7.75,2,0.0 +22716,6,25,2,0.0 +22716,77,13,37,0.0 +22716,51,53,48,0.0 +22716,27,43.9,16,0.0 +22716,17,39,28,0.0 +22716,13,6,4,0.0 +22716,15,15.5,46,0.0 +22716,52,7,47,0.0 +22716,44,19.45,7,0.0 +22716,20,81,46,0.0 +22716,60,34,31,0.0 +22716,54,7.45,18,0.0 +22716,73,15,4,0.0 +22716,35,18,6,0.0 +22716,37,26,18,0.0 +22716,28,45.6,37,0.0 +22716,16,17.45,22,0.0 +22716,23,9,34,0.0 +22716,18,62.5,21,0.0 +22716,74,10,36,0.0 +22716,42,14,45,0.0 +22716,2,19,25,0.0 +22716,39,18,50,0.0 +22716,19,9.2,8,0.0 +22716,67,14,41,0.0 +22716,48,12.75,41,0.0 +22716,71,21.5,13,0.0 +22716,55,24,2,0.0 +22717,68,12.5,41,0.0 +22717,8,40,16,0.0 +22717,32,32,11,0.0 +22717,11,21,38,0.0 +22717,47,9.5,37,0.0 +22717,30,25.89,3,0.0 +22717,3,10,37,0.0 +22717,43,46,28,0.0 +22717,64,33.25,28,0.0 +22717,71,21.5,24,0.0 +22717,69,36,39,0.0 +22717,45,9.5,10,0.0 +22717,21,10,13,0.0 +22717,56,38,4,0.0 +22717,19,9.2,36,0.0 +22717,41,9.65,16,0.0 +22717,74,10,31,0.0 +22717,50,16.25,33,0.0 +22717,60,34,3,0.0 +22717,59,55,30,0.0 +22717,29,123.79,22,0.0 +22717,31,12.5,40,0.0 +22717,16,17.45,30,0.0 +22717,49,20,27,0.0 +22717,66,17,47,0.0 +22718,51,53,16,0.0 +22718,52,7,2,0.0 +22718,69,36,34,0.0 +22718,1,18,26,0.0 +22718,37,26,37,0.0 +22718,39,18,28,0.0 +22719,3,10,49,0.0 +22719,73,15,42,0.0 +22719,23,9,47,0.0 +22719,52,7,21,0.0 +22719,74,10,45,0.0 +22719,75,7.75,36,0.0 +22719,62,49.3,39,0.0 +22719,60,34,16,0.0 +22719,39,18,1,0.0 +22719,24,4.5,8,0.0 +22719,7,30,8,0.0 +22719,72,34.8,11,0.0 +22719,49,20,1,0.0 +22719,12,38,50,0.0 +22719,4,22,39,0.0 +22719,66,17,11,0.0 +22719,6,25,29,0.0 +22719,25,14,10,0.0 +22719,27,43.9,22,0.0 +22719,50,16.25,31,0.0 +22719,40,18.4,16,0.0 +22719,63,43.9,22,0.0 +22719,70,15,27,0.0 +22719,29,123.79,18,0.0 +22719,54,7.45,30,0.0 +22719,53,32.8,37,0.0 +22719,8,40,43,0.0 +22719,41,9.65,10,0.0 +22719,71,21.5,47,0.0 +22719,45,9.5,1,0.0 +22719,2,19,48,0.0 +22719,69,36,19,0.0 +22719,11,21,46,0.0 +22719,46,12,20,0.0 +22719,18,62.5,22,0.0 +22719,57,19.5,34,0.0 +22719,37,26,3,0.0 +22719,22,21,25,0.0 +22719,61,28.5,30,0.0 +22719,76,18,32,0.0 +22719,56,38,35,0.0 +22719,59,55,5,0.0 +22719,26,31.23,42,0.0 +22719,31,12.5,19,0.0 +22719,55,24,14,0.0 +22719,38,263.5,17,0.0 +22719,30,25.89,8,0.0 +22719,58,13.25,1,0.0 +22719,14,23.25,18,0.0 +22719,33,2.5,49,0.0 +22719,42,14,20,0.0 +22719,36,19,41,0.0 +22719,65,21.05,31,0.0 +22719,68,12.5,10,0.0 +22719,20,81,25,0.0 +22719,9,97,30,0.0 +22719,64,33.25,14,0.0 +22719,15,15.5,5,0.0 +22719,13,6,39,0.0 +22719,47,9.5,26,0.0 +22719,1,18,39,0.0 +22719,32,32,31,0.0 +22719,19,9.2,32,0.0 +22719,21,10,16,0.0 +22719,67,14,4,0.0 +22719,35,18,24,0.0 +22719,44,19.45,7,0.0 +22719,10,31,3,0.0 +22719,5,21.35,33,0.0 +22720,31,12.5,32,0.0 +22720,12,38,5,0.0 +22720,41,9.65,8,0.0 +22720,74,10,46,0.0 +22720,62,49.3,18,0.0 +22720,45,9.5,41,0.0 +22720,36,19,32,0.0 +22720,65,21.05,40,0.0 +22720,49,20,37,0.0 +22720,60,34,42,0.0 +22720,47,9.5,21,0.0 +22720,13,6,50,0.0 +22720,23,9,13,0.0 +22720,11,21,18,0.0 +22720,46,12,50,0.0 +22720,64,33.25,28,0.0 +22720,18,62.5,41,0.0 +22720,58,13.25,6,0.0 +22720,10,31,14,0.0 +22720,77,13,11,0.0 +22720,15,15.5,41,0.0 +22720,9,97,34,0.0 +22720,21,10,30,0.0 +22720,67,14,5,0.0 +22720,8,40,1,0.0 +22720,14,23.25,50,0.0 +22720,33,2.5,22,0.0 +22720,50,16.25,26,0.0 +22720,40,18.4,47,0.0 +22720,2,19,32,0.0 +22720,75,7.75,41,0.0 +22720,28,45.6,6,0.0 +22720,19,9.2,28,0.0 +22720,61,28.5,20,0.0 +22720,71,21.5,29,0.0 +22720,63,43.9,32,0.0 +22720,53,32.8,3,0.0 +22720,72,34.8,21,0.0 +22720,4,22,46,0.0 +22720,5,21.35,7,0.0 +22720,7,30,32,0.0 +22720,39,18,35,0.0 +22720,20,81,18,0.0 +22720,37,26,10,0.0 +22720,30,25.89,24,0.0 +22720,42,14,47,0.0 +22720,34,14,25,0.0 +22720,68,12.5,13,0.0 +22720,57,19.5,50,0.0 +22720,3,10,9,0.0 +22720,1,18,3,0.0 +22720,17,39,34,0.0 +22720,66,17,38,0.0 +22720,35,18,50,0.0 +22720,56,38,4,0.0 +22720,6,25,1,0.0 +22720,38,263.5,40,0.0 +22720,69,36,14,0.0 +22720,32,32,38,0.0 +22720,25,14,2,0.0 +22720,43,46,23,0.0 +22720,51,53,8,0.0 +22721,32,32,25,0.0 +22721,40,18.4,39,0.0 +22721,5,21.35,22,0.0 +22721,49,20,4,0.0 +22721,8,40,49,0.0 +22721,20,81,11,0.0 +22721,53,32.8,25,0.0 +22721,13,6,38,0.0 +22721,11,21,32,0.0 +22721,43,46,5,0.0 +22721,65,21.05,48,0.0 +22721,24,4.5,47,0.0 +22722,24,4.5,50,0.0 +22722,16,17.45,36,0.0 +22723,58,13.25,9,0.0 +22723,37,26,4,0.0 +22723,66,17,6,0.0 +22723,41,9.65,24,0.0 +22723,75,7.75,27,0.0 +22723,28,45.6,37,0.0 +22723,65,21.05,11,0.0 +22723,40,18.4,11,0.0 +22723,59,55,30,0.0 +22723,10,31,17,0.0 +22723,7,30,50,0.0 +22723,4,22,23,0.0 +22723,17,39,8,0.0 +22723,26,31.23,17,0.0 +22723,50,16.25,50,0.0 +22723,33,2.5,47,0.0 +22723,3,10,26,0.0 +22723,9,97,30,0.0 +22723,72,34.8,49,0.0 +22723,13,6,30,0.0 +22723,69,36,46,0.0 +22723,21,10,8,0.0 +22723,68,12.5,20,0.0 +22723,44,19.45,28,0.0 +22723,30,25.89,35,0.0 +22723,45,9.5,15,0.0 +22723,39,18,47,0.0 +22723,32,32,44,0.0 +22723,29,123.79,49,0.0 +22723,5,21.35,44,0.0 +22723,16,17.45,25,0.0 +22723,63,43.9,20,0.0 +22723,11,21,44,0.0 +22723,56,38,5,0.0 +22723,52,7,9,0.0 +22724,3,10,26,0.0 +22724,64,33.25,2,0.0 +22724,43,46,24,0.0 +22724,76,18,11,0.0 +22724,65,21.05,31,0.0 +22724,56,38,12,0.0 +22724,26,31.23,1,0.0 +22724,23,9,25,0.0 +22724,36,19,27,0.0 +22724,6,25,12,0.0 +22724,28,45.6,7,0.0 +22724,68,12.5,43,0.0 +22724,75,7.75,50,0.0 +22724,39,18,41,0.0 +22724,21,10,25,0.0 +22724,53,32.8,27,0.0 +22724,63,43.9,7,0.0 +22724,15,15.5,39,0.0 +22724,13,6,27,0.0 +22724,47,9.5,43,0.0 +22724,59,55,5,0.0 +22724,20,81,43,0.0 +22724,29,123.79,43,0.0 +22724,52,7,43,0.0 +22724,10,31,20,0.0 +22724,5,21.35,20,0.0 +22724,19,9.2,41,0.0 +22724,62,49.3,8,0.0 +22724,12,38,47,0.0 +22724,77,13,47,0.0 +22724,70,15,6,0.0 +22724,9,97,48,0.0 +22724,18,62.5,12,0.0 +22724,45,9.5,29,0.0 +22724,1,18,27,0.0 +22724,54,7.45,13,0.0 +22724,32,32,38,0.0 +22724,72,34.8,27,0.0 +22724,16,17.45,3,0.0 +22724,22,21,12,0.0 +22724,2,19,32,0.0 +22724,7,30,32,0.0 +22724,41,9.65,13,0.0 +22724,57,19.5,47,0.0 +22724,4,22,50,0.0 +22724,17,39,35,0.0 +22724,40,18.4,49,0.0 +22724,71,21.5,42,0.0 +22724,27,43.9,19,0.0 +22724,37,26,8,0.0 +22724,14,23.25,34,0.0 +22724,61,28.5,47,0.0 +22724,48,12.75,8,0.0 +22724,8,40,42,0.0 +22724,44,19.45,4,0.0 +22724,11,21,44,0.0 +22724,30,25.89,37,0.0 +22724,38,263.5,5,0.0 +22724,69,36,27,0.0 +22724,73,15,22,0.0 +22724,34,14,50,0.0 +22724,31,12.5,3,0.0 +22724,42,14,47,0.0 +22725,53,32.8,7,0.0 +22725,46,12,36,0.0 +22725,34,14,6,0.0 +22725,66,17,31,0.0 +22725,27,43.9,41,0.0 +22725,43,46,41,0.0 +22725,25,14,28,0.0 +22725,51,53,31,0.0 +22725,1,18,16,0.0 +22725,62,49.3,45,0.0 +22725,58,13.25,35,0.0 +22725,74,10,28,0.0 +22725,69,36,21,0.0 +22725,16,17.45,13,0.0 +22725,24,4.5,32,0.0 +22725,32,32,32,0.0 +22725,30,25.89,21,0.0 +22726,45,9.5,5,0.0 +22726,24,4.5,9,0.0 +22726,77,13,35,0.0 +22726,14,23.25,3,0.0 +22726,26,31.23,16,0.0 +22726,18,62.5,18,0.0 +22726,4,22,40,0.0 +22726,27,43.9,23,0.0 +22726,5,21.35,18,0.0 +22726,54,7.45,27,0.0 +22726,34,14,24,0.0 +22726,51,53,37,0.0 +22726,31,12.5,27,0.0 +22726,44,19.45,27,0.0 +22726,64,33.25,26,0.0 +22726,63,43.9,18,0.0 +22726,47,9.5,25,0.0 +22726,62,49.3,47,0.0 +22726,57,19.5,22,0.0 +22726,32,32,49,0.0 +22726,13,6,20,0.0 +22726,41,9.65,22,0.0 +22726,6,25,36,0.0 +22726,28,45.6,20,0.0 +22726,71,21.5,42,0.0 +22726,10,31,17,0.0 +22726,36,19,5,0.0 +22726,46,12,1,0.0 +22726,11,21,7,0.0 +22727,41,9.65,2,0.0 +22727,52,7,43,0.0 +22727,46,12,17,0.0 +22727,34,14,40,0.0 +22727,33,2.5,18,0.0 +22727,64,33.25,17,0.0 +22727,49,20,29,0.0 +22727,77,13,33,0.0 +22727,50,16.25,5,0.0 +22727,16,17.45,12,0.0 +22727,63,43.9,6,0.0 +22727,36,19,2,0.0 +22727,37,26,9,0.0 +22727,61,28.5,48,0.0 +22727,68,12.5,8,0.0 +22727,43,46,7,0.0 +22727,72,34.8,48,0.0 +22727,31,12.5,44,0.0 +22727,47,9.5,27,0.0 +22727,59,55,1,0.0 +22727,3,10,38,0.0 +22727,45,9.5,42,0.0 +22727,25,14,42,0.0 +22727,73,15,32,0.0 +22727,44,19.45,36,0.0 +22727,11,21,31,0.0 +22727,54,7.45,7,0.0 +22727,51,53,20,0.0 +22727,40,18.4,16,0.0 +22727,58,13.25,24,0.0 +22727,24,4.5,20,0.0 +22727,29,123.79,5,0.0 +22727,56,38,47,0.0 +22727,32,32,45,0.0 +22727,2,19,22,0.0 +22727,71,21.5,41,0.0 +22727,30,25.89,16,0.0 +22727,65,21.05,29,0.0 +22727,7,30,50,0.0 +22727,6,25,39,0.0 +22727,39,18,44,0.0 +22727,55,24,46,0.0 +22727,9,97,13,0.0 +22727,42,14,19,0.0 +22727,75,7.75,11,0.0 +22727,66,17,4,0.0 +22727,21,10,26,0.0 +22727,69,36,22,0.0 +22727,74,10,40,0.0 +22727,12,38,27,0.0 +22727,26,31.23,44,0.0 +22727,18,62.5,37,0.0 +22727,5,21.35,37,0.0 +22727,53,32.8,22,0.0 +22727,17,39,3,0.0 +22727,48,12.75,26,0.0 +22727,20,81,43,0.0 +22727,57,19.5,33,0.0 +22727,38,263.5,44,0.0 +22727,14,23.25,10,0.0 +22727,22,21,13,0.0 +22727,10,31,47,0.0 +22727,70,15,19,0.0 +22727,23,9,27,0.0 +22727,60,34,22,0.0 +22727,8,40,10,0.0 +22728,48,12.75,31,0.0 +22728,9,97,14,0.0 +22728,22,21,19,0.0 +22728,66,17,2,0.0 +22728,24,4.5,14,0.0 +22728,68,12.5,30,0.0 +22728,1,18,26,0.0 +22728,6,25,33,0.0 +22728,43,46,1,0.0 +22728,73,15,28,0.0 +22728,46,12,22,0.0 +22728,14,23.25,20,0.0 +22728,52,7,2,0.0 +22729,57,19.5,26,0.0 +22729,40,18.4,35,0.0 +22729,70,15,27,0.0 +22729,3,10,48,0.0 +22729,61,28.5,16,0.0 +22729,30,25.89,12,0.0 +22729,27,43.9,49,0.0 +22729,62,49.3,28,0.0 +22729,9,97,13,0.0 +22729,13,6,10,0.0 +22729,38,263.5,13,0.0 +22729,12,38,27,0.0 +22729,74,10,18,0.0 +22729,76,18,43,0.0 +22729,42,14,36,0.0 +22729,49,20,16,0.0 +22729,44,19.45,8,0.0 +22729,20,81,40,0.0 +22729,68,12.5,30,0.0 +22729,47,9.5,24,0.0 +22729,21,10,6,0.0 +22729,17,39,41,0.0 +22729,36,19,22,0.0 +22729,51,53,47,0.0 +22729,2,19,5,0.0 +22729,50,16.25,50,0.0 +22729,7,30,15,0.0 +22729,18,62.5,5,0.0 +22729,53,32.8,34,0.0 +22729,39,18,42,0.0 +22729,63,43.9,21,0.0 +22729,55,24,21,0.0 +22729,67,14,43,0.0 +22729,10,31,10,0.0 +22729,72,34.8,25,0.0 +22729,32,32,28,0.0 +22729,58,13.25,7,0.0 +22729,56,38,36,0.0 +22729,15,15.5,29,0.0 +22729,28,45.6,18,0.0 +22729,35,18,50,0.0 +22729,71,21.5,45,0.0 +22729,29,123.79,22,0.0 +22729,26,31.23,6,0.0 +22729,16,17.45,14,0.0 +22729,22,21,3,0.0 +22730,10,31,22,0.0 +22730,58,13.25,49,0.0 +22730,18,62.5,30,0.0 +22730,35,18,32,0.0 +22730,17,39,7,0.0 +22730,33,2.5,29,0.0 +22730,26,31.23,36,0.0 +22730,71,21.5,24,0.0 +22730,3,10,1,0.0 +22731,35,18,5,0.0 +22731,45,9.5,30,0.0 +22731,62,49.3,15,0.0 +22731,2,19,8,0.0 +22731,67,14,4,0.0 +22731,15,15.5,2,0.0 +22731,55,24,11,0.0 +22731,59,55,5,0.0 +22731,6,25,39,0.0 +22731,11,21,41,0.0 +22731,13,6,34,0.0 +22731,49,20,46,0.0 +22731,4,22,27,0.0 +22731,66,17,25,0.0 +22731,38,263.5,48,0.0 +22732,6,25,18,0.0 +22732,49,20,6,0.0 +22732,35,18,49,0.0 +22732,63,43.9,41,0.0 +22732,39,18,44,0.0 +22732,15,15.5,37,0.0 +22732,26,31.23,39,0.0 +22732,75,7.75,13,0.0 +22732,57,19.5,20,0.0 +22732,1,18,12,0.0 +22732,24,4.5,3,0.0 +22733,71,21.5,7,0.0 +22733,11,21,13,0.0 +22733,55,24,27,0.0 +22733,30,25.89,48,0.0 +22733,41,9.65,6,0.0 +22733,34,14,50,0.0 +22733,67,14,14,0.0 +22733,44,19.45,9,0.0 +22733,27,43.9,25,0.0 +22733,7,30,13,0.0 +22733,52,7,11,0.0 +22733,13,6,12,0.0 +22733,62,49.3,26,0.0 +22733,46,12,34,0.0 +22733,43,46,31,0.0 +22733,17,39,50,0.0 +22734,31,12.5,16,0.0 +22734,9,97,41,0.0 +22734,77,13,13,0.0 +22734,23,9,45,0.0 +22734,64,33.25,6,0.0 +22735,71,21.5,1,0.0 +22735,49,20,38,0.0 +22735,9,97,6,0.0 +22735,61,28.5,31,0.0 +22735,65,21.05,41,0.0 +22735,57,19.5,7,0.0 +22735,52,7,5,0.0 +22735,21,10,6,0.0 +22735,29,123.79,49,0.0 +22735,14,23.25,25,0.0 +22735,67,14,43,0.0 +22735,73,15,43,0.0 +22735,24,4.5,5,0.0 +22735,22,21,34,0.0 +22735,28,45.6,31,0.0 +22735,75,7.75,8,0.0 +22735,23,9,10,0.0 +22735,15,15.5,44,0.0 +22735,25,14,22,0.0 +22735,74,10,13,0.0 +22735,7,30,48,0.0 +22735,26,31.23,12,0.0 +22735,8,40,28,0.0 +22735,64,33.25,2,0.0 +22735,34,14,4,0.0 +22735,39,18,30,0.0 +22735,12,38,36,0.0 +22735,46,12,34,0.0 +22735,59,55,5,0.0 +22735,32,32,43,0.0 +22735,31,12.5,6,0.0 +22735,5,21.35,8,0.0 +22735,54,7.45,15,0.0 +22735,43,46,17,0.0 +22735,19,9.2,48,0.0 +22735,66,17,27,0.0 +22735,62,49.3,8,0.0 +22735,16,17.45,49,0.0 +22735,47,9.5,15,0.0 +22735,1,18,40,0.0 +22735,33,2.5,25,0.0 +22735,4,22,10,0.0 +22735,42,14,13,0.0 +22735,72,34.8,1,0.0 +22735,77,13,24,0.0 +22735,70,15,6,0.0 +22735,10,31,44,0.0 +22735,55,24,34,0.0 +22735,36,19,47,0.0 +22735,6,25,48,0.0 +22735,37,26,31,0.0 +22735,76,18,7,0.0 +22735,11,21,46,0.0 +22735,56,38,33,0.0 +22735,44,19.45,46,0.0 +22735,38,263.5,34,0.0 +22735,53,32.8,39,0.0 +22735,50,16.25,2,0.0 +22735,51,53,9,0.0 +22735,27,43.9,42,0.0 +22735,63,43.9,42,0.0 +22735,3,10,7,0.0 +22735,41,9.65,32,0.0 +22735,30,25.89,37,0.0 +22735,20,81,35,0.0 +22736,58,13.25,50,0.0 +22736,26,31.23,40,0.0 +22736,36,19,41,0.0 +22736,31,12.5,18,0.0 +22736,5,21.35,19,0.0 +22736,65,21.05,50,0.0 +22736,60,34,13,0.0 +22736,70,15,35,0.0 +22736,75,7.75,13,0.0 +22736,72,34.8,4,0.0 +22736,59,55,40,0.0 +22736,56,38,30,0.0 +22736,18,62.5,36,0.0 +22736,42,14,32,0.0 +22736,40,18.4,43,0.0 +22736,46,12,21,0.0 +22736,30,25.89,31,0.0 +22736,16,17.45,45,0.0 +22736,50,16.25,5,0.0 +22736,61,28.5,25,0.0 +22736,77,13,32,0.0 +22736,24,4.5,31,0.0 +22736,43,46,40,0.0 +22736,14,23.25,24,0.0 +22736,41,9.65,42,0.0 +22736,15,15.5,45,0.0 +22736,32,32,2,0.0 +22736,4,22,41,0.0 +22736,35,18,16,0.0 +22736,27,43.9,9,0.0 +22736,51,53,37,0.0 +22736,62,49.3,31,0.0 +22736,39,18,25,0.0 +22736,34,14,15,0.0 +22736,38,263.5,17,0.0 +22736,11,21,42,0.0 +22736,55,24,15,0.0 +22736,25,14,45,0.0 +22736,23,9,5,0.0 +22736,66,17,48,0.0 +22736,52,7,17,0.0 +22736,12,38,19,0.0 +22736,71,21.5,30,0.0 +22736,49,20,17,0.0 +22736,9,97,36,0.0 +22737,21,10,19,0.0 +22737,7,30,16,0.0 +22737,54,7.45,40,0.0 +22737,4,22,46,0.0 +22737,72,34.8,6,0.0 +22737,52,7,26,0.0 +22737,30,25.89,18,0.0 +22737,56,38,17,0.0 +22737,13,6,27,0.0 +22737,45,9.5,30,0.0 +22737,19,9.2,26,0.0 +22737,26,31.23,6,0.0 +22737,57,19.5,2,0.0 +22737,9,97,27,0.0 +22737,50,16.25,49,0.0 +22737,69,36,37,0.0 +22737,75,7.75,23,0.0 +22737,10,31,5,0.0 +22737,41,9.65,34,0.0 +22737,36,19,11,0.0 +22737,77,13,7,0.0 +22737,42,14,50,0.0 +22737,62,49.3,50,0.0 +22737,76,18,4,0.0 +22737,15,15.5,38,0.0 +22737,73,15,18,0.0 +22737,12,38,14,0.0 +22738,11,21,36,0.0 +22738,47,9.5,31,0.0 +22738,31,12.5,27,0.0 +22738,34,14,40,0.0 +22738,1,18,14,0.0 +22738,68,12.5,30,0.0 +22738,4,22,29,0.0 +22738,33,2.5,35,0.0 +22738,20,81,40,0.0 +22738,40,18.4,48,0.0 +22738,45,9.5,47,0.0 +22738,63,43.9,41,0.0 +22738,75,7.75,4,0.0 +22738,49,20,37,0.0 +22738,48,12.75,49,0.0 +22738,76,18,24,0.0 +22738,53,32.8,5,0.0 +22738,29,123.79,26,0.0 +22738,25,14,31,0.0 +22738,72,34.8,37,0.0 +22738,26,31.23,38,0.0 +22738,74,10,41,0.0 +22738,46,12,40,0.0 +22738,19,9.2,15,0.0 +22738,3,10,14,0.0 +22738,22,21,12,0.0 +22738,41,9.65,35,0.0 +22738,52,7,35,0.0 +22738,39,18,24,0.0 +22738,24,4.5,50,0.0 +22738,62,49.3,16,0.0 +22738,60,34,45,0.0 +22738,6,25,19,0.0 +22738,32,32,47,0.0 +22739,73,15,2,0.0 +22739,39,18,42,0.0 +22739,33,2.5,19,0.0 +22739,49,20,14,0.0 +22739,52,7,20,0.0 +22739,53,32.8,38,0.0 +22739,31,12.5,26,0.0 +22739,50,16.25,14,0.0 +22739,26,31.23,17,0.0 +22739,59,55,17,0.0 +22739,40,18.4,10,0.0 +22739,67,14,21,0.0 +22739,47,9.5,4,0.0 +22739,3,10,42,0.0 +22739,69,36,44,0.0 +22739,13,6,18,0.0 +22739,56,38,41,0.0 +22739,11,21,24,0.0 +22739,46,12,5,0.0 +22739,36,19,49,0.0 +22739,10,31,24,0.0 +22739,21,10,36,0.0 +22739,20,81,49,0.0 +22739,17,39,3,0.0 +22739,76,18,4,0.0 +22739,15,15.5,40,0.0 +22739,60,34,27,0.0 +22739,14,23.25,49,0.0 +22739,68,12.5,21,0.0 +22739,48,12.75,42,0.0 +22739,18,62.5,50,0.0 +22739,44,19.45,33,0.0 +22740,76,18,41,0.0 +22740,65,21.05,30,0.0 +22740,54,7.45,21,0.0 +22740,61,28.5,27,0.0 +22740,59,55,6,0.0 +22740,18,62.5,37,0.0 +22740,43,46,47,0.0 +22740,7,30,46,0.0 +22740,47,9.5,33,0.0 +22740,66,17,30,0.0 +22740,42,14,2,0.0 +22740,28,45.6,14,0.0 +22740,60,34,8,0.0 +22740,72,34.8,11,0.0 +22740,71,21.5,43,0.0 +22740,35,18,19,0.0 +22740,73,15,48,0.0 +22740,45,9.5,15,0.0 +22740,8,40,10,0.0 +22740,74,10,9,0.0 +22740,38,263.5,49,0.0 +22740,26,31.23,8,0.0 +22740,6,25,11,0.0 +22740,29,123.79,30,0.0 +22740,19,9.2,20,0.0 +22740,69,36,15,0.0 +22740,31,12.5,28,0.0 +22740,52,7,14,0.0 +22740,50,16.25,39,0.0 +22740,55,24,47,0.0 +22740,39,18,32,0.0 +22740,56,38,49,0.0 +22740,4,22,3,0.0 +22740,17,39,14,0.0 +22740,16,17.45,40,0.0 +22740,62,49.3,49,0.0 +22740,49,20,5,0.0 +22740,24,4.5,26,0.0 +22740,58,13.25,25,0.0 +22740,10,31,19,0.0 +22740,44,19.45,43,0.0 +22740,15,15.5,12,0.0 +22740,9,97,14,0.0 +22740,23,9,5,0.0 +22740,1,18,19,0.0 +22740,46,12,26,0.0 +22740,41,9.65,40,0.0 +22740,57,19.5,5,0.0 +22740,48,12.75,50,0.0 +22740,20,81,23,0.0 +22741,41,9.65,29,0.0 +22741,24,4.5,25,0.0 +22741,33,2.5,31,0.0 +22741,56,38,12,0.0 +22741,48,12.75,43,0.0 +22741,65,21.05,25,0.0 +22741,46,12,26,0.0 +22741,62,49.3,18,0.0 +22741,77,13,1,0.0 +22741,35,18,22,0.0 +22741,73,15,7,0.0 +22741,75,7.75,45,0.0 +22741,50,16.25,1,0.0 +22741,67,14,46,0.0 +22741,31,12.5,50,0.0 +22741,59,55,40,0.0 +22741,29,123.79,42,0.0 +22741,60,34,22,0.0 +22741,38,263.5,19,0.0 +22741,1,18,24,0.0 +22741,43,46,47,0.0 +22741,25,14,3,0.0 +22741,71,21.5,17,0.0 +22741,3,10,12,0.0 +22741,26,31.23,36,0.0 +22741,54,7.45,17,0.0 +22741,66,17,18,0.0 +22741,7,30,1,0.0 +22741,11,21,42,0.0 +22741,74,10,10,0.0 +22741,45,9.5,30,0.0 +22741,61,28.5,47,0.0 +22741,37,26,21,0.0 +22741,69,36,31,0.0 +22741,63,43.9,14,0.0 +22741,72,34.8,1,0.0 +22741,16,17.45,41,0.0 +22741,70,15,19,0.0 +22741,5,21.35,27,0.0 +22741,13,6,1,0.0 +22741,22,21,38,0.0 +22741,55,24,7,0.0 +22741,19,9.2,32,0.0 +22741,52,7,31,0.0 +22741,21,10,36,0.0 +22741,64,33.25,32,0.0 +22741,68,12.5,7,0.0 +22741,30,25.89,49,0.0 +22741,15,15.5,2,0.0 +22741,10,31,5,0.0 +22741,76,18,49,0.0 +22741,40,18.4,35,0.0 +22741,9,97,34,0.0 +22741,12,38,7,0.0 +22741,58,13.25,3,0.0 +22741,14,23.25,39,0.0 +22741,42,14,45,0.0 +22741,34,14,43,0.0 +22742,54,7.45,17,0.0 +22742,72,34.8,42,0.0 +22742,64,33.25,2,0.0 +22742,38,263.5,1,0.0 +22742,52,7,13,0.0 +22742,42,14,3,0.0 +22742,28,45.6,11,0.0 +22742,32,32,49,0.0 +22742,6,25,24,0.0 +22742,59,55,12,0.0 +22742,2,19,4,0.0 +22742,20,81,50,0.0 +22742,15,15.5,11,0.0 +22742,65,21.05,10,0.0 +22742,45,9.5,43,0.0 +22742,58,13.25,25,0.0 +22742,3,10,35,0.0 +22742,23,9,34,0.0 +22742,50,16.25,16,0.0 +22742,66,17,5,0.0 +22742,4,22,44,0.0 +22742,24,4.5,27,0.0 +22742,30,25.89,27,0.0 +22742,12,38,34,0.0 +22742,13,6,5,0.0 +22742,76,18,1,0.0 +22742,49,20,42,0.0 +22742,43,46,26,0.0 +22742,9,97,35,0.0 +22742,55,24,30,0.0 +22742,31,12.5,20,0.0 +22742,73,15,20,0.0 +22742,34,14,42,0.0 +22742,44,19.45,3,0.0 +22742,17,39,3,0.0 +22742,53,32.8,43,0.0 +22742,62,49.3,11,0.0 +22742,10,31,22,0.0 +22742,46,12,26,0.0 +22742,21,10,49,0.0 +22742,16,17.45,43,0.0 +22742,67,14,39,0.0 +22742,5,21.35,32,0.0 +22742,27,43.9,33,0.0 +22742,61,28.5,20,0.0 +22742,19,9.2,47,0.0 +22742,48,12.75,43,0.0 +22742,40,18.4,31,0.0 +22742,25,14,12,0.0 +22742,7,30,48,0.0 +22742,70,15,39,0.0 +22743,13,6,31,0.0 +22743,76,18,49,0.0 +22743,49,20,21,0.0 +22743,55,24,14,0.0 +22743,15,15.5,37,0.0 +22743,24,4.5,17,0.0 +22743,44,19.45,14,0.0 +22743,51,53,13,0.0 +22743,25,14,42,0.0 +22743,37,26,4,0.0 +22743,64,33.25,32,0.0 +22743,53,32.8,48,0.0 +22743,29,123.79,7,0.0 +22743,10,31,48,0.0 +22744,69,36,13,0.0 +22744,51,53,34,0.0 +22744,58,13.25,18,0.0 +22744,33,2.5,42,0.0 +22744,26,31.23,37,0.0 +22744,41,9.65,46,0.0 +22744,21,10,50,0.0 +22744,29,123.79,20,0.0 +22744,35,18,48,0.0 +22744,9,97,38,0.0 +22744,28,45.6,9,0.0 +22744,8,40,41,0.0 +22744,11,21,50,0.0 +22744,73,15,24,0.0 +22744,30,25.89,46,0.0 +22744,43,46,19,0.0 +22744,23,9,50,0.0 +22744,66,17,2,0.0 +22744,38,263.5,13,0.0 +22744,48,12.75,41,0.0 +22744,16,17.45,31,0.0 +22744,5,21.35,21,0.0 +22744,10,31,17,0.0 +22744,63,43.9,18,0.0 +22744,45,9.5,12,0.0 +22744,3,10,7,0.0 +22744,27,43.9,31,0.0 +22744,76,18,21,0.0 +22744,42,14,50,0.0 +22744,4,22,40,0.0 +22744,64,33.25,46,0.0 +22744,77,13,10,0.0 +22744,71,21.5,28,0.0 +22744,15,15.5,49,0.0 +22744,57,19.5,27,0.0 +22745,77,13,48,0.0 +22745,43,46,41,0.0 +22745,37,26,36,0.0 +22745,17,39,49,0.0 +22745,36,19,35,0.0 +22745,55,24,20,0.0 +22745,72,34.8,46,0.0 +22745,20,81,12,0.0 +22746,47,9.5,34,0.0 +22746,3,10,38,0.0 +22746,65,21.05,21,0.0 +22746,27,43.9,45,0.0 +22746,54,7.45,17,0.0 +22746,44,19.45,29,0.0 +22746,63,43.9,38,0.0 +22746,43,46,6,0.0 +22746,49,20,14,0.0 +22746,69,36,21,0.0 +22746,1,18,2,0.0 +22746,61,28.5,36,0.0 +22746,34,14,14,0.0 +22746,64,33.25,19,0.0 +22746,68,12.5,33,0.0 +22746,45,9.5,16,0.0 +22746,60,34,27,0.0 +22746,30,25.89,13,0.0 +22746,52,7,31,0.0 +22746,35,18,11,0.0 +22746,11,21,48,0.0 +22746,20,81,42,0.0 +22746,40,18.4,12,0.0 +22746,46,12,18,0.0 +22747,26,31.23,14,0.0 +22747,62,49.3,32,0.0 +22747,65,21.05,19,0.0 +22747,9,97,9,0.0 +22747,18,62.5,14,0.0 +22747,12,38,17,0.0 +22747,39,18,35,0.0 +22747,63,43.9,30,0.0 +22747,38,263.5,10,0.0 +22747,70,15,50,0.0 +22747,31,12.5,21,0.0 +22747,16,17.45,3,0.0 +22747,56,38,35,0.0 +22747,4,22,33,0.0 +22747,42,14,16,0.0 +22747,29,123.79,48,0.0 +22747,3,10,7,0.0 +22747,34,14,26,0.0 +22747,51,53,41,0.0 +22747,23,9,7,0.0 +22747,24,4.5,35,0.0 +22747,11,21,45,0.0 +22747,36,19,41,0.0 +22747,76,18,41,0.0 +22747,41,9.65,50,0.0 +22747,77,13,26,0.0 +22747,44,19.45,27,0.0 +22747,40,18.4,2,0.0 +22748,9,97,45,0.0 +22748,56,38,4,0.0 +22748,3,10,42,0.0 +22748,44,19.45,8,0.0 +22748,17,39,35,0.0 +22748,61,28.5,9,0.0 +22748,58,13.25,34,0.0 +22748,71,21.5,42,0.0 +22748,39,18,41,0.0 +22748,74,10,1,0.0 +22748,2,19,19,0.0 +22749,21,10,41,0.0 +22749,38,263.5,4,0.0 +22749,2,19,32,0.0 +22749,34,14,47,0.0 +22749,10,31,38,0.0 +22749,37,26,42,0.0 +22749,48,12.75,23,0.0 +22749,74,10,11,0.0 +22749,67,14,41,0.0 +22749,5,21.35,22,0.0 +22749,76,18,33,0.0 +22749,25,14,35,0.0 +22749,63,43.9,38,0.0 +22749,56,38,3,0.0 +22749,58,13.25,30,0.0 +22749,47,9.5,5,0.0 +22749,19,9.2,13,0.0 +22749,68,12.5,17,0.0 +22749,26,31.23,28,0.0 +22749,31,12.5,45,0.0 +22749,77,13,44,0.0 +22749,8,40,45,0.0 +22749,73,15,33,0.0 +22749,12,38,8,0.0 +22749,72,34.8,49,0.0 +22749,51,53,39,0.0 +22749,55,24,27,0.0 +22749,6,25,22,0.0 +22749,62,49.3,20,0.0 +22749,41,9.65,19,0.0 +22749,54,7.45,9,0.0 +22749,69,36,49,0.0 +22749,44,19.45,15,0.0 +22749,20,81,19,0.0 +22749,75,7.75,18,0.0 +22749,27,43.9,41,0.0 +22749,65,21.05,45,0.0 +22749,22,21,26,0.0 +22749,66,17,7,0.0 +22749,64,33.25,38,0.0 +22749,39,18,32,0.0 +22749,15,15.5,36,0.0 +22749,35,18,39,0.0 +22749,70,15,44,0.0 +22749,29,123.79,24,0.0 +22749,71,21.5,10,0.0 +22750,5,21.35,15,0.0 +22750,61,28.5,21,0.0 +22750,22,21,48,0.0 +22750,71,21.5,2,0.0 +22750,72,34.8,9,0.0 +22750,51,53,26,0.0 +22750,45,9.5,1,0.0 +22750,36,19,23,0.0 +22750,30,25.89,24,0.0 +22750,35,18,37,0.0 +22750,16,17.45,22,0.0 +22750,77,13,31,0.0 +22751,3,10,41,0.0 +22751,67,14,49,0.0 +22751,65,21.05,2,0.0 +22751,15,15.5,4,0.0 +22751,55,24,41,0.0 +22751,40,18.4,2,0.0 +22751,39,18,40,0.0 +22751,53,32.8,42,0.0 +22751,32,32,25,0.0 +22751,71,21.5,20,0.0 +22751,12,38,25,0.0 +22751,69,36,16,0.0 +22751,11,21,45,0.0 +22751,2,19,17,0.0 +22751,73,15,14,0.0 +22751,21,10,49,0.0 +22751,76,18,47,0.0 +22751,48,12.75,45,0.0 +22751,19,9.2,5,0.0 +22751,77,13,46,0.0 +22751,1,18,19,0.0 +22751,14,23.25,18,0.0 +22751,75,7.75,7,0.0 +22752,23,9,26,0.0 +22752,62,49.3,36,0.0 +22752,3,10,18,0.0 +22752,77,13,16,0.0 +22753,26,31.23,20,0.0 +22753,48,12.75,3,0.0 +22753,34,14,37,0.0 +22753,67,14,47,0.0 +22753,14,23.25,33,0.0 +22753,21,10,47,0.0 +22753,39,18,13,0.0 +22753,36,19,14,0.0 +22753,27,43.9,34,0.0 +22753,28,45.6,49,0.0 +22753,12,38,12,0.0 +22753,13,6,49,0.0 +22753,69,36,33,0.0 +22753,76,18,14,0.0 +22753,22,21,43,0.0 +22753,9,97,14,0.0 +22753,56,38,35,0.0 +22753,47,9.5,48,0.0 +22753,16,17.45,47,0.0 +22753,1,18,37,0.0 +22753,50,16.25,10,0.0 +22753,3,10,17,0.0 +22753,38,263.5,14,0.0 +22753,25,14,35,0.0 +22753,2,19,36,0.0 +22753,19,9.2,12,0.0 +22753,23,9,20,0.0 +22753,70,15,39,0.0 +22753,10,31,42,0.0 +22753,11,21,24,0.0 +22753,37,26,36,0.0 +22753,59,55,48,0.0 +22753,58,13.25,33,0.0 +22753,73,15,2,0.0 +22753,66,17,46,0.0 +22753,31,12.5,36,0.0 +22753,63,43.9,48,0.0 +22753,57,19.5,4,0.0 +22753,65,21.05,26,0.0 +22753,5,21.35,39,0.0 +22753,62,49.3,7,0.0 +22753,42,14,22,0.0 +22753,18,62.5,43,0.0 +22753,35,18,31,0.0 +22753,68,12.5,19,0.0 +22753,29,123.79,32,0.0 +22753,17,39,17,0.0 +22753,77,13,31,0.0 +22753,45,9.5,35,0.0 +22753,33,2.5,13,0.0 +22753,60,34,2,0.0 +22753,74,10,41,0.0 +22753,6,25,16,0.0 +22753,20,81,11,0.0 +22753,55,24,42,0.0 +22753,49,20,26,0.0 +22753,64,33.25,24,0.0 +22753,53,32.8,25,0.0 +22754,23,9,49,0.0 +22754,59,55,1,0.0 +22754,49,20,14,0.0 +22754,5,21.35,18,0.0 +22754,34,14,33,0.0 +22754,12,38,33,0.0 +22754,6,25,10,0.0 +22754,33,2.5,23,0.0 +22754,56,38,24,0.0 +22754,30,25.89,33,0.0 +22754,50,16.25,23,0.0 +22754,9,97,27,0.0 +22754,66,17,24,0.0 +22754,43,46,27,0.0 +22754,55,24,42,0.0 +22754,21,10,46,0.0 +22754,62,49.3,32,0.0 +22754,18,62.5,18,0.0 +22754,54,7.45,2,0.0 +22754,11,21,1,0.0 +22754,35,18,38,0.0 +22754,25,14,30,0.0 +22754,64,33.25,28,0.0 +22754,41,9.65,24,0.0 +22754,65,21.05,49,0.0 +22754,72,34.8,32,0.0 +22754,48,12.75,50,0.0 +22754,7,30,13,0.0 +22754,28,45.6,8,0.0 +22754,76,18,22,0.0 +22754,10,31,19,0.0 +22754,68,12.5,10,0.0 +22754,24,4.5,13,0.0 +22754,67,14,31,0.0 +22754,37,26,16,0.0 +22754,61,28.5,31,0.0 +22754,77,13,32,0.0 +22755,51,53,11,0.0 +22755,20,81,46,0.0 +22755,44,19.45,13,0.0 +22755,46,12,11,0.0 +22755,61,28.5,37,0.0 +22755,63,43.9,19,0.0 +22755,70,15,27,0.0 +22755,76,18,30,0.0 +22755,64,33.25,9,0.0 +22755,9,97,37,0.0 +22755,30,25.89,46,0.0 +22755,53,32.8,4,0.0 +22755,17,39,16,0.0 +22755,7,30,28,0.0 +22755,58,13.25,5,0.0 +22755,68,12.5,7,0.0 +22755,69,36,15,0.0 +22755,18,62.5,13,0.0 +22756,2,19,43,0.0 +22756,28,45.6,37,0.0 +22756,48,12.75,18,0.0 +22756,47,9.5,30,0.0 +22756,33,2.5,21,0.0 +22756,73,15,42,0.0 +22756,3,10,28,0.0 +22756,29,123.79,40,0.0 +22756,74,10,24,0.0 +22756,23,9,20,0.0 +22756,10,31,30,0.0 +22756,41,9.65,48,0.0 +22756,59,55,46,0.0 +22756,35,18,16,0.0 +22756,68,12.5,46,0.0 +22756,77,13,34,0.0 +22756,45,9.5,11,0.0 +22756,36,19,31,0.0 +22756,54,7.45,37,0.0 +22756,8,40,24,0.0 +22756,17,39,1,0.0 +22756,16,17.45,47,0.0 +22756,11,21,17,0.0 +22756,4,22,31,0.0 +22756,39,18,47,0.0 +22756,51,53,24,0.0 +22756,69,36,27,0.0 +22756,26,31.23,37,0.0 +22756,14,23.25,33,0.0 +22756,60,34,31,0.0 +22756,57,19.5,23,0.0 +22756,75,7.75,28,0.0 +22756,63,43.9,41,0.0 +22756,30,25.89,17,0.0 +22757,25,14,15,0.0 +22757,61,28.5,35,0.0 +22757,24,4.5,37,0.0 +22757,55,24,42,0.0 +22757,67,14,42,0.0 +22757,77,13,30,0.0 +22757,22,21,22,0.0 +22757,43,46,32,0.0 +22757,58,13.25,5,0.0 +22757,29,123.79,7,0.0 +22757,56,38,23,0.0 +22757,68,12.5,19,0.0 +22757,40,18.4,13,0.0 +22757,41,9.65,3,0.0 +22757,76,18,19,0.0 +22757,38,263.5,48,0.0 +22757,10,31,44,0.0 +22757,21,10,22,0.0 +22757,27,43.9,26,0.0 +22757,5,21.35,45,0.0 +22758,11,21,6,0.0 +22758,51,53,49,0.0 +22758,58,13.25,11,0.0 +22758,21,10,2,0.0 +22758,71,21.5,22,0.0 +22758,35,18,45,0.0 +22758,77,13,26,0.0 +22758,4,22,23,0.0 +22758,27,43.9,22,0.0 +22758,66,17,41,0.0 +22758,15,15.5,29,0.0 +22758,26,31.23,39,0.0 +22758,70,15,49,0.0 +22758,39,18,27,0.0 +22758,30,25.89,49,0.0 +22758,6,25,19,0.0 +22758,14,23.25,12,0.0 +22758,42,14,39,0.0 +22758,75,7.75,42,0.0 +22758,67,14,36,0.0 +22758,60,34,15,0.0 +22758,65,21.05,4,0.0 +22758,37,26,17,0.0 +22758,31,12.5,30,0.0 +22758,43,46,44,0.0 +22758,17,39,42,0.0 +22758,55,24,45,0.0 +22758,46,12,25,0.0 +22758,49,20,19,0.0 +22758,2,19,35,0.0 +22758,38,263.5,40,0.0 +22758,54,7.45,50,0.0 +22758,13,6,1,0.0 +22758,34,14,24,0.0 +22758,45,9.5,29,0.0 +22758,52,7,26,0.0 +22758,36,19,36,0.0 +22758,10,31,50,0.0 +22758,73,15,15,0.0 +22758,22,21,13,0.0 +22758,53,32.8,31,0.0 +22758,7,30,19,0.0 +22758,23,9,24,0.0 +22758,57,19.5,44,0.0 +22758,61,28.5,45,0.0 +22758,20,81,20,0.0 +22758,1,18,28,0.0 +22758,18,62.5,2,0.0 +22758,76,18,3,0.0 +22758,29,123.79,37,0.0 +22758,9,97,24,0.0 +22758,12,38,12,0.0 +22758,62,49.3,24,0.0 +22758,25,14,39,0.0 +22758,44,19.45,22,0.0 +22758,68,12.5,16,0.0 +22759,63,43.9,48,0.0 +22759,30,25.89,4,0.0 +22759,58,13.25,46,0.0 +22759,71,21.5,38,0.0 +22759,42,14,44,0.0 +22759,20,81,45,0.0 +22760,55,24,40,0.0 +22760,49,20,9,0.0 +22760,47,9.5,31,0.0 +22760,53,32.8,18,0.0 +22760,34,14,48,0.0 +22760,56,38,23,0.0 +22760,18,62.5,43,0.0 +22760,58,13.25,28,0.0 +22760,41,9.65,21,0.0 +22760,30,25.89,12,0.0 +22760,7,30,33,0.0 +22760,5,21.35,19,0.0 +22760,62,49.3,29,0.0 +22760,21,10,6,0.0 +22760,11,21,13,0.0 +22760,40,18.4,14,0.0 +22760,67,14,37,0.0 +22760,60,34,17,0.0 +22760,10,31,48,0.0 +22760,22,21,14,0.0 +22760,75,7.75,3,0.0 +22760,59,55,28,0.0 +22760,43,46,29,0.0 +22760,31,12.5,8,0.0 +22760,29,123.79,6,0.0 +22760,38,263.5,38,0.0 +22760,39,18,23,0.0 +22761,75,7.75,34,0.0 +22761,49,20,23,0.0 +22761,50,16.25,12,0.0 +22761,41,9.65,43,0.0 +22761,38,263.5,28,0.0 +22761,21,10,35,0.0 +22761,42,14,27,0.0 +22761,59,55,17,0.0 +22761,20,81,43,0.0 +22761,13,6,48,0.0 +22761,8,40,30,0.0 +22761,52,7,21,0.0 +22761,43,46,45,0.0 +22761,5,21.35,12,0.0 +22761,51,53,15,0.0 +22761,9,97,9,0.0 +22761,44,19.45,32,0.0 +22761,4,22,36,0.0 +22761,57,19.5,43,0.0 +22761,62,49.3,28,0.0 +22761,23,9,27,0.0 +22761,11,21,35,0.0 +22761,60,34,38,0.0 +22761,61,28.5,44,0.0 +22761,15,15.5,44,0.0 +22761,71,21.5,6,0.0 +22761,76,18,16,0.0 +22761,64,33.25,7,0.0 +22761,29,123.79,1,0.0 +22761,31,12.5,18,0.0 +22761,69,36,18,0.0 +22761,12,38,37,0.0 +22761,74,10,29,0.0 +22761,2,19,27,0.0 +22761,39,18,33,0.0 +22761,33,2.5,33,0.0 +22761,46,12,25,0.0 +22761,28,45.6,42,0.0 +22761,24,4.5,37,0.0 +22761,54,7.45,44,0.0 +22761,55,24,27,0.0 +22761,73,15,41,0.0 +22761,37,26,35,0.0 +22761,47,9.5,38,0.0 +22761,77,13,4,0.0 +22761,63,43.9,10,0.0 +22761,6,25,18,0.0 +22761,22,21,7,0.0 +22761,58,13.25,17,0.0 +22761,40,18.4,6,0.0 +22761,35,18,29,0.0 +22761,67,14,29,0.0 +22761,1,18,44,0.0 +22761,14,23.25,5,0.0 +22761,3,10,41,0.0 +22761,72,34.8,6,0.0 +22761,19,9.2,31,0.0 +22761,66,17,5,0.0 +22761,17,39,34,0.0 +22761,48,12.75,41,0.0 +22761,30,25.89,8,0.0 +22762,26,31.23,43,0.0 +22762,50,16.25,36,0.0 +22762,62,49.3,9,0.0 +22762,66,17,1,0.0 +22762,6,25,5,0.0 +22762,71,21.5,36,0.0 +22762,39,18,44,0.0 +22762,33,2.5,11,0.0 +22762,69,36,15,0.0 +22762,64,33.25,18,0.0 +22762,23,9,50,0.0 +22762,8,40,12,0.0 +22762,61,28.5,19,0.0 +22762,74,10,36,0.0 +22762,63,43.9,45,0.0 +22762,42,14,14,0.0 +22762,24,4.5,12,0.0 +22762,3,10,30,0.0 +22762,68,12.5,16,0.0 +22762,25,14,47,0.0 +22762,30,25.89,27,0.0 +22762,77,13,33,0.0 +22762,13,6,10,0.0 +22762,52,7,23,0.0 +22762,72,34.8,26,0.0 +22762,60,34,1,0.0 +22762,43,46,50,0.0 +22762,22,21,44,0.0 +22762,58,13.25,41,0.0 +22762,76,18,43,0.0 +22762,5,21.35,24,0.0 +22762,12,38,36,0.0 +22762,65,21.05,7,0.0 +22762,28,45.6,6,0.0 +22762,45,9.5,15,0.0 +22762,37,26,14,0.0 +22762,19,9.2,2,0.0 +22762,44,19.45,28,0.0 +22762,14,23.25,42,0.0 +22762,73,15,3,0.0 +22762,70,15,15,0.0 +22762,49,20,22,0.0 +22762,34,14,30,0.0 +22762,67,14,39,0.0 +22762,46,12,9,0.0 +22762,18,62.5,18,0.0 +22762,38,263.5,7,0.0 +22762,31,12.5,39,0.0 +22762,75,7.75,38,0.0 +22762,41,9.65,43,0.0 +22762,53,32.8,20,0.0 +22762,47,9.5,31,0.0 +22763,10,31,28,0.0 +22763,1,18,8,0.0 +22763,74,10,48,0.0 +22763,45,9.5,2,0.0 +22763,9,97,15,0.0 +22763,42,14,28,0.0 +22763,57,19.5,13,0.0 +22763,15,15.5,18,0.0 +22763,59,55,7,0.0 +22763,66,17,25,0.0 +22763,47,9.5,9,0.0 +22763,13,6,6,0.0 +22763,28,45.6,38,0.0 +22763,62,49.3,14,0.0 +22763,53,32.8,31,0.0 +22763,61,28.5,43,0.0 +22763,17,39,6,0.0 +22763,11,21,16,0.0 +22763,36,19,46,0.0 +22763,63,43.9,17,0.0 +22763,34,14,24,0.0 +22763,8,40,34,0.0 +22763,44,19.45,40,0.0 +22763,54,7.45,22,0.0 +22763,3,10,41,0.0 +22763,37,26,31,0.0 +22763,68,12.5,11,0.0 +22764,5,21.35,30,0.0 +22764,61,28.5,5,0.0 +22764,6,25,5,0.0 +22764,35,18,11,0.0 +22764,59,55,22,0.0 +22764,74,10,2,0.0 +22764,29,123.79,8,0.0 +22764,38,263.5,37,0.0 +22764,27,43.9,27,0.0 +22764,39,18,32,0.0 +22764,26,31.23,50,0.0 +22764,9,97,21,0.0 +22764,34,14,11,0.0 +22764,58,13.25,42,0.0 +22764,3,10,37,0.0 +22764,37,26,27,0.0 +22764,49,20,3,0.0 +22764,8,40,3,0.0 +22764,2,19,14,0.0 +22764,55,24,2,0.0 +22764,17,39,46,0.0 +22764,12,38,13,0.0 +22764,16,17.45,34,0.0 +22764,46,12,41,0.0 +22764,4,22,32,0.0 +22764,42,14,22,0.0 +22764,14,23.25,39,0.0 +22764,31,12.5,2,0.0 +22764,54,7.45,1,0.0 +22764,71,21.5,2,0.0 +22764,76,18,7,0.0 +22764,19,9.2,22,0.0 +22764,72,34.8,24,0.0 +22764,53,32.8,5,0.0 +22764,7,30,1,0.0 +22764,30,25.89,1,0.0 +22764,77,13,13,0.0 +22764,28,45.6,8,0.0 +22764,1,18,15,0.0 +22764,68,12.5,48,0.0 +22764,36,19,44,0.0 +22764,32,32,20,0.0 +22764,70,15,22,0.0 +22765,51,53,45,0.0 +22765,56,38,50,0.0 +22765,73,15,2,0.0 +22765,18,62.5,21,0.0 +22765,10,31,32,0.0 +22765,8,40,9,0.0 +22765,76,18,49,0.0 +22765,16,17.45,37,0.0 +22765,29,123.79,7,0.0 +22765,49,20,39,0.0 +22765,69,36,37,0.0 +22765,68,12.5,20,0.0 +22765,13,6,48,0.0 +22765,41,9.65,36,0.0 +22765,58,13.25,40,0.0 +22765,47,9.5,27,0.0 +22765,17,39,18,0.0 +22765,39,18,43,0.0 +22765,5,21.35,26,0.0 +22765,14,23.25,39,0.0 +22765,72,34.8,15,0.0 +22765,31,12.5,40,0.0 +22765,23,9,34,0.0 +22765,2,19,1,0.0 +22765,25,14,47,0.0 +22765,35,18,28,0.0 +22765,27,43.9,13,0.0 +22765,11,21,8,0.0 +22765,55,24,9,0.0 +22765,7,30,18,0.0 +22765,44,19.45,25,0.0 +22765,12,38,43,0.0 +22765,46,12,3,0.0 +22765,4,22,7,0.0 +22765,63,43.9,24,0.0 +22765,77,13,17,0.0 +22765,43,46,5,0.0 +22765,48,12.75,3,0.0 +22765,66,17,21,0.0 +22765,42,14,26,0.0 +22765,38,263.5,33,0.0 +22765,62,49.3,28,0.0 +22765,59,55,4,0.0 +22765,67,14,29,0.0 +22765,61,28.5,49,0.0 +22765,28,45.6,30,0.0 +22765,50,16.25,25,0.0 +22765,52,7,35,0.0 +22765,53,32.8,16,0.0 +22765,71,21.5,15,0.0 +22765,65,21.05,36,0.0 +22765,40,18.4,48,0.0 +22765,1,18,26,0.0 +22765,54,7.45,49,0.0 +22765,57,19.5,22,0.0 +22765,24,4.5,18,0.0 +22765,15,15.5,1,0.0 +22765,20,81,47,0.0 +22765,19,9.2,32,0.0 +22765,75,7.75,12,0.0 +22765,36,19,9,0.0 +22765,74,10,39,0.0 +22765,33,2.5,27,0.0 +22765,45,9.5,35,0.0 +22765,34,14,42,0.0 +22765,21,10,46,0.0 +22765,22,21,28,0.0 +22765,60,34,18,0.0 +22766,46,12,11,0.0 +22766,70,15,42,0.0 +22766,65,21.05,15,0.0 +22766,10,31,17,0.0 +22766,76,18,26,0.0 +22766,23,9,12,0.0 +22766,54,7.45,16,0.0 +22766,29,123.79,25,0.0 +22766,55,24,1,0.0 +22766,40,18.4,3,0.0 +22766,38,263.5,31,0.0 +22766,47,9.5,7,0.0 +22766,44,19.45,2,0.0 +22766,18,62.5,50,0.0 +22766,74,10,26,0.0 +22766,11,21,47,0.0 +22766,42,14,11,0.0 +22766,61,28.5,22,0.0 +22766,30,25.89,32,0.0 +22766,64,33.25,18,0.0 +22766,75,7.75,44,0.0 +22766,1,18,8,0.0 +22766,52,7,14,0.0 +22766,33,2.5,24,0.0 +22766,17,39,17,0.0 +22766,72,34.8,18,0.0 +22766,35,18,30,0.0 +22766,13,6,23,0.0 +22766,69,36,31,0.0 +22766,62,49.3,7,0.0 +22766,71,21.5,37,0.0 +22766,66,17,10,0.0 +22766,14,23.25,20,0.0 +22766,5,21.35,3,0.0 +22766,15,15.5,47,0.0 +22767,24,4.5,49,0.0 +22767,68,12.5,12,0.0 +22767,66,17,30,0.0 +22767,27,43.9,48,0.0 +22767,62,49.3,49,0.0 +22767,55,24,22,0.0 +22767,4,22,36,0.0 +22767,11,21,5,0.0 +22767,67,14,2,0.0 +22767,31,12.5,33,0.0 +22767,46,12,12,0.0 +22767,17,39,3,0.0 +22767,42,14,1,0.0 +22767,52,7,40,0.0 +22767,47,9.5,43,0.0 +22767,64,33.25,18,0.0 +22767,14,23.25,47,0.0 +22767,43,46,35,0.0 +22767,75,7.75,44,0.0 +22767,51,53,41,0.0 +22767,2,19,30,0.0 +22767,12,38,3,0.0 +22767,9,97,41,0.0 +22768,77,13,35,0.0 +22768,30,25.89,17,0.0 +22768,71,21.5,24,0.0 +22768,68,12.5,48,0.0 +22768,15,15.5,14,0.0 +22768,62,49.3,35,0.0 +22768,18,62.5,23,0.0 +22768,16,17.45,41,0.0 +22768,48,12.75,28,0.0 +22768,13,6,27,0.0 +22768,45,9.5,7,0.0 +22768,35,18,48,0.0 +22768,22,21,8,0.0 +22768,65,21.05,26,0.0 +22768,63,43.9,16,0.0 +22768,44,19.45,23,0.0 +22768,42,14,38,0.0 +22768,24,4.5,25,0.0 +22768,60,34,12,0.0 +22768,36,19,31,0.0 +22768,76,18,47,0.0 +22768,31,12.5,47,0.0 +22768,66,17,12,0.0 +22768,74,10,32,0.0 +22768,33,2.5,6,0.0 +22768,12,38,6,0.0 +22768,38,263.5,16,0.0 +22768,75,7.75,17,0.0 +22768,3,10,16,0.0 +22768,1,18,36,0.0 +22768,26,31.23,14,0.0 +22768,57,19.5,46,0.0 +22768,72,34.8,21,0.0 +22768,19,9.2,48,0.0 +22768,55,24,38,0.0 +22768,41,9.65,48,0.0 +22768,50,16.25,41,0.0 +22768,51,53,50,0.0 +22768,37,26,29,0.0 +22768,70,15,28,0.0 +22768,52,7,41,0.0 +22768,54,7.45,34,0.0 +22768,4,22,42,0.0 +22768,10,31,25,0.0 +22768,64,33.25,33,0.0 +22768,32,32,29,0.0 +22768,69,36,23,0.0 +22768,58,13.25,27,0.0 +22768,34,14,39,0.0 +22768,2,19,30,0.0 +22768,7,30,7,0.0 +22768,14,23.25,2,0.0 +22768,46,12,39,0.0 +22768,23,9,11,0.0 +22768,40,18.4,7,0.0 +22768,67,14,30,0.0 +22768,21,10,1,0.0 +22769,2,19,15,0.0 +22769,51,53,18,0.0 +22769,76,18,7,0.0 +22769,37,26,13,0.0 +22769,69,36,37,0.0 +22769,46,12,36,0.0 +22769,49,20,3,0.0 +22769,24,4.5,26,0.0 +22769,23,9,9,0.0 +22769,62,49.3,44,0.0 +22769,36,19,15,0.0 +22769,44,19.45,41,0.0 +22769,66,17,20,0.0 +22769,7,30,18,0.0 +22769,12,38,11,0.0 +22769,25,14,29,0.0 +22769,45,9.5,1,0.0 +22769,32,32,48,0.0 +22769,42,14,34,0.0 +22769,50,16.25,28,0.0 +22769,20,81,10,0.0 +22769,26,31.23,16,0.0 +22769,40,18.4,22,0.0 +22769,1,18,45,0.0 +22769,38,263.5,4,0.0 +22769,73,15,36,0.0 +22769,74,10,18,0.0 +22769,10,31,39,0.0 +22769,55,24,34,0.0 +22769,39,18,29,0.0 +22769,52,7,39,0.0 +22769,27,43.9,5,0.0 +22769,21,10,50,0.0 +22769,71,21.5,42,0.0 +22769,6,25,18,0.0 +22769,34,14,31,0.0 +22769,5,21.35,37,0.0 +22769,61,28.5,25,0.0 +22769,22,21,13,0.0 +22769,59,55,14,0.0 +22769,75,7.75,37,0.0 +22769,58,13.25,38,0.0 +22769,47,9.5,17,0.0 +22769,28,45.6,38,0.0 +22769,68,12.5,11,0.0 +22769,31,12.5,25,0.0 +22769,72,34.8,43,0.0 +22769,53,32.8,32,0.0 +22769,60,34,22,0.0 +22769,9,97,32,0.0 +22769,77,13,11,0.0 +22769,3,10,7,0.0 +22769,17,39,43,0.0 +22769,19,9.2,20,0.0 +22769,56,38,9,0.0 +22769,43,46,29,0.0 +22769,11,21,9,0.0 +22769,33,2.5,34,0.0 +22769,64,33.25,19,0.0 +22769,35,18,20,0.0 +22769,8,40,12,0.0 +22769,15,15.5,27,0.0 +22769,30,25.89,43,0.0 +22769,13,6,40,0.0 +22769,16,17.45,12,0.0 +22769,29,123.79,14,0.0 +22769,67,14,20,0.0 +22769,57,19.5,48,0.0 +22769,41,9.65,14,0.0 +22769,4,22,2,0.0 +22770,61,28.5,26,0.0 +22770,45,9.5,43,0.0 +22770,48,12.75,44,0.0 +22770,73,15,32,0.0 +22770,74,10,24,0.0 +22770,21,10,24,0.0 +22770,11,21,17,0.0 +22770,55,24,15,0.0 +22770,28,45.6,39,0.0 +22770,69,36,4,0.0 +22770,58,13.25,11,0.0 +22770,16,17.45,38,0.0 +22770,64,33.25,3,0.0 +22770,22,21,37,0.0 +22770,50,16.25,29,0.0 +22770,13,6,40,0.0 +22770,23,9,12,0.0 +22770,8,40,27,0.0 +22770,1,18,6,0.0 +22770,26,31.23,2,0.0 +22770,65,21.05,16,0.0 +22770,76,18,6,0.0 +22770,25,14,1,0.0 +22770,37,26,5,0.0 +22770,59,55,4,0.0 +22770,42,14,14,0.0 +22770,41,9.65,40,0.0 +22770,60,34,4,0.0 +22770,6,25,35,0.0 +22770,38,263.5,21,0.0 +22770,43,46,29,0.0 +22770,12,38,6,0.0 +22770,20,81,30,0.0 +22770,56,38,28,0.0 +22770,57,19.5,9,0.0 +22770,34,14,38,0.0 +22770,10,31,22,0.0 +22770,54,7.45,43,0.0 +22770,49,20,43,0.0 +22770,39,18,15,0.0 +22770,2,19,5,0.0 +22770,71,21.5,38,0.0 +22770,15,15.5,38,0.0 +22770,24,4.5,8,0.0 +22770,68,12.5,12,0.0 +22770,9,97,45,0.0 +22770,77,13,41,0.0 +22770,33,2.5,11,0.0 +22770,44,19.45,8,0.0 +22770,19,9.2,29,0.0 +22770,72,34.8,45,0.0 +22770,66,17,10,0.0 +22770,46,12,1,0.0 +22770,53,32.8,6,0.0 +22770,29,123.79,14,0.0 +22770,5,21.35,44,0.0 +22770,14,23.25,29,0.0 +22770,31,12.5,2,0.0 +22770,17,39,39,0.0 +22770,27,43.9,3,0.0 +22770,18,62.5,7,0.0 +22770,36,19,20,0.0 +22770,62,49.3,47,0.0 +22770,52,7,26,0.0 +22770,30,25.89,1,0.0 +22770,35,18,32,0.0 +22771,24,4.5,31,0.0 +22771,67,14,26,0.0 +22771,28,45.6,20,0.0 +22771,21,10,26,0.0 +22771,11,21,4,0.0 +22771,52,7,35,0.0 +22771,37,26,15,0.0 +22771,74,10,19,0.0 +22771,40,18.4,8,0.0 +22771,64,33.25,11,0.0 +22771,63,43.9,2,0.0 +22771,9,97,25,0.0 +22771,22,21,22,0.0 +22771,48,12.75,5,0.0 +22771,7,30,15,0.0 +22771,50,16.25,6,0.0 +22771,3,10,4,0.0 +22771,15,15.5,9,0.0 +22771,58,13.25,7,0.0 +22771,2,19,11,0.0 +22771,77,13,13,0.0 +22771,12,38,42,0.0 +22771,10,31,13,0.0 +22771,30,25.89,38,0.0 +22771,43,46,24,0.0 +22771,54,7.45,14,0.0 +22771,33,2.5,19,0.0 +22771,51,53,27,0.0 +22772,62,49.3,36,0.0 +22772,76,18,6,0.0 +22772,11,21,23,0.0 +22772,65,21.05,13,0.0 +22772,24,4.5,22,0.0 +22772,3,10,9,0.0 +22772,17,39,50,0.0 +22772,10,31,14,0.0 +22772,18,62.5,10,0.0 +22772,72,34.8,8,0.0 +22772,32,32,12,0.0 +22772,58,13.25,34,0.0 +22772,9,97,25,0.0 +22772,26,31.23,26,0.0 +22772,16,17.45,10,0.0 +22772,75,7.75,17,0.0 +22772,50,16.25,6,0.0 +22772,34,14,2,0.0 +22772,41,9.65,25,0.0 +22772,36,19,10,0.0 +22772,4,22,24,0.0 +22772,46,12,10,0.0 +22772,54,7.45,1,0.0 +22772,39,18,4,0.0 +22772,68,12.5,34,0.0 +22772,40,18.4,24,0.0 +22772,66,17,50,0.0 +22772,22,21,16,0.0 +22772,47,9.5,47,0.0 +22772,29,123.79,34,0.0 +22772,30,25.89,45,0.0 +22772,60,34,20,0.0 +22772,7,30,16,0.0 +22772,15,15.5,34,0.0 +22772,52,7,44,0.0 +22772,57,19.5,13,0.0 +22772,21,10,11,0.0 +22772,45,9.5,40,0.0 +22772,51,53,6,0.0 +22772,13,6,47,0.0 +22772,73,15,43,0.0 +22772,56,38,34,0.0 +22772,48,12.75,34,0.0 +22772,59,55,7,0.0 +22772,53,32.8,35,0.0 +22772,64,33.25,46,0.0 +22772,49,20,2,0.0 +22772,12,38,29,0.0 +22772,20,81,19,0.0 +22772,14,23.25,46,0.0 +22772,31,12.5,32,0.0 +22772,27,43.9,39,0.0 +22772,5,21.35,48,0.0 +22772,8,40,32,0.0 +22772,1,18,37,0.0 +22772,35,18,28,0.0 +22772,43,46,20,0.0 +22772,38,263.5,34,0.0 +22772,63,43.9,21,0.0 +22772,37,26,34,0.0 +22772,77,13,38,0.0 +22772,42,14,50,0.0 +22772,6,25,21,0.0 +22772,19,9.2,5,0.0 +22772,23,9,9,0.0 +22772,28,45.6,50,0.0 +22772,71,21.5,27,0.0 +22772,25,14,35,0.0 +22773,37,26,34,0.0 +22773,47,9.5,17,0.0 +22773,75,7.75,5,0.0 +22773,9,97,13,0.0 +22773,57,19.5,36,0.0 +22773,4,22,33,0.0 +22773,7,30,48,0.0 +22773,31,12.5,19,0.0 +22773,3,10,15,0.0 +22773,46,12,13,0.0 +22773,69,36,13,0.0 +22773,41,9.65,25,0.0 +22773,53,32.8,39,0.0 +22773,62,49.3,18,0.0 +22773,66,17,30,0.0 +22773,58,13.25,20,0.0 +22773,61,28.5,24,0.0 +22773,71,21.5,2,0.0 +22773,72,34.8,18,0.0 +22773,14,23.25,2,0.0 +22773,15,15.5,10,0.0 +22773,60,34,34,0.0 +22773,73,15,33,0.0 +22773,18,62.5,33,0.0 +22773,19,9.2,12,0.0 +22773,59,55,8,0.0 +22773,29,123.79,7,0.0 +22773,17,39,30,0.0 +22773,40,18.4,8,0.0 +22773,68,12.5,19,0.0 +22773,13,6,48,0.0 +22773,70,15,22,0.0 +22773,56,38,5,0.0 +22773,36,19,41,0.0 +22773,49,20,33,0.0 +22773,11,21,28,0.0 +22773,54,7.45,33,0.0 +22773,76,18,43,0.0 +22773,26,31.23,45,0.0 +22773,27,43.9,11,0.0 +22773,50,16.25,17,0.0 +22773,24,4.5,30,0.0 +22773,67,14,37,0.0 +22773,5,21.35,36,0.0 +22773,77,13,40,0.0 +22773,39,18,8,0.0 +22773,63,43.9,14,0.0 +22773,33,2.5,36,0.0 +22773,32,32,24,0.0 +22773,30,25.89,49,0.0 +22773,21,10,47,0.0 +22773,38,263.5,3,0.0 +22773,64,33.25,35,0.0 +22773,43,46,20,0.0 +22773,52,7,44,0.0 +22773,28,45.6,34,0.0 +22773,74,10,23,0.0 +22773,6,25,34,0.0 +22773,42,14,21,0.0 +22773,25,14,25,0.0 +22773,1,18,17,0.0 +22773,2,19,16,0.0 +22773,16,17.45,32,0.0 +22773,44,19.45,42,0.0 +22773,48,12.75,37,0.0 +22773,45,9.5,36,0.0 +22773,51,53,50,0.0 +22773,10,31,31,0.0 +22773,20,81,40,0.0 +22773,8,40,45,0.0 +22773,55,24,1,0.0 +22773,23,9,22,0.0 +22773,22,21,46,0.0 +22773,65,21.05,47,0.0 +22773,35,18,46,0.0 +22773,12,38,33,0.0 +22774,48,12.75,28,0.0 +22774,29,123.79,33,0.0 +22774,10,31,26,0.0 +22774,9,97,41,0.0 +22774,49,20,10,0.0 +22774,58,13.25,30,0.0 +22774,5,21.35,19,0.0 +22774,55,24,12,0.0 +22774,54,7.45,50,0.0 +22774,53,32.8,48,0.0 +22774,23,9,19,0.0 +22774,77,13,4,0.0 +22774,46,12,46,0.0 +22774,65,21.05,33,0.0 +22774,70,15,6,0.0 +22774,18,62.5,2,0.0 +22774,63,43.9,35,0.0 +22774,15,15.5,40,0.0 +22774,30,25.89,14,0.0 +22774,1,18,35,0.0 +22774,57,19.5,19,0.0 +22774,51,53,34,0.0 +22774,4,22,6,0.0 +22774,44,19.45,48,0.0 +22774,13,6,19,0.0 +22774,66,17,20,0.0 +22774,32,32,48,0.0 +22774,42,14,43,0.0 +22774,8,40,3,0.0 +22774,25,14,16,0.0 +22774,21,10,40,0.0 +22774,31,12.5,28,0.0 +22774,45,9.5,18,0.0 +22774,68,12.5,36,0.0 +22774,16,17.45,28,0.0 +22774,71,21.5,13,0.0 +22774,22,21,48,0.0 +22774,34,14,22,0.0 +22774,47,9.5,40,0.0 +22774,76,18,41,0.0 +22774,12,38,34,0.0 +22774,69,36,5,0.0 +22774,43,46,17,0.0 +22774,73,15,26,0.0 +22774,36,19,23,0.0 +22774,2,19,15,0.0 +22774,26,31.23,2,0.0 +22775,6,25,23,0.0 +22775,26,31.23,29,0.0 +22775,19,9.2,26,0.0 +22775,20,81,45,0.0 +22775,77,13,46,0.0 +22775,67,14,45,0.0 +22775,62,49.3,13,0.0 +22775,60,34,27,0.0 +22775,16,17.45,24,0.0 +22775,47,9.5,39,0.0 +22775,65,21.05,9,0.0 +22775,56,38,14,0.0 +22775,22,21,17,0.0 +22775,42,14,13,0.0 +22775,28,45.6,15,0.0 +22775,11,21,18,0.0 +22775,23,9,43,0.0 +22775,38,263.5,36,0.0 +22775,12,38,32,0.0 +22775,31,12.5,24,0.0 +22775,15,15.5,11,0.0 +22775,57,19.5,27,0.0 +22775,63,43.9,34,0.0 +22775,69,36,49,0.0 +22775,51,53,9,0.0 +22775,59,55,11,0.0 +22775,61,28.5,35,0.0 +22776,47,9.5,38,0.0 +22776,40,18.4,39,0.0 +22776,22,21,41,0.0 +22776,64,33.25,30,0.0 +22776,69,36,25,0.0 +22776,1,18,18,0.0 +22776,73,15,16,0.0 +22776,61,28.5,2,0.0 +22776,42,14,31,0.0 +22776,49,20,30,0.0 +22776,43,46,28,0.0 +22776,5,21.35,18,0.0 +22776,17,39,15,0.0 +22776,67,14,24,0.0 +22776,62,49.3,9,0.0 +22776,68,12.5,16,0.0 +22776,77,13,6,0.0 +22776,8,40,6,0.0 +22776,66,17,4,0.0 +22776,71,21.5,29,0.0 +22776,10,31,25,0.0 +22776,11,21,14,0.0 +22776,25,14,10,0.0 +22776,76,18,8,0.0 +22776,70,15,28,0.0 +22776,53,32.8,33,0.0 +22776,51,53,40,0.0 +22776,55,24,49,0.0 +22776,36,19,34,0.0 +22776,14,23.25,34,0.0 +22777,61,28.5,36,0.0 +22778,48,12.75,36,0.0 +22778,54,7.45,13,0.0 +22778,39,18,5,0.0 +22778,11,21,22,0.0 +22778,36,19,13,0.0 +22778,49,20,3,0.0 +22778,13,6,16,0.0 +22778,45,9.5,9,0.0 +22778,57,19.5,15,0.0 +22778,66,17,30,0.0 +22778,33,2.5,25,0.0 +22778,42,14,38,0.0 +22779,44,19.45,31,0.0 +22779,22,21,47,0.0 +22779,48,12.75,8,0.0 +22779,21,10,4,0.0 +22779,18,62.5,39,0.0 +22779,15,15.5,47,0.0 +22779,67,14,41,0.0 +22779,41,9.65,18,0.0 +22779,4,22,31,0.0 +22779,77,13,29,0.0 +22779,3,10,21,0.0 +22779,16,17.45,34,0.0 +22779,66,17,30,0.0 +22779,63,43.9,36,0.0 +22779,53,32.8,26,0.0 +22779,55,24,34,0.0 +22779,54,7.45,11,0.0 +22779,49,20,24,0.0 +22779,12,38,27,0.0 +22779,6,25,32,0.0 +22779,11,21,42,0.0 +22779,39,18,42,0.0 +22779,62,49.3,7,0.0 +22779,50,16.25,4,0.0 +22779,59,55,37,0.0 +22779,27,43.9,44,0.0 +22779,34,14,30,0.0 +22779,56,38,18,0.0 +22779,58,13.25,12,0.0 +22779,43,46,7,0.0 +22779,42,14,26,0.0 +22779,61,28.5,21,0.0 +22779,46,12,7,0.0 +22779,28,45.6,5,0.0 +22779,8,40,25,0.0 +22779,20,81,20,0.0 +22779,29,123.79,35,0.0 +22779,10,31,11,0.0 +22779,47,9.5,43,0.0 +22779,36,19,48,0.0 +22779,31,12.5,9,0.0 +22779,24,4.5,14,0.0 +22779,23,9,29,0.0 +22779,2,19,30,0.0 +22779,9,97,37,0.0 +22779,69,36,1,0.0 +22779,35,18,16,0.0 +22779,45,9.5,50,0.0 +22779,57,19.5,8,0.0 +22779,32,32,5,0.0 +22779,33,2.5,26,0.0 +22779,13,6,9,0.0 +22779,51,53,38,0.0 +22779,19,9.2,46,0.0 +22779,76,18,11,0.0 +22779,40,18.4,37,0.0 +22779,70,15,12,0.0 +22779,64,33.25,32,0.0 +22779,25,14,1,0.0 +22779,68,12.5,23,0.0 +22779,73,15,11,0.0 +22779,71,21.5,10,0.0 +22779,7,30,43,0.0 +22779,26,31.23,42,0.0 +22779,30,25.89,28,0.0 +22779,1,18,2,0.0 +22779,72,34.8,32,0.0 +22779,74,10,9,0.0 +22779,38,263.5,15,0.0 +22779,14,23.25,21,0.0 +22779,60,34,3,0.0 +22780,67,14,44,0.0 +22780,17,39,11,0.0 +22780,15,15.5,40,0.0 +22780,28,45.6,49,0.0 +22780,49,20,4,0.0 +22780,8,40,28,0.0 +22780,4,22,33,0.0 +22780,56,38,38,0.0 +22780,75,7.75,34,0.0 +22780,65,21.05,21,0.0 +22780,31,12.5,37,0.0 +22780,77,13,3,0.0 +22780,62,49.3,38,0.0 +22780,27,43.9,24,0.0 +22780,22,21,50,0.0 +22780,2,19,36,0.0 +22780,40,18.4,34,0.0 +22780,32,32,17,0.0 +22780,43,46,21,0.0 +22780,36,19,38,0.0 +22780,57,19.5,44,0.0 +22780,12,38,15,0.0 +22780,66,17,50,0.0 +22780,38,263.5,40,0.0 +22780,55,24,36,0.0 +22780,70,15,46,0.0 +22780,73,15,23,0.0 +22780,5,21.35,25,0.0 +22780,10,31,27,0.0 +22780,9,97,22,0.0 +22780,16,17.45,4,0.0 +22780,39,18,31,0.0 +22780,52,7,24,0.0 +22780,26,31.23,1,0.0 +22780,14,23.25,20,0.0 +22780,1,18,1,0.0 +22780,71,21.5,7,0.0 +22780,29,123.79,1,0.0 +22780,76,18,19,0.0 +22780,19,9.2,45,0.0 +22780,59,55,19,0.0 +22780,42,14,16,0.0 +22780,69,36,18,0.0 +22780,63,43.9,43,0.0 +22780,41,9.65,14,0.0 +22780,60,34,29,0.0 +22780,48,12.75,50,0.0 +22780,58,13.25,47,0.0 +22780,13,6,40,0.0 +22780,54,7.45,44,0.0 +22780,6,25,12,0.0 +22780,61,28.5,18,0.0 +22780,3,10,27,0.0 +22780,37,26,34,0.0 +22780,20,81,40,0.0 +22780,51,53,20,0.0 +22780,33,2.5,40,0.0 +22780,30,25.89,43,0.0 +22780,11,21,39,0.0 +22780,25,14,17,0.0 +22780,23,9,25,0.0 +22780,34,14,1,0.0 +22780,68,12.5,41,0.0 +22780,47,9.5,2,0.0 +22780,64,33.25,2,0.0 +22780,46,12,19,0.0 +22780,45,9.5,4,0.0 +22780,74,10,17,0.0 +22780,44,19.45,44,0.0 +22780,21,10,28,0.0 +22780,35,18,46,0.0 +22780,24,4.5,49,0.0 +22780,7,30,16,0.0 +22780,53,32.8,46,0.0 +22781,36,19,1,0.0 +22781,2,19,8,0.0 +22781,29,123.79,31,0.0 +22781,46,12,3,0.0 +22781,34,14,5,0.0 +22781,27,43.9,46,0.0 +22781,41,9.65,41,0.0 +22781,24,4.5,14,0.0 +22781,54,7.45,45,0.0 +22782,10,31,21,0.0 +22782,3,10,5,0.0 +22782,55,24,8,0.0 +22782,58,13.25,28,0.0 +22782,39,18,44,0.0 +22782,1,18,9,0.0 +22782,41,9.65,4,0.0 +22782,45,9.5,13,0.0 +22782,51,53,28,0.0 +22782,40,18.4,42,0.0 +22782,43,46,37,0.0 +22782,2,19,29,0.0 +22782,36,19,49,0.0 +22782,9,97,31,0.0 +22782,76,18,4,0.0 +22782,32,32,1,0.0 +22782,25,14,49,0.0 +22782,71,21.5,26,0.0 +22782,67,14,8,0.0 +22782,44,19.45,50,0.0 +22782,28,45.6,48,0.0 +22782,26,31.23,36,0.0 +22782,57,19.5,13,0.0 +22782,6,25,45,0.0 +22782,60,34,18,0.0 +22782,7,30,42,0.0 +22782,15,15.5,41,0.0 +22782,11,21,30,0.0 +22782,62,49.3,1,0.0 +22782,42,14,7,0.0 +22782,34,14,27,0.0 +22782,22,21,14,0.0 +22782,69,36,3,0.0 +22782,16,17.45,43,0.0 +22782,49,20,26,0.0 +22782,66,17,8,0.0 +22782,75,7.75,10,0.0 +22782,47,9.5,24,0.0 +22782,37,26,5,0.0 +22782,5,21.35,34,0.0 +22782,59,55,49,0.0 +22782,65,21.05,22,0.0 +22782,77,13,8,0.0 +22782,30,25.89,40,0.0 +22782,38,263.5,31,0.0 +22782,31,12.5,15,0.0 +22782,72,34.8,10,0.0 +22782,24,4.5,48,0.0 +22782,46,12,47,0.0 +22782,53,32.8,18,0.0 +22782,29,123.79,13,0.0 +22782,70,15,37,0.0 +22782,17,39,50,0.0 +22782,54,7.45,50,0.0 +22782,21,10,35,0.0 +22782,73,15,19,0.0 +22782,35,18,35,0.0 +22782,61,28.5,30,0.0 +22782,12,38,5,0.0 +22782,33,2.5,5,0.0 +22782,50,16.25,2,0.0 +22782,14,23.25,17,0.0 +22782,63,43.9,38,0.0 +22782,8,40,22,0.0 +22782,20,81,4,0.0 +22782,68,12.5,29,0.0 +22782,64,33.25,37,0.0 +22782,4,22,32,0.0 +22783,28,45.6,26,0.0 +22783,54,7.45,45,0.0 +22784,25,14,46,0.0 +22784,46,12,6,0.0 +22784,50,16.25,20,0.0 +22784,63,43.9,9,0.0 +22784,76,18,25,0.0 +22784,70,15,31,0.0 +22784,42,14,40,0.0 +22784,45,9.5,10,0.0 +22784,8,40,10,0.0 +22784,34,14,36,0.0 +22784,37,26,47,0.0 +22785,6,25,1,0.0 +22785,19,9.2,39,0.0 +22785,76,18,35,0.0 +22785,68,12.5,22,0.0 +22785,35,18,3,0.0 +22785,1,18,3,0.0 +22785,66,17,15,0.0 +22785,26,31.23,16,0.0 +22786,13,6,46,0.0 +22786,12,38,34,0.0 +22786,53,32.8,11,0.0 +22786,1,18,33,0.0 +22786,7,30,37,0.0 +22786,19,9.2,26,0.0 +22786,39,18,32,0.0 +22786,41,9.65,25,0.0 +22786,35,18,37,0.0 +22786,75,7.75,29,0.0 +22786,23,9,32,0.0 +22786,74,10,28,0.0 +22786,60,34,17,0.0 +22786,58,13.25,24,0.0 +22786,29,123.79,29,0.0 +22786,16,17.45,49,0.0 +22786,34,14,8,0.0 +22786,17,39,18,0.0 +22786,2,19,48,0.0 +22786,38,263.5,22,0.0 +22786,44,19.45,43,0.0 +22786,37,26,36,0.0 +22786,28,45.6,8,0.0 +22786,45,9.5,5,0.0 +22786,26,31.23,47,0.0 +22786,73,15,6,0.0 +22786,62,49.3,9,0.0 +22786,61,28.5,31,0.0 +22786,33,2.5,24,0.0 +22786,63,43.9,11,0.0 +22786,57,19.5,34,0.0 +22786,55,24,14,0.0 +22786,11,21,2,0.0 +22786,46,12,20,0.0 +22786,65,21.05,17,0.0 +22786,54,7.45,1,0.0 +22787,19,9.2,7,0.0 +22787,7,30,39,0.0 +22787,4,22,47,0.0 +22787,27,43.9,3,0.0 +22787,24,4.5,43,0.0 +22787,47,9.5,37,0.0 +22787,17,39,38,0.0 +22787,31,12.5,13,0.0 +22787,77,13,22,0.0 +22787,39,18,46,0.0 +22787,25,14,47,0.0 +22787,69,36,9,0.0 +22787,38,263.5,4,0.0 +22787,62,49.3,42,0.0 +22787,75,7.75,23,0.0 +22787,40,18.4,46,0.0 +22787,23,9,1,0.0 +22787,15,15.5,48,0.0 +22787,53,32.8,50,0.0 +22788,52,7,50,0.0 +22788,20,81,45,0.0 +22788,29,123.79,46,0.0 +22788,4,22,20,0.0 +22788,25,14,19,0.0 +22788,62,49.3,11,0.0 +22788,19,9.2,32,0.0 +22788,49,20,49,0.0 +22788,69,36,17,0.0 +22788,38,263.5,20,0.0 +22788,61,28.5,6,0.0 +22788,57,19.5,48,0.0 +22788,72,34.8,25,0.0 +22788,35,18,18,0.0 +22788,41,9.65,19,0.0 +22788,47,9.5,6,0.0 +22788,1,18,36,0.0 +22788,58,13.25,3,0.0 +22788,36,19,4,0.0 +22788,53,32.8,46,0.0 +22788,77,13,50,0.0 +22788,27,43.9,16,0.0 +22788,5,21.35,16,0.0 +22788,34,14,30,0.0 +22788,39,18,38,0.0 +22788,67,14,14,0.0 +22788,9,97,20,0.0 +22788,46,12,47,0.0 +22788,7,30,7,0.0 +22788,54,7.45,26,0.0 +22788,60,34,13,0.0 +22788,59,55,29,0.0 +22788,48,12.75,21,0.0 +22788,26,31.23,9,0.0 +22788,23,9,38,0.0 +22788,66,17,16,0.0 +22788,3,10,17,0.0 +22788,75,7.75,21,0.0 +22788,71,21.5,22,0.0 +22788,13,6,48,0.0 +22788,32,32,42,0.0 +22788,30,25.89,17,0.0 +22788,42,14,13,0.0 +22788,40,18.4,31,0.0 +22788,2,19,36,0.0 +22788,6,25,21,0.0 +22788,31,12.5,35,0.0 +22788,24,4.5,6,0.0 +22789,14,23.25,30,0.0 +22789,59,55,5,0.0 +22789,49,20,33,0.0 +22789,57,19.5,41,0.0 +22789,67,14,40,0.0 +22789,50,16.25,9,0.0 +22789,1,18,32,0.0 +22789,8,40,23,0.0 +22789,45,9.5,34,0.0 +22789,46,12,14,0.0 +22789,31,12.5,33,0.0 +22789,61,28.5,46,0.0 +22789,43,46,5,0.0 +22789,33,2.5,40,0.0 +22789,40,18.4,11,0.0 +22789,10,31,27,0.0 +22789,70,15,33,0.0 +22789,54,7.45,26,0.0 +22789,29,123.79,3,0.0 +22790,43,46,14,0.0 +22790,31,12.5,33,0.0 +22790,33,2.5,25,0.0 +22790,23,9,23,0.0 +22790,2,19,22,0.0 +22790,25,14,6,0.0 +22790,4,22,27,0.0 +22790,56,38,4,0.0 +22790,21,10,31,0.0 +22790,45,9.5,8,0.0 +22790,59,55,35,0.0 +22790,42,14,10,0.0 +22790,14,23.25,25,0.0 +22790,38,263.5,15,0.0 +22790,8,40,25,0.0 +22790,19,9.2,48,0.0 +22790,40,18.4,48,0.0 +22790,69,36,30,0.0 +22790,1,18,29,0.0 +22790,24,4.5,5,0.0 +22790,13,6,8,0.0 +22790,62,49.3,19,0.0 +22790,54,7.45,49,0.0 +22790,64,33.25,24,0.0 +22790,72,34.8,44,0.0 +22790,73,15,44,0.0 +22790,57,19.5,19,0.0 +22790,51,53,28,0.0 +22790,35,18,36,0.0 +22790,44,19.45,16,0.0 +22790,36,19,31,0.0 +22790,63,43.9,13,0.0 +22790,52,7,46,0.0 +22790,67,14,32,0.0 +22790,5,21.35,50,0.0 +22790,12,38,40,0.0 +22790,70,15,2,0.0 +22790,53,32.8,19,0.0 +22790,49,20,36,0.0 +22790,22,21,39,0.0 +22790,46,12,43,0.0 +22790,66,17,44,0.0 +22790,47,9.5,24,0.0 +22790,15,15.5,3,0.0 +22790,48,12.75,46,0.0 +22791,73,15,6,0.0 +22791,31,12.5,47,0.0 +22791,42,14,48,0.0 +22791,6,25,37,0.0 +22791,27,43.9,41,0.0 +22791,17,39,39,0.0 +22791,32,32,14,0.0 +22791,56,38,25,0.0 +22791,19,9.2,8,0.0 +22791,20,81,13,0.0 +22791,12,38,11,0.0 +22791,64,33.25,3,0.0 +22791,51,53,12,0.0 +22791,48,12.75,2,0.0 +22791,16,17.45,29,0.0 +22791,35,18,8,0.0 +22791,75,7.75,42,0.0 +22791,3,10,22,0.0 +22791,36,19,13,0.0 +22791,39,18,46,0.0 +22791,13,6,29,0.0 +22791,34,14,27,0.0 +22791,65,21.05,10,0.0 +22791,29,123.79,40,0.0 +22792,2,19,37,0.0 +22792,65,21.05,24,0.0 +22792,43,46,3,0.0 +22792,54,7.45,3,0.0 +22792,22,21,1,0.0 +22792,45,9.5,3,0.0 +22792,16,17.45,22,0.0 +22792,10,31,18,0.0 +22792,58,13.25,28,0.0 +22792,20,81,26,0.0 +22792,3,10,47,0.0 +22792,13,6,23,0.0 +22792,59,55,43,0.0 +22792,39,18,46,0.0 +22792,31,12.5,16,0.0 +22792,42,14,24,0.0 +22792,50,16.25,21,0.0 +22792,23,9,7,0.0 +22792,72,34.8,26,0.0 +22792,8,40,17,0.0 +22792,74,10,18,0.0 +22792,5,21.35,47,0.0 +22792,62,49.3,47,0.0 +22792,71,21.5,30,0.0 +22792,76,18,39,0.0 +22792,63,43.9,10,0.0 +22792,32,32,15,0.0 +22792,70,15,19,0.0 +22792,57,19.5,47,0.0 +22792,60,34,45,0.0 +22792,41,9.65,23,0.0 +22792,56,38,13,0.0 +22792,17,39,47,0.0 +22792,21,10,2,0.0 +22792,36,19,44,0.0 +22792,38,263.5,32,0.0 +22792,49,20,20,0.0 +22792,55,24,5,0.0 +22792,51,53,49,0.0 +22792,29,123.79,22,0.0 +22792,48,12.75,14,0.0 +22792,33,2.5,15,0.0 +22792,14,23.25,13,0.0 +22792,12,38,2,0.0 +22792,6,25,38,0.0 +22792,53,32.8,31,0.0 +22792,7,30,1,0.0 +22792,75,7.75,11,0.0 +22792,67,14,17,0.0 +22792,37,26,20,0.0 +22792,15,15.5,23,0.0 +22792,46,12,26,0.0 +22792,30,25.89,36,0.0 +22792,44,19.45,34,0.0 +22792,66,17,50,0.0 +22792,1,18,47,0.0 +22793,13,6,1,0.0 +22793,60,34,34,0.0 +22793,45,9.5,29,0.0 +22793,64,33.25,37,0.0 +22793,53,32.8,26,0.0 +22793,28,45.6,14,0.0 +22793,33,2.5,35,0.0 +22793,17,39,6,0.0 +22793,38,263.5,33,0.0 +22793,29,123.79,17,0.0 +22793,52,7,1,0.0 +22793,34,14,20,0.0 +22793,55,24,2,0.0 +22793,47,9.5,31,0.0 +22793,21,10,12,0.0 +22793,4,22,3,0.0 +22793,18,62.5,34,0.0 +22793,48,12.75,26,0.0 +22793,5,21.35,21,0.0 +22793,10,31,24,0.0 +22793,50,16.25,15,0.0 +22793,2,19,21,0.0 +22793,66,17,10,0.0 +22793,12,38,14,0.0 +22793,19,9.2,16,0.0 +22793,67,14,38,0.0 +22793,32,32,16,0.0 +22793,11,21,10,0.0 +22793,77,13,49,0.0 +22793,35,18,21,0.0 +22793,8,40,34,0.0 +22793,24,4.5,32,0.0 +22793,71,21.5,32,0.0 +22793,73,15,34,0.0 +22793,58,13.25,42,0.0 +22793,74,10,32,0.0 +22793,61,28.5,39,0.0 +22793,39,18,44,0.0 +22793,42,14,33,0.0 +22793,40,18.4,38,0.0 +22793,23,9,8,0.0 +22793,36,19,40,0.0 +22793,22,21,16,0.0 +22793,76,18,20,0.0 +22793,75,7.75,30,0.0 +22793,15,15.5,12,0.0 +22793,70,15,15,0.0 +22793,9,97,2,0.0 +22793,25,14,40,0.0 +22794,77,13,43,0.0 +22794,31,12.5,50,0.0 +22794,50,16.25,48,0.0 +22794,37,26,25,0.0 +22794,2,19,30,0.0 +22794,24,4.5,5,0.0 +22794,66,17,12,0.0 +22794,48,12.75,18,0.0 +22794,11,21,26,0.0 +22794,38,263.5,21,0.0 +22794,39,18,44,0.0 +22794,34,14,17,0.0 +22794,62,49.3,11,0.0 +22794,3,10,23,0.0 +22794,30,25.89,6,0.0 +22794,40,18.4,6,0.0 +22794,45,9.5,31,0.0 +22794,9,97,45,0.0 +22794,41,9.65,42,0.0 +22794,22,21,33,0.0 +22794,13,6,8,0.0 +22794,58,13.25,17,0.0 +22794,61,28.5,8,0.0 +22794,44,19.45,43,0.0 +22794,17,39,26,0.0 +22794,27,43.9,18,0.0 +22794,6,25,44,0.0 +22794,7,30,13,0.0 +22794,56,38,47,0.0 +22794,64,33.25,31,0.0 +22794,19,9.2,38,0.0 +22794,51,53,41,0.0 +22794,26,31.23,17,0.0 +22794,28,45.6,10,0.0 +22794,5,21.35,7,0.0 +22794,71,21.5,21,0.0 +22794,49,20,10,0.0 +22794,53,32.8,42,0.0 +22794,36,19,19,0.0 +22794,33,2.5,27,0.0 +22794,29,123.79,3,0.0 +22794,47,9.5,12,0.0 +22794,52,7,10,0.0 +22794,18,62.5,46,0.0 +22794,68,12.5,24,0.0 +22794,15,15.5,6,0.0 +22794,12,38,20,0.0 +22794,14,23.25,29,0.0 +22794,69,36,6,0.0 +22794,76,18,1,0.0 +22794,74,10,14,0.0 +22794,32,32,12,0.0 +22795,28,45.6,38,0.0 +22795,71,21.5,47,0.0 +22795,43,46,44,0.0 +22795,9,97,36,0.0 +22795,1,18,13,0.0 +22795,76,18,39,0.0 +22795,74,10,47,0.0 +22795,35,18,45,0.0 +22795,42,14,13,0.0 +22795,61,28.5,23,0.0 +22795,18,62.5,40,0.0 +22795,41,9.65,8,0.0 +22795,57,19.5,49,0.0 +22795,8,40,12,0.0 +22795,47,9.5,28,0.0 +22795,21,10,2,0.0 +22795,72,34.8,1,0.0 +22795,14,23.25,1,0.0 +22795,70,15,42,0.0 +22795,73,15,11,0.0 +22795,53,32.8,18,0.0 +22795,2,19,15,0.0 +22795,31,12.5,19,0.0 +22795,58,13.25,27,0.0 +22795,6,25,44,0.0 +22795,37,26,25,0.0 +22795,40,18.4,17,0.0 +22795,5,21.35,7,0.0 +22795,51,53,13,0.0 +22795,15,15.5,7,0.0 +22795,33,2.5,40,0.0 +22795,66,17,11,0.0 +22795,64,33.25,47,0.0 +22795,29,123.79,14,0.0 +22795,67,14,2,0.0 +22795,39,18,5,0.0 +22795,50,16.25,17,0.0 +22795,56,38,21,0.0 +22795,3,10,15,0.0 +22795,65,21.05,5,0.0 +22795,34,14,34,0.0 +22795,10,31,37,0.0 +22795,24,4.5,48,0.0 +22795,59,55,27,0.0 +22795,75,7.75,14,0.0 +22795,27,43.9,2,0.0 +22796,31,12.5,39,0.0 +22796,6,25,12,0.0 +22796,40,18.4,32,0.0 +22796,52,7,5,0.0 +22796,60,34,34,0.0 +22796,48,12.75,1,0.0 +22796,50,16.25,7,0.0 +22796,58,13.25,5,0.0 +22796,7,30,50,0.0 +22796,41,9.65,26,0.0 +22797,11,21,36,0.0 +22797,22,21,13,0.0 +22797,49,20,40,0.0 +22797,52,7,48,0.0 +22797,74,10,41,0.0 +22797,69,36,37,0.0 +22797,77,13,41,0.0 +22797,56,38,19,0.0 +22797,62,49.3,30,0.0 +22797,12,38,20,0.0 +22797,60,34,48,0.0 +22797,5,21.35,38,0.0 +22797,27,43.9,5,0.0 +22797,6,25,3,0.0 +22797,46,12,16,0.0 +22797,70,15,38,0.0 +22797,48,12.75,37,0.0 +22797,36,19,39,0.0 +22797,21,10,2,0.0 +22797,26,31.23,26,0.0 +22797,14,23.25,40,0.0 +22797,1,18,42,0.0 +22797,24,4.5,11,0.0 +22797,45,9.5,33,0.0 +22797,44,19.45,12,0.0 +22797,39,18,31,0.0 +22797,40,18.4,23,0.0 +22797,34,14,3,0.0 +22797,47,9.5,25,0.0 +22797,8,40,40,0.0 +22797,43,46,27,0.0 +22797,42,14,1,0.0 +22797,33,2.5,32,0.0 +22797,4,22,17,0.0 +22797,3,10,27,0.0 +22797,13,6,26,0.0 +22797,58,13.25,39,0.0 +22797,20,81,49,0.0 +22797,16,17.45,6,0.0 +22797,38,263.5,12,0.0 +22797,76,18,3,0.0 +22797,51,53,19,0.0 +22797,54,7.45,12,0.0 +22797,15,15.5,20,0.0 +22797,59,55,26,0.0 +22797,63,43.9,19,0.0 +22797,65,21.05,45,0.0 +22797,35,18,31,0.0 +22797,18,62.5,31,0.0 +22797,32,32,49,0.0 +22797,57,19.5,24,0.0 +22797,19,9.2,6,0.0 +22797,64,33.25,48,0.0 +22797,30,25.89,26,0.0 +22797,53,32.8,4,0.0 +22797,9,97,37,0.0 +22797,67,14,1,0.0 +22797,73,15,14,0.0 +22797,75,7.75,37,0.0 +22797,10,31,20,0.0 +22797,7,30,4,0.0 +22797,55,24,14,0.0 +22797,71,21.5,33,0.0 +22797,23,9,48,0.0 +22797,28,45.6,19,0.0 +22797,25,14,27,0.0 +22797,37,26,28,0.0 +22797,41,9.65,40,0.0 +22797,61,28.5,28,0.0 +22797,29,123.79,42,0.0 +22797,66,17,10,0.0 +22797,2,19,27,0.0 +22797,50,16.25,40,0.0 +22797,68,12.5,41,0.0 +22797,31,12.5,15,0.0 +22797,72,34.8,22,0.0 +22798,22,21,8,0.0 +22798,64,33.25,38,0.0 +22798,12,38,26,0.0 +22798,74,10,10,0.0 +22798,56,38,17,0.0 +22798,66,17,28,0.0 +22798,77,13,30,0.0 +22798,45,9.5,29,0.0 +22798,57,19.5,45,0.0 +22798,36,19,48,0.0 +22798,73,15,38,0.0 +22798,1,18,2,0.0 +22798,68,12.5,32,0.0 +22798,7,30,19,0.0 +22798,58,13.25,22,0.0 +22798,8,40,48,0.0 +22798,4,22,17,0.0 +22799,50,16.25,38,0.0 +22799,40,18.4,36,0.0 +22799,61,28.5,4,0.0 +22799,15,15.5,24,0.0 +22799,73,15,40,0.0 +22799,72,34.8,21,0.0 +22799,48,12.75,18,0.0 +22799,59,55,9,0.0 +22799,51,53,47,0.0 +22799,57,19.5,24,0.0 +22799,70,15,28,0.0 +22799,65,21.05,34,0.0 +22799,45,9.5,30,0.0 +22799,2,19,4,0.0 +22799,31,12.5,8,0.0 +22799,71,21.5,13,0.0 +22799,27,43.9,47,0.0 +22799,24,4.5,42,0.0 +22799,66,17,44,0.0 +22799,47,9.5,15,0.0 +22799,35,18,18,0.0 +22799,42,14,28,0.0 +22799,6,25,3,0.0 +22799,64,33.25,33,0.0 +22799,36,19,38,0.0 +22799,10,31,42,0.0 +22799,44,19.45,26,0.0 +22799,14,23.25,31,0.0 +22799,67,14,45,0.0 +22799,52,7,37,0.0 +22799,69,36,20,0.0 +22799,43,46,12,0.0 +22799,62,49.3,36,0.0 +22799,11,21,21,0.0 +22799,12,38,37,0.0 +22799,74,10,44,0.0 +22799,49,20,40,0.0 +22799,53,32.8,24,0.0 +22799,77,13,44,0.0 +22799,30,25.89,6,0.0 +22799,55,24,14,0.0 +22799,46,12,23,0.0 +22799,75,7.75,11,0.0 +22799,18,62.5,1,0.0 +22799,39,18,13,0.0 +22799,7,30,36,0.0 +22799,22,21,9,0.0 +22799,23,9,6,0.0 +22799,60,34,15,0.0 +22799,38,263.5,38,0.0 +22799,54,7.45,32,0.0 +22799,76,18,23,0.0 +22799,33,2.5,31,0.0 +22799,1,18,12,0.0 +22799,8,40,49,0.0 +22799,28,45.6,15,0.0 +22799,9,97,23,0.0 +22799,17,39,34,0.0 +22799,25,14,50,0.0 +22799,3,10,35,0.0 +22799,58,13.25,4,0.0 +22799,20,81,5,0.0 +22799,5,21.35,11,0.0 +22799,16,17.45,19,0.0 +22799,29,123.79,32,0.0 +22799,56,38,41,0.0 +22799,41,9.65,32,0.0 +22799,4,22,14,0.0 +22799,13,6,16,0.0 +22799,26,31.23,3,0.0 +22799,63,43.9,20,0.0 +22799,34,14,14,0.0 +22799,32,32,22,0.0 +22799,68,12.5,14,0.0 +22799,19,9.2,23,0.0 +22799,21,10,4,0.0 +22799,37,26,2,0.0 +22800,3,10,32,0.0 +22800,64,33.25,18,0.0 +22800,19,9.2,45,0.0 +22800,74,10,21,0.0 +22800,5,21.35,16,0.0 +22800,23,9,39,0.0 +22800,18,62.5,32,0.0 +22800,15,15.5,48,0.0 +22800,33,2.5,10,0.0 +22800,72,34.8,15,0.0 +22800,66,17,16,0.0 +22800,4,22,23,0.0 +22800,56,38,33,0.0 +22800,45,9.5,11,0.0 +22800,8,40,35,0.0 +22800,36,19,22,0.0 +22800,21,10,26,0.0 +22800,57,19.5,22,0.0 +22800,25,14,26,0.0 +22800,68,12.5,5,0.0 +22800,48,12.75,14,0.0 +22800,76,18,23,0.0 +22800,20,81,23,0.0 +22800,9,97,9,0.0 +22800,12,38,31,0.0 +22800,71,21.5,30,0.0 +22800,37,26,13,0.0 +22800,43,46,35,0.0 +22800,13,6,6,0.0 +22800,41,9.65,24,0.0 +22800,26,31.23,35,0.0 +22800,39,18,7,0.0 +22800,51,53,21,0.0 +22800,30,25.89,10,0.0 +22800,1,18,31,0.0 +22800,10,31,29,0.0 +22800,38,263.5,34,0.0 +22800,16,17.45,14,0.0 +22800,28,45.6,23,0.0 +22800,42,14,11,0.0 +22800,2,19,2,0.0 +22800,46,12,15,0.0 +22800,60,34,37,0.0 +22800,59,55,36,0.0 +22800,52,7,46,0.0 +22800,63,43.9,36,0.0 +22800,27,43.9,35,0.0 +22800,49,20,13,0.0 +22800,35,18,7,0.0 +22800,14,23.25,25,0.0 +22800,73,15,49,0.0 +22800,77,13,3,0.0 +22800,34,14,30,0.0 +22800,53,32.8,10,0.0 +22800,62,49.3,14,0.0 +22801,39,18,13,0.0 +22801,70,15,30,0.0 +22802,6,25,3,0.0 +22802,65,21.05,7,0.0 +22802,70,15,6,0.0 +22802,63,43.9,20,0.0 +22802,21,10,7,0.0 +22802,18,62.5,2,0.0 +22802,60,34,50,0.0 +22802,62,49.3,19,0.0 +22802,35,18,6,0.0 +22802,10,31,13,0.0 +22802,3,10,43,0.0 +22802,26,31.23,50,0.0 +22802,51,53,16,0.0 +22802,67,14,42,0.0 +22802,24,4.5,45,0.0 +22802,61,28.5,42,0.0 +22802,64,33.25,45,0.0 +22802,66,17,41,0.0 +22802,33,2.5,34,0.0 +22802,19,9.2,23,0.0 +22802,52,7,22,0.0 +22802,40,18.4,30,0.0 +22802,77,13,30,0.0 +22802,76,18,19,0.0 +22802,57,19.5,19,0.0 +22802,75,7.75,2,0.0 +22802,16,17.45,6,0.0 +22802,12,38,22,0.0 +22802,2,19,24,0.0 +22802,7,30,40,0.0 +22802,17,39,38,0.0 +22802,41,9.65,26,0.0 +22802,49,20,20,0.0 +22802,1,18,20,0.0 +22802,59,55,24,0.0 +22802,20,81,43,0.0 +22802,37,26,24,0.0 +22803,34,14,46,0.0 +22803,7,30,27,0.0 +22803,23,9,20,0.0 +22803,6,25,28,0.0 +22803,75,7.75,26,0.0 +22803,62,49.3,29,0.0 +22803,53,32.8,44,0.0 +22803,25,14,38,0.0 +22803,52,7,35,0.0 +22803,44,19.45,1,0.0 +22803,14,23.25,44,0.0 +22803,37,26,21,0.0 +22803,61,28.5,20,0.0 +22803,11,21,49,0.0 +22803,39,18,29,0.0 +22803,28,45.6,47,0.0 +22803,57,19.5,34,0.0 +22803,9,97,12,0.0 +22803,70,15,1,0.0 +22803,50,16.25,43,0.0 +22803,10,31,43,0.0 +22803,22,21,8,0.0 +22803,8,40,31,0.0 +22803,3,10,26,0.0 +22803,74,10,39,0.0 +22803,42,14,17,0.0 +22803,67,14,18,0.0 +22803,47,9.5,7,0.0 +22803,40,18.4,21,0.0 +22803,15,15.5,5,0.0 +22803,71,21.5,36,0.0 +22803,54,7.45,1,0.0 +22803,16,17.45,23,0.0 +22803,58,13.25,20,0.0 +22803,65,21.05,3,0.0 +22803,77,13,10,0.0 +22803,27,43.9,12,0.0 +22803,35,18,28,0.0 +22803,30,25.89,23,0.0 +22803,2,19,33,0.0 +22803,63,43.9,38,0.0 +22803,5,21.35,2,0.0 +22803,69,36,22,0.0 +22803,21,10,11,0.0 +22803,33,2.5,31,0.0 +22803,26,31.23,14,0.0 +22803,13,6,47,0.0 +22803,38,263.5,16,0.0 +22803,31,12.5,17,0.0 +22803,12,38,24,0.0 +22803,66,17,6,0.0 +22803,55,24,43,0.0 +22803,68,12.5,19,0.0 +22803,4,22,24,0.0 +22803,46,12,40,0.0 +22803,48,12.75,2,0.0 +22804,18,62.5,19,0.0 +22804,51,53,35,0.0 +22804,55,24,5,0.0 +22804,30,25.89,1,0.0 +22804,9,97,7,0.0 +22804,47,9.5,14,0.0 +22804,41,9.65,12,0.0 +22804,25,14,22,0.0 +22804,34,14,36,0.0 +22804,15,15.5,16,0.0 +22804,31,12.5,42,0.0 +22804,27,43.9,50,0.0 +22804,13,6,15,0.0 +22804,14,23.25,28,0.0 +22804,48,12.75,36,0.0 +22804,69,36,35,0.0 +22804,70,15,14,0.0 +22804,3,10,39,0.0 +22804,37,26,1,0.0 +22804,29,123.79,35,0.0 +22804,50,16.25,44,0.0 +22804,7,30,37,0.0 +22804,46,12,22,0.0 +22804,77,13,30,0.0 +22804,39,18,1,0.0 +22804,74,10,47,0.0 +22804,76,18,38,0.0 +22804,4,22,49,0.0 +22804,24,4.5,19,0.0 +22804,6,25,18,0.0 +22804,26,31.23,4,0.0 +22804,40,18.4,35,0.0 +22804,36,19,30,0.0 +22804,65,21.05,7,0.0 +22804,67,14,17,0.0 +22804,63,43.9,11,0.0 +22804,43,46,40,0.0 +22804,32,32,16,0.0 +22804,42,14,43,0.0 +22804,19,9.2,18,0.0 +22804,66,17,8,0.0 +22804,10,31,34,0.0 +22804,60,34,16,0.0 +22804,73,15,24,0.0 +22804,49,20,26,0.0 +22804,53,32.8,46,0.0 +22804,59,55,22,0.0 +22805,64,33.25,29,0.0 +22805,75,7.75,27,0.0 +22805,34,14,8,0.0 +22805,9,97,22,0.0 +22805,23,9,25,0.0 +22805,7,30,25,0.0 +22805,72,34.8,31,0.0 +22805,27,43.9,44,0.0 +22805,57,19.5,18,0.0 +22805,33,2.5,12,0.0 +22805,2,19,27,0.0 +22805,24,4.5,35,0.0 +22805,35,18,33,0.0 +22805,4,22,18,0.0 +22805,20,81,27,0.0 +22805,43,46,6,0.0 +22805,53,32.8,49,0.0 +22805,55,24,10,0.0 +22805,63,43.9,36,0.0 +22805,39,18,25,0.0 +22805,44,19.45,5,0.0 +22805,19,9.2,43,0.0 +22805,77,13,26,0.0 +22805,6,25,9,0.0 +22805,71,21.5,3,0.0 +22805,11,21,38,0.0 +22805,40,18.4,42,0.0 +22805,69,36,48,0.0 +22805,54,7.45,37,0.0 +22805,31,12.5,49,0.0 +22805,48,12.75,21,0.0 +22805,67,14,18,0.0 +22805,15,15.5,15,0.0 +22805,58,13.25,43,0.0 +22805,22,21,19,0.0 +22805,74,10,47,0.0 +22805,29,123.79,18,0.0 +22805,17,39,4,0.0 +22805,46,12,50,0.0 +22805,65,21.05,30,0.0 +22805,51,53,6,0.0 +22805,5,21.35,46,0.0 +22805,56,38,3,0.0 +22805,13,6,47,0.0 +22805,30,25.89,36,0.0 +22805,37,26,17,0.0 +22805,32,32,29,0.0 +22805,66,17,28,0.0 +22805,36,19,1,0.0 +22805,45,9.5,2,0.0 +22805,3,10,22,0.0 +22805,60,34,39,0.0 +22805,8,40,13,0.0 +22805,62,49.3,12,0.0 +22805,76,18,22,0.0 +22805,70,15,26,0.0 +22805,16,17.45,44,0.0 +22805,26,31.23,27,0.0 +22805,38,263.5,24,0.0 +22805,41,9.65,7,0.0 +22805,49,20,50,0.0 +22805,73,15,37,0.0 +22805,28,45.6,43,0.0 +22805,14,23.25,35,0.0 +22805,59,55,49,0.0 +22805,1,18,50,0.0 +22805,10,31,40,0.0 +22805,25,14,36,0.0 +22805,50,16.25,4,0.0 +22805,21,10,10,0.0 +22805,42,14,22,0.0 +22805,52,7,21,0.0 +22805,68,12.5,12,0.0 +22805,61,28.5,13,0.0 +22805,12,38,27,0.0 +22805,18,62.5,41,0.0 +22806,58,13.25,32,0.0 +22806,33,2.5,33,0.0 +22806,1,18,17,0.0 +22806,20,81,11,0.0 +22806,4,22,11,0.0 +22806,60,34,34,0.0 +22806,49,20,31,0.0 +22806,69,36,35,0.0 +22806,54,7.45,20,0.0 +22806,40,18.4,24,0.0 +22806,48,12.75,35,0.0 +22806,37,26,45,0.0 +22806,66,17,30,0.0 +22806,15,15.5,9,0.0 +22806,57,19.5,48,0.0 +22806,18,62.5,38,0.0 +22806,45,9.5,1,0.0 +22806,2,19,23,0.0 +22806,64,33.25,12,0.0 +22806,67,14,29,0.0 +22806,73,15,11,0.0 +22806,76,18,16,0.0 +22806,5,21.35,28,0.0 +22806,46,12,9,0.0 +22806,71,21.5,13,0.0 +22806,39,18,43,0.0 +22806,17,39,43,0.0 +22806,9,97,12,0.0 +22806,62,49.3,23,0.0 +22806,56,38,16,0.0 +22806,14,23.25,9,0.0 +22806,35,18,22,0.0 +22806,74,10,45,0.0 +22806,52,7,38,0.0 +22806,12,38,23,0.0 +22806,38,263.5,3,0.0 +22806,11,21,50,0.0 +22806,72,34.8,18,0.0 +22806,75,7.75,16,0.0 +22806,55,24,21,0.0 +22806,21,10,41,0.0 +22806,27,43.9,48,0.0 +22806,28,45.6,33,0.0 +22806,59,55,30,0.0 +22806,16,17.45,26,0.0 +22806,43,46,34,0.0 +22806,47,9.5,45,0.0 +22806,70,15,37,0.0 +22806,61,28.5,11,0.0 +22807,3,10,46,0.0 +22807,68,12.5,49,0.0 +22807,38,263.5,21,0.0 +22807,37,26,4,0.0 +22807,19,9.2,21,0.0 +22807,27,43.9,41,0.0 +22807,16,17.45,44,0.0 +22807,28,45.6,19,0.0 +22807,35,18,27,0.0 +22807,9,97,14,0.0 +22807,14,23.25,34,0.0 +22807,49,20,7,0.0 +22808,12,38,12,0.0 +22808,10,31,17,0.0 +22808,28,45.6,25,0.0 +22808,54,7.45,34,0.0 +22808,13,6,8,0.0 +22808,37,26,49,0.0 +22808,51,53,27,0.0 +22808,63,43.9,37,0.0 +22808,23,9,15,0.0 +22808,2,19,30,0.0 +22808,64,33.25,25,0.0 +22808,16,17.45,34,0.0 +22808,36,19,20,0.0 +22808,17,39,9,0.0 +22808,19,9.2,26,0.0 +22808,43,46,6,0.0 +22808,68,12.5,1,0.0 +22809,18,62.5,36,0.0 +22809,27,43.9,47,0.0 +22809,76,18,33,0.0 +22809,52,7,32,0.0 +22809,67,14,46,0.0 +22809,63,43.9,39,0.0 +22809,73,15,14,0.0 +22809,57,19.5,37,0.0 +22809,47,9.5,37,0.0 +22809,44,19.45,47,0.0 +22809,16,17.45,32,0.0 +22809,8,40,8,0.0 +22809,77,13,50,0.0 +22809,49,20,36,0.0 +22809,33,2.5,36,0.0 +22809,58,13.25,19,0.0 +22809,41,9.65,18,0.0 +22809,42,14,3,0.0 +22809,64,33.25,44,0.0 +22809,12,38,32,0.0 +22809,1,18,15,0.0 +22809,60,34,44,0.0 +22809,43,46,41,0.0 +22809,20,81,37,0.0 +22809,15,15.5,49,0.0 +22809,6,25,15,0.0 +22809,25,14,2,0.0 +22809,56,38,45,0.0 +22809,45,9.5,32,0.0 +22809,48,12.75,19,0.0 +22809,46,12,31,0.0 +22809,38,263.5,28,0.0 +22809,68,12.5,9,0.0 +22809,14,23.25,5,0.0 +22809,35,18,4,0.0 +22809,4,22,9,0.0 +22809,29,123.79,7,0.0 +22809,32,32,37,0.0 +22809,50,16.25,37,0.0 +22809,21,10,12,0.0 +22809,55,24,16,0.0 +22809,19,9.2,4,0.0 +22809,2,19,39,0.0 +22809,30,25.89,26,0.0 +22809,62,49.3,34,0.0 +22809,37,26,28,0.0 +22809,71,21.5,33,0.0 +22809,59,55,39,0.0 +22809,75,7.75,31,0.0 +22809,40,18.4,23,0.0 +22809,31,12.5,46,0.0 +22809,10,31,16,0.0 +22809,7,30,44,0.0 +22809,3,10,3,0.0 +22810,23,9,42,0.0 +22810,45,9.5,26,0.0 +22810,59,55,38,0.0 +22810,8,40,2,0.0 +22810,29,123.79,26,0.0 +22810,25,14,32,0.0 +22810,67,14,21,0.0 +22810,54,7.45,12,0.0 +22810,47,9.5,47,0.0 +22810,33,2.5,46,0.0 +22810,39,18,23,0.0 +22810,48,12.75,26,0.0 +22810,24,4.5,1,0.0 +22810,13,6,8,0.0 +22810,27,43.9,42,0.0 +22810,56,38,31,0.0 +22810,3,10,35,0.0 +22810,68,12.5,42,0.0 +22810,73,15,14,0.0 +22810,14,23.25,25,0.0 +22810,46,12,31,0.0 +22810,9,97,25,0.0 +22810,31,12.5,26,0.0 +22810,55,24,48,0.0 +22810,15,15.5,43,0.0 +22810,66,17,36,0.0 +22810,26,31.23,19,0.0 +22810,74,10,45,0.0 +22810,77,13,17,0.0 +22810,30,25.89,46,0.0 +22810,4,22,28,0.0 +22810,52,7,18,0.0 +22810,20,81,42,0.0 +22810,42,14,48,0.0 +22810,34,14,4,0.0 +22810,19,9.2,16,0.0 +22810,18,62.5,3,0.0 +22810,61,28.5,49,0.0 +22810,6,25,7,0.0 +22810,2,19,1,0.0 +22810,44,19.45,3,0.0 +22810,1,18,20,0.0 +22810,51,53,46,0.0 +22810,38,263.5,45,0.0 +22810,12,38,19,0.0 +22810,37,26,45,0.0 +22810,5,21.35,44,0.0 +22810,76,18,19,0.0 +22810,71,21.5,41,0.0 +22810,49,20,44,0.0 +22810,11,21,6,0.0 +22810,70,15,24,0.0 +22810,57,19.5,13,0.0 +22810,69,36,13,0.0 +22810,62,49.3,17,0.0 +22810,22,21,11,0.0 +22810,40,18.4,13,0.0 +22810,36,19,50,0.0 +22810,7,30,48,0.0 +22810,28,45.6,50,0.0 +22810,16,17.45,3,0.0 +22811,59,55,3,0.0 +22811,49,20,26,0.0 +22811,41,9.65,28,0.0 +22811,71,21.5,29,0.0 +22811,51,53,18,0.0 +22811,47,9.5,32,0.0 +22811,3,10,19,0.0 +22811,77,13,16,0.0 +22811,68,12.5,33,0.0 +22811,19,9.2,47,0.0 +22811,64,33.25,15,0.0 +22811,44,19.45,27,0.0 +22811,24,4.5,22,0.0 +22811,10,31,24,0.0 +22811,52,7,43,0.0 +22811,34,14,47,0.0 +22811,58,13.25,6,0.0 +22811,62,49.3,34,0.0 +22811,15,15.5,46,0.0 +22811,11,21,43,0.0 +22811,16,17.45,37,0.0 +22811,5,21.35,2,0.0 +22811,32,32,3,0.0 +22811,57,19.5,18,0.0 +22811,4,22,3,0.0 +22811,17,39,33,0.0 +22811,45,9.5,26,0.0 +22811,43,46,31,0.0 +22811,22,21,25,0.0 +22811,46,12,26,0.0 +22811,67,14,3,0.0 +22811,33,2.5,10,0.0 +22811,53,32.8,3,0.0 +22811,31,12.5,34,0.0 +22811,56,38,31,0.0 +22811,30,25.89,41,0.0 +22811,39,18,38,0.0 +22811,76,18,15,0.0 +22811,50,16.25,23,0.0 +22811,2,19,38,0.0 +22811,14,23.25,7,0.0 +22811,65,21.05,31,0.0 +22811,48,12.75,42,0.0 +22811,6,25,16,0.0 +22811,9,97,33,0.0 +22811,13,6,5,0.0 +22811,29,123.79,40,0.0 +22811,66,17,32,0.0 +22811,35,18,22,0.0 +22811,18,62.5,28,0.0 +22811,37,26,3,0.0 +22811,54,7.45,26,0.0 +22811,63,43.9,38,0.0 +22812,9,97,33,0.0 +22812,56,38,41,0.0 +22812,48,12.75,18,0.0 +22812,58,13.25,8,0.0 +22812,30,25.89,50,0.0 +22812,49,20,40,0.0 +22812,10,31,49,0.0 +22812,27,43.9,49,0.0 +22812,62,49.3,50,0.0 +22812,59,55,38,0.0 +22812,35,18,35,0.0 +22812,70,15,25,0.0 +22812,4,22,8,0.0 +22812,15,15.5,40,0.0 +22812,75,7.75,6,0.0 +22812,14,23.25,39,0.0 +22812,74,10,4,0.0 +22812,19,9.2,35,0.0 +22812,37,26,29,0.0 +22812,46,12,49,0.0 +22812,28,45.6,38,0.0 +22812,57,19.5,44,0.0 +22812,66,17,25,0.0 +22812,1,18,20,0.0 +22812,61,28.5,44,0.0 +22812,65,21.05,2,0.0 +22812,18,62.5,29,0.0 +22812,60,34,27,0.0 +22812,25,14,34,0.0 +22812,47,9.5,10,0.0 +22812,64,33.25,27,0.0 +22812,45,9.5,20,0.0 +22812,51,53,32,0.0 +22812,72,34.8,43,0.0 +22812,55,24,6,0.0 +22812,53,32.8,41,0.0 +22812,29,123.79,3,0.0 +22812,43,46,9,0.0 +22812,50,16.25,25,0.0 +22812,39,18,7,0.0 +22812,17,39,42,0.0 +22812,42,14,49,0.0 +22812,69,36,47,0.0 +22812,38,263.5,23,0.0 +22812,26,31.23,2,0.0 +22812,73,15,42,0.0 +22813,68,12.5,21,0.0 +22813,24,4.5,36,0.0 +22813,74,10,44,0.0 +22813,28,45.6,11,0.0 +22813,38,263.5,34,0.0 +22813,54,7.45,48,0.0 +22813,66,17,26,0.0 +22813,18,62.5,39,0.0 +22813,67,14,47,0.0 +22813,36,19,50,0.0 +22813,31,12.5,44,0.0 +22813,11,21,27,0.0 +22813,40,18.4,13,0.0 +22813,61,28.5,25,0.0 +22813,30,25.89,42,0.0 +22813,62,49.3,26,0.0 +22813,27,43.9,32,0.0 +22813,57,19.5,15,0.0 +22813,41,9.65,45,0.0 +22813,15,15.5,26,0.0 +22813,2,19,34,0.0 +22813,70,15,11,0.0 +22813,69,36,36,0.0 +22813,60,34,27,0.0 +22813,75,7.75,37,0.0 +22813,6,25,15,0.0 +22813,55,24,15,0.0 +22813,52,7,7,0.0 +22813,1,18,10,0.0 +22813,44,19.45,22,0.0 +22813,58,13.25,11,0.0 +22813,8,40,26,0.0 +22813,26,31.23,36,0.0 +22813,56,38,39,0.0 +22813,7,30,49,0.0 +22813,13,6,48,0.0 +22813,3,10,4,0.0 +22813,45,9.5,15,0.0 +22813,77,13,39,0.0 +22813,53,32.8,50,0.0 +22813,76,18,37,0.0 +22813,73,15,14,0.0 +22813,34,14,20,0.0 +22813,72,34.8,38,0.0 +22813,64,33.25,11,0.0 +22813,14,23.25,48,0.0 +22813,25,14,8,0.0 +22813,51,53,50,0.0 +22813,29,123.79,39,0.0 +22813,21,10,30,0.0 +22813,50,16.25,43,0.0 +22813,35,18,5,0.0 +22813,39,18,42,0.0 +22813,59,55,1,0.0 +22813,43,46,6,0.0 +22813,22,21,9,0.0 +22813,5,21.35,22,0.0 +22813,32,32,6,0.0 +22813,4,22,33,0.0 +22813,48,12.75,13,0.0 +22813,46,12,3,0.0 +22813,16,17.45,37,0.0 +22813,65,21.05,19,0.0 +22813,9,97,47,0.0 +22813,42,14,15,0.0 +22814,73,15,14,0.0 +22814,14,23.25,2,0.0 +22814,5,21.35,18,0.0 +22814,66,17,18,0.0 +22814,30,25.89,46,0.0 +22814,18,62.5,28,0.0 +22814,39,18,25,0.0 +22814,17,39,17,0.0 +22814,65,21.05,34,0.0 +22814,71,21.5,5,0.0 +22814,43,46,32,0.0 +22814,52,7,46,0.0 +22814,67,14,8,0.0 +22814,2,19,18,0.0 +22814,16,17.45,17,0.0 +22814,31,12.5,35,0.0 +22814,20,81,13,0.0 +22814,36,19,21,0.0 +22814,40,18.4,29,0.0 +22814,76,18,15,0.0 +22814,24,4.5,3,0.0 +22814,33,2.5,2,0.0 +22814,68,12.5,4,0.0 +22814,9,97,27,0.0 +22814,37,26,5,0.0 +22814,8,40,32,0.0 +22814,77,13,20,0.0 +22814,74,10,46,0.0 +22814,15,15.5,19,0.0 +22814,46,12,4,0.0 +22814,38,263.5,16,0.0 +22814,22,21,38,0.0 +22814,13,6,11,0.0 +22814,26,31.23,7,0.0 +22814,70,15,22,0.0 +22814,10,31,19,0.0 +22814,69,36,33,0.0 +22814,32,32,13,0.0 +22814,25,14,49,0.0 +22814,29,123.79,40,0.0 +22814,21,10,13,0.0 +22814,54,7.45,34,0.0 +22814,51,53,27,0.0 +22814,19,9.2,14,0.0 +22814,34,14,50,0.0 +22814,59,55,17,0.0 +22814,45,9.5,7,0.0 +22814,28,45.6,21,0.0 +22814,42,14,28,0.0 +22814,57,19.5,27,0.0 +22814,50,16.25,7,0.0 +22814,12,38,32,0.0 +22814,60,34,10,0.0 +22814,3,10,9,0.0 +22814,75,7.75,27,0.0 +22814,4,22,20,0.0 +22814,44,19.45,44,0.0 +22814,41,9.65,41,0.0 +22814,63,43.9,23,0.0 +22814,47,9.5,44,0.0 +22814,56,38,4,0.0 +22814,7,30,28,0.0 +22814,35,18,10,0.0 +22814,61,28.5,37,0.0 +22814,48,12.75,21,0.0 +22814,1,18,50,0.0 +22814,49,20,36,0.0 +22814,58,13.25,47,0.0 +22814,72,34.8,48,0.0 +22814,27,43.9,4,0.0 +22814,64,33.25,16,0.0 +22814,6,25,45,0.0 +22814,55,24,50,0.0 +22814,53,32.8,6,0.0 +22815,19,9.2,22,0.0 +22815,43,46,12,0.0 +22815,58,13.25,19,0.0 +22815,20,81,2,0.0 +22815,33,2.5,11,0.0 +22815,3,10,43,0.0 +22815,16,17.45,20,0.0 +22815,51,53,16,0.0 +22815,25,14,49,0.0 +22815,57,19.5,25,0.0 +22815,60,34,36,0.0 +22816,21,10,16,0.0 +22816,8,40,40,0.0 +22816,56,38,36,0.0 +22816,65,21.05,42,0.0 +22816,6,25,32,0.0 +22816,71,21.5,26,0.0 +22816,37,26,45,0.0 +22816,62,49.3,38,0.0 +22816,9,97,7,0.0 +22816,76,18,21,0.0 +22816,34,14,9,0.0 +22816,4,22,33,0.0 +22816,52,7,28,0.0 +22816,44,19.45,22,0.0 +22816,38,263.5,43,0.0 +22816,15,15.5,13,0.0 +22816,53,32.8,13,0.0 +22816,19,9.2,39,0.0 +22816,55,24,42,0.0 +22816,74,10,38,0.0 +22816,58,13.25,4,0.0 +22816,61,28.5,7,0.0 +22817,64,33.25,46,0.0 +22817,37,26,9,0.0 +22817,53,32.8,10,0.0 +22817,25,14,48,0.0 +22817,38,263.5,24,0.0 +22817,13,6,47,0.0 +22817,11,21,45,0.0 +22817,73,15,14,0.0 +22817,52,7,41,0.0 +22817,16,17.45,22,0.0 +22817,40,18.4,47,0.0 +22817,48,12.75,43,0.0 +22817,71,21.5,25,0.0 +22817,59,55,12,0.0 +22817,75,7.75,47,0.0 +22817,21,10,29,0.0 +22817,30,25.89,21,0.0 +22817,17,39,33,0.0 +22817,50,16.25,2,0.0 +22817,3,10,46,0.0 +22817,7,30,44,0.0 +22817,29,123.79,35,0.0 +22817,4,22,32,0.0 +22817,1,18,37,0.0 +22817,31,12.5,8,0.0 +22817,23,9,31,0.0 +22817,12,38,31,0.0 +22817,14,23.25,17,0.0 +22817,57,19.5,46,0.0 +22817,67,14,4,0.0 +22817,8,40,41,0.0 +22817,55,24,37,0.0 +22817,63,43.9,45,0.0 +22817,34,14,20,0.0 +22817,26,31.23,40,0.0 +22817,51,53,3,0.0 +22817,18,62.5,5,0.0 +22817,77,13,10,0.0 +22817,47,9.5,47,0.0 +22817,39,18,9,0.0 +22817,46,12,19,0.0 +22817,72,34.8,33,0.0 +22817,49,20,49,0.0 +22817,36,19,14,0.0 +22817,27,43.9,38,0.0 +22817,62,49.3,31,0.0 +22817,24,4.5,46,0.0 +22817,22,21,12,0.0 +22817,65,21.05,4,0.0 +22817,2,19,50,0.0 +22817,74,10,30,0.0 +22817,68,12.5,34,0.0 +22817,70,15,38,0.0 +22817,6,25,32,0.0 +22817,20,81,18,0.0 +22817,19,9.2,46,0.0 +22817,56,38,42,0.0 +22817,58,13.25,47,0.0 +22817,28,45.6,2,0.0 +22818,6,25,49,0.0 +22818,12,38,7,0.0 +22818,75,7.75,10,0.0 +22818,37,26,42,0.0 +22818,70,15,8,0.0 +22818,1,18,49,0.0 +22818,60,34,45,0.0 +22818,24,4.5,23,0.0 +22818,52,7,7,0.0 +22818,53,32.8,14,0.0 +22818,44,19.45,16,0.0 +22818,65,21.05,43,0.0 +22818,54,7.45,50,0.0 +22818,56,38,50,0.0 +22818,30,25.89,26,0.0 +22818,73,15,23,0.0 +22818,48,12.75,12,0.0 +22818,29,123.79,30,0.0 +22818,19,9.2,32,0.0 +22818,20,81,6,0.0 +22818,35,18,41,0.0 +22818,25,14,4,0.0 +22819,53,32.8,8,0.0 +22819,8,40,31,0.0 +22819,70,15,29,0.0 +22819,45,9.5,47,0.0 +22819,20,81,11,0.0 +22819,31,12.5,42,0.0 +22819,58,13.25,49,0.0 +22819,41,9.65,10,0.0 +22819,6,25,11,0.0 +22819,62,49.3,12,0.0 +22819,18,62.5,38,0.0 +22819,3,10,39,0.0 +22819,15,15.5,28,0.0 +22819,5,21.35,22,0.0 +22819,19,9.2,44,0.0 +22819,2,19,26,0.0 +22819,55,24,26,0.0 +22819,75,7.75,8,0.0 +22819,46,12,33,0.0 +22819,34,14,5,0.0 +22819,54,7.45,19,0.0 +22819,63,43.9,24,0.0 +22820,38,263.5,31,0.0 +22820,50,16.25,45,0.0 +22820,6,25,11,0.0 +22820,42,14,17,0.0 +22820,13,6,10,0.0 +22820,7,30,17,0.0 +22820,68,12.5,26,0.0 +22820,63,43.9,44,0.0 +22820,5,21.35,21,0.0 +22820,72,34.8,12,0.0 +22820,12,38,19,0.0 +22820,27,43.9,18,0.0 +22820,69,36,28,0.0 +22820,64,33.25,41,0.0 +22820,71,21.5,45,0.0 +22820,1,18,40,0.0 +22820,26,31.23,13,0.0 +22820,23,9,17,0.0 +22820,19,9.2,34,0.0 +22820,32,32,8,0.0 +22820,46,12,27,0.0 +22820,53,32.8,2,0.0 +22820,56,38,32,0.0 +22820,39,18,8,0.0 +22820,25,14,4,0.0 +22820,41,9.65,11,0.0 +22820,37,26,26,0.0 +22820,35,18,6,0.0 +22820,40,18.4,10,0.0 +22820,15,15.5,11,0.0 +22820,30,25.89,14,0.0 +22820,31,12.5,22,0.0 +22820,2,19,15,0.0 +22820,9,97,47,0.0 +22820,44,19.45,5,0.0 +22820,74,10,17,0.0 +22820,55,24,14,0.0 +22820,47,9.5,14,0.0 +22820,49,20,40,0.0 +22820,17,39,7,0.0 +22820,73,15,44,0.0 +22820,77,13,19,0.0 +22820,10,31,43,0.0 +22820,22,21,8,0.0 +22820,14,23.25,1,0.0 +22820,36,19,6,0.0 +22820,16,17.45,33,0.0 +22820,52,7,9,0.0 +22820,45,9.5,12,0.0 +22820,3,10,10,0.0 +22820,43,46,10,0.0 +22820,57,19.5,50,0.0 +22820,75,7.75,7,0.0 +22820,24,4.5,48,0.0 +22821,32,32,48,0.0 +22821,53,32.8,35,0.0 +22821,21,10,5,0.0 +22821,55,24,38,0.0 +22821,33,2.5,11,0.0 +22821,15,15.5,13,0.0 +22821,40,18.4,42,0.0 +22821,20,81,25,0.0 +22821,57,19.5,7,0.0 +22821,31,12.5,2,0.0 +22821,8,40,10,0.0 +22821,16,17.45,45,0.0 +22821,61,28.5,41,0.0 +22821,72,34.8,28,0.0 +22821,35,18,33,0.0 +22821,29,123.79,22,0.0 +22821,69,36,37,0.0 +22821,28,45.6,47,0.0 +22821,10,31,29,0.0 +22821,74,10,50,0.0 +22821,5,21.35,3,0.0 +22821,27,43.9,47,0.0 +22821,60,34,48,0.0 +22821,66,17,1,0.0 +22821,47,9.5,39,0.0 +22821,71,21.5,13,0.0 +22821,36,19,50,0.0 +22821,14,23.25,26,0.0 +22821,26,31.23,20,0.0 +22821,38,263.5,10,0.0 +22821,18,62.5,16,0.0 +22821,56,38,22,0.0 +22821,63,43.9,9,0.0 +22821,41,9.65,31,0.0 +22821,50,16.25,2,0.0 +22821,62,49.3,4,0.0 +22821,65,21.05,44,0.0 +22821,1,18,6,0.0 +22821,2,19,13,0.0 +22821,76,18,6,0.0 +22821,51,53,17,0.0 +22821,49,20,45,0.0 +22821,25,14,21,0.0 +22821,9,97,34,0.0 +22821,58,13.25,35,0.0 +22821,46,12,19,0.0 +22821,23,9,12,0.0 +22821,73,15,14,0.0 +22821,39,18,48,0.0 +22821,12,38,31,0.0 +22821,19,9.2,23,0.0 +22821,75,7.75,33,0.0 +22821,48,12.75,28,0.0 +22821,52,7,37,0.0 +22821,17,39,44,0.0 +22821,22,21,47,0.0 +22821,34,14,44,0.0 +22821,70,15,5,0.0 +22821,45,9.5,44,0.0 +22821,42,14,20,0.0 +22821,4,22,26,0.0 +22821,54,7.45,30,0.0 +22821,59,55,18,0.0 +22821,30,25.89,44,0.0 +22821,7,30,34,0.0 +22821,6,25,15,0.0 +22821,68,12.5,35,0.0 +22821,43,46,31,0.0 +22821,77,13,10,0.0 +22822,47,9.5,7,0.0 +22822,27,43.9,49,0.0 +22822,65,21.05,3,0.0 +22822,26,31.23,33,0.0 +22822,49,20,47,0.0 +22822,76,18,9,0.0 +22822,25,14,35,0.0 +22822,52,7,35,0.0 +22822,59,55,50,0.0 +22822,61,28.5,27,0.0 +22822,9,97,41,0.0 +22822,53,32.8,10,0.0 +22822,72,34.8,3,0.0 +22822,66,17,9,0.0 +22822,69,36,43,0.0 +22822,23,9,50,0.0 +22822,18,62.5,31,0.0 +22822,5,21.35,12,0.0 +22822,55,24,20,0.0 +22822,45,9.5,21,0.0 +22822,58,13.25,14,0.0 +22822,54,7.45,48,0.0 +22822,33,2.5,4,0.0 +22822,34,14,33,0.0 +22822,1,18,34,0.0 +22822,39,18,48,0.0 +22822,67,14,47,0.0 +22822,46,12,11,0.0 +22822,13,6,42,0.0 +22822,19,9.2,41,0.0 +22822,4,22,5,0.0 +22822,71,21.5,19,0.0 +22822,16,17.45,38,0.0 +22822,6,25,21,0.0 +22822,63,43.9,42,0.0 +22822,10,31,43,0.0 +22822,62,49.3,16,0.0 +22822,75,7.75,47,0.0 +22822,14,23.25,30,0.0 +22822,21,10,22,0.0 +22822,38,263.5,15,0.0 +22822,35,18,48,0.0 +22822,40,18.4,9,0.0 +22822,37,26,10,0.0 +22822,12,38,43,0.0 +22822,24,4.5,29,0.0 +22822,77,13,8,0.0 +22822,29,123.79,2,0.0 +22822,36,19,40,0.0 +22822,20,81,21,0.0 +22822,3,10,5,0.0 +22822,50,16.25,28,0.0 +22822,32,32,35,0.0 +22822,15,15.5,24,0.0 +22822,56,38,30,0.0 +22822,22,21,39,0.0 +22822,48,12.75,1,0.0 +22822,7,30,45,0.0 +22823,28,45.6,24,0.0 +22823,29,123.79,27,0.0 +22823,15,15.5,16,0.0 +22823,59,55,41,0.0 +22823,39,18,4,0.0 +22823,58,13.25,21,0.0 +22823,70,15,42,0.0 +22823,22,21,13,0.0 +22823,52,7,20,0.0 +22823,49,20,31,0.0 +22823,72,34.8,13,0.0 +22823,66,17,31,0.0 +22823,13,6,25,0.0 +22823,16,17.45,15,0.0 +22823,67,14,45,0.0 +22823,62,49.3,14,0.0 +22823,36,19,17,0.0 +22823,19,9.2,10,0.0 +22823,12,38,41,0.0 +22823,48,12.75,29,0.0 +22823,55,24,14,0.0 +22823,23,9,36,0.0 +22824,33,2.5,46,0.0 +22824,26,31.23,29,0.0 +22824,8,40,31,0.0 +22824,13,6,30,0.0 +22824,38,263.5,29,0.0 +22824,74,10,11,0.0 +22824,49,20,28,0.0 +22824,55,24,30,0.0 +22824,31,12.5,11,0.0 +22824,64,33.25,9,0.0 +22824,27,43.9,23,0.0 +22824,57,19.5,12,0.0 +22824,42,14,50,0.0 +22824,5,21.35,44,0.0 +22824,67,14,22,0.0 +22824,34,14,1,0.0 +22824,4,22,11,0.0 +22824,50,16.25,15,0.0 +22824,73,15,15,0.0 +22824,9,97,38,0.0 +22824,30,25.89,17,0.0 +22824,59,55,49,0.0 +22824,36,19,36,0.0 +22824,40,18.4,16,0.0 +22825,19,9.2,28,0.0 +22825,76,18,7,0.0 +22825,42,14,26,0.0 +22825,31,12.5,25,0.0 +22825,6,25,28,0.0 +22825,21,10,22,0.0 +22825,33,2.5,41,0.0 +22825,44,19.45,12,0.0 +22825,68,12.5,27,0.0 +22825,26,31.23,35,0.0 +22825,13,6,19,0.0 +22825,32,32,13,0.0 +22826,4,22,22,0.0 +22826,74,10,21,0.0 +22826,10,31,6,0.0 +22826,8,40,39,0.0 +22826,5,21.35,18,0.0 +22826,39,18,18,0.0 +22826,71,21.5,19,0.0 +22826,7,30,13,0.0 +22826,47,9.5,13,0.0 +22826,43,46,31,0.0 +22826,31,12.5,41,0.0 +22826,12,38,6,0.0 +22826,72,34.8,32,0.0 +22826,54,7.45,14,0.0 +22826,37,26,31,0.0 +22826,40,18.4,50,0.0 +22826,21,10,17,0.0 +22826,27,43.9,35,0.0 +22826,11,21,23,0.0 +22826,59,55,20,0.0 +22826,53,32.8,18,0.0 +22826,56,38,25,0.0 +22826,33,2.5,43,0.0 +22826,14,23.25,37,0.0 +22826,73,15,1,0.0 +22827,15,15.5,23,0.0 +22827,2,19,24,0.0 +22827,57,19.5,1,0.0 +22827,20,81,25,0.0 +22827,73,15,20,0.0 +22827,13,6,25,0.0 +22827,62,49.3,25,0.0 +22827,74,10,22,0.0 +22827,9,97,28,0.0 +22827,3,10,32,0.0 +22827,8,40,42,0.0 +22827,72,34.8,46,0.0 +22827,33,2.5,14,0.0 +22827,1,18,3,0.0 +22827,63,43.9,9,0.0 +22827,35,18,21,0.0 +22827,16,17.45,24,0.0 +22827,6,25,14,0.0 +22827,30,25.89,43,0.0 +22827,60,34,23,0.0 +22827,46,12,8,0.0 +22827,7,30,29,0.0 +22827,17,39,25,0.0 +22827,48,12.75,12,0.0 +22827,31,12.5,4,0.0 +22827,32,32,37,0.0 +22827,25,14,48,0.0 +22827,23,9,50,0.0 +22827,51,53,50,0.0 +22827,27,43.9,43,0.0 +22827,42,14,19,0.0 +22827,70,15,9,0.0 +22827,18,62.5,11,0.0 +22827,55,24,40,0.0 +22827,54,7.45,36,0.0 +22827,71,21.5,33,0.0 +22827,59,55,8,0.0 +22827,11,21,23,0.0 +22827,75,7.75,14,0.0 +22827,44,19.45,49,0.0 +22827,10,31,41,0.0 +22827,52,7,43,0.0 +22827,67,14,44,0.0 +22827,50,16.25,28,0.0 +22827,12,38,19,0.0 +22827,69,36,21,0.0 +22827,14,23.25,35,0.0 +22827,49,20,33,0.0 +22827,41,9.65,19,0.0 +22827,19,9.2,34,0.0 +22827,37,26,39,0.0 +22827,39,18,19,0.0 +22827,40,18.4,21,0.0 +22827,26,31.23,44,0.0 +22827,21,10,25,0.0 +22827,28,45.6,42,0.0 +22827,45,9.5,27,0.0 +22827,76,18,19,0.0 +22827,77,13,46,0.0 +22827,68,12.5,22,0.0 +22827,24,4.5,32,0.0 +22827,38,263.5,35,0.0 +22828,33,2.5,42,0.0 +22828,71,21.5,7,0.0 +22828,61,28.5,9,0.0 +22828,4,22,30,0.0 +22828,51,53,9,0.0 +22828,74,10,24,0.0 +22828,52,7,41,0.0 +22828,57,19.5,33,0.0 +22828,66,17,10,0.0 +22828,46,12,21,0.0 +22828,26,31.23,23,0.0 +22828,39,18,24,0.0 +22828,62,49.3,33,0.0 +22828,23,9,6,0.0 +22828,28,45.6,34,0.0 +22828,13,6,15,0.0 +22828,32,32,31,0.0 +22829,35,18,26,0.0 +22829,47,9.5,5,0.0 +22829,11,21,30,0.0 +22829,40,18.4,4,0.0 +22829,61,28.5,13,0.0 +22829,4,22,31,0.0 +22829,67,14,47,0.0 +22829,17,39,34,0.0 +22829,50,16.25,9,0.0 +22829,46,12,49,0.0 +22829,25,14,26,0.0 +22829,39,18,10,0.0 +22829,19,9.2,13,0.0 +22829,44,19.45,44,0.0 +22829,30,25.89,40,0.0 +22829,76,18,21,0.0 +22829,56,38,23,0.0 +22829,60,34,48,0.0 +22829,72,34.8,5,0.0 +22829,55,24,30,0.0 +22829,22,21,5,0.0 +22829,10,31,32,0.0 +22829,62,49.3,28,0.0 +22829,9,97,6,0.0 +22829,14,23.25,14,0.0 +22829,34,14,30,0.0 +22829,51,53,14,0.0 +22829,63,43.9,7,0.0 +22829,68,12.5,28,0.0 +22829,77,13,8,0.0 +22829,70,15,7,0.0 +22829,49,20,20,0.0 +22829,65,21.05,13,0.0 +22829,43,46,38,0.0 +22829,28,45.6,14,0.0 +22829,37,26,11,0.0 +22829,27,43.9,9,0.0 +22829,18,62.5,44,0.0 +22829,12,38,48,0.0 +22829,54,7.45,13,0.0 +22829,58,13.25,37,0.0 +22830,51,53,16,0.0 +22830,49,20,22,0.0 +22830,58,13.25,40,0.0 +22830,31,12.5,35,0.0 +22830,21,10,7,0.0 +22830,69,36,48,0.0 +22830,11,21,43,0.0 +22830,76,18,36,0.0 +22830,41,9.65,45,0.0 +22830,17,39,35,0.0 +22830,32,32,32,0.0 +22830,29,123.79,29,0.0 +22830,35,18,18,0.0 +22830,40,18.4,11,0.0 +22830,15,15.5,6,0.0 +22830,33,2.5,22,0.0 +22830,54,7.45,26,0.0 +22830,56,38,37,0.0 +22830,62,49.3,20,0.0 +22830,4,22,21,0.0 +22830,59,55,43,0.0 +22830,13,6,33,0.0 +22830,66,17,27,0.0 +22830,53,32.8,11,0.0 +22830,44,19.45,50,0.0 +22830,18,62.5,17,0.0 +22830,42,14,18,0.0 +22830,48,12.75,36,0.0 +22830,2,19,23,0.0 +22831,41,9.65,45,0.0 +22831,53,32.8,36,0.0 +22831,73,15,42,0.0 +22831,71,21.5,18,0.0 +22831,33,2.5,2,0.0 +22831,20,81,9,0.0 +22831,47,9.5,26,0.0 +22831,6,25,11,0.0 +22831,23,9,40,0.0 +22831,56,38,34,0.0 +22831,45,9.5,26,0.0 +22831,8,40,35,0.0 +22831,59,55,14,0.0 +22831,26,31.23,21,0.0 +22831,51,53,13,0.0 +22831,68,12.5,18,0.0 +22831,1,18,40,0.0 +22831,27,43.9,36,0.0 +22831,24,4.5,5,0.0 +22831,65,21.05,43,0.0 +22831,57,19.5,25,0.0 +22831,72,34.8,8,0.0 +22831,63,43.9,33,0.0 +22831,76,18,19,0.0 +22831,32,32,41,0.0 +22831,30,25.89,26,0.0 +22831,37,26,48,0.0 +22831,61,28.5,43,0.0 +22831,67,14,21,0.0 +22831,52,7,24,0.0 +22831,42,14,23,0.0 +22831,7,30,32,0.0 +22831,70,15,17,0.0 +22831,75,7.75,32,0.0 +22831,9,97,8,0.0 +22831,49,20,49,0.0 +22831,50,16.25,45,0.0 +22831,66,17,34,0.0 +22831,44,19.45,1,0.0 +22831,39,18,33,0.0 +22831,3,10,41,0.0 +22831,40,18.4,50,0.0 +22831,19,9.2,21,0.0 +22831,17,39,6,0.0 +22831,14,23.25,9,0.0 +22831,10,31,37,0.0 +22831,74,10,19,0.0 +22831,11,21,43,0.0 +22831,62,49.3,45,0.0 +22831,55,24,22,0.0 +22831,77,13,39,0.0 +22831,16,17.45,32,0.0 +22831,15,15.5,1,0.0 +22831,4,22,49,0.0 +22831,69,36,16,0.0 +22831,58,13.25,7,0.0 +22831,54,7.45,26,0.0 +22831,43,46,15,0.0 +22831,36,19,14,0.0 +22831,60,34,15,0.0 +22831,48,12.75,50,0.0 +22832,40,18.4,24,0.0 +22832,35,18,8,0.0 +22832,66,17,15,0.0 +22832,64,33.25,42,0.0 +22832,19,9.2,20,0.0 +22832,26,31.23,50,0.0 +22832,25,14,20,0.0 +22832,71,21.5,28,0.0 +22832,77,13,41,0.0 +22832,55,24,8,0.0 +22832,29,123.79,17,0.0 +22832,8,40,29,0.0 +22832,57,19.5,29,0.0 +22832,30,25.89,42,0.0 +22832,1,18,20,0.0 +22832,42,14,20,0.0 +22832,73,15,27,0.0 +22832,28,45.6,20,0.0 +22832,7,30,44,0.0 +22832,41,9.65,43,0.0 +22832,11,21,7,0.0 +22832,58,13.25,27,0.0 +22832,5,21.35,22,0.0 +22832,44,19.45,49,0.0 +22832,2,19,12,0.0 +22832,49,20,12,0.0 +22832,18,62.5,25,0.0 +22832,68,12.5,35,0.0 +22832,51,53,10,0.0 +22832,39,18,3,0.0 +22832,46,12,50,0.0 +22832,36,19,47,0.0 +22832,17,39,34,0.0 +22832,15,15.5,3,0.0 +22832,34,14,9,0.0 +22832,3,10,22,0.0 +22832,74,10,41,0.0 +22832,4,22,33,0.0 +22832,70,15,20,0.0 +22832,21,10,36,0.0 +22832,72,34.8,29,0.0 +22832,12,38,13,0.0 +22832,45,9.5,42,0.0 +22832,32,32,8,0.0 +22832,43,46,35,0.0 +22832,14,23.25,16,0.0 +22832,59,55,22,0.0 +22832,50,16.25,11,0.0 +22832,20,81,45,0.0 +22832,63,43.9,9,0.0 +22832,48,12.75,46,0.0 +22832,61,28.5,30,0.0 +22832,33,2.5,44,0.0 +22833,53,32.8,25,0.0 +22833,17,39,3,0.0 +22833,29,123.79,21,0.0 +22833,35,18,47,0.0 +22833,59,55,1,0.0 +22833,4,22,30,0.0 +22833,38,263.5,19,0.0 +22833,67,14,47,0.0 +22833,36,19,16,0.0 +22833,54,7.45,15,0.0 +22833,15,15.5,12,0.0 +22833,13,6,16,0.0 +22833,75,7.75,42,0.0 +22833,65,21.05,18,0.0 +22834,56,38,20,0.0 +22834,7,30,46,0.0 +22834,58,13.25,39,0.0 +22834,76,18,47,0.0 +22834,59,55,17,0.0 +22834,8,40,18,0.0 +22834,61,28.5,11,0.0 +22834,41,9.65,47,0.0 +22834,39,18,24,0.0 +22834,74,10,14,0.0 +22834,20,81,33,0.0 +22834,42,14,44,0.0 +22834,64,33.25,25,0.0 +22834,6,25,21,0.0 +22834,67,14,25,0.0 +22834,55,24,23,0.0 +22834,48,12.75,41,0.0 +22834,1,18,3,0.0 +22834,46,12,50,0.0 +22834,70,15,20,0.0 +22834,77,13,19,0.0 +22834,31,12.5,37,0.0 +22834,14,23.25,2,0.0 +22834,52,7,47,0.0 +22834,11,21,25,0.0 +22834,68,12.5,1,0.0 +22834,72,34.8,31,0.0 +22834,43,46,14,0.0 +22834,26,31.23,32,0.0 +22834,19,9.2,4,0.0 +22834,2,19,12,0.0 +22834,38,263.5,34,0.0 +22834,73,15,27,0.0 +22834,51,53,4,0.0 +22834,5,21.35,23,0.0 +22834,53,32.8,45,0.0 +22834,60,34,44,0.0 +22834,35,18,7,0.0 +22834,32,32,15,0.0 +22834,49,20,17,0.0 +22834,47,9.5,23,0.0 +22834,9,97,4,0.0 +22834,21,10,47,0.0 +22834,40,18.4,4,0.0 +22834,66,17,8,0.0 +22834,57,19.5,40,0.0 +22834,25,14,8,0.0 +22834,71,21.5,42,0.0 +22834,17,39,3,0.0 +22834,36,19,10,0.0 +22834,69,36,46,0.0 +22834,33,2.5,26,0.0 +22834,34,14,38,0.0 +22834,13,6,9,0.0 +22834,63,43.9,11,0.0 +22834,15,15.5,38,0.0 +22834,54,7.45,39,0.0 +22834,50,16.25,25,0.0 +22834,27,43.9,18,0.0 +22834,75,7.75,26,0.0 +22834,3,10,37,0.0 +22834,62,49.3,17,0.0 +22834,30,25.89,16,0.0 +22834,18,62.5,41,0.0 +22834,45,9.5,32,0.0 +22834,28,45.6,41,0.0 +22835,52,7,2,0.0 +22835,64,33.25,24,0.0 +22835,11,21,20,0.0 +22835,24,4.5,19,0.0 +22835,73,15,43,0.0 +22835,46,12,40,0.0 +22835,55,24,30,0.0 +22835,14,23.25,12,0.0 +22835,2,19,38,0.0 +22836,40,18.4,2,0.0 +22836,20,81,19,0.0 +22836,35,18,15,0.0 +22836,55,24,42,0.0 +22836,52,7,27,0.0 +22836,76,18,17,0.0 +22836,23,9,43,0.0 +22836,45,9.5,24,0.0 +22836,62,49.3,42,0.0 +22836,3,10,42,0.0 +22836,19,9.2,34,0.0 +22836,25,14,2,0.0 +22836,16,17.45,22,0.0 +22836,11,21,1,0.0 +22836,10,31,26,0.0 +22836,12,38,30,0.0 +22836,31,12.5,46,0.0 +22836,21,10,34,0.0 +22836,75,7.75,49,0.0 +22836,28,45.6,26,0.0 +22836,27,43.9,45,0.0 +22836,49,20,37,0.0 +22836,42,14,34,0.0 +22836,46,12,7,0.0 +22836,47,9.5,15,0.0 +22836,8,40,19,0.0 +22836,32,32,45,0.0 +22836,4,22,45,0.0 +22836,50,16.25,12,0.0 +22836,53,32.8,49,0.0 +22836,29,123.79,40,0.0 +22836,60,34,10,0.0 +22836,66,17,10,0.0 +22836,17,39,29,0.0 +22836,51,53,8,0.0 +22836,64,33.25,42,0.0 +22836,58,13.25,20,0.0 +22836,6,25,46,0.0 +22836,5,21.35,9,0.0 +22836,61,28.5,39,0.0 +22836,70,15,17,0.0 +22836,33,2.5,24,0.0 +22836,67,14,49,0.0 +22836,39,18,34,0.0 +22836,59,55,10,0.0 +22836,22,21,37,0.0 +22836,18,62.5,50,0.0 +22836,69,36,12,0.0 +22836,37,26,4,0.0 +22836,1,18,1,0.0 +22836,15,15.5,17,0.0 +22836,63,43.9,3,0.0 +22836,13,6,3,0.0 +22836,71,21.5,15,0.0 +22836,77,13,27,0.0 +22836,26,31.23,22,0.0 +22836,30,25.89,46,0.0 +22836,34,14,44,0.0 +22837,14,23.25,27,0.0 +22837,22,21,39,0.0 +22837,23,9,20,0.0 +22837,38,263.5,7,0.0 +22837,31,12.5,28,0.0 +22838,54,7.45,5,0.0 +22838,77,13,4,0.0 +22838,70,15,22,0.0 +22838,29,123.79,26,0.0 +22838,64,33.25,10,0.0 +22838,31,12.5,44,0.0 +22838,12,38,3,0.0 +22838,42,14,41,0.0 +22838,19,9.2,6,0.0 +22838,75,7.75,46,0.0 +22838,71,21.5,20,0.0 +22838,67,14,30,0.0 +22838,36,19,31,0.0 +22838,14,23.25,22,0.0 +22838,57,19.5,19,0.0 +22838,20,81,50,0.0 +22838,25,14,35,0.0 +22838,32,32,28,0.0 +22838,51,53,19,0.0 +22838,66,17,45,0.0 +22838,55,24,36,0.0 +22839,41,9.65,6,0.0 +22839,43,46,22,0.0 +22839,73,15,26,0.0 +22839,14,23.25,38,0.0 +22839,58,13.25,34,0.0 +22839,77,13,28,0.0 +22839,59,55,29,0.0 +22839,30,25.89,39,0.0 +22839,25,14,20,0.0 +22839,22,21,8,0.0 +22839,44,19.45,23,0.0 +22839,3,10,4,0.0 +22839,11,21,24,0.0 +22839,16,17.45,39,0.0 +22839,76,18,40,0.0 +22839,62,49.3,9,0.0 +22839,54,7.45,9,0.0 +22839,63,43.9,45,0.0 +22839,49,20,44,0.0 +22839,12,38,18,0.0 +22839,1,18,43,0.0 +22839,10,31,40,0.0 +22839,33,2.5,24,0.0 +22839,31,12.5,48,0.0 +22839,60,34,2,0.0 +22839,47,9.5,8,0.0 +22839,5,21.35,37,0.0 +22839,37,26,5,0.0 +22839,65,21.05,7,0.0 +22839,2,19,18,0.0 +22839,50,16.25,3,0.0 +22839,4,22,5,0.0 +22839,17,39,31,0.0 +22839,15,15.5,35,0.0 +22839,66,17,39,0.0 +22840,11,21,12,0.0 +22840,70,15,44,0.0 +22840,27,43.9,10,0.0 +22840,75,7.75,46,0.0 +22840,47,9.5,12,0.0 +22840,61,28.5,41,0.0 +22840,32,32,15,0.0 +22840,17,39,3,0.0 +22840,9,97,30,0.0 +22840,45,9.5,3,0.0 +22840,57,19.5,49,0.0 +22840,37,26,1,0.0 +22840,10,31,10,0.0 +22840,41,9.65,43,0.0 +22840,23,9,12,0.0 +22840,21,10,21,0.0 +22840,40,18.4,29,0.0 +22840,59,55,9,0.0 +22840,76,18,14,0.0 +22840,67,14,6,0.0 +22840,2,19,23,0.0 +22840,44,19.45,21,0.0 +22840,14,23.25,27,0.0 +22840,26,31.23,6,0.0 +22840,49,20,12,0.0 +22840,62,49.3,3,0.0 +22840,68,12.5,43,0.0 +22840,35,18,26,0.0 +22840,42,14,25,0.0 +22840,15,15.5,42,0.0 +22840,1,18,9,0.0 +22840,12,38,21,0.0 +22840,46,12,4,0.0 +22840,60,34,43,0.0 +22840,13,6,29,0.0 +22840,7,30,23,0.0 +22840,52,7,18,0.0 +22840,66,17,24,0.0 +22840,72,34.8,24,0.0 +22840,6,25,15,0.0 +22840,63,43.9,27,0.0 +22840,33,2.5,49,0.0 +22840,24,4.5,37,0.0 +22841,63,43.9,8,0.0 +22841,62,49.3,38,0.0 +22841,35,18,5,0.0 +22841,44,19.45,33,0.0 +22841,58,13.25,42,0.0 +22841,72,34.8,31,0.0 +22841,22,21,26,0.0 +22841,65,21.05,23,0.0 +22841,52,7,30,0.0 +22841,71,21.5,36,0.0 +22841,42,14,46,0.0 +22841,73,15,10,0.0 +22841,64,33.25,22,0.0 +22841,56,38,21,0.0 +22841,26,31.23,15,0.0 +22841,59,55,11,0.0 +22841,34,14,15,0.0 +22841,25,14,9,0.0 +22841,12,38,48,0.0 +22841,5,21.35,4,0.0 +22841,15,15.5,24,0.0 +22841,61,28.5,27,0.0 +22841,67,14,37,0.0 +22841,28,45.6,27,0.0 +22841,57,19.5,30,0.0 +22841,2,19,24,0.0 +22841,21,10,9,0.0 +22841,9,97,8,0.0 +22841,36,19,10,0.0 +22841,7,30,13,0.0 +22841,60,34,1,0.0 +22841,19,9.2,23,0.0 +22841,38,263.5,21,0.0 +22841,74,10,18,0.0 +22841,39,18,18,0.0 +22841,43,46,22,0.0 +22841,33,2.5,31,0.0 +22841,24,4.5,44,0.0 +22841,20,81,36,0.0 +22841,75,7.75,17,0.0 +22841,10,31,19,0.0 +22841,17,39,26,0.0 +22841,76,18,3,0.0 +22841,4,22,42,0.0 +22841,50,16.25,5,0.0 +22841,18,62.5,3,0.0 +22841,16,17.45,31,0.0 +22841,70,15,7,0.0 +22841,8,40,50,0.0 +22841,69,36,46,0.0 +22841,46,12,25,0.0 +22841,40,18.4,17,0.0 +22842,30,25.89,2,0.0 +22842,73,15,40,0.0 +22842,40,18.4,27,0.0 +22842,13,6,30,0.0 +22842,42,14,2,0.0 +22842,21,10,29,0.0 +22842,26,31.23,26,0.0 +22842,49,20,49,0.0 +22842,41,9.65,28,0.0 +22842,67,14,20,0.0 +22842,6,25,43,0.0 +22842,10,31,9,0.0 +22842,27,43.9,5,0.0 +22842,61,28.5,30,0.0 +22842,15,15.5,12,0.0 +22842,35,18,2,0.0 +22842,24,4.5,24,0.0 +22842,7,30,27,0.0 +22842,33,2.5,20,0.0 +22842,64,33.25,33,0.0 +22842,44,19.45,21,0.0 +22842,53,32.8,4,0.0 +22842,47,9.5,40,0.0 +22842,38,263.5,33,0.0 +22842,68,12.5,15,0.0 +22842,75,7.75,44,0.0 +22842,20,81,47,0.0 +22842,5,21.35,41,0.0 +22842,39,18,45,0.0 +22842,62,49.3,27,0.0 +22842,55,24,37,0.0 +22842,48,12.75,36,0.0 +22842,66,17,50,0.0 +22842,60,34,30,0.0 +22843,51,53,36,0.0 +22843,17,39,28,0.0 +22843,13,6,41,0.0 +22843,36,19,23,0.0 +22843,30,25.89,42,0.0 +22843,20,81,47,0.0 +22843,61,28.5,43,0.0 +22843,29,123.79,41,0.0 +22843,69,36,1,0.0 +22843,12,38,46,0.0 +22843,58,13.25,10,0.0 +22843,14,23.25,41,0.0 +22843,19,9.2,50,0.0 +22843,37,26,18,0.0 +22843,22,21,39,0.0 +22843,40,18.4,20,0.0 +22843,15,15.5,6,0.0 +22843,9,97,8,0.0 +22843,64,33.25,3,0.0 +22843,46,12,26,0.0 +22843,52,7,39,0.0 +22843,77,13,19,0.0 +22843,26,31.23,15,0.0 +22843,44,19.45,8,0.0 +22843,7,30,45,0.0 +22843,33,2.5,42,0.0 +22843,41,9.65,43,0.0 +22843,38,263.5,21,0.0 +22843,59,55,13,0.0 +22843,66,17,45,0.0 +22843,3,10,32,0.0 +22843,6,25,36,0.0 +22844,73,15,18,0.0 +22844,65,21.05,6,0.0 +22844,39,18,12,0.0 +22844,59,55,46,0.0 +22844,70,15,28,0.0 +22844,68,12.5,37,0.0 +22844,38,263.5,6,0.0 +22844,29,123.79,19,0.0 +22844,57,19.5,40,0.0 +22844,42,14,14,0.0 +22844,15,15.5,28,0.0 +22844,62,49.3,14,0.0 +22844,21,10,34,0.0 +22844,63,43.9,17,0.0 +22844,41,9.65,32,0.0 +22844,49,20,23,0.0 +22844,53,32.8,1,0.0 +22844,8,40,26,0.0 +22844,61,28.5,46,0.0 +22844,16,17.45,45,0.0 +22844,67,14,35,0.0 +22844,45,9.5,39,0.0 +22844,34,14,12,0.0 +22844,30,25.89,8,0.0 +22844,27,43.9,21,0.0 +22844,32,32,11,0.0 +22844,23,9,14,0.0 +22844,35,18,12,0.0 +22845,41,9.65,22,0.0 +22845,70,15,37,0.0 +22845,23,9,41,0.0 +22845,68,12.5,8,0.0 +22845,58,13.25,15,0.0 +22845,55,24,30,0.0 +22845,42,14,37,0.0 +22845,67,14,9,0.0 +22845,65,21.05,45,0.0 +22845,56,38,19,0.0 +22845,74,10,30,0.0 +22845,47,9.5,32,0.0 +22845,31,12.5,8,0.0 +22845,36,19,27,0.0 +22845,4,22,36,0.0 +22845,34,14,32,0.0 +22845,19,9.2,28,0.0 +22845,46,12,50,0.0 +22845,75,7.75,10,0.0 +22845,25,14,35,0.0 +22845,1,18,47,0.0 +22845,2,19,49,0.0 +22845,50,16.25,43,0.0 +22845,29,123.79,2,0.0 +22845,72,34.8,27,0.0 +22845,60,34,47,0.0 +22845,57,19.5,40,0.0 +22845,43,46,16,0.0 +22845,37,26,6,0.0 +22845,30,25.89,44,0.0 +22845,61,28.5,2,0.0 +22845,12,38,12,0.0 +22845,44,19.45,50,0.0 +22845,32,32,27,0.0 +22845,27,43.9,34,0.0 +22845,10,31,4,0.0 +22845,26,31.23,46,0.0 +22845,64,33.25,49,0.0 +22845,7,30,28,0.0 +22845,62,49.3,5,0.0 +22845,59,55,37,0.0 +22845,16,17.45,14,0.0 +22845,48,12.75,35,0.0 +22845,5,21.35,48,0.0 +22845,9,97,20,0.0 +22845,18,62.5,27,0.0 +22845,51,53,32,0.0 +22845,69,36,48,0.0 +22845,22,21,34,0.0 +22845,14,23.25,3,0.0 +22845,40,18.4,9,0.0 +22845,28,45.6,4,0.0 +22845,38,263.5,20,0.0 +22845,21,10,25,0.0 +22845,17,39,39,0.0 +22845,66,17,5,0.0 +22845,13,6,3,0.0 +22845,8,40,46,0.0 +22845,3,10,4,0.0 +22845,35,18,27,0.0 +22845,6,25,41,0.0 +22845,73,15,40,0.0 +22845,53,32.8,50,0.0 +22845,24,4.5,23,0.0 +22845,71,21.5,15,0.0 +22845,33,2.5,13,0.0 +22845,77,13,20,0.0 +22845,63,43.9,8,0.0 +22845,11,21,6,0.0 +22846,74,10,42,0.0 +22846,72,34.8,28,0.0 +22846,71,21.5,22,0.0 +22846,8,40,7,0.0 +22846,17,39,36,0.0 +22846,29,123.79,39,0.0 +22846,27,43.9,24,0.0 +22846,20,81,43,0.0 +22846,2,19,12,0.0 +22846,14,23.25,36,0.0 +22846,34,14,34,0.0 +22846,51,53,16,0.0 +22846,22,21,31,0.0 +22846,25,14,1,0.0 +22846,69,36,1,0.0 +22846,70,15,28,0.0 +22846,1,18,31,0.0 +22846,59,55,5,0.0 +22846,26,31.23,17,0.0 +22846,21,10,17,0.0 +22846,67,14,37,0.0 +22846,53,32.8,50,0.0 +22846,9,97,3,0.0 +22846,31,12.5,21,0.0 +22846,41,9.65,3,0.0 +22846,61,28.5,38,0.0 +22846,30,25.89,14,0.0 +22846,76,18,6,0.0 +22846,6,25,30,0.0 +22846,42,14,30,0.0 +22846,55,24,22,0.0 +22846,47,9.5,43,0.0 +22846,7,30,24,0.0 +22846,52,7,41,0.0 +22846,56,38,14,0.0 +22846,60,34,39,0.0 +22846,64,33.25,12,0.0 +22846,73,15,34,0.0 +22846,3,10,1,0.0 +22846,32,32,6,0.0 +22846,62,49.3,22,0.0 +22846,19,9.2,26,0.0 +22846,48,12.75,44,0.0 +22846,77,13,1,0.0 +22846,57,19.5,25,0.0 +22846,38,263.5,15,0.0 +22846,28,45.6,9,0.0 +22846,24,4.5,34,0.0 +22846,10,31,7,0.0 +22846,33,2.5,26,0.0 +22846,12,38,20,0.0 +22846,46,12,41,0.0 +22846,37,26,9,0.0 +22846,23,9,45,0.0 +22846,66,17,21,0.0 +22846,58,13.25,34,0.0 +22846,16,17.45,16,0.0 +22846,5,21.35,48,0.0 +22846,18,62.5,9,0.0 +22846,36,19,15,0.0 +22846,54,7.45,39,0.0 +22846,39,18,23,0.0 +22846,35,18,17,0.0 +22846,15,15.5,42,0.0 +22846,11,21,30,0.0 +22846,13,6,32,0.0 +22846,44,19.45,45,0.0 +22846,50,16.25,7,0.0 +22846,75,7.75,34,0.0 +22847,32,32,35,0.0 +22847,49,20,37,0.0 +22847,69,36,14,0.0 +22847,10,31,35,0.0 +22847,11,21,40,0.0 +22847,17,39,30,0.0 +22847,68,12.5,4,0.0 +22847,1,18,20,0.0 +22847,38,263.5,40,0.0 +22847,24,4.5,21,0.0 +22847,53,32.8,1,0.0 +22847,72,34.8,24,0.0 +22847,18,62.5,14,0.0 +22847,42,14,27,0.0 +22847,16,17.45,11,0.0 +22847,5,21.35,13,0.0 +22847,47,9.5,33,0.0 +22847,45,9.5,14,0.0 +22847,23,9,28,0.0 +22847,2,19,9,0.0 +22847,8,40,11,0.0 +22847,46,12,14,0.0 +22847,34,14,49,0.0 +22847,41,9.65,46,0.0 +22847,77,13,25,0.0 +22847,37,26,48,0.0 +22847,6,25,26,0.0 +22847,25,14,20,0.0 +22847,64,33.25,23,0.0 +22847,76,18,11,0.0 +22847,7,30,48,0.0 +22847,66,17,28,0.0 +22847,57,19.5,26,0.0 +22847,19,9.2,32,0.0 +22847,27,43.9,43,0.0 +22847,28,45.6,1,0.0 +22847,73,15,32,0.0 +22847,51,53,32,0.0 +22847,20,81,8,0.0 +22847,75,7.75,36,0.0 +22847,67,14,8,0.0 +22847,36,19,19,0.0 +22847,60,34,41,0.0 +22847,4,22,6,0.0 +22847,31,12.5,35,0.0 +22848,66,17,18,0.0 +22848,44,19.45,26,0.0 +22848,27,43.9,47,0.0 +22848,22,21,28,0.0 +22848,57,19.5,18,0.0 +22848,15,15.5,9,0.0 +22848,14,23.25,20,0.0 +22848,59,55,17,0.0 +22848,39,18,43,0.0 +22848,60,34,29,0.0 +22848,11,21,5,0.0 +22848,65,21.05,6,0.0 +22848,3,10,35,0.0 +22848,16,17.45,45,0.0 +22848,63,43.9,44,0.0 +22848,2,19,35,0.0 +22848,45,9.5,2,0.0 +22848,29,123.79,17,0.0 +22848,24,4.5,13,0.0 +22848,37,26,20,0.0 +22848,43,46,18,0.0 +22848,74,10,5,0.0 +22848,55,24,12,0.0 +22848,51,53,18,0.0 +22848,67,14,13,0.0 +22848,46,12,1,0.0 +22848,72,34.8,29,0.0 +22848,8,40,19,0.0 +22848,62,49.3,43,0.0 +22848,4,22,23,0.0 +22848,69,36,8,0.0 +22848,77,13,5,0.0 +22848,64,33.25,30,0.0 +22848,31,12.5,11,0.0 +22848,12,38,19,0.0 +22848,52,7,29,0.0 +22848,48,12.75,9,0.0 +22848,50,16.25,24,0.0 +22848,28,45.6,31,0.0 +22848,20,81,30,0.0 +22848,21,10,31,0.0 +22848,73,15,28,0.0 +22848,19,9.2,13,0.0 +22848,17,39,45,0.0 +22848,71,21.5,26,0.0 +22848,58,13.25,9,0.0 +22848,32,32,12,0.0 +22848,18,62.5,5,0.0 +22848,49,20,48,0.0 +22848,38,263.5,40,0.0 +22848,33,2.5,7,0.0 +22848,13,6,30,0.0 +22848,42,14,6,0.0 +22848,1,18,50,0.0 +22848,9,97,37,0.0 +22848,61,28.5,19,0.0 +22849,65,21.05,6,0.0 +22849,22,21,32,0.0 +22849,70,15,6,0.0 +22849,34,14,19,0.0 +22849,5,21.35,30,0.0 +22849,63,43.9,47,0.0 +22849,49,20,24,0.0 +22849,6,25,38,0.0 +22849,23,9,34,0.0 +22849,59,55,35,0.0 +22849,66,17,49,0.0 +22849,52,7,7,0.0 +22850,46,12,38,0.0 +22850,11,21,25,0.0 +22850,20,81,24,0.0 +22850,7,30,20,0.0 +22850,51,53,45,0.0 +22850,61,28.5,19,0.0 +22850,54,7.45,10,0.0 +22850,60,34,25,0.0 +22850,41,9.65,10,0.0 +22850,76,18,45,0.0 +22850,62,49.3,11,0.0 +22850,5,21.35,27,0.0 +22850,14,23.25,30,0.0 +22850,75,7.75,48,0.0 +22850,58,13.25,23,0.0 +22850,50,16.25,45,0.0 +22850,66,17,28,0.0 +22850,6,25,32,0.0 +22850,56,38,16,0.0 +22850,67,14,29,0.0 +22850,25,14,3,0.0 +22850,55,24,12,0.0 +22850,52,7,48,0.0 +22850,16,17.45,45,0.0 +22850,69,36,2,0.0 +22850,18,62.5,40,0.0 +22850,45,9.5,27,0.0 +22850,38,263.5,20,0.0 +22850,37,26,9,0.0 +22850,4,22,30,0.0 +22850,33,2.5,32,0.0 +22850,64,33.25,13,0.0 +22850,59,55,41,0.0 +22850,15,15.5,38,0.0 +22850,1,18,11,0.0 +22850,53,32.8,30,0.0 +22850,2,19,24,0.0 +22850,40,18.4,34,0.0 +22850,47,9.5,29,0.0 +22850,19,9.2,2,0.0 +22850,3,10,19,0.0 +22850,17,39,5,0.0 +22850,21,10,30,0.0 +22850,74,10,29,0.0 +22850,49,20,34,0.0 +22850,39,18,43,0.0 +22850,70,15,10,0.0 +22850,42,14,28,0.0 +22850,13,6,49,0.0 +22850,29,123.79,46,0.0 +22850,22,21,2,0.0 +22850,32,32,25,0.0 +22850,24,4.5,30,0.0 +22850,23,9,28,0.0 +22850,31,12.5,22,0.0 +22850,27,43.9,36,0.0 +22850,73,15,37,0.0 +22850,68,12.5,42,0.0 +22850,26,31.23,13,0.0 +22850,28,45.6,7,0.0 +22850,36,19,32,0.0 +22850,44,19.45,43,0.0 +22850,71,21.5,4,0.0 +22850,57,19.5,11,0.0 +22850,9,97,36,0.0 +22850,10,31,49,0.0 +22850,65,21.05,43,0.0 +22850,30,25.89,40,0.0 +22850,48,12.75,16,0.0 +22850,35,18,50,0.0 +22850,72,34.8,4,0.0 +22850,34,14,18,0.0 +22850,43,46,22,0.0 +22850,8,40,3,0.0 +22851,21,10,22,0.0 +22851,32,32,25,0.0 +22851,45,9.5,50,0.0 +22851,71,21.5,47,0.0 +22851,11,21,7,0.0 +22851,63,43.9,14,0.0 +22851,13,6,8,0.0 +22851,29,123.79,23,0.0 +22851,60,34,31,0.0 +22851,30,25.89,1,0.0 +22851,47,9.5,27,0.0 +22851,3,10,38,0.0 +22851,14,23.25,1,0.0 +22852,4,22,22,0.0 +22852,75,7.75,37,0.0 +22852,29,123.79,40,0.0 +22852,14,23.25,24,0.0 +22852,53,32.8,2,0.0 +22852,33,2.5,42,0.0 +22852,57,19.5,21,0.0 +22852,59,55,41,0.0 +22852,62,49.3,26,0.0 +22852,63,43.9,16,0.0 +22852,23,9,46,0.0 +22852,19,9.2,19,0.0 +22852,35,18,20,0.0 +22852,7,30,23,0.0 +22852,1,18,17,0.0 +22852,54,7.45,9,0.0 +22852,51,53,24,0.0 +22852,40,18.4,39,0.0 +22852,45,9.5,49,0.0 +22852,30,25.89,1,0.0 +22852,38,263.5,3,0.0 +22852,61,28.5,46,0.0 +22852,34,14,29,0.0 +22852,5,21.35,33,0.0 +22852,36,19,39,0.0 +22852,25,14,16,0.0 +22852,55,24,13,0.0 +22852,73,15,27,0.0 +22852,2,19,41,0.0 +22852,70,15,16,0.0 +22852,6,25,15,0.0 +22852,27,43.9,12,0.0 +22852,58,13.25,18,0.0 +22852,15,15.5,38,0.0 +22852,39,18,31,0.0 +22852,72,34.8,30,0.0 +22852,43,46,36,0.0 +22852,3,10,36,0.0 +22852,24,4.5,35,0.0 +22852,48,12.75,2,0.0 +22852,32,32,28,0.0 +22852,16,17.45,49,0.0 +22852,31,12.5,26,0.0 +22852,17,39,24,0.0 +22852,60,34,27,0.0 +22852,44,19.45,14,0.0 +22852,22,21,18,0.0 +22852,41,9.65,20,0.0 +22852,18,62.5,23,0.0 +22852,42,14,30,0.0 +22852,74,10,1,0.0 +22852,67,14,37,0.0 +22852,37,26,8,0.0 +22852,47,9.5,41,0.0 +22852,69,36,47,0.0 +22852,20,81,49,0.0 +22852,52,7,32,0.0 +22852,71,21.5,30,0.0 +22852,26,31.23,35,0.0 +22852,65,21.05,22,0.0 +22852,64,33.25,24,0.0 +22852,10,31,1,0.0 +22852,49,20,18,0.0 +22852,46,12,44,0.0 +22852,77,13,11,0.0 +22853,35,18,10,0.0 +22853,3,10,7,0.0 +22853,61,28.5,45,0.0 +22853,4,22,20,0.0 +22853,19,9.2,46,0.0 +22853,2,19,14,0.0 +22853,33,2.5,38,0.0 +22853,63,43.9,28,0.0 +22853,9,97,1,0.0 +22853,50,16.25,7,0.0 +22853,70,15,44,0.0 +22853,74,10,41,0.0 +22853,12,38,16,0.0 +22853,57,19.5,49,0.0 +22853,42,14,23,0.0 +22853,8,40,26,0.0 +22853,71,21.5,21,0.0 +22853,6,25,18,0.0 +22854,68,12.5,10,0.0 +22854,7,30,16,0.0 +22854,70,15,39,0.0 +22854,58,13.25,17,0.0 +22854,73,15,35,0.0 +22854,52,7,44,0.0 +22854,50,16.25,40,0.0 +22854,42,14,29,0.0 +22855,76,18,9,0.0 +22855,63,43.9,36,0.0 +22855,55,24,40,0.0 +22855,51,53,18,0.0 +22855,66,17,15,0.0 +22855,37,26,48,0.0 +22855,27,43.9,39,0.0 +22855,43,46,38,0.0 +22855,56,38,48,0.0 +22855,72,34.8,16,0.0 +22855,53,32.8,43,0.0 +22855,28,45.6,1,0.0 +22855,32,32,2,0.0 +22855,41,9.65,40,0.0 +22855,10,31,32,0.0 +22855,49,20,14,0.0 +22855,48,12.75,27,0.0 +22855,19,9.2,16,0.0 +22855,15,15.5,48,0.0 +22855,3,10,1,0.0 +22855,4,22,26,0.0 +22855,74,10,13,0.0 +22855,8,40,29,0.0 +22855,14,23.25,28,0.0 +22855,38,263.5,25,0.0 +22855,25,14,28,0.0 +22855,22,21,21,0.0 +22855,23,9,33,0.0 +22855,42,14,47,0.0 +22855,31,12.5,5,0.0 +22855,30,25.89,15,0.0 +22855,70,15,32,0.0 +22855,36,19,14,0.0 +22855,17,39,47,0.0 +22855,26,31.23,1,0.0 +22855,67,14,9,0.0 +22855,58,13.25,32,0.0 +22855,6,25,10,0.0 +22855,24,4.5,29,0.0 +22855,12,38,42,0.0 +22855,33,2.5,3,0.0 +22855,9,97,14,0.0 +22855,35,18,45,0.0 +22855,29,123.79,41,0.0 +22855,5,21.35,37,0.0 +22855,18,62.5,19,0.0 +22855,13,6,4,0.0 +22855,20,81,15,0.0 +22855,59,55,2,0.0 +22855,21,10,4,0.0 +22855,61,28.5,29,0.0 +22855,39,18,35,0.0 +22855,69,36,13,0.0 +22855,47,9.5,36,0.0 +22855,57,19.5,17,0.0 +22855,46,12,26,0.0 +22855,44,19.45,48,0.0 +22855,16,17.45,50,0.0 +22855,68,12.5,11,0.0 +22855,54,7.45,9,0.0 +22855,71,21.5,31,0.0 +22855,2,19,4,0.0 +22855,34,14,5,0.0 +22855,77,13,45,0.0 +22855,73,15,47,0.0 +22855,40,18.4,25,0.0 +22855,64,33.25,1,0.0 +22855,52,7,14,0.0 +22855,45,9.5,1,0.0 +22855,11,21,39,0.0 +22855,7,30,40,0.0 +22856,26,31.23,18,0.0 +22856,33,2.5,11,0.0 +22856,8,40,11,0.0 +22856,63,43.9,5,0.0 +22856,4,22,2,0.0 +22856,59,55,26,0.0 +22856,30,25.89,38,0.0 +22856,14,23.25,6,0.0 +22856,10,31,34,0.0 +22856,44,19.45,25,0.0 +22856,49,20,14,0.0 +22856,76,18,1,0.0 +22856,75,7.75,39,0.0 +22856,41,9.65,8,0.0 +22856,32,32,43,0.0 +22856,27,43.9,14,0.0 +22856,66,17,43,0.0 +22856,53,32.8,12,0.0 +22856,73,15,19,0.0 +22856,18,62.5,33,0.0 +22856,11,21,41,0.0 +22856,7,30,31,0.0 +22856,57,19.5,5,0.0 +22856,45,9.5,26,0.0 +22856,70,15,36,0.0 +22856,20,81,48,0.0 +22856,5,21.35,1,0.0 +22856,21,10,46,0.0 +22856,23,9,48,0.0 +22856,24,4.5,13,0.0 +22856,3,10,38,0.0 +22856,54,7.45,2,0.0 +22856,16,17.45,2,0.0 +22856,71,21.5,46,0.0 +22856,22,21,7,0.0 +22856,74,10,2,0.0 +22856,35,18,1,0.0 +22856,12,38,14,0.0 +22856,47,9.5,47,0.0 +22856,6,25,47,0.0 +22856,15,15.5,17,0.0 +22856,39,18,3,0.0 +22856,29,123.79,17,0.0 +22856,52,7,39,0.0 +22856,17,39,16,0.0 +22856,31,12.5,35,0.0 +22856,56,38,24,0.0 +22856,40,18.4,4,0.0 +22856,65,21.05,17,0.0 +22856,64,33.25,42,0.0 +22856,48,12.75,42,0.0 +22856,46,12,35,0.0 +22856,55,24,16,0.0 +22856,42,14,48,0.0 +22856,1,18,46,0.0 +22856,34,14,4,0.0 +22856,2,19,16,0.0 +22856,68,12.5,35,0.0 +22856,77,13,33,0.0 +22856,13,6,35,0.0 +22856,51,53,9,0.0 +22857,1,18,36,0.0 +22857,38,263.5,15,0.0 +22857,57,19.5,50,0.0 +22857,68,12.5,14,0.0 +22857,16,17.45,27,0.0 +22857,3,10,24,0.0 +22857,27,43.9,9,0.0 +22857,46,12,7,0.0 +22857,22,21,18,0.0 +22857,55,24,15,0.0 +22857,69,36,23,0.0 +22857,70,15,19,0.0 +22857,10,31,23,0.0 +22857,14,23.25,16,0.0 +22857,31,12.5,18,0.0 +22857,64,33.25,19,0.0 +22857,50,16.25,20,0.0 +22857,61,28.5,12,0.0 +22857,47,9.5,46,0.0 +22857,30,25.89,8,0.0 +22857,41,9.65,15,0.0 +22857,72,34.8,19,0.0 +22857,18,62.5,48,0.0 +22857,32,32,28,0.0 +22857,45,9.5,24,0.0 +22857,2,19,42,0.0 +22857,56,38,22,0.0 +22857,8,40,8,0.0 +22857,76,18,17,0.0 +22857,40,18.4,31,0.0 +22857,65,21.05,7,0.0 +22857,19,9.2,9,0.0 +22857,59,55,35,0.0 +22857,36,19,18,0.0 +22857,29,123.79,42,0.0 +22857,4,22,20,0.0 +22857,44,19.45,9,0.0 +22857,12,38,34,0.0 +22857,25,14,33,0.0 +22857,28,45.6,2,0.0 +22857,15,15.5,5,0.0 +22857,58,13.25,12,0.0 +22857,33,2.5,6,0.0 +22858,58,13.25,32,0.0 +22858,45,9.5,19,0.0 +22859,21,10,2,0.0 +22859,10,31,40,0.0 +22859,31,12.5,16,0.0 +22859,7,30,14,0.0 +22859,67,14,44,0.0 +22859,69,36,32,0.0 +22859,35,18,7,0.0 +22859,63,43.9,16,0.0 +22859,38,263.5,39,0.0 +22859,65,21.05,36,0.0 +22859,66,17,1,0.0 +22859,16,17.45,1,0.0 +22859,41,9.65,2,0.0 +22859,60,34,16,0.0 +22859,51,53,48,0.0 +22859,12,38,2,0.0 +22859,74,10,1,0.0 +22859,8,40,34,0.0 +22859,11,21,33,0.0 +22859,25,14,22,0.0 +22859,73,15,41,0.0 +22859,29,123.79,32,0.0 +22859,30,25.89,46,0.0 +22859,34,14,42,0.0 +22859,26,31.23,29,0.0 +22859,47,9.5,40,0.0 +22859,14,23.25,40,0.0 +22859,55,24,32,0.0 +22859,18,62.5,43,0.0 +22859,62,49.3,37,0.0 +22859,39,18,5,0.0 +22859,46,12,39,0.0 +22859,28,45.6,13,0.0 +22859,24,4.5,20,0.0 +22859,22,21,42,0.0 +22859,70,15,47,0.0 +22859,6,25,2,0.0 +22859,56,38,11,0.0 +22859,58,13.25,26,0.0 +22859,59,55,4,0.0 +22859,54,7.45,22,0.0 +22859,43,46,50,0.0 +22860,16,17.45,31,0.0 +22860,69,36,35,0.0 +22860,62,49.3,16,0.0 +22860,25,14,34,0.0 +22860,8,40,30,0.0 +22860,59,55,43,0.0 +22860,11,21,45,0.0 +22860,19,9.2,26,0.0 +22860,38,263.5,42,0.0 +22860,35,18,18,0.0 +22860,22,21,10,0.0 +22860,49,20,47,0.0 +22860,6,25,23,0.0 +22860,23,9,40,0.0 +22860,68,12.5,6,0.0 +22860,9,97,14,0.0 +22860,47,9.5,4,0.0 +22860,64,33.25,33,0.0 +22860,30,25.89,9,0.0 +22860,4,22,41,0.0 +22860,43,46,39,0.0 +22860,56,38,35,0.0 +22860,76,18,24,0.0 +22860,7,30,43,0.0 +22860,50,16.25,33,0.0 +22860,14,23.25,40,0.0 +22860,24,4.5,3,0.0 +22860,54,7.45,42,0.0 +22860,20,81,43,0.0 +22860,3,10,12,0.0 +22860,72,34.8,21,0.0 +22860,36,19,38,0.0 +22860,26,31.23,17,0.0 +22860,10,31,7,0.0 +22860,48,12.75,31,0.0 +22860,27,43.9,8,0.0 +22860,45,9.5,34,0.0 +22860,67,14,50,0.0 +22860,55,24,42,0.0 +22860,61,28.5,6,0.0 +22860,66,17,31,0.0 +22860,12,38,3,0.0 +22860,74,10,10,0.0 +22860,53,32.8,6,0.0 +22860,58,13.25,2,0.0 +22860,37,26,15,0.0 +22860,17,39,43,0.0 +22860,73,15,13,0.0 +22860,29,123.79,6,0.0 +22860,51,53,46,0.0 +22860,31,12.5,29,0.0 +22860,1,18,13,0.0 +22860,77,13,21,0.0 +22860,60,34,32,0.0 +22860,41,9.65,29,0.0 +22860,34,14,28,0.0 +22860,18,62.5,48,0.0 +22860,13,6,33,0.0 +22860,39,18,1,0.0 +22860,65,21.05,24,0.0 +22860,21,10,19,0.0 +22860,2,19,44,0.0 +22860,5,21.35,7,0.0 +22860,71,21.5,29,0.0 +22860,28,45.6,48,0.0 +22860,42,14,39,0.0 +22860,70,15,5,0.0 +22860,63,43.9,50,0.0 +22860,15,15.5,28,0.0 +22860,75,7.75,1,0.0 +22860,57,19.5,41,0.0 +22860,52,7,4,0.0 +22860,44,19.45,10,0.0 +22860,33,2.5,24,0.0 +22860,40,18.4,32,0.0 +22860,46,12,31,0.0 +22861,56,38,33,0.0 +22861,44,19.45,34,0.0 +22861,25,14,34,0.0 +22861,37,26,36,0.0 +22861,22,21,6,0.0 +22861,67,14,26,0.0 +22861,65,21.05,7,0.0 +22861,20,81,14,0.0 +22861,14,23.25,13,0.0 +22861,28,45.6,3,0.0 +22861,3,10,18,0.0 +22861,53,32.8,11,0.0 +22861,40,18.4,42,0.0 +22861,73,15,30,0.0 +22861,45,9.5,23,0.0 +22861,68,12.5,33,0.0 +22861,32,32,1,0.0 +22861,24,4.5,42,0.0 +22861,74,10,41,0.0 +22861,51,53,8,0.0 +22861,59,55,40,0.0 +22862,56,38,6,0.0 +22862,11,21,42,0.0 +22862,26,31.23,9,0.0 +22862,38,263.5,11,0.0 +22862,77,13,28,0.0 +22862,66,17,33,0.0 +22862,76,18,10,0.0 +22862,61,28.5,22,0.0 +22862,46,12,21,0.0 +22862,58,13.25,14,0.0 +22862,2,19,11,0.0 +22862,69,36,9,0.0 +22862,17,39,20,0.0 +22862,35,18,40,0.0 +22862,28,45.6,5,0.0 +22862,1,18,15,0.0 +22862,45,9.5,13,0.0 +22862,50,16.25,12,0.0 +22862,25,14,5,0.0 +22862,59,55,37,0.0 +22862,6,25,2,0.0 +22862,20,81,22,0.0 +22862,19,9.2,48,0.0 +22863,57,19.5,17,0.0 +22863,55,24,44,0.0 +22863,3,10,3,0.0 +22863,53,32.8,34,0.0 +22863,39,18,42,0.0 +22863,49,20,32,0.0 +22863,29,123.79,8,0.0 +22863,47,9.5,11,0.0 +22863,70,15,39,0.0 +22863,69,36,26,0.0 +22863,31,12.5,32,0.0 +22863,5,21.35,6,0.0 +22864,37,26,44,0.0 +22864,40,18.4,33,0.0 +22864,27,43.9,39,0.0 +22864,67,14,31,0.0 +22864,57,19.5,42,0.0 +22864,21,10,19,0.0 +22864,13,6,35,0.0 +22864,25,14,6,0.0 +22864,48,12.75,37,0.0 +22864,41,9.65,43,0.0 +22864,7,30,28,0.0 +22864,45,9.5,30,0.0 +22864,10,31,21,0.0 +22864,63,43.9,10,0.0 +22864,12,38,15,0.0 +22864,14,23.25,24,0.0 +22864,66,17,26,0.0 +22864,72,34.8,4,0.0 +22864,58,13.25,22,0.0 +22864,17,39,4,0.0 +22864,52,7,5,0.0 +22864,24,4.5,18,0.0 +22864,38,263.5,9,0.0 +22864,61,28.5,44,0.0 +22864,49,20,39,0.0 +22864,11,21,50,0.0 +22864,56,38,24,0.0 +22864,9,97,43,0.0 +22864,16,17.45,5,0.0 +22864,68,12.5,45,0.0 +22864,22,21,24,0.0 +22864,42,14,20,0.0 +22864,74,10,11,0.0 +22864,70,15,6,0.0 +22864,43,46,4,0.0 +22864,20,81,38,0.0 +22864,4,22,28,0.0 +22864,65,21.05,48,0.0 +22864,73,15,16,0.0 +22864,71,21.5,42,0.0 +22864,15,15.5,2,0.0 +22864,19,9.2,43,0.0 +22864,64,33.25,20,0.0 +22864,51,53,19,0.0 +22864,31,12.5,17,0.0 +22864,44,19.45,27,0.0 +22864,30,25.89,23,0.0 +22864,36,19,24,0.0 +22864,33,2.5,40,0.0 +22864,34,14,50,0.0 +22864,23,9,6,0.0 +22864,69,36,32,0.0 +22864,6,25,10,0.0 +22864,18,62.5,24,0.0 +22864,1,18,26,0.0 +22864,8,40,19,0.0 +22864,46,12,27,0.0 +22864,54,7.45,2,0.0 +22864,39,18,41,0.0 +22864,55,24,16,0.0 +22864,26,31.23,10,0.0 +22865,29,123.79,1,0.0 +22865,47,9.5,5,0.0 +22865,50,16.25,4,0.0 +22865,27,43.9,26,0.0 +22865,44,19.45,7,0.0 +22865,9,97,31,0.0 +22865,1,18,33,0.0 +22865,14,23.25,4,0.0 +22865,58,13.25,45,0.0 +22865,45,9.5,48,0.0 +22865,53,32.8,39,0.0 +22865,39,18,38,0.0 +22865,35,18,11,0.0 +22865,36,19,22,0.0 +22865,6,25,29,0.0 +22865,10,31,50,0.0 +22865,32,32,25,0.0 +22865,77,13,7,0.0 +22865,63,43.9,48,0.0 +22865,76,18,6,0.0 +22865,65,21.05,10,0.0 +22865,68,12.5,8,0.0 +22865,60,34,28,0.0 +22865,42,14,49,0.0 +22865,64,33.25,28,0.0 +22865,26,31.23,33,0.0 +22865,51,53,22,0.0 +22865,7,30,41,0.0 +22865,23,9,41,0.0 +22865,34,14,14,0.0 +22865,61,28.5,1,0.0 +22865,24,4.5,38,0.0 +22865,31,12.5,29,0.0 +22865,55,24,50,0.0 +22865,3,10,4,0.0 +22865,73,15,48,0.0 +22865,72,34.8,1,0.0 +22865,69,36,27,0.0 +22865,46,12,7,0.0 +22865,16,17.45,45,0.0 +22865,2,19,19,0.0 +22865,75,7.75,28,0.0 +22865,30,25.89,32,0.0 +22865,20,81,50,0.0 +22865,74,10,45,0.0 +22865,37,26,19,0.0 +22865,40,18.4,22,0.0 +22865,13,6,38,0.0 +22865,67,14,30,0.0 +22865,70,15,3,0.0 +22865,22,21,41,0.0 +22865,38,263.5,13,0.0 +22865,8,40,24,0.0 +22865,43,46,39,0.0 +22865,52,7,31,0.0 +22865,33,2.5,16,0.0 +22865,48,12.75,22,0.0 +22865,11,21,41,0.0 +22865,19,9.2,30,0.0 +22865,56,38,43,0.0 +22865,62,49.3,26,0.0 +22865,21,10,47,0.0 +22865,57,19.5,38,0.0 +22865,18,62.5,15,0.0 +22865,41,9.65,45,0.0 +22865,12,38,1,0.0 +22865,28,45.6,16,0.0 +22865,15,15.5,16,0.0 +22865,4,22,19,0.0 +22865,66,17,46,0.0 +22865,17,39,49,0.0 +22866,6,25,11,0.0 +22866,29,123.79,25,0.0 +22866,8,40,41,0.0 +22866,31,12.5,46,0.0 +22866,65,21.05,30,0.0 +22866,11,21,44,0.0 +22866,41,9.65,26,0.0 +22866,66,17,31,0.0 +22866,39,18,7,0.0 +22866,74,10,44,0.0 +22866,28,45.6,24,0.0 +22866,64,33.25,14,0.0 +22866,76,18,20,0.0 +22866,27,43.9,40,0.0 +22866,71,21.5,2,0.0 +22866,23,9,21,0.0 +22866,12,38,10,0.0 +22866,20,81,41,0.0 +22866,10,31,20,0.0 +22866,73,15,16,0.0 +22866,70,15,39,0.0 +22866,32,32,37,0.0 +22866,3,10,12,0.0 +22867,25,14,26,0.0 +22867,70,15,21,0.0 +22867,23,9,12,0.0 +22867,76,18,4,0.0 +22867,12,38,41,0.0 +22867,51,53,33,0.0 +22867,46,12,26,0.0 +22867,4,22,18,0.0 +22867,29,123.79,40,0.0 +22867,26,31.23,49,0.0 +22867,73,15,47,0.0 +22867,21,10,34,0.0 +22867,57,19.5,12,0.0 +22867,42,14,31,0.0 +22867,27,43.9,33,0.0 +22867,65,21.05,36,0.0 +22867,8,40,46,0.0 +22867,69,36,50,0.0 +22867,40,18.4,45,0.0 +22867,49,20,18,0.0 +22867,55,24,36,0.0 +22867,44,19.45,15,0.0 +22867,18,62.5,36,0.0 +22867,22,21,32,0.0 +22867,20,81,17,0.0 +22867,3,10,48,0.0 +22867,33,2.5,32,0.0 +22867,64,33.25,45,0.0 +22867,45,9.5,12,0.0 +22867,77,13,35,0.0 +22867,5,21.35,27,0.0 +22867,52,7,34,0.0 +22867,67,14,33,0.0 +22867,10,31,28,0.0 +22867,31,12.5,41,0.0 +22867,60,34,13,0.0 +22867,66,17,46,0.0 +22867,15,15.5,20,0.0 +22867,37,26,43,0.0 +22867,9,97,9,0.0 +22867,62,49.3,43,0.0 +22867,14,23.25,5,0.0 +22867,24,4.5,40,0.0 +22867,56,38,5,0.0 +22867,19,9.2,12,0.0 +22867,68,12.5,45,0.0 +22867,34,14,34,0.0 +22867,16,17.45,33,0.0 +22867,7,30,3,0.0 +22867,6,25,40,0.0 +22867,48,12.75,45,0.0 +22867,36,19,13,0.0 +22867,71,21.5,33,0.0 +22867,1,18,45,0.0 +22867,2,19,33,0.0 +22867,11,21,7,0.0 +22867,53,32.8,14,0.0 +22867,59,55,24,0.0 +22867,39,18,17,0.0 +22867,32,32,43,0.0 +22867,13,6,38,0.0 +22867,58,13.25,11,0.0 +22867,75,7.75,1,0.0 +22867,35,18,40,0.0 +22867,41,9.65,35,0.0 +22867,50,16.25,3,0.0 +22867,74,10,13,0.0 +22867,28,45.6,18,0.0 +22867,38,263.5,3,0.0 +22867,43,46,11,0.0 +22867,47,9.5,43,0.0 +22867,72,34.8,9,0.0 +22867,63,43.9,21,0.0 +22867,61,28.5,30,0.0 +22867,30,25.89,45,0.0 +22868,12,38,7,0.0 +22868,35,18,9,0.0 +22868,42,14,38,0.0 +22868,36,19,19,0.0 +22868,45,9.5,43,0.0 +22868,66,17,14,0.0 +22868,11,21,17,0.0 +22868,6,25,17,0.0 +22868,19,9.2,9,0.0 +22868,3,10,1,0.0 +22868,4,22,9,0.0 +22868,70,15,34,0.0 +22868,10,31,27,0.0 +22868,5,21.35,39,0.0 +22868,9,97,33,0.0 +22868,20,81,36,0.0 +22868,24,4.5,8,0.0 +22868,1,18,12,0.0 +22868,38,263.5,25,0.0 +22868,25,14,11,0.0 +22868,60,34,35,0.0 +22868,76,18,32,0.0 +22868,22,21,23,0.0 +22868,69,36,45,0.0 +22868,72,34.8,25,0.0 +22868,7,30,8,0.0 +22868,2,19,11,0.0 +22868,53,32.8,34,0.0 +22868,14,23.25,16,0.0 +22868,52,7,46,0.0 +22868,48,12.75,45,0.0 +22868,57,19.5,43,0.0 +22868,58,13.25,26,0.0 +22868,28,45.6,10,0.0 +22868,51,53,3,0.0 +22868,16,17.45,33,0.0 +22868,33,2.5,27,0.0 +22868,39,18,5,0.0 +22868,41,9.65,11,0.0 +22868,71,21.5,48,0.0 +22868,37,26,14,0.0 +22868,34,14,45,0.0 +22868,15,15.5,38,0.0 +22868,73,15,11,0.0 +22868,13,6,44,0.0 +22868,68,12.5,18,0.0 +22869,60,34,42,0.0 +22869,18,62.5,34,0.0 +22869,5,21.35,35,0.0 +22869,73,15,7,0.0 +22869,58,13.25,28,0.0 +22869,19,9.2,31,0.0 +22869,56,38,48,0.0 +22869,16,17.45,4,0.0 +22869,50,16.25,26,0.0 +22869,68,12.5,50,0.0 +22869,25,14,40,0.0 +22869,67,14,28,0.0 +22869,61,28.5,7,0.0 +22869,57,19.5,7,0.0 +22869,27,43.9,48,0.0 +22870,10,31,45,0.0 +22870,41,9.65,18,0.0 +22870,42,14,22,0.0 +22870,77,13,42,0.0 +22870,71,21.5,3,0.0 +22870,40,18.4,15,0.0 +22870,64,33.25,28,0.0 +22870,4,22,1,0.0 +22870,35,18,34,0.0 +22870,54,7.45,1,0.0 +22870,14,23.25,45,0.0 +22870,57,19.5,23,0.0 +22870,31,12.5,26,0.0 +22870,15,15.5,25,0.0 +22870,74,10,15,0.0 +22870,47,9.5,10,0.0 +22870,58,13.25,25,0.0 +22870,8,40,13,0.0 +22870,49,20,6,0.0 +22870,50,16.25,6,0.0 +22870,16,17.45,45,0.0 +22870,56,38,12,0.0 +22870,21,10,19,0.0 +22870,27,43.9,8,0.0 +22870,28,45.6,5,0.0 +22870,72,34.8,4,0.0 +22870,25,14,34,0.0 +22870,11,21,45,0.0 +22870,5,21.35,5,0.0 +22870,3,10,24,0.0 +22870,19,9.2,6,0.0 +22870,36,19,9,0.0 +22870,9,97,40,0.0 +22870,17,39,7,0.0 +22870,53,32.8,42,0.0 +22870,32,32,13,0.0 +22870,52,7,29,0.0 +22870,6,25,43,0.0 +22870,20,81,30,0.0 +22870,18,62.5,13,0.0 +22870,7,30,49,0.0 +22870,22,21,39,0.0 +22870,44,19.45,41,0.0 +22870,30,25.89,28,0.0 +22870,37,26,5,0.0 +22870,76,18,47,0.0 +22870,45,9.5,45,0.0 +22870,38,263.5,49,0.0 +22870,26,31.23,9,0.0 +22870,51,53,42,0.0 +22870,46,12,35,0.0 +22870,75,7.75,30,0.0 +22870,23,9,36,0.0 +22870,65,21.05,2,0.0 +22870,48,12.75,19,0.0 +22870,61,28.5,48,0.0 +22870,34,14,8,0.0 +22870,2,19,42,0.0 +22870,62,49.3,47,0.0 +22870,63,43.9,38,0.0 +22870,67,14,20,0.0 +22870,55,24,28,0.0 +22870,43,46,48,0.0 +22870,70,15,17,0.0 +22870,39,18,16,0.0 +22870,73,15,17,0.0 +22870,29,123.79,14,0.0 +22870,66,17,12,0.0 +22870,13,6,20,0.0 +22871,32,32,25,0.0 +22871,56,38,43,0.0 +22871,15,15.5,39,0.0 +22871,68,12.5,16,0.0 +22871,46,12,25,0.0 +22871,16,17.45,49,0.0 +22871,67,14,31,0.0 +22871,70,15,30,0.0 +22871,42,14,24,0.0 +22871,60,34,16,0.0 +22871,30,25.89,40,0.0 +22871,54,7.45,40,0.0 +22871,5,21.35,46,0.0 +22871,45,9.5,44,0.0 +22871,48,12.75,1,0.0 +22871,19,9.2,32,0.0 +22871,18,62.5,25,0.0 +22871,49,20,23,0.0 +22871,69,36,7,0.0 +22871,11,21,37,0.0 +22871,31,12.5,17,0.0 +22871,66,17,23,0.0 +22871,53,32.8,42,0.0 +22871,12,38,3,0.0 +22871,39,18,30,0.0 +22871,8,40,7,0.0 +22871,21,10,2,0.0 +22871,62,49.3,23,0.0 +22871,1,18,9,0.0 +22871,57,19.5,28,0.0 +22871,72,34.8,35,0.0 +22871,47,9.5,48,0.0 +22871,52,7,48,0.0 +22871,38,263.5,21,0.0 +22871,55,24,14,0.0 +22872,4,22,19,0.0 +22872,16,17.45,46,0.0 +22872,43,46,17,0.0 +22872,41,9.65,37,0.0 +22872,44,19.45,11,0.0 +22873,66,17,50,0.0 +22873,45,9.5,1,0.0 +22873,16,17.45,39,0.0 +22873,6,25,36,0.0 +22873,20,81,32,0.0 +22873,33,2.5,18,0.0 +22873,56,38,2,0.0 +22873,64,33.25,18,0.0 +22873,25,14,47,0.0 +22873,23,9,18,0.0 +22873,19,9.2,37,0.0 +22873,74,10,14,0.0 +22873,7,30,9,0.0 +22873,4,22,11,0.0 +22873,29,123.79,2,0.0 +22873,75,7.75,7,0.0 +22873,21,10,24,0.0 +22873,49,20,31,0.0 +22873,55,24,1,0.0 +22873,34,14,41,0.0 +22873,15,15.5,42,0.0 +22873,35,18,26,0.0 +22873,37,26,48,0.0 +22873,46,12,18,0.0 +22873,50,16.25,6,0.0 +22873,68,12.5,32,0.0 +22873,36,19,4,0.0 +22873,8,40,38,0.0 +22874,14,23.25,8,0.0 +22874,3,10,17,0.0 +22874,1,18,1,0.0 +22874,59,55,7,0.0 +22874,18,62.5,21,0.0 +22874,51,53,31,0.0 +22874,17,39,9,0.0 +22874,44,19.45,38,0.0 +22874,53,32.8,40,0.0 +22874,4,22,28,0.0 +22874,24,4.5,28,0.0 +22874,56,38,49,0.0 +22874,65,21.05,18,0.0 +22874,12,38,34,0.0 +22874,74,10,20,0.0 +22874,25,14,28,0.0 +22874,46,12,30,0.0 +22874,36,19,37,0.0 +22874,6,25,35,0.0 +22874,77,13,32,0.0 +22874,9,97,41,0.0 +22874,41,9.65,20,0.0 +22874,34,14,30,0.0 +22874,70,15,44,0.0 +22874,38,263.5,39,0.0 +22874,10,31,33,0.0 +22874,39,18,32,0.0 +22874,11,21,46,0.0 +22874,16,17.45,1,0.0 +22874,22,21,34,0.0 +22874,71,21.5,36,0.0 +22874,73,15,44,0.0 +22874,20,81,15,0.0 +22874,29,123.79,21,0.0 +22874,45,9.5,34,0.0 +22874,8,40,34,0.0 +22874,42,14,10,0.0 +22874,43,46,33,0.0 +22874,58,13.25,1,0.0 +22874,33,2.5,6,0.0 +22874,35,18,15,0.0 +22874,64,33.25,33,0.0 +22874,2,19,8,0.0 +22874,75,7.75,44,0.0 +22874,61,28.5,40,0.0 +22874,15,15.5,5,0.0 +22875,37,26,37,0.0 +22875,20,81,22,0.0 +22875,43,46,13,0.0 +22875,1,18,7,0.0 +22875,33,2.5,31,0.0 +22875,62,49.3,47,0.0 +22875,18,62.5,38,0.0 +22875,3,10,36,0.0 +22875,55,24,45,0.0 +22875,21,10,36,0.0 +22875,26,31.23,26,0.0 +22875,8,40,19,0.0 +22875,63,43.9,40,0.0 +22875,52,7,46,0.0 +22875,51,53,4,0.0 +22875,59,55,28,0.0 +22875,27,43.9,39,0.0 +22875,25,14,31,0.0 +22875,49,20,25,0.0 +22875,66,17,8,0.0 +22875,30,25.89,4,0.0 +22875,13,6,22,0.0 +22875,16,17.45,27,0.0 +22875,54,7.45,27,0.0 +22875,70,15,4,0.0 +22875,35,18,23,0.0 +22875,15,15.5,34,0.0 +22875,69,36,26,0.0 +22875,44,19.45,3,0.0 +22875,65,21.05,30,0.0 +22875,2,19,8,0.0 +22875,7,30,30,0.0 +22875,6,25,47,0.0 +22875,34,14,4,0.0 +22875,46,12,28,0.0 +22875,76,18,34,0.0 +22875,19,9.2,49,0.0 +22875,67,14,8,0.0 +22875,14,23.25,41,0.0 +22875,22,21,16,0.0 +22875,68,12.5,38,0.0 +22875,57,19.5,43,0.0 +22875,50,16.25,35,0.0 +22875,29,123.79,18,0.0 +22875,77,13,34,0.0 +22875,61,28.5,16,0.0 +22875,9,97,12,0.0 +22875,38,263.5,21,0.0 +22875,36,19,31,0.0 +22875,23,9,22,0.0 +22875,39,18,37,0.0 +22875,53,32.8,15,0.0 +22876,25,14,6,0.0 +22876,38,263.5,31,0.0 +22876,9,97,20,0.0 +22876,74,10,34,0.0 +22876,60,34,47,0.0 +22876,48,12.75,27,0.0 +22876,64,33.25,48,0.0 +22876,41,9.65,42,0.0 +22876,45,9.5,36,0.0 +22876,31,12.5,10,0.0 +22876,32,32,18,0.0 +22876,14,23.25,50,0.0 +22876,33,2.5,26,0.0 +22876,4,22,38,0.0 +22876,3,10,33,0.0 +22876,65,21.05,11,0.0 +22876,52,7,42,0.0 +22876,58,13.25,13,0.0 +22876,26,31.23,5,0.0 +22876,47,9.5,41,0.0 +22876,15,15.5,14,0.0 +22876,35,18,14,0.0 +22876,34,14,7,0.0 +22876,54,7.45,20,0.0 +22876,12,38,33,0.0 +22876,19,9.2,39,0.0 +22876,2,19,30,0.0 +22876,44,19.45,4,0.0 +22876,28,45.6,26,0.0 +22876,10,31,22,0.0 +22876,37,26,13,0.0 +22876,73,15,6,0.0 +22876,6,25,30,0.0 +22876,68,12.5,45,0.0 +22876,36,19,18,0.0 +22876,21,10,21,0.0 +22876,51,53,13,0.0 +22876,55,24,18,0.0 +22876,53,32.8,24,0.0 +22876,29,123.79,47,0.0 +22876,39,18,1,0.0 +22876,46,12,15,0.0 +22876,76,18,34,0.0 +22876,8,40,11,0.0 +22876,23,9,13,0.0 +22876,22,21,10,0.0 +22876,75,7.75,40,0.0 +22876,11,21,50,0.0 +22876,62,49.3,17,0.0 +22876,18,62.5,15,0.0 +22876,20,81,21,0.0 +22876,67,14,8,0.0 +22876,61,28.5,12,0.0 +22876,50,16.25,14,0.0 +22876,17,39,48,0.0 +22876,63,43.9,37,0.0 +22876,40,18.4,21,0.0 +22876,16,17.45,4,0.0 +22877,10,31,22,0.0 +22877,4,22,29,0.0 +22877,77,13,50,0.0 +22877,26,31.23,27,0.0 +22877,30,25.89,41,0.0 +22877,55,24,41,0.0 +22877,12,38,15,0.0 +22877,37,26,5,0.0 +22877,11,21,36,0.0 +22877,8,40,43,0.0 +22877,47,9.5,24,0.0 +22877,23,9,44,0.0 +22877,9,97,19,0.0 +22877,63,43.9,45,0.0 +22877,58,13.25,2,0.0 +22877,1,18,14,0.0 +22877,71,21.5,29,0.0 +22877,18,62.5,8,0.0 +22877,28,45.6,21,0.0 +22877,34,14,36,0.0 +22877,24,4.5,29,0.0 +22877,76,18,48,0.0 +22877,66,17,39,0.0 +22877,15,15.5,29,0.0 +22877,21,10,5,0.0 +22877,33,2.5,27,0.0 +22877,45,9.5,26,0.0 +22877,46,12,42,0.0 +22878,68,12.5,9,0.0 +22878,12,38,20,0.0 +22878,61,28.5,27,0.0 +22878,42,14,37,0.0 +22878,70,15,28,0.0 +22878,5,21.35,25,0.0 +22878,38,263.5,4,0.0 +22878,64,33.25,36,0.0 +22878,26,31.23,35,0.0 +22878,41,9.65,47,0.0 +22878,31,12.5,40,0.0 +22878,46,12,13,0.0 +22878,29,123.79,16,0.0 +22878,8,40,35,0.0 +22878,6,25,46,0.0 +22878,58,13.25,23,0.0 +22878,20,81,21,0.0 +22878,35,18,8,0.0 +22878,63,43.9,26,0.0 +22879,26,31.23,31,0.0 +22879,54,7.45,31,0.0 +22879,30,25.89,50,0.0 +22879,35,18,8,0.0 +22879,1,18,1,0.0 +22879,22,21,4,0.0 +22879,18,62.5,43,0.0 +22879,34,14,42,0.0 +22879,23,9,30,0.0 +22879,40,18.4,6,0.0 +22879,2,19,22,0.0 +22879,13,6,43,0.0 +22879,57,19.5,44,0.0 +22879,36,19,40,0.0 +22879,60,34,39,0.0 +22879,63,43.9,17,0.0 +22879,33,2.5,14,0.0 +22879,67,14,25,0.0 +22879,53,32.8,50,0.0 +22879,55,24,6,0.0 +22879,12,38,22,0.0 +22879,70,15,50,0.0 +22879,59,55,5,0.0 +22879,74,10,25,0.0 +22879,45,9.5,2,0.0 +22879,72,34.8,31,0.0 +22879,56,38,44,0.0 +22879,51,53,14,0.0 +22879,46,12,11,0.0 +22880,36,19,48,0.0 +22880,6,25,17,0.0 +22880,42,14,12,0.0 +22880,68,12.5,37,0.0 +22880,64,33.25,47,0.0 +22880,59,55,7,0.0 +22880,3,10,37,0.0 +22880,76,18,47,0.0 +22880,49,20,4,0.0 +22880,71,21.5,11,0.0 +22880,13,6,17,0.0 +22880,70,15,31,0.0 +22880,18,62.5,9,0.0 +22880,34,14,22,0.0 +22880,37,26,25,0.0 +22880,53,32.8,13,0.0 +22880,24,4.5,45,0.0 +22880,2,19,1,0.0 +22880,60,34,18,0.0 +22880,55,24,29,0.0 +22880,11,21,20,0.0 +22880,67,14,48,0.0 +22880,28,45.6,16,0.0 +22880,73,15,40,0.0 +22880,17,39,35,0.0 +22880,23,9,28,0.0 +22880,52,7,13,0.0 +22880,51,53,21,0.0 +22880,58,13.25,15,0.0 +22880,4,22,19,0.0 +22880,75,7.75,13,0.0 +22880,61,28.5,36,0.0 +22880,9,97,2,0.0 +22880,41,9.65,38,0.0 +22880,50,16.25,41,0.0 +22880,72,34.8,33,0.0 +22880,62,49.3,30,0.0 +22880,15,15.5,7,0.0 +22880,31,12.5,20,0.0 +22880,43,46,34,0.0 +22880,47,9.5,27,0.0 +22880,46,12,18,0.0 +22880,7,30,27,0.0 +22880,10,31,45,0.0 +22880,29,123.79,9,0.0 +22880,57,19.5,13,0.0 +22880,63,43.9,10,0.0 +22880,65,21.05,43,0.0 +22880,69,36,47,0.0 +22880,40,18.4,37,0.0 +22880,66,17,16,0.0 +22880,44,19.45,47,0.0 +22880,38,263.5,42,0.0 +22880,27,43.9,37,0.0 +22880,48,12.75,38,0.0 +22880,1,18,11,0.0 +22880,33,2.5,5,0.0 +22880,14,23.25,12,0.0 +22880,21,10,39,0.0 +22880,30,25.89,39,0.0 +22880,45,9.5,1,0.0 +22880,8,40,7,0.0 +22880,54,7.45,31,0.0 +22880,32,32,24,0.0 +22880,19,9.2,24,0.0 +22880,22,21,5,0.0 +22880,20,81,8,0.0 +22880,5,21.35,28,0.0 +22880,77,13,10,0.0 +22880,39,18,30,0.0 +22880,74,10,15,0.0 +22880,56,38,43,0.0 +22880,25,14,13,0.0 +22880,35,18,39,0.0 +22881,20,81,6,0.0 +22881,36,19,18,0.0 +22881,67,14,12,0.0 +22881,70,15,17,0.0 +22881,21,10,46,0.0 +22881,60,34,16,0.0 +22881,16,17.45,7,0.0 +22881,34,14,28,0.0 +22881,47,9.5,12,0.0 +22881,48,12.75,49,0.0 +22881,29,123.79,28,0.0 +22881,27,43.9,25,0.0 +22881,32,32,37,0.0 +22881,10,31,26,0.0 +22881,42,14,17,0.0 +22881,38,263.5,17,0.0 +22881,22,21,21,0.0 +22881,59,55,25,0.0 +22881,68,12.5,27,0.0 +22881,15,15.5,24,0.0 +22881,37,26,21,0.0 +22881,43,46,8,0.0 +22881,12,38,38,0.0 +22881,75,7.75,36,0.0 +22881,69,36,36,0.0 +22881,72,34.8,12,0.0 +22881,73,15,6,0.0 +22881,31,12.5,48,0.0 +22881,62,49.3,4,0.0 +22881,52,7,49,0.0 +22881,53,32.8,7,0.0 +22881,33,2.5,24,0.0 +22881,54,7.45,20,0.0 +22882,69,36,42,0.0 +22882,56,38,18,0.0 +22882,72,34.8,23,0.0 +22882,47,9.5,50,0.0 +22882,41,9.65,15,0.0 +22882,59,55,1,0.0 +22882,3,10,24,0.0 +22882,12,38,36,0.0 +22882,66,17,11,0.0 +22882,44,19.45,25,0.0 +22882,48,12.75,13,0.0 +22882,65,21.05,44,0.0 +22882,6,25,43,0.0 +22882,57,19.5,47,0.0 +22882,46,12,29,0.0 +22882,26,31.23,21,0.0 +22882,49,20,37,0.0 +22882,31,12.5,35,0.0 +22882,77,13,7,0.0 +22882,58,13.25,14,0.0 +22882,16,17.45,41,0.0 +22882,14,23.25,18,0.0 +22882,32,32,46,0.0 +22882,39,18,10,0.0 +22882,28,45.6,34,0.0 +22882,74,10,17,0.0 +22882,42,14,8,0.0 +22882,5,21.35,44,0.0 +22882,37,26,26,0.0 +22882,68,12.5,48,0.0 +22882,9,97,44,0.0 +22882,7,30,19,0.0 +22882,45,9.5,18,0.0 +22882,23,9,23,0.0 +22882,64,33.25,50,0.0 +22882,21,10,37,0.0 +22882,38,263.5,18,0.0 +22882,52,7,21,0.0 +22882,2,19,32,0.0 +22882,13,6,29,0.0 +22882,76,18,18,0.0 +22882,71,21.5,30,0.0 +22882,30,25.89,38,0.0 +22882,22,21,27,0.0 +22882,75,7.75,2,0.0 +22882,53,32.8,40,0.0 +22883,36,19,41,0.0 +22883,59,55,35,0.0 +22883,2,19,11,0.0 +22883,37,26,26,0.0 +22883,33,2.5,23,0.0 +22883,26,31.23,20,0.0 +22883,45,9.5,35,0.0 +22883,35,18,15,0.0 +22883,69,36,21,0.0 +22883,28,45.6,24,0.0 +22883,7,30,37,0.0 +22883,30,25.89,14,0.0 +22883,16,17.45,31,0.0 +22883,39,18,30,0.0 +22883,6,25,24,0.0 +22883,66,17,41,0.0 +22883,60,34,43,0.0 +22883,10,31,37,0.0 +22883,47,9.5,38,0.0 +22883,64,33.25,7,0.0 +22883,17,39,11,0.0 +22883,62,49.3,34,0.0 +22883,9,97,10,0.0 +22883,34,14,1,0.0 +22883,73,15,47,0.0 +22883,76,18,34,0.0 +22883,49,20,43,0.0 +22883,5,21.35,34,0.0 +22883,44,19.45,48,0.0 +22883,77,13,28,0.0 +22883,12,38,38,0.0 +22883,42,14,32,0.0 +22883,58,13.25,3,0.0 +22883,31,12.5,29,0.0 +22883,74,10,38,0.0 +22883,75,7.75,30,0.0 +22883,41,9.65,10,0.0 +22883,57,19.5,16,0.0 +22883,25,14,31,0.0 +22883,11,21,19,0.0 +22883,55,24,24,0.0 +22883,1,18,44,0.0 +22883,61,28.5,31,0.0 +22883,15,15.5,3,0.0 +22883,3,10,46,0.0 +22883,72,34.8,21,0.0 +22883,22,21,6,0.0 +22883,71,21.5,39,0.0 +22883,52,7,43,0.0 +22883,20,81,39,0.0 +22883,43,46,14,0.0 +22883,23,9,43,0.0 +22883,53,32.8,18,0.0 +22883,48,12.75,23,0.0 +22883,38,263.5,9,0.0 +22883,67,14,38,0.0 +22883,13,6,41,0.0 +22883,70,15,44,0.0 +22883,8,40,39,0.0 +22883,21,10,21,0.0 +22883,56,38,49,0.0 +22883,32,32,49,0.0 +22883,27,43.9,29,0.0 +22883,18,62.5,6,0.0 +22883,63,43.9,24,0.0 +22883,24,4.5,47,0.0 +22883,4,22,17,0.0 +22883,50,16.25,11,0.0 +22883,68,12.5,27,0.0 +22883,65,21.05,31,0.0 +22883,29,123.79,29,0.0 +22883,51,53,10,0.0 +22883,40,18.4,7,0.0 +22883,46,12,21,0.0 +22883,54,7.45,48,0.0 +22883,19,9.2,14,0.0 +22884,33,2.5,36,0.0 +22884,56,38,17,0.0 +22884,26,31.23,22,0.0 +22884,63,43.9,35,0.0 +22884,2,19,24,0.0 +22884,16,17.45,6,0.0 +22884,47,9.5,28,0.0 +22884,67,14,23,0.0 +22884,14,23.25,48,0.0 +22884,62,49.3,3,0.0 +22884,25,14,2,0.0 +22884,45,9.5,16,0.0 +22884,4,22,1,0.0 +22884,73,15,31,0.0 +22884,70,15,30,0.0 +22884,20,81,1,0.0 +22884,64,33.25,12,0.0 +22884,37,26,17,0.0 +22884,23,9,1,0.0 +22884,71,21.5,23,0.0 +22884,51,53,2,0.0 +22884,28,45.6,11,0.0 +22884,65,21.05,12,0.0 +22884,21,10,32,0.0 +22884,43,46,4,0.0 +22884,66,17,30,0.0 +22884,11,21,46,0.0 +22884,53,32.8,48,0.0 +22884,68,12.5,27,0.0 +22884,76,18,22,0.0 +22885,33,2.5,33,0.0 +22885,5,21.35,45,0.0 +22885,7,30,27,0.0 +22885,38,263.5,12,0.0 +22885,55,24,3,0.0 +22885,37,26,22,0.0 +22885,8,40,30,0.0 +22885,43,46,38,0.0 +22885,65,21.05,50,0.0 +22885,59,55,40,0.0 +22885,54,7.45,28,0.0 +22885,71,21.5,20,0.0 +22885,70,15,12,0.0 +22885,1,18,49,0.0 +22885,76,18,36,0.0 +22885,16,17.45,28,0.0 +22885,9,97,50,0.0 +22885,3,10,4,0.0 +22885,11,21,35,0.0 +22885,42,14,39,0.0 +22885,47,9.5,18,0.0 +22885,40,18.4,30,0.0 +22885,17,39,35,0.0 +22885,69,36,44,0.0 +22885,74,10,17,0.0 +22885,49,20,48,0.0 +22885,15,15.5,6,0.0 +22885,61,28.5,15,0.0 +22885,30,25.89,7,0.0 +22885,13,6,17,0.0 +22885,14,23.25,43,0.0 +22885,6,25,10,0.0 +22885,45,9.5,46,0.0 +22885,27,43.9,42,0.0 +22885,48,12.75,44,0.0 +22885,57,19.5,5,0.0 +22885,73,15,31,0.0 +22885,39,18,1,0.0 +22885,35,18,21,0.0 +22885,12,38,34,0.0 +22885,68,12.5,43,0.0 +22885,51,53,28,0.0 +22885,28,45.6,35,0.0 +22885,41,9.65,10,0.0 +22885,19,9.2,13,0.0 +22885,56,38,50,0.0 +22885,31,12.5,21,0.0 +22886,10,31,10,0.0 +22886,25,14,41,0.0 +22886,14,23.25,45,0.0 +22886,4,22,30,0.0 +22886,17,39,38,0.0 +22886,5,21.35,34,0.0 +22886,15,15.5,28,0.0 +22886,50,16.25,21,0.0 +22886,65,21.05,10,0.0 +22886,47,9.5,13,0.0 +22887,4,22,38,0.0 +22887,33,2.5,35,0.0 +22887,12,38,7,0.0 +22887,48,12.75,3,0.0 +22887,53,32.8,22,0.0 +22887,29,123.79,18,0.0 +22887,62,49.3,22,0.0 +22887,2,19,41,0.0 +22887,39,18,37,0.0 +22887,13,6,10,0.0 +22887,28,45.6,37,0.0 +22887,64,33.25,48,0.0 +22887,38,263.5,32,0.0 +22887,67,14,25,0.0 +22887,66,17,37,0.0 +22887,60,34,38,0.0 +22887,24,4.5,7,0.0 +22887,52,7,12,0.0 +22887,46,12,12,0.0 +22887,57,19.5,33,0.0 +22887,72,34.8,24,0.0 +22887,6,25,40,0.0 +22887,73,15,9,0.0 +22887,50,16.25,19,0.0 +22887,22,21,18,0.0 +22887,8,40,43,0.0 +22887,21,10,10,0.0 +22887,69,36,20,0.0 +22887,36,19,47,0.0 +22887,18,62.5,4,0.0 +22887,47,9.5,47,0.0 +22887,76,18,46,0.0 +22887,7,30,32,0.0 +22887,42,14,24,0.0 +22887,71,21.5,35,0.0 +22887,23,9,37,0.0 +22887,55,24,32,0.0 +22887,19,9.2,23,0.0 +22887,37,26,5,0.0 +22887,63,43.9,39,0.0 +22887,14,23.25,8,0.0 +22887,77,13,33,0.0 +22887,70,15,33,0.0 +22887,11,21,45,0.0 +22887,74,10,13,0.0 +22887,17,39,19,0.0 +22887,26,31.23,27,0.0 +22887,30,25.89,27,0.0 +22887,49,20,38,0.0 +22887,61,28.5,8,0.0 +22887,68,12.5,15,0.0 +22887,41,9.65,41,0.0 +22887,34,14,34,0.0 +22887,65,21.05,27,0.0 +22887,43,46,50,0.0 +22887,59,55,44,0.0 +22887,31,12.5,41,0.0 +22887,20,81,5,0.0 +22887,44,19.45,36,0.0 +22887,10,31,29,0.0 +22887,32,32,14,0.0 +22887,40,18.4,3,0.0 +22887,27,43.9,6,0.0 +22887,75,7.75,22,0.0 +22887,5,21.35,25,0.0 +22887,51,53,8,0.0 +22887,54,7.45,2,0.0 +22887,35,18,42,0.0 +22887,1,18,12,0.0 +22887,58,13.25,41,0.0 +22887,45,9.5,22,0.0 +22887,3,10,1,0.0 +22887,9,97,27,0.0 +22887,16,17.45,2,0.0 +22888,70,15,4,0.0 +22888,33,2.5,13,0.0 +22888,10,31,5,0.0 +22888,53,32.8,40,0.0 +22888,45,9.5,8,0.0 +22888,34,14,10,0.0 +22888,68,12.5,47,0.0 +22888,51,53,49,0.0 +22888,28,45.6,12,0.0 +22888,31,12.5,46,0.0 +22888,16,17.45,11,0.0 +22888,67,14,12,0.0 +22888,77,13,50,0.0 +22888,74,10,35,0.0 +22888,42,14,39,0.0 +22888,60,34,24,0.0 +22888,64,33.25,46,0.0 +22888,19,9.2,45,0.0 +22888,9,97,2,0.0 +22888,8,40,7,0.0 +22888,6,25,27,0.0 +22888,30,25.89,35,0.0 +22888,4,22,48,0.0 +22888,20,81,12,0.0 +22888,2,19,29,0.0 +22888,7,30,34,0.0 +22888,72,34.8,31,0.0 +22888,29,123.79,47,0.0 +22889,18,62.5,6,0.0 +22889,62,49.3,35,0.0 +22889,15,15.5,11,0.0 +22889,57,19.5,17,0.0 +22889,20,81,27,0.0 +22889,70,15,17,0.0 +22890,18,62.5,41,0.0 +22890,11,21,19,0.0 +22890,2,19,46,0.0 +22890,29,123.79,31,0.0 +22890,31,12.5,48,0.0 +22890,22,21,35,0.0 +22890,57,19.5,44,0.0 +22890,72,34.8,31,0.0 +22890,24,4.5,4,0.0 +22890,1,18,12,0.0 +22890,15,15.5,37,0.0 +22890,6,25,9,0.0 +22890,5,21.35,16,0.0 +22890,68,12.5,26,0.0 +22890,17,39,8,0.0 +22890,12,38,19,0.0 +22890,39,18,37,0.0 +22890,8,40,50,0.0 +22890,37,26,12,0.0 +22890,67,14,21,0.0 +22890,32,32,17,0.0 +22890,62,49.3,38,0.0 +22890,55,24,44,0.0 +22890,26,31.23,32,0.0 +22890,7,30,47,0.0 +22890,34,14,35,0.0 +22890,65,21.05,15,0.0 +22890,36,19,30,0.0 +22890,38,263.5,50,0.0 +22890,45,9.5,40,0.0 +22890,69,36,41,0.0 +22890,73,15,23,0.0 +22890,74,10,32,0.0 +22890,53,32.8,14,0.0 +22891,6,25,9,0.0 +22891,33,2.5,6,0.0 +22891,71,21.5,13,0.0 +22891,16,17.45,22,0.0 +22891,63,43.9,16,0.0 +22891,17,39,27,0.0 +22891,61,28.5,27,0.0 +22891,29,123.79,41,0.0 +22891,53,32.8,48,0.0 +22891,18,62.5,13,0.0 +22891,12,38,27,0.0 +22891,55,24,40,0.0 +22891,1,18,24,0.0 +22891,60,34,49,0.0 +22891,21,10,50,0.0 +22891,40,18.4,47,0.0 +22891,25,14,1,0.0 +22891,75,7.75,21,0.0 +22891,66,17,2,0.0 +22891,28,45.6,47,0.0 +22891,5,21.35,49,0.0 +22891,19,9.2,43,0.0 +22891,8,40,27,0.0 +22891,13,6,4,0.0 +22891,73,15,45,0.0 +22891,10,31,43,0.0 +22891,68,12.5,33,0.0 +22891,48,12.75,19,0.0 +22891,20,81,45,0.0 +22891,76,18,11,0.0 +22891,41,9.65,45,0.0 +22891,34,14,38,0.0 +22891,7,30,1,0.0 +22891,44,19.45,24,0.0 +22891,58,13.25,39,0.0 +22891,51,53,31,0.0 +22891,64,33.25,9,0.0 +22891,50,16.25,21,0.0 +22891,45,9.5,42,0.0 +22891,57,19.5,38,0.0 +22891,62,49.3,8,0.0 +22891,70,15,24,0.0 +22891,31,12.5,45,0.0 +22891,22,21,37,0.0 +22891,37,26,21,0.0 +22891,36,19,8,0.0 +22891,14,23.25,3,0.0 +22891,32,32,10,0.0 +22891,38,263.5,19,0.0 +22891,11,21,7,0.0 +22891,67,14,13,0.0 +22891,43,46,22,0.0 +22891,54,7.45,21,0.0 +22891,24,4.5,28,0.0 +22891,27,43.9,8,0.0 +22891,77,13,14,0.0 +22891,26,31.23,49,0.0 +22891,59,55,19,0.0 +22891,47,9.5,47,0.0 +22891,49,20,15,0.0 +22891,42,14,36,0.0 +22891,74,10,49,0.0 +22891,56,38,41,0.0 +22891,2,19,34,0.0 +22891,72,34.8,10,0.0 +22891,39,18,46,0.0 +22891,69,36,26,0.0 +22891,65,21.05,23,0.0 +22891,35,18,48,0.0 +22892,20,81,27,0.0 +22892,4,22,34,0.0 +22892,17,39,24,0.0 +22892,46,12,23,0.0 +22892,39,18,40,0.0 +22892,2,19,48,0.0 +22892,19,9.2,50,0.0 +22892,65,21.05,36,0.0 +22892,41,9.65,1,0.0 +22892,16,17.45,12,0.0 +22892,30,25.89,35,0.0 +22892,21,10,39,0.0 +22892,58,13.25,43,0.0 +22892,69,36,24,0.0 +22892,51,53,44,0.0 +22892,26,31.23,33,0.0 +22892,60,34,29,0.0 +22892,36,19,13,0.0 +22892,43,46,33,0.0 +22892,38,263.5,3,0.0 +22892,11,21,4,0.0 +22892,54,7.45,43,0.0 +22892,70,15,14,0.0 +22892,67,14,15,0.0 +22892,8,40,50,0.0 +22892,61,28.5,22,0.0 +22892,48,12.75,20,0.0 +22892,53,32.8,11,0.0 +22892,27,43.9,45,0.0 +22892,22,21,23,0.0 +22892,10,31,36,0.0 +22892,42,14,9,0.0 +22892,59,55,47,0.0 +22892,56,38,39,0.0 +22892,40,18.4,33,0.0 +22892,1,18,36,0.0 +22892,15,15.5,50,0.0 +22892,28,45.6,47,0.0 +22892,66,17,28,0.0 +22892,50,16.25,45,0.0 +22892,57,19.5,10,0.0 +22892,37,26,21,0.0 +22892,9,97,37,0.0 +22893,45,9.5,46,0.0 +22893,54,7.45,25,0.0 +22893,61,28.5,32,0.0 +22893,73,15,49,0.0 +22893,50,16.25,32,0.0 +22893,49,20,49,0.0 +22893,64,33.25,34,0.0 +22893,30,25.89,35,0.0 +22893,17,39,48,0.0 +22893,77,13,29,0.0 +22893,6,25,30,0.0 +22893,55,24,43,0.0 +22893,38,263.5,46,0.0 +22893,4,22,25,0.0 +22893,68,12.5,17,0.0 +22893,11,21,42,0.0 +22893,31,12.5,50,0.0 +22893,41,9.65,39,0.0 +22893,63,43.9,16,0.0 +22893,23,9,6,0.0 +22893,3,10,29,0.0 +22893,57,19.5,39,0.0 +22893,48,12.75,29,0.0 +22893,12,38,45,0.0 +22893,32,32,21,0.0 +22893,27,43.9,28,0.0 +22893,13,6,10,0.0 +22893,65,21.05,44,0.0 +22893,2,19,15,0.0 +22893,18,62.5,14,0.0 +22893,16,17.45,31,0.0 +22893,20,81,6,0.0 +22893,35,18,13,0.0 +22893,39,18,42,0.0 +22893,60,34,2,0.0 +22893,71,21.5,29,0.0 +22893,62,49.3,3,0.0 +22893,59,55,4,0.0 +22893,14,23.25,19,0.0 +22893,7,30,29,0.0 +22893,56,38,20,0.0 +22893,37,26,34,0.0 +22893,36,19,25,0.0 +22893,21,10,11,0.0 +22893,8,40,27,0.0 +22893,58,13.25,17,0.0 +22893,15,15.5,50,0.0 +22893,1,18,9,0.0 +22893,10,31,12,0.0 +22893,53,32.8,6,0.0 +22893,19,9.2,13,0.0 +22893,72,34.8,29,0.0 +22893,70,15,2,0.0 +22893,9,97,50,0.0 +22893,46,12,8,0.0 +22893,34,14,48,0.0 +22893,22,21,39,0.0 +22893,74,10,13,0.0 +22893,26,31.23,27,0.0 +22893,75,7.75,21,0.0 +22893,69,36,26,0.0 +22893,67,14,40,0.0 +22893,25,14,20,0.0 +22893,42,14,3,0.0 +22893,24,4.5,5,0.0 +22893,66,17,38,0.0 +22893,44,19.45,10,0.0 +22893,40,18.4,30,0.0 +22893,51,53,3,0.0 +22893,33,2.5,48,0.0 +22893,29,123.79,36,0.0 +22893,76,18,32,0.0 +22893,28,45.6,29,0.0 +22893,47,9.5,31,0.0 +22893,52,7,6,0.0 +22893,5,21.35,45,0.0 +22893,43,46,25,0.0 +22894,67,14,29,0.0 +22894,20,81,48,0.0 +22894,30,25.89,25,0.0 +22894,16,17.45,41,0.0 +22894,11,21,1,0.0 +22894,7,30,37,0.0 +22894,69,36,20,0.0 +22894,22,21,37,0.0 +22894,5,21.35,23,0.0 +22894,35,18,20,0.0 +22894,24,4.5,32,0.0 +22894,29,123.79,28,0.0 +22894,12,38,25,0.0 +22894,39,18,30,0.0 +22894,76,18,22,0.0 +22894,37,26,14,0.0 +22894,43,46,22,0.0 +22894,50,16.25,25,0.0 +22894,4,22,16,0.0 +22894,77,13,27,0.0 +22894,28,45.6,14,0.0 +22894,68,12.5,42,0.0 +22894,40,18.4,46,0.0 +22894,41,9.65,49,0.0 +22894,73,15,36,0.0 +22894,64,33.25,28,0.0 +22894,59,55,12,0.0 +22894,38,263.5,14,0.0 +22894,51,53,6,0.0 +22894,2,19,32,0.0 +22894,75,7.75,37,0.0 +22894,56,38,37,0.0 +22894,42,14,35,0.0 +22894,13,6,34,0.0 +22894,31,12.5,2,0.0 +22894,33,2.5,5,0.0 +22894,17,39,42,0.0 +22894,74,10,2,0.0 +22894,14,23.25,13,0.0 +22894,15,15.5,47,0.0 +22894,57,19.5,48,0.0 +22894,27,43.9,17,0.0 +22894,46,12,20,0.0 +22894,45,9.5,46,0.0 +22894,18,62.5,39,0.0 +22894,58,13.25,34,0.0 +22894,10,31,13,0.0 +22894,25,14,24,0.0 +22894,55,24,2,0.0 +22894,34,14,47,0.0 +22894,71,21.5,1,0.0 +22894,44,19.45,2,0.0 +22894,54,7.45,17,0.0 +22894,19,9.2,36,0.0 +22894,23,9,27,0.0 +22895,16,17.45,32,0.0 +22896,13,6,38,0.0 +22896,51,53,22,0.0 +22896,10,31,47,0.0 +22896,46,12,19,0.0 +22896,59,55,46,0.0 +22896,24,4.5,2,0.0 +22896,54,7.45,39,0.0 +22896,37,26,10,0.0 +22896,30,25.89,44,0.0 +22896,38,263.5,17,0.0 +22896,67,14,35,0.0 +22896,36,19,36,0.0 +22896,65,21.05,30,0.0 +22896,50,16.25,26,0.0 +22896,29,123.79,28,0.0 +22896,74,10,34,0.0 +22896,68,12.5,29,0.0 +22896,63,43.9,43,0.0 +22896,48,12.75,46,0.0 +22896,77,13,5,0.0 +22896,35,18,6,0.0 +22896,2,19,28,0.0 +22896,49,20,31,0.0 +22896,66,17,12,0.0 +22896,15,15.5,13,0.0 +22896,76,18,45,0.0 +22896,4,22,33,0.0 +22896,73,15,16,0.0 +22896,69,36,36,0.0 +22896,18,62.5,21,0.0 +22896,61,28.5,25,0.0 +22896,40,18.4,41,0.0 +22896,8,40,21,0.0 +22896,47,9.5,46,0.0 +22896,42,14,39,0.0 +22896,3,10,27,0.0 +22896,31,12.5,2,0.0 +22896,71,21.5,50,0.0 +22896,34,14,24,0.0 +22896,12,38,25,0.0 +22896,21,10,40,0.0 +22896,75,7.75,4,0.0 +22896,60,34,36,0.0 +22896,28,45.6,49,0.0 +22896,55,24,29,0.0 +22896,72,34.8,23,0.0 +22896,64,33.25,5,0.0 +22896,25,14,35,0.0 +22896,32,32,21,0.0 +22896,9,97,32,0.0 +22896,57,19.5,4,0.0 +22896,33,2.5,13,0.0 +22896,23,9,37,0.0 +22896,19,9.2,1,0.0 +22896,70,15,45,0.0 +22896,56,38,49,0.0 +22896,22,21,25,0.0 +22896,62,49.3,38,0.0 +22896,58,13.25,37,0.0 +22897,56,38,26,0.0 +22897,67,14,18,0.0 +22897,74,10,20,0.0 +22897,41,9.65,45,0.0 +22897,60,34,43,0.0 +22897,40,18.4,50,0.0 +22897,15,15.5,27,0.0 +22897,37,26,34,0.0 +22897,32,32,43,0.0 +22897,38,263.5,50,0.0 +22897,63,43.9,3,0.0 +22897,12,38,3,0.0 +22897,23,9,12,0.0 +22897,10,31,28,0.0 +22897,52,7,47,0.0 +22897,72,34.8,10,0.0 +22897,36,19,23,0.0 +22897,9,97,9,0.0 +22897,22,21,28,0.0 +22897,39,18,2,0.0 +22897,16,17.45,36,0.0 +22897,69,36,30,0.0 +22897,26,31.23,9,0.0 +22897,6,25,44,0.0 +22897,48,12.75,25,0.0 +22897,24,4.5,37,0.0 +22897,65,21.05,37,0.0 +22897,54,7.45,6,0.0 +22897,13,6,44,0.0 +22897,35,18,22,0.0 +22897,21,10,9,0.0 +22897,31,12.5,41,0.0 +22897,20,81,42,0.0 +22897,75,7.75,13,0.0 +22897,3,10,34,0.0 +22897,46,12,19,0.0 +22897,18,62.5,31,0.0 +22897,14,23.25,29,0.0 +22897,68,12.5,38,0.0 +22897,30,25.89,16,0.0 +22897,66,17,48,0.0 +22897,11,21,35,0.0 +22897,64,33.25,47,0.0 +22897,2,19,17,0.0 +22897,51,53,41,0.0 +22897,76,18,40,0.0 +22897,29,123.79,20,0.0 +22897,77,13,5,0.0 +22897,27,43.9,35,0.0 +22897,62,49.3,37,0.0 +22897,59,55,17,0.0 +22897,43,46,32,0.0 +22897,47,9.5,15,0.0 +22897,50,16.25,47,0.0 +22897,4,22,9,0.0 +22897,53,32.8,23,0.0 +22898,70,15,17,0.0 +22899,50,16.25,46,0.0 +22899,8,40,39,0.0 +22899,28,45.6,33,0.0 +22899,3,10,20,0.0 +22899,77,13,40,0.0 +22899,26,31.23,33,0.0 +22900,65,21.05,5,0.0 +22900,7,30,11,0.0 +22900,41,9.65,22,0.0 +22900,4,22,30,0.0 +22900,66,17,46,0.0 +22900,76,18,9,0.0 +22900,45,9.5,32,0.0 +22900,56,38,49,0.0 +22900,37,26,13,0.0 +22900,75,7.75,29,0.0 +22900,5,21.35,30,0.0 +22900,18,62.5,33,0.0 +22900,6,25,16,0.0 +22900,60,34,36,0.0 +22900,29,123.79,12,0.0 +22900,51,53,17,0.0 +22900,42,14,20,0.0 +22900,46,12,25,0.0 +22900,24,4.5,33,0.0 +22900,57,19.5,13,0.0 +22900,32,32,45,0.0 +22900,72,34.8,42,0.0 +22900,13,6,28,0.0 +22900,68,12.5,21,0.0 +22900,26,31.23,39,0.0 +22900,63,43.9,13,0.0 +22900,50,16.25,37,0.0 +22900,17,39,44,0.0 +22900,34,14,33,0.0 +22900,10,31,14,0.0 +22900,28,45.6,46,0.0 +22900,16,17.45,24,0.0 +22900,22,21,11,0.0 +22900,19,9.2,13,0.0 +22900,20,81,36,0.0 +22900,58,13.25,11,0.0 +22900,62,49.3,25,0.0 +22900,74,10,37,0.0 +22900,12,38,28,0.0 +22900,67,14,44,0.0 +22900,47,9.5,50,0.0 +22900,15,15.5,28,0.0 +22900,36,19,39,0.0 +22900,33,2.5,34,0.0 +22900,14,23.25,14,0.0 +22900,8,40,4,0.0 +22900,11,21,11,0.0 +22900,73,15,24,0.0 +22900,43,46,22,0.0 +22900,30,25.89,46,0.0 +22900,52,7,41,0.0 +22900,59,55,8,0.0 +22900,64,33.25,43,0.0 +22900,31,12.5,30,0.0 +22900,23,9,11,0.0 +22900,69,36,30,0.0 +22900,61,28.5,26,0.0 +22900,1,18,12,0.0 +22900,35,18,17,0.0 +22900,70,15,6,0.0 +22900,21,10,9,0.0 +22900,2,19,5,0.0 +22900,27,43.9,31,0.0 +22900,39,18,32,0.0 +22900,55,24,32,0.0 +22900,40,18.4,39,0.0 +22900,54,7.45,36,0.0 +22900,3,10,13,0.0 +22900,38,263.5,12,0.0 +22900,25,14,19,0.0 +22900,44,19.45,50,0.0 +22900,9,97,2,0.0 +22900,49,20,43,0.0 +22900,48,12.75,48,0.0 +22900,53,32.8,39,0.0 +22901,47,9.5,31,0.0 +22901,60,34,41,0.0 +22901,38,263.5,35,0.0 +22901,9,97,28,0.0 +22901,19,9.2,14,0.0 +22901,69,36,24,0.0 +22901,15,15.5,37,0.0 +22901,26,31.23,31,0.0 +22901,12,38,9,0.0 +22901,48,12.75,17,0.0 +22901,50,16.25,6,0.0 +22901,31,12.5,12,0.0 +22901,73,15,5,0.0 +22901,6,25,48,0.0 +22901,67,14,30,0.0 +22901,13,6,35,0.0 +22901,2,19,34,0.0 +22901,3,10,16,0.0 +22901,11,21,36,0.0 +22901,34,14,15,0.0 +22901,77,13,23,0.0 +22901,33,2.5,13,0.0 +22901,8,40,7,0.0 +22901,71,21.5,7,0.0 +22901,32,32,25,0.0 +22901,52,7,15,0.0 +22901,1,18,39,0.0 +22901,14,23.25,10,0.0 +22901,25,14,3,0.0 +22901,57,19.5,29,0.0 +22901,4,22,34,0.0 +22901,37,26,25,0.0 +22901,17,39,40,0.0 +22901,40,18.4,24,0.0 +22901,61,28.5,43,0.0 +22901,42,14,47,0.0 +22901,72,34.8,29,0.0 +22901,44,19.45,43,0.0 +22901,74,10,15,0.0 +22901,41,9.65,46,0.0 +22901,76,18,23,0.0 +22901,46,12,26,0.0 +22901,7,30,33,0.0 +22901,27,43.9,25,0.0 +22901,36,19,50,0.0 +22901,16,17.45,33,0.0 +22901,45,9.5,46,0.0 +22901,10,31,22,0.0 +22901,22,21,10,0.0 +22901,43,46,47,0.0 +22901,75,7.75,22,0.0 +22901,49,20,50,0.0 +22901,39,18,24,0.0 +22901,53,32.8,5,0.0 +22901,58,13.25,17,0.0 +22901,23,9,16,0.0 +22901,18,62.5,37,0.0 +22901,63,43.9,18,0.0 +22901,28,45.6,27,0.0 +22901,66,17,25,0.0 +22901,24,4.5,34,0.0 +22901,59,55,23,0.0 +22901,35,18,29,0.0 +22901,54,7.45,26,0.0 +22901,55,24,32,0.0 +22901,5,21.35,9,0.0 +22901,64,33.25,26,0.0 +22901,30,25.89,34,0.0 +22901,70,15,24,0.0 +22901,20,81,10,0.0 +22901,56,38,35,0.0 +22901,62,49.3,17,0.0 +22902,23,9,34,0.0 +22902,12,38,50,0.0 +22902,29,123.79,5,0.0 +22902,45,9.5,43,0.0 +22902,77,13,15,0.0 +22902,74,10,22,0.0 +22902,44,19.45,42,0.0 +22902,32,32,38,0.0 +22902,61,28.5,49,0.0 +22902,46,12,6,0.0 +22902,43,46,37,0.0 +22902,28,45.6,42,0.0 +22902,13,6,16,0.0 +22902,1,18,30,0.0 +22902,24,4.5,14,0.0 +22902,50,16.25,44,0.0 +22902,54,7.45,3,0.0 +22902,2,19,1,0.0 +22902,63,43.9,30,0.0 +22902,60,34,34,0.0 +22902,36,19,31,0.0 +22902,20,81,19,0.0 +22902,11,21,28,0.0 +22902,26,31.23,10,0.0 +22902,15,15.5,26,0.0 +22902,57,19.5,39,0.0 +22903,12,38,6,0.0 +22903,16,17.45,29,0.0 +22903,5,21.35,14,0.0 +22903,35,18,43,0.0 +22903,64,33.25,39,0.0 +22903,58,13.25,14,0.0 +22904,39,18,7,0.0 +22904,1,18,26,0.0 +22904,21,10,15,0.0 +22904,37,26,48,0.0 +22904,33,2.5,18,0.0 +22904,25,14,17,0.0 +22904,58,13.25,34,0.0 +22905,27,43.9,48,0.0 +22905,66,17,4,0.0 +22905,5,21.35,38,0.0 +22905,62,49.3,17,0.0 +22905,63,43.9,38,0.0 +22905,49,20,35,0.0 +22905,51,53,24,0.0 +22905,50,16.25,3,0.0 +22905,72,34.8,15,0.0 +22905,74,10,37,0.0 +22905,37,26,39,0.0 +22905,46,12,38,0.0 +22905,77,13,15,0.0 +22905,67,14,37,0.0 +22905,68,12.5,2,0.0 +22905,29,123.79,49,0.0 +22905,69,36,45,0.0 +22905,11,21,45,0.0 +22905,57,19.5,35,0.0 +22905,10,31,46,0.0 +22905,15,15.5,19,0.0 +22905,39,18,27,0.0 +22905,55,24,6,0.0 +22905,2,19,25,0.0 +22905,32,32,2,0.0 +22905,20,81,28,0.0 +22906,61,28.5,35,0.0 +22906,69,36,9,0.0 +22906,9,97,36,0.0 +22906,10,31,42,0.0 +22906,41,9.65,12,0.0 +22906,65,21.05,50,0.0 +22906,29,123.79,6,0.0 +22906,37,26,42,0.0 +22906,34,14,37,0.0 +22906,5,21.35,28,0.0 +22906,4,22,19,0.0 +22906,76,18,21,0.0 +22906,17,39,49,0.0 +22906,36,19,28,0.0 +22906,58,13.25,41,0.0 +22906,49,20,48,0.0 +22906,56,38,40,0.0 +22906,50,16.25,4,0.0 +22906,14,23.25,15,0.0 +22906,30,25.89,8,0.0 +22906,7,30,11,0.0 +22906,40,18.4,44,0.0 +22906,20,81,35,0.0 +22906,8,40,22,0.0 +22906,72,34.8,22,0.0 +22906,27,43.9,8,0.0 +22906,70,15,45,0.0 +22906,33,2.5,14,0.0 +22906,57,19.5,44,0.0 +22906,3,10,1,0.0 +22906,22,21,23,0.0 +22906,32,32,10,0.0 +22906,66,17,8,0.0 +22906,47,9.5,41,0.0 +22906,1,18,42,0.0 +22906,74,10,23,0.0 +22906,11,21,16,0.0 +22906,31,12.5,33,0.0 +22906,24,4.5,28,0.0 +22906,38,263.5,16,0.0 +22906,12,38,13,0.0 +22906,75,7.75,46,0.0 +22906,67,14,26,0.0 +22906,71,21.5,23,0.0 +22906,68,12.5,20,0.0 +22906,18,62.5,26,0.0 +22906,63,43.9,9,0.0 +22906,53,32.8,11,0.0 +22906,44,19.45,46,0.0 +22906,45,9.5,17,0.0 +22906,15,15.5,34,0.0 +22906,46,12,39,0.0 +22906,35,18,22,0.0 +22906,2,19,5,0.0 +22906,51,53,25,0.0 +22906,26,31.23,36,0.0 +22906,39,18,6,0.0 +22906,13,6,26,0.0 +22906,16,17.45,27,0.0 +22906,43,46,17,0.0 +22906,54,7.45,1,0.0 +22906,23,9,6,0.0 +22906,60,34,30,0.0 +22906,21,10,47,0.0 +22906,77,13,28,0.0 +22907,30,25.89,40,0.0 +22907,49,20,12,0.0 +22907,54,7.45,47,0.0 +22907,61,28.5,37,0.0 +22907,37,26,13,0.0 +22907,19,9.2,8,0.0 +22907,9,97,11,0.0 +22907,31,12.5,43,0.0 +22907,12,38,26,0.0 +22907,60,34,2,0.0 +22907,76,18,13,0.0 +22907,35,18,6,0.0 +22907,6,25,37,0.0 +22907,66,17,12,0.0 +22907,36,19,8,0.0 +22907,28,45.6,31,0.0 +22907,77,13,11,0.0 +22907,47,9.5,8,0.0 +22907,71,21.5,7,0.0 +22907,25,14,31,0.0 +22907,52,7,38,0.0 +22907,63,43.9,39,0.0 +22907,10,31,49,0.0 +22907,40,18.4,48,0.0 +22907,62,49.3,17,0.0 +22907,17,39,34,0.0 +22907,68,12.5,21,0.0 +22907,51,53,14,0.0 +22907,2,19,22,0.0 +22907,7,30,20,0.0 +22907,69,36,3,0.0 +22907,4,22,26,0.0 +22907,64,33.25,20,0.0 +22907,75,7.75,29,0.0 +22907,73,15,42,0.0 +22907,53,32.8,36,0.0 +22907,20,81,41,0.0 +22907,46,12,15,0.0 +22907,21,10,26,0.0 +22907,5,21.35,27,0.0 +22907,32,32,48,0.0 +22907,45,9.5,21,0.0 +22907,39,18,4,0.0 +22907,65,21.05,22,0.0 +22907,41,9.65,6,0.0 +22907,18,62.5,22,0.0 +22907,74,10,1,0.0 +22907,11,21,32,0.0 +22907,44,19.45,42,0.0 +22907,58,13.25,34,0.0 +22907,48,12.75,21,0.0 +22907,42,14,1,0.0 +22907,15,15.5,31,0.0 +22907,56,38,4,0.0 +22907,13,6,27,0.0 +22907,22,21,5,0.0 +22907,8,40,16,0.0 +22907,34,14,9,0.0 +22907,72,34.8,13,0.0 +22907,27,43.9,29,0.0 +22907,38,263.5,2,0.0 +22907,29,123.79,13,0.0 +22907,14,23.25,12,0.0 +22907,3,10,33,0.0 +22907,23,9,33,0.0 +22908,28,45.6,43,0.0 +22908,40,18.4,6,0.0 +22908,44,19.45,42,0.0 +22908,63,43.9,22,0.0 +22908,37,26,29,0.0 +22908,51,53,33,0.0 +22908,24,4.5,7,0.0 +22908,48,12.75,11,0.0 +22908,62,49.3,39,0.0 +22908,64,33.25,1,0.0 +22908,52,7,7,0.0 +22908,5,21.35,3,0.0 +22908,55,24,34,0.0 +22908,26,31.23,15,0.0 +22908,60,34,36,0.0 +22908,27,43.9,34,0.0 +22908,57,19.5,2,0.0 +22908,22,21,21,0.0 +22908,66,17,12,0.0 +22908,58,13.25,31,0.0 +22908,30,25.89,24,0.0 +22908,43,46,38,0.0 +22908,42,14,46,0.0 +22908,54,7.45,13,0.0 +22908,71,21.5,15,0.0 +22908,10,31,11,0.0 +22908,29,123.79,3,0.0 +22908,77,13,12,0.0 +22908,25,14,8,0.0 +22909,44,19.45,14,0.0 +22909,66,17,45,0.0 +22909,21,10,39,0.0 +22909,54,7.45,48,0.0 +22909,69,36,34,0.0 +22909,11,21,30,0.0 +22909,29,123.79,29,0.0 +22909,20,81,32,0.0 +22909,22,21,39,0.0 +22909,74,10,4,0.0 +22909,60,34,14,0.0 +22909,56,38,21,0.0 +22909,32,32,2,0.0 +22909,13,6,1,0.0 +22909,62,49.3,17,0.0 +22909,28,45.6,48,0.0 +22909,27,43.9,19,0.0 +22909,63,43.9,21,0.0 +22909,30,25.89,24,0.0 +22909,10,31,37,0.0 +22909,64,33.25,5,0.0 +22909,57,19.5,22,0.0 +22909,38,263.5,9,0.0 +22909,7,30,40,0.0 +22909,5,21.35,11,0.0 +22909,49,20,39,0.0 +22909,67,14,18,0.0 +22909,51,53,2,0.0 +22909,50,16.25,21,0.0 +22909,77,13,25,0.0 +22909,2,19,3,0.0 +22909,73,15,27,0.0 +22909,65,21.05,36,0.0 +22909,3,10,15,0.0 +22909,14,23.25,4,0.0 +22909,46,12,11,0.0 +22909,45,9.5,37,0.0 +22909,61,28.5,17,0.0 +22909,18,62.5,27,0.0 +22909,34,14,37,0.0 +22909,17,39,6,0.0 +22909,48,12.75,6,0.0 +22909,72,34.8,5,0.0 +22909,15,15.5,3,0.0 +22909,68,12.5,23,0.0 +22909,33,2.5,44,0.0 +22909,4,22,26,0.0 +22909,52,7,28,0.0 +22909,58,13.25,35,0.0 +22909,19,9.2,20,0.0 +22909,76,18,24,0.0 +22909,39,18,13,0.0 +22910,13,6,50,0.0 +22910,35,18,31,0.0 +22910,30,25.89,13,0.0 +22910,37,26,13,0.0 +22910,45,9.5,4,0.0 +22910,48,12.75,9,0.0 +22910,27,43.9,8,0.0 +22910,3,10,41,0.0 +22910,7,30,7,0.0 +22910,73,15,3,0.0 +22910,72,34.8,40,0.0 +22910,42,14,39,0.0 +22910,54,7.45,6,0.0 +22910,62,49.3,34,0.0 +22910,9,97,1,0.0 +22910,25,14,47,0.0 +22911,3,10,47,0.0 +22911,63,43.9,4,0.0 +22911,13,6,4,0.0 +22911,9,97,49,0.0 +22912,42,14,38,0.0 +22913,50,16.25,9,0.0 +22913,41,9.65,10,0.0 +22913,34,14,6,0.0 +22913,1,18,19,0.0 +22913,7,30,42,0.0 +22913,59,55,33,0.0 +22913,71,21.5,20,0.0 +22913,49,20,19,0.0 +22913,63,43.9,13,0.0 +22913,66,17,13,0.0 +22913,9,97,13,0.0 +22913,29,123.79,50,0.0 +22913,75,7.75,8,0.0 +22913,76,18,17,0.0 +22913,44,19.45,14,0.0 +22913,21,10,11,0.0 +22913,38,263.5,2,0.0 +22913,6,25,45,0.0 +22913,56,38,11,0.0 +22913,51,53,1,0.0 +22913,77,13,24,0.0 +22913,15,15.5,44,0.0 +22913,22,21,21,0.0 +22913,36,19,19,0.0 +22913,74,10,32,0.0 +22913,26,31.23,19,0.0 +22913,55,24,26,0.0 +22913,17,39,25,0.0 +22913,39,18,46,0.0 +22913,25,14,35,0.0 +22913,42,14,5,0.0 +22913,33,2.5,11,0.0 +22913,35,18,10,0.0 +22913,19,9.2,28,0.0 +22913,27,43.9,2,0.0 +22913,5,21.35,44,0.0 +22913,14,23.25,45,0.0 +22913,48,12.75,31,0.0 +22913,53,32.8,2,0.0 +22913,58,13.25,22,0.0 +22913,54,7.45,17,0.0 +22913,64,33.25,36,0.0 +22913,37,26,50,0.0 +22913,47,9.5,11,0.0 +22913,57,19.5,37,0.0 +22913,31,12.5,17,0.0 +22913,4,22,40,0.0 +22913,24,4.5,22,0.0 +22913,23,9,14,0.0 +22913,12,38,2,0.0 +22913,16,17.45,25,0.0 +22913,43,46,46,0.0 +22913,72,34.8,44,0.0 +22913,13,6,36,0.0 +22913,40,18.4,49,0.0 +22913,28,45.6,42,0.0 +22913,62,49.3,20,0.0 +22913,67,14,45,0.0 +22913,32,32,32,0.0 +22913,68,12.5,49,0.0 +22913,20,81,35,0.0 +22913,69,36,7,0.0 +22913,3,10,19,0.0 +22913,10,31,32,0.0 +22913,2,19,46,0.0 +22913,18,62.5,29,0.0 +22913,46,12,47,0.0 +22913,45,9.5,22,0.0 +22913,65,21.05,18,0.0 +22913,8,40,30,0.0 +22913,11,21,42,0.0 +22914,55,24,41,0.0 +22914,50,16.25,36,0.0 +22914,76,18,13,0.0 +22914,41,9.65,32,0.0 +22914,14,23.25,10,0.0 +22914,71,21.5,41,0.0 +22914,12,38,19,0.0 +22914,31,12.5,7,0.0 +22914,20,81,5,0.0 +22914,69,36,8,0.0 +22914,65,21.05,31,0.0 +22914,51,53,33,0.0 +22914,15,15.5,29,0.0 +22914,21,10,6,0.0 +22914,54,7.45,24,0.0 +22914,4,22,16,0.0 +22914,40,18.4,42,0.0 +22914,7,30,5,0.0 +22914,9,97,47,0.0 +22914,39,18,9,0.0 +22914,67,14,18,0.0 +22915,74,10,8,0.0 +22915,57,19.5,37,0.0 +22915,49,20,45,0.0 +22915,38,263.5,27,0.0 +22915,65,21.05,30,0.0 +22915,13,6,10,0.0 +22915,70,15,13,0.0 +22915,14,23.25,34,0.0 +22915,47,9.5,20,0.0 +22915,51,53,41,0.0 +22915,48,12.75,36,0.0 +22915,41,9.65,2,0.0 +22915,71,21.5,11,0.0 +22915,54,7.45,48,0.0 +22915,52,7,48,0.0 +22915,42,14,12,0.0 +22915,67,14,49,0.0 +22915,26,31.23,33,0.0 +22915,7,30,21,0.0 +22916,69,36,39,0.0 +22916,72,34.8,36,0.0 +22916,50,16.25,8,0.0 +22916,71,21.5,28,0.0 +22916,51,53,34,0.0 +22916,41,9.65,20,0.0 +22916,5,21.35,15,0.0 +22916,48,12.75,42,0.0 +22916,59,55,34,0.0 +22916,13,6,11,0.0 +22916,20,81,25,0.0 +22916,56,38,5,0.0 +22916,75,7.75,1,0.0 +22916,44,19.45,38,0.0 +22916,21,10,8,0.0 +22916,38,263.5,8,0.0 +22916,68,12.5,5,0.0 +22916,55,24,30,0.0 +22916,16,17.45,30,0.0 +22916,9,97,16,0.0 +22916,19,9.2,9,0.0 +22916,62,49.3,49,0.0 +22916,57,19.5,31,0.0 +22916,36,19,3,0.0 +22916,61,28.5,45,0.0 +22916,67,14,43,0.0 +22916,77,13,38,0.0 +22916,65,21.05,46,0.0 +22916,12,38,30,0.0 +22916,4,22,29,0.0 +22916,15,15.5,49,0.0 +22916,60,34,33,0.0 +22916,11,21,28,0.0 +22916,73,15,13,0.0 +22916,30,25.89,1,0.0 +22916,24,4.5,41,0.0 +22916,2,19,11,0.0 +22916,29,123.79,32,0.0 +22916,42,14,35,0.0 +22916,3,10,8,0.0 +22916,25,14,43,0.0 +22916,26,31.23,11,0.0 +22916,70,15,1,0.0 +22916,14,23.25,14,0.0 +22916,18,62.5,20,0.0 +22916,63,43.9,25,0.0 +22916,34,14,45,0.0 +22916,76,18,23,0.0 +22916,17,39,20,0.0 +22916,28,45.6,43,0.0 +22916,52,7,1,0.0 +22916,37,26,25,0.0 +22916,49,20,6,0.0 +22916,22,21,20,0.0 +22916,31,12.5,44,0.0 +22916,64,33.25,41,0.0 +22916,46,12,25,0.0 +22916,54,7.45,41,0.0 +22916,27,43.9,17,0.0 +22916,40,18.4,27,0.0 +22916,45,9.5,28,0.0 +22916,39,18,30,0.0 +22916,23,9,4,0.0 +22916,43,46,35,0.0 +22916,74,10,5,0.0 +22916,10,31,23,0.0 +22916,58,13.25,25,0.0 +22916,6,25,8,0.0 +22916,32,32,17,0.0 +22916,7,30,32,0.0 +22917,11,21,12,0.0 +22917,34,14,7,0.0 +22917,25,14,42,0.0 +22917,17,39,44,0.0 +22917,48,12.75,39,0.0 +22917,37,26,37,0.0 +22917,22,21,2,0.0 +22917,26,31.23,33,0.0 +22917,36,19,32,0.0 +22917,32,32,48,0.0 +22917,35,18,23,0.0 +22917,21,10,41,0.0 +22917,8,40,31,0.0 +22917,60,34,34,0.0 +22917,58,13.25,40,0.0 +22917,24,4.5,12,0.0 +22917,2,19,19,0.0 +22917,50,16.25,3,0.0 +22917,68,12.5,6,0.0 +22917,28,45.6,22,0.0 +22917,6,25,31,0.0 +22917,72,34.8,17,0.0 +22917,20,81,23,0.0 +22917,61,28.5,5,0.0 +22917,30,25.89,35,0.0 +22917,59,55,15,0.0 +22917,44,19.45,13,0.0 +22917,12,38,35,0.0 +22917,64,33.25,45,0.0 +22917,33,2.5,2,0.0 +22917,7,30,41,0.0 +22917,9,97,50,0.0 +22917,4,22,40,0.0 +22917,51,53,41,0.0 +22917,46,12,8,0.0 +22917,63,43.9,47,0.0 +22917,15,15.5,15,0.0 +22917,27,43.9,45,0.0 +22917,5,21.35,32,0.0 +22917,55,24,29,0.0 +22917,29,123.79,9,0.0 +22917,56,38,26,0.0 +22917,13,6,22,0.0 +22917,45,9.5,46,0.0 +22917,77,13,8,0.0 +22917,75,7.75,29,0.0 +22917,14,23.25,42,0.0 +22917,70,15,26,0.0 +22917,40,18.4,3,0.0 +22917,43,46,37,0.0 +22917,62,49.3,9,0.0 +22917,3,10,31,0.0 +22917,53,32.8,3,0.0 +22917,57,19.5,16,0.0 +22917,71,21.5,3,0.0 +22917,52,7,38,0.0 +22917,76,18,47,0.0 +22918,24,4.5,35,0.0 +22918,74,10,26,0.0 +22918,18,62.5,28,0.0 +22918,10,31,46,0.0 +22918,16,17.45,45,0.0 +22918,63,43.9,17,0.0 +22918,55,24,44,0.0 +22918,39,18,21,0.0 +22918,72,34.8,19,0.0 +22918,5,21.35,49,0.0 +22918,53,32.8,23,0.0 +22918,7,30,6,0.0 +22918,40,18.4,42,0.0 +22918,77,13,40,0.0 +22918,31,12.5,41,0.0 +22918,2,19,9,0.0 +22918,34,14,24,0.0 +22918,54,7.45,18,0.0 +22918,26,31.23,45,0.0 +22918,68,12.5,31,0.0 +22918,12,38,35,0.0 +22918,29,123.79,8,0.0 +22918,3,10,42,0.0 +22918,36,19,3,0.0 +22918,56,38,13,0.0 +22918,45,9.5,28,0.0 +22918,1,18,40,0.0 +22918,38,263.5,43,0.0 +22918,41,9.65,15,0.0 +22918,20,81,7,0.0 +22918,32,32,39,0.0 +22918,75,7.75,35,0.0 +22918,65,21.05,34,0.0 +22918,58,13.25,49,0.0 +22918,62,49.3,5,0.0 +22919,6,25,22,0.0 +22919,74,10,41,0.0 +22919,16,17.45,17,0.0 +22919,66,17,50,0.0 +22919,21,10,7,0.0 +22919,53,32.8,28,0.0 +22919,13,6,45,0.0 +22919,35,18,20,0.0 +22919,65,21.05,41,0.0 +22919,40,18.4,26,0.0 +22919,2,19,42,0.0 +22919,46,12,14,0.0 +22919,70,15,18,0.0 +22919,14,23.25,27,0.0 +22919,67,14,9,0.0 +22919,52,7,15,0.0 +22919,25,14,37,0.0 +22919,23,9,21,0.0 +22919,54,7.45,37,0.0 +22919,62,49.3,32,0.0 +22919,45,9.5,17,0.0 +22919,50,16.25,2,0.0 +22919,57,19.5,34,0.0 +22919,47,9.5,17,0.0 +22919,12,38,45,0.0 +22919,77,13,49,0.0 +22919,42,14,11,0.0 +22919,31,12.5,26,0.0 +22919,11,21,48,0.0 +22919,60,34,40,0.0 +22919,28,45.6,42,0.0 +22919,38,263.5,43,0.0 +22919,10,31,31,0.0 +22919,20,81,43,0.0 +22919,71,21.5,36,0.0 +22919,72,34.8,35,0.0 +22919,7,30,40,0.0 +22919,37,26,27,0.0 +22919,73,15,7,0.0 +22919,22,21,19,0.0 +22919,34,14,26,0.0 +22919,76,18,18,0.0 +22919,3,10,6,0.0 +22919,29,123.79,44,0.0 +22920,8,40,8,0.0 +22920,68,12.5,33,0.0 +22920,28,45.6,37,0.0 +22920,1,18,32,0.0 +22920,50,16.25,48,0.0 +22920,71,21.5,17,0.0 +22920,24,4.5,44,0.0 +22920,29,123.79,11,0.0 +22920,48,12.75,24,0.0 +22920,34,14,10,0.0 +22920,74,10,13,0.0 +22920,52,7,40,0.0 +22921,17,39,41,0.0 +22921,13,6,18,0.0 +22921,62,49.3,37,0.0 +22921,69,36,5,0.0 +22922,35,18,39,0.0 +22922,6,25,44,0.0 +22922,3,10,38,0.0 +22922,56,38,50,0.0 +22923,33,2.5,29,0.0 +22923,19,9.2,41,0.0 +22923,2,19,12,0.0 +22923,71,21.5,3,0.0 +22923,32,32,46,0.0 +22923,51,53,37,0.0 +22923,14,23.25,14,0.0 +22923,34,14,34,0.0 +22923,70,15,14,0.0 +22923,4,22,2,0.0 +22923,24,4.5,35,0.0 +22923,9,97,7,0.0 +22923,74,10,32,0.0 +22923,75,7.75,8,0.0 +22923,72,34.8,40,0.0 +22923,45,9.5,46,0.0 +22923,62,49.3,26,0.0 +22923,13,6,44,0.0 +22923,58,13.25,1,0.0 +22923,31,12.5,37,0.0 +22923,21,10,35,0.0 +22923,63,43.9,19,0.0 +22923,36,19,36,0.0 +22923,56,38,31,0.0 +22923,6,25,48,0.0 +22923,54,7.45,47,0.0 +22923,12,38,12,0.0 +22923,50,16.25,27,0.0 +22923,23,9,48,0.0 +22923,64,33.25,35,0.0 +22923,68,12.5,47,0.0 +22923,76,18,50,0.0 +22923,43,46,46,0.0 +22923,44,19.45,18,0.0 +22923,57,19.5,37,0.0 +22923,29,123.79,8,0.0 +22923,15,15.5,49,0.0 +22923,26,31.23,49,0.0 +22923,73,15,1,0.0 +22923,47,9.5,46,0.0 +22923,65,21.05,13,0.0 +22923,20,81,22,0.0 +22923,22,21,26,0.0 +22923,60,34,9,0.0 +22923,30,25.89,34,0.0 +22923,38,263.5,37,0.0 +22923,17,39,45,0.0 +22923,49,20,19,0.0 +22923,18,62.5,33,0.0 +22923,1,18,1,0.0 +22923,28,45.6,43,0.0 +22923,37,26,21,0.0 +22923,77,13,37,0.0 +22923,53,32.8,34,0.0 +22923,69,36,46,0.0 +22923,46,12,6,0.0 +22923,27,43.9,3,0.0 +22923,66,17,42,0.0 +22923,35,18,19,0.0 +22923,48,12.75,6,0.0 +22924,49,20,8,0.0 +22924,42,14,19,0.0 +22924,56,38,39,0.0 +22924,30,25.89,43,0.0 +22924,51,53,19,0.0 +22924,72,34.8,27,0.0 +22924,58,13.25,50,0.0 +22924,14,23.25,3,0.0 +22924,36,19,37,0.0 +22924,43,46,17,0.0 +22924,68,12.5,45,0.0 +22924,47,9.5,46,0.0 +22924,4,22,44,0.0 +22924,74,10,7,0.0 +22924,62,49.3,18,0.0 +22924,6,25,5,0.0 +22924,19,9.2,38,0.0 +22924,8,40,48,0.0 +22924,22,21,1,0.0 +22924,5,21.35,42,0.0 +22924,13,6,10,0.0 +22924,9,97,19,0.0 +22924,31,12.5,36,0.0 +22924,76,18,40,0.0 +22924,63,43.9,37,0.0 +22924,10,31,45,0.0 +22924,23,9,43,0.0 +22924,25,14,12,0.0 +22924,26,31.23,18,0.0 +22924,15,15.5,42,0.0 +22924,70,15,31,0.0 +22924,32,32,12,0.0 +22924,27,43.9,5,0.0 +22924,41,9.65,8,0.0 +22924,53,32.8,16,0.0 +22924,3,10,41,0.0 +22924,67,14,5,0.0 +22924,61,28.5,46,0.0 +22924,73,15,32,0.0 +22924,24,4.5,21,0.0 +22924,12,38,36,0.0 +22924,37,26,46,0.0 +22924,20,81,42,0.0 +22924,60,34,42,0.0 +22924,50,16.25,14,0.0 +22924,39,18,5,0.0 +22924,71,21.5,14,0.0 +22924,7,30,23,0.0 +22924,59,55,14,0.0 +22924,28,45.6,5,0.0 +22924,1,18,35,0.0 +22924,29,123.79,13,0.0 +22924,48,12.75,9,0.0 +22924,45,9.5,19,0.0 +22924,38,263.5,47,0.0 +22924,64,33.25,38,0.0 +22924,66,17,10,0.0 +22924,52,7,13,0.0 +22924,18,62.5,37,0.0 +22924,34,14,33,0.0 +22924,40,18.4,18,0.0 +22924,77,13,28,0.0 +22924,44,19.45,11,0.0 +22924,69,36,7,0.0 +22924,55,24,48,0.0 +22924,65,21.05,48,0.0 +22924,35,18,7,0.0 +22924,57,19.5,17,0.0 +22924,33,2.5,12,0.0 +22924,11,21,34,0.0 +22924,17,39,2,0.0 +22924,16,17.45,29,0.0 +22924,46,12,41,0.0 +22924,54,7.45,34,0.0 +22924,2,19,39,0.0 +22924,75,7.75,46,0.0 +22925,16,17.45,40,0.0 +22925,13,6,3,0.0 +22925,63,43.9,39,0.0 +22925,74,10,15,0.0 +22925,4,22,6,0.0 +22925,20,81,46,0.0 +22925,66,17,11,0.0 +22925,42,14,35,0.0 +22925,69,36,37,0.0 +22925,35,18,29,0.0 +22925,70,15,18,0.0 +22925,72,34.8,23,0.0 +22925,36,19,49,0.0 +22925,77,13,35,0.0 +22925,43,46,37,0.0 +22925,53,32.8,10,0.0 +22925,28,45.6,22,0.0 +22925,24,4.5,25,0.0 +22926,70,15,10,0.0 +22926,36,19,8,0.0 +22926,27,43.9,36,0.0 +22926,58,13.25,22,0.0 +22926,71,21.5,38,0.0 +22926,5,21.35,50,0.0 +22926,45,9.5,18,0.0 +22926,55,24,1,0.0 +22926,52,7,24,0.0 +22926,21,10,23,0.0 +22926,15,15.5,49,0.0 +22926,20,81,46,0.0 +22926,47,9.5,47,0.0 +22926,62,49.3,3,0.0 +22926,14,23.25,42,0.0 +22926,19,9.2,33,0.0 +22926,39,18,31,0.0 +22926,30,25.89,14,0.0 +22926,54,7.45,49,0.0 +22926,6,25,7,0.0 +22926,49,20,23,0.0 +22926,56,38,14,0.0 +22926,38,263.5,42,0.0 +22926,73,15,38,0.0 +22926,65,21.05,17,0.0 +22926,4,22,8,0.0 +22926,50,16.25,41,0.0 +22926,13,6,15,0.0 +22926,11,21,45,0.0 +22926,77,13,35,0.0 +22926,60,34,3,0.0 +22926,75,7.75,44,0.0 +22926,3,10,50,0.0 +22926,43,46,38,0.0 +22926,66,17,47,0.0 +22926,10,31,15,0.0 +22926,72,34.8,49,0.0 +22926,34,14,39,0.0 +22926,69,36,21,0.0 +22926,35,18,49,0.0 +22926,17,39,15,0.0 +22926,16,17.45,35,0.0 +22926,33,2.5,33,0.0 +22926,9,97,22,0.0 +22926,2,19,14,0.0 +22926,8,40,3,0.0 +22926,51,53,25,0.0 +22927,77,13,13,0.0 +22927,37,26,22,0.0 +22927,32,32,23,0.0 +22927,41,9.65,12,0.0 +22927,76,18,22,0.0 +22927,39,18,25,0.0 +22927,10,31,17,0.0 +22927,12,38,41,0.0 +22927,19,9.2,27,0.0 +22927,36,19,27,0.0 +22927,65,21.05,11,0.0 +22927,40,18.4,39,0.0 +22927,28,45.6,33,0.0 +22927,56,38,30,0.0 +22927,16,17.45,23,0.0 +22927,18,62.5,2,0.0 +22927,13,6,38,0.0 +22927,27,43.9,46,0.0 +22927,62,49.3,10,0.0 +22927,64,33.25,45,0.0 +22927,73,15,2,0.0 +22927,21,10,25,0.0 +22927,74,10,27,0.0 +22927,24,4.5,21,0.0 +22927,54,7.45,17,0.0 +22927,20,81,42,0.0 +22927,17,39,34,0.0 +22927,14,23.25,27,0.0 +22927,4,22,27,0.0 +22927,15,15.5,6,0.0 +22927,69,36,46,0.0 +22927,68,12.5,43,0.0 +22927,7,30,13,0.0 +22927,22,21,10,0.0 +22927,31,12.5,9,0.0 +22927,2,19,30,0.0 +22927,1,18,48,0.0 +22927,33,2.5,28,0.0 +22927,6,25,26,0.0 +22927,71,21.5,27,0.0 +22927,60,34,41,0.0 +22927,67,14,44,0.0 +22927,75,7.75,24,0.0 +22927,11,21,48,0.0 +22927,5,21.35,23,0.0 +22927,57,19.5,36,0.0 +22927,23,9,5,0.0 +22927,48,12.75,41,0.0 +22927,49,20,13,0.0 +22927,61,28.5,46,0.0 +22927,29,123.79,7,0.0 +22927,50,16.25,44,0.0 +22927,53,32.8,7,0.0 +22927,34,14,5,0.0 +22927,52,7,45,0.0 +22927,30,25.89,48,0.0 +22927,47,9.5,43,0.0 +22927,8,40,41,0.0 +22927,25,14,43,0.0 +22927,66,17,28,0.0 +22927,72,34.8,39,0.0 +22927,43,46,47,0.0 +22927,3,10,4,0.0 +22927,70,15,44,0.0 +22927,51,53,7,0.0 +22927,44,19.45,29,0.0 +22928,65,21.05,50,0.0 +22928,20,81,5,0.0 +22928,55,24,16,0.0 +22928,27,43.9,34,0.0 +22928,71,21.5,43,0.0 +22928,31,12.5,37,0.0 +22928,38,263.5,34,0.0 +22928,19,9.2,29,0.0 +22928,45,9.5,9,0.0 +22928,28,45.6,19,0.0 +22928,41,9.65,39,0.0 +22928,12,38,33,0.0 +22928,17,39,21,0.0 +22928,35,18,17,0.0 +22928,14,23.25,19,0.0 +22929,12,38,21,0.0 +22929,19,9.2,41,0.0 +22929,3,10,13,0.0 +22929,51,53,1,0.0 +22929,9,97,23,0.0 +22929,70,15,33,0.0 +22929,43,46,21,0.0 +22929,67,14,24,0.0 +22929,59,55,1,0.0 +22929,72,34.8,20,0.0 +22929,69,36,44,0.0 +22929,56,38,26,0.0 +22929,24,4.5,11,0.0 +22929,5,21.35,6,0.0 +22929,32,32,9,0.0 +22929,35,18,12,0.0 +22929,55,24,1,0.0 +22929,75,7.75,11,0.0 +22929,60,34,38,0.0 +22929,10,31,12,0.0 +22929,15,15.5,9,0.0 +22929,1,18,20,0.0 +22929,64,33.25,35,0.0 +22929,49,20,48,0.0 +22929,42,14,8,0.0 +22929,27,43.9,5,0.0 +22929,11,21,10,0.0 +22929,47,9.5,12,0.0 +22929,18,62.5,46,0.0 +22929,4,22,48,0.0 +22929,62,49.3,7,0.0 +22929,29,123.79,43,0.0 +22929,26,31.23,14,0.0 +22929,21,10,36,0.0 +22929,2,19,44,0.0 +22929,14,23.25,26,0.0 +22929,23,9,8,0.0 +22929,68,12.5,48,0.0 +22929,61,28.5,21,0.0 +22929,48,12.75,18,0.0 +22929,7,30,16,0.0 +22929,71,21.5,49,0.0 +22929,37,26,42,0.0 +22929,13,6,13,0.0 +22929,36,19,13,0.0 +22930,37,26,27,0.0 +22930,45,9.5,37,0.0 +22930,23,9,32,0.0 +22930,77,13,18,0.0 +22930,63,43.9,44,0.0 +22930,15,15.5,46,0.0 +22930,43,46,18,0.0 +22930,27,43.9,29,0.0 +22930,9,97,16,0.0 +22930,74,10,9,0.0 +22930,2,19,3,0.0 +22930,12,38,3,0.0 +22930,39,18,49,0.0 +22930,40,18.4,36,0.0 +22930,3,10,29,0.0 +22930,7,30,33,0.0 +22930,24,4.5,22,0.0 +22931,29,123.79,7,0.0 +22931,49,20,7,0.0 +22931,45,9.5,4,0.0 +22931,54,7.45,37,0.0 +22931,30,25.89,5,0.0 +22931,48,12.75,6,0.0 +22931,1,18,37,0.0 +22931,43,46,47,0.0 +22931,63,43.9,22,0.0 +22931,75,7.75,24,0.0 +22931,9,97,16,0.0 +22931,2,19,8,0.0 +22931,14,23.25,45,0.0 +22931,52,7,7,0.0 +22931,51,53,8,0.0 +22931,62,49.3,1,0.0 +22931,66,17,36,0.0 +22931,73,15,32,0.0 +22931,6,25,22,0.0 +22931,23,9,22,0.0 +22931,11,21,50,0.0 +22931,10,31,46,0.0 +22931,60,34,28,0.0 +22931,77,13,43,0.0 +22931,33,2.5,42,0.0 +22931,26,31.23,10,0.0 +22931,71,21.5,43,0.0 +22931,36,19,22,0.0 +22931,25,14,8,0.0 +22931,3,10,7,0.0 +22931,70,15,23,0.0 +22931,22,21,13,0.0 +22931,31,12.5,26,0.0 +22931,46,12,5,0.0 +22931,17,39,22,0.0 +22931,55,24,38,0.0 +22931,69,36,28,0.0 +22931,15,15.5,42,0.0 +22931,13,6,40,0.0 +22931,74,10,27,0.0 +22931,27,43.9,33,0.0 +22931,35,18,42,0.0 +22932,4,22,16,0.0 +22932,61,28.5,22,0.0 +22932,69,36,49,0.0 +22932,38,263.5,37,0.0 +22932,17,39,27,0.0 +22932,9,97,47,0.0 +22933,74,10,14,0.0 +22933,54,7.45,1,0.0 +22933,20,81,27,0.0 +22933,10,31,36,0.0 +22933,37,26,49,0.0 +22933,29,123.79,24,0.0 +22933,2,19,15,0.0 +22933,16,17.45,11,0.0 +22933,41,9.65,49,0.0 +22933,51,53,13,0.0 +22933,12,38,1,0.0 +22933,1,18,38,0.0 +22933,57,19.5,29,0.0 +22933,64,33.25,4,0.0 +22933,8,40,23,0.0 +22933,36,19,47,0.0 +22933,52,7,16,0.0 +22933,11,21,49,0.0 +22933,72,34.8,4,0.0 +22933,24,4.5,18,0.0 +22933,35,18,35,0.0 +22933,56,38,34,0.0 +22933,9,97,24,0.0 +22933,46,12,31,0.0 +22933,5,21.35,40,0.0 +22933,28,45.6,20,0.0 +22933,18,62.5,49,0.0 +22933,75,7.75,2,0.0 +22933,4,22,17,0.0 +22933,44,19.45,26,0.0 +22933,77,13,45,0.0 +22933,68,12.5,2,0.0 +22933,27,43.9,11,0.0 +22933,71,21.5,24,0.0 +22933,21,10,46,0.0 +22933,22,21,31,0.0 +22933,17,39,5,0.0 +22933,13,6,17,0.0 +22933,25,14,38,0.0 +22933,53,32.8,43,0.0 +22933,69,36,21,0.0 +22933,63,43.9,1,0.0 +22933,59,55,6,0.0 +22933,55,24,4,0.0 +22933,45,9.5,50,0.0 +22933,58,13.25,28,0.0 +22933,62,49.3,32,0.0 +22933,23,9,49,0.0 +22933,19,9.2,45,0.0 +22933,30,25.89,48,0.0 +22933,47,9.5,50,0.0 +22933,73,15,43,0.0 +22933,61,28.5,31,0.0 +22933,49,20,5,0.0 +22933,3,10,17,0.0 +22933,14,23.25,39,0.0 +22933,33,2.5,31,0.0 +22933,34,14,20,0.0 +22933,6,25,21,0.0 +22933,26,31.23,45,0.0 +22933,15,15.5,37,0.0 +22933,48,12.75,27,0.0 +22933,65,21.05,27,0.0 +22933,7,30,25,0.0 +22933,40,18.4,38,0.0 +22933,60,34,20,0.0 +22933,39,18,20,0.0 +22933,42,14,2,0.0 +22933,76,18,22,0.0 +22933,70,15,36,0.0 +22933,31,12.5,44,0.0 +22933,66,17,17,0.0 +22934,30,25.89,18,0.0 +22934,59,55,13,0.0 +22934,54,7.45,42,0.0 +22934,67,14,4,0.0 +22934,72,34.8,27,0.0 +22934,26,31.23,34,0.0 +22934,12,38,43,0.0 +22934,43,46,19,0.0 +22934,10,31,38,0.0 +22934,73,15,26,0.0 +22934,40,18.4,31,0.0 +22934,18,62.5,9,0.0 +22934,47,9.5,24,0.0 +22934,28,45.6,14,0.0 +22934,17,39,4,0.0 +22934,53,32.8,26,0.0 +22934,19,9.2,15,0.0 +22934,71,21.5,29,0.0 +22934,27,43.9,17,0.0 +22934,2,19,42,0.0 +22934,24,4.5,46,0.0 +22934,25,14,24,0.0 +22934,64,33.25,23,0.0 +22934,7,30,12,0.0 +22934,3,10,9,0.0 +22934,48,12.75,49,0.0 +22934,16,17.45,9,0.0 +22934,15,15.5,4,0.0 +22934,58,13.25,16,0.0 +22934,77,13,48,0.0 +22934,20,81,22,0.0 +22934,14,23.25,9,0.0 +22934,52,7,29,0.0 +22934,50,16.25,35,0.0 +22934,13,6,21,0.0 +22934,34,14,7,0.0 +22934,66,17,18,0.0 +22934,35,18,37,0.0 +22934,31,12.5,46,0.0 +22934,63,43.9,22,0.0 +22934,42,14,42,0.0 +22934,44,19.45,28,0.0 +22934,49,20,2,0.0 +22934,70,15,16,0.0 +22934,1,18,30,0.0 +22934,4,22,21,0.0 +22934,8,40,1,0.0 +22934,68,12.5,47,0.0 +22934,46,12,24,0.0 +22934,74,10,21,0.0 +22934,62,49.3,30,0.0 +22934,57,19.5,29,0.0 +22934,29,123.79,27,0.0 +22934,5,21.35,30,0.0 +22934,36,19,44,0.0 +22934,37,26,27,0.0 +22934,41,9.65,7,0.0 +22934,45,9.5,4,0.0 +22934,22,21,27,0.0 +22935,16,17.45,32,0.0 +22935,44,19.45,3,0.0 +22935,42,14,38,0.0 +22935,53,32.8,42,0.0 +22935,2,19,38,0.0 +22936,42,14,31,0.0 +22936,8,40,11,0.0 +22936,10,31,20,0.0 +22936,39,18,23,0.0 +22936,3,10,47,0.0 +22936,58,13.25,47,0.0 +22936,63,43.9,12,0.0 +22936,60,34,48,0.0 +22936,68,12.5,23,0.0 +22936,24,4.5,39,0.0 +22936,19,9.2,27,0.0 +22937,65,21.05,11,0.0 +22937,51,53,42,0.0 +22937,35,18,23,0.0 +22937,61,28.5,18,0.0 +22937,54,7.45,18,0.0 +22937,53,32.8,35,0.0 +22937,46,12,9,0.0 +22937,43,46,46,0.0 +22937,41,9.65,16,0.0 +22937,22,21,37,0.0 +22937,26,31.23,33,0.0 +22937,18,62.5,11,0.0 +22937,20,81,37,0.0 +22937,7,30,2,0.0 +22937,75,7.75,49,0.0 +22937,69,36,19,0.0 +22937,6,25,17,0.0 +22937,13,6,50,0.0 +22937,42,14,44,0.0 +22937,25,14,33,0.0 +22937,48,12.75,42,0.0 +22937,47,9.5,20,0.0 +22937,49,20,45,0.0 +22937,73,15,28,0.0 +22937,45,9.5,48,0.0 +22937,16,17.45,40,0.0 +22937,60,34,26,0.0 +22937,15,15.5,46,0.0 +22937,2,19,49,0.0 +22937,74,10,44,0.0 +22937,63,43.9,37,0.0 +22937,39,18,27,0.0 +22937,50,16.25,5,0.0 +22937,55,24,42,0.0 +22937,76,18,21,0.0 +22937,12,38,20,0.0 +22937,28,45.6,27,0.0 +22937,71,21.5,48,0.0 +22937,70,15,41,0.0 +22937,14,23.25,6,0.0 +22937,27,43.9,41,0.0 +22937,23,9,36,0.0 +22937,67,14,35,0.0 +22937,8,40,38,0.0 +22937,57,19.5,43,0.0 +22937,62,49.3,38,0.0 +22937,10,31,11,0.0 +22937,37,26,40,0.0 +22937,34,14,3,0.0 +22937,68,12.5,10,0.0 +22937,4,22,6,0.0 +22937,9,97,9,0.0 +22937,1,18,8,0.0 +22937,33,2.5,37,0.0 +22937,64,33.25,38,0.0 +22937,56,38,18,0.0 +22937,31,12.5,27,0.0 +22937,17,39,49,0.0 +22937,77,13,30,0.0 +22937,21,10,3,0.0 +22937,66,17,46,0.0 +22937,59,55,19,0.0 +22937,5,21.35,15,0.0 +22937,30,25.89,20,0.0 +22938,29,123.79,25,0.0 +22938,41,9.65,36,0.0 +22938,63,43.9,49,0.0 +22938,44,19.45,2,0.0 +22938,3,10,3,0.0 +22938,21,10,14,0.0 +22938,24,4.5,9,0.0 +22938,49,20,5,0.0 +22938,1,18,14,0.0 +22938,67,14,6,0.0 +22938,2,19,1,0.0 +22938,14,23.25,10,0.0 +22938,64,33.25,27,0.0 +22938,38,263.5,25,0.0 +22938,50,16.25,31,0.0 +22938,8,40,36,0.0 +22938,66,17,49,0.0 +22938,12,38,12,0.0 +22938,5,21.35,13,0.0 +22938,45,9.5,21,0.0 +22938,59,55,34,0.0 +22938,32,32,22,0.0 +22938,71,21.5,43,0.0 +22938,35,18,37,0.0 +22938,48,12.75,49,0.0 +22938,19,9.2,9,0.0 +22938,46,12,11,0.0 +22938,27,43.9,9,0.0 +22938,13,6,15,0.0 +22938,58,13.25,12,0.0 +22938,18,62.5,42,0.0 +22938,25,14,50,0.0 +22938,43,46,50,0.0 +22938,40,18.4,14,0.0 +22938,6,25,13,0.0 +22938,34,14,42,0.0 +22938,20,81,12,0.0 +22938,72,34.8,2,0.0 +22938,55,24,11,0.0 +22938,70,15,16,0.0 +22938,37,26,7,0.0 +22938,73,15,50,0.0 +22938,23,9,12,0.0 +22938,9,97,23,0.0 +22938,47,9.5,25,0.0 +22938,56,38,39,0.0 +22938,22,21,31,0.0 +22938,76,18,35,0.0 +22938,16,17.45,47,0.0 +22938,28,45.6,47,0.0 +22938,17,39,31,0.0 +22938,57,19.5,37,0.0 +22938,39,18,24,0.0 +22938,60,34,1,0.0 +22938,74,10,2,0.0 +22939,36,19,26,0.0 +22939,28,45.6,14,0.0 +22939,4,22,45,0.0 +22939,66,17,36,0.0 +22939,56,38,1,0.0 +22939,22,21,26,0.0 +22939,57,19.5,8,0.0 +22939,8,40,27,0.0 +22939,25,14,22,0.0 +22939,75,7.75,16,0.0 +22939,47,9.5,40,0.0 +22939,2,19,5,0.0 +22939,77,13,22,0.0 +22939,12,38,47,0.0 +22939,67,14,36,0.0 +22939,26,31.23,38,0.0 +22939,30,25.89,29,0.0 +22939,58,13.25,1,0.0 +22939,6,25,36,0.0 +22939,15,15.5,18,0.0 +22939,10,31,13,0.0 +22939,64,33.25,26,0.0 +22939,37,26,45,0.0 +22939,40,18.4,28,0.0 +22939,7,30,4,0.0 +22939,21,10,3,0.0 +22939,18,62.5,14,0.0 +22939,32,32,42,0.0 +22939,9,97,31,0.0 +22939,14,23.25,24,0.0 +22939,52,7,36,0.0 +22939,59,55,18,0.0 +22939,50,16.25,21,0.0 +22939,51,53,13,0.0 +22939,13,6,41,0.0 +22939,60,34,39,0.0 +22939,11,21,32,0.0 +22939,71,21.5,46,0.0 +22939,70,15,4,0.0 +22939,69,36,32,0.0 +22939,76,18,13,0.0 +22939,48,12.75,5,0.0 +22939,43,46,17,0.0 +22939,54,7.45,33,0.0 +22939,46,12,5,0.0 +22939,62,49.3,11,0.0 +22939,63,43.9,3,0.0 +22939,29,123.79,42,0.0 +22939,42,14,36,0.0 +22939,20,81,15,0.0 +22939,24,4.5,28,0.0 +22939,5,21.35,23,0.0 +22939,74,10,34,0.0 +22939,39,18,46,0.0 +22939,17,39,2,0.0 +22939,61,28.5,46,0.0 +22939,19,9.2,11,0.0 +22939,3,10,18,0.0 +22939,1,18,43,0.0 +22939,53,32.8,31,0.0 +22939,68,12.5,25,0.0 +22939,72,34.8,42,0.0 +22939,41,9.65,37,0.0 +22940,63,43.9,41,0.0 +22940,68,12.5,35,0.0 +22940,5,21.35,2,0.0 +22940,64,33.25,32,0.0 +22940,62,49.3,9,0.0 +22940,51,53,20,0.0 +22940,26,31.23,48,0.0 +22940,15,15.5,2,0.0 +22940,76,18,8,0.0 +22940,36,19,19,0.0 +22940,56,38,29,0.0 +22940,55,24,47,0.0 +22940,38,263.5,50,0.0 +22941,65,21.05,31,0.0 +22941,11,21,7,0.0 +22941,73,15,12,0.0 +22941,36,19,2,0.0 +22941,20,81,45,0.0 +22941,51,53,46,0.0 +22941,71,21.5,24,0.0 +22941,42,14,49,0.0 +22941,64,33.25,34,0.0 +22941,34,14,15,0.0 +22941,66,17,2,0.0 +22941,29,123.79,43,0.0 +22941,72,34.8,14,0.0 +22941,4,22,16,0.0 +22941,31,12.5,3,0.0 +22941,38,263.5,44,0.0 +22941,19,9.2,13,0.0 +22941,67,14,27,0.0 +22941,17,39,50,0.0 +22941,9,97,16,0.0 +22941,1,18,13,0.0 +22941,5,21.35,28,0.0 +22941,57,19.5,26,0.0 +22941,47,9.5,15,0.0 +22941,6,25,14,0.0 +22941,21,10,29,0.0 +22941,63,43.9,44,0.0 +22941,45,9.5,36,0.0 +22941,32,32,6,0.0 +22941,62,49.3,40,0.0 +22941,54,7.45,33,0.0 +22941,59,55,26,0.0 +22942,56,38,44,0.0 +22942,40,18.4,14,0.0 +22942,68,12.5,23,0.0 +22942,51,53,20,0.0 +22942,76,18,24,0.0 +22942,15,15.5,5,0.0 +22943,75,7.75,48,0.0 +22943,25,14,28,0.0 +22943,46,12,8,0.0 +22943,51,53,7,0.0 +22943,20,81,1,0.0 +22943,72,34.8,31,0.0 +22943,40,18.4,42,0.0 +22943,23,9,7,0.0 +22943,2,19,43,0.0 +22943,66,17,4,0.0 +22943,53,32.8,18,0.0 +22943,34,14,49,0.0 +22943,55,24,28,0.0 +22943,35,18,7,0.0 +22943,50,16.25,18,0.0 +22943,33,2.5,26,0.0 +22943,37,26,17,0.0 +22944,23,9,21,0.0 +22944,19,9.2,12,0.0 +22944,77,13,21,0.0 +22944,58,13.25,1,0.0 +22944,1,18,42,0.0 +22944,56,38,46,0.0 +22944,71,21.5,42,0.0 +22944,27,43.9,42,0.0 +22944,39,18,35,0.0 +22944,61,28.5,17,0.0 +22944,25,14,1,0.0 +22944,17,39,14,0.0 +22944,64,33.25,8,0.0 +22944,53,32.8,30,0.0 +22944,4,22,2,0.0 +22944,22,21,35,0.0 +22944,34,14,33,0.0 +22944,41,9.65,3,0.0 +22944,74,10,46,0.0 +22944,50,16.25,6,0.0 +22944,15,15.5,36,0.0 +22944,6,25,5,0.0 +22944,68,12.5,28,0.0 +22944,12,38,4,0.0 +22944,54,7.45,10,0.0 +22944,26,31.23,23,0.0 +22944,21,10,25,0.0 +22944,3,10,6,0.0 +22944,72,34.8,9,0.0 +22944,65,21.05,46,0.0 +22944,29,123.79,26,0.0 +22944,32,32,32,0.0 +22944,57,19.5,48,0.0 +22944,46,12,37,0.0 +22944,70,15,50,0.0 +22944,62,49.3,5,0.0 +22944,76,18,4,0.0 +22944,9,97,43,0.0 +22944,45,9.5,28,0.0 +22944,13,6,20,0.0 +22944,14,23.25,35,0.0 +22944,11,21,46,0.0 +22944,73,15,16,0.0 +22944,5,21.35,21,0.0 +22944,52,7,2,0.0 +22944,69,36,28,0.0 +22944,33,2.5,3,0.0 +22944,31,12.5,9,0.0 +22944,63,43.9,50,0.0 +22944,2,19,44,0.0 +22944,55,24,27,0.0 +22944,38,263.5,33,0.0 +22944,47,9.5,15,0.0 +22944,59,55,49,0.0 +22944,35,18,47,0.0 +22944,60,34,17,0.0 +22944,7,30,18,0.0 +22944,16,17.45,1,0.0 +22944,51,53,39,0.0 +22944,49,20,21,0.0 +22944,43,46,27,0.0 +22944,75,7.75,45,0.0 +22944,37,26,41,0.0 +22944,40,18.4,49,0.0 +22944,42,14,26,0.0 +22944,48,12.75,46,0.0 +22945,69,36,31,0.0 +22945,57,19.5,21,0.0 +22945,53,32.8,25,0.0 +22945,64,33.25,37,0.0 +22945,47,9.5,44,0.0 +22945,14,23.25,5,0.0 +22945,41,9.65,27,0.0 +22945,39,18,37,0.0 +22945,74,10,38,0.0 +22945,46,12,26,0.0 +22945,51,53,17,0.0 +22945,73,15,18,0.0 +22945,42,14,32,0.0 +22945,5,21.35,23,0.0 +22945,23,9,29,0.0 +22945,61,28.5,39,0.0 +22945,19,9.2,47,0.0 +22945,44,19.45,43,0.0 +22945,3,10,29,0.0 +22945,29,123.79,46,0.0 +22945,25,14,1,0.0 +22945,75,7.75,11,0.0 +22945,16,17.45,50,0.0 +22945,22,21,12,0.0 +22945,60,34,22,0.0 +22945,43,46,20,0.0 +22945,21,10,41,0.0 +22945,55,24,42,0.0 +22945,20,81,32,0.0 +22945,70,15,16,0.0 +22945,49,20,39,0.0 +22946,70,15,3,0.0 +22946,38,263.5,42,0.0 +22946,69,36,30,0.0 +22946,31,12.5,43,0.0 +22946,47,9.5,48,0.0 +22946,60,34,38,0.0 +22946,36,19,33,0.0 +22946,18,62.5,30,0.0 +22946,45,9.5,21,0.0 +22946,16,17.45,4,0.0 +22946,52,7,5,0.0 +22946,23,9,26,0.0 +22946,20,81,30,0.0 +22946,34,14,12,0.0 +22946,73,15,17,0.0 +22946,77,13,5,0.0 +22946,13,6,10,0.0 +22946,35,18,21,0.0 +22946,43,46,17,0.0 +22946,71,21.5,20,0.0 +22946,66,17,44,0.0 +22946,27,43.9,50,0.0 +22946,51,53,34,0.0 +22946,41,9.65,29,0.0 +22946,54,7.45,50,0.0 +22946,11,21,44,0.0 +22946,75,7.75,29,0.0 +22946,9,97,40,0.0 +22946,72,34.8,12,0.0 +22946,5,21.35,22,0.0 +22946,3,10,40,0.0 +22946,39,18,24,0.0 +22946,17,39,40,0.0 +22946,56,38,22,0.0 +22946,57,19.5,35,0.0 +22946,50,16.25,16,0.0 +22946,1,18,48,0.0 +22946,29,123.79,48,0.0 +22946,21,10,31,0.0 +22946,6,25,21,0.0 +22946,19,9.2,46,0.0 +22946,58,13.25,1,0.0 +22946,65,21.05,31,0.0 +22946,37,26,26,0.0 +22946,59,55,17,0.0 +22946,32,32,21,0.0 +22946,44,19.45,20,0.0 +22946,61,28.5,7,0.0 +22946,28,45.6,6,0.0 +22946,26,31.23,39,0.0 +22946,8,40,9,0.0 +22946,15,15.5,45,0.0 +22946,63,43.9,3,0.0 +22946,46,12,19,0.0 +22946,67,14,33,0.0 +22946,10,31,39,0.0 +22946,74,10,26,0.0 +22947,37,26,36,0.0 +22947,23,9,19,0.0 +22947,69,36,24,0.0 +22947,5,21.35,25,0.0 +22947,40,18.4,20,0.0 +22947,16,17.45,38,0.0 +22947,11,21,27,0.0 +22947,42,14,39,0.0 +22947,38,263.5,27,0.0 +22947,30,25.89,12,0.0 +22947,49,20,21,0.0 +22947,4,22,13,0.0 +22947,35,18,34,0.0 +22947,77,13,32,0.0 +22947,21,10,32,0.0 +22947,32,32,40,0.0 +22947,61,28.5,25,0.0 +22947,63,43.9,43,0.0 +22947,72,34.8,36,0.0 +22947,24,4.5,23,0.0 +22947,50,16.25,35,0.0 +22947,14,23.25,24,0.0 +22947,75,7.75,5,0.0 +22947,73,15,25,0.0 +22947,36,19,23,0.0 +22947,71,21.5,27,0.0 +22947,17,39,12,0.0 +22947,47,9.5,36,0.0 +22947,31,12.5,23,0.0 +22947,62,49.3,11,0.0 +22947,44,19.45,38,0.0 +22947,29,123.79,44,0.0 +22947,18,62.5,38,0.0 +22947,39,18,31,0.0 +22947,41,9.65,1,0.0 +22947,51,53,41,0.0 +22947,57,19.5,45,0.0 +22947,54,7.45,47,0.0 +22947,26,31.23,45,0.0 +22947,34,14,3,0.0 +22947,76,18,28,0.0 +22947,70,15,41,0.0 +22947,48,12.75,27,0.0 +22947,22,21,23,0.0 +22947,66,17,13,0.0 +22947,8,40,7,0.0 +22947,67,14,37,0.0 +22947,59,55,47,0.0 +22947,43,46,3,0.0 +22947,2,19,2,0.0 +22947,3,10,4,0.0 +22947,12,38,40,0.0 +22947,27,43.9,22,0.0 +22947,6,25,1,0.0 +22947,46,12,6,0.0 +22947,68,12.5,31,0.0 +22947,74,10,41,0.0 +22947,33,2.5,38,0.0 +22947,1,18,27,0.0 +22947,56,38,48,0.0 +22947,60,34,21,0.0 +22947,10,31,7,0.0 +22947,25,14,50,0.0 +22948,16,17.45,40,0.0 +22948,7,30,5,0.0 +22949,47,9.5,37,0.0 +22949,62,49.3,27,0.0 +22949,48,12.75,38,0.0 +22949,14,23.25,17,0.0 +22949,30,25.89,6,0.0 +22949,46,12,23,0.0 +22949,28,45.6,4,0.0 +22949,59,55,2,0.0 +22949,74,10,12,0.0 +22949,38,263.5,23,0.0 +22949,51,53,6,0.0 +22949,75,7.75,37,0.0 +22949,35,18,17,0.0 +22949,53,32.8,11,0.0 +22949,77,13,11,0.0 +22949,41,9.65,4,0.0 +22949,31,12.5,4,0.0 +22949,42,14,39,0.0 +22949,1,18,29,0.0 +22949,25,14,48,0.0 +22949,4,22,34,0.0 +22949,56,38,28,0.0 +22949,34,14,40,0.0 +22949,13,6,40,0.0 +22949,3,10,30,0.0 +22949,69,36,22,0.0 +22949,11,21,26,0.0 +22949,66,17,12,0.0 +22949,72,34.8,45,0.0 +22949,22,21,10,0.0 +22949,55,24,37,0.0 +22949,10,31,8,0.0 +22949,29,123.79,45,0.0 +22949,50,16.25,20,0.0 +22949,21,10,24,0.0 +22949,61,28.5,42,0.0 +22949,64,33.25,44,0.0 +22949,37,26,27,0.0 +22949,17,39,40,0.0 +22949,7,30,46,0.0 +22949,20,81,16,0.0 +22949,15,15.5,21,0.0 +22949,6,25,44,0.0 +22949,73,15,29,0.0 +22949,71,21.5,21,0.0 +22949,65,21.05,7,0.0 +22949,76,18,8,0.0 +22949,60,34,27,0.0 +22949,70,15,41,0.0 +22950,11,21,17,0.0 +22950,15,15.5,48,0.0 +22950,54,7.45,50,0.0 +22950,13,6,13,0.0 +22950,28,45.6,44,0.0 +22950,8,40,11,0.0 +22950,22,21,29,0.0 +22950,59,55,36,0.0 +22950,40,18.4,28,0.0 +22950,37,26,36,0.0 +22950,16,17.45,20,0.0 +22950,3,10,47,0.0 +22950,57,19.5,22,0.0 +22950,71,21.5,21,0.0 +22950,63,43.9,41,0.0 +22950,49,20,9,0.0 +22950,74,10,3,0.0 +22950,62,49.3,48,0.0 +22950,65,21.05,38,0.0 +22950,17,39,8,0.0 +22950,47,9.5,27,0.0 +22950,48,12.75,22,0.0 +22950,20,81,15,0.0 +22950,43,46,46,0.0 +22950,6,25,24,0.0 +22950,21,10,50,0.0 +22950,66,17,24,0.0 +22950,67,14,25,0.0 +22950,52,7,18,0.0 +22950,68,12.5,48,0.0 +22950,50,16.25,36,0.0 +22950,36,19,9,0.0 +22950,46,12,28,0.0 +22950,12,38,43,0.0 +22950,44,19.45,12,0.0 +22950,23,9,50,0.0 +22950,72,34.8,22,0.0 +22950,53,32.8,46,0.0 +22950,38,263.5,28,0.0 +22950,27,43.9,34,0.0 +22950,61,28.5,30,0.0 +22950,24,4.5,29,0.0 +22950,34,14,47,0.0 +22950,69,36,47,0.0 +22950,41,9.65,47,0.0 +22950,7,30,7,0.0 +22950,10,31,35,0.0 +22951,68,12.5,8,0.0 +22951,39,18,36,0.0 +22951,20,81,47,0.0 +22951,10,31,25,0.0 +22951,56,38,17,0.0 +22951,44,19.45,28,0.0 +22951,48,12.75,40,0.0 +22951,6,25,20,0.0 +22951,9,97,17,0.0 +22951,71,21.5,2,0.0 +22951,25,14,47,0.0 +22951,31,12.5,16,0.0 +22951,51,53,29,0.0 +22951,12,38,36,0.0 +22951,45,9.5,5,0.0 +22951,53,32.8,49,0.0 +22951,26,31.23,38,0.0 +22951,28,45.6,10,0.0 +22951,3,10,43,0.0 +22951,52,7,8,0.0 +22951,72,34.8,32,0.0 +22951,41,9.65,48,0.0 +22951,55,24,1,0.0 +22951,54,7.45,31,0.0 +22951,35,18,27,0.0 +22951,27,43.9,21,0.0 +22951,66,17,42,0.0 +22951,46,12,6,0.0 +22952,22,21,18,0.0 +22952,10,31,13,0.0 +22952,6,25,20,0.0 +22952,44,19.45,19,0.0 +22952,19,9.2,30,0.0 +22952,34,14,20,0.0 +22952,32,32,27,0.0 +22952,56,38,12,0.0 +22952,48,12.75,22,0.0 +22952,23,9,23,0.0 +22952,27,43.9,50,0.0 +22952,41,9.65,6,0.0 +22952,5,21.35,25,0.0 +22952,33,2.5,15,0.0 +22952,45,9.5,14,0.0 +22952,42,14,32,0.0 +22952,54,7.45,16,0.0 +22952,70,15,5,0.0 +22952,1,18,1,0.0 +22952,51,53,21,0.0 +22952,4,22,2,0.0 +22952,13,6,36,0.0 +22952,59,55,29,0.0 +22952,72,34.8,16,0.0 +22952,26,31.23,6,0.0 +22952,37,26,2,0.0 +22952,67,14,39,0.0 +22952,11,21,4,0.0 +22952,55,24,49,0.0 +22952,28,45.6,25,0.0 +22952,73,15,11,0.0 +22952,60,34,30,0.0 +22952,3,10,6,0.0 +22953,66,17,7,0.0 +22953,34,14,27,0.0 +22953,26,31.23,3,0.0 +22953,76,18,5,0.0 +22953,77,13,38,0.0 +22953,5,21.35,44,0.0 +22953,18,62.5,43,0.0 +22953,24,4.5,24,0.0 +22953,67,14,24,0.0 +22953,37,26,1,0.0 +22953,27,43.9,37,0.0 +22953,45,9.5,12,0.0 +22953,4,22,39,0.0 +22953,16,17.45,27,0.0 +22953,39,18,37,0.0 +22953,54,7.45,29,0.0 +22953,10,31,5,0.0 +22953,14,23.25,10,0.0 +22953,43,46,14,0.0 +22953,60,34,21,0.0 +22953,72,34.8,5,0.0 +22953,51,53,29,0.0 +22953,70,15,2,0.0 +22953,11,21,19,0.0 +22953,15,15.5,1,0.0 +22953,44,19.45,43,0.0 +22953,12,38,10,0.0 +22953,64,33.25,30,0.0 +22953,3,10,46,0.0 +22953,40,18.4,48,0.0 +22953,35,18,24,0.0 +22953,30,25.89,36,0.0 +22953,61,28.5,30,0.0 +22953,17,39,35,0.0 +22953,48,12.75,2,0.0 +22953,58,13.25,22,0.0 +22953,2,19,1,0.0 +22953,25,14,2,0.0 +22953,68,12.5,2,0.0 +22953,55,24,30,0.0 +22953,9,97,13,0.0 +22953,7,30,23,0.0 +22953,20,81,35,0.0 +22953,1,18,3,0.0 +22953,33,2.5,21,0.0 +22953,71,21.5,30,0.0 +22953,41,9.65,28,0.0 +22953,38,263.5,6,0.0 +22953,21,10,31,0.0 +22953,73,15,13,0.0 +22954,61,28.5,5,0.0 +22954,10,31,5,0.0 +22954,74,10,12,0.0 +22954,18,62.5,16,0.0 +22954,44,19.45,19,0.0 +22954,64,33.25,49,0.0 +22954,51,53,48,0.0 +22954,17,39,25,0.0 +22955,14,23.25,35,0.0 +22955,47,9.5,6,0.0 +22955,77,13,2,0.0 +22955,18,62.5,34,0.0 +22955,16,17.45,6,0.0 +22955,62,49.3,28,0.0 +22955,40,18.4,33,0.0 +22955,73,15,24,0.0 +22955,71,21.5,6,0.0 +22955,68,12.5,36,0.0 +22955,61,28.5,28,0.0 +22955,65,21.05,13,0.0 +22955,23,9,40,0.0 +22955,2,19,17,0.0 +22955,48,12.75,29,0.0 +22955,15,15.5,6,0.0 +22955,56,38,30,0.0 +22955,24,4.5,10,0.0 +22955,3,10,1,0.0 +22955,67,14,49,0.0 +22955,19,9.2,41,0.0 +22955,17,39,19,0.0 +22955,66,17,42,0.0 +22955,44,19.45,25,0.0 +22956,24,4.5,41,0.0 +22956,12,38,6,0.0 +22956,18,62.5,49,0.0 +22956,17,39,27,0.0 +22956,23,9,41,0.0 +22956,63,43.9,4,0.0 +22956,52,7,49,0.0 +22956,67,14,8,0.0 +22956,36,19,10,0.0 +22956,56,38,27,0.0 +22956,13,6,48,0.0 +22956,40,18.4,41,0.0 +22956,14,23.25,21,0.0 +22956,19,9.2,29,0.0 +22956,7,30,13,0.0 +22956,54,7.45,12,0.0 +22956,15,15.5,28,0.0 +22956,3,10,37,0.0 +22956,37,26,35,0.0 +22956,55,24,17,0.0 +22956,22,21,30,0.0 +22956,32,32,34,0.0 +22956,68,12.5,6,0.0 +22956,47,9.5,34,0.0 +22956,31,12.5,41,0.0 +22956,5,21.35,24,0.0 +22956,38,263.5,10,0.0 +22956,64,33.25,28,0.0 +22956,50,16.25,27,0.0 +22956,39,18,25,0.0 +22956,58,13.25,8,0.0 +22956,34,14,7,0.0 +22956,57,19.5,29,0.0 +22956,2,19,27,0.0 +22956,4,22,4,0.0 +22956,45,9.5,48,0.0 +22956,21,10,5,0.0 +22956,1,18,41,0.0 +22956,66,17,31,0.0 +22956,16,17.45,37,0.0 +22956,72,34.8,23,0.0 +22956,6,25,45,0.0 +22956,30,25.89,38,0.0 +22956,69,36,30,0.0 +22956,75,7.75,20,0.0 +22956,11,21,27,0.0 +22956,77,13,38,0.0 +22956,26,31.23,9,0.0 +22956,20,81,26,0.0 +22956,71,21.5,22,0.0 +22956,28,45.6,23,0.0 +22956,43,46,33,0.0 +22956,51,53,12,0.0 +22956,73,15,26,0.0 +22956,59,55,24,0.0 +22956,76,18,50,0.0 +22956,74,10,5,0.0 +22956,70,15,3,0.0 +22956,8,40,8,0.0 +22956,48,12.75,26,0.0 +22956,49,20,33,0.0 +22956,44,19.45,24,0.0 +22956,42,14,41,0.0 +22956,61,28.5,34,0.0 +22956,41,9.65,23,0.0 +22956,25,14,12,0.0 +22956,9,97,15,0.0 +22956,35,18,45,0.0 +22956,53,32.8,10,0.0 +22956,27,43.9,33,0.0 +22956,33,2.5,4,0.0 +22956,29,123.79,35,0.0 +22956,60,34,33,0.0 +22956,65,21.05,7,0.0 +22956,46,12,17,0.0 +22956,10,31,27,0.0 +22957,74,10,8,0.0 +22957,49,20,36,0.0 +22957,13,6,27,0.0 +22957,70,15,13,0.0 +22957,64,33.25,24,0.0 +22957,6,25,8,0.0 +22957,56,38,29,0.0 +22957,33,2.5,29,0.0 +22957,44,19.45,43,0.0 +22957,4,22,40,0.0 +22957,75,7.75,48,0.0 +22957,45,9.5,34,0.0 +22957,41,9.65,8,0.0 +22957,26,31.23,48,0.0 +22957,15,15.5,33,0.0 +22957,61,28.5,23,0.0 +22957,42,14,45,0.0 +22957,24,4.5,7,0.0 +22957,21,10,46,0.0 +22957,68,12.5,41,0.0 +22957,1,18,12,0.0 +22957,7,30,47,0.0 +22957,39,18,18,0.0 +22957,59,55,48,0.0 +22957,72,34.8,7,0.0 +22957,10,31,17,0.0 +22957,67,14,39,0.0 +22957,35,18,42,0.0 +22957,48,12.75,8,0.0 +22957,34,14,4,0.0 +22957,25,14,14,0.0 +22957,50,16.25,45,0.0 +22957,3,10,7,0.0 +22957,76,18,19,0.0 +22957,73,15,9,0.0 +22957,69,36,33,0.0 +22957,2,19,28,0.0 +22957,17,39,18,0.0 +22957,5,21.35,13,0.0 +22957,40,18.4,50,0.0 +22957,57,19.5,23,0.0 +22957,12,38,41,0.0 +22957,16,17.45,40,0.0 +22957,77,13,22,0.0 +22957,14,23.25,34,0.0 +22957,19,9.2,47,0.0 +22957,46,12,18,0.0 +22957,58,13.25,19,0.0 +22957,53,32.8,5,0.0 +22957,9,97,9,0.0 +22958,74,10,10,0.0 +22958,34,14,23,0.0 +22958,73,15,31,0.0 +22958,72,34.8,29,0.0 +22958,55,24,32,0.0 +22958,60,34,33,0.0 +22958,57,19.5,28,0.0 +22958,27,43.9,49,0.0 +22958,16,17.45,16,0.0 +22958,64,33.25,16,0.0 +22958,58,13.25,37,0.0 +22958,77,13,14,0.0 +22958,63,43.9,25,0.0 +22958,56,38,7,0.0 +22958,68,12.5,42,0.0 +22958,42,14,27,0.0 +22958,40,18.4,26,0.0 +22958,15,15.5,7,0.0 +22958,36,19,15,0.0 +22958,45,9.5,24,0.0 +22958,17,39,34,0.0 +22958,29,123.79,1,0.0 +22958,50,16.25,34,0.0 +22958,47,9.5,20,0.0 +22958,19,9.2,45,0.0 +22958,76,18,30,0.0 +22958,38,263.5,25,0.0 +22958,70,15,39,0.0 +22958,52,7,16,0.0 +22958,67,14,37,0.0 +22958,22,21,14,0.0 +22958,20,81,32,0.0 +22958,23,9,28,0.0 +22958,61,28.5,4,0.0 +22958,35,18,36,0.0 +22958,12,38,9,0.0 +22958,8,40,33,0.0 +22958,51,53,21,0.0 +22958,53,32.8,49,0.0 +22958,7,30,7,0.0 +22958,62,49.3,45,0.0 +22958,21,10,28,0.0 +22958,1,18,8,0.0 +22958,18,62.5,3,0.0 +22958,5,21.35,27,0.0 +22958,39,18,39,0.0 +22958,28,45.6,17,0.0 +22958,46,12,8,0.0 +22958,44,19.45,22,0.0 +22958,59,55,2,0.0 +22958,31,12.5,24,0.0 +22958,48,12.75,34,0.0 +22958,41,9.65,22,0.0 +22958,25,14,44,0.0 +22958,32,32,4,0.0 +22958,3,10,28,0.0 +22958,9,97,42,0.0 +22958,2,19,4,0.0 +22958,54,7.45,10,0.0 +22958,33,2.5,36,0.0 +22958,37,26,23,0.0 +22959,65,21.05,38,0.0 +22959,1,18,44,0.0 +22959,34,14,15,0.0 +22959,61,28.5,42,0.0 +22959,10,31,45,0.0 +22959,40,18.4,37,0.0 +22959,33,2.5,15,0.0 +22959,59,55,24,0.0 +22959,67,14,41,0.0 +22959,36,19,18,0.0 +22959,71,21.5,18,0.0 +22959,26,31.23,1,0.0 +22959,19,9.2,43,0.0 +22959,30,25.89,28,0.0 +22959,41,9.65,4,0.0 +22959,54,7.45,8,0.0 +22959,14,23.25,37,0.0 +22959,3,10,48,0.0 +22959,23,9,41,0.0 +22959,73,15,36,0.0 +22959,60,34,3,0.0 +22959,51,53,6,0.0 +22959,6,25,22,0.0 +22959,68,12.5,27,0.0 +22959,46,12,14,0.0 +22959,58,13.25,22,0.0 +22959,31,12.5,40,0.0 +22959,55,24,38,0.0 +22959,8,40,38,0.0 +22959,28,45.6,11,0.0 +22959,50,16.25,2,0.0 +22959,72,34.8,19,0.0 +22959,42,14,42,0.0 +22959,13,6,15,0.0 +22959,12,38,32,0.0 +22959,18,62.5,9,0.0 +22959,27,43.9,39,0.0 +22959,29,123.79,46,0.0 +22959,48,12.75,44,0.0 +22959,25,14,17,0.0 +22959,38,263.5,42,0.0 +22959,17,39,39,0.0 +22959,53,32.8,40,0.0 +22959,45,9.5,50,0.0 +22959,11,21,50,0.0 +22959,57,19.5,2,0.0 +22959,2,19,10,0.0 +22959,35,18,22,0.0 +22959,70,15,36,0.0 +22959,69,36,11,0.0 +22959,22,21,9,0.0 +22959,7,30,22,0.0 +22959,52,7,36,0.0 +22959,47,9.5,39,0.0 +22960,23,9,21,0.0 +22960,16,17.45,14,0.0 +22960,32,32,24,0.0 +22960,71,21.5,40,0.0 +22960,10,31,33,0.0 +22960,53,32.8,33,0.0 +22960,52,7,37,0.0 +22960,35,18,21,0.0 +22960,54,7.45,25,0.0 +22960,51,53,45,0.0 +22960,47,9.5,48,0.0 +22960,29,123.79,34,0.0 +22960,21,10,49,0.0 +22960,61,28.5,50,0.0 +22960,62,49.3,7,0.0 +22960,75,7.75,27,0.0 +22960,5,21.35,19,0.0 +22960,33,2.5,34,0.0 +22960,69,36,19,0.0 +22960,25,14,24,0.0 +22960,55,24,45,0.0 +22960,46,12,33,0.0 +22960,64,33.25,25,0.0 +22960,9,97,26,0.0 +22960,28,45.6,21,0.0 +22960,41,9.65,43,0.0 +22960,43,46,34,0.0 +22960,17,39,47,0.0 +22960,45,9.5,6,0.0 +22960,4,22,16,0.0 +22960,18,62.5,33,0.0 +22960,67,14,36,0.0 +22960,63,43.9,44,0.0 +22960,49,20,42,0.0 +22960,60,34,31,0.0 +22960,6,25,8,0.0 +22960,15,15.5,44,0.0 +22960,3,10,12,0.0 +22960,26,31.23,18,0.0 +22960,73,15,45,0.0 +22960,1,18,50,0.0 +22960,31,12.5,46,0.0 +22960,77,13,5,0.0 +22960,19,9.2,9,0.0 +22960,38,263.5,25,0.0 +22960,11,21,38,0.0 +22960,27,43.9,32,0.0 +22960,58,13.25,50,0.0 +22960,40,18.4,40,0.0 +22960,14,23.25,11,0.0 +22960,42,14,47,0.0 +22960,57,19.5,10,0.0 +22960,20,81,16,0.0 +22960,39,18,30,0.0 +22960,72,34.8,20,0.0 +22960,7,30,30,0.0 +22960,74,10,12,0.0 +22960,30,25.89,47,0.0 +22960,13,6,23,0.0 +22960,24,4.5,9,0.0 +22960,34,14,7,0.0 +22960,66,17,8,0.0 +22960,65,21.05,16,0.0 +22960,36,19,40,0.0 +22960,59,55,1,0.0 +22960,48,12.75,3,0.0 +22960,2,19,44,0.0 +22960,12,38,42,0.0 +22960,70,15,13,0.0 +22960,8,40,31,0.0 +22960,44,19.45,10,0.0 +22960,68,12.5,16,0.0 +22960,50,16.25,9,0.0 +22960,56,38,36,0.0 +22960,22,21,12,0.0 +22961,19,9.2,5,0.0 +22961,33,2.5,50,0.0 +22961,25,14,38,0.0 +22961,38,263.5,44,0.0 +22961,24,4.5,18,0.0 +22961,13,6,47,0.0 +22961,74,10,47,0.0 +22961,31,12.5,21,0.0 +22961,28,45.6,8,0.0 +22961,65,21.05,18,0.0 +22961,5,21.35,40,0.0 +22961,57,19.5,4,0.0 +22961,66,17,37,0.0 +22961,71,21.5,13,0.0 +22961,15,15.5,39,0.0 +22961,54,7.45,33,0.0 +22961,75,7.75,21,0.0 +22961,60,34,35,0.0 +22961,70,15,3,0.0 +22961,35,18,33,0.0 +22961,47,9.5,2,0.0 +22961,50,16.25,46,0.0 +22961,68,12.5,22,0.0 +22961,63,43.9,37,0.0 +22961,41,9.65,27,0.0 +22961,59,55,37,0.0 +22961,12,38,10,0.0 +22961,16,17.45,47,0.0 +22961,7,30,2,0.0 +22961,14,23.25,28,0.0 +22961,21,10,9,0.0 +22962,33,2.5,22,0.0 +22962,75,7.75,2,0.0 +22962,27,43.9,41,0.0 +22962,45,9.5,47,0.0 +22962,55,24,42,0.0 +22962,66,17,28,0.0 +22962,42,14,5,0.0 +22962,37,26,31,0.0 +22962,28,45.6,31,0.0 +22962,40,18.4,1,0.0 +22962,60,34,41,0.0 +22962,74,10,34,0.0 +22962,19,9.2,16,0.0 +22962,54,7.45,1,0.0 +22962,56,38,6,0.0 +22962,24,4.5,32,0.0 +22962,61,28.5,33,0.0 +22962,77,13,48,0.0 +22962,46,12,9,0.0 +22962,21,10,18,0.0 +22962,73,15,32,0.0 +22962,14,23.25,6,0.0 +22962,12,38,5,0.0 +22962,29,123.79,17,0.0 +22962,39,18,23,0.0 +22962,1,18,15,0.0 +22962,64,33.25,24,0.0 +22962,70,15,49,0.0 +22962,16,17.45,48,0.0 +22962,68,12.5,18,0.0 +22962,23,9,50,0.0 +22962,59,55,38,0.0 +22962,43,46,48,0.0 +22962,7,30,10,0.0 +22962,22,21,44,0.0 +22962,44,19.45,49,0.0 +22962,63,43.9,18,0.0 +22962,6,25,43,0.0 +22962,4,22,37,0.0 +22962,35,18,48,0.0 +22962,10,31,19,0.0 +22962,18,62.5,21,0.0 +22962,11,21,3,0.0 +22962,52,7,4,0.0 +22962,67,14,10,0.0 +22962,53,32.8,26,0.0 +22962,8,40,29,0.0 +22962,51,53,41,0.0 +22962,13,6,47,0.0 +22962,38,263.5,44,0.0 +22962,32,32,13,0.0 +22962,69,36,28,0.0 +22962,71,21.5,44,0.0 +22962,41,9.65,39,0.0 +22963,22,21,17,0.0 +22963,44,19.45,22,0.0 +22963,13,6,6,0.0 +22963,45,9.5,41,0.0 +22963,30,25.89,25,0.0 +22963,41,9.65,42,0.0 +22963,65,21.05,44,0.0 +22963,70,15,26,0.0 +22963,69,36,22,0.0 +22963,49,20,21,0.0 +22963,15,15.5,44,0.0 +22963,50,16.25,4,0.0 +22963,24,4.5,8,0.0 +22963,35,18,31,0.0 +22963,67,14,7,0.0 +22963,29,123.79,24,0.0 +22963,48,12.75,16,0.0 +22963,17,39,24,0.0 +22963,28,45.6,32,0.0 +22963,57,19.5,41,0.0 +22963,71,21.5,43,0.0 +22963,77,13,42,0.0 +22963,36,19,50,0.0 +22963,54,7.45,17,0.0 +22963,1,18,27,0.0 +22963,59,55,38,0.0 +22963,46,12,35,0.0 +22963,16,17.45,35,0.0 +22963,20,81,16,0.0 +22963,32,32,29,0.0 +22963,60,34,2,0.0 +22963,40,18.4,46,0.0 +22963,26,31.23,8,0.0 +22963,76,18,4,0.0 +22963,31,12.5,28,0.0 +22963,23,9,37,0.0 +22963,6,25,22,0.0 +22963,74,10,1,0.0 +22963,12,38,7,0.0 +22963,66,17,20,0.0 +22963,14,23.25,9,0.0 +22963,39,18,13,0.0 +22963,47,9.5,18,0.0 +22963,8,40,45,0.0 +22963,27,43.9,45,0.0 +22963,9,97,1,0.0 +22963,38,263.5,34,0.0 +22963,21,10,19,0.0 +22963,51,53,11,0.0 +22963,34,14,5,0.0 +22963,62,49.3,14,0.0 +22963,68,12.5,24,0.0 +22963,75,7.75,46,0.0 +22963,64,33.25,26,0.0 +22963,56,38,20,0.0 +22963,3,10,5,0.0 +22963,55,24,13,0.0 +22963,53,32.8,11,0.0 +22963,58,13.25,20,0.0 +22963,18,62.5,21,0.0 +22963,42,14,23,0.0 +22963,4,22,35,0.0 +22964,27,43.9,19,0.0 +22964,69,36,25,0.0 +22964,38,263.5,24,0.0 +22964,19,9.2,10,0.0 +22964,48,12.75,16,0.0 +22964,33,2.5,8,0.0 +22964,50,16.25,43,0.0 +22964,35,18,3,0.0 +22964,31,12.5,11,0.0 +22964,53,32.8,27,0.0 +22964,14,23.25,50,0.0 +22964,3,10,42,0.0 +22964,1,18,38,0.0 +22964,23,9,3,0.0 +22964,75,7.75,20,0.0 +22964,49,20,34,0.0 +22964,24,4.5,47,0.0 +22964,18,62.5,7,0.0 +22964,43,46,31,0.0 +22964,40,18.4,14,0.0 +22964,37,26,23,0.0 +22964,21,10,48,0.0 +22964,29,123.79,29,0.0 +22964,32,32,8,0.0 +22964,22,21,10,0.0 +22964,68,12.5,14,0.0 +22964,30,25.89,12,0.0 +22964,11,21,15,0.0 +22964,76,18,36,0.0 +22964,20,81,24,0.0 +22964,6,25,31,0.0 +22964,51,53,4,0.0 +22964,44,19.45,46,0.0 +22964,5,21.35,10,0.0 +22964,10,31,37,0.0 +22964,42,14,38,0.0 +22964,41,9.65,44,0.0 +22964,2,19,29,0.0 +22964,62,49.3,36,0.0 +22964,71,21.5,40,0.0 +22964,64,33.25,32,0.0 +22964,67,14,29,0.0 +22964,46,12,17,0.0 +22964,61,28.5,21,0.0 +22964,4,22,21,0.0 +22964,13,6,22,0.0 +22964,7,30,32,0.0 +22964,57,19.5,39,0.0 +22964,58,13.25,35,0.0 +22964,8,40,28,0.0 +22964,56,38,18,0.0 +22964,9,97,35,0.0 +22964,25,14,17,0.0 +22964,47,9.5,21,0.0 +22964,65,21.05,3,0.0 +22964,16,17.45,6,0.0 +22964,17,39,35,0.0 +22964,52,7,39,0.0 +22964,74,10,46,0.0 +22964,34,14,33,0.0 +22964,28,45.6,31,0.0 +22964,26,31.23,17,0.0 +22964,59,55,36,0.0 +22964,55,24,42,0.0 +22964,66,17,19,0.0 +22965,1,18,45,0.0 +22965,70,15,3,0.0 +22965,55,24,48,0.0 +22965,7,30,7,0.0 +22965,76,18,13,0.0 +22965,69,36,32,0.0 +22965,47,9.5,22,0.0 +22965,25,14,34,0.0 +22965,10,31,15,0.0 +22965,16,17.45,8,0.0 +22965,60,34,25,0.0 +22965,20,81,17,0.0 +22965,15,15.5,12,0.0 +22965,2,19,25,0.0 +22965,28,45.6,43,0.0 +22965,53,32.8,11,0.0 +22965,54,7.45,45,0.0 +22965,38,263.5,23,0.0 +22965,58,13.25,17,0.0 +22965,39,18,36,0.0 +22965,57,19.5,5,0.0 +22965,8,40,33,0.0 +22965,46,12,37,0.0 +22965,22,21,44,0.0 +22965,50,16.25,20,0.0 +22965,56,38,16,0.0 +22965,64,33.25,17,0.0 +22965,67,14,21,0.0 +22965,42,14,45,0.0 +22965,75,7.75,25,0.0 +22965,66,17,38,0.0 +22965,48,12.75,44,0.0 +22965,74,10,35,0.0 +22965,59,55,32,0.0 +22965,23,9,5,0.0 +22965,26,31.23,9,0.0 +22965,61,28.5,4,0.0 +22965,52,7,33,0.0 +22965,73,15,48,0.0 +22965,49,20,34,0.0 +22965,19,9.2,2,0.0 +22965,5,21.35,11,0.0 +22965,18,62.5,31,0.0 +22965,12,38,33,0.0 +22965,33,2.5,38,0.0 +22965,30,25.89,4,0.0 +22965,9,97,7,0.0 +22965,21,10,15,0.0 +22965,44,19.45,29,0.0 +22965,14,23.25,23,0.0 +22965,72,34.8,34,0.0 +22965,29,123.79,18,0.0 +22965,34,14,31,0.0 +22965,71,21.5,8,0.0 +22965,13,6,24,0.0 +22965,68,12.5,42,0.0 +22965,65,21.05,28,0.0 +22965,45,9.5,39,0.0 +22965,31,12.5,5,0.0 +22965,77,13,7,0.0 +22965,6,25,12,0.0 +22965,32,32,22,0.0 +22965,37,26,6,0.0 +22965,3,10,35,0.0 +22965,24,4.5,16,0.0 +22965,35,18,30,0.0 +22965,43,46,12,0.0 +22965,51,53,40,0.0 +22965,36,19,41,0.0 +22965,4,22,12,0.0 +22965,62,49.3,26,0.0 +22965,41,9.65,39,0.0 +22965,40,18.4,21,0.0 +22965,63,43.9,14,0.0 +22965,11,21,4,0.0 +22966,68,12.5,42,0.0 +22966,32,32,2,0.0 +22966,69,36,8,0.0 +22966,7,30,49,0.0 +22966,62,49.3,31,0.0 +22966,58,13.25,29,0.0 +22966,53,32.8,50,0.0 +22966,9,97,47,0.0 +22966,12,38,21,0.0 +22966,38,263.5,3,0.0 +22966,27,43.9,5,0.0 +22966,50,16.25,20,0.0 +22966,15,15.5,26,0.0 +22966,31,12.5,1,0.0 +22966,56,38,21,0.0 +22966,43,46,18,0.0 +22966,66,17,36,0.0 +22966,33,2.5,8,0.0 +22966,74,10,49,0.0 +22966,60,34,44,0.0 +22966,72,34.8,5,0.0 +22966,20,81,29,0.0 +22966,36,19,43,0.0 +22966,19,9.2,5,0.0 +22966,57,19.5,40,0.0 +22966,8,40,49,0.0 +22966,1,18,37,0.0 +22966,77,13,23,0.0 +22966,41,9.65,2,0.0 +22966,52,7,4,0.0 +22966,40,18.4,38,0.0 +22966,42,14,20,0.0 +22966,64,33.25,44,0.0 +22966,26,31.23,17,0.0 +22966,46,12,44,0.0 +22966,22,21,11,0.0 +22966,6,25,40,0.0 +22966,61,28.5,15,0.0 +22966,63,43.9,8,0.0 +22967,27,43.9,32,0.0 +22967,73,15,34,0.0 +22967,34,14,41,0.0 +22967,11,21,41,0.0 +22967,50,16.25,48,0.0 +22967,59,55,44,0.0 +22967,14,23.25,20,0.0 +22967,51,53,21,0.0 +22967,21,10,30,0.0 +22967,18,62.5,29,0.0 +22967,13,6,27,0.0 +22967,46,12,8,0.0 +22967,72,34.8,11,0.0 +22967,66,17,13,0.0 +22967,45,9.5,11,0.0 +22967,53,32.8,17,0.0 +22968,5,21.35,20,0.0 +22968,25,14,7,0.0 +22968,4,22,44,0.0 +22968,61,28.5,13,0.0 +22968,15,15.5,18,0.0 +22968,10,31,16,0.0 +22968,46,12,8,0.0 +22968,9,97,48,0.0 +22968,76,18,4,0.0 +22968,70,15,3,0.0 +22968,6,25,35,0.0 +22968,28,45.6,29,0.0 +22968,62,49.3,15,0.0 +22968,75,7.75,43,0.0 +22968,51,53,23,0.0 +22968,20,81,45,0.0 +22968,39,18,21,0.0 +22968,21,10,47,0.0 +22968,43,46,33,0.0 +22968,13,6,23,0.0 +22968,31,12.5,21,0.0 +22968,55,24,1,0.0 +22968,42,14,31,0.0 +22968,23,9,3,0.0 +22968,73,15,11,0.0 +22968,12,38,43,0.0 +22968,77,13,15,0.0 +22968,14,23.25,45,0.0 +22968,1,18,6,0.0 +22968,32,32,48,0.0 +22968,3,10,5,0.0 +22968,16,17.45,11,0.0 +22968,34,14,31,0.0 +22968,38,263.5,23,0.0 +22968,44,19.45,42,0.0 +22968,7,30,24,0.0 +22968,53,32.8,43,0.0 +22968,74,10,39,0.0 +22968,2,19,37,0.0 +22968,58,13.25,30,0.0 +22968,52,7,17,0.0 +22968,27,43.9,40,0.0 +22968,41,9.65,35,0.0 +22968,18,62.5,33,0.0 +22968,60,34,43,0.0 +22968,57,19.5,49,0.0 +22968,68,12.5,39,0.0 +22968,40,18.4,38,0.0 +22968,36,19,11,0.0 +22968,19,9.2,7,0.0 +22968,33,2.5,19,0.0 +22968,47,9.5,46,0.0 +22968,24,4.5,11,0.0 +22968,63,43.9,5,0.0 +22968,54,7.45,38,0.0 +22968,71,21.5,31,0.0 +22968,50,16.25,48,0.0 +22968,37,26,12,0.0 +22968,49,20,27,0.0 +22968,65,21.05,29,0.0 +22968,59,55,46,0.0 +22968,56,38,36,0.0 +22968,66,17,26,0.0 +22969,18,62.5,15,0.0 +22969,2,19,27,0.0 +22969,17,39,49,0.0 +22969,63,43.9,22,0.0 +22969,76,18,3,0.0 +22969,26,31.23,28,0.0 +22969,77,13,14,0.0 +22969,73,15,28,0.0 +22969,52,7,4,0.0 +22969,66,17,21,0.0 +22969,71,21.5,48,0.0 +22969,45,9.5,13,0.0 +22969,60,34,6,0.0 +22969,57,19.5,24,0.0 +22969,39,18,19,0.0 +22969,21,10,29,0.0 +22969,61,28.5,40,0.0 +22969,27,43.9,21,0.0 +22969,34,14,48,0.0 +22969,23,9,44,0.0 +22969,24,4.5,37,0.0 +22969,29,123.79,22,0.0 +22969,49,20,8,0.0 +22969,58,13.25,25,0.0 +22969,13,6,2,0.0 +22969,8,40,42,0.0 +22969,65,21.05,48,0.0 +22969,59,55,17,0.0 +22969,41,9.65,19,0.0 +22969,3,10,16,0.0 +22969,48,12.75,18,0.0 +22969,43,46,25,0.0 +22969,42,14,9,0.0 +22969,12,38,8,0.0 +22969,70,15,9,0.0 +22969,32,32,8,0.0 +22969,7,30,46,0.0 +22969,53,32.8,40,0.0 +22969,51,53,30,0.0 +22969,75,7.75,4,0.0 +22969,54,7.45,27,0.0 +22969,56,38,10,0.0 +22969,30,25.89,1,0.0 +22969,72,34.8,12,0.0 +22969,47,9.5,46,0.0 +22969,40,18.4,39,0.0 +22969,44,19.45,43,0.0 +22969,6,25,37,0.0 +22969,11,21,1,0.0 +22969,25,14,35,0.0 +22969,4,22,14,0.0 +22969,35,18,31,0.0 +22969,28,45.6,37,0.0 +22969,14,23.25,13,0.0 +22969,19,9.2,6,0.0 +22969,62,49.3,12,0.0 +22969,68,12.5,47,0.0 +22969,37,26,22,0.0 +22969,67,14,49,0.0 +22969,1,18,13,0.0 +22969,16,17.45,34,0.0 +22969,50,16.25,5,0.0 +22969,20,81,45,0.0 +22969,36,19,42,0.0 +22969,69,36,1,0.0 +22969,22,21,17,0.0 +22969,5,21.35,46,0.0 +22970,15,15.5,32,0.0 +22970,37,26,36,0.0 +22970,16,17.45,3,0.0 +22970,6,25,7,0.0 +22970,29,123.79,29,0.0 +22970,5,21.35,1,0.0 +22970,13,6,15,0.0 +22970,43,46,20,0.0 +22970,71,21.5,48,0.0 +22970,35,18,28,0.0 +22970,27,43.9,6,0.0 +22970,73,15,35,0.0 +22970,57,19.5,47,0.0 +22970,38,263.5,41,0.0 +22970,65,21.05,50,0.0 +22970,9,97,48,0.0 +22970,39,18,29,0.0 +22970,48,12.75,45,0.0 +22971,62,49.3,26,0.0 +22971,11,21,20,0.0 +22971,10,31,36,0.0 +22971,74,10,44,0.0 +22971,16,17.45,18,0.0 +22971,64,33.25,17,0.0 +22971,2,19,18,0.0 +22971,44,19.45,47,0.0 +22971,43,46,20,0.0 +22971,56,38,10,0.0 +22971,58,13.25,39,0.0 +22971,49,20,44,0.0 +22971,66,17,5,0.0 +22971,37,26,45,0.0 +22971,24,4.5,35,0.0 +22971,25,14,48,0.0 +22971,20,81,29,0.0 +22971,29,123.79,4,0.0 +22971,1,18,49,0.0 +22971,75,7.75,29,0.0 +22971,54,7.45,31,0.0 +22971,8,40,4,0.0 +22971,76,18,38,0.0 +22971,42,14,7,0.0 +22971,3,10,49,0.0 +22971,6,25,15,0.0 +22971,48,12.75,30,0.0 +22971,59,55,3,0.0 +22971,68,12.5,23,0.0 +22971,60,34,3,0.0 +22971,23,9,27,0.0 +22971,51,53,10,0.0 +22971,63,43.9,41,0.0 +22971,15,15.5,5,0.0 +22972,7,30,43,0.0 +22972,62,49.3,23,0.0 +22972,42,14,32,0.0 +22972,53,32.8,15,0.0 +22972,16,17.45,19,0.0 +22972,17,39,25,0.0 +22972,19,9.2,33,0.0 +22972,2,19,43,0.0 +22972,11,21,41,0.0 +22972,59,55,42,0.0 +22972,50,16.25,19,0.0 +22972,8,40,1,0.0 +22972,47,9.5,10,0.0 +22972,33,2.5,28,0.0 +22972,70,15,35,0.0 +22972,31,12.5,9,0.0 +22972,27,43.9,12,0.0 +22972,3,10,25,0.0 +22972,34,14,27,0.0 +22972,61,28.5,13,0.0 +22972,56,38,11,0.0 +22972,58,13.25,30,0.0 +22972,49,20,10,0.0 +22972,38,263.5,6,0.0 +22972,73,15,29,0.0 +22972,72,34.8,5,0.0 +22972,69,36,46,0.0 +22972,22,21,3,0.0 +22972,29,123.79,3,0.0 +22972,52,7,2,0.0 +22972,14,23.25,31,0.0 +22972,12,38,21,0.0 +22972,5,21.35,49,0.0 +22972,35,18,37,0.0 +22972,67,14,32,0.0 +22972,13,6,46,0.0 +22972,46,12,9,0.0 +22972,28,45.6,1,0.0 +22972,36,19,37,0.0 +22972,74,10,39,0.0 +22972,15,15.5,6,0.0 +22972,51,53,22,0.0 +22972,76,18,13,0.0 +22972,75,7.75,27,0.0 +22972,37,26,29,0.0 +22972,44,19.45,43,0.0 +22972,18,62.5,50,0.0 +22972,66,17,9,0.0 +22972,10,31,38,0.0 +22972,20,81,25,0.0 +22972,48,12.75,1,0.0 +22972,54,7.45,42,0.0 +22972,32,32,16,0.0 +22972,55,24,21,0.0 +22972,57,19.5,10,0.0 +22972,40,18.4,47,0.0 +22972,4,22,34,0.0 +22972,39,18,4,0.0 +22972,43,46,18,0.0 +22972,1,18,27,0.0 +22972,6,25,4,0.0 +22972,41,9.65,42,0.0 +22972,65,21.05,18,0.0 +22972,30,25.89,42,0.0 +22972,21,10,38,0.0 +22972,71,21.5,13,0.0 +22972,77,13,31,0.0 +22972,68,12.5,28,0.0 +22972,63,43.9,25,0.0 +22972,45,9.5,36,0.0 +22972,23,9,15,0.0 +22972,9,97,38,0.0 +22972,25,14,19,0.0 +22972,64,33.25,42,0.0 +22972,60,34,22,0.0 +22972,26,31.23,32,0.0 +22972,24,4.5,15,0.0 +22973,61,28.5,40,0.0 +22973,50,16.25,39,0.0 +22973,34,14,32,0.0 +22973,29,123.79,42,0.0 +22973,26,31.23,22,0.0 +22973,24,4.5,20,0.0 +22973,73,15,37,0.0 +22973,5,21.35,9,0.0 +22973,42,14,42,0.0 +22973,68,12.5,42,0.0 +22973,6,25,48,0.0 +22973,12,38,22,0.0 +22973,54,7.45,27,0.0 +22973,32,32,29,0.0 +22973,56,38,22,0.0 +22973,76,18,37,0.0 +22973,49,20,32,0.0 +22973,51,53,32,0.0 +22973,17,39,5,0.0 +22973,66,17,22,0.0 +22973,53,32.8,23,0.0 +22973,37,26,6,0.0 +22973,71,21.5,4,0.0 +22973,8,40,29,0.0 +22973,64,33.25,23,0.0 +22973,13,6,1,0.0 +22973,39,18,11,0.0 +22973,7,30,32,0.0 +22973,27,43.9,42,0.0 +22973,28,45.6,32,0.0 +22973,31,12.5,11,0.0 +22973,62,49.3,23,0.0 +22973,46,12,26,0.0 +22973,74,10,12,0.0 +22973,3,10,47,0.0 +22973,9,97,20,0.0 +22973,44,19.45,24,0.0 +22973,67,14,27,0.0 +22973,21,10,32,0.0 +22973,2,19,37,0.0 +22973,23,9,9,0.0 +22973,15,15.5,39,0.0 +22973,20,81,42,0.0 +22973,10,31,14,0.0 +22974,40,18.4,48,0.0 +22974,73,15,32,0.0 +22975,12,38,13,0.0 +22975,68,12.5,5,0.0 +22975,41,9.65,37,0.0 +22975,74,10,18,0.0 +22975,50,16.25,28,0.0 +22975,40,18.4,9,0.0 +22975,28,45.6,7,0.0 +22975,76,18,13,0.0 +22975,46,12,50,0.0 +22975,53,32.8,28,0.0 +22975,38,263.5,41,0.0 +22975,39,18,38,0.0 +22975,66,17,37,0.0 +22975,7,30,38,0.0 +22975,15,15.5,30,0.0 +22975,48,12.75,1,0.0 +22975,25,14,37,0.0 +22975,55,24,16,0.0 +22975,54,7.45,21,0.0 +22975,34,14,40,0.0 +22975,6,25,6,0.0 +22975,35,18,43,0.0 +22975,62,49.3,17,0.0 +22975,70,15,50,0.0 +22975,44,19.45,2,0.0 +22975,2,19,20,0.0 +22975,27,43.9,17,0.0 +22975,47,9.5,25,0.0 +22975,22,21,48,0.0 +22975,11,21,48,0.0 +22975,32,32,11,0.0 +22975,31,12.5,27,0.0 +22975,8,40,16,0.0 +22975,57,19.5,7,0.0 +22975,64,33.25,2,0.0 +22975,49,20,2,0.0 +22975,29,123.79,14,0.0 +22975,45,9.5,27,0.0 +22975,56,38,32,0.0 +22975,63,43.9,17,0.0 +22975,60,34,49,0.0 +22975,3,10,47,0.0 +22975,72,34.8,3,0.0 +22975,58,13.25,14,0.0 +22975,17,39,45,0.0 +22975,10,31,35,0.0 +22975,30,25.89,9,0.0 +22975,65,21.05,37,0.0 +22975,67,14,2,0.0 +22975,19,9.2,13,0.0 +22975,51,53,47,0.0 +22975,9,97,16,0.0 +22975,36,19,21,0.0 +22975,23,9,37,0.0 +22975,13,6,18,0.0 +22975,26,31.23,28,0.0 +22975,75,7.75,27,0.0 +22975,69,36,7,0.0 +22975,61,28.5,47,0.0 +22975,33,2.5,41,0.0 +22975,43,46,32,0.0 +22975,37,26,9,0.0 +22975,20,81,19,0.0 +22975,42,14,7,0.0 +22976,44,19.45,34,0.0 +22976,63,43.9,17,0.0 +22976,76,18,14,0.0 +22976,22,21,31,0.0 +22976,48,12.75,14,0.0 +22977,57,19.5,14,0.0 +22977,28,45.6,38,0.0 +22977,76,18,50,0.0 +22977,15,15.5,27,0.0 +22977,50,16.25,26,0.0 +22977,10,31,26,0.0 +22977,38,263.5,21,0.0 +22977,65,21.05,16,0.0 +22977,68,12.5,28,0.0 +22977,72,34.8,5,0.0 +22977,52,7,31,0.0 +22977,3,10,50,0.0 +22977,17,39,48,0.0 +22977,55,24,32,0.0 +22977,13,6,7,0.0 +22977,63,43.9,35,0.0 +22977,7,30,28,0.0 +22977,48,12.75,8,0.0 +22977,39,18,29,0.0 +22977,37,26,16,0.0 +22977,19,9.2,35,0.0 +22977,33,2.5,17,0.0 +22978,16,17.45,35,0.0 +22978,56,38,48,0.0 +22978,11,21,36,0.0 +22978,41,9.65,11,0.0 +22978,65,21.05,30,0.0 +22978,66,17,32,0.0 +22978,34,14,43,0.0 +22978,54,7.45,23,0.0 +22978,7,30,3,0.0 +22978,6,25,31,0.0 +22978,27,43.9,33,0.0 +22978,8,40,33,0.0 +22978,58,13.25,6,0.0 +22978,71,21.5,45,0.0 +22978,32,32,29,0.0 +22978,59,55,24,0.0 +22978,31,12.5,39,0.0 +22978,26,31.23,11,0.0 +22978,53,32.8,41,0.0 +22978,18,62.5,43,0.0 +22978,39,18,10,0.0 +22978,3,10,11,0.0 +22978,73,15,8,0.0 +22978,67,14,30,0.0 +22978,33,2.5,15,0.0 +22978,43,46,4,0.0 +22978,22,21,10,0.0 +22978,47,9.5,10,0.0 +22978,10,31,31,0.0 +22978,35,18,34,0.0 +22978,48,12.75,34,0.0 +22978,20,81,33,0.0 +22978,36,19,26,0.0 +22978,14,23.25,29,0.0 +22978,70,15,17,0.0 +22978,23,9,2,0.0 +22978,28,45.6,1,0.0 +22978,77,13,11,0.0 +22978,52,7,41,0.0 +22978,61,28.5,11,0.0 +22978,42,14,19,0.0 +22978,4,22,15,0.0 +22978,68,12.5,46,0.0 +22978,49,20,23,0.0 +22978,60,34,4,0.0 +22978,63,43.9,19,0.0 +22978,57,19.5,42,0.0 +22978,19,9.2,36,0.0 +22978,50,16.25,48,0.0 +22978,21,10,25,0.0 +22978,2,19,33,0.0 +22978,12,38,23,0.0 +22978,64,33.25,3,0.0 +22978,74,10,45,0.0 +22978,55,24,18,0.0 +22978,17,39,15,0.0 +22978,72,34.8,2,0.0 +22978,30,25.89,50,0.0 +22978,38,263.5,36,0.0 +22978,75,7.75,1,0.0 +22978,25,14,9,0.0 +22978,44,19.45,18,0.0 +22978,9,97,23,0.0 +22978,62,49.3,27,0.0 +22978,37,26,46,0.0 +22978,24,4.5,17,0.0 +22978,1,18,38,0.0 +22979,28,45.6,30,0.0 +22979,55,24,41,0.0 +22979,5,21.35,16,0.0 +22979,68,12.5,40,0.0 +22979,7,30,13,0.0 +22979,54,7.45,30,0.0 +22979,30,25.89,35,0.0 +22979,63,43.9,30,0.0 +22979,21,10,42,0.0 +22979,69,36,35,0.0 +22979,33,2.5,33,0.0 +22979,3,10,27,0.0 +22979,51,53,36,0.0 +22979,65,21.05,16,0.0 +22979,25,14,30,0.0 +22979,49,20,49,0.0 +22979,56,38,13,0.0 +22979,16,17.45,18,0.0 +22979,27,43.9,7,0.0 +22979,23,9,18,0.0 +22979,34,14,18,0.0 +22979,44,19.45,45,0.0 +22979,59,55,26,0.0 +22979,37,26,10,0.0 +22979,11,21,25,0.0 +22979,35,18,11,0.0 +22979,43,46,38,0.0 +22979,15,15.5,41,0.0 +22979,76,18,15,0.0 +22979,19,9.2,33,0.0 +22979,41,9.65,45,0.0 +22979,31,12.5,20,0.0 +22979,74,10,48,0.0 +22979,13,6,15,0.0 +22979,24,4.5,16,0.0 +22979,58,13.25,6,0.0 +22979,57,19.5,39,0.0 +22979,20,81,1,0.0 +22979,14,23.25,6,0.0 +22979,62,49.3,24,0.0 +22979,50,16.25,44,0.0 +22979,9,97,27,0.0 +22979,72,34.8,20,0.0 +22979,42,14,36,0.0 +22979,60,34,26,0.0 +22979,46,12,35,0.0 +22979,61,28.5,48,0.0 +22979,66,17,41,0.0 +22979,6,25,41,0.0 +22979,29,123.79,9,0.0 +22979,18,62.5,32,0.0 +22979,48,12.75,14,0.0 +22979,8,40,20,0.0 +22979,1,18,50,0.0 +22979,45,9.5,9,0.0 +22979,26,31.23,18,0.0 +22979,73,15,9,0.0 +22979,36,19,3,0.0 +22979,39,18,42,0.0 +22979,40,18.4,32,0.0 +22979,4,22,30,0.0 +22979,32,32,21,0.0 +22979,22,21,17,0.0 +22979,38,263.5,3,0.0 +22979,75,7.75,24,0.0 +22979,77,13,43,0.0 +22979,70,15,38,0.0 +22979,47,9.5,40,0.0 +22979,67,14,12,0.0 +22979,12,38,36,0.0 +22979,64,33.25,42,0.0 +22979,10,31,25,0.0 +22979,53,32.8,32,0.0 +22980,56,38,32,0.0 +22980,24,4.5,36,0.0 +22980,59,55,15,0.0 +22980,55,24,30,0.0 +22980,20,81,19,0.0 +22980,69,36,38,0.0 +22980,75,7.75,44,0.0 +22980,54,7.45,30,0.0 +22980,50,16.25,46,0.0 +22980,58,13.25,46,0.0 +22980,39,18,29,0.0 +22980,74,10,17,0.0 +22980,32,32,17,0.0 +22981,32,32,31,0.0 +22981,2,19,33,0.0 +22981,46,12,30,0.0 +22981,25,14,37,0.0 +22981,47,9.5,9,0.0 +22981,53,32.8,9,0.0 +22981,76,18,43,0.0 +22981,75,7.75,33,0.0 +22981,11,21,20,0.0 +22981,67,14,19,0.0 +22981,30,25.89,23,0.0 +22981,39,18,41,0.0 +22981,1,18,11,0.0 +22981,6,25,2,0.0 +22981,37,26,34,0.0 +22981,15,15.5,46,0.0 +22981,68,12.5,11,0.0 +22981,22,21,16,0.0 +22981,69,36,46,0.0 +22981,49,20,24,0.0 +22981,10,31,21,0.0 +22981,73,15,34,0.0 +22981,17,39,34,0.0 +22981,77,13,24,0.0 +22981,35,18,11,0.0 +22981,48,12.75,10,0.0 +22981,33,2.5,39,0.0 +22981,41,9.65,19,0.0 +22981,56,38,33,0.0 +22981,50,16.25,28,0.0 +22981,34,14,40,0.0 +22981,55,24,40,0.0 +22981,43,46,47,0.0 +22981,21,10,29,0.0 +22981,26,31.23,6,0.0 +22981,16,17.45,21,0.0 +22981,9,97,47,0.0 +22981,74,10,39,0.0 +22981,72,34.8,11,0.0 +22981,60,34,36,0.0 +22981,40,18.4,33,0.0 +22981,70,15,17,0.0 +22981,42,14,45,0.0 +22981,38,263.5,35,0.0 +22981,24,4.5,34,0.0 +22982,60,34,28,0.0 +22982,77,13,44,0.0 +22982,61,28.5,45,0.0 +22982,7,30,2,0.0 +22982,24,4.5,24,0.0 +22982,38,263.5,36,0.0 +22982,36,19,20,0.0 +22982,33,2.5,40,0.0 +22982,27,43.9,7,0.0 +22982,48,12.75,47,0.0 +22982,44,19.45,12,0.0 +22982,17,39,25,0.0 +22982,75,7.75,28,0.0 +22982,30,25.89,19,0.0 +22982,74,10,43,0.0 +22982,10,31,27,0.0 +22982,41,9.65,45,0.0 +22982,54,7.45,40,0.0 +22982,19,9.2,19,0.0 +22982,23,9,45,0.0 +22982,37,26,26,0.0 +22982,47,9.5,29,0.0 +22982,14,23.25,41,0.0 +22982,67,14,6,0.0 +22982,11,21,40,0.0 +22982,76,18,28,0.0 +22982,72,34.8,15,0.0 +22982,34,14,43,0.0 +22982,1,18,31,0.0 +22982,45,9.5,26,0.0 +22982,15,15.5,24,0.0 +22982,4,22,23,0.0 +22982,3,10,15,0.0 +22982,35,18,4,0.0 +22983,42,14,13,0.0 +22983,33,2.5,25,0.0 +22983,1,18,50,0.0 +22983,61,28.5,6,0.0 +22983,2,19,22,0.0 +22983,55,24,37,0.0 +22983,56,38,50,0.0 +22983,50,16.25,49,0.0 +22983,72,34.8,21,0.0 +22983,52,7,3,0.0 +22983,32,32,37,0.0 +22983,53,32.8,7,0.0 +22983,15,15.5,30,0.0 +22983,73,15,36,0.0 +22983,6,25,7,0.0 +22983,8,40,31,0.0 +22983,47,9.5,48,0.0 +22983,68,12.5,45,0.0 +22983,54,7.45,2,0.0 +22983,31,12.5,38,0.0 +22983,22,21,49,0.0 +22983,36,19,47,0.0 +22983,59,55,39,0.0 +22983,70,15,2,0.0 +22983,9,97,26,0.0 +22983,26,31.23,30,0.0 +22983,44,19.45,5,0.0 +22983,77,13,15,0.0 +22983,69,36,25,0.0 +22983,39,18,40,0.0 +22983,23,9,30,0.0 +22983,43,46,4,0.0 +22983,19,9.2,9,0.0 +22983,21,10,9,0.0 +22983,34,14,16,0.0 +22983,64,33.25,20,0.0 +22983,75,7.75,50,0.0 +22983,67,14,28,0.0 +22983,11,21,6,0.0 +22983,30,25.89,27,0.0 +22983,71,21.5,41,0.0 +22983,46,12,50,0.0 +22984,3,10,24,0.0 +22984,38,263.5,26,0.0 +22984,77,13,33,0.0 +22984,7,30,9,0.0 +22984,42,14,11,0.0 +22984,44,19.45,23,0.0 +22984,50,16.25,12,0.0 +22984,24,4.5,48,0.0 +22984,63,43.9,17,0.0 +22984,53,32.8,44,0.0 +22984,74,10,36,0.0 +22984,9,97,29,0.0 +22984,60,34,16,0.0 +22984,52,7,38,0.0 +22984,65,21.05,36,0.0 +22984,29,123.79,47,0.0 +22984,47,9.5,11,0.0 +22984,28,45.6,41,0.0 +22984,11,21,1,0.0 +22984,76,18,32,0.0 +22984,61,28.5,41,0.0 +22984,26,31.23,10,0.0 +22984,54,7.45,47,0.0 +22984,2,19,19,0.0 +22984,20,81,39,0.0 +22984,17,39,20,0.0 +22984,8,40,8,0.0 +22984,59,55,35,0.0 +22984,58,13.25,42,0.0 +22984,49,20,25,0.0 +22984,10,31,43,0.0 +22984,1,18,12,0.0 +22984,15,15.5,7,0.0 +22984,14,23.25,45,0.0 +22984,72,34.8,7,0.0 +22984,12,38,14,0.0 +22984,43,46,48,0.0 +22984,16,17.45,48,0.0 +22984,37,26,7,0.0 +22984,45,9.5,37,0.0 +22984,34,14,50,0.0 +22984,40,18.4,38,0.0 +22984,13,6,9,0.0 +22985,42,14,39,0.0 +22985,34,14,15,0.0 +22985,31,12.5,42,0.0 +22985,74,10,33,0.0 +22985,14,23.25,22,0.0 +22985,40,18.4,13,0.0 +22985,65,21.05,32,0.0 +22985,17,39,3,0.0 +22985,61,28.5,44,0.0 +22985,53,32.8,2,0.0 +22985,52,7,12,0.0 +22985,26,31.23,10,0.0 +22985,33,2.5,34,0.0 +22985,23,9,19,0.0 +22985,72,34.8,15,0.0 +22985,15,15.5,7,0.0 +22985,12,38,13,0.0 +22985,25,14,16,0.0 +22985,51,53,40,0.0 +22985,19,9.2,4,0.0 +22986,27,43.9,49,0.0 +22986,67,14,4,0.0 +22986,10,31,36,0.0 +22986,56,38,48,0.0 +22986,61,28.5,46,0.0 +22986,75,7.75,30,0.0 +22986,33,2.5,44,0.0 +22986,65,21.05,31,0.0 +22986,37,26,23,0.0 +22986,26,31.23,31,0.0 +22986,15,15.5,17,0.0 +22986,59,55,11,0.0 +22986,77,13,45,0.0 +22986,54,7.45,15,0.0 +22986,17,39,8,0.0 +22986,16,17.45,20,0.0 +22986,70,15,13,0.0 +22986,19,9.2,22,0.0 +22986,39,18,24,0.0 +22986,20,81,46,0.0 +22986,45,9.5,35,0.0 +22986,6,25,48,0.0 +22986,32,32,4,0.0 +22986,63,43.9,49,0.0 +22986,47,9.5,25,0.0 +22986,21,10,50,0.0 +22986,50,16.25,23,0.0 +22986,55,24,49,0.0 +22986,51,53,25,0.0 +22986,72,34.8,17,0.0 +22986,68,12.5,11,0.0 +22986,40,18.4,32,0.0 +22986,42,14,1,0.0 +22986,3,10,17,0.0 +22986,1,18,12,0.0 +22986,24,4.5,1,0.0 +22986,11,21,8,0.0 +22986,34,14,31,0.0 +22986,18,62.5,1,0.0 +22986,46,12,46,0.0 +22986,35,18,17,0.0 +22986,31,12.5,12,0.0 +22986,5,21.35,13,0.0 +22986,76,18,35,0.0 +22986,36,19,8,0.0 +22986,22,21,39,0.0 +22986,9,97,35,0.0 +22986,38,263.5,44,0.0 +22986,57,19.5,27,0.0 +22986,66,17,37,0.0 +22986,12,38,35,0.0 +22986,48,12.75,10,0.0 +22986,69,36,3,0.0 +22986,14,23.25,12,0.0 +22987,5,21.35,40,0.0 +22987,75,7.75,44,0.0 +22987,68,12.5,44,0.0 +22987,10,31,44,0.0 +22987,54,7.45,50,0.0 +22987,4,22,6,0.0 +22987,1,18,13,0.0 +22987,3,10,46,0.0 +22987,65,21.05,18,0.0 +22987,23,9,11,0.0 +22987,7,30,30,0.0 +22987,39,18,3,0.0 +22987,45,9.5,49,0.0 +22987,13,6,4,0.0 +22987,27,43.9,10,0.0 +22987,2,19,3,0.0 +22987,33,2.5,10,0.0 +22987,66,17,46,0.0 +22987,51,53,47,0.0 +22987,58,13.25,21,0.0 +22987,12,38,4,0.0 +22987,14,23.25,35,0.0 +22987,16,17.45,25,0.0 +22987,26,31.23,35,0.0 +22987,47,9.5,27,0.0 +22987,20,81,31,0.0 +22987,24,4.5,29,0.0 +22987,30,25.89,5,0.0 +22987,67,14,13,0.0 +22987,44,19.45,45,0.0 +22987,62,49.3,28,0.0 +22987,11,21,44,0.0 +22987,42,14,32,0.0 +22987,70,15,46,0.0 +22987,18,62.5,44,0.0 +22987,43,46,10,0.0 +22987,55,24,45,0.0 +22987,53,32.8,9,0.0 +22987,48,12.75,10,0.0 +22987,8,40,48,0.0 +22987,77,13,27,0.0 +22987,6,25,27,0.0 +22987,74,10,7,0.0 +22987,17,39,21,0.0 +22987,61,28.5,25,0.0 +22987,36,19,20,0.0 +22987,72,34.8,8,0.0 +22987,60,34,38,0.0 +22987,52,7,30,0.0 +22987,50,16.25,44,0.0 +22987,32,32,20,0.0 +22987,46,12,12,0.0 +22987,69,36,45,0.0 +22987,29,123.79,41,0.0 +22987,25,14,38,0.0 +22987,40,18.4,31,0.0 +22987,56,38,40,0.0 +22987,59,55,3,0.0 +22988,42,14,40,0.0 +22988,8,40,9,0.0 +22988,19,9.2,34,0.0 +22988,49,20,46,0.0 +22988,73,15,29,0.0 +22988,36,19,48,0.0 +22988,56,38,40,0.0 +22988,21,10,30,0.0 +22988,33,2.5,28,0.0 +22988,55,24,27,0.0 +22988,70,15,47,0.0 +22988,58,13.25,41,0.0 +22988,43,46,41,0.0 +22988,64,33.25,50,0.0 +22988,24,4.5,45,0.0 +22988,45,9.5,27,0.0 +22988,46,12,13,0.0 +22988,25,14,16,0.0 +22988,17,39,43,0.0 +22988,39,18,50,0.0 +22988,13,6,17,0.0 +22988,2,19,2,0.0 +22988,48,12.75,3,0.0 +22988,11,21,15,0.0 +22988,57,19.5,15,0.0 +22988,50,16.25,14,0.0 +22988,14,23.25,3,0.0 +22988,30,25.89,20,0.0 +22988,4,22,39,0.0 +22988,72,34.8,39,0.0 +22988,29,123.79,3,0.0 +22989,66,17,48,0.0 +22989,16,17.45,9,0.0 +22989,4,22,34,0.0 +22989,27,43.9,38,0.0 +22989,60,34,50,0.0 +22989,26,31.23,35,0.0 +22989,44,19.45,19,0.0 +22989,50,16.25,33,0.0 +22989,11,21,8,0.0 +22989,31,12.5,14,0.0 +22989,51,53,41,0.0 +22989,1,18,6,0.0 +22989,58,13.25,22,0.0 +22989,9,97,43,0.0 +22989,70,15,46,0.0 +22989,49,20,38,0.0 +22989,52,7,50,0.0 +22989,46,12,30,0.0 +22989,14,23.25,43,0.0 +22989,29,123.79,22,0.0 +22989,38,263.5,1,0.0 +22989,71,21.5,42,0.0 +22989,55,24,15,0.0 +22989,47,9.5,50,0.0 +22989,23,9,6,0.0 +22989,45,9.5,16,0.0 +22989,18,62.5,48,0.0 +22989,34,14,3,0.0 +22989,41,9.65,30,0.0 +22989,63,43.9,49,0.0 +22989,20,81,27,0.0 +22989,12,38,34,0.0 +22989,53,32.8,2,0.0 +22989,3,10,30,0.0 +22989,75,7.75,14,0.0 +22990,4,22,15,0.0 +22990,15,15.5,45,0.0 +22990,9,97,29,0.0 +22990,72,34.8,9,0.0 +22990,38,263.5,39,0.0 +22990,12,38,48,0.0 +22990,27,43.9,42,0.0 +22990,5,21.35,29,0.0 +22990,16,17.45,25,0.0 +22990,28,45.6,24,0.0 +22990,73,15,4,0.0 +22990,64,33.25,16,0.0 +22990,35,18,36,0.0 +22990,23,9,43,0.0 +22990,11,21,24,0.0 +22990,2,19,12,0.0 +22990,69,36,17,0.0 +22990,74,10,42,0.0 +22990,52,7,14,0.0 +22990,34,14,43,0.0 +22990,22,21,7,0.0 +22990,18,62.5,23,0.0 +22990,61,28.5,21,0.0 +22990,51,53,16,0.0 +22990,53,32.8,38,0.0 +22990,39,18,8,0.0 +22990,57,19.5,40,0.0 +22990,67,14,48,0.0 +22990,59,55,1,0.0 +22990,33,2.5,22,0.0 +22990,70,15,39,0.0 +22990,30,25.89,24,0.0 +22990,42,14,29,0.0 +22990,65,21.05,25,0.0 +22990,44,19.45,17,0.0 +22990,75,7.75,15,0.0 +22990,3,10,17,0.0 +22990,19,9.2,12,0.0 +22990,46,12,29,0.0 +22990,76,18,33,0.0 +22990,37,26,49,0.0 +22990,32,32,17,0.0 +22990,71,21.5,13,0.0 +22990,13,6,20,0.0 +22990,6,25,25,0.0 +22990,63,43.9,36,0.0 +22990,55,24,3,0.0 +22990,17,39,12,0.0 +22990,20,81,32,0.0 +22990,77,13,40,0.0 +22990,1,18,5,0.0 +22990,47,9.5,35,0.0 +22990,56,38,14,0.0 +22990,68,12.5,45,0.0 +22990,50,16.25,25,0.0 +22990,41,9.65,20,0.0 +22990,45,9.5,37,0.0 +22990,14,23.25,13,0.0 +22990,24,4.5,15,0.0 +22990,26,31.23,48,0.0 +22990,7,30,18,0.0 +22990,36,19,30,0.0 +22990,62,49.3,27,0.0 +22990,60,34,35,0.0 +22990,10,31,31,0.0 +22990,49,20,34,0.0 +22991,60,34,15,0.0 +22991,54,7.45,49,0.0 +22991,66,17,35,0.0 +22991,4,22,20,0.0 +22991,57,19.5,27,0.0 +22991,55,24,46,0.0 +22991,17,39,49,0.0 +22991,23,9,14,0.0 +22991,9,97,31,0.0 +22991,46,12,7,0.0 +22991,15,15.5,29,0.0 +22991,42,14,26,0.0 +22991,65,21.05,2,0.0 +22991,72,34.8,33,0.0 +22991,10,31,14,0.0 +22991,77,13,18,0.0 +22991,35,18,4,0.0 +22991,16,17.45,16,0.0 +22991,29,123.79,15,0.0 +22991,43,46,16,0.0 +22991,33,2.5,42,0.0 +22991,26,31.23,35,0.0 +22991,32,32,15,0.0 +22991,51,53,17,0.0 +22991,67,14,48,0.0 +22991,24,4.5,7,0.0 +22991,7,30,31,0.0 +22991,63,43.9,40,0.0 +22991,62,49.3,18,0.0 +22991,40,18.4,3,0.0 +22991,3,10,45,0.0 +22991,18,62.5,7,0.0 +22991,25,14,16,0.0 +22991,74,10,10,0.0 +22991,36,19,44,0.0 +22991,68,12.5,4,0.0 +22991,8,40,23,0.0 +22991,1,18,15,0.0 +22991,39,18,27,0.0 +22991,44,19.45,8,0.0 +22991,2,19,14,0.0 +22991,22,21,19,0.0 +22991,31,12.5,40,0.0 +22991,52,7,48,0.0 +22991,38,263.5,35,0.0 +22991,73,15,30,0.0 +22991,30,25.89,2,0.0 +22991,45,9.5,19,0.0 +22991,27,43.9,7,0.0 +22991,56,38,46,0.0 +22991,59,55,11,0.0 +22991,12,38,32,0.0 +22991,11,21,29,0.0 +22991,61,28.5,5,0.0 +22991,41,9.65,20,0.0 +22991,20,81,44,0.0 +22991,53,32.8,29,0.0 +22991,71,21.5,22,0.0 +22991,48,12.75,48,0.0 +22991,14,23.25,44,0.0 +22991,75,7.75,14,0.0 +22991,5,21.35,29,0.0 +22991,13,6,19,0.0 +22991,37,26,13,0.0 +22991,21,10,43,0.0 +22991,58,13.25,14,0.0 +22991,69,36,24,0.0 +22991,50,16.25,17,0.0 +22991,64,33.25,3,0.0 +22991,28,45.6,26,0.0 +22991,34,14,29,0.0 +22991,76,18,44,0.0 +22991,47,9.5,11,0.0 +22991,70,15,20,0.0 +22991,49,20,20,0.0 +22991,6,25,8,0.0 +22992,72,34.8,32,0.0 +22992,65,21.05,8,0.0 +22992,58,13.25,11,0.0 +22992,40,18.4,8,0.0 +22992,8,40,30,0.0 +22992,31,12.5,17,0.0 +22992,37,26,27,0.0 +22992,11,21,33,0.0 +22992,50,16.25,40,0.0 +22992,7,30,41,0.0 +22992,54,7.45,7,0.0 +22992,6,25,1,0.0 +22992,21,10,35,0.0 +22992,12,38,22,0.0 +22992,73,15,22,0.0 +22992,1,18,3,0.0 +22992,44,19.45,44,0.0 +22992,60,34,15,0.0 +22992,51,53,32,0.0 +22992,26,31.23,6,0.0 +22992,68,12.5,14,0.0 +22992,48,12.75,8,0.0 +22992,28,45.6,14,0.0 +22992,14,23.25,32,0.0 +22992,34,14,4,0.0 +22992,75,7.75,33,0.0 +22992,52,7,4,0.0 +22992,19,9.2,19,0.0 +22992,62,49.3,47,0.0 +22992,42,14,20,0.0 +22992,39,18,43,0.0 +22992,47,9.5,41,0.0 +22993,46,12,33,0.0 +22993,68,12.5,49,0.0 +22993,27,43.9,49,0.0 +22993,57,19.5,46,0.0 +22993,49,20,7,0.0 +22993,36,19,25,0.0 +22993,15,15.5,12,0.0 +22993,30,25.89,32,0.0 +22993,44,19.45,47,0.0 +22993,21,10,40,0.0 +22993,53,32.8,31,0.0 +22993,70,15,25,0.0 +22993,31,12.5,6,0.0 +22993,71,21.5,45,0.0 +22993,12,38,30,0.0 +22993,37,26,11,0.0 +22993,18,62.5,30,0.0 +22993,35,18,43,0.0 +22993,58,13.25,33,0.0 +22993,6,25,44,0.0 +22993,60,34,17,0.0 +22993,19,9.2,44,0.0 +22993,16,17.45,15,0.0 +22993,20,81,39,0.0 +22993,9,97,48,0.0 +22993,32,32,18,0.0 +22993,48,12.75,12,0.0 +22993,29,123.79,17,0.0 +22993,74,10,35,0.0 +22993,4,22,24,0.0 +22993,28,45.6,28,0.0 +22993,52,7,48,0.0 +22993,72,34.8,39,0.0 +22993,7,30,17,0.0 +22993,34,14,8,0.0 +22993,25,14,31,0.0 +22993,61,28.5,39,0.0 +22993,11,21,11,0.0 +22993,65,21.05,4,0.0 +22993,8,40,32,0.0 +22993,1,18,50,0.0 +22993,63,43.9,4,0.0 +22994,74,10,50,0.0 +22994,30,25.89,1,0.0 +22994,55,24,34,0.0 +22994,54,7.45,21,0.0 +22994,42,14,14,0.0 +22994,35,18,8,0.0 +22994,49,20,2,0.0 +22994,77,13,28,0.0 +22994,71,21.5,21,0.0 +22994,69,36,18,0.0 +22994,1,18,2,0.0 +22994,45,9.5,30,0.0 +22994,13,6,43,0.0 +22994,18,62.5,1,0.0 +22994,68,12.5,44,0.0 +22994,23,9,28,0.0 +22994,75,7.75,18,0.0 +22994,14,23.25,10,0.0 +22994,12,38,34,0.0 +22994,67,14,24,0.0 +22994,22,21,21,0.0 +22994,4,22,41,0.0 +22994,62,49.3,45,0.0 +22994,63,43.9,14,0.0 +22994,48,12.75,5,0.0 +22994,28,45.6,16,0.0 +22994,15,15.5,32,0.0 +22995,20,81,48,0.0 +22995,51,53,37,0.0 +22995,50,16.25,8,0.0 +22995,68,12.5,25,0.0 +22995,77,13,37,0.0 +22995,62,49.3,24,0.0 +22995,57,19.5,47,0.0 +22995,44,19.45,22,0.0 +22995,14,23.25,26,0.0 +22995,60,34,1,0.0 +22995,55,24,34,0.0 +22995,39,18,11,0.0 +22995,29,123.79,35,0.0 +22995,8,40,36,0.0 +22995,73,15,9,0.0 +22995,46,12,45,0.0 +22995,40,18.4,25,0.0 +22995,10,31,24,0.0 +22995,35,18,23,0.0 +22995,71,21.5,42,0.0 +22995,52,7,1,0.0 +22995,9,97,48,0.0 +22995,4,22,39,0.0 +22995,48,12.75,7,0.0 +22995,72,34.8,22,0.0 +22995,27,43.9,42,0.0 +22995,26,31.23,36,0.0 +22995,63,43.9,32,0.0 +22995,32,32,48,0.0 +22995,37,26,49,0.0 +22995,34,14,14,0.0 +22995,38,263.5,18,0.0 +22995,58,13.25,48,0.0 +22995,11,21,50,0.0 +22995,5,21.35,20,0.0 +22995,18,62.5,6,0.0 +22995,6,25,37,0.0 +22995,31,12.5,1,0.0 +22995,74,10,42,0.0 +22995,49,20,10,0.0 +22995,53,32.8,15,0.0 +22995,67,14,35,0.0 +22995,36,19,24,0.0 +22995,45,9.5,21,0.0 +22995,69,36,23,0.0 +22995,61,28.5,25,0.0 +22995,22,21,40,0.0 +22995,12,38,36,0.0 +22995,75,7.75,12,0.0 +22995,28,45.6,44,0.0 +22995,17,39,12,0.0 +22995,65,21.05,16,0.0 +22995,3,10,5,0.0 +22995,64,33.25,50,0.0 +22995,1,18,45,0.0 +22995,23,9,35,0.0 +22995,16,17.45,4,0.0 +22995,7,30,46,0.0 +22995,25,14,3,0.0 +22995,33,2.5,2,0.0 +22995,59,55,31,0.0 +22995,21,10,26,0.0 +22996,61,28.5,9,0.0 +22996,40,18.4,5,0.0 +22996,24,4.5,2,0.0 +22996,11,21,14,0.0 +22996,70,15,17,0.0 +22996,28,45.6,7,0.0 +22996,59,55,6,0.0 +22996,42,14,8,0.0 +22996,4,22,31,0.0 +22996,67,14,47,0.0 +22996,47,9.5,10,0.0 +22996,73,15,11,0.0 +22996,19,9.2,42,0.0 +22996,57,19.5,36,0.0 +22996,44,19.45,17,0.0 +22996,13,6,21,0.0 +22996,55,24,35,0.0 +22996,46,12,24,0.0 +22996,71,21.5,28,0.0 +22996,26,31.23,16,0.0 +22996,17,39,50,0.0 +22997,77,13,3,0.0 +22997,38,263.5,3,0.0 +22997,22,21,44,0.0 +22997,66,17,43,0.0 +22997,1,18,24,0.0 +22997,65,21.05,25,0.0 +22997,35,18,6,0.0 +22997,62,49.3,23,0.0 +22997,51,53,24,0.0 +22997,7,30,10,0.0 +22997,33,2.5,42,0.0 +22997,30,25.89,42,0.0 +22997,72,34.8,6,0.0 +22997,13,6,32,0.0 +22997,56,38,35,0.0 +22997,57,19.5,39,0.0 +22997,15,15.5,19,0.0 +22997,44,19.45,30,0.0 +22997,8,40,33,0.0 +22997,3,10,9,0.0 +22997,47,9.5,48,0.0 +22997,27,43.9,34,0.0 +22997,76,18,47,0.0 +22997,64,33.25,13,0.0 +22997,68,12.5,46,0.0 +22997,24,4.5,8,0.0 +22997,31,12.5,50,0.0 +22998,68,12.5,11,0.0 +22998,37,26,15,0.0 +22998,38,263.5,23,0.0 +22998,9,97,7,0.0 +22998,35,18,49,0.0 +22998,71,21.5,9,0.0 +22999,63,43.9,35,0.0 +22999,34,14,16,0.0 +22999,47,9.5,10,0.0 +22999,8,40,33,0.0 +22999,73,15,38,0.0 +22999,9,97,26,0.0 +22999,32,32,21,0.0 +22999,10,31,36,0.0 +22999,75,7.75,15,0.0 +22999,70,15,11,0.0 +22999,66,17,4,0.0 +22999,27,43.9,11,0.0 +22999,12,38,41,0.0 +22999,58,13.25,37,0.0 +22999,42,14,15,0.0 +22999,22,21,3,0.0 +22999,48,12.75,36,0.0 +22999,16,17.45,49,0.0 +22999,1,18,5,0.0 +22999,72,34.8,2,0.0 +22999,14,23.25,13,0.0 +22999,74,10,47,0.0 +22999,60,34,7,0.0 +22999,21,10,42,0.0 +22999,17,39,47,0.0 +22999,71,21.5,49,0.0 +22999,76,18,12,0.0 +22999,61,28.5,12,0.0 +22999,45,9.5,9,0.0 +22999,55,24,25,0.0 +22999,26,31.23,9,0.0 +22999,59,55,22,0.0 +22999,50,16.25,2,0.0 +22999,35,18,21,0.0 +22999,7,30,34,0.0 +22999,25,14,39,0.0 +22999,4,22,16,0.0 +22999,37,26,33,0.0 +22999,30,25.89,37,0.0 +22999,68,12.5,28,0.0 +22999,6,25,24,0.0 +22999,43,46,37,0.0 +22999,19,9.2,46,0.0 +22999,18,62.5,34,0.0 +22999,56,38,16,0.0 +22999,44,19.45,38,0.0 +22999,23,9,41,0.0 +22999,13,6,25,0.0 +22999,38,263.5,40,0.0 +22999,51,53,11,0.0 +22999,2,19,39,0.0 +22999,62,49.3,2,0.0 +22999,28,45.6,48,0.0 +22999,53,32.8,24,0.0 +22999,33,2.5,31,0.0 +22999,65,21.05,27,0.0 +22999,39,18,6,0.0 +22999,31,12.5,46,0.0 +22999,15,15.5,41,0.0 +22999,3,10,46,0.0 +22999,5,21.35,11,0.0 +22999,20,81,41,0.0 +22999,67,14,19,0.0 +22999,46,12,8,0.0 +22999,77,13,14,0.0 +22999,40,18.4,48,0.0 +22999,52,7,38,0.0 +22999,54,7.45,11,0.0 +22999,24,4.5,17,0.0 +22999,49,20,2,0.0 +22999,36,19,2,0.0 +22999,41,9.65,7,0.0 +22999,64,33.25,49,0.0 +22999,69,36,24,0.0 +22999,29,123.79,21,0.0 +23000,53,32.8,29,0.0 +23000,7,30,9,0.0 +23000,26,31.23,29,0.0 +23000,9,97,20,0.0 +23000,57,19.5,1,0.0 +23000,25,14,22,0.0 +23000,36,19,48,0.0 +23000,59,55,47,0.0 +23000,1,18,11,0.0 +23000,12,38,37,0.0 +23000,11,21,28,0.0 +23000,70,15,32,0.0 +23000,27,43.9,29,0.0 +23000,74,10,23,0.0 +23000,23,9,24,0.0 +23000,60,34,48,0.0 +23000,63,43.9,1,0.0 +23000,54,7.45,40,0.0 +23000,39,18,46,0.0 +23000,65,21.05,10,0.0 +23001,69,36,29,0.0 +23001,7,30,11,0.0 +23001,54,7.45,13,0.0 +23001,39,18,46,0.0 +23001,50,16.25,9,0.0 +23001,56,38,4,0.0 +23001,75,7.75,23,0.0 +23001,5,21.35,47,0.0 +23001,19,9.2,20,0.0 +23001,77,13,21,0.0 +23001,26,31.23,27,0.0 +23001,36,19,3,0.0 +23001,73,15,37,0.0 +23001,14,23.25,9,0.0 +23002,11,21,10,0.0 +23002,2,19,17,0.0 +23002,55,24,35,0.0 +23002,41,9.65,26,0.0 +23002,30,25.89,17,0.0 +23002,52,7,43,0.0 +23002,27,43.9,43,0.0 +23002,56,38,16,0.0 +23002,48,12.75,31,0.0 +23002,77,13,47,0.0 +23002,35,18,35,0.0 +23002,36,19,14,0.0 +23002,66,17,12,0.0 +23002,28,45.6,21,0.0 +23002,57,19.5,12,0.0 +23002,69,36,8,0.0 +23002,15,15.5,40,0.0 +23002,38,263.5,12,0.0 +23002,73,15,49,0.0 +23002,19,9.2,20,0.0 +23002,49,20,7,0.0 +23002,33,2.5,40,0.0 +23002,21,10,30,0.0 +23002,50,16.25,29,0.0 +23002,47,9.5,14,0.0 +23002,40,18.4,32,0.0 +23002,25,14,13,0.0 +23002,24,4.5,35,0.0 +23002,12,38,50,0.0 +23002,75,7.75,6,0.0 +23002,76,18,7,0.0 +23002,4,22,40,0.0 +23002,62,49.3,47,0.0 +23002,58,13.25,23,0.0 +23002,59,55,28,0.0 +23002,16,17.45,13,0.0 +23002,13,6,10,0.0 +23002,63,43.9,6,0.0 +23002,42,14,31,0.0 +23002,23,9,27,0.0 +23002,3,10,4,0.0 +23002,10,31,9,0.0 +23002,7,30,44,0.0 +23002,60,34,11,0.0 +23002,72,34.8,8,0.0 +23002,67,14,38,0.0 +23002,44,19.45,11,0.0 +23002,31,12.5,9,0.0 +23002,1,18,16,0.0 +23002,39,18,14,0.0 +23002,8,40,32,0.0 +23002,9,97,11,0.0 +23002,70,15,14,0.0 +23002,51,53,19,0.0 +23002,45,9.5,46,0.0 +23002,17,39,22,0.0 +23002,71,21.5,5,0.0 +23002,34,14,4,0.0 +23002,6,25,14,0.0 +23003,19,9.2,29,0.0 +23003,55,24,41,0.0 +23003,37,26,35,0.0 +23003,8,40,25,0.0 +23003,75,7.75,38,0.0 +23003,39,18,1,0.0 +23003,21,10,14,0.0 +23003,58,13.25,14,0.0 +23003,56,38,34,0.0 +23003,15,15.5,49,0.0 +23003,35,18,34,0.0 +23003,26,31.23,48,0.0 +23003,69,36,45,0.0 +23003,27,43.9,18,0.0 +23003,51,53,5,0.0 +23003,11,21,6,0.0 +23003,41,9.65,47,0.0 +23003,71,21.5,10,0.0 +23003,18,62.5,45,0.0 +23003,20,81,19,0.0 +23003,22,21,9,0.0 +23003,66,17,45,0.0 +23003,13,6,1,0.0 +23003,34,14,44,0.0 +23003,24,4.5,26,0.0 +23003,4,22,27,0.0 +23003,49,20,46,0.0 +23003,42,14,16,0.0 +23003,70,15,9,0.0 +23003,77,13,37,0.0 +23003,32,32,31,0.0 +23003,7,30,30,0.0 +23003,48,12.75,24,0.0 +23003,63,43.9,26,0.0 +23003,36,19,4,0.0 +23003,67,14,50,0.0 +23004,46,12,38,0.0 +23004,16,17.45,2,0.0 +23004,61,28.5,45,0.0 +23004,21,10,5,0.0 +23004,8,40,13,0.0 +23004,13,6,20,0.0 +23004,68,12.5,39,0.0 +23004,19,9.2,27,0.0 +23004,6,25,6,0.0 +23004,43,46,12,0.0 +23004,20,81,6,0.0 +23004,23,9,2,0.0 +23004,44,19.45,50,0.0 +23004,22,21,10,0.0 +23004,59,55,8,0.0 +23004,62,49.3,34,0.0 +23004,12,38,26,0.0 +23004,9,97,44,0.0 +23004,25,14,10,0.0 +23004,60,34,37,0.0 +23004,10,31,6,0.0 +23004,32,32,11,0.0 +23004,31,12.5,36,0.0 +23004,71,21.5,23,0.0 +23004,49,20,8,0.0 +23004,30,25.89,47,0.0 +23004,2,19,9,0.0 +23004,63,43.9,45,0.0 +23004,11,21,1,0.0 +23004,17,39,24,0.0 +23004,54,7.45,37,0.0 +23004,69,36,4,0.0 +23004,29,123.79,9,0.0 +23004,52,7,42,0.0 +23004,33,2.5,7,0.0 +23004,67,14,47,0.0 +23004,15,15.5,43,0.0 +23004,77,13,16,0.0 +23004,57,19.5,22,0.0 +23004,55,24,44,0.0 +23004,47,9.5,14,0.0 +23004,3,10,14,0.0 +23004,27,43.9,23,0.0 +23004,76,18,50,0.0 +23004,65,21.05,22,0.0 +23004,40,18.4,33,0.0 +23004,75,7.75,5,0.0 +23004,56,38,50,0.0 +23004,37,26,19,0.0 +23004,5,21.35,16,0.0 +23004,26,31.23,41,0.0 +23004,28,45.6,22,0.0 +23004,4,22,15,0.0 +23004,53,32.8,50,0.0 +23005,20,81,28,0.0 +23005,60,34,34,0.0 +23005,43,46,28,0.0 +23005,36,19,47,0.0 +23005,24,4.5,15,0.0 +23005,16,17.45,6,0.0 +23005,32,32,28,0.0 +23005,39,18,22,0.0 +23005,6,25,17,0.0 +23005,74,10,35,0.0 +23005,51,53,50,0.0 +23005,75,7.75,46,0.0 +23005,68,12.5,30,0.0 +23005,47,9.5,7,0.0 +23005,5,21.35,24,0.0 +23005,41,9.65,17,0.0 +23005,67,14,28,0.0 +23005,61,28.5,29,0.0 +23005,58,13.25,15,0.0 +23005,18,62.5,9,0.0 +23005,62,49.3,32,0.0 +23005,29,123.79,10,0.0 +23005,22,21,6,0.0 +23005,52,7,16,0.0 +23005,63,43.9,18,0.0 +23005,70,15,10,0.0 +23005,59,55,25,0.0 +23005,17,39,1,0.0 +23005,34,14,36,0.0 +23005,19,9.2,35,0.0 +23005,69,36,50,0.0 +23005,66,17,27,0.0 +23005,9,97,7,0.0 +23005,1,18,2,0.0 +23005,38,263.5,2,0.0 +23005,57,19.5,28,0.0 +23005,77,13,10,0.0 +23005,53,32.8,48,0.0 +23005,7,30,10,0.0 +23005,46,12,27,0.0 +23005,31,12.5,21,0.0 +23006,64,33.25,14,0.0 +23006,8,40,9,0.0 +23006,66,17,20,0.0 +23006,25,14,48,0.0 +23006,65,21.05,28,0.0 +23006,23,9,44,0.0 +23006,7,30,41,0.0 +23006,38,263.5,47,0.0 +23006,43,46,32,0.0 +23006,62,49.3,40,0.0 +23006,47,9.5,10,0.0 +23006,36,19,49,0.0 +23006,60,34,14,0.0 +23006,6,25,3,0.0 +23006,50,16.25,11,0.0 +23006,9,97,42,0.0 +23006,18,62.5,30,0.0 +23006,67,14,44,0.0 +23006,61,28.5,50,0.0 +23006,57,19.5,46,0.0 +23006,55,24,12,0.0 +23006,21,10,11,0.0 +23006,48,12.75,2,0.0 +23006,68,12.5,21,0.0 +23006,73,15,45,0.0 +23006,30,25.89,50,0.0 +23006,35,18,23,0.0 +23006,10,31,14,0.0 +23007,44,19.45,33,0.0 +23007,15,15.5,28,0.0 +23007,70,15,31,0.0 +23007,32,32,32,0.0 +23007,4,22,44,0.0 +23007,14,23.25,22,0.0 +23007,23,9,26,0.0 +23007,49,20,12,0.0 +23007,77,13,1,0.0 +23007,12,38,38,0.0 +23007,3,10,3,0.0 +23007,75,7.75,24,0.0 +23007,53,32.8,33,0.0 +23007,31,12.5,2,0.0 +23007,33,2.5,45,0.0 +23007,20,81,21,0.0 +23007,71,21.5,3,0.0 +23007,67,14,37,0.0 +23007,18,62.5,26,0.0 +23007,27,43.9,39,0.0 +23007,2,19,48,0.0 +23007,41,9.65,5,0.0 +23007,11,21,45,0.0 +23007,63,43.9,28,0.0 +23007,9,97,6,0.0 +23007,38,263.5,38,0.0 +23007,76,18,19,0.0 +23007,60,34,37,0.0 +23008,44,19.45,15,0.0 +23008,53,32.8,5,0.0 +23008,9,97,39,0.0 +23008,72,34.8,14,0.0 +23008,57,19.5,34,0.0 +23009,39,18,5,0.0 +23009,48,12.75,16,0.0 +23009,27,43.9,6,0.0 +23009,66,17,36,0.0 +23009,37,26,34,0.0 +23009,49,20,43,0.0 +23009,4,22,13,0.0 +23009,36,19,21,0.0 +23009,45,9.5,16,0.0 +23009,19,9.2,3,0.0 +23009,9,97,37,0.0 +23009,13,6,44,0.0 +23009,1,18,25,0.0 +23009,65,21.05,43,0.0 +23009,73,15,19,0.0 +23009,44,19.45,15,0.0 +23009,74,10,37,0.0 +23009,70,15,7,0.0 +23009,15,15.5,36,0.0 +23009,72,34.8,39,0.0 +23009,12,38,14,0.0 +23009,56,38,22,0.0 +23009,10,31,44,0.0 +23009,23,9,4,0.0 +23009,32,32,6,0.0 +23009,64,33.25,23,0.0 +23009,47,9.5,48,0.0 +23009,62,49.3,27,0.0 +23009,5,21.35,13,0.0 +23009,71,21.5,37,0.0 +23009,54,7.45,34,0.0 +23009,76,18,17,0.0 +23009,38,263.5,5,0.0 +23009,77,13,4,0.0 +23009,2,19,44,0.0 +23009,58,13.25,8,0.0 +23009,57,19.5,24,0.0 +23009,35,18,1,0.0 +23009,46,12,4,0.0 +23010,5,21.35,30,0.0 +23010,10,31,39,0.0 +23010,53,32.8,42,0.0 +23010,60,34,42,0.0 +23010,69,36,8,0.0 +23010,11,21,44,0.0 +23010,27,43.9,17,0.0 +23010,1,18,26,0.0 +23010,61,28.5,38,0.0 +23010,45,9.5,7,0.0 +23010,25,14,9,0.0 +23010,29,123.79,2,0.0 +23010,67,14,2,0.0 +23010,41,9.65,28,0.0 +23010,71,21.5,7,0.0 +23010,64,33.25,32,0.0 +23010,51,53,24,0.0 +23010,20,81,41,0.0 +23010,43,46,18,0.0 +23010,73,15,46,0.0 +23010,66,17,45,0.0 +23010,46,12,36,0.0 +23010,38,263.5,21,0.0 +23010,9,97,33,0.0 +23010,54,7.45,20,0.0 +23010,76,18,1,0.0 +23010,21,10,19,0.0 +23011,13,6,37,0.0 +23011,40,18.4,23,0.0 +23011,46,12,2,0.0 +23011,62,49.3,36,0.0 +23011,39,18,17,0.0 +23011,35,18,41,0.0 +23011,17,39,48,0.0 +23011,6,25,2,0.0 +23011,19,9.2,25,0.0 +23011,67,14,44,0.0 +23011,21,10,40,0.0 +23011,29,123.79,49,0.0 +23011,72,34.8,29,0.0 +23011,63,43.9,36,0.0 +23011,77,13,44,0.0 +23011,57,19.5,31,0.0 +23011,76,18,48,0.0 +23011,26,31.23,37,0.0 +23011,32,32,34,0.0 +23011,2,19,40,0.0 +23011,68,12.5,33,0.0 +23011,30,25.89,20,0.0 +23011,50,16.25,38,0.0 +23011,5,21.35,25,0.0 +23011,18,62.5,35,0.0 +23011,14,23.25,38,0.0 +23011,73,15,45,0.0 +23011,64,33.25,41,0.0 +23011,45,9.5,2,0.0 +23011,12,38,35,0.0 +23011,70,15,14,0.0 +23011,33,2.5,23,0.0 +23011,25,14,18,0.0 +23011,27,43.9,13,0.0 +23012,29,123.79,24,0.0 +23012,30,25.89,29,0.0 +23012,6,25,9,0.0 +23012,54,7.45,28,0.0 +23012,7,30,45,0.0 +23012,33,2.5,31,0.0 +23012,65,21.05,15,0.0 +23012,28,45.6,35,0.0 +23012,41,9.65,27,0.0 +23012,55,24,28,0.0 +23012,16,17.45,1,0.0 +23012,58,13.25,50,0.0 +23012,57,19.5,24,0.0 +23012,13,6,19,0.0 +23012,23,9,21,0.0 +23012,2,19,6,0.0 +23012,51,53,47,0.0 +23012,35,18,27,0.0 +23012,24,4.5,15,0.0 +23012,17,39,4,0.0 +23012,74,10,49,0.0 +23012,37,26,50,0.0 +23012,69,36,38,0.0 +23012,59,55,25,0.0 +23012,56,38,42,0.0 +23012,60,34,50,0.0 +23012,12,38,22,0.0 +23012,61,28.5,35,0.0 +23012,50,16.25,5,0.0 +23012,48,12.75,36,0.0 +23012,70,15,42,0.0 +23012,14,23.25,46,0.0 +23012,40,18.4,5,0.0 +23012,66,17,11,0.0 +23012,45,9.5,16,0.0 +23012,1,18,47,0.0 +23012,15,15.5,45,0.0 +23012,72,34.8,11,0.0 +23012,21,10,36,0.0 +23012,62,49.3,32,0.0 +23012,5,21.35,28,0.0 +23012,42,14,12,0.0 +23013,76,18,27,0.0 +23014,23,9,50,0.0 +23014,46,12,8,0.0 +23014,53,32.8,2,0.0 +23014,3,10,3,0.0 +23014,21,10,29,0.0 +23014,50,16.25,27,0.0 +23014,71,21.5,25,0.0 +23014,22,21,42,0.0 +23014,33,2.5,2,0.0 +23014,6,25,17,0.0 +23014,45,9.5,13,0.0 +23014,47,9.5,30,0.0 +23014,14,23.25,29,0.0 +23014,52,7,9,0.0 +23015,75,7.75,43,0.0 +23015,18,62.5,44,0.0 +23015,25,14,22,0.0 +23015,27,43.9,48,0.0 +23015,69,36,2,0.0 +23015,35,18,25,0.0 +23015,53,32.8,19,0.0 +23015,19,9.2,37,0.0 +23015,13,6,13,0.0 +23015,73,15,45,0.0 +23015,20,81,16,0.0 +23015,58,13.25,41,0.0 +23015,45,9.5,45,0.0 +23016,68,12.5,21,0.0 +23016,21,10,9,0.0 +23016,66,17,31,0.0 +23016,5,21.35,16,0.0 +23016,74,10,49,0.0 +23016,70,15,8,0.0 +23016,32,32,1,0.0 +23016,25,14,1,0.0 +23016,73,15,37,0.0 +23016,60,34,29,0.0 +23016,41,9.65,30,0.0 +23016,58,13.25,18,0.0 +23016,69,36,1,0.0 +23016,63,43.9,35,0.0 +23016,59,55,11,0.0 +23016,50,16.25,40,0.0 +23016,75,7.75,12,0.0 +23016,10,31,39,0.0 +23017,29,123.79,7,0.0 +23017,30,25.89,29,0.0 +23017,7,30,25,0.0 +23017,40,18.4,28,0.0 +23017,44,19.45,40,0.0 +23018,45,9.5,23,0.0 +23018,59,55,11,0.0 +23018,17,39,46,0.0 +23018,13,6,32,0.0 +23018,22,21,12,0.0 +23018,52,7,21,0.0 +23018,1,18,23,0.0 +23018,43,46,8,0.0 +23018,41,9.65,7,0.0 +23018,34,14,5,0.0 +23018,12,38,4,0.0 +23018,71,21.5,13,0.0 +23018,18,62.5,14,0.0 +23018,39,18,5,0.0 +23018,20,81,41,0.0 +23018,67,14,27,0.0 +23018,5,21.35,31,0.0 +23018,70,15,35,0.0 +23018,73,15,41,0.0 +23018,3,10,33,0.0 +23018,48,12.75,6,0.0 +23018,8,40,25,0.0 +23018,15,15.5,39,0.0 +23018,42,14,32,0.0 +23018,29,123.79,28,0.0 +23018,9,97,24,0.0 +23018,46,12,36,0.0 +23018,57,19.5,25,0.0 +23018,23,9,24,0.0 +23018,6,25,24,0.0 +23018,7,30,15,0.0 +23018,27,43.9,18,0.0 +23018,53,32.8,21,0.0 +23018,2,19,28,0.0 +23018,32,32,41,0.0 +23018,66,17,35,0.0 +23018,28,45.6,24,0.0 +23018,74,10,41,0.0 +23018,30,25.89,28,0.0 +23018,76,18,15,0.0 +23018,62,49.3,32,0.0 +23018,14,23.25,48,0.0 +23018,21,10,27,0.0 +23018,4,22,37,0.0 +23018,37,26,37,0.0 +23018,26,31.23,44,0.0 +23018,19,9.2,49,0.0 +23018,35,18,18,0.0 +23018,65,21.05,40,0.0 +23018,33,2.5,47,0.0 +23018,47,9.5,9,0.0 +23018,68,12.5,25,0.0 +23018,25,14,31,0.0 +23018,50,16.25,38,0.0 +23019,66,17,20,0.0 +23019,77,13,43,0.0 +23019,28,45.6,14,0.0 +23019,56,38,1,0.0 +23019,73,15,42,0.0 +23019,40,18.4,2,0.0 +23019,44,19.45,15,0.0 +23019,8,40,24,0.0 +23019,70,15,36,0.0 +23019,64,33.25,10,0.0 +23019,46,12,26,0.0 +23019,29,123.79,45,0.0 +23019,62,49.3,9,0.0 +23019,18,62.5,23,0.0 +23019,59,55,44,0.0 +23019,35,18,6,0.0 +23019,32,32,19,0.0 +23019,11,21,33,0.0 +23019,26,31.23,43,0.0 +23019,65,21.05,8,0.0 +23019,36,19,33,0.0 +23019,76,18,42,0.0 +23019,58,13.25,33,0.0 +23019,63,43.9,10,0.0 +23019,60,34,23,0.0 +23019,30,25.89,4,0.0 +23019,47,9.5,34,0.0 +23019,24,4.5,42,0.0 +23019,53,32.8,9,0.0 +23019,10,31,28,0.0 +23019,7,30,37,0.0 +23019,9,97,2,0.0 +23019,54,7.45,2,0.0 +23019,4,22,24,0.0 +23019,51,53,22,0.0 +23019,75,7.75,28,0.0 +23019,17,39,12,0.0 +23019,5,21.35,25,0.0 +23019,38,263.5,17,0.0 +23019,14,23.25,16,0.0 +23019,16,17.45,17,0.0 +23019,34,14,41,0.0 +23019,12,38,12,0.0 +23019,33,2.5,45,0.0 +23019,27,43.9,5,0.0 +23019,74,10,50,0.0 +23019,6,25,28,0.0 +23019,43,46,6,0.0 +23019,52,7,28,0.0 +23019,67,14,22,0.0 +23019,3,10,5,0.0 +23019,55,24,2,0.0 +23019,41,9.65,35,0.0 +23019,50,16.25,41,0.0 +23019,57,19.5,30,0.0 +23019,72,34.8,6,0.0 +23019,48,12.75,33,0.0 +23019,61,28.5,25,0.0 +23019,42,14,41,0.0 +23019,21,10,9,0.0 +23019,13,6,14,0.0 +23019,2,19,4,0.0 +23019,1,18,6,0.0 +23019,20,81,29,0.0 +23020,21,10,32,0.0 +23020,22,21,9,0.0 +23020,36,19,23,0.0 +23020,34,14,7,0.0 +23020,76,18,47,0.0 +23020,43,46,39,0.0 +23020,62,49.3,40,0.0 +23020,18,62.5,46,0.0 +23020,4,22,37,0.0 +23020,55,24,12,0.0 +23020,14,23.25,33,0.0 +23020,53,32.8,36,0.0 +23020,12,38,38,0.0 +23020,13,6,40,0.0 +23020,8,40,20,0.0 +23020,19,9.2,23,0.0 +23020,66,17,3,0.0 +23020,48,12.75,10,0.0 +23020,1,18,7,0.0 +23020,6,25,20,0.0 +23020,28,45.6,46,0.0 +23020,2,19,29,0.0 +23020,50,16.25,26,0.0 +23020,51,53,3,0.0 +23020,38,263.5,23,0.0 +23020,39,18,37,0.0 +23020,23,9,2,0.0 +23020,29,123.79,50,0.0 +23020,9,97,33,0.0 +23020,16,17.45,38,0.0 +23020,77,13,12,0.0 +23020,25,14,6,0.0 +23020,20,81,10,0.0 +23020,54,7.45,49,0.0 +23020,47,9.5,42,0.0 +23020,37,26,50,0.0 +23020,64,33.25,28,0.0 +23020,15,15.5,17,0.0 +23020,69,36,43,0.0 +23020,26,31.23,26,0.0 +23020,49,20,49,0.0 +23020,27,43.9,23,0.0 +23020,68,12.5,8,0.0 +23020,74,10,6,0.0 +23020,57,19.5,28,0.0 +23020,52,7,18,0.0 +23020,56,38,9,0.0 +23020,10,31,42,0.0 +23020,7,30,40,0.0 +23020,32,32,25,0.0 +23020,73,15,37,0.0 +23020,45,9.5,10,0.0 +23020,30,25.89,42,0.0 +23020,3,10,23,0.0 +23020,35,18,32,0.0 +23020,72,34.8,40,0.0 +23020,41,9.65,13,0.0 +23020,42,14,2,0.0 +23020,40,18.4,30,0.0 +23020,31,12.5,30,0.0 +23020,70,15,50,0.0 +23020,59,55,7,0.0 +23020,33,2.5,11,0.0 +23020,5,21.35,16,0.0 +23020,44,19.45,7,0.0 +23020,17,39,27,0.0 +23020,67,14,8,0.0 +23020,58,13.25,16,0.0 +23020,75,7.75,48,0.0 +23020,24,4.5,11,0.0 +23020,11,21,18,0.0 +23020,65,21.05,16,0.0 +23020,61,28.5,11,0.0 +23020,60,34,47,0.0 +23020,63,43.9,48,0.0 +23021,33,2.5,18,0.0 +23021,41,9.65,20,0.0 +23021,39,18,13,0.0 +23021,68,12.5,21,0.0 +23021,20,81,23,0.0 +23021,16,17.45,43,0.0 +23021,46,12,24,0.0 +23021,63,43.9,49,0.0 +23021,21,10,9,0.0 +23021,24,4.5,33,0.0 +23021,6,25,25,0.0 +23021,18,62.5,9,0.0 +23021,26,31.23,41,0.0 +23021,12,38,41,0.0 +23021,54,7.45,5,0.0 +23022,17,39,29,0.0 +23022,27,43.9,29,0.0 +23022,19,9.2,45,0.0 +23022,33,2.5,13,0.0 +23022,9,97,47,0.0 +23022,5,21.35,27,0.0 +23022,11,21,46,0.0 +23022,70,15,45,0.0 +23023,27,43.9,8,0.0 +23023,70,15,47,0.0 +23023,59,55,18,0.0 +23023,28,45.6,14,0.0 +23023,42,14,31,0.0 +23023,12,38,20,0.0 +23023,19,9.2,17,0.0 +23023,71,21.5,11,0.0 +23023,66,17,46,0.0 +23023,29,123.79,35,0.0 +23023,57,19.5,35,0.0 +23023,26,31.23,4,0.0 +23023,24,4.5,41,0.0 +23023,34,14,1,0.0 +23023,61,28.5,49,0.0 +23023,9,97,33,0.0 +23024,55,24,32,0.0 +23024,7,30,7,0.0 +23024,76,18,43,0.0 +23024,46,12,22,0.0 +23024,13,6,17,0.0 +23024,21,10,4,0.0 +23024,67,14,41,0.0 +23024,44,19.45,47,0.0 +23024,51,53,25,0.0 +23024,49,20,41,0.0 +23024,30,25.89,1,0.0 +23024,66,17,16,0.0 +23024,29,123.79,33,0.0 +23024,33,2.5,23,0.0 +23024,36,19,44,0.0 +23024,34,14,4,0.0 +23024,42,14,47,0.0 +23024,2,19,38,0.0 +23024,39,18,48,0.0 +23024,73,15,46,0.0 +23024,11,21,34,0.0 +23024,40,18.4,50,0.0 +23024,72,34.8,8,0.0 +23024,50,16.25,9,0.0 +23024,69,36,17,0.0 +23024,16,17.45,28,0.0 +23024,10,31,9,0.0 +23024,62,49.3,3,0.0 +23024,26,31.23,28,0.0 +23024,1,18,23,0.0 +23024,47,9.5,45,0.0 +23024,6,25,42,0.0 +23024,23,9,25,0.0 +23024,41,9.65,42,0.0 +23024,68,12.5,44,0.0 +23024,25,14,48,0.0 +23024,59,55,18,0.0 +23024,9,97,43,0.0 +23024,65,21.05,37,0.0 +23024,37,26,24,0.0 +23024,71,21.5,4,0.0 +23024,53,32.8,47,0.0 +23024,54,7.45,43,0.0 +23024,43,46,43,0.0 +23024,64,33.25,48,0.0 +23024,57,19.5,27,0.0 +23024,52,7,38,0.0 +23024,5,21.35,34,0.0 +23024,35,18,19,0.0 +23024,77,13,44,0.0 +23024,58,13.25,5,0.0 +23024,32,32,44,0.0 +23024,70,15,31,0.0 +23024,20,81,20,0.0 +23024,28,45.6,7,0.0 +23024,14,23.25,23,0.0 +23024,18,62.5,10,0.0 +23025,52,7,28,0.0 +23025,29,123.79,42,0.0 +23025,75,7.75,8,0.0 +23025,25,14,24,0.0 +23025,4,22,29,0.0 +23025,57,19.5,29,0.0 +23025,72,34.8,27,0.0 +23025,2,19,3,0.0 +23025,35,18,15,0.0 +23025,24,4.5,36,0.0 +23026,28,45.6,14,0.0 +23026,60,34,50,0.0 +23026,1,18,20,0.0 +23026,8,40,40,0.0 +23026,62,49.3,5,0.0 +23026,61,28.5,34,0.0 +23026,16,17.45,11,0.0 +23026,55,24,35,0.0 +23026,17,39,23,0.0 +23026,41,9.65,12,0.0 +23026,63,43.9,18,0.0 +23026,49,20,30,0.0 +23026,56,38,34,0.0 +23026,33,2.5,3,0.0 +23026,21,10,44,0.0 +23026,10,31,16,0.0 +23026,50,16.25,43,0.0 +23026,22,21,23,0.0 +23026,2,19,3,0.0 +23026,9,97,26,0.0 +23026,7,30,17,0.0 +23026,40,18.4,41,0.0 +23026,71,21.5,26,0.0 +23026,66,17,7,0.0 +23026,23,9,14,0.0 +23026,47,9.5,10,0.0 +23027,4,22,49,0.0 +23027,61,28.5,31,0.0 +23027,67,14,23,0.0 +23027,15,15.5,49,0.0 +23027,21,10,3,0.0 +23027,36,19,48,0.0 +23027,43,46,41,0.0 +23027,53,32.8,35,0.0 +23027,58,13.25,1,0.0 +23027,14,23.25,37,0.0 +23027,68,12.5,5,0.0 +23027,20,81,23,0.0 +23027,23,9,4,0.0 +23027,22,21,24,0.0 +23027,59,55,47,0.0 +23027,3,10,37,0.0 +23027,44,19.45,50,0.0 +23027,17,39,42,0.0 +23027,63,43.9,39,0.0 +23027,42,14,8,0.0 +23027,38,263.5,6,0.0 +23027,77,13,2,0.0 +23027,12,38,44,0.0 +23028,49,20,50,0.0 +23028,57,19.5,12,0.0 +23028,21,10,24,0.0 +23028,36,19,22,0.0 +23028,53,32.8,7,0.0 +23028,34,14,13,0.0 +23028,67,14,23,0.0 +23028,56,38,11,0.0 +23028,42,14,8,0.0 +23028,45,9.5,14,0.0 +23028,62,49.3,45,0.0 +23028,48,12.75,50,0.0 +23028,37,26,8,0.0 +23028,12,38,38,0.0 +23028,26,31.23,41,0.0 +23028,41,9.65,5,0.0 +23028,58,13.25,34,0.0 +23028,17,39,6,0.0 +23028,39,18,41,0.0 +23028,33,2.5,28,0.0 +23028,30,25.89,12,0.0 +23028,47,9.5,40,0.0 +23028,68,12.5,23,0.0 +23028,5,21.35,45,0.0 +23028,71,21.5,17,0.0 +23028,10,31,44,0.0 +23028,16,17.45,21,0.0 +23028,50,16.25,32,0.0 +23028,14,23.25,49,0.0 +23028,74,10,3,0.0 +23028,44,19.45,22,0.0 +23028,59,55,28,0.0 +23028,22,21,13,0.0 +23028,35,18,50,0.0 +23028,20,81,26,0.0 +23028,63,43.9,25,0.0 +23028,28,45.6,23,0.0 +23028,70,15,34,0.0 +23028,55,24,31,0.0 +23028,51,53,9,0.0 +23028,25,14,5,0.0 +23028,24,4.5,36,0.0 +23028,61,28.5,13,0.0 +23028,31,12.5,14,0.0 +23028,65,21.05,7,0.0 +23028,7,30,3,0.0 +23028,29,123.79,50,0.0 +23028,23,9,41,0.0 +23028,19,9.2,28,0.0 +23028,40,18.4,17,0.0 +23028,76,18,7,0.0 +23028,2,19,5,0.0 +23028,3,10,24,0.0 +23028,43,46,38,0.0 +23028,75,7.75,1,0.0 +23028,52,7,36,0.0 +23028,54,7.45,31,0.0 +23028,77,13,8,0.0 +23028,73,15,15,0.0 +23028,60,34,16,0.0 +23028,18,62.5,45,0.0 +23028,6,25,20,0.0 +23028,15,15.5,6,0.0 +23028,32,32,35,0.0 +23028,66,17,41,0.0 +23028,46,12,49,0.0 +23028,1,18,12,0.0 +23028,27,43.9,37,0.0 +23028,9,97,26,0.0 +23028,11,21,21,0.0 +23028,64,33.25,49,0.0 +23029,52,7,47,0.0 +23029,55,24,48,0.0 +23029,21,10,27,0.0 +23029,9,97,22,0.0 +23029,26,31.23,23,0.0 +23029,50,16.25,9,0.0 +23029,6,25,46,0.0 +23029,33,2.5,14,0.0 +23029,39,18,27,0.0 +23029,57,19.5,18,0.0 +23029,10,31,28,0.0 +23029,72,34.8,11,0.0 +23029,40,18.4,17,0.0 +23029,76,18,48,0.0 +23029,70,15,46,0.0 +23029,22,21,7,0.0 +23029,20,81,32,0.0 +23029,42,14,3,0.0 +23029,58,13.25,37,0.0 +23029,4,22,37,0.0 +23029,5,21.35,7,0.0 +23029,77,13,50,0.0 +23029,17,39,20,0.0 +23029,8,40,1,0.0 +23029,60,34,23,0.0 +23029,1,18,25,0.0 +23029,74,10,18,0.0 +23029,54,7.45,34,0.0 +23029,37,26,16,0.0 +23029,68,12.5,15,0.0 +23029,35,18,31,0.0 +23029,27,43.9,17,0.0 +23029,56,38,40,0.0 +23030,31,12.5,46,0.0 +23030,49,20,44,0.0 +23030,58,13.25,8,0.0 +23030,27,43.9,43,0.0 +23030,28,45.6,3,0.0 +23030,39,18,26,0.0 +23030,29,123.79,18,0.0 +23030,62,49.3,33,0.0 +23030,10,31,11,0.0 +23030,50,16.25,36,0.0 +23030,12,38,29,0.0 +23030,34,14,11,0.0 +23030,16,17.45,10,0.0 +23030,6,25,40,0.0 +23030,14,23.25,13,0.0 +23030,44,19.45,6,0.0 +23030,37,26,37,0.0 +23030,46,12,25,0.0 +23030,54,7.45,30,0.0 +23030,60,34,11,0.0 +23030,17,39,21,0.0 +23030,57,19.5,30,0.0 +23030,66,17,8,0.0 +23030,77,13,4,0.0 +23030,74,10,7,0.0 +23030,70,15,28,0.0 +23030,43,46,5,0.0 +23030,55,24,12,0.0 +23030,53,32.8,43,0.0 +23030,22,21,41,0.0 +23030,41,9.65,22,0.0 +23030,18,62.5,35,0.0 +23030,7,30,27,0.0 +23030,38,263.5,19,0.0 +23030,48,12.75,20,0.0 +23030,69,36,14,0.0 +23030,67,14,34,0.0 +23030,5,21.35,46,0.0 +23030,15,15.5,39,0.0 +23030,2,19,6,0.0 +23030,61,28.5,31,0.0 +23030,32,32,45,0.0 +23030,8,40,16,0.0 +23030,59,55,33,0.0 +23030,68,12.5,45,0.0 +23030,24,4.5,50,0.0 +23030,35,18,40,0.0 +23030,13,6,22,0.0 +23030,30,25.89,29,0.0 +23031,24,4.5,48,0.0 +23031,14,23.25,22,0.0 +23031,63,43.9,17,0.0 +23031,37,26,18,0.0 +23031,57,19.5,42,0.0 +23031,2,19,39,0.0 +23031,75,7.75,20,0.0 +23031,56,38,23,0.0 +23031,41,9.65,3,0.0 +23031,54,7.45,22,0.0 +23031,32,32,21,0.0 +23032,33,2.5,16,0.0 +23032,65,21.05,45,0.0 +23032,41,9.65,10,0.0 +23032,61,28.5,3,0.0 +23032,3,10,38,0.0 +23032,37,26,24,0.0 +23032,75,7.75,7,0.0 +23032,26,31.23,2,0.0 +23032,15,15.5,25,0.0 +23032,22,21,17,0.0 +23032,42,14,49,0.0 +23032,67,14,50,0.0 +23032,5,21.35,39,0.0 +23032,27,43.9,9,0.0 +23032,1,18,19,0.0 +23032,59,55,47,0.0 +23032,70,15,10,0.0 +23032,74,10,7,0.0 +23032,28,45.6,22,0.0 +23032,72,34.8,25,0.0 +23032,52,7,35,0.0 +23032,2,19,14,0.0 +23032,64,33.25,16,0.0 +23032,36,19,9,0.0 +23032,50,16.25,26,0.0 +23032,68,12.5,27,0.0 +23032,63,43.9,15,0.0 +23032,13,6,42,0.0 +23032,4,22,5,0.0 +23032,69,36,41,0.0 +23032,35,18,7,0.0 +23032,39,18,21,0.0 +23032,30,25.89,35,0.0 +23032,55,24,33,0.0 +23032,71,21.5,38,0.0 +23032,45,9.5,16,0.0 +23032,20,81,1,0.0 +23032,62,49.3,10,0.0 +23032,11,21,32,0.0 +23032,7,30,26,0.0 +23032,66,17,36,0.0 +23032,8,40,49,0.0 +23032,25,14,11,0.0 +23032,60,34,16,0.0 +23032,19,9.2,9,0.0 +23032,17,39,14,0.0 +23032,56,38,33,0.0 +23032,10,31,40,0.0 +23032,73,15,18,0.0 +23032,48,12.75,36,0.0 +23032,76,18,14,0.0 +23032,44,19.45,24,0.0 +23032,40,18.4,2,0.0 +23032,24,4.5,19,0.0 +23032,46,12,7,0.0 +23032,57,19.5,30,0.0 +23032,21,10,12,0.0 +23032,16,17.45,50,0.0 +23032,12,38,2,0.0 +23032,77,13,21,0.0 +23033,24,4.5,24,0.0 +23033,66,17,13,0.0 +23033,41,9.65,11,0.0 +23033,29,123.79,15,0.0 +23033,74,10,3,0.0 +23033,76,18,6,0.0 +23033,26,31.23,45,0.0 +23033,56,38,3,0.0 +23033,52,7,21,0.0 +23033,27,43.9,41,0.0 +23033,3,10,17,0.0 +23033,40,18.4,32,0.0 +23033,65,21.05,17,0.0 +23033,77,13,21,0.0 +23033,68,12.5,8,0.0 +23033,12,38,45,0.0 +23033,48,12.75,50,0.0 +23033,18,62.5,45,0.0 +23033,42,14,15,0.0 +23033,44,19.45,16,0.0 +23033,55,24,30,0.0 +23033,50,16.25,28,0.0 +23033,67,14,50,0.0 +23033,28,45.6,12,0.0 +23033,75,7.75,10,0.0 +23033,35,18,17,0.0 +23033,64,33.25,16,0.0 +23033,1,18,39,0.0 +23033,62,49.3,30,0.0 +23033,4,22,22,0.0 +23033,11,21,23,0.0 +23033,17,39,16,0.0 +23033,36,19,20,0.0 +23033,31,12.5,9,0.0 +23033,57,19.5,16,0.0 +23033,10,31,26,0.0 +23033,46,12,12,0.0 +23033,51,53,18,0.0 +23033,8,40,22,0.0 +23033,14,23.25,19,0.0 +23033,6,25,12,0.0 +23033,70,15,43,0.0 +23033,22,21,34,0.0 +23033,47,9.5,11,0.0 +23033,39,18,45,0.0 +23033,9,97,22,0.0 +23033,60,34,18,0.0 +23033,34,14,14,0.0 +23033,2,19,47,0.0 +23033,16,17.45,34,0.0 +23033,20,81,50,0.0 +23033,58,13.25,15,0.0 +23033,45,9.5,38,0.0 +23033,19,9.2,28,0.0 +23033,69,36,11,0.0 +23033,13,6,12,0.0 +23033,73,15,50,0.0 +23033,5,21.35,8,0.0 +23033,63,43.9,7,0.0 +23033,71,21.5,6,0.0 +23033,61,28.5,21,0.0 +23033,54,7.45,31,0.0 +23033,38,263.5,42,0.0 +23033,37,26,38,0.0 +23033,32,32,32,0.0 +23033,59,55,35,0.0 +23033,49,20,50,0.0 +23033,25,14,48,0.0 +23033,23,9,38,0.0 +23033,7,30,22,0.0 +23033,72,34.8,11,0.0 +23033,30,25.89,29,0.0 +23033,21,10,32,0.0 +23033,43,46,30,0.0 +23033,53,32.8,39,0.0 +23033,15,15.5,30,0.0 +23034,7,30,6,0.0 +23034,64,33.25,35,0.0 +23034,2,19,34,0.0 +23034,62,49.3,21,0.0 +23034,51,53,49,0.0 +23034,73,15,49,0.0 +23034,18,62.5,17,0.0 +23034,5,21.35,5,0.0 +23034,69,36,35,0.0 +23034,75,7.75,32,0.0 +23034,22,21,23,0.0 +23034,14,23.25,21,0.0 +23034,39,18,25,0.0 +23034,66,17,7,0.0 +23034,11,21,16,0.0 +23034,45,9.5,43,0.0 +23034,19,9.2,4,0.0 +23035,29,123.79,45,0.0 +23035,32,32,14,0.0 +23035,36,19,18,0.0 +23035,41,9.65,13,0.0 +23035,16,17.45,14,0.0 +23035,5,21.35,28,0.0 +23035,30,25.89,18,0.0 +23035,50,16.25,6,0.0 +23035,77,13,48,0.0 +23035,34,14,21,0.0 +23035,70,15,7,0.0 +23035,4,22,23,0.0 +23035,2,19,37,0.0 +23035,27,43.9,34,0.0 +23035,64,33.25,19,0.0 +23035,63,43.9,14,0.0 +23035,47,9.5,4,0.0 +23035,58,13.25,17,0.0 +23035,43,46,41,0.0 +23035,56,38,31,0.0 +23036,16,17.45,20,0.0 +23036,71,21.5,31,0.0 +23036,50,16.25,48,0.0 +23036,77,13,31,0.0 +23036,44,19.45,2,0.0 +23036,27,43.9,14,0.0 +23036,5,21.35,50,0.0 +23036,42,14,15,0.0 +23036,58,13.25,41,0.0 +23036,39,18,40,0.0 +23036,7,30,2,0.0 +23036,32,32,24,0.0 +23036,59,55,12,0.0 +23036,33,2.5,35,0.0 +23036,51,53,33,0.0 +23036,74,10,21,0.0 +23036,64,33.25,38,0.0 +23036,41,9.65,41,0.0 +23036,73,15,23,0.0 +23036,6,25,45,0.0 +23036,21,10,34,0.0 +23036,40,18.4,40,0.0 +23036,23,9,42,0.0 +23036,66,17,12,0.0 +23036,1,18,1,0.0 +23036,70,15,14,0.0 +23036,35,18,31,0.0 +23036,60,34,10,0.0 +23036,30,25.89,46,0.0 +23036,17,39,14,0.0 +23036,31,12.5,34,0.0 +23036,48,12.75,5,0.0 +23036,55,24,27,0.0 +23036,75,7.75,47,0.0 +23036,53,32.8,11,0.0 +23036,20,81,10,0.0 +23036,72,34.8,24,0.0 +23036,22,21,18,0.0 +23036,25,14,27,0.0 +23036,26,31.23,14,0.0 +23036,4,22,26,0.0 +23036,15,15.5,10,0.0 +23036,43,46,44,0.0 +23036,47,9.5,40,0.0 +23036,67,14,38,0.0 +23037,9,97,44,0.0 +23037,39,18,23,0.0 +23037,53,32.8,15,0.0 +23037,32,32,29,0.0 +23037,18,62.5,34,0.0 +23037,14,23.25,14,0.0 +23037,50,16.25,35,0.0 +23037,57,19.5,22,0.0 +23037,33,2.5,27,0.0 +23037,71,21.5,37,0.0 +23037,43,46,18,0.0 +23037,49,20,25,0.0 +23037,51,53,49,0.0 +23037,64,33.25,4,0.0 +23037,38,263.5,41,0.0 +23037,4,22,24,0.0 +23037,20,81,12,0.0 +23037,40,18.4,48,0.0 +23037,15,15.5,20,0.0 +23037,44,19.45,26,0.0 +23037,6,25,46,0.0 +23037,76,18,27,0.0 +23037,27,43.9,31,0.0 +23037,30,25.89,44,0.0 +23037,26,31.23,9,0.0 +23037,66,17,24,0.0 +23037,25,14,18,0.0 +23037,60,34,4,0.0 +23037,37,26,17,0.0 +23037,45,9.5,30,0.0 +23037,13,6,8,0.0 +23037,17,39,20,0.0 +23037,68,12.5,33,0.0 +23037,70,15,2,0.0 +23037,58,13.25,32,0.0 +23037,24,4.5,26,0.0 +23037,46,12,15,0.0 +23037,61,28.5,36,0.0 +23037,75,7.75,3,0.0 +23037,2,19,5,0.0 +23037,36,19,32,0.0 +23037,72,34.8,28,0.0 +23038,14,23.25,41,0.0 +23038,67,14,31,0.0 +23038,37,26,10,0.0 +23038,76,18,1,0.0 +23038,12,38,18,0.0 +23038,40,18.4,22,0.0 +23038,45,9.5,12,0.0 +23038,38,263.5,4,0.0 +23038,5,21.35,7,0.0 +23038,24,4.5,10,0.0 +23038,77,13,39,0.0 +23038,20,81,35,0.0 +23038,21,10,38,0.0 +23038,7,30,43,0.0 +23038,4,22,5,0.0 +23038,6,25,2,0.0 +23038,66,17,35,0.0 +23038,15,15.5,28,0.0 +23038,22,21,30,0.0 +23038,63,43.9,40,0.0 +23038,29,123.79,10,0.0 +23038,8,40,18,0.0 +23038,49,20,33,0.0 +23038,48,12.75,7,0.0 +23038,75,7.75,39,0.0 +23038,28,45.6,42,0.0 +23038,73,15,37,0.0 +23038,32,32,11,0.0 +23038,10,31,28,0.0 +23038,16,17.45,50,0.0 +23038,65,21.05,47,0.0 +23038,30,25.89,48,0.0 +23038,41,9.65,16,0.0 +23038,60,34,19,0.0 +23038,25,14,14,0.0 +23038,34,14,32,0.0 +23038,50,16.25,47,0.0 +23038,13,6,46,0.0 +23038,54,7.45,45,0.0 +23038,64,33.25,32,0.0 +23038,51,53,19,0.0 +23038,19,9.2,22,0.0 +23038,59,55,21,0.0 +23038,39,18,41,0.0 +23038,35,18,14,0.0 +23038,46,12,28,0.0 +23038,27,43.9,33,0.0 +23038,71,21.5,41,0.0 +23038,52,7,29,0.0 +23038,44,19.45,50,0.0 +23038,56,38,18,0.0 +23038,74,10,13,0.0 +23038,47,9.5,32,0.0 +23038,26,31.23,30,0.0 +23039,62,49.3,5,0.0 +23039,37,26,14,0.0 +23039,64,33.25,14,0.0 +23039,55,24,46,0.0 +23039,18,62.5,50,0.0 +23039,10,31,4,0.0 +23039,38,263.5,16,0.0 +23039,28,45.6,26,0.0 +23039,68,12.5,31,0.0 +23039,33,2.5,22,0.0 +23039,49,20,19,0.0 +23039,48,12.75,18,0.0 +23039,27,43.9,48,0.0 +23039,41,9.65,24,0.0 +23039,67,14,22,0.0 +23039,13,6,13,0.0 +23039,40,18.4,41,0.0 +23039,50,16.25,31,0.0 +23039,46,12,20,0.0 +23039,14,23.25,25,0.0 +23039,45,9.5,10,0.0 +23039,59,55,17,0.0 +23039,3,10,9,0.0 +23039,65,21.05,14,0.0 +23039,32,32,23,0.0 +23039,47,9.5,12,0.0 +23039,43,46,21,0.0 +23039,8,40,21,0.0 +23039,15,15.5,38,0.0 +23039,29,123.79,30,0.0 +23039,72,34.8,10,0.0 +23039,7,30,26,0.0 +23039,56,38,30,0.0 +23039,9,97,1,0.0 +23040,44,19.45,37,0.0 +23040,35,18,41,0.0 +23040,77,13,21,0.0 +23040,7,30,22,0.0 +23040,75,7.75,4,0.0 +23040,24,4.5,8,0.0 +23040,59,55,3,0.0 +23040,46,12,47,0.0 +23040,65,21.05,37,0.0 +23041,37,26,49,0.0 +23041,35,18,47,0.0 +23041,25,14,46,0.0 +23041,47,9.5,19,0.0 +23041,76,18,3,0.0 +23041,65,21.05,26,0.0 +23041,52,7,19,0.0 +23041,14,23.25,1,0.0 +23041,21,10,46,0.0 +23041,4,22,29,0.0 +23041,62,49.3,39,0.0 +23041,6,25,38,0.0 +23041,46,12,23,0.0 +23042,15,15.5,27,0.0 +23042,57,19.5,22,0.0 +23042,37,26,32,0.0 +23042,13,6,37,0.0 +23042,14,23.25,18,0.0 +23042,51,53,6,0.0 +23042,31,12.5,17,0.0 +23042,55,24,19,0.0 +23042,48,12.75,37,0.0 +23042,67,14,45,0.0 +23042,53,32.8,8,0.0 +23042,74,10,41,0.0 +23042,72,34.8,15,0.0 +23042,19,9.2,33,0.0 +23042,8,40,49,0.0 +23042,27,43.9,18,0.0 +23042,64,33.25,3,0.0 +23042,45,9.5,31,0.0 +23042,56,38,44,0.0 +23042,52,7,30,0.0 +23042,2,19,43,0.0 +23042,30,25.89,15,0.0 +23042,18,62.5,17,0.0 +23042,59,55,14,0.0 +23042,63,43.9,2,0.0 +23042,65,21.05,42,0.0 +23042,73,15,47,0.0 +23042,60,34,41,0.0 +23042,36,19,27,0.0 +23042,46,12,42,0.0 +23042,17,39,36,0.0 +23042,43,46,48,0.0 +23042,29,123.79,49,0.0 +23042,77,13,33,0.0 +23042,12,38,24,0.0 +23042,21,10,14,0.0 +23042,50,16.25,13,0.0 +23042,44,19.45,5,0.0 +23042,6,25,40,0.0 +23042,22,21,28,0.0 +23042,34,14,4,0.0 +23042,25,14,38,0.0 +23042,58,13.25,24,0.0 +23042,54,7.45,10,0.0 +23042,42,14,18,0.0 +23043,68,12.5,45,0.0 +23043,64,33.25,37,0.0 +23043,28,45.6,19,0.0 +23043,26,31.23,14,0.0 +23043,57,19.5,48,0.0 +23043,65,21.05,28,0.0 +23043,27,43.9,19,0.0 +23043,70,15,42,0.0 +23043,17,39,48,0.0 +23043,60,34,25,0.0 +23043,5,21.35,46,0.0 +23043,69,36,4,0.0 +23043,46,12,3,0.0 +23043,15,15.5,22,0.0 +23043,4,22,43,0.0 +23043,22,21,23,0.0 +23043,36,19,45,0.0 +23043,55,24,40,0.0 +23043,75,7.75,4,0.0 +23043,30,25.89,37,0.0 +23043,12,38,32,0.0 +23043,14,23.25,48,0.0 +23043,13,6,38,0.0 +23043,29,123.79,9,0.0 +23043,34,14,16,0.0 +23043,63,43.9,2,0.0 +23043,21,10,31,0.0 +23043,50,16.25,32,0.0 +23043,18,62.5,5,0.0 +23043,59,55,19,0.0 +23043,10,31,18,0.0 +23043,67,14,44,0.0 +23043,72,34.8,47,0.0 +23043,38,263.5,26,0.0 +23043,39,18,19,0.0 +23043,6,25,28,0.0 +23043,25,14,18,0.0 +23043,24,4.5,19,0.0 +23043,2,19,39,0.0 +23043,61,28.5,39,0.0 +23043,9,97,48,0.0 +23043,43,46,13,0.0 +23043,71,21.5,32,0.0 +23043,19,9.2,46,0.0 +23043,7,30,40,0.0 +23043,52,7,30,0.0 +23043,11,21,39,0.0 +23043,31,12.5,4,0.0 +23043,33,2.5,17,0.0 +23043,54,7.45,10,0.0 +23043,58,13.25,10,0.0 +23043,62,49.3,19,0.0 +23043,66,17,43,0.0 +23043,3,10,8,0.0 +23043,35,18,17,0.0 +23043,16,17.45,2,0.0 +23043,45,9.5,39,0.0 +23043,20,81,17,0.0 +23043,53,32.8,6,0.0 +23043,51,53,10,0.0 +23043,37,26,7,0.0 +23044,44,19.45,49,0.0 +23044,30,25.89,5,0.0 +23044,5,21.35,42,0.0 +23044,57,19.5,25,0.0 +23044,63,43.9,17,0.0 +23044,3,10,15,0.0 +23044,18,62.5,47,0.0 +23044,7,30,20,0.0 +23044,75,7.75,17,0.0 +23044,17,39,34,0.0 +23044,10,31,20,0.0 +23044,6,25,34,0.0 +23044,26,31.23,33,0.0 +23044,68,12.5,12,0.0 +23044,27,43.9,27,0.0 +23044,34,14,24,0.0 +23044,59,55,12,0.0 +23044,77,13,45,0.0 +23044,21,10,2,0.0 +23044,29,123.79,1,0.0 +23044,48,12.75,34,0.0 +23044,13,6,27,0.0 +23044,31,12.5,36,0.0 +23044,38,263.5,17,0.0 +23044,15,15.5,4,0.0 +23044,60,34,49,0.0 +23044,9,97,7,0.0 +23044,22,21,22,0.0 +23044,61,28.5,13,0.0 +23044,56,38,39,0.0 +23044,70,15,44,0.0 +23044,28,45.6,31,0.0 +23044,55,24,45,0.0 +23044,23,9,26,0.0 +23044,1,18,30,0.0 +23044,53,32.8,21,0.0 +23044,67,14,35,0.0 +23044,4,22,11,0.0 +23044,37,26,31,0.0 +23044,51,53,38,0.0 +23044,65,21.05,1,0.0 +23044,8,40,31,0.0 +23044,35,18,41,0.0 +23044,71,21.5,3,0.0 +23044,2,19,29,0.0 +23044,46,12,20,0.0 +23044,42,14,43,0.0 +23044,36,19,19,0.0 +23044,69,36,21,0.0 +23044,24,4.5,48,0.0 +23044,58,13.25,15,0.0 +23044,76,18,18,0.0 +23044,66,17,42,0.0 +23044,52,7,9,0.0 +23044,20,81,19,0.0 +23044,33,2.5,9,0.0 +23045,64,33.25,46,0.0 +23045,68,12.5,32,0.0 +23045,20,81,8,0.0 +23045,42,14,1,0.0 +23045,24,4.5,7,0.0 +23045,6,25,4,0.0 +23045,9,97,49,0.0 +23045,29,123.79,17,0.0 +23045,31,12.5,29,0.0 +23045,70,15,26,0.0 +23045,52,7,41,0.0 +23045,59,55,50,0.0 +23045,27,43.9,13,0.0 +23045,50,16.25,47,0.0 +23045,69,36,42,0.0 +23045,44,19.45,22,0.0 +23045,3,10,31,0.0 +23045,15,15.5,15,0.0 +23045,57,19.5,45,0.0 +23045,39,18,9,0.0 +23045,22,21,22,0.0 +23045,4,22,40,0.0 +23045,28,45.6,50,0.0 +23045,14,23.25,47,0.0 +23045,13,6,13,0.0 +23045,35,18,44,0.0 +23045,43,46,30,0.0 +23045,67,14,20,0.0 +23045,32,32,31,0.0 +23045,66,17,14,0.0 +23045,40,18.4,7,0.0 +23045,26,31.23,39,0.0 +23045,8,40,27,0.0 +23045,61,28.5,6,0.0 +23045,53,32.8,41,0.0 +23045,47,9.5,19,0.0 +23045,77,13,48,0.0 +23045,76,18,3,0.0 +23045,21,10,42,0.0 +23045,45,9.5,2,0.0 +23045,46,12,38,0.0 +23045,58,13.25,28,0.0 +23045,34,14,39,0.0 +23045,73,15,47,0.0 +23045,37,26,42,0.0 +23045,2,19,6,0.0 +23045,19,9.2,15,0.0 +23045,71,21.5,35,0.0 +23045,65,21.05,14,0.0 +23045,12,38,50,0.0 +23045,56,38,45,0.0 +23045,54,7.45,15,0.0 +23045,18,62.5,7,0.0 +23045,1,18,9,0.0 +23045,5,21.35,35,0.0 +23045,48,12.75,29,0.0 +23045,60,34,44,0.0 +23046,38,263.5,26,0.0 +23046,2,19,7,0.0 +23046,62,49.3,13,0.0 +23046,19,9.2,40,0.0 +23046,37,26,37,0.0 +23046,3,10,47,0.0 +23046,75,7.75,32,0.0 +23046,66,17,43,0.0 +23046,74,10,29,0.0 +23046,17,39,30,0.0 +23046,8,40,4,0.0 +23046,4,22,50,0.0 +23046,32,32,21,0.0 +23046,54,7.45,3,0.0 +23046,16,17.45,39,0.0 +23046,48,12.75,40,0.0 +23047,71,21.5,8,0.0 +23047,47,9.5,37,0.0 +23047,50,16.25,34,0.0 +23047,6,25,11,0.0 +23047,8,40,9,0.0 +23047,77,13,30,0.0 +23047,10,31,41,0.0 +23047,15,15.5,18,0.0 +23047,44,19.45,32,0.0 +23047,76,18,5,0.0 +23047,66,17,4,0.0 +23047,26,31.23,49,0.0 +23047,59,55,45,0.0 +23047,28,45.6,1,0.0 +23047,11,21,42,0.0 +23047,63,43.9,21,0.0 +23047,21,10,32,0.0 +23047,14,23.25,22,0.0 +23047,52,7,29,0.0 +23047,74,10,9,0.0 +23047,41,9.65,7,0.0 +23047,45,9.5,40,0.0 +23047,43,46,7,0.0 +23047,60,34,10,0.0 +23047,42,14,36,0.0 +23047,12,38,13,0.0 +23047,33,2.5,13,0.0 +23047,30,25.89,50,0.0 +23047,3,10,33,0.0 +23047,40,18.4,17,0.0 +23047,32,32,6,0.0 +23047,19,9.2,16,0.0 +23047,34,14,18,0.0 +23047,35,18,26,0.0 +23047,57,19.5,50,0.0 +23047,39,18,28,0.0 +23047,49,20,13,0.0 +23047,5,21.35,12,0.0 +23047,53,32.8,47,0.0 +23047,38,263.5,25,0.0 +23047,72,34.8,50,0.0 +23047,64,33.25,6,0.0 +23047,62,49.3,45,0.0 +23047,55,24,10,0.0 +23047,4,22,41,0.0 +23047,2,19,6,0.0 +23047,75,7.75,6,0.0 +23048,29,123.79,19,0.0 +23048,67,14,50,0.0 +23048,66,17,41,0.0 +23048,46,12,29,0.0 +23048,56,38,18,0.0 +23048,11,21,13,0.0 +23048,3,10,4,0.0 +23048,14,23.25,19,0.0 +23048,54,7.45,45,0.0 +23048,28,45.6,29,0.0 +23048,51,53,17,0.0 +23048,4,22,24,0.0 +23048,25,14,4,0.0 +23048,53,32.8,22,0.0 +23048,72,34.8,23,0.0 +23048,26,31.23,29,0.0 +23048,16,17.45,30,0.0 +23048,35,18,39,0.0 +23049,71,21.5,19,0.0 +23049,3,10,19,0.0 +23049,48,12.75,28,0.0 +23049,34,14,9,0.0 +23049,15,15.5,34,0.0 +23049,69,36,38,0.0 +23049,36,19,27,0.0 +23049,32,32,37,0.0 +23049,62,49.3,2,0.0 +23049,21,10,24,0.0 +23049,14,23.25,50,0.0 +23049,52,7,10,0.0 +23050,67,14,35,0.0 +23050,38,263.5,46,0.0 +23050,72,34.8,11,0.0 +23050,24,4.5,8,0.0 +23050,50,16.25,7,0.0 +23050,12,38,31,0.0 +23050,32,32,2,0.0 +23050,63,43.9,26,0.0 +23050,71,21.5,35,0.0 +23050,64,33.25,48,0.0 +23050,34,14,28,0.0 +23050,3,10,13,0.0 +23050,47,9.5,49,0.0 +23050,23,9,5,0.0 +23050,40,18.4,33,0.0 +23050,2,19,10,0.0 +23050,39,18,3,0.0 +23050,62,49.3,46,0.0 +23050,25,14,3,0.0 +23050,31,12.5,24,0.0 +23050,33,2.5,30,0.0 +23050,66,17,32,0.0 +23050,44,19.45,3,0.0 +23050,16,17.45,19,0.0 +23050,73,15,19,0.0 +23050,53,32.8,17,0.0 +23050,8,40,14,0.0 +23050,49,20,32,0.0 +23050,48,12.75,4,0.0 +23050,75,7.75,46,0.0 +23050,35,18,41,0.0 +23050,51,53,3,0.0 +23050,10,31,37,0.0 +23050,68,12.5,17,0.0 +23050,19,9.2,25,0.0 +23050,56,38,22,0.0 +23050,74,10,36,0.0 +23050,59,55,38,0.0 +23050,7,30,34,0.0 +23050,29,123.79,43,0.0 +23050,65,21.05,32,0.0 +23050,36,19,31,0.0 +23050,54,7.45,10,0.0 +23050,52,7,50,0.0 +23050,26,31.23,16,0.0 +23050,15,15.5,4,0.0 +23050,55,24,41,0.0 +23050,43,46,39,0.0 +23050,18,62.5,14,0.0 +23050,21,10,15,0.0 +23050,60,34,16,0.0 +23050,69,36,40,0.0 +23050,37,26,24,0.0 +23050,27,43.9,9,0.0 +23051,73,15,49,0.0 +23051,64,33.25,31,0.0 +23051,26,31.23,7,0.0 +23051,12,38,24,0.0 +23051,65,21.05,38,0.0 +23051,36,19,16,0.0 +23051,42,14,21,0.0 +23051,23,9,4,0.0 +23051,68,12.5,3,0.0 +23051,35,18,31,0.0 +23051,3,10,40,0.0 +23051,17,39,12,0.0 +23051,55,24,1,0.0 +23051,53,32.8,49,0.0 +23051,59,55,19,0.0 +23051,69,36,45,0.0 +23051,2,19,9,0.0 +23051,44,19.45,46,0.0 +23051,13,6,23,0.0 +23051,30,25.89,15,0.0 +23051,31,12.5,10,0.0 +23051,43,46,45,0.0 +23051,60,34,36,0.0 +23051,14,23.25,27,0.0 +23051,61,28.5,15,0.0 +23051,29,123.79,28,0.0 +23051,24,4.5,11,0.0 +23051,6,25,46,0.0 +23051,56,38,8,0.0 +23051,20,81,33,0.0 +23051,40,18.4,5,0.0 +23051,5,21.35,38,0.0 +23051,1,18,20,0.0 +23051,49,20,43,0.0 +23051,37,26,33,0.0 +23051,62,49.3,7,0.0 +23051,45,9.5,10,0.0 +23052,34,14,35,0.0 +23052,30,25.89,50,0.0 +23052,57,19.5,35,0.0 +23052,31,12.5,9,0.0 +23052,10,31,31,0.0 +23052,1,18,26,0.0 +23052,11,21,28,0.0 +23052,6,25,30,0.0 +23052,62,49.3,8,0.0 +23052,48,12.75,45,0.0 +23052,5,21.35,13,0.0 +23052,60,34,23,0.0 +23052,4,22,4,0.0 +23052,14,23.25,32,0.0 +23052,56,38,31,0.0 +23052,61,28.5,41,0.0 +23052,35,18,13,0.0 +23052,66,17,8,0.0 +23052,72,34.8,34,0.0 +23052,28,45.6,30,0.0 +23052,20,81,42,0.0 +23052,7,30,9,0.0 +23052,58,13.25,21,0.0 +23052,25,14,42,0.0 +23052,70,15,32,0.0 +23052,71,21.5,2,0.0 +23052,67,14,2,0.0 +23052,42,14,13,0.0 +23052,53,32.8,5,0.0 +23052,29,123.79,27,0.0 +23052,23,9,38,0.0 +23052,74,10,38,0.0 +23052,24,4.5,17,0.0 +23052,50,16.25,10,0.0 +23052,26,31.23,19,0.0 +23052,51,53,46,0.0 +23052,76,18,27,0.0 +23052,52,7,17,0.0 +23052,15,15.5,7,0.0 +23052,45,9.5,40,0.0 +23052,49,20,43,0.0 +23052,17,39,45,0.0 +23052,38,263.5,8,0.0 +23052,36,19,35,0.0 +23052,12,38,22,0.0 +23052,77,13,42,0.0 +23052,73,15,8,0.0 +23052,39,18,11,0.0 +23052,40,18.4,15,0.0 +23052,59,55,7,0.0 +23052,69,36,39,0.0 +23052,65,21.05,36,0.0 +23052,2,19,33,0.0 +23052,19,9.2,22,0.0 +23052,18,62.5,35,0.0 +23052,32,32,15,0.0 +23053,60,34,9,0.0 +23054,72,34.8,8,0.0 +23054,18,62.5,30,0.0 +23054,12,38,15,0.0 +23054,27,43.9,50,0.0 +23054,16,17.45,1,0.0 +23054,39,18,22,0.0 +23054,4,22,27,0.0 +23054,37,26,25,0.0 +23054,42,14,32,0.0 +23054,11,21,42,0.0 +23054,52,7,23,0.0 +23054,64,33.25,17,0.0 +23054,73,15,46,0.0 +23054,29,123.79,32,0.0 +23054,65,21.05,12,0.0 +23055,54,7.45,27,0.0 +23055,1,18,41,0.0 +23055,6,25,34,0.0 +23055,31,12.5,11,0.0 +23055,23,9,13,0.0 +23055,52,7,21,0.0 +23055,24,4.5,4,0.0 +23055,56,38,10,0.0 +23055,53,32.8,6,0.0 +23055,8,40,33,0.0 +23055,65,21.05,34,0.0 +23055,46,12,38,0.0 +23055,73,15,9,0.0 +23055,64,33.25,20,0.0 +23055,47,9.5,27,0.0 +23055,17,39,45,0.0 +23055,50,16.25,24,0.0 +23055,58,13.25,43,0.0 +23055,62,49.3,31,0.0 +23055,30,25.89,50,0.0 +23055,32,32,40,0.0 +23055,67,14,8,0.0 +23055,43,46,39,0.0 +23055,21,10,39,0.0 +23055,4,22,46,0.0 +23055,63,43.9,48,0.0 +23055,72,34.8,22,0.0 +23055,38,263.5,17,0.0 +23055,18,62.5,35,0.0 +23055,33,2.5,36,0.0 +23055,49,20,22,0.0 +23055,45,9.5,25,0.0 +23055,14,23.25,20,0.0 +23055,28,45.6,3,0.0 +23055,13,6,15,0.0 +23055,68,12.5,31,0.0 +23055,71,21.5,50,0.0 +23055,10,31,49,0.0 +23055,35,18,11,0.0 +23055,41,9.65,46,0.0 +23055,51,53,35,0.0 +23055,15,15.5,22,0.0 +23055,60,34,1,0.0 +23055,19,9.2,30,0.0 +23055,61,28.5,21,0.0 +23055,39,18,12,0.0 +23055,75,7.75,11,0.0 +23055,34,14,36,0.0 +23055,48,12.75,36,0.0 +23055,12,38,40,0.0 +23055,40,18.4,40,0.0 +23055,27,43.9,2,0.0 +23056,26,31.23,24,0.0 +23056,23,9,36,0.0 +23056,42,14,13,0.0 +23056,35,18,26,0.0 +23056,34,14,43,0.0 +23056,43,46,47,0.0 +23056,3,10,13,0.0 +23056,68,12.5,17,0.0 +23056,25,14,28,0.0 +23056,4,22,39,0.0 +23056,57,19.5,6,0.0 +23056,11,21,15,0.0 +23056,5,21.35,49,0.0 +23056,69,36,48,0.0 +23056,49,20,34,0.0 +23056,22,21,40,0.0 +23056,67,14,21,0.0 +23056,33,2.5,40,0.0 +23056,74,10,20,0.0 +23056,73,15,5,0.0 +23056,46,12,45,0.0 +23056,65,21.05,20,0.0 +23056,56,38,25,0.0 +23056,38,263.5,9,0.0 +23056,70,15,38,0.0 +23056,39,18,6,0.0 +23056,71,21.5,19,0.0 +23056,12,38,44,0.0 +23056,19,9.2,4,0.0 +23056,30,25.89,35,0.0 +23056,17,39,21,0.0 +23056,55,24,43,0.0 +23056,59,55,20,0.0 +23056,61,28.5,10,0.0 +23056,60,34,48,0.0 +23056,48,12.75,15,0.0 +23056,24,4.5,26,0.0 +23056,75,7.75,50,0.0 +23056,6,25,15,0.0 +23056,20,81,25,0.0 +23056,62,49.3,29,0.0 +23056,41,9.65,3,0.0 +23056,63,43.9,7,0.0 +23056,7,30,21,0.0 +23056,13,6,43,0.0 +23056,47,9.5,14,0.0 +23056,14,23.25,26,0.0 +23056,77,13,5,0.0 +23056,2,19,46,0.0 +23056,76,18,28,0.0 +23056,36,19,17,0.0 +23056,31,12.5,49,0.0 +23056,9,97,23,0.0 +23056,37,26,7,0.0 +23056,27,43.9,48,0.0 +23056,1,18,8,0.0 +23056,44,19.45,12,0.0 +23056,72,34.8,46,0.0 +23056,16,17.45,21,0.0 +23056,64,33.25,20,0.0 +23056,8,40,28,0.0 +23056,53,32.8,48,0.0 +23056,10,31,27,0.0 +23056,45,9.5,32,0.0 +23056,51,53,27,0.0 +23056,18,62.5,20,0.0 +23056,32,32,2,0.0 +23056,15,15.5,1,0.0 +23056,28,45.6,39,0.0 +23056,21,10,3,0.0 +23056,52,7,50,0.0 +23056,29,123.79,27,0.0 +23056,58,13.25,16,0.0 +23056,40,18.4,43,0.0 +23056,50,16.25,19,0.0 +23057,10,31,49,0.0 +23057,27,43.9,37,0.0 +23057,38,263.5,26,0.0 +23057,59,55,32,0.0 +23057,31,12.5,16,0.0 +23057,52,7,21,0.0 +23057,3,10,30,0.0 +23057,17,39,11,0.0 +23057,72,34.8,36,0.0 +23057,60,34,37,0.0 +23057,34,14,18,0.0 +23057,40,18.4,24,0.0 +23057,35,18,11,0.0 +23057,42,14,36,0.0 +23057,19,9.2,20,0.0 +23057,15,15.5,25,0.0 +23057,63,43.9,35,0.0 +23057,26,31.23,11,0.0 +23057,69,36,27,0.0 +23057,77,13,27,0.0 +23057,46,12,43,0.0 +23057,55,24,13,0.0 +23057,33,2.5,1,0.0 +23057,49,20,14,0.0 +23057,62,49.3,1,0.0 +23057,66,17,49,0.0 +23057,61,28.5,5,0.0 +23057,23,9,28,0.0 +23057,73,15,30,0.0 +23057,76,18,26,0.0 +23057,16,17.45,13,0.0 +23057,39,18,3,0.0 +23057,68,12.5,16,0.0 +23057,50,16.25,49,0.0 +23057,70,15,37,0.0 +23057,64,33.25,12,0.0 +23057,2,19,21,0.0 +23057,11,21,27,0.0 +23057,44,19.45,34,0.0 +23057,56,38,13,0.0 +23057,5,21.35,6,0.0 +23058,22,21,26,0.0 +23058,64,33.25,44,0.0 +23058,17,39,32,0.0 +23058,54,7.45,26,0.0 +23058,26,31.23,30,0.0 +23058,62,49.3,5,0.0 +23058,10,31,50,0.0 +23058,5,21.35,13,0.0 +23058,74,10,7,0.0 +23058,48,12.75,29,0.0 +23058,9,97,2,0.0 +23058,56,38,47,0.0 +23058,50,16.25,19,0.0 +23058,20,81,20,0.0 +23058,75,7.75,31,0.0 +23058,51,53,25,0.0 +23058,12,38,17,0.0 +23058,21,10,40,0.0 +23058,36,19,18,0.0 +23058,60,34,4,0.0 +23058,6,25,12,0.0 +23058,40,18.4,8,0.0 +23058,71,21.5,38,0.0 +23058,24,4.5,21,0.0 +23058,27,43.9,27,0.0 +23058,61,28.5,33,0.0 +23058,76,18,48,0.0 +23058,14,23.25,16,0.0 +23058,7,30,47,0.0 +23058,18,62.5,48,0.0 +23058,45,9.5,28,0.0 +23058,29,123.79,25,0.0 +23058,44,19.45,14,0.0 +23058,34,14,17,0.0 +23058,55,24,32,0.0 +23058,65,21.05,26,0.0 +23058,11,21,47,0.0 +23058,46,12,24,0.0 +23058,69,36,14,0.0 +23058,41,9.65,14,0.0 +23058,68,12.5,43,0.0 +23059,45,9.5,10,0.0 +23059,34,14,8,0.0 +23059,56,38,47,0.0 +23059,11,21,27,0.0 +23059,31,12.5,8,0.0 +23059,38,263.5,35,0.0 +23059,72,34.8,29,0.0 +23059,35,18,49,0.0 +23059,76,18,20,0.0 +23059,67,14,43,0.0 +23059,46,12,8,0.0 +23059,50,16.25,5,0.0 +23059,47,9.5,28,0.0 +23059,63,43.9,47,0.0 +23059,54,7.45,13,0.0 +23059,40,18.4,25,0.0 +23059,42,14,30,0.0 +23059,66,17,49,0.0 +23059,1,18,45,0.0 +23059,9,97,11,0.0 +23059,29,123.79,44,0.0 +23059,51,53,33,0.0 +23059,44,19.45,30,0.0 +23059,30,25.89,5,0.0 +23059,15,15.5,42,0.0 +23059,27,43.9,47,0.0 +23059,68,12.5,27,0.0 +23059,16,17.45,13,0.0 +23059,49,20,40,0.0 +23059,17,39,9,0.0 +23059,58,13.25,14,0.0 +23059,7,30,41,0.0 +23059,62,49.3,30,0.0 +23059,57,19.5,42,0.0 +23059,77,13,41,0.0 +23059,6,25,31,0.0 +23059,14,23.25,1,0.0 +23059,48,12.75,49,0.0 +23059,73,15,22,0.0 +23059,13,6,44,0.0 +23059,65,21.05,47,0.0 +23059,26,31.23,8,0.0 +23059,64,33.25,27,0.0 +23059,5,21.35,37,0.0 +23059,36,19,11,0.0 +23059,39,18,5,0.0 +23059,20,81,6,0.0 +23059,55,24,47,0.0 +23059,53,32.8,22,0.0 +23059,37,26,14,0.0 +23059,3,10,4,0.0 +23059,8,40,30,0.0 +23059,21,10,45,0.0 +23059,24,4.5,14,0.0 +23059,61,28.5,26,0.0 +23059,43,46,17,0.0 +23059,12,38,37,0.0 +23059,32,32,48,0.0 +23059,10,31,8,0.0 +23059,70,15,5,0.0 +23059,2,19,33,0.0 +23059,23,9,25,0.0 +23059,59,55,10,0.0 +23059,71,21.5,41,0.0 +23059,52,7,38,0.0 +23059,74,10,43,0.0 +23059,41,9.65,1,0.0 +23059,33,2.5,34,0.0 +23059,60,34,36,0.0 +23059,69,36,13,0.0 +23059,4,22,33,0.0 +23059,18,62.5,19,0.0 +23059,19,9.2,28,0.0 +23059,25,14,9,0.0 +23060,63,43.9,36,0.0 +23060,67,14,18,0.0 +23060,10,31,2,0.0 +23060,20,81,16,0.0 +23060,37,26,33,0.0 +23060,30,25.89,7,0.0 +23060,18,62.5,4,0.0 +23060,75,7.75,33,0.0 +23060,61,28.5,10,0.0 +23060,27,43.9,45,0.0 +23060,9,97,48,0.0 +23060,68,12.5,41,0.0 +23060,51,53,8,0.0 +23060,47,9.5,37,0.0 +23060,13,6,33,0.0 +23060,38,263.5,43,0.0 +23060,33,2.5,35,0.0 +23060,32,32,3,0.0 +23060,49,20,26,0.0 +23060,28,45.6,50,0.0 +23060,66,17,24,0.0 +23060,12,38,17,0.0 +23060,39,18,2,0.0 +23060,62,49.3,27,0.0 +23060,65,21.05,39,0.0 +23060,45,9.5,35,0.0 +23060,43,46,5,0.0 +23060,7,30,12,0.0 +23060,56,38,27,0.0 +23060,4,22,50,0.0 +23060,46,12,39,0.0 +23060,11,21,15,0.0 +23060,21,10,11,0.0 +23060,77,13,1,0.0 +23060,44,19.45,23,0.0 +23060,1,18,41,0.0 +23060,58,13.25,50,0.0 +23060,25,14,26,0.0 +23060,35,18,12,0.0 +23060,41,9.65,12,0.0 +23060,6,25,6,0.0 +23060,76,18,6,0.0 +23060,16,17.45,43,0.0 +23060,36,19,49,0.0 +23060,74,10,48,0.0 +23060,3,10,7,0.0 +23060,53,32.8,42,0.0 +23060,72,34.8,25,0.0 +23060,34,14,19,0.0 +23060,64,33.25,28,0.0 +23060,17,39,27,0.0 +23060,31,12.5,44,0.0 +23060,2,19,33,0.0 +23060,14,23.25,6,0.0 +23060,42,14,17,0.0 +23060,22,21,38,0.0 +23060,69,36,36,0.0 +23060,55,24,12,0.0 +23060,52,7,18,0.0 +23060,40,18.4,14,0.0 +23060,71,21.5,1,0.0 +23060,8,40,3,0.0 +23060,50,16.25,26,0.0 +23060,5,21.35,45,0.0 +23060,70,15,18,0.0 +23060,54,7.45,2,0.0 +23061,19,9.2,20,0.0 +23061,42,14,49,0.0 +23061,12,38,38,0.0 +23061,5,21.35,3,0.0 +23061,14,23.25,31,0.0 +23061,68,12.5,2,0.0 +23061,62,49.3,39,0.0 +23061,61,28.5,34,0.0 +23061,2,19,2,0.0 +23061,75,7.75,19,0.0 +23061,29,123.79,27,0.0 +23061,4,22,41,0.0 +23061,48,12.75,21,0.0 +23061,35,18,12,0.0 +23061,77,13,28,0.0 +23061,60,34,22,0.0 +23061,27,43.9,17,0.0 +23061,38,263.5,37,0.0 +23061,66,17,38,0.0 +23061,56,38,18,0.0 +23061,58,13.25,45,0.0 +23061,41,9.65,26,0.0 +23061,59,55,40,0.0 +23061,25,14,45,0.0 +23061,7,30,21,0.0 +23061,28,45.6,2,0.0 +23061,47,9.5,39,0.0 +23061,6,25,23,0.0 +23061,9,97,50,0.0 +23061,37,26,18,0.0 +23061,3,10,48,0.0 +23061,46,12,1,0.0 +23061,50,16.25,36,0.0 +23061,30,25.89,15,0.0 +23062,43,46,22,0.0 +23062,10,31,46,0.0 +23062,12,38,40,0.0 +23062,5,21.35,36,0.0 +23062,74,10,27,0.0 +23062,2,19,33,0.0 +23062,42,14,1,0.0 +23062,15,15.5,9,0.0 +23062,67,14,27,0.0 +23062,63,43.9,14,0.0 +23062,32,32,41,0.0 +23062,77,13,41,0.0 +23062,3,10,23,0.0 +23062,65,21.05,9,0.0 +23062,26,31.23,16,0.0 +23062,44,19.45,36,0.0 +23062,38,263.5,36,0.0 +23062,60,34,14,0.0 +23062,1,18,7,0.0 +23062,17,39,37,0.0 +23062,4,22,17,0.0 +23062,35,18,18,0.0 +23062,62,49.3,31,0.0 +23062,36,19,31,0.0 +23062,6,25,11,0.0 +23062,73,15,34,0.0 +23062,69,36,32,0.0 +23062,68,12.5,21,0.0 +23062,66,17,49,0.0 +23062,9,97,41,0.0 +23062,39,18,30,0.0 +23062,7,30,48,0.0 +23062,71,21.5,37,0.0 +23062,53,32.8,11,0.0 +23062,45,9.5,3,0.0 +23062,34,14,17,0.0 +23062,61,28.5,14,0.0 +23063,56,38,46,0.0 +23063,3,10,5,0.0 +23063,2,19,6,0.0 +23063,32,32,13,0.0 +23063,12,38,16,0.0 +23063,38,263.5,38,0.0 +23063,77,13,33,0.0 +23063,22,21,10,0.0 +23063,65,21.05,6,0.0 +23063,23,9,14,0.0 +23063,40,18.4,12,0.0 +23063,4,22,24,0.0 +23063,27,43.9,12,0.0 +23063,66,17,42,0.0 +23063,7,30,45,0.0 +23063,59,55,36,0.0 +23063,25,14,33,0.0 +23063,39,18,7,0.0 +23063,61,28.5,47,0.0 +23063,68,12.5,14,0.0 +23063,16,17.45,7,0.0 +23063,70,15,7,0.0 +23063,54,7.45,7,0.0 +23063,63,43.9,38,0.0 +23063,76,18,36,0.0 +23063,10,31,31,0.0 +23063,44,19.45,50,0.0 +23063,41,9.65,11,0.0 +23063,71,21.5,22,0.0 +23063,14,23.25,38,0.0 +23063,64,33.25,26,0.0 +23063,19,9.2,30,0.0 +23063,6,25,35,0.0 +23063,35,18,21,0.0 +23063,55,24,47,0.0 +23063,45,9.5,15,0.0 +23063,15,15.5,20,0.0 +23063,20,81,33,0.0 +23063,72,34.8,48,0.0 +23063,49,20,1,0.0 +23063,24,4.5,2,0.0 +23063,74,10,34,0.0 +23063,75,7.75,27,0.0 +23063,47,9.5,22,0.0 +23063,50,16.25,22,0.0 +23063,30,25.89,47,0.0 +23063,18,62.5,13,0.0 +23063,1,18,39,0.0 +23063,42,14,39,0.0 +23063,17,39,36,0.0 +23063,5,21.35,14,0.0 +23063,43,46,18,0.0 +23063,60,34,20,0.0 +23063,51,53,44,0.0 +23063,29,123.79,35,0.0 +23063,67,14,6,0.0 +23063,11,21,34,0.0 +23063,73,15,9,0.0 +23063,21,10,4,0.0 +23063,26,31.23,4,0.0 +23063,28,45.6,18,0.0 +23063,8,40,9,0.0 +23063,9,97,34,0.0 +23064,51,53,34,0.0 +23064,21,10,3,0.0 +23064,46,12,50,0.0 +23064,18,62.5,14,0.0 +23064,61,28.5,16,0.0 +23064,58,13.25,28,0.0 +23064,2,19,46,0.0 +23064,69,36,35,0.0 +23064,40,18.4,35,0.0 +23064,27,43.9,20,0.0 +23064,49,20,29,0.0 +23064,38,263.5,1,0.0 +23064,45,9.5,41,0.0 +23064,50,16.25,44,0.0 +23064,10,31,19,0.0 +23064,62,49.3,25,0.0 +23064,41,9.65,32,0.0 +23064,35,18,43,0.0 +23064,55,24,12,0.0 +23064,68,12.5,11,0.0 +23064,20,81,43,0.0 +23064,64,33.25,21,0.0 +23064,7,30,24,0.0 +23064,75,7.75,27,0.0 +23064,56,38,16,0.0 +23064,8,40,35,0.0 +23064,43,46,41,0.0 +23064,66,17,22,0.0 +23064,54,7.45,34,0.0 +23064,29,123.79,24,0.0 +23064,67,14,3,0.0 +23065,12,38,9,0.0 +23065,32,32,27,0.0 +23065,38,263.5,34,0.0 +23065,23,9,24,0.0 +23065,28,45.6,21,0.0 +23065,63,43.9,19,0.0 +23065,61,28.5,13,0.0 +23065,57,19.5,16,0.0 +23066,21,10,49,0.0 +23066,47,9.5,32,0.0 +23066,35,18,30,0.0 +23066,24,4.5,10,0.0 +23066,59,55,32,0.0 +23066,49,20,3,0.0 +23066,31,12.5,40,0.0 +23066,7,30,34,0.0 +23066,57,19.5,33,0.0 +23066,36,19,30,0.0 +23066,29,123.79,14,0.0 +23066,16,17.45,12,0.0 +23066,77,13,10,0.0 +23066,70,15,2,0.0 +23066,67,14,12,0.0 +23066,68,12.5,18,0.0 +23066,51,53,49,0.0 +23066,44,19.45,45,0.0 +23066,43,46,28,0.0 +23067,51,53,24,0.0 +23067,57,19.5,30,0.0 +23067,67,14,15,0.0 +23067,43,46,30,0.0 +23067,49,20,22,0.0 +23067,56,38,16,0.0 +23067,22,21,34,0.0 +23067,16,17.45,27,0.0 +23067,34,14,50,0.0 +23067,9,97,12,0.0 +23067,29,123.79,24,0.0 +23067,13,6,49,0.0 +23067,5,21.35,28,0.0 +23067,70,15,44,0.0 +23067,18,62.5,43,0.0 +23067,75,7.75,9,0.0 +23067,28,45.6,23,0.0 +23067,52,7,5,0.0 +23067,59,55,41,0.0 +23067,11,21,49,0.0 +23067,47,9.5,19,0.0 +23068,35,18,27,0.0 +23068,62,49.3,11,0.0 +23068,56,38,31,0.0 +23068,40,18.4,48,0.0 +23068,19,9.2,31,0.0 +23068,7,30,1,0.0 +23068,12,38,28,0.0 +23068,51,53,45,0.0 +23068,39,18,31,0.0 +23069,33,2.5,24,0.0 +23069,20,81,41,0.0 +23069,65,21.05,4,0.0 +23069,62,49.3,40,0.0 +23069,67,14,36,0.0 +23069,10,31,16,0.0 +23069,76,18,16,0.0 +23069,37,26,30,0.0 +23069,42,14,12,0.0 +23069,30,25.89,17,0.0 +23069,18,62.5,34,0.0 +23069,4,22,2,0.0 +23069,40,18.4,46,0.0 +23069,54,7.45,14,0.0 +23069,17,39,10,0.0 +23069,22,21,36,0.0 +23069,8,40,50,0.0 +23069,24,4.5,4,0.0 +23069,14,23.25,45,0.0 +23069,23,9,1,0.0 +23069,32,32,19,0.0 +23069,13,6,46,0.0 +23069,6,25,2,0.0 +23069,52,7,46,0.0 +23069,75,7.75,20,0.0 +23069,60,34,30,0.0 +23069,64,33.25,8,0.0 +23069,25,14,32,0.0 +23069,59,55,40,0.0 +23069,16,17.45,1,0.0 +23069,26,31.23,44,0.0 +23069,41,9.65,50,0.0 +23070,44,19.45,48,0.0 +23070,58,13.25,32,0.0 +23070,5,21.35,25,0.0 +23070,16,17.45,3,0.0 +23070,9,97,8,0.0 +23070,3,10,12,0.0 +23070,69,36,46,0.0 +23070,40,18.4,6,0.0 +23070,12,38,37,0.0 +23070,29,123.79,6,0.0 +23070,72,34.8,34,0.0 +23070,28,45.6,14,0.0 +23070,39,18,2,0.0 +23070,68,12.5,42,0.0 +23070,23,9,47,0.0 +23070,61,28.5,30,0.0 +23070,21,10,10,0.0 +23070,36,19,27,0.0 +23070,2,19,10,0.0 +23070,38,263.5,23,0.0 +23070,76,18,15,0.0 +23070,54,7.45,31,0.0 +23071,54,7.45,8,0.0 +23071,20,81,22,0.0 +23071,74,10,49,0.0 +23071,45,9.5,11,0.0 +23071,10,31,50,0.0 +23071,16,17.45,39,0.0 +23071,35,18,14,0.0 +23071,6,25,25,0.0 +23071,4,22,45,0.0 +23071,38,263.5,19,0.0 +23071,65,21.05,8,0.0 +23072,48,12.75,42,0.0 +23072,50,16.25,48,0.0 +23072,23,9,19,0.0 +23072,4,22,47,0.0 +23072,41,9.65,38,0.0 +23072,73,15,7,0.0 +23072,59,55,49,0.0 +23072,1,18,19,0.0 +23072,49,20,28,0.0 +23072,12,38,10,0.0 +23072,13,6,24,0.0 +23072,39,18,6,0.0 +23072,32,32,27,0.0 +23072,77,13,19,0.0 +23072,34,14,4,0.0 +23072,35,18,3,0.0 +23072,45,9.5,26,0.0 +23072,46,12,25,0.0 +23072,42,14,50,0.0 +23072,16,17.45,31,0.0 +23072,25,14,22,0.0 +23072,10,31,9,0.0 +23072,20,81,26,0.0 +23072,52,7,36,0.0 +23072,3,10,17,0.0 +23072,27,43.9,37,0.0 +23072,67,14,36,0.0 +23072,61,28.5,25,0.0 +23072,72,34.8,14,0.0 +23072,8,40,2,0.0 +23072,51,53,20,0.0 +23072,14,23.25,39,0.0 +23072,56,38,29,0.0 +23072,47,9.5,34,0.0 +23072,40,18.4,19,0.0 +23072,43,46,24,0.0 +23072,31,12.5,9,0.0 +23072,24,4.5,1,0.0 +23072,65,21.05,7,0.0 +23072,7,30,23,0.0 +23072,75,7.75,14,0.0 +23072,17,39,49,0.0 +23072,54,7.45,27,0.0 +23072,18,62.5,7,0.0 +23073,28,45.6,37,0.0 +23073,66,17,15,0.0 +23073,60,34,31,0.0 +23073,75,7.75,27,0.0 +23073,73,15,23,0.0 +23073,15,15.5,2,0.0 +23073,61,28.5,43,0.0 +23073,10,31,41,0.0 +23073,33,2.5,25,0.0 +23073,67,14,3,0.0 +23073,25,14,37,0.0 +23073,13,6,35,0.0 +23073,58,13.25,47,0.0 +23073,14,23.25,28,0.0 +23073,49,20,32,0.0 +23073,76,18,39,0.0 +23073,9,97,43,0.0 +23073,37,26,8,0.0 +23073,59,55,47,0.0 +23073,29,123.79,26,0.0 +23073,34,14,2,0.0 +23073,3,10,45,0.0 +23073,24,4.5,41,0.0 +23073,48,12.75,13,0.0 +23073,4,22,37,0.0 +23073,46,12,43,0.0 +23073,64,33.25,15,0.0 +23073,52,7,20,0.0 +23073,63,43.9,41,0.0 +23073,53,32.8,15,0.0 +23073,77,13,4,0.0 +23073,50,16.25,21,0.0 +23073,69,36,26,0.0 +23073,51,53,36,0.0 +23073,70,15,50,0.0 +23073,6,25,50,0.0 +23073,7,30,45,0.0 +23073,20,81,42,0.0 +23073,44,19.45,21,0.0 +23073,11,21,6,0.0 +23073,31,12.5,4,0.0 +23073,19,9.2,18,0.0 +23073,22,21,38,0.0 +23073,74,10,29,0.0 +23073,5,21.35,41,0.0 +23073,32,32,46,0.0 +23073,68,12.5,40,0.0 +23073,21,10,9,0.0 +23073,38,263.5,9,0.0 +23073,35,18,5,0.0 +23073,42,14,14,0.0 +23073,72,34.8,36,0.0 +23073,45,9.5,17,0.0 +23073,27,43.9,45,0.0 +23073,55,24,37,0.0 +23073,40,18.4,23,0.0 +23073,71,21.5,26,0.0 +23073,57,19.5,37,0.0 +23073,36,19,27,0.0 +23073,65,21.05,25,0.0 +23073,8,40,35,0.0 +23073,54,7.45,38,0.0 +23073,16,17.45,12,0.0 +23073,62,49.3,14,0.0 +23073,23,9,43,0.0 +23073,12,38,4,0.0 +23073,41,9.65,14,0.0 +23074,15,15.5,30,0.0 +23074,1,18,48,0.0 +23074,57,19.5,4,0.0 +23074,49,20,47,0.0 +23074,45,9.5,45,0.0 +23074,10,31,39,0.0 +23074,77,13,37,0.0 +23074,70,15,28,0.0 +23074,64,33.25,29,0.0 +23074,68,12.5,49,0.0 +23074,16,17.45,48,0.0 +23075,60,34,7,0.0 +23075,51,53,23,0.0 +23075,16,17.45,42,0.0 +23075,68,12.5,21,0.0 +23075,57,19.5,10,0.0 +23075,44,19.45,14,0.0 +23075,50,16.25,30,0.0 +23075,7,30,11,0.0 +23075,31,12.5,19,0.0 +23075,69,36,13,0.0 +23075,13,6,17,0.0 +23075,53,32.8,7,0.0 +23075,74,10,17,0.0 +23075,41,9.65,6,0.0 +23075,55,24,4,0.0 +23075,76,18,6,0.0 +23075,71,21.5,20,0.0 +23075,34,14,19,0.0 +23075,70,15,21,0.0 +23075,58,13.25,41,0.0 +23075,20,81,20,0.0 +23075,14,23.25,21,0.0 +23075,72,34.8,5,0.0 +23075,3,10,47,0.0 +23075,17,39,6,0.0 +23075,35,18,20,0.0 +23075,24,4.5,24,0.0 +23075,21,10,47,0.0 +23075,63,43.9,19,0.0 +23075,40,18.4,49,0.0 +23075,52,7,25,0.0 +23075,38,263.5,12,0.0 +23075,32,32,30,0.0 +23075,67,14,23,0.0 +23075,10,31,35,0.0 +23075,6,25,50,0.0 +23075,9,97,20,0.0 +23075,47,9.5,3,0.0 +23075,48,12.75,45,0.0 +23075,19,9.2,20,0.0 +23075,62,49.3,36,0.0 +23075,65,21.05,40,0.0 +23075,1,18,10,0.0 +23075,18,62.5,4,0.0 +23075,75,7.75,49,0.0 +23075,2,19,48,0.0 +23075,61,28.5,34,0.0 +23075,45,9.5,19,0.0 +23075,37,26,46,0.0 +23076,49,20,22,0.0 +23076,30,25.89,5,0.0 +23076,65,21.05,24,0.0 +23076,45,9.5,26,0.0 +23076,72,34.8,17,0.0 +23076,63,43.9,20,0.0 +23076,54,7.45,27,0.0 +23076,70,15,48,0.0 +23076,56,38,40,0.0 +23076,60,34,35,0.0 +23076,69,36,27,0.0 +23076,20,81,47,0.0 +23076,8,40,21,0.0 +23076,75,7.75,43,0.0 +23076,77,13,14,0.0 +23076,6,25,16,0.0 +23076,41,9.65,50,0.0 +23076,31,12.5,41,0.0 +23076,19,9.2,33,0.0 +23076,23,9,4,0.0 +23076,38,263.5,11,0.0 +23076,33,2.5,16,0.0 +23076,24,4.5,1,0.0 +23076,16,17.45,11,0.0 +23076,73,15,46,0.0 +23076,4,22,48,0.0 +23076,62,49.3,37,0.0 +23076,64,33.25,48,0.0 +23076,67,14,6,0.0 +23076,32,32,24,0.0 +23076,15,15.5,20,0.0 +23077,13,6,48,0.0 +23077,59,55,28,0.0 +23077,34,14,13,0.0 +23077,44,19.45,43,0.0 +23077,45,9.5,17,0.0 +23077,22,21,42,0.0 +23077,40,18.4,22,0.0 +23077,33,2.5,34,0.0 +23077,25,14,4,0.0 +23077,71,21.5,30,0.0 +23077,42,14,31,0.0 +23077,19,9.2,1,0.0 +23077,27,43.9,25,0.0 +23077,4,22,39,0.0 +23077,66,17,6,0.0 +23077,37,26,46,0.0 +23077,65,21.05,19,0.0 +23077,74,10,21,0.0 +23078,44,19.45,45,0.0 +23078,50,16.25,5,0.0 +23078,18,62.5,22,0.0 +23078,12,38,34,0.0 +23078,52,7,33,0.0 +23078,28,45.6,49,0.0 +23078,29,123.79,47,0.0 +23078,38,263.5,31,0.0 +23078,33,2.5,46,0.0 +23078,70,15,17,0.0 +23078,26,31.23,30,0.0 +23078,24,4.5,13,0.0 +23078,72,34.8,2,0.0 +23078,62,49.3,5,0.0 +23078,13,6,14,0.0 +23078,48,12.75,41,0.0 +23078,63,43.9,6,0.0 +23078,6,25,35,0.0 +23078,41,9.65,40,0.0 +23078,60,34,4,0.0 +23078,61,28.5,36,0.0 +23078,9,97,41,0.0 +23078,46,12,18,0.0 +23078,27,43.9,9,0.0 +23078,71,21.5,47,0.0 +23078,34,14,29,0.0 +23078,53,32.8,30,0.0 +23078,7,30,10,0.0 +23078,4,22,34,0.0 +23078,66,17,40,0.0 +23078,25,14,21,0.0 +23078,69,36,22,0.0 +23078,43,46,47,0.0 +23078,55,24,16,0.0 +23078,64,33.25,17,0.0 +23078,19,9.2,48,0.0 +23078,65,21.05,3,0.0 +23078,42,14,5,0.0 +23078,22,21,24,0.0 +23078,51,53,3,0.0 +23078,47,9.5,35,0.0 +23078,56,38,48,0.0 +23079,57,19.5,22,0.0 +23079,11,21,4,0.0 +23079,69,36,18,0.0 +23079,54,7.45,5,0.0 +23079,61,28.5,16,0.0 +23079,49,20,16,0.0 +23080,62,49.3,23,0.0 +23080,35,18,21,0.0 +23080,36,19,14,0.0 +23080,8,40,15,0.0 +23080,25,14,44,0.0 +23080,14,23.25,3,0.0 +23080,52,7,42,0.0 +23080,12,38,36,0.0 +23080,55,24,29,0.0 +23080,73,15,7,0.0 +23080,48,12.75,15,0.0 +23080,43,46,21,0.0 +23080,7,30,9,0.0 +23080,74,10,30,0.0 +23080,33,2.5,10,0.0 +23080,27,43.9,43,0.0 +23080,49,20,43,0.0 +23080,3,10,3,0.0 +23080,15,15.5,36,0.0 +23080,23,9,19,0.0 +23080,68,12.5,11,0.0 +23080,57,19.5,49,0.0 +23080,21,10,50,0.0 +23080,67,14,30,0.0 +23080,46,12,29,0.0 +23080,22,21,38,0.0 +23080,30,25.89,30,0.0 +23080,37,26,34,0.0 +23080,20,81,38,0.0 +23080,39,18,35,0.0 +23080,17,39,49,0.0 +23080,77,13,46,0.0 +23080,29,123.79,6,0.0 +23080,72,34.8,15,0.0 +23080,1,18,13,0.0 +23081,12,38,7,0.0 +23081,50,16.25,18,0.0 +23081,4,22,8,0.0 +23081,22,21,50,0.0 +23081,77,13,18,0.0 +23081,30,25.89,34,0.0 +23081,14,23.25,20,0.0 +23081,7,30,39,0.0 +23081,68,12.5,32,0.0 +23081,70,15,24,0.0 +23081,9,97,33,0.0 +23081,11,21,37,0.0 +23081,76,18,43,0.0 +23081,24,4.5,20,0.0 +23081,46,12,49,0.0 +23082,34,14,6,0.0 +23083,35,18,20,0.0 +23083,63,43.9,46,0.0 +23083,51,53,8,0.0 +23083,52,7,7,0.0 +23083,61,28.5,25,0.0 +23083,68,12.5,9,0.0 +23083,48,12.75,13,0.0 +23083,24,4.5,31,0.0 +23083,77,13,49,0.0 +23083,46,12,43,0.0 +23083,66,17,34,0.0 +23083,71,21.5,19,0.0 +23083,58,13.25,1,0.0 +23083,76,18,8,0.0 +23083,37,26,5,0.0 +23083,23,9,43,0.0 +23083,64,33.25,16,0.0 +23083,12,38,29,0.0 +23083,26,31.23,32,0.0 +23083,20,81,47,0.0 +23083,70,15,20,0.0 +23083,4,22,33,0.0 +23083,15,15.5,1,0.0 +23083,44,19.45,34,0.0 +23083,67,14,33,0.0 +23083,18,62.5,46,0.0 +23083,5,21.35,35,0.0 +23083,45,9.5,37,0.0 +23083,57,19.5,8,0.0 +23083,40,18.4,47,0.0 +23083,1,18,12,0.0 +23083,33,2.5,10,0.0 +23083,32,32,17,0.0 +23083,74,10,1,0.0 +23083,10,31,49,0.0 +23083,42,14,15,0.0 +23083,43,46,20,0.0 +23083,17,39,49,0.0 +23083,59,55,6,0.0 +23083,3,10,22,0.0 +23083,13,6,14,0.0 +23083,54,7.45,3,0.0 +23083,7,30,16,0.0 +23083,53,32.8,1,0.0 +23084,56,38,49,0.0 +23084,13,6,43,0.0 +23084,45,9.5,45,0.0 +23084,65,21.05,3,0.0 +23084,57,19.5,12,0.0 +23084,66,17,30,0.0 +23084,23,9,24,0.0 +23084,39,18,1,0.0 +23084,43,46,4,0.0 +23084,14,23.25,26,0.0 +23084,37,26,3,0.0 +23084,22,21,22,0.0 +23084,20,81,50,0.0 +23084,18,62.5,10,0.0 +23084,74,10,31,0.0 +23084,48,12.75,11,0.0 +23084,28,45.6,6,0.0 +23084,46,12,43,0.0 +23084,60,34,35,0.0 +23084,12,38,22,0.0 +23084,31,12.5,10,0.0 +23084,30,25.89,5,0.0 +23085,54,7.45,35,0.0 +23085,29,123.79,11,0.0 +23085,12,38,35,0.0 +23085,5,21.35,17,0.0 +23085,32,32,45,0.0 +23085,73,15,35,0.0 +23085,48,12.75,17,0.0 +23085,15,15.5,10,0.0 +23085,11,21,24,0.0 +23085,23,9,49,0.0 +23085,45,9.5,44,0.0 +23085,7,30,10,0.0 +23085,56,38,12,0.0 +23085,51,53,30,0.0 +23085,58,13.25,29,0.0 +23085,55,24,11,0.0 +23085,33,2.5,30,0.0 +23085,52,7,20,0.0 +23086,28,45.6,28,0.0 +23086,76,18,31,0.0 +23086,37,26,12,0.0 +23087,44,19.45,20,0.0 +23087,57,19.5,12,0.0 +23087,50,16.25,44,0.0 +23087,23,9,21,0.0 +23087,46,12,23,0.0 +23087,71,21.5,2,0.0 +23087,30,25.89,41,0.0 +23087,41,9.65,28,0.0 +23087,37,26,11,0.0 +23087,68,12.5,8,0.0 +23087,35,18,46,0.0 +23087,27,43.9,28,0.0 +23087,3,10,40,0.0 +23087,65,21.05,3,0.0 +23087,25,14,3,0.0 +23087,2,19,25,0.0 +23087,48,12.75,12,0.0 +23087,28,45.6,27,0.0 +23087,63,43.9,37,0.0 +23087,4,22,16,0.0 +23087,59,55,22,0.0 +23087,32,32,27,0.0 +23087,74,10,18,0.0 +23087,10,31,31,0.0 +23087,22,21,22,0.0 +23087,53,32.8,33,0.0 +23087,21,10,28,0.0 +23087,73,15,13,0.0 +23087,76,18,40,0.0 +23087,45,9.5,34,0.0 +23087,58,13.25,15,0.0 +23087,75,7.75,35,0.0 +23087,51,53,27,0.0 +23087,67,14,41,0.0 +23087,15,15.5,47,0.0 +23087,72,34.8,36,0.0 +23087,12,38,10,0.0 +23087,7,30,37,0.0 +23087,29,123.79,16,0.0 +23087,19,9.2,19,0.0 +23087,33,2.5,14,0.0 +23087,42,14,42,0.0 +23087,31,12.5,34,0.0 +23087,69,36,21,0.0 +23087,39,18,18,0.0 +23087,34,14,11,0.0 +23087,14,23.25,15,0.0 +23087,5,21.35,29,0.0 +23087,11,21,10,0.0 +23087,20,81,32,0.0 +23087,66,17,15,0.0 +23087,60,34,19,0.0 +23087,40,18.4,23,0.0 +23087,49,20,30,0.0 +23088,51,53,5,0.0 +23088,37,26,7,0.0 +23088,47,9.5,11,0.0 +23088,38,263.5,38,0.0 +23088,19,9.2,5,0.0 +23088,18,62.5,40,0.0 +23088,67,14,14,0.0 +23088,24,4.5,41,0.0 +23088,39,18,50,0.0 +23088,12,38,30,0.0 +23088,74,10,46,0.0 +23088,43,46,18,0.0 +23088,27,43.9,13,0.0 +23088,36,19,4,0.0 +23088,59,55,16,0.0 +23088,46,12,12,0.0 +23088,20,81,29,0.0 +23088,35,18,42,0.0 +23088,66,17,20,0.0 +23088,57,19.5,44,0.0 +23088,29,123.79,32,0.0 +23088,45,9.5,38,0.0 +23088,30,25.89,22,0.0 +23089,68,12.5,47,0.0 +23089,64,33.25,25,0.0 +23089,71,21.5,27,0.0 +23089,67,14,12,0.0 +23089,60,34,40,0.0 +23089,12,38,39,0.0 +23089,76,18,36,0.0 +23089,8,40,38,0.0 +23089,77,13,44,0.0 +23089,29,123.79,21,0.0 +23089,5,21.35,15,0.0 +23089,26,31.23,34,0.0 +23089,23,9,3,0.0 +23089,32,32,22,0.0 +23089,53,32.8,21,0.0 +23089,38,263.5,20,0.0 +23089,31,12.5,12,0.0 +23089,58,13.25,4,0.0 +23089,52,7,8,0.0 +23089,9,97,6,0.0 +23089,43,46,43,0.0 +23089,11,21,4,0.0 +23089,4,22,45,0.0 +23089,22,21,21,0.0 +23089,2,19,8,0.0 +23089,7,30,16,0.0 +23089,75,7.75,25,0.0 +23089,69,36,27,0.0 +23089,25,14,11,0.0 +23089,21,10,40,0.0 +23089,36,19,30,0.0 +23089,47,9.5,35,0.0 +23089,55,24,40,0.0 +23089,3,10,2,0.0 +23089,56,38,44,0.0 +23089,40,18.4,16,0.0 +23089,54,7.45,40,0.0 +23089,50,16.25,28,0.0 +23089,20,81,13,0.0 +23089,66,17,48,0.0 +23089,57,19.5,36,0.0 +23089,48,12.75,6,0.0 +23089,72,34.8,41,0.0 +23089,19,9.2,34,0.0 +23089,1,18,2,0.0 +23089,16,17.45,8,0.0 +23090,77,13,30,0.0 +23090,42,14,23,0.0 +23090,73,15,24,0.0 +23090,5,21.35,8,0.0 +23090,40,18.4,1,0.0 +23090,29,123.79,18,0.0 +23090,50,16.25,47,0.0 +23090,19,9.2,29,0.0 +23090,7,30,25,0.0 +23090,62,49.3,6,0.0 +23090,70,15,37,0.0 +23090,63,43.9,5,0.0 +23090,18,62.5,34,0.0 +23090,35,18,22,0.0 +23090,75,7.75,30,0.0 +23090,67,14,27,0.0 +23090,64,33.25,3,0.0 +23090,24,4.5,12,0.0 +23090,33,2.5,47,0.0 +23090,52,7,4,0.0 +23090,10,31,13,0.0 +23090,2,19,41,0.0 +23090,17,39,49,0.0 +23090,65,21.05,17,0.0 +23090,47,9.5,41,0.0 +23090,4,22,32,0.0 +23090,16,17.45,15,0.0 +23090,59,55,15,0.0 +23090,71,21.5,19,0.0 +23090,76,18,17,0.0 +23090,51,53,29,0.0 +23090,74,10,3,0.0 +23090,54,7.45,33,0.0 +23090,68,12.5,34,0.0 +23090,6,25,11,0.0 +23090,41,9.65,46,0.0 +23091,2,19,11,0.0 +23091,4,22,1,0.0 +23091,6,25,28,0.0 +23091,12,38,19,0.0 +23091,76,18,42,0.0 +23091,68,12.5,28,0.0 +23091,56,38,14,0.0 +23091,32,32,7,0.0 +23091,27,43.9,50,0.0 +23091,50,16.25,37,0.0 +23091,28,45.6,16,0.0 +23091,67,14,31,0.0 +23091,47,9.5,28,0.0 +23091,70,15,20,0.0 +23091,48,12.75,2,0.0 +23091,53,32.8,45,0.0 +23091,58,13.25,12,0.0 +23091,55,24,27,0.0 +23091,19,9.2,20,0.0 +23091,34,14,31,0.0 +23091,45,9.5,3,0.0 +23091,74,10,19,0.0 +23091,36,19,30,0.0 +23091,11,21,44,0.0 +23091,77,13,40,0.0 +23091,33,2.5,1,0.0 +23091,65,21.05,27,0.0 +23091,8,40,25,0.0 +23091,17,39,10,0.0 +23091,60,34,1,0.0 +23091,9,97,33,0.0 +23091,5,21.35,8,0.0 +23091,39,18,15,0.0 +23091,40,18.4,2,0.0 +23091,42,14,9,0.0 +23091,31,12.5,27,0.0 +23091,72,34.8,27,0.0 +23091,69,36,21,0.0 +23091,73,15,33,0.0 +23091,16,17.45,24,0.0 +23091,38,263.5,37,0.0 +23091,24,4.5,23,0.0 +23091,20,81,25,0.0 +23091,66,17,15,0.0 +23091,51,53,40,0.0 +23091,75,7.75,47,0.0 +23091,21,10,23,0.0 +23091,26,31.23,4,0.0 +23091,64,33.25,42,0.0 +23091,43,46,27,0.0 +23091,71,21.5,2,0.0 +23091,3,10,22,0.0 +23091,52,7,33,0.0 +23091,61,28.5,27,0.0 +23091,22,21,40,0.0 +23091,57,19.5,26,0.0 +23091,37,26,11,0.0 +23091,30,25.89,6,0.0 +23092,61,28.5,39,0.0 +23092,37,26,33,0.0 +23092,39,18,7,0.0 +23092,47,9.5,24,0.0 +23092,64,33.25,32,0.0 +23092,51,53,45,0.0 +23092,4,22,36,0.0 +23092,44,19.45,6,0.0 +23092,58,13.25,2,0.0 +23092,42,14,44,0.0 +23092,46,12,32,0.0 +23092,24,4.5,2,0.0 +23092,75,7.75,44,0.0 +23092,69,36,36,0.0 +23092,29,123.79,6,0.0 +23092,3,10,40,0.0 +23092,16,17.45,16,0.0 +23092,40,18.4,8,0.0 +23092,72,34.8,34,0.0 +23092,35,18,33,0.0 +23092,18,62.5,32,0.0 +23092,12,38,1,0.0 +23092,43,46,26,0.0 +23092,48,12.75,38,0.0 +23092,76,18,43,0.0 +23093,19,9.2,27,0.0 +23093,11,21,49,0.0 +23093,36,19,5,0.0 +23093,30,25.89,16,0.0 +23093,33,2.5,44,0.0 +23093,21,10,49,0.0 +23093,6,25,8,0.0 +23094,62,49.3,46,0.0 +23094,12,38,42,0.0 +23094,55,24,24,0.0 +23094,65,21.05,27,0.0 +23094,30,25.89,21,0.0 +23094,60,34,16,0.0 +23094,51,53,45,0.0 +23095,26,31.23,48,0.0 +23095,31,12.5,11,0.0 +23095,17,39,42,0.0 +23095,47,9.5,11,0.0 +23095,52,7,39,0.0 +23095,34,14,18,0.0 +23095,74,10,6,0.0 +23095,51,53,11,0.0 +23095,36,19,49,0.0 +23095,38,263.5,3,0.0 +23095,59,55,21,0.0 +23095,55,24,46,0.0 +23095,20,81,6,0.0 +23095,73,15,15,0.0 +23095,14,23.25,16,0.0 +23095,54,7.45,3,0.0 +23095,22,21,27,0.0 +23095,76,18,8,0.0 +23095,42,14,18,0.0 +23095,33,2.5,23,0.0 +23095,46,12,26,0.0 +23095,29,123.79,6,0.0 +23095,50,16.25,11,0.0 +23095,4,22,19,0.0 +23095,45,9.5,41,0.0 +23095,27,43.9,50,0.0 +23095,12,38,42,0.0 +23095,15,15.5,29,0.0 +23095,5,21.35,35,0.0 +23095,63,43.9,13,0.0 +23095,19,9.2,2,0.0 +23095,67,14,43,0.0 +23095,18,62.5,31,0.0 +23095,10,31,5,0.0 +23095,58,13.25,39,0.0 +23095,61,28.5,19,0.0 +23095,48,12.75,32,0.0 +23095,35,18,41,0.0 +23095,69,36,5,0.0 +23095,39,18,49,0.0 +23095,62,49.3,33,0.0 +23095,57,19.5,20,0.0 +23095,40,18.4,50,0.0 +23095,66,17,4,0.0 +23095,49,20,48,0.0 +23095,60,34,39,0.0 +23095,13,6,40,0.0 +23095,8,40,16,0.0 +23095,64,33.25,16,0.0 +23095,30,25.89,28,0.0 +23095,77,13,44,0.0 +23095,23,9,5,0.0 +23095,28,45.6,46,0.0 +23095,32,32,34,0.0 +23095,44,19.45,18,0.0 +23095,70,15,16,0.0 +23095,24,4.5,14,0.0 +23095,16,17.45,46,0.0 +23095,41,9.65,49,0.0 +23095,65,21.05,30,0.0 +23095,9,97,27,0.0 +23095,21,10,39,0.0 +23095,43,46,27,0.0 +23095,75,7.75,11,0.0 +23095,2,19,16,0.0 +23095,72,34.8,5,0.0 +23095,3,10,2,0.0 +23095,71,21.5,21,0.0 +23095,53,32.8,13,0.0 +23096,36,19,13,0.0 +23096,25,14,12,0.0 +23096,18,62.5,19,0.0 +23096,71,21.5,36,0.0 +23096,15,15.5,3,0.0 +23096,60,34,22,0.0 +23096,74,10,14,0.0 +23096,40,18.4,38,0.0 +23096,30,25.89,50,0.0 +23096,21,10,42,0.0 +23096,44,19.45,1,0.0 +23096,1,18,2,0.0 +23096,70,15,22,0.0 +23096,53,32.8,39,0.0 +23096,31,12.5,28,0.0 +23096,68,12.5,24,0.0 +23096,43,46,10,0.0 +23096,5,21.35,15,0.0 +23096,56,38,36,0.0 +23096,52,7,4,0.0 +23096,33,2.5,37,0.0 +23096,58,13.25,30,0.0 +23096,77,13,27,0.0 +23096,13,6,35,0.0 +23096,28,45.6,9,0.0 +23096,51,53,2,0.0 +23096,35,18,34,0.0 +23096,73,15,49,0.0 +23096,47,9.5,32,0.0 +23096,62,49.3,42,0.0 +23096,63,43.9,25,0.0 +23096,19,9.2,31,0.0 +23096,38,263.5,34,0.0 +23096,75,7.75,4,0.0 +23096,49,20,13,0.0 +23096,20,81,26,0.0 +23096,54,7.45,50,0.0 +23096,29,123.79,45,0.0 +23096,59,55,17,0.0 +23096,69,36,39,0.0 +23096,34,14,3,0.0 +23096,7,30,4,0.0 +23096,42,14,44,0.0 +23096,66,17,31,0.0 +23096,65,21.05,9,0.0 +23096,16,17.45,13,0.0 +23096,37,26,41,0.0 +23096,32,32,36,0.0 +23096,9,97,26,0.0 +23096,64,33.25,10,0.0 +23096,76,18,22,0.0 +23096,4,22,14,0.0 +23096,46,12,38,0.0 +23096,61,28.5,33,0.0 +23096,50,16.25,30,0.0 +23097,58,13.25,19,0.0 +23097,40,18.4,1,0.0 +23097,21,10,48,0.0 +23097,53,32.8,16,0.0 +23097,2,19,23,0.0 +23097,38,263.5,23,0.0 +23097,9,97,42,0.0 +23097,42,14,39,0.0 +23097,64,33.25,1,0.0 +23097,77,13,8,0.0 +23097,31,12.5,46,0.0 +23097,69,36,44,0.0 +23097,30,25.89,40,0.0 +23097,37,26,31,0.0 +23097,22,21,49,0.0 +23097,25,14,2,0.0 +23097,65,21.05,17,0.0 +23097,6,25,3,0.0 +23097,18,62.5,37,0.0 +23097,76,18,17,0.0 +23097,12,38,35,0.0 +23097,1,18,18,0.0 +23097,48,12.75,35,0.0 +23097,60,34,41,0.0 +23097,20,81,13,0.0 +23097,29,123.79,37,0.0 +23097,72,34.8,28,0.0 +23097,33,2.5,23,0.0 +23097,46,12,8,0.0 +23097,13,6,24,0.0 +23097,16,17.45,29,0.0 +23097,11,21,19,0.0 +23097,62,49.3,48,0.0 +23097,74,10,9,0.0 +23097,39,18,33,0.0 +23097,35,18,27,0.0 +23097,56,38,29,0.0 +23097,10,31,43,0.0 +23097,14,23.25,25,0.0 +23097,47,9.5,4,0.0 +23097,32,32,35,0.0 +23097,3,10,22,0.0 +23097,59,55,33,0.0 +23097,57,19.5,38,0.0 +23097,73,15,7,0.0 +23097,75,7.75,13,0.0 +23097,45,9.5,6,0.0 +23097,8,40,4,0.0 +23098,72,34.8,8,0.0 +23098,23,9,5,0.0 +23098,57,19.5,36,0.0 +23098,14,23.25,5,0.0 +23098,60,34,47,0.0 +23098,68,12.5,45,0.0 +23098,43,46,20,0.0 +23098,76,18,29,0.0 +23098,45,9.5,1,0.0 +23098,31,12.5,32,0.0 +23098,15,15.5,17,0.0 +23098,56,38,6,0.0 +23098,2,19,13,0.0 +23098,64,33.25,13,0.0 +23098,73,15,7,0.0 +23098,13,6,38,0.0 +23098,35,18,28,0.0 +23099,38,263.5,39,0.0 +23099,16,17.45,32,0.0 +23099,68,12.5,32,0.0 +23099,75,7.75,12,0.0 +23099,14,23.25,4,0.0 +23100,17,39,14,0.0 +23100,46,12,19,0.0 +23100,43,46,42,0.0 +23100,57,19.5,21,0.0 +23100,6,25,39,0.0 +23100,67,14,28,0.0 +23100,4,22,18,0.0 +23100,40,18.4,5,0.0 +23100,39,18,48,0.0 +23100,18,62.5,36,0.0 +23100,70,15,6,0.0 +23100,26,31.23,6,0.0 +23100,19,9.2,33,0.0 +23100,33,2.5,19,0.0 +23100,14,23.25,25,0.0 +23100,76,18,3,0.0 +23100,16,17.45,49,0.0 +23100,37,26,39,0.0 +23100,71,21.5,16,0.0 +23100,1,18,2,0.0 +23100,41,9.65,49,0.0 +23100,55,24,39,0.0 +23100,59,55,11,0.0 +23100,13,6,12,0.0 +23100,49,20,12,0.0 +23100,61,28.5,41,0.0 +23100,63,43.9,12,0.0 +23100,3,10,25,0.0 +23100,15,15.5,28,0.0 +23100,7,30,47,0.0 +23100,8,40,50,0.0 +23100,54,7.45,43,0.0 +23100,74,10,44,0.0 +23100,69,36,2,0.0 +23100,34,14,6,0.0 +23100,66,17,17,0.0 +23100,30,25.89,16,0.0 +23100,11,21,34,0.0 +23100,38,263.5,26,0.0 +23100,65,21.05,5,0.0 +23100,64,33.25,29,0.0 +23101,56,38,50,0.0 +23101,6,25,38,0.0 +23101,39,18,30,0.0 +23101,33,2.5,20,0.0 +23101,49,20,37,0.0 +23101,65,21.05,14,0.0 +23101,67,14,19,0.0 +23101,71,21.5,18,0.0 +23101,14,23.25,41,0.0 +23101,73,15,9,0.0 +23101,69,36,43,0.0 +23101,2,19,44,0.0 +23101,77,13,9,0.0 +23101,23,9,33,0.0 +23101,68,12.5,22,0.0 +23101,74,10,35,0.0 +23101,18,62.5,9,0.0 +23101,21,10,11,0.0 +23101,27,43.9,35,0.0 +23101,16,17.45,23,0.0 +23101,3,10,46,0.0 +23101,62,49.3,8,0.0 +23101,46,12,42,0.0 +23101,50,16.25,36,0.0 +23101,60,34,3,0.0 +23101,47,9.5,40,0.0 +23101,22,21,41,0.0 +23101,72,34.8,18,0.0 +23101,25,14,5,0.0 +23101,40,18.4,27,0.0 +23101,15,15.5,30,0.0 +23101,29,123.79,31,0.0 +23101,75,7.75,3,0.0 +23101,55,24,41,0.0 +23101,13,6,34,0.0 +23101,59,55,31,0.0 +23101,51,53,12,0.0 +23101,28,45.6,49,0.0 +23101,45,9.5,36,0.0 +23101,48,12.75,23,0.0 +23101,35,18,21,0.0 +23101,63,43.9,11,0.0 +23101,1,18,41,0.0 +23101,17,39,41,0.0 +23101,10,31,27,0.0 +23101,7,30,49,0.0 +23101,31,12.5,16,0.0 +23101,70,15,6,0.0 +23101,24,4.5,29,0.0 +23101,19,9.2,43,0.0 +23101,37,26,29,0.0 +23101,43,46,45,0.0 +23101,44,19.45,16,0.0 +23101,66,17,15,0.0 +23101,32,32,33,0.0 +23101,11,21,45,0.0 +23101,20,81,13,0.0 +23101,53,32.8,44,0.0 +23101,30,25.89,6,0.0 +23101,57,19.5,33,0.0 +23101,8,40,22,0.0 +23101,34,14,15,0.0 +23101,4,22,27,0.0 +23101,64,33.25,37,0.0 +23101,52,7,5,0.0 +23101,58,13.25,30,0.0 +23101,42,14,42,0.0 +23101,26,31.23,40,0.0 +23101,41,9.65,26,0.0 +23101,76,18,9,0.0 +23101,5,21.35,32,0.0 +23101,38,263.5,36,0.0 +23101,61,28.5,33,0.0 +23101,36,19,24,0.0 +23101,9,97,48,0.0 +23102,71,21.5,45,0.0 +23102,67,14,6,0.0 +23102,63,43.9,45,0.0 +23102,21,10,22,0.0 +23102,6,25,5,0.0 +23102,31,12.5,23,0.0 +23102,9,97,35,0.0 +23102,22,21,21,0.0 +23102,5,21.35,14,0.0 +23102,23,9,3,0.0 +23102,2,19,8,0.0 +23102,13,6,39,0.0 +23102,69,36,11,0.0 +23102,26,31.23,49,0.0 +23102,32,32,34,0.0 +23102,55,24,21,0.0 +23102,3,10,47,0.0 +23102,49,20,27,0.0 +23102,56,38,25,0.0 +23102,38,263.5,17,0.0 +23102,14,23.25,4,0.0 +23102,33,2.5,5,0.0 +23102,72,34.8,31,0.0 +23102,4,22,45,0.0 +23102,40,18.4,39,0.0 +23102,1,18,37,0.0 +23102,52,7,36,0.0 +23102,74,10,13,0.0 +23102,34,14,10,0.0 +23102,12,38,22,0.0 +23102,46,12,27,0.0 +23102,28,45.6,18,0.0 +23102,29,123.79,18,0.0 +23102,54,7.45,39,0.0 +23102,18,62.5,19,0.0 +23102,65,21.05,43,0.0 +23102,64,33.25,1,0.0 +23102,53,32.8,24,0.0 +23102,45,9.5,16,0.0 +23102,47,9.5,19,0.0 +23102,48,12.75,28,0.0 +23102,25,14,49,0.0 +23102,50,16.25,10,0.0 +23102,58,13.25,41,0.0 +23102,77,13,18,0.0 +23102,70,15,40,0.0 +23102,19,9.2,38,0.0 +23102,68,12.5,3,0.0 +23102,44,19.45,17,0.0 +23102,24,4.5,46,0.0 +23102,43,46,4,0.0 +23102,17,39,20,0.0 +23102,11,21,49,0.0 +23102,35,18,43,0.0 +23102,36,19,49,0.0 +23103,69,36,17,0.0 +23103,55,24,3,0.0 +23103,73,15,5,0.0 +23103,51,53,38,0.0 +23103,29,123.79,11,0.0 +23103,4,22,36,0.0 +23103,63,43.9,49,0.0 +23103,16,17.45,33,0.0 +23104,30,25.89,38,0.0 +23104,49,20,2,0.0 +23104,24,4.5,40,0.0 +23104,58,13.25,28,0.0 +23104,33,2.5,18,0.0 +23104,67,14,26,0.0 +23104,29,123.79,3,0.0 +23104,41,9.65,9,0.0 +23104,46,12,12,0.0 +23104,48,12.75,42,0.0 +23104,31,12.5,37,0.0 +23104,73,15,20,0.0 +23104,66,17,33,0.0 +23104,37,26,13,0.0 +23104,6,25,35,0.0 +23104,65,21.05,9,0.0 +23104,20,81,13,0.0 +23104,3,10,25,0.0 +23104,56,38,38,0.0 +23104,76,18,41,0.0 +23104,4,22,1,0.0 +23104,18,62.5,35,0.0 +23104,32,32,37,0.0 +23104,60,34,6,0.0 +23104,16,17.45,25,0.0 +23104,54,7.45,34,0.0 +23104,26,31.23,45,0.0 +23104,55,24,19,0.0 +23104,22,21,28,0.0 +23104,14,23.25,1,0.0 +23104,35,18,50,0.0 +23104,15,15.5,32,0.0 +23104,7,30,12,0.0 +23104,38,263.5,23,0.0 +23104,40,18.4,32,0.0 +23104,70,15,42,0.0 +23104,8,40,14,0.0 +23104,5,21.35,41,0.0 +23104,74,10,38,0.0 +23104,10,31,6,0.0 +23104,1,18,24,0.0 +23104,28,45.6,8,0.0 +23104,59,55,1,0.0 +23104,50,16.25,19,0.0 +23104,12,38,43,0.0 +23104,72,34.8,41,0.0 +23104,44,19.45,7,0.0 +23104,45,9.5,18,0.0 +23104,47,9.5,23,0.0 +23104,27,43.9,33,0.0 +23104,11,21,20,0.0 +23104,25,14,44,0.0 +23104,42,14,39,0.0 +23104,57,19.5,12,0.0 +23104,43,46,15,0.0 +23104,36,19,50,0.0 +23104,13,6,24,0.0 +23104,68,12.5,43,0.0 +23104,34,14,24,0.0 +23104,51,53,45,0.0 +23104,75,7.75,32,0.0 +23104,62,49.3,17,0.0 +23104,17,39,47,0.0 +23105,17,39,1,0.0 +23105,58,13.25,45,0.0 +23105,9,97,33,0.0 +23105,45,9.5,7,0.0 +23105,7,30,39,0.0 +23105,38,263.5,22,0.0 +23105,39,18,34,0.0 +23105,22,21,4,0.0 +23105,59,55,49,0.0 +23105,73,15,4,0.0 +23105,8,40,45,0.0 +23105,20,81,32,0.0 +23105,36,19,15,0.0 +23105,2,19,1,0.0 +23105,54,7.45,20,0.0 +23105,74,10,20,0.0 +23105,71,21.5,34,0.0 +23105,24,4.5,30,0.0 +23105,46,12,50,0.0 +23105,68,12.5,45,0.0 +23105,60,34,15,0.0 +23105,66,17,3,0.0 +23105,5,21.35,35,0.0 +23105,30,25.89,25,0.0 +23105,21,10,7,0.0 +23105,31,12.5,17,0.0 +23105,47,9.5,4,0.0 +23105,12,38,36,0.0 +23105,42,14,47,0.0 +23105,69,36,33,0.0 +23105,51,53,4,0.0 +23105,25,14,9,0.0 +23105,70,15,16,0.0 +23105,40,18.4,46,0.0 +23105,44,19.45,29,0.0 +23105,26,31.23,21,0.0 +23105,15,15.5,10,0.0 +23105,33,2.5,28,0.0 +23105,48,12.75,24,0.0 +23105,6,25,9,0.0 +23105,16,17.45,21,0.0 +23105,43,46,48,0.0 +23106,8,40,49,0.0 +23106,64,33.25,19,0.0 +23106,51,53,13,0.0 +23106,53,32.8,27,0.0 +23106,60,34,1,0.0 +23106,29,123.79,6,0.0 +23106,7,30,35,0.0 +23106,19,9.2,38,0.0 +23106,70,15,1,0.0 +23106,23,9,41,0.0 +23106,67,14,38,0.0 +23106,56,38,17,0.0 +23106,74,10,36,0.0 +23106,47,9.5,48,0.0 +23106,48,12.75,28,0.0 +23106,35,18,43,0.0 +23106,20,81,22,0.0 +23106,46,12,11,0.0 +23106,49,20,34,0.0 +23106,38,263.5,42,0.0 +23106,43,46,28,0.0 +23106,25,14,22,0.0 +23106,37,26,1,0.0 +23106,76,18,3,0.0 +23106,12,38,41,0.0 +23106,5,21.35,32,0.0 +23106,59,55,38,0.0 +23106,66,17,46,0.0 +23106,16,17.45,24,0.0 +23106,17,39,13,0.0 +23106,4,22,5,0.0 +23106,30,25.89,18,0.0 +23106,26,31.23,33,0.0 +23106,10,31,11,0.0 +23106,68,12.5,45,0.0 +23106,31,12.5,12,0.0 +23106,75,7.75,13,0.0 +23106,55,24,43,0.0 +23106,36,19,21,0.0 +23106,9,97,22,0.0 +23106,63,43.9,24,0.0 +23106,61,28.5,27,0.0 +23106,65,21.05,43,0.0 +23106,28,45.6,22,0.0 +23106,40,18.4,11,0.0 +23106,69,36,30,0.0 +23106,54,7.45,32,0.0 +23106,15,15.5,25,0.0 +23106,44,19.45,11,0.0 +23106,50,16.25,20,0.0 +23106,52,7,30,0.0 +23106,13,6,9,0.0 +23106,77,13,20,0.0 +23106,14,23.25,6,0.0 +23106,45,9.5,16,0.0 +23106,33,2.5,21,0.0 +23106,6,25,20,0.0 +23106,71,21.5,43,0.0 +23106,3,10,43,0.0 +23106,1,18,40,0.0 +23106,11,21,49,0.0 +23106,22,21,23,0.0 +23106,2,19,47,0.0 +23106,57,19.5,12,0.0 +23106,34,14,16,0.0 +23106,21,10,24,0.0 +23106,42,14,21,0.0 +23107,24,4.5,21,0.0 +23107,40,18.4,29,0.0 +23107,41,9.65,2,0.0 +23107,23,9,49,0.0 +23107,27,43.9,21,0.0 +23107,11,21,25,0.0 +23107,68,12.5,31,0.0 +23107,57,19.5,25,0.0 +23107,28,45.6,20,0.0 +23107,60,34,5,0.0 +23107,54,7.45,34,0.0 +23107,29,123.79,6,0.0 +23107,58,13.25,39,0.0 +23107,39,18,18,0.0 +23107,52,7,35,0.0 +23107,1,18,32,0.0 +23107,20,81,43,0.0 +23107,65,21.05,1,0.0 +23108,25,14,22,0.0 +23108,65,21.05,31,0.0 +23108,64,33.25,2,0.0 +23108,8,40,23,0.0 +23108,27,43.9,34,0.0 +23108,30,25.89,36,0.0 +23108,10,31,10,0.0 +23108,20,81,26,0.0 +23108,24,4.5,32,0.0 +23108,74,10,47,0.0 +23108,50,16.25,47,0.0 +23108,41,9.65,49,0.0 +23108,7,30,27,0.0 +23108,62,49.3,22,0.0 +23108,52,7,3,0.0 +23108,66,17,3,0.0 +23108,54,7.45,12,0.0 +23108,13,6,11,0.0 +23108,39,18,45,0.0 +23108,36,19,1,0.0 +23108,49,20,30,0.0 +23108,37,26,50,0.0 +23108,6,25,47,0.0 +23108,67,14,45,0.0 +23108,71,21.5,26,0.0 +23108,69,36,22,0.0 +23109,75,7.75,14,0.0 +23109,61,28.5,49,0.0 +23109,31,12.5,7,0.0 +23109,32,32,17,0.0 +23109,47,9.5,24,0.0 +23109,71,21.5,43,0.0 +23109,21,10,47,0.0 +23109,27,43.9,10,0.0 +23110,56,38,15,0.0 +23110,32,32,2,0.0 +23110,62,49.3,6,0.0 +23110,75,7.75,41,0.0 +23110,25,14,39,0.0 +23110,45,9.5,43,0.0 +23110,43,46,9,0.0 +23110,34,14,10,0.0 +23110,15,15.5,4,0.0 +23110,74,10,40,0.0 +23110,67,14,41,0.0 +23110,9,97,27,0.0 +23110,52,7,17,0.0 +23110,44,19.45,5,0.0 +23110,57,19.5,12,0.0 +23110,76,18,50,0.0 +23110,19,9.2,27,0.0 +23110,8,40,25,0.0 +23110,73,15,9,0.0 +23110,29,123.79,50,0.0 +23110,71,21.5,48,0.0 +23110,12,38,38,0.0 +23110,28,45.6,21,0.0 +23110,50,16.25,21,0.0 +23110,30,25.89,35,0.0 +23110,40,18.4,43,0.0 +23110,65,21.05,36,0.0 +23110,66,17,40,0.0 +23110,61,28.5,42,0.0 +23110,68,12.5,38,0.0 +23110,41,9.65,43,0.0 +23110,2,19,10,0.0 +23110,42,14,40,0.0 +23110,1,18,9,0.0 +23110,24,4.5,5,0.0 +23110,60,34,14,0.0 +23110,69,36,24,0.0 +23110,38,263.5,44,0.0 +23110,27,43.9,27,0.0 +23110,48,12.75,25,0.0 +23110,16,17.45,17,0.0 +23110,55,24,6,0.0 +23110,47,9.5,31,0.0 +23110,18,62.5,24,0.0 +23110,53,32.8,9,0.0 +23110,64,33.25,21,0.0 +23110,20,81,36,0.0 +23110,51,53,37,0.0 +23110,5,21.35,11,0.0 +23110,54,7.45,18,0.0 +23110,6,25,45,0.0 +23110,59,55,45,0.0 +23110,21,10,45,0.0 +23110,35,18,14,0.0 +23110,63,43.9,16,0.0 +23111,32,32,21,0.0 +23111,7,30,48,0.0 +23111,59,55,2,0.0 +23111,40,18.4,24,0.0 +23111,20,81,20,0.0 +23111,6,25,30,0.0 +23111,35,18,22,0.0 +23111,3,10,22,0.0 +23111,34,14,39,0.0 +23111,44,19.45,40,0.0 +23111,55,24,16,0.0 +23111,57,19.5,42,0.0 +23111,26,31.23,47,0.0 +23111,65,21.05,45,0.0 +23111,21,10,6,0.0 +23111,18,62.5,17,0.0 +23111,28,45.6,17,0.0 +23111,5,21.35,26,0.0 +23111,68,12.5,25,0.0 +23111,22,21,46,0.0 +23111,1,18,50,0.0 +23111,75,7.75,8,0.0 +23111,31,12.5,37,0.0 +23111,51,53,40,0.0 +23111,19,9.2,39,0.0 +23111,42,14,45,0.0 +23111,69,36,42,0.0 +23111,54,7.45,7,0.0 +23111,37,26,5,0.0 +23111,45,9.5,25,0.0 +23111,71,21.5,50,0.0 +23111,29,123.79,38,0.0 +23111,4,22,25,0.0 +23111,63,43.9,18,0.0 +23111,64,33.25,36,0.0 +23111,14,23.25,28,0.0 +23111,41,9.65,11,0.0 +23111,43,46,24,0.0 +23111,66,17,17,0.0 +23111,61,28.5,47,0.0 +23111,25,14,45,0.0 +23111,52,7,2,0.0 +23111,77,13,17,0.0 +23111,24,4.5,31,0.0 +23111,49,20,23,0.0 +23111,62,49.3,16,0.0 +23111,15,15.5,29,0.0 +23111,50,16.25,41,0.0 +23111,10,31,7,0.0 +23111,76,18,9,0.0 +23111,74,10,34,0.0 +23111,17,39,1,0.0 +23111,11,21,30,0.0 +23111,23,9,47,0.0 +23111,13,6,16,0.0 +23111,39,18,24,0.0 +23111,67,14,20,0.0 +23111,8,40,45,0.0 +23111,12,38,7,0.0 +23111,38,263.5,6,0.0 +23111,9,97,32,0.0 +23111,2,19,49,0.0 +23111,56,38,39,0.0 +23111,33,2.5,5,0.0 +23111,58,13.25,30,0.0 +23111,36,19,37,0.0 +23111,73,15,33,0.0 +23111,27,43.9,35,0.0 +23111,53,32.8,14,0.0 +23111,60,34,31,0.0 +23112,64,33.25,34,0.0 +23112,11,21,16,0.0 +23112,26,31.23,18,0.0 +23112,56,38,26,0.0 +23112,6,25,46,0.0 +23112,55,24,38,0.0 +23112,22,21,50,0.0 +23112,30,25.89,39,0.0 +23112,5,21.35,27,0.0 +23112,70,15,36,0.0 +23112,32,32,15,0.0 +23112,31,12.5,36,0.0 +23112,52,7,7,0.0 +23112,44,19.45,3,0.0 +23112,62,49.3,31,0.0 +23112,58,13.25,35,0.0 +23112,61,28.5,40,0.0 +23112,76,18,5,0.0 +23112,25,14,20,0.0 +23112,69,36,33,0.0 +23112,42,14,3,0.0 +23112,12,38,34,0.0 +23112,4,22,15,0.0 +23112,33,2.5,44,0.0 +23112,49,20,7,0.0 +23112,18,62.5,25,0.0 +23112,40,18.4,3,0.0 +23112,74,10,31,0.0 +23112,29,123.79,29,0.0 +23112,1,18,48,0.0 +23112,23,9,14,0.0 +23112,51,53,12,0.0 +23112,36,19,42,0.0 +23112,16,17.45,15,0.0 +23112,41,9.65,49,0.0 +23112,39,18,37,0.0 +23112,35,18,7,0.0 +23112,65,21.05,26,0.0 +23112,57,19.5,37,0.0 +23112,77,13,47,0.0 +23112,20,81,4,0.0 +23112,28,45.6,34,0.0 +23112,38,263.5,43,0.0 +23112,24,4.5,3,0.0 +23112,75,7.75,8,0.0 +23112,50,16.25,37,0.0 +23112,46,12,16,0.0 +23112,43,46,23,0.0 +23112,47,9.5,46,0.0 +23112,14,23.25,33,0.0 +23112,54,7.45,11,0.0 +23112,71,21.5,28,0.0 +23112,37,26,15,0.0 +23113,72,34.8,18,0.0 +23113,23,9,37,0.0 +23113,12,38,3,0.0 +23114,63,43.9,39,0.0 +23114,48,12.75,25,0.0 +23114,37,26,32,0.0 +23114,54,7.45,18,0.0 +23114,61,28.5,11,0.0 +23114,42,14,39,0.0 +23114,72,34.8,34,0.0 +23114,51,53,21,0.0 +23114,24,4.5,38,0.0 +23114,40,18.4,25,0.0 +23114,4,22,18,0.0 +23114,55,24,46,0.0 +23114,65,21.05,33,0.0 +23114,16,17.45,50,0.0 +23114,60,34,38,0.0 +23114,71,21.5,40,0.0 +23114,73,15,7,0.0 +23114,31,12.5,29,0.0 +23114,19,9.2,32,0.0 +23114,34,14,23,0.0 +23114,59,55,21,0.0 +23114,38,263.5,35,0.0 +23114,29,123.79,27,0.0 +23114,66,17,4,0.0 +23114,47,9.5,29,0.0 +23114,36,19,45,0.0 +23114,12,38,43,0.0 +23114,67,14,46,0.0 +23114,50,16.25,42,0.0 +23114,30,25.89,34,0.0 +23114,6,25,7,0.0 +23114,25,14,9,0.0 +23115,29,123.79,9,0.0 +23115,26,31.23,14,0.0 +23115,36,19,47,0.0 +23115,77,13,16,0.0 +23115,45,9.5,34,0.0 +23115,76,18,14,0.0 +23115,27,43.9,12,0.0 +23115,16,17.45,37,0.0 +23115,54,7.45,36,0.0 +23115,62,49.3,38,0.0 +23115,46,12,23,0.0 +23115,28,45.6,31,0.0 +23115,70,15,26,0.0 +23115,58,13.25,47,0.0 +23115,25,14,3,0.0 +23115,7,30,35,0.0 +23116,15,15.5,30,0.0 +23116,17,39,31,0.0 +23116,33,2.5,45,0.0 +23116,30,25.89,17,0.0 +23116,63,43.9,12,0.0 +23116,51,53,30,0.0 +23116,38,263.5,49,0.0 +23116,69,36,36,0.0 +23116,42,14,43,0.0 +23116,4,22,13,0.0 +23116,56,38,49,0.0 +23116,60,34,9,0.0 +23116,49,20,41,0.0 +23116,24,4.5,46,0.0 +23116,25,14,35,0.0 +23116,26,31.23,21,0.0 +23116,31,12.5,36,0.0 +23116,74,10,41,0.0 +23116,28,45.6,34,0.0 +23116,54,7.45,4,0.0 +23116,67,14,50,0.0 +23116,61,28.5,25,0.0 +23116,70,15,39,0.0 +23116,46,12,21,0.0 +23116,64,33.25,48,0.0 +23116,41,9.65,50,0.0 +23116,58,13.25,11,0.0 +23117,17,39,15,0.0 +23117,35,18,17,0.0 +23117,9,97,43,0.0 +23117,32,32,29,0.0 +23117,54,7.45,4,0.0 +23117,50,16.25,43,0.0 +23117,24,4.5,44,0.0 +23117,69,36,50,0.0 +23117,15,15.5,34,0.0 +23117,13,6,22,0.0 +23117,7,30,24,0.0 +23117,43,46,3,0.0 +23117,6,25,3,0.0 +23117,33,2.5,34,0.0 +23117,70,15,18,0.0 +23117,48,12.75,7,0.0 +23117,27,43.9,46,0.0 +23117,38,263.5,22,0.0 +23117,39,18,14,0.0 +23117,76,18,23,0.0 +23117,22,21,37,0.0 +23117,30,25.89,10,0.0 +23117,23,9,49,0.0 +23117,57,19.5,3,0.0 +23117,29,123.79,39,0.0 +23117,5,21.35,21,0.0 +23117,20,81,36,0.0 +23117,71,21.5,6,0.0 +23117,21,10,11,0.0 +23117,75,7.75,40,0.0 +23117,60,34,39,0.0 +23117,49,20,35,0.0 +23117,25,14,19,0.0 +23117,74,10,30,0.0 +23117,63,43.9,29,0.0 +23117,45,9.5,5,0.0 +23117,41,9.65,12,0.0 +23117,44,19.45,10,0.0 +23117,3,10,30,0.0 +23117,2,19,9,0.0 +23117,56,38,39,0.0 +23117,51,53,18,0.0 +23117,53,32.8,40,0.0 +23117,52,7,3,0.0 +23117,16,17.45,12,0.0 +23117,40,18.4,24,0.0 +23117,67,14,39,0.0 +23117,14,23.25,16,0.0 +23117,36,19,32,0.0 +23117,4,22,49,0.0 +23117,10,31,1,0.0 +23117,58,13.25,49,0.0 +23117,28,45.6,28,0.0 +23117,26,31.23,41,0.0 +23117,1,18,7,0.0 +23117,64,33.25,49,0.0 +23117,61,28.5,4,0.0 +23117,18,62.5,45,0.0 +23117,72,34.8,8,0.0 +23117,34,14,6,0.0 +23117,73,15,5,0.0 +23117,31,12.5,47,0.0 +23117,46,12,32,0.0 +23117,68,12.5,45,0.0 +23118,6,25,29,0.0 +23118,64,33.25,8,0.0 +23118,28,45.6,8,0.0 +23118,72,34.8,32,0.0 +23118,29,123.79,44,0.0 +23118,47,9.5,13,0.0 +23118,58,13.25,19,0.0 +23118,33,2.5,29,0.0 +23118,51,53,16,0.0 +23118,5,21.35,42,0.0 +23118,2,19,11,0.0 +23118,8,40,12,0.0 +23118,39,18,5,0.0 +23118,68,12.5,49,0.0 +23118,36,19,26,0.0 +23118,7,30,49,0.0 +23118,60,34,8,0.0 +23118,22,21,8,0.0 +23118,56,38,40,0.0 +23118,26,31.23,17,0.0 +23118,67,14,49,0.0 +23118,77,13,24,0.0 +23118,76,18,5,0.0 +23118,43,46,36,0.0 +23118,45,9.5,1,0.0 +23118,34,14,29,0.0 +23118,73,15,3,0.0 +23118,40,18.4,8,0.0 +23118,31,12.5,3,0.0 +23118,52,7,16,0.0 +23118,21,10,42,0.0 +23118,30,25.89,15,0.0 +23118,20,81,30,0.0 +23118,69,36,21,0.0 +23118,59,55,31,0.0 +23118,23,9,2,0.0 +23118,71,21.5,49,0.0 +23118,18,62.5,34,0.0 +23118,53,32.8,38,0.0 +23118,66,17,1,0.0 +23118,61,28.5,23,0.0 +23118,37,26,49,0.0 +23118,25,14,24,0.0 +23118,75,7.75,10,0.0 +23118,35,18,45,0.0 +23118,13,6,35,0.0 +23118,19,9.2,17,0.0 +23118,54,7.45,24,0.0 +23118,16,17.45,6,0.0 +23118,62,49.3,11,0.0 +23118,46,12,43,0.0 +23118,32,32,21,0.0 +23118,24,4.5,21,0.0 +23118,27,43.9,9,0.0 +23118,50,16.25,48,0.0 +23118,48,12.75,6,0.0 +23118,49,20,17,0.0 +23118,70,15,32,0.0 +23118,41,9.65,4,0.0 +23118,63,43.9,10,0.0 +23118,4,22,8,0.0 +23118,42,14,5,0.0 +23118,74,10,15,0.0 +23118,10,31,17,0.0 +23118,38,263.5,25,0.0 +23118,57,19.5,39,0.0 +23118,12,38,5,0.0 +23118,9,97,41,0.0 +23118,65,21.05,8,0.0 +23118,44,19.45,44,0.0 +23118,1,18,49,0.0 +23118,15,15.5,12,0.0 +23118,3,10,24,0.0 +23118,55,24,46,0.0 +23119,60,34,44,0.0 +23119,20,81,9,0.0 +23119,7,30,10,0.0 +23119,75,7.75,5,0.0 +23119,31,12.5,31,0.0 +23119,32,32,2,0.0 +23119,50,16.25,8,0.0 +23119,45,9.5,47,0.0 +23119,62,49.3,7,0.0 +23119,76,18,35,0.0 +23119,12,38,34,0.0 +23119,58,13.25,1,0.0 +23119,68,12.5,1,0.0 +23119,36,19,18,0.0 +23119,34,14,6,0.0 +23119,47,9.5,38,0.0 +23119,73,15,44,0.0 +23119,59,55,41,0.0 +23119,51,53,13,0.0 +23119,70,15,38,0.0 +23119,52,7,25,0.0 +23119,5,21.35,29,0.0 +23119,19,9.2,38,0.0 +23119,14,23.25,15,0.0 +23119,46,12,50,0.0 +23119,54,7.45,12,0.0 +23119,41,9.65,16,0.0 +23119,56,38,2,0.0 +23119,43,46,8,0.0 +23119,72,34.8,10,0.0 +23119,33,2.5,47,0.0 +23119,10,31,41,0.0 +23119,57,19.5,43,0.0 +23119,21,10,31,0.0 +23119,9,97,47,0.0 +23119,48,12.75,44,0.0 +23119,63,43.9,18,0.0 +23119,65,21.05,25,0.0 +23119,16,17.45,2,0.0 +23119,29,123.79,29,0.0 +23119,39,18,49,0.0 +23119,30,25.89,11,0.0 +23119,11,21,17,0.0 +23119,40,18.4,46,0.0 +23119,24,4.5,26,0.0 +23119,17,39,1,0.0 +23119,25,14,50,0.0 +23119,26,31.23,8,0.0 +23119,55,24,28,0.0 +23119,71,21.5,23,0.0 +23119,37,26,16,0.0 +23119,22,21,4,0.0 +23119,15,15.5,45,0.0 +23119,67,14,16,0.0 +23119,18,62.5,50,0.0 +23119,1,18,31,0.0 +23119,3,10,33,0.0 +23119,2,19,28,0.0 +23120,45,9.5,2,0.0 +23120,24,4.5,25,0.0 +23120,10,31,6,0.0 +23120,67,14,34,0.0 +23120,52,7,1,0.0 +23120,3,10,20,0.0 +23120,5,21.35,29,0.0 +23120,23,9,46,0.0 +23120,69,36,17,0.0 +23120,62,49.3,7,0.0 +23120,66,17,14,0.0 +23120,7,30,30,0.0 +23120,41,9.65,22,0.0 +23120,49,20,39,0.0 +23120,55,24,41,0.0 +23120,48,12.75,26,0.0 +23120,68,12.5,16,0.0 +23120,39,18,6,0.0 +23120,20,81,29,0.0 +23120,13,6,40,0.0 +23120,73,15,2,0.0 +23120,11,21,14,0.0 +23120,40,18.4,11,0.0 +23120,60,34,27,0.0 +23120,9,97,28,0.0 +23120,65,21.05,17,0.0 +23120,36,19,20,0.0 +23120,71,21.5,16,0.0 +23120,28,45.6,9,0.0 +23120,14,23.25,43,0.0 +23120,29,123.79,4,0.0 +23120,47,9.5,3,0.0 +23120,42,14,7,0.0 +23120,70,15,25,0.0 +23120,34,14,5,0.0 +23120,54,7.45,29,0.0 +23120,30,25.89,2,0.0 +23120,57,19.5,32,0.0 +23120,18,62.5,6,0.0 +23120,59,55,20,0.0 +23120,21,10,24,0.0 +23120,44,19.45,34,0.0 +23120,51,53,14,0.0 +23120,56,38,40,0.0 +23120,1,18,1,0.0 +23121,9,97,6,0.0 +23121,18,62.5,49,0.0 +23121,17,39,23,0.0 +23121,61,28.5,30,0.0 +23121,70,15,21,0.0 +23121,26,31.23,1,0.0 +23121,52,7,48,0.0 +23121,10,31,31,0.0 +23121,41,9.65,36,0.0 +23121,34,14,3,0.0 +23121,73,15,39,0.0 +23121,16,17.45,13,0.0 +23121,50,16.25,48,0.0 +23121,15,15.5,35,0.0 +23121,33,2.5,46,0.0 +23121,39,18,25,0.0 +23121,24,4.5,34,0.0 +23121,77,13,20,0.0 +23122,56,38,23,0.0 +23122,45,9.5,35,0.0 +23122,75,7.75,42,0.0 +23122,34,14,15,0.0 +23122,19,9.2,41,0.0 +23122,37,26,12,0.0 +23122,50,16.25,37,0.0 +23122,52,7,43,0.0 +23122,5,21.35,48,0.0 +23122,3,10,11,0.0 +23122,2,19,9,0.0 +23122,28,45.6,32,0.0 +23122,67,14,43,0.0 +23122,41,9.65,15,0.0 +23122,55,24,35,0.0 +23122,65,21.05,17,0.0 +23122,62,49.3,49,0.0 +23122,27,43.9,2,0.0 +23122,18,62.5,40,0.0 +23122,46,12,47,0.0 +23122,14,23.25,8,0.0 +23122,30,25.89,48,0.0 +23122,58,13.25,34,0.0 +23122,17,39,44,0.0 +23122,44,19.45,14,0.0 +23122,6,25,17,0.0 +23122,54,7.45,13,0.0 +23122,13,6,35,0.0 +23122,72,34.8,41,0.0 +23122,1,18,7,0.0 +23122,8,40,31,0.0 +23122,9,97,42,0.0 +23122,43,46,11,0.0 +23122,11,21,35,0.0 +23122,36,19,25,0.0 +23122,61,28.5,25,0.0 +23122,22,21,18,0.0 +23122,23,9,44,0.0 +23122,20,81,1,0.0 +23122,64,33.25,26,0.0 +23122,10,31,20,0.0 +23122,48,12.75,43,0.0 +23122,42,14,4,0.0 +23122,49,20,10,0.0 +23122,16,17.45,36,0.0 +23122,66,17,1,0.0 +23122,7,30,29,0.0 +23122,69,36,22,0.0 +23122,40,18.4,13,0.0 +23122,33,2.5,27,0.0 +23122,15,15.5,36,0.0 +23122,53,32.8,1,0.0 +23122,25,14,39,0.0 +23122,70,15,28,0.0 +23122,32,32,3,0.0 +23122,76,18,35,0.0 +23122,51,53,12,0.0 +23122,26,31.23,26,0.0 +23122,24,4.5,38,0.0 +23122,57,19.5,37,0.0 +23122,38,263.5,28,0.0 +23122,35,18,15,0.0 +23122,39,18,45,0.0 +23122,47,9.5,26,0.0 +23122,4,22,5,0.0 +23122,12,38,48,0.0 +23122,29,123.79,19,0.0 +23122,74,10,32,0.0 +23122,21,10,24,0.0 +23122,71,21.5,47,0.0 +23122,77,13,28,0.0 +23122,73,15,49,0.0 +23123,45,9.5,43,0.0 +23123,31,12.5,11,0.0 +23123,60,34,37,0.0 +23123,67,14,14,0.0 +23123,15,15.5,4,0.0 +23123,49,20,26,0.0 +23123,26,31.23,21,0.0 +23123,24,4.5,12,0.0 +23123,12,38,38,0.0 +23123,6,25,28,0.0 +23123,40,18.4,33,0.0 +23123,9,97,27,0.0 +23123,39,18,3,0.0 +23123,11,21,27,0.0 +23123,38,263.5,40,0.0 +23123,53,32.8,29,0.0 +23123,42,14,33,0.0 +23123,14,23.25,38,0.0 +23123,17,39,29,0.0 +23123,21,10,42,0.0 +23123,58,13.25,22,0.0 +23123,37,26,43,0.0 +23123,44,19.45,2,0.0 +23123,22,21,35,0.0 +23123,25,14,41,0.0 +23123,52,7,16,0.0 +23123,74,10,4,0.0 +23123,19,9.2,33,0.0 +23123,57,19.5,1,0.0 +23123,77,13,23,0.0 +23123,33,2.5,6,0.0 +23123,2,19,13,0.0 +23123,71,21.5,43,0.0 +23123,72,34.8,17,0.0 +23123,43,46,44,0.0 +23123,61,28.5,6,0.0 +23124,64,33.25,12,0.0 +23124,34,14,6,0.0 +23124,61,28.5,29,0.0 +23124,38,263.5,49,0.0 +23124,45,9.5,24,0.0 +23124,51,53,29,0.0 +23124,12,38,44,0.0 +23124,63,43.9,44,0.0 +23124,14,23.25,34,0.0 +23124,5,21.35,4,0.0 +23124,49,20,34,0.0 +23124,75,7.75,22,0.0 +23124,7,30,27,0.0 +23124,21,10,39,0.0 +23124,72,34.8,26,0.0 +23124,36,19,50,0.0 +23124,17,39,19,0.0 +23124,70,15,25,0.0 +23124,69,36,31,0.0 +23124,32,32,33,0.0 +23124,3,10,14,0.0 +23124,55,24,30,0.0 +23124,31,12.5,15,0.0 +23124,18,62.5,45,0.0 +23124,39,18,25,0.0 +23124,58,13.25,38,0.0 +23124,54,7.45,29,0.0 +23124,71,21.5,33,0.0 +23124,57,19.5,40,0.0 +23124,42,14,25,0.0 +23124,46,12,45,0.0 +23124,23,9,18,0.0 +23124,26,31.23,16,0.0 +23124,8,40,49,0.0 +23124,4,22,44,0.0 +23124,68,12.5,9,0.0 +23124,74,10,6,0.0 +23124,16,17.45,11,0.0 +23124,25,14,2,0.0 +23124,6,25,19,0.0 +23124,62,49.3,37,0.0 +23124,47,9.5,24,0.0 +23124,53,32.8,19,0.0 +23124,41,9.65,49,0.0 +23124,30,25.89,14,0.0 +23124,67,14,49,0.0 +23124,27,43.9,15,0.0 +23124,20,81,46,0.0 +23124,73,15,27,0.0 +23124,11,21,14,0.0 +23124,59,55,38,0.0 +23124,9,97,22,0.0 +23124,44,19.45,47,0.0 +23124,65,21.05,49,0.0 +23124,13,6,3,0.0 +23125,1,18,12,0.0 +23125,57,19.5,22,0.0 +23125,9,97,15,0.0 +23125,73,15,18,0.0 +23125,66,17,16,0.0 +23125,26,31.23,29,0.0 +23125,39,18,27,0.0 +23125,45,9.5,18,0.0 +23125,60,34,25,0.0 +23125,67,14,8,0.0 +23125,20,81,43,0.0 +23125,43,46,39,0.0 +23125,32,32,10,0.0 +23125,77,13,41,0.0 +23125,50,16.25,45,0.0 +23125,18,62.5,8,0.0 +23125,49,20,23,0.0 +23125,25,14,16,0.0 +23125,48,12.75,25,0.0 +23125,71,21.5,19,0.0 +23125,62,49.3,40,0.0 +23125,4,22,14,0.0 +23125,70,15,46,0.0 +23125,38,263.5,10,0.0 +23125,8,40,31,0.0 +23125,28,45.6,30,0.0 +23125,33,2.5,44,0.0 +23125,51,53,25,0.0 +23125,55,24,49,0.0 +23125,36,19,37,0.0 +23125,29,123.79,24,0.0 +23125,41,9.65,49,0.0 +23125,53,32.8,5,0.0 +23125,24,4.5,22,0.0 +23125,13,6,1,0.0 +23125,69,36,24,0.0 +23125,63,43.9,23,0.0 +23125,16,17.45,38,0.0 +23125,22,21,29,0.0 +23125,35,18,40,0.0 +23125,37,26,12,0.0 +23125,68,12.5,43,0.0 +23125,46,12,48,0.0 +23125,21,10,39,0.0 +23125,58,13.25,50,0.0 +23125,14,23.25,36,0.0 +23125,11,21,12,0.0 +23125,15,15.5,11,0.0 +23125,59,55,17,0.0 +23125,12,38,21,0.0 +23125,34,14,2,0.0 +23125,42,14,47,0.0 +23125,44,19.45,9,0.0 +23125,76,18,47,0.0 +23125,17,39,20,0.0 +23125,30,25.89,11,0.0 +23125,2,19,39,0.0 +23125,31,12.5,8,0.0 +23125,19,9.2,13,0.0 +23125,5,21.35,16,0.0 +23125,75,7.75,42,0.0 +23125,72,34.8,10,0.0 +23125,74,10,7,0.0 +23125,65,21.05,7,0.0 +23125,23,9,47,0.0 +23125,56,38,47,0.0 +23125,40,18.4,36,0.0 +23125,7,30,24,0.0 +23125,10,31,41,0.0 +23125,61,28.5,42,0.0 +23125,54,7.45,4,0.0 +23125,64,33.25,26,0.0 +23125,6,25,17,0.0 +23125,47,9.5,5,0.0 +23125,52,7,28,0.0 +23126,13,6,4,0.0 +23126,47,9.5,11,0.0 +23126,41,9.65,38,0.0 +23126,66,17,26,0.0 +23126,45,9.5,40,0.0 +23126,19,9.2,38,0.0 +23126,64,33.25,14,0.0 +23126,62,49.3,20,0.0 +23126,6,25,12,0.0 +23126,16,17.45,9,0.0 +23126,65,21.05,40,0.0 +23126,17,39,41,0.0 +23126,38,263.5,32,0.0 +23126,39,18,22,0.0 +23126,57,19.5,27,0.0 +23126,35,18,7,0.0 +23126,37,26,8,0.0 +23126,76,18,7,0.0 +23126,32,32,49,0.0 +23126,30,25.89,31,0.0 +23126,20,81,42,0.0 +23126,46,12,22,0.0 +23126,12,38,4,0.0 +23126,5,21.35,29,0.0 +23126,55,24,26,0.0 +23126,21,10,39,0.0 +23126,24,4.5,41,0.0 +23126,23,9,40,0.0 +23126,48,12.75,4,0.0 +23126,27,43.9,10,0.0 +23126,69,36,15,0.0 +23126,61,28.5,3,0.0 +23126,53,32.8,26,0.0 +23126,36,19,13,0.0 +23126,9,97,9,0.0 +23126,10,31,6,0.0 +23126,18,62.5,23,0.0 +23126,3,10,37,0.0 +23126,63,43.9,49,0.0 +23126,56,38,39,0.0 +23126,7,30,30,0.0 +23126,50,16.25,27,0.0 +23126,72,34.8,40,0.0 +23126,22,21,21,0.0 +23126,4,22,37,0.0 +23126,75,7.75,10,0.0 +23126,25,14,19,0.0 +23126,2,19,42,0.0 +23126,71,21.5,7,0.0 +23126,77,13,40,0.0 +23126,8,40,50,0.0 +23126,14,23.25,1,0.0 +23126,59,55,33,0.0 +23126,54,7.45,20,0.0 +23126,68,12.5,40,0.0 +23126,29,123.79,36,0.0 +23126,52,7,45,0.0 +23127,68,12.5,43,0.0 +23127,36,19,49,0.0 +23127,55,24,32,0.0 +23127,60,34,25,0.0 +23127,31,12.5,42,0.0 +23127,69,36,33,0.0 +23127,30,25.89,28,0.0 +23127,24,4.5,47,0.0 +23127,16,17.45,40,0.0 +23127,61,28.5,11,0.0 +23127,20,81,17,0.0 +23127,26,31.23,44,0.0 +23127,33,2.5,32,0.0 +23127,18,62.5,8,0.0 +23127,9,97,16,0.0 +23127,49,20,47,0.0 +23127,25,14,29,0.0 +23127,8,40,31,0.0 +23127,19,9.2,20,0.0 +23127,72,34.8,19,0.0 +23127,14,23.25,2,0.0 +23127,57,19.5,3,0.0 +23127,10,31,14,0.0 +23127,21,10,38,0.0 +23127,28,45.6,42,0.0 +23127,56,38,23,0.0 +23127,74,10,8,0.0 +23127,29,123.79,34,0.0 +23127,62,49.3,42,0.0 +23127,44,19.45,31,0.0 +23127,40,18.4,4,0.0 +23127,1,18,42,0.0 +23127,12,38,5,0.0 +23127,66,17,14,0.0 +23127,37,26,26,0.0 +23127,13,6,39,0.0 +23127,43,46,50,0.0 +23127,64,33.25,34,0.0 +23127,6,25,8,0.0 +23127,3,10,32,0.0 +23127,70,15,35,0.0 +23127,59,55,15,0.0 +23127,17,39,39,0.0 +23127,32,32,44,0.0 +23127,65,21.05,12,0.0 +23127,38,263.5,7,0.0 +23127,77,13,27,0.0 +23127,63,43.9,10,0.0 +23127,75,7.75,21,0.0 +23127,15,15.5,6,0.0 +23127,54,7.45,11,0.0 +23127,67,14,10,0.0 +23127,52,7,44,0.0 +23127,27,43.9,42,0.0 +23127,11,21,1,0.0 +23127,2,19,24,0.0 +23127,41,9.65,24,0.0 +23127,53,32.8,36,0.0 +23127,73,15,3,0.0 +23127,58,13.25,9,0.0 +23127,42,14,25,0.0 +23127,45,9.5,46,0.0 +23127,4,22,12,0.0 +23127,22,21,38,0.0 +23127,35,18,10,0.0 +23128,40,18.4,46,0.0 +23128,2,19,2,0.0 +23128,7,30,45,0.0 +23128,60,34,14,0.0 +23128,8,40,26,0.0 +23128,20,81,34,0.0 +23128,50,16.25,23,0.0 +23128,9,97,39,0.0 +23128,16,17.45,50,0.0 +23128,14,23.25,43,0.0 +23128,73,15,46,0.0 +23128,39,18,1,0.0 +23128,58,13.25,2,0.0 +23128,44,19.45,14,0.0 +23128,29,123.79,47,0.0 +23128,38,263.5,41,0.0 +23128,13,6,32,0.0 +23128,72,34.8,20,0.0 +23128,5,21.35,42,0.0 +23128,32,32,34,0.0 +23128,74,10,47,0.0 +23128,49,20,26,0.0 +23128,23,9,45,0.0 +23128,71,21.5,34,0.0 +23128,4,22,41,0.0 +23128,15,15.5,46,0.0 +23128,64,33.25,45,0.0 +23128,11,21,22,0.0 +23128,66,17,49,0.0 +23128,12,38,11,0.0 +23128,54,7.45,22,0.0 +23128,48,12.75,37,0.0 +23128,30,25.89,28,0.0 +23128,70,15,29,0.0 +23128,56,38,50,0.0 +23128,47,9.5,11,0.0 +23128,37,26,34,0.0 +23128,52,7,12,0.0 +23128,77,13,26,0.0 +23128,3,10,44,0.0 +23128,1,18,30,0.0 +23128,21,10,29,0.0 +23128,51,53,28,0.0 +23128,17,39,3,0.0 +23128,62,49.3,8,0.0 +23128,69,36,40,0.0 +23128,25,14,44,0.0 +23128,61,28.5,28,0.0 +23128,18,62.5,47,0.0 +23128,24,4.5,19,0.0 +23128,22,21,5,0.0 +23128,19,9.2,10,0.0 +23128,65,21.05,49,0.0 +23128,42,14,2,0.0 +23128,31,12.5,11,0.0 +23128,10,31,37,0.0 +23128,63,43.9,23,0.0 +23128,45,9.5,13,0.0 +23128,28,45.6,6,0.0 +23128,53,32.8,41,0.0 +23128,75,7.75,4,0.0 +23128,33,2.5,1,0.0 +23128,41,9.65,26,0.0 +23128,43,46,28,0.0 +23128,76,18,6,0.0 +23128,57,19.5,44,0.0 +23128,34,14,5,0.0 +23128,6,25,47,0.0 +23128,46,12,43,0.0 +23128,67,14,8,0.0 +23128,59,55,12,0.0 +23128,27,43.9,36,0.0 +23128,68,12.5,17,0.0 +23128,55,24,44,0.0 +23128,26,31.23,21,0.0 +23128,35,18,9,0.0 +23129,40,18.4,39,0.0 +23129,58,13.25,10,0.0 +23129,59,55,4,0.0 +23129,70,15,19,0.0 +23129,53,32.8,26,0.0 +23129,72,34.8,27,0.0 +23129,52,7,17,0.0 +23129,76,18,12,0.0 +23129,27,43.9,40,0.0 +23129,44,19.45,3,0.0 +23129,49,20,9,0.0 +23129,43,46,23,0.0 +23129,22,21,37,0.0 +23129,69,36,43,0.0 +23129,54,7.45,11,0.0 +23129,47,9.5,1,0.0 +23129,25,14,46,0.0 +23129,67,14,49,0.0 +23129,20,81,30,0.0 +23129,13,6,17,0.0 +23129,71,21.5,46,0.0 +23129,50,16.25,4,0.0 +23129,31,12.5,3,0.0 +23129,51,53,41,0.0 +23129,12,38,24,0.0 +23129,28,45.6,1,0.0 +23129,23,9,32,0.0 +23129,30,25.89,2,0.0 +23129,17,39,27,0.0 +23129,56,38,15,0.0 +23129,18,62.5,49,0.0 +23129,14,23.25,10,0.0 +23129,1,18,5,0.0 +23129,3,10,46,0.0 +23129,29,123.79,13,0.0 +23129,62,49.3,10,0.0 +23129,73,15,41,0.0 +23129,15,15.5,45,0.0 +23129,11,21,10,0.0 +23129,8,40,34,0.0 +23129,57,19.5,27,0.0 +23129,46,12,17,0.0 +23129,66,17,21,0.0 +23129,55,24,30,0.0 +23129,2,19,39,0.0 +23129,26,31.23,6,0.0 +23129,65,21.05,49,0.0 +23129,68,12.5,20,0.0 +23129,6,25,26,0.0 +23129,36,19,24,0.0 +23129,42,14,13,0.0 +23129,32,32,40,0.0 +23129,21,10,47,0.0 +23129,74,10,18,0.0 +23129,5,21.35,2,0.0 +23129,34,14,14,0.0 +23129,7,30,47,0.0 +23129,35,18,34,0.0 +23129,19,9.2,2,0.0 +23129,9,97,48,0.0 +23129,61,28.5,1,0.0 +23129,37,26,43,0.0 +23129,38,263.5,15,0.0 +23130,69,36,22,0.0 +23130,2,19,15,0.0 +23130,51,53,13,0.0 +23130,9,97,10,0.0 +23130,12,38,4,0.0 +23130,24,4.5,2,0.0 +23130,76,18,9,0.0 +23130,22,21,13,0.0 +23130,50,16.25,48,0.0 +23130,49,20,2,0.0 +23130,30,25.89,48,0.0 +23130,19,9.2,36,0.0 +23130,44,19.45,11,0.0 +23130,21,10,38,0.0 +23130,43,46,4,0.0 +23130,37,26,39,0.0 +23130,66,17,23,0.0 +23130,65,21.05,9,0.0 +23130,71,21.5,13,0.0 +23130,14,23.25,35,0.0 +23130,16,17.45,41,0.0 +23130,53,32.8,2,0.0 +23130,23,9,11,0.0 +23130,41,9.65,7,0.0 +23130,27,43.9,37,0.0 +23130,29,123.79,49,0.0 +23130,6,25,40,0.0 +23130,48,12.75,26,0.0 +23130,39,18,34,0.0 +23130,52,7,35,0.0 +23130,46,12,19,0.0 +23130,47,9.5,41,0.0 +23130,73,15,20,0.0 +23130,17,39,10,0.0 +23130,31,12.5,35,0.0 +23130,38,263.5,24,0.0 +23130,33,2.5,37,0.0 +23130,77,13,11,0.0 +23130,74,10,20,0.0 +23130,75,7.75,45,0.0 +23130,34,14,4,0.0 +23130,68,12.5,2,0.0 +23130,1,18,2,0.0 +23130,61,28.5,46,0.0 +23130,13,6,39,0.0 +23130,40,18.4,8,0.0 +23130,59,55,33,0.0 +23130,42,14,27,0.0 +23130,63,43.9,24,0.0 +23130,62,49.3,14,0.0 +23131,25,14,30,0.0 +23131,19,9.2,15,0.0 +23131,24,4.5,10,0.0 +23131,26,31.23,34,0.0 +23131,49,20,11,0.0 +23131,10,31,33,0.0 +23131,60,34,11,0.0 +23131,4,22,10,0.0 +23131,29,123.79,14,0.0 +23131,18,62.5,18,0.0 +23131,72,34.8,21,0.0 +23131,62,49.3,32,0.0 +23131,46,12,43,0.0 +23131,63,43.9,20,0.0 +23131,67,14,37,0.0 +23131,12,38,23,0.0 +23131,9,97,29,0.0 +23131,32,32,14,0.0 +23131,7,30,1,0.0 +23131,14,23.25,18,0.0 +23131,77,13,33,0.0 +23131,56,38,4,0.0 +23131,6,25,20,0.0 +23131,38,263.5,17,0.0 +23131,53,32.8,37,0.0 +23131,34,14,21,0.0 +23131,41,9.65,30,0.0 +23131,47,9.5,6,0.0 +23131,44,19.45,35,0.0 +23131,57,19.5,3,0.0 +23131,66,17,14,0.0 +23131,37,26,8,0.0 +23131,13,6,8,0.0 +23131,74,10,50,0.0 +23131,65,21.05,24,0.0 +23131,11,21,43,0.0 +23131,61,28.5,10,0.0 +23131,20,81,1,0.0 +23132,20,81,40,0.0 +23132,31,12.5,17,0.0 +23132,16,17.45,10,0.0 +23132,23,9,2,0.0 +23132,7,30,31,0.0 +23132,67,14,28,0.0 +23132,61,28.5,41,0.0 +23132,33,2.5,4,0.0 +23132,72,34.8,16,0.0 +23132,64,33.25,32,0.0 +23132,36,19,11,0.0 +23132,27,43.9,1,0.0 +23132,77,13,40,0.0 +23132,10,31,39,0.0 +23132,17,39,32,0.0 +23132,71,21.5,50,0.0 +23132,42,14,25,0.0 +23132,29,123.79,44,0.0 +23132,21,10,44,0.0 +23132,41,9.65,23,0.0 +23132,53,32.8,1,0.0 +23132,12,38,12,0.0 +23132,76,18,11,0.0 +23132,62,49.3,4,0.0 +23132,47,9.5,22,0.0 +23132,28,45.6,9,0.0 +23132,13,6,37,0.0 +23132,49,20,31,0.0 +23132,15,15.5,11,0.0 +23132,56,38,16,0.0 +23132,58,13.25,10,0.0 +23132,35,18,30,0.0 +23132,1,18,8,0.0 +23132,26,31.23,42,0.0 +23132,14,23.25,45,0.0 +23132,66,17,8,0.0 +23132,44,19.45,2,0.0 +23132,59,55,38,0.0 +23132,46,12,33,0.0 +23132,63,43.9,7,0.0 +23133,43,46,26,0.0 +23133,73,15,12,0.0 +23133,3,10,16,0.0 +23133,61,28.5,11,0.0 +23133,9,97,7,0.0 +23133,18,62.5,5,0.0 +23133,67,14,20,0.0 +23133,52,7,30,0.0 +23133,31,12.5,30,0.0 +23133,76,18,8,0.0 +23133,64,33.25,23,0.0 +23133,49,20,8,0.0 +23133,38,263.5,6,0.0 +23133,71,21.5,13,0.0 +23133,44,19.45,36,0.0 +23133,22,21,1,0.0 +23133,45,9.5,46,0.0 +23133,53,32.8,7,0.0 +23133,30,25.89,21,0.0 +23133,34,14,41,0.0 +23133,36,19,4,0.0 +23133,39,18,32,0.0 +23133,48,12.75,25,0.0 +23133,21,10,13,0.0 +23133,20,81,25,0.0 +23133,26,31.23,20,0.0 +23133,56,38,24,0.0 +23133,14,23.25,23,0.0 +23133,65,21.05,48,0.0 +23133,17,39,31,0.0 +23133,12,38,31,0.0 +23133,11,21,49,0.0 +23133,75,7.75,7,0.0 +23133,35,18,32,0.0 +23133,13,6,33,0.0 +23133,29,123.79,26,0.0 +23133,2,19,49,0.0 +23133,63,43.9,36,0.0 +23133,47,9.5,45,0.0 +23133,58,13.25,32,0.0 +23133,5,21.35,2,0.0 +23133,69,36,16,0.0 +23133,72,34.8,2,0.0 +23133,15,15.5,50,0.0 +23133,24,4.5,45,0.0 +23133,50,16.25,39,0.0 +23133,10,31,6,0.0 +23133,25,14,35,0.0 +23133,37,26,35,0.0 +23133,19,9.2,27,0.0 +23133,7,30,18,0.0 +23133,33,2.5,7,0.0 +23133,16,17.45,26,0.0 +23133,74,10,29,0.0 +23133,77,13,1,0.0 +23133,54,7.45,49,0.0 +23133,8,40,19,0.0 +23133,42,14,45,0.0 +23133,41,9.65,30,0.0 +23133,23,9,20,0.0 +23133,62,49.3,23,0.0 +23133,40,18.4,49,0.0 +23134,32,32,41,0.0 +23134,58,13.25,28,0.0 +23134,19,9.2,29,0.0 +23134,7,30,20,0.0 +23134,31,12.5,2,0.0 +23134,10,31,48,0.0 +23134,12,38,3,0.0 +23134,71,21.5,45,0.0 +23134,17,39,11,0.0 +23134,66,17,18,0.0 +23134,24,4.5,40,0.0 +23134,55,24,44,0.0 +23134,11,21,36,0.0 +23134,21,10,31,0.0 +23134,48,12.75,19,0.0 +23134,18,62.5,33,0.0 +23134,75,7.75,47,0.0 +23134,20,81,39,0.0 +23134,3,10,22,0.0 +23134,29,123.79,40,0.0 +23134,64,33.25,43,0.0 +23134,5,21.35,27,0.0 +23134,44,19.45,7,0.0 +23134,8,40,5,0.0 +23134,4,22,48,0.0 +23134,68,12.5,32,0.0 +23134,59,55,33,0.0 +23134,43,46,44,0.0 +23134,76,18,18,0.0 +23134,54,7.45,12,0.0 +23134,30,25.89,46,0.0 +23135,65,21.05,6,0.0 +23135,56,38,16,0.0 +23135,58,13.25,28,0.0 +23135,26,31.23,5,0.0 +23135,31,12.5,29,0.0 +23135,1,18,9,0.0 +23135,48,12.75,14,0.0 +23135,42,14,50,0.0 +23135,4,22,45,0.0 +23135,17,39,14,0.0 +23135,60,34,16,0.0 +23135,20,81,11,0.0 +23135,36,19,20,0.0 +23135,53,32.8,30,0.0 +23135,54,7.45,24,0.0 +23135,21,10,32,0.0 +23135,66,17,32,0.0 +23135,62,49.3,35,0.0 +23135,51,53,4,0.0 +23135,22,21,10,0.0 +23135,50,16.25,2,0.0 +23135,18,62.5,30,0.0 +23135,52,7,43,0.0 +23135,70,15,1,0.0 +23135,13,6,24,0.0 +23135,28,45.6,33,0.0 +23135,55,24,11,0.0 +23135,44,19.45,25,0.0 +23135,73,15,47,0.0 +23135,68,12.5,8,0.0 +23135,47,9.5,37,0.0 +23135,57,19.5,41,0.0 +23135,71,21.5,16,0.0 +23135,76,18,37,0.0 +23135,34,14,31,0.0 +23135,75,7.75,33,0.0 +23135,11,21,44,0.0 +23135,14,23.25,26,0.0 +23135,7,30,21,0.0 +23135,33,2.5,11,0.0 +23135,69,36,28,0.0 +23135,9,97,13,0.0 +23135,67,14,27,0.0 +23135,61,28.5,19,0.0 +23135,72,34.8,40,0.0 +23135,64,33.25,15,0.0 +23135,29,123.79,45,0.0 +23135,35,18,39,0.0 +23135,38,263.5,2,0.0 +23135,6,25,8,0.0 +23135,16,17.45,10,0.0 +23135,30,25.89,2,0.0 +23135,49,20,17,0.0 +23135,37,26,6,0.0 +23135,39,18,35,0.0 +23135,25,14,8,0.0 +23135,40,18.4,33,0.0 +23135,41,9.65,18,0.0 +23135,10,31,26,0.0 +23135,15,15.5,9,0.0 +23135,19,9.2,8,0.0 +23135,77,13,49,0.0 +23135,59,55,39,0.0 +23135,32,32,41,0.0 +23135,5,21.35,50,0.0 +23135,8,40,37,0.0 +23135,43,46,31,0.0 +23136,12,38,50,0.0 +23136,52,7,11,0.0 +23136,11,21,46,0.0 +23136,47,9.5,36,0.0 +23136,53,32.8,37,0.0 +23136,60,34,29,0.0 +23136,13,6,22,0.0 +23136,54,7.45,5,0.0 +23136,49,20,45,0.0 +23136,70,15,21,0.0 +23136,42,14,37,0.0 +23136,8,40,14,0.0 +23136,45,9.5,3,0.0 +23136,14,23.25,35,0.0 +23136,25,14,2,0.0 +23136,68,12.5,35,0.0 +23136,17,39,10,0.0 +23136,66,17,43,0.0 +23136,71,21.5,2,0.0 +23136,67,14,20,0.0 +23136,61,28.5,36,0.0 +23136,46,12,2,0.0 +23136,20,81,9,0.0 +23136,29,123.79,17,0.0 +23136,6,25,44,0.0 +23136,43,46,37,0.0 +23136,27,43.9,43,0.0 +23136,59,55,34,0.0 +23136,72,34.8,9,0.0 +23136,21,10,35,0.0 +23136,37,26,14,0.0 +23136,39,18,22,0.0 +23136,31,12.5,24,0.0 +23136,76,18,22,0.0 +23136,57,19.5,41,0.0 +23136,51,53,40,0.0 +23136,3,10,39,0.0 +23136,28,45.6,39,0.0 +23136,56,38,25,0.0 +23136,10,31,2,0.0 +23137,11,21,6,0.0 +23137,9,97,39,0.0 +23137,58,13.25,22,0.0 +23137,77,13,6,0.0 +23137,12,38,49,0.0 +23137,7,30,36,0.0 +23137,55,24,12,0.0 +23138,73,15,38,0.0 +23138,5,21.35,23,0.0 +23138,53,32.8,28,0.0 +23138,13,6,48,0.0 +23138,42,14,12,0.0 +23138,6,25,3,0.0 +23138,4,22,14,0.0 +23138,36,19,34,0.0 +23138,70,15,42,0.0 +23138,12,38,29,0.0 +23138,38,263.5,30,0.0 +23138,75,7.75,15,0.0 +23138,68,12.5,31,0.0 +23138,2,19,8,0.0 +23138,27,43.9,43,0.0 +23138,32,32,8,0.0 +23138,28,45.6,39,0.0 +23138,55,24,45,0.0 +23138,49,20,20,0.0 +23138,15,15.5,45,0.0 +23138,20,81,46,0.0 +23138,63,43.9,30,0.0 +23138,8,40,23,0.0 +23138,33,2.5,45,0.0 +23138,25,14,21,0.0 +23138,11,21,11,0.0 +23138,50,16.25,30,0.0 +23138,17,39,31,0.0 +23138,44,19.45,29,0.0 +23138,56,38,1,0.0 +23138,61,28.5,35,0.0 +23138,16,17.45,19,0.0 +23138,67,14,17,0.0 +23138,29,123.79,23,0.0 +23138,60,34,24,0.0 +23138,72,34.8,14,0.0 +23138,59,55,19,0.0 +23138,22,21,10,0.0 +23138,35,18,18,0.0 +23138,66,17,26,0.0 +23138,39,18,10,0.0 +23138,43,46,13,0.0 +23138,24,4.5,3,0.0 +23138,21,10,34,0.0 +23138,48,12.75,8,0.0 +23138,62,49.3,35,0.0 +23138,19,9.2,14,0.0 +23138,57,19.5,49,0.0 +23138,23,9,42,0.0 +23138,10,31,22,0.0 +23138,58,13.25,32,0.0 +23138,41,9.65,32,0.0 +23138,7,30,16,0.0 +23138,76,18,29,0.0 +23138,9,97,45,0.0 +23138,47,9.5,19,0.0 +23138,65,21.05,47,0.0 +23138,46,12,40,0.0 +23138,1,18,38,0.0 +23138,45,9.5,46,0.0 +23139,39,18,12,0.0 +23139,41,9.65,21,0.0 +23139,58,13.25,19,0.0 +23139,62,49.3,38,0.0 +23139,33,2.5,8,0.0 +23139,10,31,41,0.0 +23139,50,16.25,26,0.0 +23139,15,15.5,22,0.0 +23139,54,7.45,38,0.0 +23139,63,43.9,19,0.0 +23139,26,31.23,21,0.0 +23139,7,30,14,0.0 +23139,72,34.8,15,0.0 +23139,25,14,19,0.0 +23139,40,18.4,18,0.0 +23139,77,13,37,0.0 +23139,2,19,10,0.0 +23139,6,25,9,0.0 +23139,24,4.5,17,0.0 +23139,43,46,36,0.0 +23139,73,15,40,0.0 +23139,38,263.5,48,0.0 +23139,67,14,35,0.0 +23139,5,21.35,23,0.0 +23139,19,9.2,6,0.0 +23139,8,40,50,0.0 +23139,59,55,31,0.0 +23139,14,23.25,7,0.0 +23139,75,7.75,20,0.0 +23139,69,36,8,0.0 +23139,12,38,4,0.0 +23139,27,43.9,31,0.0 +23140,10,31,37,0.0 +23140,8,40,13,0.0 +23140,75,7.75,32,0.0 +23140,41,9.65,18,0.0 +23140,30,25.89,21,0.0 +23140,71,21.5,22,0.0 +23140,5,21.35,6,0.0 +23140,69,36,42,0.0 +23140,2,19,32,0.0 +23140,15,15.5,33,0.0 +23140,60,34,46,0.0 +23140,23,9,8,0.0 +23140,54,7.45,2,0.0 +23140,46,12,30,0.0 +23140,43,46,7,0.0 +23140,40,18.4,7,0.0 +23140,63,43.9,4,0.0 +23140,64,33.25,15,0.0 +23140,73,15,27,0.0 +23140,62,49.3,43,0.0 +23140,20,81,11,0.0 +23140,66,17,16,0.0 +23140,9,97,19,0.0 +23140,65,21.05,13,0.0 +23140,26,31.23,25,0.0 +23140,21,10,7,0.0 +23140,39,18,45,0.0 +23140,27,43.9,12,0.0 +23140,33,2.5,16,0.0 +23140,59,55,49,0.0 +23140,48,12.75,41,0.0 +23140,72,34.8,34,0.0 +23140,29,123.79,14,0.0 +23140,13,6,12,0.0 +23140,68,12.5,20,0.0 +23140,28,45.6,14,0.0 +23140,35,18,29,0.0 +23140,18,62.5,14,0.0 +23140,37,26,19,0.0 +23140,67,14,17,0.0 +23141,73,15,9,0.0 +23141,6,25,18,0.0 +23141,32,32,31,0.0 +23141,3,10,14,0.0 +23141,75,7.75,28,0.0 +23141,67,14,27,0.0 +23141,5,21.35,18,0.0 +23141,63,43.9,18,0.0 +23141,54,7.45,47,0.0 +23141,47,9.5,49,0.0 +23141,7,30,8,0.0 +23142,59,55,16,0.0 +23142,15,15.5,8,0.0 +23142,47,9.5,28,0.0 +23142,45,9.5,37,0.0 +23142,29,123.79,19,0.0 +23142,9,97,49,0.0 +23142,7,30,4,0.0 +23142,16,17.45,3,0.0 +23142,71,21.5,20,0.0 +23142,43,46,21,0.0 +23142,6,25,40,0.0 +23142,12,38,38,0.0 +23142,51,53,29,0.0 +23142,46,12,24,0.0 +23142,33,2.5,6,0.0 +23142,36,19,31,0.0 +23142,19,9.2,41,0.0 +23142,34,14,33,0.0 +23142,72,34.8,49,0.0 +23142,10,31,19,0.0 +23142,4,22,37,0.0 +23142,31,12.5,16,0.0 +23142,62,49.3,15,0.0 +23142,1,18,48,0.0 +23142,48,12.75,49,0.0 +23142,53,32.8,43,0.0 +23142,69,36,28,0.0 +23142,70,15,33,0.0 +23142,55,24,12,0.0 +23142,27,43.9,29,0.0 +23142,38,263.5,10,0.0 +23142,26,31.23,45,0.0 +23142,58,13.25,14,0.0 +23142,66,17,10,0.0 +23142,21,10,3,0.0 +23142,23,9,20,0.0 +23142,3,10,46,0.0 +23142,22,21,50,0.0 +23142,8,40,16,0.0 +23142,44,19.45,27,0.0 +23142,57,19.5,15,0.0 +23142,73,15,23,0.0 +23142,60,34,15,0.0 +23142,24,4.5,46,0.0 +23142,64,33.25,15,0.0 +23142,28,45.6,48,0.0 +23142,42,14,4,0.0 +23142,2,19,16,0.0 +23142,50,16.25,21,0.0 +23143,34,14,28,0.0 +23143,68,12.5,33,0.0 +23143,43,46,7,0.0 +23143,25,14,41,0.0 +23143,58,13.25,20,0.0 +23143,28,45.6,18,0.0 +23143,29,123.79,27,0.0 +23143,35,18,32,0.0 +23143,59,55,39,0.0 +23143,61,28.5,9,0.0 +23143,37,26,8,0.0 +23143,14,23.25,3,0.0 +23143,48,12.75,19,0.0 +23143,49,20,38,0.0 +23143,8,40,30,0.0 +23143,24,4.5,15,0.0 +23143,71,21.5,39,0.0 +23143,74,10,23,0.0 +23143,73,15,46,0.0 +23143,56,38,36,0.0 +23143,62,49.3,13,0.0 +23143,41,9.65,15,0.0 +23143,11,21,9,0.0 +23143,15,15.5,28,0.0 +23143,42,14,25,0.0 +23143,60,34,28,0.0 +23143,77,13,12,0.0 +23143,32,32,44,0.0 +23143,22,21,14,0.0 +23143,52,7,13,0.0 +23143,7,30,16,0.0 +23143,44,19.45,39,0.0 +23143,50,16.25,42,0.0 +23143,6,25,10,0.0 +23143,39,18,26,0.0 +23143,31,12.5,45,0.0 +23143,3,10,47,0.0 +23143,75,7.75,1,0.0 +23144,33,2.5,15,0.0 +23144,27,43.9,25,0.0 +23144,23,9,21,0.0 +23144,4,22,45,0.0 +23144,31,12.5,2,0.0 +23144,42,14,47,0.0 +23144,20,81,28,0.0 +23144,36,19,12,0.0 +23144,64,33.25,30,0.0 +23144,26,31.23,29,0.0 +23144,11,21,18,0.0 +23144,62,49.3,15,0.0 +23144,14,23.25,15,0.0 +23144,77,13,14,0.0 +23144,13,6,36,0.0 +23144,17,39,8,0.0 +23144,50,16.25,42,0.0 +23144,6,25,45,0.0 +23144,63,43.9,5,0.0 +23144,32,32,40,0.0 +23144,73,15,23,0.0 +23144,3,10,17,0.0 +23144,69,36,5,0.0 +23144,5,21.35,11,0.0 +23144,46,12,2,0.0 +23144,70,15,10,0.0 +23144,68,12.5,15,0.0 +23144,53,32.8,13,0.0 +23144,8,40,37,0.0 +23144,38,263.5,26,0.0 +23144,34,14,18,0.0 +23144,75,7.75,20,0.0 +23144,43,46,29,0.0 +23144,12,38,41,0.0 +23144,51,53,19,0.0 +23144,66,17,27,0.0 +23144,18,62.5,15,0.0 +23144,22,21,21,0.0 +23144,65,21.05,17,0.0 +23144,52,7,25,0.0 +23144,30,25.89,11,0.0 +23144,48,12.75,13,0.0 +23144,58,13.25,45,0.0 +23144,61,28.5,26,0.0 +23144,49,20,15,0.0 +23144,44,19.45,3,0.0 +23144,35,18,45,0.0 +23144,7,30,32,0.0 +23144,60,34,8,0.0 +23144,2,19,38,0.0 +23144,37,26,16,0.0 +23144,15,15.5,27,0.0 +23144,19,9.2,21,0.0 +23144,56,38,17,0.0 +23144,39,18,17,0.0 +23144,9,97,24,0.0 +23144,28,45.6,11,0.0 +23144,76,18,41,0.0 +23144,16,17.45,17,0.0 +23144,10,31,25,0.0 +23144,45,9.5,3,0.0 +23145,14,23.25,16,0.0 +23145,66,17,37,0.0 +23145,59,55,45,0.0 +23145,37,26,17,0.0 +23145,74,10,46,0.0 +23145,76,18,10,0.0 +23146,38,263.5,39,0.0 +23146,18,62.5,11,0.0 +23146,4,22,35,0.0 +23146,62,49.3,37,0.0 +23146,36,19,50,0.0 +23146,70,15,31,0.0 +23146,8,40,16,0.0 +23146,2,19,42,0.0 +23146,3,10,34,0.0 +23146,24,4.5,9,0.0 +23146,41,9.65,45,0.0 +23146,37,26,48,0.0 +23146,27,43.9,28,0.0 +23146,44,19.45,9,0.0 +23146,15,15.5,2,0.0 +23146,11,21,20,0.0 +23146,58,13.25,38,0.0 +23146,13,6,17,0.0 +23146,46,12,5,0.0 +23146,14,23.25,25,0.0 +23146,59,55,14,0.0 +23146,48,12.75,41,0.0 +23146,77,13,28,0.0 +23146,26,31.23,14,0.0 +23146,16,17.45,3,0.0 +23146,49,20,20,0.0 +23146,55,24,48,0.0 +23146,32,32,27,0.0 +23146,73,15,32,0.0 +23146,17,39,7,0.0 +23146,54,7.45,12,0.0 +23146,9,97,28,0.0 +23146,69,36,50,0.0 +23146,72,34.8,28,0.0 +23146,28,45.6,45,0.0 +23146,33,2.5,25,0.0 +23146,31,12.5,39,0.0 +23146,6,25,41,0.0 +23146,76,18,29,0.0 +23146,53,32.8,21,0.0 +23146,56,38,30,0.0 +23146,35,18,46,0.0 +23146,21,10,34,0.0 +23146,25,14,19,0.0 +23146,75,7.75,45,0.0 +23146,57,19.5,29,0.0 +23146,7,30,26,0.0 +23146,22,21,40,0.0 +23146,5,21.35,6,0.0 +23146,29,123.79,6,0.0 +23146,19,9.2,41,0.0 +23146,50,16.25,28,0.0 +23146,45,9.5,50,0.0 +23146,66,17,48,0.0 +23146,71,21.5,41,0.0 +23146,61,28.5,19,0.0 +23146,1,18,36,0.0 +23146,68,12.5,46,0.0 +23146,47,9.5,45,0.0 +23146,60,34,44,0.0 +23146,23,9,10,0.0 +23146,64,33.25,33,0.0 +23146,40,18.4,16,0.0 +23146,10,31,48,0.0 +23146,52,7,34,0.0 +23146,63,43.9,5,0.0 +23146,20,81,30,0.0 +23146,42,14,4,0.0 +23146,12,38,43,0.0 +23146,34,14,43,0.0 +23146,39,18,26,0.0 +23146,65,21.05,15,0.0 +23146,30,25.89,38,0.0 +23146,74,10,46,0.0 +23146,51,53,8,0.0 +23146,67,14,19,0.0 +23147,67,14,30,0.0 +23147,44,19.45,15,0.0 +23147,58,13.25,36,0.0 +23147,14,23.25,34,0.0 +23147,25,14,3,0.0 +23147,24,4.5,30,0.0 +23147,50,16.25,5,0.0 +23147,55,24,23,0.0 +23147,20,81,41,0.0 +23147,32,32,44,0.0 +23147,72,34.8,15,0.0 +23147,5,21.35,12,0.0 +23147,60,34,48,0.0 +23147,41,9.65,48,0.0 +23147,6,25,48,0.0 +23147,73,15,32,0.0 +23147,23,9,3,0.0 +23147,3,10,23,0.0 +23147,1,18,41,0.0 +23147,29,123.79,42,0.0 +23147,11,21,19,0.0 +23147,42,14,38,0.0 +23147,47,9.5,6,0.0 +23147,62,49.3,37,0.0 +23147,35,18,30,0.0 +23147,48,12.75,47,0.0 +23147,57,19.5,3,0.0 +23147,26,31.23,6,0.0 +23147,15,15.5,3,0.0 +23147,53,32.8,9,0.0 +23147,46,12,48,0.0 +23147,34,14,20,0.0 +23147,71,21.5,43,0.0 +23147,13,6,44,0.0 +23147,75,7.75,16,0.0 +23147,33,2.5,7,0.0 +23147,77,13,47,0.0 +23147,63,43.9,19,0.0 +23147,37,26,26,0.0 +23147,22,21,22,0.0 +23147,76,18,25,0.0 +23147,56,38,40,0.0 +23147,38,263.5,2,0.0 +23147,40,18.4,50,0.0 +23147,59,55,43,0.0 +23147,51,53,39,0.0 +23147,8,40,10,0.0 +23147,2,19,43,0.0 +23148,71,21.5,10,0.0 +23148,66,17,25,0.0 +23148,69,36,21,0.0 +23148,46,12,31,0.0 +23148,70,15,46,0.0 +23148,2,19,42,0.0 +23148,32,32,6,0.0 +23148,27,43.9,12,0.0 +23148,33,2.5,32,0.0 +23148,21,10,21,0.0 +23148,56,38,22,0.0 +23148,52,7,36,0.0 +23148,67,14,18,0.0 +23148,7,30,27,0.0 +23148,57,19.5,33,0.0 +23148,4,22,11,0.0 +23148,1,18,26,0.0 +23148,74,10,33,0.0 +23148,8,40,44,0.0 +23148,64,33.25,4,0.0 +23148,22,21,16,0.0 +23148,41,9.65,1,0.0 +23148,19,9.2,20,0.0 +23148,6,25,28,0.0 +23148,37,26,10,0.0 +23148,11,21,47,0.0 +23148,23,9,49,0.0 +23148,55,24,13,0.0 +23148,68,12.5,45,0.0 +23148,47,9.5,37,0.0 +23148,12,38,13,0.0 +23148,31,12.5,13,0.0 +23148,58,13.25,9,0.0 +23148,75,7.75,33,0.0 +23148,9,97,13,0.0 +23148,38,263.5,36,0.0 +23148,16,17.45,39,0.0 +23148,42,14,28,0.0 +23148,24,4.5,43,0.0 +23148,63,43.9,37,0.0 +23148,36,19,22,0.0 +23148,59,55,11,0.0 +23148,60,34,10,0.0 +23148,14,23.25,21,0.0 +23148,61,28.5,30,0.0 +23148,3,10,1,0.0 +23148,44,19.45,6,0.0 +23148,15,15.5,5,0.0 +23148,45,9.5,14,0.0 +23148,76,18,18,0.0 +23148,26,31.23,39,0.0 +23148,35,18,40,0.0 +23148,20,81,2,0.0 +23148,13,6,35,0.0 +23148,29,123.79,2,0.0 +23148,43,46,29,0.0 +23148,65,21.05,33,0.0 +23148,17,39,2,0.0 +23148,39,18,22,0.0 +23148,34,14,13,0.0 +23148,73,15,31,0.0 +23148,28,45.6,41,0.0 +23148,25,14,27,0.0 +23148,30,25.89,10,0.0 +23148,5,21.35,49,0.0 +23148,10,31,33,0.0 +23148,40,18.4,28,0.0 +23148,62,49.3,32,0.0 +23148,77,13,8,0.0 +23148,51,53,49,0.0 +23148,54,7.45,29,0.0 +23148,50,16.25,25,0.0 +23148,18,62.5,25,0.0 +23149,28,45.6,22,0.0 +23149,6,25,37,0.0 +23149,2,19,43,0.0 +23149,72,34.8,37,0.0 +23149,63,43.9,1,0.0 +23149,56,38,47,0.0 +23149,4,22,26,0.0 +23149,31,12.5,45,0.0 +23149,5,21.35,39,0.0 +23149,42,14,8,0.0 +23149,18,62.5,7,0.0 +23149,61,28.5,35,0.0 +23149,22,21,23,0.0 +23149,47,9.5,46,0.0 +23149,57,19.5,26,0.0 +23149,51,53,42,0.0 +23149,20,81,11,0.0 +23149,74,10,1,0.0 +23149,75,7.75,1,0.0 +23149,26,31.23,26,0.0 +23149,44,19.45,18,0.0 +23149,3,10,41,0.0 +23149,66,17,44,0.0 +23149,25,14,3,0.0 +23149,27,43.9,18,0.0 +23149,32,32,27,0.0 +23149,46,12,33,0.0 +23149,7,30,41,0.0 +23149,23,9,47,0.0 +23149,68,12.5,3,0.0 +23149,10,31,43,0.0 +23149,58,13.25,45,0.0 +23149,17,39,9,0.0 +23149,16,17.45,34,0.0 +23149,30,25.89,28,0.0 +23149,49,20,14,0.0 +23149,36,19,4,0.0 +23149,13,6,2,0.0 +23149,12,38,14,0.0 +23149,69,36,13,0.0 +23149,50,16.25,20,0.0 +23149,67,14,27,0.0 +23149,21,10,12,0.0 +23149,65,21.05,24,0.0 +23149,9,97,5,0.0 +23149,29,123.79,13,0.0 +23149,45,9.5,36,0.0 +23149,35,18,46,0.0 +23149,59,55,41,0.0 +23149,55,24,42,0.0 +23149,11,21,1,0.0 +23149,24,4.5,17,0.0 +23150,69,36,6,0.0 +23150,58,13.25,10,0.0 +23150,74,10,35,0.0 +23150,31,12.5,27,0.0 +23150,3,10,26,0.0 +23150,24,4.5,9,0.0 +23150,73,15,14,0.0 +23150,30,25.89,14,0.0 +23150,43,46,28,0.0 +23150,25,14,11,0.0 +23150,9,97,31,0.0 +23150,21,10,2,0.0 +23150,66,17,48,0.0 +23150,48,12.75,32,0.0 +23150,37,26,8,0.0 +23150,13,6,27,0.0 +23150,61,28.5,46,0.0 +23150,7,30,9,0.0 +23150,8,40,37,0.0 +23150,26,31.23,22,0.0 +23150,20,81,40,0.0 +23150,32,32,4,0.0 +23150,56,38,44,0.0 +23150,71,21.5,19,0.0 +23150,44,19.45,19,0.0 +23150,46,12,42,0.0 +23150,22,21,21,0.0 +23150,10,31,19,0.0 +23150,36,19,27,0.0 +23150,11,21,29,0.0 +23150,63,43.9,48,0.0 +23150,72,34.8,30,0.0 +23150,45,9.5,7,0.0 +23150,17,39,24,0.0 +23150,33,2.5,23,0.0 +23150,34,14,29,0.0 +23150,64,33.25,37,0.0 +23150,77,13,19,0.0 +23150,59,55,44,0.0 +23150,4,22,11,0.0 +23150,16,17.45,2,0.0 +23150,62,49.3,10,0.0 +23150,47,9.5,49,0.0 +23150,38,263.5,35,0.0 +23150,70,15,42,0.0 +23150,57,19.5,35,0.0 +23150,49,20,50,0.0 +23150,42,14,22,0.0 +23150,41,9.65,43,0.0 +23150,5,21.35,48,0.0 +23150,76,18,15,0.0 +23150,28,45.6,50,0.0 +23150,40,18.4,16,0.0 +23150,65,21.05,32,0.0 +23150,50,16.25,41,0.0 +23150,51,53,7,0.0 +23150,54,7.45,8,0.0 +23151,67,14,35,0.0 +23151,60,34,7,0.0 +23151,41,9.65,6,0.0 +23151,48,12.75,41,0.0 +23151,32,32,19,0.0 +23151,43,46,26,0.0 +23151,16,17.45,35,0.0 +23151,39,18,35,0.0 +23151,27,43.9,41,0.0 +23151,65,21.05,12,0.0 +23151,6,25,1,0.0 +23151,40,18.4,29,0.0 +23151,15,15.5,24,0.0 +23151,61,28.5,41,0.0 +23151,29,123.79,13,0.0 +23151,9,97,39,0.0 +23151,71,21.5,21,0.0 +23151,44,19.45,46,0.0 +23151,69,36,33,0.0 +23151,1,18,15,0.0 +23151,57,19.5,42,0.0 +23151,28,45.6,5,0.0 +23151,73,15,32,0.0 +23151,18,62.5,50,0.0 +23151,26,31.23,48,0.0 +23151,58,13.25,4,0.0 +23151,56,38,44,0.0 +23151,11,21,12,0.0 +23151,37,26,14,0.0 +23151,19,9.2,14,0.0 +23151,68,12.5,10,0.0 +23151,70,15,13,0.0 +23151,5,21.35,1,0.0 +23151,76,18,49,0.0 +23151,64,33.25,17,0.0 +23151,13,6,38,0.0 +23151,33,2.5,38,0.0 +23151,20,81,22,0.0 +23151,14,23.25,16,0.0 +23151,52,7,26,0.0 +23151,74,10,46,0.0 +23151,59,55,33,0.0 +23151,62,49.3,17,0.0 +23151,49,20,26,0.0 +23151,66,17,2,0.0 +23151,21,10,3,0.0 +23151,7,30,50,0.0 +23152,31,12.5,45,0.0 +23152,43,46,26,0.0 +23152,37,26,10,0.0 +23152,16,17.45,43,0.0 +23152,59,55,14,0.0 +23152,35,18,41,0.0 +23152,22,21,18,0.0 +23152,50,16.25,42,0.0 +23152,48,12.75,25,0.0 +23152,26,31.23,10,0.0 +23152,60,34,33,0.0 +23152,20,81,28,0.0 +23152,62,49.3,48,0.0 +23152,73,15,21,0.0 +23152,39,18,3,0.0 +23152,44,19.45,20,0.0 +23152,27,43.9,13,0.0 +23152,6,25,41,0.0 +23152,34,14,5,0.0 +23152,28,45.6,18,0.0 +23152,11,21,49,0.0 +23152,21,10,32,0.0 +23152,64,33.25,13,0.0 +23152,9,97,43,0.0 +23152,13,6,16,0.0 +23152,40,18.4,37,0.0 +23152,77,13,32,0.0 +23152,5,21.35,44,0.0 +23152,65,21.05,35,0.0 +23152,57,19.5,41,0.0 +23152,61,28.5,37,0.0 +23152,56,38,13,0.0 +23152,54,7.45,50,0.0 +23153,75,7.75,43,0.0 +23153,41,9.65,19,0.0 +23153,12,38,41,0.0 +23153,30,25.89,27,0.0 +23153,5,21.35,3,0.0 +23153,47,9.5,14,0.0 +23153,67,14,24,0.0 +23153,14,23.25,40,0.0 +23153,60,34,15,0.0 +23153,23,9,32,0.0 +23153,65,21.05,28,0.0 +23153,59,55,2,0.0 +23153,16,17.45,5,0.0 +23153,51,53,18,0.0 +23153,9,97,12,0.0 +23153,42,14,27,0.0 +23153,37,26,42,0.0 +23154,49,20,25,0.0 +23154,17,39,11,0.0 +23154,60,34,39,0.0 +23154,9,97,36,0.0 +23154,20,81,44,0.0 +23154,43,46,24,0.0 +23154,66,17,43,0.0 +23154,21,10,23,0.0 +23154,50,16.25,1,0.0 +23154,62,49.3,6,0.0 +23154,31,12.5,4,0.0 +23154,58,13.25,28,0.0 +23154,23,9,32,0.0 +23154,34,14,8,0.0 +23154,42,14,5,0.0 +23154,4,22,39,0.0 +23154,46,12,6,0.0 +23154,41,9.65,20,0.0 +23154,33,2.5,47,0.0 +23154,52,7,34,0.0 +23154,6,25,31,0.0 +23154,65,21.05,20,0.0 +23154,39,18,20,0.0 +23154,32,32,37,0.0 +23154,14,23.25,22,0.0 +23154,18,62.5,27,0.0 +23154,70,15,21,0.0 +23154,57,19.5,7,0.0 +23154,44,19.45,8,0.0 +23154,67,14,24,0.0 +23154,38,263.5,38,0.0 +23154,77,13,21,0.0 +23154,35,18,35,0.0 +23154,51,53,9,0.0 +23154,68,12.5,10,0.0 +23154,12,38,33,0.0 +23155,14,23.25,40,0.0 +23155,45,9.5,28,0.0 +23155,18,62.5,22,0.0 +23155,12,38,36,0.0 +23155,7,30,37,0.0 +23155,56,38,40,0.0 +23155,50,16.25,21,0.0 +23155,61,28.5,14,0.0 +23155,63,43.9,15,0.0 +23155,22,21,21,0.0 +23155,4,22,35,0.0 +23155,25,14,9,0.0 +23155,31,12.5,20,0.0 +23155,35,18,12,0.0 +23155,66,17,28,0.0 +23155,49,20,2,0.0 +23155,58,13.25,21,0.0 +23155,17,39,49,0.0 +23155,51,53,39,0.0 +23155,3,10,26,0.0 +23155,37,26,16,0.0 +23155,54,7.45,42,0.0 +23155,10,31,47,0.0 +23155,20,81,21,0.0 +23155,8,40,3,0.0 +23155,30,25.89,43,0.0 +23155,11,21,8,0.0 +23155,55,24,31,0.0 +23155,70,15,7,0.0 +23155,65,21.05,15,0.0 +23155,26,31.23,2,0.0 +23155,36,19,12,0.0 +23155,42,14,13,0.0 +23155,5,21.35,10,0.0 +23155,33,2.5,7,0.0 +23155,67,14,13,0.0 +23155,19,9.2,10,0.0 +23155,69,36,3,0.0 +23155,60,34,44,0.0 +23155,77,13,29,0.0 +23155,1,18,26,0.0 +23155,46,12,27,0.0 +23155,73,15,2,0.0 +23155,59,55,35,0.0 +23155,16,17.45,34,0.0 +23155,38,263.5,41,0.0 +23155,52,7,28,0.0 +23155,41,9.65,36,0.0 +23155,62,49.3,38,0.0 +23155,44,19.45,38,0.0 +23155,57,19.5,42,0.0 +23155,9,97,44,0.0 +23155,34,14,15,0.0 +23155,68,12.5,23,0.0 +23155,15,15.5,46,0.0 +23155,72,34.8,7,0.0 +23155,71,21.5,29,0.0 +23155,75,7.75,11,0.0 +23155,74,10,41,0.0 +23155,29,123.79,10,0.0 +23155,27,43.9,1,0.0 +23155,24,4.5,31,0.0 +23155,53,32.8,25,0.0 +23155,48,12.75,30,0.0 +23155,40,18.4,13,0.0 +23156,13,6,5,0.0 +23156,8,40,47,0.0 +23156,42,14,25,0.0 +23156,20,81,13,0.0 +23156,66,17,18,0.0 +23156,3,10,2,0.0 +23156,29,123.79,30,0.0 +23156,41,9.65,11,0.0 +23156,60,34,16,0.0 +23156,40,18.4,43,0.0 +23156,26,31.23,22,0.0 +23156,6,25,35,0.0 +23156,52,7,1,0.0 +23156,27,43.9,40,0.0 +23156,14,23.25,13,0.0 +23156,7,30,34,0.0 +23156,38,263.5,29,0.0 +23156,1,18,26,0.0 +23156,33,2.5,15,0.0 +23156,18,62.5,23,0.0 +23156,12,38,17,0.0 +23156,43,46,19,0.0 +23156,2,19,14,0.0 +23156,65,21.05,24,0.0 +23156,37,26,6,0.0 +23156,57,19.5,50,0.0 +23156,28,45.6,38,0.0 +23156,45,9.5,45,0.0 +23156,77,13,11,0.0 +23156,39,18,30,0.0 +23156,4,22,42,0.0 +23156,64,33.25,44,0.0 +23156,59,55,34,0.0 +23156,61,28.5,46,0.0 +23156,73,15,1,0.0 +23156,25,14,36,0.0 +23156,11,21,46,0.0 +23156,17,39,49,0.0 +23157,60,34,13,0.0 +23157,37,26,37,0.0 +23157,12,38,26,0.0 +23157,22,21,41,0.0 +23157,45,9.5,36,0.0 +23157,14,23.25,33,0.0 +23157,67,14,44,0.0 +23157,70,15,41,0.0 +23157,49,20,7,0.0 +23157,52,7,39,0.0 +23157,24,4.5,8,0.0 +23157,35,18,36,0.0 +23157,39,18,3,0.0 +23157,6,25,9,0.0 +23157,26,31.23,3,0.0 +23157,17,39,30,0.0 +23157,34,14,14,0.0 +23157,74,10,48,0.0 +23157,1,18,26,0.0 +23157,43,46,45,0.0 +23157,30,25.89,32,0.0 +23157,3,10,25,0.0 +23157,44,19.45,14,0.0 +23157,9,97,6,0.0 +23157,8,40,43,0.0 +23157,18,62.5,13,0.0 +23157,75,7.75,45,0.0 +23157,73,15,24,0.0 +23157,55,24,21,0.0 +23157,13,6,50,0.0 +23157,57,19.5,1,0.0 +23157,62,49.3,23,0.0 +23157,2,19,33,0.0 +23157,42,14,12,0.0 +23157,48,12.75,18,0.0 +23157,5,21.35,42,0.0 +23157,69,36,49,0.0 +23157,36,19,28,0.0 +23157,59,55,28,0.0 +23157,51,53,41,0.0 +23157,58,13.25,30,0.0 +23157,50,16.25,32,0.0 +23157,53,32.8,22,0.0 +23157,32,32,16,0.0 +23157,28,45.6,43,0.0 +23157,21,10,28,0.0 +23157,61,28.5,20,0.0 +23157,41,9.65,23,0.0 +23157,19,9.2,1,0.0 +23157,71,21.5,6,0.0 +23157,47,9.5,22,0.0 +23157,7,30,10,0.0 +23157,38,263.5,6,0.0 +23158,32,32,4,0.0 +23158,57,19.5,26,0.0 +23158,46,12,6,0.0 +23158,14,23.25,26,0.0 +23158,1,18,49,0.0 +23158,8,40,41,0.0 +23158,76,18,19,0.0 +23158,48,12.75,7,0.0 +23158,11,21,46,0.0 +23158,19,9.2,24,0.0 +23158,37,26,19,0.0 +23158,60,34,22,0.0 +23158,56,38,20,0.0 +23158,22,21,6,0.0 +23158,4,22,21,0.0 +23158,69,36,45,0.0 +23158,64,33.25,5,0.0 +23158,62,49.3,5,0.0 +23158,54,7.45,27,0.0 +23158,72,34.8,49,0.0 +23158,51,53,5,0.0 +23158,39,18,31,0.0 +23158,45,9.5,28,0.0 +23158,6,25,17,0.0 +23158,7,30,49,0.0 +23158,27,43.9,34,0.0 +23158,50,16.25,23,0.0 +23158,70,15,35,0.0 +23158,55,24,47,0.0 +23158,5,21.35,39,0.0 +23158,36,19,4,0.0 +23158,15,15.5,29,0.0 +23158,35,18,30,0.0 +23158,73,15,18,0.0 +23158,44,19.45,17,0.0 +23158,9,97,40,0.0 +23158,41,9.65,13,0.0 +23158,16,17.45,16,0.0 +23158,43,46,20,0.0 +23158,53,32.8,6,0.0 +23158,24,4.5,1,0.0 +23158,10,31,22,0.0 +23158,59,55,17,0.0 +23158,67,14,35,0.0 +23158,68,12.5,42,0.0 +23159,40,18.4,18,0.0 +23159,76,18,26,0.0 +23159,18,62.5,11,0.0 +23159,46,12,44,0.0 +23159,49,20,34,0.0 +23159,69,36,44,0.0 +23159,48,12.75,25,0.0 +23159,4,22,31,0.0 +23159,70,15,22,0.0 +23159,58,13.25,22,0.0 +23159,74,10,29,0.0 +23159,6,25,49,0.0 +23159,19,9.2,47,0.0 +23159,13,6,9,0.0 +23159,1,18,37,0.0 +23159,61,28.5,34,0.0 +23159,72,34.8,18,0.0 +23159,22,21,50,0.0 +23159,39,18,24,0.0 +23159,17,39,19,0.0 +23159,68,12.5,8,0.0 +23159,44,19.45,47,0.0 +23159,11,21,28,0.0 +23159,59,55,18,0.0 +23159,2,19,11,0.0 +23159,10,31,40,0.0 +23159,35,18,7,0.0 +23159,51,53,11,0.0 +23159,21,10,3,0.0 +23159,31,12.5,42,0.0 +23159,64,33.25,26,0.0 +23159,63,43.9,16,0.0 +23159,34,14,39,0.0 +23159,15,15.5,39,0.0 +23159,9,97,8,0.0 +23159,67,14,20,0.0 +23159,5,21.35,28,0.0 +23159,57,19.5,43,0.0 +23159,7,30,3,0.0 +23159,38,263.5,4,0.0 +23159,42,14,38,0.0 +23159,53,32.8,7,0.0 +23159,60,34,8,0.0 +23159,55,24,47,0.0 +23159,77,13,3,0.0 +23159,8,40,10,0.0 +23159,56,38,47,0.0 +23159,65,21.05,34,0.0 +23159,27,43.9,49,0.0 +23159,24,4.5,21,0.0 +23160,41,9.65,17,0.0 +23160,39,18,24,0.0 +23160,50,16.25,36,0.0 +23160,72,34.8,45,0.0 +23160,74,10,33,0.0 +23160,9,97,4,0.0 +23160,55,24,44,0.0 +23160,63,43.9,49,0.0 +23160,16,17.45,36,0.0 +23160,54,7.45,18,0.0 +23160,64,33.25,11,0.0 +23160,14,23.25,19,0.0 +23160,47,9.5,32,0.0 +23160,53,32.8,43,0.0 +23160,44,19.45,4,0.0 +23160,19,9.2,15,0.0 +23160,57,19.5,46,0.0 +23160,35,18,23,0.0 +23160,71,21.5,9,0.0 +23160,34,14,40,0.0 +23160,43,46,28,0.0 +23160,58,13.25,38,0.0 +23160,45,9.5,49,0.0 +23160,61,28.5,20,0.0 +23160,28,45.6,17,0.0 +23160,49,20,19,0.0 +23160,1,18,5,0.0 +23160,25,14,27,0.0 +23160,11,21,32,0.0 +23160,32,32,37,0.0 +23161,26,31.23,2,0.0 +23161,77,13,41,0.0 +23161,67,14,48,0.0 +23161,21,10,47,0.0 +23161,23,9,36,0.0 +23161,33,2.5,36,0.0 +23161,10,31,28,0.0 +23161,58,13.25,29,0.0 +23161,14,23.25,38,0.0 +23161,63,43.9,31,0.0 +23161,18,62.5,9,0.0 +23161,53,32.8,23,0.0 +23161,52,7,16,0.0 +23161,27,43.9,27,0.0 +23161,71,21.5,45,0.0 +23161,5,21.35,20,0.0 +23161,44,19.45,31,0.0 +23161,37,26,33,0.0 +23161,59,55,15,0.0 +23161,42,14,20,0.0 +23161,11,21,28,0.0 +23161,15,15.5,49,0.0 +23161,75,7.75,37,0.0 +23161,69,36,21,0.0 +23161,16,17.45,16,0.0 +23161,61,28.5,50,0.0 +23161,43,46,9,0.0 +23161,50,16.25,3,0.0 +23161,76,18,25,0.0 +23161,66,17,10,0.0 +23162,54,7.45,27,0.0 +23162,46,12,22,0.0 +23162,22,21,39,0.0 +23162,24,4.5,21,0.0 +23162,30,25.89,45,0.0 +23162,15,15.5,36,0.0 +23162,69,36,24,0.0 +23162,21,10,35,0.0 +23162,67,14,30,0.0 +23162,31,12.5,42,0.0 +23162,68,12.5,8,0.0 +23162,26,31.23,37,0.0 +23162,64,33.25,27,0.0 +23162,45,9.5,21,0.0 +23162,42,14,22,0.0 +23162,32,32,17,0.0 +23162,29,123.79,18,0.0 +23162,44,19.45,10,0.0 +23162,13,6,47,0.0 +23162,4,22,22,0.0 +23162,60,34,39,0.0 +23162,43,46,10,0.0 +23162,59,55,49,0.0 +23162,47,9.5,19,0.0 +23162,14,23.25,41,0.0 +23162,10,31,2,0.0 +23162,5,21.35,38,0.0 +23162,25,14,45,0.0 +23162,55,24,26,0.0 +23162,36,19,14,0.0 +23162,16,17.45,12,0.0 +23162,3,10,1,0.0 +23162,6,25,5,0.0 +23162,19,9.2,37,0.0 +23162,23,9,20,0.0 +23162,57,19.5,43,0.0 +23162,37,26,17,0.0 +23162,52,7,9,0.0 +23162,7,30,30,0.0 +23163,1,18,13,0.0 +23163,76,18,37,0.0 +23163,27,43.9,4,0.0 +23163,6,25,12,0.0 +23163,71,21.5,21,0.0 +23163,52,7,31,0.0 +23163,53,32.8,17,0.0 +23163,69,36,5,0.0 +23163,42,14,29,0.0 +23163,30,25.89,6,0.0 +23163,61,28.5,9,0.0 +23163,2,19,3,0.0 +23163,28,45.6,41,0.0 +23163,7,30,23,0.0 +23163,9,97,49,0.0 +23163,66,17,23,0.0 +23163,31,12.5,10,0.0 +23163,16,17.45,45,0.0 +23163,68,12.5,31,0.0 +23163,4,22,25,0.0 +23163,22,21,44,0.0 +23163,33,2.5,16,0.0 +23163,70,15,33,0.0 +23163,17,39,1,0.0 +23163,45,9.5,34,0.0 +23163,29,123.79,25,0.0 +23163,32,32,49,0.0 +23163,18,62.5,20,0.0 +23163,39,18,6,0.0 +23163,3,10,43,0.0 +23164,36,19,41,0.0 +23164,42,14,14,0.0 +23164,29,123.79,12,0.0 +23164,74,10,22,0.0 +23164,55,24,44,0.0 +23164,7,30,28,0.0 +23164,11,21,14,0.0 +23164,23,9,8,0.0 +23164,56,38,3,0.0 +23164,75,7.75,34,0.0 +23164,10,31,1,0.0 +23164,28,45.6,34,0.0 +23164,68,12.5,37,0.0 +23164,9,97,11,0.0 +23164,60,34,40,0.0 +23164,72,34.8,30,0.0 +23164,12,38,6,0.0 +23164,34,14,34,0.0 +23164,37,26,25,0.0 +23164,2,19,9,0.0 +23164,17,39,46,0.0 +23164,59,55,35,0.0 +23164,32,32,15,0.0 +23164,58,13.25,30,0.0 +23164,21,10,6,0.0 +23164,61,28.5,43,0.0 +23164,44,19.45,39,0.0 +23164,5,21.35,9,0.0 +23164,51,53,49,0.0 +23164,26,31.23,35,0.0 +23164,41,9.65,15,0.0 +23164,24,4.5,23,0.0 +23164,33,2.5,17,0.0 +23164,27,43.9,37,0.0 +23164,49,20,12,0.0 +23164,30,25.89,44,0.0 +23164,73,15,15,0.0 +23164,18,62.5,27,0.0 +23164,40,18.4,43,0.0 +23164,52,7,44,0.0 +23164,6,25,38,0.0 +23164,62,49.3,46,0.0 +23164,13,6,45,0.0 +23164,8,40,30,0.0 +23164,16,17.45,2,0.0 +23164,67,14,28,0.0 +23164,3,10,29,0.0 +23164,38,263.5,27,0.0 +23164,35,18,46,0.0 +23164,53,32.8,41,0.0 +23164,65,21.05,26,0.0 +23164,47,9.5,23,0.0 +23164,50,16.25,38,0.0 +23164,20,81,33,0.0 +23164,39,18,8,0.0 +23164,22,21,22,0.0 +23164,4,22,18,0.0 +23164,69,36,32,0.0 +23165,59,55,19,0.0 +23165,52,7,27,0.0 +23165,10,31,5,0.0 +23165,55,24,8,0.0 +23165,36,19,8,0.0 +23165,26,31.23,48,0.0 +23165,47,9.5,20,0.0 +23165,70,15,2,0.0 +23165,57,19.5,28,0.0 +23165,35,18,46,0.0 +23165,15,15.5,44,0.0 +23165,24,4.5,26,0.0 +23165,46,12,40,0.0 +23165,20,81,27,0.0 +23165,61,28.5,14,0.0 +23165,34,14,9,0.0 +23165,30,25.89,27,0.0 +23165,76,18,45,0.0 +23165,64,33.25,5,0.0 +23165,39,18,5,0.0 +23165,67,14,45,0.0 +23165,50,16.25,21,0.0 +23165,19,9.2,10,0.0 +23165,7,30,38,0.0 +23165,38,263.5,26,0.0 +23165,53,32.8,32,0.0 +23165,69,36,37,0.0 +23165,56,38,9,0.0 +23165,3,10,50,0.0 +23165,68,12.5,34,0.0 +23165,14,23.25,18,0.0 +23165,23,9,43,0.0 +23165,75,7.75,18,0.0 +23165,51,53,23,0.0 +23165,32,32,37,0.0 +23165,58,13.25,12,0.0 +23165,29,123.79,11,0.0 +23165,62,49.3,6,0.0 +23165,48,12.75,38,0.0 +23165,45,9.5,18,0.0 +23165,9,97,17,0.0 +23165,11,21,28,0.0 +23165,49,20,6,0.0 +23165,17,39,18,0.0 +23165,13,6,49,0.0 +23165,74,10,30,0.0 +23165,63,43.9,17,0.0 +23165,73,15,16,0.0 +23165,25,14,50,0.0 +23165,41,9.65,12,0.0 +23165,1,18,43,0.0 +23166,16,17.45,18,0.0 +23166,68,12.5,50,0.0 +23166,26,31.23,49,0.0 +23167,63,43.9,8,0.0 +23167,38,263.5,3,0.0 +23167,26,31.23,50,0.0 +23167,10,31,3,0.0 +23167,40,18.4,13,0.0 +23167,45,9.5,17,0.0 +23167,22,21,23,0.0 +23167,65,21.05,19,0.0 +23168,3,10,16,0.0 +23168,45,9.5,10,0.0 +23169,46,12,29,0.0 +23169,60,34,3,0.0 +23169,68,12.5,26,0.0 +23169,18,62.5,43,0.0 +23169,50,16.25,42,0.0 +23169,31,12.5,45,0.0 +23169,70,15,12,0.0 +23169,24,4.5,3,0.0 +23169,35,18,20,0.0 +23169,52,7,14,0.0 +23169,42,14,48,0.0 +23169,77,13,30,0.0 +23169,3,10,39,0.0 +23169,76,18,14,0.0 +23169,1,18,11,0.0 +23169,49,20,17,0.0 +23169,69,36,40,0.0 +23169,6,25,1,0.0 +23169,21,10,41,0.0 +23169,39,18,5,0.0 +23169,61,28.5,42,0.0 +23169,62,49.3,37,0.0 +23169,27,43.9,18,0.0 +23169,14,23.25,36,0.0 +23169,56,38,46,0.0 +23169,44,19.45,26,0.0 +23169,71,21.5,32,0.0 +23169,58,13.25,30,0.0 +23169,73,15,5,0.0 +23169,28,45.6,33,0.0 +23169,8,40,32,0.0 +23169,63,43.9,18,0.0 +23169,67,14,45,0.0 +23169,19,9.2,18,0.0 +23169,41,9.65,19,0.0 +23169,37,26,35,0.0 +23169,29,123.79,32,0.0 +23169,64,33.25,2,0.0 +23169,43,46,27,0.0 +23169,33,2.5,42,0.0 +23169,59,55,42,0.0 +23169,22,21,6,0.0 +23169,36,19,44,0.0 +23169,38,263.5,37,0.0 +23169,45,9.5,35,0.0 +23169,23,9,49,0.0 +23169,40,18.4,47,0.0 +23169,4,22,19,0.0 +23169,74,10,48,0.0 +23169,2,19,39,0.0 +23169,32,32,45,0.0 +23169,10,31,19,0.0 +23169,34,14,33,0.0 +23169,26,31.23,8,0.0 +23169,12,38,16,0.0 +23169,15,15.5,4,0.0 +23169,66,17,31,0.0 +23169,48,12.75,30,0.0 +23169,53,32.8,29,0.0 +23169,47,9.5,32,0.0 +23169,16,17.45,44,0.0 +23169,65,21.05,16,0.0 +23169,17,39,38,0.0 +23169,5,21.35,21,0.0 +23169,25,14,17,0.0 +23169,11,21,1,0.0 +23169,20,81,8,0.0 +23169,55,24,44,0.0 +23169,51,53,19,0.0 +23169,13,6,24,0.0 +23169,57,19.5,31,0.0 +23169,30,25.89,17,0.0 +23169,75,7.75,46,0.0 +23169,7,30,8,0.0 +23170,37,26,13,0.0 +23170,74,10,7,0.0 +23170,6,25,2,0.0 +23170,50,16.25,32,0.0 +23170,47,9.5,25,0.0 +23170,38,263.5,27,0.0 +23170,10,31,7,0.0 +23170,64,33.25,33,0.0 +23170,40,18.4,28,0.0 +23170,61,28.5,24,0.0 +23170,49,20,18,0.0 +23170,54,7.45,38,0.0 +23170,11,21,28,0.0 +23170,65,21.05,6,0.0 +23170,22,21,49,0.0 +23170,57,19.5,26,0.0 +23170,59,55,50,0.0 +23170,15,15.5,45,0.0 +23170,72,34.8,10,0.0 +23170,33,2.5,16,0.0 +23170,5,21.35,6,0.0 +23170,13,6,34,0.0 +23170,2,19,8,0.0 +23170,66,17,31,0.0 +23170,23,9,36,0.0 +23170,14,23.25,33,0.0 +23170,45,9.5,11,0.0 +23170,58,13.25,10,0.0 +23170,68,12.5,36,0.0 +23170,1,18,35,0.0 +23170,77,13,4,0.0 +23170,4,22,29,0.0 +23170,48,12.75,13,0.0 +23171,7,30,13,0.0 +23171,57,19.5,9,0.0 +23171,12,38,28,0.0 +23171,62,49.3,14,0.0 +23171,61,28.5,4,0.0 +23171,74,10,50,0.0 +23171,23,9,35,0.0 +23171,41,9.65,38,0.0 +23171,68,12.5,36,0.0 +23171,42,14,42,0.0 +23171,30,25.89,5,0.0 +23171,25,14,43,0.0 +23171,55,24,47,0.0 +23171,50,16.25,13,0.0 +23171,53,32.8,17,0.0 +23171,67,14,35,0.0 +23171,58,13.25,2,0.0 +23171,39,18,25,0.0 +23171,28,45.6,37,0.0 +23171,45,9.5,21,0.0 +23171,69,36,12,0.0 +23171,11,21,41,0.0 +23171,35,18,32,0.0 +23171,52,7,10,0.0 +23171,2,19,10,0.0 +23171,19,9.2,48,0.0 +23171,63,43.9,46,0.0 +23171,37,26,19,0.0 +23171,9,97,46,0.0 +23171,8,40,3,0.0 +23171,17,39,37,0.0 +23171,1,18,27,0.0 +23171,72,34.8,39,0.0 +23171,38,263.5,26,0.0 +23171,34,14,44,0.0 +23171,16,17.45,32,0.0 +23171,10,31,44,0.0 +23171,26,31.23,39,0.0 +23171,66,17,20,0.0 +23171,3,10,33,0.0 +23171,32,32,6,0.0 +23171,75,7.75,38,0.0 +23171,65,21.05,38,0.0 +23171,20,81,13,0.0 +23171,14,23.25,48,0.0 +23171,73,15,23,0.0 +23171,54,7.45,26,0.0 +23171,29,123.79,25,0.0 +23171,15,15.5,11,0.0 +23171,56,38,5,0.0 +23171,64,33.25,46,0.0 +23171,36,19,28,0.0 +23171,21,10,41,0.0 +23171,33,2.5,39,0.0 +23171,27,43.9,22,0.0 +23171,4,22,2,0.0 +23171,22,21,18,0.0 +23171,31,12.5,4,0.0 +23171,40,18.4,12,0.0 +23171,51,53,45,0.0 +23171,70,15,32,0.0 +23171,24,4.5,7,0.0 +23171,46,12,33,0.0 +23171,13,6,6,0.0 +23172,27,43.9,10,0.0 +23172,68,12.5,49,0.0 +23172,53,32.8,13,0.0 +23172,12,38,25,0.0 +23172,47,9.5,35,0.0 +23172,25,14,48,0.0 +23172,66,17,25,0.0 +23172,3,10,1,0.0 +23172,52,7,15,0.0 +23172,63,43.9,17,0.0 +23172,54,7.45,26,0.0 +23172,48,12.75,19,0.0 +23172,75,7.75,33,0.0 +23172,42,14,4,0.0 +23172,7,30,2,0.0 +23172,40,18.4,6,0.0 +23172,49,20,12,0.0 +23172,32,32,23,0.0 +23172,9,97,35,0.0 +23173,51,53,1,0.0 +23173,54,7.45,9,0.0 +23173,21,10,32,0.0 +23173,31,12.5,33,0.0 +23173,33,2.5,7,0.0 +23173,4,22,26,0.0 +23173,70,15,50,0.0 +23173,3,10,13,0.0 +23173,11,21,41,0.0 +23173,34,14,17,0.0 +23173,62,49.3,40,0.0 +23173,49,20,41,0.0 +23173,19,9.2,35,0.0 +23173,63,43.9,4,0.0 +23173,75,7.75,37,0.0 +23173,64,33.25,1,0.0 +23173,72,34.8,1,0.0 +23173,58,13.25,21,0.0 +23173,55,24,25,0.0 +23173,42,14,23,0.0 +23173,8,40,8,0.0 +23173,24,4.5,2,0.0 +23173,67,14,25,0.0 +23173,50,16.25,45,0.0 +23173,65,21.05,8,0.0 +23173,47,9.5,31,0.0 +23173,45,9.5,39,0.0 +23173,41,9.65,45,0.0 +23173,77,13,29,0.0 +23173,20,81,23,0.0 +23173,38,263.5,8,0.0 +23173,35,18,8,0.0 +23173,44,19.45,22,0.0 +23173,25,14,3,0.0 +23173,56,38,33,0.0 +23173,15,15.5,35,0.0 +23173,73,15,33,0.0 +23173,29,123.79,1,0.0 +23173,23,9,2,0.0 +23173,52,7,45,0.0 +23173,53,32.8,16,0.0 +23173,46,12,19,0.0 +23173,32,32,26,0.0 +23173,60,34,15,0.0 +23173,2,19,31,0.0 +23174,1,18,34,0.0 +23174,8,40,49,0.0 +23174,72,34.8,32,0.0 +23174,74,10,46,0.0 +23174,25,14,7,0.0 +23174,12,38,23,0.0 +23174,24,4.5,16,0.0 +23174,58,13.25,15,0.0 +23174,20,81,45,0.0 +23174,27,43.9,40,0.0 +23174,73,15,38,0.0 +23174,67,14,7,0.0 +23174,17,39,27,0.0 +23174,23,9,20,0.0 +23174,40,18.4,41,0.0 +23174,14,23.25,37,0.0 +23174,32,32,44,0.0 +23174,30,25.89,39,0.0 +23174,33,2.5,22,0.0 +23174,26,31.23,36,0.0 +23174,66,17,7,0.0 +23174,35,18,1,0.0 +23174,29,123.79,27,0.0 +23174,54,7.45,37,0.0 +23174,36,19,5,0.0 +23174,77,13,31,0.0 +23174,21,10,30,0.0 +23174,49,20,27,0.0 +23174,46,12,2,0.0 +23174,39,18,2,0.0 +23174,47,9.5,38,0.0 +23174,9,97,22,0.0 +23174,42,14,3,0.0 +23174,50,16.25,44,0.0 +23174,43,46,32,0.0 +23174,19,9.2,49,0.0 +23174,71,21.5,20,0.0 +23174,4,22,32,0.0 +23174,63,43.9,18,0.0 +23174,22,21,39,0.0 +23174,53,32.8,26,0.0 +23174,59,55,17,0.0 +23174,65,21.05,18,0.0 +23174,28,45.6,13,0.0 +23174,7,30,15,0.0 +23174,64,33.25,40,0.0 +23174,2,19,36,0.0 +23174,51,53,21,0.0 +23174,10,31,14,0.0 +23174,5,21.35,47,0.0 +23174,70,15,29,0.0 +23175,33,2.5,4,0.0 +23175,47,9.5,32,0.0 +23175,57,19.5,23,0.0 +23175,51,53,1,0.0 +23175,20,81,19,0.0 +23175,1,18,10,0.0 +23175,8,40,43,0.0 +23175,53,32.8,3,0.0 +23175,54,7.45,33,0.0 +23175,5,21.35,47,0.0 +23175,70,15,32,0.0 +23175,44,19.45,41,0.0 +23175,36,19,27,0.0 +23175,59,55,38,0.0 +23175,16,17.45,34,0.0 +23175,17,39,3,0.0 +23175,9,97,30,0.0 +23175,41,9.65,16,0.0 +23175,40,18.4,49,0.0 +23175,23,9,22,0.0 +23175,3,10,35,0.0 +23175,66,17,37,0.0 +23175,32,32,50,0.0 +23175,68,12.5,41,0.0 +23175,19,9.2,41,0.0 +23175,27,43.9,3,0.0 +23175,60,34,32,0.0 +23175,39,18,50,0.0 +23175,7,30,49,0.0 +23175,67,14,17,0.0 +23175,65,21.05,49,0.0 +23175,21,10,26,0.0 +23175,58,13.25,5,0.0 +23175,35,18,30,0.0 +23175,63,43.9,26,0.0 +23175,10,31,46,0.0 +23175,75,7.75,21,0.0 +23175,26,31.23,48,0.0 +23175,6,25,26,0.0 +23175,12,38,44,0.0 +23175,37,26,43,0.0 +23175,46,12,40,0.0 +23175,13,6,31,0.0 +23175,61,28.5,29,0.0 +23176,72,34.8,30,0.0 +23176,75,7.75,30,0.0 +23176,22,21,20,0.0 +23176,8,40,40,0.0 +23176,24,4.5,9,0.0 +23176,10,31,11,0.0 +23176,4,22,9,0.0 +23176,21,10,17,0.0 +23176,57,19.5,50,0.0 +23176,60,34,2,0.0 +23176,74,10,31,0.0 +23176,37,26,48,0.0 +23176,62,49.3,26,0.0 +23176,16,17.45,9,0.0 +23176,11,21,1,0.0 +23176,31,12.5,41,0.0 +23176,17,39,38,0.0 +23176,70,15,3,0.0 +23176,77,13,14,0.0 +23176,48,12.75,46,0.0 +23176,32,32,46,0.0 +23176,68,12.5,21,0.0 +23176,6,25,11,0.0 +23176,46,12,19,0.0 +23176,34,14,36,0.0 +23176,42,14,44,0.0 +23176,38,263.5,2,0.0 +23176,50,16.25,48,0.0 +23176,13,6,27,0.0 +23176,73,15,27,0.0 +23176,29,123.79,32,0.0 +23176,39,18,47,0.0 +23176,58,13.25,42,0.0 +23176,7,30,7,0.0 +23176,69,36,22,0.0 +23176,65,21.05,50,0.0 +23176,49,20,2,0.0 +23176,2,19,41,0.0 +23176,18,62.5,19,0.0 +23176,66,17,31,0.0 +23176,3,10,13,0.0 +23176,54,7.45,27,0.0 +23176,20,81,42,0.0 +23176,33,2.5,19,0.0 +23176,61,28.5,50,0.0 +23176,67,14,37,0.0 +23176,15,15.5,40,0.0 +23176,53,32.8,43,0.0 +23176,44,19.45,2,0.0 +23176,55,24,36,0.0 +23176,45,9.5,50,0.0 +23176,43,46,5,0.0 +23176,41,9.65,21,0.0 +23176,76,18,38,0.0 +23176,12,38,37,0.0 +23176,59,55,5,0.0 +23176,28,45.6,8,0.0 +23176,35,18,11,0.0 +23176,26,31.23,4,0.0 +23176,14,23.25,27,0.0 +23176,64,33.25,17,0.0 +23176,25,14,37,0.0 +23176,30,25.89,45,0.0 +23176,52,7,15,0.0 +23176,27,43.9,11,0.0 +23177,36,19,10,0.0 +23177,64,33.25,28,0.0 +23177,41,9.65,3,0.0 +23178,35,18,33,0.0 +23178,64,33.25,14,0.0 +23178,39,18,49,0.0 +23178,32,32,43,0.0 +23178,65,21.05,21,0.0 +23178,36,19,6,0.0 +23178,15,15.5,35,0.0 +23178,74,10,44,0.0 +23178,33,2.5,37,0.0 +23178,42,14,29,0.0 +23178,13,6,10,0.0 +23178,69,36,49,0.0 +23178,75,7.75,46,0.0 +23178,46,12,4,0.0 +23178,9,97,43,0.0 +23178,60,34,1,0.0 +23178,51,53,44,0.0 +23178,45,9.5,13,0.0 +23178,49,20,1,0.0 +23178,63,43.9,38,0.0 +23178,7,30,26,0.0 +23178,43,46,30,0.0 +23178,27,43.9,25,0.0 +23178,23,9,13,0.0 +23178,37,26,6,0.0 +23178,71,21.5,41,0.0 +23178,38,263.5,38,0.0 +23178,12,38,27,0.0 +23178,70,15,36,0.0 +23178,30,25.89,47,0.0 +23178,22,21,12,0.0 +23178,66,17,50,0.0 +23178,14,23.25,33,0.0 +23178,52,7,16,0.0 +23178,68,12.5,15,0.0 +23178,5,21.35,49,0.0 +23178,3,10,24,0.0 +23178,29,123.79,28,0.0 +23178,28,45.6,49,0.0 +23178,4,22,9,0.0 +23178,19,9.2,5,0.0 +23178,31,12.5,46,0.0 +23178,72,34.8,19,0.0 +23178,77,13,8,0.0 +23178,58,13.25,47,0.0 +23178,62,49.3,8,0.0 +23178,76,18,14,0.0 +23178,8,40,49,0.0 +23178,73,15,33,0.0 +23178,20,81,18,0.0 +23178,1,18,36,0.0 +23178,40,18.4,25,0.0 +23179,75,7.75,1,0.0 +23179,48,12.75,13,0.0 +23179,39,18,22,0.0 +23179,72,34.8,29,0.0 +23179,19,9.2,21,0.0 +23179,58,13.25,3,0.0 +23179,37,26,22,0.0 +23179,23,9,11,0.0 +23179,51,53,1,0.0 +23179,65,21.05,8,0.0 +23179,77,13,31,0.0 +23179,3,10,18,0.0 +23179,63,43.9,39,0.0 +23179,61,28.5,25,0.0 +23179,27,43.9,6,0.0 +23179,67,14,12,0.0 +23179,68,12.5,39,0.0 +23179,9,97,48,0.0 +23179,6,25,44,0.0 +23179,33,2.5,41,0.0 +23179,8,40,12,0.0 +23179,2,19,49,0.0 +23179,17,39,12,0.0 +23179,28,45.6,43,0.0 +23179,1,18,11,0.0 +23179,4,22,10,0.0 +23179,7,30,2,0.0 +23179,11,21,45,0.0 +23179,45,9.5,14,0.0 +23179,53,32.8,29,0.0 +23179,55,24,40,0.0 +23179,64,33.25,50,0.0 +23179,47,9.5,29,0.0 +23179,73,15,29,0.0 +23179,5,21.35,11,0.0 +23179,70,15,2,0.0 +23179,32,32,31,0.0 +23179,42,14,7,0.0 +23179,26,31.23,34,0.0 +23179,20,81,9,0.0 +23179,40,18.4,35,0.0 +23179,10,31,45,0.0 +23179,30,25.89,8,0.0 +23179,46,12,31,0.0 +23179,43,46,46,0.0 +23179,56,38,38,0.0 +23179,59,55,26,0.0 +23179,50,16.25,15,0.0 +23179,15,15.5,45,0.0 +23179,13,6,27,0.0 +23179,35,18,28,0.0 +23179,18,62.5,50,0.0 +23179,54,7.45,36,0.0 +23179,34,14,22,0.0 +23179,22,21,14,0.0 +23179,57,19.5,3,0.0 +23179,29,123.79,50,0.0 +23179,41,9.65,3,0.0 +23179,60,34,19,0.0 +23179,25,14,22,0.0 +23179,62,49.3,16,0.0 +23179,14,23.25,50,0.0 +23179,24,4.5,25,0.0 +23179,44,19.45,39,0.0 +23179,74,10,9,0.0 +23179,49,20,34,0.0 +23179,52,7,32,0.0 +23180,2,19,21,0.0 +23180,53,32.8,18,0.0 +23180,51,53,38,0.0 +23180,69,36,20,0.0 +23180,22,21,38,0.0 +23180,28,45.6,27,0.0 +23180,68,12.5,41,0.0 +23180,4,22,12,0.0 +23180,42,14,28,0.0 +23180,70,15,27,0.0 +23180,65,21.05,2,0.0 +23180,35,18,43,0.0 +23180,57,19.5,15,0.0 +23180,54,7.45,45,0.0 +23180,46,12,40,0.0 +23180,41,9.65,39,0.0 +23180,25,14,12,0.0 +23180,33,2.5,4,0.0 +23180,56,38,36,0.0 +23180,43,46,38,0.0 +23180,61,28.5,9,0.0 +23180,34,14,8,0.0 +23180,10,31,19,0.0 +23180,67,14,45,0.0 +23180,24,4.5,32,0.0 +23180,45,9.5,22,0.0 +23180,17,39,6,0.0 +23180,23,9,37,0.0 +23180,19,9.2,17,0.0 +23180,62,49.3,1,0.0 +23180,52,7,9,0.0 +23180,47,9.5,41,0.0 +23180,13,6,32,0.0 +23180,37,26,10,0.0 +23180,20,81,29,0.0 +23180,76,18,26,0.0 +23180,29,123.79,30,0.0 +23180,12,38,26,0.0 +23180,74,10,47,0.0 +23180,73,15,13,0.0 +23180,48,12.75,11,0.0 +23180,14,23.25,16,0.0 +23180,38,263.5,44,0.0 +23180,71,21.5,28,0.0 +23180,31,12.5,21,0.0 +23180,77,13,50,0.0 +23180,59,55,6,0.0 +23180,32,32,12,0.0 +23180,60,34,19,0.0 +23180,49,20,32,0.0 +23180,72,34.8,28,0.0 +23180,7,30,35,0.0 +23180,3,10,39,0.0 +23180,8,40,15,0.0 +23180,30,25.89,6,0.0 +23180,16,17.45,49,0.0 +23180,21,10,7,0.0 +23180,27,43.9,27,0.0 +23180,63,43.9,7,0.0 +23180,5,21.35,1,0.0 +23180,11,21,21,0.0 +23180,36,19,11,0.0 +23180,1,18,46,0.0 +23180,6,25,36,0.0 +23180,15,15.5,26,0.0 +23180,26,31.23,3,0.0 +23180,55,24,17,0.0 +23180,50,16.25,37,0.0 +23180,44,19.45,1,0.0 +23180,66,17,41,0.0 +23181,34,14,45,0.0 +23181,64,33.25,38,0.0 +23181,62,49.3,29,0.0 +23181,68,12.5,7,0.0 +23181,13,6,13,0.0 +23181,25,14,24,0.0 +23181,38,263.5,46,0.0 +23181,22,21,14,0.0 +23181,8,40,45,0.0 +23181,2,19,39,0.0 +23181,49,20,38,0.0 +23181,60,34,41,0.0 +23181,43,46,17,0.0 +23181,4,22,49,0.0 +23181,27,43.9,47,0.0 +23181,47,9.5,18,0.0 +23181,23,9,47,0.0 +23181,30,25.89,19,0.0 +23181,45,9.5,15,0.0 +23181,17,39,50,0.0 +23181,41,9.65,10,0.0 +23181,69,36,4,0.0 +23181,12,38,43,0.0 +23181,7,30,40,0.0 +23181,9,97,26,0.0 +23181,33,2.5,6,0.0 +23181,14,23.25,32,0.0 +23181,55,24,34,0.0 +23181,19,9.2,44,0.0 +23181,44,19.45,15,0.0 +23181,58,13.25,36,0.0 +23181,15,15.5,43,0.0 +23181,54,7.45,49,0.0 +23181,21,10,27,0.0 +23181,52,7,36,0.0 +23181,56,38,43,0.0 +23181,5,21.35,50,0.0 +23181,37,26,5,0.0 +23181,61,28.5,40,0.0 +23181,71,21.5,50,0.0 +23181,36,19,30,0.0 +23181,29,123.79,17,0.0 +23181,40,18.4,15,0.0 +23181,16,17.45,34,0.0 +23181,31,12.5,25,0.0 +23181,3,10,17,0.0 +23182,28,45.6,12,0.0 +23182,3,10,9,0.0 +23182,46,12,27,0.0 +23182,30,25.89,3,0.0 +23182,14,23.25,23,0.0 +23182,2,19,1,0.0 +23182,61,28.5,4,0.0 +23182,33,2.5,31,0.0 +23182,36,19,43,0.0 +23182,12,38,29,0.0 +23182,21,10,21,0.0 +23182,16,17.45,27,0.0 +23182,49,20,16,0.0 +23182,32,32,19,0.0 +23182,1,18,14,0.0 +23182,75,7.75,33,0.0 +23182,42,14,26,0.0 +23182,63,43.9,17,0.0 +23182,44,19.45,7,0.0 +23182,68,12.5,32,0.0 +23182,4,22,40,0.0 +23182,67,14,32,0.0 +23182,22,21,11,0.0 +23182,40,18.4,12,0.0 +23182,58,13.25,21,0.0 +23183,20,81,23,0.0 +23183,23,9,7,0.0 +23183,70,15,5,0.0 +23183,46,12,33,0.0 +23183,4,22,43,0.0 +23183,8,40,42,0.0 +23183,50,16.25,7,0.0 +23183,1,18,12,0.0 +23183,71,21.5,10,0.0 +23183,75,7.75,10,0.0 +23183,15,15.5,17,0.0 +23183,63,43.9,33,0.0 +23183,12,38,9,0.0 +23183,53,32.8,39,0.0 +23183,45,9.5,16,0.0 +23183,25,14,41,0.0 +23183,52,7,24,0.0 +23183,54,7.45,39,0.0 +23183,64,33.25,41,0.0 +23183,47,9.5,29,0.0 +23183,37,26,11,0.0 +23183,56,38,24,0.0 +23183,7,30,11,0.0 +23183,38,263.5,22,0.0 +23183,11,21,3,0.0 +23183,76,18,39,0.0 +23183,41,9.65,20,0.0 +23183,44,19.45,23,0.0 +23183,67,14,49,0.0 +23183,40,18.4,20,0.0 +23183,5,21.35,13,0.0 +23183,68,12.5,19,0.0 +23183,22,21,37,0.0 +23183,29,123.79,15,0.0 +23183,26,31.23,32,0.0 +23183,65,21.05,19,0.0 +23183,27,43.9,45,0.0 +23183,73,15,3,0.0 +23183,34,14,29,0.0 +23183,32,32,46,0.0 +23183,30,25.89,14,0.0 +23183,55,24,34,0.0 +23183,24,4.5,2,0.0 +23183,60,34,45,0.0 +23183,16,17.45,26,0.0 +23183,28,45.6,39,0.0 +23183,58,13.25,15,0.0 +23183,61,28.5,31,0.0 +23183,39,18,11,0.0 +23183,51,53,2,0.0 +23183,59,55,19,0.0 +23183,35,18,8,0.0 +23183,57,19.5,14,0.0 +23183,13,6,34,0.0 +23183,6,25,15,0.0 +23183,3,10,1,0.0 +23183,14,23.25,9,0.0 +23183,31,12.5,23,0.0 +23183,9,97,17,0.0 +23183,18,62.5,15,0.0 +23183,74,10,36,0.0 +23183,62,49.3,2,0.0 +23183,21,10,41,0.0 +23183,77,13,27,0.0 +23183,66,17,5,0.0 +23183,33,2.5,4,0.0 +23183,69,36,5,0.0 +23184,60,34,2,0.0 +23184,20,81,43,0.0 +23184,59,55,48,0.0 +23184,4,22,37,0.0 +23184,40,18.4,1,0.0 +23184,8,40,31,0.0 +23184,61,28.5,31,0.0 +23184,17,39,37,0.0 +23184,10,31,48,0.0 +23184,22,21,4,0.0 +23184,52,7,17,0.0 +23184,29,123.79,16,0.0 +23184,34,14,6,0.0 +23184,36,19,49,0.0 +23184,2,19,18,0.0 +23184,7,30,48,0.0 +23184,21,10,14,0.0 +23184,55,24,41,0.0 +23184,54,7.45,27,0.0 +23184,32,32,33,0.0 +23184,19,9.2,19,0.0 +23184,30,25.89,24,0.0 +23184,13,6,31,0.0 +23184,11,21,31,0.0 +23184,68,12.5,37,0.0 +23184,72,34.8,40,0.0 +23184,48,12.75,13,0.0 +23184,35,18,30,0.0 +23184,1,18,7,0.0 +23185,19,9.2,12,0.0 +23185,30,25.89,39,0.0 +23185,66,17,23,0.0 +23185,21,10,23,0.0 +23185,23,9,48,0.0 +23185,72,34.8,31,0.0 +23185,41,9.65,24,0.0 +23185,73,15,16,0.0 +23185,70,15,48,0.0 +23185,65,21.05,15,0.0 +23185,4,22,43,0.0 +23185,75,7.75,17,0.0 +23185,9,97,42,0.0 +23185,22,21,3,0.0 +23185,3,10,20,0.0 +23185,63,43.9,35,0.0 +23185,33,2.5,10,0.0 +23185,7,30,35,0.0 +23185,52,7,7,0.0 +23185,39,18,14,0.0 +23185,68,12.5,5,0.0 +23185,51,53,1,0.0 +23185,5,21.35,29,0.0 +23185,77,13,50,0.0 +23185,46,12,11,0.0 +23185,57,19.5,18,0.0 +23185,50,16.25,10,0.0 +23185,35,18,22,0.0 +23185,61,28.5,11,0.0 +23185,37,26,35,0.0 +23185,16,17.45,25,0.0 +23185,24,4.5,30,0.0 +23185,25,14,26,0.0 +23185,26,31.23,44,0.0 +23185,54,7.45,15,0.0 +23185,43,46,9,0.0 +23185,15,15.5,6,0.0 +23185,11,21,50,0.0 +23185,28,45.6,17,0.0 +23185,38,263.5,42,0.0 +23185,44,19.45,2,0.0 +23185,58,13.25,39,0.0 +23185,56,38,47,0.0 +23185,10,31,14,0.0 +23185,59,55,3,0.0 +23185,55,24,14,0.0 +23185,36,19,19,0.0 +23185,69,36,16,0.0 +23185,31,12.5,24,0.0 +23185,62,49.3,8,0.0 +23185,71,21.5,9,0.0 +23185,6,25,5,0.0 +23185,12,38,30,0.0 +23185,2,19,8,0.0 +23185,13,6,29,0.0 +23185,18,62.5,37,0.0 +23185,76,18,12,0.0 +23186,9,97,47,0.0 +23186,59,55,42,0.0 +23186,25,14,38,0.0 +23186,51,53,27,0.0 +23186,48,12.75,1,0.0 +23186,32,32,8,0.0 +23186,70,15,1,0.0 +23186,11,21,29,0.0 +23186,13,6,8,0.0 +23186,34,14,39,0.0 +23186,68,12.5,42,0.0 +23186,38,263.5,28,0.0 +23186,45,9.5,33,0.0 +23186,15,15.5,22,0.0 +23186,41,9.65,30,0.0 +23186,14,23.25,17,0.0 +23186,64,33.25,31,0.0 +23186,23,9,32,0.0 +23186,7,30,35,0.0 +23186,66,17,40,0.0 +23186,69,36,24,0.0 +23186,29,123.79,50,0.0 +23186,17,39,24,0.0 +23186,50,16.25,47,0.0 +23186,55,24,8,0.0 +23186,37,26,35,0.0 +23186,43,46,50,0.0 +23186,18,62.5,7,0.0 +23186,76,18,24,0.0 +23186,27,43.9,49,0.0 +23186,53,32.8,13,0.0 +23186,44,19.45,44,0.0 +23186,72,34.8,18,0.0 +23186,1,18,33,0.0 +23186,52,7,49,0.0 +23186,39,18,47,0.0 +23186,42,14,7,0.0 +23186,10,31,49,0.0 +23186,63,43.9,44,0.0 +23186,35,18,33,0.0 +23186,26,31.23,14,0.0 +23186,75,7.75,35,0.0 +23186,77,13,47,0.0 +23186,30,25.89,39,0.0 +23186,6,25,41,0.0 +23186,5,21.35,33,0.0 +23186,22,21,47,0.0 +23186,24,4.5,6,0.0 +23186,65,21.05,33,0.0 +23186,61,28.5,4,0.0 +23186,28,45.6,7,0.0 +23186,33,2.5,49,0.0 +23186,58,13.25,29,0.0 +23186,21,10,4,0.0 +23186,36,19,15,0.0 +23186,4,22,8,0.0 +23186,54,7.45,24,0.0 +23186,74,10,2,0.0 +23186,60,34,21,0.0 +23186,46,12,46,0.0 +23186,3,10,45,0.0 +23186,57,19.5,1,0.0 +23186,49,20,28,0.0 +23186,16,17.45,35,0.0 +23186,73,15,27,0.0 +23186,31,12.5,46,0.0 +23186,20,81,8,0.0 +23186,56,38,20,0.0 +23186,47,9.5,34,0.0 +23186,8,40,43,0.0 +23186,2,19,37,0.0 +23186,19,9.2,50,0.0 +23186,67,14,47,0.0 +23186,71,21.5,26,0.0 +23186,40,18.4,7,0.0 +23186,62,49.3,9,0.0 +23186,12,38,11,0.0 +23187,67,14,18,0.0 +23187,11,21,38,0.0 +23187,52,7,49,0.0 +23187,57,19.5,41,0.0 +23187,65,21.05,5,0.0 +23187,71,21.5,46,0.0 +23187,10,31,40,0.0 +23187,29,123.79,40,0.0 +23187,22,21,50,0.0 +23187,61,28.5,1,0.0 +23187,72,34.8,35,0.0 +23187,17,39,34,0.0 +23187,5,21.35,37,0.0 +23187,48,12.75,38,0.0 +23187,76,18,27,0.0 +23187,75,7.75,48,0.0 +23187,8,40,31,0.0 +23187,74,10,24,0.0 +23187,19,9.2,24,0.0 +23187,36,19,9,0.0 +23188,38,263.5,47,0.0 +23188,40,18.4,25,0.0 +23188,67,14,15,0.0 +23188,69,36,14,0.0 +23188,74,10,12,0.0 +23188,25,14,9,0.0 +23188,8,40,1,0.0 +23188,71,21.5,37,0.0 +23188,76,18,28,0.0 +23188,17,39,20,0.0 +23188,55,24,22,0.0 +23188,39,18,14,0.0 +23188,58,13.25,14,0.0 +23188,12,38,31,0.0 +23188,4,22,10,0.0 +23188,66,17,16,0.0 +23188,34,14,29,0.0 +23188,28,45.6,13,0.0 +23188,11,21,28,0.0 +23188,7,30,46,0.0 +23188,29,123.79,6,0.0 +23188,26,31.23,25,0.0 +23188,24,4.5,35,0.0 +23188,46,12,18,0.0 +23188,53,32.8,41,0.0 +23188,72,34.8,15,0.0 +23188,20,81,50,0.0 +23188,47,9.5,37,0.0 +23188,41,9.65,38,0.0 +23188,52,7,46,0.0 +23188,60,34,4,0.0 +23188,75,7.75,37,0.0 +23188,56,38,11,0.0 +23188,5,21.35,15,0.0 +23188,22,21,19,0.0 +23188,27,43.9,4,0.0 +23188,14,23.25,47,0.0 +23188,54,7.45,22,0.0 +23188,63,43.9,1,0.0 +23188,18,62.5,32,0.0 +23188,13,6,12,0.0 +23188,68,12.5,31,0.0 +23188,30,25.89,27,0.0 +23188,65,21.05,15,0.0 +23188,31,12.5,10,0.0 +23188,43,46,27,0.0 +23188,62,49.3,4,0.0 +23189,15,15.5,16,0.0 +23189,63,43.9,38,0.0 +23189,52,7,17,0.0 +23189,62,49.3,20,0.0 +23189,31,12.5,3,0.0 +23189,59,55,26,0.0 +23189,69,36,42,0.0 +23189,42,14,32,0.0 +23189,75,7.75,40,0.0 +23189,14,23.25,15,0.0 +23189,67,14,23,0.0 +23189,1,18,25,0.0 +23189,58,13.25,43,0.0 +23189,68,12.5,20,0.0 +23189,18,62.5,37,0.0 +23189,7,30,3,0.0 +23189,26,31.23,2,0.0 +23189,36,19,3,0.0 +23189,17,39,37,0.0 +23190,26,31.23,9,0.0 +23190,17,39,39,0.0 +23190,14,23.25,9,0.0 +23190,36,19,30,0.0 +23190,18,62.5,25,0.0 +23190,25,14,21,0.0 +23190,54,7.45,45,0.0 +23190,52,7,41,0.0 +23190,66,17,22,0.0 +23190,13,6,41,0.0 +23190,4,22,35,0.0 +23190,24,4.5,40,0.0 +23190,41,9.65,16,0.0 +23190,9,97,22,0.0 +23190,69,36,49,0.0 +23190,55,24,47,0.0 +23190,5,21.35,37,0.0 +23190,74,10,30,0.0 +23190,75,7.75,6,0.0 +23190,57,19.5,20,0.0 +23190,70,15,25,0.0 +23190,30,25.89,15,0.0 +23190,40,18.4,48,0.0 +23190,73,15,42,0.0 +23191,8,40,48,0.0 +23191,45,9.5,19,0.0 +23191,24,4.5,35,0.0 +23191,20,81,26,0.0 +23191,15,15.5,36,0.0 +23191,34,14,49,0.0 +23191,14,23.25,9,0.0 +23191,39,18,4,0.0 +23191,28,45.6,50,0.0 +23191,21,10,38,0.0 +23191,17,39,37,0.0 +23191,48,12.75,47,0.0 +23191,70,15,13,0.0 +23191,44,19.45,33,0.0 +23191,3,10,26,0.0 +23191,35,18,16,0.0 +23191,77,13,42,0.0 +23191,31,12.5,16,0.0 +23191,64,33.25,24,0.0 +23191,1,18,12,0.0 +23191,19,9.2,1,0.0 +23191,72,34.8,21,0.0 +23191,63,43.9,35,0.0 +23192,60,34,25,0.0 +23192,20,81,4,0.0 +23192,74,10,12,0.0 +23192,26,31.23,29,0.0 +23192,54,7.45,46,0.0 +23193,48,12.75,14,0.0 +23193,68,12.5,13,0.0 +23193,40,18.4,45,0.0 +23193,28,45.6,10,0.0 +23193,70,15,31,0.0 +23193,4,22,45,0.0 +23193,69,36,7,0.0 +23193,66,17,4,0.0 +23193,72,34.8,6,0.0 +23193,3,10,46,0.0 +23193,49,20,44,0.0 +23193,12,38,24,0.0 +23193,1,18,31,0.0 +23193,76,18,15,0.0 +23193,30,25.89,15,0.0 +23193,31,12.5,6,0.0 +23193,54,7.45,19,0.0 +23193,20,81,33,0.0 +23194,25,14,25,0.0 +23194,27,43.9,23,0.0 +23194,73,15,31,0.0 +23194,61,28.5,32,0.0 +23194,51,53,3,0.0 +23194,3,10,35,0.0 +23194,58,13.25,36,0.0 +23194,45,9.5,42,0.0 +23194,60,34,36,0.0 +23194,68,12.5,42,0.0 +23194,43,46,44,0.0 +23194,33,2.5,41,0.0 +23194,8,40,23,0.0 +23194,16,17.45,10,0.0 +23194,10,31,19,0.0 +23194,28,45.6,38,0.0 +23194,17,39,42,0.0 +23194,62,49.3,19,0.0 +23194,15,15.5,1,0.0 +23194,42,14,47,0.0 +23194,5,21.35,15,0.0 +23194,44,19.45,45,0.0 +23195,30,25.89,30,0.0 +23195,17,39,40,0.0 +23195,71,21.5,35,0.0 +23195,64,33.25,19,0.0 +23195,21,10,14,0.0 +23195,54,7.45,43,0.0 +23195,29,123.79,37,0.0 +23195,28,45.6,11,0.0 +23195,16,17.45,5,0.0 +23195,7,30,10,0.0 +23195,61,28.5,1,0.0 +23195,15,15.5,31,0.0 +23195,12,38,49,0.0 +23195,35,18,21,0.0 +23195,46,12,43,0.0 +23195,27,43.9,45,0.0 +23195,76,18,41,0.0 +23195,14,23.25,36,0.0 +23195,26,31.23,42,0.0 +23196,17,39,37,0.0 +23196,65,21.05,5,0.0 +23196,3,10,44,0.0 +23196,58,13.25,28,0.0 +23196,76,18,10,0.0 +23196,35,18,20,0.0 +23196,4,22,18,0.0 +23196,52,7,4,0.0 +23196,11,21,31,0.0 +23197,76,18,48,0.0 +23197,43,46,46,0.0 +23197,40,18.4,1,0.0 +23197,14,23.25,6,0.0 +23197,34,14,24,0.0 +23197,45,9.5,2,0.0 +23197,63,43.9,40,0.0 +23197,24,4.5,18,0.0 +23197,72,34.8,42,0.0 +23197,46,12,41,0.0 +23197,60,34,9,0.0 +23197,33,2.5,32,0.0 +23197,53,32.8,11,0.0 +23197,47,9.5,48,0.0 +23197,11,21,48,0.0 +23197,73,15,31,0.0 +23197,75,7.75,28,0.0 +23197,12,38,17,0.0 +23197,38,263.5,17,0.0 +23197,66,17,34,0.0 +23197,28,45.6,29,0.0 +23197,52,7,19,0.0 +23197,41,9.65,11,0.0 +23197,57,19.5,19,0.0 +23197,70,15,41,0.0 +23197,44,19.45,38,0.0 +23197,30,25.89,45,0.0 +23197,29,123.79,33,0.0 +23197,7,30,29,0.0 +23197,27,43.9,14,0.0 +23197,77,13,43,0.0 +23197,62,49.3,23,0.0 +23197,69,36,35,0.0 +23197,71,21.5,13,0.0 +23197,32,32,49,0.0 +23197,68,12.5,7,0.0 +23197,10,31,28,0.0 +23197,20,81,44,0.0 +23197,35,18,49,0.0 +23197,31,12.5,10,0.0 +23197,49,20,47,0.0 +23197,1,18,2,0.0 +23197,3,10,25,0.0 +23197,19,9.2,28,0.0 +23197,59,55,36,0.0 +23197,55,24,23,0.0 +23197,61,28.5,12,0.0 +23197,9,97,18,0.0 +23197,58,13.25,20,0.0 +23197,50,16.25,31,0.0 +23197,13,6,10,0.0 +23197,8,40,22,0.0 +23197,67,14,26,0.0 +23197,21,10,44,0.0 +23197,5,21.35,20,0.0 +23197,17,39,36,0.0 +23198,3,10,46,0.0 +23198,52,7,27,0.0 +23198,31,12.5,41,0.0 +23198,45,9.5,9,0.0 +23199,46,12,50,0.0 +23199,74,10,10,0.0 +23199,18,62.5,48,0.0 +23199,45,9.5,15,0.0 +23199,75,7.75,24,0.0 +23199,26,31.23,45,0.0 +23199,5,21.35,4,0.0 +23199,35,18,1,0.0 +23199,2,19,44,0.0 +23199,17,39,18,0.0 +23199,22,21,13,0.0 +23199,53,32.8,33,0.0 +23199,32,32,23,0.0 +23199,73,15,29,0.0 +23199,58,13.25,43,0.0 +23199,27,43.9,5,0.0 +23199,30,25.89,35,0.0 +23199,13,6,7,0.0 +23199,51,53,29,0.0 +23199,40,18.4,8,0.0 +23199,43,46,38,0.0 +23199,16,17.45,19,0.0 +23199,29,123.79,32,0.0 +23199,69,36,30,0.0 +23199,60,34,22,0.0 +23199,72,34.8,37,0.0 +23199,48,12.75,38,0.0 +23199,77,13,21,0.0 +23199,65,21.05,37,0.0 +23199,44,19.45,4,0.0 +23199,49,20,19,0.0 +23199,12,38,2,0.0 +23199,66,17,47,0.0 +23199,70,15,11,0.0 +23199,68,12.5,16,0.0 +23199,42,14,2,0.0 +23199,23,9,19,0.0 +23199,1,18,48,0.0 +23199,55,24,17,0.0 +23199,62,49.3,12,0.0 +23199,47,9.5,7,0.0 +23199,28,45.6,1,0.0 +23199,37,26,8,0.0 +23199,54,7.45,27,0.0 +23199,56,38,26,0.0 +23199,59,55,11,0.0 +23199,6,25,34,0.0 +23199,71,21.5,22,0.0 +23199,41,9.65,1,0.0 +23199,14,23.25,39,0.0 +23199,52,7,13,0.0 +23199,63,43.9,19,0.0 +23199,36,19,15,0.0 +23199,4,22,15,0.0 +23199,25,14,42,0.0 +23199,76,18,9,0.0 +23199,10,31,13,0.0 +23199,24,4.5,29,0.0 +23199,64,33.25,37,0.0 +23199,9,97,27,0.0 +23199,57,19.5,37,0.0 +23199,15,15.5,30,0.0 +23199,34,14,7,0.0 +23199,21,10,40,0.0 +23199,8,40,18,0.0 +23199,20,81,34,0.0 +23199,7,30,11,0.0 +23199,31,12.5,13,0.0 +23199,33,2.5,26,0.0 +23199,19,9.2,40,0.0 +23199,38,263.5,12,0.0 +23199,11,21,31,0.0 +23199,39,18,45,0.0 +23199,3,10,22,0.0 +23199,61,28.5,20,0.0 +23200,39,18,7,0.0 +23200,15,15.5,17,0.0 +23200,70,15,3,0.0 +23200,36,19,33,0.0 +23200,56,38,40,0.0 +23200,11,21,25,0.0 +23200,14,23.25,22,0.0 +23200,73,15,23,0.0 +23200,2,19,39,0.0 +23200,20,81,39,0.0 +23200,61,28.5,15,0.0 +23200,31,12.5,30,0.0 +23200,28,45.6,34,0.0 +23200,76,18,24,0.0 +23200,29,123.79,29,0.0 +23200,12,38,48,0.0 +23200,30,25.89,41,0.0 +23200,69,36,21,0.0 +23200,21,10,46,0.0 +23200,68,12.5,28,0.0 +23200,64,33.25,6,0.0 +23200,25,14,27,0.0 +23200,10,31,3,0.0 +23200,60,34,13,0.0 +23200,33,2.5,16,0.0 +23200,42,14,35,0.0 +23200,57,19.5,49,0.0 +23200,13,6,37,0.0 +23200,7,30,43,0.0 +23200,67,14,13,0.0 +23200,54,7.45,14,0.0 +23200,8,40,1,0.0 +23200,38,263.5,17,0.0 +23200,50,16.25,18,0.0 +23200,23,9,31,0.0 +23200,3,10,6,0.0 +23200,59,55,19,0.0 +23200,46,12,48,0.0 +23200,43,46,29,0.0 +23200,26,31.23,40,0.0 +23200,47,9.5,4,0.0 +23201,39,18,42,0.0 +23201,70,15,42,0.0 +23201,54,7.45,27,0.0 +23201,26,31.23,4,0.0 +23201,35,18,13,0.0 +23201,15,15.5,9,0.0 +23201,53,32.8,26,0.0 +23201,22,21,50,0.0 +23201,9,97,18,0.0 +23201,31,12.5,2,0.0 +23201,38,263.5,33,0.0 +23202,26,31.23,47,0.0 +23202,46,12,31,0.0 +23202,61,28.5,31,0.0 +23202,69,36,34,0.0 +23202,63,43.9,7,0.0 +23202,72,34.8,11,0.0 +23202,41,9.65,20,0.0 +23202,24,4.5,32,0.0 +23202,58,13.25,41,0.0 +23202,18,62.5,6,0.0 +23202,2,19,23,0.0 +23202,22,21,3,0.0 +23203,36,19,45,0.0 +23203,73,15,30,0.0 +23203,71,21.5,10,0.0 +23203,18,62.5,43,0.0 +23203,27,43.9,10,0.0 +23203,11,21,3,0.0 +23203,55,24,39,0.0 +23203,14,23.25,36,0.0 +23203,19,9.2,23,0.0 +23203,77,13,36,0.0 +23203,6,25,47,0.0 +23203,2,19,16,0.0 +23203,46,12,41,0.0 +23203,22,21,19,0.0 +23203,1,18,26,0.0 +23203,30,25.89,16,0.0 +23203,39,18,13,0.0 +23203,17,39,23,0.0 +23203,61,28.5,16,0.0 +23203,54,7.45,13,0.0 +23203,24,4.5,37,0.0 +23203,44,19.45,19,0.0 +23203,57,19.5,14,0.0 +23203,10,31,4,0.0 +23203,65,21.05,34,0.0 +23203,33,2.5,34,0.0 +23204,60,34,14,0.0 +23204,10,31,33,0.0 +23204,44,19.45,28,0.0 +23204,13,6,15,0.0 +23204,5,21.35,9,0.0 +23204,22,21,45,0.0 +23204,31,12.5,34,0.0 +23204,6,25,7,0.0 +23205,48,12.75,35,0.0 +23205,45,9.5,22,0.0 +23205,57,19.5,2,0.0 +23205,56,38,30,0.0 +23205,27,43.9,15,0.0 +23205,44,19.45,28,0.0 +23205,42,14,12,0.0 +23205,22,21,9,0.0 +23205,6,25,42,0.0 +23205,35,18,23,0.0 +23205,62,49.3,26,0.0 +23205,69,36,50,0.0 +23205,34,14,3,0.0 +23205,70,15,49,0.0 +23205,25,14,32,0.0 +23205,15,15.5,17,0.0 +23205,24,4.5,13,0.0 +23205,61,28.5,18,0.0 +23205,4,22,40,0.0 +23205,8,40,30,0.0 +23205,17,39,44,0.0 +23205,40,18.4,19,0.0 +23205,50,16.25,12,0.0 +23205,54,7.45,34,0.0 +23205,2,19,31,0.0 +23205,75,7.75,38,0.0 +23205,43,46,41,0.0 +23205,55,24,43,0.0 +23205,14,23.25,49,0.0 +23205,47,9.5,4,0.0 +23205,18,62.5,22,0.0 +23205,41,9.65,38,0.0 +23205,64,33.25,33,0.0 +23205,60,34,17,0.0 +23205,52,7,8,0.0 +23205,49,20,5,0.0 +23205,5,21.35,24,0.0 +23205,11,21,43,0.0 +23205,29,123.79,2,0.0 +23205,10,31,28,0.0 +23205,16,17.45,16,0.0 +23205,37,26,8,0.0 +23205,58,13.25,23,0.0 +23205,46,12,40,0.0 +23205,72,34.8,14,0.0 +23205,3,10,12,0.0 +23205,59,55,33,0.0 +23205,77,13,45,0.0 +23205,12,38,49,0.0 +23205,74,10,20,0.0 +23205,31,12.5,3,0.0 +23205,30,25.89,10,0.0 +23205,1,18,44,0.0 +23205,65,21.05,39,0.0 +23205,67,14,4,0.0 +23205,53,32.8,31,0.0 +23205,36,19,12,0.0 +23206,58,13.25,16,0.0 +23206,59,55,5,0.0 +23206,41,9.65,39,0.0 +23206,54,7.45,13,0.0 +23206,55,24,18,0.0 +23206,61,28.5,27,0.0 +23206,35,18,6,0.0 +23206,29,123.79,22,0.0 +23206,69,36,3,0.0 +23206,44,19.45,46,0.0 +23206,10,31,9,0.0 +23206,46,12,26,0.0 +23206,15,15.5,19,0.0 +23206,62,49.3,28,0.0 +23206,5,21.35,35,0.0 +23206,39,18,31,0.0 +23206,40,18.4,7,0.0 +23206,60,34,23,0.0 +23206,74,10,8,0.0 +23206,43,46,8,0.0 +23206,64,33.25,49,0.0 +23206,45,9.5,22,0.0 +23206,38,263.5,45,0.0 +23206,26,31.23,15,0.0 +23206,3,10,38,0.0 +23206,67,14,18,0.0 +23206,48,12.75,45,0.0 +23206,16,17.45,9,0.0 +23206,34,14,49,0.0 +23206,14,23.25,6,0.0 +23206,56,38,7,0.0 +23206,52,7,40,0.0 +23206,19,9.2,44,0.0 +23206,12,38,14,0.0 +23206,66,17,21,0.0 +23206,22,21,11,0.0 +23206,71,21.5,4,0.0 +23206,24,4.5,10,0.0 +23206,37,26,16,0.0 +23206,75,7.75,28,0.0 +23206,8,40,15,0.0 +23206,36,19,35,0.0 +23206,72,34.8,40,0.0 +23206,7,30,9,0.0 +23206,77,13,43,0.0 +23206,20,81,20,0.0 +23206,70,15,13,0.0 +23206,17,39,1,0.0 +23206,51,53,36,0.0 +23206,42,14,39,0.0 +23206,6,25,34,0.0 +23207,36,19,38,0.0 +23207,24,4.5,2,0.0 +23207,19,9.2,36,0.0 +23207,54,7.45,28,0.0 +23207,72,34.8,46,0.0 +23207,63,43.9,39,0.0 +23207,69,36,44,0.0 +23207,58,13.25,42,0.0 +23207,57,19.5,39,0.0 +23207,35,18,9,0.0 +23207,74,10,38,0.0 +23208,76,18,13,0.0 +23208,40,18.4,6,0.0 +23208,43,46,36,0.0 +23208,66,17,6,0.0 +23208,37,26,50,0.0 +23208,38,263.5,37,0.0 +23208,55,24,11,0.0 +23208,71,21.5,5,0.0 +23208,58,13.25,18,0.0 +23208,5,21.35,23,0.0 +23208,44,19.45,33,0.0 +23208,15,15.5,11,0.0 +23208,31,12.5,49,0.0 +23208,69,36,20,0.0 +23208,24,4.5,37,0.0 +23208,26,31.23,21,0.0 +23208,46,12,2,0.0 +23208,22,21,47,0.0 +23208,12,38,1,0.0 +23208,11,21,40,0.0 +23208,50,16.25,1,0.0 +23208,18,62.5,48,0.0 +23208,70,15,13,0.0 +23208,52,7,40,0.0 +23208,10,31,22,0.0 +23208,20,81,32,0.0 +23208,30,25.89,33,0.0 +23208,68,12.5,23,0.0 +23208,45,9.5,5,0.0 +23209,53,32.8,35,0.0 +23209,25,14,46,0.0 +23209,24,4.5,4,0.0 +23209,41,9.65,18,0.0 +23209,18,62.5,4,0.0 +23209,16,17.45,11,0.0 +23209,3,10,16,0.0 +23209,34,14,13,0.0 +23209,49,20,28,0.0 +23209,57,19.5,20,0.0 +23209,27,43.9,44,0.0 +23209,43,46,48,0.0 +23209,17,39,43,0.0 +23209,51,53,2,0.0 +23209,60,34,34,0.0 +23209,10,31,33,0.0 +23209,14,23.25,5,0.0 +23209,26,31.23,30,0.0 +23209,45,9.5,42,0.0 +23209,71,21.5,30,0.0 +23209,5,21.35,31,0.0 +23209,29,123.79,20,0.0 +23209,35,18,28,0.0 +23209,39,18,7,0.0 +23209,62,49.3,28,0.0 +23209,40,18.4,2,0.0 +23209,32,32,18,0.0 +23209,28,45.6,48,0.0 +23209,4,22,29,0.0 +23209,46,12,27,0.0 +23209,36,19,37,0.0 +23209,64,33.25,46,0.0 +23209,61,28.5,37,0.0 +23209,55,24,32,0.0 +23209,21,10,11,0.0 +23209,15,15.5,33,0.0 +23209,48,12.75,24,0.0 +23209,2,19,42,0.0 +23209,13,6,42,0.0 +23209,37,26,17,0.0 +23209,30,25.89,32,0.0 +23209,12,38,50,0.0 +23209,8,40,48,0.0 +23209,66,17,39,0.0 +23209,73,15,50,0.0 +23209,69,36,9,0.0 +23209,72,34.8,24,0.0 +23209,44,19.45,1,0.0 +23209,63,43.9,47,0.0 +23209,23,9,26,0.0 +23209,77,13,23,0.0 +23209,65,21.05,10,0.0 +23209,70,15,35,0.0 +23209,42,14,50,0.0 +23209,38,263.5,27,0.0 +23209,20,81,16,0.0 +23209,47,9.5,47,0.0 +23209,19,9.2,14,0.0 +23209,9,97,5,0.0 +23209,58,13.25,37,0.0 +23210,64,33.25,23,0.0 +23210,21,10,31,0.0 +23210,41,9.65,25,0.0 +23210,70,15,7,0.0 +23210,71,21.5,35,0.0 +23210,62,49.3,22,0.0 +23210,73,15,30,0.0 +23210,31,12.5,13,0.0 +23210,4,22,33,0.0 +23210,76,18,45,0.0 +23210,60,34,22,0.0 +23210,61,28.5,27,0.0 +23210,14,23.25,39,0.0 +23210,17,39,50,0.0 +23210,50,16.25,38,0.0 +23210,19,9.2,5,0.0 +23210,24,4.5,45,0.0 +23210,35,18,33,0.0 +23210,63,43.9,26,0.0 +23210,69,36,45,0.0 +23210,11,21,45,0.0 +23210,54,7.45,29,0.0 +23210,74,10,48,0.0 +23210,72,34.8,16,0.0 +23210,59,55,10,0.0 +23210,37,26,28,0.0 +23210,34,14,11,0.0 +23210,23,9,28,0.0 +23210,33,2.5,36,0.0 +23210,46,12,6,0.0 +23210,25,14,18,0.0 +23210,38,263.5,23,0.0 +23210,40,18.4,49,0.0 +23210,12,38,14,0.0 +23210,42,14,38,0.0 +23210,48,12.75,15,0.0 +23210,39,18,5,0.0 +23210,8,40,8,0.0 +23210,15,15.5,43,0.0 +23210,2,19,45,0.0 +23210,26,31.23,8,0.0 +23210,47,9.5,33,0.0 +23210,53,32.8,47,0.0 +23210,7,30,27,0.0 +23210,51,53,14,0.0 +23210,10,31,43,0.0 +23210,57,19.5,25,0.0 +23210,18,62.5,38,0.0 +23210,30,25.89,36,0.0 +23210,6,25,43,0.0 +23210,13,6,5,0.0 +23210,56,38,41,0.0 +23210,58,13.25,7,0.0 +23210,28,45.6,8,0.0 +23210,9,97,16,0.0 +23210,16,17.45,42,0.0 +23210,77,13,44,0.0 +23210,66,17,3,0.0 +23210,67,14,47,0.0 +23210,20,81,42,0.0 +23210,65,21.05,6,0.0 +23210,44,19.45,3,0.0 +23210,22,21,4,0.0 +23210,49,20,23,0.0 +23210,75,7.75,6,0.0 +23210,29,123.79,41,0.0 +23210,43,46,5,0.0 +23210,55,24,29,0.0 +23210,32,32,47,0.0 +23210,5,21.35,11,0.0 +23210,3,10,6,0.0 +23210,45,9.5,34,0.0 +23210,1,18,34,0.0 +23210,36,19,34,0.0 +23210,27,43.9,42,0.0 +23211,6,25,7,0.0 +23211,65,21.05,41,0.0 +23211,52,7,4,0.0 +23211,47,9.5,10,0.0 +23211,21,10,23,0.0 +23211,59,55,44,0.0 +23211,39,18,18,0.0 +23211,38,263.5,30,0.0 +23211,1,18,12,0.0 +23211,64,33.25,26,0.0 +23211,35,18,45,0.0 +23211,31,12.5,26,0.0 +23211,33,2.5,16,0.0 +23211,11,21,43,0.0 +23211,62,49.3,48,0.0 +23211,68,12.5,9,0.0 +23211,49,20,7,0.0 +23211,76,18,28,0.0 +23211,75,7.75,22,0.0 +23211,29,123.79,15,0.0 +23211,24,4.5,2,0.0 +23211,66,17,35,0.0 +23211,34,14,44,0.0 +23211,53,32.8,32,0.0 +23211,20,81,40,0.0 +23211,41,9.65,29,0.0 +23211,15,15.5,42,0.0 +23211,71,21.5,7,0.0 +23211,61,28.5,9,0.0 +23211,67,14,33,0.0 +23211,74,10,39,0.0 +23211,26,31.23,36,0.0 +23211,77,13,15,0.0 +23211,73,15,46,0.0 +23211,27,43.9,8,0.0 +23211,57,19.5,4,0.0 +23211,23,9,35,0.0 +23211,42,14,27,0.0 +23211,14,23.25,39,0.0 +23211,37,26,9,0.0 +23211,17,39,14,0.0 +23211,72,34.8,13,0.0 +23211,36,19,26,0.0 +23211,54,7.45,38,0.0 +23211,50,16.25,23,0.0 +23211,3,10,45,0.0 +23211,51,53,4,0.0 +23211,30,25.89,3,0.0 +23211,48,12.75,12,0.0 +23211,5,21.35,20,0.0 +23211,55,24,46,0.0 +23211,2,19,39,0.0 +23211,18,62.5,38,0.0 +23211,56,38,13,0.0 +23211,4,22,5,0.0 +23211,69,36,13,0.0 +23211,13,6,18,0.0 +23211,43,46,16,0.0 +23211,32,32,29,0.0 +23211,9,97,43,0.0 +23211,19,9.2,49,0.0 +23211,40,18.4,12,0.0 +23211,63,43.9,10,0.0 +23211,16,17.45,7,0.0 +23211,60,34,38,0.0 +23211,58,13.25,33,0.0 +23211,28,45.6,34,0.0 +23211,7,30,24,0.0 +23211,25,14,48,0.0 +23211,70,15,47,0.0 +23211,44,19.45,12,0.0 +23211,12,38,17,0.0 +23211,10,31,34,0.0 +23212,7,30,16,0.0 +23212,72,34.8,45,0.0 +23212,49,20,37,0.0 +23212,52,7,31,0.0 +23212,56,38,17,0.0 +23212,9,97,41,0.0 +23212,54,7.45,20,0.0 +23212,65,21.05,24,0.0 +23212,60,34,19,0.0 +23212,75,7.75,23,0.0 +23212,57,19.5,41,0.0 +23212,11,21,31,0.0 +23212,38,263.5,44,0.0 +23212,73,15,39,0.0 +23212,21,10,18,0.0 +23212,30,25.89,23,0.0 +23212,29,123.79,46,0.0 +23212,14,23.25,38,0.0 +23212,3,10,18,0.0 +23212,5,21.35,3,0.0 +23212,58,13.25,16,0.0 +23212,1,18,35,0.0 +23212,17,39,49,0.0 +23212,16,17.45,12,0.0 +23212,64,33.25,11,0.0 +23212,32,32,31,0.0 +23212,76,18,43,0.0 +23212,13,6,28,0.0 +23212,31,12.5,19,0.0 +23212,15,15.5,5,0.0 +23212,4,22,32,0.0 +23212,22,21,14,0.0 +23212,10,31,18,0.0 +23212,68,12.5,33,0.0 +23212,69,36,4,0.0 +23212,74,10,24,0.0 +23212,35,18,22,0.0 +23212,71,21.5,37,0.0 +23212,24,4.5,27,0.0 +23212,8,40,32,0.0 +23212,50,16.25,46,0.0 +23212,61,28.5,23,0.0 +23212,20,81,46,0.0 +23212,33,2.5,8,0.0 +23212,70,15,8,0.0 +23212,23,9,50,0.0 +23212,55,24,1,0.0 +23212,43,46,30,0.0 +23212,12,38,13,0.0 +23212,59,55,13,0.0 +23212,36,19,17,0.0 +23212,25,14,5,0.0 +23212,42,14,19,0.0 +23212,44,19.45,29,0.0 +23212,39,18,2,0.0 +23212,62,49.3,26,0.0 +23212,18,62.5,37,0.0 +23212,48,12.75,20,0.0 +23212,28,45.6,45,0.0 +23212,47,9.5,11,0.0 +23212,40,18.4,20,0.0 +23212,34,14,1,0.0 +23212,77,13,29,0.0 +23212,26,31.23,21,0.0 +23212,6,25,18,0.0 +23213,4,22,15,0.0 +23213,51,53,21,0.0 +23213,58,13.25,2,0.0 +23213,62,49.3,7,0.0 +23213,50,16.25,22,0.0 +23213,47,9.5,25,0.0 +23213,18,62.5,38,0.0 +23213,46,12,9,0.0 +23214,67,14,43,0.0 +23214,59,55,18,0.0 +23214,44,19.45,16,0.0 +23214,29,123.79,20,0.0 +23214,60,34,34,0.0 +23214,19,9.2,37,0.0 +23214,16,17.45,1,0.0 +23214,28,45.6,43,0.0 +23214,1,18,5,0.0 +23214,53,32.8,47,0.0 +23214,22,21,5,0.0 +23214,30,25.89,40,0.0 +23214,6,25,12,0.0 +23214,62,49.3,21,0.0 +23214,47,9.5,23,0.0 +23214,40,18.4,38,0.0 +23214,4,22,14,0.0 +23214,8,40,32,0.0 +23214,64,33.25,35,0.0 +23214,70,15,7,0.0 +23214,58,13.25,34,0.0 +23214,37,26,45,0.0 +23214,31,12.5,4,0.0 +23214,14,23.25,30,0.0 +23214,2,19,3,0.0 +23214,68,12.5,34,0.0 +23214,57,19.5,10,0.0 +23214,48,12.75,50,0.0 +23214,9,97,29,0.0 +23214,13,6,43,0.0 +23214,27,43.9,19,0.0 +23214,15,15.5,47,0.0 +23214,50,16.25,49,0.0 +23214,73,15,32,0.0 +23214,56,38,17,0.0 +23214,10,31,25,0.0 +23214,24,4.5,10,0.0 +23214,36,19,42,0.0 +23214,77,13,17,0.0 +23214,34,14,33,0.0 +23214,45,9.5,39,0.0 +23214,76,18,41,0.0 +23214,46,12,45,0.0 +23214,74,10,36,0.0 +23214,42,14,38,0.0 +23214,51,53,15,0.0 +23214,18,62.5,45,0.0 +23214,39,18,40,0.0 +23214,43,46,6,0.0 +23214,71,21.5,18,0.0 +23214,12,38,11,0.0 +23214,20,81,26,0.0 +23214,23,9,36,0.0 +23214,21,10,32,0.0 +23214,52,7,30,0.0 +23214,69,36,5,0.0 +23214,25,14,9,0.0 +23215,38,263.5,31,0.0 +23215,19,9.2,42,0.0 +23215,72,34.8,33,0.0 +23215,26,31.23,18,0.0 +23215,10,31,12,0.0 +23215,37,26,3,0.0 +23215,36,19,36,0.0 +23215,71,21.5,25,0.0 +23215,49,20,4,0.0 +23215,60,34,49,0.0 +23215,28,45.6,23,0.0 +23215,24,4.5,13,0.0 +23215,62,49.3,36,0.0 +23215,30,25.89,48,0.0 +23215,68,12.5,6,0.0 +23215,53,32.8,5,0.0 +23215,43,46,43,0.0 +23215,50,16.25,4,0.0 +23215,70,15,29,0.0 +23215,48,12.75,41,0.0 +23215,63,43.9,19,0.0 +23215,22,21,12,0.0 +23215,45,9.5,15,0.0 +23215,9,97,31,0.0 +23215,1,18,24,0.0 +23215,39,18,47,0.0 +23215,42,14,42,0.0 +23215,52,7,23,0.0 +23215,20,81,25,0.0 +23215,77,13,22,0.0 +23215,46,12,29,0.0 +23215,33,2.5,40,0.0 +23215,73,15,46,0.0 +23215,56,38,29,0.0 +23215,17,39,5,0.0 +23215,13,6,26,0.0 +23215,3,10,10,0.0 +23215,51,53,14,0.0 +23215,8,40,34,0.0 +23215,11,21,30,0.0 +23215,74,10,22,0.0 +23215,25,14,47,0.0 +23215,67,14,36,0.0 +23215,69,36,24,0.0 +23215,55,24,17,0.0 +23215,4,22,20,0.0 +23215,27,43.9,45,0.0 +23215,23,9,40,0.0 +23215,35,18,26,0.0 +23215,58,13.25,17,0.0 +23215,14,23.25,10,0.0 +23215,34,14,22,0.0 +23215,47,9.5,19,0.0 +23215,40,18.4,27,0.0 +23215,66,17,41,0.0 +23215,76,18,29,0.0 +23215,6,25,29,0.0 +23215,64,33.25,30,0.0 +23215,31,12.5,18,0.0 +23215,65,21.05,15,0.0 +23215,41,9.65,33,0.0 +23215,5,21.35,27,0.0 +23215,2,19,15,0.0 +23215,59,55,15,0.0 +23215,7,30,24,0.0 +23215,12,38,2,0.0 +23215,21,10,29,0.0 +23215,18,62.5,9,0.0 +23215,32,32,3,0.0 +23215,54,7.45,27,0.0 +23215,15,15.5,25,0.0 +23215,44,19.45,41,0.0 +23215,16,17.45,12,0.0 +23216,26,31.23,34,0.0 +23216,51,53,3,0.0 +23216,13,6,8,0.0 +23216,21,10,3,0.0 +23217,64,33.25,3,0.0 +23217,6,25,44,0.0 +23217,52,7,36,0.0 +23217,21,10,2,0.0 +23217,23,9,41,0.0 +23217,1,18,21,0.0 +23217,67,14,36,0.0 +23217,26,31.23,44,0.0 +23217,44,19.45,19,0.0 +23217,73,15,32,0.0 +23217,45,9.5,40,0.0 +23217,2,19,35,0.0 +23217,36,19,25,0.0 +23217,59,55,39,0.0 +23217,4,22,40,0.0 +23217,8,40,40,0.0 +23217,47,9.5,49,0.0 +23217,39,18,41,0.0 +23217,65,21.05,35,0.0 +23217,22,21,27,0.0 +23217,38,263.5,26,0.0 +23217,30,25.89,9,0.0 +23217,20,81,11,0.0 +23217,25,14,26,0.0 +23217,33,2.5,4,0.0 +23217,49,20,44,0.0 +23217,58,13.25,31,0.0 +23217,76,18,39,0.0 +23217,13,6,38,0.0 +23217,14,23.25,9,0.0 +23217,46,12,43,0.0 +23217,68,12.5,7,0.0 +23217,51,53,4,0.0 +23217,48,12.75,40,0.0 +23217,72,34.8,18,0.0 +23217,29,123.79,10,0.0 +23217,24,4.5,9,0.0 +23217,16,17.45,13,0.0 +23218,70,15,13,0.0 +23218,60,34,49,0.0 +23218,66,17,10,0.0 +23218,41,9.65,36,0.0 +23218,48,12.75,25,0.0 +23218,34,14,26,0.0 +23218,75,7.75,48,0.0 +23218,58,13.25,45,0.0 +23218,43,46,8,0.0 +23218,68,12.5,13,0.0 +23218,30,25.89,20,0.0 +23218,77,13,24,0.0 +23218,54,7.45,26,0.0 +23218,74,10,20,0.0 +23218,24,4.5,3,0.0 +23218,10,31,10,0.0 +23218,67,14,18,0.0 +23218,20,81,19,0.0 +23218,27,43.9,46,0.0 +23218,36,19,26,0.0 +23218,69,36,42,0.0 +23218,76,18,25,0.0 +23218,31,12.5,5,0.0 +23218,17,39,46,0.0 +23218,25,14,48,0.0 +23218,11,21,22,0.0 +23218,16,17.45,44,0.0 +23218,8,40,10,0.0 +23218,49,20,6,0.0 +23218,32,32,26,0.0 +23218,7,30,32,0.0 +23218,56,38,23,0.0 +23218,44,19.45,45,0.0 +23218,5,21.35,2,0.0 +23218,15,15.5,29,0.0 +23218,62,49.3,43,0.0 +23218,21,10,15,0.0 +23218,3,10,46,0.0 +23218,39,18,22,0.0 +23218,19,9.2,30,0.0 +23218,18,62.5,18,0.0 +23218,53,32.8,29,0.0 +23218,6,25,21,0.0 +23218,42,14,24,0.0 +23218,12,38,37,0.0 +23218,38,263.5,1,0.0 +23218,40,18.4,2,0.0 +23218,29,123.79,45,0.0 +23218,33,2.5,48,0.0 +23218,71,21.5,13,0.0 +23218,23,9,4,0.0 +23218,14,23.25,44,0.0 +23218,46,12,28,0.0 +23218,26,31.23,45,0.0 +23218,1,18,39,0.0 +23218,72,34.8,9,0.0 +23218,2,19,14,0.0 +23218,51,53,4,0.0 +23218,37,26,25,0.0 +23218,22,21,17,0.0 +23218,35,18,15,0.0 +23218,13,6,21,0.0 +23218,57,19.5,39,0.0 +23218,64,33.25,48,0.0 +23218,52,7,50,0.0 +23218,28,45.6,40,0.0 +23218,73,15,5,0.0 +23218,50,16.25,41,0.0 +23218,47,9.5,13,0.0 +23218,55,24,5,0.0 +23218,9,97,20,0.0 +23218,63,43.9,24,0.0 +23218,45,9.5,39,0.0 +23218,61,28.5,8,0.0 +23218,4,22,5,0.0 +23218,65,21.05,1,0.0 +23218,59,55,13,0.0 +23219,74,10,6,0.0 +23219,43,46,48,0.0 +23219,24,4.5,37,0.0 +23219,53,32.8,34,0.0 +23219,2,19,19,0.0 +23219,49,20,4,0.0 +23219,57,19.5,2,0.0 +23219,38,263.5,15,0.0 +23219,31,12.5,22,0.0 +23219,64,33.25,18,0.0 +23219,16,17.45,7,0.0 +23219,67,14,38,0.0 +23219,47,9.5,6,0.0 +23219,20,81,10,0.0 +23219,48,12.75,15,0.0 +23219,69,36,37,0.0 +23219,29,123.79,6,0.0 +23219,40,18.4,39,0.0 +23220,43,46,9,0.0 +23220,47,9.5,32,0.0 +23220,25,14,47,0.0 +23220,23,9,9,0.0 +23220,44,19.45,45,0.0 +23220,37,26,48,0.0 +23220,51,53,37,0.0 +23220,20,81,17,0.0 +23220,49,20,10,0.0 +23220,50,16.25,47,0.0 +23220,11,21,24,0.0 +23220,77,13,37,0.0 +23221,62,49.3,5,0.0 +23221,10,31,22,0.0 +23221,52,7,33,0.0 +23221,73,15,38,0.0 +23221,37,26,50,0.0 +23221,1,18,28,0.0 +23221,75,7.75,40,0.0 +23221,48,12.75,47,0.0 +23221,69,36,13,0.0 +23221,57,19.5,36,0.0 +23221,39,18,16,0.0 +23221,9,97,32,0.0 +23221,34,14,10,0.0 +23221,6,25,29,0.0 +23221,38,263.5,45,0.0 +23221,66,17,20,0.0 +23221,51,53,41,0.0 +23221,35,18,49,0.0 +23221,24,4.5,9,0.0 +23221,27,43.9,14,0.0 +23221,7,30,12,0.0 +23221,72,34.8,9,0.0 +23221,12,38,47,0.0 +23221,36,19,2,0.0 +23221,22,21,7,0.0 +23221,74,10,6,0.0 +23221,65,21.05,18,0.0 +23221,76,18,3,0.0 +23221,14,23.25,29,0.0 +23221,44,19.45,9,0.0 +23221,77,13,45,0.0 +23221,31,12.5,22,0.0 +23221,49,20,33,0.0 +23221,64,33.25,24,0.0 +23221,21,10,18,0.0 +23221,60,34,50,0.0 +23221,28,45.6,21,0.0 +23221,53,32.8,49,0.0 +23221,46,12,12,0.0 +23221,20,81,40,0.0 +23221,26,31.23,32,0.0 +23221,29,123.79,34,0.0 +23221,30,25.89,40,0.0 +23221,5,21.35,42,0.0 +23221,23,9,28,0.0 +23221,41,9.65,15,0.0 +23221,19,9.2,23,0.0 +23221,54,7.45,49,0.0 +23221,67,14,34,0.0 +23221,59,55,13,0.0 +23221,63,43.9,16,0.0 +23221,13,6,21,0.0 +23221,50,16.25,22,0.0 +23221,70,15,46,0.0 +23221,3,10,7,0.0 +23221,68,12.5,10,0.0 +23221,43,46,17,0.0 +23221,61,28.5,23,0.0 +23222,67,14,36,0.0 +23222,35,18,2,0.0 +23222,47,9.5,16,0.0 +23222,74,10,42,0.0 +23222,25,14,15,0.0 +23222,5,21.35,48,0.0 +23222,19,9.2,1,0.0 +23222,4,22,16,0.0 +23222,16,17.45,5,0.0 +23222,38,263.5,15,0.0 +23222,60,34,38,0.0 +23222,49,20,7,0.0 +23222,43,46,1,0.0 +23222,54,7.45,14,0.0 +23222,11,21,12,0.0 +23222,66,17,26,0.0 +23222,41,9.65,20,0.0 +23222,52,7,5,0.0 +23222,39,18,33,0.0 +23222,6,25,28,0.0 +23222,42,14,40,0.0 +23222,14,23.25,44,0.0 +23222,75,7.75,32,0.0 +23222,53,32.8,44,0.0 +23222,27,43.9,4,0.0 +23222,9,97,19,0.0 +23222,13,6,11,0.0 +23222,68,12.5,26,0.0 +23222,28,45.6,4,0.0 +23222,40,18.4,23,0.0 +23222,24,4.5,8,0.0 +23222,62,49.3,25,0.0 +23222,29,123.79,48,0.0 +23222,44,19.45,29,0.0 +23222,59,55,13,0.0 +23222,58,13.25,39,0.0 +23222,76,18,26,0.0 +23222,8,40,24,0.0 +23222,18,62.5,14,0.0 +23222,10,31,15,0.0 +23222,3,10,48,0.0 +23222,23,9,30,0.0 +23222,21,10,1,0.0 +23222,55,24,46,0.0 +23222,48,12.75,48,0.0 +23222,7,30,41,0.0 +23222,2,19,25,0.0 +23222,33,2.5,17,0.0 +23222,36,19,33,0.0 +23222,71,21.5,27,0.0 +23222,61,28.5,13,0.0 +23222,70,15,42,0.0 +23222,65,21.05,17,0.0 +23223,33,2.5,5,0.0 +23223,54,7.45,15,0.0 +23223,77,13,29,0.0 +23223,52,7,16,0.0 +23223,67,14,31,0.0 +23223,66,17,37,0.0 +23223,9,97,36,0.0 +23223,38,263.5,34,0.0 +23223,56,38,50,0.0 +23223,31,12.5,17,0.0 +23223,76,18,3,0.0 +23223,29,123.79,46,0.0 +23223,17,39,33,0.0 +23223,72,34.8,23,0.0 +23223,3,10,40,0.0 +23223,57,19.5,20,0.0 +23223,14,23.25,18,0.0 +23223,59,55,10,0.0 +23223,20,81,17,0.0 +23223,47,9.5,46,0.0 +23223,50,16.25,9,0.0 +23223,70,15,26,0.0 +23223,7,30,48,0.0 +23223,63,43.9,9,0.0 +23223,26,31.23,6,0.0 +23223,4,22,48,0.0 +23223,34,14,19,0.0 +23223,10,31,26,0.0 +23223,2,19,20,0.0 +23223,23,9,36,0.0 +23223,22,21,41,0.0 +23223,71,21.5,14,0.0 +23224,28,45.6,1,0.0 +23224,37,26,44,0.0 +23224,34,14,21,0.0 +23224,55,24,28,0.0 +23224,18,62.5,48,0.0 +23224,59,55,2,0.0 +23224,15,15.5,37,0.0 +23224,26,31.23,29,0.0 +23224,22,21,35,0.0 +23224,4,22,29,0.0 +23224,54,7.45,40,0.0 +23224,68,12.5,40,0.0 +23224,74,10,13,0.0 +23224,31,12.5,46,0.0 +23224,5,21.35,13,0.0 +23224,48,12.75,50,0.0 +23224,73,15,20,0.0 +23224,58,13.25,20,0.0 +23224,7,30,21,0.0 +23224,46,12,50,0.0 +23224,10,31,37,0.0 +23224,32,32,1,0.0 +23224,75,7.75,33,0.0 +23224,70,15,8,0.0 +23224,21,10,43,0.0 +23224,60,34,26,0.0 +23224,62,49.3,25,0.0 +23224,76,18,47,0.0 +23224,47,9.5,26,0.0 +23224,6,25,15,0.0 +23224,13,6,47,0.0 +23224,72,34.8,43,0.0 +23224,77,13,30,0.0 +23224,27,43.9,42,0.0 +23224,9,97,15,0.0 +23224,29,123.79,31,0.0 +23224,12,38,42,0.0 +23224,66,17,14,0.0 +23224,25,14,27,0.0 +23224,49,20,6,0.0 +23224,35,18,29,0.0 +23224,53,32.8,50,0.0 +23224,56,38,29,0.0 +23224,43,46,29,0.0 +23224,50,16.25,31,0.0 +23224,14,23.25,34,0.0 +23224,19,9.2,3,0.0 +23224,63,43.9,21,0.0 +23224,36,19,34,0.0 +23224,30,25.89,31,0.0 +23224,61,28.5,31,0.0 +23224,17,39,40,0.0 +23224,16,17.45,7,0.0 +23224,3,10,45,0.0 +23224,1,18,41,0.0 +23224,65,21.05,25,0.0 +23224,52,7,13,0.0 +23224,11,21,23,0.0 +23224,40,18.4,25,0.0 +23224,38,263.5,12,0.0 +23224,69,36,26,0.0 +23224,57,19.5,34,0.0 +23224,2,19,44,0.0 +23224,8,40,37,0.0 +23224,51,53,30,0.0 +23224,67,14,26,0.0 +23224,20,81,48,0.0 +23224,39,18,21,0.0 +23224,64,33.25,42,0.0 +23224,24,4.5,42,0.0 +23224,41,9.65,8,0.0 +23224,71,21.5,28,0.0 +23224,44,19.45,12,0.0 +23225,6,25,31,0.0 +23225,30,25.89,45,0.0 +23225,1,18,30,0.0 +23225,19,9.2,41,0.0 +23225,45,9.5,6,0.0 +23225,71,21.5,13,0.0 +23225,35,18,1,0.0 +23225,12,38,47,0.0 +23225,39,18,23,0.0 +23225,68,12.5,37,0.0 +23225,61,28.5,18,0.0 +23225,37,26,37,0.0 +23225,57,19.5,29,0.0 +23225,9,97,12,0.0 +23226,18,62.5,6,0.0 +23226,30,25.89,37,0.0 +23226,32,32,46,0.0 +23226,52,7,48,0.0 +23226,46,12,9,0.0 +23226,39,18,50,0.0 +23226,27,43.9,50,0.0 +23226,3,10,38,0.0 +23226,57,19.5,15,0.0 +23226,12,38,15,0.0 +23226,6,25,40,0.0 +23226,5,21.35,29,0.0 +23226,59,55,19,0.0 +23226,29,123.79,38,0.0 +23226,37,26,42,0.0 +23226,73,15,21,0.0 +23226,15,15.5,24,0.0 +23226,11,21,3,0.0 +23226,26,31.23,4,0.0 +23226,50,16.25,23,0.0 +23226,20,81,34,0.0 +23226,55,24,29,0.0 +23226,48,12.75,31,0.0 +23226,40,18.4,16,0.0 +23226,43,46,46,0.0 +23226,13,6,39,0.0 +23226,67,14,46,0.0 +23226,23,9,16,0.0 +23226,31,12.5,43,0.0 +23226,17,39,2,0.0 +23226,34,14,1,0.0 +23226,72,34.8,19,0.0 +23226,42,14,11,0.0 +23226,10,31,43,0.0 +23226,38,263.5,31,0.0 +23226,54,7.45,32,0.0 +23226,21,10,39,0.0 +23226,14,23.25,34,0.0 +23226,2,19,18,0.0 +23226,77,13,3,0.0 +23226,24,4.5,15,0.0 +23227,47,9.5,11,0.0 +23227,73,15,11,0.0 +23227,60,34,50,0.0 +23227,15,15.5,13,0.0 +23227,70,15,47,0.0 +23227,4,22,38,0.0 +23227,46,12,12,0.0 +23227,33,2.5,34,0.0 +23227,11,21,13,0.0 +23227,25,14,44,0.0 +23227,63,43.9,26,0.0 +23227,76,18,12,0.0 +23227,77,13,10,0.0 +23227,65,21.05,41,0.0 +23227,52,7,27,0.0 +23227,58,13.25,44,0.0 +23227,13,6,13,0.0 +23227,44,19.45,21,0.0 +23227,37,26,20,0.0 +23227,31,12.5,26,0.0 +23227,10,31,37,0.0 +23227,55,24,4,0.0 +23227,24,4.5,37,0.0 +23227,56,38,49,0.0 +23227,8,40,24,0.0 +23227,29,123.79,7,0.0 +23227,69,36,28,0.0 +23227,57,19.5,40,0.0 +23227,48,12.75,22,0.0 +23227,18,62.5,47,0.0 +23227,40,18.4,46,0.0 +23227,1,18,5,0.0 +23227,22,21,9,0.0 +23227,45,9.5,21,0.0 +23227,49,20,32,0.0 +23227,75,7.75,22,0.0 +23227,54,7.45,11,0.0 +23227,59,55,34,0.0 +23227,19,9.2,5,0.0 +23228,10,31,47,0.0 +23228,65,21.05,29,0.0 +23228,31,12.5,33,0.0 +23228,20,81,42,0.0 +23228,6,25,20,0.0 +23228,51,53,14,0.0 +23228,44,19.45,32,0.0 +23228,12,38,34,0.0 +23228,62,49.3,6,0.0 +23228,32,32,43,0.0 +23228,50,16.25,35,0.0 +23228,4,22,11,0.0 +23228,69,36,12,0.0 +23228,33,2.5,25,0.0 +23228,72,34.8,28,0.0 +23228,68,12.5,34,0.0 +23228,48,12.75,44,0.0 +23228,67,14,44,0.0 +23228,2,19,19,0.0 +23228,18,62.5,40,0.0 +23228,39,18,20,0.0 +23228,52,7,44,0.0 +23228,61,28.5,17,0.0 +23228,70,15,14,0.0 +23228,46,12,33,0.0 +23228,23,9,23,0.0 +23228,54,7.45,30,0.0 +23228,77,13,22,0.0 +23228,38,263.5,19,0.0 +23228,59,55,39,0.0 +23228,1,18,39,0.0 +23228,8,40,29,0.0 +23228,58,13.25,15,0.0 +23228,34,14,43,0.0 +23228,49,20,41,0.0 +23228,57,19.5,45,0.0 +23228,47,9.5,11,0.0 +23228,11,21,45,0.0 +23228,28,45.6,22,0.0 +23228,21,10,40,0.0 +23228,29,123.79,7,0.0 +23228,53,32.8,1,0.0 +23228,71,21.5,44,0.0 +23228,73,15,23,0.0 +23228,9,97,22,0.0 +23228,16,17.45,31,0.0 +23228,15,15.5,16,0.0 +23228,45,9.5,11,0.0 +23228,40,18.4,42,0.0 +23228,7,30,44,0.0 +23228,41,9.65,21,0.0 +23228,19,9.2,9,0.0 +23228,25,14,13,0.0 +23228,60,34,35,0.0 +23228,74,10,33,0.0 +23228,63,43.9,17,0.0 +23228,24,4.5,5,0.0 +23228,17,39,39,0.0 +23228,13,6,17,0.0 +23229,53,32.8,50,0.0 +23229,71,21.5,32,0.0 +23229,73,15,13,0.0 +23229,7,30,4,0.0 +23229,34,14,21,0.0 +23229,51,53,17,0.0 +23229,70,15,4,0.0 +23229,5,21.35,11,0.0 +23229,29,123.79,17,0.0 +23229,25,14,14,0.0 +23229,9,97,16,0.0 +23229,15,15.5,32,0.0 +23229,49,20,31,0.0 +23229,52,7,21,0.0 +23229,67,14,13,0.0 +23229,54,7.45,10,0.0 +23229,62,49.3,16,0.0 +23229,37,26,9,0.0 +23229,55,24,46,0.0 +23229,10,31,11,0.0 +23229,12,38,8,0.0 +23229,35,18,39,0.0 +23229,74,10,21,0.0 +23229,4,22,26,0.0 +23229,39,18,7,0.0 +23229,20,81,41,0.0 +23229,31,12.5,19,0.0 +23229,19,9.2,47,0.0 +23229,58,13.25,17,0.0 +23229,69,36,44,0.0 +23229,57,19.5,9,0.0 +23229,40,18.4,9,0.0 +23229,27,43.9,32,0.0 +23229,64,33.25,14,0.0 +23229,76,18,1,0.0 +23229,60,34,12,0.0 +23229,77,13,27,0.0 +23229,3,10,29,0.0 +23229,13,6,33,0.0 +23229,22,21,20,0.0 +23229,26,31.23,24,0.0 +23229,16,17.45,8,0.0 +23229,44,19.45,12,0.0 +23229,2,19,18,0.0 +23229,68,12.5,42,0.0 +23229,48,12.75,15,0.0 +23229,43,46,16,0.0 +23229,24,4.5,29,0.0 +23229,45,9.5,35,0.0 +23229,50,16.25,4,0.0 +23229,41,9.65,7,0.0 +23229,61,28.5,40,0.0 +23229,75,7.75,20,0.0 +23229,21,10,39,0.0 +23229,18,62.5,23,0.0 +23229,56,38,18,0.0 +23229,63,43.9,47,0.0 +23229,36,19,40,0.0 +23229,42,14,2,0.0 +23229,65,21.05,50,0.0 +23229,46,12,38,0.0 +23229,72,34.8,2,0.0 +23229,66,17,13,0.0 +23229,17,39,32,0.0 +23229,30,25.89,17,0.0 +23229,47,9.5,43,0.0 +23229,38,263.5,49,0.0 +23229,11,21,31,0.0 +23229,28,45.6,47,0.0 +23229,33,2.5,10,0.0 +23229,32,32,12,0.0 +23229,1,18,10,0.0 +23229,23,9,36,0.0 +23229,59,55,10,0.0 +23229,8,40,41,0.0 +23230,13,6,24,0.0 +23230,2,19,39,0.0 +23230,14,23.25,31,0.0 +23230,38,263.5,39,0.0 +23230,28,45.6,34,0.0 +23230,43,46,8,0.0 +23230,7,30,5,0.0 +23230,53,32.8,1,0.0 +23231,6,25,32,0.0 +23231,43,46,24,0.0 +23231,67,14,26,0.0 +23231,66,17,41,0.0 +23231,42,14,8,0.0 +23231,25,14,21,0.0 +23231,31,12.5,47,0.0 +23231,54,7.45,32,0.0 +23231,73,15,38,0.0 +23231,52,7,14,0.0 +23231,56,38,14,0.0 +23231,70,15,39,0.0 +23231,27,43.9,36,0.0 +23231,8,40,21,0.0 +23231,23,9,28,0.0 +23231,60,34,13,0.0 +23231,34,14,36,0.0 +23231,9,97,39,0.0 +23231,17,39,36,0.0 +23231,26,31.23,42,0.0 +23231,29,123.79,22,0.0 +23231,71,21.5,32,0.0 +23231,13,6,17,0.0 +23231,39,18,41,0.0 +23231,40,18.4,21,0.0 +23231,51,53,45,0.0 +23231,65,21.05,21,0.0 +23231,21,10,29,0.0 +23231,59,55,30,0.0 +23231,61,28.5,29,0.0 +23231,57,19.5,6,0.0 +23231,33,2.5,10,0.0 +23231,1,18,31,0.0 +23231,75,7.75,23,0.0 +23231,62,49.3,24,0.0 +23231,72,34.8,22,0.0 +23231,55,24,49,0.0 +23231,32,32,27,0.0 +23231,22,21,3,0.0 +23231,35,18,47,0.0 +23231,69,36,22,0.0 +23231,76,18,2,0.0 +23231,4,22,17,0.0 +23231,49,20,48,0.0 +23231,36,19,26,0.0 +23231,77,13,6,0.0 +23231,63,43.9,1,0.0 +23231,10,31,15,0.0 +23231,46,12,37,0.0 +23231,19,9.2,28,0.0 +23231,48,12.75,4,0.0 +23231,18,62.5,29,0.0 +23231,58,13.25,15,0.0 +23231,50,16.25,23,0.0 +23231,2,19,2,0.0 +23231,30,25.89,2,0.0 +23231,44,19.45,42,0.0 +23231,53,32.8,40,0.0 +23231,20,81,48,0.0 +23231,7,30,41,0.0 +23231,64,33.25,29,0.0 +23231,74,10,11,0.0 +23231,68,12.5,24,0.0 +23231,47,9.5,7,0.0 +23231,14,23.25,19,0.0 +23231,38,263.5,49,0.0 +23231,16,17.45,43,0.0 +23231,11,21,36,0.0 +23231,24,4.5,16,0.0 +23231,5,21.35,44,0.0 +23231,3,10,32,0.0 +23232,10,31,19,0.0 +23232,18,62.5,38,0.0 +23232,73,15,19,0.0 +23232,30,25.89,4,0.0 +23232,24,4.5,40,0.0 +23232,39,18,40,0.0 +23232,70,15,15,0.0 +23232,66,17,22,0.0 +23232,42,14,32,0.0 +23232,51,53,17,0.0 +23232,34,14,19,0.0 +23232,49,20,29,0.0 +23232,22,21,13,0.0 +23232,14,23.25,47,0.0 +23232,60,34,48,0.0 +23232,53,32.8,25,0.0 +23232,65,21.05,9,0.0 +23232,31,12.5,32,0.0 +23232,13,6,16,0.0 +23232,57,19.5,13,0.0 +23232,75,7.75,8,0.0 +23232,45,9.5,17,0.0 +23232,20,81,2,0.0 +23232,36,19,45,0.0 +23232,23,9,39,0.0 +23232,25,14,31,0.0 +23232,15,15.5,26,0.0 +23232,6,25,38,0.0 +23232,68,12.5,4,0.0 +23232,37,26,50,0.0 +23232,52,7,21,0.0 +23232,1,18,6,0.0 +23232,48,12.75,19,0.0 +23232,17,39,27,0.0 +23233,42,14,25,0.0 +23233,49,20,47,0.0 +23233,27,43.9,17,0.0 +23233,40,18.4,44,0.0 +23233,55,24,39,0.0 +23233,75,7.75,36,0.0 +23233,39,18,5,0.0 +23233,66,17,34,0.0 +23233,71,21.5,34,0.0 +23233,72,34.8,14,0.0 +23233,67,14,25,0.0 +23233,22,21,39,0.0 +23233,10,31,17,0.0 +23233,34,14,39,0.0 +23233,65,21.05,43,0.0 +23233,18,62.5,16,0.0 +23233,2,19,37,0.0 +23233,59,55,43,0.0 +23233,62,49.3,17,0.0 +23233,74,10,19,0.0 +23233,16,17.45,29,0.0 +23233,1,18,36,0.0 +23233,73,15,45,0.0 +23233,36,19,28,0.0 +23233,44,19.45,39,0.0 +23233,30,25.89,13,0.0 +23233,9,97,43,0.0 +23233,21,10,5,0.0 +23233,35,18,17,0.0 +23233,13,6,50,0.0 +23233,5,21.35,32,0.0 +23233,57,19.5,41,0.0 +23233,14,23.25,23,0.0 +23233,33,2.5,2,0.0 +23233,29,123.79,43,0.0 +23233,56,38,34,0.0 +23233,70,15,31,0.0 +23233,53,32.8,27,0.0 +23233,68,12.5,36,0.0 +23233,7,30,44,0.0 +23233,4,22,27,0.0 +23233,37,26,7,0.0 +23233,76,18,7,0.0 +23233,8,40,33,0.0 +23233,51,53,32,0.0 +23233,47,9.5,28,0.0 +23233,63,43.9,1,0.0 +23233,48,12.75,13,0.0 +23233,24,4.5,26,0.0 +23233,19,9.2,18,0.0 +23233,64,33.25,16,0.0 +23233,69,36,3,0.0 +23233,23,9,29,0.0 +23233,61,28.5,34,0.0 +23233,60,34,13,0.0 +23233,52,7,39,0.0 +23233,45,9.5,27,0.0 +23233,41,9.65,24,0.0 +23233,12,38,15,0.0 +23233,15,15.5,49,0.0 +23233,43,46,37,0.0 +23233,31,12.5,34,0.0 +23233,17,39,13,0.0 +23234,18,62.5,39,0.0 +23234,24,4.5,29,0.0 +23234,8,40,3,0.0 +23234,61,28.5,14,0.0 +23234,37,26,9,0.0 +23234,50,16.25,47,0.0 +23234,9,97,8,0.0 +23234,34,14,25,0.0 +23234,75,7.75,39,0.0 +23234,35,18,7,0.0 +23234,23,9,11,0.0 +23234,29,123.79,19,0.0 +23234,70,15,41,0.0 +23234,46,12,7,0.0 +23234,77,13,23,0.0 +23234,40,18.4,35,0.0 +23234,56,38,42,0.0 +23234,49,20,34,0.0 +23234,19,9.2,20,0.0 +23234,52,7,35,0.0 +23234,71,21.5,28,0.0 +23234,43,46,11,0.0 +23234,57,19.5,24,0.0 +23234,67,14,27,0.0 +23234,54,7.45,34,0.0 +23234,45,9.5,26,0.0 +23234,73,15,4,0.0 +23234,63,43.9,23,0.0 +23234,41,9.65,6,0.0 +23234,38,263.5,15,0.0 +23234,60,34,5,0.0 +23234,1,18,21,0.0 +23234,55,24,9,0.0 +23234,33,2.5,9,0.0 +23234,42,14,44,0.0 +23234,66,17,16,0.0 +23234,51,53,22,0.0 +23234,4,22,29,0.0 +23234,32,32,25,0.0 +23234,11,21,38,0.0 +23234,58,13.25,15,0.0 +23234,15,15.5,9,0.0 +23234,47,9.5,45,0.0 +23234,30,25.89,26,0.0 +23234,2,19,10,0.0 +23234,21,10,33,0.0 +23234,36,19,16,0.0 +23234,5,21.35,42,0.0 +23234,13,6,25,0.0 +23234,53,32.8,23,0.0 +23234,12,38,17,0.0 +23234,3,10,21,0.0 +23234,20,81,4,0.0 +23234,68,12.5,5,0.0 +23234,10,31,14,0.0 +23234,28,45.6,31,0.0 +23234,22,21,34,0.0 +23234,39,18,35,0.0 +23234,6,25,43,0.0 +23234,16,17.45,18,0.0 +23234,17,39,11,0.0 +23234,59,55,48,0.0 +23234,48,12.75,42,0.0 +23234,76,18,24,0.0 +23234,69,36,36,0.0 +23235,50,16.25,4,0.0 +23235,65,21.05,28,0.0 +23235,63,43.9,35,0.0 +23235,13,6,41,0.0 +23235,55,24,20,0.0 +23235,34,14,45,0.0 +23235,77,13,5,0.0 +23235,7,30,24,0.0 +23235,59,55,15,0.0 +23235,52,7,44,0.0 +23235,53,32.8,46,0.0 +23235,61,28.5,49,0.0 +23235,14,23.25,1,0.0 +23235,76,18,34,0.0 +23235,37,26,35,0.0 +23235,9,97,14,0.0 +23235,45,9.5,17,0.0 +23235,12,38,48,0.0 +23235,41,9.65,26,0.0 +23235,58,13.25,31,0.0 +23235,5,21.35,42,0.0 +23235,64,33.25,19,0.0 +23235,43,46,9,0.0 +23235,49,20,16,0.0 +23235,48,12.75,4,0.0 +23235,68,12.5,16,0.0 +23235,33,2.5,1,0.0 +23235,51,53,6,0.0 +23235,39,18,19,0.0 +23235,44,19.45,35,0.0 +23235,24,4.5,22,0.0 +23235,72,34.8,41,0.0 +23235,2,19,50,0.0 +23235,67,14,13,0.0 +23235,29,123.79,26,0.0 +23235,15,15.5,8,0.0 +23235,56,38,32,0.0 +23235,60,34,1,0.0 +23235,42,14,21,0.0 +23235,70,15,34,0.0 +23235,57,19.5,7,0.0 +23235,75,7.75,18,0.0 +23235,35,18,21,0.0 +23235,47,9.5,10,0.0 +23235,4,22,23,0.0 +23235,54,7.45,26,0.0 +23235,21,10,44,0.0 +23235,62,49.3,19,0.0 +23235,69,36,40,0.0 +23235,25,14,50,0.0 +23235,31,12.5,45,0.0 +23235,10,31,35,0.0 +23235,17,39,19,0.0 +23235,66,17,11,0.0 +23235,38,263.5,10,0.0 +23235,71,21.5,38,0.0 +23235,40,18.4,42,0.0 +23235,20,81,21,0.0 +23235,26,31.23,1,0.0 +23235,32,32,5,0.0 +23235,19,9.2,49,0.0 +23235,74,10,8,0.0 +23235,3,10,34,0.0 +23235,11,21,50,0.0 +23235,30,25.89,2,0.0 +23235,23,9,16,0.0 +23235,1,18,32,0.0 +23236,18,62.5,48,0.0 +23237,52,7,42,0.0 +23237,35,18,30,0.0 +23237,4,22,29,0.0 +23237,8,40,46,0.0 +23237,66,17,3,0.0 +23237,68,12.5,22,0.0 +23237,73,15,36,0.0 +23237,63,43.9,39,0.0 +23237,6,25,17,0.0 +23237,17,39,48,0.0 +23237,32,32,11,0.0 +23237,9,97,26,0.0 +23237,29,123.79,39,0.0 +23237,53,32.8,19,0.0 +23237,20,81,26,0.0 +23237,7,30,37,0.0 +23237,37,26,23,0.0 +23237,60,34,16,0.0 +23237,77,13,21,0.0 +23237,57,19.5,24,0.0 +23237,65,21.05,27,0.0 +23237,40,18.4,24,0.0 +23237,28,45.6,1,0.0 +23237,42,14,47,0.0 +23237,27,43.9,41,0.0 +23237,55,24,39,0.0 +23237,43,46,18,0.0 +23237,15,15.5,47,0.0 +23237,2,19,41,0.0 +23237,74,10,11,0.0 +23237,50,16.25,11,0.0 +23237,13,6,22,0.0 +23237,5,21.35,27,0.0 +23238,33,2.5,36,0.0 +23238,37,26,24,0.0 +23238,29,123.79,27,0.0 +23238,42,14,26,0.0 +23238,68,12.5,17,0.0 +23238,31,12.5,7,0.0 +23238,45,9.5,9,0.0 +23238,7,30,38,0.0 +23238,58,13.25,44,0.0 +23238,61,28.5,45,0.0 +23238,22,21,4,0.0 +23238,43,46,6,0.0 +23238,51,53,28,0.0 +23238,35,18,38,0.0 +23238,53,32.8,39,0.0 +23238,23,9,6,0.0 +23238,63,43.9,20,0.0 +23238,66,17,34,0.0 +23238,50,16.25,25,0.0 +23238,20,81,26,0.0 +23238,75,7.75,4,0.0 +23238,18,62.5,42,0.0 +23238,57,19.5,24,0.0 +23238,76,18,11,0.0 +23238,1,18,14,0.0 +23238,55,24,13,0.0 +23238,38,263.5,34,0.0 +23238,3,10,49,0.0 +23238,26,31.23,49,0.0 +23238,48,12.75,33,0.0 +23238,73,15,30,0.0 +23238,19,9.2,42,0.0 +23238,46,12,25,0.0 +23238,13,6,31,0.0 +23238,59,55,18,0.0 +23238,32,32,50,0.0 +23238,27,43.9,46,0.0 +23238,72,34.8,5,0.0 +23238,25,14,42,0.0 +23238,49,20,10,0.0 +23239,65,21.05,13,0.0 +23239,45,9.5,5,0.0 +23239,66,17,33,0.0 +23239,54,7.45,28,0.0 +23239,44,19.45,23,0.0 +23239,13,6,22,0.0 +23239,8,40,24,0.0 +23239,43,46,16,0.0 +23239,41,9.65,22,0.0 +23239,24,4.5,44,0.0 +23239,53,32.8,16,0.0 +23239,47,9.5,2,0.0 +23239,23,9,18,0.0 +23239,11,21,30,0.0 +23239,67,14,28,0.0 +23239,1,18,19,0.0 +23239,35,18,45,0.0 +23239,69,36,31,0.0 +23239,75,7.75,44,0.0 +23239,74,10,16,0.0 +23239,9,97,40,0.0 +23239,58,13.25,42,0.0 +23239,20,81,45,0.0 +23239,60,34,30,0.0 +23239,52,7,43,0.0 +23239,30,25.89,40,0.0 +23239,16,17.45,8,0.0 +23239,70,15,29,0.0 +23239,57,19.5,42,0.0 +23239,49,20,41,0.0 +23239,28,45.6,15,0.0 +23239,2,19,42,0.0 +23239,72,34.8,46,0.0 +23239,5,21.35,32,0.0 +23239,10,31,24,0.0 +23239,7,30,18,0.0 +23239,55,24,6,0.0 +23239,76,18,43,0.0 +23239,12,38,19,0.0 +23239,22,21,24,0.0 +23239,38,263.5,10,0.0 +23239,40,18.4,48,0.0 +23239,71,21.5,41,0.0 +23239,21,10,36,0.0 +23239,46,12,16,0.0 +23239,34,14,38,0.0 +23239,3,10,17,0.0 +23239,4,22,25,0.0 +23239,77,13,2,0.0 +23239,36,19,44,0.0 +23239,48,12.75,22,0.0 +23239,61,28.5,33,0.0 +23239,51,53,7,0.0 +23239,39,18,25,0.0 +23239,59,55,7,0.0 +23240,54,7.45,5,0.0 +23240,49,20,42,0.0 +23240,12,38,34,0.0 +23240,34,14,31,0.0 +23240,64,33.25,15,0.0 +23240,11,21,8,0.0 +23240,6,25,13,0.0 +23240,24,4.5,16,0.0 +23240,15,15.5,15,0.0 +23240,76,18,14,0.0 +23240,68,12.5,11,0.0 +23240,75,7.75,18,0.0 +23240,37,26,50,0.0 +23240,57,19.5,32,0.0 +23240,42,14,39,0.0 +23240,28,45.6,8,0.0 +23240,47,9.5,7,0.0 +23240,32,32,23,0.0 +23240,2,19,48,0.0 +23240,5,21.35,22,0.0 +23240,30,25.89,19,0.0 +23240,4,22,9,0.0 +23240,53,32.8,13,0.0 +23240,59,55,28,0.0 +23240,55,24,3,0.0 +23240,63,43.9,11,0.0 +23240,72,34.8,29,0.0 +23240,41,9.65,49,0.0 +23240,45,9.5,24,0.0 +23240,26,31.23,14,0.0 +23240,25,14,10,0.0 +23240,3,10,48,0.0 +23240,48,12.75,16,0.0 +23240,14,23.25,34,0.0 +23240,67,14,43,0.0 +23240,77,13,1,0.0 +23240,23,9,16,0.0 +23240,9,97,38,0.0 +23240,35,18,9,0.0 +23240,56,38,12,0.0 +23240,69,36,16,0.0 +23240,19,9.2,12,0.0 +23240,50,16.25,36,0.0 +23240,13,6,5,0.0 +23240,71,21.5,9,0.0 +23240,51,53,30,0.0 +23240,39,18,14,0.0 +23240,66,17,15,0.0 +23240,61,28.5,43,0.0 +23240,17,39,10,0.0 +23240,43,46,15,0.0 +23240,52,7,3,0.0 +23240,74,10,47,0.0 +23240,44,19.45,12,0.0 +23240,22,21,10,0.0 +23240,16,17.45,11,0.0 +23240,36,19,8,0.0 +23240,10,31,43,0.0 +23240,60,34,40,0.0 +23240,33,2.5,46,0.0 +23240,18,62.5,16,0.0 +23240,70,15,8,0.0 +23240,40,18.4,34,0.0 +23240,8,40,34,0.0 +23240,7,30,49,0.0 +23241,70,15,19,0.0 +23241,56,38,11,0.0 +23241,36,19,35,0.0 +23241,27,43.9,13,0.0 +23241,66,17,31,0.0 +23241,44,19.45,35,0.0 +23241,5,21.35,41,0.0 +23241,74,10,45,0.0 +23241,71,21.5,22,0.0 +23241,14,23.25,40,0.0 +23241,52,7,49,0.0 +23241,45,9.5,31,0.0 +23241,72,34.8,12,0.0 +23241,10,31,17,0.0 +23241,8,40,39,0.0 +23241,49,20,47,0.0 +23241,2,19,14,0.0 +23241,51,53,7,0.0 +23241,4,22,28,0.0 +23241,29,123.79,11,0.0 +23241,60,34,33,0.0 +23241,7,30,49,0.0 +23241,50,16.25,18,0.0 +23241,22,21,27,0.0 +23241,35,18,45,0.0 +23241,19,9.2,13,0.0 +23241,6,25,31,0.0 +23242,28,45.6,23,0.0 +23242,50,16.25,47,0.0 +23242,1,18,11,0.0 +23242,3,10,15,0.0 +23242,62,49.3,40,0.0 +23242,49,20,29,0.0 +23242,74,10,30,0.0 +23242,23,9,8,0.0 +23242,53,32.8,47,0.0 +23242,24,4.5,11,0.0 +23242,32,32,7,0.0 +23242,20,81,7,0.0 +23242,12,38,4,0.0 +23242,26,31.23,50,0.0 +23242,69,36,15,0.0 +23242,35,18,38,0.0 +23242,72,34.8,49,0.0 +23242,27,43.9,8,0.0 +23242,58,13.25,31,0.0 +23242,55,24,13,0.0 +23242,57,19.5,36,0.0 +23242,33,2.5,5,0.0 +23242,66,17,11,0.0 +23242,41,9.65,17,0.0 +23242,77,13,47,0.0 +23242,51,53,30,0.0 +23242,13,6,10,0.0 +23242,8,40,36,0.0 +23242,43,46,43,0.0 +23242,18,62.5,45,0.0 +23242,40,18.4,39,0.0 +23242,36,19,20,0.0 +23242,31,12.5,20,0.0 +23242,37,26,41,0.0 +23242,45,9.5,26,0.0 +23242,11,21,48,0.0 +23242,17,39,28,0.0 +23242,2,19,33,0.0 +23242,68,12.5,13,0.0 +23242,14,23.25,38,0.0 +23242,38,263.5,50,0.0 +23242,7,30,10,0.0 +23242,5,21.35,37,0.0 +23242,63,43.9,1,0.0 +23242,56,38,31,0.0 +23242,15,15.5,47,0.0 +23242,21,10,47,0.0 +23242,48,12.75,30,0.0 +23242,16,17.45,42,0.0 +23242,30,25.89,14,0.0 +23242,70,15,27,0.0 +23242,42,14,7,0.0 +23242,4,22,35,0.0 +23242,61,28.5,26,0.0 +23242,75,7.75,38,0.0 +23242,34,14,9,0.0 +23242,67,14,48,0.0 +23242,71,21.5,30,0.0 +23242,52,7,41,0.0 +23242,64,33.25,33,0.0 +23242,22,21,39,0.0 +23242,59,55,41,0.0 +23242,9,97,39,0.0 +23242,10,31,41,0.0 +23242,29,123.79,41,0.0 +23242,73,15,46,0.0 +23242,76,18,43,0.0 +23242,46,12,21,0.0 +23242,54,7.45,9,0.0 +23243,23,9,18,0.0 +23243,7,30,18,0.0 +23243,49,20,21,0.0 +23243,43,46,9,0.0 +23243,47,9.5,35,0.0 +23243,57,19.5,23,0.0 +23243,16,17.45,41,0.0 +23243,42,14,20,0.0 +23243,58,13.25,5,0.0 +23243,53,32.8,47,0.0 +23243,10,31,46,0.0 +23243,72,34.8,30,0.0 +23243,46,12,38,0.0 +23243,27,43.9,44,0.0 +23243,51,53,31,0.0 +23243,76,18,45,0.0 +23243,35,18,29,0.0 +23243,37,26,39,0.0 +23243,34,14,18,0.0 +23243,4,22,1,0.0 +23243,32,32,39,0.0 +23243,50,16.25,4,0.0 +23244,75,7.75,23,0.0 +23244,9,97,10,0.0 +23244,56,38,7,0.0 +23244,57,19.5,39,0.0 +23244,66,17,36,0.0 +23244,58,13.25,2,0.0 +23244,22,21,40,0.0 +23244,46,12,13,0.0 +23244,64,33.25,48,0.0 +23244,55,24,41,0.0 +23244,14,23.25,23,0.0 +23244,53,32.8,48,0.0 +23244,54,7.45,44,0.0 +23244,33,2.5,42,0.0 +23244,77,13,8,0.0 +23244,65,21.05,47,0.0 +23244,31,12.5,15,0.0 +23244,38,263.5,33,0.0 +23244,70,15,49,0.0 +23244,60,34,16,0.0 +23244,69,36,9,0.0 +23244,23,9,30,0.0 +23244,12,38,24,0.0 +23244,25,14,49,0.0 +23244,19,9.2,10,0.0 +23244,24,4.5,7,0.0 +23244,18,62.5,50,0.0 +23244,10,31,39,0.0 +23244,52,7,16,0.0 +23244,36,19,35,0.0 +23244,28,45.6,4,0.0 +23244,20,81,6,0.0 +23244,51,53,7,0.0 +23244,32,32,40,0.0 +23244,73,15,2,0.0 +23244,26,31.23,38,0.0 +23244,68,12.5,2,0.0 +23244,42,14,26,0.0 +23245,47,9.5,3,0.0 +23245,11,21,4,0.0 +23245,75,7.75,35,0.0 +23245,3,10,5,0.0 +23245,21,10,15,0.0 +23245,16,17.45,4,0.0 +23245,33,2.5,30,0.0 +23245,48,12.75,10,0.0 +23245,70,15,18,0.0 +23245,55,24,50,0.0 +23245,15,15.5,29,0.0 +23245,50,16.25,42,0.0 +23245,5,21.35,4,0.0 +23245,77,13,2,0.0 +23245,34,14,37,0.0 +23245,9,97,1,0.0 +23245,43,46,16,0.0 +23245,65,21.05,10,0.0 +23245,22,21,14,0.0 +23245,13,6,19,0.0 +23245,7,30,45,0.0 +23245,6,25,1,0.0 +23245,42,14,28,0.0 +23245,1,18,6,0.0 +23245,35,18,18,0.0 +23245,57,19.5,25,0.0 +23245,10,31,15,0.0 +23245,24,4.5,24,0.0 +23245,38,263.5,1,0.0 +23245,29,123.79,7,0.0 +23245,19,9.2,22,0.0 +23245,8,40,35,0.0 +23245,26,31.23,23,0.0 +23246,28,45.6,28,0.0 +23246,22,21,4,0.0 +23246,56,38,40,0.0 +23246,70,15,8,0.0 +23246,60,34,9,0.0 +23246,33,2.5,23,0.0 +23246,52,7,21,0.0 +23246,41,9.65,5,0.0 +23246,66,17,26,0.0 +23246,29,123.79,13,0.0 +23246,53,32.8,39,0.0 +23246,25,14,11,0.0 +23246,49,20,19,0.0 +23246,39,18,44,0.0 +23246,42,14,5,0.0 +23246,36,19,38,0.0 +23246,14,23.25,33,0.0 +23246,77,13,32,0.0 +23246,11,21,33,0.0 +23246,4,22,50,0.0 +23246,12,38,8,0.0 +23246,35,18,30,0.0 +23246,65,21.05,49,0.0 +23246,3,10,12,0.0 +23246,13,6,34,0.0 +23246,59,55,28,0.0 +23246,61,28.5,2,0.0 +23246,68,12.5,3,0.0 +23246,23,9,21,0.0 +23246,10,31,25,0.0 +23246,19,9.2,48,0.0 +23246,38,263.5,27,0.0 +23246,69,36,18,0.0 +23246,27,43.9,44,0.0 +23246,9,97,24,0.0 +23246,16,17.45,46,0.0 +23246,73,15,4,0.0 +23246,51,53,3,0.0 +23246,18,62.5,22,0.0 +23246,44,19.45,27,0.0 +23246,5,21.35,50,0.0 +23246,24,4.5,17,0.0 +23246,75,7.75,18,0.0 +23246,2,19,30,0.0 +23246,67,14,42,0.0 +23246,46,12,11,0.0 +23246,34,14,13,0.0 +23246,37,26,44,0.0 +23246,62,49.3,1,0.0 +23247,66,17,23,0.0 +23248,27,43.9,29,0.0 +23248,71,21.5,12,0.0 +23249,8,40,12,0.0 +23249,31,12.5,35,0.0 +23249,35,18,46,0.0 +23249,7,30,35,0.0 +23249,11,21,17,0.0 +23249,26,31.23,49,0.0 +23249,24,4.5,5,0.0 +23249,44,19.45,38,0.0 +23249,51,53,28,0.0 +23249,73,15,22,0.0 +23249,53,32.8,39,0.0 +23249,75,7.75,18,0.0 +23249,54,7.45,32,0.0 +23249,68,12.5,26,0.0 +23249,57,19.5,4,0.0 +23249,1,18,50,0.0 +23249,23,9,32,0.0 +23249,50,16.25,1,0.0 +23249,10,31,2,0.0 +23249,15,15.5,50,0.0 +23249,61,28.5,6,0.0 +23249,58,13.25,5,0.0 +23249,14,23.25,29,0.0 +23249,4,22,11,0.0 +23249,72,34.8,40,0.0 +23249,12,38,20,0.0 +23249,76,18,22,0.0 +23249,60,34,38,0.0 +23249,65,21.05,39,0.0 +23249,43,46,7,0.0 +23249,38,263.5,27,0.0 +23249,13,6,31,0.0 +23249,66,17,28,0.0 +23249,21,10,14,0.0 +23249,29,123.79,22,0.0 +23249,49,20,38,0.0 +23249,2,19,1,0.0 +23249,59,55,44,0.0 +23249,48,12.75,23,0.0 +23249,77,13,11,0.0 +23249,16,17.45,23,0.0 +23249,5,21.35,28,0.0 +23249,36,19,17,0.0 +23249,18,62.5,15,0.0 +23250,17,39,43,0.0 +23250,3,10,3,0.0 +23250,26,31.23,16,0.0 +23250,39,18,10,0.0 +23250,76,18,33,0.0 +23250,67,14,31,0.0 +23250,69,36,13,0.0 +23250,25,14,9,0.0 +23250,61,28.5,31,0.0 +23250,54,7.45,37,0.0 +23250,40,18.4,6,0.0 +23250,47,9.5,5,0.0 +23250,14,23.25,34,0.0 +23251,14,23.25,17,0.0 +23251,8,40,13,0.0 +23251,49,20,49,0.0 +23251,20,81,37,0.0 +23252,7,30,24,0.0 +23252,65,21.05,33,0.0 +23252,11,21,12,0.0 +23252,55,24,41,0.0 +23252,5,21.35,6,0.0 +23252,2,19,16,0.0 +23252,56,38,39,0.0 +23252,28,45.6,4,0.0 +23252,42,14,47,0.0 +23252,3,10,22,0.0 +23252,39,18,41,0.0 +23252,38,263.5,20,0.0 +23252,6,25,30,0.0 +23252,48,12.75,22,0.0 +23252,15,15.5,28,0.0 +23252,14,23.25,47,0.0 +23252,35,18,39,0.0 +23252,24,4.5,20,0.0 +23252,32,32,24,0.0 +23252,19,9.2,41,0.0 +23252,10,31,39,0.0 +23252,68,12.5,25,0.0 +23252,16,17.45,7,0.0 +23252,46,12,10,0.0 +23252,64,33.25,5,0.0 +23252,44,19.45,50,0.0 +23252,31,12.5,29,0.0 +23252,40,18.4,11,0.0 +23252,29,123.79,17,0.0 +23252,51,53,8,0.0 +23252,58,13.25,32,0.0 +23252,21,10,21,0.0 +23252,43,46,13,0.0 +23252,66,17,37,0.0 +23252,67,14,45,0.0 +23252,1,18,22,0.0 +23252,76,18,10,0.0 +23252,25,14,36,0.0 +23252,70,15,24,0.0 +23252,75,7.75,15,0.0 +23252,62,49.3,38,0.0 +23252,23,9,37,0.0 +23252,54,7.45,36,0.0 +23252,4,22,38,0.0 +23252,30,25.89,24,0.0 +23252,22,21,50,0.0 +23252,61,28.5,32,0.0 +23252,34,14,49,0.0 +23252,50,16.25,17,0.0 +23252,53,32.8,7,0.0 +23252,60,34,6,0.0 +23252,63,43.9,27,0.0 +23252,17,39,34,0.0 +23252,52,7,1,0.0 +23252,26,31.23,38,0.0 +23252,20,81,29,0.0 +23252,45,9.5,41,0.0 +23252,12,38,2,0.0 +23252,59,55,16,0.0 +23252,49,20,28,0.0 +23252,57,19.5,30,0.0 +23252,8,40,8,0.0 +23252,9,97,31,0.0 +23252,73,15,5,0.0 +23252,72,34.8,3,0.0 +23252,71,21.5,22,0.0 +23252,74,10,23,0.0 +23252,18,62.5,35,0.0 +23252,13,6,25,0.0 +23252,41,9.65,20,0.0 +23252,77,13,10,0.0 +23252,27,43.9,31,0.0 +23252,33,2.5,22,0.0 +23252,69,36,10,0.0 +23252,47,9.5,41,0.0 +23252,37,26,37,0.0 +23252,36,19,10,0.0 +23253,56,38,39,0.0 +23253,31,12.5,17,0.0 +23253,26,31.23,8,0.0 +23253,6,25,34,0.0 +23253,63,43.9,42,0.0 +23253,29,123.79,22,0.0 +23253,19,9.2,7,0.0 +23253,30,25.89,50,0.0 +23253,41,9.65,46,0.0 +23253,1,18,12,0.0 +23253,58,13.25,28,0.0 +23253,43,46,50,0.0 +23253,64,33.25,13,0.0 +23253,3,10,39,0.0 +23253,33,2.5,33,0.0 +23253,15,15.5,27,0.0 +23253,4,22,2,0.0 +23253,68,12.5,30,0.0 +23253,7,30,7,0.0 +23253,2,19,44,0.0 +23253,62,49.3,16,0.0 +23253,66,17,30,0.0 +23253,44,19.45,35,0.0 +23253,21,10,7,0.0 +23253,13,6,46,0.0 +23253,42,14,31,0.0 +23253,61,28.5,34,0.0 +23253,18,62.5,40,0.0 +23253,12,38,37,0.0 +23253,22,21,40,0.0 +23253,25,14,32,0.0 +23253,40,18.4,17,0.0 +23253,72,34.8,15,0.0 +23253,23,9,35,0.0 +23253,32,32,25,0.0 +23253,8,40,25,0.0 +23253,76,18,20,0.0 +23254,76,18,9,0.0 +23254,74,10,35,0.0 +23254,51,53,23,0.0 +23254,31,12.5,8,0.0 +23254,44,19.45,12,0.0 +23254,64,33.25,6,0.0 +23254,6,25,45,0.0 +23254,41,9.65,24,0.0 +23254,8,40,40,0.0 +23254,3,10,12,0.0 +23254,1,18,30,0.0 +23254,4,22,49,0.0 +23254,67,14,5,0.0 +23254,66,17,8,0.0 +23254,42,14,21,0.0 +23254,14,23.25,19,0.0 +23254,33,2.5,50,0.0 +23254,48,12.75,20,0.0 +23254,2,19,43,0.0 +23254,59,55,9,0.0 +23254,68,12.5,25,0.0 +23254,63,43.9,22,0.0 +23254,24,4.5,30,0.0 +23254,19,9.2,45,0.0 +23254,17,39,26,0.0 +23254,60,34,25,0.0 +23254,35,18,14,0.0 +23254,15,15.5,33,0.0 +23255,8,40,29,0.0 +23255,6,25,11,0.0 +23255,35,18,42,0.0 +23255,21,10,14,0.0 +23255,62,49.3,12,0.0 +23255,36,19,37,0.0 +23255,5,21.35,2,0.0 +23255,38,263.5,2,0.0 +23255,52,7,28,0.0 +23255,45,9.5,21,0.0 +23255,63,43.9,18,0.0 +23255,39,18,37,0.0 +23255,20,81,28,0.0 +23255,48,12.75,17,0.0 +23255,64,33.25,50,0.0 +23255,2,19,43,0.0 +23255,16,17.45,2,0.0 +23255,53,32.8,42,0.0 +23255,68,12.5,25,0.0 +23255,59,55,46,0.0 +23255,28,45.6,10,0.0 +23255,44,19.45,23,0.0 +23255,3,10,40,0.0 +23255,61,28.5,40,0.0 +23255,10,31,36,0.0 +23255,33,2.5,46,0.0 +23255,34,14,10,0.0 +23255,40,18.4,7,0.0 +23255,14,23.25,40,0.0 +23255,57,19.5,29,0.0 +23255,46,12,47,0.0 +23255,13,6,5,0.0 +23255,12,38,12,0.0 +23255,67,14,42,0.0 +23255,18,62.5,12,0.0 +23255,70,15,29,0.0 +23255,19,9.2,32,0.0 +23255,43,46,50,0.0 +23255,15,15.5,20,0.0 +23255,27,43.9,38,0.0 +23255,9,97,39,0.0 +23255,23,9,1,0.0 +23255,30,25.89,47,0.0 +23255,65,21.05,20,0.0 +23255,26,31.23,6,0.0 +23255,22,21,8,0.0 +23255,51,53,7,0.0 +23255,60,34,12,0.0 +23255,37,26,20,0.0 +23255,17,39,5,0.0 +23255,25,14,15,0.0 +23255,49,20,12,0.0 +23255,56,38,42,0.0 +23255,77,13,28,0.0 +23255,42,14,24,0.0 +23255,66,17,28,0.0 +23255,7,30,50,0.0 +23255,50,16.25,33,0.0 +23255,76,18,30,0.0 +23255,75,7.75,12,0.0 +23255,72,34.8,15,0.0 +23255,29,123.79,20,0.0 +23255,47,9.5,24,0.0 +23255,31,12.5,42,0.0 +23255,54,7.45,26,0.0 +23256,44,19.45,23,0.0 +23256,12,38,30,0.0 +23256,54,7.45,12,0.0 +23256,59,55,19,0.0 +23256,11,21,24,0.0 +23256,60,34,36,0.0 +23256,70,15,34,0.0 +23256,3,10,13,0.0 +23256,8,40,46,0.0 +23256,47,9.5,33,0.0 +23256,62,49.3,39,0.0 +23256,25,14,24,0.0 +23256,53,32.8,23,0.0 +23256,32,32,34,0.0 +23256,67,14,12,0.0 +23256,42,14,36,0.0 +23256,73,15,32,0.0 +23256,75,7.75,16,0.0 +23256,55,24,41,0.0 +23256,29,123.79,9,0.0 +23256,51,53,25,0.0 +23256,56,38,30,0.0 +23256,15,15.5,47,0.0 +23256,45,9.5,30,0.0 +23256,66,17,50,0.0 +23257,60,34,28,0.0 +23257,32,32,47,0.0 +23257,31,12.5,35,0.0 +23257,12,38,8,0.0 +23257,46,12,15,0.0 +23257,2,19,46,0.0 +23257,70,15,46,0.0 +23257,49,20,26,0.0 +23257,11,21,50,0.0 +23257,35,18,10,0.0 +23257,34,14,50,0.0 +23257,36,19,8,0.0 +23257,62,49.3,7,0.0 +23257,51,53,32,0.0 +23257,33,2.5,26,0.0 +23257,66,17,45,0.0 +23257,64,33.25,39,0.0 +23257,22,21,1,0.0 +23258,38,263.5,45,0.0 +23258,57,19.5,24,0.0 +23258,3,10,24,0.0 +23258,58,13.25,33,0.0 +23258,71,21.5,31,0.0 +23258,34,14,47,0.0 +23258,24,4.5,4,0.0 +23258,31,12.5,40,0.0 +23258,74,10,32,0.0 +23258,77,13,7,0.0 +23258,37,26,29,0.0 +23258,65,21.05,46,0.0 +23258,66,17,15,0.0 +23258,54,7.45,8,0.0 +23258,75,7.75,9,0.0 +23258,6,25,48,0.0 +23258,61,28.5,33,0.0 +23258,29,123.79,11,0.0 +23258,12,38,33,0.0 +23258,43,46,8,0.0 +23258,16,17.45,12,0.0 +23258,19,9.2,2,0.0 +23258,69,36,40,0.0 +23258,39,18,46,0.0 +23258,26,31.23,14,0.0 +23258,55,24,40,0.0 +23258,45,9.5,45,0.0 +23258,63,43.9,48,0.0 +23258,46,12,8,0.0 +23258,62,49.3,38,0.0 +23258,52,7,37,0.0 +23258,25,14,37,0.0 +23258,72,34.8,17,0.0 +23258,30,25.89,13,0.0 +23258,21,10,11,0.0 +23258,13,6,48,0.0 +23258,2,19,26,0.0 +23258,44,19.45,33,0.0 +23258,48,12.75,18,0.0 +23258,18,62.5,33,0.0 +23258,67,14,25,0.0 +23258,4,22,30,0.0 +23258,11,21,28,0.0 +23258,23,9,4,0.0 +23258,68,12.5,25,0.0 +23258,60,34,49,0.0 +23258,8,40,28,0.0 +23258,5,21.35,38,0.0 +23258,49,20,34,0.0 +23258,27,43.9,34,0.0 +23258,32,32,43,0.0 +23258,50,16.25,12,0.0 +23258,40,18.4,4,0.0 +23258,35,18,23,0.0 +23258,17,39,39,0.0 +23259,38,263.5,32,0.0 +23259,11,21,14,0.0 +23259,52,7,44,0.0 +23259,54,7.45,39,0.0 +23259,58,13.25,1,0.0 +23259,15,15.5,12,0.0 +23259,72,34.8,38,0.0 +23259,27,43.9,43,0.0 +23259,43,46,29,0.0 +23259,77,13,17,0.0 +23259,18,62.5,33,0.0 +23259,5,21.35,6,0.0 +23259,17,39,41,0.0 +23259,55,24,21,0.0 +23259,30,25.89,31,0.0 +23259,23,9,7,0.0 +23259,7,30,7,0.0 +23259,16,17.45,37,0.0 +23259,75,7.75,30,0.0 +23259,73,15,22,0.0 +23259,39,18,4,0.0 +23259,62,49.3,43,0.0 +23259,60,34,6,0.0 +23259,49,20,15,0.0 +23259,45,9.5,43,0.0 +23259,46,12,14,0.0 +23259,10,31,6,0.0 +23259,14,23.25,7,0.0 +23259,9,97,35,0.0 +23259,29,123.79,45,0.0 +23259,3,10,13,0.0 +23259,8,40,19,0.0 +23259,66,17,30,0.0 +23259,20,81,17,0.0 +23259,32,32,17,0.0 +23259,24,4.5,11,0.0 +23259,64,33.25,6,0.0 +23259,21,10,28,0.0 +23259,68,12.5,30,0.0 +23259,48,12.75,46,0.0 +23259,4,22,37,0.0 +23259,1,18,10,0.0 +23259,13,6,15,0.0 +23259,59,55,40,0.0 +23259,2,19,18,0.0 +23259,41,9.65,47,0.0 +23259,25,14,47,0.0 +23259,37,26,26,0.0 +23259,53,32.8,5,0.0 +23259,36,19,10,0.0 +23259,50,16.25,4,0.0 +23259,57,19.5,49,0.0 +23259,12,38,27,0.0 +23259,65,21.05,38,0.0 +23259,63,43.9,42,0.0 +23259,67,14,12,0.0 +23259,61,28.5,41,0.0 +23259,47,9.5,50,0.0 +23259,70,15,2,0.0 +23259,74,10,37,0.0 +23259,31,12.5,30,0.0 +23259,6,25,12,0.0 +23259,69,36,4,0.0 +23259,35,18,44,0.0 +23259,76,18,50,0.0 +23259,33,2.5,14,0.0 +23259,42,14,29,0.0 +23259,51,53,43,0.0 +23259,19,9.2,16,0.0 +23260,52,7,43,0.0 +23260,29,123.79,4,0.0 +23260,35,18,50,0.0 +23260,73,15,16,0.0 +23260,9,97,46,0.0 +23260,32,32,42,0.0 +23260,39,18,7,0.0 +23260,62,49.3,43,0.0 +23260,42,14,39,0.0 +23260,13,6,36,0.0 +23260,38,263.5,42,0.0 +23260,47,9.5,20,0.0 +23260,3,10,26,0.0 +23260,2,19,17,0.0 +23260,33,2.5,3,0.0 +23260,10,31,13,0.0 +23260,7,30,14,0.0 +23260,22,21,20,0.0 +23260,18,62.5,18,0.0 +23260,74,10,23,0.0 +23260,55,24,12,0.0 +23260,28,45.6,33,0.0 +23261,15,15.5,15,0.0 +23261,14,23.25,14,0.0 +23262,14,23.25,18,0.0 +23262,24,4.5,24,0.0 +23262,53,32.8,21,0.0 +23262,7,30,37,0.0 +23262,27,43.9,33,0.0 +23262,62,49.3,26,0.0 +23262,72,34.8,27,0.0 +23262,19,9.2,41,0.0 +23262,48,12.75,19,0.0 +23262,46,12,25,0.0 +23262,22,21,34,0.0 +23262,16,17.45,40,0.0 +23262,42,14,28,0.0 +23262,18,62.5,46,0.0 +23262,30,25.89,28,0.0 +23262,25,14,34,0.0 +23262,67,14,26,0.0 +23262,58,13.25,4,0.0 +23262,35,18,50,0.0 +23262,63,43.9,39,0.0 +23262,71,21.5,24,0.0 +23262,12,38,44,0.0 +23262,47,9.5,24,0.0 +23262,40,18.4,15,0.0 +23262,61,28.5,37,0.0 +23262,1,18,28,0.0 +23262,55,24,16,0.0 +23263,28,45.6,20,0.0 +23263,69,36,49,0.0 +23263,45,9.5,46,0.0 +23263,43,46,12,0.0 +23263,25,14,23,0.0 +23263,22,21,50,0.0 +23263,24,4.5,35,0.0 +23263,39,18,39,0.0 +23263,20,81,35,0.0 +23263,66,17,23,0.0 +23263,73,15,9,0.0 +23263,14,23.25,14,0.0 +23263,70,15,4,0.0 +23263,32,32,16,0.0 +23263,36,19,11,0.0 +23263,72,34.8,30,0.0 +23263,74,10,44,0.0 +23263,57,19.5,9,0.0 +23263,5,21.35,1,0.0 +23263,71,21.5,5,0.0 +23263,63,43.9,28,0.0 +23263,21,10,44,0.0 +23263,33,2.5,16,0.0 +23263,7,30,42,0.0 +23263,51,53,17,0.0 +23263,6,25,41,0.0 +23263,38,263.5,13,0.0 +23263,30,25.89,43,0.0 +23263,10,31,26,0.0 +23263,35,18,30,0.0 +23263,19,9.2,32,0.0 +23263,29,123.79,37,0.0 +23263,56,38,40,0.0 +23263,17,39,28,0.0 +23263,11,21,20,0.0 +23263,12,38,35,0.0 +23263,1,18,38,0.0 +23263,4,22,46,0.0 +23263,8,40,24,0.0 +23263,23,9,10,0.0 +23263,54,7.45,9,0.0 +23263,49,20,1,0.0 +23263,62,49.3,46,0.0 +23263,40,18.4,19,0.0 +23263,44,19.45,27,0.0 +23263,55,24,47,0.0 +23263,52,7,48,0.0 +23263,60,34,11,0.0 +23263,53,32.8,42,0.0 +23263,65,21.05,15,0.0 +23263,41,9.65,13,0.0 +23263,77,13,17,0.0 +23263,48,12.75,5,0.0 +23263,67,14,20,0.0 +23263,34,14,24,0.0 +23263,61,28.5,10,0.0 +23263,64,33.25,37,0.0 +23264,29,123.79,46,0.0 +23264,56,38,43,0.0 +23264,34,14,33,0.0 +23264,66,17,2,0.0 +23264,45,9.5,23,0.0 +23264,76,18,26,0.0 +23264,43,46,2,0.0 +23264,63,43.9,18,0.0 +23264,77,13,35,0.0 +23264,19,9.2,9,0.0 +23264,18,62.5,2,0.0 +23264,23,9,39,0.0 +23264,24,4.5,3,0.0 +23264,25,14,8,0.0 +23264,59,55,11,0.0 +23264,26,31.23,5,0.0 +23264,57,19.5,3,0.0 +23264,27,43.9,20,0.0 +23264,53,32.8,14,0.0 +23264,28,45.6,44,0.0 +23264,75,7.75,38,0.0 +23264,6,25,23,0.0 +23264,70,15,48,0.0 +23264,41,9.65,43,0.0 +23264,48,12.75,41,0.0 +23264,12,38,15,0.0 +23264,46,12,35,0.0 +23264,60,34,45,0.0 +23264,35,18,43,0.0 +23264,44,19.45,38,0.0 +23264,7,30,16,0.0 +23264,5,21.35,22,0.0 +23264,65,21.05,41,0.0 +23264,13,6,14,0.0 +23264,8,40,22,0.0 +23264,31,12.5,9,0.0 +23264,20,81,32,0.0 +23264,52,7,1,0.0 +23264,16,17.45,31,0.0 +23264,67,14,16,0.0 +23264,64,33.25,31,0.0 +23264,69,36,17,0.0 +23264,50,16.25,14,0.0 +23264,22,21,34,0.0 +23264,32,32,29,0.0 +23264,30,25.89,33,0.0 +23264,39,18,3,0.0 +23264,74,10,50,0.0 +23264,9,97,15,0.0 +23264,55,24,18,0.0 +23264,68,12.5,20,0.0 +23264,21,10,19,0.0 +23264,40,18.4,38,0.0 +23264,38,263.5,8,0.0 +23264,42,14,9,0.0 +23264,15,15.5,36,0.0 +23264,51,53,25,0.0 +23264,10,31,3,0.0 +23264,1,18,24,0.0 +23264,36,19,32,0.0 +23264,62,49.3,49,0.0 +23264,54,7.45,2,0.0 +23264,47,9.5,31,0.0 +23264,71,21.5,48,0.0 +23264,14,23.25,26,0.0 +23264,4,22,15,0.0 +23264,37,26,49,0.0 +23264,58,13.25,11,0.0 +23264,61,28.5,7,0.0 +23264,17,39,35,0.0 +23264,33,2.5,36,0.0 +23264,3,10,32,0.0 +23264,49,20,22,0.0 +23265,43,46,33,0.0 +23265,73,15,24,0.0 +23265,9,97,27,0.0 +23265,65,21.05,16,0.0 +23265,36,19,25,0.0 +23265,7,30,30,0.0 +23265,21,10,45,0.0 +23265,58,13.25,10,0.0 +23265,26,31.23,5,0.0 +23265,31,12.5,36,0.0 +23265,2,19,25,0.0 +23265,17,39,10,0.0 +23265,23,9,6,0.0 +23265,14,23.25,21,0.0 +23265,1,18,15,0.0 +23265,19,9.2,38,0.0 +23265,48,12.75,27,0.0 +23265,22,21,42,0.0 +23265,53,32.8,13,0.0 +23265,69,36,30,0.0 +23265,25,14,20,0.0 +23265,11,21,22,0.0 +23265,20,81,28,0.0 +23265,40,18.4,49,0.0 +23265,13,6,42,0.0 +23265,12,38,27,0.0 +23265,42,14,3,0.0 +23265,63,43.9,26,0.0 +23265,6,25,13,0.0 +23265,54,7.45,28,0.0 +23265,35,18,11,0.0 +23265,51,53,48,0.0 +23265,61,28.5,4,0.0 +23265,5,21.35,38,0.0 +23265,29,123.79,40,0.0 +23265,37,26,8,0.0 +23265,67,14,9,0.0 +23265,70,15,7,0.0 +23265,44,19.45,21,0.0 +23265,8,40,31,0.0 +23265,49,20,40,0.0 +23265,39,18,15,0.0 +23265,57,19.5,35,0.0 +23265,62,49.3,50,0.0 +23265,68,12.5,49,0.0 +23265,18,62.5,17,0.0 +23265,72,34.8,28,0.0 +23265,16,17.45,24,0.0 +23265,38,263.5,22,0.0 +23265,50,16.25,31,0.0 +23265,28,45.6,34,0.0 +23265,34,14,18,0.0 +23265,33,2.5,50,0.0 +23265,71,21.5,40,0.0 +23265,24,4.5,41,0.0 +23265,56,38,41,0.0 +23265,47,9.5,6,0.0 +23265,4,22,9,0.0 +23265,76,18,46,0.0 +23265,77,13,45,0.0 +23265,30,25.89,13,0.0 +23265,15,15.5,50,0.0 +23265,74,10,8,0.0 +23265,75,7.75,10,0.0 +23265,55,24,28,0.0 +23265,41,9.65,50,0.0 +23265,10,31,37,0.0 +23265,52,7,22,0.0 +23265,32,32,33,0.0 +23265,27,43.9,24,0.0 +23265,59,55,20,0.0 +23265,45,9.5,35,0.0 +23265,66,17,47,0.0 +23265,60,34,14,0.0 +23265,46,12,39,0.0 +23266,61,28.5,19,0.0 +23266,63,43.9,34,0.0 +23266,48,12.75,18,0.0 +23266,29,123.79,3,0.0 +23266,50,16.25,10,0.0 +23266,35,18,11,0.0 +23266,2,19,35,0.0 +23266,10,31,48,0.0 +23266,33,2.5,48,0.0 +23266,25,14,29,0.0 +23266,19,9.2,29,0.0 +23266,12,38,18,0.0 +23266,20,81,39,0.0 +23266,9,97,36,0.0 +23266,65,21.05,34,0.0 +23266,30,25.89,21,0.0 +23266,39,18,45,0.0 +23266,46,12,48,0.0 +23266,44,19.45,43,0.0 +23266,67,14,25,0.0 +23266,1,18,13,0.0 +23266,70,15,50,0.0 +23266,59,55,11,0.0 +23266,13,6,49,0.0 +23266,8,40,17,0.0 +23266,38,263.5,50,0.0 +23266,34,14,26,0.0 +23266,5,21.35,41,0.0 +23266,6,25,31,0.0 +23267,34,14,39,0.0 +23267,1,18,30,0.0 +23267,46,12,8,0.0 +23267,57,19.5,41,0.0 +23267,41,9.65,8,0.0 +23267,27,43.9,27,0.0 +23267,37,26,23,0.0 +23267,24,4.5,25,0.0 +23267,44,19.45,15,0.0 +23268,71,21.5,39,0.0 +23268,76,18,3,0.0 +23268,3,10,28,0.0 +23268,52,7,4,0.0 +23268,44,19.45,12,0.0 +23268,39,18,30,0.0 +23268,57,19.5,36,0.0 +23268,58,13.25,37,0.0 +23268,14,23.25,50,0.0 +23269,29,123.79,48,0.0 +23269,36,19,31,0.0 +23269,57,19.5,11,0.0 +23269,10,31,20,0.0 +23269,22,21,39,0.0 +23269,5,21.35,5,0.0 +23269,53,32.8,43,0.0 +23269,39,18,6,0.0 +23269,47,9.5,41,0.0 +23269,17,39,37,0.0 +23269,27,43.9,15,0.0 +23269,40,18.4,29,0.0 +23269,38,263.5,39,0.0 +23269,64,33.25,46,0.0 +23269,41,9.65,9,0.0 +23269,20,81,44,0.0 +23269,9,97,41,0.0 +23269,73,15,1,0.0 +23269,2,19,2,0.0 +23269,76,18,38,0.0 +23269,18,62.5,29,0.0 +23269,4,22,49,0.0 +23269,51,53,6,0.0 +23269,59,55,43,0.0 +23269,58,13.25,32,0.0 +23269,14,23.25,12,0.0 +23270,35,18,1,0.0 +23270,13,6,18,0.0 +23270,23,9,33,0.0 +23270,61,28.5,16,0.0 +23270,66,17,11,0.0 +23270,45,9.5,44,0.0 +23270,64,33.25,2,0.0 +23270,17,39,9,0.0 +23270,67,14,16,0.0 +23270,54,7.45,45,0.0 +23270,42,14,1,0.0 +23270,46,12,14,0.0 +23270,33,2.5,42,0.0 +23270,28,45.6,10,0.0 +23270,22,21,6,0.0 +23270,59,55,17,0.0 +23270,74,10,12,0.0 +23271,66,17,46,0.0 +23271,19,9.2,21,0.0 +23271,15,15.5,30,0.0 +23271,5,21.35,24,0.0 +23271,50,16.25,7,0.0 +23271,63,43.9,41,0.0 +23271,7,30,43,0.0 +23271,41,9.65,10,0.0 +23271,58,13.25,21,0.0 +23271,64,33.25,33,0.0 +23271,10,31,19,0.0 +23271,22,21,36,0.0 +23271,38,263.5,15,0.0 +23271,17,39,36,0.0 +23271,40,18.4,44,0.0 +23271,62,49.3,9,0.0 +23271,2,19,50,0.0 +23271,49,20,28,0.0 +23271,71,21.5,38,0.0 +23271,35,18,32,0.0 +23271,25,14,7,0.0 +23271,20,81,35,0.0 +23271,46,12,16,0.0 +23271,23,9,12,0.0 +23271,48,12.75,31,0.0 +23271,11,21,50,0.0 +23271,8,40,18,0.0 +23271,24,4.5,38,0.0 +23271,51,53,30,0.0 +23271,53,32.8,16,0.0 +23271,31,12.5,27,0.0 +23271,55,24,26,0.0 +23271,16,17.45,48,0.0 +23271,42,14,13,0.0 +23271,70,15,30,0.0 +23271,36,19,46,0.0 +23271,77,13,5,0.0 +23271,74,10,43,0.0 +23271,75,7.75,48,0.0 +23271,44,19.45,35,0.0 +23271,27,43.9,25,0.0 +23271,12,38,4,0.0 +23271,59,55,45,0.0 +23271,30,25.89,46,0.0 +23271,13,6,20,0.0 +23271,37,26,33,0.0 +23271,45,9.5,28,0.0 +23271,6,25,6,0.0 +23271,4,22,6,0.0 +23271,3,10,47,0.0 +23271,54,7.45,19,0.0 +23271,73,15,29,0.0 +23271,72,34.8,21,0.0 +23271,69,36,30,0.0 +23271,61,28.5,34,0.0 +23271,76,18,2,0.0 +23271,14,23.25,22,0.0 +23271,57,19.5,50,0.0 +23271,34,14,30,0.0 +23271,1,18,6,0.0 +23271,39,18,19,0.0 +23271,26,31.23,7,0.0 +23271,18,62.5,23,0.0 +23271,60,34,15,0.0 +23271,52,7,2,0.0 +23271,43,46,19,0.0 +23271,9,97,44,0.0 +23271,21,10,16,0.0 +23271,29,123.79,13,0.0 +23271,47,9.5,21,0.0 +23271,32,32,40,0.0 +23271,68,12.5,18,0.0 +23271,67,14,14,0.0 +23271,56,38,11,0.0 +23271,65,21.05,37,0.0 +23272,39,18,25,0.0 +23272,43,46,8,0.0 +23272,72,34.8,37,0.0 +23272,19,9.2,2,0.0 +23272,37,26,6,0.0 +23272,9,97,43,0.0 +23272,24,4.5,10,0.0 +23272,77,13,37,0.0 +23272,36,19,19,0.0 +23272,13,6,7,0.0 +23272,26,31.23,5,0.0 +23272,30,25.89,35,0.0 +23272,5,21.35,34,0.0 +23272,46,12,15,0.0 +23273,67,14,18,0.0 +23273,70,15,30,0.0 +23273,72,34.8,32,0.0 +23273,30,25.89,18,0.0 +23273,18,62.5,7,0.0 +23273,19,9.2,36,0.0 +23273,37,26,14,0.0 +23273,9,97,26,0.0 +23273,28,45.6,12,0.0 +23273,64,33.25,29,0.0 +23273,35,18,20,0.0 +23273,33,2.5,4,0.0 +23273,6,25,40,0.0 +23273,51,53,1,0.0 +23273,4,22,28,0.0 +23273,29,123.79,21,0.0 +23273,65,21.05,2,0.0 +23273,71,21.5,39,0.0 +23273,2,19,41,0.0 +23273,34,14,33,0.0 +23273,21,10,11,0.0 +23273,43,46,50,0.0 +23273,61,28.5,34,0.0 +23273,22,21,16,0.0 +23273,41,9.65,18,0.0 +23273,54,7.45,7,0.0 +23273,39,18,3,0.0 +23273,57,19.5,21,0.0 +23273,8,40,23,0.0 +23273,59,55,48,0.0 +23273,69,36,35,0.0 +23273,14,23.25,16,0.0 +23273,10,31,26,0.0 +23273,31,12.5,29,0.0 +23273,77,13,43,0.0 +23273,53,32.8,47,0.0 +23274,11,21,49,0.0 +23274,6,25,14,0.0 +23274,7,30,3,0.0 +23274,71,21.5,50,0.0 +23274,12,38,20,0.0 +23274,5,21.35,19,0.0 +23274,23,9,8,0.0 +23274,56,38,38,0.0 +23274,70,15,9,0.0 +23274,20,81,49,0.0 +23274,4,22,6,0.0 +23274,62,49.3,29,0.0 +23274,47,9.5,50,0.0 +23274,35,18,16,0.0 +23274,27,43.9,30,0.0 +23274,72,34.8,43,0.0 +23274,15,15.5,16,0.0 +23274,17,39,46,0.0 +23274,46,12,41,0.0 +23274,2,19,13,0.0 +23274,14,23.25,7,0.0 +23274,22,21,16,0.0 +23274,16,17.45,4,0.0 +23274,28,45.6,1,0.0 +23275,77,13,21,0.0 +23275,34,14,3,0.0 +23275,37,26,15,0.0 +23275,36,19,11,0.0 +23275,17,39,3,0.0 +23275,57,19.5,28,0.0 +23275,64,33.25,39,0.0 +23275,76,18,6,0.0 +23275,72,34.8,45,0.0 +23275,45,9.5,49,0.0 +23276,19,9.2,24,0.0 +23276,62,49.3,44,0.0 +23276,49,20,28,0.0 +23276,72,34.8,43,0.0 +23276,32,32,1,0.0 +23276,50,16.25,36,0.0 +23276,43,46,40,0.0 +23276,24,4.5,18,0.0 +23276,37,26,48,0.0 +23276,10,31,17,0.0 +23276,35,18,41,0.0 +23276,25,14,7,0.0 +23276,76,18,17,0.0 +23276,26,31.23,44,0.0 +23276,55,24,23,0.0 +23276,45,9.5,10,0.0 +23276,48,12.75,47,0.0 +23276,34,14,28,0.0 +23276,73,15,3,0.0 +23276,46,12,36,0.0 +23276,67,14,27,0.0 +23276,56,38,14,0.0 +23276,42,14,43,0.0 +23276,39,18,24,0.0 +23276,20,81,35,0.0 +23276,5,21.35,2,0.0 +23276,13,6,11,0.0 +23276,74,10,11,0.0 +23276,11,21,20,0.0 +23277,8,40,32,0.0 +23277,66,17,35,0.0 +23277,60,34,24,0.0 +23277,46,12,22,0.0 +23277,29,123.79,36,0.0 +23277,37,26,50,0.0 +23277,5,21.35,45,0.0 +23277,32,32,34,0.0 +23277,19,9.2,19,0.0 +23277,68,12.5,49,0.0 +23277,77,13,37,0.0 +23277,69,36,49,0.0 +23277,9,97,35,0.0 +23277,28,45.6,46,0.0 +23277,35,18,19,0.0 +23277,76,18,35,0.0 +23277,64,33.25,26,0.0 +23277,67,14,49,0.0 +23277,50,16.25,1,0.0 +23277,62,49.3,41,0.0 +23277,51,53,38,0.0 +23277,16,17.45,47,0.0 +23277,10,31,9,0.0 +23277,45,9.5,45,0.0 +23277,18,62.5,35,0.0 +23277,40,18.4,12,0.0 +23277,74,10,15,0.0 +23277,48,12.75,19,0.0 +23277,42,14,25,0.0 +23277,75,7.75,32,0.0 +23277,47,9.5,32,0.0 +23277,30,25.89,41,0.0 +23277,7,30,33,0.0 +23277,58,13.25,9,0.0 +23277,31,12.5,2,0.0 +23277,61,28.5,32,0.0 +23277,53,32.8,2,0.0 +23277,23,9,9,0.0 +23277,22,21,5,0.0 +23277,1,18,36,0.0 +23277,15,15.5,22,0.0 +23277,41,9.65,1,0.0 +23277,21,10,50,0.0 +23277,56,38,26,0.0 +23277,43,46,33,0.0 +23277,24,4.5,50,0.0 +23277,65,21.05,9,0.0 +23277,34,14,32,0.0 +23277,25,14,6,0.0 +23277,36,19,24,0.0 +23277,14,23.25,7,0.0 +23277,26,31.23,16,0.0 +23277,73,15,34,0.0 +23277,11,21,10,0.0 +23277,27,43.9,25,0.0 +23277,49,20,28,0.0 +23277,2,19,16,0.0 +23277,4,22,35,0.0 +23277,57,19.5,33,0.0 +23277,13,6,33,0.0 +23277,63,43.9,34,0.0 +23277,12,38,43,0.0 +23277,72,34.8,32,0.0 +23277,17,39,24,0.0 +23277,38,263.5,7,0.0 +23277,6,25,7,0.0 +23277,71,21.5,6,0.0 +23277,52,7,12,0.0 +23277,33,2.5,18,0.0 +23277,39,18,25,0.0 +23277,55,24,38,0.0 +23278,47,9.5,14,0.0 +23278,5,21.35,9,0.0 +23278,53,32.8,23,0.0 +23278,56,38,20,0.0 +23278,44,19.45,8,0.0 +23278,6,25,34,0.0 +23278,28,45.6,49,0.0 +23278,31,12.5,16,0.0 +23278,26,31.23,11,0.0 +23278,20,81,22,0.0 +23278,3,10,16,0.0 +23278,68,12.5,22,0.0 +23278,52,7,35,0.0 +23278,1,18,20,0.0 +23278,13,6,25,0.0 +23278,17,39,39,0.0 +23278,25,14,34,0.0 +23278,46,12,15,0.0 +23278,30,25.89,17,0.0 +23278,42,14,46,0.0 +23278,43,46,43,0.0 +23278,64,33.25,40,0.0 +23278,8,40,26,0.0 +23278,11,21,1,0.0 +23278,23,9,27,0.0 +23278,38,263.5,9,0.0 +23278,76,18,30,0.0 +23278,40,18.4,34,0.0 +23278,7,30,30,0.0 +23278,27,43.9,35,0.0 +23278,45,9.5,14,0.0 +23278,69,36,36,0.0 +23278,36,19,50,0.0 +23278,75,7.75,18,0.0 +23278,71,21.5,44,0.0 +23278,61,28.5,34,0.0 +23278,35,18,3,0.0 +23278,24,4.5,2,0.0 +23278,12,38,34,0.0 +23278,21,10,24,0.0 +23278,16,17.45,4,0.0 +23278,66,17,50,0.0 +23278,48,12.75,3,0.0 +23278,32,32,17,0.0 +23278,62,49.3,34,0.0 +23278,74,10,18,0.0 +23278,49,20,36,0.0 +23278,55,24,28,0.0 +23278,34,14,42,0.0 +23278,9,97,31,0.0 +23278,59,55,43,0.0 +23278,57,19.5,31,0.0 +23278,77,13,42,0.0 +23279,40,18.4,16,0.0 +23279,23,9,6,0.0 +23279,28,45.6,42,0.0 +23279,29,123.79,33,0.0 +23279,67,14,3,0.0 +23279,43,46,25,0.0 +23279,56,38,3,0.0 +23279,27,43.9,43,0.0 +23279,77,13,29,0.0 +23279,60,34,30,0.0 +23279,30,25.89,5,0.0 +23279,72,34.8,43,0.0 +23279,69,36,45,0.0 +23279,11,21,30,0.0 +23279,75,7.75,33,0.0 +23279,70,15,36,0.0 +23279,8,40,39,0.0 +23279,51,53,6,0.0 +23279,71,21.5,10,0.0 +23279,73,15,47,0.0 +23279,6,25,25,0.0 +23279,9,97,40,0.0 +23279,66,17,21,0.0 +23279,62,49.3,23,0.0 +23279,5,21.35,7,0.0 +23279,25,14,1,0.0 +23279,41,9.65,14,0.0 +23279,2,19,17,0.0 +23279,31,12.5,9,0.0 +23279,58,13.25,44,0.0 +23279,34,14,19,0.0 +23279,65,21.05,26,0.0 +23279,74,10,1,0.0 +23279,46,12,43,0.0 +23279,15,15.5,14,0.0 +23279,49,20,48,0.0 +23279,26,31.23,12,0.0 +23279,53,32.8,16,0.0 +23279,44,19.45,23,0.0 +23279,32,32,39,0.0 +23279,61,28.5,45,0.0 +23279,33,2.5,14,0.0 +23279,10,31,2,0.0 +23279,42,14,23,0.0 +23279,76,18,45,0.0 +23280,9,97,23,0.0 +23280,8,40,31,0.0 +23280,38,263.5,23,0.0 +23280,70,15,34,0.0 +23280,63,43.9,33,0.0 +23280,36,19,32,0.0 +23280,25,14,40,0.0 +23280,7,30,8,0.0 +23280,11,21,14,0.0 +23280,68,12.5,9,0.0 +23280,48,12.75,23,0.0 +23280,28,45.6,36,0.0 +23280,40,18.4,29,0.0 +23280,33,2.5,48,0.0 +23280,45,9.5,35,0.0 +23280,30,25.89,8,0.0 +23280,15,15.5,31,0.0 +23280,77,13,38,0.0 +23280,35,18,17,0.0 +23280,71,21.5,49,0.0 +23280,52,7,4,0.0 +23280,21,10,43,0.0 +23280,23,9,18,0.0 +23280,47,9.5,16,0.0 +23280,66,17,21,0.0 +23280,74,10,33,0.0 +23280,62,49.3,1,0.0 +23280,44,19.45,33,0.0 +23280,17,39,15,0.0 +23280,57,19.5,25,0.0 +23280,29,123.79,26,0.0 +23280,10,31,18,0.0 +23280,64,33.25,44,0.0 +23280,72,34.8,24,0.0 +23280,18,62.5,49,0.0 +23280,34,14,22,0.0 +23280,75,7.75,33,0.0 +23280,46,12,6,0.0 +23280,24,4.5,26,0.0 +23280,43,46,3,0.0 +23280,49,20,35,0.0 +23280,55,24,3,0.0 +23280,53,32.8,32,0.0 +23280,61,28.5,16,0.0 +23280,22,21,30,0.0 +23280,1,18,49,0.0 +23280,32,32,13,0.0 +23280,13,6,25,0.0 +23280,69,36,12,0.0 +23280,6,25,31,0.0 +23280,76,18,49,0.0 +23280,59,55,22,0.0 +23280,41,9.65,32,0.0 +23280,5,21.35,43,0.0 +23280,60,34,4,0.0 +23280,19,9.2,50,0.0 +23280,67,14,22,0.0 +23280,39,18,34,0.0 +23280,20,81,35,0.0 +23280,56,38,4,0.0 +23280,26,31.23,28,0.0 +23280,54,7.45,10,0.0 +23280,12,38,38,0.0 +23280,42,14,45,0.0 +23281,48,12.75,50,0.0 +23281,64,33.25,3,0.0 +23281,67,14,47,0.0 +23281,66,17,35,0.0 +23281,43,46,31,0.0 +23281,45,9.5,35,0.0 +23281,70,15,38,0.0 +23281,52,7,24,0.0 +23281,37,26,44,0.0 +23281,41,9.65,25,0.0 +23281,46,12,34,0.0 +23281,25,14,4,0.0 +23281,9,97,48,0.0 +23281,76,18,48,0.0 +23281,75,7.75,2,0.0 +23281,59,55,37,0.0 +23281,28,45.6,40,0.0 +23281,71,21.5,44,0.0 +23281,13,6,11,0.0 +23281,26,31.23,3,0.0 +23282,36,19,33,0.0 +23282,42,14,38,0.0 +23282,18,62.5,16,0.0 +23282,17,39,31,0.0 +23282,59,55,30,0.0 +23282,7,30,47,0.0 +23282,12,38,46,0.0 +23282,11,21,11,0.0 +23282,5,21.35,34,0.0 +23282,3,10,13,0.0 +23282,25,14,18,0.0 +23282,47,9.5,13,0.0 +23282,15,15.5,5,0.0 +23282,34,14,35,0.0 +23282,76,18,22,0.0 +23282,75,7.75,35,0.0 +23282,40,18.4,34,0.0 +23282,39,18,14,0.0 +23282,68,12.5,38,0.0 +23282,45,9.5,24,0.0 +23282,77,13,31,0.0 +23282,14,23.25,12,0.0 +23282,26,31.23,48,0.0 +23282,28,45.6,39,0.0 +23282,57,19.5,34,0.0 +23282,48,12.75,36,0.0 +23282,30,25.89,7,0.0 +23282,64,33.25,8,0.0 +23282,44,19.45,1,0.0 +23282,21,10,45,0.0 +23282,2,19,47,0.0 +23282,71,21.5,7,0.0 +23282,61,28.5,44,0.0 +23282,54,7.45,41,0.0 +23282,32,32,48,0.0 +23282,37,26,20,0.0 +23283,27,43.9,13,0.0 +23283,63,43.9,48,0.0 +23283,16,17.45,12,0.0 +23283,50,16.25,48,0.0 +23283,53,32.8,10,0.0 +23283,55,24,9,0.0 +23283,48,12.75,15,0.0 +23283,19,9.2,8,0.0 +23283,31,12.5,47,0.0 +23283,52,7,25,0.0 +23283,40,18.4,12,0.0 +23283,73,15,35,0.0 +23283,71,21.5,23,0.0 +23283,3,10,42,0.0 +23283,5,21.35,34,0.0 +23283,24,4.5,39,0.0 +23283,33,2.5,46,0.0 +23284,49,20,2,0.0 +23284,28,45.6,38,0.0 +23284,51,53,1,0.0 +23284,56,38,22,0.0 +23284,7,30,41,0.0 +23284,52,7,39,0.0 +23284,27,43.9,1,0.0 +23284,42,14,42,0.0 +23284,33,2.5,22,0.0 +23284,15,15.5,27,0.0 +23284,34,14,11,0.0 +23284,8,40,30,0.0 +23284,31,12.5,24,0.0 +23284,60,34,17,0.0 +23284,4,22,4,0.0 +23284,62,49.3,19,0.0 +23284,3,10,44,0.0 +23284,73,15,40,0.0 +23284,77,13,49,0.0 +23284,59,55,3,0.0 +23284,71,21.5,49,0.0 +23284,69,36,25,0.0 +23284,32,32,34,0.0 +23284,43,46,15,0.0 +23284,22,21,38,0.0 +23284,25,14,47,0.0 +23284,29,123.79,31,0.0 +23284,63,43.9,26,0.0 +23284,48,12.75,6,0.0 +23284,61,28.5,8,0.0 +23284,6,25,10,0.0 +23284,50,16.25,37,0.0 +23284,16,17.45,37,0.0 +23284,20,81,21,0.0 +23284,23,9,18,0.0 +23284,45,9.5,3,0.0 +23284,35,18,12,0.0 +23285,65,21.05,24,0.0 +23285,29,123.79,30,0.0 +23285,34,14,20,0.0 +23285,76,18,17,0.0 +23285,63,43.9,27,0.0 +23285,17,39,36,0.0 +23285,33,2.5,30,0.0 +23285,13,6,21,0.0 +23285,6,25,26,0.0 +23285,4,22,35,0.0 +23285,38,263.5,26,0.0 +23285,16,17.45,36,0.0 +23285,43,46,1,0.0 +23285,7,30,49,0.0 +23285,55,24,17,0.0 +23285,62,49.3,9,0.0 +23285,27,43.9,39,0.0 +23285,54,7.45,6,0.0 +23285,8,40,13,0.0 +23285,51,53,21,0.0 +23285,49,20,17,0.0 +23285,31,12.5,41,0.0 +23285,52,7,8,0.0 +23285,23,9,22,0.0 +23285,20,81,28,0.0 +23285,69,36,29,0.0 +23285,9,97,30,0.0 +23285,24,4.5,3,0.0 +23285,59,55,25,0.0 +23285,2,19,22,0.0 +23285,58,13.25,35,0.0 +23285,47,9.5,13,0.0 +23285,19,9.2,17,0.0 +23285,66,17,48,0.0 +23285,15,15.5,3,0.0 +23285,70,15,9,0.0 +23285,37,26,22,0.0 +23285,75,7.75,42,0.0 +23285,77,13,33,0.0 +23285,67,14,40,0.0 +23285,28,45.6,49,0.0 +23285,56,38,34,0.0 +23285,72,34.8,46,0.0 +23285,1,18,15,0.0 +23285,30,25.89,9,0.0 +23285,50,16.25,6,0.0 +23285,61,28.5,35,0.0 +23285,36,19,45,0.0 +23285,64,33.25,16,0.0 +23285,48,12.75,2,0.0 +23285,25,14,35,0.0 +23285,18,62.5,37,0.0 +23285,42,14,15,0.0 +23285,5,21.35,10,0.0 +23285,12,38,9,0.0 +23285,41,9.65,27,0.0 +23285,73,15,28,0.0 +23285,14,23.25,43,0.0 +23285,71,21.5,29,0.0 +23285,60,34,16,0.0 +23285,44,19.45,44,0.0 +23285,11,21,25,0.0 +23285,26,31.23,47,0.0 +23285,35,18,9,0.0 +23285,32,32,43,0.0 +23285,57,19.5,1,0.0 +23285,74,10,28,0.0 +23285,53,32.8,23,0.0 +23285,3,10,41,0.0 +23285,21,10,2,0.0 +23285,22,21,16,0.0 +23285,40,18.4,41,0.0 +23285,39,18,17,0.0 +23285,46,12,6,0.0 +23286,29,123.79,21,0.0 +23286,30,25.89,15,0.0 +23286,63,43.9,15,0.0 +23286,59,55,22,0.0 +23286,7,30,15,0.0 +23286,4,22,11,0.0 +23286,15,15.5,8,0.0 +23286,35,18,19,0.0 +23286,45,9.5,12,0.0 +23286,26,31.23,23,0.0 +23286,38,263.5,31,0.0 +23286,58,13.25,34,0.0 +23286,1,18,48,0.0 +23286,36,19,24,0.0 +23286,64,33.25,20,0.0 +23286,18,62.5,27,0.0 +23286,12,38,22,0.0 +23286,61,28.5,49,0.0 +23287,63,43.9,41,0.0 +23287,12,38,46,0.0 +23287,36,19,33,0.0 +23287,70,15,21,0.0 +23287,22,21,7,0.0 +23287,51,53,21,0.0 +23287,71,21.5,5,0.0 +23287,33,2.5,44,0.0 +23287,10,31,5,0.0 +23287,38,263.5,50,0.0 +23287,15,15.5,17,0.0 +23287,73,15,35,0.0 +23287,49,20,46,0.0 +23287,24,4.5,30,0.0 +23287,58,13.25,36,0.0 +23287,13,6,17,0.0 +23287,43,46,22,0.0 +23287,68,12.5,49,0.0 +23287,26,31.23,40,0.0 +23287,52,7,48,0.0 +23287,3,10,36,0.0 +23287,31,12.5,39,0.0 +23287,23,9,4,0.0 +23287,30,25.89,2,0.0 +23287,41,9.65,26,0.0 +23287,8,40,38,0.0 +23287,37,26,40,0.0 +23287,29,123.79,28,0.0 +23287,28,45.6,35,0.0 +23287,50,16.25,37,0.0 +23287,46,12,23,0.0 +23287,21,10,4,0.0 +23288,54,7.45,28,0.0 +23288,14,23.25,16,0.0 +23288,72,34.8,50,0.0 +23288,12,38,30,0.0 +23288,24,4.5,33,0.0 +23288,41,9.65,35,0.0 +23288,59,55,43,0.0 +23288,75,7.75,18,0.0 +23288,16,17.45,26,0.0 +23288,50,16.25,45,0.0 +23288,19,9.2,31,0.0 +23288,49,20,30,0.0 +23288,55,24,20,0.0 +23288,70,15,44,0.0 +23288,52,7,32,0.0 +23288,73,15,17,0.0 +23288,53,32.8,13,0.0 +23288,44,19.45,1,0.0 +23288,77,13,45,0.0 +23288,33,2.5,31,0.0 +23288,10,31,31,0.0 +23288,8,40,50,0.0 +23288,4,22,34,0.0 +23288,9,97,31,0.0 +23289,34,14,36,0.0 +23289,12,38,13,0.0 +23289,38,263.5,35,0.0 +23289,18,62.5,36,0.0 +23289,31,12.5,35,0.0 +23289,70,15,12,0.0 +23289,67,14,31,0.0 +23289,54,7.45,6,0.0 +23289,63,43.9,14,0.0 +23289,61,28.5,26,0.0 +23289,49,20,12,0.0 +23289,30,25.89,19,0.0 +23289,1,18,24,0.0 +23289,4,22,6,0.0 +23289,60,34,25,0.0 +23289,14,23.25,34,0.0 +23289,26,31.23,14,0.0 +23289,71,21.5,4,0.0 +23289,15,15.5,42,0.0 +23289,39,18,35,0.0 +23289,22,21,6,0.0 +23289,16,17.45,37,0.0 +23289,17,39,38,0.0 +23289,57,19.5,8,0.0 +23289,6,25,24,0.0 +23289,9,97,44,0.0 +23289,5,21.35,12,0.0 +23289,27,43.9,19,0.0 +23289,19,9.2,39,0.0 +23289,8,40,37,0.0 +23289,47,9.5,4,0.0 +23289,43,46,2,0.0 +23289,3,10,23,0.0 +23289,40,18.4,47,0.0 +23289,13,6,10,0.0 +23289,21,10,18,0.0 +23289,20,81,8,0.0 +23289,64,33.25,39,0.0 +23289,58,13.25,37,0.0 +23289,51,53,35,0.0 +23289,48,12.75,40,0.0 +23289,74,10,40,0.0 +23289,52,7,19,0.0 +23289,44,19.45,14,0.0 +23289,59,55,14,0.0 +23289,41,9.65,38,0.0 +23289,7,30,46,0.0 +23289,68,12.5,3,0.0 +23289,11,21,40,0.0 +23289,36,19,14,0.0 +23289,29,123.79,24,0.0 +23289,33,2.5,49,0.0 +23289,53,32.8,3,0.0 +23289,32,32,18,0.0 +23289,10,31,15,0.0 +23289,42,14,10,0.0 +23289,25,14,12,0.0 +23289,45,9.5,35,0.0 +23289,50,16.25,41,0.0 +23289,76,18,9,0.0 +23289,77,13,30,0.0 +23289,75,7.75,24,0.0 +23289,69,36,47,0.0 +23289,37,26,21,0.0 +23289,23,9,47,0.0 +23289,46,12,19,0.0 +23289,35,18,1,0.0 +23289,72,34.8,25,0.0 +23289,56,38,8,0.0 +23289,73,15,30,0.0 +23289,24,4.5,3,0.0 +23289,55,24,2,0.0 +23289,62,49.3,16,0.0 +23289,66,17,29,0.0 +23289,2,19,48,0.0 +23289,65,21.05,35,0.0 +23289,28,45.6,20,0.0 +23290,50,16.25,41,0.0 +23290,9,97,21,0.0 +23290,47,9.5,41,0.0 +23290,39,18,12,0.0 +23290,54,7.45,19,0.0 +23290,65,21.05,3,0.0 +23290,56,38,30,0.0 +23290,17,39,39,0.0 +23290,21,10,44,0.0 +23290,66,17,34,0.0 +23290,14,23.25,25,0.0 +23290,12,38,31,0.0 +23290,37,26,37,0.0 +23290,63,43.9,3,0.0 +23290,33,2.5,44,0.0 +23290,73,15,38,0.0 +23290,13,6,21,0.0 +23290,69,36,26,0.0 +23290,20,81,35,0.0 +23290,7,30,1,0.0 +23290,38,263.5,8,0.0 +23290,68,12.5,32,0.0 +23290,71,21.5,30,0.0 +23290,45,9.5,5,0.0 +23290,25,14,50,0.0 +23290,70,15,32,0.0 +23290,42,14,46,0.0 +23290,77,13,4,0.0 +23290,24,4.5,8,0.0 +23290,36,19,43,0.0 +23290,22,21,44,0.0 +23290,51,53,33,0.0 +23290,31,12.5,48,0.0 +23290,76,18,12,0.0 +23290,27,43.9,15,0.0 +23290,46,12,11,0.0 +23290,18,62.5,45,0.0 +23290,49,20,24,0.0 +23290,30,25.89,43,0.0 +23290,23,9,50,0.0 +23290,34,14,19,0.0 +23290,8,40,49,0.0 +23290,4,22,5,0.0 +23290,32,32,48,0.0 +23290,40,18.4,49,0.0 +23290,58,13.25,42,0.0 +23290,41,9.65,34,0.0 +23290,53,32.8,49,0.0 +23290,48,12.75,6,0.0 +23290,75,7.75,10,0.0 +23290,64,33.25,34,0.0 +23290,59,55,32,0.0 +23290,26,31.23,4,0.0 +23290,5,21.35,17,0.0 +23290,19,9.2,33,0.0 +23290,43,46,22,0.0 +23290,6,25,34,0.0 +23290,55,24,5,0.0 +23290,3,10,41,0.0 +23290,15,15.5,7,0.0 +23290,11,21,20,0.0 +23290,52,7,10,0.0 +23290,60,34,38,0.0 +23290,62,49.3,1,0.0 +23290,44,19.45,5,0.0 +23290,10,31,48,0.0 +23291,64,33.25,17,0.0 +23291,11,21,1,0.0 +23291,71,21.5,18,0.0 +23291,21,10,23,0.0 +23291,16,17.45,45,0.0 +23291,49,20,9,0.0 +23291,63,43.9,24,0.0 +23291,18,62.5,33,0.0 +23291,44,19.45,19,0.0 +23291,22,21,16,0.0 +23291,41,9.65,25,0.0 +23291,59,55,18,0.0 +23291,51,53,28,0.0 +23291,68,12.5,7,0.0 +23291,13,6,11,0.0 +23291,70,15,9,0.0 +23291,67,14,29,0.0 +23291,26,31.23,49,0.0 +23292,22,21,45,0.0 +23293,71,21.5,38,0.0 +23293,50,16.25,16,0.0 +23293,24,4.5,12,0.0 +23293,16,17.45,29,0.0 +23293,73,15,19,0.0 +23293,12,38,1,0.0 +23293,77,13,6,0.0 +23293,11,21,1,0.0 +23293,53,32.8,17,0.0 +23293,35,18,42,0.0 +23293,34,14,16,0.0 +23293,14,23.25,28,0.0 +23293,25,14,44,0.0 +23293,9,97,42,0.0 +23293,65,21.05,1,0.0 +23293,22,21,36,0.0 +23293,33,2.5,49,0.0 +23293,29,123.79,11,0.0 +23293,49,20,2,0.0 +23293,36,19,23,0.0 +23293,64,33.25,11,0.0 +23293,63,43.9,35,0.0 +23293,2,19,43,0.0 +23293,38,263.5,45,0.0 +23293,28,45.6,7,0.0 +23293,44,19.45,1,0.0 +23293,76,18,46,0.0 +23293,62,49.3,11,0.0 +23293,66,17,42,0.0 +23293,42,14,25,0.0 +23293,56,38,17,0.0 +23293,8,40,8,0.0 +23293,31,12.5,46,0.0 +23293,32,32,37,0.0 +23293,43,46,25,0.0 +23293,51,53,41,0.0 +23293,67,14,35,0.0 +23293,48,12.75,37,0.0 +23293,47,9.5,25,0.0 +23293,7,30,8,0.0 +23293,52,7,38,0.0 +23293,75,7.75,38,0.0 +23293,60,34,9,0.0 +23293,41,9.65,36,0.0 +23293,70,15,10,0.0 +23293,39,18,31,0.0 +23293,15,15.5,4,0.0 +23293,58,13.25,48,0.0 +23293,21,10,35,0.0 +23293,54,7.45,40,0.0 +23293,74,10,50,0.0 +23293,72,34.8,20,0.0 +23293,57,19.5,12,0.0 +23293,1,18,3,0.0 +23293,19,9.2,31,0.0 +23293,13,6,36,0.0 +23293,23,9,14,0.0 +23293,18,62.5,30,0.0 +23293,3,10,30,0.0 +23293,10,31,28,0.0 +23293,68,12.5,24,0.0 +23293,27,43.9,4,0.0 +23293,69,36,23,0.0 +23294,15,15.5,40,0.0 +23294,74,10,3,0.0 +23294,1,18,11,0.0 +23294,18,62.5,30,0.0 +23294,17,39,38,0.0 +23294,68,12.5,6,0.0 +23294,26,31.23,33,0.0 +23294,42,14,13,0.0 +23294,64,33.25,30,0.0 +23294,55,24,16,0.0 +23294,36,19,35,0.0 +23294,24,4.5,12,0.0 +23294,23,9,4,0.0 +23294,33,2.5,7,0.0 +23294,50,16.25,11,0.0 +23294,39,18,23,0.0 +23294,63,43.9,34,0.0 +23294,38,263.5,5,0.0 +23294,10,31,5,0.0 +23294,46,12,18,0.0 +23294,2,19,6,0.0 +23294,77,13,18,0.0 +23294,61,28.5,2,0.0 +23294,75,7.75,19,0.0 +23294,71,21.5,44,0.0 +23294,62,49.3,3,0.0 +23294,49,20,6,0.0 +23294,16,17.45,30,0.0 +23294,59,55,15,0.0 +23294,14,23.25,27,0.0 +23294,72,34.8,47,0.0 +23294,70,15,21,0.0 +23294,56,38,25,0.0 +23294,22,21,26,0.0 +23294,76,18,15,0.0 +23294,28,45.6,9,0.0 +23294,57,19.5,11,0.0 +23294,41,9.65,39,0.0 +23294,47,9.5,24,0.0 +23294,11,21,21,0.0 +23294,3,10,41,0.0 +23294,43,46,38,0.0 +23294,40,18.4,22,0.0 +23294,60,34,23,0.0 +23294,35,18,19,0.0 +23294,6,25,31,0.0 +23294,7,30,46,0.0 +23294,44,19.45,39,0.0 +23294,53,32.8,3,0.0 +23294,27,43.9,44,0.0 +23294,20,81,44,0.0 +23294,8,40,50,0.0 +23294,12,38,7,0.0 +23294,25,14,39,0.0 +23294,67,14,44,0.0 +23294,9,97,18,0.0 +23294,58,13.25,35,0.0 +23294,13,6,2,0.0 +23294,32,32,9,0.0 +23294,37,26,38,0.0 +23294,21,10,13,0.0 +23294,51,53,7,0.0 +23294,45,9.5,39,0.0 +23294,30,25.89,18,0.0 +23294,34,14,17,0.0 +23294,48,12.75,26,0.0 +23294,65,21.05,32,0.0 +23294,73,15,8,0.0 +23294,29,123.79,36,0.0 +23294,54,7.45,27,0.0 +23294,69,36,17,0.0 +23294,31,12.5,36,0.0 +23294,4,22,34,0.0 +23294,19,9.2,8,0.0 +23294,52,7,15,0.0 +23295,42,14,48,0.0 +23295,2,19,4,0.0 +23295,46,12,45,0.0 +23295,18,62.5,48,0.0 +23295,56,38,37,0.0 +23295,1,18,46,0.0 +23295,55,24,1,0.0 +23295,52,7,31,0.0 +23295,65,21.05,47,0.0 +23295,48,12.75,4,0.0 +23295,44,19.45,27,0.0 +23295,11,21,6,0.0 +23296,17,39,39,0.0 +23296,3,10,18,0.0 +23296,23,9,15,0.0 +23296,41,9.65,18,0.0 +23296,74,10,22,0.0 +23296,57,19.5,22,0.0 +23296,29,123.79,47,0.0 +23296,50,16.25,39,0.0 +23296,68,12.5,42,0.0 +23296,52,7,11,0.0 +23296,53,32.8,28,0.0 +23296,69,36,48,0.0 +23296,77,13,23,0.0 +23296,35,18,22,0.0 +23296,9,97,28,0.0 +23296,44,19.45,36,0.0 +23296,51,53,39,0.0 +23296,62,49.3,4,0.0 +23296,24,4.5,16,0.0 +23296,4,22,30,0.0 +23296,32,32,21,0.0 +23296,48,12.75,41,0.0 +23296,40,18.4,11,0.0 +23296,27,43.9,30,0.0 +23296,36,19,30,0.0 +23296,60,34,45,0.0 +23296,1,18,10,0.0 +23296,66,17,44,0.0 +23296,7,30,46,0.0 +23296,58,13.25,34,0.0 +23296,39,18,8,0.0 +23296,45,9.5,34,0.0 +23296,72,34.8,47,0.0 +23296,65,21.05,12,0.0 +23296,55,24,36,0.0 +23296,12,38,10,0.0 +23296,19,9.2,2,0.0 +23296,73,15,42,0.0 +23296,70,15,50,0.0 +23296,22,21,7,0.0 +23296,54,7.45,5,0.0 +23296,34,14,25,0.0 +23296,18,62.5,19,0.0 +23296,64,33.25,22,0.0 +23296,33,2.5,26,0.0 +23296,25,14,40,0.0 +23296,15,15.5,11,0.0 +23296,47,9.5,30,0.0 +23296,31,12.5,45,0.0 +23296,75,7.75,18,0.0 +23296,59,55,19,0.0 +23296,20,81,17,0.0 +23296,8,40,33,0.0 +23296,28,45.6,47,0.0 +23296,26,31.23,16,0.0 +23296,10,31,12,0.0 +23296,67,14,39,0.0 +23296,14,23.25,32,0.0 +23296,5,21.35,10,0.0 +23296,71,21.5,9,0.0 +23296,76,18,23,0.0 +23296,63,43.9,1,0.0 +23296,16,17.45,35,0.0 +23296,11,21,50,0.0 +23296,21,10,23,0.0 +23296,6,25,46,0.0 +23296,13,6,25,0.0 +23296,37,26,9,0.0 +23296,56,38,21,0.0 +23297,20,81,30,0.0 +23297,72,34.8,44,0.0 +23297,70,15,15,0.0 +23297,21,10,26,0.0 +23297,31,12.5,17,0.0 +23297,11,21,30,0.0 +23297,22,21,44,0.0 +23297,29,123.79,44,0.0 +23297,68,12.5,3,0.0 +23297,17,39,36,0.0 +23297,6,25,41,0.0 +23297,76,18,6,0.0 +23297,26,31.23,36,0.0 +23297,73,15,44,0.0 +23297,42,14,41,0.0 +23297,43,46,18,0.0 +23297,58,13.25,16,0.0 +23297,19,9.2,33,0.0 +23297,2,19,13,0.0 +23297,12,38,21,0.0 +23297,1,18,48,0.0 +23297,40,18.4,4,0.0 +23297,45,9.5,25,0.0 +23297,54,7.45,34,0.0 +23297,60,34,4,0.0 +23297,8,40,19,0.0 +23297,16,17.45,43,0.0 +23297,56,38,21,0.0 +23297,47,9.5,23,0.0 +23297,57,19.5,15,0.0 +23297,24,4.5,34,0.0 +23297,13,6,41,0.0 +23297,15,15.5,10,0.0 +23297,28,45.6,6,0.0 +23297,55,24,33,0.0 +23297,34,14,20,0.0 +23297,69,36,1,0.0 +23297,25,14,47,0.0 +23297,74,10,47,0.0 +23297,41,9.65,48,0.0 +23297,51,53,18,0.0 +23297,30,25.89,20,0.0 +23297,38,263.5,11,0.0 +23297,50,16.25,8,0.0 +23297,32,32,5,0.0 +23297,67,14,28,0.0 +23297,46,12,10,0.0 +23297,4,22,29,0.0 +23297,48,12.75,39,0.0 +23297,65,21.05,35,0.0 +23298,27,43.9,45,0.0 +23298,68,12.5,41,0.0 +23299,48,12.75,28,0.0 +23299,8,40,15,0.0 +23299,75,7.75,31,0.0 +23299,40,18.4,11,0.0 +23299,52,7,32,0.0 +23299,4,22,17,0.0 +23299,47,9.5,24,0.0 +23299,13,6,31,0.0 +23299,33,2.5,48,0.0 +23299,70,15,45,0.0 +23299,16,17.45,48,0.0 +23299,28,45.6,40,0.0 +23299,1,18,14,0.0 +23299,51,53,3,0.0 +23299,37,26,18,0.0 +23299,63,43.9,3,0.0 +23299,67,14,48,0.0 +23299,20,81,7,0.0 +23299,17,39,12,0.0 +23299,18,62.5,27,0.0 +23299,61,28.5,12,0.0 +23299,3,10,12,0.0 +23299,6,25,23,0.0 +23299,43,46,29,0.0 +23299,10,31,20,0.0 +23299,23,9,31,0.0 +23299,50,16.25,5,0.0 +23299,41,9.65,47,0.0 +23300,55,24,2,0.0 +23300,18,62.5,12,0.0 +23300,25,14,43,0.0 +23300,10,31,3,0.0 +23300,66,17,45,0.0 +23300,36,19,2,0.0 +23300,53,32.8,50,0.0 +23300,33,2.5,20,0.0 +23300,15,15.5,20,0.0 +23300,59,55,12,0.0 +23300,39,18,37,0.0 +23300,72,34.8,23,0.0 +23300,63,43.9,14,0.0 +23300,58,13.25,23,0.0 +23300,65,21.05,19,0.0 +23300,37,26,10,0.0 +23300,3,10,29,0.0 +23300,48,12.75,14,0.0 +23300,43,46,40,0.0 +23300,17,39,24,0.0 +23300,20,81,12,0.0 +23300,12,38,40,0.0 +23300,38,263.5,15,0.0 +23300,41,9.65,46,0.0 +23300,70,15,43,0.0 +23300,23,9,14,0.0 +23300,14,23.25,8,0.0 +23300,67,14,37,0.0 +23300,21,10,46,0.0 +23300,75,7.75,15,0.0 +23300,26,31.23,15,0.0 +23300,5,21.35,30,0.0 +23300,42,14,4,0.0 +23300,73,15,39,0.0 +23300,32,32,31,0.0 +23300,40,18.4,8,0.0 +23300,28,45.6,34,0.0 +23300,50,16.25,4,0.0 +23300,69,36,36,0.0 +23300,13,6,15,0.0 +23300,51,53,39,0.0 +23300,27,43.9,1,0.0 +23300,56,38,7,0.0 +23300,62,49.3,7,0.0 +23300,19,9.2,8,0.0 +23300,22,21,39,0.0 +23300,57,19.5,5,0.0 +23300,11,21,32,0.0 +23300,76,18,36,0.0 +23300,8,40,19,0.0 +23300,16,17.45,22,0.0 +23300,6,25,32,0.0 +23300,1,18,48,0.0 +23300,74,10,42,0.0 +23300,60,34,48,0.0 +23300,71,21.5,3,0.0 +23300,9,97,49,0.0 +23300,4,22,36,0.0 +23300,30,25.89,43,0.0 +23300,24,4.5,39,0.0 +23300,2,19,47,0.0 +23300,64,33.25,28,0.0 +23300,29,123.79,29,0.0 +23300,45,9.5,23,0.0 +23300,61,28.5,7,0.0 +23300,68,12.5,12,0.0 +23300,47,9.5,37,0.0 +23300,49,20,38,0.0 +23300,35,18,5,0.0 +23300,7,30,32,0.0 +23300,31,12.5,33,0.0 +23300,46,12,4,0.0 +23301,51,53,13,0.0 +23301,69,36,10,0.0 +23301,44,19.45,17,0.0 +23301,68,12.5,18,0.0 +23301,35,18,44,0.0 +23301,66,17,6,0.0 +23301,33,2.5,43,0.0 +23301,30,25.89,35,0.0 +23301,59,55,10,0.0 +23301,75,7.75,17,0.0 +23301,54,7.45,28,0.0 +23301,50,16.25,11,0.0 +23301,36,19,16,0.0 +23301,57,19.5,20,0.0 +23301,72,34.8,18,0.0 +23301,73,15,37,0.0 +23301,25,14,18,0.0 +23301,18,62.5,15,0.0 +23301,5,21.35,13,0.0 +23301,71,21.5,1,0.0 +23301,15,15.5,13,0.0 +23301,37,26,23,0.0 +23301,48,12.75,22,0.0 +23301,10,31,46,0.0 +23301,2,19,18,0.0 +23301,3,10,12,0.0 +23301,1,18,30,0.0 +23301,53,32.8,20,0.0 +23301,14,23.25,39,0.0 +23301,16,17.45,43,0.0 +23301,70,15,44,0.0 +23301,28,45.6,42,0.0 +23301,13,6,8,0.0 +23301,58,13.25,22,0.0 +23301,63,43.9,38,0.0 +23302,73,15,3,0.0 +23302,37,26,29,0.0 +23302,24,4.5,12,0.0 +23302,51,53,40,0.0 +23302,4,22,48,0.0 +23302,43,46,39,0.0 +23302,26,31.23,32,0.0 +23302,8,40,5,0.0 +23302,27,43.9,34,0.0 +23302,6,25,1,0.0 +23302,36,19,26,0.0 +23302,69,36,11,0.0 +23302,66,17,8,0.0 +23302,58,13.25,2,0.0 +23302,42,14,26,0.0 +23302,34,14,17,0.0 +23302,18,62.5,33,0.0 +23302,1,18,8,0.0 +23302,56,38,48,0.0 +23302,57,19.5,21,0.0 +23302,28,45.6,41,0.0 +23302,9,97,33,0.0 +23302,2,19,22,0.0 +23302,31,12.5,14,0.0 +23302,39,18,21,0.0 +23302,59,55,5,0.0 +23303,65,21.05,46,0.0 +23303,13,6,32,0.0 +23303,69,36,13,0.0 +23303,30,25.89,32,0.0 +23303,60,34,23,0.0 +23303,54,7.45,43,0.0 +23303,52,7,29,0.0 +23303,1,18,6,0.0 +23303,68,12.5,48,0.0 +23303,47,9.5,24,0.0 +23303,15,15.5,40,0.0 +23303,19,9.2,6,0.0 +23303,56,38,25,0.0 +23303,29,123.79,49,0.0 +23303,50,16.25,14,0.0 +23303,46,12,40,0.0 +23303,51,53,29,0.0 +23303,44,19.45,49,0.0 +23303,12,38,44,0.0 +23303,64,33.25,3,0.0 +23303,6,25,4,0.0 +23303,35,18,28,0.0 +23303,20,81,49,0.0 +23303,58,13.25,40,0.0 +23303,74,10,20,0.0 +23303,45,9.5,27,0.0 +23303,53,32.8,25,0.0 +23303,41,9.65,39,0.0 +23303,32,32,10,0.0 +23303,70,15,26,0.0 +23303,67,14,36,0.0 +23303,75,7.75,41,0.0 +23303,73,15,47,0.0 +23303,3,10,30,0.0 +23303,10,31,27,0.0 +23304,37,26,15,0.0 +23304,52,7,37,0.0 +23304,70,15,23,0.0 +23304,42,14,27,0.0 +23304,55,24,39,0.0 +23304,72,34.8,25,0.0 +23304,3,10,33,0.0 +23304,6,25,49,0.0 +23304,61,28.5,14,0.0 +23304,27,43.9,32,0.0 +23304,12,38,39,0.0 +23304,66,17,27,0.0 +23304,54,7.45,33,0.0 +23304,5,21.35,46,0.0 +23304,1,18,42,0.0 +23304,34,14,13,0.0 +23304,63,43.9,20,0.0 +23304,9,97,13,0.0 +23304,49,20,46,0.0 +23304,18,62.5,11,0.0 +23304,30,25.89,7,0.0 +23304,71,21.5,40,0.0 +23304,74,10,23,0.0 +23304,69,36,2,0.0 +23304,47,9.5,20,0.0 +23304,24,4.5,10,0.0 +23304,26,31.23,41,0.0 +23304,35,18,27,0.0 +23304,51,53,31,0.0 +23304,75,7.75,16,0.0 +23304,65,21.05,49,0.0 +23304,62,49.3,12,0.0 +23304,8,40,40,0.0 +23304,77,13,6,0.0 +23304,39,18,20,0.0 +23304,53,32.8,12,0.0 +23304,22,21,3,0.0 +23304,57,19.5,16,0.0 +23304,31,12.5,31,0.0 +23304,43,46,31,0.0 +23304,21,10,34,0.0 +23304,4,22,45,0.0 +23304,23,9,36,0.0 +23304,40,18.4,26,0.0 +23304,10,31,43,0.0 +23304,68,12.5,36,0.0 +23304,45,9.5,9,0.0 +23304,59,55,29,0.0 +23305,12,38,31,0.0 +23305,29,123.79,15,0.0 +23305,77,13,20,0.0 +23305,22,21,27,0.0 +23305,34,14,32,0.0 +23305,41,9.65,34,0.0 +23305,16,17.45,43,0.0 +23305,44,19.45,26,0.0 +23305,38,263.5,4,0.0 +23305,28,45.6,45,0.0 +23305,21,10,9,0.0 +23305,5,21.35,48,0.0 +23305,69,36,47,0.0 +23305,26,31.23,31,0.0 +23305,71,21.5,23,0.0 +23305,15,15.5,10,0.0 +23305,72,34.8,48,0.0 +23305,35,18,11,0.0 +23305,7,30,22,0.0 +23305,6,25,43,0.0 +23305,24,4.5,45,0.0 +23305,40,18.4,14,0.0 +23305,63,43.9,36,0.0 +23305,10,31,13,0.0 +23305,50,16.25,48,0.0 +23305,70,15,2,0.0 +23305,3,10,40,0.0 +23305,59,55,8,0.0 +23305,76,18,22,0.0 +23305,49,20,3,0.0 +23305,64,33.25,46,0.0 +23305,9,97,42,0.0 +23305,25,14,37,0.0 +23305,75,7.75,31,0.0 +23305,23,9,4,0.0 +23305,27,43.9,37,0.0 +23305,2,19,26,0.0 +23305,33,2.5,5,0.0 +23306,10,31,37,0.0 +23306,76,18,45,0.0 +23306,70,15,42,0.0 +23306,64,33.25,33,0.0 +23306,57,19.5,13,0.0 +23306,50,16.25,23,0.0 +23306,63,43.9,43,0.0 +23306,27,43.9,38,0.0 +23306,8,40,26,0.0 +23306,37,26,37,0.0 +23306,12,38,20,0.0 +23306,16,17.45,20,0.0 +23306,14,23.25,45,0.0 +23306,66,17,38,0.0 +23306,69,36,20,0.0 +23306,42,14,33,0.0 +23306,32,32,2,0.0 +23306,30,25.89,9,0.0 +23306,73,15,37,0.0 +23306,74,10,27,0.0 +23306,61,28.5,31,0.0 +23306,1,18,29,0.0 +23306,7,30,3,0.0 +23306,6,25,10,0.0 +23306,15,15.5,49,0.0 +23306,46,12,48,0.0 +23306,68,12.5,43,0.0 +23306,17,39,8,0.0 +23306,38,263.5,10,0.0 +23306,21,10,3,0.0 +23306,23,9,10,0.0 +23306,29,123.79,43,0.0 +23306,59,55,37,0.0 +23306,34,14,5,0.0 +23306,71,21.5,48,0.0 +23306,58,13.25,50,0.0 +23306,4,22,18,0.0 +23306,26,31.23,27,0.0 +23306,55,24,36,0.0 +23306,67,14,6,0.0 +23306,45,9.5,16,0.0 +23306,9,97,48,0.0 +23306,52,7,38,0.0 +23306,18,62.5,50,0.0 +23306,39,18,13,0.0 +23306,40,18.4,12,0.0 +23306,28,45.6,8,0.0 +23307,3,10,17,0.0 +23307,16,17.45,15,0.0 +23307,43,46,9,0.0 +23307,15,15.5,28,0.0 +23307,70,15,1,0.0 +23307,29,123.79,13,0.0 +23307,4,22,8,0.0 +23307,67,14,22,0.0 +23307,7,30,39,0.0 +23307,36,19,13,0.0 +23307,71,21.5,24,0.0 +23307,42,14,2,0.0 +23307,40,18.4,28,0.0 +23307,21,10,34,0.0 +23307,60,34,27,0.0 +23307,8,40,17,0.0 +23307,23,9,4,0.0 +23307,19,9.2,12,0.0 +23307,77,13,30,0.0 +23307,12,38,25,0.0 +23307,62,49.3,23,0.0 +23307,64,33.25,34,0.0 +23307,47,9.5,4,0.0 +23307,14,23.25,4,0.0 +23307,72,34.8,37,0.0 +23307,51,53,42,0.0 +23307,74,10,16,0.0 +23307,33,2.5,26,0.0 +23307,48,12.75,26,0.0 +23307,9,97,3,0.0 +23307,41,9.65,12,0.0 +23307,38,263.5,26,0.0 +23307,56,38,46,0.0 +23307,2,19,43,0.0 +23307,73,15,15,0.0 +23307,53,32.8,46,0.0 +23307,10,31,25,0.0 +23307,25,14,17,0.0 +23307,32,32,34,0.0 +23307,76,18,26,0.0 +23307,31,12.5,50,0.0 +23307,37,26,26,0.0 +23307,17,39,28,0.0 +23307,28,45.6,15,0.0 +23307,49,20,11,0.0 +23307,11,21,4,0.0 +23307,22,21,19,0.0 +23307,52,7,9,0.0 +23307,54,7.45,44,0.0 +23307,46,12,13,0.0 +23307,24,4.5,17,0.0 +23307,1,18,10,0.0 +23307,75,7.75,20,0.0 +23307,18,62.5,45,0.0 +23307,68,12.5,10,0.0 +23307,57,19.5,26,0.0 +23307,55,24,39,0.0 +23307,6,25,11,0.0 +23307,44,19.45,22,0.0 +23307,5,21.35,23,0.0 +23307,34,14,38,0.0 +23307,69,36,36,0.0 +23307,13,6,9,0.0 +23307,26,31.23,10,0.0 +23308,12,38,12,0.0 +23308,44,19.45,24,0.0 +23308,21,10,19,0.0 +23308,64,33.25,25,0.0 +23308,67,14,40,0.0 +23308,72,34.8,40,0.0 +23308,4,22,42,0.0 +23308,27,43.9,38,0.0 +23308,43,46,10,0.0 +23308,77,13,13,0.0 +23308,34,14,2,0.0 +23308,46,12,38,0.0 +23308,73,15,30,0.0 +23308,52,7,24,0.0 +23308,45,9.5,36,0.0 +23308,42,14,4,0.0 +23308,16,17.45,11,0.0 +23308,2,19,34,0.0 +23308,58,13.25,50,0.0 +23308,36,19,47,0.0 +23308,50,16.25,28,0.0 +23308,1,18,35,0.0 +23308,20,81,18,0.0 +23308,68,12.5,1,0.0 +23308,6,25,17,0.0 +23308,39,18,6,0.0 +23308,31,12.5,19,0.0 +23308,41,9.65,35,0.0 +23308,29,123.79,10,0.0 +23308,19,9.2,3,0.0 +23308,11,21,22,0.0 +23308,26,31.23,35,0.0 +23308,10,31,15,0.0 +23308,9,97,30,0.0 +23308,57,19.5,47,0.0 +23308,47,9.5,29,0.0 +23308,25,14,17,0.0 +23308,55,24,34,0.0 +23309,43,46,20,0.0 +23309,25,14,18,0.0 +23309,54,7.45,9,0.0 +23309,46,12,13,0.0 +23309,55,24,14,0.0 +23309,31,12.5,9,0.0 +23309,6,25,27,0.0 +23309,77,13,28,0.0 +23309,41,9.65,46,0.0 +23310,70,15,2,0.0 +23310,44,19.45,29,0.0 +23311,32,32,21,0.0 +23311,22,21,15,0.0 +23311,1,18,27,0.0 +23311,26,31.23,44,0.0 +23311,40,18.4,34,0.0 +23311,39,18,41,0.0 +23311,76,18,11,0.0 +23311,61,28.5,4,0.0 +23311,71,21.5,10,0.0 +23311,2,19,21,0.0 +23311,10,31,37,0.0 +23311,50,16.25,14,0.0 +23311,12,38,29,0.0 +23311,64,33.25,48,0.0 +23311,24,4.5,23,0.0 +23311,19,9.2,3,0.0 +23311,47,9.5,6,0.0 +23311,31,12.5,8,0.0 +23311,7,30,30,0.0 +23312,69,36,36,0.0 +23312,15,15.5,13,0.0 +23312,20,81,44,0.0 +23312,50,16.25,28,0.0 +23312,45,9.5,24,0.0 +23312,59,55,43,0.0 +23312,1,18,43,0.0 +23312,61,28.5,29,0.0 +23312,18,62.5,26,0.0 +23313,63,43.9,50,0.0 +23313,41,9.65,8,0.0 +23313,61,28.5,22,0.0 +23313,37,26,48,0.0 +23313,29,123.79,32,0.0 +23313,69,36,41,0.0 +23313,19,9.2,18,0.0 +23313,40,18.4,12,0.0 +23313,70,15,33,0.0 +23313,27,43.9,10,0.0 +23313,54,7.45,26,0.0 +23313,68,12.5,29,0.0 +23313,47,9.5,3,0.0 +23313,67,14,47,0.0 +23313,64,33.25,31,0.0 +23313,31,12.5,38,0.0 +23313,53,32.8,46,0.0 +23313,2,19,15,0.0 +23313,36,19,33,0.0 +23313,6,25,8,0.0 +23313,25,14,41,0.0 +23313,4,22,10,0.0 +23313,7,30,13,0.0 +23313,60,34,37,0.0 +23313,56,38,24,0.0 +23314,51,53,20,0.0 +23314,61,28.5,19,0.0 +23314,16,17.45,41,0.0 +23314,7,30,45,0.0 +23314,75,7.75,25,0.0 +23314,53,32.8,42,0.0 +23314,25,14,11,0.0 +23314,77,13,30,0.0 +23314,66,17,15,0.0 +23314,67,14,20,0.0 +23314,18,62.5,12,0.0 +23314,47,9.5,35,0.0 +23314,27,43.9,50,0.0 +23314,58,13.25,44,0.0 +23314,28,45.6,43,0.0 +23314,52,7,32,0.0 +23314,15,15.5,39,0.0 +23314,43,46,34,0.0 +23314,59,55,7,0.0 +23314,29,123.79,34,0.0 +23314,30,25.89,10,0.0 +23314,48,12.75,29,0.0 +23314,33,2.5,6,0.0 +23314,21,10,45,0.0 +23314,46,12,35,0.0 +23314,13,6,21,0.0 +23314,10,31,17,0.0 +23314,69,36,22,0.0 +23314,64,33.25,30,0.0 +23314,34,14,38,0.0 +23314,55,24,26,0.0 +23314,62,49.3,43,0.0 +23314,5,21.35,39,0.0 +23314,73,15,27,0.0 +23314,49,20,33,0.0 +23314,54,7.45,34,0.0 +23314,19,9.2,39,0.0 +23314,45,9.5,20,0.0 +23314,63,43.9,19,0.0 +23314,3,10,17,0.0 +23314,74,10,13,0.0 +23314,65,21.05,11,0.0 +23314,70,15,10,0.0 +23315,70,15,47,0.0 +23315,6,25,37,0.0 +23315,2,19,7,0.0 +23315,49,20,28,0.0 +23315,4,22,10,0.0 +23315,7,30,50,0.0 +23315,9,97,23,0.0 +23315,20,81,7,0.0 +23315,61,28.5,1,0.0 +23315,58,13.25,45,0.0 +23315,32,32,32,0.0 +23315,45,9.5,41,0.0 +23315,8,40,42,0.0 +23315,36,19,14,0.0 +23315,67,14,46,0.0 +23315,63,43.9,27,0.0 +23315,65,21.05,42,0.0 +23315,21,10,32,0.0 +23315,19,9.2,12,0.0 +23315,34,14,28,0.0 +23315,55,24,15,0.0 +23315,74,10,41,0.0 +23315,57,19.5,14,0.0 +23315,39,18,31,0.0 +23315,75,7.75,10,0.0 +23315,18,62.5,48,0.0 +23315,71,21.5,49,0.0 +23315,12,38,2,0.0 +23315,66,17,15,0.0 +23315,50,16.25,12,0.0 +23315,23,9,39,0.0 +23315,51,53,10,0.0 +23315,35,18,6,0.0 +23315,27,43.9,23,0.0 +23315,59,55,8,0.0 +23315,72,34.8,7,0.0 +23315,25,14,42,0.0 +23315,64,33.25,38,0.0 +23315,1,18,1,0.0 +23315,10,31,14,0.0 +23315,46,12,17,0.0 +23315,76,18,2,0.0 +23315,26,31.23,6,0.0 +23315,17,39,34,0.0 +23315,60,34,9,0.0 +23315,15,15.5,42,0.0 +23315,11,21,12,0.0 +23315,24,4.5,13,0.0 +23315,73,15,42,0.0 +23315,43,46,34,0.0 +23315,22,21,29,0.0 +23315,42,14,16,0.0 +23315,48,12.75,13,0.0 +23315,62,49.3,17,0.0 +23315,52,7,2,0.0 +23315,5,21.35,26,0.0 +23315,31,12.5,22,0.0 +23315,41,9.65,40,0.0 +23315,40,18.4,31,0.0 +23315,33,2.5,27,0.0 +23315,28,45.6,40,0.0 +23315,68,12.5,9,0.0 +23315,14,23.25,30,0.0 +23315,47,9.5,40,0.0 +23315,54,7.45,27,0.0 +23315,3,10,24,0.0 +23315,37,26,8,0.0 +23315,69,36,17,0.0 +23315,77,13,35,0.0 +23315,56,38,34,0.0 +23315,13,6,29,0.0 +23316,59,55,39,0.0 +23316,18,62.5,46,0.0 +23316,20,81,27,0.0 +23316,49,20,24,0.0 +23316,45,9.5,45,0.0 +23316,34,14,22,0.0 +23316,70,15,15,0.0 +23316,39,18,37,0.0 +23316,1,18,39,0.0 +23316,33,2.5,17,0.0 +23316,27,43.9,11,0.0 +23316,43,46,50,0.0 +23316,65,21.05,15,0.0 +23316,75,7.75,8,0.0 +23316,24,4.5,42,0.0 +23316,56,38,24,0.0 +23316,40,18.4,19,0.0 +23316,69,36,8,0.0 +23317,18,62.5,38,0.0 +23317,63,43.9,8,0.0 +23317,59,55,36,0.0 +23317,38,263.5,10,0.0 +23317,1,18,41,0.0 +23317,61,28.5,34,0.0 +23317,28,45.6,35,0.0 +23317,58,13.25,25,0.0 +23317,29,123.79,39,0.0 +23317,70,15,5,0.0 +23317,26,31.23,35,0.0 +23317,12,38,40,0.0 +23317,4,22,28,0.0 +23317,57,19.5,36,0.0 +23317,72,34.8,45,0.0 +23317,30,25.89,37,0.0 +23317,41,9.65,14,0.0 +23317,67,14,29,0.0 +23317,53,32.8,13,0.0 +23317,68,12.5,14,0.0 +23317,62,49.3,46,0.0 +23317,71,21.5,14,0.0 +23317,36,19,32,0.0 +23317,14,23.25,37,0.0 +23317,8,40,42,0.0 +23317,73,15,45,0.0 +23317,46,12,6,0.0 +23317,33,2.5,15,0.0 +23317,43,46,16,0.0 +23317,17,39,24,0.0 +23317,75,7.75,9,0.0 +23317,25,14,24,0.0 +23317,6,25,34,0.0 +23317,19,9.2,11,0.0 +23317,50,16.25,26,0.0 +23317,56,38,25,0.0 +23317,20,81,48,0.0 +23317,66,17,30,0.0 +23317,7,30,34,0.0 +23317,2,19,24,0.0 +23317,76,18,8,0.0 +23317,13,6,19,0.0 +23317,54,7.45,14,0.0 +23318,55,24,1,0.0 +23318,34,14,42,0.0 +23318,60,34,8,0.0 +23318,56,38,30,0.0 +23318,1,18,32,0.0 +23318,9,97,10,0.0 +23318,13,6,34,0.0 +23318,43,46,32,0.0 +23318,72,34.8,26,0.0 +23318,73,15,4,0.0 +23318,48,12.75,3,0.0 +23318,3,10,12,0.0 +23318,14,23.25,11,0.0 +23318,75,7.75,11,0.0 +23318,49,20,46,0.0 +23318,47,9.5,39,0.0 +23318,40,18.4,35,0.0 +23319,60,34,41,0.0 +23319,56,38,7,0.0 +23319,70,15,35,0.0 +23319,68,12.5,44,0.0 +23319,30,25.89,43,0.0 +23319,36,19,26,0.0 +23319,76,18,22,0.0 +23319,1,18,42,0.0 +23319,17,39,38,0.0 +23319,7,30,35,0.0 +23319,52,7,47,0.0 +23319,66,17,23,0.0 +23319,67,14,1,0.0 +23319,55,24,31,0.0 +23319,77,13,37,0.0 +23320,9,97,1,0.0 +23320,15,15.5,18,0.0 +23320,66,17,17,0.0 +23320,75,7.75,12,0.0 +23320,20,81,28,0.0 +23320,67,14,40,0.0 +23320,33,2.5,22,0.0 +23320,42,14,48,0.0 +23320,70,15,12,0.0 +23320,28,45.6,6,0.0 +23320,10,31,5,0.0 +23320,64,33.25,35,0.0 +23320,24,4.5,45,0.0 +23320,43,46,6,0.0 +23320,37,26,47,0.0 +23320,71,21.5,49,0.0 +23320,7,30,43,0.0 +23320,49,20,12,0.0 +23320,35,18,47,0.0 +23320,52,7,2,0.0 +23320,17,39,15,0.0 +23320,14,23.25,32,0.0 +23320,61,28.5,11,0.0 +23320,58,13.25,3,0.0 +23320,25,14,4,0.0 +23320,68,12.5,47,0.0 +23320,51,53,44,0.0 +23320,21,10,9,0.0 +23320,32,32,48,0.0 +23320,44,19.45,42,0.0 +23320,23,9,6,0.0 +23320,40,18.4,5,0.0 +23320,76,18,4,0.0 +23320,39,18,29,0.0 +23320,31,12.5,8,0.0 +23320,69,36,12,0.0 +23320,63,43.9,44,0.0 +23320,13,6,50,0.0 +23320,36,19,32,0.0 +23320,50,16.25,3,0.0 +23320,48,12.75,9,0.0 +23320,38,263.5,2,0.0 +23320,57,19.5,47,0.0 +23320,60,34,16,0.0 +23320,27,43.9,36,0.0 +23320,53,32.8,20,0.0 +23320,11,21,31,0.0 +23320,6,25,23,0.0 +23320,3,10,34,0.0 +23320,2,19,33,0.0 +23320,65,21.05,48,0.0 +23320,62,49.3,20,0.0 +23320,74,10,35,0.0 +23320,54,7.45,39,0.0 +23320,34,14,6,0.0 +23320,1,18,25,0.0 +23320,72,34.8,49,0.0 +23320,41,9.65,30,0.0 +23320,45,9.5,27,0.0 +23320,46,12,10,0.0 +23320,19,9.2,44,0.0 +23320,12,38,17,0.0 +23320,5,21.35,9,0.0 +23320,56,38,14,0.0 +23320,29,123.79,47,0.0 +23320,47,9.5,1,0.0 +23320,77,13,44,0.0 +23320,8,40,4,0.0 +23320,4,22,3,0.0 +23320,26,31.23,37,0.0 +23320,55,24,14,0.0 +23320,22,21,26,0.0 +23321,44,19.45,50,0.0 +23321,73,15,36,0.0 +23321,13,6,30,0.0 +23321,74,10,30,0.0 +23321,48,12.75,47,0.0 +23321,75,7.75,41,0.0 +23321,33,2.5,42,0.0 +23321,19,9.2,41,0.0 +23321,23,9,27,0.0 +23322,1,18,22,0.0 +23322,45,9.5,29,0.0 +23322,61,28.5,18,0.0 +23322,66,17,12,0.0 +23322,48,12.75,31,0.0 +23322,47,9.5,30,0.0 +23322,12,38,19,0.0 +23322,4,22,13,0.0 +23322,6,25,6,0.0 +23322,40,18.4,50,0.0 +23322,60,34,4,0.0 +23322,14,23.25,24,0.0 +23322,69,36,41,0.0 +23322,65,21.05,14,0.0 +23322,67,14,13,0.0 +23322,30,25.89,38,0.0 +23322,5,21.35,5,0.0 +23322,73,15,47,0.0 +23322,3,10,50,0.0 +23322,75,7.75,41,0.0 +23322,51,53,10,0.0 +23322,55,24,27,0.0 +23322,70,15,36,0.0 +23322,22,21,37,0.0 +23322,10,31,4,0.0 +23322,71,21.5,49,0.0 +23322,56,38,18,0.0 +23322,58,13.25,23,0.0 +23322,15,15.5,31,0.0 +23322,43,46,35,0.0 +23322,44,19.45,40,0.0 +23323,2,19,24,0.0 +23323,22,21,50,0.0 +23323,13,6,29,0.0 +23323,24,4.5,6,0.0 +23323,50,16.25,47,0.0 +23323,48,12.75,20,0.0 +23323,74,10,13,0.0 +23323,30,25.89,49,0.0 +23323,33,2.5,15,0.0 +23323,57,19.5,40,0.0 +23323,23,9,15,0.0 +23323,16,17.45,39,0.0 +23323,63,43.9,16,0.0 +23323,39,18,11,0.0 +23323,40,18.4,47,0.0 +23323,7,30,10,0.0 +23323,61,28.5,46,0.0 +23323,47,9.5,29,0.0 +23323,15,15.5,41,0.0 +23323,5,21.35,18,0.0 +23323,52,7,24,0.0 +23323,35,18,16,0.0 +23323,10,31,49,0.0 +23323,51,53,27,0.0 +23324,25,14,39,0.0 +23324,74,10,40,0.0 +23324,15,15.5,10,0.0 +23324,50,16.25,48,0.0 +23324,40,18.4,43,0.0 +23324,61,28.5,45,0.0 +23324,30,25.89,6,0.0 +23324,3,10,11,0.0 +23324,70,15,18,0.0 +23324,12,38,24,0.0 +23324,54,7.45,24,0.0 +23324,36,19,11,0.0 +23324,17,39,23,0.0 +23324,47,9.5,29,0.0 +23324,10,31,31,0.0 +23324,23,9,46,0.0 +23324,67,14,1,0.0 +23324,19,9.2,31,0.0 +23324,44,19.45,18,0.0 +23324,75,7.75,32,0.0 +23324,64,33.25,8,0.0 +23324,77,13,25,0.0 +23324,45,9.5,13,0.0 +23324,16,17.45,37,0.0 +23324,14,23.25,33,0.0 +23324,26,31.23,10,0.0 +23324,32,32,33,0.0 +23324,53,32.8,28,0.0 +23324,6,25,44,0.0 +23324,58,13.25,15,0.0 +23324,72,34.8,41,0.0 +23324,69,36,15,0.0 +23324,42,14,10,0.0 +23324,27,43.9,30,0.0 +23324,43,46,28,0.0 +23324,41,9.65,29,0.0 +23324,37,26,8,0.0 +23324,73,15,23,0.0 +23324,62,49.3,35,0.0 +23324,76,18,22,0.0 +23324,55,24,23,0.0 +23324,7,30,12,0.0 +23324,22,21,38,0.0 +23324,63,43.9,17,0.0 +23324,71,21.5,21,0.0 +23324,9,97,8,0.0 +23324,49,20,41,0.0 +23324,5,21.35,3,0.0 +23324,38,263.5,11,0.0 +23324,68,12.5,27,0.0 +23324,46,12,17,0.0 +23324,66,17,29,0.0 +23324,34,14,26,0.0 +23324,29,123.79,21,0.0 +23324,24,4.5,43,0.0 +23324,8,40,6,0.0 +23324,48,12.75,8,0.0 +23324,20,81,15,0.0 +23324,28,45.6,37,0.0 +23324,52,7,43,0.0 +23324,21,10,9,0.0 +23324,1,18,36,0.0 +23324,57,19.5,10,0.0 +23324,59,55,6,0.0 +23324,60,34,36,0.0 +23324,33,2.5,8,0.0 +23324,35,18,4,0.0 +23325,31,12.5,40,0.0 +23325,12,38,26,0.0 +23325,8,40,37,0.0 +23325,54,7.45,48,0.0 +23325,11,21,25,0.0 +23325,49,20,15,0.0 +23325,35,18,32,0.0 +23325,68,12.5,5,0.0 +23325,17,39,2,0.0 +23325,52,7,10,0.0 +23325,22,21,28,0.0 +23325,71,21.5,16,0.0 +23325,65,21.05,18,0.0 +23325,4,22,21,0.0 +23325,34,14,9,0.0 +23325,47,9.5,43,0.0 +23325,1,18,11,0.0 +23325,19,9.2,10,0.0 +23325,64,33.25,21,0.0 +23325,77,13,17,0.0 +23325,25,14,46,0.0 +23325,59,55,44,0.0 +23325,6,25,38,0.0 +23325,51,53,16,0.0 +23325,21,10,8,0.0 +23325,50,16.25,42,0.0 +23325,76,18,49,0.0 +23325,45,9.5,10,0.0 +23325,9,97,44,0.0 +23325,29,123.79,7,0.0 +23325,7,30,7,0.0 +23325,55,24,21,0.0 +23325,3,10,18,0.0 +23325,46,12,7,0.0 +23325,56,38,10,0.0 +23325,27,43.9,21,0.0 +23325,58,13.25,9,0.0 +23325,38,263.5,10,0.0 +23325,40,18.4,22,0.0 +23325,57,19.5,29,0.0 +23325,10,31,46,0.0 +23325,20,81,46,0.0 +23325,72,34.8,34,0.0 +23325,48,12.75,14,0.0 +23325,5,21.35,42,0.0 +23325,30,25.89,12,0.0 +23325,62,49.3,26,0.0 +23325,16,17.45,47,0.0 +23325,37,26,40,0.0 +23325,70,15,24,0.0 +23325,61,28.5,22,0.0 +23325,53,32.8,22,0.0 +23325,14,23.25,27,0.0 +23325,24,4.5,46,0.0 +23325,18,62.5,37,0.0 +23325,39,18,49,0.0 +23325,69,36,27,0.0 +23325,36,19,5,0.0 +23325,42,14,38,0.0 +23325,63,43.9,20,0.0 +23325,60,34,39,0.0 +23325,44,19.45,45,0.0 +23325,67,14,11,0.0 +23325,32,32,40,0.0 +23325,41,9.65,40,0.0 +23325,33,2.5,22,0.0 +23325,13,6,3,0.0 +23325,28,45.6,21,0.0 +23325,74,10,36,0.0 +23325,15,15.5,6,0.0 +23325,75,7.75,8,0.0 +23326,38,263.5,25,0.0 +23326,12,38,15,0.0 +23326,62,49.3,41,0.0 +23326,33,2.5,17,0.0 +23326,49,20,29,0.0 +23326,51,53,48,0.0 +23326,34,14,6,0.0 +23326,69,36,10,0.0 +23326,56,38,40,0.0 +23326,8,40,26,0.0 +23326,59,55,1,0.0 +23326,41,9.65,6,0.0 +23326,29,123.79,44,0.0 +23326,10,31,22,0.0 +23326,40,18.4,11,0.0 +23326,20,81,47,0.0 +23326,43,46,39,0.0 +23326,14,23.25,30,0.0 +23326,28,45.6,31,0.0 +23326,27,43.9,29,0.0 +23326,22,21,50,0.0 +23326,15,15.5,38,0.0 +23326,1,18,47,0.0 +23326,5,21.35,13,0.0 +23326,18,62.5,45,0.0 +23326,61,28.5,17,0.0 +23326,17,39,22,0.0 +23326,6,25,17,0.0 +23326,39,18,34,0.0 +23326,73,15,48,0.0 +23326,16,17.45,7,0.0 +23326,72,34.8,2,0.0 +23326,45,9.5,15,0.0 +23326,31,12.5,41,0.0 +23326,44,19.45,22,0.0 +23327,28,45.6,11,0.0 +23327,61,28.5,49,0.0 +23327,71,21.5,35,0.0 +23327,49,20,44,0.0 +23327,22,21,22,0.0 +23327,50,16.25,37,0.0 +23327,30,25.89,32,0.0 +23327,67,14,10,0.0 +23327,12,38,45,0.0 +23327,1,18,33,0.0 +23327,42,14,26,0.0 +23327,7,30,37,0.0 +23327,4,22,3,0.0 +23327,73,15,16,0.0 +23327,19,9.2,39,0.0 +23327,26,31.23,37,0.0 +23327,14,23.25,12,0.0 +23327,64,33.25,17,0.0 +23327,13,6,27,0.0 +23327,36,19,38,0.0 +23327,46,12,19,0.0 +23327,52,7,45,0.0 +23327,75,7.75,18,0.0 +23327,47,9.5,4,0.0 +23327,18,62.5,28,0.0 +23328,53,32.8,30,0.0 +23328,21,10,23,0.0 +23328,51,53,21,0.0 +23328,44,19.45,37,0.0 +23328,5,21.35,36,0.0 +23328,35,18,14,0.0 +23328,1,18,48,0.0 +23328,33,2.5,7,0.0 +23328,40,18.4,15,0.0 +23328,70,15,13,0.0 +23328,47,9.5,17,0.0 +23328,56,38,36,0.0 +23328,62,49.3,43,0.0 +23328,24,4.5,28,0.0 +23328,27,43.9,21,0.0 +23328,37,26,24,0.0 +23328,23,9,13,0.0 +23328,7,30,36,0.0 +23328,28,45.6,30,0.0 +23328,48,12.75,45,0.0 +23328,22,21,24,0.0 +23328,72,34.8,47,0.0 +23328,58,13.25,16,0.0 +23328,15,15.5,23,0.0 +23328,16,17.45,2,0.0 +23328,42,14,36,0.0 +23328,36,19,3,0.0 +23328,74,10,17,0.0 +23328,26,31.23,23,0.0 +23328,39,18,16,0.0 +23328,13,6,29,0.0 +23328,43,46,9,0.0 +23328,41,9.65,20,0.0 +23328,68,12.5,38,0.0 +23328,45,9.5,37,0.0 +23328,30,25.89,50,0.0 +23328,19,9.2,26,0.0 +23328,52,7,3,0.0 +23328,14,23.25,48,0.0 +23328,34,14,21,0.0 +23328,31,12.5,44,0.0 +23328,11,21,11,0.0 +23328,73,15,36,0.0 +23328,46,12,17,0.0 +23328,17,39,3,0.0 +23328,57,19.5,26,0.0 +23328,20,81,49,0.0 +23328,29,123.79,47,0.0 +23328,9,97,14,0.0 +23328,12,38,50,0.0 +23328,10,31,43,0.0 +23328,54,7.45,14,0.0 +23328,71,21.5,19,0.0 +23328,77,13,6,0.0 +23328,18,62.5,20,0.0 +23328,32,32,40,0.0 +23328,67,14,47,0.0 +23328,6,25,44,0.0 +23328,64,33.25,11,0.0 +23328,55,24,34,0.0 +23328,66,17,22,0.0 +23328,76,18,16,0.0 +23328,8,40,34,0.0 +23328,69,36,36,0.0 +23328,59,55,25,0.0 +23328,61,28.5,28,0.0 +23328,3,10,24,0.0 +23328,49,20,13,0.0 +23328,2,19,29,0.0 +23328,63,43.9,15,0.0 +23328,38,263.5,7,0.0 +23328,65,21.05,19,0.0 +23328,60,34,38,0.0 +23328,25,14,18,0.0 +23328,50,16.25,9,0.0 +23328,4,22,36,0.0 +23329,71,21.5,28,0.0 +23329,14,23.25,29,0.0 +23329,31,12.5,27,0.0 +23329,63,43.9,27,0.0 +23329,66,17,10,0.0 +23329,51,53,16,0.0 +23329,52,7,6,0.0 +23329,54,7.45,49,0.0 +23329,26,31.23,34,0.0 +23329,18,62.5,34,0.0 +23329,15,15.5,3,0.0 +23329,61,28.5,19,0.0 +23329,17,39,24,0.0 +23329,5,21.35,31,0.0 +23329,19,9.2,17,0.0 +23329,3,10,10,0.0 +23329,22,21,6,0.0 +23329,29,123.79,19,0.0 +23329,68,12.5,14,0.0 +23329,60,34,5,0.0 +23329,72,34.8,40,0.0 +23329,42,14,32,0.0 +23329,49,20,47,0.0 +23329,47,9.5,20,0.0 +23329,70,15,14,0.0 +23329,16,17.45,50,0.0 +23329,38,263.5,18,0.0 +23329,35,18,17,0.0 +23329,77,13,49,0.0 +23329,36,19,10,0.0 +23329,57,19.5,41,0.0 +23329,43,46,44,0.0 +23329,27,43.9,27,0.0 +23329,21,10,6,0.0 +23329,45,9.5,50,0.0 +23329,56,38,22,0.0 +23329,44,19.45,13,0.0 +23329,13,6,43,0.0 +23329,33,2.5,13,0.0 +23329,28,45.6,39,0.0 +23329,25,14,38,0.0 +23329,53,32.8,20,0.0 +23329,2,19,16,0.0 +23329,69,36,44,0.0 +23329,30,25.89,10,0.0 +23329,11,21,20,0.0 +23329,59,55,44,0.0 +23329,41,9.65,34,0.0 +23329,10,31,48,0.0 +23329,23,9,34,0.0 +23329,9,97,6,0.0 +23329,67,14,10,0.0 +23329,32,32,18,0.0 +23329,65,21.05,32,0.0 +23329,37,26,27,0.0 +23329,1,18,45,0.0 +23329,40,18.4,43,0.0 +23329,62,49.3,34,0.0 +23329,50,16.25,34,0.0 +23329,55,24,39,0.0 +23329,74,10,34,0.0 +23329,48,12.75,23,0.0 +23329,6,25,23,0.0 +23329,12,38,24,0.0 +23329,34,14,12,0.0 +23329,39,18,16,0.0 +23329,58,13.25,6,0.0 +23329,8,40,23,0.0 +23329,64,33.25,26,0.0 +23329,7,30,16,0.0 +23329,24,4.5,15,0.0 +23329,4,22,12,0.0 +23329,20,81,4,0.0 +23329,75,7.75,40,0.0 +23329,73,15,8,0.0 +23329,76,18,26,0.0 +23330,30,25.89,5,0.0 +23330,66,17,45,0.0 +23330,23,9,10,0.0 +23330,69,36,28,0.0 +23330,52,7,6,0.0 +23330,32,32,28,0.0 +23330,7,30,32,0.0 +23330,45,9.5,42,0.0 +23330,16,17.45,3,0.0 +23330,29,123.79,26,0.0 +23330,31,12.5,39,0.0 +23330,64,33.25,35,0.0 +23330,49,20,3,0.0 +23330,17,39,12,0.0 +23330,12,38,37,0.0 +23330,42,14,45,0.0 +23330,72,34.8,1,0.0 +23330,36,19,33,0.0 +23330,47,9.5,37,0.0 +23330,77,13,7,0.0 +23330,68,12.5,26,0.0 +23330,71,21.5,3,0.0 +23330,24,4.5,49,0.0 +23330,11,21,8,0.0 +23330,22,21,37,0.0 +23330,55,24,15,0.0 +23330,40,18.4,11,0.0 +23330,8,40,31,0.0 +23330,10,31,6,0.0 +23331,23,9,3,0.0 +23331,26,31.23,29,0.0 +23331,19,9.2,42,0.0 +23331,30,25.89,19,0.0 +23331,21,10,6,0.0 +23331,16,17.45,43,0.0 +23331,14,23.25,17,0.0 +23331,50,16.25,21,0.0 +23331,13,6,45,0.0 +23331,56,38,41,0.0 +23331,22,21,18,0.0 +23331,49,20,33,0.0 +23331,71,21.5,37,0.0 +23331,57,19.5,26,0.0 +23331,37,26,29,0.0 +23331,10,31,31,0.0 +23331,1,18,27,0.0 +23331,75,7.75,33,0.0 +23331,46,12,45,0.0 +23331,70,15,5,0.0 +23331,76,18,13,0.0 +23331,39,18,25,0.0 +23331,5,21.35,25,0.0 +23331,29,123.79,18,0.0 +23331,52,7,23,0.0 +23331,36,19,23,0.0 +23331,65,21.05,28,0.0 +23331,68,12.5,24,0.0 +23331,59,55,16,0.0 +23331,38,263.5,19,0.0 +23331,72,34.8,34,0.0 +23331,48,12.75,16,0.0 +23331,24,4.5,27,0.0 +23331,47,9.5,15,0.0 +23331,42,14,20,0.0 +23331,54,7.45,34,0.0 +23331,28,45.6,25,0.0 +23331,41,9.65,15,0.0 +23331,64,33.25,7,0.0 +23331,67,14,43,0.0 +23332,45,9.5,13,0.0 +23332,2,19,11,0.0 +23332,37,26,17,0.0 +23332,33,2.5,44,0.0 +23332,31,12.5,18,0.0 +23332,26,31.23,13,0.0 +23332,20,81,18,0.0 +23332,30,25.89,15,0.0 +23332,54,7.45,17,0.0 +23332,36,19,17,0.0 +23332,76,18,36,0.0 +23332,52,7,25,0.0 +23332,70,15,43,0.0 +23332,18,62.5,31,0.0 +23332,32,32,12,0.0 +23332,42,14,49,0.0 +23332,60,34,5,0.0 +23332,41,9.65,8,0.0 +23332,12,38,5,0.0 +23332,64,33.25,20,0.0 +23332,63,43.9,27,0.0 +23332,5,21.35,48,0.0 +23332,49,20,28,0.0 +23332,16,17.45,42,0.0 +23332,22,21,1,0.0 +23332,7,30,33,0.0 +23332,51,53,1,0.0 +23332,4,22,11,0.0 +23332,9,97,14,0.0 +23332,38,263.5,21,0.0 +23332,73,15,29,0.0 +23332,15,15.5,22,0.0 +23332,1,18,49,0.0 +23332,21,10,42,0.0 +23332,40,18.4,38,0.0 +23332,29,123.79,44,0.0 +23332,58,13.25,7,0.0 +23332,66,17,44,0.0 +23332,62,49.3,30,0.0 +23332,39,18,38,0.0 +23332,10,31,17,0.0 +23332,23,9,1,0.0 +23332,56,38,25,0.0 +23332,57,19.5,46,0.0 +23332,59,55,25,0.0 +23332,71,21.5,50,0.0 +23332,72,34.8,1,0.0 +23332,3,10,34,0.0 +23332,17,39,7,0.0 +23332,25,14,37,0.0 +23332,61,28.5,43,0.0 +23332,46,12,18,0.0 +23332,14,23.25,47,0.0 +23332,24,4.5,13,0.0 +23332,13,6,3,0.0 +23332,8,40,12,0.0 +23332,35,18,7,0.0 +23332,34,14,23,0.0 +23332,44,19.45,47,0.0 +23333,52,7,43,0.0 +23333,1,18,32,0.0 +23333,4,22,48,0.0 +23333,46,12,38,0.0 +23333,23,9,48,0.0 +23333,39,18,41,0.0 +23333,69,36,7,0.0 +23333,7,30,37,0.0 +23333,61,28.5,7,0.0 +23333,27,43.9,45,0.0 +23333,32,32,38,0.0 +23333,17,39,16,0.0 +23333,73,15,12,0.0 +23333,54,7.45,12,0.0 +23333,36,19,4,0.0 +23333,15,15.5,39,0.0 +23333,59,55,4,0.0 +23333,64,33.25,5,0.0 +23333,56,38,30,0.0 +23333,11,21,14,0.0 +23333,53,32.8,9,0.0 +23333,76,18,17,0.0 +23333,22,21,44,0.0 +23333,28,45.6,38,0.0 +23333,31,12.5,34,0.0 +23333,6,25,7,0.0 +23333,26,31.23,35,0.0 +23333,29,123.79,46,0.0 +23333,68,12.5,4,0.0 +23333,62,49.3,13,0.0 +23333,3,10,17,0.0 +23333,12,38,24,0.0 +23333,63,43.9,5,0.0 +23333,65,21.05,40,0.0 +23333,77,13,50,0.0 +23333,21,10,43,0.0 +23333,58,13.25,41,0.0 +23333,33,2.5,15,0.0 +23333,49,20,46,0.0 +23333,55,24,8,0.0 +23333,50,16.25,42,0.0 +23333,60,34,11,0.0 +23333,40,18.4,47,0.0 +23333,16,17.45,8,0.0 +23333,14,23.25,25,0.0 +23333,38,263.5,20,0.0 +23333,8,40,27,0.0 +23333,42,14,4,0.0 +23333,45,9.5,12,0.0 +23333,10,31,34,0.0 +23333,75,7.75,18,0.0 +23333,41,9.65,4,0.0 +23333,9,97,13,0.0 +23333,51,53,19,0.0 +23333,37,26,9,0.0 +23333,71,21.5,27,0.0 +23333,67,14,16,0.0 +23333,44,19.45,44,0.0 +23333,13,6,9,0.0 +23333,66,17,14,0.0 +23333,43,46,32,0.0 +23333,35,18,16,0.0 +23333,47,9.5,11,0.0 +23333,2,19,39,0.0 +23333,25,14,8,0.0 +23333,18,62.5,18,0.0 +23333,30,25.89,21,0.0 +23333,5,21.35,20,0.0 +23333,20,81,17,0.0 +23334,3,10,44,0.0 +23334,32,32,18,0.0 +23334,57,19.5,8,0.0 +23334,22,21,29,0.0 +23334,14,23.25,22,0.0 +23334,59,55,35,0.0 +23334,38,263.5,36,0.0 +23334,39,18,19,0.0 +23334,19,9.2,13,0.0 +23334,75,7.75,1,0.0 +23334,67,14,35,0.0 +23334,1,18,10,0.0 +23334,34,14,15,0.0 +23334,36,19,43,0.0 +23334,41,9.65,32,0.0 +23334,37,26,27,0.0 +23334,63,43.9,4,0.0 +23334,69,36,50,0.0 +23334,16,17.45,4,0.0 +23334,13,6,31,0.0 +23334,35,18,9,0.0 +23334,24,4.5,38,0.0 +23334,65,21.05,6,0.0 +23334,25,14,21,0.0 +23334,11,21,18,0.0 +23334,66,17,19,0.0 +23334,17,39,25,0.0 +23334,6,25,32,0.0 +23334,55,24,5,0.0 +23334,4,22,34,0.0 +23334,15,15.5,27,0.0 +23334,8,40,46,0.0 +23334,56,38,19,0.0 +23334,60,34,48,0.0 +23334,21,10,1,0.0 +23334,72,34.8,19,0.0 +23334,53,32.8,31,0.0 +23335,24,4.5,50,0.0 +23335,59,55,39,0.0 +23335,33,2.5,17,0.0 +23335,72,34.8,36,0.0 +23335,50,16.25,21,0.0 +23335,51,53,25,0.0 +23335,58,13.25,45,0.0 +23335,45,9.5,20,0.0 +23335,66,17,49,0.0 +23335,48,12.75,47,0.0 +23335,67,14,18,0.0 +23335,74,10,35,0.0 +23335,69,36,12,0.0 +23335,61,28.5,16,0.0 +23335,25,14,36,0.0 +23335,4,22,3,0.0 +23335,3,10,15,0.0 +23335,56,38,14,0.0 +23335,53,32.8,8,0.0 +23335,35,18,25,0.0 +23335,10,31,36,0.0 +23335,49,20,25,0.0 +23335,60,34,33,0.0 +23335,57,19.5,30,0.0 +23335,31,12.5,1,0.0 +23335,52,7,26,0.0 +23335,34,14,3,0.0 +23335,77,13,5,0.0 +23335,29,123.79,39,0.0 +23335,68,12.5,50,0.0 +23335,6,25,48,0.0 +23335,64,33.25,35,0.0 +23335,62,49.3,26,0.0 +23335,19,9.2,31,0.0 +23335,28,45.6,26,0.0 +23335,13,6,9,0.0 +23335,36,19,5,0.0 +23335,17,39,9,0.0 +23335,12,38,13,0.0 +23335,41,9.65,48,0.0 +23335,20,81,35,0.0 +23335,9,97,2,0.0 +23335,11,21,49,0.0 +23335,16,17.45,50,0.0 +23335,23,9,49,0.0 +23335,8,40,24,0.0 +23335,47,9.5,42,0.0 +23335,15,15.5,43,0.0 +23335,55,24,33,0.0 +23335,37,26,21,0.0 +23335,73,15,24,0.0 +23335,71,21.5,43,0.0 +23335,30,25.89,27,0.0 +23335,26,31.23,5,0.0 +23335,44,19.45,26,0.0 +23335,38,263.5,37,0.0 +23335,22,21,15,0.0 +23335,43,46,11,0.0 +23335,42,14,19,0.0 +23335,5,21.35,29,0.0 +23335,1,18,14,0.0 +23335,32,32,23,0.0 +23335,39,18,48,0.0 +23335,65,21.05,47,0.0 +23335,46,12,33,0.0 +23335,54,7.45,28,0.0 +23335,75,7.75,24,0.0 +23335,40,18.4,5,0.0 +23335,14,23.25,16,0.0 +23335,27,43.9,13,0.0 +23335,2,19,8,0.0 +23336,2,19,12,0.0 +23336,46,12,14,0.0 +23336,58,13.25,49,0.0 +23336,52,7,9,0.0 +23336,30,25.89,43,0.0 +23336,68,12.5,1,0.0 +23336,19,9.2,48,0.0 +23336,47,9.5,47,0.0 +23336,35,18,27,0.0 +23336,59,55,40,0.0 +23336,5,21.35,44,0.0 +23336,3,10,43,0.0 +23336,62,49.3,13,0.0 +23336,33,2.5,25,0.0 +23336,36,19,18,0.0 +23336,15,15.5,30,0.0 +23336,18,62.5,47,0.0 +23336,75,7.75,36,0.0 +23336,74,10,29,0.0 +23336,21,10,32,0.0 +23336,14,23.25,18,0.0 +23336,51,53,7,0.0 +23336,38,263.5,6,0.0 +23336,70,15,50,0.0 +23336,17,39,42,0.0 +23336,28,45.6,47,0.0 +23336,66,17,43,0.0 +23336,26,31.23,29,0.0 +23336,40,18.4,47,0.0 +23336,60,34,45,0.0 +23336,61,28.5,26,0.0 +23336,12,38,4,0.0 +23336,27,43.9,43,0.0 +23336,24,4.5,24,0.0 +23336,67,14,40,0.0 +23336,22,21,24,0.0 +23337,74,10,45,0.0 +23337,72,34.8,20,0.0 +23337,69,36,16,0.0 +23337,18,62.5,44,0.0 +23337,41,9.65,32,0.0 +23337,16,17.45,20,0.0 +23337,13,6,44,0.0 +23337,37,26,40,0.0 +23337,77,13,23,0.0 +23337,43,46,11,0.0 +23337,25,14,26,0.0 +23337,5,21.35,45,0.0 +23337,57,19.5,10,0.0 +23337,4,22,6,0.0 +23337,65,21.05,3,0.0 +23337,11,21,49,0.0 +23337,27,43.9,39,0.0 +23337,52,7,45,0.0 +23338,35,18,3,0.0 +23338,9,97,37,0.0 +23338,7,30,20,0.0 +23338,54,7.45,22,0.0 +23338,25,14,38,0.0 +23338,13,6,18,0.0 +23338,14,23.25,35,0.0 +23338,64,33.25,18,0.0 +23338,52,7,40,0.0 +23338,6,25,27,0.0 +23339,66,17,1,0.0 +23339,44,19.45,47,0.0 +23339,72,34.8,27,0.0 +23339,18,62.5,10,0.0 +23339,69,36,49,0.0 +23339,39,18,6,0.0 +23339,30,25.89,19,0.0 +23339,14,23.25,30,0.0 +23339,12,38,6,0.0 +23339,19,9.2,7,0.0 +23339,61,28.5,4,0.0 +23339,16,17.45,7,0.0 +23339,31,12.5,32,0.0 +23339,7,30,35,0.0 +23339,60,34,43,0.0 +23339,46,12,37,0.0 +23339,1,18,44,0.0 +23339,41,9.65,47,0.0 +23339,75,7.75,28,0.0 +23339,56,38,23,0.0 +23339,65,21.05,13,0.0 +23339,76,18,7,0.0 +23339,58,13.25,13,0.0 +23339,35,18,34,0.0 +23339,26,31.23,4,0.0 +23339,3,10,23,0.0 +23339,51,53,48,0.0 +23339,10,31,48,0.0 +23339,5,21.35,22,0.0 +23339,53,32.8,1,0.0 +23339,40,18.4,8,0.0 +23339,71,21.5,14,0.0 +23339,74,10,36,0.0 +23339,37,26,13,0.0 +23339,73,15,46,0.0 +23339,59,55,11,0.0 +23339,34,14,6,0.0 +23339,64,33.25,33,0.0 +23339,24,4.5,25,0.0 +23339,63,43.9,33,0.0 +23339,68,12.5,35,0.0 +23339,6,25,39,0.0 +23339,8,40,15,0.0 +23339,13,6,14,0.0 +23339,67,14,29,0.0 +23339,36,19,16,0.0 +23339,20,81,5,0.0 +23339,52,7,37,0.0 +23339,55,24,20,0.0 +23339,54,7.45,11,0.0 +23339,27,43.9,27,0.0 +23339,9,97,45,0.0 +23339,11,21,23,0.0 +23339,70,15,1,0.0 +23339,50,16.25,28,0.0 +23339,38,263.5,36,0.0 +23339,15,15.5,22,0.0 +23339,57,19.5,9,0.0 +23339,47,9.5,14,0.0 +23339,29,123.79,50,0.0 +23339,22,21,31,0.0 +23340,55,24,30,0.0 +23340,57,19.5,50,0.0 +23340,75,7.75,33,0.0 +23340,32,32,7,0.0 +23340,41,9.65,40,0.0 +23340,12,38,13,0.0 +23340,42,14,40,0.0 +23340,33,2.5,6,0.0 +23340,16,17.45,37,0.0 +23340,30,25.89,19,0.0 +23340,49,20,22,0.0 +23340,10,31,3,0.0 +23340,62,49.3,25,0.0 +23340,73,15,37,0.0 +23340,46,12,28,0.0 +23340,1,18,23,0.0 +23340,25,14,46,0.0 +23340,29,123.79,32,0.0 +23341,17,39,16,0.0 +23341,30,25.89,12,0.0 +23341,70,15,31,0.0 +23341,57,19.5,9,0.0 +23341,66,17,30,0.0 +23341,33,2.5,23,0.0 +23341,13,6,7,0.0 +23341,75,7.75,31,0.0 +23341,21,10,24,0.0 +23341,53,32.8,3,0.0 +23341,4,22,17,0.0 +23341,9,97,39,0.0 +23341,67,14,44,0.0 +23341,31,12.5,41,0.0 +23341,55,24,37,0.0 +23341,18,62.5,38,0.0 +23341,36,19,7,0.0 +23341,43,46,35,0.0 +23341,25,14,13,0.0 +23341,15,15.5,15,0.0 +23341,77,13,50,0.0 +23341,61,28.5,2,0.0 +23341,22,21,17,0.0 +23341,49,20,10,0.0 +23341,34,14,32,0.0 +23341,65,21.05,35,0.0 +23341,12,38,9,0.0 +23341,5,21.35,19,0.0 +23341,40,18.4,50,0.0 +23341,62,49.3,29,0.0 +23341,1,18,44,0.0 +23341,68,12.5,50,0.0 +23341,50,16.25,28,0.0 +23341,26,31.23,45,0.0 +23341,58,13.25,38,0.0 +23341,69,36,41,0.0 +23342,40,18.4,49,0.0 +23342,77,13,32,0.0 +23342,73,15,20,0.0 +23342,65,21.05,7,0.0 +23342,2,19,25,0.0 +23342,28,45.6,15,0.0 +23342,51,53,19,0.0 +23342,61,28.5,11,0.0 +23342,38,263.5,1,0.0 +23342,35,18,31,0.0 +23342,63,43.9,24,0.0 +23342,62,49.3,16,0.0 +23342,8,40,4,0.0 +23342,7,30,4,0.0 +23342,55,24,21,0.0 +23342,43,46,44,0.0 +23342,70,15,16,0.0 +23342,18,62.5,45,0.0 +23342,10,31,1,0.0 +23342,69,36,9,0.0 +23342,67,14,29,0.0 +23342,14,23.25,33,0.0 +23342,23,9,7,0.0 +23342,3,10,26,0.0 +23342,20,81,31,0.0 +23342,11,21,50,0.0 +23342,15,15.5,43,0.0 +23342,44,19.45,5,0.0 +23342,36,19,22,0.0 +23342,42,14,33,0.0 +23342,27,43.9,19,0.0 +23342,4,22,17,0.0 +23342,16,17.45,10,0.0 +23342,5,21.35,48,0.0 +23342,6,25,50,0.0 +23342,52,7,44,0.0 +23342,34,14,14,0.0 +23342,37,26,43,0.0 +23342,54,7.45,19,0.0 +23342,66,17,26,0.0 +23343,38,263.5,17,0.0 +23343,6,25,42,0.0 +23343,20,81,34,0.0 +23343,62,49.3,23,0.0 +23343,68,12.5,38,0.0 +23343,22,21,46,0.0 +23343,46,12,1,0.0 +23343,58,13.25,33,0.0 +23343,47,9.5,44,0.0 +23343,14,23.25,4,0.0 +23343,49,20,50,0.0 +23343,11,21,3,0.0 +23343,10,31,46,0.0 +23343,72,34.8,4,0.0 +23343,19,9.2,19,0.0 +23343,4,22,50,0.0 +23343,1,18,10,0.0 +23343,3,10,34,0.0 +23343,73,15,40,0.0 +23343,43,46,9,0.0 +23343,59,55,34,0.0 +23343,71,21.5,35,0.0 +23343,7,30,23,0.0 +23343,53,32.8,2,0.0 +23343,61,28.5,38,0.0 +23343,28,45.6,43,0.0 +23343,36,19,25,0.0 +23343,63,43.9,47,0.0 +23343,69,36,47,0.0 +23343,27,43.9,3,0.0 +23343,50,16.25,14,0.0 +23343,54,7.45,2,0.0 +23343,48,12.75,25,0.0 +23343,42,14,42,0.0 +23343,51,53,38,0.0 +23343,17,39,42,0.0 +23343,70,15,17,0.0 +23343,75,7.75,43,0.0 +23343,24,4.5,11,0.0 +23343,29,123.79,49,0.0 +23343,15,15.5,21,0.0 +23343,32,32,23,0.0 +23343,56,38,27,0.0 +23343,16,17.45,20,0.0 +23343,8,40,40,0.0 +23343,66,17,38,0.0 +23343,64,33.25,40,0.0 +23343,57,19.5,27,0.0 +23343,37,26,29,0.0 +23343,2,19,38,0.0 +23343,5,21.35,32,0.0 +23343,18,62.5,5,0.0 +23343,45,9.5,10,0.0 +23343,60,34,19,0.0 +23343,34,14,27,0.0 +23343,26,31.23,24,0.0 +23343,35,18,32,0.0 +23343,44,19.45,21,0.0 +23343,9,97,46,0.0 +23343,41,9.65,47,0.0 +23343,30,25.89,2,0.0 +23343,77,13,28,0.0 +23343,31,12.5,16,0.0 +23343,55,24,23,0.0 +23343,40,18.4,35,0.0 +23343,25,14,16,0.0 +23343,33,2.5,21,0.0 +23343,67,14,23,0.0 +23343,39,18,49,0.0 +23343,65,21.05,48,0.0 +23343,12,38,14,0.0 +23343,13,6,35,0.0 +23343,74,10,27,0.0 +23343,76,18,37,0.0 +23343,52,7,35,0.0 +23344,31,12.5,8,0.0 +23344,10,31,31,0.0 +23344,55,24,37,0.0 +23344,25,14,9,0.0 +23344,54,7.45,36,0.0 +23344,19,9.2,36,0.0 +23344,56,38,23,0.0 +23344,65,21.05,18,0.0 +23344,12,38,36,0.0 +23344,41,9.65,23,0.0 +23344,32,32,48,0.0 +23344,61,28.5,26,0.0 +23344,45,9.5,48,0.0 +23344,57,19.5,31,0.0 +23344,50,16.25,10,0.0 +23344,33,2.5,31,0.0 +23344,49,20,19,0.0 +23344,48,12.75,1,0.0 +23344,34,14,20,0.0 +23344,35,18,14,0.0 +23344,11,21,41,0.0 +23344,2,19,34,0.0 +23344,71,21.5,34,0.0 +23344,59,55,50,0.0 +23344,7,30,49,0.0 +23344,40,18.4,50,0.0 +23344,8,40,21,0.0 +23344,47,9.5,17,0.0 +23344,42,14,31,0.0 +23344,52,7,49,0.0 +23344,18,62.5,12,0.0 +23344,63,43.9,8,0.0 +23344,70,15,33,0.0 +23344,28,45.6,29,0.0 +23344,58,13.25,9,0.0 +23344,69,36,45,0.0 +23344,22,21,41,0.0 +23344,1,18,6,0.0 +23344,60,34,50,0.0 +23344,75,7.75,27,0.0 +23344,43,46,45,0.0 +23344,5,21.35,37,0.0 +23344,77,13,46,0.0 +23344,74,10,42,0.0 +23344,20,81,23,0.0 +23344,37,26,35,0.0 +23344,15,15.5,20,0.0 +23344,4,22,24,0.0 +23344,51,53,38,0.0 +23344,6,25,23,0.0 +23344,76,18,28,0.0 +23344,13,6,8,0.0 +23344,26,31.23,8,0.0 +23344,3,10,33,0.0 +23344,38,263.5,25,0.0 +23345,48,12.75,46,0.0 +23345,68,12.5,24,0.0 +23345,30,25.89,45,0.0 +23345,42,14,8,0.0 +23345,73,15,39,0.0 +23345,31,12.5,29,0.0 +23345,59,55,31,0.0 +23345,16,17.45,23,0.0 +23345,70,15,50,0.0 +23345,25,14,24,0.0 +23345,62,49.3,25,0.0 +23345,4,22,50,0.0 +23345,29,123.79,13,0.0 +23345,61,28.5,1,0.0 +23345,72,34.8,45,0.0 +23345,15,15.5,40,0.0 +23345,39,18,6,0.0 +23345,44,19.45,34,0.0 +23345,64,33.25,37,0.0 +23345,8,40,27,0.0 +23345,63,43.9,36,0.0 +23345,13,6,5,0.0 +23345,53,32.8,26,0.0 +23345,3,10,47,0.0 +23345,65,21.05,2,0.0 +23345,43,46,39,0.0 +23345,23,9,7,0.0 +23345,41,9.65,15,0.0 +23345,21,10,32,0.0 +23345,76,18,45,0.0 +23345,46,12,15,0.0 +23345,32,32,12,0.0 +23345,2,19,10,0.0 +23345,74,10,5,0.0 +23345,7,30,23,0.0 +23345,47,9.5,18,0.0 +23345,19,9.2,14,0.0 +23345,38,263.5,32,0.0 +23345,75,7.75,25,0.0 +23346,33,2.5,50,0.0 +23346,58,13.25,20,0.0 +23346,56,38,50,0.0 +23346,11,21,26,0.0 +23346,45,9.5,9,0.0 +23346,16,17.45,17,0.0 +23346,8,40,49,0.0 +23346,50,16.25,34,0.0 +23346,76,18,23,0.0 +23346,72,34.8,25,0.0 +23346,62,49.3,10,0.0 +23346,1,18,6,0.0 +23346,51,53,16,0.0 +23346,21,10,35,0.0 +23346,19,9.2,24,0.0 +23347,71,21.5,30,0.0 +23347,66,17,17,0.0 +23347,47,9.5,17,0.0 +23347,3,10,40,0.0 +23347,55,24,49,0.0 +23347,72,34.8,49,0.0 +23347,22,21,16,0.0 +23347,77,13,18,0.0 +23347,65,21.05,17,0.0 +23347,50,16.25,6,0.0 +23347,27,43.9,21,0.0 +23347,42,14,42,0.0 +23347,21,10,11,0.0 +23347,34,14,13,0.0 +23347,24,4.5,6,0.0 +23347,29,123.79,2,0.0 +23347,52,7,19,0.0 +23347,56,38,14,0.0 +23347,54,7.45,38,0.0 +23347,75,7.75,45,0.0 +23347,44,19.45,3,0.0 +23347,11,21,23,0.0 +23347,33,2.5,22,0.0 +23347,64,33.25,41,0.0 +23347,1,18,23,0.0 +23347,17,39,20,0.0 +23347,7,30,31,0.0 +23347,4,22,40,0.0 +23347,37,26,20,0.0 +23347,32,32,13,0.0 +23347,38,263.5,36,0.0 +23347,6,25,9,0.0 +23347,18,62.5,25,0.0 +23347,68,12.5,25,0.0 +23347,30,25.89,46,0.0 +23348,55,24,10,0.0 +23348,5,21.35,21,0.0 +23348,57,19.5,20,0.0 +23348,17,39,17,0.0 +23348,7,30,8,0.0 +23348,48,12.75,36,0.0 +23348,20,81,48,0.0 +23348,54,7.45,47,0.0 +23348,19,9.2,32,0.0 +23348,42,14,17,0.0 +23348,58,13.25,7,0.0 +23348,67,14,42,0.0 +23348,65,21.05,12,0.0 +23348,18,62.5,1,0.0 +23348,13,6,7,0.0 +23348,51,53,38,0.0 +23348,16,17.45,8,0.0 +23348,66,17,15,0.0 +23348,56,38,14,0.0 +23348,64,33.25,48,0.0 +23348,12,38,41,0.0 +23348,61,28.5,50,0.0 +23349,69,36,7,0.0 +23349,71,21.5,7,0.0 +23349,6,25,45,0.0 +23349,42,14,28,0.0 +23349,30,25.89,12,0.0 +23349,72,34.8,48,0.0 +23349,36,19,24,0.0 +23349,28,45.6,33,0.0 +23349,54,7.45,12,0.0 +23349,12,38,29,0.0 +23350,65,21.05,1,0.0 +23350,31,12.5,31,0.0 +23350,66,17,31,0.0 +23350,73,15,50,0.0 +23350,43,46,42,0.0 +23350,9,97,11,0.0 +23350,14,23.25,27,0.0 +23350,19,9.2,4,0.0 +23350,62,49.3,40,0.0 +23350,30,25.89,25,0.0 +23350,29,123.79,10,0.0 +23350,1,18,35,0.0 +23350,77,13,35,0.0 +23350,57,19.5,13,0.0 +23350,18,62.5,25,0.0 +23350,68,12.5,42,0.0 +23350,16,17.45,42,0.0 +23350,69,36,48,0.0 +23350,36,19,39,0.0 +23350,17,39,42,0.0 +23350,48,12.75,14,0.0 +23350,34,14,12,0.0 +23350,72,34.8,22,0.0 +23350,67,14,13,0.0 +23350,61,28.5,31,0.0 +23350,7,30,39,0.0 +23350,25,14,37,0.0 +23350,13,6,48,0.0 +23350,55,24,14,0.0 +23350,74,10,26,0.0 +23350,12,38,8,0.0 +23350,32,32,22,0.0 +23350,46,12,15,0.0 +23350,42,14,20,0.0 +23350,45,9.5,40,0.0 +23350,2,19,46,0.0 +23350,54,7.45,50,0.0 +23350,56,38,16,0.0 +23350,63,43.9,21,0.0 +23350,44,19.45,14,0.0 +23350,50,16.25,48,0.0 +23350,5,21.35,40,0.0 +23350,76,18,39,0.0 +23350,21,10,33,0.0 +23350,8,40,44,0.0 +23350,40,18.4,38,0.0 +23350,26,31.23,13,0.0 +23351,4,22,8,0.0 +23351,12,38,36,0.0 +23351,35,18,39,0.0 +23352,52,7,42,0.0 +23352,43,46,23,0.0 +23352,46,12,34,0.0 +23352,10,31,21,0.0 +23352,57,19.5,50,0.0 +23352,2,19,48,0.0 +23352,32,32,39,0.0 +23352,15,15.5,6,0.0 +23352,75,7.75,13,0.0 +23352,61,28.5,47,0.0 +23352,47,9.5,6,0.0 +23352,42,14,1,0.0 +23352,59,55,38,0.0 +23352,53,32.8,14,0.0 +23352,68,12.5,17,0.0 +23352,26,31.23,4,0.0 +23352,28,45.6,42,0.0 +23352,66,17,38,0.0 +23352,50,16.25,11,0.0 +23352,34,14,22,0.0 +23352,44,19.45,49,0.0 +23352,72,34.8,15,0.0 +23352,27,43.9,48,0.0 +23352,16,17.45,15,0.0 +23352,14,23.25,21,0.0 +23352,30,25.89,22,0.0 +23352,5,21.35,40,0.0 +23352,51,53,41,0.0 +23352,76,18,48,0.0 +23352,56,38,6,0.0 +23352,23,9,18,0.0 +23352,58,13.25,30,0.0 +23352,24,4.5,9,0.0 +23352,21,10,40,0.0 +23352,29,123.79,36,0.0 +23352,64,33.25,20,0.0 +23352,54,7.45,12,0.0 +23352,6,25,36,0.0 +23352,70,15,26,0.0 +23352,71,21.5,11,0.0 +23352,39,18,42,0.0 +23353,40,18.4,39,0.0 +23353,48,12.75,39,0.0 +23353,54,7.45,19,0.0 +23353,65,21.05,41,0.0 +23353,44,19.45,34,0.0 +23353,10,31,48,0.0 +23353,43,46,6,0.0 +23353,71,21.5,14,0.0 +23353,51,53,28,0.0 +23354,29,123.79,24,0.0 +23354,49,20,20,0.0 +23354,54,7.45,25,0.0 +23354,60,34,47,0.0 +23354,37,26,25,0.0 +23354,26,31.23,21,0.0 +23354,12,38,8,0.0 +23354,52,7,10,0.0 +23354,67,14,32,0.0 +23354,44,19.45,49,0.0 +23354,64,33.25,37,0.0 +23354,17,39,26,0.0 +23354,24,4.5,33,0.0 +23354,75,7.75,22,0.0 +23354,30,25.89,46,0.0 +23354,45,9.5,19,0.0 +23354,74,10,20,0.0 +23354,59,55,18,0.0 +23354,68,12.5,46,0.0 +23355,17,39,3,0.0 +23355,38,263.5,43,0.0 +23355,21,10,30,0.0 +23355,34,14,6,0.0 +23355,43,46,26,0.0 +23355,10,31,1,0.0 +23355,26,31.23,7,0.0 +23355,37,26,31,0.0 +23355,7,30,6,0.0 +23355,3,10,16,0.0 +23355,25,14,34,0.0 +23355,40,18.4,33,0.0 +23355,27,43.9,31,0.0 +23355,12,38,25,0.0 +23355,30,25.89,32,0.0 +23355,49,20,10,0.0 +23355,77,13,28,0.0 +23355,48,12.75,5,0.0 +23355,58,13.25,45,0.0 +23355,71,21.5,9,0.0 +23355,72,34.8,7,0.0 +23355,60,34,38,0.0 +23355,76,18,19,0.0 +23355,4,22,11,0.0 +23355,32,32,35,0.0 +23355,46,12,31,0.0 +23355,55,24,33,0.0 +23355,28,45.6,46,0.0 +23355,6,25,15,0.0 +23355,61,28.5,40,0.0 +23355,19,9.2,42,0.0 +23355,31,12.5,21,0.0 +23355,1,18,23,0.0 +23355,41,9.65,34,0.0 +23355,73,15,28,0.0 +23355,35,18,28,0.0 +23355,63,43.9,42,0.0 +23355,29,123.79,9,0.0 +23355,16,17.45,16,0.0 +23355,36,19,25,0.0 +23355,20,81,22,0.0 +23355,33,2.5,38,0.0 +23355,42,14,10,0.0 +23355,57,19.5,50,0.0 +23355,68,12.5,14,0.0 +23355,24,4.5,30,0.0 +23355,15,15.5,34,0.0 +23355,67,14,23,0.0 +23355,11,21,6,0.0 +23355,13,6,41,0.0 +23355,64,33.25,14,0.0 +23355,52,7,29,0.0 +23355,59,55,48,0.0 +23355,65,21.05,6,0.0 +23355,39,18,42,0.0 +23355,51,53,37,0.0 +23355,22,21,35,0.0 +23355,14,23.25,2,0.0 +23355,74,10,3,0.0 +23355,62,49.3,24,0.0 +23355,56,38,34,0.0 +23355,23,9,16,0.0 +23355,75,7.75,23,0.0 +23355,54,7.45,2,0.0 +23355,53,32.8,2,0.0 +23355,66,17,10,0.0 +23355,69,36,13,0.0 +23355,45,9.5,37,0.0 +23355,5,21.35,39,0.0 +23355,2,19,49,0.0 +23355,8,40,4,0.0 +23355,18,62.5,12,0.0 +23356,49,20,29,0.0 +23356,52,7,1,0.0 +23356,24,4.5,28,0.0 +23356,69,36,34,0.0 +23356,10,31,18,0.0 +23356,51,53,49,0.0 +23356,34,14,17,0.0 +23356,18,62.5,43,0.0 +23356,59,55,5,0.0 +23356,43,46,34,0.0 +23356,63,43.9,16,0.0 +23356,53,32.8,23,0.0 +23356,73,15,28,0.0 +23356,46,12,10,0.0 +23356,29,123.79,38,0.0 +23356,28,45.6,39,0.0 +23356,55,24,40,0.0 +23356,30,25.89,30,0.0 +23356,58,13.25,21,0.0 +23356,68,12.5,33,0.0 +23356,13,6,4,0.0 +23356,74,10,17,0.0 +23356,64,33.25,42,0.0 +23356,27,43.9,33,0.0 +23356,40,18.4,29,0.0 +23356,45,9.5,14,0.0 +23356,5,21.35,39,0.0 +23356,44,19.45,31,0.0 +23356,31,12.5,31,0.0 +23356,26,31.23,3,0.0 +23356,21,10,22,0.0 +23356,7,30,47,0.0 +23356,75,7.75,49,0.0 +23356,67,14,43,0.0 +23356,9,97,33,0.0 +23356,38,263.5,19,0.0 +23356,47,9.5,8,0.0 +23356,11,21,49,0.0 +23356,15,15.5,39,0.0 +23356,20,81,42,0.0 +23356,71,21.5,1,0.0 +23356,48,12.75,7,0.0 +23356,54,7.45,29,0.0 +23356,37,26,50,0.0 +23356,33,2.5,36,0.0 +23356,6,25,2,0.0 +23356,23,9,15,0.0 +23356,1,18,32,0.0 +23356,14,23.25,44,0.0 +23356,22,21,1,0.0 +23356,17,39,5,0.0 +23356,60,34,19,0.0 +23356,35,18,16,0.0 +23356,32,32,35,0.0 +23356,56,38,45,0.0 +23356,2,19,2,0.0 +23356,72,34.8,2,0.0 +23356,70,15,47,0.0 +23356,61,28.5,40,0.0 +23356,42,14,22,0.0 +23356,12,38,29,0.0 +23356,76,18,30,0.0 +23356,66,17,50,0.0 +23356,16,17.45,39,0.0 +23356,39,18,14,0.0 +23356,4,22,36,0.0 +23356,36,19,4,0.0 +23356,8,40,50,0.0 +23356,50,16.25,42,0.0 +23356,41,9.65,16,0.0 +23356,57,19.5,46,0.0 +23356,25,14,37,0.0 +23357,46,12,24,0.0 +23357,20,81,13,0.0 +23357,22,21,3,0.0 +23357,53,32.8,2,0.0 +23357,45,9.5,37,0.0 +23357,69,36,15,0.0 +23357,1,18,9,0.0 +23357,44,19.45,32,0.0 +23357,28,45.6,32,0.0 +23357,60,34,35,0.0 +23357,23,9,21,0.0 +23357,42,14,42,0.0 +23357,6,25,3,0.0 +23357,73,15,43,0.0 +23357,41,9.65,3,0.0 +23357,3,10,8,0.0 +23357,77,13,3,0.0 +23357,37,26,14,0.0 +23358,21,10,3,0.0 +23358,12,38,47,0.0 +23358,46,12,46,0.0 +23358,5,21.35,36,0.0 +23358,8,40,46,0.0 +23358,16,17.45,49,0.0 +23358,77,13,44,0.0 +23358,61,28.5,31,0.0 +23358,22,21,9,0.0 +23358,57,19.5,48,0.0 +23358,20,81,2,0.0 +23358,43,46,2,0.0 +23358,1,18,21,0.0 +23358,64,33.25,44,0.0 +23358,59,55,36,0.0 +23358,10,31,4,0.0 +23358,67,14,14,0.0 +23358,42,14,15,0.0 +23358,54,7.45,46,0.0 +23358,33,2.5,43,0.0 +23358,60,34,28,0.0 +23358,36,19,47,0.0 +23358,26,31.23,3,0.0 +23358,40,18.4,37,0.0 +23358,18,62.5,25,0.0 +23358,38,263.5,24,0.0 +23358,39,18,13,0.0 +23358,7,30,33,0.0 +23358,48,12.75,27,0.0 +23359,25,14,32,0.0 +23359,10,31,47,0.0 +23359,2,19,9,0.0 +23359,73,15,33,0.0 +23359,71,21.5,15,0.0 +23359,12,38,23,0.0 +23359,31,12.5,42,0.0 +23359,43,46,15,0.0 +23359,59,55,3,0.0 +23359,6,25,21,0.0 +23359,32,32,37,0.0 +23359,74,10,35,0.0 +23359,36,19,50,0.0 +23359,56,38,19,0.0 +23359,48,12.75,19,0.0 +23359,11,21,41,0.0 +23359,34,14,14,0.0 +23359,16,17.45,48,0.0 +23359,7,30,19,0.0 +23359,38,263.5,9,0.0 +23359,33,2.5,50,0.0 +23359,3,10,26,0.0 +23359,17,39,1,0.0 +23359,35,18,50,0.0 +23359,70,15,18,0.0 +23359,21,10,48,0.0 +23359,55,24,10,0.0 +23359,18,62.5,23,0.0 +23359,20,81,23,0.0 +23359,49,20,31,0.0 +23359,67,14,47,0.0 +23359,75,7.75,30,0.0 +23359,4,22,28,0.0 +23359,46,12,9,0.0 +23359,51,53,4,0.0 +23359,69,36,43,0.0 +23359,24,4.5,3,0.0 +23359,58,13.25,48,0.0 +23359,9,97,28,0.0 +23359,57,19.5,15,0.0 +23359,42,14,7,0.0 +23359,39,18,39,0.0 +23359,8,40,47,0.0 +23359,26,31.23,30,0.0 +23359,22,21,39,0.0 +23359,61,28.5,26,0.0 +23359,29,123.79,34,0.0 +23359,37,26,6,0.0 +23359,41,9.65,33,0.0 +23359,47,9.5,30,0.0 +23359,54,7.45,11,0.0 +23359,62,49.3,19,0.0 +23359,76,18,30,0.0 +23359,40,18.4,13,0.0 +23359,60,34,1,0.0 +23359,15,15.5,21,0.0 +23359,50,16.25,24,0.0 +23359,72,34.8,50,0.0 +23359,30,25.89,42,0.0 +23360,3,10,22,0.0 +23360,33,2.5,42,0.0 +23360,50,16.25,1,0.0 +23360,46,12,14,0.0 +23360,25,14,6,0.0 +23360,36,19,20,0.0 +23360,21,10,16,0.0 +23360,73,15,22,0.0 +23360,67,14,1,0.0 +23360,69,36,48,0.0 +23360,38,263.5,31,0.0 +23360,24,4.5,31,0.0 +23360,28,45.6,18,0.0 +23360,74,10,4,0.0 +23360,70,15,29,0.0 +23360,41,9.65,28,0.0 +23360,35,18,25,0.0 +23360,75,7.75,50,0.0 +23360,12,38,10,0.0 +23360,10,31,13,0.0 +23360,19,9.2,16,0.0 +23360,26,31.23,10,0.0 +23360,45,9.5,4,0.0 +23360,57,19.5,11,0.0 +23360,31,12.5,19,0.0 +23360,49,20,9,0.0 +23360,77,13,14,0.0 +23360,64,33.25,25,0.0 +23360,48,12.75,37,0.0 +23360,62,49.3,35,0.0 +23360,18,62.5,10,0.0 +23360,9,97,5,0.0 +23360,4,22,45,0.0 +23360,22,21,14,0.0 +23360,11,21,8,0.0 +23360,55,24,15,0.0 +23360,6,25,36,0.0 +23360,1,18,34,0.0 +23360,58,13.25,33,0.0 +23360,71,21.5,15,0.0 +23360,40,18.4,47,0.0 +23360,59,55,41,0.0 +23360,23,9,42,0.0 +23360,65,21.05,19,0.0 +23360,15,15.5,36,0.0 +23360,54,7.45,49,0.0 +23360,16,17.45,7,0.0 +23360,43,46,27,0.0 +23360,66,17,45,0.0 +23360,44,19.45,50,0.0 +23360,42,14,13,0.0 +23360,20,81,35,0.0 +23360,2,19,2,0.0 +23360,8,40,18,0.0 +23360,61,28.5,17,0.0 +23360,68,12.5,8,0.0 +23360,37,26,23,0.0 +23360,51,53,10,0.0 +23360,52,7,22,0.0 +23360,60,34,32,0.0 +23360,27,43.9,21,0.0 +23361,2,19,3,0.0 +23361,46,12,7,0.0 +23361,38,263.5,9,0.0 +23361,68,12.5,40,0.0 +23361,27,43.9,8,0.0 +23362,32,32,6,0.0 +23362,40,18.4,25,0.0 +23362,18,62.5,7,0.0 +23362,54,7.45,24,0.0 +23362,21,10,49,0.0 +23362,51,53,35,0.0 +23362,11,21,45,0.0 +23362,55,24,37,0.0 +23362,74,10,15,0.0 +23362,58,13.25,47,0.0 +23362,61,28.5,2,0.0 +23362,16,17.45,46,0.0 +23362,73,15,37,0.0 +23362,57,19.5,15,0.0 +23362,13,6,49,0.0 +23362,49,20,25,0.0 +23362,6,25,48,0.0 +23362,45,9.5,29,0.0 +23362,24,4.5,5,0.0 +23362,8,40,3,0.0 +23362,53,32.8,38,0.0 +23362,2,19,48,0.0 +23362,41,9.65,33,0.0 +23362,70,15,33,0.0 +23362,1,18,12,0.0 +23362,22,21,4,0.0 +23362,33,2.5,10,0.0 +23362,42,14,12,0.0 +23362,17,39,13,0.0 +23362,20,81,42,0.0 +23362,47,9.5,27,0.0 +23362,56,38,16,0.0 +23362,37,26,1,0.0 +23362,43,46,26,0.0 +23362,75,7.75,9,0.0 +23362,14,23.25,1,0.0 +23362,25,14,39,0.0 +23362,65,21.05,19,0.0 +23362,5,21.35,31,0.0 +23362,46,12,8,0.0 +23362,76,18,17,0.0 +23362,64,33.25,4,0.0 +23362,50,16.25,15,0.0 +23362,26,31.23,23,0.0 +23362,35,18,11,0.0 +23362,3,10,25,0.0 +23362,36,19,12,0.0 +23362,39,18,33,0.0 +23362,71,21.5,29,0.0 +23362,67,14,48,0.0 +23362,4,22,30,0.0 +23362,15,15.5,34,0.0 +23362,23,9,50,0.0 +23362,7,30,28,0.0 +23362,29,123.79,27,0.0 +23362,44,19.45,27,0.0 +23362,60,34,12,0.0 +23362,19,9.2,15,0.0 +23362,12,38,38,0.0 +23362,48,12.75,7,0.0 +23362,52,7,38,0.0 +23362,59,55,7,0.0 +23362,68,12.5,16,0.0 +23362,77,13,13,0.0 +23362,34,14,33,0.0 +23362,69,36,37,0.0 +23362,30,25.89,38,0.0 +23362,63,43.9,21,0.0 +23362,72,34.8,6,0.0 +23362,10,31,7,0.0 +23362,9,97,22,0.0 +23362,28,45.6,7,0.0 +23362,38,263.5,18,0.0 +23362,31,12.5,25,0.0 +23362,62,49.3,31,0.0 +23362,66,17,22,0.0 +23362,27,43.9,34,0.0 +23363,57,19.5,50,0.0 +23363,66,17,16,0.0 +23363,25,14,17,0.0 +23363,40,18.4,8,0.0 +23363,4,22,13,0.0 +23363,26,31.23,34,0.0 +23363,18,62.5,24,0.0 +23363,72,34.8,48,0.0 +23363,60,34,22,0.0 +23363,8,40,8,0.0 +23363,15,15.5,3,0.0 +23363,23,9,34,0.0 +23363,44,19.45,32,0.0 +23363,32,32,28,0.0 +23363,3,10,15,0.0 +23363,54,7.45,40,0.0 +23363,48,12.75,5,0.0 +23363,7,30,48,0.0 +23363,63,43.9,17,0.0 +23363,22,21,9,0.0 +23363,55,24,15,0.0 +23363,2,19,42,0.0 +23363,52,7,38,0.0 +23363,19,9.2,6,0.0 +23363,71,21.5,21,0.0 +23363,75,7.75,44,0.0 +23363,30,25.89,11,0.0 +23363,67,14,4,0.0 +23363,68,12.5,2,0.0 +23363,74,10,47,0.0 +23363,20,81,48,0.0 +23363,76,18,22,0.0 +23363,69,36,2,0.0 +23363,24,4.5,45,0.0 +23363,65,21.05,21,0.0 +23363,56,38,31,0.0 +23363,13,6,36,0.0 +23363,34,14,42,0.0 +23363,41,9.65,1,0.0 +23363,35,18,15,0.0 +23363,27,43.9,26,0.0 +23363,46,12,4,0.0 +23363,29,123.79,16,0.0 +23363,1,18,1,0.0 +23363,17,39,11,0.0 +23363,6,25,29,0.0 +23363,33,2.5,23,0.0 +23363,28,45.6,26,0.0 +23363,12,38,31,0.0 +23363,61,28.5,49,0.0 +23363,43,46,6,0.0 +23363,70,15,46,0.0 +23363,73,15,6,0.0 +23363,5,21.35,12,0.0 +23363,37,26,27,0.0 +23363,45,9.5,32,0.0 +23363,77,13,10,0.0 +23363,9,97,15,0.0 +23363,53,32.8,42,0.0 +23364,42,14,19,0.0 +23364,15,15.5,48,0.0 +23364,31,12.5,46,0.0 +23364,64,33.25,1,0.0 +23364,2,19,23,0.0 +23364,61,28.5,15,0.0 +23364,60,34,19,0.0 +23364,74,10,29,0.0 +23364,4,22,39,0.0 +23364,44,19.45,37,0.0 +23364,62,49.3,45,0.0 +23364,26,31.23,11,0.0 +23364,18,62.5,40,0.0 +23364,20,81,8,0.0 +23364,27,43.9,38,0.0 +23364,73,15,36,0.0 +23364,57,19.5,25,0.0 +23364,77,13,22,0.0 +23364,50,16.25,4,0.0 +23364,48,12.75,17,0.0 +23364,28,45.6,28,0.0 +23364,67,14,24,0.0 +23364,16,17.45,49,0.0 +23364,5,21.35,50,0.0 +23364,34,14,13,0.0 +23364,53,32.8,15,0.0 +23364,12,38,39,0.0 +23364,11,21,49,0.0 +23364,22,21,23,0.0 +23364,38,263.5,40,0.0 +23364,76,18,16,0.0 +23364,65,21.05,1,0.0 +23364,56,38,14,0.0 +23364,51,53,5,0.0 +23364,45,9.5,23,0.0 +23364,39,18,50,0.0 +23364,23,9,38,0.0 +23364,33,2.5,47,0.0 +23364,32,32,5,0.0 +23364,7,30,17,0.0 +23364,13,6,6,0.0 +23364,17,39,39,0.0 +23364,19,9.2,19,0.0 +23364,46,12,17,0.0 +23364,63,43.9,29,0.0 +23364,6,25,1,0.0 +23364,47,9.5,39,0.0 +23364,3,10,28,0.0 +23364,58,13.25,9,0.0 +23364,37,26,44,0.0 +23364,68,12.5,39,0.0 +23364,41,9.65,6,0.0 +23364,43,46,49,0.0 +23364,40,18.4,35,0.0 +23364,29,123.79,6,0.0 +23364,72,34.8,46,0.0 +23364,55,24,33,0.0 +23364,24,4.5,6,0.0 +23364,25,14,13,0.0 +23364,52,7,7,0.0 +23364,9,97,21,0.0 +23364,69,36,1,0.0 +23364,8,40,7,0.0 +23364,30,25.89,16,0.0 +23364,1,18,48,0.0 +23364,35,18,35,0.0 +23364,14,23.25,45,0.0 +23364,54,7.45,5,0.0 +23364,59,55,38,0.0 +23364,49,20,39,0.0 +23364,10,31,47,0.0 +23364,75,7.75,35,0.0 +23364,70,15,37,0.0 +23364,36,19,4,0.0 +23364,71,21.5,45,0.0 +23364,66,17,35,0.0 +23365,27,43.9,29,0.0 +23365,29,123.79,42,0.0 +23365,8,40,32,0.0 +23365,4,22,48,0.0 +23365,22,21,45,0.0 +23365,32,32,23,0.0 +23365,19,9.2,2,0.0 +23365,30,25.89,27,0.0 +23365,54,7.45,7,0.0 +23365,10,31,19,0.0 +23365,36,19,4,0.0 +23365,2,19,46,0.0 +23365,45,9.5,42,0.0 +23365,26,31.23,39,0.0 +23365,37,26,11,0.0 +23365,55,24,29,0.0 +23365,39,18,47,0.0 +23365,71,21.5,31,0.0 +23365,75,7.75,9,0.0 +23365,6,25,9,0.0 +23365,18,62.5,30,0.0 +23365,68,12.5,29,0.0 +23365,60,34,7,0.0 +23365,14,23.25,22,0.0 +23365,67,14,24,0.0 +23365,69,36,37,0.0 +23365,11,21,22,0.0 +23365,52,7,12,0.0 +23365,51,53,4,0.0 +23365,77,13,19,0.0 +23365,65,21.05,3,0.0 +23365,20,81,24,0.0 +23365,56,38,39,0.0 +23365,15,15.5,10,0.0 +23365,66,17,34,0.0 +23365,64,33.25,29,0.0 +23365,41,9.65,1,0.0 +23365,43,46,12,0.0 +23365,9,97,45,0.0 +23365,63,43.9,14,0.0 +23365,38,263.5,3,0.0 +23365,70,15,15,0.0 +23365,74,10,20,0.0 +23365,24,4.5,23,0.0 +23365,33,2.5,38,0.0 +23365,17,39,37,0.0 +23365,7,30,11,0.0 +23365,42,14,38,0.0 +23365,62,49.3,37,0.0 +23365,53,32.8,9,0.0 +23365,34,14,26,0.0 +23365,59,55,22,0.0 +23365,61,28.5,37,0.0 +23365,73,15,45,0.0 +23365,72,34.8,39,0.0 +23365,1,18,35,0.0 +23365,28,45.6,11,0.0 +23365,35,18,9,0.0 +23365,21,10,9,0.0 +23365,5,21.35,26,0.0 +23365,13,6,47,0.0 +23365,58,13.25,23,0.0 +23365,76,18,32,0.0 +23365,47,9.5,40,0.0 +23365,50,16.25,1,0.0 +23365,46,12,4,0.0 +23365,57,19.5,11,0.0 +23365,16,17.45,11,0.0 +23365,23,9,49,0.0 +23365,3,10,29,0.0 +23365,40,18.4,8,0.0 +23365,49,20,10,0.0 +23366,5,21.35,40,0.0 +23366,40,18.4,13,0.0 +23366,15,15.5,40,0.0 +23366,55,24,4,0.0 +23366,4,22,39,0.0 +23366,53,32.8,31,0.0 +23366,16,17.45,16,0.0 +23366,61,28.5,22,0.0 +23366,56,38,33,0.0 +23366,32,32,29,0.0 +23366,49,20,37,0.0 +23366,13,6,10,0.0 +23366,68,12.5,43,0.0 +23366,52,7,28,0.0 +23366,66,17,17,0.0 +23366,17,39,28,0.0 +23366,57,19.5,14,0.0 +23366,12,38,9,0.0 +23366,20,81,38,0.0 +23366,47,9.5,31,0.0 +23366,29,123.79,1,0.0 +23366,6,25,12,0.0 +23366,46,12,36,0.0 +23366,24,4.5,31,0.0 +23366,26,31.23,32,0.0 +23366,19,9.2,19,0.0 +23366,67,14,28,0.0 +23366,48,12.75,47,0.0 +23366,35,18,3,0.0 +23366,18,62.5,1,0.0 +23366,64,33.25,17,0.0 +23366,11,21,35,0.0 +23366,62,49.3,27,0.0 +23366,76,18,38,0.0 +23366,69,36,23,0.0 +23366,38,263.5,22,0.0 +23366,63,43.9,7,0.0 +23366,43,46,9,0.0 +23366,31,12.5,35,0.0 +23366,44,19.45,22,0.0 +23366,30,25.89,10,0.0 +23366,41,9.65,47,0.0 +23366,50,16.25,26,0.0 +23366,60,34,46,0.0 +23366,34,14,37,0.0 +23366,28,45.6,33,0.0 +23366,65,21.05,4,0.0 +23366,25,14,50,0.0 +23366,7,30,29,0.0 +23366,2,19,11,0.0 +23366,9,97,17,0.0 +23366,37,26,50,0.0 +23366,42,14,16,0.0 +23366,36,19,11,0.0 +23366,3,10,45,0.0 +23366,75,7.75,41,0.0 +23366,21,10,25,0.0 +23366,58,13.25,27,0.0 +23366,1,18,39,0.0 +23367,9,97,20,0.0 +23367,22,21,37,0.0 +23367,7,30,12,0.0 +23367,48,12.75,29,0.0 +23367,53,32.8,46,0.0 +23367,36,19,11,0.0 +23367,4,22,48,0.0 +23367,58,13.25,47,0.0 +23367,10,31,20,0.0 +23367,47,9.5,4,0.0 +23367,15,15.5,13,0.0 +23367,17,39,23,0.0 +23367,29,123.79,1,0.0 +23367,20,81,47,0.0 +23367,31,12.5,40,0.0 +23367,8,40,4,0.0 +23367,70,15,24,0.0 +23367,44,19.45,46,0.0 +23367,72,34.8,43,0.0 +23368,63,43.9,40,0.0 +23368,48,12.75,33,0.0 +23368,44,19.45,17,0.0 +23368,71,21.5,35,0.0 +23368,51,53,48,0.0 +23368,27,43.9,29,0.0 +23368,4,22,36,0.0 +23368,67,14,4,0.0 +23368,50,16.25,12,0.0 +23368,1,18,29,0.0 +23368,28,45.6,1,0.0 +23368,32,32,14,0.0 +23368,26,31.23,41,0.0 +23368,13,6,2,0.0 +23368,5,21.35,21,0.0 +23368,29,123.79,37,0.0 +23368,39,18,28,0.0 +23368,18,62.5,43,0.0 +23368,72,34.8,20,0.0 +23368,24,4.5,27,0.0 +23368,23,9,4,0.0 +23368,9,97,18,0.0 +23368,73,15,36,0.0 +23368,8,40,41,0.0 +23368,62,49.3,26,0.0 +23368,46,12,24,0.0 +23368,45,9.5,43,0.0 +23368,54,7.45,3,0.0 +23368,2,19,4,0.0 +23368,57,19.5,47,0.0 +23368,17,39,27,0.0 +23368,3,10,22,0.0 +23368,41,9.65,10,0.0 +23368,58,13.25,12,0.0 +23368,40,18.4,38,0.0 +23368,61,28.5,35,0.0 +23368,10,31,40,0.0 +23368,70,15,22,0.0 +23368,52,7,8,0.0 +23368,30,25.89,13,0.0 +23368,12,38,19,0.0 +23368,31,12.5,4,0.0 +23368,69,36,23,0.0 +23368,77,13,10,0.0 +23368,35,18,9,0.0 +23368,11,21,37,0.0 +23368,56,38,18,0.0 +23368,59,55,40,0.0 +23368,60,34,20,0.0 +23368,14,23.25,44,0.0 +23368,33,2.5,4,0.0 +23368,76,18,21,0.0 +23368,20,81,48,0.0 +23368,47,9.5,45,0.0 +23368,53,32.8,26,0.0 +23368,37,26,44,0.0 +23368,49,20,28,0.0 +23368,16,17.45,19,0.0 +23368,36,19,32,0.0 +23368,65,21.05,18,0.0 +23368,25,14,26,0.0 +23369,74,10,37,0.0 +23369,67,14,14,0.0 +23369,64,33.25,14,0.0 +23369,7,30,33,0.0 +23369,51,53,9,0.0 +23369,70,15,38,0.0 +23369,68,12.5,8,0.0 +23369,57,19.5,2,0.0 +23369,60,34,39,0.0 +23369,13,6,22,0.0 +23369,48,12.75,7,0.0 +23369,26,31.23,29,0.0 +23369,34,14,17,0.0 +23369,76,18,40,0.0 +23369,4,22,45,0.0 +23370,28,45.6,19,0.0 +23370,66,17,10,0.0 +23370,61,28.5,46,0.0 +23370,34,14,4,0.0 +23370,35,18,15,0.0 +23370,6,25,36,0.0 +23370,59,55,37,0.0 +23370,41,9.65,44,0.0 +23370,5,21.35,50,0.0 +23370,23,9,4,0.0 +23370,43,46,8,0.0 +23370,33,2.5,47,0.0 +23370,38,263.5,36,0.0 +23370,68,12.5,28,0.0 +23370,27,43.9,19,0.0 +23370,37,26,21,0.0 +23370,76,18,4,0.0 +23370,8,40,13,0.0 +23370,56,38,20,0.0 +23370,4,22,5,0.0 +23370,67,14,41,0.0 +23370,9,97,11,0.0 +23370,55,24,2,0.0 +23370,7,30,1,0.0 +23370,17,39,50,0.0 +23370,45,9.5,21,0.0 +23370,47,9.5,49,0.0 +23370,60,34,1,0.0 +23370,65,21.05,37,0.0 +23370,40,18.4,12,0.0 +23370,20,81,24,0.0 +23370,70,15,46,0.0 +23370,29,123.79,4,0.0 +23370,64,33.25,10,0.0 +23370,49,20,7,0.0 +23370,52,7,3,0.0 +23370,10,31,13,0.0 +23370,71,21.5,11,0.0 +23370,39,18,30,0.0 +23370,42,14,19,0.0 +23370,48,12.75,20,0.0 +23370,30,25.89,48,0.0 +23370,24,4.5,45,0.0 +23370,57,19.5,20,0.0 +23370,72,34.8,29,0.0 +23371,75,7.75,30,0.0 +23371,56,38,43,0.0 +23371,72,34.8,13,0.0 +23371,50,16.25,29,0.0 +23371,53,32.8,16,0.0 +23371,27,43.9,2,0.0 +23371,44,19.45,17,0.0 +23371,19,9.2,7,0.0 +23371,16,17.45,49,0.0 +23371,61,28.5,11,0.0 +23371,13,6,2,0.0 +23371,34,14,43,0.0 +23371,17,39,13,0.0 +23371,77,13,43,0.0 +23371,5,21.35,40,0.0 +23371,39,18,31,0.0 +23371,73,15,37,0.0 +23371,59,55,50,0.0 +23371,52,7,3,0.0 +23371,51,53,34,0.0 +23371,76,18,19,0.0 +23371,57,19.5,26,0.0 +23371,22,21,20,0.0 +23371,2,19,20,0.0 +23371,37,26,24,0.0 +23371,71,21.5,5,0.0 +23371,20,81,21,0.0 +23371,42,14,27,0.0 +23371,70,15,49,0.0 +23371,23,9,12,0.0 +23371,68,12.5,26,0.0 +23371,1,18,49,0.0 +23371,14,23.25,20,0.0 +23371,49,20,16,0.0 +23371,9,97,50,0.0 +23371,41,9.65,43,0.0 +23371,62,49.3,41,0.0 +23371,36,19,33,0.0 +23371,66,17,31,0.0 +23371,63,43.9,14,0.0 +23371,10,31,45,0.0 +23371,11,21,28,0.0 +23371,21,10,11,0.0 +23371,45,9.5,30,0.0 +23371,54,7.45,35,0.0 +23371,31,12.5,13,0.0 +23371,58,13.25,34,0.0 +23371,38,263.5,36,0.0 +23371,8,40,29,0.0 +23371,4,22,2,0.0 +23371,32,32,26,0.0 +23371,29,123.79,21,0.0 +23371,3,10,17,0.0 +23371,30,25.89,12,0.0 +23371,12,38,47,0.0 +23371,28,45.6,1,0.0 +23371,26,31.23,23,0.0 +23371,47,9.5,36,0.0 +23371,67,14,48,0.0 +23371,43,46,39,0.0 +23371,33,2.5,14,0.0 +23371,15,15.5,30,0.0 +23371,25,14,37,0.0 +23371,35,18,14,0.0 +23371,55,24,45,0.0 +23371,48,12.75,39,0.0 +23371,60,34,38,0.0 +23371,7,30,21,0.0 +23371,64,33.25,23,0.0 +23371,69,36,43,0.0 +23371,74,10,44,0.0 +23372,70,15,10,0.0 +23373,47,9.5,23,0.0 +23373,32,32,44,0.0 +23373,9,97,16,0.0 +23373,17,39,40,0.0 +23373,15,15.5,38,0.0 +23373,7,30,3,0.0 +23373,49,20,30,0.0 +23373,31,12.5,28,0.0 +23373,45,9.5,23,0.0 +23373,42,14,33,0.0 +23373,53,32.8,26,0.0 +23373,36,19,2,0.0 +23373,29,123.79,7,0.0 +23373,46,12,38,0.0 +23373,73,15,49,0.0 +23373,20,81,41,0.0 +23373,4,22,17,0.0 +23373,76,18,48,0.0 +23373,37,26,13,0.0 +23373,67,14,49,0.0 +23373,68,12.5,1,0.0 +23373,50,16.25,22,0.0 +23373,33,2.5,40,0.0 +23373,44,19.45,17,0.0 +23373,40,18.4,36,0.0 +23373,28,45.6,12,0.0 +23373,21,10,9,0.0 +23373,19,9.2,26,0.0 +23374,49,20,23,0.0 +23374,45,9.5,38,0.0 +23374,65,21.05,49,0.0 +23374,15,15.5,30,0.0 +23374,32,32,31,0.0 +23374,66,17,18,0.0 +23374,10,31,15,0.0 +23374,77,13,47,0.0 +23374,14,23.25,21,0.0 +23374,67,14,5,0.0 +23374,73,15,43,0.0 +23374,20,81,31,0.0 +23374,12,38,39,0.0 +23374,39,18,4,0.0 +23374,28,45.6,2,0.0 +23374,3,10,45,0.0 +23374,42,14,29,0.0 +23374,27,43.9,48,0.0 +23374,75,7.75,4,0.0 +23374,61,28.5,18,0.0 +23374,1,18,22,0.0 +23374,8,40,49,0.0 +23374,54,7.45,5,0.0 +23374,23,9,29,0.0 +23374,48,12.75,23,0.0 +23374,53,32.8,4,0.0 +23374,59,55,47,0.0 +23374,21,10,30,0.0 +23375,31,12.5,32,0.0 +23375,54,7.45,49,0.0 +23375,72,34.8,40,0.0 +23375,16,17.45,16,0.0 +23375,20,81,19,0.0 +23375,38,263.5,16,0.0 +23375,52,7,3,0.0 +23375,67,14,22,0.0 +23375,29,123.79,19,0.0 +23375,32,32,21,0.0 +23375,55,24,43,0.0 +23375,46,12,4,0.0 +23375,75,7.75,37,0.0 +23375,24,4.5,50,0.0 +23376,67,14,5,0.0 +23376,34,14,25,0.0 +23376,74,10,8,0.0 +23376,35,18,35,0.0 +23376,27,43.9,26,0.0 +23376,5,21.35,43,0.0 +23376,25,14,41,0.0 +23376,62,49.3,28,0.0 +23376,20,81,39,0.0 +23376,12,38,49,0.0 +23376,58,13.25,40,0.0 +23376,53,32.8,14,0.0 +23376,66,17,38,0.0 +23376,32,32,2,0.0 +23376,43,46,35,0.0 +23376,17,39,2,0.0 +23376,56,38,29,0.0 +23376,21,10,18,0.0 +23376,22,21,35,0.0 +23376,70,15,18,0.0 +23376,44,19.45,23,0.0 +23376,76,18,3,0.0 +23376,9,97,24,0.0 +23376,45,9.5,19,0.0 +23376,7,30,40,0.0 +23376,46,12,46,0.0 +23376,73,15,21,0.0 +23376,30,25.89,17,0.0 +23376,6,25,22,0.0 +23376,2,19,7,0.0 +23376,14,23.25,13,0.0 +23376,48,12.75,10,0.0 +23376,40,18.4,6,0.0 +23376,68,12.5,9,0.0 +23376,49,20,2,0.0 +23376,33,2.5,30,0.0 +23376,77,13,10,0.0 +23376,11,21,15,0.0 +23376,63,43.9,30,0.0 +23376,60,34,49,0.0 +23376,10,31,31,0.0 +23376,39,18,29,0.0 +23376,41,9.65,28,0.0 +23376,37,26,23,0.0 +23376,50,16.25,42,0.0 +23376,23,9,48,0.0 +23376,1,18,34,0.0 +23376,42,14,2,0.0 +23376,51,53,46,0.0 +23376,64,33.25,16,0.0 +23376,72,34.8,10,0.0 +23376,55,24,44,0.0 +23376,3,10,37,0.0 +23376,54,7.45,38,0.0 +23376,75,7.75,8,0.0 +23376,28,45.6,4,0.0 +23376,38,263.5,46,0.0 +23376,19,9.2,34,0.0 +23376,26,31.23,27,0.0 +23376,69,36,1,0.0 +23376,16,17.45,34,0.0 +23376,59,55,48,0.0 +23376,18,62.5,34,0.0 +23376,24,4.5,21,0.0 +23376,29,123.79,40,0.0 +23376,57,19.5,22,0.0 +23376,31,12.5,46,0.0 +23376,52,7,50,0.0 +23376,4,22,29,0.0 +23376,36,19,40,0.0 +23376,13,6,28,0.0 +23377,67,14,14,0.0 +23377,19,9.2,50,0.0 +23377,38,263.5,46,0.0 +23377,33,2.5,33,0.0 +23378,72,34.8,27,0.0 +23378,5,21.35,12,0.0 +23378,66,17,7,0.0 +23378,40,18.4,4,0.0 +23378,13,6,1,0.0 +23378,28,45.6,17,0.0 +23378,54,7.45,11,0.0 +23378,41,9.65,47,0.0 +23378,69,36,22,0.0 +23378,68,12.5,39,0.0 +23378,42,14,1,0.0 +23378,75,7.75,48,0.0 +23378,16,17.45,33,0.0 +23378,55,24,46,0.0 +23378,62,49.3,14,0.0 +23378,63,43.9,29,0.0 +23378,18,62.5,48,0.0 +23378,22,21,26,0.0 +23378,33,2.5,44,0.0 +23378,65,21.05,49,0.0 +23378,29,123.79,23,0.0 +23378,19,9.2,30,0.0 +23378,64,33.25,49,0.0 +23378,46,12,40,0.0 +23378,34,14,49,0.0 +23378,6,25,41,0.0 +23378,26,31.23,5,0.0 +23378,35,18,9,0.0 +23378,44,19.45,42,0.0 +23378,4,22,16,0.0 +23378,32,32,21,0.0 +23378,74,10,26,0.0 +23379,3,10,39,0.0 +23379,46,12,41,0.0 +23379,52,7,28,0.0 +23379,1,18,8,0.0 +23379,35,18,35,0.0 +23379,39,18,24,0.0 +23379,64,33.25,41,0.0 +23379,55,24,41,0.0 +23379,13,6,36,0.0 +23379,48,12.75,44,0.0 +23379,65,21.05,10,0.0 +23379,4,22,19,0.0 +23379,23,9,31,0.0 +23379,73,15,43,0.0 +23379,29,123.79,47,0.0 +23380,25,14,32,0.0 +23380,45,9.5,32,0.0 +23380,49,20,42,0.0 +23380,32,32,9,0.0 +23380,42,14,41,0.0 +23380,53,32.8,43,0.0 +23380,51,53,50,0.0 +23380,27,43.9,2,0.0 +23380,6,25,48,0.0 +23380,48,12.75,45,0.0 +23380,14,23.25,38,0.0 +23380,46,12,39,0.0 +23380,69,36,24,0.0 +23380,19,9.2,26,0.0 +23380,63,43.9,23,0.0 +23380,4,22,30,0.0 +23380,62,49.3,18,0.0 +23380,1,18,11,0.0 +23380,71,21.5,20,0.0 +23380,68,12.5,28,0.0 +23380,38,263.5,4,0.0 +23380,72,34.8,33,0.0 +23380,61,28.5,5,0.0 +23380,76,18,9,0.0 +23380,74,10,29,0.0 +23380,50,16.25,25,0.0 +23380,16,17.45,28,0.0 +23380,40,18.4,49,0.0 +23380,11,21,3,0.0 +23380,52,7,23,0.0 +23380,2,19,46,0.0 +23380,15,15.5,43,0.0 +23380,5,21.35,31,0.0 +23380,66,17,50,0.0 +23380,55,24,47,0.0 +23380,59,55,45,0.0 +23380,39,18,23,0.0 +23380,57,19.5,12,0.0 +23380,36,19,44,0.0 +23380,3,10,23,0.0 +23380,67,14,30,0.0 +23380,28,45.6,49,0.0 +23380,43,46,44,0.0 +23380,31,12.5,23,0.0 +23380,64,33.25,33,0.0 +23380,18,62.5,48,0.0 +23380,44,19.45,11,0.0 +23380,29,123.79,9,0.0 +23380,58,13.25,37,0.0 +23380,12,38,38,0.0 +23380,21,10,26,0.0 +23380,17,39,40,0.0 +23381,67,14,35,0.0 +23381,21,10,34,0.0 +23381,9,97,19,0.0 +23381,13,6,33,0.0 +23381,68,12.5,11,0.0 +23381,25,14,33,0.0 +23381,66,17,35,0.0 +23381,3,10,14,0.0 +23381,69,36,26,0.0 +23381,40,18.4,8,0.0 +23381,36,19,47,0.0 +23381,17,39,15,0.0 +23381,6,25,37,0.0 +23381,7,30,20,0.0 +23381,18,62.5,16,0.0 +23381,59,55,32,0.0 +23381,39,18,2,0.0 +23381,56,38,2,0.0 +23381,12,38,18,0.0 +23381,74,10,35,0.0 +23381,44,19.45,19,0.0 +23381,32,32,31,0.0 +23381,23,9,40,0.0 +23381,28,45.6,3,0.0 +23381,42,14,6,0.0 +23381,41,9.65,44,0.0 +23381,54,7.45,6,0.0 +23381,53,32.8,24,0.0 +23381,71,21.5,25,0.0 +23381,76,18,12,0.0 +23381,51,53,14,0.0 +23381,75,7.75,12,0.0 +23381,31,12.5,39,0.0 +23381,34,14,17,0.0 +23381,70,15,41,0.0 +23381,62,49.3,18,0.0 +23381,15,15.5,12,0.0 +23381,11,21,11,0.0 +23381,5,21.35,44,0.0 +23381,72,34.8,25,0.0 +23381,2,19,26,0.0 +23381,4,22,44,0.0 +23381,8,40,16,0.0 +23381,45,9.5,48,0.0 +23381,20,81,49,0.0 +23381,58,13.25,3,0.0 +23382,35,18,16,0.0 +23382,5,21.35,32,0.0 +23382,53,32.8,39,0.0 +23382,10,31,21,0.0 +23382,18,62.5,2,0.0 +23382,57,19.5,43,0.0 +23382,12,38,18,0.0 +23382,2,19,2,0.0 +23382,75,7.75,38,0.0 +23382,23,9,2,0.0 +23382,66,17,7,0.0 +23382,63,43.9,40,0.0 +23382,52,7,2,0.0 +23382,43,46,20,0.0 +23382,34,14,34,0.0 +23382,41,9.65,32,0.0 +23382,27,43.9,33,0.0 +23382,39,18,45,0.0 +23382,9,97,36,0.0 +23382,4,22,6,0.0 +23382,14,23.25,17,0.0 +23382,59,55,32,0.0 +23382,1,18,24,0.0 +23382,61,28.5,33,0.0 +23382,64,33.25,22,0.0 +23382,25,14,38,0.0 +23382,55,24,25,0.0 +23382,73,15,24,0.0 +23382,38,263.5,43,0.0 +23382,26,31.23,36,0.0 +23382,49,20,28,0.0 +23382,77,13,2,0.0 +23382,30,25.89,12,0.0 +23382,72,34.8,6,0.0 +23382,13,6,4,0.0 +23382,3,10,16,0.0 +23382,16,17.45,49,0.0 +23382,36,19,48,0.0 +23382,19,9.2,11,0.0 +23382,22,21,6,0.0 +23382,33,2.5,41,0.0 +23382,50,16.25,5,0.0 +23382,28,45.6,30,0.0 +23382,21,10,48,0.0 +23382,65,21.05,18,0.0 +23382,40,18.4,40,0.0 +23382,71,21.5,48,0.0 +23382,76,18,13,0.0 +23382,70,15,38,0.0 +23382,31,12.5,18,0.0 +23382,62,49.3,46,0.0 +23382,20,81,48,0.0 +23382,47,9.5,32,0.0 +23382,11,21,21,0.0 +23382,44,19.45,31,0.0 +23382,51,53,47,0.0 +23382,54,7.45,34,0.0 +23382,6,25,14,0.0 +23383,28,45.6,21,0.0 +23383,36,19,2,0.0 +23383,57,19.5,14,0.0 +23383,40,18.4,6,0.0 +23383,56,38,49,0.0 +23383,19,9.2,36,0.0 +23383,27,43.9,19,0.0 +23383,3,10,39,0.0 +23383,14,23.25,19,0.0 +23383,52,7,6,0.0 +23383,7,30,32,0.0 +23383,74,10,19,0.0 +23383,1,18,16,0.0 +23383,23,9,13,0.0 +23383,42,14,24,0.0 +23383,41,9.65,37,0.0 +23383,45,9.5,26,0.0 +23383,12,38,17,0.0 +23383,21,10,13,0.0 +23383,66,17,33,0.0 +23383,13,6,28,0.0 +23383,70,15,23,0.0 +23383,71,21.5,25,0.0 +23384,51,53,34,0.0 +23384,67,14,33,0.0 +23384,5,21.35,7,0.0 +23384,58,13.25,22,0.0 +23384,37,26,9,0.0 +23384,36,19,42,0.0 +23384,56,38,18,0.0 +23384,76,18,13,0.0 +23384,60,34,43,0.0 +23384,17,39,31,0.0 +23384,61,28.5,1,0.0 +23384,46,12,45,0.0 +23384,27,43.9,30,0.0 +23384,42,14,48,0.0 +23384,62,49.3,49,0.0 +23384,31,12.5,2,0.0 +23384,75,7.75,21,0.0 +23384,13,6,6,0.0 +23384,12,38,41,0.0 +23384,49,20,43,0.0 +23384,4,22,38,0.0 +23384,64,33.25,27,0.0 +23384,16,17.45,33,0.0 +23384,40,18.4,8,0.0 +23384,55,24,18,0.0 +23384,21,10,2,0.0 +23384,1,18,6,0.0 +23384,70,15,20,0.0 +23384,34,14,27,0.0 +23384,14,23.25,33,0.0 +23384,73,15,23,0.0 +23384,43,46,2,0.0 +23384,38,263.5,11,0.0 +23384,63,43.9,30,0.0 +23384,19,9.2,9,0.0 +23384,53,32.8,11,0.0 +23384,6,25,18,0.0 +23384,30,25.89,49,0.0 +23384,7,30,5,0.0 +23384,28,45.6,25,0.0 +23384,65,21.05,31,0.0 +23384,20,81,27,0.0 +23384,57,19.5,48,0.0 +23384,71,21.5,30,0.0 +23384,33,2.5,40,0.0 +23384,8,40,29,0.0 +23384,44,19.45,5,0.0 +23384,22,21,9,0.0 +23384,47,9.5,39,0.0 +23384,52,7,18,0.0 +23384,23,9,37,0.0 +23384,11,21,12,0.0 +23384,18,62.5,33,0.0 +23384,26,31.23,4,0.0 +23384,15,15.5,6,0.0 +23384,59,55,12,0.0 +23384,9,97,50,0.0 +23384,68,12.5,2,0.0 +23384,39,18,49,0.0 +23384,72,34.8,10,0.0 +23384,29,123.79,22,0.0 +23384,32,32,15,0.0 +23384,45,9.5,34,0.0 +23384,2,19,41,0.0 +23384,10,31,40,0.0 +23384,69,36,40,0.0 +23384,77,13,25,0.0 +23384,24,4.5,49,0.0 +23384,41,9.65,16,0.0 +23385,42,14,32,0.0 +23385,34,14,4,0.0 +23385,31,12.5,15,0.0 +23385,39,18,42,0.0 +23385,54,7.45,49,0.0 +23385,60,34,42,0.0 +23385,66,17,9,0.0 +23385,45,9.5,6,0.0 +23385,24,4.5,9,0.0 +23385,40,18.4,12,0.0 +23385,17,39,36,0.0 +23385,1,18,26,0.0 +23385,14,23.25,27,0.0 +23385,22,21,4,0.0 +23385,69,36,3,0.0 +23385,10,31,33,0.0 +23385,13,6,35,0.0 +23385,38,263.5,30,0.0 +23385,7,30,41,0.0 +23385,30,25.89,38,0.0 +23385,5,21.35,35,0.0 +23385,77,13,49,0.0 +23385,37,26,46,0.0 +23385,71,21.5,5,0.0 +23385,9,97,16,0.0 +23385,11,21,8,0.0 +23385,59,55,34,0.0 +23385,21,10,12,0.0 +23385,18,62.5,24,0.0 +23385,55,24,14,0.0 +23385,74,10,2,0.0 +23385,68,12.5,8,0.0 +23385,25,14,19,0.0 +23385,49,20,25,0.0 +23385,52,7,28,0.0 +23385,36,19,12,0.0 +23385,27,43.9,44,0.0 +23385,26,31.23,37,0.0 +23385,3,10,35,0.0 +23385,2,19,30,0.0 +23385,53,32.8,34,0.0 +23386,63,43.9,43,0.0 +23386,55,24,27,0.0 +23386,17,39,10,0.0 +23387,17,39,29,0.0 +23387,18,62.5,49,0.0 +23387,22,21,10,0.0 +23387,31,12.5,31,0.0 +23387,64,33.25,19,0.0 +23387,76,18,36,0.0 +23387,61,28.5,20,0.0 +23387,47,9.5,18,0.0 +23387,60,34,14,0.0 +23387,74,10,39,0.0 +23387,33,2.5,19,0.0 +23387,67,14,27,0.0 +23387,50,16.25,10,0.0 +23387,4,22,27,0.0 +23387,30,25.89,35,0.0 +23387,3,10,11,0.0 +23387,53,32.8,38,0.0 +23387,9,97,30,0.0 +23387,26,31.23,10,0.0 +23387,23,9,6,0.0 +23387,55,24,39,0.0 +23387,29,123.79,5,0.0 +23387,19,9.2,38,0.0 +23387,70,15,5,0.0 +23387,45,9.5,24,0.0 +23387,77,13,9,0.0 +23387,13,6,45,0.0 +23387,49,20,20,0.0 +23387,73,15,15,0.0 +23388,67,14,34,0.0 +23388,52,7,49,0.0 +23388,23,9,30,0.0 +23388,29,123.79,23,0.0 +23388,1,18,32,0.0 +23388,41,9.65,29,0.0 +23388,57,19.5,12,0.0 +23388,34,14,5,0.0 +23388,50,16.25,2,0.0 +23388,2,19,2,0.0 +23388,22,21,50,0.0 +23388,43,46,23,0.0 +23388,5,21.35,4,0.0 +23388,12,38,14,0.0 +23388,27,43.9,38,0.0 +23388,32,32,41,0.0 +23388,20,81,41,0.0 +23388,77,13,48,0.0 +23388,38,263.5,11,0.0 +23388,63,43.9,13,0.0 +23388,45,9.5,8,0.0 +23388,47,9.5,16,0.0 +23388,25,14,48,0.0 +23388,46,12,7,0.0 +23388,26,31.23,22,0.0 +23388,35,18,7,0.0 +23388,8,40,1,0.0 +23389,72,34.8,21,0.0 +23389,48,12.75,39,0.0 +23389,22,21,4,0.0 +23389,75,7.75,32,0.0 +23389,17,39,24,0.0 +23389,55,24,9,0.0 +23389,50,16.25,45,0.0 +23389,34,14,21,0.0 +23389,28,45.6,36,0.0 +23389,2,19,46,0.0 +23389,42,14,39,0.0 +23390,48,12.75,35,0.0 +23390,10,31,39,0.0 +23390,13,6,44,0.0 +23390,75,7.75,43,0.0 +23390,7,30,40,0.0 +23390,68,12.5,43,0.0 +23390,72,34.8,18,0.0 +23390,49,20,6,0.0 +23390,15,15.5,24,0.0 +23390,36,19,7,0.0 +23390,26,31.23,50,0.0 +23390,39,18,30,0.0 +23390,19,9.2,7,0.0 +23390,63,43.9,4,0.0 +23390,20,81,34,0.0 +23390,32,32,5,0.0 +23390,9,97,47,0.0 +23390,22,21,27,0.0 +23390,6,25,2,0.0 +23390,28,45.6,8,0.0 +23390,76,18,39,0.0 +23390,47,9.5,18,0.0 +23390,14,23.25,11,0.0 +23390,5,21.35,26,0.0 +23390,12,38,13,0.0 +23390,42,14,26,0.0 +23390,44,19.45,29,0.0 +23390,1,18,29,0.0 +23390,30,25.89,36,0.0 +23390,27,43.9,15,0.0 +23390,4,22,7,0.0 +23390,21,10,25,0.0 +23390,34,14,46,0.0 +23390,62,49.3,12,0.0 +23390,45,9.5,7,0.0 +23390,33,2.5,40,0.0 +23390,53,32.8,37,0.0 +23390,66,17,38,0.0 +23390,43,46,50,0.0 +23390,54,7.45,42,0.0 +23390,64,33.25,50,0.0 +23390,60,34,37,0.0 +23390,35,18,22,0.0 +23390,69,36,38,0.0 +23390,23,9,5,0.0 +23390,24,4.5,19,0.0 +23390,65,21.05,10,0.0 +23390,18,62.5,32,0.0 +23390,70,15,7,0.0 +23390,51,53,38,0.0 +23390,38,263.5,44,0.0 +23390,37,26,47,0.0 +23390,58,13.25,48,0.0 +23390,56,38,4,0.0 +23390,74,10,33,0.0 +23390,25,14,23,0.0 +23390,57,19.5,28,0.0 +23390,61,28.5,44,0.0 +23390,77,13,28,0.0 +23390,67,14,35,0.0 +23390,55,24,22,0.0 +23390,40,18.4,9,0.0 +23390,8,40,35,0.0 +23390,11,21,21,0.0 +23390,31,12.5,37,0.0 +23390,71,21.5,1,0.0 +23390,52,7,7,0.0 +23390,3,10,49,0.0 +23390,16,17.45,37,0.0 +23391,9,97,44,0.0 +23391,62,49.3,5,0.0 +23391,70,15,33,0.0 +23391,15,15.5,33,0.0 +23391,68,12.5,13,0.0 +23391,45,9.5,37,0.0 +23391,56,38,12,0.0 +23391,74,10,22,0.0 +23391,24,4.5,44,0.0 +23391,48,12.75,37,0.0 +23391,16,17.45,49,0.0 +23391,37,26,30,0.0 +23391,41,9.65,29,0.0 +23391,55,24,25,0.0 +23391,54,7.45,44,0.0 +23391,14,23.25,49,0.0 +23391,13,6,12,0.0 +23391,77,13,28,0.0 +23391,64,33.25,21,0.0 +23391,5,21.35,4,0.0 +23391,72,34.8,35,0.0 +23391,66,17,31,0.0 +23391,25,14,21,0.0 +23391,17,39,24,0.0 +23391,73,15,11,0.0 +23391,31,12.5,9,0.0 +23391,40,18.4,10,0.0 +23391,38,263.5,26,0.0 +23391,43,46,16,0.0 +23391,53,32.8,43,0.0 +23391,50,16.25,16,0.0 +23391,29,123.79,33,0.0 +23391,61,28.5,33,0.0 +23391,33,2.5,30,0.0 +23391,19,9.2,18,0.0 +23391,47,9.5,6,0.0 +23391,75,7.75,38,0.0 +23391,51,53,27,0.0 +23391,44,19.45,39,0.0 +23391,21,10,17,0.0 +23391,1,18,40,0.0 +23391,67,14,20,0.0 +23391,34,14,44,0.0 +23391,65,21.05,36,0.0 +23391,30,25.89,19,0.0 +23391,8,40,40,0.0 +23391,57,19.5,31,0.0 +23391,2,19,46,0.0 +23391,52,7,48,0.0 +23391,76,18,19,0.0 +23391,27,43.9,11,0.0 +23391,18,62.5,42,0.0 +23391,32,32,17,0.0 +23391,69,36,15,0.0 +23391,46,12,20,0.0 +23391,10,31,25,0.0 +23391,60,34,32,0.0 +23391,35,18,14,0.0 +23391,58,13.25,3,0.0 +23391,42,14,30,0.0 +23391,28,45.6,44,0.0 +23391,63,43.9,1,0.0 +23391,26,31.23,8,0.0 +23391,6,25,23,0.0 +23391,49,20,19,0.0 +23391,23,9,27,0.0 +23391,4,22,13,0.0 +23391,59,55,22,0.0 +23391,11,21,33,0.0 +23391,3,10,28,0.0 +23391,22,21,35,0.0 +23391,36,19,26,0.0 +23391,71,21.5,46,0.0 +23391,39,18,11,0.0 +23391,7,30,5,0.0 +23391,12,38,9,0.0 +23392,68,12.5,17,0.0 +23392,66,17,22,0.0 +23392,30,25.89,5,0.0 +23392,32,32,8,0.0 +23392,4,22,36,0.0 +23392,64,33.25,16,0.0 +23392,9,97,25,0.0 +23392,60,34,17,0.0 +23392,70,15,41,0.0 +23392,24,4.5,10,0.0 +23392,16,17.45,50,0.0 +23392,10,31,38,0.0 +23392,31,12.5,6,0.0 +23392,71,21.5,8,0.0 +23392,55,24,1,0.0 +23392,7,30,30,0.0 +23392,8,40,36,0.0 +23392,26,31.23,23,0.0 +23392,63,43.9,28,0.0 +23392,13,6,22,0.0 +23392,36,19,15,0.0 +23392,5,21.35,41,0.0 +23392,40,18.4,18,0.0 +23392,46,12,18,0.0 +23392,15,15.5,31,0.0 +23392,35,18,32,0.0 +23392,61,28.5,47,0.0 +23392,34,14,38,0.0 +23392,41,9.65,25,0.0 +23392,37,26,21,0.0 +23392,12,38,20,0.0 +23392,17,39,37,0.0 +23392,75,7.75,10,0.0 +23392,2,19,21,0.0 +23392,47,9.5,22,0.0 +23392,1,18,35,0.0 +23392,3,10,18,0.0 +23392,50,16.25,32,0.0 +23392,58,13.25,28,0.0 +23392,29,123.79,48,0.0 +23392,73,15,24,0.0 +23392,33,2.5,2,0.0 +23392,77,13,38,0.0 +23392,38,263.5,2,0.0 +23392,54,7.45,24,0.0 +23392,18,62.5,28,0.0 +23392,22,21,31,0.0 +23392,23,9,39,0.0 +23392,49,20,28,0.0 +23392,76,18,43,0.0 +23392,6,25,34,0.0 +23392,51,53,40,0.0 +23393,15,15.5,11,0.0 +23393,21,10,33,0.0 +23393,1,18,44,0.0 +23393,35,18,49,0.0 +23393,57,19.5,25,0.0 +23393,47,9.5,25,0.0 +23393,68,12.5,48,0.0 +23393,37,26,41,0.0 +23393,51,53,18,0.0 +23393,43,46,7,0.0 +23393,56,38,46,0.0 +23393,14,23.25,8,0.0 +23393,3,10,19,0.0 +23393,40,18.4,48,0.0 +23393,13,6,32,0.0 +23393,63,43.9,22,0.0 +23393,44,19.45,3,0.0 +23393,10,31,15,0.0 +23393,8,40,30,0.0 +23393,46,12,6,0.0 +23393,66,17,44,0.0 +23393,67,14,31,0.0 +23393,7,30,10,0.0 +23393,73,15,26,0.0 +23393,38,263.5,49,0.0 +23393,11,21,43,0.0 +23393,4,22,24,0.0 +23393,5,21.35,9,0.0 +23393,48,12.75,40,0.0 +23393,65,21.05,15,0.0 +23393,12,38,13,0.0 +23394,75,7.75,34,0.0 +23394,33,2.5,1,0.0 +23394,34,14,13,0.0 +23394,30,25.89,47,0.0 +23394,40,18.4,34,0.0 +23394,11,21,25,0.0 +23394,28,45.6,24,0.0 +23394,47,9.5,29,0.0 +23394,9,97,49,0.0 +23394,19,9.2,9,0.0 +23394,44,19.45,31,0.0 +23394,13,6,49,0.0 +23394,60,34,14,0.0 +23394,24,4.5,41,0.0 +23394,55,24,30,0.0 +23394,45,9.5,23,0.0 +23394,25,14,35,0.0 +23394,49,20,35,0.0 +23394,7,30,14,0.0 +23394,59,55,33,0.0 +23394,22,21,32,0.0 +23394,21,10,40,0.0 +23394,50,16.25,10,0.0 +23394,1,18,28,0.0 +23394,48,12.75,18,0.0 +23394,23,9,24,0.0 +23394,27,43.9,4,0.0 +23394,26,31.23,25,0.0 +23394,63,43.9,13,0.0 +23394,61,28.5,2,0.0 +23394,71,21.5,38,0.0 +23394,39,18,16,0.0 +23394,57,19.5,28,0.0 +23394,3,10,38,0.0 +23394,54,7.45,44,0.0 +23394,29,123.79,15,0.0 +23394,41,9.65,44,0.0 +23394,14,23.25,15,0.0 +23394,65,21.05,1,0.0 +23394,74,10,41,0.0 +23394,6,25,20,0.0 +23394,38,263.5,10,0.0 +23394,37,26,29,0.0 +23394,17,39,15,0.0 +23394,67,14,50,0.0 +23394,51,53,28,0.0 +23394,2,19,9,0.0 +23394,4,22,50,0.0 +23394,56,38,29,0.0 +23394,12,38,2,0.0 +23394,52,7,11,0.0 +23394,62,49.3,13,0.0 +23394,20,81,12,0.0 +23394,42,14,39,0.0 +23394,36,19,24,0.0 +23394,69,36,16,0.0 +23394,8,40,3,0.0 +23394,64,33.25,43,0.0 +23394,72,34.8,36,0.0 +23394,77,13,2,0.0 +23394,43,46,9,0.0 +23394,10,31,28,0.0 +23394,68,12.5,14,0.0 +23394,58,13.25,43,0.0 +23394,35,18,33,0.0 +23394,32,32,23,0.0 +23395,50,16.25,42,0.0 +23395,57,19.5,11,0.0 +23395,45,9.5,49,0.0 +23395,74,10,25,0.0 +23395,48,12.75,49,0.0 +23395,75,7.75,10,0.0 +23395,51,53,17,0.0 +23395,12,38,21,0.0 +23395,32,32,35,0.0 +23395,39,18,36,0.0 +23395,10,31,21,0.0 +23395,77,13,34,0.0 +23395,30,25.89,26,0.0 +23395,40,18.4,14,0.0 +23395,47,9.5,36,0.0 +23395,15,15.5,22,0.0 +23395,5,21.35,33,0.0 +23395,42,14,25,0.0 +23395,6,25,21,0.0 +23395,53,32.8,20,0.0 +23395,24,4.5,32,0.0 +23395,56,38,9,0.0 +23395,76,18,12,0.0 +23395,58,13.25,20,0.0 +23395,34,14,23,0.0 +23395,9,97,12,0.0 +23395,20,81,4,0.0 +23395,37,26,8,0.0 +23395,23,9,8,0.0 +23395,61,28.5,44,0.0 +23395,18,62.5,17,0.0 +23395,49,20,3,0.0 +23396,54,7.45,11,0.0 +23396,11,21,8,0.0 +23396,77,13,9,0.0 +23396,38,263.5,37,0.0 +23396,61,28.5,23,0.0 +23396,12,38,19,0.0 +23396,63,43.9,4,0.0 +23396,74,10,18,0.0 +23396,44,19.45,8,0.0 +23396,32,32,44,0.0 +23396,76,18,16,0.0 +23396,3,10,23,0.0 +23396,64,33.25,37,0.0 +23396,65,21.05,44,0.0 +23396,18,62.5,36,0.0 +23396,55,24,24,0.0 +23396,1,18,16,0.0 +23396,21,10,8,0.0 +23396,46,12,1,0.0 +23396,72,34.8,49,0.0 +23396,34,14,39,0.0 +23396,43,46,37,0.0 +23396,30,25.89,39,0.0 +23396,69,36,3,0.0 +23396,51,53,6,0.0 +23396,7,30,41,0.0 +23396,10,31,17,0.0 +23396,24,4.5,18,0.0 +23396,17,39,43,0.0 +23396,52,7,23,0.0 +23396,67,14,41,0.0 +23396,39,18,2,0.0 +23396,14,23.25,13,0.0 +23396,41,9.65,4,0.0 +23396,59,55,8,0.0 +23396,53,32.8,16,0.0 +23396,23,9,49,0.0 +23396,35,18,17,0.0 +23397,63,43.9,4,0.0 +23397,64,33.25,47,0.0 +23397,54,7.45,16,0.0 +23397,23,9,33,0.0 +23397,19,9.2,17,0.0 +23397,68,12.5,11,0.0 +23397,16,17.45,8,0.0 +23397,26,31.23,41,0.0 +23397,67,14,34,0.0 +23397,46,12,29,0.0 +23397,57,19.5,38,0.0 +23397,35,18,12,0.0 +23397,77,13,5,0.0 +23397,9,97,42,0.0 +23397,61,28.5,15,0.0 +23397,17,39,1,0.0 +23397,41,9.65,24,0.0 +23397,75,7.75,12,0.0 +23397,18,62.5,35,0.0 +23397,33,2.5,23,0.0 +23397,70,15,36,0.0 +23397,56,38,31,0.0 +23397,71,21.5,23,0.0 +23397,65,21.05,39,0.0 +23397,11,21,26,0.0 +23397,25,14,38,0.0 +23397,2,19,47,0.0 +23397,24,4.5,35,0.0 +23397,37,26,36,0.0 +23397,42,14,43,0.0 +23397,38,263.5,1,0.0 +23397,14,23.25,24,0.0 +23397,6,25,29,0.0 +23397,28,45.6,17,0.0 +23397,44,19.45,50,0.0 +23397,21,10,44,0.0 +23397,60,34,20,0.0 +23397,43,46,6,0.0 +23397,27,43.9,50,0.0 +23397,53,32.8,12,0.0 +23397,48,12.75,9,0.0 +23397,50,16.25,17,0.0 +23397,5,21.35,27,0.0 +23397,1,18,28,0.0 +23397,62,49.3,21,0.0 +23397,74,10,1,0.0 +23397,58,13.25,13,0.0 +23397,49,20,42,0.0 +23397,47,9.5,19,0.0 +23397,4,22,24,0.0 +23397,51,53,43,0.0 +23397,31,12.5,18,0.0 +23397,13,6,48,0.0 +23397,39,18,30,0.0 +23397,69,36,26,0.0 +23397,20,81,48,0.0 +23397,30,25.89,28,0.0 +23397,45,9.5,38,0.0 +23397,76,18,20,0.0 +23397,34,14,6,0.0 +23397,66,17,26,0.0 +23397,8,40,17,0.0 +23397,52,7,21,0.0 +23397,36,19,21,0.0 +23397,7,30,27,0.0 +23397,32,32,8,0.0 +23397,15,15.5,18,0.0 +23397,73,15,48,0.0 +23397,55,24,45,0.0 +23397,59,55,42,0.0 +23397,40,18.4,42,0.0 +23397,3,10,11,0.0 +23397,72,34.8,3,0.0 +23397,22,21,40,0.0 +23397,12,38,7,0.0 +23397,29,123.79,13,0.0 +23398,52,7,26,0.0 +23398,17,39,46,0.0 +23398,8,40,47,0.0 +23398,30,25.89,44,0.0 +23398,60,34,17,0.0 +23398,32,32,2,0.0 +23398,33,2.5,9,0.0 +23398,38,263.5,1,0.0 +23398,12,38,6,0.0 +23398,34,14,11,0.0 +23398,5,21.35,35,0.0 +23398,36,19,1,0.0 +23398,22,21,16,0.0 +23398,74,10,39,0.0 +23398,28,45.6,24,0.0 +23398,56,38,27,0.0 +23398,44,19.45,41,0.0 +23398,49,20,6,0.0 +23399,61,28.5,25,0.0 +23399,36,19,34,0.0 +23399,58,13.25,50,0.0 +23399,52,7,22,0.0 +23399,48,12.75,6,0.0 +23399,37,26,14,0.0 +23399,42,14,14,0.0 +23399,41,9.65,11,0.0 +23399,30,25.89,27,0.0 +23399,67,14,7,0.0 +23399,40,18.4,35,0.0 +23399,59,55,18,0.0 +23399,49,20,22,0.0 +23399,4,22,24,0.0 +23399,72,34.8,31,0.0 +23399,21,10,18,0.0 +23399,63,43.9,8,0.0 +23399,27,43.9,5,0.0 +23399,24,4.5,8,0.0 +23399,19,9.2,28,0.0 +23399,32,32,1,0.0 +23399,70,15,7,0.0 +23399,14,23.25,10,0.0 +23399,65,21.05,13,0.0 +23399,18,62.5,36,0.0 +23399,23,9,15,0.0 +23399,9,97,31,0.0 +23399,1,18,31,0.0 +23399,16,17.45,16,0.0 +23399,7,30,50,0.0 +23399,44,19.45,36,0.0 +23399,74,10,20,0.0 +23399,50,16.25,31,0.0 +23399,39,18,21,0.0 +23399,25,14,19,0.0 +23399,68,12.5,6,0.0 +23399,13,6,49,0.0 +23399,66,17,24,0.0 +23399,8,40,27,0.0 +23399,12,38,5,0.0 +23399,62,49.3,30,0.0 +23399,33,2.5,9,0.0 +23399,54,7.45,33,0.0 +23399,22,21,1,0.0 +23399,10,31,24,0.0 +23399,75,7.75,30,0.0 +23399,47,9.5,15,0.0 +23399,29,123.79,35,0.0 +23399,2,19,30,0.0 +23399,38,263.5,38,0.0 +23399,53,32.8,23,0.0 +23399,51,53,45,0.0 +23399,5,21.35,44,0.0 +23399,17,39,7,0.0 +23399,6,25,2,0.0 +23399,45,9.5,7,0.0 +23399,15,15.5,42,0.0 +23399,55,24,38,0.0 +23399,28,45.6,28,0.0 +23399,60,34,18,0.0 +23400,59,55,47,0.0 +23400,55,24,41,0.0 +23400,9,97,43,0.0 +23400,32,32,37,0.0 +23400,72,34.8,19,0.0 +23400,30,25.89,13,0.0 +23400,15,15.5,35,0.0 +23400,38,263.5,49,0.0 +23400,70,15,45,0.0 +23400,74,10,36,0.0 +23400,4,22,35,0.0 +23400,6,25,19,0.0 +23400,41,9.65,47,0.0 +23400,3,10,2,0.0 +23400,65,21.05,2,0.0 +23400,47,9.5,6,0.0 +23400,34,14,5,0.0 +23400,2,19,35,0.0 +23400,77,13,29,0.0 +23400,5,21.35,45,0.0 +23400,16,17.45,5,0.0 +23400,28,45.6,44,0.0 +23400,37,26,14,0.0 +23400,50,16.25,29,0.0 +23400,68,12.5,14,0.0 +23400,23,9,26,0.0 +23400,24,4.5,3,0.0 +23400,45,9.5,12,0.0 +23400,58,13.25,2,0.0 +23400,62,49.3,14,0.0 +23400,25,14,33,0.0 +23400,35,18,14,0.0 +23400,36,19,48,0.0 +23400,18,62.5,17,0.0 +23400,42,14,19,0.0 +23400,26,31.23,31,0.0 +23400,66,17,17,0.0 +23400,19,9.2,32,0.0 +23400,43,46,14,0.0 +23400,63,43.9,28,0.0 +23400,14,23.25,16,0.0 +23400,17,39,10,0.0 +23400,12,38,2,0.0 +23400,20,81,10,0.0 +23400,71,21.5,8,0.0 +23400,73,15,34,0.0 +23400,44,19.45,12,0.0 +23400,49,20,49,0.0 +23400,60,34,19,0.0 +23400,40,18.4,17,0.0 +23400,75,7.75,17,0.0 +23400,56,38,34,0.0 +23400,29,123.79,6,0.0 +23400,46,12,16,0.0 +23400,61,28.5,19,0.0 +23400,51,53,14,0.0 +23400,27,43.9,33,0.0 +23400,21,10,19,0.0 +23400,53,32.8,33,0.0 +23400,52,7,41,0.0 +23401,3,10,26,0.0 +23401,21,10,38,0.0 +23401,26,31.23,3,0.0 +23401,57,19.5,17,0.0 +23401,14,23.25,7,0.0 +23401,25,14,40,0.0 +23401,60,34,31,0.0 +23401,61,28.5,27,0.0 +23401,59,55,11,0.0 +23401,49,20,47,0.0 +23401,8,40,15,0.0 +23401,18,62.5,15,0.0 +23401,37,26,20,0.0 +23401,45,9.5,4,0.0 +23401,44,19.45,22,0.0 +23401,30,25.89,28,0.0 +23401,42,14,41,0.0 +23401,6,25,34,0.0 +23401,9,97,44,0.0 +23401,43,46,9,0.0 +23401,31,12.5,14,0.0 +23402,11,21,30,0.0 +23402,67,14,35,0.0 +23402,7,30,26,0.0 +23402,75,7.75,4,0.0 +23402,20,81,42,0.0 +23402,13,6,5,0.0 +23402,19,9.2,48,0.0 +23402,18,62.5,32,0.0 +23402,6,25,21,0.0 +23402,21,10,45,0.0 +23402,5,21.35,33,0.0 +23402,43,46,11,0.0 +23402,35,18,23,0.0 +23402,51,53,8,0.0 +23402,77,13,8,0.0 +23402,36,19,3,0.0 +23402,1,18,38,0.0 +23402,61,28.5,17,0.0 +23402,14,23.25,12,0.0 +23402,23,9,2,0.0 +23402,57,19.5,20,0.0 +23402,49,20,9,0.0 +23402,22,21,39,0.0 +23402,50,16.25,37,0.0 +23402,53,32.8,2,0.0 +23402,40,18.4,31,0.0 +23402,34,14,5,0.0 +23402,47,9.5,35,0.0 +23402,54,7.45,34,0.0 +23402,64,33.25,48,0.0 +23402,56,38,48,0.0 +23402,72,34.8,38,0.0 +23402,37,26,21,0.0 +23402,42,14,24,0.0 +23402,74,10,15,0.0 +23402,2,19,41,0.0 +23402,29,123.79,33,0.0 +23402,33,2.5,34,0.0 +23402,59,55,25,0.0 +23402,8,40,47,0.0 +23402,48,12.75,3,0.0 +23402,26,31.23,24,0.0 +23402,55,24,40,0.0 +23402,30,25.89,39,0.0 +23402,63,43.9,10,0.0 +23402,25,14,1,0.0 +23402,44,19.45,22,0.0 +23402,3,10,6,0.0 +23402,71,21.5,27,0.0 +23402,15,15.5,6,0.0 +23402,46,12,15,0.0 +23402,73,15,8,0.0 +23402,62,49.3,20,0.0 +23402,27,43.9,46,0.0 +23402,76,18,38,0.0 +23402,4,22,22,0.0 +23402,52,7,35,0.0 +23402,70,15,21,0.0 +23402,12,38,11,0.0 +23402,60,34,4,0.0 +23402,17,39,48,0.0 +23403,53,32.8,37,0.0 +23403,7,30,14,0.0 +23403,36,19,39,0.0 +23403,49,20,16,0.0 +23403,38,263.5,6,0.0 +23403,46,12,27,0.0 +23403,70,15,36,0.0 +23403,63,43.9,8,0.0 +23403,14,23.25,5,0.0 +23403,58,13.25,38,0.0 +23403,31,12.5,17,0.0 +23403,52,7,10,0.0 +23403,64,33.25,47,0.0 +23403,37,26,38,0.0 +23403,25,14,40,0.0 +23403,26,31.23,19,0.0 +23403,8,40,40,0.0 +23403,44,19.45,47,0.0 +23403,3,10,1,0.0 +23403,67,14,23,0.0 +23403,47,9.5,25,0.0 +23403,27,43.9,42,0.0 +23403,65,21.05,40,0.0 +23403,23,9,40,0.0 +23403,73,15,41,0.0 +23403,19,9.2,40,0.0 +23403,56,38,41,0.0 +23403,2,19,29,0.0 +23403,33,2.5,21,0.0 +23403,41,9.65,14,0.0 +23403,35,18,34,0.0 +23403,9,97,1,0.0 +23403,5,21.35,43,0.0 +23403,34,14,44,0.0 +23403,11,21,25,0.0 +23403,1,18,19,0.0 +23403,57,19.5,29,0.0 +23403,6,25,42,0.0 +23403,16,17.45,6,0.0 +23403,29,123.79,24,0.0 +23403,77,13,23,0.0 +23403,28,45.6,10,0.0 +23403,59,55,38,0.0 +23403,10,31,44,0.0 +23403,76,18,22,0.0 +23403,32,32,48,0.0 +23403,21,10,11,0.0 +23403,22,21,37,0.0 +23403,30,25.89,49,0.0 +23403,69,36,22,0.0 +23403,50,16.25,18,0.0 +23403,48,12.75,2,0.0 +23403,4,22,34,0.0 +23403,60,34,35,0.0 +23403,13,6,9,0.0 +23403,24,4.5,8,0.0 +23403,42,14,8,0.0 +23403,45,9.5,45,0.0 +23403,17,39,10,0.0 +23403,55,24,42,0.0 +23403,61,28.5,46,0.0 +23403,51,53,35,0.0 +23403,68,12.5,7,0.0 +23403,43,46,45,0.0 +23403,62,49.3,43,0.0 +23403,40,18.4,9,0.0 +23403,12,38,19,0.0 +23404,55,24,20,0.0 +23404,19,9.2,5,0.0 +23404,41,9.65,28,0.0 +23404,39,18,17,0.0 +23404,16,17.45,20,0.0 +23404,35,18,48,0.0 +23404,12,38,22,0.0 +23404,60,34,34,0.0 +23404,74,10,42,0.0 +23404,61,28.5,3,0.0 +23404,53,32.8,29,0.0 +23404,73,15,5,0.0 +23404,8,40,25,0.0 +23404,40,18.4,26,0.0 +23404,49,20,6,0.0 +23404,62,49.3,42,0.0 +23404,77,13,13,0.0 +23404,29,123.79,10,0.0 +23404,24,4.5,22,0.0 +23404,31,12.5,10,0.0 +23404,13,6,30,0.0 +23404,44,19.45,42,0.0 +23404,64,33.25,20,0.0 +23404,66,17,36,0.0 +23404,56,38,31,0.0 +23404,10,31,6,0.0 +23404,43,46,32,0.0 +23404,33,2.5,27,0.0 +23404,59,55,34,0.0 +23404,54,7.45,23,0.0 +23404,32,32,21,0.0 +23404,68,12.5,25,0.0 +23404,36,19,41,0.0 +23404,15,15.5,38,0.0 +23404,22,21,34,0.0 +23404,1,18,25,0.0 +23404,50,16.25,48,0.0 +23404,58,13.25,24,0.0 +23404,23,9,46,0.0 +23404,65,21.05,25,0.0 +23404,6,25,5,0.0 +23404,75,7.75,25,0.0 +23404,67,14,8,0.0 +23404,14,23.25,9,0.0 +23404,21,10,25,0.0 +23404,9,97,2,0.0 +23404,25,14,11,0.0 +23404,27,43.9,12,0.0 +23404,38,263.5,9,0.0 +23404,46,12,40,0.0 +23404,70,15,22,0.0 +23404,2,19,4,0.0 +23404,51,53,20,0.0 +23404,20,81,32,0.0 +23404,18,62.5,32,0.0 +23404,63,43.9,45,0.0 +23404,47,9.5,24,0.0 +23404,17,39,41,0.0 +23404,4,22,28,0.0 +23404,5,21.35,44,0.0 +23404,57,19.5,15,0.0 +23404,45,9.5,20,0.0 +23404,11,21,5,0.0 +23404,30,25.89,5,0.0 +23404,28,45.6,27,0.0 +23404,26,31.23,26,0.0 +23404,76,18,7,0.0 +23405,2,19,30,0.0 +23405,63,43.9,10,0.0 +23405,58,13.25,38,0.0 +23405,43,46,41,0.0 +23405,59,55,16,0.0 +23405,55,24,32,0.0 +23405,35,18,42,0.0 +23405,29,123.79,6,0.0 +23405,33,2.5,11,0.0 +23405,60,34,20,0.0 +23405,9,97,46,0.0 +23405,39,18,48,0.0 +23405,11,21,31,0.0 +23405,74,10,31,0.0 +23405,51,53,22,0.0 +23405,27,43.9,45,0.0 +23405,16,17.45,14,0.0 +23405,17,39,29,0.0 +23405,3,10,16,0.0 +23405,34,14,25,0.0 +23405,46,12,27,0.0 +23405,50,16.25,18,0.0 +23405,19,9.2,22,0.0 +23405,1,18,37,0.0 +23405,76,18,16,0.0 +23405,24,4.5,10,0.0 +23405,40,18.4,39,0.0 +23406,46,12,5,0.0 +23406,22,21,42,0.0 +23406,45,9.5,43,0.0 +23406,62,49.3,45,0.0 +23406,18,62.5,17,0.0 +23406,35,18,35,0.0 +23406,77,13,21,0.0 +23406,15,15.5,15,0.0 +23406,38,263.5,8,0.0 +23406,33,2.5,14,0.0 +23406,69,36,9,0.0 +23406,58,13.25,3,0.0 +23406,3,10,1,0.0 +23406,1,18,33,0.0 +23406,60,34,21,0.0 +23406,23,9,40,0.0 +23406,48,12.75,11,0.0 +23406,53,32.8,15,0.0 +23406,74,10,46,0.0 +23406,54,7.45,50,0.0 +23406,73,15,23,0.0 +23406,29,123.79,29,0.0 +23406,8,40,24,0.0 +23406,13,6,26,0.0 +23406,36,19,29,0.0 +23406,20,81,4,0.0 +23406,19,9.2,42,0.0 +23406,2,19,5,0.0 +23406,21,10,7,0.0 +23406,59,55,14,0.0 +23406,10,31,12,0.0 +23406,12,38,23,0.0 +23406,37,26,37,0.0 +23406,16,17.45,36,0.0 +23406,68,12.5,12,0.0 +23406,4,22,5,0.0 +23407,74,10,41,0.0 +23407,71,21.5,44,0.0 +23407,41,9.65,31,0.0 +23407,30,25.89,23,0.0 +23407,18,62.5,38,0.0 +23407,53,32.8,7,0.0 +23407,4,22,47,0.0 +23407,1,18,17,0.0 +23407,57,19.5,32,0.0 +23407,51,53,2,0.0 +23407,59,55,27,0.0 +23407,11,21,50,0.0 +23407,48,12.75,27,0.0 +23407,23,9,16,0.0 +23407,50,16.25,2,0.0 +23407,13,6,16,0.0 +23407,63,43.9,26,0.0 +23407,64,33.25,28,0.0 +23407,21,10,37,0.0 +23407,22,21,21,0.0 +23407,26,31.23,11,0.0 +23407,56,38,31,0.0 +23407,37,26,27,0.0 +23407,19,9.2,30,0.0 +23407,55,24,36,0.0 +23407,17,39,24,0.0 +23407,58,13.25,33,0.0 +23407,68,12.5,36,0.0 +23407,29,123.79,11,0.0 +23407,14,23.25,6,0.0 +23407,15,15.5,13,0.0 +23407,75,7.75,48,0.0 +23407,65,21.05,26,0.0 +23407,3,10,16,0.0 +23407,9,97,31,0.0 +23407,69,36,14,0.0 +23407,10,31,32,0.0 +23407,39,18,48,0.0 +23407,25,14,48,0.0 +23407,33,2.5,21,0.0 +23407,16,17.45,17,0.0 +23407,20,81,32,0.0 +23407,73,15,17,0.0 +23407,5,21.35,31,0.0 +23407,7,30,7,0.0 +23407,67,14,30,0.0 +23407,43,46,2,0.0 +23407,34,14,21,0.0 +23407,45,9.5,34,0.0 +23407,54,7.45,49,0.0 +23407,6,25,32,0.0 +23407,12,38,28,0.0 +23407,42,14,20,0.0 +23407,66,17,5,0.0 +23407,47,9.5,17,0.0 +23407,62,49.3,9,0.0 +23407,52,7,13,0.0 +23407,2,19,43,0.0 +23407,27,43.9,28,0.0 +23407,72,34.8,43,0.0 +23407,61,28.5,25,0.0 +23407,35,18,20,0.0 +23407,24,4.5,44,0.0 +23408,7,30,12,0.0 +23408,10,31,36,0.0 +23408,32,32,14,0.0 +23408,15,15.5,44,0.0 +23408,67,14,44,0.0 +23408,64,33.25,28,0.0 +23408,72,34.8,27,0.0 +23408,70,15,22,0.0 +23408,73,15,42,0.0 +23408,66,17,41,0.0 +23408,8,40,47,0.0 +23408,43,46,20,0.0 +23408,2,19,4,0.0 +23409,76,18,34,0.0 +23409,29,123.79,24,0.0 +23409,25,14,43,0.0 +23409,17,39,14,0.0 +23409,35,18,43,0.0 +23409,44,19.45,45,0.0 +23409,65,21.05,6,0.0 +23409,4,22,17,0.0 +23409,41,9.65,39,0.0 +23409,47,9.5,32,0.0 +23409,55,24,24,0.0 +23409,62,49.3,30,0.0 +23409,36,19,5,0.0 +23409,64,33.25,47,0.0 +23409,2,19,12,0.0 +23409,24,4.5,9,0.0 +23409,73,15,1,0.0 +23409,14,23.25,33,0.0 +23409,45,9.5,24,0.0 +23409,77,13,27,0.0 +23409,23,9,29,0.0 +23409,56,38,11,0.0 +23409,11,21,11,0.0 +23409,66,17,29,0.0 +23409,57,19.5,34,0.0 +23409,49,20,50,0.0 +23409,46,12,18,0.0 +23409,27,43.9,39,0.0 +23409,15,15.5,39,0.0 +23409,40,18.4,33,0.0 +23409,58,13.25,43,0.0 +23409,72,34.8,7,0.0 +23409,10,31,37,0.0 +23409,3,10,21,0.0 +23409,52,7,44,0.0 +23409,53,32.8,35,0.0 +23409,34,14,40,0.0 +23409,20,81,13,0.0 +23409,13,6,20,0.0 +23409,50,16.25,12,0.0 +23409,43,46,16,0.0 +23409,30,25.89,48,0.0 +23409,48,12.75,34,0.0 +23409,74,10,28,0.0 +23409,1,18,4,0.0 +23409,39,18,29,0.0 +23409,63,43.9,15,0.0 +23409,61,28.5,47,0.0 +23409,59,55,30,0.0 +23409,31,12.5,15,0.0 +23409,68,12.5,37,0.0 +23409,12,38,11,0.0 +23410,11,21,20,0.0 +23410,14,23.25,21,0.0 +23410,73,15,3,0.0 +23410,56,38,17,0.0 +23410,72,34.8,10,0.0 +23410,51,53,11,0.0 +23410,54,7.45,37,0.0 +23410,52,7,32,0.0 +23410,6,25,28,0.0 +23410,5,21.35,25,0.0 +23410,42,14,8,0.0 +23410,46,12,15,0.0 +23410,55,24,31,0.0 +23410,74,10,22,0.0 +23410,30,25.89,39,0.0 +23410,7,30,22,0.0 +23410,75,7.75,38,0.0 +23410,26,31.23,26,0.0 +23410,35,18,47,0.0 +23410,50,16.25,2,0.0 +23410,2,19,3,0.0 +23410,47,9.5,4,0.0 +23410,39,18,33,0.0 +23410,15,15.5,21,0.0 +23410,9,97,20,0.0 +23410,48,12.75,25,0.0 +23410,61,28.5,4,0.0 +23410,24,4.5,29,0.0 +23410,65,21.05,27,0.0 +23410,3,10,17,0.0 +23410,71,21.5,19,0.0 +23410,21,10,28,0.0 +23410,62,49.3,8,0.0 +23410,32,32,25,0.0 +23410,12,38,46,0.0 +23410,18,62.5,38,0.0 +23410,31,12.5,33,0.0 +23410,20,81,49,0.0 +23410,4,22,43,0.0 +23410,49,20,50,0.0 +23410,67,14,30,0.0 +23410,28,45.6,24,0.0 +23410,16,17.45,47,0.0 +23410,8,40,22,0.0 +23410,1,18,26,0.0 +23410,69,36,4,0.0 +23410,17,39,7,0.0 +23410,19,9.2,19,0.0 +23410,66,17,13,0.0 +23410,43,46,12,0.0 +23410,76,18,32,0.0 +23411,20,81,49,0.0 +23411,17,39,11,0.0 +23411,55,24,11,0.0 +23411,16,17.45,38,0.0 +23411,48,12.75,32,0.0 +23411,13,6,31,0.0 +23411,7,30,7,0.0 +23411,64,33.25,26,0.0 +23411,71,21.5,44,0.0 +23411,58,13.25,15,0.0 +23411,67,14,12,0.0 +23411,30,25.89,6,0.0 +23411,43,46,13,0.0 +23411,8,40,27,0.0 +23411,29,123.79,34,0.0 +23411,23,9,42,0.0 +23411,66,17,41,0.0 +23411,41,9.65,49,0.0 +23411,46,12,25,0.0 +23412,19,9.2,3,0.0 +23412,49,20,30,0.0 +23412,8,40,28,0.0 +23412,35,18,18,0.0 +23412,59,55,30,0.0 +23412,5,21.35,31,0.0 +23412,16,17.45,20,0.0 +23412,30,25.89,15,0.0 +23412,77,13,19,0.0 +23412,43,46,39,0.0 +23412,55,24,45,0.0 +23412,13,6,8,0.0 +23412,34,14,37,0.0 +23412,42,14,9,0.0 +23412,66,17,14,0.0 +23412,62,49.3,39,0.0 +23412,37,26,47,0.0 +23412,27,43.9,46,0.0 +23412,75,7.75,49,0.0 +23412,56,38,25,0.0 +23412,36,19,41,0.0 +23412,23,9,48,0.0 +23412,40,18.4,21,0.0 +23412,65,21.05,16,0.0 +23412,6,25,9,0.0 +23412,61,28.5,35,0.0 +23412,70,15,35,0.0 +23413,42,14,49,0.0 +23413,67,14,5,0.0 +23413,2,19,42,0.0 +23413,70,15,27,0.0 +23413,48,12.75,47,0.0 +23413,52,7,42,0.0 +23413,60,34,26,0.0 +23413,41,9.65,5,0.0 +23413,43,46,9,0.0 +23414,19,9.2,4,0.0 +23414,42,14,35,0.0 +23414,61,28.5,32,0.0 +23414,10,31,35,0.0 +23414,75,7.75,48,0.0 +23414,54,7.45,41,0.0 +23414,5,21.35,14,0.0 +23414,1,18,7,0.0 +23414,74,10,36,0.0 +23414,2,19,41,0.0 +23414,43,46,41,0.0 +23414,11,21,28,0.0 +23414,17,39,11,0.0 +23414,66,17,25,0.0 +23414,62,49.3,25,0.0 +23414,21,10,25,0.0 +23414,39,18,17,0.0 +23414,40,18.4,17,0.0 +23414,50,16.25,3,0.0 +23414,28,45.6,14,0.0 +23414,56,38,25,0.0 +23414,4,22,43,0.0 +23414,77,13,30,0.0 +23414,35,18,10,0.0 +23414,36,19,45,0.0 +23414,73,15,41,0.0 +23414,13,6,1,0.0 +23414,68,12.5,37,0.0 +23414,67,14,48,0.0 +23414,60,34,36,0.0 +23414,9,97,12,0.0 +23414,24,4.5,33,0.0 +23414,15,15.5,24,0.0 +23414,64,33.25,36,0.0 +23414,30,25.89,20,0.0 +23414,51,53,24,0.0 +23414,33,2.5,47,0.0 +23414,18,62.5,17,0.0 +23414,63,43.9,13,0.0 +23414,7,30,26,0.0 +23414,27,43.9,35,0.0 +23414,31,12.5,45,0.0 +23414,49,20,42,0.0 +23414,52,7,13,0.0 +23414,69,36,18,0.0 +23414,25,14,4,0.0 +23415,68,12.5,31,0.0 +23415,35,18,28,0.0 +23415,72,34.8,40,0.0 +23415,60,34,8,0.0 +23415,67,14,34,0.0 +23415,26,31.23,2,0.0 +23415,25,14,5,0.0 +23415,5,21.35,7,0.0 +23415,71,21.5,35,0.0 +23415,73,15,9,0.0 +23415,49,20,18,0.0 +23415,74,10,35,0.0 +23415,66,17,29,0.0 +23415,6,25,38,0.0 +23415,19,9.2,19,0.0 +23415,65,21.05,48,0.0 +23415,43,46,7,0.0 +23415,70,15,34,0.0 +23415,14,23.25,42,0.0 +23415,45,9.5,15,0.0 +23415,33,2.5,33,0.0 +23415,13,6,38,0.0 +23415,58,13.25,47,0.0 +23415,31,12.5,39,0.0 +23415,76,18,30,0.0 +23415,17,39,45,0.0 +23415,32,32,10,0.0 +23415,12,38,48,0.0 +23415,15,15.5,5,0.0 +23415,10,31,14,0.0 +23415,27,43.9,7,0.0 +23415,42,14,11,0.0 +23415,8,40,42,0.0 +23415,61,28.5,12,0.0 +23415,3,10,37,0.0 +23415,52,7,13,0.0 +23415,28,45.6,38,0.0 +23415,44,19.45,4,0.0 +23415,59,55,39,0.0 +23415,41,9.65,45,0.0 +23415,34,14,3,0.0 +23415,30,25.89,5,0.0 +23415,7,30,1,0.0 +23415,50,16.25,30,0.0 +23415,54,7.45,37,0.0 +23415,62,49.3,38,0.0 +23415,64,33.25,43,0.0 +23415,47,9.5,23,0.0 +23416,3,10,33,0.0 +23416,77,13,36,0.0 +23416,58,13.25,40,0.0 +23416,5,21.35,3,0.0 +23416,9,97,10,0.0 +23416,70,15,33,0.0 +23416,44,19.45,39,0.0 +23416,17,39,40,0.0 +23416,37,26,40,0.0 +23416,14,23.25,10,0.0 +23416,53,32.8,34,0.0 +23416,57,19.5,13,0.0 +23416,34,14,50,0.0 +23416,52,7,43,0.0 +23416,15,15.5,22,0.0 +23416,32,32,47,0.0 +23416,56,38,28,0.0 +23416,42,14,10,0.0 +23416,49,20,12,0.0 +23416,60,34,22,0.0 +23416,1,18,2,0.0 +23416,39,18,12,0.0 +23417,9,97,18,0.0 +23417,55,24,2,0.0 +23417,65,21.05,2,0.0 +23417,72,34.8,36,0.0 +23417,43,46,49,0.0 +23417,44,19.45,30,0.0 +23417,40,18.4,25,0.0 +23417,31,12.5,11,0.0 +23417,5,21.35,10,0.0 +23417,46,12,13,0.0 +23417,6,25,26,0.0 +23417,30,25.89,3,0.0 +23417,60,34,19,0.0 +23417,41,9.65,45,0.0 +23417,71,21.5,50,0.0 +23417,27,43.9,43,0.0 +23417,14,23.25,35,0.0 +23417,61,28.5,12,0.0 +23417,51,53,34,0.0 +23417,8,40,45,0.0 +23417,29,123.79,28,0.0 +23417,48,12.75,30,0.0 +23417,3,10,35,0.0 +23417,54,7.45,47,0.0 +23417,74,10,37,0.0 +23417,18,62.5,27,0.0 +23417,25,14,23,0.0 +23417,70,15,5,0.0 +23417,68,12.5,24,0.0 +23417,49,20,43,0.0 +23417,62,49.3,30,0.0 +23417,58,13.25,33,0.0 +23417,19,9.2,20,0.0 +23417,42,14,34,0.0 +23417,32,32,11,0.0 +23417,2,19,49,0.0 +23417,20,81,37,0.0 +23417,13,6,10,0.0 +23417,37,26,36,0.0 +23417,23,9,7,0.0 +23417,63,43.9,46,0.0 +23417,69,36,33,0.0 +23417,67,14,39,0.0 +23417,36,19,6,0.0 +23417,7,30,3,0.0 +23417,56,38,24,0.0 +23417,52,7,28,0.0 +23417,66,17,19,0.0 +23417,35,18,18,0.0 +23417,33,2.5,29,0.0 +23417,50,16.25,20,0.0 +23417,11,21,37,0.0 +23417,15,15.5,49,0.0 +23417,12,38,8,0.0 +23417,22,21,45,0.0 +23417,4,22,21,0.0 +23417,17,39,37,0.0 +23417,76,18,14,0.0 +23417,45,9.5,6,0.0 +23417,73,15,37,0.0 +23417,64,33.25,7,0.0 +23417,53,32.8,2,0.0 +23417,75,7.75,1,0.0 +23417,16,17.45,42,0.0 +23417,39,18,8,0.0 +23417,34,14,23,0.0 +23418,22,21,22,0.0 +23418,70,15,6,0.0 +23418,69,36,30,0.0 +23418,16,17.45,19,0.0 +23418,59,55,2,0.0 +23418,47,9.5,24,0.0 +23418,66,17,48,0.0 +23418,64,33.25,33,0.0 +23418,58,13.25,2,0.0 +23418,3,10,9,0.0 +23418,11,21,20,0.0 +23418,51,53,39,0.0 +23418,36,19,2,0.0 +23418,9,97,44,0.0 +23418,48,12.75,25,0.0 +23418,49,20,32,0.0 +23418,32,32,40,0.0 +23418,61,28.5,23,0.0 +23418,13,6,33,0.0 +23418,26,31.23,48,0.0 +23418,19,9.2,32,0.0 +23418,4,22,26,0.0 +23418,31,12.5,8,0.0 +23418,74,10,22,0.0 +23418,62,49.3,18,0.0 +23418,30,25.89,18,0.0 +23418,46,12,5,0.0 +23418,37,26,22,0.0 +23418,28,45.6,26,0.0 +23418,50,16.25,49,0.0 +23418,15,15.5,2,0.0 +23418,53,32.8,25,0.0 +23418,12,38,36,0.0 +23418,17,39,13,0.0 +23418,24,4.5,16,0.0 +23418,43,46,40,0.0 +23418,52,7,1,0.0 +23418,57,19.5,43,0.0 +23418,34,14,15,0.0 +23418,20,81,14,0.0 +23418,1,18,7,0.0 +23418,25,14,16,0.0 +23418,72,34.8,24,0.0 +23418,33,2.5,38,0.0 +23418,60,34,9,0.0 +23418,6,25,39,0.0 +23418,41,9.65,8,0.0 +23418,27,43.9,27,0.0 +23418,40,18.4,20,0.0 +23418,75,7.75,19,0.0 +23418,29,123.79,21,0.0 +23418,68,12.5,50,0.0 +23418,23,9,32,0.0 +23418,67,14,5,0.0 +23418,44,19.45,27,0.0 +23418,38,263.5,14,0.0 +23418,45,9.5,37,0.0 +23419,14,23.25,1,0.0 +23419,3,10,42,0.0 +23419,22,21,22,0.0 +23419,16,17.45,41,0.0 +23419,6,25,38,0.0 +23419,73,15,5,0.0 +23419,26,31.23,4,0.0 +23419,64,33.25,3,0.0 +23419,8,40,9,0.0 +23419,2,19,40,0.0 +23419,62,49.3,13,0.0 +23419,72,34.8,49,0.0 +23419,47,9.5,47,0.0 +23419,23,9,42,0.0 +23419,12,38,48,0.0 +23419,36,19,49,0.0 +23419,65,21.05,39,0.0 +23419,50,16.25,39,0.0 +23419,33,2.5,16,0.0 +23419,75,7.75,35,0.0 +23419,4,22,41,0.0 +23419,35,18,45,0.0 +23419,57,19.5,15,0.0 +23419,63,43.9,41,0.0 +23420,71,21.5,3,0.0 +23420,72,34.8,9,0.0 +23420,30,25.89,48,0.0 +23420,62,49.3,50,0.0 +23420,26,31.23,18,0.0 +23420,13,6,30,0.0 +23420,11,21,9,0.0 +23420,25,14,23,0.0 +23420,3,10,43,0.0 +23420,24,4.5,8,0.0 +23420,66,17,14,0.0 +23420,63,43.9,22,0.0 +23420,35,18,30,0.0 +23420,49,20,5,0.0 +23420,15,15.5,7,0.0 +23420,44,19.45,6,0.0 +23420,75,7.75,22,0.0 +23420,41,9.65,5,0.0 +23420,23,9,9,0.0 +23420,50,16.25,2,0.0 +23420,36,19,25,0.0 +23420,38,263.5,19,0.0 +23420,59,55,49,0.0 +23420,45,9.5,44,0.0 +23420,47,9.5,23,0.0 +23420,21,10,41,0.0 +23420,55,24,10,0.0 +23420,68,12.5,47,0.0 +23420,53,32.8,39,0.0 +23420,73,15,36,0.0 +23420,31,12.5,33,0.0 +23420,70,15,10,0.0 +23420,64,33.25,26,0.0 +23420,16,17.45,8,0.0 +23420,43,46,32,0.0 +23420,65,21.05,12,0.0 +23420,1,18,7,0.0 +23420,4,22,10,0.0 +23420,57,19.5,10,0.0 +23420,10,31,24,0.0 +23420,61,28.5,7,0.0 +23420,69,36,21,0.0 +23420,32,32,16,0.0 +23420,60,34,10,0.0 +23420,18,62.5,19,0.0 +23420,20,81,1,0.0 +23420,6,25,3,0.0 +23420,77,13,19,0.0 +23420,19,9.2,3,0.0 +23420,74,10,16,0.0 +23420,37,26,33,0.0 +23420,46,12,50,0.0 +23420,52,7,24,0.0 +23420,7,30,31,0.0 +23420,34,14,43,0.0 +23420,58,13.25,27,0.0 +23420,14,23.25,30,0.0 +23420,2,19,22,0.0 +23420,39,18,8,0.0 +23420,27,43.9,33,0.0 +23420,54,7.45,5,0.0 +23420,29,123.79,31,0.0 +23420,56,38,35,0.0 +23420,28,45.6,34,0.0 +23420,76,18,19,0.0 +23420,9,97,35,0.0 +23420,51,53,15,0.0 +23420,22,21,11,0.0 +23421,41,9.65,13,0.0 +23421,58,13.25,9,0.0 +23421,51,53,14,0.0 +23421,22,21,49,0.0 +23421,21,10,15,0.0 +23421,61,28.5,1,0.0 +23421,65,21.05,12,0.0 +23421,14,23.25,17,0.0 +23421,25,14,8,0.0 +23421,33,2.5,39,0.0 +23421,71,21.5,39,0.0 +23421,18,62.5,6,0.0 +23421,68,12.5,46,0.0 +23421,24,4.5,4,0.0 +23421,46,12,14,0.0 +23421,10,31,26,0.0 +23421,62,49.3,36,0.0 +23421,12,38,11,0.0 +23421,48,12.75,16,0.0 +23421,50,16.25,41,0.0 +23421,29,123.79,30,0.0 +23421,9,97,26,0.0 +23421,67,14,24,0.0 +23421,5,21.35,8,0.0 +23421,55,24,12,0.0 +23421,59,55,6,0.0 +23421,8,40,35,0.0 +23421,57,19.5,27,0.0 +23421,63,43.9,42,0.0 +23421,16,17.45,19,0.0 +23421,32,32,1,0.0 +23421,45,9.5,29,0.0 +23421,60,34,24,0.0 +23421,70,15,17,0.0 +23421,20,81,41,0.0 +23421,74,10,39,0.0 +23421,6,25,34,0.0 +23421,49,20,19,0.0 +23421,27,43.9,44,0.0 +23421,28,45.6,1,0.0 +23421,17,39,28,0.0 +23421,75,7.75,48,0.0 +23421,38,263.5,47,0.0 +23421,15,15.5,27,0.0 +23421,3,10,31,0.0 +23421,37,26,23,0.0 +23421,47,9.5,24,0.0 +23421,72,34.8,50,0.0 +23421,2,19,7,0.0 +23421,53,32.8,21,0.0 +23421,19,9.2,46,0.0 +23422,66,17,4,0.0 +23422,2,19,2,0.0 +23422,38,263.5,48,0.0 +23422,52,7,31,0.0 +23422,56,38,33,0.0 +23422,22,21,4,0.0 +23422,42,14,3,0.0 +23422,58,13.25,3,0.0 +23422,40,18.4,3,0.0 +23422,60,34,43,0.0 +23422,27,43.9,47,0.0 +23422,70,15,47,0.0 +23422,20,81,32,0.0 +23422,44,19.45,19,0.0 +23422,9,97,7,0.0 +23422,16,17.45,48,0.0 +23422,21,10,25,0.0 +23422,4,22,24,0.0 +23422,28,45.6,39,0.0 +23422,8,40,4,0.0 +23422,37,26,21,0.0 +23422,72,34.8,45,0.0 +23422,36,19,7,0.0 +23422,5,21.35,50,0.0 +23422,29,123.79,7,0.0 +23422,47,9.5,47,0.0 +23422,74,10,41,0.0 +23422,1,18,15,0.0 +23422,49,20,39,0.0 +23422,65,21.05,5,0.0 +23422,51,53,43,0.0 +23422,19,9.2,33,0.0 +23422,14,23.25,31,0.0 +23422,7,30,7,0.0 +23422,61,28.5,14,0.0 +23422,48,12.75,19,0.0 +23422,75,7.75,38,0.0 +23422,64,33.25,10,0.0 +23422,71,21.5,22,0.0 +23422,43,46,10,0.0 +23422,13,6,16,0.0 +23422,55,24,47,0.0 +23422,32,32,32,0.0 +23422,34,14,14,0.0 +23422,6,25,41,0.0 +23422,23,9,27,0.0 +23422,33,2.5,10,0.0 +23422,59,55,14,0.0 +23422,53,32.8,47,0.0 +23422,57,19.5,19,0.0 +23422,41,9.65,15,0.0 +23422,46,12,19,0.0 +23422,12,38,11,0.0 +23422,73,15,36,0.0 +23422,25,14,40,0.0 +23422,18,62.5,24,0.0 +23422,26,31.23,10,0.0 +23422,11,21,2,0.0 +23422,77,13,44,0.0 +23422,50,16.25,41,0.0 +23422,17,39,29,0.0 +23422,45,9.5,43,0.0 +23422,10,31,42,0.0 +23423,36,19,28,0.0 +23423,52,7,44,0.0 +23423,8,40,14,0.0 +23423,9,97,15,0.0 +23423,6,25,27,0.0 +23423,20,81,40,0.0 +23423,45,9.5,42,0.0 +23423,67,14,25,0.0 +23423,21,10,29,0.0 +23423,25,14,45,0.0 +23423,71,21.5,14,0.0 +23423,31,12.5,1,0.0 +23423,63,43.9,5,0.0 +23423,72,34.8,17,0.0 +23423,26,31.23,5,0.0 +23423,24,4.5,31,0.0 +23423,41,9.65,20,0.0 +23423,58,13.25,18,0.0 +23423,60,34,15,0.0 +23423,73,15,38,0.0 +23423,59,55,17,0.0 +23423,61,28.5,9,0.0 +23423,16,17.45,24,0.0 +23423,35,18,22,0.0 +23423,13,6,47,0.0 +23423,69,36,28,0.0 +23423,10,31,18,0.0 +23423,37,26,42,0.0 +23423,68,12.5,32,0.0 +23423,29,123.79,3,0.0 +23423,54,7.45,13,0.0 +23423,50,16.25,24,0.0 +23423,43,46,41,0.0 +23423,23,9,41,0.0 +23423,53,32.8,22,0.0 +23423,77,13,1,0.0 +23423,11,21,36,0.0 +23423,44,19.45,7,0.0 +23423,57,19.5,44,0.0 +23423,62,49.3,50,0.0 +23423,19,9.2,6,0.0 +23423,5,21.35,16,0.0 +23423,75,7.75,10,0.0 +23423,76,18,13,0.0 +23423,56,38,2,0.0 +23423,42,14,17,0.0 +23423,2,19,12,0.0 +23423,17,39,44,0.0 +23423,46,12,36,0.0 +23423,14,23.25,49,0.0 +23423,4,22,48,0.0 +23423,51,53,44,0.0 +23423,66,17,21,0.0 +23423,47,9.5,47,0.0 +23423,28,45.6,30,0.0 +23424,17,39,23,0.0 +23424,26,31.23,10,0.0 +23424,2,19,33,0.0 +23424,51,53,11,0.0 +23424,36,19,7,0.0 +23424,15,15.5,32,0.0 +23424,42,14,31,0.0 +23424,68,12.5,34,0.0 +23424,66,17,43,0.0 +23424,6,25,26,0.0 +23424,73,15,19,0.0 +23424,27,43.9,12,0.0 +23424,57,19.5,29,0.0 +23424,70,15,43,0.0 +23424,54,7.45,30,0.0 +23424,37,26,41,0.0 +23424,29,123.79,45,0.0 +23424,30,25.89,29,0.0 +23424,58,13.25,15,0.0 +23424,34,14,29,0.0 +23424,44,19.45,41,0.0 +23424,21,10,39,0.0 +23424,19,9.2,17,0.0 +23424,77,13,38,0.0 +23424,64,33.25,36,0.0 +23424,5,21.35,39,0.0 +23424,59,55,40,0.0 +23424,24,4.5,50,0.0 +23424,61,28.5,3,0.0 +23424,47,9.5,26,0.0 +23424,12,38,33,0.0 +23424,39,18,15,0.0 +23424,72,34.8,42,0.0 +23424,71,21.5,41,0.0 +23424,11,21,27,0.0 +23424,32,32,29,0.0 +23424,9,97,43,0.0 +23424,13,6,49,0.0 +23424,49,20,16,0.0 +23424,75,7.75,46,0.0 +23424,31,12.5,44,0.0 +23424,41,9.65,28,0.0 +23424,4,22,13,0.0 +23424,60,34,21,0.0 +23424,50,16.25,20,0.0 +23424,38,263.5,20,0.0 +23424,43,46,14,0.0 +23424,23,9,22,0.0 +23424,28,45.6,23,0.0 +23424,65,21.05,15,0.0 +23424,76,18,47,0.0 +23425,8,40,46,0.0 +23425,28,45.6,38,0.0 +23425,44,19.45,1,0.0 +23425,64,33.25,22,0.0 +23425,60,34,48,0.0 +23425,3,10,23,0.0 +23425,5,21.35,3,0.0 +23425,77,13,44,0.0 +23426,55,24,2,0.0 +23426,26,31.23,18,0.0 +23426,42,14,34,0.0 +23426,3,10,23,0.0 +23426,7,30,43,0.0 +23426,53,32.8,10,0.0 +23426,64,33.25,7,0.0 +23426,32,32,25,0.0 +23426,37,26,46,0.0 +23426,71,21.5,15,0.0 +23426,12,38,48,0.0 +23426,20,81,23,0.0 +23426,76,18,37,0.0 +23426,5,21.35,43,0.0 +23426,60,34,7,0.0 +23426,27,43.9,23,0.0 +23426,29,123.79,49,0.0 +23426,54,7.45,15,0.0 +23426,17,39,37,0.0 +23426,22,21,11,0.0 +23426,9,97,38,0.0 +23426,39,18,16,0.0 +23426,47,9.5,9,0.0 +23426,66,17,32,0.0 +23426,49,20,10,0.0 +23426,13,6,42,0.0 +23426,16,17.45,22,0.0 +23426,48,12.75,47,0.0 +23426,58,13.25,10,0.0 +23426,18,62.5,18,0.0 +23426,19,9.2,13,0.0 +23426,34,14,20,0.0 +23426,2,19,20,0.0 +23426,44,19.45,43,0.0 +23426,36,19,28,0.0 +23426,28,45.6,7,0.0 +23426,70,15,20,0.0 +23426,46,12,15,0.0 +23427,42,14,41,0.0 +23427,44,19.45,27,0.0 +23427,20,81,6,0.0 +23427,43,46,44,0.0 +23427,38,263.5,47,0.0 +23427,15,15.5,16,0.0 +23427,50,16.25,2,0.0 +23427,70,15,29,0.0 +23427,54,7.45,19,0.0 +23427,17,39,3,0.0 +23427,8,40,17,0.0 +23427,32,32,16,0.0 +23427,56,38,29,0.0 +23427,59,55,46,0.0 +23427,6,25,16,0.0 +23427,35,18,1,0.0 +23427,76,18,9,0.0 +23427,19,9.2,34,0.0 +23427,47,9.5,33,0.0 +23427,55,24,38,0.0 +23427,61,28.5,44,0.0 +23427,41,9.65,45,0.0 +23427,10,31,8,0.0 +23427,68,12.5,22,0.0 +23427,14,23.25,3,0.0 +23427,45,9.5,36,0.0 +23427,1,18,28,0.0 +23428,59,55,48,0.0 +23428,27,43.9,26,0.0 +23428,38,263.5,1,0.0 +23428,40,18.4,41,0.0 +23428,7,30,38,0.0 +23428,14,23.25,15,0.0 +23428,74,10,46,0.0 +23428,53,32.8,24,0.0 +23428,31,12.5,17,0.0 +23428,62,49.3,21,0.0 +23428,30,25.89,20,0.0 +23428,8,40,7,0.0 +23428,34,14,5,0.0 +23428,44,19.45,44,0.0 +23429,18,62.5,7,0.0 +23429,56,38,17,0.0 +23429,17,39,6,0.0 +23429,65,21.05,19,0.0 +23429,53,32.8,45,0.0 +23429,11,21,16,0.0 +23429,76,18,19,0.0 +23429,1,18,38,0.0 +23429,28,45.6,20,0.0 +23429,26,31.23,7,0.0 +23429,37,26,15,0.0 +23429,39,18,11,0.0 +23429,75,7.75,50,0.0 +23429,7,30,34,0.0 +23429,58,13.25,27,0.0 +23429,74,10,15,0.0 +23429,66,17,33,0.0 +23429,69,36,31,0.0 +23429,40,18.4,40,0.0 +23429,67,14,20,0.0 +23429,5,21.35,35,0.0 +23429,73,15,34,0.0 +23429,45,9.5,38,0.0 +23429,15,15.5,2,0.0 +23429,68,12.5,45,0.0 +23429,3,10,9,0.0 +23429,72,34.8,21,0.0 +23429,14,23.25,30,0.0 +23430,56,38,49,0.0 +23430,38,263.5,29,0.0 +23430,50,16.25,29,0.0 +23430,1,18,17,0.0 +23430,4,22,19,0.0 +23430,48,12.75,46,0.0 +23430,66,17,31,0.0 +23430,60,34,13,0.0 +23430,69,36,20,0.0 +23430,52,7,27,0.0 +23430,57,19.5,33,0.0 +23430,74,10,20,0.0 +23430,9,97,12,0.0 +23430,46,12,41,0.0 +23430,77,13,49,0.0 +23430,43,46,46,0.0 +23430,45,9.5,12,0.0 +23430,3,10,4,0.0 +23430,26,31.23,49,0.0 +23430,47,9.5,36,0.0 +23430,73,15,12,0.0 +23430,64,33.25,20,0.0 +23430,71,21.5,50,0.0 +23430,67,14,15,0.0 +23430,54,7.45,1,0.0 +23430,11,21,23,0.0 +23430,23,9,6,0.0 +23430,53,32.8,24,0.0 +23430,65,21.05,12,0.0 +23430,16,17.45,34,0.0 +23430,35,18,6,0.0 +23430,17,39,47,0.0 +23430,34,14,30,0.0 +23430,39,18,15,0.0 +23430,40,18.4,45,0.0 +23430,22,21,7,0.0 +23430,63,43.9,36,0.0 +23430,51,53,47,0.0 +23430,58,13.25,5,0.0 +23430,75,7.75,26,0.0 +23430,55,24,39,0.0 +23430,61,28.5,37,0.0 +23430,27,43.9,4,0.0 +23430,59,55,5,0.0 +23430,8,40,4,0.0 +23430,12,38,27,0.0 +23430,25,14,3,0.0 +23430,15,15.5,46,0.0 +23430,10,31,1,0.0 +23430,62,49.3,7,0.0 +23430,28,45.6,43,0.0 +23430,76,18,45,0.0 +23430,24,4.5,7,0.0 +23430,31,12.5,40,0.0 +23430,14,23.25,25,0.0 +23430,70,15,15,0.0 +23430,68,12.5,30,0.0 +23430,41,9.65,41,0.0 +23430,36,19,29,0.0 +23430,2,19,46,0.0 +23430,44,19.45,2,0.0 +23430,19,9.2,12,0.0 +23430,18,62.5,45,0.0 +23430,21,10,26,0.0 +23430,72,34.8,28,0.0 +23430,49,20,32,0.0 +23430,7,30,27,0.0 +23430,20,81,43,0.0 +23430,13,6,43,0.0 +23430,5,21.35,34,0.0 +23431,70,15,5,0.0 +23431,60,34,42,0.0 +23431,9,97,25,0.0 +23431,5,21.35,28,0.0 +23431,46,12,49,0.0 +23431,74,10,30,0.0 +23431,27,43.9,5,0.0 +23431,45,9.5,31,0.0 +23431,64,33.25,24,0.0 +23431,77,13,29,0.0 +23431,38,263.5,13,0.0 +23431,7,30,35,0.0 +23431,36,19,27,0.0 +23431,13,6,35,0.0 +23431,4,22,28,0.0 +23431,24,4.5,42,0.0 +23431,55,24,46,0.0 +23431,29,123.79,3,0.0 +23431,31,12.5,41,0.0 +23431,39,18,17,0.0 +23431,28,45.6,13,0.0 +23431,48,12.75,19,0.0 +23431,71,21.5,11,0.0 +23431,75,7.75,14,0.0 +23431,58,13.25,44,0.0 +23431,8,40,18,0.0 +23431,65,21.05,22,0.0 +23431,20,81,2,0.0 +23431,12,38,40,0.0 +23431,42,14,5,0.0 +23431,16,17.45,7,0.0 +23431,32,32,49,0.0 +23431,61,28.5,16,0.0 +23431,67,14,9,0.0 +23431,51,53,37,0.0 +23431,33,2.5,5,0.0 +23431,40,18.4,40,0.0 +23431,49,20,27,0.0 +23431,69,36,24,0.0 +23431,35,18,6,0.0 +23431,54,7.45,48,0.0 +23431,23,9,27,0.0 +23431,63,43.9,21,0.0 +23431,26,31.23,29,0.0 +23431,73,15,24,0.0 +23431,76,18,25,0.0 +23431,53,32.8,7,0.0 +23431,14,23.25,27,0.0 +23431,30,25.89,26,0.0 +23431,18,62.5,20,0.0 +23431,22,21,45,0.0 +23431,2,19,23,0.0 +23431,72,34.8,24,0.0 +23431,41,9.65,1,0.0 +23431,56,38,32,0.0 +23431,11,21,22,0.0 +23431,57,19.5,25,0.0 +23431,6,25,9,0.0 +23431,68,12.5,38,0.0 +23431,19,9.2,23,0.0 +23431,62,49.3,39,0.0 +23431,44,19.45,3,0.0 +23431,43,46,22,0.0 +23431,15,15.5,34,0.0 +23431,1,18,44,0.0 +23431,34,14,34,0.0 +23431,25,14,31,0.0 +23431,66,17,44,0.0 +23431,17,39,38,0.0 +23431,59,55,9,0.0 +23431,10,31,20,0.0 +23431,50,16.25,33,0.0 +23431,21,10,49,0.0 +23431,37,26,43,0.0 +23432,11,21,4,0.0 +23432,27,43.9,45,0.0 +23432,58,13.25,43,0.0 +23432,15,15.5,49,0.0 +23432,37,26,36,0.0 +23432,56,38,43,0.0 +23432,76,18,26,0.0 +23432,77,13,16,0.0 +23432,17,39,39,0.0 +23432,32,32,33,0.0 +23432,23,9,36,0.0 +23432,3,10,26,0.0 +23432,20,81,18,0.0 +23432,61,28.5,35,0.0 +23432,49,20,20,0.0 +23432,62,49.3,11,0.0 +23432,65,21.05,28,0.0 +23432,43,46,1,0.0 +23432,50,16.25,10,0.0 +23432,48,12.75,3,0.0 +23432,40,18.4,46,0.0 +23432,74,10,24,0.0 +23432,26,31.23,10,0.0 +23432,10,31,10,0.0 +23432,2,19,26,0.0 +23432,70,15,28,0.0 +23432,8,40,48,0.0 +23433,8,40,12,0.0 +23433,20,81,28,0.0 +23433,69,36,40,0.0 +23433,25,14,15,0.0 +23433,49,20,12,0.0 +23434,45,9.5,7,0.0 +23434,74,10,2,0.0 +23434,2,19,28,0.0 +23434,21,10,18,0.0 +23434,25,14,47,0.0 +23434,18,62.5,16,0.0 +23434,66,17,13,0.0 +23434,49,20,45,0.0 +23434,31,12.5,24,0.0 +23434,53,32.8,45,0.0 +23434,52,7,7,0.0 +23434,62,49.3,39,0.0 +23434,19,9.2,28,0.0 +23434,30,25.89,38,0.0 +23434,41,9.65,29,0.0 +23434,9,97,12,0.0 +23434,8,40,21,0.0 +23434,69,36,25,0.0 +23434,67,14,42,0.0 +23434,13,6,31,0.0 +23434,50,16.25,21,0.0 +23434,22,21,48,0.0 +23434,73,15,4,0.0 +23434,15,15.5,43,0.0 +23434,61,28.5,33,0.0 +23434,3,10,7,0.0 +23434,29,123.79,43,0.0 +23434,47,9.5,34,0.0 +23434,1,18,26,0.0 +23434,38,263.5,2,0.0 +23434,10,31,19,0.0 +23434,44,19.45,33,0.0 +23434,23,9,15,0.0 +23434,37,26,43,0.0 +23434,27,43.9,34,0.0 +23434,40,18.4,37,0.0 +23434,58,13.25,32,0.0 +23434,24,4.5,27,0.0 +23434,60,34,35,0.0 +23434,43,46,4,0.0 +23434,46,12,36,0.0 +23434,16,17.45,26,0.0 +23434,75,7.75,19,0.0 +23434,26,31.23,2,0.0 +23434,28,45.6,18,0.0 +23434,72,34.8,5,0.0 +23434,33,2.5,17,0.0 +23435,47,9.5,44,0.0 +23435,27,43.9,48,0.0 +23435,5,21.35,21,0.0 +23435,10,31,48,0.0 +23435,33,2.5,34,0.0 +23435,7,30,40,0.0 +23435,48,12.75,50,0.0 +23435,76,18,12,0.0 +23435,36,19,5,0.0 +23435,54,7.45,20,0.0 +23435,18,62.5,27,0.0 +23435,52,7,43,0.0 +23435,6,25,9,0.0 +23435,31,12.5,22,0.0 +23435,26,31.23,31,0.0 +23435,59,55,29,0.0 +23435,8,40,21,0.0 +23435,30,25.89,50,0.0 +23435,72,34.8,34,0.0 +23435,55,24,8,0.0 +23435,2,19,4,0.0 +23435,49,20,15,0.0 +23435,71,21.5,39,0.0 +23435,23,9,48,0.0 +23435,45,9.5,31,0.0 +23435,20,81,34,0.0 +23435,58,13.25,3,0.0 +23435,77,13,22,0.0 +23435,12,38,28,0.0 +23435,29,123.79,38,0.0 +23435,14,23.25,46,0.0 +23435,35,18,35,0.0 +23435,44,19.45,23,0.0 +23435,70,15,4,0.0 +23435,74,10,21,0.0 +23435,60,34,21,0.0 +23435,25,14,45,0.0 +23435,68,12.5,30,0.0 +23435,4,22,39,0.0 +23435,62,49.3,50,0.0 +23435,3,10,35,0.0 +23435,56,38,39,0.0 +23435,1,18,47,0.0 +23435,64,33.25,44,0.0 +23435,42,14,3,0.0 +23435,40,18.4,23,0.0 +23435,19,9.2,27,0.0 +23435,24,4.5,23,0.0 +23435,73,15,15,0.0 +23435,21,10,47,0.0 +23435,75,7.75,8,0.0 +23435,50,16.25,16,0.0 +23435,28,45.6,39,0.0 +23435,51,53,27,0.0 +23435,17,39,13,0.0 +23435,11,21,11,0.0 +23435,34,14,44,0.0 +23435,53,32.8,22,0.0 +23435,65,21.05,40,0.0 +23435,37,26,23,0.0 +23435,13,6,11,0.0 +23435,9,97,50,0.0 +23435,15,15.5,36,0.0 +23435,66,17,19,0.0 +23435,16,17.45,6,0.0 +23435,22,21,21,0.0 +23435,69,36,17,0.0 +23435,38,263.5,40,0.0 +23435,46,12,15,0.0 +23435,67,14,43,0.0 +23435,41,9.65,12,0.0 +23435,61,28.5,22,0.0 +23435,32,32,38,0.0 +23436,25,14,9,0.0 +23436,68,12.5,3,0.0 +23436,43,46,39,0.0 +23436,39,18,15,0.0 +23436,73,15,29,0.0 +23436,70,15,13,0.0 +23436,12,38,41,0.0 +23436,69,36,50,0.0 +23436,54,7.45,11,0.0 +23436,1,18,22,0.0 +23436,3,10,2,0.0 +23436,7,30,45,0.0 +23436,6,25,43,0.0 +23436,59,55,13,0.0 +23436,56,38,49,0.0 +23436,26,31.23,9,0.0 +23436,42,14,26,0.0 +23436,10,31,11,0.0 +23436,29,123.79,11,0.0 +23436,71,21.5,26,0.0 +23436,21,10,47,0.0 +23436,36,19,30,0.0 +23436,44,19.45,18,0.0 +23436,9,97,41,0.0 +23436,37,26,19,0.0 +23436,2,19,49,0.0 +23436,22,21,41,0.0 +23436,38,263.5,10,0.0 +23436,14,23.25,41,0.0 +23436,64,33.25,47,0.0 +23436,31,12.5,6,0.0 +23436,19,9.2,4,0.0 +23436,52,7,41,0.0 +23436,28,45.6,47,0.0 +23436,40,18.4,31,0.0 +23436,63,43.9,39,0.0 +23436,23,9,38,0.0 +23436,53,32.8,30,0.0 +23436,13,6,44,0.0 +23436,75,7.75,28,0.0 +23436,5,21.35,43,0.0 +23436,18,62.5,30,0.0 +23436,11,21,7,0.0 +23436,15,15.5,29,0.0 +23436,35,18,3,0.0 +23436,76,18,20,0.0 +23436,50,16.25,10,0.0 +23436,4,22,40,0.0 +23436,58,13.25,2,0.0 +23436,24,4.5,2,0.0 +23436,72,34.8,44,0.0 +23436,60,34,50,0.0 +23436,66,17,5,0.0 +23436,77,13,23,0.0 +23436,67,14,50,0.0 +23436,33,2.5,14,0.0 +23436,48,12.75,34,0.0 +23436,16,17.45,32,0.0 +23436,20,81,37,0.0 +23436,27,43.9,3,0.0 +23436,62,49.3,49,0.0 +23436,45,9.5,10,0.0 +23436,61,28.5,26,0.0 +23436,34,14,37,0.0 +23436,47,9.5,45,0.0 +23437,35,18,35,0.0 +23437,52,7,13,0.0 +23437,74,10,30,0.0 +23437,9,97,27,0.0 +23437,48,12.75,42,0.0 +23437,26,31.23,14,0.0 +23437,4,22,28,0.0 +23437,2,19,38,0.0 +23437,46,12,27,0.0 +23437,72,34.8,35,0.0 +23437,32,32,21,0.0 +23437,29,123.79,34,0.0 +23437,73,15,4,0.0 +23437,13,6,26,0.0 +23437,11,21,20,0.0 +23437,31,12.5,27,0.0 +23437,23,9,50,0.0 +23437,58,13.25,19,0.0 +23437,75,7.75,44,0.0 +23437,7,30,33,0.0 +23437,44,19.45,16,0.0 +23437,63,43.9,26,0.0 +23437,54,7.45,38,0.0 +23437,21,10,35,0.0 +23437,25,14,9,0.0 +23437,59,55,47,0.0 +23437,55,24,9,0.0 +23437,45,9.5,11,0.0 +23437,51,53,19,0.0 +23437,20,81,4,0.0 +23437,50,16.25,25,0.0 +23437,28,45.6,28,0.0 +23437,66,17,4,0.0 +23437,10,31,23,0.0 +23437,27,43.9,32,0.0 +23437,62,49.3,37,0.0 +23437,1,18,7,0.0 +23437,3,10,1,0.0 +23437,6,25,19,0.0 +23437,64,33.25,19,0.0 +23437,22,21,33,0.0 +23437,19,9.2,12,0.0 +23437,34,14,47,0.0 +23437,18,62.5,26,0.0 +23437,76,18,30,0.0 +23437,61,28.5,25,0.0 +23437,42,14,17,0.0 +23437,24,4.5,49,0.0 +23437,38,263.5,13,0.0 +23437,8,40,21,0.0 +23437,69,36,5,0.0 +23437,36,19,35,0.0 +23437,53,32.8,44,0.0 +23437,33,2.5,29,0.0 +23437,16,17.45,36,0.0 +23437,37,26,12,0.0 +23437,68,12.5,11,0.0 +23437,40,18.4,49,0.0 +23437,12,38,49,0.0 +23437,71,21.5,19,0.0 +23437,39,18,13,0.0 +23437,43,46,47,0.0 +23437,41,9.65,28,0.0 +23437,14,23.25,23,0.0 +23437,67,14,48,0.0 +23437,47,9.5,7,0.0 +23437,49,20,3,0.0 +23437,57,19.5,47,0.0 +23437,56,38,50,0.0 +23437,70,15,19,0.0 +23437,65,21.05,37,0.0 +23437,30,25.89,28,0.0 +23437,60,34,33,0.0 +23437,77,13,6,0.0 +23437,17,39,27,0.0 +23438,24,4.5,10,0.0 +23438,61,28.5,28,0.0 +23438,62,49.3,13,0.0 +23438,20,81,16,0.0 +23438,7,30,43,0.0 +23439,71,21.5,6,0.0 +23439,55,24,26,0.0 +23439,40,18.4,38,0.0 +23439,6,25,21,0.0 +23439,73,15,1,0.0 +23439,63,43.9,15,0.0 +23439,62,49.3,24,0.0 +23439,2,19,33,0.0 +23439,56,38,6,0.0 +23439,14,23.25,39,0.0 +23439,66,17,4,0.0 +23439,12,38,48,0.0 +23439,58,13.25,29,0.0 +23439,72,34.8,13,0.0 +23439,65,21.05,15,0.0 +23439,77,13,16,0.0 +23439,69,36,48,0.0 +23439,43,46,11,0.0 +23439,17,39,36,0.0 +23439,67,14,32,0.0 +23439,28,45.6,2,0.0 +23439,45,9.5,21,0.0 +23439,15,15.5,44,0.0 +23439,7,30,32,0.0 +23439,30,25.89,1,0.0 +23439,36,19,50,0.0 +23439,23,9,23,0.0 +23439,60,34,2,0.0 +23439,76,18,19,0.0 +23439,39,18,17,0.0 +23439,37,26,39,0.0 +23439,29,123.79,47,0.0 +23439,25,14,14,0.0 +23440,13,6,6,0.0 +23440,64,33.25,27,0.0 +23440,43,46,38,0.0 +23440,52,7,7,0.0 +23440,59,55,4,0.0 +23440,4,22,31,0.0 +23440,76,18,23,0.0 +23440,55,24,49,0.0 +23440,69,36,48,0.0 +23440,66,17,41,0.0 +23440,7,30,41,0.0 +23440,23,9,50,0.0 +23440,37,26,13,0.0 +23440,12,38,31,0.0 +23440,36,19,18,0.0 +23440,72,34.8,35,0.0 +23440,2,19,24,0.0 +23440,30,25.89,8,0.0 +23440,1,18,43,0.0 +23440,71,21.5,8,0.0 +23440,58,13.25,49,0.0 +23440,62,49.3,28,0.0 +23440,22,21,28,0.0 +23440,46,12,46,0.0 +23440,53,32.8,23,0.0 +23440,25,14,33,0.0 +23440,6,25,8,0.0 +23440,10,31,34,0.0 +23440,67,14,1,0.0 +23440,26,31.23,30,0.0 +23440,33,2.5,24,0.0 +23440,38,263.5,19,0.0 +23440,8,40,2,0.0 +23440,14,23.25,28,0.0 +23440,21,10,24,0.0 +23440,48,12.75,8,0.0 +23440,18,62.5,6,0.0 +23440,40,18.4,43,0.0 +23440,31,12.5,5,0.0 +23440,51,53,45,0.0 +23440,29,123.79,45,0.0 +23440,60,34,37,0.0 +23440,77,13,36,0.0 +23440,15,15.5,27,0.0 +23440,54,7.45,44,0.0 +23440,27,43.9,12,0.0 +23440,45,9.5,16,0.0 +23440,20,81,14,0.0 +23440,63,43.9,14,0.0 +23440,35,18,19,0.0 +23440,73,15,10,0.0 +23440,32,32,48,0.0 +23440,70,15,46,0.0 +23440,3,10,44,0.0 +23440,44,19.45,35,0.0 +23440,41,9.65,43,0.0 +23440,56,38,38,0.0 +23440,61,28.5,25,0.0 +23440,75,7.75,28,0.0 +23440,9,97,19,0.0 +23440,50,16.25,26,0.0 +23440,49,20,33,0.0 +23440,57,19.5,5,0.0 +23440,19,9.2,45,0.0 +23440,34,14,6,0.0 +23440,68,12.5,24,0.0 +23440,11,21,5,0.0 +23440,5,21.35,25,0.0 +23440,17,39,48,0.0 +23440,74,10,42,0.0 +23440,16,17.45,9,0.0 +23440,42,14,4,0.0 +23440,28,45.6,5,0.0 +23441,42,14,12,0.0 +23441,70,15,33,0.0 +23441,27,43.9,23,0.0 +23441,47,9.5,12,0.0 +23441,6,25,41,0.0 +23441,14,23.25,34,0.0 +23441,36,19,7,0.0 +23441,12,38,23,0.0 +23441,17,39,38,0.0 +23441,67,14,21,0.0 +23441,69,36,15,0.0 +23441,46,12,21,0.0 +23441,31,12.5,43,0.0 +23441,57,19.5,23,0.0 +23441,19,9.2,29,0.0 +23441,77,13,16,0.0 +23441,33,2.5,50,0.0 +23441,62,49.3,10,0.0 +23441,44,19.45,50,0.0 +23441,54,7.45,17,0.0 +23441,4,22,12,0.0 +23441,75,7.75,28,0.0 +23441,22,21,31,0.0 +23441,3,10,30,0.0 +23441,5,21.35,7,0.0 +23441,41,9.65,9,0.0 +23441,76,18,16,0.0 +23441,73,15,45,0.0 +23441,18,62.5,25,0.0 +23441,7,30,45,0.0 +23441,35,18,49,0.0 +23441,52,7,19,0.0 +23442,34,14,34,0.0 +23442,29,123.79,40,0.0 +23442,27,43.9,44,0.0 +23442,16,17.45,14,0.0 +23442,71,21.5,41,0.0 +23442,14,23.25,32,0.0 +23442,32,32,12,0.0 +23442,7,30,48,0.0 +23442,53,32.8,50,0.0 +23442,47,9.5,10,0.0 +23442,66,17,1,0.0 +23442,31,12.5,40,0.0 +23442,67,14,11,0.0 +23442,65,21.05,35,0.0 +23442,19,9.2,40,0.0 +23442,59,55,23,0.0 +23442,41,9.65,23,0.0 +23442,48,12.75,43,0.0 +23442,13,6,45,0.0 +23442,11,21,14,0.0 +23442,55,24,49,0.0 +23442,21,10,40,0.0 +23442,18,62.5,27,0.0 +23442,35,18,19,0.0 +23442,61,28.5,11,0.0 +23442,17,39,44,0.0 +23442,26,31.23,6,0.0 +23442,49,20,15,0.0 +23442,4,22,18,0.0 +23442,36,19,22,0.0 +23442,1,18,10,0.0 +23442,76,18,20,0.0 +23442,5,21.35,42,0.0 +23442,37,26,18,0.0 +23442,51,53,49,0.0 +23442,42,14,1,0.0 +23442,6,25,25,0.0 +23442,45,9.5,45,0.0 +23442,62,49.3,48,0.0 +23442,38,263.5,24,0.0 +23442,25,14,29,0.0 +23442,28,45.6,39,0.0 +23442,10,31,46,0.0 +23442,46,12,3,0.0 +23442,43,46,47,0.0 +23442,20,81,34,0.0 +23442,60,34,32,0.0 +23442,52,7,44,0.0 +23442,23,9,24,0.0 +23442,72,34.8,13,0.0 +23442,54,7.45,20,0.0 +23442,57,19.5,28,0.0 +23442,68,12.5,48,0.0 +23442,33,2.5,42,0.0 +23442,22,21,6,0.0 +23442,8,40,37,0.0 +23442,39,18,48,0.0 +23442,9,97,46,0.0 +23442,69,36,44,0.0 +23442,44,19.45,44,0.0 +23442,64,33.25,9,0.0 +23442,63,43.9,1,0.0 +23442,70,15,14,0.0 +23442,77,13,44,0.0 +23442,3,10,10,0.0 +23442,24,4.5,24,0.0 +23442,2,19,8,0.0 +23442,56,38,42,0.0 +23442,58,13.25,8,0.0 +23442,40,18.4,25,0.0 +23443,57,19.5,12,0.0 +23443,23,9,16,0.0 +23443,69,36,39,0.0 +23443,47,9.5,4,0.0 +23443,53,32.8,19,0.0 +23443,3,10,12,0.0 +23443,55,24,22,0.0 +23443,9,97,29,0.0 +23443,56,38,34,0.0 +23443,49,20,42,0.0 +23443,25,14,15,0.0 +23443,4,22,11,0.0 +23443,7,30,44,0.0 +23443,6,25,41,0.0 +23443,5,21.35,45,0.0 +23443,30,25.89,50,0.0 +23443,48,12.75,10,0.0 +23443,54,7.45,4,0.0 +23443,73,15,17,0.0 +23443,62,49.3,49,0.0 +23443,68,12.5,13,0.0 +23443,24,4.5,18,0.0 +23443,65,21.05,15,0.0 +23443,35,18,27,0.0 +23443,12,38,38,0.0 +23443,75,7.75,35,0.0 +23443,58,13.25,45,0.0 +23443,41,9.65,4,0.0 +23444,22,21,12,0.0 +23444,66,17,50,0.0 +23444,28,45.6,42,0.0 +23444,24,4.5,4,0.0 +23444,19,9.2,12,0.0 +23444,71,21.5,10,0.0 +23444,3,10,19,0.0 +23444,65,21.05,49,0.0 +23444,56,38,49,0.0 +23444,57,19.5,26,0.0 +23444,50,16.25,43,0.0 +23444,61,28.5,17,0.0 +23444,69,36,41,0.0 +23444,6,25,13,0.0 +23444,27,43.9,15,0.0 +23444,53,32.8,35,0.0 +23444,8,40,23,0.0 +23444,25,14,16,0.0 +23444,70,15,17,0.0 +23444,67,14,33,0.0 +23444,62,49.3,11,0.0 +23444,2,19,32,0.0 +23444,72,34.8,36,0.0 +23444,35,18,39,0.0 +23444,18,62.5,2,0.0 +23444,44,19.45,36,0.0 +23444,64,33.25,10,0.0 +23444,38,263.5,31,0.0 +23444,16,17.45,36,0.0 +23444,77,13,6,0.0 +23444,7,30,39,0.0 +23444,4,22,30,0.0 +23444,55,24,32,0.0 +23444,37,26,46,0.0 +23444,23,9,18,0.0 +23444,68,12.5,30,0.0 +23444,32,32,25,0.0 +23444,13,6,39,0.0 +23444,76,18,15,0.0 +23444,45,9.5,49,0.0 +23444,31,12.5,28,0.0 +23444,58,13.25,9,0.0 +23444,43,46,28,0.0 +23444,17,39,15,0.0 +23444,73,15,19,0.0 +23444,63,43.9,10,0.0 +23444,40,18.4,19,0.0 +23444,74,10,4,0.0 +23444,30,25.89,34,0.0 +23444,51,53,3,0.0 +23444,12,38,47,0.0 +23444,9,97,4,0.0 +23444,1,18,22,0.0 +23444,33,2.5,50,0.0 +23444,42,14,10,0.0 +23444,59,55,21,0.0 +23444,39,18,20,0.0 +23444,36,19,14,0.0 +23444,60,34,8,0.0 +23444,14,23.25,21,0.0 +23444,26,31.23,15,0.0 +23444,20,81,39,0.0 +23444,29,123.79,15,0.0 +23444,15,15.5,35,0.0 +23444,5,21.35,36,0.0 +23444,11,21,43,0.0 +23444,47,9.5,32,0.0 +23444,54,7.45,30,0.0 +23444,46,12,34,0.0 +23444,10,31,25,0.0 +23444,49,20,47,0.0 +23444,34,14,33,0.0 +23444,21,10,28,0.0 +23444,41,9.65,21,0.0 +23445,12,38,3,0.0 +23445,5,21.35,38,0.0 +23445,7,30,50,0.0 +23445,70,15,13,0.0 +23445,23,9,21,0.0 +23445,41,9.65,31,0.0 +23445,50,16.25,8,0.0 +23445,21,10,42,0.0 +23445,60,34,49,0.0 +23445,16,17.45,4,0.0 +23445,34,14,39,0.0 +23445,28,45.6,5,0.0 +23445,46,12,37,0.0 +23445,14,23.25,25,0.0 +23445,22,21,40,0.0 +23445,71,21.5,2,0.0 +23445,15,15.5,42,0.0 +23445,64,33.25,37,0.0 +23445,20,81,28,0.0 +23445,55,24,24,0.0 +23445,58,13.25,42,0.0 +23445,37,26,42,0.0 +23445,75,7.75,7,0.0 +23445,44,19.45,9,0.0 +23445,63,43.9,1,0.0 +23445,49,20,15,0.0 +23445,27,43.9,15,0.0 +23445,2,19,44,0.0 +23445,43,46,39,0.0 +23445,48,12.75,50,0.0 +23445,29,123.79,9,0.0 +23445,69,36,21,0.0 +23445,40,18.4,15,0.0 +23445,9,97,17,0.0 +23446,16,17.45,25,0.0 +23446,6,25,24,0.0 +23446,15,15.5,35,0.0 +23446,69,36,20,0.0 +23446,30,25.89,40,0.0 +23446,8,40,22,0.0 +23446,44,19.45,15,0.0 +23446,22,21,35,0.0 +23446,21,10,41,0.0 +23446,14,23.25,5,0.0 +23446,75,7.75,26,0.0 +23446,37,26,42,0.0 +23446,59,55,26,0.0 +23446,67,14,35,0.0 +23446,49,20,43,0.0 +23446,27,43.9,27,0.0 +23446,5,21.35,17,0.0 +23446,71,21.5,14,0.0 +23446,63,43.9,50,0.0 +23446,10,31,4,0.0 +23446,50,16.25,47,0.0 +23446,58,13.25,28,0.0 +23446,38,263.5,5,0.0 +23446,39,18,26,0.0 +23446,47,9.5,46,0.0 +23446,35,18,47,0.0 +23446,57,19.5,48,0.0 +23446,55,24,7,0.0 +23446,31,12.5,34,0.0 +23446,56,38,31,0.0 +23446,9,97,6,0.0 +23446,7,30,1,0.0 +23446,43,46,45,0.0 +23446,48,12.75,19,0.0 +23446,40,18.4,17,0.0 +23446,28,45.6,50,0.0 +23446,54,7.45,24,0.0 +23446,72,34.8,3,0.0 +23446,74,10,21,0.0 +23446,26,31.23,20,0.0 +23446,41,9.65,50,0.0 +23446,52,7,38,0.0 +23446,29,123.79,14,0.0 +23446,4,22,41,0.0 +23446,18,62.5,1,0.0 +23446,73,15,22,0.0 +23446,46,12,21,0.0 +23446,65,21.05,11,0.0 +23446,68,12.5,1,0.0 +23446,12,38,38,0.0 +23446,17,39,3,0.0 +23446,13,6,6,0.0 +23446,19,9.2,19,0.0 +23446,45,9.5,44,0.0 +23446,51,53,8,0.0 +23446,70,15,49,0.0 +23446,33,2.5,39,0.0 +23447,36,19,47,0.0 +23447,63,43.9,2,0.0 +23447,5,21.35,25,0.0 +23447,57,19.5,49,0.0 +23447,73,15,43,0.0 +23447,30,25.89,20,0.0 +23447,58,13.25,2,0.0 +23447,77,13,39,0.0 +23447,38,263.5,48,0.0 +23447,66,17,26,0.0 +23447,6,25,17,0.0 +23447,17,39,39,0.0 +23447,52,7,1,0.0 +23447,11,21,5,0.0 +23447,14,23.25,16,0.0 +23447,31,12.5,4,0.0 +23447,74,10,20,0.0 +23447,43,46,3,0.0 +23447,69,36,20,0.0 +23447,8,40,16,0.0 +23447,39,18,15,0.0 +23447,23,9,12,0.0 +23447,54,7.45,16,0.0 +23447,4,22,49,0.0 +23447,12,38,47,0.0 +23447,42,14,5,0.0 +23447,25,14,11,0.0 +23447,72,34.8,41,0.0 +23447,64,33.25,13,0.0 +23447,59,55,39,0.0 +23447,16,17.45,8,0.0 +23447,28,45.6,18,0.0 +23447,56,38,7,0.0 +23447,32,32,19,0.0 +23447,33,2.5,7,0.0 +23447,70,15,27,0.0 +23447,2,19,36,0.0 +23447,61,28.5,39,0.0 +23448,16,17.45,11,0.0 +23448,42,14,11,0.0 +23448,21,10,7,0.0 +23448,64,33.25,30,0.0 +23448,25,14,12,0.0 +23448,69,36,47,0.0 +23448,65,21.05,33,0.0 +23448,2,19,11,0.0 +23448,39,18,28,0.0 +23448,36,19,46,0.0 +23448,48,12.75,42,0.0 +23448,30,25.89,13,0.0 +23448,27,43.9,38,0.0 +23448,31,12.5,44,0.0 +23448,11,21,39,0.0 +23448,76,18,34,0.0 +23448,71,21.5,40,0.0 +23448,54,7.45,42,0.0 +23448,75,7.75,39,0.0 +23448,3,10,17,0.0 +23448,60,34,16,0.0 +23448,38,263.5,14,0.0 +23448,23,9,43,0.0 +23448,12,38,19,0.0 +23448,10,31,49,0.0 +23448,45,9.5,16,0.0 +23448,68,12.5,24,0.0 +23448,61,28.5,18,0.0 +23448,9,97,22,0.0 +23448,49,20,25,0.0 +23448,74,10,38,0.0 +23448,53,32.8,43,0.0 +23448,13,6,25,0.0 +23448,63,43.9,31,0.0 +23448,51,53,17,0.0 +23448,59,55,2,0.0 +23448,6,25,1,0.0 +23448,1,18,10,0.0 +23448,7,30,36,0.0 +23448,55,24,22,0.0 +23448,67,14,32,0.0 +23448,14,23.25,34,0.0 +23448,29,123.79,11,0.0 +23448,66,17,26,0.0 +23448,58,13.25,2,0.0 +23448,56,38,43,0.0 +23448,43,46,15,0.0 +23448,46,12,46,0.0 +23448,41,9.65,9,0.0 +23448,19,9.2,46,0.0 +23448,73,15,43,0.0 +23448,40,18.4,21,0.0 +23448,24,4.5,21,0.0 +23448,20,81,34,0.0 +23448,70,15,24,0.0 +23448,34,14,43,0.0 +23448,57,19.5,49,0.0 +23448,50,16.25,22,0.0 +23448,62,49.3,36,0.0 +23448,37,26,22,0.0 +23448,44,19.45,8,0.0 +23448,72,34.8,9,0.0 +23448,77,13,6,0.0 +23448,17,39,47,0.0 +23448,32,32,40,0.0 +23448,15,15.5,39,0.0 +23448,22,21,24,0.0 +23448,5,21.35,3,0.0 +23448,26,31.23,16,0.0 +23448,4,22,13,0.0 +23448,8,40,41,0.0 +23448,47,9.5,10,0.0 +23448,28,45.6,32,0.0 +23448,35,18,5,0.0 +23448,18,62.5,49,0.0 +23449,61,28.5,44,0.0 +23449,74,10,38,0.0 +23449,12,38,41,0.0 +23449,17,39,3,0.0 +23449,15,15.5,47,0.0 +23449,34,14,13,0.0 +23449,31,12.5,24,0.0 +23449,67,14,32,0.0 +23449,23,9,17,0.0 +23449,19,9.2,35,0.0 +23449,75,7.75,32,0.0 +23449,30,25.89,37,0.0 +23449,7,30,49,0.0 +23449,54,7.45,2,0.0 +23449,58,13.25,24,0.0 +23449,28,45.6,38,0.0 +23450,76,18,5,0.0 +23450,55,24,25,0.0 +23450,5,21.35,27,0.0 +23450,66,17,32,0.0 +23450,30,25.89,2,0.0 +23450,70,15,39,0.0 +23450,77,13,42,0.0 +23450,2,19,31,0.0 +23450,21,10,47,0.0 +23450,13,6,31,0.0 +23450,65,21.05,34,0.0 +23450,19,9.2,10,0.0 +23450,46,12,29,0.0 +23450,68,12.5,19,0.0 +23450,27,43.9,46,0.0 +23450,29,123.79,38,0.0 +23450,72,34.8,47,0.0 +23450,32,32,37,0.0 +23450,11,21,31,0.0 +23450,56,38,15,0.0 +23450,15,15.5,19,0.0 +23450,40,18.4,47,0.0 +23450,53,32.8,21,0.0 +23450,36,19,31,0.0 +23450,52,7,32,0.0 +23450,42,14,20,0.0 +23450,44,19.45,11,0.0 +23450,18,62.5,2,0.0 +23450,49,20,32,0.0 +23450,48,12.75,38,0.0 +23450,35,18,16,0.0 +23450,4,22,32,0.0 +23450,17,39,39,0.0 +23450,58,13.25,36,0.0 +23450,64,33.25,19,0.0 +23450,43,46,8,0.0 +23450,8,40,10,0.0 +23450,26,31.23,1,0.0 +23450,38,263.5,48,0.0 +23450,22,21,30,0.0 +23450,51,53,32,0.0 +23450,12,38,39,0.0 +23450,10,31,18,0.0 +23450,69,36,24,0.0 +23450,60,34,22,0.0 +23450,61,28.5,38,0.0 +23450,41,9.65,44,0.0 +23450,31,12.5,21,0.0 +23450,50,16.25,6,0.0 +23450,6,25,50,0.0 +23450,25,14,43,0.0 +23450,74,10,30,0.0 +23450,20,81,7,0.0 +23450,24,4.5,2,0.0 +23450,62,49.3,8,0.0 +23450,57,19.5,36,0.0 +23450,39,18,30,0.0 +23450,7,30,6,0.0 +23450,28,45.6,1,0.0 +23450,63,43.9,34,0.0 +23451,8,40,27,0.0 +23451,49,20,24,0.0 +23451,14,23.25,50,0.0 +23451,22,21,47,0.0 +23451,39,18,30,0.0 +23451,18,62.5,22,0.0 +23451,60,34,36,0.0 +23451,45,9.5,42,0.0 +23451,57,19.5,11,0.0 +23451,61,28.5,36,0.0 +23451,36,19,49,0.0 +23451,67,14,26,0.0 +23451,62,49.3,13,0.0 +23451,76,18,43,0.0 +23451,28,45.6,34,0.0 +23451,3,10,17,0.0 +23451,32,32,29,0.0 +23451,33,2.5,11,0.0 +23451,58,13.25,34,0.0 +23451,51,53,5,0.0 +23451,55,24,5,0.0 +23451,4,22,4,0.0 +23451,40,18.4,43,0.0 +23451,16,17.45,38,0.0 +23451,25,14,31,0.0 +23451,27,43.9,27,0.0 +23451,73,15,43,0.0 +23451,13,6,42,0.0 +23451,54,7.45,33,0.0 +23451,15,15.5,50,0.0 +23451,1,18,21,0.0 +23451,77,13,33,0.0 +23451,17,39,12,0.0 +23451,53,32.8,23,0.0 +23451,2,19,42,0.0 +23451,5,21.35,34,0.0 +23451,20,81,19,0.0 +23451,42,14,22,0.0 +23451,9,97,13,0.0 +23451,52,7,29,0.0 +23451,47,9.5,49,0.0 +23451,63,43.9,9,0.0 +23451,37,26,29,0.0 +23451,66,17,23,0.0 +23451,26,31.23,6,0.0 +23451,64,33.25,14,0.0 +23451,7,30,29,0.0 +23451,29,123.79,1,0.0 +23451,75,7.75,17,0.0 +23451,56,38,40,0.0 +23451,30,25.89,22,0.0 +23451,44,19.45,8,0.0 +23452,28,45.6,39,0.0 +23452,49,20,19,0.0 +23452,70,15,17,0.0 +23452,71,21.5,15,0.0 +23452,33,2.5,26,0.0 +23452,60,34,26,0.0 +23452,35,18,18,0.0 +23452,75,7.75,47,0.0 +23452,11,21,47,0.0 +23452,66,17,46,0.0 +23452,40,18.4,17,0.0 +23452,39,18,39,0.0 +23452,34,14,38,0.0 +23452,68,12.5,44,0.0 +23452,53,32.8,24,0.0 +23452,52,7,10,0.0 +23452,38,263.5,7,0.0 +23452,5,21.35,14,0.0 +23452,9,97,37,0.0 +23452,74,10,2,0.0 +23452,63,43.9,42,0.0 +23452,16,17.45,48,0.0 +23452,37,26,13,0.0 +23452,23,9,4,0.0 +23452,30,25.89,25,0.0 +23452,2,19,13,0.0 +23452,51,53,9,0.0 +23452,3,10,14,0.0 +23452,4,22,17,0.0 +23452,47,9.5,43,0.0 +23452,62,49.3,39,0.0 +23452,48,12.75,13,0.0 +23452,21,10,37,0.0 +23452,50,16.25,45,0.0 +23452,12,38,21,0.0 +23452,44,19.45,27,0.0 +23452,57,19.5,28,0.0 +23452,55,24,25,0.0 +23452,27,43.9,12,0.0 +23452,58,13.25,3,0.0 +23452,25,14,12,0.0 +23452,64,33.25,25,0.0 +23452,54,7.45,7,0.0 +23452,13,6,18,0.0 +23452,1,18,30,0.0 +23452,42,14,38,0.0 +23452,22,21,12,0.0 +23452,24,4.5,39,0.0 +23452,61,28.5,36,0.0 +23452,46,12,20,0.0 +23452,10,31,5,0.0 +23452,36,19,2,0.0 +23452,41,9.65,24,0.0 +23452,32,32,21,0.0 +23452,45,9.5,12,0.0 +23452,17,39,39,0.0 +23452,19,9.2,45,0.0 +23452,31,12.5,5,0.0 +23452,29,123.79,38,0.0 +23452,56,38,23,0.0 +23452,59,55,44,0.0 +23452,6,25,10,0.0 +23453,64,33.25,20,0.0 +23453,18,62.5,21,0.0 +23453,7,30,40,0.0 +23453,10,31,20,0.0 +23453,11,21,49,0.0 +23453,9,97,27,0.0 +23453,36,19,17,0.0 +23453,3,10,20,0.0 +23453,29,123.79,32,0.0 +23453,8,40,35,0.0 +23453,53,32.8,28,0.0 +23453,45,9.5,2,0.0 +23453,15,15.5,50,0.0 +23453,26,31.23,38,0.0 +23453,13,6,3,0.0 +23453,14,23.25,1,0.0 +23453,21,10,25,0.0 +23453,38,263.5,50,0.0 +23453,5,21.35,14,0.0 +23454,59,55,32,0.0 +23454,52,7,16,0.0 +23454,61,28.5,40,0.0 +23454,7,30,34,0.0 +23454,55,24,9,0.0 +23454,16,17.45,45,0.0 +23454,76,18,43,0.0 +23454,71,21.5,29,0.0 +23454,33,2.5,44,0.0 +23454,18,62.5,31,0.0 +23454,13,6,29,0.0 +23454,46,12,41,0.0 +23454,14,23.25,47,0.0 +23454,11,21,22,0.0 +23454,6,25,45,0.0 +23454,8,40,19,0.0 +23454,51,53,14,0.0 +23454,64,33.25,43,0.0 +23454,3,10,35,0.0 +23454,57,19.5,31,0.0 +23454,25,14,20,0.0 +23454,48,12.75,46,0.0 +23454,47,9.5,35,0.0 +23454,24,4.5,49,0.0 +23454,36,19,9,0.0 +23454,39,18,46,0.0 +23454,67,14,43,0.0 +23454,5,21.35,39,0.0 +23454,32,32,15,0.0 +23454,37,26,8,0.0 +23454,44,19.45,16,0.0 +23454,40,18.4,40,0.0 +23454,73,15,18,0.0 +23454,35,18,24,0.0 +23454,10,31,9,0.0 +23454,31,12.5,22,0.0 +23454,41,9.65,20,0.0 +23454,4,22,45,0.0 +23454,9,97,13,0.0 +23454,45,9.5,45,0.0 +23454,70,15,38,0.0 +23454,49,20,38,0.0 +23454,28,45.6,14,0.0 +23454,60,34,18,0.0 +23454,30,25.89,23,0.0 +23454,2,19,45,0.0 +23454,12,38,39,0.0 +23454,72,34.8,25,0.0 +23454,17,39,38,0.0 +23454,23,9,19,0.0 +23454,65,21.05,29,0.0 +23454,69,36,9,0.0 +23454,22,21,28,0.0 +23454,38,263.5,30,0.0 +23454,68,12.5,41,0.0 +23454,27,43.9,28,0.0 +23454,26,31.23,4,0.0 +23454,75,7.75,39,0.0 +23454,77,13,28,0.0 +23454,74,10,49,0.0 +23455,67,14,4,0.0 +23455,28,45.6,10,0.0 +23455,76,18,27,0.0 +23455,60,34,26,0.0 +23455,15,15.5,33,0.0 +23455,6,25,20,0.0 +23455,13,6,49,0.0 +23455,45,9.5,21,0.0 +23455,25,14,48,0.0 +23455,23,9,11,0.0 +23455,73,15,33,0.0 +23455,46,12,49,0.0 +23455,1,18,46,0.0 +23455,40,18.4,41,0.0 +23455,36,19,50,0.0 +23455,24,4.5,5,0.0 +23455,70,15,41,0.0 +23455,32,32,18,0.0 +23455,69,36,35,0.0 +23455,77,13,22,0.0 +23455,5,21.35,27,0.0 +23455,11,21,38,0.0 +23455,17,39,47,0.0 +23455,43,46,44,0.0 +23455,57,19.5,42,0.0 +23455,14,23.25,28,0.0 +23455,22,21,27,0.0 +23455,51,53,9,0.0 +23455,41,9.65,10,0.0 +23455,63,43.9,21,0.0 +23455,19,9.2,44,0.0 +23455,39,18,32,0.0 +23455,42,14,17,0.0 +23455,16,17.45,23,0.0 +23455,52,7,50,0.0 +23455,48,12.75,11,0.0 +23455,21,10,39,0.0 +23455,47,9.5,49,0.0 +23455,30,25.89,24,0.0 +23455,7,30,28,0.0 +23455,53,32.8,7,0.0 +23455,62,49.3,6,0.0 +23455,56,38,5,0.0 +23455,10,31,2,0.0 +23455,49,20,30,0.0 +23455,71,21.5,28,0.0 +23455,31,12.5,18,0.0 +23456,24,4.5,50,0.0 +23456,4,22,12,0.0 +23456,6,25,28,0.0 +23456,62,49.3,47,0.0 +23456,33,2.5,2,0.0 +23456,19,9.2,12,0.0 +23456,69,36,1,0.0 +23456,14,23.25,34,0.0 +23456,26,31.23,44,0.0 +23456,63,43.9,47,0.0 +23456,40,18.4,38,0.0 +23456,54,7.45,35,0.0 +23456,67,14,14,0.0 +23456,11,21,25,0.0 +23456,70,15,6,0.0 +23456,23,9,27,0.0 +23456,16,17.45,21,0.0 +23456,77,13,12,0.0 +23456,12,38,17,0.0 +23456,76,18,12,0.0 +23456,1,18,43,0.0 +23456,61,28.5,23,0.0 +23456,29,123.79,32,0.0 +23456,21,10,7,0.0 +23456,59,55,38,0.0 +23456,65,21.05,38,0.0 +23456,55,24,14,0.0 +23456,8,40,11,0.0 +23456,5,21.35,3,0.0 +23456,39,18,20,0.0 +23456,45,9.5,20,0.0 +23456,68,12.5,14,0.0 +23456,42,14,22,0.0 +23456,46,12,27,0.0 +23456,58,13.25,3,0.0 +23456,37,26,29,0.0 +23456,34,14,4,0.0 +23456,47,9.5,43,0.0 +23456,64,33.25,45,0.0 +23456,18,62.5,36,0.0 +23456,3,10,22,0.0 +23456,25,14,6,0.0 +23456,50,16.25,8,0.0 +23456,56,38,27,0.0 +23456,7,30,35,0.0 +23456,72,34.8,41,0.0 +23456,15,15.5,50,0.0 +23456,35,18,13,0.0 +23456,31,12.5,40,0.0 +23456,71,21.5,50,0.0 +23456,30,25.89,48,0.0 +23456,41,9.65,41,0.0 +23456,75,7.75,28,0.0 +23456,2,19,23,0.0 +23456,27,43.9,5,0.0 +23456,74,10,32,0.0 +23456,43,46,34,0.0 +23456,13,6,14,0.0 +23457,60,34,32,0.0 +23457,19,9.2,41,0.0 +23457,37,26,46,0.0 +23457,63,43.9,49,0.0 +23457,75,7.75,8,0.0 +23457,15,15.5,31,0.0 +23457,8,40,32,0.0 +23457,20,81,32,0.0 +23457,3,10,24,0.0 +23457,54,7.45,45,0.0 +23457,41,9.65,20,0.0 +23457,10,31,42,0.0 +23457,62,49.3,2,0.0 +23457,53,32.8,11,0.0 +23457,50,16.25,2,0.0 +23457,65,21.05,41,0.0 +23457,56,38,20,0.0 +23457,57,19.5,44,0.0 +23457,51,53,6,0.0 +23457,23,9,26,0.0 +23457,67,14,48,0.0 +23457,52,7,32,0.0 +23457,47,9.5,13,0.0 +23457,32,32,45,0.0 +23457,7,30,33,0.0 +23457,29,123.79,23,0.0 +23457,6,25,8,0.0 +23457,13,6,8,0.0 +23457,28,45.6,21,0.0 +23457,35,18,5,0.0 +23457,2,19,14,0.0 +23457,58,13.25,12,0.0 +23457,25,14,37,0.0 +23457,42,14,39,0.0 +23457,9,97,22,0.0 +23457,24,4.5,19,0.0 +23457,74,10,50,0.0 +23457,5,21.35,22,0.0 +23457,71,21.5,43,0.0 +23457,49,20,36,0.0 +23457,45,9.5,11,0.0 +23457,31,12.5,50,0.0 +23457,14,23.25,32,0.0 +23457,61,28.5,46,0.0 +23457,70,15,33,0.0 +23457,48,12.75,33,0.0 +23457,46,12,44,0.0 +23457,27,43.9,18,0.0 +23457,39,18,8,0.0 +23457,68,12.5,46,0.0 +23457,59,55,44,0.0 +23457,1,18,44,0.0 +23457,21,10,16,0.0 +23457,18,62.5,16,0.0 +23457,43,46,34,0.0 +23457,55,24,45,0.0 +23457,69,36,44,0.0 +23457,73,15,19,0.0 +23457,26,31.23,8,0.0 +23457,76,18,32,0.0 +23457,44,19.45,20,0.0 +23457,12,38,43,0.0 +23457,40,18.4,14,0.0 +23457,64,33.25,9,0.0 +23457,36,19,29,0.0 +23458,70,15,35,0.0 +23458,16,17.45,20,0.0 +23458,59,55,10,0.0 +23458,77,13,16,0.0 +23459,29,123.79,1,0.0 +23459,28,45.6,43,0.0 +23459,24,4.5,16,0.0 +23459,73,15,26,0.0 +23459,45,9.5,34,0.0 +23459,36,19,23,0.0 +23459,32,32,11,0.0 +23459,9,97,28,0.0 +23459,37,26,47,0.0 +23459,63,43.9,14,0.0 +23459,18,62.5,8,0.0 +23459,21,10,4,0.0 +23459,64,33.25,28,0.0 +23459,74,10,2,0.0 +23459,44,19.45,28,0.0 +23459,58,13.25,9,0.0 +23459,33,2.5,35,0.0 +23459,15,15.5,10,0.0 +23459,2,19,39,0.0 +23459,12,38,42,0.0 +23459,53,32.8,31,0.0 +23459,70,15,19,0.0 +23459,61,28.5,43,0.0 +23459,69,36,7,0.0 +23459,6,25,10,0.0 +23459,71,21.5,1,0.0 +23459,49,20,22,0.0 +23459,77,13,14,0.0 +23459,67,14,44,0.0 +23459,5,21.35,49,0.0 +23459,10,31,36,0.0 +23459,25,14,18,0.0 +23459,38,263.5,34,0.0 +23459,1,18,18,0.0 +23459,75,7.75,10,0.0 +23459,22,21,47,0.0 +23459,4,22,27,0.0 +23459,76,18,17,0.0 +23459,35,18,31,0.0 +23459,66,17,44,0.0 +23459,40,18.4,36,0.0 +23459,3,10,21,0.0 +23459,50,16.25,16,0.0 +23459,19,9.2,30,0.0 +23459,8,40,42,0.0 +23459,62,49.3,18,0.0 +23459,51,53,30,0.0 +23459,54,7.45,4,0.0 +23459,57,19.5,28,0.0 +23459,72,34.8,2,0.0 +23459,16,17.45,10,0.0 +23459,42,14,16,0.0 +23459,47,9.5,49,0.0 +23459,43,46,38,0.0 +23459,7,30,36,0.0 +23459,20,81,8,0.0 +23459,17,39,16,0.0 +23459,60,34,18,0.0 +23459,26,31.23,23,0.0 +23459,13,6,15,0.0 +23459,46,12,32,0.0 +23460,26,31.23,50,0.0 +23460,4,22,9,0.0 +23460,66,17,37,0.0 +23460,11,21,21,0.0 +23460,49,20,33,0.0 +23460,62,49.3,21,0.0 +23460,28,45.6,20,0.0 +23460,20,81,44,0.0 +23460,16,17.45,19,0.0 +23460,53,32.8,46,0.0 +23460,71,21.5,31,0.0 +23460,22,21,27,0.0 +23460,35,18,36,0.0 +23460,21,10,38,0.0 +23460,56,38,1,0.0 +23460,59,55,42,0.0 +23460,32,32,39,0.0 +23460,6,25,8,0.0 +23460,77,13,15,0.0 +23460,52,7,5,0.0 +23460,13,6,45,0.0 +23460,9,97,37,0.0 +23460,14,23.25,1,0.0 +23460,7,30,2,0.0 +23460,75,7.75,5,0.0 +23460,65,21.05,34,0.0 +23460,27,43.9,47,0.0 +23460,43,46,23,0.0 +23460,15,15.5,44,0.0 +23460,44,19.45,2,0.0 +23461,35,18,26,0.0 +23461,34,14,35,0.0 +23461,42,14,37,0.0 +23461,7,30,30,0.0 +23461,18,62.5,43,0.0 +23461,72,34.8,15,0.0 +23462,52,7,38,0.0 +23462,60,34,44,0.0 +23462,64,33.25,1,0.0 +23462,43,46,1,0.0 +23462,40,18.4,20,0.0 +23462,32,32,5,0.0 +23462,26,31.23,44,0.0 +23462,12,38,7,0.0 +23462,36,19,44,0.0 +23462,51,53,18,0.0 +23462,50,16.25,29,0.0 +23463,56,38,15,0.0 +23463,11,21,22,0.0 +23463,61,28.5,25,0.0 +23463,31,12.5,5,0.0 +23463,14,23.25,32,0.0 +23463,77,13,24,0.0 +23463,28,45.6,45,0.0 +23463,45,9.5,20,0.0 +23463,66,17,6,0.0 +23463,74,10,34,0.0 +23463,49,20,49,0.0 +23463,6,25,4,0.0 +23463,38,263.5,45,0.0 +23463,46,12,29,0.0 +23463,5,21.35,14,0.0 +23463,19,9.2,40,0.0 +23463,4,22,49,0.0 +23463,9,97,50,0.0 +23463,26,31.23,10,0.0 +23463,47,9.5,49,0.0 +23463,50,16.25,49,0.0 +23463,59,55,19,0.0 +23463,7,30,1,0.0 +23463,33,2.5,50,0.0 +23463,15,15.5,1,0.0 +23463,13,6,44,0.0 +23463,60,34,33,0.0 +23463,35,18,25,0.0 +23463,76,18,8,0.0 +23463,70,15,33,0.0 +23463,10,31,5,0.0 +23464,43,46,43,0.0 +23464,23,9,25,0.0 +23464,48,12.75,32,0.0 +23464,20,81,39,0.0 +23464,40,18.4,11,0.0 +23464,67,14,41,0.0 +23464,61,28.5,3,0.0 +23464,15,15.5,9,0.0 +23464,68,12.5,27,0.0 +23465,72,34.8,39,0.0 +23465,21,10,5,0.0 +23465,77,13,24,0.0 +23465,17,39,29,0.0 +23465,11,21,21,0.0 +23465,71,21.5,33,0.0 +23465,58,13.25,18,0.0 +23465,69,36,16,0.0 +23465,25,14,19,0.0 +23465,35,18,6,0.0 +23465,47,9.5,14,0.0 +23465,67,14,9,0.0 +23465,39,18,2,0.0 +23465,68,12.5,40,0.0 +23465,27,43.9,33,0.0 +23465,26,31.23,43,0.0 +23465,18,62.5,44,0.0 +23465,53,32.8,27,0.0 +23465,76,18,7,0.0 +23465,66,17,25,0.0 +23465,40,18.4,24,0.0 +23465,51,53,41,0.0 +23465,50,16.25,19,0.0 +23465,24,4.5,26,0.0 +23465,62,49.3,45,0.0 +23465,43,46,17,0.0 +23465,14,23.25,20,0.0 +23465,1,18,36,0.0 +23465,5,21.35,48,0.0 +23465,73,15,24,0.0 +23465,10,31,24,0.0 +23465,55,24,23,0.0 +23465,19,9.2,27,0.0 +23465,2,19,9,0.0 +23465,29,123.79,8,0.0 +23465,3,10,4,0.0 +23465,52,7,14,0.0 +23465,20,81,16,0.0 +23465,54,7.45,41,0.0 +23465,75,7.75,25,0.0 +23465,23,9,1,0.0 +23465,7,30,42,0.0 +23465,8,40,36,0.0 +23465,34,14,32,0.0 +23466,9,97,5,0.0 +23466,66,17,12,0.0 +23466,14,23.25,50,0.0 +23466,70,15,21,0.0 +23466,75,7.75,48,0.0 +23466,21,10,23,0.0 +23466,54,7.45,48,0.0 +23466,77,13,29,0.0 +23466,51,53,44,0.0 +23466,48,12.75,25,0.0 +23466,60,34,7,0.0 +23466,53,32.8,31,0.0 +23466,11,21,28,0.0 +23466,62,49.3,46,0.0 +23466,13,6,33,0.0 +23466,8,40,17,0.0 +23466,61,28.5,25,0.0 +23466,71,21.5,20,0.0 +23466,49,20,11,0.0 +23466,25,14,27,0.0 +23466,36,19,30,0.0 +23466,32,32,14,0.0 +23466,12,38,6,0.0 +23466,20,81,38,0.0 +23466,7,30,42,0.0 +23466,76,18,22,0.0 +23466,15,15.5,40,0.0 +23467,71,21.5,13,0.0 +23467,36,19,29,0.0 +23467,31,12.5,2,0.0 +23467,28,45.6,8,0.0 +23467,17,39,22,0.0 +23467,7,30,50,0.0 +23467,10,31,40,0.0 +23467,2,19,47,0.0 +23467,29,123.79,9,0.0 +23467,60,34,34,0.0 +23467,13,6,35,0.0 +23467,23,9,38,0.0 +23467,39,18,34,0.0 +23467,1,18,9,0.0 +23467,16,17.45,45,0.0 +23467,76,18,44,0.0 +23467,58,13.25,50,0.0 +23467,27,43.9,21,0.0 +23467,37,26,5,0.0 +23467,3,10,12,0.0 +23467,73,15,28,0.0 +23467,63,43.9,17,0.0 +23467,6,25,29,0.0 +23467,65,21.05,36,0.0 +23467,49,20,41,0.0 +23467,41,9.65,5,0.0 +23467,66,17,9,0.0 +23467,25,14,19,0.0 +23467,46,12,28,0.0 +23467,26,31.23,43,0.0 +23467,35,18,36,0.0 +23467,21,10,49,0.0 +23467,69,36,17,0.0 +23467,45,9.5,25,0.0 +23467,43,46,14,0.0 +23467,77,13,43,0.0 +23467,38,263.5,22,0.0 +23467,32,32,34,0.0 +23467,59,55,2,0.0 +23467,18,62.5,50,0.0 +23467,67,14,22,0.0 +23467,40,18.4,1,0.0 +23467,51,53,11,0.0 +23467,47,9.5,9,0.0 +23467,54,7.45,41,0.0 +23467,34,14,35,0.0 +23467,48,12.75,9,0.0 +23467,19,9.2,37,0.0 +23467,4,22,22,0.0 +23467,14,23.25,19,0.0 +23467,12,38,41,0.0 +23467,64,33.25,30,0.0 +23467,72,34.8,47,0.0 +23467,8,40,14,0.0 +23467,50,16.25,31,0.0 +23467,75,7.75,21,0.0 +23467,20,81,33,0.0 +23468,53,32.8,5,0.0 +23468,41,9.65,26,0.0 +23468,27,43.9,38,0.0 +23468,76,18,34,0.0 +23468,48,12.75,30,0.0 +23468,62,49.3,10,0.0 +23468,75,7.75,11,0.0 +23468,17,39,22,0.0 +23468,29,123.79,35,0.0 +23468,6,25,40,0.0 +23468,25,14,21,0.0 +23468,42,14,15,0.0 +23468,68,12.5,8,0.0 +23468,47,9.5,28,0.0 +23468,44,19.45,26,0.0 +23468,45,9.5,1,0.0 +23468,22,21,31,0.0 +23468,32,32,40,0.0 +23468,18,62.5,9,0.0 +23468,52,7,5,0.0 +23468,23,9,46,0.0 +23468,49,20,4,0.0 +23468,59,55,19,0.0 +23468,20,81,7,0.0 +23468,12,38,42,0.0 +23468,46,12,23,0.0 +23468,61,28.5,43,0.0 +23468,65,21.05,39,0.0 +23468,71,21.5,16,0.0 +23468,9,97,4,0.0 +23468,8,40,8,0.0 +23468,35,18,31,0.0 +23468,21,10,4,0.0 +23468,13,6,30,0.0 +23468,10,31,36,0.0 +23468,73,15,11,0.0 +23468,40,18.4,18,0.0 +23468,36,19,48,0.0 +23468,72,34.8,7,0.0 +23468,51,53,46,0.0 +23468,56,38,44,0.0 +23468,24,4.5,12,0.0 +23468,14,23.25,32,0.0 +23468,74,10,42,0.0 +23468,54,7.45,15,0.0 +23468,70,15,31,0.0 +23468,64,33.25,46,0.0 +23468,67,14,36,0.0 +23468,7,30,36,0.0 +23468,30,25.89,40,0.0 +23468,63,43.9,14,0.0 +23468,55,24,49,0.0 +23468,43,46,1,0.0 +23468,2,19,35,0.0 +23468,1,18,35,0.0 +23468,69,36,21,0.0 +23468,3,10,21,0.0 +23469,44,19.45,47,0.0 +23469,64,33.25,29,0.0 +23469,51,53,29,0.0 +23469,11,21,14,0.0 +23469,60,34,16,0.0 +23469,27,43.9,11,0.0 +23469,13,6,24,0.0 +23469,22,21,25,0.0 +23469,34,14,12,0.0 +23469,7,30,18,0.0 +23469,70,15,22,0.0 +23469,26,31.23,23,0.0 +23469,66,17,42,0.0 +23469,35,18,42,0.0 +23469,24,4.5,18,0.0 +23469,45,9.5,8,0.0 +23469,61,28.5,23,0.0 +23469,5,21.35,6,0.0 +23469,29,123.79,9,0.0 +23469,41,9.65,20,0.0 +23469,33,2.5,6,0.0 +23469,65,21.05,11,0.0 +23469,46,12,16,0.0 +23469,53,32.8,41,0.0 +23469,76,18,8,0.0 +23469,19,9.2,44,0.0 +23469,16,17.45,43,0.0 +23469,50,16.25,12,0.0 +23469,48,12.75,13,0.0 +23469,55,24,5,0.0 +23469,1,18,26,0.0 +23469,68,12.5,25,0.0 +23469,25,14,33,0.0 +23469,38,263.5,17,0.0 +23469,59,55,29,0.0 +23469,63,43.9,31,0.0 +23469,17,39,7,0.0 +23469,36,19,34,0.0 +23469,31,12.5,30,0.0 +23469,37,26,34,0.0 +23469,42,14,31,0.0 +23469,43,46,45,0.0 +23469,62,49.3,24,0.0 +23469,57,19.5,17,0.0 +23469,74,10,24,0.0 +23469,2,19,10,0.0 +23469,30,25.89,22,0.0 +23469,72,34.8,8,0.0 +23469,47,9.5,23,0.0 +23469,20,81,1,0.0 +23469,54,7.45,23,0.0 +23469,32,32,31,0.0 +23470,47,9.5,9,0.0 +23470,20,81,9,0.0 +23470,4,22,46,0.0 +23470,21,10,45,0.0 +23470,46,12,18,0.0 +23470,70,15,29,0.0 +23470,40,18.4,23,0.0 +23470,25,14,2,0.0 +23470,49,20,28,0.0 +23470,64,33.25,48,0.0 +23470,19,9.2,21,0.0 +23470,65,21.05,34,0.0 +23470,28,45.6,24,0.0 +23470,16,17.45,26,0.0 +23470,22,21,43,0.0 +23470,52,7,42,0.0 +23470,58,13.25,48,0.0 +23471,2,19,7,0.0 +23471,34,14,34,0.0 +23471,36,19,8,0.0 +23471,61,28.5,21,0.0 +23471,22,21,1,0.0 +23471,65,21.05,24,0.0 +23471,16,17.45,45,0.0 +23471,44,19.45,35,0.0 +23471,27,43.9,24,0.0 +23471,8,40,11,0.0 +23471,59,55,35,0.0 +23471,28,45.6,37,0.0 +23471,43,46,27,0.0 +23471,7,30,19,0.0 +23471,40,18.4,31,0.0 +23471,9,97,9,0.0 +23471,15,15.5,15,0.0 +23471,30,25.89,47,0.0 +23471,3,10,4,0.0 +23471,58,13.25,16,0.0 +23471,10,31,44,0.0 +23471,64,33.25,40,0.0 +23471,6,25,21,0.0 +23471,60,34,9,0.0 +23471,53,32.8,28,0.0 +23471,69,36,38,0.0 +23471,45,9.5,34,0.0 +23471,67,14,29,0.0 +23471,13,6,47,0.0 +23472,29,123.79,40,0.0 +23472,16,17.45,46,0.0 +23472,15,15.5,12,0.0 +23472,40,18.4,9,0.0 +23472,28,45.6,36,0.0 +23472,14,23.25,45,0.0 +23472,50,16.25,39,0.0 +23472,7,30,19,0.0 +23472,31,12.5,12,0.0 +23472,27,43.9,21,0.0 +23472,69,36,27,0.0 +23472,49,20,43,0.0 +23472,35,18,49,0.0 +23472,64,33.25,14,0.0 +23472,70,15,31,0.0 +23472,36,19,45,0.0 +23472,47,9.5,9,0.0 +23472,1,18,47,0.0 +23472,13,6,25,0.0 +23472,26,31.23,28,0.0 +23472,32,32,18,0.0 +23472,76,18,6,0.0 +23472,37,26,27,0.0 +23472,75,7.75,28,0.0 +23472,34,14,48,0.0 +23472,66,17,41,0.0 +23472,17,39,33,0.0 +23472,44,19.45,39,0.0 +23472,73,15,39,0.0 +23472,55,24,1,0.0 +23472,33,2.5,12,0.0 +23472,45,9.5,25,0.0 +23472,57,19.5,34,0.0 +23472,60,34,38,0.0 +23472,24,4.5,2,0.0 +23472,23,9,17,0.0 +23472,9,97,32,0.0 +23472,46,12,31,0.0 +23472,52,7,44,0.0 +23472,54,7.45,35,0.0 +23472,12,38,8,0.0 +23472,59,55,43,0.0 +23472,25,14,7,0.0 +23472,39,18,29,0.0 +23472,56,38,4,0.0 +23472,21,10,34,0.0 +23472,43,46,27,0.0 +23472,3,10,20,0.0 +23472,48,12.75,11,0.0 +23472,65,21.05,27,0.0 +23472,63,43.9,27,0.0 +23472,5,21.35,48,0.0 +23472,8,40,49,0.0 +23472,72,34.8,49,0.0 +23472,74,10,49,0.0 +23473,45,9.5,35,0.0 +23473,67,14,24,0.0 +23473,63,43.9,47,0.0 +23473,1,18,26,0.0 +23473,53,32.8,13,0.0 +23473,20,81,42,0.0 +23473,75,7.75,21,0.0 +23473,59,55,41,0.0 +23473,73,15,41,0.0 +23473,42,14,22,0.0 +23473,12,38,1,0.0 +23473,35,18,7,0.0 +23473,54,7.45,47,0.0 +23473,11,21,34,0.0 +23473,57,19.5,15,0.0 +23473,33,2.5,49,0.0 +23473,43,46,9,0.0 +23473,65,21.05,18,0.0 +23473,17,39,5,0.0 +23473,22,21,41,0.0 +23473,21,10,27,0.0 +23473,23,9,48,0.0 +23473,19,9.2,39,0.0 +23473,39,18,11,0.0 +23473,6,25,42,0.0 +23473,76,18,29,0.0 +23473,34,14,3,0.0 +23473,72,34.8,7,0.0 +23473,9,97,10,0.0 +23473,36,19,20,0.0 +23473,10,31,19,0.0 +23473,2,19,9,0.0 +23473,7,30,35,0.0 +23473,38,263.5,11,0.0 +23473,29,123.79,18,0.0 +23473,56,38,29,0.0 +23473,70,15,45,0.0 +23473,8,40,31,0.0 +23473,26,31.23,25,0.0 +23473,61,28.5,29,0.0 +23473,51,53,20,0.0 +23473,47,9.5,41,0.0 +23473,52,7,28,0.0 +23473,37,26,24,0.0 +23473,40,18.4,7,0.0 +23473,41,9.65,50,0.0 +23473,15,15.5,4,0.0 +23473,30,25.89,39,0.0 +23473,71,21.5,10,0.0 +23473,62,49.3,21,0.0 +23473,48,12.75,23,0.0 +23473,32,32,40,0.0 +23473,4,22,26,0.0 +23473,28,45.6,11,0.0 +23473,60,34,15,0.0 +23473,66,17,13,0.0 +23473,77,13,5,0.0 +23473,55,24,12,0.0 +23473,18,62.5,20,0.0 +23473,44,19.45,31,0.0 +23474,18,62.5,27,0.0 +23474,50,16.25,13,0.0 +23474,23,9,17,0.0 +23474,69,36,34,0.0 +23474,73,15,38,0.0 +23474,25,14,31,0.0 +23474,51,53,17,0.0 +23474,21,10,1,0.0 +23474,47,9.5,48,0.0 +23474,7,30,29,0.0 +23474,3,10,3,0.0 +23474,66,17,32,0.0 +23474,9,97,48,0.0 +23474,26,31.23,47,0.0 +23474,77,13,14,0.0 +23474,38,263.5,22,0.0 +23474,39,18,12,0.0 +23474,31,12.5,49,0.0 +23474,63,43.9,23,0.0 +23474,58,13.25,15,0.0 +23474,24,4.5,46,0.0 +23474,64,33.25,30,0.0 +23474,46,12,45,0.0 +23474,36,19,36,0.0 +23474,28,45.6,31,0.0 +23475,75,7.75,8,0.0 +23475,6,25,32,0.0 +23475,38,263.5,30,0.0 +23475,10,31,47,0.0 +23475,58,13.25,26,0.0 +23475,54,7.45,37,0.0 +23475,53,32.8,25,0.0 +23475,48,12.75,19,0.0 +23475,23,9,50,0.0 +23475,3,10,46,0.0 +23475,33,2.5,4,0.0 +23475,56,38,43,0.0 +23475,27,43.9,46,0.0 +23476,67,14,15,0.0 +23476,15,15.5,45,0.0 +23476,8,40,33,0.0 +23476,36,19,17,0.0 +23476,24,4.5,20,0.0 +23476,48,12.75,46,0.0 +23476,28,45.6,11,0.0 +23476,9,97,10,0.0 +23476,26,31.23,39,0.0 +23477,63,43.9,15,0.0 +23477,22,21,26,0.0 +23477,59,55,43,0.0 +23477,69,36,21,0.0 +23477,66,17,8,0.0 +23477,73,15,40,0.0 +23477,71,21.5,15,0.0 +23477,47,9.5,6,0.0 +23477,23,9,39,0.0 +23477,52,7,47,0.0 +23477,67,14,14,0.0 +23477,58,13.25,38,0.0 +23477,76,18,34,0.0 +23477,15,15.5,50,0.0 +23477,13,6,26,0.0 +23477,6,25,10,0.0 +23477,14,23.25,50,0.0 +23477,1,18,45,0.0 +23477,35,18,9,0.0 +23477,7,30,7,0.0 +23477,70,15,31,0.0 +23477,42,14,16,0.0 +23477,9,97,3,0.0 +23477,30,25.89,34,0.0 +23477,51,53,18,0.0 +23477,29,123.79,44,0.0 +23477,2,19,48,0.0 +23477,33,2.5,11,0.0 +23477,8,40,15,0.0 +23477,77,13,38,0.0 +23477,44,19.45,17,0.0 +23477,18,62.5,13,0.0 +23477,60,34,17,0.0 +23477,43,46,43,0.0 +23477,55,24,49,0.0 +23477,53,32.8,14,0.0 +23477,54,7.45,41,0.0 +23477,74,10,30,0.0 +23477,36,19,34,0.0 +23477,46,12,16,0.0 +23477,38,263.5,35,0.0 +23477,56,38,29,0.0 +23477,12,38,25,0.0 +23477,40,18.4,21,0.0 +23477,27,43.9,6,0.0 +23477,25,14,8,0.0 +23477,61,28.5,27,0.0 +23477,48,12.75,7,0.0 +23477,45,9.5,3,0.0 +23477,34,14,24,0.0 +23477,28,45.6,47,0.0 +23477,11,21,34,0.0 +23477,31,12.5,30,0.0 +23477,24,4.5,3,0.0 +23477,49,20,48,0.0 +23477,4,22,30,0.0 +23477,65,21.05,47,0.0 +23478,41,9.65,41,0.0 +23478,17,39,32,0.0 +23478,66,17,21,0.0 +23478,16,17.45,43,0.0 +23478,9,97,37,0.0 +23478,2,19,36,0.0 +23478,38,263.5,24,0.0 +23478,75,7.75,6,0.0 +23478,53,32.8,17,0.0 +23478,1,18,9,0.0 +23478,69,36,25,0.0 +23478,45,9.5,47,0.0 +23478,46,12,36,0.0 +23478,14,23.25,44,0.0 +23478,73,15,39,0.0 +23478,36,19,48,0.0 +23478,29,123.79,38,0.0 +23478,30,25.89,12,0.0 +23478,28,45.6,35,0.0 +23478,18,62.5,32,0.0 +23478,31,12.5,11,0.0 +23478,61,28.5,5,0.0 +23478,39,18,23,0.0 +23478,60,34,13,0.0 +23478,7,30,37,0.0 +23478,40,18.4,36,0.0 +23478,24,4.5,34,0.0 +23478,57,19.5,23,0.0 +23478,56,38,36,0.0 +23478,25,14,1,0.0 +23478,23,9,20,0.0 +23478,48,12.75,12,0.0 +23478,62,49.3,38,0.0 +23478,11,21,20,0.0 +23478,12,38,33,0.0 +23478,71,21.5,29,0.0 +23478,6,25,38,0.0 +23478,21,10,37,0.0 +23478,10,31,11,0.0 +23478,76,18,46,0.0 +23478,63,43.9,44,0.0 +23478,8,40,39,0.0 +23478,37,26,12,0.0 +23478,72,34.8,26,0.0 +23478,59,55,31,0.0 +23478,27,43.9,49,0.0 +23478,33,2.5,40,0.0 +23478,22,21,16,0.0 +23478,44,19.45,44,0.0 +23478,3,10,33,0.0 +23478,15,15.5,31,0.0 +23478,67,14,41,0.0 +23478,13,6,44,0.0 +23478,35,18,29,0.0 +23478,34,14,44,0.0 +23478,52,7,47,0.0 +23478,49,20,29,0.0 +23478,51,53,9,0.0 +23478,50,16.25,15,0.0 +23478,55,24,21,0.0 +23478,5,21.35,41,0.0 +23478,43,46,49,0.0 +23478,42,14,50,0.0 +23478,26,31.23,50,0.0 +23478,4,22,31,0.0 +23478,32,32,18,0.0 +23478,47,9.5,13,0.0 +23478,64,33.25,29,0.0 +23479,12,38,20,0.0 +23479,11,21,46,0.0 +23479,34,14,43,0.0 +23479,19,9.2,19,0.0 +23479,41,9.65,4,0.0 +23479,6,25,47,0.0 +23479,46,12,40,0.0 +23479,38,263.5,38,0.0 +23479,33,2.5,17,0.0 +23479,42,14,42,0.0 +23479,17,39,15,0.0 +23479,58,13.25,16,0.0 +23479,29,123.79,43,0.0 +23479,26,31.23,48,0.0 +23479,2,19,8,0.0 +23479,59,55,35,0.0 +23479,23,9,6,0.0 +23479,10,31,41,0.0 +23479,64,33.25,19,0.0 +23479,3,10,38,0.0 +23479,14,23.25,10,0.0 +23479,21,10,31,0.0 +23479,44,19.45,1,0.0 +23479,77,13,45,0.0 +23479,15,15.5,23,0.0 +23479,48,12.75,3,0.0 +23479,74,10,11,0.0 +23479,45,9.5,7,0.0 +23479,22,21,41,0.0 +23479,30,25.89,23,0.0 +23479,50,16.25,16,0.0 +23479,40,18.4,29,0.0 +23479,66,17,44,0.0 +23479,76,18,5,0.0 +23479,60,34,8,0.0 +23479,49,20,32,0.0 +23479,9,97,5,0.0 +23479,71,21.5,14,0.0 +23479,73,15,46,0.0 +23479,52,7,47,0.0 +23479,62,49.3,10,0.0 +23480,30,25.89,7,0.0 +23480,70,15,35,0.0 +23480,12,38,7,0.0 +23480,18,62.5,13,0.0 +23480,52,7,21,0.0 +23480,34,14,33,0.0 +23480,50,16.25,21,0.0 +23480,40,18.4,27,0.0 +23480,11,21,2,0.0 +23480,24,4.5,28,0.0 +23480,4,22,32,0.0 +23480,49,20,7,0.0 +23480,21,10,41,0.0 +23480,35,18,23,0.0 +23480,48,12.75,42,0.0 +23480,55,24,19,0.0 +23480,37,26,38,0.0 +23480,16,17.45,20,0.0 +23480,17,39,11,0.0 +23480,19,9.2,19,0.0 +23480,66,17,35,0.0 +23480,44,19.45,7,0.0 +23480,1,18,6,0.0 +23480,67,14,13,0.0 +23480,53,32.8,3,0.0 +23480,73,15,23,0.0 +23480,57,19.5,30,0.0 +23480,10,31,32,0.0 +23480,63,43.9,42,0.0 +23480,60,34,10,0.0 +23480,71,21.5,41,0.0 +23480,6,25,19,0.0 +23480,26,31.23,2,0.0 +23480,9,97,47,0.0 +23480,39,18,1,0.0 +23480,15,15.5,42,0.0 +23480,2,19,37,0.0 +23480,33,2.5,44,0.0 +23480,22,21,21,0.0 +23480,31,12.5,6,0.0 +23480,42,14,24,0.0 +23480,23,9,30,0.0 +23480,7,30,15,0.0 +23480,46,12,2,0.0 +23480,13,6,13,0.0 +23480,74,10,5,0.0 +23480,51,53,17,0.0 +23480,5,21.35,29,0.0 +23480,69,36,22,0.0 +23480,29,123.79,15,0.0 +23480,58,13.25,43,0.0 +23480,56,38,7,0.0 +23480,32,32,24,0.0 +23480,75,7.75,14,0.0 +23480,59,55,37,0.0 +23480,20,81,23,0.0 +23480,8,40,21,0.0 +23480,41,9.65,35,0.0 +23480,76,18,10,0.0 +23480,72,34.8,42,0.0 +23480,43,46,41,0.0 +23481,57,19.5,49,0.0 +23481,7,30,18,0.0 +23481,58,13.25,5,0.0 +23481,8,40,50,0.0 +23481,11,21,37,0.0 +23481,14,23.25,6,0.0 +23481,18,62.5,44,0.0 +23481,23,9,28,0.0 +23481,59,55,43,0.0 +23481,39,18,39,0.0 +23481,46,12,23,0.0 +23481,77,13,5,0.0 +23481,52,7,2,0.0 +23481,47,9.5,1,0.0 +23481,69,36,40,0.0 +23481,64,33.25,43,0.0 +23481,32,32,42,0.0 +23482,19,9.2,49,0.0 +23482,71,21.5,38,0.0 +23482,74,10,30,0.0 +23482,66,17,17,0.0 +23482,17,39,7,0.0 +23482,38,263.5,42,0.0 +23482,30,25.89,25,0.0 +23482,45,9.5,14,0.0 +23482,64,33.25,5,0.0 +23482,5,21.35,1,0.0 +23482,8,40,39,0.0 +23482,68,12.5,32,0.0 +23482,55,24,1,0.0 +23482,11,21,2,0.0 +23482,43,46,33,0.0 +23482,48,12.75,1,0.0 +23482,35,18,10,0.0 +23482,29,123.79,48,0.0 +23482,63,43.9,16,0.0 +23482,65,21.05,25,0.0 +23482,50,16.25,5,0.0 +23482,47,9.5,31,0.0 +23482,32,32,26,0.0 +23482,26,31.23,33,0.0 +23482,40,18.4,30,0.0 +23482,7,30,3,0.0 +23482,72,34.8,29,0.0 +23482,25,14,21,0.0 +23482,2,19,13,0.0 +23482,27,43.9,28,0.0 +23482,70,15,33,0.0 +23482,73,15,42,0.0 +23482,58,13.25,41,0.0 +23482,51,53,2,0.0 +23482,10,31,3,0.0 +23482,36,19,27,0.0 +23482,37,26,30,0.0 +23482,33,2.5,33,0.0 +23482,9,97,10,0.0 +23482,31,12.5,16,0.0 +23482,46,12,40,0.0 +23482,34,14,33,0.0 +23482,42,14,48,0.0 +23482,76,18,1,0.0 +23482,1,18,1,0.0 +23482,54,7.45,30,0.0 +23482,13,6,25,0.0 +23482,57,19.5,40,0.0 +23482,20,81,48,0.0 +23482,12,38,50,0.0 +23482,15,15.5,25,0.0 +23482,52,7,27,0.0 +23482,24,4.5,18,0.0 +23482,41,9.65,18,0.0 +23482,61,28.5,34,0.0 +23482,62,49.3,20,0.0 +23482,4,22,34,0.0 +23482,23,9,48,0.0 +23482,53,32.8,19,0.0 +23482,21,10,4,0.0 +23482,60,34,48,0.0 +23483,22,21,6,0.0 +23483,75,7.75,11,0.0 +23483,61,28.5,10,0.0 +23483,37,26,10,0.0 +23483,27,43.9,45,0.0 +23483,17,39,15,0.0 +23483,2,19,10,0.0 +23483,50,16.25,33,0.0 +23483,68,12.5,38,0.0 +23483,34,14,12,0.0 +23483,21,10,46,0.0 +23483,66,17,27,0.0 +23483,4,22,35,0.0 +23483,74,10,15,0.0 +23483,14,23.25,3,0.0 +23483,58,13.25,26,0.0 +23483,42,14,12,0.0 +23483,40,18.4,48,0.0 +23483,36,19,13,0.0 +23483,57,19.5,14,0.0 +23483,49,20,3,0.0 +23483,12,38,50,0.0 +23483,15,15.5,35,0.0 +23483,9,97,43,0.0 +23483,64,33.25,23,0.0 +23483,54,7.45,17,0.0 +23483,56,38,48,0.0 +23483,33,2.5,11,0.0 +23483,52,7,30,0.0 +23483,46,12,18,0.0 +23484,77,13,11,0.0 +23484,37,26,1,0.0 +23484,69,36,8,0.0 +23484,3,10,15,0.0 +23484,52,7,15,0.0 +23484,66,17,23,0.0 +23484,55,24,25,0.0 +23484,16,17.45,6,0.0 +23484,36,19,4,0.0 +23484,27,43.9,23,0.0 +23484,13,6,10,0.0 +23484,29,123.79,50,0.0 +23484,40,18.4,33,0.0 +23484,71,21.5,37,0.0 +23484,10,31,38,0.0 +23484,18,62.5,32,0.0 +23484,50,16.25,31,0.0 +23484,15,15.5,4,0.0 +23484,44,19.45,20,0.0 +23484,76,18,3,0.0 +23484,38,263.5,22,0.0 +23484,26,31.23,3,0.0 +23484,47,9.5,25,0.0 +23484,72,34.8,23,0.0 +23484,70,15,47,0.0 +23484,23,9,30,0.0 +23484,20,81,12,0.0 +23484,62,49.3,39,0.0 +23484,67,14,2,0.0 +23484,4,22,18,0.0 +23484,28,45.6,20,0.0 +23484,73,15,19,0.0 +23484,17,39,40,0.0 +23484,34,14,12,0.0 +23484,33,2.5,31,0.0 +23484,6,25,37,0.0 +23484,54,7.45,24,0.0 +23484,5,21.35,48,0.0 +23484,9,97,20,0.0 +23484,2,19,3,0.0 +23484,53,32.8,22,0.0 +23484,42,14,50,0.0 +23484,65,21.05,5,0.0 +23484,48,12.75,36,0.0 +23484,11,21,11,0.0 +23484,7,30,46,0.0 +23484,58,13.25,2,0.0 +23484,74,10,31,0.0 +23484,45,9.5,4,0.0 +23484,31,12.5,50,0.0 +23484,8,40,33,0.0 +23484,57,19.5,5,0.0 +23484,56,38,7,0.0 +23484,21,10,39,0.0 +23484,61,28.5,14,0.0 +23485,69,36,35,0.0 +23485,56,38,10,0.0 +23485,13,6,30,0.0 +23485,76,18,34,0.0 +23485,24,4.5,44,0.0 +23485,19,9.2,49,0.0 +23485,70,15,31,0.0 +23485,54,7.45,8,0.0 +23485,27,43.9,21,0.0 +23485,4,22,23,0.0 +23485,53,32.8,32,0.0 +23485,71,21.5,19,0.0 +23485,46,12,10,0.0 +23485,23,9,22,0.0 +23485,31,12.5,18,0.0 +23485,44,19.45,40,0.0 +23485,45,9.5,35,0.0 +23485,28,45.6,43,0.0 +23485,43,46,2,0.0 +23485,39,18,14,0.0 +23485,63,43.9,22,0.0 +23485,18,62.5,25,0.0 +23485,57,19.5,20,0.0 +23485,67,14,14,0.0 +23485,9,97,45,0.0 +23485,32,32,49,0.0 +23485,10,31,25,0.0 +23485,29,123.79,12,0.0 +23485,59,55,41,0.0 +23485,61,28.5,9,0.0 +23485,55,24,27,0.0 +23485,72,34.8,18,0.0 +23485,77,13,43,0.0 +23485,12,38,22,0.0 +23485,58,13.25,40,0.0 +23485,33,2.5,35,0.0 +23485,15,15.5,39,0.0 +23485,6,25,19,0.0 +23485,11,21,28,0.0 +23485,30,25.89,38,0.0 +23485,26,31.23,11,0.0 +23485,60,34,31,0.0 +23485,49,20,46,0.0 +23485,34,14,50,0.0 +23485,21,10,11,0.0 +23485,48,12.75,38,0.0 +23485,7,30,1,0.0 +23485,22,21,30,0.0 +23485,40,18.4,4,0.0 +23485,62,49.3,43,0.0 +23485,20,81,42,0.0 +23485,41,9.65,36,0.0 +23485,8,40,23,0.0 +23485,1,18,19,0.0 +23485,42,14,48,0.0 +23485,25,14,21,0.0 +23485,66,17,15,0.0 +23485,35,18,25,0.0 +23485,74,10,19,0.0 +23485,3,10,50,0.0 +23485,51,53,28,0.0 +23485,38,263.5,40,0.0 +23485,75,7.75,45,0.0 +23485,14,23.25,18,0.0 +23485,16,17.45,27,0.0 +23485,37,26,14,0.0 +23485,64,33.25,13,0.0 +23485,47,9.5,44,0.0 +23485,52,7,41,0.0 +23485,50,16.25,17,0.0 +23485,36,19,36,0.0 +23485,5,21.35,21,0.0 +23486,33,2.5,45,0.0 +23486,32,32,35,0.0 +23486,17,39,49,0.0 +23486,48,12.75,50,0.0 +23486,9,97,9,0.0 +23486,40,18.4,13,0.0 +23486,26,31.23,18,0.0 +23486,20,81,48,0.0 +23486,62,49.3,11,0.0 +23486,12,38,3,0.0 +23486,5,21.35,45,0.0 +23486,1,18,27,0.0 +23486,6,25,50,0.0 +23486,18,62.5,27,0.0 +23486,58,13.25,13,0.0 +23486,42,14,42,0.0 +23486,28,45.6,17,0.0 +23486,15,15.5,2,0.0 +23486,45,9.5,31,0.0 +23486,8,40,19,0.0 +23486,53,32.8,2,0.0 +23486,68,12.5,45,0.0 +23486,64,33.25,33,0.0 +23486,77,13,31,0.0 +23486,71,21.5,37,0.0 +23486,7,30,49,0.0 +23486,61,28.5,35,0.0 +23486,14,23.25,37,0.0 +23486,56,38,30,0.0 +23486,10,31,13,0.0 +23486,21,10,20,0.0 +23486,52,7,1,0.0 +23486,54,7.45,43,0.0 +23486,25,14,21,0.0 +23486,13,6,31,0.0 +23486,51,53,45,0.0 +23486,73,15,11,0.0 +23486,16,17.45,49,0.0 +23486,23,9,19,0.0 +23486,59,55,30,0.0 +23486,3,10,37,0.0 +23486,43,46,38,0.0 +23486,31,12.5,19,0.0 +23486,75,7.75,37,0.0 +23486,30,25.89,33,0.0 +23486,47,9.5,19,0.0 +23486,49,20,27,0.0 +23486,69,36,33,0.0 +23486,39,18,43,0.0 +23486,11,21,11,0.0 +23486,66,17,38,0.0 +23486,37,26,43,0.0 +23486,41,9.65,35,0.0 +23486,65,21.05,16,0.0 +23486,74,10,20,0.0 +23486,67,14,36,0.0 +23486,27,43.9,5,0.0 +23486,76,18,30,0.0 +23486,57,19.5,28,0.0 +23486,4,22,20,0.0 +23486,22,21,29,0.0 +23486,34,14,7,0.0 +23486,72,34.8,40,0.0 +23486,19,9.2,19,0.0 +23486,55,24,24,0.0 +23486,2,19,9,0.0 +23486,60,34,24,0.0 +23486,46,12,49,0.0 +23486,29,123.79,4,0.0 +23486,50,16.25,7,0.0 +23486,36,19,7,0.0 +23486,63,43.9,44,0.0 +23487,53,32.8,28,0.0 +23487,50,16.25,3,0.0 +23487,10,31,23,0.0 +23487,69,36,34,0.0 +23487,25,14,14,0.0 +23487,65,21.05,35,0.0 +23487,28,45.6,38,0.0 +23487,72,34.8,35,0.0 +23487,3,10,12,0.0 +23487,11,21,18,0.0 +23487,22,21,29,0.0 +23487,31,12.5,38,0.0 +23487,73,15,12,0.0 +23487,19,9.2,23,0.0 +23487,33,2.5,45,0.0 +23487,24,4.5,13,0.0 +23487,41,9.65,4,0.0 +23487,32,32,14,0.0 +23487,67,14,36,0.0 +23487,62,49.3,7,0.0 +23487,6,25,23,0.0 +23487,71,21.5,32,0.0 +23487,47,9.5,11,0.0 +23487,56,38,11,0.0 +23487,38,263.5,45,0.0 +23487,74,10,1,0.0 +23487,55,24,42,0.0 +23487,49,20,17,0.0 +23487,4,22,11,0.0 +23487,12,38,27,0.0 +23487,16,17.45,49,0.0 +23487,27,43.9,21,0.0 +23487,43,46,48,0.0 +23487,15,15.5,42,0.0 +23487,2,19,23,0.0 +23487,68,12.5,30,0.0 +23487,23,9,28,0.0 +23487,44,19.45,31,0.0 +23487,35,18,13,0.0 +23487,54,7.45,6,0.0 +23487,76,18,16,0.0 +23487,61,28.5,29,0.0 +23487,7,30,31,0.0 +23487,26,31.23,33,0.0 +23487,59,55,24,0.0 +23487,52,7,18,0.0 +23487,63,43.9,16,0.0 +23487,39,18,26,0.0 +23487,42,14,16,0.0 +23487,17,39,27,0.0 +23488,45,9.5,22,0.0 +23488,6,25,8,0.0 +23488,37,26,40,0.0 +23488,11,21,5,0.0 +23488,35,18,3,0.0 +23488,5,21.35,8,0.0 +23488,50,16.25,40,0.0 +23488,27,43.9,34,0.0 +23488,55,24,26,0.0 +23488,41,9.65,15,0.0 +23488,58,13.25,21,0.0 +23488,2,19,42,0.0 +23488,60,34,43,0.0 +23488,8,40,32,0.0 +23488,70,15,35,0.0 +23488,26,31.23,41,0.0 +23488,75,7.75,29,0.0 +23488,17,39,22,0.0 +23488,53,32.8,36,0.0 +23488,72,34.8,17,0.0 +23488,54,7.45,22,0.0 +23488,65,21.05,30,0.0 +23488,25,14,33,0.0 +23488,69,36,27,0.0 +23488,36,19,30,0.0 +23488,43,46,7,0.0 +23488,51,53,6,0.0 +23488,73,15,6,0.0 +23488,38,263.5,32,0.0 +23488,18,62.5,28,0.0 +23488,47,9.5,50,0.0 +23488,52,7,31,0.0 +23488,10,31,17,0.0 +23488,62,49.3,12,0.0 +23488,76,18,38,0.0 +23488,39,18,42,0.0 +23488,12,38,11,0.0 +23488,59,55,11,0.0 +23488,23,9,7,0.0 +23488,28,45.6,18,0.0 +23488,30,25.89,33,0.0 +23488,20,81,50,0.0 +23488,21,10,28,0.0 +23488,48,12.75,21,0.0 +23488,15,15.5,20,0.0 +23488,24,4.5,15,0.0 +23488,40,18.4,11,0.0 +23488,63,43.9,16,0.0 +23488,19,9.2,40,0.0 +23488,13,6,44,0.0 +23488,57,19.5,14,0.0 +23489,59,55,7,0.0 +23489,65,21.05,25,0.0 +23489,49,20,11,0.0 +23489,55,24,25,0.0 +23489,69,36,46,0.0 +23489,74,10,41,0.0 +23490,11,21,37,0.0 +23490,53,32.8,7,0.0 +23490,66,17,35,0.0 +23490,49,20,4,0.0 +23490,72,34.8,13,0.0 +23490,76,18,15,0.0 +23490,58,13.25,17,0.0 +23490,73,15,28,0.0 +23490,44,19.45,43,0.0 +23490,23,9,34,0.0 +23490,65,21.05,45,0.0 +23490,54,7.45,42,0.0 +23490,63,43.9,45,0.0 +23490,62,49.3,19,0.0 +23490,10,31,1,0.0 +23490,67,14,44,0.0 +23490,22,21,9,0.0 +23490,30,25.89,9,0.0 +23490,28,45.6,49,0.0 +23490,71,21.5,18,0.0 +23490,48,12.75,49,0.0 +23490,45,9.5,45,0.0 +23490,68,12.5,16,0.0 +23490,24,4.5,16,0.0 +23490,38,263.5,30,0.0 +23490,8,40,7,0.0 +23490,19,9.2,26,0.0 +23490,55,24,35,0.0 +23490,57,19.5,45,0.0 +23490,37,26,28,0.0 +23490,20,81,36,0.0 +23490,56,38,32,0.0 +23490,32,32,48,0.0 +23490,59,55,18,0.0 +23490,12,38,43,0.0 +23490,7,30,49,0.0 +23490,46,12,13,0.0 +23491,15,15.5,10,0.0 +23491,38,263.5,10,0.0 +23491,50,16.25,35,0.0 +23491,11,21,2,0.0 +23491,63,43.9,33,0.0 +23491,41,9.65,37,0.0 +23491,19,9.2,1,0.0 +23491,7,30,18,0.0 +23491,55,24,13,0.0 +23491,37,26,3,0.0 +23491,69,36,46,0.0 +23491,2,19,37,0.0 +23491,70,15,10,0.0 +23491,16,17.45,30,0.0 +23491,66,17,36,0.0 +23491,33,2.5,26,0.0 +23491,32,32,21,0.0 +23491,8,40,21,0.0 +23491,40,18.4,47,0.0 +23491,39,18,25,0.0 +23491,34,14,21,0.0 +23491,20,81,33,0.0 +23491,71,21.5,39,0.0 +23491,65,21.05,37,0.0 +23491,23,9,14,0.0 +23491,57,19.5,41,0.0 +23491,4,22,10,0.0 +23491,47,9.5,30,0.0 +23491,42,14,44,0.0 +23491,59,55,40,0.0 +23491,72,34.8,38,0.0 +23491,13,6,23,0.0 +23491,61,28.5,34,0.0 +23491,30,25.89,11,0.0 +23491,51,53,45,0.0 +23491,75,7.75,48,0.0 +23491,17,39,26,0.0 +23491,21,10,34,0.0 +23491,35,18,12,0.0 +23491,6,25,45,0.0 +23491,24,4.5,29,0.0 +23491,46,12,18,0.0 +23491,44,19.45,16,0.0 +23491,36,19,1,0.0 +23491,58,13.25,32,0.0 +23491,77,13,41,0.0 +23491,18,62.5,29,0.0 +23491,29,123.79,39,0.0 +23491,60,34,5,0.0 +23491,64,33.25,35,0.0 +23491,31,12.5,36,0.0 +23491,5,21.35,6,0.0 +23491,48,12.75,48,0.0 +23491,25,14,39,0.0 +23491,52,7,28,0.0 +23491,12,38,24,0.0 +23491,67,14,41,0.0 +23491,68,12.5,13,0.0 +23491,62,49.3,12,0.0 +23491,56,38,22,0.0 +23491,1,18,29,0.0 +23491,76,18,27,0.0 +23491,43,46,15,0.0 +23491,14,23.25,26,0.0 +23491,53,32.8,38,0.0 +23492,19,9.2,38,0.0 +23492,8,40,48,0.0 +23492,56,38,42,0.0 +23492,1,18,21,0.0 +23492,6,25,48,0.0 +23492,23,9,8,0.0 +23492,5,21.35,4,0.0 +23492,72,34.8,5,0.0 +23492,65,21.05,11,0.0 +23492,54,7.45,2,0.0 +23492,63,43.9,17,0.0 +23493,31,12.5,38,0.0 +23493,23,9,48,0.0 +23493,66,17,7,0.0 +23493,42,14,9,0.0 +23493,38,263.5,45,0.0 +23493,10,31,15,0.0 +23493,43,46,27,0.0 +23493,70,15,20,0.0 +23493,37,26,23,0.0 +23493,41,9.65,42,0.0 +23493,17,39,30,0.0 +23493,11,21,35,0.0 +23493,67,14,8,0.0 +23493,39,18,10,0.0 +23493,8,40,32,0.0 +23493,71,21.5,45,0.0 +23493,65,21.05,31,0.0 +23493,14,23.25,22,0.0 +23493,45,9.5,37,0.0 +23493,47,9.5,41,0.0 +23493,55,24,24,0.0 +23493,75,7.75,45,0.0 +23493,72,34.8,4,0.0 +23493,9,97,22,0.0 +23493,13,6,49,0.0 +23493,27,43.9,36,0.0 +23493,4,22,3,0.0 +23494,54,7.45,49,0.0 +23494,35,18,10,0.0 +23494,57,19.5,25,0.0 +23494,11,21,15,0.0 +23494,20,81,45,0.0 +23494,58,13.25,43,0.0 +23494,6,25,42,0.0 +23494,10,31,47,0.0 +23494,41,9.65,23,0.0 +23494,5,21.35,9,0.0 +23494,44,19.45,27,0.0 +23494,43,46,37,0.0 +23494,8,40,10,0.0 +23494,62,49.3,6,0.0 +23494,61,28.5,29,0.0 +23494,24,4.5,37,0.0 +23494,19,9.2,31,0.0 +23494,55,24,24,0.0 +23494,4,22,38,0.0 +23494,47,9.5,21,0.0 +23494,23,9,15,0.0 +23494,28,45.6,41,0.0 +23494,7,30,49,0.0 +23494,36,19,25,0.0 +23494,72,34.8,10,0.0 +23494,1,18,12,0.0 +23494,74,10,3,0.0 +23494,60,34,6,0.0 +23494,40,18.4,5,0.0 +23494,64,33.25,6,0.0 +23494,34,14,16,0.0 +23494,56,38,21,0.0 +23494,75,7.75,3,0.0 +23494,3,10,2,0.0 +23494,21,10,44,0.0 +23494,73,15,47,0.0 +23494,70,15,40,0.0 +23494,68,12.5,21,0.0 +23494,27,43.9,29,0.0 +23494,45,9.5,18,0.0 +23494,2,19,39,0.0 +23494,48,12.75,3,0.0 +23494,66,17,44,0.0 +23494,76,18,48,0.0 +23494,67,14,33,0.0 +23494,9,97,29,0.0 +23494,63,43.9,3,0.0 +23494,16,17.45,37,0.0 +23494,71,21.5,25,0.0 +23494,26,31.23,23,0.0 +23495,30,25.89,9,0.0 +23495,35,18,17,0.0 +23495,51,53,13,0.0 +23495,26,31.23,28,0.0 +23495,18,62.5,6,0.0 +23495,8,40,37,0.0 +23495,59,55,5,0.0 +23495,19,9.2,43,0.0 +23495,52,7,38,0.0 +23495,15,15.5,25,0.0 +23495,40,18.4,6,0.0 +23495,17,39,38,0.0 +23495,63,43.9,48,0.0 +23495,37,26,14,0.0 +23495,48,12.75,38,0.0 +23495,74,10,38,0.0 +23495,9,97,27,0.0 +23495,36,19,2,0.0 +23495,42,14,30,0.0 +23495,29,123.79,12,0.0 +23495,77,13,26,0.0 +23495,16,17.45,10,0.0 +23495,23,9,31,0.0 +23495,66,17,32,0.0 +23495,14,23.25,38,0.0 +23495,71,21.5,4,0.0 +23495,32,32,10,0.0 +23495,12,38,43,0.0 +23495,64,33.25,14,0.0 +23495,33,2.5,48,0.0 +23495,56,38,46,0.0 +23495,47,9.5,11,0.0 +23495,68,12.5,17,0.0 +23495,13,6,5,0.0 +23495,4,22,1,0.0 +23495,1,18,44,0.0 +23495,3,10,45,0.0 +23495,46,12,24,0.0 +23495,22,21,16,0.0 +23496,23,9,36,0.0 +23496,56,38,26,0.0 +23496,51,53,3,0.0 +23496,52,7,48,0.0 +23496,60,34,31,0.0 +23496,76,18,32,0.0 +23496,67,14,1,0.0 +23496,64,33.25,23,0.0 +23496,32,32,42,0.0 +23496,17,39,43,0.0 +23496,39,18,33,0.0 +23496,35,18,1,0.0 +23496,5,21.35,9,0.0 +23496,28,45.6,38,0.0 +23496,57,19.5,38,0.0 +23496,34,14,38,0.0 +23496,53,32.8,12,0.0 +23496,3,10,33,0.0 +23496,30,25.89,1,0.0 +23496,41,9.65,17,0.0 +23496,20,81,8,0.0 +23496,25,14,16,0.0 +23496,15,15.5,37,0.0 +23496,68,12.5,23,0.0 +23496,18,62.5,15,0.0 +23496,10,31,46,0.0 +23496,61,28.5,18,0.0 +23496,37,26,32,0.0 +23496,45,9.5,20,0.0 +23496,29,123.79,40,0.0 +23496,66,17,28,0.0 +23496,24,4.5,27,0.0 +23496,16,17.45,37,0.0 +23496,8,40,38,0.0 +23496,2,19,19,0.0 +23496,14,23.25,2,0.0 +23496,54,7.45,8,0.0 +23496,70,15,31,0.0 +23496,42,14,39,0.0 +23496,19,9.2,22,0.0 +23496,49,20,25,0.0 +23496,46,12,9,0.0 +23496,6,25,32,0.0 +23497,31,12.5,34,0.0 +23497,39,18,15,0.0 +23497,21,10,6,0.0 +23497,32,32,49,0.0 +23497,44,19.45,8,0.0 +23497,28,45.6,42,0.0 +23497,69,36,38,0.0 +23497,54,7.45,12,0.0 +23497,3,10,25,0.0 +23497,65,21.05,47,0.0 +23497,73,15,11,0.0 +23497,70,15,45,0.0 +23497,13,6,20,0.0 +23497,61,28.5,29,0.0 +23497,43,46,42,0.0 +23497,6,25,37,0.0 +23497,50,16.25,7,0.0 +23497,16,17.45,14,0.0 +23497,33,2.5,25,0.0 +23497,8,40,14,0.0 +23497,15,15.5,20,0.0 +23497,14,23.25,41,0.0 +23497,72,34.8,23,0.0 +23497,66,17,47,0.0 +23497,20,81,21,0.0 +23497,22,21,39,0.0 +23497,74,10,24,0.0 +23497,41,9.65,45,0.0 +23497,23,9,36,0.0 +23497,53,32.8,45,0.0 +23497,29,123.79,41,0.0 +23497,4,22,20,0.0 +23497,59,55,2,0.0 +23497,2,19,37,0.0 +23497,77,13,17,0.0 +23497,9,97,20,0.0 +23497,38,263.5,11,0.0 +23497,5,21.35,44,0.0 +23497,25,14,42,0.0 +23497,56,38,49,0.0 +23497,62,49.3,10,0.0 +23497,49,20,18,0.0 +23497,45,9.5,48,0.0 +23497,1,18,31,0.0 +23497,63,43.9,43,0.0 +23497,7,30,6,0.0 +23497,64,33.25,1,0.0 +23497,76,18,18,0.0 +23497,12,38,20,0.0 +23497,46,12,18,0.0 +23497,36,19,45,0.0 +23497,24,4.5,11,0.0 +23497,71,21.5,25,0.0 +23497,68,12.5,41,0.0 +23497,26,31.23,24,0.0 +23497,27,43.9,5,0.0 +23497,19,9.2,3,0.0 +23497,30,25.89,25,0.0 +23497,34,14,6,0.0 +23497,11,21,32,0.0 +23497,40,18.4,46,0.0 +23497,35,18,4,0.0 +23497,55,24,15,0.0 +23497,37,26,41,0.0 +23497,10,31,26,0.0 +23497,75,7.75,13,0.0 +23497,58,13.25,29,0.0 +23497,67,14,17,0.0 +23497,57,19.5,21,0.0 +23497,52,7,45,0.0 +23497,48,12.75,15,0.0 +23497,17,39,32,0.0 +23498,34,14,3,0.0 +23498,67,14,26,0.0 +23498,49,20,11,0.0 +23498,40,18.4,15,0.0 +23498,35,18,24,0.0 +23498,21,10,17,0.0 +23498,39,18,27,0.0 +23498,37,26,49,0.0 +23498,65,21.05,45,0.0 +23498,55,24,28,0.0 +23498,48,12.75,37,0.0 +23498,62,49.3,34,0.0 +23498,56,38,43,0.0 +23498,57,19.5,39,0.0 +23498,66,17,50,0.0 +23498,69,36,9,0.0 +23498,38,263.5,26,0.0 +23498,45,9.5,5,0.0 +23499,24,4.5,41,0.0 +23499,52,7,48,0.0 +23499,18,62.5,50,0.0 +23499,31,12.5,32,0.0 +23499,77,13,13,0.0 +23499,15,15.5,1,0.0 +23499,75,7.75,33,0.0 +23499,36,19,22,0.0 +23499,20,81,30,0.0 +23499,7,30,4,0.0 +23499,25,14,28,0.0 +23499,29,123.79,31,0.0 +23499,40,18.4,45,0.0 +23499,9,97,29,0.0 +23499,16,17.45,45,0.0 +23499,10,31,11,0.0 +23499,64,33.25,13,0.0 +23499,22,21,21,0.0 +23499,49,20,16,0.0 +23499,41,9.65,14,0.0 +23499,54,7.45,10,0.0 +23499,42,14,31,0.0 +23499,47,9.5,33,0.0 +23499,71,21.5,7,0.0 +23499,2,19,35,0.0 +23499,30,25.89,31,0.0 +23499,38,263.5,21,0.0 +23499,11,21,4,0.0 +23499,63,43.9,11,0.0 +23499,21,10,44,0.0 +23499,34,14,40,0.0 +23499,27,43.9,48,0.0 +23499,13,6,39,0.0 +23499,17,39,33,0.0 +23499,65,21.05,49,0.0 +23499,70,15,14,0.0 +23499,4,22,46,0.0 +23499,35,18,15,0.0 +23499,3,10,22,0.0 +23499,14,23.25,2,0.0 +23499,61,28.5,8,0.0 +23499,60,34,41,0.0 +23499,57,19.5,12,0.0 +23499,39,18,35,0.0 +23499,59,55,22,0.0 +23499,28,45.6,7,0.0 +23499,74,10,43,0.0 +23499,53,32.8,44,0.0 +23499,58,13.25,12,0.0 +23499,37,26,40,0.0 +23499,33,2.5,1,0.0 +23499,45,9.5,38,0.0 +23499,43,46,46,0.0 +23499,1,18,22,0.0 +23499,56,38,34,0.0 +23499,8,40,39,0.0 +23499,19,9.2,23,0.0 +23499,67,14,34,0.0 +23499,44,19.45,21,0.0 +23499,50,16.25,32,0.0 +23499,5,21.35,43,0.0 +23499,66,17,30,0.0 +23499,51,53,6,0.0 +23499,32,32,3,0.0 +23499,69,36,36,0.0 +23499,73,15,41,0.0 +23499,48,12.75,37,0.0 +23499,12,38,12,0.0 +23499,46,12,23,0.0 +23499,76,18,18,0.0 +23500,22,21,42,0.0 +23500,23,9,49,0.0 +23500,75,7.75,44,0.0 +23500,72,34.8,21,0.0 +23500,32,32,41,0.0 +23500,14,23.25,38,0.0 +23500,36,19,34,0.0 +23500,46,12,8,0.0 +23500,5,21.35,33,0.0 +23500,77,13,46,0.0 +23500,27,43.9,11,0.0 +23500,44,19.45,9,0.0 +23500,19,9.2,11,0.0 +23500,3,10,24,0.0 +23500,28,45.6,20,0.0 +23500,16,17.45,10,0.0 +23500,18,62.5,8,0.0 +23500,52,7,45,0.0 +23500,41,9.65,40,0.0 +23500,38,263.5,37,0.0 +23500,55,24,4,0.0 +23500,31,12.5,1,0.0 +23500,45,9.5,10,0.0 +23500,65,21.05,26,0.0 +23500,29,123.79,5,0.0 +23500,7,30,13,0.0 +23500,50,16.25,20,0.0 +23500,12,38,8,0.0 +23500,15,15.5,39,0.0 +23500,74,10,19,0.0 +23500,33,2.5,42,0.0 +23500,17,39,44,0.0 +23500,42,14,45,0.0 +23500,61,28.5,30,0.0 +23500,26,31.23,25,0.0 +23500,40,18.4,49,0.0 +23500,21,10,31,0.0 +23500,53,32.8,25,0.0 +23500,57,19.5,13,0.0 +23500,35,18,36,0.0 +23500,1,18,5,0.0 +23500,58,13.25,11,0.0 +23500,73,15,25,0.0 +23500,8,40,1,0.0 +23500,34,14,4,0.0 +23500,63,43.9,38,0.0 +23500,49,20,5,0.0 +23500,71,21.5,36,0.0 +23500,56,38,8,0.0 +23500,10,31,13,0.0 +23500,30,25.89,33,0.0 +23500,76,18,29,0.0 +23500,25,14,33,0.0 +23500,39,18,49,0.0 +23500,11,21,48,0.0 +23500,48,12.75,32,0.0 +23500,37,26,19,0.0 +23500,69,36,48,0.0 +23501,52,7,25,0.0 +23501,16,17.45,30,0.0 +23501,27,43.9,36,0.0 +23501,62,49.3,5,0.0 +23501,32,32,29,0.0 +23501,76,18,6,0.0 +23501,54,7.45,27,0.0 +23501,65,21.05,35,0.0 +23501,7,30,7,0.0 +23501,50,16.25,6,0.0 +23501,35,18,29,0.0 +23501,23,9,12,0.0 +23501,44,19.45,29,0.0 +23501,5,21.35,46,0.0 +23501,66,17,47,0.0 +23501,36,19,47,0.0 +23501,12,38,39,0.0 +23501,24,4.5,14,0.0 +23501,41,9.65,30,0.0 +23501,67,14,26,0.0 +23501,1,18,10,0.0 +23501,68,12.5,35,0.0 +23501,19,9.2,34,0.0 +23501,20,81,42,0.0 +23501,48,12.75,39,0.0 +23501,53,32.8,49,0.0 +23501,31,12.5,11,0.0 +23501,22,21,2,0.0 +23501,49,20,21,0.0 +23501,15,15.5,50,0.0 +23501,37,26,2,0.0 +23501,72,34.8,9,0.0 +23501,69,36,21,0.0 +23501,51,53,49,0.0 +23501,26,31.23,27,0.0 +23501,77,13,1,0.0 +23501,75,7.75,17,0.0 +23501,64,33.25,7,0.0 +23501,73,15,2,0.0 +23501,18,62.5,12,0.0 +23501,33,2.5,21,0.0 +23501,46,12,31,0.0 +23501,30,25.89,39,0.0 +23501,8,40,12,0.0 +23501,39,18,22,0.0 +23501,58,13.25,46,0.0 +23501,6,25,22,0.0 +23501,4,22,9,0.0 +23501,63,43.9,5,0.0 +23501,47,9.5,48,0.0 +23501,60,34,32,0.0 +23501,9,97,14,0.0 +23501,25,14,30,0.0 +23501,34,14,34,0.0 +23501,17,39,2,0.0 +23501,29,123.79,16,0.0 +23501,28,45.6,31,0.0 +23501,70,15,4,0.0 +23501,71,21.5,47,0.0 +23501,74,10,35,0.0 +23501,13,6,35,0.0 +23501,61,28.5,38,0.0 +23501,56,38,19,0.0 +23501,57,19.5,44,0.0 +23501,2,19,12,0.0 +23501,38,263.5,32,0.0 +23501,3,10,46,0.0 +23501,21,10,35,0.0 +23501,45,9.5,6,0.0 +23501,43,46,8,0.0 +23501,55,24,15,0.0 +23502,24,4.5,30,0.0 +23502,73,15,31,0.0 +23502,21,10,31,0.0 +23502,66,17,4,0.0 +23502,7,30,24,0.0 +23502,71,21.5,6,0.0 +23502,19,9.2,14,0.0 +23502,70,15,10,0.0 +23502,32,32,41,0.0 +23502,28,45.6,10,0.0 +23502,47,9.5,40,0.0 +23502,15,15.5,26,0.0 +23502,63,43.9,10,0.0 +23502,23,9,24,0.0 +23502,17,39,2,0.0 +23502,68,12.5,10,0.0 +23502,26,31.23,39,0.0 +23502,9,97,10,0.0 +23502,54,7.45,14,0.0 +23503,5,21.35,14,0.0 +23503,45,9.5,50,0.0 +23503,30,25.89,28,0.0 +23503,54,7.45,43,0.0 +23503,36,19,2,0.0 +23503,57,19.5,33,0.0 +23503,60,34,29,0.0 +23503,9,97,43,0.0 +23503,39,18,8,0.0 +23503,7,30,14,0.0 +23503,14,23.25,23,0.0 +23503,27,43.9,18,0.0 +23503,46,12,21,0.0 +23503,4,22,24,0.0 +23503,74,10,44,0.0 +23503,32,32,23,0.0 +23503,15,15.5,8,0.0 +23503,59,55,20,0.0 +23503,55,24,31,0.0 +23503,75,7.75,30,0.0 +23503,73,15,13,0.0 +23503,13,6,15,0.0 +23503,23,9,4,0.0 +23503,64,33.25,43,0.0 +23503,62,49.3,21,0.0 +23503,25,14,26,0.0 +23503,34,14,11,0.0 +23503,21,10,49,0.0 +23503,77,13,47,0.0 +23503,43,46,29,0.0 +23503,16,17.45,16,0.0 +23503,61,28.5,20,0.0 +23503,52,7,42,0.0 +23503,69,36,25,0.0 +23503,10,31,11,0.0 +23503,3,10,1,0.0 +23503,6,25,24,0.0 +23503,71,21.5,45,0.0 +23503,33,2.5,42,0.0 +23503,49,20,47,0.0 +23503,56,38,9,0.0 +23503,58,13.25,42,0.0 +23503,11,21,42,0.0 +23503,37,26,45,0.0 +23503,24,4.5,7,0.0 +23503,66,17,4,0.0 +23503,12,38,42,0.0 +23503,48,12.75,3,0.0 +23503,17,39,48,0.0 +23503,28,45.6,46,0.0 +23503,47,9.5,14,0.0 +23503,35,18,36,0.0 +23503,41,9.65,42,0.0 +23503,67,14,45,0.0 +23503,18,62.5,39,0.0 +23503,65,21.05,23,0.0 +23503,31,12.5,22,0.0 +23503,26,31.23,41,0.0 +23503,42,14,44,0.0 +23503,63,43.9,14,0.0 +23503,50,16.25,7,0.0 +23503,76,18,11,0.0 +23503,40,18.4,46,0.0 +23503,44,19.45,4,0.0 +23503,38,263.5,3,0.0 +23503,19,9.2,23,0.0 +23503,22,21,24,0.0 +23503,72,34.8,9,0.0 +23503,8,40,15,0.0 +23503,2,19,23,0.0 +23503,20,81,11,0.0 +23503,1,18,1,0.0 +23504,17,39,15,0.0 +23504,26,31.23,47,0.0 +23504,66,17,15,0.0 +23504,69,36,27,0.0 +23504,41,9.65,32,0.0 +23504,34,14,9,0.0 +23504,9,97,11,0.0 +23504,10,31,40,0.0 +23504,53,32.8,22,0.0 +23504,59,55,33,0.0 +23504,32,32,39,0.0 +23504,31,12.5,7,0.0 +23505,10,31,23,0.0 +23505,37,26,20,0.0 +23505,24,4.5,12,0.0 +23505,29,123.79,40,0.0 +23505,20,81,36,0.0 +23505,38,263.5,6,0.0 +23505,28,45.6,3,0.0 +23505,72,34.8,20,0.0 +23505,3,10,9,0.0 +23505,64,33.25,34,0.0 +23505,77,13,33,0.0 +23505,15,15.5,47,0.0 +23505,48,12.75,25,0.0 +23505,14,23.25,8,0.0 +23505,36,19,36,0.0 +23505,50,16.25,3,0.0 +23505,18,62.5,31,0.0 +23505,30,25.89,2,0.0 +23505,25,14,25,0.0 +23505,32,32,34,0.0 +23505,61,28.5,6,0.0 +23505,2,19,24,0.0 +23505,19,9.2,50,0.0 +23505,74,10,25,0.0 +23505,67,14,27,0.0 +23505,70,15,7,0.0 +23505,40,18.4,27,0.0 +23505,66,17,38,0.0 +23505,1,18,46,0.0 +23505,35,18,49,0.0 +23505,68,12.5,27,0.0 +23505,8,40,44,0.0 +23505,44,19.45,39,0.0 +23505,41,9.65,16,0.0 +23505,13,6,10,0.0 +23505,27,43.9,17,0.0 +23505,52,7,8,0.0 +23505,12,38,47,0.0 +23505,62,49.3,17,0.0 +23505,22,21,13,0.0 +23505,5,21.35,23,0.0 +23505,31,12.5,45,0.0 +23505,39,18,13,0.0 +23505,4,22,33,0.0 +23505,7,30,46,0.0 +23505,57,19.5,33,0.0 +23505,75,7.75,3,0.0 +23506,62,49.3,49,0.0 +23506,46,12,42,0.0 +23506,31,12.5,39,0.0 +23506,40,18.4,10,0.0 +23506,76,18,23,0.0 +23506,69,36,31,0.0 +23506,16,17.45,2,0.0 +23506,13,6,16,0.0 +23506,23,9,20,0.0 +23506,48,12.75,13,0.0 +23506,43,46,16,0.0 +23506,42,14,12,0.0 +23506,18,62.5,20,0.0 +23506,22,21,18,0.0 +23506,56,38,21,0.0 +23506,77,13,8,0.0 +23506,66,17,4,0.0 +23506,44,19.45,17,0.0 +23506,65,21.05,30,0.0 +23506,47,9.5,35,0.0 +23507,67,14,8,0.0 +23507,49,20,38,0.0 +23507,6,25,38,0.0 +23507,54,7.45,23,0.0 +23507,28,45.6,35,0.0 +23507,21,10,6,0.0 +23507,57,19.5,15,0.0 +23507,73,15,10,0.0 +23507,64,33.25,47,0.0 +23507,29,123.79,23,0.0 +23507,74,10,36,0.0 +23507,37,26,36,0.0 +23507,22,21,9,0.0 +23507,31,12.5,43,0.0 +23507,27,43.9,21,0.0 +23507,50,16.25,20,0.0 +23507,56,38,14,0.0 +23507,20,81,16,0.0 +23507,19,9.2,43,0.0 +23507,10,31,38,0.0 +23507,32,32,41,0.0 +23507,2,19,29,0.0 +23507,39,18,5,0.0 +23507,34,14,39,0.0 +23507,52,7,7,0.0 +23507,58,13.25,30,0.0 +23507,26,31.23,43,0.0 +23507,25,14,24,0.0 +23507,15,15.5,25,0.0 +23507,77,13,3,0.0 +23507,16,17.45,41,0.0 +23507,45,9.5,13,0.0 +23507,14,23.25,7,0.0 +23507,43,46,12,0.0 +23507,68,12.5,25,0.0 +23507,30,25.89,30,0.0 +23507,36,19,18,0.0 +23507,40,18.4,44,0.0 +23507,5,21.35,40,0.0 +23507,38,263.5,40,0.0 +23507,4,22,21,0.0 +23507,48,12.75,40,0.0 +23507,53,32.8,25,0.0 +23507,1,18,41,0.0 +23507,12,38,36,0.0 +23507,9,97,41,0.0 +23507,55,24,30,0.0 +23507,75,7.75,21,0.0 +23507,70,15,43,0.0 +23507,3,10,44,0.0 +23507,24,4.5,24,0.0 +23507,35,18,45,0.0 +23507,66,17,33,0.0 +23507,61,28.5,42,0.0 +23507,51,53,40,0.0 +23507,69,36,39,0.0 +23507,23,9,4,0.0 +23507,33,2.5,22,0.0 +23507,41,9.65,48,0.0 +23507,8,40,48,0.0 +23507,47,9.5,27,0.0 +23507,18,62.5,12,0.0 +23507,63,43.9,7,0.0 +23507,7,30,6,0.0 +23507,76,18,30,0.0 +23507,46,12,42,0.0 +23507,59,55,13,0.0 +23507,11,21,44,0.0 +23508,1,18,8,0.0 +23508,23,9,2,0.0 +23508,63,43.9,29,0.0 +23508,64,33.25,44,0.0 +23508,52,7,13,0.0 +23508,24,4.5,31,0.0 +23508,29,123.79,14,0.0 +23508,44,19.45,50,0.0 +23508,47,9.5,22,0.0 +23508,25,14,42,0.0 +23508,33,2.5,41,0.0 +23509,15,15.5,48,0.0 +23509,24,4.5,40,0.0 +23509,29,123.79,8,0.0 +23509,53,32.8,14,0.0 +23509,49,20,31,0.0 +23509,34,14,44,0.0 +23509,52,7,6,0.0 +23509,44,19.45,25,0.0 +23509,6,25,4,0.0 +23509,61,28.5,17,0.0 +23509,46,12,35,0.0 +23509,39,18,49,0.0 +23509,43,46,20,0.0 +23509,35,18,42,0.0 +23509,63,43.9,50,0.0 +23509,58,13.25,50,0.0 +23509,11,21,28,0.0 +23509,18,62.5,26,0.0 +23509,67,14,13,0.0 +23509,74,10,15,0.0 +23509,69,36,3,0.0 +23509,10,31,42,0.0 +23509,57,19.5,18,0.0 +23509,38,263.5,33,0.0 +23509,2,19,46,0.0 +23509,22,21,27,0.0 +23509,45,9.5,49,0.0 +23510,10,31,42,0.0 +23510,40,18.4,18,0.0 +23510,1,18,35,0.0 +23510,45,9.5,4,0.0 +23510,55,24,10,0.0 +23510,34,14,24,0.0 +23510,76,18,31,0.0 +23510,20,81,27,0.0 +23510,30,25.89,43,0.0 +23510,5,21.35,10,0.0 +23510,38,263.5,37,0.0 +23510,65,21.05,37,0.0 +23510,29,123.79,9,0.0 +23510,22,21,49,0.0 +23510,52,7,41,0.0 +23510,58,13.25,33,0.0 +23510,53,32.8,29,0.0 +23510,64,33.25,43,0.0 +23510,49,20,21,0.0 +23510,23,9,50,0.0 +23510,31,12.5,31,0.0 +23510,3,10,37,0.0 +23510,63,43.9,47,0.0 +23510,66,17,2,0.0 +23510,62,49.3,15,0.0 +23510,61,28.5,40,0.0 +23510,14,23.25,30,0.0 +23510,37,26,40,0.0 +23510,59,55,24,0.0 +23510,21,10,37,0.0 +23510,56,38,10,0.0 +23510,6,25,19,0.0 +23510,70,15,42,0.0 +23510,33,2.5,45,0.0 +23510,41,9.65,1,0.0 +23510,75,7.75,17,0.0 +23510,36,19,46,0.0 +23510,42,14,40,0.0 +23510,57,19.5,14,0.0 +23510,7,30,26,0.0 +23510,16,17.45,18,0.0 +23510,39,18,25,0.0 +23510,35,18,11,0.0 +23510,50,16.25,26,0.0 +23510,27,43.9,9,0.0 +23510,12,38,45,0.0 +23510,15,15.5,42,0.0 +23510,26,31.23,3,0.0 +23511,63,43.9,39,0.0 +23511,21,10,32,0.0 +23511,10,31,32,0.0 +23511,36,19,23,0.0 +23511,40,18.4,8,0.0 +23511,17,39,29,0.0 +23511,23,9,31,0.0 +23511,4,22,17,0.0 +23511,58,13.25,35,0.0 +23511,66,17,13,0.0 +23511,49,20,42,0.0 +23511,11,21,32,0.0 +23511,67,14,47,0.0 +23511,52,7,43,0.0 +23511,72,34.8,22,0.0 +23511,68,12.5,19,0.0 +23511,60,34,36,0.0 +23511,55,24,31,0.0 +23511,51,53,8,0.0 +23511,5,21.35,36,0.0 +23511,64,33.25,48,0.0 +23511,14,23.25,40,0.0 +23511,76,18,20,0.0 +23512,22,21,24,0.0 +23512,74,10,25,0.0 +23512,13,6,16,0.0 +23512,42,14,15,0.0 +23512,11,21,5,0.0 +23512,69,36,12,0.0 +23512,33,2.5,49,0.0 +23512,52,7,41,0.0 +23512,61,28.5,30,0.0 +23512,3,10,5,0.0 +23512,30,25.89,5,0.0 +23512,21,10,10,0.0 +23512,7,30,38,0.0 +23512,12,38,41,0.0 +23513,37,26,41,0.0 +23513,40,18.4,1,0.0 +23513,68,12.5,40,0.0 +23513,2,19,2,0.0 +23513,73,15,9,0.0 +23513,43,46,5,0.0 +23513,53,32.8,46,0.0 +23513,67,14,1,0.0 +23513,3,10,35,0.0 +23513,31,12.5,43,0.0 +23513,14,23.25,9,0.0 +23513,56,38,15,0.0 +23513,20,81,16,0.0 +23513,46,12,28,0.0 +23513,69,36,37,0.0 +23513,23,9,6,0.0 +23513,74,10,13,0.0 +23513,21,10,32,0.0 +23513,58,13.25,16,0.0 +23513,64,33.25,16,0.0 +23513,18,62.5,29,0.0 +23513,76,18,18,0.0 +23513,44,19.45,24,0.0 +23513,36,19,40,0.0 +23513,54,7.45,28,0.0 +23513,51,53,35,0.0 +23513,28,45.6,10,0.0 +23513,63,43.9,18,0.0 +23513,42,14,12,0.0 +23514,11,21,42,0.0 +23514,76,18,43,0.0 +23514,73,15,49,0.0 +23514,39,18,3,0.0 +23514,70,15,16,0.0 +23514,38,263.5,34,0.0 +23514,5,21.35,48,0.0 +23514,30,25.89,35,0.0 +23514,6,25,49,0.0 +23514,25,14,28,0.0 +23514,40,18.4,3,0.0 +23514,57,19.5,18,0.0 +23514,7,30,19,0.0 +23514,69,36,28,0.0 +23514,58,13.25,22,0.0 +23514,68,12.5,21,0.0 +23514,21,10,17,0.0 +23514,65,21.05,40,0.0 +23514,67,14,31,0.0 +23514,72,34.8,35,0.0 +23514,50,16.25,38,0.0 +23514,31,12.5,27,0.0 +23514,35,18,14,0.0 +23514,10,31,12,0.0 +23514,62,49.3,33,0.0 +23514,42,14,30,0.0 +23514,46,12,30,0.0 +23514,13,6,28,0.0 +23514,4,22,5,0.0 +23514,22,21,47,0.0 +23514,27,43.9,25,0.0 +23514,28,45.6,44,0.0 +23514,44,19.45,32,0.0 +23514,2,19,37,0.0 +23514,45,9.5,41,0.0 +23514,66,17,14,0.0 +23514,34,14,33,0.0 +23514,24,4.5,16,0.0 +23514,64,33.25,27,0.0 +23514,8,40,42,0.0 +23514,63,43.9,20,0.0 +23514,41,9.65,31,0.0 +23514,16,17.45,12,0.0 +23514,29,123.79,26,0.0 +23514,47,9.5,15,0.0 +23514,43,46,48,0.0 +23514,75,7.75,40,0.0 +23514,32,32,28,0.0 +23514,37,26,18,0.0 +23514,36,19,45,0.0 +23514,48,12.75,45,0.0 +23514,60,34,9,0.0 +23514,17,39,17,0.0 +23514,33,2.5,22,0.0 +23514,54,7.45,26,0.0 +23514,9,97,20,0.0 +23514,51,53,17,0.0 +23514,61,28.5,4,0.0 +23514,3,10,22,0.0 +23514,71,21.5,49,0.0 +23514,53,32.8,9,0.0 +23514,49,20,2,0.0 +23514,74,10,39,0.0 +23514,14,23.25,8,0.0 +23514,18,62.5,30,0.0 +23514,1,18,10,0.0 +23514,23,9,9,0.0 +23515,24,4.5,50,0.0 +23515,25,14,30,0.0 +23515,75,7.75,34,0.0 +23515,51,53,35,0.0 +23515,13,6,49,0.0 +23515,21,10,3,0.0 +23515,64,33.25,29,0.0 +23515,1,18,1,0.0 +23516,4,22,7,0.0 +23516,57,19.5,21,0.0 +23516,11,21,23,0.0 +23516,15,15.5,12,0.0 +23516,60,34,41,0.0 +23516,77,13,46,0.0 +23516,29,123.79,7,0.0 +23516,43,46,13,0.0 +23516,55,24,39,0.0 +23516,36,19,33,0.0 +23516,19,9.2,29,0.0 +23516,38,263.5,28,0.0 +23516,51,53,23,0.0 +23516,37,26,49,0.0 +23516,41,9.65,19,0.0 +23516,26,31.23,34,0.0 +23516,61,28.5,32,0.0 +23516,39,18,36,0.0 +23516,7,30,21,0.0 +23516,18,62.5,48,0.0 +23516,20,81,8,0.0 +23516,72,34.8,18,0.0 +23516,13,6,1,0.0 +23516,40,18.4,34,0.0 +23516,23,9,44,0.0 +23517,43,46,34,0.0 +23517,21,10,19,0.0 +23517,31,12.5,37,0.0 +23517,64,33.25,17,0.0 +23518,72,34.8,8,0.0 +23518,49,20,34,0.0 +23518,47,9.5,4,0.0 +23518,61,28.5,43,0.0 +23518,24,4.5,2,0.0 +23518,58,13.25,5,0.0 +23518,67,14,22,0.0 +23518,75,7.75,36,0.0 +23518,46,12,44,0.0 +23518,5,21.35,17,0.0 +23518,19,9.2,10,0.0 +23518,31,12.5,36,0.0 +23519,29,123.79,1,0.0 +23519,53,32.8,8,0.0 +23519,35,18,14,0.0 +23519,60,34,25,0.0 +23519,42,14,42,0.0 +23519,54,7.45,33,0.0 +23519,22,21,24,0.0 +23519,77,13,10,0.0 +23519,5,21.35,46,0.0 +23519,74,10,42,0.0 +23519,73,15,28,0.0 +23519,17,39,45,0.0 +23519,7,30,33,0.0 +23519,59,55,9,0.0 +23519,4,22,38,0.0 +23519,45,9.5,48,0.0 +23519,46,12,8,0.0 +23519,40,18.4,2,0.0 +23519,20,81,44,0.0 +23519,76,18,38,0.0 +23519,39,18,7,0.0 +23519,21,10,3,0.0 +23519,52,7,16,0.0 +23519,24,4.5,34,0.0 +23519,62,49.3,17,0.0 +23519,1,18,29,0.0 +23519,55,24,26,0.0 +23519,32,32,11,0.0 +23519,51,53,13,0.0 +23519,6,25,35,0.0 +23519,3,10,44,0.0 +23519,27,43.9,30,0.0 +23519,12,38,24,0.0 +23519,13,6,12,0.0 +23519,30,25.89,31,0.0 +23519,25,14,24,0.0 +23519,58,13.25,48,0.0 +23519,43,46,22,0.0 +23519,8,40,18,0.0 +23519,18,62.5,10,0.0 +23519,57,19.5,41,0.0 +23519,14,23.25,24,0.0 +23519,64,33.25,4,0.0 +23519,36,19,42,0.0 +23519,10,31,36,0.0 +23519,68,12.5,24,0.0 +23519,31,12.5,22,0.0 +23520,72,34.8,12,0.0 +23520,27,43.9,28,0.0 +23520,17,39,41,0.0 +23520,74,10,14,0.0 +23520,16,17.45,29,0.0 +23520,56,38,34,0.0 +23520,23,9,7,0.0 +23520,12,38,39,0.0 +23520,6,25,21,0.0 +23520,1,18,35,0.0 +23520,33,2.5,23,0.0 +23520,68,12.5,5,0.0 +23520,19,9.2,16,0.0 +23520,21,10,28,0.0 +23520,50,16.25,32,0.0 +23520,51,53,5,0.0 +23520,52,7,30,0.0 +23520,7,30,50,0.0 +23520,49,20,23,0.0 +23520,53,32.8,18,0.0 +23520,63,43.9,3,0.0 +23520,9,97,1,0.0 +23520,36,19,24,0.0 +23520,5,21.35,47,0.0 +23520,39,18,10,0.0 +23520,76,18,32,0.0 +23520,34,14,28,0.0 +23520,77,13,39,0.0 +23520,14,23.25,48,0.0 +23520,47,9.5,50,0.0 +23520,26,31.23,9,0.0 +23520,69,36,1,0.0 +23520,40,18.4,13,0.0 +23520,62,49.3,26,0.0 +23520,41,9.65,35,0.0 +23520,65,21.05,50,0.0 +23520,71,21.5,14,0.0 +23520,30,25.89,28,0.0 +23520,10,31,28,0.0 +23520,15,15.5,42,0.0 +23520,22,21,30,0.0 +23520,48,12.75,13,0.0 +23520,70,15,46,0.0 +23520,20,81,42,0.0 +23520,58,13.25,45,0.0 +23521,62,49.3,14,0.0 +23521,46,12,19,0.0 +23521,57,19.5,36,0.0 +23521,33,2.5,39,0.0 +23521,2,19,11,0.0 +23521,50,16.25,9,0.0 +23521,28,45.6,50,0.0 +23521,64,33.25,9,0.0 +23521,20,81,38,0.0 +23521,30,25.89,39,0.0 +23521,45,9.5,11,0.0 +23521,65,21.05,18,0.0 +23521,35,18,44,0.0 +23521,25,14,43,0.0 +23521,66,17,13,0.0 +23521,31,12.5,10,0.0 +23521,1,18,12,0.0 +23522,61,28.5,13,0.0 +23522,11,21,40,0.0 +23522,1,18,45,0.0 +23522,56,38,8,0.0 +23522,45,9.5,49,0.0 +23522,9,97,34,0.0 +23522,71,21.5,1,0.0 +23522,50,16.25,29,0.0 +23522,54,7.45,8,0.0 +23522,35,18,12,0.0 +23522,43,46,40,0.0 +23522,21,10,19,0.0 +23522,74,10,49,0.0 +23522,26,31.23,18,0.0 +23522,51,53,30,0.0 +23522,19,9.2,36,0.0 +23522,59,55,36,0.0 +23522,22,21,8,0.0 +23522,3,10,38,0.0 +23522,5,21.35,50,0.0 +23522,60,34,13,0.0 +23522,12,38,4,0.0 +23522,55,24,36,0.0 +23522,31,12.5,36,0.0 +23522,68,12.5,47,0.0 +23522,72,34.8,23,0.0 +23522,44,19.45,20,0.0 +23522,52,7,26,0.0 +23522,2,19,4,0.0 +23522,39,18,38,0.0 +23522,69,36,23,0.0 +23522,41,9.65,42,0.0 +23522,15,15.5,6,0.0 +23522,76,18,42,0.0 +23522,75,7.75,36,0.0 +23522,25,14,4,0.0 +23522,49,20,32,0.0 +23522,77,13,15,0.0 +23522,6,25,10,0.0 +23522,4,22,45,0.0 +23522,17,39,25,0.0 +23522,13,6,50,0.0 +23522,7,30,6,0.0 +23522,73,15,36,0.0 +23523,25,14,24,0.0 +23523,14,23.25,21,0.0 +23523,23,9,50,0.0 +23523,5,21.35,33,0.0 +23523,17,39,42,0.0 +23523,77,13,6,0.0 +23523,28,45.6,32,0.0 +23523,32,32,29,0.0 +23523,30,25.89,30,0.0 +23523,8,40,28,0.0 +23523,76,18,41,0.0 +23523,34,14,8,0.0 +23523,24,4.5,7,0.0 +23523,64,33.25,29,0.0 +23523,46,12,12,0.0 +23523,29,123.79,27,0.0 +23523,38,263.5,31,0.0 +23523,22,21,24,0.0 +23523,65,21.05,42,0.0 +23523,70,15,50,0.0 +23523,40,18.4,40,0.0 +23523,2,19,45,0.0 +23523,6,25,43,0.0 +23523,58,13.25,23,0.0 +23523,71,21.5,12,0.0 +23524,5,21.35,8,0.0 +23524,66,17,6,0.0 +23524,21,10,32,0.0 +23524,54,7.45,32,0.0 +23524,45,9.5,13,0.0 +23524,43,46,11,0.0 +23524,35,18,26,0.0 +23525,45,9.5,42,0.0 +23525,76,18,11,0.0 +23525,33,2.5,3,0.0 +23525,22,21,30,0.0 +23525,35,18,28,0.0 +23525,44,19.45,11,0.0 +23525,25,14,45,0.0 +23525,70,15,32,0.0 +23525,20,81,21,0.0 +23525,40,18.4,2,0.0 +23525,41,9.65,3,0.0 +23525,75,7.75,42,0.0 +23525,69,36,16,0.0 +23525,24,4.5,46,0.0 +23525,52,7,7,0.0 +23525,32,32,46,0.0 +23525,62,49.3,50,0.0 +23525,11,21,14,0.0 +23525,7,30,40,0.0 +23525,3,10,4,0.0 +23525,48,12.75,34,0.0 +23525,28,45.6,34,0.0 +23525,46,12,6,0.0 +23525,51,53,29,0.0 +23525,29,123.79,38,0.0 +23525,9,97,21,0.0 +23525,31,12.5,37,0.0 +23525,73,15,23,0.0 +23525,60,34,13,0.0 +23525,64,33.25,48,0.0 +23525,37,26,25,0.0 +23525,54,7.45,10,0.0 +23525,74,10,24,0.0 +23525,5,21.35,13,0.0 +23525,18,62.5,37,0.0 +23525,55,24,46,0.0 +23525,68,12.5,5,0.0 +23525,65,21.05,12,0.0 +23525,56,38,40,0.0 +23525,50,16.25,29,0.0 +23525,63,43.9,34,0.0 +23525,53,32.8,7,0.0 +23525,61,28.5,18,0.0 +23525,71,21.5,5,0.0 +23525,17,39,6,0.0 +23525,16,17.45,39,0.0 +23525,14,23.25,5,0.0 +23525,38,263.5,28,0.0 +23525,43,46,34,0.0 +23525,1,18,30,0.0 +23525,15,15.5,37,0.0 +23526,45,9.5,9,0.0 +23526,60,34,3,0.0 +23526,13,6,16,0.0 +23526,24,4.5,50,0.0 +23526,12,38,42,0.0 +23526,5,21.35,14,0.0 +23526,43,46,38,0.0 +23526,73,15,9,0.0 +23526,41,9.65,4,0.0 +23526,66,17,19,0.0 +23526,72,34.8,48,0.0 +23526,70,15,16,0.0 +23526,36,19,31,0.0 +23526,71,21.5,44,0.0 +23526,42,14,50,0.0 +23526,33,2.5,15,0.0 +23526,8,40,26,0.0 +23526,64,33.25,14,0.0 +23526,68,12.5,36,0.0 +23526,1,18,47,0.0 +23526,19,9.2,7,0.0 +23526,6,25,13,0.0 +23526,75,7.75,44,0.0 +23526,4,22,9,0.0 +23526,54,7.45,25,0.0 +23526,77,13,40,0.0 +23526,3,10,1,0.0 +23526,58,13.25,23,0.0 +23526,29,123.79,21,0.0 +23526,25,14,33,0.0 +23526,17,39,8,0.0 +23526,16,17.45,8,0.0 +23526,65,21.05,9,0.0 +23526,21,10,7,0.0 +23526,31,12.5,44,0.0 +23526,26,31.23,11,0.0 +23526,39,18,48,0.0 +23526,55,24,40,0.0 +23526,32,32,17,0.0 +23526,47,9.5,20,0.0 +23526,37,26,32,0.0 +23526,10,31,3,0.0 +23527,9,97,39,0.0 +23527,7,30,19,0.0 +23527,29,123.79,39,0.0 +23527,15,15.5,10,0.0 +23527,6,25,21,0.0 +23527,20,81,19,0.0 +23527,61,28.5,18,0.0 +23527,75,7.75,19,0.0 +23527,66,17,13,0.0 +23527,60,34,29,0.0 +23527,63,43.9,7,0.0 +23527,41,9.65,12,0.0 +23527,13,6,22,0.0 +23527,65,21.05,2,0.0 +23527,33,2.5,49,0.0 +23527,51,53,29,0.0 +23527,58,13.25,5,0.0 +23527,72,34.8,12,0.0 +23527,28,45.6,43,0.0 +23527,16,17.45,1,0.0 +23527,46,12,12,0.0 +23527,12,38,35,0.0 +23527,59,55,25,0.0 +23527,38,263.5,19,0.0 +23527,3,10,34,0.0 +23527,17,39,11,0.0 +23527,8,40,42,0.0 +23527,47,9.5,10,0.0 +23527,11,21,13,0.0 +23527,55,24,33,0.0 +23527,19,9.2,44,0.0 +23527,68,12.5,8,0.0 +23527,44,19.45,38,0.0 +23527,25,14,27,0.0 +23527,1,18,8,0.0 +23527,39,18,18,0.0 +23527,42,14,10,0.0 +23527,48,12.75,36,0.0 +23527,27,43.9,11,0.0 +23527,43,46,25,0.0 +23527,37,26,18,0.0 +23527,36,19,10,0.0 +23527,71,21.5,23,0.0 +23527,40,18.4,9,0.0 +23527,10,31,18,0.0 +23527,56,38,31,0.0 +23527,76,18,48,0.0 +23527,26,31.23,46,0.0 +23527,77,13,32,0.0 +23528,60,34,44,0.0 +23528,53,32.8,25,0.0 +23528,19,9.2,5,0.0 +23528,51,53,13,0.0 +23528,24,4.5,12,0.0 +23528,6,25,50,0.0 +23528,4,22,18,0.0 +23528,28,45.6,19,0.0 +23528,39,18,41,0.0 +23528,57,19.5,17,0.0 +23528,64,33.25,40,0.0 +23528,49,20,25,0.0 +23528,36,19,17,0.0 +23528,70,15,21,0.0 +23528,37,26,2,0.0 +23528,56,38,1,0.0 +23528,3,10,12,0.0 +23528,33,2.5,22,0.0 +23528,11,21,16,0.0 +23528,58,13.25,36,0.0 +23528,72,34.8,36,0.0 +23528,20,81,17,0.0 +23528,16,17.45,4,0.0 +23528,21,10,26,0.0 +23528,5,21.35,20,0.0 +23528,67,14,40,0.0 +23528,12,38,20,0.0 +23528,2,19,26,0.0 +23528,63,43.9,47,0.0 +23528,25,14,50,0.0 +23528,15,15.5,27,0.0 +23528,26,31.23,14,0.0 +23528,23,9,38,0.0 +23528,1,18,41,0.0 +23528,55,24,11,0.0 +23528,13,6,46,0.0 +23528,29,123.79,45,0.0 +23528,76,18,2,0.0 +23528,74,10,47,0.0 +23528,54,7.45,49,0.0 +23528,7,30,29,0.0 +23528,77,13,34,0.0 +23529,58,13.25,16,0.0 +23529,44,19.45,15,0.0 +23529,63,43.9,21,0.0 +23529,40,18.4,8,0.0 +23529,26,31.23,30,0.0 +23529,10,31,27,0.0 +23529,62,49.3,38,0.0 +23529,27,43.9,28,0.0 +23529,36,19,23,0.0 +23529,35,18,11,0.0 +23529,24,4.5,26,0.0 +23529,71,21.5,17,0.0 +23529,57,19.5,8,0.0 +23529,39,18,44,0.0 +23529,12,38,44,0.0 +23529,11,21,7,0.0 +23529,34,14,48,0.0 +23529,49,20,1,0.0 +23529,19,9.2,19,0.0 +23529,4,22,25,0.0 +23529,60,34,40,0.0 +23529,42,14,37,0.0 +23529,41,9.65,36,0.0 +23529,45,9.5,19,0.0 +23529,30,25.89,33,0.0 +23529,54,7.45,47,0.0 +23529,7,30,28,0.0 +23529,43,46,29,0.0 +23530,33,2.5,7,0.0 +23530,67,14,38,0.0 +23530,56,38,5,0.0 +23530,12,38,15,0.0 +23530,68,12.5,4,0.0 +23530,43,46,7,0.0 +23530,45,9.5,19,0.0 +23530,51,53,38,0.0 +23530,22,21,19,0.0 +23530,59,55,5,0.0 +23530,3,10,48,0.0 +23530,35,18,47,0.0 +23530,13,6,5,0.0 +23530,44,19.45,38,0.0 +23530,58,13.25,26,0.0 +23530,4,22,47,0.0 +23530,63,43.9,44,0.0 +23530,48,12.75,6,0.0 +23530,25,14,23,0.0 +23530,70,15,43,0.0 +23530,49,20,45,0.0 +23530,10,31,8,0.0 +23530,34,14,6,0.0 +23530,11,21,24,0.0 +23530,14,23.25,35,0.0 +23530,39,18,13,0.0 +23530,47,9.5,37,0.0 +23530,1,18,32,0.0 +23530,41,9.65,30,0.0 +23530,6,25,4,0.0 +23530,26,31.23,26,0.0 +23530,60,34,21,0.0 +23530,5,21.35,46,0.0 +23530,30,25.89,14,0.0 +23530,9,97,29,0.0 +23530,65,21.05,29,0.0 +23530,21,10,11,0.0 +23530,8,40,47,0.0 +23530,17,39,47,0.0 +23530,38,263.5,3,0.0 +23530,72,34.8,15,0.0 +23530,54,7.45,37,0.0 +23530,18,62.5,25,0.0 +23530,32,32,27,0.0 +23530,15,15.5,13,0.0 +23531,32,32,3,0.0 +23531,41,9.65,8,0.0 +23531,19,9.2,31,0.0 +23531,4,22,41,0.0 +23531,60,34,39,0.0 +23531,42,14,25,0.0 +23531,50,16.25,29,0.0 +23531,16,17.45,31,0.0 +23531,61,28.5,35,0.0 +23531,68,12.5,11,0.0 +23531,47,9.5,13,0.0 +23531,3,10,23,0.0 +23531,73,15,47,0.0 +23531,2,19,23,0.0 +23531,38,263.5,48,0.0 +23531,52,7,50,0.0 +23531,40,18.4,28,0.0 +23531,21,10,45,0.0 +23531,36,19,16,0.0 +23531,7,30,28,0.0 +23531,55,24,9,0.0 +23531,10,31,26,0.0 +23531,51,53,42,0.0 +23531,28,45.6,3,0.0 +23531,56,38,48,0.0 +23531,74,10,38,0.0 +23531,39,18,41,0.0 +23531,30,25.89,35,0.0 +23531,24,4.5,27,0.0 +23531,31,12.5,1,0.0 +23531,44,19.45,9,0.0 +23531,67,14,12,0.0 +23531,33,2.5,20,0.0 +23531,69,36,31,0.0 +23531,5,21.35,35,0.0 +23531,76,18,25,0.0 +23531,59,55,42,0.0 +23531,27,43.9,21,0.0 +23531,48,12.75,36,0.0 +23531,72,34.8,29,0.0 +23531,14,23.25,30,0.0 +23531,43,46,5,0.0 +23531,25,14,35,0.0 +23531,71,21.5,43,0.0 +23531,35,18,33,0.0 +23531,12,38,28,0.0 +23531,45,9.5,29,0.0 +23531,15,15.5,6,0.0 +23531,20,81,3,0.0 +23531,29,123.79,13,0.0 +23531,17,39,17,0.0 +23531,1,18,40,0.0 +23531,63,43.9,40,0.0 +23531,66,17,12,0.0 +23531,70,15,5,0.0 +23531,23,9,6,0.0 +23531,49,20,38,0.0 +23531,65,21.05,27,0.0 +23531,11,21,4,0.0 +23531,58,13.25,27,0.0 +23531,37,26,36,0.0 +23531,62,49.3,5,0.0 +23531,8,40,10,0.0 +23531,6,25,32,0.0 +23531,22,21,47,0.0 +23531,18,62.5,8,0.0 +23531,53,32.8,48,0.0 +23531,64,33.25,14,0.0 +23531,9,97,42,0.0 +23531,26,31.23,42,0.0 +23531,34,14,24,0.0 +23531,75,7.75,46,0.0 +23531,13,6,26,0.0 +23531,57,19.5,24,0.0 +23531,46,12,2,0.0 +23531,77,13,46,0.0 +23532,16,17.45,49,0.0 +23532,51,53,31,0.0 +23532,72,34.8,34,0.0 +23532,36,19,15,0.0 +23532,29,123.79,34,0.0 +23532,68,12.5,50,0.0 +23532,6,25,25,0.0 +23532,50,16.25,30,0.0 +23532,60,34,5,0.0 +23532,3,10,38,0.0 +23532,71,21.5,39,0.0 +23532,24,4.5,23,0.0 +23532,15,15.5,47,0.0 +23532,23,9,4,0.0 +23532,18,62.5,47,0.0 +23532,47,9.5,26,0.0 +23532,28,45.6,50,0.0 +23532,14,23.25,19,0.0 +23532,61,28.5,35,0.0 +23532,76,18,21,0.0 +23532,67,14,23,0.0 +23532,66,17,15,0.0 +23532,48,12.75,47,0.0 +23532,33,2.5,15,0.0 +23532,40,18.4,4,0.0 +23532,58,13.25,20,0.0 +23532,2,19,17,0.0 +23532,37,26,31,0.0 +23532,63,43.9,1,0.0 +23532,38,263.5,9,0.0 +23532,44,19.45,5,0.0 +23532,13,6,31,0.0 +23532,7,30,5,0.0 +23532,77,13,5,0.0 +23532,64,33.25,47,0.0 +23532,26,31.23,30,0.0 +23532,32,32,26,0.0 +23532,42,14,25,0.0 +23532,56,38,5,0.0 +23532,74,10,46,0.0 +23532,34,14,10,0.0 +23532,19,9.2,32,0.0 +23532,41,9.65,14,0.0 +23532,27,43.9,9,0.0 +23532,17,39,13,0.0 +23532,8,40,12,0.0 +23532,22,21,10,0.0 +23532,11,21,21,0.0 +23532,9,97,26,0.0 +23532,1,18,23,0.0 +23532,70,15,7,0.0 +23532,65,21.05,18,0.0 +23532,4,22,14,0.0 +23532,73,15,34,0.0 +23532,62,49.3,40,0.0 +23532,31,12.5,46,0.0 +23532,57,19.5,48,0.0 +23532,53,32.8,25,0.0 +23532,10,31,31,0.0 +23532,30,25.89,8,0.0 +23532,21,10,37,0.0 +23532,12,38,8,0.0 +23532,49,20,13,0.0 +23532,75,7.75,17,0.0 +23532,52,7,27,0.0 +23532,39,18,27,0.0 +23532,5,21.35,31,0.0 +23532,20,81,32,0.0 +23533,27,43.9,47,0.0 +23533,2,19,20,0.0 +23533,60,34,11,0.0 +23533,1,18,46,0.0 +23533,63,43.9,41,0.0 +23533,35,18,19,0.0 +23533,32,32,34,0.0 +23533,65,21.05,31,0.0 +23533,5,21.35,38,0.0 +23533,46,12,1,0.0 +23533,22,21,38,0.0 +23533,10,31,41,0.0 +23533,38,263.5,25,0.0 +23533,54,7.45,40,0.0 +23533,13,6,15,0.0 +23533,47,9.5,30,0.0 +23533,9,97,28,0.0 +23533,26,31.23,16,0.0 +23533,17,39,26,0.0 +23533,28,45.6,20,0.0 +23533,44,19.45,2,0.0 +23533,39,18,13,0.0 +23533,66,17,26,0.0 +23533,19,9.2,21,0.0 +23533,12,38,25,0.0 +23533,18,62.5,49,0.0 +23533,71,21.5,19,0.0 +23533,56,38,46,0.0 +23533,55,24,30,0.0 +23533,69,36,13,0.0 +23533,49,20,1,0.0 +23533,77,13,9,0.0 +23533,73,15,23,0.0 +23533,59,55,42,0.0 +23533,57,19.5,29,0.0 +23533,51,53,38,0.0 +23533,4,22,37,0.0 +23533,48,12.75,19,0.0 +23533,43,46,14,0.0 +23533,52,7,50,0.0 +23533,29,123.79,48,0.0 +23533,24,4.5,1,0.0 +23533,7,30,33,0.0 +23533,40,18.4,40,0.0 +23533,72,34.8,19,0.0 +23533,58,13.25,21,0.0 +23533,68,12.5,46,0.0 +23533,75,7.75,21,0.0 +23533,74,10,7,0.0 +23533,6,25,11,0.0 +23533,16,17.45,19,0.0 +23533,3,10,44,0.0 +23533,50,16.25,7,0.0 +23533,45,9.5,40,0.0 +23533,34,14,49,0.0 +23533,62,49.3,9,0.0 +23533,53,32.8,32,0.0 +23533,8,40,38,0.0 +23533,64,33.25,35,0.0 +23533,30,25.89,13,0.0 +23533,76,18,1,0.0 +23533,36,19,20,0.0 +23533,15,15.5,17,0.0 +23534,16,17.45,4,0.0 +23534,5,21.35,27,0.0 +23534,54,7.45,42,0.0 +23534,67,14,45,0.0 +23534,36,19,46,0.0 +23534,18,62.5,8,0.0 +23534,32,32,13,0.0 +23534,59,55,8,0.0 +23534,28,45.6,16,0.0 +23534,53,32.8,46,0.0 +23534,39,18,49,0.0 +23534,52,7,31,0.0 +23534,42,14,16,0.0 +23534,48,12.75,40,0.0 +23534,10,31,3,0.0 +23534,17,39,37,0.0 +23534,8,40,35,0.0 +23534,35,18,15,0.0 +23534,72,34.8,21,0.0 +23534,23,9,29,0.0 +23534,37,26,29,0.0 +23534,2,19,24,0.0 +23534,50,16.25,21,0.0 +23534,9,97,35,0.0 +23534,4,22,34,0.0 +23534,38,263.5,16,0.0 +23534,76,18,38,0.0 +23534,33,2.5,46,0.0 +23534,46,12,19,0.0 +23534,66,17,13,0.0 +23534,44,19.45,26,0.0 +23534,63,43.9,27,0.0 +23534,43,46,26,0.0 +23534,68,12.5,37,0.0 +23534,55,24,5,0.0 +23534,25,14,9,0.0 +23534,21,10,30,0.0 +23534,7,30,3,0.0 +23534,26,31.23,44,0.0 +23534,65,21.05,22,0.0 +23534,69,36,38,0.0 +23534,70,15,7,0.0 +23534,73,15,47,0.0 +23534,41,9.65,19,0.0 +23534,62,49.3,49,0.0 +23534,34,14,48,0.0 +23534,51,53,12,0.0 +23534,77,13,24,0.0 +23534,40,18.4,4,0.0 +23534,45,9.5,7,0.0 +23534,14,23.25,30,0.0 +23534,58,13.25,7,0.0 +23534,60,34,35,0.0 +23535,37,26,31,0.0 +23535,45,9.5,33,0.0 +23535,47,9.5,43,0.0 +23535,58,13.25,46,0.0 +23535,11,21,10,0.0 +23535,70,15,33,0.0 +23535,5,21.35,43,0.0 +23535,17,39,26,0.0 +23535,67,14,18,0.0 +23535,14,23.25,6,0.0 +23535,44,19.45,14,0.0 +23535,8,40,4,0.0 +23535,1,18,38,0.0 +23535,46,12,12,0.0 +23535,33,2.5,26,0.0 +23535,31,12.5,18,0.0 +23535,6,25,11,0.0 +23535,76,18,17,0.0 +23535,66,17,50,0.0 +23535,57,19.5,34,0.0 +23535,13,6,24,0.0 +23535,75,7.75,23,0.0 +23535,16,17.45,5,0.0 +23535,2,19,21,0.0 +23535,60,34,25,0.0 +23535,56,38,45,0.0 +23535,7,30,25,0.0 +23536,34,14,34,0.0 +23536,55,24,11,0.0 +23536,31,12.5,50,0.0 +23536,9,97,25,0.0 +23536,19,9.2,33,0.0 +23536,74,10,30,0.0 +23536,70,15,40,0.0 +23536,36,19,22,0.0 +23536,46,12,14,0.0 +23536,73,15,27,0.0 +23536,24,4.5,11,0.0 +23536,2,19,20,0.0 +23536,61,28.5,29,0.0 +23536,15,15.5,23,0.0 +23536,63,43.9,24,0.0 +23536,65,21.05,36,0.0 +23536,53,32.8,43,0.0 +23536,42,14,47,0.0 +23536,37,26,41,0.0 +23536,25,14,13,0.0 +23536,71,21.5,46,0.0 +23536,13,6,14,0.0 +23536,67,14,40,0.0 +23536,32,32,33,0.0 +23536,10,31,26,0.0 +23536,45,9.5,7,0.0 +23536,44,19.45,24,0.0 +23536,14,23.25,38,0.0 +23536,66,17,44,0.0 +23536,59,55,32,0.0 +23536,56,38,43,0.0 +23536,57,19.5,46,0.0 +23536,51,53,36,0.0 +23536,12,38,24,0.0 +23536,39,18,1,0.0 +23536,62,49.3,47,0.0 +23536,30,25.89,46,0.0 +23536,7,30,50,0.0 +23536,6,25,37,0.0 +23536,38,263.5,16,0.0 +23536,58,13.25,13,0.0 +23536,47,9.5,1,0.0 +23536,60,34,32,0.0 +23536,3,10,24,0.0 +23536,23,9,43,0.0 +23536,48,12.75,34,0.0 +23536,33,2.5,6,0.0 +23536,8,40,15,0.0 +23536,5,21.35,3,0.0 +23536,27,43.9,48,0.0 +23537,14,23.25,13,0.0 +23537,29,123.79,35,0.0 +23537,3,10,36,0.0 +23537,30,25.89,30,0.0 +23537,44,19.45,46,0.0 +23537,37,26,7,0.0 +23537,34,14,24,0.0 +23537,42,14,4,0.0 +23537,27,43.9,24,0.0 +23537,64,33.25,25,0.0 +23537,20,81,46,0.0 +23537,38,263.5,42,0.0 +23537,49,20,47,0.0 +23538,75,7.75,46,0.0 +23538,55,24,18,0.0 +23538,13,6,36,0.0 +23538,62,49.3,18,0.0 +23538,16,17.45,24,0.0 +23538,56,38,31,0.0 +23538,63,43.9,21,0.0 +23538,31,12.5,48,0.0 +23538,58,13.25,40,0.0 +23538,57,19.5,34,0.0 +23538,47,9.5,8,0.0 +23538,48,12.75,34,0.0 +23538,6,25,20,0.0 +23538,32,32,27,0.0 +23538,19,9.2,34,0.0 +23538,12,38,3,0.0 +23538,29,123.79,49,0.0 +23538,37,26,14,0.0 +23538,43,46,22,0.0 +23538,54,7.45,37,0.0 +23538,5,21.35,37,0.0 +23538,67,14,3,0.0 +23538,15,15.5,40,0.0 +23538,22,21,5,0.0 +23538,61,28.5,11,0.0 +23538,49,20,5,0.0 +23538,18,62.5,22,0.0 +23538,30,25.89,35,0.0 +23538,51,53,48,0.0 +23538,44,19.45,10,0.0 +23538,35,18,23,0.0 +23538,9,97,27,0.0 +23538,46,12,43,0.0 +23538,42,14,22,0.0 +23538,50,16.25,39,0.0 +23538,41,9.65,37,0.0 +23538,68,12.5,17,0.0 +23538,34,14,29,0.0 +23538,10,31,7,0.0 +23538,28,45.6,15,0.0 +23538,4,22,24,0.0 +23538,1,18,5,0.0 +23538,60,34,25,0.0 +23538,45,9.5,43,0.0 +23538,11,21,33,0.0 +23538,76,18,36,0.0 +23538,53,32.8,43,0.0 +23538,27,43.9,5,0.0 +23538,38,263.5,46,0.0 +23538,7,30,28,0.0 +23538,24,4.5,48,0.0 +23538,69,36,18,0.0 +23538,39,18,49,0.0 +23538,8,40,15,0.0 +23538,64,33.25,32,0.0 +23538,65,21.05,40,0.0 +23538,26,31.23,20,0.0 +23538,21,10,20,0.0 +23538,2,19,11,0.0 +23538,25,14,39,0.0 +23538,36,19,31,0.0 +23538,23,9,7,0.0 +23538,72,34.8,28,0.0 +23538,71,21.5,45,0.0 +23538,70,15,45,0.0 +23539,70,15,39,0.0 +23539,24,4.5,10,0.0 +23539,47,9.5,36,0.0 +23539,71,21.5,23,0.0 +23539,51,53,13,0.0 +23539,4,22,25,0.0 +23539,29,123.79,9,0.0 +23539,36,19,24,0.0 +23539,63,43.9,49,0.0 +23539,56,38,38,0.0 +23539,45,9.5,13,0.0 +23539,33,2.5,10,0.0 +23539,30,25.89,34,0.0 +23539,59,55,26,0.0 +23539,12,38,24,0.0 +23539,57,19.5,35,0.0 +23539,62,49.3,15,0.0 +23539,65,21.05,30,0.0 +23539,18,62.5,15,0.0 +23539,2,19,26,0.0 +23539,58,13.25,47,0.0 +23539,37,26,38,0.0 +23539,14,23.25,1,0.0 +23539,25,14,26,0.0 +23539,72,34.8,15,0.0 +23539,15,15.5,15,0.0 +23539,55,24,32,0.0 +23539,42,14,46,0.0 +23539,61,28.5,26,0.0 +23539,64,33.25,37,0.0 +23539,60,34,33,0.0 +23539,49,20,24,0.0 +23539,38,263.5,10,0.0 +23539,54,7.45,8,0.0 +23539,67,14,49,0.0 +23539,74,10,49,0.0 +23539,23,9,18,0.0 +23539,27,43.9,2,0.0 +23539,26,31.23,4,0.0 +23539,5,21.35,14,0.0 +23539,19,9.2,18,0.0 +23539,73,15,40,0.0 +23539,13,6,11,0.0 +23539,41,9.65,10,0.0 +23539,75,7.75,48,0.0 +23539,77,13,47,0.0 +23539,22,21,32,0.0 +23539,20,81,22,0.0 +23539,66,17,12,0.0 +23539,46,12,9,0.0 +23539,69,36,31,0.0 +23539,44,19.45,21,0.0 +23539,48,12.75,43,0.0 +23539,39,18,7,0.0 +23539,9,97,2,0.0 +23539,8,40,33,0.0 +23540,20,81,49,0.0 +23540,14,23.25,39,0.0 +23540,28,45.6,44,0.0 +23540,38,263.5,36,0.0 +23540,12,38,19,0.0 +23540,77,13,10,0.0 +23540,41,9.65,43,0.0 +23540,29,123.79,25,0.0 +23540,55,24,13,0.0 +23540,34,14,41,0.0 +23540,3,10,13,0.0 +23540,53,32.8,45,0.0 +23541,5,21.35,45,0.0 +23541,7,30,11,0.0 +23541,6,25,49,0.0 +23541,56,38,3,0.0 +23541,22,21,18,0.0 +23541,49,20,44,0.0 +23541,18,62.5,17,0.0 +23541,29,123.79,5,0.0 +23541,57,19.5,13,0.0 +23541,8,40,6,0.0 +23541,32,32,40,0.0 +23541,76,18,42,0.0 +23541,25,14,7,0.0 +23541,31,12.5,2,0.0 +23541,66,17,10,0.0 +23541,2,19,46,0.0 +23541,58,13.25,17,0.0 +23541,40,18.4,47,0.0 +23541,34,14,23,0.0 +23541,71,21.5,13,0.0 +23541,17,39,15,0.0 +23541,73,15,33,0.0 +23541,64,33.25,45,0.0 +23541,69,36,9,0.0 +23541,51,53,23,0.0 +23541,59,55,49,0.0 +23541,77,13,28,0.0 +23541,60,34,4,0.0 +23541,55,24,12,0.0 +23541,3,10,6,0.0 +23541,62,49.3,10,0.0 +23541,68,12.5,27,0.0 +23542,17,39,4,0.0 +23543,36,19,22,0.0 +23543,18,62.5,12,0.0 +23543,19,9.2,21,0.0 +23543,50,16.25,44,0.0 +23543,61,28.5,18,0.0 +23543,44,19.45,7,0.0 +23543,77,13,47,0.0 +23543,57,19.5,6,0.0 +23543,26,31.23,28,0.0 +23543,7,30,11,0.0 +23543,54,7.45,33,0.0 +23543,16,17.45,14,0.0 +23543,74,10,12,0.0 +23543,10,31,36,0.0 +23543,68,12.5,41,0.0 +23543,2,19,35,0.0 +23543,32,32,30,0.0 +23543,69,36,8,0.0 +23543,15,15.5,22,0.0 +23543,55,24,2,0.0 +23543,11,21,50,0.0 +23543,1,18,28,0.0 +23543,27,43.9,37,0.0 +23543,52,7,1,0.0 +23543,31,12.5,14,0.0 +23543,42,14,46,0.0 +23543,20,81,22,0.0 +23543,35,18,15,0.0 +23543,28,45.6,9,0.0 +23543,8,40,24,0.0 +23543,29,123.79,8,0.0 +23543,41,9.65,1,0.0 +23543,66,17,29,0.0 +23543,45,9.5,34,0.0 +23543,5,21.35,8,0.0 +23543,62,49.3,48,0.0 +23544,42,14,42,0.0 +23544,25,14,14,0.0 +23544,4,22,7,0.0 +23544,52,7,15,0.0 +23544,56,38,28,0.0 +23544,10,31,35,0.0 +23544,23,9,27,0.0 +23544,5,21.35,47,0.0 +23544,31,12.5,9,0.0 +23544,14,23.25,42,0.0 +23544,27,43.9,7,0.0 +23544,18,62.5,50,0.0 +23544,44,19.45,11,0.0 +23544,33,2.5,31,0.0 +23544,12,38,3,0.0 +23544,69,36,42,0.0 +23544,47,9.5,17,0.0 +23544,57,19.5,3,0.0 +23544,45,9.5,27,0.0 +23544,39,18,37,0.0 +23544,19,9.2,38,0.0 +23544,8,40,11,0.0 +23544,61,28.5,4,0.0 +23544,24,4.5,14,0.0 +23544,74,10,46,0.0 +23544,59,55,2,0.0 +23544,62,49.3,1,0.0 +23544,70,15,26,0.0 +23544,37,26,50,0.0 +23544,49,20,3,0.0 +23544,38,263.5,13,0.0 +23544,72,34.8,18,0.0 +23544,60,34,4,0.0 +23544,9,97,39,0.0 +23544,35,18,21,0.0 +23544,53,32.8,16,0.0 +23544,32,32,23,0.0 +23544,2,19,36,0.0 +23544,65,21.05,5,0.0 +23544,75,7.75,40,0.0 +23544,41,9.65,14,0.0 +23544,15,15.5,23,0.0 +23544,48,12.75,41,0.0 +23544,26,31.23,18,0.0 +23544,22,21,31,0.0 +23544,68,12.5,22,0.0 +23544,63,43.9,44,0.0 +23544,67,14,20,0.0 +23544,13,6,25,0.0 +23544,17,39,32,0.0 +23544,29,123.79,24,0.0 +23544,34,14,21,0.0 +23544,76,18,17,0.0 +23544,71,21.5,48,0.0 +23544,40,18.4,20,0.0 +23544,3,10,7,0.0 +23544,77,13,8,0.0 +23544,30,25.89,41,0.0 +23544,28,45.6,32,0.0 +23544,43,46,1,0.0 +23544,6,25,36,0.0 +23545,6,25,13,0.0 +23545,7,30,14,0.0 +23545,73,15,5,0.0 +23545,23,9,18,0.0 +23545,3,10,21,0.0 +23545,57,19.5,5,0.0 +23545,77,13,48,0.0 +23545,40,18.4,14,0.0 +23545,19,9.2,7,0.0 +23545,25,14,45,0.0 +23545,63,43.9,29,0.0 +23545,28,45.6,50,0.0 +23545,46,12,47,0.0 +23545,9,97,23,0.0 +23545,30,25.89,45,0.0 +23545,5,21.35,13,0.0 +23545,18,62.5,33,0.0 +23545,37,26,11,0.0 +23545,21,10,1,0.0 +23545,13,6,17,0.0 +23545,29,123.79,6,0.0 +23545,34,14,6,0.0 +23545,42,14,37,0.0 +23545,69,36,35,0.0 +23545,31,12.5,1,0.0 +23545,8,40,3,0.0 +23545,66,17,17,0.0 +23545,50,16.25,35,0.0 +23545,16,17.45,48,0.0 +23545,10,31,9,0.0 +23545,68,12.5,7,0.0 +23545,15,15.5,35,0.0 +23545,65,21.05,28,0.0 +23545,32,32,37,0.0 +23545,45,9.5,14,0.0 +23545,70,15,26,0.0 +23545,53,32.8,41,0.0 +23545,60,34,17,0.0 +23545,36,19,16,0.0 +23546,65,21.05,2,0.0 +23546,55,24,8,0.0 +23546,68,12.5,4,0.0 +23546,14,23.25,21,0.0 +23546,31,12.5,46,0.0 +23546,38,263.5,44,0.0 +23546,60,34,23,0.0 +23546,58,13.25,24,0.0 +23546,29,123.79,37,0.0 +23546,27,43.9,45,0.0 +23546,54,7.45,38,0.0 +23546,4,22,39,0.0 +23546,1,18,15,0.0 +23546,19,9.2,13,0.0 +23547,1,18,35,0.0 +23547,18,62.5,16,0.0 +23547,5,21.35,22,0.0 +23547,29,123.79,5,0.0 +23547,45,9.5,32,0.0 +23547,73,15,9,0.0 +23547,44,19.45,16,0.0 +23547,6,25,20,0.0 +23547,23,9,36,0.0 +23547,50,16.25,7,0.0 +23547,11,21,37,0.0 +23547,40,18.4,7,0.0 +23547,41,9.65,11,0.0 +23547,16,17.45,44,0.0 +23547,56,38,28,0.0 +23547,34,14,17,0.0 +23547,9,97,11,0.0 +23547,22,21,26,0.0 +23547,66,17,6,0.0 +23547,13,6,35,0.0 +23547,8,40,33,0.0 +23547,19,9.2,17,0.0 +23547,48,12.75,6,0.0 +23547,39,18,33,0.0 +23547,61,28.5,29,0.0 +23547,38,263.5,20,0.0 +23547,2,19,48,0.0 +23547,30,25.89,2,0.0 +23547,42,14,18,0.0 +23547,70,15,4,0.0 +23547,27,43.9,11,0.0 +23547,3,10,4,0.0 +23547,37,26,19,0.0 +23547,46,12,10,0.0 +23547,77,13,1,0.0 +23547,60,34,27,0.0 +23547,28,45.6,34,0.0 +23547,25,14,34,0.0 +23547,74,10,34,0.0 +23547,7,30,43,0.0 +23547,14,23.25,19,0.0 +23547,47,9.5,35,0.0 +23547,62,49.3,1,0.0 +23547,4,22,30,0.0 +23547,53,32.8,7,0.0 +23547,17,39,18,0.0 +23547,71,21.5,38,0.0 +23547,33,2.5,31,0.0 +23547,63,43.9,39,0.0 +23547,24,4.5,9,0.0 +23547,51,53,20,0.0 +23547,65,21.05,21,0.0 +23547,59,55,27,0.0 +23547,69,36,21,0.0 +23547,43,46,8,0.0 +23547,20,81,39,0.0 +23547,68,12.5,44,0.0 +23547,26,31.23,49,0.0 +23547,72,34.8,9,0.0 +23547,64,33.25,7,0.0 +23547,31,12.5,50,0.0 +23547,75,7.75,46,0.0 +23548,77,13,42,0.0 +23548,34,14,10,0.0 +23548,16,17.45,9,0.0 +23548,2,19,28,0.0 +23548,5,21.35,30,0.0 +23548,41,9.65,45,0.0 +23548,24,4.5,45,0.0 +23548,39,18,50,0.0 +23548,38,263.5,35,0.0 +23548,46,12,42,0.0 +23548,59,55,27,0.0 +23548,27,43.9,27,0.0 +23548,58,13.25,49,0.0 +23548,69,36,35,0.0 +23548,10,31,49,0.0 +23549,32,32,29,0.0 +23549,73,15,18,0.0 +23549,67,14,44,0.0 +23549,12,38,19,0.0 +23549,15,15.5,43,0.0 +23549,69,36,19,0.0 +23549,10,31,36,0.0 +23549,5,21.35,1,0.0 +23549,39,18,47,0.0 +23549,36,19,29,0.0 +23549,35,18,39,0.0 +23549,9,97,31,0.0 +23549,17,39,14,0.0 +23549,18,62.5,23,0.0 +23549,52,7,27,0.0 +23549,19,9.2,11,0.0 +23549,65,21.05,33,0.0 +23549,6,25,40,0.0 +23549,68,12.5,4,0.0 +23549,77,13,26,0.0 +23549,28,45.6,35,0.0 +23549,53,32.8,10,0.0 +23549,50,16.25,44,0.0 +23549,74,10,28,0.0 +23549,23,9,34,0.0 +23549,7,30,42,0.0 +23549,51,53,33,0.0 +23549,46,12,24,0.0 +23549,38,263.5,24,0.0 +23549,75,7.75,27,0.0 +23549,54,7.45,11,0.0 +23549,22,21,50,0.0 +23549,42,14,48,0.0 +23549,64,33.25,5,0.0 +23549,57,19.5,8,0.0 +23549,41,9.65,50,0.0 +23549,60,34,33,0.0 +23549,26,31.23,12,0.0 +23549,21,10,14,0.0 +23549,72,34.8,2,0.0 +23549,4,22,13,0.0 +23549,43,46,44,0.0 +23549,14,23.25,35,0.0 +23549,30,25.89,38,0.0 +23549,62,49.3,5,0.0 +23549,3,10,44,0.0 +23549,13,6,17,0.0 +23549,76,18,41,0.0 +23549,61,28.5,40,0.0 +23549,45,9.5,1,0.0 +23549,31,12.5,12,0.0 +23549,8,40,1,0.0 +23549,40,18.4,28,0.0 +23549,59,55,40,0.0 +23550,77,13,45,0.0 +23550,2,19,49,0.0 +23550,17,39,19,0.0 +23550,38,263.5,10,0.0 +23550,74,10,27,0.0 +23550,6,25,3,0.0 +23550,52,7,33,0.0 +23550,24,4.5,48,0.0 +23550,54,7.45,35,0.0 +23550,20,81,41,0.0 +23550,7,30,37,0.0 +23550,29,123.79,35,0.0 +23550,10,31,25,0.0 +23550,42,14,12,0.0 +23550,48,12.75,43,0.0 +23550,4,22,50,0.0 +23550,56,38,7,0.0 +23551,51,53,29,0.0 +23551,31,12.5,46,0.0 +23551,7,30,11,0.0 +23551,29,123.79,30,0.0 +23551,69,36,7,0.0 +23551,55,24,13,0.0 +23551,10,31,15,0.0 +23551,60,34,23,0.0 +23551,4,22,18,0.0 +23551,41,9.65,20,0.0 +23551,27,43.9,11,0.0 +23551,67,14,32,0.0 +23551,73,15,28,0.0 +23551,26,31.23,27,0.0 +23551,66,17,6,0.0 +23551,77,13,7,0.0 +23551,20,81,32,0.0 +23551,8,40,30,0.0 +23551,19,9.2,3,0.0 +23551,40,18.4,27,0.0 +23551,3,10,50,0.0 +23551,13,6,20,0.0 +23551,11,21,22,0.0 +23551,49,20,8,0.0 +23551,36,19,17,0.0 +23551,34,14,10,0.0 +23551,30,25.89,13,0.0 +23551,18,62.5,2,0.0 +23551,65,21.05,48,0.0 +23551,35,18,31,0.0 +23551,72,34.8,48,0.0 +23551,57,19.5,40,0.0 +23551,5,21.35,32,0.0 +23551,6,25,13,0.0 +23551,25,14,50,0.0 +23551,1,18,44,0.0 +23551,70,15,15,0.0 +23551,45,9.5,48,0.0 +23551,61,28.5,47,0.0 +23551,47,9.5,22,0.0 +23551,48,12.75,24,0.0 +23551,71,21.5,27,0.0 +23551,33,2.5,35,0.0 +23551,43,46,43,0.0 +23551,32,32,26,0.0 +23551,68,12.5,40,0.0 +23551,22,21,5,0.0 +23551,62,49.3,24,0.0 +23551,21,10,41,0.0 +23551,44,19.45,41,0.0 +23551,37,26,49,0.0 +23551,76,18,35,0.0 +23551,28,45.6,34,0.0 +23551,50,16.25,26,0.0 +23551,2,19,29,0.0 +23551,17,39,20,0.0 +23551,9,97,2,0.0 +23551,42,14,1,0.0 +23551,53,32.8,27,0.0 +23551,12,38,22,0.0 +23551,63,43.9,26,0.0 +23551,52,7,4,0.0 +23551,16,17.45,49,0.0 +23551,15,15.5,17,0.0 +23551,75,7.75,5,0.0 +23551,24,4.5,13,0.0 +23551,54,7.45,11,0.0 +23552,56,38,37,0.0 +23552,51,53,26,0.0 +23552,24,4.5,38,0.0 +23552,66,17,33,0.0 +23552,77,13,27,0.0 +23552,1,18,14,0.0 +23552,35,18,9,0.0 +23552,57,19.5,36,0.0 +23552,13,6,33,0.0 +23552,49,20,37,0.0 +23552,45,9.5,2,0.0 +23552,46,12,38,0.0 +23552,55,24,44,0.0 +23552,74,10,41,0.0 +23552,2,19,24,0.0 +23552,68,12.5,16,0.0 +23552,23,9,8,0.0 +23552,16,17.45,31,0.0 +23552,41,9.65,28,0.0 +23552,58,13.25,37,0.0 +23552,62,49.3,16,0.0 +23552,27,43.9,30,0.0 +23552,32,32,48,0.0 +23552,29,123.79,23,0.0 +23552,11,21,45,0.0 +23552,64,33.25,39,0.0 +23552,19,9.2,25,0.0 +23552,52,7,18,0.0 +23552,18,62.5,21,0.0 +23552,34,14,8,0.0 +23552,15,15.5,14,0.0 +23552,50,16.25,38,0.0 +23552,12,38,44,0.0 +23552,48,12.75,34,0.0 +23552,7,30,22,0.0 +23552,42,14,19,0.0 +23552,10,31,11,0.0 +23552,65,21.05,39,0.0 +23552,60,34,29,0.0 +23552,76,18,48,0.0 +23552,25,14,5,0.0 +23552,70,15,18,0.0 +23552,26,31.23,7,0.0 +23552,21,10,34,0.0 +23552,33,2.5,8,0.0 +23552,47,9.5,11,0.0 +23552,14,23.25,16,0.0 +23552,39,18,18,0.0 +23552,72,34.8,23,0.0 +23552,69,36,49,0.0 +23552,40,18.4,32,0.0 +23552,17,39,4,0.0 +23552,67,14,13,0.0 +23552,6,25,41,0.0 +23552,38,263.5,36,0.0 +23552,28,45.6,37,0.0 +23552,44,19.45,38,0.0 +23552,8,40,46,0.0 +23552,59,55,26,0.0 +23552,3,10,22,0.0 +23552,71,21.5,33,0.0 +23552,20,81,29,0.0 +23552,5,21.35,33,0.0 +23552,22,21,35,0.0 +23552,73,15,37,0.0 +23552,75,7.75,4,0.0 +23553,1,18,37,0.0 +23553,38,263.5,23,0.0 +23553,64,33.25,26,0.0 +23553,28,45.6,20,0.0 +23553,69,36,38,0.0 +23553,40,18.4,47,0.0 +23553,9,97,48,0.0 +23553,58,13.25,4,0.0 +23553,71,21.5,19,0.0 +23553,57,19.5,30,0.0 +23553,70,15,45,0.0 +23553,73,15,39,0.0 +23553,46,12,15,0.0 +23553,15,15.5,6,0.0 +23553,74,10,22,0.0 +23553,10,31,44,0.0 +23553,25,14,17,0.0 +23553,26,31.23,19,0.0 +23553,60,34,11,0.0 +23553,34,14,41,0.0 +23553,20,81,4,0.0 +23553,32,32,39,0.0 +23553,53,32.8,7,0.0 +23553,45,9.5,6,0.0 +23553,41,9.65,29,0.0 +23554,39,18,40,0.0 +23555,39,18,27,0.0 +23555,15,15.5,46,0.0 +23555,51,53,10,0.0 +23555,37,26,15,0.0 +23555,66,17,50,0.0 +23555,35,18,48,0.0 +23555,75,7.75,3,0.0 +23555,43,46,45,0.0 +23555,13,6,20,0.0 +23555,7,30,48,0.0 +23555,31,12.5,18,0.0 +23555,26,31.23,6,0.0 +23555,50,16.25,5,0.0 +23555,12,38,45,0.0 +23555,41,9.65,11,0.0 +23556,67,14,8,0.0 +23556,77,13,5,0.0 +23557,58,13.25,5,0.0 +23557,21,10,8,0.0 +23557,3,10,46,0.0 +23557,42,14,44,0.0 +23557,73,15,11,0.0 +23557,38,263.5,48,0.0 +23557,6,25,33,0.0 +23557,44,19.45,2,0.0 +23557,25,14,22,0.0 +23557,1,18,33,0.0 +23557,61,28.5,25,0.0 +23557,63,43.9,34,0.0 +23557,74,10,31,0.0 +23557,56,38,14,0.0 +23557,47,9.5,47,0.0 +23557,4,22,12,0.0 +23557,49,20,8,0.0 +23557,2,19,7,0.0 +23557,23,9,44,0.0 +23557,30,25.89,6,0.0 +23557,9,97,39,0.0 +23557,50,16.25,33,0.0 +23557,19,9.2,30,0.0 +23557,24,4.5,48,0.0 +23557,11,21,40,0.0 +23557,26,31.23,38,0.0 +23557,76,18,23,0.0 +23557,72,34.8,44,0.0 +23557,35,18,41,0.0 +23557,65,21.05,15,0.0 +23557,69,36,46,0.0 +23557,59,55,22,0.0 +23557,39,18,50,0.0 +23557,75,7.75,26,0.0 +23557,17,39,5,0.0 +23557,27,43.9,8,0.0 +23557,54,7.45,3,0.0 +23557,51,53,17,0.0 +23557,66,17,8,0.0 +23557,41,9.65,7,0.0 +23557,68,12.5,44,0.0 +23557,55,24,42,0.0 +23557,18,62.5,28,0.0 +23557,15,15.5,50,0.0 +23557,60,34,26,0.0 +23557,33,2.5,42,0.0 +23557,67,14,27,0.0 +23557,12,38,27,0.0 +23557,28,45.6,15,0.0 +23557,16,17.45,40,0.0 +23557,31,12.5,42,0.0 +23557,13,6,49,0.0 +23557,7,30,41,0.0 +23557,32,32,27,0.0 +23558,12,38,37,0.0 +23558,19,9.2,1,0.0 +23558,10,31,39,0.0 +23558,14,23.25,33,0.0 +23558,37,26,45,0.0 +23558,50,16.25,47,0.0 +23558,6,25,4,0.0 +23558,57,19.5,12,0.0 +23558,44,19.45,48,0.0 +23558,58,13.25,10,0.0 +23558,56,38,20,0.0 +23558,51,53,49,0.0 +23558,3,10,1,0.0 +23558,66,17,32,0.0 +23558,16,17.45,41,0.0 +23558,39,18,42,0.0 +23558,27,43.9,36,0.0 +23558,29,123.79,22,0.0 +23558,23,9,38,0.0 +23558,72,34.8,1,0.0 +23558,48,12.75,37,0.0 +23558,53,32.8,38,0.0 +23558,9,97,10,0.0 +23558,30,25.89,20,0.0 +23558,65,21.05,38,0.0 +23558,17,39,37,0.0 +23558,4,22,16,0.0 +23558,24,4.5,36,0.0 +23558,34,14,20,0.0 +23558,26,31.23,33,0.0 +23558,25,14,1,0.0 +23558,45,9.5,4,0.0 +23558,7,30,8,0.0 +23558,67,14,41,0.0 +23558,22,21,20,0.0 +23558,21,10,37,0.0 +23558,20,81,50,0.0 +23558,55,24,41,0.0 +23558,75,7.75,34,0.0 +23558,41,9.65,5,0.0 +23558,70,15,48,0.0 +23558,71,21.5,11,0.0 +23558,47,9.5,20,0.0 +23558,49,20,42,0.0 +23558,74,10,42,0.0 +23558,54,7.45,27,0.0 +23558,68,12.5,4,0.0 +23558,40,18.4,9,0.0 +23558,73,15,49,0.0 +23558,64,33.25,45,0.0 +23558,2,19,6,0.0 +23558,62,49.3,29,0.0 +23558,13,6,50,0.0 +23558,52,7,46,0.0 +23558,36,19,12,0.0 +23558,32,32,18,0.0 +23558,11,21,47,0.0 +23559,57,19.5,10,0.0 +23559,26,31.23,1,0.0 +23559,11,21,29,0.0 +23559,14,23.25,34,0.0 +23559,15,15.5,38,0.0 +23559,39,18,11,0.0 +23559,10,31,14,0.0 +23559,30,25.89,7,0.0 +23559,74,10,22,0.0 +23559,24,4.5,10,0.0 +23559,23,9,46,0.0 +23559,77,13,2,0.0 +23559,32,32,32,0.0 +23559,17,39,18,0.0 +23559,44,19.45,45,0.0 +23559,19,9.2,11,0.0 +23559,21,10,17,0.0 +23559,7,30,46,0.0 +23559,13,6,44,0.0 +23559,38,263.5,31,0.0 +23559,22,21,13,0.0 +23559,6,25,5,0.0 +23559,52,7,22,0.0 +23559,73,15,31,0.0 +23559,72,34.8,31,0.0 +23559,59,55,36,0.0 +23559,16,17.45,29,0.0 +23560,39,18,18,0.0 +23560,73,15,9,0.0 +23560,62,49.3,20,0.0 +23560,3,10,32,0.0 +23560,58,13.25,18,0.0 +23560,36,19,30,0.0 +23560,23,9,41,0.0 +23560,47,9.5,34,0.0 +23560,12,38,15,0.0 +23560,18,62.5,1,0.0 +23560,20,81,50,0.0 +23560,16,17.45,21,0.0 +23560,6,25,2,0.0 +23560,61,28.5,3,0.0 +23560,46,12,12,0.0 +23560,24,4.5,18,0.0 +23560,71,21.5,27,0.0 +23560,50,16.25,6,0.0 +23560,37,26,14,0.0 +23560,65,21.05,30,0.0 +23560,53,32.8,15,0.0 +23560,13,6,15,0.0 +23560,2,19,14,0.0 +23560,51,53,14,0.0 +23560,7,30,3,0.0 +23560,44,19.45,38,0.0 +23560,57,19.5,21,0.0 +23560,15,15.5,27,0.0 +23560,48,12.75,6,0.0 +23560,32,32,5,0.0 +23560,69,36,28,0.0 +23560,38,263.5,7,0.0 +23560,34,14,16,0.0 +23560,43,46,32,0.0 +23561,61,28.5,46,0.0 +23561,37,26,38,0.0 +23561,20,81,36,0.0 +23561,71,21.5,17,0.0 +23561,4,22,14,0.0 +23561,8,40,12,0.0 +23561,34,14,15,0.0 +23561,41,9.65,49,0.0 +23561,35,18,20,0.0 +23561,13,6,14,0.0 +23561,75,7.75,15,0.0 +23561,36,19,16,0.0 +23561,58,13.25,19,0.0 +23561,9,97,47,0.0 +23561,69,36,11,0.0 +23561,23,9,9,0.0 +23561,46,12,36,0.0 +23561,63,43.9,22,0.0 +23561,55,24,7,0.0 +23561,32,32,6,0.0 +23561,19,9.2,14,0.0 +23561,3,10,28,0.0 +23561,10,31,20,0.0 +23561,5,21.35,14,0.0 +23561,30,25.89,43,0.0 +23561,62,49.3,30,0.0 +23561,15,15.5,45,0.0 +23561,70,15,50,0.0 +23562,70,15,19,0.0 +23562,35,18,47,0.0 +23562,63,43.9,30,0.0 +23562,50,16.25,5,0.0 +23562,23,9,23,0.0 +23562,56,38,2,0.0 +23562,45,9.5,34,0.0 +23562,12,38,9,0.0 +23562,72,34.8,42,0.0 +23562,53,32.8,15,0.0 +23562,47,9.5,43,0.0 +23562,26,31.23,36,0.0 +23562,46,12,5,0.0 +23562,37,26,27,0.0 +23562,42,14,22,0.0 +23562,32,32,18,0.0 +23562,1,18,34,0.0 +23562,40,18.4,26,0.0 +23562,9,97,23,0.0 +23562,76,18,50,0.0 +23562,7,30,49,0.0 +23562,21,10,39,0.0 +23562,54,7.45,24,0.0 +23562,4,22,29,0.0 +23562,49,20,37,0.0 +23562,31,12.5,5,0.0 +23562,24,4.5,1,0.0 +23562,2,19,27,0.0 +23562,36,19,25,0.0 +23562,5,21.35,47,0.0 +23562,66,17,40,0.0 +23562,52,7,21,0.0 +23562,75,7.75,39,0.0 +23562,65,21.05,42,0.0 +23562,38,263.5,42,0.0 +23562,43,46,28,0.0 +23562,30,25.89,1,0.0 +23562,71,21.5,19,0.0 +23562,20,81,34,0.0 +23562,16,17.45,36,0.0 +23562,51,53,47,0.0 +23562,29,123.79,15,0.0 +23562,41,9.65,30,0.0 +23562,28,45.6,15,0.0 +23562,10,31,20,0.0 +23562,73,15,37,0.0 +23562,19,9.2,2,0.0 +23562,22,21,40,0.0 +23562,48,12.75,34,0.0 +23562,61,28.5,37,0.0 +23562,60,34,14,0.0 +23562,14,23.25,26,0.0 +23562,59,55,19,0.0 +23562,39,18,33,0.0 +23562,57,19.5,43,0.0 +23562,69,36,49,0.0 +23562,25,14,5,0.0 +23562,44,19.45,25,0.0 +23562,55,24,5,0.0 +23562,58,13.25,6,0.0 +23562,11,21,9,0.0 +23562,6,25,43,0.0 +23562,34,14,21,0.0 +23562,18,62.5,21,0.0 +23562,15,15.5,13,0.0 +23562,64,33.25,39,0.0 +23562,27,43.9,36,0.0 +23562,8,40,4,0.0 +23562,67,14,28,0.0 +23562,62,49.3,45,0.0 +23562,13,6,42,0.0 +23563,4,22,44,0.0 +23563,47,9.5,39,0.0 +23563,50,16.25,31,0.0 +23563,54,7.45,23,0.0 +23563,13,6,8,0.0 +23563,69,36,40,0.0 +23563,74,10,1,0.0 +23563,22,21,18,0.0 +23563,73,15,14,0.0 +23563,53,32.8,2,0.0 +23563,14,23.25,35,0.0 +23563,68,12.5,15,0.0 +23563,28,45.6,35,0.0 +23563,12,38,44,0.0 +23563,41,9.65,29,0.0 +23563,77,13,7,0.0 +23563,34,14,26,0.0 +23563,44,19.45,19,0.0 +23563,27,43.9,34,0.0 +23563,37,26,8,0.0 +23563,26,31.23,17,0.0 +23563,17,39,47,0.0 +23563,15,15.5,50,0.0 +23563,75,7.75,36,0.0 +23563,23,9,12,0.0 +23563,11,21,29,0.0 +23563,61,28.5,24,0.0 +23563,43,46,2,0.0 +23563,63,43.9,49,0.0 +23563,76,18,26,0.0 +23563,31,12.5,48,0.0 +23563,72,34.8,26,0.0 +23563,8,40,25,0.0 +23563,21,10,40,0.0 +23563,30,25.89,14,0.0 +23563,38,263.5,42,0.0 +23563,52,7,3,0.0 +23563,24,4.5,3,0.0 +23563,49,20,38,0.0 +23563,62,49.3,28,0.0 +23563,7,30,19,0.0 +23563,65,21.05,42,0.0 +23563,58,13.25,22,0.0 +23564,8,40,11,0.0 +23564,4,22,31,0.0 +23564,27,43.9,1,0.0 +23564,55,24,45,0.0 +23564,70,15,32,0.0 +23564,66,17,1,0.0 +23564,32,32,46,0.0 +23564,69,36,46,0.0 +23564,3,10,25,0.0 +23564,25,14,20,0.0 +23564,14,23.25,21,0.0 +23564,48,12.75,3,0.0 +23564,49,20,41,0.0 +23564,16,17.45,7,0.0 +23564,30,25.89,29,0.0 +23564,10,31,23,0.0 +23564,41,9.65,19,0.0 +23565,14,23.25,24,0.0 +23565,24,4.5,25,0.0 +23565,57,19.5,12,0.0 +23565,26,31.23,48,0.0 +23565,40,18.4,7,0.0 +23565,50,16.25,34,0.0 +23565,3,10,6,0.0 +23565,76,18,27,0.0 +23565,32,32,36,0.0 +23565,72,34.8,27,0.0 +23565,60,34,47,0.0 +23565,33,2.5,27,0.0 +23565,34,14,21,0.0 +23565,7,30,41,0.0 +23565,36,19,31,0.0 +23565,45,9.5,19,0.0 +23565,20,81,18,0.0 +23565,75,7.75,28,0.0 +23565,30,25.89,25,0.0 +23565,28,45.6,27,0.0 +23565,46,12,49,0.0 +23565,8,40,22,0.0 +23565,21,10,31,0.0 +23565,38,263.5,16,0.0 +23565,55,24,23,0.0 +23565,2,19,35,0.0 +23565,54,7.45,27,0.0 +23565,4,22,26,0.0 +23565,37,26,10,0.0 +23565,66,17,4,0.0 +23565,63,43.9,8,0.0 +23565,51,53,33,0.0 +23565,44,19.45,17,0.0 +23565,27,43.9,22,0.0 +23565,5,21.35,29,0.0 +23565,52,7,41,0.0 +23565,31,12.5,39,0.0 +23565,42,14,24,0.0 +23565,77,13,31,0.0 +23565,47,9.5,31,0.0 +23565,17,39,24,0.0 +23565,62,49.3,16,0.0 +23565,15,15.5,10,0.0 +23565,9,97,50,0.0 +23565,58,13.25,49,0.0 +23565,22,21,7,0.0 +23565,71,21.5,12,0.0 +23565,23,9,35,0.0 +23565,35,18,45,0.0 +23565,41,9.65,49,0.0 +23565,73,15,27,0.0 +23565,6,25,41,0.0 +23565,59,55,48,0.0 +23565,16,17.45,1,0.0 +23565,39,18,32,0.0 +23566,14,23.25,49,0.0 +23566,33,2.5,13,0.0 +23566,15,15.5,30,0.0 +23566,67,14,24,0.0 +23567,55,24,43,0.0 +23567,50,16.25,40,0.0 +23567,41,9.65,20,0.0 +23567,66,17,18,0.0 +23567,40,18.4,1,0.0 +23567,64,33.25,21,0.0 +23567,52,7,10,0.0 +23567,36,19,28,0.0 +23567,58,13.25,19,0.0 +23567,65,21.05,14,0.0 +23567,68,12.5,9,0.0 +23567,10,31,2,0.0 +23567,59,55,18,0.0 +23567,3,10,20,0.0 +23567,32,32,21,0.0 +23567,75,7.75,4,0.0 +23567,37,26,36,0.0 +23567,4,22,44,0.0 +23567,43,46,3,0.0 +23567,67,14,29,0.0 +23567,74,10,18,0.0 +23567,48,12.75,30,0.0 +23567,51,53,17,0.0 +23567,23,9,21,0.0 +23567,72,34.8,26,0.0 +23567,13,6,42,0.0 +23567,54,7.45,1,0.0 +23567,57,19.5,23,0.0 +23567,61,28.5,32,0.0 +23567,34,14,6,0.0 +23567,6,25,34,0.0 +23567,53,32.8,35,0.0 +23567,60,34,11,0.0 +23567,63,43.9,46,0.0 +23567,20,81,5,0.0 +23567,17,39,18,0.0 +23567,47,9.5,26,0.0 +23567,12,38,19,0.0 +23567,33,2.5,43,0.0 +23567,62,49.3,21,0.0 +23567,22,21,8,0.0 +23567,77,13,9,0.0 +23567,21,10,48,0.0 +23567,7,30,28,0.0 +23567,1,18,45,0.0 +23567,44,19.45,25,0.0 +23567,14,23.25,44,0.0 +23567,42,14,13,0.0 +23567,24,4.5,45,0.0 +23567,39,18,4,0.0 +23567,15,15.5,18,0.0 +23567,38,263.5,5,0.0 +23567,25,14,5,0.0 +23567,30,25.89,2,0.0 +23567,28,45.6,14,0.0 +23567,11,21,12,0.0 +23567,35,18,42,0.0 +23567,76,18,6,0.0 +23567,69,36,42,0.0 +23567,19,9.2,10,0.0 +23567,9,97,39,0.0 +23567,31,12.5,8,0.0 +23567,5,21.35,34,0.0 +23567,2,19,38,0.0 +23567,16,17.45,45,0.0 +23567,29,123.79,6,0.0 +23567,70,15,12,0.0 +23567,56,38,50,0.0 +23567,45,9.5,33,0.0 +23567,27,43.9,48,0.0 +23567,18,62.5,10,0.0 +23567,49,20,25,0.0 +23568,76,18,24,0.0 +23568,15,15.5,39,0.0 +23568,13,6,5,0.0 +23568,38,263.5,39,0.0 +23568,18,62.5,24,0.0 +23568,47,9.5,40,0.0 +23568,3,10,50,0.0 +23568,62,49.3,20,0.0 +23568,27,43.9,35,0.0 +23568,21,10,41,0.0 +23568,75,7.75,25,0.0 +23568,69,36,26,0.0 +23568,42,14,27,0.0 +23568,39,18,19,0.0 +23568,71,21.5,45,0.0 +23568,37,26,33,0.0 +23568,45,9.5,20,0.0 +23568,66,17,14,0.0 +23568,7,30,16,0.0 +23568,20,81,30,0.0 +23568,30,25.89,37,0.0 +23568,17,39,17,0.0 +23568,23,9,46,0.0 +23568,29,123.79,12,0.0 +23568,2,19,50,0.0 +23568,4,22,5,0.0 +23568,67,14,43,0.0 +23568,70,15,40,0.0 +23568,44,19.45,32,0.0 +23568,8,40,20,0.0 +23568,34,14,12,0.0 +23568,55,24,24,0.0 +23569,26,31.23,27,0.0 +23569,73,15,13,0.0 +23570,1,18,36,0.0 +23570,33,2.5,6,0.0 +23570,57,19.5,3,0.0 +23570,76,18,5,0.0 +23570,65,21.05,27,0.0 +23570,63,43.9,15,0.0 +23570,17,39,43,0.0 +23570,14,23.25,35,0.0 +23570,31,12.5,24,0.0 +23570,10,31,42,0.0 +23570,74,10,46,0.0 +23570,52,7,24,0.0 +23570,16,17.45,12,0.0 +23570,46,12,8,0.0 +23570,29,123.79,49,0.0 +23570,72,34.8,11,0.0 +23570,8,40,33,0.0 +23570,45,9.5,39,0.0 +23570,18,62.5,32,0.0 +23570,48,12.75,44,0.0 +23570,37,26,47,0.0 +23570,75,7.75,25,0.0 +23570,64,33.25,40,0.0 +23570,11,21,29,0.0 +23570,39,18,46,0.0 +23570,67,14,26,0.0 +23570,53,32.8,11,0.0 +23570,25,14,3,0.0 +23570,20,81,15,0.0 +23570,51,53,46,0.0 +23570,50,16.25,9,0.0 +23570,26,31.23,32,0.0 +23570,41,9.65,19,0.0 +23570,77,13,33,0.0 +23570,36,19,9,0.0 +23570,68,12.5,7,0.0 +23570,49,20,33,0.0 +23570,19,9.2,15,0.0 +23570,3,10,19,0.0 +23570,58,13.25,19,0.0 +23570,2,19,3,0.0 +23570,61,28.5,1,0.0 +23570,56,38,15,0.0 +23570,54,7.45,28,0.0 +23570,6,25,6,0.0 +23570,9,97,42,0.0 +23571,31,12.5,18,0.0 +23571,57,19.5,14,0.0 +23571,43,46,26,0.0 +23571,71,21.5,37,0.0 +23571,35,18,36,0.0 +23571,53,32.8,32,0.0 +23571,51,53,50,0.0 +23571,30,25.89,24,0.0 +23571,16,17.45,43,0.0 +23572,1,18,8,0.0 +23572,8,40,46,0.0 +23572,68,12.5,38,0.0 +23572,31,12.5,7,0.0 +23572,72,34.8,6,0.0 +23572,58,13.25,32,0.0 +23572,47,9.5,12,0.0 +23572,21,10,17,0.0 +23572,67,14,37,0.0 +23572,10,31,40,0.0 +23572,16,17.45,33,0.0 +23572,40,18.4,23,0.0 +23572,35,18,26,0.0 +23572,36,19,34,0.0 +23572,32,32,19,0.0 +23572,69,36,50,0.0 +23572,34,14,41,0.0 +23572,25,14,47,0.0 +23572,12,38,41,0.0 +23572,39,18,43,0.0 +23572,23,9,34,0.0 +23572,41,9.65,50,0.0 +23572,20,81,23,0.0 +23572,26,31.23,1,0.0 +23572,75,7.75,18,0.0 +23572,3,10,30,0.0 +23572,73,15,42,0.0 +23572,70,15,4,0.0 +23572,14,23.25,32,0.0 +23572,37,26,8,0.0 +23572,56,38,2,0.0 +23572,5,21.35,49,0.0 +23572,18,62.5,18,0.0 +23572,13,6,2,0.0 +23572,9,97,43,0.0 +23572,60,34,18,0.0 +23572,64,33.25,39,0.0 +23572,61,28.5,20,0.0 +23572,19,9.2,9,0.0 +23572,4,22,16,0.0 +23572,24,4.5,5,0.0 +23572,57,19.5,21,0.0 +23572,46,12,32,0.0 +23572,28,45.6,28,0.0 +23572,6,25,36,0.0 +23572,11,21,39,0.0 +23572,33,2.5,2,0.0 +23572,54,7.45,30,0.0 +23572,22,21,36,0.0 +23572,53,32.8,31,0.0 +23572,42,14,21,0.0 +23572,63,43.9,44,0.0 +23572,62,49.3,46,0.0 +23572,49,20,14,0.0 +23572,44,19.45,35,0.0 +23572,74,10,28,0.0 +23572,59,55,6,0.0 +23572,71,21.5,43,0.0 +23572,48,12.75,17,0.0 +23572,45,9.5,50,0.0 +23572,30,25.89,34,0.0 +23572,77,13,9,0.0 +23572,15,15.5,26,0.0 +23572,29,123.79,5,0.0 +23572,2,19,39,0.0 +23572,52,7,13,0.0 +23572,55,24,37,0.0 +23572,17,39,19,0.0 +23572,38,263.5,29,0.0 +23572,27,43.9,30,0.0 +23572,50,16.25,14,0.0 +23572,43,46,33,0.0 +23572,76,18,7,0.0 +23572,7,30,36,0.0 +23573,8,40,46,0.0 +23573,77,13,6,0.0 +23573,31,12.5,20,0.0 +23573,44,19.45,5,0.0 +23573,38,263.5,45,0.0 +23573,63,43.9,30,0.0 +23573,48,12.75,40,0.0 +23573,28,45.6,3,0.0 +23573,74,10,25,0.0 +23573,22,21,27,0.0 +23573,55,24,30,0.0 +23573,51,53,1,0.0 +23574,31,12.5,38,0.0 +23574,9,97,42,0.0 +23574,41,9.65,11,0.0 +23574,15,15.5,21,0.0 +23574,62,49.3,14,0.0 +23574,51,53,25,0.0 +23574,33,2.5,26,0.0 +23574,4,22,34,0.0 +23574,63,43.9,3,0.0 +23574,49,20,16,0.0 +23574,40,18.4,14,0.0 +23574,12,38,31,0.0 +23574,69,36,50,0.0 +23574,19,9.2,11,0.0 +23574,73,15,37,0.0 +23574,21,10,31,0.0 +23574,47,9.5,47,0.0 +23574,68,12.5,36,0.0 +23574,36,19,11,0.0 +23574,37,26,46,0.0 +23574,54,7.45,14,0.0 +23574,22,21,38,0.0 +23574,13,6,21,0.0 +23574,57,19.5,36,0.0 +23574,77,13,28,0.0 +23574,52,7,14,0.0 +23574,17,39,1,0.0 +23574,72,34.8,29,0.0 +23574,71,21.5,40,0.0 +23574,6,25,25,0.0 +23574,2,19,36,0.0 +23574,11,21,42,0.0 +23574,44,19.45,1,0.0 +23574,27,43.9,15,0.0 +23574,5,21.35,30,0.0 +23574,45,9.5,43,0.0 +23574,55,24,14,0.0 +23574,59,55,39,0.0 +23574,28,45.6,8,0.0 +23574,64,33.25,16,0.0 +23574,65,21.05,17,0.0 +23574,46,12,17,0.0 +23574,39,18,10,0.0 +23574,38,263.5,21,0.0 +23574,75,7.75,42,0.0 +23574,25,14,25,0.0 +23574,76,18,23,0.0 +23574,58,13.25,6,0.0 +23574,56,38,42,0.0 +23574,34,14,38,0.0 +23574,53,32.8,31,0.0 +23574,29,123.79,8,0.0 +23574,10,31,21,0.0 +23574,60,34,46,0.0 +23574,14,23.25,27,0.0 +23574,70,15,49,0.0 +23574,42,14,46,0.0 +23574,20,81,8,0.0 +23574,50,16.25,16,0.0 +23574,35,18,50,0.0 +23575,43,46,29,0.0 +23575,17,39,21,0.0 +23575,1,18,37,0.0 +23575,64,33.25,15,0.0 +23575,51,53,8,0.0 +23575,19,9.2,8,0.0 +23575,45,9.5,2,0.0 +23575,61,28.5,36,0.0 +23575,55,24,38,0.0 +23575,36,19,19,0.0 +23575,3,10,38,0.0 +23575,29,123.79,3,0.0 +23575,46,12,25,0.0 +23575,44,19.45,21,0.0 +23575,48,12.75,30,0.0 +23575,15,15.5,36,0.0 +23575,40,18.4,28,0.0 +23575,66,17,7,0.0 +23575,28,45.6,36,0.0 +23575,75,7.75,25,0.0 +23575,67,14,37,0.0 +23575,7,30,19,0.0 +23575,54,7.45,32,0.0 +23575,27,43.9,1,0.0 +23575,21,10,20,0.0 +23575,77,13,13,0.0 +23575,10,31,28,0.0 +23575,65,21.05,2,0.0 +23575,41,9.65,12,0.0 +23575,69,36,6,0.0 +23575,9,97,19,0.0 +23575,71,21.5,18,0.0 +23575,60,34,44,0.0 +23575,14,23.25,25,0.0 +23575,50,16.25,28,0.0 +23575,73,15,22,0.0 +23575,59,55,37,0.0 +23575,4,22,41,0.0 +23575,57,19.5,24,0.0 +23575,16,17.45,2,0.0 +23575,56,38,50,0.0 +23575,58,13.25,21,0.0 +23575,11,21,7,0.0 +23575,34,14,20,0.0 +23575,38,263.5,10,0.0 +23575,20,81,32,0.0 +23575,32,32,38,0.0 +23575,6,25,25,0.0 +23575,74,10,38,0.0 +23575,37,26,29,0.0 +23576,57,19.5,31,0.0 +23576,18,62.5,48,0.0 +23576,12,38,47,0.0 +23576,66,17,50,0.0 +23576,52,7,31,0.0 +23576,69,36,31,0.0 +23576,56,38,36,0.0 +23576,35,18,49,0.0 +23576,58,13.25,21,0.0 +23576,26,31.23,44,0.0 +23576,16,17.45,19,0.0 +23576,43,46,3,0.0 +23577,30,25.89,43,0.0 +23577,14,23.25,20,0.0 +23577,43,46,14,0.0 +23577,46,12,27,0.0 +23577,77,13,11,0.0 +23577,56,38,11,0.0 +23577,1,18,20,0.0 +23577,26,31.23,28,0.0 +23577,68,12.5,15,0.0 +23577,76,18,26,0.0 +23577,74,10,50,0.0 +23577,28,45.6,47,0.0 +23577,2,19,1,0.0 +23577,34,14,6,0.0 +23577,25,14,5,0.0 +23577,54,7.45,44,0.0 +23577,10,31,29,0.0 +23577,22,21,25,0.0 +23577,27,43.9,28,0.0 +23577,31,12.5,2,0.0 +23577,75,7.75,46,0.0 +23577,61,28.5,33,0.0 +23577,17,39,4,0.0 +23577,51,53,20,0.0 +23577,7,30,47,0.0 +23577,36,19,44,0.0 +23577,4,22,26,0.0 +23577,3,10,32,0.0 +23577,57,19.5,47,0.0 +23577,73,15,15,0.0 +23577,47,9.5,18,0.0 +23577,5,21.35,25,0.0 +23577,45,9.5,26,0.0 +23577,33,2.5,36,0.0 +23577,8,40,24,0.0 +23577,52,7,18,0.0 +23577,58,13.25,9,0.0 +23577,15,15.5,36,0.0 +23577,60,34,8,0.0 +23577,59,55,46,0.0 +23577,66,17,14,0.0 +23577,40,18.4,46,0.0 +23577,48,12.75,33,0.0 +23577,32,32,43,0.0 +23577,44,19.45,28,0.0 +23577,23,9,6,0.0 +23577,21,10,11,0.0 +23577,64,33.25,3,0.0 +23577,38,263.5,16,0.0 +23577,35,18,49,0.0 +23577,16,17.45,22,0.0 +23578,69,36,37,0.0 +23578,29,123.79,33,0.0 +23578,73,15,32,0.0 +23578,47,9.5,15,0.0 +23578,71,21.5,19,0.0 +23578,68,12.5,29,0.0 +23578,24,4.5,18,0.0 +23578,59,55,17,0.0 +23578,1,18,11,0.0 +23578,31,12.5,18,0.0 +23578,21,10,1,0.0 +23578,55,24,11,0.0 +23578,67,14,18,0.0 +23578,70,15,35,0.0 +23578,39,18,48,0.0 +23578,72,34.8,8,0.0 +23578,14,23.25,33,0.0 +23578,63,43.9,48,0.0 +23578,17,39,28,0.0 +23578,43,46,34,0.0 +23578,76,18,37,0.0 +23578,9,97,4,0.0 +23578,46,12,40,0.0 +23578,44,19.45,42,0.0 +23578,12,38,30,0.0 +23578,51,53,39,0.0 +23578,45,9.5,11,0.0 +23578,20,81,15,0.0 +23578,49,20,20,0.0 +23578,61,28.5,39,0.0 +23578,11,21,42,0.0 +23578,7,30,3,0.0 +23578,5,21.35,36,0.0 +23578,52,7,5,0.0 +23578,60,34,9,0.0 +23578,6,25,16,0.0 +23578,65,21.05,42,0.0 +23578,48,12.75,48,0.0 +23578,15,15.5,5,0.0 +23578,32,32,29,0.0 +23578,64,33.25,20,0.0 +23579,66,17,4,0.0 +23579,47,9.5,47,0.0 +23579,23,9,24,0.0 +23579,59,55,34,0.0 +23579,26,31.23,4,0.0 +23579,9,97,47,0.0 +23579,36,19,20,0.0 +23579,41,9.65,45,0.0 +23579,19,9.2,20,0.0 +23579,7,30,8,0.0 +23579,70,15,49,0.0 +23579,3,10,10,0.0 +23579,4,22,31,0.0 +23579,17,39,48,0.0 +23579,53,32.8,17,0.0 +23579,29,123.79,14,0.0 +23579,49,20,41,0.0 +23579,31,12.5,8,0.0 +23579,43,46,5,0.0 +23579,61,28.5,28,0.0 +23579,50,16.25,7,0.0 +23579,42,14,2,0.0 +23579,44,19.45,17,0.0 +23579,65,21.05,4,0.0 +23579,76,18,3,0.0 +23579,46,12,25,0.0 +23579,73,15,20,0.0 +23579,15,15.5,2,0.0 +23579,16,17.45,50,0.0 +23579,25,14,21,0.0 +23579,35,18,22,0.0 +23579,27,43.9,15,0.0 +23579,34,14,24,0.0 +23579,75,7.75,3,0.0 +23579,63,43.9,3,0.0 +23579,68,12.5,17,0.0 +23579,77,13,39,0.0 +23579,55,24,8,0.0 +23579,6,25,45,0.0 +23579,14,23.25,28,0.0 +23579,54,7.45,10,0.0 +23579,71,21.5,26,0.0 +23579,67,14,9,0.0 +23579,45,9.5,43,0.0 +23579,52,7,46,0.0 +23579,74,10,36,0.0 +23579,12,38,39,0.0 +23579,24,4.5,31,0.0 +23579,2,19,18,0.0 +23579,48,12.75,7,0.0 +23579,28,45.6,21,0.0 +23579,21,10,8,0.0 +23579,57,19.5,36,0.0 +23579,22,21,39,0.0 +23579,38,263.5,33,0.0 +23579,33,2.5,4,0.0 +23579,30,25.89,12,0.0 +23579,1,18,11,0.0 +23579,40,18.4,25,0.0 +23579,8,40,49,0.0 +23579,51,53,43,0.0 +23579,56,38,26,0.0 +23579,58,13.25,37,0.0 +23579,10,31,39,0.0 +23579,69,36,47,0.0 +23579,72,34.8,45,0.0 +23579,32,32,24,0.0 +23580,13,6,19,0.0 +23580,73,15,10,0.0 +23580,15,15.5,7,0.0 +23580,50,16.25,10,0.0 +23580,43,46,46,0.0 +23580,42,14,37,0.0 +23580,77,13,19,0.0 +23580,17,39,28,0.0 +23580,60,34,13,0.0 +23580,19,9.2,33,0.0 +23580,1,18,13,0.0 +23580,27,43.9,34,0.0 +23580,9,97,8,0.0 +23580,14,23.25,39,0.0 +23580,31,12.5,35,0.0 +23580,69,36,23,0.0 +23580,20,81,20,0.0 +23580,12,38,1,0.0 +23580,65,21.05,8,0.0 +23581,15,15.5,50,0.0 +23581,3,10,36,0.0 +23581,54,7.45,22,0.0 +23581,62,49.3,26,0.0 +23581,14,23.25,40,0.0 +23581,25,14,22,0.0 +23581,65,21.05,17,0.0 +23581,12,38,19,0.0 +23581,45,9.5,26,0.0 +23581,58,13.25,41,0.0 +23581,7,30,41,0.0 +23581,27,43.9,21,0.0 +23581,4,22,20,0.0 +23582,32,32,44,0.0 +23582,66,17,29,0.0 +23582,5,21.35,6,0.0 +23582,13,6,5,0.0 +23582,69,36,18,0.0 +23582,21,10,27,0.0 +23582,74,10,48,0.0 +23582,26,31.23,27,0.0 +23582,17,39,34,0.0 +23582,42,14,16,0.0 +23582,61,28.5,3,0.0 +23583,45,9.5,24,0.0 +23583,63,43.9,17,0.0 +23583,73,15,35,0.0 +23583,54,7.45,28,0.0 +23583,20,81,34,0.0 +23583,59,55,24,0.0 +23583,32,32,7,0.0 +23583,72,34.8,48,0.0 +23583,22,21,19,0.0 +23583,13,6,38,0.0 +23583,71,21.5,34,0.0 +23583,46,12,4,0.0 +23583,75,7.75,5,0.0 +23583,65,21.05,6,0.0 +23583,70,15,1,0.0 +23583,3,10,38,0.0 +23583,66,17,28,0.0 +23583,68,12.5,7,0.0 +23583,8,40,20,0.0 +23583,14,23.25,50,0.0 +23583,58,13.25,15,0.0 +23583,41,9.65,39,0.0 +23583,23,9,34,0.0 +23583,44,19.45,22,0.0 +23583,43,46,22,0.0 +23583,7,30,3,0.0 +23583,53,32.8,49,0.0 +23583,64,33.25,15,0.0 +23583,28,45.6,32,0.0 +23583,16,17.45,35,0.0 +23583,1,18,48,0.0 +23583,18,62.5,34,0.0 +23583,56,38,16,0.0 +23583,11,21,46,0.0 +23583,35,18,25,0.0 +23583,60,34,9,0.0 +23583,21,10,35,0.0 +23583,5,21.35,26,0.0 +23583,37,26,10,0.0 +23583,10,31,36,0.0 +23583,4,22,19,0.0 +23583,76,18,9,0.0 +23583,17,39,34,0.0 +23583,33,2.5,46,0.0 +23583,6,25,34,0.0 +23583,19,9.2,9,0.0 +23583,57,19.5,29,0.0 +23583,27,43.9,7,0.0 +23583,49,20,38,0.0 +23583,55,24,37,0.0 +23583,52,7,22,0.0 +23583,31,12.5,40,0.0 +23583,40,18.4,34,0.0 +23583,38,263.5,7,0.0 +23583,69,36,12,0.0 +23583,61,28.5,11,0.0 +23584,39,18,6,0.0 +23584,42,14,30,0.0 +23584,11,21,37,0.0 +23584,67,14,33,0.0 +23584,68,12.5,10,0.0 +23584,62,49.3,13,0.0 +23584,30,25.89,16,0.0 +23584,56,38,33,0.0 +23584,48,12.75,7,0.0 +23584,70,15,50,0.0 +23584,40,18.4,2,0.0 +23584,26,31.23,31,0.0 +23584,5,21.35,39,0.0 +23584,49,20,12,0.0 +23584,51,53,13,0.0 +23584,35,18,7,0.0 +23584,10,31,27,0.0 +23584,21,10,36,0.0 +23584,36,19,39,0.0 +23584,14,23.25,43,0.0 +23584,22,21,16,0.0 +23584,23,9,14,0.0 +23584,16,17.45,15,0.0 +23584,6,25,35,0.0 +23584,41,9.65,5,0.0 +23584,24,4.5,26,0.0 +23584,15,15.5,32,0.0 +23584,72,34.8,29,0.0 +23584,27,43.9,28,0.0 +23584,31,12.5,29,0.0 +23584,55,24,46,0.0 +23584,7,30,4,0.0 +23584,66,17,25,0.0 +23584,37,26,17,0.0 +23584,13,6,37,0.0 +23584,73,15,48,0.0 +23584,53,32.8,44,0.0 +23584,3,10,47,0.0 +23584,33,2.5,9,0.0 +23584,38,263.5,5,0.0 +23584,76,18,3,0.0 +23584,54,7.45,19,0.0 +23584,60,34,17,0.0 +23584,50,16.25,30,0.0 +23584,4,22,50,0.0 +23584,17,39,49,0.0 +23584,69,36,1,0.0 +23584,71,21.5,39,0.0 +23584,77,13,16,0.0 +23584,65,21.05,36,0.0 +23584,52,7,17,0.0 +23584,46,12,5,0.0 +23584,8,40,50,0.0 +23584,28,45.6,7,0.0 +23584,61,28.5,3,0.0 +23584,44,19.45,5,0.0 +23584,63,43.9,45,0.0 +23584,58,13.25,25,0.0 +23584,43,46,16,0.0 +23584,59,55,48,0.0 +23584,29,123.79,16,0.0 +23584,19,9.2,12,0.0 +23584,64,33.25,4,0.0 +23584,25,14,20,0.0 +23584,45,9.5,18,0.0 +23584,75,7.75,35,0.0 +23584,1,18,9,0.0 +23584,74,10,12,0.0 +23584,18,62.5,1,0.0 +23584,12,38,30,0.0 +23584,2,19,1,0.0 +23584,9,97,28,0.0 +23584,34,14,42,0.0 +23584,20,81,36,0.0 +23584,57,19.5,28,0.0 +23584,32,32,12,0.0 +23584,47,9.5,46,0.0 +23585,68,12.5,21,0.0 +23585,54,7.45,24,0.0 +23585,46,12,47,0.0 +23585,53,32.8,39,0.0 +23585,32,32,39,0.0 +23585,56,38,1,0.0 +23585,23,9,11,0.0 +23585,8,40,39,0.0 +23585,41,9.65,42,0.0 +23585,14,23.25,30,0.0 +23585,5,21.35,41,0.0 +23585,73,15,7,0.0 +23585,61,28.5,41,0.0 +23585,4,22,11,0.0 +23585,25,14,50,0.0 +23585,45,9.5,36,0.0 +23585,10,31,36,0.0 +23585,13,6,43,0.0 +23585,7,30,1,0.0 +23585,17,39,3,0.0 +23585,58,13.25,3,0.0 +23585,40,18.4,18,0.0 +23585,70,15,34,0.0 +23585,62,49.3,33,0.0 +23585,75,7.75,11,0.0 +23585,30,25.89,16,0.0 +23585,35,18,29,0.0 +23585,38,263.5,29,0.0 +23585,71,21.5,43,0.0 +23585,24,4.5,45,0.0 +23585,51,53,50,0.0 +23585,64,33.25,50,0.0 +23585,22,21,15,0.0 +23585,31,12.5,17,0.0 +23585,26,31.23,3,0.0 +23585,21,10,30,0.0 +23585,34,14,41,0.0 +23585,29,123.79,40,0.0 +23585,16,17.45,29,0.0 +23585,77,13,19,0.0 +23585,44,19.45,1,0.0 +23585,19,9.2,9,0.0 +23585,43,46,35,0.0 +23585,1,18,46,0.0 +23585,59,55,14,0.0 +23585,39,18,34,0.0 +23585,66,17,47,0.0 +23585,9,97,5,0.0 +23585,67,14,16,0.0 +23585,6,25,25,0.0 +23585,57,19.5,8,0.0 +23585,20,81,50,0.0 +23585,47,9.5,8,0.0 +23585,63,43.9,9,0.0 +23585,76,18,6,0.0 +23585,33,2.5,35,0.0 +23585,60,34,26,0.0 +23585,15,15.5,25,0.0 +23585,3,10,35,0.0 +23585,28,45.6,35,0.0 +23586,12,38,50,0.0 +23586,11,21,23,0.0 +23586,14,23.25,45,0.0 +23586,56,38,28,0.0 +23586,24,4.5,15,0.0 +23586,9,97,15,0.0 +23586,47,9.5,18,0.0 +23586,35,18,38,0.0 +23586,54,7.45,17,0.0 +23586,16,17.45,28,0.0 +23586,49,20,19,0.0 +23586,17,39,17,0.0 +23586,57,19.5,29,0.0 +23586,25,14,43,0.0 +23587,24,4.5,39,0.0 +23587,11,21,9,0.0 +23587,60,34,39,0.0 +23587,61,28.5,39,0.0 +23587,56,38,34,0.0 +23587,77,13,33,0.0 +23587,39,18,6,0.0 +23587,74,10,49,0.0 +23587,59,55,37,0.0 +23587,31,12.5,2,0.0 +23587,50,16.25,18,0.0 +23587,72,34.8,18,0.0 +23587,63,43.9,34,0.0 +23587,36,19,44,0.0 +23587,40,18.4,38,0.0 +23587,45,9.5,7,0.0 +23587,5,21.35,24,0.0 +23587,38,263.5,14,0.0 +23587,62,49.3,36,0.0 +23587,12,38,39,0.0 +23587,66,17,24,0.0 +23587,47,9.5,18,0.0 +23587,4,22,16,0.0 +23587,46,12,39,0.0 +23587,49,20,11,0.0 +23587,9,97,31,0.0 +23587,68,12.5,6,0.0 +23587,42,14,15,0.0 +23587,3,10,12,0.0 +23587,15,15.5,16,0.0 +23587,57,19.5,4,0.0 +23587,10,31,13,0.0 +23587,32,32,24,0.0 +23587,21,10,49,0.0 +23587,43,46,3,0.0 +23587,8,40,30,0.0 +23587,51,53,27,0.0 +23588,53,32.8,33,0.0 +23588,62,49.3,25,0.0 +23588,30,25.89,26,0.0 +23588,77,13,10,0.0 +23588,22,21,41,0.0 +23588,21,10,30,0.0 +23588,12,38,22,0.0 +23588,4,22,47,0.0 +23588,10,31,28,0.0 +23588,32,32,46,0.0 +23588,34,14,48,0.0 +23588,36,19,34,0.0 +23588,35,18,5,0.0 +23588,7,30,29,0.0 +23588,45,9.5,40,0.0 +23588,1,18,31,0.0 +23588,56,38,11,0.0 +23588,39,18,34,0.0 +23588,50,16.25,36,0.0 +23588,67,14,29,0.0 +23588,70,15,41,0.0 +23588,69,36,28,0.0 +23588,40,18.4,10,0.0 +23588,57,19.5,43,0.0 +23588,25,14,24,0.0 +23588,75,7.75,1,0.0 +23588,37,26,37,0.0 +23588,29,123.79,43,0.0 +23588,66,17,30,0.0 +23588,26,31.23,17,0.0 +23588,28,45.6,5,0.0 +23588,68,12.5,23,0.0 +23588,51,53,44,0.0 +23588,3,10,20,0.0 +23588,58,13.25,13,0.0 +23588,13,6,12,0.0 +23588,15,15.5,28,0.0 +23588,17,39,3,0.0 +23588,38,263.5,4,0.0 +23588,23,9,30,0.0 +23588,33,2.5,24,0.0 +23589,16,17.45,13,0.0 +23589,18,62.5,42,0.0 +23589,32,32,8,0.0 +23589,11,21,2,0.0 +23589,22,21,14,0.0 +23589,75,7.75,30,0.0 +23589,28,45.6,17,0.0 +23589,30,25.89,19,0.0 +23589,56,38,4,0.0 +23589,63,43.9,9,0.0 +23589,65,21.05,18,0.0 +23589,66,17,22,0.0 +23589,9,97,8,0.0 +23589,17,39,18,0.0 +23589,34,14,30,0.0 +23589,25,14,47,0.0 +23589,61,28.5,29,0.0 +23589,27,43.9,38,0.0 +23589,33,2.5,36,0.0 +23589,39,18,9,0.0 +23589,51,53,36,0.0 +23589,31,12.5,21,0.0 +23589,60,34,42,0.0 +23589,47,9.5,4,0.0 +23589,21,10,2,0.0 +23589,57,19.5,16,0.0 +23589,48,12.75,34,0.0 +23589,77,13,38,0.0 +23589,62,49.3,18,0.0 +23589,37,26,47,0.0 +23589,46,12,14,0.0 +23589,71,21.5,36,0.0 +23589,36,19,8,0.0 +23589,12,38,46,0.0 +23589,3,10,24,0.0 +23589,43,46,35,0.0 +23589,76,18,14,0.0 +23589,5,21.35,28,0.0 +23589,4,22,1,0.0 +23589,45,9.5,21,0.0 +23589,13,6,33,0.0 +23589,54,7.45,5,0.0 +23589,14,23.25,48,0.0 +23589,38,263.5,42,0.0 +23589,74,10,49,0.0 +23589,55,24,38,0.0 +23589,24,4.5,2,0.0 +23589,8,40,7,0.0 +23589,73,15,32,0.0 +23589,29,123.79,19,0.0 +23589,58,13.25,11,0.0 +23589,35,18,13,0.0 +23589,69,36,45,0.0 +23589,59,55,14,0.0 +23589,1,18,49,0.0 +23589,20,81,33,0.0 +23589,53,32.8,37,0.0 +23589,52,7,8,0.0 +23589,72,34.8,23,0.0 +23589,70,15,2,0.0 +23589,23,9,47,0.0 +23589,40,18.4,18,0.0 +23589,42,14,21,0.0 +23589,64,33.25,23,0.0 +23589,6,25,34,0.0 +23589,2,19,49,0.0 +23589,41,9.65,1,0.0 +23589,49,20,11,0.0 +23589,68,12.5,20,0.0 +23589,15,15.5,17,0.0 +23589,10,31,11,0.0 +23589,7,30,5,0.0 +23589,26,31.23,17,0.0 +23589,50,16.25,20,0.0 +23589,19,9.2,49,0.0 +23589,44,19.45,42,0.0 +23590,61,28.5,17,0.0 +23590,6,25,6,0.0 +23590,5,21.35,26,0.0 +23590,40,18.4,32,0.0 +23590,75,7.75,46,0.0 +23590,50,16.25,36,0.0 +23590,64,33.25,3,0.0 +23590,68,12.5,42,0.0 +23590,57,19.5,3,0.0 +23590,51,53,26,0.0 +23590,39,18,22,0.0 +23590,26,31.23,33,0.0 +23590,42,14,5,0.0 +23590,63,43.9,29,0.0 +23590,74,10,46,0.0 +23590,3,10,31,0.0 +23590,25,14,32,0.0 +23590,12,38,38,0.0 +23590,71,21.5,3,0.0 +23590,38,263.5,48,0.0 +23590,62,49.3,1,0.0 +23590,35,18,44,0.0 +23590,29,123.79,30,0.0 +23590,48,12.75,24,0.0 +23590,58,13.25,33,0.0 +23590,34,14,21,0.0 +23590,17,39,43,0.0 +23590,44,19.45,48,0.0 +23590,55,24,23,0.0 +23590,8,40,14,0.0 +23590,49,20,6,0.0 +23590,9,97,6,0.0 +23590,36,19,1,0.0 +23590,10,31,3,0.0 +23590,60,34,25,0.0 +23590,22,21,21,0.0 +23590,67,14,42,0.0 +23590,4,22,25,0.0 +23590,70,15,44,0.0 +23590,27,43.9,40,0.0 +23590,66,17,37,0.0 +23590,76,18,13,0.0 +23590,13,6,12,0.0 +23590,69,36,8,0.0 +23590,19,9.2,50,0.0 +23590,11,21,19,0.0 +23590,41,9.65,37,0.0 +23590,16,17.45,4,0.0 +23590,47,9.5,7,0.0 +23590,30,25.89,24,0.0 +23590,1,18,32,0.0 +23590,31,12.5,50,0.0 +23590,24,4.5,12,0.0 +23590,28,45.6,10,0.0 +23590,14,23.25,21,0.0 +23590,45,9.5,49,0.0 +23590,43,46,49,0.0 +23590,7,30,7,0.0 +23590,77,13,24,0.0 +23590,73,15,49,0.0 +23590,21,10,35,0.0 +23590,18,62.5,43,0.0 +23590,59,55,11,0.0 +23590,23,9,32,0.0 +23590,72,34.8,37,0.0 +23590,2,19,13,0.0 +23591,15,15.5,31,0.0 +23591,4,22,14,0.0 +23591,67,14,39,0.0 +23591,38,263.5,13,0.0 +23591,61,28.5,10,0.0 +23591,21,10,8,0.0 +23591,53,32.8,25,0.0 +23591,46,12,35,0.0 +23591,43,46,30,0.0 +23591,2,19,40,0.0 +23591,65,21.05,4,0.0 +23591,52,7,16,0.0 +23591,63,43.9,40,0.0 +23591,74,10,7,0.0 +23591,25,14,48,0.0 +23591,23,9,38,0.0 +23591,48,12.75,21,0.0 +23591,14,23.25,30,0.0 +23591,28,45.6,5,0.0 +23591,1,18,26,0.0 +23591,5,21.35,32,0.0 +23591,59,55,7,0.0 +23591,77,13,33,0.0 +23591,18,62.5,41,0.0 +23591,69,36,4,0.0 +23591,35,18,24,0.0 +23591,55,24,34,0.0 +23591,39,18,18,0.0 +23591,57,19.5,37,0.0 +23591,41,9.65,11,0.0 +23591,19,9.2,2,0.0 +23591,24,4.5,36,0.0 +23591,62,49.3,18,0.0 +23591,11,21,30,0.0 +23591,13,6,31,0.0 +23591,22,21,46,0.0 +23591,45,9.5,16,0.0 +23591,75,7.75,12,0.0 +23591,17,39,50,0.0 +23591,47,9.5,48,0.0 +23591,31,12.5,14,0.0 +23591,26,31.23,40,0.0 +23591,27,43.9,32,0.0 +23591,20,81,20,0.0 +23591,42,14,25,0.0 +23591,37,26,24,0.0 +23591,6,25,32,0.0 +23591,3,10,31,0.0 +23591,36,19,30,0.0 +23591,7,30,16,0.0 +23592,71,21.5,10,0.0 +23592,10,31,47,0.0 +23592,47,9.5,6,0.0 +23592,2,19,14,0.0 +23592,65,21.05,30,0.0 +23592,77,13,10,0.0 +23592,19,9.2,13,0.0 +23592,51,53,38,0.0 +23592,18,62.5,14,0.0 +23592,33,2.5,31,0.0 +23592,15,15.5,23,0.0 +23592,39,18,13,0.0 +23592,24,4.5,29,0.0 +23592,35,18,36,0.0 +23592,36,19,16,0.0 +23592,46,12,33,0.0 +23592,9,97,29,0.0 +23592,31,12.5,45,0.0 +23592,12,38,15,0.0 +23592,17,39,50,0.0 +23593,67,14,40,0.0 +23593,31,12.5,21,0.0 +23593,29,123.79,46,0.0 +23593,59,55,45,0.0 +23593,55,24,20,0.0 +23593,17,39,16,0.0 +23593,46,12,13,0.0 +23593,2,19,40,0.0 +23593,42,14,19,0.0 +23593,11,21,8,0.0 +23593,20,81,3,0.0 +23593,6,25,29,0.0 +23593,65,21.05,5,0.0 +23593,7,30,10,0.0 +23593,18,62.5,33,0.0 +23593,71,21.5,17,0.0 +23593,3,10,25,0.0 +23593,73,15,13,0.0 +23593,25,14,18,0.0 +23593,12,38,36,0.0 +23593,4,22,12,0.0 +23593,39,18,8,0.0 +23593,60,34,24,0.0 +23593,1,18,26,0.0 +23593,61,28.5,41,0.0 +23593,48,12.75,48,0.0 +23593,14,23.25,3,0.0 +23593,41,9.65,29,0.0 +23593,50,16.25,19,0.0 +23593,76,18,16,0.0 +23593,51,53,7,0.0 +23593,16,17.45,50,0.0 +23593,9,97,9,0.0 +23593,27,43.9,9,0.0 +23593,34,14,8,0.0 +23593,37,26,36,0.0 +23593,75,7.75,22,0.0 +23593,74,10,27,0.0 +23593,10,31,4,0.0 +23593,15,15.5,17,0.0 +23593,5,21.35,31,0.0 +23593,28,45.6,43,0.0 +23593,53,32.8,2,0.0 +23593,19,9.2,42,0.0 +23593,38,263.5,48,0.0 +23593,35,18,49,0.0 +23593,77,13,48,0.0 +23593,32,32,14,0.0 +23593,64,33.25,47,0.0 +23593,57,19.5,15,0.0 +23593,40,18.4,6,0.0 +23593,30,25.89,14,0.0 +23593,23,9,20,0.0 +23593,58,13.25,3,0.0 +23593,36,19,21,0.0 +23593,13,6,33,0.0 +23593,52,7,12,0.0 +23593,43,46,18,0.0 +23593,63,43.9,33,0.0 +23593,56,38,13,0.0 +23593,68,12.5,5,0.0 +23593,66,17,27,0.0 +23593,72,34.8,26,0.0 +23593,8,40,13,0.0 +23593,54,7.45,18,0.0 +23593,24,4.5,15,0.0 +23593,45,9.5,48,0.0 +23593,49,20,30,0.0 +23593,70,15,42,0.0 +23593,22,21,9,0.0 +23593,33,2.5,29,0.0 +23593,62,49.3,6,0.0 +23594,74,10,21,0.0 +23595,45,9.5,3,0.0 +23595,35,18,44,0.0 +23595,26,31.23,31,0.0 +23595,9,97,11,0.0 +23595,21,10,18,0.0 +23595,60,34,9,0.0 +23595,73,15,21,0.0 +23595,47,9.5,47,0.0 +23595,61,28.5,20,0.0 +23595,15,15.5,27,0.0 +23595,68,12.5,40,0.0 +23595,67,14,21,0.0 +23595,66,17,30,0.0 +23595,40,18.4,43,0.0 +23595,1,18,1,0.0 +23595,58,13.25,42,0.0 +23595,48,12.75,45,0.0 +23596,6,25,19,0.0 +23596,20,81,11,0.0 +23596,1,18,29,0.0 +23596,54,7.45,43,0.0 +23596,76,18,32,0.0 +23596,75,7.75,38,0.0 +23596,50,16.25,26,0.0 +23596,36,19,43,0.0 +23596,52,7,28,0.0 +23596,9,97,25,0.0 +23596,25,14,41,0.0 +23596,19,9.2,6,0.0 +23596,34,14,12,0.0 +23596,57,19.5,42,0.0 +23596,77,13,24,0.0 +23596,24,4.5,16,0.0 +23596,53,32.8,4,0.0 +23596,46,12,1,0.0 +23596,33,2.5,14,0.0 +23596,29,123.79,3,0.0 +23596,5,21.35,33,0.0 +23596,70,15,49,0.0 +23596,18,62.5,31,0.0 +23596,10,31,22,0.0 +23596,42,14,11,0.0 +23596,43,46,28,0.0 +23596,66,17,12,0.0 +23596,23,9,30,0.0 +23596,48,12.75,19,0.0 +23596,14,23.25,22,0.0 +23596,38,263.5,47,0.0 +23596,69,36,8,0.0 +23596,68,12.5,15,0.0 +23596,16,17.45,45,0.0 +23596,56,38,34,0.0 +23596,27,43.9,30,0.0 +23596,62,49.3,41,0.0 +23596,21,10,10,0.0 +23596,12,38,49,0.0 +23596,11,21,32,0.0 +23596,3,10,25,0.0 +23596,63,43.9,14,0.0 +23596,65,21.05,42,0.0 +23596,45,9.5,36,0.0 +23596,47,9.5,37,0.0 +23596,40,18.4,9,0.0 +23596,37,26,5,0.0 +23596,72,34.8,36,0.0 +23596,22,21,8,0.0 +23596,44,19.45,39,0.0 +23596,71,21.5,45,0.0 +23596,67,14,10,0.0 +23596,4,22,31,0.0 +23596,28,45.6,44,0.0 +23596,13,6,13,0.0 +23596,17,39,38,0.0 +23596,58,13.25,28,0.0 +23596,7,30,5,0.0 +23596,60,34,29,0.0 +23596,49,20,17,0.0 +23596,2,19,22,0.0 +23596,30,25.89,37,0.0 +23597,19,9.2,18,0.0 +23597,75,7.75,10,0.0 +23597,40,18.4,9,0.0 +23597,9,97,19,0.0 +23597,62,49.3,12,0.0 +23597,69,36,35,0.0 +23597,67,14,38,0.0 +23598,67,14,45,0.0 +23598,20,81,13,0.0 +23598,63,43.9,41,0.0 +23598,76,18,33,0.0 +23598,49,20,4,0.0 +23598,32,32,18,0.0 +23598,74,10,39,0.0 +23598,52,7,39,0.0 +23598,48,12.75,49,0.0 +23598,15,15.5,10,0.0 +23598,33,2.5,26,0.0 +23598,11,21,15,0.0 +23598,75,7.75,4,0.0 +23598,54,7.45,30,0.0 +23599,12,38,35,0.0 +23599,58,13.25,3,0.0 +23599,67,14,39,0.0 +23599,35,18,14,0.0 +23599,11,21,40,0.0 +23599,3,10,12,0.0 +23599,23,9,50,0.0 +23599,46,12,33,0.0 +23599,5,21.35,23,0.0 +23599,13,6,9,0.0 +23599,63,43.9,40,0.0 +23599,31,12.5,15,0.0 +23599,37,26,46,0.0 +23599,30,25.89,4,0.0 +23599,60,34,16,0.0 +23599,41,9.65,12,0.0 +23599,73,15,42,0.0 +23599,40,18.4,28,0.0 +23599,19,9.2,22,0.0 +23599,56,38,48,0.0 +23599,22,21,20,0.0 +23599,20,81,12,0.0 +23599,25,14,22,0.0 +23599,29,123.79,33,0.0 +23599,15,15.5,28,0.0 +23599,66,17,5,0.0 +23599,76,18,29,0.0 +23599,2,19,19,0.0 +23599,74,10,36,0.0 +23599,38,263.5,43,0.0 +23599,54,7.45,41,0.0 +23599,65,21.05,41,0.0 +23599,61,28.5,38,0.0 +23599,6,25,21,0.0 +23599,62,49.3,8,0.0 +23599,49,20,2,0.0 +23599,45,9.5,8,0.0 +23599,18,62.5,31,0.0 +23599,8,40,27,0.0 +23599,42,14,48,0.0 +23599,9,97,43,0.0 +23599,10,31,29,0.0 +23599,77,13,48,0.0 +23599,36,19,1,0.0 +23599,68,12.5,34,0.0 +23599,33,2.5,10,0.0 +23599,51,53,25,0.0 +23599,48,12.75,11,0.0 +23599,16,17.45,4,0.0 +23599,7,30,37,0.0 +23599,64,33.25,20,0.0 +23599,24,4.5,16,0.0 +23599,27,43.9,13,0.0 +23599,14,23.25,4,0.0 +23599,44,19.45,18,0.0 +23599,17,39,15,0.0 +23599,34,14,36,0.0 +23599,32,32,36,0.0 +23600,27,43.9,30,0.0 +23600,66,17,8,0.0 +23600,35,18,10,0.0 +23600,19,9.2,9,0.0 +23600,44,19.45,45,0.0 +23600,14,23.25,43,0.0 +23600,12,38,47,0.0 +23600,3,10,4,0.0 +23600,4,22,8,0.0 +23600,43,46,35,0.0 +23600,54,7.45,47,0.0 +23600,16,17.45,18,0.0 +23600,70,15,1,0.0 +23600,46,12,20,0.0 +23600,47,9.5,40,0.0 +23600,21,10,10,0.0 +23600,26,31.23,32,0.0 +23600,64,33.25,12,0.0 +23600,39,18,2,0.0 +23600,55,24,13,0.0 +23600,34,14,41,0.0 +23600,49,20,21,0.0 +23600,32,32,24,0.0 +23600,57,19.5,1,0.0 +23600,33,2.5,4,0.0 +23600,50,16.25,2,0.0 +23600,18,62.5,25,0.0 +23600,71,21.5,49,0.0 +23600,30,25.89,48,0.0 +23601,30,25.89,28,0.0 +23601,34,14,29,0.0 +23601,76,18,19,0.0 +23601,59,55,13,0.0 +23601,7,30,49,0.0 +23601,5,21.35,27,0.0 +23601,53,32.8,48,0.0 +23601,24,4.5,38,0.0 +23601,48,12.75,21,0.0 +23601,11,21,21,0.0 +23601,64,33.25,46,0.0 +23601,35,18,18,0.0 +23601,71,21.5,32,0.0 +23601,74,10,49,0.0 +23601,63,43.9,41,0.0 +23601,13,6,39,0.0 +23601,52,7,12,0.0 +23601,58,13.25,44,0.0 +23601,41,9.65,4,0.0 +23601,1,18,14,0.0 +23601,68,12.5,21,0.0 +23601,56,38,41,0.0 +23601,47,9.5,1,0.0 +23601,46,12,45,0.0 +23601,4,22,46,0.0 +23601,6,25,13,0.0 +23601,62,49.3,8,0.0 +23601,61,28.5,1,0.0 +23601,14,23.25,14,0.0 +23601,23,9,30,0.0 +23601,51,53,17,0.0 +23601,72,34.8,48,0.0 +23601,44,19.45,19,0.0 +23601,26,31.23,34,0.0 +23601,57,19.5,11,0.0 +23601,25,14,40,0.0 +23601,42,14,35,0.0 +23601,60,34,19,0.0 +23601,2,19,30,0.0 +23601,28,45.6,1,0.0 +23601,15,15.5,33,0.0 +23601,70,15,38,0.0 +23601,66,17,14,0.0 +23601,38,263.5,7,0.0 +23601,45,9.5,39,0.0 +23601,8,40,8,0.0 +23601,67,14,7,0.0 +23601,54,7.45,18,0.0 +23601,33,2.5,2,0.0 +23601,69,36,33,0.0 +23601,19,9.2,14,0.0 +23601,55,24,20,0.0 +23601,32,32,39,0.0 +23601,27,43.9,48,0.0 +23601,9,97,25,0.0 +23601,18,62.5,26,0.0 +23601,65,21.05,37,0.0 +23601,40,18.4,30,0.0 +23601,10,31,34,0.0 +23601,31,12.5,26,0.0 +23601,20,81,14,0.0 +23601,73,15,28,0.0 +23601,12,38,26,0.0 +23601,37,26,31,0.0 +23601,29,123.79,46,0.0 +23601,77,13,33,0.0 +23601,3,10,38,0.0 +23601,16,17.45,50,0.0 +23601,75,7.75,7,0.0 +23602,46,12,19,0.0 +23602,4,22,14,0.0 +23602,38,263.5,7,0.0 +23602,76,18,39,0.0 +23602,30,25.89,22,0.0 +23602,44,19.45,1,0.0 +23602,26,31.23,30,0.0 +23602,67,14,30,0.0 +23602,54,7.45,9,0.0 +23602,49,20,32,0.0 +23602,22,21,19,0.0 +23602,50,16.25,23,0.0 +23602,41,9.65,10,0.0 +23602,59,55,42,0.0 +23602,11,21,46,0.0 +23602,3,10,47,0.0 +23602,51,53,31,0.0 +23602,10,31,45,0.0 +23602,21,10,13,0.0 +23602,68,12.5,27,0.0 +23602,20,81,37,0.0 +23602,70,15,7,0.0 +23602,13,6,40,0.0 +23602,62,49.3,8,0.0 +23602,55,24,39,0.0 +23602,53,32.8,20,0.0 +23602,1,18,46,0.0 +23602,14,23.25,20,0.0 +23602,34,14,25,0.0 +23602,8,40,41,0.0 +23602,72,34.8,8,0.0 +23602,28,45.6,32,0.0 +23602,40,18.4,8,0.0 +23602,42,14,43,0.0 +23602,25,14,36,0.0 +23602,39,18,11,0.0 +23602,64,33.25,31,0.0 +23602,19,9.2,34,0.0 +23602,29,123.79,29,0.0 +23602,16,17.45,33,0.0 +23602,45,9.5,29,0.0 +23602,57,19.5,15,0.0 +23602,48,12.75,49,0.0 +23602,66,17,16,0.0 +23602,33,2.5,36,0.0 +23602,17,39,4,0.0 +23603,38,263.5,38,0.0 +23603,50,16.25,49,0.0 +23603,46,12,6,0.0 +23603,19,9.2,10,0.0 +23603,58,13.25,13,0.0 +23603,27,43.9,20,0.0 +23603,10,31,45,0.0 +23603,18,62.5,22,0.0 +23603,22,21,45,0.0 +23603,54,7.45,29,0.0 +23603,17,39,27,0.0 +23603,75,7.75,1,0.0 +23604,48,12.75,30,0.0 +23604,36,19,42,0.0 +23604,58,13.25,43,0.0 +23604,15,15.5,10,0.0 +23604,42,14,20,0.0 +23604,30,25.89,19,0.0 +23604,76,18,39,0.0 +23604,66,17,33,0.0 +23604,64,33.25,26,0.0 +23604,20,81,8,0.0 +23604,3,10,20,0.0 +23604,68,12.5,44,0.0 +23604,7,30,16,0.0 +23604,77,13,18,0.0 +23604,62,49.3,48,0.0 +23604,46,12,48,0.0 +23604,16,17.45,35,0.0 +23604,22,21,25,0.0 +23604,9,97,47,0.0 +23604,67,14,50,0.0 +23605,75,7.75,1,0.0 +23605,18,62.5,12,0.0 +23605,3,10,45,0.0 +23605,41,9.65,18,0.0 +23605,53,32.8,16,0.0 +23605,46,12,13,0.0 +23605,73,15,41,0.0 +23605,40,18.4,15,0.0 +23605,55,24,32,0.0 +23605,36,19,35,0.0 +23605,2,19,49,0.0 +23605,43,46,27,0.0 +23605,30,25.89,49,0.0 +23605,12,38,29,0.0 +23605,69,36,46,0.0 +23605,58,13.25,22,0.0 +23605,11,21,31,0.0 +23605,27,43.9,27,0.0 +23605,26,31.23,35,0.0 +23605,51,53,45,0.0 +23605,4,22,36,0.0 +23605,76,18,15,0.0 +23605,38,263.5,34,0.0 +23605,19,9.2,20,0.0 +23605,65,21.05,33,0.0 +23605,50,16.25,45,0.0 +23605,54,7.45,23,0.0 +23605,72,34.8,29,0.0 +23605,29,123.79,25,0.0 +23605,24,4.5,37,0.0 +23605,28,45.6,32,0.0 +23605,42,14,30,0.0 +23605,17,39,21,0.0 +23605,71,21.5,42,0.0 +23605,1,18,44,0.0 +23605,66,17,43,0.0 +23605,49,20,30,0.0 +23605,15,15.5,26,0.0 +23605,37,26,9,0.0 +23605,23,9,28,0.0 +23605,39,18,37,0.0 +23605,60,34,44,0.0 +23605,44,19.45,43,0.0 +23605,57,19.5,2,0.0 +23605,21,10,36,0.0 +23605,33,2.5,28,0.0 +23605,64,33.25,14,0.0 +23605,74,10,29,0.0 +23605,61,28.5,1,0.0 +23605,70,15,16,0.0 +23605,9,97,30,0.0 +23606,1,18,9,0.0 +23606,15,15.5,26,0.0 +23606,37,26,35,0.0 +23606,28,45.6,2,0.0 +23606,12,38,39,0.0 +23606,14,23.25,40,0.0 +23606,66,17,29,0.0 +23607,46,12,26,0.0 +23607,16,17.45,26,0.0 +23607,71,21.5,10,0.0 +23607,70,15,36,0.0 +23607,67,14,34,0.0 +23607,25,14,39,0.0 +23607,59,55,34,0.0 +23607,75,7.75,11,0.0 +23607,51,53,39,0.0 +23607,43,46,39,0.0 +23607,52,7,6,0.0 +23607,56,38,4,0.0 +23607,10,31,31,0.0 +23607,29,123.79,39,0.0 +23607,40,18.4,1,0.0 +23607,3,10,28,0.0 +23607,20,81,6,0.0 +23607,41,9.65,46,0.0 +23607,6,25,13,0.0 +23607,22,21,9,0.0 +23607,27,43.9,34,0.0 +23607,63,43.9,16,0.0 +23607,42,14,49,0.0 +23607,65,21.05,33,0.0 +23607,35,18,28,0.0 +23607,2,19,40,0.0 +23607,38,263.5,27,0.0 +23607,31,12.5,48,0.0 +23607,15,15.5,39,0.0 +23607,49,20,16,0.0 +23607,8,40,42,0.0 +23607,55,24,10,0.0 +23607,72,34.8,25,0.0 +23607,5,21.35,43,0.0 +23607,39,18,31,0.0 +23607,17,39,2,0.0 +23607,19,9.2,45,0.0 +23607,33,2.5,49,0.0 +23607,57,19.5,7,0.0 +23607,76,18,13,0.0 +23607,21,10,31,0.0 +23607,4,22,8,0.0 +23607,44,19.45,14,0.0 +23607,14,23.25,45,0.0 +23607,45,9.5,4,0.0 +23607,32,32,47,0.0 +23607,9,97,48,0.0 +23607,30,25.89,41,0.0 +23607,26,31.23,27,0.0 +23607,62,49.3,22,0.0 +23607,61,28.5,22,0.0 +23607,12,38,6,0.0 +23607,13,6,30,0.0 +23607,69,36,10,0.0 +23607,18,62.5,7,0.0 +23607,73,15,37,0.0 +23607,64,33.25,27,0.0 +23607,23,9,45,0.0 +23607,53,32.8,49,0.0 +23607,1,18,43,0.0 +23607,24,4.5,28,0.0 +23607,47,9.5,4,0.0 +23608,44,19.45,2,0.0 +23608,74,10,45,0.0 +23608,38,263.5,41,0.0 +23608,1,18,37,0.0 +23608,61,28.5,15,0.0 +23608,35,18,40,0.0 +23608,28,45.6,38,0.0 +23608,67,14,2,0.0 +23608,29,123.79,45,0.0 +23608,45,9.5,38,0.0 +23608,63,43.9,46,0.0 +23608,26,31.23,24,0.0 +23608,23,9,30,0.0 +23608,73,15,17,0.0 +23609,9,97,13,0.0 +23609,41,9.65,12,0.0 +23609,74,10,33,0.0 +23609,15,15.5,26,0.0 +23609,67,14,4,0.0 +23609,49,20,46,0.0 +23609,12,38,38,0.0 +23609,70,15,4,0.0 +23609,62,49.3,19,0.0 +23609,6,25,27,0.0 +23609,76,18,27,0.0 +23609,28,45.6,39,0.0 +23609,11,21,12,0.0 +23609,17,39,32,0.0 +23609,39,18,5,0.0 +23609,34,14,33,0.0 +23609,44,19.45,30,0.0 +23609,68,12.5,25,0.0 +23609,26,31.23,28,0.0 +23609,61,28.5,16,0.0 +23609,48,12.75,22,0.0 +23609,32,32,12,0.0 +23609,46,12,32,0.0 +23609,25,14,30,0.0 +23609,19,9.2,38,0.0 +23609,30,25.89,9,0.0 +23609,20,81,40,0.0 +23609,1,18,35,0.0 +23609,33,2.5,30,0.0 +23609,56,38,40,0.0 +23609,10,31,38,0.0 +23609,37,26,3,0.0 +23609,59,55,4,0.0 +23609,27,43.9,50,0.0 +23609,58,13.25,42,0.0 +23609,64,33.25,12,0.0 +23609,69,36,2,0.0 +23609,8,40,32,0.0 +23609,43,46,27,0.0 +23609,72,34.8,44,0.0 +23609,73,15,21,0.0 +23609,40,18.4,1,0.0 +23609,42,14,2,0.0 +23609,24,4.5,2,0.0 +23609,5,21.35,49,0.0 +23609,18,62.5,41,0.0 +23609,71,21.5,35,0.0 +23609,47,9.5,18,0.0 +23609,50,16.25,9,0.0 +23609,3,10,6,0.0 +23609,38,263.5,1,0.0 +23609,51,53,45,0.0 +23609,21,10,45,0.0 +23609,63,43.9,45,0.0 +23609,54,7.45,24,0.0 +23609,65,21.05,45,0.0 +23609,22,21,42,0.0 +23609,55,24,17,0.0 +23609,75,7.75,17,0.0 +23609,53,32.8,11,0.0 +23609,66,17,36,0.0 +23609,36,19,30,0.0 +23609,13,6,39,0.0 +23609,60,34,40,0.0 +23609,29,123.79,42,0.0 +23609,23,9,24,0.0 +23609,77,13,45,0.0 +23609,31,12.5,16,0.0 +23609,35,18,38,0.0 +23609,14,23.25,50,0.0 +23609,4,22,42,0.0 +23609,7,30,14,0.0 +23609,2,19,27,0.0 +23609,16,17.45,43,0.0 +23609,52,7,21,0.0 +23609,45,9.5,36,0.0 +23610,19,9.2,16,0.0 +23610,1,18,3,0.0 +23610,3,10,10,0.0 +23610,32,32,29,0.0 +23610,5,21.35,4,0.0 +23610,43,46,40,0.0 +23610,39,18,42,0.0 +23610,69,36,42,0.0 +23610,46,12,45,0.0 +23610,62,49.3,8,0.0 +23610,55,24,15,0.0 +23610,52,7,10,0.0 +23610,12,38,26,0.0 +23610,15,15.5,14,0.0 +23610,11,21,33,0.0 +23610,18,62.5,10,0.0 +23610,66,17,48,0.0 +23610,61,28.5,35,0.0 +23610,34,14,1,0.0 +23610,48,12.75,25,0.0 +23610,49,20,11,0.0 +23610,14,23.25,35,0.0 +23610,53,32.8,28,0.0 +23610,50,16.25,19,0.0 +23610,29,123.79,46,0.0 +23610,8,40,29,0.0 +23610,22,21,38,0.0 +23610,63,43.9,49,0.0 +23610,27,43.9,6,0.0 +23610,17,39,18,0.0 +23610,67,14,26,0.0 +23610,64,33.25,35,0.0 +23610,26,31.23,6,0.0 +23610,2,19,34,0.0 +23610,9,97,17,0.0 +23610,75,7.75,42,0.0 +23610,31,12.5,39,0.0 +23610,13,6,25,0.0 +23610,58,13.25,33,0.0 +23610,25,14,46,0.0 +23610,71,21.5,14,0.0 +23610,70,15,21,0.0 +23610,40,18.4,41,0.0 +23610,76,18,50,0.0 +23610,51,53,50,0.0 +23610,33,2.5,19,0.0 +23610,77,13,2,0.0 +23610,36,19,17,0.0 +23610,37,26,40,0.0 +23610,10,31,10,0.0 +23610,23,9,18,0.0 +23610,74,10,44,0.0 +23610,28,45.6,41,0.0 +23610,38,263.5,26,0.0 +23610,59,55,23,0.0 +23610,47,9.5,40,0.0 +23610,73,15,34,0.0 +23610,20,81,45,0.0 +23610,24,4.5,15,0.0 +23610,68,12.5,33,0.0 +23610,60,34,24,0.0 +23610,44,19.45,19,0.0 +23610,4,22,38,0.0 +23610,16,17.45,12,0.0 +23610,21,10,16,0.0 +23610,72,34.8,28,0.0 +23611,45,9.5,44,0.0 +23611,56,38,31,0.0 +23611,25,14,39,0.0 +23611,60,34,44,0.0 +23611,29,123.79,50,0.0 +23611,42,14,18,0.0 +23611,16,17.45,22,0.0 +23611,26,31.23,10,0.0 +23611,37,26,27,0.0 +23611,73,15,11,0.0 +23611,13,6,21,0.0 +23611,57,19.5,46,0.0 +23611,59,55,27,0.0 +23611,65,21.05,11,0.0 +23611,66,17,31,0.0 +23611,48,12.75,5,0.0 +23612,21,10,36,0.0 +23612,19,9.2,3,0.0 +23612,56,38,3,0.0 +23612,40,18.4,47,0.0 +23612,29,123.79,8,0.0 +23612,36,19,22,0.0 +23613,12,38,45,0.0 +23613,22,21,47,0.0 +23613,49,20,1,0.0 +23613,64,33.25,20,0.0 +23613,31,12.5,39,0.0 +23613,45,9.5,48,0.0 +23613,13,6,41,0.0 +23613,47,9.5,40,0.0 +23613,24,4.5,38,0.0 +23613,25,14,48,0.0 +23613,66,17,16,0.0 +23613,38,263.5,27,0.0 +23613,37,26,36,0.0 +23613,69,36,5,0.0 +23613,70,15,22,0.0 +23613,34,14,46,0.0 +23613,75,7.75,27,0.0 +23613,48,12.75,42,0.0 +23613,32,32,23,0.0 +23613,46,12,18,0.0 +23613,29,123.79,1,0.0 +23613,60,34,38,0.0 +23613,17,39,31,0.0 +23613,55,24,43,0.0 +23613,74,10,19,0.0 +23613,36,19,21,0.0 +23613,61,28.5,30,0.0 +23613,63,43.9,41,0.0 +23613,44,19.45,2,0.0 +23613,59,55,22,0.0 +23613,50,16.25,31,0.0 +23613,33,2.5,3,0.0 +23613,7,30,14,0.0 +23613,11,21,1,0.0 +23613,58,13.25,23,0.0 +23613,21,10,17,0.0 +23613,30,25.89,4,0.0 +23613,23,9,6,0.0 +23613,16,17.45,26,0.0 +23613,41,9.65,16,0.0 +23613,52,7,29,0.0 +23613,51,53,31,0.0 +23613,4,22,31,0.0 +23613,15,15.5,3,0.0 +23613,39,18,29,0.0 +23613,42,14,24,0.0 +23613,68,12.5,33,0.0 +23613,65,21.05,15,0.0 +23613,77,13,4,0.0 +23613,18,62.5,6,0.0 +23613,14,23.25,32,0.0 +23613,72,34.8,4,0.0 +23613,54,7.45,29,0.0 +23613,62,49.3,45,0.0 +23613,3,10,46,0.0 +23613,9,97,50,0.0 +23613,35,18,40,0.0 +23613,2,19,18,0.0 +23613,6,25,13,0.0 +23613,76,18,36,0.0 +23613,10,31,30,0.0 +23613,26,31.23,35,0.0 +23613,56,38,40,0.0 +23613,53,32.8,50,0.0 +23613,19,9.2,27,0.0 +23614,54,7.45,25,0.0 +23614,69,36,14,0.0 +23614,73,15,46,0.0 +23614,59,55,5,0.0 +23614,71,21.5,34,0.0 +23614,34,14,15,0.0 +23614,40,18.4,18,0.0 +23614,4,22,6,0.0 +23614,9,97,34,0.0 +23614,60,34,23,0.0 +23614,23,9,40,0.0 +23614,1,18,47,0.0 +23614,11,21,39,0.0 +23614,39,18,29,0.0 +23614,76,18,35,0.0 +23615,54,7.45,39,0.0 +23615,13,6,42,0.0 +23615,18,62.5,9,0.0 +23615,34,14,46,0.0 +23615,2,19,15,0.0 +23615,1,18,19,0.0 +23615,75,7.75,45,0.0 +23615,29,123.79,34,0.0 +23615,52,7,30,0.0 +23615,43,46,41,0.0 +23615,66,17,3,0.0 +23615,65,21.05,14,0.0 +23615,56,38,19,0.0 +23616,45,9.5,6,0.0 +23616,51,53,7,0.0 +23616,62,49.3,28,0.0 +23616,30,25.89,8,0.0 +23616,19,9.2,16,0.0 +23616,13,6,47,0.0 +23616,17,39,48,0.0 +23616,18,62.5,27,0.0 +23616,40,18.4,27,0.0 +23616,29,123.79,11,0.0 +23616,72,34.8,12,0.0 +23616,60,34,7,0.0 +23616,43,46,17,0.0 +23616,71,21.5,24,0.0 +23616,58,13.25,36,0.0 +23616,67,14,36,0.0 +23616,63,43.9,20,0.0 +23616,36,19,29,0.0 +23616,38,263.5,40,0.0 +23616,48,12.75,50,0.0 +23616,23,9,24,0.0 +23616,73,15,10,0.0 +23616,26,31.23,24,0.0 +23616,70,15,13,0.0 +23616,68,12.5,2,0.0 +23616,46,12,32,0.0 +23616,75,7.75,15,0.0 +23616,21,10,47,0.0 +23616,24,4.5,11,0.0 +23616,64,33.25,36,0.0 +23616,57,19.5,21,0.0 +23616,25,14,35,0.0 +23616,2,19,47,0.0 +23616,32,32,9,0.0 +23616,54,7.45,2,0.0 +23616,66,17,19,0.0 +23616,7,30,29,0.0 +23616,41,9.65,50,0.0 +23616,14,23.25,4,0.0 +23616,52,7,19,0.0 +23616,15,15.5,33,0.0 +23616,4,22,36,0.0 +23616,28,45.6,30,0.0 +23616,56,38,14,0.0 +23616,50,16.25,16,0.0 +23616,69,36,34,0.0 +23616,53,32.8,12,0.0 +23616,61,28.5,21,0.0 +23616,74,10,13,0.0 +23616,6,25,48,0.0 +23616,3,10,7,0.0 +23616,1,18,31,0.0 +23616,77,13,47,0.0 +23616,35,18,12,0.0 +23616,5,21.35,36,0.0 +23616,11,21,34,0.0 +23617,70,15,42,0.0 +23617,76,18,17,0.0 +23617,54,7.45,11,0.0 +23617,37,26,37,0.0 +23617,58,13.25,19,0.0 +23617,16,17.45,29,0.0 +23617,15,15.5,47,0.0 +23617,53,32.8,28,0.0 +23617,39,18,5,0.0 +23617,25,14,10,0.0 +23617,61,28.5,18,0.0 +23617,65,21.05,42,0.0 +23617,17,39,34,0.0 +23617,63,43.9,12,0.0 +23617,71,21.5,14,0.0 +23617,74,10,23,0.0 +23617,9,97,38,0.0 +23617,55,24,41,0.0 +23617,4,22,43,0.0 +23617,11,21,46,0.0 +23617,20,81,3,0.0 +23617,14,23.25,33,0.0 +23617,33,2.5,45,0.0 +23617,34,14,28,0.0 +23617,57,19.5,18,0.0 +23617,22,21,49,0.0 +23617,75,7.75,45,0.0 +23617,36,19,18,0.0 +23617,12,38,5,0.0 +23617,40,18.4,16,0.0 +23617,49,20,1,0.0 +23617,1,18,37,0.0 +23617,68,12.5,27,0.0 +23617,73,15,41,0.0 +23617,45,9.5,37,0.0 +23617,51,53,2,0.0 +23617,10,31,1,0.0 +23617,47,9.5,33,0.0 +23617,31,12.5,27,0.0 +23617,32,32,5,0.0 +23617,26,31.23,50,0.0 +23617,66,17,16,0.0 +23617,56,38,30,0.0 +23617,50,16.25,32,0.0 +23617,24,4.5,46,0.0 +23617,21,10,41,0.0 +23617,19,9.2,50,0.0 +23617,27,43.9,28,0.0 +23617,44,19.45,18,0.0 +23617,38,263.5,38,0.0 +23617,42,14,33,0.0 +23617,67,14,7,0.0 +23617,7,30,7,0.0 +23617,35,18,7,0.0 +23617,64,33.25,42,0.0 +23617,60,34,21,0.0 +23617,72,34.8,42,0.0 +23617,2,19,44,0.0 +23617,3,10,48,0.0 +23617,8,40,4,0.0 +23617,30,25.89,2,0.0 +23617,13,6,50,0.0 +23617,41,9.65,44,0.0 +23617,52,7,13,0.0 +23617,59,55,20,0.0 +23617,46,12,12,0.0 +23617,6,25,7,0.0 +23617,43,46,30,0.0 +23617,23,9,37,0.0 +23617,62,49.3,14,0.0 +23617,18,62.5,28,0.0 +23617,5,21.35,4,0.0 +23617,77,13,12,0.0 +23618,74,10,9,0.0 +23618,19,9.2,46,0.0 +23618,22,21,16,0.0 +23618,45,9.5,47,0.0 +23618,26,31.23,37,0.0 +23618,43,46,1,0.0 +23618,37,26,16,0.0 +23618,29,123.79,13,0.0 +23618,6,25,29,0.0 +23618,77,13,8,0.0 +23618,76,18,21,0.0 +23618,47,9.5,22,0.0 +23618,9,97,46,0.0 +23618,30,25.89,4,0.0 +23618,42,14,33,0.0 +23618,75,7.75,31,0.0 +23618,11,21,19,0.0 +23618,46,12,20,0.0 +23618,38,263.5,16,0.0 +23618,52,7,9,0.0 +23618,67,14,2,0.0 +23618,53,32.8,40,0.0 +23619,5,21.35,47,0.0 +23619,58,13.25,13,0.0 +23619,44,19.45,46,0.0 +23619,55,24,20,0.0 +23619,26,31.23,45,0.0 +23619,67,14,35,0.0 +23619,2,19,48,0.0 +23619,66,17,36,0.0 +23619,35,18,20,0.0 +23619,71,21.5,33,0.0 +23619,41,9.65,34,0.0 +23619,70,15,12,0.0 +23620,13,6,16,0.0 +23620,58,13.25,8,0.0 +23620,76,18,48,0.0 +23620,33,2.5,8,0.0 +23620,40,18.4,32,0.0 +23620,5,21.35,1,0.0 +23620,47,9.5,32,0.0 +23620,17,39,6,0.0 +23620,15,15.5,17,0.0 +23620,4,22,26,0.0 +23620,21,10,19,0.0 +23620,28,45.6,4,0.0 +23620,77,13,12,0.0 +23620,41,9.65,7,0.0 +23620,74,10,1,0.0 +23620,37,26,25,0.0 +23620,3,10,22,0.0 +23620,55,24,12,0.0 +23620,56,38,6,0.0 +23620,51,53,20,0.0 +23620,27,43.9,47,0.0 +23620,64,33.25,43,0.0 +23620,18,62.5,44,0.0 +23620,42,14,30,0.0 +23620,26,31.23,17,0.0 +23620,32,32,11,0.0 +23620,35,18,42,0.0 +23620,70,15,13,0.0 +23620,36,19,25,0.0 +23620,2,19,26,0.0 +23620,71,21.5,35,0.0 +23620,7,30,34,0.0 +23620,14,23.25,25,0.0 +23620,24,4.5,22,0.0 +23620,69,36,33,0.0 +23620,23,9,49,0.0 +23620,68,12.5,1,0.0 +23620,31,12.5,33,0.0 +23620,34,14,15,0.0 +23620,44,19.45,28,0.0 +23620,53,32.8,42,0.0 +23620,61,28.5,23,0.0 +23620,46,12,1,0.0 +23620,10,31,20,0.0 +23620,11,21,4,0.0 +23620,75,7.75,1,0.0 +23620,1,18,44,0.0 +23620,67,14,42,0.0 +23620,43,46,9,0.0 +23621,67,14,41,0.0 +23621,11,21,23,0.0 +23621,5,21.35,6,0.0 +23621,50,16.25,4,0.0 +23621,55,24,37,0.0 +23621,25,14,3,0.0 +23621,48,12.75,17,0.0 +23621,35,18,16,0.0 +23621,6,25,1,0.0 +23621,76,18,19,0.0 +23621,7,30,6,0.0 +23621,8,40,1,0.0 +23621,19,9.2,27,0.0 +23621,2,19,14,0.0 +23621,17,39,5,0.0 +23621,77,13,18,0.0 +23621,26,31.23,37,0.0 +23621,1,18,15,0.0 +23621,70,15,43,0.0 +23621,32,32,18,0.0 +23621,65,21.05,47,0.0 +23621,38,263.5,44,0.0 +23621,57,19.5,7,0.0 +23621,68,12.5,8,0.0 +23621,41,9.65,14,0.0 +23621,56,38,47,0.0 +23621,62,49.3,49,0.0 +23621,33,2.5,25,0.0 +23621,47,9.5,11,0.0 +23621,4,22,45,0.0 +23621,60,34,33,0.0 +23621,34,14,42,0.0 +23621,23,9,48,0.0 +23621,15,15.5,5,0.0 +23621,3,10,41,0.0 +23621,64,33.25,39,0.0 +23621,72,34.8,29,0.0 +23621,71,21.5,3,0.0 +23621,46,12,27,0.0 +23621,13,6,45,0.0 +23621,63,43.9,26,0.0 +23621,39,18,20,0.0 +23621,27,43.9,15,0.0 +23621,36,19,34,0.0 +23621,37,26,29,0.0 +23621,58,13.25,2,0.0 +23621,28,45.6,12,0.0 +23621,22,21,20,0.0 +23621,59,55,37,0.0 +23621,44,19.45,39,0.0 +23621,66,17,21,0.0 +23621,53,32.8,47,0.0 +23621,54,7.45,38,0.0 +23622,22,21,44,0.0 +23622,48,12.75,29,0.0 +23622,51,53,48,0.0 +23622,27,43.9,43,0.0 +23622,53,32.8,30,0.0 +23622,9,97,46,0.0 +23622,60,34,34,0.0 +23622,77,13,34,0.0 +23622,21,10,45,0.0 +23622,72,34.8,48,0.0 +23622,23,9,5,0.0 +23622,38,263.5,7,0.0 +23622,67,14,5,0.0 +23622,43,46,14,0.0 +23622,68,12.5,7,0.0 +23622,46,12,17,0.0 +23622,7,30,47,0.0 +23622,69,36,6,0.0 +23622,4,22,7,0.0 +23622,34,14,19,0.0 +23622,70,15,36,0.0 +23622,63,43.9,6,0.0 +23622,18,62.5,50,0.0 +23622,13,6,19,0.0 +23622,29,123.79,41,0.0 +23622,66,17,37,0.0 +23622,52,7,18,0.0 +23622,19,9.2,46,0.0 +23622,56,38,50,0.0 +23622,73,15,17,0.0 +23622,8,40,8,0.0 +23622,57,19.5,9,0.0 +23622,45,9.5,50,0.0 +23622,42,14,28,0.0 +23622,55,24,29,0.0 +23623,54,7.45,33,0.0 +23623,11,21,1,0.0 +23623,65,21.05,44,0.0 +23623,30,25.89,12,0.0 +23623,18,62.5,44,0.0 +23623,64,33.25,14,0.0 +23623,32,32,4,0.0 +23623,4,22,26,0.0 +23623,13,6,20,0.0 +23623,61,28.5,14,0.0 +23623,75,7.75,12,0.0 +23623,41,9.65,17,0.0 +23623,9,97,43,0.0 +23623,42,14,47,0.0 +23623,48,12.75,24,0.0 +23623,67,14,16,0.0 +23623,66,17,1,0.0 +23623,53,32.8,18,0.0 +23623,19,9.2,40,0.0 +23623,28,45.6,28,0.0 +23623,60,34,27,0.0 +23623,31,12.5,4,0.0 +23623,25,14,20,0.0 +23623,24,4.5,23,0.0 +23623,23,9,39,0.0 +23623,26,31.23,24,0.0 +23623,49,20,42,0.0 +23623,27,43.9,6,0.0 +23623,29,123.79,15,0.0 +23624,20,81,22,0.0 +23624,57,19.5,29,0.0 +23624,76,18,32,0.0 +23624,66,17,9,0.0 +23624,23,9,36,0.0 +23624,10,31,15,0.0 +23624,65,21.05,35,0.0 +23624,13,6,49,0.0 +23624,45,9.5,50,0.0 +23624,44,19.45,32,0.0 +23624,60,34,10,0.0 +23624,59,55,4,0.0 +23624,50,16.25,39,0.0 +23624,55,24,32,0.0 +23624,29,123.79,26,0.0 +23624,14,23.25,40,0.0 +23624,28,45.6,2,0.0 +23624,52,7,36,0.0 +23624,53,32.8,6,0.0 +23624,17,39,23,0.0 +23624,15,15.5,20,0.0 +23624,69,36,12,0.0 +23624,19,9.2,15,0.0 +23624,33,2.5,35,0.0 +23624,40,18.4,33,0.0 +23624,1,18,7,0.0 +23624,4,22,3,0.0 +23624,43,46,20,0.0 +23624,21,10,15,0.0 +23624,2,19,44,0.0 +23624,37,26,10,0.0 +23624,68,12.5,27,0.0 +23624,71,21.5,15,0.0 +23624,34,14,3,0.0 +23624,74,10,49,0.0 +23624,38,263.5,5,0.0 +23624,62,49.3,35,0.0 +23624,56,38,27,0.0 +23624,75,7.75,28,0.0 +23624,32,32,37,0.0 +23624,8,40,9,0.0 +23625,59,55,28,0.0 +23625,58,13.25,28,0.0 +23625,57,19.5,47,0.0 +23625,29,123.79,20,0.0 +23625,1,18,27,0.0 +23625,7,30,49,0.0 +23625,39,18,24,0.0 +23625,21,10,28,0.0 +23625,53,32.8,9,0.0 +23625,48,12.75,36,0.0 +23625,62,49.3,2,0.0 +23625,28,45.6,50,0.0 +23626,38,263.5,21,0.0 +23626,26,31.23,38,0.0 +23626,66,17,18,0.0 +23626,19,9.2,26,0.0 +23626,75,7.75,26,0.0 +23626,25,14,2,0.0 +23626,33,2.5,44,0.0 +23626,9,97,11,0.0 +23626,28,45.6,47,0.0 +23626,48,12.75,16,0.0 +23626,15,15.5,31,0.0 +23626,74,10,43,0.0 +23626,55,24,38,0.0 +23626,58,13.25,10,0.0 +23626,70,15,34,0.0 +23626,12,38,32,0.0 +23626,60,34,18,0.0 +23626,2,19,20,0.0 +23626,21,10,35,0.0 +23626,11,21,9,0.0 +23626,73,15,9,0.0 +23626,63,43.9,27,0.0 +23626,46,12,30,0.0 +23626,64,33.25,38,0.0 +23626,6,25,35,0.0 +23626,50,16.25,17,0.0 +23626,77,13,47,0.0 +23626,67,14,36,0.0 +23626,13,6,46,0.0 +23626,36,19,13,0.0 +23626,71,21.5,1,0.0 +23626,32,32,29,0.0 +23626,35,18,14,0.0 +23626,51,53,31,0.0 +23626,59,55,32,0.0 +23626,17,39,2,0.0 +23626,68,12.5,25,0.0 +23626,31,12.5,37,0.0 +23626,29,123.79,39,0.0 +23626,23,9,16,0.0 +23626,65,21.05,1,0.0 +23626,62,49.3,48,0.0 +23626,39,18,49,0.0 +23626,47,9.5,11,0.0 +23626,10,31,3,0.0 +23626,72,34.8,44,0.0 +23626,61,28.5,42,0.0 +23626,44,19.45,48,0.0 +23626,43,46,31,0.0 +23626,16,17.45,44,0.0 +23626,56,38,24,0.0 +23626,8,40,14,0.0 +23626,4,22,24,0.0 +23626,37,26,7,0.0 +23626,5,21.35,12,0.0 +23626,57,19.5,1,0.0 +23626,27,43.9,48,0.0 +23626,52,7,11,0.0 +23626,40,18.4,11,0.0 +23626,41,9.65,2,0.0 +23626,24,4.5,44,0.0 +23626,34,14,3,0.0 +23626,3,10,19,0.0 +23626,76,18,33,0.0 +23626,7,30,41,0.0 +23626,69,36,36,0.0 +23626,54,7.45,38,0.0 +23626,30,25.89,16,0.0 +23627,17,39,26,0.0 +23627,47,9.5,34,0.0 +23627,41,9.65,8,0.0 +23627,51,53,17,0.0 +23627,23,9,27,0.0 +23627,54,7.45,22,0.0 +23627,70,15,6,0.0 +23627,25,14,31,0.0 +23627,2,19,48,0.0 +23627,55,24,6,0.0 +23627,16,17.45,35,0.0 +23627,11,21,49,0.0 +23627,10,31,18,0.0 +23627,20,81,35,0.0 +23627,36,19,45,0.0 +23627,22,21,25,0.0 +23627,28,45.6,50,0.0 +23627,57,19.5,11,0.0 +23627,35,18,6,0.0 +23627,38,263.5,10,0.0 +23627,6,25,16,0.0 +23627,8,40,48,0.0 +23627,5,21.35,22,0.0 +23627,46,12,3,0.0 +23627,40,18.4,8,0.0 +23627,3,10,30,0.0 +23627,73,15,3,0.0 +23627,69,36,49,0.0 +23627,64,33.25,7,0.0 +23627,29,123.79,3,0.0 +23627,60,34,9,0.0 +23627,19,9.2,48,0.0 +23627,65,21.05,40,0.0 +23627,63,43.9,29,0.0 +23627,53,32.8,5,0.0 +23627,13,6,4,0.0 +23627,74,10,6,0.0 +23627,43,46,7,0.0 +23627,68,12.5,3,0.0 +23628,45,9.5,33,0.0 +23628,48,12.75,27,0.0 +23628,52,7,38,0.0 +23628,1,18,20,0.0 +23628,49,20,35,0.0 +23628,15,15.5,12,0.0 +23628,32,32,34,0.0 +23628,40,18.4,36,0.0 +23628,3,10,19,0.0 +23628,61,28.5,3,0.0 +23628,54,7.45,36,0.0 +23628,17,39,17,0.0 +23628,24,4.5,44,0.0 +23628,56,38,29,0.0 +23628,46,12,49,0.0 +23628,76,18,20,0.0 +23628,35,18,25,0.0 +23628,2,19,8,0.0 +23628,9,97,27,0.0 +23628,7,30,1,0.0 +23628,6,25,37,0.0 +23628,55,24,5,0.0 +23628,38,263.5,7,0.0 +23628,58,13.25,46,0.0 +23628,36,19,32,0.0 +23628,69,36,29,0.0 +23628,47,9.5,1,0.0 +23628,20,81,3,0.0 +23628,37,26,19,0.0 +23628,57,19.5,10,0.0 +23628,29,123.79,21,0.0 +23628,59,55,36,0.0 +23628,10,31,33,0.0 +23628,22,21,39,0.0 +23628,30,25.89,10,0.0 +23628,5,21.35,44,0.0 +23628,8,40,11,0.0 +23628,73,15,25,0.0 +23628,27,43.9,16,0.0 +23628,19,9.2,14,0.0 +23628,41,9.65,29,0.0 +23628,12,38,48,0.0 +23628,63,43.9,28,0.0 +23628,28,45.6,21,0.0 +23628,26,31.23,6,0.0 +23628,64,33.25,39,0.0 +23628,34,14,37,0.0 +23628,42,14,36,0.0 +23628,23,9,15,0.0 +23628,31,12.5,31,0.0 +23628,60,34,1,0.0 +23628,66,17,4,0.0 +23628,50,16.25,10,0.0 +23628,68,12.5,45,0.0 +23628,14,23.25,29,0.0 +23628,21,10,39,0.0 +23628,51,53,12,0.0 +23628,18,62.5,43,0.0 +23628,65,21.05,36,0.0 +23628,33,2.5,40,0.0 +23628,71,21.5,38,0.0 +23628,77,13,27,0.0 +23628,11,21,1,0.0 +23628,4,22,26,0.0 +23628,53,32.8,8,0.0 +23628,25,14,24,0.0 +23628,74,10,31,0.0 +23628,43,46,42,0.0 +23629,45,9.5,31,0.0 +23629,40,18.4,34,0.0 +23629,16,17.45,2,0.0 +23629,32,32,6,0.0 +23629,33,2.5,38,0.0 +23629,37,26,7,0.0 +23629,74,10,16,0.0 +23629,47,9.5,27,0.0 +23629,49,20,50,0.0 +23629,5,21.35,5,0.0 +23629,75,7.75,31,0.0 +23629,19,9.2,31,0.0 +23629,67,14,31,0.0 +23630,49,20,5,0.0 +23630,77,13,30,0.0 +23630,5,21.35,4,0.0 +23630,4,22,17,0.0 +23630,66,17,37,0.0 +23630,24,4.5,17,0.0 +23630,20,81,25,0.0 +23630,76,18,30,0.0 +23630,58,13.25,46,0.0 +23630,60,34,43,0.0 +23630,30,25.89,34,0.0 +23630,21,10,31,0.0 +23630,43,46,33,0.0 +23631,27,43.9,22,0.0 +23631,57,19.5,33,0.0 +23631,10,31,1,0.0 +23631,45,9.5,5,0.0 +23631,69,36,32,0.0 +23631,35,18,25,0.0 +23631,72,34.8,18,0.0 +23631,13,6,18,0.0 +23631,77,13,23,0.0 +23631,11,21,24,0.0 +23631,28,45.6,32,0.0 +23631,7,30,14,0.0 +23631,63,43.9,7,0.0 +23631,73,15,34,0.0 +23631,24,4.5,2,0.0 +23631,15,15.5,17,0.0 +23631,48,12.75,36,0.0 +23631,58,13.25,30,0.0 +23631,64,33.25,35,0.0 +23631,8,40,7,0.0 +23631,59,55,4,0.0 +23631,55,24,25,0.0 +23631,49,20,49,0.0 +23631,53,32.8,26,0.0 +23631,51,53,27,0.0 +23631,26,31.23,19,0.0 +23631,67,14,23,0.0 +23631,4,22,21,0.0 +23631,18,62.5,42,0.0 +23631,75,7.75,34,0.0 +23631,36,19,6,0.0 +23631,61,28.5,37,0.0 +23631,16,17.45,49,0.0 +23631,39,18,14,0.0 +23631,25,14,43,0.0 +23631,50,16.25,18,0.0 +23631,70,15,10,0.0 +23631,21,10,19,0.0 +23631,33,2.5,22,0.0 +23631,32,32,23,0.0 +23631,65,21.05,22,0.0 +23631,43,46,6,0.0 +23631,44,19.45,10,0.0 +23631,20,81,16,0.0 +23631,54,7.45,35,0.0 +23631,41,9.65,15,0.0 +23631,47,9.5,49,0.0 +23631,19,9.2,6,0.0 +23631,71,21.5,11,0.0 +23631,1,18,2,0.0 +23631,52,7,14,0.0 +23631,30,25.89,39,0.0 +23631,12,38,23,0.0 +23631,34,14,1,0.0 +23631,29,123.79,26,0.0 +23631,37,26,27,0.0 +23631,40,18.4,9,0.0 +23632,10,31,30,0.0 +23632,23,9,29,0.0 +23632,46,12,29,0.0 +23632,24,4.5,22,0.0 +23632,28,45.6,47,0.0 +23632,11,21,31,0.0 +23632,5,21.35,26,0.0 +23632,52,7,22,0.0 +23632,3,10,30,0.0 +23632,25,14,39,0.0 +23632,56,38,23,0.0 +23632,58,13.25,23,0.0 +23632,70,15,6,0.0 +23632,45,9.5,6,0.0 +23632,37,26,17,0.0 +23632,72,34.8,7,0.0 +23632,49,20,30,0.0 +23632,8,40,16,0.0 +23632,20,81,42,0.0 +23632,44,19.45,13,0.0 +23632,47,9.5,4,0.0 +23632,34,14,8,0.0 +23633,49,20,46,0.0 +23633,25,14,14,0.0 +23633,20,81,12,0.0 +23633,9,97,37,0.0 +23633,69,36,2,0.0 +23633,29,123.79,26,0.0 +23633,24,4.5,4,0.0 +23633,35,18,14,0.0 +23633,12,38,2,0.0 +23633,26,31.23,24,0.0 +23633,56,38,45,0.0 +23633,76,18,38,0.0 +23634,19,9.2,46,0.0 +23634,17,39,33,0.0 +23634,26,31.23,39,0.0 +23634,1,18,50,0.0 +23634,29,123.79,45,0.0 +23634,40,18.4,38,0.0 +23634,42,14,14,0.0 +23634,62,49.3,40,0.0 +23634,15,15.5,36,0.0 +23634,77,13,30,0.0 +23634,14,23.25,6,0.0 +23634,59,55,2,0.0 +23634,33,2.5,27,0.0 +23634,45,9.5,24,0.0 +23634,5,21.35,46,0.0 +23634,73,15,8,0.0 +23634,31,12.5,7,0.0 +23634,43,46,45,0.0 +23634,24,4.5,6,0.0 +23634,69,36,19,0.0 +23634,12,38,17,0.0 +23634,72,34.8,10,0.0 +23634,21,10,6,0.0 +23634,30,25.89,50,0.0 +23634,39,18,32,0.0 +23634,4,22,31,0.0 +23634,61,28.5,30,0.0 +23634,9,97,23,0.0 +23634,56,38,47,0.0 +23634,76,18,36,0.0 +23634,68,12.5,1,0.0 +23634,6,25,19,0.0 +23634,60,34,29,0.0 +23634,58,13.25,26,0.0 +23634,7,30,35,0.0 +23634,34,14,1,0.0 +23634,65,21.05,41,0.0 +23634,66,17,22,0.0 +23634,63,43.9,19,0.0 +23634,11,21,7,0.0 +23634,46,12,18,0.0 +23634,64,33.25,13,0.0 +23634,74,10,33,0.0 +23634,38,263.5,50,0.0 +23634,48,12.75,40,0.0 +23634,28,45.6,13,0.0 +23634,10,31,50,0.0 +23634,2,19,9,0.0 +23634,57,19.5,50,0.0 +23634,32,32,23,0.0 +23634,52,7,39,0.0 +23634,67,14,30,0.0 +23634,71,21.5,21,0.0 +23634,22,21,22,0.0 +23634,20,81,2,0.0 +23634,49,20,26,0.0 +23634,13,6,32,0.0 +23634,8,40,2,0.0 +23634,47,9.5,26,0.0 +23634,75,7.75,20,0.0 +23634,35,18,31,0.0 +23634,23,9,18,0.0 +23634,41,9.65,12,0.0 +23634,27,43.9,19,0.0 +23634,25,14,11,0.0 +23634,70,15,38,0.0 +23634,37,26,30,0.0 +23634,44,19.45,35,0.0 +23634,51,53,40,0.0 +23634,3,10,13,0.0 +23634,36,19,32,0.0 +23634,55,24,48,0.0 +23634,53,32.8,2,0.0 +23634,50,16.25,29,0.0 +23634,18,62.5,33,0.0 +23634,16,17.45,49,0.0 +23635,64,33.25,1,0.0 +23635,18,62.5,33,0.0 +23635,68,12.5,4,0.0 +23635,65,21.05,20,0.0 +23635,77,13,41,0.0 +23635,72,34.8,14,0.0 +23635,25,14,3,0.0 +23635,17,39,48,0.0 +23635,46,12,41,0.0 +23635,49,20,12,0.0 +23635,36,19,36,0.0 +23635,30,25.89,2,0.0 +23635,59,55,39,0.0 +23635,6,25,6,0.0 +23635,58,13.25,8,0.0 +23635,31,12.5,45,0.0 +23635,56,38,36,0.0 +23635,66,17,19,0.0 +23635,34,14,38,0.0 +23635,53,32.8,46,0.0 +23635,29,123.79,11,0.0 +23635,5,21.35,11,0.0 +23635,32,32,31,0.0 +23635,42,14,9,0.0 +23635,20,81,14,0.0 +23635,73,15,27,0.0 +23635,70,15,17,0.0 +23635,4,22,40,0.0 +23635,21,10,1,0.0 +23635,71,21.5,28,0.0 +23635,43,46,29,0.0 +23635,14,23.25,46,0.0 +23635,24,4.5,29,0.0 +23636,77,13,20,0.0 +23636,27,43.9,33,0.0 +23636,6,25,14,0.0 +23636,30,25.89,3,0.0 +23636,35,18,21,0.0 +23636,29,123.79,21,0.0 +23636,16,17.45,37,0.0 +23636,55,24,24,0.0 +23636,37,26,24,0.0 +23636,41,9.65,42,0.0 +23636,52,7,49,0.0 +23636,64,33.25,36,0.0 +23636,48,12.75,41,0.0 +23636,49,20,43,0.0 +23637,71,21.5,22,0.0 +23637,47,9.5,27,0.0 +23637,46,12,26,0.0 +23637,56,38,35,0.0 +23637,66,17,42,0.0 +23638,47,9.5,27,0.0 +23638,73,15,38,0.0 +23638,44,19.45,18,0.0 +23638,22,21,46,0.0 +23638,34,14,36,0.0 +23638,75,7.75,29,0.0 +23638,71,21.5,23,0.0 +23638,20,81,46,0.0 +23639,76,18,37,0.0 +23639,6,25,1,0.0 +23639,36,19,2,0.0 +23639,47,9.5,9,0.0 +23639,22,21,27,0.0 +23639,58,13.25,34,0.0 +23639,41,9.65,35,0.0 +23639,51,53,14,0.0 +23639,60,34,32,0.0 +23639,42,14,50,0.0 +23639,16,17.45,42,0.0 +23639,2,19,18,0.0 +23639,71,21.5,8,0.0 +23639,53,32.8,24,0.0 +23639,20,81,33,0.0 +23639,23,9,28,0.0 +23639,3,10,34,0.0 +23639,70,15,11,0.0 +23639,55,24,50,0.0 +23639,63,43.9,12,0.0 +23639,4,22,44,0.0 +23639,68,12.5,27,0.0 +23639,12,38,46,0.0 +23639,59,55,28,0.0 +23639,28,45.6,23,0.0 +23639,61,28.5,18,0.0 +23639,75,7.75,20,0.0 +23639,9,97,37,0.0 +23639,30,25.89,2,0.0 +23639,34,14,43,0.0 +23639,77,13,2,0.0 +23639,57,19.5,16,0.0 +23639,11,21,50,0.0 +23639,46,12,34,0.0 +23639,67,14,43,0.0 +23639,62,49.3,1,0.0 +23639,49,20,13,0.0 +23639,50,16.25,20,0.0 +23639,8,40,7,0.0 +23640,28,45.6,11,0.0 +23640,10,31,2,0.0 +23640,72,34.8,22,0.0 +23640,15,15.5,42,0.0 +23640,58,13.25,32,0.0 +23640,59,55,28,0.0 +23640,11,21,45,0.0 +23640,41,9.65,37,0.0 +23640,49,20,31,0.0 +23640,2,19,21,0.0 +23640,71,21.5,36,0.0 +23640,35,18,34,0.0 +23640,6,25,47,0.0 +23640,27,43.9,43,0.0 +23640,5,21.35,50,0.0 +23640,68,12.5,22,0.0 +23640,31,12.5,35,0.0 +23640,36,19,49,0.0 +23640,61,28.5,13,0.0 +23640,73,15,34,0.0 +23640,42,14,39,0.0 +23640,48,12.75,36,0.0 +23640,24,4.5,45,0.0 +23640,57,19.5,26,0.0 +23640,54,7.45,17,0.0 +23640,74,10,14,0.0 +23641,66,17,28,0.0 +23641,56,38,7,0.0 +23641,10,31,33,0.0 +23641,62,49.3,18,0.0 +23641,41,9.65,43,0.0 +23641,47,9.5,18,0.0 +23641,76,18,44,0.0 +23641,3,10,48,0.0 +23641,19,9.2,6,0.0 +23641,33,2.5,1,0.0 +23641,48,12.75,3,0.0 +23641,75,7.75,35,0.0 +23641,39,18,45,0.0 +23641,40,18.4,14,0.0 +23641,57,19.5,31,0.0 +23641,60,34,42,0.0 +23641,29,123.79,13,0.0 +23641,70,15,19,0.0 +23641,7,30,22,0.0 +23641,36,19,40,0.0 +23641,45,9.5,5,0.0 +23641,27,43.9,35,0.0 +23641,53,32.8,47,0.0 +23642,18,62.5,6,0.0 +23642,20,81,7,0.0 +23642,28,45.6,36,0.0 +23642,73,15,37,0.0 +23642,35,18,3,0.0 +23642,38,263.5,22,0.0 +23642,57,19.5,25,0.0 +23642,74,10,28,0.0 +23642,23,9,32,0.0 +23642,50,16.25,6,0.0 +23642,8,40,47,0.0 +23642,51,53,26,0.0 +23642,75,7.75,42,0.0 +23642,26,31.23,29,0.0 +23642,21,10,21,0.0 +23642,42,14,11,0.0 +23642,46,12,44,0.0 +23642,39,18,7,0.0 +23642,70,15,7,0.0 +23642,55,24,17,0.0 +23642,10,31,17,0.0 +23642,13,6,24,0.0 +23642,16,17.45,8,0.0 +23642,3,10,43,0.0 +23642,2,19,30,0.0 +23642,41,9.65,3,0.0 +23642,65,21.05,39,0.0 +23642,44,19.45,27,0.0 +23642,36,19,24,0.0 +23642,45,9.5,16,0.0 +23642,24,4.5,34,0.0 +23642,33,2.5,42,0.0 +23642,56,38,33,0.0 +23642,30,25.89,24,0.0 +23642,40,18.4,29,0.0 +23642,68,12.5,39,0.0 +23642,71,21.5,7,0.0 +23642,66,17,34,0.0 +23642,63,43.9,28,0.0 +23642,76,18,33,0.0 +23642,11,21,4,0.0 +23642,64,33.25,15,0.0 +23642,69,36,30,0.0 +23643,58,13.25,4,0.0 +23643,45,9.5,4,0.0 +23643,59,55,38,0.0 +23643,55,24,14,0.0 +23643,1,18,26,0.0 +23643,11,21,18,0.0 +23643,75,7.75,47,0.0 +23643,33,2.5,11,0.0 +23643,15,15.5,33,0.0 +23643,24,4.5,40,0.0 +23643,74,10,32,0.0 +23643,51,53,29,0.0 +23643,46,12,34,0.0 +23643,35,18,24,0.0 +23643,5,21.35,34,0.0 +23643,32,32,41,0.0 +23643,21,10,29,0.0 +23643,43,46,31,0.0 +23643,18,62.5,36,0.0 +23643,27,43.9,21,0.0 +23643,26,31.23,23,0.0 +23643,8,40,26,0.0 +23643,14,23.25,1,0.0 +23643,69,36,44,0.0 +23643,48,12.75,20,0.0 +23643,34,14,8,0.0 +23643,10,31,9,0.0 +23643,4,22,12,0.0 +23643,13,6,37,0.0 +23643,40,18.4,49,0.0 +23643,61,28.5,29,0.0 +23643,70,15,43,0.0 +23643,2,19,22,0.0 +23643,38,263.5,22,0.0 +23643,57,19.5,22,0.0 +23643,16,17.45,32,0.0 +23643,72,34.8,39,0.0 +23643,65,21.05,23,0.0 +23643,42,14,48,0.0 +23643,41,9.65,44,0.0 +23643,9,97,6,0.0 +23643,63,43.9,44,0.0 +23643,19,9.2,11,0.0 +23643,62,49.3,9,0.0 +23643,52,7,49,0.0 +23643,68,12.5,14,0.0 +23643,49,20,7,0.0 +23643,71,21.5,37,0.0 +23643,39,18,8,0.0 +23643,73,15,44,0.0 +23643,25,14,48,0.0 +23643,50,16.25,10,0.0 +23643,67,14,26,0.0 +23643,76,18,48,0.0 +23643,47,9.5,39,0.0 +23643,64,33.25,14,0.0 +23643,23,9,9,0.0 +23643,36,19,25,0.0 +23643,6,25,47,0.0 +23644,13,6,22,0.0 +23644,53,32.8,9,0.0 +23644,51,53,1,0.0 +23644,11,21,38,0.0 +23644,12,38,15,0.0 +23644,33,2.5,8,0.0 +23644,19,9.2,29,0.0 +23644,58,13.25,21,0.0 +23644,23,9,13,0.0 +23644,44,19.45,24,0.0 +23644,65,21.05,31,0.0 +23644,5,21.35,3,0.0 +23644,61,28.5,7,0.0 +23644,69,36,19,0.0 +23644,3,10,29,0.0 +23644,48,12.75,49,0.0 +23644,68,12.5,24,0.0 +23644,74,10,2,0.0 +23644,39,18,22,0.0 +23644,10,31,39,0.0 +23644,71,21.5,44,0.0 +23644,40,18.4,32,0.0 +23644,37,26,11,0.0 +23644,62,49.3,20,0.0 +23644,47,9.5,12,0.0 +23644,27,43.9,26,0.0 +23644,75,7.75,3,0.0 +23644,38,263.5,17,0.0 +23644,50,16.25,24,0.0 +23644,34,14,46,0.0 +23644,55,24,50,0.0 +23644,2,19,45,0.0 +23644,54,7.45,46,0.0 +23644,49,20,12,0.0 +23644,26,31.23,38,0.0 +23644,77,13,20,0.0 +23644,63,43.9,41,0.0 +23644,28,45.6,15,0.0 +23644,7,30,15,0.0 +23644,42,14,9,0.0 +23644,36,19,27,0.0 +23644,32,32,45,0.0 +23644,64,33.25,41,0.0 +23644,24,4.5,43,0.0 +23644,25,14,33,0.0 +23644,72,34.8,21,0.0 +23644,8,40,28,0.0 +23644,14,23.25,3,0.0 +23644,35,18,47,0.0 +23644,59,55,42,0.0 +23644,15,15.5,46,0.0 +23644,9,97,7,0.0 +23644,76,18,47,0.0 +23644,66,17,46,0.0 +23644,22,21,14,0.0 +23644,29,123.79,21,0.0 +23644,56,38,25,0.0 +23644,70,15,19,0.0 +23645,46,12,26,0.0 +23645,17,39,12,0.0 +23645,39,18,13,0.0 +23645,37,26,6,0.0 +23645,16,17.45,23,0.0 +23645,1,18,41,0.0 +23645,9,97,28,0.0 +23645,35,18,50,0.0 +23645,69,36,14,0.0 +23645,21,10,12,0.0 +23645,36,19,34,0.0 +23645,61,28.5,32,0.0 +23645,63,43.9,1,0.0 +23645,13,6,33,0.0 +23645,22,21,27,0.0 +23645,73,15,2,0.0 +23645,29,123.79,35,0.0 +23645,44,19.45,12,0.0 +23645,3,10,44,0.0 +23645,28,45.6,16,0.0 +23645,27,43.9,25,0.0 +23645,55,24,21,0.0 +23645,23,9,45,0.0 +23645,75,7.75,10,0.0 +23645,14,23.25,18,0.0 +23645,76,18,23,0.0 +23645,18,62.5,29,0.0 +23645,59,55,38,0.0 +23645,77,13,38,0.0 +23645,19,9.2,6,0.0 +23645,24,4.5,11,0.0 +23645,8,40,35,0.0 +23645,48,12.75,34,0.0 +23645,5,21.35,8,0.0 +23646,55,24,39,0.0 +23646,41,9.65,32,0.0 +23646,7,30,3,0.0 +23646,37,26,17,0.0 +23646,62,49.3,25,0.0 +23646,42,14,29,0.0 +23646,65,21.05,10,0.0 +23646,60,34,20,0.0 +23646,67,14,50,0.0 +23646,69,36,28,0.0 +23646,39,18,50,0.0 +23646,64,33.25,35,0.0 +23646,13,6,22,0.0 +23646,30,25.89,50,0.0 +23646,77,13,15,0.0 +23646,68,12.5,29,0.0 +23646,20,81,31,0.0 +23646,54,7.45,19,0.0 +23646,1,18,23,0.0 +23646,44,19.45,7,0.0 +23646,66,17,33,0.0 +23646,56,38,12,0.0 +23646,15,15.5,27,0.0 +23646,71,21.5,39,0.0 +23646,47,9.5,22,0.0 +23646,40,18.4,24,0.0 +23646,46,12,46,0.0 +23646,53,32.8,33,0.0 +23646,51,53,13,0.0 +23646,36,19,2,0.0 +23646,59,55,26,0.0 +23646,21,10,40,0.0 +23646,48,12.75,22,0.0 +23647,35,18,5,0.0 +23647,8,40,49,0.0 +23647,66,17,41,0.0 +23647,3,10,18,0.0 +23647,7,30,41,0.0 +23647,46,12,22,0.0 +23647,61,28.5,3,0.0 +23647,41,9.65,47,0.0 +23647,39,18,4,0.0 +23647,4,22,44,0.0 +23647,67,14,39,0.0 +23647,19,9.2,6,0.0 +23647,75,7.75,12,0.0 +23647,27,43.9,5,0.0 +23647,76,18,47,0.0 +23647,42,14,9,0.0 +23647,54,7.45,43,0.0 +23647,5,21.35,43,0.0 +23647,2,19,26,0.0 +23647,26,31.23,8,0.0 +23647,24,4.5,36,0.0 +23647,38,263.5,49,0.0 +23647,70,15,46,0.0 +23647,57,19.5,21,0.0 +23647,28,45.6,2,0.0 +23647,40,18.4,25,0.0 +23647,53,32.8,10,0.0 +23647,14,23.25,22,0.0 +23647,49,20,26,0.0 +23647,45,9.5,42,0.0 +23647,50,16.25,17,0.0 +23647,55,24,50,0.0 +23647,72,34.8,26,0.0 +23647,1,18,13,0.0 +23647,58,13.25,38,0.0 +23647,30,25.89,16,0.0 +23647,56,38,42,0.0 +23647,71,21.5,44,0.0 +23647,48,12.75,38,0.0 +23647,64,33.25,22,0.0 +23647,11,21,47,0.0 +23647,20,81,43,0.0 +23647,22,21,40,0.0 +23647,16,17.45,8,0.0 +23647,9,97,12,0.0 +23647,25,14,25,0.0 +23647,23,9,7,0.0 +23647,51,53,9,0.0 +23647,18,62.5,49,0.0 +23647,44,19.45,35,0.0 +23647,63,43.9,25,0.0 +23647,59,55,48,0.0 +23647,77,13,22,0.0 +23647,13,6,39,0.0 +23647,6,25,36,0.0 +23647,32,32,50,0.0 +23647,69,36,22,0.0 +23647,43,46,49,0.0 +23647,10,31,5,0.0 +23647,74,10,15,0.0 +23648,13,6,14,0.0 +23648,29,123.79,39,0.0 +23648,20,81,27,0.0 +23648,7,30,47,0.0 +23648,22,21,35,0.0 +23648,35,18,46,0.0 +23648,26,31.23,18,0.0 +23648,69,36,20,0.0 +23648,15,15.5,49,0.0 +23648,28,45.6,33,0.0 +23648,36,19,8,0.0 +23648,74,10,15,0.0 +23648,17,39,33,0.0 +23648,37,26,14,0.0 +23648,12,38,29,0.0 +23648,72,34.8,29,0.0 +23648,70,15,2,0.0 +23648,23,9,19,0.0 +23648,62,49.3,14,0.0 +23648,34,14,1,0.0 +23648,73,15,3,0.0 +23648,52,7,28,0.0 +23648,30,25.89,2,0.0 +23648,54,7.45,32,0.0 +23648,65,21.05,47,0.0 +23648,46,12,19,0.0 +23648,40,18.4,33,0.0 +23648,49,20,23,0.0 +23648,9,97,21,0.0 +23648,48,12.75,42,0.0 +23648,58,13.25,19,0.0 +23648,56,38,6,0.0 +23648,51,53,34,0.0 +23648,67,14,27,0.0 +23648,11,21,17,0.0 +23648,64,33.25,26,0.0 +23648,76,18,12,0.0 +23649,4,22,9,0.0 +23649,50,16.25,43,0.0 +23649,34,14,3,0.0 +23649,66,17,20,0.0 +23649,5,21.35,6,0.0 +23649,37,26,21,0.0 +23649,16,17.45,13,0.0 +23649,63,43.9,42,0.0 +23649,18,62.5,5,0.0 +23649,32,32,43,0.0 +23649,55,24,22,0.0 +23649,77,13,33,0.0 +23649,54,7.45,36,0.0 +23649,15,15.5,4,0.0 +23649,30,25.89,30,0.0 +23649,31,12.5,10,0.0 +23649,70,15,6,0.0 +23649,25,14,23,0.0 +23649,26,31.23,46,0.0 +23649,11,21,13,0.0 +23649,58,13.25,43,0.0 +23649,76,18,28,0.0 +23649,46,12,27,0.0 +23649,52,7,41,0.0 +23649,12,38,25,0.0 +23649,68,12.5,35,0.0 +23649,69,36,25,0.0 +23649,2,19,41,0.0 +23649,74,10,47,0.0 +23649,38,263.5,40,0.0 +23649,29,123.79,17,0.0 +23649,22,21,13,0.0 +23649,61,28.5,11,0.0 +23649,62,49.3,39,0.0 +23649,57,19.5,12,0.0 +23649,53,32.8,35,0.0 +23649,67,14,4,0.0 +23649,8,40,11,0.0 +23649,59,55,19,0.0 +23649,48,12.75,26,0.0 +23649,64,33.25,6,0.0 +23649,36,19,17,0.0 +23649,17,39,35,0.0 +23649,49,20,14,0.0 +23649,9,97,1,0.0 +23649,75,7.75,49,0.0 +23649,23,9,48,0.0 +23649,27,43.9,33,0.0 +23649,3,10,49,0.0 +23649,39,18,30,0.0 +23649,41,9.65,50,0.0 +23649,6,25,6,0.0 +23649,14,23.25,14,0.0 +23649,60,34,11,0.0 +23649,51,53,50,0.0 +23649,21,10,26,0.0 +23649,42,14,46,0.0 +23649,43,46,26,0.0 +23649,45,9.5,40,0.0 +23649,7,30,32,0.0 +23649,28,45.6,44,0.0 +23649,19,9.2,26,0.0 +23649,33,2.5,49,0.0 +23649,71,21.5,29,0.0 +23649,24,4.5,4,0.0 +23649,72,34.8,13,0.0 +23649,1,18,15,0.0 +23649,40,18.4,31,0.0 +23649,73,15,22,0.0 +23649,47,9.5,4,0.0 +23649,56,38,41,0.0 +23649,20,81,45,0.0 +23649,35,18,26,0.0 +23649,65,21.05,6,0.0 +23649,10,31,11,0.0 +23649,44,19.45,34,0.0 +23650,75,7.75,11,0.0 +23650,21,10,23,0.0 +23650,28,45.6,25,0.0 +23650,4,22,5,0.0 +23650,68,12.5,14,0.0 +23650,46,12,43,0.0 +23650,73,15,34,0.0 +23650,5,21.35,2,0.0 +23650,72,34.8,30,0.0 +23650,19,9.2,50,0.0 +23650,20,81,47,0.0 +23650,18,62.5,15,0.0 +23650,53,32.8,26,0.0 +23650,30,25.89,49,0.0 +23650,59,55,47,0.0 +23650,9,97,6,0.0 +23650,77,13,15,0.0 +23650,16,17.45,39,0.0 +23650,27,43.9,48,0.0 +23650,26,31.23,23,0.0 +23650,3,10,35,0.0 +23650,7,30,29,0.0 +23650,38,263.5,46,0.0 +23650,55,24,34,0.0 +23650,34,14,32,0.0 +23650,35,18,4,0.0 +23650,74,10,32,0.0 +23650,42,14,6,0.0 +23650,47,9.5,37,0.0 +23650,2,19,18,0.0 +23650,10,31,38,0.0 +23650,36,19,25,0.0 +23651,14,23.25,36,0.0 +23651,26,31.23,50,0.0 +23651,9,97,33,0.0 +23651,63,43.9,23,0.0 +23651,29,123.79,45,0.0 +23651,40,18.4,37,0.0 +23651,69,36,10,0.0 +23651,44,19.45,21,0.0 +23651,77,13,26,0.0 +23651,20,81,41,0.0 +23651,21,10,18,0.0 +23651,27,43.9,24,0.0 +23651,31,12.5,49,0.0 +23651,19,9.2,25,0.0 +23651,75,7.75,44,0.0 +23651,17,39,1,0.0 +23651,51,53,7,0.0 +23651,61,28.5,26,0.0 +23651,5,21.35,16,0.0 +23651,60,34,27,0.0 +23652,44,19.45,39,0.0 +23652,64,33.25,48,0.0 +23652,48,12.75,41,0.0 +23652,27,43.9,27,0.0 +23652,63,43.9,45,0.0 +23652,57,19.5,44,0.0 +23652,41,9.65,16,0.0 +23652,53,32.8,13,0.0 +23652,15,15.5,10,0.0 +23652,54,7.45,25,0.0 +23652,5,21.35,2,0.0 +23652,4,22,49,0.0 +23652,72,34.8,26,0.0 +23652,47,9.5,30,0.0 +23652,52,7,11,0.0 +23652,21,10,27,0.0 +23652,61,28.5,19,0.0 +23652,50,16.25,22,0.0 +23652,9,97,31,0.0 +23652,38,263.5,13,0.0 +23652,36,19,9,0.0 +23652,33,2.5,49,0.0 +23652,16,17.45,35,0.0 +23652,46,12,25,0.0 +23652,69,36,39,0.0 +23652,29,123.79,37,0.0 +23652,34,14,21,0.0 +23652,23,9,27,0.0 +23652,1,18,24,0.0 +23652,55,24,43,0.0 +23652,31,12.5,18,0.0 +23652,67,14,44,0.0 +23652,39,18,36,0.0 +23652,19,9.2,32,0.0 +23652,59,55,12,0.0 +23652,18,62.5,11,0.0 +23652,11,21,27,0.0 +23652,7,30,26,0.0 +23652,22,21,9,0.0 +23652,74,10,38,0.0 +23652,68,12.5,39,0.0 +23652,14,23.25,16,0.0 +23652,58,13.25,11,0.0 +23652,71,21.5,3,0.0 +23652,51,53,37,0.0 +23652,75,7.75,16,0.0 +23652,65,21.05,37,0.0 +23652,2,19,45,0.0 +23652,3,10,42,0.0 +23652,37,26,21,0.0 +23652,35,18,32,0.0 +23652,43,46,50,0.0 +23652,77,13,24,0.0 +23652,62,49.3,31,0.0 +23652,12,38,7,0.0 +23652,66,17,31,0.0 +23652,49,20,11,0.0 +23652,17,39,16,0.0 +23652,13,6,20,0.0 +23652,40,18.4,7,0.0 +23652,60,34,17,0.0 +23653,9,97,48,0.0 +23653,18,62.5,11,0.0 +23653,24,4.5,19,0.0 +23653,41,9.65,37,0.0 +23653,70,15,34,0.0 +23653,6,25,1,0.0 +23653,16,17.45,11,0.0 +23653,42,14,47,0.0 +23653,63,43.9,44,0.0 +23653,28,45.6,9,0.0 +23653,11,21,9,0.0 +23653,77,13,27,0.0 +23653,37,26,22,0.0 +23653,62,49.3,4,0.0 +23653,20,81,23,0.0 +23653,31,12.5,7,0.0 +23653,4,22,30,0.0 +23653,19,9.2,33,0.0 +23653,52,7,16,0.0 +23653,47,9.5,21,0.0 +23653,69,36,34,0.0 +23653,72,34.8,2,0.0 +23653,60,34,35,0.0 +23653,49,20,2,0.0 +23654,15,15.5,29,0.0 +23654,13,6,30,0.0 +23654,43,46,23,0.0 +23654,29,123.79,12,0.0 +23654,16,17.45,9,0.0 +23654,56,38,13,0.0 +23654,35,18,24,0.0 +23654,60,34,48,0.0 +23654,69,36,18,0.0 +23654,14,23.25,33,0.0 +23654,46,12,2,0.0 +23654,61,28.5,37,0.0 +23654,8,40,12,0.0 +23654,37,26,21,0.0 +23654,50,16.25,47,0.0 +23654,41,9.65,21,0.0 +23654,34,14,48,0.0 +23654,77,13,16,0.0 +23654,68,12.5,14,0.0 +23654,4,22,50,0.0 +23654,21,10,49,0.0 +23654,9,97,5,0.0 +23654,74,10,41,0.0 +23654,36,19,26,0.0 +23654,67,14,16,0.0 +23654,26,31.23,19,0.0 +23654,70,15,47,0.0 +23654,63,43.9,33,0.0 +23654,19,9.2,7,0.0 +23654,30,25.89,33,0.0 +23654,28,45.6,42,0.0 +23654,42,14,23,0.0 +23654,62,49.3,11,0.0 +23654,44,19.45,13,0.0 +23654,45,9.5,30,0.0 +23654,57,19.5,5,0.0 +23654,76,18,43,0.0 +23654,66,17,41,0.0 +23654,10,31,14,0.0 +23654,7,30,20,0.0 +23654,58,13.25,48,0.0 +23654,39,18,22,0.0 +23654,32,32,46,0.0 +23654,5,21.35,48,0.0 +23654,6,25,13,0.0 +23654,3,10,41,0.0 +23654,23,9,8,0.0 +23654,54,7.45,32,0.0 +23654,12,38,35,0.0 +23654,24,4.5,38,0.0 +23655,52,7,17,0.0 +23655,22,21,40,0.0 +23655,4,22,19,0.0 +23655,62,49.3,11,0.0 +23655,34,14,7,0.0 +23655,59,55,6,0.0 +23655,65,21.05,45,0.0 +23655,28,45.6,44,0.0 +23655,41,9.65,12,0.0 +23655,9,97,4,0.0 +23655,25,14,49,0.0 +23655,44,19.45,43,0.0 +23655,14,23.25,31,0.0 +23655,1,18,36,0.0 +23655,55,24,19,0.0 +23655,26,31.23,22,0.0 +23655,2,19,45,0.0 +23655,15,15.5,36,0.0 +23655,27,43.9,26,0.0 +23655,31,12.5,48,0.0 +23655,35,18,17,0.0 +23655,51,53,17,0.0 +23655,11,21,22,0.0 +23655,48,12.75,13,0.0 +23655,37,26,42,0.0 +23655,21,10,31,0.0 +23655,7,30,39,0.0 +23655,38,263.5,22,0.0 +23655,72,34.8,20,0.0 +23655,74,10,2,0.0 +23655,57,19.5,30,0.0 +23655,69,36,47,0.0 +23655,66,17,26,0.0 +23655,40,18.4,42,0.0 +23655,5,21.35,13,0.0 +23655,76,18,49,0.0 +23655,43,46,13,0.0 +23655,12,38,31,0.0 +23655,6,25,4,0.0 +23655,42,14,41,0.0 +23655,17,39,44,0.0 +23655,36,19,42,0.0 +23655,10,31,2,0.0 +23655,58,13.25,22,0.0 +23656,8,40,21,0.0 +23656,69,36,27,0.0 +23656,20,81,37,0.0 +23656,45,9.5,24,0.0 +23656,3,10,19,0.0 +23656,71,21.5,7,0.0 +23656,25,14,45,0.0 +23656,33,2.5,5,0.0 +23656,38,263.5,8,0.0 +23656,43,46,34,0.0 +23656,23,9,6,0.0 +23656,74,10,19,0.0 +23656,10,31,43,0.0 +23656,34,14,2,0.0 +23656,62,49.3,40,0.0 +23656,75,7.75,10,0.0 +23656,42,14,2,0.0 +23656,77,13,13,0.0 +23656,5,21.35,19,0.0 +23656,41,9.65,34,0.0 +23656,12,38,15,0.0 +23656,54,7.45,8,0.0 +23656,49,20,24,0.0 +23656,6,25,21,0.0 +23656,21,10,38,0.0 +23656,48,12.75,7,0.0 +23656,59,55,2,0.0 +23656,18,62.5,32,0.0 +23656,36,19,39,0.0 +23656,7,30,11,0.0 +23656,47,9.5,8,0.0 +23656,44,19.45,18,0.0 +23656,72,34.8,11,0.0 +23656,9,97,28,0.0 +23656,46,12,22,0.0 +23656,40,18.4,8,0.0 +23656,37,26,20,0.0 +23656,60,34,40,0.0 +23656,35,18,42,0.0 +23656,51,53,21,0.0 +23656,53,32.8,14,0.0 +23656,32,32,15,0.0 +23656,76,18,26,0.0 +23656,39,18,47,0.0 +23656,57,19.5,1,0.0 +23656,14,23.25,37,0.0 +23656,1,18,42,0.0 +23656,61,28.5,12,0.0 +23656,30,25.89,28,0.0 +23656,17,39,37,0.0 +23656,63,43.9,25,0.0 +23656,29,123.79,15,0.0 +23656,50,16.25,14,0.0 +23656,65,21.05,44,0.0 +23656,52,7,46,0.0 +23656,15,15.5,29,0.0 +23656,58,13.25,15,0.0 +23656,2,19,37,0.0 +23656,68,12.5,26,0.0 +23656,19,9.2,19,0.0 +23656,56,38,47,0.0 +23656,22,21,6,0.0 +23656,4,22,9,0.0 +23656,27,43.9,4,0.0 +23656,31,12.5,37,0.0 +23656,66,17,16,0.0 +23656,26,31.23,11,0.0 +23656,64,33.25,8,0.0 +23657,2,19,13,0.0 +23657,61,28.5,15,0.0 +23657,26,31.23,42,0.0 +23657,23,9,27,0.0 +23657,10,31,49,0.0 +23657,7,30,2,0.0 +23658,15,15.5,10,0.0 +23658,60,34,43,0.0 +23658,23,9,22,0.0 +23658,39,18,46,0.0 +23658,69,36,9,0.0 +23658,71,21.5,3,0.0 +23658,18,62.5,36,0.0 +23658,48,12.75,13,0.0 +23658,28,45.6,39,0.0 +23658,14,23.25,12,0.0 +23658,24,4.5,45,0.0 +23658,56,38,47,0.0 +23658,72,34.8,12,0.0 +23658,54,7.45,33,0.0 +23658,3,10,10,0.0 +23658,36,19,28,0.0 +23658,27,43.9,35,0.0 +23659,75,7.75,34,0.0 +23659,27,43.9,45,0.0 +23659,3,10,5,0.0 +23659,16,17.45,35,0.0 +23659,64,33.25,33,0.0 +23659,52,7,15,0.0 +23659,9,97,5,0.0 +23659,10,31,2,0.0 +23659,44,19.45,24,0.0 +23659,34,14,1,0.0 +23659,51,53,5,0.0 +23659,71,21.5,21,0.0 +23659,69,36,13,0.0 +23659,13,6,37,0.0 +23659,38,263.5,45,0.0 +23659,43,46,15,0.0 +23659,56,38,19,0.0 +23659,50,16.25,6,0.0 +23659,36,19,33,0.0 +23659,14,23.25,33,0.0 +23659,11,21,23,0.0 +23659,23,9,22,0.0 +23659,4,22,13,0.0 +23659,37,26,32,0.0 +23659,63,43.9,38,0.0 +23659,45,9.5,24,0.0 +23659,12,38,46,0.0 +23659,17,39,36,0.0 +23659,32,32,30,0.0 +23659,30,25.89,22,0.0 +23659,65,21.05,44,0.0 +23659,47,9.5,29,0.0 +23659,19,9.2,30,0.0 +23659,46,12,24,0.0 +23659,2,19,22,0.0 +23659,24,4.5,44,0.0 +23659,74,10,4,0.0 +23659,68,12.5,37,0.0 +23659,58,13.25,23,0.0 +23659,67,14,21,0.0 +23659,33,2.5,44,0.0 +23659,59,55,30,0.0 +23659,18,62.5,6,0.0 +23659,73,15,32,0.0 +23659,76,18,36,0.0 +23659,5,21.35,16,0.0 +23659,42,14,47,0.0 +23659,20,81,5,0.0 +23659,6,25,28,0.0 +23659,8,40,39,0.0 +23659,26,31.23,16,0.0 +23659,31,12.5,43,0.0 +23659,15,15.5,20,0.0 +23659,35,18,18,0.0 +23659,49,20,42,0.0 +23659,55,24,4,0.0 +23659,29,123.79,2,0.0 +23659,25,14,42,0.0 +23659,7,30,11,0.0 +23659,60,34,50,0.0 +23659,61,28.5,30,0.0 +23659,41,9.65,40,0.0 +23659,54,7.45,25,0.0 +23659,28,45.6,43,0.0 +23659,72,34.8,14,0.0 +23659,40,18.4,36,0.0 +23659,53,32.8,1,0.0 +23659,57,19.5,43,0.0 +23659,66,17,43,0.0 +23659,70,15,44,0.0 +23659,39,18,8,0.0 +23659,62,49.3,39,0.0 +23659,21,10,25,0.0 +23660,58,13.25,19,0.0 +23660,25,14,46,0.0 +23660,64,33.25,33,0.0 +23660,36,19,50,0.0 +23660,27,43.9,32,0.0 +23660,33,2.5,37,0.0 +23660,53,32.8,18,0.0 +23660,8,40,49,0.0 +23660,30,25.89,37,0.0 +23660,71,21.5,19,0.0 +23661,30,25.89,16,0.0 +23661,42,14,14,0.0 +23661,70,15,35,0.0 +23661,65,21.05,7,0.0 +23661,64,33.25,4,0.0 +23661,62,49.3,10,0.0 +23661,29,123.79,14,0.0 +23661,19,9.2,43,0.0 +23661,35,18,46,0.0 +23661,20,81,37,0.0 +23661,2,19,19,0.0 +23661,14,23.25,48,0.0 +23661,43,46,5,0.0 +23661,23,9,47,0.0 +23661,46,12,47,0.0 +23661,32,32,33,0.0 +23661,45,9.5,50,0.0 +23661,55,24,9,0.0 +23661,28,45.6,38,0.0 +23661,38,263.5,33,0.0 +23661,71,21.5,2,0.0 +23661,1,18,26,0.0 +23661,57,19.5,32,0.0 +23661,12,38,15,0.0 +23661,74,10,37,0.0 +23661,16,17.45,19,0.0 +23661,24,4.5,11,0.0 +23661,44,19.45,9,0.0 +23661,75,7.75,39,0.0 +23661,39,18,25,0.0 +23661,13,6,8,0.0 +23661,58,13.25,35,0.0 +23661,53,32.8,3,0.0 +23661,68,12.5,20,0.0 +23661,77,13,35,0.0 +23661,56,38,50,0.0 +23661,76,18,8,0.0 +23661,40,18.4,37,0.0 +23662,54,7.45,39,0.0 +23662,6,25,5,0.0 +23662,71,21.5,50,0.0 +23662,30,25.89,40,0.0 +23662,51,53,32,0.0 +23662,8,40,36,0.0 +23662,76,18,13,0.0 +23662,69,36,44,0.0 +23662,36,19,1,0.0 +23662,13,6,10,0.0 +23662,52,7,27,0.0 +23662,2,19,35,0.0 +23662,35,18,28,0.0 +23662,26,31.23,40,0.0 +23662,32,32,41,0.0 +23662,59,55,6,0.0 +23662,68,12.5,49,0.0 +23662,67,14,20,0.0 +23662,12,38,31,0.0 +23662,70,15,34,0.0 +23662,48,12.75,2,0.0 +23662,21,10,13,0.0 +23662,44,19.45,23,0.0 +23662,15,15.5,37,0.0 +23663,37,26,42,0.0 +23663,5,21.35,3,0.0 +23663,53,32.8,45,0.0 +23663,31,12.5,13,0.0 +23663,34,14,37,0.0 +23663,26,31.23,25,0.0 +23663,24,4.5,1,0.0 +23663,73,15,45,0.0 +23663,1,18,32,0.0 +23663,45,9.5,46,0.0 +23663,15,15.5,37,0.0 +23663,30,25.89,25,0.0 +23663,61,28.5,13,0.0 +23663,43,46,44,0.0 +23663,18,62.5,25,0.0 +23663,63,43.9,9,0.0 +23663,54,7.45,26,0.0 +23663,62,49.3,46,0.0 +23663,6,25,49,0.0 +23663,27,43.9,24,0.0 +23663,46,12,23,0.0 +23663,33,2.5,49,0.0 +23663,65,21.05,25,0.0 +23663,16,17.45,26,0.0 +23663,44,19.45,16,0.0 +23663,11,21,27,0.0 +23663,20,81,26,0.0 +23663,68,12.5,16,0.0 +23663,49,20,42,0.0 +23663,50,16.25,14,0.0 +23663,36,19,26,0.0 +23663,74,10,27,0.0 +23663,22,21,13,0.0 +23663,10,31,13,0.0 +23663,59,55,38,0.0 +23663,32,32,18,0.0 +23663,3,10,47,0.0 +23663,19,9.2,34,0.0 +23663,60,34,15,0.0 +23663,38,263.5,50,0.0 +23663,21,10,44,0.0 +23663,9,97,6,0.0 +23663,51,53,30,0.0 +23664,27,43.9,21,0.0 +23664,14,23.25,9,0.0 +23664,37,26,18,0.0 +23664,40,18.4,15,0.0 +23664,17,39,44,0.0 +23664,24,4.5,38,0.0 +23664,25,14,9,0.0 +23664,23,9,4,0.0 +23664,55,24,8,0.0 +23664,7,30,5,0.0 +23664,20,81,28,0.0 +23664,36,19,49,0.0 +23664,28,45.6,28,0.0 +23664,59,55,27,0.0 +23664,67,14,33,0.0 +23664,33,2.5,12,0.0 +23664,18,62.5,26,0.0 +23665,69,36,32,0.0 +23665,61,28.5,39,0.0 +23665,76,18,38,0.0 +23665,40,18.4,44,0.0 +23665,77,13,6,0.0 +23665,30,25.89,5,0.0 +23665,33,2.5,16,0.0 +23665,64,33.25,50,0.0 +23665,50,16.25,32,0.0 +23665,7,30,37,0.0 +23665,65,21.05,31,0.0 +23665,10,31,39,0.0 +23665,72,34.8,47,0.0 +23665,70,15,40,0.0 +23665,71,21.5,39,0.0 +23665,27,43.9,47,0.0 +23665,59,55,21,0.0 +23665,4,22,25,0.0 +23665,1,18,43,0.0 +23665,20,81,46,0.0 +23665,60,34,14,0.0 +23665,62,49.3,38,0.0 +23665,49,20,22,0.0 +23665,68,12.5,24,0.0 +23665,57,19.5,19,0.0 +23665,73,15,43,0.0 +23665,48,12.75,7,0.0 +23665,54,7.45,34,0.0 +23665,43,46,43,0.0 +23665,67,14,5,0.0 +23665,75,7.75,43,0.0 +23665,63,43.9,33,0.0 +23665,18,62.5,5,0.0 +23665,39,18,27,0.0 +23666,2,19,22,0.0 +23666,14,23.25,17,0.0 +23666,15,15.5,39,0.0 +23666,7,30,45,0.0 +23666,60,34,49,0.0 +23666,63,43.9,46,0.0 +23666,31,12.5,9,0.0 +23666,71,21.5,1,0.0 +23666,61,28.5,43,0.0 +23666,48,12.75,12,0.0 +23666,3,10,14,0.0 +23666,74,10,36,0.0 +23666,70,15,42,0.0 +23666,23,9,18,0.0 +23666,37,26,29,0.0 +23666,75,7.75,10,0.0 +23666,57,19.5,39,0.0 +23666,67,14,13,0.0 +23666,45,9.5,1,0.0 +23666,9,97,43,0.0 +23666,64,33.25,27,0.0 +23666,49,20,3,0.0 +23666,6,25,28,0.0 +23666,53,32.8,7,0.0 +23666,50,16.25,25,0.0 +23666,18,62.5,1,0.0 +23666,43,46,23,0.0 +23666,34,14,11,0.0 +23666,8,40,41,0.0 +23666,1,18,27,0.0 +23666,27,43.9,18,0.0 +23666,35,18,23,0.0 +23666,69,36,46,0.0 +23666,25,14,10,0.0 +23666,11,21,41,0.0 +23666,58,13.25,3,0.0 +23666,56,38,46,0.0 +23666,30,25.89,9,0.0 +23666,21,10,5,0.0 +23666,26,31.23,6,0.0 +23666,33,2.5,26,0.0 +23666,22,21,3,0.0 +23666,73,15,25,0.0 +23666,12,38,24,0.0 +23666,17,39,31,0.0 +23666,52,7,10,0.0 +23666,10,31,14,0.0 +23666,29,123.79,31,0.0 +23666,66,17,13,0.0 +23666,59,55,34,0.0 +23666,47,9.5,3,0.0 +23666,77,13,48,0.0 +23666,46,12,26,0.0 +23666,5,21.35,33,0.0 +23666,44,19.45,19,0.0 +23666,20,81,13,0.0 +23666,62,49.3,45,0.0 +23666,16,17.45,21,0.0 +23666,76,18,16,0.0 +23666,42,14,8,0.0 +23666,41,9.65,50,0.0 +23666,68,12.5,39,0.0 +23666,51,53,29,0.0 +23666,38,263.5,11,0.0 +23666,32,32,20,0.0 +23666,28,45.6,13,0.0 +23666,54,7.45,30,0.0 +23666,55,24,44,0.0 +23666,4,22,49,0.0 +23666,39,18,13,0.0 +23667,44,19.45,7,0.0 +23667,56,38,45,0.0 +23667,47,9.5,28,0.0 +23667,53,32.8,36,0.0 +23667,62,49.3,31,0.0 +23667,68,12.5,44,0.0 +23667,27,43.9,38,0.0 +23667,21,10,50,0.0 +23667,10,31,26,0.0 +23667,14,23.25,9,0.0 +23667,34,14,5,0.0 +23667,40,18.4,28,0.0 +23667,60,34,11,0.0 +23667,71,21.5,8,0.0 +23667,3,10,41,0.0 +23667,35,18,24,0.0 +23667,38,263.5,19,0.0 +23667,63,43.9,12,0.0 +23667,46,12,5,0.0 +23667,11,21,42,0.0 +23667,75,7.75,39,0.0 +23667,7,30,37,0.0 +23667,41,9.65,32,0.0 +23667,28,45.6,2,0.0 +23667,1,18,47,0.0 +23667,8,40,2,0.0 +23667,51,53,20,0.0 +23667,12,38,48,0.0 +23667,26,31.23,44,0.0 +23667,15,15.5,46,0.0 +23668,21,10,4,0.0 +23668,65,21.05,11,0.0 +23668,9,97,26,0.0 +23668,45,9.5,14,0.0 +23668,34,14,49,0.0 +23668,48,12.75,16,0.0 +23668,61,28.5,10,0.0 +23668,51,53,41,0.0 +23668,74,10,38,0.0 +23668,77,13,12,0.0 +23668,50,16.25,11,0.0 +23668,52,7,21,0.0 +23668,66,17,14,0.0 +23668,37,26,34,0.0 +23669,77,13,27,0.0 +23669,73,15,49,0.0 +23669,33,2.5,22,0.0 +23669,11,21,14,0.0 +23669,19,9.2,35,0.0 +23669,35,18,38,0.0 +23669,36,19,15,0.0 +23669,47,9.5,42,0.0 +23669,7,30,23,0.0 +23669,4,22,17,0.0 +23669,3,10,21,0.0 +23669,8,40,24,0.0 +23669,26,31.23,20,0.0 +23669,45,9.5,7,0.0 +23669,22,21,12,0.0 +23669,76,18,16,0.0 +23669,44,19.45,27,0.0 +23669,34,14,25,0.0 +23669,40,18.4,42,0.0 +23669,59,55,40,0.0 +23669,23,9,34,0.0 +23669,66,17,29,0.0 +23669,21,10,39,0.0 +23669,56,38,39,0.0 +23669,14,23.25,37,0.0 +23669,48,12.75,40,0.0 +23669,52,7,30,0.0 +23669,67,14,15,0.0 +23669,68,12.5,31,0.0 +23669,53,32.8,31,0.0 +23669,32,32,43,0.0 +23669,2,19,21,0.0 +23669,17,39,26,0.0 +23669,27,43.9,29,0.0 +23669,65,21.05,4,0.0 +23669,18,62.5,49,0.0 +23669,15,15.5,10,0.0 +23669,43,46,8,0.0 +23669,1,18,16,0.0 +23669,6,25,35,0.0 +23669,24,4.5,23,0.0 +23669,74,10,33,0.0 +23669,60,34,31,0.0 +23669,69,36,8,0.0 +23669,28,45.6,47,0.0 +23669,64,33.25,18,0.0 +23669,30,25.89,49,0.0 +23669,20,81,45,0.0 +23669,38,263.5,20,0.0 +23669,75,7.75,39,0.0 +23669,70,15,3,0.0 +23670,16,17.45,17,0.0 +23670,21,10,41,0.0 +23670,46,12,46,0.0 +23670,38,263.5,29,0.0 +23670,75,7.75,20,0.0 +23670,76,18,18,0.0 +23670,57,19.5,47,0.0 +23670,22,21,3,0.0 +23670,7,30,12,0.0 +23670,77,13,24,0.0 +23670,35,18,21,0.0 +23670,69,36,5,0.0 +23670,52,7,46,0.0 +23670,54,7.45,1,0.0 +23670,47,9.5,50,0.0 +23670,18,62.5,22,0.0 +23670,37,26,10,0.0 +23670,32,32,50,0.0 +23670,17,39,25,0.0 +23670,8,40,9,0.0 +23670,19,9.2,9,0.0 +23670,30,25.89,29,0.0 +23670,24,4.5,23,0.0 +23670,71,21.5,42,0.0 +23670,45,9.5,24,0.0 +23670,42,14,29,0.0 +23670,51,53,23,0.0 +23670,63,43.9,47,0.0 +23670,23,9,21,0.0 +23670,70,15,31,0.0 +23670,2,19,24,0.0 +23670,10,31,31,0.0 +23670,9,97,24,0.0 +23670,12,38,30,0.0 +23671,38,263.5,9,0.0 +23671,44,19.45,25,0.0 +23671,30,25.89,8,0.0 +23671,66,17,48,0.0 +23671,10,31,19,0.0 +23671,56,38,28,0.0 +23671,13,6,46,0.0 +23671,24,4.5,15,0.0 +23671,15,15.5,39,0.0 +23671,43,46,3,0.0 +23671,42,14,34,0.0 +23671,63,43.9,28,0.0 +23671,68,12.5,46,0.0 +23671,20,81,16,0.0 +23671,52,7,6,0.0 +23671,14,23.25,31,0.0 +23671,27,43.9,8,0.0 +23671,26,31.23,25,0.0 +23671,50,16.25,40,0.0 +23671,57,19.5,34,0.0 +23671,69,36,1,0.0 +23671,71,21.5,43,0.0 +23671,58,13.25,41,0.0 +23671,53,32.8,23,0.0 +23671,45,9.5,24,0.0 +23671,72,34.8,19,0.0 +23671,60,34,22,0.0 +23671,23,9,23,0.0 +23671,47,9.5,37,0.0 +23671,70,15,23,0.0 +23671,6,25,28,0.0 +23671,19,9.2,25,0.0 +23671,33,2.5,32,0.0 +23672,27,43.9,25,0.0 +23672,63,43.9,9,0.0 +23672,33,2.5,27,0.0 +23672,15,15.5,4,0.0 +23672,62,49.3,10,0.0 +23672,49,20,5,0.0 +23672,60,34,33,0.0 +23672,54,7.45,7,0.0 +23672,58,13.25,46,0.0 +23672,41,9.65,5,0.0 +23672,6,25,20,0.0 +23672,42,14,43,0.0 +23672,23,9,49,0.0 +23672,56,38,19,0.0 +23672,59,55,20,0.0 +23672,74,10,13,0.0 +23672,5,21.35,11,0.0 +23672,4,22,19,0.0 +23672,37,26,1,0.0 +23672,14,23.25,30,0.0 +23672,12,38,20,0.0 +23672,29,123.79,12,0.0 +23672,50,16.25,8,0.0 +23672,64,33.25,33,0.0 +23672,61,28.5,46,0.0 +23672,48,12.75,4,0.0 +23672,55,24,17,0.0 +23672,24,4.5,32,0.0 +23672,26,31.23,23,0.0 +23672,53,32.8,39,0.0 +23672,35,18,11,0.0 +23672,69,36,28,0.0 +23672,9,97,13,0.0 +23672,70,15,25,0.0 +23672,16,17.45,46,0.0 +23672,17,39,4,0.0 +23672,46,12,7,0.0 +23672,7,30,6,0.0 +23672,68,12.5,3,0.0 +23672,19,9.2,16,0.0 +23672,77,13,32,0.0 +23672,39,18,26,0.0 +23672,13,6,33,0.0 +23672,21,10,16,0.0 +23672,45,9.5,30,0.0 +23672,51,53,11,0.0 +23672,66,17,33,0.0 +23672,11,21,10,0.0 +23672,30,25.89,28,0.0 +23672,72,34.8,10,0.0 +23672,28,45.6,32,0.0 +23672,44,19.45,27,0.0 +23672,73,15,44,0.0 +23672,76,18,35,0.0 +23672,18,62.5,47,0.0 +23672,71,21.5,47,0.0 +23672,43,46,16,0.0 +23672,47,9.5,32,0.0 +23672,20,81,32,0.0 +23672,3,10,10,0.0 +23672,2,19,47,0.0 +23673,52,7,41,0.0 +23673,77,13,48,0.0 +23673,69,36,27,0.0 +23673,24,4.5,15,0.0 +23673,76,18,46,0.0 +23673,29,123.79,44,0.0 +23673,75,7.75,21,0.0 +23673,35,18,18,0.0 +23673,32,32,20,0.0 +23673,48,12.75,9,0.0 +23673,66,17,30,0.0 +23673,71,21.5,17,0.0 +23673,11,21,17,0.0 +23673,58,13.25,22,0.0 +23673,42,14,3,0.0 +23673,21,10,50,0.0 +23673,72,34.8,11,0.0 +23673,41,9.65,7,0.0 +23673,65,21.05,6,0.0 +23673,67,14,22,0.0 +23673,47,9.5,49,0.0 +23673,26,31.23,5,0.0 +23673,10,31,40,0.0 +23673,31,12.5,5,0.0 +23673,4,22,19,0.0 +23673,33,2.5,29,0.0 +23673,55,24,28,0.0 +23673,43,46,13,0.0 +23673,3,10,31,0.0 +23673,19,9.2,36,0.0 +23673,5,21.35,43,0.0 +23673,64,33.25,5,0.0 +23673,20,81,37,0.0 +23673,15,15.5,24,0.0 +23673,2,19,17,0.0 +23673,54,7.45,1,0.0 +23673,73,15,1,0.0 +23673,51,53,25,0.0 +23673,59,55,39,0.0 +23673,56,38,46,0.0 +23673,68,12.5,15,0.0 +23673,14,23.25,24,0.0 +23673,28,45.6,37,0.0 +23673,34,14,40,0.0 +23673,63,43.9,30,0.0 +23673,37,26,44,0.0 +23673,61,28.5,9,0.0 +23673,74,10,42,0.0 +23673,23,9,1,0.0 +23673,18,62.5,41,0.0 +23673,50,16.25,15,0.0 +23674,19,9.2,32,0.0 +23674,47,9.5,29,0.0 +23674,62,49.3,12,0.0 +23674,38,263.5,24,0.0 +23674,75,7.75,40,0.0 +23674,66,17,20,0.0 +23674,15,15.5,10,0.0 +23674,35,18,18,0.0 +23674,39,18,38,0.0 +23674,3,10,17,0.0 +23674,33,2.5,19,0.0 +23674,49,20,34,0.0 +23674,28,45.6,47,0.0 +23675,14,23.25,27,0.0 +23675,1,18,45,0.0 +23675,25,14,42,0.0 +23675,65,21.05,40,0.0 +23675,64,33.25,10,0.0 +23675,53,32.8,8,0.0 +23675,56,38,7,0.0 +23675,57,19.5,40,0.0 +23675,40,18.4,8,0.0 +23675,68,12.5,26,0.0 +23675,63,43.9,37,0.0 +23675,67,14,28,0.0 +23675,49,20,16,0.0 +23675,12,38,7,0.0 +23675,47,9.5,34,0.0 +23675,5,21.35,3,0.0 +23675,59,55,10,0.0 +23675,34,14,30,0.0 +23675,22,21,21,0.0 +23675,2,19,29,0.0 +23675,74,10,3,0.0 +23675,3,10,19,0.0 +23675,69,36,44,0.0 +23675,31,12.5,2,0.0 +23675,11,21,24,0.0 +23675,72,34.8,15,0.0 +23675,45,9.5,1,0.0 +23675,18,62.5,34,0.0 +23675,71,21.5,27,0.0 +23675,10,31,17,0.0 +23675,39,18,21,0.0 +23675,30,25.89,14,0.0 +23675,36,19,24,0.0 +23675,58,13.25,21,0.0 +23675,60,34,42,0.0 +23675,9,97,30,0.0 +23675,4,22,9,0.0 +23675,21,10,22,0.0 +23675,55,24,24,0.0 +23675,70,15,31,0.0 +23675,19,9.2,36,0.0 +23675,24,4.5,35,0.0 +23675,20,81,48,0.0 +23675,66,17,15,0.0 +23675,26,31.23,34,0.0 +23675,23,9,17,0.0 +23675,52,7,43,0.0 +23675,48,12.75,37,0.0 +23675,62,49.3,1,0.0 +23675,33,2.5,29,0.0 +23675,27,43.9,25,0.0 +23675,16,17.45,36,0.0 +23675,43,46,40,0.0 +23675,28,45.6,5,0.0 +23675,54,7.45,20,0.0 +23675,29,123.79,34,0.0 +23675,75,7.75,17,0.0 +23675,17,39,30,0.0 +23675,7,30,39,0.0 +23675,35,18,21,0.0 +23675,46,12,8,0.0 +23675,41,9.65,27,0.0 +23675,38,263.5,31,0.0 +23675,77,13,47,0.0 +23675,42,14,9,0.0 +23675,50,16.25,50,0.0 +23675,44,19.45,29,0.0 +23675,6,25,21,0.0 +23675,51,53,13,0.0 +23675,32,32,43,0.0 +23675,37,26,18,0.0 +23675,73,15,37,0.0 +23676,30,25.89,36,0.0 +23676,39,18,31,0.0 +23676,41,9.65,9,0.0 +23676,37,26,34,0.0 +23676,36,19,8,0.0 +23676,76,18,15,0.0 +23676,52,7,47,0.0 +23676,71,21.5,31,0.0 +23676,31,12.5,43,0.0 +23676,53,32.8,29,0.0 +23676,74,10,5,0.0 +23676,2,19,5,0.0 +23676,67,14,9,0.0 +23676,44,19.45,22,0.0 +23676,6,25,22,0.0 +23676,24,4.5,16,0.0 +23676,26,31.23,25,0.0 +23676,64,33.25,36,0.0 +23676,57,19.5,33,0.0 +23676,34,14,6,0.0 +23676,49,20,27,0.0 +23676,56,38,40,0.0 +23676,43,46,45,0.0 +23676,42,14,22,0.0 +23676,21,10,3,0.0 +23676,13,6,29,0.0 +23676,8,40,34,0.0 +23676,15,15.5,5,0.0 +23676,68,12.5,45,0.0 +23676,32,32,30,0.0 +23676,75,7.75,25,0.0 +23676,33,2.5,7,0.0 +23676,3,10,48,0.0 +23676,17,39,22,0.0 +23676,38,263.5,48,0.0 +23676,5,21.35,46,0.0 +23676,12,38,34,0.0 +23676,27,43.9,17,0.0 +23676,69,36,32,0.0 +23676,63,43.9,6,0.0 +23676,18,62.5,18,0.0 +23676,51,53,38,0.0 +23676,28,45.6,8,0.0 +23676,77,13,49,0.0 +23676,66,17,44,0.0 +23676,70,15,32,0.0 +23676,19,9.2,14,0.0 +23676,23,9,49,0.0 +23676,55,24,38,0.0 +23676,46,12,24,0.0 +23676,7,30,28,0.0 +23676,72,34.8,2,0.0 +23676,9,97,5,0.0 +23676,45,9.5,24,0.0 +23676,35,18,15,0.0 +23676,65,21.05,4,0.0 +23676,20,81,26,0.0 +23676,29,123.79,48,0.0 +23676,4,22,37,0.0 +23676,10,31,48,0.0 +23676,1,18,38,0.0 +23676,11,21,23,0.0 +23676,47,9.5,28,0.0 +23676,40,18.4,33,0.0 +23676,25,14,6,0.0 +23676,48,12.75,4,0.0 +23676,60,34,38,0.0 +23676,61,28.5,38,0.0 +23676,22,21,49,0.0 +23676,54,7.45,33,0.0 +23677,36,19,39,0.0 +23677,26,31.23,24,0.0 +23677,46,12,39,0.0 +23677,43,46,37,0.0 +23677,24,4.5,35,0.0 +23677,25,14,23,0.0 +23677,34,14,23,0.0 +23677,60,34,25,0.0 +23677,62,49.3,40,0.0 +23677,30,25.89,8,0.0 +23677,67,14,1,0.0 +23677,8,40,2,0.0 +23677,45,9.5,26,0.0 +23677,31,12.5,19,0.0 +23677,5,21.35,17,0.0 +23677,57,19.5,41,0.0 +23677,58,13.25,16,0.0 +23677,20,81,20,0.0 +23677,68,12.5,34,0.0 +23677,33,2.5,31,0.0 +23677,75,7.75,43,0.0 +23677,10,31,47,0.0 +23677,71,21.5,35,0.0 +23677,6,25,11,0.0 +23677,63,43.9,2,0.0 +23677,76,18,37,0.0 +23677,69,36,42,0.0 +23677,27,43.9,41,0.0 +23677,61,28.5,10,0.0 +23677,70,15,25,0.0 +23677,44,19.45,29,0.0 +23677,37,26,50,0.0 +23677,53,32.8,15,0.0 +23677,38,263.5,47,0.0 +23677,55,24,36,0.0 +23677,77,13,11,0.0 +23677,18,62.5,19,0.0 +23677,17,39,34,0.0 +23677,21,10,45,0.0 +23677,3,10,7,0.0 +23677,29,123.79,39,0.0 +23677,50,16.25,7,0.0 +23677,51,53,13,0.0 +23677,14,23.25,32,0.0 +23677,13,6,24,0.0 +23677,4,22,40,0.0 +23677,42,14,1,0.0 +23677,1,18,36,0.0 +23677,7,30,3,0.0 +23677,19,9.2,3,0.0 +23677,15,15.5,10,0.0 +23677,40,18.4,6,0.0 +23677,12,38,27,0.0 +23677,2,19,48,0.0 +23677,11,21,36,0.0 +23677,49,20,33,0.0 +23677,23,9,43,0.0 +23677,48,12.75,30,0.0 +23677,52,7,29,0.0 +23677,39,18,25,0.0 +23678,4,22,38,0.0 +23678,71,21.5,8,0.0 +23678,62,49.3,42,0.0 +23678,73,15,48,0.0 +23678,41,9.65,5,0.0 +23678,16,17.45,43,0.0 +23678,8,40,23,0.0 +23678,25,14,1,0.0 +23678,61,28.5,29,0.0 +23678,14,23.25,42,0.0 +23678,59,55,39,0.0 +23678,29,123.79,6,0.0 +23678,27,43.9,26,0.0 +23678,57,19.5,21,0.0 +23678,18,62.5,7,0.0 +23678,45,9.5,13,0.0 +23678,39,18,34,0.0 +23678,37,26,44,0.0 +23678,58,13.25,4,0.0 +23678,65,21.05,35,0.0 +23678,7,30,28,0.0 +23678,47,9.5,17,0.0 +23678,10,31,37,0.0 +23678,66,17,34,0.0 +23678,52,7,22,0.0 +23678,12,38,31,0.0 +23678,19,9.2,31,0.0 +23678,54,7.45,22,0.0 +23678,36,19,43,0.0 +23678,77,13,22,0.0 +23678,46,12,35,0.0 +23678,75,7.75,34,0.0 +23679,24,4.5,8,0.0 +23679,61,28.5,37,0.0 +23679,62,49.3,50,0.0 +23679,28,45.6,12,0.0 +23679,8,40,9,0.0 +23679,76,18,6,0.0 +23679,48,12.75,18,0.0 +23679,17,39,2,0.0 +23679,40,18.4,10,0.0 +23679,41,9.65,5,0.0 +23679,50,16.25,49,0.0 +23679,35,18,26,0.0 +23679,14,23.25,41,0.0 +23679,77,13,13,0.0 +23679,58,13.25,45,0.0 +23679,66,17,49,0.0 +23679,11,21,25,0.0 +23680,19,9.2,32,0.0 +23680,3,10,44,0.0 +23680,51,53,32,0.0 +23680,27,43.9,26,0.0 +23680,16,17.45,9,0.0 +23680,7,30,26,0.0 +23680,9,97,8,0.0 +23680,23,9,45,0.0 +23680,6,25,12,0.0 +23680,5,21.35,2,0.0 +23680,25,14,49,0.0 +23680,10,31,8,0.0 +23680,63,43.9,21,0.0 +23680,30,25.89,29,0.0 +23680,58,13.25,35,0.0 +23680,35,18,46,0.0 +23680,15,15.5,18,0.0 +23680,48,12.75,37,0.0 +23680,14,23.25,14,0.0 +23680,54,7.45,10,0.0 +23680,77,13,49,0.0 +23680,42,14,31,0.0 +23680,49,20,47,0.0 +23680,59,55,45,0.0 +23680,26,31.23,12,0.0 +23680,1,18,7,0.0 +23680,62,49.3,6,0.0 +23680,33,2.5,10,0.0 +23680,37,26,30,0.0 +23680,44,19.45,3,0.0 +23680,36,19,31,0.0 +23680,31,12.5,30,0.0 +23680,28,45.6,24,0.0 +23680,65,21.05,50,0.0 +23681,77,13,10,0.0 +23681,48,12.75,46,0.0 +23681,56,38,36,0.0 +23681,27,43.9,22,0.0 +23681,46,12,11,0.0 +23681,30,25.89,3,0.0 +23681,12,38,8,0.0 +23681,41,9.65,35,0.0 +23681,22,21,36,0.0 +23681,53,32.8,29,0.0 +23681,52,7,44,0.0 +23681,69,36,30,0.0 +23681,43,46,27,0.0 +23681,76,18,37,0.0 +23681,44,19.45,12,0.0 +23681,24,4.5,7,0.0 +23681,58,13.25,34,0.0 +23681,72,34.8,39,0.0 +23681,47,9.5,14,0.0 +23681,8,40,37,0.0 +23681,7,30,40,0.0 +23681,64,33.25,16,0.0 +23681,3,10,19,0.0 +23681,67,14,6,0.0 +23681,38,263.5,26,0.0 +23681,74,10,2,0.0 +23681,60,34,12,0.0 +23681,37,26,8,0.0 +23681,18,62.5,43,0.0 +23681,62,49.3,18,0.0 +23681,6,25,10,0.0 +23681,50,16.25,23,0.0 +23681,20,81,11,0.0 +23681,36,19,9,0.0 +23681,57,19.5,20,0.0 +23681,45,9.5,32,0.0 +23681,33,2.5,40,0.0 +23681,21,10,39,0.0 +23681,32,32,33,0.0 +23681,5,21.35,15,0.0 +23681,68,12.5,10,0.0 +23681,2,19,4,0.0 +23681,26,31.23,14,0.0 +23681,42,14,31,0.0 +23681,4,22,14,0.0 +23681,75,7.75,4,0.0 +23681,28,45.6,39,0.0 +23681,16,17.45,50,0.0 +23681,73,15,28,0.0 +23681,25,14,49,0.0 +23681,49,20,1,0.0 +23681,40,18.4,30,0.0 +23681,29,123.79,5,0.0 +23681,17,39,22,0.0 +23681,61,28.5,22,0.0 +23681,13,6,28,0.0 +23681,15,15.5,41,0.0 +23681,11,21,4,0.0 +23681,55,24,8,0.0 +23681,35,18,5,0.0 +23681,14,23.25,26,0.0 +23681,54,7.45,36,0.0 +23681,19,9.2,5,0.0 +23681,59,55,17,0.0 +23681,71,21.5,45,0.0 +23681,9,97,41,0.0 +23681,34,14,15,0.0 +23681,65,21.05,26,0.0 +23681,10,31,30,0.0 +23681,31,12.5,15,0.0 +23681,66,17,16,0.0 +23681,51,53,39,0.0 +23681,39,18,4,0.0 +23681,70,15,1,0.0 +23682,57,19.5,37,0.0 +23682,51,53,38,0.0 +23682,76,18,31,0.0 +23682,44,19.45,34,0.0 +23682,55,24,31,0.0 +23682,31,12.5,18,0.0 +23682,20,81,35,0.0 +23682,10,31,12,0.0 +23682,77,13,45,0.0 +23682,14,23.25,21,0.0 +23682,52,7,26,0.0 +23682,53,32.8,12,0.0 +23682,38,263.5,12,0.0 +23682,61,28.5,45,0.0 +23682,56,38,35,0.0 +23682,69,36,15,0.0 +23682,5,21.35,12,0.0 +23682,75,7.75,35,0.0 +23682,12,38,4,0.0 +23682,66,17,36,0.0 +23682,23,9,44,0.0 +23682,50,16.25,24,0.0 +23682,17,39,4,0.0 +23682,42,14,12,0.0 +23682,39,18,45,0.0 +23682,48,12.75,40,0.0 +23682,29,123.79,18,0.0 +23682,11,21,17,0.0 +23682,19,9.2,25,0.0 +23682,70,15,2,0.0 +23682,25,14,11,0.0 +23682,32,32,17,0.0 +23682,49,20,50,0.0 +23682,37,26,11,0.0 +23682,18,62.5,11,0.0 +23682,68,12.5,25,0.0 +23682,2,19,48,0.0 +23682,45,9.5,35,0.0 +23682,65,21.05,39,0.0 +23682,30,25.89,3,0.0 +23682,46,12,5,0.0 +23682,27,43.9,33,0.0 +23682,35,18,13,0.0 +23682,9,97,9,0.0 +23682,22,21,39,0.0 +23682,67,14,36,0.0 +23682,41,9.65,27,0.0 +23682,62,49.3,30,0.0 +23682,8,40,42,0.0 +23682,64,33.25,17,0.0 +23682,74,10,13,0.0 +23682,54,7.45,43,0.0 +23682,73,15,47,0.0 +23682,59,55,3,0.0 +23682,40,18.4,1,0.0 +23683,62,49.3,40,0.0 +23683,28,45.6,14,0.0 +23683,63,43.9,46,0.0 +23683,59,55,25,0.0 +23683,26,31.23,41,0.0 +23683,55,24,27,0.0 +23683,53,32.8,34,0.0 +23683,20,81,35,0.0 +23683,74,10,40,0.0 +23683,17,39,22,0.0 +23683,47,9.5,6,0.0 +23683,32,32,19,0.0 +23683,36,19,24,0.0 +23683,37,26,34,0.0 +23683,76,18,31,0.0 +23683,23,9,20,0.0 +23683,48,12.75,8,0.0 +23683,25,14,8,0.0 +23683,1,18,18,0.0 +23683,58,13.25,16,0.0 +23683,39,18,49,0.0 +23683,73,15,16,0.0 +23683,51,53,32,0.0 +23683,71,21.5,12,0.0 +23683,64,33.25,49,0.0 +23683,56,38,13,0.0 +23683,45,9.5,15,0.0 +23683,67,14,20,0.0 +23683,44,19.45,27,0.0 +23683,52,7,19,0.0 +23683,46,12,37,0.0 +23683,72,34.8,31,0.0 +23683,10,31,6,0.0 +23683,3,10,5,0.0 +23683,9,97,39,0.0 +23683,24,4.5,35,0.0 +23683,29,123.79,42,0.0 +23683,77,13,30,0.0 +23684,53,32.8,48,0.0 +23684,48,12.75,36,0.0 +23684,31,12.5,4,0.0 +23684,69,36,14,0.0 +23684,49,20,27,0.0 +23684,23,9,27,0.0 +23684,26,31.23,37,0.0 +23684,1,18,31,0.0 +23684,12,38,29,0.0 +23684,38,263.5,24,0.0 +23684,4,22,24,0.0 +23684,58,13.25,37,0.0 +23684,21,10,31,0.0 +23684,19,9.2,2,0.0 +23684,13,6,32,0.0 +23684,22,21,50,0.0 +23684,46,12,1,0.0 +23684,66,17,20,0.0 +23684,6,25,15,0.0 +23684,10,31,1,0.0 +23684,24,4.5,8,0.0 +23684,74,10,23,0.0 +23684,59,55,17,0.0 +23684,40,18.4,14,0.0 +23684,41,9.65,29,0.0 +23684,57,19.5,41,0.0 +23684,63,43.9,20,0.0 +23684,11,21,39,0.0 +23684,25,14,33,0.0 +23684,17,39,24,0.0 +23684,47,9.5,40,0.0 +23684,76,18,32,0.0 +23684,29,123.79,28,0.0 +23684,39,18,12,0.0 +23684,9,97,41,0.0 +23684,27,43.9,34,0.0 +23684,28,45.6,11,0.0 +23684,44,19.45,39,0.0 +23684,18,62.5,42,0.0 +23684,42,14,1,0.0 +23684,60,34,28,0.0 +23684,64,33.25,42,0.0 +23684,14,23.25,29,0.0 +23684,68,12.5,25,0.0 +23684,5,21.35,5,0.0 +23684,70,15,21,0.0 +23684,34,14,26,0.0 +23684,32,32,7,0.0 +23684,45,9.5,41,0.0 +23684,75,7.75,30,0.0 +23684,37,26,12,0.0 +23684,43,46,19,0.0 +23684,7,30,16,0.0 +23685,64,33.25,25,0.0 +23685,72,34.8,48,0.0 +23685,21,10,39,0.0 +23685,33,2.5,42,0.0 +23686,13,6,45,0.0 +23686,56,38,41,0.0 +23686,16,17.45,43,0.0 +23686,43,46,22,0.0 +23686,27,43.9,15,0.0 +23686,59,55,40,0.0 +23686,55,24,40,0.0 +23686,19,9.2,32,0.0 +23686,24,4.5,49,0.0 +23686,3,10,38,0.0 +23686,29,123.79,29,0.0 +23686,4,22,46,0.0 +23686,46,12,28,0.0 +23686,42,14,4,0.0 +23686,65,21.05,27,0.0 +23686,1,18,30,0.0 +23686,70,15,5,0.0 +23686,53,32.8,33,0.0 +23686,30,25.89,50,0.0 +23686,71,21.5,38,0.0 +23686,68,12.5,2,0.0 +23686,72,34.8,5,0.0 +23686,39,18,48,0.0 +23686,73,15,5,0.0 +23686,25,14,27,0.0 +23686,69,36,16,0.0 +23686,6,25,50,0.0 +23686,76,18,46,0.0 +23686,66,17,19,0.0 +23686,11,21,43,0.0 +23686,61,28.5,2,0.0 +23686,40,18.4,29,0.0 +23686,60,34,22,0.0 +23687,66,17,37,0.0 +23687,69,36,37,0.0 +23687,16,17.45,14,0.0 +23687,10,31,17,0.0 +23687,43,46,47,0.0 +23687,33,2.5,32,0.0 +23687,29,123.79,15,0.0 +23687,28,45.6,13,0.0 +23687,50,16.25,46,0.0 +23687,72,34.8,9,0.0 +23687,27,43.9,36,0.0 +23687,3,10,41,0.0 +23687,34,14,27,0.0 +23687,76,18,2,0.0 +23687,2,19,10,0.0 +23687,73,15,31,0.0 +23687,4,22,43,0.0 +23687,41,9.65,10,0.0 +23687,47,9.5,30,0.0 +23687,53,32.8,46,0.0 +23687,65,21.05,19,0.0 +23687,59,55,11,0.0 +23687,30,25.89,45,0.0 +23687,25,14,6,0.0 +23687,62,49.3,43,0.0 +23687,1,18,41,0.0 +23687,60,34,48,0.0 +23687,6,25,45,0.0 +23687,31,12.5,35,0.0 +23687,57,19.5,5,0.0 +23687,58,13.25,4,0.0 +23687,9,97,9,0.0 +23687,38,263.5,48,0.0 +23687,55,24,18,0.0 +23687,74,10,39,0.0 +23687,37,26,36,0.0 +23687,49,20,4,0.0 +23687,35,18,45,0.0 +23687,56,38,23,0.0 +23687,46,12,24,0.0 +23687,26,31.23,47,0.0 +23687,14,23.25,49,0.0 +23687,13,6,25,0.0 +23687,63,43.9,23,0.0 +23687,32,32,25,0.0 +23687,48,12.75,42,0.0 +23687,44,19.45,24,0.0 +23687,61,28.5,44,0.0 +23687,21,10,40,0.0 +23687,22,21,45,0.0 +23687,68,12.5,29,0.0 +23687,8,40,21,0.0 +23687,18,62.5,6,0.0 +23687,39,18,3,0.0 +23687,75,7.75,10,0.0 +23687,7,30,35,0.0 +23687,42,14,15,0.0 +23687,51,53,12,0.0 +23687,17,39,32,0.0 +23687,19,9.2,11,0.0 +23687,64,33.25,42,0.0 +23687,5,21.35,46,0.0 +23688,47,9.5,14,0.0 +23688,68,12.5,36,0.0 +23688,23,9,28,0.0 +23688,53,32.8,37,0.0 +23688,29,123.79,20,0.0 +23688,66,17,23,0.0 +23688,26,31.23,1,0.0 +23688,37,26,13,0.0 +23688,35,18,29,0.0 +23689,3,10,23,0.0 +23689,39,18,25,0.0 +23689,22,21,42,0.0 +23689,55,24,34,0.0 +23689,61,28.5,33,0.0 +23689,59,55,34,0.0 +23689,35,18,39,0.0 +23689,11,21,47,0.0 +23689,67,14,48,0.0 +23689,68,12.5,27,0.0 +23689,50,16.25,19,0.0 +23689,76,18,6,0.0 +23689,52,7,39,0.0 +23689,58,13.25,49,0.0 +23689,47,9.5,33,0.0 +23689,19,9.2,10,0.0 +23689,20,81,33,0.0 +23689,37,26,26,0.0 +23689,56,38,31,0.0 +23689,30,25.89,17,0.0 +23689,77,13,12,0.0 +23689,29,123.79,36,0.0 +23689,75,7.75,13,0.0 +23689,2,19,14,0.0 +23689,69,36,49,0.0 +23689,48,12.75,38,0.0 +23689,43,46,15,0.0 +23689,49,20,33,0.0 +23689,31,12.5,35,0.0 +23689,42,14,15,0.0 +23689,16,17.45,8,0.0 +23689,65,21.05,37,0.0 +23689,46,12,39,0.0 +23689,40,18.4,48,0.0 +23689,27,43.9,32,0.0 +23689,33,2.5,43,0.0 +23689,17,39,44,0.0 +23689,26,31.23,1,0.0 +23689,73,15,20,0.0 +23689,74,10,25,0.0 +23689,36,19,25,0.0 +23689,28,45.6,15,0.0 +23689,41,9.65,27,0.0 +23689,53,32.8,39,0.0 +23689,7,30,48,0.0 +23689,63,43.9,17,0.0 +23689,34,14,6,0.0 +23689,4,22,49,0.0 +23689,60,34,31,0.0 +23689,64,33.25,38,0.0 +23689,15,15.5,35,0.0 +23689,24,4.5,2,0.0 +23689,25,14,14,0.0 +23689,14,23.25,39,0.0 +23689,5,21.35,50,0.0 +23689,18,62.5,2,0.0 +23689,38,263.5,18,0.0 +23689,9,97,36,0.0 +23689,32,32,4,0.0 +23689,12,38,21,0.0 +23689,1,18,18,0.0 +23689,23,9,26,0.0 +23689,54,7.45,47,0.0 +23689,10,31,40,0.0 +23689,57,19.5,10,0.0 +23689,44,19.45,19,0.0 +23689,66,17,11,0.0 +23689,21,10,14,0.0 +23689,6,25,23,0.0 +23689,45,9.5,48,0.0 +23689,70,15,32,0.0 +23689,8,40,5,0.0 +23689,62,49.3,45,0.0 +23689,72,34.8,42,0.0 +23689,71,21.5,23,0.0 +23690,35,18,22,0.0 +23690,66,17,48,0.0 +23690,72,34.8,6,0.0 +23690,23,9,42,0.0 +23690,8,40,5,0.0 +23690,5,21.35,26,0.0 +23690,37,26,25,0.0 +23690,36,19,7,0.0 +23690,19,9.2,37,0.0 +23690,2,19,19,0.0 +23690,62,49.3,7,0.0 +23690,47,9.5,32,0.0 +23690,17,39,47,0.0 +23690,67,14,17,0.0 +23690,70,15,35,0.0 +23690,33,2.5,12,0.0 +23690,6,25,17,0.0 +23690,50,16.25,10,0.0 +23690,11,21,50,0.0 +23690,21,10,9,0.0 +23690,9,97,26,0.0 +23690,16,17.45,38,0.0 +23690,69,36,19,0.0 +23690,15,15.5,49,0.0 +23690,42,14,3,0.0 +23690,10,31,17,0.0 +23690,61,28.5,49,0.0 +23690,73,15,30,0.0 +23690,45,9.5,29,0.0 +23690,12,38,32,0.0 +23690,32,32,15,0.0 +23690,52,7,1,0.0 +23690,64,33.25,17,0.0 +23690,75,7.75,16,0.0 +23690,43,46,28,0.0 +23690,18,62.5,28,0.0 +23690,77,13,19,0.0 +23690,27,43.9,24,0.0 +23690,53,32.8,9,0.0 +23690,31,12.5,34,0.0 +23690,30,25.89,9,0.0 +23690,4,22,24,0.0 +23690,76,18,48,0.0 +23690,24,4.5,21,0.0 +23690,57,19.5,40,0.0 +23690,40,18.4,42,0.0 +23690,44,19.45,19,0.0 +23690,28,45.6,25,0.0 +23690,13,6,48,0.0 +23690,29,123.79,3,0.0 +23690,20,81,19,0.0 +23690,65,21.05,1,0.0 +23690,58,13.25,30,0.0 +23690,68,12.5,36,0.0 +23690,46,12,23,0.0 +23690,7,30,21,0.0 +23690,56,38,13,0.0 +23690,51,53,27,0.0 +23690,49,20,18,0.0 +23690,63,43.9,43,0.0 +23690,39,18,50,0.0 +23690,55,24,13,0.0 +23691,11,21,26,0.0 +23691,68,12.5,10,0.0 +23691,73,15,48,0.0 +23691,15,15.5,2,0.0 +23691,71,21.5,21,0.0 +23691,19,9.2,16,0.0 +23691,58,13.25,10,0.0 +23691,74,10,8,0.0 +23691,20,81,11,0.0 +23691,25,14,14,0.0 +23691,37,26,29,0.0 +23691,39,18,13,0.0 +23691,32,32,2,0.0 +23691,31,12.5,24,0.0 +23692,35,18,29,0.0 +23692,13,6,12,0.0 +23692,59,55,16,0.0 +23692,15,15.5,37,0.0 +23692,74,10,18,0.0 +23692,26,31.23,6,0.0 +23692,42,14,30,0.0 +23692,17,39,37,0.0 +23692,11,21,10,0.0 +23692,6,25,1,0.0 +23692,62,49.3,42,0.0 +23692,57,19.5,44,0.0 +23692,69,36,6,0.0 +23692,72,34.8,30,0.0 +23692,58,13.25,37,0.0 +23692,38,263.5,39,0.0 +23692,67,14,3,0.0 +23692,48,12.75,14,0.0 +23692,61,28.5,8,0.0 +23692,25,14,25,0.0 +23692,66,17,3,0.0 +23692,32,32,6,0.0 +23692,55,24,42,0.0 +23692,19,9.2,46,0.0 +23692,56,38,6,0.0 +23692,51,53,47,0.0 +23692,49,20,3,0.0 +23692,29,123.79,9,0.0 +23692,60,34,4,0.0 +23692,71,21.5,4,0.0 +23692,39,18,43,0.0 +23692,5,21.35,45,0.0 +23692,40,18.4,15,0.0 +23692,52,7,36,0.0 +23692,14,23.25,2,0.0 +23692,75,7.75,31,0.0 +23692,28,45.6,46,0.0 +23693,64,33.25,32,0.0 +23693,60,34,10,0.0 +23693,29,123.79,45,0.0 +23693,75,7.75,5,0.0 +23693,38,263.5,23,0.0 +23693,46,12,26,0.0 +23693,51,53,5,0.0 +23693,49,20,47,0.0 +23693,3,10,12,0.0 +23693,50,16.25,29,0.0 +23693,5,21.35,24,0.0 +23693,44,19.45,33,0.0 +23693,57,19.5,30,0.0 +23693,39,18,42,0.0 +23693,31,12.5,23,0.0 +23693,2,19,24,0.0 +23693,37,26,5,0.0 +23693,28,45.6,12,0.0 +23693,8,40,15,0.0 +23693,9,97,47,0.0 +23693,26,31.23,11,0.0 +23693,61,28.5,6,0.0 +23693,65,21.05,7,0.0 +23693,22,21,7,0.0 +23693,76,18,39,0.0 +23693,17,39,6,0.0 +23693,32,32,31,0.0 +23693,63,43.9,11,0.0 +23693,72,34.8,4,0.0 +23693,77,13,43,0.0 +23693,71,21.5,42,0.0 +23693,19,9.2,5,0.0 +23693,24,4.5,38,0.0 +23693,12,38,18,0.0 +23693,56,38,38,0.0 +23693,20,81,38,0.0 +23693,47,9.5,27,0.0 +23693,52,7,27,0.0 +23693,74,10,21,0.0 +23693,35,18,1,0.0 +23693,58,13.25,22,0.0 +23693,10,31,46,0.0 +23693,43,46,19,0.0 +23693,59,55,20,0.0 +23693,53,32.8,30,0.0 +23693,4,22,42,0.0 +23694,68,12.5,21,0.0 +23694,30,25.89,12,0.0 +23694,6,25,24,0.0 +23694,18,62.5,16,0.0 +23694,3,10,37,0.0 +23694,55,24,28,0.0 +23694,15,15.5,14,0.0 +23694,35,18,43,0.0 +23694,56,38,50,0.0 +23694,1,18,6,0.0 +23694,21,10,47,0.0 +23694,42,14,6,0.0 +23694,73,15,6,0.0 +23694,7,30,11,0.0 +23694,61,28.5,44,0.0 +23694,76,18,8,0.0 +23694,33,2.5,3,0.0 +23694,58,13.25,5,0.0 +23694,59,55,13,0.0 +23694,51,53,22,0.0 +23694,4,22,48,0.0 +23694,31,12.5,45,0.0 +23694,17,39,39,0.0 +23694,14,23.25,44,0.0 +23694,53,32.8,3,0.0 +23694,54,7.45,41,0.0 +23694,29,123.79,31,0.0 +23694,70,15,41,0.0 +23694,75,7.75,48,0.0 +23694,28,45.6,35,0.0 +23694,39,18,47,0.0 +23694,38,263.5,30,0.0 +23694,63,43.9,12,0.0 +23694,2,19,39,0.0 +23694,65,21.05,36,0.0 +23694,11,21,13,0.0 +23694,13,6,47,0.0 +23694,26,31.23,41,0.0 +23694,47,9.5,5,0.0 +23694,25,14,29,0.0 +23694,67,14,1,0.0 +23694,69,36,46,0.0 +23694,41,9.65,33,0.0 +23694,40,18.4,44,0.0 +23694,74,10,27,0.0 +23694,72,34.8,45,0.0 +23694,20,81,12,0.0 +23694,37,26,47,0.0 +23694,43,46,9,0.0 +23694,9,97,38,0.0 +23694,19,9.2,32,0.0 +23694,62,49.3,33,0.0 +23694,46,12,34,0.0 +23694,27,43.9,11,0.0 +23694,50,16.25,39,0.0 +23694,45,9.5,7,0.0 +23694,16,17.45,22,0.0 +23694,77,13,9,0.0 +23694,36,19,48,0.0 +23694,66,17,19,0.0 +23694,52,7,25,0.0 +23694,5,21.35,27,0.0 +23694,64,33.25,6,0.0 +23694,60,34,33,0.0 +23694,48,12.75,21,0.0 +23695,40,18.4,48,0.0 +23695,48,12.75,50,0.0 +23695,6,25,13,0.0 +23695,26,31.23,44,0.0 +23695,64,33.25,13,0.0 +23695,63,43.9,50,0.0 +23695,1,18,16,0.0 +23695,27,43.9,9,0.0 +23695,12,38,4,0.0 +23695,15,15.5,4,0.0 +23695,68,12.5,30,0.0 +23695,18,62.5,42,0.0 +23695,50,16.25,12,0.0 +23695,36,19,15,0.0 +23695,65,21.05,40,0.0 +23695,34,14,24,0.0 +23695,54,7.45,32,0.0 +23695,49,20,31,0.0 +23695,16,17.45,44,0.0 +23695,47,9.5,9,0.0 +23695,14,23.25,30,0.0 +23695,33,2.5,50,0.0 +23695,53,32.8,20,0.0 +23695,70,15,10,0.0 +23695,56,38,49,0.0 +23695,37,26,20,0.0 +23695,23,9,15,0.0 +23695,67,14,5,0.0 +23695,42,14,46,0.0 +23695,4,22,44,0.0 +23695,55,24,40,0.0 +23695,62,49.3,29,0.0 +23695,72,34.8,40,0.0 +23695,61,28.5,32,0.0 +23695,41,9.65,12,0.0 +23695,28,45.6,37,0.0 +23695,73,15,28,0.0 +23695,58,13.25,42,0.0 +23695,69,36,24,0.0 +23695,38,263.5,14,0.0 +23695,59,55,1,0.0 +23695,25,14,19,0.0 +23695,7,30,14,0.0 +23695,21,10,14,0.0 +23695,66,17,38,0.0 +23695,60,34,28,0.0 +23695,19,9.2,20,0.0 +23695,76,18,27,0.0 +23695,46,12,30,0.0 +23695,2,19,50,0.0 +23695,8,40,16,0.0 +23695,10,31,3,0.0 +23695,20,81,7,0.0 +23695,35,18,31,0.0 +23695,22,21,27,0.0 +23695,75,7.75,32,0.0 +23695,52,7,40,0.0 +23696,34,14,39,0.0 +23696,32,32,49,0.0 +23696,6,25,41,0.0 +23696,65,21.05,33,0.0 +23696,39,18,47,0.0 +23696,51,53,31,0.0 +23696,70,15,18,0.0 +23696,47,9.5,21,0.0 +23697,43,46,30,0.0 +23697,3,10,47,0.0 +23697,12,38,50,0.0 +23697,76,18,12,0.0 +23697,36,19,8,0.0 +23697,25,14,5,0.0 +23697,54,7.45,37,0.0 +23697,16,17.45,41,0.0 +23697,24,4.5,2,0.0 +23697,27,43.9,31,0.0 +23697,49,20,38,0.0 +23697,29,123.79,43,0.0 +23697,70,15,45,0.0 +23697,34,14,8,0.0 +23697,32,32,35,0.0 +23697,4,22,30,0.0 +23698,14,23.25,33,0.0 +23698,18,62.5,21,0.0 +23698,36,19,38,0.0 +23698,49,20,2,0.0 +23698,69,36,36,0.0 +23698,33,2.5,12,0.0 +23698,40,18.4,24,0.0 +23698,25,14,39,0.0 +23698,38,263.5,12,0.0 +23698,4,22,26,0.0 +23698,52,7,30,0.0 +23698,22,21,8,0.0 +23698,59,55,7,0.0 +23698,67,14,50,0.0 +23698,56,38,31,0.0 +23698,13,6,6,0.0 +23698,31,12.5,25,0.0 +23698,28,45.6,6,0.0 +23698,66,17,37,0.0 +23698,76,18,23,0.0 +23698,19,9.2,14,0.0 +23698,3,10,14,0.0 +23698,73,15,13,0.0 +23698,64,33.25,27,0.0 +23698,51,53,23,0.0 +23698,46,12,47,0.0 +23698,44,19.45,41,0.0 +23698,1,18,6,0.0 +23698,11,21,50,0.0 +23698,71,21.5,1,0.0 +23698,50,16.25,30,0.0 +23698,41,9.65,45,0.0 +23698,68,12.5,37,0.0 +23698,58,13.25,21,0.0 +23698,2,19,20,0.0 +23698,48,12.75,30,0.0 +23698,57,19.5,44,0.0 +23698,32,32,26,0.0 +23698,74,10,39,0.0 +23698,30,25.89,36,0.0 +23698,39,18,39,0.0 +23698,7,30,48,0.0 +23698,6,25,41,0.0 +23698,12,38,39,0.0 +23698,77,13,3,0.0 +23698,34,14,10,0.0 +23698,43,46,16,0.0 +23698,24,4.5,11,0.0 +23698,5,21.35,13,0.0 +23698,17,39,13,0.0 +23698,54,7.45,31,0.0 +23698,23,9,11,0.0 +23698,63,43.9,7,0.0 +23698,42,14,29,0.0 +23698,10,31,37,0.0 +23698,15,15.5,16,0.0 +23698,37,26,23,0.0 +23698,53,32.8,37,0.0 +23699,13,6,30,0.0 +23699,44,19.45,47,0.0 +23699,4,22,34,0.0 +23699,1,18,46,0.0 +23699,9,97,46,0.0 +23699,49,20,23,0.0 +23699,3,10,45,0.0 +23699,20,81,30,0.0 +23699,5,21.35,36,0.0 +23699,57,19.5,17,0.0 +23699,7,30,11,0.0 +23699,58,13.25,28,0.0 +23699,11,21,44,0.0 +23699,8,40,24,0.0 +23699,10,31,40,0.0 +23699,37,26,45,0.0 +23699,21,10,11,0.0 +23699,52,7,15,0.0 +23699,43,46,24,0.0 +23699,23,9,10,0.0 +23699,68,12.5,17,0.0 +23699,18,62.5,15,0.0 +23699,28,45.6,31,0.0 +23699,55,24,39,0.0 +23699,34,14,29,0.0 +23699,71,21.5,4,0.0 +23699,66,17,26,0.0 +23699,36,19,17,0.0 +23699,2,19,4,0.0 +23699,77,13,34,0.0 +23699,69,36,9,0.0 +23699,56,38,23,0.0 +23699,30,25.89,23,0.0 +23699,53,32.8,1,0.0 +23699,14,23.25,15,0.0 +23699,60,34,12,0.0 +23699,48,12.75,17,0.0 +23699,22,21,43,0.0 +23700,32,32,42,0.0 +23700,70,15,31,0.0 +23700,60,34,46,0.0 +23700,40,18.4,41,0.0 +23700,68,12.5,14,0.0 +23700,39,18,28,0.0 +23700,54,7.45,31,0.0 +23700,65,21.05,2,0.0 +23700,45,9.5,6,0.0 +23700,76,18,21,0.0 +23700,4,22,8,0.0 +23700,8,40,2,0.0 +23700,50,16.25,13,0.0 +23700,1,18,17,0.0 +23700,21,10,17,0.0 +23700,15,15.5,30,0.0 +23700,13,6,42,0.0 +23700,25,14,11,0.0 +23700,38,263.5,44,0.0 +23700,11,21,34,0.0 +23700,17,39,40,0.0 +23700,10,31,3,0.0 +23700,23,9,23,0.0 +23700,59,55,28,0.0 +23700,33,2.5,46,0.0 +23700,19,9.2,19,0.0 +23700,46,12,35,0.0 +23700,71,21.5,41,0.0 +23700,16,17.45,7,0.0 +23700,56,38,27,0.0 +23700,52,7,23,0.0 +23700,22,21,50,0.0 +23700,42,14,36,0.0 +23701,73,15,33,0.0 +23701,48,12.75,25,0.0 +23701,6,25,33,0.0 +23701,13,6,27,0.0 +23701,25,14,39,0.0 +23701,45,9.5,41,0.0 +23701,57,19.5,42,0.0 +23701,37,26,41,0.0 +23701,38,263.5,45,0.0 +23701,33,2.5,44,0.0 +23701,67,14,4,0.0 +23701,28,45.6,10,0.0 +23701,60,34,18,0.0 +23701,4,22,22,0.0 +23701,7,30,23,0.0 +23701,19,9.2,27,0.0 +23701,24,4.5,5,0.0 +23701,43,46,29,0.0 +23701,31,12.5,26,0.0 +23701,65,21.05,13,0.0 +23701,32,32,35,0.0 +23701,10,31,5,0.0 +23701,77,13,38,0.0 +23701,34,14,39,0.0 +23701,23,9,49,0.0 +23701,39,18,46,0.0 +23701,76,18,47,0.0 +23701,72,34.8,39,0.0 +23701,50,16.25,45,0.0 +23701,9,97,43,0.0 +23701,40,18.4,14,0.0 +23701,61,28.5,27,0.0 +23701,41,9.65,36,0.0 +23701,18,62.5,21,0.0 +23701,70,15,9,0.0 +23701,27,43.9,30,0.0 +23701,74,10,24,0.0 +23701,5,21.35,24,0.0 +23701,51,53,42,0.0 +23701,11,21,3,0.0 +23701,62,49.3,5,0.0 +23701,36,19,33,0.0 +23701,17,39,23,0.0 +23701,55,24,20,0.0 +23701,75,7.75,44,0.0 +23701,68,12.5,28,0.0 +23701,59,55,9,0.0 +23701,26,31.23,41,0.0 +23701,20,81,41,0.0 +23701,54,7.45,17,0.0 +23701,1,18,3,0.0 +23701,49,20,4,0.0 +23701,63,43.9,45,0.0 +23701,30,25.89,33,0.0 +23701,3,10,39,0.0 +23702,12,38,1,0.0 +23702,55,24,22,0.0 +23702,56,38,32,0.0 +23702,37,26,42,0.0 +23702,64,33.25,3,0.0 +23702,74,10,7,0.0 +23702,5,21.35,11,0.0 +23702,75,7.75,42,0.0 +23702,73,15,25,0.0 +23702,8,40,12,0.0 +23702,2,19,7,0.0 +23702,43,46,31,0.0 +23702,65,21.05,18,0.0 +23702,72,34.8,6,0.0 +23702,59,55,31,0.0 +23702,40,18.4,2,0.0 +23702,48,12.75,43,0.0 +23702,69,36,35,0.0 +23702,61,28.5,30,0.0 +23702,63,43.9,31,0.0 +23702,32,32,41,0.0 +23702,68,12.5,28,0.0 +23702,71,21.5,46,0.0 +23702,21,10,10,0.0 +23702,29,123.79,48,0.0 +23702,18,62.5,20,0.0 +23702,14,23.25,33,0.0 +23702,17,39,27,0.0 +23702,36,19,28,0.0 +23702,19,9.2,47,0.0 +23702,51,53,7,0.0 +23702,24,4.5,47,0.0 +23702,53,32.8,31,0.0 +23702,47,9.5,25,0.0 +23702,34,14,33,0.0 +23702,54,7.45,45,0.0 +23702,33,2.5,25,0.0 +23702,31,12.5,44,0.0 +23702,67,14,27,0.0 +23702,66,17,14,0.0 +23702,62,49.3,31,0.0 +23702,35,18,34,0.0 +23702,13,6,38,0.0 +23702,44,19.45,50,0.0 +23702,11,21,41,0.0 +23702,45,9.5,3,0.0 +23702,60,34,31,0.0 +23702,52,7,21,0.0 +23702,27,43.9,22,0.0 +23702,1,18,33,0.0 +23702,57,19.5,6,0.0 +23702,20,81,17,0.0 +23702,50,16.25,12,0.0 +23702,3,10,30,0.0 +23702,39,18,23,0.0 +23702,70,15,30,0.0 +23702,30,25.89,31,0.0 +23702,16,17.45,31,0.0 +23702,42,14,50,0.0 +23702,38,263.5,48,0.0 +23702,28,45.6,29,0.0 +23702,23,9,45,0.0 +23702,15,15.5,47,0.0 +23702,58,13.25,32,0.0 +23702,7,30,3,0.0 +23702,41,9.65,13,0.0 +23702,9,97,18,0.0 +23702,77,13,42,0.0 +23702,25,14,49,0.0 +23702,22,21,12,0.0 +23702,49,20,8,0.0 +23702,4,22,11,0.0 +23702,46,12,8,0.0 +23702,6,25,19,0.0 +23703,48,12.75,12,0.0 +23703,68,12.5,9,0.0 +23703,8,40,44,0.0 +23703,31,12.5,19,0.0 +23703,61,28.5,18,0.0 +23703,18,62.5,50,0.0 +23703,59,55,4,0.0 +23703,20,81,45,0.0 +23703,66,17,30,0.0 +23703,24,4.5,24,0.0 +23703,65,21.05,38,0.0 +23703,62,49.3,23,0.0 +23703,26,31.23,29,0.0 +23703,28,45.6,25,0.0 +23703,14,23.25,33,0.0 +23703,63,43.9,42,0.0 +23703,33,2.5,36,0.0 +23703,23,9,50,0.0 +23703,4,22,28,0.0 +23703,9,97,12,0.0 +23703,64,33.25,42,0.0 +23703,39,18,26,0.0 +23703,38,263.5,30,0.0 +23703,71,21.5,18,0.0 +23704,30,25.89,1,0.0 +23704,33,2.5,49,0.0 +23704,65,21.05,47,0.0 +23704,56,38,12,0.0 +23704,48,12.75,28,0.0 +23704,77,13,33,0.0 +23705,58,13.25,39,0.0 +23705,19,9.2,28,0.0 +23705,30,25.89,31,0.0 +23705,7,30,32,0.0 +23705,12,38,1,0.0 +23705,44,19.45,35,0.0 +23705,48,12.75,18,0.0 +23705,4,22,11,0.0 +23705,61,28.5,26,0.0 +23705,75,7.75,43,0.0 +23705,72,34.8,17,0.0 +23705,18,62.5,47,0.0 +23705,26,31.23,35,0.0 +23705,76,18,10,0.0 +23705,28,45.6,48,0.0 +23705,50,16.25,46,0.0 +23705,9,97,46,0.0 +23706,65,21.05,21,0.0 +23706,36,19,36,0.0 +23706,2,19,9,0.0 +23706,52,7,45,0.0 +23706,34,14,2,0.0 +23706,7,30,37,0.0 +23706,62,49.3,18,0.0 +23706,21,10,45,0.0 +23706,1,18,23,0.0 +23706,55,24,16,0.0 +23706,22,21,20,0.0 +23706,27,43.9,2,0.0 +23706,6,25,41,0.0 +23706,28,45.6,27,0.0 +23706,5,21.35,33,0.0 +23706,66,17,9,0.0 +23706,37,26,48,0.0 +23706,46,12,49,0.0 +23706,75,7.75,16,0.0 +23706,39,18,33,0.0 +23706,30,25.89,13,0.0 +23706,69,36,5,0.0 +23706,72,34.8,21,0.0 +23706,56,38,41,0.0 +23706,61,28.5,21,0.0 +23706,19,9.2,13,0.0 +23706,33,2.5,13,0.0 +23706,13,6,31,0.0 +23706,12,38,33,0.0 +23706,42,14,43,0.0 +23706,60,34,5,0.0 +23706,51,53,41,0.0 +23706,54,7.45,16,0.0 +23706,67,14,11,0.0 +23706,58,13.25,8,0.0 +23706,23,9,32,0.0 +23706,29,123.79,5,0.0 +23706,25,14,25,0.0 +23706,49,20,1,0.0 +23706,73,15,2,0.0 +23706,18,62.5,25,0.0 +23706,15,15.5,35,0.0 +23706,74,10,36,0.0 +23706,64,33.25,36,0.0 +23706,53,32.8,1,0.0 +23706,43,46,10,0.0 +23706,26,31.23,33,0.0 +23706,11,21,36,0.0 +23706,3,10,38,0.0 +23706,45,9.5,36,0.0 +23706,50,16.25,25,0.0 +23706,38,263.5,24,0.0 +23706,17,39,37,0.0 +23706,47,9.5,47,0.0 +23706,70,15,46,0.0 +23706,9,97,41,0.0 +23706,10,31,14,0.0 +23706,24,4.5,43,0.0 +23707,36,19,48,0.0 +23708,47,9.5,38,0.0 +23708,34,14,26,0.0 +23708,24,4.5,14,0.0 +23708,38,263.5,29,0.0 +23708,55,24,1,0.0 +23708,8,40,15,0.0 +23708,4,22,6,0.0 +23708,44,19.45,44,0.0 +23708,64,33.25,50,0.0 +23708,48,12.75,7,0.0 +23708,16,17.45,4,0.0 +23708,68,12.5,4,0.0 +23708,12,38,26,0.0 +23708,10,31,5,0.0 +23708,11,21,49,0.0 +23708,42,14,14,0.0 +23708,67,14,41,0.0 +23708,37,26,1,0.0 +23708,71,21.5,47,0.0 +23708,28,45.6,28,0.0 +23708,75,7.75,11,0.0 +23708,69,36,4,0.0 +23708,5,21.35,22,0.0 +23708,70,15,30,0.0 +23708,53,32.8,2,0.0 +23708,22,21,32,0.0 +23708,46,12,34,0.0 +23708,57,19.5,48,0.0 +23708,30,25.89,50,0.0 +23708,1,18,3,0.0 +23708,23,9,18,0.0 +23708,32,32,7,0.0 +23708,7,30,49,0.0 +23708,15,15.5,35,0.0 +23708,3,10,25,0.0 +23708,76,18,23,0.0 +23708,65,21.05,36,0.0 +23708,59,55,4,0.0 +23708,17,39,18,0.0 +23708,6,25,22,0.0 +23708,13,6,12,0.0 +23708,54,7.45,3,0.0 +23708,2,19,44,0.0 +23708,26,31.23,45,0.0 +23708,35,18,8,0.0 +23708,66,17,9,0.0 +23708,74,10,2,0.0 +23708,43,46,21,0.0 +23708,39,18,46,0.0 +23708,40,18.4,5,0.0 +23708,33,2.5,47,0.0 +23708,18,62.5,18,0.0 +23708,19,9.2,28,0.0 +23708,31,12.5,41,0.0 +23708,21,10,46,0.0 +23708,20,81,5,0.0 +23708,56,38,26,0.0 +23709,62,49.3,48,0.0 +23709,36,19,39,0.0 +23709,42,14,17,0.0 +23709,4,22,6,0.0 +23709,75,7.75,13,0.0 +23709,7,30,24,0.0 +23709,2,19,35,0.0 +23709,14,23.25,7,0.0 +23709,37,26,25,0.0 +23709,34,14,8,0.0 +23709,29,123.79,50,0.0 +23709,61,28.5,10,0.0 +23709,55,24,26,0.0 +23710,32,32,2,0.0 +23710,28,45.6,33,0.0 +23710,48,12.75,4,0.0 +23710,1,18,20,0.0 +23710,11,21,6,0.0 +23710,42,14,3,0.0 +23710,22,21,18,0.0 +23710,23,9,26,0.0 +23710,10,31,41,0.0 +23710,57,19.5,48,0.0 +23710,6,25,10,0.0 +23710,43,46,40,0.0 +23710,3,10,19,0.0 +23710,5,21.35,18,0.0 +23710,60,34,47,0.0 +23710,53,32.8,21,0.0 +23710,69,36,40,0.0 +23710,25,14,18,0.0 +23710,70,15,9,0.0 +23710,58,13.25,23,0.0 +23710,40,18.4,44,0.0 +23710,4,22,5,0.0 +23710,77,13,32,0.0 +23710,13,6,44,0.0 +23710,50,16.25,26,0.0 +23710,21,10,44,0.0 +23710,71,21.5,44,0.0 +23710,26,31.23,43,0.0 +23710,62,49.3,21,0.0 +23711,46,12,6,0.0 +23712,36,19,6,0.0 +23712,59,55,25,0.0 +23712,62,49.3,6,0.0 +23712,54,7.45,33,0.0 +23712,28,45.6,27,0.0 +23712,75,7.75,4,0.0 +23712,43,46,47,0.0 +23712,24,4.5,34,0.0 +23712,18,62.5,40,0.0 +23712,21,10,43,0.0 +23712,68,12.5,32,0.0 +23712,5,21.35,47,0.0 +23712,33,2.5,40,0.0 +23712,8,40,27,0.0 +23712,19,9.2,17,0.0 +23712,61,28.5,21,0.0 +23712,6,25,3,0.0 +23712,31,12.5,38,0.0 +23712,74,10,12,0.0 +23712,7,30,10,0.0 +23712,16,17.45,20,0.0 +23712,70,15,7,0.0 +23712,45,9.5,22,0.0 +23712,3,10,34,0.0 +23712,26,31.23,5,0.0 +23712,60,34,32,0.0 +23712,64,33.25,28,0.0 +23712,2,19,5,0.0 +23712,69,36,37,0.0 +23712,44,19.45,10,0.0 +23712,25,14,37,0.0 +23712,53,32.8,41,0.0 +23712,29,123.79,3,0.0 +23712,65,21.05,13,0.0 +23712,63,43.9,36,0.0 +23712,27,43.9,36,0.0 +23712,17,39,25,0.0 +23712,34,14,32,0.0 +23712,22,21,12,0.0 +23712,52,7,5,0.0 +23713,38,263.5,40,0.0 +23713,56,38,10,0.0 +23713,50,16.25,10,0.0 +23713,5,21.35,6,0.0 +23713,62,49.3,16,0.0 +23713,43,46,43,0.0 +23713,67,14,33,0.0 +23713,19,9.2,38,0.0 +23713,22,21,2,0.0 +23713,44,19.45,13,0.0 +23713,8,40,50,0.0 +23713,58,13.25,35,0.0 +23713,23,9,37,0.0 +23713,13,6,36,0.0 +23713,2,19,31,0.0 +23713,36,19,2,0.0 +23713,27,43.9,31,0.0 +23713,68,12.5,32,0.0 +23713,42,14,22,0.0 +23713,4,22,4,0.0 +23713,63,43.9,32,0.0 +23713,30,25.89,27,0.0 +23713,41,9.65,25,0.0 +23713,6,25,48,0.0 +23713,20,81,37,0.0 +23713,26,31.23,34,0.0 +23713,48,12.75,16,0.0 +23713,32,32,49,0.0 +23713,12,38,33,0.0 +23713,3,10,14,0.0 +23713,31,12.5,4,0.0 +23713,16,17.45,24,0.0 +23713,15,15.5,5,0.0 +23713,77,13,50,0.0 +23713,10,31,9,0.0 +23714,57,19.5,31,0.0 +23714,42,14,6,0.0 +23714,67,14,45,0.0 +23714,37,26,5,0.0 +23714,25,14,20,0.0 +23714,14,23.25,37,0.0 +23714,11,21,33,0.0 +23714,53,32.8,16,0.0 +23714,10,31,22,0.0 +23714,35,18,23,0.0 +23714,20,81,36,0.0 +23714,49,20,28,0.0 +23714,6,25,40,0.0 +23714,51,53,35,0.0 +23714,32,32,46,0.0 +23714,40,18.4,11,0.0 +23714,68,12.5,41,0.0 +23714,22,21,34,0.0 +23714,3,10,23,0.0 +23714,26,31.23,28,0.0 +23714,47,9.5,35,0.0 +23714,44,19.45,22,0.0 +23714,73,15,20,0.0 +23714,36,19,12,0.0 +23714,23,9,8,0.0 +23714,71,21.5,43,0.0 +23714,55,24,18,0.0 +23714,63,43.9,39,0.0 +23714,54,7.45,13,0.0 +23714,60,34,10,0.0 +23714,52,7,32,0.0 +23714,66,17,40,0.0 +23714,46,12,20,0.0 +23714,62,49.3,6,0.0 +23714,56,38,24,0.0 +23714,59,55,2,0.0 +23714,72,34.8,26,0.0 +23714,12,38,19,0.0 +23714,30,25.89,21,0.0 +23714,43,46,22,0.0 +23714,24,4.5,46,0.0 +23714,13,6,29,0.0 +23714,29,123.79,27,0.0 +23714,15,15.5,34,0.0 +23714,16,17.45,19,0.0 +23714,38,263.5,2,0.0 +23714,48,12.75,26,0.0 +23714,45,9.5,31,0.0 +23714,39,18,27,0.0 +23714,2,19,30,0.0 +23714,77,13,22,0.0 +23714,70,15,48,0.0 +23714,75,7.75,8,0.0 +23714,19,9.2,38,0.0 +23714,27,43.9,16,0.0 +23714,69,36,11,0.0 +23714,41,9.65,35,0.0 +23714,76,18,48,0.0 +23714,58,13.25,10,0.0 +23714,9,97,18,0.0 +23715,47,9.5,42,0.0 +23715,32,32,42,0.0 +23715,49,20,14,0.0 +23715,64,33.25,25,0.0 +23715,70,15,31,0.0 +23715,29,123.79,12,0.0 +23715,74,10,18,0.0 +23715,46,12,35,0.0 +23715,58,13.25,34,0.0 +23715,45,9.5,29,0.0 +23715,28,45.6,8,0.0 +23715,50,16.25,14,0.0 +23715,75,7.75,20,0.0 +23715,20,81,39,0.0 +23715,8,40,20,0.0 +23715,72,34.8,27,0.0 +23715,44,19.45,47,0.0 +23715,59,55,42,0.0 +23715,37,26,7,0.0 +23715,43,46,19,0.0 +23715,27,43.9,14,0.0 +23715,9,97,44,0.0 +23715,11,21,49,0.0 +23715,23,9,34,0.0 +23715,76,18,40,0.0 +23715,48,12.75,45,0.0 +23715,54,7.45,20,0.0 +23715,41,9.65,3,0.0 +23715,4,22,32,0.0 +23715,21,10,14,0.0 +23715,71,21.5,50,0.0 +23715,56,38,7,0.0 +23715,68,12.5,41,0.0 +23715,42,14,34,0.0 +23715,24,4.5,31,0.0 +23715,3,10,5,0.0 +23715,15,15.5,15,0.0 +23715,52,7,7,0.0 +23715,14,23.25,5,0.0 +23715,39,18,23,0.0 +23715,62,49.3,12,0.0 +23715,53,32.8,18,0.0 +23715,10,31,33,0.0 +23715,73,15,27,0.0 +23715,22,21,31,0.0 +23715,33,2.5,19,0.0 +23715,57,19.5,23,0.0 +23715,66,17,7,0.0 +23715,69,36,40,0.0 +23715,38,263.5,34,0.0 +23716,57,19.5,33,0.0 +23716,27,43.9,24,0.0 +23716,20,81,48,0.0 +23716,40,18.4,18,0.0 +23716,37,26,33,0.0 +23716,19,9.2,48,0.0 +23716,28,45.6,49,0.0 +23716,53,32.8,34,0.0 +23716,72,34.8,12,0.0 +23716,69,36,38,0.0 +23716,26,31.23,46,0.0 +23716,47,9.5,15,0.0 +23716,4,22,11,0.0 +23716,52,7,22,0.0 +23716,29,123.79,17,0.0 +23716,56,38,26,0.0 +23716,63,43.9,11,0.0 +23716,45,9.5,50,0.0 +23716,15,15.5,9,0.0 +23716,49,20,50,0.0 +23716,23,9,1,0.0 +23716,3,10,28,0.0 +23716,16,17.45,35,0.0 +23716,1,18,20,0.0 +23716,38,263.5,2,0.0 +23716,48,12.75,8,0.0 +23716,54,7.45,7,0.0 +23716,58,13.25,47,0.0 +23716,17,39,35,0.0 +23716,68,12.5,37,0.0 +23716,71,21.5,19,0.0 +23716,8,40,20,0.0 +23716,64,33.25,48,0.0 +23716,14,23.25,26,0.0 +23716,6,25,11,0.0 +23716,13,6,5,0.0 +23716,24,4.5,30,0.0 +23716,25,14,41,0.0 +23716,65,21.05,14,0.0 +23716,33,2.5,43,0.0 +23716,55,24,29,0.0 +23716,75,7.75,27,0.0 +23716,18,62.5,3,0.0 +23716,76,18,27,0.0 +23716,77,13,38,0.0 +23716,9,97,36,0.0 +23716,12,38,41,0.0 +23716,30,25.89,49,0.0 +23716,51,53,11,0.0 +23716,70,15,4,0.0 +23716,36,19,27,0.0 +23716,32,32,7,0.0 +23716,10,31,22,0.0 +23716,66,17,15,0.0 +23717,11,21,38,0.0 +23717,4,22,24,0.0 +23717,62,49.3,50,0.0 +23717,39,18,50,0.0 +23717,65,21.05,33,0.0 +23717,6,25,43,0.0 +23717,7,30,27,0.0 +23717,37,26,18,0.0 +23717,75,7.75,27,0.0 +23717,27,43.9,17,0.0 +23717,76,18,20,0.0 +23717,64,33.25,24,0.0 +23717,33,2.5,43,0.0 +23717,8,40,31,0.0 +23717,73,15,9,0.0 +23717,44,19.45,47,0.0 +23717,28,45.6,41,0.0 +23717,50,16.25,10,0.0 +23717,38,263.5,50,0.0 +23717,67,14,33,0.0 +23717,18,62.5,31,0.0 +23717,53,32.8,37,0.0 +23717,46,12,18,0.0 +23717,40,18.4,47,0.0 +23717,17,39,45,0.0 +23717,5,21.35,38,0.0 +23717,55,24,21,0.0 +23717,41,9.65,45,0.0 +23717,30,25.89,37,0.0 +23717,19,9.2,1,0.0 +23717,72,34.8,20,0.0 +23717,66,17,15,0.0 +23717,25,14,44,0.0 +23717,20,81,44,0.0 +23717,49,20,25,0.0 +23717,71,21.5,16,0.0 +23717,31,12.5,2,0.0 +23717,13,6,8,0.0 +23717,36,19,14,0.0 +23717,54,7.45,29,0.0 +23717,70,15,32,0.0 +23717,47,9.5,25,0.0 +23717,26,31.23,46,0.0 +23717,42,14,21,0.0 +23718,7,30,16,0.0 +23718,69,36,35,0.0 +23718,27,43.9,3,0.0 +23718,55,24,31,0.0 +23718,65,21.05,42,0.0 +23718,42,14,22,0.0 +23718,28,45.6,46,0.0 +23718,35,18,48,0.0 +23718,40,18.4,8,0.0 +23718,48,12.75,38,0.0 +23718,20,81,33,0.0 +23718,71,21.5,23,0.0 +23718,56,38,21,0.0 +23718,23,9,31,0.0 +23718,63,43.9,12,0.0 +23718,5,21.35,1,0.0 +23718,16,17.45,47,0.0 +23718,33,2.5,44,0.0 +23718,61,28.5,7,0.0 +23718,76,18,23,0.0 +23718,41,9.65,28,0.0 +23718,72,34.8,4,0.0 +23718,66,17,3,0.0 +23718,29,123.79,40,0.0 +23718,31,12.5,40,0.0 +23718,8,40,42,0.0 +23718,13,6,36,0.0 +23718,2,19,10,0.0 +23718,14,23.25,22,0.0 +23718,1,18,10,0.0 +23718,47,9.5,13,0.0 +23718,62,49.3,46,0.0 +23718,67,14,29,0.0 +23718,12,38,28,0.0 +23718,24,4.5,23,0.0 +23718,37,26,45,0.0 +23718,19,9.2,19,0.0 +23718,36,19,6,0.0 +23718,68,12.5,19,0.0 +23718,51,53,14,0.0 +23718,17,39,43,0.0 +23718,74,10,11,0.0 +23718,73,15,13,0.0 +23718,10,31,42,0.0 +23718,64,33.25,40,0.0 +23718,49,20,35,0.0 +23718,54,7.45,34,0.0 +23718,30,25.89,50,0.0 +23718,22,21,5,0.0 +23718,38,263.5,6,0.0 +23718,59,55,34,0.0 +23718,11,21,23,0.0 +23718,50,16.25,3,0.0 +23718,39,18,28,0.0 +23718,9,97,25,0.0 +23718,43,46,8,0.0 +23718,53,32.8,2,0.0 +23718,26,31.23,8,0.0 +23718,18,62.5,35,0.0 +23718,3,10,46,0.0 +23718,57,19.5,11,0.0 +23718,4,22,5,0.0 +23718,52,7,30,0.0 +23718,21,10,14,0.0 +23718,60,34,31,0.0 +23718,58,13.25,31,0.0 +23718,46,12,21,0.0 +23718,75,7.75,15,0.0 +23718,32,32,37,0.0 +23718,77,13,28,0.0 +23718,34,14,1,0.0 +23719,56,38,46,0.0 +23719,48,12.75,38,0.0 +23719,33,2.5,20,0.0 +23719,19,9.2,42,0.0 +23719,51,53,5,0.0 +23719,44,19.45,3,0.0 +23719,15,15.5,1,0.0 +23719,1,18,6,0.0 +23719,42,14,27,0.0 +23719,4,22,27,0.0 +23719,30,25.89,14,0.0 +23719,55,24,7,0.0 +23719,61,28.5,13,0.0 +23719,9,97,42,0.0 +23719,63,43.9,15,0.0 +23719,26,31.23,1,0.0 +23719,37,26,6,0.0 +23719,47,9.5,6,0.0 +23719,67,14,41,0.0 +23719,16,17.45,47,0.0 +23719,43,46,17,0.0 +23719,68,12.5,28,0.0 +23719,53,32.8,9,0.0 +23719,2,19,2,0.0 +23719,40,18.4,6,0.0 +23719,57,19.5,22,0.0 +23719,50,16.25,39,0.0 +23719,54,7.45,28,0.0 +23719,8,40,46,0.0 +23719,71,21.5,4,0.0 +23719,14,23.25,31,0.0 +23719,76,18,9,0.0 +23719,46,12,15,0.0 +23719,35,18,1,0.0 +23719,74,10,2,0.0 +23719,52,7,46,0.0 +23719,29,123.79,18,0.0 +23719,45,9.5,11,0.0 +23719,58,13.25,25,0.0 +23719,65,21.05,12,0.0 +23719,41,9.65,15,0.0 +23719,31,12.5,49,0.0 +23719,34,14,30,0.0 +23719,28,45.6,35,0.0 +23719,62,49.3,9,0.0 +23719,73,15,50,0.0 +23719,21,10,37,0.0 +23719,64,33.25,29,0.0 +23719,18,62.5,25,0.0 +23719,32,32,14,0.0 +23719,75,7.75,13,0.0 +23719,6,25,7,0.0 +23719,13,6,17,0.0 +23719,7,30,44,0.0 +23719,25,14,23,0.0 +23719,12,38,17,0.0 +23719,39,18,25,0.0 +23719,3,10,25,0.0 +23719,59,55,40,0.0 +23719,69,36,10,0.0 +23719,66,17,2,0.0 +23719,11,21,9,0.0 +23719,22,21,3,0.0 +23719,27,43.9,3,0.0 +23719,70,15,48,0.0 +23719,49,20,17,0.0 +23719,36,19,22,0.0 +23719,10,31,7,0.0 +23719,72,34.8,6,0.0 +23719,5,21.35,46,0.0 +23719,38,263.5,11,0.0 +23720,27,43.9,27,0.0 +23720,38,263.5,6,0.0 +23720,59,55,21,0.0 +23720,73,15,3,0.0 +23720,49,20,48,0.0 +23720,41,9.65,11,0.0 +23720,42,14,34,0.0 +23720,70,15,5,0.0 +23720,35,18,46,0.0 +23720,62,49.3,21,0.0 +23720,9,97,5,0.0 +23720,45,9.5,46,0.0 +23720,3,10,1,0.0 +23720,12,38,37,0.0 +23720,50,16.25,38,0.0 +23720,66,17,44,0.0 +23720,37,26,18,0.0 +23720,44,19.45,17,0.0 +23720,55,24,24,0.0 +23720,30,25.89,18,0.0 +23720,20,81,2,0.0 +23720,4,22,31,0.0 +23720,60,34,17,0.0 +23720,13,6,39,0.0 +23720,22,21,6,0.0 +23720,15,15.5,30,0.0 +23720,14,23.25,46,0.0 +23720,43,46,20,0.0 +23720,56,38,36,0.0 +23720,8,40,45,0.0 +23720,24,4.5,4,0.0 +23720,46,12,24,0.0 +23720,18,62.5,42,0.0 +23720,23,9,48,0.0 +23720,74,10,14,0.0 +23720,5,21.35,9,0.0 +23720,48,12.75,31,0.0 +23720,61,28.5,5,0.0 +23720,31,12.5,8,0.0 +23720,33,2.5,49,0.0 +23720,76,18,24,0.0 +23720,68,12.5,16,0.0 +23720,51,53,38,0.0 +23720,11,21,46,0.0 +23720,47,9.5,18,0.0 +23720,67,14,9,0.0 +23720,19,9.2,25,0.0 +23720,26,31.23,24,0.0 +23720,72,34.8,8,0.0 +23720,29,123.79,35,0.0 +23720,64,33.25,30,0.0 +23720,10,31,22,0.0 +23720,1,18,28,0.0 +23720,54,7.45,23,0.0 +23721,6,25,4,0.0 +23721,76,18,17,0.0 +23721,22,21,25,0.0 +23721,27,43.9,48,0.0 +23721,74,10,32,0.0 +23721,30,25.89,26,0.0 +23721,61,28.5,49,0.0 +23721,10,31,17,0.0 +23721,18,62.5,28,0.0 +23721,37,26,21,0.0 +23721,4,22,27,0.0 +23721,77,13,38,0.0 +23721,43,46,15,0.0 +23721,23,9,34,0.0 +23721,1,18,30,0.0 +23721,39,18,48,0.0 +23721,17,39,32,0.0 +23721,72,34.8,25,0.0 +23721,47,9.5,43,0.0 +23721,51,53,2,0.0 +23721,71,21.5,47,0.0 +23721,42,14,22,0.0 +23721,65,21.05,41,0.0 +23721,62,49.3,32,0.0 +23721,59,55,15,0.0 +23721,69,36,13,0.0 +23721,13,6,27,0.0 +23721,40,18.4,42,0.0 +23721,56,38,22,0.0 +23721,45,9.5,50,0.0 +23721,15,15.5,40,0.0 +23721,52,7,7,0.0 +23721,73,15,1,0.0 +23721,26,31.23,12,0.0 +23722,35,18,32,0.0 +23722,46,12,49,0.0 +23722,67,14,50,0.0 +23722,7,30,18,0.0 +23722,12,38,41,0.0 +23722,48,12.75,25,0.0 +23722,16,17.45,41,0.0 +23722,58,13.25,2,0.0 +23722,53,32.8,12,0.0 +23722,70,15,35,0.0 +23722,41,9.65,24,0.0 +23722,23,9,11,0.0 +23722,33,2.5,7,0.0 +23722,34,14,15,0.0 +23722,20,81,40,0.0 +23722,61,28.5,21,0.0 +23722,71,21.5,16,0.0 +23722,60,34,41,0.0 +23722,75,7.75,10,0.0 +23722,76,18,9,0.0 +23722,29,123.79,11,0.0 +23722,68,12.5,46,0.0 +23722,51,53,13,0.0 +23722,30,25.89,50,0.0 +23722,36,19,15,0.0 +23722,50,16.25,13,0.0 +23722,18,62.5,23,0.0 +23722,15,15.5,22,0.0 +23722,5,21.35,20,0.0 +23722,74,10,21,0.0 +23722,49,20,4,0.0 +23722,43,46,26,0.0 +23722,45,9.5,6,0.0 +23722,55,24,42,0.0 +23722,37,26,15,0.0 +23722,56,38,33,0.0 +23723,51,53,36,0.0 +23723,35,18,15,0.0 +23723,48,12.75,45,0.0 +23723,1,18,46,0.0 +23723,6,25,35,0.0 +23723,5,21.35,2,0.0 +23723,21,10,11,0.0 +23723,57,19.5,17,0.0 +23723,58,13.25,37,0.0 +23723,28,45.6,46,0.0 +23723,2,19,38,0.0 +23723,12,38,48,0.0 +23723,9,97,29,0.0 +23723,67,14,19,0.0 +23723,17,39,15,0.0 +23723,3,10,35,0.0 +23723,32,32,5,0.0 +23723,20,81,27,0.0 +23723,76,18,1,0.0 +23723,25,14,23,0.0 +23723,31,12.5,1,0.0 +23723,24,4.5,29,0.0 +23723,65,21.05,32,0.0 +23723,29,123.79,21,0.0 +23723,53,32.8,9,0.0 +23723,72,34.8,46,0.0 +23723,77,13,23,0.0 +23723,54,7.45,22,0.0 +23723,71,21.5,30,0.0 +23723,70,15,8,0.0 +23723,27,43.9,1,0.0 +23723,55,24,25,0.0 +23723,39,18,12,0.0 +23723,10,31,41,0.0 +23723,15,15.5,22,0.0 +23723,62,49.3,11,0.0 +23723,30,25.89,40,0.0 +23723,64,33.25,33,0.0 +23723,38,263.5,39,0.0 +23723,56,38,39,0.0 +23723,47,9.5,31,0.0 +23723,49,20,21,0.0 +23723,59,55,23,0.0 +23723,18,62.5,38,0.0 +23723,43,46,8,0.0 +23723,46,12,31,0.0 +23723,41,9.65,30,0.0 +23723,40,18.4,48,0.0 +23724,49,20,3,0.0 +23724,68,12.5,32,0.0 +23724,41,9.65,22,0.0 +23724,25,14,30,0.0 +23724,12,38,39,0.0 +23724,46,12,31,0.0 +23724,50,16.25,41,0.0 +23724,26,31.23,43,0.0 +23724,74,10,4,0.0 +23724,62,49.3,17,0.0 +23724,69,36,44,0.0 +23724,51,53,27,0.0 +23724,19,9.2,49,0.0 +23724,18,62.5,7,0.0 +23724,15,15.5,34,0.0 +23724,61,28.5,30,0.0 +23724,33,2.5,27,0.0 +23724,53,32.8,9,0.0 +23724,40,18.4,43,0.0 +23724,70,15,6,0.0 +23724,63,43.9,49,0.0 +23724,71,21.5,46,0.0 +23724,75,7.75,38,0.0 +23724,8,40,40,0.0 +23724,27,43.9,8,0.0 +23724,66,17,38,0.0 +23724,58,13.25,4,0.0 +23724,13,6,31,0.0 +23724,9,97,7,0.0 +23724,17,39,34,0.0 +23724,54,7.45,48,0.0 +23724,65,21.05,32,0.0 +23724,6,25,27,0.0 +23724,60,34,34,0.0 +23724,64,33.25,41,0.0 +23724,67,14,10,0.0 +23724,48,12.75,19,0.0 +23725,77,13,9,0.0 +23725,7,30,24,0.0 +23725,48,12.75,8,0.0 +23725,54,7.45,50,0.0 +23725,53,32.8,17,0.0 +23725,69,36,48,0.0 +23725,2,19,42,0.0 +23725,33,2.5,30,0.0 +23725,32,32,34,0.0 +23725,20,81,4,0.0 +23725,14,23.25,27,0.0 +23725,18,62.5,31,0.0 +23725,5,21.35,50,0.0 +23725,44,19.45,20,0.0 +23725,38,263.5,3,0.0 +23725,50,16.25,46,0.0 +23725,8,40,33,0.0 +23725,28,45.6,22,0.0 +23725,41,9.65,1,0.0 +23725,56,38,21,0.0 +23725,61,28.5,4,0.0 +23725,55,24,5,0.0 +23725,37,26,14,0.0 +23725,17,39,32,0.0 +23725,19,9.2,39,0.0 +23725,15,15.5,23,0.0 +23725,46,12,3,0.0 +23725,40,18.4,41,0.0 +23725,75,7.75,46,0.0 +23725,12,38,7,0.0 +23725,59,55,47,0.0 +23725,47,9.5,36,0.0 +23725,22,21,2,0.0 +23725,72,34.8,3,0.0 +23725,31,12.5,16,0.0 +23725,64,33.25,34,0.0 +23725,35,18,25,0.0 +23725,74,10,47,0.0 +23725,4,22,22,0.0 +23725,9,97,32,0.0 +23726,9,97,35,0.0 +23726,40,18.4,27,0.0 +23726,66,17,18,0.0 +23726,62,49.3,7,0.0 +23726,46,12,20,0.0 +23726,25,14,43,0.0 +23726,32,32,40,0.0 +23726,26,31.23,49,0.0 +23726,38,263.5,19,0.0 +23726,29,123.79,3,0.0 +23726,71,21.5,4,0.0 +23726,8,40,28,0.0 +23726,20,81,5,0.0 +23726,56,38,10,0.0 +23726,63,43.9,28,0.0 +23726,22,21,5,0.0 +23726,10,31,45,0.0 +23726,21,10,14,0.0 +23726,75,7.75,2,0.0 +23726,7,30,47,0.0 +23726,44,19.45,26,0.0 +23726,55,24,38,0.0 +23726,68,12.5,19,0.0 +23726,15,15.5,23,0.0 +23726,39,18,20,0.0 +23726,47,9.5,20,0.0 +23726,69,36,18,0.0 +23726,24,4.5,21,0.0 +23726,23,9,23,0.0 +23726,52,7,16,0.0 +23726,72,34.8,9,0.0 +23726,45,9.5,40,0.0 +23726,35,18,34,0.0 +23726,70,15,16,0.0 +23726,12,38,20,0.0 +23726,64,33.25,40,0.0 +23726,59,55,36,0.0 +23726,77,13,38,0.0 +23726,58,13.25,49,0.0 +23726,49,20,25,0.0 +23726,76,18,23,0.0 +23726,3,10,39,0.0 +23726,53,32.8,18,0.0 +23726,16,17.45,49,0.0 +23726,41,9.65,19,0.0 +23726,18,62.5,23,0.0 +23726,65,21.05,2,0.0 +23726,31,12.5,33,0.0 +23726,28,45.6,40,0.0 +23726,14,23.25,21,0.0 +23726,74,10,31,0.0 +23726,73,15,22,0.0 +23726,48,12.75,29,0.0 +23726,2,19,4,0.0 +23726,36,19,48,0.0 +23726,4,22,14,0.0 +23726,13,6,28,0.0 +23726,27,43.9,34,0.0 +23727,33,2.5,45,0.0 +23727,46,12,8,0.0 +23727,39,18,18,0.0 +23727,13,6,46,0.0 +23727,18,62.5,29,0.0 +23727,7,30,17,0.0 +23727,30,25.89,12,0.0 +23727,6,25,43,0.0 +23727,53,32.8,26,0.0 +23728,48,12.75,36,0.0 +23728,15,15.5,30,0.0 +23728,74,10,1,0.0 +23728,73,15,44,0.0 +23728,61,28.5,28,0.0 +23728,27,43.9,41,0.0 +23728,12,38,39,0.0 +23728,35,18,15,0.0 +23728,2,19,48,0.0 +23728,77,13,44,0.0 +23728,66,17,49,0.0 +23728,17,39,21,0.0 +23728,72,34.8,25,0.0 +23728,54,7.45,46,0.0 +23728,19,9.2,14,0.0 +23728,71,21.5,40,0.0 +23728,9,97,8,0.0 +23728,52,7,6,0.0 +23728,25,14,26,0.0 +23728,34,14,29,0.0 +23728,42,14,13,0.0 +23728,50,16.25,16,0.0 +23728,7,30,20,0.0 +23728,56,38,34,0.0 +23728,75,7.75,16,0.0 +23728,8,40,21,0.0 +23728,16,17.45,46,0.0 +23728,49,20,44,0.0 +23728,31,12.5,5,0.0 +23728,53,32.8,35,0.0 +23728,26,31.23,48,0.0 +23728,57,19.5,22,0.0 +23728,68,12.5,3,0.0 +23728,45,9.5,4,0.0 +23728,5,21.35,30,0.0 +23728,30,25.89,46,0.0 +23728,40,18.4,49,0.0 +23728,36,19,8,0.0 +23728,62,49.3,23,0.0 +23728,13,6,35,0.0 +23728,63,43.9,9,0.0 +23728,47,9.5,7,0.0 +23728,69,36,27,0.0 +23728,60,34,4,0.0 +23728,70,15,23,0.0 +23728,22,21,44,0.0 +23728,29,123.79,2,0.0 +23728,18,62.5,5,0.0 +23728,28,45.6,44,0.0 +23728,67,14,6,0.0 +23728,4,22,22,0.0 +23728,3,10,29,0.0 +23728,20,81,46,0.0 +23728,10,31,1,0.0 +23728,46,12,4,0.0 +23728,24,4.5,38,0.0 +23728,38,263.5,36,0.0 +23728,11,21,11,0.0 +23728,23,9,21,0.0 +23728,41,9.65,46,0.0 +23728,65,21.05,2,0.0 +23728,14,23.25,16,0.0 +23728,76,18,29,0.0 +23728,58,13.25,16,0.0 +23728,51,53,48,0.0 +23728,44,19.45,27,0.0 +23728,33,2.5,48,0.0 +23728,39,18,33,0.0 +23728,59,55,36,0.0 +23728,6,25,15,0.0 +23728,1,18,47,0.0 +23729,40,18.4,8,0.0 +23729,32,32,45,0.0 +23729,9,97,48,0.0 +23729,7,30,38,0.0 +23729,41,9.65,8,0.0 +23729,16,17.45,6,0.0 +23729,50,16.25,10,0.0 +23729,14,23.25,47,0.0 +23729,20,81,43,0.0 +23729,60,34,45,0.0 +23729,29,123.79,33,0.0 +23729,15,15.5,45,0.0 +23729,56,38,25,0.0 +23729,73,15,24,0.0 +23729,31,12.5,22,0.0 +23729,24,4.5,40,0.0 +23729,62,49.3,37,0.0 +23729,63,43.9,24,0.0 +23729,42,14,4,0.0 +23729,39,18,2,0.0 +23729,68,12.5,34,0.0 +23729,57,19.5,1,0.0 +23729,1,18,44,0.0 +23729,19,9.2,18,0.0 +23729,2,19,11,0.0 +23729,4,22,6,0.0 +23729,77,13,43,0.0 +23729,53,32.8,30,0.0 +23729,28,45.6,33,0.0 +23729,37,26,15,0.0 +23729,33,2.5,9,0.0 +23729,27,43.9,37,0.0 +23729,35,18,34,0.0 +23729,49,20,27,0.0 +23729,61,28.5,6,0.0 +23729,10,31,7,0.0 +23729,3,10,19,0.0 +23729,11,21,9,0.0 +23729,43,46,26,0.0 +23729,13,6,25,0.0 +23729,74,10,39,0.0 +23729,30,25.89,24,0.0 +23729,46,12,49,0.0 +23729,66,17,29,0.0 +23729,36,19,16,0.0 +23729,71,21.5,1,0.0 +23729,17,39,45,0.0 +23729,52,7,7,0.0 +23729,72,34.8,36,0.0 +23729,23,9,6,0.0 +23729,22,21,47,0.0 +23729,59,55,4,0.0 +23729,76,18,35,0.0 +23729,75,7.75,23,0.0 +23729,8,40,43,0.0 +23729,44,19.45,36,0.0 +23729,45,9.5,32,0.0 +23729,12,38,15,0.0 +23729,6,25,8,0.0 +23729,26,31.23,35,0.0 +23729,48,12.75,15,0.0 +23729,47,9.5,5,0.0 +23729,21,10,26,0.0 +23729,25,14,11,0.0 +23729,18,62.5,48,0.0 +23729,69,36,47,0.0 +23729,58,13.25,4,0.0 +23729,55,24,16,0.0 +23729,64,33.25,14,0.0 +23729,51,53,25,0.0 +23729,38,263.5,34,0.0 +23730,17,39,40,0.0 +23730,19,9.2,14,0.0 +23730,74,10,14,0.0 +23730,23,9,41,0.0 +23730,26,31.23,1,0.0 +23730,33,2.5,6,0.0 +23731,15,15.5,10,0.0 +23731,9,97,24,0.0 +23732,45,9.5,5,0.0 +23732,60,34,42,0.0 +23732,1,18,41,0.0 +23732,26,31.23,10,0.0 +23732,30,25.89,18,0.0 +23732,52,7,44,0.0 +23733,33,2.5,9,0.0 +23733,5,21.35,39,0.0 +23733,3,10,2,0.0 +23733,20,81,15,0.0 +23733,67,14,20,0.0 +23733,57,19.5,29,0.0 +23733,70,15,36,0.0 +23733,50,16.25,27,0.0 +23733,34,14,47,0.0 +23733,46,12,6,0.0 +23733,53,32.8,17,0.0 +23733,43,46,33,0.0 +23733,39,18,39,0.0 +23733,44,19.45,19,0.0 +23733,66,17,43,0.0 +23733,49,20,34,0.0 +23733,74,10,45,0.0 +23733,54,7.45,8,0.0 +23733,19,9.2,16,0.0 +23733,21,10,3,0.0 +23733,14,23.25,40,0.0 +23733,24,4.5,9,0.0 +23733,2,19,1,0.0 +23733,11,21,24,0.0 +23733,48,12.75,22,0.0 +23733,26,31.23,29,0.0 +23733,15,15.5,13,0.0 +23733,58,13.25,48,0.0 +23733,59,55,32,0.0 +23733,1,18,12,0.0 +23733,16,17.45,33,0.0 +23733,28,45.6,7,0.0 +23733,8,40,18,0.0 +23733,69,36,25,0.0 +23733,35,18,46,0.0 +23733,68,12.5,14,0.0 +23733,62,49.3,13,0.0 +23733,77,13,8,0.0 +23733,55,24,28,0.0 +23733,37,26,8,0.0 +23733,45,9.5,42,0.0 +23733,12,38,27,0.0 +23733,13,6,35,0.0 +23733,9,97,47,0.0 +23733,10,31,44,0.0 +23733,31,12.5,7,0.0 +23733,23,9,45,0.0 +23733,64,33.25,7,0.0 +23733,18,62.5,15,0.0 +23733,22,21,11,0.0 +23733,51,53,28,0.0 +23733,60,34,20,0.0 +23733,17,39,5,0.0 +23733,63,43.9,28,0.0 +23733,71,21.5,24,0.0 +23734,44,19.45,6,0.0 +23734,76,18,23,0.0 +23734,24,4.5,35,0.0 +23734,4,22,35,0.0 +23734,10,31,1,0.0 +23734,27,43.9,48,0.0 +23734,14,23.25,36,0.0 +23734,32,32,17,0.0 +23734,48,12.75,8,0.0 +23734,6,25,5,0.0 +23734,42,14,40,0.0 +23734,25,14,25,0.0 +23734,77,13,21,0.0 +23734,8,40,7,0.0 +23734,71,21.5,39,0.0 +23734,57,19.5,32,0.0 +23734,18,62.5,45,0.0 +23734,17,39,40,0.0 +23734,33,2.5,45,0.0 +23734,63,43.9,33,0.0 +23734,22,21,2,0.0 +23734,69,36,29,0.0 +23734,56,38,17,0.0 +23734,67,14,42,0.0 +23734,64,33.25,35,0.0 +23734,73,15,17,0.0 +23734,11,21,35,0.0 +23734,70,15,44,0.0 +23734,55,24,10,0.0 +23734,62,49.3,8,0.0 +23734,66,17,12,0.0 +23734,7,30,14,0.0 +23734,20,81,21,0.0 +23734,21,10,40,0.0 +23734,46,12,41,0.0 +23734,23,9,21,0.0 +23734,75,7.75,25,0.0 +23734,40,18.4,14,0.0 +23734,9,97,30,0.0 +23734,19,9.2,10,0.0 +23734,5,21.35,26,0.0 +23734,34,14,41,0.0 +23734,61,28.5,14,0.0 +23734,68,12.5,20,0.0 +23734,54,7.45,10,0.0 +23734,59,55,30,0.0 +23734,30,25.89,16,0.0 +23734,49,20,10,0.0 +23734,37,26,45,0.0 +23734,35,18,46,0.0 +23734,16,17.45,3,0.0 +23734,38,263.5,46,0.0 +23734,41,9.65,45,0.0 +23734,39,18,28,0.0 +23734,60,34,46,0.0 +23734,36,19,34,0.0 +23734,52,7,35,0.0 +23734,72,34.8,8,0.0 +23734,47,9.5,27,0.0 +23734,51,53,4,0.0 +23734,26,31.23,8,0.0 +23734,65,21.05,14,0.0 +23734,28,45.6,4,0.0 +23734,58,13.25,20,0.0 +23734,43,46,34,0.0 +23734,45,9.5,6,0.0 +23735,67,14,26,0.0 +23735,25,14,31,0.0 +23735,22,21,13,0.0 +23735,16,17.45,7,0.0 +23735,15,15.5,6,0.0 +23735,12,38,30,0.0 +23735,28,45.6,4,0.0 +23735,2,19,10,0.0 +23735,37,26,37,0.0 +23735,3,10,33,0.0 +23735,6,25,34,0.0 +23735,59,55,38,0.0 +23735,51,53,12,0.0 +23735,27,43.9,20,0.0 +23735,24,4.5,27,0.0 +23735,46,12,44,0.0 +23735,72,34.8,30,0.0 +23735,61,28.5,25,0.0 +23735,21,10,5,0.0 +23735,73,15,37,0.0 +23735,56,38,44,0.0 +23735,4,22,34,0.0 +23735,71,21.5,50,0.0 +23735,43,46,16,0.0 +23735,1,18,31,0.0 +23735,36,19,41,0.0 +23735,74,10,12,0.0 +23735,64,33.25,5,0.0 +23735,68,12.5,10,0.0 +23735,40,18.4,35,0.0 +23735,8,40,10,0.0 +23735,11,21,20,0.0 +23735,75,7.75,20,0.0 +23735,63,43.9,7,0.0 +23735,19,9.2,29,0.0 +23735,5,21.35,24,0.0 +23735,10,31,44,0.0 +23735,57,19.5,49,0.0 +23735,60,34,16,0.0 +23735,76,18,26,0.0 +23736,10,31,15,0.0 +23736,29,123.79,1,0.0 +23736,42,14,20,0.0 +23736,26,31.23,49,0.0 +23736,23,9,9,0.0 +23736,41,9.65,20,0.0 +23736,33,2.5,5,0.0 +23736,18,62.5,44,0.0 +23736,58,13.25,45,0.0 +23736,71,21.5,48,0.0 +23736,3,10,23,0.0 +23736,39,18,22,0.0 +23736,30,25.89,27,0.0 +23736,53,32.8,15,0.0 +23736,73,15,30,0.0 +23736,24,4.5,12,0.0 +23736,14,23.25,9,0.0 +23736,1,18,31,0.0 +23736,47,9.5,6,0.0 +23736,40,18.4,6,0.0 +23736,32,32,43,0.0 +23736,6,25,29,0.0 +23736,36,19,32,0.0 +23736,64,33.25,32,0.0 +23736,76,18,50,0.0 +23736,17,39,18,0.0 +23736,66,17,15,0.0 +23736,11,21,9,0.0 +23736,35,18,44,0.0 +23736,55,24,40,0.0 +23736,38,263.5,48,0.0 +23736,43,46,6,0.0 +23736,65,21.05,21,0.0 +23736,12,38,30,0.0 +23736,44,19.45,26,0.0 +23736,54,7.45,49,0.0 +23736,77,13,34,0.0 +23736,51,53,13,0.0 +23736,61,28.5,37,0.0 +23736,22,21,26,0.0 +23736,50,16.25,49,0.0 +23736,74,10,36,0.0 +23736,69,36,32,0.0 +23736,48,12.75,40,0.0 +23737,31,12.5,19,0.0 +23737,2,19,39,0.0 +23737,5,21.35,39,0.0 +23737,23,9,27,0.0 +23737,76,18,26,0.0 +23737,4,22,29,0.0 +23737,29,123.79,28,0.0 +23737,32,32,33,0.0 +23737,56,38,22,0.0 +23737,57,19.5,4,0.0 +23737,44,19.45,1,0.0 +23737,77,13,30,0.0 +23737,21,10,29,0.0 +23737,41,9.65,9,0.0 +23737,70,15,21,0.0 +23737,43,46,26,0.0 +23737,7,30,26,0.0 +23737,11,21,20,0.0 +23737,66,17,41,0.0 +23737,14,23.25,38,0.0 +23737,61,28.5,41,0.0 +23737,50,16.25,47,0.0 +23737,52,7,50,0.0 +23738,16,17.45,3,0.0 +23738,42,14,35,0.0 +23738,33,2.5,4,0.0 +23738,9,97,23,0.0 +23738,14,23.25,42,0.0 +23738,58,13.25,23,0.0 +23738,63,43.9,18,0.0 +23738,70,15,9,0.0 +23738,12,38,22,0.0 +23738,32,32,28,0.0 +23738,44,19.45,12,0.0 +23738,3,10,29,0.0 +23738,18,62.5,45,0.0 +23738,26,31.23,17,0.0 +23738,35,18,11,0.0 +23738,27,43.9,16,0.0 +23738,43,46,4,0.0 +23738,57,19.5,12,0.0 +23738,49,20,19,0.0 +23738,51,53,19,0.0 +23738,77,13,47,0.0 +23738,7,30,38,0.0 +23738,38,263.5,22,0.0 +23738,62,49.3,25,0.0 +23739,4,22,49,0.0 +23739,7,30,40,0.0 +23739,12,38,16,0.0 +23739,58,13.25,47,0.0 +23739,18,62.5,13,0.0 +23739,43,46,27,0.0 +23739,27,43.9,31,0.0 +23739,19,9.2,12,0.0 +23739,35,18,25,0.0 +23739,14,23.25,1,0.0 +23739,16,17.45,18,0.0 +23739,17,39,6,0.0 +23739,51,53,13,0.0 +23739,59,55,12,0.0 +23739,8,40,39,0.0 +23739,28,45.6,7,0.0 +23739,23,9,20,0.0 +23739,9,97,14,0.0 +23739,68,12.5,44,0.0 +23739,22,21,28,0.0 +23739,10,31,14,0.0 +23739,71,21.5,17,0.0 +23739,20,81,2,0.0 +23739,61,28.5,34,0.0 +23739,41,9.65,21,0.0 +23739,40,18.4,11,0.0 +23739,44,19.45,25,0.0 +23739,49,20,6,0.0 +23739,34,14,45,0.0 +23739,47,9.5,30,0.0 +23739,45,9.5,9,0.0 +23739,26,31.23,43,0.0 +23739,65,21.05,19,0.0 +23739,13,6,14,0.0 +23739,70,15,29,0.0 +23739,37,26,1,0.0 +23739,75,7.75,31,0.0 +23739,63,43.9,40,0.0 +23739,76,18,5,0.0 +23739,48,12.75,15,0.0 +23739,72,34.8,20,0.0 +23739,31,12.5,27,0.0 +23739,3,10,50,0.0 +23739,39,18,30,0.0 +23739,2,19,14,0.0 +23739,6,25,40,0.0 +23739,57,19.5,45,0.0 +23739,52,7,26,0.0 +23739,33,2.5,32,0.0 +23739,11,21,48,0.0 +23739,77,13,6,0.0 +23739,74,10,47,0.0 +23739,56,38,27,0.0 +23739,46,12,7,0.0 +23739,21,10,12,0.0 +23739,36,19,11,0.0 +23739,42,14,45,0.0 +23739,67,14,20,0.0 +23739,73,15,25,0.0 +23739,24,4.5,39,0.0 +23739,38,263.5,10,0.0 +23739,25,14,12,0.0 +23739,1,18,17,0.0 +23739,60,34,3,0.0 +23739,53,32.8,17,0.0 +23739,50,16.25,17,0.0 +23739,69,36,45,0.0 +23739,55,24,30,0.0 +23740,44,19.45,35,0.0 +23740,73,15,28,0.0 +23740,26,31.23,6,0.0 +23740,52,7,29,0.0 +23740,68,12.5,27,0.0 +23740,69,36,11,0.0 +23740,60,34,10,0.0 +23740,32,32,15,0.0 +23740,1,18,34,0.0 +23740,39,18,43,0.0 +23740,50,16.25,38,0.0 +23740,6,25,40,0.0 +23740,5,21.35,32,0.0 +23740,47,9.5,44,0.0 +23740,7,30,49,0.0 +23740,21,10,46,0.0 +23740,23,9,2,0.0 +23740,63,43.9,26,0.0 +23740,72,34.8,41,0.0 +23740,4,22,35,0.0 +23740,61,28.5,10,0.0 +23740,34,14,30,0.0 +23740,57,19.5,16,0.0 +23740,75,7.75,33,0.0 +23740,42,14,26,0.0 +23740,77,13,3,0.0 +23740,13,6,12,0.0 +23740,10,31,19,0.0 +23740,48,12.75,17,0.0 +23740,49,20,4,0.0 +23740,37,26,13,0.0 +23740,45,9.5,34,0.0 +23740,36,19,3,0.0 +23740,70,15,25,0.0 +23740,28,45.6,18,0.0 +23740,8,40,25,0.0 +23740,46,12,38,0.0 +23740,14,23.25,9,0.0 +23740,24,4.5,30,0.0 +23740,15,15.5,47,0.0 +23740,16,17.45,50,0.0 +23740,20,81,26,0.0 +23740,67,14,8,0.0 +23740,53,32.8,47,0.0 +23740,3,10,16,0.0 +23740,27,43.9,23,0.0 +23740,71,21.5,27,0.0 +23740,30,25.89,15,0.0 +23740,2,19,48,0.0 +23740,9,97,41,0.0 +23740,59,55,30,0.0 +23740,43,46,10,0.0 +23740,54,7.45,15,0.0 +23740,74,10,3,0.0 +23740,11,21,35,0.0 +23740,38,263.5,23,0.0 +23740,19,9.2,22,0.0 +23740,17,39,23,0.0 +23740,40,18.4,48,0.0 +23740,35,18,1,0.0 +23740,51,53,11,0.0 +23740,66,17,45,0.0 +23740,31,12.5,1,0.0 +23740,41,9.65,46,0.0 +23740,55,24,22,0.0 +23740,76,18,32,0.0 +23740,33,2.5,35,0.0 +23740,25,14,17,0.0 +23740,58,13.25,6,0.0 +23740,65,21.05,3,0.0 +23741,4,22,4,0.0 +23741,55,24,46,0.0 +23741,18,62.5,21,0.0 +23741,2,19,30,0.0 +23741,28,45.6,24,0.0 +23741,52,7,41,0.0 +23741,26,31.23,25,0.0 +23741,59,55,17,0.0 +23741,65,21.05,16,0.0 +23741,74,10,45,0.0 +23741,29,123.79,14,0.0 +23741,24,4.5,9,0.0 +23741,60,34,21,0.0 +23741,38,263.5,35,0.0 +23741,51,53,8,0.0 +23741,35,18,22,0.0 +23741,47,9.5,23,0.0 +23741,19,9.2,11,0.0 +23741,37,26,50,0.0 +23741,5,21.35,41,0.0 +23741,63,43.9,43,0.0 +23741,30,25.89,41,0.0 +23741,17,39,20,0.0 +23741,68,12.5,5,0.0 +23741,25,14,14,0.0 +23741,1,18,12,0.0 +23741,69,36,17,0.0 +23741,41,9.65,20,0.0 +23742,69,36,1,0.0 +23742,12,38,8,0.0 +23742,77,13,10,0.0 +23742,25,14,45,0.0 +23742,70,15,14,0.0 +23742,29,123.79,26,0.0 +23742,17,39,21,0.0 +23742,18,62.5,42,0.0 +23742,9,97,23,0.0 +23742,76,18,27,0.0 +23742,6,25,14,0.0 +23742,5,21.35,14,0.0 +23742,14,23.25,31,0.0 +23742,60,34,14,0.0 +23742,35,18,24,0.0 +23742,26,31.23,26,0.0 +23742,22,21,8,0.0 +23742,23,9,12,0.0 +23742,67,14,31,0.0 +23742,24,4.5,12,0.0 +23742,44,19.45,35,0.0 +23742,36,19,12,0.0 +23742,15,15.5,26,0.0 +23742,55,24,36,0.0 +23742,43,46,25,0.0 +23742,48,12.75,6,0.0 +23742,20,81,49,0.0 +23742,8,40,11,0.0 +23742,27,43.9,20,0.0 +23742,4,22,26,0.0 +23742,56,38,11,0.0 +23742,74,10,10,0.0 +23742,45,9.5,33,0.0 +23742,64,33.25,19,0.0 +23742,59,55,16,0.0 +23742,39,18,15,0.0 +23742,10,31,50,0.0 +23742,65,21.05,6,0.0 +23742,73,15,2,0.0 +23742,7,30,34,0.0 +23742,68,12.5,50,0.0 +23742,51,53,30,0.0 +23742,28,45.6,22,0.0 +23742,37,26,7,0.0 +23742,40,18.4,50,0.0 +23742,63,43.9,41,0.0 +23742,33,2.5,8,0.0 +23742,42,14,35,0.0 +23742,31,12.5,36,0.0 +23742,13,6,30,0.0 +23742,2,19,4,0.0 +23742,3,10,44,0.0 +23742,62,49.3,1,0.0 +23742,32,32,50,0.0 +23742,46,12,47,0.0 +23742,34,14,17,0.0 +23742,1,18,50,0.0 +23742,75,7.75,9,0.0 +23742,66,17,40,0.0 +23742,58,13.25,50,0.0 +23742,47,9.5,25,0.0 +23742,50,16.25,41,0.0 +23742,61,28.5,27,0.0 +23742,11,21,17,0.0 +23742,38,263.5,30,0.0 +23742,19,9.2,23,0.0 +23742,54,7.45,32,0.0 +23742,49,20,33,0.0 +23742,21,10,8,0.0 +23742,52,7,45,0.0 +23742,71,21.5,3,0.0 +23742,30,25.89,35,0.0 +23742,53,32.8,22,0.0 +23742,72,34.8,1,0.0 +23742,57,19.5,6,0.0 +23743,4,22,12,0.0 +23743,75,7.75,5,0.0 +23743,71,21.5,40,0.0 +23743,66,17,29,0.0 +23743,51,53,9,0.0 +23743,11,21,26,0.0 +23743,57,19.5,47,0.0 +23743,33,2.5,32,0.0 +23743,74,10,17,0.0 +23743,18,62.5,30,0.0 +23743,24,4.5,47,0.0 +23743,35,18,22,0.0 +23743,21,10,7,0.0 +23743,10,31,11,0.0 +23743,46,12,18,0.0 +23743,32,32,28,0.0 +23743,55,24,11,0.0 +23743,16,17.45,27,0.0 +23743,49,20,36,0.0 +23743,40,18.4,39,0.0 +23743,39,18,16,0.0 +23743,50,16.25,37,0.0 +23743,59,55,17,0.0 +23743,34,14,17,0.0 +23744,66,17,11,0.0 +23744,75,7.75,17,0.0 +23744,15,15.5,43,0.0 +23744,32,32,6,0.0 +23744,11,21,6,0.0 +23744,51,53,5,0.0 +23744,8,40,6,0.0 +23744,20,81,1,0.0 +23744,23,9,38,0.0 +23744,5,21.35,1,0.0 +23744,57,19.5,20,0.0 +23744,74,10,45,0.0 +23744,7,30,3,0.0 +23744,48,12.75,8,0.0 +23744,21,10,25,0.0 +23744,36,19,28,0.0 +23744,56,38,50,0.0 +23744,54,7.45,47,0.0 +23744,12,38,43,0.0 +23744,68,12.5,41,0.0 +23744,18,62.5,2,0.0 +23744,59,55,36,0.0 +23744,49,20,16,0.0 +23744,67,14,16,0.0 +23744,39,18,7,0.0 +23744,29,123.79,22,0.0 +23744,61,28.5,27,0.0 +23744,35,18,9,0.0 +23744,22,21,25,0.0 +23744,26,31.23,20,0.0 +23744,62,49.3,26,0.0 +23744,3,10,23,0.0 +23744,14,23.25,13,0.0 +23744,55,24,16,0.0 +23744,47,9.5,16,0.0 +23744,10,31,24,0.0 +23744,77,13,13,0.0 +23744,46,12,8,0.0 +23744,65,21.05,1,0.0 +23744,53,32.8,22,0.0 +23744,27,43.9,15,0.0 +23744,16,17.45,30,0.0 +23744,19,9.2,40,0.0 +23744,30,25.89,21,0.0 +23744,2,19,45,0.0 +23744,71,21.5,50,0.0 +23744,17,39,32,0.0 +23744,70,15,7,0.0 +23744,52,7,41,0.0 +23744,43,46,38,0.0 +23744,37,26,6,0.0 +23744,9,97,4,0.0 +23744,72,34.8,38,0.0 +23744,38,263.5,19,0.0 +23744,69,36,1,0.0 +23744,50,16.25,14,0.0 +23744,41,9.65,11,0.0 +23745,7,30,21,0.0 +23745,67,14,35,0.0 +23745,9,97,2,0.0 +23745,50,16.25,14,0.0 +23745,75,7.75,45,0.0 +23745,49,20,19,0.0 +23745,71,21.5,3,0.0 +23745,43,46,16,0.0 +23745,64,33.25,25,0.0 +23745,46,12,8,0.0 +23745,17,39,5,0.0 +23745,22,21,37,0.0 +23745,5,21.35,30,0.0 +23745,30,25.89,47,0.0 +23745,35,18,28,0.0 +23745,36,19,47,0.0 +23745,44,19.45,26,0.0 +23745,21,10,20,0.0 +23745,27,43.9,23,0.0 +23745,57,19.5,21,0.0 +23745,13,6,5,0.0 +23745,51,53,50,0.0 +23745,16,17.45,8,0.0 +23745,28,45.6,31,0.0 +23745,4,22,22,0.0 +23745,70,15,50,0.0 +23745,60,34,38,0.0 +23745,69,36,24,0.0 +23745,34,14,18,0.0 +23745,62,49.3,12,0.0 +23745,33,2.5,26,0.0 +23745,53,32.8,19,0.0 +23745,6,25,42,0.0 +23745,26,31.23,45,0.0 +23745,40,18.4,18,0.0 +23745,59,55,45,0.0 +23745,14,23.25,40,0.0 +23745,65,21.05,32,0.0 +23745,55,24,30,0.0 +23745,72,34.8,13,0.0 +23745,39,18,47,0.0 +23745,23,9,5,0.0 +23745,73,15,19,0.0 +23745,37,26,22,0.0 +23745,1,18,48,0.0 +23745,52,7,9,0.0 +23745,20,81,13,0.0 +23745,8,40,26,0.0 +23745,47,9.5,36,0.0 +23745,24,4.5,44,0.0 +23745,15,15.5,6,0.0 +23745,74,10,3,0.0 +23745,3,10,3,0.0 +23745,10,31,36,0.0 +23745,77,13,43,0.0 +23745,25,14,33,0.0 +23745,38,263.5,48,0.0 +23745,66,17,41,0.0 +23745,12,38,36,0.0 +23745,56,38,17,0.0 +23745,54,7.45,47,0.0 +23745,2,19,36,0.0 +23745,68,12.5,6,0.0 +23745,31,12.5,3,0.0 +23745,41,9.65,7,0.0 +23745,32,32,22,0.0 +23745,42,14,25,0.0 +23745,61,28.5,12,0.0 +23745,11,21,47,0.0 +23745,58,13.25,42,0.0 +23745,19,9.2,22,0.0 +23745,63,43.9,28,0.0 +23745,29,123.79,6,0.0 +23745,76,18,21,0.0 +23745,18,62.5,3,0.0 +23746,64,33.25,49,0.0 +23746,22,21,1,0.0 +23746,60,34,34,0.0 +23746,10,31,2,0.0 +23746,36,19,47,0.0 +23746,67,14,37,0.0 +23746,28,45.6,32,0.0 +23746,71,21.5,6,0.0 +23746,23,9,27,0.0 +23746,8,40,20,0.0 +23746,55,24,6,0.0 +23746,73,15,39,0.0 +23746,50,16.25,17,0.0 +23746,43,46,3,0.0 +23746,1,18,15,0.0 +23746,35,18,29,0.0 +23746,11,21,43,0.0 +23746,32,32,28,0.0 +23746,39,18,7,0.0 +23746,63,43.9,4,0.0 +23746,25,14,16,0.0 +23746,49,20,33,0.0 +23746,45,9.5,14,0.0 +23746,77,13,4,0.0 +23746,76,18,38,0.0 +23746,69,36,2,0.0 +23746,12,38,15,0.0 +23746,66,17,25,0.0 +23746,24,4.5,11,0.0 +23746,30,25.89,38,0.0 +23746,68,12.5,27,0.0 +23746,16,17.45,34,0.0 +23746,62,49.3,34,0.0 +23746,75,7.75,40,0.0 +23746,33,2.5,47,0.0 +23746,7,30,47,0.0 +23746,54,7.45,41,0.0 +23746,72,34.8,19,0.0 +23746,26,31.23,50,0.0 +23746,20,81,38,0.0 +23746,59,55,9,0.0 +23746,4,22,8,0.0 +23746,57,19.5,38,0.0 +23746,38,263.5,20,0.0 +23746,65,21.05,16,0.0 +23746,17,39,30,0.0 +23746,19,9.2,11,0.0 +23746,34,14,49,0.0 +23746,9,97,18,0.0 +23746,14,23.25,10,0.0 +23746,40,18.4,45,0.0 +23746,48,12.75,9,0.0 +23746,15,15.5,40,0.0 +23746,5,21.35,20,0.0 +23746,53,32.8,14,0.0 +23746,52,7,20,0.0 +23746,27,43.9,7,0.0 +23746,51,53,45,0.0 +23746,37,26,32,0.0 +23746,56,38,18,0.0 +23746,70,15,7,0.0 +23746,18,62.5,35,0.0 +23746,58,13.25,44,0.0 +23746,42,14,6,0.0 +23746,21,10,8,0.0 +23746,41,9.65,47,0.0 +23746,74,10,41,0.0 +23746,2,19,35,0.0 +23746,3,10,25,0.0 +23746,13,6,15,0.0 +23746,61,28.5,50,0.0 +23746,31,12.5,24,0.0 +23746,44,19.45,15,0.0 +23747,21,10,8,0.0 +23747,48,12.75,3,0.0 +23747,68,12.5,11,0.0 +23747,22,21,45,0.0 +23747,66,17,34,0.0 +23747,44,19.45,41,0.0 +23747,41,9.65,1,0.0 +23747,19,9.2,40,0.0 +23747,63,43.9,46,0.0 +23747,59,55,18,0.0 +23747,7,30,45,0.0 +23747,26,31.23,18,0.0 +23747,51,53,1,0.0 +23747,36,19,16,0.0 +23747,28,45.6,21,0.0 +23747,39,18,12,0.0 +23747,20,81,1,0.0 +23747,54,7.45,27,0.0 +23747,65,21.05,40,0.0 +23747,72,34.8,46,0.0 +23747,2,19,23,0.0 +23747,56,38,2,0.0 +23747,62,49.3,25,0.0 +23747,76,18,37,0.0 +23747,50,16.25,4,0.0 +23747,14,23.25,9,0.0 +23747,8,40,6,0.0 +23747,27,43.9,32,0.0 +23747,15,15.5,30,0.0 +23747,1,18,15,0.0 +23747,17,39,26,0.0 +23747,38,263.5,45,0.0 +23747,18,62.5,16,0.0 +23747,49,20,26,0.0 +23747,58,13.25,29,0.0 +23747,43,46,22,0.0 +23747,16,17.45,24,0.0 +23747,71,21.5,48,0.0 +23747,10,31,49,0.0 +23747,37,26,35,0.0 +23747,33,2.5,27,0.0 +23747,77,13,37,0.0 +23747,40,18.4,5,0.0 +23747,70,15,34,0.0 +23747,34,14,29,0.0 +23747,12,38,26,0.0 +23747,31,12.5,4,0.0 +23747,74,10,10,0.0 +23747,73,15,21,0.0 +23747,52,7,46,0.0 +23747,53,32.8,9,0.0 +23747,13,6,38,0.0 +23747,24,4.5,27,0.0 +23747,60,34,12,0.0 +23747,6,25,20,0.0 +23747,29,123.79,11,0.0 +23747,45,9.5,26,0.0 +23747,67,14,32,0.0 +23747,32,32,3,0.0 +23747,75,7.75,13,0.0 +23748,56,38,2,0.0 +23748,19,9.2,25,0.0 +23748,15,15.5,28,0.0 +23748,12,38,14,0.0 +23748,71,21.5,39,0.0 +23748,9,97,25,0.0 +23748,13,6,30,0.0 +23748,48,12.75,10,0.0 +23748,52,7,10,0.0 +23748,39,18,3,0.0 +23748,35,18,38,0.0 +23748,36,19,30,0.0 +23748,18,62.5,22,0.0 +23748,20,81,42,0.0 +23748,50,16.25,18,0.0 +23748,6,25,49,0.0 +23748,59,55,2,0.0 +23748,28,45.6,22,0.0 +23748,42,14,10,0.0 +23748,24,4.5,37,0.0 +23748,55,24,16,0.0 +23748,21,10,44,0.0 +23748,34,14,3,0.0 +23748,72,34.8,30,0.0 +23748,70,15,28,0.0 +23748,73,15,8,0.0 +23748,45,9.5,11,0.0 +23748,25,14,7,0.0 +23748,60,34,20,0.0 +23748,51,53,27,0.0 +23748,27,43.9,22,0.0 +23748,31,12.5,9,0.0 +23748,43,46,48,0.0 +23749,71,21.5,48,0.0 +23749,24,4.5,47,0.0 +23749,74,10,4,0.0 +23749,17,39,38,0.0 +23749,46,12,17,0.0 +23749,8,40,12,0.0 +23749,32,32,41,0.0 +23749,64,33.25,5,0.0 +23749,66,17,29,0.0 +23749,43,46,34,0.0 +23749,15,15.5,2,0.0 +23749,27,43.9,23,0.0 +23749,41,9.65,20,0.0 +23749,7,30,36,0.0 +23749,30,25.89,35,0.0 +23749,22,21,9,0.0 +23749,20,81,9,0.0 +23749,77,13,42,0.0 +23749,1,18,7,0.0 +23749,29,123.79,25,0.0 +23749,14,23.25,50,0.0 +23749,44,19.45,42,0.0 +23749,12,38,13,0.0 +23749,31,12.5,27,0.0 +23749,42,14,5,0.0 +23749,3,10,34,0.0 +23749,13,6,12,0.0 +23749,33,2.5,37,0.0 +23749,70,15,1,0.0 +23749,55,24,42,0.0 +23749,34,14,19,0.0 +23749,68,12.5,32,0.0 +23749,73,15,40,0.0 +23749,60,34,45,0.0 +23749,40,18.4,18,0.0 +23749,53,32.8,31,0.0 +23749,39,18,15,0.0 +23749,23,9,22,0.0 +23749,72,34.8,30,0.0 +23749,62,49.3,50,0.0 +23749,47,9.5,27,0.0 +23749,9,97,11,0.0 +23749,19,9.2,22,0.0 +23749,63,43.9,30,0.0 +23749,35,18,42,0.0 +23749,59,55,27,0.0 +23749,50,16.25,5,0.0 +23749,69,36,8,0.0 +23749,2,19,13,0.0 +23749,67,14,35,0.0 +23749,75,7.75,16,0.0 +23749,65,21.05,18,0.0 +23749,51,53,24,0.0 +23749,21,10,37,0.0 +23749,56,38,26,0.0 +23749,28,45.6,24,0.0 +23749,49,20,39,0.0 +23749,45,9.5,16,0.0 +23749,61,28.5,2,0.0 +23749,38,263.5,43,0.0 +23749,76,18,32,0.0 +23749,6,25,37,0.0 +23749,58,13.25,5,0.0 +23749,10,31,21,0.0 +23749,11,21,41,0.0 +23749,36,19,32,0.0 +23750,29,123.79,9,0.0 +23750,39,18,45,0.0 +23750,51,53,18,0.0 +23750,4,22,35,0.0 +23750,24,4.5,19,0.0 +23750,26,31.23,26,0.0 +23750,52,7,10,0.0 +23750,73,15,49,0.0 +23750,8,40,1,0.0 +23750,71,21.5,27,0.0 +23750,30,25.89,22,0.0 +23750,38,263.5,19,0.0 +23750,76,18,20,0.0 +23750,45,9.5,15,0.0 +23750,56,38,9,0.0 +23750,48,12.75,38,0.0 +23750,6,25,5,0.0 +23750,40,18.4,46,0.0 +23750,49,20,47,0.0 +23750,67,14,20,0.0 +23750,27,43.9,27,0.0 +23750,15,15.5,13,0.0 +23750,5,21.35,45,0.0 +23750,50,16.25,23,0.0 +23750,31,12.5,23,0.0 +23750,46,12,5,0.0 +23750,35,18,29,0.0 +23750,43,46,4,0.0 +23750,54,7.45,41,0.0 +23750,42,14,41,0.0 +23750,41,9.65,37,0.0 +23750,63,43.9,38,0.0 +23750,22,21,39,0.0 +23750,74,10,8,0.0 +23750,69,36,46,0.0 +23750,16,17.45,2,0.0 +23750,25,14,44,0.0 +23750,75,7.75,12,0.0 +23750,7,30,6,0.0 +23750,47,9.5,32,0.0 +23750,14,23.25,20,0.0 +23750,77,13,2,0.0 +23750,33,2.5,31,0.0 +23750,68,12.5,41,0.0 +23750,10,31,47,0.0 +23750,55,24,35,0.0 +23750,23,9,6,0.0 +23750,34,14,28,0.0 +23750,18,62.5,38,0.0 +23750,20,81,8,0.0 +23750,1,18,41,0.0 +23750,21,10,47,0.0 +23750,3,10,41,0.0 +23750,9,97,40,0.0 +23750,2,19,7,0.0 +23750,61,28.5,27,0.0 +23750,58,13.25,46,0.0 +23750,72,34.8,44,0.0 +23750,28,45.6,2,0.0 +23750,60,34,33,0.0 +23750,70,15,14,0.0 +23750,13,6,19,0.0 +23750,66,17,15,0.0 +23750,32,32,17,0.0 +23750,64,33.25,46,0.0 +23750,11,21,8,0.0 +23751,66,17,19,0.0 +23751,26,31.23,13,0.0 +23751,62,49.3,28,0.0 +23751,76,18,34,0.0 +23751,24,4.5,24,0.0 +23751,65,21.05,45,0.0 +23751,12,38,11,0.0 +23751,46,12,13,0.0 +23751,31,12.5,7,0.0 +23751,54,7.45,7,0.0 +23751,63,43.9,43,0.0 +23751,14,23.25,17,0.0 +23751,61,28.5,3,0.0 +23751,50,16.25,15,0.0 +23751,6,25,5,0.0 +23751,27,43.9,45,0.0 +23751,8,40,5,0.0 +23751,34,14,50,0.0 +23751,56,38,10,0.0 +23751,16,17.45,34,0.0 +23751,5,21.35,39,0.0 +23751,1,18,13,0.0 +23751,74,10,34,0.0 +23751,9,97,34,0.0 +23751,75,7.75,16,0.0 +23751,64,33.25,38,0.0 +23751,10,31,20,0.0 +23751,69,36,11,0.0 +23751,40,18.4,5,0.0 +23751,36,19,26,0.0 +23751,2,19,19,0.0 +23751,22,21,47,0.0 +23751,19,9.2,26,0.0 +23751,72,34.8,21,0.0 +23751,45,9.5,20,0.0 +23751,68,12.5,16,0.0 +23751,43,46,47,0.0 +23751,70,15,17,0.0 +23751,15,15.5,50,0.0 +23751,20,81,30,0.0 +23752,23,9,2,0.0 +23752,47,9.5,26,0.0 +23752,2,19,26,0.0 +23752,24,4.5,1,0.0 +23752,5,21.35,10,0.0 +23752,58,13.25,27,0.0 +23752,30,25.89,14,0.0 +23752,70,15,3,0.0 +23752,16,17.45,35,0.0 +23752,61,28.5,12,0.0 +23752,49,20,48,0.0 +23752,60,34,29,0.0 +23752,56,38,8,0.0 +23752,27,43.9,16,0.0 +23752,42,14,11,0.0 +23752,53,32.8,11,0.0 +23752,9,97,8,0.0 +23752,71,21.5,18,0.0 +23752,38,263.5,40,0.0 +23752,44,19.45,27,0.0 +23752,77,13,36,0.0 +23752,57,19.5,37,0.0 +23752,12,38,17,0.0 +23752,11,21,25,0.0 +23752,28,45.6,8,0.0 +23752,26,31.23,2,0.0 +23752,1,18,40,0.0 +23752,6,25,40,0.0 +23752,76,18,36,0.0 +23752,69,36,20,0.0 +23752,20,81,3,0.0 +23752,13,6,9,0.0 +23752,7,30,41,0.0 +23752,39,18,49,0.0 +23752,46,12,4,0.0 +23752,68,12.5,34,0.0 +23752,75,7.75,42,0.0 +23752,10,31,14,0.0 +23752,22,21,28,0.0 +23752,31,12.5,35,0.0 +23752,62,49.3,34,0.0 +23752,55,24,1,0.0 +23752,36,19,26,0.0 +23752,33,2.5,27,0.0 +23752,21,10,30,0.0 +23752,50,16.25,15,0.0 +23752,43,46,32,0.0 +23752,41,9.65,17,0.0 +23752,66,17,1,0.0 +23752,63,43.9,12,0.0 +23752,37,26,4,0.0 +23752,65,21.05,4,0.0 +23752,34,14,7,0.0 +23753,19,9.2,25,0.0 +23753,4,22,48,0.0 +23753,34,14,6,0.0 +23753,1,18,24,0.0 +23753,68,12.5,35,0.0 +23753,48,12.75,43,0.0 +23753,49,20,47,0.0 +23753,21,10,45,0.0 +23753,24,4.5,42,0.0 +23753,46,12,16,0.0 +23753,13,6,19,0.0 +23753,32,32,40,0.0 +23753,59,55,19,0.0 +23753,39,18,25,0.0 +23753,3,10,13,0.0 +23753,5,21.35,35,0.0 +23753,73,15,12,0.0 +23753,72,34.8,24,0.0 +23753,26,31.23,31,0.0 +23753,27,43.9,13,0.0 +23753,50,16.25,44,0.0 +23753,11,21,24,0.0 +23753,57,19.5,50,0.0 +23754,28,45.6,41,0.0 +23754,63,43.9,38,0.0 +23754,27,43.9,31,0.0 +23754,24,4.5,46,0.0 +23755,9,97,48,0.0 +23755,38,263.5,25,0.0 +23755,69,36,14,0.0 +23755,37,26,30,0.0 +23755,24,4.5,33,0.0 +23755,32,32,40,0.0 +23755,66,17,15,0.0 +23755,55,24,22,0.0 +23755,34,14,48,0.0 +23755,68,12.5,8,0.0 +23755,18,62.5,12,0.0 +23755,23,9,19,0.0 +23755,44,19.45,45,0.0 +23755,58,13.25,13,0.0 +23755,60,34,47,0.0 +23755,56,38,13,0.0 +23755,76,18,26,0.0 +23755,51,53,22,0.0 +23755,62,49.3,48,0.0 +23755,57,19.5,24,0.0 +23755,3,10,11,0.0 +23755,71,21.5,33,0.0 +23755,59,55,50,0.0 +23755,47,9.5,38,0.0 +23755,17,39,49,0.0 +23756,65,21.05,32,0.0 +23756,17,39,13,0.0 +23756,23,9,47,0.0 +23756,20,81,21,0.0 +23756,28,45.6,50,0.0 +23756,33,2.5,11,0.0 +23756,37,26,48,0.0 +23756,53,32.8,48,0.0 +23756,21,10,12,0.0 +23756,16,17.45,4,0.0 +23756,59,55,25,0.0 +23756,8,40,32,0.0 +23756,55,24,9,0.0 +23756,41,9.65,44,0.0 +23756,32,32,47,0.0 +23756,77,13,49,0.0 +23756,36,19,25,0.0 +23756,11,21,1,0.0 +23756,7,30,47,0.0 +23756,14,23.25,30,0.0 +23756,18,62.5,21,0.0 +23756,57,19.5,20,0.0 +23756,67,14,29,0.0 +23756,47,9.5,18,0.0 +23756,61,28.5,31,0.0 +23756,10,31,41,0.0 +23756,64,33.25,28,0.0 +23756,25,14,14,0.0 +23756,6,25,4,0.0 +23756,70,15,20,0.0 +23756,5,21.35,16,0.0 +23756,52,7,13,0.0 +23756,71,21.5,14,0.0 +23756,48,12.75,43,0.0 +23756,43,46,31,0.0 +23756,73,15,40,0.0 +23756,63,43.9,4,0.0 +23756,27,43.9,30,0.0 +23756,3,10,15,0.0 +23757,61,28.5,38,0.0 +23757,43,46,22,0.0 +23757,4,22,34,0.0 +23757,45,9.5,28,0.0 +23757,27,43.9,41,0.0 +23757,26,31.23,42,0.0 +23757,62,49.3,40,0.0 +23757,12,38,18,0.0 +23757,28,45.6,25,0.0 +23757,11,21,8,0.0 +23757,22,21,2,0.0 +23757,75,7.75,10,0.0 +23757,38,263.5,48,0.0 +23757,39,18,1,0.0 +23757,44,19.45,1,0.0 +23757,19,9.2,33,0.0 +23757,66,17,40,0.0 +23757,53,32.8,46,0.0 +23757,63,43.9,17,0.0 +23757,77,13,39,0.0 +23757,56,38,10,0.0 +23757,35,18,42,0.0 +23757,70,15,13,0.0 +23757,31,12.5,18,0.0 +23757,54,7.45,2,0.0 +23757,25,14,18,0.0 +23757,37,26,1,0.0 +23757,67,14,32,0.0 +23757,6,25,24,0.0 +23757,1,18,8,0.0 +23757,48,12.75,3,0.0 +23757,32,32,41,0.0 +23757,46,12,6,0.0 +23757,71,21.5,18,0.0 +23757,49,20,41,0.0 +23757,74,10,7,0.0 +23757,69,36,14,0.0 +23757,14,23.25,22,0.0 +23757,40,18.4,40,0.0 +23757,17,39,49,0.0 +23757,65,21.05,31,0.0 +23757,60,34,44,0.0 +23757,29,123.79,2,0.0 +23757,33,2.5,15,0.0 +23758,73,15,26,0.0 +23758,40,18.4,11,0.0 +23758,39,18,18,0.0 +23758,25,14,3,0.0 +23758,14,23.25,49,0.0 +23758,19,9.2,24,0.0 +23758,44,19.45,26,0.0 +23758,49,20,8,0.0 +23758,64,33.25,8,0.0 +23758,70,15,29,0.0 +23758,3,10,39,0.0 +23758,9,97,24,0.0 +23758,72,34.8,43,0.0 +23758,38,263.5,21,0.0 +23758,76,18,42,0.0 +23758,12,38,48,0.0 +23758,61,28.5,26,0.0 +23758,24,4.5,45,0.0 +23758,28,45.6,14,0.0 +23758,23,9,8,0.0 +23758,53,32.8,32,0.0 +23758,69,36,35,0.0 +23758,45,9.5,46,0.0 +23758,13,6,4,0.0 +23758,8,40,31,0.0 +23758,41,9.65,42,0.0 +23758,50,16.25,14,0.0 +23758,54,7.45,26,0.0 +23758,31,12.5,43,0.0 +23758,15,15.5,5,0.0 +23758,7,30,23,0.0 +23758,52,7,25,0.0 +23758,20,81,14,0.0 +23758,16,17.45,26,0.0 +23758,77,13,44,0.0 +23758,56,38,33,0.0 +23758,63,43.9,49,0.0 +23758,10,31,24,0.0 +23758,62,49.3,4,0.0 +23758,4,22,44,0.0 +23758,65,21.05,7,0.0 +23758,71,21.5,2,0.0 +23758,37,26,40,0.0 +23758,48,12.75,34,0.0 +23758,60,34,10,0.0 +23758,34,14,40,0.0 +23758,26,31.23,3,0.0 +23758,36,19,28,0.0 +23758,6,25,41,0.0 +23758,17,39,32,0.0 +23758,74,10,11,0.0 +23758,27,43.9,10,0.0 +23758,58,13.25,20,0.0 +23758,30,25.89,42,0.0 +23758,2,19,31,0.0 +23758,43,46,35,0.0 +23758,46,12,29,0.0 +23758,11,21,7,0.0 +23758,1,18,16,0.0 +23758,47,9.5,30,0.0 +23758,33,2.5,2,0.0 +23758,51,53,35,0.0 +23758,59,55,18,0.0 +23758,67,14,14,0.0 +23758,32,32,50,0.0 +23758,29,123.79,21,0.0 +23758,5,21.35,21,0.0 +23758,57,19.5,10,0.0 +23759,16,17.45,42,0.0 +23759,12,38,37,0.0 +23759,55,24,49,0.0 +23759,69,36,38,0.0 +23759,51,53,23,0.0 +23759,10,31,22,0.0 +23759,14,23.25,18,0.0 +23759,27,43.9,48,0.0 +23759,38,263.5,2,0.0 +23759,52,7,36,0.0 +23759,41,9.65,38,0.0 +23759,35,18,38,0.0 +23759,22,21,29,0.0 +23759,6,25,47,0.0 +23759,72,34.8,46,0.0 +23759,4,22,47,0.0 +23759,18,62.5,22,0.0 +23759,49,20,29,0.0 +23759,28,45.6,18,0.0 +23759,43,46,38,0.0 +23760,43,46,14,0.0 +23760,29,123.79,15,0.0 +23760,36,19,10,0.0 +23760,11,21,35,0.0 +23760,45,9.5,23,0.0 +23760,54,7.45,27,0.0 +23760,76,18,24,0.0 +23760,28,45.6,10,0.0 +23760,62,49.3,9,0.0 +23761,48,12.75,46,0.0 +23761,44,19.45,36,0.0 +23761,50,16.25,6,0.0 +23762,52,7,44,0.0 +23762,28,45.6,11,0.0 +23762,51,53,30,0.0 +23762,50,16.25,6,0.0 +23762,38,263.5,18,0.0 +23762,43,46,16,0.0 +23762,53,32.8,27,0.0 +23762,62,49.3,23,0.0 +23762,15,15.5,35,0.0 +23762,14,23.25,16,0.0 +23762,73,15,24,0.0 +23762,67,14,29,0.0 +23762,75,7.75,14,0.0 +23762,65,21.05,11,0.0 +23762,63,43.9,4,0.0 +23762,27,43.9,26,0.0 +23762,55,24,15,0.0 +23762,34,14,13,0.0 +23762,24,4.5,43,0.0 +23762,66,17,41,0.0 +23762,25,14,24,0.0 +23762,12,38,24,0.0 +23762,60,34,5,0.0 +23762,13,6,35,0.0 +23762,77,13,3,0.0 +23763,52,7,34,0.0 +23763,3,10,38,0.0 +23763,18,62.5,25,0.0 +23763,49,20,42,0.0 +23763,45,9.5,11,0.0 +23763,54,7.45,28,0.0 +23763,72,34.8,44,0.0 +23763,48,12.75,21,0.0 +23763,70,15,32,0.0 +23763,24,4.5,20,0.0 +23763,28,45.6,38,0.0 +23763,32,32,49,0.0 +23763,34,14,5,0.0 +23763,76,18,11,0.0 +23763,41,9.65,13,0.0 +23763,25,14,12,0.0 +23763,58,13.25,32,0.0 +23763,50,16.25,1,0.0 +23763,63,43.9,23,0.0 +23763,11,21,28,0.0 +23763,36,19,24,0.0 +23763,16,17.45,12,0.0 +23763,39,18,3,0.0 +23763,29,123.79,14,0.0 +23763,27,43.9,23,0.0 +23763,74,10,26,0.0 +23763,1,18,13,0.0 +23763,33,2.5,16,0.0 +23763,17,39,40,0.0 +23763,7,30,15,0.0 +23763,2,19,16,0.0 +23763,64,33.25,8,0.0 +23763,62,49.3,14,0.0 +23763,65,21.05,44,0.0 +23763,77,13,33,0.0 +23763,31,12.5,8,0.0 +23763,12,38,5,0.0 +23763,9,97,49,0.0 +23763,66,17,2,0.0 +23763,42,14,45,0.0 +23763,5,21.35,16,0.0 +23763,10,31,47,0.0 +23763,14,23.25,33,0.0 +23763,51,53,35,0.0 +23763,15,15.5,11,0.0 +23763,37,26,41,0.0 +23763,19,9.2,47,0.0 +23763,71,21.5,45,0.0 +23763,57,19.5,12,0.0 +23763,59,55,4,0.0 +23763,68,12.5,34,0.0 +23763,4,22,42,0.0 +23763,46,12,15,0.0 +23763,44,19.45,2,0.0 +23763,67,14,7,0.0 +23763,38,263.5,47,0.0 +23763,56,38,31,0.0 +23763,73,15,10,0.0 +23763,23,9,9,0.0 +23763,53,32.8,23,0.0 +23763,22,21,10,0.0 +23763,13,6,33,0.0 +23763,61,28.5,32,0.0 +23763,20,81,48,0.0 +23763,26,31.23,28,0.0 +23764,49,20,9,0.0 +23764,30,25.89,28,0.0 +23764,36,19,4,0.0 +23764,75,7.75,26,0.0 +23764,23,9,36,0.0 +23764,76,18,24,0.0 +23764,20,81,30,0.0 +23764,51,53,11,0.0 +23764,27,43.9,31,0.0 +23764,14,23.25,50,0.0 +23764,8,40,27,0.0 +23764,12,38,37,0.0 +23764,2,19,29,0.0 +23764,21,10,15,0.0 +23764,48,12.75,32,0.0 +23764,9,97,23,0.0 +23764,56,38,34,0.0 +23764,28,45.6,41,0.0 +23764,73,15,30,0.0 +23764,70,15,48,0.0 +23764,25,14,37,0.0 +23764,38,263.5,19,0.0 +23764,37,26,39,0.0 +23764,58,13.25,17,0.0 +23764,13,6,17,0.0 +23764,54,7.45,47,0.0 +23764,66,17,38,0.0 +23764,1,18,17,0.0 +23765,67,14,14,0.0 +23765,65,21.05,20,0.0 +23765,10,31,8,0.0 +23765,21,10,18,0.0 +23765,16,17.45,20,0.0 +23765,57,19.5,20,0.0 +23765,15,15.5,34,0.0 +23765,38,263.5,28,0.0 +23765,26,31.23,23,0.0 +23765,27,43.9,10,0.0 +23765,39,18,27,0.0 +23765,6,25,1,0.0 +23765,46,12,48,0.0 +23765,17,39,6,0.0 +23765,23,9,48,0.0 +23765,76,18,29,0.0 +23765,1,18,31,0.0 +23765,66,17,35,0.0 +23765,43,46,30,0.0 +23765,42,14,13,0.0 +23765,54,7.45,32,0.0 +23765,9,97,26,0.0 +23765,7,30,40,0.0 +23765,50,16.25,3,0.0 +23765,34,14,17,0.0 +23765,51,53,28,0.0 +23765,5,21.35,30,0.0 +23765,55,24,6,0.0 +23765,53,32.8,2,0.0 +23765,47,9.5,3,0.0 +23765,75,7.75,15,0.0 +23765,48,12.75,48,0.0 +23765,60,34,31,0.0 +23765,49,20,37,0.0 +23765,56,38,48,0.0 +23766,53,32.8,45,0.0 +23766,12,38,43,0.0 +23766,72,34.8,42,0.0 +23766,64,33.25,48,0.0 +23766,4,22,36,0.0 +23766,40,18.4,27,0.0 +23766,61,28.5,24,0.0 +23766,77,13,47,0.0 +23766,62,49.3,14,0.0 +23766,46,12,33,0.0 +23766,27,43.9,23,0.0 +23766,28,45.6,45,0.0 +23766,51,53,50,0.0 +23766,8,40,15,0.0 +23766,33,2.5,5,0.0 +23766,16,17.45,33,0.0 +23766,68,12.5,44,0.0 +23766,76,18,34,0.0 +23766,15,15.5,15,0.0 +23766,54,7.45,48,0.0 +23766,19,9.2,6,0.0 +23766,66,17,18,0.0 +23766,73,15,48,0.0 +23766,13,6,41,0.0 +23766,6,25,33,0.0 +23766,71,21.5,32,0.0 +23766,30,25.89,31,0.0 +23766,31,12.5,47,0.0 +23766,24,4.5,36,0.0 +23766,75,7.75,35,0.0 +23766,42,14,38,0.0 +23766,22,21,24,0.0 +23766,20,81,3,0.0 +23766,49,20,25,0.0 +23766,48,12.75,14,0.0 +23766,45,9.5,17,0.0 +23766,14,23.25,6,0.0 +23766,52,7,26,0.0 +23766,34,14,42,0.0 +23766,25,14,49,0.0 +23766,3,10,25,0.0 +23766,50,16.25,36,0.0 +23766,60,34,4,0.0 +23766,36,19,25,0.0 +23766,39,18,13,0.0 +23766,41,9.65,2,0.0 +23766,43,46,28,0.0 +23766,26,31.23,36,0.0 +23766,21,10,9,0.0 +23766,38,263.5,7,0.0 +23766,44,19.45,49,0.0 +23766,55,24,37,0.0 +23766,17,39,22,0.0 +23766,65,21.05,41,0.0 +23766,2,19,5,0.0 +23766,67,14,30,0.0 +23766,29,123.79,2,0.0 +23766,58,13.25,2,0.0 +23766,47,9.5,47,0.0 +23766,32,32,50,0.0 +23766,56,38,44,0.0 +23766,35,18,29,0.0 +23766,57,19.5,41,0.0 +23766,7,30,49,0.0 +23766,11,21,40,0.0 +23766,63,43.9,24,0.0 +23766,18,62.5,4,0.0 +23766,1,18,36,0.0 +23766,5,21.35,42,0.0 +23766,23,9,21,0.0 +23766,59,55,36,0.0 +23766,37,26,46,0.0 +23766,9,97,35,0.0 +23767,62,49.3,9,0.0 +23767,65,21.05,48,0.0 +23767,19,9.2,48,0.0 +23767,2,19,50,0.0 +23767,49,20,25,0.0 +23767,17,39,35,0.0 +23767,61,28.5,20,0.0 +23767,12,38,37,0.0 +23767,71,21.5,38,0.0 +23767,38,263.5,18,0.0 +23767,31,12.5,28,0.0 +23767,36,19,30,0.0 +23767,48,12.75,33,0.0 +23767,37,26,47,0.0 +23767,34,14,5,0.0 +23767,24,4.5,2,0.0 +23767,74,10,27,0.0 +23767,44,19.45,13,0.0 +23767,1,18,48,0.0 +23767,25,14,34,0.0 +23767,18,62.5,42,0.0 +23767,70,15,5,0.0 +23767,13,6,33,0.0 +23767,72,34.8,26,0.0 +23767,30,25.89,36,0.0 +23767,42,14,45,0.0 +23767,52,7,30,0.0 +23767,10,31,16,0.0 +23767,45,9.5,27,0.0 +23767,41,9.65,28,0.0 +23767,14,23.25,19,0.0 +23767,67,14,48,0.0 +23767,7,30,7,0.0 +23767,54,7.45,32,0.0 +23767,16,17.45,14,0.0 +23767,53,32.8,5,0.0 +23768,55,24,41,0.0 +23768,76,18,42,0.0 +23768,14,23.25,49,0.0 +23768,73,15,38,0.0 +23768,60,34,45,0.0 +23768,9,97,13,0.0 +23768,12,38,20,0.0 +23768,66,17,1,0.0 +23768,11,21,16,0.0 +23768,51,53,4,0.0 +23768,8,40,12,0.0 +23768,31,12.5,27,0.0 +23768,54,7.45,45,0.0 +23768,40,18.4,31,0.0 +23768,69,36,17,0.0 +23768,25,14,19,0.0 +23768,35,18,8,0.0 +23768,65,21.05,3,0.0 +23768,48,12.75,49,0.0 +23768,58,13.25,50,0.0 +23768,7,30,18,0.0 +23768,26,31.23,31,0.0 +23769,58,13.25,38,0.0 +23769,77,13,48,0.0 +23769,69,36,34,0.0 +23769,9,97,40,0.0 +23770,75,7.75,46,0.0 +23770,70,15,38,0.0 +23770,42,14,50,0.0 +23770,52,7,34,0.0 +23770,74,10,30,0.0 +23770,66,17,17,0.0 +23770,19,9.2,47,0.0 +23770,16,17.45,8,0.0 +23770,61,28.5,37,0.0 +23770,59,55,40,0.0 +23770,69,36,5,0.0 +23770,39,18,31,0.0 +23770,68,12.5,6,0.0 +23770,41,9.65,49,0.0 +23770,10,31,32,0.0 +23770,11,21,15,0.0 +23770,35,18,1,0.0 +23770,65,21.05,8,0.0 +23770,56,38,11,0.0 +23770,38,263.5,12,0.0 +23770,14,23.25,5,0.0 +23770,54,7.45,41,0.0 +23770,2,19,8,0.0 +23770,21,10,32,0.0 +23770,71,21.5,27,0.0 +23770,51,53,39,0.0 +23770,18,62.5,49,0.0 +23770,1,18,41,0.0 +23770,58,13.25,24,0.0 +23770,76,18,13,0.0 +23770,72,34.8,23,0.0 +23770,8,40,48,0.0 +23770,36,19,46,0.0 +23770,55,24,44,0.0 +23770,37,26,14,0.0 +23770,24,4.5,6,0.0 +23770,33,2.5,34,0.0 +23770,67,14,26,0.0 +23770,5,21.35,28,0.0 +23770,57,19.5,16,0.0 +23770,62,49.3,38,0.0 +23770,15,15.5,40,0.0 +23770,63,43.9,42,0.0 +23770,34,14,18,0.0 +23770,20,81,50,0.0 +23770,47,9.5,7,0.0 +23770,6,25,31,0.0 +23770,23,9,48,0.0 +23770,53,32.8,43,0.0 +23770,32,32,14,0.0 +23770,45,9.5,17,0.0 +23770,49,20,11,0.0 +23770,29,123.79,1,0.0 +23770,73,15,20,0.0 +23770,30,25.89,45,0.0 +23770,28,45.6,49,0.0 +23770,60,34,34,0.0 +23770,13,6,40,0.0 +23770,44,19.45,2,0.0 +23770,46,12,11,0.0 +23770,4,22,8,0.0 +23770,50,16.25,7,0.0 +23770,48,12.75,5,0.0 +23770,27,43.9,1,0.0 +23771,70,15,42,0.0 +23771,44,19.45,16,0.0 +23771,23,9,38,0.0 +23771,5,21.35,5,0.0 +23771,74,10,43,0.0 +23771,67,14,35,0.0 +23771,15,15.5,41,0.0 +23771,43,46,31,0.0 +23771,45,9.5,9,0.0 +23771,11,21,18,0.0 +23771,64,33.25,11,0.0 +23771,38,263.5,9,0.0 +23771,19,9.2,1,0.0 +23771,26,31.23,33,0.0 +23771,61,28.5,14,0.0 +23771,29,123.79,27,0.0 +23771,49,20,40,0.0 +23771,75,7.75,35,0.0 +23771,1,18,37,0.0 +23771,65,21.05,47,0.0 +23771,31,12.5,12,0.0 +23771,30,25.89,28,0.0 +23771,56,38,2,0.0 +23771,25,14,20,0.0 +23771,21,10,50,0.0 +23771,28,45.6,37,0.0 +23771,32,32,19,0.0 +23771,46,12,29,0.0 +23771,77,13,37,0.0 +23771,39,18,8,0.0 +23771,36,19,46,0.0 +23771,37,26,13,0.0 +23771,35,18,28,0.0 +23771,59,55,40,0.0 +23771,34,14,37,0.0 +23771,69,36,43,0.0 +23771,73,15,37,0.0 +23771,12,38,40,0.0 +23771,9,97,6,0.0 +23771,54,7.45,7,0.0 +23771,4,22,30,0.0 +23771,14,23.25,25,0.0 +23771,18,62.5,44,0.0 +23771,33,2.5,49,0.0 +23771,16,17.45,49,0.0 +23771,53,32.8,48,0.0 +23771,55,24,42,0.0 +23771,63,43.9,18,0.0 +23771,41,9.65,6,0.0 +23771,47,9.5,8,0.0 +23771,17,39,35,0.0 +23771,22,21,1,0.0 +23771,58,13.25,39,0.0 +23771,20,81,4,0.0 +23771,40,18.4,48,0.0 +23771,68,12.5,18,0.0 +23771,72,34.8,10,0.0 +23771,8,40,31,0.0 +23771,52,7,11,0.0 +23771,66,17,15,0.0 +23771,50,16.25,29,0.0 +23771,48,12.75,11,0.0 +23771,71,21.5,10,0.0 +23771,7,30,4,0.0 +23771,57,19.5,40,0.0 +23771,62,49.3,31,0.0 +23771,27,43.9,3,0.0 +23771,10,31,34,0.0 +23771,6,25,31,0.0 +23771,60,34,29,0.0 +23771,2,19,16,0.0 +23771,24,4.5,23,0.0 +23771,51,53,39,0.0 +23772,35,18,34,0.0 +23772,2,19,16,0.0 +23772,58,13.25,12,0.0 +23772,65,21.05,21,0.0 +23772,11,21,11,0.0 +23772,46,12,5,0.0 +23772,30,25.89,18,0.0 +23772,33,2.5,10,0.0 +23772,67,14,28,0.0 +23772,28,45.6,15,0.0 +23772,20,81,37,0.0 +23772,42,14,41,0.0 +23772,41,9.65,18,0.0 +23772,29,123.79,30,0.0 +23772,59,55,4,0.0 +23772,77,13,21,0.0 +23772,48,12.75,12,0.0 +23772,12,38,12,0.0 +23772,18,62.5,16,0.0 +23772,24,4.5,22,0.0 +23772,53,32.8,47,0.0 +23772,1,18,16,0.0 +23772,50,16.25,38,0.0 +23772,21,10,20,0.0 +23772,13,6,37,0.0 +23772,66,17,8,0.0 +23772,16,17.45,42,0.0 +23772,3,10,22,0.0 +23772,74,10,35,0.0 +23772,76,18,18,0.0 +23772,37,26,32,0.0 +23772,19,9.2,38,0.0 +23772,26,31.23,41,0.0 +23772,62,49.3,49,0.0 +23772,31,12.5,17,0.0 +23772,49,20,47,0.0 +23772,69,36,7,0.0 +23772,73,15,1,0.0 +23772,61,28.5,33,0.0 +23772,54,7.45,28,0.0 +23772,47,9.5,50,0.0 +23772,68,12.5,8,0.0 +23772,43,46,6,0.0 +23772,45,9.5,2,0.0 +23772,71,21.5,18,0.0 +23772,70,15,26,0.0 +23772,6,25,32,0.0 +23772,7,30,36,0.0 +23772,52,7,30,0.0 +23772,75,7.75,25,0.0 +23772,64,33.25,42,0.0 +23772,55,24,9,0.0 +23772,44,19.45,33,0.0 +23772,40,18.4,12,0.0 +23773,53,32.8,39,0.0 +23773,17,39,38,0.0 +23773,16,17.45,39,0.0 +23773,42,14,4,0.0 +23773,38,263.5,19,0.0 +23773,15,15.5,5,0.0 +23773,19,9.2,22,0.0 +23773,28,45.6,44,0.0 +23773,50,16.25,2,0.0 +23773,77,13,47,0.0 +23773,49,20,15,0.0 +23773,69,36,40,0.0 +23773,68,12.5,31,0.0 +23773,40,18.4,11,0.0 +23773,8,40,21,0.0 +23773,66,17,47,0.0 +23773,60,34,31,0.0 +23773,52,7,50,0.0 +23773,22,21,42,0.0 +23773,57,19.5,32,0.0 +23773,51,53,27,0.0 +23773,6,25,29,0.0 +23773,2,19,16,0.0 +23773,11,21,20,0.0 +23773,35,18,2,0.0 +23773,29,123.79,45,0.0 +23773,21,10,16,0.0 +23773,9,97,31,0.0 +23773,71,21.5,13,0.0 +23773,5,21.35,50,0.0 +23773,41,9.65,15,0.0 +23773,13,6,3,0.0 +23773,62,49.3,28,0.0 +23773,63,43.9,3,0.0 +23773,43,46,15,0.0 +23773,37,26,16,0.0 +23773,12,38,2,0.0 +23773,74,10,36,0.0 +23773,46,12,26,0.0 +23773,10,31,2,0.0 +23773,45,9.5,6,0.0 +23773,30,25.89,33,0.0 +23773,27,43.9,21,0.0 +23773,48,12.75,38,0.0 +23773,23,9,37,0.0 +23773,36,19,28,0.0 +23773,24,4.5,7,0.0 +23773,70,15,32,0.0 +23773,44,19.45,38,0.0 +23773,4,22,22,0.0 +23773,64,33.25,9,0.0 +23773,1,18,5,0.0 +23773,3,10,17,0.0 +23773,20,81,34,0.0 +23773,7,30,14,0.0 +23773,59,55,42,0.0 +23773,55,24,26,0.0 +23773,26,31.23,15,0.0 +23773,18,62.5,41,0.0 +23773,76,18,40,0.0 +23773,34,14,18,0.0 +23773,65,21.05,38,0.0 +23773,39,18,40,0.0 +23773,56,38,33,0.0 +23773,32,32,24,0.0 +23773,47,9.5,41,0.0 +23773,75,7.75,38,0.0 +23773,54,7.45,19,0.0 +23773,61,28.5,17,0.0 +23773,31,12.5,47,0.0 +23774,63,43.9,39,0.0 +23774,36,19,1,0.0 +23774,21,10,50,0.0 +23774,39,18,43,0.0 +23774,56,38,7,0.0 +23774,12,38,11,0.0 +23774,67,14,6,0.0 +23774,26,31.23,18,0.0 +23774,52,7,4,0.0 +23774,19,9.2,19,0.0 +23774,18,62.5,14,0.0 +23774,34,14,22,0.0 +23774,57,19.5,24,0.0 +23774,77,13,38,0.0 +23774,74,10,11,0.0 +23774,66,17,46,0.0 +23774,60,34,21,0.0 +23774,68,12.5,39,0.0 +23774,24,4.5,45,0.0 +23774,10,31,5,0.0 +23774,2,19,45,0.0 +23774,53,32.8,47,0.0 +23774,14,23.25,12,0.0 +23774,6,25,18,0.0 +23774,15,15.5,28,0.0 +23774,29,123.79,26,0.0 +23774,50,16.25,6,0.0 +23774,42,14,20,0.0 +23774,23,9,42,0.0 +23774,44,19.45,49,0.0 +23774,51,53,48,0.0 +23774,1,18,2,0.0 +23774,76,18,36,0.0 +23774,43,46,38,0.0 +23774,54,7.45,14,0.0 +23774,22,21,15,0.0 +23774,25,14,36,0.0 +23774,48,12.75,37,0.0 +23774,11,21,47,0.0 +23774,4,22,29,0.0 +23774,13,6,15,0.0 +23774,35,18,45,0.0 +23774,16,17.45,29,0.0 +23774,8,40,7,0.0 +23774,32,32,40,0.0 +23774,5,21.35,31,0.0 +23774,69,36,37,0.0 +23774,59,55,41,0.0 +23774,55,24,33,0.0 +23774,70,15,37,0.0 +23774,33,2.5,21,0.0 +23774,9,97,28,0.0 +23774,47,9.5,3,0.0 +23774,28,45.6,4,0.0 +23774,61,28.5,48,0.0 +23774,49,20,19,0.0 +23774,20,81,48,0.0 +23774,31,12.5,23,0.0 +23774,37,26,8,0.0 +23774,17,39,35,0.0 +23774,71,21.5,30,0.0 +23774,58,13.25,3,0.0 +23774,73,15,13,0.0 +23774,75,7.75,6,0.0 +23774,30,25.89,8,0.0 +23774,7,30,13,0.0 +23775,76,18,4,0.0 +23775,17,39,26,0.0 +23775,25,14,27,0.0 +23775,19,9.2,6,0.0 +23775,72,34.8,49,0.0 +23775,67,14,29,0.0 +23775,2,19,38,0.0 +23775,39,18,13,0.0 +23775,23,9,22,0.0 +23775,56,38,2,0.0 +23775,34,14,10,0.0 +23775,51,53,35,0.0 +23775,4,22,33,0.0 +23775,48,12.75,22,0.0 +23775,29,123.79,47,0.0 +23775,77,13,3,0.0 +23775,61,28.5,44,0.0 +23775,71,21.5,9,0.0 +23775,53,32.8,49,0.0 +23775,66,17,6,0.0 +23775,35,18,6,0.0 +23775,1,18,34,0.0 +23775,74,10,22,0.0 +23775,50,16.25,45,0.0 +23775,36,19,8,0.0 +23775,70,15,42,0.0 +23775,59,55,27,0.0 +23775,22,21,31,0.0 +23775,49,20,45,0.0 +23775,47,9.5,1,0.0 +23775,5,21.35,11,0.0 +23775,18,62.5,1,0.0 +23775,3,10,49,0.0 +23775,14,23.25,23,0.0 +23775,52,7,46,0.0 +23775,32,32,7,0.0 +23775,7,30,50,0.0 +23775,27,43.9,44,0.0 +23775,55,24,28,0.0 +23775,8,40,34,0.0 +23775,45,9.5,25,0.0 +23775,15,15.5,37,0.0 +23775,11,21,20,0.0 +23775,58,13.25,50,0.0 +23775,46,12,5,0.0 +23775,62,49.3,40,0.0 +23775,26,31.23,2,0.0 +23775,65,21.05,21,0.0 +23775,6,25,43,0.0 +23775,9,97,1,0.0 +23775,43,46,36,0.0 +23776,13,6,32,0.0 +23776,12,38,2,0.0 +23776,62,49.3,7,0.0 +23776,20,81,20,0.0 +23776,22,21,50,0.0 +23776,19,9.2,30,0.0 +23776,8,40,3,0.0 +23776,52,7,43,0.0 +23776,51,53,33,0.0 +23776,33,2.5,46,0.0 +23776,69,36,44,0.0 +23776,14,23.25,31,0.0 +23776,34,14,2,0.0 +23776,38,263.5,32,0.0 +23776,72,34.8,26,0.0 +23776,32,32,6,0.0 +23776,64,33.25,10,0.0 +23776,76,18,17,0.0 +23776,3,10,26,0.0 +23776,27,43.9,21,0.0 +23776,35,18,31,0.0 +23776,11,21,50,0.0 +23776,37,26,1,0.0 +23776,74,10,33,0.0 +23776,68,12.5,36,0.0 +23776,21,10,12,0.0 +23776,28,45.6,41,0.0 +23776,7,30,38,0.0 +23776,53,32.8,25,0.0 +23776,9,97,28,0.0 +23776,46,12,2,0.0 +23776,49,20,4,0.0 +23776,70,15,11,0.0 +23776,73,15,45,0.0 +23776,45,9.5,14,0.0 +23776,40,18.4,45,0.0 +23776,66,17,20,0.0 +23776,4,22,22,0.0 +23777,41,9.65,44,0.0 +23777,23,9,35,0.0 +23777,47,9.5,44,0.0 +23777,13,6,26,0.0 +23777,5,21.35,7,0.0 +23777,1,18,37,0.0 +23777,74,10,26,0.0 +23777,22,21,1,0.0 +23777,61,28.5,11,0.0 +23777,4,22,33,0.0 +23777,10,31,39,0.0 +23777,48,12.75,18,0.0 +23777,52,7,50,0.0 +23777,7,30,16,0.0 +23777,40,18.4,11,0.0 +23777,33,2.5,17,0.0 +23777,26,31.23,8,0.0 +23777,62,49.3,22,0.0 +23777,35,18,37,0.0 +23777,31,12.5,38,0.0 +23777,14,23.25,42,0.0 +23777,77,13,34,0.0 +23777,6,25,48,0.0 +23777,49,20,28,0.0 +23777,76,18,26,0.0 +23778,53,32.8,11,0.0 +23778,39,18,12,0.0 +23778,52,7,30,0.0 +23778,75,7.75,7,0.0 +23778,59,55,19,0.0 +23778,61,28.5,23,0.0 +23778,12,38,8,0.0 +23778,1,18,34,0.0 +23778,41,9.65,22,0.0 +23778,37,26,18,0.0 +23778,68,12.5,38,0.0 +23778,50,16.25,4,0.0 +23778,7,30,42,0.0 +23778,26,31.23,7,0.0 +23778,47,9.5,34,0.0 +23778,27,43.9,27,0.0 +23778,56,38,15,0.0 +23778,34,14,39,0.0 +23778,40,18.4,16,0.0 +23778,25,14,28,0.0 +23778,62,49.3,20,0.0 +23778,8,40,33,0.0 +23778,63,43.9,24,0.0 +23778,18,62.5,39,0.0 +23778,6,25,1,0.0 +23778,69,36,44,0.0 +23778,76,18,46,0.0 +23778,48,12.75,14,0.0 +23778,9,97,44,0.0 +23778,16,17.45,18,0.0 +23778,38,263.5,31,0.0 +23778,43,46,38,0.0 +23778,13,6,21,0.0 +23778,2,19,37,0.0 +23778,57,19.5,42,0.0 +23778,67,14,24,0.0 +23778,35,18,49,0.0 +23778,5,21.35,14,0.0 +23778,55,24,33,0.0 +23778,51,53,46,0.0 +23778,23,9,45,0.0 +23778,64,33.25,43,0.0 +23778,21,10,31,0.0 +23778,36,19,23,0.0 +23778,3,10,27,0.0 +23778,58,13.25,36,0.0 +23778,28,45.6,33,0.0 +23778,19,9.2,42,0.0 +23778,15,15.5,16,0.0 +23778,77,13,35,0.0 +23778,33,2.5,5,0.0 +23778,42,14,49,0.0 +23778,60,34,33,0.0 +23778,46,12,35,0.0 +23778,44,19.45,24,0.0 +23778,49,20,20,0.0 +23778,31,12.5,28,0.0 +23778,66,17,5,0.0 +23778,24,4.5,21,0.0 +23778,20,81,9,0.0 +23778,70,15,48,0.0 +23778,65,21.05,36,0.0 +23778,73,15,29,0.0 +23778,10,31,37,0.0 +23778,72,34.8,36,0.0 +23778,4,22,9,0.0 +23778,71,21.5,49,0.0 +23778,54,7.45,1,0.0 +23779,77,13,38,0.0 +23779,36,19,9,0.0 +23779,68,12.5,12,0.0 +23779,32,32,32,0.0 +23779,24,4.5,30,0.0 +23779,69,36,18,0.0 +23779,42,14,42,0.0 +23779,58,13.25,16,0.0 +23779,56,38,37,0.0 +23779,6,25,27,0.0 +23779,45,9.5,39,0.0 +23779,25,14,37,0.0 +23779,10,31,17,0.0 +23779,44,19.45,50,0.0 +23779,30,25.89,15,0.0 +23779,55,24,10,0.0 +23779,38,263.5,4,0.0 +23779,3,10,47,0.0 +23779,16,17.45,21,0.0 +23779,49,20,31,0.0 +23779,1,18,7,0.0 +23779,59,55,20,0.0 +23779,66,17,8,0.0 +23779,46,12,8,0.0 +23779,65,21.05,41,0.0 +23779,72,34.8,16,0.0 +23779,21,10,47,0.0 +23779,63,43.9,46,0.0 +23779,26,31.23,40,0.0 +23779,57,19.5,20,0.0 +23779,70,15,47,0.0 +23779,23,9,17,0.0 +23779,7,30,29,0.0 +23779,11,21,3,0.0 +23779,33,2.5,4,0.0 +23779,52,7,34,0.0 +23779,53,32.8,13,0.0 +23780,34,14,29,0.0 +23780,60,34,28,0.0 +23780,30,25.89,25,0.0 +23780,50,16.25,7,0.0 +23780,11,21,26,0.0 +23780,46,12,24,0.0 +23780,28,45.6,40,0.0 +23780,70,15,9,0.0 +23780,54,7.45,30,0.0 +23780,19,9.2,48,0.0 +23780,18,62.5,6,0.0 +23780,59,55,14,0.0 +23780,33,2.5,11,0.0 +23780,41,9.65,17,0.0 +23780,56,38,3,0.0 +23780,71,21.5,10,0.0 +23780,76,18,16,0.0 +23780,6,25,34,0.0 +23780,73,15,13,0.0 +23780,55,24,5,0.0 +23780,3,10,43,0.0 +23780,67,14,10,0.0 +23780,66,17,38,0.0 +23780,51,53,39,0.0 +23780,47,9.5,34,0.0 +23780,63,43.9,36,0.0 +23780,57,19.5,29,0.0 +23780,25,14,18,0.0 +23780,35,18,37,0.0 +23780,20,81,38,0.0 +23780,52,7,24,0.0 +23780,17,39,7,0.0 +23780,49,20,16,0.0 +23780,13,6,45,0.0 +23780,61,28.5,49,0.0 +23781,3,10,31,0.0 +23781,8,40,20,0.0 +23781,25,14,29,0.0 +23781,67,14,48,0.0 +23781,53,32.8,32,0.0 +23781,23,9,36,0.0 +23781,55,24,27,0.0 +23781,52,7,21,0.0 +23781,4,22,41,0.0 +23781,31,12.5,10,0.0 +23781,20,81,33,0.0 +23781,10,31,23,0.0 +23781,5,21.35,34,0.0 +23781,69,36,29,0.0 +23781,56,38,22,0.0 +23781,76,18,25,0.0 +23781,7,30,46,0.0 +23781,47,9.5,28,0.0 +23781,18,62.5,43,0.0 +23781,42,14,28,0.0 +23781,24,4.5,16,0.0 +23781,48,12.75,49,0.0 +23781,34,14,27,0.0 +23781,33,2.5,50,0.0 +23781,43,46,3,0.0 +23781,40,18.4,35,0.0 +23781,37,26,6,0.0 +23781,12,38,16,0.0 +23781,58,13.25,29,0.0 +23781,68,12.5,13,0.0 +23781,15,15.5,39,0.0 +23781,29,123.79,41,0.0 +23781,75,7.75,50,0.0 +23781,51,53,17,0.0 +23781,6,25,46,0.0 +23781,77,13,25,0.0 +23781,16,17.45,35,0.0 +23781,49,20,20,0.0 +23781,39,18,8,0.0 +23781,21,10,8,0.0 +23781,2,19,47,0.0 +23781,44,19.45,34,0.0 +23781,73,15,45,0.0 +23781,71,21.5,44,0.0 +23781,9,97,14,0.0 +23781,17,39,13,0.0 +23781,72,34.8,45,0.0 +23781,36,19,1,0.0 +23781,26,31.23,49,0.0 +23781,54,7.45,46,0.0 +23781,66,17,49,0.0 +23781,63,43.9,5,0.0 +23781,57,19.5,14,0.0 +23781,64,33.25,39,0.0 +23781,74,10,19,0.0 +23781,41,9.65,44,0.0 +23781,11,21,1,0.0 +23781,70,15,45,0.0 +23781,62,49.3,33,0.0 +23781,60,34,47,0.0 +23782,29,123.79,10,0.0 +23782,17,39,12,0.0 +23782,72,34.8,30,0.0 +23782,50,16.25,14,0.0 +23782,8,40,21,0.0 +23782,35,18,36,0.0 +23782,42,14,30,0.0 +23782,52,7,32,0.0 +23782,20,81,18,0.0 +23782,70,15,19,0.0 +23782,38,263.5,31,0.0 +23782,55,24,29,0.0 +23782,7,30,16,0.0 +23782,37,26,49,0.0 +23782,63,43.9,9,0.0 +23782,34,14,17,0.0 +23782,44,19.45,23,0.0 +23782,1,18,18,0.0 +23782,27,43.9,42,0.0 +23783,8,40,41,0.0 +23783,32,32,38,0.0 +23783,35,18,8,0.0 +23783,44,19.45,11,0.0 +23783,67,14,44,0.0 +23784,25,14,17,0.0 +23784,60,34,4,0.0 +23784,51,53,42,0.0 +23785,53,32.8,49,0.0 +23785,23,9,7,0.0 +23785,32,32,48,0.0 +23785,4,22,31,0.0 +23785,18,62.5,16,0.0 +23785,59,55,6,0.0 +23785,44,19.45,17,0.0 +23785,35,18,22,0.0 +23785,28,45.6,31,0.0 +23785,75,7.75,49,0.0 +23785,64,33.25,13,0.0 +23785,49,20,8,0.0 +23785,71,21.5,8,0.0 +23785,74,10,35,0.0 +23785,50,16.25,45,0.0 +23785,9,97,29,0.0 +23785,22,21,16,0.0 +23785,39,18,10,0.0 +23785,20,81,26,0.0 +23785,26,31.23,48,0.0 +23785,48,12.75,13,0.0 +23785,11,21,3,0.0 +23785,37,26,44,0.0 +23785,6,25,10,0.0 +23785,7,30,7,0.0 +23785,58,13.25,36,0.0 +23785,24,4.5,20,0.0 +23785,12,38,33,0.0 +23785,5,21.35,46,0.0 +23785,66,17,8,0.0 +23785,77,13,41,0.0 +23785,76,18,18,0.0 +23785,2,19,14,0.0 +23785,43,46,7,0.0 +23785,65,21.05,16,0.0 +23785,33,2.5,4,0.0 +23785,63,43.9,17,0.0 +23785,14,23.25,1,0.0 +23785,55,24,43,0.0 +23785,61,28.5,29,0.0 +23785,41,9.65,2,0.0 +23785,25,14,10,0.0 +23785,13,6,9,0.0 +23785,30,25.89,35,0.0 +23785,57,19.5,44,0.0 +23785,62,49.3,15,0.0 +23785,67,14,8,0.0 +23785,16,17.45,17,0.0 +23785,1,18,31,0.0 +23786,43,46,1,0.0 +23786,58,13.25,29,0.0 +23786,35,18,15,0.0 +23786,21,10,30,0.0 +23786,65,21.05,40,0.0 +23786,53,32.8,40,0.0 +23786,23,9,13,0.0 +23786,36,19,14,0.0 +23786,9,97,19,0.0 +23786,37,26,26,0.0 +23786,39,18,41,0.0 +23786,34,14,37,0.0 +23786,77,13,29,0.0 +23786,55,24,39,0.0 +23786,26,31.23,15,0.0 +23786,70,15,40,0.0 +23786,63,43.9,45,0.0 +23786,42,14,29,0.0 +23786,52,7,21,0.0 +23786,50,16.25,1,0.0 +23786,41,9.65,27,0.0 +23786,10,31,26,0.0 +23786,22,21,9,0.0 +23786,16,17.45,11,0.0 +23786,25,14,18,0.0 +23786,69,36,29,0.0 +23786,54,7.45,42,0.0 +23786,62,49.3,12,0.0 +23786,40,18.4,29,0.0 +23786,30,25.89,46,0.0 +23786,44,19.45,21,0.0 +23786,7,30,16,0.0 +23786,14,23.25,13,0.0 +23786,2,19,47,0.0 +23786,60,34,11,0.0 +23786,5,21.35,34,0.0 +23786,1,18,35,0.0 +23786,76,18,21,0.0 +23786,38,263.5,10,0.0 +23786,64,33.25,19,0.0 +23786,19,9.2,23,0.0 +23787,48,12.75,32,0.0 +23787,67,14,50,0.0 +23787,34,14,32,0.0 +23787,58,13.25,24,0.0 +23787,70,15,28,0.0 +23787,17,39,3,0.0 +23787,26,31.23,17,0.0 +23787,12,38,24,0.0 +23787,1,18,14,0.0 +23787,27,43.9,27,0.0 +23787,44,19.45,19,0.0 +23787,39,18,23,0.0 +23787,22,21,38,0.0 +23787,63,43.9,39,0.0 +23787,23,9,50,0.0 +23787,16,17.45,46,0.0 +23787,13,6,9,0.0 +23787,60,34,45,0.0 +23787,71,21.5,34,0.0 +23787,47,9.5,21,0.0 +23787,73,15,22,0.0 +23787,46,12,40,0.0 +23787,38,263.5,21,0.0 +23788,52,7,17,0.0 +23788,5,21.35,41,0.0 +23788,13,6,40,0.0 +23788,20,81,43,0.0 +23788,21,10,24,0.0 +23788,43,46,2,0.0 +23788,76,18,1,0.0 +23788,38,263.5,20,0.0 +23788,50,16.25,19,0.0 +23788,60,34,43,0.0 +23788,29,123.79,46,0.0 +23788,53,32.8,41,0.0 +23788,64,33.25,2,0.0 +23788,72,34.8,36,0.0 +23788,70,15,44,0.0 +23788,66,17,41,0.0 +23788,74,10,17,0.0 +23788,30,25.89,3,0.0 +23788,12,38,39,0.0 +23788,47,9.5,27,0.0 +23788,27,43.9,3,0.0 +23788,10,31,3,0.0 +23788,34,14,35,0.0 +23788,31,12.5,35,0.0 +23788,11,21,19,0.0 +23788,45,9.5,10,0.0 +23788,17,39,27,0.0 +23788,24,4.5,41,0.0 +23788,42,14,21,0.0 +23788,40,18.4,18,0.0 +23788,16,17.45,45,0.0 +23788,68,12.5,22,0.0 +23788,48,12.75,33,0.0 +23788,23,9,48,0.0 +23789,64,33.25,23,0.0 +23789,58,13.25,35,0.0 +23789,6,25,7,0.0 +23789,67,14,1,0.0 +23789,29,123.79,35,0.0 +23789,31,12.5,14,0.0 +23789,3,10,50,0.0 +23789,41,9.65,3,0.0 +23789,49,20,21,0.0 +23789,11,21,23,0.0 +23789,4,22,25,0.0 +23789,76,18,13,0.0 +23789,26,31.23,22,0.0 +23789,36,19,21,0.0 +23789,20,81,22,0.0 +23789,56,38,32,0.0 +23789,47,9.5,1,0.0 +23789,59,55,35,0.0 +23789,8,40,49,0.0 +23789,43,46,50,0.0 +23789,5,21.35,3,0.0 +23789,38,263.5,21,0.0 +23789,9,97,15,0.0 +23789,7,30,30,0.0 +23789,40,18.4,15,0.0 +23789,69,36,38,0.0 +23789,1,18,41,0.0 +23789,74,10,7,0.0 +23789,12,38,17,0.0 +23789,33,2.5,45,0.0 +23789,10,31,40,0.0 +23789,2,19,12,0.0 +23789,27,43.9,40,0.0 +23789,73,15,11,0.0 +23789,18,62.5,36,0.0 +23789,51,53,18,0.0 +23789,32,32,34,0.0 +23789,28,45.6,30,0.0 +23789,77,13,19,0.0 +23789,39,18,25,0.0 +23789,72,34.8,1,0.0 +23789,21,10,7,0.0 +23789,62,49.3,41,0.0 +23789,60,34,18,0.0 +23790,42,14,2,0.0 +23790,37,26,47,0.0 +23790,36,19,13,0.0 +23790,50,16.25,1,0.0 +23790,66,17,7,0.0 +23790,35,18,4,0.0 +23790,16,17.45,6,0.0 +23790,44,19.45,48,0.0 +23790,38,263.5,18,0.0 +23790,17,39,49,0.0 +23790,25,14,4,0.0 +23790,53,32.8,6,0.0 +23790,45,9.5,27,0.0 +23790,26,31.23,49,0.0 +23790,9,97,12,0.0 +23790,68,12.5,31,0.0 +23790,59,55,17,0.0 +23790,13,6,16,0.0 +23790,47,9.5,45,0.0 +23790,21,10,26,0.0 +23790,27,43.9,34,0.0 +23790,32,32,33,0.0 +23790,31,12.5,46,0.0 +23790,56,38,28,0.0 +23790,20,81,16,0.0 +23790,61,28.5,9,0.0 +23790,46,12,49,0.0 +23790,57,19.5,48,0.0 +23790,72,34.8,12,0.0 +23790,7,30,31,0.0 +23790,70,15,14,0.0 +23791,39,18,31,0.0 +23791,58,13.25,47,0.0 +23791,69,36,47,0.0 +23791,1,18,49,0.0 +23791,19,9.2,47,0.0 +23791,27,43.9,37,0.0 +23791,65,21.05,1,0.0 +23791,53,32.8,46,0.0 +23791,46,12,9,0.0 +23791,29,123.79,27,0.0 +23791,38,263.5,24,0.0 +23791,13,6,37,0.0 +23791,12,38,48,0.0 +23791,51,53,27,0.0 +23791,56,38,35,0.0 +23791,10,31,22,0.0 +23791,43,46,32,0.0 +23791,72,34.8,10,0.0 +23791,48,12.75,3,0.0 +23791,5,21.35,30,0.0 +23791,3,10,47,0.0 +23791,57,19.5,32,0.0 +23791,60,34,24,0.0 +23791,20,81,15,0.0 +23791,30,25.89,6,0.0 +23791,45,9.5,16,0.0 +23791,11,21,7,0.0 +23791,35,18,24,0.0 +23791,59,55,22,0.0 +23791,2,19,33,0.0 +23791,71,21.5,19,0.0 +23791,67,14,35,0.0 +23791,44,19.45,13,0.0 +23791,4,22,22,0.0 +23791,18,62.5,29,0.0 +23791,14,23.25,42,0.0 +23791,23,9,17,0.0 +23792,21,10,48,0.0 +23792,5,21.35,17,0.0 +23792,61,28.5,2,0.0 +23792,50,16.25,29,0.0 +23792,63,43.9,5,0.0 +23792,15,15.5,35,0.0 +23792,24,4.5,27,0.0 +23792,9,97,28,0.0 +23792,34,14,39,0.0 +23792,51,53,40,0.0 +23792,36,19,10,0.0 +23792,59,55,31,0.0 +23792,66,17,23,0.0 +23792,52,7,17,0.0 +23792,2,19,26,0.0 +23792,41,9.65,3,0.0 +23792,65,21.05,15,0.0 +23792,54,7.45,12,0.0 +23792,18,62.5,14,0.0 +23792,17,39,32,0.0 +23792,7,30,44,0.0 +23792,58,13.25,23,0.0 +23792,47,9.5,23,0.0 +23792,56,38,29,0.0 +23792,43,46,31,0.0 +23792,32,32,7,0.0 +23792,76,18,8,0.0 +23792,29,123.79,23,0.0 +23792,44,19.45,23,0.0 +23792,20,81,39,0.0 +23792,3,10,12,0.0 +23792,74,10,26,0.0 +23792,38,263.5,45,0.0 +23792,42,14,41,0.0 +23792,14,23.25,29,0.0 +23792,53,32.8,33,0.0 +23792,67,14,1,0.0 +23792,75,7.75,47,0.0 +23792,71,21.5,7,0.0 +23792,23,9,8,0.0 +23792,4,22,46,0.0 +23792,73,15,23,0.0 +23792,13,6,50,0.0 +23792,39,18,16,0.0 +23792,70,15,17,0.0 +23792,22,21,36,0.0 +23792,64,33.25,30,0.0 +23792,60,34,31,0.0 +23792,46,12,6,0.0 +23792,48,12.75,42,0.0 +23792,69,36,25,0.0 +23792,72,34.8,10,0.0 +23792,40,18.4,46,0.0 +23792,25,14,26,0.0 +23792,6,25,7,0.0 +23792,28,45.6,48,0.0 +23792,11,21,24,0.0 +23792,35,18,44,0.0 +23792,19,9.2,5,0.0 +23792,8,40,40,0.0 +23792,55,24,15,0.0 +23792,33,2.5,22,0.0 +23792,1,18,44,0.0 +23792,37,26,29,0.0 +23792,27,43.9,49,0.0 +23792,49,20,41,0.0 +23792,57,19.5,36,0.0 +23792,30,25.89,7,0.0 +23792,31,12.5,32,0.0 +23792,26,31.23,33,0.0 +23792,10,31,33,0.0 +23793,46,12,35,0.0 +23793,69,36,15,0.0 +23793,24,4.5,3,0.0 +23793,20,81,16,0.0 +23793,39,18,32,0.0 +23793,15,15.5,8,0.0 +23793,17,39,7,0.0 +23793,33,2.5,5,0.0 +23793,42,14,22,0.0 +23793,41,9.65,5,0.0 +23793,8,40,9,0.0 +23793,26,31.23,19,0.0 +23793,12,38,1,0.0 +23793,43,46,39,0.0 +23793,61,28.5,44,0.0 +23793,4,22,32,0.0 +23793,51,53,28,0.0 +23793,70,15,35,0.0 +23793,13,6,32,0.0 +23793,77,13,15,0.0 +23793,3,10,36,0.0 +23793,44,19.45,37,0.0 +23793,2,19,48,0.0 +23793,54,7.45,1,0.0 +23793,53,32.8,29,0.0 +23793,72,34.8,11,0.0 +23793,74,10,45,0.0 +23793,75,7.75,3,0.0 +23793,68,12.5,13,0.0 +23793,58,13.25,45,0.0 +23793,30,25.89,48,0.0 +23793,34,14,49,0.0 +23793,76,18,45,0.0 +23793,50,16.25,25,0.0 +23793,67,14,22,0.0 +23793,55,24,50,0.0 +23793,45,9.5,40,0.0 +23793,60,34,44,0.0 +23793,27,43.9,4,0.0 +23794,17,39,43,0.0 +23794,63,43.9,32,0.0 +23794,68,12.5,7,0.0 +23794,55,24,2,0.0 +23794,34,14,17,0.0 +23794,7,30,1,0.0 +23794,19,9.2,20,0.0 +23794,35,18,16,0.0 +23794,76,18,12,0.0 +23794,47,9.5,30,0.0 +23794,69,36,17,0.0 +23794,54,7.45,27,0.0 +23794,10,31,1,0.0 +23794,57,19.5,37,0.0 +23794,70,15,2,0.0 +23794,18,62.5,31,0.0 +23794,25,14,17,0.0 +23794,11,21,7,0.0 +23794,26,31.23,37,0.0 +23794,14,23.25,39,0.0 +23794,48,12.75,26,0.0 +23794,15,15.5,10,0.0 +23794,31,12.5,28,0.0 +23794,45,9.5,38,0.0 +23794,42,14,40,0.0 +23794,59,55,45,0.0 +23794,21,10,17,0.0 +23794,64,33.25,10,0.0 +23794,53,32.8,27,0.0 +23794,28,45.6,2,0.0 +23794,74,10,12,0.0 +23794,22,21,13,0.0 +23794,38,263.5,9,0.0 +23794,65,21.05,21,0.0 +23795,21,10,11,0.0 +23795,63,43.9,42,0.0 +23795,65,21.05,12,0.0 +23795,24,4.5,9,0.0 +23795,69,36,16,0.0 +23795,44,19.45,43,0.0 +23795,55,24,18,0.0 +23795,70,15,2,0.0 +23795,33,2.5,41,0.0 +23795,22,21,40,0.0 +23795,60,34,41,0.0 +23795,54,7.45,48,0.0 +23795,56,38,34,0.0 +23795,67,14,49,0.0 +23795,71,21.5,12,0.0 +23795,6,25,22,0.0 +23795,59,55,34,0.0 +23795,3,10,34,0.0 +23795,29,123.79,31,0.0 +23795,73,15,8,0.0 +23795,28,45.6,31,0.0 +23795,77,13,20,0.0 +23795,47,9.5,3,0.0 +23795,11,21,12,0.0 +23795,64,33.25,18,0.0 +23795,8,40,14,0.0 +23795,32,32,35,0.0 +23795,42,14,13,0.0 +23795,4,22,19,0.0 +23795,66,17,12,0.0 +23795,9,97,19,0.0 +23795,74,10,18,0.0 +23795,34,14,49,0.0 +23796,42,14,4,0.0 +23796,32,32,8,0.0 +23796,51,53,11,0.0 +23796,52,7,49,0.0 +23796,26,31.23,49,0.0 +23796,2,19,21,0.0 +23796,29,123.79,21,0.0 +23796,73,15,9,0.0 +23796,48,12.75,8,0.0 +23796,20,81,35,0.0 +23796,23,9,36,0.0 +23796,8,40,36,0.0 +23796,30,25.89,44,0.0 +23796,66,17,32,0.0 +23796,72,34.8,19,0.0 +23796,38,263.5,4,0.0 +23796,62,49.3,35,0.0 +23797,1,18,39,0.0 +23797,26,31.23,12,0.0 +23797,23,9,5,0.0 +23797,74,10,23,0.0 +23797,16,17.45,10,0.0 +23797,64,33.25,26,0.0 +23797,48,12.75,13,0.0 +23797,25,14,41,0.0 +23797,45,9.5,29,0.0 +23797,9,97,32,0.0 +23797,6,25,28,0.0 +23797,32,32,28,0.0 +23797,3,10,12,0.0 +23797,31,12.5,7,0.0 +23797,39,18,45,0.0 +23797,72,34.8,20,0.0 +23797,44,19.45,47,0.0 +23797,61,28.5,12,0.0 +23797,70,15,17,0.0 +23797,4,22,43,0.0 +23797,43,46,16,0.0 +23797,76,18,50,0.0 +23797,62,49.3,22,0.0 +23797,34,14,42,0.0 +23797,11,21,36,0.0 +23797,29,123.79,31,0.0 +23797,42,14,48,0.0 +23797,60,34,45,0.0 +23797,69,36,35,0.0 +23797,22,21,30,0.0 +23797,77,13,28,0.0 +23797,19,9.2,35,0.0 +23797,8,40,29,0.0 +23797,54,7.45,36,0.0 +23797,73,15,31,0.0 +23797,67,14,44,0.0 +23797,50,16.25,8,0.0 +23797,18,62.5,6,0.0 +23797,24,4.5,38,0.0 +23797,35,18,46,0.0 +23797,57,19.5,39,0.0 +23797,59,55,46,0.0 +23797,33,2.5,39,0.0 +23797,41,9.65,36,0.0 +23797,7,30,49,0.0 +23797,2,19,5,0.0 +23797,40,18.4,29,0.0 +23797,51,53,38,0.0 +23797,5,21.35,42,0.0 +23797,20,81,35,0.0 +23797,17,39,23,0.0 +23797,21,10,34,0.0 +23797,56,38,48,0.0 +23797,68,12.5,14,0.0 +23797,10,31,34,0.0 +23797,53,32.8,41,0.0 +23797,66,17,40,0.0 +23797,36,19,48,0.0 +23797,47,9.5,47,0.0 +23797,63,43.9,1,0.0 +23797,13,6,29,0.0 +23797,12,38,24,0.0 +23797,52,7,22,0.0 +23797,38,263.5,35,0.0 +23797,28,45.6,8,0.0 +23797,14,23.25,22,0.0 +23797,58,13.25,29,0.0 +23797,55,24,16,0.0 +23797,65,21.05,39,0.0 +23797,71,21.5,35,0.0 +23797,46,12,25,0.0 +23797,15,15.5,1,0.0 +23797,75,7.75,31,0.0 +23798,72,34.8,42,0.0 +23798,74,10,27,0.0 +23798,8,40,21,0.0 +23798,53,32.8,27,0.0 +23798,36,19,22,0.0 +23798,66,17,14,0.0 +23798,71,21.5,20,0.0 +23798,33,2.5,29,0.0 +23798,62,49.3,37,0.0 +23798,23,9,16,0.0 +23798,20,81,9,0.0 +23798,5,21.35,8,0.0 +23798,60,34,17,0.0 +23798,10,31,44,0.0 +23798,17,39,34,0.0 +23798,39,18,27,0.0 +23798,52,7,3,0.0 +23798,1,18,25,0.0 +23798,22,21,25,0.0 +23798,32,32,8,0.0 +23798,25,14,25,0.0 +23798,13,6,46,0.0 +23798,47,9.5,45,0.0 +23798,7,30,19,0.0 +23798,57,19.5,50,0.0 +23798,34,14,17,0.0 +23798,50,16.25,42,0.0 +23798,14,23.25,26,0.0 +23798,68,12.5,9,0.0 +23798,37,26,47,0.0 +23798,76,18,6,0.0 +23798,63,43.9,8,0.0 +23798,73,15,44,0.0 +23798,48,12.75,23,0.0 +23798,35,18,17,0.0 +23798,18,62.5,1,0.0 +23798,30,25.89,16,0.0 +23798,46,12,21,0.0 +23798,69,36,46,0.0 +23798,29,123.79,7,0.0 +23798,44,19.45,50,0.0 +23798,27,43.9,2,0.0 +23798,56,38,47,0.0 +23799,29,123.79,3,0.0 +23799,14,23.25,24,0.0 +23799,43,46,31,0.0 +23799,6,25,27,0.0 +23799,45,9.5,16,0.0 +23799,3,10,47,0.0 +23799,47,9.5,30,0.0 +23799,39,18,24,0.0 +23799,44,19.45,45,0.0 +23799,30,25.89,46,0.0 +23799,13,6,36,0.0 +23799,41,9.65,43,0.0 +23799,31,12.5,15,0.0 +23799,23,9,48,0.0 +23799,26,31.23,47,0.0 +23799,5,21.35,40,0.0 +23799,37,26,25,0.0 +23799,4,22,14,0.0 +23799,63,43.9,12,0.0 +23799,76,18,36,0.0 +23799,70,15,18,0.0 +23799,20,81,34,0.0 +23799,66,17,32,0.0 +23799,68,12.5,1,0.0 +23799,65,21.05,11,0.0 +23799,59,55,49,0.0 +23799,62,49.3,34,0.0 +23799,40,18.4,27,0.0 +23799,15,15.5,8,0.0 +23799,69,36,18,0.0 +23799,51,53,42,0.0 +23799,7,30,49,0.0 +23799,71,21.5,42,0.0 +23799,27,43.9,16,0.0 +23799,34,14,50,0.0 +23799,57,19.5,16,0.0 +23799,17,39,35,0.0 +23799,73,15,7,0.0 +23799,35,18,36,0.0 +23799,24,4.5,12,0.0 +23799,58,13.25,18,0.0 +23799,48,12.75,15,0.0 +23799,1,18,13,0.0 +23799,12,38,34,0.0 +23799,56,38,1,0.0 +23799,54,7.45,38,0.0 +23799,22,21,45,0.0 +23799,16,17.45,37,0.0 +23799,77,13,20,0.0 +23799,21,10,15,0.0 +23799,2,19,39,0.0 +23800,42,14,8,0.0 +23800,39,18,38,0.0 +23800,23,9,47,0.0 +23800,7,30,47,0.0 +23800,38,263.5,40,0.0 +23800,67,14,47,0.0 +23800,33,2.5,32,0.0 +23800,34,14,25,0.0 +23800,54,7.45,10,0.0 +23800,9,97,44,0.0 +23800,47,9.5,44,0.0 +23800,56,38,5,0.0 +23800,14,23.25,26,0.0 +23800,28,45.6,47,0.0 +23800,1,18,2,0.0 +23800,36,19,47,0.0 +23800,52,7,20,0.0 +23800,37,26,9,0.0 +23800,76,18,19,0.0 +23800,63,43.9,47,0.0 +23800,71,21.5,17,0.0 +23800,16,17.45,3,0.0 +23800,8,40,50,0.0 +23800,4,22,11,0.0 +23800,62,49.3,50,0.0 +23800,45,9.5,16,0.0 +23800,11,21,22,0.0 +23800,77,13,17,0.0 +23800,3,10,4,0.0 +23800,31,12.5,1,0.0 +23800,22,21,20,0.0 +23800,19,9.2,45,0.0 +23800,64,33.25,40,0.0 +23800,65,21.05,8,0.0 +23800,32,32,48,0.0 +23800,12,38,36,0.0 +23800,35,18,20,0.0 +23800,26,31.23,1,0.0 +23800,17,39,30,0.0 +23800,60,34,3,0.0 +23800,55,24,44,0.0 +23800,13,6,49,0.0 +23800,6,25,19,0.0 +23800,66,17,38,0.0 +23800,69,36,26,0.0 +23800,15,15.5,11,0.0 +23800,46,12,28,0.0 +23800,10,31,39,0.0 +23800,58,13.25,46,0.0 +23800,5,21.35,36,0.0 +23800,57,19.5,20,0.0 +23800,75,7.75,26,0.0 +23800,25,14,50,0.0 +23800,53,32.8,42,0.0 +23800,43,46,22,0.0 +23800,30,25.89,36,0.0 +23800,21,10,45,0.0 +23800,27,43.9,31,0.0 +23800,74,10,28,0.0 +23800,51,53,33,0.0 +23800,20,81,5,0.0 +23800,24,4.5,6,0.0 +23800,2,19,3,0.0 +23800,18,62.5,39,0.0 +23800,48,12.75,28,0.0 +23800,68,12.5,17,0.0 +23801,1,18,45,0.0 +23801,75,7.75,9,0.0 +23801,52,7,43,0.0 +23801,70,15,32,0.0 +23801,67,14,1,0.0 +23801,64,33.25,2,0.0 +23801,24,4.5,42,0.0 +23801,5,21.35,47,0.0 +23801,23,9,39,0.0 +23801,60,34,29,0.0 +23801,42,14,40,0.0 +23801,2,19,9,0.0 +23801,22,21,48,0.0 +23801,7,30,45,0.0 +23801,53,32.8,10,0.0 +23801,76,18,12,0.0 +23801,21,10,40,0.0 +23801,45,9.5,38,0.0 +23801,28,45.6,50,0.0 +23801,65,21.05,13,0.0 +23801,61,28.5,35,0.0 +23801,49,20,8,0.0 +23801,14,23.25,29,0.0 +23801,62,49.3,14,0.0 +23801,68,12.5,5,0.0 +23801,47,9.5,20,0.0 +23801,71,21.5,48,0.0 +23801,66,17,10,0.0 +23801,41,9.65,47,0.0 +23801,63,43.9,43,0.0 +23801,27,43.9,1,0.0 +23801,12,38,15,0.0 +23801,57,19.5,35,0.0 +23801,19,9.2,26,0.0 +23801,32,32,43,0.0 +23801,69,36,44,0.0 +23801,34,14,23,0.0 +23801,44,19.45,38,0.0 +23801,59,55,17,0.0 +23801,20,81,48,0.0 +23801,9,97,6,0.0 +23801,74,10,46,0.0 +23801,38,263.5,3,0.0 +23801,39,18,13,0.0 +23801,43,46,4,0.0 +23801,10,31,50,0.0 +23801,48,12.75,50,0.0 +23801,13,6,38,0.0 +23801,4,22,2,0.0 +23801,18,62.5,34,0.0 +23801,33,2.5,22,0.0 +23801,40,18.4,12,0.0 +23801,29,123.79,50,0.0 +23801,16,17.45,34,0.0 +23801,30,25.89,35,0.0 +23801,37,26,5,0.0 +23801,31,12.5,31,0.0 +23801,56,38,21,0.0 +23801,72,34.8,49,0.0 +23801,11,21,4,0.0 +23801,36,19,5,0.0 +23801,46,12,10,0.0 +23801,15,15.5,6,0.0 +23801,17,39,34,0.0 +23801,73,15,27,0.0 +23801,50,16.25,25,0.0 +23801,51,53,36,0.0 +23801,58,13.25,28,0.0 +23802,33,2.5,1,0.0 +23802,13,6,7,0.0 +23802,69,36,32,0.0 +23802,56,38,33,0.0 +23802,72,34.8,2,0.0 +23802,66,17,12,0.0 +23802,11,21,15,0.0 +23802,8,40,37,0.0 +23802,16,17.45,15,0.0 +23802,55,24,26,0.0 +23802,18,62.5,44,0.0 +23802,38,263.5,29,0.0 +23802,53,32.8,15,0.0 +23802,21,10,4,0.0 +23802,36,19,37,0.0 +23802,41,9.65,8,0.0 +23802,40,18.4,44,0.0 +23802,44,19.45,30,0.0 +23802,51,53,8,0.0 +23802,31,12.5,30,0.0 +23802,30,25.89,17,0.0 +23802,76,18,14,0.0 +23802,64,33.25,3,0.0 +23802,57,19.5,28,0.0 +23802,74,10,31,0.0 +23802,58,13.25,41,0.0 +23802,67,14,16,0.0 +23802,25,14,4,0.0 +23802,4,22,10,0.0 +23802,54,7.45,43,0.0 +23802,14,23.25,40,0.0 +23802,26,31.23,27,0.0 +23802,47,9.5,30,0.0 +23802,28,45.6,22,0.0 +23802,77,13,42,0.0 +23802,35,18,23,0.0 +23802,15,15.5,10,0.0 +23803,11,21,49,0.0 +23803,18,62.5,36,0.0 +23803,45,9.5,9,0.0 +23803,29,123.79,38,0.0 +23803,61,28.5,13,0.0 +23803,20,81,44,0.0 +23803,67,14,14,0.0 +23803,30,25.89,5,0.0 +23803,40,18.4,27,0.0 +23803,39,18,5,0.0 +23803,72,34.8,28,0.0 +23803,9,97,11,0.0 +23803,44,19.45,8,0.0 +23803,58,13.25,10,0.0 +23803,24,4.5,28,0.0 +23803,57,19.5,40,0.0 +23803,22,21,34,0.0 +23803,55,24,28,0.0 +23803,69,36,17,0.0 +23803,70,15,46,0.0 +23803,4,22,28,0.0 +23803,62,49.3,23,0.0 +23803,8,40,2,0.0 +23803,47,9.5,35,0.0 +23803,32,32,38,0.0 +23803,43,46,49,0.0 +23803,21,10,37,0.0 +23803,41,9.65,42,0.0 +23803,59,55,34,0.0 +23803,56,38,36,0.0 +23803,31,12.5,13,0.0 +23803,53,32.8,26,0.0 +23803,49,20,6,0.0 +23803,13,6,4,0.0 +23803,23,9,46,0.0 +23803,3,10,24,0.0 +23803,25,14,47,0.0 +23803,46,12,19,0.0 +23803,52,7,31,0.0 +23803,15,15.5,29,0.0 +23803,33,2.5,39,0.0 +23803,34,14,4,0.0 +23803,27,43.9,29,0.0 +23803,51,53,43,0.0 +23803,73,15,45,0.0 +23803,36,19,49,0.0 +23803,76,18,48,0.0 +23803,14,23.25,3,0.0 +23803,75,7.75,24,0.0 +23803,54,7.45,36,0.0 +23803,74,10,4,0.0 +23803,60,34,48,0.0 +23803,6,25,39,0.0 +23804,33,2.5,8,0.0 +23804,17,39,27,0.0 +23804,46,12,5,0.0 +23804,20,81,10,0.0 +23804,13,6,40,0.0 +23804,5,21.35,21,0.0 +23804,9,97,44,0.0 +23804,22,21,9,0.0 +23804,51,53,8,0.0 +23804,24,4.5,32,0.0 +23804,73,15,10,0.0 +23804,62,49.3,13,0.0 +23804,72,34.8,12,0.0 +23804,25,14,37,0.0 +23804,7,30,21,0.0 +23804,27,43.9,41,0.0 +23804,15,15.5,12,0.0 +23804,4,22,43,0.0 +23804,42,14,41,0.0 +23804,43,46,14,0.0 +23804,61,28.5,33,0.0 +23804,30,25.89,17,0.0 +23804,35,18,1,0.0 +23804,39,18,17,0.0 +23804,38,263.5,9,0.0 +23804,53,32.8,43,0.0 +23804,18,62.5,29,0.0 +23804,49,20,5,0.0 +23804,52,7,7,0.0 +23804,65,21.05,22,0.0 +23804,3,10,26,0.0 +23804,77,13,37,0.0 +23804,56,38,43,0.0 +23804,69,36,8,0.0 +23804,6,25,11,0.0 +23804,67,14,39,0.0 +23804,70,15,8,0.0 +23804,41,9.65,42,0.0 +23804,14,23.25,26,0.0 +23804,75,7.75,5,0.0 +23804,34,14,2,0.0 +23804,37,26,9,0.0 +23804,31,12.5,28,0.0 +23804,57,19.5,42,0.0 +23804,32,32,45,0.0 +23804,11,21,10,0.0 +23804,2,19,11,0.0 +23804,55,24,23,0.0 +23804,44,19.45,8,0.0 +23804,66,17,8,0.0 +23804,54,7.45,9,0.0 +23804,40,18.4,12,0.0 +23804,60,34,11,0.0 +23804,68,12.5,4,0.0 +23804,64,33.25,48,0.0 +23805,22,21,21,0.0 +23805,38,263.5,24,0.0 +23805,56,38,33,0.0 +23805,8,40,11,0.0 +23805,23,9,4,0.0 +23805,5,21.35,36,0.0 +23805,17,39,35,0.0 +23805,52,7,34,0.0 +23805,41,9.65,24,0.0 +23805,16,17.45,43,0.0 +23805,29,123.79,17,0.0 +23805,55,24,45,0.0 +23805,12,38,5,0.0 +23805,3,10,49,0.0 +23805,20,81,20,0.0 +23805,50,16.25,11,0.0 +23805,36,19,21,0.0 +23805,72,34.8,7,0.0 +23805,61,28.5,19,0.0 +23805,58,13.25,2,0.0 +23805,24,4.5,23,0.0 +23805,63,43.9,36,0.0 +23805,74,10,12,0.0 +23806,20,81,30,0.0 +23806,10,31,24,0.0 +23806,2,19,25,0.0 +23806,18,62.5,49,0.0 +23806,60,34,24,0.0 +23806,9,97,28,0.0 +23806,51,53,47,0.0 +23806,59,55,27,0.0 +23806,66,17,33,0.0 +23806,29,123.79,17,0.0 +23806,58,13.25,22,0.0 +23806,61,28.5,3,0.0 +23806,25,14,38,0.0 +23806,68,12.5,17,0.0 +23806,72,34.8,25,0.0 +23806,41,9.65,48,0.0 +23806,23,9,18,0.0 +23806,56,38,16,0.0 +23806,43,46,23,0.0 +23806,11,21,46,0.0 +23806,53,32.8,14,0.0 +23806,28,45.6,38,0.0 +23806,47,9.5,14,0.0 +23806,45,9.5,32,0.0 +23806,21,10,11,0.0 +23806,38,263.5,11,0.0 +23806,24,4.5,47,0.0 +23806,39,18,45,0.0 +23806,13,6,24,0.0 +23806,74,10,15,0.0 +23806,75,7.75,41,0.0 +23806,32,32,35,0.0 +23806,69,36,21,0.0 +23806,34,14,23,0.0 +23806,48,12.75,45,0.0 +23806,5,21.35,16,0.0 +23806,17,39,48,0.0 +23806,19,9.2,18,0.0 +23806,26,31.23,19,0.0 +23806,6,25,50,0.0 +23806,15,15.5,16,0.0 +23806,22,21,19,0.0 +23806,46,12,41,0.0 +23806,33,2.5,34,0.0 +23806,30,25.89,42,0.0 +23806,65,21.05,15,0.0 +23806,71,21.5,18,0.0 +23806,62,49.3,43,0.0 +23806,7,30,29,0.0 +23806,50,16.25,6,0.0 +23806,77,13,48,0.0 +23806,14,23.25,21,0.0 +23806,63,43.9,19,0.0 +23806,76,18,34,0.0 +23806,44,19.45,36,0.0 +23806,8,40,37,0.0 +23806,35,18,17,0.0 +23806,70,15,30,0.0 +23806,36,19,24,0.0 +23806,37,26,2,0.0 +23806,52,7,45,0.0 +23806,4,22,7,0.0 +23806,42,14,28,0.0 +23806,40,18.4,47,0.0 +23806,55,24,10,0.0 +23806,1,18,5,0.0 +23806,67,14,19,0.0 +23806,64,33.25,38,0.0 +23806,54,7.45,34,0.0 +23807,30,25.89,43,0.0 +23807,29,123.79,11,0.0 +23807,51,53,50,0.0 +23807,48,12.75,27,0.0 +23807,76,18,30,0.0 +23807,31,12.5,40,0.0 +23807,16,17.45,12,0.0 +23807,56,38,7,0.0 +23807,47,9.5,50,0.0 +23807,19,9.2,19,0.0 +23807,39,18,33,0.0 +23807,70,15,37,0.0 +23807,61,28.5,19,0.0 +23807,75,7.75,36,0.0 +23807,40,18.4,44,0.0 +23807,72,34.8,5,0.0 +23807,15,15.5,21,0.0 +23807,42,14,42,0.0 +23807,3,10,32,0.0 +23807,12,38,25,0.0 +23807,1,18,23,0.0 +23807,44,19.45,7,0.0 +23807,74,10,33,0.0 +23807,7,30,47,0.0 +23807,36,19,26,0.0 +23807,10,31,49,0.0 +23807,43,46,26,0.0 +23807,32,32,29,0.0 +23807,27,43.9,17,0.0 +23807,6,25,44,0.0 +23807,64,33.25,10,0.0 +23807,18,62.5,50,0.0 +23807,66,17,16,0.0 +23807,67,14,18,0.0 +23807,9,97,13,0.0 +23807,35,18,36,0.0 +23807,2,19,43,0.0 +23807,24,4.5,12,0.0 +23807,57,19.5,5,0.0 +23807,69,36,24,0.0 +23807,58,13.25,43,0.0 +23807,37,26,37,0.0 +23807,59,55,27,0.0 +23807,45,9.5,23,0.0 +23807,33,2.5,27,0.0 +23807,71,21.5,41,0.0 +23807,65,21.05,39,0.0 +23807,13,6,42,0.0 +23807,21,10,2,0.0 +23807,23,9,4,0.0 +23807,55,24,50,0.0 +23807,46,12,42,0.0 +23807,50,16.25,26,0.0 +23808,51,53,12,0.0 +23808,34,14,48,0.0 +23808,72,34.8,30,0.0 +23808,19,9.2,49,0.0 +23808,17,39,24,0.0 +23808,39,18,23,0.0 +23808,10,31,44,0.0 +23808,38,263.5,39,0.0 +23808,18,62.5,30,0.0 +23808,43,46,27,0.0 +23808,73,15,24,0.0 +23808,1,18,38,0.0 +23808,74,10,16,0.0 +23809,56,38,39,0.0 +23809,41,9.65,23,0.0 +23809,45,9.5,29,0.0 +23809,21,10,36,0.0 +23809,72,34.8,41,0.0 +23809,32,32,25,0.0 +23809,57,19.5,41,0.0 +23809,54,7.45,22,0.0 +23809,43,46,44,0.0 +23809,48,12.75,49,0.0 +23809,4,22,5,0.0 +23809,15,15.5,11,0.0 +23809,25,14,21,0.0 +23809,30,25.89,37,0.0 +23809,40,18.4,9,0.0 +23809,33,2.5,5,0.0 +23809,9,97,20,0.0 +23809,44,19.45,35,0.0 +23809,34,14,5,0.0 +23809,58,13.25,12,0.0 +23809,11,21,37,0.0 +23809,36,19,35,0.0 +23809,60,34,43,0.0 +23809,64,33.25,9,0.0 +23809,18,62.5,10,0.0 +23809,66,17,2,0.0 +23809,50,16.25,34,0.0 +23809,24,4.5,39,0.0 +23809,3,10,49,0.0 +23809,68,12.5,40,0.0 +23809,75,7.75,9,0.0 +23809,51,53,3,0.0 +23809,26,31.23,23,0.0 +23809,1,18,45,0.0 +23809,63,43.9,4,0.0 +23809,73,15,22,0.0 +23809,16,17.45,3,0.0 +23809,70,15,34,0.0 +23809,53,32.8,31,0.0 +23809,38,263.5,11,0.0 +23809,12,38,31,0.0 +23809,76,18,25,0.0 +23809,59,55,11,0.0 +23809,65,21.05,12,0.0 +23809,49,20,20,0.0 +23809,17,39,41,0.0 +23809,5,21.35,21,0.0 +23809,8,40,2,0.0 +23809,14,23.25,31,0.0 +23809,37,26,30,0.0 +23809,46,12,15,0.0 +23809,47,9.5,37,0.0 +23809,31,12.5,27,0.0 +23809,77,13,47,0.0 +23809,61,28.5,1,0.0 +23809,67,14,31,0.0 +23809,29,123.79,35,0.0 +23809,42,14,12,0.0 +23809,23,9,36,0.0 +23809,7,30,25,0.0 +23809,10,31,42,0.0 +23809,52,7,19,0.0 +23809,39,18,44,0.0 +23809,55,24,31,0.0 +23809,62,49.3,32,0.0 +23809,13,6,16,0.0 +23809,74,10,33,0.0 +23809,20,81,19,0.0 +23809,6,25,3,0.0 +23809,69,36,17,0.0 +23809,35,18,6,0.0 +23810,15,15.5,1,0.0 +23810,36,19,30,0.0 +23810,44,19.45,7,0.0 +23810,32,32,24,0.0 +23810,61,28.5,16,0.0 +23810,66,17,37,0.0 +23810,31,12.5,23,0.0 +23810,77,13,29,0.0 +23810,76,18,5,0.0 +23810,75,7.75,39,0.0 +23810,57,19.5,40,0.0 +23810,4,22,41,0.0 +23810,34,14,49,0.0 +23810,46,12,31,0.0 +23810,19,9.2,18,0.0 +23810,71,21.5,37,0.0 +23810,43,46,41,0.0 +23810,52,7,11,0.0 +23810,3,10,22,0.0 +23810,74,10,45,0.0 +23810,53,32.8,41,0.0 +23810,10,31,9,0.0 +23810,64,33.25,21,0.0 +23810,33,2.5,20,0.0 +23810,73,15,23,0.0 +23810,68,12.5,46,0.0 +23810,50,16.25,15,0.0 +23810,35,18,42,0.0 +23810,22,21,2,0.0 +23810,13,6,48,0.0 +23810,11,21,25,0.0 +23811,43,46,38,0.0 +23811,15,15.5,1,0.0 +23811,28,45.6,33,0.0 +23811,56,38,31,0.0 +23811,57,19.5,38,0.0 +23811,23,9,24,0.0 +23811,20,81,30,0.0 +23811,40,18.4,36,0.0 +23811,16,17.45,3,0.0 +23811,62,49.3,9,0.0 +23811,34,14,4,0.0 +23811,24,4.5,22,0.0 +23811,74,10,31,0.0 +23811,55,24,25,0.0 +23811,1,18,21,0.0 +23811,29,123.79,6,0.0 +23811,41,9.65,32,0.0 +23811,3,10,30,0.0 +23811,8,40,13,0.0 +23811,44,19.45,4,0.0 +23811,32,32,10,0.0 +23811,12,38,17,0.0 +23811,61,28.5,13,0.0 +23811,49,20,32,0.0 +23811,71,21.5,36,0.0 +23811,19,9.2,35,0.0 +23811,77,13,45,0.0 +23811,70,15,18,0.0 +23811,13,6,34,0.0 +23811,30,25.89,36,0.0 +23811,51,53,14,0.0 +23811,47,9.5,28,0.0 +23811,42,14,10,0.0 +23811,31,12.5,50,0.0 +23811,22,21,24,0.0 +23811,67,14,37,0.0 +23811,72,34.8,22,0.0 +23811,46,12,49,0.0 +23811,54,7.45,47,0.0 +23811,45,9.5,31,0.0 +23811,7,30,8,0.0 +23811,68,12.5,2,0.0 +23811,60,34,28,0.0 +23811,26,31.23,23,0.0 +23811,65,21.05,38,0.0 +23811,10,31,33,0.0 +23811,48,12.75,16,0.0 +23811,18,62.5,38,0.0 +23811,37,26,45,0.0 +23811,69,36,3,0.0 +23811,27,43.9,49,0.0 +23811,66,17,50,0.0 +23811,63,43.9,16,0.0 +23811,52,7,22,0.0 +23811,64,33.25,20,0.0 +23811,73,15,5,0.0 +23811,17,39,46,0.0 +23811,21,10,5,0.0 +23811,53,32.8,28,0.0 +23811,50,16.25,45,0.0 +23811,36,19,4,0.0 +23811,6,25,44,0.0 +23811,5,21.35,17,0.0 +23812,36,19,36,0.0 +23812,9,97,48,0.0 +23812,55,24,39,0.0 +23812,23,9,24,0.0 +23812,13,6,37,0.0 +23812,5,21.35,24,0.0 +23812,1,18,50,0.0 +23812,77,13,44,0.0 +23812,41,9.65,5,0.0 +23812,57,19.5,47,0.0 +23812,17,39,18,0.0 +23812,42,14,6,0.0 +23812,10,31,42,0.0 +23812,12,38,22,0.0 +23812,32,32,22,0.0 +23812,26,31.23,5,0.0 +23812,14,23.25,42,0.0 +23812,28,45.6,18,0.0 +23812,18,62.5,40,0.0 +23812,27,43.9,50,0.0 +23812,47,9.5,41,0.0 +23812,31,12.5,32,0.0 +23812,63,43.9,7,0.0 +23812,16,17.45,6,0.0 +23812,7,30,27,0.0 +23812,66,17,47,0.0 +23812,45,9.5,1,0.0 +23812,53,32.8,27,0.0 +23812,22,21,7,0.0 +23812,33,2.5,36,0.0 +23812,4,22,9,0.0 +23812,58,13.25,12,0.0 +23812,35,18,39,0.0 +23812,59,55,35,0.0 +23812,71,21.5,42,0.0 +23812,40,18.4,45,0.0 +23812,49,20,41,0.0 +23812,46,12,8,0.0 +23812,44,19.45,4,0.0 +23812,25,14,14,0.0 +23812,38,263.5,33,0.0 +23812,69,36,42,0.0 +23812,6,25,25,0.0 +23812,60,34,13,0.0 +23812,3,10,41,0.0 +23812,76,18,43,0.0 +23812,15,15.5,11,0.0 +23812,8,40,14,0.0 +23812,52,7,46,0.0 +23812,62,49.3,1,0.0 +23812,68,12.5,15,0.0 +23812,20,81,37,0.0 +23812,74,10,32,0.0 +23812,73,15,43,0.0 +23812,64,33.25,31,0.0 +23813,9,97,9,0.0 +23813,58,13.25,5,0.0 +23813,3,10,23,0.0 +23813,18,62.5,33,0.0 +23813,24,4.5,9,0.0 +23813,74,10,2,0.0 +23813,48,12.75,48,0.0 +23813,13,6,14,0.0 +23813,2,19,25,0.0 +23813,73,15,25,0.0 +23813,46,12,9,0.0 +23813,25,14,11,0.0 +23813,14,23.25,49,0.0 +23813,20,81,7,0.0 +23813,76,18,23,0.0 +23813,35,18,40,0.0 +23813,54,7.45,20,0.0 +23813,43,46,28,0.0 +23813,7,30,32,0.0 +23813,27,43.9,21,0.0 +23813,40,18.4,42,0.0 +23813,51,53,3,0.0 +23813,5,21.35,14,0.0 +23813,61,28.5,28,0.0 +23813,23,9,12,0.0 +23813,30,25.89,35,0.0 +23813,29,123.79,26,0.0 +23813,70,15,28,0.0 +23813,56,38,43,0.0 +23813,17,39,44,0.0 +23813,16,17.45,3,0.0 +23813,44,19.45,31,0.0 +23813,72,34.8,26,0.0 +23813,71,21.5,39,0.0 +23813,42,14,43,0.0 +23813,53,32.8,42,0.0 +23813,47,9.5,45,0.0 +23813,69,36,43,0.0 +23813,15,15.5,4,0.0 +23813,65,21.05,18,0.0 +23813,50,16.25,49,0.0 +23813,31,12.5,11,0.0 +23813,22,21,34,0.0 +23813,67,14,36,0.0 +23813,64,33.25,32,0.0 +23813,11,21,45,0.0 +23813,62,49.3,39,0.0 +23813,38,263.5,16,0.0 +23813,59,55,14,0.0 +23813,26,31.23,46,0.0 +23813,77,13,3,0.0 +23813,39,18,5,0.0 +23813,68,12.5,45,0.0 +23813,37,26,34,0.0 +23813,66,17,10,0.0 +23813,75,7.75,30,0.0 +23813,52,7,29,0.0 +23813,63,43.9,31,0.0 +23813,8,40,33,0.0 +23813,10,31,36,0.0 +23814,21,10,2,0.0 +23814,15,15.5,39,0.0 +23814,6,25,27,0.0 +23814,36,19,19,0.0 +23814,62,49.3,36,0.0 +23814,19,9.2,4,0.0 +23814,23,9,10,0.0 +23814,68,12.5,13,0.0 +23814,74,10,25,0.0 +23814,73,15,13,0.0 +23814,26,31.23,23,0.0 +23814,27,43.9,28,0.0 +23814,72,34.8,28,0.0 +23814,31,12.5,13,0.0 +23814,20,81,18,0.0 +23814,3,10,34,0.0 +23814,52,7,45,0.0 +23814,64,33.25,36,0.0 +23814,63,43.9,10,0.0 +23814,48,12.75,2,0.0 +23814,7,30,34,0.0 +23814,33,2.5,21,0.0 +23814,45,9.5,7,0.0 +23814,59,55,48,0.0 +23814,65,21.05,23,0.0 +23814,49,20,2,0.0 +23814,76,18,47,0.0 +23814,14,23.25,6,0.0 +23814,66,17,50,0.0 +23814,75,7.75,18,0.0 +23814,11,21,7,0.0 +23814,13,6,18,0.0 +23814,28,45.6,31,0.0 +23814,35,18,30,0.0 +23814,44,19.45,15,0.0 +23814,51,53,32,0.0 +23814,24,4.5,25,0.0 +23814,57,19.5,46,0.0 +23814,25,14,20,0.0 +23814,17,39,37,0.0 +23814,12,38,20,0.0 +23815,47,9.5,8,0.0 +23815,1,18,45,0.0 +23815,25,14,10,0.0 +23815,68,12.5,6,0.0 +23815,37,26,46,0.0 +23815,64,33.25,28,0.0 +23815,35,18,13,0.0 +23815,66,17,3,0.0 +23815,34,14,46,0.0 +23815,31,12.5,11,0.0 +23815,52,7,32,0.0 +23815,26,31.23,15,0.0 +23815,74,10,46,0.0 +23815,16,17.45,38,0.0 +23815,62,49.3,5,0.0 +23815,56,38,45,0.0 +23816,17,39,28,0.0 +23816,9,97,13,0.0 +23816,51,53,8,0.0 +23816,19,9.2,46,0.0 +23816,8,40,20,0.0 +23816,27,43.9,24,0.0 +23816,54,7.45,41,0.0 +23816,42,14,41,0.0 +23816,43,46,31,0.0 +23816,11,21,25,0.0 +23816,40,18.4,26,0.0 +23816,76,18,41,0.0 +23816,4,22,37,0.0 +23816,59,55,24,0.0 +23816,20,81,4,0.0 +23816,5,21.35,31,0.0 +23816,24,4.5,34,0.0 +23816,61,28.5,11,0.0 +23816,33,2.5,41,0.0 +23816,32,32,39,0.0 +23816,71,21.5,24,0.0 +23816,75,7.75,36,0.0 +23816,65,21.05,15,0.0 +23816,44,19.45,38,0.0 +23816,64,33.25,27,0.0 +23816,7,30,15,0.0 +23816,56,38,37,0.0 +23817,23,9,13,0.0 +23817,49,20,9,0.0 +23817,1,18,50,0.0 +23817,63,43.9,50,0.0 +23817,58,13.25,38,0.0 +23817,11,21,17,0.0 +23817,68,12.5,30,0.0 +23817,26,31.23,28,0.0 +23817,75,7.75,41,0.0 +23817,35,18,39,0.0 +23817,47,9.5,23,0.0 +23817,54,7.45,48,0.0 +23817,60,34,23,0.0 +23817,43,46,12,0.0 +23817,33,2.5,14,0.0 +23817,50,16.25,21,0.0 +23817,5,21.35,19,0.0 +23817,39,18,34,0.0 +23817,48,12.75,44,0.0 +23817,62,49.3,9,0.0 +23817,74,10,33,0.0 +23817,10,31,6,0.0 +23817,66,17,46,0.0 +23817,51,53,32,0.0 +23817,65,21.05,3,0.0 +23817,4,22,12,0.0 +23817,12,38,32,0.0 +23817,17,39,22,0.0 +23817,27,43.9,46,0.0 +23817,28,45.6,44,0.0 +23817,34,14,9,0.0 +23817,72,34.8,2,0.0 +23817,36,19,19,0.0 +23817,71,21.5,11,0.0 +23817,55,24,9,0.0 +23817,6,25,10,0.0 +23817,18,62.5,16,0.0 +23817,61,28.5,17,0.0 +23817,42,14,2,0.0 +23817,40,18.4,27,0.0 +23817,22,21,1,0.0 +23817,76,18,37,0.0 +23817,38,263.5,5,0.0 +23817,20,81,15,0.0 +23817,15,15.5,43,0.0 +23817,21,10,26,0.0 +23817,13,6,6,0.0 +23817,31,12.5,2,0.0 +23817,56,38,26,0.0 +23817,69,36,44,0.0 +23817,14,23.25,43,0.0 +23817,16,17.45,38,0.0 +23817,77,13,12,0.0 +23817,70,15,32,0.0 +23817,73,15,34,0.0 +23817,41,9.65,19,0.0 +23817,3,10,37,0.0 +23817,7,30,9,0.0 +23817,37,26,26,0.0 +23817,52,7,30,0.0 +23817,46,12,23,0.0 +23817,8,40,33,0.0 +23817,32,32,30,0.0 +23817,30,25.89,23,0.0 +23817,59,55,12,0.0 +23817,9,97,26,0.0 +23817,25,14,44,0.0 +23817,2,19,49,0.0 +23817,57,19.5,8,0.0 +23817,53,32.8,2,0.0 +23817,44,19.45,40,0.0 +23817,64,33.25,1,0.0 +23817,29,123.79,48,0.0 +23817,67,14,39,0.0 +23817,24,4.5,33,0.0 +23817,45,9.5,13,0.0 +23818,26,31.23,27,0.0 +23818,47,9.5,46,0.0 +23818,33,2.5,10,0.0 +23818,42,14,30,0.0 +23818,58,13.25,31,0.0 +23818,16,17.45,42,0.0 +23819,9,97,9,0.0 +23819,26,31.23,12,0.0 +23819,38,263.5,48,0.0 +23819,29,123.79,29,0.0 +23819,4,22,31,0.0 +23819,15,15.5,8,0.0 +23819,52,7,41,0.0 +23819,30,25.89,15,0.0 +23819,19,9.2,39,0.0 +23819,24,4.5,29,0.0 +23819,1,18,2,0.0 +23819,16,17.45,33,0.0 +23819,43,46,3,0.0 +23819,21,10,13,0.0 +23819,57,19.5,5,0.0 +23819,13,6,23,0.0 +23819,5,21.35,17,0.0 +23819,66,17,33,0.0 +23819,74,10,21,0.0 +23819,67,14,6,0.0 +23819,76,18,42,0.0 +23819,39,18,28,0.0 +23819,68,12.5,41,0.0 +23819,58,13.25,10,0.0 +23819,32,32,47,0.0 +23819,12,38,15,0.0 +23819,48,12.75,46,0.0 +23819,35,18,15,0.0 +23819,70,15,21,0.0 +23819,8,40,17,0.0 +23819,20,81,32,0.0 +23819,3,10,20,0.0 +23819,50,16.25,27,0.0 +23819,61,28.5,32,0.0 +23819,33,2.5,33,0.0 +23819,77,13,6,0.0 +23819,25,14,33,0.0 +23819,11,21,48,0.0 +23819,17,39,7,0.0 +23819,55,24,3,0.0 +23819,64,33.25,34,0.0 +23819,54,7.45,48,0.0 +23819,53,32.8,29,0.0 +23819,22,21,4,0.0 +23819,51,53,28,0.0 +23819,31,12.5,10,0.0 +23819,44,19.45,26,0.0 +23819,41,9.65,40,0.0 +23819,56,38,4,0.0 +23819,45,9.5,39,0.0 +23819,27,43.9,14,0.0 +23819,34,14,46,0.0 +23819,42,14,38,0.0 +23819,49,20,42,0.0 +23819,6,25,50,0.0 +23819,59,55,30,0.0 +23819,37,26,43,0.0 +23819,63,43.9,33,0.0 +23819,62,49.3,21,0.0 +23819,71,21.5,22,0.0 +23820,54,7.45,43,0.0 +23820,73,15,39,0.0 +23820,41,9.65,22,0.0 +23820,63,43.9,30,0.0 +23820,48,12.75,5,0.0 +23820,26,31.23,4,0.0 +23820,1,18,3,0.0 +23820,21,10,19,0.0 +23820,49,20,4,0.0 +23820,4,22,18,0.0 +23820,75,7.75,15,0.0 +23820,77,13,31,0.0 +23820,20,81,5,0.0 +23820,76,18,41,0.0 +23820,68,12.5,17,0.0 +23820,16,17.45,28,0.0 +23820,64,33.25,33,0.0 +23820,28,45.6,46,0.0 +23820,42,14,38,0.0 +23820,8,40,38,0.0 +23820,13,6,42,0.0 +23820,69,36,50,0.0 +23820,10,31,19,0.0 +23820,53,32.8,17,0.0 +23820,33,2.5,40,0.0 +23820,70,15,28,0.0 +23820,22,21,21,0.0 +23820,72,34.8,29,0.0 +23820,14,23.25,24,0.0 +23820,50,16.25,41,0.0 +23820,15,15.5,7,0.0 +23820,46,12,46,0.0 +23820,5,21.35,44,0.0 +23820,59,55,25,0.0 +23820,43,46,42,0.0 +23820,71,21.5,24,0.0 +23820,31,12.5,30,0.0 +23820,44,19.45,15,0.0 +23820,62,49.3,6,0.0 +23820,6,25,21,0.0 +23820,19,9.2,48,0.0 +23820,60,34,48,0.0 +23820,67,14,5,0.0 +23820,9,97,2,0.0 +23821,74,10,29,0.0 +23821,40,18.4,14,0.0 +23821,57,19.5,44,0.0 +23821,60,34,25,0.0 +23821,31,12.5,10,0.0 +23821,48,12.75,7,0.0 +23821,10,31,46,0.0 +23821,37,26,46,0.0 +23821,3,10,13,0.0 +23821,54,7.45,12,0.0 +23821,44,19.45,40,0.0 +23821,69,36,46,0.0 +23821,2,19,10,0.0 +23821,13,6,40,0.0 +23822,10,31,35,0.0 +23822,29,123.79,45,0.0 +23822,50,16.25,25,0.0 +23822,43,46,16,0.0 +23822,64,33.25,44,0.0 +23822,44,19.45,40,0.0 +23822,72,34.8,31,0.0 +23822,8,40,10,0.0 +23822,11,21,36,0.0 +23822,37,26,33,0.0 +23822,40,18.4,23,0.0 +23822,19,9.2,47,0.0 +23822,73,15,31,0.0 +23822,38,263.5,18,0.0 +23822,23,9,6,0.0 +23822,59,55,9,0.0 +23822,1,18,49,0.0 +23822,69,36,43,0.0 +23822,62,49.3,18,0.0 +23822,41,9.65,37,0.0 +23822,28,45.6,2,0.0 +23822,51,53,49,0.0 +23822,42,14,43,0.0 +23822,39,18,45,0.0 +23822,24,4.5,6,0.0 +23822,9,97,40,0.0 +23822,17,39,49,0.0 +23822,22,21,50,0.0 +23822,60,34,2,0.0 +23822,20,81,15,0.0 +23822,3,10,2,0.0 +23822,46,12,24,0.0 +23822,16,17.45,41,0.0 +23822,65,21.05,27,0.0 +23822,61,28.5,39,0.0 +23822,30,25.89,12,0.0 +23822,31,12.5,41,0.0 +23822,6,25,1,0.0 +23822,77,13,31,0.0 +23822,33,2.5,21,0.0 +23822,12,38,29,0.0 +23822,25,14,45,0.0 +23822,7,30,14,0.0 +23822,53,32.8,46,0.0 +23822,52,7,49,0.0 +23822,75,7.75,40,0.0 +23822,48,12.75,19,0.0 +23822,36,19,46,0.0 +23822,66,17,30,0.0 +23822,57,19.5,43,0.0 +23822,35,18,18,0.0 +23822,58,13.25,3,0.0 +23822,55,24,21,0.0 +23822,26,31.23,5,0.0 +23822,2,19,8,0.0 +23822,21,10,43,0.0 +23822,63,43.9,4,0.0 +23822,4,22,26,0.0 +23822,34,14,5,0.0 +23822,56,38,32,0.0 +23822,27,43.9,19,0.0 +23822,13,6,31,0.0 +23822,18,62.5,18,0.0 +23822,54,7.45,2,0.0 +23822,14,23.25,17,0.0 +23822,32,32,7,0.0 +23822,15,15.5,46,0.0 +23822,47,9.5,21,0.0 +23822,49,20,28,0.0 +23822,70,15,4,0.0 +23823,43,46,8,0.0 +23823,59,55,31,0.0 +23823,35,18,36,0.0 +23823,19,9.2,8,0.0 +23823,64,33.25,5,0.0 +23823,56,38,15,0.0 +23823,58,13.25,27,0.0 +23823,73,15,49,0.0 +23823,49,20,20,0.0 +23823,52,7,49,0.0 +23823,4,22,36,0.0 +23823,2,19,26,0.0 +23823,67,14,22,0.0 +23823,42,14,20,0.0 +23823,24,4.5,4,0.0 +23823,77,13,15,0.0 +23823,25,14,22,0.0 +23823,29,123.79,30,0.0 +23823,45,9.5,29,0.0 +23823,30,25.89,4,0.0 +23823,48,12.75,17,0.0 +23823,63,43.9,40,0.0 +23823,61,28.5,48,0.0 +23823,27,43.9,27,0.0 +23823,57,19.5,17,0.0 +23823,50,16.25,24,0.0 +23823,68,12.5,46,0.0 +23823,40,18.4,17,0.0 +23823,31,12.5,29,0.0 +23823,20,81,21,0.0 +23823,23,9,23,0.0 +23823,66,17,4,0.0 +23823,65,21.05,22,0.0 +23823,60,34,47,0.0 +23823,26,31.23,48,0.0 +23823,51,53,29,0.0 +23823,10,31,1,0.0 +23823,22,21,24,0.0 +23823,28,45.6,7,0.0 +23823,37,26,25,0.0 +23823,62,49.3,7,0.0 +23823,69,36,7,0.0 +23823,70,15,5,0.0 +23823,74,10,6,0.0 +23823,76,18,3,0.0 +23823,71,21.5,4,0.0 +23823,72,34.8,30,0.0 +23823,34,14,29,0.0 +23823,46,12,38,0.0 +23823,54,7.45,47,0.0 +23823,1,18,18,0.0 +23823,11,21,8,0.0 +23823,44,19.45,18,0.0 +23823,38,263.5,4,0.0 +23823,5,21.35,24,0.0 +23824,61,28.5,22,0.0 +23824,8,40,47,0.0 +23825,2,19,50,0.0 +23825,26,31.23,49,0.0 +23825,68,12.5,6,0.0 +23825,50,16.25,15,0.0 +23825,42,14,2,0.0 +23825,77,13,33,0.0 +23825,43,46,19,0.0 +23825,74,10,20,0.0 +23825,20,81,6,0.0 +23825,36,19,25,0.0 +23825,31,12.5,25,0.0 +23825,52,7,40,0.0 +23825,30,25.89,28,0.0 +23825,5,21.35,40,0.0 +23825,35,18,50,0.0 +23825,60,34,47,0.0 +23825,17,39,2,0.0 +23825,65,21.05,11,0.0 +23825,23,9,17,0.0 +23825,53,32.8,31,0.0 +23825,39,18,48,0.0 +23825,71,21.5,29,0.0 +23825,49,20,21,0.0 +23825,34,14,16,0.0 +23826,45,9.5,26,0.0 +23826,20,81,25,0.0 +23826,66,17,4,0.0 +23826,77,13,49,0.0 +23826,26,31.23,45,0.0 +23827,69,36,49,0.0 +23827,23,9,5,0.0 +23827,77,13,41,0.0 +23827,12,38,29,0.0 +23827,38,263.5,49,0.0 +23827,70,15,12,0.0 +23827,3,10,28,0.0 +23827,71,21.5,33,0.0 +23827,65,21.05,6,0.0 +23827,49,20,4,0.0 +23827,30,25.89,36,0.0 +23827,9,97,39,0.0 +23827,54,7.45,36,0.0 +23827,13,6,41,0.0 +23827,27,43.9,16,0.0 +23827,14,23.25,27,0.0 +23827,5,21.35,3,0.0 +23827,76,18,40,0.0 +23827,64,33.25,2,0.0 +23828,75,7.75,3,0.0 +23828,71,21.5,13,0.0 +23828,13,6,27,0.0 +23828,39,18,32,0.0 +23828,58,13.25,20,0.0 +23828,40,18.4,33,0.0 +23828,63,43.9,47,0.0 +23828,76,18,2,0.0 +23828,20,81,46,0.0 +23828,26,31.23,10,0.0 +23828,25,14,28,0.0 +23828,28,45.6,9,0.0 +23828,11,21,10,0.0 +23828,70,15,50,0.0 +23828,49,20,50,0.0 +23828,52,7,41,0.0 +23828,65,21.05,29,0.0 +23828,64,33.25,44,0.0 +23828,34,14,42,0.0 +23828,59,55,9,0.0 +23828,15,15.5,41,0.0 +23828,9,97,30,0.0 +23828,50,16.25,1,0.0 +23828,14,23.25,14,0.0 +23828,4,22,32,0.0 +23828,16,17.45,37,0.0 +23828,2,19,11,0.0 +23828,56,38,18,0.0 +23828,6,25,19,0.0 +23828,57,19.5,6,0.0 +23828,44,19.45,8,0.0 +23828,5,21.35,46,0.0 +23828,42,14,22,0.0 +23828,30,25.89,13,0.0 +23828,54,7.45,42,0.0 +23828,77,13,28,0.0 +23828,18,62.5,29,0.0 +23828,73,15,5,0.0 +23828,32,32,7,0.0 +23828,68,12.5,9,0.0 +23828,24,4.5,25,0.0 +23828,3,10,2,0.0 +23828,17,39,19,0.0 +23828,47,9.5,23,0.0 +23828,36,19,47,0.0 +23829,57,19.5,47,0.0 +23829,15,15.5,42,0.0 +23829,1,18,9,0.0 +23829,19,9.2,31,0.0 +23829,39,18,36,0.0 +23829,38,263.5,7,0.0 +23829,54,7.45,18,0.0 +23829,70,15,24,0.0 +23829,23,9,46,0.0 +23829,8,40,1,0.0 +23829,14,23.25,22,0.0 +23829,65,21.05,46,0.0 +23829,33,2.5,16,0.0 +23829,63,43.9,44,0.0 +23829,48,12.75,9,0.0 +23829,61,28.5,2,0.0 +23829,58,13.25,7,0.0 +23829,6,25,24,0.0 +23829,17,39,5,0.0 +23829,56,38,20,0.0 +23829,42,14,24,0.0 +23829,34,14,19,0.0 +23829,59,55,8,0.0 +23829,45,9.5,5,0.0 +23829,46,12,9,0.0 +23829,40,18.4,39,0.0 +23829,37,26,5,0.0 +23829,77,13,26,0.0 +23829,16,17.45,3,0.0 +23829,69,36,50,0.0 +23829,12,38,24,0.0 +23830,44,19.45,19,0.0 +23830,66,17,50,0.0 +23830,67,14,39,0.0 +23830,19,9.2,12,0.0 +23830,75,7.75,8,0.0 +23830,15,15.5,31,0.0 +23830,23,9,7,0.0 +23831,49,20,2,0.0 +23831,27,43.9,13,0.0 +23831,44,19.45,35,0.0 +23831,37,26,47,0.0 +23831,76,18,39,0.0 +23831,66,17,27,0.0 +23831,72,34.8,4,0.0 +23831,56,38,25,0.0 +23831,2,19,28,0.0 +23831,7,30,45,0.0 +23831,50,16.25,8,0.0 +23831,70,15,35,0.0 +23831,57,19.5,3,0.0 +23831,15,15.5,36,0.0 +23831,67,14,30,0.0 +23831,4,22,7,0.0 +23831,62,49.3,29,0.0 +23831,1,18,40,0.0 +23831,38,263.5,48,0.0 +23831,24,4.5,36,0.0 +23831,21,10,10,0.0 +23832,30,25.89,39,0.0 +23832,65,21.05,4,0.0 +23832,34,14,18,0.0 +23832,47,9.5,36,0.0 +23832,75,7.75,12,0.0 +23832,73,15,24,0.0 +23832,37,26,20,0.0 +23832,33,2.5,20,0.0 +23832,22,21,29,0.0 +23832,77,13,18,0.0 +23832,18,62.5,29,0.0 +23832,35,18,37,0.0 +23832,68,12.5,48,0.0 +23832,8,40,11,0.0 +23833,29,123.79,17,0.0 +23833,53,32.8,27,0.0 +23833,9,97,5,0.0 +23833,21,10,47,0.0 +23833,35,18,10,0.0 +23833,10,31,15,0.0 +23833,3,10,21,0.0 +23833,62,49.3,48,0.0 +23833,41,9.65,23,0.0 +23833,13,6,36,0.0 +23833,36,19,42,0.0 +23833,58,13.25,40,0.0 +23833,38,263.5,50,0.0 +23833,43,46,33,0.0 +23833,20,81,37,0.0 +23833,48,12.75,25,0.0 +23833,19,9.2,5,0.0 +23833,42,14,16,0.0 +23833,72,34.8,32,0.0 +23833,52,7,41,0.0 +23833,60,34,37,0.0 +23833,50,16.25,19,0.0 +23833,45,9.5,47,0.0 +23833,28,45.6,32,0.0 +23833,63,43.9,50,0.0 +23833,25,14,35,0.0 +23833,55,24,16,0.0 +23833,54,7.45,37,0.0 +23833,6,25,10,0.0 +23833,44,19.45,13,0.0 +23833,59,55,40,0.0 +23833,22,21,1,0.0 +23833,32,32,6,0.0 +23833,76,18,16,0.0 +23833,64,33.25,19,0.0 +23833,26,31.23,47,0.0 +23833,17,39,37,0.0 +23833,12,38,9,0.0 +23833,73,15,12,0.0 +23833,77,13,39,0.0 +23833,67,14,35,0.0 +23833,75,7.75,48,0.0 +23833,14,23.25,9,0.0 +23833,49,20,42,0.0 +23833,66,17,5,0.0 +23833,7,30,29,0.0 +23833,51,53,3,0.0 +23833,5,21.35,21,0.0 +23833,4,22,33,0.0 +23833,1,18,33,0.0 +23833,34,14,44,0.0 +23834,45,9.5,16,0.0 +23834,14,23.25,20,0.0 +23834,58,13.25,31,0.0 +23834,56,38,27,0.0 +23834,36,19,46,0.0 +23834,71,21.5,35,0.0 +23834,32,32,6,0.0 +23834,64,33.25,24,0.0 +23834,26,31.23,13,0.0 +23834,17,39,32,0.0 +23834,68,12.5,20,0.0 +23834,10,31,28,0.0 +23834,40,18.4,38,0.0 +23834,59,55,47,0.0 +23834,52,7,29,0.0 +23834,16,17.45,40,0.0 +23834,1,18,23,0.0 +23834,23,9,39,0.0 +23834,65,21.05,2,0.0 +23834,4,22,44,0.0 +23834,49,20,10,0.0 +23834,37,26,10,0.0 +23834,21,10,44,0.0 +23834,60,34,22,0.0 +23834,33,2.5,10,0.0 +23834,9,97,4,0.0 +23834,57,19.5,36,0.0 +23834,69,36,47,0.0 +23834,43,46,3,0.0 +23834,66,17,46,0.0 +23834,35,18,24,0.0 +23834,3,10,32,0.0 +23834,2,19,23,0.0 +23834,73,15,14,0.0 +23834,44,19.45,23,0.0 +23834,46,12,49,0.0 +23834,70,15,18,0.0 +23834,19,9.2,3,0.0 +23834,62,49.3,28,0.0 +23834,54,7.45,21,0.0 +23834,29,123.79,43,0.0 +23834,47,9.5,15,0.0 +23834,25,14,49,0.0 +23834,11,21,1,0.0 +23834,18,62.5,14,0.0 +23834,30,25.89,36,0.0 +23834,48,12.75,37,0.0 +23834,8,40,36,0.0 +23834,61,28.5,8,0.0 +23834,22,21,32,0.0 +23834,12,38,50,0.0 +23834,7,30,48,0.0 +23834,75,7.75,7,0.0 +23834,72,34.8,19,0.0 +23834,74,10,25,0.0 +23834,6,25,49,0.0 +23834,24,4.5,3,0.0 +23834,76,18,5,0.0 +23834,38,263.5,2,0.0 +23834,67,14,5,0.0 +23834,77,13,33,0.0 +23834,27,43.9,10,0.0 +23834,41,9.65,49,0.0 +23834,51,53,50,0.0 +23834,39,18,26,0.0 +23834,50,16.25,3,0.0 +23834,5,21.35,40,0.0 +23834,20,81,10,0.0 +23834,53,32.8,28,0.0 +23834,28,45.6,20,0.0 +23834,13,6,46,0.0 +23834,34,14,46,0.0 +23834,42,14,8,0.0 +23834,31,12.5,23,0.0 +23834,15,15.5,50,0.0 +23834,63,43.9,41,0.0 +23835,73,15,6,0.0 +23835,4,22,38,0.0 +23835,70,15,6,0.0 +23835,8,40,3,0.0 +23835,17,39,50,0.0 +23835,39,18,3,0.0 +23835,42,14,35,0.0 +23835,12,38,9,0.0 +23836,12,38,34,0.0 +23836,25,14,13,0.0 +23836,7,30,21,0.0 +23836,45,9.5,33,0.0 +23836,49,20,34,0.0 +23836,64,33.25,37,0.0 +23836,17,39,22,0.0 +23836,51,53,3,0.0 +23836,36,19,44,0.0 +23836,29,123.79,30,0.0 +23836,37,26,48,0.0 +23836,38,263.5,1,0.0 +23836,34,14,4,0.0 +23837,42,14,9,0.0 +23837,69,36,35,0.0 +23837,49,20,10,0.0 +23837,52,7,28,0.0 +23837,46,12,11,0.0 +23837,64,33.25,14,0.0 +23837,11,21,36,0.0 +23837,58,13.25,3,0.0 +23837,16,17.45,32,0.0 +23837,23,9,20,0.0 +23837,53,32.8,7,0.0 +23837,51,53,26,0.0 +23837,15,15.5,12,0.0 +23837,59,55,1,0.0 +23837,6,25,7,0.0 +23837,32,32,5,0.0 +23837,39,18,30,0.0 +23837,60,34,6,0.0 +23837,44,19.45,2,0.0 +23837,28,45.6,8,0.0 +23837,26,31.23,30,0.0 +23837,56,38,17,0.0 +23837,4,22,23,0.0 +23837,5,21.35,17,0.0 +23837,73,15,35,0.0 +23837,13,6,18,0.0 +23837,24,4.5,20,0.0 +23837,22,21,30,0.0 +23837,75,7.75,16,0.0 +23837,34,14,45,0.0 +23837,57,19.5,14,0.0 +23837,25,14,1,0.0 +23837,21,10,4,0.0 +23837,10,31,29,0.0 +23837,77,13,40,0.0 +23837,30,25.89,37,0.0 +23837,18,62.5,8,0.0 +23837,33,2.5,34,0.0 +23837,68,12.5,42,0.0 +23837,3,10,18,0.0 +23837,38,263.5,9,0.0 +23837,45,9.5,25,0.0 +23837,7,30,34,0.0 +23837,62,49.3,47,0.0 +23837,31,12.5,26,0.0 +23837,8,40,35,0.0 +23837,70,15,23,0.0 +23837,14,23.25,31,0.0 +23837,37,26,18,0.0 +23837,1,18,17,0.0 +23837,66,17,44,0.0 +23837,40,18.4,15,0.0 +23837,47,9.5,5,0.0 +23837,76,18,46,0.0 +23837,2,19,50,0.0 +23837,17,39,50,0.0 +23837,29,123.79,9,0.0 +23837,63,43.9,32,0.0 +23837,50,16.25,28,0.0 +23837,71,21.5,33,0.0 +23837,55,24,44,0.0 +23837,35,18,3,0.0 +23837,48,12.75,37,0.0 +23837,65,21.05,1,0.0 +23837,19,9.2,16,0.0 +23837,72,34.8,10,0.0 +23837,67,14,44,0.0 +23837,12,38,27,0.0 +23837,41,9.65,44,0.0 +23837,61,28.5,18,0.0 +23838,74,10,26,0.0 +23838,75,7.75,10,0.0 +23838,14,23.25,1,0.0 +23838,31,12.5,27,0.0 +23838,48,12.75,19,0.0 +23838,66,17,15,0.0 +23838,50,16.25,31,0.0 +23838,20,81,12,0.0 +23838,1,18,49,0.0 +23838,45,9.5,27,0.0 +23838,2,19,42,0.0 +23838,47,9.5,4,0.0 +23838,64,33.25,2,0.0 +23838,56,38,46,0.0 +23838,32,32,27,0.0 +23838,53,32.8,40,0.0 +23838,67,14,36,0.0 +23838,25,14,48,0.0 +23838,46,12,9,0.0 +23838,57,19.5,9,0.0 +23838,70,15,30,0.0 +23838,33,2.5,28,0.0 +23838,39,18,34,0.0 +23838,7,30,42,0.0 +23838,61,28.5,19,0.0 +23838,34,14,10,0.0 +23838,68,12.5,29,0.0 +23838,65,21.05,37,0.0 +23838,22,21,36,0.0 +23838,60,34,5,0.0 +23838,29,123.79,14,0.0 +23838,43,46,24,0.0 +23838,13,6,50,0.0 +23838,44,19.45,18,0.0 +23838,49,20,15,0.0 +23838,11,21,14,0.0 +23838,58,13.25,29,0.0 +23838,24,4.5,18,0.0 +23838,21,10,6,0.0 +23838,54,7.45,33,0.0 +23838,18,62.5,18,0.0 +23838,17,39,25,0.0 +23838,69,36,15,0.0 +23838,15,15.5,1,0.0 +23838,71,21.5,23,0.0 +23838,27,43.9,17,0.0 +23838,41,9.65,11,0.0 +23838,37,26,31,0.0 +23838,28,45.6,2,0.0 +23838,52,7,3,0.0 +23838,19,9.2,18,0.0 +23838,3,10,12,0.0 +23838,55,24,37,0.0 +23838,10,31,44,0.0 +23838,9,97,43,0.0 +23838,26,31.23,45,0.0 +23838,51,53,41,0.0 +23838,59,55,40,0.0 +23838,63,43.9,40,0.0 +23838,12,38,5,0.0 +23838,77,13,17,0.0 +23838,35,18,36,0.0 +23838,73,15,4,0.0 +23838,30,25.89,41,0.0 +23838,40,18.4,29,0.0 +23838,23,9,45,0.0 +23838,38,263.5,4,0.0 +23838,42,14,47,0.0 +23838,16,17.45,23,0.0 +23838,36,19,21,0.0 +23838,5,21.35,40,0.0 +23838,4,22,42,0.0 +23838,76,18,27,0.0 +23838,8,40,32,0.0 +23839,63,43.9,33,0.0 +23839,70,15,3,0.0 +23839,3,10,14,0.0 +23839,42,14,18,0.0 +23839,59,55,22,0.0 +23839,31,12.5,29,0.0 +23839,25,14,17,0.0 +23839,62,49.3,29,0.0 +23839,36,19,11,0.0 +23839,48,12.75,39,0.0 +23839,4,22,39,0.0 +23839,33,2.5,30,0.0 +23839,23,9,25,0.0 +23839,7,30,32,0.0 +23839,58,13.25,49,0.0 +23839,75,7.75,5,0.0 +23839,18,62.5,17,0.0 +23839,11,21,40,0.0 +23839,5,21.35,46,0.0 +23839,73,15,22,0.0 +23839,15,15.5,29,0.0 +23839,1,18,40,0.0 +23839,24,4.5,2,0.0 +23839,38,263.5,1,0.0 +23839,74,10,50,0.0 +23839,69,36,3,0.0 +23839,27,43.9,33,0.0 +23839,43,46,42,0.0 +23839,29,123.79,20,0.0 +23839,21,10,20,0.0 +23839,55,24,40,0.0 +23839,37,26,13,0.0 +23839,65,21.05,43,0.0 +23839,39,18,48,0.0 +23839,34,14,30,0.0 +23839,35,18,33,0.0 +23839,54,7.45,23,0.0 +23839,46,12,28,0.0 +23839,67,14,50,0.0 +23839,22,21,47,0.0 +23839,61,28.5,7,0.0 +23839,13,6,38,0.0 +23839,44,19.45,11,0.0 +23839,41,9.65,2,0.0 +23839,51,53,18,0.0 +23839,77,13,21,0.0 +23839,9,97,19,0.0 +23839,6,25,50,0.0 +23839,49,20,48,0.0 +23839,66,17,13,0.0 +23839,52,7,22,0.0 +23839,28,45.6,7,0.0 +23839,45,9.5,31,0.0 +23839,14,23.25,40,0.0 +23839,16,17.45,47,0.0 +23839,71,21.5,13,0.0 +23839,40,18.4,36,0.0 +23839,8,40,48,0.0 +23840,72,34.8,2,0.0 +23840,5,21.35,36,0.0 +23840,15,15.5,16,0.0 +23840,55,24,22,0.0 +23840,51,53,1,0.0 +23840,28,45.6,20,0.0 +23840,21,10,43,0.0 +23840,14,23.25,18,0.0 +23840,54,7.45,50,0.0 +23840,57,19.5,36,0.0 +23840,48,12.75,2,0.0 +23840,1,18,5,0.0 +23840,45,9.5,50,0.0 +23840,65,21.05,41,0.0 +23840,75,7.75,14,0.0 +23840,36,19,50,0.0 +23840,41,9.65,11,0.0 +23840,18,62.5,7,0.0 +23840,9,97,47,0.0 +23840,66,17,49,0.0 +23840,76,18,36,0.0 +23840,16,17.45,40,0.0 +23840,68,12.5,20,0.0 +23840,77,13,22,0.0 +23840,3,10,4,0.0 +23840,6,25,44,0.0 +23840,35,18,15,0.0 +23840,38,263.5,19,0.0 +23840,17,39,16,0.0 +23840,53,32.8,18,0.0 +23840,42,14,4,0.0 +23840,69,36,20,0.0 +23840,8,40,31,0.0 +23840,10,31,42,0.0 +23840,30,25.89,28,0.0 +23840,47,9.5,39,0.0 +23840,37,26,15,0.0 +23840,62,49.3,6,0.0 +23840,20,81,15,0.0 +23840,32,32,15,0.0 +23840,49,20,46,0.0 +23840,27,43.9,23,0.0 +23840,25,14,37,0.0 +23840,56,38,5,0.0 +23840,31,12.5,15,0.0 +23840,19,9.2,24,0.0 +23840,40,18.4,12,0.0 +23840,4,22,15,0.0 +23840,60,34,30,0.0 +23840,22,21,19,0.0 +23840,59,55,20,0.0 +23840,23,9,28,0.0 +23840,24,4.5,35,0.0 +23840,11,21,10,0.0 +23840,70,15,15,0.0 +23840,64,33.25,21,0.0 +23840,39,18,46,0.0 +23840,67,14,4,0.0 +23840,46,12,20,0.0 +23840,34,14,23,0.0 +23840,12,38,31,0.0 +23840,52,7,43,0.0 +23840,44,19.45,16,0.0 +23840,2,19,41,0.0 +23840,43,46,36,0.0 +23840,71,21.5,8,0.0 +23840,61,28.5,39,0.0 +23840,7,30,7,0.0 +23840,33,2.5,13,0.0 +23840,29,123.79,37,0.0 +23840,13,6,36,0.0 +23840,73,15,22,0.0 +23841,34,14,41,0.0 +23841,55,24,14,0.0 +23841,21,10,3,0.0 +23841,22,21,10,0.0 +23841,67,14,45,0.0 +23841,2,19,11,0.0 +23841,36,19,10,0.0 +23841,59,55,26,0.0 +23841,29,123.79,4,0.0 +23841,53,32.8,41,0.0 +23841,37,26,6,0.0 +23841,16,17.45,23,0.0 +23841,77,13,19,0.0 +23841,76,18,47,0.0 +23841,28,45.6,11,0.0 +23841,27,43.9,17,0.0 +23841,54,7.45,6,0.0 +23841,51,53,38,0.0 +23841,38,263.5,42,0.0 +23841,64,33.25,48,0.0 +23841,4,22,36,0.0 +23841,26,31.23,37,0.0 +23841,46,12,10,0.0 +23841,19,9.2,48,0.0 +23841,69,36,35,0.0 +23841,30,25.89,49,0.0 +23841,20,81,30,0.0 +23841,66,17,15,0.0 +23841,47,9.5,23,0.0 +23842,71,21.5,16,0.0 +23842,35,18,2,0.0 +23842,40,18.4,34,0.0 +23842,33,2.5,50,0.0 +23842,20,81,40,0.0 +23842,29,123.79,25,0.0 +23842,53,32.8,49,0.0 +23842,55,24,24,0.0 +23842,45,9.5,5,0.0 +23842,47,9.5,39,0.0 +23842,49,20,20,0.0 +23842,3,10,29,0.0 +23842,32,32,13,0.0 +23842,25,14,27,0.0 +23842,76,18,15,0.0 +23843,15,15.5,16,0.0 +23843,33,2.5,29,0.0 +23843,6,25,28,0.0 +23843,1,18,1,0.0 +23843,32,32,6,0.0 +23843,42,14,38,0.0 +23843,34,14,37,0.0 +23843,57,19.5,36,0.0 +23843,14,23.25,22,0.0 +23843,47,9.5,12,0.0 +23843,48,12.75,24,0.0 +23843,27,43.9,49,0.0 +23843,2,19,49,0.0 +23843,68,12.5,3,0.0 +23843,51,53,19,0.0 +23843,36,19,18,0.0 +23843,40,18.4,47,0.0 +23843,28,45.6,33,0.0 +23843,20,81,24,0.0 +23843,77,13,48,0.0 +23843,23,9,48,0.0 +23843,38,263.5,16,0.0 +23843,17,39,36,0.0 +23843,24,4.5,44,0.0 +23843,65,21.05,50,0.0 +23843,43,46,13,0.0 +23843,39,18,27,0.0 +23843,35,18,1,0.0 +23843,41,9.65,17,0.0 +23843,71,21.5,5,0.0 +23843,46,12,48,0.0 +23843,69,36,37,0.0 +23843,29,123.79,16,0.0 +23843,64,33.25,29,0.0 +23843,70,15,38,0.0 +23843,44,19.45,23,0.0 +23843,75,7.75,15,0.0 +23843,3,10,11,0.0 +23843,52,7,25,0.0 +23843,11,21,32,0.0 +23843,31,12.5,21,0.0 +23843,13,6,25,0.0 +23843,63,43.9,4,0.0 +23843,54,7.45,19,0.0 +23843,16,17.45,42,0.0 +23843,45,9.5,17,0.0 +23843,62,49.3,20,0.0 +23843,66,17,50,0.0 +23843,26,31.23,1,0.0 +23843,21,10,27,0.0 +23843,58,13.25,11,0.0 +23843,73,15,5,0.0 +23843,12,38,22,0.0 +23843,18,62.5,12,0.0 +23843,61,28.5,2,0.0 +23843,59,55,39,0.0 +23843,60,34,25,0.0 +23843,76,18,47,0.0 +23843,50,16.25,40,0.0 +23843,25,14,12,0.0 +23843,53,32.8,16,0.0 +23843,56,38,17,0.0 +23843,67,14,30,0.0 +23843,8,40,31,0.0 +23843,49,20,26,0.0 +23843,72,34.8,10,0.0 +23843,10,31,29,0.0 +23843,22,21,35,0.0 +23843,74,10,42,0.0 +23843,19,9.2,19,0.0 +23843,55,24,49,0.0 +23843,5,21.35,32,0.0 +23843,37,26,21,0.0 +23843,9,97,36,0.0 +23843,7,30,6,0.0 +23843,4,22,18,0.0 +23843,30,25.89,36,0.0 +23844,30,25.89,1,0.0 +23844,15,15.5,34,0.0 +23844,62,49.3,32,0.0 +23844,23,9,31,0.0 +23844,76,18,6,0.0 +23844,36,19,34,0.0 +23844,74,10,32,0.0 +23844,33,2.5,34,0.0 +23844,73,15,25,0.0 +23844,20,81,41,0.0 +23844,41,9.65,37,0.0 +23844,29,123.79,16,0.0 +23844,54,7.45,12,0.0 +23844,9,97,29,0.0 +23845,56,38,5,0.0 +23845,11,21,13,0.0 +23845,5,21.35,40,0.0 +23846,68,12.5,10,0.0 +23846,70,15,35,0.0 +23846,3,10,12,0.0 +23846,56,38,37,0.0 +23846,67,14,29,0.0 +23846,4,22,5,0.0 +23846,58,13.25,44,0.0 +23846,73,15,45,0.0 +23846,30,25.89,22,0.0 +23846,13,6,21,0.0 +23846,7,30,27,0.0 +23846,27,43.9,24,0.0 +23846,18,62.5,46,0.0 +23846,40,18.4,9,0.0 +23846,65,21.05,42,0.0 +23846,48,12.75,1,0.0 +23846,16,17.45,2,0.0 +23846,62,49.3,9,0.0 +23846,8,40,41,0.0 +23846,32,32,48,0.0 +23846,1,18,36,0.0 +23846,35,18,48,0.0 +23846,71,21.5,19,0.0 +23846,10,31,27,0.0 +23846,51,53,4,0.0 +23846,52,7,20,0.0 +23846,24,4.5,1,0.0 +23846,42,14,14,0.0 +23846,76,18,37,0.0 +23846,59,55,31,0.0 +23846,38,263.5,28,0.0 +23846,19,9.2,32,0.0 +23846,43,46,43,0.0 +23846,2,19,1,0.0 +23846,12,38,16,0.0 +23846,74,10,17,0.0 +23846,17,39,10,0.0 +23846,23,9,29,0.0 +23846,75,7.75,17,0.0 +23846,33,2.5,7,0.0 +23846,54,7.45,3,0.0 +23846,69,36,22,0.0 +23846,22,21,34,0.0 +23846,20,81,10,0.0 +23846,61,28.5,45,0.0 +23846,31,12.5,42,0.0 +23846,57,19.5,28,0.0 +23846,25,14,7,0.0 +23846,63,43.9,34,0.0 +23846,28,45.6,6,0.0 +23846,50,16.25,25,0.0 +23846,60,34,35,0.0 +23846,53,32.8,34,0.0 +23846,26,31.23,48,0.0 +23846,77,13,5,0.0 +23846,55,24,17,0.0 +23847,19,9.2,43,0.0 +23847,75,7.75,17,0.0 +23847,73,15,13,0.0 +23847,46,12,6,0.0 +23847,33,2.5,5,0.0 +23847,55,24,41,0.0 +23847,44,19.45,43,0.0 +23847,35,18,41,0.0 +23847,49,20,3,0.0 +23847,8,40,15,0.0 +23847,5,21.35,16,0.0 +23847,57,19.5,20,0.0 +23847,29,123.79,6,0.0 +23847,10,31,33,0.0 +23847,36,19,36,0.0 +23847,59,55,20,0.0 +23847,66,17,43,0.0 +23847,16,17.45,6,0.0 +23847,25,14,10,0.0 +23847,54,7.45,25,0.0 +23847,11,21,3,0.0 +23847,9,97,35,0.0 +23847,40,18.4,20,0.0 +23847,53,32.8,46,0.0 +23847,7,30,20,0.0 +23847,60,34,9,0.0 +23847,45,9.5,3,0.0 +23847,15,15.5,44,0.0 +23847,68,12.5,35,0.0 +23847,34,14,32,0.0 +23847,26,31.23,44,0.0 +23847,28,45.6,13,0.0 +23847,43,46,14,0.0 +23847,22,21,17,0.0 +23847,38,263.5,19,0.0 +23847,74,10,26,0.0 +23847,12,38,24,0.0 +23847,17,39,46,0.0 +23847,67,14,3,0.0 +23847,32,32,12,0.0 +23847,23,9,48,0.0 +23847,63,43.9,13,0.0 +23847,50,16.25,21,0.0 +23847,71,21.5,23,0.0 +23847,20,81,47,0.0 +23847,2,19,44,0.0 +23847,47,9.5,19,0.0 +23847,13,6,44,0.0 +23847,4,22,37,0.0 +23847,61,28.5,33,0.0 +23847,21,10,11,0.0 +23847,3,10,30,0.0 +23847,6,25,39,0.0 +23847,69,36,30,0.0 +23847,24,4.5,27,0.0 +23847,1,18,21,0.0 +23847,64,33.25,50,0.0 +23847,18,62.5,47,0.0 +23847,41,9.65,44,0.0 +23847,30,25.89,28,0.0 +23847,31,12.5,39,0.0 +23847,48,12.75,8,0.0 +23847,27,43.9,46,0.0 +23847,70,15,22,0.0 +23847,72,34.8,40,0.0 +23847,65,21.05,41,0.0 +23848,46,12,48,0.0 +23848,37,26,42,0.0 +23848,4,22,6,0.0 +23848,51,53,7,0.0 +23848,47,9.5,11,0.0 +23848,27,43.9,41,0.0 +23848,17,39,44,0.0 +23848,12,38,41,0.0 +23848,68,12.5,38,0.0 +23848,74,10,48,0.0 +23848,22,21,43,0.0 +23848,63,43.9,11,0.0 +23848,21,10,44,0.0 +23848,70,15,44,0.0 +23848,50,16.25,18,0.0 +23848,40,18.4,6,0.0 +23849,16,17.45,2,0.0 +23849,72,34.8,23,0.0 +23849,55,24,50,0.0 +23849,62,49.3,39,0.0 +23849,59,55,27,0.0 +23849,76,18,39,0.0 +23849,5,21.35,40,0.0 +23849,68,12.5,14,0.0 +23849,38,263.5,47,0.0 +23849,66,17,39,0.0 +23849,54,7.45,43,0.0 +23849,3,10,9,0.0 +23849,26,31.23,31,0.0 +23850,64,33.25,34,0.0 +23850,2,19,36,0.0 +23850,63,43.9,24,0.0 +23850,32,32,9,0.0 +23850,66,17,7,0.0 +23850,75,7.75,20,0.0 +23850,51,53,7,0.0 +23850,40,18.4,9,0.0 +23850,24,4.5,19,0.0 +23850,26,31.23,38,0.0 +23850,10,31,13,0.0 +23850,69,36,18,0.0 +23850,31,12.5,23,0.0 +23850,36,19,1,0.0 +23850,74,10,3,0.0 +23850,56,38,31,0.0 +23850,54,7.45,50,0.0 +23850,30,25.89,6,0.0 +23850,38,263.5,47,0.0 +23850,42,14,29,0.0 +23850,37,26,12,0.0 +23850,9,97,28,0.0 +23850,8,40,22,0.0 +23850,20,81,50,0.0 +23850,15,15.5,25,0.0 +23850,68,12.5,21,0.0 +23850,76,18,23,0.0 +23850,11,21,35,0.0 +23850,6,25,19,0.0 +23850,72,34.8,5,0.0 +23850,34,14,34,0.0 +23850,73,15,43,0.0 +23850,3,10,40,0.0 +23850,19,9.2,44,0.0 +23850,59,55,50,0.0 +23850,46,12,20,0.0 +23850,27,43.9,29,0.0 +23850,57,19.5,33,0.0 +23850,53,32.8,47,0.0 +23850,33,2.5,26,0.0 +23850,44,19.45,13,0.0 +23850,49,20,30,0.0 +23850,1,18,29,0.0 +23850,14,23.25,13,0.0 +23850,43,46,45,0.0 +23850,62,49.3,15,0.0 +23850,25,14,41,0.0 +23850,70,15,26,0.0 +23850,21,10,14,0.0 +23850,28,45.6,14,0.0 +23850,22,21,39,0.0 +23850,23,9,32,0.0 +23850,45,9.5,50,0.0 +23850,71,21.5,38,0.0 +23850,4,22,31,0.0 +23850,47,9.5,31,0.0 +23850,52,7,23,0.0 +23850,39,18,23,0.0 +23850,55,24,15,0.0 +23850,12,38,35,0.0 +23850,16,17.45,21,0.0 +23850,67,14,50,0.0 +23850,17,39,44,0.0 +23850,65,21.05,15,0.0 +23851,4,22,46,0.0 +23851,67,14,33,0.0 +23851,59,55,1,0.0 +23851,9,97,16,0.0 +23851,20,81,14,0.0 +23851,36,19,28,0.0 +23851,32,32,41,0.0 +23851,52,7,18,0.0 +23851,34,14,27,0.0 +23851,24,4.5,25,0.0 +23851,64,33.25,24,0.0 +23851,22,21,38,0.0 +23851,14,23.25,44,0.0 +23851,35,18,32,0.0 +23851,54,7.45,40,0.0 +23851,3,10,42,0.0 +23851,10,31,14,0.0 +23851,73,15,9,0.0 +23851,77,13,43,0.0 +23851,65,21.05,35,0.0 +23851,47,9.5,37,0.0 +23851,13,6,13,0.0 +23851,30,25.89,7,0.0 +23851,76,18,50,0.0 +23851,43,46,14,0.0 +23851,1,18,11,0.0 +23851,45,9.5,48,0.0 +23851,19,9.2,2,0.0 +23851,72,34.8,16,0.0 +23851,2,19,43,0.0 +23851,70,15,8,0.0 +23851,39,18,11,0.0 +23851,38,263.5,28,0.0 +23851,57,19.5,37,0.0 +23851,40,18.4,38,0.0 +23851,11,21,5,0.0 +23851,26,31.23,40,0.0 +23851,42,14,44,0.0 +23851,48,12.75,23,0.0 +23851,33,2.5,17,0.0 +23851,27,43.9,47,0.0 +23851,60,34,43,0.0 +23851,37,26,44,0.0 +23851,61,28.5,23,0.0 +23851,7,30,23,0.0 +23852,55,24,12,0.0 +23852,29,123.79,3,0.0 +23853,77,13,47,0.0 +23853,1,18,49,0.0 +23853,16,17.45,22,0.0 +23853,37,26,30,0.0 +23853,3,10,32,0.0 +23853,54,7.45,25,0.0 +23854,30,25.89,49,0.0 +23854,65,21.05,43,0.0 +23854,57,19.5,46,0.0 +23854,68,12.5,11,0.0 +23854,59,55,49,0.0 +23854,32,32,32,0.0 +23854,44,19.45,32,0.0 +23854,37,26,41,0.0 +23854,38,263.5,38,0.0 +23854,42,14,19,0.0 +23854,43,46,37,0.0 +23854,76,18,48,0.0 +23854,62,49.3,2,0.0 +23854,61,28.5,39,0.0 +23854,64,33.25,5,0.0 +23854,14,23.25,14,0.0 +23854,33,2.5,8,0.0 +23854,69,36,48,0.0 +23854,35,18,16,0.0 +23854,50,16.25,15,0.0 +23854,8,40,41,0.0 +23854,72,34.8,47,0.0 +23854,16,17.45,21,0.0 +23854,13,6,29,0.0 +23854,34,14,20,0.0 +23854,51,53,19,0.0 +23854,49,20,27,0.0 +23854,15,15.5,23,0.0 +23854,36,19,33,0.0 +23854,19,9.2,41,0.0 +23854,70,15,1,0.0 +23854,7,30,35,0.0 +23854,74,10,34,0.0 +23854,28,45.6,26,0.0 +23854,60,34,19,0.0 +23854,67,14,5,0.0 +23854,47,9.5,8,0.0 +23854,63,43.9,34,0.0 +23854,22,21,43,0.0 +23854,56,38,27,0.0 +23854,54,7.45,6,0.0 +23854,29,123.79,24,0.0 +23854,24,4.5,31,0.0 +23854,23,9,41,0.0 +23854,40,18.4,33,0.0 +23854,73,15,6,0.0 +23854,10,31,28,0.0 +23854,27,43.9,7,0.0 +23854,41,9.65,41,0.0 +23854,17,39,47,0.0 +23854,39,18,43,0.0 +23854,11,21,12,0.0 +23854,3,10,34,0.0 +23854,52,7,22,0.0 +23854,20,81,25,0.0 +23854,31,12.5,49,0.0 +23854,75,7.75,44,0.0 +23854,12,38,50,0.0 +23854,58,13.25,18,0.0 +23854,48,12.75,18,0.0 +23855,29,123.79,46,0.0 +23855,52,7,49,0.0 +23855,62,49.3,29,0.0 +23855,18,62.5,13,0.0 +23855,4,22,11,0.0 +23855,3,10,3,0.0 +23855,60,34,23,0.0 +23855,77,13,8,0.0 +23855,49,20,17,0.0 +23855,32,32,29,0.0 +23855,1,18,32,0.0 +23855,45,9.5,12,0.0 +23855,65,21.05,33,0.0 +23855,51,53,45,0.0 +23855,26,31.23,14,0.0 +23855,43,46,24,0.0 +23855,75,7.75,37,0.0 +23855,30,25.89,37,0.0 +23855,50,16.25,9,0.0 +23855,33,2.5,16,0.0 +23855,67,14,34,0.0 +23855,46,12,17,0.0 +23855,9,97,47,0.0 +23855,68,12.5,14,0.0 +23855,7,30,24,0.0 +23855,15,15.5,30,0.0 +23856,29,123.79,20,0.0 +23856,59,55,49,0.0 +23856,44,19.45,5,0.0 +23856,7,30,19,0.0 +23856,57,19.5,25,0.0 +23856,52,7,41,0.0 +23856,12,38,40,0.0 +23856,4,22,4,0.0 +23856,8,40,40,0.0 +23856,55,24,11,0.0 +23856,51,53,32,0.0 +23856,2,19,49,0.0 +23856,54,7.45,50,0.0 +23856,60,34,48,0.0 +23856,46,12,18,0.0 +23856,1,18,11,0.0 +23856,53,32.8,30,0.0 +23856,66,17,1,0.0 +23856,42,14,1,0.0 +23856,71,21.5,27,0.0 +23856,61,28.5,18,0.0 +23856,28,45.6,11,0.0 +23856,73,15,33,0.0 +23856,6,25,16,0.0 +23856,15,15.5,47,0.0 +23856,22,21,50,0.0 +23856,58,13.25,28,0.0 +23856,48,12.75,26,0.0 +23856,76,18,29,0.0 +23856,26,31.23,23,0.0 +23856,37,26,34,0.0 +23856,38,263.5,32,0.0 +23856,68,12.5,34,0.0 +23856,10,31,12,0.0 +23856,67,14,49,0.0 +23856,49,20,15,0.0 +23856,72,34.8,20,0.0 +23856,36,19,47,0.0 +23856,19,9.2,43,0.0 +23856,40,18.4,50,0.0 +23856,77,13,4,0.0 +23856,65,21.05,21,0.0 +23856,30,25.89,47,0.0 +23856,74,10,43,0.0 +23856,27,43.9,32,0.0 +23856,20,81,47,0.0 +23856,45,9.5,50,0.0 +23856,11,21,2,0.0 +23856,5,21.35,20,0.0 +23856,23,9,48,0.0 +23856,64,33.25,44,0.0 +23856,34,14,32,0.0 +23856,21,10,30,0.0 +23856,3,10,42,0.0 +23856,41,9.65,12,0.0 +23857,34,14,27,0.0 +23857,35,18,40,0.0 +23857,68,12.5,16,0.0 +23857,7,30,21,0.0 +23857,4,22,39,0.0 +23857,29,123.79,23,0.0 +23857,15,15.5,7,0.0 +23857,52,7,7,0.0 +23857,17,39,17,0.0 +23857,45,9.5,30,0.0 +23857,73,15,3,0.0 +23857,58,13.25,34,0.0 +23857,12,38,36,0.0 +23857,44,19.45,19,0.0 +23857,28,45.6,13,0.0 +23857,21,10,40,0.0 +23857,43,46,21,0.0 +23857,9,97,22,0.0 +23857,26,31.23,40,0.0 +23857,5,21.35,4,0.0 +23857,37,26,50,0.0 +23857,62,49.3,7,0.0 +23857,22,21,4,0.0 +23857,3,10,38,0.0 +23857,38,263.5,39,0.0 +23857,27,43.9,12,0.0 +23857,66,17,30,0.0 +23857,48,12.75,20,0.0 +23857,70,15,23,0.0 +23857,32,32,25,0.0 +23857,75,7.75,25,0.0 +23857,41,9.65,6,0.0 +23857,11,21,15,0.0 +23857,19,9.2,19,0.0 +23857,77,13,7,0.0 +23857,36,19,31,0.0 +23857,16,17.45,1,0.0 +23857,6,25,8,0.0 +23857,25,14,16,0.0 +23857,1,18,34,0.0 +23857,60,34,1,0.0 +23857,59,55,49,0.0 +23857,47,9.5,20,0.0 +23857,30,25.89,3,0.0 +23857,13,6,34,0.0 +23857,53,32.8,50,0.0 +23857,10,31,33,0.0 +23857,64,33.25,37,0.0 +23857,49,20,36,0.0 +23857,54,7.45,39,0.0 +23857,8,40,37,0.0 +23857,23,9,42,0.0 +23857,18,62.5,11,0.0 +23857,40,18.4,39,0.0 +23857,74,10,15,0.0 +23857,20,81,15,0.0 +23857,56,38,17,0.0 +23858,60,34,35,0.0 +23858,52,7,6,0.0 +23858,75,7.75,46,0.0 +23858,16,17.45,37,0.0 +23858,29,123.79,28,0.0 +23858,10,31,7,0.0 +23858,54,7.45,22,0.0 +23858,14,23.25,30,0.0 +23858,65,21.05,49,0.0 +23858,67,14,44,0.0 +23858,69,36,7,0.0 +23858,66,17,2,0.0 +23858,41,9.65,13,0.0 +23858,61,28.5,11,0.0 +23858,38,263.5,33,0.0 +23858,46,12,48,0.0 +23858,73,15,46,0.0 +23858,57,19.5,42,0.0 +23858,43,46,7,0.0 +23858,15,15.5,13,0.0 +23858,74,10,1,0.0 +23858,33,2.5,1,0.0 +23858,4,22,40,0.0 +23858,30,25.89,35,0.0 +23858,42,14,45,0.0 +23858,37,26,7,0.0 +23858,76,18,30,0.0 +23858,26,31.23,49,0.0 +23858,35,18,27,0.0 +23858,53,32.8,44,0.0 +23858,20,81,18,0.0 +23858,11,21,32,0.0 +23858,55,24,46,0.0 +23858,17,39,24,0.0 +23858,64,33.25,43,0.0 +23858,40,18.4,16,0.0 +23858,48,12.75,3,0.0 +23858,3,10,5,0.0 +23858,23,9,45,0.0 +23858,51,53,14,0.0 +23858,50,16.25,20,0.0 +23858,47,9.5,13,0.0 +23858,56,38,18,0.0 +23858,45,9.5,1,0.0 +23858,24,4.5,2,0.0 +23859,17,39,21,0.0 +23859,32,32,44,0.0 +23859,25,14,48,0.0 +23859,19,9.2,42,0.0 +23860,44,19.45,37,0.0 +23860,16,17.45,46,0.0 +23860,46,12,32,0.0 +23860,30,25.89,35,0.0 +23860,57,19.5,3,0.0 +23860,58,13.25,12,0.0 +23860,53,32.8,38,0.0 +23860,13,6,33,0.0 +23860,26,31.23,8,0.0 +23860,76,18,45,0.0 +23860,41,9.65,45,0.0 +23860,12,38,22,0.0 +23860,32,32,16,0.0 +23860,42,14,34,0.0 +23860,55,24,12,0.0 +23860,5,21.35,29,0.0 +23860,37,26,18,0.0 +23860,77,13,25,0.0 +23860,7,30,5,0.0 +23860,54,7.45,9,0.0 +23860,60,34,2,0.0 +23860,66,17,39,0.0 +23860,25,14,46,0.0 +23860,6,25,10,0.0 +23860,49,20,21,0.0 +23860,75,7.75,28,0.0 +23860,33,2.5,11,0.0 +23860,65,21.05,34,0.0 +23860,69,36,11,0.0 +23860,68,12.5,18,0.0 +23860,28,45.6,34,0.0 +23860,15,15.5,11,0.0 +23860,17,39,42,0.0 +23860,70,15,11,0.0 +23860,35,18,8,0.0 +23860,50,16.25,9,0.0 +23860,10,31,38,0.0 +23860,59,55,18,0.0 +23860,20,81,31,0.0 +23860,74,10,3,0.0 +23860,56,38,17,0.0 +23860,19,9.2,17,0.0 +23860,22,21,41,0.0 +23860,8,40,39,0.0 +23860,67,14,45,0.0 +23860,72,34.8,15,0.0 +23860,36,19,38,0.0 +23860,1,18,10,0.0 +23860,39,18,10,0.0 +23860,63,43.9,12,0.0 +23860,45,9.5,29,0.0 +23860,21,10,32,0.0 +23861,59,55,25,0.0 +23861,8,40,44,0.0 +23861,36,19,17,0.0 +23861,3,10,27,0.0 +23861,55,24,43,0.0 +23861,72,34.8,7,0.0 +23861,5,21.35,49,0.0 +23861,2,19,42,0.0 +23861,44,19.45,15,0.0 +23862,48,12.75,35,0.0 +23862,73,15,27,0.0 +23862,1,18,15,0.0 +23862,39,18,31,0.0 +23862,11,21,9,0.0 +23862,62,49.3,18,0.0 +23862,7,30,25,0.0 +23862,28,45.6,11,0.0 +23862,8,40,37,0.0 +23862,9,97,40,0.0 +23862,33,2.5,8,0.0 +23862,31,12.5,48,0.0 +23862,75,7.75,24,0.0 +23862,15,15.5,50,0.0 +23862,5,21.35,1,0.0 +23862,69,36,1,0.0 +23862,65,21.05,7,0.0 +23862,51,53,23,0.0 +23862,44,19.45,26,0.0 +23862,34,14,48,0.0 +23862,18,62.5,8,0.0 +23862,2,19,17,0.0 +23862,26,31.23,43,0.0 +23862,37,26,1,0.0 +23862,50,16.25,2,0.0 +23862,54,7.45,44,0.0 +23862,52,7,21,0.0 +23862,24,4.5,28,0.0 +23862,41,9.65,31,0.0 +23862,38,263.5,31,0.0 +23862,67,14,6,0.0 +23862,72,34.8,45,0.0 +23862,60,34,37,0.0 +23862,45,9.5,45,0.0 +23862,19,9.2,31,0.0 +23862,6,25,2,0.0 +23862,57,19.5,41,0.0 +23862,27,43.9,9,0.0 +23862,76,18,22,0.0 +23862,70,15,26,0.0 +23862,68,12.5,14,0.0 +23862,14,23.25,35,0.0 +23862,55,24,46,0.0 +23862,17,39,40,0.0 +23862,58,13.25,3,0.0 +23862,42,14,24,0.0 +23862,43,46,49,0.0 +23862,13,6,49,0.0 +23862,22,21,19,0.0 +23862,63,43.9,24,0.0 +23862,40,18.4,44,0.0 +23862,20,81,12,0.0 +23862,36,19,50,0.0 +23862,4,22,4,0.0 +23862,35,18,28,0.0 +23862,3,10,1,0.0 +23862,49,20,14,0.0 +23862,25,14,24,0.0 +23862,56,38,48,0.0 +23862,29,123.79,35,0.0 +23862,32,32,36,0.0 +23862,64,33.25,3,0.0 +23862,10,31,2,0.0 +23862,53,32.8,12,0.0 +23862,66,17,7,0.0 +23862,77,13,25,0.0 +23862,23,9,23,0.0 +23862,12,38,14,0.0 +23863,68,12.5,37,0.0 +23863,51,53,2,0.0 +23863,61,28.5,33,0.0 +23863,39,18,2,0.0 +23863,75,7.75,20,0.0 +23863,44,19.45,19,0.0 +23863,29,123.79,6,0.0 +23863,3,10,29,0.0 +23863,1,18,13,0.0 +23863,7,30,32,0.0 +23863,52,7,36,0.0 +23863,43,46,26,0.0 +23863,71,21.5,15,0.0 +23863,45,9.5,10,0.0 +23863,15,15.5,44,0.0 +23863,6,25,7,0.0 +23863,41,9.65,46,0.0 +23863,20,81,22,0.0 +23863,59,55,23,0.0 +23863,48,12.75,34,0.0 +23863,11,21,36,0.0 +23863,2,19,10,0.0 +23863,33,2.5,50,0.0 +23863,63,43.9,24,0.0 +23863,64,33.25,11,0.0 +23863,50,16.25,43,0.0 +23863,24,4.5,38,0.0 +23863,26,31.23,50,0.0 +23863,72,34.8,31,0.0 +23863,10,31,17,0.0 +23863,77,13,25,0.0 +23863,35,18,44,0.0 +23863,8,40,12,0.0 +23863,55,24,2,0.0 +23863,19,9.2,34,0.0 +23863,69,36,44,0.0 +23863,36,19,21,0.0 +23863,9,97,26,0.0 +23863,25,14,38,0.0 +23863,67,14,26,0.0 +23863,14,23.25,2,0.0 +23863,58,13.25,26,0.0 +23863,47,9.5,25,0.0 +23863,4,22,11,0.0 +23864,6,25,48,0.0 +23864,61,28.5,17,0.0 +23864,21,10,24,0.0 +23864,17,39,16,0.0 +23864,34,14,5,0.0 +23864,32,32,12,0.0 +23864,18,62.5,28,0.0 +23864,38,263.5,4,0.0 +23864,15,15.5,26,0.0 +23864,55,24,28,0.0 +23864,35,18,10,0.0 +23864,46,12,11,0.0 +23864,44,19.45,36,0.0 +23864,27,43.9,34,0.0 +23864,19,9.2,38,0.0 +23864,29,123.79,43,0.0 +23864,72,34.8,35,0.0 +23864,3,10,14,0.0 +23864,10,31,8,0.0 +23864,5,21.35,15,0.0 +23864,74,10,32,0.0 +23864,51,53,44,0.0 +23864,37,26,13,0.0 +23865,41,9.65,1,0.0 +23865,74,10,21,0.0 +23865,51,53,37,0.0 +23865,64,33.25,33,0.0 +23865,29,123.79,20,0.0 +23865,2,19,16,0.0 +23865,7,30,5,0.0 +23865,65,21.05,39,0.0 +23865,11,21,15,0.0 +23865,44,19.45,40,0.0 +23865,46,12,26,0.0 +23865,24,4.5,5,0.0 +23865,45,9.5,31,0.0 +23865,60,34,38,0.0 +23865,42,14,49,0.0 +23865,77,13,18,0.0 +23865,3,10,21,0.0 +23865,71,21.5,1,0.0 +23865,35,18,15,0.0 +23865,9,97,10,0.0 +23865,59,55,30,0.0 +23865,25,14,17,0.0 +23865,16,17.45,16,0.0 +23865,72,34.8,16,0.0 +23865,62,49.3,34,0.0 +23865,61,28.5,33,0.0 +23865,34,14,46,0.0 +23865,12,38,1,0.0 +23865,33,2.5,12,0.0 +23865,58,13.25,33,0.0 +23865,13,6,39,0.0 +23865,68,12.5,1,0.0 +23865,55,24,34,0.0 +23865,19,9.2,36,0.0 +23865,22,21,39,0.0 +23865,26,31.23,39,0.0 +23865,52,7,45,0.0 +23865,48,12.75,49,0.0 +23865,5,21.35,46,0.0 +23865,28,45.6,33,0.0 +23865,67,14,15,0.0 +23865,18,62.5,14,0.0 +23865,70,15,14,0.0 +23865,43,46,38,0.0 +23865,17,39,24,0.0 +23865,36,19,8,0.0 +23865,66,17,27,0.0 +23866,69,36,48,0.0 +23866,59,55,18,0.0 +23866,34,14,3,0.0 +23866,31,12.5,30,0.0 +23866,25,14,49,0.0 +23866,3,10,33,0.0 +23866,71,21.5,46,0.0 +23866,19,9.2,34,0.0 +23866,16,17.45,45,0.0 +23866,74,10,45,0.0 +23866,10,31,37,0.0 +23866,37,26,5,0.0 +23866,33,2.5,24,0.0 +23866,40,18.4,38,0.0 +23866,68,12.5,8,0.0 +23866,77,13,33,0.0 +23866,15,15.5,10,0.0 +23866,28,45.6,34,0.0 +23866,62,49.3,23,0.0 +23866,55,24,23,0.0 +23866,29,123.79,9,0.0 +23866,11,21,26,0.0 +23866,13,6,29,0.0 +23866,39,18,13,0.0 +23866,44,19.45,4,0.0 +23866,76,18,37,0.0 +23866,70,15,11,0.0 +23866,4,22,10,0.0 +23866,9,97,9,0.0 +23866,22,21,33,0.0 +23866,49,20,35,0.0 +23866,27,43.9,7,0.0 +23866,52,7,37,0.0 +23866,2,19,14,0.0 +23866,48,12.75,26,0.0 +23866,42,14,2,0.0 +23866,65,21.05,31,0.0 +23866,24,4.5,48,0.0 +23866,46,12,5,0.0 +23866,38,263.5,40,0.0 +23866,72,34.8,6,0.0 +23866,66,17,33,0.0 +23866,54,7.45,31,0.0 +23866,36,19,18,0.0 +23866,1,18,6,0.0 +23866,41,9.65,32,0.0 +23866,58,13.25,18,0.0 +23866,56,38,3,0.0 +23867,46,12,17,0.0 +23867,24,4.5,27,0.0 +23867,15,15.5,47,0.0 +23867,43,46,8,0.0 +23867,49,20,32,0.0 +23867,27,43.9,42,0.0 +23867,75,7.75,21,0.0 +23867,71,21.5,43,0.0 +23867,36,19,29,0.0 +23867,21,10,30,0.0 +23867,31,12.5,6,0.0 +23867,1,18,45,0.0 +23867,76,18,24,0.0 +23867,4,22,16,0.0 +23867,22,21,7,0.0 +23867,29,123.79,38,0.0 +23867,44,19.45,10,0.0 +23867,8,40,46,0.0 +23867,45,9.5,13,0.0 +23867,64,33.25,48,0.0 +23867,50,16.25,4,0.0 +23867,77,13,41,0.0 +23867,48,12.75,42,0.0 +23867,65,21.05,5,0.0 +23867,47,9.5,36,0.0 +23867,19,9.2,28,0.0 +23868,13,6,15,0.0 +23868,35,18,47,0.0 +23868,53,32.8,45,0.0 +23868,40,18.4,13,0.0 +23868,2,19,25,0.0 +23868,14,23.25,50,0.0 +23868,32,32,1,0.0 +23868,48,12.75,28,0.0 +23868,74,10,40,0.0 +23868,20,81,11,0.0 +23868,18,62.5,19,0.0 +23868,62,49.3,44,0.0 +23868,51,53,39,0.0 +23868,16,17.45,36,0.0 +23868,26,31.23,26,0.0 +23868,65,21.05,50,0.0 +23869,33,2.5,19,0.0 +23869,70,15,26,0.0 +23869,63,43.9,8,0.0 +23869,53,32.8,15,0.0 +23869,31,12.5,42,0.0 +23869,17,39,11,0.0 +23869,50,16.25,9,0.0 +23869,57,19.5,3,0.0 +23869,16,17.45,15,0.0 +23869,54,7.45,7,0.0 +23869,40,18.4,28,0.0 +23869,39,18,17,0.0 +23869,5,21.35,44,0.0 +23869,24,4.5,20,0.0 +23869,43,46,40,0.0 +23869,26,31.23,7,0.0 +23869,47,9.5,46,0.0 +23869,27,43.9,49,0.0 +23869,37,26,9,0.0 +23869,38,263.5,31,0.0 +23869,19,9.2,42,0.0 +23869,12,38,28,0.0 +23869,60,34,23,0.0 +23869,21,10,27,0.0 +23869,42,14,4,0.0 +23869,77,13,9,0.0 +23869,52,7,42,0.0 +23869,56,38,43,0.0 +23869,4,22,48,0.0 +23869,67,14,45,0.0 +23869,51,53,20,0.0 +23869,6,25,20,0.0 +23869,8,40,10,0.0 +23869,73,15,37,0.0 +23869,62,49.3,42,0.0 +23869,61,28.5,6,0.0 +23869,32,32,46,0.0 +23869,23,9,21,0.0 +23869,36,19,20,0.0 +23869,59,55,6,0.0 +23869,7,30,9,0.0 +23869,9,97,45,0.0 +23869,55,24,9,0.0 +23869,29,123.79,22,0.0 +23869,49,20,17,0.0 +23869,20,81,50,0.0 +23869,25,14,43,0.0 +23869,66,17,7,0.0 +23869,71,21.5,48,0.0 +23869,34,14,8,0.0 +23869,3,10,17,0.0 +23869,11,21,34,0.0 +23869,14,23.25,3,0.0 +23869,75,7.75,14,0.0 +23869,58,13.25,33,0.0 +23869,30,25.89,41,0.0 +23869,15,15.5,41,0.0 +23869,44,19.45,25,0.0 +23869,45,9.5,35,0.0 +23869,69,36,24,0.0 +23869,2,19,47,0.0 +23869,65,21.05,24,0.0 +23870,23,9,9,0.0 +23870,54,7.45,30,0.0 +23870,56,38,31,0.0 +23870,27,43.9,22,0.0 +23870,66,17,38,0.0 +23870,37,26,14,0.0 +23870,1,18,3,0.0 +23870,10,31,47,0.0 +23870,22,21,26,0.0 +23870,8,40,2,0.0 +23870,24,4.5,43,0.0 +23870,55,24,32,0.0 +23870,30,25.89,45,0.0 +23870,35,18,33,0.0 +23870,71,21.5,16,0.0 +23870,57,19.5,5,0.0 +23870,75,7.75,35,0.0 +23870,42,14,49,0.0 +23870,53,32.8,50,0.0 +23870,26,31.23,40,0.0 +23870,15,15.5,4,0.0 +23870,25,14,40,0.0 +23870,19,9.2,2,0.0 +23870,77,13,35,0.0 +23870,49,20,36,0.0 +23870,40,18.4,32,0.0 +23870,31,12.5,19,0.0 +23870,16,17.45,12,0.0 +23870,64,33.25,38,0.0 +23870,45,9.5,23,0.0 +23870,58,13.25,11,0.0 +23870,17,39,38,0.0 +23870,73,15,33,0.0 +23870,18,62.5,19,0.0 +23870,70,15,41,0.0 +23870,38,263.5,17,0.0 +23870,65,21.05,24,0.0 +23870,13,6,49,0.0 +23870,33,2.5,50,0.0 +23870,39,18,30,0.0 +23870,69,36,44,0.0 +23870,41,9.65,42,0.0 +23870,48,12.75,11,0.0 +23870,3,10,44,0.0 +23870,52,7,39,0.0 +23870,32,32,8,0.0 +23870,29,123.79,3,0.0 +23870,43,46,42,0.0 +23870,72,34.8,26,0.0 +23870,7,30,44,0.0 +23870,6,25,3,0.0 +23870,51,53,39,0.0 +23870,68,12.5,41,0.0 +23870,44,19.45,18,0.0 +23870,67,14,35,0.0 +23870,14,23.25,41,0.0 +23870,12,38,40,0.0 +23870,74,10,3,0.0 +23870,4,22,6,0.0 +23870,34,14,26,0.0 +23870,36,19,36,0.0 +23870,63,43.9,32,0.0 +23870,21,10,40,0.0 +23870,62,49.3,36,0.0 +23870,76,18,49,0.0 +23870,20,81,42,0.0 +23870,47,9.5,38,0.0 +23870,11,21,14,0.0 +23870,28,45.6,16,0.0 +23870,9,97,20,0.0 +23870,2,19,41,0.0 +23870,50,16.25,20,0.0 +23871,35,18,6,0.0 +23871,39,18,9,0.0 +23871,73,15,14,0.0 +23871,15,15.5,24,0.0 +23871,77,13,10,0.0 +23871,55,24,28,0.0 +23871,58,13.25,23,0.0 +23871,5,21.35,33,0.0 +23871,44,19.45,39,0.0 +23871,17,39,12,0.0 +23871,74,10,44,0.0 +23871,72,34.8,29,0.0 +23871,9,97,32,0.0 +23871,47,9.5,33,0.0 +23871,24,4.5,18,0.0 +23871,68,12.5,46,0.0 +23872,1,18,48,0.0 +23872,22,21,37,0.0 +23872,46,12,39,0.0 +23872,63,43.9,5,0.0 +23872,13,6,37,0.0 +23872,29,123.79,39,0.0 +23872,48,12.75,5,0.0 +23872,17,39,32,0.0 +23872,65,21.05,31,0.0 +23872,57,19.5,36,0.0 +23872,6,25,27,0.0 +23872,25,14,47,0.0 +23872,36,19,27,0.0 +23872,37,26,30,0.0 +23872,14,23.25,14,0.0 +23872,5,21.35,1,0.0 +23872,10,31,18,0.0 +23872,61,28.5,33,0.0 +23872,16,17.45,33,0.0 +23872,34,14,26,0.0 +23872,67,14,50,0.0 +23872,40,18.4,39,0.0 +23872,9,97,15,0.0 +23872,54,7.45,22,0.0 +23872,64,33.25,21,0.0 +23872,33,2.5,47,0.0 +23872,73,15,32,0.0 +23872,2,19,6,0.0 +23872,56,38,5,0.0 +23872,69,36,46,0.0 +23872,45,9.5,30,0.0 +23872,42,14,19,0.0 +23872,77,13,45,0.0 +23872,4,22,15,0.0 +23872,11,21,18,0.0 +23872,50,16.25,9,0.0 +23872,38,263.5,12,0.0 +23872,41,9.65,22,0.0 +23872,59,55,22,0.0 +23872,58,13.25,38,0.0 +23872,68,12.5,47,0.0 +23872,39,18,15,0.0 +23872,75,7.75,11,0.0 +23872,12,38,11,0.0 +23872,70,15,50,0.0 +23872,18,62.5,46,0.0 +23872,74,10,24,0.0 +23872,72,34.8,4,0.0 +23872,7,30,24,0.0 +23872,31,12.5,35,0.0 +23872,30,25.89,12,0.0 +23872,76,18,11,0.0 +23873,8,40,43,0.0 +23873,61,28.5,29,0.0 +23873,44,19.45,5,0.0 +23873,5,21.35,28,0.0 +23873,7,30,8,0.0 +23873,16,17.45,44,0.0 +23873,38,263.5,26,0.0 +23873,11,21,41,0.0 +23873,71,21.5,41,0.0 +23873,34,14,17,0.0 +23873,3,10,14,0.0 +23873,35,18,50,0.0 +23873,1,18,17,0.0 +23873,40,18.4,15,0.0 +23873,41,9.65,40,0.0 +23873,36,19,21,0.0 +23873,14,23.25,37,0.0 +23873,63,43.9,45,0.0 +23873,26,31.23,46,0.0 +23873,73,15,33,0.0 +23873,28,45.6,33,0.0 +23873,13,6,20,0.0 +23873,22,21,21,0.0 +23873,48,12.75,29,0.0 +23873,51,53,22,0.0 +23873,24,4.5,46,0.0 +23873,75,7.75,33,0.0 +23873,72,34.8,22,0.0 +23873,74,10,20,0.0 +23873,9,97,41,0.0 +23873,6,25,20,0.0 +23873,69,36,16,0.0 +23873,68,12.5,18,0.0 +23873,27,43.9,11,0.0 +23873,43,46,33,0.0 +23873,50,16.25,20,0.0 +23873,47,9.5,30,0.0 +23873,62,49.3,33,0.0 +23873,37,26,37,0.0 +23873,42,14,36,0.0 +23873,18,62.5,48,0.0 +23873,32,32,13,0.0 +23873,17,39,34,0.0 +23873,57,19.5,32,0.0 +23873,23,9,23,0.0 +23873,66,17,34,0.0 +23873,52,7,44,0.0 +23873,64,33.25,48,0.0 +23873,46,12,33,0.0 +23873,77,13,11,0.0 +23873,65,21.05,31,0.0 +23873,67,14,12,0.0 +23873,12,38,38,0.0 +23873,2,19,32,0.0 +23873,58,13.25,40,0.0 +23873,70,15,11,0.0 +23873,39,18,36,0.0 +23873,60,34,47,0.0 +23873,4,22,29,0.0 +23873,55,24,42,0.0 +23873,56,38,11,0.0 +23873,25,14,18,0.0 +23873,53,32.8,50,0.0 +23874,54,7.45,36,0.0 +23874,28,45.6,4,0.0 +23874,7,30,14,0.0 +23874,18,62.5,33,0.0 +23874,69,36,14,0.0 +23874,12,38,3,0.0 +23874,41,9.65,2,0.0 +23874,43,46,22,0.0 +23874,75,7.75,15,0.0 +23874,40,18.4,36,0.0 +23874,73,15,34,0.0 +23874,6,25,7,0.0 +23874,67,14,36,0.0 +23874,55,24,23,0.0 +23874,49,20,18,0.0 +23874,29,123.79,25,0.0 +23874,70,15,2,0.0 +23874,21,10,12,0.0 +23874,56,38,14,0.0 +23874,65,21.05,28,0.0 +23874,23,9,27,0.0 +23874,47,9.5,46,0.0 +23874,46,12,43,0.0 +23874,15,15.5,38,0.0 +23874,51,53,5,0.0 +23874,2,19,28,0.0 +23874,14,23.25,9,0.0 +23874,4,22,14,0.0 +23874,19,9.2,47,0.0 +23874,9,97,21,0.0 +23874,39,18,12,0.0 +23874,36,19,47,0.0 +23874,34,14,20,0.0 +23874,66,17,19,0.0 +23874,3,10,5,0.0 +23874,71,21.5,19,0.0 +23874,27,43.9,47,0.0 +23874,74,10,40,0.0 +23874,26,31.23,9,0.0 +23874,62,49.3,12,0.0 +23874,57,19.5,20,0.0 +23874,48,12.75,23,0.0 +23874,8,40,10,0.0 +23874,16,17.45,16,0.0 +23874,64,33.25,11,0.0 +23874,52,7,39,0.0 +23874,76,18,36,0.0 +23874,38,263.5,10,0.0 +23874,44,19.45,47,0.0 +23874,25,14,48,0.0 +23874,72,34.8,16,0.0 +23874,17,39,39,0.0 +23874,77,13,30,0.0 +23874,33,2.5,5,0.0 +23874,22,21,46,0.0 +23874,13,6,11,0.0 +23874,63,43.9,48,0.0 +23874,32,32,23,0.0 +23874,68,12.5,40,0.0 +23874,10,31,36,0.0 +23874,50,16.25,6,0.0 +23874,42,14,44,0.0 +23875,40,18.4,25,0.0 +23875,28,45.6,37,0.0 +23875,23,9,13,0.0 +23875,2,19,3,0.0 +23875,1,18,44,0.0 +23875,77,13,31,0.0 +23875,25,14,21,0.0 +23876,63,43.9,39,0.0 +23876,67,14,29,0.0 +23876,8,40,19,0.0 +23876,26,31.23,12,0.0 +23876,54,7.45,47,0.0 +23876,1,18,19,0.0 +23876,34,14,4,0.0 +23876,59,55,2,0.0 +23876,17,39,24,0.0 +23876,45,9.5,11,0.0 +23876,4,22,8,0.0 +23876,31,12.5,18,0.0 +23876,49,20,4,0.0 +23876,43,46,21,0.0 +23876,18,62.5,22,0.0 +23876,29,123.79,34,0.0 +23876,58,13.25,17,0.0 +23876,38,263.5,8,0.0 +23876,74,10,31,0.0 +23876,69,36,20,0.0 +23876,11,21,8,0.0 +23876,33,2.5,26,0.0 +23876,52,7,33,0.0 +23876,12,38,34,0.0 +23876,7,30,8,0.0 +23876,66,17,40,0.0 +23876,30,25.89,46,0.0 +23876,32,32,21,0.0 +23876,24,4.5,48,0.0 +23876,25,14,21,0.0 +23876,19,9.2,36,0.0 +23876,16,17.45,39,0.0 +23876,10,31,50,0.0 +23876,15,15.5,32,0.0 +23876,35,18,21,0.0 +23876,40,18.4,35,0.0 +23876,5,21.35,9,0.0 +23876,21,10,6,0.0 +23876,72,34.8,28,0.0 +23876,13,6,37,0.0 +23876,47,9.5,49,0.0 +23876,50,16.25,38,0.0 +23876,68,12.5,8,0.0 +23876,77,13,5,0.0 +23876,70,15,1,0.0 +23876,36,19,36,0.0 +23876,14,23.25,11,0.0 +23876,37,26,11,0.0 +23876,20,81,49,0.0 +23876,46,12,35,0.0 +23876,2,19,47,0.0 +23876,73,15,15,0.0 +23876,3,10,18,0.0 +23876,76,18,39,0.0 +23876,48,12.75,45,0.0 +23876,41,9.65,12,0.0 +23876,22,21,11,0.0 +23876,64,33.25,31,0.0 +23876,39,18,19,0.0 +23876,23,9,9,0.0 +23876,27,43.9,50,0.0 +23876,71,21.5,7,0.0 +23876,55,24,38,0.0 +23877,23,9,16,0.0 +23877,10,31,45,0.0 +23877,26,31.23,28,0.0 +23877,8,40,6,0.0 +23877,56,38,25,0.0 +23877,53,32.8,42,0.0 +23877,60,34,27,0.0 +23877,31,12.5,38,0.0 +23877,68,12.5,16,0.0 +23877,42,14,7,0.0 +23877,11,21,35,0.0 +23877,50,16.25,9,0.0 +23877,73,15,28,0.0 +23877,32,32,45,0.0 +23877,19,9.2,27,0.0 +23877,58,13.25,11,0.0 +23877,49,20,41,0.0 +23877,77,13,23,0.0 +23877,1,18,38,0.0 +23877,74,10,30,0.0 +23877,43,46,45,0.0 +23877,5,21.35,36,0.0 +23877,4,22,7,0.0 +23877,24,4.5,44,0.0 +23878,10,31,43,0.0 +23878,34,14,1,0.0 +23878,17,39,32,0.0 +23878,22,21,11,0.0 +23878,56,38,15,0.0 +23878,36,19,27,0.0 +23878,46,12,48,0.0 +23878,60,34,23,0.0 +23878,3,10,22,0.0 +23878,40,18.4,31,0.0 +23878,30,25.89,2,0.0 +23878,68,12.5,1,0.0 +23878,75,7.75,2,0.0 +23878,65,21.05,35,0.0 +23878,44,19.45,45,0.0 +23878,23,9,33,0.0 +23878,19,9.2,18,0.0 +23878,54,7.45,14,0.0 +23878,57,19.5,28,0.0 +23878,20,81,13,0.0 +23878,24,4.5,27,0.0 +23878,38,263.5,19,0.0 +23878,58,13.25,14,0.0 +23878,41,9.65,26,0.0 +23878,74,10,43,0.0 +23878,14,23.25,12,0.0 +23878,51,53,39,0.0 +23878,2,19,16,0.0 +23878,59,55,46,0.0 +23878,53,32.8,12,0.0 +23878,12,38,43,0.0 +23878,71,21.5,50,0.0 +23878,39,18,33,0.0 +23878,43,46,14,0.0 +23878,26,31.23,26,0.0 +23878,67,14,28,0.0 +23878,18,62.5,37,0.0 +23878,25,14,3,0.0 +23878,35,18,17,0.0 +23878,45,9.5,44,0.0 +23878,31,12.5,19,0.0 +23878,63,43.9,23,0.0 +23878,55,24,47,0.0 +23878,61,28.5,21,0.0 +23878,66,17,37,0.0 +23878,50,16.25,5,0.0 +23878,5,21.35,2,0.0 +23878,37,26,28,0.0 +23878,52,7,43,0.0 +23878,6,25,43,0.0 +23878,73,15,22,0.0 +23878,7,30,14,0.0 +23878,32,32,35,0.0 +23878,72,34.8,40,0.0 +23878,69,36,46,0.0 +23878,13,6,25,0.0 +23878,49,20,24,0.0 +23878,15,15.5,31,0.0 +23878,33,2.5,19,0.0 +23878,28,45.6,27,0.0 +23878,47,9.5,9,0.0 +23878,21,10,40,0.0 +23879,1,18,50,0.0 +23879,57,19.5,9,0.0 +23879,67,14,50,0.0 +23879,31,12.5,24,0.0 +23879,50,16.25,41,0.0 +23879,62,49.3,35,0.0 +23880,74,10,2,0.0 +23880,61,28.5,16,0.0 +23880,12,38,43,0.0 +23880,14,23.25,38,0.0 +23880,27,43.9,41,0.0 +23880,8,40,29,0.0 +23880,9,97,38,0.0 +23880,35,18,8,0.0 +23880,29,123.79,37,0.0 +23880,30,25.89,15,0.0 +23880,76,18,19,0.0 +23880,20,81,41,0.0 +23880,37,26,33,0.0 +23880,28,45.6,5,0.0 +23880,52,7,23,0.0 +23880,15,15.5,15,0.0 +23880,32,32,12,0.0 +23880,73,15,40,0.0 +23880,49,20,4,0.0 +23880,25,14,48,0.0 +23880,39,18,3,0.0 +23880,19,9.2,21,0.0 +23880,6,25,16,0.0 +23880,47,9.5,13,0.0 +23880,21,10,13,0.0 +23880,77,13,25,0.0 +23880,16,17.45,2,0.0 +23880,41,9.65,6,0.0 +23880,68,12.5,1,0.0 +23880,3,10,7,0.0 +23880,50,16.25,10,0.0 +23880,13,6,5,0.0 +23880,24,4.5,5,0.0 +23880,17,39,1,0.0 +23880,69,36,7,0.0 +23880,53,32.8,37,0.0 +23880,11,21,4,0.0 +23880,33,2.5,39,0.0 +23880,10,31,45,0.0 +23880,71,21.5,24,0.0 +23880,66,17,8,0.0 +23880,4,22,18,0.0 +23880,65,21.05,46,0.0 +23880,56,38,40,0.0 +23880,34,14,18,0.0 +23880,42,14,39,0.0 +23880,54,7.45,20,0.0 +23880,31,12.5,34,0.0 +23880,64,33.25,30,0.0 +23880,45,9.5,6,0.0 +23880,72,34.8,9,0.0 +23880,2,19,2,0.0 +23880,18,62.5,47,0.0 +23880,70,15,8,0.0 +23880,75,7.75,32,0.0 +23880,38,263.5,19,0.0 +23880,63,43.9,22,0.0 +23880,62,49.3,45,0.0 +23880,5,21.35,38,0.0 +23880,40,18.4,13,0.0 +23880,43,46,5,0.0 +23880,48,12.75,48,0.0 +23880,58,13.25,42,0.0 +23880,36,19,37,0.0 +23880,23,9,20,0.0 +23880,55,24,33,0.0 +23880,60,34,50,0.0 +23880,46,12,40,0.0 +23880,44,19.45,38,0.0 +23880,67,14,14,0.0 +23880,51,53,29,0.0 +23880,57,19.5,14,0.0 +23880,1,18,11,0.0 +23880,59,55,39,0.0 +23880,7,30,17,0.0 +23880,26,31.23,2,0.0 +23880,22,21,27,0.0 +23881,51,53,28,0.0 +23881,28,45.6,39,0.0 +23881,54,7.45,45,0.0 +23881,77,13,13,0.0 +23881,71,21.5,25,0.0 +23881,60,34,40,0.0 +23881,45,9.5,47,0.0 +23881,57,19.5,32,0.0 +23881,40,18.4,38,0.0 +23881,63,43.9,33,0.0 +23881,4,22,8,0.0 +23881,33,2.5,32,0.0 +23881,23,9,34,0.0 +23881,66,17,28,0.0 +23881,26,31.23,38,0.0 +23881,29,123.79,22,0.0 +23881,42,14,41,0.0 +23881,30,25.89,9,0.0 +23881,49,20,1,0.0 +23881,6,25,27,0.0 +23881,64,33.25,12,0.0 +23881,67,14,46,0.0 +23881,20,81,50,0.0 +23881,24,4.5,18,0.0 +23881,65,21.05,15,0.0 +23881,16,17.45,30,0.0 +23881,39,18,25,0.0 +23881,27,43.9,7,0.0 +23881,22,21,37,0.0 +23881,36,19,34,0.0 +23881,69,36,22,0.0 +23881,56,38,33,0.0 +23881,62,49.3,28,0.0 +23881,32,32,20,0.0 +23881,44,19.45,50,0.0 +23881,68,12.5,6,0.0 +23881,58,13.25,31,0.0 +23881,8,40,1,0.0 +23881,3,10,35,0.0 +23881,21,10,26,0.0 +23881,50,16.25,40,0.0 +23881,43,46,24,0.0 +23881,46,12,40,0.0 +23881,55,24,26,0.0 +23881,47,9.5,13,0.0 +23881,59,55,16,0.0 +23881,52,7,21,0.0 +23881,17,39,3,0.0 +23881,19,9.2,23,0.0 +23881,38,263.5,49,0.0 +23881,10,31,28,0.0 +23881,31,12.5,3,0.0 +23881,1,18,41,0.0 +23881,12,38,11,0.0 +23881,13,6,6,0.0 +23882,77,13,26,0.0 +23882,50,16.25,28,0.0 +23882,40,18.4,7,0.0 +23882,26,31.23,44,0.0 +23882,49,20,6,0.0 +23882,62,49.3,28,0.0 +23882,51,53,5,0.0 +23882,76,18,28,0.0 +23882,10,31,2,0.0 +23882,17,39,3,0.0 +23882,31,12.5,50,0.0 +23882,41,9.65,19,0.0 +23882,53,32.8,30,0.0 +23882,61,28.5,34,0.0 +23882,1,18,35,0.0 +23882,55,24,38,0.0 +23882,67,14,37,0.0 +23882,20,81,41,0.0 +23882,36,19,20,0.0 +23882,42,14,44,0.0 +23882,12,38,20,0.0 +23883,59,55,6,0.0 +23883,10,31,20,0.0 +23883,31,12.5,32,0.0 +23883,30,25.89,40,0.0 +23883,52,7,48,0.0 +23883,7,30,1,0.0 +23883,57,19.5,1,0.0 +23883,36,19,45,0.0 +23883,54,7.45,28,0.0 +23883,3,10,50,0.0 +23883,62,49.3,38,0.0 +23883,60,34,50,0.0 +23884,64,33.25,45,0.0 +23884,46,12,14,0.0 +23884,1,18,50,0.0 +23884,56,38,40,0.0 +23884,26,31.23,24,0.0 +23884,10,31,47,0.0 +23884,31,12.5,40,0.0 +23884,75,7.75,5,0.0 +23884,16,17.45,36,0.0 +23884,4,22,17,0.0 +23884,61,28.5,5,0.0 +23884,68,12.5,30,0.0 +23884,36,19,31,0.0 +23884,32,32,4,0.0 +23884,7,30,4,0.0 +23884,25,14,49,0.0 +23884,42,14,35,0.0 +23884,47,9.5,44,0.0 +23884,38,263.5,35,0.0 +23884,8,40,4,0.0 +23884,73,15,16,0.0 +23884,22,21,15,0.0 +23884,39,18,33,0.0 +23884,45,9.5,45,0.0 +23884,74,10,31,0.0 +23884,54,7.45,22,0.0 +23884,77,13,49,0.0 +23884,14,23.25,49,0.0 +23884,15,15.5,13,0.0 +23884,23,9,36,0.0 +23884,30,25.89,15,0.0 +23884,44,19.45,25,0.0 +23884,34,14,37,0.0 +23884,48,12.75,1,0.0 +23884,33,2.5,9,0.0 +23884,52,7,35,0.0 +23884,5,21.35,33,0.0 +23884,3,10,42,0.0 +23884,69,36,50,0.0 +23884,21,10,5,0.0 +23884,41,9.65,39,0.0 +23884,9,97,4,0.0 +23884,28,45.6,41,0.0 +23884,19,9.2,28,0.0 +23884,55,24,43,0.0 +23884,72,34.8,42,0.0 +23884,20,81,46,0.0 +23885,55,24,19,0.0 +23885,27,43.9,32,0.0 +23885,19,9.2,28,0.0 +23885,77,13,16,0.0 +23885,34,14,30,0.0 +23885,11,21,29,0.0 +23885,47,9.5,29,0.0 +23885,21,10,15,0.0 +23885,38,263.5,35,0.0 +23885,4,22,28,0.0 +23885,59,55,30,0.0 +23885,61,28.5,27,0.0 +23885,48,12.75,8,0.0 +23885,25,14,9,0.0 +23885,24,4.5,12,0.0 +23885,63,43.9,7,0.0 +23885,58,13.25,14,0.0 +23885,46,12,45,0.0 +23885,74,10,33,0.0 +23885,5,21.35,30,0.0 +23885,53,32.8,33,0.0 +23885,73,15,9,0.0 +23885,30,25.89,47,0.0 +23885,49,20,10,0.0 +23885,16,17.45,20,0.0 +23885,6,25,31,0.0 +23885,37,26,9,0.0 +23885,20,81,48,0.0 +23885,75,7.75,42,0.0 +23885,69,36,24,0.0 +23885,18,62.5,29,0.0 +23886,19,9.2,28,0.0 +23886,76,18,5,0.0 +23886,36,19,37,0.0 +23886,75,7.75,50,0.0 +23886,70,15,25,0.0 +23886,55,24,19,0.0 +23886,66,17,2,0.0 +23886,51,53,34,0.0 +23886,57,19.5,4,0.0 +23886,22,21,16,0.0 +23886,46,12,26,0.0 +23886,7,30,40,0.0 +23886,13,6,31,0.0 +23886,38,263.5,12,0.0 +23886,31,12.5,13,0.0 +23886,44,19.45,39,0.0 +23886,10,31,19,0.0 +23886,47,9.5,13,0.0 +23886,60,34,40,0.0 +23886,5,21.35,2,0.0 +23886,54,7.45,46,0.0 +23886,4,22,3,0.0 +23886,8,40,32,0.0 +23886,30,25.89,27,0.0 +23886,58,13.25,5,0.0 +23886,59,55,1,0.0 +23886,71,21.5,41,0.0 +23886,43,46,17,0.0 +23886,41,9.65,28,0.0 +23886,9,97,38,0.0 +23886,17,39,25,0.0 +23886,56,38,49,0.0 +23886,12,38,18,0.0 +23886,26,31.23,39,0.0 +23886,67,14,31,0.0 +23886,35,18,44,0.0 +23886,48,12.75,16,0.0 +23886,65,21.05,25,0.0 +23886,2,19,20,0.0 +23886,18,62.5,50,0.0 +23886,68,12.5,11,0.0 +23886,25,14,7,0.0 +23886,29,123.79,22,0.0 +23886,74,10,24,0.0 +23886,1,18,45,0.0 +23886,16,17.45,42,0.0 +23886,11,21,6,0.0 +23886,62,49.3,35,0.0 +23887,34,14,12,0.0 +23887,54,7.45,31,0.0 +23887,25,14,30,0.0 +23887,51,53,48,0.0 +23887,21,10,41,0.0 +23887,55,24,42,0.0 +23887,12,38,5,0.0 +23887,66,17,39,0.0 +23887,72,34.8,14,0.0 +23887,43,46,45,0.0 +23887,16,17.45,48,0.0 +23887,50,16.25,21,0.0 +23887,9,97,3,0.0 +23887,22,21,40,0.0 +23887,47,9.5,11,0.0 +23887,28,45.6,41,0.0 +23887,75,7.75,17,0.0 +23887,3,10,46,0.0 +23887,10,31,47,0.0 +23887,56,38,30,0.0 +23887,39,18,4,0.0 +23887,59,55,17,0.0 +23887,57,19.5,10,0.0 +23887,58,13.25,2,0.0 +23887,33,2.5,5,0.0 +23887,40,18.4,37,0.0 +23887,13,6,37,0.0 +23887,63,43.9,39,0.0 +23887,7,30,9,0.0 +23887,52,7,38,0.0 +23887,73,15,10,0.0 +23887,41,9.65,24,0.0 +23887,23,9,32,0.0 +23887,20,81,22,0.0 +23887,61,28.5,31,0.0 +23887,49,20,28,0.0 +23887,18,62.5,44,0.0 +23887,4,22,2,0.0 +23887,53,32.8,6,0.0 +23887,2,19,41,0.0 +23887,48,12.75,1,0.0 +23887,71,21.5,40,0.0 +23887,32,32,45,0.0 +23887,29,123.79,30,0.0 +23887,5,21.35,33,0.0 +23887,62,49.3,22,0.0 +23887,26,31.23,47,0.0 +23887,64,33.25,14,0.0 +23887,14,23.25,13,0.0 +23887,74,10,18,0.0 +23887,31,12.5,46,0.0 +23887,15,15.5,24,0.0 +23887,1,18,4,0.0 +23887,44,19.45,48,0.0 +23887,17,39,28,0.0 +23887,46,12,44,0.0 +23887,60,34,35,0.0 +23887,65,21.05,49,0.0 +23887,36,19,23,0.0 +23887,8,40,34,0.0 +23887,35,18,29,0.0 +23888,56,38,13,0.0 +23888,14,23.25,21,0.0 +23888,59,55,45,0.0 +23888,49,20,8,0.0 +23888,37,26,27,0.0 +23888,65,21.05,14,0.0 +23888,22,21,49,0.0 +23888,68,12.5,8,0.0 +23888,20,81,10,0.0 +23888,9,97,16,0.0 +23888,67,14,1,0.0 +23888,34,14,20,0.0 +23888,15,15.5,50,0.0 +23888,12,38,15,0.0 +23888,51,53,29,0.0 +23888,29,123.79,16,0.0 +23888,77,13,2,0.0 +23888,31,12.5,35,0.0 +23889,18,62.5,35,0.0 +23889,46,12,20,0.0 +23889,72,34.8,15,0.0 +23889,34,14,47,0.0 +23889,58,13.25,4,0.0 +23889,36,19,49,0.0 +23889,13,6,10,0.0 +23889,39,18,25,0.0 +23889,43,46,49,0.0 +23889,48,12.75,6,0.0 +23890,20,81,23,0.0 +23890,46,12,30,0.0 +23890,43,46,38,0.0 +23890,25,14,8,0.0 +23890,28,45.6,10,0.0 +23890,40,18.4,49,0.0 +23890,9,97,13,0.0 +23890,11,21,1,0.0 +23890,19,9.2,11,0.0 +23890,38,263.5,21,0.0 +23890,74,10,47,0.0 +23890,65,21.05,12,0.0 +23890,14,23.25,48,0.0 +23890,76,18,2,0.0 +23890,2,19,42,0.0 +23890,37,26,32,0.0 +23890,45,9.5,18,0.0 +23890,7,30,25,0.0 +23890,54,7.45,2,0.0 +23890,52,7,27,0.0 +23890,53,32.8,13,0.0 +23890,75,7.75,30,0.0 +23890,72,34.8,25,0.0 +23890,39,18,49,0.0 +23890,31,12.5,24,0.0 +23890,71,21.5,6,0.0 +23890,64,33.25,45,0.0 +23890,16,17.45,37,0.0 +23890,8,40,2,0.0 +23890,1,18,15,0.0 +23890,30,25.89,7,0.0 +23890,34,14,6,0.0 +23890,55,24,34,0.0 +23890,32,32,47,0.0 +23890,58,13.25,31,0.0 +23890,63,43.9,10,0.0 +23890,29,123.79,48,0.0 +23890,47,9.5,24,0.0 +23890,42,14,20,0.0 +23890,18,62.5,4,0.0 +23890,51,53,27,0.0 +23890,10,31,12,0.0 +23890,70,15,44,0.0 +23890,62,49.3,24,0.0 +23891,61,28.5,20,0.0 +23891,27,43.9,26,0.0 +23891,49,20,9,0.0 +23891,22,21,45,0.0 +23891,48,12.75,40,0.0 +23891,7,30,2,0.0 +23891,55,24,40,0.0 +23891,1,18,15,0.0 +23891,38,263.5,29,0.0 +23891,74,10,11,0.0 +23891,59,55,44,0.0 +23891,42,14,38,0.0 +23891,40,18.4,15,0.0 +23891,37,26,11,0.0 +23891,18,62.5,15,0.0 +23891,17,39,35,0.0 +23891,34,14,27,0.0 +23892,15,15.5,26,0.0 +23892,75,7.75,14,0.0 +23892,6,25,3,0.0 +23892,3,10,8,0.0 +23892,11,21,44,0.0 +23892,52,7,27,0.0 +23892,56,38,36,0.0 +23892,13,6,28,0.0 +23892,51,53,41,0.0 +23892,68,12.5,41,0.0 +23892,37,26,4,0.0 +23892,58,13.25,13,0.0 +23892,33,2.5,1,0.0 +23892,41,9.65,44,0.0 +23892,28,45.6,26,0.0 +23892,61,28.5,16,0.0 +23892,29,123.79,6,0.0 +23892,17,39,44,0.0 +23892,21,10,19,0.0 +23892,43,46,38,0.0 +23892,57,19.5,14,0.0 +23892,14,23.25,49,0.0 +23892,62,49.3,19,0.0 +23892,53,32.8,21,0.0 +23892,22,21,11,0.0 +23892,31,12.5,47,0.0 +23892,46,12,49,0.0 +23892,48,12.75,3,0.0 +23892,42,14,46,0.0 +23892,74,10,40,0.0 +23892,69,36,27,0.0 +23892,27,43.9,41,0.0 +23892,25,14,47,0.0 +23892,18,62.5,26,0.0 +23892,10,31,39,0.0 +23892,32,32,42,0.0 +23892,63,43.9,46,0.0 +23892,76,18,44,0.0 +23892,45,9.5,21,0.0 +23892,23,9,20,0.0 +23892,70,15,49,0.0 +23892,20,81,6,0.0 +23892,67,14,17,0.0 +23892,40,18.4,26,0.0 +23892,34,14,31,0.0 +23892,16,17.45,34,0.0 +23892,8,40,15,0.0 +23892,39,18,7,0.0 +23892,7,30,14,0.0 +23892,55,24,50,0.0 +23892,1,18,47,0.0 +23892,19,9.2,30,0.0 +23892,4,22,4,0.0 +23892,65,21.05,8,0.0 +23892,36,19,47,0.0 +23892,77,13,3,0.0 +23892,64,33.25,34,0.0 +23892,26,31.23,17,0.0 +23892,73,15,9,0.0 +23892,54,7.45,20,0.0 +23892,30,25.89,31,0.0 +23892,12,38,38,0.0 +23892,24,4.5,15,0.0 +23892,49,20,30,0.0 +23892,66,17,47,0.0 +23892,50,16.25,46,0.0 +23892,9,97,11,0.0 +23892,44,19.45,36,0.0 +23892,5,21.35,6,0.0 +23892,72,34.8,20,0.0 +23892,35,18,39,0.0 +23893,71,21.5,26,0.0 +23893,36,19,1,0.0 +23893,49,20,43,0.0 +23893,6,25,40,0.0 +23893,1,18,50,0.0 +23893,72,34.8,40,0.0 +23893,37,26,9,0.0 +23893,29,123.79,4,0.0 +23893,77,13,15,0.0 +23893,30,25.89,41,0.0 +23894,63,43.9,18,0.0 +23894,14,23.25,19,0.0 +23894,71,21.5,6,0.0 +23894,6,25,37,0.0 +23894,46,12,25,0.0 +23894,15,15.5,41,0.0 +23894,17,39,29,0.0 +23894,42,14,42,0.0 +23894,21,10,36,0.0 +23894,35,18,40,0.0 +23894,50,16.25,16,0.0 +23894,20,81,49,0.0 +23894,47,9.5,36,0.0 +23894,53,32.8,34,0.0 +23894,60,34,43,0.0 +23894,26,31.23,26,0.0 +23894,41,9.65,24,0.0 +23894,75,7.75,48,0.0 +23894,9,97,14,0.0 +23894,57,19.5,30,0.0 +23894,27,43.9,11,0.0 +23894,13,6,26,0.0 +23894,29,123.79,42,0.0 +23894,43,46,48,0.0 +23894,11,21,18,0.0 +23894,18,62.5,13,0.0 +23894,25,14,12,0.0 +23894,33,2.5,50,0.0 +23894,40,18.4,46,0.0 +23894,3,10,6,0.0 +23894,5,21.35,5,0.0 +23894,45,9.5,34,0.0 +23894,2,19,43,0.0 +23894,61,28.5,25,0.0 +23894,30,25.89,25,0.0 +23894,48,12.75,13,0.0 +23894,39,18,32,0.0 +23894,10,31,2,0.0 +23894,64,33.25,4,0.0 +23894,72,34.8,26,0.0 +23894,22,21,31,0.0 +23894,65,21.05,49,0.0 +23894,55,24,16,0.0 +23894,38,263.5,21,0.0 +23894,49,20,46,0.0 +23894,34,14,20,0.0 +23894,44,19.45,36,0.0 +23894,54,7.45,49,0.0 +23894,58,13.25,11,0.0 +23894,16,17.45,47,0.0 +23894,4,22,46,0.0 +23895,32,32,41,0.0 +23895,48,12.75,12,0.0 +23895,47,9.5,38,0.0 +23895,30,25.89,13,0.0 +23895,41,9.65,34,0.0 +23895,68,12.5,43,0.0 +23895,53,32.8,31,0.0 +23895,72,34.8,11,0.0 +23895,33,2.5,5,0.0 +23895,55,24,33,0.0 +23895,35,18,13,0.0 +23895,44,19.45,19,0.0 +23895,38,263.5,34,0.0 +23895,17,39,46,0.0 +23895,14,23.25,12,0.0 +23895,26,31.23,27,0.0 +23895,6,25,10,0.0 +23895,16,17.45,46,0.0 +23895,76,18,34,0.0 +23895,37,26,50,0.0 +23895,24,4.5,42,0.0 +23895,65,21.05,14,0.0 +23895,69,36,18,0.0 +23895,19,9.2,40,0.0 +23895,20,81,15,0.0 +23895,7,30,2,0.0 +23895,45,9.5,12,0.0 +23895,62,49.3,7,0.0 +23895,8,40,44,0.0 +23895,74,10,26,0.0 +23895,43,46,25,0.0 +23895,59,55,16,0.0 +23895,1,18,37,0.0 +23895,21,10,30,0.0 +23895,39,18,17,0.0 +23895,4,22,11,0.0 +23895,23,9,14,0.0 +23895,49,20,11,0.0 +23895,29,123.79,15,0.0 +23895,2,19,26,0.0 +23895,10,31,47,0.0 +23895,40,18.4,43,0.0 +23895,11,21,28,0.0 +23895,3,10,8,0.0 +23896,57,19.5,37,0.0 +23896,39,18,39,0.0 +23896,64,33.25,14,0.0 +23896,46,12,11,0.0 +23896,27,43.9,33,0.0 +23896,50,16.25,11,0.0 +23896,18,62.5,14,0.0 +23896,73,15,11,0.0 +23896,33,2.5,28,0.0 +23896,60,34,32,0.0 +23896,58,13.25,27,0.0 +23896,17,39,34,0.0 +23896,37,26,44,0.0 +23896,2,19,38,0.0 +23896,31,12.5,47,0.0 +23896,21,10,48,0.0 +23896,44,19.45,45,0.0 +23896,51,53,1,0.0 +23896,56,38,15,0.0 +23896,72,34.8,44,0.0 +23896,26,31.23,35,0.0 +23896,43,46,2,0.0 +23896,70,15,25,0.0 +23896,74,10,14,0.0 +23896,38,263.5,14,0.0 +23896,32,32,17,0.0 +23896,11,21,16,0.0 +23896,47,9.5,33,0.0 +23896,42,14,3,0.0 +23896,8,40,36,0.0 +23896,71,21.5,43,0.0 +23896,41,9.65,28,0.0 +23896,6,25,18,0.0 +23896,19,9.2,40,0.0 +23896,4,22,43,0.0 +23896,28,45.6,33,0.0 +23896,59,55,37,0.0 +23896,52,7,7,0.0 +23896,30,25.89,14,0.0 +23896,67,14,18,0.0 +23896,69,36,19,0.0 +23896,48,12.75,3,0.0 +23896,29,123.79,10,0.0 +23896,22,21,27,0.0 +23896,1,18,7,0.0 +23896,14,23.25,46,0.0 +23896,77,13,25,0.0 +23896,61,28.5,38,0.0 +23896,45,9.5,15,0.0 +23896,40,18.4,23,0.0 +23896,20,81,31,0.0 +23896,36,19,24,0.0 +23896,15,15.5,20,0.0 +23896,3,10,46,0.0 +23896,23,9,18,0.0 +23896,54,7.45,43,0.0 +23896,10,31,24,0.0 +23896,35,18,35,0.0 +23896,63,43.9,45,0.0 +23896,9,97,24,0.0 +23896,24,4.5,46,0.0 +23896,68,12.5,19,0.0 +23896,62,49.3,9,0.0 +23897,40,18.4,33,0.0 +23897,63,43.9,35,0.0 +23897,62,49.3,5,0.0 +23897,32,32,6,0.0 +23897,66,17,43,0.0 +23897,67,14,14,0.0 +23897,25,14,20,0.0 +23897,76,18,9,0.0 +23897,33,2.5,39,0.0 +23897,61,28.5,14,0.0 +23897,64,33.25,14,0.0 +23897,36,19,17,0.0 +23897,24,4.5,43,0.0 +23897,53,32.8,21,0.0 +23897,15,15.5,8,0.0 +23897,42,14,6,0.0 +23897,30,25.89,25,0.0 +23897,74,10,4,0.0 +23897,52,7,23,0.0 +23897,75,7.75,12,0.0 +23897,49,20,50,0.0 +23897,14,23.25,22,0.0 +23897,47,9.5,12,0.0 +23897,23,9,36,0.0 +23897,16,17.45,7,0.0 +23897,35,18,13,0.0 +23897,59,55,40,0.0 +23897,1,18,4,0.0 +23897,18,62.5,45,0.0 +23897,50,16.25,24,0.0 +23897,8,40,31,0.0 +23897,5,21.35,30,0.0 +23897,39,18,18,0.0 +23897,37,26,8,0.0 +23897,69,36,18,0.0 +23897,60,34,36,0.0 +23897,20,81,12,0.0 +23897,51,53,28,0.0 +23897,31,12.5,6,0.0 +23897,41,9.65,31,0.0 +23897,26,31.23,34,0.0 +23897,46,12,46,0.0 +23897,45,9.5,1,0.0 +23897,65,21.05,9,0.0 +23897,34,14,44,0.0 +23897,6,25,32,0.0 +23897,73,15,3,0.0 +23897,72,34.8,40,0.0 +23897,38,263.5,41,0.0 +23897,28,45.6,29,0.0 +23897,58,13.25,15,0.0 +23897,3,10,38,0.0 +23897,2,19,11,0.0 +23897,71,21.5,5,0.0 +23897,44,19.45,50,0.0 +23897,54,7.45,31,0.0 +23897,11,21,36,0.0 +23897,68,12.5,31,0.0 +23897,55,24,31,0.0 +23897,56,38,20,0.0 +23897,13,6,48,0.0 +23897,17,39,26,0.0 +23897,29,123.79,2,0.0 +23897,57,19.5,49,0.0 +23898,2,19,2,0.0 +23898,21,10,35,0.0 +23898,34,14,49,0.0 +23898,10,31,15,0.0 +23898,49,20,43,0.0 +23898,66,17,40,0.0 +23898,27,43.9,24,0.0 +23898,72,34.8,39,0.0 +23898,31,12.5,28,0.0 +23898,36,19,28,0.0 +23898,26,31.23,44,0.0 +23898,56,38,14,0.0 +23898,19,9.2,13,0.0 +23898,73,15,12,0.0 +23898,4,22,14,0.0 +23898,29,123.79,48,0.0 +23898,30,25.89,38,0.0 +23898,44,19.45,20,0.0 +23898,52,7,34,0.0 +23898,53,32.8,8,0.0 +23898,16,17.45,1,0.0 +23898,11,21,6,0.0 +23898,18,62.5,22,0.0 +23898,41,9.65,6,0.0 +23898,28,45.6,45,0.0 +23898,32,32,3,0.0 +23898,37,26,5,0.0 +23898,47,9.5,10,0.0 +23898,63,43.9,33,0.0 +23898,54,7.45,44,0.0 +23898,69,36,19,0.0 +23898,61,28.5,47,0.0 +23898,13,6,13,0.0 +23898,50,16.25,17,0.0 +23898,58,13.25,6,0.0 +23898,5,21.35,9,0.0 +23898,3,10,42,0.0 +23898,74,10,10,0.0 +23898,40,18.4,11,0.0 +23898,23,9,15,0.0 +23898,35,18,1,0.0 +23898,55,24,32,0.0 +23898,17,39,42,0.0 +23899,14,23.25,28,0.0 +23899,73,15,5,0.0 +23899,29,123.79,20,0.0 +23899,70,15,20,0.0 +23899,52,7,12,0.0 +23899,50,16.25,15,0.0 +23899,57,19.5,47,0.0 +23899,76,18,15,0.0 +23899,65,21.05,16,0.0 +23899,5,21.35,23,0.0 +23899,60,34,32,0.0 +23899,55,24,3,0.0 +23899,67,14,27,0.0 +23899,77,13,30,0.0 +23899,9,97,40,0.0 +23899,53,32.8,42,0.0 +23899,27,43.9,6,0.0 +23899,3,10,38,0.0 +23899,44,19.45,9,0.0 +23899,47,9.5,31,0.0 +23899,54,7.45,36,0.0 +23899,43,46,47,0.0 +23899,23,9,45,0.0 +23899,48,12.75,31,0.0 +23899,72,34.8,37,0.0 +23899,13,6,10,0.0 +23899,69,36,15,0.0 +23899,11,21,11,0.0 +23899,19,9.2,44,0.0 +23899,39,18,22,0.0 +23899,2,19,39,0.0 +23899,18,62.5,5,0.0 +23899,34,14,33,0.0 +23899,6,25,29,0.0 +23899,61,28.5,14,0.0 +23899,36,19,28,0.0 +23899,8,40,49,0.0 +23899,38,263.5,2,0.0 +23899,40,18.4,10,0.0 +23899,25,14,32,0.0 +23899,66,17,32,0.0 +23899,26,31.23,40,0.0 +23899,22,21,25,0.0 +23899,62,49.3,46,0.0 +23899,46,12,9,0.0 +23899,51,53,43,0.0 +23899,17,39,14,0.0 +23899,37,26,8,0.0 +23899,10,31,40,0.0 +23899,20,81,6,0.0 +23899,64,33.25,36,0.0 +23899,28,45.6,31,0.0 +23899,58,13.25,10,0.0 +23899,4,22,16,0.0 +23899,45,9.5,2,0.0 +23899,59,55,44,0.0 +23899,31,12.5,50,0.0 +23899,71,21.5,35,0.0 +23899,63,43.9,39,0.0 +23899,30,25.89,2,0.0 +23899,35,18,44,0.0 +23899,32,32,45,0.0 +23899,74,10,3,0.0 +23899,12,38,48,0.0 +23899,68,12.5,32,0.0 +23899,33,2.5,14,0.0 +23899,7,30,6,0.0 +23899,42,14,16,0.0 +23899,16,17.45,30,0.0 +23899,21,10,50,0.0 +23899,75,7.75,24,0.0 +23899,49,20,12,0.0 +23899,56,38,40,0.0 +23899,1,18,24,0.0 +23899,41,9.65,44,0.0 +23899,24,4.5,18,0.0 +23899,15,15.5,12,0.0 +23900,20,81,13,0.0 +23900,73,15,20,0.0 +23900,16,17.45,45,0.0 +23900,33,2.5,45,0.0 +23900,55,24,18,0.0 +23900,51,53,20,0.0 +23900,52,7,30,0.0 +23900,74,10,31,0.0 +23900,35,18,22,0.0 +23900,65,21.05,44,0.0 +23900,31,12.5,40,0.0 +23900,1,18,49,0.0 +23900,58,13.25,33,0.0 +23900,9,97,41,0.0 +23900,61,28.5,33,0.0 +23900,5,21.35,5,0.0 +23900,22,21,17,0.0 +23900,13,6,7,0.0 +23900,34,14,10,0.0 +23900,68,12.5,28,0.0 +23900,59,55,45,0.0 +23900,71,21.5,1,0.0 +23900,54,7.45,38,0.0 +23900,72,34.8,11,0.0 +23900,7,30,49,0.0 +23900,19,9.2,30,0.0 +23900,49,20,11,0.0 +23901,24,4.5,10,0.0 +23901,13,6,47,0.0 +23901,23,9,11,0.0 +23901,1,18,11,0.0 +23901,32,32,11,0.0 +23901,66,17,23,0.0 +23901,44,19.45,9,0.0 +23901,9,97,50,0.0 +23901,5,21.35,4,0.0 +23901,26,31.23,34,0.0 +23901,54,7.45,41,0.0 +23901,62,49.3,29,0.0 +23901,72,34.8,45,0.0 +23901,75,7.75,22,0.0 +23901,56,38,36,0.0 +23901,10,31,34,0.0 +23901,49,20,6,0.0 +23901,19,9.2,49,0.0 +23901,20,81,45,0.0 +23901,11,21,8,0.0 +23901,46,12,24,0.0 +23901,27,43.9,4,0.0 +23901,14,23.25,41,0.0 +23901,77,13,27,0.0 +23901,31,12.5,43,0.0 +23901,61,28.5,13,0.0 +23901,35,18,26,0.0 +23901,48,12.75,11,0.0 +23901,67,14,6,0.0 +23901,15,15.5,46,0.0 +23901,68,12.5,43,0.0 +23901,55,24,50,0.0 +23901,58,13.25,47,0.0 +23901,53,32.8,31,0.0 +23901,69,36,40,0.0 +23901,43,46,33,0.0 +23901,38,263.5,2,0.0 +23901,37,26,45,0.0 +23901,51,53,12,0.0 +23901,63,43.9,41,0.0 +23901,41,9.65,25,0.0 +23901,21,10,2,0.0 +23901,29,123.79,19,0.0 +23901,3,10,25,0.0 +23901,34,14,39,0.0 +23901,70,15,11,0.0 +23901,64,33.25,29,0.0 +23901,60,34,5,0.0 +23901,74,10,30,0.0 +23901,57,19.5,28,0.0 +23901,25,14,5,0.0 +23901,4,22,20,0.0 +23901,8,40,46,0.0 +23901,30,25.89,28,0.0 +23901,42,14,32,0.0 +23901,33,2.5,10,0.0 +23902,8,40,6,0.0 +23902,37,26,37,0.0 +23903,23,9,29,0.0 +23903,73,15,15,0.0 +23903,11,21,31,0.0 +23903,45,9.5,25,0.0 +23903,19,9.2,37,0.0 +23903,42,14,10,0.0 +23903,60,34,25,0.0 +23903,59,55,48,0.0 +23903,30,25.89,50,0.0 +23903,61,28.5,42,0.0 +23904,50,16.25,35,0.0 +23904,39,18,46,0.0 +23904,37,26,42,0.0 +23904,56,38,4,0.0 +23904,68,12.5,21,0.0 +23904,51,53,10,0.0 +23904,55,24,18,0.0 +23904,22,21,32,0.0 +23904,19,9.2,27,0.0 +23904,9,97,32,0.0 +23904,62,49.3,24,0.0 +23904,7,30,10,0.0 +23904,43,46,34,0.0 +23904,73,15,39,0.0 +23904,72,34.8,11,0.0 +23904,27,43.9,40,0.0 +23904,4,22,1,0.0 +23904,63,43.9,13,0.0 +23904,71,21.5,33,0.0 +23904,21,10,22,0.0 +23904,58,13.25,30,0.0 +23904,70,15,16,0.0 +23904,8,40,16,0.0 +23904,57,19.5,2,0.0 +23904,6,25,50,0.0 +23904,24,4.5,46,0.0 +23904,44,19.45,3,0.0 +23904,34,14,23,0.0 +23904,25,14,26,0.0 +23904,5,21.35,42,0.0 +23904,18,62.5,42,0.0 +23904,38,263.5,27,0.0 +23904,74,10,14,0.0 +23904,30,25.89,2,0.0 +23904,54,7.45,49,0.0 +23904,49,20,44,0.0 +23904,52,7,1,0.0 +23904,12,38,24,0.0 +23904,66,17,22,0.0 +23904,11,21,20,0.0 +23904,20,81,8,0.0 +23904,60,34,16,0.0 +23904,14,23.25,33,0.0 +23904,23,9,7,0.0 +23904,47,9.5,43,0.0 +23904,61,28.5,35,0.0 +23904,10,31,49,0.0 +23904,42,14,34,0.0 +23904,64,33.25,7,0.0 +23904,13,6,16,0.0 +23904,3,10,24,0.0 +23904,69,36,47,0.0 +23904,28,45.6,16,0.0 +23904,48,12.75,8,0.0 +23904,17,39,7,0.0 +23904,59,55,10,0.0 +23904,16,17.45,17,0.0 +23904,76,18,4,0.0 +23904,41,9.65,19,0.0 +23904,53,32.8,35,0.0 +23904,67,14,44,0.0 +23904,36,19,18,0.0 +23904,75,7.75,2,0.0 +23904,77,13,44,0.0 +23904,32,32,24,0.0 +23904,31,12.5,45,0.0 +23904,2,19,1,0.0 +23904,46,12,9,0.0 +23904,33,2.5,49,0.0 +23904,26,31.23,2,0.0 +23905,9,97,30,0.0 +23905,29,123.79,17,0.0 +23905,76,18,19,0.0 +23905,18,62.5,28,0.0 +23905,28,45.6,2,0.0 +23905,58,13.25,38,0.0 +23905,68,12.5,38,0.0 +23905,67,14,34,0.0 +23905,47,9.5,24,0.0 +23905,64,33.25,27,0.0 +23905,45,9.5,11,0.0 +23905,66,17,16,0.0 +23905,48,12.75,24,0.0 +23905,19,9.2,2,0.0 +23905,65,21.05,47,0.0 +23905,33,2.5,2,0.0 +23905,1,18,10,0.0 +23905,52,7,35,0.0 +23905,31,12.5,34,0.0 +23905,42,14,10,0.0 +23905,55,24,50,0.0 +23905,32,32,50,0.0 +23905,39,18,33,0.0 +23905,44,19.45,18,0.0 +23905,22,21,21,0.0 +23905,40,18.4,9,0.0 +23905,57,19.5,1,0.0 +23905,14,23.25,47,0.0 +23905,71,21.5,10,0.0 +23905,51,53,34,0.0 +23905,20,81,32,0.0 +23905,11,21,47,0.0 +23905,13,6,46,0.0 +23905,17,39,40,0.0 +23905,49,20,13,0.0 +23906,19,9.2,50,0.0 +23906,16,17.45,43,0.0 +23906,62,49.3,18,0.0 +23906,20,81,42,0.0 +23906,47,9.5,30,0.0 +23906,54,7.45,17,0.0 +23906,32,32,33,0.0 +23906,24,4.5,19,0.0 +23906,3,10,17,0.0 +23906,34,14,32,0.0 +23906,38,263.5,44,0.0 +23906,33,2.5,12,0.0 +23906,2,19,12,0.0 +23906,21,10,6,0.0 +23906,35,18,2,0.0 +23906,23,9,27,0.0 +23906,12,38,6,0.0 +23906,25,14,50,0.0 +23906,56,38,35,0.0 +23906,15,15.5,2,0.0 +23906,13,6,10,0.0 +23906,60,34,29,0.0 +23906,43,46,36,0.0 +23906,29,123.79,38,0.0 +23906,71,21.5,7,0.0 +23906,44,19.45,14,0.0 +23906,1,18,23,0.0 +23906,26,31.23,29,0.0 +23906,59,55,13,0.0 +23906,4,22,24,0.0 +23906,75,7.75,10,0.0 +23906,42,14,21,0.0 +23906,17,39,36,0.0 +23906,10,31,47,0.0 +23906,36,19,21,0.0 +23906,52,7,16,0.0 +23906,30,25.89,44,0.0 +23906,50,16.25,5,0.0 +23906,22,21,24,0.0 +23907,58,13.25,31,0.0 +23907,20,81,31,0.0 +23907,8,40,12,0.0 +23907,30,25.89,44,0.0 +23907,40,18.4,23,0.0 +23907,43,46,1,0.0 +23907,75,7.75,43,0.0 +23907,39,18,1,0.0 +23907,32,32,20,0.0 +23907,19,9.2,32,0.0 +23907,63,43.9,25,0.0 +23907,24,4.5,5,0.0 +23907,44,19.45,15,0.0 +23907,22,21,36,0.0 +23907,76,18,12,0.0 +23907,31,12.5,6,0.0 +23907,1,18,37,0.0 +23907,77,13,2,0.0 +23907,3,10,37,0.0 +23907,56,38,5,0.0 +23907,73,15,46,0.0 +23907,65,21.05,9,0.0 +23907,7,30,14,0.0 +23907,71,21.5,36,0.0 +23907,52,7,38,0.0 +23907,38,263.5,8,0.0 +23907,37,26,7,0.0 +23907,53,32.8,14,0.0 +23907,15,15.5,14,0.0 +23907,67,14,5,0.0 +23907,10,31,17,0.0 +23907,54,7.45,21,0.0 +23907,62,49.3,17,0.0 +23907,21,10,33,0.0 +23907,5,21.35,7,0.0 +23907,17,39,20,0.0 +23907,48,12.75,44,0.0 +23907,4,22,20,0.0 +23907,42,14,31,0.0 +23907,49,20,12,0.0 +23907,69,36,36,0.0 +23907,13,6,41,0.0 +23907,6,25,39,0.0 +23907,25,14,25,0.0 +23907,23,9,34,0.0 +23907,61,28.5,50,0.0 +23907,50,16.25,24,0.0 +23907,46,12,48,0.0 +23907,2,19,42,0.0 +23907,34,14,4,0.0 +23907,27,43.9,46,0.0 +23907,26,31.23,32,0.0 +23907,57,19.5,23,0.0 +23907,74,10,42,0.0 +23907,68,12.5,33,0.0 +23907,64,33.25,1,0.0 +23907,18,62.5,48,0.0 +23907,33,2.5,40,0.0 +23907,35,18,25,0.0 +23907,45,9.5,9,0.0 +23907,12,38,20,0.0 +23907,55,24,7,0.0 +23907,28,45.6,35,0.0 +23907,66,17,48,0.0 +23908,69,36,42,0.0 +23908,25,14,47,0.0 +23909,53,32.8,34,0.0 +23909,73,15,35,0.0 +23909,31,12.5,39,0.0 +23909,13,6,11,0.0 +23909,59,55,18,0.0 +23909,41,9.65,6,0.0 +23909,46,12,5,0.0 +23909,47,9.5,22,0.0 +23909,30,25.89,23,0.0 +23909,39,18,34,0.0 +23909,66,17,42,0.0 +23909,56,38,28,0.0 +23909,5,21.35,40,0.0 +23909,44,19.45,22,0.0 +23909,55,24,21,0.0 +23909,62,49.3,42,0.0 +23909,35,18,29,0.0 +23909,57,19.5,47,0.0 +23909,52,7,45,0.0 +23909,2,19,28,0.0 +23909,69,36,8,0.0 +23909,37,26,43,0.0 +23909,6,25,13,0.0 +23909,4,22,36,0.0 +23910,51,53,44,0.0 +23910,59,55,14,0.0 +23910,39,18,15,0.0 +23910,65,21.05,6,0.0 +23910,17,39,45,0.0 +23910,4,22,8,0.0 +23910,24,4.5,24,0.0 +23910,10,31,12,0.0 +23910,37,26,39,0.0 +23910,64,33.25,50,0.0 +23910,12,38,20,0.0 +23910,33,2.5,40,0.0 +23910,23,9,35,0.0 +23910,31,12.5,16,0.0 +23910,25,14,45,0.0 +23910,68,12.5,50,0.0 +23910,5,21.35,11,0.0 +23910,55,24,6,0.0 +23910,18,62.5,37,0.0 +23910,42,14,28,0.0 +23910,2,19,24,0.0 +23910,47,9.5,1,0.0 +23910,20,81,14,0.0 +23910,73,15,25,0.0 +23910,11,21,48,0.0 +23910,28,45.6,40,0.0 +23910,52,7,3,0.0 +23910,21,10,5,0.0 +23910,62,49.3,35,0.0 +23910,74,10,19,0.0 +23910,58,13.25,24,0.0 +23910,26,31.23,16,0.0 +23910,70,15,13,0.0 +23910,6,25,46,0.0 +23910,56,38,33,0.0 +23910,43,46,5,0.0 +23910,77,13,23,0.0 +23910,27,43.9,15,0.0 +23910,66,17,22,0.0 +23910,49,20,15,0.0 +23910,57,19.5,12,0.0 +23910,46,12,44,0.0 +23910,53,32.8,30,0.0 +23910,45,9.5,15,0.0 +23910,71,21.5,25,0.0 +23910,35,18,16,0.0 +23910,3,10,1,0.0 +23910,16,17.45,25,0.0 +23910,61,28.5,10,0.0 +23910,9,97,43,0.0 +23910,76,18,15,0.0 +23910,32,32,36,0.0 +23910,14,23.25,30,0.0 +23910,7,30,13,0.0 +23910,19,9.2,25,0.0 +23910,63,43.9,17,0.0 +23911,36,19,15,0.0 +23911,62,49.3,43,0.0 +23911,48,12.75,48,0.0 +23911,19,9.2,1,0.0 +23911,21,10,20,0.0 +23911,47,9.5,24,0.0 +23911,53,32.8,32,0.0 +23911,74,10,41,0.0 +23911,58,13.25,18,0.0 +23911,50,16.25,3,0.0 +23911,10,31,46,0.0 +23911,37,26,19,0.0 +23911,23,9,26,0.0 +23911,13,6,29,0.0 +23911,45,9.5,15,0.0 +23911,3,10,1,0.0 +23911,41,9.65,27,0.0 +23911,72,34.8,29,0.0 +23911,16,17.45,27,0.0 +23911,71,21.5,47,0.0 +23911,76,18,9,0.0 +23911,5,21.35,21,0.0 +23911,2,19,3,0.0 +23911,61,28.5,45,0.0 +23911,60,34,18,0.0 +23911,33,2.5,22,0.0 +23911,67,14,33,0.0 +23911,73,15,38,0.0 +23911,15,15.5,12,0.0 +23911,8,40,15,0.0 +23911,57,19.5,25,0.0 +23911,77,13,20,0.0 +23911,9,97,46,0.0 +23911,17,39,19,0.0 +23911,31,12.5,34,0.0 +23911,7,30,39,0.0 +23911,18,62.5,44,0.0 +23911,43,46,34,0.0 +23911,51,53,28,0.0 +23911,20,81,42,0.0 +23911,32,32,20,0.0 +23911,55,24,39,0.0 +23911,66,17,19,0.0 +23911,65,21.05,33,0.0 +23911,39,18,10,0.0 +23911,49,20,33,0.0 +23911,27,43.9,23,0.0 +23911,11,21,28,0.0 +23911,46,12,32,0.0 +23911,6,25,43,0.0 +23911,42,14,23,0.0 +23911,22,21,18,0.0 +23911,64,33.25,32,0.0 +23911,59,55,21,0.0 +23911,14,23.25,13,0.0 +23911,28,45.6,45,0.0 +23911,52,7,3,0.0 +23911,70,15,20,0.0 +23911,24,4.5,21,0.0 +23911,4,22,42,0.0 +23912,53,32.8,15,0.0 +23912,77,13,1,0.0 +23912,1,18,16,0.0 +23912,29,123.79,3,0.0 +23912,19,9.2,12,0.0 +23912,48,12.75,40,0.0 +23912,17,39,14,0.0 +23912,54,7.45,38,0.0 +23912,43,46,14,0.0 +23912,28,45.6,35,0.0 +23912,73,15,12,0.0 +23912,45,9.5,17,0.0 +23912,6,25,48,0.0 +23912,15,15.5,11,0.0 +23912,66,17,26,0.0 +23912,22,21,42,0.0 +23912,4,22,36,0.0 +23912,55,24,13,0.0 +23912,8,40,24,0.0 +23912,51,53,28,0.0 +23912,72,34.8,36,0.0 +23912,69,36,29,0.0 +23912,47,9.5,30,0.0 +23912,52,7,3,0.0 +23912,5,21.35,36,0.0 +23912,25,14,10,0.0 +23912,31,12.5,10,0.0 +23912,34,14,33,0.0 +23912,41,9.65,33,0.0 +23912,3,10,22,0.0 +23912,57,19.5,49,0.0 +23912,68,12.5,45,0.0 +23912,12,38,21,0.0 +23912,76,18,1,0.0 +23912,65,21.05,33,0.0 +23912,11,21,46,0.0 +23912,37,26,40,0.0 +23912,33,2.5,16,0.0 +23912,13,6,35,0.0 +23912,42,14,25,0.0 +23912,59,55,3,0.0 +23912,35,18,34,0.0 +23912,61,28.5,11,0.0 +23912,58,13.25,48,0.0 +23912,70,15,15,0.0 +23912,16,17.45,17,0.0 +23912,56,38,17,0.0 +23912,63,43.9,26,0.0 +23912,23,9,16,0.0 +23912,26,31.23,7,0.0 +23912,50,16.25,45,0.0 +23912,27,43.9,30,0.0 +23912,75,7.75,44,0.0 +23912,21,10,6,0.0 +23912,36,19,15,0.0 +23912,39,18,12,0.0 +23912,74,10,6,0.0 +23912,64,33.25,3,0.0 +23912,18,62.5,6,0.0 +23912,7,30,3,0.0 +23912,30,25.89,50,0.0 +23912,60,34,29,0.0 +23912,9,97,24,0.0 +23912,67,14,14,0.0 +23912,40,18.4,44,0.0 +23912,14,23.25,41,0.0 +23912,71,21.5,3,0.0 +23912,49,20,18,0.0 +23912,46,12,31,0.0 +23912,24,4.5,34,0.0 +23912,38,263.5,9,0.0 +23912,32,32,35,0.0 +23913,17,39,41,0.0 +23913,8,40,38,0.0 +23913,54,7.45,31,0.0 +23913,47,9.5,37,0.0 +23913,26,31.23,15,0.0 +23913,11,21,48,0.0 +23913,50,16.25,23,0.0 +23913,15,15.5,20,0.0 +23913,53,32.8,2,0.0 +23913,44,19.45,30,0.0 +23913,5,21.35,20,0.0 +23913,32,32,34,0.0 +23913,28,45.6,4,0.0 +23913,65,21.05,49,0.0 +23913,68,12.5,34,0.0 +23913,6,25,48,0.0 +23913,2,19,41,0.0 +23913,40,18.4,33,0.0 +23913,48,12.75,41,0.0 +23913,52,7,28,0.0 +23913,62,49.3,29,0.0 +23913,35,18,1,0.0 +23913,73,15,3,0.0 +23913,12,38,44,0.0 +23913,13,6,1,0.0 +23913,18,62.5,24,0.0 +23913,37,26,35,0.0 +23913,49,20,18,0.0 +23913,39,18,48,0.0 +23913,72,34.8,43,0.0 +23913,33,2.5,14,0.0 +23913,3,10,44,0.0 +23913,30,25.89,13,0.0 +23913,76,18,21,0.0 +23913,57,19.5,27,0.0 +23913,38,263.5,25,0.0 +23914,13,6,15,0.0 +23914,47,9.5,27,0.0 +23914,33,2.5,16,0.0 +23914,57,19.5,12,0.0 +23914,26,31.23,45,0.0 +23914,32,32,14,0.0 +23914,35,18,27,0.0 +23914,29,123.79,23,0.0 +23914,52,7,17,0.0 +23914,46,12,24,0.0 +23914,75,7.75,12,0.0 +23914,5,21.35,4,0.0 +23914,23,9,40,0.0 +23914,55,24,45,0.0 +23914,43,46,47,0.0 +23914,41,9.65,13,0.0 +23914,42,14,20,0.0 +23914,28,45.6,5,0.0 +23914,65,21.05,37,0.0 +23914,14,23.25,45,0.0 +23914,20,81,26,0.0 +23914,1,18,11,0.0 +23914,12,38,46,0.0 +23914,48,12.75,27,0.0 +23914,70,15,10,0.0 +23914,54,7.45,35,0.0 +23914,3,10,35,0.0 +23914,39,18,49,0.0 +23914,40,18.4,29,0.0 +23914,73,15,15,0.0 +23915,3,10,5,0.0 +23915,57,19.5,23,0.0 +23915,56,38,7,0.0 +23916,44,19.45,20,0.0 +23916,11,21,8,0.0 +23916,72,34.8,21,0.0 +23916,21,10,33,0.0 +23916,59,55,33,0.0 +23916,40,18.4,49,0.0 +23916,20,81,9,0.0 +23916,26,31.23,33,0.0 +23916,68,12.5,22,0.0 +23916,54,7.45,45,0.0 +23916,24,4.5,31,0.0 +23916,64,33.25,39,0.0 +23916,35,18,13,0.0 +23916,29,123.79,6,0.0 +23916,73,15,21,0.0 +23916,56,38,43,0.0 +23916,75,7.75,13,0.0 +23916,17,39,9,0.0 +23916,52,7,15,0.0 +23916,69,36,1,0.0 +23916,74,10,9,0.0 +23916,6,25,34,0.0 +23916,62,49.3,44,0.0 +23916,8,40,29,0.0 +23916,1,18,46,0.0 +23916,28,45.6,18,0.0 +23916,61,28.5,12,0.0 +23916,37,26,3,0.0 +23916,53,32.8,1,0.0 +23916,12,38,42,0.0 +23916,15,15.5,31,0.0 +23916,34,14,43,0.0 +23916,67,14,29,0.0 +23916,18,62.5,34,0.0 +23916,3,10,10,0.0 +23916,16,17.45,28,0.0 +23916,23,9,22,0.0 +23916,39,18,26,0.0 +23916,38,263.5,43,0.0 +23916,27,43.9,15,0.0 +23916,46,12,35,0.0 +23916,71,21.5,12,0.0 +23916,2,19,32,0.0 +23916,66,17,9,0.0 +23916,9,97,5,0.0 +23916,76,18,7,0.0 +23916,49,20,12,0.0 +23916,77,13,36,0.0 +23916,58,13.25,39,0.0 +23916,43,46,17,0.0 +23916,65,21.05,27,0.0 +23916,14,23.25,48,0.0 +23916,22,21,39,0.0 +23916,41,9.65,17,0.0 +23916,31,12.5,19,0.0 +23916,51,53,32,0.0 +23916,4,22,49,0.0 +23916,7,30,10,0.0 +23916,19,9.2,1,0.0 +23916,70,15,13,0.0 +23916,36,19,16,0.0 +23916,47,9.5,18,0.0 +23916,25,14,9,0.0 +23916,57,19.5,30,0.0 +23916,5,21.35,10,0.0 +23917,35,18,21,0.0 +23917,18,62.5,14,0.0 +23917,61,28.5,47,0.0 +23917,27,43.9,2,0.0 +23917,8,40,7,0.0 +23917,36,19,48,0.0 +23917,6,25,10,0.0 +23917,56,38,34,0.0 +23917,3,10,23,0.0 +23917,44,19.45,9,0.0 +23917,65,21.05,38,0.0 +23917,46,12,3,0.0 +23917,21,10,45,0.0 +23917,75,7.75,16,0.0 +23917,69,36,49,0.0 +23917,14,23.25,26,0.0 +23917,4,22,8,0.0 +23917,45,9.5,14,0.0 +23917,23,9,6,0.0 +23917,62,49.3,41,0.0 +23917,43,46,7,0.0 +23918,45,9.5,20,0.0 +23918,9,97,19,0.0 +23918,64,33.25,4,0.0 +23918,44,19.45,35,0.0 +23918,30,25.89,38,0.0 +23918,59,55,9,0.0 +23918,47,9.5,31,0.0 +23918,62,49.3,9,0.0 +23918,51,53,40,0.0 +23918,24,4.5,20,0.0 +23918,50,16.25,32,0.0 +23918,42,14,3,0.0 +23918,46,12,9,0.0 +23918,33,2.5,40,0.0 +23918,34,14,9,0.0 +23918,4,22,7,0.0 +23918,31,12.5,39,0.0 +23918,48,12.75,27,0.0 +23918,57,19.5,30,0.0 +23918,69,36,45,0.0 +23918,70,15,5,0.0 +23918,56,38,6,0.0 +23918,28,45.6,50,0.0 +23918,3,10,41,0.0 +23918,14,23.25,26,0.0 +23918,7,30,19,0.0 +23918,2,19,7,0.0 +23918,66,17,1,0.0 +23918,71,21.5,4,0.0 +23918,43,46,32,0.0 +23918,6,25,49,0.0 +23918,72,34.8,21,0.0 +23918,40,18.4,21,0.0 +23918,37,26,17,0.0 +23918,15,15.5,4,0.0 +23918,55,24,19,0.0 +23918,68,12.5,22,0.0 +23918,58,13.25,43,0.0 +23919,57,19.5,40,0.0 +23919,69,36,20,0.0 +23919,74,10,34,0.0 +23919,47,9.5,46,0.0 +23919,39,18,49,0.0 +23919,48,12.75,22,0.0 +23919,49,20,16,0.0 +23919,14,23.25,30,0.0 +23919,35,18,12,0.0 +23919,76,18,2,0.0 +23919,43,46,23,0.0 +23919,31,12.5,1,0.0 +23919,1,18,22,0.0 +23919,28,45.6,22,0.0 +23919,44,19.45,31,0.0 +23919,17,39,30,0.0 +23919,29,123.79,14,0.0 +23919,5,21.35,1,0.0 +23919,4,22,35,0.0 +23919,65,21.05,1,0.0 +23919,60,34,47,0.0 +23919,42,14,45,0.0 +23919,2,19,25,0.0 +23919,18,62.5,5,0.0 +23919,21,10,39,0.0 +23919,45,9.5,18,0.0 +23919,37,26,50,0.0 +23919,7,30,48,0.0 +23919,71,21.5,27,0.0 +23919,23,9,20,0.0 +23919,8,40,27,0.0 +23919,38,263.5,9,0.0 +23919,26,31.23,20,0.0 +23919,73,15,13,0.0 +23919,59,55,5,0.0 +23919,46,12,41,0.0 +23919,24,4.5,11,0.0 +23919,68,12.5,46,0.0 +23919,53,32.8,30,0.0 +23919,9,97,12,0.0 +23919,58,13.25,21,0.0 +23919,16,17.45,29,0.0 +23919,70,15,50,0.0 +23919,55,24,27,0.0 +23919,30,25.89,43,0.0 +23919,20,81,44,0.0 +23919,41,9.65,32,0.0 +23919,36,19,8,0.0 +23919,50,16.25,34,0.0 +23919,32,32,22,0.0 +23919,25,14,13,0.0 +23919,6,25,3,0.0 +23919,61,28.5,31,0.0 +23919,22,21,20,0.0 +23919,54,7.45,1,0.0 +23919,64,33.25,44,0.0 +23919,66,17,3,0.0 +23919,12,38,12,0.0 +23919,52,7,10,0.0 +23919,40,18.4,31,0.0 +23919,33,2.5,16,0.0 +23919,51,53,47,0.0 +23919,56,38,23,0.0 +23919,34,14,25,0.0 +23919,13,6,28,0.0 +23919,3,10,35,0.0 +23919,19,9.2,32,0.0 +23919,67,14,45,0.0 +23919,63,43.9,33,0.0 +23919,10,31,4,0.0 +23919,15,15.5,6,0.0 +23919,72,34.8,47,0.0 +23919,11,21,48,0.0 +23920,30,25.89,43,0.0 +23920,67,14,1,0.0 +23920,4,22,23,0.0 +23920,26,31.23,44,0.0 +23920,6,25,43,0.0 +23920,49,20,36,0.0 +23920,74,10,45,0.0 +23920,32,32,37,0.0 +23920,7,30,43,0.0 +23920,1,18,22,0.0 +23920,46,12,46,0.0 +23920,48,12.75,10,0.0 +23920,16,17.45,18,0.0 +23920,70,15,22,0.0 +23920,12,38,9,0.0 +23920,42,14,33,0.0 +23920,40,18.4,44,0.0 +23920,75,7.75,29,0.0 +23920,27,43.9,27,0.0 +23921,52,7,42,0.0 +23921,17,39,12,0.0 +23921,67,14,30,0.0 +23921,5,21.35,31,0.0 +23921,51,53,5,0.0 +23921,60,34,50,0.0 +23921,49,20,9,0.0 +23921,37,26,34,0.0 +23921,75,7.75,30,0.0 +23921,63,43.9,45,0.0 +23921,46,12,12,0.0 +23921,40,18.4,7,0.0 +23921,6,25,28,0.0 +23921,50,16.25,3,0.0 +23921,32,32,22,0.0 +23921,34,14,20,0.0 +23921,71,21.5,42,0.0 +23921,72,34.8,49,0.0 +23921,1,18,30,0.0 +23921,55,24,44,0.0 +23921,12,38,3,0.0 +23921,41,9.65,50,0.0 +23921,13,6,22,0.0 +23921,26,31.23,41,0.0 +23921,65,21.05,30,0.0 +23921,31,12.5,15,0.0 +23921,62,49.3,1,0.0 +23921,58,13.25,6,0.0 +23921,45,9.5,42,0.0 +23921,53,32.8,12,0.0 +23921,61,28.5,36,0.0 +23921,68,12.5,33,0.0 +23921,9,97,40,0.0 +23921,33,2.5,26,0.0 +23921,74,10,9,0.0 +23921,23,9,39,0.0 +23921,57,19.5,35,0.0 +23921,19,9.2,49,0.0 +23921,66,17,35,0.0 +23921,24,4.5,32,0.0 +23921,20,81,4,0.0 +23921,16,17.45,24,0.0 +23921,2,19,18,0.0 +23921,73,15,34,0.0 +23921,21,10,8,0.0 +23921,7,30,12,0.0 +23921,3,10,40,0.0 +23921,39,18,12,0.0 +23921,64,33.25,49,0.0 +23921,70,15,8,0.0 +23921,22,21,43,0.0 +23921,43,46,5,0.0 +23921,8,40,22,0.0 +23921,69,36,11,0.0 +23921,4,22,30,0.0 +23921,15,15.5,14,0.0 +23921,25,14,17,0.0 +23921,30,25.89,5,0.0 +23921,11,21,20,0.0 +23921,36,19,42,0.0 +23921,27,43.9,23,0.0 +23921,42,14,50,0.0 +23921,29,123.79,3,0.0 +23921,76,18,36,0.0 +23922,13,6,49,0.0 +23922,37,26,32,0.0 +23922,40,18.4,10,0.0 +23922,56,38,27,0.0 +23922,65,21.05,50,0.0 +23922,25,14,38,0.0 +23922,74,10,32,0.0 +23922,7,30,48,0.0 +23922,9,97,18,0.0 +23922,68,12.5,15,0.0 +23922,30,25.89,24,0.0 +23922,60,34,45,0.0 +23922,3,10,9,0.0 +23922,15,15.5,9,0.0 +23922,52,7,37,0.0 +23922,77,13,24,0.0 +23922,62,49.3,36,0.0 +23922,27,43.9,4,0.0 +23922,2,19,18,0.0 +23922,61,28.5,27,0.0 +23922,41,9.65,22,0.0 +23922,67,14,3,0.0 +23922,43,46,16,0.0 +23922,42,14,28,0.0 +23922,59,55,7,0.0 +23922,50,16.25,47,0.0 +23922,12,38,44,0.0 +23922,19,9.2,28,0.0 +23922,53,32.8,28,0.0 +23922,28,45.6,12,0.0 +23922,45,9.5,16,0.0 +23922,33,2.5,16,0.0 +23922,21,10,2,0.0 +23922,18,62.5,34,0.0 +23922,39,18,33,0.0 +23922,73,15,35,0.0 +23922,49,20,42,0.0 +23922,29,123.79,21,0.0 +23922,47,9.5,41,0.0 +23922,64,33.25,19,0.0 +23922,55,24,25,0.0 +23922,22,21,3,0.0 +23922,38,263.5,24,0.0 +23922,57,19.5,4,0.0 +23922,26,31.23,6,0.0 +23922,6,25,46,0.0 +23922,46,12,39,0.0 +23922,8,40,41,0.0 +23922,35,18,40,0.0 +23922,71,21.5,20,0.0 +23922,5,21.35,44,0.0 +23922,14,23.25,44,0.0 +23922,44,19.45,12,0.0 +23922,75,7.75,11,0.0 +23922,31,12.5,16,0.0 +23922,1,18,22,0.0 +23922,20,81,26,0.0 +23922,10,31,25,0.0 +23922,36,19,33,0.0 +23922,17,39,41,0.0 +23922,16,17.45,36,0.0 +23922,23,9,50,0.0 +23922,48,12.75,14,0.0 +23922,66,17,24,0.0 +23922,51,53,13,0.0 +23922,72,34.8,10,0.0 +23922,63,43.9,12,0.0 +23922,11,21,36,0.0 +23922,54,7.45,27,0.0 +23922,76,18,44,0.0 +23922,70,15,10,0.0 +23922,34,14,4,0.0 +23922,69,36,43,0.0 +23922,24,4.5,48,0.0 +23922,4,22,10,0.0 +23923,26,31.23,1,0.0 +23923,56,38,10,0.0 +23923,4,22,37,0.0 +23923,51,53,23,0.0 +23923,54,7.45,39,0.0 +23923,46,12,28,0.0 +23923,37,26,44,0.0 +23923,10,31,10,0.0 +23923,70,15,4,0.0 +23923,28,45.6,10,0.0 +23923,71,21.5,13,0.0 +23923,31,12.5,1,0.0 +23923,33,2.5,13,0.0 +23923,63,43.9,29,0.0 +23923,58,13.25,41,0.0 +23923,35,18,3,0.0 +23923,59,55,35,0.0 +23923,50,16.25,21,0.0 +23923,3,10,9,0.0 +23923,43,46,13,0.0 +23923,75,7.75,17,0.0 +23924,7,30,25,0.0 +23924,36,19,1,0.0 +23924,76,18,26,0.0 +23924,56,38,45,0.0 +23924,37,26,41,0.0 +23924,31,12.5,47,0.0 +23924,26,31.23,7,0.0 +23924,55,24,7,0.0 +23924,77,13,18,0.0 +23924,45,9.5,43,0.0 +23924,47,9.5,1,0.0 +23924,12,38,21,0.0 +23924,5,21.35,14,0.0 +23924,30,25.89,38,0.0 +23924,2,19,34,0.0 +23924,59,55,34,0.0 +23924,46,12,32,0.0 +23924,24,4.5,38,0.0 +23924,15,15.5,7,0.0 +23924,40,18.4,24,0.0 +23924,20,81,28,0.0 +23924,50,16.25,8,0.0 +23924,14,23.25,4,0.0 +23924,75,7.75,23,0.0 +23924,65,21.05,47,0.0 +23924,11,21,25,0.0 +23924,13,6,39,0.0 +23924,23,9,24,0.0 +23924,53,32.8,11,0.0 +23924,6,25,11,0.0 +23924,57,19.5,28,0.0 +23924,73,15,38,0.0 +23924,66,17,6,0.0 +23924,21,10,28,0.0 +23924,43,46,16,0.0 +23924,34,14,19,0.0 +23924,19,9.2,4,0.0 +23924,4,22,6,0.0 +23924,33,2.5,23,0.0 +23924,44,19.45,46,0.0 +23924,71,21.5,11,0.0 +23924,69,36,44,0.0 +23924,51,53,30,0.0 +23924,9,97,2,0.0 +23924,64,33.25,3,0.0 +23924,32,32,47,0.0 +23924,38,263.5,32,0.0 +23924,16,17.45,26,0.0 +23924,42,14,19,0.0 +23924,52,7,34,0.0 +23924,68,12.5,50,0.0 +23924,41,9.65,26,0.0 +23924,35,18,48,0.0 +23924,8,40,42,0.0 +23924,67,14,18,0.0 +23924,18,62.5,1,0.0 +23924,61,28.5,50,0.0 +23924,72,34.8,41,0.0 +23924,25,14,43,0.0 +23924,58,13.25,34,0.0 +23924,60,34,27,0.0 +23924,17,39,4,0.0 +23924,48,12.75,32,0.0 +23924,70,15,13,0.0 +23924,1,18,44,0.0 +23924,49,20,32,0.0 +23925,8,40,21,0.0 +23925,27,43.9,47,0.0 +23926,64,33.25,41,0.0 +23926,77,13,23,0.0 +23926,76,18,21,0.0 +23926,7,30,29,0.0 +23926,14,23.25,12,0.0 +23926,44,19.45,30,0.0 +23926,75,7.75,36,0.0 +23926,41,9.65,23,0.0 +23926,16,17.45,49,0.0 +23926,53,32.8,14,0.0 +23926,4,22,7,0.0 +23926,45,9.5,38,0.0 +23926,70,15,47,0.0 +23926,29,123.79,39,0.0 +23926,18,62.5,20,0.0 +23926,49,20,43,0.0 +23926,25,14,26,0.0 +23926,57,19.5,31,0.0 +23926,73,15,24,0.0 +23926,43,46,3,0.0 +23926,34,14,25,0.0 +23926,68,12.5,42,0.0 +23926,59,55,1,0.0 +23926,20,81,15,0.0 +23926,60,34,40,0.0 +23926,48,12.75,38,0.0 +23926,38,263.5,31,0.0 +23926,28,45.6,46,0.0 +23926,8,40,28,0.0 +23926,26,31.23,48,0.0 +23926,15,15.5,19,0.0 +23926,50,16.25,36,0.0 +23926,37,26,28,0.0 +23926,17,39,38,0.0 +23926,72,34.8,1,0.0 +23926,52,7,41,0.0 +23926,32,32,23,0.0 +23926,27,43.9,9,0.0 +23926,51,53,43,0.0 +23926,23,9,47,0.0 +23926,56,38,31,0.0 +23926,22,21,5,0.0 +23926,30,25.89,30,0.0 +23926,74,10,13,0.0 +23926,11,21,33,0.0 +23926,36,19,31,0.0 +23926,42,14,49,0.0 +23926,46,12,5,0.0 +23926,31,12.5,41,0.0 +23926,67,14,12,0.0 +23926,55,24,16,0.0 +23927,16,17.45,28,0.0 +23927,44,19.45,3,0.0 +23927,49,20,49,0.0 +23927,52,7,25,0.0 +23927,2,19,27,0.0 +23927,71,21.5,8,0.0 +23927,37,26,33,0.0 +23927,74,10,35,0.0 +23927,19,9.2,1,0.0 +23927,55,24,22,0.0 +23927,61,28.5,4,0.0 +23927,23,9,23,0.0 +23927,32,32,19,0.0 +23927,33,2.5,2,0.0 +23927,59,55,14,0.0 +23927,4,22,33,0.0 +23927,58,13.25,7,0.0 +23927,20,81,17,0.0 +23927,42,14,6,0.0 +23928,54,7.45,4,0.0 +23928,12,38,27,0.0 +23928,39,18,50,0.0 +23928,30,25.89,6,0.0 +23928,61,28.5,9,0.0 +23928,45,9.5,34,0.0 +23928,31,12.5,15,0.0 +23928,20,81,45,0.0 +23928,22,21,16,0.0 +23928,33,2.5,15,0.0 +23928,56,38,28,0.0 +23928,58,13.25,19,0.0 +23928,7,30,11,0.0 +23928,49,20,50,0.0 +23928,52,7,7,0.0 +23928,41,9.65,8,0.0 +23928,24,4.5,50,0.0 +23928,5,21.35,7,0.0 +23928,75,7.75,36,0.0 +23928,71,21.5,50,0.0 +23928,23,9,15,0.0 +23928,38,263.5,34,0.0 +23928,25,14,4,0.0 +23928,73,15,42,0.0 +23928,18,62.5,44,0.0 +23929,37,26,25,0.0 +23929,69,36,3,0.0 +23929,31,12.5,5,0.0 +23929,65,21.05,30,0.0 +23929,41,9.65,47,0.0 +23929,16,17.45,31,0.0 +23929,57,19.5,8,0.0 +23929,36,19,37,0.0 +23929,74,10,6,0.0 +23929,60,34,2,0.0 +23929,20,81,32,0.0 +23929,32,32,1,0.0 +23929,25,14,20,0.0 +23929,68,12.5,16,0.0 +23929,48,12.75,42,0.0 +23929,58,13.25,5,0.0 +23929,24,4.5,28,0.0 +23929,38,263.5,50,0.0 +23929,30,25.89,15,0.0 +23929,11,21,11,0.0 +23929,19,9.2,9,0.0 +23929,15,15.5,26,0.0 +23929,23,9,49,0.0 +23929,56,38,23,0.0 +23929,9,97,41,0.0 +23929,33,2.5,7,0.0 +23929,62,49.3,8,0.0 +23929,7,30,42,0.0 +23929,70,15,2,0.0 +23929,72,34.8,44,0.0 +23929,40,18.4,40,0.0 +23929,44,19.45,14,0.0 +23929,39,18,48,0.0 +23929,13,6,10,0.0 +23929,52,7,14,0.0 +23929,18,62.5,28,0.0 +23929,21,10,43,0.0 +23929,75,7.75,50,0.0 +23929,77,13,42,0.0 +23929,76,18,2,0.0 +23929,53,32.8,3,0.0 +23929,2,19,20,0.0 +23929,6,25,34,0.0 +23929,66,17,46,0.0 +23929,22,21,21,0.0 +23929,42,14,28,0.0 +23929,8,40,1,0.0 +23929,51,53,22,0.0 +23930,38,263.5,24,0.0 +23930,31,12.5,23,0.0 +23930,20,81,50,0.0 +23930,53,32.8,12,0.0 +23930,5,21.35,33,0.0 +23930,58,13.25,21,0.0 +23930,39,18,22,0.0 +23930,61,28.5,41,0.0 +23930,45,9.5,42,0.0 +23930,32,32,12,0.0 +23930,23,9,28,0.0 +23930,30,25.89,45,0.0 +23930,21,10,21,0.0 +23930,8,40,36,0.0 +23930,34,14,20,0.0 +23930,75,7.75,16,0.0 +23930,55,24,43,0.0 +23930,59,55,24,0.0 +23930,14,23.25,50,0.0 +23930,15,15.5,40,0.0 +23930,19,9.2,25,0.0 +23930,12,38,11,0.0 +23930,57,19.5,6,0.0 +23930,63,43.9,40,0.0 +23930,47,9.5,18,0.0 +23930,77,13,15,0.0 +23930,70,15,4,0.0 +23930,62,49.3,23,0.0 +23930,36,19,5,0.0 +23930,33,2.5,42,0.0 +23930,35,18,19,0.0 +23930,56,38,14,0.0 +23930,11,21,34,0.0 +23930,72,34.8,36,0.0 +23930,41,9.65,28,0.0 +23930,46,12,33,0.0 +23930,54,7.45,43,0.0 +23930,9,97,24,0.0 +23930,4,22,35,0.0 +23930,50,16.25,40,0.0 +23930,49,20,22,0.0 +23930,44,19.45,19,0.0 +23930,42,14,35,0.0 +23930,27,43.9,44,0.0 +23930,7,30,25,0.0 +23930,24,4.5,22,0.0 +23930,52,7,24,0.0 +23930,25,14,19,0.0 +23931,21,10,24,0.0 +23931,53,32.8,50,0.0 +23931,62,49.3,4,0.0 +23931,54,7.45,47,0.0 +23931,72,34.8,31,0.0 +23931,13,6,31,0.0 +23931,31,12.5,27,0.0 +23931,27,43.9,28,0.0 +23931,38,263.5,10,0.0 +23931,26,31.23,38,0.0 +23931,51,53,7,0.0 +23931,69,36,14,0.0 +23931,56,38,18,0.0 +23931,44,19.45,5,0.0 +23931,25,14,33,0.0 +23931,33,2.5,49,0.0 +23931,61,28.5,32,0.0 +23931,23,9,19,0.0 +23931,30,25.89,7,0.0 +23931,49,20,6,0.0 +23931,46,12,9,0.0 +23931,47,9.5,3,0.0 +23931,75,7.75,12,0.0 +23931,10,31,18,0.0 +23931,11,21,5,0.0 +23931,39,18,1,0.0 +23931,57,19.5,35,0.0 +23931,50,16.25,9,0.0 +23931,12,38,35,0.0 +23931,67,14,50,0.0 +23931,43,46,19,0.0 +23932,3,10,18,0.0 +23932,25,14,20,0.0 +23932,4,22,9,0.0 +23932,30,25.89,21,0.0 +23932,71,21.5,29,0.0 +23932,49,20,4,0.0 +23932,20,81,40,0.0 +23932,39,18,7,0.0 +23932,24,4.5,27,0.0 +23932,50,16.25,48,0.0 +23932,68,12.5,30,0.0 +23932,41,9.65,49,0.0 +23932,74,10,9,0.0 +23932,75,7.75,17,0.0 +23932,60,34,34,0.0 +23932,76,18,37,0.0 +23932,28,45.6,1,0.0 +23932,56,38,41,0.0 +23932,17,39,35,0.0 +23932,22,21,14,0.0 +23932,54,7.45,1,0.0 +23932,26,31.23,26,0.0 +23932,18,62.5,36,0.0 +23932,53,32.8,1,0.0 +23932,38,263.5,32,0.0 +23932,10,31,45,0.0 +23932,9,97,9,0.0 +23932,35,18,28,0.0 +23932,69,36,15,0.0 +23932,15,15.5,11,0.0 +23932,33,2.5,11,0.0 +23932,66,17,41,0.0 +23932,44,19.45,10,0.0 +23932,11,21,44,0.0 +23932,27,43.9,14,0.0 +23932,2,19,35,0.0 +23932,36,19,28,0.0 +23932,32,32,45,0.0 +23932,57,19.5,40,0.0 +23932,45,9.5,31,0.0 +23932,8,40,4,0.0 +23932,55,24,27,0.0 +23932,19,9.2,29,0.0 +23932,37,26,26,0.0 +23932,70,15,47,0.0 +23932,46,12,19,0.0 +23932,34,14,3,0.0 +23932,6,25,41,0.0 +23932,13,6,28,0.0 +23932,61,28.5,2,0.0 +23932,58,13.25,30,0.0 +23932,52,7,48,0.0 +23932,59,55,6,0.0 +23932,47,9.5,32,0.0 +23932,77,13,11,0.0 +23932,29,123.79,15,0.0 +23932,62,49.3,29,0.0 +23932,5,21.35,39,0.0 +23932,65,21.05,36,0.0 +23932,67,14,19,0.0 +23932,31,12.5,48,0.0 +23932,12,38,7,0.0 +23932,51,53,13,0.0 +23932,63,43.9,31,0.0 +23932,73,15,35,0.0 +23932,64,33.25,45,0.0 +23932,42,14,7,0.0 +23932,16,17.45,40,0.0 +23932,48,12.75,32,0.0 +23932,7,30,29,0.0 +23932,23,9,43,0.0 +23932,14,23.25,24,0.0 +23932,72,34.8,35,0.0 +23933,26,31.23,39,0.0 +23933,34,14,21,0.0 +23933,40,18.4,7,0.0 +23933,1,18,39,0.0 +23933,39,18,11,0.0 +23933,19,9.2,35,0.0 +23933,50,16.25,42,0.0 +23933,37,26,45,0.0 +23933,38,263.5,29,0.0 +23933,57,19.5,10,0.0 +23933,54,7.45,17,0.0 +23933,49,20,25,0.0 +23933,55,24,26,0.0 +23933,10,31,8,0.0 +23933,47,9.5,45,0.0 +23933,45,9.5,33,0.0 +23933,11,21,5,0.0 +23933,13,6,37,0.0 +23933,32,32,30,0.0 +23933,62,49.3,35,0.0 +23933,12,38,32,0.0 +23933,48,12.75,16,0.0 +23933,60,34,19,0.0 +23933,71,21.5,48,0.0 +23933,53,32.8,2,0.0 +23933,58,13.25,12,0.0 +23933,43,46,17,0.0 +23933,3,10,14,0.0 +23933,5,21.35,16,0.0 +23933,21,10,28,0.0 +23933,6,25,17,0.0 +23933,18,62.5,14,0.0 +23933,74,10,37,0.0 +23933,2,19,29,0.0 +23933,28,45.6,8,0.0 +23933,46,12,13,0.0 +23933,59,55,34,0.0 +23933,73,15,30,0.0 +23933,22,21,41,0.0 +23933,4,22,40,0.0 +23933,76,18,32,0.0 +23933,7,30,21,0.0 +23933,77,13,3,0.0 +23933,29,123.79,4,0.0 +23933,65,21.05,12,0.0 +23933,27,43.9,45,0.0 +23933,25,14,6,0.0 +23933,31,12.5,30,0.0 +23933,51,53,16,0.0 +23933,69,36,20,0.0 +23933,67,14,17,0.0 +23933,56,38,42,0.0 +23933,36,19,38,0.0 +23933,61,28.5,24,0.0 +23933,44,19.45,44,0.0 +23933,24,4.5,1,0.0 +23933,68,12.5,32,0.0 +23933,8,40,11,0.0 +23933,64,33.25,14,0.0 +23933,9,97,37,0.0 +23933,63,43.9,32,0.0 +23933,35,18,37,0.0 +23933,15,15.5,35,0.0 +23933,16,17.45,23,0.0 +23933,33,2.5,44,0.0 +23933,75,7.75,6,0.0 +23933,41,9.65,38,0.0 +23933,70,15,11,0.0 +23933,66,17,15,0.0 +23933,14,23.25,8,0.0 +23933,42,14,35,0.0 +23933,72,34.8,44,0.0 +23933,17,39,31,0.0 +23933,20,81,28,0.0 +23933,23,9,22,0.0 +23933,52,7,36,0.0 +23934,48,12.75,29,0.0 +23934,29,123.79,35,0.0 +23934,62,49.3,39,0.0 +23934,15,15.5,29,0.0 +23934,13,6,34,0.0 +23934,74,10,47,0.0 +23934,56,38,46,0.0 +23934,63,43.9,28,0.0 +23935,52,7,24,0.0 +23935,70,15,21,0.0 +23935,21,10,13,0.0 +23935,22,21,33,0.0 +23935,8,40,32,0.0 +23935,12,38,10,0.0 +23935,72,34.8,20,0.0 +23935,43,46,39,0.0 +23935,37,26,6,0.0 +23935,2,19,35,0.0 +23935,75,7.75,9,0.0 +23935,76,18,10,0.0 +23935,46,12,2,0.0 +23935,68,12.5,21,0.0 +23935,47,9.5,15,0.0 +23935,23,9,27,0.0 +23935,30,25.89,29,0.0 +23935,61,28.5,32,0.0 +23935,1,18,35,0.0 +23935,33,2.5,10,0.0 +23935,38,263.5,7,0.0 +23935,40,18.4,49,0.0 +23935,66,17,26,0.0 +23935,14,23.25,13,0.0 +23935,57,19.5,8,0.0 +23935,55,24,33,0.0 +23935,49,20,19,0.0 +23935,4,22,28,0.0 +23935,24,4.5,31,0.0 +23935,67,14,7,0.0 +23935,63,43.9,29,0.0 +23935,41,9.65,36,0.0 +23935,42,14,40,0.0 +23935,71,21.5,28,0.0 +23935,35,18,34,0.0 +23935,51,53,33,0.0 +23935,19,9.2,24,0.0 +23935,27,43.9,8,0.0 +23935,6,25,43,0.0 +23935,44,19.45,45,0.0 +23935,31,12.5,29,0.0 +23935,62,49.3,23,0.0 +23935,34,14,13,0.0 +23935,73,15,9,0.0 +23935,3,10,43,0.0 +23935,18,62.5,6,0.0 +23935,48,12.75,18,0.0 +23935,58,13.25,48,0.0 +23935,74,10,25,0.0 +23935,20,81,40,0.0 +23935,50,16.25,14,0.0 +23935,26,31.23,4,0.0 +23935,15,15.5,24,0.0 +23935,17,39,36,0.0 +23935,60,34,19,0.0 +23935,69,36,34,0.0 +23935,29,123.79,26,0.0 +23935,39,18,2,0.0 +23935,36,19,5,0.0 +23935,64,33.25,47,0.0 +23936,72,34.8,41,0.0 +23936,50,16.25,50,0.0 +23936,46,12,8,0.0 +23936,33,2.5,13,0.0 +23936,48,12.75,22,0.0 +23936,29,123.79,48,0.0 +23936,74,10,10,0.0 +23936,59,55,46,0.0 +23936,67,14,36,0.0 +23936,41,9.65,33,0.0 +23936,3,10,4,0.0 +23936,18,62.5,37,0.0 +23936,7,30,40,0.0 +23936,45,9.5,2,0.0 +23936,47,9.5,29,0.0 +23936,20,81,5,0.0 +23936,61,28.5,32,0.0 +23936,56,38,33,0.0 +23937,34,14,28,0.0 +23937,10,31,49,0.0 +23937,20,81,12,0.0 +23937,46,12,7,0.0 +23937,63,43.9,47,0.0 +23937,23,9,29,0.0 +23937,52,7,28,0.0 +23937,7,30,12,0.0 +23937,66,17,11,0.0 +23937,21,10,8,0.0 +23937,26,31.23,41,0.0 +23937,53,32.8,36,0.0 +23937,14,23.25,36,0.0 +23937,19,9.2,46,0.0 +23937,4,22,29,0.0 +23937,2,19,14,0.0 +23937,39,18,32,0.0 +23937,57,19.5,31,0.0 +23937,37,26,49,0.0 +23937,12,38,27,0.0 +23937,42,14,3,0.0 +23937,76,18,24,0.0 +23937,54,7.45,22,0.0 +23937,36,19,23,0.0 +23937,48,12.75,2,0.0 +23937,70,15,50,0.0 +23937,75,7.75,30,0.0 +23937,38,263.5,32,0.0 +23937,16,17.45,47,0.0 +23937,56,38,23,0.0 +23937,31,12.5,9,0.0 +23937,8,40,48,0.0 +23937,29,123.79,29,0.0 +23937,28,45.6,41,0.0 +23937,61,28.5,9,0.0 +23937,68,12.5,23,0.0 +23937,27,43.9,3,0.0 +23937,40,18.4,23,0.0 +23937,65,21.05,47,0.0 +23937,62,49.3,9,0.0 +23937,17,39,38,0.0 +23937,49,20,28,0.0 +23937,50,16.25,16,0.0 +23937,44,19.45,5,0.0 +23937,51,53,13,0.0 +23937,59,55,28,0.0 +23937,6,25,9,0.0 +23937,74,10,37,0.0 +23937,67,14,31,0.0 +23937,43,46,1,0.0 +23937,24,4.5,23,0.0 +23937,15,15.5,37,0.0 +23937,72,34.8,34,0.0 +23937,77,13,43,0.0 +23937,22,21,46,0.0 +23937,32,32,13,0.0 +23937,64,33.25,34,0.0 +23937,73,15,1,0.0 +23937,3,10,34,0.0 +23937,18,62.5,30,0.0 +23938,42,14,37,0.0 +23938,33,2.5,39,0.0 +23938,43,46,21,0.0 +23938,53,32.8,11,0.0 +23938,64,33.25,50,0.0 +23938,14,23.25,39,0.0 +23938,47,9.5,37,0.0 +23938,51,53,32,0.0 +23938,23,9,36,0.0 +23938,45,9.5,33,0.0 +23938,28,45.6,33,0.0 +23938,24,4.5,8,0.0 +23938,73,15,50,0.0 +23938,39,18,22,0.0 +23938,68,12.5,14,0.0 +23938,63,43.9,29,0.0 +23938,54,7.45,14,0.0 +23938,21,10,50,0.0 +23938,50,16.25,42,0.0 +23938,12,38,35,0.0 +23938,44,19.45,26,0.0 +23938,59,55,36,0.0 +23938,1,18,6,0.0 +23938,20,81,23,0.0 +23938,6,25,40,0.0 +23938,74,10,1,0.0 +23938,56,38,12,0.0 +23938,27,43.9,28,0.0 +23938,31,12.5,24,0.0 +23938,69,36,34,0.0 +23938,32,32,9,0.0 +23938,55,24,41,0.0 +23938,29,123.79,20,0.0 +23938,26,31.23,13,0.0 +23938,25,14,8,0.0 +23938,9,97,20,0.0 +23938,36,19,39,0.0 +23938,46,12,31,0.0 +23938,71,21.5,38,0.0 +23938,2,19,11,0.0 +23938,49,20,24,0.0 +23938,38,263.5,30,0.0 +23938,4,22,38,0.0 +23938,66,17,19,0.0 +23938,3,10,46,0.0 +23938,65,21.05,12,0.0 +23938,7,30,14,0.0 +23938,72,34.8,25,0.0 +23938,19,9.2,28,0.0 +23938,77,13,43,0.0 +23938,11,21,2,0.0 +23938,61,28.5,40,0.0 +23938,62,49.3,26,0.0 +23938,16,17.45,40,0.0 +23938,75,7.75,35,0.0 +23938,58,13.25,50,0.0 +23938,52,7,11,0.0 +23938,35,18,8,0.0 +23938,70,15,18,0.0 +23938,41,9.65,20,0.0 +23938,30,25.89,14,0.0 +23938,22,21,10,0.0 +23938,76,18,12,0.0 +23938,13,6,41,0.0 +23938,17,39,1,0.0 +23938,34,14,35,0.0 +23938,15,15.5,4,0.0 +23938,5,21.35,48,0.0 +23938,57,19.5,47,0.0 +23938,67,14,22,0.0 +23939,20,81,3,0.0 +23939,41,9.65,9,0.0 +23939,43,46,42,0.0 +23939,35,18,33,0.0 +23939,24,4.5,27,0.0 +23939,47,9.5,49,0.0 +23939,48,12.75,26,0.0 +23939,26,31.23,12,0.0 +23939,40,18.4,46,0.0 +23939,70,15,29,0.0 +23939,45,9.5,47,0.0 +23939,65,21.05,17,0.0 +23939,4,22,37,0.0 +23939,28,45.6,13,0.0 +23939,74,10,38,0.0 +23939,59,55,14,0.0 +23939,3,10,7,0.0 +23939,18,62.5,14,0.0 +23939,25,14,19,0.0 +23939,5,21.35,47,0.0 +23939,72,34.8,21,0.0 +23939,23,9,30,0.0 +23939,73,15,41,0.0 +23939,50,16.25,40,0.0 +23939,76,18,29,0.0 +23939,19,9.2,23,0.0 +23939,13,6,7,0.0 +23939,7,30,40,0.0 +23939,52,7,46,0.0 +23939,39,18,28,0.0 +23940,76,18,1,0.0 +23940,15,15.5,14,0.0 +23940,25,14,47,0.0 +23940,65,21.05,28,0.0 +23940,71,21.5,44,0.0 +23940,40,18.4,21,0.0 +23940,19,9.2,19,0.0 +23940,2,19,49,0.0 +23940,62,49.3,31,0.0 +23940,57,19.5,26,0.0 +23940,67,14,1,0.0 +23940,46,12,46,0.0 +23940,8,40,49,0.0 +23940,64,33.25,49,0.0 +23940,5,21.35,50,0.0 +23940,41,9.65,14,0.0 +23940,31,12.5,49,0.0 +23940,14,23.25,31,0.0 +23940,35,18,6,0.0 +23940,55,24,24,0.0 +23940,11,21,18,0.0 +23940,30,25.89,30,0.0 +23940,60,34,24,0.0 +23940,61,28.5,50,0.0 +23940,38,263.5,23,0.0 +23940,74,10,11,0.0 +23940,50,16.25,16,0.0 +23940,47,9.5,8,0.0 +23940,44,19.45,41,0.0 +23940,3,10,37,0.0 +23940,72,34.8,26,0.0 +23940,26,31.23,47,0.0 +23940,68,12.5,46,0.0 +23940,9,97,43,0.0 +23940,70,15,48,0.0 +23940,6,25,30,0.0 +23940,33,2.5,5,0.0 +23940,7,30,35,0.0 +23940,16,17.45,13,0.0 +23940,1,18,26,0.0 +23940,63,43.9,12,0.0 +23940,12,38,20,0.0 +23940,34,14,50,0.0 +23940,4,22,42,0.0 +23941,46,12,4,0.0 +23941,77,13,8,0.0 +23941,28,45.6,14,0.0 +23941,41,9.65,37,0.0 +23941,21,10,16,0.0 +23941,73,15,45,0.0 +23941,44,19.45,24,0.0 +23941,6,25,31,0.0 +23942,53,32.8,42,0.0 +23942,27,43.9,17,0.0 +23942,6,25,5,0.0 +23942,34,14,26,0.0 +23942,11,21,17,0.0 +23942,24,4.5,36,0.0 +23942,52,7,45,0.0 +23942,1,18,44,0.0 +23942,74,10,35,0.0 +23942,43,46,15,0.0 +23942,32,32,43,0.0 +23942,45,9.5,1,0.0 +23942,26,31.23,44,0.0 +23942,77,13,5,0.0 +23942,58,13.25,6,0.0 +23942,41,9.65,25,0.0 +23942,2,19,28,0.0 +23942,61,28.5,48,0.0 +23942,60,34,6,0.0 +23942,54,7.45,9,0.0 +23942,23,9,48,0.0 +23942,63,43.9,33,0.0 +23942,51,53,44,0.0 +23942,18,62.5,3,0.0 +23942,50,16.25,42,0.0 +23942,65,21.05,4,0.0 +23942,4,22,31,0.0 +23942,35,18,5,0.0 +23942,70,15,41,0.0 +23942,68,12.5,6,0.0 +23942,5,21.35,20,0.0 +23942,20,81,4,0.0 +23942,22,21,50,0.0 +23942,14,23.25,35,0.0 +23942,39,18,41,0.0 +23942,25,14,16,0.0 +23942,7,30,46,0.0 +23942,38,263.5,48,0.0 +23942,12,38,29,0.0 +23942,46,12,10,0.0 +23942,62,49.3,34,0.0 +23942,19,9.2,24,0.0 +23942,44,19.45,46,0.0 +23942,33,2.5,34,0.0 +23942,10,31,17,0.0 +23942,76,18,47,0.0 +23942,3,10,24,0.0 +23942,28,45.6,29,0.0 +23942,67,14,48,0.0 +23942,16,17.45,43,0.0 +23942,21,10,7,0.0 +23942,13,6,20,0.0 +23942,31,12.5,28,0.0 +23942,66,17,10,0.0 +23942,47,9.5,46,0.0 +23943,67,14,22,0.0 +23943,49,20,17,0.0 +23943,64,33.25,17,0.0 +23943,47,9.5,13,0.0 +23943,10,31,18,0.0 +23943,31,12.5,35,0.0 +23943,6,25,27,0.0 +23943,23,9,33,0.0 +23943,3,10,47,0.0 +23943,19,9.2,7,0.0 +23943,16,17.45,39,0.0 +23943,65,21.05,20,0.0 +23943,66,17,19,0.0 +23943,61,28.5,48,0.0 +23943,12,38,34,0.0 +23943,37,26,18,0.0 +23943,4,22,37,0.0 +23943,62,49.3,14,0.0 +23943,43,46,2,0.0 +23943,60,34,31,0.0 +23943,30,25.89,19,0.0 +23943,11,21,23,0.0 +23943,57,19.5,50,0.0 +23943,26,31.23,1,0.0 +23943,59,55,1,0.0 +23943,1,18,47,0.0 +23943,42,14,9,0.0 +23943,54,7.45,25,0.0 +23943,21,10,43,0.0 +23943,41,9.65,47,0.0 +23943,29,123.79,32,0.0 +23943,48,12.75,26,0.0 +23943,28,45.6,40,0.0 +23943,70,15,21,0.0 +23943,55,24,1,0.0 +23943,9,97,35,0.0 +23943,58,13.25,47,0.0 +23943,13,6,3,0.0 +23943,7,30,29,0.0 +23943,40,18.4,18,0.0 +23943,33,2.5,18,0.0 +23943,51,53,32,0.0 +23943,22,21,47,0.0 +23943,24,4.5,44,0.0 +23943,73,15,10,0.0 +23943,27,43.9,25,0.0 +23943,32,32,40,0.0 +23943,56,38,48,0.0 +23943,46,12,29,0.0 +23943,36,19,13,0.0 +23943,45,9.5,26,0.0 +23943,38,263.5,41,0.0 +23943,25,14,2,0.0 +23943,76,18,40,0.0 +23943,74,10,12,0.0 +23943,44,19.45,40,0.0 +23943,2,19,45,0.0 +23943,8,40,45,0.0 +23943,34,14,12,0.0 +23943,20,81,40,0.0 +23943,39,18,32,0.0 +23943,68,12.5,11,0.0 +23943,75,7.75,25,0.0 +23943,52,7,12,0.0 +23943,53,32.8,44,0.0 +23943,72,34.8,10,0.0 +23943,77,13,28,0.0 +23943,18,62.5,8,0.0 +23943,17,39,47,0.0 +23943,35,18,29,0.0 +23943,14,23.25,36,0.0 +23943,69,36,16,0.0 +23943,15,15.5,14,0.0 +23943,71,21.5,38,0.0 +23943,5,21.35,1,0.0 +23943,50,16.25,22,0.0 +23944,12,38,49,0.0 +23944,59,55,43,0.0 +23944,18,62.5,15,0.0 +23944,15,15.5,4,0.0 +23944,41,9.65,40,0.0 +23944,67,14,11,0.0 +23944,63,43.9,2,0.0 +23944,17,39,6,0.0 +23944,1,18,42,0.0 +23944,7,30,29,0.0 +23944,58,13.25,48,0.0 +23944,54,7.45,28,0.0 +23944,44,19.45,1,0.0 +23944,64,33.25,15,0.0 +23944,49,20,15,0.0 +23944,38,263.5,34,0.0 +23944,52,7,29,0.0 +23944,47,9.5,41,0.0 +23944,40,18.4,3,0.0 +23944,57,19.5,18,0.0 +23944,19,9.2,40,0.0 +23944,62,49.3,37,0.0 +23944,11,21,35,0.0 +23944,14,23.25,29,0.0 +23944,36,19,18,0.0 +23944,77,13,30,0.0 +23944,60,34,2,0.0 +23944,25,14,49,0.0 +23944,71,21.5,20,0.0 +23944,61,28.5,6,0.0 +23944,45,9.5,2,0.0 +23944,39,18,7,0.0 +23944,32,32,2,0.0 +23944,27,43.9,31,0.0 +23944,42,14,30,0.0 +23944,22,21,13,0.0 +23944,13,6,18,0.0 +23944,74,10,33,0.0 +23944,48,12.75,24,0.0 +23944,55,24,39,0.0 +23944,3,10,30,0.0 +23944,23,9,36,0.0 +23944,28,45.6,50,0.0 +23944,33,2.5,23,0.0 +23944,46,12,30,0.0 +23944,31,12.5,12,0.0 +23944,73,15,48,0.0 +23944,10,31,46,0.0 +23944,26,31.23,46,0.0 +23944,69,36,41,0.0 +23944,70,15,24,0.0 +23944,4,22,29,0.0 +23944,8,40,35,0.0 +23945,52,7,21,0.0 +23945,38,263.5,42,0.0 +23946,75,7.75,25,0.0 +23946,50,16.25,47,0.0 +23946,68,12.5,2,0.0 +23946,17,39,25,0.0 +23946,64,33.25,19,0.0 +23946,49,20,40,0.0 +23946,51,53,20,0.0 +23946,53,32.8,29,0.0 +23946,10,31,16,0.0 +23946,39,18,16,0.0 +23946,73,15,41,0.0 +23946,60,34,37,0.0 +23946,54,7.45,24,0.0 +23946,8,40,25,0.0 +23947,29,123.79,24,0.0 +23947,75,7.75,11,0.0 +23947,60,34,28,0.0 +23947,64,33.25,14,0.0 +23947,27,43.9,30,0.0 +23947,31,12.5,43,0.0 +23947,8,40,23,0.0 +23947,32,32,39,0.0 +23947,62,49.3,37,0.0 +23947,48,12.75,30,0.0 +23947,69,36,23,0.0 +23947,26,31.23,39,0.0 +23947,12,38,21,0.0 +23947,72,34.8,7,0.0 +23947,63,43.9,20,0.0 +23947,2,19,32,0.0 +23947,21,10,14,0.0 +23947,51,53,40,0.0 +23948,32,32,19,0.0 +23948,27,43.9,30,0.0 +23948,71,21.5,43,0.0 +23948,7,30,38,0.0 +23948,5,21.35,39,0.0 +23948,8,40,25,0.0 +23948,45,9.5,24,0.0 +23948,57,19.5,6,0.0 +23948,47,9.5,38,0.0 +23948,54,7.45,11,0.0 +23948,56,38,5,0.0 +23948,6,25,8,0.0 +23948,59,55,45,0.0 +23948,37,26,7,0.0 +23948,70,15,11,0.0 +23948,67,14,50,0.0 +23948,21,10,30,0.0 +23948,40,18.4,27,0.0 +23948,10,31,14,0.0 +23948,16,17.45,31,0.0 +23948,55,24,25,0.0 +23948,11,21,42,0.0 +23948,42,14,30,0.0 +23948,73,15,19,0.0 +23948,25,14,12,0.0 +23948,33,2.5,10,0.0 +23948,52,7,30,0.0 +23948,63,43.9,25,0.0 +23948,35,18,3,0.0 +23948,48,12.75,13,0.0 +23948,24,4.5,4,0.0 +23948,38,263.5,30,0.0 +23948,39,18,42,0.0 +23948,13,6,33,0.0 +23948,36,19,28,0.0 +23948,66,17,40,0.0 +23948,12,38,47,0.0 +23949,75,7.75,48,0.0 +23949,58,13.25,40,0.0 +23949,23,9,12,0.0 +23949,27,43.9,32,0.0 +23949,24,4.5,48,0.0 +23949,20,81,18,0.0 +23949,4,22,3,0.0 +23949,14,23.25,37,0.0 +23949,43,46,47,0.0 +23949,21,10,1,0.0 +23949,33,2.5,5,0.0 +23949,61,28.5,48,0.0 +23949,7,30,7,0.0 +23949,2,19,9,0.0 +23949,28,45.6,4,0.0 +23949,16,17.45,7,0.0 +23949,12,38,50,0.0 +23949,69,36,1,0.0 +23949,49,20,32,0.0 +23949,35,18,45,0.0 +23949,59,55,12,0.0 +23949,10,31,29,0.0 +23949,66,17,22,0.0 +23949,29,123.79,35,0.0 +23949,9,97,47,0.0 +23949,72,34.8,44,0.0 +23949,44,19.45,31,0.0 +23949,50,16.25,8,0.0 +23949,64,33.25,9,0.0 +23949,22,21,2,0.0 +23949,8,40,21,0.0 +23949,60,34,40,0.0 +23949,19,9.2,24,0.0 +23949,15,15.5,6,0.0 +23949,62,49.3,32,0.0 +23949,77,13,16,0.0 +23949,40,18.4,24,0.0 +23949,11,21,49,0.0 +23949,76,18,16,0.0 +23949,42,14,48,0.0 +23949,68,12.5,33,0.0 +23949,56,38,15,0.0 +23949,34,14,19,0.0 +23949,57,19.5,17,0.0 +23949,67,14,1,0.0 +23949,36,19,1,0.0 +23949,18,62.5,1,0.0 +23949,13,6,40,0.0 +23949,51,53,50,0.0 +23949,54,7.45,11,0.0 +23950,77,13,4,0.0 +23950,13,6,19,0.0 +23950,39,18,8,0.0 +23950,65,21.05,42,0.0 +23950,45,9.5,34,0.0 +23950,66,17,22,0.0 +23950,17,39,33,0.0 +23950,20,81,20,0.0 +23950,35,18,35,0.0 +23950,73,15,15,0.0 +23950,16,17.45,5,0.0 +23950,63,43.9,6,0.0 +23951,11,21,2,0.0 +23951,14,23.25,27,0.0 +23951,51,53,44,0.0 +23951,36,19,34,0.0 +23951,43,46,22,0.0 +23951,64,33.25,9,0.0 +23951,24,4.5,6,0.0 +23951,23,9,38,0.0 +23951,55,24,8,0.0 +23951,60,34,19,0.0 +23951,35,18,23,0.0 +23951,77,13,26,0.0 +23951,18,62.5,19,0.0 +23951,63,43.9,3,0.0 +23951,46,12,42,0.0 +23951,9,97,34,0.0 +23951,59,55,20,0.0 +23951,75,7.75,15,0.0 +23951,66,17,36,0.0 +23951,22,21,32,0.0 +23951,20,81,12,0.0 +23951,39,18,5,0.0 +23951,73,15,11,0.0 +23951,70,15,28,0.0 +23951,41,9.65,39,0.0 +23951,31,12.5,43,0.0 +23951,10,31,13,0.0 +23951,65,21.05,1,0.0 +23951,58,13.25,29,0.0 +23951,1,18,9,0.0 +23951,29,123.79,45,0.0 +23951,76,18,16,0.0 +23951,74,10,12,0.0 +23951,67,14,44,0.0 +23951,54,7.45,18,0.0 +23951,40,18.4,45,0.0 +23952,31,12.5,2,0.0 +23952,41,9.65,46,0.0 +23952,44,19.45,30,0.0 +23952,20,81,6,0.0 +23952,61,28.5,45,0.0 +23952,6,25,8,0.0 +23952,68,12.5,7,0.0 +23952,51,53,20,0.0 +23952,49,20,23,0.0 +23952,42,14,9,0.0 +23952,70,15,22,0.0 +23952,66,17,49,0.0 +23952,24,4.5,8,0.0 +23952,26,31.23,41,0.0 +23952,45,9.5,46,0.0 +23952,12,38,42,0.0 +23952,16,17.45,37,0.0 +23952,4,22,20,0.0 +23952,72,34.8,40,0.0 +23952,48,12.75,14,0.0 +23953,47,9.5,28,0.0 +23953,13,6,2,0.0 +23953,50,16.25,35,0.0 +23953,70,15,20,0.0 +23953,7,30,29,0.0 +23953,18,62.5,50,0.0 +23953,57,19.5,9,0.0 +23953,11,21,35,0.0 +23953,39,18,37,0.0 +23953,31,12.5,12,0.0 +23953,48,12.75,49,0.0 +23953,38,263.5,2,0.0 +23953,17,39,39,0.0 +23953,62,49.3,43,0.0 +23953,3,10,39,0.0 +23953,76,18,29,0.0 +23953,49,20,50,0.0 +23953,73,15,32,0.0 +23953,61,28.5,9,0.0 +23953,5,21.35,4,0.0 +23953,36,19,40,0.0 +23953,28,45.6,40,0.0 +23953,63,43.9,10,0.0 +23953,20,81,7,0.0 +23953,44,19.45,34,0.0 +23953,40,18.4,7,0.0 +23953,37,26,17,0.0 +23953,45,9.5,50,0.0 +23953,8,40,3,0.0 +23953,55,24,11,0.0 +23953,35,18,1,0.0 +23953,2,19,37,0.0 +23953,21,10,50,0.0 +23953,42,14,17,0.0 +23953,15,15.5,50,0.0 +23953,74,10,42,0.0 +23953,65,21.05,28,0.0 +23953,41,9.65,33,0.0 +23953,24,4.5,16,0.0 +23953,33,2.5,23,0.0 +23953,26,31.23,24,0.0 +23953,4,22,49,0.0 +23953,52,7,17,0.0 +23953,69,36,35,0.0 +23953,58,13.25,39,0.0 +23953,53,32.8,24,0.0 +23953,32,32,9,0.0 +23953,25,14,38,0.0 +23953,72,34.8,18,0.0 +23953,34,14,41,0.0 +23953,12,38,34,0.0 +23953,56,38,15,0.0 +23953,77,13,47,0.0 +23953,51,53,13,0.0 +23953,59,55,34,0.0 +23953,54,7.45,23,0.0 +23953,9,97,4,0.0 +23953,71,21.5,17,0.0 +23953,27,43.9,31,0.0 +23953,67,14,22,0.0 +23953,43,46,37,0.0 +23953,68,12.5,4,0.0 +23953,75,7.75,22,0.0 +23953,16,17.45,39,0.0 +23953,6,25,4,0.0 +23953,10,31,35,0.0 +23953,23,9,1,0.0 +23954,8,40,48,0.0 +23954,40,18.4,15,0.0 +23955,75,7.75,34,0.0 +23955,61,28.5,4,0.0 +23955,26,31.23,17,0.0 +23955,30,25.89,11,0.0 +23955,47,9.5,2,0.0 +23955,15,15.5,46,0.0 +23955,45,9.5,31,0.0 +23955,24,4.5,12,0.0 +23955,20,81,46,0.0 +23955,21,10,13,0.0 +23955,50,16.25,6,0.0 +23955,48,12.75,6,0.0 +23955,65,21.05,15,0.0 +23955,70,15,44,0.0 +23955,25,14,46,0.0 +23955,31,12.5,37,0.0 +23955,36,19,41,0.0 +23955,3,10,12,0.0 +23955,73,15,30,0.0 +23955,39,18,41,0.0 +23955,11,21,10,0.0 +23955,22,21,49,0.0 +23955,9,97,40,0.0 +23955,77,13,32,0.0 +23955,37,26,16,0.0 +23955,27,43.9,10,0.0 +23955,58,13.25,48,0.0 +23955,19,9.2,2,0.0 +23955,55,24,48,0.0 +23955,44,19.45,35,0.0 +23955,64,33.25,49,0.0 +23955,17,39,48,0.0 +23955,33,2.5,20,0.0 +23955,18,62.5,12,0.0 +23955,1,18,5,0.0 +23955,16,17.45,8,0.0 +23955,42,14,8,0.0 +23955,51,53,39,0.0 +23955,67,14,50,0.0 +23955,12,38,7,0.0 +23955,72,34.8,16,0.0 +23955,14,23.25,44,0.0 +23955,40,18.4,12,0.0 +23955,41,9.65,10,0.0 +23955,6,25,12,0.0 +23955,46,12,22,0.0 +23955,74,10,36,0.0 +23955,62,49.3,38,0.0 +23955,32,32,14,0.0 +23955,28,45.6,47,0.0 +23955,35,18,28,0.0 +23955,34,14,12,0.0 +23955,63,43.9,27,0.0 +23955,53,32.8,36,0.0 +23955,66,17,39,0.0 +23955,7,30,26,0.0 +23955,43,46,33,0.0 +23955,56,38,28,0.0 +23955,54,7.45,29,0.0 +23955,76,18,17,0.0 +23955,52,7,10,0.0 +23955,13,6,40,0.0 +23955,68,12.5,18,0.0 +23955,38,263.5,49,0.0 +23955,8,40,13,0.0 +23955,2,19,14,0.0 +23955,60,34,29,0.0 +23955,71,21.5,19,0.0 +23955,4,22,3,0.0 +23955,10,31,5,0.0 +23955,29,123.79,8,0.0 +23955,23,9,20,0.0 +23955,59,55,2,0.0 +23955,5,21.35,27,0.0 +23956,12,38,7,0.0 +23956,6,25,45,0.0 +23956,69,36,15,0.0 +23956,51,53,9,0.0 +23956,23,9,3,0.0 +23956,41,9.65,25,0.0 +23956,38,263.5,14,0.0 +23956,16,17.45,42,0.0 +23956,3,10,21,0.0 +23956,1,18,10,0.0 +23956,7,30,48,0.0 +23956,15,15.5,8,0.0 +23956,10,31,13,0.0 +23956,52,7,19,0.0 +23956,73,15,44,0.0 +23956,66,17,7,0.0 +23956,53,32.8,7,0.0 +23956,9,97,30,0.0 +23956,44,19.45,45,0.0 +23956,59,55,12,0.0 +23956,24,4.5,48,0.0 +23956,19,9.2,7,0.0 +23956,28,45.6,42,0.0 +23956,13,6,19,0.0 +23956,26,31.23,15,0.0 +23956,11,21,36,0.0 +23956,62,49.3,14,0.0 +23956,65,21.05,29,0.0 +23956,14,23.25,4,0.0 +23956,49,20,24,0.0 +23956,50,16.25,35,0.0 +23956,61,28.5,12,0.0 +23956,37,26,31,0.0 +23956,35,18,29,0.0 +23956,8,40,34,0.0 +23956,57,19.5,20,0.0 +23956,39,18,16,0.0 +23956,71,21.5,13,0.0 +23956,54,7.45,32,0.0 +23956,56,38,7,0.0 +23956,18,62.5,33,0.0 +23956,27,43.9,21,0.0 +23956,32,32,47,0.0 +23956,29,123.79,5,0.0 +23956,22,21,6,0.0 +23956,21,10,49,0.0 +23956,55,24,22,0.0 +23956,77,13,30,0.0 +23956,33,2.5,37,0.0 +23957,53,32.8,12,0.0 +23957,6,25,23,0.0 +23957,63,43.9,30,0.0 +23957,18,62.5,14,0.0 +23957,57,19.5,13,0.0 +23957,7,30,2,0.0 +23957,35,18,25,0.0 +23957,72,34.8,1,0.0 +23957,66,17,12,0.0 +23957,54,7.45,3,0.0 +23957,19,9.2,46,0.0 +23957,14,23.25,4,0.0 +23958,46,12,33,0.0 +23958,48,12.75,36,0.0 +23958,56,38,33,0.0 +23958,42,14,29,0.0 +23958,61,28.5,25,0.0 +23958,43,46,22,0.0 +23958,6,25,43,0.0 +23958,1,18,47,0.0 +23959,37,26,50,0.0 +23959,33,2.5,10,0.0 +23959,36,19,10,0.0 +23959,11,21,35,0.0 +23959,19,9.2,25,0.0 +23959,23,9,27,0.0 +23959,22,21,5,0.0 +23959,56,38,42,0.0 +23959,67,14,6,0.0 +23959,57,19.5,31,0.0 +23959,59,55,50,0.0 +23959,16,17.45,45,0.0 +23959,20,81,15,0.0 +23959,43,46,40,0.0 +23959,15,15.5,16,0.0 +23959,6,25,48,0.0 +23959,25,14,22,0.0 +23959,66,17,14,0.0 +23959,28,45.6,1,0.0 +23959,39,18,16,0.0 +23959,31,12.5,22,0.0 +23959,72,34.8,2,0.0 +23959,41,9.65,28,0.0 +23960,51,53,13,0.0 +23960,24,4.5,27,0.0 +23960,74,10,14,0.0 +23960,6,25,22,0.0 +23960,21,10,46,0.0 +23960,70,15,26,0.0 +23960,11,21,42,0.0 +23960,53,32.8,4,0.0 +23960,10,31,14,0.0 +23960,32,32,13,0.0 +23960,57,19.5,17,0.0 +23960,46,12,37,0.0 +23960,22,21,2,0.0 +23960,18,62.5,13,0.0 +23960,68,12.5,41,0.0 +23960,42,14,8,0.0 +23960,73,15,46,0.0 +23960,19,9.2,12,0.0 +23960,36,19,1,0.0 +23960,48,12.75,25,0.0 +23960,16,17.45,30,0.0 +23960,17,39,39,0.0 +23960,8,40,9,0.0 +23960,72,34.8,39,0.0 +23960,71,21.5,10,0.0 +23960,5,21.35,21,0.0 +23960,14,23.25,39,0.0 +23960,28,45.6,34,0.0 +23960,41,9.65,13,0.0 +23961,49,20,5,0.0 +23961,33,2.5,1,0.0 +23961,53,32.8,1,0.0 +23961,7,30,20,0.0 +23961,25,14,49,0.0 +23961,67,14,15,0.0 +23961,35,18,17,0.0 +23961,62,49.3,6,0.0 +23961,22,21,30,0.0 +23961,26,31.23,35,0.0 +23961,21,10,18,0.0 +23961,59,55,39,0.0 +23961,10,31,48,0.0 +23961,55,24,1,0.0 +23961,65,21.05,42,0.0 +23961,5,21.35,37,0.0 +23961,4,22,46,0.0 +23961,24,4.5,47,0.0 +23961,71,21.5,12,0.0 +23961,17,39,5,0.0 +23961,60,34,22,0.0 +23961,57,19.5,16,0.0 +23961,77,13,33,0.0 +23961,23,9,17,0.0 +23961,64,33.25,47,0.0 +23961,72,34.8,14,0.0 +23961,16,17.45,26,0.0 +23961,42,14,15,0.0 +23961,20,81,32,0.0 +23961,31,12.5,41,0.0 +23961,18,62.5,34,0.0 +23961,38,263.5,44,0.0 +23961,43,46,22,0.0 +23961,47,9.5,4,0.0 +23961,34,14,1,0.0 +23961,6,25,28,0.0 +23961,76,18,15,0.0 +23961,12,38,43,0.0 +23961,68,12.5,7,0.0 +23961,29,123.79,3,0.0 +23961,48,12.75,47,0.0 +23961,37,26,22,0.0 +23961,46,12,22,0.0 +23961,58,13.25,12,0.0 +23961,41,9.65,5,0.0 +23961,3,10,14,0.0 +23961,15,15.5,14,0.0 +23961,2,19,49,0.0 +23961,75,7.75,44,0.0 +23961,13,6,32,0.0 +23961,14,23.25,23,0.0 +23961,54,7.45,15,0.0 +23961,32,32,33,0.0 +23961,11,21,38,0.0 +23961,51,53,5,0.0 +23961,39,18,38,0.0 +23961,45,9.5,33,0.0 +23961,61,28.5,35,0.0 +23961,74,10,14,0.0 +23961,73,15,44,0.0 +23961,19,9.2,33,0.0 +23961,40,18.4,45,0.0 +23961,56,38,45,0.0 +23961,63,43.9,16,0.0 +23961,30,25.89,33,0.0 +23961,8,40,32,0.0 +23961,36,19,24,0.0 +23961,69,36,37,0.0 +23961,44,19.45,33,0.0 +23961,50,16.25,32,0.0 +23962,17,39,32,0.0 +23962,1,18,39,0.0 +23962,63,43.9,3,0.0 +23962,66,17,9,0.0 +23962,62,49.3,8,0.0 +23962,23,9,29,0.0 +23962,64,33.25,7,0.0 +23962,22,21,37,0.0 +23962,30,25.89,1,0.0 +23962,49,20,32,0.0 +23962,32,32,10,0.0 +23962,69,36,30,0.0 +23962,47,9.5,13,0.0 +23962,74,10,13,0.0 +23962,25,14,32,0.0 +23962,34,14,44,0.0 +23962,53,32.8,28,0.0 +23962,6,25,23,0.0 +23962,54,7.45,35,0.0 +23962,3,10,26,0.0 +23962,57,19.5,21,0.0 +23962,50,16.25,44,0.0 +23962,42,14,6,0.0 +23962,8,40,11,0.0 +23962,77,13,33,0.0 +23962,16,17.45,5,0.0 +23962,2,19,26,0.0 +23962,21,10,8,0.0 +23962,13,6,21,0.0 +23962,56,38,47,0.0 +23962,51,53,14,0.0 +23962,65,21.05,41,0.0 +23962,12,38,9,0.0 +23962,73,15,7,0.0 +23962,28,45.6,26,0.0 +23962,7,30,1,0.0 +23962,75,7.75,19,0.0 +23962,15,15.5,11,0.0 +23962,20,81,1,0.0 +23962,59,55,45,0.0 +23962,14,23.25,36,0.0 +23962,68,12.5,43,0.0 +23962,45,9.5,1,0.0 +23962,37,26,5,0.0 +23962,46,12,18,0.0 +23962,35,18,23,0.0 +23962,67,14,18,0.0 +23962,5,21.35,38,0.0 +23962,61,28.5,12,0.0 +23962,24,4.5,26,0.0 +23962,31,12.5,4,0.0 +23962,60,34,35,0.0 +23962,72,34.8,6,0.0 +23962,43,46,33,0.0 +23962,55,24,28,0.0 +23962,58,13.25,13,0.0 +23962,41,9.65,6,0.0 +23962,38,263.5,21,0.0 +23962,10,31,25,0.0 +23962,70,15,34,0.0 +23962,27,43.9,48,0.0 +23962,48,12.75,40,0.0 +23962,19,9.2,40,0.0 +23962,26,31.23,19,0.0 +23962,33,2.5,41,0.0 +23962,4,22,20,0.0 +23962,44,19.45,10,0.0 +23962,36,19,8,0.0 +23963,47,9.5,7,0.0 +23963,2,19,17,0.0 +23963,13,6,27,0.0 +23963,54,7.45,15,0.0 +23963,41,9.65,4,0.0 +23963,67,14,22,0.0 +23963,11,21,31,0.0 +23963,51,53,16,0.0 +23963,57,19.5,34,0.0 +23963,18,62.5,32,0.0 +23963,24,4.5,27,0.0 +23963,72,34.8,21,0.0 +23963,75,7.75,2,0.0 +23963,6,25,37,0.0 +23963,66,17,17,0.0 +23963,64,33.25,24,0.0 +23963,5,21.35,44,0.0 +23963,3,10,42,0.0 +23963,49,20,17,0.0 +23963,58,13.25,15,0.0 +23963,40,18.4,35,0.0 +23963,21,10,18,0.0 +23963,61,28.5,48,0.0 +23963,55,24,16,0.0 +23963,42,14,6,0.0 +23963,73,15,41,0.0 +23963,29,123.79,24,0.0 +23963,50,16.25,44,0.0 +23963,63,43.9,40,0.0 +23963,22,21,5,0.0 +23963,44,19.45,30,0.0 +23963,9,97,24,0.0 +23963,52,7,48,0.0 +23963,48,12.75,22,0.0 +23963,25,14,14,0.0 +23963,28,45.6,47,0.0 +23963,4,22,39,0.0 +23963,1,18,5,0.0 +23963,10,31,6,0.0 +23963,8,40,13,0.0 +23963,33,2.5,37,0.0 +23963,65,21.05,18,0.0 +23963,34,14,7,0.0 +23963,19,9.2,2,0.0 +23963,71,21.5,16,0.0 +23963,12,38,35,0.0 +23963,30,25.89,19,0.0 +23963,20,81,38,0.0 +23963,77,13,42,0.0 +23964,36,19,15,0.0 +23964,19,9.2,47,0.0 +23964,58,13.25,41,0.0 +23964,9,97,36,0.0 +23964,16,17.45,5,0.0 +23964,52,7,18,0.0 +23964,57,19.5,40,0.0 +23964,22,21,35,0.0 +23964,5,21.35,5,0.0 +23964,10,31,12,0.0 +23964,14,23.25,41,0.0 +23964,25,14,7,0.0 +23964,71,21.5,9,0.0 +23964,34,14,23,0.0 +23964,49,20,28,0.0 +23964,23,9,50,0.0 +23964,15,15.5,48,0.0 +23964,76,18,5,0.0 +23964,60,34,37,0.0 +23964,48,12.75,24,0.0 +23964,3,10,22,0.0 +23964,44,19.45,8,0.0 +23964,50,16.25,37,0.0 +23964,33,2.5,26,0.0 +23964,1,18,21,0.0 +23964,7,30,45,0.0 +23964,37,26,39,0.0 +23964,6,25,11,0.0 +23964,27,43.9,36,0.0 +23964,70,15,18,0.0 +23964,61,28.5,47,0.0 +23964,53,32.8,1,0.0 +23964,41,9.65,48,0.0 +23964,2,19,4,0.0 +23964,35,18,48,0.0 +23964,56,38,37,0.0 +23964,8,40,39,0.0 +23964,73,15,18,0.0 +23964,39,18,43,0.0 +23964,12,38,15,0.0 +23964,30,25.89,16,0.0 +23964,65,21.05,11,0.0 +23964,67,14,9,0.0 +23964,46,12,37,0.0 +23964,11,21,34,0.0 +23964,20,81,37,0.0 +23964,45,9.5,27,0.0 +23965,21,10,9,0.0 +23965,59,55,38,0.0 +23965,34,14,27,0.0 +23965,66,17,23,0.0 +23965,1,18,39,0.0 +23965,6,25,12,0.0 +23965,54,7.45,43,0.0 +23965,28,45.6,10,0.0 +23965,53,32.8,5,0.0 +23965,57,19.5,10,0.0 +23965,36,19,48,0.0 +23965,25,14,25,0.0 +23965,74,10,29,0.0 +23965,77,13,48,0.0 +23965,15,15.5,2,0.0 +23965,18,62.5,7,0.0 +23965,69,36,10,0.0 +23965,22,21,23,0.0 +23965,3,10,22,0.0 +23965,32,32,41,0.0 +23965,8,40,4,0.0 +23965,35,18,11,0.0 +23965,4,22,29,0.0 +23965,39,18,23,0.0 +23965,13,6,12,0.0 +23965,42,14,14,0.0 +23965,30,25.89,21,0.0 +23965,11,21,8,0.0 +23965,5,21.35,6,0.0 +23965,61,28.5,18,0.0 +23965,19,9.2,23,0.0 +23965,76,18,38,0.0 +23965,33,2.5,15,0.0 +23965,64,33.25,15,0.0 +23965,55,24,16,0.0 +23965,40,18.4,12,0.0 +23965,73,15,24,0.0 +23965,71,21.5,41,0.0 +23965,23,9,2,0.0 +23965,17,39,15,0.0 +23965,51,53,49,0.0 +23965,24,4.5,50,0.0 +23965,46,12,2,0.0 +23965,60,34,23,0.0 +23965,2,19,27,0.0 +23965,14,23.25,42,0.0 +23965,52,7,34,0.0 +23965,58,13.25,30,0.0 +23965,31,12.5,46,0.0 +23965,50,16.25,12,0.0 +23965,70,15,43,0.0 +23965,45,9.5,26,0.0 +23965,63,43.9,40,0.0 +23965,72,34.8,37,0.0 +23965,62,49.3,32,0.0 +23965,27,43.9,9,0.0 +23965,75,7.75,48,0.0 +23965,56,38,11,0.0 +23965,12,38,42,0.0 +23965,38,263.5,6,0.0 +23965,10,31,17,0.0 +23965,48,12.75,9,0.0 +23965,67,14,8,0.0 +23965,68,12.5,46,0.0 +23965,41,9.65,22,0.0 +23965,7,30,37,0.0 +23965,20,81,29,0.0 +23965,47,9.5,8,0.0 +23965,44,19.45,40,0.0 +23965,49,20,44,0.0 +23965,26,31.23,26,0.0 +23965,16,17.45,10,0.0 +23965,29,123.79,16,0.0 +23965,43,46,5,0.0 +23966,28,45.6,31,0.0 +23966,50,16.25,14,0.0 +23966,29,123.79,8,0.0 +23966,36,19,44,0.0 +23966,5,21.35,11,0.0 +23967,18,62.5,11,0.0 +23967,23,9,27,0.0 +23967,35,18,15,0.0 +23967,72,34.8,36,0.0 +23967,53,32.8,5,0.0 +23967,32,32,35,0.0 +23967,67,14,23,0.0 +23967,75,7.75,12,0.0 +23967,13,6,17,0.0 +23967,11,21,40,0.0 +23967,58,13.25,49,0.0 +23967,50,16.25,31,0.0 +23967,55,24,19,0.0 +23967,68,12.5,49,0.0 +23967,36,19,18,0.0 +23967,38,263.5,40,0.0 +23967,22,21,22,0.0 +23967,49,20,48,0.0 +23967,69,36,49,0.0 +23967,3,10,39,0.0 +23967,17,39,27,0.0 +23967,5,21.35,49,0.0 +23967,31,12.5,31,0.0 +23967,15,15.5,6,0.0 +23967,20,81,10,0.0 +23967,10,31,13,0.0 +23967,6,25,34,0.0 +23967,70,15,43,0.0 +23967,73,15,8,0.0 +23967,56,38,41,0.0 +23967,77,13,45,0.0 +23967,52,7,4,0.0 +23967,47,9.5,35,0.0 +23967,24,4.5,13,0.0 +23967,60,34,9,0.0 +23967,48,12.75,33,0.0 +23968,12,38,15,0.0 +23968,58,13.25,22,0.0 +23968,47,9.5,40,0.0 +23968,59,55,23,0.0 +23968,34,14,33,0.0 +23968,1,18,47,0.0 +23968,15,15.5,2,0.0 +23968,21,10,19,0.0 +23968,5,21.35,10,0.0 +23968,33,2.5,24,0.0 +23968,67,14,49,0.0 +23968,72,34.8,17,0.0 +23968,64,33.25,22,0.0 +23968,41,9.65,14,0.0 +23968,42,14,38,0.0 +23968,68,12.5,18,0.0 +23968,11,21,24,0.0 +23968,19,9.2,47,0.0 +23968,10,31,31,0.0 +23968,43,46,34,0.0 +23968,77,13,15,0.0 +23968,70,15,5,0.0 +23968,52,7,26,0.0 +23968,7,30,43,0.0 +23968,3,10,20,0.0 +23968,49,20,21,0.0 +23968,71,21.5,5,0.0 +23968,32,32,35,0.0 +23968,18,62.5,20,0.0 +23968,66,17,48,0.0 +23968,51,53,21,0.0 +23968,40,18.4,3,0.0 +23968,57,19.5,35,0.0 +23968,35,18,12,0.0 +23968,46,12,49,0.0 +23968,17,39,2,0.0 +23968,20,81,38,0.0 +23968,30,25.89,49,0.0 +23968,13,6,14,0.0 +23968,37,26,22,0.0 +23968,75,7.75,35,0.0 +23968,44,19.45,47,0.0 +23968,65,21.05,47,0.0 +23968,55,24,5,0.0 +23968,38,263.5,40,0.0 +23968,74,10,44,0.0 +23968,29,123.79,20,0.0 +23968,53,32.8,28,0.0 +23968,23,9,4,0.0 +23968,2,19,36,0.0 +23968,60,34,6,0.0 +23968,76,18,24,0.0 +23968,14,23.25,4,0.0 +23968,28,45.6,12,0.0 +23968,69,36,15,0.0 +23968,63,43.9,33,0.0 +23968,24,4.5,47,0.0 +23968,50,16.25,23,0.0 +23968,9,97,4,0.0 +23968,36,19,4,0.0 +23968,56,38,39,0.0 +23968,54,7.45,40,0.0 +23968,48,12.75,13,0.0 +23968,4,22,22,0.0 +23968,39,18,5,0.0 +23968,45,9.5,31,0.0 +23969,72,34.8,19,0.0 +23969,32,32,26,0.0 +23969,25,14,23,0.0 +23969,37,26,49,0.0 +23969,71,21.5,20,0.0 +23969,62,49.3,18,0.0 +23969,27,43.9,38,0.0 +23969,21,10,12,0.0 +23969,69,36,20,0.0 +23969,29,123.79,39,0.0 +23969,13,6,33,0.0 +23969,1,18,39,0.0 +23969,76,18,19,0.0 +23969,59,55,45,0.0 +23969,60,34,39,0.0 +23969,12,38,48,0.0 +23969,14,23.25,11,0.0 +23969,23,9,40,0.0 +23969,34,14,9,0.0 +23969,22,21,28,0.0 +23969,56,38,8,0.0 +23969,70,15,37,0.0 +23969,65,21.05,42,0.0 +23969,8,40,50,0.0 +23969,48,12.75,14,0.0 +23969,11,21,24,0.0 +23969,64,33.25,42,0.0 +23969,16,17.45,15,0.0 +23969,20,81,18,0.0 +23969,2,19,29,0.0 +23969,39,18,18,0.0 +23969,43,46,42,0.0 +23969,40,18.4,50,0.0 +23969,77,13,26,0.0 +23969,67,14,37,0.0 +23969,5,21.35,24,0.0 +23969,66,17,32,0.0 +23969,41,9.65,24,0.0 +23969,15,15.5,23,0.0 +23969,3,10,8,0.0 +23969,47,9.5,45,0.0 +23969,24,4.5,36,0.0 +23969,4,22,24,0.0 +23969,63,43.9,6,0.0 +23969,26,31.23,21,0.0 +23969,55,24,4,0.0 +23969,33,2.5,34,0.0 +23969,75,7.75,4,0.0 +23969,7,30,37,0.0 +23969,74,10,27,0.0 +23969,9,97,15,0.0 +23969,44,19.45,1,0.0 +23969,54,7.45,11,0.0 +23969,18,62.5,5,0.0 +23969,45,9.5,20,0.0 +23969,53,32.8,21,0.0 +23969,17,39,4,0.0 +23969,51,53,41,0.0 +23969,49,20,46,0.0 +23969,46,12,36,0.0 +23969,38,263.5,4,0.0 +23969,50,16.25,4,0.0 +23969,52,7,9,0.0 +23969,30,25.89,7,0.0 +23969,6,25,27,0.0 +23969,73,15,12,0.0 +23969,28,45.6,6,0.0 +23969,36,19,10,0.0 +23969,57,19.5,27,0.0 +23969,61,28.5,9,0.0 +23969,31,12.5,50,0.0 +23969,58,13.25,23,0.0 +23969,19,9.2,23,0.0 +23969,42,14,35,0.0 +23970,54,7.45,25,0.0 +23970,1,18,21,0.0 +23970,27,43.9,28,0.0 +23970,58,13.25,22,0.0 +23970,52,7,33,0.0 +23970,20,81,31,0.0 +23970,28,45.6,37,0.0 +23970,51,53,48,0.0 +23970,69,36,5,0.0 +23970,72,34.8,14,0.0 +23970,77,13,7,0.0 +23970,4,22,35,0.0 +23970,66,17,13,0.0 +23970,8,40,20,0.0 +23970,34,14,11,0.0 +23971,60,34,50,0.0 +23971,54,7.45,11,0.0 +23971,29,123.79,49,0.0 +23971,55,24,20,0.0 +23971,41,9.65,12,0.0 +23971,53,32.8,18,0.0 +23971,49,20,3,0.0 +23971,57,19.5,22,0.0 +23971,37,26,44,0.0 +23971,68,12.5,23,0.0 +23971,69,36,4,0.0 +23971,67,14,3,0.0 +23971,52,7,42,0.0 +23971,7,30,50,0.0 +23971,11,21,31,0.0 +23971,19,9.2,2,0.0 +23971,30,25.89,45,0.0 +23971,18,62.5,12,0.0 +23971,77,13,33,0.0 +23971,65,21.05,30,0.0 +23971,75,7.75,37,0.0 +23971,15,15.5,25,0.0 +23971,26,31.23,1,0.0 +23971,27,43.9,48,0.0 +23971,28,45.6,41,0.0 +23971,6,25,38,0.0 +23971,38,263.5,43,0.0 +23971,47,9.5,23,0.0 +23971,24,4.5,16,0.0 +23971,43,46,30,0.0 +23971,8,40,35,0.0 +23971,44,19.45,29,0.0 +23971,59,55,42,0.0 +23971,70,15,37,0.0 +23971,10,31,2,0.0 +23971,51,53,25,0.0 +23971,17,39,4,0.0 +23971,42,14,29,0.0 +23971,2,19,17,0.0 +23971,50,16.25,28,0.0 +23971,4,22,20,0.0 +23971,62,49.3,18,0.0 +23971,46,12,15,0.0 +23971,32,32,21,0.0 +23971,48,12.75,25,0.0 +23971,12,38,13,0.0 +23971,71,21.5,2,0.0 +23971,73,15,21,0.0 +23971,39,18,28,0.0 +23971,25,14,47,0.0 +23971,5,21.35,5,0.0 +23971,1,18,48,0.0 +23971,45,9.5,33,0.0 +23971,3,10,42,0.0 +23971,23,9,32,0.0 +23971,21,10,48,0.0 +23971,36,19,10,0.0 +23971,13,6,32,0.0 +23971,14,23.25,6,0.0 +23971,9,97,15,0.0 +23971,31,12.5,45,0.0 +23971,20,81,8,0.0 +23971,35,18,10,0.0 +23971,66,17,39,0.0 +23971,58,13.25,41,0.0 +23971,76,18,16,0.0 +23971,63,43.9,5,0.0 +23971,40,18.4,16,0.0 +23971,34,14,41,0.0 +23971,16,17.45,30,0.0 +23971,74,10,47,0.0 +23972,62,49.3,16,0.0 +23972,48,12.75,17,0.0 +23972,4,22,6,0.0 +23972,52,7,34,0.0 +23972,76,18,4,0.0 +23972,68,12.5,37,0.0 +23972,1,18,17,0.0 +23972,9,97,26,0.0 +23972,20,81,44,0.0 +23972,2,19,16,0.0 +23972,7,30,24,0.0 +23972,30,25.89,49,0.0 +23972,40,18.4,33,0.0 +23972,65,21.05,22,0.0 +23972,31,12.5,38,0.0 +23972,74,10,21,0.0 +23972,19,9.2,48,0.0 +23972,71,21.5,8,0.0 +23972,51,53,41,0.0 +23972,53,32.8,26,0.0 +23972,47,9.5,3,0.0 +23972,46,12,4,0.0 +23972,17,39,7,0.0 +23972,72,34.8,1,0.0 +23972,43,46,12,0.0 +23972,37,26,15,0.0 +23972,22,21,36,0.0 +23972,67,14,43,0.0 +23972,70,15,42,0.0 +23972,60,34,41,0.0 +23972,12,38,41,0.0 +23972,15,15.5,1,0.0 +23972,58,13.25,32,0.0 +23972,50,16.25,10,0.0 +23972,44,19.45,35,0.0 +23972,63,43.9,47,0.0 +23972,18,62.5,50,0.0 +23972,59,55,31,0.0 +23972,45,9.5,47,0.0 +23972,8,40,7,0.0 +23972,14,23.25,12,0.0 +23972,55,24,12,0.0 +23972,6,25,37,0.0 +23972,39,18,15,0.0 +23972,13,6,21,0.0 +23972,24,4.5,18,0.0 +23972,41,9.65,2,0.0 +23972,64,33.25,10,0.0 +23972,28,45.6,38,0.0 +23972,16,17.45,4,0.0 +23972,73,15,4,0.0 +23972,36,19,20,0.0 +23972,5,21.35,50,0.0 +23972,32,32,15,0.0 +23972,61,28.5,22,0.0 +23972,3,10,15,0.0 +23972,35,18,13,0.0 +23972,56,38,47,0.0 +23972,77,13,47,0.0 +23972,54,7.45,1,0.0 +23972,34,14,13,0.0 +23973,74,10,22,0.0 +23973,71,21.5,29,0.0 +23973,43,46,6,0.0 +23973,18,62.5,43,0.0 +23973,76,18,6,0.0 +23973,7,30,28,0.0 +23973,24,4.5,30,0.0 +23973,36,19,38,0.0 +23973,72,34.8,2,0.0 +23973,67,14,47,0.0 +23973,51,53,27,0.0 +23973,27,43.9,6,0.0 +23973,23,9,48,0.0 +23973,3,10,15,0.0 +23973,4,22,41,0.0 +23973,21,10,30,0.0 +23973,30,25.89,14,0.0 +23973,35,18,39,0.0 +23973,22,21,26,0.0 +23973,6,25,8,0.0 +23973,13,6,17,0.0 +23973,15,15.5,47,0.0 +23973,41,9.65,21,0.0 +23973,42,14,29,0.0 +23973,31,12.5,25,0.0 +23973,44,19.45,23,0.0 +23973,49,20,21,0.0 +23973,69,36,2,0.0 +23973,48,12.75,29,0.0 +23973,26,31.23,26,0.0 +23973,45,9.5,40,0.0 +23973,1,18,49,0.0 +23973,64,33.25,37,0.0 +23973,25,14,49,0.0 +23973,28,45.6,14,0.0 +23973,62,49.3,50,0.0 +23973,70,15,25,0.0 +23973,11,21,20,0.0 +23973,75,7.75,21,0.0 +23973,65,21.05,43,0.0 +23973,59,55,22,0.0 +23973,17,39,12,0.0 +23973,33,2.5,36,0.0 +23973,20,81,7,0.0 +23973,46,12,26,0.0 +23974,69,36,46,0.0 +23974,63,43.9,24,0.0 +23974,70,15,17,0.0 +23974,73,15,24,0.0 +23974,67,14,4,0.0 +23974,42,14,45,0.0 +23974,22,21,9,0.0 +23974,28,45.6,33,0.0 +23974,32,32,40,0.0 +23974,1,18,9,0.0 +23974,36,19,21,0.0 +23974,58,13.25,16,0.0 +23974,76,18,18,0.0 +23974,56,38,20,0.0 +23974,74,10,49,0.0 +23974,5,21.35,1,0.0 +23974,21,10,29,0.0 +23974,61,28.5,32,0.0 +23974,8,40,29,0.0 +23974,45,9.5,18,0.0 +23974,47,9.5,12,0.0 +23974,68,12.5,35,0.0 +23974,24,4.5,19,0.0 +23974,19,9.2,49,0.0 +23974,2,19,38,0.0 +23974,9,97,6,0.0 +23974,37,26,16,0.0 +23974,52,7,2,0.0 +23974,23,9,13,0.0 +23974,4,22,8,0.0 +23974,62,49.3,23,0.0 +23975,5,21.35,6,0.0 +23975,6,25,8,0.0 +23975,66,17,33,0.0 +23975,13,6,50,0.0 +23975,72,34.8,17,0.0 +23975,65,21.05,14,0.0 +23975,29,123.79,14,0.0 +23975,17,39,8,0.0 +23975,23,9,10,0.0 +23975,42,14,45,0.0 +23975,4,22,37,0.0 +23975,27,43.9,21,0.0 +23975,71,21.5,21,0.0 +23975,15,15.5,16,0.0 +23976,69,36,46,0.0 +23976,63,43.9,12,0.0 +23976,49,20,17,0.0 +23976,47,9.5,11,0.0 +23976,35,18,33,0.0 +23977,52,7,5,0.0 +23977,10,31,30,0.0 +23977,17,39,38,0.0 +23977,69,36,28,0.0 +23977,60,34,12,0.0 +23978,69,36,35,0.0 +23978,6,25,33,0.0 +23978,29,123.79,27,0.0 +23978,54,7.45,15,0.0 +23978,58,13.25,19,0.0 +23978,10,31,22,0.0 +23978,7,30,3,0.0 +23978,34,14,37,0.0 +23978,38,263.5,15,0.0 +23978,60,34,23,0.0 +23978,43,46,23,0.0 +23978,4,22,18,0.0 +23978,21,10,43,0.0 +23978,41,9.65,22,0.0 +23978,11,21,47,0.0 +23978,2,19,42,0.0 +23978,47,9.5,19,0.0 +23978,68,12.5,24,0.0 +23978,48,12.75,31,0.0 +23978,14,23.25,44,0.0 +23978,40,18.4,19,0.0 +23978,37,26,45,0.0 +23978,23,9,19,0.0 +23978,15,15.5,27,0.0 +23978,22,21,20,0.0 +23978,44,19.45,15,0.0 +23978,16,17.45,7,0.0 +23978,12,38,20,0.0 +23978,33,2.5,28,0.0 +23978,35,18,34,0.0 +23978,53,32.8,47,0.0 +23978,56,38,45,0.0 +23978,13,6,5,0.0 +23978,72,34.8,10,0.0 +23979,40,18.4,42,0.0 +23979,12,38,32,0.0 +23979,3,10,16,0.0 +23979,46,12,50,0.0 +23979,15,15.5,24,0.0 +23979,51,53,5,0.0 +23979,35,18,3,0.0 +23979,68,12.5,2,0.0 +23979,13,6,50,0.0 +23979,72,34.8,48,0.0 +23979,17,39,40,0.0 +23979,11,21,19,0.0 +23979,70,15,18,0.0 +23979,62,49.3,50,0.0 +23979,14,23.25,31,0.0 +23979,38,263.5,10,0.0 +23979,27,43.9,13,0.0 +23979,48,12.75,39,0.0 +23979,21,10,1,0.0 +23979,26,31.23,26,0.0 +23979,37,26,40,0.0 +23980,72,34.8,34,0.0 +23980,25,14,7,0.0 +23980,7,30,4,0.0 +23980,63,43.9,25,0.0 +23980,30,25.89,16,0.0 +23980,4,22,30,0.0 +23980,24,4.5,42,0.0 +23980,62,49.3,31,0.0 +23980,39,18,7,0.0 +23980,6,25,17,0.0 +23980,38,263.5,9,0.0 +23980,29,123.79,22,0.0 +23980,43,46,4,0.0 +23980,66,17,50,0.0 +23980,2,19,5,0.0 +23980,76,18,36,0.0 +23980,55,24,50,0.0 +23980,47,9.5,27,0.0 +23980,33,2.5,21,0.0 +23980,17,39,35,0.0 +23980,9,97,12,0.0 +23980,58,13.25,25,0.0 +23980,73,15,12,0.0 +23980,11,21,12,0.0 +23980,36,19,31,0.0 +23980,13,6,10,0.0 +23980,57,19.5,28,0.0 +23980,34,14,12,0.0 +23980,10,31,39,0.0 +23980,40,18.4,47,0.0 +23980,28,45.6,9,0.0 +23980,42,14,35,0.0 +23980,26,31.23,38,0.0 +23980,8,40,50,0.0 +23980,16,17.45,33,0.0 +23980,41,9.65,41,0.0 +23980,48,12.75,49,0.0 +23980,54,7.45,10,0.0 +23980,32,32,21,0.0 +23980,52,7,32,0.0 +23980,5,21.35,26,0.0 +23980,65,21.05,15,0.0 +23981,12,38,26,0.0 +23981,46,12,35,0.0 +23981,36,19,25,0.0 +23981,24,4.5,44,0.0 +23981,60,34,17,0.0 +23981,66,17,36,0.0 +23981,69,36,49,0.0 +23981,17,39,33,0.0 +23981,41,9.65,34,0.0 +23981,77,13,5,0.0 +23981,31,12.5,24,0.0 +23981,61,28.5,45,0.0 +23981,35,18,27,0.0 +23981,54,7.45,20,0.0 +23981,21,10,15,0.0 +23981,19,9.2,12,0.0 +23981,76,18,25,0.0 +23981,16,17.45,44,0.0 +23981,57,19.5,30,0.0 +23981,48,12.75,3,0.0 +23981,30,25.89,3,0.0 +23981,1,18,25,0.0 +23981,11,21,1,0.0 +23981,28,45.6,2,0.0 +23981,27,43.9,46,0.0 +23981,10,31,46,0.0 +23981,20,81,48,0.0 +23981,34,14,27,0.0 +23981,59,55,41,0.0 +23982,71,21.5,1,0.0 +23982,50,16.25,42,0.0 +23982,26,31.23,5,0.0 +23982,66,17,5,0.0 +23982,29,123.79,38,0.0 +23982,72,34.8,25,0.0 +23982,57,19.5,19,0.0 +23982,36,19,31,0.0 +23982,51,53,12,0.0 +23982,43,46,43,0.0 +23982,76,18,10,0.0 +23982,49,20,1,0.0 +23982,31,12.5,26,0.0 +23982,69,36,4,0.0 +23982,56,38,3,0.0 +23982,13,6,43,0.0 +23982,42,14,38,0.0 +23982,25,14,22,0.0 +23982,4,22,48,0.0 +23982,61,28.5,46,0.0 +23982,17,39,48,0.0 +23982,58,13.25,23,0.0 +23982,18,62.5,27,0.0 +23982,11,21,5,0.0 +23982,74,10,26,0.0 +23982,34,14,26,0.0 +23982,40,18.4,8,0.0 +23982,70,15,45,0.0 +23982,64,33.25,49,0.0 +23982,38,263.5,44,0.0 +23982,48,12.75,7,0.0 +23982,65,21.05,18,0.0 +23982,10,31,7,0.0 +23982,12,38,1,0.0 +23982,8,40,6,0.0 +23982,21,10,38,0.0 +23982,41,9.65,9,0.0 +23982,67,14,46,0.0 +23982,35,18,47,0.0 +23982,30,25.89,49,0.0 +23982,77,13,22,0.0 +23982,1,18,36,0.0 +23982,37,26,7,0.0 +23982,20,81,45,0.0 +23982,6,25,45,0.0 +23982,9,97,14,0.0 +23982,59,55,1,0.0 +23982,7,30,18,0.0 +23982,53,32.8,35,0.0 +23982,73,15,14,0.0 +23982,52,7,27,0.0 +23982,33,2.5,21,0.0 +23982,68,12.5,49,0.0 +23982,47,9.5,6,0.0 +23982,63,43.9,22,0.0 +23982,27,43.9,5,0.0 +23982,54,7.45,8,0.0 +23982,16,17.45,46,0.0 +23982,28,45.6,21,0.0 +23982,15,15.5,39,0.0 +23982,14,23.25,6,0.0 +23982,45,9.5,36,0.0 +23982,60,34,40,0.0 +23982,39,18,17,0.0 +23982,3,10,29,0.0 +23982,46,12,6,0.0 +23982,5,21.35,6,0.0 +23982,44,19.45,9,0.0 +23982,19,9.2,2,0.0 +23982,32,32,46,0.0 +23982,55,24,37,0.0 +23982,23,9,30,0.0 +23982,24,4.5,26,0.0 +23982,62,49.3,24,0.0 +23983,48,12.75,41,0.0 +23983,68,12.5,40,0.0 +23983,70,15,38,0.0 +23983,45,9.5,17,0.0 +23983,29,123.79,20,0.0 +23983,73,15,50,0.0 +23983,6,25,23,0.0 +23983,53,32.8,42,0.0 +23983,77,13,48,0.0 +23983,11,21,39,0.0 +23983,23,9,17,0.0 +23983,57,19.5,25,0.0 +23983,19,9.2,4,0.0 +23983,10,31,3,0.0 +23983,42,14,17,0.0 +23983,1,18,29,0.0 +23983,8,40,17,0.0 +23983,50,16.25,49,0.0 +23983,7,30,26,0.0 +23983,21,10,22,0.0 +23983,25,14,35,0.0 +23983,66,17,2,0.0 +23983,15,15.5,33,0.0 +23983,36,19,12,0.0 +23983,59,55,40,0.0 +23983,26,31.23,17,0.0 +23983,20,81,39,0.0 +23983,2,19,37,0.0 +23983,74,10,17,0.0 +23983,60,34,19,0.0 +23983,39,18,27,0.0 +23983,54,7.45,45,0.0 +23983,27,43.9,10,0.0 +23983,71,21.5,49,0.0 +23983,58,13.25,40,0.0 +23983,35,18,3,0.0 +23983,33,2.5,5,0.0 +23983,55,24,5,0.0 +23983,69,36,16,0.0 +23983,64,33.25,41,0.0 +23983,28,45.6,35,0.0 +23983,13,6,46,0.0 +23983,3,10,46,0.0 +23983,37,26,12,0.0 +23983,65,21.05,36,0.0 +23983,75,7.75,6,0.0 +23983,34,14,13,0.0 +23983,63,43.9,8,0.0 +23983,17,39,22,0.0 +23983,38,263.5,4,0.0 +23983,46,12,44,0.0 +23983,4,22,11,0.0 +23983,41,9.65,10,0.0 +23983,31,12.5,41,0.0 +23983,24,4.5,39,0.0 +23983,16,17.45,24,0.0 +23983,14,23.25,34,0.0 +23983,67,14,41,0.0 +23983,49,20,31,0.0 +23983,76,18,31,0.0 +23983,52,7,5,0.0 +23983,56,38,28,0.0 +23983,12,38,32,0.0 +23983,72,34.8,16,0.0 +23983,61,28.5,4,0.0 +23983,43,46,46,0.0 +23983,62,49.3,49,0.0 +23983,5,21.35,47,0.0 +23983,44,19.45,30,0.0 +23983,9,97,25,0.0 +23983,51,53,19,0.0 +23984,60,34,23,0.0 +23984,16,17.45,15,0.0 +23984,18,62.5,35,0.0 +23984,22,21,38,0.0 +23984,54,7.45,40,0.0 +23984,27,43.9,1,0.0 +23984,75,7.75,5,0.0 +23984,11,21,13,0.0 +23984,6,25,12,0.0 +23984,36,19,42,0.0 +23984,40,18.4,18,0.0 +23984,26,31.23,13,0.0 +23984,56,38,9,0.0 +23984,57,19.5,32,0.0 +23984,51,53,50,0.0 +23984,62,49.3,20,0.0 +23984,28,45.6,32,0.0 +23984,20,81,24,0.0 +23984,24,4.5,41,0.0 +23984,72,34.8,7,0.0 +23984,48,12.75,13,0.0 +23984,53,32.8,1,0.0 +23984,42,14,19,0.0 +23984,12,38,26,0.0 +23984,67,14,29,0.0 +23984,73,15,9,0.0 +23984,41,9.65,7,0.0 +23984,49,20,28,0.0 +23984,2,19,12,0.0 +23984,29,123.79,12,0.0 +23984,5,21.35,44,0.0 +23984,77,13,26,0.0 +23984,46,12,11,0.0 +23984,37,26,33,0.0 +23984,47,9.5,6,0.0 +23984,32,32,22,0.0 +23984,65,21.05,22,0.0 +23984,31,12.5,4,0.0 +23984,58,13.25,21,0.0 +23984,50,16.25,4,0.0 +23984,63,43.9,4,0.0 +23984,70,15,37,0.0 +23984,43,46,26,0.0 +23984,34,14,22,0.0 +23984,59,55,46,0.0 +23984,9,97,17,0.0 +23984,13,6,39,0.0 +23984,68,12.5,47,0.0 +23984,19,9.2,40,0.0 +23984,38,263.5,44,0.0 +23984,71,21.5,41,0.0 +23984,4,22,12,0.0 +23984,35,18,46,0.0 +23984,30,25.89,5,0.0 +23984,25,14,30,0.0 +23984,45,9.5,2,0.0 +23984,76,18,42,0.0 +23984,66,17,40,0.0 +23984,23,9,8,0.0 +23984,44,19.45,27,0.0 +23984,17,39,48,0.0 +23984,21,10,41,0.0 +23984,33,2.5,21,0.0 +23984,55,24,42,0.0 +23984,61,28.5,35,0.0 +23984,39,18,35,0.0 +23984,8,40,44,0.0 +23985,16,17.45,21,0.0 +23985,76,18,12,0.0 +23985,29,123.79,14,0.0 +23985,66,17,23,0.0 +23985,21,10,33,0.0 +23985,52,7,44,0.0 +23985,42,14,41,0.0 +23985,19,9.2,19,0.0 +23985,56,38,39,0.0 +23985,5,21.35,47,0.0 +23985,63,43.9,15,0.0 +23985,43,46,27,0.0 +23985,51,53,39,0.0 +23985,70,15,34,0.0 +23985,49,20,18,0.0 +23985,75,7.75,12,0.0 +23985,25,14,50,0.0 +23985,57,19.5,30,0.0 +23985,61,28.5,49,0.0 +23985,39,18,43,0.0 +23985,17,39,5,0.0 +23985,54,7.45,47,0.0 +23985,26,31.23,42,0.0 +23985,37,26,31,0.0 +23985,38,263.5,2,0.0 +23985,2,19,45,0.0 +23985,3,10,48,0.0 +23985,14,23.25,24,0.0 +23985,9,97,23,0.0 +23985,47,9.5,46,0.0 +23985,59,55,40,0.0 +23985,7,30,50,0.0 +23985,24,4.5,36,0.0 +23985,71,21.5,1,0.0 +23985,20,81,5,0.0 +23985,31,12.5,25,0.0 +23985,28,45.6,22,0.0 +23985,13,6,44,0.0 +23985,64,33.25,40,0.0 +23985,35,18,3,0.0 +23985,22,21,27,0.0 +23985,73,15,27,0.0 +23985,23,9,42,0.0 +23985,65,21.05,30,0.0 +23985,41,9.65,19,0.0 +23985,45,9.5,46,0.0 +23985,8,40,11,0.0 +23985,30,25.89,31,0.0 +23985,6,25,10,0.0 +23985,33,2.5,27,0.0 +23985,34,14,26,0.0 +23985,62,49.3,14,0.0 +23985,11,21,22,0.0 +23985,27,43.9,14,0.0 +23985,74,10,43,0.0 +23985,36,19,23,0.0 +23985,55,24,45,0.0 +23985,72,34.8,29,0.0 +23985,68,12.5,46,0.0 +23985,40,18.4,41,0.0 +23985,12,38,8,0.0 +23985,67,14,46,0.0 +23985,15,15.5,13,0.0 +23985,50,16.25,21,0.0 +23985,77,13,32,0.0 +23986,25,14,42,0.0 +23987,50,16.25,6,0.0 +23987,49,20,27,0.0 +23987,17,39,29,0.0 +23987,40,18.4,13,0.0 +23987,48,12.75,36,0.0 +23987,18,62.5,1,0.0 +23987,57,19.5,22,0.0 +23987,59,55,30,0.0 +23987,67,14,49,0.0 +23987,44,19.45,32,0.0 +23987,35,18,5,0.0 +23987,56,38,37,0.0 +23987,7,30,15,0.0 +23987,11,21,49,0.0 +23987,61,28.5,40,0.0 +23987,6,25,31,0.0 +23987,42,14,4,0.0 +23987,2,19,6,0.0 +23987,64,33.25,46,0.0 +23987,60,34,31,0.0 +23987,55,24,3,0.0 +23987,65,21.05,43,0.0 +23987,39,18,38,0.0 +23987,31,12.5,20,0.0 +23987,71,21.5,9,0.0 +23987,75,7.75,42,0.0 +23987,51,53,16,0.0 +23987,70,15,46,0.0 +23987,30,25.89,20,0.0 +23987,3,10,2,0.0 +23987,43,46,10,0.0 +23987,62,49.3,15,0.0 +23987,33,2.5,42,0.0 +23987,52,7,14,0.0 +23987,21,10,25,0.0 +23987,69,36,36,0.0 +23987,41,9.65,38,0.0 +23987,38,263.5,10,0.0 +23987,9,97,30,0.0 +23987,77,13,27,0.0 +23987,14,23.25,28,0.0 +23987,27,43.9,39,0.0 +23987,36,19,1,0.0 +23987,37,26,1,0.0 +23987,28,45.6,10,0.0 +23988,5,21.35,38,0.0 +23988,27,43.9,43,0.0 +23988,10,31,27,0.0 +23988,53,32.8,14,0.0 +23988,39,18,12,0.0 +23988,43,46,15,0.0 +23988,67,14,21,0.0 +23988,15,15.5,29,0.0 +23988,41,9.65,25,0.0 +23988,55,24,13,0.0 +23988,17,39,22,0.0 +23988,7,30,13,0.0 +23988,31,12.5,47,0.0 +23988,60,34,42,0.0 +23988,62,49.3,27,0.0 +23988,54,7.45,21,0.0 +23988,29,123.79,44,0.0 +23988,30,25.89,9,0.0 +23988,21,10,36,0.0 +23988,4,22,32,0.0 +23988,40,18.4,38,0.0 +23988,22,21,25,0.0 +23988,20,81,41,0.0 +23988,32,32,46,0.0 +23988,69,36,33,0.0 +23988,64,33.25,3,0.0 +23988,42,14,27,0.0 +23988,9,97,47,0.0 +23988,70,15,20,0.0 +23988,59,55,7,0.0 +23988,47,9.5,23,0.0 +23988,38,263.5,8,0.0 +23988,45,9.5,29,0.0 +23988,3,10,33,0.0 +23988,25,14,40,0.0 +23988,58,13.25,40,0.0 +23988,63,43.9,15,0.0 +23988,66,17,36,0.0 +23988,48,12.75,6,0.0 +23988,50,16.25,12,0.0 +23988,36,19,16,0.0 +23988,13,6,3,0.0 +23988,6,25,6,0.0 +23988,52,7,21,0.0 +23988,76,18,4,0.0 +23988,18,62.5,46,0.0 +23988,11,21,49,0.0 +23988,51,53,37,0.0 +23988,35,18,19,0.0 +23988,33,2.5,39,0.0 +23988,23,9,26,0.0 +23988,2,19,29,0.0 +23988,57,19.5,14,0.0 +23988,56,38,42,0.0 +23988,14,23.25,19,0.0 +23988,65,21.05,44,0.0 +23989,5,21.35,46,0.0 +23989,8,40,21,0.0 +23989,41,9.65,17,0.0 +23989,43,46,48,0.0 +23989,23,9,28,0.0 +23989,57,19.5,7,0.0 +23989,36,19,46,0.0 +23989,35,18,21,0.0 +23989,27,43.9,43,0.0 +23989,22,21,18,0.0 +23989,68,12.5,39,0.0 +23989,54,7.45,17,0.0 +23989,33,2.5,38,0.0 +23989,47,9.5,29,0.0 +23989,48,12.75,16,0.0 +23989,19,9.2,12,0.0 +23989,25,14,4,0.0 +23989,73,15,50,0.0 +23989,50,16.25,49,0.0 +23989,64,33.25,17,0.0 +23989,38,263.5,25,0.0 +23989,18,62.5,40,0.0 +23989,72,34.8,34,0.0 +23989,75,7.75,47,0.0 +23989,28,45.6,42,0.0 +23989,1,18,31,0.0 +23989,10,31,25,0.0 +23989,49,20,27,0.0 +23989,37,26,3,0.0 +23989,66,17,41,0.0 +23989,13,6,25,0.0 +23989,59,55,25,0.0 +23989,7,30,48,0.0 +23989,4,22,12,0.0 +23989,39,18,20,0.0 +23989,53,32.8,44,0.0 +23989,65,21.05,40,0.0 +23989,42,14,23,0.0 +23989,9,97,2,0.0 +23989,3,10,35,0.0 +23989,51,53,33,0.0 +23989,26,31.23,13,0.0 +23989,61,28.5,49,0.0 +23989,70,15,38,0.0 +23989,40,18.4,41,0.0 +23989,14,23.25,38,0.0 +23989,20,81,30,0.0 +23989,55,24,13,0.0 +23989,11,21,11,0.0 +23989,15,15.5,49,0.0 +23989,32,32,50,0.0 +23989,63,43.9,21,0.0 +23989,62,49.3,40,0.0 +23989,45,9.5,12,0.0 +23990,38,263.5,2,0.0 +23990,77,13,27,0.0 +23990,51,53,20,0.0 +23990,64,33.25,5,0.0 +23990,15,15.5,42,0.0 +23990,10,31,31,0.0 +23990,26,31.23,22,0.0 +23990,69,36,30,0.0 +23990,48,12.75,47,0.0 +23990,56,38,6,0.0 +23990,25,14,38,0.0 +23990,20,81,11,0.0 +23990,11,21,45,0.0 +23990,27,43.9,37,0.0 +23990,3,10,18,0.0 +23990,73,15,34,0.0 +23990,36,19,30,0.0 +23990,74,10,33,0.0 +23990,61,28.5,38,0.0 +23990,43,46,41,0.0 +23990,18,62.5,48,0.0 +23990,63,43.9,45,0.0 +23990,52,7,12,0.0 +23990,7,30,4,0.0 +23990,12,38,49,0.0 +23990,16,17.45,47,0.0 +23990,35,18,35,0.0 +23990,29,123.79,33,0.0 +23990,22,21,7,0.0 +23990,59,55,50,0.0 +23990,50,16.25,14,0.0 +23990,1,18,16,0.0 +23990,67,14,39,0.0 +23990,9,97,19,0.0 +23990,65,21.05,13,0.0 +23990,23,9,42,0.0 +23990,53,32.8,7,0.0 +23990,33,2.5,46,0.0 +23990,66,17,24,0.0 +23990,45,9.5,28,0.0 +23990,41,9.65,37,0.0 +23990,60,34,26,0.0 +23990,24,4.5,34,0.0 +23990,30,25.89,11,0.0 +23990,58,13.25,3,0.0 +23990,5,21.35,20,0.0 +23990,75,7.75,1,0.0 +23990,55,24,40,0.0 +23990,42,14,21,0.0 +23990,62,49.3,30,0.0 +23990,2,19,18,0.0 +23990,6,25,1,0.0 +23990,14,23.25,26,0.0 +23990,57,19.5,10,0.0 +23990,4,22,43,0.0 +23990,76,18,39,0.0 +23991,67,14,12,0.0 +23991,13,6,45,0.0 +23991,21,10,30,0.0 +23991,74,10,1,0.0 +23991,62,49.3,38,0.0 +23991,57,19.5,11,0.0 +23991,53,32.8,9,0.0 +23991,3,10,8,0.0 +23991,73,15,27,0.0 +23991,43,46,11,0.0 +23991,17,39,5,0.0 +23991,55,24,34,0.0 +23991,38,263.5,31,0.0 +23991,50,16.25,41,0.0 +23991,40,18.4,27,0.0 +23991,29,123.79,32,0.0 +23991,65,21.05,7,0.0 +23991,71,21.5,32,0.0 +23991,68,12.5,42,0.0 +23991,28,45.6,35,0.0 +23991,15,15.5,37,0.0 +23991,32,32,48,0.0 +23991,54,7.45,6,0.0 +23991,14,23.25,12,0.0 +23991,42,14,47,0.0 +23991,4,22,12,0.0 +23991,20,81,49,0.0 +23991,69,36,44,0.0 +23991,6,25,16,0.0 +23991,44,19.45,6,0.0 +23991,2,19,19,0.0 +23991,25,14,34,0.0 +23991,11,21,16,0.0 +23991,27,43.9,28,0.0 +23991,18,62.5,50,0.0 +23991,12,38,19,0.0 +23991,23,9,43,0.0 +23991,33,2.5,31,0.0 +23991,49,20,4,0.0 +23991,8,40,18,0.0 +23991,24,4.5,25,0.0 +23991,35,18,42,0.0 +23991,36,19,31,0.0 +23991,22,21,38,0.0 +23991,75,7.75,33,0.0 +23991,34,14,42,0.0 +23991,48,12.75,21,0.0 +23991,26,31.23,38,0.0 +23991,51,53,8,0.0 +23991,16,17.45,13,0.0 +23991,31,12.5,46,0.0 +23991,60,34,21,0.0 +23991,58,13.25,2,0.0 +23991,45,9.5,34,0.0 +23991,70,15,39,0.0 +23991,56,38,3,0.0 +23991,39,18,35,0.0 +23991,59,55,6,0.0 +23991,47,9.5,21,0.0 +23991,37,26,12,0.0 +23991,1,18,21,0.0 +23991,63,43.9,17,0.0 +23991,72,34.8,15,0.0 +23991,52,7,22,0.0 +23991,10,31,27,0.0 +23991,46,12,39,0.0 +23991,19,9.2,45,0.0 +23991,76,18,14,0.0 +23991,9,97,23,0.0 +23991,77,13,19,0.0 +23991,64,33.25,26,0.0 +23991,41,9.65,2,0.0 +23992,20,81,17,0.0 +23992,9,97,13,0.0 +23992,5,21.35,27,0.0 +23992,72,34.8,34,0.0 +23992,69,36,3,0.0 +23992,35,18,26,0.0 +23992,29,123.79,30,0.0 +23992,47,9.5,26,0.0 +23992,49,20,48,0.0 +23992,4,22,36,0.0 +23992,77,13,36,0.0 +23992,37,26,42,0.0 +23992,45,9.5,40,0.0 +23992,57,19.5,20,0.0 +23992,22,21,19,0.0 +23992,11,21,14,0.0 +23992,46,12,45,0.0 +23992,50,16.25,1,0.0 +23992,16,17.45,49,0.0 +23992,3,10,19,0.0 +23992,44,19.45,36,0.0 +23992,42,14,17,0.0 +23992,54,7.45,14,0.0 +23992,21,10,28,0.0 +23992,26,31.23,26,0.0 +23992,23,9,33,0.0 +23992,60,34,32,0.0 +23992,17,39,29,0.0 +23992,65,21.05,46,0.0 +23992,18,62.5,13,0.0 +23992,1,18,49,0.0 +23992,25,14,34,0.0 +23992,12,38,47,0.0 +23992,24,4.5,3,0.0 +23992,32,32,44,0.0 +23992,51,53,5,0.0 +23992,75,7.75,40,0.0 +23992,70,15,17,0.0 +23992,76,18,21,0.0 +23992,30,25.89,26,0.0 +23992,6,25,12,0.0 +23992,43,46,22,0.0 +23992,7,30,29,0.0 +23992,13,6,30,0.0 +23992,48,12.75,19,0.0 +23992,2,19,6,0.0 +23992,66,17,12,0.0 +23992,10,31,15,0.0 +23992,67,14,30,0.0 +23992,15,15.5,26,0.0 +23992,56,38,39,0.0 +23992,34,14,27,0.0 +23992,64,33.25,26,0.0 +23992,71,21.5,1,0.0 +23992,59,55,6,0.0 +23992,68,12.5,37,0.0 +23992,31,12.5,34,0.0 +23992,14,23.25,2,0.0 +23992,52,7,28,0.0 +23992,63,43.9,1,0.0 +23992,19,9.2,18,0.0 +23992,53,32.8,23,0.0 +23992,33,2.5,9,0.0 +23992,39,18,22,0.0 +23992,41,9.65,10,0.0 +23992,62,49.3,13,0.0 +23992,38,263.5,31,0.0 +23992,8,40,38,0.0 +23992,40,18.4,15,0.0 +23992,28,45.6,7,0.0 +23992,27,43.9,38,0.0 +23992,55,24,38,0.0 +23993,25,14,43,0.0 +23994,39,18,36,0.0 +23994,50,16.25,21,0.0 +23994,56,38,48,0.0 +23994,64,33.25,16,0.0 +23994,73,15,29,0.0 +23994,77,13,11,0.0 +23994,10,31,43,0.0 +23994,42,14,3,0.0 +23994,35,18,37,0.0 +23994,71,21.5,27,0.0 +23994,59,55,40,0.0 +23994,46,12,45,0.0 +23994,54,7.45,8,0.0 +23994,27,43.9,18,0.0 +23994,34,14,41,0.0 +23994,14,23.25,44,0.0 +23994,41,9.65,46,0.0 +23994,1,18,17,0.0 +23994,28,45.6,1,0.0 +23994,55,24,36,0.0 +23994,76,18,37,0.0 +23994,33,2.5,31,0.0 +23994,11,21,43,0.0 +23994,29,123.79,40,0.0 +23994,65,21.05,21,0.0 +23994,24,4.5,34,0.0 +23994,43,46,30,0.0 +23994,8,40,3,0.0 +23994,7,30,15,0.0 +23994,23,9,17,0.0 +23994,57,19.5,33,0.0 +23994,15,15.5,20,0.0 +23994,47,9.5,3,0.0 +23995,12,38,47,0.0 +23995,25,14,41,0.0 +23995,68,12.5,23,0.0 +23995,55,24,44,0.0 +23995,2,19,32,0.0 +23995,62,49.3,7,0.0 +23995,46,12,25,0.0 +23995,50,16.25,38,0.0 +23995,65,21.05,35,0.0 +23995,51,53,35,0.0 +23995,4,22,14,0.0 +23995,75,7.75,26,0.0 +23995,41,9.65,21,0.0 +23995,52,7,27,0.0 +23995,64,33.25,17,0.0 +23995,76,18,21,0.0 +23995,6,25,35,0.0 +23995,3,10,2,0.0 +23995,9,97,32,0.0 +23995,30,25.89,46,0.0 +23995,17,39,33,0.0 +23995,8,40,36,0.0 +23995,34,14,49,0.0 +23995,23,9,16,0.0 +23995,56,38,9,0.0 +23995,53,32.8,23,0.0 +23995,39,18,29,0.0 +23995,35,18,21,0.0 +23995,10,31,12,0.0 +23996,65,21.05,42,0.0 +23996,34,14,14,0.0 +23996,50,16.25,18,0.0 +23996,15,15.5,4,0.0 +23996,71,21.5,17,0.0 +23996,58,13.25,16,0.0 +23996,3,10,27,0.0 +23996,77,13,13,0.0 +23996,54,7.45,22,0.0 +23996,67,14,31,0.0 +23996,43,46,10,0.0 +23996,20,81,49,0.0 +23996,76,18,25,0.0 +23996,19,9.2,20,0.0 +23996,36,19,7,0.0 +23996,37,26,23,0.0 +23996,28,45.6,15,0.0 +23996,74,10,34,0.0 +23996,55,24,15,0.0 +23996,24,4.5,5,0.0 +23996,53,32.8,43,0.0 +23996,63,43.9,50,0.0 +23996,18,62.5,18,0.0 +23996,31,12.5,34,0.0 +23996,23,9,11,0.0 +23996,2,19,7,0.0 +23996,45,9.5,22,0.0 +23996,61,28.5,46,0.0 +23996,69,36,11,0.0 +23996,75,7.75,22,0.0 +23996,60,34,24,0.0 +23996,52,7,6,0.0 +23996,10,31,15,0.0 +23996,49,20,7,0.0 +23996,17,39,12,0.0 +23996,72,34.8,24,0.0 +23997,12,38,25,0.0 +23997,50,16.25,28,0.0 +23997,16,17.45,7,0.0 +23997,59,55,19,0.0 +23997,25,14,50,0.0 +23997,41,9.65,5,0.0 +23997,8,40,8,0.0 +23997,32,32,45,0.0 +23997,39,18,38,0.0 +23997,20,81,7,0.0 +23997,31,12.5,47,0.0 +23997,34,14,44,0.0 +23997,66,17,19,0.0 +23997,71,21.5,49,0.0 +23997,4,22,40,0.0 +23997,36,19,44,0.0 +23997,45,9.5,33,0.0 +23997,44,19.45,13,0.0 +23997,26,31.23,36,0.0 +23997,62,49.3,46,0.0 +23997,77,13,13,0.0 +23997,46,12,1,0.0 +23997,22,21,20,0.0 +23997,28,45.6,5,0.0 +23997,55,24,28,0.0 +23997,3,10,1,0.0 +23997,21,10,50,0.0 +23997,64,33.25,46,0.0 +23997,15,15.5,37,0.0 +23997,65,21.05,12,0.0 +23997,27,43.9,2,0.0 +23997,52,7,36,0.0 +23997,2,19,21,0.0 +23997,23,9,50,0.0 +23997,38,263.5,33,0.0 +23997,70,15,22,0.0 +23997,49,20,11,0.0 +23997,14,23.25,12,0.0 +23997,56,38,45,0.0 +23997,17,39,13,0.0 +23997,43,46,23,0.0 +23997,53,32.8,23,0.0 +23997,24,4.5,7,0.0 +23998,70,15,13,0.0 +23998,44,19.45,5,0.0 +23998,21,10,7,0.0 +23998,60,34,8,0.0 +23998,77,13,12,0.0 +23998,67,14,35,0.0 +23999,54,7.45,1,0.0 +23999,50,16.25,11,0.0 +23999,33,2.5,41,0.0 +23999,53,32.8,28,0.0 +23999,30,25.89,19,0.0 +23999,15,15.5,25,0.0 +23999,28,45.6,33,0.0 +23999,2,19,30,0.0 +23999,12,38,50,0.0 +23999,48,12.75,31,0.0 +23999,24,4.5,43,0.0 +23999,68,12.5,28,0.0 +23999,62,49.3,44,0.0 +23999,72,34.8,10,0.0 +23999,6,25,11,0.0 +23999,20,81,23,0.0 +23999,18,62.5,32,0.0 +23999,31,12.5,49,0.0 +23999,77,13,1,0.0 +23999,65,21.05,41,0.0 +23999,56,38,12,0.0 +23999,17,39,3,0.0 +23999,52,7,48,0.0 +23999,43,46,38,0.0 +23999,64,33.25,39,0.0 +24000,49,20,15,0.0 +24000,1,18,3,0.0 +24000,56,38,41,0.0 +24000,10,31,38,0.0 +24000,13,6,11,0.0 +24000,14,23.25,28,0.0 +24000,11,21,1,0.0 +24000,76,18,2,0.0 +24000,29,123.79,34,0.0 +24000,77,13,49,0.0 +24000,47,9.5,45,0.0 +24000,43,46,14,0.0 +24000,69,36,31,0.0 +24000,55,24,40,0.0 +24000,7,30,36,0.0 +24000,63,43.9,3,0.0 +24000,31,12.5,48,0.0 +24000,21,10,13,0.0 +24000,38,263.5,11,0.0 +24000,74,10,28,0.0 +24000,73,15,12,0.0 +24000,24,4.5,6,0.0 +24001,44,19.45,7,0.0 +24001,75,7.75,41,0.0 +24001,26,31.23,44,0.0 +24001,1,18,39,0.0 +24001,35,18,37,0.0 +24001,67,14,1,0.0 +24001,20,81,21,0.0 +24001,45,9.5,43,0.0 +24001,70,15,15,0.0 +24001,52,7,4,0.0 +24001,50,16.25,37,0.0 +24001,51,53,35,0.0 +24001,39,18,47,0.0 +24001,58,13.25,12,0.0 +24001,37,26,2,0.0 +24001,56,38,13,0.0 +24001,34,14,37,0.0 +24001,24,4.5,40,0.0 +24001,72,34.8,19,0.0 +24001,22,21,41,0.0 +24001,38,263.5,39,0.0 +24001,27,43.9,36,0.0 +24001,42,14,28,0.0 +24001,21,10,24,0.0 +24001,28,45.6,27,0.0 +24001,33,2.5,14,0.0 +24001,68,12.5,50,0.0 +24001,55,24,3,0.0 +24001,36,19,7,0.0 +24001,60,34,42,0.0 +24001,66,17,8,0.0 +24001,16,17.45,47,0.0 +24001,48,12.75,49,0.0 +24001,61,28.5,7,0.0 +24001,30,25.89,32,0.0 +24001,62,49.3,4,0.0 +24001,29,123.79,13,0.0 +24001,14,23.25,30,0.0 +24001,32,32,36,0.0 +24001,11,21,27,0.0 +24001,40,18.4,50,0.0 +24001,9,97,40,0.0 +24001,7,30,39,0.0 +24001,77,13,14,0.0 +24001,19,9.2,27,0.0 +24001,64,33.25,21,0.0 +24001,4,22,6,0.0 +24001,54,7.45,45,0.0 +24001,8,40,39,0.0 +24001,3,10,15,0.0 +24001,73,15,38,0.0 +24001,43,46,28,0.0 +24001,23,9,30,0.0 +24001,18,62.5,34,0.0 +24001,47,9.5,39,0.0 +24001,31,12.5,49,0.0 +24001,15,15.5,47,0.0 +24001,63,43.9,7,0.0 +24001,25,14,34,0.0 +24001,49,20,7,0.0 +24002,4,22,33,0.0 +24002,31,12.5,49,0.0 +24002,6,25,1,0.0 +24002,11,21,19,0.0 +24002,55,24,16,0.0 +24003,48,12.75,23,0.0 +24003,45,9.5,48,0.0 +24003,41,9.65,32,0.0 +24003,57,19.5,48,0.0 +24003,25,14,46,0.0 +24003,65,21.05,13,0.0 +24003,70,15,42,0.0 +24003,6,25,13,0.0 +24003,9,97,23,0.0 +24003,23,9,5,0.0 +24003,55,24,1,0.0 +24003,47,9.5,39,0.0 +24003,22,21,43,0.0 +24003,8,40,45,0.0 +24003,10,31,39,0.0 +24003,11,21,22,0.0 +24003,14,23.25,3,0.0 +24003,3,10,45,0.0 +24003,72,34.8,41,0.0 +24003,29,123.79,11,0.0 +24003,21,10,7,0.0 +24003,37,26,25,0.0 +24003,60,34,25,0.0 +24003,15,15.5,27,0.0 +24003,16,17.45,2,0.0 +24003,1,18,38,0.0 +24003,75,7.75,30,0.0 +24003,68,12.5,28,0.0 +24003,13,6,1,0.0 +24003,59,55,41,0.0 +24003,35,18,9,0.0 +24003,66,17,2,0.0 +24003,17,39,36,0.0 +24003,52,7,13,0.0 +24004,4,22,50,0.0 +24004,3,10,8,0.0 +24004,48,12.75,9,0.0 +24004,24,4.5,20,0.0 +24004,34,14,6,0.0 +24004,25,14,39,0.0 +24004,69,36,35,0.0 +24004,44,19.45,7,0.0 +24004,22,21,6,0.0 +24004,59,55,24,0.0 +24004,17,39,2,0.0 +24004,75,7.75,20,0.0 +24004,10,31,1,0.0 +24004,23,9,4,0.0 +24004,63,43.9,35,0.0 +24004,20,81,37,0.0 +24004,6,25,4,0.0 +24004,32,32,38,0.0 +24004,36,19,17,0.0 +24004,77,13,43,0.0 +24004,49,20,29,0.0 +24004,5,21.35,34,0.0 +24004,19,9.2,20,0.0 +24004,45,9.5,35,0.0 +24004,28,45.6,50,0.0 +24005,43,46,10,0.0 +24005,10,31,45,0.0 +24005,38,263.5,31,0.0 +24005,19,9.2,2,0.0 +24005,73,15,27,0.0 +24005,55,24,37,0.0 +24005,33,2.5,45,0.0 +24005,76,18,24,0.0 +24005,60,34,48,0.0 +24005,67,14,1,0.0 +24005,11,21,38,0.0 +24005,49,20,3,0.0 +24005,48,12.75,15,0.0 +24006,67,14,39,0.0 +24006,11,21,31,0.0 +24006,58,13.25,50,0.0 +24006,69,36,26,0.0 +24006,23,9,17,0.0 +24006,70,15,36,0.0 +24006,35,18,23,0.0 +24006,3,10,47,0.0 +24006,53,32.8,5,0.0 +24006,65,21.05,42,0.0 +24006,50,16.25,49,0.0 +24006,43,46,35,0.0 +24006,55,24,23,0.0 +24006,54,7.45,36,0.0 +24006,14,23.25,38,0.0 +24006,24,4.5,48,0.0 +24006,64,33.25,7,0.0 +24006,5,21.35,16,0.0 +24006,73,15,26,0.0 +24006,27,43.9,37,0.0 +24006,22,21,43,0.0 +24006,15,15.5,38,0.0 +24006,56,38,12,0.0 +24006,45,9.5,26,0.0 +24006,44,19.45,26,0.0 +24006,31,12.5,13,0.0 +24006,66,17,43,0.0 +24006,59,55,15,0.0 +24007,64,33.25,47,0.0 +24007,32,32,19,0.0 +24007,1,18,2,0.0 +24007,63,43.9,43,0.0 +24007,48,12.75,9,0.0 +24007,19,9.2,46,0.0 +24007,36,19,35,0.0 +24007,21,10,3,0.0 +24007,60,34,28,0.0 +24007,75,7.75,43,0.0 +24007,66,17,48,0.0 +24007,11,21,7,0.0 +24007,46,12,13,0.0 +24007,59,55,32,0.0 +24007,22,21,27,0.0 +24007,29,123.79,29,0.0 +24007,73,15,17,0.0 +24007,71,21.5,20,0.0 +24007,4,22,3,0.0 +24007,69,36,37,0.0 +24007,33,2.5,31,0.0 +24007,7,30,7,0.0 +24007,61,28.5,28,0.0 +24007,8,40,46,0.0 +24007,53,32.8,47,0.0 +24007,57,19.5,29,0.0 +24007,67,14,20,0.0 +24007,15,15.5,27,0.0 +24007,41,9.65,14,0.0 +24007,50,16.25,36,0.0 +24007,3,10,8,0.0 +24007,37,26,17,0.0 +24007,43,46,3,0.0 +24007,45,9.5,32,0.0 +24007,28,45.6,20,0.0 +24007,70,15,20,0.0 +24007,55,24,14,0.0 +24007,52,7,15,0.0 +24007,10,31,9,0.0 +24007,54,7.45,7,0.0 +24007,47,9.5,26,0.0 +24007,76,18,5,0.0 +24007,72,34.8,38,0.0 +24007,14,23.25,47,0.0 +24007,2,19,41,0.0 +24007,12,38,3,0.0 +24007,27,43.9,45,0.0 +24007,13,6,44,0.0 +24007,58,13.25,6,0.0 +24007,26,31.23,31,0.0 +24007,30,25.89,31,0.0 +24007,44,19.45,47,0.0 +24007,56,38,49,0.0 +24007,39,18,21,0.0 +24007,18,62.5,1,0.0 +24007,6,25,36,0.0 +24007,31,12.5,16,0.0 +24007,68,12.5,49,0.0 +24007,24,4.5,49,0.0 +24007,77,13,25,0.0 +24008,74,10,21,0.0 +24008,46,12,37,0.0 +24009,49,20,45,0.0 +24009,28,45.6,21,0.0 +24009,61,28.5,6,0.0 +24009,23,9,28,0.0 +24009,29,123.79,45,0.0 +24009,46,12,49,0.0 +24009,51,53,38,0.0 +24009,55,24,3,0.0 +24009,19,9.2,50,0.0 +24009,45,9.5,37,0.0 +24009,15,15.5,2,0.0 +24009,48,12.75,14,0.0 +24009,13,6,45,0.0 +24009,32,32,6,0.0 +24009,72,34.8,36,0.0 +24009,39,18,11,0.0 +24009,17,39,47,0.0 +24009,5,21.35,31,0.0 +24009,8,40,49,0.0 +24009,7,30,1,0.0 +24009,74,10,37,0.0 +24009,64,33.25,35,0.0 +24009,70,15,18,0.0 +24009,6,25,16,0.0 +24009,53,32.8,1,0.0 +24009,43,46,8,0.0 +24009,50,16.25,43,0.0 +24009,30,25.89,24,0.0 +24009,26,31.23,40,0.0 +24009,40,18.4,20,0.0 +24009,56,38,30,0.0 +24009,65,21.05,1,0.0 +24009,36,19,39,0.0 +24009,38,263.5,17,0.0 +24009,59,55,49,0.0 +24009,73,15,9,0.0 +24009,11,21,25,0.0 +24009,67,14,12,0.0 +24009,41,9.65,46,0.0 +24010,14,23.25,44,0.0 +24010,63,43.9,17,0.0 +24010,73,15,43,0.0 +24010,60,34,5,0.0 +24010,9,97,12,0.0 +24010,42,14,27,0.0 +24010,21,10,12,0.0 +24010,31,12.5,48,0.0 +24010,40,18.4,44,0.0 +24010,77,13,31,0.0 +24010,19,9.2,28,0.0 +24010,27,43.9,23,0.0 +24010,48,12.75,2,0.0 +24010,22,21,11,0.0 +24010,23,9,31,0.0 +24010,57,19.5,22,0.0 +24010,62,49.3,5,0.0 +24010,34,14,31,0.0 +24010,54,7.45,16,0.0 +24010,35,18,35,0.0 +24010,67,14,26,0.0 +24010,1,18,41,0.0 +24010,38,263.5,19,0.0 +24011,14,23.25,46,0.0 +24011,51,53,36,0.0 +24011,65,21.05,5,0.0 +24011,75,7.75,8,0.0 +24011,63,43.9,44,0.0 +24011,41,9.65,9,0.0 +24011,15,15.5,36,0.0 +24011,10,31,28,0.0 +24011,33,2.5,46,0.0 +24011,24,4.5,39,0.0 +24011,19,9.2,4,0.0 +24011,76,18,39,0.0 +24011,34,14,50,0.0 +24011,50,16.25,41,0.0 +24011,16,17.45,8,0.0 +24011,2,19,19,0.0 +24011,54,7.45,19,0.0 +24011,5,21.35,32,0.0 +24011,70,15,20,0.0 +24011,39,18,19,0.0 +24011,20,81,25,0.0 +24011,37,26,36,0.0 +24011,44,19.45,49,0.0 +24011,55,24,23,0.0 +24011,7,30,6,0.0 +24011,77,13,47,0.0 +24011,46,12,43,0.0 +24011,27,43.9,16,0.0 +24011,60,34,42,0.0 +24011,3,10,38,0.0 +24011,49,20,11,0.0 +24011,23,9,10,0.0 +24011,38,263.5,10,0.0 +24011,26,31.23,48,0.0 +24011,18,62.5,24,0.0 +24011,56,38,7,0.0 +24011,22,21,21,0.0 +24011,71,21.5,11,0.0 +24011,36,19,2,0.0 +24011,4,22,21,0.0 +24011,47,9.5,6,0.0 +24011,45,9.5,18,0.0 +24011,31,12.5,24,0.0 +24011,30,25.89,36,0.0 +24011,8,40,27,0.0 +24011,64,33.25,18,0.0 +24011,6,25,34,0.0 +24011,17,39,28,0.0 +24011,73,15,32,0.0 +24011,59,55,41,0.0 +24011,21,10,28,0.0 +24011,72,34.8,40,0.0 +24011,53,32.8,39,0.0 +24011,25,14,38,0.0 +24011,62,49.3,15,0.0 +24011,9,97,13,0.0 +24011,52,7,46,0.0 +24011,32,32,25,0.0 +24011,42,14,9,0.0 +24011,35,18,45,0.0 +24011,29,123.79,35,0.0 +24011,68,12.5,38,0.0 +24011,11,21,3,0.0 +24011,40,18.4,32,0.0 +24011,69,36,40,0.0 +24011,43,46,36,0.0 +24011,48,12.75,38,0.0 +24011,58,13.25,42,0.0 +24012,37,26,11,0.0 +24012,39,18,42,0.0 +24012,58,13.25,41,0.0 +24012,46,12,36,0.0 +24012,25,14,1,0.0 +24012,73,15,20,0.0 +24012,64,33.25,32,0.0 +24012,6,25,38,0.0 +24012,50,16.25,10,0.0 +24012,40,18.4,18,0.0 +24012,29,123.79,14,0.0 +24012,32,32,23,0.0 +24012,31,12.5,29,0.0 +24012,14,23.25,15,0.0 +24012,5,21.35,29,0.0 +24012,66,17,35,0.0 +24012,23,9,44,0.0 +24012,2,19,8,0.0 +24012,75,7.75,32,0.0 +24012,59,55,17,0.0 +24013,73,15,45,0.0 +24013,4,22,2,0.0 +24013,60,34,43,0.0 +24013,69,36,23,0.0 +24013,58,13.25,22,0.0 +24013,28,45.6,28,0.0 +24013,17,39,25,0.0 +24013,75,7.75,17,0.0 +24013,41,9.65,33,0.0 +24013,24,4.5,21,0.0 +24013,1,18,31,0.0 +24013,48,12.75,6,0.0 +24013,54,7.45,21,0.0 +24013,29,123.79,23,0.0 +24013,56,38,39,0.0 +24013,30,25.89,15,0.0 +24013,18,62.5,8,0.0 +24013,50,16.25,7,0.0 +24013,72,34.8,22,0.0 +24013,23,9,23,0.0 +24013,47,9.5,28,0.0 +24013,55,24,5,0.0 +24013,20,81,2,0.0 +24013,5,21.35,45,0.0 +24013,76,18,33,0.0 +24013,32,32,12,0.0 +24013,67,14,48,0.0 +24013,26,31.23,19,0.0 +24013,65,21.05,28,0.0 +24013,70,15,25,0.0 +24013,68,12.5,16,0.0 +24013,22,21,15,0.0 +24013,13,6,32,0.0 +24013,40,18.4,50,0.0 +24013,7,30,18,0.0 +24014,64,33.25,39,0.0 +24014,70,15,49,0.0 +24014,45,9.5,26,0.0 +24014,21,10,47,0.0 +24014,76,18,42,0.0 +24014,8,40,21,0.0 +24014,51,53,29,0.0 +24014,54,7.45,19,0.0 +24014,37,26,48,0.0 +24014,53,32.8,26,0.0 +24014,47,9.5,7,0.0 +24014,75,7.75,18,0.0 +24014,58,13.25,22,0.0 +24014,68,12.5,9,0.0 +24014,13,6,42,0.0 +24014,9,97,18,0.0 +24014,25,14,12,0.0 +24014,60,34,21,0.0 +24014,4,22,17,0.0 +24014,12,38,9,0.0 +24014,55,24,2,0.0 +24014,72,34.8,50,0.0 +24014,19,9.2,4,0.0 +24014,77,13,23,0.0 +24014,61,28.5,39,0.0 +24014,38,263.5,23,0.0 +24014,32,32,27,0.0 +24014,46,12,3,0.0 +24014,36,19,5,0.0 +24014,40,18.4,43,0.0 +24015,3,10,37,0.0 +24015,60,34,17,0.0 +24015,17,39,42,0.0 +24015,72,34.8,7,0.0 +24015,39,18,46,0.0 +24015,14,23.25,14,0.0 +24015,37,26,11,0.0 +24015,51,53,39,0.0 +24015,42,14,48,0.0 +24015,76,18,46,0.0 +24015,27,43.9,23,0.0 +24015,21,10,33,0.0 +24015,63,43.9,16,0.0 +24015,66,17,8,0.0 +24015,74,10,39,0.0 +24015,29,123.79,23,0.0 +24015,4,22,9,0.0 +24015,32,32,2,0.0 +24015,69,36,6,0.0 +24015,46,12,46,0.0 +24015,7,30,30,0.0 +24015,58,13.25,40,0.0 +24015,36,19,22,0.0 +24015,65,21.05,49,0.0 +24015,52,7,14,0.0 +24015,68,12.5,5,0.0 +24015,73,15,22,0.0 +24015,38,263.5,6,0.0 +24015,70,15,39,0.0 +24015,35,18,26,0.0 +24015,5,21.35,49,0.0 +24015,16,17.45,42,0.0 +24015,50,16.25,36,0.0 +24015,22,21,34,0.0 +24015,75,7.75,7,0.0 +24015,61,28.5,28,0.0 +24015,40,18.4,9,0.0 +24015,2,19,11,0.0 +24015,30,25.89,2,0.0 +24015,41,9.65,6,0.0 +24015,20,81,33,0.0 +24015,33,2.5,49,0.0 +24015,62,49.3,9,0.0 +24015,25,14,19,0.0 +24015,54,7.45,33,0.0 +24015,19,9.2,41,0.0 +24015,15,15.5,40,0.0 +24015,48,12.75,23,0.0 +24015,26,31.23,22,0.0 +24015,47,9.5,8,0.0 +24015,44,19.45,3,0.0 +24015,8,40,32,0.0 +24015,11,21,41,0.0 +24015,53,32.8,32,0.0 +24015,34,14,47,0.0 +24015,10,31,15,0.0 +24015,57,19.5,25,0.0 +24015,77,13,20,0.0 +24015,55,24,45,0.0 +24015,13,6,18,0.0 +24015,43,46,47,0.0 +24015,23,9,21,0.0 +24015,67,14,47,0.0 +24015,1,18,37,0.0 +24015,9,97,38,0.0 +24015,28,45.6,36,0.0 +24015,59,55,36,0.0 +24015,64,33.25,50,0.0 +24015,45,9.5,32,0.0 +24015,12,38,4,0.0 +24015,24,4.5,41,0.0 +24016,36,19,10,0.0 +24016,13,6,9,0.0 +24016,73,15,45,0.0 +24016,54,7.45,40,0.0 +24016,35,18,37,0.0 +24016,61,28.5,33,0.0 +24016,72,34.8,26,0.0 +24016,41,9.65,10,0.0 +24016,48,12.75,41,0.0 +24016,70,15,39,0.0 +24016,42,14,25,0.0 +24016,19,9.2,43,0.0 +24017,71,21.5,29,0.0 +24017,46,12,9,0.0 +24017,19,9.2,6,0.0 +24017,53,32.8,8,0.0 +24017,64,33.25,19,0.0 +24017,72,34.8,11,0.0 +24017,18,62.5,22,0.0 +24017,31,12.5,14,0.0 +24017,27,43.9,36,0.0 +24017,42,14,31,0.0 +24017,9,97,49,0.0 +24017,14,23.25,1,0.0 +24017,60,34,14,0.0 +24017,77,13,10,0.0 +24017,17,39,8,0.0 +24017,3,10,37,0.0 +24017,47,9.5,46,0.0 +24017,26,31.23,2,0.0 +24017,32,32,28,0.0 +24017,55,24,31,0.0 +24017,20,81,42,0.0 +24017,23,9,50,0.0 +24017,49,20,38,0.0 +24017,58,13.25,14,0.0 +24017,70,15,4,0.0 +24017,65,21.05,16,0.0 +24017,10,31,14,0.0 +24017,8,40,34,0.0 +24017,25,14,25,0.0 +24017,44,19.45,6,0.0 +24017,5,21.35,23,0.0 +24017,33,2.5,6,0.0 +24017,4,22,2,0.0 +24017,41,9.65,9,0.0 +24017,54,7.45,49,0.0 +24017,57,19.5,33,0.0 +24017,75,7.75,9,0.0 +24017,24,4.5,19,0.0 +24017,74,10,24,0.0 +24017,12,38,48,0.0 +24017,15,15.5,36,0.0 +24017,43,46,13,0.0 +24017,40,18.4,42,0.0 +24017,7,30,50,0.0 +24017,50,16.25,17,0.0 +24017,6,25,30,0.0 +24017,66,17,35,0.0 +24017,29,123.79,31,0.0 +24017,34,14,48,0.0 +24017,13,6,19,0.0 +24017,28,45.6,22,0.0 +24017,48,12.75,36,0.0 +24017,37,26,20,0.0 +24017,52,7,48,0.0 +24017,36,19,45,0.0 +24017,59,55,37,0.0 +24017,22,21,27,0.0 +24017,2,19,17,0.0 +24017,1,18,32,0.0 +24017,51,53,14,0.0 +24017,73,15,15,0.0 +24017,76,18,45,0.0 +24017,63,43.9,10,0.0 +24017,16,17.45,21,0.0 +24017,21,10,23,0.0 +24017,38,263.5,20,0.0 +24017,62,49.3,3,0.0 +24017,30,25.89,32,0.0 +24017,39,18,23,0.0 +24017,61,28.5,23,0.0 +24017,11,21,17,0.0 +24017,68,12.5,19,0.0 +24017,67,14,37,0.0 +24018,25,14,25,0.0 +24018,16,17.45,32,0.0 +24018,21,10,15,0.0 +24018,32,32,31,0.0 +24018,3,10,44,0.0 +24018,75,7.75,27,0.0 +24018,76,18,10,0.0 +24018,62,49.3,1,0.0 +24018,53,32.8,19,0.0 +24018,41,9.65,19,0.0 +24018,74,10,45,0.0 +24018,46,12,40,0.0 +24018,66,17,37,0.0 +24018,30,25.89,16,0.0 +24018,71,21.5,21,0.0 +24018,19,9.2,23,0.0 +24018,51,53,3,0.0 +24018,68,12.5,31,0.0 +24018,14,23.25,50,0.0 +24018,59,55,36,0.0 +24018,72,34.8,19,0.0 +24018,5,21.35,15,0.0 +24018,65,21.05,6,0.0 +24018,64,33.25,34,0.0 +24018,13,6,38,0.0 +24018,77,13,49,0.0 +24018,20,81,33,0.0 +24018,28,45.6,26,0.0 +24018,61,28.5,20,0.0 +24018,15,15.5,12,0.0 +24018,22,21,39,0.0 +24018,34,14,23,0.0 +24018,49,20,31,0.0 +24018,23,9,18,0.0 +24018,70,15,40,0.0 +24018,9,97,46,0.0 +24018,10,31,1,0.0 +24018,73,15,43,0.0 +24018,26,31.23,39,0.0 +24018,58,13.25,23,0.0 +24018,4,22,45,0.0 +24018,27,43.9,21,0.0 +24018,52,7,25,0.0 +24018,40,18.4,24,0.0 +24018,2,19,49,0.0 +24018,50,16.25,19,0.0 +24018,44,19.45,2,0.0 +24018,7,30,50,0.0 +24018,42,14,6,0.0 +24018,31,12.5,17,0.0 +24019,15,15.5,49,0.0 +24019,76,18,10,0.0 +24019,57,19.5,14,0.0 +24019,47,9.5,29,0.0 +24019,60,34,13,0.0 +24019,25,14,9,0.0 +24019,53,32.8,41,0.0 +24019,1,18,38,0.0 +24019,64,33.25,7,0.0 +24019,70,15,40,0.0 +24019,16,17.45,35,0.0 +24019,38,263.5,17,0.0 +24019,33,2.5,18,0.0 +24019,49,20,34,0.0 +24019,77,13,3,0.0 +24019,6,25,42,0.0 +24019,8,40,4,0.0 +24019,29,123.79,16,0.0 +24019,4,22,37,0.0 +24019,10,31,45,0.0 +24019,5,21.35,43,0.0 +24019,18,62.5,17,0.0 +24019,39,18,45,0.0 +24019,17,39,13,0.0 +24019,62,49.3,45,0.0 +24019,58,13.25,12,0.0 +24019,30,25.89,11,0.0 +24019,3,10,4,0.0 +24019,67,14,25,0.0 +24019,27,43.9,25,0.0 +24019,2,19,37,0.0 +24019,22,21,13,0.0 +24019,36,19,34,0.0 +24019,73,15,3,0.0 +24019,51,53,27,0.0 +24019,65,21.05,1,0.0 +24019,34,14,38,0.0 +24019,71,21.5,8,0.0 +24019,50,16.25,29,0.0 +24019,24,4.5,21,0.0 +24019,40,18.4,46,0.0 +24019,11,21,6,0.0 +24019,46,12,26,0.0 +24019,74,10,23,0.0 +24019,23,9,6,0.0 +24019,52,7,31,0.0 +24019,26,31.23,45,0.0 +24019,12,38,39,0.0 +24019,31,12.5,36,0.0 +24019,13,6,16,0.0 +24019,66,17,17,0.0 +24019,44,19.45,3,0.0 +24019,63,43.9,6,0.0 +24019,61,28.5,42,0.0 +24019,37,26,13,0.0 +24019,54,7.45,5,0.0 +24019,35,18,49,0.0 +24019,21,10,15,0.0 +24019,43,46,7,0.0 +24019,28,45.6,36,0.0 +24019,59,55,14,0.0 +24019,45,9.5,1,0.0 +24019,56,38,46,0.0 +24019,7,30,41,0.0 +24019,48,12.75,27,0.0 +24019,69,36,49,0.0 +24019,41,9.65,11,0.0 +24019,20,81,3,0.0 +24019,14,23.25,34,0.0 +24020,17,39,34,0.0 +24020,54,7.45,10,0.0 +24020,5,21.35,50,0.0 +24020,39,18,48,0.0 +24020,72,34.8,39,0.0 +24020,8,40,35,0.0 +24020,50,16.25,23,0.0 +24020,65,21.05,21,0.0 +24020,3,10,7,0.0 +24020,18,62.5,44,0.0 +24020,12,38,22,0.0 +24020,49,20,47,0.0 +24020,14,23.25,41,0.0 +24020,48,12.75,35,0.0 +24020,4,22,4,0.0 +24020,69,36,42,0.0 +24020,1,18,30,0.0 +24020,59,55,5,0.0 +24020,52,7,5,0.0 +24020,70,15,35,0.0 +24020,34,14,27,0.0 +24020,58,13.25,16,0.0 +24020,51,53,46,0.0 +24020,30,25.89,40,0.0 +24020,42,14,8,0.0 +24020,45,9.5,36,0.0 +24020,55,24,21,0.0 +24020,33,2.5,17,0.0 +24020,6,25,21,0.0 +24020,27,43.9,38,0.0 +24020,26,31.23,43,0.0 +24020,46,12,4,0.0 +24020,67,14,21,0.0 +24020,36,19,40,0.0 +24020,7,30,18,0.0 +24020,16,17.45,24,0.0 +24020,25,14,42,0.0 +24020,22,21,19,0.0 +24020,47,9.5,47,0.0 +24020,20,81,25,0.0 +24020,56,38,8,0.0 +24020,57,19.5,49,0.0 +24020,10,31,9,0.0 +24020,15,15.5,14,0.0 +24020,43,46,6,0.0 +24020,2,19,50,0.0 +24020,75,7.75,29,0.0 +24020,21,10,2,0.0 +24020,40,18.4,3,0.0 +24020,37,26,39,0.0 +24020,73,15,20,0.0 +24020,31,12.5,24,0.0 +24020,61,28.5,11,0.0 +24020,19,9.2,9,0.0 +24020,66,17,39,0.0 +24020,13,6,13,0.0 +24020,53,32.8,12,0.0 +24021,35,18,40,0.0 +24021,4,22,16,0.0 +24021,74,10,43,0.0 +24021,19,9.2,13,0.0 +24021,7,30,11,0.0 +24021,58,13.25,13,0.0 +24021,49,20,32,0.0 +24021,31,12.5,17,0.0 +24021,52,7,15,0.0 +24021,45,9.5,26,0.0 +24021,30,25.89,27,0.0 +24021,37,26,34,0.0 +24021,34,14,25,0.0 +24021,73,15,50,0.0 +24021,66,17,39,0.0 +24021,43,46,34,0.0 +24021,2,19,41,0.0 +24021,70,15,31,0.0 +24021,68,12.5,46,0.0 +24021,63,43.9,49,0.0 +24021,22,21,20,0.0 +24021,55,24,17,0.0 +24021,54,7.45,48,0.0 +24021,17,39,5,0.0 +24021,76,18,30,0.0 +24021,18,62.5,32,0.0 +24021,3,10,13,0.0 +24021,67,14,11,0.0 +24021,11,21,48,0.0 +24021,1,18,34,0.0 +24021,13,6,11,0.0 +24021,14,23.25,31,0.0 +24021,5,21.35,11,0.0 +24021,65,21.05,36,0.0 +24021,8,40,33,0.0 +24021,10,31,22,0.0 +24021,77,13,19,0.0 +24021,16,17.45,19,0.0 +24021,41,9.65,28,0.0 +24021,36,19,27,0.0 +24021,21,10,19,0.0 +24021,57,19.5,5,0.0 +24021,9,97,1,0.0 +24021,6,25,14,0.0 +24021,24,4.5,36,0.0 +24021,60,34,19,0.0 +24021,12,38,20,0.0 +24021,15,15.5,48,0.0 +24021,50,16.25,36,0.0 +24021,75,7.75,15,0.0 +24021,51,53,41,0.0 +24021,42,14,32,0.0 +24021,20,81,1,0.0 +24021,23,9,43,0.0 +24021,44,19.45,29,0.0 +24021,46,12,2,0.0 +24021,53,32.8,35,0.0 +24021,32,32,47,0.0 +24021,40,18.4,45,0.0 +24021,71,21.5,24,0.0 +24021,62,49.3,18,0.0 +24021,33,2.5,27,0.0 +24021,38,263.5,31,0.0 +24021,47,9.5,37,0.0 +24021,61,28.5,35,0.0 +24021,59,55,21,0.0 +24021,64,33.25,4,0.0 +24021,29,123.79,24,0.0 +24021,72,34.8,41,0.0 +24021,27,43.9,41,0.0 +24021,69,36,14,0.0 +24021,56,38,19,0.0 +24021,25,14,37,0.0 +24021,48,12.75,7,0.0 +24021,26,31.23,15,0.0 +24021,28,45.6,16,0.0 +24022,31,12.5,17,0.0 +24022,60,34,12,0.0 +24022,66,17,39,0.0 +24022,42,14,21,0.0 +24022,37,26,30,0.0 +24022,14,23.25,10,0.0 +24022,52,7,8,0.0 +24022,70,15,33,0.0 +24022,41,9.65,27,0.0 +24022,68,12.5,42,0.0 +24022,53,32.8,31,0.0 +24022,15,15.5,37,0.0 +24022,54,7.45,18,0.0 +24022,13,6,21,0.0 +24022,19,9.2,38,0.0 +24022,18,62.5,29,0.0 +24022,57,19.5,11,0.0 +24022,30,25.89,43,0.0 +24022,3,10,2,0.0 +24023,61,28.5,14,0.0 +24023,50,16.25,6,0.0 +24023,7,30,4,0.0 +24023,37,26,14,0.0 +24023,3,10,16,0.0 +24023,69,36,27,0.0 +24023,54,7.45,10,0.0 +24023,52,7,6,0.0 +24023,32,32,1,0.0 +24023,27,43.9,47,0.0 +24023,46,12,32,0.0 +24023,47,9.5,28,0.0 +24023,45,9.5,34,0.0 +24023,63,43.9,36,0.0 +24023,72,34.8,12,0.0 +24023,17,39,42,0.0 +24023,42,14,23,0.0 +24023,36,19,5,0.0 +24023,8,40,16,0.0 +24023,76,18,36,0.0 +24023,10,31,48,0.0 +24023,64,33.25,28,0.0 +24023,62,49.3,36,0.0 +24023,1,18,40,0.0 +24023,33,2.5,26,0.0 +24023,34,14,49,0.0 +24023,77,13,25,0.0 +24023,23,9,23,0.0 +24023,29,123.79,46,0.0 +24023,24,4.5,6,0.0 +24023,25,14,44,0.0 +24023,38,263.5,4,0.0 +24023,49,20,5,0.0 +24023,21,10,1,0.0 +24023,66,17,50,0.0 +24023,13,6,12,0.0 +24023,18,62.5,9,0.0 +24023,67,14,6,0.0 +24023,51,53,19,0.0 +24023,9,97,50,0.0 +24023,22,21,32,0.0 +24023,11,21,50,0.0 +24023,26,31.23,23,0.0 +24023,59,55,28,0.0 +24023,2,19,10,0.0 +24023,73,15,34,0.0 +24023,70,15,47,0.0 +24023,68,12.5,26,0.0 +24023,56,38,11,0.0 +24023,57,19.5,44,0.0 +24023,19,9.2,6,0.0 +24023,43,46,39,0.0 +24023,58,13.25,42,0.0 +24023,41,9.65,31,0.0 +24023,28,45.6,15,0.0 +24023,5,21.35,33,0.0 +24023,16,17.45,40,0.0 +24023,4,22,44,0.0 +24023,15,15.5,21,0.0 +24023,60,34,13,0.0 +24023,12,38,34,0.0 +24023,20,81,12,0.0 +24023,74,10,21,0.0 +24023,75,7.75,16,0.0 +24023,40,18.4,23,0.0 +24023,31,12.5,14,0.0 +24024,74,10,44,0.0 +24024,47,9.5,24,0.0 +24024,58,13.25,8,0.0 +24024,42,14,40,0.0 +24024,62,49.3,15,0.0 +24024,4,22,4,0.0 +24024,6,25,15,0.0 +24024,43,46,14,0.0 +24024,14,23.25,49,0.0 +24024,19,9.2,41,0.0 +24024,41,9.65,28,0.0 +24024,24,4.5,47,0.0 +24024,7,30,6,0.0 +24024,55,24,39,0.0 +24024,15,15.5,4,0.0 +24024,9,97,43,0.0 +24024,23,9,19,0.0 +24024,71,21.5,6,0.0 +24024,34,14,50,0.0 +24024,21,10,22,0.0 +24024,66,17,33,0.0 +24024,22,21,10,0.0 +24024,45,9.5,2,0.0 +24024,49,20,35,0.0 +24024,11,21,23,0.0 +24024,37,26,15,0.0 +24024,75,7.75,8,0.0 +24024,13,6,28,0.0 +24024,38,263.5,47,0.0 +24024,56,38,21,0.0 +24024,16,17.45,2,0.0 +24024,76,18,32,0.0 +24024,36,19,49,0.0 +24024,77,13,11,0.0 +24024,60,34,16,0.0 +24024,10,31,28,0.0 +24025,15,15.5,13,0.0 +24025,50,16.25,43,0.0 +24025,10,31,39,0.0 +24025,29,123.79,41,0.0 +24025,18,62.5,20,0.0 +24026,35,18,26,0.0 +24026,11,21,12,0.0 +24026,28,45.6,15,0.0 +24026,72,34.8,39,0.0 +24026,27,43.9,28,0.0 +24026,67,14,25,0.0 +24026,68,12.5,39,0.0 +24026,38,263.5,24,0.0 +24026,24,4.5,15,0.0 +24026,43,46,3,0.0 +24026,8,40,40,0.0 +24026,53,32.8,6,0.0 +24026,13,6,39,0.0 +24026,45,9.5,32,0.0 +24026,14,23.25,38,0.0 +24026,21,10,33,0.0 +24026,7,30,16,0.0 +24026,22,21,5,0.0 +24026,42,14,8,0.0 +24026,25,14,12,0.0 +24026,47,9.5,40,0.0 +24026,44,19.45,39,0.0 +24026,74,10,7,0.0 +24026,5,21.35,3,0.0 +24026,41,9.65,11,0.0 +24026,66,17,43,0.0 +24026,17,39,9,0.0 +24026,34,14,43,0.0 +24026,10,31,21,0.0 +24027,50,16.25,7,0.0 +24027,59,55,18,0.0 +24027,31,12.5,18,0.0 +24027,33,2.5,43,0.0 +24027,60,34,13,0.0 +24027,72,34.8,3,0.0 +24027,1,18,11,0.0 +24027,15,15.5,39,0.0 +24027,4,22,25,0.0 +24027,44,19.45,42,0.0 +24027,7,30,5,0.0 +24027,55,24,23,0.0 +24027,21,10,6,0.0 +24027,63,43.9,28,0.0 +24027,62,49.3,13,0.0 +24027,40,18.4,23,0.0 +24027,43,46,40,0.0 +24027,25,14,6,0.0 +24027,10,31,10,0.0 +24027,41,9.65,32,0.0 +24027,53,32.8,32,0.0 +24027,3,10,45,0.0 +24027,18,62.5,38,0.0 +24027,11,21,48,0.0 +24027,46,12,18,0.0 +24027,9,97,48,0.0 +24027,74,10,20,0.0 +24027,52,7,6,0.0 +24027,69,36,7,0.0 +24027,28,45.6,29,0.0 +24027,23,9,27,0.0 +24027,42,14,7,0.0 +24027,68,12.5,27,0.0 +24027,38,263.5,22,0.0 +24027,67,14,27,0.0 +24027,76,18,12,0.0 +24027,51,53,24,0.0 +24027,56,38,10,0.0 +24027,77,13,24,0.0 +24028,59,55,1,0.0 +24028,60,34,45,0.0 +24028,37,26,12,0.0 +24028,54,7.45,46,0.0 +24028,31,12.5,6,0.0 +24028,10,31,45,0.0 +24028,34,14,25,0.0 +24028,73,15,12,0.0 +24028,14,23.25,33,0.0 +24028,77,13,8,0.0 +24028,52,7,34,0.0 +24028,47,9.5,14,0.0 +24028,55,24,32,0.0 +24028,9,97,29,0.0 +24028,3,10,16,0.0 +24028,1,18,28,0.0 +24028,20,81,11,0.0 +24028,42,14,31,0.0 +24028,57,19.5,27,0.0 +24028,22,21,23,0.0 +24028,68,12.5,6,0.0 +24028,29,123.79,18,0.0 +24028,21,10,26,0.0 +24028,65,21.05,10,0.0 +24028,5,21.35,27,0.0 +24028,35,18,28,0.0 +24028,49,20,34,0.0 +24028,44,19.45,49,0.0 +24028,32,32,32,0.0 +24028,50,16.25,11,0.0 +24028,53,32.8,43,0.0 +24028,38,263.5,20,0.0 +24028,7,30,18,0.0 +24028,11,21,22,0.0 +24028,36,19,50,0.0 +24028,75,7.75,45,0.0 +24028,25,14,43,0.0 +24028,2,19,38,0.0 +24028,48,12.75,21,0.0 +24028,16,17.45,40,0.0 +24028,72,34.8,25,0.0 +24028,45,9.5,23,0.0 +24028,33,2.5,43,0.0 +24029,2,19,46,0.0 +24029,29,123.79,15,0.0 +24029,60,34,42,0.0 +24029,56,38,31,0.0 +24029,23,9,47,0.0 +24029,50,16.25,13,0.0 +24029,72,34.8,15,0.0 +24029,43,46,6,0.0 +24029,48,12.75,25,0.0 +24029,5,21.35,46,0.0 +24029,46,12,45,0.0 +24029,10,31,8,0.0 +24029,66,17,10,0.0 +24029,49,20,23,0.0 +24029,35,18,10,0.0 +24029,54,7.45,17,0.0 +24029,65,21.05,9,0.0 +24029,41,9.65,28,0.0 +24029,12,38,34,0.0 +24029,69,36,35,0.0 +24029,7,30,19,0.0 +24029,3,10,2,0.0 +24029,74,10,29,0.0 +24029,42,14,27,0.0 +24029,77,13,14,0.0 +24029,75,7.75,28,0.0 +24029,37,26,12,0.0 +24029,22,21,37,0.0 +24029,73,15,38,0.0 +24029,6,25,8,0.0 +24029,64,33.25,31,0.0 +24029,27,43.9,12,0.0 +24029,57,19.5,14,0.0 +24029,62,49.3,4,0.0 +24029,14,23.25,3,0.0 +24029,26,31.23,46,0.0 +24029,4,22,22,0.0 +24029,68,12.5,50,0.0 +24029,70,15,6,0.0 +24029,51,53,1,0.0 +24029,13,6,5,0.0 +24029,1,18,7,0.0 +24029,20,81,38,0.0 +24029,63,43.9,37,0.0 +24029,71,21.5,3,0.0 +24029,47,9.5,29,0.0 +24029,11,21,46,0.0 +24029,52,7,37,0.0 +24029,59,55,30,0.0 +24029,18,62.5,2,0.0 +24029,15,15.5,44,0.0 +24029,58,13.25,35,0.0 +24029,25,14,49,0.0 +24029,38,263.5,26,0.0 +24029,31,12.5,7,0.0 +24029,8,40,50,0.0 +24029,39,18,34,0.0 +24029,61,28.5,47,0.0 +24029,55,24,22,0.0 +24029,30,25.89,27,0.0 +24029,32,32,50,0.0 +24029,9,97,38,0.0 +24029,24,4.5,34,0.0 +24029,17,39,47,0.0 +24029,33,2.5,1,0.0 +24029,44,19.45,41,0.0 +24029,28,45.6,21,0.0 +24029,45,9.5,32,0.0 +24029,21,10,37,0.0 +24029,16,17.45,44,0.0 +24030,6,25,48,0.0 +24030,66,17,45,0.0 +24030,27,43.9,47,0.0 +24030,12,38,9,0.0 +24030,35,18,8,0.0 +24030,39,18,27,0.0 +24030,71,21.5,4,0.0 +24030,33,2.5,15,0.0 +24030,40,18.4,10,0.0 +24030,38,263.5,2,0.0 +24030,7,30,18,0.0 +24030,62,49.3,28,0.0 +24030,68,12.5,38,0.0 +24030,50,16.25,43,0.0 +24030,64,33.25,20,0.0 +24030,9,97,23,0.0 +24030,22,21,12,0.0 +24030,55,24,47,0.0 +24030,52,7,28,0.0 +24030,37,26,29,0.0 +24030,75,7.75,49,0.0 +24030,31,12.5,12,0.0 +24030,24,4.5,29,0.0 +24030,65,21.05,10,0.0 +24030,25,14,38,0.0 +24030,2,19,27,0.0 +24030,59,55,37,0.0 +24030,30,25.89,38,0.0 +24030,34,14,16,0.0 +24030,51,53,10,0.0 +24030,44,19.45,20,0.0 +24030,69,36,32,0.0 +24030,19,9.2,22,0.0 +24030,57,19.5,2,0.0 +24030,74,10,4,0.0 +24030,48,12.75,15,0.0 +24030,63,43.9,18,0.0 +24030,42,14,40,0.0 +24030,70,15,15,0.0 +24030,77,13,23,0.0 +24030,54,7.45,41,0.0 +24030,29,123.79,39,0.0 +24030,45,9.5,28,0.0 +24030,67,14,35,0.0 +24030,32,32,45,0.0 +24030,3,10,21,0.0 +24030,61,28.5,17,0.0 +24030,60,34,18,0.0 +24030,5,21.35,32,0.0 +24030,28,45.6,19,0.0 +24030,16,17.45,15,0.0 +24030,18,62.5,28,0.0 +24030,73,15,39,0.0 +24030,43,46,47,0.0 +24030,46,12,29,0.0 +24030,56,38,35,0.0 +24030,8,40,31,0.0 +24030,4,22,32,0.0 +24030,72,34.8,28,0.0 +24030,20,81,30,0.0 +24030,41,9.65,24,0.0 +24030,15,15.5,17,0.0 +24030,14,23.25,36,0.0 +24030,26,31.23,30,0.0 +24030,21,10,46,0.0 +24030,23,9,16,0.0 +24030,17,39,25,0.0 +24030,47,9.5,49,0.0 +24030,10,31,5,0.0 +24030,11,21,47,0.0 +24030,36,19,47,0.0 +24030,49,20,20,0.0 +24031,61,28.5,14,0.0 +24031,6,25,4,0.0 +24031,23,9,44,0.0 +24031,59,55,21,0.0 +24031,25,14,6,0.0 +24031,1,18,34,0.0 +24031,65,21.05,6,0.0 +24031,43,46,35,0.0 +24031,57,19.5,3,0.0 +24031,44,19.45,19,0.0 +24031,16,17.45,1,0.0 +24031,45,9.5,44,0.0 +24031,2,19,11,0.0 +24031,50,16.25,13,0.0 +24031,9,97,23,0.0 +24031,62,49.3,33,0.0 +24031,27,43.9,50,0.0 +24031,64,33.25,10,0.0 +24031,22,21,43,0.0 +24031,72,34.8,8,0.0 +24031,32,32,15,0.0 +24031,10,31,46,0.0 +24031,26,31.23,34,0.0 +24031,24,4.5,3,0.0 +24031,66,17,43,0.0 +24031,7,30,4,0.0 +24031,5,21.35,16,0.0 +24031,39,18,9,0.0 +24031,53,32.8,6,0.0 +24031,48,12.75,3,0.0 +24031,15,15.5,22,0.0 +24031,18,62.5,23,0.0 +24031,20,81,47,0.0 +24031,54,7.45,42,0.0 +24031,34,14,40,0.0 +24031,35,18,30,0.0 +24031,4,22,12,0.0 +24031,40,18.4,45,0.0 +24031,28,45.6,45,0.0 +24031,77,13,30,0.0 +24031,8,40,10,0.0 +24031,30,25.89,30,0.0 +24031,60,34,29,0.0 +24031,13,6,10,0.0 +24031,12,38,48,0.0 +24031,52,7,22,0.0 +24031,14,23.25,16,0.0 +24031,63,43.9,19,0.0 +24031,70,15,21,0.0 +24031,36,19,25,0.0 +24031,55,24,19,0.0 +24031,71,21.5,13,0.0 +24031,76,18,13,0.0 +24031,51,53,9,0.0 +24031,42,14,18,0.0 +24031,21,10,10,0.0 +24031,38,263.5,33,0.0 +24031,37,26,32,0.0 +24031,33,2.5,36,0.0 +24031,58,13.25,47,0.0 +24031,31,12.5,32,0.0 +24031,74,10,25,0.0 +24031,69,36,16,0.0 +24031,17,39,8,0.0 +24031,41,9.65,32,0.0 +24031,29,123.79,30,0.0 +24032,34,14,37,0.0 +24032,46,12,22,0.0 +24032,67,14,8,0.0 +24032,39,18,39,0.0 +24032,27,43.9,12,0.0 +24032,43,46,32,0.0 +24032,57,19.5,2,0.0 +24032,77,13,25,0.0 +24032,48,12.75,21,0.0 +24032,75,7.75,24,0.0 +24032,8,40,5,0.0 +24032,28,45.6,9,0.0 +24032,19,9.2,31,0.0 +24032,35,18,42,0.0 +24032,38,263.5,30,0.0 +24032,30,25.89,45,0.0 +24032,49,20,1,0.0 +24032,22,21,50,0.0 +24032,74,10,27,0.0 +24032,64,33.25,50,0.0 +24032,6,25,26,0.0 +24032,40,18.4,1,0.0 +24032,36,19,35,0.0 +24032,62,49.3,29,0.0 +24032,65,21.05,2,0.0 +24032,23,9,27,0.0 +24032,56,38,37,0.0 +24032,25,14,31,0.0 +24032,4,22,20,0.0 +24032,9,97,21,0.0 +24032,72,34.8,15,0.0 +24032,52,7,26,0.0 +24032,2,19,35,0.0 +24032,16,17.45,45,0.0 +24033,63,43.9,37,0.0 +24033,40,18.4,24,0.0 +24033,3,10,29,0.0 +24033,59,55,26,0.0 +24033,72,34.8,33,0.0 +24033,16,17.45,5,0.0 +24033,12,38,38,0.0 +24033,54,7.45,49,0.0 +24033,29,123.79,19,0.0 +24033,49,20,27,0.0 +24033,28,45.6,15,0.0 +24033,58,13.25,4,0.0 +24033,42,14,11,0.0 +24033,60,34,34,0.0 +24033,38,263.5,19,0.0 +24033,48,12.75,40,0.0 +24033,21,10,45,0.0 +24033,33,2.5,37,0.0 +24033,77,13,14,0.0 +24033,62,49.3,28,0.0 +24033,14,23.25,44,0.0 +24033,39,18,43,0.0 +24034,32,32,20,0.0 +24034,49,20,3,0.0 +24034,36,19,44,0.0 +24034,52,7,45,0.0 +24034,8,40,15,0.0 +24034,45,9.5,15,0.0 +24034,25,14,14,0.0 +24034,33,2.5,39,0.0 +24034,74,10,12,0.0 +24034,66,17,22,0.0 +24034,20,81,21,0.0 +24034,2,19,12,0.0 +24034,65,21.05,1,0.0 +24034,12,38,11,0.0 +24034,72,34.8,46,0.0 +24034,54,7.45,11,0.0 +24034,16,17.45,49,0.0 +24034,11,21,6,0.0 +24034,62,49.3,10,0.0 +24034,24,4.5,28,0.0 +24034,1,18,39,0.0 +24034,67,14,7,0.0 +24034,28,45.6,37,0.0 +24034,4,22,36,0.0 +24034,14,23.25,49,0.0 +24034,46,12,24,0.0 +24034,60,34,15,0.0 +24034,10,31,12,0.0 +24034,27,43.9,19,0.0 +24034,35,18,37,0.0 +24034,48,12.75,19,0.0 +24034,51,53,26,0.0 +24034,43,46,31,0.0 +24034,19,9.2,1,0.0 +24034,61,28.5,44,0.0 +24034,18,62.5,25,0.0 +24034,55,24,39,0.0 +24034,53,32.8,10,0.0 +24034,17,39,24,0.0 +24034,5,21.35,12,0.0 +24034,3,10,5,0.0 +24034,69,36,34,0.0 +24034,26,31.23,14,0.0 +24034,59,55,8,0.0 +24034,50,16.25,33,0.0 +24034,44,19.45,8,0.0 +24034,7,30,27,0.0 +24034,58,13.25,14,0.0 +24034,40,18.4,4,0.0 +24034,73,15,43,0.0 +24034,71,21.5,49,0.0 +24034,34,14,34,0.0 +24034,37,26,49,0.0 +24034,21,10,10,0.0 +24034,6,25,31,0.0 +24034,63,43.9,20,0.0 +24034,30,25.89,41,0.0 +24034,75,7.75,11,0.0 +24034,47,9.5,29,0.0 +24034,70,15,17,0.0 +24034,15,15.5,4,0.0 +24034,13,6,22,0.0 +24035,64,33.25,46,0.0 +24035,18,62.5,44,0.0 +24035,23,9,30,0.0 +24035,32,32,34,0.0 +24035,61,28.5,38,0.0 +24035,1,18,25,0.0 +24035,65,21.05,24,0.0 +24035,40,18.4,27,0.0 +24035,63,43.9,14,0.0 +24035,35,18,34,0.0 +24035,76,18,49,0.0 +24035,48,12.75,22,0.0 +24035,66,17,45,0.0 +24035,45,9.5,40,0.0 +24035,2,19,24,0.0 +24035,36,19,50,0.0 +24035,14,23.25,47,0.0 +24035,56,38,34,0.0 +24035,49,20,23,0.0 +24035,71,21.5,10,0.0 +24035,28,45.6,31,0.0 +24035,5,21.35,18,0.0 +24035,11,21,6,0.0 +24035,38,263.5,50,0.0 +24035,21,10,28,0.0 +24035,25,14,10,0.0 +24035,16,17.45,11,0.0 +24035,15,15.5,22,0.0 +24035,62,49.3,10,0.0 +24035,42,14,48,0.0 +24035,20,81,35,0.0 +24035,73,15,48,0.0 +24035,12,38,29,0.0 +24035,37,26,34,0.0 +24035,3,10,31,0.0 +24035,58,13.25,2,0.0 +24035,17,39,27,0.0 +24035,74,10,3,0.0 +24035,34,14,35,0.0 +24035,59,55,37,0.0 +24035,13,6,10,0.0 +24035,47,9.5,17,0.0 +24035,72,34.8,38,0.0 +24035,30,25.89,29,0.0 +24035,43,46,35,0.0 +24035,10,31,19,0.0 +24035,46,12,6,0.0 +24035,68,12.5,27,0.0 +24035,19,9.2,10,0.0 +24036,21,10,2,0.0 +24036,62,49.3,11,0.0 +24036,30,25.89,18,0.0 +24036,15,15.5,43,0.0 +24036,54,7.45,25,0.0 +24036,59,55,21,0.0 +24036,7,30,15,0.0 +24036,65,21.05,31,0.0 +24036,29,123.79,49,0.0 +24036,9,97,42,0.0 +24036,70,15,3,0.0 +24036,68,12.5,35,0.0 +24036,42,14,5,0.0 +24036,11,21,6,0.0 +24036,22,21,8,0.0 +24036,43,46,22,0.0 +24036,41,9.65,12,0.0 +24036,10,31,30,0.0 +24036,31,12.5,12,0.0 +24036,2,19,17,0.0 +24036,6,25,48,0.0 +24036,60,34,2,0.0 +24036,56,38,17,0.0 +24036,75,7.75,48,0.0 +24036,76,18,46,0.0 +24036,26,31.23,14,0.0 +24036,49,20,5,0.0 +24036,63,43.9,11,0.0 +24036,18,62.5,28,0.0 +24036,53,32.8,27,0.0 +24036,24,4.5,40,0.0 +24036,51,53,12,0.0 +24036,71,21.5,46,0.0 +24036,55,24,7,0.0 +24036,19,9.2,25,0.0 +24036,47,9.5,3,0.0 +24036,12,38,19,0.0 +24036,38,263.5,20,0.0 +24036,28,45.6,19,0.0 +24036,64,33.25,2,0.0 +24036,8,40,2,0.0 +24036,4,22,49,0.0 +24036,1,18,26,0.0 +24036,66,17,5,0.0 +24036,57,19.5,44,0.0 +24036,3,10,38,0.0 +24036,69,36,30,0.0 +24036,74,10,10,0.0 +24036,61,28.5,38,0.0 +24036,39,18,29,0.0 +24036,52,7,14,0.0 +24036,23,9,29,0.0 +24036,17,39,3,0.0 +24036,13,6,13,0.0 +24036,77,13,17,0.0 +24036,20,81,2,0.0 +24036,32,32,26,0.0 +24037,56,38,50,0.0 +24037,12,38,45,0.0 +24037,64,33.25,23,0.0 +24037,67,14,1,0.0 +24037,6,25,23,0.0 +24037,34,14,21,0.0 +24037,25,14,33,0.0 +24037,54,7.45,43,0.0 +24037,10,31,20,0.0 +24037,73,15,26,0.0 +24037,4,22,36,0.0 +24037,55,24,17,0.0 +24037,45,9.5,9,0.0 +24037,18,62.5,4,0.0 +24037,33,2.5,50,0.0 +24037,46,12,21,0.0 +24037,61,28.5,23,0.0 +24037,38,263.5,22,0.0 +24037,19,9.2,19,0.0 +24037,66,17,35,0.0 +24037,22,21,14,0.0 +24037,48,12.75,22,0.0 +24037,63,43.9,48,0.0 +24037,8,40,18,0.0 +24037,53,32.8,30,0.0 +24037,65,21.05,25,0.0 +24037,40,18.4,46,0.0 +24037,76,18,38,0.0 +24037,30,25.89,15,0.0 +24037,59,55,17,0.0 +24037,27,43.9,13,0.0 +24037,17,39,32,0.0 +24037,32,32,45,0.0 +24037,16,17.45,43,0.0 +24037,15,15.5,10,0.0 +24037,36,19,38,0.0 +24037,3,10,45,0.0 +24037,31,12.5,1,0.0 +24037,24,4.5,8,0.0 +24037,72,34.8,5,0.0 +24037,74,10,46,0.0 +24037,14,23.25,43,0.0 +24037,60,34,25,0.0 +24037,47,9.5,39,0.0 +24037,71,21.5,10,0.0 +24037,37,26,37,0.0 +24037,2,19,11,0.0 +24037,20,81,30,0.0 +24037,50,16.25,46,0.0 +24037,29,123.79,24,0.0 +24037,43,46,21,0.0 +24037,41,9.65,41,0.0 +24037,28,45.6,44,0.0 +24037,69,36,44,0.0 +24037,75,7.75,20,0.0 +24037,68,12.5,16,0.0 +24038,21,10,16,0.0 +24038,43,46,3,0.0 +24038,37,26,28,0.0 +24038,49,20,25,0.0 +24038,53,32.8,34,0.0 +24038,57,19.5,41,0.0 +24038,8,40,46,0.0 +24038,70,15,46,0.0 +24038,36,19,48,0.0 +24038,33,2.5,31,0.0 +24038,28,45.6,36,0.0 +24038,59,55,19,0.0 +24038,29,123.79,11,0.0 +24038,18,62.5,46,0.0 +24038,2,19,49,0.0 +24038,5,21.35,39,0.0 +24038,26,31.23,17,0.0 +24038,67,14,30,0.0 +24038,14,23.25,25,0.0 +24038,25,14,8,0.0 +24038,56,38,15,0.0 +24038,71,21.5,8,0.0 +24038,58,13.25,20,0.0 +24038,7,30,24,0.0 +24038,10,31,48,0.0 +24038,48,12.75,50,0.0 +24038,24,4.5,22,0.0 +24038,51,53,8,0.0 +24038,42,14,28,0.0 +24038,16,17.45,43,0.0 +24038,54,7.45,37,0.0 +24038,35,18,6,0.0 +24038,60,34,7,0.0 +24038,63,43.9,15,0.0 +24038,22,21,1,0.0 +24038,75,7.75,29,0.0 +24038,74,10,6,0.0 +24038,61,28.5,1,0.0 +24038,1,18,40,0.0 +24038,41,9.65,34,0.0 +24038,4,22,45,0.0 +24038,66,17,24,0.0 +24038,13,6,38,0.0 +24038,30,25.89,2,0.0 +24038,69,36,14,0.0 +24038,46,12,30,0.0 +24038,62,49.3,48,0.0 +24038,72,34.8,30,0.0 +24038,6,25,8,0.0 +24038,64,33.25,21,0.0 +24038,27,43.9,16,0.0 +24038,45,9.5,37,0.0 +24038,65,21.05,12,0.0 +24038,32,32,20,0.0 +24038,76,18,19,0.0 +24038,17,39,3,0.0 +24038,31,12.5,17,0.0 +24038,55,24,44,0.0 +24038,20,81,15,0.0 +24038,38,263.5,44,0.0 +24038,39,18,39,0.0 +24038,9,97,48,0.0 +24038,40,18.4,40,0.0 +24038,44,19.45,29,0.0 +24038,47,9.5,3,0.0 +24038,68,12.5,39,0.0 +24038,52,7,22,0.0 +24039,42,14,26,0.0 +24039,36,19,45,0.0 +24039,65,21.05,10,0.0 +24039,67,14,39,0.0 +24039,3,10,20,0.0 +24039,20,81,23,0.0 +24039,53,32.8,13,0.0 +24039,27,43.9,30,0.0 +24039,33,2.5,11,0.0 +24039,71,21.5,46,0.0 +24039,11,21,13,0.0 +24039,63,43.9,37,0.0 +24039,52,7,33,0.0 +24040,47,9.5,20,0.0 +24040,63,43.9,45,0.0 +24040,51,53,35,0.0 +24040,4,22,19,0.0 +24040,1,18,1,0.0 +24040,30,25.89,1,0.0 +24040,55,24,27,0.0 +24040,13,6,48,0.0 +24040,73,15,26,0.0 +24040,74,10,5,0.0 +24040,19,9.2,48,0.0 +24040,67,14,21,0.0 +24040,7,30,13,0.0 +24040,36,19,10,0.0 +24040,72,34.8,5,0.0 +24040,26,31.23,3,0.0 +24040,6,25,12,0.0 +24040,70,15,29,0.0 +24040,8,40,2,0.0 +24040,37,26,39,0.0 +24040,56,38,28,0.0 +24040,62,49.3,14,0.0 +24040,3,10,21,0.0 +24040,66,17,3,0.0 +24040,65,21.05,15,0.0 +24040,59,55,17,0.0 +24040,16,17.45,49,0.0 +24040,40,18.4,46,0.0 +24040,31,12.5,12,0.0 +24040,11,21,19,0.0 +24040,39,18,3,0.0 +24040,25,14,7,0.0 +24040,12,38,41,0.0 +24040,27,43.9,49,0.0 +24040,33,2.5,9,0.0 +24040,28,45.6,49,0.0 +24040,64,33.25,40,0.0 +24040,48,12.75,37,0.0 +24040,2,19,48,0.0 +24040,22,21,33,0.0 +24040,5,21.35,2,0.0 +24040,58,13.25,6,0.0 +24040,42,14,8,0.0 +24041,29,123.79,10,0.0 +24041,30,25.89,16,0.0 +24041,14,23.25,47,0.0 +24041,26,31.23,19,0.0 +24041,51,53,16,0.0 +24041,25,14,25,0.0 +24041,67,14,3,0.0 +24041,41,9.65,8,0.0 +24041,55,24,45,0.0 +24041,40,18.4,26,0.0 +24041,13,6,24,0.0 +24041,34,14,33,0.0 +24041,72,34.8,14,0.0 +24041,69,36,41,0.0 +24041,50,16.25,47,0.0 +24041,74,10,32,0.0 +24041,42,14,20,0.0 +24041,19,9.2,1,0.0 +24041,4,22,31,0.0 +24041,44,19.45,11,0.0 +24041,63,43.9,9,0.0 +24041,1,18,37,0.0 +24041,57,19.5,19,0.0 +24041,75,7.75,18,0.0 +24041,58,13.25,9,0.0 +24041,77,13,32,0.0 +24041,12,38,38,0.0 +24041,64,33.25,16,0.0 +24041,53,32.8,48,0.0 +24041,71,21.5,27,0.0 +24041,61,28.5,4,0.0 +24041,60,34,21,0.0 +24041,49,20,44,0.0 +24041,7,30,32,0.0 +24041,36,19,16,0.0 +24042,1,18,17,0.0 +24042,62,49.3,13,0.0 +24042,33,2.5,42,0.0 +24043,65,21.05,40,0.0 +24043,76,18,22,0.0 +24043,28,45.6,47,0.0 +24043,51,53,2,0.0 +24043,36,19,17,0.0 +24043,45,9.5,7,0.0 +24043,71,21.5,18,0.0 +24043,18,62.5,28,0.0 +24043,4,22,26,0.0 +24043,69,36,26,0.0 +24043,57,19.5,40,0.0 +24043,38,263.5,22,0.0 +24043,3,10,19,0.0 +24043,7,30,28,0.0 +24043,56,38,48,0.0 +24043,61,28.5,4,0.0 +24043,9,97,3,0.0 +24043,20,81,23,0.0 +24043,41,9.65,15,0.0 +24043,67,14,36,0.0 +24043,70,15,29,0.0 +24043,34,14,11,0.0 +24043,13,6,14,0.0 +24043,52,7,38,0.0 +24043,25,14,29,0.0 +24043,10,31,41,0.0 +24043,35,18,30,0.0 +24043,66,17,21,0.0 +24043,59,55,29,0.0 +24043,15,15.5,45,0.0 +24043,26,31.23,19,0.0 +24043,17,39,13,0.0 +24043,16,17.45,43,0.0 +24043,62,49.3,22,0.0 +24043,5,21.35,50,0.0 +24043,75,7.75,16,0.0 +24043,39,18,12,0.0 +24043,64,33.25,9,0.0 +24043,24,4.5,42,0.0 +24043,40,18.4,29,0.0 +24043,29,123.79,4,0.0 +24043,22,21,11,0.0 +24043,47,9.5,27,0.0 +24043,44,19.45,3,0.0 +24044,26,31.23,13,0.0 +24044,75,7.75,23,0.0 +24044,10,31,14,0.0 +24044,61,28.5,6,0.0 +24044,38,263.5,23,0.0 +24044,48,12.75,33,0.0 +24044,41,9.65,43,0.0 +24044,56,38,18,0.0 +24044,33,2.5,17,0.0 +24044,29,123.79,46,0.0 +24044,30,25.89,48,0.0 +24044,64,33.25,49,0.0 +24044,77,13,15,0.0 +24044,23,9,18,0.0 +24044,11,21,19,0.0 +24044,12,38,33,0.0 +24044,43,46,2,0.0 +24044,71,21.5,25,0.0 +24044,50,16.25,25,0.0 +24044,68,12.5,32,0.0 +24044,36,19,24,0.0 +24044,3,10,6,0.0 +24044,52,7,46,0.0 +24044,27,43.9,26,0.0 +24044,72,34.8,17,0.0 +24044,9,97,34,0.0 +24044,51,53,27,0.0 +24044,67,14,19,0.0 +24045,34,14,15,0.0 +24045,59,55,32,0.0 +24045,70,15,27,0.0 +24045,61,28.5,49,0.0 +24045,17,39,14,0.0 +24045,15,15.5,16,0.0 +24045,42,14,27,0.0 +24045,5,21.35,38,0.0 +24045,33,2.5,50,0.0 +24045,51,53,34,0.0 +24046,34,14,2,0.0 +24046,24,4.5,2,0.0 +24046,57,19.5,20,0.0 +24046,72,34.8,5,0.0 +24046,6,25,50,0.0 +24046,52,7,10,0.0 +24046,62,49.3,32,0.0 +24046,77,13,38,0.0 +24046,29,123.79,34,0.0 +24046,48,12.75,8,0.0 +24046,66,17,28,0.0 +24046,25,14,44,0.0 +24046,27,43.9,3,0.0 +24046,8,40,20,0.0 +24046,36,19,6,0.0 +24046,60,34,35,0.0 +24046,43,46,24,0.0 +24046,51,53,25,0.0 +24046,76,18,46,0.0 +24046,31,12.5,21,0.0 +24046,9,97,13,0.0 +24046,1,18,17,0.0 +24046,55,24,34,0.0 +24046,47,9.5,39,0.0 +24046,65,21.05,12,0.0 +24046,26,31.23,17,0.0 +24046,11,21,50,0.0 +24046,13,6,44,0.0 +24046,18,62.5,11,0.0 +24046,73,15,4,0.0 +24046,68,12.5,35,0.0 +24046,40,18.4,5,0.0 +24046,28,45.6,28,0.0 +24046,33,2.5,43,0.0 +24046,2,19,6,0.0 +24046,64,33.25,34,0.0 +24046,50,16.25,39,0.0 +24046,4,22,13,0.0 +24046,30,25.89,29,0.0 +24046,12,38,23,0.0 +24046,41,9.65,37,0.0 +24046,17,39,27,0.0 +24046,15,15.5,42,0.0 +24046,39,18,21,0.0 +24047,56,38,15,0.0 +24047,19,9.2,38,0.0 +24047,41,9.65,25,0.0 +24047,17,39,38,0.0 +24047,64,33.25,13,0.0 +24047,1,18,1,0.0 +24047,25,14,35,0.0 +24047,52,7,11,0.0 +24047,50,16.25,40,0.0 +24047,30,25.89,48,0.0 +24047,46,12,50,0.0 +24047,20,81,4,0.0 +24047,9,97,47,0.0 +24047,71,21.5,32,0.0 +24047,13,6,43,0.0 +24047,76,18,39,0.0 +24047,10,31,39,0.0 +24047,62,49.3,37,0.0 +24047,23,9,23,0.0 +24047,2,19,26,0.0 +24047,65,21.05,25,0.0 +24047,8,40,31,0.0 +24047,34,14,8,0.0 +24047,45,9.5,25,0.0 +24047,61,28.5,31,0.0 +24047,12,38,3,0.0 +24047,18,62.5,26,0.0 +24047,22,21,40,0.0 +24047,55,24,20,0.0 +24047,4,22,26,0.0 +24047,32,32,12,0.0 +24047,42,14,30,0.0 +24047,72,34.8,32,0.0 +24047,7,30,24,0.0 +24047,67,14,30,0.0 +24047,47,9.5,9,0.0 +24047,14,23.25,12,0.0 +24047,70,15,21,0.0 +24047,68,12.5,1,0.0 +24047,5,21.35,27,0.0 +24047,40,18.4,17,0.0 +24047,44,19.45,31,0.0 +24047,54,7.45,43,0.0 +24047,66,17,49,0.0 +24047,36,19,7,0.0 +24047,75,7.75,30,0.0 +24047,11,21,49,0.0 +24047,73,15,49,0.0 +24047,63,43.9,22,0.0 +24047,24,4.5,4,0.0 +24047,15,15.5,13,0.0 +24047,38,263.5,11,0.0 +24047,51,53,50,0.0 +24047,60,34,19,0.0 +24047,69,36,32,0.0 +24047,3,10,22,0.0 +24047,77,13,9,0.0 +24047,39,18,39,0.0 +24047,21,10,35,0.0 +24047,48,12.75,50,0.0 +24047,31,12.5,44,0.0 +24047,74,10,4,0.0 +24047,59,55,19,0.0 +24047,35,18,29,0.0 +24047,28,45.6,29,0.0 +24047,58,13.25,2,0.0 +24047,29,123.79,45,0.0 +24048,18,62.5,38,0.0 +24048,6,25,44,0.0 +24048,38,263.5,38,0.0 +24048,14,23.25,19,0.0 +24048,58,13.25,23,0.0 +24048,52,7,31,0.0 +24048,9,97,3,0.0 +24048,39,18,16,0.0 +24048,42,14,36,0.0 +24048,29,123.79,2,0.0 +24048,27,43.9,7,0.0 +24048,73,15,19,0.0 +24048,23,9,18,0.0 +24048,31,12.5,22,0.0 +24048,20,81,30,0.0 +24048,41,9.65,11,0.0 +24048,72,34.8,3,0.0 +24048,4,22,5,0.0 +24048,60,34,15,0.0 +24048,77,13,21,0.0 +24048,75,7.75,39,0.0 +24048,64,33.25,11,0.0 +24048,7,30,24,0.0 +24048,76,18,39,0.0 +24048,40,18.4,49,0.0 +24048,10,31,36,0.0 +24048,47,9.5,13,0.0 +24048,45,9.5,12,0.0 +24048,65,21.05,17,0.0 +24048,62,49.3,36,0.0 +24048,67,14,44,0.0 +24048,28,45.6,10,0.0 +24048,43,46,37,0.0 +24048,25,14,41,0.0 +24048,70,15,22,0.0 +24048,32,32,6,0.0 +24048,71,21.5,50,0.0 +24048,24,4.5,27,0.0 +24048,66,17,7,0.0 +24049,6,25,8,0.0 +24049,39,18,31,0.0 +24049,55,24,13,0.0 +24049,9,97,11,0.0 +24049,14,23.25,31,0.0 +24049,63,43.9,20,0.0 +24049,2,19,23,0.0 +24049,15,15.5,22,0.0 +24049,16,17.45,40,0.0 +24049,43,46,3,0.0 +24049,70,15,36,0.0 +24049,26,31.23,3,0.0 +24049,58,13.25,40,0.0 +24049,68,12.5,37,0.0 +24049,28,45.6,32,0.0 +24049,54,7.45,17,0.0 +24049,56,38,30,0.0 +24049,53,32.8,34,0.0 +24049,69,36,19,0.0 +24049,74,10,32,0.0 +24049,5,21.35,49,0.0 +24049,25,14,19,0.0 +24049,75,7.75,15,0.0 +24049,73,15,31,0.0 +24049,10,31,39,0.0 +24049,59,55,1,0.0 +24049,49,20,21,0.0 +24049,65,21.05,21,0.0 +24049,34,14,21,0.0 +24049,8,40,41,0.0 +24049,32,32,48,0.0 +24049,13,6,7,0.0 +24049,3,10,6,0.0 +24049,23,9,19,0.0 +24049,46,12,49,0.0 +24049,77,13,25,0.0 +24049,51,53,11,0.0 +24049,7,30,42,0.0 +24049,4,22,4,0.0 +24049,42,14,22,0.0 +24049,47,9.5,48,0.0 +24049,12,38,48,0.0 +24049,27,43.9,37,0.0 +24049,61,28.5,20,0.0 +24049,52,7,9,0.0 +24049,76,18,31,0.0 +24049,44,19.45,34,0.0 +24049,19,9.2,6,0.0 +24049,11,21,50,0.0 +24049,37,26,41,0.0 +24049,67,14,38,0.0 +24049,1,18,19,0.0 +24049,41,9.65,18,0.0 +24049,40,18.4,5,0.0 +24049,36,19,16,0.0 +24049,62,49.3,30,0.0 +24049,30,25.89,33,0.0 +24049,45,9.5,8,0.0 +24049,66,17,44,0.0 +24049,64,33.25,31,0.0 +24049,29,123.79,33,0.0 +24049,20,81,27,0.0 +24049,33,2.5,32,0.0 +24049,50,16.25,37,0.0 +24049,17,39,18,0.0 +24049,31,12.5,32,0.0 +24049,48,12.75,41,0.0 +24049,57,19.5,41,0.0 +24049,60,34,26,0.0 +24050,75,7.75,30,0.0 +24050,72,34.8,34,0.0 +24050,39,18,40,0.0 +24050,24,4.5,28,0.0 +24050,49,20,39,0.0 +24050,11,21,32,0.0 +24050,19,9.2,28,0.0 +24050,34,14,39,0.0 +24050,68,12.5,34,0.0 +24050,30,25.89,2,0.0 +24050,13,6,19,0.0 +24050,1,18,28,0.0 +24050,56,38,34,0.0 +24050,53,32.8,21,0.0 +24050,61,28.5,13,0.0 +24050,64,33.25,31,0.0 +24050,2,19,11,0.0 +24050,31,12.5,15,0.0 +24050,20,81,47,0.0 +24050,6,25,19,0.0 +24050,52,7,19,0.0 +24050,5,21.35,47,0.0 +24050,8,40,46,0.0 +24050,76,18,41,0.0 +24050,40,18.4,29,0.0 +24051,15,15.5,17,0.0 +24051,47,9.5,42,0.0 +24051,30,25.89,15,0.0 +24051,34,14,47,0.0 +24051,14,23.25,24,0.0 +24051,76,18,25,0.0 +24051,67,14,23,0.0 +24051,25,14,26,0.0 +24051,22,21,19,0.0 +24051,17,39,4,0.0 +24051,56,38,46,0.0 +24051,38,263.5,47,0.0 +24051,41,9.65,6,0.0 +24051,4,22,11,0.0 +24051,60,34,26,0.0 +24051,45,9.5,29,0.0 +24051,39,18,25,0.0 +24051,37,26,12,0.0 +24051,8,40,25,0.0 +24051,40,18.4,24,0.0 +24051,33,2.5,32,0.0 +24051,35,18,24,0.0 +24051,70,15,6,0.0 +24051,77,13,14,0.0 +24051,62,49.3,40,0.0 +24051,10,31,40,0.0 +24051,7,30,9,0.0 +24051,53,32.8,32,0.0 +24051,73,15,6,0.0 +24051,13,6,8,0.0 +24051,42,14,23,0.0 +24051,27,43.9,34,0.0 +24051,51,53,7,0.0 +24051,55,24,21,0.0 +24051,46,12,3,0.0 +24051,63,43.9,27,0.0 +24051,69,36,36,0.0 +24051,58,13.25,40,0.0 +24051,20,81,23,0.0 +24051,28,45.6,26,0.0 +24051,11,21,17,0.0 +24051,48,12.75,27,0.0 +24051,5,21.35,8,0.0 +24051,29,123.79,7,0.0 +24051,74,10,31,0.0 +24051,65,21.05,20,0.0 +24051,43,46,30,0.0 +24051,23,9,48,0.0 +24051,12,38,24,0.0 +24051,61,28.5,9,0.0 +24051,16,17.45,22,0.0 +24051,3,10,28,0.0 +24051,9,97,44,0.0 +24051,49,20,49,0.0 +24051,57,19.5,6,0.0 +24051,75,7.75,47,0.0 +24051,1,18,45,0.0 +24052,22,21,43,0.0 +24052,66,17,35,0.0 +24052,71,21.5,5,0.0 +24052,60,34,27,0.0 +24052,72,34.8,4,0.0 +24052,24,4.5,36,0.0 +24052,62,49.3,48,0.0 +24052,39,18,1,0.0 +24052,77,13,17,0.0 +24052,49,20,1,0.0 +24052,29,123.79,28,0.0 +24052,47,9.5,34,0.0 +24052,69,36,36,0.0 +24052,20,81,26,0.0 +24052,37,26,21,0.0 +24052,68,12.5,33,0.0 +24052,32,32,7,0.0 +24052,12,38,12,0.0 +24052,70,15,13,0.0 +24052,73,15,50,0.0 +24052,65,21.05,47,0.0 +24052,55,24,35,0.0 +24052,14,23.25,37,0.0 +24052,19,9.2,8,0.0 +24052,75,7.75,26,0.0 +24052,1,18,47,0.0 +24052,43,46,34,0.0 +24052,27,43.9,48,0.0 +24052,13,6,8,0.0 +24052,64,33.25,4,0.0 +24052,52,7,21,0.0 +24052,5,21.35,32,0.0 +24052,48,12.75,40,0.0 +24052,42,14,40,0.0 +24052,40,18.4,47,0.0 +24052,9,97,44,0.0 +24052,41,9.65,33,0.0 +24052,34,14,32,0.0 +24052,18,62.5,37,0.0 +24052,63,43.9,13,0.0 +24052,67,14,41,0.0 +24052,21,10,10,0.0 +24052,57,19.5,18,0.0 +24052,53,32.8,35,0.0 +24052,61,28.5,46,0.0 +24052,56,38,5,0.0 +24052,54,7.45,11,0.0 +24052,3,10,41,0.0 +24052,11,21,33,0.0 +24052,46,12,31,0.0 +24052,38,263.5,20,0.0 +24052,30,25.89,29,0.0 +24052,35,18,14,0.0 +24052,58,13.25,21,0.0 +24052,2,19,11,0.0 +24052,25,14,38,0.0 +24052,15,15.5,19,0.0 +24052,36,19,27,0.0 +24052,8,40,9,0.0 +24052,7,30,24,0.0 +24052,50,16.25,5,0.0 +24052,45,9.5,2,0.0 +24052,23,9,39,0.0 +24052,44,19.45,26,0.0 +24052,10,31,42,0.0 +24052,26,31.23,19,0.0 +24052,4,22,17,0.0 +24052,76,18,13,0.0 +24052,74,10,33,0.0 +24052,17,39,30,0.0 +24052,33,2.5,22,0.0 +24052,59,55,43,0.0 +24052,28,45.6,4,0.0 +24052,6,25,22,0.0 +24052,16,17.45,35,0.0 +24052,51,53,46,0.0 +24053,50,16.25,35,0.0 +24053,63,43.9,41,0.0 +24053,15,15.5,35,0.0 +24053,10,31,6,0.0 +24053,69,36,8,0.0 +24053,45,9.5,49,0.0 +24053,51,53,42,0.0 +24053,38,263.5,29,0.0 +24053,19,9.2,4,0.0 +24053,1,18,46,0.0 +24053,49,20,23,0.0 +24053,61,28.5,9,0.0 +24053,66,17,10,0.0 +24053,71,21.5,41,0.0 +24053,52,7,21,0.0 +24053,58,13.25,4,0.0 +24053,12,38,15,0.0 +24053,2,19,8,0.0 +24053,74,10,10,0.0 +24053,43,46,14,0.0 +24053,29,123.79,26,0.0 +24053,8,40,49,0.0 +24053,77,13,40,0.0 +24053,47,9.5,20,0.0 +24053,40,18.4,50,0.0 +24053,16,17.45,24,0.0 +24053,3,10,45,0.0 +24053,76,18,8,0.0 +24053,4,22,22,0.0 +24053,31,12.5,39,0.0 +24053,67,14,8,0.0 +24053,41,9.65,31,0.0 +24053,64,33.25,14,0.0 +24053,62,49.3,28,0.0 +24053,54,7.45,6,0.0 +24053,23,9,25,0.0 +24053,70,15,11,0.0 +24053,25,14,32,0.0 +24053,28,45.6,16,0.0 +24054,29,123.79,34,0.0 +24054,60,34,6,0.0 +24054,51,53,18,0.0 +24054,32,32,31,0.0 +24054,11,21,4,0.0 +24054,67,14,40,0.0 +24054,47,9.5,6,0.0 +24054,25,14,50,0.0 +24054,26,31.23,24,0.0 +24054,44,19.45,38,0.0 +24054,5,21.35,24,0.0 +24055,1,18,10,0.0 +24055,39,18,20,0.0 +24055,43,46,5,0.0 +24055,73,15,6,0.0 +24055,27,43.9,50,0.0 +24055,14,23.25,49,0.0 +24055,65,21.05,7,0.0 +24055,57,19.5,10,0.0 +24055,41,9.65,8,0.0 +24055,2,19,46,0.0 +24055,21,10,37,0.0 +24055,28,45.6,41,0.0 +24055,74,10,13,0.0 +24055,7,30,44,0.0 +24055,26,31.23,6,0.0 +24055,23,9,12,0.0 +24055,22,21,43,0.0 +24055,29,123.79,42,0.0 +24055,36,19,20,0.0 +24055,9,97,34,0.0 +24055,51,53,16,0.0 +24055,42,14,43,0.0 +24055,40,18.4,34,0.0 +24055,62,49.3,41,0.0 +24055,48,12.75,23,0.0 +24055,59,55,31,0.0 +24055,17,39,48,0.0 +24055,66,17,43,0.0 +24055,20,81,7,0.0 +24055,35,18,17,0.0 +24055,32,32,12,0.0 +24055,8,40,8,0.0 +24056,51,53,44,0.0 +24056,20,81,40,0.0 +24056,56,38,20,0.0 +24056,52,7,32,0.0 +24056,54,7.45,19,0.0 +24056,34,14,17,0.0 +24056,55,24,19,0.0 +24056,49,20,47,0.0 +24056,22,21,20,0.0 +24056,6,25,31,0.0 +24056,1,18,21,0.0 +24056,41,9.65,47,0.0 +24056,74,10,28,0.0 +24056,59,55,23,0.0 +24056,32,32,11,0.0 +24056,36,19,49,0.0 +24056,18,62.5,46,0.0 +24056,14,23.25,25,0.0 +24056,26,31.23,9,0.0 +24056,17,39,10,0.0 +24056,43,46,25,0.0 +24056,38,263.5,38,0.0 +24056,24,4.5,15,0.0 +24056,66,17,9,0.0 +24056,13,6,8,0.0 +24056,60,34,6,0.0 +24056,57,19.5,5,0.0 +24056,62,49.3,29,0.0 +24056,69,36,3,0.0 +24056,37,26,46,0.0 +24056,70,15,10,0.0 +24056,3,10,16,0.0 +24056,2,19,12,0.0 +24056,48,12.75,46,0.0 +24056,4,22,8,0.0 +24056,9,97,19,0.0 +24056,73,15,24,0.0 +24056,65,21.05,41,0.0 +24056,30,25.89,34,0.0 +24056,71,21.5,6,0.0 +24056,63,43.9,43,0.0 +24056,77,13,45,0.0 +24056,47,9.5,41,0.0 +24056,58,13.25,24,0.0 +24056,33,2.5,5,0.0 +24056,46,12,9,0.0 +24056,23,9,19,0.0 +24056,16,17.45,9,0.0 +24056,15,15.5,23,0.0 +24056,53,32.8,22,0.0 +24056,7,30,19,0.0 +24056,39,18,15,0.0 +24056,76,18,18,0.0 +24056,8,40,47,0.0 +24056,5,21.35,16,0.0 +24056,45,9.5,18,0.0 +24056,40,18.4,30,0.0 +24056,61,28.5,45,0.0 +24056,28,45.6,36,0.0 +24056,21,10,16,0.0 +24056,44,19.45,38,0.0 +24056,68,12.5,5,0.0 +24056,75,7.75,35,0.0 +24056,42,14,19,0.0 +24056,35,18,3,0.0 +24056,50,16.25,33,0.0 +24056,19,9.2,45,0.0 +24056,12,38,31,0.0 +24056,27,43.9,46,0.0 +24056,10,31,31,0.0 +24056,67,14,16,0.0 +24057,30,25.89,8,0.0 +24057,39,18,2,0.0 +24057,22,21,13,0.0 +24057,34,14,32,0.0 +24057,38,263.5,42,0.0 +24057,55,24,11,0.0 +24057,21,10,33,0.0 +24057,35,18,37,0.0 +24057,67,14,8,0.0 +24057,25,14,38,0.0 +24057,61,28.5,36,0.0 +24057,71,21.5,34,0.0 +24057,45,9.5,30,0.0 +24057,77,13,39,0.0 +24057,7,30,17,0.0 +24057,32,32,37,0.0 +24057,33,2.5,26,0.0 +24057,59,55,5,0.0 +24057,2,19,49,0.0 +24057,75,7.75,29,0.0 +24057,64,33.25,12,0.0 +24057,50,16.25,15,0.0 +24057,57,19.5,21,0.0 +24057,11,21,12,0.0 +24057,19,9.2,40,0.0 +24057,27,43.9,13,0.0 +24057,1,18,8,0.0 +24057,69,36,48,0.0 +24057,68,12.5,3,0.0 +24057,43,46,47,0.0 +24057,37,26,20,0.0 +24057,16,17.45,40,0.0 +24057,18,62.5,47,0.0 +24057,53,32.8,43,0.0 +24057,44,19.45,19,0.0 +24057,4,22,48,0.0 +24057,6,25,5,0.0 +24057,56,38,7,0.0 +24057,54,7.45,18,0.0 +24057,47,9.5,19,0.0 +24058,46,12,11,0.0 +24058,4,22,45,0.0 +24058,65,21.05,32,0.0 +24058,40,18.4,50,0.0 +24058,57,19.5,23,0.0 +24058,61,28.5,32,0.0 +24058,32,32,32,0.0 +24058,66,17,8,0.0 +24058,21,10,50,0.0 +24058,27,43.9,35,0.0 +24058,58,13.25,48,0.0 +24058,52,7,15,0.0 +24058,76,18,40,0.0 +24058,35,18,13,0.0 +24058,29,123.79,42,0.0 +24058,7,30,11,0.0 +24058,2,19,40,0.0 +24058,38,263.5,44,0.0 +24058,67,14,41,0.0 +24058,15,15.5,43,0.0 +24058,8,40,29,0.0 +24058,39,18,2,0.0 +24058,6,25,30,0.0 +24058,13,6,8,0.0 +24058,42,14,40,0.0 +24058,37,26,17,0.0 +24058,72,34.8,43,0.0 +24058,56,38,3,0.0 +24058,14,23.25,13,0.0 +24058,51,53,41,0.0 +24058,10,31,20,0.0 +24058,11,21,38,0.0 +24058,1,18,15,0.0 +24058,77,13,36,0.0 +24058,22,21,26,0.0 +24058,9,97,24,0.0 +24058,53,32.8,23,0.0 +24058,49,20,2,0.0 +24058,28,45.6,23,0.0 +24058,41,9.65,29,0.0 +24058,26,31.23,16,0.0 +24058,12,38,28,0.0 +24058,70,15,13,0.0 +24058,75,7.75,50,0.0 +24058,24,4.5,45,0.0 +24058,45,9.5,47,0.0 +24058,16,17.45,30,0.0 +24058,73,15,31,0.0 +24058,59,55,5,0.0 +24058,62,49.3,40,0.0 +24058,18,62.5,46,0.0 +24058,74,10,44,0.0 +24058,64,33.25,13,0.0 +24058,50,16.25,45,0.0 +24058,33,2.5,16,0.0 +24058,63,43.9,48,0.0 +24058,68,12.5,47,0.0 +24058,5,21.35,37,0.0 +24058,54,7.45,33,0.0 +24058,44,19.45,8,0.0 +24058,3,10,40,0.0 +24058,55,24,25,0.0 +24058,23,9,22,0.0 +24058,43,46,43,0.0 +24058,69,36,37,0.0 +24058,19,9.2,11,0.0 +24058,20,81,16,0.0 +24058,60,34,10,0.0 +24058,34,14,30,0.0 +24058,48,12.75,12,0.0 +24058,17,39,25,0.0 +24058,30,25.89,15,0.0 +24058,71,21.5,50,0.0 +24059,32,32,15,0.0 +24059,50,16.25,12,0.0 +24059,46,12,9,0.0 +24059,22,21,32,0.0 +24059,44,19.45,18,0.0 +24059,74,10,18,0.0 +24059,62,49.3,48,0.0 +24059,63,43.9,15,0.0 +24059,11,21,47,0.0 +24059,61,28.5,8,0.0 +24059,16,17.45,24,0.0 +24059,12,38,25,0.0 +24059,65,21.05,42,0.0 +24059,14,23.25,3,0.0 +24059,5,21.35,22,0.0 +24059,43,46,41,0.0 +24059,36,19,29,0.0 +24059,34,14,48,0.0 +24059,68,12.5,11,0.0 +24059,76,18,5,0.0 +24059,18,62.5,17,0.0 +24059,7,30,38,0.0 +24059,77,13,23,0.0 +24059,40,18.4,10,0.0 +24059,41,9.65,42,0.0 +24059,48,12.75,22,0.0 +24059,54,7.45,34,0.0 +24059,10,31,47,0.0 +24059,20,81,24,0.0 +24059,39,18,24,0.0 +24059,25,14,38,0.0 +24059,6,25,18,0.0 +24059,15,15.5,22,0.0 +24059,38,263.5,6,0.0 +24059,58,13.25,11,0.0 +24059,30,25.89,25,0.0 +24059,52,7,7,0.0 +24059,8,40,9,0.0 +24059,60,34,49,0.0 +24059,53,32.8,30,0.0 +24059,64,33.25,20,0.0 +24059,70,15,3,0.0 +24059,23,9,34,0.0 +24059,13,6,48,0.0 +24059,37,26,9,0.0 +24059,47,9.5,4,0.0 +24059,31,12.5,24,0.0 +24059,45,9.5,5,0.0 +24060,27,43.9,3,0.0 +24060,64,33.25,3,0.0 +24060,1,18,11,0.0 +24060,56,38,17,0.0 +24060,58,13.25,38,0.0 +24060,5,21.35,13,0.0 +24060,10,31,35,0.0 +24060,76,18,17,0.0 +24060,35,18,12,0.0 +24060,70,15,29,0.0 +24060,50,16.25,37,0.0 +24060,11,21,39,0.0 +24060,33,2.5,12,0.0 +24060,53,32.8,46,0.0 +24060,55,24,48,0.0 +24060,45,9.5,44,0.0 +24060,60,34,27,0.0 +24060,68,12.5,14,0.0 +24060,24,4.5,15,0.0 +24060,41,9.65,22,0.0 +24060,28,45.6,36,0.0 +24060,59,55,21,0.0 +24060,32,32,32,0.0 +24060,2,19,1,0.0 +24060,57,19.5,41,0.0 +24060,18,62.5,49,0.0 +24060,40,18.4,29,0.0 +24060,48,12.75,3,0.0 +24060,77,13,47,0.0 +24060,4,22,27,0.0 +24060,69,36,15,0.0 +24060,46,12,21,0.0 +24060,73,15,50,0.0 +24060,9,97,18,0.0 +24060,6,25,17,0.0 +24060,62,49.3,33,0.0 +24060,22,21,41,0.0 +24060,75,7.75,35,0.0 +24060,74,10,24,0.0 +24060,42,14,44,0.0 +24060,14,23.25,36,0.0 +24060,66,17,5,0.0 +24060,31,12.5,24,0.0 +24060,43,46,18,0.0 +24060,51,53,48,0.0 +24060,7,30,11,0.0 +24060,15,15.5,30,0.0 +24060,44,19.45,17,0.0 +24060,72,34.8,7,0.0 +24060,38,263.5,45,0.0 +24060,21,10,50,0.0 +24060,71,21.5,44,0.0 +24060,3,10,43,0.0 +24060,39,18,2,0.0 +24060,8,40,27,0.0 +24060,13,6,39,0.0 +24060,65,21.05,29,0.0 +24060,29,123.79,50,0.0 +24060,61,28.5,5,0.0 +24060,54,7.45,48,0.0 +24060,52,7,31,0.0 +24060,47,9.5,3,0.0 +24060,63,43.9,46,0.0 +24060,25,14,49,0.0 +24060,17,39,21,0.0 +24060,23,9,25,0.0 +24060,67,14,16,0.0 +24060,16,17.45,26,0.0 +24060,26,31.23,25,0.0 +24061,29,123.79,48,0.0 +24061,56,38,34,0.0 +24061,21,10,41,0.0 +24061,64,33.25,12,0.0 +24061,76,18,11,0.0 +24061,16,17.45,44,0.0 +24061,15,15.5,3,0.0 +24061,63,43.9,50,0.0 +24061,73,15,31,0.0 +24061,41,9.65,4,0.0 +24061,11,21,7,0.0 +24061,23,9,43,0.0 +24061,48,12.75,14,0.0 +24061,77,13,16,0.0 +24061,10,31,31,0.0 +24061,62,49.3,24,0.0 +24061,74,10,10,0.0 +24061,26,31.23,5,0.0 +24061,36,19,48,0.0 +24061,65,21.05,4,0.0 +24061,38,263.5,6,0.0 +24061,58,13.25,25,0.0 +24061,61,28.5,24,0.0 +24061,32,32,34,0.0 +24061,17,39,39,0.0 +24061,9,97,9,0.0 +24061,40,18.4,7,0.0 +24061,45,9.5,5,0.0 +24061,43,46,35,0.0 +24061,59,55,24,0.0 +24061,39,18,37,0.0 +24061,57,19.5,43,0.0 +24061,44,19.45,36,0.0 +24061,33,2.5,29,0.0 +24061,67,14,21,0.0 +24061,27,43.9,25,0.0 +24061,70,15,49,0.0 +24061,49,20,19,0.0 +24061,7,30,50,0.0 +24061,34,14,28,0.0 +24061,18,62.5,30,0.0 +24061,13,6,36,0.0 +24061,5,21.35,49,0.0 +24061,25,14,35,0.0 +24061,68,12.5,11,0.0 +24061,72,34.8,34,0.0 +24061,31,12.5,32,0.0 +24061,54,7.45,13,0.0 +24061,51,53,35,0.0 +24061,35,18,49,0.0 +24061,71,21.5,36,0.0 +24061,28,45.6,15,0.0 +24061,42,14,39,0.0 +24061,8,40,28,0.0 +24061,4,22,28,0.0 +24061,14,23.25,43,0.0 +24061,19,9.2,49,0.0 +24061,69,36,33,0.0 +24061,47,9.5,13,0.0 +24061,24,4.5,34,0.0 +24061,66,17,37,0.0 +24061,2,19,43,0.0 +24061,6,25,40,0.0 +24061,37,26,30,0.0 +24061,60,34,18,0.0 +24061,12,38,1,0.0 +24061,52,7,38,0.0 +24061,22,21,37,0.0 +24061,55,24,32,0.0 +24061,1,18,7,0.0 +24061,75,7.75,40,0.0 +24061,53,32.8,46,0.0 +24061,46,12,18,0.0 +24062,20,81,12,0.0 +24062,14,23.25,23,0.0 +24062,5,21.35,20,0.0 +24062,66,17,1,0.0 +24062,4,22,5,0.0 +24062,68,12.5,28,0.0 +24062,18,62.5,14,0.0 +24062,65,21.05,31,0.0 +24062,67,14,12,0.0 +24062,1,18,30,0.0 +24062,60,34,50,0.0 +24062,15,15.5,38,0.0 +24063,44,19.45,5,0.0 +24063,19,9.2,33,0.0 +24063,70,15,35,0.0 +24063,28,45.6,15,0.0 +24063,53,32.8,13,0.0 +24063,33,2.5,47,0.0 +24063,77,13,49,0.0 +24063,26,31.23,47,0.0 +24063,41,9.65,49,0.0 +24063,65,21.05,13,0.0 +24063,11,21,39,0.0 +24063,60,34,24,0.0 +24063,10,31,2,0.0 +24063,56,38,23,0.0 +24063,75,7.75,10,0.0 +24063,58,13.25,12,0.0 +24063,34,14,32,0.0 +24063,50,16.25,10,0.0 +24063,66,17,32,0.0 +24063,22,21,37,0.0 +24063,38,263.5,19,0.0 +24063,12,38,32,0.0 +24063,2,19,25,0.0 +24063,76,18,29,0.0 +24063,20,81,8,0.0 +24063,18,62.5,16,0.0 +24063,62,49.3,21,0.0 +24063,54,7.45,13,0.0 +24063,24,4.5,5,0.0 +24063,16,17.45,18,0.0 +24063,3,10,4,0.0 +24063,48,12.75,36,0.0 +24063,1,18,19,0.0 +24064,7,30,28,0.0 +24064,39,18,49,0.0 +24065,23,9,34,0.0 +24065,58,13.25,17,0.0 +24065,50,16.25,32,0.0 +24066,34,14,23,0.0 +24066,42,14,48,0.0 +24066,68,12.5,9,0.0 +24066,6,25,36,0.0 +24066,41,9.65,32,0.0 +24066,59,55,9,0.0 +24066,2,19,33,0.0 +24066,77,13,10,0.0 +24066,17,39,29,0.0 +24066,49,20,34,0.0 +24066,11,21,35,0.0 +24066,43,46,39,0.0 +24066,16,17.45,41,0.0 +24066,9,97,1,0.0 +24066,64,33.25,27,0.0 +24066,36,19,6,0.0 +24066,13,6,39,0.0 +24066,20,81,24,0.0 +24066,27,43.9,5,0.0 +24066,72,34.8,24,0.0 +24066,61,28.5,18,0.0 +24066,60,34,17,0.0 +24066,18,62.5,15,0.0 +24066,26,31.23,23,0.0 +24066,24,4.5,6,0.0 +24066,30,25.89,12,0.0 +24066,10,31,37,0.0 +24066,53,32.8,47,0.0 +24066,55,24,12,0.0 +24066,3,10,42,0.0 +24066,33,2.5,48,0.0 +24066,25,14,35,0.0 +24066,1,18,36,0.0 +24066,66,17,6,0.0 +24066,15,15.5,10,0.0 +24066,35,18,2,0.0 +24066,50,16.25,44,0.0 +24066,44,19.45,22,0.0 +24066,65,21.05,50,0.0 +24066,45,9.5,2,0.0 +24066,73,15,44,0.0 +24066,54,7.45,28,0.0 +24066,62,49.3,25,0.0 +24066,31,12.5,41,0.0 +24066,52,7,20,0.0 +24066,58,13.25,41,0.0 +24066,69,36,4,0.0 +24066,57,19.5,11,0.0 +24066,37,26,7,0.0 +24066,76,18,15,0.0 +24066,22,21,17,0.0 +24066,32,32,45,0.0 +24066,70,15,42,0.0 +24066,12,38,30,0.0 +24066,21,10,6,0.0 +24066,56,38,21,0.0 +24066,46,12,35,0.0 +24066,40,18.4,20,0.0 +24066,75,7.75,31,0.0 +24066,63,43.9,30,0.0 +24067,67,14,33,0.0 +24067,13,6,30,0.0 +24067,20,81,17,0.0 +24067,22,21,9,0.0 +24067,19,9.2,38,0.0 +24067,45,9.5,4,0.0 +24067,59,55,24,0.0 +24067,60,34,34,0.0 +24067,3,10,14,0.0 +24067,17,39,5,0.0 +24067,56,38,26,0.0 +24067,27,43.9,37,0.0 +24067,33,2.5,37,0.0 +24067,11,21,15,0.0 +24067,40,18.4,10,0.0 +24067,58,13.25,17,0.0 +24067,64,33.25,35,0.0 +24067,62,49.3,7,0.0 +24067,32,32,26,0.0 +24067,68,12.5,41,0.0 +24067,34,14,4,0.0 +24067,18,62.5,15,0.0 +24067,23,9,10,0.0 +24067,73,15,16,0.0 +24067,2,19,32,0.0 +24067,36,19,39,0.0 +24067,10,31,20,0.0 +24067,30,25.89,39,0.0 +24067,69,36,3,0.0 +24067,41,9.65,3,0.0 +24067,46,12,15,0.0 +24067,42,14,6,0.0 +24067,21,10,15,0.0 +24067,43,46,45,0.0 +24067,9,97,35,0.0 +24067,12,38,33,0.0 +24067,1,18,1,0.0 +24067,72,34.8,21,0.0 +24067,7,30,49,0.0 +24067,26,31.23,4,0.0 +24067,52,7,35,0.0 +24067,29,123.79,25,0.0 +24067,35,18,42,0.0 +24067,75,7.75,41,0.0 +24067,28,45.6,50,0.0 +24067,66,17,3,0.0 +24068,39,18,9,0.0 +24068,4,22,31,0.0 +24068,61,28.5,10,0.0 +24068,77,13,8,0.0 +24068,19,9.2,49,0.0 +24068,23,9,5,0.0 +24068,24,4.5,18,0.0 +24068,18,62.5,44,0.0 +24068,45,9.5,44,0.0 +24068,22,21,8,0.0 +24068,48,12.75,27,0.0 +24068,63,43.9,46,0.0 +24068,62,49.3,46,0.0 +24068,50,16.25,2,0.0 +24068,74,10,46,0.0 +24068,7,30,47,0.0 +24068,70,15,1,0.0 +24068,66,17,11,0.0 +24068,30,25.89,17,0.0 +24068,55,24,40,0.0 +24068,71,21.5,49,0.0 +24068,2,19,20,0.0 +24068,12,38,7,0.0 +24068,67,14,16,0.0 +24068,53,32.8,30,0.0 +24068,31,12.5,34,0.0 +24068,64,33.25,10,0.0 +24068,38,263.5,39,0.0 +24068,72,34.8,7,0.0 +24068,57,19.5,19,0.0 +24068,29,123.79,30,0.0 +24068,46,12,29,0.0 +24069,62,49.3,19,0.0 +24069,11,21,14,0.0 +24069,69,36,50,0.0 +24070,8,40,18,0.0 +24070,48,12.75,5,0.0 +24070,67,14,35,0.0 +24070,17,39,32,0.0 +24070,4,22,24,0.0 +24070,59,55,11,0.0 +24070,2,19,31,0.0 +24070,3,10,44,0.0 +24070,15,15.5,28,0.0 +24070,29,123.79,27,0.0 +24070,19,9.2,16,0.0 +24070,60,34,39,0.0 +24070,38,263.5,48,0.0 +24070,40,18.4,10,0.0 +24070,65,21.05,12,0.0 +24070,43,46,20,0.0 +24070,11,21,47,0.0 +24070,52,7,17,0.0 +24070,69,36,37,0.0 +24070,10,31,27,0.0 +24070,34,14,45,0.0 +24070,64,33.25,2,0.0 +24070,73,15,33,0.0 +24070,53,32.8,3,0.0 +24070,18,62.5,48,0.0 +24070,36,19,31,0.0 +24070,12,38,20,0.0 +24070,9,97,1,0.0 +24070,21,10,48,0.0 +24070,63,43.9,42,0.0 +24070,37,26,47,0.0 +24070,5,21.35,44,0.0 +24070,56,38,42,0.0 +24070,66,17,35,0.0 +24070,62,49.3,31,0.0 +24070,31,12.5,2,0.0 +24070,35,18,43,0.0 +24070,70,15,21,0.0 +24070,77,13,29,0.0 +24070,22,21,30,0.0 +24070,24,4.5,8,0.0 +24070,16,17.45,6,0.0 +24070,54,7.45,44,0.0 +24070,7,30,24,0.0 +24070,49,20,34,0.0 +24070,76,18,24,0.0 +24070,26,31.23,39,0.0 +24070,50,16.25,6,0.0 +24070,57,19.5,29,0.0 +24070,68,12.5,12,0.0 +24070,25,14,23,0.0 +24070,30,25.89,12,0.0 +24070,61,28.5,7,0.0 +24070,1,18,13,0.0 +24070,33,2.5,43,0.0 +24070,46,12,32,0.0 +24070,14,23.25,24,0.0 +24070,6,25,25,0.0 +24070,13,6,47,0.0 +24070,44,19.45,15,0.0 +24070,42,14,17,0.0 +24070,41,9.65,18,0.0 +24070,27,43.9,50,0.0 +24070,47,9.5,48,0.0 +24071,10,31,20,0.0 +24071,28,45.6,46,0.0 +24071,69,36,14,0.0 +24071,13,6,42,0.0 +24071,22,21,32,0.0 +24071,55,24,1,0.0 +24071,52,7,29,0.0 +24071,63,43.9,14,0.0 +24071,30,25.89,33,0.0 +24071,74,10,4,0.0 +24071,35,18,43,0.0 +24071,39,18,14,0.0 +24071,34,14,39,0.0 +24071,3,10,23,0.0 +24071,65,21.05,12,0.0 +24071,77,13,25,0.0 +24071,76,18,7,0.0 +24071,44,19.45,21,0.0 +24071,23,9,37,0.0 +24071,75,7.75,21,0.0 +24071,38,263.5,2,0.0 +24071,72,34.8,14,0.0 +24071,1,18,28,0.0 +24071,14,23.25,27,0.0 +24071,68,12.5,9,0.0 +24071,40,18.4,16,0.0 +24071,41,9.65,46,0.0 +24071,16,17.45,39,0.0 +24071,64,33.25,42,0.0 +24071,20,81,12,0.0 +24071,42,14,7,0.0 +24071,60,34,41,0.0 +24071,29,123.79,10,0.0 +24071,7,30,33,0.0 +24071,17,39,21,0.0 +24071,19,9.2,32,0.0 +24071,58,13.25,46,0.0 +24071,9,97,17,0.0 +24071,6,25,25,0.0 +24071,33,2.5,34,0.0 +24071,24,4.5,18,0.0 +24071,59,55,11,0.0 +24071,18,62.5,1,0.0 +24071,45,9.5,16,0.0 +24071,53,32.8,23,0.0 +24071,47,9.5,33,0.0 +24071,49,20,46,0.0 +24071,62,49.3,18,0.0 +24071,2,19,32,0.0 +24071,57,19.5,20,0.0 +24071,26,31.23,36,0.0 +24071,4,22,40,0.0 +24071,56,38,36,0.0 +24071,32,32,4,0.0 +24071,71,21.5,22,0.0 +24071,67,14,50,0.0 +24071,73,15,1,0.0 +24071,21,10,41,0.0 +24072,70,15,44,0.0 +24072,54,7.45,9,0.0 +24072,21,10,18,0.0 +24072,57,19.5,22,0.0 +24072,38,263.5,23,0.0 +24072,68,12.5,25,0.0 +24072,65,21.05,15,0.0 +24072,42,14,34,0.0 +24072,73,15,24,0.0 +24072,64,33.25,49,0.0 +24072,44,19.45,43,0.0 +24072,36,19,26,0.0 +24072,9,97,25,0.0 +24072,34,14,27,0.0 +24072,74,10,19,0.0 +24072,50,16.25,5,0.0 +24072,15,15.5,21,0.0 +24072,61,28.5,7,0.0 +24072,58,13.25,44,0.0 +24072,40,18.4,50,0.0 +24072,11,21,11,0.0 +24072,26,31.23,48,0.0 +24072,69,36,30,0.0 +24072,3,10,9,0.0 +24072,31,12.5,8,0.0 +24072,13,6,6,0.0 +24072,52,7,28,0.0 +24072,17,39,8,0.0 +24072,62,49.3,26,0.0 +24072,23,9,5,0.0 +24072,30,25.89,47,0.0 +24072,35,18,24,0.0 +24072,28,45.6,13,0.0 +24072,56,38,8,0.0 +24072,25,14,10,0.0 +24072,18,62.5,25,0.0 +24072,32,32,46,0.0 +24072,66,17,2,0.0 +24072,16,17.45,19,0.0 +24072,2,19,31,0.0 +24072,19,9.2,37,0.0 +24072,7,30,9,0.0 +24072,60,34,15,0.0 +24072,4,22,14,0.0 +24072,71,21.5,29,0.0 +24072,55,24,50,0.0 +24072,59,55,27,0.0 +24072,5,21.35,21,0.0 +24072,67,14,38,0.0 +24072,49,20,38,0.0 +24072,77,13,49,0.0 +24072,29,123.79,15,0.0 +24072,72,34.8,13,0.0 +24072,75,7.75,24,0.0 +24072,43,46,3,0.0 +24072,22,21,4,0.0 +24072,14,23.25,26,0.0 +24072,24,4.5,30,0.0 +24073,65,21.05,29,0.0 +24073,61,28.5,45,0.0 +24073,44,19.45,30,0.0 +24073,73,15,1,0.0 +24073,28,45.6,34,0.0 +24073,38,263.5,28,0.0 +24073,33,2.5,38,0.0 +24073,45,9.5,40,0.0 +24073,23,9,50,0.0 +24073,39,18,11,0.0 +24073,75,7.75,18,0.0 +24073,72,34.8,39,0.0 +24073,70,15,36,0.0 +24073,1,18,30,0.0 +24073,22,21,45,0.0 +24073,77,13,45,0.0 +24073,71,21.5,49,0.0 +24073,25,14,36,0.0 +24073,48,12.75,30,0.0 +24073,35,18,35,0.0 +24073,40,18.4,30,0.0 +24073,46,12,46,0.0 +24073,69,36,26,0.0 +24073,63,43.9,16,0.0 +24073,10,31,26,0.0 +24073,11,21,39,0.0 +24073,15,15.5,23,0.0 +24073,57,19.5,16,0.0 +24073,43,46,23,0.0 +24073,64,33.25,29,0.0 +24073,49,20,48,0.0 +24073,2,19,17,0.0 +24073,51,53,47,0.0 +24073,20,81,24,0.0 +24073,27,43.9,17,0.0 +24073,37,26,2,0.0 +24073,68,12.5,43,0.0 +24073,8,40,39,0.0 +24073,66,17,34,0.0 +24073,42,14,20,0.0 +24073,12,38,10,0.0 +24073,19,9.2,35,0.0 +24073,29,123.79,14,0.0 +24073,16,17.45,22,0.0 +24073,58,13.25,6,0.0 +24073,36,19,1,0.0 +24073,5,21.35,37,0.0 +24073,4,22,8,0.0 +24073,21,10,10,0.0 +24073,55,24,49,0.0 +24073,26,31.23,10,0.0 +24073,56,38,37,0.0 +24073,62,49.3,3,0.0 +24073,34,14,19,0.0 +24073,17,39,42,0.0 +24073,18,62.5,3,0.0 +24073,60,34,49,0.0 +24073,30,25.89,29,0.0 +24073,9,97,21,0.0 +24073,47,9.5,19,0.0 +24073,3,10,7,0.0 +24073,50,16.25,42,0.0 +24073,67,14,14,0.0 +24073,24,4.5,46,0.0 +24073,52,7,20,0.0 +24073,74,10,40,0.0 +24073,54,7.45,39,0.0 +24073,13,6,50,0.0 +24073,7,30,46,0.0 +24073,31,12.5,45,0.0 +24073,53,32.8,42,0.0 +24073,32,32,14,0.0 +24074,22,21,34,0.0 +24074,20,81,11,0.0 +24074,16,17.45,17,0.0 +24074,57,19.5,33,0.0 +24074,49,20,1,0.0 +24074,64,33.25,20,0.0 +24074,11,21,36,0.0 +24074,45,9.5,34,0.0 +24074,58,13.25,20,0.0 +24074,56,38,37,0.0 +24074,53,32.8,15,0.0 +24074,63,43.9,24,0.0 +24074,67,14,27,0.0 +24074,47,9.5,34,0.0 +24074,46,12,30,0.0 +24074,7,30,19,0.0 +24074,2,19,26,0.0 +24074,40,18.4,6,0.0 +24074,41,9.65,48,0.0 +24074,34,14,43,0.0 +24074,48,12.75,10,0.0 +24074,43,46,27,0.0 +24074,23,9,39,0.0 +24074,60,34,4,0.0 +24074,3,10,42,0.0 +24074,54,7.45,46,0.0 +24074,71,21.5,10,0.0 +24074,37,26,31,0.0 +24074,4,22,48,0.0 +24074,33,2.5,4,0.0 +24074,70,15,19,0.0 +24074,30,25.89,31,0.0 +24074,38,263.5,48,0.0 +24074,44,19.45,2,0.0 +24074,31,12.5,32,0.0 +24074,17,39,31,0.0 +24074,39,18,39,0.0 +24074,75,7.75,8,0.0 +24074,28,45.6,43,0.0 +24074,77,13,30,0.0 +24074,25,14,45,0.0 +24074,24,4.5,41,0.0 +24074,73,15,49,0.0 +24074,61,28.5,12,0.0 +24074,72,34.8,24,0.0 +24074,59,55,1,0.0 +24074,76,18,32,0.0 +24074,29,123.79,40,0.0 +24074,68,12.5,48,0.0 +24074,50,16.25,12,0.0 +24074,52,7,14,0.0 +24074,13,6,39,0.0 +24074,1,18,25,0.0 +24074,65,21.05,40,0.0 +24074,42,14,32,0.0 +24074,10,31,38,0.0 +24074,26,31.23,23,0.0 +24074,66,17,5,0.0 +24074,19,9.2,32,0.0 +24074,51,53,43,0.0 +24074,18,62.5,45,0.0 +24074,62,49.3,44,0.0 +24074,5,21.35,5,0.0 +24074,36,19,4,0.0 +24074,27,43.9,9,0.0 +24074,35,18,21,0.0 +24075,47,9.5,44,0.0 +24075,37,26,32,0.0 +24075,53,32.8,24,0.0 +24075,52,7,28,0.0 +24075,16,17.45,16,0.0 +24075,20,81,3,0.0 +24075,76,18,35,0.0 +24075,77,13,2,0.0 +24075,22,21,7,0.0 +24075,65,21.05,44,0.0 +24075,73,15,29,0.0 +24075,70,15,20,0.0 +24075,44,19.45,43,0.0 +24075,38,263.5,36,0.0 +24075,59,55,49,0.0 +24075,58,13.25,43,0.0 +24075,46,12,37,0.0 +24075,34,14,28,0.0 +24075,27,43.9,10,0.0 +24075,55,24,47,0.0 +24075,11,21,42,0.0 +24075,71,21.5,43,0.0 +24075,75,7.75,48,0.0 +24075,33,2.5,46,0.0 +24075,74,10,21,0.0 +24075,8,40,29,0.0 +24075,2,19,47,0.0 +24075,31,12.5,41,0.0 +24075,30,25.89,13,0.0 +24075,68,12.5,40,0.0 +24075,72,34.8,26,0.0 +24075,54,7.45,21,0.0 +24075,29,123.79,38,0.0 +24075,19,9.2,4,0.0 +24076,26,31.23,37,0.0 +24076,38,263.5,17,0.0 +24076,65,21.05,28,0.0 +24076,1,18,25,0.0 +24076,9,97,33,0.0 +24076,23,9,12,0.0 +24076,28,45.6,7,0.0 +24076,22,21,30,0.0 +24076,24,4.5,6,0.0 +24076,35,18,37,0.0 +24076,66,17,2,0.0 +24076,76,18,49,0.0 +24076,17,39,10,0.0 +24076,63,43.9,47,0.0 +24076,74,10,39,0.0 +24076,77,13,17,0.0 +24076,27,43.9,7,0.0 +24076,67,14,10,0.0 +24076,51,53,14,0.0 +24076,13,6,4,0.0 +24076,12,38,25,0.0 +24076,25,14,6,0.0 +24076,49,20,28,0.0 +24076,68,12.5,46,0.0 +24076,4,22,23,0.0 +24076,42,14,5,0.0 +24076,15,15.5,27,0.0 +24076,72,34.8,47,0.0 +24076,10,31,16,0.0 +24076,47,9.5,40,0.0 +24076,19,9.2,10,0.0 +24076,40,18.4,36,0.0 +24076,30,25.89,49,0.0 +24076,21,10,15,0.0 +24076,41,9.65,19,0.0 +24076,61,28.5,6,0.0 +24076,32,32,49,0.0 +24076,64,33.25,46,0.0 +24076,18,62.5,30,0.0 +24076,62,49.3,24,0.0 +24076,29,123.79,10,0.0 +24076,73,15,13,0.0 +24076,46,12,5,0.0 +24076,75,7.75,1,0.0 +24076,5,21.35,4,0.0 +24076,56,38,9,0.0 +24076,16,17.45,35,0.0 +24076,44,19.45,29,0.0 +24076,58,13.25,39,0.0 +24076,55,24,37,0.0 +24076,53,32.8,22,0.0 +24076,59,55,40,0.0 +24076,52,7,27,0.0 +24076,48,12.75,15,0.0 +24076,33,2.5,9,0.0 +24077,38,263.5,33,0.0 +24077,16,17.45,1,0.0 +24077,15,15.5,38,0.0 +24077,23,9,41,0.0 +24077,65,21.05,18,0.0 +24077,21,10,10,0.0 +24077,45,9.5,12,0.0 +24077,51,53,8,0.0 +24077,44,19.45,6,0.0 +24077,57,19.5,15,0.0 +24077,14,23.25,14,0.0 +24077,2,19,37,0.0 +24077,59,55,17,0.0 +24077,75,7.75,23,0.0 +24077,70,15,3,0.0 +24078,43,46,23,0.0 +24078,49,20,5,0.0 +24078,38,263.5,1,0.0 +24078,42,14,10,0.0 +24078,69,36,12,0.0 +24078,36,19,29,0.0 +24078,74,10,14,0.0 +24078,1,18,42,0.0 +24078,65,21.05,17,0.0 +24078,23,9,34,0.0 +24078,48,12.75,29,0.0 +24078,64,33.25,37,0.0 +24078,53,32.8,23,0.0 +24078,72,34.8,32,0.0 +24078,11,21,33,0.0 +24078,34,14,21,0.0 +24078,28,45.6,3,0.0 +24078,76,18,47,0.0 +24078,46,12,35,0.0 +24078,52,7,43,0.0 +24078,24,4.5,22,0.0 +24078,2,19,3,0.0 +24078,66,17,5,0.0 +24078,73,15,49,0.0 +24078,71,21.5,27,0.0 +24078,7,30,3,0.0 +24078,67,14,42,0.0 +24078,54,7.45,17,0.0 +24078,61,28.5,30,0.0 +24078,58,13.25,40,0.0 +24078,27,43.9,23,0.0 +24078,40,18.4,7,0.0 +24078,3,10,16,0.0 +24078,63,43.9,20,0.0 +24078,20,81,7,0.0 +24078,26,31.23,11,0.0 +24078,29,123.79,32,0.0 +24078,15,15.5,28,0.0 +24078,18,62.5,29,0.0 +24078,9,97,19,0.0 +24078,62,49.3,6,0.0 +24078,47,9.5,38,0.0 +24078,56,38,16,0.0 +24078,21,10,5,0.0 +24079,18,62.5,18,0.0 +24079,8,40,42,0.0 +24079,70,15,6,0.0 +24079,38,263.5,41,0.0 +24079,52,7,16,0.0 +24079,27,43.9,47,0.0 +24079,73,15,44,0.0 +24079,63,43.9,19,0.0 +24079,26,31.23,13,0.0 +24079,36,19,9,0.0 +24079,14,23.25,3,0.0 +24079,35,18,22,0.0 +24079,60,34,2,0.0 +24079,46,12,50,0.0 +24079,23,9,50,0.0 +24079,66,17,1,0.0 +24079,58,13.25,13,0.0 +24079,47,9.5,48,0.0 +24079,32,32,34,0.0 +24079,29,123.79,44,0.0 +24079,64,33.25,37,0.0 +24079,17,39,14,0.0 +24079,25,14,48,0.0 +24079,62,49.3,47,0.0 +24079,68,12.5,3,0.0 +24079,42,14,17,0.0 +24079,75,7.75,36,0.0 +24079,6,25,10,0.0 +24079,57,19.5,17,0.0 +24079,41,9.65,11,0.0 +24079,45,9.5,28,0.0 +24079,11,21,33,0.0 +24079,10,31,14,0.0 +24079,59,55,6,0.0 +24079,33,2.5,19,0.0 +24079,65,21.05,33,0.0 +24079,51,53,20,0.0 +24079,49,20,8,0.0 +24080,46,12,7,0.0 +24080,11,21,25,0.0 +24080,67,14,15,0.0 +24080,42,14,41,0.0 +24080,13,6,32,0.0 +24080,61,28.5,17,0.0 +24080,27,43.9,27,0.0 +24080,8,40,32,0.0 +24080,60,34,40,0.0 +24080,72,34.8,12,0.0 +24080,56,38,24,0.0 +24080,74,10,4,0.0 +24080,43,46,2,0.0 +24080,24,4.5,30,0.0 +24080,41,9.65,26,0.0 +24080,5,21.35,40,0.0 +24080,45,9.5,35,0.0 +24080,33,2.5,39,0.0 +24080,62,49.3,5,0.0 +24080,55,24,2,0.0 +24080,35,18,24,0.0 +24080,20,81,47,0.0 +24080,15,15.5,22,0.0 +24080,21,10,29,0.0 +24080,54,7.45,37,0.0 +24080,29,123.79,13,0.0 +24080,36,19,27,0.0 +24080,31,12.5,1,0.0 +24080,37,26,39,0.0 +24080,28,45.6,4,0.0 +24080,65,21.05,9,0.0 +24080,3,10,47,0.0 +24080,73,15,23,0.0 +24080,77,13,49,0.0 +24080,63,43.9,1,0.0 +24080,44,19.45,21,0.0 +24080,26,31.23,3,0.0 +24080,59,55,27,0.0 +24080,57,19.5,44,0.0 +24080,58,13.25,3,0.0 +24080,48,12.75,4,0.0 +24080,68,12.5,24,0.0 +24080,71,21.5,9,0.0 +24080,49,20,24,0.0 +24080,50,16.25,36,0.0 +24080,75,7.75,36,0.0 +24080,38,263.5,35,0.0 +24080,53,32.8,25,0.0 +24080,6,25,38,0.0 +24080,23,9,10,0.0 +24080,69,36,12,0.0 +24080,64,33.25,30,0.0 +24080,70,15,30,0.0 +24080,2,19,43,0.0 +24080,1,18,34,0.0 +24080,16,17.45,36,0.0 +24080,9,97,44,0.0 +24080,40,18.4,10,0.0 +24080,51,53,45,0.0 +24080,66,17,6,0.0 +24080,30,25.89,42,0.0 +24080,76,18,20,0.0 +24080,14,23.25,28,0.0 +24080,22,21,30,0.0 +24080,34,14,34,0.0 +24081,13,6,50,0.0 +24081,39,18,43,0.0 +24081,10,31,21,0.0 +24081,4,22,50,0.0 +24081,53,32.8,22,0.0 +24081,58,13.25,22,0.0 +24081,15,15.5,28,0.0 +24081,32,32,13,0.0 +24081,35,18,31,0.0 +24081,28,45.6,39,0.0 +24081,43,46,41,0.0 +24081,56,38,31,0.0 +24081,42,14,5,0.0 +24082,26,31.23,29,0.0 +24082,72,34.8,13,0.0 +24082,38,263.5,9,0.0 +24082,1,18,14,0.0 +24082,15,15.5,22,0.0 +24082,57,19.5,30,0.0 +24082,16,17.45,16,0.0 +24082,20,81,47,0.0 +24082,76,18,4,0.0 +24082,5,21.35,23,0.0 +24082,46,12,3,0.0 +24082,22,21,26,0.0 +24082,54,7.45,44,0.0 +24082,42,14,34,0.0 +24082,41,9.65,27,0.0 +24082,33,2.5,25,0.0 +24082,39,18,2,0.0 +24082,30,25.89,40,0.0 +24082,50,16.25,40,0.0 +24083,36,19,44,0.0 +24083,16,17.45,49,0.0 +24083,34,14,49,0.0 +24083,70,15,40,0.0 +24083,50,16.25,7,0.0 +24083,61,28.5,50,0.0 +24083,3,10,36,0.0 +24083,4,22,39,0.0 +24083,9,97,1,0.0 +24083,41,9.65,12,0.0 +24083,19,9.2,49,0.0 +24083,60,34,44,0.0 +24083,12,38,36,0.0 +24083,11,21,14,0.0 +24083,8,40,7,0.0 +24083,67,14,6,0.0 +24083,65,21.05,1,0.0 +24083,31,12.5,38,0.0 +24083,43,46,43,0.0 +24083,57,19.5,46,0.0 +24083,51,53,4,0.0 +24083,64,33.25,31,0.0 +24083,40,18.4,15,0.0 +24083,63,43.9,33,0.0 +24083,69,36,41,0.0 +24083,32,32,13,0.0 +24083,58,13.25,33,0.0 +24083,25,14,7,0.0 +24083,33,2.5,24,0.0 +24083,26,31.23,11,0.0 +24084,63,43.9,43,0.0 +24084,28,45.6,20,0.0 +24084,26,31.23,11,0.0 +24084,74,10,43,0.0 +24084,23,9,27,0.0 +24084,65,21.05,44,0.0 +24084,62,49.3,38,0.0 +24084,64,33.25,48,0.0 +24084,47,9.5,50,0.0 +24084,73,15,12,0.0 +24084,9,97,43,0.0 +24084,5,21.35,23,0.0 +24084,3,10,11,0.0 +24084,77,13,13,0.0 +24084,44,19.45,12,0.0 +24084,29,123.79,12,0.0 +24084,41,9.65,35,0.0 +24084,24,4.5,46,0.0 +24084,50,16.25,47,0.0 +24084,10,31,47,0.0 +24085,35,18,36,0.0 +24085,19,9.2,5,0.0 +24085,48,12.75,34,0.0 +24085,37,26,49,0.0 +24085,51,53,39,0.0 +24085,20,81,47,0.0 +24085,46,12,25,0.0 +24085,16,17.45,5,0.0 +24085,18,62.5,45,0.0 +24085,74,10,25,0.0 +24085,76,18,50,0.0 +24085,45,9.5,27,0.0 +24085,3,10,5,0.0 +24085,67,14,8,0.0 +24085,61,28.5,34,0.0 +24085,22,21,20,0.0 +24085,42,14,4,0.0 +24085,77,13,26,0.0 +24085,56,38,48,0.0 +24085,64,33.25,41,0.0 +24085,66,17,29,0.0 +24085,30,25.89,5,0.0 +24085,59,55,9,0.0 +24085,72,34.8,30,0.0 +24085,36,19,4,0.0 +24085,57,19.5,6,0.0 +24085,52,7,11,0.0 +24085,15,15.5,46,0.0 +24085,17,39,7,0.0 +24085,50,16.25,32,0.0 +24085,1,18,10,0.0 +24085,12,38,39,0.0 +24085,49,20,43,0.0 +24085,41,9.65,39,0.0 +24085,69,36,29,0.0 +24085,63,43.9,47,0.0 +24085,39,18,30,0.0 +24085,54,7.45,3,0.0 +24085,7,30,19,0.0 +24085,34,14,15,0.0 +24085,14,23.25,38,0.0 +24085,28,45.6,35,0.0 +24085,32,32,33,0.0 +24085,29,123.79,29,0.0 +24085,6,25,26,0.0 +24085,11,21,31,0.0 +24085,43,46,20,0.0 +24085,5,21.35,32,0.0 +24085,2,19,44,0.0 +24085,25,14,28,0.0 +24086,53,32.8,32,0.0 +24086,36,19,25,0.0 +24086,38,263.5,1,0.0 +24086,9,97,16,0.0 +24086,40,18.4,46,0.0 +24086,24,4.5,48,0.0 +24086,32,32,36,0.0 +24086,54,7.45,42,0.0 +24086,66,17,27,0.0 +24086,47,9.5,23,0.0 +24086,5,21.35,28,0.0 +24086,63,43.9,1,0.0 +24086,48,12.75,22,0.0 +24086,73,15,45,0.0 +24086,6,25,1,0.0 +24087,48,12.75,49,0.0 +24087,11,21,35,0.0 +24087,33,2.5,27,0.0 +24087,70,15,18,0.0 +24087,58,13.25,39,0.0 +24087,18,62.5,15,0.0 +24087,46,12,3,0.0 +24087,68,12.5,24,0.0 +24087,44,19.45,42,0.0 +24087,6,25,37,0.0 +24087,10,31,47,0.0 +24087,8,40,12,0.0 +24087,2,19,41,0.0 +24087,62,49.3,25,0.0 +24087,69,36,21,0.0 +24087,7,30,26,0.0 +24087,12,38,32,0.0 +24087,41,9.65,34,0.0 +24087,72,34.8,22,0.0 +24087,27,43.9,27,0.0 +24087,20,81,41,0.0 +24087,42,14,34,0.0 +24087,52,7,49,0.0 +24087,74,10,40,0.0 +24087,31,12.5,43,0.0 +24087,38,263.5,12,0.0 +24087,36,19,34,0.0 +24087,34,14,20,0.0 +24087,73,15,26,0.0 +24087,25,14,21,0.0 +24087,77,13,34,0.0 +24087,1,18,19,0.0 +24087,43,46,32,0.0 +24087,64,33.25,10,0.0 +24087,21,10,17,0.0 +24087,26,31.23,8,0.0 +24087,5,21.35,19,0.0 +24087,71,21.5,33,0.0 +24087,67,14,14,0.0 +24087,15,15.5,42,0.0 +24087,32,32,42,0.0 +24087,49,20,37,0.0 +24087,63,43.9,28,0.0 +24087,66,17,36,0.0 +24087,13,6,12,0.0 +24087,29,123.79,27,0.0 +24087,23,9,46,0.0 +24087,14,23.25,14,0.0 +24087,4,22,45,0.0 +24087,76,18,37,0.0 +24087,35,18,41,0.0 +24087,59,55,16,0.0 +24087,39,18,8,0.0 +24087,53,32.8,45,0.0 +24087,55,24,26,0.0 +24087,56,38,31,0.0 +24087,3,10,48,0.0 +24087,60,34,17,0.0 +24087,37,26,16,0.0 +24087,16,17.45,45,0.0 +24087,17,39,39,0.0 +24087,75,7.75,44,0.0 +24087,9,97,13,0.0 +24087,30,25.89,48,0.0 +24087,40,18.4,30,0.0 +24087,65,21.05,13,0.0 +24087,50,16.25,5,0.0 +24088,59,55,46,0.0 +24088,23,9,26,0.0 +24088,49,20,4,0.0 +24088,22,21,22,0.0 +24088,17,39,1,0.0 +24088,3,10,23,0.0 +24088,63,43.9,20,0.0 +24088,41,9.65,40,0.0 +24088,31,12.5,26,0.0 +24088,14,23.25,44,0.0 +24088,25,14,46,0.0 +24088,29,123.79,40,0.0 +24088,51,53,36,0.0 +24088,70,15,5,0.0 +24088,44,19.45,1,0.0 +24088,57,19.5,22,0.0 +24088,74,10,3,0.0 +24088,56,38,20,0.0 +24088,68,12.5,25,0.0 +24088,58,13.25,33,0.0 +24088,1,18,35,0.0 +24088,71,21.5,27,0.0 +24088,24,4.5,40,0.0 +24088,55,24,25,0.0 +24088,2,19,11,0.0 +24088,60,34,50,0.0 +24088,43,46,27,0.0 +24088,66,17,6,0.0 +24088,11,21,50,0.0 +24088,73,15,20,0.0 +24088,12,38,8,0.0 +24088,53,32.8,40,0.0 +24088,5,21.35,29,0.0 +24088,33,2.5,47,0.0 +24088,30,25.89,16,0.0 +24088,7,30,18,0.0 +24088,6,25,18,0.0 +24088,15,15.5,49,0.0 +24088,54,7.45,17,0.0 +24088,64,33.25,27,0.0 +24088,72,34.8,25,0.0 +24088,13,6,15,0.0 +24088,42,14,14,0.0 +24088,32,32,50,0.0 +24088,47,9.5,10,0.0 +24088,37,26,20,0.0 +24088,39,18,1,0.0 +24088,77,13,35,0.0 +24088,69,36,1,0.0 +24088,67,14,15,0.0 +24088,76,18,22,0.0 +24089,77,13,47,0.0 +24089,27,43.9,12,0.0 +24089,5,21.35,12,0.0 +24089,50,16.25,44,0.0 +24089,47,9.5,50,0.0 +24089,41,9.65,30,0.0 +24089,68,12.5,41,0.0 +24089,43,46,11,0.0 +24089,69,36,43,0.0 +24089,72,34.8,44,0.0 +24089,33,2.5,20,0.0 +24089,46,12,13,0.0 +24089,60,34,23,0.0 +24089,14,23.25,31,0.0 +24089,16,17.45,30,0.0 +24089,7,30,19,0.0 +24089,28,45.6,48,0.0 +24089,36,19,33,0.0 +24089,8,40,6,0.0 +24089,21,10,22,0.0 +24089,55,24,46,0.0 +24089,45,9.5,41,0.0 +24089,67,14,21,0.0 +24089,71,21.5,36,0.0 +24089,25,14,2,0.0 +24089,9,97,48,0.0 +24089,32,32,31,0.0 +24089,37,26,45,0.0 +24089,74,10,44,0.0 +24089,20,81,15,0.0 +24089,3,10,16,0.0 +24089,15,15.5,47,0.0 +24089,63,43.9,26,0.0 +24089,53,32.8,37,0.0 +24089,65,21.05,45,0.0 +24089,4,22,11,0.0 +24089,11,21,24,0.0 +24089,39,18,47,0.0 +24089,2,19,2,0.0 +24089,57,19.5,30,0.0 +24089,66,17,26,0.0 +24089,59,55,24,0.0 +24089,35,18,29,0.0 +24089,52,7,27,0.0 +24089,30,25.89,12,0.0 +24090,7,30,29,0.0 +24090,56,38,31,0.0 +24090,27,43.9,33,0.0 +24090,67,14,14,0.0 +24090,44,19.45,42,0.0 +24090,63,43.9,36,0.0 +24090,40,18.4,7,0.0 +24090,16,17.45,14,0.0 +24090,76,18,18,0.0 +24090,9,97,49,0.0 +24090,1,18,33,0.0 +24090,29,123.79,27,0.0 +24090,30,25.89,33,0.0 +24090,43,46,12,0.0 +24090,58,13.25,28,0.0 +24090,72,34.8,33,0.0 +24090,41,9.65,20,0.0 +24090,12,38,28,0.0 +24090,21,10,25,0.0 +24090,66,17,21,0.0 +24090,73,15,36,0.0 +24090,11,21,3,0.0 +24090,14,23.25,17,0.0 +24091,32,32,11,0.0 +24091,52,7,32,0.0 +24091,13,6,1,0.0 +24091,27,43.9,29,0.0 +24091,23,9,11,0.0 +24091,49,20,21,0.0 +24091,76,18,38,0.0 +24091,70,15,40,0.0 +24091,57,19.5,37,0.0 +24091,39,18,31,0.0 +24091,1,18,14,0.0 +24091,38,263.5,50,0.0 +24091,35,18,32,0.0 +24091,16,17.45,40,0.0 +24091,40,18.4,35,0.0 +24091,12,38,37,0.0 +24091,58,13.25,49,0.0 +24091,3,10,40,0.0 +24091,10,31,9,0.0 +24091,68,12.5,47,0.0 +24091,18,62.5,8,0.0 +24091,71,21.5,17,0.0 +24091,67,14,22,0.0 +24091,65,21.05,46,0.0 +24091,11,21,6,0.0 +24091,22,21,6,0.0 +24091,75,7.75,5,0.0 +24091,7,30,8,0.0 +24091,74,10,34,0.0 +24091,48,12.75,40,0.0 +24091,46,12,10,0.0 +24091,19,9.2,5,0.0 +24091,33,2.5,29,0.0 +24091,63,43.9,2,0.0 +24091,53,32.8,41,0.0 +24091,47,9.5,24,0.0 +24091,26,31.23,9,0.0 +24091,42,14,38,0.0 +24091,15,15.5,13,0.0 +24091,60,34,42,0.0 +24091,44,19.45,41,0.0 +24091,66,17,24,0.0 +24091,34,14,10,0.0 +24091,2,19,41,0.0 +24091,14,23.25,44,0.0 +24092,2,19,5,0.0 +24092,6,25,45,0.0 +24092,66,17,36,0.0 +24092,9,97,30,0.0 +24092,59,55,49,0.0 +24092,16,17.45,13,0.0 +24092,34,14,5,0.0 +24092,39,18,20,0.0 +24092,31,12.5,43,0.0 +24092,50,16.25,40,0.0 +24092,4,22,24,0.0 +24092,27,43.9,45,0.0 +24092,69,36,3,0.0 +24092,3,10,7,0.0 +24092,28,45.6,10,0.0 +24092,12,38,9,0.0 +24092,75,7.75,3,0.0 +24092,60,34,26,0.0 +24092,19,9.2,23,0.0 +24092,68,12.5,3,0.0 +24092,64,33.25,29,0.0 +24092,41,9.65,48,0.0 +24092,33,2.5,4,0.0 +24092,5,21.35,19,0.0 +24092,24,4.5,33,0.0 +24092,49,20,13,0.0 +24092,72,34.8,39,0.0 +24092,62,49.3,43,0.0 +24092,55,24,6,0.0 +24092,37,26,47,0.0 +24092,18,62.5,33,0.0 +24092,48,12.75,13,0.0 +24092,11,21,17,0.0 +24092,21,10,36,0.0 +24092,53,32.8,14,0.0 +24092,46,12,48,0.0 +24092,70,15,38,0.0 +24092,61,28.5,38,0.0 +24092,1,18,25,0.0 +24092,47,9.5,13,0.0 +24092,45,9.5,20,0.0 +24092,57,19.5,44,0.0 +24092,29,123.79,47,0.0 +24092,54,7.45,37,0.0 +24092,63,43.9,2,0.0 +24092,22,21,1,0.0 +24092,77,13,38,0.0 +24092,43,46,38,0.0 +24092,76,18,16,0.0 +24092,17,39,34,0.0 +24092,67,14,11,0.0 +24092,30,25.89,21,0.0 +24092,14,23.25,7,0.0 +24092,38,263.5,15,0.0 +24092,23,9,44,0.0 +24092,42,14,48,0.0 +24092,51,53,37,0.0 +24092,52,7,36,0.0 +24092,58,13.25,7,0.0 +24092,35,18,14,0.0 +24092,65,21.05,33,0.0 +24092,32,32,45,0.0 +24092,40,18.4,36,0.0 +24092,56,38,43,0.0 +24092,26,31.23,38,0.0 +24092,7,30,7,0.0 +24092,13,6,10,0.0 +24092,74,10,22,0.0 +24092,73,15,7,0.0 +24092,71,21.5,32,0.0 +24092,15,15.5,2,0.0 +24092,36,19,42,0.0 +24092,10,31,35,0.0 +24092,20,81,42,0.0 +24092,8,40,43,0.0 +24092,44,19.45,34,0.0 +24093,75,7.75,23,0.0 +24093,56,38,41,0.0 +24093,3,10,19,0.0 +24093,58,13.25,14,0.0 +24093,60,34,27,0.0 +24093,36,19,12,0.0 +24093,51,53,5,0.0 +24093,35,18,2,0.0 +24093,48,12.75,12,0.0 +24093,39,18,4,0.0 +24093,43,46,42,0.0 +24093,49,20,45,0.0 +24093,32,32,9,0.0 +24093,50,16.25,4,0.0 +24093,74,10,24,0.0 +24093,45,9.5,19,0.0 +24093,27,43.9,46,0.0 +24093,33,2.5,47,0.0 +24093,54,7.45,11,0.0 +24094,25,14,24,0.0 +24094,3,10,8,0.0 +24094,41,9.65,16,0.0 +24094,46,12,43,0.0 +24094,43,46,24,0.0 +24094,29,123.79,10,0.0 +24094,24,4.5,50,0.0 +24094,38,263.5,46,0.0 +24094,71,21.5,35,0.0 +24094,26,31.23,41,0.0 +24094,48,12.75,7,0.0 +24094,73,15,6,0.0 +24094,28,45.6,10,0.0 +24094,75,7.75,35,0.0 +24094,10,31,23,0.0 +24094,35,18,39,0.0 +24094,51,53,41,0.0 +24094,55,24,15,0.0 +24095,36,19,25,0.0 +24096,3,10,45,0.0 +24096,77,13,26,0.0 +24096,22,21,42,0.0 +24096,54,7.45,42,0.0 +24096,23,9,2,0.0 +24096,28,45.6,44,0.0 +24096,31,12.5,13,0.0 +24097,32,32,16,0.0 +24097,42,14,9,0.0 +24097,75,7.75,37,0.0 +24097,24,4.5,6,0.0 +24097,54,7.45,21,0.0 +24097,70,15,23,0.0 +24097,34,14,15,0.0 +24097,2,19,18,0.0 +24097,57,19.5,4,0.0 +24097,30,25.89,42,0.0 +24097,5,21.35,11,0.0 +24097,33,2.5,4,0.0 +24097,56,38,5,0.0 +24097,15,15.5,39,0.0 +24097,59,55,23,0.0 +24097,49,20,14,0.0 +24097,13,6,30,0.0 +24097,77,13,29,0.0 +24097,67,14,13,0.0 +24097,51,53,37,0.0 +24097,47,9.5,49,0.0 +24097,27,43.9,5,0.0 +24097,20,81,47,0.0 +24097,37,26,15,0.0 +24097,21,10,42,0.0 +24097,4,22,31,0.0 +24097,10,31,11,0.0 +24097,14,23.25,38,0.0 +24097,12,38,29,0.0 +24097,38,263.5,26,0.0 +24097,1,18,39,0.0 +24097,53,32.8,13,0.0 +24097,45,9.5,31,0.0 +24098,34,14,4,0.0 +24098,29,123.79,15,0.0 +24098,52,7,5,0.0 +24098,30,25.89,40,0.0 +24098,68,12.5,1,0.0 +24098,25,14,43,0.0 +24099,62,49.3,1,0.0 +24099,16,17.45,46,0.0 +24099,73,15,41,0.0 +24099,17,39,45,0.0 +24099,70,15,33,0.0 +24099,75,7.75,21,0.0 +24099,66,17,38,0.0 +24099,71,21.5,45,0.0 +24099,24,4.5,24,0.0 +24099,38,263.5,3,0.0 +24099,15,15.5,9,0.0 +24099,65,21.05,20,0.0 +24099,56,38,16,0.0 +24099,54,7.45,43,0.0 +24099,63,43.9,16,0.0 +24099,29,123.79,4,0.0 +24099,46,12,22,0.0 +24100,76,18,20,0.0 +24100,19,9.2,17,0.0 +24100,6,25,30,0.0 +24100,48,12.75,17,0.0 +24100,44,19.45,43,0.0 +24100,1,18,37,0.0 +24100,8,40,21,0.0 +24100,64,33.25,37,0.0 +24100,73,15,28,0.0 +24100,68,12.5,12,0.0 +24100,65,21.05,28,0.0 +24100,39,18,41,0.0 +24101,21,10,49,0.0 +24101,73,15,31,0.0 +24101,53,32.8,39,0.0 +24101,11,21,17,0.0 +24101,28,45.6,12,0.0 +24101,17,39,35,0.0 +24101,60,34,33,0.0 +24101,64,33.25,6,0.0 +24101,15,15.5,22,0.0 +24101,19,9.2,43,0.0 +24101,27,43.9,17,0.0 +24101,13,6,14,0.0 +24101,42,14,37,0.0 +24101,9,97,17,0.0 +24101,18,62.5,2,0.0 +24101,58,13.25,36,0.0 +24101,48,12.75,49,0.0 +24101,59,55,48,0.0 +24101,31,12.5,42,0.0 +24101,65,21.05,48,0.0 +24101,70,15,47,0.0 +24101,45,9.5,5,0.0 +24101,57,19.5,15,0.0 +24101,74,10,44,0.0 +24101,32,32,32,0.0 +24101,12,38,4,0.0 +24101,29,123.79,9,0.0 +24101,72,34.8,5,0.0 +24101,71,21.5,31,0.0 +24102,48,12.75,24,0.0 +24102,20,81,1,0.0 +24102,39,18,28,0.0 +24102,35,18,36,0.0 +24102,23,9,50,0.0 +24102,60,34,4,0.0 +24102,42,14,49,0.0 +24102,74,10,40,0.0 +24102,13,6,43,0.0 +24102,63,43.9,20,0.0 +24102,62,49.3,7,0.0 +24102,5,21.35,37,0.0 +24102,38,263.5,3,0.0 +24102,9,97,32,0.0 +24102,2,19,44,0.0 +24102,32,32,7,0.0 +24102,44,19.45,20,0.0 +24102,30,25.89,26,0.0 +24102,54,7.45,39,0.0 +24102,47,9.5,38,0.0 +24102,66,17,22,0.0 +24102,22,21,49,0.0 +24102,29,123.79,33,0.0 +24102,28,45.6,47,0.0 +24102,25,14,13,0.0 +24102,11,21,44,0.0 +24102,26,31.23,48,0.0 +24102,52,7,4,0.0 +24102,33,2.5,28,0.0 +24102,58,13.25,7,0.0 +24103,61,28.5,4,0.0 +24103,62,49.3,24,0.0 +24103,71,21.5,40,0.0 +24103,54,7.45,29,0.0 +24103,32,32,33,0.0 +24103,64,33.25,44,0.0 +24103,5,21.35,41,0.0 +24103,59,55,7,0.0 +24103,49,20,13,0.0 +24103,63,43.9,42,0.0 +24103,52,7,12,0.0 +24103,1,18,36,0.0 +24103,22,21,21,0.0 +24103,68,12.5,7,0.0 +24103,28,45.6,10,0.0 +24103,34,14,15,0.0 +24103,23,9,25,0.0 +24103,57,19.5,49,0.0 +24103,39,18,19,0.0 +24103,15,15.5,23,0.0 +24104,76,18,4,0.0 +24104,61,28.5,4,0.0 +24104,7,30,39,0.0 +24104,17,39,9,0.0 +24104,51,53,40,0.0 +24104,68,12.5,44,0.0 +24104,74,10,26,0.0 +24104,64,33.25,49,0.0 +24104,48,12.75,26,0.0 +24104,75,7.75,18,0.0 +24104,15,15.5,25,0.0 +24104,2,19,11,0.0 +24104,53,32.8,28,0.0 +24104,66,17,25,0.0 +24104,58,13.25,47,0.0 +24104,18,62.5,44,0.0 +24104,25,14,34,0.0 +24104,46,12,22,0.0 +24104,38,263.5,40,0.0 +24104,73,15,14,0.0 +24105,61,28.5,40,0.0 +24105,17,39,40,0.0 +24105,40,18.4,17,0.0 +24105,49,20,18,0.0 +24105,70,15,25,0.0 +24105,74,10,41,0.0 +24105,43,46,29,0.0 +24105,60,34,8,0.0 +24105,9,97,29,0.0 +24105,46,12,6,0.0 +24105,28,45.6,2,0.0 +24105,10,31,9,0.0 +24105,19,9.2,22,0.0 +24105,45,9.5,19,0.0 +24105,20,81,17,0.0 +24105,37,26,42,0.0 +24105,65,21.05,7,0.0 +24105,6,25,49,0.0 +24105,52,7,8,0.0 +24105,50,16.25,39,0.0 +24105,5,21.35,25,0.0 +24105,66,17,10,0.0 +24105,1,18,15,0.0 +24105,32,32,14,0.0 +24105,2,19,13,0.0 +24105,27,43.9,39,0.0 +24105,23,9,23,0.0 +24105,42,14,32,0.0 +24105,72,34.8,8,0.0 +24105,41,9.65,12,0.0 +24105,54,7.45,49,0.0 +24105,76,18,14,0.0 +24105,48,12.75,7,0.0 +24105,14,23.25,47,0.0 +24105,69,36,48,0.0 +24105,18,62.5,40,0.0 +24105,16,17.45,41,0.0 +24105,34,14,23,0.0 +24105,21,10,37,0.0 +24105,56,38,4,0.0 +24105,7,30,44,0.0 +24105,35,18,2,0.0 +24105,62,49.3,18,0.0 +24105,4,22,40,0.0 +24105,12,38,6,0.0 +24105,75,7.75,24,0.0 +24105,68,12.5,17,0.0 +24105,29,123.79,38,0.0 +24105,26,31.23,13,0.0 +24105,38,263.5,31,0.0 +24105,3,10,19,0.0 +24105,58,13.25,14,0.0 +24106,71,21.5,26,0.0 +24106,3,10,46,0.0 +24106,77,13,42,0.0 +24106,31,12.5,19,0.0 +24106,35,18,8,0.0 +24106,38,263.5,45,0.0 +24106,6,25,35,0.0 +24106,47,9.5,47,0.0 +24106,7,30,41,0.0 +24106,32,32,49,0.0 +24106,45,9.5,36,0.0 +24106,13,6,10,0.0 +24106,43,46,21,0.0 +24106,11,21,34,0.0 +24106,17,39,22,0.0 +24106,4,22,50,0.0 +24106,57,19.5,15,0.0 +24106,25,14,11,0.0 +24106,72,34.8,27,0.0 +24106,52,7,38,0.0 +24106,33,2.5,11,0.0 +24106,68,12.5,32,0.0 +24106,9,97,36,0.0 +24106,20,81,45,0.0 +24106,23,9,15,0.0 +24106,10,31,32,0.0 +24106,49,20,34,0.0 +24106,22,21,44,0.0 +24106,66,17,43,0.0 +24106,59,55,20,0.0 +24106,8,40,19,0.0 +24106,41,9.65,29,0.0 +24106,54,7.45,19,0.0 +24106,69,36,1,0.0 +24106,15,15.5,8,0.0 +24106,2,19,43,0.0 +24106,51,53,1,0.0 +24106,36,19,31,0.0 +24106,39,18,16,0.0 +24106,74,10,11,0.0 +24106,58,13.25,11,0.0 +24106,37,26,34,0.0 +24106,30,25.89,47,0.0 +24106,14,23.25,50,0.0 +24106,62,49.3,23,0.0 +24106,65,21.05,35,0.0 +24106,21,10,34,0.0 +24106,46,12,21,0.0 +24106,42,14,31,0.0 +24106,70,15,14,0.0 +24106,56,38,8,0.0 +24106,61,28.5,12,0.0 +24106,34,14,41,0.0 +24106,50,16.25,17,0.0 +24106,19,9.2,25,0.0 +24106,53,32.8,4,0.0 +24106,5,21.35,20,0.0 +24106,24,4.5,28,0.0 +24106,18,62.5,13,0.0 +24106,67,14,16,0.0 +24106,64,33.25,50,0.0 +24106,28,45.6,50,0.0 +24106,40,18.4,42,0.0 +24106,1,18,17,0.0 +24106,55,24,39,0.0 +24106,26,31.23,31,0.0 +24106,75,7.75,11,0.0 +24106,27,43.9,20,0.0 +24106,16,17.45,6,0.0 +24106,29,123.79,18,0.0 +24107,10,31,13,0.0 +24107,74,10,17,0.0 +24107,18,62.5,1,0.0 +24107,38,263.5,32,0.0 +24107,19,9.2,15,0.0 +24107,27,43.9,13,0.0 +24107,44,19.45,30,0.0 +24107,72,34.8,7,0.0 +24107,25,14,33,0.0 +24107,26,31.23,3,0.0 +24107,29,123.79,36,0.0 +24107,22,21,35,0.0 +24107,50,16.25,23,0.0 +24107,61,28.5,34,0.0 +24107,16,17.45,23,0.0 +24107,11,21,49,0.0 +24107,47,9.5,21,0.0 +24107,42,14,28,0.0 +24107,5,21.35,7,0.0 +24107,41,9.65,43,0.0 +24107,8,40,11,0.0 +24107,71,21.5,47,0.0 +24107,51,53,37,0.0 +24107,45,9.5,13,0.0 +24107,77,13,29,0.0 +24107,67,14,38,0.0 +24107,65,21.05,48,0.0 +24107,60,34,38,0.0 +24107,34,14,37,0.0 +24107,28,45.6,9,0.0 +24107,68,12.5,30,0.0 +24107,43,46,48,0.0 +24107,48,12.75,31,0.0 +24107,13,6,25,0.0 +24107,73,15,1,0.0 +24107,7,30,39,0.0 +24107,24,4.5,30,0.0 +24107,75,7.75,9,0.0 +24107,30,25.89,30,0.0 +24107,15,15.5,50,0.0 +24107,20,81,28,0.0 +24107,32,32,14,0.0 +24107,31,12.5,9,0.0 +24107,35,18,21,0.0 +24107,21,10,12,0.0 +24107,17,39,25,0.0 +24107,66,17,22,0.0 +24107,1,18,40,0.0 +24107,63,43.9,33,0.0 +24107,52,7,12,0.0 +24107,62,49.3,5,0.0 +24107,3,10,42,0.0 +24107,4,22,28,0.0 +24107,39,18,46,0.0 +24107,9,97,4,0.0 +24107,12,38,3,0.0 +24107,54,7.45,50,0.0 +24108,40,18.4,43,0.0 +24108,50,16.25,16,0.0 +24108,24,4.5,23,0.0 +24109,64,33.25,35,0.0 +24109,76,18,5,0.0 +24109,71,21.5,5,0.0 +24109,31,12.5,5,0.0 +24109,30,25.89,31,0.0 +24109,4,22,33,0.0 +24109,57,19.5,38,0.0 +24109,5,21.35,38,0.0 +24109,34,14,37,0.0 +24109,28,45.6,14,0.0 +24109,26,31.23,14,0.0 +24109,22,21,38,0.0 +24109,15,15.5,50,0.0 +24109,20,81,19,0.0 +24109,21,10,29,0.0 +24109,19,9.2,40,0.0 +24109,59,55,15,0.0 +24109,6,25,21,0.0 +24109,27,43.9,2,0.0 +24109,17,39,38,0.0 +24109,68,12.5,4,0.0 +24109,11,21,18,0.0 +24109,47,9.5,27,0.0 +24109,49,20,38,0.0 +24109,2,19,49,0.0 +24109,39,18,36,0.0 +24109,35,18,16,0.0 +24109,66,17,47,0.0 +24109,40,18.4,13,0.0 +24109,55,24,29,0.0 +24109,8,40,25,0.0 +24109,56,38,33,0.0 +24109,42,14,40,0.0 +24109,18,62.5,1,0.0 +24109,75,7.75,3,0.0 +24109,37,26,44,0.0 +24109,45,9.5,15,0.0 +24109,16,17.45,22,0.0 +24109,25,14,13,0.0 +24109,41,9.65,26,0.0 +24109,13,6,22,0.0 +24109,69,36,49,0.0 +24109,32,32,10,0.0 +24109,44,19.45,45,0.0 +24109,61,28.5,6,0.0 +24109,63,43.9,24,0.0 +24109,43,46,50,0.0 +24109,10,31,12,0.0 +24109,33,2.5,33,0.0 +24109,24,4.5,7,0.0 +24109,53,32.8,20,0.0 +24109,62,49.3,27,0.0 +24109,50,16.25,45,0.0 +24109,52,7,6,0.0 +24109,36,19,13,0.0 +24109,46,12,5,0.0 +24109,3,10,11,0.0 +24109,29,123.79,7,0.0 +24109,58,13.25,9,0.0 +24109,54,7.45,2,0.0 +24109,9,97,50,0.0 +24109,73,15,38,0.0 +24109,65,21.05,35,0.0 +24109,72,34.8,5,0.0 +24109,38,263.5,4,0.0 +24109,70,15,5,0.0 +24109,7,30,29,0.0 +24109,67,14,25,0.0 +24109,1,18,45,0.0 +24109,77,13,22,0.0 +24109,14,23.25,27,0.0 +24109,60,34,24,0.0 +24110,18,62.5,3,0.0 +24110,47,9.5,47,0.0 +24110,8,40,42,0.0 +24110,31,12.5,11,0.0 +24110,70,15,31,0.0 +24110,51,53,10,0.0 +24110,20,81,13,0.0 +24110,49,20,23,0.0 +24110,67,14,8,0.0 +24110,41,9.65,34,0.0 +24110,9,97,35,0.0 +24110,59,55,9,0.0 +24110,2,19,37,0.0 +24110,30,25.89,42,0.0 +24110,54,7.45,12,0.0 +24110,7,30,40,0.0 +24110,72,34.8,18,0.0 +24110,53,32.8,41,0.0 +24110,65,21.05,35,0.0 +24110,75,7.75,11,0.0 +24110,74,10,8,0.0 +24110,63,43.9,6,0.0 +24110,55,24,10,0.0 +24110,22,21,45,0.0 +24110,43,46,24,0.0 +24110,71,21.5,42,0.0 +24110,5,21.35,23,0.0 +24110,61,28.5,10,0.0 +24110,16,17.45,41,0.0 +24110,6,25,14,0.0 +24110,1,18,8,0.0 +24110,28,45.6,29,0.0 +24110,48,12.75,37,0.0 +24110,25,14,44,0.0 +24110,60,34,40,0.0 +24110,34,14,40,0.0 +24110,36,19,31,0.0 +24110,4,22,7,0.0 +24110,3,10,10,0.0 +24110,35,18,41,0.0 +24110,39,18,47,0.0 +24110,69,36,44,0.0 +24110,66,17,34,0.0 +24110,24,4.5,5,0.0 +24110,21,10,21,0.0 +24110,44,19.45,22,0.0 +24110,27,43.9,25,0.0 +24110,45,9.5,39,0.0 +24110,77,13,27,0.0 +24110,64,33.25,25,0.0 +24110,17,39,4,0.0 +24110,10,31,10,0.0 +24110,32,32,28,0.0 +24110,56,38,12,0.0 +24110,19,9.2,4,0.0 +24110,58,13.25,42,0.0 +24110,13,6,33,0.0 +24110,50,16.25,17,0.0 +24110,15,15.5,12,0.0 +24110,12,38,7,0.0 +24110,26,31.23,29,0.0 +24110,76,18,20,0.0 +24110,33,2.5,50,0.0 +24110,42,14,4,0.0 +24110,38,263.5,6,0.0 +24110,14,23.25,5,0.0 +24110,23,9,10,0.0 +24110,62,49.3,30,0.0 +24110,52,7,27,0.0 +24111,4,22,13,0.0 +24111,41,9.65,6,0.0 +24111,33,2.5,30,0.0 +24111,46,12,19,0.0 +24111,17,39,42,0.0 +24111,8,40,9,0.0 +24111,65,21.05,32,0.0 +24111,7,30,34,0.0 +24111,48,12.75,32,0.0 +24111,21,10,30,0.0 +24111,13,6,23,0.0 +24111,40,18.4,12,0.0 +24111,1,18,5,0.0 +24111,30,25.89,23,0.0 +24111,42,14,31,0.0 +24111,12,38,29,0.0 +24111,32,32,43,0.0 +24111,31,12.5,50,0.0 +24111,37,26,30,0.0 +24111,68,12.5,4,0.0 +24111,55,24,28,0.0 +24111,70,15,49,0.0 +24111,51,53,3,0.0 +24111,10,31,28,0.0 +24111,64,33.25,5,0.0 +24111,39,18,1,0.0 +24111,14,23.25,34,0.0 +24111,26,31.23,48,0.0 +24111,71,21.5,26,0.0 +24111,5,21.35,20,0.0 +24111,52,7,4,0.0 +24111,29,123.79,30,0.0 +24111,63,43.9,35,0.0 +24111,34,14,45,0.0 +24111,35,18,40,0.0 +24111,76,18,49,0.0 +24111,49,20,36,0.0 +24111,3,10,43,0.0 +24111,20,81,31,0.0 +24111,16,17.45,34,0.0 +24111,18,62.5,6,0.0 +24111,24,4.5,19,0.0 +24111,58,13.25,13,0.0 +24111,2,19,12,0.0 +24111,61,28.5,45,0.0 +24111,59,55,20,0.0 +24111,72,34.8,6,0.0 +24111,25,14,47,0.0 +24111,6,25,23,0.0 +24111,11,21,35,0.0 +24111,56,38,18,0.0 +24111,66,17,24,0.0 +24111,23,9,3,0.0 +24111,69,36,7,0.0 +24111,22,21,1,0.0 +24111,50,16.25,21,0.0 +24111,73,15,5,0.0 +24111,38,263.5,8,0.0 +24111,54,7.45,29,0.0 +24111,28,45.6,48,0.0 +24111,47,9.5,50,0.0 +24111,62,49.3,40,0.0 +24111,43,46,27,0.0 +24111,9,97,29,0.0 +24111,36,19,27,0.0 +24111,27,43.9,20,0.0 +24111,57,19.5,48,0.0 +24111,75,7.75,21,0.0 +24111,45,9.5,47,0.0 +24111,15,15.5,36,0.0 +24111,77,13,28,0.0 +24112,67,14,49,0.0 +24112,65,21.05,47,0.0 +24112,36,19,19,0.0 +24112,8,40,20,0.0 +24112,12,38,44,0.0 +24112,31,12.5,45,0.0 +24112,54,7.45,29,0.0 +24112,4,22,1,0.0 +24112,59,55,5,0.0 +24112,50,16.25,9,0.0 +24112,3,10,27,0.0 +24112,21,10,23,0.0 +24112,29,123.79,45,0.0 +24112,69,36,14,0.0 +24112,26,31.23,35,0.0 +24112,40,18.4,22,0.0 +24112,37,26,47,0.0 +24112,41,9.65,13,0.0 +24112,43,46,19,0.0 +24112,76,18,13,0.0 +24112,27,43.9,18,0.0 +24112,35,18,31,0.0 +24112,17,39,8,0.0 +24112,28,45.6,13,0.0 +24112,2,19,9,0.0 +24113,46,12,14,0.0 +24113,5,21.35,21,0.0 +24113,64,33.25,10,0.0 +24113,3,10,4,0.0 +24113,39,18,14,0.0 +24113,56,38,33,0.0 +24113,67,14,45,0.0 +24113,36,19,21,0.0 +24113,4,22,20,0.0 +24113,66,17,41,0.0 +24113,10,31,47,0.0 +24113,61,28.5,36,0.0 +24113,26,31.23,33,0.0 +24113,47,9.5,30,0.0 +24113,75,7.75,10,0.0 +24113,9,97,18,0.0 +24113,27,43.9,32,0.0 +24113,53,32.8,19,0.0 +24113,6,25,33,0.0 +24113,15,15.5,3,0.0 +24113,37,26,21,0.0 +24113,74,10,39,0.0 +24113,21,10,28,0.0 +24113,28,45.6,35,0.0 +24113,34,14,5,0.0 +24113,60,34,46,0.0 +24113,7,30,25,0.0 +24113,2,19,9,0.0 +24113,12,38,9,0.0 +24113,35,18,50,0.0 +24113,44,19.45,33,0.0 +24113,68,12.5,18,0.0 +24113,11,21,28,0.0 +24113,42,14,24,0.0 +24113,69,36,48,0.0 +24113,76,18,17,0.0 +24113,25,14,30,0.0 +24113,55,24,34,0.0 +24113,29,123.79,21,0.0 +24113,62,49.3,20,0.0 +24113,18,62.5,22,0.0 +24113,51,53,26,0.0 +24113,8,40,1,0.0 +24113,1,18,6,0.0 +24113,40,18.4,21,0.0 +24113,48,12.75,25,0.0 +24113,52,7,16,0.0 +24113,23,9,43,0.0 +24113,72,34.8,29,0.0 +24114,35,18,26,0.0 +24114,57,19.5,8,0.0 +24114,1,18,34,0.0 +24114,40,18.4,13,0.0 +24114,74,10,44,0.0 +24114,11,21,42,0.0 +24114,70,15,23,0.0 +24114,65,21.05,21,0.0 +24114,46,12,19,0.0 +24114,6,25,30,0.0 +24114,63,43.9,28,0.0 +24115,47,9.5,16,0.0 +24115,68,12.5,50,0.0 +24115,66,17,37,0.0 +24115,53,32.8,22,0.0 +24115,3,10,24,0.0 +24115,11,21,13,0.0 +24115,27,43.9,20,0.0 +24116,54,7.45,12,0.0 +24116,3,10,1,0.0 +24116,46,12,49,0.0 +24116,29,123.79,23,0.0 +24116,30,25.89,43,0.0 +24116,42,14,50,0.0 +24116,25,14,49,0.0 +24116,67,14,33,0.0 +24116,13,6,46,0.0 +24116,4,22,8,0.0 +24116,15,15.5,18,0.0 +24116,20,81,3,0.0 +24116,36,19,14,0.0 +24116,57,19.5,5,0.0 +24116,69,36,12,0.0 +24117,11,21,1,0.0 +24117,32,32,33,0.0 +24117,53,32.8,49,0.0 +24117,24,4.5,8,0.0 +24117,12,38,16,0.0 +24117,68,12.5,24,0.0 +24117,62,49.3,21,0.0 +24117,60,34,33,0.0 +24117,67,14,34,0.0 +24117,74,10,17,0.0 +24117,55,24,17,0.0 +24117,14,23.25,18,0.0 +24117,2,19,39,0.0 +24117,40,18.4,37,0.0 +24117,61,28.5,22,0.0 +24117,15,15.5,28,0.0 +24117,50,16.25,22,0.0 +24117,54,7.45,23,0.0 +24117,56,38,26,0.0 +24117,42,14,30,0.0 +24117,26,31.23,3,0.0 +24117,25,14,30,0.0 +24117,28,45.6,26,0.0 +24117,5,21.35,22,0.0 +24117,49,20,37,0.0 +24117,16,17.45,9,0.0 +24117,38,263.5,19,0.0 +24117,9,97,49,0.0 +24117,4,22,34,0.0 +24117,6,25,16,0.0 +24117,31,12.5,31,0.0 +24117,46,12,6,0.0 +24117,44,19.45,17,0.0 +24117,3,10,45,0.0 +24117,22,21,27,0.0 +24117,58,13.25,13,0.0 +24117,19,9.2,43,0.0 +24117,35,18,41,0.0 +24117,43,46,47,0.0 +24117,37,26,40,0.0 +24117,48,12.75,29,0.0 +24117,72,34.8,32,0.0 +24117,34,14,48,0.0 +24117,77,13,39,0.0 +24117,36,19,22,0.0 +24117,71,21.5,35,0.0 +24117,45,9.5,40,0.0 +24117,23,9,8,0.0 +24117,47,9.5,36,0.0 +24118,58,13.25,41,0.0 +24118,51,53,5,0.0 +24118,3,10,25,0.0 +24118,65,21.05,26,0.0 +24118,16,17.45,23,0.0 +24119,3,10,44,0.0 +24119,73,15,44,0.0 +24119,48,12.75,41,0.0 +24119,31,12.5,30,0.0 +24119,28,45.6,48,0.0 +24119,74,10,16,0.0 +24119,2,19,26,0.0 +24119,17,39,17,0.0 +24119,22,21,12,0.0 +24119,29,123.79,19,0.0 +24119,36,19,41,0.0 +24119,59,55,50,0.0 +24119,63,43.9,48,0.0 +24119,24,4.5,11,0.0 +24119,69,36,49,0.0 +24119,71,21.5,2,0.0 +24119,54,7.45,14,0.0 +24119,7,30,2,0.0 +24119,6,25,4,0.0 +24119,66,17,7,0.0 +24120,67,14,10,0.0 +24120,33,2.5,16,0.0 +24120,7,30,48,0.0 +24120,21,10,2,0.0 +24120,31,12.5,12,0.0 +24120,4,22,15,0.0 +24120,68,12.5,41,0.0 +24120,47,9.5,12,0.0 +24120,66,17,46,0.0 +24120,41,9.65,48,0.0 +24120,37,26,47,0.0 +24120,48,12.75,5,0.0 +24120,42,14,13,0.0 +24120,54,7.45,10,0.0 +24120,71,21.5,12,0.0 +24120,36,19,23,0.0 +24120,63,43.9,18,0.0 +24120,74,10,6,0.0 +24120,5,21.35,28,0.0 +24120,69,36,50,0.0 +24120,15,15.5,27,0.0 +24120,9,97,35,0.0 +24120,75,7.75,17,0.0 +24121,68,12.5,40,0.0 +24121,13,6,13,0.0 +24121,54,7.45,35,0.0 +24121,30,25.89,8,0.0 +24121,45,9.5,13,0.0 +24121,35,18,6,0.0 +24121,18,62.5,18,0.0 +24121,7,30,35,0.0 +24121,46,12,30,0.0 +24121,63,43.9,4,0.0 +24121,53,32.8,22,0.0 +24121,4,22,42,0.0 +24121,29,123.79,33,0.0 +24121,77,13,9,0.0 +24121,14,23.25,5,0.0 +24121,31,12.5,1,0.0 +24121,51,53,31,0.0 +24121,3,10,4,0.0 +24121,32,32,50,0.0 +24121,74,10,10,0.0 +24121,62,49.3,38,0.0 +24121,61,28.5,45,0.0 +24121,75,7.75,11,0.0 +24121,15,15.5,36,0.0 +24121,44,19.45,24,0.0 +24121,22,21,8,0.0 +24121,24,4.5,1,0.0 +24121,36,19,20,0.0 +24121,55,24,20,0.0 +24121,1,18,12,0.0 +24121,12,38,32,0.0 +24121,64,33.25,1,0.0 +24121,66,17,14,0.0 +24121,69,36,1,0.0 +24121,60,34,24,0.0 +24121,16,17.45,6,0.0 +24121,73,15,12,0.0 +24121,20,81,2,0.0 +24121,9,97,42,0.0 +24122,51,53,2,0.0 +24122,29,123.79,10,0.0 +24122,71,21.5,13,0.0 +24122,20,81,26,0.0 +24122,62,49.3,6,0.0 +24122,22,21,34,0.0 +24122,17,39,5,0.0 +24122,30,25.89,45,0.0 +24122,48,12.75,48,0.0 +24122,68,12.5,37,0.0 +24122,6,25,17,0.0 +24122,43,46,41,0.0 +24122,58,13.25,2,0.0 +24122,3,10,44,0.0 +24122,10,31,22,0.0 +24122,31,12.5,19,0.0 +24122,7,30,30,0.0 +24122,1,18,13,0.0 +24122,52,7,40,0.0 +24122,36,19,9,0.0 +24122,50,16.25,3,0.0 +24122,53,32.8,33,0.0 +24122,12,38,17,0.0 +24122,13,6,26,0.0 +24122,28,45.6,25,0.0 +24122,60,34,26,0.0 +24122,55,24,33,0.0 +24122,47,9.5,20,0.0 +24122,26,31.23,39,0.0 +24122,4,22,13,0.0 +24122,54,7.45,29,0.0 +24122,49,20,3,0.0 +24122,21,10,14,0.0 +24122,46,12,5,0.0 +24122,65,21.05,32,0.0 +24122,64,33.25,21,0.0 +24122,5,21.35,46,0.0 +24122,32,32,31,0.0 +24122,34,14,32,0.0 +24122,18,62.5,8,0.0 +24122,76,18,28,0.0 +24122,37,26,37,0.0 +24122,75,7.75,41,0.0 +24122,72,34.8,6,0.0 +24122,14,23.25,6,0.0 +24122,73,15,36,0.0 +24122,45,9.5,30,0.0 +24122,59,55,23,0.0 +24122,74,10,31,0.0 +24122,2,19,44,0.0 +24122,41,9.65,36,0.0 +24122,33,2.5,39,0.0 +24122,57,19.5,22,0.0 +24122,39,18,47,0.0 +24122,25,14,10,0.0 +24122,56,38,5,0.0 +24122,42,14,12,0.0 +24122,69,36,10,0.0 +24123,54,7.45,50,0.0 +24123,6,25,50,0.0 +24123,3,10,18,0.0 +24123,8,40,25,0.0 +24123,26,31.23,4,0.0 +24123,51,53,1,0.0 +24123,76,18,2,0.0 +24123,31,12.5,45,0.0 +24123,49,20,35,0.0 +24123,74,10,41,0.0 +24123,56,38,5,0.0 +24123,41,9.65,41,0.0 +24123,67,14,18,0.0 +24123,64,33.25,8,0.0 +24123,20,81,12,0.0 +24123,28,45.6,2,0.0 +24123,75,7.75,46,0.0 +24123,72,34.8,44,0.0 +24123,44,19.45,30,0.0 +24123,7,30,45,0.0 +24123,34,14,22,0.0 +24123,18,62.5,32,0.0 +24123,55,24,3,0.0 +24123,12,38,48,0.0 +24123,77,13,30,0.0 +24123,57,19.5,27,0.0 +24123,46,12,31,0.0 +24123,50,16.25,23,0.0 +24123,16,17.45,32,0.0 +24123,68,12.5,4,0.0 +24123,4,22,18,0.0 +24123,23,9,44,0.0 +24123,14,23.25,39,0.0 +24123,60,34,12,0.0 +24123,25,14,3,0.0 +24123,66,17,41,0.0 +24123,53,32.8,32,0.0 +24123,52,7,29,0.0 +24123,19,9.2,11,0.0 +24123,58,13.25,1,0.0 +24123,24,4.5,29,0.0 +24123,10,31,40,0.0 +24123,17,39,13,0.0 +24123,73,15,37,0.0 +24123,71,21.5,44,0.0 +24123,15,15.5,4,0.0 +24123,27,43.9,22,0.0 +24123,32,32,15,0.0 +24123,30,25.89,24,0.0 +24123,39,18,41,0.0 +24123,1,18,35,0.0 +24123,5,21.35,10,0.0 +24123,37,26,4,0.0 +24123,62,49.3,26,0.0 +24123,38,263.5,33,0.0 +24123,35,18,39,0.0 +24123,40,18.4,20,0.0 +24123,61,28.5,50,0.0 +24123,42,14,50,0.0 +24123,29,123.79,6,0.0 +24123,63,43.9,30,0.0 +24123,69,36,30,0.0 +24123,13,6,13,0.0 +24123,33,2.5,40,0.0 +24123,22,21,29,0.0 +24123,48,12.75,43,0.0 +24123,21,10,1,0.0 +24123,2,19,13,0.0 +24123,70,15,24,0.0 +24123,47,9.5,18,0.0 +24124,67,14,21,0.0 +24124,20,81,46,0.0 +24124,23,9,34,0.0 +24124,35,18,19,0.0 +24124,59,55,19,0.0 +24124,69,36,27,0.0 +24124,1,18,5,0.0 +24124,7,30,28,0.0 +24124,73,15,12,0.0 +24124,76,18,49,0.0 +24124,26,31.23,16,0.0 +24124,57,19.5,42,0.0 +24124,28,45.6,13,0.0 +24124,62,49.3,11,0.0 +24124,45,9.5,42,0.0 +24124,24,4.5,38,0.0 +24124,8,40,25,0.0 +24124,27,43.9,41,0.0 +24124,61,28.5,17,0.0 +24124,51,53,34,0.0 +24124,33,2.5,28,0.0 +24124,30,25.89,13,0.0 +24124,34,14,16,0.0 +24124,15,15.5,25,0.0 +24124,2,19,29,0.0 +24124,39,18,23,0.0 +24124,47,9.5,4,0.0 +24124,58,13.25,39,0.0 +24124,25,14,22,0.0 +24124,37,26,46,0.0 +24124,72,34.8,30,0.0 +24124,16,17.45,2,0.0 +24124,49,20,11,0.0 +24124,77,13,38,0.0 +24124,29,123.79,12,0.0 +24124,3,10,15,0.0 +24124,38,263.5,11,0.0 +24124,36,19,10,0.0 +24124,11,21,14,0.0 +24124,64,33.25,16,0.0 +24124,55,24,10,0.0 +24124,44,19.45,21,0.0 +24124,71,21.5,44,0.0 +24124,53,32.8,17,0.0 +24124,43,46,45,0.0 +24124,10,31,34,0.0 +24124,12,38,48,0.0 +24124,50,16.25,9,0.0 +24124,60,34,17,0.0 +24125,74,10,20,0.0 +24125,55,24,28,0.0 +24125,1,18,1,0.0 +24125,3,10,35,0.0 +24125,46,12,33,0.0 +24126,40,18.4,5,0.0 +24126,29,123.79,11,0.0 +24126,12,38,3,0.0 +24126,20,81,5,0.0 +24126,53,32.8,14,0.0 +24126,37,26,47,0.0 +24126,70,15,37,0.0 +24126,55,24,46,0.0 +24126,34,14,22,0.0 +24126,61,28.5,45,0.0 +24126,44,19.45,14,0.0 +24126,33,2.5,32,0.0 +24126,13,6,22,0.0 +24126,47,9.5,32,0.0 +24126,21,10,37,0.0 +24126,60,34,44,0.0 +24126,23,9,27,0.0 +24126,3,10,29,0.0 +24126,67,14,36,0.0 +24126,50,16.25,21,0.0 +24126,49,20,39,0.0 +24126,31,12.5,10,0.0 +24126,2,19,39,0.0 +24126,9,97,45,0.0 +24126,63,43.9,47,0.0 +24126,18,62.5,42,0.0 +24126,51,53,22,0.0 +24126,10,31,7,0.0 +24126,35,18,40,0.0 +24126,66,17,5,0.0 +24126,16,17.45,41,0.0 +24126,14,23.25,16,0.0 +24126,27,43.9,34,0.0 +24126,45,9.5,19,0.0 +24126,28,45.6,32,0.0 +24126,58,13.25,8,0.0 +24126,11,21,38,0.0 +24126,22,21,29,0.0 +24126,8,40,41,0.0 +24126,46,12,43,0.0 +24126,24,4.5,15,0.0 +24126,6,25,31,0.0 +24126,41,9.65,8,0.0 +24126,65,21.05,41,0.0 +24126,59,55,26,0.0 +24126,62,49.3,24,0.0 +24126,25,14,40,0.0 +24126,30,25.89,5,0.0 +24126,26,31.23,15,0.0 +24126,39,18,16,0.0 +24126,57,19.5,46,0.0 +24126,74,10,10,0.0 +24126,42,14,10,0.0 +24126,64,33.25,46,0.0 +24126,19,9.2,26,0.0 +24126,48,12.75,2,0.0 +24126,56,38,7,0.0 +24126,17,39,36,0.0 +24126,76,18,9,0.0 +24126,54,7.45,27,0.0 +24126,52,7,15,0.0 +24126,36,19,15,0.0 +24126,5,21.35,44,0.0 +24126,1,18,32,0.0 +24126,43,46,6,0.0 +24126,38,263.5,3,0.0 +24126,77,13,32,0.0 +24126,71,21.5,29,0.0 +24126,69,36,48,0.0 +24127,20,81,33,0.0 +24127,40,18.4,26,0.0 +24127,36,19,4,0.0 +24127,49,20,32,0.0 +24127,24,4.5,42,0.0 +24127,51,53,8,0.0 +24127,77,13,40,0.0 +24127,71,21.5,50,0.0 +24127,6,25,44,0.0 +24127,15,15.5,9,0.0 +24127,10,31,11,0.0 +24127,31,12.5,40,0.0 +24127,62,49.3,30,0.0 +24127,43,46,9,0.0 +24127,67,14,41,0.0 +24127,48,12.75,14,0.0 +24127,5,21.35,40,0.0 +24127,23,9,7,0.0 +24127,7,30,47,0.0 +24127,29,123.79,12,0.0 +24127,59,55,4,0.0 +24127,76,18,7,0.0 +24127,61,28.5,45,0.0 +24127,34,14,21,0.0 +24127,8,40,33,0.0 +24127,26,31.23,5,0.0 +24127,33,2.5,29,0.0 +24127,39,18,50,0.0 +24127,17,39,16,0.0 +24127,50,16.25,34,0.0 +24127,18,62.5,16,0.0 +24127,30,25.89,45,0.0 +24127,27,43.9,10,0.0 +24127,64,33.25,16,0.0 +24127,68,12.5,24,0.0 +24128,29,123.79,9,0.0 +24128,2,19,21,0.0 +24128,51,53,37,0.0 +24128,62,49.3,32,0.0 +24128,36,19,3,0.0 +24128,52,7,45,0.0 +24128,17,39,23,0.0 +24128,44,19.45,29,0.0 +24128,63,43.9,34,0.0 +24128,15,15.5,2,0.0 +24128,27,43.9,7,0.0 +24128,74,10,14,0.0 +24128,39,18,47,0.0 +24128,18,62.5,20,0.0 +24128,11,21,45,0.0 +24128,12,38,36,0.0 +24128,5,21.35,35,0.0 +24128,16,17.45,41,0.0 +24128,61,28.5,38,0.0 +24128,14,23.25,5,0.0 +24128,19,9.2,9,0.0 +24128,4,22,5,0.0 +24129,59,55,9,0.0 +24129,64,33.25,10,0.0 +24129,42,14,1,0.0 +24129,53,32.8,4,0.0 +24129,40,18.4,38,0.0 +24129,4,22,28,0.0 +24129,10,31,17,0.0 +24129,12,38,12,0.0 +24129,52,7,15,0.0 +24129,16,17.45,16,0.0 +24129,75,7.75,36,0.0 +24129,7,30,11,0.0 +24129,61,28.5,15,0.0 +24129,37,26,43,0.0 +24129,5,21.35,37,0.0 +24129,74,10,47,0.0 +24129,21,10,5,0.0 +24129,29,123.79,19,0.0 +24129,32,32,1,0.0 +24129,26,31.23,35,0.0 +24129,14,23.25,40,0.0 +24129,24,4.5,13,0.0 +24130,56,38,42,0.0 +24130,42,14,11,0.0 +24130,39,18,1,0.0 +24130,35,18,27,0.0 +24130,32,32,17,0.0 +24130,6,25,31,0.0 +24130,69,36,3,0.0 +24130,19,9.2,37,0.0 +24130,74,10,3,0.0 +24130,1,18,13,0.0 +24130,41,9.65,5,0.0 +24130,61,28.5,41,0.0 +24130,27,43.9,9,0.0 +24130,22,21,35,0.0 +24130,9,97,9,0.0 +24130,60,34,34,0.0 +24130,16,17.45,42,0.0 +24130,7,30,49,0.0 +24130,40,18.4,20,0.0 +24130,68,12.5,18,0.0 +24131,48,12.75,14,0.0 +24131,42,14,42,0.0 +24131,34,14,11,0.0 +24131,49,20,16,0.0 +24131,16,17.45,38,0.0 +24131,74,10,47,0.0 +24131,33,2.5,29,0.0 +24131,11,21,9,0.0 +24131,63,43.9,48,0.0 +24131,54,7.45,23,0.0 +24131,44,19.45,9,0.0 +24131,30,25.89,48,0.0 +24131,3,10,25,0.0 +24131,10,31,25,0.0 +24131,73,15,35,0.0 +24131,47,9.5,28,0.0 +24131,24,4.5,27,0.0 +24131,72,34.8,38,0.0 +24131,52,7,27,0.0 +24131,39,18,3,0.0 +24131,19,9.2,33,0.0 +24131,65,21.05,13,0.0 +24131,77,13,10,0.0 +24131,13,6,17,0.0 +24131,59,55,25,0.0 +24131,8,40,42,0.0 +24131,67,14,34,0.0 +24131,9,97,30,0.0 +24131,56,38,47,0.0 +24131,18,62.5,15,0.0 +24131,37,26,13,0.0 +24131,20,81,22,0.0 +24131,53,32.8,36,0.0 +24131,6,25,14,0.0 +24131,75,7.75,12,0.0 +24131,15,15.5,27,0.0 +24131,5,21.35,33,0.0 +24131,69,36,39,0.0 +24131,50,16.25,13,0.0 +24131,57,19.5,11,0.0 +24131,66,17,2,0.0 +24131,45,9.5,9,0.0 +24132,69,36,13,0.0 +24132,55,24,19,0.0 +24132,54,7.45,33,0.0 +24132,46,12,11,0.0 +24132,47,9.5,10,0.0 +24132,14,23.25,14,0.0 +24132,60,34,34,0.0 +24132,30,25.89,45,0.0 +24132,24,4.5,8,0.0 +24132,43,46,29,0.0 +24132,6,25,2,0.0 +24132,5,21.35,38,0.0 +24132,71,21.5,25,0.0 +24132,66,17,28,0.0 +24132,59,55,38,0.0 +24132,57,19.5,38,0.0 +24132,68,12.5,11,0.0 +24132,34,14,32,0.0 +24132,74,10,23,0.0 +24132,70,15,21,0.0 +24132,73,15,46,0.0 +24132,48,12.75,15,0.0 +24132,35,18,37,0.0 +24132,27,43.9,29,0.0 +24132,49,20,14,0.0 +24132,40,18.4,49,0.0 +24132,44,19.45,30,0.0 +24132,28,45.6,25,0.0 +24132,77,13,14,0.0 +24132,36,19,32,0.0 +24132,52,7,11,0.0 +24132,10,31,14,0.0 +24132,62,49.3,9,0.0 +24132,61,28.5,33,0.0 +24132,58,13.25,30,0.0 +24132,53,32.8,19,0.0 +24132,13,6,1,0.0 +24133,4,22,19,0.0 +24133,10,31,14,0.0 +24133,72,34.8,14,0.0 +24133,33,2.5,9,0.0 +24133,32,32,33,0.0 +24133,13,6,9,0.0 +24133,60,34,46,0.0 +24133,11,21,25,0.0 +24133,74,10,26,0.0 +24133,76,18,16,0.0 +24133,26,31.23,27,0.0 +24133,75,7.75,5,0.0 +24133,6,25,7,0.0 +24133,57,19.5,6,0.0 +24133,53,32.8,8,0.0 +24133,54,7.45,5,0.0 +24133,24,4.5,1,0.0 +24133,34,14,26,0.0 +24133,71,21.5,23,0.0 +24133,36,19,6,0.0 +24133,46,12,12,0.0 +24133,25,14,23,0.0 +24133,14,23.25,33,0.0 +24133,1,18,46,0.0 +24133,3,10,24,0.0 +24133,31,12.5,39,0.0 +24133,8,40,8,0.0 +24134,76,18,8,0.0 +24134,44,19.45,7,0.0 +24134,65,21.05,47,0.0 +24134,1,18,27,0.0 +24134,38,263.5,5,0.0 +24134,73,15,4,0.0 +24134,25,14,15,0.0 +24134,52,7,48,0.0 +24134,12,38,25,0.0 +24134,15,15.5,37,0.0 +24134,4,22,46,0.0 +24134,19,9.2,12,0.0 +24134,32,32,30,0.0 +24134,24,4.5,11,0.0 +24134,27,43.9,36,0.0 +24134,60,34,22,0.0 +24134,51,53,5,0.0 +24134,50,16.25,1,0.0 +24134,3,10,47,0.0 +24134,77,13,43,0.0 +24134,29,123.79,10,0.0 +24134,54,7.45,47,0.0 +24134,75,7.75,30,0.0 +24134,64,33.25,11,0.0 +24134,53,32.8,29,0.0 +24134,63,43.9,26,0.0 +24134,55,24,19,0.0 +24134,30,25.89,40,0.0 +24134,21,10,18,0.0 +24134,16,17.45,13,0.0 +24134,7,30,16,0.0 +24134,71,21.5,18,0.0 +24134,74,10,25,0.0 +24134,72,34.8,23,0.0 +24134,48,12.75,36,0.0 +24134,34,14,18,0.0 +24134,5,21.35,28,0.0 +24134,2,19,31,0.0 +24134,57,19.5,49,0.0 +24134,20,81,38,0.0 +24134,58,13.25,50,0.0 +24134,49,20,6,0.0 +24134,43,46,45,0.0 +24134,61,28.5,20,0.0 +24134,23,9,8,0.0 +24134,39,18,6,0.0 +24134,59,55,9,0.0 +24134,9,97,38,0.0 +24134,68,12.5,41,0.0 +24134,41,9.65,32,0.0 +24134,35,18,37,0.0 +24134,22,21,34,0.0 +24134,18,62.5,38,0.0 +24134,28,45.6,38,0.0 +24134,8,40,5,0.0 +24134,47,9.5,22,0.0 +24134,66,17,44,0.0 +24134,42,14,33,0.0 +24134,17,39,47,0.0 +24134,11,21,47,0.0 +24134,69,36,33,0.0 +24134,67,14,39,0.0 +24134,56,38,8,0.0 +24134,37,26,24,0.0 +24134,45,9.5,7,0.0 +24134,40,18.4,21,0.0 +24134,31,12.5,32,0.0 +24134,36,19,3,0.0 +24134,70,15,1,0.0 +24134,62,49.3,13,0.0 +24134,26,31.23,42,0.0 +24134,46,12,49,0.0 +24135,12,38,12,0.0 +24135,28,45.6,28,0.0 +24135,36,19,37,0.0 +24135,73,15,27,0.0 +24135,20,81,21,0.0 +24135,62,49.3,18,0.0 +24135,67,14,29,0.0 +24135,77,13,47,0.0 +24135,26,31.23,12,0.0 +24135,44,19.45,20,0.0 +24135,17,39,11,0.0 +24135,50,16.25,40,0.0 +24135,37,26,32,0.0 +24135,11,21,42,0.0 +24135,54,7.45,34,0.0 +24135,3,10,49,0.0 +24135,38,263.5,9,0.0 +24135,69,36,22,0.0 +24135,1,18,49,0.0 +24135,23,9,41,0.0 +24135,25,14,17,0.0 +24135,64,33.25,30,0.0 +24135,70,15,46,0.0 +24135,47,9.5,16,0.0 +24135,63,43.9,12,0.0 +24135,34,14,42,0.0 +24135,71,21.5,21,0.0 +24135,76,18,12,0.0 +24135,39,18,44,0.0 +24136,19,9.2,8,0.0 +24136,33,2.5,26,0.0 +24136,44,19.45,13,0.0 +24136,40,18.4,45,0.0 +24136,60,34,38,0.0 +24136,8,40,12,0.0 +24136,36,19,21,0.0 +24136,2,19,13,0.0 +24136,25,14,33,0.0 +24136,31,12.5,29,0.0 +24136,47,9.5,14,0.0 +24136,39,18,18,0.0 +24136,67,14,6,0.0 +24136,14,23.25,27,0.0 +24136,21,10,11,0.0 +24136,43,46,33,0.0 +24136,71,21.5,30,0.0 +24136,26,31.23,31,0.0 +24136,54,7.45,2,0.0 +24136,74,10,5,0.0 +24136,49,20,7,0.0 +24136,32,32,13,0.0 +24136,48,12.75,47,0.0 +24136,66,17,29,0.0 +24136,59,55,24,0.0 +24136,11,21,40,0.0 +24136,42,14,7,0.0 +24136,69,36,42,0.0 +24136,30,25.89,4,0.0 +24136,77,13,22,0.0 +24136,3,10,17,0.0 +24136,17,39,18,0.0 +24136,50,16.25,12,0.0 +24136,76,18,30,0.0 +24136,72,34.8,26,0.0 +24136,29,123.79,44,0.0 +24136,46,12,12,0.0 +24136,51,53,33,0.0 +24136,52,7,44,0.0 +24136,55,24,31,0.0 +24136,38,263.5,44,0.0 +24136,61,28.5,49,0.0 +24136,7,30,47,0.0 +24136,23,9,48,0.0 +24136,56,38,16,0.0 +24136,24,4.5,5,0.0 +24136,22,21,49,0.0 +24136,10,31,19,0.0 +24136,1,18,35,0.0 +24136,57,19.5,31,0.0 +24136,35,18,24,0.0 +24136,37,26,25,0.0 +24136,70,15,35,0.0 +24136,18,62.5,21,0.0 +24136,27,43.9,6,0.0 +24136,5,21.35,19,0.0 +24136,68,12.5,28,0.0 +24136,16,17.45,30,0.0 +24136,9,97,29,0.0 +24136,13,6,45,0.0 +24136,41,9.65,18,0.0 +24136,28,45.6,21,0.0 +24136,53,32.8,33,0.0 +24136,12,38,25,0.0 +24136,6,25,14,0.0 +24136,62,49.3,25,0.0 +24136,65,21.05,11,0.0 +24136,4,22,1,0.0 +24136,58,13.25,43,0.0 +24136,20,81,40,0.0 +24136,64,33.25,13,0.0 +24137,8,40,33,0.0 +24137,12,38,15,0.0 +24137,77,13,24,0.0 +24137,54,7.45,25,0.0 +24137,37,26,4,0.0 +24137,51,53,22,0.0 +24137,19,9.2,23,0.0 +24137,71,21.5,9,0.0 +24137,24,4.5,34,0.0 +24137,58,13.25,42,0.0 +24137,43,46,46,0.0 +24137,3,10,43,0.0 +24137,34,14,12,0.0 +24137,28,45.6,48,0.0 +24137,36,19,50,0.0 +24137,66,17,8,0.0 +24137,32,32,33,0.0 +24137,64,33.25,15,0.0 +24137,26,31.23,40,0.0 +24137,57,19.5,25,0.0 +24137,69,36,11,0.0 +24137,15,15.5,49,0.0 +24137,29,123.79,48,0.0 +24137,6,25,32,0.0 +24137,65,21.05,32,0.0 +24137,53,32.8,40,0.0 +24137,76,18,49,0.0 +24137,42,14,43,0.0 +24137,74,10,42,0.0 +24137,31,12.5,35,0.0 +24137,73,15,29,0.0 +24137,61,28.5,10,0.0 +24137,11,21,2,0.0 +24137,1,18,14,0.0 +24137,59,55,33,0.0 +24137,67,14,12,0.0 +24137,17,39,29,0.0 +24137,70,15,2,0.0 +24137,48,12.75,50,0.0 +24137,56,38,50,0.0 +24137,62,49.3,2,0.0 +24137,7,30,8,0.0 +24137,38,263.5,43,0.0 +24138,53,32.8,32,0.0 +24139,62,49.3,23,0.0 +24139,57,19.5,14,0.0 +24139,72,34.8,18,0.0 +24139,50,16.25,41,0.0 +24139,77,13,4,0.0 +24139,6,25,41,0.0 +24139,55,24,47,0.0 +24139,71,21.5,19,0.0 +24139,65,21.05,40,0.0 +24139,12,38,48,0.0 +24139,25,14,29,0.0 +24139,42,14,25,0.0 +24139,31,12.5,27,0.0 +24139,70,15,34,0.0 +24139,34,14,29,0.0 +24139,26,31.23,13,0.0 +24139,5,21.35,5,0.0 +24139,49,20,27,0.0 +24139,63,43.9,5,0.0 +24139,22,21,45,0.0 +24139,58,13.25,50,0.0 +24139,4,22,34,0.0 +24139,35,18,31,0.0 +24139,67,14,28,0.0 +24139,20,81,8,0.0 +24139,32,32,50,0.0 +24139,37,26,29,0.0 +24139,23,9,38,0.0 +24139,7,30,36,0.0 +24139,24,4.5,50,0.0 +24139,10,31,48,0.0 +24139,66,17,27,0.0 +24139,19,9.2,21,0.0 +24139,69,36,13,0.0 +24139,75,7.75,31,0.0 +24139,44,19.45,3,0.0 +24139,76,18,35,0.0 +24139,51,53,48,0.0 +24139,30,25.89,25,0.0 +24139,41,9.65,37,0.0 +24139,8,40,28,0.0 +24139,64,33.25,21,0.0 +24139,33,2.5,18,0.0 +24139,53,32.8,49,0.0 +24139,1,18,11,0.0 +24139,38,263.5,39,0.0 +24139,73,15,42,0.0 +24139,29,123.79,28,0.0 +24139,27,43.9,30,0.0 +24139,13,6,24,0.0 +24139,45,9.5,32,0.0 +24139,54,7.45,26,0.0 +24139,18,62.5,7,0.0 +24139,36,19,21,0.0 +24139,46,12,23,0.0 +24139,17,39,24,0.0 +24139,61,28.5,17,0.0 +24139,11,21,47,0.0 +24140,68,12.5,16,0.0 +24140,42,14,28,0.0 +24140,30,25.89,25,0.0 +24140,25,14,26,0.0 +24140,57,19.5,16,0.0 +24140,16,17.45,42,0.0 +24140,58,13.25,36,0.0 +24140,28,45.6,8,0.0 +24140,47,9.5,10,0.0 +24140,76,18,19,0.0 +24140,8,40,34,0.0 +24140,9,97,29,0.0 +24140,51,53,25,0.0 +24140,67,14,19,0.0 +24140,62,49.3,22,0.0 +24140,12,38,33,0.0 +24140,72,34.8,22,0.0 +24140,60,34,23,0.0 +24140,3,10,35,0.0 +24140,39,18,18,0.0 +24140,31,12.5,34,0.0 +24140,49,20,50,0.0 +24140,77,13,38,0.0 +24140,29,123.79,14,0.0 +24140,48,12.75,3,0.0 +24140,64,33.25,40,0.0 +24140,1,18,25,0.0 +24140,70,15,2,0.0 +24140,41,9.65,38,0.0 +24140,13,6,7,0.0 +24140,7,30,40,0.0 +24140,15,15.5,39,0.0 +24140,61,28.5,28,0.0 +24140,74,10,41,0.0 +24140,56,38,39,0.0 +24140,6,25,15,0.0 +24140,55,24,19,0.0 +24140,18,62.5,2,0.0 +24140,10,31,18,0.0 +24140,73,15,12,0.0 +24140,35,18,4,0.0 +24140,71,21.5,42,0.0 +24140,52,7,1,0.0 +24140,36,19,25,0.0 +24140,43,46,17,0.0 +24140,4,22,23,0.0 +24140,24,4.5,8,0.0 +24140,11,21,35,0.0 +24140,63,43.9,40,0.0 +24140,40,18.4,18,0.0 +24140,38,263.5,13,0.0 +24140,46,12,41,0.0 +24140,59,55,29,0.0 +24140,44,19.45,4,0.0 +24140,66,17,1,0.0 +24140,50,16.25,36,0.0 +24140,54,7.45,21,0.0 +24140,20,81,6,0.0 +24140,23,9,34,0.0 +24140,17,39,45,0.0 +24140,33,2.5,16,0.0 +24140,53,32.8,12,0.0 +24140,65,21.05,35,0.0 +24141,24,4.5,50,0.0 +24141,29,123.79,16,0.0 +24141,77,13,16,0.0 +24141,50,16.25,1,0.0 +24141,37,26,5,0.0 +24141,14,23.25,35,0.0 +24141,18,62.5,43,0.0 +24141,49,20,21,0.0 +24141,42,14,27,0.0 +24141,47,9.5,35,0.0 +24141,72,34.8,1,0.0 +24141,57,19.5,27,0.0 +24141,58,13.25,29,0.0 +24142,73,15,48,0.0 +24142,18,62.5,3,0.0 +24142,64,33.25,29,0.0 +24142,48,12.75,30,0.0 +24142,23,9,6,0.0 +24142,8,40,28,0.0 +24142,25,14,1,0.0 +24142,9,97,27,0.0 +24142,67,14,34,0.0 +24142,13,6,30,0.0 +24142,30,25.89,43,0.0 +24142,21,10,33,0.0 +24142,5,21.35,24,0.0 +24142,11,21,37,0.0 +24142,46,12,45,0.0 +24142,51,53,24,0.0 +24142,33,2.5,9,0.0 +24142,6,25,19,0.0 +24142,41,9.65,23,0.0 +24142,17,39,22,0.0 +24142,26,31.23,15,0.0 +24142,34,14,30,0.0 +24142,75,7.75,46,0.0 +24142,56,38,38,0.0 +24142,20,81,14,0.0 +24142,31,12.5,13,0.0 +24142,50,16.25,1,0.0 +24142,76,18,10,0.0 +24142,70,15,33,0.0 +24142,43,46,5,0.0 +24142,15,15.5,10,0.0 +24142,66,17,31,0.0 +24143,70,15,41,0.0 +24143,26,31.23,10,0.0 +24143,9,97,1,0.0 +24143,55,24,11,0.0 +24143,71,21.5,35,0.0 +24143,5,21.35,8,0.0 +24143,64,33.25,1,0.0 +24143,2,19,14,0.0 +24143,58,13.25,33,0.0 +24143,15,15.5,15,0.0 +24143,8,40,37,0.0 +24143,34,14,3,0.0 +24143,6,25,12,0.0 +24143,1,18,39,0.0 +24143,35,18,39,0.0 +24143,76,18,33,0.0 +24143,67,14,20,0.0 +24143,37,26,31,0.0 +24143,46,12,39,0.0 +24143,57,19.5,43,0.0 +24143,27,43.9,19,0.0 +24143,50,16.25,45,0.0 +24143,18,62.5,11,0.0 +24143,28,45.6,8,0.0 +24143,19,9.2,19,0.0 +24143,38,263.5,2,0.0 +24143,12,38,49,0.0 +24143,74,10,10,0.0 +24143,32,32,18,0.0 +24143,14,23.25,2,0.0 +24143,23,9,14,0.0 +24143,4,22,1,0.0 +24143,39,18,39,0.0 +24143,62,49.3,7,0.0 +24143,59,55,20,0.0 +24143,11,21,14,0.0 +24143,33,2.5,21,0.0 +24143,20,81,17,0.0 +24144,63,43.9,40,0.0 +24144,6,25,44,0.0 +24144,51,53,38,0.0 +24144,65,21.05,10,0.0 +24144,10,31,34,0.0 +24144,57,19.5,9,0.0 +24144,77,13,20,0.0 +24144,37,26,6,0.0 +24144,70,15,22,0.0 +24144,31,12.5,8,0.0 +24144,38,263.5,30,0.0 +24144,8,40,8,0.0 +24144,27,43.9,14,0.0 +24144,21,10,31,0.0 +24144,22,21,22,0.0 +24144,41,9.65,34,0.0 +24144,66,17,45,0.0 +24144,45,9.5,33,0.0 +24144,75,7.75,44,0.0 +24144,28,45.6,10,0.0 +24144,71,21.5,44,0.0 +24144,68,12.5,4,0.0 +24144,17,39,26,0.0 +24144,29,123.79,47,0.0 +24144,73,15,25,0.0 +24144,44,19.45,32,0.0 +24144,4,22,27,0.0 +24144,61,28.5,21,0.0 +24144,56,38,4,0.0 +24144,13,6,38,0.0 +24144,52,7,48,0.0 +24144,39,18,26,0.0 +24144,35,18,19,0.0 +24144,34,14,11,0.0 +24144,50,16.25,7,0.0 +24144,32,32,11,0.0 +24144,3,10,34,0.0 +24144,42,14,24,0.0 +24144,2,19,2,0.0 +24144,64,33.25,49,0.0 +24144,15,15.5,1,0.0 +24144,74,10,25,0.0 +24144,48,12.75,29,0.0 +24144,69,36,12,0.0 +24144,20,81,20,0.0 +24144,5,21.35,2,0.0 +24144,49,20,37,0.0 +24144,72,34.8,49,0.0 +24144,53,32.8,39,0.0 +24144,12,38,3,0.0 +24144,58,13.25,36,0.0 +24144,9,97,24,0.0 +24144,19,9.2,31,0.0 +24144,18,62.5,47,0.0 +24144,76,18,21,0.0 +24144,40,18.4,3,0.0 +24145,20,81,48,0.0 +24145,30,25.89,17,0.0 +24145,9,97,42,0.0 +24145,52,7,7,0.0 +24145,65,21.05,43,0.0 +24145,37,26,34,0.0 +24145,8,40,25,0.0 +24145,62,49.3,43,0.0 +24145,71,21.5,43,0.0 +24145,36,19,30,0.0 +24145,46,12,2,0.0 +24145,72,34.8,38,0.0 +24145,18,62.5,11,0.0 +24145,77,13,2,0.0 +24145,21,10,44,0.0 +24145,43,46,12,0.0 +24145,75,7.75,41,0.0 +24145,17,39,45,0.0 +24145,49,20,19,0.0 +24145,16,17.45,28,0.0 +24145,47,9.5,8,0.0 +24145,23,9,44,0.0 +24145,42,14,38,0.0 +24145,32,32,14,0.0 +24145,11,21,15,0.0 +24145,14,23.25,30,0.0 +24145,25,14,27,0.0 +24145,68,12.5,24,0.0 +24145,76,18,18,0.0 +24145,66,17,35,0.0 +24145,41,9.65,26,0.0 +24145,6,25,18,0.0 +24145,13,6,16,0.0 +24145,55,24,34,0.0 +24145,33,2.5,11,0.0 +24145,63,43.9,18,0.0 +24145,3,10,31,0.0 +24146,17,39,1,0.0 +24146,14,23.25,27,0.0 +24146,37,26,15,0.0 +24146,50,16.25,9,0.0 +24146,49,20,37,0.0 +24146,1,18,37,0.0 +24146,48,12.75,19,0.0 +24146,66,17,45,0.0 +24146,22,21,16,0.0 +24146,44,19.45,45,0.0 +24146,16,17.45,17,0.0 +24146,13,6,17,0.0 +24146,40,18.4,10,0.0 +24146,57,19.5,47,0.0 +24146,58,13.25,29,0.0 +24146,29,123.79,30,0.0 +24146,26,31.23,5,0.0 +24146,15,15.5,5,0.0 +24146,68,12.5,9,0.0 +24146,38,263.5,32,0.0 +24146,18,62.5,32,0.0 +24146,62,49.3,43,0.0 +24146,52,7,29,0.0 +24147,76,18,14,0.0 +24147,31,12.5,33,0.0 +24147,8,40,38,0.0 +24147,54,7.45,43,0.0 +24147,58,13.25,26,0.0 +24147,55,24,27,0.0 +24147,71,21.5,23,0.0 +24147,27,43.9,15,0.0 +24147,74,10,8,0.0 +24147,43,46,44,0.0 +24147,21,10,40,0.0 +24147,50,16.25,17,0.0 +24147,41,9.65,1,0.0 +24147,66,17,23,0.0 +24147,9,97,49,0.0 +24147,47,9.5,26,0.0 +24147,75,7.75,34,0.0 +24147,61,28.5,23,0.0 +24147,32,32,23,0.0 +24147,24,4.5,6,0.0 +24147,20,81,25,0.0 +24147,10,31,34,0.0 +24147,59,55,49,0.0 +24147,68,12.5,29,0.0 +24147,37,26,27,0.0 +24147,52,7,3,0.0 +24147,62,49.3,41,0.0 +24147,46,12,16,0.0 +24147,56,38,47,0.0 +24147,13,6,23,0.0 +24147,73,15,45,0.0 +24147,12,38,11,0.0 +24147,1,18,3,0.0 +24147,63,43.9,47,0.0 +24147,6,25,50,0.0 +24147,64,33.25,43,0.0 +24147,16,17.45,38,0.0 +24147,4,22,2,0.0 +24148,62,49.3,27,0.0 +24148,31,12.5,26,0.0 +24148,4,22,12,0.0 +24149,44,19.45,2,0.0 +24149,9,97,13,0.0 +24149,26,31.23,1,0.0 +24149,66,17,38,0.0 +24149,54,7.45,42,0.0 +24149,56,38,11,0.0 +24149,23,9,45,0.0 +24149,22,21,3,0.0 +24149,7,30,28,0.0 +24149,4,22,17,0.0 +24149,46,12,31,0.0 +24149,69,36,21,0.0 +24149,2,19,16,0.0 +24149,68,12.5,33,0.0 +24149,21,10,34,0.0 +24149,51,53,31,0.0 +24149,75,7.75,30,0.0 +24149,34,14,32,0.0 +24149,14,23.25,11,0.0 +24149,35,18,48,0.0 +24149,59,55,34,0.0 +24149,12,38,29,0.0 +24149,13,6,4,0.0 +24149,31,12.5,34,0.0 +24149,8,40,28,0.0 +24149,39,18,37,0.0 +24149,6,25,11,0.0 +24149,72,34.8,33,0.0 +24150,74,10,11,0.0 +24150,17,39,31,0.0 +24150,70,15,9,0.0 +24150,42,14,50,0.0 +24150,53,32.8,41,0.0 +24150,24,4.5,10,0.0 +24150,40,18.4,48,0.0 +24150,48,12.75,12,0.0 +24150,20,81,19,0.0 +24150,59,55,31,0.0 +24150,30,25.89,14,0.0 +24150,76,18,7,0.0 +24150,45,9.5,50,0.0 +24150,29,123.79,29,0.0 +24150,63,43.9,49,0.0 +24150,4,22,26,0.0 +24150,9,97,33,0.0 +24150,32,32,33,0.0 +24150,38,263.5,26,0.0 +24150,56,38,2,0.0 +24150,12,38,28,0.0 +24150,69,36,16,0.0 +24150,3,10,4,0.0 +24150,72,34.8,24,0.0 +24150,65,21.05,25,0.0 +24150,18,62.5,29,0.0 +24150,39,18,40,0.0 +24150,10,31,49,0.0 +24150,16,17.45,41,0.0 +24150,61,28.5,30,0.0 +24150,35,18,12,0.0 +24150,33,2.5,11,0.0 +24150,19,9.2,37,0.0 +24150,44,19.45,23,0.0 +24150,75,7.75,10,0.0 +24150,7,30,40,0.0 +24150,5,21.35,25,0.0 +24150,41,9.65,7,0.0 +24150,47,9.5,31,0.0 +24150,66,17,22,0.0 +24150,43,46,23,0.0 +24150,52,7,48,0.0 +24150,28,45.6,12,0.0 +24150,68,12.5,46,0.0 +24150,54,7.45,27,0.0 +24150,2,19,49,0.0 +24150,51,53,24,0.0 +24150,37,26,17,0.0 +24150,22,21,31,0.0 +24150,60,34,16,0.0 +24150,25,14,50,0.0 +24150,23,9,7,0.0 +24150,46,12,7,0.0 +24150,50,16.25,25,0.0 +24150,1,18,20,0.0 +24150,67,14,11,0.0 +24150,62,49.3,48,0.0 +24150,15,15.5,1,0.0 +24150,77,13,13,0.0 +24150,55,24,9,0.0 +24150,8,40,36,0.0 +24150,11,21,24,0.0 +24150,26,31.23,7,0.0 +24150,71,21.5,17,0.0 +24150,64,33.25,22,0.0 +24150,21,10,2,0.0 +24150,57,19.5,33,0.0 +24150,27,43.9,21,0.0 +24150,31,12.5,46,0.0 +24150,73,15,44,0.0 +24150,58,13.25,21,0.0 +24150,34,14,34,0.0 +24150,36,19,4,0.0 +24150,13,6,41,0.0 +24150,6,25,39,0.0 +24150,14,23.25,45,0.0 +24150,49,20,34,0.0 +24151,63,43.9,47,0.0 +24151,11,21,25,0.0 +24151,30,25.89,46,0.0 +24151,66,17,37,0.0 +24151,57,19.5,24,0.0 +24151,37,26,30,0.0 +24151,74,10,46,0.0 +24151,68,12.5,9,0.0 +24151,51,53,39,0.0 +24151,64,33.25,10,0.0 +24151,72,34.8,18,0.0 +24151,53,32.8,2,0.0 +24151,73,15,8,0.0 +24151,22,21,7,0.0 +24151,76,18,28,0.0 +24151,19,9.2,6,0.0 +24151,10,31,20,0.0 +24151,16,17.45,12,0.0 +24151,8,40,15,0.0 +24151,47,9.5,22,0.0 +24151,17,39,38,0.0 +24151,23,9,50,0.0 +24151,49,20,39,0.0 +24151,26,31.23,24,0.0 +24151,39,18,38,0.0 +24151,42,14,5,0.0 +24151,2,19,35,0.0 +24151,61,28.5,14,0.0 +24151,31,12.5,46,0.0 +24151,3,10,38,0.0 +24151,67,14,5,0.0 +24151,55,24,41,0.0 +24151,24,4.5,2,0.0 +24151,77,13,17,0.0 +24151,15,15.5,41,0.0 +24151,69,36,27,0.0 +24151,46,12,27,0.0 +24151,38,263.5,21,0.0 +24151,7,30,15,0.0 +24151,14,23.25,6,0.0 +24151,1,18,41,0.0 +24151,33,2.5,24,0.0 +24151,58,13.25,33,0.0 +24151,43,46,26,0.0 +24151,34,14,22,0.0 +24151,20,81,45,0.0 +24151,9,97,23,0.0 +24151,25,14,14,0.0 +24151,75,7.75,8,0.0 +24151,32,32,31,0.0 +24151,56,38,32,0.0 +24151,59,55,23,0.0 +24151,44,19.45,6,0.0 +24151,52,7,12,0.0 +24151,60,34,18,0.0 +24151,40,18.4,36,0.0 +24151,27,43.9,16,0.0 +24151,48,12.75,21,0.0 +24151,5,21.35,41,0.0 +24151,54,7.45,40,0.0 +24151,65,21.05,45,0.0 +24151,12,38,2,0.0 +24151,45,9.5,1,0.0 +24151,71,21.5,49,0.0 +24151,4,22,25,0.0 +24151,62,49.3,8,0.0 +24151,18,62.5,4,0.0 +24151,13,6,23,0.0 +24151,6,25,49,0.0 +24151,21,10,1,0.0 +24151,35,18,7,0.0 +24151,70,15,34,0.0 +24151,41,9.65,14,0.0 +24151,50,16.25,1,0.0 +24152,10,31,26,0.0 +24152,59,55,21,0.0 +24152,31,12.5,14,0.0 +24152,18,62.5,21,0.0 +24152,35,18,33,0.0 +24152,5,21.35,16,0.0 +24152,14,23.25,32,0.0 +24152,68,12.5,34,0.0 +24152,63,43.9,10,0.0 +24152,16,17.45,1,0.0 +24152,19,9.2,26,0.0 +24153,10,31,28,0.0 +24153,59,55,10,0.0 +24153,29,123.79,32,0.0 +24153,76,18,16,0.0 +24153,44,19.45,33,0.0 +24153,16,17.45,33,0.0 +24153,1,18,39,0.0 +24153,51,53,38,0.0 +24153,14,23.25,24,0.0 +24153,30,25.89,44,0.0 +24153,50,16.25,39,0.0 +24153,2,19,14,0.0 +24153,38,263.5,9,0.0 +24153,66,17,2,0.0 +24153,56,38,37,0.0 +24153,67,14,2,0.0 +24153,31,12.5,9,0.0 +24153,21,10,2,0.0 +24153,27,43.9,11,0.0 +24153,28,45.6,43,0.0 +24153,71,21.5,28,0.0 +24153,41,9.65,45,0.0 +24154,51,53,42,0.0 +24154,7,30,9,0.0 +24154,39,18,21,0.0 +24154,15,15.5,15,0.0 +24154,16,17.45,37,0.0 +24154,76,18,4,0.0 +24154,77,13,6,0.0 +24154,28,45.6,5,0.0 +24154,32,32,31,0.0 +24154,17,39,50,0.0 +24154,33,2.5,18,0.0 +24154,41,9.65,41,0.0 +24154,42,14,33,0.0 +24154,37,26,31,0.0 +24154,25,14,3,0.0 +24154,9,97,46,0.0 +24154,29,123.79,24,0.0 +24154,34,14,21,0.0 +24154,58,13.25,35,0.0 +24154,60,34,21,0.0 +24154,52,7,13,0.0 +24154,74,10,38,0.0 +24154,23,9,24,0.0 +24154,56,38,49,0.0 +24154,21,10,44,0.0 +24154,49,20,38,0.0 +24154,67,14,27,0.0 +24154,71,21.5,3,0.0 +24154,55,24,27,0.0 +24154,48,12.75,18,0.0 +24154,8,40,7,0.0 +24154,43,46,13,0.0 +24154,46,12,36,0.0 +24154,53,32.8,33,0.0 +24154,35,18,43,0.0 +24154,2,19,10,0.0 +24154,54,7.45,20,0.0 +24154,72,34.8,48,0.0 +24154,38,263.5,13,0.0 +24154,44,19.45,32,0.0 +24154,70,15,40,0.0 +24154,4,22,21,0.0 +24154,69,36,25,0.0 +24155,10,31,26,0.0 +24155,4,22,21,0.0 +24155,48,12.75,33,0.0 +24155,6,25,41,0.0 +24155,8,40,5,0.0 +24155,52,7,9,0.0 +24155,3,10,26,0.0 +24155,20,81,26,0.0 +24155,76,18,20,0.0 +24155,13,6,20,0.0 +24155,29,123.79,49,0.0 +24155,37,26,5,0.0 +24155,14,23.25,10,0.0 +24155,54,7.45,12,0.0 +24155,43,46,19,0.0 +24155,21,10,22,0.0 +24155,70,15,49,0.0 +24155,53,32.8,44,0.0 +24155,33,2.5,6,0.0 +24155,55,24,9,0.0 +24155,9,97,4,0.0 +24156,61,28.5,19,0.0 +24156,77,13,45,0.0 +24156,6,25,30,0.0 +24156,9,97,44,0.0 +24156,55,24,36,0.0 +24156,69,36,16,0.0 +24156,49,20,16,0.0 +24156,67,14,16,0.0 +24156,43,46,36,0.0 +24156,16,17.45,45,0.0 +24156,23,9,39,0.0 +24156,21,10,50,0.0 +24156,20,81,35,0.0 +24156,34,14,22,0.0 +24156,71,21.5,38,0.0 +24156,57,19.5,49,0.0 +24156,11,21,25,0.0 +24156,24,4.5,19,0.0 +24156,46,12,40,0.0 +24156,38,263.5,3,0.0 +24156,63,43.9,39,0.0 +24156,52,7,50,0.0 +24156,76,18,33,0.0 +24156,74,10,39,0.0 +24156,13,6,45,0.0 +24156,75,7.75,27,0.0 +24156,45,9.5,8,0.0 +24156,51,53,7,0.0 +24156,56,38,38,0.0 +24156,60,34,34,0.0 +24156,10,31,43,0.0 +24156,3,10,20,0.0 +24156,12,38,17,0.0 +24156,59,55,6,0.0 +24156,8,40,5,0.0 +24156,30,25.89,18,0.0 +24156,18,62.5,33,0.0 +24156,1,18,37,0.0 +24157,27,43.9,5,0.0 +24157,5,21.35,34,0.0 +24157,28,45.6,30,0.0 +24157,50,16.25,7,0.0 +24157,8,40,37,0.0 +24157,56,38,26,0.0 +24157,17,39,17,0.0 +24157,39,18,5,0.0 +24157,49,20,22,0.0 +24157,22,21,29,0.0 +24157,52,7,22,0.0 +24157,61,28.5,12,0.0 +24157,10,31,46,0.0 +24157,7,30,14,0.0 +24157,57,19.5,18,0.0 +24157,30,25.89,48,0.0 +24157,3,10,46,0.0 +24157,33,2.5,47,0.0 +24157,16,17.45,24,0.0 +24157,76,18,5,0.0 +24157,13,6,18,0.0 +24157,66,17,41,0.0 +24157,19,9.2,39,0.0 +24157,70,15,26,0.0 +24157,9,97,30,0.0 +24157,74,10,49,0.0 +24157,35,18,3,0.0 +24157,37,26,34,0.0 +24157,6,25,34,0.0 +24157,77,13,31,0.0 +24157,14,23.25,11,0.0 +24157,51,53,25,0.0 +24158,42,14,23,0.0 +24158,11,21,10,0.0 +24158,49,20,43,0.0 +24158,40,18.4,32,0.0 +24158,53,32.8,15,0.0 +24158,20,81,42,0.0 +24158,56,38,39,0.0 +24158,14,23.25,24,0.0 +24158,10,31,48,0.0 +24158,32,32,23,0.0 +24158,6,25,48,0.0 +24158,51,53,10,0.0 +24158,55,24,9,0.0 +24158,71,21.5,40,0.0 +24158,72,34.8,50,0.0 +24158,45,9.5,36,0.0 +24158,68,12.5,18,0.0 +24158,5,21.35,28,0.0 +24158,44,19.45,9,0.0 +24158,4,22,45,0.0 +24158,54,7.45,21,0.0 +24158,73,15,42,0.0 +24158,9,97,20,0.0 +24158,26,31.23,5,0.0 +24158,66,17,40,0.0 +24158,31,12.5,18,0.0 +24158,27,43.9,41,0.0 +24159,20,81,15,0.0 +24159,13,6,23,0.0 +24159,21,10,29,0.0 +24159,25,14,10,0.0 +24159,4,22,20,0.0 +24159,33,2.5,24,0.0 +24159,54,7.45,24,0.0 +24159,53,32.8,2,0.0 +24159,15,15.5,11,0.0 +24159,1,18,13,0.0 +24159,11,21,19,0.0 +24159,71,21.5,48,0.0 +24159,55,24,25,0.0 +24159,28,45.6,30,0.0 +24159,51,53,49,0.0 +24159,6,25,47,0.0 +24159,37,26,44,0.0 +24159,44,19.45,48,0.0 +24159,56,38,46,0.0 +24159,75,7.75,13,0.0 +24159,2,19,27,0.0 +24159,58,13.25,50,0.0 +24160,36,19,35,0.0 +24160,35,18,10,0.0 +24160,73,15,20,0.0 +24160,63,43.9,25,0.0 +24160,61,28.5,49,0.0 +24160,30,25.89,17,0.0 +24160,2,19,30,0.0 +24160,12,38,7,0.0 +24160,6,25,11,0.0 +24160,41,9.65,18,0.0 +24160,72,34.8,3,0.0 +24160,64,33.25,2,0.0 +24160,67,14,11,0.0 +24160,69,36,48,0.0 +24160,9,97,15,0.0 +24160,75,7.75,49,0.0 +24160,57,19.5,44,0.0 +24160,49,20,24,0.0 +24160,56,38,18,0.0 +24160,20,81,14,0.0 +24160,74,10,2,0.0 +24160,17,39,34,0.0 +24160,71,21.5,46,0.0 +24160,27,43.9,35,0.0 +24160,37,26,6,0.0 +24160,47,9.5,33,0.0 +24160,77,13,12,0.0 +24160,29,123.79,9,0.0 +24160,25,14,1,0.0 +24160,65,21.05,21,0.0 +24160,48,12.75,44,0.0 +24160,7,30,36,0.0 +24160,52,7,5,0.0 +24160,24,4.5,9,0.0 +24160,21,10,25,0.0 +24160,40,18.4,19,0.0 +24160,42,14,18,0.0 +24160,60,34,13,0.0 +24160,70,15,47,0.0 +24160,1,18,48,0.0 +24160,23,9,32,0.0 +24161,68,12.5,19,0.0 +24161,8,40,13,0.0 +24161,58,13.25,49,0.0 +24161,44,19.45,17,0.0 +24161,43,46,21,0.0 +24161,57,19.5,43,0.0 +24161,75,7.75,49,0.0 +24161,9,97,7,0.0 +24161,45,9.5,32,0.0 +24161,2,19,34,0.0 +24161,48,12.75,35,0.0 +24161,28,45.6,13,0.0 +24161,17,39,33,0.0 +24161,54,7.45,23,0.0 +24161,50,16.25,12,0.0 +24161,26,31.23,2,0.0 +24161,71,21.5,2,0.0 +24161,67,14,33,0.0 +24161,24,4.5,19,0.0 +24161,42,14,28,0.0 +24161,69,36,42,0.0 +24161,60,34,13,0.0 +24161,59,55,47,0.0 +24161,77,13,27,0.0 +24161,46,12,19,0.0 +24161,62,49.3,10,0.0 +24161,66,17,33,0.0 +24161,21,10,14,0.0 +24161,36,19,20,0.0 +24161,20,81,19,0.0 +24161,64,33.25,3,0.0 +24161,18,62.5,35,0.0 +24161,56,38,6,0.0 +24161,15,15.5,6,0.0 +24161,35,18,15,0.0 +24161,70,15,15,0.0 +24161,38,263.5,28,0.0 +24161,61,28.5,19,0.0 +24161,47,9.5,21,0.0 +24161,52,7,16,0.0 +24161,51,53,34,0.0 +24161,72,34.8,26,0.0 +24161,13,6,3,0.0 +24161,5,21.35,37,0.0 +24161,39,18,21,0.0 +24161,53,32.8,39,0.0 +24161,4,22,13,0.0 +24161,63,43.9,13,0.0 +24161,11,21,40,0.0 +24161,10,31,39,0.0 +24161,3,10,45,0.0 +24161,12,38,20,0.0 +24162,63,43.9,39,0.0 +24162,21,10,27,0.0 +24162,77,13,1,0.0 +24162,36,19,34,0.0 +24162,46,12,15,0.0 +24162,61,28.5,11,0.0 +24162,3,10,46,0.0 +24162,38,263.5,50,0.0 +24162,49,20,10,0.0 +24162,26,31.23,17,0.0 +24162,55,24,12,0.0 +24162,6,25,22,0.0 +24162,72,34.8,40,0.0 +24162,68,12.5,27,0.0 +24162,28,45.6,12,0.0 +24162,16,17.45,44,0.0 +24162,76,18,44,0.0 +24162,7,30,41,0.0 +24162,10,31,26,0.0 +24162,11,21,4,0.0 +24162,17,39,22,0.0 +24162,40,18.4,48,0.0 +24162,12,38,3,0.0 +24163,75,7.75,45,0.0 +24163,69,36,8,0.0 +24163,40,18.4,26,0.0 +24163,30,25.89,46,0.0 +24163,51,53,21,0.0 +24163,2,19,34,0.0 +24163,6,25,8,0.0 +24163,25,14,49,0.0 +24163,60,34,25,0.0 +24163,63,43.9,39,0.0 +24163,58,13.25,26,0.0 +24163,62,49.3,7,0.0 +24163,50,16.25,15,0.0 +24163,15,15.5,43,0.0 +24163,26,31.23,45,0.0 +24163,43,46,42,0.0 +24163,22,21,44,0.0 +24163,57,19.5,39,0.0 +24163,32,32,20,0.0 +24163,76,18,41,0.0 +24163,49,20,48,0.0 +24163,24,4.5,42,0.0 +24164,18,62.5,3,0.0 +24164,57,19.5,16,0.0 +24164,54,7.45,44,0.0 +24164,35,18,45,0.0 +24164,66,17,47,0.0 +24164,31,12.5,45,0.0 +24164,39,18,14,0.0 +24164,21,10,48,0.0 +24164,29,123.79,18,0.0 +24164,71,21.5,26,0.0 +24164,33,2.5,12,0.0 +24164,45,9.5,21,0.0 +24164,32,32,2,0.0 +24164,4,22,17,0.0 +24164,67,14,35,0.0 +24164,16,17.45,18,0.0 +24164,7,30,26,0.0 +24164,55,24,11,0.0 +24164,43,46,49,0.0 +24165,71,21.5,25,0.0 +24165,65,21.05,25,0.0 +24165,22,21,18,0.0 +24165,8,40,3,0.0 +24165,10,31,44,0.0 +24165,30,25.89,28,0.0 +24165,20,81,24,0.0 +24165,77,13,18,0.0 +24165,25,14,30,0.0 +24165,33,2.5,38,0.0 +24165,5,21.35,21,0.0 +24165,45,9.5,46,0.0 +24165,53,32.8,35,0.0 +24165,60,34,25,0.0 +24165,1,18,11,0.0 +24165,46,12,34,0.0 +24165,4,22,22,0.0 +24165,19,9.2,34,0.0 +24165,75,7.75,28,0.0 +24165,69,36,5,0.0 +24165,51,53,20,0.0 +24165,61,28.5,6,0.0 +24165,40,18.4,25,0.0 +24165,7,30,16,0.0 +24165,39,18,10,0.0 +24165,54,7.45,37,0.0 +24165,36,19,24,0.0 +24165,18,62.5,21,0.0 +24165,29,123.79,5,0.0 +24165,74,10,48,0.0 +24165,23,9,40,0.0 +24165,47,9.5,42,0.0 +24165,17,39,42,0.0 +24165,21,10,50,0.0 +24165,42,14,47,0.0 +24165,50,16.25,11,0.0 +24165,14,23.25,38,0.0 +24165,67,14,29,0.0 +24165,73,15,20,0.0 +24165,28,45.6,12,0.0 +24165,27,43.9,9,0.0 +24165,37,26,40,0.0 +24165,43,46,48,0.0 +24165,35,18,17,0.0 +24165,66,17,45,0.0 +24165,59,55,46,0.0 +24165,57,19.5,2,0.0 +24166,74,10,48,0.0 +24166,49,20,28,0.0 +24166,25,14,33,0.0 +24166,33,2.5,1,0.0 +24166,28,45.6,22,0.0 +24166,4,22,15,0.0 +24166,14,23.25,31,0.0 +24166,72,34.8,18,0.0 +24166,36,19,22,0.0 +24166,54,7.45,10,0.0 +24166,41,9.65,39,0.0 +24166,19,9.2,46,0.0 +24166,53,32.8,16,0.0 +24166,26,31.23,38,0.0 +24166,47,9.5,31,0.0 +24166,75,7.75,39,0.0 +24166,1,18,10,0.0 +24166,73,15,37,0.0 +24166,8,40,48,0.0 +24166,69,36,31,0.0 +24166,61,28.5,29,0.0 +24166,68,12.5,6,0.0 +24166,5,21.35,9,0.0 +24166,18,62.5,40,0.0 +24166,59,55,16,0.0 +24166,64,33.25,49,0.0 +24166,30,25.89,29,0.0 +24166,31,12.5,3,0.0 +24166,22,21,7,0.0 +24166,67,14,13,0.0 +24166,58,13.25,13,0.0 +24166,46,12,1,0.0 +24166,70,15,12,0.0 +24166,24,4.5,29,0.0 +24166,42,14,42,0.0 +24166,76,18,27,0.0 +24166,10,31,20,0.0 +24166,27,43.9,16,0.0 +24166,66,17,8,0.0 +24166,34,14,35,0.0 +24166,7,30,20,0.0 +24166,40,18.4,20,0.0 +24166,65,21.05,5,0.0 +24166,52,7,40,0.0 +24166,50,16.25,10,0.0 +24166,16,17.45,27,0.0 +24166,21,10,10,0.0 +24166,29,123.79,43,0.0 +24166,11,21,43,0.0 +24166,55,24,44,0.0 +24166,57,19.5,8,0.0 +24166,39,18,7,0.0 +24166,12,38,42,0.0 +24166,35,18,44,0.0 +24166,23,9,44,0.0 +24166,32,32,42,0.0 +24166,37,26,41,0.0 +24166,44,19.45,13,0.0 +24166,62,49.3,11,0.0 +24166,15,15.5,11,0.0 +24166,45,9.5,12,0.0 +24166,6,25,11,0.0 +24166,38,263.5,49,0.0 +24166,60,34,12,0.0 +24166,2,19,35,0.0 +24166,48,12.75,24,0.0 +24166,17,39,9,0.0 +24166,3,10,23,0.0 +24167,54,7.45,39,0.0 +24167,76,18,8,0.0 +24167,32,32,5,0.0 +24167,4,22,18,0.0 +24167,45,9.5,29,0.0 +24167,71,21.5,35,0.0 +24167,48,12.75,49,0.0 +24167,19,9.2,43,0.0 +24167,70,15,23,0.0 +24167,52,7,33,0.0 +24167,14,23.25,15,0.0 +24167,42,14,2,0.0 +24167,44,19.45,49,0.0 +24167,33,2.5,20,0.0 +24167,47,9.5,2,0.0 +24167,18,62.5,17,0.0 +24167,36,19,10,0.0 +24167,56,38,14,0.0 +24167,11,21,26,0.0 +24168,66,17,8,0.0 +24168,18,62.5,33,0.0 +24168,13,6,5,0.0 +24168,27,43.9,15,0.0 +24168,38,263.5,40,0.0 +24168,47,9.5,34,0.0 +24168,48,12.75,22,0.0 +24168,16,17.45,27,0.0 +24168,45,9.5,20,0.0 +24168,37,26,6,0.0 +24168,35,18,10,0.0 +24168,31,12.5,42,0.0 +24168,77,13,23,0.0 +24168,54,7.45,36,0.0 +24168,26,31.23,19,0.0 +24168,49,20,9,0.0 +24168,17,39,25,0.0 +24168,75,7.75,15,0.0 +24168,20,81,40,0.0 +24168,21,10,7,0.0 +24168,67,14,26,0.0 +24168,23,9,15,0.0 +24168,56,38,28,0.0 +24168,76,18,27,0.0 +24168,10,31,40,0.0 +24168,53,32.8,15,0.0 +24168,74,10,42,0.0 +24168,41,9.65,34,0.0 +24168,15,15.5,14,0.0 +24168,69,36,39,0.0 +24168,60,34,49,0.0 +24168,12,38,4,0.0 +24168,24,4.5,44,0.0 +24168,2,19,44,0.0 +24168,70,15,29,0.0 +24168,42,14,15,0.0 +24169,40,18.4,21,0.0 +24169,67,14,30,0.0 +24169,21,10,5,0.0 +24169,52,7,47,0.0 +24169,5,21.35,13,0.0 +24169,47,9.5,31,0.0 +24169,44,19.45,47,0.0 +24169,41,9.65,4,0.0 +24169,64,33.25,50,0.0 +24169,19,9.2,1,0.0 +24169,65,21.05,29,0.0 +24169,59,55,47,0.0 +24169,62,49.3,35,0.0 +24169,13,6,32,0.0 +24169,48,12.75,4,0.0 +24169,50,16.25,33,0.0 +24169,10,31,12,0.0 +24169,25,14,42,0.0 +24169,9,97,42,0.0 +24169,69,36,2,0.0 +24169,36,19,11,0.0 +24169,20,81,41,0.0 +24169,70,15,35,0.0 +24169,8,40,9,0.0 +24169,24,4.5,10,0.0 +24169,28,45.6,15,0.0 +24169,15,15.5,44,0.0 +24169,71,21.5,30,0.0 +24169,56,38,10,0.0 +24169,61,28.5,5,0.0 +24169,75,7.75,21,0.0 +24169,16,17.45,19,0.0 +24169,35,18,3,0.0 +24169,38,263.5,43,0.0 +24169,39,18,10,0.0 +24169,23,9,47,0.0 +24169,43,46,28,0.0 +24169,42,14,13,0.0 +24169,29,123.79,34,0.0 +24169,7,30,5,0.0 +24169,14,23.25,23,0.0 +24169,68,12.5,27,0.0 +24169,63,43.9,7,0.0 +24169,1,18,2,0.0 +24169,4,22,47,0.0 +24169,27,43.9,11,0.0 +24170,53,32.8,22,0.0 +24170,10,31,1,0.0 +24170,13,6,9,0.0 +24170,45,9.5,8,0.0 +24170,9,97,38,0.0 +24170,54,7.45,4,0.0 +24170,15,15.5,34,0.0 +24170,49,20,22,0.0 +24170,19,9.2,36,0.0 +24170,18,62.5,33,0.0 +24170,26,31.23,35,0.0 +24170,27,43.9,38,0.0 +24170,63,43.9,30,0.0 +24170,43,46,18,0.0 +24170,31,12.5,5,0.0 +24170,67,14,16,0.0 +24170,12,38,22,0.0 +24170,22,21,32,0.0 +24170,42,14,23,0.0 +24170,57,19.5,32,0.0 +24170,32,32,37,0.0 +24170,20,81,31,0.0 +24170,3,10,37,0.0 +24170,74,10,17,0.0 +24170,72,34.8,26,0.0 +24170,7,30,4,0.0 +24170,34,14,34,0.0 +24170,70,15,24,0.0 +24170,61,28.5,10,0.0 +24170,50,16.25,43,0.0 +24170,11,21,16,0.0 +24170,36,19,46,0.0 +24170,28,45.6,14,0.0 +24170,5,21.35,7,0.0 +24170,59,55,2,0.0 +24170,66,17,32,0.0 +24170,16,17.45,20,0.0 +24170,55,24,46,0.0 +24171,44,19.45,23,0.0 +24171,25,14,15,0.0 +24171,59,55,17,0.0 +24171,55,24,36,0.0 +24171,29,123.79,5,0.0 +24171,23,9,33,0.0 +24171,41,9.65,29,0.0 +24171,2,19,33,0.0 +24171,6,25,19,0.0 +24171,69,36,5,0.0 +24171,54,7.45,49,0.0 +24171,8,40,36,0.0 +24171,58,13.25,2,0.0 +24171,9,97,24,0.0 +24171,27,43.9,44,0.0 +24171,43,46,45,0.0 +24171,22,21,4,0.0 +24171,3,10,10,0.0 +24171,64,33.25,32,0.0 +24171,68,12.5,14,0.0 +24171,11,21,49,0.0 +24171,13,6,23,0.0 +24171,21,10,10,0.0 +24171,52,7,3,0.0 +24171,32,32,1,0.0 +24171,7,30,40,0.0 +24171,49,20,48,0.0 +24171,14,23.25,14,0.0 +24171,66,17,27,0.0 +24171,46,12,36,0.0 +24171,50,16.25,34,0.0 +24171,4,22,9,0.0 +24171,18,62.5,17,0.0 +24171,40,18.4,2,0.0 +24171,45,9.5,4,0.0 +24171,38,263.5,8,0.0 +24171,17,39,45,0.0 +24171,70,15,14,0.0 +24171,39,18,29,0.0 +24171,35,18,12,0.0 +24171,16,17.45,13,0.0 +24171,37,26,5,0.0 +24171,74,10,22,0.0 +24171,42,14,26,0.0 +24171,51,53,41,0.0 +24171,65,21.05,38,0.0 +24171,19,9.2,47,0.0 +24171,56,38,9,0.0 +24171,60,34,43,0.0 +24171,12,38,35,0.0 +24171,26,31.23,21,0.0 +24171,67,14,8,0.0 +24171,75,7.75,33,0.0 +24171,63,43.9,8,0.0 +24171,10,31,11,0.0 +24171,24,4.5,46,0.0 +24171,28,45.6,38,0.0 +24171,48,12.75,33,0.0 +24171,20,81,32,0.0 +24171,76,18,26,0.0 +24171,53,32.8,48,0.0 +24171,61,28.5,6,0.0 +24171,34,14,5,0.0 +24171,57,19.5,50,0.0 +24172,71,21.5,48,0.0 +24172,60,34,20,0.0 +24172,42,14,27,0.0 +24172,57,19.5,23,0.0 +24172,50,16.25,36,0.0 +24172,55,24,16,0.0 +24172,76,18,30,0.0 +24172,21,10,2,0.0 +24172,52,7,23,0.0 +24172,6,25,39,0.0 +24172,40,18.4,46,0.0 +24172,72,34.8,49,0.0 +24172,18,62.5,42,0.0 +24172,46,12,2,0.0 +24172,63,43.9,10,0.0 +24172,4,22,30,0.0 +24172,14,23.25,47,0.0 +24172,38,263.5,6,0.0 +24172,22,21,23,0.0 +24172,49,20,30,0.0 +24172,53,32.8,38,0.0 +24172,29,123.79,25,0.0 +24172,43,46,12,0.0 +24172,62,49.3,16,0.0 +24172,5,21.35,25,0.0 +24172,25,14,48,0.0 +24172,44,19.45,18,0.0 +24172,8,40,43,0.0 +24172,28,45.6,1,0.0 +24172,17,39,43,0.0 +24172,30,25.89,2,0.0 +24172,13,6,39,0.0 +24172,16,17.45,25,0.0 +24172,56,38,47,0.0 +24172,77,13,27,0.0 +24172,58,13.25,2,0.0 +24172,9,97,21,0.0 +24172,26,31.23,6,0.0 +24172,64,33.25,30,0.0 +24172,35,18,10,0.0 +24172,32,32,25,0.0 +24172,3,10,12,0.0 +24172,59,55,30,0.0 +24172,23,9,45,0.0 +24172,2,19,14,0.0 +24172,75,7.75,26,0.0 +24172,11,21,29,0.0 +24172,20,81,17,0.0 +24172,67,14,45,0.0 +24172,19,9.2,44,0.0 +24172,61,28.5,40,0.0 +24172,74,10,33,0.0 +24172,12,38,1,0.0 +24172,70,15,11,0.0 +24172,45,9.5,26,0.0 +24172,68,12.5,48,0.0 +24172,10,31,28,0.0 +24172,33,2.5,13,0.0 +24172,66,17,35,0.0 +24172,73,15,23,0.0 +24172,39,18,49,0.0 +24172,65,21.05,3,0.0 +24172,37,26,6,0.0 +24172,51,53,2,0.0 +24172,7,30,2,0.0 +24172,24,4.5,26,0.0 +24172,27,43.9,16,0.0 +24172,36,19,46,0.0 +24172,54,7.45,38,0.0 +24172,47,9.5,22,0.0 +24172,69,36,37,0.0 +24172,34,14,4,0.0 +24172,41,9.65,17,0.0 +24172,15,15.5,48,0.0 +24172,31,12.5,38,0.0 +24173,45,9.5,34,0.0 +24173,64,33.25,17,0.0 +24173,58,13.25,47,0.0 +24174,58,13.25,31,0.0 +24174,31,12.5,41,0.0 +24175,52,7,6,0.0 +24175,51,53,35,0.0 +24175,61,28.5,50,0.0 +24175,67,14,8,0.0 +24175,10,31,45,0.0 +24175,21,10,40,0.0 +24175,13,6,24,0.0 +24175,77,13,23,0.0 +24175,71,21.5,7,0.0 +24175,64,33.25,23,0.0 +24175,9,97,50,0.0 +24175,20,81,31,0.0 +24175,37,26,25,0.0 +24175,68,12.5,31,0.0 +24175,75,7.75,37,0.0 +24175,2,19,11,0.0 +24175,74,10,24,0.0 +24175,36,19,6,0.0 +24175,16,17.45,3,0.0 +24175,66,17,29,0.0 +24175,38,263.5,33,0.0 +24175,53,32.8,23,0.0 +24175,6,25,1,0.0 +24175,57,19.5,12,0.0 +24175,76,18,50,0.0 +24175,46,12,50,0.0 +24175,26,31.23,37,0.0 +24175,7,30,39,0.0 +24175,19,9.2,29,0.0 +24175,18,62.5,49,0.0 +24175,12,38,13,0.0 +24175,8,40,40,0.0 +24175,40,18.4,35,0.0 +24175,44,19.45,31,0.0 +24175,70,15,21,0.0 +24175,72,34.8,27,0.0 +24175,63,43.9,24,0.0 +24175,43,46,22,0.0 +24175,23,9,35,0.0 +24175,41,9.65,44,0.0 +24175,5,21.35,49,0.0 +24175,60,34,6,0.0 +24175,50,16.25,34,0.0 +24175,62,49.3,46,0.0 +24175,1,18,24,0.0 +24175,49,20,33,0.0 +24175,32,32,20,0.0 +24175,35,18,41,0.0 +24175,54,7.45,29,0.0 +24175,69,36,29,0.0 +24175,47,9.5,34,0.0 +24175,27,43.9,22,0.0 +24175,45,9.5,44,0.0 +24175,48,12.75,47,0.0 +24175,65,21.05,32,0.0 +24175,4,22,12,0.0 +24175,30,25.89,47,0.0 +24175,25,14,16,0.0 +24175,58,13.25,11,0.0 +24175,17,39,36,0.0 +24175,28,45.6,24,0.0 +24175,24,4.5,20,0.0 +24175,42,14,8,0.0 +24175,31,12.5,10,0.0 +24175,22,21,28,0.0 +24176,41,9.65,38,0.0 +24176,54,7.45,48,0.0 +24176,8,40,7,0.0 +24176,1,18,42,0.0 +24176,51,53,24,0.0 +24176,38,263.5,27,0.0 +24176,5,21.35,47,0.0 +24176,66,17,26,0.0 +24176,10,31,30,0.0 +24176,67,14,26,0.0 +24176,26,31.23,31,0.0 +24176,18,62.5,11,0.0 +24176,44,19.45,10,0.0 +24176,39,18,29,0.0 +24176,53,32.8,31,0.0 +24176,74,10,39,0.0 +24176,60,34,16,0.0 +24176,20,81,46,0.0 +24176,12,38,10,0.0 +24176,61,28.5,25,0.0 +24176,27,43.9,25,0.0 +24176,25,14,27,0.0 +24176,47,9.5,32,0.0 +24176,62,49.3,10,0.0 +24176,55,24,38,0.0 +24176,57,19.5,44,0.0 +24176,16,17.45,8,0.0 +24176,46,12,27,0.0 +24176,7,30,29,0.0 +24176,11,21,44,0.0 +24176,3,10,7,0.0 +24176,28,45.6,24,0.0 +24176,48,12.75,23,0.0 +24176,49,20,3,0.0 +24176,37,26,2,0.0 +24177,74,10,44,0.0 +24177,20,81,41,0.0 +24177,72,34.8,47,0.0 +24177,52,7,15,0.0 +24177,73,15,33,0.0 +24177,70,15,18,0.0 +24177,14,23.25,27,0.0 +24177,45,9.5,4,0.0 +24177,9,97,18,0.0 +24177,11,21,30,0.0 +24177,6,25,34,0.0 +24177,13,6,25,0.0 +24177,21,10,7,0.0 +24177,60,34,47,0.0 +24177,41,9.65,2,0.0 +24177,77,13,18,0.0 +24177,29,123.79,34,0.0 +24177,67,14,22,0.0 +24177,3,10,9,0.0 +24177,42,14,25,0.0 +24177,35,18,36,0.0 +24177,38,263.5,7,0.0 +24177,61,28.5,45,0.0 +24177,76,18,3,0.0 +24177,51,53,39,0.0 +24177,44,19.45,48,0.0 +24177,36,19,45,0.0 +24177,58,13.25,40,0.0 +24177,47,9.5,29,0.0 +24177,37,26,20,0.0 +24177,17,39,10,0.0 +24177,65,21.05,3,0.0 +24177,71,21.5,50,0.0 +24177,57,19.5,22,0.0 +24177,54,7.45,41,0.0 +24178,3,10,9,0.0 +24178,16,17.45,15,0.0 +24178,69,36,47,0.0 +24178,26,31.23,44,0.0 +24178,18,62.5,14,0.0 +24178,22,21,15,0.0 +24178,1,18,39,0.0 +24178,62,49.3,41,0.0 +24178,13,6,13,0.0 +24178,55,24,22,0.0 +24178,38,263.5,43,0.0 +24178,44,19.45,26,0.0 +24178,54,7.45,23,0.0 +24178,2,19,49,0.0 +24178,64,33.25,26,0.0 +24178,39,18,38,0.0 +24178,47,9.5,22,0.0 +24178,34,14,28,0.0 +24178,73,15,28,0.0 +24178,59,55,18,0.0 +24178,6,25,17,0.0 +24178,33,2.5,7,0.0 +24178,25,14,19,0.0 +24178,56,38,8,0.0 +24178,32,32,2,0.0 +24178,21,10,32,0.0 +24178,58,13.25,24,0.0 +24178,77,13,24,0.0 +24178,17,39,36,0.0 +24178,7,30,15,0.0 +24178,74,10,13,0.0 +24178,23,9,50,0.0 +24178,43,46,41,0.0 +24178,67,14,26,0.0 +24178,15,15.5,7,0.0 +24178,42,14,18,0.0 +24178,76,18,10,0.0 +24178,12,38,31,0.0 +24178,10,31,34,0.0 +24178,48,12.75,42,0.0 +24178,8,40,40,0.0 +24178,9,97,25,0.0 +24178,37,26,1,0.0 +24178,68,12.5,30,0.0 +24178,65,21.05,37,0.0 +24178,63,43.9,15,0.0 +24178,4,22,47,0.0 +24178,35,18,6,0.0 +24179,45,9.5,3,0.0 +24179,24,4.5,37,0.0 +24179,49,20,17,0.0 +24179,14,23.25,18,0.0 +24179,12,38,19,0.0 +24179,19,9.2,22,0.0 +24179,18,62.5,28,0.0 +24179,60,34,37,0.0 +24179,40,18.4,4,0.0 +24179,17,39,25,0.0 +24179,59,55,10,0.0 +24179,77,13,8,0.0 +24179,27,43.9,35,0.0 +24179,5,21.35,8,0.0 +24179,35,18,11,0.0 +24179,62,49.3,8,0.0 +24179,63,43.9,20,0.0 +24179,33,2.5,44,0.0 +24179,61,28.5,37,0.0 +24180,38,263.5,18,0.0 +24180,26,31.23,3,0.0 +24180,35,18,14,0.0 +24180,16,17.45,13,0.0 +24180,23,9,14,0.0 +24180,69,36,50,0.0 +24180,9,97,37,0.0 +24180,51,53,11,0.0 +24180,24,4.5,2,0.0 +24180,31,12.5,1,0.0 +24180,13,6,47,0.0 +24180,66,17,39,0.0 +24180,29,123.79,49,0.0 +24180,17,39,16,0.0 +24180,11,21,33,0.0 +24180,52,7,43,0.0 +24180,61,28.5,27,0.0 +24180,75,7.75,13,0.0 +24180,12,38,43,0.0 +24180,49,20,48,0.0 +24180,58,13.25,27,0.0 +24180,2,19,19,0.0 +24180,60,34,38,0.0 +24180,34,14,50,0.0 +24180,21,10,2,0.0 +24180,41,9.65,18,0.0 +24180,64,33.25,50,0.0 +24180,70,15,41,0.0 +24180,10,31,8,0.0 +24180,56,38,39,0.0 +24180,48,12.75,49,0.0 +24180,8,40,45,0.0 +24180,20,81,34,0.0 +24180,65,21.05,45,0.0 +24180,50,16.25,41,0.0 +24180,30,25.89,31,0.0 +24180,40,18.4,2,0.0 +24180,47,9.5,11,0.0 +24180,7,30,29,0.0 +24180,6,25,40,0.0 +24180,28,45.6,9,0.0 +24180,14,23.25,30,0.0 +24180,43,46,46,0.0 +24180,53,32.8,42,0.0 +24181,61,28.5,27,0.0 +24181,18,62.5,34,0.0 +24182,38,263.5,14,0.0 +24182,43,46,24,0.0 +24182,1,18,46,0.0 +24182,66,17,12,0.0 +24182,62,49.3,49,0.0 +24182,8,40,1,0.0 +24182,22,21,31,0.0 +24182,53,32.8,31,0.0 +24182,57,19.5,38,0.0 +24182,59,55,9,0.0 +24182,40,18.4,7,0.0 +24182,50,16.25,28,0.0 +24182,7,30,23,0.0 +24182,71,21.5,24,0.0 +24182,51,53,8,0.0 +24182,65,21.05,31,0.0 +24182,61,28.5,19,0.0 +24182,24,4.5,7,0.0 +24182,52,7,37,0.0 +24182,20,81,17,0.0 +24182,10,31,26,0.0 +24182,6,25,6,0.0 +24182,14,23.25,48,0.0 +24182,45,9.5,10,0.0 +24182,48,12.75,26,0.0 +24182,12,38,43,0.0 +24182,42,14,26,0.0 +24182,72,34.8,49,0.0 +24182,9,97,30,0.0 +24182,4,22,26,0.0 +24182,21,10,45,0.0 +24182,68,12.5,31,0.0 +24182,67,14,27,0.0 +24182,5,21.35,26,0.0 +24182,36,19,30,0.0 +24182,76,18,23,0.0 +24182,46,12,20,0.0 +24183,27,43.9,48,0.0 +24183,24,4.5,20,0.0 +24183,76,18,3,0.0 +24183,17,39,33,0.0 +24183,35,18,7,0.0 +24183,39,18,22,0.0 +24183,25,14,9,0.0 +24183,23,9,43,0.0 +24183,36,19,11,0.0 +24183,10,31,18,0.0 +24183,33,2.5,42,0.0 +24183,16,17.45,23,0.0 +24183,43,46,50,0.0 +24183,40,18.4,42,0.0 +24183,30,25.89,19,0.0 +24183,68,12.5,26,0.0 +24183,18,62.5,48,0.0 +24183,12,38,33,0.0 +24183,77,13,27,0.0 +24183,60,34,15,0.0 +24183,6,25,39,0.0 +24183,11,21,9,0.0 +24183,58,13.25,42,0.0 +24183,75,7.75,33,0.0 +24183,4,22,50,0.0 +24183,72,34.8,24,0.0 +24183,29,123.79,25,0.0 +24183,70,15,17,0.0 +24183,64,33.25,18,0.0 +24183,19,9.2,13,0.0 +24183,62,49.3,42,0.0 +24183,49,20,17,0.0 +24183,59,55,48,0.0 +24184,67,14,12,0.0 +24184,13,6,41,0.0 +24184,66,17,13,0.0 +24184,71,21.5,13,0.0 +24184,7,30,10,0.0 +24184,45,9.5,31,0.0 +24184,16,17.45,20,0.0 +24184,51,53,50,0.0 +24184,39,18,39,0.0 +24184,21,10,11,0.0 +24184,64,33.25,28,0.0 +24184,27,43.9,47,0.0 +24184,50,16.25,7,0.0 +24184,33,2.5,43,0.0 +24185,39,18,20,0.0 +24185,59,55,35,0.0 +24185,16,17.45,36,0.0 +24185,11,21,5,0.0 +24185,20,81,15,0.0 +24185,45,9.5,3,0.0 +24185,67,14,18,0.0 +24185,18,62.5,24,0.0 +24185,10,31,46,0.0 +24185,54,7.45,4,0.0 +24185,70,15,31,0.0 +24185,35,18,6,0.0 +24185,6,25,27,0.0 +24185,63,43.9,9,0.0 +24185,57,19.5,25,0.0 +24185,73,15,48,0.0 +24185,21,10,43,0.0 +24185,2,19,1,0.0 +24185,53,32.8,22,0.0 +24185,75,7.75,4,0.0 +24185,51,53,1,0.0 +24186,40,18.4,9,0.0 +24186,34,14,5,0.0 +24186,38,263.5,6,0.0 +24186,74,10,3,0.0 +24186,46,12,24,0.0 +24186,20,81,17,0.0 +24186,33,2.5,10,0.0 +24186,30,25.89,41,0.0 +24186,39,18,4,0.0 +24186,52,7,3,0.0 +24186,58,13.25,29,0.0 +24186,4,22,30,0.0 +24186,36,19,26,0.0 +24186,60,34,34,0.0 +24186,15,15.5,14,0.0 +24186,76,18,21,0.0 +24186,37,26,21,0.0 +24186,10,31,41,0.0 +24186,66,17,5,0.0 +24186,57,19.5,11,0.0 +24186,29,123.79,40,0.0 +24186,77,13,47,0.0 +24186,21,10,29,0.0 +24186,69,36,21,0.0 +24186,13,6,29,0.0 +24186,45,9.5,11,0.0 +24186,35,18,3,0.0 +24186,51,53,14,0.0 +24186,6,25,8,0.0 +24186,62,49.3,27,0.0 +24186,59,55,17,0.0 +24186,14,23.25,46,0.0 +24186,44,19.45,41,0.0 +24186,71,21.5,12,0.0 +24186,49,20,34,0.0 +24186,75,7.75,48,0.0 +24186,64,33.25,34,0.0 +24186,61,28.5,10,0.0 +24186,47,9.5,40,0.0 +24186,48,12.75,29,0.0 +24186,7,30,47,0.0 +24186,27,43.9,44,0.0 +24186,22,21,32,0.0 +24186,26,31.23,30,0.0 +24186,19,9.2,41,0.0 +24186,2,19,39,0.0 +24186,53,32.8,31,0.0 +24186,5,21.35,29,0.0 +24186,63,43.9,37,0.0 +24186,17,39,27,0.0 +24186,73,15,32,0.0 +24186,70,15,38,0.0 +24186,67,14,15,0.0 +24186,3,10,11,0.0 +24186,56,38,44,0.0 +24186,11,21,36,0.0 +24186,41,9.65,48,0.0 +24186,23,9,9,0.0 +24186,68,12.5,30,0.0 +24186,32,32,18,0.0 +24186,54,7.45,45,0.0 +24186,9,97,45,0.0 +24186,1,18,43,0.0 +24187,64,33.25,9,0.0 +24187,66,17,14,0.0 +24187,31,12.5,19,0.0 +24187,59,55,37,0.0 +24187,77,13,48,0.0 +24187,75,7.75,7,0.0 +24187,42,14,27,0.0 +24188,38,263.5,12,0.0 +24188,55,24,35,0.0 +24188,51,53,38,0.0 +24188,60,34,50,0.0 +24188,13,6,37,0.0 +24188,1,18,15,0.0 +24188,29,123.79,46,0.0 +24188,43,46,28,0.0 +24188,35,18,29,0.0 +24188,6,25,19,0.0 +24188,52,7,25,0.0 +24188,41,9.65,45,0.0 +24188,56,38,46,0.0 +24188,70,15,39,0.0 +24188,25,14,36,0.0 +24188,4,22,41,0.0 +24188,74,10,27,0.0 +24188,24,4.5,35,0.0 +24188,50,16.25,28,0.0 +24188,40,18.4,1,0.0 +24188,21,10,19,0.0 +24188,77,13,40,0.0 +24188,37,26,17,0.0 +24188,62,49.3,11,0.0 +24188,10,31,40,0.0 +24188,34,14,17,0.0 +24188,59,55,44,0.0 +24188,12,38,10,0.0 +24188,66,17,20,0.0 +24188,53,32.8,46,0.0 +24188,30,25.89,4,0.0 +24188,8,40,21,0.0 +24188,15,15.5,29,0.0 +24188,42,14,17,0.0 +24188,63,43.9,9,0.0 +24188,67,14,26,0.0 +24188,48,12.75,7,0.0 +24188,58,13.25,21,0.0 +24188,68,12.5,14,0.0 +24188,22,21,13,0.0 +24188,36,19,11,0.0 +24188,65,21.05,36,0.0 +24188,14,23.25,5,0.0 +24188,17,39,6,0.0 +24188,73,15,49,0.0 +24189,66,17,42,0.0 +24189,65,21.05,17,0.0 +24189,8,40,4,0.0 +24189,38,263.5,48,0.0 +24189,74,10,46,0.0 +24189,73,15,19,0.0 +24189,55,24,33,0.0 +24189,29,123.79,46,0.0 +24189,71,21.5,29,0.0 +24189,44,19.45,36,0.0 +24189,39,18,16,0.0 +24189,35,18,33,0.0 +24189,62,49.3,29,0.0 +24189,37,26,41,0.0 +24189,50,16.25,13,0.0 +24189,22,21,34,0.0 +24189,34,14,2,0.0 +24189,20,81,33,0.0 +24189,30,25.89,50,0.0 +24189,24,4.5,10,0.0 +24189,11,21,44,0.0 +24189,2,19,13,0.0 +24189,5,21.35,33,0.0 +24189,17,39,49,0.0 +24189,69,36,26,0.0 +24189,46,12,39,0.0 +24189,53,32.8,6,0.0 +24189,70,15,44,0.0 +24189,54,7.45,24,0.0 +24189,1,18,2,0.0 +24189,3,10,46,0.0 +24189,25,14,15,0.0 +24189,68,12.5,33,0.0 +24189,40,18.4,46,0.0 +24189,67,14,4,0.0 +24189,6,25,2,0.0 +24189,31,12.5,30,0.0 +24189,59,55,24,0.0 +24189,33,2.5,16,0.0 +24189,10,31,23,0.0 +24189,43,46,17,0.0 +24189,72,34.8,45,0.0 +24189,63,43.9,46,0.0 +24189,28,45.6,30,0.0 +24189,27,43.9,42,0.0 +24189,57,19.5,31,0.0 +24189,13,6,46,0.0 +24189,32,32,16,0.0 +24189,4,22,13,0.0 +24189,14,23.25,47,0.0 +24189,75,7.75,28,0.0 +24189,76,18,37,0.0 +24189,41,9.65,30,0.0 +24189,51,53,19,0.0 +24189,23,9,10,0.0 +24189,21,10,1,0.0 +24189,9,97,36,0.0 +24189,47,9.5,13,0.0 +24189,42,14,2,0.0 +24189,7,30,5,0.0 +24189,64,33.25,12,0.0 +24189,77,13,34,0.0 +24189,12,38,48,0.0 +24189,45,9.5,18,0.0 +24189,18,62.5,15,0.0 +24189,36,19,14,0.0 +24189,26,31.23,11,0.0 +24189,48,12.75,13,0.0 +24189,61,28.5,27,0.0 +24189,19,9.2,33,0.0 +24189,56,38,46,0.0 +24189,52,7,38,0.0 +24189,58,13.25,19,0.0 +24190,37,26,34,0.0 +24190,26,31.23,46,0.0 +24190,28,45.6,6,0.0 +24190,22,21,44,0.0 +24190,24,4.5,47,0.0 +24190,2,19,26,0.0 +24190,4,22,15,0.0 +24190,9,97,25,0.0 +24190,45,9.5,1,0.0 +24190,5,21.35,20,0.0 +24190,63,43.9,49,0.0 +24190,7,30,47,0.0 +24190,19,9.2,23,0.0 +24190,44,19.45,9,0.0 +24190,70,15,6,0.0 +24190,12,38,50,0.0 +24190,73,15,5,0.0 +24190,66,17,50,0.0 +24190,48,12.75,30,0.0 +24190,54,7.45,12,0.0 +24190,50,16.25,30,0.0 +24190,64,33.25,13,0.0 +24190,59,55,15,0.0 +24190,3,10,27,0.0 +24190,60,34,41,0.0 +24190,11,21,11,0.0 +24190,8,40,36,0.0 +24190,51,53,30,0.0 +24190,42,14,22,0.0 +24190,69,36,15,0.0 +24190,68,12.5,28,0.0 +24190,71,21.5,23,0.0 +24190,13,6,31,0.0 +24190,32,32,29,0.0 +24190,61,28.5,45,0.0 +24190,56,38,9,0.0 +24190,52,7,21,0.0 +24190,57,19.5,19,0.0 +24190,15,15.5,42,0.0 +24190,36,19,32,0.0 +24190,31,12.5,13,0.0 +24190,21,10,47,0.0 +24190,62,49.3,22,0.0 +24190,47,9.5,5,0.0 +24190,33,2.5,32,0.0 +24191,61,28.5,25,0.0 +24191,66,17,48,0.0 +24191,1,18,25,0.0 +24191,22,21,9,0.0 +24191,54,7.45,29,0.0 +24191,47,9.5,26,0.0 +24191,26,31.23,14,0.0 +24191,58,13.25,36,0.0 +24191,15,15.5,44,0.0 +24191,11,21,19,0.0 +24191,19,9.2,42,0.0 +24191,28,45.6,25,0.0 +24191,55,24,37,0.0 +24191,51,53,27,0.0 +24191,69,36,41,0.0 +24191,13,6,4,0.0 +24191,73,15,21,0.0 +24191,59,55,5,0.0 +24191,71,21.5,14,0.0 +24191,34,14,20,0.0 +24191,3,10,8,0.0 +24191,39,18,7,0.0 +24191,20,81,19,0.0 +24191,57,19.5,30,0.0 +24191,53,32.8,17,0.0 +24191,25,14,25,0.0 +24191,36,19,6,0.0 +24191,2,19,35,0.0 +24191,23,9,40,0.0 +24191,29,123.79,29,0.0 +24191,70,15,46,0.0 +24191,30,25.89,43,0.0 +24191,64,33.25,11,0.0 +24192,24,4.5,2,0.0 +24192,21,10,32,0.0 +24192,63,43.9,41,0.0 +24192,35,18,30,0.0 +24192,15,15.5,41,0.0 +24192,77,13,48,0.0 +24192,26,31.23,27,0.0 +24192,59,55,29,0.0 +24192,76,18,40,0.0 +24192,49,20,14,0.0 +24192,45,9.5,2,0.0 +24192,57,19.5,26,0.0 +24192,38,263.5,13,0.0 +24192,6,25,19,0.0 +24192,48,12.75,3,0.0 +24192,69,36,8,0.0 +24192,42,14,2,0.0 +24192,11,21,35,0.0 +24192,50,16.25,22,0.0 +24192,56,38,42,0.0 +24192,60,34,46,0.0 +24192,3,10,26,0.0 +24192,23,9,44,0.0 +24192,40,18.4,27,0.0 +24192,72,34.8,3,0.0 +24192,1,18,34,0.0 +24192,68,12.5,24,0.0 +24192,12,38,37,0.0 +24192,7,30,13,0.0 +24192,52,7,49,0.0 +24192,74,10,14,0.0 +24192,34,14,29,0.0 +24192,4,22,29,0.0 +24192,65,21.05,16,0.0 +24192,29,123.79,32,0.0 +24192,25,14,20,0.0 +24193,16,17.45,30,0.0 +24193,24,4.5,3,0.0 +24193,35,18,28,0.0 +24193,9,97,30,0.0 +24194,20,81,24,0.0 +24194,7,30,8,0.0 +24194,23,9,49,0.0 +24194,36,19,41,0.0 +24194,34,14,42,0.0 +24194,17,39,39,0.0 +24194,25,14,7,0.0 +24194,41,9.65,40,0.0 +24194,15,15.5,36,0.0 +24194,44,19.45,2,0.0 +24194,9,97,46,0.0 +24194,45,9.5,14,0.0 +24194,47,9.5,50,0.0 +24194,30,25.89,16,0.0 +24194,31,12.5,46,0.0 +24194,11,21,22,0.0 +24194,68,12.5,9,0.0 +24194,71,21.5,31,0.0 +24194,1,18,34,0.0 +24194,69,36,37,0.0 +24194,55,24,13,0.0 +24194,21,10,18,0.0 +24194,57,19.5,46,0.0 +24194,33,2.5,4,0.0 +24194,72,34.8,6,0.0 +24194,2,19,38,0.0 +24194,26,31.23,34,0.0 +24194,40,18.4,14,0.0 +24194,46,12,47,0.0 +24194,13,6,27,0.0 +24194,38,263.5,13,0.0 +24194,24,4.5,50,0.0 +24194,52,7,30,0.0 +24194,42,14,50,0.0 +24194,6,25,38,0.0 +24194,8,40,18,0.0 +24194,70,15,24,0.0 +24195,48,12.75,39,0.0 +24195,57,19.5,39,0.0 +24195,17,39,6,0.0 +24195,77,13,44,0.0 +24195,28,45.6,44,0.0 +24195,37,26,33,0.0 +24195,35,18,15,0.0 +24195,27,43.9,35,0.0 +24195,26,31.23,29,0.0 +24195,5,21.35,37,0.0 +24195,51,53,8,0.0 +24195,3,10,20,0.0 +24195,42,14,37,0.0 +24195,62,49.3,42,0.0 +24195,58,13.25,13,0.0 +24195,16,17.45,9,0.0 +24195,23,9,46,0.0 +24195,1,18,38,0.0 +24195,64,33.25,19,0.0 +24195,33,2.5,22,0.0 +24195,61,28.5,22,0.0 +24195,50,16.25,13,0.0 +24195,54,7.45,36,0.0 +24195,13,6,2,0.0 +24195,75,7.75,46,0.0 +24195,46,12,42,0.0 +24195,67,14,10,0.0 +24195,60,34,37,0.0 +24195,43,46,22,0.0 +24196,14,23.25,1,0.0 +24196,2,19,7,0.0 +24196,24,4.5,41,0.0 +24196,5,21.35,3,0.0 +24196,36,19,25,0.0 +24196,11,21,50,0.0 +24196,10,31,9,0.0 +24196,72,34.8,28,0.0 +24196,46,12,11,0.0 +24196,76,18,13,0.0 +24196,27,43.9,2,0.0 +24196,7,30,7,0.0 +24196,75,7.75,48,0.0 +24196,18,62.5,12,0.0 +24196,68,12.5,22,0.0 +24196,48,12.75,46,0.0 +24196,37,26,28,0.0 +24196,60,34,47,0.0 +24196,23,9,38,0.0 +24196,62,49.3,36,0.0 +24196,73,15,40,0.0 +24197,58,13.25,15,0.0 +24197,10,31,19,0.0 +24197,63,43.9,33,0.0 +24197,31,12.5,50,0.0 +24197,7,30,13,0.0 +24197,22,21,27,0.0 +24197,76,18,30,0.0 +24197,21,10,25,0.0 +24197,12,38,14,0.0 +24197,56,38,30,0.0 +24197,54,7.45,23,0.0 +24197,17,39,20,0.0 +24197,33,2.5,41,0.0 +24197,15,15.5,39,0.0 +24197,51,53,31,0.0 +24197,25,14,44,0.0 +24197,52,7,47,0.0 +24197,6,25,20,0.0 +24197,44,19.45,31,0.0 +24197,9,97,15,0.0 +24197,23,9,12,0.0 +24197,24,4.5,21,0.0 +24197,49,20,15,0.0 +24197,62,49.3,47,0.0 +24197,3,10,15,0.0 +24197,71,21.5,39,0.0 +24197,59,55,40,0.0 +24197,26,31.23,10,0.0 +24197,2,19,47,0.0 +24197,66,17,9,0.0 +24197,20,81,40,0.0 +24197,13,6,30,0.0 +24197,45,9.5,27,0.0 +24197,70,15,22,0.0 +24197,75,7.75,23,0.0 +24197,29,123.79,3,0.0 +24198,25,14,24,0.0 +24198,34,14,27,0.0 +24198,12,38,47,0.0 +24198,28,45.6,34,0.0 +24198,8,40,38,0.0 +24198,71,21.5,5,0.0 +24198,65,21.05,1,0.0 +24198,40,18.4,39,0.0 +24198,21,10,40,0.0 +24198,69,36,50,0.0 +24198,57,19.5,16,0.0 +24198,74,10,44,0.0 +24198,2,19,22,0.0 +24198,66,17,39,0.0 +24198,22,21,34,0.0 +24198,54,7.45,30,0.0 +24198,30,25.89,13,0.0 +24198,7,30,11,0.0 +24198,68,12.5,3,0.0 +24198,4,22,1,0.0 +24198,17,39,2,0.0 +24198,35,18,27,0.0 +24198,9,97,11,0.0 +24198,52,7,29,0.0 +24198,53,32.8,36,0.0 +24198,58,13.25,19,0.0 +24198,36,19,31,0.0 +24198,41,9.65,16,0.0 +24198,18,62.5,24,0.0 +24198,11,21,19,0.0 +24198,38,263.5,44,0.0 +24198,75,7.75,34,0.0 +24198,67,14,36,0.0 +24198,20,81,39,0.0 +24199,34,14,42,0.0 +24199,75,7.75,46,0.0 +24199,22,21,43,0.0 +24199,24,4.5,42,0.0 +24199,39,18,11,0.0 +24199,17,39,13,0.0 +24199,20,81,28,0.0 +24199,37,26,8,0.0 +24199,41,9.65,3,0.0 +24199,56,38,41,0.0 +24199,51,53,1,0.0 +24199,30,25.89,5,0.0 +24199,38,263.5,39,0.0 +24199,10,31,20,0.0 +24199,42,14,41,0.0 +24199,69,36,14,0.0 +24199,68,12.5,32,0.0 +24200,45,9.5,8,0.0 +24200,1,18,33,0.0 +24200,9,97,12,0.0 +24200,46,12,43,0.0 +24200,58,13.25,17,0.0 +24200,53,32.8,15,0.0 +24200,40,18.4,16,0.0 +24200,50,16.25,47,0.0 +24200,71,21.5,14,0.0 +24200,43,46,30,0.0 +24200,49,20,45,0.0 +24200,55,24,30,0.0 +24201,73,15,11,0.0 +24201,49,20,28,0.0 +24201,10,31,38,0.0 +24201,70,15,36,0.0 +24201,68,12.5,24,0.0 +24201,43,46,10,0.0 +24201,66,17,47,0.0 +24201,12,38,46,0.0 +24201,47,9.5,50,0.0 +24201,75,7.75,32,0.0 +24201,42,14,11,0.0 +24201,27,43.9,17,0.0 +24201,7,30,7,0.0 +24201,39,18,5,0.0 +24201,22,21,17,0.0 +24201,46,12,5,0.0 +24201,65,21.05,42,0.0 +24201,51,53,20,0.0 +24201,44,19.45,1,0.0 +24201,11,21,11,0.0 +24201,64,33.25,49,0.0 +24201,58,13.25,6,0.0 +24201,21,10,24,0.0 +24201,13,6,13,0.0 +24201,50,16.25,37,0.0 +24201,31,12.5,17,0.0 +24201,20,81,10,0.0 +24201,33,2.5,46,0.0 +24201,76,18,33,0.0 +24201,62,49.3,13,0.0 +24201,17,39,3,0.0 +24201,24,4.5,21,0.0 +24201,55,24,33,0.0 +24201,40,18.4,16,0.0 +24201,18,62.5,29,0.0 +24201,35,18,26,0.0 +24201,3,10,42,0.0 +24201,74,10,44,0.0 +24201,56,38,23,0.0 +24201,28,45.6,37,0.0 +24201,6,25,48,0.0 +24201,9,97,44,0.0 +24201,23,9,45,0.0 +24201,16,17.45,41,0.0 +24201,30,25.89,10,0.0 +24201,57,19.5,21,0.0 +24201,45,9.5,17,0.0 +24201,48,12.75,29,0.0 +24201,14,23.25,6,0.0 +24201,60,34,18,0.0 +24201,67,14,40,0.0 +24201,77,13,35,0.0 +24201,5,21.35,9,0.0 +24201,72,34.8,7,0.0 +24201,15,15.5,13,0.0 +24201,19,9.2,13,0.0 +24201,61,28.5,33,0.0 +24201,37,26,35,0.0 +24202,6,25,19,0.0 +24202,42,14,50,0.0 +24202,17,39,11,0.0 +24202,60,34,15,0.0 +24202,44,19.45,44,0.0 +24202,72,34.8,40,0.0 +24202,62,49.3,47,0.0 +24202,50,16.25,20,0.0 +24202,43,46,38,0.0 +24202,45,9.5,2,0.0 +24202,63,43.9,7,0.0 +24202,41,9.65,41,0.0 +24202,27,43.9,20,0.0 +24202,61,28.5,44,0.0 +24202,64,33.25,25,0.0 +24202,65,21.05,34,0.0 +24202,26,31.23,24,0.0 +24202,68,12.5,33,0.0 +24202,15,15.5,38,0.0 +24202,48,12.75,41,0.0 +24202,58,13.25,20,0.0 +24202,25,14,32,0.0 +24202,4,22,8,0.0 +24202,69,36,4,0.0 +24202,35,18,25,0.0 +24202,67,14,32,0.0 +24202,53,32.8,8,0.0 +24202,18,62.5,28,0.0 +24202,56,38,20,0.0 +24202,11,21,20,0.0 +24202,31,12.5,11,0.0 +24202,12,38,10,0.0 +24202,52,7,49,0.0 +24202,22,21,36,0.0 +24202,73,15,3,0.0 +24202,23,9,43,0.0 +24202,74,10,5,0.0 +24202,14,23.25,42,0.0 +24202,66,17,16,0.0 +24202,36,19,17,0.0 +24202,29,123.79,41,0.0 +24202,55,24,39,0.0 +24202,2,19,23,0.0 +24202,32,32,8,0.0 +24202,49,20,33,0.0 +24202,13,6,23,0.0 +24202,70,15,46,0.0 +24202,19,9.2,43,0.0 +24202,75,7.75,45,0.0 +24202,3,10,8,0.0 +24202,39,18,46,0.0 +24202,59,55,41,0.0 +24202,57,19.5,35,0.0 +24202,1,18,43,0.0 +24202,33,2.5,17,0.0 +24202,20,81,46,0.0 +24202,9,97,36,0.0 +24202,8,40,36,0.0 +24202,77,13,6,0.0 +24202,76,18,47,0.0 +24203,36,19,38,0.0 +24203,75,7.75,13,0.0 +24203,61,28.5,13,0.0 +24203,64,33.25,45,0.0 +24203,66,17,42,0.0 +24203,24,4.5,50,0.0 +24203,28,45.6,17,0.0 +24203,9,97,6,0.0 +24203,37,26,42,0.0 +24203,30,25.89,38,0.0 +24203,23,9,42,0.0 +24203,71,21.5,5,0.0 +24203,8,40,2,0.0 +24203,5,21.35,4,0.0 +24203,29,123.79,38,0.0 +24203,26,31.23,44,0.0 +24203,3,10,11,0.0 +24203,50,16.25,29,0.0 +24203,18,62.5,2,0.0 +24203,57,19.5,12,0.0 +24203,53,32.8,45,0.0 +24203,52,7,8,0.0 +24203,72,34.8,36,0.0 +24203,47,9.5,37,0.0 +24203,22,21,41,0.0 +24203,48,12.75,21,0.0 +24203,16,17.45,6,0.0 +24203,35,18,49,0.0 +24203,46,12,41,0.0 +24203,77,13,28,0.0 +24203,20,81,25,0.0 +24203,65,21.05,4,0.0 +24203,59,55,35,0.0 +24203,55,24,39,0.0 +24203,51,53,22,0.0 +24203,54,7.45,29,0.0 +24203,74,10,2,0.0 +24203,19,9.2,43,0.0 +24203,62,49.3,43,0.0 +24203,21,10,36,0.0 +24203,31,12.5,26,0.0 +24203,58,13.25,44,0.0 +24203,25,14,9,0.0 +24203,15,15.5,4,0.0 +24203,49,20,49,0.0 +24203,34,14,20,0.0 +24203,70,15,48,0.0 +24203,4,22,16,0.0 +24203,63,43.9,5,0.0 +24203,1,18,36,0.0 +24203,69,36,36,0.0 +24203,6,25,37,0.0 +24203,60,34,35,0.0 +24203,17,39,20,0.0 +24203,32,32,14,0.0 +24203,12,38,50,0.0 +24203,33,2.5,28,0.0 +24203,39,18,4,0.0 +24203,11,21,28,0.0 +24203,13,6,35,0.0 +24203,41,9.65,25,0.0 +24203,45,9.5,9,0.0 +24203,73,15,30,0.0 +24203,40,18.4,24,0.0 +24203,42,14,31,0.0 +24203,7,30,6,0.0 +24203,76,18,34,0.0 +24203,56,38,3,0.0 +24203,14,23.25,35,0.0 +24203,67,14,27,0.0 +24204,8,40,13,0.0 +24204,59,55,28,0.0 +24204,23,9,26,0.0 +24204,10,31,50,0.0 +24204,24,4.5,4,0.0 +24204,7,30,3,0.0 +24204,36,19,48,0.0 +24204,30,25.89,44,0.0 +24204,74,10,24,0.0 +24204,63,43.9,1,0.0 +24204,49,20,16,0.0 +24204,52,7,49,0.0 +24204,28,45.6,26,0.0 +24204,58,13.25,12,0.0 +24204,25,14,47,0.0 +24204,54,7.45,30,0.0 +24204,44,19.45,46,0.0 +24204,34,14,27,0.0 +24204,21,10,11,0.0 +24204,62,49.3,3,0.0 +24204,22,21,15,0.0 +24204,43,46,26,0.0 +24204,64,33.25,50,0.0 +24204,46,12,12,0.0 +24204,12,38,13,0.0 +24204,9,97,46,0.0 +24204,42,14,5,0.0 +24204,68,12.5,15,0.0 +24204,51,53,26,0.0 +24204,26,31.23,23,0.0 +24204,32,32,31,0.0 +24204,53,32.8,48,0.0 +24204,33,2.5,29,0.0 +24204,75,7.75,5,0.0 +24204,18,62.5,38,0.0 +24204,72,34.8,27,0.0 +24204,5,21.35,12,0.0 +24204,41,9.65,22,0.0 +24204,14,23.25,33,0.0 +24204,61,28.5,22,0.0 +24204,73,15,20,0.0 +24204,65,21.05,19,0.0 +24204,3,10,31,0.0 +24204,2,19,41,0.0 +24204,35,18,22,0.0 +24204,60,34,21,0.0 +24204,31,12.5,29,0.0 +24204,38,263.5,45,0.0 +24204,70,15,27,0.0 +24204,16,17.45,19,0.0 +24204,69,36,5,0.0 +24204,55,24,42,0.0 +24204,20,81,45,0.0 +24204,6,25,45,0.0 +24204,39,18,49,0.0 +24204,67,14,15,0.0 +24204,57,19.5,32,0.0 +24204,1,18,32,0.0 +24204,4,22,28,0.0 +24204,66,17,43,0.0 +24204,27,43.9,37,0.0 +24204,77,13,39,0.0 +24204,17,39,41,0.0 +24204,13,6,29,0.0 +24204,45,9.5,4,0.0 +24204,76,18,10,0.0 +24204,40,18.4,26,0.0 +24204,48,12.75,41,0.0 +24204,15,15.5,5,0.0 +24205,1,18,18,0.0 +24205,58,13.25,27,0.0 +24205,77,13,31,0.0 +24205,52,7,20,0.0 +24205,46,12,26,0.0 +24205,47,9.5,24,0.0 +24205,51,53,37,0.0 +24205,43,46,4,0.0 +24205,70,15,37,0.0 +24205,36,19,8,0.0 +24205,8,40,4,0.0 +24205,28,45.6,23,0.0 +24205,50,16.25,4,0.0 +24205,48,12.75,33,0.0 +24205,60,34,49,0.0 +24205,68,12.5,29,0.0 +24205,25,14,46,0.0 +24205,45,9.5,30,0.0 +24205,26,31.23,6,0.0 +24205,38,263.5,31,0.0 +24205,7,30,44,0.0 +24205,11,21,24,0.0 +24205,6,25,18,0.0 +24205,18,62.5,13,0.0 +24205,10,31,13,0.0 +24205,34,14,5,0.0 +24205,59,55,31,0.0 +24205,27,43.9,7,0.0 +24205,61,28.5,13,0.0 +24205,23,9,39,0.0 +24205,37,26,15,0.0 +24205,63,43.9,13,0.0 +24205,44,19.45,19,0.0 +24205,64,33.25,4,0.0 +24205,31,12.5,7,0.0 +24205,74,10,28,0.0 +24205,20,81,42,0.0 +24206,55,24,44,0.0 +24206,4,22,46,0.0 +24206,42,14,20,0.0 +24206,63,43.9,50,0.0 +24206,29,123.79,40,0.0 +24206,70,15,15,0.0 +24206,72,34.8,31,0.0 +24206,28,45.6,40,0.0 +24206,73,15,27,0.0 +24206,52,7,3,0.0 +24206,47,9.5,48,0.0 +24206,16,17.45,10,0.0 +24206,71,21.5,3,0.0 +24206,7,30,6,0.0 +24206,32,32,7,0.0 +24206,17,39,34,0.0 +24206,44,19.45,28,0.0 +24206,45,9.5,33,0.0 +24206,64,33.25,3,0.0 +24206,31,12.5,49,0.0 +24206,53,32.8,19,0.0 +24206,39,18,36,0.0 +24206,11,21,5,0.0 +24206,59,55,36,0.0 +24206,34,14,31,0.0 +24206,22,21,45,0.0 +24206,5,21.35,20,0.0 +24206,60,34,47,0.0 +24206,69,36,18,0.0 +24206,74,10,24,0.0 +24206,40,18.4,21,0.0 +24206,43,46,27,0.0 +24206,12,38,18,0.0 +24206,75,7.75,35,0.0 +24206,62,49.3,22,0.0 +24207,23,9,2,0.0 +24207,26,31.23,29,0.0 +24207,1,18,13,0.0 +24207,57,19.5,29,0.0 +24207,42,14,49,0.0 +24207,15,15.5,2,0.0 +24207,19,9.2,32,0.0 +24207,34,14,19,0.0 +24207,21,10,18,0.0 +24207,71,21.5,11,0.0 +24208,77,13,49,0.0 +24208,60,34,49,0.0 +24208,58,13.25,50,0.0 +24208,33,2.5,38,0.0 +24208,30,25.89,23,0.0 +24208,65,21.05,2,0.0 +24208,75,7.75,10,0.0 +24208,12,38,20,0.0 +24208,8,40,7,0.0 +24208,10,31,40,0.0 +24208,46,12,14,0.0 +24208,49,20,35,0.0 +24208,70,15,26,0.0 +24208,27,43.9,42,0.0 +24208,43,46,27,0.0 +24208,52,7,10,0.0 +24208,50,16.25,31,0.0 +24208,74,10,26,0.0 +24208,64,33.25,3,0.0 +24208,67,14,34,0.0 +24208,24,4.5,24,0.0 +24208,31,12.5,20,0.0 +24208,62,49.3,18,0.0 +24208,6,25,38,0.0 +24208,38,263.5,28,0.0 +24208,25,14,44,0.0 +24208,26,31.23,20,0.0 +24208,68,12.5,24,0.0 +24208,15,15.5,1,0.0 +24208,59,55,34,0.0 +24208,35,18,32,0.0 +24208,61,28.5,30,0.0 +24208,41,9.65,7,0.0 +24208,13,6,36,0.0 +24208,1,18,13,0.0 +24208,55,24,15,0.0 +24208,63,43.9,25,0.0 +24208,23,9,22,0.0 +24208,7,30,23,0.0 +24208,40,18.4,22,0.0 +24208,29,123.79,8,0.0 +24208,5,21.35,48,0.0 +24208,37,26,49,0.0 +24208,53,32.8,22,0.0 +24208,72,34.8,38,0.0 +24208,71,21.5,28,0.0 +24208,57,19.5,36,0.0 +24208,54,7.45,2,0.0 +24208,21,10,46,0.0 +24208,19,9.2,36,0.0 +24208,11,21,36,0.0 +24208,4,22,9,0.0 +24208,47,9.5,41,0.0 +24208,45,9.5,44,0.0 +24208,44,19.45,36,0.0 +24208,2,19,4,0.0 +24208,73,15,47,0.0 +24208,14,23.25,9,0.0 +24208,48,12.75,3,0.0 +24208,32,32,22,0.0 +24208,66,17,47,0.0 +24208,9,97,15,0.0 +24208,34,14,35,0.0 +24208,20,81,22,0.0 +24208,56,38,17,0.0 +24208,39,18,14,0.0 +24208,16,17.45,46,0.0 +24208,36,19,7,0.0 +24209,75,7.75,7,0.0 +24209,38,263.5,19,0.0 +24209,60,34,26,0.0 +24209,51,53,49,0.0 +24209,27,43.9,50,0.0 +24209,5,21.35,13,0.0 +24209,28,45.6,5,0.0 +24209,4,22,48,0.0 +24209,24,4.5,13,0.0 +24209,46,12,44,0.0 +24209,59,55,29,0.0 +24209,6,25,9,0.0 +24209,30,25.89,22,0.0 +24209,15,15.5,23,0.0 +24209,68,12.5,2,0.0 +24209,37,26,16,0.0 +24209,32,32,34,0.0 +24209,11,21,27,0.0 +24209,58,13.25,28,0.0 +24209,20,81,43,0.0 +24209,61,28.5,17,0.0 +24209,69,36,18,0.0 +24209,41,9.65,17,0.0 +24209,26,31.23,31,0.0 +24209,40,18.4,6,0.0 +24209,72,34.8,1,0.0 +24209,77,13,46,0.0 +24209,1,18,24,0.0 +24209,71,21.5,37,0.0 +24209,7,30,43,0.0 +24209,53,32.8,48,0.0 +24209,33,2.5,32,0.0 +24210,46,12,4,0.0 +24210,20,81,32,0.0 +24210,24,4.5,31,0.0 +24210,10,31,44,0.0 +24210,36,19,14,0.0 +24210,52,7,33,0.0 +24210,8,40,9,0.0 +24210,51,53,34,0.0 +24210,1,18,40,0.0 +24210,13,6,2,0.0 +24210,62,49.3,47,0.0 +24210,42,14,5,0.0 +24210,28,45.6,10,0.0 +24210,73,15,13,0.0 +24210,50,16.25,20,0.0 +24210,66,17,9,0.0 +24210,6,25,4,0.0 +24210,47,9.5,6,0.0 +24210,31,12.5,4,0.0 +24210,72,34.8,43,0.0 +24210,38,263.5,27,0.0 +24210,43,46,11,0.0 +24210,71,21.5,19,0.0 +24210,68,12.5,37,0.0 +24210,21,10,25,0.0 +24210,57,19.5,9,0.0 +24210,74,10,36,0.0 +24210,77,13,24,0.0 +24210,26,31.23,26,0.0 +24210,19,9.2,50,0.0 +24210,7,30,45,0.0 +24210,67,14,37,0.0 +24210,14,23.25,14,0.0 +24210,61,28.5,29,0.0 +24210,37,26,36,0.0 +24210,34,14,21,0.0 +24210,22,21,14,0.0 +24210,30,25.89,12,0.0 +24210,63,43.9,11,0.0 +24210,39,18,27,0.0 +24210,33,2.5,2,0.0 +24210,15,15.5,18,0.0 +24210,69,36,18,0.0 +24211,60,34,45,0.0 +24211,48,12.75,1,0.0 +24211,31,12.5,49,0.0 +24211,35,18,47,0.0 +24211,20,81,7,0.0 +24211,24,4.5,3,0.0 +24211,51,53,17,0.0 +24211,21,10,27,0.0 +24211,12,38,15,0.0 +24211,17,39,3,0.0 +24211,62,49.3,28,0.0 +24211,64,33.25,37,0.0 +24211,59,55,14,0.0 +24211,14,23.25,16,0.0 +24211,72,34.8,49,0.0 +24211,30,25.89,48,0.0 +24211,15,15.5,42,0.0 +24211,66,17,42,0.0 +24211,76,18,1,0.0 +24211,58,13.25,33,0.0 +24211,69,36,44,0.0 +24211,9,97,16,0.0 +24211,71,21.5,8,0.0 +24211,18,62.5,14,0.0 +24211,6,25,36,0.0 +24211,3,10,24,0.0 +24211,57,19.5,4,0.0 +24211,23,9,32,0.0 +24211,27,43.9,6,0.0 +24211,8,40,46,0.0 +24211,37,26,31,0.0 +24211,29,123.79,45,0.0 +24211,39,18,31,0.0 +24211,19,9.2,21,0.0 +24211,67,14,2,0.0 +24211,36,19,42,0.0 +24211,43,46,45,0.0 +24211,34,14,31,0.0 +24211,33,2.5,25,0.0 +24211,74,10,15,0.0 +24211,49,20,29,0.0 +24211,56,38,26,0.0 +24211,54,7.45,44,0.0 +24211,68,12.5,44,0.0 +24211,77,13,50,0.0 +24211,41,9.65,31,0.0 +24212,7,30,41,0.0 +24212,11,21,38,0.0 +24212,43,46,4,0.0 +24212,49,20,1,0.0 +24212,1,18,19,0.0 +24212,57,19.5,3,0.0 +24212,10,31,23,0.0 +24212,62,49.3,15,0.0 +24213,72,34.8,25,0.0 +24213,42,14,37,0.0 +24213,65,21.05,13,0.0 +24213,3,10,35,0.0 +24213,44,19.45,1,0.0 +24213,10,31,3,0.0 +24213,28,45.6,34,0.0 +24213,75,7.75,16,0.0 +24213,63,43.9,3,0.0 +24213,68,12.5,17,0.0 +24213,73,15,1,0.0 +24213,46,12,38,0.0 +24213,53,32.8,2,0.0 +24213,24,4.5,19,0.0 +24213,54,7.45,7,0.0 +24213,27,43.9,12,0.0 +24213,31,12.5,5,0.0 +24213,25,14,36,0.0 +24213,33,2.5,39,0.0 +24213,48,12.75,1,0.0 +24213,52,7,25,0.0 +24213,30,25.89,37,0.0 +24213,77,13,24,0.0 +24213,36,19,18,0.0 +24213,6,25,1,0.0 +24213,62,49.3,2,0.0 +24213,38,263.5,10,0.0 +24213,22,21,14,0.0 +24213,16,17.45,35,0.0 +24213,12,38,48,0.0 +24213,11,21,12,0.0 +24213,29,123.79,22,0.0 +24213,35,18,20,0.0 +24213,19,9.2,48,0.0 +24213,66,17,34,0.0 +24213,21,10,44,0.0 +24213,15,15.5,1,0.0 +24213,59,55,13,0.0 +24213,41,9.65,9,0.0 +24213,50,16.25,43,0.0 +24213,55,24,44,0.0 +24213,9,97,50,0.0 +24213,4,22,3,0.0 +24213,40,18.4,41,0.0 +24213,2,19,50,0.0 +24213,67,14,40,0.0 +24213,8,40,36,0.0 +24213,23,9,27,0.0 +24213,37,26,48,0.0 +24213,49,20,22,0.0 +24213,76,18,35,0.0 +24213,58,13.25,27,0.0 +24213,18,62.5,10,0.0 +24213,26,31.23,24,0.0 +24213,20,81,29,0.0 +24213,34,14,32,0.0 +24213,61,28.5,47,0.0 +24213,57,19.5,40,0.0 +24213,32,32,15,0.0 +24213,17,39,48,0.0 +24213,43,46,3,0.0 +24213,13,6,36,0.0 +24213,39,18,16,0.0 +24213,74,10,10,0.0 +24213,5,21.35,9,0.0 +24213,71,21.5,15,0.0 +24213,47,9.5,33,0.0 +24213,56,38,21,0.0 +24213,14,23.25,47,0.0 +24213,7,30,32,0.0 +24213,51,53,50,0.0 +24214,60,34,24,0.0 +24214,29,123.79,33,0.0 +24214,45,9.5,18,0.0 +24214,67,14,40,0.0 +24214,6,25,13,0.0 +24214,16,17.45,2,0.0 +24215,32,32,43,0.0 +24215,74,10,49,0.0 +24215,20,81,33,0.0 +24215,46,12,13,0.0 +24215,50,16.25,19,0.0 +24215,3,10,40,0.0 +24215,29,123.79,31,0.0 +24215,6,25,25,0.0 +24215,17,39,22,0.0 +24215,34,14,10,0.0 +24215,52,7,22,0.0 +24215,27,43.9,35,0.0 +24215,35,18,14,0.0 +24215,54,7.45,45,0.0 +24215,22,21,38,0.0 +24215,30,25.89,22,0.0 +24215,75,7.75,9,0.0 +24215,41,9.65,40,0.0 +24215,15,15.5,10,0.0 +24215,68,12.5,20,0.0 +24215,36,19,16,0.0 +24215,45,9.5,18,0.0 +24215,14,23.25,9,0.0 +24215,56,38,29,0.0 +24215,37,26,42,0.0 +24215,44,19.45,44,0.0 +24215,66,17,35,0.0 +24215,67,14,34,0.0 +24215,7,30,32,0.0 +24215,19,9.2,43,0.0 +24215,42,14,24,0.0 +24216,51,53,1,0.0 +24216,54,7.45,37,0.0 +24216,53,32.8,4,0.0 +24216,17,39,45,0.0 +24216,10,31,19,0.0 +24216,77,13,9,0.0 +24216,61,28.5,29,0.0 +24216,32,32,37,0.0 +24216,22,21,47,0.0 +24216,66,17,16,0.0 +24216,4,22,35,0.0 +24216,33,2.5,9,0.0 +24216,30,25.89,41,0.0 +24216,5,21.35,31,0.0 +24216,35,18,30,0.0 +24216,11,21,46,0.0 +24216,31,12.5,11,0.0 +24216,48,12.75,24,0.0 +24216,75,7.75,4,0.0 +24216,73,15,10,0.0 +24216,52,7,31,0.0 +24216,34,14,23,0.0 +24216,62,49.3,31,0.0 +24216,43,46,46,0.0 +24216,76,18,41,0.0 +24216,40,18.4,31,0.0 +24216,42,14,6,0.0 +24216,44,19.45,38,0.0 +24216,29,123.79,29,0.0 +24216,68,12.5,19,0.0 +24216,50,16.25,29,0.0 +24216,23,9,2,0.0 +24216,58,13.25,9,0.0 +24216,27,43.9,11,0.0 +24216,39,18,19,0.0 +24216,55,24,13,0.0 +24216,59,55,12,0.0 +24216,57,19.5,28,0.0 +24216,15,15.5,32,0.0 +24216,26,31.23,32,0.0 +24216,56,38,4,0.0 +24216,67,14,2,0.0 +24216,49,20,43,0.0 +24216,12,38,48,0.0 +24216,13,6,12,0.0 +24216,45,9.5,10,0.0 +24216,1,18,39,0.0 +24216,46,12,23,0.0 +24216,28,45.6,12,0.0 +24216,70,15,6,0.0 +24216,16,17.45,22,0.0 +24216,8,40,41,0.0 +24216,37,26,40,0.0 +24216,71,21.5,47,0.0 +24216,47,9.5,9,0.0 +24216,18,62.5,26,0.0 +24216,64,33.25,47,0.0 +24216,14,23.25,34,0.0 +24216,60,34,18,0.0 +24216,65,21.05,30,0.0 +24216,63,43.9,50,0.0 +24216,3,10,23,0.0 +24216,74,10,22,0.0 +24216,9,97,33,0.0 +24216,69,36,24,0.0 +24216,6,25,44,0.0 +24216,38,263.5,23,0.0 +24216,19,9.2,14,0.0 +24216,36,19,45,0.0 +24216,72,34.8,14,0.0 +24216,41,9.65,49,0.0 +24216,24,4.5,30,0.0 +24217,11,21,30,0.0 +24217,75,7.75,42,0.0 +24217,74,10,3,0.0 +24217,55,24,18,0.0 +24217,69,36,24,0.0 +24217,64,33.25,44,0.0 +24217,14,23.25,12,0.0 +24217,73,15,34,0.0 +24217,56,38,30,0.0 +24217,61,28.5,3,0.0 +24217,18,62.5,49,0.0 +24218,1,18,18,0.0 +24218,50,16.25,39,0.0 +24218,51,53,33,0.0 +24218,73,15,32,0.0 +24218,32,32,25,0.0 +24218,26,31.23,20,0.0 +24218,49,20,35,0.0 +24218,27,43.9,2,0.0 +24218,65,21.05,43,0.0 +24218,63,43.9,43,0.0 +24218,30,25.89,2,0.0 +24218,34,14,39,0.0 +24218,18,62.5,18,0.0 +24218,16,17.45,3,0.0 +24218,72,34.8,5,0.0 +24218,57,19.5,12,0.0 +24218,15,15.5,27,0.0 +24218,7,30,44,0.0 +24218,5,21.35,50,0.0 +24218,4,22,28,0.0 +24218,68,12.5,32,0.0 +24218,41,9.65,6,0.0 +24218,6,25,16,0.0 +24218,74,10,9,0.0 +24218,37,26,29,0.0 +24218,64,33.25,15,0.0 +24218,9,97,27,0.0 +24218,56,38,8,0.0 +24218,33,2.5,36,0.0 +24218,35,18,24,0.0 +24218,10,31,46,0.0 +24218,69,36,32,0.0 +24218,52,7,12,0.0 +24218,46,12,2,0.0 +24218,45,9.5,8,0.0 +24218,47,9.5,35,0.0 +24218,71,21.5,3,0.0 +24218,14,23.25,41,0.0 +24218,62,49.3,19,0.0 +24218,21,10,13,0.0 +24218,43,46,1,0.0 +24218,58,13.25,27,0.0 +24218,20,81,17,0.0 +24219,64,33.25,6,0.0 +24219,24,4.5,4,0.0 +24219,62,49.3,6,0.0 +24219,60,34,13,0.0 +24219,29,123.79,17,0.0 +24219,69,36,19,0.0 +24219,59,55,16,0.0 +24219,35,18,50,0.0 +24219,1,18,35,0.0 +24219,20,81,24,0.0 +24219,53,32.8,29,0.0 +24219,23,9,1,0.0 +24219,19,9.2,23,0.0 +24219,33,2.5,2,0.0 +24219,67,14,15,0.0 +24219,15,15.5,47,0.0 +24219,38,263.5,22,0.0 +24219,48,12.75,28,0.0 +24219,46,12,17,0.0 +24219,66,17,27,0.0 +24219,41,9.65,17,0.0 +24219,2,19,1,0.0 +24219,3,10,49,0.0 +24219,74,10,12,0.0 +24219,28,45.6,29,0.0 +24219,52,7,16,0.0 +24219,12,38,22,0.0 +24219,71,21.5,41,0.0 +24219,4,22,14,0.0 +24219,8,40,4,0.0 +24219,58,13.25,10,0.0 +24219,18,62.5,28,0.0 +24219,40,18.4,49,0.0 +24219,7,30,16,0.0 +24219,9,97,3,0.0 +24219,63,43.9,4,0.0 +24219,49,20,9,0.0 +24219,22,21,41,0.0 +24219,72,34.8,34,0.0 +24219,51,53,2,0.0 +24219,73,15,29,0.0 +24219,17,39,40,0.0 +24219,76,18,23,0.0 +24220,26,31.23,30,0.0 +24220,53,32.8,38,0.0 +24220,28,45.6,16,0.0 +24220,47,9.5,4,0.0 +24220,13,6,2,0.0 +24220,72,34.8,18,0.0 +24220,51,53,33,0.0 +24220,65,21.05,20,0.0 +24220,56,38,13,0.0 +24220,45,9.5,31,0.0 +24220,68,12.5,29,0.0 +24220,4,22,3,0.0 +24220,17,39,27,0.0 +24220,29,123.79,31,0.0 +24220,58,13.25,40,0.0 +24220,2,19,2,0.0 +24220,67,14,13,0.0 +24220,8,40,37,0.0 +24220,27,43.9,50,0.0 +24221,69,36,24,0.0 +24221,42,14,36,0.0 +24221,73,15,6,0.0 +24221,71,21.5,30,0.0 +24221,13,6,27,0.0 +24221,18,62.5,15,0.0 +24221,38,263.5,44,0.0 +24221,17,39,36,0.0 +24221,8,40,27,0.0 +24221,7,30,48,0.0 +24221,55,24,39,0.0 +24221,63,43.9,14,0.0 +24221,33,2.5,43,0.0 +24221,5,21.35,26,0.0 +24221,32,32,13,0.0 +24221,27,43.9,33,0.0 +24221,68,12.5,13,0.0 +24221,59,55,46,0.0 +24221,10,31,45,0.0 +24222,39,18,47,0.0 +24222,11,21,44,0.0 +24222,2,19,25,0.0 +24222,31,12.5,45,0.0 +24222,37,26,15,0.0 +24222,40,18.4,15,0.0 +24222,38,263.5,23,0.0 +24222,64,33.25,14,0.0 +24222,20,81,8,0.0 +24222,58,13.25,24,0.0 +24222,1,18,32,0.0 +24222,70,15,35,0.0 +24222,21,10,47,0.0 +24222,5,21.35,29,0.0 +24222,42,14,13,0.0 +24222,26,31.23,39,0.0 +24222,28,45.6,4,0.0 +24222,49,20,26,0.0 +24222,10,31,16,0.0 +24222,68,12.5,45,0.0 +24222,13,6,35,0.0 +24222,32,32,41,0.0 +24222,18,62.5,45,0.0 +24222,25,14,20,0.0 +24222,63,43.9,23,0.0 +24222,65,21.05,13,0.0 +24222,15,15.5,15,0.0 +24222,9,97,40,0.0 +24222,24,4.5,47,0.0 +24222,14,23.25,29,0.0 +24222,48,12.75,50,0.0 +24222,71,21.5,33,0.0 +24222,74,10,4,0.0 +24223,63,43.9,42,0.0 +24223,64,33.25,34,0.0 +24223,8,40,11,0.0 +24223,14,23.25,32,0.0 +24223,44,19.45,23,0.0 +24223,35,18,22,0.0 +24223,6,25,37,0.0 +24223,51,53,12,0.0 +24223,13,6,8,0.0 +24223,22,21,50,0.0 +24223,34,14,50,0.0 +24223,75,7.75,30,0.0 +24223,39,18,8,0.0 +24223,74,10,21,0.0 +24223,48,12.75,8,0.0 +24223,65,21.05,27,0.0 +24223,45,9.5,41,0.0 +24223,31,12.5,8,0.0 +24223,23,9,30,0.0 +24223,40,18.4,29,0.0 +24223,20,81,15,0.0 +24223,47,9.5,26,0.0 +24223,7,30,15,0.0 +24223,18,62.5,11,0.0 +24223,42,14,20,0.0 +24223,54,7.45,45,0.0 +24223,10,31,4,0.0 +24223,71,21.5,34,0.0 +24223,50,16.25,31,0.0 +24223,67,14,27,0.0 +24223,70,15,2,0.0 +24223,69,36,36,0.0 +24223,1,18,3,0.0 +24223,76,18,47,0.0 +24223,16,17.45,41,0.0 +24223,59,55,41,0.0 +24223,25,14,24,0.0 +24223,73,15,3,0.0 +24223,21,10,8,0.0 +24223,3,10,23,0.0 +24223,49,20,11,0.0 +24223,27,43.9,28,0.0 +24223,11,21,47,0.0 +24223,32,32,1,0.0 +24223,17,39,18,0.0 +24223,72,34.8,49,0.0 +24223,41,9.65,21,0.0 +24223,55,24,23,0.0 +24223,30,25.89,40,0.0 +24223,33,2.5,2,0.0 +24223,4,22,41,0.0 +24223,68,12.5,26,0.0 +24223,57,19.5,34,0.0 +24223,15,15.5,26,0.0 +24223,53,32.8,44,0.0 +24223,58,13.25,50,0.0 +24223,38,263.5,12,0.0 +24223,29,123.79,5,0.0 +24223,9,97,15,0.0 +24223,56,38,45,0.0 +24223,66,17,13,0.0 +24223,43,46,21,0.0 +24224,55,24,24,0.0 +24224,7,30,43,0.0 +24224,36,19,11,0.0 +24224,73,15,47,0.0 +24224,56,38,13,0.0 +24224,32,32,41,0.0 +24224,54,7.45,3,0.0 +24224,35,18,35,0.0 +24224,20,81,29,0.0 +24224,33,2.5,1,0.0 +24224,39,18,20,0.0 +24224,13,6,26,0.0 +24224,66,17,17,0.0 +24224,18,62.5,30,0.0 +24224,11,21,35,0.0 +24224,4,22,13,0.0 +24224,64,33.25,46,0.0 +24224,59,55,21,0.0 +24224,58,13.25,11,0.0 +24224,69,36,42,0.0 +24224,77,13,17,0.0 +24224,74,10,4,0.0 +24224,67,14,3,0.0 +24224,26,31.23,21,0.0 +24224,17,39,24,0.0 +24224,44,19.45,41,0.0 +24224,48,12.75,33,0.0 +24224,3,10,25,0.0 +24224,41,9.65,30,0.0 +24224,72,34.8,19,0.0 +24224,27,43.9,21,0.0 +24224,8,40,13,0.0 +24224,40,18.4,44,0.0 +24224,16,17.45,36,0.0 +24224,65,21.05,10,0.0 +24224,46,12,11,0.0 +24224,45,9.5,2,0.0 +24224,60,34,30,0.0 +24224,14,23.25,15,0.0 +24224,19,9.2,34,0.0 +24224,75,7.75,49,0.0 +24224,53,32.8,10,0.0 +24224,37,26,48,0.0 +24224,42,14,22,0.0 +24224,15,15.5,4,0.0 +24224,10,31,28,0.0 +24224,2,19,6,0.0 +24224,22,21,12,0.0 +24224,57,19.5,48,0.0 +24224,23,9,31,0.0 +24224,25,14,26,0.0 +24224,43,46,29,0.0 +24224,29,123.79,18,0.0 +24224,21,10,41,0.0 +24224,5,21.35,27,0.0 +24225,44,19.45,32,0.0 +24225,18,62.5,21,0.0 +24225,35,18,46,0.0 +24225,69,36,29,0.0 +24225,59,55,4,0.0 +24225,68,12.5,42,0.0 +24225,73,15,32,0.0 +24225,71,21.5,32,0.0 +24225,58,13.25,37,0.0 +24225,28,45.6,23,0.0 +24225,32,32,21,0.0 +24225,14,23.25,24,0.0 +24225,51,53,42,0.0 +24225,30,25.89,19,0.0 +24225,75,7.75,50,0.0 +24225,56,38,38,0.0 +24225,4,22,3,0.0 +24225,5,21.35,16,0.0 +24225,20,81,32,0.0 +24225,13,6,36,0.0 +24225,54,7.45,18,0.0 +24225,10,31,9,0.0 +24225,70,15,12,0.0 +24225,19,9.2,18,0.0 +24225,57,19.5,12,0.0 +24225,16,17.45,10,0.0 +24225,48,12.75,3,0.0 +24226,25,14,47,0.0 +24226,38,263.5,9,0.0 +24226,48,12.75,46,0.0 +24226,68,12.5,14,0.0 +24226,17,39,47,0.0 +24226,75,7.75,38,0.0 +24226,76,18,2,0.0 +24226,39,18,10,0.0 +24226,63,43.9,9,0.0 +24226,9,97,26,0.0 +24226,77,13,6,0.0 +24226,45,9.5,9,0.0 +24226,44,19.45,15,0.0 +24226,10,31,26,0.0 +24226,35,18,37,0.0 +24226,53,32.8,27,0.0 +24226,20,81,34,0.0 +24226,41,9.65,49,0.0 +24226,49,20,10,0.0 +24226,57,19.5,33,0.0 +24226,58,13.25,14,0.0 +24226,71,21.5,49,0.0 +24226,74,10,21,0.0 +24226,67,14,46,0.0 +24227,7,30,40,0.0 +24227,28,45.6,15,0.0 +24227,52,7,31,0.0 +24227,14,23.25,17,0.0 +24227,71,21.5,19,0.0 +24227,22,21,2,0.0 +24227,54,7.45,38,0.0 +24227,12,38,5,0.0 +24227,19,9.2,40,0.0 +24227,11,21,22,0.0 +24227,1,18,34,0.0 +24227,74,10,36,0.0 +24227,4,22,38,0.0 +24227,10,31,42,0.0 +24227,60,34,7,0.0 +24227,45,9.5,26,0.0 +24227,41,9.65,5,0.0 +24227,42,14,23,0.0 +24227,53,32.8,25,0.0 +24227,33,2.5,26,0.0 +24227,70,15,50,0.0 +24227,77,13,6,0.0 +24227,23,9,11,0.0 +24227,43,46,13,0.0 +24227,31,12.5,32,0.0 +24227,66,17,16,0.0 +24227,9,97,47,0.0 +24227,55,24,25,0.0 +24227,68,12.5,24,0.0 +24227,37,26,27,0.0 +24227,63,43.9,22,0.0 +24228,51,53,37,0.0 +24228,43,46,20,0.0 +24228,28,45.6,7,0.0 +24228,45,9.5,13,0.0 +24228,49,20,45,0.0 +24228,2,19,13,0.0 +24228,36,19,29,0.0 +24228,22,21,48,0.0 +24228,19,9.2,16,0.0 +24228,76,18,1,0.0 +24228,44,19.45,26,0.0 +24228,1,18,12,0.0 +24228,17,39,34,0.0 +24228,26,31.23,29,0.0 +24228,9,97,15,0.0 +24228,52,7,37,0.0 +24228,24,4.5,47,0.0 +24228,59,55,12,0.0 +24228,16,17.45,7,0.0 +24228,11,21,27,0.0 +24228,57,19.5,39,0.0 +24228,46,12,2,0.0 +24228,58,13.25,27,0.0 +24228,56,38,24,0.0 +24228,3,10,15,0.0 +24228,63,43.9,12,0.0 +24228,66,17,25,0.0 +24228,30,25.89,16,0.0 +24228,75,7.75,12,0.0 +24228,13,6,22,0.0 +24228,40,18.4,28,0.0 +24228,27,43.9,14,0.0 +24228,8,40,7,0.0 +24228,77,13,12,0.0 +24228,31,12.5,17,0.0 +24228,39,18,9,0.0 +24228,14,23.25,29,0.0 +24228,68,12.5,45,0.0 +24228,53,32.8,33,0.0 +24228,55,24,49,0.0 +24228,38,263.5,3,0.0 +24228,20,81,35,0.0 +24228,7,30,30,0.0 +24228,29,123.79,48,0.0 +24228,10,31,48,0.0 +24228,15,15.5,45,0.0 +24228,60,34,45,0.0 +24228,23,9,42,0.0 +24228,35,18,44,0.0 +24228,70,15,49,0.0 +24228,32,32,11,0.0 +24228,50,16.25,7,0.0 +24228,25,14,32,0.0 +24228,21,10,6,0.0 +24228,74,10,48,0.0 +24228,62,49.3,43,0.0 +24228,4,22,44,0.0 +24228,5,21.35,4,0.0 +24228,61,28.5,14,0.0 +24228,41,9.65,37,0.0 +24228,37,26,20,0.0 +24228,64,33.25,13,0.0 +24228,72,34.8,34,0.0 +24228,6,25,43,0.0 +24228,69,36,30,0.0 +24228,54,7.45,31,0.0 +24229,27,43.9,14,0.0 +24229,64,33.25,34,0.0 +24229,11,21,45,0.0 +24229,29,123.79,12,0.0 +24229,46,12,2,0.0 +24229,68,12.5,37,0.0 +24229,63,43.9,37,0.0 +24229,13,6,9,0.0 +24229,4,22,3,0.0 +24229,25,14,17,0.0 +24229,56,38,7,0.0 +24229,20,81,28,0.0 +24229,59,55,14,0.0 +24229,43,46,3,0.0 +24229,67,14,33,0.0 +24229,74,10,48,0.0 +24229,51,53,6,0.0 +24230,42,14,26,0.0 +24230,26,31.23,6,0.0 +24230,2,19,23,0.0 +24230,39,18,14,0.0 +24230,60,34,45,0.0 +24230,32,32,3,0.0 +24230,18,62.5,20,0.0 +24230,53,32.8,1,0.0 +24230,28,45.6,15,0.0 +24230,61,28.5,49,0.0 +24230,44,19.45,31,0.0 +24230,5,21.35,25,0.0 +24230,4,22,14,0.0 +24230,69,36,47,0.0 +24230,34,14,5,0.0 +24231,19,9.2,18,0.0 +24231,5,21.35,28,0.0 +24231,43,46,48,0.0 +24231,45,9.5,35,0.0 +24231,29,123.79,36,0.0 +24231,36,19,34,0.0 +24231,58,13.25,9,0.0 +24231,13,6,47,0.0 +24231,31,12.5,4,0.0 +24231,30,25.89,16,0.0 +24231,14,23.25,23,0.0 +24231,51,53,45,0.0 +24231,7,30,22,0.0 +24231,63,43.9,43,0.0 +24231,48,12.75,25,0.0 +24231,20,81,46,0.0 +24231,3,10,27,0.0 +24231,41,9.65,37,0.0 +24231,22,21,17,0.0 +24231,56,38,35,0.0 +24231,25,14,8,0.0 +24231,28,45.6,1,0.0 +24231,1,18,29,0.0 +24231,55,24,28,0.0 +24231,50,16.25,31,0.0 +24231,33,2.5,5,0.0 +24231,68,12.5,49,0.0 +24231,15,15.5,47,0.0 +24231,8,40,41,0.0 +24231,10,31,6,0.0 +24231,4,22,21,0.0 +24231,67,14,34,0.0 +24231,38,263.5,48,0.0 +24231,32,32,39,0.0 +24231,49,20,7,0.0 +24231,24,4.5,11,0.0 +24231,42,14,50,0.0 +24231,47,9.5,13,0.0 +24231,66,17,9,0.0 +24231,35,18,10,0.0 +24231,21,10,13,0.0 +24231,74,10,1,0.0 +24231,6,25,7,0.0 +24231,62,49.3,12,0.0 +24231,72,34.8,23,0.0 +24231,64,33.25,41,0.0 +24231,17,39,38,0.0 +24231,23,9,26,0.0 +24231,76,18,30,0.0 +24231,73,15,8,0.0 +24231,60,34,45,0.0 +24231,61,28.5,26,0.0 +24231,75,7.75,25,0.0 +24231,57,19.5,35,0.0 +24231,69,36,27,0.0 +24231,70,15,7,0.0 +24231,12,38,26,0.0 +24231,39,18,43,0.0 +24231,46,12,18,0.0 +24232,47,9.5,19,0.0 +24232,23,9,2,0.0 +24232,29,123.79,43,0.0 +24232,6,25,2,0.0 +24232,26,31.23,28,0.0 +24232,4,22,18,0.0 +24232,65,21.05,6,0.0 +24232,44,19.45,16,0.0 +24232,18,62.5,46,0.0 +24232,24,4.5,20,0.0 +24232,9,97,50,0.0 +24232,17,39,24,0.0 +24232,3,10,44,0.0 +24232,45,9.5,1,0.0 +24232,15,15.5,44,0.0 +24232,42,14,17,0.0 +24232,62,49.3,7,0.0 +24232,48,12.75,17,0.0 +24232,77,13,1,0.0 +24232,67,14,35,0.0 +24232,10,31,28,0.0 +24232,57,19.5,29,0.0 +24232,37,26,38,0.0 +24232,73,15,40,0.0 +24232,60,34,43,0.0 +24232,52,7,7,0.0 +24232,72,34.8,16,0.0 +24232,46,12,22,0.0 +24232,11,21,44,0.0 +24232,63,43.9,6,0.0 +24232,75,7.75,17,0.0 +24232,66,17,24,0.0 +24232,36,19,2,0.0 +24232,32,32,10,0.0 +24232,8,40,2,0.0 +24232,64,33.25,46,0.0 +24232,27,43.9,8,0.0 +24232,7,30,48,0.0 +24232,13,6,10,0.0 +24232,70,15,30,0.0 +24232,71,21.5,50,0.0 +24232,56,38,28,0.0 +24232,22,21,26,0.0 +24232,53,32.8,35,0.0 +24232,59,55,22,0.0 +24232,55,24,10,0.0 +24232,19,9.2,7,0.0 +24232,58,13.25,40,0.0 +24232,40,18.4,27,0.0 +24232,33,2.5,32,0.0 +24232,49,20,22,0.0 +24232,1,18,43,0.0 +24232,38,263.5,50,0.0 +24232,28,45.6,17,0.0 +24232,25,14,18,0.0 +24232,2,19,3,0.0 +24232,30,25.89,30,0.0 +24232,76,18,49,0.0 +24232,14,23.25,20,0.0 +24232,39,18,19,0.0 +24232,68,12.5,30,0.0 +24232,34,14,14,0.0 +24232,43,46,13,0.0 +24232,50,16.25,44,0.0 +24232,16,17.45,19,0.0 +24232,54,7.45,30,0.0 +24232,12,38,13,0.0 +24232,74,10,27,0.0 +24232,61,28.5,31,0.0 +24232,41,9.65,44,0.0 +24232,51,53,33,0.0 +24233,60,34,1,0.0 +24233,71,21.5,5,0.0 +24233,19,9.2,29,0.0 +24233,6,25,7,0.0 +24233,44,19.45,26,0.0 +24233,13,6,34,0.0 +24233,31,12.5,33,0.0 +24233,47,9.5,12,0.0 +24233,62,49.3,7,0.0 +24233,3,10,4,0.0 +24233,29,123.79,21,0.0 +24233,24,4.5,24,0.0 +24233,36,19,44,0.0 +24233,64,33.25,50,0.0 +24233,75,7.75,9,0.0 +24233,67,14,1,0.0 +24233,77,13,40,0.0 +24233,65,21.05,29,0.0 +24233,20,81,9,0.0 +24233,43,46,35,0.0 +24233,48,12.75,19,0.0 +24233,5,21.35,31,0.0 +24233,21,10,42,0.0 +24233,58,13.25,50,0.0 +24233,30,25.89,37,0.0 +24233,76,18,49,0.0 +24233,56,38,9,0.0 +24233,49,20,23,0.0 +24233,57,19.5,22,0.0 +24233,55,24,50,0.0 +24233,14,23.25,36,0.0 +24233,40,18.4,33,0.0 +24233,72,34.8,17,0.0 +24233,7,30,6,0.0 +24233,46,12,19,0.0 +24233,63,43.9,23,0.0 +24233,51,53,48,0.0 +24233,32,32,41,0.0 +24233,70,15,38,0.0 +24233,74,10,44,0.0 +24233,2,19,5,0.0 +24233,54,7.45,43,0.0 +24233,33,2.5,4,0.0 +24233,26,31.23,33,0.0 +24233,37,26,49,0.0 +24233,50,16.25,38,0.0 +24233,10,31,23,0.0 +24233,68,12.5,50,0.0 +24233,17,39,5,0.0 +24234,16,17.45,8,0.0 +24234,37,26,11,0.0 +24234,24,4.5,18,0.0 +24234,13,6,7,0.0 +24234,56,38,24,0.0 +24234,8,40,12,0.0 +24234,51,53,6,0.0 +24234,52,7,18,0.0 +24234,53,32.8,41,0.0 +24234,9,97,12,0.0 +24234,71,21.5,15,0.0 +24234,36,19,12,0.0 +24234,12,38,8,0.0 +24234,27,43.9,34,0.0 +24234,58,13.25,7,0.0 +24234,77,13,31,0.0 +24234,50,16.25,27,0.0 +24234,61,28.5,24,0.0 +24234,33,2.5,27,0.0 +24234,11,21,9,0.0 +24234,62,49.3,35,0.0 +24234,23,9,32,0.0 +24234,6,25,10,0.0 +24234,75,7.75,46,0.0 +24234,48,12.75,50,0.0 +24234,76,18,2,0.0 +24234,73,15,13,0.0 +24234,18,62.5,3,0.0 +24234,14,23.25,18,0.0 +24234,15,15.5,46,0.0 +24234,47,9.5,45,0.0 +24234,43,46,1,0.0 +24234,26,31.23,50,0.0 +24234,34,14,12,0.0 +24234,19,9.2,6,0.0 +24234,55,24,15,0.0 +24234,44,19.45,36,0.0 +24234,57,19.5,35,0.0 +24234,63,43.9,47,0.0 +24234,59,55,46,0.0 +24234,21,10,23,0.0 +24234,54,7.45,37,0.0 +24234,5,21.35,49,0.0 +24234,39,18,34,0.0 +24234,64,33.25,33,0.0 +24234,70,15,27,0.0 +24234,74,10,27,0.0 +24234,17,39,4,0.0 +24234,46,12,24,0.0 +24234,4,22,46,0.0 +24234,20,81,14,0.0 +24234,3,10,21,0.0 +24234,31,12.5,28,0.0 +24234,22,21,42,0.0 +24234,32,32,31,0.0 +24234,29,123.79,46,0.0 +24234,72,34.8,46,0.0 +24234,41,9.65,16,0.0 +24234,7,30,35,0.0 +24234,25,14,29,0.0 +24234,10,31,40,0.0 +24234,35,18,34,0.0 +24234,2,19,24,0.0 +24234,68,12.5,49,0.0 +24235,76,18,35,0.0 +24235,41,9.65,50,0.0 +24235,31,12.5,36,0.0 +24235,4,22,4,0.0 +24235,75,7.75,35,0.0 +24235,27,43.9,47,0.0 +24235,33,2.5,6,0.0 +24235,53,32.8,20,0.0 +24235,11,21,29,0.0 +24235,12,38,25,0.0 +24235,23,9,2,0.0 +24235,19,9.2,11,0.0 +24235,34,14,20,0.0 +24235,45,9.5,36,0.0 +24235,32,32,19,0.0 +24235,37,26,35,0.0 +24235,25,14,14,0.0 +24235,59,55,7,0.0 +24235,6,25,9,0.0 +24236,30,25.89,43,0.0 +24236,16,17.45,30,0.0 +24236,26,31.23,38,0.0 +24236,54,7.45,49,0.0 +24236,68,12.5,14,0.0 +24236,73,15,10,0.0 +24236,60,34,15,0.0 +24236,38,263.5,50,0.0 +24236,77,13,23,0.0 +24236,64,33.25,11,0.0 +24236,62,49.3,7,0.0 +24236,27,43.9,30,0.0 +24236,14,23.25,42,0.0 +24236,74,10,47,0.0 +24236,9,97,16,0.0 +24236,65,21.05,33,0.0 +24236,61,28.5,9,0.0 +24236,22,21,15,0.0 +24236,75,7.75,41,0.0 +24236,33,2.5,41,0.0 +24236,67,14,47,0.0 +24236,69,36,24,0.0 +24236,6,25,23,0.0 +24236,72,34.8,3,0.0 +24236,19,9.2,15,0.0 +24236,71,21.5,23,0.0 +24236,42,14,24,0.0 +24236,23,9,12,0.0 +24236,45,9.5,7,0.0 +24236,2,19,48,0.0 +24236,11,21,5,0.0 +24236,1,18,20,0.0 +24236,31,12.5,7,0.0 +24236,59,55,47,0.0 +24236,10,31,2,0.0 +24236,76,18,21,0.0 +24236,40,18.4,48,0.0 +24236,56,38,26,0.0 +24236,39,18,35,0.0 +24236,46,12,44,0.0 +24236,47,9.5,22,0.0 +24236,51,53,21,0.0 +24236,34,14,46,0.0 +24236,70,15,8,0.0 +24236,21,10,48,0.0 +24236,13,6,21,0.0 +24236,25,14,46,0.0 +24236,48,12.75,2,0.0 +24236,41,9.65,24,0.0 +24236,12,38,2,0.0 +24236,35,18,11,0.0 +24236,44,19.45,32,0.0 +24236,58,13.25,4,0.0 +24236,15,15.5,3,0.0 +24236,20,81,36,0.0 +24236,50,16.25,5,0.0 +24236,43,46,39,0.0 +24236,3,10,7,0.0 +24236,24,4.5,20,0.0 +24236,57,19.5,29,0.0 +24236,53,32.8,19,0.0 +24236,55,24,36,0.0 +24236,66,17,1,0.0 +24236,37,26,48,0.0 +24236,52,7,13,0.0 +24236,4,22,8,0.0 +24236,29,123.79,5,0.0 +24236,49,20,35,0.0 +24236,8,40,31,0.0 +24236,63,43.9,30,0.0 +24236,36,19,39,0.0 +24236,18,62.5,4,0.0 +24236,7,30,8,0.0 +24236,5,21.35,49,0.0 +24236,28,45.6,22,0.0 +24237,68,12.5,30,0.0 +24237,63,43.9,26,0.0 +24237,17,39,11,0.0 +24237,71,21.5,43,0.0 +24237,20,81,18,0.0 +24237,46,12,1,0.0 +24237,40,18.4,30,0.0 +24237,45,9.5,50,0.0 +24237,42,14,31,0.0 +24237,77,13,30,0.0 +24237,1,18,1,0.0 +24237,9,97,20,0.0 +24237,69,36,14,0.0 +24237,55,24,2,0.0 +24237,38,263.5,26,0.0 +24237,43,46,48,0.0 +24237,23,9,43,0.0 +24237,13,6,40,0.0 +24237,61,28.5,18,0.0 +24237,27,43.9,17,0.0 +24237,60,34,47,0.0 +24237,54,7.45,25,0.0 +24237,49,20,12,0.0 +24237,6,25,33,0.0 +24237,52,7,26,0.0 +24237,50,16.25,28,0.0 +24237,12,38,13,0.0 +24237,37,26,22,0.0 +24237,74,10,15,0.0 +24237,4,22,22,0.0 +24237,57,19.5,44,0.0 +24237,32,32,44,0.0 +24237,14,23.25,32,0.0 +24237,19,9.2,18,0.0 +24237,11,21,7,0.0 +24237,67,14,42,0.0 +24237,73,15,31,0.0 +24237,44,19.45,35,0.0 +24237,21,10,36,0.0 +24237,22,21,40,0.0 +24237,51,53,28,0.0 +24237,33,2.5,20,0.0 +24237,64,33.25,49,0.0 +24237,3,10,28,0.0 +24237,75,7.75,48,0.0 +24237,8,40,12,0.0 +24237,70,15,26,0.0 +24237,35,18,8,0.0 +24237,36,19,46,0.0 +24237,2,19,14,0.0 +24237,72,34.8,44,0.0 +24237,26,31.23,8,0.0 +24237,41,9.65,2,0.0 +24237,34,14,38,0.0 +24237,18,62.5,50,0.0 +24237,59,55,34,0.0 +24237,56,38,28,0.0 +24237,30,25.89,5,0.0 +24237,66,17,24,0.0 +24237,76,18,43,0.0 +24237,15,15.5,43,0.0 +24237,25,14,3,0.0 +24237,48,12.75,21,0.0 +24237,28,45.6,31,0.0 +24238,60,34,10,0.0 +24238,57,19.5,2,0.0 +24238,32,32,28,0.0 +24238,29,123.79,7,0.0 +24238,69,36,4,0.0 +24238,47,9.5,22,0.0 +24238,49,20,17,0.0 +24238,14,23.25,10,0.0 +24238,54,7.45,47,0.0 +24238,19,9.2,43,0.0 +24238,64,33.25,48,0.0 +24238,56,38,28,0.0 +24238,21,10,1,0.0 +24238,52,7,8,0.0 +24238,30,25.89,12,0.0 +24238,23,9,36,0.0 +24238,50,16.25,34,0.0 +24238,73,15,30,0.0 +24238,67,14,15,0.0 +24238,51,53,1,0.0 +24238,65,21.05,29,0.0 +24238,39,18,33,0.0 +24238,2,19,35,0.0 +24238,55,24,39,0.0 +24238,76,18,47,0.0 +24238,66,17,17,0.0 +24238,44,19.45,28,0.0 +24238,34,14,32,0.0 +24238,36,19,35,0.0 +24238,15,15.5,30,0.0 +24238,10,31,41,0.0 +24238,5,21.35,20,0.0 +24238,27,43.9,18,0.0 +24238,45,9.5,37,0.0 +24238,53,32.8,48,0.0 +24238,43,46,41,0.0 +24238,77,13,50,0.0 +24238,48,12.75,5,0.0 +24238,42,14,19,0.0 +24238,4,22,44,0.0 +24238,72,34.8,25,0.0 +24238,68,12.5,38,0.0 +24238,38,263.5,31,0.0 +24238,58,13.25,22,0.0 +24238,22,21,14,0.0 +24238,63,43.9,49,0.0 +24238,71,21.5,14,0.0 +24238,75,7.75,49,0.0 +24238,20,81,6,0.0 +24238,26,31.23,35,0.0 +24238,6,25,47,0.0 +24238,18,62.5,1,0.0 +24238,1,18,11,0.0 +24238,59,55,31,0.0 +24238,16,17.45,18,0.0 +24238,9,97,28,0.0 +24238,62,49.3,36,0.0 +24238,46,12,11,0.0 +24238,8,40,9,0.0 +24238,11,21,14,0.0 +24238,35,18,18,0.0 +24238,7,30,1,0.0 +24238,41,9.65,20,0.0 +24238,3,10,8,0.0 +24238,40,18.4,27,0.0 +24238,74,10,34,0.0 +24238,12,38,18,0.0 +24238,13,6,36,0.0 +24238,61,28.5,26,0.0 +24238,70,15,43,0.0 +24239,59,55,29,0.0 +24239,70,15,46,0.0 +24239,69,36,4,0.0 +24239,36,19,24,0.0 +24239,11,21,20,0.0 +24239,9,97,26,0.0 +24239,6,25,10,0.0 +24239,75,7.75,11,0.0 +24239,68,12.5,39,0.0 +24239,18,62.5,1,0.0 +24239,17,39,2,0.0 +24239,7,30,16,0.0 +24239,64,33.25,37,0.0 +24239,48,12.75,35,0.0 +24239,45,9.5,18,0.0 +24239,5,21.35,23,0.0 +24239,10,31,30,0.0 +24239,37,26,23,0.0 +24239,47,9.5,36,0.0 +24239,76,18,26,0.0 +24239,12,38,42,0.0 +24239,39,18,33,0.0 +24239,13,6,40,0.0 +24239,66,17,19,0.0 +24239,24,4.5,46,0.0 +24239,30,25.89,47,0.0 +24239,14,23.25,8,0.0 +24239,54,7.45,2,0.0 +24239,31,12.5,8,0.0 +24239,60,34,22,0.0 +24239,43,46,48,0.0 +24239,73,15,29,0.0 +24239,74,10,16,0.0 +24239,15,15.5,30,0.0 +24239,25,14,3,0.0 +24239,49,20,4,0.0 +24239,8,40,22,0.0 +24239,55,24,7,0.0 +24239,22,21,34,0.0 +24239,19,9.2,6,0.0 +24239,62,49.3,24,0.0 +24239,44,19.45,47,0.0 +24239,23,9,11,0.0 +24239,29,123.79,9,0.0 +24239,58,13.25,9,0.0 +24239,4,22,35,0.0 +24239,1,18,28,0.0 +24239,38,263.5,15,0.0 +24239,56,38,12,0.0 +24239,72,34.8,2,0.0 +24239,42,14,28,0.0 +24239,67,14,10,0.0 +24239,33,2.5,25,0.0 +24239,28,45.6,28,0.0 +24239,27,43.9,5,0.0 +24239,32,32,2,0.0 +24239,50,16.25,48,0.0 +24239,52,7,9,0.0 +24239,35,18,41,0.0 +24239,41,9.65,28,0.0 +24239,63,43.9,35,0.0 +24239,2,19,1,0.0 +24239,61,28.5,49,0.0 +24239,53,32.8,1,0.0 +24239,26,31.23,4,0.0 +24239,16,17.45,31,0.0 +24239,21,10,19,0.0 +24240,45,9.5,38,0.0 +24240,46,12,36,0.0 +24240,7,30,38,0.0 +24240,15,15.5,38,0.0 +24240,27,43.9,50,0.0 +24240,71,21.5,7,0.0 +24240,67,14,9,0.0 +24240,1,18,24,0.0 +24240,22,21,16,0.0 +24240,43,46,8,0.0 +24240,75,7.75,20,0.0 +24240,44,19.45,47,0.0 +24240,36,19,27,0.0 +24240,54,7.45,48,0.0 +24240,18,62.5,16,0.0 +24240,41,9.65,29,0.0 +24240,77,13,37,0.0 +24240,69,36,9,0.0 +24240,65,21.05,37,0.0 +24240,25,14,10,0.0 +24240,60,34,25,0.0 +24240,61,28.5,7,0.0 +24240,12,38,50,0.0 +24240,20,81,20,0.0 +24240,63,43.9,44,0.0 +24240,57,19.5,18,0.0 +24240,8,40,13,0.0 +24240,39,18,28,0.0 +24240,10,31,7,0.0 +24240,37,26,46,0.0 +24240,35,18,36,0.0 +24240,70,15,33,0.0 +24240,19,9.2,12,0.0 +24240,4,22,36,0.0 +24240,29,123.79,5,0.0 +24240,30,25.89,40,0.0 +24240,74,10,29,0.0 +24240,6,25,50,0.0 +24240,16,17.45,10,0.0 +24240,64,33.25,8,0.0 +24240,72,34.8,42,0.0 +24240,66,17,1,0.0 +24240,9,97,35,0.0 +24240,48,12.75,21,0.0 +24240,17,39,43,0.0 +24240,31,12.5,39,0.0 +24240,56,38,36,0.0 +24240,13,6,11,0.0 +24240,32,32,35,0.0 +24240,33,2.5,49,0.0 +24241,26,31.23,49,0.0 +24241,48,12.75,12,0.0 +24241,73,15,20,0.0 +24241,5,21.35,23,0.0 +24241,19,9.2,8,0.0 +24241,37,26,7,0.0 +24241,45,9.5,39,0.0 +24241,46,12,38,0.0 +24241,69,36,26,0.0 +24241,13,6,41,0.0 +24241,25,14,3,0.0 +24241,36,19,3,0.0 +24241,71,21.5,36,0.0 +24241,76,18,14,0.0 +24241,63,43.9,18,0.0 +24241,50,16.25,7,0.0 +24241,16,17.45,3,0.0 +24241,70,15,36,0.0 +24241,44,19.45,21,0.0 +24241,47,9.5,36,0.0 +24241,38,263.5,10,0.0 +24241,62,49.3,36,0.0 +24241,75,7.75,25,0.0 +24241,74,10,32,0.0 +24241,59,55,7,0.0 +24241,31,12.5,36,0.0 +24241,27,43.9,20,0.0 +24241,42,14,5,0.0 +24241,11,21,44,0.0 +24241,53,32.8,8,0.0 +24241,12,38,44,0.0 +24241,58,13.25,50,0.0 +24241,30,25.89,25,0.0 +24241,40,18.4,1,0.0 +24241,15,15.5,29,0.0 +24241,32,32,32,0.0 +24241,60,34,39,0.0 +24241,17,39,36,0.0 +24241,28,45.6,15,0.0 +24241,3,10,30,0.0 +24241,7,30,17,0.0 +24241,57,19.5,4,0.0 +24241,35,18,16,0.0 +24241,33,2.5,2,0.0 +24241,64,33.25,23,0.0 +24241,34,14,48,0.0 +24241,21,10,15,0.0 +24241,9,97,4,0.0 +24241,43,46,20,0.0 +24241,1,18,38,0.0 +24241,56,38,7,0.0 +24241,77,13,22,0.0 +24241,55,24,31,0.0 +24241,6,25,13,0.0 +24241,39,18,16,0.0 +24241,4,22,35,0.0 +24241,10,31,2,0.0 +24241,67,14,41,0.0 +24242,45,9.5,2,0.0 +24242,66,17,6,0.0 +24242,36,19,3,0.0 +24242,71,21.5,34,0.0 +24242,56,38,35,0.0 +24242,69,36,21,0.0 +24243,77,13,1,0.0 +24243,33,2.5,18,0.0 +24243,34,14,13,0.0 +24243,10,31,9,0.0 +24243,19,9.2,39,0.0 +24243,7,30,38,0.0 +24243,27,43.9,38,0.0 +24243,55,24,22,0.0 +24243,68,12.5,37,0.0 +24243,50,16.25,32,0.0 +24243,66,17,1,0.0 +24243,45,9.5,36,0.0 +24243,36,19,31,0.0 +24243,8,40,30,0.0 +24243,70,15,4,0.0 +24243,44,19.45,26,0.0 +24243,54,7.45,28,0.0 +24243,4,22,14,0.0 +24243,14,23.25,29,0.0 +24243,18,62.5,34,0.0 +24243,53,32.8,28,0.0 +24244,57,19.5,29,0.0 +24244,43,46,40,0.0 +24244,58,13.25,33,0.0 +24244,76,18,13,0.0 +24244,29,123.79,46,0.0 +24244,73,15,35,0.0 +24244,3,10,4,0.0 +24244,54,7.45,1,0.0 +24244,51,53,7,0.0 +24244,33,2.5,6,0.0 +24244,11,21,37,0.0 +24244,67,14,21,0.0 +24244,14,23.25,34,0.0 +24244,10,31,10,0.0 +24244,7,30,28,0.0 +24244,41,9.65,49,0.0 +24244,46,12,45,0.0 +24244,56,38,20,0.0 +24244,53,32.8,41,0.0 +24244,30,25.89,4,0.0 +24244,52,7,49,0.0 +24244,26,31.23,47,0.0 +24244,9,97,5,0.0 +24244,28,45.6,8,0.0 +24244,31,12.5,32,0.0 +24244,27,43.9,27,0.0 +24244,68,12.5,3,0.0 +24245,53,32.8,32,0.0 +24245,64,33.25,48,0.0 +24245,16,17.45,22,0.0 +24245,74,10,41,0.0 +24245,7,30,7,0.0 +24245,22,21,29,0.0 +24245,75,7.75,9,0.0 +24245,72,34.8,16,0.0 +24245,30,25.89,8,0.0 +24245,14,23.25,50,0.0 +24245,66,17,41,0.0 +24245,77,13,17,0.0 +24245,63,43.9,42,0.0 +24245,49,20,1,0.0 +24245,12,38,41,0.0 +24245,9,97,5,0.0 +24245,55,24,45,0.0 +24245,54,7.45,12,0.0 +24245,57,19.5,8,0.0 +24245,60,34,50,0.0 +24245,5,21.35,44,0.0 +24245,73,15,15,0.0 +24245,25,14,42,0.0 +24245,45,9.5,38,0.0 +24245,67,14,2,0.0 +24245,20,81,32,0.0 +24245,26,31.23,20,0.0 +24245,70,15,11,0.0 +24245,23,9,12,0.0 +24245,2,19,15,0.0 +24245,62,49.3,20,0.0 +24245,39,18,38,0.0 +24245,52,7,16,0.0 +24245,36,19,3,0.0 +24245,44,19.45,20,0.0 +24245,37,26,23,0.0 +24245,42,14,41,0.0 +24245,18,62.5,36,0.0 +24245,11,21,23,0.0 +24245,69,36,17,0.0 +24245,38,263.5,13,0.0 +24245,29,123.79,42,0.0 +24245,61,28.5,34,0.0 +24245,19,9.2,32,0.0 +24245,17,39,9,0.0 +24245,33,2.5,41,0.0 +24245,68,12.5,3,0.0 +24245,28,45.6,25,0.0 +24245,31,12.5,39,0.0 +24245,71,21.5,23,0.0 +24245,40,18.4,10,0.0 +24245,8,40,29,0.0 +24245,46,12,17,0.0 +24245,27,43.9,13,0.0 +24245,50,16.25,2,0.0 +24245,10,31,41,0.0 +24245,58,13.25,43,0.0 +24245,48,12.75,14,0.0 +24245,3,10,44,0.0 +24245,35,18,2,0.0 +24246,30,25.89,30,0.0 +24246,37,26,30,0.0 +24246,8,40,19,0.0 +24246,33,2.5,38,0.0 +24246,17,39,13,0.0 +24246,26,31.23,40,0.0 +24246,47,9.5,41,0.0 +24246,54,7.45,26,0.0 +24246,73,15,14,0.0 +24246,69,36,2,0.0 +24246,13,6,24,0.0 +24246,40,18.4,35,0.0 +24246,36,19,31,0.0 +24246,22,21,43,0.0 +24246,67,14,9,0.0 +24246,43,46,11,0.0 +24246,39,18,22,0.0 +24246,24,4.5,42,0.0 +24246,29,123.79,38,0.0 +24246,60,34,33,0.0 +24246,59,55,8,0.0 +24246,10,31,12,0.0 +24246,46,12,47,0.0 +24246,2,19,36,0.0 +24246,52,7,22,0.0 +24246,66,17,3,0.0 +24246,19,9.2,10,0.0 +24246,38,263.5,13,0.0 +24246,64,33.25,38,0.0 +24246,75,7.75,12,0.0 +24246,63,43.9,4,0.0 +24246,4,22,13,0.0 +24246,55,24,49,0.0 +24246,77,13,43,0.0 +24246,32,32,32,0.0 +24246,6,25,7,0.0 +24246,21,10,46,0.0 +24246,71,21.5,39,0.0 +24246,61,28.5,21,0.0 +24246,23,9,28,0.0 +24246,5,21.35,22,0.0 +24246,53,32.8,46,0.0 +24246,58,13.25,6,0.0 +24247,60,34,48,0.0 +24247,15,15.5,41,0.0 +24247,56,38,3,0.0 +24247,25,14,7,0.0 +24247,11,21,20,0.0 +24247,63,43.9,29,0.0 +24247,48,12.75,7,0.0 +24247,58,13.25,23,0.0 +24247,41,9.65,11,0.0 +24247,12,38,39,0.0 +24247,28,45.6,17,0.0 +24247,31,12.5,29,0.0 +24247,24,4.5,1,0.0 +24247,19,9.2,14,0.0 +24247,10,31,16,0.0 +24247,6,25,36,0.0 +24247,37,26,11,0.0 +24247,54,7.45,30,0.0 +24247,34,14,32,0.0 +24247,66,17,32,0.0 +24247,9,97,34,0.0 +24247,38,263.5,11,0.0 +24247,23,9,22,0.0 +24247,22,21,37,0.0 +24247,52,7,31,0.0 +24247,46,12,10,0.0 +24247,5,21.35,32,0.0 +24247,76,18,9,0.0 +24247,67,14,21,0.0 +24247,73,15,20,0.0 +24247,74,10,31,0.0 +24247,20,81,39,0.0 +24247,65,21.05,18,0.0 +24247,47,9.5,40,0.0 +24247,51,53,43,0.0 +24247,1,18,35,0.0 +24247,21,10,29,0.0 +24247,68,12.5,18,0.0 +24247,40,18.4,24,0.0 +24247,8,40,41,0.0 +24247,33,2.5,49,0.0 +24247,7,30,9,0.0 +24247,42,14,48,0.0 +24247,77,13,46,0.0 +24247,29,123.79,17,0.0 +24247,64,33.25,40,0.0 +24247,32,32,41,0.0 +24247,13,6,29,0.0 +24247,61,28.5,22,0.0 +24247,4,22,5,0.0 +24247,59,55,23,0.0 +24247,75,7.75,1,0.0 +24247,44,19.45,19,0.0 +24247,16,17.45,41,0.0 +24247,36,19,32,0.0 +24247,57,19.5,16,0.0 +24247,50,16.25,31,0.0 +24247,26,31.23,38,0.0 +24247,71,21.5,38,0.0 +24247,39,18,10,0.0 +24247,55,24,15,0.0 +24247,18,62.5,45,0.0 +24247,3,10,21,0.0 +24247,53,32.8,30,0.0 +24248,46,12,50,0.0 +24248,71,21.5,6,0.0 +24248,9,97,5,0.0 +24248,62,49.3,10,0.0 +24248,60,34,5,0.0 +24248,2,19,26,0.0 +24248,33,2.5,22,0.0 +24248,36,19,49,0.0 +24248,47,9.5,25,0.0 +24248,59,55,46,0.0 +24248,65,21.05,17,0.0 +24248,43,46,40,0.0 +24248,49,20,29,0.0 +24248,11,21,3,0.0 +24248,40,18.4,16,0.0 +24248,57,19.5,47,0.0 +24248,56,38,39,0.0 +24248,34,14,30,0.0 +24248,68,12.5,16,0.0 +24249,29,123.79,36,0.0 +24249,35,18,34,0.0 +24249,10,31,31,0.0 +24249,51,53,36,0.0 +24249,75,7.75,14,0.0 +24249,66,17,41,0.0 +24249,31,12.5,13,0.0 +24249,26,31.23,20,0.0 +24249,27,43.9,35,0.0 +24249,3,10,40,0.0 +24249,16,17.45,30,0.0 +24249,50,16.25,19,0.0 +24250,58,13.25,18,0.0 +24250,6,25,1,0.0 +24250,42,14,15,0.0 +24250,2,19,18,0.0 +24250,74,10,5,0.0 +24250,22,21,1,0.0 +24250,34,14,4,0.0 +24250,68,12.5,15,0.0 +24250,69,36,18,0.0 +24250,44,19.45,50,0.0 +24250,66,17,49,0.0 +24250,41,9.65,8,0.0 +24250,28,45.6,15,0.0 +24250,49,20,48,0.0 +24250,53,32.8,8,0.0 +24250,5,21.35,36,0.0 +24251,58,13.25,19,0.0 +24251,65,21.05,4,0.0 +24251,62,49.3,26,0.0 +24251,37,26,8,0.0 +24251,56,38,28,0.0 +24251,33,2.5,13,0.0 +24251,6,25,12,0.0 +24251,71,21.5,16,0.0 +24251,17,39,40,0.0 +24251,32,32,27,0.0 +24251,7,30,50,0.0 +24251,23,9,23,0.0 +24251,27,43.9,33,0.0 +24251,39,18,36,0.0 +24251,45,9.5,22,0.0 +24252,8,40,45,0.0 +24252,76,18,16,0.0 +24252,12,38,26,0.0 +24252,71,21.5,44,0.0 +24252,31,12.5,18,0.0 +24252,38,263.5,28,0.0 +24252,35,18,18,0.0 +24252,66,17,14,0.0 +24252,22,21,15,0.0 +24252,26,31.23,4,0.0 +24252,49,20,44,0.0 +24252,23,9,44,0.0 +24252,11,21,36,0.0 +24252,58,13.25,41,0.0 +24252,27,43.9,50,0.0 +24252,4,22,47,0.0 +24252,21,10,31,0.0 +24252,70,15,13,0.0 +24252,15,15.5,16,0.0 +24252,56,38,21,0.0 +24252,53,32.8,12,0.0 +24252,18,62.5,6,0.0 +24252,60,34,49,0.0 +24252,45,9.5,15,0.0 +24252,39,18,38,0.0 +24252,68,12.5,13,0.0 +24252,9,97,43,0.0 +24252,55,24,19,0.0 +24252,36,19,30,0.0 +24252,42,14,33,0.0 +24252,48,12.75,6,0.0 +24252,69,36,33,0.0 +24252,47,9.5,22,0.0 +24252,43,46,40,0.0 +24252,30,25.89,10,0.0 +24252,2,19,3,0.0 +24252,67,14,21,0.0 +24252,1,18,33,0.0 +24252,5,21.35,36,0.0 +24252,20,81,44,0.0 +24252,61,28.5,49,0.0 +24252,19,9.2,28,0.0 +24252,37,26,14,0.0 +24252,54,7.45,17,0.0 +24252,7,30,35,0.0 +24252,46,12,49,0.0 +24252,65,21.05,38,0.0 +24252,44,19.45,6,0.0 +24252,57,19.5,49,0.0 +24252,16,17.45,41,0.0 +24252,24,4.5,9,0.0 +24252,33,2.5,6,0.0 +24252,41,9.65,22,0.0 +24252,17,39,5,0.0 +24252,28,45.6,50,0.0 +24252,63,43.9,1,0.0 +24252,73,15,25,0.0 +24252,50,16.25,44,0.0 +24252,52,7,38,0.0 +24252,62,49.3,29,0.0 +24252,34,14,43,0.0 +24252,10,31,20,0.0 +24252,40,18.4,38,0.0 +24252,29,123.79,38,0.0 +24252,32,32,28,0.0 +24252,51,53,10,0.0 +24252,77,13,49,0.0 +24252,72,34.8,23,0.0 +24252,64,33.25,35,0.0 +24252,59,55,38,0.0 +24252,25,14,3,0.0 +24252,6,25,20,0.0 +24252,14,23.25,26,0.0 +24253,76,18,22,0.0 +24253,49,20,9,0.0 +24253,57,19.5,34,0.0 +24253,37,26,37,0.0 +24253,59,55,28,0.0 +24253,69,36,25,0.0 +24253,2,19,15,0.0 +24253,22,21,2,0.0 +24253,39,18,23,0.0 +24253,72,34.8,6,0.0 +24253,55,24,39,0.0 +24253,32,32,25,0.0 +24253,40,18.4,2,0.0 +24253,20,81,19,0.0 +24253,47,9.5,7,0.0 +24253,24,4.5,35,0.0 +24253,4,22,18,0.0 +24253,45,9.5,10,0.0 +24253,42,14,20,0.0 +24253,10,31,13,0.0 +24253,63,43.9,9,0.0 +24253,44,19.45,33,0.0 +24253,21,10,22,0.0 +24253,58,13.25,5,0.0 +24253,35,18,38,0.0 +24253,66,17,22,0.0 +24253,31,12.5,35,0.0 +24253,50,16.25,27,0.0 +24253,30,25.89,9,0.0 +24253,14,23.25,1,0.0 +24253,36,19,50,0.0 +24253,68,12.5,48,0.0 +24253,29,123.79,31,0.0 +24253,75,7.75,43,0.0 +24253,43,46,50,0.0 +24253,41,9.65,6,0.0 +24253,28,45.6,21,0.0 +24253,34,14,38,0.0 +24253,7,30,23,0.0 +24253,15,15.5,14,0.0 +24253,8,40,28,0.0 +24253,9,97,47,0.0 +24253,27,43.9,21,0.0 +24253,5,21.35,24,0.0 +24253,11,21,20,0.0 +24253,48,12.75,45,0.0 +24253,77,13,14,0.0 +24253,70,15,37,0.0 +24254,46,12,48,0.0 +24254,75,7.75,19,0.0 +24254,8,40,16,0.0 +24254,11,21,47,0.0 +24254,63,43.9,49,0.0 +24254,64,33.25,27,0.0 +24254,45,9.5,29,0.0 +24254,62,49.3,31,0.0 +24254,21,10,50,0.0 +24254,41,9.65,25,0.0 +24254,33,2.5,7,0.0 +24254,40,18.4,38,0.0 +24254,32,32,12,0.0 +24254,12,38,12,0.0 +24254,2,19,24,0.0 +24254,35,18,30,0.0 +24254,43,46,50,0.0 +24254,61,28.5,10,0.0 +24254,54,7.45,44,0.0 +24254,70,15,1,0.0 +24254,13,6,34,0.0 +24254,38,263.5,43,0.0 +24254,6,25,17,0.0 +24254,77,13,22,0.0 +24254,20,81,19,0.0 +24254,66,17,43,0.0 +24254,5,21.35,50,0.0 +24254,74,10,36,0.0 +24254,65,21.05,13,0.0 +24254,60,34,17,0.0 +24254,48,12.75,40,0.0 +24254,4,22,8,0.0 +24254,58,13.25,14,0.0 +24254,10,31,40,0.0 +24254,47,9.5,48,0.0 +24254,3,10,21,0.0 +24254,37,26,39,0.0 +24254,1,18,30,0.0 +24254,29,123.79,39,0.0 +24254,55,24,24,0.0 +24254,15,15.5,27,0.0 +24254,22,21,12,0.0 +24254,57,19.5,31,0.0 +24254,49,20,7,0.0 +24254,7,30,9,0.0 +24254,39,18,7,0.0 +24254,71,21.5,2,0.0 +24254,16,17.45,35,0.0 +24254,30,25.89,43,0.0 +24254,25,14,25,0.0 +24254,51,53,13,0.0 +24254,53,32.8,26,0.0 +24254,17,39,7,0.0 +24254,44,19.45,5,0.0 +24254,42,14,23,0.0 +24254,24,4.5,31,0.0 +24254,69,36,23,0.0 +24254,72,34.8,9,0.0 +24254,50,16.25,22,0.0 +24254,36,19,44,0.0 +24254,27,43.9,17,0.0 +24254,56,38,35,0.0 +24254,23,9,34,0.0 +24254,76,18,11,0.0 +24254,28,45.6,22,0.0 +24254,9,97,18,0.0 +24255,6,25,40,0.0 +24255,44,19.45,36,0.0 +24255,51,53,33,0.0 +24255,40,18.4,20,0.0 +24255,62,49.3,5,0.0 +24255,56,38,3,0.0 +24255,19,9.2,8,0.0 +24255,34,14,30,0.0 +24255,72,34.8,47,0.0 +24255,67,14,15,0.0 +24255,30,25.89,14,0.0 +24255,42,14,17,0.0 +24255,65,21.05,40,0.0 +24255,45,9.5,32,0.0 +24255,22,21,18,0.0 +24255,58,13.25,21,0.0 +24255,68,12.5,4,0.0 +24255,76,18,49,0.0 +24255,24,4.5,4,0.0 +24255,28,45.6,2,0.0 +24255,50,16.25,48,0.0 +24255,49,20,39,0.0 +24255,55,24,18,0.0 +24255,9,97,8,0.0 +24255,46,12,38,0.0 +24255,63,43.9,48,0.0 +24255,1,18,12,0.0 +24255,25,14,16,0.0 +24255,12,38,18,0.0 +24255,26,31.23,38,0.0 +24255,17,39,15,0.0 +24255,59,55,27,0.0 +24255,16,17.45,15,0.0 +24255,2,19,47,0.0 +24255,4,22,47,0.0 +24255,32,32,47,0.0 +24255,14,23.25,24,0.0 +24255,29,123.79,45,0.0 +24255,13,6,9,0.0 +24255,31,12.5,49,0.0 +24255,37,26,12,0.0 +24255,39,18,46,0.0 +24255,66,17,5,0.0 +24255,38,263.5,20,0.0 +24255,10,31,20,0.0 +24255,77,13,4,0.0 +24255,20,81,33,0.0 +24255,11,21,26,0.0 +24255,60,34,39,0.0 +24255,27,43.9,49,0.0 +24255,69,36,36,0.0 +24255,54,7.45,22,0.0 +24255,36,19,29,0.0 +24255,43,46,16,0.0 +24255,7,30,36,0.0 +24255,75,7.75,19,0.0 +24255,23,9,4,0.0 +24255,57,19.5,28,0.0 +24255,47,9.5,18,0.0 +24255,61,28.5,28,0.0 +24255,64,33.25,34,0.0 +24255,70,15,21,0.0 +24256,1,18,40,0.0 +24256,66,17,48,0.0 +24256,59,55,18,0.0 +24256,25,14,6,0.0 +24256,74,10,26,0.0 +24256,21,10,22,0.0 +24256,11,21,8,0.0 +24256,9,97,26,0.0 +24256,35,18,49,0.0 +24256,63,43.9,40,0.0 +24256,23,9,28,0.0 +24256,24,4.5,8,0.0 +24256,45,9.5,47,0.0 +24256,76,18,21,0.0 +24256,2,19,25,0.0 +24256,7,30,46,0.0 +24256,51,53,29,0.0 +24256,73,15,19,0.0 +24256,46,12,39,0.0 +24256,19,9.2,21,0.0 +24256,50,16.25,45,0.0 +24256,4,22,33,0.0 +24256,49,20,48,0.0 +24256,62,49.3,6,0.0 +24256,57,19.5,42,0.0 +24256,69,36,24,0.0 +24256,53,32.8,38,0.0 +24256,60,34,4,0.0 +24256,77,13,30,0.0 +24256,70,15,35,0.0 +24256,40,18.4,46,0.0 +24256,15,15.5,5,0.0 +24256,5,21.35,43,0.0 +24256,33,2.5,12,0.0 +24256,26,31.23,6,0.0 +24256,38,263.5,33,0.0 +24256,6,25,36,0.0 +24256,27,43.9,10,0.0 +24256,30,25.89,32,0.0 +24256,20,81,36,0.0 +24256,72,34.8,46,0.0 +24256,75,7.75,44,0.0 +24256,22,21,9,0.0 +24256,36,19,9,0.0 +24256,52,7,19,0.0 +24256,29,123.79,34,0.0 +24256,39,18,44,0.0 +24256,18,62.5,36,0.0 +24256,48,12.75,32,0.0 +24256,54,7.45,49,0.0 +24256,8,40,21,0.0 +24256,17,39,14,0.0 +24256,42,14,4,0.0 +24256,13,6,35,0.0 +24256,67,14,12,0.0 +24256,10,31,50,0.0 +24257,68,12.5,11,0.0 +24257,13,6,42,0.0 +24257,28,45.6,20,0.0 +24257,67,14,16,0.0 +24257,72,34.8,32,0.0 +24257,76,18,28,0.0 +24257,34,14,6,0.0 +24257,37,26,43,0.0 +24257,26,31.23,40,0.0 +24257,60,34,47,0.0 +24257,70,15,47,0.0 +24257,40,18.4,50,0.0 +24257,15,15.5,22,0.0 +24257,2,19,34,0.0 +24257,33,2.5,10,0.0 +24257,51,53,30,0.0 +24257,61,28.5,48,0.0 +24257,5,21.35,3,0.0 +24257,30,25.89,6,0.0 +24257,19,9.2,22,0.0 +24257,63,43.9,12,0.0 +24257,41,9.65,26,0.0 +24257,31,12.5,11,0.0 +24257,47,9.5,18,0.0 +24257,49,20,38,0.0 +24257,44,19.45,6,0.0 +24257,46,12,3,0.0 +24257,55,24,20,0.0 +24257,39,18,15,0.0 +24257,12,38,4,0.0 +24257,23,9,9,0.0 +24257,62,49.3,49,0.0 +24257,25,14,5,0.0 +24257,66,17,10,0.0 +24257,24,4.5,48,0.0 +24257,69,36,49,0.0 +24257,74,10,24,0.0 +24257,50,16.25,29,0.0 +24257,71,21.5,36,0.0 +24257,21,10,38,0.0 +24257,45,9.5,31,0.0 +24257,22,21,2,0.0 +24257,73,15,27,0.0 +24257,53,32.8,28,0.0 +24257,20,81,11,0.0 +24257,14,23.25,39,0.0 +24257,11,21,27,0.0 +24257,57,19.5,15,0.0 +24257,17,39,32,0.0 +24257,7,30,35,0.0 +24257,77,13,35,0.0 +24257,42,14,44,0.0 +24257,58,13.25,1,0.0 +24257,52,7,25,0.0 +24257,18,62.5,33,0.0 +24257,1,18,34,0.0 +24257,48,12.75,48,0.0 +24257,32,32,34,0.0 +24257,38,263.5,40,0.0 +24257,56,38,15,0.0 +24257,3,10,48,0.0 +24257,8,40,34,0.0 +24257,75,7.75,27,0.0 +24257,29,123.79,49,0.0 +24257,54,7.45,34,0.0 +24257,65,21.05,38,0.0 +24257,16,17.45,10,0.0 +24257,64,33.25,9,0.0 +24257,6,25,28,0.0 +24257,27,43.9,45,0.0 +24257,59,55,47,0.0 +24257,35,18,31,0.0 +24257,43,46,31,0.0 +24257,10,31,25,0.0 +24257,9,97,46,0.0 +24257,36,19,1,0.0 +24258,37,26,22,0.0 +24258,35,18,10,0.0 +24258,32,32,4,0.0 +24258,77,13,22,0.0 +24258,7,30,5,0.0 +24258,17,39,35,0.0 +24258,61,28.5,35,0.0 +24258,45,9.5,31,0.0 +24258,25,14,32,0.0 +24258,26,31.23,43,0.0 +24258,42,14,20,0.0 +24258,29,123.79,42,0.0 +24258,34,14,41,0.0 +24258,72,34.8,4,0.0 +24258,13,6,19,0.0 +24258,71,21.5,29,0.0 +24258,59,55,1,0.0 +24258,54,7.45,18,0.0 +24258,49,20,1,0.0 +24258,64,33.25,46,0.0 +24258,27,43.9,17,0.0 +24258,21,10,18,0.0 +24258,28,45.6,22,0.0 +24258,15,15.5,20,0.0 +24258,6,25,24,0.0 +24258,5,21.35,13,0.0 +24258,41,9.65,41,0.0 +24258,8,40,13,0.0 +24258,20,81,11,0.0 +24258,30,25.89,29,0.0 +24258,76,18,34,0.0 +24258,33,2.5,31,0.0 +24258,39,18,43,0.0 +24258,40,18.4,4,0.0 +24258,75,7.75,1,0.0 +24258,57,19.5,36,0.0 +24258,47,9.5,40,0.0 +24258,68,12.5,28,0.0 +24258,1,18,14,0.0 +24258,9,97,15,0.0 +24258,70,15,29,0.0 +24258,43,46,6,0.0 +24258,31,12.5,25,0.0 +24258,14,23.25,24,0.0 +24258,24,4.5,20,0.0 +24258,67,14,47,0.0 +24259,6,25,43,0.0 +24259,18,62.5,49,0.0 +24259,2,19,31,0.0 +24259,21,10,3,0.0 +24259,65,21.05,50,0.0 +24259,72,34.8,1,0.0 +24259,45,9.5,3,0.0 +24259,46,12,20,0.0 +24259,9,97,18,0.0 +24259,5,21.35,29,0.0 +24259,56,38,2,0.0 +24259,30,25.89,9,0.0 +24259,32,32,31,0.0 +24259,10,31,41,0.0 +24259,11,21,10,0.0 +24259,15,15.5,7,0.0 +24259,62,49.3,50,0.0 +24259,35,18,7,0.0 +24259,51,53,6,0.0 +24259,43,46,19,0.0 +24259,63,43.9,43,0.0 +24259,49,20,3,0.0 +24259,47,9.5,29,0.0 +24259,61,28.5,19,0.0 +24259,74,10,37,0.0 +24259,68,12.5,5,0.0 +24259,54,7.45,19,0.0 +24259,52,7,27,0.0 +24259,34,14,24,0.0 +24259,3,10,7,0.0 +24259,50,16.25,37,0.0 +24259,70,15,41,0.0 +24259,29,123.79,31,0.0 +24259,59,55,46,0.0 +24259,12,38,46,0.0 +24259,60,34,11,0.0 +24259,24,4.5,9,0.0 +24259,23,9,32,0.0 +24259,33,2.5,39,0.0 +24259,38,263.5,39,0.0 +24259,13,6,43,0.0 +24259,16,17.45,5,0.0 +24259,76,18,41,0.0 +24259,19,9.2,14,0.0 +24259,42,14,26,0.0 +24259,31,12.5,36,0.0 +24259,48,12.75,37,0.0 +24259,75,7.75,28,0.0 +24259,64,33.25,23,0.0 +24259,36,19,6,0.0 +24259,28,45.6,38,0.0 +24259,55,24,7,0.0 +24259,39,18,18,0.0 +24259,58,13.25,3,0.0 +24259,27,43.9,32,0.0 +24259,77,13,26,0.0 +24259,41,9.65,12,0.0 +24259,67,14,24,0.0 +24259,26,31.23,28,0.0 +24259,14,23.25,30,0.0 +24259,44,19.45,20,0.0 +24259,57,19.5,13,0.0 +24259,7,30,23,0.0 +24259,40,18.4,37,0.0 +24259,53,32.8,50,0.0 +24260,33,2.5,12,0.0 +24260,22,21,30,0.0 +24260,29,123.79,2,0.0 +24260,67,14,4,0.0 +24260,28,45.6,31,0.0 +24260,35,18,37,0.0 +24260,69,36,50,0.0 +24260,31,12.5,19,0.0 +24260,10,31,38,0.0 +24260,56,38,5,0.0 +24260,2,19,41,0.0 +24260,61,28.5,27,0.0 +24260,46,12,35,0.0 +24260,11,21,13,0.0 +24260,30,25.89,7,0.0 +24260,43,46,34,0.0 +24260,50,16.25,24,0.0 +24260,21,10,31,0.0 +24260,52,7,4,0.0 +24260,5,21.35,37,0.0 +24260,51,53,25,0.0 +24260,13,6,9,0.0 +24260,42,14,8,0.0 +24260,36,19,3,0.0 +24260,70,15,43,0.0 +24260,8,40,47,0.0 +24260,24,4.5,3,0.0 +24260,58,13.25,3,0.0 +24260,37,26,7,0.0 +24260,47,9.5,47,0.0 +24260,39,18,9,0.0 +24260,59,55,40,0.0 +24260,73,15,48,0.0 +24260,76,18,32,0.0 +24260,34,14,32,0.0 +24260,16,17.45,33,0.0 +24260,27,43.9,1,0.0 +24260,60,34,5,0.0 +24260,12,38,47,0.0 +24260,54,7.45,11,0.0 +24260,48,12.75,25,0.0 +24260,74,10,29,0.0 +24260,1,18,17,0.0 +24260,4,22,16,0.0 +24260,25,14,43,0.0 +24260,75,7.75,48,0.0 +24260,55,24,45,0.0 +24260,71,21.5,28,0.0 +24260,26,31.23,11,0.0 +24261,24,4.5,28,0.0 +24261,63,43.9,33,0.0 +24261,41,9.65,50,0.0 +24261,57,19.5,48,0.0 +24261,21,10,20,0.0 +24261,28,45.6,8,0.0 +24261,60,34,50,0.0 +24261,67,14,15,0.0 +24261,59,55,20,0.0 +24261,12,38,26,0.0 +24261,23,9,25,0.0 +24261,27,43.9,50,0.0 +24261,9,97,10,0.0 +24261,56,38,13,0.0 +24261,10,31,42,0.0 +24261,68,12.5,30,0.0 +24261,26,31.23,36,0.0 +24261,1,18,21,0.0 +24261,33,2.5,40,0.0 +24261,25,14,37,0.0 +24261,70,15,47,0.0 +24261,71,21.5,11,0.0 +24261,51,53,38,0.0 +24261,19,9.2,28,0.0 +24261,35,18,7,0.0 +24261,65,21.05,38,0.0 +24261,50,16.25,3,0.0 +24261,4,22,18,0.0 +24261,75,7.75,14,0.0 +24261,77,13,34,0.0 +24261,62,49.3,36,0.0 +24261,55,24,22,0.0 +24262,29,123.79,2,0.0 +24262,30,25.89,23,0.0 +24262,19,9.2,24,0.0 +24262,22,21,17,0.0 +24262,14,23.25,44,0.0 +24262,16,17.45,11,0.0 +24262,48,12.75,6,0.0 +24262,15,15.5,14,0.0 +24262,60,34,8,0.0 +24262,58,13.25,20,0.0 +24262,4,22,43,0.0 +24262,47,9.5,37,0.0 +24262,18,62.5,9,0.0 +24262,9,97,33,0.0 +24262,74,10,13,0.0 +24262,25,14,28,0.0 +24262,7,30,21,0.0 +24262,49,20,7,0.0 +24262,68,12.5,49,0.0 +24262,20,81,2,0.0 +24262,36,19,14,0.0 +24262,64,33.25,25,0.0 +24262,54,7.45,22,0.0 +24262,32,32,48,0.0 +24262,53,32.8,37,0.0 +24262,37,26,50,0.0 +24262,70,15,27,0.0 +24262,8,40,5,0.0 +24262,75,7.75,41,0.0 +24262,66,17,39,0.0 +24262,21,10,32,0.0 +24262,2,19,24,0.0 +24262,63,43.9,14,0.0 +24262,52,7,43,0.0 +24262,23,9,4,0.0 +24262,62,49.3,14,0.0 +24262,77,13,8,0.0 +24262,12,38,23,0.0 +24262,34,14,47,0.0 +24262,73,15,19,0.0 +24262,44,19.45,26,0.0 +24262,6,25,38,0.0 +24262,31,12.5,17,0.0 +24262,41,9.65,27,0.0 +24262,13,6,15,0.0 +24262,42,14,20,0.0 +24262,27,43.9,17,0.0 +24262,3,10,32,0.0 +24262,26,31.23,38,0.0 +24262,55,24,31,0.0 +24262,11,21,40,0.0 +24262,50,16.25,13,0.0 +24262,17,39,18,0.0 +24262,5,21.35,30,0.0 +24262,24,4.5,27,0.0 +24262,35,18,37,0.0 +24262,28,45.6,24,0.0 +24262,71,21.5,49,0.0 +24262,69,36,25,0.0 +24262,45,9.5,5,0.0 +24262,56,38,7,0.0 +24262,57,19.5,33,0.0 +24262,72,34.8,3,0.0 +24262,40,18.4,30,0.0 +24262,61,28.5,30,0.0 +24262,1,18,25,0.0 +24262,51,53,45,0.0 +24262,46,12,39,0.0 +24262,59,55,34,0.0 +24262,33,2.5,47,0.0 +24262,76,18,24,0.0 +24262,65,21.05,37,0.0 +24262,39,18,2,0.0 +24262,38,263.5,7,0.0 +24262,67,14,33,0.0 +24262,43,46,9,0.0 +24262,10,31,28,0.0 +24263,75,7.75,18,0.0 +24263,57,19.5,32,0.0 +24263,56,38,27,0.0 +24264,41,9.65,9,0.0 +24264,9,97,47,0.0 +24264,69,36,33,0.0 +24264,18,62.5,9,0.0 +24264,36,19,25,0.0 +24264,7,30,12,0.0 +24264,49,20,19,0.0 +24264,55,24,43,0.0 +24264,70,15,28,0.0 +24264,65,21.05,25,0.0 +24264,35,18,16,0.0 +24264,72,34.8,38,0.0 +24264,4,22,42,0.0 +24264,5,21.35,21,0.0 +24264,24,4.5,43,0.0 +24264,50,16.25,12,0.0 +24264,61,28.5,15,0.0 +24264,45,9.5,37,0.0 +24264,57,19.5,38,0.0 +24264,28,45.6,27,0.0 +24264,75,7.75,12,0.0 +24264,30,25.89,33,0.0 +24264,40,18.4,39,0.0 +24264,67,14,11,0.0 +24264,44,19.45,23,0.0 +24264,52,7,25,0.0 +24264,15,15.5,37,0.0 +24265,17,39,47,0.0 +24265,40,18.4,30,0.0 +24265,55,24,35,0.0 +24265,61,28.5,39,0.0 +24265,73,15,7,0.0 +24265,13,6,2,0.0 +24265,29,123.79,2,0.0 +24265,70,15,39,0.0 +24265,77,13,7,0.0 +24265,22,21,20,0.0 +24265,37,26,41,0.0 +24265,10,31,9,0.0 +24265,4,22,1,0.0 +24265,56,38,44,0.0 +24265,27,43.9,41,0.0 +24265,15,15.5,14,0.0 +24265,48,12.75,33,0.0 +24265,69,36,8,0.0 +24265,41,9.65,40,0.0 +24265,12,38,5,0.0 +24265,68,12.5,42,0.0 +24265,74,10,41,0.0 +24265,19,9.2,46,0.0 +24265,45,9.5,14,0.0 +24265,38,263.5,40,0.0 +24265,75,7.75,32,0.0 +24265,26,31.23,47,0.0 +24265,28,45.6,18,0.0 +24265,57,19.5,42,0.0 +24265,23,9,41,0.0 +24265,18,62.5,47,0.0 +24265,65,21.05,36,0.0 +24265,72,34.8,17,0.0 +24266,4,22,30,0.0 +24266,49,20,37,0.0 +24266,51,53,32,0.0 +24266,76,18,14,0.0 +24266,36,19,33,0.0 +24266,18,62.5,13,0.0 +24266,61,28.5,4,0.0 +24266,26,31.23,40,0.0 +24266,5,21.35,1,0.0 +24266,20,81,50,0.0 +24266,42,14,9,0.0 +24266,17,39,10,0.0 +24266,30,25.89,5,0.0 +24266,66,17,4,0.0 +24266,69,36,13,0.0 +24266,65,21.05,45,0.0 +24266,15,15.5,46,0.0 +24266,25,14,10,0.0 +24266,19,9.2,40,0.0 +24266,7,30,9,0.0 +24266,56,38,34,0.0 +24266,11,21,11,0.0 +24266,13,6,7,0.0 +24266,64,33.25,23,0.0 +24266,44,19.45,24,0.0 +24266,35,18,36,0.0 +24267,33,2.5,43,0.0 +24267,42,14,12,0.0 +24267,76,18,11,0.0 +24267,72,34.8,38,0.0 +24267,30,25.89,1,0.0 +24267,35,18,42,0.0 +24267,37,26,27,0.0 +24267,47,9.5,25,0.0 +24267,58,13.25,20,0.0 +24267,61,28.5,34,0.0 +24267,29,123.79,3,0.0 +24267,15,15.5,39,0.0 +24267,38,263.5,44,0.0 +24267,64,33.25,29,0.0 +24267,50,16.25,13,0.0 +24267,25,14,20,0.0 +24267,10,31,49,0.0 +24267,18,62.5,4,0.0 +24267,40,18.4,22,0.0 +24267,2,19,27,0.0 +24267,41,9.65,39,0.0 +24267,59,55,48,0.0 +24267,53,32.8,7,0.0 +24267,34,14,28,0.0 +24267,24,4.5,29,0.0 +24267,13,6,43,0.0 +24267,4,22,37,0.0 +24267,27,43.9,44,0.0 +24267,70,15,48,0.0 +24267,67,14,1,0.0 +24267,65,21.05,20,0.0 +24267,54,7.45,14,0.0 +24267,57,19.5,20,0.0 +24267,20,81,19,0.0 +24267,1,18,5,0.0 +24267,43,46,26,0.0 +24267,21,10,12,0.0 +24267,22,21,28,0.0 +24267,55,24,8,0.0 +24267,73,15,32,0.0 +24267,60,34,48,0.0 +24267,19,9.2,34,0.0 +24267,63,43.9,22,0.0 +24267,16,17.45,10,0.0 +24267,75,7.75,41,0.0 +24267,56,38,27,0.0 +24267,68,12.5,8,0.0 +24267,31,12.5,18,0.0 +24267,69,36,41,0.0 +24267,14,23.25,14,0.0 +24267,66,17,9,0.0 +24267,77,13,25,0.0 +24267,5,21.35,44,0.0 +24267,8,40,21,0.0 +24267,49,20,29,0.0 +24267,12,38,38,0.0 +24267,9,97,25,0.0 +24267,7,30,14,0.0 +24267,74,10,39,0.0 +24267,26,31.23,15,0.0 +24267,32,32,12,0.0 +24267,6,25,16,0.0 +24267,11,21,1,0.0 +24267,23,9,7,0.0 +24267,52,7,42,0.0 +24267,71,21.5,24,0.0 +24267,36,19,28,0.0 +24267,45,9.5,44,0.0 +24267,28,45.6,4,0.0 +24267,39,18,46,0.0 +24267,17,39,26,0.0 +24268,22,21,29,0.0 +24268,77,13,20,0.0 +24268,58,13.25,7,0.0 +24268,74,10,7,0.0 +24268,44,19.45,47,0.0 +24268,37,26,29,0.0 +24268,36,19,19,0.0 +24268,40,18.4,18,0.0 +24268,60,34,24,0.0 +24268,2,19,2,0.0 +24268,53,32.8,44,0.0 +24268,14,23.25,8,0.0 +24268,19,9.2,18,0.0 +24268,11,21,7,0.0 +24268,76,18,37,0.0 +24268,4,22,29,0.0 +24268,3,10,11,0.0 +24268,9,97,10,0.0 +24268,27,43.9,30,0.0 +24268,21,10,44,0.0 +24268,6,25,21,0.0 +24268,39,18,35,0.0 +24268,57,19.5,26,0.0 +24268,24,4.5,10,0.0 +24268,26,31.23,32,0.0 +24268,25,14,5,0.0 +24268,32,32,17,0.0 +24268,20,81,16,0.0 +24268,64,33.25,45,0.0 +24268,18,62.5,2,0.0 +24268,48,12.75,43,0.0 +24268,5,21.35,3,0.0 +24268,34,14,14,0.0 +24268,71,21.5,9,0.0 +24268,17,39,33,0.0 +24268,41,9.65,45,0.0 +24268,67,14,1,0.0 +24268,75,7.75,46,0.0 +24269,36,19,27,0.0 +24269,13,6,13,0.0 +24269,75,7.75,28,0.0 +24269,35,18,37,0.0 +24269,50,16.25,26,0.0 +24269,12,38,16,0.0 +24269,37,26,36,0.0 +24269,4,22,6,0.0 +24269,53,32.8,17,0.0 +24269,21,10,35,0.0 +24269,46,12,26,0.0 +24269,41,9.65,41,0.0 +24269,59,55,42,0.0 +24269,47,9.5,11,0.0 +24269,5,21.35,32,0.0 +24269,14,23.25,35,0.0 +24269,56,38,50,0.0 +24269,52,7,33,0.0 +24269,45,9.5,3,0.0 +24269,34,14,8,0.0 +24269,60,34,30,0.0 +24269,48,12.75,20,0.0 +24269,24,4.5,19,0.0 +24269,70,15,27,0.0 +24269,18,62.5,46,0.0 +24269,61,28.5,42,0.0 +24269,44,19.45,5,0.0 +24269,63,43.9,26,0.0 +24269,72,34.8,10,0.0 +24269,65,21.05,31,0.0 +24269,23,9,36,0.0 +24269,32,32,12,0.0 +24269,10,31,35,0.0 +24269,57,19.5,45,0.0 +24269,39,18,47,0.0 +24269,15,15.5,48,0.0 +24269,31,12.5,47,0.0 +24269,49,20,24,0.0 +24270,53,32.8,38,0.0 +24270,65,21.05,39,0.0 +24270,52,7,46,0.0 +24270,69,36,4,0.0 +24270,31,12.5,45,0.0 +24270,56,38,3,0.0 +24270,66,17,1,0.0 +24270,30,25.89,43,0.0 +24270,75,7.75,40,0.0 +24270,19,9.2,35,0.0 +24270,32,32,30,0.0 +24270,42,14,1,0.0 +24270,7,30,26,0.0 +24270,40,18.4,47,0.0 +24270,35,18,8,0.0 +24270,41,9.65,26,0.0 +24270,43,46,15,0.0 +24270,3,10,8,0.0 +24270,76,18,50,0.0 +24270,18,62.5,19,0.0 +24270,50,16.25,15,0.0 +24270,15,15.5,3,0.0 +24270,2,19,38,0.0 +24270,20,81,12,0.0 +24270,39,18,36,0.0 +24270,47,9.5,25,0.0 +24270,34,14,5,0.0 +24270,70,15,8,0.0 +24270,62,49.3,50,0.0 +24270,46,12,32,0.0 +24270,16,17.45,15,0.0 +24270,11,21,41,0.0 +24270,60,34,23,0.0 +24270,4,22,34,0.0 +24270,25,14,19,0.0 +24270,14,23.25,3,0.0 +24270,27,43.9,5,0.0 +24270,28,45.6,26,0.0 +24270,8,40,18,0.0 +24270,48,12.75,12,0.0 +24270,51,53,2,0.0 +24270,36,19,28,0.0 +24270,24,4.5,35,0.0 +24270,13,6,24,0.0 +24271,40,18.4,45,0.0 +24271,62,49.3,16,0.0 +24271,48,12.75,16,0.0 +24271,37,26,12,0.0 +24271,20,81,43,0.0 +24271,75,7.75,16,0.0 +24271,70,15,7,0.0 +24272,59,55,46,0.0 +24272,41,9.65,22,0.0 +24272,43,46,27,0.0 +24272,7,30,2,0.0 +24272,60,34,2,0.0 +24272,1,18,28,0.0 +24272,38,263.5,43,0.0 +24272,20,81,39,0.0 +24272,61,28.5,6,0.0 +24272,68,12.5,47,0.0 +24272,28,45.6,16,0.0 +24272,32,32,20,0.0 +24272,76,18,39,0.0 +24272,50,16.25,39,0.0 +24272,5,21.35,36,0.0 +24272,66,17,21,0.0 +24272,67,14,46,0.0 +24272,72,34.8,13,0.0 +24272,14,23.25,16,0.0 +24272,75,7.75,45,0.0 +24272,77,13,48,0.0 +24272,73,15,32,0.0 +24272,56,38,5,0.0 +24272,69,36,42,0.0 +24272,22,21,18,0.0 +24272,25,14,25,0.0 +24272,23,9,5,0.0 +24272,13,6,35,0.0 +24272,10,31,26,0.0 +24272,58,13.25,11,0.0 +24272,52,7,7,0.0 +24272,12,38,39,0.0 +24272,36,19,20,0.0 +24272,3,10,34,0.0 +24272,47,9.5,18,0.0 +24272,64,33.25,6,0.0 +24272,9,97,5,0.0 +24272,63,43.9,38,0.0 +24272,34,14,45,0.0 +24272,4,22,9,0.0 +24272,70,15,32,0.0 +24272,16,17.45,7,0.0 +24272,46,12,19,0.0 +24272,62,49.3,22,0.0 +24272,15,15.5,5,0.0 +24272,35,18,5,0.0 +24272,24,4.5,38,0.0 +24272,29,123.79,37,0.0 +24272,8,40,47,0.0 +24272,31,12.5,16,0.0 +24272,71,21.5,8,0.0 +24272,48,12.75,15,0.0 +24272,2,19,24,0.0 +24272,39,18,37,0.0 +24272,18,62.5,20,0.0 +24272,44,19.45,33,0.0 +24272,17,39,31,0.0 +24272,37,26,50,0.0 +24272,11,21,4,0.0 +24272,19,9.2,2,0.0 +24272,42,14,35,0.0 +24272,65,21.05,17,0.0 +24272,57,19.5,13,0.0 +24272,27,43.9,38,0.0 +24272,21,10,42,0.0 +24272,51,53,36,0.0 +24272,54,7.45,7,0.0 +24272,55,24,46,0.0 +24272,26,31.23,43,0.0 +24272,49,20,41,0.0 +24272,33,2.5,28,0.0 +24272,30,25.89,36,0.0 +24272,45,9.5,38,0.0 +24272,6,25,3,0.0 +24273,6,25,38,0.0 +24273,40,18.4,9,0.0 +24273,44,19.45,10,0.0 +24274,37,26,49,0.0 +24274,26,31.23,42,0.0 +24274,59,55,9,0.0 +24274,1,18,20,0.0 +24274,23,9,38,0.0 +24274,51,53,42,0.0 +24274,14,23.25,16,0.0 +24274,55,24,4,0.0 +24274,4,22,32,0.0 +24274,25,14,32,0.0 +24274,3,10,38,0.0 +24274,70,15,36,0.0 +24274,65,21.05,40,0.0 +24274,15,15.5,39,0.0 +24274,45,9.5,5,0.0 +24274,42,14,25,0.0 +24274,12,38,27,0.0 +24274,76,18,2,0.0 +24274,43,46,25,0.0 +24275,33,2.5,10,0.0 +24275,68,12.5,35,0.0 +24275,77,13,28,0.0 +24275,35,18,17,0.0 +24275,50,16.25,8,0.0 +24275,13,6,9,0.0 +24275,63,43.9,27,0.0 +24275,46,12,34,0.0 +24275,32,32,40,0.0 +24275,15,15.5,36,0.0 +24275,30,25.89,42,0.0 +24275,4,22,25,0.0 +24275,9,97,35,0.0 +24275,19,9.2,5,0.0 +24275,22,21,2,0.0 +24275,48,12.75,24,0.0 +24275,34,14,17,0.0 +24275,37,26,1,0.0 +24275,61,28.5,21,0.0 +24275,51,53,9,0.0 +24275,52,7,46,0.0 +24275,59,55,4,0.0 +24275,17,39,27,0.0 +24275,60,34,47,0.0 +24275,75,7.75,28,0.0 +24275,39,18,9,0.0 +24275,28,45.6,33,0.0 +24275,72,34.8,9,0.0 +24275,71,21.5,22,0.0 +24275,8,40,3,0.0 +24275,45,9.5,30,0.0 +24275,25,14,36,0.0 +24275,10,31,50,0.0 +24275,20,81,12,0.0 +24275,69,36,3,0.0 +24275,43,46,24,0.0 +24275,56,38,33,0.0 +24275,3,10,25,0.0 +24275,66,17,32,0.0 +24275,57,19.5,16,0.0 +24275,14,23.25,42,0.0 +24275,6,25,49,0.0 +24275,41,9.65,2,0.0 +24275,24,4.5,4,0.0 +24275,67,14,43,0.0 +24275,40,18.4,42,0.0 +24275,7,30,32,0.0 +24275,23,9,1,0.0 +24275,26,31.23,3,0.0 +24275,47,9.5,47,0.0 +24276,57,19.5,44,0.0 +24276,1,18,32,0.0 +24276,30,25.89,29,0.0 +24276,77,13,1,0.0 +24276,44,19.45,41,0.0 +24276,18,62.5,38,0.0 +24276,3,10,48,0.0 +24276,40,18.4,45,0.0 +24276,76,18,46,0.0 +24276,15,15.5,20,0.0 +24276,34,14,16,0.0 +24276,28,45.6,21,0.0 +24276,12,38,21,0.0 +24276,2,19,2,0.0 +24276,51,53,48,0.0 +24276,59,55,23,0.0 +24276,6,25,20,0.0 +24276,21,10,10,0.0 +24277,1,18,41,0.0 +24277,24,4.5,21,0.0 +24277,67,14,5,0.0 +24277,69,36,49,0.0 +24277,23,9,23,0.0 +24277,21,10,34,0.0 +24277,66,17,37,0.0 +24277,4,22,42,0.0 +24277,8,40,34,0.0 +24277,13,6,12,0.0 +24277,17,39,42,0.0 +24277,49,20,3,0.0 +24277,53,32.8,28,0.0 +24277,51,53,41,0.0 +24277,16,17.45,22,0.0 +24277,34,14,50,0.0 +24277,28,45.6,35,0.0 +24277,38,263.5,24,0.0 +24277,44,19.45,6,0.0 +24277,19,9.2,36,0.0 +24277,57,19.5,10,0.0 +24277,12,38,29,0.0 +24277,52,7,11,0.0 +24277,11,21,46,0.0 +24277,73,15,10,0.0 +24277,50,16.25,2,0.0 +24277,77,13,27,0.0 +24277,56,38,18,0.0 +24277,72,34.8,22,0.0 +24278,71,21.5,17,0.0 +24278,8,40,10,0.0 +24278,15,15.5,6,0.0 +24278,18,62.5,10,0.0 +24278,69,36,9,0.0 +24278,20,81,32,0.0 +24278,46,12,6,0.0 +24278,17,39,16,0.0 +24278,50,16.25,12,0.0 +24278,9,97,25,0.0 +24278,39,18,16,0.0 +24278,25,14,26,0.0 +24278,11,21,40,0.0 +24278,51,53,32,0.0 +24278,35,18,19,0.0 +24278,22,21,21,0.0 +24278,5,21.35,9,0.0 +24278,24,4.5,14,0.0 +24278,62,49.3,28,0.0 +24278,36,19,46,0.0 +24278,6,25,15,0.0 +24278,53,32.8,2,0.0 +24278,56,38,41,0.0 +24278,57,19.5,29,0.0 +24278,41,9.65,4,0.0 +24278,67,14,17,0.0 +24278,44,19.45,37,0.0 +24278,10,31,48,0.0 +24278,37,26,19,0.0 +24278,4,22,5,0.0 +24278,7,30,46,0.0 +24278,16,17.45,4,0.0 +24279,17,39,1,0.0 +24279,7,30,46,0.0 +24279,13,6,45,0.0 +24279,44,19.45,13,0.0 +24279,77,13,10,0.0 +24279,2,19,20,0.0 +24279,61,28.5,23,0.0 +24279,39,18,16,0.0 +24279,71,21.5,48,0.0 +24279,26,31.23,7,0.0 +24279,57,19.5,50,0.0 +24279,58,13.25,26,0.0 +24279,45,9.5,12,0.0 +24279,20,81,37,0.0 +24279,53,32.8,50,0.0 +24279,50,16.25,30,0.0 +24279,25,14,5,0.0 +24279,29,123.79,44,0.0 +24279,6,25,25,0.0 +24279,68,12.5,19,0.0 +24279,46,12,39,0.0 +24279,18,62.5,5,0.0 +24279,60,34,41,0.0 +24279,73,15,20,0.0 +24279,16,17.45,45,0.0 +24279,35,18,17,0.0 +24279,5,21.35,15,0.0 +24279,38,263.5,21,0.0 +24279,59,55,37,0.0 +24279,75,7.75,6,0.0 +24279,36,19,16,0.0 +24279,34,14,20,0.0 +24279,63,43.9,27,0.0 +24279,62,49.3,39,0.0 +24279,47,9.5,12,0.0 +24279,74,10,4,0.0 +24279,69,36,15,0.0 +24279,19,9.2,42,0.0 +24279,55,24,8,0.0 +24279,33,2.5,3,0.0 +24279,67,14,3,0.0 +24279,48,12.75,11,0.0 +24279,31,12.5,8,0.0 +24279,43,46,1,0.0 +24279,41,9.65,3,0.0 +24279,23,9,9,0.0 +24279,9,97,38,0.0 +24279,49,20,40,0.0 +24279,11,21,28,0.0 +24279,65,21.05,32,0.0 +24279,70,15,38,0.0 +24279,66,17,23,0.0 +24279,14,23.25,16,0.0 +24279,51,53,34,0.0 +24279,10,31,4,0.0 +24279,30,25.89,50,0.0 +24279,1,18,2,0.0 +24279,42,14,40,0.0 +24279,27,43.9,50,0.0 +24279,22,21,22,0.0 +24279,52,7,49,0.0 +24279,72,34.8,34,0.0 +24279,15,15.5,5,0.0 +24279,8,40,8,0.0 +24279,40,18.4,36,0.0 +24280,29,123.79,35,0.0 +24280,8,40,49,0.0 +24280,10,31,9,0.0 +24280,27,43.9,2,0.0 +24280,31,12.5,7,0.0 +24280,16,17.45,40,0.0 +24280,42,14,25,0.0 +24280,2,19,43,0.0 +24280,76,18,15,0.0 +24280,39,18,38,0.0 +24280,59,55,40,0.0 +24280,34,14,37,0.0 +24280,20,81,8,0.0 +24280,24,4.5,8,0.0 +24280,25,14,50,0.0 +24280,49,20,15,0.0 +24280,11,21,8,0.0 +24280,56,38,34,0.0 +24280,9,97,29,0.0 +24280,40,18.4,21,0.0 +24280,57,19.5,41,0.0 +24280,50,16.25,30,0.0 +24280,6,25,4,0.0 +24280,23,9,38,0.0 +24280,75,7.75,8,0.0 +24280,72,34.8,18,0.0 +24280,21,10,40,0.0 +24280,1,18,32,0.0 +24280,52,7,49,0.0 +24280,46,12,4,0.0 +24280,28,45.6,7,0.0 +24280,55,24,33,0.0 +24280,47,9.5,21,0.0 +24280,71,21.5,42,0.0 +24280,68,12.5,34,0.0 +24280,38,263.5,16,0.0 +24280,12,38,4,0.0 +24280,44,19.45,45,0.0 +24280,18,62.5,41,0.0 +24280,64,33.25,24,0.0 +24280,66,17,35,0.0 +24280,5,21.35,14,0.0 +24280,69,36,38,0.0 +24280,63,43.9,18,0.0 +24280,37,26,2,0.0 +24280,13,6,49,0.0 +24280,70,15,37,0.0 +24280,3,10,45,0.0 +24280,15,15.5,15,0.0 +24280,4,22,29,0.0 +24280,77,13,14,0.0 +24280,22,21,20,0.0 +24280,73,15,27,0.0 +24280,51,53,4,0.0 +24280,14,23.25,8,0.0 +24280,35,18,2,0.0 +24280,60,34,49,0.0 +24280,26,31.23,47,0.0 +24280,48,12.75,20,0.0 +24280,67,14,11,0.0 +24280,36,19,40,0.0 +24280,54,7.45,18,0.0 +24280,19,9.2,17,0.0 +24280,62,49.3,46,0.0 +24280,17,39,46,0.0 +24280,65,21.05,26,0.0 +24280,30,25.89,16,0.0 +24280,53,32.8,29,0.0 +24280,32,32,7,0.0 +24280,74,10,40,0.0 +24280,61,28.5,28,0.0 +24280,33,2.5,40,0.0 +24280,41,9.65,36,0.0 +24280,45,9.5,16,0.0 +24280,7,30,5,0.0 +24280,58,13.25,14,0.0 +24281,56,38,21,0.0 +24281,61,28.5,28,0.0 +24281,60,34,4,0.0 +24281,58,13.25,21,0.0 +24281,75,7.75,14,0.0 +24281,76,18,23,0.0 +24281,33,2.5,3,0.0 +24281,8,40,34,0.0 +24281,26,31.23,6,0.0 +24281,11,21,3,0.0 +24281,36,19,27,0.0 +24281,53,32.8,20,0.0 +24281,45,9.5,46,0.0 +24281,31,12.5,15,0.0 +24281,30,25.89,35,0.0 +24281,74,10,43,0.0 +24281,10,31,35,0.0 +24281,16,17.45,6,0.0 +24281,40,18.4,31,0.0 +24281,52,7,36,0.0 +24281,6,25,45,0.0 +24281,32,32,47,0.0 +24281,57,19.5,48,0.0 +24281,9,97,45,0.0 +24281,48,12.75,32,0.0 +24281,51,53,7,0.0 +24281,28,45.6,36,0.0 +24281,34,14,33,0.0 +24281,2,19,40,0.0 +24281,49,20,22,0.0 +24281,14,23.25,31,0.0 +24281,42,14,2,0.0 +24281,1,18,2,0.0 +24281,73,15,36,0.0 +24281,47,9.5,39,0.0 +24281,24,4.5,8,0.0 +24281,55,24,5,0.0 +24281,54,7.45,44,0.0 +24281,38,263.5,23,0.0 +24281,13,6,29,0.0 +24281,64,33.25,13,0.0 +24281,50,16.25,9,0.0 +24281,77,13,49,0.0 +24281,65,21.05,39,0.0 +24281,68,12.5,18,0.0 +24281,15,15.5,34,0.0 +24281,35,18,6,0.0 +24281,71,21.5,26,0.0 +24281,72,34.8,18,0.0 +24281,41,9.65,27,0.0 +24281,12,38,10,0.0 +24281,69,36,5,0.0 +24281,29,123.79,23,0.0 +24281,21,10,28,0.0 +24282,20,81,33,0.0 +24282,75,7.75,1,0.0 +24282,31,12.5,35,0.0 +24282,56,38,40,0.0 +24282,16,17.45,4,0.0 +24282,28,45.6,14,0.0 +24282,60,34,20,0.0 +24282,36,19,6,0.0 +24282,3,10,47,0.0 +24282,45,9.5,37,0.0 +24282,71,21.5,18,0.0 +24282,40,18.4,3,0.0 +24282,66,17,14,0.0 +24282,23,9,49,0.0 +24282,54,7.45,16,0.0 +24282,32,32,49,0.0 +24282,61,28.5,34,0.0 +24282,4,22,9,0.0 +24282,72,34.8,42,0.0 +24282,65,21.05,14,0.0 +24282,25,14,41,0.0 +24282,1,18,1,0.0 +24282,42,14,32,0.0 +24282,10,31,45,0.0 +24282,11,21,34,0.0 +24282,37,26,21,0.0 +24282,47,9.5,35,0.0 +24282,64,33.25,46,0.0 +24282,63,43.9,14,0.0 +24282,21,10,4,0.0 +24282,77,13,49,0.0 +24282,7,30,24,0.0 +24282,44,19.45,19,0.0 +24282,26,31.23,4,0.0 +24282,55,24,48,0.0 +24282,41,9.65,46,0.0 +24282,43,46,13,0.0 +24282,13,6,43,0.0 +24282,27,43.9,13,0.0 +24282,15,15.5,31,0.0 +24282,29,123.79,30,0.0 +24282,17,39,43,0.0 +24282,19,9.2,20,0.0 +24282,22,21,4,0.0 +24282,68,12.5,18,0.0 +24282,39,18,37,0.0 +24282,6,25,17,0.0 +24282,76,18,44,0.0 +24282,73,15,4,0.0 +24283,29,123.79,39,0.0 +24283,40,18.4,40,0.0 +24283,23,9,23,0.0 +24283,24,4.5,35,0.0 +24283,20,81,30,0.0 +24283,4,22,29,0.0 +24283,75,7.75,26,0.0 +24283,67,14,6,0.0 +24283,7,30,27,0.0 +24283,13,6,43,0.0 +24283,71,21.5,31,0.0 +24283,2,19,2,0.0 +24283,55,24,20,0.0 +24283,41,9.65,46,0.0 +24283,69,36,20,0.0 +24283,43,46,44,0.0 +24283,50,16.25,39,0.0 +24283,58,13.25,14,0.0 +24283,48,12.75,20,0.0 +24283,10,31,40,0.0 +24283,22,21,32,0.0 +24283,68,12.5,19,0.0 +24283,12,38,14,0.0 +24283,30,25.89,35,0.0 +24283,44,19.45,42,0.0 +24283,31,12.5,2,0.0 +24283,32,32,44,0.0 +24283,33,2.5,30,0.0 +24283,35,18,10,0.0 +24283,38,263.5,36,0.0 +24283,66,17,33,0.0 +24283,18,62.5,24,0.0 +24283,62,49.3,21,0.0 +24283,36,19,50,0.0 +24283,5,21.35,48,0.0 +24283,26,31.23,25,0.0 +24283,64,33.25,10,0.0 +24283,76,18,27,0.0 +24283,53,32.8,38,0.0 +24283,14,23.25,48,0.0 +24283,54,7.45,27,0.0 +24283,39,18,38,0.0 +24283,8,40,38,0.0 +24283,60,34,1,0.0 +24283,46,12,32,0.0 +24283,3,10,41,0.0 +24283,1,18,27,0.0 +24283,21,10,20,0.0 +24283,19,9.2,6,0.0 +24283,17,39,19,0.0 +24283,37,26,42,0.0 +24283,73,15,21,0.0 +24283,74,10,9,0.0 +24283,49,20,36,0.0 +24283,63,43.9,24,0.0 +24283,27,43.9,45,0.0 +24283,16,17.45,24,0.0 +24283,47,9.5,41,0.0 +24283,42,14,37,0.0 +24283,15,15.5,22,0.0 +24283,28,45.6,25,0.0 +24283,77,13,48,0.0 +24283,61,28.5,32,0.0 +24284,49,20,18,0.0 +24284,58,13.25,23,0.0 +24284,59,55,10,0.0 +24284,63,43.9,16,0.0 +24284,75,7.75,20,0.0 +24284,17,39,19,0.0 +24284,77,13,1,0.0 +24284,1,18,48,0.0 +24284,48,12.75,17,0.0 +24284,38,263.5,24,0.0 +24284,39,18,30,0.0 +24284,51,53,14,0.0 +24284,40,18.4,48,0.0 +24284,6,25,44,0.0 +24284,8,40,10,0.0 +24284,7,30,32,0.0 +24284,76,18,26,0.0 +24284,41,9.65,15,0.0 +24284,56,38,10,0.0 +24284,5,21.35,44,0.0 +24284,11,21,17,0.0 +24284,35,18,33,0.0 +24284,47,9.5,12,0.0 +24284,31,12.5,8,0.0 +24284,62,49.3,35,0.0 +24284,69,36,49,0.0 +24284,29,123.79,13,0.0 +24284,36,19,4,0.0 +24284,46,12,10,0.0 +24284,42,14,1,0.0 +24284,10,31,17,0.0 +24284,2,19,42,0.0 +24284,73,15,11,0.0 +24284,68,12.5,39,0.0 +24284,53,32.8,34,0.0 +24284,27,43.9,27,0.0 +24284,44,19.45,12,0.0 +24284,74,10,38,0.0 +24284,20,81,49,0.0 +24284,37,26,31,0.0 +24284,16,17.45,40,0.0 +24284,12,38,25,0.0 +24284,61,28.5,6,0.0 +24284,55,24,8,0.0 +24284,32,32,50,0.0 +24284,23,9,34,0.0 +24284,9,97,38,0.0 +24284,52,7,25,0.0 +24284,72,34.8,41,0.0 +24284,54,7.45,12,0.0 +24284,13,6,26,0.0 +24284,19,9.2,30,0.0 +24285,5,21.35,1,0.0 +24285,29,123.79,10,0.0 +24285,68,12.5,43,0.0 +24285,4,22,25,0.0 +24285,26,31.23,39,0.0 +24285,61,28.5,38,0.0 +24285,16,17.45,2,0.0 +24285,34,14,46,0.0 +24285,6,25,11,0.0 +24285,11,21,16,0.0 +24285,32,32,40,0.0 +24285,28,45.6,27,0.0 +24285,66,17,11,0.0 +24286,51,53,34,0.0 +24286,55,24,21,0.0 +24286,26,31.23,4,0.0 +24286,72,34.8,19,0.0 +24286,2,19,7,0.0 +24286,71,21.5,31,0.0 +24286,63,43.9,18,0.0 +24286,50,16.25,14,0.0 +24286,23,9,2,0.0 +24286,48,12.75,19,0.0 +24286,46,12,8,0.0 +24286,12,38,4,0.0 +24286,36,19,43,0.0 +24286,43,46,20,0.0 +24286,61,28.5,45,0.0 +24286,53,32.8,1,0.0 +24286,47,9.5,28,0.0 +24286,35,18,4,0.0 +24286,42,14,26,0.0 +24286,59,55,29,0.0 +24286,5,21.35,48,0.0 +24286,60,34,38,0.0 +24286,41,9.65,21,0.0 +24286,49,20,27,0.0 +24286,20,81,20,0.0 +24286,57,19.5,46,0.0 +24286,3,10,41,0.0 +24286,65,21.05,25,0.0 +24286,70,15,45,0.0 +24286,17,39,21,0.0 +24286,66,17,14,0.0 +24286,45,9.5,17,0.0 +24286,32,32,2,0.0 +24286,8,40,39,0.0 +24286,37,26,44,0.0 +24286,54,7.45,40,0.0 +24286,11,21,30,0.0 +24287,44,19.45,46,0.0 +24287,60,34,10,0.0 +24287,36,19,5,0.0 +24287,9,97,17,0.0 +24287,20,81,18,0.0 +24287,76,18,11,0.0 +24287,1,18,23,0.0 +24287,67,14,41,0.0 +24287,8,40,7,0.0 +24287,34,14,38,0.0 +24287,73,15,18,0.0 +24287,26,31.23,40,0.0 +24287,35,18,11,0.0 +24287,43,46,42,0.0 +24287,42,14,43,0.0 +24287,25,14,23,0.0 +24287,33,2.5,9,0.0 +24287,6,25,6,0.0 +24287,7,30,31,0.0 +24287,56,38,33,0.0 +24287,69,36,39,0.0 +24287,61,28.5,18,0.0 +24287,55,24,28,0.0 +24287,11,21,33,0.0 +24287,48,12.75,15,0.0 +24287,37,26,12,0.0 +24287,24,4.5,46,0.0 +24287,29,123.79,23,0.0 +24287,21,10,33,0.0 +24287,45,9.5,43,0.0 +24287,13,6,18,0.0 +24287,74,10,11,0.0 +24287,59,55,27,0.0 +24287,39,18,17,0.0 +24287,23,9,28,0.0 +24287,30,25.89,5,0.0 +24287,19,9.2,13,0.0 +24287,77,13,43,0.0 +24287,14,23.25,31,0.0 +24287,3,10,4,0.0 +24287,50,16.25,47,0.0 +24287,72,34.8,46,0.0 +24287,2,19,20,0.0 +24287,4,22,7,0.0 +24287,15,15.5,6,0.0 +24287,49,20,37,0.0 +24287,41,9.65,3,0.0 +24287,27,43.9,24,0.0 +24287,70,15,20,0.0 +24287,22,21,25,0.0 +24287,54,7.45,21,0.0 +24287,75,7.75,27,0.0 +24288,5,21.35,28,0.0 +24288,12,38,39,0.0 +24288,61,28.5,12,0.0 +24288,39,18,36,0.0 +24288,60,34,45,0.0 +24288,16,17.45,41,0.0 +24288,27,43.9,32,0.0 +24288,51,53,2,0.0 +24288,6,25,28,0.0 +24288,30,25.89,12,0.0 +24288,44,19.45,35,0.0 +24288,74,10,28,0.0 +24288,49,20,8,0.0 +24288,34,14,45,0.0 +24288,29,123.79,50,0.0 +24288,76,18,38,0.0 +24288,69,36,47,0.0 +24288,19,9.2,19,0.0 +24288,48,12.75,2,0.0 +24288,71,21.5,34,0.0 +24288,2,19,36,0.0 +24288,72,34.8,9,0.0 +24288,53,32.8,18,0.0 +24288,26,31.23,20,0.0 +24288,63,43.9,45,0.0 +24288,21,10,35,0.0 +24288,20,81,41,0.0 +24288,54,7.45,46,0.0 +24288,7,30,2,0.0 +24288,45,9.5,49,0.0 +24289,53,32.8,13,0.0 +24289,61,28.5,33,0.0 +24289,5,21.35,36,0.0 +24289,39,18,3,0.0 +24289,10,31,40,0.0 +24289,20,81,47,0.0 +24289,40,18.4,43,0.0 +24289,57,19.5,22,0.0 +24289,11,21,43,0.0 +24289,28,45.6,2,0.0 +24289,54,7.45,17,0.0 +24289,1,18,3,0.0 +24289,73,15,43,0.0 +24289,13,6,14,0.0 +24289,51,53,32,0.0 +24289,33,2.5,21,0.0 +24289,27,43.9,15,0.0 +24289,75,7.75,32,0.0 +24289,66,17,22,0.0 +24289,8,40,2,0.0 +24289,35,18,3,0.0 +24289,23,9,11,0.0 +24289,22,21,44,0.0 +24289,48,12.75,32,0.0 +24289,52,7,37,0.0 +24289,19,9.2,13,0.0 +24289,70,15,32,0.0 +24289,43,46,32,0.0 +24289,38,263.5,8,0.0 +24289,9,97,33,0.0 +24289,32,32,9,0.0 +24289,72,34.8,22,0.0 +24289,31,12.5,38,0.0 +24289,58,13.25,31,0.0 +24289,42,14,6,0.0 +24289,71,21.5,16,0.0 +24289,59,55,5,0.0 +24289,45,9.5,42,0.0 +24289,37,26,39,0.0 +24289,16,17.45,11,0.0 +24289,69,36,45,0.0 +24289,67,14,32,0.0 +24289,17,39,14,0.0 +24290,33,2.5,35,0.0 +24291,23,9,40,0.0 +24292,36,19,34,0.0 +24292,73,15,50,0.0 +24292,45,9.5,22,0.0 +24292,5,21.35,38,0.0 +24292,50,16.25,20,0.0 +24292,21,10,41,0.0 +24292,63,43.9,25,0.0 +24292,26,31.23,43,0.0 +24292,35,18,30,0.0 +24292,57,19.5,27,0.0 +24292,34,14,24,0.0 +24292,29,123.79,15,0.0 +24292,70,15,48,0.0 +24292,7,30,38,0.0 +24292,22,21,18,0.0 +24292,25,14,9,0.0 +24292,60,34,12,0.0 +24292,53,32.8,14,0.0 +24292,13,6,2,0.0 +24292,27,43.9,7,0.0 +24292,15,15.5,8,0.0 +24292,74,10,5,0.0 +24292,47,9.5,25,0.0 +24292,30,25.89,34,0.0 +24292,12,38,26,0.0 +24292,62,49.3,30,0.0 +24292,71,21.5,31,0.0 +24292,32,32,26,0.0 +24292,42,14,3,0.0 +24292,31,12.5,34,0.0 +24292,69,36,4,0.0 +24292,2,19,31,0.0 +24292,46,12,25,0.0 +24292,56,38,35,0.0 +24292,72,34.8,29,0.0 +24292,14,23.25,25,0.0 +24292,9,97,34,0.0 +24292,49,20,21,0.0 +24292,43,46,19,0.0 +24292,76,18,21,0.0 +24292,55,24,46,0.0 +24292,66,17,43,0.0 +24292,75,7.75,41,0.0 +24292,41,9.65,14,0.0 +24292,64,33.25,48,0.0 +24292,68,12.5,48,0.0 +24292,33,2.5,8,0.0 +24292,24,4.5,24,0.0 +24292,28,45.6,39,0.0 +24292,17,39,9,0.0 +24292,3,10,44,0.0 +24292,11,21,27,0.0 +24292,19,9.2,49,0.0 +24292,1,18,32,0.0 +24292,20,81,33,0.0 +24292,65,21.05,38,0.0 +24292,23,9,34,0.0 +24292,51,53,42,0.0 +24292,77,13,28,0.0 +24292,18,62.5,48,0.0 +24292,44,19.45,28,0.0 +24292,16,17.45,5,0.0 +24292,40,18.4,28,0.0 +24293,32,32,8,0.0 +24293,7,30,8,0.0 +24293,77,13,16,0.0 +24293,73,15,36,0.0 +24293,67,14,42,0.0 +24293,62,49.3,45,0.0 +24293,27,43.9,20,0.0 +24293,18,62.5,26,0.0 +24293,36,19,33,0.0 +24293,48,12.75,38,0.0 +24293,76,18,16,0.0 +24293,15,15.5,46,0.0 +24293,38,263.5,45,0.0 +24293,42,14,32,0.0 +24293,2,19,33,0.0 +24293,74,10,37,0.0 +24293,68,12.5,50,0.0 +24293,24,4.5,50,0.0 +24293,16,17.45,28,0.0 +24293,64,33.25,10,0.0 +24293,21,10,30,0.0 +24293,58,13.25,5,0.0 +24293,35,18,42,0.0 +24293,5,21.35,48,0.0 +24293,49,20,50,0.0 +24293,12,38,2,0.0 +24293,8,40,26,0.0 +24293,75,7.75,32,0.0 +24293,61,28.5,46,0.0 +24293,11,21,22,0.0 +24293,13,6,10,0.0 +24293,3,10,50,0.0 +24293,31,12.5,10,0.0 +24293,72,34.8,5,0.0 +24293,34,14,41,0.0 +24293,63,43.9,35,0.0 +24293,33,2.5,16,0.0 +24293,69,36,12,0.0 +24293,45,9.5,39,0.0 +24293,25,14,6,0.0 +24293,54,7.45,47,0.0 +24293,46,12,14,0.0 +24293,43,46,29,0.0 +24293,50,16.25,48,0.0 +24293,17,39,44,0.0 +24293,20,81,46,0.0 +24293,37,26,10,0.0 +24293,14,23.25,25,0.0 +24293,55,24,11,0.0 +24293,22,21,32,0.0 +24293,71,21.5,40,0.0 +24293,57,19.5,11,0.0 +24293,26,31.23,50,0.0 +24293,30,25.89,12,0.0 +24293,53,32.8,11,0.0 +24293,28,45.6,25,0.0 +24293,65,21.05,23,0.0 +24293,40,18.4,2,0.0 +24293,44,19.45,36,0.0 +24293,39,18,16,0.0 +24293,1,18,12,0.0 +24293,70,15,35,0.0 +24293,10,31,46,0.0 +24293,56,38,4,0.0 +24293,9,97,28,0.0 +24293,47,9.5,33,0.0 +24293,29,123.79,27,0.0 +24293,19,9.2,28,0.0 +24293,4,22,10,0.0 +24294,7,30,43,0.0 +24294,42,14,18,0.0 +24294,47,9.5,16,0.0 +24294,1,18,8,0.0 +24294,74,10,47,0.0 +24294,2,19,46,0.0 +24294,43,46,40,0.0 +24294,52,7,4,0.0 +24294,4,22,4,0.0 +24294,38,263.5,1,0.0 +24294,64,33.25,17,0.0 +24294,29,123.79,47,0.0 +24294,9,97,20,0.0 +24294,39,18,2,0.0 +24294,63,43.9,20,0.0 +24294,48,12.75,50,0.0 +24294,5,21.35,14,0.0 +24294,75,7.75,41,0.0 +24295,73,15,38,0.0 +24295,75,7.75,38,0.0 +24295,4,22,25,0.0 +24295,46,12,10,0.0 +24295,10,31,38,0.0 +24295,40,18.4,2,0.0 +24295,62,49.3,20,0.0 +24295,49,20,13,0.0 +24295,65,21.05,23,0.0 +24295,74,10,44,0.0 +24295,59,55,13,0.0 +24295,39,18,41,0.0 +24295,36,19,32,0.0 +24295,24,4.5,3,0.0 +24295,58,13.25,28,0.0 +24295,7,30,38,0.0 +24296,51,53,14,0.0 +24296,76,18,48,0.0 +24296,54,7.45,14,0.0 +24296,9,97,29,0.0 +24296,61,28.5,21,0.0 +24296,44,19.45,31,0.0 +24296,41,9.65,4,0.0 +24296,16,17.45,16,0.0 +24296,65,21.05,19,0.0 +24296,75,7.75,11,0.0 +24296,58,13.25,49,0.0 +24296,14,23.25,22,0.0 +24296,30,25.89,2,0.0 +24297,65,21.05,20,0.0 +24297,41,9.65,45,0.0 +24297,76,18,31,0.0 +24297,16,17.45,39,0.0 +24297,22,21,16,0.0 +24297,12,38,14,0.0 +24297,55,24,26,0.0 +24297,64,33.25,24,0.0 +24297,54,7.45,7,0.0 +24297,43,46,47,0.0 +24297,62,49.3,50,0.0 +24297,33,2.5,11,0.0 +24297,56,38,13,0.0 +24297,40,18.4,10,0.0 +24297,32,32,2,0.0 +24297,7,30,36,0.0 +24297,68,12.5,26,0.0 +24297,20,81,32,0.0 +24297,14,23.25,4,0.0 +24297,15,15.5,6,0.0 +24297,59,55,47,0.0 +24297,23,9,46,0.0 +24297,69,36,14,0.0 +24297,71,21.5,10,0.0 +24297,27,43.9,40,0.0 +24297,70,15,38,0.0 +24297,51,53,27,0.0 +24297,49,20,5,0.0 +24297,13,6,46,0.0 +24297,50,16.25,18,0.0 +24297,63,43.9,8,0.0 +24297,18,62.5,39,0.0 +24297,10,31,39,0.0 +24297,24,4.5,35,0.0 +24297,31,12.5,31,0.0 +24297,5,21.35,29,0.0 +24297,11,21,24,0.0 +24297,42,14,44,0.0 +24297,35,18,14,0.0 +24297,48,12.75,27,0.0 +24297,1,18,3,0.0 +24297,17,39,5,0.0 +24297,53,32.8,19,0.0 +24297,30,25.89,3,0.0 +24297,29,123.79,3,0.0 +24297,73,15,1,0.0 +24297,37,26,15,0.0 +24297,74,10,36,0.0 +24297,28,45.6,46,0.0 +24297,25,14,17,0.0 +24297,34,14,48,0.0 +24297,45,9.5,32,0.0 +24297,39,18,23,0.0 +24297,4,22,50,0.0 +24297,46,12,33,0.0 +24297,26,31.23,39,0.0 +24297,60,34,10,0.0 +24297,36,19,7,0.0 +24297,57,19.5,41,0.0 +24297,6,25,41,0.0 +24297,77,13,38,0.0 +24297,52,7,40,0.0 +24297,9,97,8,0.0 +24297,61,28.5,13,0.0 +24297,66,17,23,0.0 +24297,75,7.75,48,0.0 +24297,47,9.5,32,0.0 +24298,17,39,20,0.0 +24298,63,43.9,9,0.0 +24298,70,15,32,0.0 +24298,65,21.05,38,0.0 +24298,22,21,19,0.0 +24298,1,18,34,0.0 +24298,43,46,44,0.0 +24298,76,18,49,0.0 +24298,46,12,7,0.0 +24298,44,19.45,11,0.0 +24298,11,21,4,0.0 +24298,47,9.5,40,0.0 +24298,39,18,32,0.0 +24298,25,14,28,0.0 +24298,67,14,18,0.0 +24298,50,16.25,13,0.0 +24298,16,17.45,32,0.0 +24298,38,263.5,8,0.0 +24298,3,10,25,0.0 +24298,45,9.5,6,0.0 +24298,21,10,38,0.0 +24298,27,43.9,24,0.0 +24298,15,15.5,44,0.0 +24298,36,19,17,0.0 +24298,56,38,46,0.0 +24298,32,32,13,0.0 +24298,6,25,23,0.0 +24298,8,40,43,0.0 +24298,68,12.5,14,0.0 +24298,58,13.25,13,0.0 +24298,31,12.5,49,0.0 +24298,71,21.5,42,0.0 +24298,37,26,29,0.0 +24298,12,38,2,0.0 +24298,53,32.8,32,0.0 +24298,30,25.89,25,0.0 +24298,40,18.4,43,0.0 +24298,5,21.35,9,0.0 +24298,24,4.5,44,0.0 +24298,34,14,23,0.0 +24298,73,15,17,0.0 +24298,2,19,4,0.0 +24298,48,12.75,25,0.0 +24298,66,17,3,0.0 +24298,29,123.79,21,0.0 +24298,7,30,44,0.0 +24298,49,20,10,0.0 +24298,74,10,19,0.0 +24298,52,7,1,0.0 +24298,19,9.2,3,0.0 +24298,51,53,34,0.0 +24298,23,9,33,0.0 +24298,54,7.45,41,0.0 +24298,35,18,4,0.0 +24298,28,45.6,38,0.0 +24298,60,34,24,0.0 +24298,41,9.65,7,0.0 +24298,18,62.5,31,0.0 +24298,4,22,34,0.0 +24298,75,7.75,32,0.0 +24299,9,97,3,0.0 +24299,31,12.5,13,0.0 +24299,25,14,13,0.0 +24299,76,18,31,0.0 +24299,72,34.8,46,0.0 +24299,34,14,6,0.0 +24299,59,55,10,0.0 +24299,24,4.5,8,0.0 +24299,28,45.6,18,0.0 +24299,8,40,18,0.0 +24299,18,62.5,39,0.0 +24299,7,30,20,0.0 +24299,33,2.5,21,0.0 +24299,1,18,36,0.0 +24299,74,10,11,0.0 +24299,3,10,11,0.0 +24299,32,32,1,0.0 +24299,50,16.25,46,0.0 +24299,15,15.5,39,0.0 +24299,36,19,24,0.0 +24299,35,18,36,0.0 +24299,17,39,4,0.0 +24299,45,9.5,48,0.0 +24299,40,18.4,34,0.0 +24299,77,13,36,0.0 +24299,71,21.5,7,0.0 +24299,49,20,14,0.0 +24299,4,22,45,0.0 +24299,20,81,2,0.0 +24299,5,21.35,22,0.0 +24299,47,9.5,20,0.0 +24299,21,10,1,0.0 +24299,13,6,4,0.0 +24299,11,21,28,0.0 +24299,37,26,40,0.0 +24299,30,25.89,3,0.0 +24299,16,17.45,47,0.0 +24299,62,49.3,43,0.0 +24299,53,32.8,36,0.0 +24299,70,15,31,0.0 +24299,41,9.65,36,0.0 +24299,51,53,10,0.0 +24299,64,33.25,31,0.0 +24299,46,12,5,0.0 +24299,60,34,13,0.0 +24299,67,14,25,0.0 +24299,2,19,12,0.0 +24299,63,43.9,33,0.0 +24299,48,12.75,41,0.0 +24299,6,25,35,0.0 +24299,56,38,37,0.0 +24300,59,55,19,0.0 +24301,53,32.8,20,0.0 +24301,29,123.79,23,0.0 +24301,58,13.25,43,0.0 +24301,30,25.89,19,0.0 +24301,11,21,31,0.0 +24301,33,2.5,48,0.0 +24301,10,31,34,0.0 +24301,42,14,19,0.0 +24301,63,43.9,18,0.0 +24301,5,21.35,43,0.0 +24301,9,97,21,0.0 +24301,62,49.3,10,0.0 +24301,37,26,2,0.0 +24301,18,62.5,41,0.0 +24301,51,53,7,0.0 +24301,74,10,37,0.0 +24301,39,18,24,0.0 +24301,35,18,31,0.0 +24301,46,12,8,0.0 +24301,22,21,43,0.0 +24301,36,19,24,0.0 +24301,52,7,50,0.0 +24301,72,34.8,33,0.0 +24301,31,12.5,31,0.0 +24301,49,20,50,0.0 +24301,34,14,49,0.0 +24301,4,22,6,0.0 +24301,69,36,31,0.0 +24301,27,43.9,13,0.0 +24301,26,31.23,38,0.0 +24301,66,17,33,0.0 +24301,7,30,49,0.0 +24301,77,13,36,0.0 +24301,19,9.2,48,0.0 +24301,16,17.45,15,0.0 +24301,60,34,9,0.0 +24301,43,46,5,0.0 +24301,13,6,15,0.0 +24301,50,16.25,10,0.0 +24301,70,15,34,0.0 +24301,40,18.4,16,0.0 +24301,32,32,17,0.0 +24301,65,21.05,50,0.0 +24301,45,9.5,17,0.0 +24301,17,39,14,0.0 +24301,41,9.65,12,0.0 +24301,6,25,38,0.0 +24301,1,18,42,0.0 +24301,56,38,42,0.0 +24301,24,4.5,23,0.0 +24302,53,32.8,28,0.0 +24302,37,26,50,0.0 +24302,48,12.75,35,0.0 +24302,65,21.05,4,0.0 +24302,43,46,47,0.0 +24302,14,23.25,24,0.0 +24302,40,18.4,13,0.0 +24302,18,62.5,35,0.0 +24302,55,24,12,0.0 +24302,33,2.5,3,0.0 +24302,22,21,4,0.0 +24302,25,14,15,0.0 +24302,26,31.23,50,0.0 +24302,3,10,44,0.0 +24302,74,10,10,0.0 +24302,4,22,5,0.0 +24302,63,43.9,31,0.0 +24302,17,39,8,0.0 +24302,32,32,17,0.0 +24302,50,16.25,9,0.0 +24302,77,13,8,0.0 +24302,57,19.5,19,0.0 +24302,44,19.45,4,0.0 +24302,29,123.79,13,0.0 +24302,69,36,37,0.0 +24302,13,6,40,0.0 +24302,51,53,1,0.0 +24302,31,12.5,11,0.0 +24302,41,9.65,14,0.0 +24302,49,20,10,0.0 +24302,20,81,26,0.0 +24302,16,17.45,42,0.0 +24302,5,21.35,49,0.0 +24302,71,21.5,31,0.0 +24302,6,25,34,0.0 +24302,28,45.6,24,0.0 +24302,68,12.5,21,0.0 +24302,70,15,41,0.0 +24302,19,9.2,46,0.0 +24302,42,14,29,0.0 +24302,35,18,38,0.0 +24302,9,97,45,0.0 +24302,45,9.5,5,0.0 +24302,54,7.45,24,0.0 +24302,62,49.3,24,0.0 +24302,23,9,16,0.0 +24302,11,21,35,0.0 +24302,7,30,32,0.0 +24302,34,14,27,0.0 +24302,75,7.75,33,0.0 +24302,12,38,2,0.0 +24302,61,28.5,14,0.0 +24302,10,31,45,0.0 +24302,24,4.5,36,0.0 +24302,2,19,13,0.0 +24303,14,23.25,18,0.0 +24303,73,15,23,0.0 +24303,47,9.5,50,0.0 +24303,32,32,27,0.0 +24303,65,21.05,42,0.0 +24303,7,30,36,0.0 +24303,33,2.5,17,0.0 +24303,62,49.3,12,0.0 +24303,77,13,31,0.0 +24303,50,16.25,41,0.0 +24303,61,28.5,50,0.0 +24303,4,22,18,0.0 +24303,13,6,30,0.0 +24303,38,263.5,21,0.0 +24303,31,12.5,15,0.0 +24303,15,15.5,21,0.0 +24303,2,19,28,0.0 +24303,70,15,37,0.0 +24303,29,123.79,20,0.0 +24303,57,19.5,4,0.0 +24303,41,9.65,37,0.0 +24303,17,39,2,0.0 +24303,68,12.5,6,0.0 +24303,26,31.23,30,0.0 +24303,27,43.9,43,0.0 +24303,36,19,32,0.0 +24303,72,34.8,31,0.0 +24303,24,4.5,14,0.0 +24303,60,34,31,0.0 +24303,53,32.8,12,0.0 +24303,52,7,44,0.0 +24303,66,17,27,0.0 +24303,18,62.5,18,0.0 +24303,11,21,6,0.0 +24303,1,18,13,0.0 +24303,63,43.9,15,0.0 +24303,10,31,18,0.0 +24303,19,9.2,39,0.0 +24303,28,45.6,36,0.0 +24303,12,38,10,0.0 +24303,23,9,48,0.0 +24303,51,53,5,0.0 +24303,59,55,36,0.0 +24303,46,12,41,0.0 +24303,20,81,14,0.0 +24304,17,39,25,0.0 +24304,77,13,6,0.0 +24304,1,18,14,0.0 +24304,40,18.4,37,0.0 +24304,10,31,42,0.0 +24304,16,17.45,39,0.0 +24304,47,9.5,47,0.0 +24304,32,32,23,0.0 +24304,2,19,25,0.0 +24304,67,14,23,0.0 +24304,58,13.25,6,0.0 +24304,68,12.5,37,0.0 +24304,46,12,11,0.0 +24304,25,14,18,0.0 +24304,26,31.23,48,0.0 +24304,53,32.8,7,0.0 +24304,63,43.9,36,0.0 +24304,31,12.5,12,0.0 +24304,12,38,20,0.0 +24304,52,7,16,0.0 +24304,44,19.45,9,0.0 +24304,50,16.25,23,0.0 +24304,37,26,49,0.0 +24304,41,9.65,30,0.0 +24304,30,25.89,50,0.0 +24304,28,45.6,30,0.0 +24304,62,49.3,40,0.0 +24304,15,15.5,35,0.0 +24304,61,28.5,50,0.0 +24304,24,4.5,37,0.0 +24304,51,53,33,0.0 +24304,59,55,26,0.0 +24304,65,21.05,34,0.0 +24304,48,12.75,41,0.0 +24304,49,20,12,0.0 +24304,19,9.2,6,0.0 +24304,74,10,19,0.0 +24304,18,62.5,37,0.0 +24304,29,123.79,35,0.0 +24304,22,21,30,0.0 +24304,8,40,18,0.0 +24304,43,46,29,0.0 +24304,23,9,48,0.0 +24304,56,38,46,0.0 +24304,7,30,20,0.0 +24304,54,7.45,39,0.0 +24304,3,10,44,0.0 +24304,9,97,1,0.0 +24304,35,18,41,0.0 +24304,27,43.9,43,0.0 +24304,64,33.25,35,0.0 +24304,33,2.5,17,0.0 +24304,6,25,28,0.0 +24304,34,14,50,0.0 +24304,38,263.5,20,0.0 +24304,45,9.5,39,0.0 +24304,36,19,24,0.0 +24304,42,14,46,0.0 +24304,5,21.35,6,0.0 +24304,60,34,44,0.0 +24304,55,24,15,0.0 +24304,69,36,16,0.0 +24304,39,18,47,0.0 +24304,13,6,31,0.0 +24304,66,17,33,0.0 +24305,52,7,23,0.0 +24305,40,18.4,18,0.0 +24305,38,263.5,20,0.0 +24305,30,25.89,39,0.0 +24305,66,17,1,0.0 +24305,11,21,3,0.0 +24305,43,46,30,0.0 +24305,77,13,20,0.0 +24305,69,36,21,0.0 +24305,76,18,46,0.0 +24305,59,55,36,0.0 +24305,20,81,12,0.0 +24305,48,12.75,10,0.0 +24305,70,15,33,0.0 +24305,18,62.5,42,0.0 +24305,31,12.5,28,0.0 +24305,19,9.2,45,0.0 +24305,32,32,7,0.0 +24305,35,18,45,0.0 +24305,2,19,1,0.0 +24306,58,13.25,2,0.0 +24306,10,31,31,0.0 +24306,18,62.5,6,0.0 +24306,9,97,33,0.0 +24306,15,15.5,27,0.0 +24306,32,32,39,0.0 +24306,7,30,36,0.0 +24306,6,25,21,0.0 +24306,30,25.89,37,0.0 +24306,28,45.6,45,0.0 +24306,67,14,40,0.0 +24306,54,7.45,25,0.0 +24306,56,38,22,0.0 +24306,51,53,39,0.0 +24306,63,43.9,29,0.0 +24306,61,28.5,20,0.0 +24306,71,21.5,6,0.0 +24306,4,22,5,0.0 +24306,42,14,20,0.0 +24306,3,10,13,0.0 +24306,27,43.9,4,0.0 +24307,15,15.5,33,0.0 +24307,38,263.5,48,0.0 +24307,26,31.23,21,0.0 +24307,52,7,48,0.0 +24307,23,9,38,0.0 +24307,57,19.5,13,0.0 +24307,70,15,29,0.0 +24307,17,39,46,0.0 +24307,25,14,7,0.0 +24307,37,26,34,0.0 +24307,58,13.25,15,0.0 +24307,65,21.05,17,0.0 +24307,49,20,34,0.0 +24307,62,49.3,32,0.0 +24307,19,9.2,50,0.0 +24307,75,7.75,21,0.0 +24307,3,10,47,0.0 +24307,30,25.89,30,0.0 +24307,24,4.5,21,0.0 +24307,41,9.65,40,0.0 +24307,11,21,37,0.0 +24307,76,18,43,0.0 +24307,33,2.5,48,0.0 +24307,16,17.45,21,0.0 +24307,6,25,24,0.0 +24307,32,32,14,0.0 +24307,53,32.8,22,0.0 +24307,36,19,30,0.0 +24307,22,21,26,0.0 +24307,66,17,20,0.0 +24307,71,21.5,27,0.0 +24307,61,28.5,43,0.0 +24307,35,18,40,0.0 +24307,12,38,19,0.0 +24307,60,34,17,0.0 +24307,77,13,50,0.0 +24307,20,81,5,0.0 +24307,48,12.75,42,0.0 +24307,68,12.5,48,0.0 +24307,10,31,21,0.0 +24307,50,16.25,25,0.0 +24307,8,40,15,0.0 +24307,31,12.5,2,0.0 +24307,47,9.5,37,0.0 +24307,59,55,10,0.0 +24307,1,18,11,0.0 +24307,2,19,5,0.0 +24307,74,10,9,0.0 +24307,13,6,31,0.0 +24307,69,36,26,0.0 +24307,28,45.6,23,0.0 +24307,43,46,29,0.0 +24307,64,33.25,17,0.0 +24307,40,18.4,27,0.0 +24307,73,15,24,0.0 +24307,5,21.35,20,0.0 +24307,21,10,49,0.0 +24307,7,30,5,0.0 +24307,63,43.9,21,0.0 +24307,14,23.25,42,0.0 +24307,4,22,36,0.0 +24307,39,18,4,0.0 +24308,9,97,6,0.0 +24308,11,21,43,0.0 +24308,59,55,27,0.0 +24308,53,32.8,10,0.0 +24308,54,7.45,3,0.0 +24308,49,20,35,0.0 +24308,1,18,30,0.0 +24308,65,21.05,1,0.0 +24308,48,12.75,21,0.0 +24308,35,18,48,0.0 +24308,67,14,4,0.0 +24308,64,33.25,38,0.0 +24308,15,15.5,46,0.0 +24309,6,25,7,0.0 +24309,30,25.89,19,0.0 +24309,8,40,19,0.0 +24309,25,14,47,0.0 +24309,17,39,13,0.0 +24309,14,23.25,42,0.0 +24309,35,18,23,0.0 +24309,65,21.05,5,0.0 +24309,72,34.8,33,0.0 +24309,70,15,33,0.0 +24309,59,55,9,0.0 +24309,68,12.5,9,0.0 +24309,77,13,27,0.0 +24309,5,21.35,44,0.0 +24309,7,30,11,0.0 +24309,27,43.9,37,0.0 +24309,18,62.5,29,0.0 +24309,52,7,18,0.0 +24309,20,81,21,0.0 +24309,36,19,46,0.0 +24309,46,12,5,0.0 +24309,33,2.5,7,0.0 +24309,31,12.5,24,0.0 +24309,41,9.65,7,0.0 +24309,40,18.4,8,0.0 +24309,10,31,36,0.0 +24309,29,123.79,7,0.0 +24309,71,21.5,24,0.0 +24309,74,10,36,0.0 +24309,23,9,34,0.0 +24309,66,17,32,0.0 +24309,50,16.25,46,0.0 +24309,76,18,15,0.0 +24309,73,15,13,0.0 +24309,37,26,14,0.0 +24309,49,20,21,0.0 +24309,45,9.5,7,0.0 +24309,21,10,34,0.0 +24309,34,14,21,0.0 +24309,60,34,26,0.0 +24309,54,7.45,27,0.0 +24309,1,18,9,0.0 +24309,24,4.5,38,0.0 +24309,61,28.5,45,0.0 +24309,12,38,35,0.0 +24309,4,22,22,0.0 +24310,23,9,36,0.0 +24310,50,16.25,19,0.0 +24310,59,55,44,0.0 +24310,73,15,23,0.0 +24310,52,7,33,0.0 +24310,64,33.25,11,0.0 +24310,71,21.5,1,0.0 +24310,36,19,33,0.0 +24310,60,34,6,0.0 +24310,76,18,43,0.0 +24310,46,12,50,0.0 +24310,34,14,1,0.0 +24310,69,36,8,0.0 +24310,35,18,4,0.0 +24310,6,25,35,0.0 +24310,44,19.45,24,0.0 +24310,2,19,40,0.0 +24310,7,30,24,0.0 +24310,62,49.3,42,0.0 +24310,26,31.23,47,0.0 +24310,58,13.25,12,0.0 +24310,5,21.35,36,0.0 +24310,47,9.5,23,0.0 +24310,10,31,48,0.0 +24310,16,17.45,13,0.0 +24310,29,123.79,40,0.0 +24310,24,4.5,46,0.0 +24310,18,62.5,39,0.0 +24310,21,10,18,0.0 +24311,13,6,15,0.0 +24311,3,10,26,0.0 +24311,2,19,34,0.0 +24311,50,16.25,32,0.0 +24311,77,13,1,0.0 +24311,48,12.75,1,0.0 +24311,63,43.9,37,0.0 +24311,16,17.45,3,0.0 +24311,55,24,40,0.0 +24311,75,7.75,28,0.0 +24311,20,81,8,0.0 +24311,11,21,11,0.0 +24311,21,10,42,0.0 +24311,64,33.25,38,0.0 +24311,73,15,29,0.0 +24311,61,28.5,22,0.0 +24311,32,32,28,0.0 +24311,45,9.5,46,0.0 +24311,65,21.05,27,0.0 +24311,23,9,22,0.0 +24311,41,9.65,48,0.0 +24311,17,39,43,0.0 +24311,76,18,10,0.0 +24311,8,40,49,0.0 +24311,4,22,22,0.0 +24311,31,12.5,45,0.0 +24311,43,46,42,0.0 +24311,57,19.5,12,0.0 +24311,71,21.5,11,0.0 +24311,15,15.5,12,0.0 +24311,33,2.5,29,0.0 +24311,60,34,49,0.0 +24311,69,36,41,0.0 +24311,51,53,21,0.0 +24311,19,9.2,12,0.0 +24311,46,12,32,0.0 +24311,44,19.45,24,0.0 +24311,27,43.9,42,0.0 +24311,14,23.25,35,0.0 +24311,70,15,21,0.0 +24311,5,21.35,2,0.0 +24311,40,18.4,27,0.0 +24311,47,9.5,23,0.0 +24311,34,14,41,0.0 +24311,72,34.8,31,0.0 +24311,67,14,6,0.0 +24311,49,20,10,0.0 +24311,9,97,35,0.0 +24311,24,4.5,31,0.0 +24311,28,45.6,24,0.0 +24311,35,18,10,0.0 +24311,38,263.5,49,0.0 +24311,25,14,35,0.0 +24311,66,17,26,0.0 +24311,52,7,41,0.0 +24311,12,38,18,0.0 +24311,26,31.23,30,0.0 +24311,6,25,18,0.0 +24311,59,55,47,0.0 +24311,58,13.25,18,0.0 +24311,74,10,16,0.0 +24311,53,32.8,9,0.0 +24311,56,38,5,0.0 +24311,68,12.5,18,0.0 +24311,42,14,37,0.0 +24311,29,123.79,11,0.0 +24311,54,7.45,7,0.0 +24311,10,31,2,0.0 +24311,37,26,2,0.0 +24311,7,30,44,0.0 +24311,39,18,29,0.0 +24311,36,19,14,0.0 +24311,1,18,11,0.0 +24311,30,25.89,50,0.0 +24312,1,18,49,0.0 +24312,31,12.5,40,0.0 +24312,75,7.75,36,0.0 +24312,38,263.5,17,0.0 +24312,18,62.5,31,0.0 +24312,68,12.5,49,0.0 +24312,17,39,34,0.0 +24312,48,12.75,50,0.0 +24312,62,49.3,13,0.0 +24312,13,6,17,0.0 +24312,74,10,50,0.0 +24312,36,19,9,0.0 +24312,45,9.5,37,0.0 +24312,29,123.79,40,0.0 +24312,3,10,28,0.0 +24312,47,9.5,19,0.0 +24312,7,30,36,0.0 +24312,19,9.2,42,0.0 +24312,24,4.5,47,0.0 +24312,70,15,14,0.0 +24312,56,38,43,0.0 +24312,4,22,30,0.0 +24312,76,18,8,0.0 +24312,69,36,37,0.0 +24312,22,21,36,0.0 +24312,33,2.5,11,0.0 +24312,10,31,21,0.0 +24312,8,40,6,0.0 +24312,25,14,40,0.0 +24312,2,19,32,0.0 +24312,55,24,25,0.0 +24312,23,9,5,0.0 +24312,65,21.05,48,0.0 +24312,9,97,3,0.0 +24312,52,7,2,0.0 +24312,60,34,3,0.0 +24312,14,23.25,34,0.0 +24312,43,46,42,0.0 +24312,73,15,48,0.0 +24312,6,25,5,0.0 +24313,68,12.5,35,0.0 +24313,41,9.65,37,0.0 +24313,29,123.79,2,0.0 +24313,9,97,4,0.0 +24313,22,21,34,0.0 +24313,36,19,41,0.0 +24313,11,21,34,0.0 +24313,5,21.35,18,0.0 +24313,16,17.45,44,0.0 +24313,25,14,48,0.0 +24313,15,15.5,29,0.0 +24313,7,30,15,0.0 +24313,23,9,3,0.0 +24313,61,28.5,21,0.0 +24313,43,46,8,0.0 +24314,28,45.6,32,0.0 +24314,55,24,26,0.0 +24314,6,25,8,0.0 +24314,54,7.45,16,0.0 +24314,52,7,15,0.0 +24314,26,31.23,37,0.0 +24314,49,20,41,0.0 +24314,73,15,1,0.0 +24314,41,9.65,11,0.0 +24314,61,28.5,9,0.0 +24314,33,2.5,35,0.0 +24314,39,18,43,0.0 +24314,9,97,11,0.0 +24314,37,26,36,0.0 +24314,76,18,26,0.0 +24314,71,21.5,6,0.0 +24314,24,4.5,4,0.0 +24314,12,38,19,0.0 +24314,2,19,29,0.0 +24314,18,62.5,50,0.0 +24314,40,18.4,49,0.0 +24314,36,19,30,0.0 +24314,19,9.2,1,0.0 +24314,47,9.5,20,0.0 +24314,56,38,1,0.0 +24314,48,12.75,24,0.0 +24314,43,46,4,0.0 +24314,68,12.5,22,0.0 +24314,51,53,50,0.0 +24314,17,39,35,0.0 +24314,23,9,18,0.0 +24314,75,7.75,48,0.0 +24314,64,33.25,16,0.0 +24314,65,21.05,49,0.0 +24314,50,16.25,10,0.0 +24314,66,17,20,0.0 +24314,69,36,5,0.0 +24314,77,13,12,0.0 +24314,8,40,21,0.0 +24314,72,34.8,15,0.0 +24315,54,7.45,33,0.0 +24315,14,23.25,36,0.0 +24315,62,49.3,36,0.0 +24315,45,9.5,36,0.0 +24315,55,24,43,0.0 +24315,65,21.05,2,0.0 +24315,30,25.89,48,0.0 +24315,75,7.75,17,0.0 +24315,17,39,24,0.0 +24315,77,13,27,0.0 +24315,12,38,10,0.0 +24315,63,43.9,47,0.0 +24315,5,21.35,17,0.0 +24315,39,18,10,0.0 +24315,60,34,19,0.0 +24315,20,81,21,0.0 +24315,58,13.25,24,0.0 +24315,66,17,45,0.0 +24315,3,10,13,0.0 +24315,49,20,14,0.0 +24315,53,32.8,17,0.0 +24315,33,2.5,36,0.0 +24315,64,33.25,13,0.0 +24315,36,19,11,0.0 +24315,47,9.5,28,0.0 +24315,10,31,13,0.0 +24315,25,14,18,0.0 +24315,9,97,4,0.0 +24315,22,21,43,0.0 +24315,76,18,30,0.0 +24315,32,32,17,0.0 +24315,27,43.9,39,0.0 +24315,28,45.6,6,0.0 +24315,56,38,17,0.0 +24315,43,46,10,0.0 +24315,71,21.5,25,0.0 +24315,18,62.5,1,0.0 +24315,72,34.8,5,0.0 +24315,42,14,24,0.0 +24315,37,26,1,0.0 +24315,68,12.5,44,0.0 +24315,34,14,15,0.0 +24315,24,4.5,48,0.0 +24315,41,9.65,18,0.0 +24315,4,22,18,0.0 +24315,21,10,2,0.0 +24315,1,18,7,0.0 +24315,73,15,26,0.0 +24315,23,9,3,0.0 +24315,50,16.25,28,0.0 +24315,31,12.5,3,0.0 +24315,2,19,42,0.0 +24315,51,53,48,0.0 +24315,59,55,41,0.0 +24316,24,4.5,1,0.0 +24316,18,62.5,25,0.0 +24316,10,31,40,0.0 +24316,22,21,20,0.0 +24316,41,9.65,16,0.0 +24316,32,32,29,0.0 +24316,20,81,3,0.0 +24317,39,18,42,0.0 +24317,26,31.23,29,0.0 +24317,44,19.45,31,0.0 +24317,51,53,19,0.0 +24317,23,9,27,0.0 +24317,50,16.25,20,0.0 +24317,15,15.5,46,0.0 +24317,35,18,21,0.0 +24317,46,12,36,0.0 +24317,16,17.45,20,0.0 +24317,37,26,33,0.0 +24317,57,19.5,20,0.0 +24317,19,9.2,43,0.0 +24317,62,49.3,17,0.0 +24317,41,9.65,5,0.0 +24317,14,23.25,35,0.0 +24317,22,21,9,0.0 +24317,20,81,26,0.0 +24317,58,13.25,11,0.0 +24317,63,43.9,13,0.0 +24317,75,7.75,7,0.0 +24317,30,25.89,42,0.0 +24317,60,34,47,0.0 +24317,33,2.5,49,0.0 +24317,4,22,27,0.0 +24317,77,13,47,0.0 +24317,43,46,28,0.0 +24317,11,21,19,0.0 +24317,64,33.25,7,0.0 +24317,68,12.5,37,0.0 +24317,29,123.79,12,0.0 +24317,65,21.05,29,0.0 +24317,74,10,45,0.0 +24317,34,14,19,0.0 +24317,54,7.45,50,0.0 +24317,45,9.5,12,0.0 +24317,66,17,14,0.0 +24317,49,20,37,0.0 +24317,8,40,15,0.0 +24317,59,55,23,0.0 +24317,71,21.5,9,0.0 +24317,21,10,23,0.0 +24318,35,18,42,0.0 +24318,44,19.45,11,0.0 +24318,71,21.5,48,0.0 +24318,52,7,47,0.0 +24318,27,43.9,35,0.0 +24318,26,31.23,5,0.0 +24318,40,18.4,37,0.0 +24318,24,4.5,47,0.0 +24318,42,14,33,0.0 +24318,36,19,4,0.0 +24318,30,25.89,47,0.0 +24318,33,2.5,50,0.0 +24318,29,123.79,12,0.0 +24318,1,18,20,0.0 +24318,46,12,25,0.0 +24318,59,55,47,0.0 +24318,73,15,2,0.0 +24318,57,19.5,18,0.0 +24318,11,21,18,0.0 +24318,69,36,1,0.0 +24318,54,7.45,24,0.0 +24318,21,10,20,0.0 +24318,6,25,21,0.0 +24318,9,97,38,0.0 +24318,60,34,13,0.0 +24318,32,32,18,0.0 +24319,26,31.23,47,0.0 +24319,51,53,40,0.0 +24319,31,12.5,39,0.0 +24319,24,4.5,28,0.0 +24319,11,21,11,0.0 +24319,6,25,21,0.0 +24319,48,12.75,26,0.0 +24319,74,10,49,0.0 +24319,56,38,44,0.0 +24319,34,14,39,0.0 +24319,67,14,39,0.0 +24319,49,20,3,0.0 +24319,39,18,9,0.0 +24319,50,16.25,35,0.0 +24320,2,19,3,0.0 +24320,45,9.5,11,0.0 +24320,9,97,6,0.0 +24320,37,26,19,0.0 +24320,43,46,26,0.0 +24320,57,19.5,43,0.0 +24320,21,10,18,0.0 +24320,68,12.5,12,0.0 +24320,26,31.23,41,0.0 +24320,13,6,43,0.0 +24320,33,2.5,25,0.0 +24320,47,9.5,19,0.0 +24320,55,24,18,0.0 +24320,42,14,6,0.0 +24320,20,81,39,0.0 +24320,64,33.25,14,0.0 +24320,66,17,25,0.0 +24320,54,7.45,37,0.0 +24320,35,18,29,0.0 +24320,24,4.5,44,0.0 +24320,34,14,6,0.0 +24320,77,13,22,0.0 +24320,22,21,10,0.0 +24320,36,19,4,0.0 +24320,59,55,25,0.0 +24320,16,17.45,37,0.0 +24320,40,18.4,16,0.0 +24320,5,21.35,7,0.0 +24320,39,18,20,0.0 +24320,73,15,38,0.0 +24320,29,123.79,22,0.0 +24320,44,19.45,49,0.0 +24320,32,32,18,0.0 +24320,10,31,7,0.0 +24320,7,30,9,0.0 +24320,62,49.3,34,0.0 +24320,41,9.65,6,0.0 +24320,31,12.5,37,0.0 +24320,17,39,24,0.0 +24320,63,43.9,11,0.0 +24320,71,21.5,26,0.0 +24320,56,38,22,0.0 +24320,67,14,9,0.0 +24320,27,43.9,29,0.0 +24321,44,19.45,27,0.0 +24321,11,21,12,0.0 +24321,59,55,48,0.0 +24321,17,39,11,0.0 +24321,40,18.4,19,0.0 +24321,23,9,9,0.0 +24321,21,10,5,0.0 +24321,28,45.6,22,0.0 +24321,47,9.5,19,0.0 +24321,70,15,45,0.0 +24321,76,18,1,0.0 +24321,32,32,37,0.0 +24321,33,2.5,34,0.0 +24321,36,19,12,0.0 +24321,45,9.5,47,0.0 +24321,65,21.05,17,0.0 +24321,1,18,1,0.0 +24321,48,12.75,21,0.0 +24321,58,13.25,12,0.0 +24321,30,25.89,23,0.0 +24321,43,46,9,0.0 +24321,16,17.45,11,0.0 +24321,71,21.5,14,0.0 +24321,6,25,8,0.0 +24321,22,21,29,0.0 +24321,51,53,8,0.0 +24321,63,43.9,26,0.0 +24321,2,19,2,0.0 +24321,35,18,5,0.0 +24321,18,62.5,28,0.0 +24321,26,31.23,45,0.0 +24321,52,7,45,0.0 +24321,75,7.75,50,0.0 +24321,67,14,16,0.0 +24321,56,38,7,0.0 +24321,53,32.8,21,0.0 +24321,61,28.5,28,0.0 +24321,25,14,40,0.0 +24321,31,12.5,43,0.0 +24321,27,43.9,34,0.0 +24321,74,10,11,0.0 +24321,8,40,20,0.0 +24321,46,12,38,0.0 +24321,64,33.25,44,0.0 +24321,50,16.25,27,0.0 +24321,66,17,32,0.0 +24321,37,26,2,0.0 +24321,20,81,1,0.0 +24321,60,34,32,0.0 +24321,13,6,28,0.0 +24321,3,10,32,0.0 +24321,73,15,23,0.0 +24321,54,7.45,36,0.0 +24321,62,49.3,10,0.0 +24321,39,18,27,0.0 +24321,68,12.5,33,0.0 +24321,7,30,45,0.0 +24321,34,14,41,0.0 +24321,4,22,32,0.0 +24321,12,38,9,0.0 +24321,57,19.5,40,0.0 +24321,55,24,25,0.0 +24321,77,13,23,0.0 +24321,72,34.8,17,0.0 +24321,5,21.35,34,0.0 +24322,61,28.5,27,0.0 +24322,39,18,45,0.0 +24322,5,21.35,28,0.0 +24322,33,2.5,2,0.0 +24322,8,40,4,0.0 +24322,37,26,19,0.0 +24322,74,10,12,0.0 +24322,69,36,19,0.0 +24322,7,30,37,0.0 +24322,26,31.23,45,0.0 +24322,76,18,47,0.0 +24322,34,14,17,0.0 +24322,24,4.5,6,0.0 +24322,70,15,36,0.0 +24322,35,18,38,0.0 +24322,6,25,20,0.0 +24322,15,15.5,25,0.0 +24322,64,33.25,41,0.0 +24322,60,34,25,0.0 +24322,72,34.8,3,0.0 +24322,51,53,7,0.0 +24322,9,97,14,0.0 +24322,10,31,21,0.0 +24322,36,19,5,0.0 +24322,38,263.5,3,0.0 +24322,4,22,24,0.0 +24323,6,25,16,0.0 +24323,76,18,50,0.0 +24323,36,19,16,0.0 +24323,38,263.5,14,0.0 +24323,70,15,30,0.0 +24323,61,28.5,44,0.0 +24323,32,32,23,0.0 +24323,45,9.5,26,0.0 +24323,71,21.5,30,0.0 +24323,65,21.05,14,0.0 +24323,22,21,5,0.0 +24323,49,20,7,0.0 +24323,66,17,42,0.0 +24323,34,14,30,0.0 +24323,73,15,49,0.0 +24323,27,43.9,23,0.0 +24323,39,18,32,0.0 +24323,9,97,28,0.0 +24323,43,46,19,0.0 +24323,47,9.5,1,0.0 +24323,62,49.3,34,0.0 +24323,23,9,41,0.0 +24323,48,12.75,33,0.0 +24323,69,36,14,0.0 +24323,72,34.8,27,0.0 +24323,20,81,41,0.0 +24323,8,40,3,0.0 +24323,30,25.89,42,0.0 +24323,10,31,22,0.0 +24323,28,45.6,43,0.0 +24323,75,7.75,43,0.0 +24323,51,53,29,0.0 +24323,15,15.5,38,0.0 +24323,26,31.23,46,0.0 +24323,63,43.9,6,0.0 +24323,24,4.5,25,0.0 +24323,16,17.45,35,0.0 +24323,57,19.5,32,0.0 +24323,12,38,3,0.0 +24323,29,123.79,14,0.0 +24323,40,18.4,9,0.0 +24323,7,30,44,0.0 +24323,55,24,8,0.0 +24323,67,14,50,0.0 +24323,19,9.2,44,0.0 +24323,14,23.25,38,0.0 +24323,18,62.5,26,0.0 +24323,68,12.5,47,0.0 +24323,58,13.25,13,0.0 +24323,50,16.25,20,0.0 +24323,31,12.5,4,0.0 +24323,59,55,32,0.0 +24323,21,10,21,0.0 +24323,35,18,15,0.0 +24323,42,14,23,0.0 +24323,3,10,2,0.0 +24323,2,19,15,0.0 +24323,77,13,28,0.0 +24323,33,2.5,5,0.0 +24323,60,34,32,0.0 +24323,25,14,25,0.0 +24323,37,26,44,0.0 +24323,11,21,8,0.0 +24323,13,6,4,0.0 +24323,1,18,8,0.0 +24323,41,9.65,34,0.0 +24323,4,22,5,0.0 +24323,44,19.45,41,0.0 +24323,74,10,19,0.0 +24323,56,38,44,0.0 +24323,17,39,45,0.0 +24324,28,45.6,19,0.0 +24324,50,16.25,28,0.0 +24324,60,34,14,0.0 +24324,19,9.2,34,0.0 +24324,69,36,6,0.0 +24324,25,14,14,0.0 +24324,52,7,24,0.0 +24324,3,10,11,0.0 +24324,27,43.9,45,0.0 +24324,56,38,44,0.0 +24324,45,9.5,50,0.0 +24324,59,55,39,0.0 +24324,70,15,10,0.0 +24324,23,9,5,0.0 +24324,14,23.25,14,0.0 +24324,51,53,42,0.0 +24324,2,19,34,0.0 +24324,17,39,24,0.0 +24324,9,97,12,0.0 +24324,62,49.3,14,0.0 +24324,47,9.5,20,0.0 +24324,65,21.05,19,0.0 +24324,53,32.8,44,0.0 +24324,66,17,39,0.0 +24324,21,10,44,0.0 +24324,41,9.65,21,0.0 +24324,71,21.5,4,0.0 +24324,39,18,24,0.0 +24324,4,22,31,0.0 +24324,35,18,44,0.0 +24325,45,9.5,1,0.0 +24325,42,14,48,0.0 +24325,74,10,7,0.0 +24325,50,16.25,41,0.0 +24325,34,14,3,0.0 +24325,44,19.45,1,0.0 +24325,8,40,16,0.0 +24325,39,18,48,0.0 +24325,26,31.23,41,0.0 +24325,51,53,22,0.0 +24325,67,14,19,0.0 +24325,25,14,19,0.0 +24325,70,15,44,0.0 +24325,36,19,38,0.0 +24325,64,33.25,37,0.0 +24325,77,13,11,0.0 +24325,58,13.25,17,0.0 +24325,31,12.5,35,0.0 +24325,56,38,47,0.0 +24325,7,30,16,0.0 +24325,43,46,17,0.0 +24325,15,15.5,25,0.0 +24325,65,21.05,30,0.0 +24325,46,12,35,0.0 +24325,62,49.3,37,0.0 +24325,35,18,17,0.0 +24325,20,81,12,0.0 +24325,76,18,47,0.0 +24325,27,43.9,5,0.0 +24325,29,123.79,10,0.0 +24325,71,21.5,46,0.0 +24325,6,25,2,0.0 +24325,57,19.5,21,0.0 +24325,52,7,37,0.0 +24325,59,55,45,0.0 +24325,1,18,42,0.0 +24325,9,97,49,0.0 +24325,14,23.25,6,0.0 +24325,19,9.2,11,0.0 +24325,38,263.5,25,0.0 +24325,2,19,35,0.0 +24325,48,12.75,25,0.0 +24325,16,17.45,39,0.0 +24325,66,17,21,0.0 +24325,49,20,50,0.0 +24325,17,39,4,0.0 +24325,37,26,6,0.0 +24325,72,34.8,12,0.0 +24325,18,62.5,3,0.0 +24325,75,7.75,9,0.0 +24325,23,9,10,0.0 +24325,47,9.5,48,0.0 +24325,10,31,29,0.0 +24325,54,7.45,2,0.0 +24325,73,15,18,0.0 +24326,46,12,3,0.0 +24326,74,10,7,0.0 +24326,60,34,37,0.0 +24326,35,18,18,0.0 +24326,3,10,26,0.0 +24326,1,18,23,0.0 +24326,64,33.25,12,0.0 +24326,76,18,4,0.0 +24326,61,28.5,39,0.0 +24326,12,38,14,0.0 +24326,42,14,34,0.0 +24326,25,14,28,0.0 +24326,6,25,1,0.0 +24326,40,18.4,24,0.0 +24326,37,26,31,0.0 +24326,4,22,23,0.0 +24326,31,12.5,3,0.0 +24326,75,7.75,6,0.0 +24326,41,9.65,11,0.0 +24326,9,97,4,0.0 +24326,48,12.75,9,0.0 +24326,69,36,40,0.0 +24326,26,31.23,37,0.0 +24326,17,39,18,0.0 +24326,59,55,43,0.0 +24326,73,15,27,0.0 +24326,43,46,32,0.0 +24326,72,34.8,31,0.0 +24326,36,19,34,0.0 +24326,51,53,22,0.0 +24326,32,32,17,0.0 +24326,19,9.2,10,0.0 +24326,28,45.6,2,0.0 +24326,45,9.5,39,0.0 +24326,14,23.25,2,0.0 +24326,15,15.5,19,0.0 +24326,30,25.89,43,0.0 +24326,71,21.5,28,0.0 +24327,42,14,48,0.0 +24327,26,31.23,4,0.0 +24327,22,21,48,0.0 +24327,67,14,46,0.0 +24327,49,20,6,0.0 +24327,2,19,11,0.0 +24327,45,9.5,46,0.0 +24327,10,31,36,0.0 +24327,77,13,20,0.0 +24327,6,25,22,0.0 +24327,47,9.5,13,0.0 +24327,61,28.5,49,0.0 +24327,25,14,15,0.0 +24327,46,12,45,0.0 +24327,39,18,9,0.0 +24327,37,26,3,0.0 +24327,1,18,24,0.0 +24327,11,21,16,0.0 +24327,60,34,4,0.0 +24327,14,23.25,28,0.0 +24327,44,19.45,36,0.0 +24327,34,14,4,0.0 +24327,17,39,39,0.0 +24327,4,22,18,0.0 +24327,29,123.79,20,0.0 +24327,76,18,41,0.0 +24327,41,9.65,13,0.0 +24327,38,263.5,49,0.0 +24328,12,38,18,0.0 +24328,25,14,4,0.0 +24328,76,18,14,0.0 +24328,71,21.5,46,0.0 +24328,1,18,17,0.0 +24328,9,97,31,0.0 +24328,72,34.8,37,0.0 +24328,68,12.5,22,0.0 +24328,50,16.25,35,0.0 +24328,62,49.3,4,0.0 +24328,18,62.5,37,0.0 +24328,77,13,8,0.0 +24328,10,31,4,0.0 +24328,51,53,36,0.0 +24328,15,15.5,39,0.0 +24328,47,9.5,21,0.0 +24328,56,38,4,0.0 +24328,11,21,10,0.0 +24328,39,18,5,0.0 +24328,60,34,37,0.0 +24328,45,9.5,16,0.0 +24329,63,43.9,31,0.0 +24329,2,19,33,0.0 +24329,1,18,18,0.0 +24329,73,15,36,0.0 +24329,26,31.23,25,0.0 +24329,14,23.25,7,0.0 +24329,25,14,1,0.0 +24329,35,18,23,0.0 +24329,6,25,8,0.0 +24329,15,15.5,4,0.0 +24329,18,62.5,37,0.0 +24329,37,26,34,0.0 +24329,33,2.5,28,0.0 +24329,68,12.5,14,0.0 +24329,54,7.45,47,0.0 +24329,7,30,38,0.0 +24329,23,9,22,0.0 +24329,52,7,38,0.0 +24329,76,18,31,0.0 +24329,71,21.5,1,0.0 +24329,48,12.75,18,0.0 +24329,74,10,9,0.0 +24329,5,21.35,40,0.0 +24329,60,34,48,0.0 +24329,59,55,1,0.0 +24329,31,12.5,22,0.0 +24329,8,40,12,0.0 +24329,36,19,14,0.0 +24329,39,18,15,0.0 +24329,45,9.5,49,0.0 +24329,12,38,13,0.0 +24329,53,32.8,50,0.0 +24329,40,18.4,17,0.0 +24329,57,19.5,2,0.0 +24329,61,28.5,18,0.0 +24329,51,53,5,0.0 +24329,27,43.9,27,0.0 +24329,17,39,2,0.0 +24329,13,6,17,0.0 +24329,65,21.05,37,0.0 +24329,47,9.5,50,0.0 +24329,66,17,26,0.0 +24329,28,45.6,46,0.0 +24329,50,16.25,32,0.0 +24329,46,12,42,0.0 +24329,64,33.25,42,0.0 +24329,38,263.5,47,0.0 +24329,62,49.3,1,0.0 +24329,4,22,33,0.0 +24329,72,34.8,22,0.0 +24329,11,21,9,0.0 +24329,43,46,10,0.0 +24329,67,14,3,0.0 +24329,30,25.89,40,0.0 +24329,32,32,37,0.0 +24329,10,31,37,0.0 +24329,58,13.25,9,0.0 +24329,44,19.45,45,0.0 +24329,69,36,17,0.0 +24329,41,9.65,16,0.0 +24329,9,97,11,0.0 +24329,22,21,10,0.0 +24329,19,9.2,22,0.0 +24329,56,38,17,0.0 +24329,75,7.75,15,0.0 +24329,21,10,50,0.0 +24329,77,13,14,0.0 +24329,55,24,27,0.0 +24329,16,17.45,43,0.0 +24329,20,81,29,0.0 +24329,42,14,25,0.0 +24329,49,20,47,0.0 +24330,2,19,45,0.0 +24330,47,9.5,45,0.0 +24330,28,45.6,23,0.0 +24330,6,25,21,0.0 +24331,12,38,44,0.0 +24332,14,23.25,33,0.0 +24332,27,43.9,32,0.0 +24332,60,34,6,0.0 +24332,34,14,19,0.0 +24332,23,9,47,0.0 +24332,61,28.5,15,0.0 +24332,28,45.6,11,0.0 +24332,45,9.5,7,0.0 +24332,40,18.4,50,0.0 +24332,8,40,6,0.0 +24332,56,38,32,0.0 +24333,70,15,38,0.0 +24333,14,23.25,36,0.0 +24333,30,25.89,5,0.0 +24333,21,10,9,0.0 +24333,7,30,36,0.0 +24333,57,19.5,43,0.0 +24333,26,31.23,28,0.0 +24333,58,13.25,13,0.0 +24333,22,21,39,0.0 +24333,27,43.9,27,0.0 +24333,35,18,50,0.0 +24333,41,9.65,37,0.0 +24333,25,14,6,0.0 +24333,17,39,5,0.0 +24333,65,21.05,34,0.0 +24333,12,38,12,0.0 +24333,60,34,35,0.0 +24333,69,36,8,0.0 +24333,74,10,22,0.0 +24333,63,43.9,50,0.0 +24333,1,18,15,0.0 +24333,9,97,44,0.0 +24333,47,9.5,21,0.0 +24333,3,10,22,0.0 +24333,77,13,44,0.0 +24333,44,19.45,14,0.0 +24333,67,14,15,0.0 +24333,72,34.8,20,0.0 +24333,76,18,8,0.0 +24333,11,21,29,0.0 +24333,46,12,48,0.0 +24333,6,25,20,0.0 +24333,10,31,15,0.0 +24333,51,53,7,0.0 +24333,33,2.5,5,0.0 +24333,50,16.25,6,0.0 +24333,29,123.79,21,0.0 +24333,73,15,27,0.0 +24333,59,55,3,0.0 +24333,32,32,19,0.0 +24333,39,18,27,0.0 +24333,43,46,13,0.0 +24333,42,14,12,0.0 +24333,34,14,48,0.0 +24333,2,19,24,0.0 +24333,45,9.5,37,0.0 +24333,49,20,17,0.0 +24333,64,33.25,5,0.0 +24333,61,28.5,40,0.0 +24333,15,15.5,47,0.0 +24333,66,17,21,0.0 +24333,38,263.5,30,0.0 +24333,19,9.2,25,0.0 +24333,4,22,16,0.0 +24333,55,24,33,0.0 +24333,52,7,37,0.0 +24333,24,4.5,35,0.0 +24333,75,7.75,18,0.0 +24333,13,6,50,0.0 +24333,8,40,43,0.0 +24333,48,12.75,24,0.0 +24333,36,19,17,0.0 +24333,31,12.5,42,0.0 +24333,37,26,11,0.0 +24333,23,9,24,0.0 +24333,5,21.35,24,0.0 +24333,18,62.5,46,0.0 +24333,71,21.5,40,0.0 +24333,68,12.5,9,0.0 +24333,28,45.6,20,0.0 +24333,20,81,31,0.0 +24333,16,17.45,26,0.0 +24333,54,7.45,24,0.0 +24333,56,38,39,0.0 +24334,75,7.75,14,0.0 +24334,50,16.25,25,0.0 +24334,73,15,12,0.0 +24334,29,123.79,41,0.0 +24334,15,15.5,43,0.0 +24334,67,14,50,0.0 +24334,70,15,14,0.0 +24334,47,9.5,43,0.0 +24334,60,34,37,0.0 +24334,65,21.05,28,0.0 +24334,23,9,39,0.0 +24334,38,263.5,36,0.0 +24334,46,12,21,0.0 +24334,57,19.5,36,0.0 +24334,28,45.6,15,0.0 +24334,62,49.3,42,0.0 +24334,45,9.5,19,0.0 +24334,14,23.25,2,0.0 +24334,74,10,6,0.0 +24334,69,36,24,0.0 +24334,1,18,17,0.0 +24334,22,21,35,0.0 +24334,10,31,10,0.0 +24334,58,13.25,13,0.0 +24334,20,81,26,0.0 +24334,6,25,44,0.0 +24334,39,18,26,0.0 +24334,32,32,18,0.0 +24334,49,20,29,0.0 +24334,19,9.2,11,0.0 +24334,68,12.5,4,0.0 +24334,26,31.23,28,0.0 +24334,33,2.5,14,0.0 +24334,3,10,28,0.0 +24334,35,18,40,0.0 +24334,5,21.35,7,0.0 +24334,76,18,18,0.0 +24334,71,21.5,23,0.0 +24334,44,19.45,3,0.0 +24334,30,25.89,34,0.0 +24334,42,14,9,0.0 +24334,17,39,49,0.0 +24334,53,32.8,37,0.0 +24334,64,33.25,27,0.0 +24334,12,38,12,0.0 +24334,13,6,45,0.0 +24334,24,4.5,47,0.0 +24334,66,17,10,0.0 +24334,54,7.45,20,0.0 +24334,63,43.9,25,0.0 +24334,56,38,16,0.0 +24334,51,53,39,0.0 +24334,8,40,30,0.0 +24334,43,46,39,0.0 +24334,4,22,36,0.0 +24334,31,12.5,50,0.0 +24334,72,34.8,18,0.0 +24334,25,14,44,0.0 +24334,16,17.45,42,0.0 +24334,36,19,49,0.0 +24334,11,21,1,0.0 +24334,34,14,44,0.0 +24334,48,12.75,9,0.0 +24335,58,13.25,10,0.0 +24335,50,16.25,45,0.0 +24335,46,12,3,0.0 +24335,2,19,40,0.0 +24335,66,17,16,0.0 +24335,59,55,49,0.0 +24335,20,81,19,0.0 +24335,33,2.5,48,0.0 +24335,18,62.5,37,0.0 +24335,15,15.5,23,0.0 +24335,7,30,23,0.0 +24335,19,9.2,41,0.0 +24335,36,19,5,0.0 +24335,47,9.5,24,0.0 +24335,31,12.5,25,0.0 +24335,13,6,43,0.0 +24335,22,21,37,0.0 +24335,44,19.45,7,0.0 +24335,3,10,39,0.0 +24335,48,12.75,2,0.0 +24335,5,21.35,8,0.0 +24335,54,7.45,7,0.0 +24335,43,46,27,0.0 +24335,55,24,14,0.0 +24335,24,4.5,37,0.0 +24335,16,17.45,26,0.0 +24335,38,263.5,37,0.0 +24335,23,9,28,0.0 +24335,71,21.5,36,0.0 +24335,34,14,30,0.0 +24335,45,9.5,40,0.0 +24335,30,25.89,12,0.0 +24335,14,23.25,22,0.0 +24335,74,10,29,0.0 +24335,64,33.25,37,0.0 +24335,17,39,42,0.0 +24335,63,43.9,34,0.0 +24335,69,36,17,0.0 +24335,21,10,26,0.0 +24335,12,38,22,0.0 +24335,28,45.6,19,0.0 +24335,51,53,13,0.0 +24335,37,26,40,0.0 +24335,8,40,15,0.0 +24335,39,18,27,0.0 +24335,42,14,30,0.0 +24335,56,38,20,0.0 +24335,76,18,44,0.0 +24335,61,28.5,26,0.0 +24335,68,12.5,16,0.0 +24335,52,7,1,0.0 +24336,49,20,50,0.0 +24336,30,25.89,19,0.0 +24336,6,25,16,0.0 +24336,43,46,37,0.0 +24336,28,45.6,23,0.0 +24336,46,12,14,0.0 +24336,61,28.5,33,0.0 +24336,14,23.25,25,0.0 +24336,20,81,45,0.0 +24336,42,14,20,0.0 +24336,50,16.25,33,0.0 +24336,54,7.45,19,0.0 +24336,59,55,23,0.0 +24336,47,9.5,14,0.0 +24336,57,19.5,15,0.0 +24336,44,19.45,19,0.0 +24336,11,21,30,0.0 +24336,56,38,15,0.0 +24336,65,21.05,36,0.0 +24336,52,7,25,0.0 +24336,10,31,48,0.0 +24336,32,32,1,0.0 +24336,16,17.45,19,0.0 +24336,19,9.2,29,0.0 +24336,27,43.9,30,0.0 +24336,35,18,32,0.0 +24336,15,15.5,22,0.0 +24336,58,13.25,29,0.0 +24336,13,6,26,0.0 +24336,12,38,40,0.0 +24336,51,53,13,0.0 +24336,23,9,20,0.0 +24336,3,10,4,0.0 +24336,69,36,6,0.0 +24336,48,12.75,47,0.0 +24336,1,18,15,0.0 +24336,17,39,45,0.0 +24336,72,34.8,7,0.0 +24336,18,62.5,44,0.0 +24336,38,263.5,32,0.0 +24337,32,32,5,0.0 +24337,18,62.5,36,0.0 +24337,12,38,25,0.0 +24337,55,24,28,0.0 +24337,53,32.8,37,0.0 +24337,3,10,42,0.0 +24337,48,12.75,33,0.0 +24337,73,15,22,0.0 +24337,17,39,17,0.0 +24337,24,4.5,26,0.0 +24337,8,40,48,0.0 +24337,31,12.5,37,0.0 +24337,46,12,23,0.0 +24337,40,18.4,5,0.0 +24337,71,21.5,40,0.0 +24337,36,19,50,0.0 +24337,77,13,31,0.0 +24337,49,20,20,0.0 +24337,26,31.23,6,0.0 +24337,68,12.5,37,0.0 +24337,64,33.25,41,0.0 +24337,47,9.5,21,0.0 +24337,72,34.8,36,0.0 +24337,25,14,35,0.0 +24337,6,25,31,0.0 +24337,4,22,49,0.0 +24337,33,2.5,15,0.0 +24337,13,6,5,0.0 +24337,62,49.3,22,0.0 +24337,28,45.6,23,0.0 +24337,44,19.45,10,0.0 +24337,65,21.05,10,0.0 +24337,58,13.25,38,0.0 +24337,35,18,3,0.0 +24337,20,81,30,0.0 +24337,2,19,49,0.0 +24337,54,7.45,3,0.0 +24337,7,30,36,0.0 +24337,39,18,35,0.0 +24337,22,21,34,0.0 +24337,19,9.2,19,0.0 +24337,63,43.9,46,0.0 +24337,14,23.25,19,0.0 +24337,50,16.25,30,0.0 +24337,70,15,34,0.0 +24337,59,55,50,0.0 +24337,42,14,14,0.0 +24337,5,21.35,30,0.0 +24337,43,46,39,0.0 +24337,37,26,36,0.0 +24337,69,36,20,0.0 +24337,11,21,14,0.0 +24337,56,38,7,0.0 +24337,34,14,34,0.0 +24337,27,43.9,28,0.0 +24337,16,17.45,16,0.0 +24337,52,7,50,0.0 +24337,21,10,49,0.0 +24337,38,263.5,36,0.0 +24337,67,14,17,0.0 +24337,23,9,11,0.0 +24337,75,7.75,17,0.0 +24337,45,9.5,24,0.0 +24337,74,10,36,0.0 +24338,2,19,41,0.0 +24338,31,12.5,40,0.0 +24338,10,31,11,0.0 +24338,4,22,4,0.0 +24338,75,7.75,22,0.0 +24338,67,14,29,0.0 +24338,57,19.5,16,0.0 +24338,59,55,22,0.0 +24338,32,32,13,0.0 +24338,29,123.79,27,0.0 +24338,25,14,46,0.0 +24338,49,20,33,0.0 +24338,40,18.4,18,0.0 +24338,55,24,3,0.0 +24338,14,23.25,42,0.0 +24338,53,32.8,45,0.0 +24338,47,9.5,11,0.0 +24338,9,97,3,0.0 +24338,20,81,15,0.0 +24338,22,21,49,0.0 +24338,36,19,38,0.0 +24338,38,263.5,43,0.0 +24338,26,31.23,27,0.0 +24338,70,15,18,0.0 +24338,77,13,22,0.0 +24338,12,38,26,0.0 +24338,41,9.65,42,0.0 +24338,62,49.3,22,0.0 +24338,64,33.25,37,0.0 +24338,63,43.9,43,0.0 +24338,60,34,36,0.0 +24338,11,21,34,0.0 +24338,19,9.2,3,0.0 +24338,42,14,10,0.0 +24338,74,10,30,0.0 +24338,39,18,28,0.0 +24338,13,6,17,0.0 +24338,28,45.6,27,0.0 +24338,34,14,2,0.0 +24338,45,9.5,13,0.0 +24338,54,7.45,12,0.0 +24338,37,26,47,0.0 +24338,18,62.5,36,0.0 +24338,69,36,50,0.0 +24338,56,38,11,0.0 +24338,43,46,6,0.0 +24338,3,10,4,0.0 +24338,33,2.5,33,0.0 +24338,6,25,15,0.0 +24338,5,21.35,30,0.0 +24338,16,17.45,29,0.0 +24338,61,28.5,24,0.0 +24338,15,15.5,7,0.0 +24338,46,12,14,0.0 +24338,44,19.45,29,0.0 +24338,21,10,11,0.0 +24338,52,7,22,0.0 +24338,27,43.9,18,0.0 +24338,51,53,45,0.0 +24338,50,16.25,6,0.0 +24338,8,40,26,0.0 +24338,35,18,44,0.0 +24338,48,12.75,34,0.0 +24338,1,18,37,0.0 +24338,72,34.8,22,0.0 +24338,66,17,26,0.0 +24338,58,13.25,33,0.0 +24338,30,25.89,49,0.0 +24338,17,39,44,0.0 +24338,76,18,5,0.0 +24338,7,30,14,0.0 +24339,8,40,29,0.0 +24339,25,14,3,0.0 +24339,38,263.5,48,0.0 +24339,9,97,27,0.0 +24339,13,6,15,0.0 +24339,42,14,47,0.0 +24339,69,36,30,0.0 +24339,3,10,25,0.0 +24339,14,23.25,38,0.0 +24339,35,18,36,0.0 +24340,56,38,35,0.0 +24340,14,23.25,14,0.0 +24340,64,33.25,21,0.0 +24340,35,18,38,0.0 +24340,43,46,45,0.0 +24340,30,25.89,27,0.0 +24340,69,36,41,0.0 +24340,34,14,27,0.0 +24340,6,25,17,0.0 +24340,66,17,28,0.0 +24340,45,9.5,16,0.0 +24340,11,21,7,0.0 +24340,77,13,11,0.0 +24340,19,9.2,18,0.0 +24340,24,4.5,28,0.0 +24340,51,53,32,0.0 +24340,1,18,32,0.0 +24340,65,21.05,16,0.0 +24340,12,38,19,0.0 +24340,50,16.25,47,0.0 +24340,13,6,10,0.0 +24340,58,13.25,18,0.0 +24340,61,28.5,4,0.0 +24340,60,34,1,0.0 +24340,67,14,36,0.0 +24340,72,34.8,20,0.0 +24340,2,19,18,0.0 +24340,41,9.65,46,0.0 +24340,29,123.79,18,0.0 +24340,57,19.5,44,0.0 +24340,71,21.5,49,0.0 +24340,7,30,49,0.0 +24340,3,10,43,0.0 +24340,55,24,31,0.0 +24340,20,81,15,0.0 +24340,33,2.5,29,0.0 +24340,36,19,5,0.0 +24340,39,18,44,0.0 +24340,47,9.5,27,0.0 +24340,15,15.5,4,0.0 +24340,26,31.23,16,0.0 +24340,10,31,19,0.0 +24340,40,18.4,45,0.0 +24340,18,62.5,48,0.0 +24340,59,55,4,0.0 +24340,21,10,15,0.0 +24340,4,22,18,0.0 +24340,44,19.45,18,0.0 +24340,28,45.6,6,0.0 +24340,23,9,11,0.0 +24340,27,43.9,8,0.0 +24340,73,15,16,0.0 +24340,9,97,29,0.0 +24340,46,12,19,0.0 +24340,74,10,31,0.0 +24340,31,12.5,31,0.0 +24340,53,32.8,50,0.0 +24340,22,21,40,0.0 +24340,5,21.35,17,0.0 +24340,68,12.5,21,0.0 +24340,48,12.75,9,0.0 +24340,42,14,44,0.0 +24340,32,32,32,0.0 +24340,70,15,5,0.0 +24340,38,263.5,37,0.0 +24340,75,7.75,31,0.0 +24340,62,49.3,10,0.0 +24340,52,7,23,0.0 +24340,8,40,4,0.0 +24340,49,20,3,0.0 +24340,17,39,37,0.0 +24341,13,6,18,0.0 +24341,38,263.5,38,0.0 +24341,45,9.5,49,0.0 +24341,14,23.25,13,0.0 +24341,42,14,2,0.0 +24341,41,9.65,36,0.0 +24341,67,14,5,0.0 +24341,15,15.5,7,0.0 +24341,63,43.9,12,0.0 +24341,46,12,17,0.0 +24341,66,17,12,0.0 +24341,25,14,49,0.0 +24341,3,10,6,0.0 +24341,26,31.23,17,0.0 +24341,57,19.5,43,0.0 +24341,10,31,18,0.0 +24341,64,33.25,29,0.0 +24341,68,12.5,4,0.0 +24341,73,15,14,0.0 +24341,58,13.25,26,0.0 +24341,6,25,12,0.0 +24341,49,20,43,0.0 +24341,74,10,2,0.0 +24341,12,38,40,0.0 +24341,44,19.45,47,0.0 +24341,31,12.5,44,0.0 +24341,48,12.75,5,0.0 +24341,71,21.5,4,0.0 +24341,4,22,6,0.0 +24341,1,18,31,0.0 +24341,40,18.4,40,0.0 +24341,16,17.45,48,0.0 +24341,43,46,20,0.0 +24341,56,38,3,0.0 +24341,69,36,43,0.0 +24341,28,45.6,45,0.0 +24341,8,40,40,0.0 +24341,77,13,12,0.0 +24341,39,18,17,0.0 +24341,18,62.5,31,0.0 +24341,24,4.5,28,0.0 +24341,19,9.2,38,0.0 +24341,32,32,26,0.0 +24341,54,7.45,34,0.0 +24342,7,30,13,0.0 +24342,53,32.8,41,0.0 +24342,22,21,30,0.0 +24342,21,10,8,0.0 +24342,34,14,3,0.0 +24342,17,39,17,0.0 +24342,65,21.05,37,0.0 +24342,74,10,5,0.0 +24342,13,6,45,0.0 +24342,12,38,39,0.0 +24342,6,25,16,0.0 +24342,51,53,35,0.0 +24342,49,20,46,0.0 +24342,73,15,38,0.0 +24342,37,26,10,0.0 +24342,77,13,20,0.0 +24342,24,4.5,19,0.0 +24342,38,263.5,14,0.0 +24342,52,7,42,0.0 +24342,18,62.5,48,0.0 +24342,57,19.5,34,0.0 +24342,23,9,22,0.0 +24343,48,12.75,26,0.0 +24343,26,31.23,12,0.0 +24343,66,17,35,0.0 +24343,57,19.5,31,0.0 +24343,22,21,39,0.0 +24343,35,18,19,0.0 +24343,52,7,30,0.0 +24343,51,53,39,0.0 +24343,39,18,40,0.0 +24343,43,46,1,0.0 +24343,2,19,44,0.0 +24343,11,21,27,0.0 +24343,72,34.8,25,0.0 +24343,13,6,17,0.0 +24343,44,19.45,50,0.0 +24343,45,9.5,40,0.0 +24343,18,62.5,44,0.0 +24343,36,19,50,0.0 +24343,38,263.5,14,0.0 +24343,7,30,37,0.0 +24343,25,14,8,0.0 +24343,60,34,36,0.0 +24343,75,7.75,16,0.0 +24343,42,14,18,0.0 +24343,46,12,12,0.0 +24344,8,40,3,0.0 +24344,61,28.5,3,0.0 +24344,23,9,6,0.0 +24345,9,97,50,0.0 +24345,18,62.5,29,0.0 +24345,53,32.8,1,0.0 +24345,41,9.65,35,0.0 +24345,48,12.75,9,0.0 +24345,13,6,24,0.0 +24345,31,12.5,27,0.0 +24345,75,7.75,27,0.0 +24345,29,123.79,48,0.0 +24345,4,22,15,0.0 +24345,61,28.5,27,0.0 +24345,16,17.45,10,0.0 +24345,39,18,2,0.0 +24345,11,21,8,0.0 +24345,45,9.5,37,0.0 +24345,3,10,19,0.0 +24345,51,53,46,0.0 +24345,28,45.6,38,0.0 +24345,32,32,19,0.0 +24345,43,46,10,0.0 +24345,72,34.8,41,0.0 +24345,20,81,3,0.0 +24345,73,15,13,0.0 +24345,14,23.25,15,0.0 +24345,38,263.5,40,0.0 +24345,2,19,11,0.0 +24345,1,18,10,0.0 +24345,59,55,37,0.0 +24345,64,33.25,35,0.0 +24345,52,7,43,0.0 +24345,47,9.5,43,0.0 +24345,56,38,8,0.0 +24345,26,31.23,15,0.0 +24345,67,14,48,0.0 +24345,44,19.45,28,0.0 +24345,50,16.25,5,0.0 +24345,15,15.5,23,0.0 +24345,10,31,34,0.0 +24345,6,25,16,0.0 +24345,74,10,11,0.0 +24346,24,4.5,44,0.0 +24346,12,38,18,0.0 +24346,16,17.45,50,0.0 +24346,57,19.5,29,0.0 +24346,36,19,28,0.0 +24346,70,15,15,0.0 +24346,51,53,40,0.0 +24346,3,10,33,0.0 +24346,6,25,5,0.0 +24346,5,21.35,21,0.0 +24346,61,28.5,30,0.0 +24346,7,30,50,0.0 +24346,30,25.89,36,0.0 +24346,14,23.25,16,0.0 +24346,77,13,50,0.0 +24346,44,19.45,32,0.0 +24346,19,9.2,38,0.0 +24346,39,18,49,0.0 +24346,11,21,50,0.0 +24346,75,7.75,27,0.0 +24346,62,49.3,8,0.0 +24346,76,18,10,0.0 +24346,56,38,49,0.0 +24346,26,31.23,1,0.0 +24346,4,22,42,0.0 +24346,49,20,29,0.0 +24346,52,7,31,0.0 +24346,8,40,27,0.0 +24346,31,12.5,38,0.0 +24346,34,14,27,0.0 +24346,53,32.8,25,0.0 +24346,43,46,49,0.0 +24346,47,9.5,10,0.0 +24346,9,97,19,0.0 +24346,64,33.25,15,0.0 +24346,60,34,12,0.0 +24346,69,36,34,0.0 +24346,15,15.5,25,0.0 +24346,58,13.25,30,0.0 +24346,22,21,7,0.0 +24346,40,18.4,27,0.0 +24346,17,39,29,0.0 +24346,1,18,21,0.0 +24346,27,43.9,47,0.0 +24347,44,19.45,29,0.0 +24347,64,33.25,34,0.0 +24347,31,12.5,22,0.0 +24347,71,21.5,49,0.0 +24347,27,43.9,48,0.0 +24347,59,55,28,0.0 +24347,25,14,40,0.0 +24347,65,21.05,16,0.0 +24347,68,12.5,42,0.0 +24347,56,38,18,0.0 +24347,13,6,39,0.0 +24347,70,15,46,0.0 +24347,29,123.79,43,0.0 +24347,16,17.45,12,0.0 +24347,40,18.4,42,0.0 +24347,5,21.35,39,0.0 +24347,45,9.5,26,0.0 +24347,51,53,21,0.0 +24347,30,25.89,12,0.0 +24347,21,10,7,0.0 +24347,49,20,1,0.0 +24347,52,7,26,0.0 +24347,36,19,49,0.0 +24347,4,22,16,0.0 +24347,58,13.25,13,0.0 +24347,6,25,44,0.0 +24347,15,15.5,49,0.0 +24347,38,263.5,35,0.0 +24347,50,16.25,13,0.0 +24347,48,12.75,35,0.0 +24347,22,21,16,0.0 +24347,61,28.5,45,0.0 +24347,77,13,4,0.0 +24347,20,81,46,0.0 +24347,66,17,5,0.0 +24347,42,14,3,0.0 +24347,37,26,20,0.0 +24348,24,4.5,22,0.0 +24348,27,43.9,45,0.0 +24348,50,16.25,46,0.0 +24348,19,9.2,23,0.0 +24348,67,14,28,0.0 +24348,2,19,6,0.0 +24348,54,7.45,48,0.0 +24348,77,13,20,0.0 +24348,70,15,5,0.0 +24348,73,15,27,0.0 +24348,12,38,5,0.0 +24348,59,55,19,0.0 +24348,26,31.23,17,0.0 +24348,75,7.75,50,0.0 +24348,6,25,41,0.0 +24348,43,46,10,0.0 +24348,46,12,7,0.0 +24348,64,33.25,19,0.0 +24348,45,9.5,31,0.0 +24348,68,12.5,37,0.0 +24348,34,14,43,0.0 +24348,60,34,18,0.0 +24348,42,14,9,0.0 +24348,15,15.5,28,0.0 +24348,41,9.65,47,0.0 +24348,55,24,38,0.0 +24348,28,45.6,50,0.0 +24348,72,34.8,16,0.0 +24348,62,49.3,25,0.0 +24348,38,263.5,50,0.0 +24348,29,123.79,29,0.0 +24348,14,23.25,15,0.0 +24348,57,19.5,4,0.0 +24348,44,19.45,13,0.0 +24348,4,22,33,0.0 +24348,22,21,28,0.0 +24348,71,21.5,12,0.0 +24348,66,17,15,0.0 +24348,53,32.8,50,0.0 +24348,40,18.4,28,0.0 +24348,63,43.9,38,0.0 +24348,36,19,9,0.0 +24348,23,9,38,0.0 +24348,61,28.5,31,0.0 +24348,11,21,19,0.0 +24348,74,10,10,0.0 +24348,17,39,24,0.0 +24348,39,18,28,0.0 +24348,13,6,36,0.0 +24348,76,18,22,0.0 +24348,10,31,39,0.0 +24348,56,38,38,0.0 +24348,20,81,20,0.0 +24348,49,20,28,0.0 +24348,37,26,49,0.0 +24348,51,53,11,0.0 +24348,69,36,43,0.0 +24348,33,2.5,20,0.0 +24348,48,12.75,49,0.0 +24348,9,97,27,0.0 +24348,35,18,21,0.0 +24348,5,21.35,44,0.0 +24348,65,21.05,12,0.0 +24348,52,7,44,0.0 +24348,8,40,11,0.0 +24348,16,17.45,3,0.0 +24348,58,13.25,34,0.0 +24349,24,4.5,39,0.0 +24349,5,21.35,14,0.0 +24349,40,18.4,13,0.0 +24349,35,18,33,0.0 +24349,12,38,44,0.0 +24349,77,13,8,0.0 +24349,31,12.5,11,0.0 +24349,6,25,47,0.0 +24349,46,12,13,0.0 +24349,51,53,17,0.0 +24349,45,9.5,28,0.0 +24349,37,26,29,0.0 +24349,21,10,39,0.0 +24349,39,18,20,0.0 +24349,36,19,9,0.0 +24349,55,24,6,0.0 +24349,73,15,48,0.0 +24349,48,12.75,13,0.0 +24349,57,19.5,3,0.0 +24349,59,55,22,0.0 +24349,56,38,4,0.0 +24349,65,21.05,24,0.0 +24349,29,123.79,17,0.0 +24349,27,43.9,30,0.0 +24349,50,16.25,42,0.0 +24349,9,97,50,0.0 +24349,72,34.8,40,0.0 +24349,47,9.5,31,0.0 +24349,43,46,9,0.0 +24349,2,19,33,0.0 +24349,7,30,14,0.0 +24349,11,21,33,0.0 +24349,32,32,24,0.0 +24349,58,13.25,1,0.0 +24349,17,39,35,0.0 +24349,54,7.45,27,0.0 +24349,64,33.25,43,0.0 +24349,19,9.2,29,0.0 +24349,70,15,40,0.0 +24349,42,14,31,0.0 +24349,74,10,42,0.0 +24350,28,45.6,12,0.0 +24350,53,32.8,3,0.0 +24350,44,19.45,30,0.0 +24350,13,6,3,0.0 +24350,41,9.65,14,0.0 +24350,54,7.45,10,0.0 +24350,37,26,30,0.0 +24350,72,34.8,2,0.0 +24350,60,34,30,0.0 +24350,15,15.5,31,0.0 +24350,7,30,9,0.0 +24350,2,19,13,0.0 +24350,19,9.2,40,0.0 +24350,6,25,37,0.0 +24350,21,10,5,0.0 +24350,38,263.5,47,0.0 +24350,74,10,36,0.0 +24350,55,24,6,0.0 +24350,67,14,14,0.0 +24350,9,97,2,0.0 +24350,39,18,12,0.0 +24350,43,46,40,0.0 +24350,75,7.75,39,0.0 +24350,70,15,42,0.0 +24350,46,12,6,0.0 +24350,30,25.89,49,0.0 +24350,68,12.5,39,0.0 +24350,58,13.25,3,0.0 +24350,77,13,7,0.0 +24350,24,4.5,34,0.0 +24350,69,36,9,0.0 +24351,41,9.65,47,0.0 +24351,19,9.2,13,0.0 +24351,75,7.75,39,0.0 +24351,36,19,13,0.0 +24351,15,15.5,23,0.0 +24351,64,33.25,8,0.0 +24351,6,25,20,0.0 +24351,57,19.5,35,0.0 +24351,63,43.9,43,0.0 +24351,77,13,11,0.0 +24351,10,31,44,0.0 +24351,23,9,5,0.0 +24351,25,14,29,0.0 +24351,37,26,3,0.0 +24351,24,4.5,48,0.0 +24351,73,15,5,0.0 +24351,54,7.45,13,0.0 +24351,48,12.75,39,0.0 +24351,68,12.5,43,0.0 +24351,27,43.9,25,0.0 +24351,76,18,5,0.0 +24351,1,18,49,0.0 +24351,58,13.25,27,0.0 +24351,26,31.23,18,0.0 +24351,30,25.89,2,0.0 +24351,55,24,18,0.0 +24351,32,32,27,0.0 +24351,33,2.5,44,0.0 +24351,59,55,27,0.0 +24351,72,34.8,48,0.0 +24351,29,123.79,35,0.0 +24352,65,21.05,27,0.0 +24352,8,40,2,0.0 +24352,54,7.45,35,0.0 +24352,35,18,36,0.0 +24352,42,14,31,0.0 +24352,28,45.6,6,0.0 +24352,47,9.5,48,0.0 +24352,15,15.5,47,0.0 +24352,68,12.5,26,0.0 +24352,49,20,9,0.0 +24352,55,24,4,0.0 +24352,62,49.3,19,0.0 +24352,14,23.25,37,0.0 +24352,13,6,16,0.0 +24352,51,53,31,0.0 +24353,75,7.75,27,0.0 +24353,29,123.79,48,0.0 +24353,37,26,40,0.0 +24353,11,21,27,0.0 +24353,20,81,13,0.0 +24353,33,2.5,10,0.0 +24353,57,19.5,22,0.0 +24353,49,20,34,0.0 +24353,68,12.5,13,0.0 +24353,41,9.65,7,0.0 +24353,51,53,27,0.0 +24353,6,25,23,0.0 +24353,8,40,25,0.0 +24353,63,43.9,16,0.0 +24353,61,28.5,40,0.0 +24353,1,18,33,0.0 +24353,43,46,9,0.0 +24353,26,31.23,8,0.0 +24353,24,4.5,14,0.0 +24353,50,16.25,45,0.0 +24353,40,18.4,28,0.0 +24353,58,13.25,47,0.0 +24353,65,21.05,26,0.0 +24353,38,263.5,10,0.0 +24354,68,12.5,14,0.0 +24354,62,49.3,2,0.0 +24354,4,22,6,0.0 +24354,67,14,43,0.0 +24354,42,14,48,0.0 +24354,50,16.25,27,0.0 +24354,3,10,33,0.0 +24354,72,34.8,3,0.0 +24354,25,14,16,0.0 +24354,15,15.5,43,0.0 +24354,56,38,40,0.0 +24354,55,24,39,0.0 +24354,53,32.8,37,0.0 +24355,61,28.5,14,0.0 +24355,36,19,19,0.0 +24355,21,10,33,0.0 +24355,58,13.25,9,0.0 +24355,50,16.25,27,0.0 +24355,11,21,35,0.0 +24355,73,15,20,0.0 +24355,17,39,40,0.0 +24355,57,19.5,6,0.0 +24355,47,9.5,20,0.0 +24355,65,21.05,42,0.0 +24355,13,6,7,0.0 +24355,24,4.5,15,0.0 +24355,51,53,17,0.0 +24355,75,7.75,36,0.0 +24355,44,19.45,17,0.0 +24355,28,45.6,40,0.0 +24355,3,10,26,0.0 +24355,19,9.2,28,0.0 +24355,10,31,44,0.0 +24355,18,62.5,26,0.0 +24355,29,123.79,28,0.0 +24355,30,25.89,40,0.0 +24355,12,38,49,0.0 +24355,23,9,48,0.0 +24356,12,38,22,0.0 +24356,73,15,16,0.0 +24356,34,14,23,0.0 +24356,35,18,28,0.0 +24356,37,26,14,0.0 +24356,21,10,21,0.0 +24356,61,28.5,26,0.0 +24356,15,15.5,26,0.0 +24356,18,62.5,44,0.0 +24356,59,55,13,0.0 +24356,66,17,19,0.0 +24356,64,33.25,25,0.0 +24356,47,9.5,38,0.0 +24356,5,21.35,11,0.0 +24356,77,13,19,0.0 +24356,41,9.65,8,0.0 +24356,36,19,11,0.0 +24356,2,19,23,0.0 +24356,7,30,38,0.0 +24356,68,12.5,11,0.0 +24356,56,38,31,0.0 +24356,75,7.75,22,0.0 +24356,57,19.5,42,0.0 +24356,69,36,31,0.0 +24356,33,2.5,28,0.0 +24356,49,20,16,0.0 +24356,19,9.2,16,0.0 +24356,65,21.05,8,0.0 +24356,67,14,17,0.0 +24356,42,14,14,0.0 +24356,55,24,11,0.0 +24356,27,43.9,15,0.0 +24356,10,31,8,0.0 +24356,45,9.5,27,0.0 +24356,1,18,43,0.0 +24356,26,31.23,41,0.0 +24356,29,123.79,48,0.0 +24356,11,21,14,0.0 +24356,31,12.5,42,0.0 +24356,13,6,23,0.0 +24356,32,32,16,0.0 +24356,28,45.6,24,0.0 +24356,4,22,49,0.0 +24356,54,7.45,12,0.0 +24356,17,39,50,0.0 +24356,74,10,12,0.0 +24356,48,12.75,36,0.0 +24356,70,15,49,0.0 +24356,39,18,48,0.0 +24356,3,10,7,0.0 +24356,71,21.5,41,0.0 +24356,30,25.89,14,0.0 +24356,24,4.5,5,0.0 +24356,44,19.45,10,0.0 +24356,6,25,6,0.0 +24356,9,97,45,0.0 +24356,51,53,12,0.0 +24356,16,17.45,48,0.0 +24356,60,34,39,0.0 +24356,76,18,44,0.0 +24356,8,40,32,0.0 +24356,25,14,19,0.0 +24356,22,21,16,0.0 +24356,52,7,23,0.0 +24356,63,43.9,46,0.0 +24356,14,23.25,1,0.0 +24356,23,9,5,0.0 +24356,72,34.8,26,0.0 +24357,9,97,21,0.0 +24357,15,15.5,3,0.0 +24357,41,9.65,32,0.0 +24357,19,9.2,1,0.0 +24357,44,19.45,47,0.0 +24357,43,46,9,0.0 +24357,11,21,26,0.0 +24357,30,25.89,20,0.0 +24357,35,18,44,0.0 +24357,60,34,21,0.0 +24357,3,10,45,0.0 +24357,36,19,24,0.0 +24357,2,19,46,0.0 +24357,68,12.5,48,0.0 +24357,23,9,44,0.0 +24357,72,34.8,44,0.0 +24357,51,53,34,0.0 +24357,73,15,1,0.0 +24357,61,28.5,18,0.0 +24357,8,40,17,0.0 +24357,63,43.9,49,0.0 +24357,32,32,20,0.0 +24357,21,10,11,0.0 +24357,69,36,6,0.0 +24357,37,26,9,0.0 +24357,66,17,11,0.0 +24357,50,16.25,8,0.0 +24357,13,6,1,0.0 +24357,47,9.5,3,0.0 +24357,77,13,34,0.0 +24357,62,49.3,6,0.0 +24357,27,43.9,42,0.0 +24357,55,24,24,0.0 +24358,69,36,46,0.0 +24358,54,7.45,18,0.0 +24358,27,43.9,1,0.0 +24358,62,49.3,50,0.0 +24358,39,18,25,0.0 +24358,50,16.25,41,0.0 +24358,70,15,30,0.0 +24358,24,4.5,20,0.0 +24358,53,32.8,6,0.0 +24358,77,13,15,0.0 +24358,42,14,11,0.0 +24358,61,28.5,37,0.0 +24358,56,38,50,0.0 +24358,32,32,14,0.0 +24358,17,39,44,0.0 +24358,52,7,6,0.0 +24358,23,9,23,0.0 +24358,31,12.5,27,0.0 +24359,44,19.45,50,0.0 +24359,1,18,11,0.0 +24359,68,12.5,1,0.0 +24359,4,22,19,0.0 +24359,42,14,46,0.0 +24360,14,23.25,46,0.0 +24360,19,9.2,1,0.0 +24360,46,12,17,0.0 +24360,5,21.35,24,0.0 +24360,43,46,37,0.0 +24360,4,22,27,0.0 +24360,18,62.5,36,0.0 +24360,69,36,16,0.0 +24360,59,55,23,0.0 +24360,63,43.9,14,0.0 +24360,49,20,41,0.0 +24360,71,21.5,21,0.0 +24360,36,19,40,0.0 +24360,29,123.79,30,0.0 +24360,45,9.5,50,0.0 +24360,21,10,39,0.0 +24360,13,6,45,0.0 +24360,68,12.5,21,0.0 +24360,16,17.45,4,0.0 +24360,58,13.25,9,0.0 +24360,54,7.45,22,0.0 +24360,76,18,17,0.0 +24360,75,7.75,28,0.0 +24360,33,2.5,1,0.0 +24360,20,81,27,0.0 +24360,55,24,48,0.0 +24360,74,10,26,0.0 +24360,66,17,48,0.0 +24360,1,18,18,0.0 +24360,38,263.5,13,0.0 +24360,72,34.8,40,0.0 +24360,65,21.05,39,0.0 +24360,77,13,38,0.0 +24360,25,14,43,0.0 +24360,53,32.8,19,0.0 +24360,11,21,46,0.0 +24360,31,12.5,28,0.0 +24360,61,28.5,25,0.0 +24360,32,32,38,0.0 +24360,22,21,35,0.0 +24361,67,14,18,0.0 +24361,39,18,41,0.0 +24361,8,40,47,0.0 +24361,71,21.5,12,0.0 +24361,20,81,30,0.0 +24361,29,123.79,38,0.0 +24361,57,19.5,5,0.0 +24361,16,17.45,50,0.0 +24361,37,26,39,0.0 +24361,30,25.89,7,0.0 +24361,3,10,42,0.0 +24361,52,7,7,0.0 +24361,24,4.5,49,0.0 +24361,15,15.5,49,0.0 +24361,31,12.5,26,0.0 +24361,64,33.25,25,0.0 +24361,22,21,36,0.0 +24361,76,18,43,0.0 +24361,4,22,9,0.0 +24361,35,18,10,0.0 +24361,21,10,4,0.0 +24361,74,10,23,0.0 +24361,14,23.25,41,0.0 +24361,5,21.35,34,0.0 +24361,58,13.25,16,0.0 +24361,44,19.45,10,0.0 +24361,62,49.3,39,0.0 +24361,59,55,42,0.0 +24361,10,31,25,0.0 +24361,13,6,29,0.0 +24361,45,9.5,49,0.0 +24361,48,12.75,8,0.0 +24361,72,34.8,35,0.0 +24361,53,32.8,28,0.0 +24361,75,7.75,16,0.0 +24361,60,34,1,0.0 +24361,50,16.25,3,0.0 +24361,33,2.5,7,0.0 +24361,23,9,18,0.0 +24361,69,36,41,0.0 +24361,42,14,49,0.0 +24361,43,46,13,0.0 +24361,6,25,37,0.0 +24361,70,15,25,0.0 +24361,7,30,6,0.0 +24361,25,14,24,0.0 +24361,32,32,47,0.0 +24361,27,43.9,1,0.0 +24361,66,17,33,0.0 +24361,63,43.9,16,0.0 +24361,55,24,41,0.0 +24361,9,97,22,0.0 +24361,36,19,19,0.0 +24361,18,62.5,2,0.0 +24362,6,25,24,0.0 +24362,75,7.75,29,0.0 +24362,55,24,16,0.0 +24362,52,7,1,0.0 +24362,22,21,20,0.0 +24362,61,28.5,31,0.0 +24362,41,9.65,23,0.0 +24362,15,15.5,14,0.0 +24362,20,81,2,0.0 +24362,63,43.9,35,0.0 +24362,77,13,17,0.0 +24362,69,36,30,0.0 +24362,67,14,9,0.0 +24362,3,10,19,0.0 +24362,59,55,32,0.0 +24362,9,97,2,0.0 +24363,52,7,44,0.0 +24363,64,33.25,2,0.0 +24363,8,40,18,0.0 +24363,20,81,19,0.0 +24363,35,18,24,0.0 +24363,36,19,38,0.0 +24363,29,123.79,8,0.0 +24363,45,9.5,15,0.0 +24363,46,12,15,0.0 +24363,24,4.5,20,0.0 +24363,74,10,30,0.0 +24363,11,21,47,0.0 +24363,40,18.4,12,0.0 +24363,51,53,47,0.0 +24363,38,263.5,10,0.0 +24363,25,14,31,0.0 +24363,47,9.5,50,0.0 +24363,18,62.5,8,0.0 +24363,65,21.05,23,0.0 +24363,77,13,42,0.0 +24363,10,31,41,0.0 +24363,34,14,1,0.0 +24363,49,20,36,0.0 +24363,42,14,30,0.0 +24363,50,16.25,26,0.0 +24363,71,21.5,1,0.0 +24363,22,21,32,0.0 +24363,15,15.5,47,0.0 +24363,76,18,32,0.0 +24363,14,23.25,34,0.0 +24363,17,39,30,0.0 +24363,21,10,40,0.0 +24363,23,9,44,0.0 +24363,7,30,1,0.0 +24363,32,32,14,0.0 +24363,5,21.35,47,0.0 +24363,4,22,14,0.0 +24363,41,9.65,17,0.0 +24363,26,31.23,21,0.0 +24363,30,25.89,9,0.0 +24363,3,10,10,0.0 +24364,11,21,50,0.0 +24364,68,12.5,25,0.0 +24364,1,18,23,0.0 +24364,47,9.5,36,0.0 +24364,20,81,12,0.0 +24364,10,31,34,0.0 +24364,7,30,29,0.0 +24364,8,40,9,0.0 +24364,38,263.5,33,0.0 +24364,56,38,19,0.0 +24364,37,26,15,0.0 +24364,32,32,22,0.0 +24364,58,13.25,39,0.0 +24364,44,19.45,46,0.0 +24364,16,17.45,33,0.0 +24364,45,9.5,50,0.0 +24364,3,10,41,0.0 +24364,48,12.75,8,0.0 +24364,49,20,17,0.0 +24364,53,32.8,9,0.0 +24364,31,12.5,34,0.0 +24364,50,16.25,50,0.0 +24364,5,21.35,38,0.0 +24364,18,62.5,12,0.0 +24364,63,43.9,33,0.0 +24365,24,4.5,11,0.0 +24365,75,7.75,14,0.0 +24365,72,34.8,31,0.0 +24365,18,62.5,22,0.0 +24365,58,13.25,25,0.0 +24365,52,7,19,0.0 +24365,37,26,3,0.0 +24365,10,31,44,0.0 +24365,8,40,6,0.0 +24365,13,6,26,0.0 +24365,25,14,31,0.0 +24365,59,55,32,0.0 +24365,71,21.5,1,0.0 +24365,47,9.5,26,0.0 +24365,64,33.25,43,0.0 +24365,70,15,39,0.0 +24365,38,263.5,16,0.0 +24365,20,81,45,0.0 +24365,34,14,15,0.0 +24365,66,17,7,0.0 +24365,74,10,15,0.0 +24365,68,12.5,8,0.0 +24365,12,38,42,0.0 +24365,76,18,37,0.0 +24365,61,28.5,17,0.0 +24365,51,53,11,0.0 +24365,35,18,28,0.0 +24365,7,30,24,0.0 +24365,69,36,30,0.0 +24365,3,10,19,0.0 +24365,4,22,5,0.0 +24365,23,9,7,0.0 +24365,14,23.25,15,0.0 +24365,31,12.5,3,0.0 +24365,36,19,31,0.0 +24365,41,9.65,27,0.0 +24365,2,19,31,0.0 +24365,49,20,36,0.0 +24365,29,123.79,23,0.0 +24365,27,43.9,21,0.0 +24365,45,9.5,18,0.0 +24365,30,25.89,44,0.0 +24366,69,36,10,0.0 +24366,28,45.6,43,0.0 +24366,22,21,25,0.0 +24366,15,15.5,32,0.0 +24366,54,7.45,50,0.0 +24366,18,62.5,17,0.0 +24366,59,55,11,0.0 +24366,40,18.4,24,0.0 +24367,46,12,18,0.0 +24367,73,15,19,0.0 +24367,20,81,21,0.0 +24367,53,32.8,1,0.0 +24367,3,10,3,0.0 +24367,25,14,23,0.0 +24367,75,7.75,48,0.0 +24367,7,30,39,0.0 +24367,47,9.5,14,0.0 +24367,31,12.5,47,0.0 +24367,32,32,42,0.0 +24367,8,40,44,0.0 +24367,4,22,44,0.0 +24367,23,9,18,0.0 +24367,50,16.25,42,0.0 +24367,52,7,29,0.0 +24367,35,18,11,0.0 +24367,69,36,16,0.0 +24367,72,34.8,13,0.0 +24367,18,62.5,7,0.0 +24367,63,43.9,10,0.0 +24367,40,18.4,33,0.0 +24367,5,21.35,29,0.0 +24367,42,14,20,0.0 +24367,22,21,42,0.0 +24367,1,18,22,0.0 +24367,10,31,42,0.0 +24367,39,18,39,0.0 +24367,49,20,12,0.0 +24367,17,39,30,0.0 +24367,45,9.5,38,0.0 +24367,33,2.5,22,0.0 +24367,36,19,41,0.0 +24367,28,45.6,20,0.0 +24367,30,25.89,31,0.0 +24367,13,6,41,0.0 +24367,68,12.5,37,0.0 +24367,12,38,47,0.0 +24367,48,12.75,28,0.0 +24367,62,49.3,29,0.0 +24367,43,46,11,0.0 +24367,58,13.25,37,0.0 +24367,37,26,35,0.0 +24367,51,53,8,0.0 +24367,60,34,17,0.0 +24367,57,19.5,15,0.0 +24367,77,13,10,0.0 +24367,41,9.65,8,0.0 +24367,6,25,32,0.0 +24367,9,97,25,0.0 +24367,65,21.05,40,0.0 +24367,14,23.25,37,0.0 +24367,54,7.45,10,0.0 +24367,71,21.5,33,0.0 +24367,76,18,1,0.0 +24367,34,14,4,0.0 +24367,74,10,45,0.0 +24367,21,10,43,0.0 +24367,2,19,25,0.0 +24367,59,55,42,0.0 +24367,29,123.79,50,0.0 +24367,19,9.2,47,0.0 +24367,61,28.5,36,0.0 +24367,24,4.5,29,0.0 +24367,16,17.45,14,0.0 +24367,26,31.23,34,0.0 +24368,24,4.5,5,0.0 +24368,67,14,29,0.0 +24368,39,18,24,0.0 +24368,18,62.5,35,0.0 +24368,26,31.23,42,0.0 +24368,71,21.5,4,0.0 +24368,72,34.8,38,0.0 +24368,73,15,18,0.0 +24368,69,36,1,0.0 +24368,70,15,20,0.0 +24368,21,10,25,0.0 +24368,23,9,9,0.0 +24368,4,22,12,0.0 +24368,35,18,22,0.0 +24368,58,13.25,12,0.0 +24368,56,38,38,0.0 +24368,63,43.9,26,0.0 +24368,68,12.5,41,0.0 +24368,22,21,32,0.0 +24368,45,9.5,38,0.0 +24368,44,19.45,38,0.0 +24368,1,18,15,0.0 +24368,52,7,43,0.0 +24368,47,9.5,17,0.0 +24368,46,12,22,0.0 +24368,43,46,21,0.0 +24368,11,21,28,0.0 +24368,10,31,10,0.0 +24368,6,25,31,0.0 +24368,9,97,28,0.0 +24368,57,19.5,25,0.0 +24368,36,19,4,0.0 +24368,37,26,26,0.0 +24368,54,7.45,21,0.0 +24368,55,24,4,0.0 +24368,12,38,33,0.0 +24368,31,12.5,10,0.0 +24368,34,14,12,0.0 +24368,15,15.5,30,0.0 +24368,49,20,7,0.0 +24368,27,43.9,28,0.0 +24368,42,14,16,0.0 +24368,3,10,27,0.0 +24368,32,32,30,0.0 +24368,17,39,11,0.0 +24368,38,263.5,50,0.0 +24368,8,40,44,0.0 +24368,60,34,29,0.0 +24368,16,17.45,25,0.0 +24368,50,16.25,34,0.0 +24369,58,13.25,22,0.0 +24369,2,19,12,0.0 +24369,36,19,43,0.0 +24369,11,21,5,0.0 +24369,69,36,33,0.0 +24369,41,9.65,34,0.0 +24369,14,23.25,3,0.0 +24369,13,6,34,0.0 +24369,70,15,8,0.0 +24369,43,46,7,0.0 +24369,65,21.05,6,0.0 +24369,1,18,43,0.0 +24369,73,15,30,0.0 +24369,20,81,35,0.0 +24369,54,7.45,21,0.0 +24369,10,31,47,0.0 +24369,48,12.75,23,0.0 +24369,29,123.79,12,0.0 +24369,35,18,28,0.0 +24369,4,22,40,0.0 +24369,71,21.5,25,0.0 +24369,31,12.5,46,0.0 +24369,18,62.5,36,0.0 +24369,23,9,25,0.0 +24369,44,19.45,33,0.0 +24369,8,40,28,0.0 +24369,16,17.45,35,0.0 +24369,50,16.25,42,0.0 +24369,49,20,23,0.0 +24369,21,10,29,0.0 +24369,37,26,18,0.0 +24369,62,49.3,34,0.0 +24369,15,15.5,19,0.0 +24369,30,25.89,19,0.0 +24369,45,9.5,4,0.0 +24369,47,9.5,38,0.0 +24369,39,18,5,0.0 +24369,9,97,32,0.0 +24369,3,10,19,0.0 +24369,55,24,26,0.0 +24369,60,34,45,0.0 +24369,77,13,46,0.0 +24369,26,31.23,2,0.0 +24369,19,9.2,5,0.0 +24369,27,43.9,34,0.0 +24369,12,38,21,0.0 +24369,72,34.8,3,0.0 +24369,28,45.6,36,0.0 +24370,11,21,14,0.0 +24370,39,18,40,0.0 +24370,1,18,42,0.0 +24370,36,19,30,0.0 +24370,50,16.25,1,0.0 +24370,17,39,25,0.0 +24370,6,25,50,0.0 +24370,75,7.75,10,0.0 +24370,73,15,44,0.0 +24370,34,14,2,0.0 +24370,42,14,19,0.0 +24370,66,17,14,0.0 +24370,5,21.35,28,0.0 +24370,13,6,9,0.0 +24370,45,9.5,45,0.0 +24370,72,34.8,2,0.0 +24370,27,43.9,13,0.0 +24370,47,9.5,2,0.0 +24371,29,123.79,14,0.0 +24371,55,24,42,0.0 +24371,47,9.5,12,0.0 +24371,28,45.6,41,0.0 +24371,51,53,24,0.0 +24371,42,14,38,0.0 +24371,6,25,28,0.0 +24371,23,9,9,0.0 +24371,41,9.65,32,0.0 +24371,19,9.2,20,0.0 +24371,71,21.5,33,0.0 +24371,24,4.5,48,0.0 +24371,50,16.25,33,0.0 +24371,58,13.25,14,0.0 +24371,15,15.5,38,0.0 +24371,72,34.8,34,0.0 +24371,39,18,34,0.0 +24371,38,263.5,37,0.0 +24371,22,21,23,0.0 +24371,61,28.5,44,0.0 +24371,59,55,32,0.0 +24371,21,10,47,0.0 +24371,31,12.5,10,0.0 +24371,73,15,27,0.0 +24371,48,12.75,3,0.0 +24371,16,17.45,28,0.0 +24371,77,13,24,0.0 +24371,56,38,37,0.0 +24371,45,9.5,49,0.0 +24371,26,31.23,34,0.0 +24371,14,23.25,42,0.0 +24371,75,7.75,4,0.0 +24371,25,14,2,0.0 +24371,30,25.89,50,0.0 +24371,7,30,28,0.0 +24371,32,32,46,0.0 +24371,1,18,45,0.0 +24371,20,81,7,0.0 +24371,27,43.9,32,0.0 +24371,34,14,38,0.0 +24371,13,6,21,0.0 +24371,65,21.05,47,0.0 +24371,44,19.45,27,0.0 +24371,53,32.8,21,0.0 +24371,49,20,26,0.0 +24371,52,7,38,0.0 +24371,36,19,47,0.0 +24371,3,10,33,0.0 +24371,68,12.5,6,0.0 +24372,41,9.65,15,0.0 +24372,59,55,4,0.0 +24372,11,21,27,0.0 +24372,52,7,39,0.0 +24372,25,14,37,0.0 +24373,47,9.5,33,0.0 +24373,4,22,46,0.0 +24373,41,9.65,18,0.0 +24373,18,62.5,20,0.0 +24373,23,9,49,0.0 +24373,77,13,30,0.0 +24373,74,10,33,0.0 +24373,2,19,50,0.0 +24373,45,9.5,44,0.0 +24373,73,15,17,0.0 +24373,25,14,31,0.0 +24373,56,38,17,0.0 +24373,6,25,41,0.0 +24373,68,12.5,18,0.0 +24373,70,15,22,0.0 +24373,71,21.5,36,0.0 +24373,63,43.9,1,0.0 +24373,36,19,32,0.0 +24373,20,81,41,0.0 +24373,13,6,37,0.0 +24373,14,23.25,18,0.0 +24373,1,18,41,0.0 +24373,46,12,36,0.0 +24373,37,26,46,0.0 +24373,35,18,31,0.0 +24373,64,33.25,48,0.0 +24373,21,10,11,0.0 +24373,19,9.2,37,0.0 +24373,38,263.5,12,0.0 +24373,40,18.4,47,0.0 +24373,58,13.25,5,0.0 +24373,10,31,48,0.0 +24373,31,12.5,26,0.0 +24373,5,21.35,16,0.0 +24373,76,18,2,0.0 +24373,51,53,47,0.0 +24373,43,46,33,0.0 +24373,75,7.75,34,0.0 +24373,67,14,45,0.0 +24373,32,32,22,0.0 +24373,27,43.9,39,0.0 +24373,17,39,5,0.0 +24373,55,24,19,0.0 +24373,60,34,8,0.0 +24373,24,4.5,14,0.0 +24373,59,55,41,0.0 +24373,29,123.79,46,0.0 +24373,11,21,16,0.0 +24373,12,38,14,0.0 +24373,72,34.8,25,0.0 +24373,3,10,21,0.0 +24373,50,16.25,32,0.0 +24374,71,21.5,20,0.0 +24374,66,17,27,0.0 +24374,19,9.2,1,0.0 +24374,73,15,31,0.0 +24374,34,14,5,0.0 +24374,5,21.35,20,0.0 +24374,55,24,2,0.0 +24374,67,14,22,0.0 +24374,8,40,45,0.0 +24374,37,26,42,0.0 +24374,21,10,15,0.0 +24375,1,18,42,0.0 +24375,48,12.75,35,0.0 +24375,4,22,46,0.0 +24375,54,7.45,18,0.0 +24375,24,4.5,32,0.0 +24375,49,20,20,0.0 +24375,23,9,23,0.0 +24375,22,21,29,0.0 +24375,3,10,22,0.0 +24375,10,31,9,0.0 +24375,2,19,49,0.0 +24375,59,55,1,0.0 +24375,11,21,16,0.0 +24375,9,97,16,0.0 +24375,67,14,37,0.0 +24375,61,28.5,15,0.0 +24375,13,6,44,0.0 +24375,20,81,29,0.0 +24375,41,9.65,15,0.0 +24375,38,263.5,45,0.0 +24375,71,21.5,37,0.0 +24375,29,123.79,22,0.0 +24375,31,12.5,3,0.0 +24375,34,14,30,0.0 +24375,68,12.5,16,0.0 +24375,16,17.45,15,0.0 +24375,35,18,50,0.0 +24375,75,7.75,7,0.0 +24375,15,15.5,10,0.0 +24375,6,25,29,0.0 +24375,45,9.5,9,0.0 +24375,26,31.23,47,0.0 +24375,60,34,33,0.0 +24375,53,32.8,3,0.0 +24375,19,9.2,39,0.0 +24375,58,13.25,27,0.0 +24375,42,14,45,0.0 +24375,52,7,33,0.0 +24375,66,17,34,0.0 +24375,46,12,35,0.0 +24375,76,18,21,0.0 +24375,70,15,23,0.0 +24375,7,30,47,0.0 +24375,43,46,12,0.0 +24375,73,15,12,0.0 +24375,57,19.5,29,0.0 +24375,21,10,30,0.0 +24375,56,38,48,0.0 +24375,55,24,3,0.0 +24375,25,14,15,0.0 +24375,62,49.3,42,0.0 +24375,44,19.45,33,0.0 +24375,39,18,24,0.0 +24375,64,33.25,22,0.0 +24375,17,39,10,0.0 +24375,12,38,48,0.0 +24375,18,62.5,43,0.0 +24375,14,23.25,17,0.0 +24375,27,43.9,6,0.0 +24375,65,21.05,36,0.0 +24375,5,21.35,24,0.0 +24375,50,16.25,22,0.0 +24375,30,25.89,30,0.0 +24375,37,26,10,0.0 +24375,47,9.5,19,0.0 +24375,77,13,38,0.0 +24375,28,45.6,20,0.0 +24375,33,2.5,22,0.0 +24375,74,10,40,0.0 +24375,40,18.4,6,0.0 +24375,51,53,17,0.0 +24376,55,24,12,0.0 +24376,50,16.25,29,0.0 +24376,66,17,17,0.0 +24376,26,31.23,31,0.0 +24376,6,25,19,0.0 +24376,77,13,7,0.0 +24376,62,49.3,25,0.0 +24376,39,18,3,0.0 +24376,18,62.5,29,0.0 +24376,47,9.5,10,0.0 +24376,12,38,44,0.0 +24376,52,7,14,0.0 +24376,9,97,49,0.0 +24376,53,32.8,7,0.0 +24376,67,14,23,0.0 +24376,48,12.75,35,0.0 +24376,36,19,1,0.0 +24376,21,10,30,0.0 +24376,20,81,34,0.0 +24376,17,39,30,0.0 +24376,29,123.79,19,0.0 +24376,42,14,34,0.0 +24376,10,31,24,0.0 +24376,25,14,48,0.0 +24376,64,33.25,27,0.0 +24376,41,9.65,26,0.0 +24376,22,21,44,0.0 +24376,65,21.05,29,0.0 +24376,5,21.35,39,0.0 +24376,71,21.5,25,0.0 +24376,70,15,11,0.0 +24376,40,18.4,5,0.0 +24376,68,12.5,32,0.0 +24376,14,23.25,13,0.0 +24376,27,43.9,19,0.0 +24376,1,18,3,0.0 +24376,51,53,48,0.0 +24376,44,19.45,28,0.0 +24377,69,36,34,0.0 +24377,61,28.5,31,0.0 +24377,29,123.79,42,0.0 +24377,3,10,46,0.0 +24377,43,46,13,0.0 +24377,32,32,50,0.0 +24377,75,7.75,29,0.0 +24377,39,18,46,0.0 +24377,73,15,12,0.0 +24377,5,21.35,34,0.0 +24377,21,10,34,0.0 +24377,54,7.45,27,0.0 +24377,9,97,15,0.0 +24377,1,18,39,0.0 +24377,24,4.5,5,0.0 +24377,17,39,12,0.0 +24377,14,23.25,8,0.0 +24377,38,263.5,50,0.0 +24377,47,9.5,18,0.0 +24377,71,21.5,49,0.0 +24377,41,9.65,15,0.0 +24377,68,12.5,19,0.0 +24377,33,2.5,9,0.0 +24377,56,38,45,0.0 +24377,57,19.5,13,0.0 +24377,22,21,20,0.0 +24377,45,9.5,47,0.0 +24377,2,19,20,0.0 +24377,13,6,30,0.0 +24377,8,40,17,0.0 +24377,28,45.6,34,0.0 +24377,26,31.23,50,0.0 +24377,62,49.3,9,0.0 +24377,34,14,43,0.0 +24377,19,9.2,22,0.0 +24377,55,24,28,0.0 +24377,49,20,23,0.0 +24377,35,18,16,0.0 +24377,58,13.25,22,0.0 +24377,59,55,17,0.0 +24377,18,62.5,20,0.0 +24377,65,21.05,12,0.0 +24377,37,26,18,0.0 +24377,63,43.9,6,0.0 +24377,50,16.25,10,0.0 +24377,72,34.8,40,0.0 +24377,53,32.8,25,0.0 +24377,44,19.45,18,0.0 +24377,4,22,11,0.0 +24377,23,9,21,0.0 +24377,64,33.25,1,0.0 +24377,25,14,6,0.0 +24377,7,30,2,0.0 +24377,70,15,46,0.0 +24377,66,17,27,0.0 +24377,12,38,34,0.0 +24377,77,13,7,0.0 +24377,51,53,35,0.0 +24377,40,18.4,37,0.0 +24377,48,12.75,28,0.0 +24377,42,14,13,0.0 +24377,10,31,41,0.0 +24377,30,25.89,5,0.0 +24377,46,12,37,0.0 +24377,31,12.5,48,0.0 +24377,6,25,32,0.0 +24377,52,7,47,0.0 +24377,20,81,22,0.0 +24377,11,21,6,0.0 +24377,36,19,23,0.0 +24377,15,15.5,17,0.0 +24378,74,10,7,0.0 +24378,37,26,45,0.0 +24378,66,17,7,0.0 +24378,59,55,23,0.0 +24378,3,10,5,0.0 +24378,42,14,27,0.0 +24378,40,18.4,15,0.0 +24378,9,97,28,0.0 +24378,57,19.5,27,0.0 +24378,27,43.9,22,0.0 +24378,68,12.5,48,0.0 +24378,31,12.5,25,0.0 +24378,18,62.5,9,0.0 +24378,72,34.8,5,0.0 +24378,34,14,36,0.0 +24378,43,46,6,0.0 +24378,60,34,15,0.0 +24378,29,123.79,43,0.0 +24378,65,21.05,3,0.0 +24378,35,18,46,0.0 +24378,33,2.5,36,0.0 +24378,10,31,30,0.0 +24378,24,4.5,29,0.0 +24378,75,7.75,41,0.0 +24378,8,40,7,0.0 +24378,4,22,46,0.0 +24378,49,20,19,0.0 +24378,44,19.45,29,0.0 +24378,45,9.5,47,0.0 +24378,13,6,11,0.0 +24378,61,28.5,38,0.0 +24378,62,49.3,10,0.0 +24378,26,31.23,34,0.0 +24378,28,45.6,32,0.0 +24378,52,7,48,0.0 +24378,6,25,43,0.0 +24378,54,7.45,14,0.0 +24378,12,38,17,0.0 +24378,53,32.8,43,0.0 +24378,76,18,48,0.0 +24378,17,39,44,0.0 +24378,23,9,28,0.0 +24378,56,38,10,0.0 +24378,2,19,24,0.0 +24378,55,24,27,0.0 +24378,64,33.25,25,0.0 +24378,20,81,33,0.0 +24378,70,15,45,0.0 +24378,32,32,19,0.0 +24378,19,9.2,9,0.0 +24378,46,12,30,0.0 +24378,1,18,4,0.0 +24378,22,21,31,0.0 +24378,47,9.5,5,0.0 +24378,11,21,50,0.0 +24378,15,15.5,39,0.0 +24378,30,25.89,45,0.0 +24378,21,10,24,0.0 +24378,73,15,14,0.0 +24378,51,53,21,0.0 +24378,50,16.25,2,0.0 +24378,63,43.9,22,0.0 +24378,39,18,43,0.0 +24379,7,30,7,0.0 +24379,57,19.5,14,0.0 +24379,36,19,15,0.0 +24379,46,12,49,0.0 +24379,8,40,45,0.0 +24379,45,9.5,4,0.0 +24379,58,13.25,23,0.0 +24379,11,21,16,0.0 +24379,48,12.75,47,0.0 +24379,27,43.9,10,0.0 +24379,54,7.45,27,0.0 +24379,41,9.65,7,0.0 +24379,59,55,9,0.0 +24379,4,22,50,0.0 +24379,32,32,12,0.0 +24379,18,62.5,25,0.0 +24379,30,25.89,4,0.0 +24379,44,19.45,49,0.0 +24379,43,46,30,0.0 +24379,70,15,48,0.0 +24379,6,25,27,0.0 +24379,51,53,47,0.0 +24379,55,24,48,0.0 +24379,22,21,14,0.0 +24379,60,34,35,0.0 +24379,17,39,37,0.0 +24379,21,10,27,0.0 +24379,77,13,38,0.0 +24379,33,2.5,30,0.0 +24379,35,18,6,0.0 +24379,16,17.45,48,0.0 +24379,61,28.5,6,0.0 +24379,47,9.5,37,0.0 +24379,68,12.5,32,0.0 +24379,73,15,28,0.0 +24379,38,263.5,13,0.0 +24379,50,16.25,7,0.0 +24380,16,17.45,30,0.0 +24380,48,12.75,1,0.0 +24380,3,10,50,0.0 +24380,64,33.25,5,0.0 +24380,49,20,50,0.0 +24380,34,14,10,0.0 +24380,52,7,48,0.0 +24380,20,81,35,0.0 +24380,10,31,31,0.0 +24380,50,16.25,8,0.0 +24380,9,97,37,0.0 +24380,42,14,37,0.0 +24380,58,13.25,2,0.0 +24380,44,19.45,25,0.0 +24380,46,12,35,0.0 +24380,37,26,41,0.0 +24380,31,12.5,7,0.0 +24380,63,43.9,43,0.0 +24380,68,12.5,43,0.0 +24380,39,18,30,0.0 +24380,6,25,17,0.0 +24380,13,6,38,0.0 +24380,40,18.4,32,0.0 +24380,66,17,5,0.0 +24380,5,21.35,29,0.0 +24380,8,40,6,0.0 +24380,75,7.75,6,0.0 +24380,72,34.8,22,0.0 +24380,45,9.5,41,0.0 +24380,56,38,8,0.0 +24380,12,38,29,0.0 +24380,17,39,49,0.0 +24380,24,4.5,18,0.0 +24380,62,49.3,6,0.0 +24380,54,7.45,5,0.0 +24380,65,21.05,40,0.0 +24380,26,31.23,22,0.0 +24381,24,4.5,37,0.0 +24381,42,14,12,0.0 +24381,11,21,34,0.0 +24381,77,13,5,0.0 +24381,44,19.45,26,0.0 +24381,64,33.25,17,0.0 +24381,53,32.8,8,0.0 +24381,61,28.5,40,0.0 +24381,31,12.5,21,0.0 +24381,46,12,37,0.0 +24381,73,15,45,0.0 +24381,68,12.5,24,0.0 +24381,13,6,22,0.0 +24381,69,36,20,0.0 +24381,50,16.25,20,0.0 +24381,57,19.5,12,0.0 +24381,26,31.23,42,0.0 +24381,72,34.8,14,0.0 +24381,47,9.5,44,0.0 +24381,34,14,18,0.0 +24381,33,2.5,35,0.0 +24381,58,13.25,48,0.0 +24381,32,32,6,0.0 +24381,59,55,46,0.0 +24381,62,49.3,30,0.0 +24381,65,21.05,44,0.0 +24381,52,7,28,0.0 +24381,21,10,16,0.0 +24381,18,62.5,17,0.0 +24381,75,7.75,2,0.0 +24381,51,53,16,0.0 +24381,39,18,48,0.0 +24381,67,14,25,0.0 +24381,63,43.9,26,0.0 +24381,17,39,33,0.0 +24381,3,10,11,0.0 +24381,7,30,30,0.0 +24381,48,12.75,23,0.0 +24381,41,9.65,4,0.0 +24381,28,45.6,6,0.0 +24381,23,9,33,0.0 +24381,1,18,24,0.0 +24381,76,18,22,0.0 +24381,55,24,9,0.0 +24381,2,19,40,0.0 +24381,70,15,47,0.0 +24381,40,18.4,17,0.0 +24381,45,9.5,29,0.0 +24381,43,46,22,0.0 +24381,10,31,15,0.0 +24381,25,14,18,0.0 +24381,19,9.2,50,0.0 +24381,4,22,41,0.0 +24381,12,38,25,0.0 +24381,15,15.5,40,0.0 +24381,35,18,27,0.0 +24382,61,28.5,9,0.0 +24383,50,16.25,44,0.0 +24383,58,13.25,15,0.0 +24383,36,19,31,0.0 +24383,19,9.2,38,0.0 +24383,23,9,36,0.0 +24383,62,49.3,26,0.0 +24383,63,43.9,18,0.0 +24383,20,81,37,0.0 +24383,73,15,18,0.0 +24383,59,55,50,0.0 +24383,64,33.25,39,0.0 +24383,76,18,6,0.0 +24383,66,17,30,0.0 +24383,53,32.8,9,0.0 +24383,46,12,47,0.0 +24383,27,43.9,43,0.0 +24383,49,20,9,0.0 +24383,70,15,6,0.0 +24383,1,18,11,0.0 +24383,71,21.5,3,0.0 +24383,10,31,39,0.0 +24383,54,7.45,22,0.0 +24383,7,30,39,0.0 +24383,41,9.65,7,0.0 +24383,11,21,3,0.0 +24383,38,263.5,34,0.0 +24383,57,19.5,21,0.0 +24383,31,12.5,29,0.0 +24383,68,12.5,44,0.0 +24383,16,17.45,4,0.0 +24383,45,9.5,49,0.0 +24383,26,31.23,4,0.0 +24383,74,10,36,0.0 +24383,42,14,14,0.0 +24383,4,22,1,0.0 +24383,29,123.79,41,0.0 +24383,67,14,46,0.0 +24383,55,24,21,0.0 +24383,61,28.5,44,0.0 +24383,60,34,1,0.0 +24383,48,12.75,35,0.0 +24383,47,9.5,48,0.0 +24383,65,21.05,21,0.0 +24383,12,38,23,0.0 +24383,21,10,15,0.0 +24383,14,23.25,36,0.0 +24383,39,18,21,0.0 +24383,18,62.5,49,0.0 +24383,35,18,15,0.0 +24383,2,19,42,0.0 +24383,8,40,37,0.0 +24383,30,25.89,6,0.0 +24383,37,26,27,0.0 +24383,72,34.8,13,0.0 +24383,34,14,30,0.0 +24383,25,14,26,0.0 +24383,75,7.75,11,0.0 +24383,69,36,17,0.0 +24383,24,4.5,41,0.0 +24383,5,21.35,35,0.0 +24383,22,21,21,0.0 +24383,13,6,6,0.0 +24383,40,18.4,25,0.0 +24384,65,21.05,8,0.0 +24384,15,15.5,40,0.0 +24384,45,9.5,36,0.0 +24384,28,45.6,26,0.0 +24384,55,24,38,0.0 +24384,26,31.23,15,0.0 +24384,33,2.5,21,0.0 +24384,75,7.75,15,0.0 +24384,48,12.75,33,0.0 +24384,5,21.35,33,0.0 +24384,10,31,15,0.0 +24384,31,12.5,47,0.0 +24384,6,25,49,0.0 +24384,4,22,6,0.0 +24384,68,12.5,24,0.0 +24384,40,18.4,36,0.0 +24384,39,18,37,0.0 +24384,58,13.25,2,0.0 +24384,38,263.5,10,0.0 +24384,74,10,27,0.0 +24385,63,43.9,45,0.0 +24385,18,62.5,11,0.0 +24385,28,45.6,46,0.0 +24385,23,9,10,0.0 +24385,25,14,49,0.0 +24385,77,13,47,0.0 +24385,49,20,12,0.0 +24385,45,9.5,7,0.0 +24385,33,2.5,45,0.0 +24385,51,53,19,0.0 +24385,71,21.5,40,0.0 +24385,62,49.3,38,0.0 +24385,14,23.25,13,0.0 +24385,3,10,20,0.0 +24385,2,19,27,0.0 +24385,59,55,13,0.0 +24386,41,9.65,8,0.0 +24386,10,31,21,0.0 +24386,32,32,9,0.0 +24386,23,9,6,0.0 +24386,46,12,20,0.0 +24386,33,2.5,46,0.0 +24386,7,30,47,0.0 +24386,11,21,22,0.0 +24386,75,7.75,16,0.0 +24386,69,36,23,0.0 +24386,34,14,15,0.0 +24386,66,17,6,0.0 +24386,67,14,2,0.0 +24386,13,6,24,0.0 +24386,20,81,11,0.0 +24386,5,21.35,22,0.0 +24386,40,18.4,42,0.0 +24386,19,9.2,49,0.0 +24386,1,18,7,0.0 +24386,53,32.8,12,0.0 +24386,31,12.5,5,0.0 +24386,2,19,6,0.0 +24386,30,25.89,3,0.0 +24386,22,21,25,0.0 +24386,72,34.8,42,0.0 +24386,38,263.5,21,0.0 +24386,73,15,2,0.0 +24386,28,45.6,38,0.0 +24386,65,21.05,6,0.0 +24386,47,9.5,23,0.0 +24386,57,19.5,20,0.0 +24386,42,14,43,0.0 +24386,44,19.45,49,0.0 +24386,71,21.5,34,0.0 +24386,18,62.5,32,0.0 +24386,24,4.5,33,0.0 +24386,76,18,26,0.0 +24386,36,19,26,0.0 +24386,35,18,36,0.0 +24386,39,18,29,0.0 +24386,37,26,38,0.0 +24386,77,13,1,0.0 +24386,25,14,12,0.0 +24386,52,7,47,0.0 +24386,4,22,28,0.0 +24386,14,23.25,34,0.0 +24386,61,28.5,3,0.0 +24386,50,16.25,8,0.0 +24386,74,10,27,0.0 +24386,17,39,28,0.0 +24386,3,10,5,0.0 +24386,49,20,28,0.0 +24386,45,9.5,33,0.0 +24386,64,33.25,5,0.0 +24386,43,46,4,0.0 +24386,55,24,22,0.0 +24386,58,13.25,19,0.0 +24386,21,10,46,0.0 +24386,9,97,16,0.0 +24386,15,15.5,4,0.0 +24386,6,25,22,0.0 +24386,68,12.5,50,0.0 +24386,27,43.9,33,0.0 +24386,56,38,12,0.0 +24386,29,123.79,44,0.0 +24386,16,17.45,24,0.0 +24387,55,24,36,0.0 +24387,24,4.5,44,0.0 +24387,43,46,36,0.0 +24387,9,97,29,0.0 +24387,60,34,8,0.0 +24387,8,40,17,0.0 +24387,19,9.2,48,0.0 +24387,2,19,47,0.0 +24387,1,18,2,0.0 +24387,48,12.75,16,0.0 +24387,50,16.25,2,0.0 +24387,21,10,33,0.0 +24387,14,23.25,21,0.0 +24387,54,7.45,36,0.0 +24387,62,49.3,43,0.0 +24387,16,17.45,31,0.0 +24387,26,31.23,28,0.0 +24387,52,7,20,0.0 +24387,30,25.89,40,0.0 +24387,23,9,46,0.0 +24387,70,15,47,0.0 +24387,20,81,1,0.0 +24387,66,17,35,0.0 +24387,29,123.79,12,0.0 +24387,22,21,3,0.0 +24387,46,12,32,0.0 +24387,3,10,3,0.0 +24387,53,32.8,34,0.0 +24387,32,32,21,0.0 +24387,34,14,18,0.0 +24387,10,31,42,0.0 +24387,27,43.9,17,0.0 +24387,18,62.5,30,0.0 +24387,6,25,9,0.0 +24387,37,26,8,0.0 +24387,76,18,28,0.0 +24387,73,15,42,0.0 +24387,7,30,8,0.0 +24387,56,38,38,0.0 +24387,77,13,45,0.0 +24387,68,12.5,50,0.0 +24387,4,22,37,0.0 +24387,38,263.5,42,0.0 +24387,69,36,45,0.0 +24387,25,14,47,0.0 +24387,5,21.35,45,0.0 +24387,63,43.9,9,0.0 +24387,64,33.25,23,0.0 +24387,45,9.5,50,0.0 +24387,42,14,28,0.0 +24387,74,10,19,0.0 +24387,36,19,22,0.0 +24387,65,21.05,16,0.0 +24387,67,14,46,0.0 +24387,31,12.5,32,0.0 +24387,28,45.6,39,0.0 +24387,40,18.4,41,0.0 +24387,33,2.5,26,0.0 +24387,39,18,22,0.0 +24387,44,19.45,37,0.0 +24387,59,55,6,0.0 +24387,17,39,16,0.0 +24387,51,53,32,0.0 +24387,15,15.5,37,0.0 +24387,35,18,25,0.0 +24387,58,13.25,4,0.0 +24387,57,19.5,33,0.0 +24387,61,28.5,6,0.0 +24387,75,7.75,30,0.0 +24387,13,6,32,0.0 +24387,41,9.65,10,0.0 +24387,11,21,29,0.0 +24387,49,20,18,0.0 +24388,28,45.6,47,0.0 +24388,52,7,32,0.0 +24388,37,26,34,0.0 +24388,2,19,44,0.0 +24388,14,23.25,37,0.0 +24388,77,13,29,0.0 +24388,33,2.5,20,0.0 +24388,19,9.2,6,0.0 +24388,32,32,16,0.0 +24388,67,14,7,0.0 +24388,59,55,28,0.0 +24388,24,4.5,2,0.0 +24388,3,10,26,0.0 +24388,13,6,4,0.0 +24388,31,12.5,40,0.0 +24388,34,14,6,0.0 +24388,26,31.23,8,0.0 +24388,61,28.5,35,0.0 +24388,60,34,21,0.0 +24388,6,25,24,0.0 +24388,72,34.8,4,0.0 +24388,75,7.75,42,0.0 +24388,39,18,41,0.0 +24388,11,21,47,0.0 +24388,76,18,27,0.0 +24388,58,13.25,8,0.0 +24388,12,38,32,0.0 +24388,69,36,15,0.0 +24388,42,14,6,0.0 +24388,44,19.45,9,0.0 +24388,56,38,22,0.0 +24388,66,17,26,0.0 +24388,4,22,1,0.0 +24388,20,81,13,0.0 +24388,22,21,33,0.0 +24388,74,10,9,0.0 +24388,23,9,9,0.0 +24389,8,40,26,0.0 +24389,77,13,47,0.0 +24389,13,6,38,0.0 +24389,63,43.9,49,0.0 +24389,6,25,5,0.0 +24389,75,7.75,19,0.0 +24389,34,14,15,0.0 +24389,64,33.25,31,0.0 +24389,57,19.5,24,0.0 +24389,42,14,30,0.0 +24389,76,18,47,0.0 +24389,72,34.8,49,0.0 +24389,25,14,46,0.0 +24389,53,32.8,1,0.0 +24389,62,49.3,26,0.0 +24389,26,31.23,17,0.0 +24389,29,123.79,41,0.0 +24389,21,10,48,0.0 +24389,54,7.45,9,0.0 +24389,18,62.5,2,0.0 +24389,23,9,18,0.0 +24389,74,10,44,0.0 +24389,20,81,47,0.0 +24389,73,15,34,0.0 +24389,28,45.6,1,0.0 +24389,66,17,21,0.0 +24389,27,43.9,4,0.0 +24389,19,9.2,1,0.0 +24389,47,9.5,3,0.0 +24389,61,28.5,17,0.0 +24389,3,10,43,0.0 +24389,60,34,35,0.0 +24390,66,17,4,0.0 +24390,42,14,47,0.0 +24390,9,97,4,0.0 +24390,2,19,40,0.0 +24390,69,36,8,0.0 +24390,17,39,46,0.0 +24390,27,43.9,37,0.0 +24390,23,9,10,0.0 +24390,30,25.89,33,0.0 +24390,8,40,20,0.0 +24390,52,7,41,0.0 +24390,41,9.65,2,0.0 +24390,4,22,22,0.0 +24390,46,12,36,0.0 +24390,76,18,48,0.0 +24390,36,19,32,0.0 +24390,71,21.5,3,0.0 +24390,70,15,37,0.0 +24390,33,2.5,13,0.0 +24390,38,263.5,7,0.0 +24390,37,26,3,0.0 +24390,10,31,27,0.0 +24390,29,123.79,30,0.0 +24390,28,45.6,2,0.0 +24390,45,9.5,13,0.0 +24390,26,31.23,3,0.0 +24390,35,18,20,0.0 +24390,20,81,40,0.0 +24390,64,33.25,32,0.0 +24390,73,15,42,0.0 +24390,40,18.4,39,0.0 +24390,72,34.8,2,0.0 +24390,54,7.45,23,0.0 +24390,32,32,48,0.0 +24390,62,49.3,21,0.0 +24390,48,12.75,18,0.0 +24390,18,62.5,26,0.0 +24390,12,38,3,0.0 +24390,50,16.25,3,0.0 +24390,44,19.45,45,0.0 +24390,75,7.75,19,0.0 +24390,5,21.35,10,0.0 +24390,25,14,23,0.0 +24390,15,15.5,3,0.0 +24390,74,10,20,0.0 +24390,59,55,3,0.0 +24390,34,14,21,0.0 +24390,6,25,18,0.0 +24390,11,21,25,0.0 +24390,22,21,19,0.0 +24390,47,9.5,12,0.0 +24390,55,24,46,0.0 +24390,19,9.2,25,0.0 +24390,16,17.45,27,0.0 +24390,13,6,13,0.0 +24390,1,18,16,0.0 +24390,14,23.25,12,0.0 +24390,57,19.5,28,0.0 +24390,7,30,44,0.0 +24390,60,34,21,0.0 +24390,65,21.05,18,0.0 +24391,38,263.5,32,0.0 +24392,5,21.35,11,0.0 +24392,53,32.8,47,0.0 +24392,19,9.2,7,0.0 +24392,64,33.25,19,0.0 +24392,51,53,7,0.0 +24392,76,18,6,0.0 +24392,28,45.6,27,0.0 +24392,1,18,7,0.0 +24392,37,26,5,0.0 +24392,59,55,4,0.0 +24393,36,19,10,0.0 +24393,73,15,28,0.0 +24393,66,17,46,0.0 +24393,1,18,36,0.0 +24393,2,19,14,0.0 +24393,9,97,44,0.0 +24393,4,22,42,0.0 +24393,61,28.5,5,0.0 +24393,67,14,40,0.0 +24393,74,10,1,0.0 +24393,52,7,33,0.0 +24393,50,16.25,41,0.0 +24393,76,18,15,0.0 +24393,26,31.23,27,0.0 +24393,19,9.2,15,0.0 +24393,16,17.45,33,0.0 +24393,29,123.79,19,0.0 +24393,5,21.35,37,0.0 +24393,49,20,43,0.0 +24393,17,39,27,0.0 +24393,21,10,23,0.0 +24393,55,24,48,0.0 +24393,44,19.45,37,0.0 +24393,51,53,1,0.0 +24393,71,21.5,31,0.0 +24393,12,38,2,0.0 +24393,72,34.8,28,0.0 +24393,35,18,49,0.0 +24393,77,13,4,0.0 +24393,60,34,5,0.0 +24393,47,9.5,3,0.0 +24393,34,14,23,0.0 +24393,7,30,47,0.0 +24393,28,45.6,21,0.0 +24393,14,23.25,15,0.0 +24393,10,31,39,0.0 +24393,63,43.9,25,0.0 +24393,37,26,41,0.0 +24393,43,46,47,0.0 +24393,48,12.75,22,0.0 +24393,30,25.89,17,0.0 +24393,41,9.65,35,0.0 +24393,56,38,39,0.0 +24393,68,12.5,25,0.0 +24393,27,43.9,44,0.0 +24393,64,33.25,47,0.0 +24393,20,81,16,0.0 +24393,11,21,46,0.0 +24393,46,12,19,0.0 +24393,38,263.5,15,0.0 +24393,31,12.5,10,0.0 +24393,40,18.4,16,0.0 +24393,42,14,4,0.0 +24393,70,15,18,0.0 +24394,68,12.5,28,0.0 +24394,51,53,36,0.0 +24394,21,10,45,0.0 +24394,31,12.5,44,0.0 +24394,6,25,30,0.0 +24394,12,38,39,0.0 +24394,7,30,50,0.0 +24394,74,10,40,0.0 +24394,77,13,39,0.0 +24394,29,123.79,35,0.0 +24394,37,26,43,0.0 +24394,62,49.3,33,0.0 +24394,48,12.75,4,0.0 +24394,76,18,37,0.0 +24394,28,45.6,18,0.0 +24394,71,21.5,23,0.0 +24394,61,28.5,11,0.0 +24394,34,14,17,0.0 +24394,49,20,11,0.0 +24394,57,19.5,50,0.0 +24394,17,39,1,0.0 +24394,14,23.25,37,0.0 +24394,70,15,5,0.0 +24394,54,7.45,46,0.0 +24394,18,62.5,36,0.0 +24394,33,2.5,13,0.0 +24395,13,6,14,0.0 +24395,43,46,14,0.0 +24395,29,123.79,29,0.0 +24395,69,36,48,0.0 +24395,31,12.5,23,0.0 +24395,42,14,39,0.0 +24395,70,15,46,0.0 +24395,62,49.3,11,0.0 +24395,32,32,37,0.0 +24395,49,20,12,0.0 +24395,56,38,5,0.0 +24395,14,23.25,12,0.0 +24395,1,18,44,0.0 +24395,40,18.4,8,0.0 +24395,35,18,41,0.0 +24395,33,2.5,50,0.0 +24395,19,9.2,4,0.0 +24395,34,14,34,0.0 +24395,26,31.23,39,0.0 +24395,7,30,39,0.0 +24395,55,24,13,0.0 +24395,17,39,16,0.0 +24395,77,13,38,0.0 +24396,51,53,31,0.0 +24396,67,14,5,0.0 +24396,6,25,46,0.0 +24396,60,34,40,0.0 +24396,68,12.5,37,0.0 +24396,18,62.5,19,0.0 +24396,52,7,31,0.0 +24396,46,12,28,0.0 +24396,19,9.2,50,0.0 +24396,48,12.75,30,0.0 +24396,41,9.65,26,0.0 +24396,8,40,40,0.0 +24396,27,43.9,26,0.0 +24396,35,18,12,0.0 +24396,72,34.8,32,0.0 +24396,5,21.35,35,0.0 +24396,40,18.4,19,0.0 +24396,54,7.45,17,0.0 +24396,17,39,28,0.0 +24396,38,263.5,44,0.0 +24396,64,33.25,16,0.0 +24396,23,9,41,0.0 +24397,45,9.5,5,0.0 +24397,27,43.9,30,0.0 +24397,44,19.45,40,0.0 +24397,9,97,17,0.0 +24397,55,24,27,0.0 +24397,11,21,40,0.0 +24397,26,31.23,42,0.0 +24397,5,21.35,2,0.0 +24397,20,81,4,0.0 +24397,51,53,19,0.0 +24397,71,21.5,28,0.0 +24397,21,10,27,0.0 +24397,74,10,37,0.0 +24397,24,4.5,43,0.0 +24397,8,40,45,0.0 +24397,46,12,41,0.0 +24397,61,28.5,21,0.0 +24397,43,46,36,0.0 +24397,52,7,10,0.0 +24397,69,36,47,0.0 +24397,53,32.8,31,0.0 +24397,35,18,18,0.0 +24397,39,18,49,0.0 +24397,76,18,32,0.0 +24397,30,25.89,23,0.0 +24397,22,21,10,0.0 +24397,57,19.5,39,0.0 +24397,14,23.25,38,0.0 +24397,32,32,10,0.0 +24397,28,45.6,34,0.0 +24397,40,18.4,2,0.0 +24397,49,20,17,0.0 +24397,3,10,18,0.0 +24397,37,26,50,0.0 +24397,10,31,5,0.0 +24397,66,17,38,0.0 +24397,58,13.25,3,0.0 +24397,23,9,44,0.0 +24397,73,15,14,0.0 +24397,33,2.5,20,0.0 +24397,36,19,3,0.0 +24397,1,18,48,0.0 +24397,4,22,47,0.0 +24397,59,55,21,0.0 +24397,38,263.5,9,0.0 +24397,15,15.5,18,0.0 +24398,41,9.65,28,0.0 +24399,59,55,34,0.0 +24399,70,15,27,0.0 +24399,45,9.5,19,0.0 +24399,61,28.5,50,0.0 +24399,31,12.5,16,0.0 +24399,34,14,2,0.0 +24399,46,12,43,0.0 +24399,27,43.9,10,0.0 +24399,75,7.75,5,0.0 +24399,28,45.6,3,0.0 +24399,36,19,40,0.0 +24399,65,21.05,5,0.0 +24399,9,97,27,0.0 +24399,66,17,6,0.0 +24399,43,46,10,0.0 +24399,67,14,5,0.0 +24399,57,19.5,43,0.0 +24399,15,15.5,40,0.0 +24399,38,263.5,37,0.0 +24399,22,21,6,0.0 +24399,69,36,38,0.0 +24399,74,10,38,0.0 +24399,26,31.23,32,0.0 +24399,40,18.4,4,0.0 +24399,16,17.45,25,0.0 +24399,29,123.79,38,0.0 +24399,37,26,45,0.0 +24399,35,18,5,0.0 +24399,53,32.8,11,0.0 +24399,44,19.45,33,0.0 +24399,63,43.9,31,0.0 +24399,21,10,13,0.0 +24399,55,24,20,0.0 +24399,64,33.25,15,0.0 +24399,47,9.5,50,0.0 +24399,23,9,11,0.0 +24399,77,13,9,0.0 +24399,20,81,12,0.0 +24399,60,34,13,0.0 +24399,24,4.5,38,0.0 +24399,1,18,29,0.0 +24399,52,7,10,0.0 +24399,72,34.8,45,0.0 +24399,25,14,45,0.0 +24399,48,12.75,5,0.0 +24399,14,23.25,22,0.0 +24399,6,25,4,0.0 +24399,8,40,11,0.0 +24399,4,22,2,0.0 +24399,32,32,32,0.0 +24399,68,12.5,3,0.0 +24399,33,2.5,25,0.0 +24399,39,18,1,0.0 +24399,18,62.5,36,0.0 +24399,73,15,28,0.0 +24399,12,38,19,0.0 +24399,50,16.25,40,0.0 +24399,42,14,29,0.0 +24399,13,6,50,0.0 +24399,71,21.5,19,0.0 +24399,56,38,22,0.0 +24399,54,7.45,46,0.0 +24399,76,18,8,0.0 +24399,62,49.3,5,0.0 +24399,58,13.25,44,0.0 +24399,30,25.89,42,0.0 +24399,51,53,33,0.0 +24399,5,21.35,28,0.0 +24399,41,9.65,46,0.0 +24399,17,39,50,0.0 +24399,2,19,41,0.0 +24399,19,9.2,18,0.0 +24399,3,10,42,0.0 +24399,49,20,17,0.0 +24399,11,21,38,0.0 +24399,7,30,39,0.0 +24399,10,31,45,0.0 +24400,14,23.25,45,0.0 +24400,74,10,33,0.0 +24400,6,25,15,0.0 +24400,42,14,34,0.0 +24400,3,10,42,0.0 +24400,18,62.5,13,0.0 +24400,15,15.5,3,0.0 +24400,71,21.5,23,0.0 +24400,4,22,35,0.0 +24400,47,9.5,39,0.0 +24400,12,38,15,0.0 +24400,24,4.5,8,0.0 +24400,48,12.75,8,0.0 +24400,1,18,35,0.0 +24400,26,31.23,41,0.0 +24401,73,15,22,0.0 +24401,33,2.5,2,0.0 +24401,74,10,24,0.0 +24401,9,97,33,0.0 +24401,35,18,27,0.0 +24401,22,21,13,0.0 +24401,67,14,21,0.0 +24401,76,18,29,0.0 +24401,15,15.5,9,0.0 +24401,69,36,28,0.0 +24401,32,32,2,0.0 +24401,19,9.2,9,0.0 +24401,23,9,40,0.0 +24401,43,46,22,0.0 +24401,3,10,42,0.0 +24401,16,17.45,48,0.0 +24401,45,9.5,48,0.0 +24401,11,21,50,0.0 +24401,60,34,11,0.0 +24401,12,38,48,0.0 +24401,4,22,10,0.0 +24401,6,25,43,0.0 +24401,5,21.35,42,0.0 +24401,30,25.89,37,0.0 +24401,17,39,7,0.0 +24401,21,10,5,0.0 +24401,7,30,28,0.0 +24401,26,31.23,49,0.0 +24401,34,14,4,0.0 +24401,51,53,34,0.0 +24401,20,81,3,0.0 +24401,13,6,25,0.0 +24401,77,13,12,0.0 +24401,71,21.5,22,0.0 +24401,24,4.5,22,0.0 +24401,8,40,44,0.0 +24401,65,21.05,46,0.0 +24401,56,38,21,0.0 +24401,58,13.25,7,0.0 +24401,10,31,41,0.0 +24401,49,20,40,0.0 +24401,2,19,45,0.0 +24401,41,9.65,2,0.0 +24401,61,28.5,48,0.0 +24401,40,18.4,15,0.0 +24401,38,263.5,15,0.0 +24401,14,23.25,9,0.0 +24401,53,32.8,10,0.0 +24401,1,18,2,0.0 +24401,62,49.3,33,0.0 +24401,48,12.75,31,0.0 +24401,55,24,24,0.0 +24401,63,43.9,49,0.0 +24401,31,12.5,13,0.0 +24401,72,34.8,16,0.0 +24401,46,12,46,0.0 +24401,70,15,28,0.0 +24401,29,123.79,25,0.0 +24401,47,9.5,39,0.0 +24402,47,9.5,35,0.0 +24402,41,9.65,35,0.0 +24402,6,25,31,0.0 +24402,13,6,2,0.0 +24402,76,18,17,0.0 +24402,70,15,20,0.0 +24402,24,4.5,6,0.0 +24402,20,81,8,0.0 +24402,31,12.5,28,0.0 +24402,65,21.05,29,0.0 +24402,3,10,11,0.0 +24402,67,14,23,0.0 +24402,33,2.5,4,0.0 +24402,49,20,4,0.0 +24402,17,39,29,0.0 +24402,51,53,4,0.0 +24402,69,36,23,0.0 +24402,16,17.45,41,0.0 +24402,14,23.25,22,0.0 +24402,48,12.75,21,0.0 +24402,15,15.5,24,0.0 +24402,12,38,12,0.0 +24402,28,45.6,18,0.0 +24402,71,21.5,48,0.0 +24402,72,34.8,12,0.0 +24402,40,18.4,4,0.0 +24402,53,32.8,9,0.0 +24402,8,40,35,0.0 +24402,56,38,22,0.0 +24402,34,14,22,0.0 +24402,7,30,44,0.0 +24402,38,263.5,20,0.0 +24402,4,22,44,0.0 +24402,35,18,3,0.0 +24402,66,17,42,0.0 +24402,27,43.9,8,0.0 +24402,37,26,3,0.0 +24402,18,62.5,43,0.0 +24402,75,7.75,41,0.0 +24402,26,31.23,47,0.0 +24402,54,7.45,22,0.0 +24402,64,33.25,4,0.0 +24402,68,12.5,37,0.0 +24402,10,31,2,0.0 +24402,19,9.2,48,0.0 +24402,55,24,38,0.0 +24402,50,16.25,30,0.0 +24402,77,13,6,0.0 +24402,52,7,47,0.0 +24402,11,21,32,0.0 +24402,43,46,29,0.0 +24402,58,13.25,12,0.0 +24403,49,20,26,0.0 +24403,71,21.5,33,0.0 +24403,19,9.2,12,0.0 +24403,5,21.35,23,0.0 +24403,29,123.79,12,0.0 +24403,22,21,6,0.0 +24403,76,18,12,0.0 +24403,45,9.5,22,0.0 +24403,61,28.5,49,0.0 +24403,58,13.25,33,0.0 +24403,31,12.5,1,0.0 +24403,30,25.89,14,0.0 +24403,23,9,16,0.0 +24403,17,39,36,0.0 +24403,63,43.9,33,0.0 +24403,57,19.5,23,0.0 +24403,65,21.05,48,0.0 +24403,44,19.45,38,0.0 +24403,32,32,19,0.0 +24403,62,49.3,1,0.0 +24403,64,33.25,22,0.0 +24403,4,22,41,0.0 +24403,56,38,45,0.0 +24403,24,4.5,40,0.0 +24403,38,263.5,43,0.0 +24403,35,18,34,0.0 +24403,48,12.75,33,0.0 +24403,2,19,40,0.0 +24403,68,12.5,22,0.0 +24403,25,14,9,0.0 +24403,39,18,33,0.0 +24403,13,6,2,0.0 +24403,36,19,38,0.0 +24403,28,45.6,35,0.0 +24403,69,36,15,0.0 +24403,72,34.8,6,0.0 +24403,33,2.5,32,0.0 +24403,18,62.5,8,0.0 +24403,6,25,13,0.0 +24403,11,21,36,0.0 +24403,66,17,45,0.0 +24403,54,7.45,8,0.0 +24403,70,15,9,0.0 +24403,10,31,39,0.0 +24403,15,15.5,47,0.0 +24403,77,13,44,0.0 +24403,40,18.4,48,0.0 +24403,37,26,20,0.0 +24403,16,17.45,48,0.0 +24403,74,10,11,0.0 +24404,38,263.5,33,0.0 +24404,43,46,50,0.0 +24404,41,9.65,37,0.0 +24404,29,123.79,15,0.0 +24404,11,21,6,0.0 +24404,58,13.25,47,0.0 +24404,44,19.45,15,0.0 +24404,1,18,1,0.0 +24404,12,38,2,0.0 +24404,70,15,14,0.0 +24404,8,40,4,0.0 +24404,61,28.5,27,0.0 +24404,2,19,3,0.0 +24404,15,15.5,38,0.0 +24404,51,53,39,0.0 +24404,21,10,16,0.0 +24404,4,22,20,0.0 +24404,37,26,13,0.0 +24404,18,62.5,13,0.0 +24404,66,17,36,0.0 +24404,10,31,23,0.0 +24404,63,43.9,3,0.0 +24404,5,21.35,11,0.0 +24405,17,39,42,0.0 +24405,51,53,17,0.0 +24405,34,14,40,0.0 +24405,23,9,47,0.0 +24405,62,49.3,6,0.0 +24405,57,19.5,25,0.0 +24405,6,25,22,0.0 +24405,16,17.45,40,0.0 +24405,76,18,28,0.0 +24405,10,31,35,0.0 +24406,66,17,3,0.0 +24406,36,19,16,0.0 +24406,38,263.5,20,0.0 +24406,17,39,20,0.0 +24406,13,6,2,0.0 +24406,77,13,36,0.0 +24406,64,33.25,33,0.0 +24406,15,15.5,41,0.0 +24406,72,34.8,38,0.0 +24406,19,9.2,5,0.0 +24406,7,30,43,0.0 +24406,48,12.75,46,0.0 +24406,10,31,29,0.0 +24406,43,46,35,0.0 +24407,57,19.5,40,0.0 +24408,34,14,30,0.0 +24408,69,36,20,0.0 +24408,65,21.05,15,0.0 +24408,42,14,14,0.0 +24408,47,9.5,27,0.0 +24408,46,12,14,0.0 +24408,73,15,39,0.0 +24408,5,21.35,34,0.0 +24408,30,25.89,17,0.0 +24408,6,25,18,0.0 +24408,43,46,3,0.0 +24408,35,18,37,0.0 +24408,32,32,27,0.0 +24408,45,9.5,23,0.0 +24408,52,7,10,0.0 +24408,38,263.5,18,0.0 +24408,3,10,21,0.0 +24408,58,13.25,15,0.0 +24408,77,13,38,0.0 +24408,75,7.75,47,0.0 +24408,11,21,15,0.0 +24408,2,19,42,0.0 +24408,49,20,41,0.0 +24408,15,15.5,44,0.0 +24408,54,7.45,27,0.0 +24408,66,17,46,0.0 +24408,53,32.8,45,0.0 +24408,44,19.45,50,0.0 +24408,21,10,32,0.0 +24408,70,15,4,0.0 +24408,18,62.5,33,0.0 +24408,25,14,25,0.0 +24408,48,12.75,13,0.0 +24408,17,39,18,0.0 +24408,41,9.65,9,0.0 +24408,62,49.3,32,0.0 +24408,60,34,40,0.0 +24408,36,19,27,0.0 +24408,27,43.9,29,0.0 +24408,33,2.5,7,0.0 +24408,68,12.5,19,0.0 +24408,76,18,8,0.0 +24408,50,16.25,44,0.0 +24408,4,22,25,0.0 +24408,16,17.45,3,0.0 +24408,1,18,16,0.0 +24408,14,23.25,25,0.0 +24408,59,55,46,0.0 +24408,40,18.4,24,0.0 +24408,23,9,40,0.0 +24408,24,4.5,42,0.0 +24408,61,28.5,7,0.0 +24408,51,53,28,0.0 +24408,67,14,3,0.0 +24408,74,10,31,0.0 +24408,64,33.25,9,0.0 +24408,29,123.79,18,0.0 +24408,10,31,22,0.0 +24408,39,18,28,0.0 +24409,14,23.25,11,0.0 +24409,11,21,20,0.0 +24409,69,36,23,0.0 +24409,55,24,8,0.0 +24409,71,21.5,45,0.0 +24409,35,18,49,0.0 +24409,39,18,35,0.0 +24409,23,9,5,0.0 +24409,51,53,41,0.0 +24409,10,31,2,0.0 +24409,43,46,17,0.0 +24409,4,22,16,0.0 +24409,46,12,48,0.0 +24409,56,38,12,0.0 +24409,9,97,10,0.0 +24409,25,14,47,0.0 +24409,44,19.45,10,0.0 +24409,59,55,42,0.0 +24409,60,34,40,0.0 +24409,77,13,23,0.0 +24409,63,43.9,19,0.0 +24409,62,49.3,36,0.0 +24409,58,13.25,25,0.0 +24409,34,14,10,0.0 +24409,32,32,4,0.0 +24409,53,32.8,47,0.0 +24409,48,12.75,44,0.0 +24409,24,4.5,8,0.0 +24409,68,12.5,22,0.0 +24409,28,45.6,20,0.0 +24409,50,16.25,48,0.0 +24409,66,17,29,0.0 +24409,70,15,40,0.0 +24409,21,10,34,0.0 +24409,2,19,38,0.0 +24409,36,19,37,0.0 +24409,29,123.79,46,0.0 +24409,54,7.45,27,0.0 +24409,31,12.5,13,0.0 +24409,19,9.2,22,0.0 +24409,13,6,48,0.0 +24409,30,25.89,26,0.0 +24409,73,15,50,0.0 +24409,65,21.05,4,0.0 +24409,1,18,7,0.0 +24409,15,15.5,17,0.0 +24409,72,34.8,19,0.0 +24409,20,81,7,0.0 +24409,67,14,3,0.0 +24409,6,25,8,0.0 +24409,22,21,48,0.0 +24409,74,10,43,0.0 +24409,64,33.25,22,0.0 +24409,42,14,46,0.0 +24409,57,19.5,25,0.0 +24409,3,10,35,0.0 +24409,8,40,5,0.0 +24409,33,2.5,26,0.0 +24409,40,18.4,43,0.0 +24409,75,7.75,36,0.0 +24409,38,263.5,37,0.0 +24409,27,43.9,6,0.0 +24409,26,31.23,25,0.0 +24410,6,25,29,0.0 +24410,17,39,47,0.0 +24410,39,18,47,0.0 +24410,5,21.35,27,0.0 +24410,74,10,29,0.0 +24410,45,9.5,7,0.0 +24410,46,12,36,0.0 +24410,76,18,49,0.0 +24410,25,14,42,0.0 +24410,22,21,48,0.0 +24410,23,9,49,0.0 +24410,68,12.5,27,0.0 +24410,32,32,26,0.0 +24410,8,40,37,0.0 +24410,64,33.25,34,0.0 +24410,33,2.5,25,0.0 +24410,18,62.5,44,0.0 +24410,52,7,4,0.0 +24410,56,38,31,0.0 +24410,41,9.65,26,0.0 +24410,30,25.89,10,0.0 +24410,70,15,13,0.0 +24410,51,53,22,0.0 +24410,43,46,48,0.0 +24410,14,23.25,27,0.0 +24410,38,263.5,47,0.0 +24410,35,18,41,0.0 +24410,62,49.3,15,0.0 +24410,16,17.45,22,0.0 +24411,52,7,4,0.0 +24411,23,9,19,0.0 +24411,68,12.5,24,0.0 +24411,17,39,22,0.0 +24411,58,13.25,22,0.0 +24411,18,62.5,16,0.0 +24411,49,20,17,0.0 +24411,76,18,25,0.0 +24411,51,53,40,0.0 +24411,34,14,7,0.0 +24411,56,38,8,0.0 +24411,37,26,35,0.0 +24411,66,17,41,0.0 +24411,12,38,1,0.0 +24411,36,19,32,0.0 +24411,19,9.2,40,0.0 +24411,1,18,25,0.0 +24411,21,10,38,0.0 +24411,46,12,11,0.0 +24411,69,36,50,0.0 +24412,39,18,47,0.0 +24412,76,18,46,0.0 +24412,72,34.8,44,0.0 +24412,56,38,47,0.0 +24412,57,19.5,21,0.0 +24412,22,21,38,0.0 +24412,5,21.35,13,0.0 +24412,1,18,39,0.0 +24412,13,6,10,0.0 +24412,67,14,1,0.0 +24412,77,13,36,0.0 +24412,24,4.5,35,0.0 +24412,70,15,44,0.0 +24412,75,7.75,3,0.0 +24412,6,25,50,0.0 +24412,21,10,16,0.0 +24412,9,97,48,0.0 +24412,65,21.05,40,0.0 +24412,18,62.5,40,0.0 +24412,31,12.5,12,0.0 +24412,45,9.5,4,0.0 +24412,62,49.3,24,0.0 +24412,44,19.45,12,0.0 +24412,33,2.5,23,0.0 +24412,73,15,18,0.0 +24412,19,9.2,29,0.0 +24412,27,43.9,20,0.0 +24412,36,19,27,0.0 +24412,59,55,12,0.0 +24412,26,31.23,27,0.0 +24412,68,12.5,13,0.0 +24413,11,21,41,0.0 +24413,62,49.3,18,0.0 +24413,45,9.5,22,0.0 +24413,32,32,18,0.0 +24413,19,9.2,6,0.0 +24413,13,6,45,0.0 +24413,6,25,13,0.0 +24413,61,28.5,45,0.0 +24413,29,123.79,15,0.0 +24413,49,20,35,0.0 +24413,50,16.25,18,0.0 +24413,20,81,13,0.0 +24413,37,26,28,0.0 +24413,55,24,17,0.0 +24413,69,36,33,0.0 +24413,14,23.25,41,0.0 +24413,63,43.9,4,0.0 +24413,1,18,3,0.0 +24413,76,18,37,0.0 +24413,72,34.8,46,0.0 +24413,77,13,38,0.0 +24413,38,263.5,14,0.0 +24413,8,40,16,0.0 +24413,42,14,28,0.0 +24413,66,17,50,0.0 +24413,43,46,27,0.0 +24413,12,38,43,0.0 +24413,24,4.5,24,0.0 +24413,31,12.5,48,0.0 +24413,16,17.45,27,0.0 +24413,3,10,15,0.0 +24413,21,10,6,0.0 +24413,65,21.05,35,0.0 +24413,28,45.6,46,0.0 +24413,44,19.45,31,0.0 +24413,39,18,3,0.0 +24413,52,7,22,0.0 +24413,15,15.5,43,0.0 +24413,26,31.23,36,0.0 +24413,34,14,5,0.0 +24413,9,97,47,0.0 +24413,70,15,14,0.0 +24413,59,55,48,0.0 +24413,41,9.65,25,0.0 +24413,71,21.5,15,0.0 +24413,73,15,32,0.0 +24413,33,2.5,28,0.0 +24413,46,12,36,0.0 +24413,2,19,9,0.0 +24413,27,43.9,22,0.0 +24414,72,34.8,33,0.0 +24414,4,22,46,0.0 +24414,41,9.65,40,0.0 +24414,42,14,47,0.0 +24414,24,4.5,18,0.0 +24414,75,7.75,41,0.0 +24414,57,19.5,45,0.0 +24414,54,7.45,35,0.0 +24414,31,12.5,34,0.0 +24414,25,14,5,0.0 +24414,33,2.5,19,0.0 +24414,6,25,29,0.0 +24414,8,40,48,0.0 +24414,3,10,17,0.0 +24414,21,10,48,0.0 +24414,9,97,46,0.0 +24414,28,45.6,25,0.0 +24414,66,17,26,0.0 +24414,43,46,6,0.0 +24414,32,32,28,0.0 +24414,10,31,3,0.0 +24414,55,24,17,0.0 +24414,51,53,24,0.0 +24414,2,19,36,0.0 +24414,37,26,29,0.0 +24414,40,18.4,42,0.0 +24414,73,15,30,0.0 +24414,76,18,38,0.0 +24414,71,21.5,12,0.0 +24414,23,9,27,0.0 +24414,30,25.89,18,0.0 +24414,26,31.23,47,0.0 +24414,12,38,48,0.0 +24414,70,15,42,0.0 +24414,17,39,20,0.0 +24414,63,43.9,7,0.0 +24414,67,14,4,0.0 +24414,64,33.25,38,0.0 +24414,35,18,24,0.0 +24414,68,12.5,46,0.0 +24415,21,10,22,0.0 +24415,20,81,44,0.0 +24415,54,7.45,12,0.0 +24415,60,34,21,0.0 +24415,27,43.9,17,0.0 +24415,30,25.89,23,0.0 +24415,15,15.5,37,0.0 +24415,1,18,17,0.0 +24415,58,13.25,27,0.0 +24415,61,28.5,20,0.0 +24415,9,97,29,0.0 +24415,44,19.45,33,0.0 +24415,52,7,35,0.0 +24415,29,123.79,33,0.0 +24415,72,34.8,42,0.0 +24415,48,12.75,8,0.0 +24415,49,20,31,0.0 +24415,40,18.4,45,0.0 +24415,10,31,46,0.0 +24415,62,49.3,1,0.0 +24415,74,10,14,0.0 +24415,56,38,3,0.0 +24415,70,15,3,0.0 +24415,69,36,1,0.0 +24415,77,13,5,0.0 +24415,38,263.5,21,0.0 +24415,33,2.5,1,0.0 +24415,43,46,42,0.0 +24415,73,15,33,0.0 +24415,23,9,47,0.0 +24416,29,123.79,46,0.0 +24416,76,18,41,0.0 +24416,18,62.5,41,0.0 +24416,38,263.5,31,0.0 +24416,19,9.2,38,0.0 +24416,1,18,17,0.0 +24416,72,34.8,27,0.0 +24416,25,14,48,0.0 +24417,48,12.75,17,0.0 +24417,54,7.45,4,0.0 +24417,10,31,14,0.0 +24417,28,45.6,3,0.0 +24417,35,18,30,0.0 +24417,6,25,4,0.0 +24417,31,12.5,13,0.0 +24417,62,49.3,24,0.0 +24417,5,21.35,15,0.0 +24417,75,7.75,50,0.0 +24417,14,23.25,2,0.0 +24417,25,14,18,0.0 +24417,21,10,17,0.0 +24417,69,36,29,0.0 +24417,71,21.5,21,0.0 +24417,3,10,31,0.0 +24417,59,55,44,0.0 +24417,16,17.45,35,0.0 +24417,30,25.89,27,0.0 +24417,32,32,49,0.0 +24417,58,13.25,17,0.0 +24418,1,18,11,0.0 +24418,8,40,23,0.0 +24418,68,12.5,22,0.0 +24418,16,17.45,11,0.0 +24418,11,21,34,0.0 +24418,30,25.89,47,0.0 +24418,41,9.65,14,0.0 +24418,45,9.5,28,0.0 +24418,75,7.75,26,0.0 +24418,49,20,7,0.0 +24418,17,39,34,0.0 +24418,21,10,35,0.0 +24418,46,12,49,0.0 +24418,55,24,45,0.0 +24418,25,14,46,0.0 +24418,34,14,47,0.0 +24418,58,13.25,2,0.0 +24418,33,2.5,19,0.0 +24418,2,19,13,0.0 +24418,73,15,13,0.0 +24418,5,21.35,10,0.0 +24418,77,13,41,0.0 +24418,19,9.2,41,0.0 +24418,61,28.5,30,0.0 +24418,43,46,25,0.0 +24418,27,43.9,5,0.0 +24418,65,21.05,39,0.0 +24418,4,22,47,0.0 +24418,53,32.8,32,0.0 +24418,6,25,50,0.0 +24418,37,26,4,0.0 +24418,70,15,25,0.0 +24418,72,34.8,50,0.0 +24418,56,38,36,0.0 +24418,52,7,2,0.0 +24418,57,19.5,20,0.0 +24418,40,18.4,39,0.0 +24418,69,36,27,0.0 +24419,55,24,45,0.0 +24419,23,9,11,0.0 +24419,67,14,23,0.0 +24419,40,18.4,38,0.0 +24419,20,81,36,0.0 +24419,71,21.5,4,0.0 +24419,59,55,21,0.0 +24419,2,19,5,0.0 +24419,58,13.25,28,0.0 +24419,61,28.5,39,0.0 +24419,62,49.3,5,0.0 +24419,18,62.5,43,0.0 +24419,35,18,26,0.0 +24419,45,9.5,24,0.0 +24419,1,18,1,0.0 +24419,49,20,11,0.0 +24419,34,14,46,0.0 +24419,65,21.05,21,0.0 +24419,30,25.89,20,0.0 +24419,9,97,47,0.0 +24419,5,21.35,48,0.0 +24419,15,15.5,44,0.0 +24419,3,10,44,0.0 +24419,33,2.5,38,0.0 +24419,50,16.25,33,0.0 +24419,66,17,6,0.0 +24419,56,38,17,0.0 +24419,68,12.5,11,0.0 +24419,51,53,30,0.0 +24419,14,23.25,28,0.0 +24419,69,36,20,0.0 +24419,31,12.5,43,0.0 +24419,38,263.5,13,0.0 +24419,46,12,42,0.0 +24419,74,10,34,0.0 +24419,60,34,34,0.0 +24419,53,32.8,38,0.0 +24419,21,10,9,0.0 +24419,52,7,50,0.0 +24419,13,6,28,0.0 +24419,29,123.79,49,0.0 +24419,36,19,13,0.0 +24420,57,19.5,49,0.0 +24420,36,19,26,0.0 +24420,2,19,37,0.0 +24420,69,36,30,0.0 +24420,18,62.5,17,0.0 +24420,43,46,22,0.0 +24420,64,33.25,15,0.0 +24420,63,43.9,49,0.0 +24420,49,20,26,0.0 +24420,55,24,43,0.0 +24420,27,43.9,22,0.0 +24420,44,19.45,35,0.0 +24420,40,18.4,35,0.0 +24420,56,38,50,0.0 +24420,71,21.5,16,0.0 +24420,50,16.25,35,0.0 +24420,75,7.75,7,0.0 +24420,68,12.5,14,0.0 +24420,13,6,14,0.0 +24420,51,53,41,0.0 +24420,7,30,46,0.0 +24420,52,7,40,0.0 +24420,6,25,6,0.0 +24420,54,7.45,45,0.0 +24420,32,32,36,0.0 +24420,3,10,48,0.0 +24420,67,14,19,0.0 +24420,72,34.8,25,0.0 +24420,61,28.5,2,0.0 +24420,8,40,13,0.0 +24420,9,97,3,0.0 +24420,16,17.45,25,0.0 +24420,10,31,44,0.0 +24420,76,18,18,0.0 +24420,29,123.79,42,0.0 +24420,30,25.89,30,0.0 +24420,14,23.25,33,0.0 +24420,77,13,4,0.0 +24420,12,38,41,0.0 +24420,62,49.3,26,0.0 +24420,35,18,16,0.0 +24420,38,263.5,44,0.0 +24420,47,9.5,6,0.0 +24420,59,55,18,0.0 +24420,4,22,17,0.0 +24420,46,12,4,0.0 +24420,25,14,50,0.0 +24420,21,10,19,0.0 +24420,66,17,17,0.0 +24420,39,18,38,0.0 +24420,22,21,26,0.0 +24420,60,34,27,0.0 +24420,24,4.5,42,0.0 +24420,74,10,27,0.0 +24420,65,21.05,6,0.0 +24420,20,81,38,0.0 +24420,5,21.35,33,0.0 +24420,73,15,23,0.0 +24420,23,9,29,0.0 +24420,48,12.75,43,0.0 +24420,1,18,22,0.0 +24420,53,32.8,45,0.0 +24420,70,15,41,0.0 +24420,26,31.23,18,0.0 +24421,31,12.5,23,0.0 +24421,3,10,1,0.0 +24421,29,123.79,33,0.0 +24421,66,17,25,0.0 +24421,32,32,42,0.0 +24421,15,15.5,38,0.0 +24421,71,21.5,45,0.0 +24421,53,32.8,49,0.0 +24421,50,16.25,33,0.0 +24421,34,14,25,0.0 +24421,64,33.25,5,0.0 +24421,57,19.5,37,0.0 +24421,18,62.5,23,0.0 +24421,61,28.5,16,0.0 +24421,47,9.5,18,0.0 +24421,52,7,41,0.0 +24421,63,43.9,34,0.0 +24421,12,38,49,0.0 +24421,10,31,20,0.0 +24421,28,45.6,44,0.0 +24421,23,9,12,0.0 +24421,30,25.89,30,0.0 +24421,17,39,46,0.0 +24421,26,31.23,41,0.0 +24421,75,7.75,39,0.0 +24421,6,25,10,0.0 +24421,39,18,3,0.0 +24421,73,15,37,0.0 +24421,76,18,6,0.0 +24421,5,21.35,4,0.0 +24421,65,21.05,49,0.0 +24421,46,12,5,0.0 +24421,38,263.5,45,0.0 +24421,27,43.9,36,0.0 +24421,40,18.4,35,0.0 +24421,7,30,44,0.0 +24421,74,10,7,0.0 +24421,8,40,47,0.0 +24421,25,14,20,0.0 +24421,56,38,44,0.0 +24421,51,53,30,0.0 +24421,44,19.45,22,0.0 +24421,22,21,33,0.0 +24421,16,17.45,37,0.0 +24421,55,24,30,0.0 +24421,72,34.8,10,0.0 +24421,19,9.2,17,0.0 +24421,4,22,19,0.0 +24421,37,26,46,0.0 +24421,21,10,26,0.0 +24421,9,97,23,0.0 +24421,70,15,22,0.0 +24421,60,34,5,0.0 +24421,11,21,30,0.0 +24421,59,55,30,0.0 +24421,14,23.25,29,0.0 +24421,1,18,11,0.0 +24421,54,7.45,25,0.0 +24421,33,2.5,36,0.0 +24421,58,13.25,36,0.0 +24421,24,4.5,22,0.0 +24421,2,19,11,0.0 +24421,77,13,15,0.0 +24421,35,18,11,0.0 +24421,36,19,44,0.0 +24421,69,36,27,0.0 +24421,45,9.5,35,0.0 +24421,68,12.5,23,0.0 +24422,33,2.5,1,0.0 +24422,46,12,47,0.0 +24422,31,12.5,8,0.0 +24422,50,16.25,4,0.0 +24422,62,49.3,8,0.0 +24422,75,7.75,32,0.0 +24422,37,26,4,0.0 +24422,61,28.5,16,0.0 +24422,21,10,8,0.0 +24422,48,12.75,39,0.0 +24422,53,32.8,34,0.0 +24422,76,18,38,0.0 +24422,4,22,23,0.0 +24422,24,4.5,45,0.0 +24422,7,30,48,0.0 +24422,35,18,1,0.0 +24422,27,43.9,20,0.0 +24422,1,18,46,0.0 +24422,72,34.8,36,0.0 +24422,34,14,30,0.0 +24422,23,9,2,0.0 +24422,49,20,39,0.0 +24422,28,45.6,25,0.0 +24422,22,21,33,0.0 +24422,12,38,8,0.0 +24422,43,46,10,0.0 +24422,9,97,9,0.0 +24422,55,24,16,0.0 +24422,16,17.45,3,0.0 +24422,5,21.35,30,0.0 +24422,47,9.5,11,0.0 +24422,77,13,17,0.0 +24422,71,21.5,37,0.0 +24422,67,14,45,0.0 +24422,15,15.5,34,0.0 +24422,66,17,6,0.0 +24422,36,19,8,0.0 +24422,38,263.5,11,0.0 +24422,68,12.5,7,0.0 +24422,3,10,8,0.0 +24422,25,14,22,0.0 +24422,65,21.05,20,0.0 +24422,8,40,4,0.0 +24422,14,23.25,2,0.0 +24422,18,62.5,32,0.0 +24422,56,38,32,0.0 +24422,20,81,2,0.0 +24423,6,25,37,0.0 +24423,20,81,23,0.0 +24423,27,43.9,32,0.0 +24423,51,53,29,0.0 +24423,71,21.5,42,0.0 +24423,49,20,42,0.0 +24423,11,21,36,0.0 +24423,75,7.75,48,0.0 +24423,37,26,49,0.0 +24423,32,32,18,0.0 +24423,4,22,33,0.0 +24423,46,12,13,0.0 +24423,18,62.5,1,0.0 +24423,28,45.6,24,0.0 +24423,73,15,47,0.0 +24423,13,6,50,0.0 +24423,17,39,19,0.0 +24423,57,19.5,24,0.0 +24423,63,43.9,9,0.0 +24423,36,19,48,0.0 +24423,55,24,44,0.0 +24423,45,9.5,2,0.0 +24423,54,7.45,23,0.0 +24423,43,46,31,0.0 +24423,72,34.8,46,0.0 +24423,16,17.45,34,0.0 +24423,3,10,46,0.0 +24423,39,18,31,0.0 +24423,66,17,49,0.0 +24423,24,4.5,16,0.0 +24423,38,263.5,29,0.0 +24423,5,21.35,12,0.0 +24423,21,10,26,0.0 +24423,48,12.75,45,0.0 +24423,56,38,4,0.0 +24423,41,9.65,38,0.0 +24423,15,15.5,26,0.0 +24423,35,18,28,0.0 +24423,42,14,31,0.0 +24423,7,30,36,0.0 +24423,77,13,21,0.0 +24423,22,21,38,0.0 +24423,52,7,34,0.0 +24423,76,18,24,0.0 +24423,68,12.5,33,0.0 +24423,12,38,45,0.0 +24424,71,21.5,28,0.0 +24424,2,19,1,0.0 +24424,35,18,47,0.0 +24424,24,4.5,33,0.0 +24424,30,25.89,4,0.0 +24424,44,19.45,2,0.0 +24424,5,21.35,44,0.0 +24424,11,21,10,0.0 +24424,3,10,3,0.0 +24424,60,34,23,0.0 +24424,61,28.5,7,0.0 +24424,69,36,37,0.0 +24424,13,6,41,0.0 +24424,72,34.8,5,0.0 +24424,74,10,5,0.0 +24424,39,18,50,0.0 +24424,36,19,17,0.0 +24424,59,55,3,0.0 +24424,49,20,40,0.0 +24424,42,14,35,0.0 +24424,62,49.3,14,0.0 +24424,63,43.9,31,0.0 +24424,53,32.8,43,0.0 +24424,41,9.65,36,0.0 +24424,52,7,36,0.0 +24424,54,7.45,19,0.0 +24424,67,14,3,0.0 +24424,22,21,29,0.0 +24424,70,15,30,0.0 +24424,31,12.5,8,0.0 +24424,65,21.05,31,0.0 +24424,66,17,6,0.0 +24424,33,2.5,47,0.0 +24424,27,43.9,50,0.0 +24424,18,62.5,41,0.0 +24424,16,17.45,19,0.0 +24424,15,15.5,39,0.0 +24424,46,12,8,0.0 +24424,47,9.5,11,0.0 +24424,68,12.5,32,0.0 +24424,17,39,38,0.0 +24424,6,25,48,0.0 +24424,40,18.4,49,0.0 +24424,57,19.5,21,0.0 +24424,25,14,9,0.0 +24424,45,9.5,36,0.0 +24424,48,12.75,50,0.0 +24424,29,123.79,45,0.0 +24424,73,15,37,0.0 +24424,19,9.2,22,0.0 +24424,20,81,11,0.0 +24424,43,46,26,0.0 +24424,8,40,43,0.0 +24424,4,22,20,0.0 +24424,14,23.25,5,0.0 +24424,75,7.75,10,0.0 +24424,64,33.25,30,0.0 +24424,51,53,8,0.0 +24424,26,31.23,35,0.0 +24424,77,13,20,0.0 +24424,23,9,3,0.0 +24424,38,263.5,48,0.0 +24424,34,14,3,0.0 +24424,58,13.25,29,0.0 +24424,50,16.25,15,0.0 +24424,37,26,28,0.0 +24424,12,38,43,0.0 +24424,56,38,19,0.0 +24424,76,18,28,0.0 +24425,43,46,47,0.0 +24425,74,10,28,0.0 +24425,38,263.5,5,0.0 +24425,31,12.5,10,0.0 +24425,10,31,45,0.0 +24425,48,12.75,18,0.0 +24425,61,28.5,8,0.0 +24425,50,16.25,46,0.0 +24425,76,18,29,0.0 +24425,46,12,5,0.0 +24425,26,31.23,19,0.0 +24425,67,14,41,0.0 +24425,53,32.8,37,0.0 +24425,20,81,23,0.0 +24425,23,9,50,0.0 +24425,40,18.4,45,0.0 +24425,57,19.5,27,0.0 +24425,37,26,9,0.0 +24425,56,38,49,0.0 +24425,29,123.79,25,0.0 +24425,63,43.9,7,0.0 +24425,70,15,22,0.0 +24425,54,7.45,31,0.0 +24425,33,2.5,7,0.0 +24425,52,7,23,0.0 +24425,71,21.5,8,0.0 +24425,73,15,22,0.0 +24425,55,24,10,0.0 +24425,75,7.75,4,0.0 +24425,34,14,29,0.0 +24425,25,14,23,0.0 +24425,77,13,19,0.0 +24425,19,9.2,17,0.0 +24425,66,17,21,0.0 +24425,8,40,46,0.0 +24425,1,18,5,0.0 +24425,64,33.25,12,0.0 +24425,27,43.9,50,0.0 +24425,16,17.45,50,0.0 +24425,32,32,44,0.0 +24425,41,9.65,39,0.0 +24425,69,36,21,0.0 +24426,74,10,29,0.0 +24426,62,49.3,49,0.0 +24426,66,17,43,0.0 +24426,2,19,12,0.0 +24426,19,9.2,3,0.0 +24426,11,21,25,0.0 +24426,38,263.5,3,0.0 +24426,72,34.8,48,0.0 +24426,45,9.5,24,0.0 +24426,42,14,4,0.0 +24426,23,9,14,0.0 +24426,5,21.35,6,0.0 +24426,40,18.4,26,0.0 +24426,69,36,33,0.0 +24426,17,39,27,0.0 +24426,59,55,8,0.0 +24426,76,18,40,0.0 +24426,8,40,13,0.0 +24426,44,19.45,20,0.0 +24426,1,18,30,0.0 +24426,31,12.5,36,0.0 +24426,35,18,44,0.0 +24426,34,14,19,0.0 +24426,52,7,19,0.0 +24426,27,43.9,47,0.0 +24426,9,97,26,0.0 +24426,65,21.05,47,0.0 +24426,15,15.5,18,0.0 +24426,51,53,42,0.0 +24426,68,12.5,19,0.0 +24426,53,32.8,40,0.0 +24426,39,18,25,0.0 +24426,12,38,3,0.0 +24426,4,22,3,0.0 +24426,6,25,23,0.0 +24426,25,14,7,0.0 +24426,22,21,15,0.0 +24426,48,12.75,2,0.0 +24426,60,34,44,0.0 +24426,77,13,49,0.0 +24426,54,7.45,14,0.0 +24426,20,81,8,0.0 +24426,28,45.6,8,0.0 +24426,21,10,10,0.0 +24426,13,6,36,0.0 +24426,14,23.25,42,0.0 +24426,63,43.9,37,0.0 +24426,64,33.25,16,0.0 +24426,58,13.25,25,0.0 +24426,26,31.23,30,0.0 +24426,3,10,47,0.0 +24426,36,19,38,0.0 +24426,32,32,47,0.0 +24426,24,4.5,5,0.0 +24426,43,46,7,0.0 +24426,33,2.5,31,0.0 +24426,56,38,11,0.0 +24426,16,17.45,40,0.0 +24426,55,24,40,0.0 +24426,67,14,3,0.0 +24426,7,30,48,0.0 +24426,46,12,3,0.0 +24426,49,20,9,0.0 +24426,71,21.5,43,0.0 +24426,30,25.89,10,0.0 +24426,70,15,16,0.0 +24427,20,81,24,0.0 +24427,16,17.45,27,0.0 +24427,74,10,27,0.0 +24427,5,21.35,20,0.0 +24427,63,43.9,23,0.0 +24427,8,40,45,0.0 +24427,58,13.25,35,0.0 +24427,73,15,9,0.0 +24427,48,12.75,4,0.0 +24427,71,21.5,27,0.0 +24427,2,19,8,0.0 +24427,22,21,44,0.0 +24427,62,49.3,21,0.0 +24427,40,18.4,18,0.0 +24427,66,17,15,0.0 +24427,6,25,46,0.0 +24427,49,20,9,0.0 +24427,30,25.89,13,0.0 +24427,75,7.75,31,0.0 +24427,54,7.45,6,0.0 +24427,15,15.5,48,0.0 +24428,70,15,45,0.0 +24428,28,45.6,31,0.0 +24428,21,10,41,0.0 +24428,19,9.2,32,0.0 +24428,2,19,21,0.0 +24428,30,25.89,5,0.0 +24428,56,38,18,0.0 +24428,54,7.45,24,0.0 +24428,60,34,2,0.0 +24428,23,9,15,0.0 +24428,73,15,31,0.0 +24428,34,14,13,0.0 +24428,15,15.5,36,0.0 +24428,61,28.5,29,0.0 +24428,45,9.5,10,0.0 +24428,42,14,8,0.0 +24428,62,49.3,18,0.0 +24428,65,21.05,10,0.0 +24428,40,18.4,27,0.0 +24428,29,123.79,23,0.0 +24428,58,13.25,10,0.0 +24428,8,40,45,0.0 +24428,17,39,48,0.0 +24428,69,36,20,0.0 +24428,25,14,9,0.0 +24428,37,26,46,0.0 +24428,39,18,25,0.0 +24428,31,12.5,48,0.0 +24428,71,21.5,37,0.0 +24428,6,25,44,0.0 +24428,55,24,23,0.0 +24428,47,9.5,8,0.0 +24428,75,7.75,11,0.0 +24428,52,7,31,0.0 +24428,46,12,9,0.0 +24428,1,18,8,0.0 +24428,32,32,26,0.0 +24428,51,53,7,0.0 +24428,77,13,38,0.0 +24428,59,55,28,0.0 +24428,57,19.5,42,0.0 +24428,76,18,40,0.0 +24428,53,32.8,40,0.0 +24428,12,38,39,0.0 +24428,7,30,50,0.0 +24428,38,263.5,16,0.0 +24428,24,4.5,30,0.0 +24429,26,31.23,33,0.0 +24429,22,21,26,0.0 +24429,5,21.35,8,0.0 +24429,21,10,32,0.0 +24429,36,19,41,0.0 +24429,66,17,34,0.0 +24429,11,21,4,0.0 +24429,20,81,30,0.0 +24429,27,43.9,48,0.0 +24429,10,31,12,0.0 +24429,3,10,1,0.0 +24429,70,15,22,0.0 +24429,49,20,46,0.0 +24429,25,14,13,0.0 +24429,59,55,14,0.0 +24429,4,22,24,0.0 +24429,73,15,31,0.0 +24429,72,34.8,27,0.0 +24429,68,12.5,42,0.0 +24429,34,14,18,0.0 +24429,23,9,12,0.0 +24429,76,18,20,0.0 +24429,55,24,4,0.0 +24429,31,12.5,4,0.0 +24429,8,40,33,0.0 +24429,39,18,47,0.0 +24429,19,9.2,27,0.0 +24429,57,19.5,49,0.0 +24429,69,36,15,0.0 +24429,41,9.65,21,0.0 +24429,58,13.25,22,0.0 +24430,44,19.45,3,0.0 +24430,24,4.5,9,0.0 +24430,20,81,30,0.0 +24430,69,36,2,0.0 +24430,35,18,6,0.0 +24430,53,32.8,31,0.0 +24430,23,9,50,0.0 +24430,7,30,33,0.0 +24430,19,9.2,2,0.0 +24430,48,12.75,33,0.0 +24430,2,19,21,0.0 +24430,22,21,48,0.0 +24430,5,21.35,48,0.0 +24430,25,14,44,0.0 +24430,15,15.5,3,0.0 +24430,31,12.5,26,0.0 +24430,13,6,26,0.0 +24430,34,14,49,0.0 +24430,52,7,38,0.0 +24430,37,26,1,0.0 +24430,68,12.5,40,0.0 +24430,72,34.8,45,0.0 +24430,51,53,39,0.0 +24430,49,20,44,0.0 +24430,4,22,20,0.0 +24430,63,43.9,27,0.0 +24430,18,62.5,41,0.0 +24430,11,21,44,0.0 +24430,28,45.6,28,0.0 +24430,76,18,20,0.0 +24430,73,15,25,0.0 +24430,40,18.4,28,0.0 +24430,57,19.5,46,0.0 +24430,46,12,38,0.0 +24430,21,10,44,0.0 +24430,61,28.5,49,0.0 +24430,39,18,41,0.0 +24430,36,19,19,0.0 +24430,75,7.75,39,0.0 +24430,38,263.5,32,0.0 +24430,9,97,30,0.0 +24430,59,55,50,0.0 +24430,58,13.25,13,0.0 +24430,17,39,19,0.0 +24430,67,14,16,0.0 +24430,77,13,34,0.0 +24430,74,10,26,0.0 +24430,30,25.89,48,0.0 +24430,16,17.45,24,0.0 +24430,10,31,23,0.0 +24430,65,21.05,6,0.0 +24430,70,15,38,0.0 +24430,1,18,44,0.0 +24430,33,2.5,9,0.0 +24430,50,16.25,10,0.0 +24430,66,17,9,0.0 +24430,29,123.79,38,0.0 +24430,3,10,33,0.0 +24430,56,38,29,0.0 +24431,32,32,6,0.0 +24431,68,12.5,34,0.0 +24431,19,9.2,22,0.0 +24431,44,19.45,6,0.0 +24431,27,43.9,42,0.0 +24431,34,14,40,0.0 +24431,13,6,40,0.0 +24431,62,49.3,16,0.0 +24431,42,14,31,0.0 +24431,67,14,42,0.0 +24431,29,123.79,50,0.0 +24431,39,18,41,0.0 +24431,17,39,27,0.0 +24431,6,25,12,0.0 +24431,74,10,20,0.0 +24431,28,45.6,8,0.0 +24431,38,263.5,38,0.0 +24431,48,12.75,8,0.0 +24431,45,9.5,19,0.0 +24431,23,9,27,0.0 +24431,69,36,5,0.0 +24431,46,12,2,0.0 +24431,10,31,45,0.0 +24431,60,34,20,0.0 +24431,73,15,14,0.0 +24431,5,21.35,15,0.0 +24431,65,21.05,14,0.0 +24431,30,25.89,50,0.0 +24431,51,53,48,0.0 +24431,57,19.5,31,0.0 +24431,56,38,47,0.0 +24431,76,18,30,0.0 +24431,1,18,41,0.0 +24431,26,31.23,31,0.0 +24431,25,14,49,0.0 +24432,63,43.9,36,0.0 +24432,27,43.9,19,0.0 +24432,56,38,4,0.0 +24432,58,13.25,6,0.0 +24432,52,7,43,0.0 +24432,43,46,2,0.0 +24432,76,18,10,0.0 +24432,60,34,48,0.0 +24432,77,13,13,0.0 +24432,47,9.5,20,0.0 +24432,46,12,49,0.0 +24432,65,21.05,46,0.0 +24432,32,32,39,0.0 +24433,62,49.3,33,0.0 +24433,35,18,43,0.0 +24433,71,21.5,26,0.0 +24433,30,25.89,14,0.0 +24433,6,25,25,0.0 +24433,42,14,25,0.0 +24433,65,21.05,34,0.0 +24433,54,7.45,48,0.0 +24433,2,19,17,0.0 +24433,31,12.5,7,0.0 +24433,60,34,38,0.0 +24433,56,38,35,0.0 +24433,51,53,41,0.0 +24433,4,22,24,0.0 +24433,37,26,41,0.0 +24433,55,24,40,0.0 +24433,7,30,31,0.0 +24433,69,36,48,0.0 +24433,29,123.79,14,0.0 +24434,49,20,3,0.0 +24434,59,55,43,0.0 +24434,24,4.5,5,0.0 +24434,43,46,17,0.0 +24434,73,15,20,0.0 +24434,2,19,22,0.0 +24434,13,6,32,0.0 +24434,35,18,8,0.0 +24434,62,49.3,13,0.0 +24434,77,13,45,0.0 +24434,14,23.25,37,0.0 +24434,71,21.5,5,0.0 +24434,11,21,41,0.0 +24434,25,14,13,0.0 +24434,15,15.5,6,0.0 +24434,27,43.9,2,0.0 +24434,55,24,27,0.0 +24434,41,9.65,22,0.0 +24434,31,12.5,44,0.0 +24434,19,9.2,19,0.0 +24434,23,9,11,0.0 +24434,67,14,30,0.0 +24434,32,32,21,0.0 +24434,29,123.79,48,0.0 +24434,39,18,47,0.0 +24434,37,26,44,0.0 +24434,64,33.25,35,0.0 +24434,18,62.5,16,0.0 +24434,20,81,14,0.0 +24434,66,17,49,0.0 +24434,28,45.6,49,0.0 +24434,70,15,24,0.0 +24434,60,34,6,0.0 +24434,8,40,16,0.0 +24434,74,10,38,0.0 +24434,75,7.75,34,0.0 +24434,50,16.25,44,0.0 +24434,40,18.4,18,0.0 +24434,3,10,26,0.0 +24434,46,12,3,0.0 +24434,53,32.8,41,0.0 +24434,12,38,11,0.0 +24434,51,53,12,0.0 +24434,47,9.5,37,0.0 +24434,10,31,12,0.0 +24434,36,19,39,0.0 +24434,69,36,26,0.0 +24434,57,19.5,48,0.0 +24434,72,34.8,15,0.0 +24434,30,25.89,37,0.0 +24434,21,10,50,0.0 +24434,22,21,46,0.0 +24434,63,43.9,34,0.0 +24434,34,14,49,0.0 +24434,68,12.5,43,0.0 +24434,33,2.5,44,0.0 +24434,44,19.45,4,0.0 +24434,16,17.45,1,0.0 +24434,4,22,3,0.0 +24434,54,7.45,6,0.0 +24435,76,18,10,0.0 +24435,72,34.8,22,0.0 +24435,56,38,29,0.0 +24435,57,19.5,12,0.0 +24435,25,14,48,0.0 +24435,16,17.45,3,0.0 +24435,19,9.2,29,0.0 +24435,20,81,6,0.0 +24435,73,15,3,0.0 +24435,37,26,24,0.0 +24435,21,10,31,0.0 +24435,34,14,42,0.0 +24435,17,39,49,0.0 +24435,11,21,19,0.0 +24435,75,7.75,13,0.0 +24435,9,97,11,0.0 +24435,65,21.05,43,0.0 +24435,26,31.23,26,0.0 +24435,1,18,34,0.0 +24435,7,30,8,0.0 +24435,10,31,50,0.0 +24435,33,2.5,1,0.0 +24435,12,38,46,0.0 +24436,58,13.25,31,0.0 +24436,38,263.5,44,0.0 +24436,59,55,21,0.0 +24436,43,46,31,0.0 +24436,9,97,43,0.0 +24436,54,7.45,1,0.0 +24436,50,16.25,13,0.0 +24436,36,19,29,0.0 +24436,24,4.5,8,0.0 +24436,1,18,27,0.0 +24436,21,10,46,0.0 +24436,53,32.8,18,0.0 +24436,48,12.75,21,0.0 +24436,20,81,42,0.0 +24436,4,22,32,0.0 +24436,57,19.5,10,0.0 +24436,30,25.89,13,0.0 +24436,69,36,29,0.0 +24436,12,38,42,0.0 +24436,51,53,41,0.0 +24436,73,15,40,0.0 +24436,25,14,37,0.0 +24436,22,21,19,0.0 +24436,40,18.4,9,0.0 +24436,47,9.5,16,0.0 +24436,31,12.5,9,0.0 +24436,60,34,12,0.0 +24436,66,17,50,0.0 +24436,77,13,17,0.0 +24436,61,28.5,6,0.0 +24436,75,7.75,48,0.0 +24436,29,123.79,30,0.0 +24436,19,9.2,22,0.0 +24436,62,49.3,21,0.0 +24436,23,9,30,0.0 +24436,16,17.45,20,0.0 +24436,5,21.35,40,0.0 +24436,64,33.25,25,0.0 +24436,46,12,22,0.0 +24436,2,19,47,0.0 +24436,72,34.8,24,0.0 +24436,27,43.9,10,0.0 +24436,14,23.25,36,0.0 +24436,45,9.5,44,0.0 +24436,71,21.5,1,0.0 +24436,15,15.5,44,0.0 +24436,28,45.6,2,0.0 +24436,49,20,37,0.0 +24436,52,7,13,0.0 +24436,67,14,34,0.0 +24436,8,40,26,0.0 +24436,34,14,1,0.0 +24436,7,30,44,0.0 +24436,11,21,3,0.0 +24436,33,2.5,37,0.0 +24436,42,14,42,0.0 +24436,18,62.5,10,0.0 +24436,41,9.65,22,0.0 +24436,74,10,40,0.0 +24436,32,32,34,0.0 +24436,70,15,28,0.0 +24436,10,31,9,0.0 +24437,37,26,29,0.0 +24437,6,25,18,0.0 +24437,66,17,37,0.0 +24437,3,10,41,0.0 +24437,67,14,32,0.0 +24437,19,9.2,11,0.0 +24437,11,21,21,0.0 +24437,50,16.25,32,0.0 +24437,13,6,26,0.0 +24437,52,7,13,0.0 +24437,49,20,44,0.0 +24437,51,53,47,0.0 +24437,60,34,9,0.0 +24437,56,38,4,0.0 +24437,33,2.5,25,0.0 +24437,2,19,34,0.0 +24437,57,19.5,6,0.0 +24437,75,7.75,25,0.0 +24437,27,43.9,3,0.0 +24437,34,14,41,0.0 +24437,54,7.45,21,0.0 +24437,40,18.4,16,0.0 +24437,21,10,13,0.0 +24437,10,31,28,0.0 +24437,12,38,2,0.0 +24437,28,45.6,45,0.0 +24437,55,24,40,0.0 +24437,48,12.75,41,0.0 +24437,46,12,21,0.0 +24437,39,18,44,0.0 +24437,38,263.5,19,0.0 +24437,25,14,17,0.0 +24437,68,12.5,34,0.0 +24438,14,23.25,9,0.0 +24438,46,12,50,0.0 +24438,57,19.5,15,0.0 +24438,75,7.75,38,0.0 +24438,72,34.8,28,0.0 +24438,74,10,7,0.0 +24438,15,15.5,15,0.0 +24438,25,14,10,0.0 +24439,60,34,47,0.0 +24439,25,14,50,0.0 +24439,9,97,8,0.0 +24439,37,26,29,0.0 +24439,26,31.23,24,0.0 +24439,28,45.6,32,0.0 +24439,51,53,10,0.0 +24439,62,49.3,13,0.0 +24439,75,7.75,20,0.0 +24439,33,2.5,11,0.0 +24439,30,25.89,48,0.0 +24439,24,4.5,42,0.0 +24439,74,10,3,0.0 +24439,66,17,49,0.0 +24439,59,55,40,0.0 +24439,52,7,27,0.0 +24439,31,12.5,22,0.0 +24439,65,21.05,5,0.0 +24439,16,17.45,17,0.0 +24439,55,24,49,0.0 +24439,4,22,32,0.0 +24439,17,39,45,0.0 +24439,44,19.45,13,0.0 +24439,3,10,22,0.0 +24439,21,10,26,0.0 +24439,8,40,24,0.0 +24439,58,13.25,14,0.0 +24439,36,19,16,0.0 +24439,18,62.5,38,0.0 +24439,76,18,17,0.0 +24439,61,28.5,40,0.0 +24439,72,34.8,48,0.0 +24439,38,263.5,30,0.0 +24439,47,9.5,26,0.0 +24439,10,31,29,0.0 +24439,5,21.35,40,0.0 +24439,69,36,37,0.0 +24439,32,32,42,0.0 +24439,67,14,4,0.0 +24439,35,18,50,0.0 +24439,39,18,22,0.0 +24439,45,9.5,44,0.0 +24439,2,19,48,0.0 +24439,64,33.25,19,0.0 +24439,19,9.2,30,0.0 +24439,43,46,49,0.0 +24439,6,25,5,0.0 +24439,15,15.5,24,0.0 +24439,48,12.75,30,0.0 +24439,27,43.9,33,0.0 +24439,1,18,36,0.0 +24439,20,81,29,0.0 +24439,13,6,19,0.0 +24439,56,38,19,0.0 +24439,40,18.4,47,0.0 +24439,22,21,6,0.0 +24439,14,23.25,36,0.0 +24439,7,30,45,0.0 +24439,68,12.5,35,0.0 +24439,12,38,24,0.0 +24439,34,14,18,0.0 +24439,11,21,44,0.0 +24440,74,10,15,0.0 +24440,26,31.23,31,0.0 +24440,30,25.89,21,0.0 +24440,34,14,5,0.0 +24440,50,16.25,10,0.0 +24440,24,4.5,25,0.0 +24440,29,123.79,46,0.0 +24440,1,18,24,0.0 +24440,44,19.45,39,0.0 +24440,43,46,43,0.0 +24440,57,19.5,28,0.0 +24440,13,6,3,0.0 +24440,47,9.5,39,0.0 +24440,65,21.05,45,0.0 +24440,25,14,22,0.0 +24440,28,45.6,16,0.0 +24440,71,21.5,31,0.0 +24440,32,32,29,0.0 +24440,61,28.5,3,0.0 +24440,16,17.45,44,0.0 +24440,31,12.5,34,0.0 +24440,21,10,21,0.0 +24440,8,40,42,0.0 +24440,40,18.4,40,0.0 +24440,46,12,13,0.0 +24440,36,19,25,0.0 +24440,6,25,2,0.0 +24440,67,14,40,0.0 +24440,56,38,1,0.0 +24440,17,39,9,0.0 +24440,12,38,6,0.0 +24440,55,24,10,0.0 +24440,35,18,24,0.0 +24440,45,9.5,39,0.0 +24440,49,20,29,0.0 +24440,51,53,29,0.0 +24440,41,9.65,6,0.0 +24440,7,30,6,0.0 +24440,70,15,33,0.0 +24440,33,2.5,14,0.0 +24440,59,55,25,0.0 +24440,37,26,44,0.0 +24440,5,21.35,33,0.0 +24440,9,97,50,0.0 +24440,27,43.9,3,0.0 +24440,58,13.25,5,0.0 +24440,68,12.5,16,0.0 +24440,39,18,21,0.0 +24440,69,36,42,0.0 +24440,20,81,21,0.0 +24440,72,34.8,19,0.0 +24440,2,19,29,0.0 +24440,75,7.75,17,0.0 +24440,60,34,48,0.0 +24440,77,13,1,0.0 +24440,23,9,5,0.0 +24440,42,14,24,0.0 +24440,73,15,24,0.0 +24440,54,7.45,50,0.0 +24440,66,17,16,0.0 +24440,10,31,29,0.0 +24440,11,21,25,0.0 +24440,19,9.2,47,0.0 +24440,15,15.5,12,0.0 +24440,64,33.25,23,0.0 +24440,62,49.3,23,0.0 +24440,53,32.8,30,0.0 +24440,14,23.25,3,0.0 +24440,52,7,24,0.0 +24440,76,18,28,0.0 +24440,18,62.5,23,0.0 +24441,15,15.5,13,0.0 +24441,22,21,5,0.0 +24441,8,40,29,0.0 +24441,29,123.79,7,0.0 +24441,5,21.35,12,0.0 +24441,21,10,38,0.0 +24441,64,33.25,27,0.0 +24441,36,19,50,0.0 +24441,31,12.5,5,0.0 +24441,44,19.45,19,0.0 +24441,7,30,32,0.0 +24441,9,97,34,0.0 +24441,76,18,48,0.0 +24441,41,9.65,33,0.0 +24441,10,31,50,0.0 +24441,12,38,33,0.0 +24441,48,12.75,34,0.0 +24441,52,7,34,0.0 +24441,65,21.05,38,0.0 +24441,68,12.5,17,0.0 +24441,25,14,32,0.0 +24441,26,31.23,36,0.0 +24441,34,14,18,0.0 +24441,39,18,12,0.0 +24441,32,32,19,0.0 +24441,46,12,38,0.0 +24441,38,263.5,37,0.0 +24441,66,17,24,0.0 +24441,50,16.25,7,0.0 +24441,13,6,15,0.0 +24441,51,53,28,0.0 +24441,14,23.25,20,0.0 +24441,1,18,32,0.0 +24441,73,15,4,0.0 +24441,30,25.89,36,0.0 +24441,3,10,8,0.0 +24441,19,9.2,9,0.0 +24441,24,4.5,42,0.0 +24441,27,43.9,18,0.0 +24441,37,26,16,0.0 +24442,63,43.9,19,0.0 +24442,36,19,36,0.0 +24442,6,25,45,0.0 +24442,74,10,4,0.0 +24442,10,31,48,0.0 +24442,27,43.9,14,0.0 +24442,69,36,8,0.0 +24442,35,18,37,0.0 +24442,73,15,18,0.0 +24442,62,49.3,2,0.0 +24442,75,7.75,32,0.0 +24442,52,7,30,0.0 +24442,38,263.5,27,0.0 +24442,44,19.45,36,0.0 +24442,72,34.8,16,0.0 +24442,13,6,21,0.0 +24442,26,31.23,44,0.0 +24442,11,21,21,0.0 +24442,46,12,21,0.0 +24442,17,39,31,0.0 +24442,42,14,50,0.0 +24442,76,18,50,0.0 +24442,20,81,44,0.0 +24442,60,34,15,0.0 +24442,19,9.2,4,0.0 +24442,45,9.5,43,0.0 +24442,28,45.6,50,0.0 +24442,68,12.5,5,0.0 +24442,2,19,49,0.0 +24442,41,9.65,22,0.0 +24442,37,26,14,0.0 +24442,3,10,29,0.0 +24442,5,21.35,37,0.0 +24442,71,21.5,37,0.0 +24442,67,14,18,0.0 +24442,50,16.25,9,0.0 +24442,39,18,16,0.0 +24442,9,97,8,0.0 +24442,21,10,29,0.0 +24443,23,9,5,0.0 +24443,14,23.25,49,0.0 +24443,35,18,33,0.0 +24443,40,18.4,23,0.0 +24443,48,12.75,10,0.0 +24443,55,24,11,0.0 +24443,32,32,43,0.0 +24443,60,34,27,0.0 +24443,3,10,6,0.0 +24443,2,19,2,0.0 +24443,71,21.5,47,0.0 +24443,20,81,42,0.0 +24443,13,6,7,0.0 +24444,15,15.5,36,0.0 +24444,63,43.9,48,0.0 +24444,46,12,47,0.0 +24444,23,9,44,0.0 +24444,29,123.79,4,0.0 +24444,36,19,16,0.0 +24444,55,24,40,0.0 +24444,9,97,30,0.0 +24444,40,18.4,23,0.0 +24444,19,9.2,47,0.0 +24444,50,16.25,21,0.0 +24444,20,81,35,0.0 +24444,37,26,21,0.0 +24444,33,2.5,16,0.0 +24444,24,4.5,10,0.0 +24444,69,36,28,0.0 +24444,49,20,2,0.0 +24444,2,19,19,0.0 +24444,10,31,15,0.0 +24444,57,19.5,14,0.0 +24444,35,18,41,0.0 +24444,74,10,12,0.0 +24444,18,62.5,8,0.0 +24444,66,17,31,0.0 +24444,6,25,36,0.0 +24444,34,14,7,0.0 +24444,60,34,40,0.0 +24444,53,32.8,4,0.0 +24444,56,38,23,0.0 +24445,60,34,49,0.0 +24445,39,18,11,0.0 +24445,72,34.8,36,0.0 +24445,62,49.3,3,0.0 +24445,21,10,44,0.0 +24445,38,263.5,47,0.0 +24445,22,21,25,0.0 +24445,67,14,21,0.0 +24445,59,55,26,0.0 +24445,68,12.5,29,0.0 +24445,15,15.5,36,0.0 +24445,17,39,5,0.0 +24445,16,17.45,5,0.0 +24445,4,22,28,0.0 +24445,56,38,31,0.0 +24445,64,33.25,6,0.0 +24446,56,38,27,0.0 +24446,62,49.3,21,0.0 +24446,31,12.5,11,0.0 +24446,8,40,4,0.0 +24446,28,45.6,43,0.0 +24446,66,17,40,0.0 +24446,45,9.5,33,0.0 +24446,41,9.65,15,0.0 +24446,32,32,10,0.0 +24446,36,19,46,0.0 +24446,9,97,41,0.0 +24446,60,34,41,0.0 +24446,53,32.8,37,0.0 +24446,50,16.25,4,0.0 +24446,34,14,42,0.0 +24446,47,9.5,36,0.0 +24446,51,53,30,0.0 +24446,39,18,3,0.0 +24446,5,21.35,41,0.0 +24446,33,2.5,35,0.0 +24446,26,31.23,42,0.0 +24446,35,18,31,0.0 +24447,20,81,5,0.0 +24447,13,6,28,0.0 +24447,52,7,12,0.0 +24447,63,43.9,48,0.0 +24447,61,28.5,21,0.0 +24447,7,30,25,0.0 +24447,19,9.2,35,0.0 +24447,10,31,25,0.0 +24447,41,9.65,33,0.0 +24447,72,34.8,2,0.0 +24447,11,21,13,0.0 +24447,58,13.25,47,0.0 +24447,65,21.05,26,0.0 +24447,1,18,21,0.0 +24447,73,15,30,0.0 +24447,24,4.5,12,0.0 +24447,47,9.5,26,0.0 +24447,3,10,37,0.0 +24447,77,13,13,0.0 +24447,4,22,44,0.0 +24447,67,14,42,0.0 +24447,70,15,26,0.0 +24447,69,36,9,0.0 +24447,8,40,36,0.0 +24447,25,14,18,0.0 +24447,17,39,28,0.0 +24447,21,10,38,0.0 +24447,15,15.5,22,0.0 +24447,68,12.5,41,0.0 +24447,44,19.45,1,0.0 +24447,5,21.35,17,0.0 +24447,12,38,19,0.0 +24447,60,34,33,0.0 +24447,42,14,29,0.0 +24447,76,18,24,0.0 +24447,64,33.25,37,0.0 +24447,31,12.5,34,0.0 +24447,30,25.89,22,0.0 +24447,50,16.25,5,0.0 +24447,75,7.75,40,0.0 +24447,71,21.5,48,0.0 +24447,53,32.8,37,0.0 +24447,9,97,32,0.0 +24447,35,18,22,0.0 +24447,22,21,30,0.0 +24447,2,19,40,0.0 +24447,66,17,1,0.0 +24447,36,19,15,0.0 +24447,39,18,2,0.0 +24447,45,9.5,28,0.0 +24447,32,32,45,0.0 +24447,34,14,28,0.0 +24447,28,45.6,11,0.0 +24447,37,26,18,0.0 +24447,33,2.5,27,0.0 +24447,74,10,9,0.0 +24447,49,20,19,0.0 +24447,43,46,4,0.0 +24447,56,38,25,0.0 +24447,23,9,20,0.0 +24447,51,53,20,0.0 +24447,48,12.75,7,0.0 +24447,18,62.5,30,0.0 +24447,26,31.23,6,0.0 +24447,59,55,36,0.0 +24447,38,263.5,14,0.0 +24448,46,12,13,0.0 +24448,71,21.5,36,0.0 +24448,54,7.45,13,0.0 +24448,26,31.23,33,0.0 +24448,36,19,33,0.0 +24448,1,18,25,0.0 +24448,69,36,23,0.0 +24448,3,10,23,0.0 +24448,41,9.65,48,0.0 +24448,67,14,47,0.0 +24448,12,38,30,0.0 +24448,68,12.5,29,0.0 +24448,28,45.6,3,0.0 +24448,8,40,15,0.0 +24448,50,16.25,1,0.0 +24448,44,19.45,44,0.0 +24448,38,263.5,46,0.0 +24448,57,19.5,46,0.0 +24448,30,25.89,50,0.0 +24448,76,18,11,0.0 +24448,20,81,40,0.0 +24448,64,33.25,21,0.0 +24448,18,62.5,2,0.0 +24448,32,32,23,0.0 +24448,24,4.5,26,0.0 +24448,72,34.8,7,0.0 +24448,52,7,43,0.0 +24448,9,97,2,0.0 +24448,60,34,26,0.0 +24448,45,9.5,29,0.0 +24448,55,24,35,0.0 +24448,43,46,6,0.0 +24448,39,18,26,0.0 +24448,23,9,15,0.0 +24448,77,13,2,0.0 +24448,53,32.8,41,0.0 +24448,2,19,16,0.0 +24448,56,38,35,0.0 +24448,74,10,26,0.0 +24448,33,2.5,27,0.0 +24448,51,53,1,0.0 +24448,15,15.5,13,0.0 +24448,21,10,1,0.0 +24448,34,14,13,0.0 +24448,16,17.45,48,0.0 +24448,6,25,12,0.0 +24448,42,14,30,0.0 +24448,61,28.5,3,0.0 +24448,63,43.9,34,0.0 +24448,14,23.25,26,0.0 +24448,37,26,45,0.0 +24448,35,18,42,0.0 +24448,66,17,7,0.0 +24448,49,20,34,0.0 +24448,19,9.2,15,0.0 +24448,70,15,49,0.0 +24448,73,15,47,0.0 +24449,35,18,21,0.0 +24449,76,18,9,0.0 +24449,40,18.4,3,0.0 +24449,46,12,26,0.0 +24449,14,23.25,5,0.0 +24449,69,36,42,0.0 +24449,53,32.8,36,0.0 +24449,20,81,29,0.0 +24449,72,34.8,41,0.0 +24449,77,13,18,0.0 +24449,42,14,3,0.0 +24449,11,21,9,0.0 +24449,17,39,4,0.0 +24449,6,25,12,0.0 +24449,10,31,35,0.0 +24449,41,9.65,15,0.0 +24449,67,14,49,0.0 +24449,62,49.3,24,0.0 +24449,52,7,7,0.0 +24449,34,14,21,0.0 +24449,4,22,19,0.0 +24449,7,30,31,0.0 +24449,29,123.79,22,0.0 +24449,39,18,7,0.0 +24450,42,14,4,0.0 +24450,4,22,33,0.0 +24450,47,9.5,5,0.0 +24450,48,12.75,17,0.0 +24450,67,14,28,0.0 +24450,41,9.65,47,0.0 +24450,35,18,39,0.0 +24450,6,25,25,0.0 +24450,11,21,9,0.0 +24450,16,17.45,5,0.0 +24450,9,97,12,0.0 +24450,12,38,31,0.0 +24450,51,53,19,0.0 +24451,64,33.25,25,0.0 +24451,68,12.5,14,0.0 +24451,66,17,14,0.0 +24451,20,81,7,0.0 +24451,4,22,18,0.0 +24451,69,36,27,0.0 +24451,37,26,9,0.0 +24451,26,31.23,29,0.0 +24451,35,18,31,0.0 +24451,44,19.45,13,0.0 +24451,14,23.25,27,0.0 +24451,61,28.5,31,0.0 +24451,39,18,38,0.0 +24451,7,30,48,0.0 +24451,16,17.45,41,0.0 +24451,49,20,37,0.0 +24451,6,25,2,0.0 +24451,72,34.8,10,0.0 +24451,55,24,28,0.0 +24451,24,4.5,47,0.0 +24451,51,53,22,0.0 +24451,76,18,2,0.0 +24451,31,12.5,45,0.0 +24451,3,10,39,0.0 +24451,15,15.5,29,0.0 +24451,2,19,29,0.0 +24451,23,9,32,0.0 +24451,73,15,14,0.0 +24451,71,21.5,6,0.0 +24451,53,32.8,7,0.0 +24451,60,34,16,0.0 +24451,17,39,31,0.0 +24451,19,9.2,31,0.0 +24451,48,12.75,21,0.0 +24451,57,19.5,16,0.0 +24451,50,16.25,8,0.0 +24451,38,263.5,35,0.0 +24451,25,14,19,0.0 +24451,28,45.6,15,0.0 +24451,77,13,30,0.0 +24451,75,7.75,19,0.0 +24451,11,21,27,0.0 +24451,29,123.79,17,0.0 +24451,12,38,27,0.0 +24451,27,43.9,5,0.0 +24451,5,21.35,48,0.0 +24451,13,6,36,0.0 +24451,63,43.9,10,0.0 +24451,9,97,27,0.0 +24451,59,55,26,0.0 +24451,18,62.5,4,0.0 +24451,36,19,4,0.0 +24451,8,40,48,0.0 +24451,54,7.45,13,0.0 +24452,68,12.5,18,0.0 +24452,73,15,24,0.0 +24452,63,43.9,9,0.0 +24452,64,33.25,14,0.0 +24453,16,17.45,29,0.0 +24453,7,30,45,0.0 +24453,6,25,10,0.0 +24453,72,34.8,26,0.0 +24453,73,15,6,0.0 +24453,36,19,19,0.0 +24453,75,7.75,32,0.0 +24453,56,38,41,0.0 +24453,1,18,12,0.0 +24453,29,123.79,30,0.0 +24453,60,34,9,0.0 +24453,49,20,5,0.0 +24453,5,21.35,36,0.0 +24453,61,28.5,49,0.0 +24453,43,46,17,0.0 +24453,50,16.25,22,0.0 +24453,20,81,3,0.0 +24453,21,10,29,0.0 +24453,58,13.25,40,0.0 +24453,10,31,18,0.0 +24453,46,12,7,0.0 +24453,42,14,9,0.0 +24453,2,19,25,0.0 +24453,32,32,30,0.0 +24453,66,17,43,0.0 +24453,9,97,31,0.0 +24453,54,7.45,22,0.0 +24453,71,21.5,33,0.0 +24453,12,38,4,0.0 +24453,64,33.25,49,0.0 +24453,69,36,46,0.0 +24453,37,26,33,0.0 +24453,15,15.5,7,0.0 +24453,41,9.65,18,0.0 +24453,13,6,6,0.0 +24453,27,43.9,36,0.0 +24453,24,4.5,50,0.0 +24453,77,13,20,0.0 +24453,67,14,36,0.0 +24453,30,25.89,15,0.0 +24453,26,31.23,7,0.0 +24453,18,62.5,31,0.0 +24454,12,38,47,0.0 +24454,42,14,34,0.0 +24454,75,7.75,10,0.0 +24454,26,31.23,50,0.0 +24454,74,10,50,0.0 +24454,65,21.05,39,0.0 +24454,55,24,24,0.0 +24454,20,81,30,0.0 +24454,63,43.9,13,0.0 +24454,14,23.25,45,0.0 +24454,43,46,31,0.0 +24454,72,34.8,41,0.0 +24454,32,32,4,0.0 +24454,19,9.2,14,0.0 +24454,46,12,34,0.0 +24454,30,25.89,16,0.0 +24455,45,9.5,36,0.0 +24455,48,12.75,29,0.0 +24455,59,55,23,0.0 +24455,67,14,14,0.0 +24455,73,15,10,0.0 +24455,41,9.65,39,0.0 +24455,60,34,5,0.0 +24455,23,9,47,0.0 +24455,5,21.35,22,0.0 +24455,9,97,38,0.0 +24455,27,43.9,20,0.0 +24455,52,7,11,0.0 +24455,11,21,48,0.0 +24455,54,7.45,32,0.0 +24455,63,43.9,44,0.0 +24455,61,28.5,11,0.0 +24455,74,10,3,0.0 +24455,51,53,46,0.0 +24455,1,18,44,0.0 +24455,65,21.05,48,0.0 +24455,71,21.5,29,0.0 +24455,24,4.5,50,0.0 +24455,4,22,21,0.0 +24455,58,13.25,2,0.0 +24455,36,19,27,0.0 +24455,16,17.45,28,0.0 +24455,62,49.3,15,0.0 +24455,15,15.5,10,0.0 +24455,21,10,27,0.0 +24455,3,10,8,0.0 +24455,12,38,25,0.0 +24455,77,13,40,0.0 +24455,32,32,42,0.0 +24455,46,12,20,0.0 +24455,43,46,45,0.0 +24455,66,17,1,0.0 +24455,49,20,18,0.0 +24455,40,18.4,15,0.0 +24455,70,15,13,0.0 +24455,8,40,3,0.0 +24455,50,16.25,20,0.0 +24455,31,12.5,37,0.0 +24455,42,14,9,0.0 +24455,7,30,20,0.0 +24455,68,12.5,32,0.0 +24455,14,23.25,20,0.0 +24455,33,2.5,15,0.0 +24455,28,45.6,37,0.0 +24455,53,32.8,13,0.0 +24455,26,31.23,44,0.0 +24455,76,18,46,0.0 +24455,20,81,22,0.0 +24455,22,21,28,0.0 +24455,18,62.5,23,0.0 +24455,64,33.25,39,0.0 +24455,56,38,50,0.0 +24455,72,34.8,14,0.0 +24456,27,43.9,30,0.0 +24456,76,18,17,0.0 +24456,20,81,21,0.0 +24456,62,49.3,1,0.0 +24456,2,19,36,0.0 +24456,31,12.5,27,0.0 +24456,72,34.8,16,0.0 +24456,36,19,15,0.0 +24456,16,17.45,19,0.0 +24456,29,123.79,44,0.0 +24456,18,62.5,32,0.0 +24456,7,30,38,0.0 +24456,66,17,45,0.0 +24456,68,12.5,45,0.0 +24456,51,53,48,0.0 +24456,67,14,24,0.0 +24456,17,39,23,0.0 +24456,73,15,49,0.0 +24456,54,7.45,18,0.0 +24456,75,7.75,50,0.0 +24456,23,9,27,0.0 +24456,26,31.23,49,0.0 +24456,48,12.75,21,0.0 +24456,57,19.5,18,0.0 +24456,6,25,10,0.0 +24456,65,21.05,41,0.0 +24456,1,18,21,0.0 +24456,50,16.25,24,0.0 +24456,15,15.5,46,0.0 +24456,47,9.5,15,0.0 +24456,5,21.35,18,0.0 +24456,30,25.89,31,0.0 +24456,74,10,45,0.0 +24456,3,10,8,0.0 +24456,21,10,44,0.0 +24456,58,13.25,27,0.0 +24456,49,20,15,0.0 +24456,46,12,32,0.0 +24456,64,33.25,1,0.0 +24456,19,9.2,14,0.0 +24456,8,40,33,0.0 +24456,35,18,15,0.0 +24456,42,14,39,0.0 +24456,41,9.65,19,0.0 +24456,60,34,34,0.0 +24456,4,22,41,0.0 +24456,43,46,6,0.0 +24456,40,18.4,30,0.0 +24456,24,4.5,4,0.0 +24456,59,55,15,0.0 +24456,61,28.5,50,0.0 +24456,22,21,3,0.0 +24456,33,2.5,9,0.0 +24457,20,81,21,0.0 +24457,38,263.5,22,0.0 +24457,31,12.5,7,0.0 +24457,40,18.4,26,0.0 +24457,12,38,19,0.0 +24457,67,14,39,0.0 +24457,57,19.5,47,0.0 +24457,46,12,38,0.0 +24457,63,43.9,35,0.0 +24457,1,18,25,0.0 +24457,36,19,49,0.0 +24457,21,10,27,0.0 +24457,2,19,14,0.0 +24457,64,33.25,7,0.0 +24457,16,17.45,3,0.0 +24457,53,32.8,49,0.0 +24457,37,26,19,0.0 +24457,72,34.8,43,0.0 +24457,4,22,18,0.0 +24457,47,9.5,17,0.0 +24457,10,31,47,0.0 +24457,43,46,11,0.0 +24457,26,31.23,47,0.0 +24457,55,24,29,0.0 +24457,27,43.9,3,0.0 +24457,54,7.45,28,0.0 +24457,70,15,4,0.0 +24457,18,62.5,39,0.0 +24457,7,30,2,0.0 +24457,42,14,21,0.0 +24457,50,16.25,47,0.0 +24457,13,6,20,0.0 +24457,75,7.75,22,0.0 +24457,56,38,24,0.0 +24457,9,97,40,0.0 +24457,52,7,46,0.0 +24457,5,21.35,30,0.0 +24457,44,19.45,49,0.0 +24457,15,15.5,40,0.0 +24457,28,45.6,44,0.0 +24457,14,23.25,25,0.0 +24457,23,9,2,0.0 +24457,74,10,46,0.0 +24457,24,4.5,49,0.0 +24457,58,13.25,7,0.0 +24457,25,14,25,0.0 +24457,76,18,10,0.0 +24457,68,12.5,30,0.0 +24457,39,18,38,0.0 +24457,49,20,48,0.0 +24457,29,123.79,43,0.0 +24457,33,2.5,36,0.0 +24457,60,34,10,0.0 +24457,34,14,41,0.0 +24457,62,49.3,25,0.0 +24458,63,43.9,32,0.0 +24458,21,10,50,0.0 +24458,77,13,5,0.0 +24458,43,46,42,0.0 +24458,14,23.25,14,0.0 +24458,34,14,28,0.0 +24458,12,38,7,0.0 +24458,26,31.23,19,0.0 +24458,30,25.89,15,0.0 +24458,46,12,21,0.0 +24458,7,30,13,0.0 +24458,72,34.8,27,0.0 +24458,23,9,1,0.0 +24458,50,16.25,8,0.0 +24458,24,4.5,6,0.0 +24458,49,20,45,0.0 +24458,25,14,13,0.0 +24458,53,32.8,45,0.0 +24458,75,7.75,8,0.0 +24458,57,19.5,18,0.0 +24458,11,21,34,0.0 +24458,45,9.5,4,0.0 +24458,8,40,31,0.0 +24458,71,21.5,1,0.0 +24458,29,123.79,3,0.0 +24458,4,22,8,0.0 +24458,58,13.25,5,0.0 +24458,20,81,7,0.0 +24458,39,18,29,0.0 +24458,28,45.6,30,0.0 +24458,61,28.5,10,0.0 +24458,56,38,11,0.0 +24458,22,21,43,0.0 +24458,3,10,26,0.0 +24458,35,18,38,0.0 +24458,51,53,37,0.0 +24458,60,34,2,0.0 +24458,59,55,44,0.0 +24458,48,12.75,19,0.0 +24458,68,12.5,47,0.0 +24458,76,18,47,0.0 +24458,15,15.5,20,0.0 +24458,44,19.45,10,0.0 +24458,47,9.5,7,0.0 +24458,17,39,45,0.0 +24458,37,26,43,0.0 +24458,42,14,36,0.0 +24458,32,32,39,0.0 +24458,70,15,43,0.0 +24458,66,17,14,0.0 +24458,65,21.05,49,0.0 +24458,38,263.5,3,0.0 +24458,52,7,15,0.0 +24458,67,14,31,0.0 +24458,62,49.3,12,0.0 +24458,55,24,16,0.0 +24458,31,12.5,24,0.0 +24458,64,33.25,2,0.0 +24458,54,7.45,44,0.0 +24458,41,9.65,28,0.0 +24458,18,62.5,10,0.0 +24458,73,15,18,0.0 +24458,6,25,15,0.0 +24458,40,18.4,27,0.0 +24458,5,21.35,37,0.0 +24458,27,43.9,2,0.0 +24459,53,32.8,46,0.0 +24459,62,49.3,8,0.0 +24459,31,12.5,29,0.0 +24459,9,97,28,0.0 +24459,3,10,42,0.0 +24459,41,9.65,1,0.0 +24459,45,9.5,30,0.0 +24459,10,31,6,0.0 +24460,2,19,32,0.0 +24460,8,40,12,0.0 +24460,38,263.5,22,0.0 +24460,60,34,11,0.0 +24460,5,21.35,4,0.0 +24460,36,19,29,0.0 +24460,14,23.25,2,0.0 +24460,37,26,11,0.0 +24460,42,14,46,0.0 +24460,24,4.5,47,0.0 +24460,26,31.23,37,0.0 +24460,22,21,7,0.0 +24460,45,9.5,50,0.0 +24460,30,25.89,14,0.0 +24460,19,9.2,14,0.0 +24460,48,12.75,42,0.0 +24460,9,97,1,0.0 +24460,75,7.75,34,0.0 +24460,44,19.45,40,0.0 +24460,61,28.5,22,0.0 +24460,27,43.9,25,0.0 +24460,62,49.3,33,0.0 +24460,68,12.5,37,0.0 +24460,4,22,27,0.0 +24460,64,33.25,6,0.0 +24460,69,36,15,0.0 +24460,58,13.25,3,0.0 +24460,72,34.8,37,0.0 +24460,76,18,2,0.0 +24460,20,81,46,0.0 +24460,16,17.45,28,0.0 +24460,32,32,26,0.0 +24460,67,14,44,0.0 +24460,50,16.25,35,0.0 +24460,40,18.4,18,0.0 +24460,12,38,42,0.0 +24460,11,21,20,0.0 +24460,1,18,45,0.0 +24460,39,18,38,0.0 +24460,33,2.5,7,0.0 +24460,71,21.5,16,0.0 +24460,31,12.5,16,0.0 +24460,21,10,12,0.0 +24460,29,123.79,35,0.0 +24460,23,9,38,0.0 +24460,15,15.5,5,0.0 +24460,63,43.9,13,0.0 +24460,13,6,23,0.0 +24461,73,15,24,0.0 +24461,49,20,43,0.0 +24461,39,18,9,0.0 +24461,51,53,34,0.0 +24461,70,15,22,0.0 +24461,13,6,29,0.0 +24461,22,21,31,0.0 +24461,19,9.2,32,0.0 +24461,34,14,44,0.0 +24461,45,9.5,35,0.0 +24461,68,12.5,13,0.0 +24461,10,31,5,0.0 +24461,43,46,14,0.0 +24461,37,26,17,0.0 +24461,76,18,42,0.0 +24461,4,22,46,0.0 +24461,69,36,6,0.0 +24461,14,23.25,17,0.0 +24461,59,55,22,0.0 +24461,77,13,1,0.0 +24461,8,40,18,0.0 +24461,67,14,5,0.0 +24461,44,19.45,3,0.0 +24461,42,14,8,0.0 +24461,11,21,20,0.0 +24461,3,10,39,0.0 +24461,2,19,32,0.0 +24461,35,18,29,0.0 +24461,65,21.05,13,0.0 +24461,56,38,38,0.0 +24461,7,30,11,0.0 +24461,71,21.5,5,0.0 +24461,58,13.25,35,0.0 +24461,28,45.6,39,0.0 +24461,61,28.5,34,0.0 +24461,24,4.5,13,0.0 +24461,1,18,26,0.0 +24461,21,10,37,0.0 +24461,60,34,39,0.0 +24461,17,39,13,0.0 +24461,41,9.65,46,0.0 +24461,48,12.75,12,0.0 +24461,38,263.5,29,0.0 +24461,63,43.9,4,0.0 +24461,29,123.79,17,0.0 +24461,36,19,42,0.0 +24461,47,9.5,36,0.0 +24461,31,12.5,34,0.0 +24461,23,9,10,0.0 +24461,40,18.4,17,0.0 +24461,57,19.5,37,0.0 +24461,5,21.35,40,0.0 +24462,40,18.4,24,0.0 +24462,76,18,49,0.0 +24462,69,36,8,0.0 +24462,38,263.5,36,0.0 +24462,55,24,45,0.0 +24462,20,81,37,0.0 +24462,30,25.89,24,0.0 +24462,58,13.25,21,0.0 +24462,48,12.75,25,0.0 +24462,28,45.6,13,0.0 +24462,37,26,15,0.0 +24462,67,14,6,0.0 +24462,51,53,29,0.0 +24462,71,21.5,49,0.0 +24462,42,14,16,0.0 +24462,1,18,32,0.0 +24462,15,15.5,9,0.0 +24462,9,97,15,0.0 +24462,72,34.8,46,0.0 +24462,11,21,33,0.0 +24462,47,9.5,9,0.0 +24462,77,13,40,0.0 +24462,63,43.9,7,0.0 +24462,31,12.5,11,0.0 +24462,54,7.45,20,0.0 +24462,7,30,17,0.0 +24462,10,31,48,0.0 +24462,45,9.5,26,0.0 +24462,44,19.45,11,0.0 +24462,43,46,30,0.0 +24462,29,123.79,24,0.0 +24462,13,6,15,0.0 +24462,27,43.9,42,0.0 +24462,61,28.5,49,0.0 +24462,53,32.8,1,0.0 +24462,57,19.5,32,0.0 +24462,64,33.25,44,0.0 +24462,50,16.25,1,0.0 +24462,32,32,39,0.0 +24462,60,34,21,0.0 +24462,74,10,1,0.0 +24462,33,2.5,28,0.0 +24462,49,20,24,0.0 +24462,4,22,3,0.0 +24462,36,19,14,0.0 +24462,25,14,23,0.0 +24462,59,55,22,0.0 +24462,16,17.45,23,0.0 +24462,39,18,14,0.0 +24462,23,9,37,0.0 +24462,26,31.23,11,0.0 +24462,68,12.5,26,0.0 +24462,35,18,30,0.0 +24463,41,9.65,21,0.0 +24463,37,26,10,0.0 +24463,36,19,26,0.0 +24463,5,21.35,5,0.0 +24463,33,2.5,50,0.0 +24463,31,12.5,33,0.0 +24463,24,4.5,45,0.0 +24463,42,14,40,0.0 +24463,32,32,22,0.0 +24463,28,45.6,8,0.0 +24463,22,21,22,0.0 +24463,52,7,44,0.0 +24463,18,62.5,18,0.0 +24463,34,14,9,0.0 +24463,45,9.5,43,0.0 +24463,3,10,12,0.0 +24463,67,14,21,0.0 +24463,62,49.3,19,0.0 +24463,20,81,27,0.0 +24463,51,53,50,0.0 +24463,27,43.9,8,0.0 +24463,43,46,32,0.0 +24463,44,19.45,50,0.0 +24463,74,10,37,0.0 +24463,71,21.5,4,0.0 +24463,6,25,37,0.0 +24463,55,24,12,0.0 +24463,75,7.75,36,0.0 +24463,56,38,50,0.0 +24463,16,17.45,15,0.0 +24463,26,31.23,14,0.0 +24463,58,13.25,12,0.0 +24463,50,16.25,12,0.0 +24463,30,25.89,21,0.0 +24463,65,21.05,26,0.0 +24463,14,23.25,30,0.0 +24463,2,19,6,0.0 +24463,64,33.25,29,0.0 +24463,11,21,17,0.0 +24463,61,28.5,8,0.0 +24463,59,55,11,0.0 +24463,49,20,29,0.0 +24463,72,34.8,9,0.0 +24463,47,9.5,3,0.0 +24463,25,14,32,0.0 +24463,77,13,44,0.0 +24463,23,9,38,0.0 +24463,73,15,50,0.0 +24463,4,22,13,0.0 +24463,15,15.5,33,0.0 +24463,53,32.8,50,0.0 +24463,19,9.2,32,0.0 +24463,57,19.5,32,0.0 +24463,17,39,9,0.0 +24463,35,18,45,0.0 +24463,12,38,22,0.0 +24463,7,30,41,0.0 +24463,46,12,19,0.0 +24463,48,12.75,20,0.0 +24463,38,263.5,17,0.0 +24463,29,123.79,14,0.0 +24463,13,6,12,0.0 +24463,70,15,38,0.0 +24463,8,40,1,0.0 +24463,40,18.4,16,0.0 +24464,16,17.45,44,0.0 +24464,59,55,21,0.0 +24464,12,38,8,0.0 +24464,7,30,46,0.0 +24464,67,14,29,0.0 +24464,70,15,49,0.0 +24464,75,7.75,38,0.0 +24464,42,14,45,0.0 +24464,51,53,13,0.0 +24464,53,32.8,19,0.0 +24464,27,43.9,17,0.0 +24464,19,9.2,49,0.0 +24464,54,7.45,25,0.0 +24464,44,19.45,8,0.0 +24464,46,12,50,0.0 +24464,56,38,40,0.0 +24464,24,4.5,20,0.0 +24464,52,7,11,0.0 +24464,76,18,2,0.0 +24464,20,81,30,0.0 +24464,1,18,16,0.0 +24464,63,43.9,12,0.0 +24464,31,12.5,13,0.0 +24464,17,39,5,0.0 +24464,36,19,48,0.0 +24464,77,13,41,0.0 +24464,68,12.5,2,0.0 +24464,5,21.35,9,0.0 +24464,30,25.89,46,0.0 +24464,11,21,22,0.0 +24464,64,33.25,49,0.0 +24464,58,13.25,23,0.0 +24464,39,18,41,0.0 +24464,37,26,18,0.0 +24464,35,18,47,0.0 +24464,66,17,5,0.0 +24464,18,62.5,14,0.0 +24464,9,97,15,0.0 +24464,65,21.05,12,0.0 +24464,32,32,50,0.0 +24464,47,9.5,29,0.0 +24464,3,10,4,0.0 +24464,6,25,48,0.0 +24464,22,21,27,0.0 +24464,23,9,35,0.0 +24464,28,45.6,49,0.0 +24464,69,36,30,0.0 +24464,33,2.5,40,0.0 +24464,62,49.3,28,0.0 +24464,25,14,46,0.0 +24464,14,23.25,35,0.0 +24464,41,9.65,24,0.0 +24464,13,6,27,0.0 +24464,21,10,30,0.0 +24465,41,9.65,1,0.0 +24465,15,15.5,34,0.0 +24465,72,34.8,36,0.0 +24465,64,33.25,21,0.0 +24465,67,14,50,0.0 +24465,55,24,35,0.0 +24465,76,18,43,0.0 +24465,4,22,31,0.0 +24465,1,18,2,0.0 +24465,3,10,9,0.0 +24465,70,15,6,0.0 +24465,9,97,39,0.0 +24465,61,28.5,46,0.0 +24465,36,19,48,0.0 +24465,63,43.9,26,0.0 +24465,25,14,19,0.0 +24465,6,25,25,0.0 +24465,69,36,4,0.0 +24465,20,81,26,0.0 +24465,50,16.25,14,0.0 +24465,35,18,25,0.0 +24465,7,30,14,0.0 +24465,23,9,30,0.0 +24465,77,13,6,0.0 +24465,29,123.79,3,0.0 +24465,46,12,32,0.0 +24465,11,21,23,0.0 +24465,71,21.5,4,0.0 +24465,18,62.5,32,0.0 +24465,17,39,6,0.0 +24465,48,12.75,29,0.0 +24465,57,19.5,50,0.0 +24465,43,46,23,0.0 +24466,56,38,30,0.0 +24466,67,14,12,0.0 +24466,3,10,20,0.0 +24466,16,17.45,28,0.0 +24466,64,33.25,14,0.0 +24466,75,7.75,4,0.0 +24466,13,6,38,0.0 +24466,69,36,31,0.0 +24466,43,46,36,0.0 +24466,54,7.45,38,0.0 +24466,10,31,12,0.0 +24466,11,21,47,0.0 +24466,57,19.5,36,0.0 +24466,19,9.2,45,0.0 +24466,1,18,29,0.0 +24466,26,31.23,26,0.0 +24466,66,17,2,0.0 +24466,23,9,31,0.0 +24466,38,263.5,42,0.0 +24466,42,14,40,0.0 +24466,71,21.5,4,0.0 +24466,37,26,8,0.0 +24466,62,49.3,3,0.0 +24466,36,19,45,0.0 +24466,52,7,41,0.0 +24466,49,20,20,0.0 +24466,53,32.8,45,0.0 +24466,30,25.89,30,0.0 +24466,74,10,18,0.0 +24466,28,45.6,8,0.0 +24466,58,13.25,42,0.0 +24466,65,21.05,37,0.0 +24466,25,14,34,0.0 +24466,73,15,41,0.0 +24466,68,12.5,42,0.0 +24466,12,38,39,0.0 +24466,34,14,13,0.0 +24466,45,9.5,38,0.0 +24466,15,15.5,37,0.0 +24466,41,9.65,19,0.0 +24466,29,123.79,46,0.0 +24466,7,30,20,0.0 +24466,4,22,38,0.0 +24466,21,10,45,0.0 +24466,33,2.5,26,0.0 +24466,48,12.75,7,0.0 +24466,47,9.5,4,0.0 +24466,8,40,27,0.0 +24466,55,24,32,0.0 +24466,17,39,20,0.0 +24466,63,43.9,37,0.0 +24466,60,34,37,0.0 +24466,72,34.8,33,0.0 +24466,27,43.9,3,0.0 +24466,40,18.4,50,0.0 +24466,2,19,11,0.0 +24466,31,12.5,2,0.0 +24466,14,23.25,14,0.0 +24466,61,28.5,8,0.0 +24466,59,55,15,0.0 +24466,51,53,23,0.0 +24466,24,4.5,13,0.0 +24466,32,32,7,0.0 +24466,70,15,29,0.0 +24467,44,19.45,15,0.0 +24467,43,46,49,0.0 +24467,18,62.5,47,0.0 +24467,58,13.25,27,0.0 +24467,69,36,13,0.0 +24467,30,25.89,42,0.0 +24467,31,12.5,27,0.0 +24467,39,18,10,0.0 +24467,65,21.05,48,0.0 +24467,24,4.5,31,0.0 +24467,51,53,26,0.0 +24467,71,21.5,49,0.0 +24467,40,18.4,23,0.0 +24467,23,9,1,0.0 +24467,1,18,35,0.0 +24467,60,34,24,0.0 +24467,63,43.9,3,0.0 +24467,9,97,38,0.0 +24467,50,16.25,12,0.0 +24467,47,9.5,5,0.0 +24467,8,40,3,0.0 +24467,32,32,8,0.0 +24467,20,81,49,0.0 +24467,5,21.35,29,0.0 +24467,35,18,27,0.0 +24467,2,19,37,0.0 +24467,45,9.5,42,0.0 +24467,33,2.5,13,0.0 +24467,55,24,25,0.0 +24467,36,19,13,0.0 +24467,62,49.3,3,0.0 +24467,16,17.45,4,0.0 +24467,3,10,34,0.0 +24467,75,7.75,42,0.0 +24467,6,25,6,0.0 +24467,11,21,45,0.0 +24467,4,22,6,0.0 +24467,53,32.8,25,0.0 +24467,34,14,30,0.0 +24467,54,7.45,2,0.0 +24467,22,21,50,0.0 +24467,52,7,49,0.0 +24467,13,6,34,0.0 +24467,38,263.5,21,0.0 +24467,46,12,3,0.0 +24467,28,45.6,7,0.0 +24467,76,18,22,0.0 +24468,27,43.9,17,0.0 +24468,53,32.8,43,0.0 +24468,40,18.4,41,0.0 +24468,29,123.79,48,0.0 +24468,26,31.23,29,0.0 +24468,57,19.5,35,0.0 +24468,71,21.5,3,0.0 +24468,74,10,11,0.0 +24468,42,14,11,0.0 +24468,70,15,42,0.0 +24468,36,19,11,0.0 +24468,9,97,14,0.0 +24468,21,10,43,0.0 +24468,49,20,13,0.0 +24468,54,7.45,18,0.0 +24468,6,25,23,0.0 +24468,64,33.25,8,0.0 +24468,59,55,22,0.0 +24468,15,15.5,24,0.0 +24468,33,2.5,32,0.0 +24468,55,24,4,0.0 +24468,1,18,2,0.0 +24468,62,49.3,42,0.0 +24468,76,18,25,0.0 +24468,43,46,29,0.0 +24468,75,7.75,18,0.0 +24468,31,12.5,19,0.0 +24468,72,34.8,45,0.0 +24468,65,21.05,27,0.0 +24468,48,12.75,34,0.0 +24468,25,14,14,0.0 +24468,22,21,5,0.0 +24468,68,12.5,16,0.0 +24469,69,36,12,0.0 +24469,23,9,35,0.0 +24469,71,21.5,42,0.0 +24469,30,25.89,10,0.0 +24469,25,14,6,0.0 +24469,51,53,33,0.0 +24469,9,97,19,0.0 +24469,6,25,16,0.0 +24469,37,26,28,0.0 +24469,39,18,33,0.0 +24469,27,43.9,20,0.0 +24469,76,18,19,0.0 +24469,13,6,4,0.0 +24469,21,10,30,0.0 +24469,43,46,45,0.0 +24469,4,22,28,0.0 +24469,41,9.65,21,0.0 +24469,15,15.5,9,0.0 +24469,49,20,38,0.0 +24469,32,32,21,0.0 +24469,38,263.5,45,0.0 +24469,48,12.75,50,0.0 +24470,50,16.25,49,0.0 +24470,20,81,50,0.0 +24470,11,21,17,0.0 +24470,26,31.23,40,0.0 +24470,58,13.25,44,0.0 +24470,74,10,20,0.0 +24470,32,32,14,0.0 +24470,12,38,47,0.0 +24470,51,53,5,0.0 +24470,5,21.35,4,0.0 +24470,66,17,1,0.0 +24470,22,21,14,0.0 +24470,62,49.3,29,0.0 +24471,47,9.5,19,0.0 +24471,54,7.45,32,0.0 +24471,16,17.45,7,0.0 +24471,71,21.5,38,0.0 +24471,22,21,21,0.0 +24471,1,18,3,0.0 +24471,53,32.8,28,0.0 +24471,20,81,43,0.0 +24471,26,31.23,19,0.0 +24471,14,23.25,11,0.0 +24471,69,36,35,0.0 +24471,10,31,36,0.0 +24471,5,21.35,34,0.0 +24471,25,14,31,0.0 +24471,19,9.2,41,0.0 +24471,28,45.6,25,0.0 +24471,64,33.25,9,0.0 +24471,51,53,43,0.0 +24471,18,62.5,47,0.0 +24471,38,263.5,22,0.0 +24472,72,34.8,30,0.0 +24472,59,55,5,0.0 +24472,53,32.8,20,0.0 +24472,40,18.4,20,0.0 +24472,62,49.3,38,0.0 +24472,12,38,37,0.0 +24472,2,19,2,0.0 +24472,46,12,23,0.0 +24472,56,38,1,0.0 +24472,61,28.5,35,0.0 +24472,4,22,41,0.0 +24472,51,53,33,0.0 +24472,49,20,25,0.0 +24472,67,14,38,0.0 +24472,47,9.5,41,0.0 +24472,66,17,11,0.0 +24472,29,123.79,27,0.0 +24472,11,21,13,0.0 +24472,34,14,42,0.0 +24472,37,26,37,0.0 +24472,50,16.25,6,0.0 +24472,16,17.45,2,0.0 +24472,31,12.5,12,0.0 +24472,65,21.05,43,0.0 +24472,38,263.5,29,0.0 +24472,58,13.25,41,0.0 +24472,3,10,41,0.0 +24472,21,10,23,0.0 +24472,35,18,45,0.0 +24472,8,40,42,0.0 +24472,28,45.6,39,0.0 +24472,10,31,10,0.0 +24472,13,6,1,0.0 +24472,45,9.5,39,0.0 +24472,15,15.5,25,0.0 +24472,43,46,17,0.0 +24472,74,10,35,0.0 +24472,39,18,18,0.0 +24472,60,34,14,0.0 +24472,42,14,44,0.0 +24472,33,2.5,25,0.0 +24472,55,24,32,0.0 +24472,17,39,14,0.0 +24472,44,19.45,4,0.0 +24472,76,18,24,0.0 +24472,64,33.25,1,0.0 +24472,6,25,1,0.0 +24472,1,18,32,0.0 +24472,57,19.5,22,0.0 +24472,77,13,36,0.0 +24472,30,25.89,26,0.0 +24472,18,62.5,21,0.0 +24472,48,12.75,29,0.0 +24472,19,9.2,11,0.0 +24472,73,15,19,0.0 +24472,63,43.9,5,0.0 +24472,26,31.23,26,0.0 +24472,75,7.75,7,0.0 +24472,24,4.5,15,0.0 +24472,27,43.9,36,0.0 +24472,14,23.25,50,0.0 +24472,5,21.35,22,0.0 +24472,71,21.5,44,0.0 +24472,36,19,2,0.0 +24472,54,7.45,43,0.0 +24473,11,21,35,0.0 +24473,67,14,28,0.0 +24473,15,15.5,2,0.0 +24473,37,26,3,0.0 +24473,13,6,14,0.0 +24473,55,24,31,0.0 +24473,8,40,11,0.0 +24473,23,9,15,0.0 +24473,19,9.2,9,0.0 +24473,43,46,13,0.0 +24473,76,18,2,0.0 +24473,70,15,24,0.0 +24473,75,7.75,44,0.0 +24473,16,17.45,30,0.0 +24473,58,13.25,9,0.0 +24473,38,263.5,20,0.0 +24473,33,2.5,36,0.0 +24473,17,39,46,0.0 +24473,40,18.4,29,0.0 +24473,54,7.45,16,0.0 +24473,34,14,25,0.0 +24473,10,31,25,0.0 +24473,53,32.8,22,0.0 +24473,5,21.35,25,0.0 +24473,6,25,34,0.0 +24473,68,12.5,49,0.0 +24473,47,9.5,1,0.0 +24473,35,18,2,0.0 +24473,39,18,46,0.0 +24473,59,55,45,0.0 +24473,74,10,50,0.0 +24473,24,4.5,26,0.0 +24473,65,21.05,7,0.0 +24473,2,19,38,0.0 +24473,3,10,1,0.0 +24473,36,19,8,0.0 +24473,1,18,9,0.0 +24473,49,20,4,0.0 +24473,50,16.25,1,0.0 +24473,71,21.5,28,0.0 +24473,12,38,40,0.0 +24473,48,12.75,14,0.0 +24473,69,36,29,0.0 +24473,18,62.5,6,0.0 +24474,64,33.25,13,0.0 +24474,55,24,10,0.0 +24474,20,81,13,0.0 +24474,70,15,39,0.0 +24474,6,25,36,0.0 +24474,7,30,6,0.0 +24474,43,46,26,0.0 +24474,35,18,17,0.0 +24474,46,12,47,0.0 +24474,22,21,46,0.0 +24474,10,31,42,0.0 +24474,54,7.45,20,0.0 +24474,63,43.9,2,0.0 +24474,21,10,31,0.0 +24474,65,21.05,19,0.0 +24474,28,45.6,15,0.0 +24474,73,15,10,0.0 +24474,16,17.45,48,0.0 +24474,36,19,7,0.0 +24474,27,43.9,9,0.0 +24474,44,19.45,43,0.0 +24474,47,9.5,5,0.0 +24474,4,22,48,0.0 +24474,40,18.4,26,0.0 +24474,38,263.5,5,0.0 +24474,39,18,15,0.0 +24474,67,14,49,0.0 +24474,74,10,26,0.0 +24474,18,62.5,36,0.0 +24474,13,6,19,0.0 +24474,31,12.5,39,0.0 +24474,42,14,21,0.0 +24474,76,18,19,0.0 +24474,53,32.8,20,0.0 +24474,59,55,44,0.0 +24474,75,7.75,46,0.0 +24474,50,16.25,27,0.0 +24474,69,36,3,0.0 +24474,25,14,37,0.0 +24474,1,18,22,0.0 +24474,62,49.3,15,0.0 +24474,9,97,24,0.0 +24474,3,10,28,0.0 +24474,68,12.5,49,0.0 +24474,57,19.5,20,0.0 +24474,56,38,42,0.0 +24474,72,34.8,44,0.0 +24474,30,25.89,36,0.0 +24474,32,32,48,0.0 +24474,66,17,34,0.0 +24474,58,13.25,9,0.0 +24474,45,9.5,34,0.0 +24474,49,20,39,0.0 +24474,77,13,33,0.0 +24474,17,39,44,0.0 +24474,24,4.5,21,0.0 +24474,29,123.79,42,0.0 +24474,12,38,8,0.0 +24474,23,9,50,0.0 +24475,38,263.5,40,0.0 +24475,73,15,14,0.0 +24475,65,21.05,1,0.0 +24475,67,14,38,0.0 +24475,30,25.89,25,0.0 +24475,35,18,19,0.0 +24475,14,23.25,20,0.0 +24475,72,34.8,50,0.0 +24475,7,30,14,0.0 +24475,18,62.5,31,0.0 +24475,2,19,8,0.0 +24475,57,19.5,19,0.0 +24475,60,34,40,0.0 +24475,75,7.75,11,0.0 +24475,76,18,32,0.0 +24476,59,55,8,0.0 +24476,48,12.75,4,0.0 +24476,77,13,7,0.0 +24476,11,21,6,0.0 +24476,47,9.5,25,0.0 +24476,50,16.25,33,0.0 +24476,17,39,44,0.0 +24476,55,24,42,0.0 +24476,16,17.45,50,0.0 +24476,42,14,10,0.0 +24476,57,19.5,28,0.0 +24476,49,20,7,0.0 +24476,3,10,22,0.0 +24476,13,6,18,0.0 +24476,62,49.3,49,0.0 +24476,8,40,41,0.0 +24476,2,19,8,0.0 +24476,65,21.05,34,0.0 +24476,43,46,35,0.0 +24476,58,13.25,47,0.0 +24476,30,25.89,23,0.0 +24476,23,9,32,0.0 +24476,31,12.5,39,0.0 +24476,64,33.25,40,0.0 +24476,32,32,26,0.0 +24476,67,14,30,0.0 +24476,26,31.23,26,0.0 +24476,53,32.8,30,0.0 +24476,51,53,20,0.0 +24476,12,38,43,0.0 +24476,40,18.4,40,0.0 +24476,72,34.8,12,0.0 +24476,52,7,27,0.0 +24476,60,34,10,0.0 +24476,15,15.5,10,0.0 +24476,34,14,4,0.0 +24476,27,43.9,17,0.0 +24476,71,21.5,12,0.0 +24476,33,2.5,46,0.0 +24476,76,18,21,0.0 +24476,74,10,37,0.0 +24476,46,12,17,0.0 +24476,19,9.2,23,0.0 +24476,38,263.5,12,0.0 +24476,22,21,23,0.0 +24476,6,25,40,0.0 +24476,9,97,9,0.0 +24476,73,15,3,0.0 +24476,61,28.5,47,0.0 +24476,18,62.5,37,0.0 +24476,41,9.65,35,0.0 +24476,69,36,6,0.0 +24476,56,38,38,0.0 +24476,14,23.25,26,0.0 +24476,44,19.45,43,0.0 +24476,35,18,29,0.0 +24476,5,21.35,29,0.0 +24476,37,26,26,0.0 +24476,70,15,34,0.0 +24476,29,123.79,50,0.0 +24476,68,12.5,38,0.0 +24476,39,18,2,0.0 +24476,4,22,49,0.0 +24476,54,7.45,6,0.0 +24476,20,81,42,0.0 +24476,21,10,40,0.0 +24476,45,9.5,10,0.0 +24476,25,14,5,0.0 +24476,75,7.75,2,0.0 +24476,36,19,50,0.0 +24476,66,17,46,0.0 +24476,28,45.6,3,0.0 +24476,63,43.9,45,0.0 +24476,1,18,2,0.0 +24476,7,30,13,0.0 +24476,24,4.5,13,0.0 +24476,10,31,6,0.0 +24477,56,38,18,0.0 +24477,50,16.25,19,0.0 +24477,76,18,7,0.0 +24477,19,9.2,45,0.0 +24477,73,15,14,0.0 +24478,66,17,8,0.0 +24478,22,21,12,0.0 +24478,35,18,24,0.0 +24478,54,7.45,3,0.0 +24478,15,15.5,6,0.0 +24478,51,53,16,0.0 +24478,3,10,40,0.0 +24478,34,14,19,0.0 +24478,36,19,4,0.0 +24478,33,2.5,3,0.0 +24478,7,30,1,0.0 +24478,56,38,25,0.0 +24478,28,45.6,32,0.0 +24478,45,9.5,24,0.0 +24478,38,263.5,16,0.0 +24478,17,39,46,0.0 +24478,16,17.45,4,0.0 +24478,55,24,26,0.0 +24478,12,38,12,0.0 +24478,53,32.8,11,0.0 +24478,61,28.5,15,0.0 +24478,49,20,45,0.0 +24478,75,7.75,38,0.0 +24478,4,22,16,0.0 +24478,42,14,2,0.0 +24478,64,33.25,10,0.0 +24478,20,81,14,0.0 +24478,40,18.4,8,0.0 +24478,2,19,45,0.0 +24478,60,34,13,0.0 +24478,25,14,9,0.0 +24478,73,15,16,0.0 +24478,27,43.9,43,0.0 +24478,57,19.5,37,0.0 +24478,1,18,45,0.0 +24478,74,10,3,0.0 +24478,10,31,17,0.0 +24478,43,46,44,0.0 +24478,31,12.5,3,0.0 +24478,6,25,1,0.0 +24478,68,12.5,2,0.0 +24478,19,9.2,41,0.0 +24478,13,6,12,0.0 +24478,41,9.65,15,0.0 +24478,30,25.89,50,0.0 +24479,10,31,43,0.0 +24479,27,43.9,4,0.0 +24479,69,36,5,0.0 +24479,35,18,35,0.0 +24479,62,49.3,18,0.0 +24479,11,21,23,0.0 +24479,12,38,17,0.0 +24479,2,19,12,0.0 +24479,17,39,24,0.0 +24479,59,55,22,0.0 +24479,40,18.4,3,0.0 +24479,29,123.79,45,0.0 +24479,56,38,35,0.0 +24479,26,31.23,1,0.0 +24479,14,23.25,20,0.0 +24479,44,19.45,32,0.0 +24479,22,21,3,0.0 +24479,60,34,30,0.0 +24479,24,4.5,46,0.0 +24479,51,53,44,0.0 +24479,57,19.5,1,0.0 +24479,64,33.25,50,0.0 +24479,72,34.8,38,0.0 +24479,65,21.05,9,0.0 +24479,63,43.9,33,0.0 +24479,71,21.5,4,0.0 +24479,3,10,16,0.0 +24479,15,15.5,16,0.0 +24479,38,263.5,35,0.0 +24479,23,9,1,0.0 +24479,7,30,18,0.0 +24479,20,81,46,0.0 +24479,50,16.25,49,0.0 +24479,41,9.65,20,0.0 +24479,49,20,30,0.0 +24479,77,13,50,0.0 +24479,25,14,26,0.0 +24479,6,25,18,0.0 +24479,16,17.45,21,0.0 +24479,4,22,47,0.0 +24479,33,2.5,14,0.0 +24479,13,6,25,0.0 +24479,31,12.5,41,0.0 +24479,43,46,4,0.0 +24479,61,28.5,6,0.0 +24479,55,24,32,0.0 +24479,32,32,47,0.0 +24479,1,18,43,0.0 +24479,45,9.5,20,0.0 +24479,5,21.35,45,0.0 +24479,21,10,4,0.0 +24479,70,15,22,0.0 +24479,74,10,1,0.0 +24479,42,14,18,0.0 +24479,37,26,39,0.0 +24479,30,25.89,38,0.0 +24479,47,9.5,5,0.0 +24479,53,32.8,37,0.0 +24479,73,15,17,0.0 +24479,52,7,29,0.0 +24479,54,7.45,49,0.0 +24479,66,17,2,0.0 +24479,68,12.5,42,0.0 +24479,34,14,46,0.0 +24479,19,9.2,26,0.0 +24479,9,97,18,0.0 +24479,8,40,26,0.0 +24479,58,13.25,16,0.0 +24479,36,19,2,0.0 +24480,55,24,23,0.0 +24480,66,17,24,0.0 +24480,64,33.25,13,0.0 +24480,14,23.25,12,0.0 +24480,1,18,29,0.0 +24480,41,9.65,16,0.0 +24480,27,43.9,49,0.0 +24480,30,25.89,18,0.0 +24480,2,19,2,0.0 +24480,54,7.45,25,0.0 +24480,48,12.75,5,0.0 +24480,62,49.3,6,0.0 +24480,43,46,26,0.0 +24480,6,25,31,0.0 +24480,49,20,27,0.0 +24480,39,18,33,0.0 +24480,73,15,34,0.0 +24480,77,13,49,0.0 +24480,18,62.5,16,0.0 +24480,75,7.75,23,0.0 +24480,56,38,19,0.0 +24480,76,18,40,0.0 +24480,15,15.5,24,0.0 +24480,38,263.5,19,0.0 +24480,23,9,7,0.0 +24480,24,4.5,11,0.0 +24480,53,32.8,41,0.0 +24480,71,21.5,19,0.0 +24480,74,10,8,0.0 +24480,50,16.25,27,0.0 +24480,61,28.5,11,0.0 +24480,59,55,20,0.0 +24480,52,7,7,0.0 +24480,3,10,16,0.0 +24480,31,12.5,42,0.0 +24480,5,21.35,17,0.0 +24481,54,7.45,30,0.0 +24481,63,43.9,47,0.0 +24481,53,32.8,39,0.0 +24481,70,15,49,0.0 +24481,71,21.5,48,0.0 +24481,10,31,46,0.0 +24481,15,15.5,46,0.0 +24481,4,22,24,0.0 +24481,3,10,46,0.0 +24481,33,2.5,49,0.0 +24481,27,43.9,32,0.0 +24481,29,123.79,10,0.0 +24481,9,97,20,0.0 +24481,69,36,36,0.0 +24481,7,30,45,0.0 +24481,14,23.25,5,0.0 +24481,32,32,30,0.0 +24481,66,17,26,0.0 +24481,56,38,18,0.0 +24481,64,33.25,34,0.0 +24481,77,13,29,0.0 +24481,62,49.3,41,0.0 +24481,76,18,15,0.0 +24481,34,14,38,0.0 +24481,67,14,8,0.0 +24481,68,12.5,38,0.0 +24481,50,16.25,46,0.0 +24481,11,21,38,0.0 +24481,22,21,22,0.0 +24481,43,46,16,0.0 +24481,38,263.5,44,0.0 +24481,52,7,50,0.0 +24481,73,15,2,0.0 +24481,37,26,24,0.0 +24481,5,21.35,49,0.0 +24481,12,38,15,0.0 +24481,30,25.89,38,0.0 +24482,54,7.45,1,0.0 +24482,2,19,27,0.0 +24482,13,6,14,0.0 +24482,35,18,13,0.0 +24482,48,12.75,34,0.0 +24482,42,14,28,0.0 +24482,53,32.8,48,0.0 +24482,37,26,48,0.0 +24482,38,263.5,1,0.0 +24482,75,7.75,1,0.0 +24482,36,19,24,0.0 +24482,34,14,25,0.0 +24482,70,15,7,0.0 +24482,64,33.25,33,0.0 +24482,67,14,9,0.0 +24482,46,12,21,0.0 +24482,10,31,22,0.0 +24482,3,10,32,0.0 +24482,1,18,5,0.0 +24482,29,123.79,4,0.0 +24482,41,9.65,45,0.0 +24482,65,21.05,35,0.0 +24482,68,12.5,20,0.0 +24482,77,13,6,0.0 +24482,32,32,5,0.0 +24482,22,21,17,0.0 +24482,61,28.5,39,0.0 +24482,8,40,45,0.0 +24482,6,25,43,0.0 +24482,72,34.8,5,0.0 +24482,44,19.45,19,0.0 +24482,14,23.25,31,0.0 +24482,66,17,35,0.0 +24482,26,31.23,39,0.0 +24482,62,49.3,37,0.0 +24482,5,21.35,17,0.0 +24482,19,9.2,30,0.0 +24482,49,20,49,0.0 +24482,7,30,27,0.0 +24482,4,22,40,0.0 +24482,30,25.89,14,0.0 +24482,33,2.5,32,0.0 +24483,55,24,6,0.0 +24483,18,62.5,38,0.0 +24483,34,14,48,0.0 +24483,41,9.65,43,0.0 +24483,68,12.5,12,0.0 +24483,56,38,3,0.0 +24483,74,10,20,0.0 +24483,5,21.35,1,0.0 +24483,72,34.8,26,0.0 +24483,22,21,2,0.0 +24483,2,19,25,0.0 +24483,13,6,10,0.0 +24483,64,33.25,38,0.0 +24483,12,38,50,0.0 +24483,30,25.89,25,0.0 +24483,45,9.5,15,0.0 +24483,19,9.2,23,0.0 +24483,70,15,17,0.0 +24483,9,97,10,0.0 +24483,27,43.9,1,0.0 +24483,48,12.75,41,0.0 +24483,4,22,23,0.0 +24483,50,16.25,15,0.0 +24483,60,34,49,0.0 +24483,58,13.25,38,0.0 +24483,11,21,50,0.0 +24483,6,25,17,0.0 +24483,3,10,37,0.0 +24483,66,17,49,0.0 +24483,1,18,28,0.0 +24483,46,12,21,0.0 +24483,15,15.5,20,0.0 +24483,47,9.5,19,0.0 +24483,71,21.5,32,0.0 +24483,31,12.5,9,0.0 +24483,75,7.75,30,0.0 +24483,52,7,26,0.0 +24483,67,14,11,0.0 +24483,7,30,1,0.0 +24483,39,18,7,0.0 +24483,69,36,8,0.0 +24483,61,28.5,39,0.0 +24483,76,18,6,0.0 +24483,35,18,7,0.0 +24483,21,10,43,0.0 +24483,17,39,46,0.0 +24483,38,263.5,41,0.0 +24483,14,23.25,16,0.0 +24483,54,7.45,45,0.0 +24483,73,15,26,0.0 +24483,42,14,44,0.0 +24483,29,123.79,2,0.0 +24483,37,26,28,0.0 +24483,32,32,34,0.0 +24483,10,31,24,0.0 +24484,34,14,4,0.0 +24484,21,10,18,0.0 +24484,51,53,24,0.0 +24484,24,4.5,30,0.0 +24484,55,24,10,0.0 +24484,52,7,19,0.0 +24484,40,18.4,15,0.0 +24484,43,46,1,0.0 +24484,4,22,17,0.0 +24484,29,123.79,17,0.0 +24484,49,20,47,0.0 +24484,58,13.25,35,0.0 +24484,76,18,20,0.0 +24484,31,12.5,14,0.0 +24484,41,9.65,13,0.0 +24484,1,18,5,0.0 +24484,59,55,46,0.0 +24484,48,12.75,1,0.0 +24484,26,31.23,15,0.0 +24484,9,97,10,0.0 +24484,38,263.5,40,0.0 +24484,17,39,4,0.0 +24484,36,19,35,0.0 +24485,57,19.5,5,0.0 +24485,71,21.5,3,0.0 +24485,16,17.45,17,0.0 +24485,44,19.45,40,0.0 +24485,62,49.3,49,0.0 +24485,64,33.25,48,0.0 +24485,9,97,33,0.0 +24485,66,17,24,0.0 +24485,51,53,14,0.0 +24485,26,31.23,5,0.0 +24485,60,34,8,0.0 +24485,52,7,32,0.0 +24485,54,7.45,47,0.0 +24485,18,62.5,49,0.0 +24485,73,15,24,0.0 +24485,76,18,17,0.0 +24485,27,43.9,50,0.0 +24485,35,18,31,0.0 +24485,33,2.5,19,0.0 +24485,3,10,16,0.0 +24486,11,21,9,0.0 +24486,56,38,15,0.0 +24486,35,18,34,0.0 +24486,41,9.65,8,0.0 +24486,1,18,7,0.0 +24486,60,34,4,0.0 +24486,9,97,37,0.0 +24486,52,7,50,0.0 +24486,21,10,7,0.0 +24486,59,55,24,0.0 +24486,65,21.05,17,0.0 +24486,23,9,24,0.0 +24486,74,10,21,0.0 +24486,4,22,46,0.0 +24486,43,46,25,0.0 +24486,32,32,31,0.0 +24486,2,19,34,0.0 +24486,53,32.8,17,0.0 +24486,75,7.75,7,0.0 +24486,25,14,26,0.0 +24486,58,13.25,47,0.0 +24486,68,12.5,6,0.0 +24486,72,34.8,3,0.0 +24486,34,14,23,0.0 +24486,55,24,24,0.0 +24486,66,17,42,0.0 +24486,71,21.5,16,0.0 +24486,67,14,5,0.0 +24486,16,17.45,17,0.0 +24486,51,53,36,0.0 +24486,20,81,46,0.0 +24486,57,19.5,10,0.0 +24486,42,14,37,0.0 +24486,30,25.89,17,0.0 +24486,13,6,6,0.0 +24486,33,2.5,7,0.0 +24486,47,9.5,50,0.0 +24486,69,36,32,0.0 +24486,49,20,12,0.0 +24486,18,62.5,40,0.0 +24486,39,18,38,0.0 +24486,73,15,1,0.0 +24486,28,45.6,43,0.0 +24486,36,19,32,0.0 +24486,8,40,42,0.0 +24486,62,49.3,42,0.0 +24486,29,123.79,9,0.0 +24486,61,28.5,42,0.0 +24486,77,13,49,0.0 +24486,5,21.35,2,0.0 +24486,3,10,1,0.0 +24486,54,7.45,26,0.0 +24486,64,33.25,3,0.0 +24486,22,21,9,0.0 +24486,14,23.25,33,0.0 +24486,7,30,35,0.0 +24486,46,12,27,0.0 +24486,19,9.2,9,0.0 +24486,12,38,21,0.0 +24486,44,19.45,41,0.0 +24487,49,20,21,0.0 +24487,1,18,4,0.0 +24487,52,7,26,0.0 +24487,50,16.25,13,0.0 +24487,44,19.45,11,0.0 +24487,75,7.75,3,0.0 +24487,6,25,31,0.0 +24487,24,4.5,50,0.0 +24487,16,17.45,41,0.0 +24487,45,9.5,43,0.0 +24487,31,12.5,47,0.0 +24487,30,25.89,36,0.0 +24487,21,10,30,0.0 +24487,36,19,10,0.0 +24487,65,21.05,9,0.0 +24487,38,263.5,47,0.0 +24487,2,19,13,0.0 +24487,71,21.5,4,0.0 +24487,22,21,42,0.0 +24487,35,18,40,0.0 +24487,43,46,16,0.0 +24487,76,18,5,0.0 +24487,11,21,1,0.0 +24487,13,6,10,0.0 +24487,42,14,22,0.0 +24487,69,36,29,0.0 +24487,58,13.25,47,0.0 +24487,77,13,36,0.0 +24487,73,15,48,0.0 +24487,51,53,24,0.0 +24487,46,12,17,0.0 +24487,8,40,34,0.0 +24487,64,33.25,39,0.0 +24487,5,21.35,13,0.0 +24487,39,18,16,0.0 +24487,4,22,17,0.0 +24487,26,31.23,44,0.0 +24487,41,9.65,38,0.0 +24487,29,123.79,9,0.0 +24487,12,38,5,0.0 +24487,48,12.75,40,0.0 +24487,55,24,44,0.0 +24487,14,23.25,17,0.0 +24487,56,38,1,0.0 +24487,40,18.4,33,0.0 +24487,66,17,8,0.0 +24487,74,10,17,0.0 +24487,7,30,29,0.0 +24487,15,15.5,44,0.0 +24487,57,19.5,45,0.0 +24487,33,2.5,45,0.0 +24487,20,81,33,0.0 +24487,9,97,3,0.0 +24487,62,49.3,17,0.0 +24487,17,39,43,0.0 +24487,59,55,5,0.0 +24487,27,43.9,26,0.0 +24488,23,9,25,0.0 +24488,40,18.4,37,0.0 +24488,57,19.5,15,0.0 +24488,34,14,21,0.0 +24488,43,46,10,0.0 +24488,2,19,44,0.0 +24488,61,28.5,29,0.0 +24488,55,24,19,0.0 +24488,25,14,10,0.0 +24488,75,7.75,33,0.0 +24488,60,34,25,0.0 +24488,21,10,49,0.0 +24488,22,21,39,0.0 +24488,26,31.23,3,0.0 +24488,71,21.5,28,0.0 +24488,18,62.5,4,0.0 +24488,24,4.5,45,0.0 +24488,58,13.25,22,0.0 +24488,13,6,48,0.0 +24488,65,21.05,5,0.0 +24488,8,40,29,0.0 +24488,54,7.45,34,0.0 +24488,30,25.89,20,0.0 +24488,70,15,20,0.0 +24488,48,12.75,40,0.0 +24488,16,17.45,46,0.0 +24488,14,23.25,26,0.0 +24488,47,9.5,31,0.0 +24488,7,30,43,0.0 +24488,66,17,41,0.0 +24488,45,9.5,10,0.0 +24488,77,13,40,0.0 +24488,41,9.65,46,0.0 +24488,31,12.5,26,0.0 +24488,76,18,42,0.0 +24488,73,15,6,0.0 +24488,64,33.25,35,0.0 +24488,37,26,14,0.0 +24488,52,7,14,0.0 +24488,11,21,38,0.0 +24488,12,38,30,0.0 +24488,10,31,46,0.0 +24488,29,123.79,37,0.0 +24488,53,32.8,10,0.0 +24488,51,53,3,0.0 +24488,62,49.3,48,0.0 +24489,1,18,39,0.0 +24489,59,55,20,0.0 +24489,68,12.5,3,0.0 +24489,65,21.05,39,0.0 +24489,23,9,50,0.0 +24489,42,14,30,0.0 +24489,16,17.45,25,0.0 +24489,31,12.5,20,0.0 +24489,27,43.9,2,0.0 +24489,64,33.25,49,0.0 +24489,7,30,12,0.0 +24489,67,14,35,0.0 +24489,69,36,19,0.0 +24489,43,46,23,0.0 +24489,39,18,25,0.0 +24489,50,16.25,46,0.0 +24489,52,7,46,0.0 +24489,12,38,26,0.0 +24489,73,15,14,0.0 +24489,30,25.89,29,0.0 +24489,60,34,42,0.0 +24489,61,28.5,26,0.0 +24489,76,18,32,0.0 +24489,74,10,37,0.0 +24489,5,21.35,28,0.0 +24489,10,31,19,0.0 +24489,22,21,38,0.0 +24489,25,14,15,0.0 +24489,62,49.3,49,0.0 +24489,58,13.25,38,0.0 +24489,36,19,20,0.0 +24489,54,7.45,24,0.0 +24489,51,53,23,0.0 +24489,9,97,7,0.0 +24489,26,31.23,25,0.0 +24489,18,62.5,7,0.0 +24489,71,21.5,5,0.0 +24489,33,2.5,33,0.0 +24489,47,9.5,41,0.0 +24489,8,40,23,0.0 +24489,56,38,9,0.0 +24489,66,17,22,0.0 +24490,24,4.5,29,0.0 +24490,77,13,24,0.0 +24490,20,81,9,0.0 +24490,26,31.23,39,0.0 +24490,55,24,4,0.0 +24490,5,21.35,20,0.0 +24490,74,10,15,0.0 +24490,73,15,3,0.0 +24490,48,12.75,28,0.0 +24490,9,97,14,0.0 +24490,51,53,13,0.0 +24490,15,15.5,11,0.0 +24490,46,12,26,0.0 +24490,32,32,5,0.0 +24490,33,2.5,35,0.0 +24490,22,21,16,0.0 +24490,50,16.25,45,0.0 +24490,28,45.6,27,0.0 +24490,41,9.65,1,0.0 +24490,39,18,30,0.0 +24490,65,21.05,42,0.0 +24490,43,46,8,0.0 +24490,61,28.5,8,0.0 +24490,11,21,34,0.0 +24490,36,19,7,0.0 +24490,18,62.5,4,0.0 +24490,10,31,31,0.0 +24490,44,19.45,3,0.0 +24490,76,18,7,0.0 +24490,49,20,23,0.0 +24490,52,7,34,0.0 +24490,12,38,18,0.0 +24490,63,43.9,45,0.0 +24490,14,23.25,16,0.0 +24490,31,12.5,43,0.0 +24490,16,17.45,25,0.0 +24490,54,7.45,28,0.0 +24490,8,40,24,0.0 +24490,72,34.8,4,0.0 +24490,30,25.89,46,0.0 +24490,38,263.5,4,0.0 +24490,47,9.5,35,0.0 +24490,35,18,38,0.0 +24490,68,12.5,18,0.0 +24490,4,22,3,0.0 +24490,69,36,33,0.0 +24490,1,18,25,0.0 +24490,40,18.4,50,0.0 +24490,21,10,45,0.0 +24490,27,43.9,43,0.0 +24490,45,9.5,18,0.0 +24490,23,9,22,0.0 +24490,60,34,32,0.0 +24490,58,13.25,43,0.0 +24490,29,123.79,44,0.0 +24490,71,21.5,48,0.0 +24490,53,32.8,37,0.0 +24490,42,14,19,0.0 +24490,37,26,32,0.0 +24490,17,39,22,0.0 +24490,57,19.5,20,0.0 +24490,25,14,17,0.0 +24490,7,30,33,0.0 +24490,67,14,49,0.0 +24490,66,17,20,0.0 +24490,6,25,30,0.0 +24490,59,55,22,0.0 +24490,3,10,31,0.0 +24490,62,49.3,36,0.0 +24490,56,38,26,0.0 +24490,70,15,44,0.0 +24490,64,33.25,22,0.0 +24490,34,14,38,0.0 +24490,75,7.75,5,0.0 +24490,13,6,9,0.0 +24490,2,19,37,0.0 +24490,19,9.2,26,0.0 +24491,8,40,50,0.0 +24491,20,81,2,0.0 +24491,72,34.8,4,0.0 +24491,17,39,4,0.0 +24491,75,7.75,23,0.0 +24491,47,9.5,3,0.0 +24491,24,4.5,14,0.0 +24491,71,21.5,36,0.0 +24491,57,19.5,10,0.0 +24491,7,30,2,0.0 +24491,41,9.65,27,0.0 +24491,67,14,43,0.0 +24491,43,46,41,0.0 +24491,76,18,21,0.0 +24491,39,18,18,0.0 +24491,49,20,31,0.0 +24491,9,97,2,0.0 +24491,53,32.8,25,0.0 +24491,11,21,37,0.0 +24491,62,49.3,7,0.0 +24491,63,43.9,45,0.0 +24491,68,12.5,30,0.0 +24491,27,43.9,38,0.0 +24491,58,13.25,28,0.0 +24491,74,10,36,0.0 +24491,28,45.6,32,0.0 +24491,73,15,27,0.0 +24491,42,14,32,0.0 +24491,16,17.45,16,0.0 +24491,40,18.4,1,0.0 +24491,52,7,37,0.0 +24491,44,19.45,3,0.0 +24491,38,263.5,8,0.0 +24491,2,19,26,0.0 +24491,55,24,22,0.0 +24491,10,31,45,0.0 +24491,37,26,8,0.0 +24491,32,32,10,0.0 +24491,60,34,23,0.0 +24491,22,21,33,0.0 +24491,51,53,27,0.0 +24491,1,18,42,0.0 +24491,34,14,15,0.0 +24491,61,28.5,50,0.0 +24491,35,18,46,0.0 +24491,45,9.5,42,0.0 +24491,33,2.5,21,0.0 +24491,64,33.25,49,0.0 +24491,54,7.45,3,0.0 +24491,66,17,29,0.0 +24491,48,12.75,21,0.0 +24491,26,31.23,23,0.0 +24491,59,55,15,0.0 +24491,31,12.5,44,0.0 +24491,77,13,22,0.0 +24491,5,21.35,5,0.0 +24491,65,21.05,27,0.0 +24491,36,19,23,0.0 +24491,69,36,39,0.0 +24491,12,38,1,0.0 +24491,4,22,23,0.0 +24491,15,15.5,31,0.0 +24491,70,15,21,0.0 +24491,23,9,50,0.0 +24491,13,6,18,0.0 +24491,56,38,50,0.0 +24491,50,16.25,11,0.0 +24491,6,25,30,0.0 +24491,18,62.5,13,0.0 +24491,30,25.89,6,0.0 +24491,14,23.25,13,0.0 +24491,29,123.79,3,0.0 +24491,46,12,4,0.0 +24492,15,15.5,35,0.0 +24492,48,12.75,41,0.0 +24492,75,7.75,9,0.0 +24492,76,18,18,0.0 +24492,77,13,21,0.0 +24492,36,19,32,0.0 +24492,43,46,19,0.0 +24492,10,31,11,0.0 +24492,55,24,39,0.0 +24492,4,22,25,0.0 +24492,18,62.5,2,0.0 +24492,29,123.79,26,0.0 +24492,20,81,12,0.0 +24492,70,15,9,0.0 +24492,32,32,11,0.0 +24492,74,10,22,0.0 +24492,72,34.8,25,0.0 +24492,71,21.5,39,0.0 +24492,7,30,47,0.0 +24492,26,31.23,37,0.0 +24492,60,34,33,0.0 +24492,59,55,30,0.0 +24492,46,12,17,0.0 +24492,22,21,40,0.0 +24492,14,23.25,47,0.0 +24492,40,18.4,12,0.0 +24492,37,26,1,0.0 +24492,34,14,15,0.0 +24492,33,2.5,40,0.0 +24492,58,13.25,37,0.0 +24492,30,25.89,47,0.0 +24492,53,32.8,34,0.0 +24492,16,17.45,13,0.0 +24492,47,9.5,19,0.0 +24492,68,12.5,29,0.0 +24492,57,19.5,41,0.0 +24492,61,28.5,37,0.0 +24492,25,14,15,0.0 +24492,31,12.5,18,0.0 +24492,9,97,13,0.0 +24492,5,21.35,28,0.0 +24492,65,21.05,49,0.0 +24492,69,36,5,0.0 +24492,21,10,38,0.0 +24492,54,7.45,50,0.0 +24492,38,263.5,24,0.0 +24492,42,14,15,0.0 +24492,73,15,8,0.0 +24492,66,17,18,0.0 +24492,64,33.25,10,0.0 +24492,49,20,1,0.0 +24492,12,38,18,0.0 +24492,24,4.5,42,0.0 +24492,50,16.25,28,0.0 +24492,35,18,14,0.0 +24492,13,6,46,0.0 +24492,23,9,33,0.0 +24492,2,19,46,0.0 +24492,6,25,15,0.0 +24492,27,43.9,49,0.0 +24492,19,9.2,31,0.0 +24492,56,38,7,0.0 +24492,17,39,37,0.0 +24492,41,9.65,40,0.0 +24493,6,25,10,0.0 +24493,48,12.75,43,0.0 +24493,36,19,5,0.0 +24493,16,17.45,47,0.0 +24493,56,38,9,0.0 +24493,50,16.25,8,0.0 +24493,44,19.45,34,0.0 +24493,45,9.5,32,0.0 +24493,39,18,2,0.0 +24493,60,34,22,0.0 +24493,30,25.89,35,0.0 +24493,71,21.5,14,0.0 +24493,25,14,6,0.0 +24493,67,14,44,0.0 +24493,13,6,13,0.0 +24493,59,55,46,0.0 +24493,42,14,37,0.0 +24493,54,7.45,18,0.0 +24493,35,18,8,0.0 +24493,23,9,10,0.0 +24493,28,45.6,39,0.0 +24493,34,14,34,0.0 +24493,75,7.75,33,0.0 +24493,4,22,19,0.0 +24493,31,12.5,10,0.0 +24493,26,31.23,15,0.0 +24493,18,62.5,25,0.0 +24493,29,123.79,6,0.0 +24493,27,43.9,31,0.0 +24493,57,19.5,30,0.0 +24493,51,53,14,0.0 +24493,76,18,31,0.0 +24493,62,49.3,1,0.0 +24493,1,18,21,0.0 +24493,47,9.5,42,0.0 +24493,74,10,26,0.0 +24493,5,21.35,43,0.0 +24493,17,39,7,0.0 +24493,38,263.5,41,0.0 +24493,3,10,15,0.0 +24493,20,81,29,0.0 +24493,41,9.65,12,0.0 +24494,20,81,32,0.0 +24494,26,31.23,9,0.0 +24494,33,2.5,49,0.0 +24494,60,34,9,0.0 +24494,34,14,22,0.0 +24494,70,15,29,0.0 +24494,28,45.6,43,0.0 +24494,57,19.5,18,0.0 +24494,54,7.45,18,0.0 +24494,56,38,6,0.0 +24494,36,19,18,0.0 +24494,44,19.45,2,0.0 +24494,39,18,43,0.0 +24494,43,46,9,0.0 +24494,71,21.5,36,0.0 +24494,15,15.5,10,0.0 +24494,16,17.45,18,0.0 +24494,49,20,31,0.0 +24494,18,62.5,32,0.0 +24494,41,9.65,36,0.0 +24494,74,10,43,0.0 +24494,24,4.5,40,0.0 +24494,76,18,5,0.0 +24494,23,9,20,0.0 +24494,40,18.4,21,0.0 +24494,62,49.3,16,0.0 +24494,21,10,45,0.0 +24494,55,24,44,0.0 +24494,48,12.75,9,0.0 +24494,68,12.5,3,0.0 +24494,65,21.05,20,0.0 +24494,27,43.9,18,0.0 +24494,8,40,48,0.0 +24494,53,32.8,41,0.0 +24494,58,13.25,45,0.0 +24494,64,33.25,49,0.0 +24494,38,263.5,18,0.0 +24494,46,12,26,0.0 +24494,13,6,35,0.0 +24494,32,32,22,0.0 +24494,67,14,21,0.0 +24494,4,22,25,0.0 +24494,59,55,9,0.0 +24495,38,263.5,16,0.0 +24495,76,18,24,0.0 +24495,37,26,46,0.0 +24495,17,39,46,0.0 +24495,77,13,3,0.0 +24495,35,18,21,0.0 +24495,60,34,36,0.0 +24495,28,45.6,7,0.0 +24495,34,14,50,0.0 +24495,61,28.5,18,0.0 +24495,27,43.9,25,0.0 +24495,33,2.5,6,0.0 +24495,40,18.4,11,0.0 +24495,23,9,18,0.0 +24495,8,40,26,0.0 +24495,50,16.25,5,0.0 +24495,53,32.8,49,0.0 +24495,73,15,37,0.0 +24495,74,10,41,0.0 +24495,68,12.5,41,0.0 +24495,72,34.8,7,0.0 +24495,69,36,20,0.0 +24495,2,19,6,0.0 +24496,49,20,20,0.0 +24496,47,9.5,3,0.0 +24496,43,46,15,0.0 +24496,34,14,7,0.0 +24496,21,10,43,0.0 +24496,8,40,21,0.0 +24496,35,18,47,0.0 +24496,61,28.5,27,0.0 +24496,69,36,17,0.0 +24496,57,19.5,48,0.0 +24496,31,12.5,17,0.0 +24496,22,21,41,0.0 +24496,77,13,36,0.0 +24496,14,23.25,17,0.0 +24496,53,32.8,33,0.0 +24496,55,24,8,0.0 +24496,62,49.3,5,0.0 +24497,7,30,48,0.0 +24497,13,6,17,0.0 +24497,65,21.05,8,0.0 +24497,31,12.5,38,0.0 +24497,8,40,15,0.0 +24497,32,32,46,0.0 +24497,25,14,16,0.0 +24497,28,45.6,41,0.0 +24497,54,7.45,50,0.0 +24497,45,9.5,37,0.0 +24497,5,21.35,50,0.0 +24497,56,38,5,0.0 +24497,72,34.8,15,0.0 +24497,37,26,13,0.0 +24497,74,10,50,0.0 +24497,9,97,44,0.0 +24497,23,9,42,0.0 +24497,12,38,40,0.0 +24497,46,12,17,0.0 +24497,60,34,28,0.0 +24497,14,23.25,46,0.0 +24497,17,39,23,0.0 +24497,16,17.45,45,0.0 +24497,15,15.5,4,0.0 +24497,48,12.75,14,0.0 +24497,40,18.4,16,0.0 +24497,73,15,13,0.0 +24497,29,123.79,11,0.0 +24497,30,25.89,46,0.0 +24497,22,21,44,0.0 +24497,1,18,21,0.0 +24497,6,25,35,0.0 +24497,68,12.5,27,0.0 +24497,2,19,15,0.0 +24497,11,21,45,0.0 +24497,18,62.5,38,0.0 +24497,35,18,12,0.0 +24497,57,19.5,37,0.0 +24497,61,28.5,31,0.0 +24497,49,20,21,0.0 +24497,50,16.25,24,0.0 +24497,42,14,48,0.0 +24497,39,18,11,0.0 +24497,43,46,27,0.0 +24497,75,7.75,50,0.0 +24497,47,9.5,4,0.0 +24497,3,10,12,0.0 +24497,21,10,48,0.0 +24497,4,22,6,0.0 +24497,71,21.5,10,0.0 +24497,38,263.5,9,0.0 +24497,20,81,23,0.0 +24497,52,7,38,0.0 +24497,41,9.65,6,0.0 +24497,53,32.8,43,0.0 +24497,24,4.5,34,0.0 +24497,55,24,31,0.0 +24497,66,17,49,0.0 +24497,10,31,50,0.0 +24497,58,13.25,4,0.0 +24497,27,43.9,16,0.0 +24497,51,53,42,0.0 +24497,19,9.2,34,0.0 +24497,69,36,49,0.0 +24498,10,31,22,0.0 +24498,4,22,44,0.0 +24498,29,123.79,12,0.0 +24498,38,263.5,32,0.0 +24498,1,18,41,0.0 +24498,49,20,39,0.0 +24498,31,12.5,30,0.0 +24498,60,34,45,0.0 +24498,64,33.25,11,0.0 +24498,48,12.75,40,0.0 +24498,56,38,38,0.0 +24498,8,40,45,0.0 +24498,76,18,43,0.0 +24498,6,25,21,0.0 +24498,21,10,37,0.0 +24498,59,55,35,0.0 +24498,35,18,32,0.0 +24498,37,26,13,0.0 +24498,16,17.45,19,0.0 +24498,77,13,43,0.0 +24498,22,21,33,0.0 +24498,25,14,30,0.0 +24498,65,21.05,39,0.0 +24498,30,25.89,2,0.0 +24498,51,53,35,0.0 +24498,71,21.5,30,0.0 +24498,39,18,48,0.0 +24498,72,34.8,31,0.0 +24498,63,43.9,9,0.0 +24498,11,21,40,0.0 +24498,3,10,33,0.0 +24498,47,9.5,37,0.0 +24498,45,9.5,49,0.0 +24498,68,12.5,28,0.0 +24498,34,14,3,0.0 +24498,67,14,36,0.0 +24498,28,45.6,31,0.0 +24498,27,43.9,4,0.0 +24498,12,38,17,0.0 +24498,19,9.2,7,0.0 +24498,57,19.5,23,0.0 +24498,20,81,16,0.0 +24498,15,15.5,48,0.0 +24498,74,10,33,0.0 +24498,58,13.25,11,0.0 +24498,52,7,17,0.0 +24498,24,4.5,18,0.0 +24498,42,14,34,0.0 +24498,9,97,28,0.0 +24498,61,28.5,4,0.0 +24498,54,7.45,17,0.0 +24498,33,2.5,18,0.0 +24498,13,6,40,0.0 +24498,66,17,39,0.0 +24498,26,31.23,28,0.0 +24498,70,15,50,0.0 +24498,62,49.3,34,0.0 +24498,36,19,45,0.0 +24498,44,19.45,13,0.0 +24498,75,7.75,14,0.0 +24498,2,19,5,0.0 +24498,46,12,40,0.0 +24498,41,9.65,9,0.0 +24498,17,39,44,0.0 +24498,32,32,18,0.0 +24498,43,46,31,0.0 +24498,40,18.4,38,0.0 +24498,5,21.35,36,0.0 +24498,18,62.5,49,0.0 +24498,53,32.8,47,0.0 +24499,76,18,3,0.0 +24499,25,14,12,0.0 +24499,9,97,3,0.0 +24499,71,21.5,2,0.0 +24499,39,18,39,0.0 +24499,61,28.5,45,0.0 +24499,34,14,27,0.0 +24499,32,32,49,0.0 +24499,53,32.8,47,0.0 +24499,2,19,22,0.0 +24499,13,6,32,0.0 +24499,7,30,45,0.0 +24499,5,21.35,23,0.0 +24499,36,19,37,0.0 +24499,23,9,9,0.0 +24499,29,123.79,7,0.0 +24499,18,62.5,33,0.0 +24499,50,16.25,2,0.0 +24499,11,21,18,0.0 +24499,26,31.23,46,0.0 +24499,37,26,45,0.0 +24499,19,9.2,20,0.0 +24499,44,19.45,35,0.0 +24499,62,49.3,30,0.0 +24499,41,9.65,33,0.0 +24499,22,21,50,0.0 +24499,42,14,38,0.0 +24499,28,45.6,14,0.0 +24499,46,12,33,0.0 +24499,21,10,46,0.0 +24499,54,7.45,13,0.0 +24499,40,18.4,45,0.0 +24499,24,4.5,50,0.0 +24499,48,12.75,8,0.0 +24499,3,10,41,0.0 +24499,64,33.25,1,0.0 +24499,65,21.05,10,0.0 +24499,17,39,30,0.0 +24500,50,16.25,49,0.0 +24500,31,12.5,25,0.0 +24500,23,9,3,0.0 +24500,18,62.5,12,0.0 +24500,55,24,38,0.0 +24500,57,19.5,31,0.0 +24500,67,14,15,0.0 +24500,29,123.79,45,0.0 +24500,7,30,34,0.0 +24500,60,34,38,0.0 +24500,72,34.8,23,0.0 +24500,64,33.25,20,0.0 +24500,53,32.8,14,0.0 +24501,48,12.75,26,0.0 +24501,28,45.6,10,0.0 +24501,29,123.79,32,0.0 +24501,52,7,33,0.0 +24501,77,13,29,0.0 +24501,1,18,12,0.0 +24501,13,6,16,0.0 +24501,22,21,44,0.0 +24501,14,23.25,49,0.0 +24501,70,15,10,0.0 +24501,39,18,44,0.0 +24501,75,7.75,24,0.0 +24501,40,18.4,3,0.0 +24501,25,14,16,0.0 +24501,50,16.25,41,0.0 +24501,32,32,42,0.0 +24501,47,9.5,7,0.0 +24501,19,9.2,15,0.0 +24501,74,10,39,0.0 +24501,18,62.5,29,0.0 +24501,21,10,33,0.0 +24501,54,7.45,36,0.0 +24501,73,15,16,0.0 +24501,43,46,35,0.0 +24501,24,4.5,19,0.0 +24501,53,32.8,39,0.0 +24501,41,9.65,20,0.0 +24501,16,17.45,5,0.0 +24501,63,43.9,33,0.0 +24501,55,24,21,0.0 +24501,45,9.5,26,0.0 +24501,38,263.5,22,0.0 +24501,9,97,29,0.0 +24501,64,33.25,42,0.0 +24501,44,19.45,37,0.0 +24501,59,55,49,0.0 +24501,66,17,26,0.0 +24501,35,18,33,0.0 +24501,67,14,34,0.0 +24501,65,21.05,44,0.0 +24501,2,19,4,0.0 +24501,26,31.23,29,0.0 +24501,68,12.5,9,0.0 +24501,72,34.8,15,0.0 +24501,51,53,36,0.0 +24501,3,10,22,0.0 +24501,69,36,41,0.0 +24501,60,34,40,0.0 +24501,37,26,50,0.0 +24501,33,2.5,31,0.0 +24501,17,39,25,0.0 +24501,12,38,38,0.0 +24501,8,40,5,0.0 +24501,46,12,35,0.0 +24501,76,18,35,0.0 +24501,6,25,14,0.0 +24501,10,31,26,0.0 +24501,34,14,3,0.0 +24501,57,19.5,10,0.0 +24501,27,43.9,35,0.0 +24501,31,12.5,40,0.0 +24501,58,13.25,17,0.0 +24501,62,49.3,32,0.0 +24502,21,10,19,0.0 +24502,49,20,10,0.0 +24502,74,10,2,0.0 +24502,24,4.5,34,0.0 +24502,3,10,34,0.0 +24502,77,13,34,0.0 +24503,73,15,21,0.0 +24503,3,10,17,0.0 +24503,20,81,5,0.0 +24503,65,21.05,21,0.0 +24503,76,18,11,0.0 +24503,37,26,14,0.0 +24503,16,17.45,23,0.0 +24503,19,9.2,10,0.0 +24503,71,21.5,20,0.0 +24503,12,38,29,0.0 +24503,42,14,18,0.0 +24503,52,7,33,0.0 +24503,13,6,21,0.0 +24503,53,32.8,42,0.0 +24503,64,33.25,22,0.0 +24503,35,18,50,0.0 +24503,70,15,8,0.0 +24503,39,18,9,0.0 +24503,30,25.89,15,0.0 +24503,55,24,4,0.0 +24503,2,19,14,0.0 +24503,28,45.6,8,0.0 +24503,49,20,1,0.0 +24503,18,62.5,41,0.0 +24503,7,30,11,0.0 +24503,21,10,20,0.0 +24503,33,2.5,32,0.0 +24503,51,53,11,0.0 +24503,14,23.25,15,0.0 +24503,4,22,45,0.0 +24503,15,15.5,39,0.0 +24503,27,43.9,46,0.0 +24503,77,13,37,0.0 +24503,69,36,3,0.0 +24503,57,19.5,50,0.0 +24503,66,17,33,0.0 +24503,75,7.75,32,0.0 +24503,9,97,20,0.0 +24503,5,21.35,28,0.0 +24503,40,18.4,49,0.0 +24503,43,46,49,0.0 +24503,23,9,35,0.0 +24503,41,9.65,21,0.0 +24503,68,12.5,15,0.0 +24503,54,7.45,17,0.0 +24503,58,13.25,38,0.0 +24503,26,31.23,3,0.0 +24503,48,12.75,49,0.0 +24503,10,31,38,0.0 +24503,29,123.79,10,0.0 +24503,61,28.5,42,0.0 +24503,63,43.9,19,0.0 +24503,11,21,47,0.0 +24503,44,19.45,39,0.0 +24503,72,34.8,37,0.0 +24503,1,18,31,0.0 +24503,32,32,24,0.0 +24503,24,4.5,27,0.0 +24503,59,55,45,0.0 +24503,60,34,44,0.0 +24503,31,12.5,15,0.0 +24503,36,19,16,0.0 +24503,22,21,3,0.0 +24503,6,25,9,0.0 +24503,8,40,37,0.0 +24503,56,38,29,0.0 +24503,62,49.3,20,0.0 +24503,34,14,34,0.0 +24503,46,12,45,0.0 +24503,47,9.5,24,0.0 +24503,17,39,2,0.0 +24503,67,14,2,0.0 +24503,38,263.5,42,0.0 +24503,45,9.5,7,0.0 +24503,74,10,7,0.0 +24503,25,14,13,0.0 +24504,42,14,32,0.0 +24504,56,38,45,0.0 +24504,43,46,47,0.0 +24504,36,19,13,0.0 +24504,13,6,25,0.0 +24504,24,4.5,15,0.0 +24505,27,43.9,25,0.0 +24505,12,38,33,0.0 +24505,9,97,8,0.0 +24505,42,14,33,0.0 +24505,30,25.89,24,0.0 +24505,58,13.25,28,0.0 +24505,15,15.5,19,0.0 +24505,29,123.79,49,0.0 +24505,6,25,34,0.0 +24505,39,18,31,0.0 +24505,4,22,27,0.0 +24505,73,15,3,0.0 +24505,3,10,14,0.0 +24505,43,46,38,0.0 +24505,20,81,23,0.0 +24505,74,10,26,0.0 +24505,54,7.45,43,0.0 +24505,19,9.2,36,0.0 +24506,69,36,44,0.0 +24506,62,49.3,1,0.0 +24506,23,9,17,0.0 +24506,40,18.4,41,0.0 +24506,67,14,24,0.0 +24506,35,18,50,0.0 +24506,51,53,40,0.0 +24506,36,19,17,0.0 +24506,5,21.35,11,0.0 +24506,42,14,14,0.0 +24506,39,18,31,0.0 +24506,22,21,50,0.0 +24506,32,32,9,0.0 +24506,44,19.45,32,0.0 +24506,12,38,44,0.0 +24506,43,46,6,0.0 +24507,71,21.5,15,0.0 +24507,59,55,12,0.0 +24507,21,10,33,0.0 +24507,68,12.5,4,0.0 +24507,36,19,18,0.0 +24507,60,34,30,0.0 +24507,20,81,25,0.0 +24507,2,19,23,0.0 +24507,53,32.8,25,0.0 +24507,19,9.2,38,0.0 +24507,6,25,28,0.0 +24507,16,17.45,42,0.0 +24507,67,14,39,0.0 +24507,63,43.9,9,0.0 +24507,50,16.25,19,0.0 +24507,41,9.65,30,0.0 +24507,28,45.6,47,0.0 +24507,34,14,4,0.0 +24507,37,26,6,0.0 +24507,40,18.4,46,0.0 +24507,7,30,28,0.0 +24507,10,31,44,0.0 +24507,42,14,12,0.0 +24507,35,18,20,0.0 +24507,69,36,12,0.0 +24507,24,4.5,20,0.0 +24507,4,22,27,0.0 +24507,22,21,20,0.0 +24507,76,18,33,0.0 +24507,62,49.3,26,0.0 +24507,29,123.79,27,0.0 +24507,23,9,30,0.0 +24507,30,25.89,40,0.0 +24507,31,12.5,12,0.0 +24507,5,21.35,7,0.0 +24507,1,18,1,0.0 +24507,12,38,45,0.0 +24507,54,7.45,40,0.0 +24507,65,21.05,49,0.0 +24507,9,97,25,0.0 +24507,56,38,27,0.0 +24507,51,53,39,0.0 +24507,74,10,49,0.0 +24507,45,9.5,43,0.0 +24507,48,12.75,2,0.0 +24507,52,7,17,0.0 +24507,14,23.25,47,0.0 +24507,57,19.5,40,0.0 +24507,46,12,8,0.0 +24507,17,39,17,0.0 +24507,77,13,27,0.0 +24507,13,6,30,0.0 +24507,73,15,30,0.0 +24507,66,17,37,0.0 +24507,70,15,45,0.0 +24507,27,43.9,43,0.0 +24507,32,32,12,0.0 +24507,33,2.5,24,0.0 +24507,8,40,34,0.0 +24507,55,24,13,0.0 +24507,64,33.25,15,0.0 +24507,25,14,37,0.0 +24507,11,21,47,0.0 +24507,47,9.5,45,0.0 +24508,50,16.25,24,0.0 +24508,24,4.5,30,0.0 +24508,49,20,18,0.0 +24508,15,15.5,38,0.0 +24508,38,263.5,30,0.0 +24508,51,53,41,0.0 +24508,46,12,16,0.0 +24508,41,9.65,35,0.0 +24508,72,34.8,31,0.0 +24508,5,21.35,22,0.0 +24508,26,31.23,14,0.0 +24508,31,12.5,25,0.0 +24508,54,7.45,11,0.0 +24508,1,18,37,0.0 +24508,28,45.6,43,0.0 +24509,42,14,47,0.0 +24509,74,10,47,0.0 +24509,31,12.5,23,0.0 +24509,37,26,15,0.0 +24509,53,32.8,1,0.0 +24509,25,14,42,0.0 +24509,15,15.5,1,0.0 +24509,76,18,45,0.0 +24510,18,62.5,22,0.0 +24510,21,10,17,0.0 +24510,46,12,17,0.0 +24510,35,18,50,0.0 +24510,49,20,24,0.0 +24510,24,4.5,39,0.0 +24510,5,21.35,45,0.0 +24510,72,34.8,34,0.0 +24510,32,32,40,0.0 +24510,11,21,26,0.0 +24510,3,10,10,0.0 +24510,55,24,31,0.0 +24510,16,17.45,48,0.0 +24510,2,19,37,0.0 +24510,63,43.9,5,0.0 +24510,66,17,10,0.0 +24510,50,16.25,2,0.0 +24510,68,12.5,47,0.0 +24510,44,19.45,13,0.0 +24510,36,19,41,0.0 +24510,14,23.25,21,0.0 +24510,10,31,15,0.0 +24510,75,7.75,12,0.0 +24510,76,18,8,0.0 +24510,51,53,50,0.0 +24510,1,18,29,0.0 +24510,15,15.5,25,0.0 +24510,33,2.5,12,0.0 +24510,53,32.8,45,0.0 +24510,69,36,16,0.0 +24510,38,263.5,15,0.0 +24510,9,97,5,0.0 +24510,6,25,44,0.0 +24510,27,43.9,36,0.0 +24510,12,38,38,0.0 +24510,61,28.5,11,0.0 +24510,23,9,30,0.0 +24510,54,7.45,11,0.0 +24510,7,30,18,0.0 +24510,41,9.65,48,0.0 +24510,77,13,26,0.0 +24510,29,123.79,40,0.0 +24510,34,14,38,0.0 +24510,25,14,34,0.0 +24510,40,18.4,37,0.0 +24510,37,26,45,0.0 +24510,4,22,7,0.0 +24510,45,9.5,9,0.0 +24510,20,81,16,0.0 +24510,65,21.05,17,0.0 +24510,28,45.6,1,0.0 +24510,17,39,29,0.0 +24510,52,7,32,0.0 +24510,70,15,14,0.0 +24510,19,9.2,27,0.0 +24510,39,18,47,0.0 +24510,31,12.5,42,0.0 +24510,48,12.75,35,0.0 +24510,74,10,28,0.0 +24510,62,49.3,18,0.0 +24510,8,40,39,0.0 +24510,22,21,31,0.0 +24510,67,14,39,0.0 +24511,50,16.25,8,0.0 +24511,22,21,19,0.0 +24511,41,9.65,27,0.0 +24511,38,263.5,24,0.0 +24511,11,21,46,0.0 +24511,48,12.75,12,0.0 +24511,23,9,19,0.0 +24511,76,18,23,0.0 +24511,13,6,29,0.0 +24511,68,12.5,35,0.0 +24511,20,81,3,0.0 +24511,34,14,31,0.0 +24511,42,14,23,0.0 +24511,70,15,30,0.0 +24511,31,12.5,48,0.0 +24511,17,39,36,0.0 +24511,58,13.25,22,0.0 +24511,30,25.89,42,0.0 +24511,33,2.5,34,0.0 +24511,56,38,16,0.0 +24511,28,45.6,22,0.0 +24511,64,33.25,9,0.0 +24511,10,31,11,0.0 +24511,1,18,50,0.0 +24511,52,7,17,0.0 +24511,8,40,32,0.0 +24511,44,19.45,33,0.0 +24511,15,15.5,38,0.0 +24511,18,62.5,31,0.0 +24511,45,9.5,28,0.0 +24511,60,34,9,0.0 +24511,19,9.2,19,0.0 +24511,67,14,3,0.0 +24511,32,32,10,0.0 +24511,55,24,22,0.0 +24511,73,15,50,0.0 +24511,7,30,1,0.0 +24511,66,17,49,0.0 +24511,4,22,10,0.0 +24511,69,36,18,0.0 +24511,37,26,10,0.0 +24511,36,19,40,0.0 +24511,3,10,7,0.0 +24511,75,7.75,12,0.0 +24511,12,38,44,0.0 +24511,21,10,45,0.0 +24511,6,25,36,0.0 +24511,27,43.9,4,0.0 +24511,14,23.25,26,0.0 +24511,57,19.5,26,0.0 +24511,59,55,29,0.0 +24511,43,46,34,0.0 +24511,74,10,34,0.0 +24511,53,32.8,18,0.0 +24511,71,21.5,16,0.0 +24511,40,18.4,45,0.0 +24511,26,31.23,38,0.0 +24511,65,21.05,18,0.0 +24511,29,123.79,3,0.0 +24511,39,18,35,0.0 +24511,77,13,33,0.0 +24511,5,21.35,29,0.0 +24511,46,12,20,0.0 +24511,61,28.5,22,0.0 +24511,2,19,10,0.0 +24512,8,40,36,0.0 +24512,65,21.05,45,0.0 +24512,41,9.65,24,0.0 +24512,17,39,9,0.0 +24512,62,49.3,23,0.0 +24512,53,32.8,38,0.0 +24512,32,32,24,0.0 +24512,49,20,6,0.0 +24512,45,9.5,36,0.0 +24512,18,62.5,1,0.0 +24512,63,43.9,38,0.0 +24512,73,15,26,0.0 +24512,54,7.45,18,0.0 +24512,5,21.35,27,0.0 +24512,40,18.4,4,0.0 +24512,64,33.25,39,0.0 +24512,13,6,17,0.0 +24512,55,24,26,0.0 +24512,76,18,11,0.0 +24512,57,19.5,4,0.0 +24512,68,12.5,21,0.0 +24512,14,23.25,44,0.0 +24512,75,7.75,41,0.0 +24512,42,14,29,0.0 +24512,20,81,29,0.0 +24512,31,12.5,30,0.0 +24512,71,21.5,20,0.0 +24512,72,34.8,21,0.0 +24512,47,9.5,25,0.0 +24512,11,21,5,0.0 +24512,2,19,9,0.0 +24512,27,43.9,37,0.0 +24512,7,30,40,0.0 +24512,44,19.45,15,0.0 +24512,16,17.45,9,0.0 +24512,29,123.79,21,0.0 +24512,36,19,32,0.0 +24512,60,34,30,0.0 +24512,24,4.5,13,0.0 +24512,74,10,40,0.0 +24512,6,25,3,0.0 +24512,66,17,41,0.0 +24512,30,25.89,21,0.0 +24512,61,28.5,41,0.0 +24512,9,97,4,0.0 +24512,46,12,34,0.0 +24512,4,22,3,0.0 +24512,19,9.2,31,0.0 +24513,53,32.8,35,0.0 +24513,12,38,50,0.0 +24513,75,7.75,37,0.0 +24513,22,21,38,0.0 +24513,49,20,43,0.0 +24513,65,21.05,36,0.0 +24513,24,4.5,3,0.0 +24513,60,34,48,0.0 +24513,44,19.45,34,0.0 +24513,2,19,18,0.0 +24513,52,7,12,0.0 +24513,57,19.5,13,0.0 +24513,56,38,18,0.0 +24513,63,43.9,46,0.0 +24513,32,32,45,0.0 +24513,28,45.6,34,0.0 +24513,66,17,48,0.0 +24513,59,55,1,0.0 +24513,18,62.5,46,0.0 +24513,20,81,5,0.0 +24513,68,12.5,11,0.0 +24513,14,23.25,20,0.0 +24513,13,6,13,0.0 +24513,16,17.45,20,0.0 +24513,70,15,49,0.0 +24513,73,15,35,0.0 +24513,42,14,19,0.0 +24513,37,26,5,0.0 +24513,33,2.5,4,0.0 +24513,51,53,44,0.0 +24513,54,7.45,20,0.0 +24513,71,21.5,49,0.0 +24513,55,24,25,0.0 +24513,26,31.23,47,0.0 +24513,76,18,38,0.0 +24513,5,21.35,3,0.0 +24513,39,18,23,0.0 +24513,34,14,17,0.0 +24513,61,28.5,9,0.0 +24513,21,10,21,0.0 +24513,64,33.25,46,0.0 +24513,50,16.25,18,0.0 +24513,67,14,23,0.0 +24513,9,97,11,0.0 +24513,11,21,18,0.0 +24513,77,13,24,0.0 +24513,6,25,26,0.0 +24513,58,13.25,30,0.0 +24513,29,123.79,16,0.0 +24513,17,39,10,0.0 +24513,72,34.8,34,0.0 +24513,48,12.75,21,0.0 +24513,19,9.2,18,0.0 +24513,27,43.9,28,0.0 +24513,69,36,22,0.0 +24513,25,14,12,0.0 +24513,36,19,7,0.0 +24513,4,22,18,0.0 +24513,46,12,9,0.0 +24513,1,18,13,0.0 +24513,43,46,45,0.0 +24513,41,9.65,36,0.0 +24513,74,10,9,0.0 +24513,10,31,8,0.0 +24513,23,9,7,0.0 +24513,35,18,48,0.0 +24513,45,9.5,8,0.0 +24514,29,123.79,35,0.0 +24514,52,7,6,0.0 +24514,9,97,49,0.0 +24514,66,17,33,0.0 +24514,18,62.5,2,0.0 +24514,40,18.4,50,0.0 +24514,77,13,16,0.0 +24514,32,32,2,0.0 +24514,62,49.3,19,0.0 +24514,33,2.5,42,0.0 +24514,43,46,13,0.0 +24514,72,34.8,36,0.0 +24514,26,31.23,29,0.0 +24514,7,30,31,0.0 +24514,63,43.9,4,0.0 +24514,68,12.5,2,0.0 +24514,50,16.25,21,0.0 +24514,1,18,40,0.0 +24514,36,19,36,0.0 +24514,41,9.65,9,0.0 +24514,39,18,19,0.0 +24514,11,21,40,0.0 +24514,17,39,46,0.0 +24514,47,9.5,9,0.0 +24514,19,9.2,3,0.0 +24514,76,18,33,0.0 +24514,57,19.5,21,0.0 +24514,65,21.05,8,0.0 +24514,5,21.35,22,0.0 +24514,48,12.75,39,0.0 +24514,53,32.8,35,0.0 +24514,3,10,34,0.0 +24514,44,19.45,45,0.0 +24514,24,4.5,28,0.0 +24514,59,55,11,0.0 +24514,58,13.25,30,0.0 +24514,13,6,6,0.0 +24514,22,21,31,0.0 +24514,14,23.25,11,0.0 +24514,73,15,7,0.0 +24514,54,7.45,20,0.0 +24514,2,19,34,0.0 +24514,15,15.5,4,0.0 +24514,75,7.75,37,0.0 +24514,23,9,15,0.0 +24514,64,33.25,50,0.0 +24514,16,17.45,8,0.0 +24514,8,40,20,0.0 +24514,34,14,30,0.0 +24514,28,45.6,49,0.0 +24514,60,34,18,0.0 +24514,10,31,27,0.0 +24514,70,15,13,0.0 +24514,4,22,20,0.0 +24514,69,36,46,0.0 +24514,49,20,4,0.0 +24514,67,14,3,0.0 +24514,56,38,50,0.0 +24514,42,14,3,0.0 +24514,12,38,31,0.0 +24514,20,81,17,0.0 +24514,30,25.89,44,0.0 +24514,61,28.5,21,0.0 +24514,27,43.9,25,0.0 +24514,6,25,46,0.0 +24514,38,263.5,7,0.0 +24514,71,21.5,47,0.0 +24514,55,24,33,0.0 +24514,21,10,46,0.0 +24514,35,18,36,0.0 +24514,25,14,15,0.0 +24514,45,9.5,41,0.0 +24514,74,10,14,0.0 +24515,8,40,11,0.0 +24515,44,19.45,2,0.0 +24515,64,33.25,9,0.0 +24515,76,18,25,0.0 +24515,65,21.05,13,0.0 +24515,63,43.9,40,0.0 +24515,62,49.3,11,0.0 +24515,18,62.5,7,0.0 +24515,35,18,50,0.0 +24515,66,17,23,0.0 +24515,13,6,28,0.0 +24515,41,9.65,45,0.0 +24515,75,7.75,8,0.0 +24515,9,97,7,0.0 +24515,23,9,34,0.0 +24515,28,45.6,5,0.0 +24515,42,14,26,0.0 +24515,69,36,31,0.0 +24515,29,123.79,4,0.0 +24515,52,7,7,0.0 +24515,67,14,15,0.0 +24515,40,18.4,21,0.0 +24515,38,263.5,44,0.0 +24515,51,53,30,0.0 +24515,59,55,48,0.0 +24515,73,15,38,0.0 +24515,45,9.5,34,0.0 +24515,24,4.5,12,0.0 +24515,34,14,44,0.0 +24515,68,12.5,7,0.0 +24515,43,46,1,0.0 +24515,1,18,13,0.0 +24515,14,23.25,31,0.0 +24515,2,19,36,0.0 +24516,17,39,39,0.0 +24516,32,32,30,0.0 +24516,39,18,1,0.0 +24516,73,15,31,0.0 +24516,21,10,47,0.0 +24516,38,263.5,29,0.0 +24516,24,4.5,46,0.0 +24516,47,9.5,35,0.0 +24516,30,25.89,16,0.0 +24516,61,28.5,23,0.0 +24516,69,36,39,0.0 +24516,40,18.4,37,0.0 +24516,10,31,5,0.0 +24516,5,21.35,40,0.0 +24516,67,14,49,0.0 +24516,44,19.45,9,0.0 +24516,55,24,3,0.0 +24516,66,17,4,0.0 +24516,25,14,11,0.0 +24516,70,15,49,0.0 +24516,4,22,5,0.0 +24516,33,2.5,9,0.0 +24516,8,40,21,0.0 +24516,42,14,41,0.0 +24516,9,97,15,0.0 +24516,34,14,39,0.0 +24516,56,38,15,0.0 +24516,74,10,10,0.0 +24516,7,30,48,0.0 +24516,29,123.79,28,0.0 +24516,28,45.6,38,0.0 +24516,57,19.5,19,0.0 +24516,26,31.23,16,0.0 +24516,31,12.5,17,0.0 +24516,63,43.9,19,0.0 +24516,48,12.75,22,0.0 +24516,49,20,23,0.0 +24516,27,43.9,29,0.0 +24516,77,13,49,0.0 +24516,50,16.25,20,0.0 +24516,72,34.8,1,0.0 +24516,1,18,3,0.0 +24516,53,32.8,25,0.0 +24517,41,9.65,50,0.0 +24517,47,9.5,17,0.0 +24517,63,43.9,41,0.0 +24517,44,19.45,33,0.0 +24517,62,49.3,40,0.0 +24517,75,7.75,19,0.0 +24517,3,10,36,0.0 +24517,42,14,50,0.0 +24517,9,97,7,0.0 +24517,57,19.5,41,0.0 +24517,56,38,46,0.0 +24517,68,12.5,40,0.0 +24517,45,9.5,30,0.0 +24517,7,30,45,0.0 +24517,27,43.9,31,0.0 +24517,40,18.4,32,0.0 +24517,29,123.79,17,0.0 +24517,34,14,31,0.0 +24517,30,25.89,23,0.0 +24517,24,4.5,38,0.0 +24517,26,31.23,4,0.0 +24517,6,25,9,0.0 +24517,58,13.25,50,0.0 +24517,64,33.25,9,0.0 +24517,5,21.35,26,0.0 +24517,76,18,11,0.0 +24517,16,17.45,12,0.0 +24517,50,16.25,8,0.0 +24517,74,10,42,0.0 +24517,36,19,24,0.0 +24517,67,14,5,0.0 +24517,32,32,38,0.0 +24517,48,12.75,32,0.0 +24517,4,22,44,0.0 +24517,38,263.5,23,0.0 +24518,56,38,40,0.0 +24518,55,24,34,0.0 +24518,65,21.05,14,0.0 +24518,21,10,8,0.0 +24518,70,15,41,0.0 +24518,59,55,46,0.0 +24518,32,32,1,0.0 +24518,36,19,28,0.0 +24518,45,9.5,50,0.0 +24518,24,4.5,36,0.0 +24518,12,38,21,0.0 +24518,75,7.75,23,0.0 +24518,1,18,17,0.0 +24518,53,32.8,19,0.0 +24518,71,21.5,46,0.0 +24518,52,7,19,0.0 +24518,43,46,23,0.0 +24518,54,7.45,26,0.0 +24519,70,15,26,0.0 +24519,10,31,37,0.0 +24519,2,19,50,0.0 +24519,21,10,15,0.0 +24519,49,20,36,0.0 +24519,52,7,9,0.0 +24519,23,9,25,0.0 +24519,76,18,20,0.0 +24519,14,23.25,23,0.0 +24519,16,17.45,14,0.0 +24519,13,6,4,0.0 +24519,41,9.65,14,0.0 +24519,73,15,33,0.0 +24519,68,12.5,23,0.0 +24519,54,7.45,49,0.0 +24519,53,32.8,47,0.0 +24519,20,81,17,0.0 +24519,38,263.5,13,0.0 +24519,15,15.5,24,0.0 +24519,24,4.5,2,0.0 +24519,42,14,43,0.0 +24519,61,28.5,47,0.0 +24519,8,40,21,0.0 +24519,75,7.75,37,0.0 +24519,69,36,2,0.0 +24519,33,2.5,42,0.0 +24519,1,18,19,0.0 +24519,7,30,23,0.0 +24519,43,46,48,0.0 +24519,44,19.45,34,0.0 +24519,34,14,27,0.0 +24519,5,21.35,1,0.0 +24519,67,14,29,0.0 +24519,28,45.6,2,0.0 +24519,3,10,15,0.0 +24519,18,62.5,41,0.0 +24519,58,13.25,50,0.0 +24519,31,12.5,28,0.0 +24519,40,18.4,33,0.0 +24519,46,12,10,0.0 +24519,47,9.5,1,0.0 +24519,57,19.5,45,0.0 +24519,64,33.25,3,0.0 +24519,30,25.89,4,0.0 +24519,51,53,32,0.0 +24519,35,18,10,0.0 +24519,50,16.25,42,0.0 +24519,12,38,37,0.0 +24519,74,10,25,0.0 +24519,11,21,46,0.0 +24519,63,43.9,43,0.0 +24519,37,26,24,0.0 +24519,26,31.23,15,0.0 +24519,25,14,20,0.0 +24519,36,19,49,0.0 +24519,29,123.79,2,0.0 +24519,77,13,4,0.0 +24519,9,97,32,0.0 +24519,62,49.3,35,0.0 +24519,56,38,11,0.0 +24519,6,25,8,0.0 +24519,72,34.8,25,0.0 +24519,45,9.5,34,0.0 +24520,47,9.5,42,0.0 +24520,2,19,16,0.0 +24520,48,12.75,35,0.0 +24520,39,18,48,0.0 +24520,66,17,34,0.0 +24520,41,9.65,46,0.0 +24520,16,17.45,19,0.0 +24520,15,15.5,1,0.0 +24520,26,31.23,27,0.0 +24520,30,25.89,11,0.0 +24520,42,14,21,0.0 +24520,29,123.79,7,0.0 +24520,14,23.25,36,0.0 +24520,50,16.25,26,0.0 +24520,25,14,3,0.0 +24520,55,24,44,0.0 +24520,19,9.2,14,0.0 +24520,18,62.5,27,0.0 +24520,27,43.9,18,0.0 +24520,9,97,26,0.0 +24520,46,12,9,0.0 +24520,67,14,28,0.0 +24520,8,40,10,0.0 +24520,60,34,32,0.0 +24520,59,55,47,0.0 +24520,36,19,9,0.0 +24520,24,4.5,9,0.0 +24520,63,43.9,5,0.0 +24520,7,30,29,0.0 +24520,71,21.5,10,0.0 +24520,68,12.5,6,0.0 +24520,12,38,50,0.0 +24520,45,9.5,29,0.0 +24520,6,25,3,0.0 +24520,13,6,1,0.0 +24520,72,34.8,41,0.0 +24520,17,39,46,0.0 +24520,53,32.8,32,0.0 +24520,77,13,47,0.0 +24520,74,10,23,0.0 +24520,43,46,27,0.0 +24520,4,22,40,0.0 +24520,51,53,38,0.0 +24520,20,81,25,0.0 +24520,56,38,6,0.0 +24520,73,15,44,0.0 +24520,75,7.75,30,0.0 +24520,23,9,13,0.0 +24520,69,36,21,0.0 +24520,21,10,28,0.0 +24520,33,2.5,9,0.0 +24520,22,21,47,0.0 +24520,31,12.5,47,0.0 +24520,38,263.5,12,0.0 +24520,76,18,41,0.0 +24520,52,7,38,0.0 +24520,70,15,35,0.0 +24520,37,26,27,0.0 +24520,11,21,50,0.0 +24520,35,18,21,0.0 +24520,32,32,34,0.0 +24520,65,21.05,48,0.0 +24520,49,20,14,0.0 +24520,40,18.4,6,0.0 +24520,28,45.6,14,0.0 +24520,3,10,17,0.0 +24520,58,13.25,18,0.0 +24520,34,14,39,0.0 +24521,42,14,20,0.0 +24521,45,9.5,28,0.0 +24521,48,12.75,24,0.0 +24521,74,10,18,0.0 +24521,22,21,38,0.0 +24521,28,45.6,7,0.0 +24521,76,18,31,0.0 +24521,1,18,32,0.0 +24521,77,13,8,0.0 +24521,4,22,21,0.0 +24521,36,19,30,0.0 +24521,8,40,47,0.0 +24521,18,62.5,21,0.0 +24521,39,18,9,0.0 +24521,43,46,14,0.0 +24521,63,43.9,1,0.0 +24521,66,17,13,0.0 +24521,35,18,22,0.0 +24521,44,19.45,31,0.0 +24521,38,263.5,28,0.0 +24521,7,30,4,0.0 +24521,60,34,14,0.0 +24521,59,55,17,0.0 +24521,65,21.05,13,0.0 +24521,13,6,37,0.0 +24521,62,49.3,14,0.0 +24521,75,7.75,8,0.0 +24521,30,25.89,31,0.0 +24521,17,39,16,0.0 +24521,16,17.45,23,0.0 +24521,26,31.23,37,0.0 +24521,12,38,15,0.0 +24521,32,32,23,0.0 +24521,29,123.79,22,0.0 +24521,73,15,18,0.0 +24521,25,14,4,0.0 +24521,19,9.2,27,0.0 +24521,14,23.25,49,0.0 +24521,5,21.35,2,0.0 +24521,70,15,11,0.0 +24521,6,25,5,0.0 +24521,69,36,28,0.0 +24521,27,43.9,9,0.0 +24521,68,12.5,6,0.0 +24521,57,19.5,6,0.0 +24521,51,53,12,0.0 +24521,72,34.8,11,0.0 +24521,37,26,33,0.0 +24521,10,31,15,0.0 +24521,61,28.5,4,0.0 +24521,15,15.5,8,0.0 +24521,54,7.45,39,0.0 +24521,53,32.8,15,0.0 +24522,21,10,5,0.0 +24522,70,15,36,0.0 +24522,48,12.75,13,0.0 +24522,58,13.25,46,0.0 +24522,42,14,24,0.0 +24522,43,46,17,0.0 +24522,68,12.5,26,0.0 +24522,28,45.6,14,0.0 +24522,13,6,49,0.0 +24522,32,32,5,0.0 +24522,75,7.75,27,0.0 +24522,1,18,31,0.0 +24522,67,14,7,0.0 +24522,25,14,35,0.0 +24522,47,9.5,16,0.0 +24522,9,97,49,0.0 +24522,69,36,8,0.0 +24522,22,21,18,0.0 +24522,26,31.23,38,0.0 +24523,6,25,5,0.0 +24523,67,14,28,0.0 +24523,64,33.25,28,0.0 +24524,9,97,16,0.0 +24524,40,18.4,50,0.0 +24524,29,123.79,18,0.0 +24524,53,32.8,14,0.0 +24524,8,40,9,0.0 +24524,39,18,35,0.0 +24524,45,9.5,38,0.0 +24524,72,34.8,47,0.0 +24524,50,16.25,32,0.0 +24524,44,19.45,46,0.0 +24524,62,49.3,48,0.0 +24524,74,10,32,0.0 +24524,19,9.2,17,0.0 +24524,31,12.5,2,0.0 +24524,37,26,22,0.0 +24524,52,7,23,0.0 +24524,2,19,11,0.0 +24524,49,20,38,0.0 +24524,38,263.5,29,0.0 +24524,1,18,28,0.0 +24524,57,19.5,33,0.0 +24524,71,21.5,26,0.0 +24524,21,10,3,0.0 +24525,64,33.25,22,0.0 +24525,14,23.25,3,0.0 +24525,40,18.4,45,0.0 +24525,46,12,40,0.0 +24525,66,17,35,0.0 +24525,6,25,2,0.0 +24525,32,32,39,0.0 +24525,52,7,47,0.0 +24525,5,21.35,34,0.0 +24525,42,14,15,0.0 +24525,21,10,22,0.0 +24525,69,36,16,0.0 +24525,1,18,12,0.0 +24525,19,9.2,29,0.0 +24525,2,19,14,0.0 +24525,57,19.5,7,0.0 +24525,20,81,3,0.0 +24525,9,97,23,0.0 +24525,71,21.5,15,0.0 +24525,23,9,11,0.0 +24525,31,12.5,13,0.0 +24525,77,13,10,0.0 +24525,75,7.75,39,0.0 +24525,22,21,37,0.0 +24525,51,53,31,0.0 +24525,43,46,42,0.0 +24525,48,12.75,47,0.0 +24525,65,21.05,27,0.0 +24525,61,28.5,27,0.0 +24525,15,15.5,5,0.0 +24525,17,39,48,0.0 +24525,74,10,6,0.0 +24525,73,15,17,0.0 +24525,13,6,50,0.0 +24525,28,45.6,36,0.0 +24525,8,40,39,0.0 +24525,68,12.5,22,0.0 +24525,18,62.5,18,0.0 +24525,60,34,34,0.0 +24525,4,22,46,0.0 +24525,34,14,14,0.0 +24525,50,16.25,33,0.0 +24525,53,32.8,7,0.0 +24525,25,14,31,0.0 +24525,56,38,36,0.0 +24525,59,55,13,0.0 +24525,55,24,18,0.0 +24525,58,13.25,22,0.0 +24525,54,7.45,24,0.0 +24525,38,263.5,36,0.0 +24525,35,18,4,0.0 +24525,70,15,19,0.0 +24525,44,19.45,36,0.0 +24525,36,19,43,0.0 +24525,11,21,41,0.0 +24525,63,43.9,36,0.0 +24525,62,49.3,22,0.0 +24525,45,9.5,7,0.0 +24525,3,10,37,0.0 +24525,33,2.5,16,0.0 +24526,53,32.8,23,0.0 +24526,25,14,9,0.0 +24526,73,15,36,0.0 +24526,26,31.23,26,0.0 +24526,35,18,49,0.0 +24526,50,16.25,45,0.0 +24526,19,9.2,42,0.0 +24526,60,34,10,0.0 +24526,52,7,8,0.0 +24526,40,18.4,10,0.0 +24526,42,14,17,0.0 +24526,51,53,19,0.0 +24526,71,21.5,17,0.0 +24526,66,17,47,0.0 +24526,16,17.45,27,0.0 +24526,36,19,49,0.0 +24526,15,15.5,48,0.0 +24526,7,30,1,0.0 +24526,14,23.25,1,0.0 +24526,38,263.5,5,0.0 +24526,24,4.5,28,0.0 +24526,39,18,38,0.0 +24526,64,33.25,9,0.0 +24526,45,9.5,21,0.0 +24526,11,21,50,0.0 +24527,55,24,7,0.0 +24527,59,55,8,0.0 +24527,17,39,32,0.0 +24527,40,18.4,49,0.0 +24527,24,4.5,46,0.0 +24527,20,81,11,0.0 +24527,34,14,47,0.0 +24527,64,33.25,27,0.0 +24527,26,31.23,14,0.0 +24527,3,10,22,0.0 +24527,36,19,40,0.0 +24527,22,21,29,0.0 +24527,51,53,43,0.0 +24527,41,9.65,5,0.0 +24527,1,18,24,0.0 +24527,23,9,31,0.0 +24527,21,10,50,0.0 +24527,74,10,39,0.0 +24527,9,97,19,0.0 +24527,42,14,4,0.0 +24527,5,21.35,48,0.0 +24527,33,2.5,23,0.0 +24527,44,19.45,26,0.0 +24527,71,21.5,46,0.0 +24527,10,31,38,0.0 +24527,49,20,42,0.0 +24527,19,9.2,16,0.0 +24527,8,40,33,0.0 +24527,67,14,33,0.0 +24527,66,17,20,0.0 +24527,15,15.5,44,0.0 +24527,72,34.8,19,0.0 +24527,18,62.5,6,0.0 +24527,39,18,43,0.0 +24527,52,7,37,0.0 +24527,30,25.89,8,0.0 +24527,69,36,33,0.0 +24527,75,7.75,6,0.0 +24527,65,21.05,35,0.0 +24527,48,12.75,23,0.0 +24527,2,19,26,0.0 +24527,11,21,33,0.0 +24527,28,45.6,23,0.0 +24527,4,22,49,0.0 +24527,76,18,28,0.0 +24527,16,17.45,22,0.0 +24527,70,15,33,0.0 +24527,29,123.79,37,0.0 +24527,60,34,37,0.0 +24527,47,9.5,34,0.0 +24527,31,12.5,11,0.0 +24527,57,19.5,38,0.0 +24527,43,46,15,0.0 +24527,46,12,12,0.0 +24527,63,43.9,50,0.0 +24527,62,49.3,43,0.0 +24527,7,30,49,0.0 +24528,13,6,9,0.0 +24528,74,10,32,0.0 +24528,4,22,49,0.0 +24528,71,21.5,15,0.0 +24528,5,21.35,6,0.0 +24528,23,9,10,0.0 +24528,36,19,24,0.0 +24528,42,14,7,0.0 +24528,32,32,31,0.0 +24528,6,25,43,0.0 +24528,34,14,37,0.0 +24528,51,53,27,0.0 +24528,41,9.65,42,0.0 +24528,28,45.6,34,0.0 +24528,17,39,7,0.0 +24528,19,9.2,41,0.0 +24528,22,21,2,0.0 +24528,27,43.9,4,0.0 +24528,30,25.89,25,0.0 +24528,69,36,29,0.0 +24528,8,40,43,0.0 +24528,20,81,8,0.0 +24528,77,13,36,0.0 +24528,25,14,40,0.0 +24528,66,17,29,0.0 +24528,72,34.8,45,0.0 +24528,18,62.5,43,0.0 +24528,35,18,44,0.0 +24528,7,30,39,0.0 +24528,50,16.25,6,0.0 +24528,21,10,25,0.0 +24528,73,15,21,0.0 +24528,45,9.5,5,0.0 +24528,16,17.45,10,0.0 +24528,48,12.75,16,0.0 +24528,33,2.5,9,0.0 +24528,56,38,13,0.0 +24528,54,7.45,41,0.0 +24528,55,24,27,0.0 +24528,14,23.25,9,0.0 +24528,40,18.4,7,0.0 +24528,9,97,30,0.0 +24528,2,19,42,0.0 +24528,24,4.5,38,0.0 +24529,15,15.5,48,0.0 +24529,75,7.75,42,0.0 +24529,58,13.25,49,0.0 +24529,25,14,24,0.0 +24529,22,21,24,0.0 +24529,48,12.75,42,0.0 +24529,19,9.2,32,0.0 +24529,71,21.5,44,0.0 +24529,66,17,12,0.0 +24529,14,23.25,7,0.0 +24529,39,18,5,0.0 +24529,26,31.23,34,0.0 +24529,2,19,47,0.0 +24529,60,34,26,0.0 +24529,53,32.8,36,0.0 +24529,5,21.35,1,0.0 +24529,57,19.5,10,0.0 +24529,21,10,21,0.0 +24529,77,13,7,0.0 +24529,31,12.5,21,0.0 +24529,69,36,41,0.0 +24529,45,9.5,45,0.0 +24529,32,32,32,0.0 +24529,10,31,34,0.0 +24529,7,30,24,0.0 +24529,62,49.3,2,0.0 +24529,17,39,22,0.0 +24529,8,40,43,0.0 +24529,13,6,1,0.0 +24530,44,19.45,26,0.0 +24530,2,19,44,0.0 +24530,23,9,31,0.0 +24530,27,43.9,17,0.0 +24530,42,14,6,0.0 +24530,39,18,28,0.0 +24530,77,13,12,0.0 +24530,37,26,24,0.0 +24530,58,13.25,7,0.0 +24530,53,32.8,28,0.0 +24530,74,10,29,0.0 +24530,18,62.5,19,0.0 +24530,36,19,42,0.0 +24530,35,18,12,0.0 +24530,19,9.2,30,0.0 +24530,6,25,32,0.0 +24530,56,38,29,0.0 +24530,34,14,27,0.0 +24530,71,21.5,43,0.0 +24530,54,7.45,49,0.0 +24530,46,12,19,0.0 +24530,13,6,7,0.0 +24530,69,36,36,0.0 +24530,72,34.8,4,0.0 +24530,1,18,11,0.0 +24530,11,21,38,0.0 +24530,30,25.89,12,0.0 +24530,43,46,44,0.0 +24530,59,55,34,0.0 +24530,15,15.5,7,0.0 +24530,61,28.5,17,0.0 +24530,64,33.25,19,0.0 +24530,57,19.5,22,0.0 +24530,12,38,24,0.0 +24530,47,9.5,10,0.0 +24530,48,12.75,12,0.0 +24530,5,21.35,40,0.0 +24530,63,43.9,10,0.0 +24530,50,16.25,45,0.0 +24530,31,12.5,24,0.0 +24530,51,53,2,0.0 +24530,60,34,36,0.0 +24530,17,39,11,0.0 +24530,21,10,7,0.0 +24530,49,20,49,0.0 +24530,73,15,31,0.0 +24530,4,22,41,0.0 +24530,67,14,27,0.0 +24530,25,14,25,0.0 +24530,70,15,21,0.0 +24530,20,81,22,0.0 +24530,28,45.6,12,0.0 +24530,45,9.5,37,0.0 +24530,9,97,43,0.0 +24530,33,2.5,20,0.0 +24530,68,12.5,47,0.0 +24530,66,17,42,0.0 +24530,41,9.65,39,0.0 +24530,29,123.79,12,0.0 +24530,55,24,43,0.0 +24530,14,23.25,43,0.0 +24530,40,18.4,46,0.0 +24530,75,7.75,1,0.0 +24530,3,10,29,0.0 +24530,32,32,36,0.0 +24530,52,7,33,0.0 +24530,24,4.5,35,0.0 +24530,76,18,45,0.0 +24531,5,21.35,33,0.0 +24531,16,17.45,31,0.0 +24531,46,12,47,0.0 +24531,55,24,34,0.0 +24531,28,45.6,28,0.0 +24531,42,14,43,0.0 +24531,36,19,48,0.0 +24531,49,20,28,0.0 +24531,76,18,34,0.0 +24531,22,21,34,0.0 +24531,45,9.5,10,0.0 +24531,44,19.45,31,0.0 +24531,39,18,16,0.0 +24531,64,33.25,47,0.0 +24531,67,14,17,0.0 +24531,8,40,17,0.0 +24531,2,19,22,0.0 +24531,50,16.25,40,0.0 +24531,3,10,24,0.0 +24531,13,6,48,0.0 +24531,48,12.75,42,0.0 +24531,25,14,4,0.0 +24531,62,49.3,29,0.0 +24531,14,23.25,4,0.0 +24531,27,43.9,25,0.0 +24531,74,10,5,0.0 +24531,52,7,30,0.0 +24531,41,9.65,11,0.0 +24531,68,12.5,18,0.0 +24531,18,62.5,25,0.0 +24531,33,2.5,24,0.0 +24531,10,31,3,0.0 +24531,72,34.8,39,0.0 +24531,1,18,12,0.0 +24531,15,15.5,31,0.0 +24531,63,43.9,23,0.0 +24531,30,25.89,27,0.0 +24531,24,4.5,9,0.0 +24531,11,21,26,0.0 +24531,69,36,26,0.0 +24531,70,15,14,0.0 +24531,4,22,2,0.0 +24531,47,9.5,11,0.0 +24531,71,21.5,32,0.0 +24531,57,19.5,6,0.0 +24531,54,7.45,42,0.0 +24531,37,26,31,0.0 +24531,21,10,7,0.0 +24531,60,34,34,0.0 +24531,75,7.75,16,0.0 +24531,9,97,25,0.0 +24531,51,53,31,0.0 +24531,56,38,22,0.0 +24531,38,263.5,8,0.0 +24531,34,14,14,0.0 +24531,73,15,39,0.0 +24531,32,32,13,0.0 +24531,31,12.5,32,0.0 +24531,43,46,22,0.0 +24531,26,31.23,43,0.0 +24531,20,81,26,0.0 +24531,35,18,33,0.0 +24531,53,32.8,23,0.0 +24531,77,13,45,0.0 +24531,19,9.2,16,0.0 +24531,6,25,3,0.0 +24531,12,38,4,0.0 +24531,66,17,3,0.0 +24532,21,10,44,0.0 +24532,13,6,6,0.0 +24532,29,123.79,37,0.0 +24532,66,17,11,0.0 +24532,20,81,12,0.0 +24532,9,97,36,0.0 +24532,43,46,16,0.0 +24532,57,19.5,20,0.0 +24532,76,18,32,0.0 +24532,54,7.45,42,0.0 +24532,48,12.75,28,0.0 +24532,72,34.8,34,0.0 +24532,28,45.6,33,0.0 +24532,10,31,12,0.0 +24532,30,25.89,13,0.0 +24532,1,18,5,0.0 +24532,11,21,4,0.0 +24532,26,31.23,46,0.0 +24532,32,32,40,0.0 +24532,74,10,4,0.0 +24532,45,9.5,41,0.0 +24532,7,30,26,0.0 +24532,31,12.5,8,0.0 +24532,33,2.5,24,0.0 +24532,42,14,33,0.0 +24532,40,18.4,23,0.0 +24532,22,21,3,0.0 +24532,3,10,41,0.0 +24532,49,20,25,0.0 +24532,44,19.45,20,0.0 +24532,75,7.75,38,0.0 +24533,68,12.5,40,0.0 +24533,37,26,28,0.0 +24533,60,34,17,0.0 +24533,50,16.25,31,0.0 +24533,49,20,30,0.0 +24533,16,17.45,41,0.0 +24533,75,7.75,1,0.0 +24533,46,12,48,0.0 +24533,76,18,14,0.0 +24533,29,123.79,12,0.0 +24533,43,46,5,0.0 +24533,7,30,3,0.0 +24533,65,21.05,28,0.0 +24533,71,21.5,36,0.0 +24533,1,18,20,0.0 +24533,34,14,8,0.0 +24533,32,32,14,0.0 +24533,23,9,37,0.0 +24533,3,10,40,0.0 +24533,62,49.3,26,0.0 +24533,56,38,7,0.0 +24533,9,97,24,0.0 +24533,4,22,3,0.0 +24533,25,14,9,0.0 +24533,17,39,15,0.0 +24533,31,12.5,18,0.0 +24533,51,53,17,0.0 +24533,39,18,38,0.0 +24533,13,6,3,0.0 +24533,64,33.25,10,0.0 +24533,77,13,14,0.0 +24533,33,2.5,17,0.0 +24533,41,9.65,46,0.0 +24533,24,4.5,3,0.0 +24533,48,12.75,40,0.0 +24533,54,7.45,24,0.0 +24533,66,17,22,0.0 +24533,47,9.5,15,0.0 +24533,27,43.9,8,0.0 +24533,26,31.23,5,0.0 +24533,15,15.5,30,0.0 +24533,53,32.8,39,0.0 +24533,69,36,25,0.0 +24533,40,18.4,26,0.0 +24533,52,7,20,0.0 +24533,70,15,47,0.0 +24533,55,24,44,0.0 +24533,5,21.35,33,0.0 +24533,18,62.5,6,0.0 +24533,11,21,3,0.0 +24533,67,14,10,0.0 +24533,8,40,3,0.0 +24533,2,19,44,0.0 +24533,22,21,45,0.0 +24533,28,45.6,27,0.0 +24533,61,28.5,15,0.0 +24533,63,43.9,24,0.0 +24533,74,10,5,0.0 +24533,45,9.5,6,0.0 +24533,20,81,29,0.0 +24533,12,38,5,0.0 +24533,6,25,28,0.0 +24533,21,10,29,0.0 +24533,42,14,12,0.0 +24533,38,263.5,9,0.0 +24533,10,31,41,0.0 +24533,19,9.2,18,0.0 +24533,30,25.89,21,0.0 +24533,14,23.25,1,0.0 +24533,58,13.25,18,0.0 +24533,36,19,29,0.0 +24533,72,34.8,1,0.0 +24533,35,18,5,0.0 +24534,8,40,12,0.0 +24534,49,20,6,0.0 +24534,19,9.2,40,0.0 +24534,33,2.5,36,0.0 +24534,32,32,21,0.0 +24534,9,97,50,0.0 +24534,5,21.35,31,0.0 +24534,68,12.5,43,0.0 +24534,21,10,49,0.0 +24534,43,46,4,0.0 +24534,11,21,45,0.0 +24534,50,16.25,35,0.0 +24534,57,19.5,5,0.0 +24534,67,14,28,0.0 +24534,48,12.75,28,0.0 +24534,77,13,23,0.0 +24534,61,28.5,25,0.0 +24534,6,25,7,0.0 +24534,60,34,32,0.0 +24534,55,24,15,0.0 +24534,39,18,37,0.0 +24534,27,43.9,5,0.0 +24534,51,53,33,0.0 +24534,53,32.8,44,0.0 +24534,73,15,22,0.0 +24534,66,17,39,0.0 +24534,26,31.23,40,0.0 +24534,52,7,23,0.0 +24534,71,21.5,28,0.0 +24534,62,49.3,9,0.0 +24534,69,36,28,0.0 +24534,56,38,40,0.0 +24534,74,10,19,0.0 +24534,30,25.89,32,0.0 +24534,2,19,19,0.0 +24534,37,26,19,0.0 +24534,63,43.9,49,0.0 +24534,24,4.5,30,0.0 +24534,34,14,33,0.0 +24534,10,31,49,0.0 +24534,16,17.45,9,0.0 +24534,22,21,30,0.0 +24534,38,263.5,42,0.0 +24534,18,62.5,49,0.0 +24534,3,10,20,0.0 +24534,17,39,32,0.0 +24534,23,9,47,0.0 +24534,72,34.8,5,0.0 +24535,17,39,44,0.0 +24535,42,14,19,0.0 +24535,22,21,42,0.0 +24535,37,26,4,0.0 +24535,49,20,40,0.0 +24535,16,17.45,44,0.0 +24535,65,21.05,34,0.0 +24535,27,43.9,3,0.0 +24535,77,13,34,0.0 +24535,40,18.4,39,0.0 +24535,56,38,39,0.0 +24535,11,21,39,0.0 +24535,69,36,14,0.0 +24535,44,19.45,34,0.0 +24535,30,25.89,6,0.0 +24535,20,81,5,0.0 +24535,6,25,37,0.0 +24535,52,7,43,0.0 +24535,59,55,27,0.0 +24535,28,45.6,33,0.0 +24535,14,23.25,31,0.0 +24535,4,22,32,0.0 +24535,38,263.5,7,0.0 +24535,3,10,25,0.0 +24535,39,18,1,0.0 +24535,67,14,19,0.0 +24535,76,18,40,0.0 +24535,34,14,32,0.0 +24535,29,123.79,13,0.0 +24535,12,38,10,0.0 +24535,31,12.5,13,0.0 +24535,72,34.8,45,0.0 +24535,15,15.5,46,0.0 +24535,63,43.9,10,0.0 +24535,66,17,12,0.0 +24535,35,18,12,0.0 +24535,73,15,48,0.0 +24535,2,19,38,0.0 +24535,71,21.5,43,0.0 +24535,24,4.5,3,0.0 +24535,47,9.5,14,0.0 +24535,70,15,13,0.0 +24535,1,18,25,0.0 +24535,7,30,19,0.0 +24535,32,32,39,0.0 +24535,55,24,8,0.0 +24535,43,46,16,0.0 +24535,74,10,36,0.0 +24535,8,40,2,0.0 +24535,62,49.3,11,0.0 +24535,23,9,26,0.0 +24535,61,28.5,12,0.0 +24535,57,19.5,27,0.0 +24535,21,10,28,0.0 +24535,33,2.5,34,0.0 +24535,5,21.35,37,0.0 +24535,54,7.45,4,0.0 +24535,10,31,13,0.0 +24535,25,14,2,0.0 +24536,57,19.5,3,0.0 +24536,60,34,12,0.0 +24536,12,38,50,0.0 +24536,40,18.4,14,0.0 +24536,26,31.23,48,0.0 +24536,28,45.6,30,0.0 +24536,46,12,45,0.0 +24536,38,263.5,2,0.0 +24536,15,15.5,37,0.0 +24536,58,13.25,6,0.0 +24536,55,24,29,0.0 +24536,56,38,21,0.0 +24536,10,31,1,0.0 +24536,16,17.45,15,0.0 +24536,22,21,5,0.0 +24536,65,21.05,18,0.0 +24536,59,55,4,0.0 +24536,37,26,40,0.0 +24536,3,10,9,0.0 +24536,64,33.25,5,0.0 +24536,4,22,3,0.0 +24536,63,43.9,27,0.0 +24536,66,17,42,0.0 +24536,75,7.75,44,0.0 +24537,50,16.25,2,0.0 +24537,27,43.9,18,0.0 +24537,38,263.5,19,0.0 +24537,74,10,43,0.0 +24537,6,25,11,0.0 +24537,44,19.45,40,0.0 +24537,43,46,26,0.0 +24537,19,9.2,45,0.0 +24537,62,49.3,10,0.0 +24537,34,14,44,0.0 +24537,15,15.5,20,0.0 +24537,29,123.79,15,0.0 +24537,61,28.5,10,0.0 +24537,54,7.45,3,0.0 +24537,71,21.5,8,0.0 +24537,63,43.9,50,0.0 +24537,24,4.5,27,0.0 +24537,32,32,15,0.0 +24537,7,30,45,0.0 +24537,75,7.75,9,0.0 +24537,37,26,12,0.0 +24537,23,9,25,0.0 +24537,35,18,33,0.0 +24537,41,9.65,8,0.0 +24537,70,15,29,0.0 +24537,66,17,5,0.0 +24537,68,12.5,50,0.0 +24537,18,62.5,13,0.0 +24537,51,53,26,0.0 +24537,52,7,25,0.0 +24537,26,31.23,48,0.0 +24537,21,10,38,0.0 +24537,76,18,5,0.0 +24537,73,15,17,0.0 +24537,42,14,8,0.0 +24537,65,21.05,25,0.0 +24537,46,12,40,0.0 +24537,17,39,38,0.0 +24537,12,38,8,0.0 +24537,69,36,24,0.0 +24537,16,17.45,29,0.0 +24537,8,40,43,0.0 +24537,11,21,36,0.0 +24537,30,25.89,37,0.0 +24537,4,22,40,0.0 +24537,49,20,39,0.0 +24537,33,2.5,35,0.0 +24537,28,45.6,50,0.0 +24537,60,34,10,0.0 +24537,14,23.25,50,0.0 +24537,77,13,26,0.0 +24537,22,21,50,0.0 +24537,45,9.5,3,0.0 +24537,67,14,23,0.0 +24537,53,32.8,41,0.0 +24537,48,12.75,26,0.0 +24538,66,17,43,0.0 +24538,4,22,38,0.0 +24538,60,34,6,0.0 +24538,31,12.5,41,0.0 +24538,68,12.5,43,0.0 +24538,48,12.75,29,0.0 +24538,27,43.9,18,0.0 +24538,52,7,6,0.0 +24538,10,31,22,0.0 +24538,26,31.23,22,0.0 +24538,21,10,40,0.0 +24538,67,14,3,0.0 +24539,44,19.45,25,0.0 +24539,55,24,1,0.0 +24539,40,18.4,15,0.0 +24539,45,9.5,9,0.0 +24539,56,38,31,0.0 +24539,46,12,29,0.0 +24539,29,123.79,10,0.0 +24539,5,21.35,2,0.0 +24539,1,18,41,0.0 +24540,48,12.75,4,0.0 +24540,65,21.05,32,0.0 +24540,32,32,4,0.0 +24540,24,4.5,11,0.0 +24540,74,10,15,0.0 +24540,47,9.5,11,0.0 +24540,14,23.25,31,0.0 +24540,43,46,19,0.0 +24540,13,6,32,0.0 +24540,66,17,11,0.0 +24540,62,49.3,35,0.0 +24540,72,34.8,5,0.0 +24540,45,9.5,18,0.0 +24540,27,43.9,19,0.0 +24540,19,9.2,4,0.0 +24540,44,19.45,38,0.0 +24540,7,30,17,0.0 +24540,61,28.5,31,0.0 +24540,33,2.5,3,0.0 +24540,70,15,33,0.0 +24540,46,12,23,0.0 +24540,76,18,25,0.0 +24540,12,38,11,0.0 +24540,39,18,4,0.0 +24540,67,14,45,0.0 +24540,3,10,29,0.0 +24540,57,19.5,15,0.0 +24540,10,31,45,0.0 +24540,15,15.5,16,0.0 +24540,42,14,46,0.0 +24540,63,43.9,47,0.0 +24540,53,32.8,1,0.0 +24540,1,18,25,0.0 +24540,52,7,40,0.0 +24540,20,81,28,0.0 +24540,73,15,10,0.0 +24540,50,16.25,26,0.0 +24540,59,55,37,0.0 +24540,58,13.25,18,0.0 +24540,11,21,11,0.0 +24540,25,14,20,0.0 +24540,30,25.89,44,0.0 +24540,16,17.45,13,0.0 +24540,68,12.5,24,0.0 +24540,71,21.5,34,0.0 +24540,37,26,20,0.0 +24540,22,21,35,0.0 +24540,77,13,45,0.0 +24540,69,36,48,0.0 +24540,40,18.4,50,0.0 +24540,28,45.6,29,0.0 +24540,2,19,43,0.0 +24540,21,10,7,0.0 +24540,26,31.23,3,0.0 +24540,56,38,49,0.0 +24540,34,14,19,0.0 +24540,64,33.25,30,0.0 +24540,55,24,4,0.0 +24540,49,20,21,0.0 +24540,31,12.5,2,0.0 +24540,8,40,42,0.0 +24540,4,22,6,0.0 +24540,29,123.79,1,0.0 +24540,60,34,49,0.0 +24540,9,97,46,0.0 +24540,35,18,50,0.0 +24540,6,25,49,0.0 +24540,75,7.75,2,0.0 +24540,54,7.45,17,0.0 +24540,36,19,13,0.0 +24540,17,39,13,0.0 +24540,18,62.5,1,0.0 +24540,5,21.35,19,0.0 +24541,45,9.5,4,0.0 +24541,32,32,12,0.0 +24541,68,12.5,18,0.0 +24541,9,97,16,0.0 +24541,52,7,44,0.0 +24541,5,21.35,18,0.0 +24541,72,34.8,6,0.0 +24541,61,28.5,9,0.0 +24541,67,14,10,0.0 +24541,53,32.8,4,0.0 +24541,57,19.5,10,0.0 +24541,25,14,21,0.0 +24541,30,25.89,12,0.0 +24541,31,12.5,36,0.0 +24541,16,17.45,42,0.0 +24541,24,4.5,1,0.0 +24541,47,9.5,16,0.0 +24541,11,21,46,0.0 +24541,19,9.2,30,0.0 +24541,17,39,44,0.0 +24541,23,9,9,0.0 +24541,8,40,32,0.0 +24541,62,49.3,11,0.0 +24541,64,33.25,47,0.0 +24541,35,18,8,0.0 +24541,63,43.9,45,0.0 +24541,50,16.25,27,0.0 +24541,38,263.5,42,0.0 +24541,43,46,49,0.0 +24541,74,10,10,0.0 +24541,6,25,50,0.0 +24541,10,31,36,0.0 +24541,44,19.45,8,0.0 +24541,42,14,14,0.0 +24541,13,6,25,0.0 +24542,49,20,1,0.0 +24542,33,2.5,27,0.0 +24542,39,18,24,0.0 +24542,51,53,21,0.0 +24542,2,19,50,0.0 +24542,72,34.8,5,0.0 +24542,60,34,20,0.0 +24542,61,28.5,13,0.0 +24542,50,16.25,18,0.0 +24542,67,14,10,0.0 +24542,59,55,47,0.0 +24542,8,40,42,0.0 +24542,41,9.65,9,0.0 +24542,63,43.9,11,0.0 +24542,12,38,3,0.0 +24542,68,12.5,28,0.0 +24542,14,23.25,16,0.0 +24542,52,7,4,0.0 +24542,28,45.6,44,0.0 +24542,75,7.75,23,0.0 +24542,10,31,14,0.0 +24542,76,18,49,0.0 +24542,47,9.5,44,0.0 +24542,46,12,12,0.0 +24542,9,97,44,0.0 +24542,45,9.5,17,0.0 +24542,62,49.3,26,0.0 +24542,40,18.4,38,0.0 +24542,42,14,13,0.0 +24542,35,18,42,0.0 +24542,65,21.05,2,0.0 +24543,38,263.5,3,0.0 +24543,16,17.45,46,0.0 +24543,22,21,8,0.0 +24543,26,31.23,4,0.0 +24544,70,15,31,0.0 +24544,26,31.23,38,0.0 +24544,2,19,37,0.0 +24544,4,22,31,0.0 +24544,65,21.05,41,0.0 +24544,8,40,3,0.0 +24544,52,7,19,0.0 +24544,66,17,33,0.0 +24544,57,19.5,3,0.0 +24544,71,21.5,22,0.0 +24544,20,81,31,0.0 +24544,46,12,32,0.0 +24544,37,26,32,0.0 +24544,59,55,33,0.0 +24544,30,25.89,13,0.0 +24544,28,45.6,36,0.0 +24544,27,43.9,11,0.0 +24544,18,62.5,1,0.0 +24544,67,14,33,0.0 +24544,60,34,30,0.0 +24544,31,12.5,24,0.0 +24544,17,39,24,0.0 +24544,6,25,20,0.0 +24544,38,263.5,6,0.0 +24544,51,53,12,0.0 +24544,29,123.79,2,0.0 +24544,44,19.45,23,0.0 +24544,3,10,14,0.0 +24544,39,18,9,0.0 +24544,12,38,12,0.0 +24544,35,18,32,0.0 +24544,50,16.25,49,0.0 +24544,22,21,16,0.0 +24544,62,49.3,40,0.0 +24544,21,10,9,0.0 +24544,73,15,28,0.0 +24544,40,18.4,6,0.0 +24545,61,28.5,44,0.0 +24545,25,14,14,0.0 +24545,7,30,2,0.0 +24545,50,16.25,33,0.0 +24545,20,81,44,0.0 +24545,65,21.05,15,0.0 +24545,56,38,37,0.0 +24545,17,39,32,0.0 +24545,71,21.5,19,0.0 +24545,54,7.45,20,0.0 +24545,58,13.25,43,0.0 +24545,72,34.8,17,0.0 +24545,12,38,33,0.0 +24545,74,10,2,0.0 +24545,46,12,31,0.0 +24545,44,19.45,38,0.0 +24545,77,13,13,0.0 +24545,51,53,18,0.0 +24545,70,15,26,0.0 +24545,8,40,35,0.0 +24545,1,18,2,0.0 +24545,19,9.2,23,0.0 +24546,52,7,20,0.0 +24546,26,31.23,36,0.0 +24546,55,24,3,0.0 +24546,23,9,47,0.0 +24546,51,53,32,0.0 +24546,44,19.45,11,0.0 +24546,20,81,42,0.0 +24546,41,9.65,26,0.0 +24546,56,38,23,0.0 +24546,5,21.35,37,0.0 +24546,50,16.25,15,0.0 +24546,76,18,5,0.0 +24546,29,123.79,41,0.0 +24546,47,9.5,20,0.0 +24546,34,14,40,0.0 +24546,58,13.25,31,0.0 +24546,28,45.6,16,0.0 +24546,69,36,24,0.0 +24546,31,12.5,3,0.0 +24546,53,32.8,34,0.0 +24546,16,17.45,22,0.0 +24546,46,12,38,0.0 +24546,7,30,5,0.0 +24546,77,13,31,0.0 +24546,2,19,17,0.0 +24546,12,38,46,0.0 +24546,70,15,30,0.0 +24546,63,43.9,44,0.0 +24546,68,12.5,26,0.0 +24546,57,19.5,33,0.0 +24546,21,10,17,0.0 +24546,66,17,45,0.0 +24546,67,14,42,0.0 +24546,25,14,17,0.0 +24546,17,39,3,0.0 +24546,8,40,1,0.0 +24546,3,10,47,0.0 +24546,62,49.3,37,0.0 +24546,65,21.05,14,0.0 +24546,75,7.75,34,0.0 +24546,15,15.5,31,0.0 +24546,40,18.4,43,0.0 +24546,45,9.5,10,0.0 +24546,59,55,18,0.0 +24546,74,10,28,0.0 +24546,49,20,33,0.0 +24546,64,33.25,7,0.0 +24546,39,18,15,0.0 +24546,9,97,49,0.0 +24546,24,4.5,38,0.0 +24546,73,15,26,0.0 +24546,4,22,11,0.0 +24547,19,9.2,24,0.0 +24547,54,7.45,30,0.0 +24547,76,18,23,0.0 +24547,2,19,6,0.0 +24547,41,9.65,24,0.0 +24547,15,15.5,28,0.0 +24547,29,123.79,36,0.0 +24547,36,19,14,0.0 +24547,63,43.9,36,0.0 +24547,75,7.75,25,0.0 +24547,35,18,40,0.0 +24547,61,28.5,30,0.0 +24547,4,22,40,0.0 +24547,30,25.89,26,0.0 +24547,32,32,33,0.0 +24547,56,38,17,0.0 +24547,67,14,18,0.0 +24547,43,46,13,0.0 +24547,6,25,6,0.0 +24547,22,21,16,0.0 +24547,8,40,21,0.0 +24547,40,18.4,28,0.0 +24547,14,23.25,17,0.0 +24547,45,9.5,18,0.0 +24547,72,34.8,28,0.0 +24547,3,10,49,0.0 +24547,51,53,1,0.0 +24547,7,30,45,0.0 +24547,25,14,7,0.0 +24547,10,31,4,0.0 +24547,62,49.3,30,0.0 +24547,33,2.5,18,0.0 +24547,39,18,7,0.0 +24547,20,81,8,0.0 +24547,74,10,2,0.0 +24547,23,9,10,0.0 +24547,26,31.23,3,0.0 +24547,65,21.05,49,0.0 +24547,31,12.5,41,0.0 +24547,24,4.5,6,0.0 +24547,58,13.25,8,0.0 +24547,60,34,29,0.0 +24547,9,97,9,0.0 +24547,16,17.45,10,0.0 +24547,5,21.35,25,0.0 +24547,77,13,6,0.0 +24547,48,12.75,44,0.0 +24547,73,15,12,0.0 +24547,37,26,12,0.0 +24547,53,32.8,27,0.0 +24547,68,12.5,47,0.0 +24547,52,7,4,0.0 +24547,27,43.9,38,0.0 +24547,55,24,24,0.0 +24547,50,16.25,3,0.0 +24547,1,18,15,0.0 +24547,17,39,22,0.0 +24547,59,55,15,0.0 +24547,18,62.5,5,0.0 +24547,12,38,38,0.0 +24547,69,36,31,0.0 +24547,70,15,19,0.0 +24547,64,33.25,23,0.0 +24547,38,263.5,15,0.0 +24547,46,12,43,0.0 +24547,57,19.5,17,0.0 +24547,21,10,43,0.0 +24547,49,20,45,0.0 +24547,28,45.6,22,0.0 +24547,71,21.5,40,0.0 +24547,66,17,33,0.0 +24547,47,9.5,47,0.0 +24547,42,14,5,0.0 +24547,44,19.45,6,0.0 +24547,34,14,1,0.0 +24548,60,34,32,0.0 +24548,40,18.4,8,0.0 +24548,31,12.5,41,0.0 +24548,75,7.75,13,0.0 +24548,52,7,9,0.0 +24548,11,21,34,0.0 +24548,72,34.8,8,0.0 +24548,19,9.2,14,0.0 +24548,21,10,32,0.0 +24548,45,9.5,21,0.0 +24548,15,15.5,33,0.0 +24548,32,32,48,0.0 +24548,23,9,1,0.0 +24549,34,14,12,0.0 +24549,13,6,24,0.0 +24549,48,12.75,30,0.0 +24549,65,21.05,5,0.0 +24549,56,38,31,0.0 +24549,51,53,12,0.0 +24549,38,263.5,50,0.0 +24549,19,9.2,42,0.0 +24549,71,21.5,44,0.0 +24549,62,49.3,10,0.0 +24549,60,34,29,0.0 +24549,5,21.35,33,0.0 +24549,58,13.25,50,0.0 +24549,53,32.8,50,0.0 +24549,20,81,1,0.0 +24549,30,25.89,16,0.0 +24549,35,18,43,0.0 +24549,69,36,28,0.0 +24549,3,10,32,0.0 +24549,42,14,21,0.0 +24549,72,34.8,47,0.0 +24549,57,19.5,2,0.0 +24549,47,9.5,41,0.0 +24549,49,20,13,0.0 +24549,37,26,25,0.0 +24549,55,24,25,0.0 +24549,14,23.25,7,0.0 +24549,17,39,18,0.0 +24549,8,40,27,0.0 +24549,1,18,4,0.0 +24549,67,14,35,0.0 +24549,9,97,30,0.0 +24549,66,17,44,0.0 +24549,36,19,8,0.0 +24549,10,31,40,0.0 +24549,4,22,19,0.0 +24549,18,62.5,45,0.0 +24549,41,9.65,11,0.0 +24549,12,38,14,0.0 +24549,63,43.9,46,0.0 +24549,74,10,46,0.0 +24549,73,15,16,0.0 +24549,70,15,11,0.0 +24549,75,7.75,21,0.0 +24549,43,46,16,0.0 +24549,25,14,47,0.0 +24549,76,18,23,0.0 +24549,64,33.25,42,0.0 +24549,21,10,4,0.0 +24549,52,7,15,0.0 +24549,6,25,42,0.0 +24549,26,31.23,12,0.0 +24549,24,4.5,23,0.0 +24549,2,19,49,0.0 +24549,50,16.25,12,0.0 +24549,22,21,4,0.0 +24549,16,17.45,33,0.0 +24549,27,43.9,2,0.0 +24549,39,18,19,0.0 +24549,54,7.45,27,0.0 +24549,59,55,37,0.0 +24549,7,30,40,0.0 +24549,61,28.5,35,0.0 +24549,29,123.79,39,0.0 +24549,11,21,35,0.0 +24549,23,9,16,0.0 +24549,40,18.4,27,0.0 +24549,32,32,19,0.0 +24549,68,12.5,47,0.0 +24549,33,2.5,9,0.0 +24549,28,45.6,27,0.0 +24549,45,9.5,41,0.0 +24549,44,19.45,2,0.0 +24549,31,12.5,35,0.0 +24550,39,18,36,0.0 +24550,59,55,48,0.0 +24550,11,21,3,0.0 +24550,18,62.5,37,0.0 +24550,58,13.25,1,0.0 +24550,31,12.5,1,0.0 +24550,27,43.9,25,0.0 +24550,38,263.5,10,0.0 +24550,70,15,43,0.0 +24550,4,22,34,0.0 +24550,68,12.5,19,0.0 +24550,54,7.45,21,0.0 +24550,40,18.4,45,0.0 +24550,12,38,7,0.0 +24550,1,18,14,0.0 +24550,64,33.25,37,0.0 +24550,41,9.65,41,0.0 +24550,33,2.5,20,0.0 +24550,63,43.9,36,0.0 +24550,75,7.75,21,0.0 +24550,42,14,48,0.0 +24550,29,123.79,41,0.0 +24550,32,32,50,0.0 +24550,52,7,17,0.0 +24550,72,34.8,28,0.0 +24550,16,17.45,25,0.0 +24550,49,20,27,0.0 +24550,57,19.5,42,0.0 +24550,21,10,19,0.0 +24550,28,45.6,38,0.0 +24550,22,21,28,0.0 +24550,2,19,35,0.0 +24550,74,10,28,0.0 +24550,60,34,44,0.0 +24550,6,25,46,0.0 +24550,35,18,41,0.0 +24550,20,81,1,0.0 +24550,53,32.8,37,0.0 +24550,17,39,32,0.0 +24550,19,9.2,11,0.0 +24550,9,97,14,0.0 +24550,67,14,29,0.0 +24550,51,53,45,0.0 +24550,3,10,21,0.0 +24550,24,4.5,35,0.0 +24550,13,6,16,0.0 +24550,50,16.25,35,0.0 +24550,26,31.23,20,0.0 +24550,55,24,3,0.0 +24550,36,19,6,0.0 +24550,45,9.5,42,0.0 +24550,71,21.5,31,0.0 +24550,5,21.35,2,0.0 +24550,25,14,20,0.0 +24550,7,30,32,0.0 +24550,15,15.5,48,0.0 +24550,56,38,34,0.0 +24550,46,12,25,0.0 +24550,44,19.45,27,0.0 +24550,37,26,14,0.0 +24550,43,46,46,0.0 +24550,62,49.3,40,0.0 +24550,14,23.25,28,0.0 +24550,30,25.89,42,0.0 +24550,10,31,11,0.0 +24550,23,9,16,0.0 +24550,65,21.05,39,0.0 +24550,8,40,49,0.0 +24550,47,9.5,45,0.0 +24550,69,36,4,0.0 +24550,48,12.75,21,0.0 +24550,61,28.5,3,0.0 +24550,66,17,17,0.0 +24550,77,13,9,0.0 +24551,29,123.79,10,0.0 +24551,52,7,48,0.0 +24551,50,16.25,2,0.0 +24551,8,40,2,0.0 +24551,15,15.5,45,0.0 +24551,59,55,22,0.0 +24551,64,33.25,36,0.0 +24551,3,10,18,0.0 +24551,45,9.5,40,0.0 +24551,70,15,43,0.0 +24551,37,26,8,0.0 +24551,77,13,7,0.0 +24551,25,14,45,0.0 +24551,36,19,2,0.0 +24551,66,17,33,0.0 +24551,53,32.8,41,0.0 +24551,14,23.25,14,0.0 +24551,54,7.45,26,0.0 +24551,16,17.45,22,0.0 +24551,62,49.3,23,0.0 +24551,13,6,50,0.0 +24551,58,13.25,17,0.0 +24551,2,19,3,0.0 +24551,71,21.5,47,0.0 +24551,27,43.9,5,0.0 +24551,68,12.5,33,0.0 +24551,34,14,24,0.0 +24551,41,9.65,5,0.0 +24551,10,31,8,0.0 +24551,9,97,12,0.0 +24551,4,22,4,0.0 +24551,47,9.5,24,0.0 +24551,23,9,47,0.0 +24551,26,31.23,34,0.0 +24551,21,10,11,0.0 +24551,57,19.5,3,0.0 +24551,48,12.75,38,0.0 +24551,55,24,6,0.0 +24551,51,53,22,0.0 +24551,60,34,35,0.0 +24551,75,7.75,6,0.0 +24551,18,62.5,35,0.0 +24551,44,19.45,47,0.0 +24551,20,81,6,0.0 +24551,56,38,40,0.0 +24551,76,18,31,0.0 +24551,74,10,44,0.0 +24551,49,20,25,0.0 +24551,7,30,16,0.0 +24551,19,9.2,30,0.0 +24551,22,21,31,0.0 +24552,76,18,16,0.0 +24552,35,18,48,0.0 +24552,71,21.5,13,0.0 +24552,32,32,50,0.0 +24552,39,18,26,0.0 +24552,13,6,5,0.0 +24552,65,21.05,24,0.0 +24552,49,20,29,0.0 +24552,36,19,20,0.0 +24552,68,12.5,16,0.0 +24552,19,9.2,5,0.0 +24552,57,19.5,19,0.0 +24552,7,30,7,0.0 +24552,56,38,29,0.0 +24552,52,7,49,0.0 +24552,3,10,42,0.0 +24552,64,33.25,16,0.0 +24552,74,10,31,0.0 +24552,30,25.89,23,0.0 +24552,37,26,19,0.0 +24552,26,31.23,9,0.0 +24552,6,25,25,0.0 +24552,21,10,18,0.0 +24552,33,2.5,2,0.0 +24552,20,81,43,0.0 +24552,22,21,4,0.0 +24552,25,14,43,0.0 +24552,59,55,4,0.0 +24552,45,9.5,42,0.0 +24552,62,49.3,12,0.0 +24552,43,46,21,0.0 +24552,40,18.4,27,0.0 +24552,14,23.25,50,0.0 +24552,5,21.35,18,0.0 +24552,55,24,23,0.0 +24552,31,12.5,17,0.0 +24552,63,43.9,43,0.0 +24552,60,34,35,0.0 +24552,58,13.25,8,0.0 +24552,17,39,12,0.0 +24552,44,19.45,29,0.0 +24552,11,21,45,0.0 +24552,51,53,47,0.0 +24552,73,15,38,0.0 +24552,54,7.45,14,0.0 +24552,9,97,45,0.0 +24552,10,31,39,0.0 +24552,50,16.25,25,0.0 +24552,4,22,22,0.0 +24552,28,45.6,27,0.0 +24552,1,18,2,0.0 +24552,72,34.8,25,0.0 +24552,34,14,49,0.0 +24552,23,9,4,0.0 +24552,46,12,15,0.0 +24552,15,15.5,5,0.0 +24552,66,17,30,0.0 +24552,77,13,41,0.0 +24552,70,15,27,0.0 +24552,75,7.75,14,0.0 +24552,61,28.5,47,0.0 +24552,8,40,11,0.0 +24552,48,12.75,44,0.0 +24552,29,123.79,7,0.0 +24552,24,4.5,39,0.0 +24552,47,9.5,7,0.0 +24552,27,43.9,40,0.0 +24552,41,9.65,49,0.0 +24552,69,36,3,0.0 +24552,16,17.45,21,0.0 +24552,53,32.8,37,0.0 +24552,2,19,22,0.0 +24552,42,14,1,0.0 +24552,18,62.5,10,0.0 +24553,40,18.4,15,0.0 +24553,45,9.5,13,0.0 +24553,2,19,42,0.0 +24553,59,55,33,0.0 +24553,73,15,35,0.0 +24553,37,26,35,0.0 +24553,72,34.8,49,0.0 +24553,62,49.3,8,0.0 +24553,57,19.5,15,0.0 +24553,7,30,1,0.0 +24553,50,16.25,33,0.0 +24553,33,2.5,23,0.0 +24553,38,263.5,18,0.0 +24553,55,24,2,0.0 +24553,17,39,37,0.0 +24553,34,14,41,0.0 +24553,36,19,28,0.0 +24553,76,18,25,0.0 +24553,23,9,21,0.0 +24553,31,12.5,29,0.0 +24553,51,53,26,0.0 +24553,43,46,38,0.0 +24553,35,18,40,0.0 +24554,55,24,43,0.0 +24554,5,21.35,24,0.0 +24554,9,97,24,0.0 +24554,51,53,43,0.0 +24554,19,9.2,9,0.0 +24554,46,12,16,0.0 +24554,70,15,39,0.0 +24554,29,123.79,40,0.0 +24554,64,33.25,15,0.0 +24554,22,21,20,0.0 +24554,74,10,26,0.0 +24554,36,19,5,0.0 +24554,6,25,26,0.0 +24554,66,17,24,0.0 +24554,63,43.9,39,0.0 +24554,73,15,19,0.0 +24554,25,14,20,0.0 +24554,24,4.5,37,0.0 +24554,33,2.5,18,0.0 +24554,56,38,49,0.0 +24554,77,13,42,0.0 +24554,2,19,7,0.0 +24554,45,9.5,24,0.0 +24554,3,10,2,0.0 +24554,16,17.45,30,0.0 +24554,52,7,8,0.0 +24554,75,7.75,6,0.0 +24554,38,263.5,11,0.0 +24554,40,18.4,20,0.0 +24554,54,7.45,42,0.0 +24554,53,32.8,28,0.0 +24554,67,14,32,0.0 +24554,57,19.5,15,0.0 +24554,61,28.5,33,0.0 +24554,26,31.23,36,0.0 +24554,17,39,33,0.0 +24554,10,31,11,0.0 +24554,62,49.3,46,0.0 +24554,48,12.75,40,0.0 +24554,21,10,50,0.0 +24554,13,6,6,0.0 +24554,31,12.5,29,0.0 +24554,72,34.8,6,0.0 +24554,47,9.5,30,0.0 +24554,34,14,23,0.0 +24554,1,18,44,0.0 +24554,18,62.5,45,0.0 +24554,58,13.25,23,0.0 +24554,68,12.5,49,0.0 +24554,28,45.6,50,0.0 +24554,39,18,24,0.0 +24555,39,18,43,0.0 +24556,53,32.8,42,0.0 +24556,66,17,14,0.0 +24556,32,32,39,0.0 +24556,16,17.45,12,0.0 +24556,2,19,4,0.0 +24556,9,97,9,0.0 +24556,49,20,31,0.0 +24556,55,24,26,0.0 +24556,40,18.4,15,0.0 +24556,77,13,32,0.0 +24556,34,14,6,0.0 +24556,29,123.79,41,0.0 +24556,33,2.5,21,0.0 +24556,43,46,10,0.0 +24556,70,15,50,0.0 +24556,6,25,23,0.0 +24556,19,9.2,45,0.0 +24556,1,18,31,0.0 +24556,7,30,40,0.0 +24556,38,263.5,2,0.0 +24556,22,21,33,0.0 +24556,48,12.75,45,0.0 +24556,41,9.65,23,0.0 +24556,5,21.35,37,0.0 +24556,27,43.9,39,0.0 +24556,13,6,15,0.0 +24556,75,7.75,5,0.0 +24556,3,10,46,0.0 +24556,44,19.45,45,0.0 +24556,63,43.9,30,0.0 +24556,59,55,27,0.0 +24556,51,53,37,0.0 +24556,18,62.5,2,0.0 +24556,39,18,8,0.0 +24556,17,39,10,0.0 +24556,21,10,9,0.0 +24556,8,40,7,0.0 +24556,23,9,31,0.0 +24556,64,33.25,2,0.0 +24556,72,34.8,32,0.0 +24556,11,21,32,0.0 +24556,25,14,31,0.0 +24556,54,7.45,19,0.0 +24556,65,21.05,5,0.0 +24557,73,15,49,0.0 +24557,25,14,17,0.0 +24557,3,10,41,0.0 +24557,1,18,15,0.0 +24557,71,21.5,12,0.0 +24557,23,9,2,0.0 +24557,54,7.45,10,0.0 +24557,30,25.89,37,0.0 +24558,47,9.5,10,0.0 +24558,72,34.8,26,0.0 +24558,34,14,13,0.0 +24558,42,14,49,0.0 +24558,74,10,23,0.0 +24558,77,13,41,0.0 +24558,31,12.5,46,0.0 +24558,40,18.4,5,0.0 +24558,14,23.25,3,0.0 +24558,51,53,7,0.0 +24558,60,34,47,0.0 +24558,11,21,15,0.0 +24558,61,28.5,16,0.0 +24558,26,31.23,34,0.0 +24558,65,21.05,29,0.0 +24558,6,25,39,0.0 +24558,53,32.8,20,0.0 +24558,9,97,14,0.0 +24558,7,30,28,0.0 +24558,66,17,39,0.0 +24558,71,21.5,25,0.0 +24558,76,18,23,0.0 +24558,57,19.5,49,0.0 +24558,62,49.3,34,0.0 +24558,64,33.25,33,0.0 +24558,15,15.5,15,0.0 +24558,50,16.25,35,0.0 +24558,36,19,17,0.0 +24558,1,18,11,0.0 +24558,10,31,35,0.0 +24558,32,32,37,0.0 +24558,67,14,22,0.0 +24558,24,4.5,26,0.0 +24558,3,10,50,0.0 +24558,38,263.5,34,0.0 +24558,13,6,37,0.0 +24558,70,15,8,0.0 +24558,20,81,48,0.0 +24558,18,62.5,10,0.0 +24558,54,7.45,5,0.0 +24558,49,20,45,0.0 +24558,28,45.6,12,0.0 +24558,56,38,41,0.0 +24558,21,10,43,0.0 +24559,22,21,29,0.0 +24559,72,34.8,47,0.0 +24559,65,21.05,49,0.0 +24559,43,46,21,0.0 +24559,52,7,17,0.0 +24559,76,18,19,0.0 +24559,3,10,25,0.0 +24559,61,28.5,33,0.0 +24559,8,40,23,0.0 +24559,64,33.25,26,0.0 +24559,60,34,41,0.0 +24559,37,26,40,0.0 +24559,24,4.5,20,0.0 +24559,54,7.45,21,0.0 +24559,29,123.79,34,0.0 +24559,17,39,33,0.0 +24559,9,97,21,0.0 +24560,37,26,50,0.0 +24560,49,20,50,0.0 +24560,44,19.45,47,0.0 +24560,17,39,46,0.0 +24560,63,43.9,42,0.0 +24560,15,15.5,4,0.0 +24560,75,7.75,9,0.0 +24560,30,25.89,20,0.0 +24560,28,45.6,11,0.0 +24560,11,21,19,0.0 +24560,2,19,23,0.0 +24560,6,25,12,0.0 +24560,22,21,12,0.0 +24560,76,18,35,0.0 +24560,59,55,41,0.0 +24560,7,30,13,0.0 +24560,38,263.5,23,0.0 +24560,27,43.9,13,0.0 +24560,45,9.5,20,0.0 +24560,14,23.25,13,0.0 +24560,24,4.5,23,0.0 +24560,12,38,22,0.0 +24560,69,36,27,0.0 +24560,50,16.25,29,0.0 +24560,39,18,6,0.0 +24560,77,13,7,0.0 +24560,29,123.79,14,0.0 +24560,35,18,34,0.0 +24561,43,46,12,0.0 +24561,61,28.5,50,0.0 +24561,7,30,14,0.0 +24561,34,14,13,0.0 +24561,2,19,19,0.0 +24561,31,12.5,50,0.0 +24561,48,12.75,8,0.0 +24561,67,14,13,0.0 +24561,65,21.05,27,0.0 +24561,20,81,13,0.0 +24561,72,34.8,46,0.0 +24561,13,6,36,0.0 +24562,42,14,18,0.0 +24562,66,17,12,0.0 +24562,34,14,41,0.0 +24562,44,19.45,37,0.0 +24562,15,15.5,45,0.0 +24562,77,13,1,0.0 +24562,48,12.75,31,0.0 +24562,8,40,43,0.0 +24562,65,21.05,22,0.0 +24562,13,6,22,0.0 +24562,56,38,36,0.0 +24562,71,21.5,31,0.0 +24562,5,21.35,8,0.0 +24562,75,7.75,10,0.0 +24562,20,81,1,0.0 +24562,68,12.5,33,0.0 +24562,3,10,17,0.0 +24562,70,15,15,0.0 +24562,1,18,39,0.0 +24562,36,19,49,0.0 +24562,53,32.8,31,0.0 +24562,22,21,22,0.0 +24562,27,43.9,48,0.0 +24562,9,97,20,0.0 +24562,54,7.45,2,0.0 +24562,69,36,36,0.0 +24562,45,9.5,21,0.0 +24562,74,10,33,0.0 +24562,63,43.9,42,0.0 +24562,11,21,28,0.0 +24562,40,18.4,29,0.0 +24562,21,10,42,0.0 +24562,47,9.5,17,0.0 +24563,42,14,11,0.0 +24563,55,24,12,0.0 +24563,26,31.23,41,0.0 +24563,3,10,5,0.0 +24563,22,21,48,0.0 +24563,30,25.89,33,0.0 +24563,23,9,43,0.0 +24563,29,123.79,38,0.0 +24563,74,10,17,0.0 +24563,46,12,38,0.0 +24563,2,19,31,0.0 +24563,16,17.45,49,0.0 +24563,20,81,49,0.0 +24563,59,55,26,0.0 +24563,58,13.25,16,0.0 +24563,70,15,29,0.0 +24563,24,4.5,17,0.0 +24563,25,14,10,0.0 +24563,64,33.25,20,0.0 +24563,51,53,47,0.0 +24563,77,13,26,0.0 +24563,31,12.5,10,0.0 +24563,47,9.5,48,0.0 +24563,67,14,15,0.0 +24563,60,34,4,0.0 +24563,6,25,32,0.0 +24563,4,22,47,0.0 +24563,63,43.9,34,0.0 +24563,40,18.4,18,0.0 +24563,35,18,12,0.0 +24563,21,10,8,0.0 +24563,17,39,1,0.0 +24563,1,18,5,0.0 +24563,32,32,38,0.0 +24563,19,9.2,2,0.0 +24563,71,21.5,32,0.0 +24563,10,31,45,0.0 +24563,18,62.5,46,0.0 +24563,72,34.8,2,0.0 +24563,39,18,46,0.0 +24563,11,21,2,0.0 +24563,57,19.5,41,0.0 +24563,54,7.45,4,0.0 +24563,27,43.9,8,0.0 +24563,76,18,50,0.0 +24563,68,12.5,43,0.0 +24563,45,9.5,13,0.0 +24563,33,2.5,41,0.0 +24563,41,9.65,4,0.0 +24563,34,14,17,0.0 +24563,53,32.8,15,0.0 +24563,56,38,11,0.0 +24563,13,6,34,0.0 +24563,38,263.5,49,0.0 +24563,28,45.6,25,0.0 +24563,36,19,16,0.0 +24563,48,12.75,23,0.0 +24563,43,46,13,0.0 +24563,61,28.5,50,0.0 +24563,49,20,7,0.0 +24563,37,26,48,0.0 +24563,15,15.5,48,0.0 +24563,66,17,44,0.0 +24563,65,21.05,1,0.0 +24563,14,23.25,40,0.0 +24563,50,16.25,29,0.0 +24563,75,7.75,2,0.0 +24563,69,36,19,0.0 +24563,7,30,47,0.0 +24563,62,49.3,8,0.0 +24563,5,21.35,48,0.0 +24563,8,40,30,0.0 +24563,44,19.45,34,0.0 +24563,73,15,48,0.0 +24563,9,97,25,0.0 +24563,12,38,41,0.0 +24564,54,7.45,26,0.0 +24564,69,36,1,0.0 +24564,39,18,25,0.0 +24564,52,7,11,0.0 +24564,36,19,10,0.0 +24564,42,14,1,0.0 +24564,12,38,12,0.0 +24564,38,263.5,24,0.0 +24564,56,38,22,0.0 +24564,28,45.6,37,0.0 +24564,47,9.5,46,0.0 +24564,15,15.5,9,0.0 +24564,67,14,27,0.0 +24564,43,46,6,0.0 +24564,45,9.5,6,0.0 +24564,30,25.89,45,0.0 +24564,2,19,23,0.0 +24564,76,18,41,0.0 +24564,58,13.25,4,0.0 +24564,4,22,46,0.0 +24564,53,32.8,23,0.0 +24564,8,40,25,0.0 +24564,44,19.45,44,0.0 +24564,20,81,38,0.0 +24564,71,21.5,9,0.0 +24564,21,10,26,0.0 +24564,22,21,9,0.0 +24564,18,62.5,23,0.0 +24564,5,21.35,37,0.0 +24564,33,2.5,41,0.0 +24564,48,12.75,13,0.0 +24564,24,4.5,16,0.0 +24564,13,6,49,0.0 +24564,19,9.2,29,0.0 +24564,72,34.8,38,0.0 +24564,61,28.5,44,0.0 +24564,29,123.79,17,0.0 +24564,59,55,17,0.0 +24564,25,14,16,0.0 +24564,57,19.5,21,0.0 +24564,9,97,17,0.0 +24564,37,26,47,0.0 +24564,74,10,30,0.0 +24564,46,12,1,0.0 +24564,68,12.5,9,0.0 +24564,31,12.5,45,0.0 +24564,34,14,47,0.0 +24564,77,13,10,0.0 +24564,64,33.25,38,0.0 +24564,32,32,1,0.0 +24564,65,21.05,22,0.0 +24564,3,10,5,0.0 +24564,27,43.9,29,0.0 +24564,50,16.25,5,0.0 +24564,1,18,13,0.0 +24564,55,24,5,0.0 +24565,55,24,17,0.0 +24565,22,21,40,0.0 +24565,14,23.25,23,0.0 +24565,11,21,35,0.0 +24565,53,32.8,26,0.0 +24565,65,21.05,3,0.0 +24565,4,22,21,0.0 +24565,2,19,50,0.0 +24565,74,10,21,0.0 +24565,52,7,29,0.0 +24565,25,14,4,0.0 +24565,6,25,9,0.0 +24565,33,2.5,46,0.0 +24565,46,12,33,0.0 +24565,76,18,43,0.0 +24565,28,45.6,38,0.0 +24565,5,21.35,44,0.0 +24565,40,18.4,35,0.0 +24565,43,46,1,0.0 +24565,50,16.25,22,0.0 +24565,18,62.5,22,0.0 +24565,56,38,3,0.0 +24565,62,49.3,8,0.0 +24565,49,20,47,0.0 +24565,36,19,39,0.0 +24565,44,19.45,40,0.0 +24565,68,12.5,15,0.0 +24565,32,32,9,0.0 +24565,41,9.65,4,0.0 +24565,9,97,30,0.0 +24565,37,26,3,0.0 +24565,45,9.5,11,0.0 +24565,24,4.5,11,0.0 +24565,60,34,32,0.0 +24565,12,38,1,0.0 +24565,69,36,39,0.0 +24565,31,12.5,16,0.0 +24565,19,9.2,36,0.0 +24565,23,9,46,0.0 +24565,59,55,38,0.0 +24565,26,31.23,31,0.0 +24565,54,7.45,43,0.0 +24565,27,43.9,4,0.0 +24565,29,123.79,38,0.0 +24565,30,25.89,35,0.0 +24565,77,13,49,0.0 +24565,34,14,14,0.0 +24565,64,33.25,44,0.0 +24565,10,31,10,0.0 +24565,38,263.5,14,0.0 +24565,75,7.75,3,0.0 +24565,16,17.45,20,0.0 +24565,39,18,47,0.0 +24565,20,81,12,0.0 +24566,54,7.45,43,0.0 +24566,73,15,48,0.0 +24566,77,13,20,0.0 +24566,39,18,32,0.0 +24566,58,13.25,11,0.0 +24566,3,10,24,0.0 +24566,27,43.9,47,0.0 +24566,43,46,11,0.0 +24566,40,18.4,15,0.0 +24566,63,43.9,37,0.0 +24566,70,15,22,0.0 +24566,52,7,50,0.0 +24566,75,7.75,19,0.0 +24566,6,25,19,0.0 +24566,28,45.6,37,0.0 +24566,34,14,19,0.0 +24566,47,9.5,31,0.0 +24566,60,34,2,0.0 +24566,46,12,41,0.0 +24566,12,38,13,0.0 +24566,69,36,22,0.0 +24566,49,20,34,0.0 +24566,10,31,39,0.0 +24566,35,18,9,0.0 +24566,55,24,49,0.0 +24566,7,30,41,0.0 +24566,26,31.23,19,0.0 +24566,1,18,38,0.0 +24566,5,21.35,16,0.0 +24566,29,123.79,17,0.0 +24566,37,26,44,0.0 +24566,44,19.45,21,0.0 +24566,2,19,4,0.0 +24566,65,21.05,35,0.0 +24566,17,39,10,0.0 +24566,51,53,19,0.0 +24566,76,18,47,0.0 +24566,57,19.5,10,0.0 +24566,18,62.5,21,0.0 +24566,62,49.3,3,0.0 +24566,13,6,9,0.0 +24566,15,15.5,12,0.0 +24566,48,12.75,46,0.0 +24566,42,14,24,0.0 +24566,38,263.5,20,0.0 +24566,66,17,12,0.0 +24566,68,12.5,29,0.0 +24566,22,21,25,0.0 +24566,71,21.5,20,0.0 +24566,25,14,25,0.0 +24566,9,97,18,0.0 +24566,30,25.89,23,0.0 +24566,8,40,37,0.0 +24566,72,34.8,3,0.0 +24566,45,9.5,40,0.0 +24566,64,33.25,45,0.0 +24566,19,9.2,31,0.0 +24566,16,17.45,31,0.0 +24566,61,28.5,46,0.0 +24566,14,23.25,24,0.0 +24566,33,2.5,26,0.0 +24566,36,19,25,0.0 +24566,41,9.65,5,0.0 +24566,59,55,23,0.0 +24566,24,4.5,1,0.0 +24566,23,9,27,0.0 +24566,31,12.5,18,0.0 +24567,39,18,47,0.0 +24567,19,9.2,28,0.0 +24567,4,22,4,0.0 +24567,2,19,3,0.0 +24567,28,45.6,32,0.0 +24567,77,13,18,0.0 +24567,9,97,28,0.0 +24567,45,9.5,24,0.0 +24567,55,24,2,0.0 +24567,25,14,31,0.0 +24567,61,28.5,10,0.0 +24567,8,40,14,0.0 +24567,66,17,11,0.0 +24567,29,123.79,30,0.0 +24567,23,9,6,0.0 +24567,14,23.25,40,0.0 +24567,76,18,25,0.0 +24567,54,7.45,23,0.0 +24567,46,12,18,0.0 +24567,56,38,37,0.0 +24567,58,13.25,26,0.0 +24567,72,34.8,15,0.0 +24567,15,15.5,5,0.0 +24567,73,15,31,0.0 +24567,5,21.35,47,0.0 +24567,62,49.3,4,0.0 +24567,40,18.4,42,0.0 +24567,67,14,18,0.0 +24567,30,25.89,1,0.0 +24567,57,19.5,49,0.0 +24567,64,33.25,1,0.0 +24567,38,263.5,22,0.0 +24567,36,19,41,0.0 +24567,32,32,12,0.0 +24567,60,34,11,0.0 +24567,12,38,16,0.0 +24567,74,10,48,0.0 +24567,43,46,37,0.0 +24567,27,43.9,6,0.0 +24567,1,18,14,0.0 +24567,59,55,1,0.0 +24567,37,26,43,0.0 +24567,49,20,26,0.0 +24567,65,21.05,21,0.0 +24567,52,7,40,0.0 +24567,42,14,7,0.0 +24567,11,21,27,0.0 +24567,31,12.5,30,0.0 +24567,33,2.5,13,0.0 +24567,16,17.45,20,0.0 +24567,63,43.9,21,0.0 +24567,17,39,47,0.0 +24567,70,15,30,0.0 +24567,44,19.45,38,0.0 +24567,41,9.65,40,0.0 +24567,68,12.5,20,0.0 +24567,7,30,34,0.0 +24567,48,12.75,34,0.0 +24567,75,7.75,44,0.0 +24567,6,25,35,0.0 +24567,69,36,27,0.0 +24567,71,21.5,46,0.0 +24567,13,6,34,0.0 +24567,3,10,29,0.0 +24567,35,18,20,0.0 +24567,53,32.8,36,0.0 +24567,26,31.23,26,0.0 +24568,59,55,38,0.0 +24568,69,36,10,0.0 +24568,30,25.89,16,0.0 +24568,17,39,10,0.0 +24568,15,15.5,13,0.0 +24568,7,30,1,0.0 +24568,18,62.5,6,0.0 +24568,76,18,9,0.0 +24568,74,10,33,0.0 +24568,51,53,16,0.0 +24568,22,21,14,0.0 +24568,34,14,16,0.0 +24568,48,12.75,17,0.0 +24568,9,97,49,0.0 +24568,71,21.5,16,0.0 +24568,64,33.25,18,0.0 +24568,47,9.5,14,0.0 +24568,8,40,28,0.0 +24568,13,6,7,0.0 +24568,11,21,33,0.0 +24568,39,18,23,0.0 +24568,42,14,42,0.0 +24568,5,21.35,18,0.0 +24568,67,14,14,0.0 +24568,75,7.75,10,0.0 +24568,27,43.9,40,0.0 +24568,10,31,18,0.0 +24568,23,9,45,0.0 +24568,57,19.5,15,0.0 +24568,58,13.25,33,0.0 +24568,52,7,32,0.0 +24568,3,10,8,0.0 +24568,4,22,4,0.0 +24568,6,25,15,0.0 +24568,35,18,46,0.0 +24568,61,28.5,4,0.0 +24568,68,12.5,8,0.0 +24568,20,81,15,0.0 +24568,55,24,17,0.0 +24568,29,123.79,11,0.0 +24568,41,9.65,28,0.0 +24568,46,12,10,0.0 +24568,31,12.5,45,0.0 +24568,65,21.05,17,0.0 +24568,60,34,17,0.0 +24568,21,10,9,0.0 +24568,43,46,42,0.0 +24568,66,17,41,0.0 +24568,24,4.5,25,0.0 +24568,40,18.4,35,0.0 +24568,37,26,41,0.0 +24568,72,34.8,47,0.0 +24568,36,19,31,0.0 +24568,53,32.8,28,0.0 +24568,38,263.5,27,0.0 +24568,45,9.5,14,0.0 +24568,32,32,40,0.0 +24568,73,15,13,0.0 +24568,54,7.45,15,0.0 +24568,1,18,20,0.0 +24568,19,9.2,43,0.0 +24568,44,19.45,35,0.0 +24568,28,45.6,30,0.0 +24568,12,38,20,0.0 +24568,62,49.3,47,0.0 +24569,45,9.5,37,0.0 +24569,17,39,44,0.0 +24569,2,19,43,0.0 +24569,59,55,34,0.0 +24569,46,12,14,0.0 +24569,3,10,40,0.0 +24569,49,20,32,0.0 +24569,39,18,4,0.0 +24569,35,18,47,0.0 +24569,29,123.79,1,0.0 +24569,69,36,2,0.0 +24569,56,38,14,0.0 +24569,9,97,22,0.0 +24569,51,53,37,0.0 +24569,48,12.75,22,0.0 +24569,24,4.5,46,0.0 +24569,68,12.5,47,0.0 +24569,7,30,24,0.0 +24569,41,9.65,5,0.0 +24569,62,49.3,6,0.0 +24569,25,14,23,0.0 +24569,52,7,8,0.0 +24569,6,25,41,0.0 +24569,21,10,19,0.0 +24569,71,21.5,42,0.0 +24569,5,21.35,17,0.0 +24569,74,10,37,0.0 +24569,57,19.5,43,0.0 +24569,72,34.8,19,0.0 +24569,60,34,22,0.0 +24569,44,19.45,27,0.0 +24569,38,263.5,12,0.0 +24569,12,38,46,0.0 +24569,27,43.9,50,0.0 +24569,67,14,47,0.0 +24569,75,7.75,30,0.0 +24569,61,28.5,17,0.0 +24569,33,2.5,33,0.0 +24569,22,21,17,0.0 +24569,50,16.25,26,0.0 +24569,28,45.6,19,0.0 +24570,14,23.25,3,0.0 +24570,23,9,21,0.0 +24570,63,43.9,13,0.0 +24570,48,12.75,2,0.0 +24570,67,14,12,0.0 +24570,53,32.8,38,0.0 +24570,66,17,10,0.0 +24570,33,2.5,10,0.0 +24570,13,6,3,0.0 +24570,46,12,44,0.0 +24570,10,31,6,0.0 +24570,56,38,24,0.0 +24570,27,43.9,26,0.0 +24570,45,9.5,39,0.0 +24570,69,36,7,0.0 +24571,47,9.5,37,0.0 +24571,53,32.8,37,0.0 +24571,48,12.75,43,0.0 +24571,54,7.45,32,0.0 +24571,60,34,8,0.0 +24571,28,45.6,14,0.0 +24571,71,21.5,24,0.0 +24571,50,16.25,7,0.0 +24571,1,18,26,0.0 +24572,1,18,14,0.0 +24572,18,62.5,50,0.0 +24572,9,97,21,0.0 +24572,38,263.5,29,0.0 +24572,10,31,2,0.0 +24572,19,9.2,30,0.0 +24572,33,2.5,19,0.0 +24572,75,7.75,40,0.0 +24572,28,45.6,1,0.0 +24572,50,16.25,35,0.0 +24572,56,38,27,0.0 +24572,11,21,45,0.0 +24572,43,46,8,0.0 +24572,49,20,36,0.0 +24572,35,18,32,0.0 +24572,32,32,45,0.0 +24572,20,81,46,0.0 +24572,67,14,14,0.0 +24572,46,12,14,0.0 +24572,51,53,26,0.0 +24572,58,13.25,45,0.0 +24572,71,21.5,42,0.0 +24572,25,14,15,0.0 +24572,61,28.5,21,0.0 +24572,47,9.5,31,0.0 +24572,4,22,45,0.0 +24572,6,25,10,0.0 +24572,27,43.9,15,0.0 +24572,39,18,42,0.0 +24572,40,18.4,22,0.0 +24572,73,15,39,0.0 +24572,60,34,43,0.0 +24572,5,21.35,31,0.0 +24572,63,43.9,3,0.0 +24572,77,13,14,0.0 +24572,52,7,50,0.0 +24572,48,12.75,42,0.0 +24572,64,33.25,18,0.0 +24572,16,17.45,37,0.0 +24572,2,19,50,0.0 +24572,36,19,49,0.0 +24572,23,9,27,0.0 +24572,54,7.45,15,0.0 +24572,44,19.45,42,0.0 +24572,24,4.5,39,0.0 +24572,62,49.3,29,0.0 +24572,26,31.23,9,0.0 +24572,59,55,6,0.0 +24572,15,15.5,27,0.0 +24572,29,123.79,38,0.0 +24572,22,21,41,0.0 +24572,69,36,33,0.0 +24572,30,25.89,5,0.0 +24572,21,10,39,0.0 +24572,34,14,32,0.0 +24572,65,21.05,27,0.0 +24572,66,17,33,0.0 +24572,41,9.65,44,0.0 +24572,8,40,14,0.0 +24572,17,39,47,0.0 +24572,74,10,31,0.0 +24572,72,34.8,38,0.0 +24572,45,9.5,14,0.0 +24572,57,19.5,16,0.0 +24572,42,14,46,0.0 +24572,76,18,10,0.0 +24572,3,10,45,0.0 +24573,61,28.5,32,0.0 +24573,65,21.05,3,0.0 +24573,62,49.3,13,0.0 +24573,67,14,43,0.0 +24573,5,21.35,5,0.0 +24573,31,12.5,28,0.0 +24573,48,12.75,2,0.0 +24573,52,7,44,0.0 +24573,8,40,21,0.0 +24573,54,7.45,24,0.0 +24573,38,263.5,43,0.0 +24573,25,14,36,0.0 +24573,26,31.23,2,0.0 +24573,41,9.65,13,0.0 +24573,55,24,29,0.0 +24573,17,39,37,0.0 +24573,66,17,24,0.0 +24573,59,55,44,0.0 +24573,9,97,1,0.0 +24573,29,123.79,39,0.0 +24573,23,9,26,0.0 +24573,39,18,41,0.0 +24573,42,14,18,0.0 +24573,32,32,22,0.0 +24573,18,62.5,19,0.0 +24573,24,4.5,34,0.0 +24573,21,10,31,0.0 +24573,60,34,14,0.0 +24573,44,19.45,25,0.0 +24573,4,22,40,0.0 +24573,57,19.5,24,0.0 +24573,22,21,43,0.0 +24573,47,9.5,20,0.0 +24573,10,31,47,0.0 +24573,13,6,34,0.0 +24573,70,15,35,0.0 +24573,40,18.4,23,0.0 +24573,72,34.8,39,0.0 +24573,76,18,4,0.0 +24573,35,18,36,0.0 +24573,69,36,14,0.0 +24573,16,17.45,43,0.0 +24573,2,19,20,0.0 +24573,11,21,10,0.0 +24573,20,81,30,0.0 +24573,28,45.6,34,0.0 +24573,58,13.25,2,0.0 +24573,19,9.2,25,0.0 +24573,49,20,45,0.0 +24573,1,18,19,0.0 +24573,27,43.9,38,0.0 +24573,53,32.8,36,0.0 +24573,46,12,24,0.0 +24573,37,26,17,0.0 +24574,6,25,24,0.0 +24574,49,20,44,0.0 +24574,11,21,36,0.0 +24574,52,7,44,0.0 +24574,66,17,4,0.0 +24574,33,2.5,29,0.0 +24574,7,30,34,0.0 +24574,14,23.25,7,0.0 +24574,39,18,1,0.0 +24574,32,32,4,0.0 +24574,41,9.65,2,0.0 +24574,42,14,8,0.0 +24574,76,18,29,0.0 +24574,72,34.8,14,0.0 +24574,23,9,49,0.0 +24574,45,9.5,19,0.0 +24574,8,40,41,0.0 +24574,68,12.5,26,0.0 +24574,4,22,6,0.0 +24574,60,34,49,0.0 +24574,43,46,20,0.0 +24574,27,43.9,38,0.0 +24574,19,9.2,42,0.0 +24574,63,43.9,14,0.0 +24574,77,13,19,0.0 +24574,61,28.5,30,0.0 +24574,73,15,26,0.0 +24575,63,43.9,38,0.0 +24575,69,36,6,0.0 +24575,66,17,9,0.0 +24575,12,38,16,0.0 +24575,24,4.5,32,0.0 +24575,27,43.9,13,0.0 +24575,55,24,41,0.0 +24575,9,97,7,0.0 +24575,70,15,11,0.0 +24575,33,2.5,24,0.0 +24575,5,21.35,26,0.0 +24575,2,19,6,0.0 +24575,45,9.5,46,0.0 +24575,31,12.5,43,0.0 +24575,42,14,48,0.0 +24575,37,26,35,0.0 +24575,15,15.5,41,0.0 +24575,6,25,4,0.0 +24575,18,62.5,10,0.0 +24575,44,19.45,39,0.0 +24575,14,23.25,36,0.0 +24575,1,18,28,0.0 +24575,4,22,50,0.0 +24575,23,9,12,0.0 +24575,46,12,13,0.0 +24575,62,49.3,35,0.0 +24575,73,15,35,0.0 +24575,50,16.25,32,0.0 +24575,17,39,13,0.0 +24575,29,123.79,6,0.0 +24575,28,45.6,15,0.0 +24575,76,18,41,0.0 +24575,68,12.5,28,0.0 +24575,20,81,17,0.0 +24575,39,18,44,0.0 +24575,19,9.2,14,0.0 +24575,47,9.5,42,0.0 +24575,43,46,26,0.0 +24575,71,21.5,11,0.0 +24575,59,55,8,0.0 +24575,65,21.05,33,0.0 +24575,8,40,36,0.0 +24575,11,21,12,0.0 +24575,60,34,40,0.0 +24575,58,13.25,30,0.0 +24575,41,9.65,22,0.0 +24575,21,10,15,0.0 +24575,36,19,39,0.0 +24575,25,14,29,0.0 +24575,35,18,45,0.0 +24575,40,18.4,34,0.0 +24575,26,31.23,10,0.0 +24575,54,7.45,21,0.0 +24575,13,6,21,0.0 +24575,49,20,50,0.0 +24575,53,32.8,43,0.0 +24575,72,34.8,12,0.0 +24575,57,19.5,13,0.0 +24575,38,263.5,13,0.0 +24575,22,21,29,0.0 +24575,34,14,37,0.0 +24575,56,38,50,0.0 +24575,48,12.75,27,0.0 +24576,67,14,27,0.0 +24576,72,34.8,13,0.0 +24576,47,9.5,33,0.0 +24576,4,22,39,0.0 +24576,74,10,6,0.0 +24577,43,46,31,0.0 +24577,35,18,12,0.0 +24577,61,28.5,26,0.0 +24577,3,10,2,0.0 +24577,11,21,29,0.0 +24577,16,17.45,24,0.0 +24577,50,16.25,9,0.0 +24577,36,19,40,0.0 +24577,46,12,3,0.0 +24577,1,18,30,0.0 +24577,69,36,26,0.0 +24577,39,18,24,0.0 +24577,41,9.65,19,0.0 +24577,10,31,12,0.0 +24577,64,33.25,1,0.0 +24577,65,21.05,3,0.0 +24577,77,13,29,0.0 +24577,49,20,30,0.0 +24577,31,12.5,18,0.0 +24577,71,21.5,18,0.0 +24577,17,39,50,0.0 +24577,25,14,39,0.0 +24577,27,43.9,24,0.0 +24577,34,14,11,0.0 +24577,68,12.5,18,0.0 +24577,42,14,28,0.0 +24577,37,26,16,0.0 +24577,62,49.3,36,0.0 +24577,6,25,43,0.0 +24577,30,25.89,29,0.0 +24577,63,43.9,38,0.0 +24577,54,7.45,50,0.0 +24577,21,10,33,0.0 +24577,75,7.75,38,0.0 +24577,12,38,36,0.0 +24577,66,17,50,0.0 +24577,8,40,9,0.0 +24577,26,31.23,34,0.0 +24577,44,19.45,50,0.0 +24577,60,34,3,0.0 +24577,7,30,10,0.0 +24577,70,15,43,0.0 +24577,74,10,32,0.0 +24577,72,34.8,23,0.0 +24577,38,263.5,19,0.0 +24577,14,23.25,36,0.0 +24577,59,55,2,0.0 +24577,29,123.79,1,0.0 +24577,53,32.8,48,0.0 +24577,19,9.2,14,0.0 +24577,48,12.75,19,0.0 +24577,20,81,15,0.0 +24577,2,19,2,0.0 +24577,56,38,7,0.0 +24577,9,97,2,0.0 +24577,5,21.35,20,0.0 +24577,13,6,36,0.0 +24577,40,18.4,50,0.0 +24577,24,4.5,19,0.0 +24577,55,24,6,0.0 +24577,23,9,8,0.0 +24577,22,21,40,0.0 +24577,67,14,13,0.0 +24577,18,62.5,5,0.0 +24577,45,9.5,27,0.0 +24577,51,53,16,0.0 +24577,15,15.5,18,0.0 +24577,73,15,47,0.0 +24577,47,9.5,32,0.0 +24577,32,32,12,0.0 +24577,52,7,41,0.0 +24577,58,13.25,2,0.0 +24577,33,2.5,32,0.0 +24577,57,19.5,24,0.0 +24577,28,45.6,27,0.0 +24578,74,10,41,0.0 +24578,19,9.2,28,0.0 +24578,71,21.5,37,0.0 +24578,75,7.75,20,0.0 +24578,60,34,34,0.0 +24578,51,53,30,0.0 +24578,61,28.5,27,0.0 +24578,37,26,13,0.0 +24578,33,2.5,25,0.0 +24578,59,55,41,0.0 +24578,66,17,14,0.0 +24578,24,4.5,32,0.0 +24578,32,32,16,0.0 +24578,70,15,43,0.0 +24578,57,19.5,41,0.0 +24578,12,38,28,0.0 +24578,2,19,28,0.0 +24578,22,21,4,0.0 +24578,54,7.45,11,0.0 +24578,31,12.5,9,0.0 +24578,53,32.8,26,0.0 +24578,72,34.8,34,0.0 +24578,48,12.75,49,0.0 +24578,9,97,28,0.0 +24578,23,9,43,0.0 +24578,43,46,2,0.0 +24578,56,38,39,0.0 +24578,5,21.35,25,0.0 +24578,21,10,4,0.0 +24578,15,15.5,14,0.0 +24578,30,25.89,11,0.0 +24578,42,14,22,0.0 +24578,36,19,3,0.0 +24578,62,49.3,3,0.0 +24578,26,31.23,20,0.0 +24578,73,15,24,0.0 +24578,50,16.25,9,0.0 +24578,58,13.25,44,0.0 +24578,28,45.6,4,0.0 +24578,14,23.25,19,0.0 +24578,68,12.5,1,0.0 +24578,77,13,40,0.0 +24578,13,6,14,0.0 +24578,64,33.25,39,0.0 +24578,10,31,16,0.0 +24578,63,43.9,23,0.0 +24578,6,25,5,0.0 +24579,57,19.5,47,0.0 +24579,18,62.5,46,0.0 +24579,50,16.25,48,0.0 +24579,58,13.25,6,0.0 +24579,73,15,29,0.0 +24579,74,10,2,0.0 +24579,15,15.5,3,0.0 +24579,10,31,50,0.0 +24579,25,14,35,0.0 +24579,32,32,42,0.0 +24579,3,10,30,0.0 +24579,36,19,24,0.0 +24579,71,21.5,22,0.0 +24579,28,45.6,19,0.0 +24579,52,7,18,0.0 +24579,30,25.89,26,0.0 +24579,8,40,9,0.0 +24579,40,18.4,36,0.0 +24579,20,81,5,0.0 +24579,1,18,25,0.0 +24579,9,97,9,0.0 +24579,54,7.45,1,0.0 +24579,45,9.5,7,0.0 +24579,39,18,12,0.0 +24579,23,9,4,0.0 +24579,7,30,24,0.0 +24579,21,10,47,0.0 +24579,69,36,1,0.0 +24579,26,31.23,16,0.0 +24580,36,19,12,0.0 +24580,52,7,15,0.0 +24580,56,38,2,0.0 +24580,76,18,11,0.0 +24580,23,9,15,0.0 +24580,33,2.5,15,0.0 +24580,58,13.25,38,0.0 +24580,69,36,42,0.0 +24580,39,18,21,0.0 +24580,54,7.45,41,0.0 +24580,31,12.5,36,0.0 +24580,14,23.25,33,0.0 +24580,71,21.5,44,0.0 +24580,60,34,44,0.0 +24580,15,15.5,3,0.0 +24580,48,12.75,16,0.0 +24580,77,13,28,0.0 +24580,55,24,29,0.0 +24580,65,21.05,21,0.0 +24580,72,34.8,33,0.0 +24580,7,30,5,0.0 +24580,12,38,22,0.0 +24580,10,31,13,0.0 +24580,45,9.5,10,0.0 +24580,29,123.79,32,0.0 +24580,53,32.8,45,0.0 +24580,20,81,2,0.0 +24580,5,21.35,2,0.0 +24580,2,19,27,0.0 +24580,11,21,22,0.0 +24580,6,25,43,0.0 +24580,25,14,1,0.0 +24580,24,4.5,42,0.0 +24580,64,33.25,35,0.0 +24580,44,19.45,32,0.0 +24580,49,20,33,0.0 +24580,16,17.45,11,0.0 +24580,61,28.5,45,0.0 +24580,75,7.75,8,0.0 +24580,46,12,26,0.0 +24580,51,53,2,0.0 +24580,41,9.65,49,0.0 +24580,3,10,28,0.0 +24580,4,22,36,0.0 +24580,40,18.4,37,0.0 +24580,62,49.3,33,0.0 +24580,43,46,16,0.0 +24580,66,17,27,0.0 +24580,34,14,45,0.0 +24580,50,16.25,41,0.0 +24580,17,39,43,0.0 +24580,22,21,38,0.0 +24580,8,40,34,0.0 +24580,68,12.5,9,0.0 +24580,21,10,38,0.0 +24580,28,45.6,38,0.0 +24580,30,25.89,25,0.0 +24580,13,6,18,0.0 +24580,1,18,46,0.0 +24580,19,9.2,29,0.0 +24580,74,10,15,0.0 +24580,38,263.5,2,0.0 +24580,9,97,2,0.0 +24580,73,15,4,0.0 +24580,18,62.5,46,0.0 +24581,17,39,26,0.0 +24581,9,97,50,0.0 +24581,55,24,43,0.0 +24581,1,18,37,0.0 +24581,4,22,38,0.0 +24581,35,18,17,0.0 +24581,69,36,17,0.0 +24581,19,9.2,44,0.0 +24581,10,31,15,0.0 +24581,43,46,2,0.0 +24581,34,14,13,0.0 +24581,38,263.5,41,0.0 +24581,66,17,15,0.0 +24581,8,40,30,0.0 +24581,7,30,45,0.0 +24581,27,43.9,45,0.0 +24581,49,20,44,0.0 +24581,58,13.25,34,0.0 +24581,11,21,45,0.0 +24581,18,62.5,35,0.0 +24581,62,49.3,9,0.0 +24581,77,13,21,0.0 +24581,63,43.9,18,0.0 +24581,6,25,45,0.0 +24581,70,15,3,0.0 +24581,68,12.5,41,0.0 +24581,56,38,45,0.0 +24581,14,23.25,25,0.0 +24581,5,21.35,39,0.0 +24581,21,10,25,0.0 +24581,65,21.05,33,0.0 +24581,37,26,42,0.0 +24581,39,18,36,0.0 +24582,16,17.45,3,0.0 +24582,74,10,5,0.0 +24582,48,12.75,41,0.0 +24582,55,24,17,0.0 +24582,42,14,6,0.0 +24582,57,19.5,6,0.0 +24582,33,2.5,11,0.0 +24582,36,19,11,0.0 +24582,6,25,44,0.0 +24582,50,16.25,29,0.0 +24582,10,31,42,0.0 +24582,21,10,32,0.0 +24582,43,46,16,0.0 +24582,27,43.9,12,0.0 +24582,46,12,4,0.0 +24582,28,45.6,24,0.0 +24582,34,14,26,0.0 +24582,69,36,23,0.0 +24582,39,18,8,0.0 +24582,11,21,29,0.0 +24582,40,18.4,20,0.0 +24582,13,6,2,0.0 +24582,14,23.25,7,0.0 +24582,59,55,12,0.0 +24582,8,40,28,0.0 +24582,31,12.5,20,0.0 +24582,64,33.25,37,0.0 +24582,65,21.05,8,0.0 +24582,26,31.23,35,0.0 +24582,72,34.8,17,0.0 +24582,25,14,38,0.0 +24582,67,14,15,0.0 +24582,71,21.5,10,0.0 +24582,9,97,35,0.0 +24582,45,9.5,44,0.0 +24582,18,62.5,10,0.0 +24582,77,13,32,0.0 +24582,41,9.65,20,0.0 +24582,49,20,36,0.0 +24582,1,18,25,0.0 +24582,47,9.5,29,0.0 +24582,60,34,21,0.0 +24582,17,39,8,0.0 +24582,5,21.35,29,0.0 +24582,15,15.5,16,0.0 +24582,32,32,8,0.0 +24582,76,18,33,0.0 +24582,66,17,34,0.0 +24582,51,53,36,0.0 +24582,44,19.45,18,0.0 +24582,23,9,14,0.0 +24582,3,10,1,0.0 +24582,61,28.5,7,0.0 +24582,58,13.25,31,0.0 +24582,19,9.2,28,0.0 +24582,35,18,45,0.0 +24582,2,19,28,0.0 +24582,54,7.45,36,0.0 +24582,12,38,32,0.0 +24582,53,32.8,16,0.0 +24582,63,43.9,6,0.0 +24582,24,4.5,44,0.0 +24582,52,7,2,0.0 +24582,37,26,28,0.0 +24582,30,25.89,9,0.0 +24582,7,30,46,0.0 +24582,70,15,11,0.0 +24582,75,7.75,44,0.0 +24582,56,38,41,0.0 +24582,73,15,49,0.0 +24582,20,81,43,0.0 +24582,38,263.5,32,0.0 +24582,62,49.3,23,0.0 +24582,29,123.79,3,0.0 +24583,29,123.79,24,0.0 +24583,4,22,38,0.0 +24583,9,97,16,0.0 +24583,26,31.23,47,0.0 +24583,77,13,37,0.0 +24583,14,23.25,38,0.0 +24583,55,24,48,0.0 +24583,76,18,4,0.0 +24583,3,10,30,0.0 +24583,41,9.65,46,0.0 +24583,35,18,39,0.0 +24583,63,43.9,35,0.0 +24583,18,62.5,25,0.0 +24583,6,25,33,0.0 +24583,69,36,30,0.0 +24583,73,15,41,0.0 +24583,10,31,3,0.0 +24583,67,14,28,0.0 +24583,20,81,31,0.0 +24583,36,19,16,0.0 +24583,50,16.25,48,0.0 +24583,66,17,40,0.0 +24583,51,53,12,0.0 +24583,45,9.5,11,0.0 +24583,39,18,10,0.0 +24583,52,7,46,0.0 +24583,49,20,6,0.0 +24583,74,10,26,0.0 +24583,71,21.5,30,0.0 +24583,48,12.75,29,0.0 +24583,40,18.4,10,0.0 +24583,42,14,13,0.0 +24583,72,34.8,35,0.0 +24583,17,39,22,0.0 +24583,25,14,23,0.0 +24584,4,22,32,0.0 +24584,40,18.4,9,0.0 +24584,5,21.35,41,0.0 +24584,44,19.45,7,0.0 +24584,55,24,42,0.0 +24584,61,28.5,29,0.0 +24584,75,7.75,24,0.0 +24584,76,18,4,0.0 +24584,31,12.5,40,0.0 +24584,58,13.25,30,0.0 +24584,34,14,13,0.0 +24584,10,31,24,0.0 +24584,66,17,33,0.0 +24584,13,6,14,0.0 +24584,47,9.5,37,0.0 +24584,49,20,31,0.0 +24584,24,4.5,1,0.0 +24584,59,55,5,0.0 +24584,71,21.5,43,0.0 +24584,72,34.8,28,0.0 +24584,45,9.5,35,0.0 +24584,41,9.65,17,0.0 +24584,32,32,27,0.0 +24584,46,12,7,0.0 +24584,25,14,32,0.0 +24584,6,25,44,0.0 +24584,12,38,40,0.0 +24584,36,19,46,0.0 +24584,54,7.45,19,0.0 +24584,29,123.79,50,0.0 +24584,26,31.23,45,0.0 +24584,28,45.6,29,0.0 +24584,9,97,25,0.0 +24584,17,39,26,0.0 +24585,38,263.5,23,0.0 +24585,76,18,8,0.0 +24585,68,12.5,26,0.0 +24585,19,9.2,36,0.0 +24585,29,123.79,29,0.0 +24585,20,81,1,0.0 +24585,58,13.25,26,0.0 +24585,41,9.65,10,0.0 +24585,1,18,21,0.0 +24585,16,17.45,1,0.0 +24585,30,25.89,16,0.0 +24585,75,7.75,29,0.0 +24585,31,12.5,7,0.0 +24585,60,34,15,0.0 +24586,53,32.8,1,0.0 +24586,4,22,18,0.0 +24586,77,13,47,0.0 +24586,55,24,42,0.0 +24586,49,20,4,0.0 +24586,9,97,8,0.0 +24586,72,34.8,14,0.0 +24586,56,38,6,0.0 +24586,40,18.4,41,0.0 +24586,19,9.2,25,0.0 +24586,3,10,15,0.0 +24586,65,21.05,26,0.0 +24586,1,18,43,0.0 +24586,31,12.5,10,0.0 +24586,17,39,36,0.0 +24586,67,14,50,0.0 +24586,60,34,41,0.0 +24586,7,30,15,0.0 +24586,71,21.5,15,0.0 +24586,66,17,5,0.0 +24586,58,13.25,28,0.0 +24586,30,25.89,4,0.0 +24586,45,9.5,36,0.0 +24586,57,19.5,14,0.0 +24587,24,4.5,35,0.0 +24587,61,28.5,19,0.0 +24587,1,18,10,0.0 +24587,41,9.65,39,0.0 +24587,39,18,7,0.0 +24587,45,9.5,49,0.0 +24587,11,21,3,0.0 +24587,28,45.6,14,0.0 +24587,15,15.5,16,0.0 +24587,25,14,10,0.0 +24587,74,10,47,0.0 +24587,4,22,27,0.0 +24587,16,17.45,31,0.0 +24587,23,9,22,0.0 +24587,64,33.25,43,0.0 +24587,17,39,10,0.0 +24587,32,32,28,0.0 +24587,37,26,39,0.0 +24587,62,49.3,13,0.0 +24587,77,13,34,0.0 +24587,66,17,37,0.0 +24587,52,7,2,0.0 +24587,12,38,11,0.0 +24587,57,19.5,22,0.0 +24587,33,2.5,10,0.0 +24587,59,55,17,0.0 +24587,75,7.75,10,0.0 +24587,10,31,42,0.0 +24587,29,123.79,44,0.0 +24587,13,6,48,0.0 +24587,14,23.25,31,0.0 +24587,73,15,9,0.0 +24588,7,30,21,0.0 +24588,34,14,5,0.0 +24588,30,25.89,7,0.0 +24588,41,9.65,47,0.0 +24588,8,40,40,0.0 +24588,37,26,17,0.0 +24588,6,25,36,0.0 +24588,35,18,46,0.0 +24588,39,18,20,0.0 +24588,72,34.8,40,0.0 +24588,75,7.75,50,0.0 +24588,61,28.5,36,0.0 +24588,73,15,32,0.0 +24588,26,31.23,29,0.0 +24588,29,123.79,41,0.0 +24588,4,22,17,0.0 +24588,59,55,17,0.0 +24588,54,7.45,46,0.0 +24588,40,18.4,3,0.0 +24588,33,2.5,31,0.0 +24588,23,9,26,0.0 +24588,74,10,48,0.0 +24588,11,21,33,0.0 +24588,71,21.5,1,0.0 +24588,67,14,46,0.0 +24588,36,19,43,0.0 +24588,38,263.5,6,0.0 +24588,46,12,28,0.0 +24588,21,10,3,0.0 +24588,56,38,47,0.0 +24588,48,12.75,15,0.0 +24588,52,7,37,0.0 +24588,42,14,44,0.0 +24588,12,38,39,0.0 +24588,32,32,42,0.0 +24588,10,31,9,0.0 +24588,44,19.45,38,0.0 +24588,16,17.45,16,0.0 +24588,13,6,11,0.0 +24588,31,12.5,43,0.0 +24588,25,14,5,0.0 +24588,43,46,42,0.0 +24588,57,19.5,44,0.0 +24588,70,15,37,0.0 +24588,20,81,37,0.0 +24588,68,12.5,11,0.0 +24588,2,19,28,0.0 +24588,69,36,22,0.0 +24588,60,34,3,0.0 +24588,5,21.35,23,0.0 +24588,19,9.2,40,0.0 +24588,28,45.6,18,0.0 +24588,66,17,1,0.0 +24588,77,13,17,0.0 +24588,50,16.25,3,0.0 +24588,22,21,35,0.0 +24588,47,9.5,3,0.0 +24588,62,49.3,32,0.0 +24589,67,14,3,0.0 +24589,46,12,35,0.0 +24589,41,9.65,43,0.0 +24589,43,46,40,0.0 +24589,35,18,20,0.0 +24589,76,18,40,0.0 +24589,36,19,33,0.0 +24589,65,21.05,48,0.0 +24589,19,9.2,23,0.0 +24589,37,26,6,0.0 +24589,58,13.25,43,0.0 +24589,62,49.3,4,0.0 +24589,51,53,47,0.0 +24589,4,22,24,0.0 +24589,39,18,23,0.0 +24589,61,28.5,45,0.0 +24589,59,55,26,0.0 +24589,29,123.79,30,0.0 +24589,18,62.5,41,0.0 +24589,3,10,44,0.0 +24589,77,13,12,0.0 +24589,63,43.9,49,0.0 +24589,22,21,25,0.0 +24590,76,18,41,0.0 +24590,18,62.5,13,0.0 +24590,72,34.8,5,0.0 +24590,24,4.5,47,0.0 +24590,65,21.05,22,0.0 +24590,59,55,14,0.0 +24590,49,20,17,0.0 +24590,51,53,34,0.0 +24590,3,10,33,0.0 +24590,73,15,48,0.0 +24590,36,19,3,0.0 +24590,23,9,24,0.0 +24590,2,19,8,0.0 +24590,13,6,43,0.0 +24590,71,21.5,15,0.0 +24590,16,17.45,35,0.0 +24590,34,14,35,0.0 +24590,10,31,13,0.0 +24590,30,25.89,10,0.0 +24590,11,21,38,0.0 +24590,27,43.9,1,0.0 +24590,5,21.35,49,0.0 +24590,58,13.25,9,0.0 +24590,1,18,9,0.0 +24590,67,14,50,0.0 +24591,3,10,44,0.0 +24591,29,123.79,8,0.0 +24591,71,21.5,49,0.0 +24591,62,49.3,8,0.0 +24591,8,40,48,0.0 +24591,4,22,19,0.0 +24591,70,15,28,0.0 +24591,68,12.5,28,0.0 +24591,76,18,5,0.0 +24591,45,9.5,10,0.0 +24591,65,21.05,50,0.0 +24591,51,53,5,0.0 +24591,23,9,47,0.0 +24591,34,14,27,0.0 +24591,11,21,42,0.0 +24591,47,9.5,45,0.0 +24591,36,19,21,0.0 +24591,64,33.25,29,0.0 +24591,50,16.25,19,0.0 +24591,14,23.25,25,0.0 +24591,1,18,9,0.0 +24591,72,34.8,28,0.0 +24591,15,15.5,12,0.0 +24591,54,7.45,36,0.0 +24591,2,19,49,0.0 +24591,10,31,14,0.0 +24591,6,25,10,0.0 +24591,48,12.75,24,0.0 +24591,55,24,19,0.0 +24591,63,43.9,9,0.0 +24591,53,32.8,26,0.0 +24591,61,28.5,37,0.0 +24591,24,4.5,41,0.0 +24591,52,7,42,0.0 +24591,30,25.89,23,0.0 +24591,31,12.5,21,0.0 +24591,49,20,14,0.0 +24591,60,34,32,0.0 +24591,56,38,18,0.0 +24591,19,9.2,14,0.0 +24591,20,81,32,0.0 +24591,7,30,15,0.0 +24591,75,7.75,38,0.0 +24591,58,13.25,12,0.0 +24591,41,9.65,44,0.0 +24591,25,14,50,0.0 +24591,38,263.5,41,0.0 +24591,33,2.5,19,0.0 +24591,44,19.45,47,0.0 +24591,5,21.35,17,0.0 +24591,57,19.5,16,0.0 +24591,18,62.5,11,0.0 +24591,22,21,36,0.0 +24591,40,18.4,9,0.0 +24591,27,43.9,6,0.0 +24591,16,17.45,44,0.0 +24591,39,18,45,0.0 +24591,9,97,36,0.0 +24592,2,19,35,0.0 +24592,25,14,23,0.0 +24592,35,18,4,0.0 +24592,3,10,24,0.0 +24592,31,12.5,43,0.0 +24592,30,25.89,50,0.0 +24592,45,9.5,22,0.0 +24592,21,10,50,0.0 +24592,71,21.5,45,0.0 +24593,39,18,5,0.0 +24593,36,19,24,0.0 +24593,68,12.5,33,0.0 +24593,51,53,49,0.0 +24593,17,39,30,0.0 +24593,22,21,1,0.0 +24593,19,9.2,31,0.0 +24593,62,49.3,39,0.0 +24593,10,31,17,0.0 +24593,32,32,46,0.0 +24593,2,19,33,0.0 +24593,45,9.5,32,0.0 +24593,72,34.8,4,0.0 +24593,64,33.25,1,0.0 +24593,14,23.25,31,0.0 +24593,48,12.75,5,0.0 +24593,60,34,22,0.0 +24593,8,40,8,0.0 +24593,55,24,19,0.0 +24593,16,17.45,41,0.0 +24593,70,15,5,0.0 +24593,41,9.65,17,0.0 +24593,47,9.5,47,0.0 +24593,75,7.75,26,0.0 +24593,23,9,14,0.0 +24593,24,4.5,42,0.0 +24593,74,10,34,0.0 +24593,5,21.35,46,0.0 +24593,28,45.6,3,0.0 +24593,52,7,33,0.0 +24593,69,36,37,0.0 +24593,11,21,28,0.0 +24593,77,13,11,0.0 +24593,42,14,46,0.0 +24593,38,263.5,18,0.0 +24593,49,20,8,0.0 +24593,53,32.8,15,0.0 +24593,31,12.5,11,0.0 +24593,25,14,8,0.0 +24593,21,10,16,0.0 +24593,71,21.5,48,0.0 +24593,37,26,26,0.0 +24593,54,7.45,30,0.0 +24593,44,19.45,50,0.0 +24593,3,10,29,0.0 +24593,76,18,34,0.0 +24593,34,14,7,0.0 +24593,15,15.5,3,0.0 +24593,40,18.4,17,0.0 +24593,6,25,35,0.0 +24593,58,13.25,12,0.0 +24593,46,12,15,0.0 +24593,9,97,28,0.0 +24593,56,38,43,0.0 +24593,13,6,45,0.0 +24593,1,18,46,0.0 +24593,33,2.5,1,0.0 +24593,65,21.05,4,0.0 +24593,29,123.79,17,0.0 +24593,4,22,27,0.0 +24593,20,81,21,0.0 +24593,43,46,41,0.0 +24593,63,43.9,1,0.0 +24593,18,62.5,10,0.0 +24593,12,38,41,0.0 +24593,61,28.5,15,0.0 +24593,66,17,32,0.0 +24593,73,15,5,0.0 +24593,57,19.5,43,0.0 +24593,67,14,19,0.0 +24594,69,36,26,0.0 +24594,7,30,42,0.0 +24594,33,2.5,23,0.0 +24594,38,263.5,13,0.0 +24594,3,10,6,0.0 +24594,59,55,21,0.0 +24594,1,18,14,0.0 +24594,51,53,49,0.0 +24594,12,38,25,0.0 +24594,71,21.5,12,0.0 +24594,15,15.5,44,0.0 +24594,42,14,38,0.0 +24594,4,22,23,0.0 +24594,8,40,40,0.0 +24594,68,12.5,11,0.0 +24594,57,19.5,40,0.0 +24594,52,7,4,0.0 +24594,23,9,7,0.0 +24594,58,13.25,13,0.0 +24594,48,12.75,3,0.0 +24594,2,19,24,0.0 +24594,49,20,4,0.0 +24594,10,31,35,0.0 +24594,5,21.35,17,0.0 +24594,26,31.23,13,0.0 +24594,46,12,21,0.0 +24594,17,39,27,0.0 +24594,47,9.5,9,0.0 +24594,19,9.2,46,0.0 +24594,77,13,39,0.0 +24594,50,16.25,29,0.0 +24594,63,43.9,37,0.0 +24594,22,21,30,0.0 +24594,25,14,19,0.0 +24594,39,18,49,0.0 +24594,53,32.8,11,0.0 +24594,29,123.79,26,0.0 +24595,21,10,15,0.0 +24595,20,81,32,0.0 +24595,52,7,33,0.0 +24595,28,45.6,43,0.0 +24595,56,38,21,0.0 +24595,77,13,12,0.0 +24595,36,19,20,0.0 +24595,2,19,45,0.0 +24595,70,15,44,0.0 +24595,30,25.89,24,0.0 +24595,18,62.5,40,0.0 +24595,50,16.25,30,0.0 +24595,3,10,24,0.0 +24595,5,21.35,7,0.0 +24595,10,31,17,0.0 +24595,57,19.5,23,0.0 +24595,69,36,50,0.0 +24595,73,15,46,0.0 +24595,71,21.5,50,0.0 +24595,6,25,37,0.0 +24595,67,14,50,0.0 +24595,25,14,43,0.0 +24595,75,7.75,26,0.0 +24595,76,18,25,0.0 +24595,53,32.8,42,0.0 +24595,34,14,6,0.0 +24595,58,13.25,29,0.0 +24595,32,32,38,0.0 +24595,59,55,3,0.0 +24595,38,263.5,26,0.0 +24595,13,6,40,0.0 +24595,27,43.9,32,0.0 +24595,40,18.4,29,0.0 +24595,8,40,41,0.0 +24595,46,12,43,0.0 +24595,37,26,48,0.0 +24595,43,46,1,0.0 +24595,66,17,6,0.0 +24595,47,9.5,7,0.0 +24595,49,20,5,0.0 +24595,48,12.75,3,0.0 +24595,16,17.45,4,0.0 +24595,72,34.8,32,0.0 +24595,41,9.65,46,0.0 +24595,64,33.25,25,0.0 +24595,60,34,22,0.0 +24595,24,4.5,30,0.0 +24595,9,97,7,0.0 +24595,55,24,11,0.0 +24595,44,19.45,40,0.0 +24595,33,2.5,36,0.0 +24595,42,14,6,0.0 +24595,31,12.5,22,0.0 +24595,17,39,16,0.0 +24595,12,38,14,0.0 +24596,71,21.5,27,0.0 +24596,13,6,31,0.0 +24596,70,15,41,0.0 +24596,9,97,22,0.0 +24596,5,21.35,18,0.0 +24596,31,12.5,46,0.0 +24596,47,9.5,25,0.0 +24596,18,62.5,33,0.0 +24597,64,33.25,44,0.0 +24597,73,15,15,0.0 +24597,8,40,10,0.0 +24597,58,13.25,26,0.0 +24597,5,21.35,50,0.0 +24597,10,31,35,0.0 +24597,20,81,41,0.0 +24597,63,43.9,10,0.0 +24597,42,14,10,0.0 +24597,22,21,19,0.0 +24597,9,97,46,0.0 +24597,16,17.45,40,0.0 +24597,54,7.45,16,0.0 +24597,40,18.4,31,0.0 +24597,39,18,22,0.0 +24597,18,62.5,44,0.0 +24597,34,14,1,0.0 +24597,65,21.05,23,0.0 +24597,24,4.5,31,0.0 +24597,12,38,15,0.0 +24597,4,22,23,0.0 +24597,14,23.25,48,0.0 +24597,68,12.5,37,0.0 +24597,59,55,11,0.0 +24597,26,31.23,19,0.0 +24597,69,36,16,0.0 +24597,75,7.75,43,0.0 +24597,61,28.5,5,0.0 +24597,38,263.5,8,0.0 +24597,74,10,10,0.0 +24597,30,25.89,2,0.0 +24597,29,123.79,10,0.0 +24597,48,12.75,39,0.0 +24597,15,15.5,25,0.0 +24597,7,30,32,0.0 +24597,25,14,8,0.0 +24597,51,53,15,0.0 +24597,52,7,15,0.0 +24597,2,19,14,0.0 +24597,37,26,18,0.0 +24597,70,15,48,0.0 +24597,31,12.5,5,0.0 +24597,55,24,36,0.0 +24597,33,2.5,20,0.0 +24597,60,34,29,0.0 +24597,53,32.8,1,0.0 +24597,76,18,5,0.0 +24597,44,19.45,44,0.0 +24597,36,19,1,0.0 +24597,1,18,24,0.0 +24597,50,16.25,29,0.0 +24597,27,43.9,1,0.0 +24597,11,21,12,0.0 +24597,72,34.8,32,0.0 +24597,6,25,24,0.0 +24597,67,14,30,0.0 +24598,49,20,45,0.0 +24598,38,263.5,4,0.0 +24598,21,10,26,0.0 +24598,65,21.05,1,0.0 +24598,13,6,34,0.0 +24598,67,14,29,0.0 +24598,17,39,39,0.0 +24598,25,14,37,0.0 +24598,72,34.8,43,0.0 +24598,14,23.25,26,0.0 +24598,20,81,50,0.0 +24598,51,53,3,0.0 +24598,28,45.6,37,0.0 +24598,10,31,12,0.0 +24598,31,12.5,26,0.0 +24598,5,21.35,13,0.0 +24598,26,31.23,20,0.0 +24598,18,62.5,11,0.0 +24598,19,9.2,19,0.0 +24598,34,14,11,0.0 +24598,50,16.25,11,0.0 +24598,35,18,8,0.0 +24598,8,40,1,0.0 +24598,52,7,50,0.0 +24598,47,9.5,50,0.0 +24598,62,49.3,36,0.0 +24598,29,123.79,32,0.0 +24598,27,43.9,22,0.0 +24598,70,15,38,0.0 +24598,63,43.9,19,0.0 +24598,12,38,31,0.0 +24598,55,24,1,0.0 +24598,57,19.5,1,0.0 +24598,53,32.8,12,0.0 +24598,59,55,46,0.0 +24598,48,12.75,8,0.0 +24598,7,30,48,0.0 +24598,42,14,47,0.0 +24598,4,22,31,0.0 +24598,76,18,27,0.0 +24598,45,9.5,47,0.0 +24598,69,36,46,0.0 +24598,44,19.45,37,0.0 +24598,6,25,20,0.0 +24598,56,38,9,0.0 +24598,15,15.5,42,0.0 +24598,68,12.5,31,0.0 +24598,64,33.25,11,0.0 +24598,61,28.5,32,0.0 +24598,22,21,22,0.0 +24598,71,21.5,7,0.0 +24598,54,7.45,15,0.0 +24598,33,2.5,50,0.0 +24598,66,17,9,0.0 +24598,74,10,37,0.0 +24598,75,7.75,41,0.0 +24598,36,19,20,0.0 +24598,1,18,34,0.0 +24598,73,15,18,0.0 +24598,77,13,27,0.0 +24598,11,21,36,0.0 +24598,58,13.25,17,0.0 +24598,24,4.5,42,0.0 +24598,41,9.65,48,0.0 +24598,16,17.45,25,0.0 +24598,37,26,23,0.0 +24598,32,32,7,0.0 +24598,39,18,27,0.0 +24598,60,34,38,0.0 +24598,2,19,43,0.0 +24599,55,24,35,0.0 +24599,35,18,49,0.0 +24599,14,23.25,18,0.0 +24599,56,38,25,0.0 +24599,22,21,45,0.0 +24599,8,40,33,0.0 +24599,64,33.25,36,0.0 +24599,63,43.9,41,0.0 +24599,43,46,34,0.0 +24599,46,12,10,0.0 +24599,37,26,30,0.0 +24599,29,123.79,27,0.0 +24599,10,31,7,0.0 +24599,23,9,4,0.0 +24599,52,7,2,0.0 +24599,75,7.75,10,0.0 +24599,36,19,36,0.0 +24599,59,55,43,0.0 +24599,69,36,22,0.0 +24599,25,14,38,0.0 +24599,24,4.5,7,0.0 +24599,48,12.75,38,0.0 +24599,67,14,26,0.0 +24599,50,16.25,35,0.0 +24599,27,43.9,25,0.0 +24599,70,15,35,0.0 +24599,51,53,40,0.0 +24599,26,31.23,7,0.0 +24599,17,39,2,0.0 +24599,7,30,41,0.0 +24599,53,32.8,16,0.0 +24599,2,19,3,0.0 +24599,73,15,9,0.0 +24599,49,20,1,0.0 +24599,12,38,36,0.0 +24599,57,19.5,7,0.0 +24599,9,97,48,0.0 +24599,11,21,33,0.0 +24599,77,13,25,0.0 +24599,4,22,2,0.0 +24599,31,12.5,22,0.0 +24599,13,6,34,0.0 +24599,74,10,3,0.0 +24599,16,17.45,49,0.0 +24599,76,18,15,0.0 +24599,3,10,4,0.0 +24599,18,62.5,37,0.0 +24599,1,18,41,0.0 +24599,39,18,8,0.0 +24599,68,12.5,42,0.0 +24599,19,9.2,27,0.0 +24599,15,15.5,17,0.0 +24599,41,9.65,42,0.0 +24599,42,14,10,0.0 +24599,45,9.5,5,0.0 +24599,60,34,33,0.0 +24599,58,13.25,43,0.0 +24599,5,21.35,49,0.0 +24599,65,21.05,7,0.0 +24599,47,9.5,23,0.0 +24599,54,7.45,1,0.0 +24599,71,21.5,45,0.0 +24599,28,45.6,45,0.0 +24600,25,14,27,0.0 +24600,31,12.5,4,0.0 +24600,64,33.25,28,0.0 +24600,66,17,31,0.0 +24600,69,36,30,0.0 +24600,57,19.5,15,0.0 +24600,32,32,14,0.0 +24600,11,21,5,0.0 +24600,52,7,37,0.0 +24600,4,22,17,0.0 +24600,22,21,4,0.0 +24600,70,15,47,0.0 +24600,33,2.5,32,0.0 +24600,74,10,26,0.0 +24600,34,14,39,0.0 +24600,65,21.05,50,0.0 +24600,41,9.65,46,0.0 +24600,45,9.5,45,0.0 +24600,42,14,20,0.0 +24600,6,25,21,0.0 +24600,14,23.25,45,0.0 +24600,56,38,21,0.0 +24600,77,13,49,0.0 +24600,29,123.79,50,0.0 +24600,28,45.6,45,0.0 +24600,58,13.25,39,0.0 +24600,35,18,7,0.0 +24600,19,9.2,42,0.0 +24600,36,19,22,0.0 +24600,21,10,45,0.0 +24600,51,53,27,0.0 +24600,30,25.89,33,0.0 +24600,53,32.8,8,0.0 +24600,71,21.5,31,0.0 +24600,26,31.23,7,0.0 +24600,23,9,22,0.0 +24600,15,15.5,35,0.0 +24600,59,55,34,0.0 +24600,20,81,17,0.0 +24600,2,19,35,0.0 +24600,10,31,39,0.0 +24600,75,7.75,18,0.0 +24600,18,62.5,30,0.0 +24600,72,34.8,20,0.0 +24600,5,21.35,40,0.0 +24600,8,40,43,0.0 +24600,43,46,19,0.0 +24600,76,18,28,0.0 +24600,47,9.5,26,0.0 +24600,46,12,29,0.0 +24600,60,34,39,0.0 +24600,61,28.5,18,0.0 +24600,7,30,50,0.0 +24600,12,38,16,0.0 +24600,63,43.9,4,0.0 +24601,37,26,4,0.0 +24601,65,21.05,33,0.0 +24601,2,19,8,0.0 +24601,75,7.75,13,0.0 +24601,45,9.5,5,0.0 +24601,32,32,50,0.0 +24601,71,21.5,2,0.0 +24601,28,45.6,15,0.0 +24601,61,28.5,31,0.0 +24601,13,6,1,0.0 +24601,41,9.65,42,0.0 +24601,39,18,32,0.0 +24601,66,17,22,0.0 +24601,29,123.79,40,0.0 +24601,64,33.25,25,0.0 +24601,18,62.5,15,0.0 +24601,1,18,17,0.0 +24601,46,12,30,0.0 +24601,7,30,24,0.0 +24601,70,15,33,0.0 +24601,51,53,33,0.0 +24601,12,38,6,0.0 +24601,68,12.5,28,0.0 +24601,72,34.8,36,0.0 +24601,9,97,6,0.0 +24601,52,7,30,0.0 +24601,10,31,38,0.0 +24601,15,15.5,12,0.0 +24601,58,13.25,20,0.0 +24601,5,21.35,38,0.0 +24601,35,18,19,0.0 +24601,22,21,37,0.0 +24601,38,263.5,49,0.0 +24601,60,34,41,0.0 +24601,50,16.25,9,0.0 +24601,54,7.45,25,0.0 +24601,24,4.5,9,0.0 +24601,74,10,50,0.0 +24601,8,40,33,0.0 +24601,43,46,49,0.0 +24601,36,19,11,0.0 +24601,17,39,19,0.0 +24601,11,21,49,0.0 +24601,53,32.8,44,0.0 +24601,55,24,10,0.0 +24601,49,20,39,0.0 +24601,26,31.23,9,0.0 +24601,33,2.5,22,0.0 +24601,62,49.3,47,0.0 +24601,30,25.89,38,0.0 +24601,77,13,19,0.0 +24601,73,15,47,0.0 +24601,57,19.5,27,0.0 +24602,2,19,45,0.0 +24602,65,21.05,19,0.0 +24602,21,10,7,0.0 +24602,73,15,38,0.0 +24602,28,45.6,33,0.0 +24602,16,17.45,50,0.0 +24602,36,19,37,0.0 +24602,55,24,39,0.0 +24602,59,55,18,0.0 +24602,9,97,37,0.0 +24602,54,7.45,39,0.0 +24602,31,12.5,44,0.0 +24602,12,38,26,0.0 +24602,17,39,40,0.0 +24602,35,18,2,0.0 +24602,58,13.25,34,0.0 +24602,25,14,6,0.0 +24602,13,6,24,0.0 +24602,62,49.3,9,0.0 +24602,66,17,44,0.0 +24602,8,40,35,0.0 +24602,32,32,30,0.0 +24602,74,10,25,0.0 +24602,64,33.25,19,0.0 +24602,19,9.2,24,0.0 +24602,50,16.25,3,0.0 +24602,34,14,9,0.0 +24602,4,22,29,0.0 +24602,49,20,3,0.0 +24602,67,14,26,0.0 +24602,29,123.79,13,0.0 +24602,22,21,27,0.0 +24602,1,18,24,0.0 +24602,60,34,38,0.0 +24602,77,13,31,0.0 +24602,5,21.35,19,0.0 +24602,39,18,35,0.0 +24602,76,18,26,0.0 +24602,43,46,14,0.0 +24603,8,40,20,0.0 +24603,12,38,41,0.0 +24603,69,36,6,0.0 +24603,35,18,34,0.0 +24603,4,22,18,0.0 +24603,25,14,6,0.0 +24603,10,31,24,0.0 +24603,64,33.25,45,0.0 +24603,77,13,16,0.0 +24603,19,9.2,50,0.0 +24603,34,14,44,0.0 +24603,39,18,49,0.0 +24603,74,10,39,0.0 +24603,50,16.25,30,0.0 +24603,11,21,26,0.0 +24603,73,15,20,0.0 +24603,37,26,6,0.0 +24603,20,81,23,0.0 +24603,57,19.5,8,0.0 +24603,36,19,37,0.0 +24603,27,43.9,48,0.0 +24603,1,18,32,0.0 +24603,70,15,39,0.0 +24603,24,4.5,50,0.0 +24603,14,23.25,21,0.0 +24603,71,21.5,21,0.0 +24603,22,21,13,0.0 +24603,41,9.65,34,0.0 +24603,31,12.5,28,0.0 +24603,58,13.25,37,0.0 +24603,72,34.8,32,0.0 +24603,33,2.5,45,0.0 +24603,44,19.45,38,0.0 +24603,30,25.89,20,0.0 +24603,43,46,25,0.0 +24603,65,21.05,2,0.0 +24603,15,15.5,15,0.0 +24603,61,28.5,47,0.0 +24603,66,17,25,0.0 +24603,6,25,22,0.0 +24603,26,31.23,28,0.0 +24603,42,14,18,0.0 +24603,47,9.5,25,0.0 +24603,56,38,5,0.0 +24603,9,97,31,0.0 +24603,13,6,25,0.0 +24603,2,19,42,0.0 +24603,29,123.79,48,0.0 +24603,17,39,36,0.0 +24603,53,32.8,34,0.0 +24603,54,7.45,25,0.0 +24603,76,18,41,0.0 +24603,52,7,1,0.0 +24603,48,12.75,31,0.0 +24603,51,53,2,0.0 +24603,68,12.5,30,0.0 +24603,40,18.4,9,0.0 +24603,7,30,43,0.0 +24603,18,62.5,41,0.0 +24603,32,32,46,0.0 +24603,67,14,45,0.0 +24603,63,43.9,42,0.0 +24603,60,34,30,0.0 +24603,5,21.35,6,0.0 +24603,49,20,3,0.0 +24603,46,12,46,0.0 +24603,3,10,48,0.0 +24603,21,10,1,0.0 +24603,38,263.5,11,0.0 +24603,16,17.45,42,0.0 +24603,59,55,26,0.0 +24603,23,9,8,0.0 +24604,18,62.5,25,0.0 +24604,13,6,41,0.0 +24604,72,34.8,47,0.0 +24604,10,31,1,0.0 +24604,2,19,45,0.0 +24604,71,21.5,48,0.0 +24604,21,10,46,0.0 +24604,20,81,23,0.0 +24604,77,13,39,0.0 +24604,40,18.4,21,0.0 +24604,57,19.5,17,0.0 +24604,24,4.5,17,0.0 +24604,5,21.35,33,0.0 +24604,52,7,33,0.0 +24604,67,14,27,0.0 +24604,1,18,49,0.0 +24604,34,14,19,0.0 +24604,7,30,5,0.0 +24604,54,7.45,35,0.0 +24604,60,34,30,0.0 +24604,38,263.5,19,0.0 +24604,70,15,45,0.0 +24604,64,33.25,30,0.0 +24604,56,38,9,0.0 +24604,75,7.75,42,0.0 +24604,35,18,32,0.0 +24605,14,23.25,13,0.0 +24605,19,9.2,11,0.0 +24605,47,9.5,28,0.0 +24605,37,26,48,0.0 +24605,73,15,36,0.0 +24605,75,7.75,36,0.0 +24605,58,13.25,21,0.0 +24605,44,19.45,24,0.0 +24605,55,24,16,0.0 +24605,10,31,25,0.0 +24605,2,19,9,0.0 +24605,50,16.25,10,0.0 +24605,28,45.6,26,0.0 +24605,59,55,2,0.0 +24605,18,62.5,34,0.0 +24605,26,31.23,36,0.0 +24605,39,18,15,0.0 +24605,38,263.5,31,0.0 +24605,20,81,29,0.0 +24605,49,20,44,0.0 +24605,67,14,3,0.0 +24605,62,49.3,27,0.0 +24605,46,12,15,0.0 +24605,53,32.8,37,0.0 +24605,68,12.5,34,0.0 +24605,6,25,49,0.0 +24605,30,25.89,3,0.0 +24605,69,36,43,0.0 +24605,70,15,3,0.0 +24605,1,18,20,0.0 +24605,32,32,5,0.0 +24605,15,15.5,29,0.0 +24605,23,9,29,0.0 +24605,51,53,3,0.0 +24605,11,21,9,0.0 +24605,16,17.45,47,0.0 +24605,27,43.9,20,0.0 +24605,3,10,49,0.0 +24605,60,34,44,0.0 +24605,13,6,26,0.0 +24605,56,38,17,0.0 +24605,25,14,15,0.0 +24605,22,21,22,0.0 +24605,71,21.5,5,0.0 +24605,52,7,9,0.0 +24605,33,2.5,24,0.0 +24605,64,33.25,42,0.0 +24605,17,39,23,0.0 +24605,5,21.35,22,0.0 +24605,34,14,4,0.0 +24605,12,38,8,0.0 +24605,72,34.8,5,0.0 +24606,31,12.5,39,0.0 +24606,3,10,41,0.0 +24606,34,14,22,0.0 +24606,72,34.8,12,0.0 +24606,15,15.5,47,0.0 +24606,51,53,49,0.0 +24606,30,25.89,29,0.0 +24606,56,38,23,0.0 +24606,22,21,48,0.0 +24606,2,19,2,0.0 +24606,48,12.75,35,0.0 +24606,74,10,12,0.0 +24606,77,13,11,0.0 +24606,76,18,22,0.0 +24606,54,7.45,24,0.0 +24606,18,62.5,10,0.0 +24606,13,6,44,0.0 +24606,20,81,42,0.0 +24606,73,15,28,0.0 +24606,19,9.2,11,0.0 +24606,42,14,42,0.0 +24606,14,23.25,45,0.0 +24606,75,7.75,19,0.0 +24606,62,49.3,36,0.0 +24606,38,263.5,6,0.0 +24606,7,30,34,0.0 +24606,25,14,44,0.0 +24606,23,9,43,0.0 +24606,26,31.23,31,0.0 +24606,58,13.25,18,0.0 +24606,70,15,3,0.0 +24606,60,34,31,0.0 +24606,28,45.6,24,0.0 +24606,1,18,30,0.0 +24606,69,36,22,0.0 +24606,55,24,31,0.0 +24606,41,9.65,7,0.0 +24606,47,9.5,8,0.0 +24606,24,4.5,35,0.0 +24606,63,43.9,31,0.0 +24606,53,32.8,18,0.0 +24606,61,28.5,31,0.0 +24606,43,46,14,0.0 +24606,68,12.5,43,0.0 +24606,27,43.9,1,0.0 +24606,65,21.05,22,0.0 +24606,17,39,35,0.0 +24606,10,31,20,0.0 +24606,50,16.25,9,0.0 +24606,5,21.35,49,0.0 +24606,32,32,44,0.0 +24606,67,14,21,0.0 +24606,37,26,12,0.0 +24606,9,97,25,0.0 +24606,36,19,21,0.0 +24606,49,20,1,0.0 +24606,4,22,15,0.0 +24606,12,38,9,0.0 +24606,29,123.79,48,0.0 +24606,64,33.25,45,0.0 +24606,6,25,18,0.0 +24606,35,18,43,0.0 +24606,39,18,16,0.0 +24606,57,19.5,31,0.0 +24606,44,19.45,28,0.0 +24606,46,12,43,0.0 +24606,21,10,30,0.0 +24606,11,21,45,0.0 +24606,66,17,10,0.0 +24606,16,17.45,33,0.0 +24607,58,13.25,28,0.0 +24607,2,19,11,0.0 +24607,70,15,28,0.0 +24607,19,9.2,10,0.0 +24607,37,26,14,0.0 +24607,75,7.75,49,0.0 +24607,14,23.25,20,0.0 +24607,49,20,6,0.0 +24607,8,40,44,0.0 +24607,76,18,28,0.0 +24607,47,9.5,32,0.0 +24607,35,18,22,0.0 +24607,12,38,12,0.0 +24607,31,12.5,15,0.0 +24607,64,33.25,10,0.0 +24607,51,53,26,0.0 +24607,74,10,6,0.0 +24608,59,55,41,0.0 +24608,55,24,39,0.0 +24608,38,263.5,24,0.0 +24608,24,4.5,20,0.0 +24608,34,14,40,0.0 +24608,60,34,7,0.0 +24608,30,25.89,12,0.0 +24608,69,36,39,0.0 +24608,11,21,45,0.0 +24608,8,40,48,0.0 +24608,43,46,20,0.0 +24608,10,31,3,0.0 +24608,73,15,35,0.0 +24608,7,30,17,0.0 +24608,53,32.8,45,0.0 +24608,48,12.75,14,0.0 +24608,22,21,31,0.0 +24608,77,13,4,0.0 +24608,58,13.25,25,0.0 +24608,56,38,19,0.0 +24608,6,25,30,0.0 +24608,74,10,9,0.0 +24608,2,19,24,0.0 +24608,65,21.05,38,0.0 +24608,76,18,44,0.0 +24608,40,18.4,31,0.0 +24608,31,12.5,31,0.0 +24608,19,9.2,43,0.0 +24608,4,22,42,0.0 +24608,33,2.5,49,0.0 +24608,42,14,28,0.0 +24608,32,32,17,0.0 +24608,64,33.25,42,0.0 +24608,35,18,46,0.0 +24608,23,9,8,0.0 +24608,1,18,19,0.0 +24608,28,45.6,9,0.0 +24608,41,9.65,36,0.0 +24608,62,49.3,49,0.0 +24608,63,43.9,47,0.0 +24608,39,18,38,0.0 +24608,37,26,28,0.0 +24608,71,21.5,3,0.0 +24608,25,14,4,0.0 +24608,18,62.5,16,0.0 +24608,36,19,18,0.0 +24608,51,53,26,0.0 +24608,9,97,12,0.0 +24608,57,19.5,14,0.0 +24608,13,6,40,0.0 +24608,21,10,48,0.0 +24608,61,28.5,36,0.0 +24608,20,81,11,0.0 +24608,68,12.5,38,0.0 +24608,16,17.45,11,0.0 +24608,17,39,12,0.0 +24608,66,17,41,0.0 +24608,15,15.5,8,0.0 +24608,75,7.75,30,0.0 +24608,44,19.45,7,0.0 +24608,70,15,43,0.0 +24608,14,23.25,26,0.0 +24608,67,14,34,0.0 +24608,29,123.79,39,0.0 +24608,47,9.5,9,0.0 +24608,46,12,38,0.0 +24609,11,21,2,0.0 +24609,12,38,47,0.0 +24609,49,20,8,0.0 +24609,64,33.25,32,0.0 +24609,68,12.5,23,0.0 +24609,28,45.6,20,0.0 +24609,73,15,9,0.0 +24609,52,7,34,0.0 +24609,25,14,12,0.0 +24609,58,13.25,1,0.0 +24609,47,9.5,47,0.0 +24609,13,6,22,0.0 +24609,67,14,19,0.0 +24609,61,28.5,24,0.0 +24609,21,10,29,0.0 +24609,55,24,48,0.0 +24609,34,14,3,0.0 +24609,66,17,47,0.0 +24609,76,18,6,0.0 +24609,69,36,3,0.0 +24609,24,4.5,8,0.0 +24609,8,40,4,0.0 +24609,53,32.8,22,0.0 +24609,50,16.25,33,0.0 +24609,38,263.5,46,0.0 +24609,51,53,49,0.0 +24609,16,17.45,25,0.0 +24609,44,19.45,11,0.0 +24609,22,21,39,0.0 +24609,4,22,22,0.0 +24609,1,18,49,0.0 +24609,46,12,19,0.0 +24610,74,10,13,0.0 +24610,76,18,27,0.0 +24610,4,22,40,0.0 +24610,19,9.2,42,0.0 +24610,48,12.75,3,0.0 +24610,61,28.5,9,0.0 +24610,67,14,30,0.0 +24610,14,23.25,12,0.0 +24610,3,10,22,0.0 +24610,29,123.79,24,0.0 +24610,40,18.4,11,0.0 +24610,50,16.25,36,0.0 +24610,63,43.9,25,0.0 +24610,31,12.5,35,0.0 +24610,16,17.45,36,0.0 +24610,32,32,21,0.0 +24610,45,9.5,4,0.0 +24610,49,20,39,0.0 +24610,24,4.5,7,0.0 +24610,1,18,4,0.0 +24610,9,97,34,0.0 +24610,57,19.5,30,0.0 +24610,23,9,17,0.0 +24610,27,43.9,25,0.0 +24610,6,25,46,0.0 +24610,10,31,23,0.0 +24610,36,19,25,0.0 +24610,39,18,40,0.0 +24610,71,21.5,5,0.0 +24610,15,15.5,26,0.0 +24610,30,25.89,23,0.0 +24610,43,46,10,0.0 +24610,44,19.45,10,0.0 +24610,26,31.23,29,0.0 +24610,70,15,18,0.0 +24610,55,24,37,0.0 +24610,25,14,13,0.0 +24610,2,19,20,0.0 +24610,72,34.8,32,0.0 +24610,22,21,16,0.0 +24610,20,81,22,0.0 +24610,33,2.5,18,0.0 +24610,58,13.25,26,0.0 +24610,38,263.5,16,0.0 +24610,18,62.5,17,0.0 +24611,62,49.3,10,0.0 +24611,74,10,2,0.0 +24611,70,15,35,0.0 +24611,15,15.5,31,0.0 +24611,24,4.5,38,0.0 +24611,45,9.5,35,0.0 +24611,9,97,27,0.0 +24611,5,21.35,48,0.0 +24611,10,31,35,0.0 +24611,14,23.25,18,0.0 +24611,54,7.45,35,0.0 +24611,42,14,20,0.0 +24611,35,18,6,0.0 +24611,77,13,1,0.0 +24611,59,55,15,0.0 +24611,46,12,2,0.0 +24611,76,18,40,0.0 +24611,36,19,50,0.0 +24611,26,31.23,5,0.0 +24611,47,9.5,11,0.0 +24611,68,12.5,31,0.0 +24611,21,10,31,0.0 +24611,16,17.45,6,0.0 +24611,27,43.9,50,0.0 +24611,58,13.25,44,0.0 +24611,48,12.75,3,0.0 +24611,39,18,16,0.0 +24611,37,26,47,0.0 +24611,69,36,38,0.0 +24611,43,46,12,0.0 +24611,2,19,7,0.0 +24611,11,21,49,0.0 +24611,29,123.79,15,0.0 +24611,65,21.05,40,0.0 +24611,44,19.45,43,0.0 +24611,13,6,33,0.0 +24611,23,9,26,0.0 +24611,38,263.5,6,0.0 +24611,19,9.2,47,0.0 +24611,20,81,50,0.0 +24611,6,25,17,0.0 +24611,1,18,50,0.0 +24611,31,12.5,37,0.0 +24611,63,43.9,11,0.0 +24611,34,14,43,0.0 +24611,12,38,48,0.0 +24611,28,45.6,6,0.0 +24611,8,40,32,0.0 +24611,50,16.25,2,0.0 +24611,53,32.8,18,0.0 +24611,17,39,22,0.0 +24611,22,21,44,0.0 +24611,67,14,47,0.0 +24611,52,7,32,0.0 +24611,75,7.75,46,0.0 +24611,56,38,20,0.0 +24611,73,15,41,0.0 +24611,40,18.4,30,0.0 +24611,71,21.5,21,0.0 +24611,33,2.5,33,0.0 +24611,72,34.8,31,0.0 +24611,55,24,27,0.0 +24611,30,25.89,8,0.0 +24611,4,22,5,0.0 +24611,32,32,16,0.0 +24611,60,34,5,0.0 +24611,61,28.5,14,0.0 +24611,7,30,18,0.0 +24611,49,20,25,0.0 +24611,64,33.25,18,0.0 +24611,25,14,14,0.0 +24611,66,17,45,0.0 +24611,18,62.5,44,0.0 +24611,3,10,44,0.0 +24611,41,9.65,24,0.0 +24611,51,53,2,0.0 +24611,57,19.5,26,0.0 +24612,23,9,2,0.0 +24612,15,15.5,11,0.0 +24612,27,43.9,4,0.0 +24612,30,25.89,42,0.0 +24612,31,12.5,24,0.0 +24613,11,21,6,0.0 +24613,35,18,20,0.0 +24613,24,4.5,5,0.0 +24613,9,97,12,0.0 +24613,63,43.9,38,0.0 +24613,73,15,46,0.0 +24613,14,23.25,19,0.0 +24613,34,14,29,0.0 +24613,75,7.75,24,0.0 +24613,62,49.3,38,0.0 +24613,23,9,37,0.0 +24613,12,38,40,0.0 +24613,77,13,45,0.0 +24613,28,45.6,13,0.0 +24613,15,15.5,14,0.0 +24613,5,21.35,25,0.0 +24613,70,15,5,0.0 +24613,30,25.89,7,0.0 +24613,10,31,13,0.0 +24613,44,19.45,30,0.0 +24613,66,17,32,0.0 +24613,61,28.5,23,0.0 +24613,27,43.9,40,0.0 +24613,29,123.79,49,0.0 +24613,19,9.2,4,0.0 +24613,54,7.45,41,0.0 +24613,38,263.5,48,0.0 +24613,17,39,13,0.0 +24613,47,9.5,15,0.0 +24613,60,34,12,0.0 +24613,53,32.8,43,0.0 +24613,52,7,11,0.0 +24613,48,12.75,11,0.0 +24613,64,33.25,32,0.0 +24613,33,2.5,32,0.0 +24613,13,6,39,0.0 +24613,56,38,47,0.0 +24613,71,21.5,20,0.0 +24613,16,17.45,49,0.0 +24614,62,49.3,10,0.0 +24614,2,19,34,0.0 +24614,55,24,7,0.0 +24614,73,15,8,0.0 +24614,30,25.89,37,0.0 +24614,74,10,41,0.0 +24614,39,18,9,0.0 +24614,58,13.25,10,0.0 +24614,59,55,42,0.0 +24614,24,4.5,18,0.0 +24614,18,62.5,36,0.0 +24614,46,12,19,0.0 +24614,15,15.5,36,0.0 +24614,44,19.45,10,0.0 +24614,70,15,16,0.0 +24614,19,9.2,35,0.0 +24614,72,34.8,12,0.0 +24614,26,31.23,13,0.0 +24614,1,18,50,0.0 +24614,9,97,40,0.0 +24614,34,14,2,0.0 +24614,63,43.9,22,0.0 +24614,43,46,9,0.0 +24614,57,19.5,38,0.0 +24614,68,12.5,49,0.0 +24614,67,14,36,0.0 +24614,47,9.5,22,0.0 +24614,64,33.25,19,0.0 +24614,38,263.5,17,0.0 +24614,12,38,6,0.0 +24614,8,40,44,0.0 +24614,27,43.9,40,0.0 +24614,51,53,36,0.0 +24614,69,36,12,0.0 +24614,17,39,45,0.0 +24614,42,14,35,0.0 +24614,50,16.25,9,0.0 +24614,11,21,3,0.0 +24614,7,30,35,0.0 +24614,14,23.25,27,0.0 +24614,4,22,49,0.0 +24614,66,17,22,0.0 +24614,48,12.75,18,0.0 +24614,28,45.6,21,0.0 +24614,71,21.5,29,0.0 +24614,41,9.65,17,0.0 +24614,31,12.5,41,0.0 +24614,20,81,48,0.0 +24614,49,20,32,0.0 +24614,10,31,29,0.0 +24614,3,10,44,0.0 +24614,61,28.5,18,0.0 +24614,54,7.45,19,0.0 +24614,75,7.75,32,0.0 +24614,21,10,45,0.0 +24614,52,7,30,0.0 +24614,13,6,8,0.0 +24614,56,38,29,0.0 +24614,60,34,49,0.0 +24614,29,123.79,45,0.0 +24614,40,18.4,18,0.0 +24614,37,26,50,0.0 +24614,23,9,18,0.0 +24614,35,18,46,0.0 +24614,76,18,32,0.0 +24614,32,32,29,0.0 +24614,45,9.5,45,0.0 +24614,33,2.5,31,0.0 +24614,25,14,44,0.0 +24614,53,32.8,5,0.0 +24614,6,25,12,0.0 +24614,22,21,31,0.0 +24614,77,13,2,0.0 +24615,75,7.75,26,0.0 +24615,52,7,1,0.0 +24615,30,25.89,4,0.0 +24615,10,31,21,0.0 +24615,68,12.5,12,0.0 +24615,43,46,13,0.0 +24615,19,9.2,28,0.0 +24615,12,38,7,0.0 +24615,63,43.9,1,0.0 +24615,24,4.5,20,0.0 +24615,4,22,18,0.0 +24615,41,9.65,21,0.0 +24615,21,10,48,0.0 +24615,60,34,16,0.0 +24615,54,7.45,7,0.0 +24615,32,32,47,0.0 +24615,51,53,12,0.0 +24615,31,12.5,8,0.0 +24615,64,33.25,40,0.0 +24615,47,9.5,37,0.0 +24615,42,14,21,0.0 +24615,69,36,28,0.0 +24615,62,49.3,36,0.0 +24615,67,14,33,0.0 +24616,76,18,34,0.0 +24617,5,21.35,8,0.0 +24617,10,31,3,0.0 +24617,19,9.2,42,0.0 +24617,50,16.25,41,0.0 +24617,77,13,6,0.0 +24617,15,15.5,31,0.0 +24617,24,4.5,26,0.0 +24617,40,18.4,34,0.0 +24617,29,123.79,17,0.0 +24617,25,14,18,0.0 +24617,51,53,45,0.0 +24617,45,9.5,15,0.0 +24617,74,10,32,0.0 +24617,52,7,45,0.0 +24617,61,28.5,4,0.0 +24617,56,38,39,0.0 +24617,55,24,48,0.0 +24617,66,17,33,0.0 +24617,59,55,36,0.0 +24617,68,12.5,31,0.0 +24617,36,19,31,0.0 +24617,64,33.25,31,0.0 +24617,70,15,37,0.0 +24617,11,21,12,0.0 +24617,26,31.23,44,0.0 +24617,20,81,41,0.0 +24617,31,12.5,40,0.0 +24617,21,10,45,0.0 +24617,38,263.5,44,0.0 +24617,4,22,43,0.0 +24617,14,23.25,2,0.0 +24617,8,40,24,0.0 +24617,75,7.75,32,0.0 +24617,76,18,42,0.0 +24617,17,39,28,0.0 +24617,23,9,21,0.0 +24617,43,46,25,0.0 +24617,27,43.9,33,0.0 +24617,1,18,26,0.0 +24617,35,18,14,0.0 +24617,49,20,24,0.0 +24617,30,25.89,25,0.0 +24617,9,97,26,0.0 +24617,28,45.6,33,0.0 +24617,41,9.65,23,0.0 +24617,69,36,28,0.0 +24617,22,21,49,0.0 +24617,58,13.25,11,0.0 +24618,33,2.5,33,0.0 +24618,74,10,43,0.0 +24618,58,13.25,8,0.0 +24618,35,18,43,0.0 +24618,34,14,8,0.0 +24618,13,6,19,0.0 +24618,46,12,38,0.0 +24618,44,19.45,49,0.0 +24618,62,49.3,10,0.0 +24618,36,19,39,0.0 +24618,37,26,41,0.0 +24618,1,18,30,0.0 +24618,42,14,44,0.0 +24618,2,19,5,0.0 +24618,18,62.5,23,0.0 +24618,68,12.5,33,0.0 +24618,71,21.5,2,0.0 +24618,41,9.65,25,0.0 +24618,38,263.5,9,0.0 +24618,43,46,20,0.0 +24618,12,38,4,0.0 +24618,8,40,8,0.0 +24618,51,53,5,0.0 +24618,70,15,37,0.0 +24618,11,21,16,0.0 +24618,3,10,14,0.0 +24618,57,19.5,21,0.0 +24618,53,32.8,30,0.0 +24618,17,39,16,0.0 +24618,69,36,13,0.0 +24618,23,9,14,0.0 +24618,19,9.2,13,0.0 +24618,55,24,16,0.0 +24618,29,123.79,50,0.0 +24618,59,55,7,0.0 +24618,21,10,20,0.0 +24618,61,28.5,49,0.0 +24618,47,9.5,46,0.0 +24618,9,97,1,0.0 +24618,73,15,16,0.0 +24618,30,25.89,30,0.0 +24619,21,10,38,0.0 +24619,25,14,29,0.0 +24619,39,18,27,0.0 +24619,14,23.25,20,0.0 +24619,38,263.5,38,0.0 +24619,66,17,19,0.0 +24620,63,43.9,9,0.0 +24620,18,62.5,36,0.0 +24620,59,55,38,0.0 +24620,64,33.25,22,0.0 +24620,28,45.6,32,0.0 +24620,3,10,5,0.0 +24620,34,14,21,0.0 +24620,29,123.79,50,0.0 +24620,6,25,24,0.0 +24620,44,19.45,47,0.0 +24620,25,14,1,0.0 +24620,27,43.9,33,0.0 +24620,24,4.5,14,0.0 +24620,69,36,19,0.0 +24620,76,18,16,0.0 +24620,57,19.5,23,0.0 +24620,5,21.35,9,0.0 +24620,16,17.45,35,0.0 +24620,26,31.23,6,0.0 +24620,9,97,37,0.0 +24620,71,21.5,24,0.0 +24620,54,7.45,41,0.0 +24620,67,14,21,0.0 +24620,73,15,38,0.0 +24620,8,40,42,0.0 +24620,14,23.25,48,0.0 +24620,70,15,9,0.0 +24620,2,19,44,0.0 +24620,56,38,46,0.0 +24620,53,32.8,17,0.0 +24620,75,7.75,24,0.0 +24620,35,18,43,0.0 +24620,49,20,3,0.0 +24620,22,21,18,0.0 +24620,10,31,44,0.0 +24620,72,34.8,43,0.0 +24620,20,81,11,0.0 +24621,71,21.5,6,0.0 +24621,35,18,14,0.0 +24621,39,18,15,0.0 +24621,13,6,33,0.0 +24621,75,7.75,50,0.0 +24621,6,25,15,0.0 +24621,64,33.25,11,0.0 +24621,19,9.2,46,0.0 +24621,5,21.35,17,0.0 +24621,66,17,20,0.0 +24621,62,49.3,22,0.0 +24621,9,97,45,0.0 +24621,63,43.9,22,0.0 +24621,32,32,40,0.0 +24621,47,9.5,42,0.0 +24621,18,62.5,30,0.0 +24621,40,18.4,11,0.0 +24621,25,14,42,0.0 +24621,4,22,28,0.0 +24621,70,15,31,0.0 +24621,12,38,5,0.0 +24621,7,30,20,0.0 +24621,59,55,8,0.0 +24621,60,34,12,0.0 +24621,1,18,20,0.0 +24621,28,45.6,2,0.0 +24621,37,26,20,0.0 +24621,57,19.5,6,0.0 +24621,69,36,32,0.0 +24621,3,10,26,0.0 +24621,14,23.25,4,0.0 +24621,36,19,32,0.0 +24621,33,2.5,3,0.0 +24621,16,17.45,43,0.0 +24621,22,21,13,0.0 +24621,41,9.65,11,0.0 +24621,10,31,35,0.0 +24621,72,34.8,42,0.0 +24621,61,28.5,48,0.0 +24621,15,15.5,20,0.0 +24621,34,14,37,0.0 +24621,11,21,5,0.0 +24621,30,25.89,4,0.0 +24621,67,14,35,0.0 +24621,48,12.75,13,0.0 +24621,31,12.5,30,0.0 +24621,21,10,45,0.0 +24621,29,123.79,34,0.0 +24621,45,9.5,34,0.0 +24621,50,16.25,13,0.0 +24621,56,38,23,0.0 +24621,74,10,38,0.0 +24621,53,32.8,3,0.0 +24621,44,19.45,47,0.0 +24621,43,46,31,0.0 +24621,8,40,15,0.0 +24621,51,53,17,0.0 +24621,68,12.5,19,0.0 +24621,54,7.45,43,0.0 +24621,24,4.5,15,0.0 +24621,2,19,25,0.0 +24621,26,31.23,27,0.0 +24621,46,12,38,0.0 +24621,58,13.25,9,0.0 +24621,23,9,18,0.0 +24622,30,25.89,12,0.0 +24622,57,19.5,11,0.0 +24622,32,32,37,0.0 +24622,70,15,17,0.0 +24622,60,34,50,0.0 +24622,42,14,28,0.0 +24622,10,31,45,0.0 +24622,38,263.5,16,0.0 +24622,22,21,37,0.0 +24622,51,53,44,0.0 +24622,58,13.25,50,0.0 +24622,28,45.6,44,0.0 +24622,76,18,7,0.0 +24622,77,13,10,0.0 +24622,34,14,43,0.0 +24622,48,12.75,34,0.0 +24622,24,4.5,13,0.0 +24622,69,36,34,0.0 +24622,56,38,13,0.0 +24622,25,14,26,0.0 +24622,75,7.75,30,0.0 +24622,43,46,25,0.0 +24622,37,26,29,0.0 +24622,2,19,32,0.0 +24622,20,81,19,0.0 +24622,14,23.25,5,0.0 +24622,46,12,5,0.0 +24622,74,10,16,0.0 +24622,11,21,15,0.0 +24622,35,18,37,0.0 +24622,18,62.5,14,0.0 +24622,16,17.45,4,0.0 +24623,50,16.25,7,0.0 +24623,27,43.9,22,0.0 +24623,48,12.75,18,0.0 +24623,67,14,19,0.0 +24623,49,20,44,0.0 +24623,44,19.45,6,0.0 +24623,25,14,30,0.0 +24623,51,53,13,0.0 +24623,43,46,28,0.0 +24623,56,38,28,0.0 +24623,17,39,43,0.0 +24623,11,21,9,0.0 +24623,2,19,47,0.0 +24623,35,18,5,0.0 +24623,20,81,48,0.0 +24623,18,62.5,42,0.0 +24623,77,13,26,0.0 +24623,53,32.8,4,0.0 +24623,66,17,34,0.0 +24623,12,38,11,0.0 +24623,10,31,18,0.0 +24623,8,40,6,0.0 +24623,46,12,21,0.0 +24623,75,7.75,20,0.0 +24623,5,21.35,18,0.0 +24623,72,34.8,11,0.0 +24623,55,24,37,0.0 +24623,63,43.9,6,0.0 +24623,41,9.65,39,0.0 +24623,14,23.25,46,0.0 +24623,23,9,28,0.0 +24623,1,18,49,0.0 +24623,37,26,26,0.0 +24623,29,123.79,6,0.0 +24623,69,36,18,0.0 +24623,9,97,48,0.0 +24623,31,12.5,8,0.0 +24623,70,15,34,0.0 +24623,28,45.6,27,0.0 +24623,36,19,48,0.0 +24623,30,25.89,33,0.0 +24623,61,28.5,20,0.0 +24623,59,55,7,0.0 +24623,42,14,39,0.0 +24623,71,21.5,26,0.0 +24623,68,12.5,49,0.0 +24623,13,6,15,0.0 +24623,39,18,2,0.0 +24623,22,21,32,0.0 +24623,6,25,14,0.0 +24623,54,7.45,12,0.0 +24623,16,17.45,14,0.0 +24623,74,10,12,0.0 +24624,69,36,4,0.0 +24624,49,20,20,0.0 +24624,51,53,25,0.0 +24624,47,9.5,11,0.0 +24624,63,43.9,11,0.0 +24624,41,9.65,49,0.0 +24624,66,17,41,0.0 +24624,15,15.5,37,0.0 +24624,46,12,32,0.0 +24624,43,46,16,0.0 +24624,3,10,6,0.0 +24624,40,18.4,19,0.0 +24624,39,18,2,0.0 +24624,38,263.5,40,0.0 +24624,59,55,28,0.0 +24624,11,21,39,0.0 +24624,57,19.5,40,0.0 +24624,12,38,41,0.0 +24624,64,33.25,15,0.0 +24624,18,62.5,20,0.0 +24624,62,49.3,27,0.0 +24624,70,15,1,0.0 +24624,28,45.6,24,0.0 +24624,45,9.5,10,0.0 +24624,19,9.2,34,0.0 +24624,72,34.8,35,0.0 +24624,5,21.35,50,0.0 +24624,55,24,32,0.0 +24624,21,10,27,0.0 +24624,22,21,6,0.0 +24624,61,28.5,5,0.0 +24624,53,32.8,26,0.0 +24624,76,18,19,0.0 +24624,6,25,6,0.0 +24625,4,22,18,0.0 +24625,1,18,6,0.0 +24625,62,49.3,43,0.0 +24625,5,21.35,45,0.0 +24625,18,62.5,2,0.0 +24625,43,46,41,0.0 +24625,7,30,47,0.0 +24625,64,33.25,34,0.0 +24625,53,32.8,28,0.0 +24625,67,14,3,0.0 +24625,56,38,26,0.0 +24625,66,17,18,0.0 +24625,32,32,16,0.0 +24625,24,4.5,41,0.0 +24625,75,7.75,3,0.0 +24625,31,12.5,42,0.0 +24625,39,18,21,0.0 +24625,71,21.5,33,0.0 +24625,25,14,42,0.0 +24625,41,9.65,5,0.0 +24625,8,40,12,0.0 +24625,68,12.5,9,0.0 +24625,45,9.5,50,0.0 +24625,77,13,43,0.0 +24625,47,9.5,46,0.0 +24625,22,21,38,0.0 +24625,65,21.05,16,0.0 +24625,61,28.5,42,0.0 +24625,11,21,42,0.0 +24625,37,26,28,0.0 +24625,34,14,11,0.0 +24625,19,9.2,11,0.0 +24625,44,19.45,28,0.0 +24625,27,43.9,33,0.0 +24625,59,55,44,0.0 +24625,6,25,41,0.0 +24626,65,21.05,4,0.0 +24626,23,9,43,0.0 +24626,41,9.65,44,0.0 +24626,35,18,37,0.0 +24626,22,21,36,0.0 +24626,56,38,27,0.0 +24626,32,32,23,0.0 +24626,12,38,2,0.0 +24626,66,17,48,0.0 +24626,15,15.5,4,0.0 +24626,31,12.5,4,0.0 +24626,40,18.4,2,0.0 +24626,71,21.5,48,0.0 +24626,77,13,34,0.0 +24626,25,14,6,0.0 +24626,1,18,1,0.0 +24626,70,15,19,0.0 +24626,62,49.3,35,0.0 +24626,73,15,39,0.0 +24626,17,39,44,0.0 +24626,74,10,37,0.0 +24626,18,62.5,37,0.0 +24626,8,40,43,0.0 +24626,6,25,40,0.0 +24626,29,123.79,38,0.0 +24626,55,24,12,0.0 +24626,49,20,32,0.0 +24626,33,2.5,26,0.0 +24626,9,97,36,0.0 +24626,14,23.25,35,0.0 +24626,20,81,28,0.0 +24626,5,21.35,38,0.0 +24626,42,14,39,0.0 +24626,76,18,19,0.0 +24626,30,25.89,25,0.0 +24626,47,9.5,6,0.0 +24626,69,36,13,0.0 +24626,11,21,11,0.0 +24626,19,9.2,19,0.0 +24626,52,7,49,0.0 +24626,10,31,16,0.0 +24626,50,16.25,32,0.0 +24626,44,19.45,29,0.0 +24626,21,10,38,0.0 +24626,16,17.45,9,0.0 +24626,24,4.5,22,0.0 +24626,51,53,35,0.0 +24626,61,28.5,28,0.0 +24626,60,34,42,0.0 +24626,7,30,27,0.0 +24626,57,19.5,11,0.0 +24626,3,10,41,0.0 +24626,43,46,37,0.0 +24626,28,45.6,42,0.0 +24627,57,19.5,34,0.0 +24627,36,19,11,0.0 +24627,76,18,7,0.0 +24627,1,18,36,0.0 +24627,53,32.8,17,0.0 +24627,50,16.25,35,0.0 +24627,48,12.75,33,0.0 +24627,56,38,20,0.0 +24627,4,22,24,0.0 +24627,60,34,41,0.0 +24627,69,36,2,0.0 +24627,59,55,26,0.0 +24627,77,13,36,0.0 +24627,70,15,20,0.0 +24627,29,123.79,39,0.0 +24627,24,4.5,35,0.0 +24627,20,81,32,0.0 +24627,40,18.4,42,0.0 +24627,17,39,10,0.0 +24627,67,14,17,0.0 +24627,49,20,41,0.0 +24627,14,23.25,9,0.0 +24627,7,30,23,0.0 +24627,51,53,9,0.0 +24627,18,62.5,14,0.0 +24627,10,31,46,0.0 +24627,9,97,24,0.0 +24627,65,21.05,12,0.0 +24627,13,6,18,0.0 +24628,20,81,13,0.0 +24628,74,10,8,0.0 +24628,63,43.9,46,0.0 +24628,5,21.35,18,0.0 +24628,68,12.5,40,0.0 +24628,70,15,28,0.0 +24628,30,25.89,40,0.0 +24628,17,39,45,0.0 +24628,38,263.5,3,0.0 +24628,42,14,41,0.0 +24628,39,18,28,0.0 +24628,55,24,49,0.0 +24628,61,28.5,16,0.0 +24628,36,19,11,0.0 +24628,54,7.45,21,0.0 +24628,75,7.75,28,0.0 +24628,16,17.45,34,0.0 +24628,76,18,4,0.0 +24628,59,55,47,0.0 +24628,48,12.75,14,0.0 +24628,60,34,43,0.0 +24628,31,12.5,23,0.0 +24628,29,123.79,31,0.0 +24628,40,18.4,37,0.0 +24628,58,13.25,46,0.0 +24628,50,16.25,28,0.0 +24628,18,62.5,41,0.0 +24628,43,46,50,0.0 +24628,67,14,46,0.0 +24628,51,53,15,0.0 +24628,73,15,35,0.0 +24628,3,10,42,0.0 +24628,69,36,48,0.0 +24628,44,19.45,24,0.0 +24628,7,30,7,0.0 +24628,6,25,37,0.0 +24628,32,32,21,0.0 +24628,45,9.5,9,0.0 +24628,25,14,47,0.0 +24628,11,21,20,0.0 +24628,8,40,20,0.0 +24628,52,7,31,0.0 +24628,57,19.5,16,0.0 +24628,1,18,20,0.0 +24628,72,34.8,40,0.0 +24628,37,26,6,0.0 +24628,41,9.65,2,0.0 +24628,19,9.2,1,0.0 +24628,22,21,27,0.0 +24628,14,23.25,26,0.0 +24628,26,31.23,24,0.0 +24628,64,33.25,13,0.0 +24628,10,31,5,0.0 +24628,77,13,2,0.0 +24628,46,12,20,0.0 +24628,9,97,2,0.0 +24628,66,17,34,0.0 +24629,73,15,26,0.0 +24629,49,20,37,0.0 +24629,19,9.2,29,0.0 +24629,47,9.5,10,0.0 +24629,20,81,8,0.0 +24629,7,30,16,0.0 +24629,3,10,6,0.0 +24629,28,45.6,26,0.0 +24629,74,10,49,0.0 +24629,16,17.45,48,0.0 +24629,66,17,15,0.0 +24629,41,9.65,10,0.0 +24629,48,12.75,35,0.0 +24629,51,53,21,0.0 +24629,25,14,11,0.0 +24629,9,97,13,0.0 +24629,1,18,44,0.0 +24629,31,12.5,23,0.0 +24629,12,38,27,0.0 +24629,71,21.5,36,0.0 +24629,57,19.5,28,0.0 +24629,46,12,6,0.0 +24629,43,46,45,0.0 +24629,40,18.4,30,0.0 +24629,45,9.5,15,0.0 +24629,15,15.5,47,0.0 +24629,32,32,34,0.0 +24629,60,34,8,0.0 +24629,33,2.5,35,0.0 +24629,21,10,29,0.0 +24629,76,18,5,0.0 +24629,4,22,46,0.0 +24629,53,32.8,40,0.0 +24629,13,6,9,0.0 +24629,56,38,11,0.0 +24629,38,263.5,42,0.0 +24629,69,36,47,0.0 +24629,54,7.45,5,0.0 +24629,52,7,20,0.0 +24629,10,31,37,0.0 +24629,11,21,26,0.0 +24630,52,7,42,0.0 +24630,51,53,6,0.0 +24630,57,19.5,30,0.0 +24630,74,10,15,0.0 +24630,44,19.45,50,0.0 +24630,45,9.5,15,0.0 +24630,72,34.8,46,0.0 +24630,49,20,13,0.0 +24630,37,26,40,0.0 +24630,43,46,26,0.0 +24630,47,9.5,24,0.0 +24630,41,9.65,16,0.0 +24630,2,19,28,0.0 +24630,39,18,26,0.0 +24630,28,45.6,11,0.0 +24630,33,2.5,9,0.0 +24630,68,12.5,42,0.0 +24630,36,19,21,0.0 +24630,71,21.5,2,0.0 +24630,48,12.75,12,0.0 +24630,62,49.3,28,0.0 +24630,34,14,13,0.0 +24630,63,43.9,21,0.0 +24630,11,21,1,0.0 +24630,7,30,21,0.0 +24630,70,15,8,0.0 +24630,66,17,15,0.0 +24630,8,40,4,0.0 +24630,56,38,29,0.0 +24630,1,18,42,0.0 +24630,75,7.75,11,0.0 +24630,30,25.89,37,0.0 +24630,20,81,22,0.0 +24630,31,12.5,30,0.0 +24630,53,32.8,9,0.0 +24630,18,62.5,42,0.0 +24630,59,55,19,0.0 +24630,50,16.25,48,0.0 +24630,38,263.5,14,0.0 +24630,6,25,41,0.0 +24630,60,34,33,0.0 +24630,65,21.05,46,0.0 +24630,26,31.23,16,0.0 +24630,35,18,45,0.0 +24630,25,14,23,0.0 +24630,61,28.5,15,0.0 +24630,13,6,35,0.0 +24630,10,31,4,0.0 +24630,73,15,4,0.0 +24630,77,13,11,0.0 +24630,23,9,48,0.0 +24630,5,21.35,4,0.0 +24630,69,36,13,0.0 +24630,27,43.9,1,0.0 +24630,55,24,13,0.0 +24630,40,18.4,37,0.0 +24630,15,15.5,40,0.0 +24630,46,12,38,0.0 +24631,33,2.5,47,0.0 +24631,12,38,14,0.0 +24631,6,25,1,0.0 +24631,55,24,15,0.0 +24631,11,21,47,0.0 +24631,60,34,20,0.0 +24631,72,34.8,5,0.0 +24631,8,40,22,0.0 +24631,10,31,30,0.0 +24631,3,10,49,0.0 +24631,57,19.5,45,0.0 +24631,23,9,25,0.0 +24631,58,13.25,45,0.0 +24631,21,10,18,0.0 +24631,22,21,31,0.0 +24631,69,36,17,0.0 +24631,45,9.5,41,0.0 +24631,61,28.5,32,0.0 +24631,62,49.3,50,0.0 +24632,74,10,16,0.0 +24632,24,4.5,46,0.0 +24632,27,43.9,11,0.0 +24632,17,39,25,0.0 +24632,43,46,8,0.0 +24632,19,9.2,25,0.0 +24632,73,15,28,0.0 +24632,34,14,38,0.0 +24632,1,18,7,0.0 +24632,7,30,4,0.0 +24632,60,34,26,0.0 +24632,67,14,48,0.0 +24632,11,21,26,0.0 +24632,48,12.75,4,0.0 +24632,57,19.5,20,0.0 +24632,2,19,34,0.0 +24632,50,16.25,4,0.0 +24632,21,10,38,0.0 +24632,4,22,42,0.0 +24632,26,31.23,36,0.0 +24632,41,9.65,22,0.0 +24632,40,18.4,26,0.0 +24632,71,21.5,50,0.0 +24632,9,97,14,0.0 +24632,33,2.5,1,0.0 +24632,66,17,11,0.0 +24632,32,32,35,0.0 +24632,10,31,16,0.0 +24632,45,9.5,38,0.0 +24632,59,55,35,0.0 +24632,38,263.5,21,0.0 +24632,5,21.35,2,0.0 +24632,13,6,46,0.0 +24632,64,33.25,5,0.0 +24632,46,12,23,0.0 +24632,16,17.45,35,0.0 +24632,69,36,48,0.0 +24632,12,38,30,0.0 +24632,30,25.89,26,0.0 +24632,18,62.5,20,0.0 +24632,8,40,37,0.0 +24632,36,19,48,0.0 +24632,28,45.6,33,0.0 +24632,31,12.5,42,0.0 +24632,55,24,41,0.0 +24632,53,32.8,41,0.0 +24632,15,15.5,7,0.0 +24632,29,123.79,19,0.0 +24632,76,18,41,0.0 +24632,23,9,25,0.0 +24632,51,53,24,0.0 +24632,63,43.9,10,0.0 +24632,44,19.45,29,0.0 +24632,72,34.8,2,0.0 +24632,77,13,19,0.0 +24632,14,23.25,39,0.0 +24632,47,9.5,3,0.0 +24632,6,25,22,0.0 +24632,62,49.3,26,0.0 +24632,58,13.25,2,0.0 +24632,70,15,4,0.0 +24632,42,14,13,0.0 +24632,35,18,20,0.0 +24632,65,21.05,5,0.0 +24632,54,7.45,36,0.0 +24632,3,10,31,0.0 +24632,49,20,37,0.0 +24632,22,21,44,0.0 +24632,20,81,13,0.0 +24632,37,26,16,0.0 +24633,52,7,7,0.0 +24633,23,9,2,0.0 +24633,58,13.25,8,0.0 +24633,46,12,29,0.0 +24633,40,18.4,27,0.0 +24633,11,21,40,0.0 +24633,20,81,37,0.0 +24634,20,81,31,0.0 +24634,2,19,45,0.0 +24634,73,15,6,0.0 +24634,71,21.5,5,0.0 +24634,56,38,35,0.0 +24634,12,38,28,0.0 +24634,50,16.25,45,0.0 +24634,26,31.23,28,0.0 +24634,46,12,42,0.0 +24634,55,24,27,0.0 +24634,58,13.25,32,0.0 +24634,72,34.8,5,0.0 +24634,33,2.5,3,0.0 +24634,36,19,4,0.0 +24634,17,39,6,0.0 +24634,16,17.45,35,0.0 +24634,37,26,42,0.0 +24634,65,21.05,48,0.0 +24634,21,10,29,0.0 +24634,53,32.8,6,0.0 +24634,7,30,10,0.0 +24634,77,13,47,0.0 +24634,23,9,43,0.0 +24634,42,14,28,0.0 +24634,41,9.65,26,0.0 +24634,43,46,31,0.0 +24634,45,9.5,36,0.0 +24634,44,19.45,31,0.0 +24634,9,97,3,0.0 +24634,57,19.5,34,0.0 +24634,54,7.45,7,0.0 +24634,24,4.5,45,0.0 +24634,3,10,38,0.0 +24634,66,17,19,0.0 +24634,14,23.25,39,0.0 +24634,30,25.89,48,0.0 +24634,4,22,12,0.0 +24634,19,9.2,32,0.0 +24634,29,123.79,27,0.0 +24634,48,12.75,33,0.0 +24634,8,40,47,0.0 +24634,70,15,50,0.0 +24634,59,55,46,0.0 +24634,11,21,20,0.0 +24634,38,263.5,47,0.0 +24635,9,97,23,0.0 +24635,48,12.75,16,0.0 +24635,41,9.65,2,0.0 +24635,58,13.25,8,0.0 +24635,59,55,30,0.0 +24635,43,46,50,0.0 +24635,38,263.5,11,0.0 +24635,11,21,44,0.0 +24635,67,14,26,0.0 +24635,69,36,26,0.0 +24635,10,31,14,0.0 +24635,18,62.5,35,0.0 +24635,62,49.3,41,0.0 +24635,77,13,47,0.0 +24635,2,19,2,0.0 +24635,51,53,31,0.0 +24635,74,10,11,0.0 +24635,70,15,45,0.0 +24635,57,19.5,9,0.0 +24635,17,39,37,0.0 +24635,73,15,23,0.0 +24635,34,14,29,0.0 +24635,53,32.8,31,0.0 +24635,44,19.45,44,0.0 +24635,30,25.89,20,0.0 +24635,66,17,14,0.0 +24635,39,18,17,0.0 +24635,5,21.35,8,0.0 +24635,26,31.23,27,0.0 +24635,23,9,12,0.0 +24635,3,10,48,0.0 +24635,6,25,43,0.0 +24635,8,40,26,0.0 +24635,33,2.5,43,0.0 +24635,36,19,48,0.0 +24635,75,7.75,5,0.0 +24635,15,15.5,14,0.0 +24635,12,38,6,0.0 +24635,50,16.25,40,0.0 +24635,19,9.2,26,0.0 +24635,64,33.25,29,0.0 +24635,22,21,5,0.0 +24635,7,30,17,0.0 +24636,35,18,11,0.0 +24636,26,31.23,49,0.0 +24636,76,18,50,0.0 +24636,36,19,46,0.0 +24636,70,15,30,0.0 +24636,69,36,3,0.0 +24636,54,7.45,2,0.0 +24636,77,13,16,0.0 +24636,55,24,29,0.0 +24636,3,10,8,0.0 +24636,58,13.25,48,0.0 +24636,19,9.2,8,0.0 +24636,28,45.6,1,0.0 +24636,15,15.5,47,0.0 +24636,57,19.5,35,0.0 +24636,24,4.5,20,0.0 +24636,5,21.35,29,0.0 +24636,45,9.5,33,0.0 +24636,23,9,4,0.0 +24636,63,43.9,45,0.0 +24636,13,6,41,0.0 +24636,33,2.5,10,0.0 +24636,4,22,7,0.0 +24636,68,12.5,2,0.0 +24636,32,32,37,0.0 +24636,53,32.8,24,0.0 +24637,5,21.35,28,0.0 +24637,48,12.75,10,0.0 +24637,43,46,1,0.0 +24637,29,123.79,39,0.0 +24637,64,33.25,48,0.0 +24637,39,18,40,0.0 +24637,8,40,1,0.0 +24637,44,19.45,45,0.0 +24637,37,26,10,0.0 +24637,12,38,16,0.0 +24637,26,31.23,42,0.0 +24637,13,6,4,0.0 +24637,57,19.5,37,0.0 +24637,56,38,47,0.0 +24637,28,45.6,14,0.0 +24637,50,16.25,15,0.0 +24637,14,23.25,43,0.0 +24637,77,13,16,0.0 +24637,75,7.75,21,0.0 +24637,69,36,16,0.0 +24637,68,12.5,4,0.0 +24637,66,17,34,0.0 +24637,51,53,32,0.0 +24637,19,9.2,22,0.0 +24637,17,39,7,0.0 +24637,49,20,30,0.0 +24637,41,9.65,22,0.0 +24637,18,62.5,37,0.0 +24637,31,12.5,30,0.0 +24637,25,14,15,0.0 +24637,63,43.9,21,0.0 +24637,6,25,49,0.0 +24637,67,14,10,0.0 +24637,60,34,6,0.0 +24637,2,19,22,0.0 +24637,47,9.5,20,0.0 +24637,46,12,40,0.0 +24637,27,43.9,28,0.0 +24637,9,97,21,0.0 +24637,70,15,18,0.0 +24637,72,34.8,13,0.0 +24637,24,4.5,7,0.0 +24637,71,21.5,38,0.0 +24637,16,17.45,32,0.0 +24637,42,14,19,0.0 +24637,15,15.5,10,0.0 +24637,4,22,4,0.0 +24637,30,25.89,13,0.0 +24637,10,31,14,0.0 +24637,58,13.25,42,0.0 +24637,76,18,40,0.0 +24637,52,7,46,0.0 +24637,20,81,48,0.0 +24637,1,18,43,0.0 +24637,65,21.05,32,0.0 +24637,62,49.3,46,0.0 +24637,40,18.4,2,0.0 +24637,74,10,7,0.0 +24637,3,10,22,0.0 +24637,7,30,3,0.0 +24637,54,7.45,11,0.0 +24637,23,9,18,0.0 +24637,38,263.5,40,0.0 +24637,21,10,19,0.0 +24637,59,55,25,0.0 +24638,62,49.3,41,0.0 +24638,34,14,42,0.0 +24638,10,31,14,0.0 +24638,72,34.8,12,0.0 +24638,63,43.9,41,0.0 +24638,54,7.45,50,0.0 +24638,64,33.25,21,0.0 +24638,66,17,22,0.0 +24638,33,2.5,44,0.0 +24638,15,15.5,39,0.0 +24638,29,123.79,48,0.0 +24638,46,12,11,0.0 +24638,7,30,43,0.0 +24638,40,18.4,8,0.0 +24638,41,9.65,38,0.0 +24638,17,39,4,0.0 +24638,48,12.75,33,0.0 +24638,20,81,28,0.0 +24638,30,25.89,15,0.0 +24638,60,34,26,0.0 +24638,18,62.5,33,0.0 +24638,44,19.45,25,0.0 +24638,23,9,46,0.0 +24638,21,10,26,0.0 +24638,8,40,49,0.0 +24638,22,21,10,0.0 +24638,45,9.5,23,0.0 +24638,56,38,27,0.0 +24638,38,263.5,26,0.0 +24638,36,19,13,0.0 +24638,59,55,24,0.0 +24638,26,31.23,31,0.0 +24638,9,97,10,0.0 +24638,25,14,8,0.0 +24639,9,97,15,0.0 +24639,32,32,22,0.0 +24639,44,19.45,29,0.0 +24639,52,7,18,0.0 +24639,36,19,48,0.0 +24639,50,16.25,9,0.0 +24639,46,12,29,0.0 +24639,12,38,46,0.0 +24639,63,43.9,20,0.0 +24639,55,24,42,0.0 +24639,65,21.05,31,0.0 +24639,59,55,26,0.0 +24639,34,14,2,0.0 +24639,3,10,25,0.0 +24639,39,18,8,0.0 +24639,75,7.75,14,0.0 +24639,7,30,42,0.0 +24639,8,40,35,0.0 +24639,35,18,15,0.0 +24639,76,18,1,0.0 +24639,48,12.75,19,0.0 +24639,4,22,24,0.0 +24639,77,13,22,0.0 +24639,22,21,1,0.0 +24639,16,17.45,49,0.0 +24639,25,14,16,0.0 +24640,25,14,39,0.0 +24640,28,45.6,32,0.0 +24640,50,16.25,28,0.0 +24640,17,39,15,0.0 +24640,41,9.65,19,0.0 +24640,24,4.5,36,0.0 +24640,45,9.5,41,0.0 +24640,70,15,6,0.0 +24640,9,97,33,0.0 +24640,16,17.45,34,0.0 +24640,3,10,44,0.0 +24640,58,13.25,43,0.0 +24640,21,10,43,0.0 +24640,20,81,20,0.0 +24640,13,6,35,0.0 +24640,30,25.89,20,0.0 +24640,15,15.5,17,0.0 +24640,77,13,43,0.0 +24640,56,38,1,0.0 +24640,73,15,24,0.0 +24640,48,12.75,35,0.0 +24640,38,263.5,23,0.0 +24640,31,12.5,32,0.0 +24640,1,18,24,0.0 +24640,61,28.5,25,0.0 +24640,53,32.8,48,0.0 +24640,26,31.23,48,0.0 +24640,35,18,4,0.0 +24640,14,23.25,7,0.0 +24640,76,18,30,0.0 +24640,46,12,38,0.0 +24640,64,33.25,7,0.0 +24640,23,9,31,0.0 +24640,54,7.45,8,0.0 +24640,29,123.79,45,0.0 +24640,18,62.5,46,0.0 +24640,39,18,3,0.0 +24640,51,53,11,0.0 +24640,34,14,17,0.0 +24640,33,2.5,50,0.0 +24640,40,18.4,17,0.0 +24640,19,9.2,12,0.0 +24640,68,12.5,34,0.0 +24640,22,21,10,0.0 +24640,8,40,38,0.0 +24640,72,34.8,42,0.0 +24640,2,19,40,0.0 +24640,63,43.9,30,0.0 +24640,27,43.9,25,0.0 +24640,43,46,12,0.0 +24640,71,21.5,18,0.0 +24640,49,20,44,0.0 +24640,10,31,17,0.0 +24640,7,30,35,0.0 +24640,69,36,9,0.0 +24640,12,38,2,0.0 +24640,55,24,41,0.0 +24640,75,7.75,34,0.0 +24640,5,21.35,5,0.0 +24640,32,32,3,0.0 +24640,65,21.05,25,0.0 +24640,62,49.3,35,0.0 +24640,47,9.5,19,0.0 +24640,57,19.5,16,0.0 +24640,36,19,20,0.0 +24640,42,14,31,0.0 +24640,66,17,30,0.0 +24640,44,19.45,28,0.0 +24640,67,14,35,0.0 +24640,60,34,1,0.0 +24640,6,25,4,0.0 +24641,38,263.5,23,0.0 +24641,3,10,33,0.0 +24641,24,4.5,35,0.0 +24641,56,38,30,0.0 +24641,75,7.75,31,0.0 +24641,28,45.6,24,0.0 +24642,17,39,21,0.0 +24642,26,31.23,41,0.0 +24642,38,263.5,10,0.0 +24642,39,18,45,0.0 +24642,49,20,3,0.0 +24642,66,17,50,0.0 +24642,21,10,45,0.0 +24642,40,18.4,3,0.0 +24642,53,32.8,34,0.0 +24642,20,81,14,0.0 +24642,7,30,12,0.0 +24642,63,43.9,14,0.0 +24642,41,9.65,31,0.0 +24642,6,25,49,0.0 +24642,59,55,3,0.0 +24642,52,7,40,0.0 +24642,44,19.45,7,0.0 +24642,29,123.79,37,0.0 +24642,22,21,42,0.0 +24642,76,18,1,0.0 +24642,64,33.25,31,0.0 +24642,62,49.3,38,0.0 +24642,72,34.8,13,0.0 +24642,42,14,27,0.0 +24642,14,23.25,1,0.0 +24642,56,38,4,0.0 +24642,50,16.25,11,0.0 +24642,24,4.5,2,0.0 +24642,10,31,25,0.0 +24642,75,7.75,33,0.0 +24642,61,28.5,26,0.0 +24642,70,15,46,0.0 +24642,54,7.45,6,0.0 +24642,43,46,37,0.0 +24642,37,26,37,0.0 +24642,69,36,12,0.0 +24642,15,15.5,20,0.0 +24642,67,14,42,0.0 +24642,27,43.9,28,0.0 +24642,33,2.5,15,0.0 +24642,47,9.5,46,0.0 +24642,11,21,28,0.0 +24642,57,19.5,10,0.0 +24642,74,10,13,0.0 +24642,65,21.05,47,0.0 +24642,48,12.75,20,0.0 +24642,32,32,32,0.0 +24642,55,24,33,0.0 +24642,73,15,5,0.0 +24642,31,12.5,22,0.0 +24642,23,9,7,0.0 +24642,4,22,5,0.0 +24642,3,10,11,0.0 +24642,18,62.5,6,0.0 +24642,51,53,5,0.0 +24642,60,34,18,0.0 +24643,74,10,14,0.0 +24643,26,31.23,2,0.0 +24643,31,12.5,20,0.0 +24643,64,33.25,37,0.0 +24643,67,14,16,0.0 +24643,4,22,12,0.0 +24643,71,21.5,17,0.0 +24643,33,2.5,41,0.0 +24643,60,34,46,0.0 +24643,35,18,14,0.0 +24643,51,53,42,0.0 +24643,47,9.5,37,0.0 +24643,37,26,32,0.0 +24643,16,17.45,29,0.0 +24643,11,21,3,0.0 +24643,46,12,25,0.0 +24643,40,18.4,39,0.0 +24643,9,97,36,0.0 +24643,61,28.5,22,0.0 +24643,20,81,22,0.0 +24643,63,43.9,31,0.0 +24643,34,14,29,0.0 +24643,14,23.25,41,0.0 +24643,25,14,30,0.0 +24643,27,43.9,2,0.0 +24643,42,14,40,0.0 +24643,3,10,28,0.0 +24643,19,9.2,19,0.0 +24643,17,39,33,0.0 +24643,53,32.8,23,0.0 +24643,38,263.5,5,0.0 +24643,5,21.35,13,0.0 +24643,54,7.45,4,0.0 +24643,48,12.75,38,0.0 +24643,45,9.5,10,0.0 +24643,62,49.3,42,0.0 +24643,21,10,24,0.0 +24643,30,25.89,40,0.0 +24643,6,25,32,0.0 +24643,13,6,14,0.0 +24643,59,55,26,0.0 +24643,58,13.25,36,0.0 +24643,12,38,27,0.0 +24643,39,18,6,0.0 +24643,72,34.8,40,0.0 +24643,32,32,1,0.0 +24643,28,45.6,32,0.0 +24643,68,12.5,49,0.0 +24643,29,123.79,45,0.0 +24643,76,18,38,0.0 +24643,36,19,33,0.0 +24643,2,19,43,0.0 +24643,56,38,41,0.0 +24643,7,30,3,0.0 +24643,77,13,22,0.0 +24643,49,20,48,0.0 +24643,8,40,32,0.0 +24643,66,17,7,0.0 +24643,50,16.25,42,0.0 +24643,10,31,27,0.0 +24643,55,24,38,0.0 +24643,22,21,40,0.0 +24643,23,9,16,0.0 +24643,44,19.45,17,0.0 +24644,76,18,10,0.0 +24644,51,53,24,0.0 +24644,71,21.5,48,0.0 +24644,41,9.65,37,0.0 +24644,49,20,43,0.0 +24644,35,18,42,0.0 +24644,4,22,13,0.0 +24644,52,7,35,0.0 +24644,33,2.5,41,0.0 +24644,15,15.5,10,0.0 +24644,43,46,32,0.0 +24644,34,14,50,0.0 +24644,11,21,30,0.0 +24644,54,7.45,7,0.0 +24644,66,17,11,0.0 +24644,1,18,38,0.0 +24644,16,17.45,35,0.0 +24644,63,43.9,41,0.0 +24644,6,25,2,0.0 +24644,53,32.8,3,0.0 +24644,46,12,19,0.0 +24644,12,38,36,0.0 +24644,13,6,9,0.0 +24644,56,38,20,0.0 +24644,72,34.8,12,0.0 +24644,26,31.23,50,0.0 +24644,40,18.4,40,0.0 +24644,31,12.5,45,0.0 +24644,39,18,31,0.0 +24644,38,263.5,30,0.0 +24644,5,21.35,48,0.0 +24644,20,81,3,0.0 +24644,7,30,28,0.0 +24644,10,31,9,0.0 +24644,2,19,49,0.0 +24644,59,55,4,0.0 +24644,36,19,2,0.0 +24644,8,40,29,0.0 +24644,42,14,49,0.0 +24644,44,19.45,44,0.0 +24644,45,9.5,10,0.0 +24644,19,9.2,21,0.0 +24644,55,24,11,0.0 +24644,62,49.3,31,0.0 +24644,67,14,35,0.0 +24644,57,19.5,38,0.0 +24644,18,62.5,6,0.0 +24644,22,21,47,0.0 +24644,74,10,2,0.0 +24644,77,13,42,0.0 +24644,21,10,32,0.0 +24644,50,16.25,42,0.0 +24644,65,21.05,42,0.0 +24644,14,23.25,44,0.0 +24644,60,34,18,0.0 +24644,27,43.9,4,0.0 +24644,25,14,44,0.0 +24644,29,123.79,47,0.0 +24644,48,12.75,15,0.0 +24644,47,9.5,13,0.0 +24644,9,97,32,0.0 +24644,32,32,37,0.0 +24644,23,9,25,0.0 +24644,58,13.25,10,0.0 +24644,3,10,41,0.0 +24644,37,26,47,0.0 +24644,61,28.5,32,0.0 +24644,17,39,42,0.0 +24644,64,33.25,4,0.0 +24644,68,12.5,33,0.0 +24644,30,25.89,36,0.0 +24644,69,36,10,0.0 +24645,40,18.4,37,0.0 +24645,56,38,1,0.0 +24645,66,17,3,0.0 +24645,21,10,34,0.0 +24646,77,13,37,0.0 +24646,48,12.75,25,0.0 +24646,1,18,35,0.0 +24646,51,53,30,0.0 +24646,2,19,26,0.0 +24646,16,17.45,6,0.0 +24646,17,39,14,0.0 +24646,73,15,25,0.0 +24646,40,18.4,9,0.0 +24646,56,38,34,0.0 +24646,54,7.45,14,0.0 +24646,69,36,36,0.0 +24646,4,22,28,0.0 +24646,61,28.5,32,0.0 +24646,39,18,42,0.0 +24646,34,14,17,0.0 +24646,13,6,37,0.0 +24646,20,81,30,0.0 +24646,75,7.75,20,0.0 +24646,14,23.25,44,0.0 +24646,29,123.79,26,0.0 +24646,47,9.5,40,0.0 +24646,23,9,12,0.0 +24646,3,10,40,0.0 +24646,76,18,26,0.0 +24646,12,38,11,0.0 +24646,15,15.5,49,0.0 +24646,7,30,32,0.0 +24646,26,31.23,25,0.0 +24646,37,26,24,0.0 +24646,55,24,1,0.0 +24646,64,33.25,40,0.0 +24646,70,15,3,0.0 +24646,44,19.45,47,0.0 +24646,32,32,4,0.0 +24646,45,9.5,21,0.0 +24646,33,2.5,13,0.0 +24646,8,40,33,0.0 +24646,57,19.5,49,0.0 +24646,24,4.5,38,0.0 +24647,14,23.25,31,0.0 +24647,29,123.79,22,0.0 +24647,39,18,4,0.0 +24647,10,31,49,0.0 +24647,64,33.25,6,0.0 +24647,69,36,35,0.0 +24647,34,14,47,0.0 +24647,72,34.8,4,0.0 +24647,66,17,11,0.0 +24647,46,12,48,0.0 +24647,30,25.89,4,0.0 +24647,3,10,8,0.0 +24647,50,16.25,48,0.0 +24647,75,7.75,29,0.0 +24647,62,49.3,1,0.0 +24647,2,19,5,0.0 +24647,63,43.9,20,0.0 +24647,52,7,2,0.0 +24647,31,12.5,5,0.0 +24647,59,55,48,0.0 +24647,33,2.5,19,0.0 +24647,57,19.5,39,0.0 +24647,16,17.45,47,0.0 +24647,5,21.35,6,0.0 +24647,1,18,47,0.0 +24647,45,9.5,31,0.0 +24647,20,81,5,0.0 +24648,62,49.3,14,0.0 +24648,67,14,19,0.0 +24648,25,14,11,0.0 +24648,7,30,39,0.0 +24648,14,23.25,41,0.0 +24648,41,9.65,10,0.0 +24648,52,7,37,0.0 +24648,21,10,11,0.0 +24648,36,19,17,0.0 +24648,45,9.5,31,0.0 +24648,71,21.5,20,0.0 +24648,4,22,31,0.0 +24648,70,15,50,0.0 +24648,23,9,22,0.0 +24648,20,81,50,0.0 +24648,10,31,49,0.0 +24648,34,14,38,0.0 +24648,5,21.35,5,0.0 +24648,37,26,39,0.0 +24648,68,12.5,38,0.0 +24648,31,12.5,17,0.0 +24648,75,7.75,26,0.0 +24648,77,13,44,0.0 +24648,3,10,12,0.0 +24648,58,13.25,9,0.0 +24648,54,7.45,14,0.0 +24648,74,10,5,0.0 +24648,39,18,18,0.0 +24648,2,19,33,0.0 +24648,46,12,8,0.0 +24648,64,33.25,6,0.0 +24648,76,18,9,0.0 +24649,21,10,3,0.0 +24649,42,14,12,0.0 +24649,64,33.25,23,0.0 +24649,74,10,46,0.0 +24649,12,38,4,0.0 +24649,59,55,28,0.0 +24649,63,43.9,9,0.0 +24649,9,97,30,0.0 +24649,35,18,17,0.0 +24649,44,19.45,30,0.0 +24649,28,45.6,20,0.0 +24649,22,21,25,0.0 +24649,33,2.5,46,0.0 +24649,67,14,23,0.0 +24649,50,16.25,7,0.0 +24649,61,28.5,6,0.0 +24649,62,49.3,23,0.0 +24649,45,9.5,45,0.0 +24649,32,32,38,0.0 +24649,10,31,29,0.0 +24650,28,45.6,17,0.0 +24650,1,18,5,0.0 +24650,61,28.5,29,0.0 +24650,53,32.8,38,0.0 +24650,52,7,27,0.0 +24650,15,15.5,15,0.0 +24650,10,31,40,0.0 +24651,60,34,17,0.0 +24651,73,15,33,0.0 +24651,48,12.75,25,0.0 +24651,77,13,4,0.0 +24651,53,32.8,29,0.0 +24651,46,12,47,0.0 +24651,64,33.25,5,0.0 +24651,3,10,39,0.0 +24651,13,6,19,0.0 +24651,74,10,40,0.0 +24651,35,18,29,0.0 +24651,63,43.9,14,0.0 +24652,43,46,23,0.0 +24652,50,16.25,50,0.0 +24652,64,33.25,23,0.0 +24652,17,39,7,0.0 +24652,65,21.05,36,0.0 +24652,70,15,29,0.0 +24652,76,18,5,0.0 +24652,6,25,7,0.0 +24652,16,17.45,8,0.0 +24652,14,23.25,23,0.0 +24652,11,21,5,0.0 +24652,75,7.75,38,0.0 +24652,25,14,13,0.0 +24652,58,13.25,21,0.0 +24652,57,19.5,46,0.0 +24652,10,31,44,0.0 +24652,9,97,41,0.0 +24652,35,18,15,0.0 +24652,23,9,22,0.0 +24652,30,25.89,50,0.0 +24652,54,7.45,2,0.0 +24652,56,38,36,0.0 +24652,13,6,6,0.0 +24652,40,18.4,42,0.0 +24652,44,19.45,47,0.0 +24652,71,21.5,30,0.0 +24652,15,15.5,26,0.0 +24652,22,21,34,0.0 +24652,73,15,3,0.0 +24652,2,19,17,0.0 +24652,38,263.5,1,0.0 +24652,63,43.9,34,0.0 +24652,51,53,14,0.0 +24652,42,14,38,0.0 +24652,21,10,40,0.0 +24652,67,14,14,0.0 +24652,60,34,16,0.0 +24652,49,20,15,0.0 +24652,8,40,37,0.0 +24652,62,49.3,19,0.0 +24652,31,12.5,17,0.0 +24652,27,43.9,43,0.0 +24652,46,12,20,0.0 +24652,29,123.79,50,0.0 +24652,68,12.5,31,0.0 +24652,66,17,43,0.0 +24652,77,13,39,0.0 +24652,1,18,9,0.0 +24652,41,9.65,38,0.0 +24652,72,34.8,24,0.0 +24652,55,24,45,0.0 +24652,19,9.2,6,0.0 +24652,3,10,2,0.0 +24652,45,9.5,1,0.0 +24652,69,36,48,0.0 +24652,52,7,49,0.0 +24652,26,31.23,15,0.0 +24652,12,38,18,0.0 +24652,59,55,50,0.0 +24652,32,32,18,0.0 +24652,20,81,46,0.0 +24652,5,21.35,20,0.0 +24652,47,9.5,17,0.0 +24652,61,28.5,12,0.0 +24652,18,62.5,13,0.0 +24652,4,22,7,0.0 +24652,24,4.5,49,0.0 +24652,48,12.75,13,0.0 +24652,37,26,4,0.0 +24652,36,19,15,0.0 +24652,39,18,46,0.0 +24652,7,30,41,0.0 +24653,74,10,13,0.0 +24653,29,123.79,36,0.0 +24653,38,263.5,15,0.0 +24653,47,9.5,4,0.0 +24653,35,18,50,0.0 +24654,66,17,34,0.0 +24654,74,10,24,0.0 +24654,36,19,29,0.0 +24654,52,7,46,0.0 +24654,30,25.89,44,0.0 +24654,45,9.5,21,0.0 +24654,34,14,20,0.0 +24654,2,19,2,0.0 +24654,77,13,17,0.0 +24654,58,13.25,49,0.0 +24654,13,6,36,0.0 +24654,56,38,1,0.0 +24654,54,7.45,19,0.0 +24654,65,21.05,27,0.0 +24654,9,97,49,0.0 +24654,3,10,20,0.0 +24654,22,21,17,0.0 +24654,46,12,25,0.0 +24654,40,18.4,19,0.0 +24654,57,19.5,5,0.0 +24654,41,9.65,1,0.0 +24654,31,12.5,33,0.0 +24654,47,9.5,45,0.0 +24654,63,43.9,16,0.0 +24654,51,53,9,0.0 +24654,19,9.2,8,0.0 +24654,75,7.75,37,0.0 +24654,50,16.25,24,0.0 +24654,6,25,48,0.0 +24654,61,28.5,42,0.0 +24654,15,15.5,50,0.0 +24654,1,18,18,0.0 +24654,27,43.9,35,0.0 +24654,24,4.5,43,0.0 +24654,60,34,21,0.0 +24654,12,38,20,0.0 +24654,8,40,34,0.0 +24654,33,2.5,23,0.0 +24654,68,12.5,46,0.0 +24654,32,32,41,0.0 +24654,5,21.35,23,0.0 +24654,73,15,39,0.0 +24654,42,14,40,0.0 +24654,23,9,30,0.0 +24654,76,18,46,0.0 +24654,72,34.8,40,0.0 +24654,64,33.25,22,0.0 +24654,14,23.25,43,0.0 +24654,69,36,29,0.0 +24654,44,19.45,3,0.0 +24655,8,40,33,0.0 +24655,25,14,27,0.0 +24655,30,25.89,10,0.0 +24655,7,30,40,0.0 +24655,26,31.23,34,0.0 +24655,36,19,17,0.0 +24655,52,7,35,0.0 +24655,2,19,10,0.0 +24655,49,20,22,0.0 +24655,69,36,7,0.0 +24655,64,33.25,21,0.0 +24655,54,7.45,50,0.0 +24655,48,12.75,20,0.0 +24655,63,43.9,34,0.0 +24655,11,21,42,0.0 +24655,23,9,33,0.0 +24655,13,6,17,0.0 +24655,66,17,18,0.0 +24655,42,14,16,0.0 +24655,38,263.5,14,0.0 +24655,45,9.5,28,0.0 +24655,10,31,29,0.0 +24655,29,123.79,47,0.0 +24655,3,10,1,0.0 +24655,70,15,25,0.0 +24655,60,34,20,0.0 +24655,34,14,5,0.0 +24655,73,15,24,0.0 +24655,57,19.5,30,0.0 +24655,56,38,10,0.0 +24655,16,17.45,15,0.0 +24655,22,21,12,0.0 +24655,61,28.5,39,0.0 +24655,40,18.4,25,0.0 +24656,25,14,26,0.0 +24656,13,6,28,0.0 +24656,6,25,15,0.0 +24656,52,7,41,0.0 +24656,15,15.5,33,0.0 +24656,70,15,45,0.0 +24656,7,30,15,0.0 +24656,14,23.25,5,0.0 +24656,64,33.25,48,0.0 +24656,11,21,26,0.0 +24656,12,38,42,0.0 +24656,33,2.5,35,0.0 +24656,29,123.79,15,0.0 +24656,73,15,11,0.0 +24656,72,34.8,37,0.0 +24656,36,19,33,0.0 +24656,42,14,39,0.0 +24656,71,21.5,10,0.0 +24656,59,55,17,0.0 +24656,1,18,6,0.0 +24656,77,13,1,0.0 +24656,47,9.5,36,0.0 +24656,46,12,27,0.0 +24656,8,40,11,0.0 +24656,58,13.25,45,0.0 +24656,61,28.5,49,0.0 +24656,3,10,10,0.0 +24656,28,45.6,4,0.0 +24656,56,38,44,0.0 +24656,39,18,43,0.0 +24656,63,43.9,47,0.0 +24656,30,25.89,25,0.0 +24656,35,18,24,0.0 +24656,37,26,20,0.0 +24656,49,20,37,0.0 +24656,75,7.75,38,0.0 +24656,51,53,32,0.0 +24656,19,9.2,6,0.0 +24656,17,39,29,0.0 +24656,55,24,30,0.0 +24656,9,97,21,0.0 +24656,4,22,22,0.0 +24656,41,9.65,32,0.0 +24656,38,263.5,17,0.0 +24656,76,18,17,0.0 +24656,65,21.05,29,0.0 +24656,74,10,20,0.0 +24657,31,12.5,49,0.0 +24657,77,13,13,0.0 +24657,68,12.5,34,0.0 +24657,62,49.3,18,0.0 +24657,24,4.5,31,0.0 +24657,14,23.25,44,0.0 +24657,40,18.4,24,0.0 +24657,66,17,2,0.0 +24657,41,9.65,20,0.0 +24657,57,19.5,23,0.0 +24657,72,34.8,29,0.0 +24657,8,40,50,0.0 +24657,69,36,49,0.0 +24657,25,14,32,0.0 +24657,37,26,28,0.0 +24657,10,31,47,0.0 +24657,3,10,34,0.0 +24657,27,43.9,41,0.0 +24657,56,38,44,0.0 +24657,44,19.45,19,0.0 +24657,33,2.5,1,0.0 +24657,75,7.75,38,0.0 +24657,19,9.2,29,0.0 +24657,12,38,22,0.0 +24657,59,55,50,0.0 +24657,63,43.9,12,0.0 +24657,50,16.25,47,0.0 +24657,64,33.25,23,0.0 +24657,76,18,19,0.0 +24657,70,15,25,0.0 +24657,32,32,22,0.0 +24657,20,81,39,0.0 +24657,52,7,12,0.0 +24657,74,10,17,0.0 +24657,35,18,15,0.0 +24657,28,45.6,15,0.0 +24657,71,21.5,1,0.0 +24657,30,25.89,26,0.0 +24657,15,15.5,44,0.0 +24657,38,263.5,6,0.0 +24657,5,21.35,6,0.0 +24657,18,62.5,27,0.0 +24657,22,21,1,0.0 +24657,51,53,12,0.0 +24657,48,12.75,39,0.0 +24657,7,30,23,0.0 +24657,54,7.45,3,0.0 +24657,11,21,41,0.0 +24657,21,10,42,0.0 +24657,17,39,14,0.0 +24657,34,14,4,0.0 +24657,67,14,10,0.0 +24657,1,18,37,0.0 +24657,39,18,17,0.0 +24657,6,25,32,0.0 +24657,13,6,44,0.0 +24657,29,123.79,31,0.0 +24657,42,14,18,0.0 +24657,49,20,6,0.0 +24657,36,19,11,0.0 +24657,43,46,13,0.0 +24657,2,19,11,0.0 +24657,61,28.5,25,0.0 +24657,45,9.5,13,0.0 +24657,73,15,43,0.0 +24657,26,31.23,45,0.0 +24658,73,15,4,0.0 +24658,70,15,21,0.0 +24658,1,18,31,0.0 +24658,13,6,49,0.0 +24658,14,23.25,35,0.0 +24658,11,21,24,0.0 +24658,57,19.5,29,0.0 +24658,65,21.05,28,0.0 +24658,16,17.45,11,0.0 +24658,22,21,28,0.0 +24658,3,10,42,0.0 +24658,25,14,2,0.0 +24658,72,34.8,45,0.0 +24658,50,16.25,18,0.0 +24658,2,19,50,0.0 +24658,68,12.5,5,0.0 +24658,34,14,18,0.0 +24658,32,32,41,0.0 +24658,62,49.3,31,0.0 +24658,56,38,9,0.0 +24658,20,81,38,0.0 +24658,38,263.5,37,0.0 +24658,39,18,46,0.0 +24658,49,20,26,0.0 +24658,41,9.65,37,0.0 +24658,6,25,26,0.0 +24658,15,15.5,4,0.0 +24658,71,21.5,47,0.0 +24658,28,45.6,32,0.0 +24658,35,18,8,0.0 +24658,12,38,26,0.0 +24658,24,4.5,30,0.0 +24658,47,9.5,6,0.0 +24658,37,26,44,0.0 +24658,53,32.8,28,0.0 +24658,30,25.89,44,0.0 +24658,52,7,32,0.0 +24658,74,10,30,0.0 +24658,75,7.75,28,0.0 +24658,27,43.9,6,0.0 +24658,55,24,8,0.0 +24658,9,97,43,0.0 +24658,19,9.2,47,0.0 +24658,21,10,15,0.0 +24658,33,2.5,28,0.0 +24658,46,12,2,0.0 +24658,40,18.4,25,0.0 +24658,54,7.45,36,0.0 +24658,59,55,45,0.0 +24658,48,12.75,5,0.0 +24658,58,13.25,45,0.0 +24658,64,33.25,18,0.0 +24658,77,13,35,0.0 +24658,29,123.79,6,0.0 +24658,26,31.23,30,0.0 +24658,69,36,18,0.0 +24658,44,19.45,29,0.0 +24658,61,28.5,44,0.0 +24658,60,34,17,0.0 +24658,7,30,42,0.0 +24659,7,30,18,0.0 +24659,77,13,26,0.0 +24659,46,12,10,0.0 +24659,20,81,12,0.0 +24659,61,28.5,19,0.0 +24659,11,21,30,0.0 +24659,70,15,50,0.0 +24659,63,43.9,40,0.0 +24659,72,34.8,50,0.0 +24659,29,123.79,2,0.0 +24659,22,21,15,0.0 +24659,56,38,9,0.0 +24659,49,20,34,0.0 +24659,16,17.45,7,0.0 +24659,67,14,16,0.0 +24659,65,21.05,34,0.0 +24659,1,18,22,0.0 +24659,47,9.5,31,0.0 +24659,30,25.89,15,0.0 +24659,3,10,44,0.0 +24659,68,12.5,35,0.0 +24659,13,6,27,0.0 +24659,53,32.8,1,0.0 +24659,62,49.3,26,0.0 +24659,45,9.5,48,0.0 +24659,55,24,19,0.0 +24659,28,45.6,26,0.0 +24659,36,19,2,0.0 +24659,33,2.5,11,0.0 +24659,38,263.5,44,0.0 +24659,14,23.25,45,0.0 +24659,25,14,35,0.0 +24659,9,97,40,0.0 +24659,58,13.25,43,0.0 +24659,4,22,26,0.0 +24659,73,15,4,0.0 +24659,37,26,13,0.0 +24659,43,46,14,0.0 +24659,74,10,41,0.0 +24659,76,18,34,0.0 +24659,50,16.25,27,0.0 +24659,59,55,26,0.0 +24659,57,19.5,35,0.0 +24659,44,19.45,46,0.0 +24659,35,18,28,0.0 +24659,39,18,10,0.0 +24659,60,34,18,0.0 +24659,21,10,9,0.0 +24659,10,31,42,0.0 +24659,71,21.5,44,0.0 +24659,40,18.4,16,0.0 +24659,15,15.5,14,0.0 +24659,26,31.23,3,0.0 +24659,54,7.45,49,0.0 +24659,66,17,9,0.0 +24659,23,9,38,0.0 +24659,6,25,3,0.0 +24659,12,38,17,0.0 +24659,5,21.35,24,0.0 +24659,17,39,24,0.0 +24659,52,7,23,0.0 +24659,31,12.5,50,0.0 +24660,23,9,8,0.0 +24660,53,32.8,7,0.0 +24660,2,19,36,0.0 +24660,4,22,31,0.0 +24660,30,25.89,37,0.0 +24660,22,21,14,0.0 +24660,32,32,10,0.0 +24660,70,15,2,0.0 +24660,69,36,3,0.0 +24660,25,14,24,0.0 +24660,44,19.45,13,0.0 +24660,14,23.25,2,0.0 +24660,65,21.05,29,0.0 +24660,8,40,13,0.0 +24660,47,9.5,17,0.0 +24660,21,10,41,0.0 +24660,58,13.25,37,0.0 +24660,13,6,31,0.0 +24660,66,17,43,0.0 +24660,73,15,40,0.0 +24660,51,53,28,0.0 +24660,11,21,10,0.0 +24660,55,24,50,0.0 +24660,61,28.5,20,0.0 +24660,10,31,28,0.0 +24660,12,38,36,0.0 +24660,68,12.5,25,0.0 +24660,1,18,22,0.0 +24660,71,21.5,27,0.0 +24660,39,18,46,0.0 +24660,74,10,7,0.0 +24660,7,30,24,0.0 +24660,57,19.5,16,0.0 +24660,15,15.5,28,0.0 +24660,31,12.5,3,0.0 +24660,46,12,49,0.0 +24660,38,263.5,15,0.0 +24660,60,34,29,0.0 +24660,29,123.79,45,0.0 +24660,48,12.75,11,0.0 +24660,59,55,46,0.0 +24660,27,43.9,2,0.0 +24660,33,2.5,46,0.0 +24660,75,7.75,8,0.0 +24660,52,7,33,0.0 +24661,10,31,15,0.0 +24661,26,31.23,20,0.0 +24661,14,23.25,33,0.0 +24661,62,49.3,12,0.0 +24661,73,15,24,0.0 +24661,36,19,32,0.0 +24661,65,21.05,44,0.0 +24661,3,10,7,0.0 +24661,24,4.5,50,0.0 +24661,27,43.9,25,0.0 +24661,21,10,6,0.0 +24661,68,12.5,27,0.0 +24661,77,13,49,0.0 +24661,57,19.5,4,0.0 +24661,22,21,39,0.0 +24661,40,18.4,26,0.0 +24661,76,18,45,0.0 +24661,67,14,43,0.0 +24661,72,34.8,26,0.0 +24661,35,18,49,0.0 +24661,19,9.2,28,0.0 +24661,33,2.5,46,0.0 +24661,75,7.75,48,0.0 +24661,56,38,38,0.0 +24661,5,21.35,20,0.0 +24661,30,25.89,32,0.0 +24661,23,9,38,0.0 +24661,1,18,22,0.0 +24662,23,9,31,0.0 +24662,12,38,28,0.0 +24662,44,19.45,2,0.0 +24662,53,32.8,9,0.0 +24662,34,14,15,0.0 +24662,70,15,39,0.0 +24662,25,14,37,0.0 +24662,55,24,7,0.0 +24662,37,26,44,0.0 +24662,65,21.05,4,0.0 +24662,58,13.25,16,0.0 +24662,77,13,48,0.0 +24662,49,20,3,0.0 +24662,33,2.5,37,0.0 +24662,57,19.5,25,0.0 +24662,41,9.65,27,0.0 +24662,31,12.5,2,0.0 +24662,52,7,9,0.0 +24662,16,17.45,27,0.0 +24662,13,6,49,0.0 +24662,29,123.79,42,0.0 +24662,69,36,32,0.0 +24662,4,22,12,0.0 +24662,64,33.25,50,0.0 +24662,45,9.5,45,0.0 +24662,19,9.2,4,0.0 +24662,73,15,29,0.0 +24662,28,45.6,20,0.0 +24662,10,31,13,0.0 +24662,42,14,44,0.0 +24662,59,55,48,0.0 +24662,60,34,3,0.0 +24662,1,18,38,0.0 +24662,22,21,47,0.0 +24662,54,7.45,38,0.0 +24662,43,46,24,0.0 +24662,11,21,1,0.0 +24662,38,263.5,46,0.0 +24662,21,10,2,0.0 +24662,15,15.5,37,0.0 +24662,48,12.75,46,0.0 +24662,14,23.25,46,0.0 +24662,24,4.5,22,0.0 +24662,17,39,32,0.0 +24662,6,25,45,0.0 +24662,2,19,41,0.0 +24662,30,25.89,6,0.0 +24662,39,18,28,0.0 +24662,63,43.9,32,0.0 +24662,47,9.5,2,0.0 +24662,67,14,47,0.0 +24662,71,21.5,48,0.0 +24662,74,10,34,0.0 +24662,27,43.9,32,0.0 +24662,56,38,11,0.0 +24662,18,62.5,27,0.0 +24662,61,28.5,16,0.0 +24662,9,97,16,0.0 +24662,7,30,30,0.0 +24662,5,21.35,48,0.0 +24662,62,49.3,13,0.0 +24662,66,17,13,0.0 +24662,20,81,35,0.0 +24662,3,10,3,0.0 +24662,35,18,41,0.0 +24662,72,34.8,4,0.0 +24662,8,40,31,0.0 +24662,51,53,37,0.0 +24662,40,18.4,19,0.0 +24662,36,19,13,0.0 +24662,75,7.75,45,0.0 +24662,32,32,43,0.0 +24662,26,31.23,5,0.0 +24662,46,12,21,0.0 +24662,50,16.25,12,0.0 +24662,76,18,13,0.0 +24662,68,12.5,45,0.0 +24663,3,10,23,0.0 +24663,1,18,50,0.0 +24663,14,23.25,7,0.0 +24663,24,4.5,6,0.0 +24663,64,33.25,32,0.0 +24663,70,15,8,0.0 +24663,73,15,12,0.0 +24663,59,55,47,0.0 +24663,21,10,36,0.0 +24663,58,13.25,2,0.0 +24663,56,38,34,0.0 +24663,36,19,9,0.0 +24663,28,45.6,39,0.0 +24663,18,62.5,7,0.0 +24663,66,17,43,0.0 +24663,54,7.45,40,0.0 +24663,72,34.8,26,0.0 +24663,11,21,16,0.0 +24663,30,25.89,33,0.0 +24663,27,43.9,38,0.0 +24663,4,22,15,0.0 +24663,13,6,16,0.0 +24663,62,49.3,17,0.0 +24663,2,19,23,0.0 +24663,23,9,21,0.0 +24663,53,32.8,14,0.0 +24663,51,53,49,0.0 +24663,10,31,8,0.0 +24663,42,14,28,0.0 +24663,60,34,24,0.0 +24663,26,31.23,20,0.0 +24663,48,12.75,47,0.0 +24663,31,12.5,5,0.0 +24663,19,9.2,14,0.0 +24663,47,9.5,48,0.0 +24663,52,7,12,0.0 +24663,7,30,14,0.0 +24663,20,81,1,0.0 +24663,15,15.5,28,0.0 +24663,69,36,45,0.0 +24664,13,6,13,0.0 +24664,56,38,49,0.0 +24664,61,28.5,21,0.0 +24664,77,13,40,0.0 +24664,16,17.45,15,0.0 +24664,74,10,40,0.0 +24664,75,7.75,33,0.0 +24664,43,46,15,0.0 +24664,48,12.75,32,0.0 +24664,38,263.5,3,0.0 +24664,34,14,39,0.0 +24664,17,39,47,0.0 +24664,59,55,15,0.0 +24664,73,15,13,0.0 +24664,7,30,7,0.0 +24664,58,13.25,37,0.0 +24664,35,18,5,0.0 +24664,44,19.45,35,0.0 +24664,66,17,31,0.0 +24664,57,19.5,3,0.0 +24664,76,18,1,0.0 +24664,37,26,10,0.0 +24664,6,25,33,0.0 +24665,35,18,34,0.0 +24665,49,20,49,0.0 +24665,25,14,20,0.0 +24666,28,45.6,48,0.0 +24666,72,34.8,26,0.0 +24666,45,9.5,35,0.0 +24666,73,15,31,0.0 +24666,65,21.05,49,0.0 +24666,21,10,29,0.0 +24666,25,14,49,0.0 +24666,63,43.9,37,0.0 +24666,56,38,41,0.0 +24666,33,2.5,41,0.0 +24666,51,53,1,0.0 +24666,60,34,32,0.0 +24666,76,18,2,0.0 +24666,23,9,40,0.0 +24666,1,18,4,0.0 +24666,16,17.45,12,0.0 +24666,19,9.2,8,0.0 +24666,54,7.45,22,0.0 +24666,39,18,50,0.0 +24666,44,19.45,10,0.0 +24666,9,97,15,0.0 +24666,5,21.35,6,0.0 +24667,75,7.75,26,0.0 +24667,5,21.35,36,0.0 +24667,63,43.9,35,0.0 +24667,50,16.25,29,0.0 +24667,48,12.75,5,0.0 +24667,6,25,49,0.0 +24667,43,46,27,0.0 +24667,17,39,12,0.0 +24667,2,19,43,0.0 +24667,27,43.9,43,0.0 +24667,26,31.23,13,0.0 +24667,54,7.45,32,0.0 +24667,3,10,10,0.0 +24667,45,9.5,10,0.0 +24667,64,33.25,38,0.0 +24667,37,26,22,0.0 +24667,69,36,3,0.0 +24667,71,21.5,3,0.0 +24667,70,15,22,0.0 +24667,15,15.5,10,0.0 +24667,76,18,6,0.0 +24667,8,40,21,0.0 +24667,72,34.8,12,0.0 +24667,1,18,35,0.0 +24667,34,14,36,0.0 +24667,56,38,48,0.0 +24667,19,9.2,26,0.0 +24667,38,263.5,21,0.0 +24667,60,34,43,0.0 +24667,67,14,32,0.0 +24667,49,20,24,0.0 +24667,40,18.4,34,0.0 +24667,32,32,42,0.0 +24667,18,62.5,34,0.0 +24667,42,14,40,0.0 +24667,16,17.45,11,0.0 +24667,12,38,26,0.0 +24667,66,17,31,0.0 +24667,68,12.5,4,0.0 +24667,9,97,17,0.0 +24667,55,24,46,0.0 +24667,46,12,24,0.0 +24667,74,10,47,0.0 +24667,36,19,6,0.0 +24667,22,21,48,0.0 +24667,57,19.5,19,0.0 +24667,33,2.5,44,0.0 +24667,77,13,3,0.0 +24667,31,12.5,22,0.0 +24667,10,31,2,0.0 +24667,13,6,43,0.0 +24667,58,13.25,41,0.0 +24667,25,14,43,0.0 +24667,11,21,8,0.0 +24668,41,9.65,6,0.0 +24668,8,40,44,0.0 +24668,2,19,1,0.0 +24668,23,9,50,0.0 +24668,42,14,27,0.0 +24668,75,7.75,47,0.0 +24668,43,46,16,0.0 +24668,28,45.6,40,0.0 +24668,47,9.5,19,0.0 +24668,10,31,32,0.0 +24668,15,15.5,3,0.0 +24668,33,2.5,9,0.0 +24668,37,26,2,0.0 +24668,73,15,44,0.0 +24668,62,49.3,50,0.0 +24668,30,25.89,14,0.0 +24668,45,9.5,12,0.0 +24668,35,18,3,0.0 +24668,17,39,38,0.0 +24668,39,18,45,0.0 +24668,19,9.2,49,0.0 +24668,25,14,12,0.0 +24668,64,33.25,20,0.0 +24668,32,32,16,0.0 +24668,20,81,30,0.0 +24668,69,36,2,0.0 +24668,22,21,44,0.0 +24668,1,18,8,0.0 +24668,5,21.35,24,0.0 +24668,63,43.9,16,0.0 +24668,6,25,12,0.0 +24668,14,23.25,46,0.0 +24668,12,38,47,0.0 +24668,68,12.5,9,0.0 +24668,57,19.5,18,0.0 +24668,34,14,17,0.0 +24668,49,20,13,0.0 +24668,72,34.8,42,0.0 +24668,76,18,45,0.0 +24668,67,14,18,0.0 +24668,60,34,38,0.0 +24668,61,28.5,34,0.0 +24668,11,21,15,0.0 +24668,44,19.45,8,0.0 +24668,65,21.05,21,0.0 +24668,58,13.25,6,0.0 +24668,31,12.5,49,0.0 +24668,46,12,27,0.0 +24668,77,13,22,0.0 +24668,29,123.79,27,0.0 +24668,24,4.5,21,0.0 +24668,48,12.75,3,0.0 +24668,55,24,17,0.0 +24668,3,10,46,0.0 +24668,27,43.9,5,0.0 +24668,26,31.23,41,0.0 +24668,21,10,40,0.0 +24668,13,6,20,0.0 +24668,74,10,4,0.0 +24668,36,19,19,0.0 +24668,40,18.4,19,0.0 +24668,50,16.25,20,0.0 +24668,66,17,28,0.0 +24668,53,32.8,44,0.0 +24668,4,22,31,0.0 +24668,71,21.5,35,0.0 +24668,70,15,29,0.0 +24668,38,263.5,46,0.0 +24668,54,7.45,1,0.0 +24668,7,30,25,0.0 +24668,52,7,47,0.0 +24668,18,62.5,4,0.0 +24668,16,17.45,26,0.0 +24668,51,53,27,0.0 +24668,56,38,3,0.0 +24669,70,15,37,0.0 +24669,14,23.25,49,0.0 +24669,20,81,36,0.0 +24669,65,21.05,5,0.0 +24669,23,9,12,0.0 +24669,74,10,16,0.0 +24669,76,18,3,0.0 +24669,8,40,19,0.0 +24669,24,4.5,36,0.0 +24669,43,46,39,0.0 +24669,61,28.5,4,0.0 +24669,10,31,18,0.0 +24669,44,19.45,17,0.0 +24669,36,19,42,0.0 +24669,9,97,20,0.0 +24669,46,12,29,0.0 +24669,52,7,41,0.0 +24669,37,26,10,0.0 +24669,57,19.5,16,0.0 +24669,60,34,50,0.0 +24669,71,21.5,16,0.0 +24669,13,6,24,0.0 +24669,19,9.2,27,0.0 +24669,18,62.5,3,0.0 +24669,25,14,30,0.0 +24669,75,7.75,1,0.0 +24669,17,39,15,0.0 +24669,64,33.25,50,0.0 +24669,67,14,29,0.0 +24669,31,12.5,20,0.0 +24669,59,55,11,0.0 +24669,39,18,40,0.0 +24669,11,21,9,0.0 +24669,69,36,1,0.0 +24669,40,18.4,5,0.0 +24669,35,18,19,0.0 +24669,68,12.5,34,0.0 +24669,2,19,34,0.0 +24669,50,16.25,8,0.0 +24669,5,21.35,18,0.0 +24669,6,25,5,0.0 +24669,73,15,44,0.0 +24669,41,9.65,41,0.0 +24669,12,38,27,0.0 +24669,38,263.5,31,0.0 +24669,47,9.5,14,0.0 +24669,34,14,14,0.0 +24669,55,24,44,0.0 +24669,72,34.8,4,0.0 +24669,1,18,11,0.0 +24669,48,12.75,27,0.0 +24669,32,32,13,0.0 +24669,22,21,8,0.0 +24669,7,30,21,0.0 +24669,45,9.5,10,0.0 +24669,42,14,40,0.0 +24669,3,10,30,0.0 +24669,49,20,24,0.0 +24669,16,17.45,32,0.0 +24669,26,31.23,21,0.0 +24669,66,17,23,0.0 +24669,21,10,39,0.0 +24669,4,22,32,0.0 +24669,62,49.3,37,0.0 +24669,28,45.6,36,0.0 +24669,30,25.89,14,0.0 +24669,51,53,8,0.0 +24669,63,43.9,13,0.0 +24669,58,13.25,32,0.0 +24669,56,38,32,0.0 +24669,33,2.5,27,0.0 +24669,15,15.5,10,0.0 +24669,27,43.9,12,0.0 +24669,54,7.45,4,0.0 +24669,29,123.79,38,0.0 +24670,53,32.8,43,0.0 +24670,56,38,15,0.0 +24670,19,9.2,6,0.0 +24670,40,18.4,17,0.0 +24670,22,21,13,0.0 +24670,47,9.5,5,0.0 +24670,58,13.25,42,0.0 +24670,18,62.5,15,0.0 +24670,32,32,31,0.0 +24670,25,14,32,0.0 +24670,41,9.65,7,0.0 +24670,65,21.05,10,0.0 +24670,73,15,16,0.0 +24670,26,31.23,13,0.0 +24670,7,30,33,0.0 +24670,33,2.5,34,0.0 +24670,23,9,40,0.0 +24670,67,14,10,0.0 +24670,10,31,28,0.0 +24670,70,15,35,0.0 +24670,51,53,17,0.0 +24670,62,49.3,36,0.0 +24670,55,24,15,0.0 +24670,39,18,12,0.0 +24670,59,55,49,0.0 +24670,63,43.9,37,0.0 +24670,71,21.5,3,0.0 +24670,76,18,35,0.0 +24670,68,12.5,36,0.0 +24670,16,17.45,41,0.0 +24670,20,81,21,0.0 +24670,28,45.6,31,0.0 +24670,5,21.35,10,0.0 +24670,17,39,15,0.0 +24670,24,4.5,49,0.0 +24670,74,10,28,0.0 +24670,46,12,5,0.0 +24670,66,17,50,0.0 +24670,36,19,30,0.0 +24670,38,263.5,48,0.0 +24670,6,25,4,0.0 +24670,4,22,50,0.0 +24670,9,97,50,0.0 +24670,54,7.45,31,0.0 +24670,77,13,32,0.0 +24670,69,36,48,0.0 +24670,72,34.8,8,0.0 +24670,27,43.9,46,0.0 +24670,29,123.79,7,0.0 +24670,52,7,25,0.0 +24670,1,18,42,0.0 +24670,13,6,1,0.0 +24670,21,10,4,0.0 +24670,3,10,32,0.0 +24670,64,33.25,2,0.0 +24670,34,14,13,0.0 +24670,14,23.25,26,0.0 +24670,75,7.75,15,0.0 +24670,45,9.5,38,0.0 +24670,60,34,33,0.0 +24670,30,25.89,30,0.0 +24670,11,21,42,0.0 +24670,15,15.5,50,0.0 +24670,2,19,31,0.0 +24670,50,16.25,25,0.0 +24671,6,25,46,0.0 +24671,53,32.8,1,0.0 +24671,21,10,49,0.0 +24671,19,9.2,44,0.0 +24671,70,15,45,0.0 +24671,31,12.5,44,0.0 +24671,59,55,38,0.0 +24671,52,7,24,0.0 +24671,68,12.5,16,0.0 +24671,12,38,18,0.0 +24671,67,14,24,0.0 +24671,51,53,33,0.0 +24671,62,49.3,23,0.0 +24671,23,9,20,0.0 +24671,61,28.5,15,0.0 +24671,73,15,48,0.0 +24671,57,19.5,49,0.0 +24671,58,13.25,21,0.0 +24671,47,9.5,34,0.0 +24671,50,16.25,3,0.0 +24671,22,21,2,0.0 +24671,24,4.5,30,0.0 +24671,44,19.45,24,0.0 +24671,7,30,5,0.0 +24671,34,14,9,0.0 +24671,54,7.45,44,0.0 +24671,11,21,19,0.0 +24671,39,18,21,0.0 +24671,15,15.5,6,0.0 +24671,32,32,39,0.0 +24671,41,9.65,9,0.0 +24671,46,12,39,0.0 +24671,13,6,39,0.0 +24671,45,9.5,40,0.0 +24671,36,19,29,0.0 +24671,14,23.25,4,0.0 +24671,5,21.35,3,0.0 +24671,38,263.5,3,0.0 +24671,63,43.9,41,0.0 +24671,2,19,38,0.0 +24671,18,62.5,21,0.0 +24671,27,43.9,30,0.0 +24671,35,18,6,0.0 +24671,76,18,23,0.0 +24671,64,33.25,46,0.0 +24671,9,97,11,0.0 +24671,65,21.05,11,0.0 +24671,40,18.4,4,0.0 +24671,29,123.79,44,0.0 +24671,28,45.6,38,0.0 +24671,49,20,38,0.0 +24671,43,46,31,0.0 +24672,53,32.8,44,0.0 +24672,24,4.5,41,0.0 +24672,13,6,25,0.0 +24672,45,9.5,6,0.0 +24672,63,43.9,14,0.0 +24672,20,81,32,0.0 +24672,64,33.25,30,0.0 +24672,54,7.45,27,0.0 +24672,6,25,17,0.0 +24672,2,19,44,0.0 +24672,37,26,6,0.0 +24672,77,13,27,0.0 +24672,36,19,17,0.0 +24672,4,22,49,0.0 +24672,50,16.25,46,0.0 +24672,58,13.25,18,0.0 +24672,11,21,37,0.0 +24672,70,15,2,0.0 +24672,61,28.5,21,0.0 +24672,7,30,15,0.0 +24672,34,14,21,0.0 +24672,62,49.3,27,0.0 +24672,59,55,28,0.0 +24672,30,25.89,11,0.0 +24673,69,36,7,0.0 +24673,58,13.25,29,0.0 +24673,71,21.5,34,0.0 +24673,12,38,19,0.0 +24673,54,7.45,4,0.0 +24673,49,20,34,0.0 +24673,10,31,3,0.0 +24673,8,40,49,0.0 +24673,60,34,27,0.0 +24673,15,15.5,41,0.0 +24673,31,12.5,36,0.0 +24673,27,43.9,9,0.0 +24673,42,14,23,0.0 +24673,56,38,25,0.0 +24673,75,7.75,1,0.0 +24673,16,17.45,44,0.0 +24673,35,18,30,0.0 +24673,53,32.8,4,0.0 +24673,40,18.4,27,0.0 +24673,25,14,21,0.0 +24673,20,81,9,0.0 +24673,28,45.6,46,0.0 +24673,46,12,39,0.0 +24673,14,23.25,34,0.0 +24673,34,14,28,0.0 +24673,51,53,41,0.0 +24673,65,21.05,25,0.0 +24673,43,46,35,0.0 +24673,59,55,37,0.0 +24673,66,17,38,0.0 +24673,24,4.5,5,0.0 +24673,73,15,21,0.0 +24673,63,43.9,25,0.0 +24673,6,25,16,0.0 +24673,67,14,24,0.0 +24673,19,9.2,12,0.0 +24673,52,7,25,0.0 +24673,13,6,6,0.0 +24673,30,25.89,12,0.0 +24674,9,97,50,0.0 +24674,48,12.75,44,0.0 +24674,20,81,24,0.0 +24674,26,31.23,44,0.0 +24674,16,17.45,2,0.0 +24674,31,12.5,6,0.0 +24674,50,16.25,11,0.0 +24675,3,10,16,0.0 +24675,40,18.4,46,0.0 +24675,20,81,5,0.0 +24675,72,34.8,14,0.0 +24675,52,7,38,0.0 +24675,32,32,8,0.0 +24675,2,19,32,0.0 +24675,16,17.45,24,0.0 +24675,29,123.79,14,0.0 +24675,48,12.75,37,0.0 +24675,19,9.2,24,0.0 +24675,62,49.3,40,0.0 +24675,46,12,41,0.0 +24675,25,14,29,0.0 +24675,18,62.5,31,0.0 +24675,26,31.23,40,0.0 +24675,5,21.35,17,0.0 +24675,28,45.6,40,0.0 +24675,24,4.5,50,0.0 +24675,74,10,23,0.0 +24675,15,15.5,46,0.0 +24675,71,21.5,32,0.0 +24675,27,43.9,49,0.0 +24675,9,97,13,0.0 +24675,1,18,42,0.0 +24675,75,7.75,32,0.0 +24675,51,53,21,0.0 +24675,23,9,35,0.0 +24675,8,40,50,0.0 +24675,57,19.5,12,0.0 +24675,55,24,8,0.0 +24675,37,26,47,0.0 +24675,33,2.5,23,0.0 +24675,69,36,2,0.0 +24675,31,12.5,2,0.0 +24675,30,25.89,8,0.0 +24675,49,20,41,0.0 +24675,22,21,18,0.0 +24675,44,19.45,7,0.0 +24675,35,18,20,0.0 +24675,58,13.25,13,0.0 +24675,14,23.25,47,0.0 +24675,47,9.5,36,0.0 +24675,45,9.5,23,0.0 +24675,12,38,42,0.0 +24675,59,55,27,0.0 +24675,43,46,5,0.0 +24675,56,38,32,0.0 +24675,6,25,2,0.0 +24675,63,43.9,18,0.0 +24675,61,28.5,38,0.0 +24675,64,33.25,32,0.0 +24675,21,10,27,0.0 +24675,66,17,17,0.0 +24675,68,12.5,38,0.0 +24675,10,31,7,0.0 +24675,76,18,32,0.0 +24675,7,30,30,0.0 +24675,54,7.45,45,0.0 +24675,73,15,12,0.0 +24675,42,14,29,0.0 +24675,38,263.5,11,0.0 +24675,41,9.65,36,0.0 +24675,70,15,8,0.0 +24675,13,6,38,0.0 +24675,36,19,1,0.0 +24675,34,14,15,0.0 +24675,17,39,39,0.0 +24675,4,22,1,0.0 +24675,65,21.05,28,0.0 +24676,47,9.5,23,0.0 +24676,9,97,8,0.0 +24676,34,14,16,0.0 +24676,60,34,14,0.0 +24676,71,21.5,21,0.0 +24676,70,15,22,0.0 +24676,67,14,25,0.0 +24676,13,6,14,0.0 +24676,74,10,9,0.0 +24676,19,9.2,3,0.0 +24676,63,43.9,20,0.0 +24676,38,263.5,27,0.0 +24676,5,21.35,28,0.0 +24676,52,7,7,0.0 +24676,73,15,34,0.0 +24676,46,12,25,0.0 +24676,26,31.23,22,0.0 +24676,69,36,37,0.0 +24676,15,15.5,24,0.0 +24676,16,17.45,42,0.0 +24676,20,81,13,0.0 +24676,14,23.25,19,0.0 +24676,32,32,11,0.0 +24676,55,24,24,0.0 +24676,48,12.75,36,0.0 +24676,68,12.5,3,0.0 +24676,28,45.6,30,0.0 +24676,12,38,25,0.0 +24676,58,13.25,5,0.0 +24676,49,20,6,0.0 +24676,33,2.5,25,0.0 +24676,21,10,2,0.0 +24676,43,46,15,0.0 +24676,31,12.5,24,0.0 +24676,44,19.45,44,0.0 +24676,25,14,46,0.0 +24676,41,9.65,18,0.0 +24676,59,55,23,0.0 +24676,39,18,29,0.0 +24676,50,16.25,31,0.0 +24676,77,13,35,0.0 +24676,56,38,9,0.0 +24676,18,62.5,29,0.0 +24676,72,34.8,25,0.0 +24676,17,39,40,0.0 +24676,23,9,29,0.0 +24676,11,21,5,0.0 +24676,29,123.79,10,0.0 +24676,22,21,31,0.0 +24676,54,7.45,2,0.0 +24676,35,18,14,0.0 +24676,37,26,42,0.0 +24676,64,33.25,11,0.0 +24676,2,19,1,0.0 +24676,62,49.3,4,0.0 +24676,4,22,4,0.0 +24676,27,43.9,21,0.0 +24676,30,25.89,32,0.0 +24676,53,32.8,31,0.0 +24676,40,18.4,1,0.0 +24676,61,28.5,13,0.0 +24676,7,30,25,0.0 +24676,57,19.5,17,0.0 +24676,65,21.05,24,0.0 +24676,24,4.5,11,0.0 +24676,76,18,37,0.0 +24677,61,28.5,26,0.0 +24677,42,14,25,0.0 +24677,59,55,48,0.0 +24677,2,19,6,0.0 +24677,15,15.5,29,0.0 +24677,5,21.35,15,0.0 +24677,7,30,23,0.0 +24677,20,81,29,0.0 +24677,60,34,2,0.0 +24677,58,13.25,36,0.0 +24677,62,49.3,15,0.0 +24677,52,7,14,0.0 +24677,29,123.79,1,0.0 +24677,53,32.8,45,0.0 +24677,69,36,33,0.0 +24677,49,20,16,0.0 +24677,66,17,22,0.0 +24677,33,2.5,49,0.0 +24677,35,18,25,0.0 +24677,16,17.45,12,0.0 +24677,68,12.5,27,0.0 +24677,41,9.65,30,0.0 +24677,44,19.45,33,0.0 +24677,36,19,46,0.0 +24677,1,18,9,0.0 +24677,34,14,17,0.0 +24677,26,31.23,19,0.0 +24677,57,19.5,27,0.0 +24677,9,97,14,0.0 +24677,8,40,3,0.0 +24677,6,25,40,0.0 +24677,54,7.45,31,0.0 +24677,12,38,35,0.0 +24677,3,10,34,0.0 +24677,74,10,7,0.0 +24677,77,13,34,0.0 +24677,38,263.5,23,0.0 +24677,46,12,3,0.0 +24677,51,53,41,0.0 +24677,73,15,34,0.0 +24677,65,21.05,17,0.0 +24677,45,9.5,48,0.0 +24677,10,31,42,0.0 +24677,76,18,46,0.0 +24677,71,21.5,23,0.0 +24677,56,38,36,0.0 +24677,14,23.25,28,0.0 +24677,21,10,18,0.0 +24677,17,39,39,0.0 +24677,37,26,6,0.0 +24677,64,33.25,13,0.0 +24677,75,7.75,21,0.0 +24677,63,43.9,17,0.0 +24677,24,4.5,18,0.0 +24677,27,43.9,36,0.0 +24677,18,62.5,12,0.0 +24677,43,46,20,0.0 +24677,13,6,13,0.0 +24677,39,18,3,0.0 +24677,25,14,23,0.0 +24677,67,14,4,0.0 +24677,11,21,31,0.0 +24677,72,34.8,35,0.0 +24677,47,9.5,37,0.0 +24677,70,15,26,0.0 +24677,28,45.6,32,0.0 +24677,22,21,44,0.0 +24677,19,9.2,42,0.0 +24678,51,53,45,0.0 +24678,43,46,9,0.0 +24678,35,18,28,0.0 +24678,18,62.5,2,0.0 +24678,56,38,28,0.0 +24678,26,31.23,39,0.0 +24678,1,18,2,0.0 +24678,38,263.5,1,0.0 +24678,16,17.45,7,0.0 +24678,23,9,28,0.0 +24678,69,36,34,0.0 +24678,7,30,30,0.0 +24678,75,7.75,2,0.0 +24678,21,10,5,0.0 +24678,8,40,40,0.0 +24678,76,18,38,0.0 +24678,60,34,42,0.0 +24678,2,19,43,0.0 +24678,36,19,18,0.0 +24678,48,12.75,3,0.0 +24678,5,21.35,35,0.0 +24678,70,15,46,0.0 +24678,55,24,13,0.0 +24678,9,97,22,0.0 +24678,50,16.25,7,0.0 +24678,47,9.5,23,0.0 +24678,74,10,23,0.0 +24678,27,43.9,2,0.0 +24678,20,81,38,0.0 +24678,66,17,4,0.0 +24679,21,10,10,0.0 +24679,50,16.25,36,0.0 +24679,40,18.4,26,0.0 +24679,75,7.75,46,0.0 +24679,20,81,1,0.0 +24679,28,45.6,31,0.0 +24679,74,10,30,0.0 +24679,52,7,34,0.0 +24679,9,97,36,0.0 +24679,7,30,21,0.0 +24679,31,12.5,18,0.0 +24679,55,24,25,0.0 +24679,66,17,25,0.0 +24679,64,33.25,3,0.0 +24679,1,18,41,0.0 +24679,48,12.75,31,0.0 +24679,24,4.5,9,0.0 +24679,8,40,24,0.0 +24679,77,13,35,0.0 +24679,23,9,4,0.0 +24679,33,2.5,19,0.0 +24679,17,39,5,0.0 +24679,68,12.5,24,0.0 +24679,19,9.2,27,0.0 +24679,42,14,12,0.0 +24679,71,21.5,17,0.0 +24679,70,15,35,0.0 +24679,51,53,15,0.0 +24680,66,17,41,0.0 +24680,3,10,18,0.0 +24680,31,12.5,13,0.0 +24680,4,22,5,0.0 +24680,45,9.5,30,0.0 +24680,27,43.9,42,0.0 +24680,70,15,7,0.0 +24680,53,32.8,12,0.0 +24680,60,34,41,0.0 +24680,39,18,4,0.0 +24680,74,10,37,0.0 +24680,50,16.25,4,0.0 +24680,15,15.5,11,0.0 +24680,68,12.5,18,0.0 +24680,9,97,31,0.0 +24680,56,38,50,0.0 +24680,24,4.5,40,0.0 +24680,28,45.6,40,0.0 +24680,55,24,36,0.0 +24680,42,14,16,0.0 +24680,5,21.35,5,0.0 +24680,8,40,27,0.0 +24680,58,13.25,26,0.0 +24680,13,6,29,0.0 +24680,72,34.8,7,0.0 +24680,49,20,4,0.0 +24680,29,123.79,7,0.0 +24680,57,19.5,13,0.0 +24680,35,18,7,0.0 +24680,38,263.5,1,0.0 +24680,33,2.5,36,0.0 +24680,47,9.5,42,0.0 +24680,64,33.25,40,0.0 +24680,1,18,37,0.0 +24680,43,46,42,0.0 +24680,34,14,23,0.0 +24681,62,49.3,23,0.0 +24681,73,15,19,0.0 +24681,18,62.5,27,0.0 +24681,28,45.6,26,0.0 +24681,37,26,27,0.0 +24681,48,12.75,48,0.0 +24681,77,13,49,0.0 +24681,4,22,3,0.0 +24681,51,53,3,0.0 +24681,21,10,34,0.0 +24681,69,36,36,0.0 +24681,31,12.5,7,0.0 +24681,30,25.89,40,0.0 +24681,11,21,30,0.0 +24681,66,17,19,0.0 +24681,44,19.45,26,0.0 +24681,25,14,8,0.0 +24681,7,30,12,0.0 +24681,76,18,5,0.0 +24681,55,24,40,0.0 +24681,26,31.23,21,0.0 +24681,58,13.25,12,0.0 +24681,1,18,4,0.0 +24681,12,38,47,0.0 +24681,74,10,30,0.0 +24682,28,45.6,38,0.0 +24682,51,53,15,0.0 +24682,43,46,20,0.0 +24682,58,13.25,24,0.0 +24682,62,49.3,25,0.0 +24682,68,12.5,14,0.0 +24682,53,32.8,31,0.0 +24682,64,33.25,13,0.0 +24682,33,2.5,49,0.0 +24682,73,15,12,0.0 +24682,26,31.23,50,0.0 +24682,16,17.45,35,0.0 +24682,13,6,20,0.0 +24682,49,20,3,0.0 +24682,14,23.25,4,0.0 +24682,2,19,19,0.0 +24682,40,18.4,50,0.0 +24682,24,4.5,49,0.0 +24682,41,9.65,47,0.0 +24682,11,21,37,0.0 +24683,15,15.5,9,0.0 +24683,7,30,14,0.0 +24683,16,17.45,23,0.0 +24683,56,38,41,0.0 +24683,43,46,31,0.0 +24683,9,97,33,0.0 +24683,46,12,29,0.0 +24683,49,20,43,0.0 +24683,31,12.5,12,0.0 +24683,74,10,46,0.0 +24683,27,43.9,47,0.0 +24683,5,21.35,16,0.0 +24683,51,53,28,0.0 +24683,8,40,38,0.0 +24683,55,24,16,0.0 +24683,68,12.5,31,0.0 +24683,75,7.75,34,0.0 +24683,70,15,4,0.0 +24683,54,7.45,34,0.0 +24683,47,9.5,9,0.0 +24683,72,34.8,31,0.0 +24683,10,31,31,0.0 +24683,2,19,29,0.0 +24683,66,17,37,0.0 +24683,6,25,5,0.0 +24683,1,18,9,0.0 +24683,35,18,6,0.0 +24683,41,9.65,35,0.0 +24683,11,21,35,0.0 +24683,57,19.5,24,0.0 +24683,58,13.25,26,0.0 +24683,69,36,39,0.0 +24683,26,31.23,39,0.0 +24683,25,14,19,0.0 +24683,53,32.8,1,0.0 +24683,77,13,9,0.0 +24683,52,7,42,0.0 +24683,22,21,2,0.0 +24683,62,49.3,5,0.0 +24683,37,26,28,0.0 +24683,38,263.5,22,0.0 +24683,17,39,12,0.0 +24683,33,2.5,4,0.0 +24683,44,19.45,48,0.0 +24683,36,19,44,0.0 +24683,65,21.05,37,0.0 +24683,61,28.5,26,0.0 +24683,63,43.9,17,0.0 +24683,60,34,44,0.0 +24684,73,15,25,0.0 +24684,52,7,29,0.0 +24684,11,21,1,0.0 +24684,65,21.05,38,0.0 +24684,38,263.5,14,0.0 +24684,24,4.5,11,0.0 +24684,14,23.25,44,0.0 +24684,63,43.9,20,0.0 +24684,58,13.25,39,0.0 +24684,47,9.5,39,0.0 +24684,12,38,36,0.0 +24684,27,43.9,27,0.0 +24684,50,16.25,32,0.0 +24684,46,12,14,0.0 +24684,62,49.3,1,0.0 +24684,54,7.45,14,0.0 +24684,60,34,9,0.0 +24684,43,46,5,0.0 +24684,67,14,22,0.0 +24684,4,22,41,0.0 +24684,17,39,21,0.0 +24684,9,97,21,0.0 +24684,44,19.45,6,0.0 +24684,68,12.5,37,0.0 +24684,51,53,1,0.0 +24684,2,19,19,0.0 +24684,26,31.23,5,0.0 +24685,33,2.5,18,0.0 +24685,47,9.5,7,0.0 +24685,19,9.2,16,0.0 +24685,13,6,13,0.0 +24685,52,7,18,0.0 +24685,15,15.5,4,0.0 +24685,48,12.75,33,0.0 +24686,49,20,16,0.0 +24686,53,32.8,33,0.0 +24686,8,40,12,0.0 +24686,38,263.5,38,0.0 +24686,34,14,22,0.0 +24686,5,21.35,20,0.0 +24686,36,19,45,0.0 +24686,42,14,7,0.0 +24686,15,15.5,39,0.0 +24686,57,19.5,34,0.0 +24686,51,53,38,0.0 +24686,45,9.5,22,0.0 +24686,56,38,23,0.0 +24686,64,33.25,1,0.0 +24686,60,34,41,0.0 +24686,61,28.5,6,0.0 +24686,65,21.05,46,0.0 +24686,44,19.45,4,0.0 +24686,11,21,16,0.0 +24686,50,16.25,14,0.0 +24686,22,21,17,0.0 +24686,23,9,43,0.0 +24686,63,43.9,37,0.0 +24686,33,2.5,35,0.0 +24686,39,18,46,0.0 +24686,68,12.5,29,0.0 +24686,20,81,18,0.0 +24686,31,12.5,12,0.0 +24686,17,39,22,0.0 +24686,52,7,25,0.0 +24686,71,21.5,34,0.0 +24686,55,24,38,0.0 +24686,77,13,32,0.0 +24686,19,9.2,6,0.0 +24686,29,123.79,32,0.0 +24686,66,17,1,0.0 +24686,26,31.23,20,0.0 +24686,24,4.5,42,0.0 +24686,73,15,10,0.0 +24686,58,13.25,43,0.0 +24686,3,10,5,0.0 +24686,30,25.89,37,0.0 +24686,48,12.75,9,0.0 +24687,8,40,42,0.0 +24687,13,6,28,0.0 +24687,5,21.35,6,0.0 +24687,75,7.75,24,0.0 +24687,46,12,3,0.0 +24687,52,7,40,0.0 +24687,28,45.6,24,0.0 +24687,9,97,35,0.0 +24687,21,10,29,0.0 +24687,31,12.5,44,0.0 +24687,67,14,3,0.0 +24688,30,25.89,42,0.0 +24688,74,10,5,0.0 +24688,52,7,28,0.0 +24688,27,43.9,9,0.0 +24688,38,263.5,43,0.0 +24688,1,18,7,0.0 +24688,29,123.79,8,0.0 +24688,53,32.8,6,0.0 +24688,72,34.8,48,0.0 +24688,20,81,40,0.0 +24688,47,9.5,20,0.0 +24688,62,49.3,30,0.0 +24688,67,14,20,0.0 +24688,11,21,20,0.0 +24688,25,14,47,0.0 +24688,21,10,24,0.0 +24688,49,20,38,0.0 +24688,28,45.6,23,0.0 +24688,64,33.25,49,0.0 +24688,16,17.45,40,0.0 +24688,15,15.5,10,0.0 +24688,33,2.5,3,0.0 +24688,56,38,42,0.0 +24688,4,22,49,0.0 +24688,14,23.25,20,0.0 +24688,77,13,50,0.0 +24688,35,18,9,0.0 +24688,54,7.45,18,0.0 +24688,8,40,29,0.0 +24688,63,43.9,4,0.0 +24688,22,21,40,0.0 +24688,48,12.75,16,0.0 +24688,42,14,20,0.0 +24688,75,7.75,8,0.0 +24688,9,97,16,0.0 +24688,55,24,15,0.0 +24688,40,18.4,36,0.0 +24688,37,26,21,0.0 +24688,59,55,28,0.0 +24688,2,19,6,0.0 +24688,5,21.35,33,0.0 +24688,69,36,37,0.0 +24688,19,9.2,48,0.0 +24688,34,14,46,0.0 +24688,7,30,43,0.0 +24689,40,18.4,34,0.0 +24689,46,12,49,0.0 +24689,52,7,38,0.0 +24689,53,32.8,7,0.0 +24689,41,9.65,39,0.0 +24689,61,28.5,30,0.0 +24689,62,49.3,39,0.0 +24689,9,97,35,0.0 +24689,3,10,35,0.0 +24689,12,38,7,0.0 +24689,66,17,49,0.0 +24689,72,34.8,18,0.0 +24689,58,13.25,14,0.0 +24689,15,15.5,25,0.0 +24689,77,13,19,0.0 +24689,36,19,30,0.0 +24689,74,10,18,0.0 +24689,44,19.45,32,0.0 +24689,6,25,45,0.0 +24689,64,33.25,46,0.0 +24689,47,9.5,35,0.0 +24689,16,17.45,46,0.0 +24689,22,21,34,0.0 +24689,70,15,32,0.0 +24689,18,62.5,29,0.0 +24689,4,22,12,0.0 +24689,14,23.25,25,0.0 +24689,57,19.5,11,0.0 +24690,6,25,18,0.0 +24690,7,30,41,0.0 +24690,42,14,17,0.0 +24690,19,9.2,32,0.0 +24690,52,7,1,0.0 +24690,11,21,49,0.0 +24690,41,9.65,8,0.0 +24690,14,23.25,31,0.0 +24690,21,10,39,0.0 +24690,72,34.8,32,0.0 +24690,67,14,35,0.0 +24690,61,28.5,2,0.0 +24690,33,2.5,46,0.0 +24690,56,38,39,0.0 +24690,35,18,18,0.0 +24690,66,17,4,0.0 +24690,48,12.75,19,0.0 +24690,28,45.6,28,0.0 +24690,20,81,18,0.0 +24690,34,14,5,0.0 +24690,31,12.5,8,0.0 +24690,36,19,15,0.0 +24690,37,26,49,0.0 +24690,29,123.79,41,0.0 +24690,54,7.45,33,0.0 +24690,47,9.5,50,0.0 +24690,75,7.75,6,0.0 +24690,1,18,14,0.0 +24690,49,20,18,0.0 +24690,53,32.8,4,0.0 +24690,59,55,28,0.0 +24690,17,39,14,0.0 +24690,3,10,33,0.0 +24690,50,16.25,43,0.0 +24690,64,33.25,29,0.0 +24690,45,9.5,31,0.0 +24690,12,38,44,0.0 +24691,46,12,38,0.0 +24691,33,2.5,10,0.0 +24691,44,19.45,14,0.0 +24691,27,43.9,42,0.0 +24691,77,13,40,0.0 +24691,4,22,31,0.0 +24691,11,21,23,0.0 +24691,45,9.5,16,0.0 +24691,65,21.05,6,0.0 +24691,74,10,12,0.0 +24691,31,12.5,20,0.0 +24691,76,18,39,0.0 +24691,70,15,36,0.0 +24691,2,19,1,0.0 +24691,5,21.35,8,0.0 +24691,56,38,20,0.0 +24691,61,28.5,37,0.0 +24691,53,32.8,18,0.0 +24691,28,45.6,30,0.0 +24691,66,17,8,0.0 +24691,71,21.5,21,0.0 +24691,58,13.25,12,0.0 +24691,18,62.5,26,0.0 +24691,16,17.45,21,0.0 +24691,48,12.75,40,0.0 +24691,38,263.5,30,0.0 +24691,68,12.5,20,0.0 +24691,49,20,29,0.0 +24691,62,49.3,49,0.0 +24691,6,25,24,0.0 +24691,39,18,13,0.0 +24691,40,18.4,3,0.0 +24691,69,36,9,0.0 +24691,42,14,31,0.0 +24691,47,9.5,13,0.0 +24691,59,55,34,0.0 +24691,17,39,10,0.0 +24691,50,16.25,50,0.0 +24691,9,97,37,0.0 +24691,15,15.5,14,0.0 +24691,20,81,25,0.0 +24692,46,12,48,0.0 +24692,15,15.5,21,0.0 +24692,69,36,37,0.0 +24692,14,23.25,43,0.0 +24692,42,14,19,0.0 +24692,12,38,37,0.0 +24692,55,24,45,0.0 +24692,74,10,8,0.0 +24692,28,45.6,46,0.0 +24692,36,19,26,0.0 +24692,13,6,5,0.0 +24692,23,9,12,0.0 +24692,72,34.8,20,0.0 +24692,44,19.45,34,0.0 +24692,20,81,12,0.0 +24692,21,10,23,0.0 +24692,31,12.5,20,0.0 +24692,58,13.25,45,0.0 +24692,70,15,37,0.0 +24692,35,18,29,0.0 +24692,17,39,35,0.0 +24692,56,38,38,0.0 +24692,52,7,50,0.0 +24692,54,7.45,20,0.0 +24692,7,30,13,0.0 +24692,9,97,33,0.0 +24692,11,21,50,0.0 +24692,60,34,2,0.0 +24692,18,62.5,9,0.0 +24692,27,43.9,18,0.0 +24692,26,31.23,37,0.0 +24692,47,9.5,47,0.0 +24692,63,43.9,50,0.0 +24692,16,17.45,25,0.0 +24692,77,13,36,0.0 +24692,40,18.4,40,0.0 +24692,50,16.25,17,0.0 +24692,49,20,37,0.0 +24692,8,40,11,0.0 +24692,51,53,20,0.0 +24692,22,21,3,0.0 +24692,33,2.5,12,0.0 +24692,37,26,19,0.0 +24692,57,19.5,17,0.0 +24692,48,12.75,24,0.0 +24692,75,7.75,42,0.0 +24692,10,31,18,0.0 +24692,65,21.05,37,0.0 +24693,49,20,12,0.0 +24693,4,22,35,0.0 +24693,13,6,33,0.0 +24693,61,28.5,48,0.0 +24693,25,14,4,0.0 +24693,24,4.5,14,0.0 +24693,52,7,21,0.0 +24693,8,40,29,0.0 +24693,72,34.8,50,0.0 +24693,44,19.45,48,0.0 +24693,19,9.2,4,0.0 +24693,74,10,19,0.0 +24693,30,25.89,44,0.0 +24694,23,9,22,0.0 +24694,21,10,45,0.0 +24694,68,12.5,32,0.0 +24694,31,12.5,36,0.0 +24694,51,53,5,0.0 +24694,49,20,46,0.0 +24694,55,24,20,0.0 +24694,45,9.5,3,0.0 +24694,59,55,46,0.0 +24694,7,30,26,0.0 +24694,75,7.75,1,0.0 +24694,70,15,3,0.0 +24694,77,13,49,0.0 +24694,64,33.25,40,0.0 +24694,6,25,1,0.0 +24694,38,263.5,27,0.0 +24694,74,10,40,0.0 +24694,1,18,42,0.0 +24694,29,123.79,2,0.0 +24694,67,14,7,0.0 +24694,44,19.45,43,0.0 +24694,63,43.9,9,0.0 +24694,27,43.9,25,0.0 +24694,8,40,49,0.0 +24694,2,19,27,0.0 +24694,39,18,29,0.0 +24694,72,34.8,42,0.0 +24694,24,4.5,50,0.0 +24695,20,81,11,0.0 +24695,60,34,12,0.0 +24695,51,53,16,0.0 +24695,49,20,15,0.0 +24695,38,263.5,12,0.0 +24695,44,19.45,31,0.0 +24695,7,30,47,0.0 +24695,47,9.5,43,0.0 +24695,35,18,41,0.0 +24695,74,10,31,0.0 +24695,52,7,24,0.0 +24695,2,19,2,0.0 +24695,25,14,47,0.0 +24695,22,21,45,0.0 +24695,13,6,8,0.0 +24695,26,31.23,28,0.0 +24695,50,16.25,1,0.0 +24695,30,25.89,9,0.0 +24695,55,24,17,0.0 +24695,29,123.79,41,0.0 +24695,10,31,37,0.0 +24695,72,34.8,47,0.0 +24695,68,12.5,46,0.0 +24695,33,2.5,44,0.0 +24695,8,40,31,0.0 +24695,56,38,32,0.0 +24695,21,10,39,0.0 +24695,70,15,20,0.0 +24695,1,18,35,0.0 +24695,11,21,18,0.0 +24695,15,15.5,44,0.0 +24695,43,46,49,0.0 +24695,41,9.65,11,0.0 +24695,31,12.5,36,0.0 +24695,17,39,28,0.0 +24695,40,18.4,7,0.0 +24695,24,4.5,11,0.0 +24695,63,43.9,1,0.0 +24695,19,9.2,37,0.0 +24695,6,25,26,0.0 +24695,36,19,27,0.0 +24696,26,31.23,48,0.0 +24696,60,34,27,0.0 +24696,69,36,45,0.0 +24696,17,39,11,0.0 +24696,12,38,3,0.0 +24696,24,4.5,15,0.0 +24696,62,49.3,11,0.0 +24696,1,18,45,0.0 +24696,61,28.5,4,0.0 +24696,38,263.5,17,0.0 +24696,25,14,8,0.0 +24696,32,32,48,0.0 +24696,21,10,5,0.0 +24696,50,16.25,19,0.0 +24696,23,9,46,0.0 +24696,37,26,22,0.0 +24697,22,21,9,0.0 +24697,18,62.5,15,0.0 +24697,59,55,45,0.0 +24697,62,49.3,43,0.0 +24697,51,53,32,0.0 +24697,56,38,50,0.0 +24697,35,18,48,0.0 +24697,27,43.9,40,0.0 +24697,33,2.5,19,0.0 +24697,77,13,3,0.0 +24697,50,16.25,49,0.0 +24697,76,18,25,0.0 +24697,8,40,45,0.0 +24697,67,14,20,0.0 +24697,46,12,34,0.0 +24697,48,12.75,47,0.0 +24697,12,38,25,0.0 +24697,72,34.8,47,0.0 +24697,65,21.05,14,0.0 +24697,19,9.2,3,0.0 +24697,30,25.89,14,0.0 +24697,9,97,36,0.0 +24697,39,18,37,0.0 +24697,41,9.65,34,0.0 +24697,36,19,16,0.0 +24697,14,23.25,1,0.0 +24697,73,15,44,0.0 +24697,28,45.6,15,0.0 +24697,17,39,7,0.0 +24697,61,28.5,14,0.0 +24697,44,19.45,31,0.0 +24697,20,81,4,0.0 +24697,15,15.5,40,0.0 +24697,47,9.5,45,0.0 +24697,3,10,23,0.0 +24697,74,10,50,0.0 +24697,24,4.5,22,0.0 +24697,5,21.35,45,0.0 +24697,42,14,1,0.0 +24697,29,123.79,15,0.0 +24697,70,15,34,0.0 +24697,52,7,22,0.0 +24697,63,43.9,39,0.0 +24697,53,32.8,44,0.0 +24697,23,9,28,0.0 +24698,23,9,24,0.0 +24698,36,19,34,0.0 +24698,27,43.9,32,0.0 +24698,35,18,1,0.0 +24698,21,10,13,0.0 +24698,22,21,39,0.0 +24698,4,22,8,0.0 +24698,58,13.25,28,0.0 +24698,26,31.23,48,0.0 +24698,17,39,22,0.0 +24698,15,15.5,19,0.0 +24698,41,9.65,17,0.0 +24698,54,7.45,26,0.0 +24698,67,14,34,0.0 +24698,6,25,34,0.0 +24699,28,45.6,43,0.0 +24699,64,33.25,30,0.0 +24699,20,81,11,0.0 +24699,46,12,16,0.0 +24699,53,32.8,10,0.0 +24699,62,49.3,38,0.0 +24699,37,26,13,0.0 +24699,39,18,11,0.0 +24699,24,4.5,7,0.0 +24699,27,43.9,1,0.0 +24699,71,21.5,48,0.0 +24699,10,31,47,0.0 +24699,19,9.2,23,0.0 +24699,70,15,10,0.0 +24699,43,46,30,0.0 +24699,74,10,30,0.0 +24699,7,30,40,0.0 +24699,17,39,27,0.0 +24699,51,53,14,0.0 +24699,35,18,8,0.0 +24699,77,13,10,0.0 +24699,73,15,20,0.0 +24699,59,55,7,0.0 +24699,55,24,4,0.0 +24699,2,19,23,0.0 +24699,45,9.5,36,0.0 +24699,69,36,22,0.0 +24699,18,62.5,11,0.0 +24699,65,21.05,26,0.0 +24699,60,34,32,0.0 +24699,21,10,26,0.0 +24699,4,22,35,0.0 +24699,76,18,5,0.0 +24699,14,23.25,47,0.0 +24699,38,263.5,49,0.0 +24699,15,15.5,23,0.0 +24699,1,18,27,0.0 +24699,66,17,39,0.0 +24699,34,14,38,0.0 +24699,32,32,14,0.0 +24699,30,25.89,28,0.0 +24699,41,9.65,31,0.0 +24699,44,19.45,5,0.0 +24699,26,31.23,50,0.0 +24699,5,21.35,15,0.0 +24699,23,9,25,0.0 +24699,25,14,47,0.0 +24699,29,123.79,25,0.0 +24699,50,16.25,42,0.0 +24699,31,12.5,13,0.0 +24699,9,97,28,0.0 +24699,49,20,21,0.0 +24699,52,7,25,0.0 +24700,74,10,36,0.0 +24700,26,31.23,40,0.0 +24700,10,31,10,0.0 +24701,28,45.6,10,0.0 +24701,38,263.5,16,0.0 +24701,30,25.89,18,0.0 +24701,73,15,50,0.0 +24701,77,13,34,0.0 +24701,5,21.35,44,0.0 +24701,74,10,40,0.0 +24701,19,9.2,22,0.0 +24701,12,38,2,0.0 +24701,64,33.25,30,0.0 +24701,6,25,23,0.0 +24701,51,53,16,0.0 +24701,45,9.5,13,0.0 +24701,35,18,40,0.0 +24701,33,2.5,50,0.0 +24701,62,49.3,40,0.0 +24701,70,15,39,0.0 +24701,46,12,29,0.0 +24701,60,34,5,0.0 +24701,75,7.75,48,0.0 +24701,1,18,36,0.0 +24701,44,19.45,12,0.0 +24701,48,12.75,19,0.0 +24701,23,9,28,0.0 +24701,49,20,3,0.0 +24701,67,14,4,0.0 +24701,36,19,46,0.0 +24701,61,28.5,47,0.0 +24701,24,4.5,21,0.0 +24701,32,32,47,0.0 +24701,20,81,48,0.0 +24702,25,14,38,0.0 +24702,3,10,23,0.0 +24702,58,13.25,14,0.0 +24702,70,15,43,0.0 +24702,38,263.5,18,0.0 +24702,49,20,38,0.0 +24702,16,17.45,16,0.0 +24702,32,32,35,0.0 +24702,10,31,17,0.0 +24702,67,14,46,0.0 +24702,22,21,10,0.0 +24702,23,9,21,0.0 +24702,40,18.4,46,0.0 +24702,18,62.5,34,0.0 +24702,36,19,31,0.0 +24702,74,10,29,0.0 +24702,62,49.3,33,0.0 +24702,33,2.5,8,0.0 +24702,29,123.79,7,0.0 +24702,53,32.8,10,0.0 +24702,63,43.9,37,0.0 +24702,75,7.75,26,0.0 +24702,47,9.5,7,0.0 +24702,50,16.25,16,0.0 +24702,14,23.25,48,0.0 +24702,55,24,42,0.0 +24702,61,28.5,28,0.0 +24702,45,9.5,32,0.0 +24702,31,12.5,21,0.0 +24702,17,39,28,0.0 +24702,30,25.89,1,0.0 +24703,31,12.5,49,0.0 +24703,75,7.75,36,0.0 +24703,50,16.25,18,0.0 +24703,72,34.8,29,0.0 +24703,12,38,15,0.0 +24703,71,21.5,31,0.0 +24703,9,97,50,0.0 +24703,61,28.5,24,0.0 +24703,41,9.65,2,0.0 +24703,21,10,22,0.0 +24703,46,12,17,0.0 +24703,40,18.4,34,0.0 +24703,20,81,1,0.0 +24703,54,7.45,34,0.0 +24703,24,4.5,3,0.0 +24703,45,9.5,8,0.0 +24703,32,32,9,0.0 +24703,14,23.25,34,0.0 +24703,39,18,28,0.0 +24703,8,40,23,0.0 +24703,17,39,42,0.0 +24703,66,17,50,0.0 +24703,69,36,7,0.0 +24703,19,9.2,23,0.0 +24703,56,38,46,0.0 +24703,48,12.75,48,0.0 +24703,53,32.8,46,0.0 +24703,51,53,44,0.0 +24703,73,15,49,0.0 +24703,5,21.35,47,0.0 +24703,30,25.89,29,0.0 +24703,11,21,16,0.0 +24703,6,25,18,0.0 +24703,43,46,3,0.0 +24703,59,55,14,0.0 +24703,3,10,35,0.0 +24703,37,26,45,0.0 +24703,47,9.5,22,0.0 +24703,60,34,38,0.0 +24703,42,14,34,0.0 +24703,1,18,11,0.0 +24704,75,7.75,29,0.0 +24704,36,19,41,0.0 +24704,15,15.5,2,0.0 +24704,37,26,9,0.0 +24704,41,9.65,4,0.0 +24704,69,36,20,0.0 +24704,11,21,24,0.0 +24704,46,12,22,0.0 +24704,35,18,4,0.0 +24704,60,34,43,0.0 +24704,22,21,10,0.0 +24704,49,20,31,0.0 +24704,38,263.5,9,0.0 +24704,30,25.89,28,0.0 +24704,66,17,40,0.0 +24704,23,9,47,0.0 +24704,9,97,3,0.0 +24704,63,43.9,16,0.0 +24704,51,53,40,0.0 +24704,19,9.2,26,0.0 +24704,42,14,10,0.0 +24704,10,31,7,0.0 +24704,44,19.45,32,0.0 +24704,7,30,30,0.0 +24704,14,23.25,14,0.0 +24704,20,81,24,0.0 +24704,43,46,38,0.0 +24704,27,43.9,2,0.0 +24704,70,15,48,0.0 +24704,67,14,42,0.0 +24704,32,32,22,0.0 +24704,45,9.5,20,0.0 +24704,12,38,3,0.0 +24704,54,7.45,27,0.0 +24704,17,39,22,0.0 +24704,24,4.5,30,0.0 +24704,28,45.6,23,0.0 +24704,62,49.3,16,0.0 +24704,58,13.25,24,0.0 +24704,21,10,43,0.0 +24704,53,32.8,6,0.0 +24704,57,19.5,40,0.0 +24704,25,14,18,0.0 +24704,68,12.5,27,0.0 +24704,72,34.8,9,0.0 +24704,16,17.45,2,0.0 +24704,6,25,35,0.0 +24704,26,31.23,18,0.0 +24704,65,21.05,27,0.0 +24704,29,123.79,35,0.0 +24704,33,2.5,6,0.0 +24704,31,12.5,49,0.0 +24704,76,18,20,0.0 +24704,4,22,34,0.0 +24704,40,18.4,19,0.0 +24704,39,18,48,0.0 +24704,47,9.5,50,0.0 +24704,59,55,48,0.0 +24704,61,28.5,41,0.0 +24704,2,19,22,0.0 +24704,5,21.35,40,0.0 +24704,52,7,44,0.0 +24704,64,33.25,23,0.0 +24704,3,10,48,0.0 +24704,48,12.75,19,0.0 +24704,74,10,18,0.0 +24704,77,13,9,0.0 +24704,73,15,27,0.0 +24704,55,24,26,0.0 +24705,39,18,29,0.0 +24705,64,33.25,30,0.0 +24705,24,4.5,50,0.0 +24705,77,13,5,0.0 +24705,18,62.5,21,0.0 +24705,44,19.45,27,0.0 +24705,65,21.05,4,0.0 +24705,8,40,41,0.0 +24705,16,17.45,3,0.0 +24705,71,21.5,27,0.0 +24705,19,9.2,22,0.0 +24705,38,263.5,18,0.0 +24705,74,10,27,0.0 +24705,46,12,20,0.0 +24705,70,15,35,0.0 +24705,7,30,23,0.0 +24705,50,16.25,12,0.0 +24705,75,7.75,12,0.0 +24705,32,32,33,0.0 +24705,33,2.5,23,0.0 +24706,18,62.5,45,0.0 +24706,66,17,12,0.0 +24706,43,46,50,0.0 +24706,27,43.9,9,0.0 +24706,72,34.8,20,0.0 +24706,20,81,11,0.0 +24706,11,21,34,0.0 +24706,60,34,17,0.0 +24706,21,10,37,0.0 +24706,55,24,11,0.0 +24706,50,16.25,11,0.0 +24706,34,14,9,0.0 +24706,12,38,36,0.0 +24706,17,39,41,0.0 +24706,7,30,36,0.0 +24706,52,7,41,0.0 +24706,74,10,11,0.0 +24706,38,263.5,9,0.0 +24706,49,20,32,0.0 +24706,13,6,47,0.0 +24707,5,21.35,17,0.0 +24707,74,10,23,0.0 +24707,30,25.89,26,0.0 +24707,29,123.79,29,0.0 +24707,34,14,26,0.0 +24707,56,38,10,0.0 +24707,28,45.6,29,0.0 +24707,42,14,22,0.0 +24707,22,21,32,0.0 +24707,38,263.5,22,0.0 +24707,10,31,1,0.0 +24707,2,19,8,0.0 +24707,4,22,19,0.0 +24707,66,17,39,0.0 +24707,40,18.4,25,0.0 +24707,15,15.5,3,0.0 +24707,77,13,2,0.0 +24707,1,18,48,0.0 +24707,36,19,33,0.0 +24707,7,30,6,0.0 +24707,43,46,41,0.0 +24707,17,39,21,0.0 +24707,33,2.5,9,0.0 +24707,72,34.8,42,0.0 +24707,63,43.9,9,0.0 +24707,54,7.45,37,0.0 +24707,71,21.5,50,0.0 +24707,52,7,13,0.0 +24707,60,34,37,0.0 +24707,27,43.9,23,0.0 +24707,11,21,17,0.0 +24707,6,25,49,0.0 +24707,50,16.25,7,0.0 +24707,49,20,16,0.0 +24707,31,12.5,4,0.0 +24708,44,19.45,3,0.0 +24708,30,25.89,38,0.0 +24708,63,43.9,1,0.0 +24708,22,21,45,0.0 +24708,55,24,14,0.0 +24708,58,13.25,5,0.0 +24708,14,23.25,49,0.0 +24708,35,18,20,0.0 +24708,12,38,10,0.0 +24708,16,17.45,11,0.0 +24708,2,19,8,0.0 +24708,48,12.75,29,0.0 +24708,34,14,12,0.0 +24708,73,15,3,0.0 +24708,24,4.5,43,0.0 +24708,43,46,11,0.0 +24708,67,14,6,0.0 +24708,20,81,25,0.0 +24708,69,36,33,0.0 +24708,9,97,18,0.0 +24708,37,26,34,0.0 +24708,13,6,27,0.0 +24708,59,55,10,0.0 +24708,23,9,48,0.0 +24708,7,30,18,0.0 +24708,4,22,23,0.0 +24708,51,53,13,0.0 +24708,74,10,16,0.0 +24708,77,13,37,0.0 +24708,15,15.5,25,0.0 +24708,46,12,30,0.0 +24708,64,33.25,23,0.0 +24708,8,40,30,0.0 +24708,11,21,14,0.0 +24708,5,21.35,23,0.0 +24708,19,9.2,11,0.0 +24708,57,19.5,49,0.0 +24708,32,32,31,0.0 +24708,72,34.8,36,0.0 +24708,76,18,20,0.0 +24708,56,38,46,0.0 +24708,29,123.79,6,0.0 +24708,49,20,15,0.0 +24708,60,34,13,0.0 +24708,3,10,50,0.0 +24708,71,21.5,7,0.0 +24708,28,45.6,36,0.0 +24708,52,7,16,0.0 +24708,39,18,7,0.0 +24708,36,19,45,0.0 +24708,31,12.5,40,0.0 +24708,54,7.45,23,0.0 +24708,26,31.23,5,0.0 +24708,68,12.5,3,0.0 +24708,66,17,24,0.0 +24708,1,18,19,0.0 +24708,27,43.9,20,0.0 +24708,42,14,20,0.0 +24708,10,31,35,0.0 +24708,65,21.05,37,0.0 +24709,18,62.5,32,0.0 +24709,6,25,14,0.0 +24709,41,9.65,40,0.0 +24709,14,23.25,33,0.0 +24709,1,18,40,0.0 +24709,52,7,42,0.0 +24709,13,6,28,0.0 +24709,24,4.5,42,0.0 +24709,28,45.6,10,0.0 +24709,38,263.5,10,0.0 +24709,39,18,3,0.0 +24709,65,21.05,36,0.0 +24709,47,9.5,22,0.0 +24709,23,9,5,0.0 +24709,16,17.45,9,0.0 +24709,64,33.25,1,0.0 +24709,54,7.45,13,0.0 +24709,43,46,48,0.0 +24709,77,13,13,0.0 +24710,48,12.75,32,0.0 +24710,68,12.5,48,0.0 +24710,10,31,42,0.0 +24710,2,19,12,0.0 +24710,32,32,18,0.0 +24710,69,36,28,0.0 +24710,25,14,22,0.0 +24710,24,4.5,38,0.0 +24710,30,25.89,4,0.0 +24710,72,34.8,40,0.0 +24710,41,9.65,46,0.0 +24710,23,9,25,0.0 +24710,31,12.5,21,0.0 +24710,57,19.5,37,0.0 +24710,45,9.5,15,0.0 +24710,14,23.25,47,0.0 +24710,9,97,1,0.0 +24710,56,38,1,0.0 +24710,8,40,23,0.0 +24710,47,9.5,50,0.0 +24710,35,18,24,0.0 +24710,43,46,7,0.0 +24710,65,21.05,29,0.0 +24710,77,13,17,0.0 +24711,4,22,10,0.0 +24711,56,38,16,0.0 +24711,57,19.5,44,0.0 +24711,3,10,48,0.0 +24711,30,25.89,43,0.0 +24711,69,36,6,0.0 +24711,19,9.2,13,0.0 +24711,12,38,28,0.0 +24711,72,34.8,11,0.0 +24711,24,4.5,47,0.0 +24711,16,17.45,6,0.0 +24711,46,12,15,0.0 +24711,52,7,17,0.0 +24711,44,19.45,23,0.0 +24711,75,7.75,4,0.0 +24711,15,15.5,18,0.0 +24711,2,19,1,0.0 +24711,58,13.25,18,0.0 +24711,13,6,28,0.0 +24711,66,17,40,0.0 +24711,55,24,50,0.0 +24711,45,9.5,26,0.0 +24711,74,10,2,0.0 +24711,65,21.05,37,0.0 +24711,36,19,42,0.0 +24711,28,45.6,36,0.0 +24711,41,9.65,40,0.0 +24711,73,15,9,0.0 +24711,59,55,16,0.0 +24711,5,21.35,46,0.0 +24711,17,39,42,0.0 +24711,7,30,13,0.0 +24711,61,28.5,43,0.0 +24711,23,9,31,0.0 +24711,48,12.75,34,0.0 +24711,31,12.5,7,0.0 +24711,60,34,36,0.0 +24711,40,18.4,41,0.0 +24711,54,7.45,37,0.0 +24711,76,18,11,0.0 +24711,71,21.5,14,0.0 +24711,62,49.3,37,0.0 +24711,20,81,29,0.0 +24711,32,32,43,0.0 +24711,35,18,38,0.0 +24711,50,16.25,11,0.0 +24711,47,9.5,20,0.0 +24711,21,10,12,0.0 +24711,34,14,27,0.0 +24711,51,53,1,0.0 +24711,8,40,50,0.0 +24711,14,23.25,31,0.0 +24711,49,20,16,0.0 +24711,38,263.5,39,0.0 +24711,43,46,22,0.0 +24712,76,18,46,0.0 +24712,66,17,14,0.0 +24712,53,32.8,44,0.0 +24712,1,18,17,0.0 +24712,34,14,2,0.0 +24712,69,36,1,0.0 +24712,23,9,45,0.0 +24712,48,12.75,15,0.0 +24712,46,12,1,0.0 +24712,9,97,31,0.0 +24712,39,18,49,0.0 +24712,44,19.45,42,0.0 +24712,3,10,14,0.0 +24712,13,6,18,0.0 +24712,27,43.9,40,0.0 +24712,38,263.5,38,0.0 +24712,75,7.75,16,0.0 +24712,41,9.65,1,0.0 +24712,31,12.5,12,0.0 +24712,59,55,41,0.0 +24712,16,17.45,20,0.0 +24712,72,34.8,30,0.0 +24712,20,81,33,0.0 +24712,6,25,23,0.0 +24712,28,45.6,47,0.0 +24712,30,25.89,3,0.0 +24712,21,10,39,0.0 +24712,64,33.25,22,0.0 +24712,32,32,28,0.0 +24712,62,49.3,8,0.0 +24712,65,21.05,20,0.0 +24712,35,18,20,0.0 +24712,40,18.4,38,0.0 +24712,70,15,39,0.0 +24712,19,9.2,48,0.0 +24712,22,21,21,0.0 +24712,57,19.5,19,0.0 +24712,11,21,25,0.0 +24713,1,18,45,0.0 +24713,5,21.35,3,0.0 +24713,18,62.5,16,0.0 +24713,34,14,50,0.0 +24713,42,14,26,0.0 +24713,13,6,41,0.0 +24713,40,18.4,45,0.0 +24713,30,25.89,19,0.0 +24713,66,17,21,0.0 +24713,58,13.25,24,0.0 +24713,45,9.5,12,0.0 +24713,12,38,15,0.0 +24713,24,4.5,3,0.0 +24713,54,7.45,46,0.0 +24713,31,12.5,20,0.0 +24713,55,24,36,0.0 +24713,51,53,20,0.0 +24713,56,38,15,0.0 +24713,50,16.25,30,0.0 +24713,39,18,48,0.0 +24713,27,43.9,50,0.0 +24713,76,18,40,0.0 +24713,20,81,36,0.0 +24713,33,2.5,25,0.0 +24713,15,15.5,41,0.0 +24713,64,33.25,29,0.0 +24713,49,20,41,0.0 +24713,77,13,29,0.0 +24713,16,17.45,30,0.0 +24713,6,25,35,0.0 +24713,62,49.3,13,0.0 +24713,68,12.5,19,0.0 +24713,72,34.8,49,0.0 +24714,35,18,33,0.0 +24714,65,21.05,7,0.0 +24714,42,14,2,0.0 +24714,70,15,32,0.0 +24714,55,24,35,0.0 +24714,7,30,14,0.0 +24714,66,17,33,0.0 +24714,63,43.9,48,0.0 +24714,32,32,33,0.0 +24714,75,7.75,17,0.0 +24714,61,28.5,47,0.0 +24714,53,32.8,1,0.0 +24714,62,49.3,13,0.0 +24714,73,15,29,0.0 +24714,54,7.45,29,0.0 +24714,5,21.35,33,0.0 +24714,25,14,15,0.0 +24714,14,23.25,39,0.0 +24714,22,21,2,0.0 +24714,6,25,16,0.0 +24714,37,26,38,0.0 +24714,30,25.89,28,0.0 +24714,26,31.23,18,0.0 +24714,13,6,27,0.0 +24714,67,14,26,0.0 +24714,34,14,26,0.0 +24714,31,12.5,49,0.0 +24714,51,53,17,0.0 +24714,8,40,33,0.0 +24714,24,4.5,41,0.0 +24714,47,9.5,41,0.0 +24714,76,18,21,0.0 +24714,72,34.8,31,0.0 +24714,69,36,8,0.0 +24714,29,123.79,35,0.0 +24714,49,20,46,0.0 +24714,23,9,49,0.0 +24714,16,17.45,23,0.0 +24714,27,43.9,29,0.0 +24715,34,14,50,0.0 +24715,12,38,1,0.0 +24715,17,39,13,0.0 +24715,66,17,10,0.0 +24715,13,6,3,0.0 +24715,50,16.25,41,0.0 +24715,62,49.3,35,0.0 +24715,40,18.4,31,0.0 +24715,67,14,39,0.0 +24715,15,15.5,21,0.0 +24715,59,55,4,0.0 +24716,3,10,47,0.0 +24716,7,30,47,0.0 +24716,48,12.75,48,0.0 +24716,6,25,24,0.0 +24716,62,49.3,6,0.0 +24716,11,21,50,0.0 +24716,24,4.5,5,0.0 +24716,67,14,19,0.0 +24716,42,14,21,0.0 +24716,1,18,46,0.0 +24716,63,43.9,3,0.0 +24716,74,10,19,0.0 +24716,64,33.25,26,0.0 +24716,47,9.5,7,0.0 +24716,51,53,36,0.0 +24716,16,17.45,12,0.0 +24716,52,7,29,0.0 +24716,43,46,16,0.0 +24716,17,39,4,0.0 +24716,60,34,14,0.0 +24716,54,7.45,3,0.0 +24716,37,26,44,0.0 +24716,41,9.65,1,0.0 +24716,2,19,39,0.0 +24716,76,18,30,0.0 +24716,68,12.5,45,0.0 +24716,53,32.8,27,0.0 +24716,35,18,39,0.0 +24716,15,15.5,12,0.0 +24716,20,81,12,0.0 +24716,71,21.5,33,0.0 +24716,61,28.5,26,0.0 +24716,75,7.75,27,0.0 +24716,59,55,28,0.0 +24716,56,38,39,0.0 +24716,22,21,28,0.0 +24716,58,13.25,3,0.0 +24716,34,14,47,0.0 +24716,38,263.5,7,0.0 +24716,55,24,27,0.0 +24716,69,36,48,0.0 +24716,14,23.25,20,0.0 +24716,40,18.4,15,0.0 +24716,23,9,39,0.0 +24716,4,22,10,0.0 +24716,29,123.79,30,0.0 +24716,70,15,32,0.0 +24716,13,6,5,0.0 +24716,44,19.45,49,0.0 +24716,21,10,13,0.0 +24716,32,32,9,0.0 +24716,50,16.25,19,0.0 +24716,19,9.2,19,0.0 +24716,46,12,22,0.0 +24716,49,20,1,0.0 +24716,39,18,14,0.0 +24716,12,38,3,0.0 +24716,57,19.5,9,0.0 +24716,26,31.23,28,0.0 +24717,64,33.25,23,0.0 +24717,15,15.5,50,0.0 +24717,4,22,23,0.0 +24717,23,9,27,0.0 +24717,10,31,8,0.0 +24717,31,12.5,28,0.0 +24717,17,39,37,0.0 +24717,48,12.75,29,0.0 +24717,16,17.45,36,0.0 +24717,5,21.35,5,0.0 +24717,77,13,45,0.0 +24718,73,15,15,0.0 +24718,72,34.8,34,0.0 +24718,59,55,34,0.0 +24718,26,31.23,49,0.0 +24718,33,2.5,3,0.0 +24718,12,38,24,0.0 +24718,8,40,13,0.0 +24718,38,263.5,21,0.0 +24718,30,25.89,10,0.0 +24718,1,18,21,0.0 +24718,50,16.25,36,0.0 +24718,36,19,5,0.0 +24718,71,21.5,36,0.0 +24718,25,14,32,0.0 +24718,32,32,27,0.0 +24718,42,14,27,0.0 +24718,19,9.2,47,0.0 +24718,11,21,10,0.0 +24718,15,15.5,7,0.0 +24718,10,31,3,0.0 +24718,69,36,45,0.0 +24718,43,46,11,0.0 +24718,2,19,34,0.0 +24718,3,10,6,0.0 +24718,39,18,10,0.0 +24718,22,21,48,0.0 +24718,63,43.9,30,0.0 +24718,21,10,22,0.0 +24718,41,9.65,47,0.0 +24718,55,24,50,0.0 +24718,57,19.5,42,0.0 +24718,51,53,17,0.0 +24719,8,40,9,0.0 +24719,65,21.05,1,0.0 +24719,24,4.5,5,0.0 +24719,18,62.5,18,0.0 +24719,4,22,42,0.0 +24719,76,18,43,0.0 +24719,56,38,43,0.0 +24719,60,34,25,0.0 +24719,71,21.5,6,0.0 +24719,20,81,28,0.0 +24719,51,53,14,0.0 +24719,19,9.2,17,0.0 +24719,30,25.89,3,0.0 +24719,35,18,8,0.0 +24719,52,7,12,0.0 +24719,34,14,25,0.0 +24719,33,2.5,41,0.0 +24719,61,28.5,7,0.0 +24719,43,46,48,0.0 +24719,2,19,14,0.0 +24719,47,9.5,15,0.0 +24719,7,30,6,0.0 +24719,11,21,33,0.0 +24719,21,10,17,0.0 +24719,25,14,24,0.0 +24719,66,17,44,0.0 +24719,53,32.8,46,0.0 +24719,74,10,41,0.0 +24719,22,21,21,0.0 +24719,17,39,26,0.0 +24719,23,9,37,0.0 +24719,10,31,20,0.0 +24719,45,9.5,10,0.0 +24719,41,9.65,20,0.0 +24719,27,43.9,14,0.0 +24719,14,23.25,48,0.0 +24719,59,55,7,0.0 +24719,49,20,19,0.0 +24719,73,15,24,0.0 +24719,64,33.25,1,0.0 +24719,31,12.5,6,0.0 +24719,37,26,3,0.0 +24719,38,263.5,33,0.0 +24719,9,97,20,0.0 +24719,3,10,33,0.0 +24719,5,21.35,40,0.0 +24719,29,123.79,18,0.0 +24719,58,13.25,45,0.0 +24719,36,19,48,0.0 +24719,28,45.6,27,0.0 +24719,6,25,14,0.0 +24719,62,49.3,37,0.0 +24719,26,31.23,42,0.0 +24719,48,12.75,22,0.0 +24719,1,18,9,0.0 +24719,13,6,48,0.0 +24719,67,14,43,0.0 +24719,32,32,20,0.0 +24719,44,19.45,23,0.0 +24719,63,43.9,2,0.0 +24719,75,7.75,48,0.0 +24719,40,18.4,6,0.0 +24719,68,12.5,35,0.0 +24719,46,12,36,0.0 +24719,42,14,44,0.0 +24719,39,18,6,0.0 +24719,77,13,32,0.0 +24719,54,7.45,4,0.0 +24719,16,17.45,39,0.0 +24719,69,36,37,0.0 +24719,70,15,50,0.0 +24719,15,15.5,22,0.0 +24719,12,38,15,0.0 +24720,27,43.9,9,0.0 +24720,48,12.75,9,0.0 +24720,25,14,15,0.0 +24720,45,9.5,47,0.0 +24720,67,14,47,0.0 +24720,14,23.25,5,0.0 +24720,75,7.75,7,0.0 +24721,18,62.5,20,0.0 +24721,38,263.5,2,0.0 +24721,36,19,14,0.0 +24721,22,21,18,0.0 +24721,59,55,40,0.0 +24721,11,21,45,0.0 +24721,39,18,39,0.0 +24721,61,28.5,43,0.0 +24721,17,39,23,0.0 +24721,73,15,11,0.0 +24721,27,43.9,23,0.0 +24721,65,21.05,1,0.0 +24721,68,12.5,23,0.0 +24721,25,14,37,0.0 +24721,31,12.5,10,0.0 +24721,64,33.25,41,0.0 +24721,75,7.75,36,0.0 +24721,55,24,50,0.0 +24721,21,10,13,0.0 +24721,54,7.45,47,0.0 +24721,19,9.2,40,0.0 +24721,70,15,31,0.0 +24722,57,19.5,32,0.0 +24722,18,62.5,45,0.0 +24722,33,2.5,46,0.0 +24722,38,263.5,44,0.0 +24722,61,28.5,45,0.0 +24722,12,38,37,0.0 +24722,75,7.75,26,0.0 +24722,9,97,8,0.0 +24722,74,10,49,0.0 +24722,35,18,12,0.0 +24722,20,81,28,0.0 +24722,49,20,49,0.0 +24722,19,9.2,28,0.0 +24722,25,14,48,0.0 +24722,63,43.9,20,0.0 +24722,3,10,35,0.0 +24722,71,21.5,50,0.0 +24722,7,30,7,0.0 +24722,13,6,35,0.0 +24722,58,13.25,12,0.0 +24722,54,7.45,38,0.0 +24722,34,14,12,0.0 +24722,10,31,31,0.0 +24722,55,24,28,0.0 +24722,43,46,11,0.0 +24722,22,21,35,0.0 +24722,31,12.5,8,0.0 +24722,28,45.6,16,0.0 +24722,42,14,47,0.0 +24722,1,18,1,0.0 +24722,17,39,16,0.0 +24722,32,32,21,0.0 +24722,37,26,2,0.0 +24722,11,21,10,0.0 +24723,62,49.3,25,0.0 +24723,60,34,17,0.0 +24723,36,19,15,0.0 +24723,71,21.5,36,0.0 +24723,61,28.5,45,0.0 +24723,13,6,3,0.0 +24723,29,123.79,34,0.0 +24723,10,31,1,0.0 +24723,77,13,38,0.0 +24723,47,9.5,50,0.0 +24723,66,17,13,0.0 +24723,48,12.75,47,0.0 +24723,56,38,41,0.0 +24723,50,16.25,19,0.0 +24723,49,20,25,0.0 +24723,4,22,20,0.0 +24723,45,9.5,44,0.0 +24723,37,26,50,0.0 +24723,63,43.9,28,0.0 +24723,75,7.75,25,0.0 +24723,12,38,29,0.0 +24723,9,97,43,0.0 +24723,34,14,10,0.0 +24723,57,19.5,26,0.0 +24723,33,2.5,50,0.0 +24723,24,4.5,50,0.0 +24723,19,9.2,42,0.0 +24723,18,62.5,25,0.0 +24723,8,40,11,0.0 +24723,54,7.45,18,0.0 +24723,3,10,45,0.0 +24723,42,14,10,0.0 +24723,28,45.6,17,0.0 +24723,16,17.45,4,0.0 +24723,14,23.25,30,0.0 +24723,15,15.5,24,0.0 +24723,51,53,32,0.0 +24723,65,21.05,34,0.0 +24723,21,10,28,0.0 +24723,64,33.25,26,0.0 +24723,1,18,14,0.0 +24723,40,18.4,35,0.0 +24723,25,14,13,0.0 +24723,44,19.45,8,0.0 +24723,58,13.25,5,0.0 +24723,43,46,16,0.0 +24723,32,32,47,0.0 +24723,76,18,22,0.0 +24723,20,81,50,0.0 +24723,11,21,9,0.0 +24723,41,9.65,7,0.0 +24723,68,12.5,39,0.0 +24723,30,25.89,23,0.0 +24723,7,30,49,0.0 +24723,6,25,46,0.0 +24723,26,31.23,19,0.0 +24723,38,263.5,41,0.0 +24723,74,10,27,0.0 +24724,63,43.9,11,0.0 +24724,56,38,26,0.0 +24724,65,21.05,35,0.0 +24724,54,7.45,36,0.0 +24724,1,18,27,0.0 +24724,11,21,9,0.0 +24724,75,7.75,49,0.0 +24724,10,31,34,0.0 +24724,59,55,16,0.0 +24724,9,97,42,0.0 +24724,61,28.5,7,0.0 +24724,31,12.5,14,0.0 +24724,58,13.25,34,0.0 +24724,42,14,29,0.0 +24724,77,13,33,0.0 +24724,19,9.2,7,0.0 +24724,68,12.5,12,0.0 +24724,38,263.5,30,0.0 +24724,7,30,22,0.0 +24724,5,21.35,32,0.0 +24724,23,9,34,0.0 +24724,44,19.45,25,0.0 +24724,49,20,21,0.0 +24724,66,17,15,0.0 +24724,20,81,14,0.0 +24724,72,34.8,28,0.0 +24724,51,53,41,0.0 +24724,62,49.3,34,0.0 +24724,46,12,19,0.0 +24724,47,9.5,36,0.0 +24724,64,33.25,35,0.0 +24724,37,26,11,0.0 +24724,29,123.79,18,0.0 +24724,13,6,17,0.0 +24724,25,14,16,0.0 +24724,60,34,37,0.0 +24724,43,46,18,0.0 +24724,76,18,19,0.0 +24724,2,19,21,0.0 +24724,57,19.5,3,0.0 +24724,35,18,25,0.0 +24724,18,62.5,30,0.0 +24724,73,15,38,0.0 +24724,26,31.23,20,0.0 +24724,14,23.25,4,0.0 +24724,12,38,38,0.0 +24724,53,32.8,29,0.0 +24724,16,17.45,40,0.0 +24725,50,16.25,6,0.0 +24725,70,15,38,0.0 +24725,60,34,32,0.0 +24725,67,14,42,0.0 +24725,9,97,39,0.0 +24725,49,20,4,0.0 +24725,57,19.5,50,0.0 +24725,53,32.8,3,0.0 +24725,43,46,24,0.0 +24725,28,45.6,34,0.0 +24725,16,17.45,2,0.0 +24725,19,9.2,44,0.0 +24725,27,43.9,4,0.0 +24725,34,14,46,0.0 +24725,39,18,4,0.0 +24725,18,62.5,26,0.0 +24725,40,18.4,37,0.0 +24725,1,18,39,0.0 +24725,54,7.45,9,0.0 +24725,45,9.5,25,0.0 +24725,66,17,43,0.0 +24725,13,6,12,0.0 +24726,57,19.5,39,0.0 +24726,2,19,27,0.0 +24726,15,15.5,24,0.0 +24726,36,19,1,0.0 +24726,37,26,46,0.0 +24726,38,263.5,23,0.0 +24726,74,10,41,0.0 +24726,71,21.5,36,0.0 +24726,77,13,10,0.0 +24726,9,97,18,0.0 +24726,76,18,39,0.0 +24726,28,45.6,19,0.0 +24726,3,10,17,0.0 +24726,68,12.5,26,0.0 +24726,46,12,10,0.0 +24726,43,46,22,0.0 +24726,73,15,14,0.0 +24726,62,49.3,16,0.0 +24726,11,21,38,0.0 +24726,54,7.45,34,0.0 +24726,55,24,1,0.0 +24726,64,33.25,43,0.0 +24726,27,43.9,25,0.0 +24726,69,36,4,0.0 +24726,67,14,13,0.0 +24726,1,18,49,0.0 +24726,7,30,42,0.0 +24726,31,12.5,36,0.0 +24726,20,81,33,0.0 +24727,45,9.5,12,0.0 +24727,48,12.75,10,0.0 +24727,16,17.45,48,0.0 +24727,22,21,20,0.0 +24727,71,21.5,11,0.0 +24727,61,28.5,2,0.0 +24727,51,53,25,0.0 +24727,35,18,46,0.0 +24727,17,39,33,0.0 +24727,73,15,14,0.0 +24727,46,12,10,0.0 +24727,59,55,5,0.0 +24727,74,10,42,0.0 +24727,76,18,20,0.0 +24727,36,19,46,0.0 +24727,42,14,41,0.0 +24727,47,9.5,13,0.0 +24727,20,81,18,0.0 +24727,24,4.5,46,0.0 +24727,12,38,14,0.0 +24727,57,19.5,1,0.0 +24727,75,7.75,5,0.0 +24727,52,7,40,0.0 +24727,18,62.5,9,0.0 +24727,54,7.45,24,0.0 +24727,53,32.8,33,0.0 +24727,9,97,43,0.0 +24727,1,18,9,0.0 +24727,66,17,28,0.0 +24727,19,9.2,9,0.0 +24727,26,31.23,36,0.0 +24727,39,18,36,0.0 +24727,72,34.8,10,0.0 +24727,43,46,12,0.0 +24727,25,14,46,0.0 +24727,21,10,27,0.0 +24727,6,25,31,0.0 +24727,14,23.25,4,0.0 +24727,77,13,4,0.0 +24727,37,26,47,0.0 +24727,28,45.6,29,0.0 +24727,58,13.25,50,0.0 +24727,65,21.05,31,0.0 +24727,11,21,36,0.0 +24727,56,38,39,0.0 +24727,33,2.5,35,0.0 +24727,70,15,33,0.0 +24727,60,34,32,0.0 +24727,38,263.5,23,0.0 +24727,30,25.89,40,0.0 +24727,15,15.5,31,0.0 +24727,5,21.35,40,0.0 +24728,68,12.5,11,0.0 +24729,39,18,35,0.0 +24729,37,26,3,0.0 +24729,64,33.25,28,0.0 +24729,48,12.75,7,0.0 +24729,12,38,44,0.0 +24729,25,14,8,0.0 +24729,70,15,8,0.0 +24729,5,21.35,7,0.0 +24729,29,123.79,14,0.0 +24729,73,15,27,0.0 +24729,22,21,19,0.0 +24729,56,38,27,0.0 +24729,15,15.5,22,0.0 +24729,54,7.45,2,0.0 +24729,10,31,1,0.0 +24729,4,22,49,0.0 +24729,55,24,18,0.0 +24729,34,14,18,0.0 +24729,68,12.5,21,0.0 +24729,74,10,27,0.0 +24729,16,17.45,17,0.0 +24729,19,9.2,7,0.0 +24729,31,12.5,26,0.0 +24729,11,21,27,0.0 +24729,61,28.5,9,0.0 +24729,35,18,24,0.0 +24729,71,21.5,25,0.0 +24729,14,23.25,41,0.0 +24729,27,43.9,13,0.0 +24729,46,12,15,0.0 +24729,44,19.45,13,0.0 +24729,75,7.75,22,0.0 +24729,53,32.8,17,0.0 +24729,63,43.9,29,0.0 +24729,6,25,9,0.0 +24729,66,17,17,0.0 +24729,51,53,40,0.0 +24729,76,18,18,0.0 +24729,28,45.6,44,0.0 +24729,57,19.5,42,0.0 +24729,36,19,36,0.0 +24729,26,31.23,11,0.0 +24729,38,263.5,35,0.0 +24729,58,13.25,7,0.0 +24729,62,49.3,42,0.0 +24729,33,2.5,22,0.0 +24729,49,20,26,0.0 +24729,41,9.65,30,0.0 +24729,20,81,47,0.0 +24729,32,32,18,0.0 +24729,52,7,10,0.0 +24729,24,4.5,49,0.0 +24729,23,9,23,0.0 +24729,50,16.25,11,0.0 +24729,13,6,18,0.0 +24729,8,40,34,0.0 +24729,7,30,7,0.0 +24729,69,36,9,0.0 +24729,1,18,15,0.0 +24729,59,55,37,0.0 +24729,17,39,3,0.0 +24729,2,19,11,0.0 +24729,67,14,14,0.0 +24729,40,18.4,36,0.0 +24729,60,34,6,0.0 +24729,18,62.5,49,0.0 +24729,77,13,11,0.0 +24729,3,10,24,0.0 +24730,18,62.5,23,0.0 +24730,52,7,44,0.0 +24730,72,34.8,29,0.0 +24730,71,21.5,45,0.0 +24730,2,19,22,0.0 +24730,76,18,31,0.0 +24730,16,17.45,14,0.0 +24730,26,31.23,41,0.0 +24730,73,15,7,0.0 +24730,38,263.5,11,0.0 +24730,37,26,24,0.0 +24731,62,49.3,24,0.0 +24731,45,9.5,5,0.0 +24731,63,43.9,15,0.0 +24731,58,13.25,5,0.0 +24731,71,21.5,43,0.0 +24731,68,12.5,47,0.0 +24731,55,24,46,0.0 +24731,52,7,44,0.0 +24731,57,19.5,38,0.0 +24731,24,4.5,8,0.0 +24731,44,19.45,40,0.0 +24731,29,123.79,9,0.0 +24731,39,18,11,0.0 +24731,20,81,16,0.0 +24731,59,55,47,0.0 +24731,60,34,6,0.0 +24731,18,62.5,41,0.0 +24731,47,9.5,16,0.0 +24731,54,7.45,41,0.0 +24731,46,12,29,0.0 +24731,33,2.5,8,0.0 +24732,67,14,28,0.0 +24732,12,38,43,0.0 +24732,53,32.8,24,0.0 +24732,77,13,22,0.0 +24732,35,18,39,0.0 +24732,7,30,20,0.0 +24732,13,6,31,0.0 +24732,14,23.25,50,0.0 +24732,1,18,3,0.0 +24732,21,10,19,0.0 +24732,48,12.75,43,0.0 +24732,4,22,13,0.0 +24732,43,46,22,0.0 +24732,38,263.5,17,0.0 +24732,66,17,15,0.0 +24732,61,28.5,11,0.0 +24732,17,39,1,0.0 +24732,55,24,21,0.0 +24732,59,55,2,0.0 +24732,16,17.45,44,0.0 +24732,6,25,33,0.0 +24732,69,36,20,0.0 +24732,24,4.5,43,0.0 +24732,50,16.25,47,0.0 +24732,42,14,43,0.0 +24732,54,7.45,31,0.0 +24732,23,9,34,0.0 +24732,31,12.5,36,0.0 +24733,15,15.5,43,0.0 +24733,25,14,28,0.0 +24733,6,25,6,0.0 +24733,21,10,17,0.0 +24733,48,12.75,42,0.0 +24733,24,4.5,12,0.0 +24733,55,24,27,0.0 +24733,12,38,45,0.0 +24733,7,30,25,0.0 +24733,32,32,36,0.0 +24733,20,81,45,0.0 +24733,52,7,3,0.0 +24733,38,263.5,11,0.0 +24733,40,18.4,29,0.0 +24733,27,43.9,14,0.0 +24733,42,14,38,0.0 +24733,54,7.45,30,0.0 +24733,49,20,36,0.0 +24733,45,9.5,29,0.0 +24733,30,25.89,37,0.0 +24733,71,21.5,35,0.0 +24733,75,7.75,32,0.0 +24733,17,39,12,0.0 +24733,64,33.25,32,0.0 +24733,22,21,9,0.0 +24733,5,21.35,6,0.0 +24733,77,13,50,0.0 +24733,61,28.5,26,0.0 +24733,50,16.25,40,0.0 +24733,41,9.65,22,0.0 +24733,57,19.5,44,0.0 +24733,70,15,1,0.0 +24733,47,9.5,45,0.0 +24733,16,17.45,46,0.0 +24733,19,9.2,12,0.0 +24733,1,18,42,0.0 +24733,39,18,22,0.0 +24733,43,46,34,0.0 +24734,65,21.05,5,0.0 +24734,76,18,42,0.0 +24734,43,46,18,0.0 +24734,30,25.89,40,0.0 +24734,58,13.25,43,0.0 +24734,2,19,44,0.0 +24734,32,32,16,0.0 +24734,53,32.8,21,0.0 +24734,36,19,6,0.0 +24734,23,9,12,0.0 +24734,74,10,4,0.0 +24734,9,97,29,0.0 +24734,59,55,34,0.0 +24734,21,10,8,0.0 +24734,56,38,26,0.0 +24734,34,14,11,0.0 +24734,71,21.5,2,0.0 +24734,7,30,16,0.0 +24734,37,26,34,0.0 +24734,3,10,3,0.0 +24734,72,34.8,6,0.0 +24734,18,62.5,18,0.0 +24734,63,43.9,5,0.0 +24734,8,40,12,0.0 +24734,1,18,10,0.0 +24734,10,31,8,0.0 +24734,62,49.3,28,0.0 +24734,33,2.5,8,0.0 +24734,42,14,25,0.0 +24734,77,13,46,0.0 +24734,69,36,29,0.0 +24734,31,12.5,24,0.0 +24734,22,21,23,0.0 +24734,39,18,3,0.0 +24734,47,9.5,45,0.0 +24734,54,7.45,43,0.0 +24734,38,263.5,10,0.0 +24734,57,19.5,44,0.0 +24734,44,19.45,49,0.0 +24734,52,7,26,0.0 +24734,45,9.5,49,0.0 +24734,13,6,12,0.0 +24734,29,123.79,42,0.0 +24734,14,23.25,29,0.0 +24734,24,4.5,26,0.0 +24734,11,21,45,0.0 +24734,16,17.45,34,0.0 +24734,67,14,26,0.0 +24734,5,21.35,3,0.0 +24734,75,7.75,12,0.0 +24734,41,9.65,37,0.0 +24734,73,15,18,0.0 +24734,48,12.75,36,0.0 +24734,55,24,39,0.0 +24734,27,43.9,5,0.0 +24734,25,14,36,0.0 +24734,26,31.23,18,0.0 +24734,61,28.5,18,0.0 +24734,28,45.6,6,0.0 +24734,6,25,28,0.0 +24734,64,33.25,23,0.0 +24734,35,18,31,0.0 +24734,19,9.2,37,0.0 +24734,70,15,41,0.0 +24734,46,12,4,0.0 +24734,51,53,38,0.0 +24734,12,38,8,0.0 +24735,69,36,45,0.0 +24735,12,38,35,0.0 +24735,54,7.45,10,0.0 +24735,47,9.5,23,0.0 +24735,14,23.25,44,0.0 +24735,71,21.5,10,0.0 +24735,25,14,8,0.0 +24735,5,21.35,31,0.0 +24735,75,7.75,41,0.0 +24735,58,13.25,14,0.0 +24735,43,46,50,0.0 +24735,27,43.9,47,0.0 +24735,45,9.5,14,0.0 +24735,52,7,21,0.0 +24735,37,26,11,0.0 +24735,42,14,29,0.0 +24735,73,15,31,0.0 +24735,10,31,41,0.0 +24735,36,19,33,0.0 +24735,57,19.5,7,0.0 +24735,56,38,31,0.0 +24735,50,16.25,19,0.0 +24735,4,22,34,0.0 +24735,39,18,50,0.0 +24735,15,15.5,19,0.0 +24735,55,24,3,0.0 +24735,34,14,32,0.0 +24735,33,2.5,23,0.0 +24735,61,28.5,37,0.0 +24735,41,9.65,26,0.0 +24735,24,4.5,16,0.0 +24735,21,10,16,0.0 +24735,74,10,2,0.0 +24735,26,31.23,28,0.0 +24735,30,25.89,22,0.0 +24735,28,45.6,41,0.0 +24735,16,17.45,18,0.0 +24735,46,12,37,0.0 +24735,64,33.25,10,0.0 +24735,20,81,25,0.0 +24735,38,263.5,50,0.0 +24735,3,10,5,0.0 +24735,7,30,15,0.0 +24735,77,13,30,0.0 +24735,1,18,49,0.0 +24735,48,12.75,45,0.0 +24735,68,12.5,6,0.0 +24735,66,17,42,0.0 +24735,76,18,9,0.0 +24735,18,62.5,7,0.0 +24735,60,34,14,0.0 +24735,9,97,13,0.0 +24735,19,9.2,27,0.0 +24735,31,12.5,15,0.0 +24735,2,19,14,0.0 +24735,23,9,41,0.0 +24735,65,21.05,40,0.0 +24735,17,39,17,0.0 +24735,44,19.45,42,0.0 +24735,51,53,44,0.0 +24736,44,19.45,31,0.0 +24736,33,2.5,20,0.0 +24736,45,9.5,26,0.0 +24736,74,10,31,0.0 +24736,65,21.05,32,0.0 +24736,10,31,49,0.0 +24736,49,20,17,0.0 +24737,12,38,28,0.0 +24737,77,13,31,0.0 +24737,34,14,48,0.0 +24737,33,2.5,35,0.0 +24737,25,14,18,0.0 +24737,20,81,35,0.0 +24737,72,34.8,5,0.0 +24737,15,15.5,35,0.0 +24737,51,53,34,0.0 +24737,47,9.5,10,0.0 +24737,4,22,29,0.0 +24737,73,15,40,0.0 +24737,53,32.8,25,0.0 +24737,41,9.65,19,0.0 +24737,57,19.5,17,0.0 +24737,36,19,5,0.0 +24737,29,123.79,20,0.0 +24737,6,25,16,0.0 +24737,43,46,21,0.0 +24737,62,49.3,33,0.0 +24737,48,12.75,48,0.0 +24737,65,21.05,35,0.0 +24737,27,43.9,46,0.0 +24737,67,14,50,0.0 +24737,31,12.5,12,0.0 +24737,49,20,44,0.0 +24737,26,31.23,35,0.0 +24737,71,21.5,24,0.0 +24737,24,4.5,32,0.0 +24737,3,10,38,0.0 +24737,54,7.45,21,0.0 +24738,70,15,3,0.0 +24738,26,31.23,39,0.0 +24738,39,18,50,0.0 +24738,23,9,5,0.0 +24738,17,39,47,0.0 +24738,42,14,50,0.0 +24738,12,38,45,0.0 +24738,20,81,6,0.0 +24738,7,30,32,0.0 +24738,10,31,28,0.0 +24738,38,263.5,46,0.0 +24738,61,28.5,29,0.0 +24738,69,36,12,0.0 +24738,58,13.25,16,0.0 +24738,15,15.5,42,0.0 +24738,19,9.2,14,0.0 +24738,74,10,9,0.0 +24738,55,24,39,0.0 +24738,62,49.3,22,0.0 +24738,6,25,43,0.0 +24738,40,18.4,33,0.0 +24738,21,10,34,0.0 +24738,77,13,28,0.0 +24738,72,34.8,21,0.0 +24738,2,19,16,0.0 +24738,50,16.25,34,0.0 +24738,29,123.79,11,0.0 +24738,13,6,49,0.0 +24738,54,7.45,21,0.0 +24738,5,21.35,7,0.0 +24738,71,21.5,16,0.0 +24738,73,15,47,0.0 +24738,76,18,29,0.0 +24738,41,9.65,45,0.0 +24738,51,53,37,0.0 +24738,68,12.5,36,0.0 +24738,48,12.75,26,0.0 +24738,52,7,20,0.0 +24738,64,33.25,40,0.0 +24738,44,19.45,5,0.0 +24738,67,14,15,0.0 +24738,45,9.5,48,0.0 +24738,56,38,43,0.0 +24738,53,32.8,22,0.0 +24738,59,55,40,0.0 +24738,31,12.5,24,0.0 +24738,75,7.75,50,0.0 +24738,34,14,13,0.0 +24738,4,22,30,0.0 +24738,35,18,3,0.0 +24738,22,21,32,0.0 +24738,49,20,36,0.0 +24738,60,34,28,0.0 +24738,3,10,33,0.0 +24738,57,19.5,1,0.0 +24738,30,25.89,49,0.0 +24738,63,43.9,11,0.0 +24738,33,2.5,19,0.0 +24738,46,12,32,0.0 +24738,65,21.05,6,0.0 +24738,9,97,38,0.0 +24738,47,9.5,14,0.0 +24738,32,32,23,0.0 +24738,24,4.5,13,0.0 +24738,25,14,31,0.0 +24738,28,45.6,42,0.0 +24738,8,40,4,0.0 +24738,11,21,39,0.0 +24738,66,17,6,0.0 +24738,14,23.25,43,0.0 +24738,43,46,2,0.0 +24738,27,43.9,27,0.0 +24738,18,62.5,14,0.0 +24738,37,26,46,0.0 +24738,16,17.45,12,0.0 +24739,44,19.45,38,0.0 +24739,71,21.5,29,0.0 +24739,62,49.3,4,0.0 +24739,12,38,49,0.0 +24739,37,26,34,0.0 +24739,5,21.35,46,0.0 +24739,76,18,24,0.0 +24739,61,28.5,1,0.0 +24739,15,15.5,40,0.0 +24739,63,43.9,35,0.0 +24739,4,22,42,0.0 +24739,33,2.5,35,0.0 +24739,31,12.5,4,0.0 +24739,60,34,50,0.0 +24739,65,21.05,21,0.0 +24739,67,14,18,0.0 +24739,36,19,28,0.0 +24739,18,62.5,21,0.0 +24739,39,18,19,0.0 +24739,77,13,1,0.0 +24739,9,97,35,0.0 +24739,30,25.89,15,0.0 +24739,35,18,22,0.0 +24739,25,14,2,0.0 +24739,11,21,49,0.0 +24739,68,12.5,47,0.0 +24739,42,14,4,0.0 +24739,46,12,9,0.0 +24739,22,21,13,0.0 +24740,37,26,38,0.0 +24740,71,21.5,37,0.0 +24740,14,23.25,45,0.0 +24740,51,53,50,0.0 +24740,16,17.45,17,0.0 +24740,64,33.25,8,0.0 +24740,41,9.65,47,0.0 +24740,6,25,5,0.0 +24740,72,34.8,15,0.0 +24740,32,32,8,0.0 +24740,54,7.45,34,0.0 +24740,33,2.5,39,0.0 +24740,53,32.8,38,0.0 +24740,26,31.23,33,0.0 +24740,74,10,48,0.0 +24740,8,40,10,0.0 +24740,17,39,20,0.0 +24740,69,36,6,0.0 +24740,11,21,12,0.0 +24740,27,43.9,20,0.0 +24740,77,13,27,0.0 +24740,76,18,42,0.0 +24740,25,14,49,0.0 +24740,19,9.2,26,0.0 +24740,62,49.3,30,0.0 +24740,44,19.45,29,0.0 +24740,73,15,36,0.0 +24740,3,10,11,0.0 +24740,36,19,16,0.0 +24740,1,18,33,0.0 +24740,34,14,40,0.0 +24740,43,46,17,0.0 +24740,2,19,22,0.0 +24740,28,45.6,39,0.0 +24740,13,6,12,0.0 +24740,7,30,49,0.0 +24740,23,9,2,0.0 +24740,60,34,35,0.0 +24740,49,20,18,0.0 +24740,65,21.05,50,0.0 +24740,56,38,26,0.0 +24740,75,7.75,25,0.0 +24740,40,18.4,16,0.0 +24740,55,24,22,0.0 +24740,24,4.5,33,0.0 +24740,39,18,4,0.0 +24740,46,12,48,0.0 +24740,63,43.9,34,0.0 +24740,57,19.5,35,0.0 +24740,42,14,5,0.0 +24741,70,15,11,0.0 +24741,66,17,40,0.0 +24741,32,32,50,0.0 +24741,28,45.6,20,0.0 +24741,10,31,31,0.0 +24741,18,62.5,26,0.0 +24741,6,25,39,0.0 +24741,38,263.5,22,0.0 +24741,29,123.79,21,0.0 +24741,48,12.75,33,0.0 +24741,41,9.65,4,0.0 +24741,62,49.3,15,0.0 +24741,15,15.5,2,0.0 +24741,35,18,25,0.0 +24741,69,36,8,0.0 +24741,51,53,24,0.0 +24741,55,24,1,0.0 +24741,44,19.45,37,0.0 +24741,72,34.8,18,0.0 +24741,5,21.35,7,0.0 +24741,27,43.9,27,0.0 +24741,50,16.25,45,0.0 +24741,56,38,8,0.0 +24741,53,32.8,22,0.0 +24742,52,7,42,0.0 +24742,73,15,21,0.0 +24742,70,15,32,0.0 +24742,46,12,6,0.0 +24742,19,9.2,29,0.0 +24742,32,32,21,0.0 +24742,72,34.8,43,0.0 +24742,77,13,41,0.0 +24742,71,21.5,10,0.0 +24742,36,19,6,0.0 +24742,25,14,40,0.0 +24742,27,43.9,46,0.0 +24742,8,40,27,0.0 +24742,20,81,47,0.0 +24742,40,18.4,3,0.0 +24742,22,21,20,0.0 +24742,53,32.8,14,0.0 +24742,6,25,26,0.0 +24742,51,53,35,0.0 +24742,23,9,41,0.0 +24742,48,12.75,45,0.0 +24742,29,123.79,46,0.0 +24742,7,30,11,0.0 +24742,42,14,2,0.0 +24742,35,18,7,0.0 +24742,31,12.5,9,0.0 +24743,61,28.5,50,0.0 +24743,23,9,30,0.0 +24743,28,45.6,42,0.0 +24743,51,53,9,0.0 +24743,46,12,27,0.0 +24743,69,36,42,0.0 +24743,76,18,38,0.0 +24743,65,21.05,6,0.0 +24743,43,46,7,0.0 +24743,4,22,18,0.0 +24743,20,81,3,0.0 +24743,57,19.5,6,0.0 +24743,5,21.35,18,0.0 +24743,1,18,8,0.0 +24743,64,33.25,28,0.0 +24743,44,19.45,45,0.0 +24743,9,97,41,0.0 +24743,49,20,23,0.0 +24743,10,31,30,0.0 +24743,34,14,37,0.0 +24743,19,9.2,38,0.0 +24743,6,25,32,0.0 +24743,16,17.45,25,0.0 +24743,58,13.25,32,0.0 +24743,40,18.4,49,0.0 +24743,72,34.8,50,0.0 +24743,2,19,18,0.0 +24744,77,13,27,0.0 +24744,69,36,13,0.0 +24744,65,21.05,21,0.0 +24744,17,39,16,0.0 +24744,22,21,4,0.0 +24744,61,28.5,44,0.0 +24744,18,62.5,47,0.0 +24744,31,12.5,10,0.0 +24744,5,21.35,49,0.0 +24744,43,46,37,0.0 +24744,10,31,12,0.0 +24744,63,43.9,37,0.0 +24744,47,9.5,19,0.0 +24744,2,19,26,0.0 +24744,3,10,23,0.0 +24744,1,18,21,0.0 +24744,74,10,19,0.0 +24744,66,17,10,0.0 +24744,57,19.5,26,0.0 +24744,70,15,20,0.0 +24744,73,15,35,0.0 +24744,34,14,30,0.0 +24744,14,23.25,26,0.0 +24744,39,18,29,0.0 +24744,49,20,27,0.0 +24744,75,7.75,37,0.0 +24744,8,40,48,0.0 +24744,26,31.23,37,0.0 +24744,35,18,12,0.0 +24745,50,16.25,11,0.0 +24745,17,39,42,0.0 +24745,75,7.75,2,0.0 +24745,15,15.5,30,0.0 +24745,64,33.25,32,0.0 +24745,60,34,48,0.0 +24745,68,12.5,25,0.0 +24745,26,31.23,5,0.0 +24745,36,19,44,0.0 +24745,69,36,49,0.0 +24745,39,18,33,0.0 +24745,31,12.5,4,0.0 +24745,56,38,49,0.0 +24745,22,21,42,0.0 +24745,72,34.8,26,0.0 +24745,42,14,48,0.0 +24745,62,49.3,30,0.0 +24745,13,6,37,0.0 +24745,1,18,36,0.0 +24745,29,123.79,37,0.0 +24745,51,53,5,0.0 +24745,47,9.5,7,0.0 +24745,74,10,19,0.0 +24745,4,22,33,0.0 +24745,77,13,15,0.0 +24745,7,30,27,0.0 +24745,12,38,47,0.0 +24745,45,9.5,30,0.0 +24745,61,28.5,19,0.0 +24745,19,9.2,8,0.0 +24745,23,9,18,0.0 +24745,10,31,24,0.0 +24745,41,9.65,4,0.0 +24745,49,20,20,0.0 +24745,57,19.5,26,0.0 +24745,8,40,4,0.0 +24745,48,12.75,3,0.0 +24745,27,43.9,37,0.0 +24745,35,18,32,0.0 +24745,30,25.89,1,0.0 +24745,21,10,45,0.0 +24745,46,12,38,0.0 +24745,52,7,42,0.0 +24745,3,10,46,0.0 +24745,25,14,35,0.0 +24745,70,15,20,0.0 +24745,66,17,45,0.0 +24745,5,21.35,36,0.0 +24745,28,45.6,1,0.0 +24745,37,26,18,0.0 +24745,16,17.45,14,0.0 +24745,54,7.45,31,0.0 +24745,71,21.5,37,0.0 +24745,34,14,2,0.0 +24745,59,55,5,0.0 +24745,11,21,7,0.0 +24745,76,18,50,0.0 +24745,33,2.5,25,0.0 +24746,54,7.45,44,0.0 +24746,77,13,31,0.0 +24746,36,19,14,0.0 +24746,68,12.5,47,0.0 +24746,30,25.89,26,0.0 +24746,32,32,24,0.0 +24746,61,28.5,50,0.0 +24746,14,23.25,33,0.0 +24746,31,12.5,44,0.0 +24746,25,14,17,0.0 +24746,17,39,17,0.0 +24746,5,21.35,19,0.0 +24746,57,19.5,18,0.0 +24746,9,97,48,0.0 +24746,28,45.6,32,0.0 +24746,76,18,5,0.0 +24746,50,16.25,27,0.0 +24746,7,30,15,0.0 +24746,38,263.5,48,0.0 +24746,13,6,14,0.0 +24746,19,9.2,7,0.0 +24746,52,7,21,0.0 +24746,34,14,38,0.0 +24746,10,31,39,0.0 +24746,72,34.8,13,0.0 +24746,46,12,39,0.0 +24746,2,19,5,0.0 +24747,6,25,35,0.0 +24747,54,7.45,37,0.0 +24747,29,123.79,18,0.0 +24747,72,34.8,15,0.0 +24747,11,21,27,0.0 +24747,33,2.5,10,0.0 +24747,38,263.5,22,0.0 +24747,20,81,28,0.0 +24747,46,12,7,0.0 +24747,71,21.5,33,0.0 +24747,35,18,9,0.0 +24747,43,46,40,0.0 +24747,50,16.25,26,0.0 +24747,77,13,47,0.0 +24747,4,22,31,0.0 +24747,8,40,25,0.0 +24747,12,38,4,0.0 +24747,53,32.8,17,0.0 +24747,40,18.4,46,0.0 +24747,69,36,26,0.0 +24747,65,21.05,45,0.0 +24747,24,4.5,33,0.0 +24747,1,18,23,0.0 +24747,28,45.6,45,0.0 +24747,60,34,11,0.0 +24747,5,21.35,17,0.0 +24747,49,20,29,0.0 +24747,48,12.75,41,0.0 +24747,59,55,27,0.0 +24747,68,12.5,41,0.0 +24747,19,9.2,35,0.0 +24747,27,43.9,39,0.0 +24747,47,9.5,25,0.0 +24747,41,9.65,43,0.0 +24747,16,17.45,42,0.0 +24747,18,62.5,14,0.0 +24748,10,31,15,0.0 +24748,53,32.8,27,0.0 +24748,43,46,50,0.0 +24748,38,263.5,26,0.0 +24748,25,14,7,0.0 +24748,31,12.5,8,0.0 +24748,6,25,40,0.0 +24748,19,9.2,22,0.0 +24748,46,12,31,0.0 +24748,9,97,19,0.0 +24748,52,7,45,0.0 +24748,63,43.9,3,0.0 +24748,50,16.25,23,0.0 +24748,7,30,49,0.0 +24748,42,14,27,0.0 +24748,69,36,14,0.0 +24748,73,15,6,0.0 +24748,4,22,13,0.0 +24748,60,34,7,0.0 +24748,18,62.5,47,0.0 +24748,70,15,22,0.0 +24748,62,49.3,10,0.0 +24748,8,40,26,0.0 +24748,32,32,6,0.0 +24748,44,19.45,28,0.0 +24748,40,18.4,23,0.0 +24748,30,25.89,46,0.0 +24748,14,23.25,42,0.0 +24748,45,9.5,4,0.0 +24748,58,13.25,33,0.0 +24748,33,2.5,26,0.0 +24748,49,20,26,0.0 +24748,47,9.5,23,0.0 +24748,17,39,46,0.0 +24748,37,26,30,0.0 +24748,74,10,29,0.0 +24748,27,43.9,5,0.0 +24748,61,28.5,24,0.0 +24748,55,24,36,0.0 +24748,75,7.75,17,0.0 +24748,66,17,2,0.0 +24748,24,4.5,11,0.0 +24748,57,19.5,32,0.0 +24748,65,21.05,34,0.0 +24748,12,38,18,0.0 +24748,39,18,42,0.0 +24748,22,21,47,0.0 +24748,72,34.8,35,0.0 +24748,56,38,20,0.0 +24748,29,123.79,39,0.0 +24748,77,13,48,0.0 +24748,34,14,29,0.0 +24748,71,21.5,42,0.0 +24748,64,33.25,15,0.0 +24748,11,21,49,0.0 +24748,35,18,38,0.0 +24748,28,45.6,35,0.0 +24748,59,55,2,0.0 +24748,26,31.23,29,0.0 +24748,1,18,20,0.0 +24748,67,14,24,0.0 +24748,20,81,27,0.0 +24748,21,10,17,0.0 +24748,54,7.45,14,0.0 +24748,2,19,21,0.0 +24749,52,7,16,0.0 +24750,16,17.45,2,0.0 +24750,50,16.25,19,0.0 +24750,73,15,41,0.0 +24750,58,13.25,10,0.0 +24750,55,24,33,0.0 +24750,10,31,6,0.0 +24750,75,7.75,17,0.0 +24750,39,18,28,0.0 +24750,13,6,42,0.0 +24750,31,12.5,18,0.0 +24750,68,12.5,42,0.0 +24750,66,17,38,0.0 +24750,2,19,22,0.0 +24750,56,38,13,0.0 +24751,67,14,24,0.0 +24751,22,21,14,0.0 +24751,21,10,37,0.0 +24751,19,9.2,2,0.0 +24751,10,31,21,0.0 +24751,46,12,12,0.0 +24751,43,46,13,0.0 +24751,47,9.5,4,0.0 +24751,15,15.5,6,0.0 +24751,9,97,20,0.0 +24751,28,45.6,48,0.0 +24751,75,7.75,36,0.0 +24751,63,43.9,38,0.0 +24751,68,12.5,30,0.0 +24751,60,34,9,0.0 +24751,23,9,21,0.0 +24751,3,10,27,0.0 +24751,48,12.75,5,0.0 +24751,17,39,4,0.0 +24751,2,19,12,0.0 +24751,14,23.25,19,0.0 +24752,5,21.35,47,0.0 +24752,38,263.5,50,0.0 +24752,21,10,21,0.0 +24752,16,17.45,32,0.0 +24752,76,18,3,0.0 +24752,49,20,46,0.0 +24752,56,38,22,0.0 +24752,9,97,43,0.0 +24752,70,15,15,0.0 +24752,35,18,49,0.0 +24752,6,25,34,0.0 +24752,14,23.25,12,0.0 +24752,43,46,15,0.0 +24752,32,32,50,0.0 +24752,53,32.8,9,0.0 +24752,22,21,15,0.0 +24752,27,43.9,28,0.0 +24752,29,123.79,46,0.0 +24752,72,34.8,17,0.0 +24752,68,12.5,35,0.0 +24752,62,49.3,36,0.0 +24752,26,31.23,40,0.0 +24752,74,10,50,0.0 +24752,61,28.5,6,0.0 +24752,1,18,16,0.0 +24752,24,4.5,20,0.0 +24752,54,7.45,17,0.0 +24752,7,30,24,0.0 +24752,30,25.89,1,0.0 +24752,71,21.5,38,0.0 +24752,15,15.5,29,0.0 +24752,20,81,20,0.0 +24752,40,18.4,39,0.0 +24752,41,9.65,24,0.0 +24752,65,21.05,14,0.0 +24752,39,18,26,0.0 +24752,67,14,35,0.0 +24752,75,7.75,23,0.0 +24752,77,13,48,0.0 +24752,45,9.5,9,0.0 +24752,3,10,35,0.0 +24752,51,53,49,0.0 +24752,33,2.5,15,0.0 +24752,28,45.6,25,0.0 +24752,55,24,8,0.0 +24752,47,9.5,29,0.0 +24752,23,9,2,0.0 +24752,44,19.45,49,0.0 +24752,18,62.5,11,0.0 +24752,73,15,27,0.0 +24752,25,14,37,0.0 +24752,42,14,34,0.0 +24752,2,19,28,0.0 +24752,66,17,43,0.0 +24752,19,9.2,42,0.0 +24752,12,38,4,0.0 +24752,17,39,26,0.0 +24753,26,31.23,6,0.0 +24753,32,32,34,0.0 +24753,49,20,6,0.0 +24753,31,12.5,24,0.0 +24753,37,26,21,0.0 +24753,3,10,2,0.0 +24753,48,12.75,25,0.0 +24753,62,49.3,21,0.0 +24753,20,81,13,0.0 +24753,53,32.8,23,0.0 +24753,61,28.5,13,0.0 +24753,54,7.45,36,0.0 +24753,51,53,4,0.0 +24753,66,17,41,0.0 +24753,77,13,30,0.0 +24753,14,23.25,24,0.0 +24753,6,25,44,0.0 +24753,5,21.35,16,0.0 +24753,50,16.25,31,0.0 +24753,67,14,37,0.0 +24753,70,15,13,0.0 +24753,76,18,41,0.0 +24753,30,25.89,35,0.0 +24753,69,36,43,0.0 +24753,12,38,20,0.0 +24753,57,19.5,1,0.0 +24753,47,9.5,45,0.0 +24753,15,15.5,11,0.0 +24753,45,9.5,46,0.0 +24753,18,62.5,49,0.0 +24753,22,21,46,0.0 +24753,75,7.75,19,0.0 +24753,43,46,15,0.0 +24753,60,34,49,0.0 +24753,29,123.79,21,0.0 +24753,27,43.9,18,0.0 +24753,16,17.45,9,0.0 +24753,39,18,17,0.0 +24753,36,19,21,0.0 +24753,4,22,2,0.0 +24753,71,21.5,18,0.0 +24753,19,9.2,35,0.0 +24754,30,25.89,34,0.0 +24754,69,36,39,0.0 +24754,76,18,50,0.0 +24754,32,32,7,0.0 +24754,62,49.3,8,0.0 +24754,27,43.9,23,0.0 +24754,68,12.5,22,0.0 +24754,4,22,17,0.0 +24754,14,23.25,26,0.0 +24754,71,21.5,10,0.0 +24754,67,14,34,0.0 +24754,74,10,22,0.0 +24754,42,14,8,0.0 +24754,70,15,25,0.0 +24754,63,43.9,3,0.0 +24754,44,19.45,30,0.0 +24754,21,10,8,0.0 +24754,20,81,1,0.0 +24754,19,9.2,37,0.0 +24754,12,38,23,0.0 +24754,13,6,33,0.0 +24754,39,18,6,0.0 +24754,17,39,23,0.0 +24754,2,19,44,0.0 +24754,75,7.75,5,0.0 +24754,64,33.25,45,0.0 +24754,61,28.5,27,0.0 +24754,11,21,4,0.0 +24754,56,38,42,0.0 +24754,45,9.5,48,0.0 +24754,59,55,18,0.0 +24754,22,21,2,0.0 +24754,28,45.6,49,0.0 +24754,52,7,49,0.0 +24754,46,12,2,0.0 +24754,66,17,1,0.0 +24754,33,2.5,28,0.0 +24754,55,24,10,0.0 +24754,15,15.5,21,0.0 +24754,47,9.5,6,0.0 +24754,25,14,13,0.0 +24754,24,4.5,20,0.0 +24754,43,46,36,0.0 +24755,27,43.9,43,0.0 +24755,15,15.5,14,0.0 +24755,18,62.5,27,0.0 +24755,25,14,47,0.0 +24755,16,17.45,2,0.0 +24755,70,15,46,0.0 +24755,44,19.45,18,0.0 +24755,61,28.5,36,0.0 +24755,59,55,15,0.0 +24755,65,21.05,36,0.0 +24755,9,97,17,0.0 +24755,76,18,41,0.0 +24755,45,9.5,30,0.0 +24755,40,18.4,30,0.0 +24755,58,13.25,48,0.0 +24755,68,12.5,4,0.0 +24755,24,4.5,30,0.0 +24755,14,23.25,34,0.0 +24755,41,9.65,41,0.0 +24755,6,25,2,0.0 +24755,56,38,3,0.0 +24755,17,39,20,0.0 +24755,53,32.8,26,0.0 +24755,57,19.5,28,0.0 +24755,55,24,10,0.0 +24755,13,6,12,0.0 +24755,29,123.79,43,0.0 +24755,60,34,3,0.0 +24755,4,22,43,0.0 +24755,12,38,26,0.0 +24755,62,49.3,41,0.0 +24755,63,43.9,34,0.0 +24755,2,19,30,0.0 +24755,48,12.75,5,0.0 +24755,64,33.25,48,0.0 +24755,20,81,42,0.0 +24755,34,14,34,0.0 +24755,33,2.5,25,0.0 +24755,11,21,25,0.0 +24755,47,9.5,39,0.0 +24755,7,30,24,0.0 +24755,21,10,43,0.0 +24756,3,10,38,0.0 +24756,5,21.35,35,0.0 +24756,72,34.8,35,0.0 +24756,44,19.45,32,0.0 +24756,25,14,20,0.0 +24756,10,31,25,0.0 +24756,28,45.6,25,0.0 +24756,6,25,4,0.0 +24756,20,81,2,0.0 +24756,17,39,35,0.0 +24756,18,62.5,50,0.0 +24756,69,36,10,0.0 +24756,24,4.5,21,0.0 +24756,46,12,47,0.0 +24756,63,43.9,13,0.0 +24756,34,14,46,0.0 +24756,65,21.05,7,0.0 +24756,40,18.4,32,0.0 +24756,61,28.5,36,0.0 +24756,47,9.5,32,0.0 +24756,12,38,19,0.0 +24756,58,13.25,34,0.0 +24756,26,31.23,42,0.0 +24756,57,19.5,41,0.0 +24756,62,49.3,2,0.0 +24756,39,18,11,0.0 +24756,1,18,16,0.0 +24756,33,2.5,26,0.0 +24756,54,7.45,19,0.0 +24756,11,21,29,0.0 +24756,76,18,37,0.0 +24756,73,15,3,0.0 +24756,52,7,39,0.0 +24756,13,6,23,0.0 +24756,48,12.75,50,0.0 +24756,41,9.65,36,0.0 +24756,9,97,3,0.0 +24756,31,12.5,12,0.0 +24756,38,263.5,30,0.0 +24756,66,17,3,0.0 +24756,2,19,39,0.0 +24756,42,14,22,0.0 +24756,64,33.25,18,0.0 +24756,55,24,28,0.0 +24757,31,12.5,36,0.0 +24757,33,2.5,37,0.0 +24757,6,25,32,0.0 +24757,62,49.3,23,0.0 +24757,9,97,48,0.0 +24757,69,36,2,0.0 +24757,38,263.5,29,0.0 +24757,40,18.4,14,0.0 +24757,51,53,8,0.0 +24757,67,14,50,0.0 +24757,57,19.5,39,0.0 +24757,34,14,12,0.0 +24757,61,28.5,38,0.0 +24757,68,12.5,30,0.0 +24757,74,10,47,0.0 +24757,46,12,29,0.0 +24757,47,9.5,38,0.0 +24757,11,21,13,0.0 +24757,50,16.25,8,0.0 +24757,21,10,43,0.0 +24757,73,15,9,0.0 +24757,29,123.79,47,0.0 +24757,13,6,12,0.0 +24757,52,7,2,0.0 +24757,39,18,23,0.0 +24757,19,9.2,15,0.0 +24757,36,19,26,0.0 +24757,59,55,38,0.0 +24757,22,21,35,0.0 +24757,27,43.9,32,0.0 +24757,65,21.05,45,0.0 +24757,30,25.89,31,0.0 +24757,1,18,45,0.0 +24757,53,32.8,22,0.0 +24757,63,43.9,4,0.0 +24757,35,18,44,0.0 +24757,8,40,43,0.0 +24757,3,10,31,0.0 +24757,60,34,21,0.0 +24757,55,24,1,0.0 +24757,23,9,12,0.0 +24757,37,26,30,0.0 +24757,58,13.25,45,0.0 +24757,70,15,50,0.0 +24757,32,32,34,0.0 +24757,66,17,16,0.0 +24757,43,46,43,0.0 +24757,17,39,49,0.0 +24757,10,31,11,0.0 +24758,17,39,17,0.0 +24758,32,32,5,0.0 +24758,16,17.45,10,0.0 +24758,43,46,22,0.0 +24758,66,17,9,0.0 +24758,7,30,21,0.0 +24758,58,13.25,43,0.0 +24758,68,12.5,17,0.0 +24758,46,12,1,0.0 +24758,50,16.25,39,0.0 +24758,12,38,47,0.0 +24758,37,26,9,0.0 +24758,34,14,41,0.0 +24758,40,18.4,29,0.0 +24758,55,24,6,0.0 +24758,42,14,49,0.0 +24758,10,31,27,0.0 +24758,51,53,17,0.0 +24758,30,25.89,20,0.0 +24758,15,15.5,9,0.0 +24758,60,34,41,0.0 +24758,31,12.5,34,0.0 +24758,56,38,46,0.0 +24758,21,10,3,0.0 +24758,28,45.6,30,0.0 +24758,52,7,50,0.0 +24758,5,21.35,38,0.0 +24758,77,13,17,0.0 +24758,76,18,27,0.0 +24758,9,97,33,0.0 +24758,57,19.5,9,0.0 +24758,73,15,20,0.0 +24758,65,21.05,42,0.0 +24758,20,81,8,0.0 +24758,23,9,8,0.0 +24758,53,32.8,20,0.0 +24758,22,21,29,0.0 +24758,4,22,29,0.0 +24758,1,18,36,0.0 +24758,39,18,12,0.0 +24758,41,9.65,35,0.0 +24758,71,21.5,15,0.0 +24758,14,23.25,14,0.0 +24758,36,19,14,0.0 +24758,25,14,28,0.0 +24758,35,18,11,0.0 +24758,45,9.5,20,0.0 +24758,75,7.75,21,0.0 +24758,29,123.79,1,0.0 +24758,74,10,25,0.0 +24758,62,49.3,2,0.0 +24758,70,15,21,0.0 +24758,47,9.5,27,0.0 +24758,19,9.2,42,0.0 +24758,2,19,5,0.0 +24758,64,33.25,41,0.0 +24758,48,12.75,8,0.0 +24758,24,4.5,5,0.0 +24758,8,40,14,0.0 +24758,49,20,45,0.0 +24758,59,55,38,0.0 +24758,69,36,45,0.0 +24758,27,43.9,3,0.0 +24758,26,31.23,7,0.0 +24758,18,62.5,44,0.0 +24758,33,2.5,46,0.0 +24759,55,24,34,0.0 +24759,49,20,22,0.0 +24759,20,81,42,0.0 +24759,35,18,50,0.0 +24759,7,30,18,0.0 +24759,14,23.25,26,0.0 +24759,50,16.25,13,0.0 +24759,8,40,44,0.0 +24759,73,15,1,0.0 +24759,74,10,47,0.0 +24759,37,26,44,0.0 +24759,54,7.45,40,0.0 +24759,32,32,40,0.0 +24759,6,25,49,0.0 +24759,15,15.5,8,0.0 +24759,11,21,12,0.0 +24759,43,46,32,0.0 +24759,9,97,25,0.0 +24759,26,31.23,21,0.0 +24759,19,9.2,44,0.0 +24759,1,18,10,0.0 +24759,21,10,8,0.0 +24759,36,19,31,0.0 +24759,66,17,45,0.0 +24759,52,7,7,0.0 +24759,12,38,22,0.0 +24759,48,12.75,28,0.0 +24759,30,25.89,1,0.0 +24759,72,34.8,15,0.0 +24759,39,18,16,0.0 +24759,77,13,22,0.0 +24759,5,21.35,26,0.0 +24759,34,14,6,0.0 +24759,56,38,24,0.0 +24759,31,12.5,8,0.0 +24759,45,9.5,20,0.0 +24759,75,7.75,4,0.0 +24759,28,45.6,5,0.0 +24759,24,4.5,8,0.0 +24759,40,18.4,2,0.0 +24759,63,43.9,34,0.0 +24759,76,18,4,0.0 +24759,53,32.8,23,0.0 +24759,2,19,39,0.0 +24759,4,22,12,0.0 +24759,69,36,47,0.0 +24760,11,21,38,0.0 +24760,68,12.5,33,0.0 +24760,49,20,22,0.0 +24760,72,34.8,49,0.0 +24760,6,25,32,0.0 +24760,60,34,37,0.0 +24760,46,12,35,0.0 +24760,25,14,2,0.0 +24760,59,55,32,0.0 +24760,67,14,16,0.0 +24760,34,14,14,0.0 +24760,51,53,39,0.0 +24760,66,17,48,0.0 +24760,20,81,2,0.0 +24760,28,45.6,37,0.0 +24760,4,22,42,0.0 +24760,14,23.25,15,0.0 +24760,64,33.25,23,0.0 +24760,3,10,18,0.0 +24760,27,43.9,10,0.0 +24760,62,49.3,21,0.0 +24760,53,32.8,16,0.0 +24760,57,19.5,27,0.0 +24760,73,15,15,0.0 +24760,71,21.5,9,0.0 +24760,76,18,24,0.0 +24760,29,123.79,38,0.0 +24760,7,30,32,0.0 +24760,58,13.25,45,0.0 +24760,19,9.2,3,0.0 +24760,41,9.65,3,0.0 +24760,37,26,6,0.0 +24760,12,38,46,0.0 +24760,55,24,22,0.0 +24760,15,15.5,40,0.0 +24760,61,28.5,25,0.0 +24760,30,25.89,26,0.0 +24760,47,9.5,28,0.0 +24760,16,17.45,1,0.0 +24760,63,43.9,46,0.0 +24760,2,19,43,0.0 +24760,75,7.75,13,0.0 +24760,44,19.45,21,0.0 +24760,56,38,14,0.0 +24760,26,31.23,47,0.0 +24760,1,18,14,0.0 +24760,38,263.5,16,0.0 +24760,54,7.45,8,0.0 +24760,36,19,50,0.0 +24760,35,18,31,0.0 +24760,50,16.25,46,0.0 +24760,21,10,13,0.0 +24760,52,7,34,0.0 +24760,69,36,6,0.0 +24760,13,6,22,0.0 +24760,42,14,9,0.0 +24760,18,62.5,8,0.0 +24760,22,21,40,0.0 +24760,40,18.4,25,0.0 +24760,65,21.05,18,0.0 +24760,32,32,14,0.0 +24760,70,15,26,0.0 +24760,43,46,27,0.0 +24760,17,39,17,0.0 +24760,45,9.5,15,0.0 +24760,48,12.75,25,0.0 +24760,31,12.5,23,0.0 +24760,24,4.5,22,0.0 +24760,74,10,2,0.0 +24760,39,18,12,0.0 +24760,23,9,15,0.0 +24760,9,97,24,0.0 +24760,33,2.5,33,0.0 +24760,77,13,22,0.0 +24760,5,21.35,33,0.0 +24760,10,31,14,0.0 +24760,8,40,5,0.0 +24761,69,36,26,0.0 +24761,20,81,48,0.0 +24761,8,40,45,0.0 +24761,17,39,33,0.0 +24761,51,53,47,0.0 +24761,1,18,29,0.0 +24761,74,10,10,0.0 +24761,43,46,37,0.0 +24761,28,45.6,6,0.0 +24761,32,32,49,0.0 +24762,56,38,26,0.0 +24762,38,263.5,39,0.0 +24762,54,7.45,20,0.0 +24762,2,19,24,0.0 +24762,72,34.8,27,0.0 +24762,62,49.3,25,0.0 +24762,37,26,28,0.0 +24762,68,12.5,10,0.0 +24762,16,17.45,7,0.0 +24763,13,6,32,0.0 +24763,47,9.5,16,0.0 +24763,6,25,29,0.0 +24763,9,97,40,0.0 +24763,19,9.2,17,0.0 +24763,21,10,46,0.0 +24763,44,19.45,2,0.0 +24763,48,12.75,32,0.0 +24763,17,39,40,0.0 +24763,10,31,11,0.0 +24763,28,45.6,2,0.0 +24763,72,34.8,37,0.0 +24763,20,81,7,0.0 +24763,67,14,32,0.0 +24763,73,15,6,0.0 +24763,40,18.4,30,0.0 +24763,65,21.05,11,0.0 +24763,57,19.5,6,0.0 +24763,54,7.45,1,0.0 +24763,22,21,46,0.0 +24763,4,22,21,0.0 +24763,18,62.5,2,0.0 +24763,68,12.5,46,0.0 +24763,38,263.5,16,0.0 +24764,58,13.25,4,0.0 +24764,70,15,32,0.0 +24764,8,40,8,0.0 +24764,9,97,26,0.0 +24764,46,12,48,0.0 +24764,61,28.5,50,0.0 +24764,54,7.45,22,0.0 +24764,1,18,23,0.0 +24764,67,14,29,0.0 +24764,71,21.5,20,0.0 +24764,47,9.5,13,0.0 +24764,39,18,20,0.0 +24764,59,55,29,0.0 +24764,66,17,19,0.0 +24764,18,62.5,41,0.0 +24764,45,9.5,38,0.0 +24764,28,45.6,44,0.0 +24764,32,32,8,0.0 +24764,55,24,32,0.0 +24764,30,25.89,32,0.0 +24764,4,22,35,0.0 +24764,7,30,34,0.0 +24764,27,43.9,44,0.0 +24764,64,33.25,7,0.0 +24764,75,7.75,35,0.0 +24764,23,9,19,0.0 +24764,10,31,45,0.0 +24764,76,18,11,0.0 +24764,44,19.45,13,0.0 +24764,25,14,12,0.0 +24764,49,20,33,0.0 +24764,38,263.5,28,0.0 +24764,19,9.2,42,0.0 +24764,60,34,31,0.0 +24764,48,12.75,46,0.0 +24764,2,19,42,0.0 +24764,24,4.5,45,0.0 +24764,77,13,11,0.0 +24765,75,7.75,40,0.0 +24765,76,18,6,0.0 +24765,27,43.9,9,0.0 +24765,17,39,24,0.0 +24765,70,15,19,0.0 +24765,54,7.45,39,0.0 +24765,45,9.5,20,0.0 +24765,1,18,34,0.0 +24765,39,18,27,0.0 +24765,15,15.5,15,0.0 +24765,68,12.5,11,0.0 +24765,18,62.5,25,0.0 +24765,34,14,5,0.0 +24765,2,19,14,0.0 +24765,26,31.23,14,0.0 +24765,22,21,47,0.0 +24765,41,9.65,28,0.0 +24765,56,38,17,0.0 +24765,36,19,42,0.0 +24765,19,9.2,24,0.0 +24765,16,17.45,15,0.0 +24765,10,31,28,0.0 +24765,64,33.25,43,0.0 +24765,4,22,46,0.0 +24765,28,45.6,18,0.0 +24765,32,32,45,0.0 +24765,25,14,20,0.0 +24765,55,24,16,0.0 +24765,37,26,20,0.0 +24765,50,16.25,19,0.0 +24765,44,19.45,16,0.0 +24765,11,21,30,0.0 +24765,63,43.9,19,0.0 +24765,40,18.4,26,0.0 +24765,29,123.79,50,0.0 +24766,8,40,23,0.0 +24766,40,18.4,10,0.0 +24766,49,20,33,0.0 +24766,25,14,17,0.0 +24766,3,10,21,0.0 +24766,30,25.89,14,0.0 +24766,4,22,9,0.0 +24766,77,13,23,0.0 +24766,47,9.5,7,0.0 +24766,69,36,37,0.0 +24766,2,19,34,0.0 +24766,39,18,8,0.0 +24766,21,10,18,0.0 +24766,38,263.5,46,0.0 +24766,73,15,33,0.0 +24766,74,10,42,0.0 +24766,72,34.8,26,0.0 +24766,57,19.5,13,0.0 +24766,11,21,14,0.0 +24766,54,7.45,24,0.0 +24766,58,13.25,28,0.0 +24766,50,16.25,4,0.0 +24766,16,17.45,23,0.0 +24766,53,32.8,32,0.0 +24766,22,21,10,0.0 +24766,65,21.05,20,0.0 +24766,24,4.5,39,0.0 +24766,5,21.35,9,0.0 +24766,36,19,2,0.0 +24767,46,12,6,0.0 +24767,33,2.5,3,0.0 +24767,71,21.5,8,0.0 +24767,25,14,44,0.0 +24767,32,32,37,0.0 +24767,67,14,43,0.0 +24767,66,17,34,0.0 +24767,20,81,35,0.0 +24767,49,20,16,0.0 +24767,22,21,12,0.0 +24767,54,7.45,29,0.0 +24767,24,4.5,39,0.0 +24767,47,9.5,50,0.0 +24767,8,40,25,0.0 +24767,3,10,37,0.0 +24767,15,15.5,23,0.0 +24767,65,21.05,19,0.0 +24767,61,28.5,6,0.0 +24767,23,9,36,0.0 +24767,56,38,48,0.0 +24767,27,43.9,8,0.0 +24767,73,15,2,0.0 +24767,11,21,9,0.0 +24767,48,12.75,23,0.0 +24767,64,33.25,46,0.0 +24767,51,53,6,0.0 +24767,7,30,43,0.0 +24767,74,10,49,0.0 +24767,70,15,20,0.0 +24767,34,14,9,0.0 +24767,12,38,16,0.0 +24767,30,25.89,1,0.0 +24767,63,43.9,37,0.0 +24768,1,18,3,0.0 +24768,65,21.05,40,0.0 +24768,43,46,32,0.0 +24768,20,81,15,0.0 +24768,12,38,47,0.0 +24768,55,24,24,0.0 +24768,46,12,17,0.0 +24768,28,45.6,25,0.0 +24768,52,7,47,0.0 +24768,24,4.5,23,0.0 +24768,21,10,30,0.0 +24768,26,31.23,41,0.0 +24768,30,25.89,30,0.0 +24768,59,55,2,0.0 +24768,15,15.5,8,0.0 +24768,10,31,27,0.0 +24768,74,10,26,0.0 +24768,35,18,49,0.0 +24768,40,18.4,37,0.0 +24768,22,21,15,0.0 +24768,36,19,29,0.0 +24768,70,15,25,0.0 +24768,66,17,19,0.0 +24768,67,14,1,0.0 +24768,71,21.5,1,0.0 +24768,41,9.65,18,0.0 +24768,34,14,49,0.0 +24768,4,22,28,0.0 +24768,62,49.3,42,0.0 +24768,38,263.5,48,0.0 +24768,68,12.5,16,0.0 +24768,49,20,7,0.0 +24768,2,19,2,0.0 +24768,16,17.45,10,0.0 +24768,77,13,12,0.0 +24768,29,123.79,18,0.0 +24768,39,18,14,0.0 +24768,7,30,10,0.0 +24768,37,26,13,0.0 +24768,25,14,5,0.0 +24768,63,43.9,48,0.0 +24768,54,7.45,33,0.0 +24768,27,43.9,30,0.0 +24768,18,62.5,18,0.0 +24768,53,32.8,6,0.0 +24768,73,15,42,0.0 +24769,47,9.5,28,0.0 +24769,51,53,20,0.0 +24769,15,15.5,30,0.0 +24769,2,19,40,0.0 +24769,72,34.8,30,0.0 +24769,55,24,13,0.0 +24769,35,18,16,0.0 +24769,28,45.6,28,0.0 +24769,27,43.9,36,0.0 +24769,62,49.3,18,0.0 +24769,39,18,20,0.0 +24769,53,32.8,12,0.0 +24769,14,23.25,21,0.0 +24769,26,31.23,2,0.0 +24769,63,43.9,33,0.0 +24769,16,17.45,16,0.0 +24769,44,19.45,25,0.0 +24769,60,34,27,0.0 +24769,73,15,5,0.0 +24769,3,10,5,0.0 +24769,76,18,44,0.0 +24769,43,46,15,0.0 +24769,67,14,35,0.0 +24769,57,19.5,36,0.0 +24769,36,19,15,0.0 +24769,25,14,29,0.0 +24769,34,14,40,0.0 +24769,45,9.5,42,0.0 +24769,11,21,50,0.0 +24769,10,31,26,0.0 +24769,69,36,26,0.0 +24769,66,17,2,0.0 +24769,59,55,11,0.0 +24769,21,10,4,0.0 +24769,6,25,5,0.0 +24769,77,13,43,0.0 +24769,9,97,5,0.0 +24769,56,38,11,0.0 +24769,1,18,24,0.0 +24769,33,2.5,34,0.0 +24769,50,16.25,17,0.0 +24769,30,25.89,41,0.0 +24769,7,30,39,0.0 +24769,64,33.25,5,0.0 +24769,8,40,3,0.0 +24769,19,9.2,16,0.0 +24769,20,81,19,0.0 +24769,5,21.35,38,0.0 +24769,22,21,9,0.0 +24769,17,39,37,0.0 +24769,23,9,37,0.0 +24769,48,12.75,29,0.0 +24769,75,7.75,3,0.0 +24769,52,7,25,0.0 +24769,13,6,21,0.0 +24769,49,20,13,0.0 +24769,18,62.5,32,0.0 +24769,12,38,8,0.0 +24769,29,123.79,36,0.0 +24769,68,12.5,26,0.0 +24769,71,21.5,50,0.0 +24769,58,13.25,18,0.0 +24769,40,18.4,48,0.0 +24769,24,4.5,5,0.0 +24769,65,21.05,17,0.0 +24770,29,123.79,23,0.0 +24770,63,43.9,32,0.0 +24770,16,17.45,8,0.0 +24770,26,31.23,2,0.0 +24770,35,18,8,0.0 +24770,34,14,35,0.0 +24770,31,12.5,45,0.0 +24770,74,10,7,0.0 +24770,2,19,13,0.0 +24770,13,6,25,0.0 +24771,71,21.5,11,0.0 +24771,3,10,3,0.0 +24771,15,15.5,48,0.0 +24771,29,123.79,44,0.0 +24771,68,12.5,1,0.0 +24771,46,12,45,0.0 +24771,20,81,6,0.0 +24771,45,9.5,41,0.0 +24771,41,9.65,17,0.0 +24771,7,30,29,0.0 +24771,64,33.25,42,0.0 +24771,34,14,49,0.0 +24771,33,2.5,39,0.0 +24771,4,22,5,0.0 +24771,37,26,42,0.0 +24771,36,19,37,0.0 +24771,57,19.5,49,0.0 +24771,60,34,45,0.0 +24771,52,7,11,0.0 +24771,14,23.25,24,0.0 +24771,28,45.6,50,0.0 +24771,11,21,39,0.0 +24771,26,31.23,25,0.0 +24771,63,43.9,1,0.0 +24771,49,20,36,0.0 +24771,48,12.75,2,0.0 +24771,30,25.89,38,0.0 +24771,10,31,32,0.0 +24771,39,18,31,0.0 +24771,40,18.4,45,0.0 +24771,51,53,20,0.0 +24771,8,40,17,0.0 +24771,43,46,27,0.0 +24771,47,9.5,32,0.0 +24771,2,19,14,0.0 +24771,56,38,1,0.0 +24771,32,32,14,0.0 +24771,25,14,34,0.0 +24771,21,10,43,0.0 +24771,69,36,7,0.0 +24771,58,13.25,26,0.0 +24771,12,38,9,0.0 +24771,70,15,42,0.0 +24771,35,18,14,0.0 +24771,59,55,43,0.0 +24771,1,18,50,0.0 +24771,24,4.5,40,0.0 +24771,74,10,12,0.0 +24771,61,28.5,21,0.0 +24771,16,17.45,41,0.0 +24771,73,15,42,0.0 +24771,67,14,44,0.0 +24771,13,6,3,0.0 +24771,44,19.45,20,0.0 +24771,23,9,26,0.0 +24771,17,39,44,0.0 +24771,77,13,27,0.0 +24771,19,9.2,27,0.0 +24771,9,97,34,0.0 +24771,75,7.75,6,0.0 +24771,65,21.05,49,0.0 +24772,6,25,50,0.0 +24772,5,21.35,41,0.0 +24772,27,43.9,33,0.0 +24772,74,10,13,0.0 +24772,38,263.5,48,0.0 +24772,52,7,28,0.0 +24772,2,19,10,0.0 +24772,59,55,1,0.0 +24772,14,23.25,5,0.0 +24772,48,12.75,8,0.0 +24772,33,2.5,18,0.0 +24772,9,97,31,0.0 +24772,24,4.5,3,0.0 +24772,63,43.9,36,0.0 +24773,25,14,16,0.0 +24773,41,9.65,16,0.0 +24773,26,31.23,5,0.0 +24773,35,18,46,0.0 +24773,48,12.75,11,0.0 +24773,63,43.9,35,0.0 +24773,43,46,18,0.0 +24773,20,81,26,0.0 +24773,53,32.8,41,0.0 +24773,51,53,43,0.0 +24773,22,21,30,0.0 +24773,34,14,14,0.0 +24773,38,263.5,42,0.0 +24774,30,25.89,10,0.0 +24774,18,62.5,28,0.0 +24774,51,53,17,0.0 +24774,29,123.79,46,0.0 +24774,48,12.75,29,0.0 +24774,60,34,46,0.0 +24774,4,22,45,0.0 +24774,2,19,3,0.0 +24774,54,7.45,25,0.0 +24774,49,20,10,0.0 +24774,65,21.05,27,0.0 +24774,70,15,35,0.0 +24774,47,9.5,23,0.0 +24774,62,49.3,12,0.0 +24774,16,17.45,49,0.0 +24774,44,19.45,2,0.0 +24774,38,263.5,30,0.0 +24774,43,46,39,0.0 +24774,42,14,28,0.0 +24774,76,18,30,0.0 +24774,24,4.5,25,0.0 +24774,46,12,30,0.0 +24774,37,26,7,0.0 +24774,19,9.2,42,0.0 +24774,69,36,48,0.0 +24774,5,21.35,4,0.0 +24774,9,97,15,0.0 +24774,15,15.5,21,0.0 +24774,11,21,44,0.0 +24774,36,19,33,0.0 +24774,12,38,27,0.0 +24774,63,43.9,9,0.0 +24774,39,18,21,0.0 +24774,7,30,25,0.0 +24774,72,34.8,50,0.0 +24774,50,16.25,11,0.0 +24774,23,9,45,0.0 +24774,45,9.5,37,0.0 +24774,55,24,42,0.0 +24774,27,43.9,38,0.0 +24774,67,14,23,0.0 +24774,58,13.25,50,0.0 +24774,13,6,8,0.0 +24774,57,19.5,33,0.0 +24774,41,9.65,10,0.0 +24774,73,15,3,0.0 +24774,25,14,41,0.0 +24774,31,12.5,29,0.0 +24774,34,14,20,0.0 +24774,66,17,48,0.0 +24774,22,21,46,0.0 +24774,8,40,47,0.0 +24774,35,18,36,0.0 +24774,74,10,17,0.0 +24774,75,7.75,23,0.0 +24774,64,33.25,25,0.0 +24774,14,23.25,30,0.0 +24774,28,45.6,45,0.0 +24775,56,38,46,0.0 +24775,1,18,25,0.0 +24775,36,19,14,0.0 +24775,16,17.45,32,0.0 +24775,52,7,37,0.0 +24775,59,55,34,0.0 +24775,27,43.9,39,0.0 +24775,37,26,22,0.0 +24775,54,7.45,49,0.0 +24775,53,32.8,40,0.0 +24775,45,9.5,50,0.0 +24775,21,10,1,0.0 +24775,7,30,21,0.0 +24775,55,24,31,0.0 +24775,34,14,22,0.0 +24775,61,28.5,46,0.0 +24775,28,45.6,6,0.0 +24775,46,12,17,0.0 +24775,77,13,25,0.0 +24775,14,23.25,17,0.0 +24775,68,12.5,19,0.0 +24775,19,9.2,6,0.0 +24775,25,14,22,0.0 +24775,42,14,41,0.0 +24775,76,18,23,0.0 +24775,2,19,45,0.0 +24775,63,43.9,14,0.0 +24775,40,18.4,37,0.0 +24775,67,14,7,0.0 +24775,70,15,12,0.0 +24775,65,21.05,22,0.0 +24775,66,17,9,0.0 +24775,51,53,38,0.0 +24775,24,4.5,38,0.0 +24775,48,12.75,18,0.0 +24775,17,39,22,0.0 +24775,33,2.5,13,0.0 +24775,74,10,46,0.0 +24775,12,38,20,0.0 +24775,30,25.89,47,0.0 +24775,43,46,39,0.0 +24775,44,19.45,41,0.0 +24775,49,20,32,0.0 +24775,15,15.5,5,0.0 +24775,13,6,5,0.0 +24775,47,9.5,6,0.0 +24775,23,9,10,0.0 +24775,18,62.5,30,0.0 +24775,8,40,44,0.0 +24775,31,12.5,19,0.0 +24775,9,97,32,0.0 +24775,32,32,32,0.0 +24775,50,16.25,15,0.0 +24775,72,34.8,8,0.0 +24775,29,123.79,16,0.0 +24775,39,18,44,0.0 +24775,41,9.65,43,0.0 +24775,5,21.35,29,0.0 +24775,60,34,29,0.0 +24775,3,10,20,0.0 +24775,35,18,11,0.0 +24775,62,49.3,45,0.0 +24775,58,13.25,34,0.0 +24775,75,7.75,23,0.0 +24775,73,15,28,0.0 +24775,11,21,44,0.0 +24775,10,31,36,0.0 +24775,64,33.25,44,0.0 +24775,22,21,45,0.0 +24775,69,36,13,0.0 +24775,38,263.5,1,0.0 +24775,71,21.5,33,0.0 +24775,6,25,44,0.0 +24775,26,31.23,17,0.0 +24775,4,22,1,0.0 +24775,57,19.5,16,0.0 +24776,62,49.3,21,0.0 +24776,27,43.9,9,0.0 +24776,2,19,30,0.0 +24776,58,13.25,29,0.0 +24776,22,21,41,0.0 +24776,57,19.5,11,0.0 +24776,56,38,19,0.0 +24776,20,81,13,0.0 +24776,39,18,5,0.0 +24776,64,33.25,23,0.0 +24776,49,20,31,0.0 +24776,68,12.5,1,0.0 +24776,25,14,25,0.0 +24776,30,25.89,47,0.0 +24776,18,62.5,4,0.0 +24776,17,39,7,0.0 +24776,36,19,11,0.0 +24776,11,21,13,0.0 +24776,8,40,30,0.0 +24776,54,7.45,29,0.0 +24776,13,6,28,0.0 +24776,23,9,36,0.0 +24776,38,263.5,14,0.0 +24776,34,14,17,0.0 +24776,12,38,9,0.0 +24776,44,19.45,17,0.0 +24776,52,7,1,0.0 +24776,5,21.35,39,0.0 +24776,4,22,3,0.0 +24776,60,34,13,0.0 +24776,32,32,50,0.0 +24776,63,43.9,5,0.0 +24776,71,21.5,20,0.0 +24776,69,36,38,0.0 +24776,65,21.05,10,0.0 +24776,10,31,21,0.0 +24776,48,12.75,38,0.0 +24776,19,9.2,37,0.0 +24776,28,45.6,13,0.0 +24776,6,25,24,0.0 +24776,3,10,18,0.0 +24777,16,17.45,40,0.0 +24777,12,38,5,0.0 +24777,35,18,23,0.0 +24777,69,36,39,0.0 +24777,64,33.25,36,0.0 +24777,61,28.5,27,0.0 +24777,75,7.75,22,0.0 +24777,37,26,48,0.0 +24777,19,9.2,19,0.0 +24777,13,6,47,0.0 +24777,31,12.5,12,0.0 +24777,25,14,50,0.0 +24777,15,15.5,34,0.0 +24777,7,30,18,0.0 +24777,76,18,16,0.0 +24777,60,34,9,0.0 +24777,59,55,24,0.0 +24777,18,62.5,20,0.0 +24777,36,19,26,0.0 +24777,32,32,47,0.0 +24777,5,21.35,40,0.0 +24777,38,263.5,38,0.0 +24777,23,9,19,0.0 +24777,43,46,44,0.0 +24777,10,31,36,0.0 +24777,70,15,9,0.0 +24777,11,21,27,0.0 +24777,17,39,46,0.0 +24777,41,9.65,29,0.0 +24777,9,97,33,0.0 +24777,2,19,47,0.0 +24777,20,81,12,0.0 +24777,66,17,13,0.0 +24777,24,4.5,5,0.0 +24777,58,13.25,9,0.0 +24777,39,18,34,0.0 +24777,33,2.5,4,0.0 +24777,3,10,20,0.0 +24777,48,12.75,34,0.0 +24777,29,123.79,31,0.0 +24777,34,14,33,0.0 +24777,54,7.45,22,0.0 +24777,22,21,15,0.0 +24777,67,14,9,0.0 +24777,52,7,27,0.0 +24777,50,16.25,32,0.0 +24777,49,20,24,0.0 +24777,46,12,42,0.0 +24777,4,22,25,0.0 +24777,71,21.5,38,0.0 +24777,63,43.9,27,0.0 +24777,73,15,30,0.0 +24777,40,18.4,41,0.0 +24777,26,31.23,23,0.0 +24777,21,10,31,0.0 +24777,27,43.9,32,0.0 +24777,28,45.6,14,0.0 +24777,65,21.05,48,0.0 +24777,55,24,2,0.0 +24777,47,9.5,20,0.0 +24777,1,18,27,0.0 +24777,62,49.3,33,0.0 +24777,14,23.25,2,0.0 +24777,72,34.8,23,0.0 +24777,68,12.5,21,0.0 +24777,53,32.8,42,0.0 +24777,51,53,38,0.0 +24777,44,19.45,30,0.0 +24777,45,9.5,13,0.0 +24777,6,25,6,0.0 +24777,56,38,34,0.0 +24777,74,10,28,0.0 +24777,30,25.89,46,0.0 +24777,57,19.5,25,0.0 +24777,8,40,33,0.0 +24778,24,4.5,9,0.0 +24778,21,10,1,0.0 +24778,55,24,11,0.0 +24778,16,17.45,48,0.0 +24778,37,26,31,0.0 +24778,29,123.79,10,0.0 +24778,4,22,29,0.0 +24778,34,14,20,0.0 +24778,58,13.25,33,0.0 +24778,31,12.5,28,0.0 +24778,13,6,9,0.0 +24778,17,39,13,0.0 +24778,54,7.45,16,0.0 +24778,35,18,23,0.0 +24778,44,19.45,8,0.0 +24778,38,263.5,31,0.0 +24778,59,55,1,0.0 +24778,7,30,13,0.0 +24778,61,28.5,46,0.0 +24778,74,10,37,0.0 +24778,15,15.5,36,0.0 +24778,28,45.6,7,0.0 +24778,65,21.05,43,0.0 +24778,60,34,23,0.0 +24778,70,15,22,0.0 +24778,22,21,8,0.0 +24778,20,81,27,0.0 +24779,21,10,33,0.0 +24779,33,2.5,39,0.0 +24779,76,18,6,0.0 +24779,56,38,6,0.0 +24779,1,18,34,0.0 +24779,50,16.25,43,0.0 +24779,15,15.5,13,0.0 +24779,2,19,48,0.0 +24779,45,9.5,31,0.0 +24779,41,9.65,19,0.0 +24779,35,18,39,0.0 +24779,43,46,4,0.0 +24779,62,49.3,13,0.0 +24779,4,22,20,0.0 +24779,17,39,2,0.0 +24779,54,7.45,21,0.0 +24779,30,25.89,13,0.0 +24779,44,19.45,35,0.0 +24779,57,19.5,11,0.0 +24779,53,32.8,38,0.0 +24779,9,97,12,0.0 +24779,47,9.5,11,0.0 +24779,19,9.2,1,0.0 +24779,5,21.35,30,0.0 +24779,65,21.05,46,0.0 +24779,52,7,47,0.0 +24779,58,13.25,7,0.0 +24779,49,20,44,0.0 +24779,42,14,28,0.0 +24779,55,24,8,0.0 +24779,38,263.5,50,0.0 +24779,22,21,24,0.0 +24779,39,18,40,0.0 +24779,60,34,9,0.0 +24779,8,40,44,0.0 +24779,12,38,34,0.0 +24779,6,25,21,0.0 +24779,3,10,49,0.0 +24779,37,26,50,0.0 +24779,28,45.6,43,0.0 +24779,75,7.75,22,0.0 +24779,51,53,39,0.0 +24779,11,21,50,0.0 +24779,70,15,21,0.0 +24779,26,31.23,35,0.0 +24779,24,4.5,50,0.0 +24779,46,12,33,0.0 +24779,72,34.8,27,0.0 +24779,7,30,3,0.0 +24779,13,6,4,0.0 +24779,71,21.5,21,0.0 +24779,68,12.5,13,0.0 +24779,36,19,37,0.0 +24779,73,15,10,0.0 +24780,50,16.25,2,0.0 +24780,33,2.5,10,0.0 +24780,34,14,13,0.0 +24780,4,22,44,0.0 +24780,74,10,27,0.0 +24780,2,19,27,0.0 +24780,53,32.8,7,0.0 +24780,39,18,35,0.0 +24780,56,38,19,0.0 +24780,65,21.05,2,0.0 +24780,16,17.45,2,0.0 +24780,8,40,14,0.0 +24780,64,33.25,9,0.0 +24780,46,12,32,0.0 +24780,66,17,43,0.0 +24780,23,9,22,0.0 +24780,38,263.5,36,0.0 +24780,71,21.5,35,0.0 +24780,19,9.2,41,0.0 +24780,31,12.5,49,0.0 +24780,9,97,7,0.0 +24780,25,14,38,0.0 +24780,28,45.6,33,0.0 +24780,26,31.23,21,0.0 +24780,24,4.5,37,0.0 +24780,37,26,11,0.0 +24780,20,81,3,0.0 +24780,52,7,8,0.0 +24780,12,38,40,0.0 +24780,62,49.3,48,0.0 +24780,5,21.35,50,0.0 +24780,27,43.9,34,0.0 +24780,43,46,41,0.0 +24780,44,19.45,45,0.0 +24781,56,38,10,0.0 +24781,63,43.9,41,0.0 +24781,4,22,43,0.0 +24781,41,9.65,15,0.0 +24781,25,14,1,0.0 +24781,71,21.5,13,0.0 +24781,32,32,7,0.0 +24781,2,19,39,0.0 +24781,65,21.05,14,0.0 +24781,7,30,32,0.0 +24781,46,12,15,0.0 +24781,62,49.3,36,0.0 +24781,8,40,32,0.0 +24781,30,25.89,12,0.0 +24781,29,123.79,33,0.0 +24781,61,28.5,30,0.0 +24781,48,12.75,45,0.0 +24781,68,12.5,13,0.0 +24781,16,17.45,47,0.0 +24781,59,55,42,0.0 +24781,19,9.2,49,0.0 +24781,17,39,41,0.0 +24781,18,62.5,37,0.0 +24781,70,15,22,0.0 +24781,15,15.5,11,0.0 +24781,22,21,35,0.0 +24781,14,23.25,27,0.0 +24781,60,34,17,0.0 +24781,74,10,27,0.0 +24781,3,10,23,0.0 +24781,42,14,20,0.0 +24781,1,18,47,0.0 +24781,55,24,38,0.0 +24781,69,36,28,0.0 +24781,44,19.45,14,0.0 +24781,33,2.5,21,0.0 +24782,42,14,12,0.0 +24782,47,9.5,15,0.0 +24782,54,7.45,27,0.0 +24782,23,9,4,0.0 +24782,69,36,7,0.0 +24782,41,9.65,14,0.0 +24782,39,18,35,0.0 +24782,11,21,11,0.0 +24782,21,10,4,0.0 +24782,56,38,11,0.0 +24782,71,21.5,14,0.0 +24782,43,46,3,0.0 +24782,29,123.79,9,0.0 +24782,76,18,23,0.0 +24782,7,30,6,0.0 +24782,1,18,31,0.0 +24782,72,34.8,45,0.0 +24782,65,21.05,39,0.0 +24782,55,24,42,0.0 +24782,48,12.75,48,0.0 +24782,19,9.2,14,0.0 +24782,22,21,20,0.0 +24782,74,10,3,0.0 +24782,46,12,50,0.0 +24782,2,19,16,0.0 +24782,53,32.8,12,0.0 +24782,20,81,37,0.0 +24782,32,32,1,0.0 +24782,34,14,20,0.0 +24782,28,45.6,37,0.0 +24782,24,4.5,19,0.0 +24782,15,15.5,11,0.0 +24782,58,13.25,35,0.0 +24782,38,263.5,16,0.0 +24782,44,19.45,27,0.0 +24782,37,26,7,0.0 +24782,49,20,16,0.0 +24782,4,22,17,0.0 +24782,3,10,26,0.0 +24782,59,55,4,0.0 +24782,50,16.25,45,0.0 +24782,52,7,23,0.0 +24782,8,40,50,0.0 +24782,18,62.5,20,0.0 +24782,70,15,34,0.0 +24782,40,18.4,42,0.0 +24782,26,31.23,18,0.0 +24782,27,43.9,26,0.0 +24782,36,19,14,0.0 +24783,73,15,6,0.0 +24783,10,31,22,0.0 +24783,14,23.25,22,0.0 +24783,23,9,39,0.0 +24783,62,49.3,16,0.0 +24783,2,19,25,0.0 +24783,26,31.23,43,0.0 +24783,6,25,15,0.0 +24783,74,10,44,0.0 +24783,19,9.2,14,0.0 +24783,20,81,38,0.0 +24783,72,34.8,28,0.0 +24783,27,43.9,36,0.0 +24783,22,21,45,0.0 +24783,66,17,11,0.0 +24783,71,21.5,36,0.0 +24783,77,13,31,0.0 +24783,8,40,50,0.0 +24783,65,21.05,22,0.0 +24783,12,38,13,0.0 +24783,42,14,44,0.0 +24783,18,62.5,14,0.0 +24783,5,21.35,15,0.0 +24784,41,9.65,26,0.0 +24784,30,25.89,3,0.0 +24784,5,21.35,20,0.0 +24784,22,21,24,0.0 +24784,64,33.25,10,0.0 +24784,77,13,9,0.0 +24784,13,6,7,0.0 +24784,67,14,29,0.0 +24784,60,34,44,0.0 +24784,49,20,49,0.0 +24784,61,28.5,23,0.0 +24784,63,43.9,18,0.0 +24784,23,9,19,0.0 +24784,71,21.5,38,0.0 +24784,3,10,3,0.0 +24784,37,26,10,0.0 +24784,54,7.45,32,0.0 +24784,45,9.5,11,0.0 +24784,32,32,8,0.0 +24784,56,38,43,0.0 +24784,15,15.5,42,0.0 +24784,48,12.75,9,0.0 +24784,52,7,10,0.0 +24784,75,7.75,38,0.0 +24784,43,46,13,0.0 +24784,62,49.3,42,0.0 +24784,33,2.5,42,0.0 +24784,28,45.6,3,0.0 +24784,50,16.25,8,0.0 +24784,27,43.9,23,0.0 +24784,35,18,2,0.0 +24784,14,23.25,21,0.0 +24784,7,30,16,0.0 +24784,34,14,24,0.0 +24784,65,21.05,5,0.0 +24784,42,14,40,0.0 +24784,21,10,35,0.0 +24784,19,9.2,9,0.0 +24784,24,4.5,36,0.0 +24784,40,18.4,35,0.0 +24784,46,12,44,0.0 +24784,44,19.45,28,0.0 +24784,1,18,32,0.0 +24784,26,31.23,1,0.0 +24784,9,97,38,0.0 +24784,12,38,30,0.0 +24784,53,32.8,15,0.0 +24784,70,15,37,0.0 +24784,20,81,46,0.0 +24784,51,53,8,0.0 +24784,11,21,20,0.0 +24784,31,12.5,10,0.0 +24784,66,17,16,0.0 +24784,76,18,7,0.0 +24784,68,12.5,3,0.0 +24784,29,123.79,42,0.0 +24784,55,24,35,0.0 +24784,47,9.5,3,0.0 +24784,38,263.5,13,0.0 +24784,36,19,35,0.0 +24784,74,10,34,0.0 +24784,58,13.25,14,0.0 +24784,16,17.45,25,0.0 +24784,57,19.5,20,0.0 +24784,69,36,42,0.0 +24785,77,13,9,0.0 +24785,19,9.2,23,0.0 +24785,69,36,23,0.0 +24785,17,39,6,0.0 +24785,47,9.5,5,0.0 +24785,11,21,46,0.0 +24785,49,20,25,0.0 +24785,33,2.5,1,0.0 +24785,57,19.5,39,0.0 +24785,61,28.5,10,0.0 +24785,3,10,3,0.0 +24785,23,9,10,0.0 +24785,60,34,29,0.0 +24785,46,12,11,0.0 +24785,9,97,36,0.0 +24785,2,19,12,0.0 +24785,62,49.3,32,0.0 +24785,4,22,5,0.0 +24785,66,17,1,0.0 +24785,48,12.75,32,0.0 +24785,29,123.79,22,0.0 +24785,42,14,12,0.0 +24785,73,15,48,0.0 +24785,24,4.5,32,0.0 +24785,71,21.5,50,0.0 +24785,34,14,12,0.0 +24785,14,23.25,23,0.0 +24785,27,43.9,24,0.0 +24785,30,25.89,31,0.0 +24785,58,13.25,46,0.0 +24785,6,25,4,0.0 +24785,28,45.6,17,0.0 +24785,20,81,20,0.0 +24785,35,18,35,0.0 +24785,12,38,37,0.0 +24785,13,6,10,0.0 +24785,38,263.5,1,0.0 +24785,1,18,15,0.0 +24785,16,17.45,13,0.0 +24785,75,7.75,12,0.0 +24785,5,21.35,40,0.0 +24785,22,21,6,0.0 +24785,41,9.65,21,0.0 +24785,52,7,19,0.0 +24785,21,10,3,0.0 +24785,18,62.5,12,0.0 +24785,70,15,32,0.0 +24785,63,43.9,50,0.0 +24785,76,18,33,0.0 +24785,15,15.5,1,0.0 +24785,40,18.4,1,0.0 +24785,51,53,5,0.0 +24785,8,40,42,0.0 +24785,65,21.05,33,0.0 +24785,39,18,1,0.0 +24785,55,24,32,0.0 +24785,36,19,33,0.0 +24785,72,34.8,8,0.0 +24786,58,13.25,28,0.0 +24786,45,9.5,31,0.0 +24786,34,14,2,0.0 +24786,29,123.79,3,0.0 +24786,32,32,30,0.0 +24786,62,49.3,23,0.0 +24786,30,25.89,39,0.0 +24786,75,7.75,13,0.0 +24786,33,2.5,45,0.0 +24786,47,9.5,36,0.0 +24786,22,21,43,0.0 +24786,6,25,25,0.0 +24786,36,19,29,0.0 +24786,56,38,41,0.0 +24786,52,7,28,0.0 +24786,23,9,8,0.0 +24786,2,19,49,0.0 +24786,40,18.4,10,0.0 +24786,65,21.05,49,0.0 +24786,10,31,47,0.0 +24786,50,16.25,15,0.0 +24786,74,10,22,0.0 +24786,70,15,32,0.0 +24786,53,32.8,17,0.0 +24786,12,38,49,0.0 +24787,55,24,19,0.0 +24787,51,53,20,0.0 +24787,59,55,15,0.0 +24787,74,10,26,0.0 +24787,62,49.3,22,0.0 +24787,68,12.5,3,0.0 +24787,66,17,22,0.0 +24787,49,20,35,0.0 +24787,67,14,45,0.0 +24787,56,38,29,0.0 +24787,58,13.25,36,0.0 +24787,17,39,18,0.0 +24787,77,13,24,0.0 +24787,37,26,32,0.0 +24787,63,43.9,21,0.0 +24787,40,18.4,21,0.0 +24787,32,32,41,0.0 +24787,21,10,6,0.0 +24787,6,25,4,0.0 +24787,60,34,12,0.0 +24787,20,81,36,0.0 +24787,15,15.5,10,0.0 +24787,61,28.5,4,0.0 +24787,46,12,35,0.0 +24787,2,19,46,0.0 +24787,19,9.2,4,0.0 +24787,7,30,40,0.0 +24787,42,14,48,0.0 +24787,4,22,37,0.0 +24787,70,15,16,0.0 +24787,5,21.35,4,0.0 +24787,9,97,12,0.0 +24787,69,36,5,0.0 +24787,44,19.45,43,0.0 +24787,48,12.75,31,0.0 +24787,18,62.5,45,0.0 +24787,25,14,20,0.0 +24787,35,18,25,0.0 +24788,10,31,50,0.0 +24788,60,34,9,0.0 +24788,11,21,26,0.0 +24788,52,7,49,0.0 +24788,66,17,17,0.0 +24788,22,21,50,0.0 +24788,20,81,22,0.0 +24788,6,25,14,0.0 +24788,26,31.23,23,0.0 +24788,48,12.75,16,0.0 +24788,69,36,26,0.0 +24788,16,17.45,21,0.0 +24788,40,18.4,13,0.0 +24788,8,40,25,0.0 +24788,27,43.9,35,0.0 +24788,23,9,20,0.0 +24788,29,123.79,32,0.0 +24788,36,19,21,0.0 +24788,53,32.8,22,0.0 +24788,2,19,2,0.0 +24788,71,21.5,6,0.0 +24788,39,18,33,0.0 +24788,72,34.8,33,0.0 +24788,51,53,31,0.0 +24788,33,2.5,19,0.0 +24788,64,33.25,44,0.0 +24788,38,263.5,8,0.0 +24788,28,45.6,48,0.0 +24788,7,30,34,0.0 +24788,75,7.75,45,0.0 +24788,50,16.25,38,0.0 +24788,12,38,6,0.0 +24788,31,12.5,37,0.0 +24788,46,12,20,0.0 +24788,41,9.65,34,0.0 +24788,30,25.89,47,0.0 +24788,32,32,23,0.0 +24788,67,14,14,0.0 +24788,73,15,7,0.0 +24788,45,9.5,41,0.0 +24788,74,10,26,0.0 +24788,3,10,4,0.0 +24788,24,4.5,20,0.0 +24788,42,14,43,0.0 +24788,68,12.5,5,0.0 +24788,13,6,39,0.0 +24788,4,22,33,0.0 +24788,61,28.5,36,0.0 +24788,49,20,1,0.0 +24789,31,12.5,35,0.0 +24789,59,55,14,0.0 +24789,76,18,36,0.0 +24789,26,31.23,33,0.0 +24789,1,18,10,0.0 +24789,18,62.5,2,0.0 +24789,77,13,40,0.0 +24789,49,20,36,0.0 +24789,57,19.5,45,0.0 +24789,4,22,17,0.0 +24789,2,19,30,0.0 +24789,20,81,25,0.0 +24789,38,263.5,30,0.0 +24789,55,24,6,0.0 +24790,36,19,22,0.0 +24790,56,38,30,0.0 +24790,24,4.5,35,0.0 +24790,51,53,43,0.0 +24790,50,16.25,37,0.0 +24790,13,6,24,0.0 +24790,61,28.5,12,0.0 +24790,17,39,10,0.0 +24790,28,45.6,37,0.0 +24790,60,34,50,0.0 +24790,23,9,1,0.0 +24790,31,12.5,33,0.0 +24791,49,20,12,0.0 +24791,61,28.5,33,0.0 +24791,37,26,43,0.0 +24791,53,32.8,25,0.0 +24791,21,10,26,0.0 +24791,20,81,3,0.0 +24791,8,40,11,0.0 +24791,5,21.35,11,0.0 +24791,63,43.9,34,0.0 +24791,2,19,28,0.0 +24791,64,33.25,5,0.0 +24791,44,19.45,10,0.0 +24791,43,46,43,0.0 +24791,50,16.25,1,0.0 +24791,58,13.25,8,0.0 +24791,13,6,15,0.0 +24791,73,15,43,0.0 +24791,6,25,16,0.0 +24791,47,9.5,23,0.0 +24791,23,9,44,0.0 +24791,3,10,39,0.0 +24791,67,14,32,0.0 +24791,57,19.5,4,0.0 +24791,66,17,38,0.0 +24791,24,4.5,27,0.0 +24791,26,31.23,50,0.0 +24791,28,45.6,30,0.0 +24791,12,38,26,0.0 +24791,72,34.8,23,0.0 +24791,65,21.05,25,0.0 +24791,45,9.5,30,0.0 +24791,33,2.5,44,0.0 +24791,29,123.79,30,0.0 +24791,42,14,34,0.0 +24791,68,12.5,38,0.0 +24791,71,21.5,2,0.0 +24791,7,30,43,0.0 +24791,48,12.75,6,0.0 +24791,1,18,20,0.0 +24791,32,32,42,0.0 +24791,38,263.5,16,0.0 +24791,70,15,17,0.0 +24791,40,18.4,27,0.0 +24791,75,7.75,36,0.0 +24791,36,19,25,0.0 +24791,9,97,26,0.0 +24791,46,12,24,0.0 +24791,10,31,50,0.0 +24791,22,21,46,0.0 +24791,17,39,45,0.0 +24791,62,49.3,41,0.0 +24791,16,17.45,41,0.0 +24791,69,36,43,0.0 +24791,55,24,32,0.0 +24791,11,21,35,0.0 +24791,27,43.9,11,0.0 +24791,35,18,32,0.0 +24791,4,22,10,0.0 +24792,45,9.5,24,0.0 +24792,64,33.25,45,0.0 +24792,56,38,37,0.0 +24792,62,49.3,24,0.0 +24792,48,12.75,7,0.0 +24792,34,14,22,0.0 +24792,30,25.89,18,0.0 +24792,7,30,1,0.0 +24792,1,18,22,0.0 +24792,75,7.75,2,0.0 +24792,26,31.23,9,0.0 +24792,67,14,9,0.0 +24792,54,7.45,5,0.0 +24792,49,20,46,0.0 +24792,77,13,48,0.0 +24792,69,36,33,0.0 +24792,5,21.35,1,0.0 +24792,42,14,13,0.0 +24792,6,25,43,0.0 +24792,74,10,39,0.0 +24792,41,9.65,5,0.0 +24792,4,22,11,0.0 +24792,10,31,39,0.0 +24792,57,19.5,34,0.0 +24792,19,9.2,14,0.0 +24792,28,45.6,37,0.0 +24792,16,17.45,39,0.0 +24792,31,12.5,4,0.0 +24792,27,43.9,1,0.0 +24792,43,46,28,0.0 +24792,44,19.45,18,0.0 +24792,8,40,27,0.0 +24792,50,16.25,31,0.0 +24792,36,19,17,0.0 +24792,23,9,2,0.0 +24792,39,18,45,0.0 +24792,65,21.05,7,0.0 +24792,2,19,25,0.0 +24792,70,15,48,0.0 +24792,25,14,26,0.0 +24792,68,12.5,11,0.0 +24792,55,24,36,0.0 +24793,6,25,14,0.0 +24793,8,40,45,0.0 +24793,18,62.5,23,0.0 +24793,34,14,29,0.0 +24793,11,21,23,0.0 +24793,40,18.4,5,0.0 +24793,69,36,21,0.0 +24793,19,9.2,5,0.0 +24793,68,12.5,35,0.0 +24793,23,9,40,0.0 +24793,2,19,3,0.0 +24793,75,7.75,44,0.0 +24793,12,38,33,0.0 +24793,60,34,9,0.0 +24793,27,43.9,35,0.0 +24793,28,45.6,19,0.0 +24793,15,15.5,17,0.0 +24793,33,2.5,45,0.0 +24793,54,7.45,46,0.0 +24793,61,28.5,16,0.0 +24793,64,33.25,4,0.0 +24793,25,14,18,0.0 +24793,49,20,49,0.0 +24794,39,18,9,0.0 +24794,13,6,14,0.0 +24794,62,49.3,40,0.0 +24794,61,28.5,8,0.0 +24794,49,20,4,0.0 +24794,31,12.5,43,0.0 +24794,1,18,22,0.0 +24794,53,32.8,47,0.0 +24794,43,46,24,0.0 +24794,20,81,11,0.0 +24794,55,24,35,0.0 +24794,46,12,10,0.0 +24794,48,12.75,46,0.0 +24794,8,40,20,0.0 +24795,1,18,13,0.0 +24795,37,26,24,0.0 +24795,73,15,31,0.0 +24795,45,9.5,18,0.0 +24795,52,7,18,0.0 +24795,6,25,47,0.0 +24795,49,20,7,0.0 +24795,76,18,41,0.0 +24795,17,39,17,0.0 +24795,9,97,49,0.0 +24795,42,14,36,0.0 +24795,54,7.45,37,0.0 +24795,2,19,47,0.0 +24795,24,4.5,36,0.0 +24795,74,10,2,0.0 +24795,63,43.9,3,0.0 +24795,38,263.5,22,0.0 +24795,60,34,32,0.0 +24795,33,2.5,28,0.0 +24795,75,7.75,49,0.0 +24795,22,21,4,0.0 +24795,11,21,13,0.0 +24795,59,55,48,0.0 +24795,61,28.5,30,0.0 +24795,3,10,19,0.0 +24795,31,12.5,11,0.0 +24795,65,21.05,23,0.0 +24795,29,123.79,10,0.0 +24795,57,19.5,43,0.0 +24795,34,14,1,0.0 +24795,25,14,25,0.0 +24795,12,38,44,0.0 +24795,18,62.5,12,0.0 +24795,20,81,49,0.0 +24795,66,17,22,0.0 +24795,4,22,11,0.0 +24795,16,17.45,30,0.0 +24795,62,49.3,9,0.0 +24795,55,24,10,0.0 +24795,47,9.5,18,0.0 +24795,71,21.5,31,0.0 +24795,14,23.25,47,0.0 +24795,7,30,20,0.0 +24795,23,9,38,0.0 +24795,77,13,24,0.0 +24795,13,6,20,0.0 +24795,27,43.9,12,0.0 +24795,15,15.5,33,0.0 +24795,70,15,13,0.0 +24795,56,38,28,0.0 +24795,32,32,28,0.0 +24795,35,18,21,0.0 +24795,39,18,14,0.0 +24795,28,45.6,44,0.0 +24795,69,36,16,0.0 +24795,43,46,41,0.0 +24795,10,31,27,0.0 +24795,19,9.2,6,0.0 +24795,46,12,28,0.0 +24795,53,32.8,40,0.0 +24795,68,12.5,39,0.0 +24795,48,12.75,5,0.0 +24795,5,21.35,41,0.0 +24795,51,53,41,0.0 +24796,43,46,30,0.0 +24796,71,21.5,46,0.0 +24796,18,62.5,8,0.0 +24796,33,2.5,43,0.0 +24796,68,12.5,11,0.0 +24796,69,36,10,0.0 +24796,12,38,31,0.0 +24796,57,19.5,38,0.0 +24796,3,10,38,0.0 +24796,10,31,39,0.0 +24796,44,19.45,19,0.0 +24796,16,17.45,45,0.0 +24796,49,20,50,0.0 +24796,5,21.35,12,0.0 +24796,52,7,37,0.0 +24796,55,24,5,0.0 +24796,70,15,12,0.0 +24796,22,21,4,0.0 +24796,76,18,14,0.0 +24796,74,10,37,0.0 +24796,50,16.25,14,0.0 +24796,62,49.3,25,0.0 +24796,17,39,48,0.0 +24796,1,18,14,0.0 +24796,24,4.5,10,0.0 +24796,73,15,44,0.0 +24797,43,46,30,0.0 +24797,26,31.23,40,0.0 +24797,16,17.45,4,0.0 +24797,21,10,8,0.0 +24797,9,97,30,0.0 +24797,30,25.89,19,0.0 +24797,76,18,11,0.0 +24797,19,9.2,35,0.0 +24797,75,7.75,31,0.0 +24798,66,17,36,0.0 +24798,4,22,6,0.0 +24798,55,24,41,0.0 +24798,60,34,2,0.0 +24798,49,20,11,0.0 +24798,51,53,25,0.0 +24798,73,15,12,0.0 +24798,71,21.5,9,0.0 +24798,19,9.2,13,0.0 +24799,5,21.35,1,0.0 +24799,36,19,33,0.0 +24799,66,17,39,0.0 +24799,21,10,26,0.0 +24799,45,9.5,18,0.0 +24799,49,20,6,0.0 +24799,13,6,42,0.0 +24799,52,7,37,0.0 +24799,8,40,35,0.0 +24799,34,14,11,0.0 +24799,54,7.45,26,0.0 +24799,75,7.75,47,0.0 +24799,46,12,6,0.0 +24799,48,12.75,9,0.0 +24799,16,17.45,27,0.0 +24799,28,45.6,12,0.0 +24799,61,28.5,2,0.0 +24800,74,10,25,0.0 +24800,7,30,49,0.0 +24800,23,9,45,0.0 +24800,5,21.35,36,0.0 +24800,55,24,3,0.0 +24800,51,53,33,0.0 +24800,66,17,41,0.0 +24800,3,10,29,0.0 +24800,61,28.5,32,0.0 +24800,10,31,24,0.0 +24800,35,18,38,0.0 +24800,69,36,10,0.0 +24800,43,46,21,0.0 +24800,48,12.75,29,0.0 +24800,36,19,33,0.0 +24800,16,17.45,30,0.0 +24800,31,12.5,3,0.0 +24800,59,55,24,0.0 +24800,6,25,37,0.0 +24800,46,12,48,0.0 +24800,2,19,43,0.0 +24800,60,34,34,0.0 +24800,75,7.75,22,0.0 +24800,70,15,21,0.0 +24800,1,18,43,0.0 +24800,42,14,24,0.0 +24800,4,22,50,0.0 +24800,63,43.9,5,0.0 +24800,49,20,47,0.0 +24800,17,39,26,0.0 +24800,21,10,41,0.0 +24800,71,21.5,27,0.0 +24800,12,38,23,0.0 +24800,65,21.05,4,0.0 +24800,11,21,33,0.0 +24800,22,21,5,0.0 +24800,29,123.79,16,0.0 +24800,72,34.8,1,0.0 +24800,15,15.5,6,0.0 +24800,33,2.5,22,0.0 +24800,73,15,34,0.0 +24800,38,263.5,14,0.0 +24801,65,21.05,28,0.0 +24801,13,6,35,0.0 +24801,27,43.9,30,0.0 +24801,38,263.5,20,0.0 +24801,26,31.23,4,0.0 +24801,51,53,3,0.0 +24801,67,14,34,0.0 +24801,7,30,26,0.0 +24801,31,12.5,2,0.0 +24801,75,7.75,26,0.0 +24801,29,123.79,43,0.0 +24801,47,9.5,10,0.0 +24801,15,15.5,21,0.0 +24801,34,14,22,0.0 +24801,56,38,47,0.0 +24801,60,34,7,0.0 +24801,21,10,46,0.0 +24801,69,36,42,0.0 +24801,52,7,17,0.0 +24801,77,13,32,0.0 +24801,20,81,37,0.0 +24801,41,9.65,34,0.0 +24801,54,7.45,9,0.0 +24801,58,13.25,35,0.0 +24801,19,9.2,12,0.0 +24801,64,33.25,27,0.0 +24801,76,18,25,0.0 +24801,53,32.8,29,0.0 +24801,43,46,28,0.0 +24801,61,28.5,21,0.0 +24801,44,19.45,16,0.0 +24801,1,18,44,0.0 +24801,4,22,44,0.0 +24801,12,38,42,0.0 +24801,28,45.6,42,0.0 +24801,70,15,21,0.0 +24801,50,16.25,12,0.0 +24801,32,32,32,0.0 +24801,3,10,21,0.0 +24801,36,19,23,0.0 +24801,6,25,6,0.0 +24801,2,19,49,0.0 +24801,46,12,5,0.0 +24801,17,39,43,0.0 +24801,37,26,24,0.0 +24801,55,24,39,0.0 +24801,10,31,26,0.0 +24801,62,49.3,17,0.0 +24801,16,17.45,46,0.0 +24801,35,18,35,0.0 +24801,49,20,33,0.0 +24801,5,21.35,1,0.0 +24801,71,21.5,31,0.0 +24802,18,62.5,25,0.0 +24802,59,55,2,0.0 +24802,47,9.5,36,0.0 +24802,33,2.5,34,0.0 +24802,74,10,40,0.0 +24802,4,22,45,0.0 +24802,46,12,50,0.0 +24802,11,21,28,0.0 +24802,35,18,34,0.0 +24802,40,18.4,32,0.0 +24802,5,21.35,13,0.0 +24802,3,10,36,0.0 +24802,1,18,4,0.0 +24802,58,13.25,48,0.0 +24802,52,7,5,0.0 +24802,6,25,50,0.0 +24802,44,19.45,6,0.0 +24803,34,14,43,0.0 +24803,33,2.5,43,0.0 +24803,24,4.5,41,0.0 +24803,53,32.8,20,0.0 +24803,61,28.5,1,0.0 +24803,9,97,26,0.0 +24803,22,21,11,0.0 +24803,72,34.8,43,0.0 +24804,14,23.25,18,0.0 +24804,62,49.3,35,0.0 +24804,35,18,18,0.0 +24804,56,38,40,0.0 +24804,16,17.45,37,0.0 +24804,77,13,8,0.0 +24804,61,28.5,39,0.0 +24804,26,31.23,3,0.0 +24804,44,19.45,24,0.0 +24804,10,31,33,0.0 +24804,27,43.9,19,0.0 +24804,66,17,25,0.0 +24804,50,16.25,35,0.0 +24804,37,26,24,0.0 +24804,76,18,4,0.0 +24804,69,36,42,0.0 +24804,72,34.8,40,0.0 +24804,42,14,44,0.0 +24804,64,33.25,30,0.0 +24804,3,10,25,0.0 +24804,46,12,32,0.0 +24804,70,15,3,0.0 +24804,15,15.5,15,0.0 +24804,47,9.5,34,0.0 +24804,11,21,28,0.0 +24804,58,13.25,35,0.0 +24804,54,7.45,7,0.0 +24804,32,32,30,0.0 +24804,73,15,1,0.0 +24804,51,53,44,0.0 +24804,38,263.5,7,0.0 +24804,59,55,9,0.0 +24804,5,21.35,50,0.0 +24804,8,40,13,0.0 +24804,21,10,39,0.0 +24804,19,9.2,19,0.0 +24804,31,12.5,24,0.0 +24804,41,9.65,28,0.0 +24804,1,18,13,0.0 +24804,57,19.5,18,0.0 +24804,6,25,45,0.0 +24804,68,12.5,15,0.0 +24804,71,21.5,11,0.0 +24804,18,62.5,2,0.0 +24804,25,14,39,0.0 +24804,75,7.75,10,0.0 +24804,60,34,7,0.0 +24805,62,49.3,19,0.0 +24805,2,19,25,0.0 +24805,29,123.79,38,0.0 +24805,22,21,23,0.0 +24805,55,24,2,0.0 +24805,19,9.2,42,0.0 +24805,8,40,23,0.0 +24805,45,9.5,43,0.0 +24805,63,43.9,30,0.0 +24805,60,34,32,0.0 +24805,59,55,46,0.0 +24805,28,45.6,6,0.0 +24805,46,12,44,0.0 +24805,31,12.5,7,0.0 +24805,27,43.9,30,0.0 +24805,14,23.25,17,0.0 +24805,61,28.5,2,0.0 +24805,39,18,30,0.0 +24805,25,14,38,0.0 +24805,52,7,31,0.0 +24805,9,97,11,0.0 +24805,40,18.4,15,0.0 +24805,50,16.25,38,0.0 +24805,30,25.89,42,0.0 +24805,16,17.45,12,0.0 +24805,43,46,43,0.0 +24805,70,15,20,0.0 +24805,23,9,19,0.0 +24805,12,38,25,0.0 +24805,15,15.5,9,0.0 +24805,75,7.75,37,0.0 +24805,32,32,49,0.0 +24805,44,19.45,45,0.0 +24805,72,34.8,11,0.0 +24805,5,21.35,40,0.0 +24805,17,39,32,0.0 +24806,5,21.35,36,0.0 +24806,62,49.3,2,0.0 +24806,39,18,28,0.0 +24806,65,21.05,29,0.0 +24806,73,15,29,0.0 +24806,1,18,27,0.0 +24806,57,19.5,6,0.0 +24806,66,17,25,0.0 +24806,12,38,24,0.0 +24806,27,43.9,29,0.0 +24806,7,30,14,0.0 +24806,3,10,28,0.0 +24806,50,16.25,42,0.0 +24806,64,33.25,18,0.0 +24806,17,39,42,0.0 +24806,52,7,22,0.0 +24806,6,25,9,0.0 +24806,23,9,41,0.0 +24806,13,6,1,0.0 +24806,76,18,35,0.0 +24806,25,14,29,0.0 +24806,19,9.2,43,0.0 +24806,8,40,25,0.0 +24806,44,19.45,32,0.0 +24806,46,12,6,0.0 +24806,49,20,16,0.0 +24806,18,62.5,4,0.0 +24806,43,46,33,0.0 +24806,32,32,3,0.0 +24806,14,23.25,37,0.0 +24806,60,34,5,0.0 +24806,48,12.75,29,0.0 +24806,72,34.8,30,0.0 +24806,15,15.5,17,0.0 +24806,40,18.4,28,0.0 +24806,37,26,35,0.0 +24806,68,12.5,37,0.0 +24806,31,12.5,6,0.0 +24806,2,19,27,0.0 +24806,59,55,2,0.0 +24806,69,36,47,0.0 +24806,53,32.8,21,0.0 +24806,4,22,20,0.0 +24806,77,13,46,0.0 +24806,36,19,19,0.0 +24806,54,7.45,13,0.0 +24806,11,21,34,0.0 +24806,71,21.5,33,0.0 +24806,42,14,47,0.0 +24806,67,14,1,0.0 +24806,34,14,3,0.0 +24806,24,4.5,43,0.0 +24806,21,10,23,0.0 +24806,75,7.75,38,0.0 +24806,16,17.45,1,0.0 +24806,38,263.5,44,0.0 +24806,33,2.5,44,0.0 +24806,28,45.6,31,0.0 +24806,51,53,43,0.0 +24807,3,10,2,0.0 +24807,41,9.65,15,0.0 +24807,28,45.6,34,0.0 +24807,54,7.45,9,0.0 +24807,45,9.5,49,0.0 +24807,66,17,8,0.0 +24807,74,10,9,0.0 +24807,48,12.75,20,0.0 +24807,51,53,5,0.0 +24807,4,22,5,0.0 +24807,7,30,38,0.0 +24807,30,25.89,28,0.0 +24807,37,26,32,0.0 +24807,29,123.79,35,0.0 +24807,68,12.5,41,0.0 +24807,67,14,3,0.0 +24807,39,18,24,0.0 +24807,2,19,27,0.0 +24807,8,40,31,0.0 +24807,9,97,40,0.0 +24807,15,15.5,23,0.0 +24807,65,21.05,16,0.0 +24807,49,20,20,0.0 +24807,34,14,49,0.0 +24807,43,46,15,0.0 +24807,72,34.8,39,0.0 +24807,31,12.5,37,0.0 +24807,46,12,3,0.0 +24807,73,15,47,0.0 +24807,70,15,10,0.0 +24807,22,21,31,0.0 +24807,50,16.25,35,0.0 +24807,42,14,19,0.0 +24807,69,36,1,0.0 +24807,62,49.3,33,0.0 +24807,44,19.45,6,0.0 +24807,19,9.2,16,0.0 +24807,14,23.25,18,0.0 +24807,6,25,33,0.0 +24807,5,21.35,5,0.0 +24807,57,19.5,16,0.0 +24807,76,18,33,0.0 +24807,32,32,5,0.0 +24807,40,18.4,48,0.0 +24807,38,263.5,48,0.0 +24807,12,38,7,0.0 +24807,20,81,21,0.0 +24807,13,6,32,0.0 +24807,17,39,37,0.0 +24807,52,7,33,0.0 +24807,25,14,4,0.0 +24807,63,43.9,45,0.0 +24807,59,55,24,0.0 +24807,18,62.5,27,0.0 +24807,24,4.5,48,0.0 +24807,56,38,2,0.0 +24807,61,28.5,43,0.0 +24807,47,9.5,15,0.0 +24807,26,31.23,35,0.0 +24807,11,21,26,0.0 +24807,10,31,12,0.0 +24807,58,13.25,35,0.0 +24807,75,7.75,36,0.0 +24807,71,21.5,41,0.0 +24807,33,2.5,34,0.0 +24807,23,9,28,0.0 +24807,36,19,29,0.0 +24807,55,24,20,0.0 +24807,16,17.45,3,0.0 +24807,64,33.25,27,0.0 +24807,27,43.9,3,0.0 +24807,60,34,47,0.0 +24807,1,18,23,0.0 +24807,53,32.8,17,0.0 +24807,21,10,34,0.0 +24807,35,18,4,0.0 +24808,42,14,45,0.0 +24808,47,9.5,14,0.0 +24808,9,97,26,0.0 +24808,37,26,31,0.0 +24808,62,49.3,44,0.0 +24808,60,34,42,0.0 +24808,8,40,3,0.0 +24808,36,19,32,0.0 +24808,32,32,49,0.0 +24808,15,15.5,15,0.0 +24808,14,23.25,49,0.0 +24808,10,31,46,0.0 +24808,29,123.79,38,0.0 +24808,65,21.05,44,0.0 +24808,6,25,13,0.0 +24808,4,22,17,0.0 +24808,2,19,28,0.0 +24808,69,36,18,0.0 +24808,18,62.5,38,0.0 +24808,35,18,37,0.0 +24808,48,12.75,44,0.0 +24808,61,28.5,3,0.0 +24808,38,263.5,6,0.0 +24808,49,20,17,0.0 +24808,46,12,38,0.0 +24808,22,21,35,0.0 +24808,41,9.65,9,0.0 +24808,23,9,28,0.0 +24808,44,19.45,36,0.0 +24808,59,55,45,0.0 +24808,16,17.45,44,0.0 +24808,54,7.45,1,0.0 +24808,56,38,44,0.0 +24808,13,6,43,0.0 +24808,71,21.5,2,0.0 +24808,30,25.89,1,0.0 +24808,45,9.5,9,0.0 +24808,66,17,8,0.0 +24808,27,43.9,33,0.0 +24808,3,10,19,0.0 +24808,33,2.5,17,0.0 +24808,70,15,17,0.0 +24808,53,32.8,27,0.0 +24808,67,14,36,0.0 +24808,19,9.2,27,0.0 +24809,13,6,44,0.0 +24809,58,13.25,15,0.0 +24809,20,81,13,0.0 +24809,37,26,49,0.0 +24809,24,4.5,2,0.0 +24809,77,13,26,0.0 +24809,40,18.4,19,0.0 +24809,19,9.2,4,0.0 +24809,42,14,24,0.0 +24809,17,39,50,0.0 +24809,12,38,47,0.0 +24809,22,21,29,0.0 +24809,59,55,47,0.0 +24809,25,14,42,0.0 +24809,63,43.9,8,0.0 +24809,5,21.35,36,0.0 +24809,38,263.5,36,0.0 +24809,55,24,17,0.0 +24809,67,14,1,0.0 +24809,49,20,10,0.0 +24809,35,18,34,0.0 +24809,73,15,20,0.0 +24809,27,43.9,10,0.0 +24809,33,2.5,42,0.0 +24809,51,53,44,0.0 +24809,66,17,18,0.0 +24809,36,19,41,0.0 +24809,54,7.45,22,0.0 +24809,75,7.75,18,0.0 +24809,29,123.79,48,0.0 +24809,18,62.5,41,0.0 +24809,71,21.5,25,0.0 +24809,44,19.45,18,0.0 +24809,30,25.89,47,0.0 +24809,57,19.5,15,0.0 +24809,46,12,34,0.0 +24809,16,17.45,8,0.0 +24809,64,33.25,44,0.0 +24809,69,36,1,0.0 +24809,72,34.8,33,0.0 +24809,56,38,15,0.0 +24809,34,14,41,0.0 +24809,62,49.3,13,0.0 +24809,52,7,10,0.0 +24809,68,12.5,21,0.0 +24809,60,34,2,0.0 +24809,65,21.05,27,0.0 +24809,61,28.5,49,0.0 +24809,14,23.25,48,0.0 +24809,74,10,14,0.0 +24809,2,19,8,0.0 +24809,48,12.75,17,0.0 +24809,70,15,44,0.0 +24809,11,21,40,0.0 +24809,3,10,8,0.0 +24809,41,9.65,3,0.0 +24809,28,45.6,50,0.0 +24809,45,9.5,49,0.0 +24809,7,30,24,0.0 +24809,50,16.25,20,0.0 +24809,6,25,38,0.0 +24809,39,18,40,0.0 +24809,21,10,29,0.0 +24809,31,12.5,24,0.0 +24810,54,7.45,23,0.0 +24810,22,21,9,0.0 +24810,3,10,26,0.0 +24810,10,31,43,0.0 +24810,7,30,29,0.0 +24810,30,25.89,37,0.0 +24810,21,10,16,0.0 +24810,51,53,12,0.0 +24810,61,28.5,33,0.0 +24810,40,18.4,5,0.0 +24810,72,34.8,40,0.0 +24810,57,19.5,1,0.0 +24810,58,13.25,49,0.0 +24810,53,32.8,38,0.0 +24810,9,97,47,0.0 +24810,42,14,33,0.0 +24810,67,14,34,0.0 +24810,34,14,10,0.0 +24810,63,43.9,3,0.0 +24810,70,15,44,0.0 +24810,75,7.75,46,0.0 +24810,74,10,40,0.0 +24810,17,39,45,0.0 +24810,48,12.75,29,0.0 +24810,5,21.35,8,0.0 +24810,18,62.5,45,0.0 +24810,68,12.5,36,0.0 +24810,46,12,6,0.0 +24810,43,46,5,0.0 +24810,60,34,37,0.0 +24810,41,9.65,7,0.0 +24810,35,18,28,0.0 +24810,15,15.5,22,0.0 +24810,13,6,19,0.0 +24810,8,40,10,0.0 +24810,19,9.2,2,0.0 +24810,6,25,17,0.0 +24810,69,36,20,0.0 +24810,38,263.5,19,0.0 +24810,39,18,14,0.0 +24810,12,38,48,0.0 +24810,26,31.23,31,0.0 +24810,50,16.25,25,0.0 +24810,25,14,18,0.0 +24810,37,26,33,0.0 +24810,29,123.79,24,0.0 +24810,56,38,4,0.0 +24810,64,33.25,30,0.0 +24810,27,43.9,47,0.0 +24810,2,19,18,0.0 +24810,55,24,25,0.0 +24810,36,19,50,0.0 +24810,73,15,35,0.0 +24810,65,21.05,43,0.0 +24811,47,9.5,7,0.0 +24811,76,18,26,0.0 +24811,72,34.8,28,0.0 +24811,45,9.5,12,0.0 +24811,40,18.4,30,0.0 +24811,6,25,34,0.0 +24811,27,43.9,17,0.0 +24811,71,21.5,26,0.0 +24811,2,19,42,0.0 +24811,38,263.5,48,0.0 +24811,1,18,23,0.0 +24811,9,97,32,0.0 +24811,36,19,35,0.0 +24811,49,20,12,0.0 +24811,70,15,49,0.0 +24811,74,10,41,0.0 +24811,67,14,7,0.0 +24811,33,2.5,9,0.0 +24811,32,32,11,0.0 +24811,37,26,9,0.0 +24811,42,14,33,0.0 +24811,18,62.5,8,0.0 +24811,50,16.25,12,0.0 +24811,30,25.89,26,0.0 +24811,44,19.45,44,0.0 +24811,75,7.75,3,0.0 +24811,16,17.45,30,0.0 +24811,62,49.3,3,0.0 +24811,14,23.25,26,0.0 +24811,31,12.5,7,0.0 +24811,58,13.25,13,0.0 +24811,59,55,2,0.0 +24811,23,9,37,0.0 +24811,66,17,25,0.0 +24811,7,30,32,0.0 +24811,55,24,32,0.0 +24811,69,36,32,0.0 +24811,3,10,19,0.0 +24811,39,18,15,0.0 +24811,64,33.25,49,0.0 +24811,77,13,48,0.0 +24811,29,123.79,21,0.0 +24811,15,15.5,48,0.0 +24811,5,21.35,7,0.0 +24811,68,12.5,48,0.0 +24811,54,7.45,16,0.0 +24811,61,28.5,34,0.0 +24811,24,4.5,38,0.0 +24811,63,43.9,41,0.0 +24811,13,6,1,0.0 +24811,46,12,24,0.0 +24811,4,22,39,0.0 +24811,20,81,1,0.0 +24811,19,9.2,18,0.0 +24811,48,12.75,49,0.0 +24812,63,43.9,9,0.0 +24812,18,62.5,31,0.0 +24812,1,18,47,0.0 +24812,13,6,25,0.0 +24812,17,39,23,0.0 +24812,31,12.5,46,0.0 +24812,2,19,14,0.0 +24812,74,10,6,0.0 +24812,49,20,6,0.0 +24812,69,36,17,0.0 +24812,46,12,2,0.0 +24812,32,32,8,0.0 +24812,55,24,49,0.0 +24812,61,28.5,33,0.0 +24812,75,7.75,21,0.0 +24812,70,15,23,0.0 +24812,20,81,49,0.0 +24812,15,15.5,12,0.0 +24812,21,10,42,0.0 +24812,33,2.5,30,0.0 +24812,77,13,13,0.0 +24812,28,45.6,1,0.0 +24812,48,12.75,47,0.0 +24812,35,18,46,0.0 +24812,56,38,44,0.0 +24812,5,21.35,30,0.0 +24812,62,49.3,38,0.0 +24812,51,53,7,0.0 +24812,47,9.5,41,0.0 +24812,23,9,21,0.0 +24812,41,9.65,18,0.0 +24812,9,97,49,0.0 +24812,16,17.45,1,0.0 +24812,8,40,26,0.0 +24812,68,12.5,27,0.0 +24812,44,19.45,18,0.0 +24812,37,26,16,0.0 +24812,19,9.2,48,0.0 +24812,65,21.05,13,0.0 +24812,50,16.25,34,0.0 +24812,25,14,26,0.0 +24812,4,22,46,0.0 +24812,45,9.5,22,0.0 +24812,67,14,45,0.0 +24812,14,23.25,9,0.0 +24812,3,10,20,0.0 +24812,64,33.25,50,0.0 +24812,39,18,43,0.0 +24812,52,7,46,0.0 +24812,29,123.79,4,0.0 +24812,7,30,15,0.0 +24812,22,21,39,0.0 +24812,27,43.9,50,0.0 +24812,73,15,9,0.0 +24812,58,13.25,2,0.0 +24812,71,21.5,5,0.0 +24812,54,7.45,11,0.0 +24812,57,19.5,12,0.0 +24812,30,25.89,47,0.0 +24812,53,32.8,48,0.0 +24812,43,46,34,0.0 +24812,26,31.23,5,0.0 +24812,42,14,35,0.0 +24812,60,34,6,0.0 +24812,6,25,22,0.0 +24812,11,21,22,0.0 +24812,72,34.8,30,0.0 +24813,4,22,33,0.0 +24813,77,13,13,0.0 +24813,25,14,14,0.0 +24813,55,24,8,0.0 +24813,52,7,26,0.0 +24813,64,33.25,46,0.0 +24813,27,43.9,34,0.0 +24813,56,38,15,0.0 +24813,40,18.4,8,0.0 +24813,18,62.5,5,0.0 +24813,62,49.3,48,0.0 +24813,3,10,40,0.0 +24813,8,40,8,0.0 +24813,30,25.89,11,0.0 +24813,73,15,10,0.0 +24813,70,15,40,0.0 +24813,57,19.5,30,0.0 +24813,65,21.05,48,0.0 +24813,54,7.45,42,0.0 +24813,63,43.9,7,0.0 +24813,14,23.25,18,0.0 +24813,21,10,49,0.0 +24813,20,81,24,0.0 +24813,36,19,29,0.0 +24813,46,12,21,0.0 +24813,22,21,42,0.0 +24813,61,28.5,35,0.0 +24813,53,32.8,41,0.0 +24813,34,14,15,0.0 +24813,23,9,35,0.0 +24813,72,34.8,40,0.0 +24813,19,9.2,24,0.0 +24813,45,9.5,22,0.0 +24813,39,18,36,0.0 +24813,38,263.5,25,0.0 +24813,41,9.65,21,0.0 +24813,32,32,32,0.0 +24813,10,31,40,0.0 +24813,35,18,32,0.0 +24813,37,26,27,0.0 +24813,44,19.45,22,0.0 +24813,60,34,12,0.0 +24813,69,36,19,0.0 +24813,51,53,30,0.0 +24813,31,12.5,5,0.0 +24814,32,32,12,0.0 +24814,73,15,30,0.0 +24814,37,26,27,0.0 +24814,27,43.9,16,0.0 +24814,14,23.25,25,0.0 +24814,16,17.45,18,0.0 +24814,19,9.2,20,0.0 +24814,61,28.5,32,0.0 +24814,28,45.6,10,0.0 +24814,30,25.89,49,0.0 +24814,71,21.5,1,0.0 +24814,48,12.75,2,0.0 +24814,64,33.25,26,0.0 +24814,34,14,10,0.0 +24814,66,17,23,0.0 +24814,49,20,35,0.0 +24814,3,10,35,0.0 +24814,10,31,23,0.0 +24814,68,12.5,14,0.0 +24814,47,9.5,50,0.0 +24814,55,24,44,0.0 +24814,9,97,40,0.0 +24814,15,15.5,44,0.0 +24814,2,19,8,0.0 +24814,72,34.8,11,0.0 +24814,1,18,24,0.0 +24814,13,6,37,0.0 +24814,5,21.35,19,0.0 +24814,21,10,22,0.0 +24814,17,39,47,0.0 +24814,58,13.25,13,0.0 +24814,57,19.5,9,0.0 +24814,45,9.5,34,0.0 +24814,22,21,13,0.0 +24814,38,263.5,48,0.0 +24814,60,34,44,0.0 +24814,56,38,33,0.0 +24814,65,21.05,41,0.0 +24814,4,22,12,0.0 +24815,44,19.45,42,0.0 +24815,8,40,34,0.0 +24815,23,9,20,0.0 +24815,65,21.05,12,0.0 +24815,4,22,44,0.0 +24815,50,16.25,42,0.0 +24815,77,13,10,0.0 +24815,25,14,11,0.0 +24815,15,15.5,9,0.0 +24815,61,28.5,20,0.0 +24815,24,4.5,3,0.0 +24815,18,62.5,34,0.0 +24815,58,13.25,30,0.0 +24815,20,81,50,0.0 +24815,63,43.9,25,0.0 +24815,31,12.5,38,0.0 +24815,72,34.8,45,0.0 +24815,41,9.65,10,0.0 +24815,19,9.2,12,0.0 +24815,28,45.6,46,0.0 +24815,33,2.5,49,0.0 +24815,71,21.5,35,0.0 +24815,5,21.35,7,0.0 +24815,51,53,23,0.0 +24815,26,31.23,24,0.0 +24815,13,6,36,0.0 +24815,66,17,17,0.0 +24815,59,55,8,0.0 +24815,49,20,27,0.0 +24815,9,97,30,0.0 +24815,16,17.45,14,0.0 +24815,27,43.9,1,0.0 +24815,35,18,29,0.0 +24815,68,12.5,25,0.0 +24815,17,39,28,0.0 +24815,74,10,49,0.0 +24815,37,26,43,0.0 +24815,6,25,30,0.0 +24815,22,21,41,0.0 +24815,60,34,49,0.0 +24815,21,10,12,0.0 +24815,54,7.45,35,0.0 +24815,62,49.3,2,0.0 +24815,56,38,40,0.0 +24815,30,25.89,3,0.0 +24815,70,15,7,0.0 +24815,2,19,1,0.0 +24815,52,7,21,0.0 +24815,38,263.5,28,0.0 +24815,53,32.8,30,0.0 +24815,10,31,7,0.0 +24815,3,10,26,0.0 +24815,75,7.75,4,0.0 +24815,45,9.5,26,0.0 +24815,32,32,33,0.0 +24815,14,23.25,37,0.0 +24815,43,46,27,0.0 +24815,76,18,3,0.0 +24815,57,19.5,24,0.0 +24815,39,18,45,0.0 +24815,36,19,49,0.0 +24815,34,14,30,0.0 +24816,23,9,7,0.0 +24816,1,18,26,0.0 +24816,24,4.5,42,0.0 +24816,74,10,47,0.0 +24816,16,17.45,30,0.0 +24816,64,33.25,30,0.0 +24816,18,62.5,14,0.0 +24816,3,10,7,0.0 +24816,55,24,48,0.0 +24816,49,20,2,0.0 +24816,22,21,20,0.0 +24816,71,21.5,44,0.0 +24816,36,19,15,0.0 +24816,59,55,19,0.0 +24816,58,13.25,43,0.0 +24816,35,18,44,0.0 +24816,9,97,15,0.0 +24816,29,123.79,46,0.0 +24816,40,18.4,38,0.0 +24816,7,30,17,0.0 +24816,21,10,33,0.0 +24816,41,9.65,44,0.0 +24816,72,34.8,23,0.0 +24816,45,9.5,42,0.0 +24816,70,15,35,0.0 +24816,57,19.5,40,0.0 +24817,57,19.5,2,0.0 +24817,51,53,44,0.0 +24817,31,12.5,16,0.0 +24817,12,38,16,0.0 +24817,17,39,45,0.0 +24817,67,14,39,0.0 +24817,41,9.65,50,0.0 +24817,65,21.05,47,0.0 +24817,69,36,7,0.0 +24817,52,7,40,0.0 +24817,72,34.8,4,0.0 +24817,33,2.5,11,0.0 +24817,64,33.25,16,0.0 +24817,10,31,50,0.0 +24817,15,15.5,50,0.0 +24817,56,38,13,0.0 +24817,76,18,11,0.0 +24817,20,81,50,0.0 +24817,35,18,40,0.0 +24818,76,18,18,0.0 +24818,48,12.75,7,0.0 +24818,16,17.45,2,0.0 +24818,4,22,50,0.0 +24818,19,9.2,22,0.0 +24818,30,25.89,49,0.0 +24818,62,49.3,26,0.0 +24818,57,19.5,30,0.0 +24818,35,18,7,0.0 +24818,74,10,47,0.0 +24818,32,32,27,0.0 +24818,71,21.5,16,0.0 +24818,46,12,13,0.0 +24818,17,39,17,0.0 +24818,58,13.25,2,0.0 +24818,69,36,21,0.0 +24818,50,16.25,49,0.0 +24818,68,12.5,1,0.0 +24818,28,45.6,9,0.0 +24818,37,26,37,0.0 +24818,42,14,8,0.0 +24818,66,17,47,0.0 +24818,60,34,48,0.0 +24818,6,25,38,0.0 +24818,64,33.25,32,0.0 +24818,10,31,49,0.0 +24818,67,14,8,0.0 +24818,26,31.23,10,0.0 +24818,7,30,37,0.0 +24818,22,21,50,0.0 +24818,63,43.9,20,0.0 +24818,65,21.05,50,0.0 +24818,13,6,8,0.0 +24818,36,19,4,0.0 +24818,3,10,21,0.0 +24818,72,34.8,50,0.0 +24818,38,263.5,29,0.0 +24818,25,14,33,0.0 +24818,53,32.8,30,0.0 +24818,20,81,23,0.0 +24818,23,9,9,0.0 +24818,33,2.5,40,0.0 +24818,51,53,14,0.0 +24818,40,18.4,13,0.0 +24818,21,10,10,0.0 +24818,77,13,15,0.0 +24818,52,7,1,0.0 +24818,75,7.75,41,0.0 +24818,29,123.79,9,0.0 +24818,14,23.25,29,0.0 +24818,8,40,31,0.0 +24818,44,19.45,42,0.0 +24818,31,12.5,8,0.0 +24818,73,15,17,0.0 +24818,34,14,25,0.0 +24818,47,9.5,42,0.0 +24818,5,21.35,18,0.0 +24818,27,43.9,45,0.0 +24818,61,28.5,46,0.0 +24818,11,21,39,0.0 +24818,12,38,21,0.0 +24818,70,15,36,0.0 +24818,1,18,18,0.0 +24818,18,62.5,28,0.0 +24818,9,97,6,0.0 +24818,41,9.65,30,0.0 +24818,43,46,8,0.0 +24819,39,18,25,0.0 +24819,43,46,48,0.0 +24819,26,31.23,2,0.0 +24819,61,28.5,47,0.0 +24819,48,12.75,7,0.0 +24819,34,14,22,0.0 +24819,11,21,11,0.0 +24819,45,9.5,29,0.0 +24819,54,7.45,17,0.0 +24819,2,19,33,0.0 +24819,28,45.6,46,0.0 +24819,23,9,14,0.0 +24819,13,6,3,0.0 +24819,35,18,15,0.0 +24819,72,34.8,49,0.0 +24819,20,81,15,0.0 +24819,71,21.5,7,0.0 +24819,1,18,44,0.0 +24819,21,10,20,0.0 +24820,73,15,12,0.0 +24820,64,33.25,34,0.0 +24820,55,24,31,0.0 +24820,33,2.5,23,0.0 +24820,61,28.5,43,0.0 +24820,23,9,23,0.0 +24820,10,31,4,0.0 +24820,11,21,38,0.0 +24820,25,14,34,0.0 +24820,12,38,22,0.0 +24820,47,9.5,32,0.0 +24821,29,123.79,2,0.0 +24821,47,9.5,28,0.0 +24821,19,9.2,41,0.0 +24821,46,12,1,0.0 +24821,39,18,5,0.0 +24821,21,10,18,0.0 +24821,16,17.45,33,0.0 +24821,75,7.75,23,0.0 +24821,20,81,44,0.0 +24821,77,13,7,0.0 +24821,61,28.5,4,0.0 +24821,18,62.5,3,0.0 +24821,69,36,37,0.0 +24821,6,25,8,0.0 +24821,56,38,49,0.0 +24821,53,32.8,30,0.0 +24821,23,9,17,0.0 +24821,14,23.25,43,0.0 +24821,25,14,23,0.0 +24821,52,7,14,0.0 +24821,65,21.05,22,0.0 +24821,43,46,17,0.0 +24821,72,34.8,32,0.0 +24821,73,15,33,0.0 +24821,5,21.35,24,0.0 +24821,62,49.3,37,0.0 +24821,10,31,2,0.0 +24821,66,17,8,0.0 +24821,11,21,9,0.0 +24821,8,40,31,0.0 +24821,71,21.5,29,0.0 +24821,63,43.9,45,0.0 +24821,22,21,19,0.0 +24821,12,38,21,0.0 +24821,26,31.23,5,0.0 +24821,64,33.25,25,0.0 +24821,59,55,17,0.0 +24821,57,19.5,13,0.0 +24821,2,19,37,0.0 +24821,67,14,32,0.0 +24821,1,18,4,0.0 +24821,44,19.45,6,0.0 +24821,32,32,27,0.0 +24821,33,2.5,16,0.0 +24821,74,10,17,0.0 +24821,7,30,30,0.0 +24821,31,12.5,37,0.0 +24821,45,9.5,24,0.0 +24821,13,6,26,0.0 +24822,48,12.75,49,0.0 +24822,10,31,33,0.0 +24822,64,33.25,44,0.0 +24822,34,14,23,0.0 +24823,77,13,3,0.0 +24823,9,97,42,0.0 +24823,14,23.25,30,0.0 +24823,41,9.65,33,0.0 +24823,59,55,37,0.0 +24823,45,9.5,25,0.0 +24823,49,20,22,0.0 +24823,73,15,1,0.0 +24823,29,123.79,29,0.0 +24823,52,7,16,0.0 +24823,64,33.25,4,0.0 +24823,22,21,31,0.0 +24823,70,15,47,0.0 +24823,21,10,38,0.0 +24823,51,53,22,0.0 +24823,5,21.35,47,0.0 +24823,55,24,19,0.0 +24823,31,12.5,25,0.0 +24823,18,62.5,18,0.0 +24823,35,18,36,0.0 +24823,61,28.5,15,0.0 +24823,11,21,37,0.0 +24823,2,19,21,0.0 +24823,32,32,37,0.0 +24823,1,18,39,0.0 +24823,48,12.75,22,0.0 +24823,10,31,28,0.0 +24823,47,9.5,17,0.0 +24823,75,7.75,48,0.0 +24823,58,13.25,25,0.0 +24823,72,34.8,13,0.0 +24823,6,25,23,0.0 +24823,15,15.5,41,0.0 +24823,40,18.4,13,0.0 +24823,7,30,31,0.0 +24823,28,45.6,31,0.0 +24823,46,12,2,0.0 +24823,74,10,27,0.0 +24823,30,25.89,1,0.0 +24823,4,22,21,0.0 +24823,33,2.5,9,0.0 +24823,3,10,45,0.0 +24823,13,6,16,0.0 +24823,66,17,50,0.0 +24823,54,7.45,29,0.0 +24823,12,38,48,0.0 +24823,60,34,49,0.0 +24823,69,36,2,0.0 +24823,56,38,22,0.0 +24823,37,26,33,0.0 +24823,17,39,22,0.0 +24823,36,19,38,0.0 +24823,23,9,20,0.0 +24823,76,18,7,0.0 +24823,44,19.45,45,0.0 +24823,34,14,18,0.0 +24823,26,31.23,33,0.0 +24823,39,18,46,0.0 +24823,20,81,6,0.0 +24823,65,21.05,42,0.0 +24823,63,43.9,49,0.0 +24823,50,16.25,47,0.0 +24823,8,40,46,0.0 +24823,57,19.5,18,0.0 +24824,39,18,30,0.0 +24824,13,6,23,0.0 +24824,56,38,44,0.0 +24824,69,36,49,0.0 +24824,45,9.5,31,0.0 +24824,65,21.05,19,0.0 +24824,36,19,35,0.0 +24824,70,15,49,0.0 +24824,8,40,20,0.0 +24824,25,14,45,0.0 +24824,42,14,33,0.0 +24824,66,17,36,0.0 +24824,18,62.5,49,0.0 +24824,31,12.5,15,0.0 +24824,21,10,15,0.0 +24824,47,9.5,1,0.0 +24824,27,43.9,22,0.0 +24824,77,13,10,0.0 +24824,11,21,39,0.0 +24824,22,21,36,0.0 +24824,29,123.79,1,0.0 +24824,17,39,48,0.0 +24824,72,34.8,32,0.0 +24824,34,14,21,0.0 +24824,74,10,18,0.0 +24824,19,9.2,14,0.0 +24824,46,12,18,0.0 +24824,75,7.75,22,0.0 +24824,44,19.45,19,0.0 +24824,40,18.4,45,0.0 +24824,14,23.25,50,0.0 +24824,64,33.25,27,0.0 +24824,61,28.5,35,0.0 +24824,59,55,35,0.0 +24824,43,46,13,0.0 +24824,57,19.5,36,0.0 +24824,5,21.35,18,0.0 +24824,15,15.5,40,0.0 +24824,9,97,31,0.0 +24824,2,19,2,0.0 +24824,12,38,43,0.0 +24824,4,22,21,0.0 +24824,71,21.5,5,0.0 +24824,26,31.23,30,0.0 +24824,62,49.3,9,0.0 +24824,54,7.45,10,0.0 +24824,67,14,2,0.0 +24824,30,25.89,11,0.0 +24824,20,81,50,0.0 +24824,55,24,46,0.0 +24824,38,263.5,11,0.0 +24825,37,26,31,0.0 +24825,8,40,5,0.0 +24825,44,19.45,15,0.0 +24825,28,45.6,50,0.0 +24825,71,21.5,29,0.0 +24825,45,9.5,12,0.0 +24825,21,10,39,0.0 +24825,56,38,29,0.0 +24825,66,17,37,0.0 +24825,60,34,22,0.0 +24825,65,21.05,17,0.0 +24825,33,2.5,37,0.0 +24825,53,32.8,13,0.0 +24825,35,18,26,0.0 +24825,57,19.5,50,0.0 +24825,16,17.45,39,0.0 +24825,7,30,47,0.0 +24825,64,33.25,16,0.0 +24825,72,34.8,8,0.0 +24825,3,10,45,0.0 +24825,74,10,15,0.0 +24825,59,55,1,0.0 +24825,27,43.9,7,0.0 +24825,4,22,23,0.0 +24825,76,18,5,0.0 +24825,13,6,42,0.0 +24825,19,9.2,33,0.0 +24826,64,33.25,29,0.0 +24826,46,12,26,0.0 +24826,16,17.45,31,0.0 +24826,42,14,36,0.0 +24826,2,19,6,0.0 +24826,52,7,30,0.0 +24826,29,123.79,26,0.0 +24826,66,17,37,0.0 +24826,63,43.9,14,0.0 +24826,25,14,1,0.0 +24826,5,21.35,24,0.0 +24826,53,32.8,46,0.0 +24826,47,9.5,8,0.0 +24826,35,18,5,0.0 +24826,40,18.4,43,0.0 +24826,26,31.23,10,0.0 +24826,22,21,22,0.0 +24826,67,14,18,0.0 +24826,27,43.9,19,0.0 +24826,45,9.5,2,0.0 +24826,38,263.5,42,0.0 +24826,31,12.5,22,0.0 +24826,11,21,33,0.0 +24826,70,15,38,0.0 +24826,72,34.8,20,0.0 +24826,21,10,49,0.0 +24826,51,53,48,0.0 +24826,17,39,4,0.0 +24826,33,2.5,32,0.0 +24826,34,14,29,0.0 +24826,3,10,32,0.0 +24827,43,46,18,0.0 +24827,67,14,17,0.0 +24827,45,9.5,42,0.0 +24827,30,25.89,26,0.0 +24827,49,20,24,0.0 +24827,17,39,42,0.0 +24827,51,53,9,0.0 +24827,77,13,16,0.0 +24827,29,123.79,35,0.0 +24827,40,18.4,44,0.0 +24827,63,43.9,38,0.0 +24827,48,12.75,14,0.0 +24827,37,26,41,0.0 +24827,76,18,23,0.0 +24828,50,16.25,43,0.0 +24828,71,21.5,41,0.0 +24828,14,23.25,45,0.0 +24828,60,34,32,0.0 +24828,68,12.5,18,0.0 +24828,49,20,4,0.0 +24828,16,17.45,34,0.0 +24828,62,49.3,14,0.0 +24828,65,21.05,47,0.0 +24828,57,19.5,17,0.0 +24828,36,19,23,0.0 +24828,74,10,39,0.0 +24828,12,38,7,0.0 +24828,70,15,33,0.0 +24828,3,10,6,0.0 +24828,5,21.35,21,0.0 +24828,38,263.5,5,0.0 +24828,19,9.2,25,0.0 +24828,41,9.65,35,0.0 +24828,2,19,32,0.0 +24828,29,123.79,34,0.0 +24828,45,9.5,32,0.0 +24828,43,46,45,0.0 +24828,26,31.23,28,0.0 +24828,35,18,17,0.0 +24828,44,19.45,17,0.0 +24828,48,12.75,48,0.0 +24828,25,14,44,0.0 +24828,63,43.9,27,0.0 +24828,76,18,24,0.0 +24828,42,14,2,0.0 +24828,77,13,40,0.0 +24829,39,18,41,0.0 +24829,49,20,26,0.0 +24829,71,21.5,30,0.0 +24829,11,21,11,0.0 +24829,41,9.65,36,0.0 +24829,69,36,33,0.0 +24829,28,45.6,3,0.0 +24829,30,25.89,29,0.0 +24829,25,14,33,0.0 +24829,47,9.5,32,0.0 +24829,37,26,38,0.0 +24829,44,19.45,24,0.0 +24829,61,28.5,13,0.0 +24829,43,46,7,0.0 +24829,15,15.5,17,0.0 +24829,73,15,14,0.0 +24829,74,10,44,0.0 +24829,4,22,19,0.0 +24829,40,18.4,40,0.0 +24829,6,25,11,0.0 +24829,8,40,7,0.0 +24829,20,81,3,0.0 +24829,55,24,20,0.0 +24829,58,13.25,10,0.0 +24829,50,16.25,43,0.0 +24829,60,34,21,0.0 +24829,68,12.5,29,0.0 +24829,53,32.8,33,0.0 +24829,5,21.35,42,0.0 +24829,9,97,32,0.0 +24829,19,9.2,12,0.0 +24829,65,21.05,3,0.0 +24829,63,43.9,37,0.0 +24829,12,38,36,0.0 +24829,66,17,18,0.0 +24829,14,23.25,16,0.0 +24829,70,15,49,0.0 +24829,26,31.23,5,0.0 +24829,33,2.5,42,0.0 +24829,27,43.9,49,0.0 +24829,67,14,35,0.0 +24829,17,39,32,0.0 +24829,54,7.45,33,0.0 +24829,56,38,14,0.0 +24829,51,53,37,0.0 +24829,45,9.5,34,0.0 +24829,35,18,6,0.0 +24829,77,13,34,0.0 +24829,59,55,5,0.0 +24829,29,123.79,45,0.0 +24829,52,7,49,0.0 +24829,21,10,6,0.0 +24829,76,18,19,0.0 +24829,1,18,48,0.0 +24829,72,34.8,4,0.0 +24829,48,12.75,37,0.0 +24829,75,7.75,34,0.0 +24829,62,49.3,50,0.0 +24829,2,19,28,0.0 +24829,57,19.5,36,0.0 +24829,3,10,17,0.0 +24830,12,38,8,0.0 +24830,68,12.5,33,0.0 +24830,10,31,28,0.0 +24830,19,9.2,7,0.0 +24830,49,20,43,0.0 +24830,1,18,30,0.0 +24830,29,123.79,41,0.0 +24830,56,38,50,0.0 +24830,17,39,34,0.0 +24830,55,24,23,0.0 +24830,13,6,8,0.0 +24830,53,32.8,2,0.0 +24830,39,18,38,0.0 +24830,46,12,28,0.0 +24830,15,15.5,32,0.0 +24830,26,31.23,39,0.0 +24830,25,14,50,0.0 +24830,65,21.05,27,0.0 +24830,58,13.25,16,0.0 +24830,59,55,19,0.0 +24830,36,19,18,0.0 +24830,45,9.5,3,0.0 +24830,5,21.35,21,0.0 +24830,8,40,3,0.0 +24830,63,43.9,23,0.0 +24830,2,19,39,0.0 +24830,31,12.5,23,0.0 +24830,61,28.5,32,0.0 +24830,57,19.5,35,0.0 +24830,69,36,7,0.0 +24830,37,26,36,0.0 +24830,9,97,5,0.0 +24830,6,25,33,0.0 +24830,33,2.5,35,0.0 +24830,23,9,3,0.0 +24830,72,34.8,43,0.0 +24830,71,21.5,11,0.0 +24830,22,21,49,0.0 +24830,42,14,48,0.0 +24830,70,15,8,0.0 +24830,21,10,15,0.0 +24830,20,81,19,0.0 +24830,54,7.45,44,0.0 +24830,38,263.5,44,0.0 +24830,51,53,15,0.0 +24830,43,46,36,0.0 +24830,4,22,38,0.0 +24830,77,13,40,0.0 +24830,67,14,9,0.0 +24830,76,18,43,0.0 +24830,11,21,6,0.0 +24830,60,34,26,0.0 +24830,64,33.25,17,0.0 +24830,35,18,14,0.0 +24830,66,17,41,0.0 +24830,50,16.25,50,0.0 +24831,73,15,43,0.0 +24831,63,43.9,48,0.0 +24831,51,53,47,0.0 +24831,20,81,2,0.0 +24831,32,32,21,0.0 +24831,61,28.5,30,0.0 +24831,23,9,34,0.0 +24831,15,15.5,24,0.0 +24831,46,12,21,0.0 +24831,55,24,21,0.0 +24831,8,40,46,0.0 +24832,4,22,22,0.0 +24832,12,38,47,0.0 +24832,56,38,19,0.0 +24832,47,9.5,23,0.0 +24832,34,14,31,0.0 +24832,20,81,10,0.0 +24832,53,32.8,39,0.0 +24832,69,36,30,0.0 +24832,38,263.5,10,0.0 +24832,14,23.25,31,0.0 +24832,55,24,42,0.0 +24832,43,46,30,0.0 +24832,22,21,2,0.0 +24832,13,6,43,0.0 +24832,60,34,6,0.0 +24832,31,12.5,27,0.0 +24832,73,15,42,0.0 +24832,61,28.5,3,0.0 +24832,46,12,32,0.0 +24832,59,55,11,0.0 +24832,70,15,17,0.0 +24832,50,16.25,18,0.0 +24832,42,14,36,0.0 +24832,32,32,21,0.0 +24832,40,18.4,8,0.0 +24832,41,9.65,10,0.0 +24832,33,2.5,29,0.0 +24832,58,13.25,46,0.0 +24833,25,14,21,0.0 +24833,40,18.4,6,0.0 +24833,23,9,10,0.0 +24833,28,45.6,21,0.0 +24833,39,18,21,0.0 +24833,11,21,49,0.0 +24833,31,12.5,2,0.0 +24833,57,19.5,40,0.0 +24833,69,36,8,0.0 +24833,9,97,31,0.0 +24833,49,20,15,0.0 +24833,70,15,43,0.0 +24833,67,14,33,0.0 +24833,44,19.45,6,0.0 +24833,43,46,33,0.0 +24833,38,263.5,43,0.0 +24833,24,4.5,18,0.0 +24833,20,81,39,0.0 +24833,27,43.9,46,0.0 +24833,46,12,21,0.0 +24833,62,49.3,44,0.0 +24833,6,25,11,0.0 +24833,19,9.2,7,0.0 +24833,64,33.25,12,0.0 +24833,66,17,29,0.0 +24833,2,19,16,0.0 +24833,8,40,14,0.0 +24833,10,31,27,0.0 +24833,12,38,29,0.0 +24833,14,23.25,29,0.0 +24833,75,7.75,23,0.0 +24833,52,7,18,0.0 +24833,37,26,46,0.0 +24833,16,17.45,28,0.0 +24833,55,24,15,0.0 +24833,48,12.75,23,0.0 +24833,4,22,4,0.0 +24833,42,14,47,0.0 +24833,60,34,8,0.0 +24833,33,2.5,15,0.0 +24833,17,39,40,0.0 +24833,47,9.5,9,0.0 +24833,34,14,10,0.0 +24833,41,9.65,42,0.0 +24833,5,21.35,40,0.0 +24833,56,38,26,0.0 +24833,13,6,6,0.0 +24833,74,10,33,0.0 +24834,60,34,6,0.0 +24834,50,16.25,8,0.0 +24835,37,26,26,0.0 +24835,76,18,38,0.0 +24835,16,17.45,9,0.0 +24835,1,18,18,0.0 +24835,28,45.6,18,0.0 +24835,12,38,6,0.0 +24835,20,81,37,0.0 +24835,18,62.5,11,0.0 +24835,14,23.25,46,0.0 +24835,38,263.5,46,0.0 +24835,25,14,48,0.0 +24835,40,18.4,32,0.0 +24835,57,19.5,17,0.0 +24835,43,46,45,0.0 +24835,22,21,5,0.0 +24835,5,21.35,36,0.0 +24835,66,17,50,0.0 +24835,50,16.25,34,0.0 +24835,45,9.5,49,0.0 +24835,70,15,21,0.0 +24835,27,43.9,34,0.0 +24835,54,7.45,32,0.0 +24835,32,32,49,0.0 +24835,39,18,32,0.0 +24835,71,21.5,30,0.0 +24835,19,9.2,46,0.0 +24835,63,43.9,45,0.0 +24835,34,14,19,0.0 +24835,33,2.5,33,0.0 +24835,17,39,23,0.0 +24835,46,12,6,0.0 +24835,53,32.8,18,0.0 +24835,60,34,45,0.0 +24835,44,19.45,41,0.0 +24835,62,49.3,2,0.0 +24835,23,9,26,0.0 +24835,51,53,18,0.0 +24835,4,22,12,0.0 +24835,2,19,1,0.0 +24835,61,28.5,40,0.0 +24835,21,10,23,0.0 +24835,72,34.8,3,0.0 +24835,48,12.75,21,0.0 +24835,65,21.05,46,0.0 +24835,15,15.5,23,0.0 +24835,13,6,29,0.0 +24835,24,4.5,6,0.0 +24836,8,40,27,0.0 +24836,70,15,17,0.0 +24836,9,97,9,0.0 +24836,65,21.05,19,0.0 +24836,51,53,44,0.0 +24836,44,19.45,27,0.0 +24836,27,43.9,1,0.0 +24836,32,32,50,0.0 +24836,52,7,10,0.0 +24836,21,10,3,0.0 +24836,42,14,37,0.0 +24836,26,31.23,9,0.0 +24836,58,13.25,13,0.0 +24836,23,9,13,0.0 +24836,45,9.5,43,0.0 +24836,29,123.79,31,0.0 +24836,69,36,33,0.0 +24836,59,55,13,0.0 +24836,15,15.5,26,0.0 +24836,17,39,18,0.0 +24836,67,14,21,0.0 +24836,36,19,28,0.0 +24836,34,14,45,0.0 +24836,50,16.25,11,0.0 +24836,4,22,19,0.0 +24836,73,15,7,0.0 +24836,6,25,50,0.0 +24836,66,17,12,0.0 +24836,55,24,41,0.0 +24836,72,34.8,42,0.0 +24836,13,6,19,0.0 +24836,7,30,17,0.0 +24836,31,12.5,24,0.0 +24836,35,18,15,0.0 +24836,28,45.6,46,0.0 +24836,39,18,44,0.0 +24836,38,263.5,8,0.0 +24836,18,62.5,11,0.0 +24836,49,20,19,0.0 +24836,3,10,46,0.0 +24836,37,26,37,0.0 +24836,10,31,38,0.0 +24836,41,9.65,16,0.0 +24836,54,7.45,2,0.0 +24836,11,21,6,0.0 +24836,33,2.5,21,0.0 +24836,1,18,18,0.0 +24836,2,19,45,0.0 +24836,62,49.3,27,0.0 +24836,60,34,33,0.0 +24836,56,38,6,0.0 +24836,46,12,46,0.0 +24836,14,23.25,4,0.0 +24836,64,33.25,14,0.0 +24836,53,32.8,17,0.0 +24836,12,38,5,0.0 +24836,5,21.35,5,0.0 +24836,57,19.5,6,0.0 +24836,61,28.5,3,0.0 +24836,16,17.45,24,0.0 +24836,22,21,7,0.0 +24836,75,7.75,36,0.0 +24836,48,12.75,10,0.0 +24836,47,9.5,16,0.0 +24836,68,12.5,24,0.0 +24836,30,25.89,19,0.0 +24836,63,43.9,30,0.0 +24836,74,10,23,0.0 +24836,40,18.4,23,0.0 +24836,25,14,9,0.0 +24836,71,21.5,47,0.0 +24836,43,46,40,0.0 +24837,47,9.5,22,0.0 +24837,55,24,49,0.0 +24837,26,31.23,16,0.0 +24837,28,45.6,36,0.0 +24837,59,55,23,0.0 +24837,40,18.4,24,0.0 +24837,24,4.5,27,0.0 +24837,61,28.5,40,0.0 +24837,76,18,1,0.0 +24837,1,18,26,0.0 +24837,53,32.8,16,0.0 +24837,38,263.5,23,0.0 +24837,48,12.75,36,0.0 +24837,75,7.75,32,0.0 +24837,6,25,9,0.0 +24837,51,53,9,0.0 +24837,25,14,46,0.0 +24837,13,6,36,0.0 +24837,22,21,30,0.0 +24837,7,30,25,0.0 +24837,29,123.79,28,0.0 +24837,9,97,38,0.0 +24837,20,81,40,0.0 +24837,63,43.9,41,0.0 +24837,50,16.25,24,0.0 +24837,37,26,10,0.0 +24837,2,19,19,0.0 +24837,5,21.35,28,0.0 +24837,65,21.05,27,0.0 +24837,23,9,33,0.0 +24837,56,38,31,0.0 +24837,27,43.9,42,0.0 +24837,18,62.5,33,0.0 +24837,35,18,9,0.0 +24837,69,36,13,0.0 +24837,71,21.5,35,0.0 +24837,30,25.89,18,0.0 +24837,8,40,24,0.0 +24837,42,14,26,0.0 +24837,77,13,44,0.0 +24837,43,46,9,0.0 +24837,17,39,40,0.0 +24837,66,17,37,0.0 +24837,58,13.25,2,0.0 +24837,68,12.5,28,0.0 +24837,4,22,3,0.0 +24837,49,20,12,0.0 +24837,62,49.3,2,0.0 +24837,57,19.5,2,0.0 +24837,52,7,26,0.0 +24837,60,34,16,0.0 +24837,41,9.65,21,0.0 +24837,21,10,9,0.0 +24837,73,15,42,0.0 +24837,11,21,35,0.0 +24837,45,9.5,34,0.0 +24837,14,23.25,8,0.0 +24837,67,14,48,0.0 +24837,15,15.5,29,0.0 +24837,34,14,24,0.0 +24837,10,31,23,0.0 +24837,39,18,22,0.0 +24837,36,19,11,0.0 +24837,64,33.25,30,0.0 +24837,16,17.45,2,0.0 +24837,72,34.8,49,0.0 +24838,74,10,35,0.0 +24838,63,43.9,45,0.0 +24838,47,9.5,45,0.0 +24838,71,21.5,9,0.0 +24838,65,21.05,22,0.0 +24838,6,25,40,0.0 +24838,45,9.5,21,0.0 +24838,62,49.3,4,0.0 +24838,44,19.45,28,0.0 +24838,21,10,9,0.0 +24838,42,14,46,0.0 +24838,56,38,5,0.0 +24838,15,15.5,27,0.0 +24838,68,12.5,1,0.0 +24838,49,20,10,0.0 +24838,57,19.5,47,0.0 +24838,16,17.45,27,0.0 +24838,26,31.23,23,0.0 +24838,13,6,41,0.0 +24838,34,14,42,0.0 +24838,69,36,44,0.0 +24838,4,22,16,0.0 +24838,60,34,9,0.0 +24838,77,13,26,0.0 +24838,52,7,21,0.0 +24838,61,28.5,33,0.0 +24838,41,9.65,27,0.0 +24838,37,26,16,0.0 +24838,25,14,32,0.0 +24838,58,13.25,47,0.0 +24838,38,263.5,46,0.0 +24838,2,19,19,0.0 +24838,32,32,48,0.0 +24838,23,9,18,0.0 +24838,11,21,17,0.0 +24838,19,9.2,13,0.0 +24839,24,4.5,40,0.0 +24839,69,36,18,0.0 +24839,27,43.9,49,0.0 +24839,75,7.75,39,0.0 +24839,14,23.25,3,0.0 +24839,7,30,14,0.0 +24839,25,14,30,0.0 +24839,11,21,21,0.0 +24839,65,21.05,28,0.0 +24839,22,21,2,0.0 +24839,71,21.5,44,0.0 +24839,59,55,25,0.0 +24839,60,34,3,0.0 +24839,8,40,22,0.0 +24839,66,17,34,0.0 +24839,61,28.5,16,0.0 +24839,36,19,45,0.0 +24839,1,18,24,0.0 +24839,12,38,26,0.0 +24839,3,10,27,0.0 +24839,23,9,47,0.0 +24839,77,13,44,0.0 +24839,16,17.45,46,0.0 +24839,48,12.75,48,0.0 +24839,68,12.5,22,0.0 +24839,52,7,7,0.0 +24839,9,97,3,0.0 +24839,74,10,38,0.0 +24839,73,15,20,0.0 +24839,18,62.5,45,0.0 +24839,67,14,39,0.0 +24839,57,19.5,10,0.0 +24839,5,21.35,27,0.0 +24839,72,34.8,32,0.0 +24839,37,26,22,0.0 +24839,26,31.23,20,0.0 +24839,42,14,21,0.0 +24839,4,22,43,0.0 +24839,35,18,28,0.0 +24839,40,18.4,12,0.0 +24839,62,49.3,44,0.0 +24839,33,2.5,3,0.0 +24839,64,33.25,30,0.0 +24839,28,45.6,40,0.0 +24839,53,32.8,6,0.0 +24840,40,18.4,24,0.0 +24840,41,9.65,26,0.0 +24840,65,21.05,25,0.0 +24840,57,19.5,37,0.0 +24840,17,39,24,0.0 +24840,28,45.6,46,0.0 +24840,72,34.8,19,0.0 +24840,55,24,4,0.0 +24840,62,49.3,38,0.0 +24840,50,16.25,47,0.0 +24840,61,28.5,30,0.0 +24840,67,14,19,0.0 +24840,35,18,10,0.0 +24840,64,33.25,21,0.0 +24840,56,38,38,0.0 +24840,42,14,14,0.0 +24840,70,15,1,0.0 +24840,36,19,11,0.0 +24840,71,21.5,47,0.0 +24840,63,43.9,44,0.0 +24840,24,4.5,31,0.0 +24840,15,15.5,24,0.0 +24840,77,13,46,0.0 +24840,23,9,41,0.0 +24840,66,17,47,0.0 +24840,76,18,33,0.0 +24840,38,263.5,43,0.0 +24840,68,12.5,16,0.0 +24840,1,18,46,0.0 +24840,21,10,13,0.0 +24840,8,40,29,0.0 +24840,27,43.9,5,0.0 +24840,74,10,8,0.0 +24840,25,14,7,0.0 +24840,4,22,50,0.0 +24840,10,31,41,0.0 +24840,45,9.5,20,0.0 +24840,31,12.5,44,0.0 +24840,43,46,6,0.0 +24840,22,21,36,0.0 +24840,34,14,43,0.0 +24840,44,19.45,36,0.0 +24840,48,12.75,30,0.0 +24840,49,20,3,0.0 +24840,6,25,7,0.0 +24840,32,32,25,0.0 +24840,59,55,47,0.0 +24840,5,21.35,1,0.0 +24840,9,97,41,0.0 +24840,75,7.75,5,0.0 +24840,69,36,6,0.0 +24840,13,6,10,0.0 +24841,56,38,14,0.0 +24841,70,15,4,0.0 +24841,9,97,44,0.0 +24841,35,18,35,0.0 +24841,27,43.9,39,0.0 +24841,25,14,8,0.0 +24841,31,12.5,44,0.0 +24841,66,17,45,0.0 +24841,68,12.5,24,0.0 +24841,32,32,15,0.0 +24841,51,53,24,0.0 +24841,61,28.5,44,0.0 +24841,54,7.45,16,0.0 +24841,41,9.65,16,0.0 +24841,59,55,40,0.0 +24841,12,38,32,0.0 +24841,46,12,41,0.0 +24841,62,49.3,23,0.0 +24841,75,7.75,24,0.0 +24841,23,9,50,0.0 +24841,42,14,37,0.0 +24841,52,7,15,0.0 +24841,71,21.5,30,0.0 +24841,11,21,22,0.0 +24841,69,36,12,0.0 +24841,7,30,17,0.0 +24841,3,10,33,0.0 +24841,18,62.5,13,0.0 +24841,33,2.5,35,0.0 +24841,72,34.8,5,0.0 +24841,19,9.2,40,0.0 +24841,10,31,9,0.0 +24841,77,13,10,0.0 +24842,47,9.5,7,0.0 +24842,41,9.65,39,0.0 +24842,32,32,23,0.0 +24842,13,6,37,0.0 +24842,19,9.2,45,0.0 +24842,65,21.05,24,0.0 +24842,39,18,3,0.0 +24842,22,21,8,0.0 +24842,75,7.75,15,0.0 +24842,70,15,5,0.0 +24842,33,2.5,25,0.0 +24842,73,15,7,0.0 +24842,2,19,23,0.0 +24842,74,10,17,0.0 +24842,69,36,31,0.0 +24842,38,263.5,25,0.0 +24842,50,16.25,47,0.0 +24842,4,22,14,0.0 +24842,49,20,18,0.0 +24842,44,19.45,47,0.0 +24842,52,7,35,0.0 +24842,60,34,2,0.0 +24842,11,21,20,0.0 +24842,64,33.25,13,0.0 +24842,55,24,20,0.0 +24842,57,19.5,6,0.0 +24842,56,38,35,0.0 +24842,1,18,28,0.0 +24842,30,25.89,33,0.0 +24842,54,7.45,19,0.0 +24842,31,12.5,49,0.0 +24843,28,45.6,18,0.0 +24843,50,16.25,37,0.0 +24843,8,40,7,0.0 +24843,11,21,25,0.0 +24843,66,17,46,0.0 +24843,20,81,16,0.0 +24843,76,18,43,0.0 +24843,6,25,36,0.0 +24844,6,25,4,0.0 +24844,15,15.5,48,0.0 +24844,59,55,33,0.0 +24844,3,10,11,0.0 +24844,57,19.5,49,0.0 +24844,60,34,38,0.0 +24844,41,9.65,40,0.0 +24844,37,26,44,0.0 +24844,35,18,12,0.0 +24844,28,45.6,15,0.0 +24844,21,10,19,0.0 +24844,12,38,7,0.0 +24844,45,9.5,46,0.0 +24845,46,12,37,0.0 +24845,4,22,26,0.0 +24845,14,23.25,7,0.0 +24845,35,18,50,0.0 +24845,30,25.89,24,0.0 +24846,21,10,32,0.0 +24846,28,45.6,46,0.0 +24846,35,18,12,0.0 +24846,20,81,27,0.0 +24846,23,9,33,0.0 +24846,36,19,17,0.0 +24846,16,17.45,12,0.0 +24846,18,62.5,38,0.0 +24846,7,30,48,0.0 +24846,27,43.9,28,0.0 +24846,17,39,21,0.0 +24846,25,14,10,0.0 +24846,5,21.35,25,0.0 +24846,60,34,5,0.0 +24846,66,17,43,0.0 +24846,56,38,36,0.0 +24846,49,20,5,0.0 +24846,44,19.45,23,0.0 +24846,26,31.23,31,0.0 +24846,31,12.5,19,0.0 +24846,1,18,41,0.0 +24846,3,10,47,0.0 +24846,52,7,14,0.0 +24846,68,12.5,26,0.0 +24846,13,6,3,0.0 +24846,57,19.5,45,0.0 +24846,73,15,39,0.0 +24846,65,21.05,41,0.0 +24846,12,38,38,0.0 +24846,37,26,32,0.0 +24846,47,9.5,39,0.0 +24846,74,10,13,0.0 +24846,2,19,27,0.0 +24846,69,36,27,0.0 +24846,34,14,39,0.0 +24846,10,31,9,0.0 +24846,46,12,41,0.0 +24846,6,25,1,0.0 +24846,71,21.5,38,0.0 +24846,59,55,11,0.0 +24846,72,34.8,34,0.0 +24846,75,7.75,24,0.0 +24846,40,18.4,43,0.0 +24846,50,16.25,6,0.0 +24846,22,21,4,0.0 +24846,70,15,35,0.0 +24846,67,14,5,0.0 +24846,8,40,47,0.0 +24846,48,12.75,5,0.0 +24846,11,21,34,0.0 +24846,24,4.5,39,0.0 +24846,19,9.2,5,0.0 +24846,53,32.8,1,0.0 +24846,42,14,48,0.0 +24846,9,97,36,0.0 +24846,43,46,1,0.0 +24846,15,15.5,21,0.0 +24846,39,18,33,0.0 +24847,34,14,7,0.0 +24847,39,18,1,0.0 +24847,27,43.9,3,0.0 +24847,9,97,17,0.0 +24847,11,21,39,0.0 +24847,53,32.8,27,0.0 +24847,66,17,12,0.0 +24847,68,12.5,1,0.0 +24847,73,15,36,0.0 +24847,77,13,23,0.0 +24847,52,7,29,0.0 +24847,29,123.79,12,0.0 +24847,58,13.25,48,0.0 +24847,57,19.5,22,0.0 +24847,26,31.23,7,0.0 +24847,55,24,7,0.0 +24848,51,53,4,0.0 +24848,63,43.9,28,0.0 +24848,48,12.75,22,0.0 +24848,66,17,29,0.0 +24848,20,81,18,0.0 +24848,2,19,25,0.0 +24848,42,14,10,0.0 +24848,33,2.5,4,0.0 +24848,67,14,14,0.0 +24848,62,49.3,27,0.0 +24848,45,9.5,37,0.0 +24848,1,18,50,0.0 +24848,10,31,31,0.0 +24848,71,21.5,19,0.0 +24848,36,19,13,0.0 +24848,14,23.25,43,0.0 +24848,54,7.45,26,0.0 +24848,57,19.5,50,0.0 +24848,13,6,29,0.0 +24848,7,30,33,0.0 +24848,56,38,50,0.0 +24848,22,21,24,0.0 +24848,59,55,35,0.0 +24848,35,18,14,0.0 +24848,74,10,7,0.0 +24848,38,263.5,5,0.0 +24848,46,12,50,0.0 +24848,17,39,20,0.0 +24848,12,38,36,0.0 +24848,32,32,42,0.0 +24848,77,13,41,0.0 +24848,53,32.8,11,0.0 +24848,4,22,2,0.0 +24848,34,14,23,0.0 +24848,60,34,8,0.0 +24848,72,34.8,27,0.0 +24848,68,12.5,42,0.0 +24848,70,15,37,0.0 +24848,75,7.75,15,0.0 +24848,39,18,43,0.0 +24848,3,10,6,0.0 +24848,18,62.5,17,0.0 +24848,55,24,16,0.0 +24848,43,46,39,0.0 +24848,9,97,16,0.0 +24848,31,12.5,34,0.0 +24848,76,18,44,0.0 +24848,50,16.25,31,0.0 +24848,6,25,5,0.0 +24848,37,26,22,0.0 +24848,28,45.6,6,0.0 +24848,58,13.25,34,0.0 +24848,26,31.23,23,0.0 +24848,30,25.89,26,0.0 +24848,8,40,48,0.0 +24848,41,9.65,14,0.0 +24848,65,21.05,50,0.0 +24848,64,33.25,1,0.0 +24848,44,19.45,46,0.0 +24848,61,28.5,31,0.0 +24848,23,9,46,0.0 +24848,29,123.79,23,0.0 +24848,5,21.35,25,0.0 +24848,27,43.9,43,0.0 +24849,13,6,21,0.0 +24849,3,10,48,0.0 +24850,17,39,49,0.0 +24850,22,21,16,0.0 +24850,51,53,20,0.0 +24850,67,14,33,0.0 +24850,32,32,47,0.0 +24850,38,263.5,22,0.0 +24850,75,7.75,44,0.0 +24850,25,14,2,0.0 +24850,34,14,46,0.0 +24850,46,12,19,0.0 +24850,61,28.5,18,0.0 +24850,50,16.25,43,0.0 +24850,18,62.5,45,0.0 +24850,10,31,18,0.0 +24850,48,12.75,2,0.0 +24850,72,34.8,27,0.0 +24850,31,12.5,49,0.0 +24850,52,7,44,0.0 +24850,19,9.2,25,0.0 +24850,7,30,2,0.0 +24850,1,18,31,0.0 +24850,36,19,11,0.0 +24850,4,22,24,0.0 +24850,63,43.9,30,0.0 +24850,55,24,21,0.0 +24850,56,38,44,0.0 +24850,9,97,10,0.0 +24850,20,81,9,0.0 +24850,37,26,24,0.0 +24850,76,18,22,0.0 +24850,62,49.3,31,0.0 +24850,14,23.25,32,0.0 +24850,53,32.8,16,0.0 +24850,49,20,4,0.0 +24850,41,9.65,35,0.0 +24850,29,123.79,40,0.0 +24850,13,6,5,0.0 +24850,39,18,13,0.0 +24850,64,33.25,32,0.0 +24850,47,9.5,11,0.0 +24850,35,18,5,0.0 +24850,33,2.5,50,0.0 +24850,40,18.4,46,0.0 +24850,43,46,24,0.0 +24850,42,14,6,0.0 +24850,21,10,13,0.0 +24850,65,21.05,19,0.0 +24851,50,16.25,8,0.0 +24851,63,43.9,21,0.0 +24851,23,9,31,0.0 +24851,5,21.35,32,0.0 +24851,73,15,29,0.0 +24851,41,9.65,2,0.0 +24851,15,15.5,46,0.0 +24851,53,32.8,35,0.0 +24851,69,36,16,0.0 +24851,46,12,31,0.0 +24851,60,34,40,0.0 +24851,57,19.5,32,0.0 +24851,58,13.25,32,0.0 +24851,45,9.5,20,0.0 +24851,61,28.5,11,0.0 +24851,8,40,18,0.0 +24851,22,21,48,0.0 +24851,64,33.25,8,0.0 +24851,52,7,2,0.0 +24851,21,10,13,0.0 +24851,29,123.79,44,0.0 +24851,16,17.45,24,0.0 +24851,26,31.23,43,0.0 +24851,62,49.3,9,0.0 +24851,33,2.5,3,0.0 +24851,6,25,36,0.0 +24851,7,30,21,0.0 +24851,13,6,21,0.0 +24851,51,53,36,0.0 +24851,37,26,7,0.0 +24851,49,20,41,0.0 +24851,40,18.4,40,0.0 +24851,2,19,16,0.0 +24851,32,32,22,0.0 +24851,47,9.5,18,0.0 +24851,44,19.45,4,0.0 +24852,19,9.2,17,0.0 +24852,27,43.9,41,0.0 +24852,51,53,39,0.0 +24852,61,28.5,21,0.0 +24852,32,32,43,0.0 +24852,31,12.5,10,0.0 +24852,21,10,28,0.0 +24852,11,21,10,0.0 +24852,6,25,16,0.0 +24852,69,36,15,0.0 +24852,73,15,5,0.0 +24852,3,10,33,0.0 +24852,76,18,9,0.0 +24852,71,21.5,49,0.0 +24852,4,22,31,0.0 +24852,14,23.25,12,0.0 +24852,26,31.23,40,0.0 +24852,24,4.5,23,0.0 +24852,41,9.65,25,0.0 +24853,23,9,10,0.0 +24853,6,25,35,0.0 +24853,8,40,2,0.0 +24853,47,9.5,41,0.0 +24853,69,36,23,0.0 +24853,56,38,7,0.0 +24853,27,43.9,48,0.0 +24853,68,12.5,7,0.0 +24853,45,9.5,3,0.0 +24853,31,12.5,7,0.0 +24853,11,21,37,0.0 +24853,58,13.25,46,0.0 +24853,53,32.8,44,0.0 +24853,43,46,13,0.0 +24853,46,12,42,0.0 +24853,25,14,24,0.0 +24853,59,55,41,0.0 +24853,63,43.9,8,0.0 +24853,75,7.75,38,0.0 +24853,50,16.25,23,0.0 +24853,40,18.4,15,0.0 +24853,26,31.23,34,0.0 +24853,5,21.35,16,0.0 +24853,29,123.79,37,0.0 +24853,32,32,9,0.0 +24853,17,39,14,0.0 +24853,70,15,17,0.0 +24853,55,24,47,0.0 +24853,51,53,5,0.0 +24853,16,17.45,45,0.0 +24853,54,7.45,43,0.0 +24853,14,23.25,42,0.0 +24853,28,45.6,29,0.0 +24853,22,21,35,0.0 +24853,36,19,2,0.0 +24853,64,33.25,16,0.0 +24854,34,14,19,0.0 +24854,7,30,9,0.0 +24854,40,18.4,34,0.0 +24854,42,14,3,0.0 +24854,2,19,29,0.0 +24854,22,21,28,0.0 +24854,4,22,16,0.0 +24854,49,20,8,0.0 +24854,50,16.25,31,0.0 +24854,31,12.5,37,0.0 +24854,30,25.89,33,0.0 +24854,58,13.25,25,0.0 +24854,19,9.2,19,0.0 +24855,4,22,18,0.0 +24855,39,18,19,0.0 +24855,8,40,35,0.0 +24855,72,34.8,44,0.0 +24855,63,43.9,2,0.0 +24855,28,45.6,39,0.0 +24855,42,14,10,0.0 +24855,64,33.25,36,0.0 +24855,31,12.5,4,0.0 +24855,65,21.05,19,0.0 +24855,76,18,40,0.0 +24855,46,12,19,0.0 +24855,36,19,14,0.0 +24855,35,18,35,0.0 +24855,23,9,12,0.0 +24855,2,19,20,0.0 +24855,45,9.5,43,0.0 +24855,60,34,46,0.0 +24855,44,19.45,9,0.0 +24855,17,39,4,0.0 +24855,15,15.5,30,0.0 +24855,10,31,31,0.0 +24855,40,18.4,11,0.0 +24855,3,10,37,0.0 +24855,21,10,25,0.0 +24855,22,21,14,0.0 +24855,61,28.5,18,0.0 +24855,37,26,37,0.0 +24855,67,14,12,0.0 +24855,20,81,11,0.0 +24855,41,9.65,26,0.0 +24855,48,12.75,4,0.0 +24855,73,15,22,0.0 +24855,6,25,44,0.0 +24855,38,263.5,32,0.0 +24855,12,38,25,0.0 +24855,1,18,30,0.0 +24855,11,21,48,0.0 +24855,74,10,5,0.0 +24855,5,21.35,3,0.0 +24855,70,15,16,0.0 +24855,53,32.8,26,0.0 +24855,56,38,32,0.0 +24855,27,43.9,24,0.0 +24855,57,19.5,15,0.0 +24855,54,7.45,50,0.0 +24855,50,16.25,30,0.0 +24855,75,7.75,38,0.0 +24855,49,20,40,0.0 +24855,18,62.5,41,0.0 +24855,30,25.89,50,0.0 +24855,69,36,3,0.0 +24855,13,6,24,0.0 +24855,9,97,28,0.0 +24855,55,24,27,0.0 +24855,66,17,5,0.0 +24855,19,9.2,26,0.0 +24855,68,12.5,11,0.0 +24855,16,17.45,16,0.0 +24855,25,14,36,0.0 +24855,32,32,39,0.0 +24855,7,30,15,0.0 +24855,29,123.79,38,0.0 +24856,6,25,10,0.0 +24856,54,7.45,11,0.0 +24856,20,81,22,0.0 +24856,64,33.25,26,0.0 +24856,43,46,8,0.0 +24856,25,14,39,0.0 +24856,34,14,38,0.0 +24856,7,30,29,0.0 +24856,70,15,36,0.0 +24856,51,53,45,0.0 +24856,67,14,19,0.0 +24856,71,21.5,1,0.0 +24856,53,32.8,29,0.0 +24856,3,10,30,0.0 +24856,4,22,7,0.0 +24856,39,18,7,0.0 +24856,9,97,12,0.0 +24856,60,34,43,0.0 +24856,55,24,50,0.0 +24856,66,17,44,0.0 +24856,32,32,48,0.0 +24856,14,23.25,5,0.0 +24856,68,12.5,30,0.0 +24856,27,43.9,39,0.0 +24856,50,16.25,46,0.0 +24856,13,6,44,0.0 +24856,16,17.45,9,0.0 +24856,5,21.35,44,0.0 +24856,30,25.89,39,0.0 +24856,40,18.4,36,0.0 +24856,65,21.05,39,0.0 +24857,71,21.5,41,0.0 +24857,5,21.35,27,0.0 +24857,1,18,31,0.0 +24858,19,9.2,43,0.0 +24858,41,9.65,31,0.0 +24858,5,21.35,35,0.0 +24858,1,18,9,0.0 +24858,28,45.6,17,0.0 +24858,73,15,40,0.0 +24858,65,21.05,30,0.0 +24858,70,15,17,0.0 +24858,47,9.5,8,0.0 +24858,21,10,38,0.0 +24858,50,16.25,13,0.0 +24858,14,23.25,11,0.0 +24858,53,32.8,48,0.0 +24858,15,15.5,33,0.0 +24858,42,14,4,0.0 +24858,61,28.5,47,0.0 +24859,76,18,29,0.0 +24860,54,7.45,13,0.0 +24860,76,18,48,0.0 +24860,50,16.25,41,0.0 +24860,67,14,1,0.0 +24860,34,14,9,0.0 +24860,3,10,29,0.0 +24860,62,49.3,18,0.0 +24860,49,20,24,0.0 +24860,38,263.5,17,0.0 +24860,66,17,47,0.0 +24860,64,33.25,5,0.0 +24861,35,18,17,0.0 +24861,73,15,23,0.0 +24861,43,46,10,0.0 +24861,75,7.75,38,0.0 +24861,30,25.89,32,0.0 +24861,57,19.5,17,0.0 +24861,6,25,32,0.0 +24861,5,21.35,15,0.0 +24861,14,23.25,38,0.0 +24861,24,4.5,14,0.0 +24861,21,10,43,0.0 +24861,16,17.45,32,0.0 +24861,58,13.25,49,0.0 +24861,74,10,24,0.0 +24861,2,19,27,0.0 +24861,39,18,7,0.0 +24861,69,36,11,0.0 +24861,55,24,40,0.0 +24861,1,18,30,0.0 +24861,47,9.5,26,0.0 +24861,33,2.5,14,0.0 +24861,45,9.5,39,0.0 +24861,68,12.5,8,0.0 +24861,22,21,30,0.0 +24861,64,33.25,21,0.0 +24861,4,22,39,0.0 +24862,13,6,2,0.0 +24862,22,21,2,0.0 +24862,59,55,6,0.0 +24862,20,81,23,0.0 +24862,46,12,7,0.0 +24862,32,32,33,0.0 +24862,41,9.65,48,0.0 +24862,42,14,5,0.0 +24862,36,19,41,0.0 +24862,51,53,34,0.0 +24862,26,31.23,17,0.0 +24862,64,33.25,50,0.0 +24862,6,25,1,0.0 +24862,43,46,30,0.0 +24862,76,18,42,0.0 +24862,19,9.2,25,0.0 +24862,38,263.5,26,0.0 +24862,10,31,23,0.0 +24863,76,18,30,0.0 +24863,46,12,1,0.0 +24863,69,36,32,0.0 +24863,32,32,29,0.0 +24863,68,12.5,4,0.0 +24863,6,25,7,0.0 +24863,49,20,35,0.0 +24863,43,46,8,0.0 +24863,11,21,13,0.0 +24863,45,9.5,43,0.0 +24863,59,55,6,0.0 +24863,38,263.5,41,0.0 +24863,26,31.23,50,0.0 +24863,75,7.75,20,0.0 +24863,14,23.25,44,0.0 +24863,13,6,26,0.0 +24863,67,14,15,0.0 +24863,20,81,42,0.0 +24863,36,19,5,0.0 +24863,55,24,16,0.0 +24863,51,53,41,0.0 +24863,57,19.5,49,0.0 +24863,53,32.8,21,0.0 +24863,58,13.25,32,0.0 +24863,15,15.5,4,0.0 +24863,28,45.6,43,0.0 +24863,62,49.3,14,0.0 +24863,2,19,43,0.0 +24863,12,38,44,0.0 +24863,77,13,1,0.0 +24863,48,12.75,1,0.0 +24863,47,9.5,50,0.0 +24863,18,62.5,12,0.0 +24863,5,21.35,31,0.0 +24863,27,43.9,3,0.0 +24863,73,15,32,0.0 +24863,54,7.45,46,0.0 +24863,35,18,18,0.0 +24863,50,16.25,14,0.0 +24863,40,18.4,3,0.0 +24863,24,4.5,16,0.0 +24863,31,12.5,26,0.0 +24863,29,123.79,16,0.0 +24863,25,14,15,0.0 +24863,70,15,38,0.0 +24863,64,33.25,8,0.0 +24863,19,9.2,21,0.0 +24863,44,19.45,8,0.0 +24863,17,39,24,0.0 +24863,56,38,6,0.0 +24863,21,10,36,0.0 +24863,66,17,23,0.0 +24863,10,31,49,0.0 +24863,3,10,27,0.0 +24863,52,7,45,0.0 +24863,33,2.5,35,0.0 +24863,9,97,8,0.0 +24863,41,9.65,47,0.0 +24863,8,40,37,0.0 +24863,22,21,1,0.0 +24863,42,14,38,0.0 +24863,39,18,19,0.0 +24863,72,34.8,47,0.0 +24863,71,21.5,13,0.0 +24863,23,9,47,0.0 +24863,74,10,20,0.0 +24863,65,21.05,43,0.0 +24863,1,18,5,0.0 +24863,37,26,40,0.0 +24863,16,17.45,35,0.0 +24864,70,15,27,0.0 +24864,43,46,21,0.0 +24864,46,12,2,0.0 +24864,1,18,46,0.0 +24864,38,263.5,41,0.0 +24864,69,36,49,0.0 +24864,49,20,29,0.0 +24864,62,49.3,8,0.0 +24864,23,9,19,0.0 +24864,8,40,42,0.0 +24864,30,25.89,45,0.0 +24864,41,9.65,22,0.0 +24864,45,9.5,18,0.0 +24864,26,31.23,14,0.0 +24864,28,45.6,5,0.0 +24864,48,12.75,37,0.0 +24864,17,39,17,0.0 +24864,56,38,4,0.0 +24864,22,21,32,0.0 +24864,4,22,19,0.0 +24864,5,21.35,14,0.0 +24864,3,10,45,0.0 +24864,14,23.25,1,0.0 +24864,55,24,28,0.0 +24864,64,33.25,34,0.0 +24864,27,43.9,13,0.0 +24864,9,97,22,0.0 +24864,68,12.5,43,0.0 +24864,15,15.5,39,0.0 +24864,71,21.5,3,0.0 +24865,15,15.5,7,0.0 +24865,35,18,25,0.0 +24865,39,18,16,0.0 +24865,65,21.05,43,0.0 +24865,12,38,25,0.0 +24865,11,21,23,0.0 +24866,69,36,15,0.0 +24866,70,15,11,0.0 +24866,61,28.5,39,0.0 +24866,38,263.5,37,0.0 +24866,59,55,34,0.0 +24866,64,33.25,47,0.0 +24866,45,9.5,39,0.0 +24866,72,34.8,45,0.0 +24866,60,34,8,0.0 +24866,19,9.2,33,0.0 +24866,34,14,43,0.0 +24866,26,31.23,15,0.0 +24866,62,49.3,1,0.0 +24866,37,26,36,0.0 +24866,12,38,1,0.0 +24866,52,7,17,0.0 +24866,55,24,44,0.0 +24866,25,14,10,0.0 +24866,9,97,21,0.0 +24866,44,19.45,45,0.0 +24866,27,43.9,30,0.0 +24866,46,12,22,0.0 +24866,49,20,31,0.0 +24866,5,21.35,43,0.0 +24866,10,31,35,0.0 +24866,17,39,36,0.0 +24866,42,14,46,0.0 +24866,54,7.45,31,0.0 +24866,22,21,50,0.0 +24866,71,21.5,14,0.0 +24866,16,17.45,42,0.0 +24866,2,19,38,0.0 +24866,73,15,42,0.0 +24866,31,12.5,5,0.0 +24866,50,16.25,9,0.0 +24866,63,43.9,26,0.0 +24866,58,13.25,39,0.0 +24866,77,13,48,0.0 +24866,21,10,40,0.0 +24866,33,2.5,48,0.0 +24866,23,9,22,0.0 +24866,47,9.5,8,0.0 +24866,56,38,26,0.0 +24866,39,18,24,0.0 +24866,67,14,38,0.0 +24866,35,18,41,0.0 +24866,74,10,22,0.0 +24866,8,40,19,0.0 +24866,43,46,46,0.0 +24866,24,4.5,4,0.0 +24866,30,25.89,1,0.0 +24866,41,9.65,17,0.0 +24866,66,17,45,0.0 +24866,1,18,34,0.0 +24866,40,18.4,21,0.0 +24866,14,23.25,50,0.0 +24866,3,10,33,0.0 +24866,32,32,48,0.0 +24866,4,22,26,0.0 +24866,29,123.79,39,0.0 +24866,68,12.5,49,0.0 +24866,13,6,12,0.0 +24866,57,19.5,2,0.0 +24866,20,81,18,0.0 +24866,51,53,46,0.0 +24866,11,21,1,0.0 +24866,76,18,14,0.0 +24867,28,45.6,29,0.0 +24867,43,46,13,0.0 +24867,56,38,25,0.0 +24867,24,4.5,24,0.0 +24867,2,19,36,0.0 +24867,64,33.25,46,0.0 +24867,36,19,32,0.0 +24867,74,10,1,0.0 +24867,73,15,28,0.0 +24867,50,16.25,25,0.0 +24867,40,18.4,34,0.0 +24867,5,21.35,16,0.0 +24867,12,38,47,0.0 +24867,30,25.89,18,0.0 +24867,48,12.75,8,0.0 +24867,1,18,5,0.0 +24867,68,12.5,42,0.0 +24867,65,21.05,32,0.0 +24867,32,32,18,0.0 +24867,58,13.25,13,0.0 +24867,10,31,16,0.0 +24867,17,39,29,0.0 +24867,66,17,1,0.0 +24867,9,97,32,0.0 +24867,42,14,22,0.0 +24867,57,19.5,27,0.0 +24867,26,31.23,14,0.0 +24867,49,20,37,0.0 +24867,46,12,14,0.0 +24867,33,2.5,33,0.0 +24867,53,32.8,37,0.0 +24867,6,25,47,0.0 +24867,13,6,31,0.0 +24867,25,14,45,0.0 +24867,71,21.5,25,0.0 +24867,55,24,48,0.0 +24867,60,34,23,0.0 +24867,34,14,39,0.0 +24867,45,9.5,39,0.0 +24867,38,263.5,14,0.0 +24867,39,18,40,0.0 +24867,14,23.25,36,0.0 +24867,19,9.2,3,0.0 +24867,54,7.45,40,0.0 +24867,3,10,17,0.0 +24867,44,19.45,27,0.0 +24867,22,21,12,0.0 +24867,62,49.3,18,0.0 +24867,20,81,38,0.0 +24867,35,18,31,0.0 +24867,21,10,8,0.0 +24867,52,7,44,0.0 +24867,67,14,19,0.0 +24867,16,17.45,42,0.0 +24867,29,123.79,15,0.0 +24867,76,18,18,0.0 +24867,63,43.9,12,0.0 +24867,70,15,22,0.0 +24867,23,9,21,0.0 +24867,59,55,45,0.0 +24867,37,26,46,0.0 +24867,47,9.5,16,0.0 +24867,7,30,10,0.0 +24867,15,15.5,14,0.0 +24867,77,13,49,0.0 +24867,8,40,14,0.0 +24867,61,28.5,48,0.0 +24867,51,53,19,0.0 +24867,72,34.8,26,0.0 +24867,75,7.75,36,0.0 +24867,11,21,28,0.0 +24867,27,43.9,34,0.0 +24867,69,36,33,0.0 +24867,18,62.5,23,0.0 +24867,41,9.65,5,0.0 +24867,4,22,31,0.0 +24867,31,12.5,42,0.0 +24868,65,21.05,39,0.0 +24868,17,39,34,0.0 +24868,1,18,32,0.0 +24868,32,32,14,0.0 +24868,46,12,17,0.0 +24868,45,9.5,50,0.0 +24868,10,31,1,0.0 +24868,22,21,35,0.0 +24868,67,14,22,0.0 +24868,73,15,36,0.0 +24868,76,18,37,0.0 +24868,43,46,25,0.0 +24868,42,14,27,0.0 +24868,77,13,16,0.0 +24868,19,9.2,19,0.0 +24868,37,26,14,0.0 +24868,58,13.25,38,0.0 +24868,5,21.35,20,0.0 +24868,26,31.23,24,0.0 +24868,69,36,7,0.0 +24868,66,17,49,0.0 +24868,24,4.5,1,0.0 +24868,41,9.65,44,0.0 +24868,60,34,26,0.0 +24868,50,16.25,14,0.0 +24868,70,15,43,0.0 +24868,12,38,41,0.0 +24868,28,45.6,19,0.0 +24868,34,14,48,0.0 +24868,44,19.45,7,0.0 +24868,21,10,13,0.0 +24868,31,12.5,32,0.0 +24868,30,25.89,18,0.0 +24868,11,21,32,0.0 +24868,25,14,16,0.0 +24868,8,40,1,0.0 +24868,4,22,11,0.0 +24868,56,38,2,0.0 +24868,2,19,42,0.0 +24868,29,123.79,27,0.0 +24868,53,32.8,2,0.0 +24868,14,23.25,9,0.0 +24868,36,19,41,0.0 +24868,40,18.4,6,0.0 +24868,18,62.5,37,0.0 +24868,55,24,6,0.0 +24868,61,28.5,34,0.0 +24868,47,9.5,12,0.0 +24868,15,15.5,33,0.0 +24868,54,7.45,11,0.0 +24868,57,19.5,47,0.0 +24868,74,10,48,0.0 +24868,7,30,40,0.0 +24868,51,53,37,0.0 +24868,71,21.5,42,0.0 +24868,63,43.9,20,0.0 +24868,20,81,35,0.0 +24868,27,43.9,41,0.0 +24868,9,97,27,0.0 +24868,52,7,43,0.0 +24868,23,9,6,0.0 +24868,62,49.3,7,0.0 +24868,68,12.5,39,0.0 +24868,75,7.75,48,0.0 +24868,48,12.75,25,0.0 +24868,13,6,19,0.0 +24868,59,55,27,0.0 +24868,16,17.45,17,0.0 +24868,72,34.8,24,0.0 +24868,33,2.5,50,0.0 +24868,35,18,6,0.0 +24868,3,10,31,0.0 +24868,39,18,37,0.0 +24868,38,263.5,13,0.0 +24869,13,6,8,0.0 +24869,8,40,1,0.0 +24869,44,19.45,28,0.0 +24869,10,31,47,0.0 +24869,41,9.65,13,0.0 +24869,2,19,18,0.0 +24869,52,7,13,0.0 +24869,32,32,32,0.0 +24869,15,15.5,50,0.0 +24869,26,31.23,17,0.0 +24869,42,14,28,0.0 +24869,61,28.5,23,0.0 +24869,49,20,43,0.0 +24869,62,49.3,32,0.0 +24869,3,10,32,0.0 +24869,7,30,42,0.0 +24869,57,19.5,46,0.0 +24869,12,38,48,0.0 +24869,27,43.9,14,0.0 +24869,34,14,1,0.0 +24869,37,26,35,0.0 +24869,55,24,37,0.0 +24869,14,23.25,31,0.0 +24869,21,10,48,0.0 +24869,40,18.4,44,0.0 +24869,75,7.75,7,0.0 +24869,72,34.8,45,0.0 +24869,6,25,18,0.0 +24869,53,32.8,19,0.0 +24869,73,15,37,0.0 +24869,74,10,21,0.0 +24869,18,62.5,37,0.0 +24869,67,14,3,0.0 +24869,30,25.89,23,0.0 +24869,76,18,40,0.0 +24869,63,43.9,17,0.0 +24869,45,9.5,7,0.0 +24869,28,45.6,29,0.0 +24869,43,46,42,0.0 +24869,22,21,40,0.0 +24869,35,18,49,0.0 +24869,36,19,37,0.0 +24869,5,21.35,42,0.0 +24869,48,12.75,1,0.0 +24869,66,17,49,0.0 +24869,60,34,21,0.0 +24869,31,12.5,20,0.0 +24869,58,13.25,30,0.0 +24869,4,22,29,0.0 +24869,77,13,24,0.0 +24869,11,21,27,0.0 +24869,69,36,42,0.0 +24870,36,19,48,0.0 +24870,42,14,44,0.0 +24870,66,17,15,0.0 +24870,26,31.23,11,0.0 +24871,58,13.25,27,0.0 +24871,18,62.5,42,0.0 +24871,27,43.9,25,0.0 +24871,59,55,38,0.0 +24871,26,31.23,44,0.0 +24871,17,39,26,0.0 +24871,30,25.89,29,0.0 +24871,36,19,29,0.0 +24871,7,30,40,0.0 +24871,62,49.3,23,0.0 +24871,69,36,46,0.0 +24871,49,20,42,0.0 +24871,16,17.45,34,0.0 +24871,28,45.6,10,0.0 +24871,19,9.2,42,0.0 +24871,76,18,8,0.0 +24871,55,24,19,0.0 +24871,21,10,4,0.0 +24871,43,46,49,0.0 +24871,12,38,8,0.0 +24871,48,12.75,42,0.0 +24871,40,18.4,26,0.0 +24871,77,13,47,0.0 +24871,32,32,9,0.0 +24871,31,12.5,34,0.0 +24871,37,26,33,0.0 +24871,66,17,50,0.0 +24871,74,10,20,0.0 +24871,20,81,25,0.0 +24871,57,19.5,30,0.0 +24871,61,28.5,28,0.0 +24871,10,31,2,0.0 +24871,65,21.05,17,0.0 +24871,35,18,50,0.0 +24871,67,14,16,0.0 +24871,24,4.5,8,0.0 +24871,42,14,38,0.0 +24871,70,15,33,0.0 +24871,29,123.79,4,0.0 +24871,2,19,5,0.0 +24871,41,9.65,8,0.0 +24871,72,34.8,35,0.0 +24871,64,33.25,41,0.0 +24871,25,14,20,0.0 +24871,73,15,6,0.0 +24871,56,38,20,0.0 +24871,4,22,33,0.0 +24871,45,9.5,13,0.0 +24871,15,15.5,23,0.0 +24871,9,97,46,0.0 +24871,6,25,28,0.0 +24871,1,18,41,0.0 +24871,11,21,28,0.0 +24871,63,43.9,22,0.0 +24871,47,9.5,12,0.0 +24871,75,7.75,28,0.0 +24871,8,40,34,0.0 +24871,34,14,11,0.0 +24871,53,32.8,1,0.0 +24872,29,123.79,35,0.0 +24872,7,30,13,0.0 +24872,8,40,26,0.0 +24872,67,14,3,0.0 +24872,49,20,1,0.0 +24872,41,9.65,31,0.0 +24872,50,16.25,48,0.0 +24872,64,33.25,30,0.0 +24872,45,9.5,25,0.0 +24872,21,10,37,0.0 +24872,9,97,48,0.0 +24872,53,32.8,11,0.0 +24872,42,14,19,0.0 +24872,14,23.25,30,0.0 +24872,61,28.5,26,0.0 +24872,75,7.75,42,0.0 +24872,36,19,49,0.0 +24872,32,32,16,0.0 +24872,17,39,20,0.0 +24872,37,26,31,0.0 +24872,48,12.75,12,0.0 +24872,13,6,33,0.0 +24872,63,43.9,4,0.0 +24872,40,18.4,20,0.0 +24872,5,21.35,5,0.0 +24872,43,46,45,0.0 +24872,25,14,20,0.0 +24872,46,12,9,0.0 +24872,62,49.3,21,0.0 +24872,77,13,28,0.0 +24872,74,10,28,0.0 +24872,66,17,20,0.0 +24872,56,38,16,0.0 +24872,57,19.5,37,0.0 +24872,70,15,6,0.0 +24872,15,15.5,5,0.0 +24872,73,15,38,0.0 +24872,39,18,37,0.0 +24872,35,18,9,0.0 +24872,59,55,27,0.0 +24872,27,43.9,38,0.0 +24872,60,34,12,0.0 +24872,38,263.5,25,0.0 +24872,51,53,16,0.0 +24872,2,19,48,0.0 +24872,47,9.5,17,0.0 +24872,1,18,27,0.0 +24872,72,34.8,47,0.0 +24872,24,4.5,15,0.0 +24872,20,81,1,0.0 +24872,26,31.23,17,0.0 +24872,19,9.2,38,0.0 +24872,18,62.5,35,0.0 +24872,65,21.05,3,0.0 +24872,6,25,50,0.0 +24872,10,31,44,0.0 +24872,28,45.6,43,0.0 +24872,33,2.5,41,0.0 +24872,68,12.5,46,0.0 +24872,31,12.5,6,0.0 +24872,23,9,45,0.0 +24872,55,24,39,0.0 +24872,34,14,48,0.0 +24872,16,17.45,25,0.0 +24872,22,21,27,0.0 +24872,11,21,3,0.0 +24872,44,19.45,23,0.0 +24872,4,22,9,0.0 +24872,76,18,35,0.0 +24872,58,13.25,25,0.0 +24872,69,36,2,0.0 +24872,54,7.45,49,0.0 +24872,71,21.5,34,0.0 +24872,52,7,35,0.0 +24872,3,10,24,0.0 +24872,30,25.89,35,0.0 +24873,49,20,32,0.0 +24873,75,7.75,35,0.0 +24873,50,16.25,11,0.0 +24873,48,12.75,13,0.0 +24874,12,38,39,0.0 +24874,65,21.05,9,0.0 +24874,47,9.5,38,0.0 +24874,8,40,17,0.0 +24874,64,33.25,14,0.0 +24874,11,21,43,0.0 +24874,57,19.5,29,0.0 +24874,41,9.65,38,0.0 +24874,49,20,37,0.0 +24874,23,9,23,0.0 +24874,74,10,7,0.0 +24874,14,23.25,25,0.0 +24874,9,97,15,0.0 +24874,26,31.23,25,0.0 +24874,27,43.9,7,0.0 +24874,48,12.75,34,0.0 +24874,50,16.25,34,0.0 +24874,39,18,30,0.0 +24874,29,123.79,25,0.0 +24874,58,13.25,11,0.0 +24874,25,14,26,0.0 +24874,2,19,34,0.0 +24874,4,22,5,0.0 +24874,55,24,37,0.0 +24874,67,14,41,0.0 +24874,37,26,42,0.0 +24874,31,12.5,26,0.0 +24874,51,53,13,0.0 +24874,20,81,30,0.0 +24874,6,25,20,0.0 +24874,38,263.5,14,0.0 +24874,22,21,14,0.0 +24874,35,18,16,0.0 +24874,36,19,7,0.0 +24874,1,18,40,0.0 +24874,63,43.9,45,0.0 +24874,66,17,21,0.0 +24874,68,12.5,25,0.0 +24874,10,31,1,0.0 +24874,45,9.5,1,0.0 +24874,30,25.89,21,0.0 +24874,32,32,11,0.0 +24874,3,10,21,0.0 +24874,73,15,5,0.0 +24874,13,6,45,0.0 +24875,27,43.9,42,0.0 +24875,10,31,34,0.0 +24875,5,21.35,22,0.0 +24875,32,32,16,0.0 +24875,19,9.2,43,0.0 +24875,50,16.25,45,0.0 +24875,47,9.5,24,0.0 +24876,45,9.5,14,0.0 +24876,27,43.9,22,0.0 +24876,67,14,3,0.0 +24876,2,19,39,0.0 +24876,16,17.45,27,0.0 +24876,26,31.23,8,0.0 +24876,61,28.5,21,0.0 +24876,74,10,35,0.0 +24876,12,38,12,0.0 +24876,17,39,25,0.0 +24876,13,6,38,0.0 +24876,20,81,31,0.0 +24876,56,38,17,0.0 +24876,60,34,47,0.0 +24876,73,15,39,0.0 +24876,51,53,50,0.0 +24876,76,18,9,0.0 +24876,32,32,22,0.0 +24876,62,49.3,10,0.0 +24876,47,9.5,25,0.0 +24876,36,19,24,0.0 +24876,10,31,8,0.0 +24876,46,12,36,0.0 +24876,35,18,5,0.0 +24876,72,34.8,33,0.0 +24876,54,7.45,5,0.0 +24876,49,20,29,0.0 +24876,9,97,15,0.0 +24876,34,14,33,0.0 +24876,3,10,21,0.0 +24876,41,9.65,19,0.0 +24876,66,17,9,0.0 +24876,38,263.5,24,0.0 +24876,75,7.75,35,0.0 +24876,55,24,26,0.0 +24876,71,21.5,37,0.0 +24876,30,25.89,24,0.0 +24876,7,30,7,0.0 +24876,31,12.5,29,0.0 +24876,33,2.5,8,0.0 +24876,52,7,14,0.0 +24876,58,13.25,38,0.0 +24876,57,19.5,40,0.0 +24876,25,14,1,0.0 +24876,1,18,40,0.0 +24876,15,15.5,47,0.0 +24876,43,46,48,0.0 +24876,68,12.5,28,0.0 +24876,39,18,40,0.0 +24876,77,13,32,0.0 +24876,29,123.79,29,0.0 +24876,48,12.75,10,0.0 +24877,42,14,21,0.0 +24877,72,34.8,26,0.0 +24877,31,12.5,42,0.0 +24877,57,19.5,12,0.0 +24877,49,20,50,0.0 +24877,48,12.75,14,0.0 +24877,64,33.25,42,0.0 +24877,15,15.5,22,0.0 +24877,36,19,33,0.0 +24877,14,23.25,34,0.0 +24877,21,10,31,0.0 +24877,34,14,39,0.0 +24877,63,43.9,27,0.0 +24877,6,25,9,0.0 +24877,17,39,44,0.0 +24877,26,31.23,30,0.0 +24877,27,43.9,38,0.0 +24877,18,62.5,21,0.0 +24877,9,97,41,0.0 +24877,39,18,36,0.0 +24877,60,34,16,0.0 +24877,24,4.5,50,0.0 +24877,47,9.5,3,0.0 +24877,8,40,14,0.0 +24877,29,123.79,42,0.0 +24877,45,9.5,28,0.0 +24877,74,10,5,0.0 +24877,61,28.5,34,0.0 +24877,32,32,11,0.0 +24877,44,19.45,13,0.0 +24877,5,21.35,3,0.0 +24877,59,55,1,0.0 +24877,71,21.5,26,0.0 +24878,23,9,10,0.0 +24878,69,36,37,0.0 +24878,6,25,49,0.0 +24878,18,62.5,6,0.0 +24878,8,40,13,0.0 +24878,36,19,48,0.0 +24878,35,18,13,0.0 +24878,9,97,31,0.0 +24878,46,12,21,0.0 +24878,73,15,2,0.0 +24878,28,45.6,33,0.0 +24878,57,19.5,34,0.0 +24878,11,21,22,0.0 +24878,7,30,12,0.0 +24878,71,21.5,16,0.0 +24878,45,9.5,30,0.0 +24878,68,12.5,38,0.0 +24878,32,32,21,0.0 +24878,27,43.9,6,0.0 +24878,53,32.8,15,0.0 +24878,22,21,30,0.0 +24878,37,26,41,0.0 +24878,39,18,42,0.0 +24878,25,14,9,0.0 +24878,24,4.5,49,0.0 +24878,34,14,25,0.0 +24878,19,9.2,39,0.0 +24878,31,12.5,47,0.0 +24878,59,55,31,0.0 +24878,50,16.25,26,0.0 +24878,30,25.89,31,0.0 +24878,72,34.8,11,0.0 +24878,41,9.65,3,0.0 +24878,65,21.05,50,0.0 +24878,2,19,6,0.0 +24878,58,13.25,19,0.0 +24878,1,18,45,0.0 +24878,3,10,39,0.0 +24878,15,15.5,6,0.0 +24878,4,22,30,0.0 +24878,40,18.4,4,0.0 +24878,17,39,7,0.0 +24878,16,17.45,35,0.0 +24879,26,31.23,14,0.0 +24879,31,12.5,48,0.0 +24879,35,18,15,0.0 +24879,77,13,23,0.0 +24879,13,6,7,0.0 +24879,67,14,50,0.0 +24879,12,38,11,0.0 +24879,57,19.5,44,0.0 +24879,11,21,13,0.0 +24879,40,18.4,26,0.0 +24879,32,32,7,0.0 +24879,49,20,7,0.0 +24879,20,81,14,0.0 +24879,23,9,7,0.0 +24879,10,31,2,0.0 +24879,34,14,30,0.0 +24879,71,21.5,4,0.0 +24879,27,43.9,13,0.0 +24879,22,21,30,0.0 +24879,72,34.8,40,0.0 +24879,66,17,20,0.0 +24879,69,36,10,0.0 +24879,68,12.5,41,0.0 +24879,14,23.25,47,0.0 +24879,7,30,8,0.0 +24879,16,17.45,35,0.0 +24879,56,38,42,0.0 +24879,70,15,7,0.0 +24879,6,25,32,0.0 +24879,60,34,20,0.0 +24879,21,10,40,0.0 +24879,25,14,3,0.0 +24879,18,62.5,17,0.0 +24879,5,21.35,24,0.0 +24879,33,2.5,43,0.0 +24879,58,13.25,9,0.0 +24879,43,46,7,0.0 +24879,64,33.25,15,0.0 +24879,54,7.45,27,0.0 +24879,53,32.8,22,0.0 +24879,51,53,43,0.0 +24879,50,16.25,29,0.0 +24879,24,4.5,25,0.0 +24880,1,18,34,0.0 +24880,18,62.5,48,0.0 +24880,11,21,22,0.0 +24880,22,21,47,0.0 +24880,62,49.3,23,0.0 +24880,9,97,47,0.0 +24880,61,28.5,41,0.0 +24880,37,26,14,0.0 +24880,53,32.8,38,0.0 +24880,5,21.35,29,0.0 +24880,8,40,3,0.0 +24881,71,21.5,39,0.0 +24881,34,14,27,0.0 +24881,57,19.5,22,0.0 +24881,46,12,30,0.0 +24881,47,9.5,2,0.0 +24881,72,34.8,24,0.0 +24881,9,97,33,0.0 +24881,35,18,44,0.0 +24881,44,19.45,10,0.0 +24881,33,2.5,32,0.0 +24881,65,21.05,7,0.0 +24881,29,123.79,39,0.0 +24881,49,20,1,0.0 +24881,18,62.5,10,0.0 +24881,16,17.45,20,0.0 +24881,64,33.25,46,0.0 +24881,21,10,11,0.0 +24881,26,31.23,33,0.0 +24881,3,10,6,0.0 +24881,50,16.25,38,0.0 +24881,10,31,44,0.0 +24881,32,32,17,0.0 +24881,8,40,16,0.0 +24881,62,49.3,7,0.0 +24881,70,15,11,0.0 +24881,24,4.5,24,0.0 +24881,2,19,18,0.0 +24881,36,19,4,0.0 +24881,69,36,29,0.0 +24881,31,12.5,46,0.0 +24881,66,17,14,0.0 +24881,53,32.8,44,0.0 +24881,48,12.75,26,0.0 +24881,52,7,38,0.0 +24881,39,18,24,0.0 +24881,76,18,38,0.0 +24881,13,6,5,0.0 +24881,43,46,25,0.0 +24881,38,263.5,35,0.0 +24881,60,34,50,0.0 +24881,6,25,32,0.0 +24881,59,55,15,0.0 +24881,28,45.6,20,0.0 +24881,23,9,21,0.0 +24881,77,13,42,0.0 +24881,54,7.45,50,0.0 +24881,63,43.9,28,0.0 +24881,25,14,35,0.0 +24881,41,9.65,14,0.0 +24881,40,18.4,23,0.0 +24881,55,24,13,0.0 +24881,45,9.5,25,0.0 +24881,75,7.75,15,0.0 +24881,37,26,38,0.0 +24881,68,12.5,6,0.0 +24881,11,21,1,0.0 +24881,51,53,32,0.0 +24881,74,10,25,0.0 +24881,5,21.35,9,0.0 +24881,7,30,5,0.0 +24881,14,23.25,39,0.0 +24881,17,39,19,0.0 +24881,12,38,22,0.0 +24881,42,14,47,0.0 +24881,56,38,8,0.0 +24881,30,25.89,46,0.0 +24881,73,15,46,0.0 +24881,19,9.2,18,0.0 +24881,20,81,14,0.0 +24881,1,18,8,0.0 +24881,27,43.9,23,0.0 +24881,61,28.5,33,0.0 +24881,22,21,1,0.0 +24881,67,14,7,0.0 +24881,4,22,26,0.0 +24881,58,13.25,29,0.0 +24882,40,18.4,4,0.0 +24882,19,9.2,8,0.0 +24882,39,18,26,0.0 +24882,77,13,28,0.0 +24883,77,13,28,0.0 +24883,36,19,24,0.0 +24883,63,43.9,31,0.0 +24883,75,7.75,25,0.0 +24883,52,7,46,0.0 +24883,53,32.8,2,0.0 +24883,64,33.25,19,0.0 +24883,6,25,9,0.0 +24883,51,53,23,0.0 +24883,27,43.9,10,0.0 +24883,66,17,41,0.0 +24883,5,21.35,47,0.0 +24883,22,21,48,0.0 +24883,69,36,37,0.0 +24883,42,14,38,0.0 +24883,28,45.6,39,0.0 +24883,7,30,49,0.0 +24883,48,12.75,20,0.0 +24883,3,10,30,0.0 +24883,76,18,2,0.0 +24883,38,263.5,49,0.0 +24883,15,15.5,6,0.0 +24883,65,21.05,18,0.0 +24883,31,12.5,5,0.0 +24883,18,62.5,11,0.0 +24883,16,17.45,43,0.0 +24883,70,15,17,0.0 +24883,61,28.5,41,0.0 +24883,43,46,36,0.0 +24884,25,14,44,0.0 +24884,5,21.35,35,0.0 +24884,77,13,26,0.0 +24884,64,33.25,27,0.0 +24884,12,38,26,0.0 +24884,53,32.8,46,0.0 +24884,59,55,6,0.0 +24884,27,43.9,30,0.0 +24884,39,18,16,0.0 +24884,48,12.75,9,0.0 +24884,52,7,3,0.0 +24884,56,38,49,0.0 +24884,58,13.25,50,0.0 +24884,55,24,19,0.0 +24884,44,19.45,26,0.0 +24884,57,19.5,2,0.0 +24884,17,39,35,0.0 +24884,29,123.79,8,0.0 +24884,19,9.2,33,0.0 +24884,4,22,12,0.0 +24884,74,10,36,0.0 +24884,46,12,23,0.0 +24884,16,17.45,44,0.0 +24884,23,9,40,0.0 +24884,30,25.89,41,0.0 +24884,41,9.65,40,0.0 +24884,71,21.5,2,0.0 +24884,62,49.3,49,0.0 +24884,18,62.5,42,0.0 +24884,34,14,18,0.0 +24884,76,18,43,0.0 +24884,43,46,33,0.0 +24884,10,31,45,0.0 +24884,14,23.25,10,0.0 +24884,1,18,38,0.0 +24884,33,2.5,44,0.0 +24884,6,25,33,0.0 +24884,26,31.23,49,0.0 +24884,65,21.05,25,0.0 +24884,15,15.5,16,0.0 +24884,3,10,13,0.0 +24884,13,6,8,0.0 +24884,61,28.5,1,0.0 +24884,24,4.5,39,0.0 +24884,72,34.8,41,0.0 +24884,2,19,22,0.0 +24884,73,15,46,0.0 +24884,66,17,6,0.0 +24884,47,9.5,40,0.0 +24884,11,21,8,0.0 +24884,68,12.5,20,0.0 +24884,69,36,35,0.0 +24884,22,21,49,0.0 +24884,8,40,22,0.0 +24884,31,12.5,49,0.0 +24884,54,7.45,13,0.0 +24884,60,34,32,0.0 +24884,51,53,50,0.0 +24884,32,32,19,0.0 +24884,42,14,41,0.0 +24884,63,43.9,37,0.0 +24884,28,45.6,26,0.0 +24884,21,10,18,0.0 +24884,35,18,27,0.0 +24884,20,81,35,0.0 +24884,9,97,10,0.0 +24884,50,16.25,4,0.0 +24884,75,7.75,31,0.0 +24884,45,9.5,21,0.0 +24884,7,30,37,0.0 +24885,12,38,9,0.0 +24885,67,14,49,0.0 +24885,11,21,11,0.0 +24885,2,19,29,0.0 +24885,56,38,9,0.0 +24885,8,40,40,0.0 +24885,76,18,17,0.0 +24885,30,25.89,11,0.0 +24885,9,97,32,0.0 +24885,63,43.9,40,0.0 +24885,18,62.5,46,0.0 +24885,57,19.5,44,0.0 +24885,17,39,46,0.0 +24885,35,18,23,0.0 +24885,4,22,1,0.0 +24885,41,9.65,7,0.0 +24885,7,30,36,0.0 +24885,32,32,44,0.0 +24885,19,9.2,10,0.0 +24885,55,24,16,0.0 +24885,47,9.5,13,0.0 +24885,27,43.9,19,0.0 +24885,16,17.45,19,0.0 +24885,33,2.5,38,0.0 +24885,75,7.75,35,0.0 +24885,15,15.5,17,0.0 +24885,14,23.25,41,0.0 +24886,4,22,11,0.0 +24886,1,18,22,0.0 +24886,67,14,6,0.0 +24886,5,21.35,9,0.0 +24886,23,9,32,0.0 +24886,73,15,13,0.0 +24886,18,62.5,6,0.0 +24886,61,28.5,13,0.0 +24886,40,18.4,30,0.0 +24886,24,4.5,22,0.0 +24886,54,7.45,12,0.0 +24886,50,16.25,3,0.0 +24886,32,32,38,0.0 +24886,36,19,44,0.0 +24886,35,18,36,0.0 +24886,19,9.2,39,0.0 +24886,64,33.25,16,0.0 +24886,16,17.45,30,0.0 +24886,13,6,11,0.0 +24886,20,81,38,0.0 +24886,22,21,25,0.0 +24886,43,46,1,0.0 +24886,53,32.8,2,0.0 +24886,30,25.89,43,0.0 +24886,72,34.8,8,0.0 +24886,3,10,43,0.0 +24886,8,40,36,0.0 +24886,59,55,42,0.0 +24886,11,21,6,0.0 +24886,6,25,22,0.0 +24886,76,18,7,0.0 +24886,56,38,4,0.0 +24886,74,10,23,0.0 +24886,70,15,42,0.0 +24886,62,49.3,10,0.0 +24886,58,13.25,9,0.0 +24886,17,39,4,0.0 +24886,69,36,32,0.0 +24886,77,13,25,0.0 +24886,75,7.75,6,0.0 +24886,66,17,49,0.0 +24886,55,24,42,0.0 +24886,68,12.5,22,0.0 +24886,57,19.5,9,0.0 +24886,26,31.23,31,0.0 +24886,31,12.5,16,0.0 +24886,33,2.5,13,0.0 +24887,60,34,9,0.0 +24887,37,26,42,0.0 +24887,62,49.3,47,0.0 +24887,18,62.5,38,0.0 +24887,65,21.05,42,0.0 +24887,11,21,34,0.0 +24887,17,39,50,0.0 +24887,44,19.45,21,0.0 +24887,48,12.75,45,0.0 +24887,61,28.5,14,0.0 +24887,21,10,38,0.0 +24887,77,13,39,0.0 +24887,3,10,24,0.0 +24887,28,45.6,35,0.0 +24887,12,38,2,0.0 +24887,1,18,21,0.0 +24887,24,4.5,10,0.0 +24887,36,19,26,0.0 +24887,30,25.89,30,0.0 +24887,70,15,21,0.0 +24887,74,10,30,0.0 +24887,14,23.25,5,0.0 +24887,59,55,46,0.0 +24887,43,46,45,0.0 +24887,27,43.9,50,0.0 +24887,58,13.25,48,0.0 +24887,9,97,39,0.0 +24887,5,21.35,1,0.0 +24887,64,33.25,25,0.0 +24887,29,123.79,39,0.0 +24887,6,25,37,0.0 +24887,13,6,20,0.0 +24887,54,7.45,12,0.0 +24887,68,12.5,20,0.0 +24887,31,12.5,10,0.0 +24887,50,16.25,47,0.0 +24887,52,7,5,0.0 +24887,63,43.9,12,0.0 +24888,56,38,42,0.0 +24888,33,2.5,41,0.0 +24888,51,53,14,0.0 +24888,53,32.8,39,0.0 +24888,16,17.45,38,0.0 +24888,27,43.9,40,0.0 +24888,4,22,5,0.0 +24888,30,25.89,38,0.0 +24888,2,19,20,0.0 +24888,40,18.4,2,0.0 +24888,26,31.23,39,0.0 +24888,9,97,30,0.0 +24888,15,15.5,13,0.0 +24888,23,9,39,0.0 +24888,48,12.75,16,0.0 +24888,75,7.75,4,0.0 +24888,10,31,36,0.0 +24888,19,9.2,29,0.0 +24888,36,19,19,0.0 +24888,43,46,45,0.0 +24888,49,20,48,0.0 +24888,47,9.5,33,0.0 +24888,31,12.5,30,0.0 +24888,70,15,36,0.0 +24888,7,30,9,0.0 +24888,74,10,19,0.0 +24888,12,38,46,0.0 +24888,38,263.5,14,0.0 +24888,34,14,48,0.0 +24888,54,7.45,17,0.0 +24888,50,16.25,25,0.0 +24888,58,13.25,50,0.0 +24888,18,62.5,33,0.0 +24888,21,10,41,0.0 +24888,28,45.6,50,0.0 +24888,61,28.5,32,0.0 +24888,41,9.65,38,0.0 +24888,20,81,15,0.0 +24888,25,14,11,0.0 +24888,29,123.79,42,0.0 +24888,24,4.5,4,0.0 +24888,11,21,27,0.0 +24888,64,33.25,1,0.0 +24888,6,25,12,0.0 +24888,37,26,25,0.0 +24888,3,10,10,0.0 +24888,77,13,9,0.0 +24888,46,12,37,0.0 +24888,5,21.35,10,0.0 +24888,76,18,11,0.0 +24888,63,43.9,18,0.0 +24888,55,24,14,0.0 +24888,65,21.05,30,0.0 +24888,14,23.25,39,0.0 +24888,32,32,33,0.0 +24888,17,39,24,0.0 +24888,68,12.5,19,0.0 +24888,66,17,1,0.0 +24888,35,18,13,0.0 +24889,46,12,49,0.0 +24889,17,39,13,0.0 +24889,52,7,16,0.0 +24889,25,14,39,0.0 +24889,67,14,18,0.0 +24889,44,19.45,12,0.0 +24889,62,49.3,39,0.0 +24889,5,21.35,41,0.0 +24889,55,24,22,0.0 +24889,8,40,27,0.0 +24889,13,6,49,0.0 +24889,63,43.9,22,0.0 +24889,59,55,1,0.0 +24889,53,32.8,8,0.0 +24889,77,13,33,0.0 +24889,32,32,41,0.0 +24889,31,12.5,17,0.0 +24889,69,36,23,0.0 +24889,76,18,42,0.0 +24889,40,18.4,8,0.0 +24889,56,38,40,0.0 +24889,15,15.5,26,0.0 +24889,71,21.5,50,0.0 +24889,70,15,20,0.0 +24889,34,14,22,0.0 +24889,6,25,30,0.0 +24889,57,19.5,16,0.0 +24889,30,25.89,50,0.0 +24889,50,16.25,34,0.0 +24889,38,263.5,19,0.0 +24889,20,81,19,0.0 +24889,60,34,10,0.0 +24889,14,23.25,47,0.0 +24889,10,31,28,0.0 +24889,65,21.05,40,0.0 +24889,47,9.5,29,0.0 +24889,16,17.45,35,0.0 +24889,54,7.45,30,0.0 +24889,12,38,49,0.0 +24889,58,13.25,20,0.0 +24889,18,62.5,44,0.0 +24889,42,14,11,0.0 +24889,41,9.65,4,0.0 +24889,29,123.79,19,0.0 +24889,2,19,9,0.0 +24889,23,9,27,0.0 +24889,36,19,8,0.0 +24889,39,18,36,0.0 +24889,45,9.5,40,0.0 +24889,19,9.2,4,0.0 +24889,43,46,11,0.0 +24889,9,97,1,0.0 +24890,61,28.5,41,0.0 +24890,76,18,42,0.0 +24890,4,22,12,0.0 +24890,72,34.8,17,0.0 +24890,15,15.5,49,0.0 +24890,14,23.25,35,0.0 +24890,51,53,9,0.0 +24890,63,43.9,38,0.0 +24890,9,97,4,0.0 +24890,71,21.5,35,0.0 +24890,75,7.75,11,0.0 +24890,77,13,7,0.0 +24890,65,21.05,1,0.0 +24890,29,123.79,5,0.0 +24890,73,15,23,0.0 +24890,48,12.75,10,0.0 +24890,57,19.5,11,0.0 +24890,56,38,45,0.0 +24890,49,20,30,0.0 +24890,55,24,20,0.0 +24890,11,21,10,0.0 +24890,42,14,45,0.0 +24890,37,26,4,0.0 +24890,46,12,1,0.0 +24890,18,62.5,28,0.0 +24890,22,21,42,0.0 +24890,32,32,44,0.0 +24890,38,263.5,6,0.0 +24890,23,9,27,0.0 +24890,53,32.8,45,0.0 +24890,19,9.2,46,0.0 +24890,60,34,4,0.0 +24890,34,14,9,0.0 +24890,1,18,2,0.0 +24890,59,55,25,0.0 +24890,12,38,17,0.0 +24890,6,25,5,0.0 +24890,45,9.5,19,0.0 +24890,52,7,12,0.0 +24890,17,39,36,0.0 +24890,8,40,36,0.0 +24890,43,46,46,0.0 +24890,67,14,12,0.0 +24890,39,18,7,0.0 +24890,44,19.45,15,0.0 +24890,58,13.25,25,0.0 +24890,5,21.35,49,0.0 +24890,62,49.3,40,0.0 +24890,10,31,50,0.0 +24890,25,14,5,0.0 +24890,66,17,23,0.0 +24890,36,19,14,0.0 +24890,40,18.4,34,0.0 +24890,74,10,35,0.0 +24890,21,10,2,0.0 +24890,33,2.5,18,0.0 +24890,69,36,24,0.0 +24890,13,6,4,0.0 +24890,26,31.23,50,0.0 +24890,2,19,32,0.0 +24890,41,9.65,25,0.0 +24890,70,15,37,0.0 +24890,16,17.45,41,0.0 +24890,50,16.25,39,0.0 +24890,20,81,30,0.0 +24891,68,12.5,30,0.0 +24891,18,62.5,39,0.0 +24891,65,21.05,16,0.0 +24891,51,53,22,0.0 +24891,7,30,37,0.0 +24891,72,34.8,23,0.0 +24891,64,33.25,19,0.0 +24891,53,32.8,37,0.0 +24891,63,43.9,47,0.0 +24891,20,81,7,0.0 +24891,19,9.2,29,0.0 +24891,1,18,33,0.0 +24891,30,25.89,35,0.0 +24891,24,4.5,18,0.0 +24891,22,21,47,0.0 +24891,42,14,6,0.0 +24891,73,15,29,0.0 +24891,11,21,36,0.0 +24891,44,19.45,10,0.0 +24891,28,45.6,35,0.0 +24891,3,10,9,0.0 +24891,36,19,22,0.0 +24891,40,18.4,42,0.0 +24891,45,9.5,38,0.0 +24891,60,34,18,0.0 +24891,14,23.25,49,0.0 +24891,4,22,32,0.0 +24891,58,13.25,7,0.0 +24891,47,9.5,4,0.0 +24891,74,10,35,0.0 +24891,6,25,38,0.0 +24891,17,39,34,0.0 +24891,33,2.5,23,0.0 +24891,23,9,15,0.0 +24891,37,26,39,0.0 +24891,16,17.45,44,0.0 +24891,25,14,15,0.0 +24891,70,15,42,0.0 +24891,21,10,10,0.0 +24891,69,36,38,0.0 +24891,54,7.45,20,0.0 +24891,5,21.35,3,0.0 +24891,46,12,6,0.0 +24891,49,20,14,0.0 +24891,35,18,44,0.0 +24891,77,13,44,0.0 +24891,56,38,44,0.0 +24891,2,19,15,0.0 +24891,8,40,29,0.0 +24891,29,123.79,13,0.0 +24891,38,263.5,22,0.0 +24891,9,97,32,0.0 +24891,15,15.5,32,0.0 +24891,67,14,33,0.0 +24891,39,18,28,0.0 +24891,52,7,31,0.0 +24891,27,43.9,5,0.0 +24891,71,21.5,30,0.0 +24891,34,14,31,0.0 +24891,10,31,46,0.0 +24891,26,31.23,18,0.0 +24891,48,12.75,48,0.0 +24891,61,28.5,29,0.0 +24891,32,32,49,0.0 +24891,59,55,35,0.0 +24891,13,6,27,0.0 +24891,55,24,47,0.0 +24891,50,16.25,46,0.0 +24891,43,46,18,0.0 +24891,66,17,26,0.0 +24891,12,38,6,0.0 +24891,62,49.3,32,0.0 +24891,76,18,38,0.0 +24892,11,21,48,0.0 +24892,70,15,38,0.0 +24892,22,21,50,0.0 +24892,27,43.9,5,0.0 +24892,36,19,16,0.0 +24892,45,9.5,26,0.0 +24892,66,17,36,0.0 +24892,62,49.3,43,0.0 +24892,51,53,33,0.0 +24892,77,13,35,0.0 +24892,37,26,8,0.0 +24892,29,123.79,16,0.0 +24892,41,9.65,20,0.0 +24892,42,14,36,0.0 +24892,31,12.5,39,0.0 +24892,48,12.75,35,0.0 +24892,34,14,14,0.0 +24892,10,31,32,0.0 +24892,8,40,50,0.0 +24892,1,18,25,0.0 +24892,17,39,39,0.0 +24892,18,62.5,20,0.0 +24892,5,21.35,15,0.0 +24892,52,7,46,0.0 +24892,69,36,50,0.0 +24892,50,16.25,11,0.0 +24892,71,21.5,3,0.0 +24893,20,81,46,0.0 +24893,50,16.25,1,0.0 +24893,27,43.9,39,0.0 +24893,8,40,26,0.0 +24893,51,53,42,0.0 +24894,26,31.23,12,0.0 +24894,35,18,33,0.0 +24894,64,33.25,49,0.0 +24894,33,2.5,2,0.0 +24894,39,18,18,0.0 +24894,46,12,21,0.0 +24894,58,13.25,39,0.0 +24894,11,21,37,0.0 +24894,55,24,40,0.0 +24894,21,10,27,0.0 +24894,59,55,24,0.0 +24894,49,20,35,0.0 +24894,70,15,18,0.0 +24894,63,43.9,22,0.0 +24894,1,18,17,0.0 +24894,27,43.9,40,0.0 +24894,45,9.5,21,0.0 +24894,10,31,36,0.0 +24894,68,12.5,16,0.0 +24894,69,36,11,0.0 +24894,38,263.5,22,0.0 +24894,50,16.25,25,0.0 +24894,20,81,14,0.0 +24894,61,28.5,14,0.0 +24894,62,49.3,1,0.0 +24894,22,21,30,0.0 +24894,67,14,27,0.0 +24895,26,31.23,26,0.0 +24895,21,10,7,0.0 +24895,66,17,5,0.0 +24895,24,4.5,20,0.0 +24895,77,13,23,0.0 +24895,35,18,10,0.0 +24895,52,7,7,0.0 +24895,39,18,36,0.0 +24895,23,9,40,0.0 +24895,13,6,13,0.0 +24895,51,53,45,0.0 +24895,56,38,38,0.0 +24895,16,17.45,8,0.0 +24895,45,9.5,34,0.0 +24895,74,10,43,0.0 +24895,44,19.45,31,0.0 +24895,37,26,48,0.0 +24895,1,18,17,0.0 +24895,58,13.25,9,0.0 +24895,55,24,30,0.0 +24895,32,32,38,0.0 +24895,34,14,16,0.0 +24895,76,18,17,0.0 +24895,9,97,7,0.0 +24895,46,12,3,0.0 +24895,8,40,48,0.0 +24895,73,15,7,0.0 +24895,20,81,41,0.0 +24895,38,263.5,23,0.0 +24895,28,45.6,9,0.0 +24895,48,12.75,10,0.0 +24895,12,38,21,0.0 +24895,59,55,22,0.0 +24895,31,12.5,38,0.0 +24895,67,14,26,0.0 +24895,41,9.65,6,0.0 +24895,3,10,25,0.0 +24895,65,21.05,6,0.0 +24895,7,30,14,0.0 +24895,71,21.5,49,0.0 +24896,7,30,46,0.0 +24896,19,9.2,32,0.0 +24896,15,15.5,21,0.0 +24896,10,31,23,0.0 +24896,24,4.5,35,0.0 +24896,75,7.75,34,0.0 +24896,65,21.05,29,0.0 +24896,39,18,20,0.0 +24896,4,22,19,0.0 +24896,55,24,18,0.0 +24896,30,25.89,42,0.0 +24896,42,14,21,0.0 +24896,9,97,12,0.0 +24896,14,23.25,48,0.0 +24896,54,7.45,13,0.0 +24896,70,15,43,0.0 +24896,66,17,11,0.0 +24896,46,12,26,0.0 +24896,62,49.3,20,0.0 +24896,38,263.5,12,0.0 +24896,44,19.45,14,0.0 +24896,12,38,5,0.0 +24896,57,19.5,2,0.0 +24896,56,38,28,0.0 +24896,63,43.9,40,0.0 +24896,6,25,43,0.0 +24896,74,10,13,0.0 +24896,73,15,10,0.0 +24896,29,123.79,15,0.0 +24896,40,18.4,10,0.0 +24896,22,21,21,0.0 +24896,26,31.23,14,0.0 +24896,64,33.25,2,0.0 +24896,23,9,26,0.0 +24896,72,34.8,50,0.0 +24896,20,81,35,0.0 +24896,11,21,40,0.0 +24896,77,13,26,0.0 +24896,35,18,40,0.0 +24896,3,10,4,0.0 +24896,17,39,35,0.0 +24896,18,62.5,47,0.0 +24896,45,9.5,11,0.0 +24896,50,16.25,5,0.0 +24896,43,46,37,0.0 +24896,53,32.8,16,0.0 +24896,27,43.9,39,0.0 +24896,60,34,40,0.0 +24896,32,32,29,0.0 +24896,69,36,44,0.0 +24896,33,2.5,12,0.0 +24896,36,19,39,0.0 +24896,8,40,25,0.0 +24896,68,12.5,28,0.0 +24896,37,26,17,0.0 +24896,1,18,33,0.0 +24896,41,9.65,37,0.0 +24896,16,17.45,31,0.0 +24896,21,10,17,0.0 +24896,51,53,31,0.0 +24896,58,13.25,5,0.0 +24896,5,21.35,36,0.0 +24896,47,9.5,6,0.0 +24896,13,6,27,0.0 +24896,61,28.5,34,0.0 +24896,49,20,37,0.0 +24896,71,21.5,42,0.0 +24896,67,14,42,0.0 +24896,52,7,30,0.0 +24896,2,19,46,0.0 +24896,31,12.5,45,0.0 +24896,59,55,49,0.0 +24896,48,12.75,33,0.0 +24896,76,18,33,0.0 +24897,30,25.89,7,0.0 +24897,65,21.05,33,0.0 +24897,40,18.4,43,0.0 +24897,48,12.75,10,0.0 +24897,66,17,35,0.0 +24897,56,38,25,0.0 +24897,76,18,7,0.0 +24897,21,10,16,0.0 +24897,37,26,50,0.0 +24897,47,9.5,18,0.0 +24897,32,32,12,0.0 +24897,1,18,10,0.0 +24897,33,2.5,19,0.0 +24897,3,10,46,0.0 +24897,54,7.45,40,0.0 +24897,23,9,48,0.0 +24897,38,263.5,35,0.0 +24897,25,14,18,0.0 +24897,11,21,6,0.0 +24897,51,53,14,0.0 +24897,20,81,23,0.0 +24897,36,19,20,0.0 +24897,69,36,48,0.0 +24897,35,18,35,0.0 +24897,34,14,41,0.0 +24897,9,97,24,0.0 +24897,26,31.23,15,0.0 +24897,53,32.8,42,0.0 +24897,14,23.25,15,0.0 +24897,57,19.5,21,0.0 +24897,42,14,38,0.0 +24897,16,17.45,41,0.0 +24897,29,123.79,27,0.0 +24897,12,38,7,0.0 +24897,27,43.9,34,0.0 +24897,31,12.5,46,0.0 +24897,64,33.25,16,0.0 +24897,5,21.35,24,0.0 +24897,68,12.5,39,0.0 +24897,15,15.5,38,0.0 +24897,18,62.5,30,0.0 +24897,43,46,28,0.0 +24897,63,43.9,24,0.0 +24897,19,9.2,6,0.0 +24897,73,15,10,0.0 +24897,46,12,28,0.0 +24897,2,19,28,0.0 +24897,39,18,30,0.0 +24897,61,28.5,9,0.0 +24897,75,7.75,43,0.0 +24897,6,25,31,0.0 +24897,24,4.5,33,0.0 +24897,70,15,19,0.0 +24897,52,7,21,0.0 +24897,67,14,25,0.0 +24897,77,13,19,0.0 +24897,50,16.25,25,0.0 +24897,10,31,35,0.0 +24897,41,9.65,39,0.0 +24897,13,6,48,0.0 +24897,72,34.8,28,0.0 +24897,7,30,44,0.0 +24897,17,39,31,0.0 +24897,71,21.5,32,0.0 +24897,55,24,3,0.0 +24897,8,40,38,0.0 +24897,45,9.5,8,0.0 +24897,58,13.25,25,0.0 +24897,4,22,24,0.0 +24897,62,49.3,33,0.0 +24897,49,20,13,0.0 +24897,28,45.6,3,0.0 +24897,44,19.45,16,0.0 +24897,59,55,34,0.0 +24898,12,38,10,0.0 +24898,16,17.45,37,0.0 +24898,61,28.5,23,0.0 +24898,66,17,36,0.0 +24898,73,15,39,0.0 +24898,64,33.25,19,0.0 +24898,41,9.65,32,0.0 +24898,68,12.5,37,0.0 +24899,9,97,12,0.0 +24899,61,28.5,21,0.0 +24899,37,26,46,0.0 +24899,69,36,17,0.0 +24900,6,25,41,0.0 +24900,30,25.89,39,0.0 +24900,46,12,49,0.0 +24900,34,14,32,0.0 +24900,23,9,44,0.0 +24900,33,2.5,39,0.0 +24900,47,9.5,4,0.0 +24900,38,263.5,21,0.0 +24901,17,39,13,0.0 +24901,67,14,12,0.0 +24901,41,9.65,18,0.0 +24901,8,40,20,0.0 +24901,14,23.25,17,0.0 +24901,72,34.8,16,0.0 +24901,53,32.8,49,0.0 +24901,61,28.5,39,0.0 +24901,77,13,28,0.0 +24901,36,19,8,0.0 +24901,50,16.25,24,0.0 +24901,62,49.3,15,0.0 +24901,76,18,2,0.0 +24901,24,4.5,45,0.0 +24901,73,15,1,0.0 +24901,12,38,25,0.0 +24901,37,26,17,0.0 +24901,3,10,50,0.0 +24901,26,31.23,47,0.0 +24901,19,9.2,2,0.0 +24901,7,30,16,0.0 +24901,31,12.5,25,0.0 +24901,55,24,44,0.0 +24901,56,38,21,0.0 +24901,16,17.45,36,0.0 +24901,9,97,23,0.0 +24901,75,7.75,9,0.0 +24901,48,12.75,50,0.0 +24901,64,33.25,27,0.0 +24901,68,12.5,44,0.0 +24901,60,34,17,0.0 +24901,27,43.9,50,0.0 +24901,32,32,41,0.0 +24901,30,25.89,27,0.0 +24901,35,18,19,0.0 +24902,43,46,20,0.0 +24902,16,17.45,43,0.0 +24902,74,10,42,0.0 +24902,1,18,20,0.0 +24902,13,6,13,0.0 +24902,4,22,16,0.0 +24902,63,43.9,40,0.0 +24902,71,21.5,26,0.0 +24902,61,28.5,20,0.0 +24902,31,12.5,21,0.0 +24902,46,12,32,0.0 +24902,7,30,36,0.0 +24902,32,32,38,0.0 +24902,17,39,8,0.0 +24902,50,16.25,27,0.0 +24902,28,45.6,48,0.0 +24902,65,21.05,46,0.0 +24902,64,33.25,39,0.0 +24902,20,81,20,0.0 +24902,36,19,18,0.0 +24902,29,123.79,26,0.0 +24902,3,10,18,0.0 +24902,8,40,25,0.0 +24902,42,14,15,0.0 +24902,55,24,37,0.0 +24902,52,7,34,0.0 +24902,73,15,6,0.0 +24902,35,18,42,0.0 +24902,37,26,35,0.0 +24902,19,9.2,39,0.0 +24902,47,9.5,24,0.0 +24902,39,18,38,0.0 +24902,6,25,1,0.0 +24902,58,13.25,38,0.0 +24902,62,49.3,50,0.0 +24902,51,53,1,0.0 +24902,59,55,3,0.0 +24902,67,14,1,0.0 +24902,57,19.5,46,0.0 +24902,53,32.8,10,0.0 +24902,26,31.23,19,0.0 +24902,5,21.35,13,0.0 +24902,30,25.89,50,0.0 +24902,77,13,29,0.0 +24902,45,9.5,26,0.0 +24902,18,62.5,47,0.0 +24902,10,31,3,0.0 +24902,40,18.4,42,0.0 +24902,41,9.65,34,0.0 +24902,66,17,2,0.0 +24902,33,2.5,18,0.0 +24902,48,12.75,40,0.0 +24902,38,263.5,2,0.0 +24902,27,43.9,36,0.0 +24902,11,21,26,0.0 +24902,68,12.5,26,0.0 +24902,21,10,1,0.0 +24902,60,34,6,0.0 +24902,25,14,36,0.0 +24902,34,14,9,0.0 +24902,72,34.8,49,0.0 +24902,9,97,45,0.0 +24902,14,23.25,29,0.0 +24902,44,19.45,50,0.0 +24902,76,18,12,0.0 +24902,23,9,8,0.0 +24902,70,15,2,0.0 +24902,15,15.5,15,0.0 +24902,56,38,7,0.0 +24902,2,19,50,0.0 +24902,22,21,8,0.0 +24902,69,36,24,0.0 +24902,12,38,42,0.0 +24902,54,7.45,46,0.0 +24902,24,4.5,21,0.0 +24902,49,20,45,0.0 +24903,20,81,37,0.0 +24903,43,46,39,0.0 +24903,72,34.8,23,0.0 +24903,59,55,40,0.0 +24903,42,14,3,0.0 +24903,3,10,30,0.0 +24903,27,43.9,17,0.0 +24903,25,14,36,0.0 +24903,36,19,43,0.0 +24903,60,34,35,0.0 +24903,49,20,40,0.0 +24903,75,7.75,33,0.0 +24903,55,24,36,0.0 +24903,58,13.25,43,0.0 +24903,19,9.2,8,0.0 +24903,8,40,34,0.0 +24903,77,13,44,0.0 +24903,65,21.05,30,0.0 +24903,61,28.5,6,0.0 +24903,17,39,34,0.0 +24903,67,14,9,0.0 +24903,32,32,5,0.0 +24903,12,38,30,0.0 +24903,22,21,25,0.0 +24903,10,31,13,0.0 +24903,71,21.5,29,0.0 +24903,44,19.45,6,0.0 +24903,69,36,44,0.0 +24903,24,4.5,25,0.0 +24903,76,18,16,0.0 +24903,33,2.5,45,0.0 +24903,1,18,37,0.0 +24903,38,263.5,21,0.0 +24903,26,31.23,16,0.0 +24903,66,17,6,0.0 +24903,15,15.5,44,0.0 +24903,51,53,16,0.0 +24903,53,32.8,38,0.0 +24903,70,15,3,0.0 +24903,21,10,47,0.0 +24903,13,6,29,0.0 +24903,50,16.25,34,0.0 +24903,62,49.3,39,0.0 +24903,57,19.5,18,0.0 +24903,63,43.9,42,0.0 +24903,52,7,10,0.0 +24903,6,25,16,0.0 +24903,39,18,21,0.0 +24903,35,18,50,0.0 +24903,56,38,32,0.0 +24903,28,45.6,22,0.0 +24903,5,21.35,43,0.0 +24903,31,12.5,29,0.0 +24903,73,15,31,0.0 +24903,29,123.79,10,0.0 +24903,45,9.5,21,0.0 +24903,68,12.5,39,0.0 +24903,37,26,9,0.0 +24903,34,14,26,0.0 +24903,16,17.45,42,0.0 +24903,41,9.65,26,0.0 +24903,48,12.75,15,0.0 +24903,40,18.4,25,0.0 +24903,54,7.45,33,0.0 +24903,14,23.25,45,0.0 +24903,47,9.5,21,0.0 +24903,11,21,36,0.0 +24903,2,19,8,0.0 +24903,74,10,4,0.0 +24903,7,30,25,0.0 +24903,46,12,39,0.0 +24903,9,97,22,0.0 +24903,64,33.25,5,0.0 +24903,23,9,11,0.0 +24904,18,62.5,26,0.0 +24904,31,12.5,11,0.0 +24904,3,10,4,0.0 +24904,64,33.25,40,0.0 +24904,57,19.5,35,0.0 +24904,52,7,45,0.0 +24904,49,20,25,0.0 +24904,51,53,13,0.0 +24904,23,9,16,0.0 +24904,58,13.25,8,0.0 +24904,62,49.3,47,0.0 +24904,45,9.5,15,0.0 +24904,68,12.5,26,0.0 +24904,8,40,15,0.0 +24904,76,18,26,0.0 +24904,36,19,40,0.0 +24904,4,22,19,0.0 +24904,47,9.5,43,0.0 +24904,65,21.05,28,0.0 +24904,30,25.89,11,0.0 +24904,74,10,12,0.0 +24904,20,81,44,0.0 +24904,7,30,2,0.0 +24904,61,28.5,18,0.0 +24904,56,38,17,0.0 +24904,63,43.9,21,0.0 +24904,1,18,34,0.0 +24904,35,18,34,0.0 +24904,9,97,3,0.0 +24904,12,38,8,0.0 +24904,13,6,9,0.0 +24904,16,17.45,24,0.0 +24904,42,14,43,0.0 +24904,29,123.79,47,0.0 +24904,26,31.23,46,0.0 +24904,37,26,48,0.0 +24904,10,31,40,0.0 +24904,55,24,30,0.0 +24904,53,32.8,33,0.0 +24904,60,34,3,0.0 +24904,28,45.6,8,0.0 +24904,72,34.8,18,0.0 +24904,24,4.5,37,0.0 +24904,71,21.5,20,0.0 +24904,43,46,2,0.0 +24904,22,21,18,0.0 +24905,23,9,14,0.0 +24905,46,12,48,0.0 +24905,49,20,46,0.0 +24905,45,9.5,40,0.0 +24905,57,19.5,47,0.0 +24905,55,24,25,0.0 +24905,51,53,13,0.0 +24905,48,12.75,37,0.0 +24905,54,7.45,2,0.0 +24905,58,13.25,39,0.0 +24905,70,15,35,0.0 +24905,20,81,36,0.0 +24905,67,14,11,0.0 +24905,64,33.25,45,0.0 +24905,43,46,33,0.0 +24905,26,31.23,36,0.0 +24905,50,16.25,26,0.0 +24905,8,40,2,0.0 +24905,1,18,14,0.0 +24905,63,43.9,50,0.0 +24905,24,4.5,21,0.0 +24905,56,38,23,0.0 +24905,19,9.2,8,0.0 +24905,61,28.5,16,0.0 +24905,68,12.5,4,0.0 +24905,72,34.8,14,0.0 +24905,27,43.9,10,0.0 +24905,4,22,24,0.0 +24905,53,32.8,35,0.0 +24905,35,18,13,0.0 +24905,34,14,10,0.0 +24905,13,6,6,0.0 +24905,7,30,36,0.0 +24905,66,17,48,0.0 +24905,31,12.5,17,0.0 +24905,17,39,16,0.0 +24905,77,13,45,0.0 +24905,69,36,44,0.0 +24905,39,18,14,0.0 +24905,74,10,48,0.0 +24906,46,12,42,0.0 +24906,15,15.5,12,0.0 +24906,4,22,38,0.0 +24906,73,15,36,0.0 +24906,16,17.45,31,0.0 +24906,5,21.35,43,0.0 +24906,66,17,12,0.0 +24906,63,43.9,44,0.0 +24906,11,21,12,0.0 +24906,22,21,25,0.0 +24906,44,19.45,17,0.0 +24906,68,12.5,11,0.0 +24906,77,13,48,0.0 +24906,58,13.25,3,0.0 +24906,50,16.25,16,0.0 +24906,65,21.05,40,0.0 +24906,70,15,13,0.0 +24906,25,14,28,0.0 +24906,29,123.79,23,0.0 +24906,60,34,7,0.0 +24906,1,18,24,0.0 +24906,35,18,9,0.0 +24906,53,32.8,32,0.0 +24906,62,49.3,13,0.0 +24906,26,31.23,7,0.0 +24906,48,12.75,18,0.0 +24906,47,9.5,17,0.0 +24906,38,263.5,13,0.0 +24906,3,10,19,0.0 +24906,17,39,27,0.0 +24906,76,18,24,0.0 +24906,31,12.5,49,0.0 +24906,51,53,35,0.0 +24906,14,23.25,27,0.0 +24906,9,97,15,0.0 +24906,2,19,18,0.0 +24906,34,14,25,0.0 +24906,64,33.25,50,0.0 +24906,59,55,3,0.0 +24906,19,9.2,15,0.0 +24906,21,10,15,0.0 +24906,61,28.5,25,0.0 +24906,39,18,34,0.0 +24906,56,38,2,0.0 +24906,18,62.5,46,0.0 +24906,7,30,27,0.0 +24906,37,26,33,0.0 +24906,33,2.5,37,0.0 +24906,71,21.5,34,0.0 +24906,24,4.5,8,0.0 +24906,20,81,13,0.0 +24906,12,38,14,0.0 +24906,45,9.5,34,0.0 +24906,75,7.75,25,0.0 +24906,41,9.65,15,0.0 +24906,52,7,37,0.0 +24906,43,46,37,0.0 +24906,10,31,31,0.0 +24906,40,18.4,33,0.0 +24906,6,25,3,0.0 +24906,42,14,46,0.0 +24906,67,14,34,0.0 +24906,36,19,33,0.0 +24906,32,32,18,0.0 +24906,54,7.45,5,0.0 +24906,55,24,20,0.0 +24906,23,9,22,0.0 +24906,27,43.9,45,0.0 +24906,72,34.8,8,0.0 +24906,8,40,47,0.0 +24906,28,45.6,28,0.0 +24907,48,12.75,40,0.0 +24907,12,38,1,0.0 +24907,23,9,40,0.0 +24907,8,40,15,0.0 +24907,61,28.5,5,0.0 +24907,24,4.5,19,0.0 +24907,64,33.25,10,0.0 +24907,36,19,46,0.0 +24907,30,25.89,11,0.0 +24907,46,12,49,0.0 +24907,6,25,25,0.0 +24907,32,32,12,0.0 +24907,33,2.5,1,0.0 +24907,55,24,41,0.0 +24907,34,14,47,0.0 +24907,31,12.5,35,0.0 +24907,43,46,7,0.0 +24907,74,10,15,0.0 +24907,69,36,4,0.0 +24907,27,43.9,24,0.0 +24907,56,38,7,0.0 +24907,77,13,24,0.0 +24907,39,18,22,0.0 +24907,50,16.25,33,0.0 +24907,72,34.8,2,0.0 +24907,59,55,4,0.0 +24907,66,17,30,0.0 +24907,22,21,17,0.0 +24907,45,9.5,12,0.0 +24907,25,14,31,0.0 +24907,76,18,49,0.0 +24907,1,18,37,0.0 +24907,11,21,6,0.0 +24907,68,12.5,32,0.0 +24907,16,17.45,14,0.0 +24907,13,6,11,0.0 +24907,71,21.5,14,0.0 +24907,21,10,28,0.0 +24907,75,7.75,26,0.0 +24907,54,7.45,13,0.0 +24907,19,9.2,2,0.0 +24907,3,10,1,0.0 +24907,53,32.8,27,0.0 +24907,73,15,37,0.0 +24907,63,43.9,9,0.0 +24907,67,14,42,0.0 +24907,9,97,49,0.0 +24907,14,23.25,45,0.0 +24907,52,7,25,0.0 +24907,35,18,13,0.0 +24907,20,81,43,0.0 +24908,73,15,21,0.0 +24908,31,12.5,2,0.0 +24908,5,21.35,1,0.0 +24908,19,9.2,8,0.0 +24908,60,34,33,0.0 +24908,35,18,48,0.0 +24908,42,14,1,0.0 +24908,1,18,48,0.0 +24908,52,7,49,0.0 +24908,59,55,13,0.0 +24908,8,40,39,0.0 +24908,76,18,12,0.0 +24908,25,14,39,0.0 +24908,55,24,18,0.0 +24908,44,19.45,43,0.0 +24908,4,22,31,0.0 +24908,46,12,6,0.0 +24908,40,18.4,16,0.0 +24908,71,21.5,32,0.0 +24908,23,9,5,0.0 +24908,69,36,19,0.0 +24908,15,15.5,47,0.0 +24908,61,28.5,23,0.0 +24908,75,7.75,11,0.0 +24908,50,16.25,36,0.0 +24908,11,21,26,0.0 +24908,22,21,30,0.0 +24908,74,10,7,0.0 +24908,77,13,22,0.0 +24908,49,20,26,0.0 +24908,9,97,10,0.0 +24908,13,6,5,0.0 +24908,6,25,18,0.0 +24908,39,18,17,0.0 +24908,14,23.25,14,0.0 +24908,27,43.9,21,0.0 +24908,38,263.5,35,0.0 +24908,26,31.23,22,0.0 +24908,20,81,37,0.0 +24908,10,31,2,0.0 +24908,21,10,41,0.0 +24908,12,38,26,0.0 +24908,24,4.5,16,0.0 +24908,63,43.9,38,0.0 +24908,16,17.45,13,0.0 +24908,53,32.8,31,0.0 +24908,51,53,43,0.0 +24908,68,12.5,32,0.0 +24908,65,21.05,10,0.0 +24908,29,123.79,41,0.0 +24908,67,14,14,0.0 +24908,17,39,22,0.0 +24908,28,45.6,35,0.0 +24908,45,9.5,29,0.0 +24908,2,19,34,0.0 +24908,7,30,47,0.0 +24908,47,9.5,34,0.0 +24908,33,2.5,47,0.0 +24908,57,19.5,34,0.0 +24908,62,49.3,48,0.0 +24908,70,15,28,0.0 +24908,64,33.25,13,0.0 +24908,66,17,23,0.0 +24908,41,9.65,46,0.0 +24909,45,9.5,44,0.0 +24909,13,6,17,0.0 +24910,13,6,11,0.0 +24910,28,45.6,25,0.0 +24910,18,62.5,16,0.0 +24910,63,43.9,46,0.0 +24910,49,20,8,0.0 +24910,17,39,10,0.0 +24910,16,17.45,44,0.0 +24910,68,12.5,12,0.0 +24910,39,18,12,0.0 +24910,57,19.5,20,0.0 +24910,8,40,30,0.0 +24910,41,9.65,25,0.0 +24910,3,10,36,0.0 +24910,2,19,31,0.0 +24910,1,18,9,0.0 +24910,21,10,6,0.0 +24910,71,21.5,16,0.0 +24910,12,38,20,0.0 +24910,36,19,7,0.0 +24910,69,36,34,0.0 +24910,35,18,6,0.0 +24910,32,32,11,0.0 +24910,73,15,22,0.0 +24910,62,49.3,23,0.0 +24910,30,25.89,10,0.0 +24910,27,43.9,12,0.0 +24910,10,31,25,0.0 +24910,53,32.8,10,0.0 +24910,37,26,37,0.0 +24910,67,14,26,0.0 +24910,47,9.5,30,0.0 +24910,59,55,2,0.0 +24910,58,13.25,37,0.0 +24910,29,123.79,16,0.0 +24910,43,46,39,0.0 +24910,52,7,16,0.0 +24910,24,4.5,7,0.0 +24910,23,9,40,0.0 +24910,54,7.45,34,0.0 +24910,11,21,13,0.0 +24910,31,12.5,49,0.0 +24910,44,19.45,28,0.0 +24910,45,9.5,11,0.0 +24910,76,18,14,0.0 +24911,62,49.3,8,0.0 +24911,37,26,46,0.0 +24911,61,28.5,32,0.0 +24911,24,4.5,36,0.0 +24911,58,13.25,28,0.0 +24911,71,21.5,31,0.0 +24911,35,18,31,0.0 +24911,44,19.45,37,0.0 +24911,63,43.9,8,0.0 +24911,64,33.25,35,0.0 +24911,60,34,31,0.0 +24911,4,22,48,0.0 +24911,76,18,15,0.0 +24911,13,6,49,0.0 +24911,22,21,18,0.0 +24911,28,45.6,13,0.0 +24911,29,123.79,9,0.0 +24911,77,13,38,0.0 +24911,12,38,34,0.0 +24911,59,55,50,0.0 +24911,33,2.5,31,0.0 +24911,7,30,12,0.0 +24911,6,25,16,0.0 +24911,3,10,40,0.0 +24911,32,32,42,0.0 +24911,53,32.8,26,0.0 +24911,50,16.25,32,0.0 +24911,14,23.25,14,0.0 +24911,26,31.23,37,0.0 +24911,48,12.75,44,0.0 +24911,42,14,2,0.0 +24911,74,10,33,0.0 +24911,72,34.8,43,0.0 +24911,10,31,15,0.0 +24911,17,39,7,0.0 +24911,8,40,24,0.0 +24911,23,9,28,0.0 +24911,69,36,40,0.0 +24911,47,9.5,8,0.0 +24911,27,43.9,45,0.0 +24911,11,21,48,0.0 +24911,9,97,4,0.0 +24911,57,19.5,10,0.0 +24911,18,62.5,1,0.0 +24911,52,7,33,0.0 +24911,15,15.5,44,0.0 +24911,21,10,37,0.0 +24911,25,14,19,0.0 +24911,68,12.5,4,0.0 +24911,31,12.5,8,0.0 +24911,45,9.5,24,0.0 +24911,70,15,19,0.0 +24911,5,21.35,48,0.0 +24911,43,46,33,0.0 +24911,19,9.2,2,0.0 +24912,72,34.8,1,0.0 +24912,10,31,8,0.0 +24912,56,38,28,0.0 +24912,43,46,49,0.0 +24912,74,10,13,0.0 +24912,63,43.9,37,0.0 +24912,66,17,15,0.0 +24912,37,26,5,0.0 +24912,36,19,45,0.0 +24912,34,14,23,0.0 +24912,22,21,4,0.0 +24912,38,263.5,16,0.0 +24912,26,31.23,4,0.0 +24912,30,25.89,30,0.0 +24912,23,9,25,0.0 +24912,1,18,5,0.0 +24912,2,19,40,0.0 +24912,75,7.75,20,0.0 +24912,76,18,15,0.0 +24912,13,6,33,0.0 +24912,4,22,27,0.0 +24912,15,15.5,3,0.0 +24912,60,34,4,0.0 +24912,45,9.5,45,0.0 +24912,16,17.45,41,0.0 +24912,25,14,48,0.0 +24912,24,4.5,7,0.0 +24912,47,9.5,6,0.0 +24912,58,13.25,10,0.0 +24912,61,28.5,45,0.0 +24912,11,21,19,0.0 +24912,21,10,11,0.0 +24912,54,7.45,6,0.0 +24912,12,38,3,0.0 +24912,44,19.45,14,0.0 +24913,42,14,28,0.0 +24913,40,18.4,12,0.0 +24913,49,20,7,0.0 +24913,58,13.25,3,0.0 +24913,45,9.5,45,0.0 +24913,60,34,11,0.0 +24913,37,26,38,0.0 +24913,72,34.8,48,0.0 +24913,47,9.5,18,0.0 +24913,25,14,30,0.0 +24913,35,18,28,0.0 +24913,30,25.89,24,0.0 +24913,59,55,45,0.0 +24913,46,12,43,0.0 +24913,1,18,1,0.0 +24913,74,10,2,0.0 +24913,33,2.5,49,0.0 +24913,29,123.79,19,0.0 +24913,39,18,21,0.0 +24913,11,21,34,0.0 +24913,73,15,49,0.0 +24913,26,31.23,25,0.0 +24913,77,13,33,0.0 +24913,71,21.5,30,0.0 +24913,62,49.3,42,0.0 +24913,38,263.5,37,0.0 +24913,66,17,43,0.0 +24913,19,9.2,38,0.0 +24913,27,43.9,18,0.0 +24913,28,45.6,44,0.0 +24913,7,30,49,0.0 +24913,75,7.75,38,0.0 +24913,5,21.35,31,0.0 +24913,4,22,34,0.0 +24913,6,25,26,0.0 +24913,14,23.25,45,0.0 +24913,21,10,30,0.0 +24913,23,9,28,0.0 +24913,67,14,27,0.0 +24913,17,39,4,0.0 +24913,51,53,2,0.0 +24913,65,21.05,28,0.0 +24913,57,19.5,5,0.0 +24913,31,12.5,25,0.0 +24913,16,17.45,43,0.0 +24913,69,36,10,0.0 +24913,70,15,42,0.0 +24913,55,24,28,0.0 +24913,63,43.9,41,0.0 +24913,61,28.5,14,0.0 +24914,34,14,10,0.0 +24914,44,19.45,38,0.0 +24914,69,36,47,0.0 +24914,64,33.25,44,0.0 +24914,13,6,50,0.0 +24914,57,19.5,31,0.0 +24914,35,18,25,0.0 +24914,1,18,7,0.0 +24914,49,20,50,0.0 +24914,21,10,46,0.0 +24914,38,263.5,26,0.0 +24914,31,12.5,24,0.0 +24914,68,12.5,21,0.0 +24914,33,2.5,2,0.0 +24914,41,9.65,1,0.0 +24914,62,49.3,9,0.0 +24914,55,24,15,0.0 +24914,7,30,43,0.0 +24914,17,39,1,0.0 +24914,58,13.25,44,0.0 +24914,56,38,39,0.0 +24914,51,53,5,0.0 +24914,5,21.35,8,0.0 +24914,28,45.6,37,0.0 +24914,3,10,18,0.0 +24914,70,15,16,0.0 +24914,60,34,13,0.0 +24914,6,25,26,0.0 +24914,22,21,36,0.0 +24914,75,7.75,1,0.0 +24914,53,32.8,47,0.0 +24914,12,38,3,0.0 +24914,23,9,12,0.0 +24914,45,9.5,38,0.0 +24914,27,43.9,4,0.0 +24914,46,12,27,0.0 +24915,55,24,27,0.0 +24915,54,7.45,4,0.0 +24915,49,20,38,0.0 +24915,13,6,25,0.0 +24915,28,45.6,50,0.0 +24915,75,7.75,36,0.0 +24915,48,12.75,16,0.0 +24915,45,9.5,20,0.0 +24915,29,123.79,14,0.0 +24915,36,19,38,0.0 +24915,67,14,18,0.0 +24915,40,18.4,28,0.0 +24915,20,81,12,0.0 +24915,59,55,48,0.0 +24915,66,17,38,0.0 +24915,64,33.25,34,0.0 +24915,77,13,2,0.0 +24915,30,25.89,47,0.0 +24915,21,10,12,0.0 +24915,35,18,17,0.0 +24915,57,19.5,25,0.0 +24915,58,13.25,21,0.0 +24915,56,38,41,0.0 +24915,19,9.2,6,0.0 +24915,10,31,13,0.0 +24915,5,21.35,28,0.0 +24915,12,38,48,0.0 +24915,34,14,19,0.0 +24915,42,14,36,0.0 +24915,70,15,26,0.0 +24915,63,43.9,27,0.0 +24915,39,18,27,0.0 +24916,3,10,12,0.0 +24916,19,9.2,27,0.0 +24916,67,14,15,0.0 +24916,62,49.3,9,0.0 +24916,52,7,42,0.0 +24916,27,43.9,17,0.0 +24916,49,20,48,0.0 +24916,58,13.25,8,0.0 +24916,25,14,10,0.0 +24916,5,21.35,46,0.0 +24916,17,39,8,0.0 +24916,68,12.5,14,0.0 +24916,1,18,17,0.0 +24916,74,10,45,0.0 +24916,7,30,47,0.0 +24916,48,12.75,34,0.0 +24916,22,21,35,0.0 +24916,65,21.05,6,0.0 +24916,13,6,9,0.0 +24916,31,12.5,35,0.0 +24916,40,18.4,45,0.0 +24916,42,14,28,0.0 +24916,50,16.25,33,0.0 +24916,63,43.9,18,0.0 +24916,76,18,39,0.0 +24916,32,32,13,0.0 +24916,29,123.79,14,0.0 +24916,35,18,47,0.0 +24916,20,81,8,0.0 +24916,69,36,25,0.0 +24916,45,9.5,45,0.0 +24916,9,97,17,0.0 +24916,41,9.65,18,0.0 +24916,55,24,49,0.0 +24916,47,9.5,16,0.0 +24916,8,40,15,0.0 +24916,60,34,49,0.0 +24917,18,62.5,20,0.0 +24917,32,32,23,0.0 +24917,54,7.45,50,0.0 +24917,39,18,24,0.0 +24917,44,19.45,16,0.0 +24917,53,32.8,22,0.0 +24917,4,22,42,0.0 +24917,7,30,12,0.0 +24917,66,17,20,0.0 +24917,55,24,29,0.0 +24917,10,31,6,0.0 +24917,57,19.5,16,0.0 +24917,36,19,38,0.0 +24917,74,10,47,0.0 +24917,8,40,1,0.0 +24917,31,12.5,31,0.0 +24917,27,43.9,36,0.0 +24917,30,25.89,42,0.0 +24917,25,14,29,0.0 +24917,72,34.8,8,0.0 +24917,61,28.5,15,0.0 +24917,28,45.6,46,0.0 +24917,42,14,8,0.0 +24918,49,20,18,0.0 +24918,37,26,25,0.0 +24918,39,18,1,0.0 +24918,6,25,35,0.0 +24918,67,14,35,0.0 +24918,7,30,30,0.0 +24918,76,18,40,0.0 +24918,3,10,43,0.0 +24918,36,19,45,0.0 +24919,11,21,45,0.0 +24919,48,12.75,31,0.0 +24919,69,36,24,0.0 +24919,15,15.5,20,0.0 +24919,59,55,32,0.0 +24919,20,81,9,0.0 +24919,28,45.6,17,0.0 +24919,73,15,28,0.0 +24919,30,25.89,8,0.0 +24919,34,14,19,0.0 +24919,37,26,7,0.0 +24919,58,13.25,11,0.0 +24919,72,34.8,26,0.0 +24919,61,28.5,1,0.0 +24919,16,17.45,23,0.0 +24919,62,49.3,4,0.0 +24919,43,46,45,0.0 +24919,25,14,11,0.0 +24919,42,14,30,0.0 +24919,9,97,1,0.0 +24919,71,21.5,25,0.0 +24919,24,4.5,43,0.0 +24919,17,39,25,0.0 +24919,33,2.5,29,0.0 +24919,77,13,48,0.0 +24919,46,12,36,0.0 +24919,35,18,12,0.0 +24919,13,6,6,0.0 +24919,53,32.8,6,0.0 +24919,41,9.65,8,0.0 +24919,56,38,28,0.0 +24919,23,9,46,0.0 +24919,44,19.45,40,0.0 +24919,52,7,47,0.0 +24919,47,9.5,6,0.0 +24919,70,15,31,0.0 +24919,29,123.79,30,0.0 +24919,26,31.23,43,0.0 +24919,65,21.05,34,0.0 +24919,18,62.5,6,0.0 +24919,14,23.25,35,0.0 +24919,31,12.5,47,0.0 +24920,35,18,45,0.0 +24920,59,55,37,0.0 +24920,36,19,39,0.0 +24920,74,10,3,0.0 +24920,56,38,3,0.0 +24920,37,26,9,0.0 +24920,65,21.05,26,0.0 +24921,65,21.05,2,0.0 +24921,59,55,29,0.0 +24921,8,40,19,0.0 +24921,24,4.5,33,0.0 +24921,15,15.5,14,0.0 +24921,18,62.5,1,0.0 +24921,76,18,14,0.0 +24921,73,15,5,0.0 +24921,57,19.5,10,0.0 +24921,39,18,20,0.0 +24921,22,21,29,0.0 +24921,77,13,50,0.0 +24921,55,24,41,0.0 +24921,23,9,19,0.0 +24921,6,25,18,0.0 +24921,7,30,41,0.0 +24921,36,19,11,0.0 +24921,58,13.25,40,0.0 +24921,54,7.45,2,0.0 +24921,11,21,47,0.0 +24921,64,33.25,24,0.0 +24921,25,14,44,0.0 +24921,33,2.5,14,0.0 +24921,52,7,20,0.0 +24921,42,14,18,0.0 +24921,47,9.5,21,0.0 +24921,41,9.65,42,0.0 +24921,72,34.8,50,0.0 +24921,12,38,35,0.0 +24921,56,38,30,0.0 +24921,69,36,16,0.0 +24921,61,28.5,43,0.0 +24921,60,34,39,0.0 +24921,51,53,29,0.0 +24921,21,10,40,0.0 +24921,40,18.4,9,0.0 +24921,48,12.75,21,0.0 +24921,43,46,39,0.0 +24921,53,32.8,13,0.0 +24921,34,14,24,0.0 +24921,26,31.23,9,0.0 +24921,13,6,41,0.0 +24921,30,25.89,50,0.0 +24921,16,17.45,9,0.0 +24922,45,9.5,35,0.0 +24922,47,9.5,24,0.0 +24922,38,263.5,19,0.0 +24922,60,34,27,0.0 +24922,40,18.4,18,0.0 +24922,53,32.8,2,0.0 +24922,55,24,48,0.0 +24922,3,10,29,0.0 +24922,8,40,48,0.0 +24922,72,34.8,50,0.0 +24922,5,21.35,7,0.0 +24922,68,12.5,31,0.0 +24922,44,19.45,32,0.0 +24922,51,53,2,0.0 +24922,18,62.5,36,0.0 +24922,66,17,41,0.0 +24922,7,30,50,0.0 +24922,22,21,47,0.0 +24923,5,21.35,29,0.0 +24923,75,7.75,30,0.0 +24923,30,25.89,49,0.0 +24923,55,24,2,0.0 +24923,28,45.6,46,0.0 +24923,21,10,1,0.0 +24923,13,6,35,0.0 +24923,54,7.45,5,0.0 +24923,32,32,39,0.0 +24923,9,97,33,0.0 +24923,45,9.5,47,0.0 +24923,33,2.5,6,0.0 +24923,27,43.9,47,0.0 +24923,7,30,45,0.0 +24923,64,33.25,47,0.0 +24923,72,34.8,45,0.0 +24923,59,55,26,0.0 +24923,35,18,27,0.0 +24923,15,15.5,31,0.0 +24923,50,16.25,22,0.0 +24923,65,21.05,36,0.0 +24923,16,17.45,19,0.0 +24923,26,31.23,49,0.0 +24923,56,38,20,0.0 +24923,17,39,21,0.0 +24923,3,10,39,0.0 +24923,58,13.25,9,0.0 +24923,46,12,39,0.0 +24923,24,4.5,11,0.0 +24923,52,7,40,0.0 +24923,42,14,38,0.0 +24923,23,9,4,0.0 +24923,43,46,14,0.0 +24924,50,16.25,9,0.0 +24924,76,18,17,0.0 +24924,17,39,42,0.0 +24924,39,18,14,0.0 +24924,52,7,38,0.0 +24924,5,21.35,9,0.0 +24924,4,22,7,0.0 +24924,45,9.5,42,0.0 +24924,15,15.5,11,0.0 +24924,3,10,48,0.0 +24924,40,18.4,19,0.0 +24924,14,23.25,14,0.0 +24924,25,14,13,0.0 +24924,77,13,7,0.0 +24925,62,49.3,13,0.0 +24925,41,9.65,45,0.0 +24925,30,25.89,11,0.0 +24925,70,15,34,0.0 +24925,74,10,26,0.0 +24925,1,18,46,0.0 +24925,9,97,47,0.0 +24925,73,15,8,0.0 +24925,22,21,13,0.0 +24925,5,21.35,28,0.0 +24925,72,34.8,43,0.0 +24925,31,12.5,39,0.0 +24925,37,26,39,0.0 +24925,45,9.5,45,0.0 +24925,33,2.5,49,0.0 +24925,7,30,8,0.0 +24925,17,39,30,0.0 +24925,10,31,49,0.0 +24925,58,13.25,31,0.0 +24925,49,20,18,0.0 +24925,26,31.23,11,0.0 +24925,64,33.25,50,0.0 +24926,62,49.3,41,0.0 +24926,39,18,5,0.0 +24926,46,12,11,0.0 +24926,58,13.25,35,0.0 +24926,9,97,26,0.0 +24926,61,28.5,35,0.0 +24926,4,22,27,0.0 +24926,68,12.5,27,0.0 +24926,8,40,13,0.0 +24926,59,55,30,0.0 +24926,21,10,43,0.0 +24926,44,19.45,19,0.0 +24926,75,7.75,15,0.0 +24926,45,9.5,3,0.0 +24926,50,16.25,18,0.0 +24926,30,25.89,7,0.0 +24926,23,9,36,0.0 +24926,63,43.9,7,0.0 +24926,60,34,21,0.0 +24926,20,81,2,0.0 +24926,55,24,13,0.0 +24926,74,10,20,0.0 +24926,7,30,46,0.0 +24926,35,18,46,0.0 +24926,36,19,41,0.0 +24926,41,9.65,17,0.0 +24926,51,53,46,0.0 +24926,42,14,15,0.0 +24926,54,7.45,25,0.0 +24926,77,13,35,0.0 +24926,6,25,26,0.0 +24926,3,10,42,0.0 +24926,11,21,18,0.0 +24926,1,18,3,0.0 +24926,10,31,43,0.0 +24926,49,20,35,0.0 +24926,27,43.9,20,0.0 +24926,52,7,12,0.0 +24926,53,32.8,10,0.0 +24926,76,18,27,0.0 +24926,67,14,9,0.0 +24926,57,19.5,30,0.0 +24926,26,31.23,29,0.0 +24926,28,45.6,30,0.0 +24926,72,34.8,10,0.0 +24926,2,19,47,0.0 +24926,48,12.75,18,0.0 +24926,19,9.2,19,0.0 +24926,18,62.5,31,0.0 +24926,71,21.5,27,0.0 +24926,34,14,20,0.0 +24926,69,36,31,0.0 +24926,22,21,41,0.0 +24926,64,33.25,45,0.0 +24926,73,15,30,0.0 +24926,24,4.5,35,0.0 +24926,14,23.25,4,0.0 +24926,40,18.4,45,0.0 +24926,38,263.5,47,0.0 +24926,65,21.05,45,0.0 +24926,66,17,5,0.0 +24926,43,46,42,0.0 +24926,13,6,5,0.0 +24926,16,17.45,21,0.0 +24926,17,39,26,0.0 +24926,47,9.5,10,0.0 +24926,56,38,13,0.0 +24926,70,15,10,0.0 +24926,12,38,46,0.0 +24926,29,123.79,43,0.0 +24926,5,21.35,18,0.0 +24926,33,2.5,17,0.0 +24926,31,12.5,46,0.0 +24926,37,26,30,0.0 +24927,33,2.5,5,0.0 +24927,72,34.8,26,0.0 +24927,46,12,49,0.0 +24927,48,12.75,41,0.0 +24927,40,18.4,33,0.0 +24927,25,14,25,0.0 +24927,20,81,29,0.0 +24927,43,46,8,0.0 +24927,4,22,15,0.0 +24927,36,19,45,0.0 +24927,15,15.5,50,0.0 +24927,37,26,49,0.0 +24927,17,39,20,0.0 +24927,27,43.9,16,0.0 +24927,41,9.65,40,0.0 +24927,9,97,4,0.0 +24927,1,18,18,0.0 +24927,55,24,2,0.0 +24927,22,21,14,0.0 +24927,60,34,38,0.0 +24927,42,14,47,0.0 +24927,63,43.9,23,0.0 +24927,68,12.5,36,0.0 +24927,16,17.45,47,0.0 +24927,32,32,48,0.0 +24927,58,13.25,35,0.0 +24927,50,16.25,11,0.0 +24927,77,13,2,0.0 +24927,39,18,39,0.0 +24927,64,33.25,39,0.0 +24927,26,31.23,14,0.0 +24927,54,7.45,21,0.0 +24927,74,10,35,0.0 +24927,52,7,49,0.0 +24927,66,17,20,0.0 +24927,34,14,32,0.0 +24927,29,123.79,17,0.0 +24927,62,49.3,22,0.0 +24927,61,28.5,10,0.0 +24927,3,10,42,0.0 +24927,76,18,5,0.0 +24927,53,32.8,18,0.0 +24927,24,4.5,47,0.0 +24927,38,263.5,22,0.0 +24927,14,23.25,34,0.0 +24927,49,20,1,0.0 +24927,45,9.5,33,0.0 +24927,13,6,17,0.0 +24927,51,53,13,0.0 +24927,31,12.5,14,0.0 +24927,75,7.75,30,0.0 +24927,35,18,49,0.0 +24927,73,15,39,0.0 +24927,59,55,16,0.0 +24927,18,62.5,48,0.0 +24928,52,7,14,0.0 +24928,63,43.9,30,0.0 +24928,56,38,48,0.0 +24928,35,18,8,0.0 +24928,75,7.75,48,0.0 +24928,44,19.45,50,0.0 +24928,25,14,45,0.0 +24928,23,9,13,0.0 +24928,16,17.45,34,0.0 +24928,15,15.5,8,0.0 +24928,40,18.4,20,0.0 +24928,6,25,39,0.0 +24928,13,6,1,0.0 +24928,5,21.35,46,0.0 +24928,43,46,39,0.0 +24928,42,14,6,0.0 +24928,71,21.5,47,0.0 +24928,77,13,40,0.0 +24928,7,30,15,0.0 +24928,39,18,42,0.0 +24928,65,21.05,47,0.0 +24928,17,39,9,0.0 +24928,29,123.79,45,0.0 +24928,73,15,3,0.0 +24928,49,20,25,0.0 +24928,10,31,25,0.0 +24928,3,10,40,0.0 +24928,34,14,39,0.0 +24928,4,22,16,0.0 +24928,57,19.5,29,0.0 +24928,51,53,27,0.0 +24928,68,12.5,20,0.0 +24928,32,32,36,0.0 +24928,24,4.5,45,0.0 +24928,2,19,7,0.0 +24928,59,55,44,0.0 +24928,64,33.25,43,0.0 +24928,66,17,15,0.0 +24928,38,263.5,39,0.0 +24928,22,21,41,0.0 +24928,33,2.5,15,0.0 +24928,9,97,13,0.0 +24928,62,49.3,23,0.0 +24928,70,15,27,0.0 +24928,26,31.23,24,0.0 +24928,53,32.8,9,0.0 +24928,37,26,26,0.0 +24928,21,10,45,0.0 +24928,54,7.45,5,0.0 +24928,11,21,34,0.0 +24928,69,36,1,0.0 +24928,41,9.65,17,0.0 +24928,50,16.25,37,0.0 +24928,20,81,29,0.0 +24928,67,14,32,0.0 +24928,76,18,34,0.0 +24928,31,12.5,38,0.0 +24928,47,9.5,38,0.0 +24928,61,28.5,43,0.0 +24928,60,34,11,0.0 +24929,46,12,31,0.0 +24929,35,18,35,0.0 +24929,52,7,18,0.0 +24929,66,17,25,0.0 +24929,6,25,2,0.0 +24929,15,15.5,36,0.0 +24929,26,31.23,41,0.0 +24929,68,12.5,42,0.0 +24929,39,18,24,0.0 +24929,4,22,13,0.0 +24929,17,39,40,0.0 +24929,12,38,19,0.0 +24929,51,53,31,0.0 +24929,61,28.5,30,0.0 +24929,47,9.5,15,0.0 +24929,38,263.5,32,0.0 +24929,42,14,17,0.0 +24929,30,25.89,1,0.0 +24929,2,19,39,0.0 +24929,10,31,3,0.0 +24929,77,13,48,0.0 +24929,25,14,21,0.0 +24929,76,18,8,0.0 +24929,44,19.45,11,0.0 +24929,29,123.79,9,0.0 +24929,65,21.05,44,0.0 +24929,56,38,28,0.0 +24929,37,26,17,0.0 +24929,60,34,28,0.0 +24929,67,14,18,0.0 +24929,64,33.25,9,0.0 +24929,18,62.5,2,0.0 +24929,55,24,24,0.0 +24929,62,49.3,45,0.0 +24929,69,36,28,0.0 +24929,34,14,12,0.0 +24929,49,20,23,0.0 +24929,9,97,32,0.0 +24929,75,7.75,18,0.0 +24929,57,19.5,34,0.0 +24929,50,16.25,12,0.0 +24929,74,10,31,0.0 +24929,53,32.8,22,0.0 +24929,5,21.35,5,0.0 +24929,28,45.6,15,0.0 +24929,63,43.9,14,0.0 +24929,43,46,17,0.0 +24929,19,9.2,36,0.0 +24929,8,40,42,0.0 +24929,20,81,47,0.0 +24929,1,18,48,0.0 +24929,41,9.65,2,0.0 +24929,72,34.8,28,0.0 +24929,70,15,25,0.0 +24929,33,2.5,44,0.0 +24929,14,23.25,37,0.0 +24929,7,30,9,0.0 +24929,58,13.25,48,0.0 +24929,54,7.45,46,0.0 +24929,32,32,11,0.0 +24929,59,55,16,0.0 +24929,73,15,27,0.0 +24929,48,12.75,27,0.0 +24929,31,12.5,10,0.0 +24929,22,21,37,0.0 +24929,16,17.45,34,0.0 +24930,60,34,48,0.0 +24930,16,17.45,37,0.0 +24930,12,38,6,0.0 +24930,52,7,32,0.0 +24930,53,32.8,5,0.0 +24930,32,32,43,0.0 +24930,48,12.75,26,0.0 +24930,49,20,40,0.0 +24930,72,34.8,37,0.0 +24930,2,19,10,0.0 +24930,27,43.9,13,0.0 +24930,10,31,30,0.0 +24930,71,21.5,41,0.0 +24930,43,46,43,0.0 +24930,56,38,9,0.0 +24930,37,26,33,0.0 +24930,39,18,33,0.0 +24930,11,21,36,0.0 +24930,20,81,42,0.0 +24930,22,21,7,0.0 +24930,62,49.3,26,0.0 +24931,22,21,3,0.0 +24931,14,23.25,48,0.0 +24931,18,62.5,13,0.0 +24931,38,263.5,30,0.0 +24931,50,16.25,13,0.0 +24931,66,17,49,0.0 +24931,52,7,45,0.0 +24931,33,2.5,39,0.0 +24931,43,46,9,0.0 +24931,62,49.3,45,0.0 +24931,26,31.23,2,0.0 +24931,48,12.75,47,0.0 +24931,21,10,17,0.0 +24931,1,18,26,0.0 +24931,2,19,7,0.0 +24931,8,40,47,0.0 +24931,11,21,39,0.0 +24931,70,15,48,0.0 +24931,3,10,8,0.0 +24931,59,55,18,0.0 +24931,64,33.25,11,0.0 +24931,57,19.5,34,0.0 +24931,61,28.5,33,0.0 +24931,20,81,37,0.0 +24931,46,12,11,0.0 +24931,58,13.25,43,0.0 +24931,67,14,32,0.0 +24931,6,25,38,0.0 +24931,34,14,18,0.0 +24931,71,21.5,39,0.0 +24931,7,30,45,0.0 +24931,77,13,34,0.0 +24931,16,17.45,42,0.0 +24931,76,18,42,0.0 +24931,32,32,43,0.0 +24931,42,14,42,0.0 +24931,24,4.5,17,0.0 +24931,63,43.9,27,0.0 +24931,44,19.45,42,0.0 +24931,12,38,36,0.0 +24931,60,34,43,0.0 +24931,23,9,28,0.0 +24931,75,7.75,34,0.0 +24931,28,45.6,37,0.0 +24931,29,123.79,4,0.0 +24931,53,32.8,39,0.0 +24931,55,24,34,0.0 +24931,54,7.45,30,0.0 +24931,68,12.5,47,0.0 +24931,13,6,39,0.0 +24932,24,4.5,6,0.0 +24932,15,15.5,24,0.0 +24932,52,7,4,0.0 +24932,12,38,48,0.0 +24932,17,39,30,0.0 +24932,21,10,11,0.0 +24932,16,17.45,9,0.0 +24932,14,23.25,43,0.0 +24932,31,12.5,16,0.0 +24932,72,34.8,17,0.0 +24932,51,53,29,0.0 +24932,38,263.5,43,0.0 +24932,13,6,41,0.0 +24932,42,14,14,0.0 +24932,45,9.5,28,0.0 +24932,6,25,12,0.0 +24932,5,21.35,24,0.0 +24932,25,14,47,0.0 +24932,20,81,6,0.0 +24932,70,15,15,0.0 +24932,65,21.05,38,0.0 +24932,10,31,31,0.0 +24932,49,20,12,0.0 +24932,57,19.5,16,0.0 +24932,73,15,39,0.0 +24932,4,22,27,0.0 +24932,8,40,23,0.0 +24933,16,17.45,42,0.0 +24933,73,15,4,0.0 +24933,41,9.65,17,0.0 +24933,65,21.05,39,0.0 +24933,22,21,41,0.0 +24933,5,21.35,46,0.0 +24933,34,14,46,0.0 +24933,48,12.75,41,0.0 +24933,9,97,48,0.0 +24933,69,36,47,0.0 +24933,66,17,7,0.0 +24933,49,20,36,0.0 +24933,6,25,25,0.0 +24933,53,32.8,20,0.0 +24933,31,12.5,47,0.0 +24933,45,9.5,28,0.0 +24933,7,30,43,0.0 +24933,62,49.3,39,0.0 +24933,36,19,34,0.0 +24933,15,15.5,10,0.0 +24933,27,43.9,20,0.0 +24933,39,18,28,0.0 +24933,51,53,12,0.0 +24933,18,62.5,39,0.0 +24933,14,23.25,18,0.0 +24933,57,19.5,48,0.0 +24933,47,9.5,43,0.0 +24933,11,21,30,0.0 +24933,26,31.23,29,0.0 +24933,28,45.6,14,0.0 +24933,40,18.4,17,0.0 +24933,17,39,28,0.0 +24933,20,81,1,0.0 +24933,74,10,34,0.0 +24933,4,22,22,0.0 +24933,35,18,34,0.0 +24933,72,34.8,34,0.0 +24933,21,10,39,0.0 +24933,52,7,48,0.0 +24933,33,2.5,38,0.0 +24933,23,9,10,0.0 +24933,76,18,38,0.0 +24933,55,24,15,0.0 +24933,38,263.5,30,0.0 +24933,64,33.25,49,0.0 +24933,68,12.5,31,0.0 +24933,1,18,39,0.0 +24933,56,38,28,0.0 +24934,46,12,35,0.0 +24934,73,15,31,0.0 +24934,77,13,18,0.0 +24934,4,22,19,0.0 +24934,48,12.75,40,0.0 +24934,58,13.25,50,0.0 +24934,22,21,16,0.0 +24934,28,45.6,25,0.0 +24934,67,14,7,0.0 +24934,57,19.5,33,0.0 +24934,45,9.5,31,0.0 +24934,54,7.45,6,0.0 +24934,30,25.89,27,0.0 +24934,62,49.3,38,0.0 +24934,11,21,22,0.0 +24934,61,28.5,10,0.0 +24934,29,123.79,32,0.0 +24934,64,33.25,26,0.0 +24934,9,97,12,0.0 +24934,42,14,22,0.0 +24934,2,19,26,0.0 +24934,76,18,3,0.0 +24934,12,38,42,0.0 +24934,56,38,45,0.0 +24934,7,30,17,0.0 +24934,69,36,12,0.0 +24934,66,17,8,0.0 +24934,70,15,28,0.0 +24934,36,19,25,0.0 +24934,16,17.45,29,0.0 +24934,26,31.23,27,0.0 +24934,1,18,39,0.0 +24934,68,12.5,50,0.0 +24934,53,32.8,9,0.0 +24934,24,4.5,40,0.0 +24935,23,9,23,0.0 +24935,65,21.05,15,0.0 +24935,35,18,20,0.0 +24935,55,24,38,0.0 +24935,6,25,43,0.0 +24935,46,12,9,0.0 +24935,57,19.5,43,0.0 +24935,76,18,45,0.0 +24935,58,13.25,36,0.0 +24935,3,10,36,0.0 +24935,33,2.5,47,0.0 +24935,18,62.5,25,0.0 +24935,36,19,29,0.0 +24935,75,7.75,25,0.0 +24935,52,7,44,0.0 +24935,30,25.89,33,0.0 +24935,24,4.5,3,0.0 +24935,8,40,13,0.0 +24935,47,9.5,9,0.0 +24935,66,17,27,0.0 +24935,48,12.75,9,0.0 +24935,28,45.6,33,0.0 +24935,38,263.5,35,0.0 +24935,69,36,24,0.0 +24935,60,34,50,0.0 +24935,50,16.25,50,0.0 +24935,73,15,32,0.0 +24935,61,28.5,32,0.0 +24935,13,6,30,0.0 +24935,63,43.9,39,0.0 +24935,20,81,47,0.0 +24935,67,14,20,0.0 +24935,19,9.2,26,0.0 +24935,25,14,48,0.0 +24935,37,26,35,0.0 +24935,70,15,37,0.0 +24935,44,19.45,22,0.0 +24935,49,20,48,0.0 +24935,74,10,21,0.0 +24935,10,31,17,0.0 +24935,15,15.5,16,0.0 +24935,54,7.45,40,0.0 +24935,64,33.25,26,0.0 +24935,45,9.5,22,0.0 +24935,42,14,9,0.0 +24935,31,12.5,49,0.0 +24935,17,39,38,0.0 +24935,72,34.8,2,0.0 +24935,11,21,30,0.0 +24935,1,18,12,0.0 +24935,2,19,28,0.0 +24935,32,32,24,0.0 +24935,62,49.3,8,0.0 +24935,68,12.5,5,0.0 +24935,7,30,33,0.0 +24935,21,10,37,0.0 +24935,29,123.79,8,0.0 +24936,19,9.2,23,0.0 +24936,62,49.3,39,0.0 +24936,25,14,1,0.0 +24936,8,40,48,0.0 +24936,69,36,11,0.0 +24936,41,9.65,11,0.0 +24936,15,15.5,23,0.0 +24936,24,4.5,31,0.0 +24936,59,55,36,0.0 +24936,76,18,5,0.0 +24936,23,9,25,0.0 +24936,73,15,33,0.0 +24936,4,22,21,0.0 +24936,74,10,50,0.0 +24936,22,21,44,0.0 +24936,32,32,2,0.0 +24936,71,21.5,28,0.0 +24936,45,9.5,27,0.0 +24936,28,45.6,25,0.0 +24936,9,97,35,0.0 +24936,14,23.25,48,0.0 +24936,77,13,12,0.0 +24936,67,14,47,0.0 +24936,36,19,5,0.0 +24936,44,19.45,28,0.0 +24936,57,19.5,6,0.0 +24936,31,12.5,45,0.0 +24936,54,7.45,19,0.0 +24936,1,18,34,0.0 +24936,43,46,4,0.0 +24936,70,15,24,0.0 +24936,37,26,4,0.0 +24936,3,10,11,0.0 +24936,53,32.8,34,0.0 +24936,21,10,35,0.0 +24936,47,9.5,14,0.0 +24936,68,12.5,17,0.0 +24936,51,53,30,0.0 +24936,52,7,8,0.0 +24936,66,17,47,0.0 +24936,48,12.75,21,0.0 +24936,46,12,42,0.0 +24936,35,18,43,0.0 +24936,30,25.89,36,0.0 +24936,26,31.23,15,0.0 +24937,52,7,22,0.0 +24937,13,6,34,0.0 +24937,54,7.45,46,0.0 +24937,9,97,40,0.0 +24937,21,10,18,0.0 +24937,68,12.5,25,0.0 +24937,47,9.5,35,0.0 +24937,15,15.5,3,0.0 +24937,34,14,35,0.0 +24937,6,25,46,0.0 +24937,65,21.05,34,0.0 +24937,10,31,39,0.0 +24937,36,19,48,0.0 +24937,12,38,48,0.0 +24937,51,53,19,0.0 +24937,55,24,25,0.0 +24937,66,17,16,0.0 +24937,71,21.5,10,0.0 +24937,14,23.25,15,0.0 +24937,30,25.89,2,0.0 +24937,5,21.35,34,0.0 +24937,39,18,18,0.0 +24937,57,19.5,9,0.0 +24937,23,9,6,0.0 +24937,74,10,15,0.0 +24937,75,7.75,27,0.0 +24937,58,13.25,19,0.0 +24938,44,19.45,11,0.0 +24938,36,19,20,0.0 +24938,32,32,10,0.0 +24938,35,18,35,0.0 +24938,11,21,35,0.0 +24938,17,39,14,0.0 +24938,24,4.5,27,0.0 +24938,69,36,36,0.0 +24938,53,32.8,1,0.0 +24938,65,21.05,45,0.0 +24938,75,7.75,49,0.0 +24938,71,21.5,49,0.0 +24938,30,25.89,34,0.0 +24938,34,14,9,0.0 +24938,63,43.9,38,0.0 +24938,12,38,16,0.0 +24938,6,25,16,0.0 +24938,59,55,28,0.0 +24938,43,46,48,0.0 +24938,62,49.3,17,0.0 +24938,45,9.5,35,0.0 +24938,72,34.8,19,0.0 +24938,57,19.5,40,0.0 +24938,73,15,50,0.0 +24938,77,13,2,0.0 +24938,10,31,29,0.0 +24938,40,18.4,41,0.0 +24938,70,15,29,0.0 +24938,8,40,16,0.0 +24938,64,33.25,32,0.0 +24938,27,43.9,24,0.0 +24938,1,18,9,0.0 +24938,39,18,14,0.0 +24938,16,17.45,2,0.0 +24938,67,14,20,0.0 +24938,51,53,17,0.0 +24938,2,19,42,0.0 +24938,47,9.5,29,0.0 +24938,33,2.5,16,0.0 +24938,22,21,25,0.0 +24938,56,38,21,0.0 +24938,42,14,27,0.0 +24938,48,12.75,44,0.0 +24938,38,263.5,22,0.0 +24938,61,28.5,35,0.0 +24938,19,9.2,41,0.0 +24938,46,12,11,0.0 +24938,50,16.25,31,0.0 +24938,52,7,1,0.0 +24938,28,45.6,44,0.0 +24938,68,12.5,20,0.0 +24938,60,34,39,0.0 +24938,49,20,22,0.0 +24938,18,62.5,29,0.0 +24938,21,10,43,0.0 +24938,23,9,17,0.0 +24938,26,31.23,31,0.0 +24938,20,81,50,0.0 +24939,48,12.75,15,0.0 +24939,53,32.8,16,0.0 +24939,61,28.5,30,0.0 +24939,67,14,10,0.0 +24939,42,14,6,0.0 +24939,20,81,20,0.0 +24939,14,23.25,6,0.0 +24939,55,24,16,0.0 +24939,28,45.6,40,0.0 +24939,75,7.75,35,0.0 +24939,10,31,2,0.0 +24939,65,21.05,27,0.0 +24940,15,15.5,31,0.0 +24940,38,263.5,8,0.0 +24940,37,26,30,0.0 +24940,68,12.5,5,0.0 +24940,32,32,23,0.0 +24940,48,12.75,22,0.0 +24940,11,21,18,0.0 +24940,18,62.5,19,0.0 +24940,58,13.25,15,0.0 +24940,66,17,8,0.0 +24940,33,2.5,15,0.0 +24940,1,18,48,0.0 +24940,71,21.5,38,0.0 +24940,77,13,15,0.0 +24940,17,39,11,0.0 +24940,5,21.35,19,0.0 +24940,75,7.75,44,0.0 +24940,54,7.45,46,0.0 +24940,69,36,4,0.0 +24940,57,19.5,4,0.0 +24940,72,34.8,22,0.0 +24940,73,15,25,0.0 +24940,53,32.8,43,0.0 +24940,9,97,34,0.0 +24940,27,43.9,29,0.0 +24940,56,38,40,0.0 +24940,7,30,42,0.0 +24940,4,22,5,0.0 +24940,52,7,26,0.0 +24940,44,19.45,6,0.0 +24940,20,81,17,0.0 +24940,50,16.25,30,0.0 +24940,70,15,50,0.0 +24940,61,28.5,15,0.0 +24940,19,9.2,40,0.0 +24940,41,9.65,39,0.0 +24940,23,9,11,0.0 +24940,40,18.4,9,0.0 +24940,26,31.23,39,0.0 +24940,16,17.45,34,0.0 +24940,64,33.25,41,0.0 +24940,67,14,9,0.0 +24940,34,14,12,0.0 +24941,61,28.5,49,0.0 +24941,31,12.5,21,0.0 +24941,44,19.45,1,0.0 +24941,2,19,18,0.0 +24941,24,4.5,11,0.0 +24941,67,14,26,0.0 +24941,4,22,48,0.0 +24941,63,43.9,45,0.0 +24941,10,31,38,0.0 +24941,11,21,12,0.0 +24941,13,6,21,0.0 +24941,47,9.5,15,0.0 +24941,28,45.6,13,0.0 +24941,73,15,2,0.0 +24941,7,30,45,0.0 +24941,56,38,22,0.0 +24941,60,34,44,0.0 +24941,29,123.79,17,0.0 +24941,41,9.65,1,0.0 +24941,22,21,35,0.0 +24941,51,53,2,0.0 +24941,20,81,50,0.0 +24941,19,9.2,3,0.0 +24941,58,13.25,31,0.0 +24941,17,39,39,0.0 +24941,48,12.75,24,0.0 +24941,18,62.5,36,0.0 +24941,32,32,46,0.0 +24941,39,18,49,0.0 +24941,75,7.75,36,0.0 +24941,34,14,3,0.0 +24941,71,21.5,32,0.0 +24941,23,9,9,0.0 +24941,40,18.4,2,0.0 +24941,42,14,16,0.0 +24941,16,17.45,46,0.0 +24941,45,9.5,24,0.0 +24941,33,2.5,9,0.0 +24942,11,21,8,0.0 +24942,15,15.5,4,0.0 +24942,16,17.45,38,0.0 +24942,54,7.45,43,0.0 +24942,17,39,26,0.0 +24942,72,34.8,31,0.0 +24942,77,13,19,0.0 +24942,2,19,13,0.0 +24942,41,9.65,9,0.0 +24942,21,10,6,0.0 +24942,71,21.5,5,0.0 +24942,73,15,16,0.0 +24942,14,23.25,42,0.0 +24942,19,9.2,10,0.0 +24942,25,14,40,0.0 +24942,29,123.79,38,0.0 +24942,32,32,3,0.0 +24942,10,31,29,0.0 +24942,22,21,37,0.0 +24942,31,12.5,45,0.0 +24942,75,7.75,25,0.0 +24942,36,19,42,0.0 +24942,52,7,49,0.0 +24942,13,6,21,0.0 +24942,70,15,20,0.0 +24942,27,43.9,12,0.0 +24942,48,12.75,47,0.0 +24942,8,40,7,0.0 +24942,7,30,44,0.0 +24942,47,9.5,5,0.0 +24942,57,19.5,43,0.0 +24942,62,49.3,44,0.0 +24942,60,34,27,0.0 +24942,40,18.4,1,0.0 +24942,30,25.89,15,0.0 +24942,18,62.5,45,0.0 +24942,56,38,36,0.0 +24942,33,2.5,20,0.0 +24942,66,17,23,0.0 +24943,18,62.5,31,0.0 +24943,7,30,2,0.0 +24944,10,31,16,0.0 +24944,11,21,30,0.0 +24944,22,21,28,0.0 +24944,23,9,32,0.0 +24944,27,43.9,20,0.0 +24944,25,14,39,0.0 +24944,31,12.5,47,0.0 +24944,17,39,39,0.0 +24944,54,7.45,45,0.0 +24944,55,24,5,0.0 +24944,16,17.45,42,0.0 +24944,46,12,44,0.0 +24944,13,6,25,0.0 +24944,14,23.25,3,0.0 +24944,29,123.79,50,0.0 +24944,73,15,38,0.0 +24944,68,12.5,11,0.0 +24944,28,45.6,2,0.0 +24944,52,7,33,0.0 +24944,32,32,8,0.0 +24944,58,13.25,42,0.0 +24944,66,17,4,0.0 +24944,26,31.23,43,0.0 +24944,20,81,30,0.0 +24944,56,38,41,0.0 +24944,74,10,9,0.0 +24944,15,15.5,30,0.0 +24944,65,21.05,30,0.0 +24944,48,12.75,21,0.0 +24944,30,25.89,3,0.0 +24944,35,18,50,0.0 +24944,4,22,32,0.0 +24944,67,14,12,0.0 +24944,75,7.75,36,0.0 +24944,71,21.5,42,0.0 +24944,59,55,3,0.0 +24944,12,38,15,0.0 +24944,36,19,27,0.0 +24944,49,20,38,0.0 +24944,51,53,27,0.0 +24944,39,18,40,0.0 +24944,61,28.5,40,0.0 +24944,53,32.8,6,0.0 +24944,72,34.8,45,0.0 +24944,7,30,18,0.0 +24944,42,14,30,0.0 +24944,19,9.2,34,0.0 +24944,69,36,29,0.0 +24944,47,9.5,40,0.0 +24944,1,18,44,0.0 +24944,70,15,2,0.0 +24944,62,49.3,5,0.0 +24944,21,10,48,0.0 +24944,2,19,9,0.0 +24944,8,40,10,0.0 +24944,40,18.4,3,0.0 +24944,50,16.25,22,0.0 +24944,57,19.5,16,0.0 +24944,18,62.5,2,0.0 +24944,45,9.5,42,0.0 +24944,33,2.5,42,0.0 +24944,6,25,6,0.0 +24944,3,10,41,0.0 +24944,34,14,25,0.0 +24944,44,19.45,17,0.0 +24944,41,9.65,16,0.0 +24944,38,263.5,10,0.0 +24944,24,4.5,34,0.0 +24944,76,18,38,0.0 +24944,9,97,24,0.0 +24944,37,26,45,0.0 +24944,77,13,49,0.0 +24944,64,33.25,30,0.0 +24945,15,15.5,7,0.0 +24945,45,9.5,35,0.0 +24945,31,12.5,14,0.0 +24945,16,17.45,35,0.0 +24945,77,13,41,0.0 +24945,51,53,20,0.0 +24945,7,30,38,0.0 +24945,52,7,23,0.0 +24945,22,21,1,0.0 +24945,74,10,25,0.0 +24945,39,18,9,0.0 +24945,71,21.5,25,0.0 +24945,60,34,34,0.0 +24945,65,21.05,36,0.0 +24945,37,26,28,0.0 +24945,70,15,2,0.0 +24945,18,62.5,37,0.0 +24945,38,263.5,25,0.0 +24945,36,19,37,0.0 +24945,8,40,6,0.0 +24945,9,97,38,0.0 +24945,4,22,49,0.0 +24945,10,31,22,0.0 +24945,14,23.25,32,0.0 +24945,3,10,3,0.0 +24945,68,12.5,46,0.0 +24945,49,20,35,0.0 +24945,73,15,17,0.0 +24945,40,18.4,25,0.0 +24945,28,45.6,35,0.0 +24945,75,7.75,9,0.0 +24945,32,32,50,0.0 +24946,74,10,49,0.0 +24947,72,34.8,13,0.0 +24947,48,12.75,23,0.0 +24947,53,32.8,42,0.0 +24947,14,23.25,21,0.0 +24947,39,18,16,0.0 +24947,75,7.75,49,0.0 +24947,21,10,9,0.0 +24947,51,53,26,0.0 +24947,9,97,6,0.0 +24947,10,31,35,0.0 +24947,5,21.35,46,0.0 +24947,49,20,4,0.0 +24947,19,9.2,14,0.0 +24947,15,15.5,29,0.0 +24947,45,9.5,26,0.0 +24947,24,4.5,26,0.0 +24947,12,38,10,0.0 +24947,16,17.45,7,0.0 +24947,74,10,4,0.0 +24947,64,33.25,39,0.0 +24947,29,123.79,20,0.0 +24947,62,49.3,42,0.0 +24947,17,39,16,0.0 +24947,60,34,13,0.0 +24947,58,13.25,1,0.0 +24947,65,21.05,44,0.0 +24947,28,45.6,36,0.0 +24947,6,25,37,0.0 +24947,73,15,16,0.0 +24947,23,9,16,0.0 +24947,31,12.5,41,0.0 +24947,36,19,37,0.0 +24947,25,14,8,0.0 +24947,4,22,41,0.0 +24947,11,21,34,0.0 +24947,1,18,41,0.0 +24947,47,9.5,10,0.0 +24947,20,81,39,0.0 +24947,55,24,30,0.0 +24947,34,14,4,0.0 +24947,46,12,30,0.0 +24947,67,14,22,0.0 +24948,50,16.25,24,0.0 +24948,21,10,35,0.0 +24948,67,14,39,0.0 +24948,72,34.8,39,0.0 +24948,64,33.25,15,0.0 +24948,73,15,46,0.0 +24948,7,30,5,0.0 +24948,54,7.45,25,0.0 +24948,68,12.5,39,0.0 +24948,26,31.23,29,0.0 +24948,76,18,14,0.0 +24948,75,7.75,11,0.0 +24948,38,263.5,16,0.0 +24948,70,15,5,0.0 +24948,28,45.6,30,0.0 +24948,14,23.25,10,0.0 +24948,4,22,17,0.0 +24948,35,18,26,0.0 +24948,61,28.5,26,0.0 +24948,36,19,6,0.0 +24948,33,2.5,33,0.0 +24948,39,18,45,0.0 +24948,10,31,36,0.0 +24948,13,6,49,0.0 +24948,58,13.25,11,0.0 +24948,53,32.8,12,0.0 +24948,12,38,14,0.0 +24948,49,20,18,0.0 +24948,5,21.35,39,0.0 +24948,77,13,36,0.0 +24948,34,14,44,0.0 +24948,31,12.5,4,0.0 +24948,19,9.2,8,0.0 +24948,71,21.5,5,0.0 +24948,17,39,3,0.0 +24948,63,43.9,32,0.0 +24948,27,43.9,27,0.0 +24948,47,9.5,15,0.0 +24948,51,53,5,0.0 +24948,9,97,26,0.0 +24948,37,26,32,0.0 +24948,1,18,40,0.0 +24948,8,40,40,0.0 +24948,2,19,12,0.0 +24948,24,4.5,41,0.0 +24948,40,18.4,45,0.0 +24948,41,9.65,3,0.0 +24948,25,14,50,0.0 +24948,22,21,7,0.0 +24948,45,9.5,43,0.0 +24948,60,34,44,0.0 +24949,27,43.9,6,0.0 +24949,77,13,8,0.0 +24949,19,9.2,25,0.0 +24949,35,18,20,0.0 +24949,18,62.5,17,0.0 +24949,44,19.45,7,0.0 +24949,21,10,8,0.0 +24949,29,123.79,50,0.0 +24949,20,81,9,0.0 +24949,38,263.5,41,0.0 +24949,7,30,11,0.0 +24949,70,15,46,0.0 +24949,15,15.5,33,0.0 +24949,6,25,47,0.0 +24949,54,7.45,27,0.0 +24949,63,43.9,48,0.0 +24949,45,9.5,15,0.0 +24949,65,21.05,23,0.0 +24949,34,14,39,0.0 +24949,25,14,33,0.0 +24949,42,14,6,0.0 +24949,40,18.4,29,0.0 +24949,17,39,4,0.0 +24949,4,22,33,0.0 +24949,55,24,39,0.0 +24949,39,18,14,0.0 +24949,75,7.75,17,0.0 +24949,49,20,46,0.0 +24949,9,97,41,0.0 +24949,51,53,30,0.0 +24949,58,13.25,50,0.0 +24949,10,31,38,0.0 +24949,28,45.6,23,0.0 +24949,16,17.45,40,0.0 +24949,14,23.25,17,0.0 +24949,66,17,36,0.0 +24949,32,32,6,0.0 +24949,68,12.5,20,0.0 +24949,33,2.5,14,0.0 +24949,41,9.65,30,0.0 +24949,11,21,16,0.0 +24949,5,21.35,4,0.0 +24949,57,19.5,19,0.0 +24949,60,34,47,0.0 +24949,62,49.3,10,0.0 +24949,3,10,34,0.0 +24949,30,25.89,17,0.0 +24949,8,40,10,0.0 +24949,67,14,18,0.0 +24950,22,21,22,0.0 +24950,39,18,48,0.0 +24950,5,21.35,37,0.0 +24950,55,24,44,0.0 +24950,74,10,4,0.0 +24950,51,53,49,0.0 +24950,6,25,19,0.0 +24950,59,55,9,0.0 +24950,1,18,36,0.0 +24950,43,46,23,0.0 +24950,11,21,33,0.0 +24950,15,15.5,18,0.0 +24950,57,19.5,48,0.0 +24950,13,6,32,0.0 +24950,66,17,36,0.0 +24950,45,9.5,33,0.0 +24950,34,14,29,0.0 +24950,12,38,21,0.0 +24950,71,21.5,1,0.0 +24950,26,31.23,34,0.0 +24950,69,36,6,0.0 +24950,35,18,34,0.0 +24950,62,49.3,40,0.0 +24950,31,12.5,33,0.0 +24950,4,22,7,0.0 +24950,30,25.89,40,0.0 +24950,76,18,47,0.0 +24950,36,19,42,0.0 +24951,24,4.5,11,0.0 +24951,8,40,43,0.0 +24951,26,31.23,30,0.0 +24951,74,10,27,0.0 +24951,19,9.2,28,0.0 +24951,31,12.5,16,0.0 +24951,23,9,17,0.0 +24951,58,13.25,12,0.0 +24951,51,53,40,0.0 +24951,45,9.5,1,0.0 +24951,20,81,28,0.0 +24951,61,28.5,20,0.0 +24951,72,34.8,23,0.0 +24951,30,25.89,12,0.0 +24951,73,15,27,0.0 +24951,64,33.25,20,0.0 +24952,38,263.5,19,0.0 +24952,5,21.35,20,0.0 +24952,64,33.25,14,0.0 +24952,51,53,38,0.0 +24952,46,12,49,0.0 +24952,12,38,2,0.0 +24952,70,15,40,0.0 +24952,54,7.45,49,0.0 +24952,37,26,5,0.0 +24952,77,13,25,0.0 +24952,62,49.3,7,0.0 +24952,13,6,5,0.0 +24952,4,22,26,0.0 +24952,19,9.2,30,0.0 +24952,28,45.6,44,0.0 +24952,55,24,36,0.0 +24952,67,14,37,0.0 +24952,42,14,6,0.0 +24952,65,21.05,31,0.0 +24952,44,19.45,49,0.0 +24952,45,9.5,24,0.0 +24952,72,34.8,11,0.0 +24952,73,15,40,0.0 +24952,24,4.5,45,0.0 +24952,23,9,32,0.0 +24952,7,30,4,0.0 +24952,25,14,28,0.0 +24952,30,25.89,43,0.0 +24952,6,25,49,0.0 +24952,31,12.5,29,0.0 +24952,57,19.5,49,0.0 +24952,34,14,14,0.0 +24952,66,17,48,0.0 +24953,25,14,19,0.0 +24953,60,34,41,0.0 +24953,24,4.5,22,0.0 +24953,41,9.65,14,0.0 +24953,17,39,20,0.0 +24953,14,23.25,19,0.0 +24953,22,21,3,0.0 +24953,67,14,6,0.0 +24953,46,12,10,0.0 +24953,45,9.5,22,0.0 +24953,35,18,36,0.0 +24953,69,36,31,0.0 +24953,50,16.25,21,0.0 +24953,68,12.5,23,0.0 +24953,71,21.5,23,0.0 +24953,51,53,25,0.0 +24953,34,14,12,0.0 +24953,57,19.5,1,0.0 +24953,27,43.9,25,0.0 +24953,26,31.23,31,0.0 +24953,3,10,2,0.0 +24953,29,123.79,26,0.0 +24953,62,49.3,9,0.0 +24953,73,15,28,0.0 +24953,10,31,1,0.0 +24953,37,26,34,0.0 +24953,65,21.05,49,0.0 +24953,53,32.8,11,0.0 +24953,76,18,29,0.0 +24953,66,17,3,0.0 +24953,19,9.2,46,0.0 +24953,72,34.8,39,0.0 +24953,42,14,7,0.0 +24953,44,19.45,4,0.0 +24953,55,24,26,0.0 +24953,16,17.45,42,0.0 +24953,59,55,42,0.0 +24953,8,40,12,0.0 +24953,23,9,38,0.0 +24953,2,19,31,0.0 +24953,33,2.5,21,0.0 +24954,39,18,4,0.0 +24954,45,9.5,39,0.0 +24954,26,31.23,29,0.0 +24954,53,32.8,1,0.0 +24954,44,19.45,30,0.0 +24954,29,123.79,2,0.0 +24954,42,14,2,0.0 +24954,50,16.25,3,0.0 +24954,54,7.45,39,0.0 +24954,65,21.05,18,0.0 +24954,48,12.75,18,0.0 +24954,35,18,19,0.0 +24954,18,62.5,11,0.0 +24954,5,21.35,25,0.0 +24954,28,45.6,49,0.0 +24954,55,24,26,0.0 +24954,58,13.25,5,0.0 +24954,2,19,16,0.0 +24954,13,6,21,0.0 +24954,19,9.2,28,0.0 +24954,69,36,33,0.0 +24954,49,20,2,0.0 +24955,72,34.8,30,0.0 +24955,32,32,17,0.0 +24955,10,31,45,0.0 +24955,15,15.5,19,0.0 +24955,18,62.5,14,0.0 +24955,71,21.5,37,0.0 +24955,27,43.9,2,0.0 +24955,30,25.89,6,0.0 +24955,60,34,49,0.0 +24955,2,19,50,0.0 +24955,52,7,40,0.0 +24955,11,21,4,0.0 +24955,65,21.05,13,0.0 +24955,21,10,1,0.0 +24955,53,32.8,45,0.0 +24955,61,28.5,42,0.0 +24955,44,19.45,21,0.0 +24955,41,9.65,34,0.0 +24955,62,49.3,32,0.0 +24955,3,10,42,0.0 +24955,55,24,12,0.0 +24955,26,31.23,8,0.0 +24955,17,39,33,0.0 +24955,47,9.5,37,0.0 +24955,5,21.35,21,0.0 +24955,14,23.25,24,0.0 +24955,77,13,42,0.0 +24955,51,53,25,0.0 +24955,48,12.75,28,0.0 +24955,29,123.79,43,0.0 +24955,20,81,20,0.0 +24955,19,9.2,29,0.0 +24956,55,24,37,0.0 +24956,30,25.89,25,0.0 +24956,67,14,25,0.0 +24956,6,25,34,0.0 +24956,68,12.5,20,0.0 +24956,35,18,5,0.0 +24956,29,123.79,17,0.0 +24956,44,19.45,46,0.0 +24956,51,53,2,0.0 +24956,65,21.05,30,0.0 +24956,75,7.75,50,0.0 +24956,7,30,28,0.0 +24956,21,10,8,0.0 +24956,10,31,48,0.0 +24956,40,18.4,29,0.0 +24956,42,14,30,0.0 +24956,36,19,3,0.0 +24956,71,21.5,44,0.0 +24956,73,15,38,0.0 +24956,15,15.5,33,0.0 +24956,74,10,19,0.0 +24956,46,12,36,0.0 +24956,47,9.5,4,0.0 +24957,40,18.4,36,0.0 +24957,74,10,30,0.0 +24957,25,14,39,0.0 +24957,47,9.5,14,0.0 +24957,71,21.5,13,0.0 +24957,67,14,44,0.0 +24957,20,81,32,0.0 +24957,65,21.05,40,0.0 +24957,31,12.5,21,0.0 +24957,10,31,27,0.0 +24957,14,23.25,50,0.0 +24957,5,21.35,39,0.0 +24957,66,17,13,0.0 +24957,19,9.2,12,0.0 +24957,75,7.75,37,0.0 +24957,73,15,34,0.0 +24957,44,19.45,29,0.0 +24957,12,38,17,0.0 +24957,56,38,28,0.0 +24957,45,9.5,27,0.0 +24957,30,25.89,18,0.0 +24957,23,9,13,0.0 +24957,70,15,29,0.0 +24957,77,13,39,0.0 +24957,2,19,34,0.0 +24957,49,20,12,0.0 +24957,17,39,49,0.0 +24957,36,19,26,0.0 +24957,63,43.9,25,0.0 +24957,22,21,50,0.0 +24957,29,123.79,28,0.0 +24957,27,43.9,35,0.0 +24957,43,46,24,0.0 +24957,4,22,40,0.0 +24957,24,4.5,38,0.0 +24957,52,7,28,0.0 +24957,59,55,38,0.0 +24957,15,15.5,21,0.0 +24957,1,18,10,0.0 +24957,76,18,24,0.0 +24957,26,31.23,49,0.0 +24957,7,30,39,0.0 +24957,32,32,48,0.0 +24957,69,36,39,0.0 +24957,16,17.45,46,0.0 +24957,42,14,49,0.0 +24957,64,33.25,39,0.0 +24957,54,7.45,16,0.0 +24957,53,32.8,8,0.0 +24957,18,62.5,29,0.0 +24957,8,40,25,0.0 +24957,72,34.8,23,0.0 +24958,62,49.3,42,0.0 +24958,50,16.25,3,0.0 +24958,4,22,43,0.0 +24958,47,9.5,22,0.0 +24958,69,36,33,0.0 +24958,1,18,14,0.0 +24958,11,21,23,0.0 +24958,44,19.45,10,0.0 +24958,59,55,9,0.0 +24958,60,34,39,0.0 +24958,75,7.75,46,0.0 +24958,52,7,22,0.0 +24958,8,40,14,0.0 +24958,46,12,36,0.0 +24958,2,19,32,0.0 +24958,58,13.25,32,0.0 +24958,3,10,48,0.0 +24958,57,19.5,45,0.0 +24958,53,32.8,20,0.0 +24958,29,123.79,23,0.0 +24958,35,18,40,0.0 +24958,14,23.25,29,0.0 +24958,40,18.4,40,0.0 +24958,76,18,36,0.0 +24958,64,33.25,30,0.0 +24958,74,10,10,0.0 +24958,68,12.5,38,0.0 +24958,77,13,47,0.0 +24958,10,31,46,0.0 +24958,65,21.05,6,0.0 +24958,23,9,32,0.0 +24958,43,46,23,0.0 +24958,33,2.5,8,0.0 +24958,24,4.5,15,0.0 +24958,28,45.6,18,0.0 +24958,6,25,5,0.0 +24958,25,14,46,0.0 +24958,38,263.5,25,0.0 +24958,37,26,19,0.0 +24958,49,20,42,0.0 +24958,71,21.5,36,0.0 +24958,41,9.65,40,0.0 +24958,73,15,15,0.0 +24958,42,14,28,0.0 +24958,18,62.5,41,0.0 +24958,39,18,35,0.0 +24958,48,12.75,32,0.0 +24958,34,14,10,0.0 +24958,32,32,26,0.0 +24958,16,17.45,42,0.0 +24958,67,14,7,0.0 +24958,26,31.23,21,0.0 +24958,21,10,36,0.0 +24958,7,30,10,0.0 +24958,36,19,20,0.0 +24958,20,81,16,0.0 +24958,45,9.5,24,0.0 +24958,31,12.5,33,0.0 +24958,15,15.5,43,0.0 +24958,56,38,19,0.0 +24958,22,21,23,0.0 +24958,66,17,11,0.0 +24958,27,43.9,48,0.0 +24958,9,97,33,0.0 +24958,17,39,8,0.0 +24958,51,53,2,0.0 +24959,44,19.45,9,0.0 +24959,14,23.25,50,0.0 +24959,3,10,42,0.0 +24959,7,30,20,0.0 +24959,67,14,15,0.0 +24959,68,12.5,1,0.0 +24960,26,31.23,16,0.0 +24960,62,49.3,6,0.0 +24960,23,9,8,0.0 +24960,2,19,43,0.0 +24960,41,9.65,18,0.0 +24960,29,123.79,33,0.0 +24960,63,43.9,6,0.0 +24960,57,19.5,21,0.0 +24960,73,15,10,0.0 +24960,46,12,4,0.0 +24960,33,2.5,19,0.0 +24960,65,21.05,41,0.0 +24960,17,39,40,0.0 +24960,49,20,18,0.0 +24960,40,18.4,5,0.0 +24960,31,12.5,50,0.0 +24960,60,34,25,0.0 +24960,19,9.2,20,0.0 +24960,72,34.8,19,0.0 +24960,75,7.75,48,0.0 +24960,68,12.5,22,0.0 +24960,35,18,37,0.0 +24960,13,6,19,0.0 +24960,18,62.5,2,0.0 +24960,32,32,15,0.0 +24960,12,38,30,0.0 +24960,25,14,45,0.0 +24960,59,55,22,0.0 +24960,53,32.8,12,0.0 +24960,70,15,2,0.0 +24960,69,36,29,0.0 +24960,58,13.25,3,0.0 +24960,20,81,37,0.0 +24960,10,31,11,0.0 +24960,15,15.5,36,0.0 +24960,47,9.5,15,0.0 +24960,52,7,40,0.0 +24960,66,17,46,0.0 +24960,37,26,24,0.0 +24960,4,22,35,0.0 +24960,1,18,14,0.0 +24960,7,30,33,0.0 +24960,27,43.9,38,0.0 +24960,48,12.75,44,0.0 +24960,6,25,4,0.0 +24961,62,49.3,48,0.0 +24961,77,13,39,0.0 +24961,23,9,46,0.0 +24961,74,10,1,0.0 +24961,51,53,45,0.0 +24961,37,26,7,0.0 +24961,10,31,33,0.0 +24961,49,20,36,0.0 +24961,45,9.5,20,0.0 +24961,26,31.23,33,0.0 +24961,1,18,30,0.0 +24961,12,38,45,0.0 +24961,69,36,19,0.0 +24961,32,32,9,0.0 +24961,30,25.89,2,0.0 +24961,33,2.5,50,0.0 +24961,54,7.45,15,0.0 +24961,27,43.9,38,0.0 +24961,40,18.4,40,0.0 +24961,36,19,16,0.0 +24961,31,12.5,36,0.0 +24961,16,17.45,37,0.0 +24961,43,46,44,0.0 +24961,29,123.79,27,0.0 +24961,13,6,22,0.0 +24961,39,18,11,0.0 +24961,52,7,28,0.0 +24962,18,62.5,4,0.0 +24962,35,18,29,0.0 +24962,63,43.9,38,0.0 +24962,57,19.5,8,0.0 +24962,1,18,46,0.0 +24962,45,9.5,3,0.0 +24962,65,21.05,28,0.0 +24962,32,32,31,0.0 +24962,20,81,39,0.0 +24962,66,17,41,0.0 +24962,38,263.5,8,0.0 +24962,43,46,50,0.0 +24962,68,12.5,37,0.0 +24962,46,12,26,0.0 +24962,40,18.4,4,0.0 +24962,64,33.25,9,0.0 +24962,67,14,33,0.0 +24962,36,19,19,0.0 +24962,12,38,3,0.0 +24962,59,55,34,0.0 +24962,70,15,24,0.0 +24962,23,9,2,0.0 +24962,77,13,9,0.0 +24962,60,34,6,0.0 +24962,3,10,8,0.0 +24962,58,13.25,30,0.0 +24962,29,123.79,41,0.0 +24962,2,19,33,0.0 +24962,5,21.35,22,0.0 +24962,73,15,10,0.0 +24962,25,14,20,0.0 +24962,26,31.23,21,0.0 +24962,71,21.5,33,0.0 +24962,72,34.8,13,0.0 +24962,4,22,17,0.0 +24962,24,4.5,30,0.0 +24962,75,7.75,7,0.0 +24962,48,12.75,9,0.0 +24962,61,28.5,22,0.0 +24962,22,21,43,0.0 +24962,34,14,15,0.0 +24962,6,25,19,0.0 +24962,69,36,4,0.0 +24962,11,21,25,0.0 +24962,7,30,48,0.0 +24962,53,32.8,44,0.0 +24962,21,10,15,0.0 +24962,33,2.5,15,0.0 +24962,44,19.45,17,0.0 +24962,8,40,21,0.0 +24962,74,10,46,0.0 +24962,37,26,35,0.0 +24962,30,25.89,34,0.0 +24962,9,97,41,0.0 +24962,47,9.5,17,0.0 +24962,42,14,6,0.0 +24962,39,18,26,0.0 +24962,50,16.25,18,0.0 +24962,31,12.5,9,0.0 +24962,54,7.45,31,0.0 +24962,62,49.3,2,0.0 +24962,51,53,31,0.0 +24962,27,43.9,33,0.0 +24963,8,40,33,0.0 +24963,6,25,20,0.0 +24963,21,10,14,0.0 +24964,7,30,3,0.0 +24964,11,21,8,0.0 +24964,12,38,43,0.0 +24964,60,34,32,0.0 +24964,39,18,29,0.0 +24964,57,19.5,36,0.0 +24964,34,14,44,0.0 +24964,36,19,4,0.0 +24964,32,32,46,0.0 +24964,31,12.5,33,0.0 +24964,41,9.65,39,0.0 +24964,22,21,10,0.0 +24964,49,20,37,0.0 +24964,55,24,44,0.0 +24964,9,97,38,0.0 +24964,67,14,1,0.0 +24964,15,15.5,25,0.0 +24964,64,33.25,46,0.0 +24964,45,9.5,21,0.0 +24964,74,10,24,0.0 +24964,68,12.5,48,0.0 +24964,66,17,25,0.0 +24964,20,81,2,0.0 +24964,14,23.25,19,0.0 +24964,63,43.9,15,0.0 +24964,73,15,39,0.0 +24964,56,38,2,0.0 +24964,71,21.5,3,0.0 +24964,52,7,20,0.0 +24964,30,25.89,14,0.0 +24964,77,13,45,0.0 +24964,4,22,33,0.0 +24964,35,18,42,0.0 +24964,24,4.5,20,0.0 +24964,37,26,33,0.0 +24964,61,28.5,19,0.0 +24964,33,2.5,42,0.0 +24964,10,31,47,0.0 +24964,44,19.45,30,0.0 +24964,62,49.3,16,0.0 +24964,28,45.6,20,0.0 +24964,76,18,19,0.0 +24965,57,19.5,43,0.0 +24965,13,6,45,0.0 +24965,51,53,40,0.0 +24965,8,40,19,0.0 +24965,45,9.5,36,0.0 +24965,5,21.35,43,0.0 +24965,24,4.5,15,0.0 +24965,60,34,34,0.0 +24965,32,32,19,0.0 +24965,56,38,41,0.0 +24965,64,33.25,16,0.0 +24965,53,32.8,47,0.0 +24965,47,9.5,35,0.0 +24965,12,38,38,0.0 +24965,74,10,3,0.0 +24965,23,9,11,0.0 +24965,48,12.75,4,0.0 +24965,43,46,41,0.0 +24965,18,62.5,27,0.0 +24966,31,12.5,32,0.0 +24966,74,10,16,0.0 +24966,6,25,8,0.0 +24966,60,34,41,0.0 +24966,77,13,22,0.0 +24966,5,21.35,46,0.0 +24966,40,18.4,24,0.0 +24966,53,32.8,29,0.0 +24966,15,15.5,19,0.0 +24966,29,123.79,37,0.0 +24966,2,19,2,0.0 +24966,25,14,24,0.0 +24966,64,33.25,27,0.0 +24966,17,39,42,0.0 +24966,52,7,32,0.0 +24967,17,39,46,0.0 +24967,4,22,29,0.0 +24967,24,4.5,33,0.0 +24967,11,21,37,0.0 +24967,69,36,15,0.0 +24967,15,15.5,22,0.0 +24967,61,28.5,32,0.0 +24967,34,14,23,0.0 +24967,35,18,27,0.0 +24967,38,263.5,49,0.0 +24967,10,31,34,0.0 +24968,25,14,34,0.0 +24968,36,19,34,0.0 +24968,56,38,25,0.0 +24968,16,17.45,38,0.0 +24968,10,31,35,0.0 +24968,33,2.5,5,0.0 +24968,20,81,12,0.0 +24968,39,18,45,0.0 +24968,21,10,21,0.0 +24968,57,19.5,25,0.0 +24968,15,15.5,14,0.0 +24968,55,24,26,0.0 +24968,4,22,42,0.0 +24968,43,46,20,0.0 +24968,45,9.5,43,0.0 +24968,58,13.25,33,0.0 +24968,37,26,25,0.0 +24968,65,21.05,32,0.0 +24968,41,9.65,20,0.0 +24968,28,45.6,7,0.0 +24968,34,14,20,0.0 +24968,46,12,7,0.0 +24968,31,12.5,6,0.0 +24968,30,25.89,17,0.0 +24968,19,9.2,5,0.0 +24968,49,20,3,0.0 +24968,38,263.5,41,0.0 +24968,7,30,35,0.0 +24968,35,18,25,0.0 +24968,61,28.5,20,0.0 +24968,24,4.5,46,0.0 +24968,47,9.5,23,0.0 +24968,73,15,39,0.0 +24969,75,7.75,37,0.0 +24969,32,32,31,0.0 +24969,18,62.5,4,0.0 +24969,52,7,50,0.0 +24969,15,15.5,5,0.0 +24969,42,14,30,0.0 +24969,12,38,46,0.0 +24969,35,18,39,0.0 +24969,47,9.5,5,0.0 +24969,72,34.8,22,0.0 +24969,8,40,42,0.0 +24969,28,45.6,4,0.0 +24969,4,22,42,0.0 +24969,65,21.05,32,0.0 +24969,70,15,32,0.0 +24969,41,9.65,8,0.0 +24969,1,18,5,0.0 +24969,11,21,42,0.0 +24969,22,21,8,0.0 +24969,5,21.35,43,0.0 +24969,13,6,21,0.0 +24969,29,123.79,33,0.0 +24969,56,38,26,0.0 +24969,30,25.89,25,0.0 +24969,51,53,30,0.0 +24969,21,10,41,0.0 +24969,60,34,49,0.0 +24969,7,30,24,0.0 +24969,57,19.5,15,0.0 +24969,74,10,12,0.0 +24969,63,43.9,18,0.0 +24969,58,13.25,21,0.0 +24969,9,97,14,0.0 +24969,14,23.25,9,0.0 +24969,26,31.23,25,0.0 +24969,67,14,26,0.0 +24969,45,9.5,30,0.0 +24969,20,81,33,0.0 +24969,55,24,43,0.0 +24969,71,21.5,30,0.0 +24969,76,18,40,0.0 +24969,43,46,37,0.0 +24969,31,12.5,42,0.0 +24969,49,20,23,0.0 +24969,36,19,44,0.0 +24969,62,49.3,16,0.0 +24969,37,26,29,0.0 +24969,54,7.45,12,0.0 +24969,46,12,31,0.0 +24969,66,17,23,0.0 +24969,23,9,23,0.0 +24969,34,14,1,0.0 +24969,77,13,32,0.0 +24969,69,36,25,0.0 +24969,25,14,19,0.0 +24969,40,18.4,3,0.0 +24969,16,17.45,36,0.0 +24969,19,9.2,49,0.0 +24969,64,33.25,36,0.0 +24969,3,10,37,0.0 +24969,48,12.75,12,0.0 +24969,68,12.5,28,0.0 +24969,10,31,50,0.0 +24969,33,2.5,44,0.0 +24970,38,263.5,9,0.0 +24970,40,18.4,6,0.0 +24970,65,21.05,43,0.0 +24970,10,31,2,0.0 +24970,2,19,7,0.0 +24970,55,24,27,0.0 +24970,62,49.3,43,0.0 +24970,61,28.5,6,0.0 +24970,36,19,32,0.0 +24970,39,18,35,0.0 +24970,48,12.75,48,0.0 +24970,60,34,11,0.0 +24970,17,39,34,0.0 +24970,31,12.5,43,0.0 +24970,19,9.2,3,0.0 +24970,29,123.79,23,0.0 +24970,27,43.9,49,0.0 +24970,68,12.5,32,0.0 +24970,16,17.45,47,0.0 +24970,35,18,45,0.0 +24970,30,25.89,2,0.0 +24970,44,19.45,34,0.0 +24970,51,53,36,0.0 +24970,63,43.9,32,0.0 +24970,5,21.35,50,0.0 +24971,36,19,40,0.0 +24971,57,19.5,25,0.0 +24971,14,23.25,43,0.0 +24971,72,34.8,5,0.0 +24971,43,46,7,0.0 +24971,64,33.25,47,0.0 +24971,28,45.6,5,0.0 +24971,37,26,8,0.0 +24971,66,17,9,0.0 +24971,33,2.5,6,0.0 +24971,11,21,33,0.0 +24971,61,28.5,16,0.0 +24971,46,12,33,0.0 +24971,76,18,38,0.0 +24971,12,38,4,0.0 +24971,54,7.45,49,0.0 +24971,50,16.25,3,0.0 +24971,71,21.5,41,0.0 +24971,23,9,6,0.0 +24971,58,13.25,29,0.0 +24971,74,10,44,0.0 +24971,13,6,42,0.0 +24971,9,97,49,0.0 +24971,15,15.5,24,0.0 +24971,70,15,50,0.0 +24971,49,20,22,0.0 +24971,41,9.65,38,0.0 +24972,8,40,16,0.0 +24972,35,18,33,0.0 +24972,28,45.6,25,0.0 +24972,66,17,25,0.0 +24972,41,9.65,48,0.0 +24972,11,21,19,0.0 +24972,29,123.79,4,0.0 +24972,24,4.5,3,0.0 +24972,74,10,29,0.0 +24972,44,19.45,49,0.0 +24972,36,19,43,0.0 +24972,32,32,40,0.0 +24972,20,81,34,0.0 +24972,62,49.3,37,0.0 +24972,26,31.23,14,0.0 +24972,7,30,39,0.0 +24972,49,20,21,0.0 +24972,48,12.75,33,0.0 +24972,9,97,22,0.0 +24972,39,18,6,0.0 +24972,53,32.8,6,0.0 +24972,40,18.4,10,0.0 +24972,64,33.25,32,0.0 +24972,4,22,13,0.0 +24972,37,26,14,0.0 +24972,60,34,6,0.0 +24972,52,7,23,0.0 +24972,14,23.25,47,0.0 +24972,70,15,38,0.0 +24972,33,2.5,43,0.0 +24972,31,12.5,17,0.0 +24972,46,12,20,0.0 +24972,65,21.05,21,0.0 +24972,56,38,7,0.0 +24972,51,53,39,0.0 +24972,67,14,50,0.0 +24972,5,21.35,27,0.0 +24972,17,39,49,0.0 +24972,21,10,49,0.0 +24972,42,14,6,0.0 +24972,50,16.25,13,0.0 +24972,71,21.5,12,0.0 +24972,54,7.45,49,0.0 +24972,68,12.5,23,0.0 +24972,15,15.5,29,0.0 +24972,72,34.8,18,0.0 +24972,10,31,9,0.0 +24972,19,9.2,27,0.0 +24972,58,13.25,26,0.0 +24972,25,14,27,0.0 +24972,77,13,47,0.0 +24972,59,55,43,0.0 +24973,32,32,24,0.0 +24973,23,9,47,0.0 +24973,35,18,8,0.0 +24973,53,32.8,12,0.0 +24973,74,10,42,0.0 +24973,40,18.4,32,0.0 +24973,1,18,3,0.0 +24973,2,19,42,0.0 +24973,50,16.25,20,0.0 +24973,14,23.25,14,0.0 +24973,69,36,2,0.0 +24973,10,31,8,0.0 +24973,39,18,4,0.0 +24973,26,31.23,31,0.0 +24973,16,17.45,31,0.0 +24973,66,17,5,0.0 +24973,41,9.65,4,0.0 +24973,11,21,17,0.0 +24973,67,14,14,0.0 +24973,61,28.5,7,0.0 +24973,54,7.45,40,0.0 +24973,33,2.5,28,0.0 +24973,63,43.9,33,0.0 +24973,56,38,20,0.0 +24973,51,53,29,0.0 +24973,73,15,11,0.0 +24973,58,13.25,15,0.0 +24973,30,25.89,50,0.0 +24973,21,10,13,0.0 +24973,48,12.75,4,0.0 +24973,27,43.9,47,0.0 +24973,45,9.5,4,0.0 +24973,13,6,2,0.0 +24973,42,14,16,0.0 +24973,8,40,12,0.0 +24973,19,9.2,3,0.0 +24973,72,34.8,23,0.0 +24973,9,97,23,0.0 +24973,5,21.35,12,0.0 +24973,75,7.75,34,0.0 +24973,37,26,29,0.0 +24973,49,20,15,0.0 +24973,18,62.5,22,0.0 +24973,65,21.05,31,0.0 +24973,29,123.79,27,0.0 +24973,59,55,16,0.0 +24973,60,34,3,0.0 +24973,68,12.5,26,0.0 +24973,38,263.5,2,0.0 +24973,28,45.6,37,0.0 +24973,22,21,24,0.0 +24973,17,39,20,0.0 +24973,55,24,43,0.0 +24973,31,12.5,16,0.0 +24973,34,14,22,0.0 +24973,24,4.5,9,0.0 +24973,76,18,43,0.0 +24973,43,46,24,0.0 +24973,52,7,26,0.0 +24973,25,14,43,0.0 +24973,3,10,13,0.0 +24973,62,49.3,2,0.0 +24973,20,81,34,0.0 +24973,44,19.45,18,0.0 +24973,15,15.5,3,0.0 +24973,36,19,15,0.0 +24973,70,15,42,0.0 +24973,64,33.25,26,0.0 +24973,77,13,7,0.0 +24973,57,19.5,12,0.0 +24973,7,30,26,0.0 +24974,17,39,39,0.0 +24974,14,23.25,22,0.0 +24974,11,21,15,0.0 +24975,37,26,30,0.0 +24975,51,53,26,0.0 +24975,42,14,43,0.0 +24975,11,21,30,0.0 +24975,17,39,30,0.0 +24975,18,62.5,2,0.0 +24975,66,17,41,0.0 +24975,69,36,19,0.0 +24975,28,45.6,20,0.0 +24975,4,22,38,0.0 +24975,73,15,9,0.0 +24975,39,18,45,0.0 +24975,9,97,50,0.0 +24975,56,38,15,0.0 +24975,15,15.5,38,0.0 +24975,71,21.5,50,0.0 +24975,27,43.9,37,0.0 +24975,58,13.25,31,0.0 +24975,70,15,50,0.0 +24975,7,30,42,0.0 +24975,55,24,30,0.0 +24975,36,19,41,0.0 +24975,67,14,36,0.0 +24975,77,13,1,0.0 +24975,32,32,18,0.0 +24975,63,43.9,3,0.0 +24976,37,26,21,0.0 +24976,38,263.5,49,0.0 +24976,3,10,1,0.0 +24976,28,45.6,23,0.0 +24976,4,22,9,0.0 +24976,25,14,24,0.0 +24976,77,13,38,0.0 +24976,76,18,34,0.0 +24976,40,18.4,17,0.0 +24976,16,17.45,15,0.0 +24976,27,43.9,22,0.0 +24976,7,30,8,0.0 +24976,15,15.5,20,0.0 +24976,9,97,35,0.0 +24976,51,53,35,0.0 +24976,2,19,3,0.0 +24976,6,25,5,0.0 +24976,33,2.5,33,0.0 +24976,50,16.25,29,0.0 +24976,11,21,24,0.0 +24976,18,62.5,2,0.0 +24976,47,9.5,31,0.0 +24976,49,20,3,0.0 +24976,14,23.25,19,0.0 +24976,45,9.5,45,0.0 +24976,12,38,33,0.0 +24976,30,25.89,7,0.0 +24976,20,81,37,0.0 +24976,67,14,2,0.0 +24976,17,39,20,0.0 +24976,52,7,1,0.0 +24976,59,55,1,0.0 +24976,74,10,17,0.0 +24976,10,31,24,0.0 +24976,53,32.8,38,0.0 +24976,48,12.75,37,0.0 +24976,36,19,24,0.0 +24976,13,6,43,0.0 +24976,75,7.75,17,0.0 +24976,42,14,45,0.0 +24976,69,36,4,0.0 +24976,8,40,43,0.0 +24976,63,43.9,12,0.0 +24976,22,21,2,0.0 +24976,39,18,43,0.0 +24976,60,34,25,0.0 +24976,56,38,48,0.0 +24976,23,9,25,0.0 +24976,43,46,33,0.0 +24976,61,28.5,28,0.0 +24976,57,19.5,44,0.0 +24976,68,12.5,24,0.0 +24976,70,15,23,0.0 +24976,1,18,30,0.0 +24976,44,19.45,42,0.0 +24976,65,21.05,41,0.0 +24976,46,12,20,0.0 +24977,35,18,32,0.0 +24977,26,31.23,34,0.0 +24977,51,53,10,0.0 +24977,47,9.5,11,0.0 +24977,48,12.75,48,0.0 +24977,11,21,24,0.0 +24977,23,9,28,0.0 +24977,15,15.5,28,0.0 +24977,34,14,10,0.0 +24977,20,81,15,0.0 +24977,36,19,50,0.0 +24977,67,14,18,0.0 +24977,33,2.5,21,0.0 +24977,24,4.5,6,0.0 +24977,45,9.5,35,0.0 +24977,56,38,38,0.0 +24977,74,10,18,0.0 +24977,49,20,34,0.0 +24977,52,7,32,0.0 +24977,32,32,5,0.0 +24977,75,7.75,20,0.0 +24977,59,55,46,0.0 +24977,65,21.05,48,0.0 +24977,9,97,21,0.0 +24977,5,21.35,19,0.0 +24977,43,46,10,0.0 +24977,19,9.2,38,0.0 +24977,76,18,27,0.0 +24977,60,34,6,0.0 +24977,57,19.5,27,0.0 +24977,14,23.25,39,0.0 +24977,3,10,20,0.0 +24977,68,12.5,33,0.0 +24977,77,13,8,0.0 +24977,62,49.3,40,0.0 +24977,4,22,17,0.0 +24977,50,16.25,3,0.0 +24977,66,17,47,0.0 +24977,58,13.25,43,0.0 +24977,22,21,25,0.0 +24977,6,25,29,0.0 +24977,38,263.5,3,0.0 +24977,40,18.4,33,0.0 +24977,55,24,39,0.0 +24977,39,18,15,0.0 +24977,2,19,30,0.0 +24977,27,43.9,7,0.0 +24977,29,123.79,9,0.0 +24977,28,45.6,46,0.0 +24977,37,26,49,0.0 +24977,25,14,23,0.0 +24977,69,36,41,0.0 +24977,31,12.5,32,0.0 +24977,18,62.5,39,0.0 +24977,44,19.45,17,0.0 +24977,63,43.9,7,0.0 +24977,73,15,33,0.0 +24977,12,38,4,0.0 +24977,64,33.25,29,0.0 +24977,30,25.89,36,0.0 +24977,54,7.45,46,0.0 +24977,10,31,46,0.0 +24977,8,40,48,0.0 +24977,72,34.8,15,0.0 +24977,17,39,48,0.0 +24977,61,28.5,29,0.0 +24977,70,15,20,0.0 +24977,16,17.45,24,0.0 +24977,71,21.5,1,0.0 +24977,42,14,10,0.0 +24977,53,32.8,3,0.0 +24977,13,6,35,0.0 +24977,21,10,5,0.0 +24978,2,19,48,0.0 +24978,39,18,13,0.0 +24978,48,12.75,44,0.0 +24978,11,21,9,0.0 +24978,20,81,14,0.0 +24978,55,24,31,0.0 +24978,65,21.05,29,0.0 +24978,45,9.5,47,0.0 +24978,62,49.3,19,0.0 +24978,29,123.79,32,0.0 +24978,50,16.25,10,0.0 +24978,8,40,4,0.0 +24978,40,18.4,16,0.0 +24978,6,25,20,0.0 +24978,58,13.25,42,0.0 +24978,37,26,16,0.0 +24978,25,14,21,0.0 +24978,33,2.5,14,0.0 +24978,16,17.45,33,0.0 +24978,70,15,33,0.0 +24978,56,38,36,0.0 +24978,75,7.75,44,0.0 +24978,51,53,43,0.0 +24978,18,62.5,5,0.0 +24978,43,46,21,0.0 +24978,9,97,13,0.0 +24978,35,18,18,0.0 +24978,49,20,42,0.0 +24978,26,31.23,42,0.0 +24978,19,9.2,19,0.0 +24978,53,32.8,21,0.0 +24978,3,10,19,0.0 +24978,13,6,27,0.0 +24978,42,14,37,0.0 +24978,32,32,5,0.0 +24978,28,45.6,36,0.0 +24978,73,15,47,0.0 +24979,60,34,19,0.0 +24979,24,4.5,49,0.0 +24979,39,18,29,0.0 +24979,38,263.5,50,0.0 +24979,66,17,49,0.0 +24979,19,9.2,9,0.0 +24979,31,12.5,20,0.0 +24979,26,31.23,47,0.0 +24979,46,12,34,0.0 +24979,76,18,21,0.0 +24979,53,32.8,7,0.0 +24979,52,7,11,0.0 +24979,71,21.5,23,0.0 +24979,2,19,44,0.0 +24979,11,21,1,0.0 +24979,65,21.05,16,0.0 +24979,67,14,39,0.0 +24979,4,22,33,0.0 +24979,5,21.35,43,0.0 +24979,44,19.45,18,0.0 +24979,28,45.6,12,0.0 +24979,36,19,24,0.0 +24979,30,25.89,45,0.0 +24979,34,14,10,0.0 +24979,50,16.25,16,0.0 +24979,22,21,45,0.0 +24980,38,263.5,47,0.0 +24980,25,14,42,0.0 +24980,45,9.5,11,0.0 +24980,66,17,30,0.0 +24980,76,18,13,0.0 +24980,72,34.8,45,0.0 +24980,70,15,46,0.0 +24980,42,14,33,0.0 +24980,21,10,27,0.0 +24980,20,81,3,0.0 +24980,2,19,12,0.0 +24980,64,33.25,19,0.0 +24980,1,18,16,0.0 +24980,77,13,44,0.0 +24980,8,40,5,0.0 +24980,40,18.4,6,0.0 +24980,46,12,41,0.0 +24980,4,22,24,0.0 +24980,6,25,42,0.0 +24980,24,4.5,22,0.0 +24980,57,19.5,22,0.0 +24980,58,13.25,46,0.0 +24980,11,21,6,0.0 +24980,32,32,35,0.0 +24980,37,26,4,0.0 +24980,53,32.8,7,0.0 +24981,52,7,9,0.0 +24981,33,2.5,12,0.0 +24981,40,18.4,9,0.0 +24981,58,13.25,7,0.0 +24981,61,28.5,4,0.0 +24981,6,25,30,0.0 +24981,39,18,14,0.0 +24981,36,19,8,0.0 +24981,11,21,27,0.0 +24981,21,10,11,0.0 +24981,57,19.5,37,0.0 +24981,71,21.5,11,0.0 +24981,69,36,11,0.0 +24981,29,123.79,48,0.0 +24981,37,26,48,0.0 +24981,34,14,39,0.0 +24981,17,39,28,0.0 +24981,59,55,29,0.0 +24981,32,32,44,0.0 +24981,27,43.9,48,0.0 +24981,74,10,24,0.0 +24981,13,6,13,0.0 +24981,73,15,10,0.0 +24981,19,9.2,5,0.0 +24981,76,18,29,0.0 +24981,65,21.05,38,0.0 +24981,25,14,35,0.0 +24981,60,34,47,0.0 +24981,44,19.45,38,0.0 +24981,55,24,34,0.0 +24981,50,16.25,46,0.0 +24981,7,30,33,0.0 +24981,30,25.89,19,0.0 +24981,16,17.45,3,0.0 +24981,66,17,6,0.0 +24981,64,33.25,7,0.0 +24981,48,12.75,42,0.0 +24981,70,15,39,0.0 +24981,22,21,5,0.0 +24981,4,22,1,0.0 +24981,23,9,50,0.0 +24981,8,40,26,0.0 +24981,67,14,27,0.0 +24981,43,46,42,0.0 +24981,35,18,37,0.0 +24981,51,53,35,0.0 +24981,3,10,5,0.0 +24981,56,38,2,0.0 +24981,45,9.5,9,0.0 +24981,62,49.3,16,0.0 +24981,46,12,19,0.0 +24981,15,15.5,3,0.0 +24981,54,7.45,9,0.0 +24981,75,7.75,38,0.0 +24981,53,32.8,6,0.0 +24981,1,18,41,0.0 +24981,31,12.5,41,0.0 +24981,41,9.65,4,0.0 +24981,49,20,5,0.0 +24981,38,263.5,4,0.0 +24981,14,23.25,44,0.0 +24981,10,31,20,0.0 +24981,12,38,29,0.0 +24981,63,43.9,18,0.0 +24981,9,97,49,0.0 +24981,26,31.23,18,0.0 +24981,42,14,40,0.0 +24981,20,81,41,0.0 +24981,47,9.5,49,0.0 +24981,18,62.5,42,0.0 +24981,28,45.6,8,0.0 +24981,68,12.5,33,0.0 +24981,24,4.5,36,0.0 +24981,2,19,39,0.0 +24982,39,18,19,0.0 +24982,75,7.75,49,0.0 +24982,5,21.35,21,0.0 +24982,31,12.5,36,0.0 +24982,7,30,34,0.0 +24982,24,4.5,20,0.0 +24982,29,123.79,1,0.0 +24982,28,45.6,31,0.0 +24982,4,22,13,0.0 +24982,52,7,29,0.0 +24982,38,263.5,19,0.0 +24982,18,62.5,16,0.0 +24982,9,97,41,0.0 +24982,37,26,4,0.0 +24982,48,12.75,12,0.0 +24982,42,14,40,0.0 +24982,72,34.8,14,0.0 +24982,77,13,19,0.0 +24982,3,10,29,0.0 +24982,23,9,22,0.0 +24982,50,16.25,47,0.0 +24982,13,6,49,0.0 +24982,47,9.5,46,0.0 +24982,68,12.5,19,0.0 +24982,21,10,3,0.0 +24982,56,38,21,0.0 +24982,58,13.25,11,0.0 +24982,63,43.9,16,0.0 +24982,2,19,15,0.0 +24982,15,15.5,24,0.0 +24982,25,14,43,0.0 +24982,32,32,24,0.0 +24982,49,20,6,0.0 +24982,35,18,23,0.0 +24982,27,43.9,23,0.0 +24982,11,21,23,0.0 +24982,22,21,34,0.0 +24982,8,40,1,0.0 +24982,64,33.25,26,0.0 +24982,43,46,16,0.0 +24982,66,17,26,0.0 +24982,16,17.45,42,0.0 +24982,30,25.89,9,0.0 +24982,74,10,50,0.0 +24982,14,23.25,49,0.0 +24983,23,9,11,0.0 +24983,68,12.5,48,0.0 +24983,32,32,49,0.0 +24983,76,18,19,0.0 +24983,39,18,21,0.0 +24983,74,10,6,0.0 +24983,5,21.35,10,0.0 +24983,46,12,16,0.0 +24983,49,20,27,0.0 +24983,42,14,15,0.0 +24983,61,28.5,8,0.0 +24983,54,7.45,49,0.0 +24983,27,43.9,27,0.0 +24983,3,10,13,0.0 +24983,65,21.05,5,0.0 +24983,56,38,12,0.0 +24983,69,36,24,0.0 +24983,17,39,12,0.0 +24983,12,38,38,0.0 +24983,35,18,17,0.0 +24983,18,62.5,18,0.0 +24983,70,15,34,0.0 +24983,43,46,17,0.0 +24983,77,13,9,0.0 +24983,73,15,47,0.0 +24983,26,31.23,22,0.0 +24983,21,10,17,0.0 +24983,22,21,1,0.0 +24983,10,31,6,0.0 +24983,16,17.45,39,0.0 +24983,58,13.25,43,0.0 +24983,33,2.5,40,0.0 +24983,28,45.6,10,0.0 +24983,66,17,20,0.0 +24983,30,25.89,34,0.0 +24983,36,19,34,0.0 +24983,47,9.5,39,0.0 +24983,75,7.75,49,0.0 +24983,41,9.65,41,0.0 +24983,71,21.5,6,0.0 +24983,24,4.5,1,0.0 +24983,19,9.2,41,0.0 +24984,25,14,22,0.0 +24984,3,10,7,0.0 +24984,36,19,31,0.0 +24984,30,25.89,31,0.0 +24984,44,19.45,1,0.0 +24984,10,31,49,0.0 +24984,18,62.5,31,0.0 +24984,43,46,26,0.0 +24984,59,55,17,0.0 +24984,51,53,42,0.0 +24984,74,10,8,0.0 +24984,64,33.25,28,0.0 +24984,1,18,33,0.0 +24984,24,4.5,41,0.0 +24984,32,32,28,0.0 +24984,22,21,37,0.0 +24984,50,16.25,6,0.0 +24984,27,43.9,17,0.0 +24984,67,14,19,0.0 +24984,57,19.5,4,0.0 +24984,46,12,25,0.0 +24984,21,10,41,0.0 +24984,53,32.8,6,0.0 +24984,54,7.45,12,0.0 +24984,37,26,15,0.0 +24984,47,9.5,33,0.0 +24984,48,12.75,7,0.0 +24984,56,38,49,0.0 +24984,52,7,23,0.0 +24984,76,18,6,0.0 +24984,34,14,29,0.0 +24984,69,36,19,0.0 +24984,61,28.5,17,0.0 +24984,33,2.5,41,0.0 +24984,2,19,45,0.0 +24984,70,15,30,0.0 +24984,11,21,44,0.0 +24984,23,9,8,0.0 +24984,60,34,47,0.0 +24984,66,17,49,0.0 +24984,77,13,16,0.0 +24984,75,7.75,24,0.0 +24984,31,12.5,24,0.0 +24984,26,31.23,46,0.0 +24984,19,9.2,31,0.0 +24984,73,15,13,0.0 +24984,41,9.65,16,0.0 +24984,49,20,21,0.0 +24984,4,22,36,0.0 +24984,35,18,30,0.0 +24984,12,38,18,0.0 +24984,38,263.5,15,0.0 +24984,7,30,26,0.0 +24984,16,17.45,16,0.0 +24984,40,18.4,16,0.0 +24984,28,45.6,24,0.0 +24984,20,81,45,0.0 +24984,65,21.05,6,0.0 +24984,8,40,34,0.0 +24984,42,14,37,0.0 +24984,68,12.5,38,0.0 +24984,5,21.35,32,0.0 +24984,71,21.5,18,0.0 +24984,45,9.5,20,0.0 +24984,29,123.79,1,0.0 +24984,14,23.25,26,0.0 +24984,15,15.5,8,0.0 +24984,58,13.25,11,0.0 +24985,43,46,28,0.0 +24985,32,32,13,0.0 +24985,8,40,16,0.0 +24985,64,33.25,31,0.0 +24985,3,10,42,0.0 +24985,47,9.5,29,0.0 +24985,68,12.5,26,0.0 +24985,11,21,9,0.0 +24985,28,45.6,30,0.0 +24985,31,12.5,27,0.0 +24985,51,53,1,0.0 +24985,12,38,31,0.0 +24985,35,18,47,0.0 +24985,75,7.75,17,0.0 +24985,15,15.5,5,0.0 +24985,30,25.89,22,0.0 +24985,50,16.25,34,0.0 +24985,9,97,42,0.0 +24985,72,34.8,10,0.0 +24985,66,17,36,0.0 +24985,77,13,10,0.0 +24985,55,24,45,0.0 +24985,70,15,45,0.0 +24985,5,21.35,44,0.0 +24985,41,9.65,24,0.0 +24985,44,19.45,8,0.0 +24985,6,25,42,0.0 +24985,10,31,40,0.0 +24985,17,39,13,0.0 +24985,71,21.5,35,0.0 +24985,40,18.4,19,0.0 +24985,14,23.25,18,0.0 +24985,58,13.25,10,0.0 +24985,1,18,14,0.0 +24985,49,20,45,0.0 +24985,63,43.9,44,0.0 +24985,37,26,15,0.0 +24986,53,32.8,39,0.0 +24986,48,12.75,25,0.0 +24986,29,123.79,18,0.0 +24986,26,31.23,12,0.0 +24986,28,45.6,38,0.0 +24986,13,6,44,0.0 +24986,38,263.5,6,0.0 +24986,3,10,9,0.0 +24986,11,21,47,0.0 +24986,60,34,43,0.0 +24986,57,19.5,19,0.0 +24986,72,34.8,36,0.0 +24986,73,15,11,0.0 +24986,10,31,26,0.0 +24986,77,13,15,0.0 +24986,4,22,41,0.0 +24986,25,14,21,0.0 +24986,47,9.5,2,0.0 +24986,45,9.5,21,0.0 +24986,35,18,17,0.0 +24986,58,13.25,4,0.0 +24986,27,43.9,4,0.0 +24986,24,4.5,37,0.0 +24986,23,9,20,0.0 +24986,49,20,50,0.0 +24986,59,55,17,0.0 +24986,40,18.4,44,0.0 +24986,68,12.5,17,0.0 +24986,41,9.65,15,0.0 +24986,67,14,7,0.0 +24986,56,38,48,0.0 +24986,31,12.5,43,0.0 +24986,46,12,26,0.0 +24986,65,21.05,25,0.0 +24986,42,14,43,0.0 +24986,16,17.45,44,0.0 +24986,9,97,33,0.0 +24986,66,17,48,0.0 +24986,20,81,49,0.0 +24986,52,7,14,0.0 +24986,30,25.89,24,0.0 +24986,76,18,4,0.0 +24986,37,26,9,0.0 +24986,22,21,26,0.0 +24986,34,14,34,0.0 +24986,71,21.5,3,0.0 +24986,32,32,37,0.0 +24986,1,18,26,0.0 +24986,61,28.5,17,0.0 +24986,7,30,10,0.0 +24986,39,18,7,0.0 +24986,14,23.25,38,0.0 +24986,18,62.5,34,0.0 +24986,5,21.35,35,0.0 +24986,44,19.45,1,0.0 +24986,36,19,16,0.0 +24986,19,9.2,45,0.0 +24986,21,10,24,0.0 +24986,74,10,14,0.0 +24986,33,2.5,5,0.0 +24986,12,38,47,0.0 +24986,55,24,41,0.0 +24986,64,33.25,37,0.0 +24986,43,46,35,0.0 +24986,17,39,35,0.0 +24986,8,40,29,0.0 +24987,31,12.5,8,0.0 +24987,36,19,27,0.0 +24987,17,39,32,0.0 +24987,32,32,18,0.0 +24987,8,40,31,0.0 +24987,14,23.25,30,0.0 +24987,2,19,7,0.0 +24987,12,38,24,0.0 +24987,25,14,16,0.0 +24987,76,18,15,0.0 +24987,64,33.25,1,0.0 +24987,55,24,32,0.0 +24987,54,7.45,15,0.0 +24987,1,18,43,0.0 +24987,22,21,40,0.0 +24987,61,28.5,42,0.0 +24987,60,34,29,0.0 +24987,18,62.5,32,0.0 +24987,24,4.5,27,0.0 +24987,21,10,43,0.0 +24987,7,30,7,0.0 +24987,26,31.23,19,0.0 +24987,10,31,25,0.0 +24987,23,9,30,0.0 +24987,69,36,44,0.0 +24987,56,38,18,0.0 +24987,19,9.2,9,0.0 +24987,66,17,42,0.0 +24987,67,14,31,0.0 +24987,57,19.5,10,0.0 +24987,4,22,47,0.0 +24987,50,16.25,24,0.0 +24987,70,15,41,0.0 +24987,51,53,25,0.0 +24987,73,15,21,0.0 +24987,42,14,43,0.0 +24988,69,36,44,0.0 +24988,32,32,41,0.0 +24988,14,23.25,35,0.0 +24988,55,24,25,0.0 +24988,25,14,28,0.0 +24988,63,43.9,34,0.0 +24988,47,9.5,13,0.0 +24988,19,9.2,43,0.0 +24988,3,10,39,0.0 +24988,30,25.89,3,0.0 +24988,6,25,6,0.0 +24988,39,18,43,0.0 +24988,59,55,43,0.0 +24988,48,12.75,26,0.0 +24988,13,6,33,0.0 +24988,4,22,15,0.0 +24988,35,18,35,0.0 +24988,28,45.6,19,0.0 +24988,57,19.5,26,0.0 +24988,76,18,50,0.0 +24988,49,20,17,0.0 +24988,77,13,15,0.0 +24988,41,9.65,22,0.0 +24988,50,16.25,21,0.0 +24988,18,62.5,42,0.0 +24988,24,4.5,21,0.0 +24988,56,38,42,0.0 +24988,74,10,7,0.0 +24989,2,19,14,0.0 +24989,34,14,9,0.0 +24989,19,9.2,40,0.0 +24989,59,55,28,0.0 +24989,18,62.5,19,0.0 +24989,74,10,43,0.0 +24989,40,18.4,35,0.0 +24989,22,21,1,0.0 +24989,27,43.9,5,0.0 +24989,71,21.5,4,0.0 +24989,49,20,47,0.0 +24989,61,28.5,46,0.0 +24989,21,10,5,0.0 +24989,75,7.75,37,0.0 +24989,35,18,7,0.0 +24989,29,123.79,7,0.0 +24989,55,24,48,0.0 +24989,36,19,22,0.0 +24989,32,32,31,0.0 +24989,33,2.5,21,0.0 +24989,10,31,21,0.0 +24989,47,9.5,22,0.0 +24989,73,15,26,0.0 +24989,63,43.9,6,0.0 +24989,77,13,18,0.0 +24989,62,49.3,40,0.0 +24989,42,14,43,0.0 +24989,57,19.5,41,0.0 +24989,54,7.45,21,0.0 +24989,58,13.25,36,0.0 +24990,75,7.75,4,0.0 +24990,6,25,29,0.0 +24990,39,18,6,0.0 +24990,73,15,1,0.0 +24990,72,34.8,9,0.0 +24990,3,10,1,0.0 +24990,31,12.5,19,0.0 +24990,40,18.4,39,0.0 +24990,55,24,29,0.0 +24990,29,123.79,48,0.0 +24990,8,40,50,0.0 +24990,27,43.9,6,0.0 +24990,70,15,4,0.0 +24990,9,97,50,0.0 +24990,10,31,41,0.0 +24990,22,21,25,0.0 +24990,16,17.45,12,0.0 +24990,21,10,26,0.0 +24990,12,38,30,0.0 +24990,24,4.5,42,0.0 +24990,1,18,41,0.0 +24990,13,6,37,0.0 +24990,28,45.6,25,0.0 +24990,63,43.9,14,0.0 +24990,71,21.5,36,0.0 +24990,56,38,27,0.0 +24990,5,21.35,41,0.0 +24990,46,12,39,0.0 +24990,41,9.65,44,0.0 +24990,19,9.2,2,0.0 +24990,65,21.05,31,0.0 +24990,36,19,9,0.0 +24990,32,32,40,0.0 +24990,11,21,24,0.0 +24990,67,14,39,0.0 +24990,66,17,18,0.0 +24990,42,14,45,0.0 +24990,50,16.25,5,0.0 +24990,69,36,28,0.0 +24990,15,15.5,7,0.0 +24991,37,26,4,0.0 +24991,10,31,20,0.0 +24992,46,12,35,0.0 +24992,7,30,14,0.0 +24992,71,21.5,18,0.0 +24992,30,25.89,25,0.0 +24992,6,25,26,0.0 +24992,62,49.3,29,0.0 +24992,16,17.45,19,0.0 +24992,26,31.23,23,0.0 +24992,3,10,39,0.0 +24992,59,55,44,0.0 +24992,77,13,24,0.0 +24992,11,21,29,0.0 +24992,15,15.5,36,0.0 +24992,45,9.5,22,0.0 +24992,25,14,10,0.0 +24992,54,7.45,39,0.0 +24992,43,46,5,0.0 +24992,70,15,45,0.0 +24992,56,38,23,0.0 +24992,57,19.5,12,0.0 +24992,63,43.9,21,0.0 +24992,37,26,28,0.0 +24993,53,32.8,20,0.0 +24993,46,12,11,0.0 +24993,47,9.5,23,0.0 +24993,1,18,44,0.0 +24993,17,39,50,0.0 +24993,15,15.5,48,0.0 +24993,28,45.6,4,0.0 +24993,16,17.45,22,0.0 +24993,43,46,14,0.0 +24993,73,15,3,0.0 +24993,52,7,23,0.0 +24993,14,23.25,17,0.0 +24993,71,21.5,3,0.0 +24993,31,12.5,19,0.0 +24993,75,7.75,18,0.0 +24993,76,18,12,0.0 +24993,26,31.23,32,0.0 +24993,50,16.25,9,0.0 +24993,27,43.9,29,0.0 +24993,61,28.5,7,0.0 +24993,66,17,49,0.0 +24993,7,30,11,0.0 +24993,67,14,38,0.0 +24993,37,26,36,0.0 +24993,9,97,27,0.0 +24993,58,13.25,12,0.0 +24993,54,7.45,3,0.0 +24993,32,32,17,0.0 +24993,49,20,8,0.0 +24993,51,53,11,0.0 +24993,2,19,25,0.0 +24993,62,49.3,7,0.0 +24993,34,14,3,0.0 +24993,70,15,37,0.0 +24993,18,62.5,21,0.0 +24993,60,34,34,0.0 +24993,35,18,6,0.0 +24993,42,14,40,0.0 +24993,12,38,3,0.0 +24993,25,14,4,0.0 +24993,13,6,43,0.0 +24993,40,18.4,47,0.0 +24993,72,34.8,32,0.0 +24993,55,24,14,0.0 +24993,29,123.79,25,0.0 +24993,41,9.65,24,0.0 +24993,63,43.9,49,0.0 +24993,30,25.89,16,0.0 +24993,4,22,1,0.0 +24993,33,2.5,50,0.0 +24993,57,19.5,47,0.0 +24993,44,19.45,23,0.0 +24993,65,21.05,47,0.0 +24993,48,12.75,31,0.0 +24994,74,10,10,0.0 +24994,73,15,47,0.0 +24994,56,38,7,0.0 +24994,20,81,19,0.0 +24994,46,12,37,0.0 +24994,29,123.79,27,0.0 +24994,70,15,17,0.0 +24994,55,24,12,0.0 +24994,63,43.9,22,0.0 +24994,33,2.5,3,0.0 +24994,15,15.5,23,0.0 +24994,31,12.5,14,0.0 +24994,49,20,32,0.0 +24994,32,32,46,0.0 +24994,39,18,24,0.0 +24994,9,97,10,0.0 +24994,52,7,20,0.0 +24994,48,12.75,33,0.0 +24994,50,16.25,38,0.0 +24994,37,26,16,0.0 +24994,57,19.5,25,0.0 +24994,19,9.2,1,0.0 +24994,18,62.5,8,0.0 +24994,3,10,46,0.0 +24994,44,19.45,33,0.0 +24994,41,9.65,42,0.0 +24994,47,9.5,36,0.0 +24994,68,12.5,43,0.0 +24994,28,45.6,45,0.0 +24994,1,18,5,0.0 +24994,8,40,47,0.0 +24994,5,21.35,25,0.0 +24994,13,6,41,0.0 +24994,30,25.89,28,0.0 +24994,35,18,30,0.0 +24994,72,34.8,15,0.0 +24994,11,21,43,0.0 +24994,21,10,22,0.0 +24994,66,17,42,0.0 +24994,10,31,35,0.0 +24994,7,30,21,0.0 +24994,24,4.5,47,0.0 +24994,71,21.5,23,0.0 +24994,45,9.5,37,0.0 +24994,60,34,47,0.0 +24994,69,36,10,0.0 +24995,77,13,38,0.0 +24995,44,19.45,5,0.0 +24995,32,32,48,0.0 +24995,72,34.8,1,0.0 +24995,8,40,13,0.0 +24995,2,19,33,0.0 +24995,51,53,13,0.0 +24995,6,25,21,0.0 +24995,75,7.75,50,0.0 +24995,35,18,40,0.0 +24995,68,12.5,24,0.0 +24995,49,20,50,0.0 +24995,76,18,37,0.0 +24995,26,31.23,50,0.0 +24995,69,36,11,0.0 +24995,66,17,14,0.0 +24995,55,24,5,0.0 +24995,16,17.45,13,0.0 +24995,67,14,12,0.0 +24995,46,12,30,0.0 +24995,1,18,3,0.0 +24995,17,39,27,0.0 +24995,11,21,30,0.0 +24995,36,19,32,0.0 +24995,59,55,37,0.0 +24995,54,7.45,22,0.0 +24995,29,123.79,10,0.0 +24995,5,21.35,37,0.0 +24995,9,97,2,0.0 +24995,23,9,6,0.0 +24995,14,23.25,2,0.0 +24995,57,19.5,8,0.0 +24995,61,28.5,10,0.0 +24995,10,31,27,0.0 +24995,34,14,14,0.0 +24995,24,4.5,25,0.0 +24995,42,14,9,0.0 +24995,28,45.6,24,0.0 +24995,40,18.4,35,0.0 +24995,63,43.9,27,0.0 +24995,4,22,4,0.0 +24995,22,21,46,0.0 +24995,53,32.8,10,0.0 +24995,74,10,10,0.0 +24995,31,12.5,27,0.0 +24995,25,14,46,0.0 +24995,39,18,16,0.0 +24995,64,33.25,32,0.0 +24995,12,38,31,0.0 +24995,18,62.5,14,0.0 +24995,62,49.3,37,0.0 +24996,41,9.65,16,0.0 +24996,21,10,10,0.0 +24996,43,46,18,0.0 +24996,5,21.35,44,0.0 +24996,11,21,4,0.0 +24996,31,12.5,17,0.0 +24996,52,7,30,0.0 +24996,69,36,32,0.0 +24996,10,31,23,0.0 +24996,76,18,44,0.0 +24996,46,12,37,0.0 +24996,60,34,5,0.0 +24996,44,19.45,46,0.0 +24996,2,19,22,0.0 +24996,67,14,12,0.0 +24996,74,10,48,0.0 +24996,55,24,25,0.0 +24996,38,263.5,16,0.0 +24996,70,15,11,0.0 +24996,50,16.25,19,0.0 +24996,12,38,36,0.0 +24996,36,19,32,0.0 +24996,61,28.5,1,0.0 +24996,72,34.8,49,0.0 +24996,9,97,5,0.0 +24996,20,81,49,0.0 +24996,25,14,49,0.0 +24996,42,14,23,0.0 +24997,63,43.9,22,0.0 +24997,11,21,16,0.0 +24997,26,31.23,8,0.0 +24997,21,10,48,0.0 +24997,40,18.4,3,0.0 +24997,47,9.5,43,0.0 +24997,35,18,23,0.0 +24997,59,55,27,0.0 +24997,3,10,6,0.0 +24997,41,9.65,16,0.0 +24997,37,26,14,0.0 +24997,39,18,35,0.0 +24997,77,13,38,0.0 +24997,49,20,45,0.0 +24997,7,30,6,0.0 +24997,15,15.5,40,0.0 +24997,70,15,3,0.0 +24997,48,12.75,47,0.0 +24997,12,38,37,0.0 +24997,60,34,44,0.0 +24997,14,23.25,45,0.0 +24997,64,33.25,14,0.0 +24997,76,18,19,0.0 +24997,67,14,7,0.0 +24997,19,9.2,5,0.0 +24997,57,19.5,36,0.0 +24997,73,15,5,0.0 +24997,31,12.5,7,0.0 +24997,20,81,3,0.0 +24997,24,4.5,10,0.0 +24997,33,2.5,18,0.0 +24997,10,31,5,0.0 +24997,27,43.9,48,0.0 +24997,16,17.45,24,0.0 +24997,29,123.79,2,0.0 +24997,2,19,6,0.0 +24997,38,263.5,45,0.0 +24997,6,25,45,0.0 +24997,46,12,14,0.0 +24997,65,21.05,36,0.0 +24997,36,19,11,0.0 +24997,4,22,49,0.0 +24997,54,7.45,15,0.0 +24998,6,25,40,0.0 +24998,26,31.23,11,0.0 +24998,36,19,22,0.0 +24998,63,43.9,7,0.0 +24998,69,36,48,0.0 +24998,24,4.5,4,0.0 +24998,37,26,38,0.0 +24998,64,33.25,41,0.0 +24998,60,34,1,0.0 +24998,47,9.5,42,0.0 +24998,42,14,27,0.0 +24998,25,14,36,0.0 +24998,75,7.75,20,0.0 +24998,1,18,9,0.0 +24998,48,12.75,11,0.0 +24998,20,81,19,0.0 +24998,61,28.5,2,0.0 +24998,71,21.5,28,0.0 +24998,22,21,42,0.0 +24998,12,38,38,0.0 +24998,55,24,10,0.0 +24998,52,7,2,0.0 +24998,18,62.5,3,0.0 +24998,72,34.8,22,0.0 +24998,11,21,29,0.0 +24998,8,40,44,0.0 +24998,58,13.25,42,0.0 +24998,68,12.5,25,0.0 +24998,32,32,27,0.0 +24998,27,43.9,48,0.0 +24999,8,40,39,0.0 +24999,47,9.5,48,0.0 +24999,49,20,40,0.0 +24999,77,13,44,0.0 +24999,74,10,13,0.0 +24999,10,31,35,0.0 +24999,72,34.8,32,0.0 +24999,53,32.8,23,0.0 +24999,39,18,19,0.0 +24999,18,62.5,7,0.0 +24999,64,33.25,16,0.0 +24999,48,12.75,46,0.0 +24999,37,26,16,0.0 +24999,36,19,1,0.0 +24999,25,14,43,0.0 +24999,11,21,20,0.0 +24999,57,19.5,49,0.0 +24999,68,12.5,35,0.0 +24999,6,25,37,0.0 +24999,58,13.25,5,0.0 +24999,42,14,44,0.0 +24999,54,7.45,9,0.0 +24999,67,14,22,0.0 +24999,27,43.9,34,0.0 +24999,30,25.89,22,0.0 +24999,7,30,44,0.0 +24999,69,36,3,0.0 +24999,12,38,18,0.0 +24999,55,24,3,0.0 +25000,16,17.45,45,0.0 +25000,64,33.25,8,0.0 +25000,54,7.45,29,0.0 +25000,76,18,8,0.0 +25000,2,19,8,0.0 +25000,44,19.45,11,0.0 +25000,47,9.5,50,0.0 +25000,58,13.25,33,0.0 +25000,20,81,46,0.0 +25000,62,49.3,16,0.0 +25000,12,38,21,0.0 +25000,57,19.5,49,0.0 +25000,52,7,23,0.0 +25000,22,21,27,0.0 +25000,3,10,3,0.0 +25000,18,62.5,26,0.0 +25000,61,28.5,41,0.0 +25000,14,23.25,17,0.0 +25000,23,9,31,0.0 +25000,9,97,6,0.0 +25000,67,14,41,0.0 +25000,51,53,10,0.0 +25000,60,34,47,0.0 +25000,28,45.6,3,0.0 +25000,50,16.25,19,0.0 +25000,30,25.89,17,0.0 +25000,5,21.35,30,0.0 +25000,75,7.75,12,0.0 +25000,73,15,22,0.0 +25000,65,21.05,45,0.0 +25000,77,13,30,0.0 +25000,31,12.5,40,0.0 +25000,1,18,39,0.0 +25000,32,32,50,0.0 +25000,4,22,3,0.0 +25000,68,12.5,30,0.0 +25000,45,9.5,7,0.0 +25000,13,6,9,0.0 +25000,10,31,14,0.0 +25000,27,43.9,36,0.0 +25000,6,25,9,0.0 +25000,46,12,13,0.0 +25000,26,31.23,47,0.0 +25000,41,9.65,32,0.0 +25000,15,15.5,5,0.0 +25000,21,10,4,0.0 +25000,17,39,8,0.0 +25000,8,40,35,0.0 +25000,71,21.5,10,0.0 +25000,33,2.5,42,0.0 +25000,39,18,39,0.0 +25000,74,10,16,0.0 +25000,25,14,25,0.0 +25000,40,18.4,34,0.0 +25000,49,20,11,0.0 +25001,70,15,27,0.0 +25001,12,38,39,0.0 +25001,38,263.5,16,0.0 +25001,11,21,3,0.0 +25001,71,21.5,37,0.0 +25001,69,36,33,0.0 +25001,60,34,3,0.0 +25001,24,4.5,5,0.0 +25001,15,15.5,43,0.0 +25001,17,39,47,0.0 +25001,13,6,10,0.0 +25001,7,30,6,0.0 +25001,77,13,8,0.0 +25002,69,36,30,0.0 +25002,18,62.5,10,0.0 +25002,47,9.5,3,0.0 +25002,11,21,47,0.0 +25002,49,20,27,0.0 +25002,28,45.6,44,0.0 +25002,56,38,42,0.0 +25002,59,55,16,0.0 +25002,35,18,33,0.0 +25002,64,33.25,5,0.0 +25002,2,19,8,0.0 +25002,67,14,14,0.0 +25002,31,12.5,13,0.0 +25002,10,31,47,0.0 +25002,5,21.35,31,0.0 +25002,15,15.5,25,0.0 +25002,48,12.75,24,0.0 +25002,12,38,35,0.0 +25002,30,25.89,50,0.0 +25002,21,10,2,0.0 +25002,8,40,11,0.0 +25002,41,9.65,27,0.0 +25002,53,32.8,24,0.0 +25002,52,7,2,0.0 +25002,26,31.23,1,0.0 +25002,46,12,48,0.0 +25002,36,19,30,0.0 +25002,34,14,38,0.0 +25002,54,7.45,38,0.0 +25002,74,10,4,0.0 +25002,76,18,40,0.0 +25002,51,53,9,0.0 +25002,70,15,23,0.0 +25002,29,123.79,18,0.0 +25002,71,21.5,22,0.0 +25002,16,17.45,24,0.0 +25002,25,14,47,0.0 +25002,4,22,49,0.0 +25002,75,7.75,5,0.0 +25002,57,19.5,4,0.0 +25002,50,16.25,27,0.0 +25002,24,4.5,21,0.0 +25002,61,28.5,42,0.0 +25002,23,9,1,0.0 +25002,32,32,31,0.0 +25002,63,43.9,7,0.0 +25002,62,49.3,9,0.0 +25002,33,2.5,36,0.0 +25002,45,9.5,18,0.0 +25002,43,46,45,0.0 +25002,6,25,3,0.0 +25002,77,13,20,0.0 +25002,9,97,32,0.0 +25002,17,39,16,0.0 +25002,44,19.45,30,0.0 +25002,55,24,2,0.0 +25002,65,21.05,21,0.0 +25002,1,18,9,0.0 +25002,13,6,15,0.0 +25002,40,18.4,1,0.0 +25002,27,43.9,24,0.0 +25002,7,30,29,0.0 +25002,37,26,20,0.0 +25002,42,14,35,0.0 +25002,66,17,17,0.0 +25002,19,9.2,41,0.0 +25002,39,18,22,0.0 +25002,60,34,32,0.0 +25002,14,23.25,43,0.0 +25002,58,13.25,7,0.0 +25002,20,81,49,0.0 +25002,73,15,35,0.0 +25002,68,12.5,48,0.0 +25002,38,263.5,28,0.0 +25002,22,21,47,0.0 +25002,3,10,10,0.0 +25003,57,19.5,23,0.0 +25003,11,21,12,0.0 +25003,45,9.5,16,0.0 +25003,50,16.25,25,0.0 +25003,29,123.79,40,0.0 +25003,21,10,46,0.0 +25003,33,2.5,22,0.0 +25003,41,9.65,3,0.0 +25003,40,18.4,23,0.0 +25003,5,21.35,31,0.0 +25003,60,34,42,0.0 +25003,35,18,38,0.0 +25003,20,81,11,0.0 +25003,1,18,26,0.0 +25003,22,21,18,0.0 +25003,16,17.45,40,0.0 +25003,48,12.75,20,0.0 +25003,73,15,28,0.0 +25003,74,10,37,0.0 +25003,75,7.75,19,0.0 +25003,10,31,27,0.0 +25003,42,14,9,0.0 +25003,54,7.45,3,0.0 +25003,66,17,31,0.0 +25003,68,12.5,20,0.0 +25003,14,23.25,12,0.0 +25003,58,13.25,42,0.0 +25003,72,34.8,49,0.0 +25003,6,25,15,0.0 +25003,3,10,17,0.0 +25003,53,32.8,2,0.0 +25003,2,19,8,0.0 +25003,4,22,6,0.0 +25003,25,14,26,0.0 +25003,13,6,25,0.0 +25003,64,33.25,48,0.0 +25003,69,36,42,0.0 +25003,43,46,38,0.0 +25003,67,14,9,0.0 +25003,47,9.5,11,0.0 +25003,62,49.3,32,0.0 +25003,38,263.5,32,0.0 +25003,61,28.5,39,0.0 +25003,39,18,19,0.0 +25003,30,25.89,25,0.0 +25003,44,19.45,42,0.0 +25003,18,62.5,28,0.0 +25003,31,12.5,18,0.0 +25003,27,43.9,28,0.0 +25003,59,55,14,0.0 +25003,7,30,10,0.0 +25003,34,14,19,0.0 +25003,9,97,11,0.0 +25003,55,24,22,0.0 +25003,32,32,22,0.0 +25003,49,20,38,0.0 +25003,28,45.6,14,0.0 +25003,46,12,19,0.0 +25003,56,38,41,0.0 +25003,77,13,32,0.0 +25003,15,15.5,16,0.0 +25003,8,40,19,0.0 +25003,19,9.2,33,0.0 +25003,65,21.05,23,0.0 +25003,71,21.5,36,0.0 +25003,76,18,30,0.0 +25003,12,38,44,0.0 +25003,26,31.23,9,0.0 +25003,36,19,21,0.0 +25003,70,15,25,0.0 +25003,23,9,26,0.0 +25003,37,26,27,0.0 +25003,17,39,23,0.0 +25003,63,43.9,15,0.0 +25004,17,39,42,0.0 +25004,11,21,7,0.0 +25004,52,7,49,0.0 +25004,37,26,19,0.0 +25004,12,38,40,0.0 +25004,6,25,29,0.0 +25004,43,46,30,0.0 +25004,9,97,37,0.0 +25004,24,4.5,7,0.0 +25004,1,18,27,0.0 +25004,74,10,2,0.0 +25004,31,12.5,12,0.0 +25004,60,34,19,0.0 +25004,55,24,20,0.0 +25004,28,45.6,13,0.0 +25004,36,19,32,0.0 +25004,32,32,20,0.0 +25004,39,18,48,0.0 +25004,15,15.5,44,0.0 +25004,68,12.5,12,0.0 +25004,30,25.89,40,0.0 +25004,3,10,2,0.0 +25004,53,32.8,6,0.0 +25004,75,7.75,11,0.0 +25004,46,12,42,0.0 +25004,40,18.4,1,0.0 +25004,16,17.45,3,0.0 +25004,41,9.65,47,0.0 +25004,63,43.9,41,0.0 +25004,25,14,34,0.0 +25004,13,6,21,0.0 +25004,14,23.25,17,0.0 +25004,33,2.5,40,0.0 +25004,22,21,26,0.0 +25004,50,16.25,48,0.0 +25004,51,53,1,0.0 +25004,66,17,1,0.0 +25004,34,14,32,0.0 +25004,59,55,4,0.0 +25004,48,12.75,24,0.0 +25005,61,28.5,1,0.0 +25005,19,9.2,17,0.0 +25005,63,43.9,37,0.0 +25005,48,12.75,46,0.0 +25005,74,10,4,0.0 +25005,10,31,35,0.0 +25005,72,34.8,39,0.0 +25005,7,30,2,0.0 +25005,71,21.5,21,0.0 +25005,35,18,25,0.0 +25005,53,32.8,35,0.0 +25005,15,15.5,44,0.0 +25005,58,13.25,30,0.0 +25005,65,21.05,9,0.0 +25005,20,81,21,0.0 +25005,25,14,7,0.0 +25005,39,18,45,0.0 +25005,9,97,16,0.0 +25005,55,24,28,0.0 +25005,77,13,24,0.0 +25005,73,15,1,0.0 +25005,3,10,5,0.0 +25005,8,40,16,0.0 +25005,28,45.6,16,0.0 +25005,26,31.23,32,0.0 +25005,40,18.4,43,0.0 +25005,70,15,19,0.0 +25005,31,12.5,10,0.0 +25005,21,10,19,0.0 +25005,24,4.5,49,0.0 +25005,50,16.25,39,0.0 +25005,68,12.5,27,0.0 +25005,66,17,11,0.0 +25005,18,62.5,15,0.0 +25005,41,9.65,44,0.0 +25005,37,26,10,0.0 +25005,5,21.35,50,0.0 +25005,45,9.5,7,0.0 +25005,44,19.45,18,0.0 +25005,59,55,24,0.0 +25005,1,18,37,0.0 +25005,33,2.5,7,0.0 +25005,76,18,5,0.0 +25005,75,7.75,7,0.0 +25005,47,9.5,41,0.0 +25005,56,38,31,0.0 +25005,6,25,21,0.0 +25005,57,19.5,45,0.0 +25005,38,263.5,19,0.0 +25005,2,19,30,0.0 +25005,16,17.45,3,0.0 +25005,60,34,12,0.0 +25005,51,53,12,0.0 +25005,29,123.79,23,0.0 +25005,30,25.89,6,0.0 +25005,12,38,16,0.0 +25005,54,7.45,2,0.0 +25005,11,21,16,0.0 +25005,64,33.25,35,0.0 +25005,49,20,31,0.0 +25005,36,19,17,0.0 +25005,52,7,42,0.0 +25006,19,9.2,44,0.0 +25006,10,31,2,0.0 +25006,51,53,47,0.0 +25006,44,19.45,39,0.0 +25006,14,23.25,12,0.0 +25006,9,97,27,0.0 +25006,66,17,20,0.0 +25006,27,43.9,6,0.0 +25006,4,22,6,0.0 +25006,72,34.8,30,0.0 +25006,7,30,25,0.0 +25006,18,62.5,9,0.0 +25006,68,12.5,47,0.0 +25006,50,16.25,20,0.0 +25006,56,38,23,0.0 +25006,40,18.4,3,0.0 +25006,25,14,29,0.0 +25006,52,7,48,0.0 +25006,24,4.5,38,0.0 +25006,37,26,15,0.0 +25006,70,15,5,0.0 +25006,15,15.5,19,0.0 +25006,55,24,18,0.0 +25007,14,23.25,35,0.0 +25007,20,81,23,0.0 +25007,2,19,12,0.0 +25007,76,18,34,0.0 +25007,66,17,29,0.0 +25007,57,19.5,24,0.0 +25007,28,45.6,40,0.0 +25007,30,25.89,12,0.0 +25007,6,25,1,0.0 +25007,60,34,12,0.0 +25007,37,26,28,0.0 +25007,63,43.9,26,0.0 +25007,75,7.75,38,0.0 +25007,73,15,49,0.0 +25007,3,10,8,0.0 +25007,70,15,46,0.0 +25007,31,12.5,28,0.0 +25007,13,6,18,0.0 +25007,55,24,10,0.0 +25007,43,46,25,0.0 +25007,65,21.05,23,0.0 +25007,52,7,38,0.0 +25007,45,9.5,5,0.0 +25007,46,12,3,0.0 +25007,69,36,12,0.0 +25007,59,55,18,0.0 +25007,49,20,34,0.0 +25007,71,21.5,41,0.0 +25007,4,22,48,0.0 +25007,39,18,43,0.0 +25007,25,14,11,0.0 +25007,41,9.65,35,0.0 +25007,68,12.5,24,0.0 +25007,33,2.5,9,0.0 +25007,77,13,50,0.0 +25007,50,16.25,18,0.0 +25007,64,33.25,46,0.0 +25007,21,10,43,0.0 +25007,56,38,13,0.0 +25007,51,53,44,0.0 +25007,54,7.45,13,0.0 +25007,34,14,32,0.0 +25007,24,4.5,7,0.0 +25007,61,28.5,44,0.0 +25007,47,9.5,16,0.0 +25007,40,18.4,21,0.0 +25007,29,123.79,49,0.0 +25007,12,38,11,0.0 +25007,27,43.9,28,0.0 +25007,11,21,2,0.0 +25007,42,14,12,0.0 +25007,15,15.5,33,0.0 +25007,19,9.2,10,0.0 +25007,58,13.25,13,0.0 +25008,27,43.9,14,0.0 +25008,42,14,32,0.0 +25008,60,34,23,0.0 +25008,2,19,17,0.0 +25008,44,19.45,3,0.0 +25008,52,7,46,0.0 +25008,72,34.8,26,0.0 +25008,25,14,45,0.0 +25008,66,17,25,0.0 +25008,9,97,49,0.0 +25008,61,28.5,21,0.0 +25008,28,45.6,36,0.0 +25008,39,18,27,0.0 +25008,40,18.4,17,0.0 +25008,59,55,2,0.0 +25008,20,81,8,0.0 +25008,4,22,46,0.0 +25008,56,38,17,0.0 +25008,17,39,13,0.0 +25008,68,12.5,39,0.0 +25008,31,12.5,29,0.0 +25008,46,12,24,0.0 +25008,23,9,11,0.0 +25008,3,10,5,0.0 +25008,8,40,24,0.0 +25008,21,10,14,0.0 +25008,13,6,50,0.0 +25008,53,32.8,2,0.0 +25008,16,17.45,11,0.0 +25008,77,13,35,0.0 +25008,1,18,33,0.0 +25008,71,21.5,40,0.0 +25008,5,21.35,47,0.0 +25008,35,18,44,0.0 +25008,15,15.5,43,0.0 +25008,41,9.65,44,0.0 +25008,75,7.75,26,0.0 +25008,6,25,19,0.0 +25008,55,24,36,0.0 +25008,45,9.5,35,0.0 +25008,22,21,35,0.0 +25008,65,21.05,48,0.0 +25008,58,13.25,22,0.0 +25008,51,53,17,0.0 +25008,7,30,4,0.0 +25008,18,62.5,21,0.0 +25008,54,7.45,17,0.0 +25008,47,9.5,8,0.0 +25008,32,32,45,0.0 +25008,38,263.5,27,0.0 +25008,69,36,11,0.0 +25008,34,14,23,0.0 +25008,76,18,46,0.0 +25008,29,123.79,15,0.0 +25008,67,14,7,0.0 +25008,70,15,16,0.0 +25008,24,4.5,21,0.0 +25008,48,12.75,46,0.0 +25008,62,49.3,24,0.0 +25008,57,19.5,16,0.0 +25008,26,31.23,6,0.0 +25008,63,43.9,39,0.0 +25008,10,31,34,0.0 +25008,11,21,10,0.0 +25008,74,10,43,0.0 +25008,30,25.89,39,0.0 +25008,36,19,26,0.0 +25008,37,26,37,0.0 +25008,14,23.25,14,0.0 +25008,33,2.5,13,0.0 +25008,49,20,11,0.0 +25008,50,16.25,27,0.0 +25008,12,38,1,0.0 +25008,73,15,11,0.0 +25008,19,9.2,35,0.0 +25008,64,33.25,14,0.0 +25009,60,34,35,0.0 +25009,64,33.25,15,0.0 +25009,18,62.5,6,0.0 +25009,77,13,37,0.0 +25009,54,7.45,42,0.0 +25009,26,31.23,26,0.0 +25009,37,26,19,0.0 +25009,69,36,6,0.0 +25009,12,38,41,0.0 +25009,65,21.05,50,0.0 +25009,50,16.25,33,0.0 +25009,46,12,23,0.0 +25009,33,2.5,42,0.0 +25009,21,10,38,0.0 +25009,70,15,16,0.0 +25009,20,81,7,0.0 +25009,66,17,12,0.0 +25009,2,19,17,0.0 +25009,14,23.25,2,0.0 +25009,52,7,49,0.0 +25009,67,14,30,0.0 +25009,19,9.2,45,0.0 +25009,15,15.5,8,0.0 +25009,73,15,27,0.0 +25009,30,25.89,4,0.0 +25009,36,19,43,0.0 +25009,3,10,23,0.0 +25009,49,20,24,0.0 +25009,62,49.3,25,0.0 +25009,10,31,35,0.0 +25009,44,19.45,31,0.0 +25009,17,39,41,0.0 +25009,61,28.5,43,0.0 +25009,51,53,18,0.0 +25009,48,12.75,13,0.0 +25009,35,18,28,0.0 +25009,59,55,3,0.0 +25009,23,9,44,0.0 +25009,6,25,41,0.0 +25009,42,14,44,0.0 +25009,5,21.35,21,0.0 +25009,71,21.5,24,0.0 +25009,38,263.5,48,0.0 +25009,4,22,8,0.0 +25009,24,4.5,20,0.0 +25009,45,9.5,1,0.0 +25009,25,14,21,0.0 +25009,75,7.75,17,0.0 +25009,16,17.45,17,0.0 +25009,55,24,32,0.0 +25009,1,18,47,0.0 +25009,74,10,24,0.0 +25009,76,18,34,0.0 +25009,28,45.6,4,0.0 +25009,34,14,49,0.0 +25009,29,123.79,14,0.0 +25009,31,12.5,7,0.0 +25010,35,18,18,0.0 +25010,51,53,40,0.0 +25010,1,18,4,0.0 +25010,25,14,33,0.0 +25010,12,38,47,0.0 +25010,61,28.5,15,0.0 +25010,34,14,26,0.0 +25010,71,21.5,2,0.0 +25010,2,19,4,0.0 +25010,27,43.9,39,0.0 +25010,58,13.25,25,0.0 +25010,43,46,19,0.0 +25010,46,12,1,0.0 +25010,75,7.75,39,0.0 +25010,44,19.45,23,0.0 +25010,57,19.5,24,0.0 +25010,22,21,10,0.0 +25010,29,123.79,37,0.0 +25010,54,7.45,27,0.0 +25010,28,45.6,18,0.0 +25010,68,12.5,38,0.0 +25010,30,25.89,46,0.0 +25010,53,32.8,48,0.0 +25010,18,62.5,18,0.0 +25010,9,97,25,0.0 +25010,67,14,30,0.0 +25010,42,14,38,0.0 +25010,32,32,15,0.0 +25010,38,263.5,48,0.0 +25010,70,15,22,0.0 +25010,64,33.25,33,0.0 +25010,5,21.35,9,0.0 +25010,48,12.75,26,0.0 +25010,3,10,41,0.0 +25010,72,34.8,47,0.0 +25010,60,34,32,0.0 +25010,69,36,31,0.0 +25010,21,10,37,0.0 +25010,76,18,44,0.0 +25010,14,23.25,13,0.0 +25010,39,18,33,0.0 +25010,50,16.25,43,0.0 +25010,74,10,26,0.0 +25010,31,12.5,29,0.0 +25010,41,9.65,44,0.0 +25010,66,17,43,0.0 +25010,52,7,31,0.0 +25010,77,13,27,0.0 +25010,36,19,8,0.0 +25010,73,15,50,0.0 +25010,26,31.23,16,0.0 +25010,40,18.4,4,0.0 +25011,61,28.5,50,0.0 +25011,77,13,24,0.0 +25011,74,10,15,0.0 +25011,32,32,2,0.0 +25011,1,18,39,0.0 +25011,68,12.5,6,0.0 +25011,54,7.45,49,0.0 +25011,72,34.8,38,0.0 +25011,35,18,4,0.0 +25011,9,97,19,0.0 +25011,60,34,38,0.0 +25011,31,12.5,50,0.0 +25011,25,14,2,0.0 +25011,8,40,16,0.0 +25011,24,4.5,22,0.0 +25011,33,2.5,34,0.0 +25011,16,17.45,43,0.0 +25011,3,10,41,0.0 +25011,47,9.5,27,0.0 +25011,34,14,40,0.0 +25011,19,9.2,48,0.0 +25011,10,31,30,0.0 +25011,7,30,46,0.0 +25011,4,22,14,0.0 +25011,17,39,25,0.0 +25011,76,18,49,0.0 +25011,20,81,30,0.0 +25011,40,18.4,17,0.0 +25011,28,45.6,31,0.0 +25011,69,36,43,0.0 +25011,26,31.23,15,0.0 +25011,66,17,7,0.0 +25011,12,38,43,0.0 +25011,23,9,39,0.0 +25011,46,12,9,0.0 +25011,67,14,32,0.0 +25011,13,6,21,0.0 +25011,62,49.3,46,0.0 +25011,48,12.75,22,0.0 +25011,64,33.25,47,0.0 +25011,59,55,28,0.0 +25011,49,20,42,0.0 +25011,14,23.25,45,0.0 +25011,51,53,46,0.0 +25011,22,21,31,0.0 +25011,42,14,36,0.0 +25011,6,25,47,0.0 +25011,43,46,28,0.0 +25011,11,21,1,0.0 +25011,44,19.45,44,0.0 +25011,65,21.05,44,0.0 +25011,71,21.5,20,0.0 +25011,39,18,38,0.0 +25011,75,7.75,24,0.0 +25012,54,7.45,39,0.0 +25012,5,21.35,31,0.0 +25012,28,45.6,44,0.0 +25012,50,16.25,30,0.0 +25012,74,10,1,0.0 +25012,11,21,41,0.0 +25012,70,15,21,0.0 +25012,55,24,34,0.0 +25012,41,9.65,46,0.0 +25012,62,49.3,3,0.0 +25012,66,17,49,0.0 +25012,37,26,13,0.0 +25012,73,15,48,0.0 +25012,3,10,7,0.0 +25012,4,22,49,0.0 +25012,77,13,11,0.0 +25012,33,2.5,14,0.0 +25012,14,23.25,28,0.0 +25012,34,14,19,0.0 +25012,9,97,1,0.0 +25012,65,21.05,19,0.0 +25012,60,34,14,0.0 +25012,43,46,18,0.0 +25012,23,9,37,0.0 +25012,45,9.5,39,0.0 +25012,53,32.8,6,0.0 +25012,40,18.4,16,0.0 +25012,64,33.25,48,0.0 +25012,12,38,17,0.0 +25012,2,19,45,0.0 +25012,30,25.89,21,0.0 +25012,39,18,8,0.0 +25012,17,39,18,0.0 +25013,14,23.25,33,0.0 +25013,32,32,5,0.0 +25013,71,21.5,45,0.0 +25013,26,31.23,17,0.0 +25013,35,18,47,0.0 +25013,76,18,28,0.0 +25013,31,12.5,42,0.0 +25013,9,97,15,0.0 +25013,8,40,30,0.0 +25014,45,9.5,12,0.0 +25014,10,31,6,0.0 +25014,46,12,39,0.0 +25014,54,7.45,35,0.0 +25014,30,25.89,30,0.0 +25014,5,21.35,44,0.0 +25014,70,15,43,0.0 +25014,28,45.6,34,0.0 +25014,23,9,15,0.0 +25014,72,34.8,25,0.0 +25014,1,18,27,0.0 +25014,48,12.75,50,0.0 +25014,71,21.5,30,0.0 +25014,74,10,4,0.0 +25014,27,43.9,24,0.0 +25014,40,18.4,40,0.0 +25014,50,16.25,35,0.0 +25014,37,26,49,0.0 +25014,19,9.2,12,0.0 +25014,77,13,16,0.0 +25014,43,46,1,0.0 +25014,39,18,18,0.0 +25014,44,19.45,25,0.0 +25014,12,38,22,0.0 +25014,32,32,4,0.0 +25014,68,12.5,37,0.0 +25014,52,7,37,0.0 +25014,6,25,25,0.0 +25014,69,36,14,0.0 +25014,59,55,48,0.0 +25014,14,23.25,47,0.0 +25014,75,7.75,11,0.0 +25014,20,81,3,0.0 +25014,58,13.25,9,0.0 +25014,9,97,1,0.0 +25014,55,24,35,0.0 +25014,18,62.5,21,0.0 +25014,2,19,39,0.0 +25014,33,2.5,40,0.0 +25014,65,21.05,10,0.0 +25014,35,18,44,0.0 +25014,36,19,16,0.0 +25014,3,10,34,0.0 +25014,34,14,15,0.0 +25014,47,9.5,14,0.0 +25014,15,15.5,33,0.0 +25014,76,18,32,0.0 +25014,16,17.45,1,0.0 +25014,22,21,34,0.0 +25014,29,123.79,31,0.0 +25014,13,6,13,0.0 +25014,57,19.5,16,0.0 +25014,26,31.23,40,0.0 +25014,67,14,35,0.0 +25014,62,49.3,8,0.0 +25014,21,10,32,0.0 +25014,8,40,5,0.0 +25014,17,39,46,0.0 +25014,25,14,1,0.0 +25015,51,53,47,0.0 +25015,52,7,46,0.0 +25015,36,19,42,0.0 +25015,25,14,25,0.0 +25015,8,40,22,0.0 +25015,17,39,7,0.0 +25015,71,21.5,19,0.0 +25015,55,24,22,0.0 +25015,54,7.45,7,0.0 +25015,67,14,42,0.0 +25015,39,18,21,0.0 +25015,24,4.5,38,0.0 +25015,45,9.5,3,0.0 +25015,4,22,10,0.0 +25015,77,13,9,0.0 +25015,13,6,46,0.0 +25015,11,21,49,0.0 +25015,43,46,35,0.0 +25015,70,15,29,0.0 +25015,22,21,26,0.0 +25015,68,12.5,27,0.0 +25015,14,23.25,45,0.0 +25015,23,9,48,0.0 +25015,47,9.5,47,0.0 +25015,53,32.8,50,0.0 +25015,12,38,26,0.0 +25015,61,28.5,31,0.0 +25015,29,123.79,32,0.0 +25015,63,43.9,21,0.0 +25015,58,13.25,28,0.0 +25015,65,21.05,28,0.0 +25015,76,18,25,0.0 +25015,3,10,15,0.0 +25015,33,2.5,18,0.0 +25015,41,9.65,48,0.0 +25015,59,55,14,0.0 +25015,28,45.6,39,0.0 +25015,50,16.25,9,0.0 +25015,2,19,1,0.0 +25015,49,20,19,0.0 +25015,62,49.3,36,0.0 +25015,56,38,1,0.0 +25015,38,263.5,18,0.0 +25015,15,15.5,7,0.0 +25015,30,25.89,30,0.0 +25015,75,7.75,4,0.0 +25015,10,31,24,0.0 +25015,34,14,29,0.0 +25015,60,34,9,0.0 +25015,37,26,12,0.0 +25015,31,12.5,31,0.0 +25015,74,10,23,0.0 +25015,40,18.4,15,0.0 +25015,9,97,12,0.0 +25015,32,32,6,0.0 +25015,18,62.5,11,0.0 +25015,69,36,21,0.0 +25015,26,31.23,45,0.0 +25015,16,17.45,17,0.0 +25015,19,9.2,12,0.0 +25015,48,12.75,46,0.0 +25015,64,33.25,42,0.0 +25016,22,21,48,0.0 +25016,9,97,8,0.0 +25016,14,23.25,2,0.0 +25016,30,25.89,24,0.0 +25016,58,13.25,27,0.0 +25016,35,18,18,0.0 +25016,71,21.5,8,0.0 +25016,1,18,43,0.0 +25016,43,46,13,0.0 +25016,33,2.5,39,0.0 +25016,25,14,37,0.0 +25016,42,14,5,0.0 +25016,53,32.8,1,0.0 +25016,54,7.45,33,0.0 +25016,69,36,19,0.0 +25016,26,31.23,26,0.0 +25016,50,16.25,25,0.0 +25016,46,12,48,0.0 +25016,48,12.75,30,0.0 +25016,17,39,19,0.0 +25016,68,12.5,18,0.0 +25016,7,30,34,0.0 +25016,52,7,11,0.0 +25016,20,81,18,0.0 +25016,63,43.9,48,0.0 +25016,66,17,49,0.0 +25016,27,43.9,39,0.0 +25016,39,18,39,0.0 +25016,67,14,15,0.0 +25016,41,9.65,35,0.0 +25016,72,34.8,41,0.0 +25016,70,15,6,0.0 +25016,6,25,44,0.0 +25016,75,7.75,48,0.0 +25016,19,9.2,26,0.0 +25016,56,38,27,0.0 +25016,74,10,29,0.0 +25016,37,26,3,0.0 +25016,29,123.79,32,0.0 +25016,61,28.5,35,0.0 +25016,64,33.25,34,0.0 +25016,13,6,24,0.0 +25016,28,45.6,1,0.0 +25016,73,15,27,0.0 +25016,24,4.5,8,0.0 +25016,32,32,43,0.0 +25016,18,62.5,19,0.0 +25016,55,24,34,0.0 +25016,34,14,22,0.0 +25016,77,13,40,0.0 +25016,45,9.5,17,0.0 +25017,31,12.5,50,0.0 +25017,46,12,21,0.0 +25017,4,22,46,0.0 +25017,38,263.5,7,0.0 +25017,8,40,47,0.0 +25017,48,12.75,35,0.0 +25017,32,32,27,0.0 +25017,56,38,44,0.0 +25017,67,14,28,0.0 +25017,62,49.3,7,0.0 +25017,61,28.5,15,0.0 +25017,75,7.75,25,0.0 +25017,74,10,42,0.0 +25017,3,10,9,0.0 +25017,6,25,17,0.0 +25017,1,18,38,0.0 +25018,60,34,17,0.0 +25018,76,18,39,0.0 +25018,29,123.79,33,0.0 +25018,6,25,31,0.0 +25018,55,24,32,0.0 +25018,45,9.5,44,0.0 +25018,57,19.5,30,0.0 +25018,36,19,30,0.0 +25018,24,4.5,6,0.0 +25018,51,53,41,0.0 +25018,39,18,36,0.0 +25018,72,34.8,48,0.0 +25018,69,36,1,0.0 +25018,46,12,12,0.0 +25018,5,21.35,18,0.0 +25018,50,16.25,45,0.0 +25018,77,13,10,0.0 +25018,7,30,14,0.0 +25018,31,12.5,41,0.0 +25018,30,25.89,40,0.0 +25018,49,20,44,0.0 +25018,34,14,21,0.0 +25018,2,19,8,0.0 +25018,67,14,18,0.0 +25018,63,43.9,50,0.0 +25018,66,17,31,0.0 +25018,53,32.8,21,0.0 +25018,44,19.45,1,0.0 +25018,28,45.6,39,0.0 +25018,41,9.65,30,0.0 +25018,1,18,2,0.0 +25018,9,97,3,0.0 +25018,11,21,7,0.0 +25018,35,18,24,0.0 +25018,4,22,32,0.0 +25018,37,26,37,0.0 +25018,61,28.5,6,0.0 +25018,27,43.9,4,0.0 +25018,43,46,1,0.0 +25018,23,9,39,0.0 +25018,52,7,27,0.0 +25018,20,81,8,0.0 +25018,15,15.5,46,0.0 +25018,10,31,21,0.0 +25018,32,32,9,0.0 +25018,58,13.25,15,0.0 +25018,70,15,5,0.0 +25018,21,10,48,0.0 +25018,14,23.25,11,0.0 +25018,74,10,31,0.0 +25018,64,33.25,48,0.0 +25018,54,7.45,43,0.0 +25018,59,55,43,0.0 +25018,48,12.75,46,0.0 +25018,25,14,42,0.0 +25018,65,21.05,39,0.0 +25018,42,14,40,0.0 +25018,62,49.3,42,0.0 +25018,71,21.5,19,0.0 +25018,8,40,5,0.0 +25018,17,39,30,0.0 +25018,38,263.5,14,0.0 +25018,73,15,33,0.0 +25018,47,9.5,15,0.0 +25018,12,38,15,0.0 +25018,40,18.4,30,0.0 +25018,16,17.45,34,0.0 +25018,75,7.75,40,0.0 +25018,3,10,42,0.0 +25018,19,9.2,29,0.0 +25018,22,21,15,0.0 +25018,26,31.23,32,0.0 +25018,13,6,42,0.0 +25019,74,10,37,0.0 +25019,62,49.3,17,0.0 +25019,15,15.5,43,0.0 +25019,33,2.5,32,0.0 +25019,16,17.45,31,0.0 +25019,42,14,22,0.0 +25019,27,43.9,19,0.0 +25019,36,19,14,0.0 +25019,9,97,26,0.0 +25019,44,19.45,46,0.0 +25019,47,9.5,31,0.0 +25019,65,21.05,23,0.0 +25019,60,34,50,0.0 +25019,34,14,27,0.0 +25019,26,31.23,14,0.0 +25019,25,14,50,0.0 +25019,21,10,12,0.0 +25019,51,53,34,0.0 +25019,12,38,39,0.0 +25019,67,14,48,0.0 +25019,66,17,32,0.0 +25019,77,13,34,0.0 +25019,57,19.5,5,0.0 +25019,46,12,27,0.0 +25019,13,6,6,0.0 +25019,24,4.5,22,0.0 +25019,76,18,10,0.0 +25019,5,21.35,44,0.0 +25019,72,34.8,13,0.0 +25019,30,25.89,34,0.0 +25019,52,7,9,0.0 +25019,8,40,23,0.0 +25019,20,81,26,0.0 +25019,73,15,14,0.0 +25019,41,9.65,6,0.0 +25019,23,9,19,0.0 +25019,31,12.5,15,0.0 +25019,38,263.5,21,0.0 +25019,71,21.5,40,0.0 +25019,50,16.25,14,0.0 +25019,54,7.45,23,0.0 +25019,45,9.5,15,0.0 +25019,56,38,12,0.0 +25019,37,26,42,0.0 +25019,6,25,33,0.0 +25019,14,23.25,23,0.0 +25019,3,10,28,0.0 +25019,28,45.6,31,0.0 +25019,48,12.75,25,0.0 +25019,70,15,9,0.0 +25019,7,30,2,0.0 +25019,75,7.75,17,0.0 +25019,61,28.5,3,0.0 +25019,35,18,16,0.0 +25019,43,46,38,0.0 +25019,29,123.79,12,0.0 +25019,63,43.9,9,0.0 +25019,69,36,5,0.0 +25020,62,49.3,23,0.0 +25020,30,25.89,11,0.0 +25020,19,9.2,14,0.0 +25020,15,15.5,49,0.0 +25020,13,6,3,0.0 +25020,38,263.5,25,0.0 +25020,24,4.5,10,0.0 +25020,56,38,3,0.0 +25020,52,7,23,0.0 +25020,64,33.25,8,0.0 +25020,51,53,45,0.0 +25020,67,14,13,0.0 +25020,45,9.5,13,0.0 +25020,54,7.45,33,0.0 +25020,72,34.8,30,0.0 +25020,42,14,49,0.0 +25020,23,9,48,0.0 +25020,21,10,27,0.0 +25020,44,19.45,48,0.0 +25020,9,97,39,0.0 +25020,77,13,1,0.0 +25020,1,18,38,0.0 +25020,7,30,28,0.0 +25020,16,17.45,26,0.0 +25020,73,15,25,0.0 +25020,26,31.23,7,0.0 +25020,43,46,20,0.0 +25020,22,21,13,0.0 +25020,70,15,28,0.0 +25020,66,17,44,0.0 +25020,65,21.05,13,0.0 +25020,58,13.25,9,0.0 +25020,49,20,43,0.0 +25020,53,32.8,42,0.0 +25020,10,31,11,0.0 +25020,18,62.5,1,0.0 +25020,27,43.9,50,0.0 +25020,35,18,50,0.0 +25020,61,28.5,47,0.0 +25020,20,81,26,0.0 +25020,37,26,45,0.0 +25020,34,14,18,0.0 +25020,46,12,16,0.0 +25020,8,40,15,0.0 +25020,60,34,27,0.0 +25020,29,123.79,14,0.0 +25020,4,22,33,0.0 +25020,68,12.5,8,0.0 +25020,28,45.6,12,0.0 +25020,3,10,33,0.0 +25020,74,10,30,0.0 +25020,76,18,33,0.0 +25020,69,36,31,0.0 +25020,14,23.25,10,0.0 +25020,59,55,36,0.0 +25020,5,21.35,19,0.0 +25020,55,24,7,0.0 +25020,71,21.5,26,0.0 +25020,17,39,20,0.0 +25020,47,9.5,40,0.0 +25020,63,43.9,26,0.0 +25020,25,14,4,0.0 +25020,41,9.65,5,0.0 +25020,11,21,22,0.0 +25021,53,32.8,48,0.0 +25021,6,25,3,0.0 +25021,7,30,29,0.0 +25021,8,40,13,0.0 +25021,23,9,21,0.0 +25021,2,19,16,0.0 +25021,24,4.5,26,0.0 +25021,68,12.5,13,0.0 +25021,51,53,31,0.0 +25021,30,25.89,3,0.0 +25021,55,24,23,0.0 +25021,29,123.79,6,0.0 +25021,40,18.4,16,0.0 +25022,73,15,17,0.0 +25022,31,12.5,34,0.0 +25022,26,31.23,17,0.0 +25022,70,15,48,0.0 +25022,75,7.75,21,0.0 +25022,47,9.5,36,0.0 +25022,68,12.5,29,0.0 +25022,42,14,47,0.0 +25022,9,97,22,0.0 +25022,50,16.25,8,0.0 +25022,74,10,33,0.0 +25022,63,43.9,8,0.0 +25022,11,21,19,0.0 +25022,12,38,49,0.0 +25022,46,12,50,0.0 +25022,21,10,24,0.0 +25022,17,39,22,0.0 +25022,35,18,50,0.0 +25022,55,24,21,0.0 +25022,39,18,45,0.0 +25022,54,7.45,9,0.0 +25022,53,32.8,27,0.0 +25022,29,123.79,25,0.0 +25022,61,28.5,20,0.0 +25022,66,17,27,0.0 +25022,25,14,41,0.0 +25022,65,21.05,45,0.0 +25022,8,40,5,0.0 +25022,4,22,6,0.0 +25022,5,21.35,22,0.0 +25022,14,23.25,19,0.0 +25022,1,18,14,0.0 +25022,30,25.89,11,0.0 +25022,64,33.25,46,0.0 +25022,7,30,11,0.0 +25022,15,15.5,47,0.0 +25022,34,14,39,0.0 +25022,10,31,47,0.0 +25022,23,9,43,0.0 +25022,41,9.65,9,0.0 +25022,45,9.5,23,0.0 +25022,19,9.2,35,0.0 +25022,32,32,4,0.0 +25022,27,43.9,32,0.0 +25022,3,10,49,0.0 +25022,6,25,30,0.0 +25022,28,45.6,35,0.0 +25022,71,21.5,50,0.0 +25022,13,6,17,0.0 +25022,49,20,45,0.0 +25022,72,34.8,2,0.0 +25022,76,18,16,0.0 +25022,24,4.5,12,0.0 +25022,48,12.75,46,0.0 +25022,36,19,30,0.0 +25022,58,13.25,40,0.0 +25022,40,18.4,26,0.0 +25022,57,19.5,47,0.0 +25022,16,17.45,17,0.0 +25022,67,14,36,0.0 +25022,22,21,26,0.0 +25022,56,38,19,0.0 +25022,51,53,49,0.0 +25022,43,46,42,0.0 +25022,77,13,13,0.0 +25022,59,55,31,0.0 +25022,37,26,6,0.0 +25022,33,2.5,35,0.0 +25023,72,34.8,47,0.0 +25023,12,38,36,0.0 +25023,8,40,3,0.0 +25023,21,10,34,0.0 +25023,34,14,13,0.0 +25023,69,36,36,0.0 +25023,1,18,39,0.0 +25023,62,49.3,33,0.0 +25023,11,21,49,0.0 +25023,24,4.5,46,0.0 +25023,23,9,6,0.0 +25023,68,12.5,31,0.0 +25023,22,21,48,0.0 +25023,77,13,31,0.0 +25023,52,7,43,0.0 +25023,42,14,43,0.0 +25023,6,25,39,0.0 +25023,71,21.5,6,0.0 +25023,28,45.6,35,0.0 +25023,37,26,2,0.0 +25023,63,43.9,7,0.0 +25023,56,38,37,0.0 +25023,49,20,27,0.0 +25023,53,32.8,11,0.0 +25023,76,18,26,0.0 +25023,46,12,17,0.0 +25023,65,21.05,36,0.0 +25024,53,32.8,18,0.0 +25024,65,21.05,24,0.0 +25024,8,40,11,0.0 +25024,4,22,48,0.0 +25024,58,13.25,27,0.0 +25024,69,36,2,0.0 +25024,9,97,20,0.0 +25024,7,30,41,0.0 +25024,5,21.35,2,0.0 +25024,36,19,48,0.0 +25024,56,38,1,0.0 +25024,17,39,38,0.0 +25024,21,10,49,0.0 +25024,38,263.5,24,0.0 +25024,16,17.45,16,0.0 +25024,19,9.2,3,0.0 +25024,23,9,14,0.0 +25024,24,4.5,24,0.0 +25024,67,14,17,0.0 +25024,73,15,29,0.0 +25024,44,19.45,6,0.0 +25024,63,43.9,20,0.0 +25024,41,9.65,34,0.0 +25024,1,18,41,0.0 +25024,14,23.25,8,0.0 +25024,20,81,23,0.0 +25024,74,10,46,0.0 +25024,52,7,17,0.0 +25024,30,25.89,15,0.0 +25024,25,14,47,0.0 +25024,49,20,17,0.0 +25024,61,28.5,3,0.0 +25024,26,31.23,22,0.0 +25024,42,14,20,0.0 +25024,10,31,8,0.0 +25024,31,12.5,18,0.0 +25024,64,33.25,48,0.0 +25024,35,18,41,0.0 +25024,43,46,45,0.0 +25024,77,13,34,0.0 +25024,70,15,6,0.0 +25024,75,7.75,15,0.0 +25024,32,32,16,0.0 +25024,76,18,47,0.0 +25024,34,14,19,0.0 +25024,33,2.5,39,0.0 +25024,54,7.45,27,0.0 +25024,57,19.5,31,0.0 +25024,55,24,43,0.0 +25024,11,21,23,0.0 +25024,47,9.5,25,0.0 +25024,18,62.5,24,0.0 +25024,39,18,45,0.0 +25024,3,10,48,0.0 +25025,57,19.5,21,0.0 +25025,23,9,5,0.0 +25025,65,21.05,6,0.0 +25025,6,25,43,0.0 +25025,32,32,32,0.0 +25025,66,17,21,0.0 +25025,63,43.9,23,0.0 +25025,14,23.25,8,0.0 +25025,17,39,6,0.0 +25025,12,38,45,0.0 +25025,54,7.45,44,0.0 +25025,44,19.45,35,0.0 +25025,37,26,36,0.0 +25025,71,21.5,19,0.0 +25025,46,12,13,0.0 +25025,19,9.2,8,0.0 +25025,30,25.89,30,0.0 +25025,4,22,34,0.0 +25025,15,15.5,39,0.0 +25025,36,19,43,0.0 +25026,45,9.5,40,0.0 +25026,37,26,48,0.0 +25026,26,31.23,40,0.0 +25026,8,40,44,0.0 +25026,33,2.5,27,0.0 +25026,18,62.5,35,0.0 +25026,76,18,23,0.0 +25026,39,18,20,0.0 +25026,41,9.65,38,0.0 +25026,30,25.89,11,0.0 +25026,55,24,5,0.0 +25026,38,263.5,24,0.0 +25026,60,34,7,0.0 +25026,20,81,6,0.0 +25026,49,20,46,0.0 +25026,3,10,30,0.0 +25026,35,18,44,0.0 +25026,34,14,38,0.0 +25026,4,22,39,0.0 +25026,19,9.2,30,0.0 +25026,11,21,50,0.0 +25026,7,30,33,0.0 +25026,61,28.5,42,0.0 +25026,9,97,40,0.0 +25026,52,7,41,0.0 +25027,34,14,39,0.0 +25027,8,40,16,0.0 +25027,23,9,42,0.0 +25027,27,43.9,31,0.0 +25027,33,2.5,11,0.0 +25027,74,10,9,0.0 +25027,4,22,44,0.0 +25027,5,21.35,15,0.0 +25027,75,7.75,43,0.0 +25027,46,12,35,0.0 +25027,15,15.5,25,0.0 +25027,1,18,24,0.0 +25028,76,18,18,0.0 +25028,27,43.9,29,0.0 +25028,17,39,50,0.0 +25028,22,21,1,0.0 +25028,74,10,29,0.0 +25028,52,7,48,0.0 +25028,47,9.5,8,0.0 +25028,11,21,45,0.0 +25028,2,19,22,0.0 +25028,14,23.25,42,0.0 +25028,77,13,19,0.0 +25028,50,16.25,10,0.0 +25028,15,15.5,16,0.0 +25028,12,38,45,0.0 +25028,54,7.45,13,0.0 +25028,58,13.25,47,0.0 +25028,73,15,3,0.0 +25028,67,14,48,0.0 +25028,24,4.5,7,0.0 +25028,59,55,21,0.0 +25028,57,19.5,31,0.0 +25028,28,45.6,31,0.0 +25028,20,81,17,0.0 +25028,66,17,30,0.0 +25028,71,21.5,25,0.0 +25028,44,19.45,6,0.0 +25028,13,6,30,0.0 +25028,21,10,21,0.0 +25028,9,97,4,0.0 +25028,16,17.45,2,0.0 +25028,53,32.8,47,0.0 +25028,51,53,29,0.0 +25028,68,12.5,50,0.0 +25028,60,34,26,0.0 +25028,55,24,44,0.0 +25028,29,123.79,3,0.0 +25028,45,9.5,21,0.0 +25028,30,25.89,15,0.0 +25028,48,12.75,36,0.0 +25028,4,22,39,0.0 +25028,49,20,35,0.0 +25028,34,14,40,0.0 +25028,8,40,22,0.0 +25028,41,9.65,30,0.0 +25028,7,30,48,0.0 +25028,5,21.35,9,0.0 +25028,43,46,36,0.0 +25028,72,34.8,37,0.0 +25028,37,26,37,0.0 +25028,10,31,42,0.0 +25028,65,21.05,20,0.0 +25028,6,25,41,0.0 +25028,26,31.23,32,0.0 +25028,62,49.3,36,0.0 +25028,23,9,24,0.0 +25028,56,38,2,0.0 +25028,1,18,22,0.0 +25028,32,32,48,0.0 +25028,61,28.5,19,0.0 +25028,25,14,46,0.0 +25028,63,43.9,45,0.0 +25028,38,263.5,11,0.0 +25028,3,10,4,0.0 +25028,75,7.75,4,0.0 +25028,35,18,5,0.0 +25028,40,18.4,40,0.0 +25028,31,12.5,14,0.0 +25028,42,14,24,0.0 +25028,33,2.5,3,0.0 +25028,19,9.2,13,0.0 +25028,46,12,28,0.0 +25028,70,15,5,0.0 +25028,69,36,11,0.0 +25029,38,263.5,48,0.0 +25029,36,19,5,0.0 +25029,71,21.5,14,0.0 +25029,50,16.25,49,0.0 +25029,66,17,36,0.0 +25029,16,17.45,25,0.0 +25029,5,21.35,6,0.0 +25029,70,15,41,0.0 +25029,37,26,35,0.0 +25029,14,23.25,13,0.0 +25029,67,14,50,0.0 +25029,20,81,22,0.0 +25029,9,97,20,0.0 +25029,49,20,11,0.0 +25029,27,43.9,26,0.0 +25029,15,15.5,30,0.0 +25029,46,12,42,0.0 +25029,44,19.45,38,0.0 +25029,59,55,6,0.0 +25029,76,18,10,0.0 +25029,47,9.5,24,0.0 +25030,13,6,49,0.0 +25030,40,18.4,23,0.0 +25030,45,9.5,5,0.0 +25030,47,9.5,20,0.0 +25030,32,32,29,0.0 +25030,60,34,48,0.0 +25030,11,21,44,0.0 +25030,50,16.25,26,0.0 +25030,68,12.5,16,0.0 +25030,19,9.2,25,0.0 +25030,35,18,45,0.0 +25030,24,4.5,11,0.0 +25030,16,17.45,25,0.0 +25030,46,12,19,0.0 +25030,20,81,42,0.0 +25030,51,53,8,0.0 +25030,23,9,31,0.0 +25030,21,10,2,0.0 +25030,42,14,39,0.0 +25030,65,21.05,34,0.0 +25030,77,13,11,0.0 +25030,34,14,47,0.0 +25030,59,55,16,0.0 +25030,73,15,27,0.0 +25030,37,26,45,0.0 +25030,76,18,20,0.0 +25030,44,19.45,3,0.0 +25030,41,9.65,45,0.0 +25030,28,45.6,20,0.0 +25030,71,21.5,28,0.0 +25030,30,25.89,24,0.0 +25030,27,43.9,14,0.0 +25030,43,46,22,0.0 +25030,49,20,39,0.0 +25030,1,18,22,0.0 +25030,53,32.8,20,0.0 +25030,58,13.25,28,0.0 +25030,70,15,28,0.0 +25030,15,15.5,26,0.0 +25030,62,49.3,17,0.0 +25030,38,263.5,48,0.0 +25030,7,30,5,0.0 +25030,36,19,14,0.0 +25030,66,17,43,0.0 +25030,14,23.25,46,0.0 +25030,6,25,25,0.0 +25030,56,38,22,0.0 +25030,33,2.5,47,0.0 +25030,67,14,36,0.0 +25030,4,22,43,0.0 +25030,39,18,8,0.0 +25030,64,33.25,21,0.0 +25030,72,34.8,37,0.0 +25030,9,97,6,0.0 +25030,55,24,19,0.0 +25030,63,43.9,42,0.0 +25030,31,12.5,18,0.0 +25030,29,123.79,4,0.0 +25030,54,7.45,15,0.0 +25030,26,31.23,43,0.0 +25030,69,36,37,0.0 +25030,10,31,41,0.0 +25030,52,7,25,0.0 +25030,18,62.5,23,0.0 +25030,57,19.5,49,0.0 +25030,8,40,34,0.0 +25030,74,10,4,0.0 +25030,2,19,31,0.0 +25030,3,10,23,0.0 +25030,17,39,40,0.0 +25030,12,38,2,0.0 +25030,48,12.75,43,0.0 +25030,5,21.35,37,0.0 +25031,34,14,29,0.0 +25031,4,22,26,0.0 +25031,72,34.8,32,0.0 +25031,33,2.5,43,0.0 +25031,28,45.6,47,0.0 +25031,53,32.8,23,0.0 +25031,42,14,27,0.0 +25031,16,17.45,9,0.0 +25031,77,13,16,0.0 +25031,63,43.9,40,0.0 +25031,2,19,36,0.0 +25031,9,97,5,0.0 +25031,26,31.23,27,0.0 +25031,59,55,10,0.0 +25031,41,9.65,13,0.0 +25031,30,25.89,23,0.0 +25031,7,30,6,0.0 +25031,67,14,18,0.0 +25031,12,38,20,0.0 +25031,73,15,20,0.0 +25031,56,38,31,0.0 +25031,10,31,29,0.0 +25031,58,13.25,44,0.0 +25031,70,15,32,0.0 +25031,55,24,4,0.0 +25031,20,81,1,0.0 +25031,31,12.5,10,0.0 +25031,17,39,35,0.0 +25031,19,9.2,19,0.0 +25031,25,14,6,0.0 +25031,39,18,7,0.0 +25031,43,46,11,0.0 +25031,62,49.3,5,0.0 +25031,69,36,48,0.0 +25031,65,21.05,13,0.0 +25031,13,6,37,0.0 +25031,15,15.5,12,0.0 +25031,38,263.5,27,0.0 +25031,32,32,16,0.0 +25031,44,19.45,23,0.0 +25031,23,9,17,0.0 +25031,5,21.35,47,0.0 +25031,45,9.5,12,0.0 +25031,1,18,18,0.0 +25031,18,62.5,44,0.0 +25031,76,18,48,0.0 +25031,14,23.25,15,0.0 +25031,57,19.5,33,0.0 +25031,40,18.4,11,0.0 +25031,37,26,24,0.0 +25031,54,7.45,6,0.0 +25031,48,12.75,44,0.0 +25031,29,123.79,38,0.0 +25032,69,36,16,0.0 +25032,34,14,42,0.0 +25032,33,2.5,38,0.0 +25032,14,23.25,34,0.0 +25032,70,15,26,0.0 +25032,16,17.45,34,0.0 +25032,37,26,30,0.0 +25032,59,55,45,0.0 +25032,26,31.23,29,0.0 +25032,3,10,32,0.0 +25032,41,9.65,10,0.0 +25032,10,31,23,0.0 +25032,42,14,23,0.0 +25032,36,19,30,0.0 +25032,45,9.5,4,0.0 +25032,49,20,24,0.0 +25032,63,43.9,36,0.0 +25032,52,7,29,0.0 +25032,73,15,50,0.0 +25032,61,28.5,14,0.0 +25032,17,39,38,0.0 +25032,65,21.05,38,0.0 +25032,20,81,7,0.0 +25032,76,18,35,0.0 +25032,62,49.3,17,0.0 +25032,28,45.6,20,0.0 +25032,27,43.9,35,0.0 +25032,66,17,40,0.0 +25032,35,18,39,0.0 +25032,50,16.25,42,0.0 +25032,55,24,4,0.0 +25032,43,46,26,0.0 +25032,2,19,42,0.0 +25032,51,53,33,0.0 +25032,24,4.5,33,0.0 +25032,30,25.89,39,0.0 +25032,72,34.8,27,0.0 +25032,48,12.75,46,0.0 +25032,77,13,20,0.0 +25032,21,10,42,0.0 +25032,18,62.5,21,0.0 +25032,29,123.79,1,0.0 +25032,7,30,38,0.0 +25032,11,21,27,0.0 +25032,22,21,42,0.0 +25032,75,7.75,1,0.0 +25032,5,21.35,29,0.0 +25032,31,12.5,32,0.0 +25032,23,9,9,0.0 +25032,58,13.25,22,0.0 +25032,8,40,46,0.0 +25032,39,18,37,0.0 +25032,53,32.8,40,0.0 +25032,68,12.5,37,0.0 +25032,60,34,15,0.0 +25032,74,10,40,0.0 +25032,9,97,46,0.0 +25032,19,9.2,9,0.0 +25033,30,25.89,43,0.0 +25033,29,123.79,36,0.0 +25033,14,23.25,38,0.0 +25033,52,7,50,0.0 +25033,2,19,20,0.0 +25033,32,32,26,0.0 +25033,46,12,4,0.0 +25033,45,9.5,33,0.0 +25033,66,17,28,0.0 +25033,60,34,28,0.0 +25033,68,12.5,6,0.0 +25034,13,6,22,0.0 +25034,19,9.2,47,0.0 +25034,31,12.5,15,0.0 +25034,43,46,13,0.0 +25034,32,32,40,0.0 +25034,60,34,48,0.0 +25034,59,55,40,0.0 +25034,53,32.8,31,0.0 +25034,65,21.05,42,0.0 +25034,44,19.45,26,0.0 +25034,22,21,38,0.0 +25034,16,17.45,14,0.0 +25034,36,19,24,0.0 +25034,20,81,13,0.0 +25034,45,9.5,23,0.0 +25034,57,19.5,30,0.0 +25035,39,18,30,0.0 +25035,77,13,22,0.0 +25035,13,6,37,0.0 +25035,45,9.5,8,0.0 +25035,54,7.45,49,0.0 +25035,57,19.5,1,0.0 +25035,47,9.5,5,0.0 +25035,55,24,18,0.0 +25035,58,13.25,9,0.0 +25035,17,39,41,0.0 +25035,62,49.3,43,0.0 +25035,70,15,15,0.0 +25035,72,34.8,38,0.0 +25035,18,62.5,48,0.0 +25035,29,123.79,32,0.0 +25035,32,32,3,0.0 +25035,35,18,43,0.0 +25035,11,21,4,0.0 +25035,61,28.5,43,0.0 +25035,22,21,48,0.0 +25035,46,12,15,0.0 +25035,68,12.5,46,0.0 +25035,25,14,33,0.0 +25035,53,32.8,36,0.0 +25035,12,38,9,0.0 +25035,20,81,34,0.0 +25035,14,23.25,16,0.0 +25035,52,7,11,0.0 +25035,42,14,31,0.0 +25035,71,21.5,37,0.0 +25035,4,22,13,0.0 +25035,67,14,18,0.0 +25035,7,30,49,0.0 +25035,66,17,26,0.0 +25035,33,2.5,5,0.0 +25035,65,21.05,48,0.0 +25035,3,10,32,0.0 +25035,56,38,37,0.0 +25035,40,18.4,45,0.0 +25035,38,263.5,27,0.0 +25035,1,18,28,0.0 +25035,37,26,29,0.0 +25035,15,15.5,45,0.0 +25035,23,9,3,0.0 +25035,59,55,17,0.0 +25035,19,9.2,25,0.0 +25035,69,36,17,0.0 +25035,34,14,33,0.0 +25035,30,25.89,30,0.0 +25035,16,17.45,24,0.0 +25035,10,31,4,0.0 +25035,8,40,28,0.0 +25035,64,33.25,19,0.0 +25035,24,4.5,11,0.0 +25035,36,19,18,0.0 +25035,60,34,14,0.0 +25035,28,45.6,18,0.0 +25035,63,43.9,50,0.0 +25035,31,12.5,2,0.0 +25035,43,46,4,0.0 +25035,9,97,45,0.0 +25035,6,25,47,0.0 +25035,48,12.75,35,0.0 +25035,2,19,15,0.0 +25036,16,17.45,20,0.0 +25036,6,25,39,0.0 +25036,48,12.75,39,0.0 +25036,25,14,35,0.0 +25036,76,18,21,0.0 +25036,74,10,13,0.0 +25036,38,263.5,47,0.0 +25036,4,22,21,0.0 +25036,50,16.25,48,0.0 +25036,69,36,9,0.0 +25036,27,43.9,27,0.0 +25036,61,28.5,42,0.0 +25036,77,13,25,0.0 +25036,18,62.5,42,0.0 +25036,58,13.25,29,0.0 +25036,72,34.8,3,0.0 +25036,66,17,46,0.0 +25036,36,19,37,0.0 +25036,52,7,18,0.0 +25036,26,31.23,42,0.0 +25036,41,9.65,27,0.0 +25036,34,14,21,0.0 +25036,8,40,6,0.0 +25036,12,38,11,0.0 +25036,43,46,38,0.0 +25036,42,14,3,0.0 +25036,46,12,43,0.0 +25036,14,23.25,31,0.0 +25036,17,39,43,0.0 +25036,45,9.5,1,0.0 +25036,13,6,5,0.0 +25036,29,123.79,15,0.0 +25036,31,12.5,4,0.0 +25036,71,21.5,13,0.0 +25036,54,7.45,31,0.0 +25036,39,18,3,0.0 +25036,67,14,21,0.0 +25036,51,53,16,0.0 +25036,2,19,44,0.0 +25036,70,15,4,0.0 +25036,7,30,13,0.0 +25036,37,26,24,0.0 +25036,15,15.5,16,0.0 +25036,73,15,45,0.0 +25036,56,38,50,0.0 +25036,1,18,6,0.0 +25036,11,21,10,0.0 +25037,1,18,19,0.0 +25037,41,9.65,40,0.0 +25037,67,14,9,0.0 +25037,55,24,13,0.0 +25037,12,38,31,0.0 +25037,39,18,20,0.0 +25038,42,14,44,0.0 +25038,59,55,5,0.0 +25039,61,28.5,28,0.0 +25039,27,43.9,49,0.0 +25039,63,43.9,10,0.0 +25039,44,19.45,31,0.0 +25039,40,18.4,23,0.0 +25039,72,34.8,9,0.0 +25039,71,21.5,16,0.0 +25039,77,13,27,0.0 +25039,42,14,48,0.0 +25039,6,25,46,0.0 +25039,33,2.5,31,0.0 +25039,52,7,13,0.0 +25039,70,15,10,0.0 +25039,37,26,13,0.0 +25039,22,21,26,0.0 +25039,65,21.05,44,0.0 +25039,10,31,33,0.0 +25039,53,32.8,12,0.0 +25039,8,40,16,0.0 +25039,32,32,33,0.0 +25039,5,21.35,13,0.0 +25039,38,263.5,27,0.0 +25039,13,6,46,0.0 +25039,17,39,24,0.0 +25039,45,9.5,13,0.0 +25039,26,31.23,11,0.0 +25039,75,7.75,37,0.0 +25039,64,33.25,19,0.0 +25039,55,24,23,0.0 +25039,23,9,8,0.0 +25039,73,15,24,0.0 +25039,1,18,36,0.0 +25039,58,13.25,38,0.0 +25039,35,18,40,0.0 +25039,47,9.5,1,0.0 +25039,3,10,14,0.0 +25039,19,9.2,18,0.0 +25039,28,45.6,7,0.0 +25039,76,18,24,0.0 +25039,62,49.3,30,0.0 +25039,60,34,2,0.0 +25039,4,22,18,0.0 +25039,15,15.5,4,0.0 +25039,2,19,26,0.0 +25039,29,123.79,36,0.0 +25039,43,46,45,0.0 +25039,50,16.25,12,0.0 +25039,66,17,25,0.0 +25039,25,14,41,0.0 +25039,59,55,12,0.0 +25039,54,7.45,45,0.0 +25039,24,4.5,10,0.0 +25039,11,21,34,0.0 +25039,74,10,21,0.0 +25039,21,10,40,0.0 +25039,46,12,6,0.0 +25039,57,19.5,8,0.0 +25039,31,12.5,26,0.0 +25039,56,38,29,0.0 +25039,67,14,33,0.0 +25039,30,25.89,15,0.0 +25039,16,17.45,9,0.0 +25039,49,20,35,0.0 +25039,18,62.5,25,0.0 +25039,69,36,29,0.0 +25039,48,12.75,2,0.0 +25039,39,18,47,0.0 +25039,14,23.25,48,0.0 +25039,9,97,4,0.0 +25040,58,13.25,16,0.0 +25040,23,9,3,0.0 +25040,45,9.5,7,0.0 +25040,56,38,5,0.0 +25040,66,17,44,0.0 +25040,7,30,27,0.0 +25040,18,62.5,46,0.0 +25040,31,12.5,12,0.0 +25040,2,19,49,0.0 +25040,55,24,10,0.0 +25040,43,46,15,0.0 +25040,60,34,12,0.0 +25040,20,81,19,0.0 +25040,4,22,21,0.0 +25040,67,14,2,0.0 +25040,3,10,21,0.0 +25040,47,9.5,8,0.0 +25040,5,21.35,11,0.0 +25040,41,9.65,47,0.0 +25040,72,34.8,40,0.0 +25040,74,10,47,0.0 +25040,6,25,44,0.0 +25040,54,7.45,7,0.0 +25040,19,9.2,45,0.0 +25040,25,14,8,0.0 +25040,61,28.5,37,0.0 +25040,63,43.9,38,0.0 +25040,13,6,43,0.0 +25040,42,14,22,0.0 +25040,28,45.6,44,0.0 +25040,12,38,2,0.0 +25041,47,9.5,24,0.0 +25041,39,18,30,0.0 +25041,17,39,37,0.0 +25041,28,45.6,37,0.0 +25041,8,40,20,0.0 +25041,18,62.5,35,0.0 +25041,10,31,4,0.0 +25041,34,14,27,0.0 +25041,19,9.2,12,0.0 +25041,26,31.23,15,0.0 +25041,41,9.65,18,0.0 +25041,72,34.8,23,0.0 +25041,30,25.89,20,0.0 +25041,37,26,3,0.0 +25041,60,34,22,0.0 +25041,59,55,23,0.0 +25041,15,15.5,6,0.0 +25041,5,21.35,25,0.0 +25041,63,43.9,45,0.0 +25041,65,21.05,27,0.0 +25041,77,13,25,0.0 +25041,67,14,25,0.0 +25041,75,7.75,16,0.0 +25041,73,15,34,0.0 +25041,54,7.45,47,0.0 +25041,52,7,23,0.0 +25041,40,18.4,40,0.0 +25041,55,24,41,0.0 +25041,1,18,48,0.0 +25042,36,19,50,0.0 +25042,10,31,15,0.0 +25042,31,12.5,7,0.0 +25042,33,2.5,9,0.0 +25042,55,24,27,0.0 +25042,45,9.5,8,0.0 +25042,43,46,47,0.0 +25042,64,33.25,34,0.0 +25042,6,25,43,0.0 +25042,3,10,5,0.0 +25042,18,62.5,26,0.0 +25042,58,13.25,12,0.0 +25042,37,26,40,0.0 +25042,52,7,22,0.0 +25042,61,28.5,23,0.0 +25042,75,7.75,19,0.0 +25042,14,23.25,33,0.0 +25043,72,34.8,14,0.0 +25043,61,28.5,5,0.0 +25043,23,9,49,0.0 +25043,67,14,44,0.0 +25043,49,20,34,0.0 +25043,70,15,40,0.0 +25043,7,30,7,0.0 +25043,64,33.25,40,0.0 +25043,30,25.89,6,0.0 +25043,52,7,38,0.0 +25043,33,2.5,38,0.0 +25043,31,12.5,8,0.0 +25043,51,53,3,0.0 +25043,74,10,18,0.0 +25043,34,14,41,0.0 +25043,17,39,8,0.0 +25043,22,21,19,0.0 +25043,25,14,45,0.0 +25043,9,97,9,0.0 +25043,46,12,41,0.0 +25043,76,18,46,0.0 +25043,14,23.25,27,0.0 +25043,19,9.2,27,0.0 +25043,28,45.6,34,0.0 +25043,54,7.45,11,0.0 +25043,10,31,38,0.0 +25043,27,43.9,9,0.0 +25043,37,26,35,0.0 +25043,3,10,44,0.0 +25043,58,13.25,28,0.0 +25043,35,18,35,0.0 +25043,62,49.3,24,0.0 +25043,73,15,42,0.0 +25043,32,32,14,0.0 +25043,68,12.5,40,0.0 +25043,1,18,8,0.0 +25043,2,19,48,0.0 +25043,12,38,10,0.0 +25043,40,18.4,37,0.0 +25043,8,40,32,0.0 +25043,77,13,37,0.0 +25043,50,16.25,34,0.0 +25043,45,9.5,47,0.0 +25043,57,19.5,23,0.0 +25043,48,12.75,7,0.0 +25043,6,25,3,0.0 +25043,24,4.5,30,0.0 +25043,41,9.65,19,0.0 +25043,20,81,49,0.0 +25043,69,36,41,0.0 +25043,59,55,28,0.0 +25043,21,10,9,0.0 +25043,5,21.35,35,0.0 +25043,18,62.5,42,0.0 +25043,13,6,5,0.0 +25043,26,31.23,12,0.0 +25043,60,34,38,0.0 +25043,11,21,43,0.0 +25043,75,7.75,26,0.0 +25043,44,19.45,10,0.0 +25043,66,17,14,0.0 +25043,16,17.45,5,0.0 +25043,4,22,10,0.0 +25043,56,38,25,0.0 +25043,36,19,18,0.0 +25043,15,15.5,34,0.0 +25043,63,43.9,17,0.0 +25043,65,21.05,3,0.0 +25043,71,21.5,45,0.0 +25043,47,9.5,49,0.0 +25043,42,14,26,0.0 +25043,53,32.8,43,0.0 +25043,43,46,43,0.0 +25043,39,18,25,0.0 +25044,13,6,7,0.0 +25044,58,13.25,9,0.0 +25044,42,14,37,0.0 +25044,61,28.5,31,0.0 +25044,60,34,26,0.0 +25044,73,15,36,0.0 +25044,30,25.89,11,0.0 +25044,53,32.8,26,0.0 +25044,17,39,9,0.0 +25044,6,25,17,0.0 +25044,55,24,50,0.0 +25044,4,22,28,0.0 +25044,48,12.75,22,0.0 +25044,18,62.5,38,0.0 +25044,28,45.6,27,0.0 +25044,26,31.23,26,0.0 +25044,64,33.25,16,0.0 +25044,11,21,1,0.0 +25044,3,10,41,0.0 +25044,31,12.5,36,0.0 +25044,57,19.5,41,0.0 +25044,5,21.35,39,0.0 +25044,2,19,30,0.0 +25044,1,18,47,0.0 +25044,51,53,10,0.0 +25044,74,10,16,0.0 +25044,50,16.25,31,0.0 +25044,22,21,47,0.0 +25044,24,4.5,48,0.0 +25044,19,9.2,17,0.0 +25044,40,18.4,44,0.0 +25044,20,81,27,0.0 +25044,65,21.05,17,0.0 +25045,3,10,50,0.0 +25045,42,14,26,0.0 +25045,60,34,1,0.0 +25045,12,38,32,0.0 +25045,18,62.5,15,0.0 +25045,6,25,5,0.0 +25045,45,9.5,16,0.0 +25045,54,7.45,29,0.0 +25045,75,7.75,38,0.0 +25045,68,12.5,2,0.0 +25045,63,43.9,32,0.0 +25045,22,21,45,0.0 +25045,71,21.5,18,0.0 +25045,10,31,34,0.0 +25045,4,22,3,0.0 +25045,7,30,32,0.0 +25045,65,21.05,28,0.0 +25045,21,10,4,0.0 +25045,28,45.6,9,0.0 +25045,26,31.23,23,0.0 +25045,13,6,11,0.0 +25045,69,36,7,0.0 +25045,33,2.5,24,0.0 +25045,50,16.25,43,0.0 +25045,59,55,38,0.0 +25045,37,26,17,0.0 +25045,64,33.25,11,0.0 +25045,38,263.5,10,0.0 +25045,9,97,41,0.0 +25045,76,18,20,0.0 +25045,8,40,38,0.0 +25045,66,17,3,0.0 +25045,77,13,45,0.0 +25045,46,12,43,0.0 +25045,31,12.5,6,0.0 +25046,55,24,44,0.0 +25046,36,19,25,0.0 +25046,57,19.5,6,0.0 +25046,53,32.8,22,0.0 +25046,61,28.5,2,0.0 +25046,13,6,26,0.0 +25046,26,31.23,8,0.0 +25046,1,18,40,0.0 +25047,29,123.79,30,0.0 +25047,8,40,15,0.0 +25047,68,12.5,20,0.0 +25047,46,12,23,0.0 +25047,62,49.3,19,0.0 +25047,14,23.25,23,0.0 +25047,56,38,9,0.0 +25047,9,97,10,0.0 +25047,25,14,35,0.0 +25047,24,4.5,38,0.0 +25047,7,30,9,0.0 +25047,75,7.75,50,0.0 +25047,17,39,31,0.0 +25047,57,19.5,18,0.0 +25047,35,18,29,0.0 +25047,52,7,10,0.0 +25047,44,19.45,7,0.0 +25047,16,17.45,37,0.0 +25047,47,9.5,1,0.0 +25047,6,25,3,0.0 +25047,28,45.6,33,0.0 +25047,60,34,43,0.0 +25047,73,15,45,0.0 +25047,38,263.5,3,0.0 +25047,20,81,2,0.0 +25047,48,12.75,28,0.0 +25047,4,22,3,0.0 +25047,34,14,5,0.0 +25047,66,17,17,0.0 +25047,21,10,15,0.0 +25047,59,55,24,0.0 +25047,2,19,41,0.0 +25047,3,10,23,0.0 +25047,74,10,50,0.0 +25047,15,15.5,26,0.0 +25047,69,36,43,0.0 +25047,71,21.5,10,0.0 +25047,36,19,14,0.0 +25047,54,7.45,34,0.0 +25047,1,18,1,0.0 +25047,72,34.8,30,0.0 +25047,51,53,13,0.0 +25047,58,13.25,10,0.0 +25047,45,9.5,50,0.0 +25047,10,31,36,0.0 +25047,19,9.2,10,0.0 +25047,32,32,40,0.0 +25047,23,9,10,0.0 +25047,49,20,19,0.0 +25047,55,24,47,0.0 +25047,65,21.05,5,0.0 +25047,64,33.25,8,0.0 +25047,12,38,9,0.0 +25047,77,13,3,0.0 +25047,11,21,44,0.0 +25047,22,21,11,0.0 +25047,13,6,25,0.0 +25047,70,15,34,0.0 +25047,5,21.35,31,0.0 +25047,40,18.4,3,0.0 +25047,26,31.23,40,0.0 +25047,50,16.25,46,0.0 +25047,61,28.5,39,0.0 +25047,41,9.65,32,0.0 +25047,37,26,2,0.0 +25048,6,25,25,0.0 +25048,33,2.5,46,0.0 +25048,12,38,30,0.0 +25048,34,14,48,0.0 +25048,30,25.89,36,0.0 +25048,57,19.5,43,0.0 +25048,60,34,18,0.0 +25048,44,19.45,37,0.0 +25048,36,19,17,0.0 +25048,62,49.3,6,0.0 +25048,5,21.35,48,0.0 +25048,15,15.5,31,0.0 +25048,10,31,26,0.0 +25048,17,39,38,0.0 +25048,11,21,20,0.0 +25048,24,4.5,35,0.0 +25048,43,46,17,0.0 +25048,21,10,39,0.0 +25048,46,12,29,0.0 +25048,63,43.9,42,0.0 +25048,71,21.5,34,0.0 +25048,58,13.25,24,0.0 +25048,31,12.5,45,0.0 +25048,45,9.5,41,0.0 +25048,39,18,8,0.0 +25048,52,7,26,0.0 +25048,7,30,21,0.0 +25048,47,9.5,29,0.0 +25048,26,31.23,36,0.0 +25048,77,13,29,0.0 +25048,29,123.79,31,0.0 +25048,56,38,5,0.0 +25048,67,14,25,0.0 +25048,53,32.8,50,0.0 +25048,49,20,31,0.0 +25048,59,55,35,0.0 +25048,51,53,38,0.0 +25048,1,18,28,0.0 +25048,14,23.25,41,0.0 +25048,19,9.2,24,0.0 +25048,69,36,37,0.0 +25048,28,45.6,33,0.0 +25048,18,62.5,38,0.0 +25048,27,43.9,32,0.0 +25048,48,12.75,4,0.0 +25048,38,263.5,14,0.0 +25048,8,40,6,0.0 +25048,37,26,34,0.0 +25048,66,17,47,0.0 +25048,64,33.25,26,0.0 +25048,41,9.65,43,0.0 +25049,61,28.5,11,0.0 +25049,29,123.79,41,0.0 +25049,60,34,5,0.0 +25049,75,7.75,1,0.0 +25049,47,9.5,12,0.0 +25049,3,10,25,0.0 +25049,70,15,21,0.0 +25049,20,81,33,0.0 +25049,54,7.45,19,0.0 +25049,66,17,40,0.0 +25049,63,43.9,32,0.0 +25049,51,53,2,0.0 +25049,18,62.5,35,0.0 +25049,32,32,38,0.0 +25049,57,19.5,41,0.0 +25049,56,38,46,0.0 +25049,45,9.5,4,0.0 +25049,7,30,42,0.0 +25049,46,12,19,0.0 +25049,68,12.5,47,0.0 +25049,31,12.5,31,0.0 +25049,28,45.6,46,0.0 +25049,48,12.75,1,0.0 +25049,4,22,40,0.0 +25049,65,21.05,13,0.0 +25049,16,17.45,24,0.0 +25049,15,15.5,11,0.0 +25049,39,18,10,0.0 +25049,38,263.5,18,0.0 +25049,25,14,5,0.0 +25049,64,33.25,41,0.0 +25049,17,39,50,0.0 +25049,21,10,40,0.0 +25049,50,16.25,14,0.0 +25050,61,28.5,26,0.0 +25050,12,38,35,0.0 +25050,5,21.35,23,0.0 +25050,28,45.6,17,0.0 +25050,31,12.5,39,0.0 +25050,65,21.05,18,0.0 +25050,68,12.5,39,0.0 +25050,73,15,44,0.0 +25050,2,19,50,0.0 +25050,13,6,35,0.0 +25050,74,10,47,0.0 +25050,22,21,1,0.0 +25050,33,2.5,13,0.0 +25050,3,10,25,0.0 +25050,40,18.4,8,0.0 +25050,72,34.8,32,0.0 +25050,54,7.45,14,0.0 +25050,15,15.5,1,0.0 +25050,17,39,7,0.0 +25050,9,97,32,0.0 +25050,46,12,22,0.0 +25050,30,25.89,35,0.0 +25050,69,36,25,0.0 +25050,60,34,39,0.0 +25050,20,81,16,0.0 +25050,23,9,3,0.0 +25050,51,53,49,0.0 +25050,18,62.5,50,0.0 +25050,44,19.45,6,0.0 +25050,25,14,48,0.0 +25050,64,33.25,29,0.0 +25050,43,46,26,0.0 +25050,47,9.5,32,0.0 +25050,66,17,26,0.0 +25050,36,19,23,0.0 +25050,76,18,41,0.0 +25050,42,14,35,0.0 +25050,37,26,37,0.0 +25050,62,49.3,30,0.0 +25050,49,20,5,0.0 +25050,58,13.25,19,0.0 +25050,6,25,33,0.0 +25050,39,18,9,0.0 +25050,70,15,47,0.0 +25050,57,19.5,18,0.0 +25050,77,13,7,0.0 +25050,16,17.45,12,0.0 +25050,48,12.75,45,0.0 +25050,7,30,27,0.0 +25050,24,4.5,36,0.0 +25050,4,22,25,0.0 +25050,26,31.23,13,0.0 +25050,75,7.75,15,0.0 +25050,10,31,43,0.0 +25050,53,32.8,7,0.0 +25050,67,14,24,0.0 +25050,45,9.5,5,0.0 +25050,71,21.5,8,0.0 +25050,8,40,39,0.0 +25050,52,7,30,0.0 +25050,29,123.79,31,0.0 +25050,35,18,20,0.0 +25050,55,24,6,0.0 +25050,1,18,50,0.0 +25050,63,43.9,28,0.0 +25051,58,13.25,41,0.0 +25051,62,49.3,6,0.0 +25051,31,12.5,42,0.0 +25051,22,21,43,0.0 +25051,40,18.4,34,0.0 +25051,42,14,36,0.0 +25051,59,55,50,0.0 +25051,19,9.2,22,0.0 +25051,35,18,39,0.0 +25051,27,43.9,16,0.0 +25051,50,16.25,49,0.0 +25052,66,17,47,0.0 +25052,19,9.2,38,0.0 +25052,8,40,28,0.0 +25052,49,20,2,0.0 +25052,31,12.5,45,0.0 +25052,12,38,3,0.0 +25052,68,12.5,34,0.0 +25052,24,4.5,12,0.0 +25052,77,13,20,0.0 +25052,40,18.4,41,0.0 +25052,47,9.5,11,0.0 +25052,22,21,2,0.0 +25052,43,46,49,0.0 +25052,37,26,41,0.0 +25052,53,32.8,18,0.0 +25052,69,36,22,0.0 +25052,74,10,10,0.0 +25052,1,18,43,0.0 +25052,59,55,48,0.0 +25052,62,49.3,46,0.0 +25052,32,32,9,0.0 +25052,61,28.5,42,0.0 +25052,46,12,18,0.0 +25052,25,14,18,0.0 +25052,72,34.8,25,0.0 +25052,7,30,40,0.0 +25052,11,21,24,0.0 +25052,73,15,44,0.0 +25052,60,34,29,0.0 +25052,14,23.25,31,0.0 +25052,23,9,33,0.0 +25052,76,18,46,0.0 +25052,34,14,16,0.0 +25052,56,38,39,0.0 +25052,35,18,30,0.0 +25052,67,14,9,0.0 +25052,42,14,31,0.0 +25052,17,39,8,0.0 +25052,71,21.5,33,0.0 +25052,6,25,32,0.0 +25052,63,43.9,33,0.0 +25052,48,12.75,32,0.0 +25052,30,25.89,35,0.0 +25052,2,19,21,0.0 +25052,65,21.05,43,0.0 +25052,52,7,23,0.0 +25052,4,22,34,0.0 +25052,57,19.5,25,0.0 +25052,28,45.6,50,0.0 +25052,45,9.5,28,0.0 +25052,29,123.79,17,0.0 +25052,26,31.23,16,0.0 +25052,58,13.25,46,0.0 +25052,15,15.5,39,0.0 +25052,10,31,11,0.0 +25052,21,10,34,0.0 +25052,33,2.5,23,0.0 +25052,38,263.5,9,0.0 +25053,19,9.2,47,0.0 +25053,27,43.9,30,0.0 +25053,29,123.79,42,0.0 +25053,45,9.5,30,0.0 +25053,40,18.4,36,0.0 +25053,66,17,18,0.0 +25053,54,7.45,21,0.0 +25053,38,263.5,16,0.0 +25053,72,34.8,17,0.0 +25053,10,31,46,0.0 +25053,42,14,33,0.0 +25053,58,13.25,43,0.0 +25053,37,26,40,0.0 +25053,41,9.65,23,0.0 +25053,31,12.5,4,0.0 +25053,14,23.25,29,0.0 +25053,69,36,24,0.0 +25053,4,22,24,0.0 +25053,76,18,3,0.0 +25053,23,9,45,0.0 +25053,59,55,15,0.0 +25053,65,21.05,19,0.0 +25053,50,16.25,13,0.0 +25053,3,10,4,0.0 +25053,74,10,44,0.0 +25053,11,21,43,0.0 +25053,75,7.75,48,0.0 +25053,53,32.8,16,0.0 +25053,43,46,31,0.0 +25053,48,12.75,43,0.0 +25053,18,62.5,45,0.0 +25053,70,15,8,0.0 +25053,9,97,47,0.0 +25053,24,4.5,22,0.0 +25053,77,13,33,0.0 +25053,52,7,29,0.0 +25053,71,21.5,11,0.0 +25053,49,20,35,0.0 +25053,51,53,19,0.0 +25053,20,81,26,0.0 +25053,33,2.5,3,0.0 +25054,26,31.23,36,0.0 +25054,1,18,1,0.0 +25054,59,55,41,0.0 +25054,55,24,21,0.0 +25054,31,12.5,38,0.0 +25054,13,6,14,0.0 +25054,35,18,15,0.0 +25054,47,9.5,50,0.0 +25054,2,19,43,0.0 +25054,36,19,14,0.0 +25054,8,40,4,0.0 +25054,22,21,1,0.0 +25054,57,19.5,28,0.0 +25054,38,263.5,33,0.0 +25054,54,7.45,36,0.0 +25054,33,2.5,46,0.0 +25054,45,9.5,11,0.0 +25054,48,12.75,18,0.0 +25054,44,19.45,38,0.0 +25054,56,38,17,0.0 +25054,27,43.9,35,0.0 +25054,77,13,3,0.0 +25054,4,22,37,0.0 +25054,20,81,5,0.0 +25054,74,10,24,0.0 +25054,17,39,20,0.0 +25054,70,15,44,0.0 +25054,43,46,50,0.0 +25054,69,36,2,0.0 +25054,64,33.25,40,0.0 +25054,40,18.4,37,0.0 +25054,9,97,49,0.0 +25054,71,21.5,35,0.0 +25054,25,14,42,0.0 +25054,34,14,35,0.0 +25054,24,4.5,31,0.0 +25054,39,18,26,0.0 +25054,32,32,7,0.0 +25054,72,34.8,17,0.0 +25054,41,9.65,14,0.0 +25054,62,49.3,3,0.0 +25054,52,7,9,0.0 +25054,7,30,46,0.0 +25054,65,21.05,35,0.0 +25054,28,45.6,31,0.0 +25054,42,14,2,0.0 +25054,6,25,43,0.0 +25054,5,21.35,40,0.0 +25054,53,32.8,48,0.0 +25054,14,23.25,22,0.0 +25054,76,18,44,0.0 +25054,15,15.5,20,0.0 +25054,58,13.25,1,0.0 +25054,21,10,11,0.0 +25054,75,7.75,19,0.0 +25054,18,62.5,8,0.0 +25054,66,17,2,0.0 +25054,10,31,25,0.0 +25054,63,43.9,16,0.0 +25054,37,26,11,0.0 +25054,46,12,45,0.0 +25054,19,9.2,10,0.0 +25054,67,14,25,0.0 +25054,29,123.79,46,0.0 +25054,3,10,48,0.0 +25054,16,17.45,14,0.0 +25054,23,9,21,0.0 +25054,12,38,4,0.0 +25054,49,20,46,0.0 +25054,61,28.5,32,0.0 +25054,60,34,13,0.0 +25054,51,53,3,0.0 +25054,73,15,5,0.0 +25054,11,21,27,0.0 +25054,50,16.25,21,0.0 +25055,37,26,26,0.0 +25055,29,123.79,48,0.0 +25055,31,12.5,30,0.0 +25055,61,28.5,12,0.0 +25055,62,49.3,27,0.0 +25055,77,13,48,0.0 +25055,53,32.8,25,0.0 +25055,47,9.5,11,0.0 +25055,44,19.45,27,0.0 +25055,70,15,40,0.0 +25055,52,7,35,0.0 +25055,49,20,2,0.0 +25055,24,4.5,48,0.0 +25055,1,18,7,0.0 +25055,46,12,41,0.0 +25055,66,17,34,0.0 +25055,12,38,14,0.0 +25055,21,10,22,0.0 +25055,11,21,15,0.0 +25055,71,21.5,5,0.0 +25055,45,9.5,10,0.0 +25055,51,53,3,0.0 +25055,35,18,13,0.0 +25055,10,31,28,0.0 +25055,65,21.05,34,0.0 +25055,26,31.23,49,0.0 +25055,59,55,29,0.0 +25055,20,81,24,0.0 +25055,74,10,23,0.0 +25055,14,23.25,26,0.0 +25055,54,7.45,25,0.0 +25055,42,14,43,0.0 +25055,41,9.65,46,0.0 +25055,18,62.5,41,0.0 +25055,32,32,30,0.0 +25055,3,10,45,0.0 +25055,34,14,4,0.0 +25055,39,18,14,0.0 +25055,17,39,6,0.0 +25055,27,43.9,37,0.0 +25055,13,6,49,0.0 +25055,40,18.4,37,0.0 +25055,15,15.5,3,0.0 +25055,16,17.45,41,0.0 +25055,2,19,37,0.0 +25055,23,9,18,0.0 +25055,8,40,38,0.0 +25055,50,16.25,14,0.0 +25055,25,14,12,0.0 +25055,43,46,36,0.0 +25055,72,34.8,16,0.0 +25055,28,45.6,40,0.0 +25055,48,12.75,6,0.0 +25055,58,13.25,29,0.0 +25055,4,22,45,0.0 +25055,69,36,9,0.0 +25055,9,97,1,0.0 +25055,68,12.5,46,0.0 +25055,60,34,23,0.0 +25055,56,38,41,0.0 +25055,57,19.5,37,0.0 +25055,55,24,41,0.0 +25055,19,9.2,1,0.0 +25055,7,30,27,0.0 +25055,75,7.75,32,0.0 +25055,76,18,25,0.0 +25055,30,25.89,5,0.0 +25055,64,33.25,40,0.0 +25056,2,19,27,0.0 +25056,28,45.6,47,0.0 +25056,64,33.25,47,0.0 +25056,43,46,41,0.0 +25056,7,30,33,0.0 +25056,36,19,19,0.0 +25056,70,15,23,0.0 +25056,31,12.5,13,0.0 +25056,41,9.65,11,0.0 +25056,33,2.5,50,0.0 +25056,5,21.35,27,0.0 +25056,57,19.5,6,0.0 +25056,51,53,42,0.0 +25056,1,18,36,0.0 +25056,75,7.75,4,0.0 +25056,25,14,23,0.0 +25056,67,14,5,0.0 +25056,47,9.5,11,0.0 +25056,74,10,35,0.0 +25056,15,15.5,25,0.0 +25056,30,25.89,46,0.0 +25056,22,21,34,0.0 +25056,19,9.2,10,0.0 +25056,35,18,46,0.0 +25056,37,26,24,0.0 +25056,69,36,11,0.0 +25056,66,17,44,0.0 +25056,13,6,7,0.0 +25056,29,123.79,14,0.0 +25056,11,21,6,0.0 +25056,48,12.75,12,0.0 +25056,58,13.25,17,0.0 +25056,72,34.8,5,0.0 +25056,73,15,17,0.0 +25056,55,24,33,0.0 +25056,14,23.25,3,0.0 +25056,62,49.3,9,0.0 +25056,24,4.5,35,0.0 +25056,60,34,41,0.0 +25056,27,43.9,14,0.0 +25056,23,9,5,0.0 +25056,4,22,33,0.0 +25056,3,10,41,0.0 +25056,26,31.23,4,0.0 +25056,16,17.45,18,0.0 +25056,65,21.05,18,0.0 +25056,42,14,38,0.0 +25056,8,40,9,0.0 +25056,39,18,30,0.0 +25056,20,81,20,0.0 +25056,56,38,19,0.0 +25056,6,25,9,0.0 +25056,54,7.45,27,0.0 +25056,34,14,11,0.0 +25056,68,12.5,40,0.0 +25056,46,12,17,0.0 +25056,77,13,50,0.0 +25056,50,16.25,39,0.0 +25056,59,55,29,0.0 +25056,49,20,50,0.0 +25056,38,263.5,14,0.0 +25056,45,9.5,50,0.0 +25056,44,19.45,31,0.0 +25056,17,39,36,0.0 +25056,63,43.9,16,0.0 +25056,10,31,3,0.0 +25056,32,32,25,0.0 +25056,52,7,28,0.0 +25056,9,97,27,0.0 +25056,53,32.8,16,0.0 +25056,61,28.5,42,0.0 +25056,21,10,32,0.0 +25056,71,21.5,26,0.0 +25056,40,18.4,32,0.0 +25056,12,38,18,0.0 +25057,72,34.8,11,0.0 +25057,63,43.9,4,0.0 +25057,19,9.2,33,0.0 +25057,6,25,44,0.0 +25057,7,30,46,0.0 +25057,70,15,12,0.0 +25057,26,31.23,43,0.0 +25057,74,10,43,0.0 +25057,34,14,11,0.0 +25057,48,12.75,43,0.0 +25057,61,28.5,47,0.0 +25057,56,38,10,0.0 +25057,22,21,3,0.0 +25057,13,6,47,0.0 +25057,14,23.25,32,0.0 +25057,41,9.65,36,0.0 +25057,76,18,41,0.0 +25057,40,18.4,29,0.0 +25057,33,2.5,19,0.0 +25057,3,10,41,0.0 +25057,30,25.89,13,0.0 +25057,62,49.3,42,0.0 +25057,12,38,34,0.0 +25057,35,18,45,0.0 +25057,31,12.5,6,0.0 +25057,20,81,14,0.0 +25057,57,19.5,30,0.0 +25057,52,7,36,0.0 +25057,10,31,17,0.0 +25057,67,14,5,0.0 +25057,36,19,36,0.0 +25057,11,21,41,0.0 +25057,1,18,15,0.0 +25057,44,19.45,5,0.0 +25057,16,17.45,13,0.0 +25057,18,62.5,19,0.0 +25057,29,123.79,40,0.0 +25057,51,53,37,0.0 +25057,27,43.9,35,0.0 +25057,73,15,24,0.0 +25057,23,9,12,0.0 +25057,37,26,20,0.0 +25057,58,13.25,43,0.0 +25057,38,263.5,45,0.0 +25057,21,10,13,0.0 +25057,28,45.6,16,0.0 +25057,69,36,39,0.0 +25057,77,13,3,0.0 +25057,4,22,41,0.0 +25057,25,14,50,0.0 +25057,55,24,16,0.0 +25057,71,21.5,28,0.0 +25057,47,9.5,38,0.0 +25057,42,14,21,0.0 +25057,8,40,25,0.0 +25057,53,32.8,26,0.0 +25057,65,21.05,30,0.0 +25057,15,15.5,4,0.0 +25057,2,19,6,0.0 +25057,43,46,37,0.0 +25057,46,12,48,0.0 +25057,68,12.5,48,0.0 +25057,45,9.5,46,0.0 +25057,54,7.45,28,0.0 +25057,32,32,45,0.0 +25057,50,16.25,22,0.0 +25057,17,39,7,0.0 +25057,60,34,35,0.0 +25057,66,17,31,0.0 +25057,64,33.25,19,0.0 +25057,49,20,18,0.0 +25057,39,18,14,0.0 +25058,19,9.2,40,0.0 +25058,18,62.5,34,0.0 +25058,45,9.5,43,0.0 +25058,50,16.25,2,0.0 +25058,36,19,12,0.0 +25058,70,15,27,0.0 +25058,77,13,30,0.0 +25058,3,10,47,0.0 +25058,75,7.75,34,0.0 +25058,68,12.5,33,0.0 +25058,62,49.3,29,0.0 +25058,21,10,47,0.0 +25058,69,36,9,0.0 +25058,20,81,48,0.0 +25058,5,21.35,12,0.0 +25058,73,15,35,0.0 +25058,66,17,27,0.0 +25058,52,7,35,0.0 +25058,55,24,47,0.0 +25058,47,9.5,6,0.0 +25058,25,14,3,0.0 +25058,22,21,17,0.0 +25058,37,26,34,0.0 +25058,7,30,43,0.0 +25058,48,12.75,28,0.0 +25058,63,43.9,1,0.0 +25058,71,21.5,20,0.0 +25058,16,17.45,46,0.0 +25058,30,25.89,38,0.0 +25058,4,22,40,0.0 +25058,9,97,34,0.0 +25058,32,32,50,0.0 +25059,22,21,20,0.0 +25059,48,12.75,20,0.0 +25059,18,62.5,46,0.0 +25059,36,19,25,0.0 +25059,19,9.2,10,0.0 +25059,39,18,11,0.0 +25059,55,24,45,0.0 +25059,46,12,1,0.0 +25059,67,14,3,0.0 +25059,30,25.89,2,0.0 +25059,63,43.9,12,0.0 +25059,77,13,45,0.0 +25059,29,123.79,35,0.0 +25059,69,36,1,0.0 +25059,3,10,24,0.0 +25059,45,9.5,50,0.0 +25059,33,2.5,29,0.0 +25059,26,31.23,41,0.0 +25059,66,17,26,0.0 +25059,49,20,22,0.0 +25059,11,21,41,0.0 +25059,6,25,31,0.0 +25059,16,17.45,9,0.0 +25059,62,49.3,45,0.0 +25059,15,15.5,18,0.0 +25059,41,9.65,35,0.0 +25059,9,97,18,0.0 +25059,64,33.25,10,0.0 +25059,23,9,21,0.0 +25059,71,21.5,1,0.0 +25059,43,46,14,0.0 +25059,35,18,44,0.0 +25059,17,39,39,0.0 +25059,38,263.5,18,0.0 +25059,12,38,46,0.0 +25059,61,28.5,25,0.0 +25059,75,7.75,17,0.0 +25059,24,4.5,7,0.0 +25059,5,21.35,32,0.0 +25059,4,22,34,0.0 +25059,65,21.05,42,0.0 +25059,50,16.25,36,0.0 +25060,76,18,7,0.0 +25060,51,53,40,0.0 +25060,68,12.5,36,0.0 +25060,36,19,47,0.0 +25060,59,55,10,0.0 +25060,12,38,34,0.0 +25060,29,123.79,23,0.0 +25060,1,18,7,0.0 +25060,35,18,7,0.0 +25060,28,45.6,47,0.0 +25060,34,14,39,0.0 +25060,72,34.8,1,0.0 +25060,52,7,16,0.0 +25060,2,19,27,0.0 +25060,54,7.45,7,0.0 +25060,20,81,34,0.0 +25060,60,34,14,0.0 +25060,6,25,4,0.0 +25060,41,9.65,50,0.0 +25060,3,10,14,0.0 +25060,40,18.4,33,0.0 +25060,75,7.75,46,0.0 +25060,39,18,39,0.0 +25060,32,32,27,0.0 +25060,69,36,28,0.0 +25060,45,9.5,15,0.0 +25060,26,31.23,16,0.0 +25060,13,6,1,0.0 +25060,19,9.2,35,0.0 +25060,22,21,43,0.0 +25060,71,21.5,9,0.0 +25060,10,31,5,0.0 +25060,57,19.5,27,0.0 +25060,27,43.9,43,0.0 +25060,53,32.8,18,0.0 +25060,49,20,22,0.0 +25060,73,15,37,0.0 +25060,25,14,6,0.0 +25060,50,16.25,12,0.0 +25060,65,21.05,30,0.0 +25060,47,9.5,28,0.0 +25060,23,9,48,0.0 +25060,31,12.5,11,0.0 +25060,15,15.5,13,0.0 +25060,63,43.9,36,0.0 +25060,7,30,15,0.0 +25060,61,28.5,23,0.0 +25060,8,40,18,0.0 +25060,55,24,39,0.0 +25060,33,2.5,2,0.0 +25060,17,39,42,0.0 +25060,14,23.25,44,0.0 +25060,74,10,14,0.0 +25060,11,21,11,0.0 +25060,18,62.5,46,0.0 +25060,58,13.25,42,0.0 +25060,42,14,24,0.0 +25060,9,97,21,0.0 +25060,37,26,43,0.0 +25060,5,21.35,28,0.0 +25060,16,17.45,41,0.0 +25060,4,22,42,0.0 +25060,70,15,25,0.0 +25060,38,263.5,29,0.0 +25060,46,12,19,0.0 +25060,64,33.25,49,0.0 +25060,56,38,35,0.0 +25060,77,13,30,0.0 +25060,66,17,19,0.0 +25060,62,49.3,44,0.0 +25060,48,12.75,18,0.0 +25060,44,19.45,34,0.0 +25060,43,46,14,0.0 +25060,24,4.5,31,0.0 +25061,40,18.4,19,0.0 +25061,51,53,42,0.0 +25061,19,9.2,37,0.0 +25061,1,18,24,0.0 +25061,28,45.6,46,0.0 +25061,74,10,4,0.0 +25061,45,9.5,31,0.0 +25061,41,9.65,24,0.0 +25061,13,6,20,0.0 +25061,66,17,15,0.0 +25061,33,2.5,14,0.0 +25061,58,13.25,2,0.0 +25061,46,12,43,0.0 +25061,25,14,1,0.0 +25061,34,14,16,0.0 +25061,27,43.9,7,0.0 +25061,63,43.9,1,0.0 +25061,76,18,37,0.0 +25061,57,19.5,47,0.0 +25061,2,19,46,0.0 +25061,43,46,12,0.0 +25061,3,10,30,0.0 +25061,59,55,28,0.0 +25061,12,38,26,0.0 +25061,26,31.23,46,0.0 +25061,64,33.25,33,0.0 +25061,22,21,3,0.0 +25061,47,9.5,50,0.0 +25061,14,23.25,44,0.0 +25061,53,32.8,44,0.0 +25061,70,15,24,0.0 +25061,38,263.5,7,0.0 +25061,61,28.5,48,0.0 +25061,20,81,30,0.0 +25061,65,21.05,20,0.0 +25061,77,13,1,0.0 +25061,23,9,10,0.0 +25061,73,15,9,0.0 +25061,56,38,6,0.0 +25061,30,25.89,32,0.0 +25061,67,14,18,0.0 +25061,69,36,1,0.0 +25061,11,21,5,0.0 +25061,52,7,40,0.0 +25062,63,43.9,3,0.0 +25062,40,18.4,34,0.0 +25062,50,16.25,11,0.0 +25062,20,81,45,0.0 +25062,41,9.65,9,0.0 +25062,36,19,28,0.0 +25062,13,6,23,0.0 +25062,22,21,17,0.0 +25062,65,21.05,36,0.0 +25062,61,28.5,31,0.0 +25062,14,23.25,44,0.0 +25062,7,30,9,0.0 +25062,3,10,6,0.0 +25062,56,38,32,0.0 +25062,77,13,48,0.0 +25062,73,15,4,0.0 +25062,25,14,24,0.0 +25062,8,40,11,0.0 +25062,74,10,4,0.0 +25062,19,9.2,41,0.0 +25062,38,263.5,32,0.0 +25062,29,123.79,34,0.0 +25062,62,49.3,2,0.0 +25062,55,24,40,0.0 +25062,72,34.8,39,0.0 +25062,21,10,25,0.0 +25062,57,19.5,25,0.0 +25062,30,25.89,37,0.0 +25062,6,25,30,0.0 +25062,35,18,8,0.0 +25062,4,22,12,0.0 +25062,28,45.6,46,0.0 +25062,47,9.5,35,0.0 +25062,70,15,4,0.0 +25062,68,12.5,45,0.0 +25062,9,97,41,0.0 +25062,76,18,32,0.0 +25062,49,20,32,0.0 +25062,2,19,37,0.0 +25062,44,19.45,37,0.0 +25062,37,26,29,0.0 +25062,31,12.5,44,0.0 +25063,70,15,30,0.0 +25063,46,12,42,0.0 +25063,1,18,9,0.0 +25063,65,21.05,37,0.0 +25063,34,14,7,0.0 +25063,77,13,21,0.0 +25063,25,14,35,0.0 +25063,37,26,50,0.0 +25063,9,97,31,0.0 +25063,73,15,6,0.0 +25063,20,81,43,0.0 +25063,7,30,14,0.0 +25063,42,14,49,0.0 +25063,26,31.23,41,0.0 +25063,12,38,6,0.0 +25063,4,22,26,0.0 +25063,30,25.89,15,0.0 +25063,60,34,27,0.0 +25063,24,4.5,21,0.0 +25063,43,46,34,0.0 +25063,66,17,38,0.0 +25063,15,15.5,48,0.0 +25063,38,263.5,33,0.0 +25063,67,14,15,0.0 +25063,5,21.35,6,0.0 +25063,57,19.5,30,0.0 +25063,64,33.25,48,0.0 +25063,2,19,41,0.0 +25063,49,20,39,0.0 +25063,71,21.5,17,0.0 +25063,61,28.5,50,0.0 +25063,44,19.45,9,0.0 +25063,21,10,6,0.0 +25063,23,9,10,0.0 +25063,10,31,28,0.0 +25063,41,9.65,26,0.0 +25063,59,55,11,0.0 +25063,56,38,5,0.0 +25063,45,9.5,3,0.0 +25063,76,18,17,0.0 +25063,68,12.5,30,0.0 +25063,48,12.75,8,0.0 +25063,58,13.25,9,0.0 +25063,18,62.5,39,0.0 +25063,8,40,28,0.0 +25063,69,36,31,0.0 +25063,74,10,46,0.0 +25063,3,10,30,0.0 +25063,11,21,16,0.0 +25063,17,39,20,0.0 +25063,72,34.8,30,0.0 +25063,29,123.79,6,0.0 +25063,50,16.25,34,0.0 +25063,28,45.6,35,0.0 +25063,35,18,41,0.0 +25063,16,17.45,47,0.0 +25063,6,25,47,0.0 +25063,47,9.5,7,0.0 +25063,33,2.5,14,0.0 +25063,51,53,36,0.0 +25063,63,43.9,45,0.0 +25064,14,23.25,13,0.0 +25064,74,10,37,0.0 +25064,18,62.5,9,0.0 +25064,47,9.5,24,0.0 +25064,34,14,46,0.0 +25064,15,15.5,29,0.0 +25064,19,9.2,32,0.0 +25064,72,34.8,1,0.0 +25064,21,10,4,0.0 +25064,8,40,5,0.0 +25064,27,43.9,8,0.0 +25064,56,38,50,0.0 +25064,66,17,19,0.0 +25064,64,33.25,36,0.0 +25064,50,16.25,39,0.0 +25064,43,46,33,0.0 +25064,33,2.5,42,0.0 +25064,54,7.45,43,0.0 +25064,13,6,49,0.0 +25064,31,12.5,30,0.0 +25064,37,26,35,0.0 +25064,63,43.9,46,0.0 +25064,77,13,42,0.0 +25064,42,14,47,0.0 +25064,39,18,16,0.0 +25064,48,12.75,29,0.0 +25064,7,30,48,0.0 +25064,25,14,37,0.0 +25064,49,20,30,0.0 +25064,6,25,37,0.0 +25064,70,15,42,0.0 +25064,29,123.79,28,0.0 +25064,41,9.65,23,0.0 +25064,58,13.25,42,0.0 +25064,40,18.4,3,0.0 +25064,52,7,24,0.0 +25064,10,31,21,0.0 +25064,55,24,34,0.0 +25064,4,22,23,0.0 +25064,73,15,50,0.0 +25064,51,53,38,0.0 +25064,71,21.5,40,0.0 +25064,38,263.5,37,0.0 +25064,35,18,20,0.0 +25064,17,39,15,0.0 +25064,5,21.35,41,0.0 +25064,62,49.3,3,0.0 +25064,60,34,15,0.0 +25064,57,19.5,3,0.0 +25064,1,18,47,0.0 +25064,30,25.89,3,0.0 +25064,2,19,25,0.0 +25064,69,36,29,0.0 +25064,67,14,37,0.0 +25064,9,97,5,0.0 +25064,65,21.05,1,0.0 +25064,68,12.5,16,0.0 +25064,3,10,3,0.0 +25064,59,55,43,0.0 +25065,54,7.45,21,0.0 +25065,42,14,26,0.0 +25065,44,19.45,14,0.0 +25065,14,23.25,3,0.0 +25065,12,38,16,0.0 +25065,61,28.5,40,0.0 +25065,5,21.35,48,0.0 +25065,30,25.89,31,0.0 +25065,19,9.2,23,0.0 +25065,70,15,37,0.0 +25065,15,15.5,13,0.0 +25065,57,19.5,5,0.0 +25065,28,45.6,5,0.0 +25065,18,62.5,1,0.0 +25065,76,18,19,0.0 +25065,16,17.45,41,0.0 +25065,8,40,13,0.0 +25065,49,20,23,0.0 +25065,10,31,49,0.0 +25065,50,16.25,8,0.0 +25065,20,81,47,0.0 +25065,17,39,39,0.0 +25065,1,18,44,0.0 +25065,2,19,30,0.0 +25065,74,10,14,0.0 +25065,60,34,46,0.0 +25065,47,9.5,42,0.0 +25065,56,38,49,0.0 +25065,9,97,14,0.0 +25065,45,9.5,50,0.0 +25065,25,14,28,0.0 +25065,65,21.05,1,0.0 +25065,77,13,41,0.0 +25065,69,36,12,0.0 +25065,51,53,19,0.0 +25065,41,9.65,5,0.0 +25065,33,2.5,6,0.0 +25065,4,22,7,0.0 +25065,63,43.9,25,0.0 +25065,32,32,41,0.0 +25065,75,7.75,16,0.0 +25065,36,19,42,0.0 +25065,52,7,38,0.0 +25065,31,12.5,31,0.0 +25065,7,30,2,0.0 +25065,38,263.5,29,0.0 +25065,23,9,36,0.0 +25065,24,4.5,16,0.0 +25065,58,13.25,22,0.0 +25065,53,32.8,13,0.0 +25065,43,46,21,0.0 +25065,6,25,1,0.0 +25065,13,6,44,0.0 +25065,29,123.79,6,0.0 +25065,67,14,43,0.0 +25065,27,43.9,39,0.0 +25065,22,21,24,0.0 +25065,39,18,10,0.0 +25065,37,26,42,0.0 +25065,34,14,5,0.0 +25065,46,12,8,0.0 +25065,73,15,28,0.0 +25065,40,18.4,8,0.0 +25066,61,28.5,41,0.0 +25066,59,55,25,0.0 +25066,6,25,48,0.0 +25066,13,6,8,0.0 +25066,40,18.4,44,0.0 +25066,18,62.5,16,0.0 +25066,71,21.5,35,0.0 +25066,70,15,41,0.0 +25066,52,7,48,0.0 +25066,57,19.5,44,0.0 +25066,64,33.25,7,0.0 +25066,26,31.23,4,0.0 +25066,20,81,37,0.0 +25066,4,22,34,0.0 +25066,62,49.3,13,0.0 +25066,17,39,17,0.0 +25066,15,15.5,1,0.0 +25066,34,14,34,0.0 +25066,19,9.2,9,0.0 +25066,7,30,41,0.0 +25066,22,21,37,0.0 +25066,8,40,46,0.0 +25066,35,18,34,0.0 +25066,5,21.35,30,0.0 +25066,58,13.25,46,0.0 +25066,73,15,5,0.0 +25066,42,14,37,0.0 +25066,48,12.75,17,0.0 +25066,23,9,47,0.0 +25066,38,263.5,37,0.0 +25066,10,31,39,0.0 +25066,53,32.8,26,0.0 +25067,77,13,49,0.0 +25067,60,34,43,0.0 +25067,55,24,19,0.0 +25067,42,14,19,0.0 +25067,5,21.35,22,0.0 +25067,47,9.5,24,0.0 +25067,65,21.05,38,0.0 +25067,38,263.5,37,0.0 +25067,37,26,43,0.0 +25067,6,25,40,0.0 +25067,30,25.89,19,0.0 +25067,29,123.79,25,0.0 +25067,49,20,38,0.0 +25067,34,14,18,0.0 +25067,59,55,14,0.0 +25067,31,12.5,50,0.0 +25067,7,30,18,0.0 +25067,45,9.5,22,0.0 +25067,53,32.8,15,0.0 +25067,9,97,13,0.0 +25067,22,21,9,0.0 +25067,72,34.8,15,0.0 +25067,36,19,31,0.0 +25067,20,81,5,0.0 +25067,19,9.2,21,0.0 +25067,1,18,50,0.0 +25067,73,15,38,0.0 +25067,28,45.6,5,0.0 +25067,69,36,8,0.0 +25067,33,2.5,32,0.0 +25067,25,14,21,0.0 +25067,17,39,2,0.0 +25067,76,18,18,0.0 +25067,62,49.3,48,0.0 +25067,41,9.65,11,0.0 +25067,75,7.75,34,0.0 +25067,63,43.9,50,0.0 +25067,27,43.9,45,0.0 +25067,58,13.25,3,0.0 +25067,44,19.45,27,0.0 +25067,8,40,35,0.0 +25067,61,28.5,8,0.0 +25067,35,18,46,0.0 +25067,4,22,23,0.0 +25067,57,19.5,9,0.0 +25067,23,9,43,0.0 +25067,2,19,38,0.0 +25067,21,10,6,0.0 +25067,16,17.45,6,0.0 +25067,68,12.5,13,0.0 +25067,43,46,22,0.0 +25067,51,53,38,0.0 +25068,33,2.5,20,0.0 +25068,26,31.23,39,0.0 +25068,74,10,38,0.0 +25068,68,12.5,43,0.0 +25068,52,7,49,0.0 +25068,5,21.35,49,0.0 +25068,62,49.3,24,0.0 +25068,69,36,34,0.0 +25068,47,9.5,35,0.0 +25068,34,14,18,0.0 +25068,30,25.89,15,0.0 +25068,54,7.45,26,0.0 +25068,6,25,10,0.0 +25068,46,12,15,0.0 +25069,7,30,50,0.0 +25069,62,49.3,22,0.0 +25069,65,21.05,8,0.0 +25069,43,46,2,0.0 +25069,36,19,49,0.0 +25069,55,24,18,0.0 +25069,49,20,7,0.0 +25069,23,9,48,0.0 +25069,34,14,36,0.0 +25069,37,26,46,0.0 +25069,41,9.65,25,0.0 +25069,60,34,14,0.0 +25069,47,9.5,14,0.0 +25069,64,33.25,30,0.0 +25069,67,14,33,0.0 +25069,68,12.5,1,0.0 +25069,42,14,43,0.0 +25069,13,6,42,0.0 +25069,25,14,41,0.0 +25069,4,22,12,0.0 +25069,24,4.5,9,0.0 +25069,57,19.5,17,0.0 +25069,66,17,7,0.0 +25069,52,7,13,0.0 +25069,63,43.9,24,0.0 +25069,40,18.4,49,0.0 +25069,20,81,8,0.0 +25069,29,123.79,36,0.0 +25069,5,21.35,11,0.0 +25069,54,7.45,40,0.0 +25069,45,9.5,29,0.0 +25069,32,32,11,0.0 +25069,2,19,12,0.0 +25069,15,15.5,15,0.0 +25069,14,23.25,19,0.0 +25069,51,53,19,0.0 +25069,30,25.89,49,0.0 +25069,11,21,40,0.0 +25069,22,21,8,0.0 +25069,9,97,27,0.0 +25069,27,43.9,5,0.0 +25069,59,55,17,0.0 +25069,53,32.8,1,0.0 +25069,39,18,7,0.0 +25069,26,31.23,11,0.0 +25070,3,10,21,0.0 +25070,27,43.9,35,0.0 +25070,6,25,46,0.0 +25070,21,10,24,0.0 +25070,63,43.9,30,0.0 +25070,69,36,19,0.0 +25070,40,18.4,26,0.0 +25070,58,13.25,29,0.0 +25070,53,32.8,22,0.0 +25070,23,9,16,0.0 +25070,10,31,30,0.0 +25070,74,10,35,0.0 +25070,36,19,39,0.0 +25070,35,18,8,0.0 +25070,29,123.79,9,0.0 +25070,25,14,27,0.0 +25070,73,15,14,0.0 +25070,32,32,24,0.0 +25070,44,19.45,29,0.0 +25070,47,9.5,10,0.0 +25070,22,21,3,0.0 +25070,42,14,6,0.0 +25070,66,17,38,0.0 +25070,68,12.5,36,0.0 +25070,28,45.6,3,0.0 +25070,33,2.5,36,0.0 +25070,14,23.25,10,0.0 +25070,4,22,17,0.0 +25070,56,38,15,0.0 +25070,45,9.5,17,0.0 +25070,77,13,9,0.0 +25070,60,34,38,0.0 +25070,54,7.45,22,0.0 +25070,7,30,5,0.0 +25070,48,12.75,5,0.0 +25070,17,39,4,0.0 +25070,11,21,19,0.0 +25070,12,38,2,0.0 +25070,43,46,39,0.0 +25070,41,9.65,8,0.0 +25070,55,24,18,0.0 +25070,37,26,34,0.0 +25070,1,18,11,0.0 +25070,16,17.45,1,0.0 +25070,19,9.2,4,0.0 +25070,8,40,36,0.0 +25070,71,21.5,10,0.0 +25070,34,14,40,0.0 +25071,63,43.9,22,0.0 +25071,67,14,36,0.0 +25071,12,38,39,0.0 +25071,22,21,42,0.0 +25071,27,43.9,26,0.0 +25071,51,53,31,0.0 +25071,74,10,31,0.0 +25072,60,34,30,0.0 +25073,36,19,2,0.0 +25073,30,25.89,43,0.0 +25073,10,31,36,0.0 +25073,42,14,1,0.0 +25073,49,20,1,0.0 +25073,54,7.45,6,0.0 +25073,26,31.23,17,0.0 +25073,56,38,23,0.0 +25073,34,14,18,0.0 +25073,62,49.3,18,0.0 +25073,60,34,29,0.0 +25073,1,18,12,0.0 +25073,25,14,36,0.0 +25073,61,28.5,23,0.0 +25073,15,15.5,37,0.0 +25073,47,9.5,49,0.0 +25073,51,53,5,0.0 +25073,57,19.5,50,0.0 +25073,31,12.5,29,0.0 +25073,70,15,49,0.0 +25073,32,32,27,0.0 +25073,65,21.05,12,0.0 +25073,29,123.79,7,0.0 +25073,63,43.9,38,0.0 +25073,43,46,33,0.0 +25073,12,38,19,0.0 +25073,5,21.35,18,0.0 +25073,40,18.4,33,0.0 +25073,7,30,1,0.0 +25074,44,19.45,10,0.0 +25074,40,18.4,9,0.0 +25074,76,18,34,0.0 +25074,25,14,25,0.0 +25074,29,123.79,6,0.0 +25074,11,21,33,0.0 +25074,1,18,22,0.0 +25074,9,97,32,0.0 +25074,57,19.5,27,0.0 +25074,35,18,45,0.0 +25074,22,21,44,0.0 +25074,68,12.5,13,0.0 +25074,58,13.25,42,0.0 +25074,64,33.25,13,0.0 +25074,42,14,42,0.0 +25074,73,15,9,0.0 +25074,10,31,22,0.0 +25074,27,43.9,48,0.0 +25074,13,6,10,0.0 +25074,39,18,16,0.0 +25074,61,28.5,8,0.0 +25074,28,45.6,38,0.0 +25074,52,7,31,0.0 +25074,77,13,16,0.0 +25074,55,24,48,0.0 +25074,34,14,46,0.0 +25074,36,19,29,0.0 +25074,5,21.35,20,0.0 +25074,43,46,9,0.0 +25074,24,4.5,28,0.0 +25074,17,39,3,0.0 +25074,41,9.65,11,0.0 +25074,2,19,36,0.0 +25074,18,62.5,1,0.0 +25074,69,36,24,0.0 +25074,38,263.5,42,0.0 +25074,75,7.75,15,0.0 +25074,74,10,7,0.0 +25074,37,26,9,0.0 +25074,20,81,28,0.0 +25074,59,55,6,0.0 +25074,15,15.5,29,0.0 +25074,49,20,7,0.0 +25074,4,22,10,0.0 +25074,3,10,35,0.0 +25074,51,53,28,0.0 +25075,69,36,31,0.0 +25075,36,19,5,0.0 +25075,40,18.4,42,0.0 +25075,21,10,7,0.0 +25076,26,31.23,29,0.0 +25076,6,25,38,0.0 +25076,19,9.2,7,0.0 +25076,43,46,18,0.0 +25076,14,23.25,4,0.0 +25076,13,6,39,0.0 +25076,35,18,45,0.0 +25076,36,19,5,0.0 +25076,64,33.25,37,0.0 +25076,67,14,24,0.0 +25076,12,38,22,0.0 +25076,63,43.9,12,0.0 +25076,25,14,16,0.0 +25076,76,18,36,0.0 +25076,60,34,45,0.0 +25076,54,7.45,15,0.0 +25076,46,12,50,0.0 +25076,27,43.9,23,0.0 +25076,34,14,36,0.0 +25076,58,13.25,48,0.0 +25076,61,28.5,48,0.0 +25076,48,12.75,28,0.0 +25076,2,19,24,0.0 +25076,4,22,20,0.0 +25076,30,25.89,8,0.0 +25076,37,26,21,0.0 +25076,22,21,4,0.0 +25076,57,19.5,45,0.0 +25076,50,16.25,35,0.0 +25076,23,9,28,0.0 +25076,70,15,36,0.0 +25076,56,38,4,0.0 +25076,45,9.5,15,0.0 +25076,77,13,17,0.0 +25076,66,17,46,0.0 +25076,17,39,34,0.0 +25076,55,24,47,0.0 +25076,33,2.5,44,0.0 +25076,28,45.6,4,0.0 +25076,7,30,16,0.0 +25076,73,15,10,0.0 +25076,18,62.5,9,0.0 +25076,1,18,22,0.0 +25076,52,7,12,0.0 +25076,21,10,13,0.0 +25076,8,40,7,0.0 +25077,17,39,44,0.0 +25077,38,263.5,29,0.0 +25077,64,33.25,8,0.0 +25077,49,20,38,0.0 +25077,72,34.8,13,0.0 +25077,34,14,13,0.0 +25077,65,21.05,14,0.0 +25077,53,32.8,13,0.0 +25077,37,26,13,0.0 +25077,75,7.75,34,0.0 +25077,7,30,34,0.0 +25077,32,32,22,0.0 +25077,16,17.45,3,0.0 +25077,26,31.23,17,0.0 +25077,48,12.75,18,0.0 +25077,28,45.6,20,0.0 +25077,62,49.3,28,0.0 +25077,19,9.2,38,0.0 +25077,66,17,4,0.0 +25077,35,18,49,0.0 +25077,11,21,18,0.0 +25077,71,21.5,6,0.0 +25077,18,62.5,28,0.0 +25077,8,40,49,0.0 +25077,39,18,43,0.0 +25077,27,43.9,47,0.0 +25077,45,9.5,50,0.0 +25077,63,43.9,48,0.0 +25077,60,34,33,0.0 +25077,56,38,8,0.0 +25077,67,14,10,0.0 +25077,20,81,13,0.0 +25077,21,10,12,0.0 +25077,3,10,14,0.0 +25077,14,23.25,44,0.0 +25077,24,4.5,22,0.0 +25077,73,15,48,0.0 +25077,4,22,16,0.0 +25077,46,12,43,0.0 +25077,36,19,19,0.0 +25077,55,24,34,0.0 +25077,54,7.45,19,0.0 +25077,15,15.5,35,0.0 +25077,12,38,13,0.0 +25077,33,2.5,27,0.0 +25077,25,14,33,0.0 +25077,5,21.35,8,0.0 +25077,40,18.4,3,0.0 +25078,9,97,13,0.0 +25078,40,18.4,37,0.0 +25078,75,7.75,2,0.0 +25078,67,14,9,0.0 +25078,63,43.9,32,0.0 +25078,41,9.65,12,0.0 +25078,13,6,41,0.0 +25078,55,24,50,0.0 +25078,71,21.5,41,0.0 +25078,6,25,29,0.0 +25078,7,30,13,0.0 +25078,3,10,46,0.0 +25078,32,32,49,0.0 +25078,42,14,21,0.0 +25078,50,16.25,9,0.0 +25078,46,12,25,0.0 +25078,27,43.9,11,0.0 +25078,64,33.25,47,0.0 +25078,29,123.79,5,0.0 +25078,26,31.23,50,0.0 +25078,22,21,34,0.0 +25078,38,263.5,37,0.0 +25078,30,25.89,49,0.0 +25078,77,13,17,0.0 +25078,48,12.75,5,0.0 +25078,44,19.45,40,0.0 +25078,72,34.8,31,0.0 +25078,73,15,49,0.0 +25078,17,39,19,0.0 +25078,70,15,41,0.0 +25078,57,19.5,3,0.0 +25078,23,9,44,0.0 +25078,2,19,30,0.0 +25078,53,32.8,13,0.0 +25078,14,23.25,35,0.0 +25078,34,14,50,0.0 +25078,66,17,42,0.0 +25078,62,49.3,23,0.0 +25078,20,81,32,0.0 +25078,8,40,26,0.0 +25078,4,22,20,0.0 +25078,10,31,10,0.0 +25078,5,21.35,15,0.0 +25078,16,17.45,25,0.0 +25078,51,53,49,0.0 +25078,18,62.5,18,0.0 +25079,63,43.9,4,0.0 +25079,54,7.45,46,0.0 +25079,45,9.5,32,0.0 +25079,36,19,34,0.0 +25079,60,34,39,0.0 +25079,38,263.5,30,0.0 +25079,6,25,14,0.0 +25079,2,19,48,0.0 +25079,66,17,41,0.0 +25079,40,18.4,20,0.0 +25079,31,12.5,19,0.0 +25079,51,53,28,0.0 +25079,35,18,39,0.0 +25079,68,12.5,22,0.0 +25079,17,39,16,0.0 +25079,52,7,19,0.0 +25079,28,45.6,17,0.0 +25079,77,13,9,0.0 +25079,67,14,17,0.0 +25079,9,97,27,0.0 +25079,73,15,46,0.0 +25079,26,31.23,45,0.0 +25079,16,17.45,34,0.0 +25079,48,12.75,3,0.0 +25079,18,62.5,2,0.0 +25079,75,7.75,4,0.0 +25079,19,9.2,28,0.0 +25079,14,23.25,16,0.0 +25079,76,18,26,0.0 +25079,30,25.89,49,0.0 +25079,53,32.8,9,0.0 +25079,61,28.5,13,0.0 +25079,47,9.5,30,0.0 +25079,22,21,4,0.0 +25079,64,33.25,16,0.0 +25079,65,21.05,16,0.0 +25079,59,55,21,0.0 +25079,62,49.3,21,0.0 +25079,46,12,15,0.0 +25079,33,2.5,4,0.0 +25079,71,21.5,45,0.0 +25079,15,15.5,1,0.0 +25079,10,31,25,0.0 +25079,34,14,21,0.0 +25079,37,26,12,0.0 +25079,5,21.35,24,0.0 +25079,12,38,16,0.0 +25079,29,123.79,41,0.0 +25079,55,24,13,0.0 +25079,8,40,49,0.0 +25079,42,14,11,0.0 +25079,25,14,10,0.0 +25079,32,32,46,0.0 +25079,50,16.25,3,0.0 +25079,58,13.25,43,0.0 +25079,69,36,33,0.0 +25079,21,10,35,0.0 +25079,43,46,49,0.0 +25079,57,19.5,10,0.0 +25079,24,4.5,3,0.0 +25079,70,15,50,0.0 +25079,72,34.8,22,0.0 +25079,27,43.9,6,0.0 +25079,4,22,3,0.0 +25079,49,20,41,0.0 +25079,20,81,38,0.0 +25079,39,18,23,0.0 +25079,11,21,38,0.0 +25079,74,10,10,0.0 +25079,41,9.65,27,0.0 +25079,3,10,4,0.0 +25079,13,6,16,0.0 +25079,1,18,4,0.0 +25080,23,9,50,0.0 +25080,43,46,28,0.0 +25080,41,9.65,17,0.0 +25080,33,2.5,42,0.0 +25080,75,7.75,3,0.0 +25080,45,9.5,49,0.0 +25080,40,18.4,31,0.0 +25080,62,49.3,14,0.0 +25080,1,18,5,0.0 +25080,68,12.5,43,0.0 +25081,28,45.6,35,0.0 +25081,35,18,17,0.0 +25081,44,19.45,23,0.0 +25081,36,19,33,0.0 +25081,57,19.5,9,0.0 +25081,22,21,7,0.0 +25081,11,21,23,0.0 +25081,76,18,25,0.0 +25081,71,21.5,1,0.0 +25081,20,81,12,0.0 +25081,21,10,24,0.0 +25081,32,32,16,0.0 +25081,15,15.5,22,0.0 +25081,8,40,35,0.0 +25081,7,30,29,0.0 +25081,67,14,3,0.0 +25081,5,21.35,4,0.0 +25081,25,14,44,0.0 +25081,19,9.2,26,0.0 +25081,62,49.3,47,0.0 +25081,68,12.5,40,0.0 +25081,61,28.5,22,0.0 +25081,77,13,38,0.0 +25081,65,21.05,2,0.0 +25081,31,12.5,21,0.0 +25081,56,38,22,0.0 +25081,9,97,48,0.0 +25081,46,12,34,0.0 +25081,1,18,6,0.0 +25081,17,39,31,0.0 +25081,47,9.5,42,0.0 +25081,12,38,5,0.0 +25081,10,31,12,0.0 +25081,63,43.9,25,0.0 +25081,59,55,8,0.0 +25081,50,16.25,42,0.0 +25081,45,9.5,25,0.0 +25081,72,34.8,7,0.0 +25081,3,10,32,0.0 +25081,16,17.45,20,0.0 +25081,18,62.5,3,0.0 +25081,52,7,26,0.0 +25081,4,22,3,0.0 +25081,23,9,37,0.0 +25081,49,20,15,0.0 +25081,73,15,27,0.0 +25081,54,7.45,39,0.0 +25081,43,46,16,0.0 +25081,66,17,4,0.0 +25081,34,14,42,0.0 +25081,41,9.65,26,0.0 +25081,48,12.75,9,0.0 +25081,6,25,4,0.0 +25081,26,31.23,36,0.0 +25081,14,23.25,34,0.0 +25081,27,43.9,42,0.0 +25081,37,26,35,0.0 +25081,74,10,24,0.0 +25081,39,18,46,0.0 +25081,33,2.5,37,0.0 +25081,24,4.5,10,0.0 +25081,2,19,14,0.0 +25081,70,15,2,0.0 +25081,30,25.89,34,0.0 +25081,40,18.4,18,0.0 +25081,53,32.8,36,0.0 +25081,60,34,10,0.0 +25081,29,123.79,23,0.0 +25081,58,13.25,26,0.0 +25081,55,24,27,0.0 +25081,38,263.5,8,0.0 +25081,51,53,44,0.0 +25081,64,33.25,32,0.0 +25081,75,7.75,32,0.0 +25081,69,36,33,0.0 +25081,42,14,12,0.0 +25081,13,6,43,0.0 +25082,17,39,8,0.0 +25082,32,32,19,0.0 +25082,47,9.5,4,0.0 +25082,70,15,3,0.0 +25082,16,17.45,39,0.0 +25082,38,263.5,32,0.0 +25083,14,23.25,13,0.0 +25083,73,15,18,0.0 +25083,30,25.89,47,0.0 +25083,20,81,18,0.0 +25083,32,32,45,0.0 +25083,49,20,19,0.0 +25083,63,43.9,18,0.0 +25083,19,9.2,50,0.0 +25083,56,38,1,0.0 +25083,15,15.5,13,0.0 +25083,67,14,7,0.0 +25083,34,14,13,0.0 +25083,12,38,7,0.0 +25083,21,10,35,0.0 +25083,58,13.25,20,0.0 +25083,10,31,8,0.0 +25083,16,17.45,43,0.0 +25083,33,2.5,31,0.0 +25083,72,34.8,48,0.0 +25083,42,14,40,0.0 +25083,45,9.5,44,0.0 +25083,22,21,13,0.0 +25083,69,36,12,0.0 +25083,13,6,33,0.0 +25083,28,45.6,27,0.0 +25083,3,10,7,0.0 +25083,23,9,47,0.0 +25083,39,18,16,0.0 +25083,40,18.4,48,0.0 +25083,7,30,31,0.0 +25083,50,16.25,31,0.0 +25083,77,13,5,0.0 +25083,48,12.75,3,0.0 +25083,35,18,27,0.0 +25083,9,97,17,0.0 +25083,74,10,34,0.0 +25083,11,21,14,0.0 +25083,17,39,50,0.0 +25083,27,43.9,24,0.0 +25083,8,40,24,0.0 +25083,4,22,29,0.0 +25083,2,19,18,0.0 +25083,64,33.25,4,0.0 +25083,55,24,24,0.0 +25083,75,7.75,6,0.0 +25083,65,21.05,40,0.0 +25083,36,19,32,0.0 +25083,61,28.5,10,0.0 +25083,70,15,11,0.0 +25083,66,17,19,0.0 +25083,38,263.5,27,0.0 +25083,51,53,7,0.0 +25083,1,18,8,0.0 +25083,53,32.8,30,0.0 +25083,26,31.23,5,0.0 +25083,41,9.65,18,0.0 +25083,57,19.5,16,0.0 +25083,31,12.5,8,0.0 +25083,62,49.3,28,0.0 +25083,37,26,8,0.0 +25083,46,12,12,0.0 +25083,6,25,24,0.0 +25083,44,19.45,27,0.0 +25084,7,30,40,0.0 +25084,32,32,41,0.0 +25084,34,14,7,0.0 +25085,2,19,41,0.0 +25085,63,43.9,3,0.0 +25085,68,12.5,34,0.0 +25085,11,21,13,0.0 +25085,17,39,13,0.0 +25085,53,32.8,18,0.0 +25086,59,55,19,0.0 +25086,37,26,20,0.0 +25086,46,12,48,0.0 +25086,43,46,48,0.0 +25086,2,19,41,0.0 +25086,57,19.5,2,0.0 +25086,72,34.8,13,0.0 +25086,76,18,17,0.0 +25086,18,62.5,20,0.0 +25087,72,34.8,42,0.0 +25087,50,16.25,11,0.0 +25087,45,9.5,4,0.0 +25087,5,21.35,36,0.0 +25087,29,123.79,43,0.0 +25087,1,18,28,0.0 +25087,8,40,23,0.0 +25087,4,22,15,0.0 +25087,53,32.8,38,0.0 +25087,39,18,45,0.0 +25087,76,18,8,0.0 +25087,42,14,45,0.0 +25087,63,43.9,41,0.0 +25087,69,36,48,0.0 +25087,30,25.89,42,0.0 +25087,22,21,47,0.0 +25087,74,10,21,0.0 +25087,68,12.5,2,0.0 +25087,21,10,25,0.0 +25087,15,15.5,40,0.0 +25087,23,9,42,0.0 +25087,41,9.65,10,0.0 +25087,2,19,50,0.0 +25087,58,13.25,20,0.0 +25087,51,53,24,0.0 +25087,7,30,3,0.0 +25087,62,49.3,30,0.0 +25087,54,7.45,26,0.0 +25087,13,6,39,0.0 +25087,75,7.75,41,0.0 +25087,55,24,8,0.0 +25087,67,14,3,0.0 +25087,48,12.75,3,0.0 +25087,31,12.5,1,0.0 +25087,12,38,50,0.0 +25087,10,31,50,0.0 +25087,56,38,28,0.0 +25087,35,18,14,0.0 +25087,27,43.9,35,0.0 +25087,47,9.5,42,0.0 +25087,16,17.45,24,0.0 +25087,46,12,27,0.0 +25087,24,4.5,43,0.0 +25087,26,31.23,19,0.0 +25087,59,55,43,0.0 +25087,60,34,50,0.0 +25087,70,15,11,0.0 +25087,73,15,31,0.0 +25087,14,23.25,7,0.0 +25087,38,263.5,2,0.0 +25087,43,46,47,0.0 +25087,3,10,46,0.0 +25087,44,19.45,35,0.0 +25087,66,17,37,0.0 +25087,71,21.5,5,0.0 +25087,36,19,36,0.0 +25087,77,13,47,0.0 +25087,6,25,43,0.0 +25087,28,45.6,4,0.0 +25087,17,39,25,0.0 +25087,11,21,27,0.0 +25087,19,9.2,50,0.0 +25087,32,32,29,0.0 +25087,9,97,36,0.0 +25087,64,33.25,19,0.0 +25087,33,2.5,25,0.0 +25087,65,21.05,1,0.0 +25087,34,14,44,0.0 +25087,61,28.5,48,0.0 +25088,59,55,40,0.0 +25088,14,23.25,45,0.0 +25088,35,18,19,0.0 +25088,24,4.5,16,0.0 +25088,32,32,19,0.0 +25088,66,17,42,0.0 +25088,22,21,50,0.0 +25088,13,6,23,0.0 +25088,54,7.45,27,0.0 +25089,15,15.5,16,0.0 +25089,18,62.5,14,0.0 +25089,60,34,33,0.0 +25089,48,12.75,25,0.0 +25089,5,21.35,4,0.0 +25089,74,10,45,0.0 +25089,39,18,33,0.0 +25089,58,13.25,21,0.0 +25089,75,7.75,5,0.0 +25089,59,55,30,0.0 +25089,44,19.45,30,0.0 +25089,33,2.5,21,0.0 +25089,52,7,14,0.0 +25089,16,17.45,28,0.0 +25089,77,13,9,0.0 +25089,72,34.8,13,0.0 +25089,73,15,49,0.0 +25089,14,23.25,34,0.0 +25089,45,9.5,39,0.0 +25089,24,4.5,46,0.0 +25089,55,24,17,0.0 +25089,70,15,22,0.0 +25089,2,19,30,0.0 +25089,27,43.9,49,0.0 +25090,77,13,48,0.0 +25090,53,32.8,17,0.0 +25090,51,53,44,0.0 +25090,60,34,15,0.0 +25090,18,62.5,31,0.0 +25090,3,10,14,0.0 +25090,16,17.45,25,0.0 +25090,58,13.25,8,0.0 +25091,67,14,48,0.0 +25091,22,21,33,0.0 +25091,23,9,14,0.0 +25091,49,20,40,0.0 +25091,71,21.5,2,0.0 +25091,55,24,26,0.0 +25091,11,21,15,0.0 +25091,66,17,17,0.0 +25091,25,14,15,0.0 +25091,33,2.5,9,0.0 +25091,75,7.75,23,0.0 +25091,27,43.9,8,0.0 +25091,34,14,2,0.0 +25091,35,18,49,0.0 +25091,20,81,9,0.0 +25091,39,18,49,0.0 +25091,3,10,47,0.0 +25091,6,25,11,0.0 +25091,10,31,7,0.0 +25091,21,10,36,0.0 +25091,36,19,26,0.0 +25091,29,123.79,50,0.0 +25091,24,4.5,20,0.0 +25091,56,38,1,0.0 +25091,50,16.25,27,0.0 +25091,31,12.5,50,0.0 +25091,68,12.5,48,0.0 +25091,41,9.65,33,0.0 +25091,74,10,41,0.0 +25091,40,18.4,48,0.0 +25091,8,40,3,0.0 +25091,62,49.3,47,0.0 +25091,32,32,1,0.0 +25091,73,15,9,0.0 +25091,47,9.5,21,0.0 +25091,13,6,41,0.0 +25091,9,97,1,0.0 +25091,43,46,48,0.0 +25091,72,34.8,19,0.0 +25091,14,23.25,19,0.0 +25091,18,62.5,19,0.0 +25091,65,21.05,24,0.0 +25091,60,34,3,0.0 +25091,61,28.5,34,0.0 +25091,5,21.35,45,0.0 +25091,7,30,47,0.0 +25091,44,19.45,33,0.0 +25091,4,22,10,0.0 +25091,69,36,42,0.0 +25091,16,17.45,48,0.0 +25091,76,18,8,0.0 +25091,53,32.8,6,0.0 +25091,51,53,7,0.0 +25091,54,7.45,48,0.0 +25091,64,33.25,4,0.0 +25091,63,43.9,27,0.0 +25091,17,39,15,0.0 +25091,70,15,41,0.0 +25091,28,45.6,49,0.0 +25091,46,12,1,0.0 +25091,1,18,41,0.0 +25091,12,38,36,0.0 +25091,37,26,42,0.0 +25092,74,10,43,0.0 +25092,21,10,6,0.0 +25092,77,13,29,0.0 +25092,58,13.25,1,0.0 +25092,4,22,32,0.0 +25092,29,123.79,3,0.0 +25092,67,14,48,0.0 +25092,2,19,47,0.0 +25092,68,12.5,6,0.0 +25092,14,23.25,36,0.0 +25092,48,12.75,46,0.0 +25092,40,18.4,40,0.0 +25092,38,263.5,18,0.0 +25092,47,9.5,1,0.0 +25092,57,19.5,17,0.0 +25092,9,97,42,0.0 +25092,42,14,23,0.0 +25092,27,43.9,5,0.0 +25092,52,7,5,0.0 +25092,1,18,28,0.0 +25092,62,49.3,21,0.0 +25092,43,46,29,0.0 +25092,63,43.9,39,0.0 +25092,71,21.5,46,0.0 +25092,49,20,37,0.0 +25092,20,81,48,0.0 +25092,26,31.23,48,0.0 +25092,53,32.8,38,0.0 +25092,46,12,41,0.0 +25092,73,15,38,0.0 +25092,76,18,26,0.0 +25092,75,7.75,46,0.0 +25092,37,26,11,0.0 +25092,34,14,24,0.0 +25092,17,39,9,0.0 +25092,59,55,42,0.0 +25092,10,31,41,0.0 +25092,5,21.35,32,0.0 +25092,72,34.8,25,0.0 +25092,65,21.05,25,0.0 +25092,12,38,43,0.0 +25092,54,7.45,9,0.0 +25092,11,21,32,0.0 +25092,28,45.6,24,0.0 +25092,51,53,28,0.0 +25092,7,30,36,0.0 +25092,69,36,21,0.0 +25092,64,33.25,4,0.0 +25092,61,28.5,5,0.0 +25092,6,25,37,0.0 +25092,44,19.45,24,0.0 +25092,35,18,26,0.0 +25092,66,17,18,0.0 +25092,16,17.45,7,0.0 +25092,33,2.5,25,0.0 +25092,50,16.25,31,0.0 +25092,3,10,49,0.0 +25092,15,15.5,42,0.0 +25093,54,7.45,28,0.0 +25093,16,17.45,48,0.0 +25093,61,28.5,1,0.0 +25093,52,7,33,0.0 +25093,47,9.5,35,0.0 +25093,8,40,33,0.0 +25093,36,19,25,0.0 +25093,14,23.25,23,0.0 +25094,28,45.6,11,0.0 +25094,17,39,44,0.0 +25094,13,6,15,0.0 +25094,75,7.75,28,0.0 +25094,31,12.5,17,0.0 +25094,70,15,47,0.0 +25094,66,17,15,0.0 +25094,3,10,14,0.0 +25094,9,97,46,0.0 +25094,36,19,12,0.0 +25094,7,30,48,0.0 +25094,44,19.45,49,0.0 +25094,14,23.25,21,0.0 +25094,18,62.5,48,0.0 +25094,37,26,18,0.0 +25094,12,38,26,0.0 +25094,48,12.75,21,0.0 +25094,58,13.25,38,0.0 +25094,59,55,7,0.0 +25094,1,18,4,0.0 +25094,21,10,7,0.0 +25094,71,21.5,26,0.0 +25094,2,19,5,0.0 +25094,35,18,32,0.0 +25095,27,43.9,7,0.0 +25095,16,17.45,30,0.0 +25095,33,2.5,24,0.0 +25095,47,9.5,50,0.0 +25095,31,12.5,39,0.0 +25095,53,32.8,26,0.0 +25095,57,19.5,43,0.0 +25095,74,10,48,0.0 +25095,63,43.9,3,0.0 +25095,76,18,12,0.0 +25095,14,23.25,29,0.0 +25095,23,9,35,0.0 +25095,17,39,37,0.0 +25095,54,7.45,30,0.0 +25095,51,53,43,0.0 +25095,69,36,18,0.0 +25095,75,7.75,27,0.0 +25095,3,10,41,0.0 +25095,1,18,44,0.0 +25095,73,15,3,0.0 +25095,36,19,27,0.0 +25095,60,34,41,0.0 +25095,40,18.4,18,0.0 +25095,13,6,28,0.0 +25095,20,81,20,0.0 +25095,66,17,25,0.0 +25095,65,21.05,5,0.0 +25095,58,13.25,27,0.0 +25095,9,97,41,0.0 +25095,68,12.5,46,0.0 +25095,26,31.23,9,0.0 +25095,7,30,7,0.0 +25095,64,33.25,23,0.0 +25095,8,40,20,0.0 +25095,11,21,25,0.0 +25095,2,19,16,0.0 +25095,21,10,23,0.0 +25095,56,38,9,0.0 +25095,48,12.75,33,0.0 +25095,30,25.89,33,0.0 +25095,42,14,2,0.0 +25095,62,49.3,24,0.0 +25095,50,16.25,7,0.0 +25095,22,21,10,0.0 +25095,71,21.5,28,0.0 +25095,18,62.5,47,0.0 +25095,52,7,38,0.0 +25095,25,14,36,0.0 +25095,15,15.5,30,0.0 +25095,61,28.5,46,0.0 +25095,49,20,24,0.0 +25095,46,12,21,0.0 +25095,44,19.45,33,0.0 +25095,4,22,42,0.0 +25095,12,38,44,0.0 +25095,55,24,15,0.0 +25095,43,46,30,0.0 +25095,38,263.5,1,0.0 +25096,76,18,43,0.0 +25096,36,19,8,0.0 +25096,31,12.5,36,0.0 +25096,23,9,20,0.0 +25096,2,19,17,0.0 +25096,67,14,49,0.0 +25096,18,62.5,8,0.0 +25096,70,15,17,0.0 +25096,33,2.5,9,0.0 +25096,52,7,40,0.0 +25096,14,23.25,1,0.0 +25096,28,45.6,12,0.0 +25096,29,123.79,24,0.0 +25096,38,263.5,42,0.0 +25096,72,34.8,39,0.0 +25096,74,10,20,0.0 +25096,48,12.75,19,0.0 +25096,34,14,2,0.0 +25096,3,10,30,0.0 +25096,30,25.89,33,0.0 +25096,51,53,22,0.0 +25096,61,28.5,26,0.0 +25096,63,43.9,11,0.0 +25096,6,25,18,0.0 +25096,26,31.23,25,0.0 +25096,39,18,48,0.0 +25096,64,33.25,37,0.0 +25096,41,9.65,49,0.0 +25096,60,34,2,0.0 +25096,15,15.5,24,0.0 +25096,68,12.5,25,0.0 +25096,27,43.9,22,0.0 +25096,59,55,37,0.0 +25096,9,97,28,0.0 +25096,12,38,33,0.0 +25096,37,26,2,0.0 +25096,21,10,23,0.0 +25096,71,21.5,28,0.0 +25096,56,38,28,0.0 +25096,4,22,20,0.0 +25096,16,17.45,4,0.0 +25097,23,9,30,0.0 +25097,76,18,40,0.0 +25097,33,2.5,32,0.0 +25097,54,7.45,4,0.0 +25097,44,19.45,31,0.0 +25097,5,21.35,13,0.0 +25097,28,45.6,3,0.0 +25097,45,9.5,6,0.0 +25097,7,30,2,0.0 +25097,65,21.05,17,0.0 +25097,3,10,16,0.0 +25097,40,18.4,4,0.0 +25097,35,18,27,0.0 +25097,14,23.25,41,0.0 +25097,34,14,17,0.0 +25097,75,7.75,5,0.0 +25097,36,19,18,0.0 +25097,59,55,18,0.0 +25097,25,14,46,0.0 +25097,47,9.5,8,0.0 +25097,39,18,7,0.0 +25097,6,25,26,0.0 +25097,60,34,28,0.0 +25097,9,97,7,0.0 +25097,64,33.25,35,0.0 +25097,38,263.5,39,0.0 +25097,15,15.5,4,0.0 +25097,58,13.25,17,0.0 +25097,31,12.5,20,0.0 +25097,69,36,23,0.0 +25097,2,19,7,0.0 +25097,21,10,27,0.0 +25097,68,12.5,33,0.0 +25097,30,25.89,23,0.0 +25097,19,9.2,25,0.0 +25097,50,16.25,22,0.0 +25097,56,38,26,0.0 +25097,49,20,2,0.0 +25097,20,81,5,0.0 +25097,4,22,26,0.0 +25097,12,38,4,0.0 +25097,10,31,46,0.0 +25097,13,6,38,0.0 +25097,57,19.5,27,0.0 +25097,29,123.79,37,0.0 +25097,1,18,7,0.0 +25097,71,21.5,34,0.0 +25097,26,31.23,9,0.0 +25097,18,62.5,20,0.0 +25097,24,4.5,24,0.0 +25097,51,53,27,0.0 +25097,67,14,6,0.0 +25097,48,12.75,34,0.0 +25097,46,12,4,0.0 +25097,16,17.45,6,0.0 +25097,41,9.65,16,0.0 +25097,8,40,11,0.0 +25097,52,7,36,0.0 +25097,22,21,4,0.0 +25097,17,39,42,0.0 +25097,53,32.8,25,0.0 +25097,11,21,28,0.0 +25097,66,17,36,0.0 +25097,72,34.8,18,0.0 +25097,63,43.9,48,0.0 +25097,27,43.9,13,0.0 +25097,43,46,19,0.0 +25097,42,14,7,0.0 +25098,14,23.25,20,0.0 +25098,69,36,16,0.0 +25098,12,38,40,0.0 +25098,71,21.5,37,0.0 +25098,30,25.89,8,0.0 +25098,9,97,7,0.0 +25098,29,123.79,42,0.0 +25098,16,17.45,43,0.0 +25098,65,21.05,6,0.0 +25098,11,21,3,0.0 +25098,36,19,6,0.0 +25098,61,28.5,43,0.0 +25098,62,49.3,2,0.0 +25098,70,15,44,0.0 +25098,27,43.9,15,0.0 +25098,47,9.5,11,0.0 +25098,50,16.25,14,0.0 +25098,39,18,2,0.0 +25098,3,10,4,0.0 +25098,40,18.4,6,0.0 +25098,51,53,34,0.0 +25098,49,20,16,0.0 +25098,42,14,6,0.0 +25098,76,18,8,0.0 +25098,45,9.5,43,0.0 +25098,56,38,8,0.0 +25098,60,34,29,0.0 +25098,8,40,15,0.0 +25098,22,21,20,0.0 +25098,58,13.25,14,0.0 +25098,59,55,38,0.0 +25098,64,33.25,2,0.0 +25098,18,62.5,7,0.0 +25098,63,43.9,30,0.0 +25098,34,14,11,0.0 +25098,26,31.23,30,0.0 +25098,31,12.5,18,0.0 +25099,4,22,46,0.0 +25099,75,7.75,44,0.0 +25099,15,15.5,2,0.0 +25099,2,19,2,0.0 +25099,40,18.4,21,0.0 +25099,38,263.5,7,0.0 +25099,35,18,1,0.0 +25099,68,12.5,35,0.0 +25099,71,21.5,47,0.0 +25099,42,14,50,0.0 +25099,54,7.45,40,0.0 +25099,43,46,50,0.0 +25099,69,36,31,0.0 +25099,9,97,33,0.0 +25099,70,15,10,0.0 +25099,45,9.5,29,0.0 +25099,49,20,12,0.0 +25099,23,9,12,0.0 +25099,63,43.9,31,0.0 +25099,12,38,9,0.0 +25099,57,19.5,3,0.0 +25099,34,14,19,0.0 +25099,61,28.5,18,0.0 +25099,52,7,38,0.0 +25099,17,39,16,0.0 +25099,31,12.5,25,0.0 +25099,48,12.75,11,0.0 +25099,3,10,35,0.0 +25099,60,34,45,0.0 +25099,27,43.9,30,0.0 +25099,7,30,32,0.0 +25099,56,38,49,0.0 +25099,29,123.79,8,0.0 +25099,20,81,34,0.0 +25099,47,9.5,36,0.0 +25099,19,9.2,39,0.0 +25099,14,23.25,31,0.0 +25099,6,25,28,0.0 +25099,50,16.25,27,0.0 +25100,9,97,3,0.0 +25100,15,15.5,32,0.0 +25100,38,263.5,2,0.0 +25100,59,55,45,0.0 +25100,63,43.9,26,0.0 +25100,22,21,34,0.0 +25100,18,62.5,47,0.0 +25100,35,18,41,0.0 +25100,73,15,38,0.0 +25100,4,22,48,0.0 +25100,7,30,19,0.0 +25100,56,38,8,0.0 +25100,12,38,37,0.0 +25100,55,24,47,0.0 +25100,65,21.05,24,0.0 +25100,31,12.5,17,0.0 +25100,28,45.6,23,0.0 +25100,45,9.5,23,0.0 +25100,6,25,37,0.0 +25100,75,7.75,17,0.0 +25100,70,15,38,0.0 +25100,8,40,25,0.0 +25100,72,34.8,37,0.0 +25100,30,25.89,21,0.0 +25100,33,2.5,21,0.0 +25100,32,32,38,0.0 +25100,43,46,19,0.0 +25100,25,14,4,0.0 +25100,19,9.2,44,0.0 +25100,60,34,42,0.0 +25100,51,53,9,0.0 +25100,58,13.25,45,0.0 +25100,61,28.5,9,0.0 +25100,27,43.9,1,0.0 +25100,49,20,37,0.0 +25100,11,21,8,0.0 +25100,5,21.35,34,0.0 +25100,47,9.5,42,0.0 +25100,26,31.23,18,0.0 +25100,74,10,20,0.0 +25100,42,14,48,0.0 +25100,39,18,15,0.0 +25100,44,19.45,49,0.0 +25100,17,39,9,0.0 +25100,62,49.3,27,0.0 +25100,40,18.4,7,0.0 +25100,48,12.75,2,0.0 +25100,23,9,50,0.0 +25100,77,13,5,0.0 +25100,24,4.5,19,0.0 +25100,1,18,10,0.0 +25100,29,123.79,22,0.0 +25100,76,18,46,0.0 +25100,53,32.8,9,0.0 +25100,52,7,29,0.0 +25100,69,36,9,0.0 +25100,37,26,41,0.0 +25100,13,6,31,0.0 +25100,46,12,41,0.0 +25100,71,21.5,35,0.0 +25100,41,9.65,25,0.0 +25100,64,33.25,36,0.0 +25100,3,10,1,0.0 +25100,66,17,12,0.0 +25100,2,19,18,0.0 +25100,36,19,28,0.0 +25100,14,23.25,45,0.0 +25100,67,14,10,0.0 +25100,16,17.45,40,0.0 +25100,57,19.5,41,0.0 +25100,21,10,29,0.0 +25100,68,12.5,41,0.0 +25100,10,31,16,0.0 +25100,54,7.45,35,0.0 +25100,20,81,22,0.0 +25101,48,12.75,10,0.0 +25101,26,31.23,12,0.0 +25101,60,34,26,0.0 +25101,11,21,17,0.0 +25101,3,10,41,0.0 +25101,24,4.5,2,0.0 +25101,43,46,9,0.0 +25101,2,19,6,0.0 +25101,37,26,16,0.0 +25101,67,14,39,0.0 +25101,17,39,45,0.0 +25101,18,62.5,37,0.0 +25101,15,15.5,6,0.0 +25101,68,12.5,50,0.0 +25101,55,24,40,0.0 +25101,16,17.45,11,0.0 +25101,27,43.9,26,0.0 +25101,57,19.5,35,0.0 +25101,44,19.45,48,0.0 +25101,56,38,43,0.0 +25101,38,263.5,40,0.0 +25101,74,10,10,0.0 +25101,53,32.8,29,0.0 +25101,75,7.75,34,0.0 +25101,4,22,44,0.0 +25101,31,12.5,19,0.0 +25101,22,21,13,0.0 +25101,8,40,42,0.0 +25101,21,10,27,0.0 +25101,47,9.5,21,0.0 +25101,36,19,39,0.0 +25101,58,13.25,30,0.0 +25101,9,97,6,0.0 +25101,14,23.25,21,0.0 +25101,45,9.5,21,0.0 +25101,64,33.25,13,0.0 +25101,52,7,48,0.0 +25101,34,14,28,0.0 +25101,41,9.65,7,0.0 +25101,20,81,46,0.0 +25101,7,30,31,0.0 +25101,77,13,26,0.0 +25101,62,49.3,35,0.0 +25101,10,31,5,0.0 +25101,61,28.5,23,0.0 +25101,29,123.79,29,0.0 +25101,19,9.2,20,0.0 +25101,13,6,36,0.0 +25102,6,25,50,0.0 +25102,62,49.3,31,0.0 +25102,43,46,30,0.0 +25102,73,15,14,0.0 +25102,72,34.8,24,0.0 +25102,53,32.8,4,0.0 +25102,70,15,42,0.0 +25102,30,25.89,3,0.0 +25102,10,31,48,0.0 +25102,32,32,19,0.0 +25102,37,26,22,0.0 +25102,23,9,44,0.0 +25102,12,38,49,0.0 +25102,57,19.5,50,0.0 +25102,58,13.25,18,0.0 +25102,8,40,29,0.0 +25102,41,9.65,25,0.0 +25102,18,62.5,41,0.0 +25102,13,6,33,0.0 +25102,29,123.79,48,0.0 +25102,64,33.25,30,0.0 +25102,75,7.75,19,0.0 +25102,28,45.6,32,0.0 +25102,21,10,12,0.0 +25102,66,17,44,0.0 +25102,46,12,24,0.0 +25102,40,18.4,42,0.0 +25102,19,9.2,9,0.0 +25102,34,14,50,0.0 +25102,67,14,22,0.0 +25102,2,19,24,0.0 +25102,47,9.5,18,0.0 +25102,69,36,33,0.0 +25102,25,14,40,0.0 +25102,27,43.9,14,0.0 +25102,45,9.5,12,0.0 +25102,4,22,37,0.0 +25102,71,21.5,4,0.0 +25102,74,10,28,0.0 +25102,63,43.9,19,0.0 +25102,36,19,11,0.0 +25102,50,16.25,31,0.0 +25102,22,21,13,0.0 +25102,61,28.5,24,0.0 +25102,3,10,25,0.0 +25102,1,18,25,0.0 +25102,15,15.5,40,0.0 +25102,20,81,20,0.0 +25102,44,19.45,7,0.0 +25102,68,12.5,48,0.0 +25102,17,39,42,0.0 +25102,52,7,2,0.0 +25102,48,12.75,41,0.0 +25102,56,38,16,0.0 +25102,7,30,42,0.0 +25102,51,53,28,0.0 +25102,76,18,26,0.0 +25102,26,31.23,35,0.0 +25102,42,14,10,0.0 +25102,9,97,37,0.0 +25102,5,21.35,34,0.0 +25102,35,18,41,0.0 +25102,24,4.5,23,0.0 +25102,38,263.5,22,0.0 +25102,60,34,16,0.0 +25102,54,7.45,37,0.0 +25103,14,23.25,4,0.0 +25103,12,38,36,0.0 +25103,34,14,49,0.0 +25103,74,10,11,0.0 +25103,51,53,27,0.0 +25103,60,34,41,0.0 +25103,71,21.5,18,0.0 +25103,58,13.25,21,0.0 +25103,18,62.5,19,0.0 +25103,64,33.25,24,0.0 +25103,35,18,44,0.0 +25103,45,9.5,26,0.0 +25103,68,12.5,10,0.0 +25103,66,17,36,0.0 +25103,44,19.45,47,0.0 +25103,73,15,29,0.0 +25103,55,24,10,0.0 +25103,40,18.4,19,0.0 +25104,8,40,12,0.0 +25104,24,4.5,22,0.0 +25104,5,21.35,6,0.0 +25104,40,18.4,50,0.0 +25104,52,7,11,0.0 +25104,34,14,23,0.0 +25104,71,21.5,32,0.0 +25104,76,18,27,0.0 +25104,65,21.05,46,0.0 +25104,31,12.5,16,0.0 +25104,69,36,18,0.0 +25104,47,9.5,38,0.0 +25104,22,21,25,0.0 +25104,63,43.9,49,0.0 +25104,36,19,5,0.0 +25104,77,13,31,0.0 +25104,28,45.6,4,0.0 +25104,29,123.79,21,0.0 +25104,4,22,5,0.0 +25104,53,32.8,32,0.0 +25104,72,34.8,18,0.0 +25104,20,81,18,0.0 +25104,45,9.5,45,0.0 +25104,26,31.23,10,0.0 +25104,23,9,32,0.0 +25104,19,9.2,41,0.0 +25104,64,33.25,40,0.0 +25104,42,14,36,0.0 +25104,54,7.45,11,0.0 +25104,11,21,14,0.0 +25104,17,39,34,0.0 +25104,41,9.65,34,0.0 +25104,38,263.5,2,0.0 +25104,25,14,33,0.0 +25104,55,24,10,0.0 +25104,44,19.45,37,0.0 +25104,6,25,48,0.0 +25104,37,26,18,0.0 +25104,70,15,23,0.0 +25104,2,19,1,0.0 +25104,50,16.25,44,0.0 +25104,60,34,5,0.0 +25104,48,12.75,11,0.0 +25104,10,31,19,0.0 +25104,56,38,23,0.0 +25104,39,18,16,0.0 +25104,75,7.75,42,0.0 +25104,59,55,44,0.0 +25105,75,7.75,48,0.0 +25105,52,7,19,0.0 +25105,72,34.8,25,0.0 +25105,16,17.45,45,0.0 +25105,10,31,46,0.0 +25105,73,15,42,0.0 +25105,53,32.8,13,0.0 +25105,2,19,6,0.0 +25105,21,10,12,0.0 +25105,49,20,37,0.0 +25105,1,18,17,0.0 +25105,43,46,5,0.0 +25105,27,43.9,6,0.0 +25105,25,14,39,0.0 +25105,60,34,21,0.0 +25105,33,2.5,46,0.0 +25105,68,12.5,26,0.0 +25105,8,40,16,0.0 +25105,24,4.5,18,0.0 +25105,40,18.4,46,0.0 +25105,65,21.05,18,0.0 +25105,50,16.25,45,0.0 +25105,3,10,26,0.0 +25105,9,97,40,0.0 +25105,15,15.5,10,0.0 +25105,4,22,45,0.0 +25105,20,81,28,0.0 +25105,38,263.5,33,0.0 +25105,37,26,21,0.0 +25105,76,18,40,0.0 +25105,70,15,5,0.0 +25105,29,123.79,38,0.0 +25105,36,19,50,0.0 +25106,15,15.5,44,0.0 +25106,76,18,49,0.0 +25106,49,20,12,0.0 +25106,24,4.5,1,0.0 +25106,14,23.25,4,0.0 +25106,1,18,10,0.0 +25106,44,19.45,8,0.0 +25106,66,17,14,0.0 +25106,26,31.23,27,0.0 +25107,76,18,12,0.0 +25107,69,36,16,0.0 +25107,59,55,35,0.0 +25107,34,14,25,0.0 +25107,74,10,40,0.0 +25107,73,15,45,0.0 +25107,23,9,35,0.0 +25107,50,16.25,44,0.0 +25107,53,32.8,16,0.0 +25107,77,13,37,0.0 +25107,61,28.5,33,0.0 +25107,10,31,3,0.0 +25107,14,23.25,17,0.0 +25107,46,12,23,0.0 +25107,45,9.5,16,0.0 +25107,5,21.35,9,0.0 +25107,47,9.5,33,0.0 +25107,7,30,44,0.0 +25107,72,34.8,33,0.0 +25107,27,43.9,45,0.0 +25107,40,18.4,6,0.0 +25107,68,12.5,27,0.0 +25107,22,21,50,0.0 +25107,41,9.65,37,0.0 +25107,75,7.75,47,0.0 +25107,60,34,8,0.0 +25107,64,33.25,22,0.0 +25107,29,123.79,11,0.0 +25107,32,32,36,0.0 +25107,43,46,12,0.0 +25107,12,38,32,0.0 +25107,58,13.25,34,0.0 +25107,18,62.5,2,0.0 +25107,28,45.6,6,0.0 +25107,56,38,8,0.0 +25107,52,7,48,0.0 +25107,48,12.75,33,0.0 +25107,1,18,46,0.0 +25107,30,25.89,6,0.0 +25107,36,19,39,0.0 +25107,15,15.5,36,0.0 +25107,16,17.45,22,0.0 +25107,65,21.05,18,0.0 +25107,24,4.5,28,0.0 +25107,39,18,10,0.0 +25107,71,21.5,25,0.0 +25107,8,40,43,0.0 +25107,67,14,28,0.0 +25107,31,12.5,26,0.0 +25107,26,31.23,21,0.0 +25107,49,20,8,0.0 +25107,17,39,9,0.0 +25107,44,19.45,48,0.0 +25107,63,43.9,22,0.0 +25107,25,14,22,0.0 +25107,66,17,6,0.0 +25107,4,22,46,0.0 +25108,29,123.79,6,0.0 +25108,70,15,21,0.0 +25108,2,19,26,0.0 +25108,75,7.75,37,0.0 +25108,61,28.5,24,0.0 +25108,27,43.9,32,0.0 +25108,21,10,43,0.0 +25108,56,38,22,0.0 +25108,32,32,25,0.0 +25108,46,12,16,0.0 +25108,57,19.5,48,0.0 +25108,42,14,22,0.0 +25108,12,38,14,0.0 +25108,69,36,45,0.0 +25108,43,46,34,0.0 +25108,36,19,23,0.0 +25108,33,2.5,40,0.0 +25108,72,34.8,45,0.0 +25108,15,15.5,11,0.0 +25108,37,26,50,0.0 +25108,10,31,18,0.0 +25108,30,25.89,30,0.0 +25108,49,20,11,0.0 +25108,26,31.23,44,0.0 +25108,40,18.4,42,0.0 +25108,3,10,11,0.0 +25108,18,62.5,7,0.0 +25108,17,39,43,0.0 +25108,8,40,1,0.0 +25108,62,49.3,49,0.0 +25108,31,12.5,24,0.0 +25108,59,55,8,0.0 +25108,58,13.25,25,0.0 +25108,16,17.45,31,0.0 +25108,41,9.65,16,0.0 +25108,7,30,6,0.0 +25108,9,97,21,0.0 +25108,39,18,12,0.0 +25108,38,263.5,38,0.0 +25108,50,16.25,26,0.0 +25108,6,25,50,0.0 +25108,22,21,5,0.0 +25108,45,9.5,26,0.0 +25108,76,18,17,0.0 +25108,73,15,34,0.0 +25108,65,21.05,24,0.0 +25108,48,12.75,18,0.0 +25108,53,32.8,41,0.0 +25108,23,9,18,0.0 +25108,34,14,5,0.0 +25108,14,23.25,25,0.0 +25108,35,18,2,0.0 +25108,55,24,45,0.0 +25108,51,53,32,0.0 +25108,25,14,27,0.0 +25108,77,13,49,0.0 +25108,52,7,31,0.0 +25108,24,4.5,18,0.0 +25108,67,14,37,0.0 +25108,4,22,10,0.0 +25108,66,17,49,0.0 +25108,63,43.9,39,0.0 +25108,54,7.45,36,0.0 +25108,64,33.25,6,0.0 +25108,60,34,38,0.0 +25108,74,10,50,0.0 +25108,19,9.2,21,0.0 +25108,47,9.5,43,0.0 +25108,71,21.5,10,0.0 +25108,5,21.35,12,0.0 +25109,58,13.25,23,0.0 +25109,66,17,30,0.0 +25109,64,33.25,21,0.0 +25109,14,23.25,5,0.0 +25109,28,45.6,22,0.0 +25109,45,9.5,13,0.0 +25109,62,49.3,37,0.0 +25109,41,9.65,22,0.0 +25109,56,38,19,0.0 +25109,49,20,7,0.0 +25109,73,15,42,0.0 +25109,31,12.5,23,0.0 +25109,77,13,32,0.0 +25109,47,9.5,8,0.0 +25109,17,39,50,0.0 +25109,34,14,45,0.0 +25109,10,31,46,0.0 +25109,67,14,11,0.0 +25109,35,18,21,0.0 +25109,40,18.4,8,0.0 +25109,20,81,26,0.0 +25109,55,24,6,0.0 +25109,51,53,6,0.0 +25109,46,12,7,0.0 +25109,63,43.9,4,0.0 +25109,60,34,24,0.0 +25109,74,10,19,0.0 +25109,37,26,33,0.0 +25109,75,7.75,17,0.0 +25109,61,28.5,47,0.0 +25109,29,123.79,8,0.0 +25109,32,32,42,0.0 +25109,57,19.5,38,0.0 +25109,30,25.89,25,0.0 +25109,72,34.8,49,0.0 +25109,27,43.9,6,0.0 +25109,39,18,12,0.0 +25109,69,36,16,0.0 +25109,70,15,27,0.0 +25109,53,32.8,34,0.0 +25109,13,6,44,0.0 +25109,26,31.23,17,0.0 +25109,3,10,32,0.0 +25109,43,46,31,0.0 +25109,11,21,16,0.0 +25109,59,55,25,0.0 +25109,19,9.2,10,0.0 +25109,9,97,25,0.0 +25109,68,12.5,47,0.0 +25109,38,263.5,41,0.0 +25109,76,18,39,0.0 +25109,71,21.5,4,0.0 +25109,15,15.5,9,0.0 +25109,22,21,4,0.0 +25109,18,62.5,42,0.0 +25109,12,38,17,0.0 +25109,24,4.5,25,0.0 +25109,16,17.45,18,0.0 +25109,25,14,31,0.0 +25109,50,16.25,43,0.0 +25109,5,21.35,17,0.0 +25109,36,19,18,0.0 +25109,33,2.5,20,0.0 +25109,23,9,30,0.0 +25109,8,40,42,0.0 +25109,4,22,6,0.0 +25109,2,19,26,0.0 +25110,7,30,16,0.0 +25110,35,18,12,0.0 +25110,62,49.3,44,0.0 +25110,32,32,19,0.0 +25110,48,12.75,36,0.0 +25110,69,36,49,0.0 +25110,72,34.8,24,0.0 +25110,63,43.9,21,0.0 +25110,15,15.5,40,0.0 +25110,43,46,18,0.0 +25110,55,24,48,0.0 +25110,53,32.8,39,0.0 +25110,22,21,2,0.0 +25110,24,4.5,43,0.0 +25110,68,12.5,37,0.0 +25110,3,10,33,0.0 +25110,27,43.9,39,0.0 +25110,51,53,6,0.0 +25110,18,62.5,26,0.0 +25110,74,10,7,0.0 +25110,12,38,30,0.0 +25110,19,9.2,14,0.0 +25110,76,18,25,0.0 +25110,56,38,12,0.0 +25110,6,25,23,0.0 +25110,65,21.05,31,0.0 +25110,23,9,17,0.0 +25110,42,14,23,0.0 +25110,21,10,34,0.0 +25110,58,13.25,17,0.0 +25110,1,18,48,0.0 +25110,61,28.5,22,0.0 +25110,39,18,45,0.0 +25110,64,33.25,23,0.0 +25110,66,17,7,0.0 +25110,38,263.5,30,0.0 +25110,10,31,26,0.0 +25110,47,9.5,20,0.0 +25110,40,18.4,32,0.0 +25110,71,21.5,39,0.0 +25110,34,14,6,0.0 +25111,61,28.5,33,0.0 +25111,68,12.5,32,0.0 +25111,75,7.75,20,0.0 +25111,63,43.9,21,0.0 +25111,20,81,15,0.0 +25111,6,25,47,0.0 +25111,9,97,11,0.0 +25111,34,14,12,0.0 +25111,48,12.75,46,0.0 +25111,5,21.35,10,0.0 +25111,60,34,38,0.0 +25111,31,12.5,29,0.0 +25111,76,18,7,0.0 +25111,74,10,30,0.0 +25111,57,19.5,8,0.0 +25111,4,22,10,0.0 +25111,47,9.5,39,0.0 +25111,55,24,8,0.0 +25111,53,32.8,50,0.0 +25111,67,14,31,0.0 +25111,77,13,19,0.0 +25111,35,18,34,0.0 +25111,29,123.79,7,0.0 +25111,45,9.5,15,0.0 +25111,36,19,18,0.0 +25111,70,15,25,0.0 +25111,52,7,46,0.0 +25111,38,263.5,3,0.0 +25111,13,6,6,0.0 +25111,51,53,18,0.0 +25111,71,21.5,27,0.0 +25111,17,39,30,0.0 +25111,69,36,40,0.0 +25111,25,14,37,0.0 +25111,3,10,19,0.0 +25111,39,18,7,0.0 +25111,59,55,22,0.0 +25112,59,55,9,0.0 +25112,4,22,24,0.0 +25112,67,14,34,0.0 +25112,39,18,24,0.0 +25112,6,25,50,0.0 +25112,30,25.89,31,0.0 +25112,41,9.65,40,0.0 +25112,69,36,35,0.0 +25112,18,62.5,15,0.0 +25112,10,31,20,0.0 +25112,3,10,1,0.0 +25112,68,12.5,42,0.0 +25112,22,21,39,0.0 +25112,46,12,23,0.0 +25112,64,33.25,3,0.0 +25112,17,39,39,0.0 +25112,45,9.5,49,0.0 +25112,28,45.6,18,0.0 +25112,71,21.5,7,0.0 +25112,31,12.5,29,0.0 +25112,56,38,47,0.0 +25112,60,34,1,0.0 +25112,48,12.75,42,0.0 +25112,16,17.45,38,0.0 +25112,55,24,13,0.0 +25112,53,32.8,37,0.0 +25112,29,123.79,50,0.0 +25112,75,7.75,19,0.0 +25112,77,13,45,0.0 +25112,42,14,2,0.0 +25112,35,18,11,0.0 +25112,36,19,23,0.0 +25112,14,23.25,19,0.0 +25112,25,14,29,0.0 +25112,72,34.8,24,0.0 +25112,73,15,5,0.0 +25112,57,19.5,20,0.0 +25112,15,15.5,27,0.0 +25112,12,38,18,0.0 +25112,47,9.5,44,0.0 +25112,20,81,17,0.0 +25112,2,19,34,0.0 +25112,24,4.5,28,0.0 +25112,44,19.45,41,0.0 +25112,62,49.3,32,0.0 +25112,9,97,11,0.0 +25112,7,30,30,0.0 +25112,34,14,49,0.0 +25112,1,18,17,0.0 +25112,70,15,38,0.0 +25112,37,26,7,0.0 +25112,76,18,5,0.0 +25112,19,9.2,29,0.0 +25112,21,10,28,0.0 +25112,65,21.05,29,0.0 +25112,11,21,7,0.0 +25112,40,18.4,22,0.0 +25112,27,43.9,33,0.0 +25112,52,7,38,0.0 +25112,54,7.45,24,0.0 +25113,12,38,26,0.0 +25113,58,13.25,26,0.0 +25113,76,18,13,0.0 +25113,34,14,2,0.0 +25113,72,34.8,34,0.0 +25113,42,14,30,0.0 +25113,1,18,44,0.0 +25113,41,9.65,22,0.0 +25113,4,22,44,0.0 +25113,74,10,24,0.0 +25113,17,39,13,0.0 +25113,29,123.79,5,0.0 +25113,40,18.4,8,0.0 +25113,7,30,1,0.0 +25113,67,14,16,0.0 +25113,11,21,37,0.0 +25113,13,6,36,0.0 +25113,59,55,40,0.0 +25113,39,18,30,0.0 +25113,15,15.5,48,0.0 +25113,28,45.6,34,0.0 +25113,52,7,33,0.0 +25113,23,9,20,0.0 +25113,3,10,4,0.0 +25113,26,31.23,14,0.0 +25113,33,2.5,34,0.0 +25113,16,17.45,5,0.0 +25113,45,9.5,38,0.0 +25113,50,16.25,2,0.0 +25113,75,7.75,19,0.0 +25113,24,4.5,2,0.0 +25113,65,21.05,44,0.0 +25113,71,21.5,2,0.0 +25113,68,12.5,22,0.0 +25113,20,81,25,0.0 +25113,48,12.75,30,0.0 +25113,37,26,15,0.0 +25113,56,38,22,0.0 +25113,47,9.5,20,0.0 +25113,22,21,21,0.0 +25113,9,97,17,0.0 +25113,5,21.35,37,0.0 +25113,69,36,25,0.0 +25113,66,17,44,0.0 +25113,46,12,41,0.0 +25113,36,19,11,0.0 +25113,14,23.25,21,0.0 +25114,35,18,20,0.0 +25114,43,46,47,0.0 +25114,38,263.5,16,0.0 +25114,50,16.25,33,0.0 +25114,21,10,20,0.0 +25114,24,4.5,30,0.0 +25114,9,97,37,0.0 +25114,49,20,13,0.0 +25114,44,19.45,3,0.0 +25114,5,21.35,8,0.0 +25114,10,31,42,0.0 +25114,30,25.89,42,0.0 +25114,12,38,20,0.0 +25114,36,19,25,0.0 +25114,13,6,1,0.0 +25114,59,55,11,0.0 +25114,46,12,17,0.0 +25114,19,9.2,41,0.0 +25114,26,31.23,29,0.0 +25114,11,21,8,0.0 +25114,57,19.5,13,0.0 +25114,27,43.9,13,0.0 +25114,74,10,48,0.0 +25114,1,18,25,0.0 +25114,64,33.25,23,0.0 +25114,34,14,37,0.0 +25114,20,81,30,0.0 +25114,76,18,29,0.0 +25114,15,15.5,35,0.0 +25114,56,38,21,0.0 +25114,73,15,41,0.0 +25114,72,34.8,17,0.0 +25114,28,45.6,32,0.0 +25114,45,9.5,1,0.0 +25114,69,36,14,0.0 +25114,22,21,40,0.0 +25115,54,7.45,31,0.0 +25115,21,10,12,0.0 +25115,29,123.79,11,0.0 +25115,15,15.5,24,0.0 +25115,52,7,32,0.0 +25115,4,22,17,0.0 +25115,39,18,6,0.0 +25115,44,19.45,48,0.0 +25115,1,18,27,0.0 +25115,77,13,29,0.0 +25115,71,21.5,50,0.0 +25115,33,2.5,45,0.0 +25115,38,263.5,34,0.0 +25115,2,19,50,0.0 +25115,68,12.5,23,0.0 +25115,18,62.5,48,0.0 +25115,36,19,2,0.0 +25115,28,45.6,35,0.0 +25115,62,49.3,18,0.0 +25115,40,18.4,27,0.0 +25115,51,53,2,0.0 +25115,64,33.25,7,0.0 +25115,17,39,41,0.0 +25115,41,9.65,2,0.0 +25115,45,9.5,3,0.0 +25115,56,38,10,0.0 +25115,46,12,6,0.0 +25116,53,32.8,42,0.0 +25116,69,36,16,0.0 +25116,47,9.5,18,0.0 +25116,33,2.5,39,0.0 +25116,10,31,20,0.0 +25116,73,15,43,0.0 +25116,67,14,32,0.0 +25116,77,13,36,0.0 +25116,7,30,37,0.0 +25116,43,46,2,0.0 +25116,31,12.5,10,0.0 +25116,46,12,11,0.0 +25116,56,38,41,0.0 +25116,71,21.5,40,0.0 +25116,28,45.6,27,0.0 +25116,63,43.9,4,0.0 +25116,13,6,2,0.0 +25116,50,16.25,12,0.0 +25116,11,21,48,0.0 +25116,76,18,45,0.0 +25116,72,34.8,45,0.0 +25116,51,53,24,0.0 +25116,30,25.89,37,0.0 +25116,6,25,40,0.0 +25116,60,34,1,0.0 +25116,22,21,34,0.0 +25116,24,4.5,15,0.0 +25116,58,13.25,44,0.0 +25116,74,10,9,0.0 +25116,36,19,11,0.0 +25116,27,43.9,33,0.0 +25116,20,81,50,0.0 +25116,2,19,40,0.0 +25116,19,9.2,34,0.0 +25116,39,18,34,0.0 +25116,23,9,17,0.0 +25116,16,17.45,2,0.0 +25116,41,9.65,10,0.0 +25116,18,62.5,36,0.0 +25116,14,23.25,1,0.0 +25116,17,39,40,0.0 +25116,65,21.05,9,0.0 +25116,55,24,34,0.0 +25116,75,7.75,5,0.0 +25116,52,7,29,0.0 +25116,62,49.3,33,0.0 +25116,64,33.25,45,0.0 +25116,61,28.5,3,0.0 +25116,12,38,19,0.0 +25116,45,9.5,23,0.0 +25116,35,18,14,0.0 +25117,23,9,17,0.0 +25117,12,38,50,0.0 +25117,14,23.25,17,0.0 +25117,70,15,43,0.0 +25117,18,62.5,16,0.0 +25117,20,81,30,0.0 +25117,58,13.25,31,0.0 +25117,72,34.8,16,0.0 +25117,26,31.23,15,0.0 +25117,40,18.4,6,0.0 +25117,64,33.25,13,0.0 +25118,30,25.89,35,0.0 +25118,35,18,40,0.0 +25118,68,12.5,31,0.0 +25118,61,28.5,19,0.0 +25118,51,53,21,0.0 +25118,7,30,9,0.0 +25118,47,9.5,28,0.0 +25118,36,19,28,0.0 +25118,59,55,46,0.0 +25118,67,14,24,0.0 +25118,66,17,35,0.0 +25118,12,38,17,0.0 +25118,52,7,41,0.0 +25118,5,21.35,48,0.0 +25118,19,9.2,21,0.0 +25118,73,15,21,0.0 +25118,18,62.5,13,0.0 +25118,1,18,35,0.0 +25118,27,43.9,19,0.0 +25118,34,14,27,0.0 +25118,23,9,14,0.0 +25118,41,9.65,12,0.0 +25118,14,23.25,47,0.0 +25118,20,81,2,0.0 +25118,49,20,26,0.0 +25118,17,39,8,0.0 +25118,24,4.5,17,0.0 +25118,22,21,41,0.0 +25118,53,32.8,50,0.0 +25118,54,7.45,18,0.0 +25118,45,9.5,42,0.0 +25118,77,13,14,0.0 +25118,69,36,43,0.0 +25118,57,19.5,31,0.0 +25118,29,123.79,29,0.0 +25118,21,10,36,0.0 +25118,63,43.9,42,0.0 +25118,74,10,4,0.0 +25118,40,18.4,41,0.0 +25118,44,19.45,6,0.0 +25118,48,12.75,2,0.0 +25118,37,26,43,0.0 +25118,60,34,25,0.0 +25118,72,34.8,17,0.0 +25118,62,49.3,27,0.0 +25118,71,21.5,34,0.0 +25118,6,25,42,0.0 +25119,73,15,28,0.0 +25119,51,53,26,0.0 +25119,38,263.5,4,0.0 +25119,15,15.5,6,0.0 +25119,49,20,3,0.0 +25120,65,21.05,42,0.0 +25120,77,13,14,0.0 +25120,45,9.5,50,0.0 +25120,58,13.25,34,0.0 +25120,69,36,39,0.0 +25120,15,15.5,42,0.0 +25120,48,12.75,43,0.0 +25120,24,4.5,16,0.0 +25120,39,18,25,0.0 +25120,27,43.9,22,0.0 +25120,23,9,30,0.0 +25120,37,26,1,0.0 +25120,61,28.5,34,0.0 +25120,11,21,46,0.0 +25120,67,14,27,0.0 +25120,59,55,5,0.0 +25120,18,62.5,5,0.0 +25120,3,10,34,0.0 +25120,40,18.4,6,0.0 +25120,22,21,30,0.0 +25120,63,43.9,21,0.0 +25120,1,18,28,0.0 +25120,44,19.45,49,0.0 +25120,9,97,6,0.0 +25120,8,40,26,0.0 +25120,6,25,19,0.0 +25120,35,18,35,0.0 +25120,62,49.3,30,0.0 +25120,28,45.6,32,0.0 +25120,74,10,15,0.0 +25120,20,81,48,0.0 +25120,14,23.25,1,0.0 +25120,26,31.23,14,0.0 +25120,30,25.89,31,0.0 +25120,64,33.25,36,0.0 +25120,32,32,24,0.0 +25120,76,18,44,0.0 +25120,73,15,2,0.0 +25120,46,12,28,0.0 +25120,72,34.8,1,0.0 +25120,21,10,32,0.0 +25120,51,53,24,0.0 +25120,49,20,21,0.0 +25120,43,46,28,0.0 +25120,12,38,37,0.0 +25120,38,263.5,49,0.0 +25120,36,19,41,0.0 +25120,53,32.8,22,0.0 +25120,34,14,39,0.0 +25120,5,21.35,13,0.0 +25120,10,31,35,0.0 +25120,16,17.45,10,0.0 +25120,42,14,24,0.0 +25120,54,7.45,18,0.0 +25121,12,38,13,0.0 +25121,58,13.25,36,0.0 +25121,69,36,46,0.0 +25121,27,43.9,16,0.0 +25121,10,31,9,0.0 +25121,68,12.5,33,0.0 +25121,49,20,3,0.0 +25121,31,12.5,23,0.0 +25121,56,38,6,0.0 +25121,19,9.2,19,0.0 +25121,54,7.45,40,0.0 +25121,24,4.5,48,0.0 +25121,50,16.25,26,0.0 +25121,64,33.25,44,0.0 +25121,75,7.75,14,0.0 +25121,45,9.5,1,0.0 +25121,66,17,33,0.0 +25121,74,10,4,0.0 +25121,39,18,16,0.0 +25121,77,13,41,0.0 +25121,61,28.5,11,0.0 +25121,37,26,30,0.0 +25121,73,15,27,0.0 +25121,67,14,42,0.0 +25121,7,30,1,0.0 +25121,59,55,20,0.0 +25121,52,7,31,0.0 +25121,35,18,30,0.0 +25122,53,32.8,35,0.0 +25122,59,55,7,0.0 +25122,24,4.5,41,0.0 +25122,6,25,8,0.0 +25122,42,14,25,0.0 +25122,45,9.5,24,0.0 +25122,38,263.5,7,0.0 +25122,5,21.35,21,0.0 +25122,63,43.9,24,0.0 +25122,32,32,50,0.0 +25122,46,12,44,0.0 +25122,12,38,35,0.0 +25122,2,19,7,0.0 +25122,3,10,22,0.0 +25122,62,49.3,9,0.0 +25122,25,14,25,0.0 +25122,7,30,13,0.0 +25122,35,18,46,0.0 +25122,14,23.25,47,0.0 +25122,1,18,3,0.0 +25122,47,9.5,21,0.0 +25122,13,6,37,0.0 +25122,57,19.5,23,0.0 +25122,71,21.5,7,0.0 +25122,10,31,20,0.0 +25122,66,17,18,0.0 +25122,18,62.5,25,0.0 +25122,43,46,14,0.0 +25122,40,18.4,40,0.0 +25122,68,12.5,20,0.0 +25122,27,43.9,37,0.0 +25122,77,13,49,0.0 +25122,20,81,31,0.0 +25122,23,9,25,0.0 +25122,34,14,37,0.0 +25122,41,9.65,37,0.0 +25122,56,38,16,0.0 +25122,39,18,6,0.0 +25122,48,12.75,34,0.0 +25122,17,39,49,0.0 +25122,72,34.8,50,0.0 +25122,60,34,15,0.0 +25122,50,16.25,39,0.0 +25122,65,21.05,46,0.0 +25122,31,12.5,32,0.0 +25122,75,7.75,31,0.0 +25122,33,2.5,9,0.0 +25122,4,22,37,0.0 +25122,61,28.5,14,0.0 +25122,64,33.25,46,0.0 +25122,15,15.5,43,0.0 +25122,73,15,40,0.0 +25122,44,19.45,34,0.0 +25122,58,13.25,32,0.0 +25122,74,10,34,0.0 +25122,11,21,8,0.0 +25122,16,17.45,41,0.0 +25122,8,40,28,0.0 +25122,19,9.2,50,0.0 +25122,49,20,40,0.0 +25122,51,53,15,0.0 +25122,28,45.6,41,0.0 +25122,67,14,26,0.0 +25122,30,25.89,28,0.0 +25122,37,26,28,0.0 +25122,29,123.79,40,0.0 +25122,55,24,26,0.0 +25123,39,18,45,0.0 +25123,55,24,20,0.0 +25123,47,9.5,49,0.0 +25123,36,19,36,0.0 +25123,22,21,7,0.0 +25123,19,9.2,24,0.0 +25123,10,31,12,0.0 +25123,42,14,42,0.0 +25123,27,43.9,37,0.0 +25123,31,12.5,20,0.0 +25123,13,6,14,0.0 +25123,75,7.75,3,0.0 +25123,74,10,24,0.0 +25123,41,9.65,29,0.0 +25123,38,263.5,41,0.0 +25123,44,19.45,49,0.0 +25123,52,7,25,0.0 +25123,62,49.3,29,0.0 +25123,33,2.5,1,0.0 +25123,65,21.05,23,0.0 +25123,3,10,16,0.0 +25123,5,21.35,15,0.0 +25123,63,43.9,30,0.0 +25123,2,19,48,0.0 +25123,29,123.79,2,0.0 +25123,37,26,23,0.0 +25123,43,46,14,0.0 +25123,4,22,16,0.0 +25123,59,55,32,0.0 +25123,26,31.23,36,0.0 +25123,8,40,45,0.0 +25123,20,81,44,0.0 +25123,56,38,29,0.0 +25123,7,30,50,0.0 +25123,64,33.25,6,0.0 +25123,9,97,30,0.0 +25124,42,14,35,0.0 +25124,77,13,1,0.0 +25124,17,39,16,0.0 +25124,44,19.45,22,0.0 +25124,43,46,19,0.0 +25124,30,25.89,40,0.0 +25124,29,123.79,24,0.0 +25124,12,38,29,0.0 +25124,72,34.8,4,0.0 +25124,41,9.65,5,0.0 +25124,10,31,49,0.0 +25124,61,28.5,37,0.0 +25124,46,12,11,0.0 +25124,53,32.8,33,0.0 +25124,54,7.45,45,0.0 +25124,47,9.5,21,0.0 +25124,36,19,31,0.0 +25124,25,14,35,0.0 +25124,6,25,29,0.0 +25124,60,34,30,0.0 +25124,2,19,1,0.0 +25124,28,45.6,50,0.0 +25124,18,62.5,7,0.0 +25124,74,10,35,0.0 +25124,73,15,45,0.0 +25124,20,81,37,0.0 +25124,14,23.25,36,0.0 +25124,51,53,17,0.0 +25124,13,6,45,0.0 +25124,67,14,44,0.0 +25124,64,33.25,19,0.0 +25124,34,14,15,0.0 +25124,49,20,41,0.0 +25124,23,9,11,0.0 +25124,33,2.5,43,0.0 +25124,19,9.2,33,0.0 +25124,15,15.5,23,0.0 +25124,3,10,12,0.0 +25124,69,36,27,0.0 +25124,35,18,31,0.0 +25124,56,38,19,0.0 +25124,1,18,5,0.0 +25124,58,13.25,41,0.0 +25124,75,7.75,13,0.0 +25124,7,30,14,0.0 +25124,39,18,46,0.0 +25124,21,10,11,0.0 +25124,8,40,27,0.0 +25124,16,17.45,9,0.0 +25124,4,22,31,0.0 +25124,55,24,12,0.0 +25124,52,7,40,0.0 +25125,67,14,4,0.0 +25125,37,26,26,0.0 +25125,60,34,23,0.0 +25125,39,18,41,0.0 +25125,44,19.45,46,0.0 +25125,65,21.05,47,0.0 +25125,69,36,34,0.0 +25125,35,18,24,0.0 +25125,10,31,47,0.0 +25125,23,9,9,0.0 +25125,74,10,32,0.0 +25125,56,38,44,0.0 +25125,61,28.5,24,0.0 +25125,71,21.5,13,0.0 +25125,72,34.8,22,0.0 +25125,51,53,7,0.0 +25125,30,25.89,17,0.0 +25125,11,21,6,0.0 +25125,50,16.25,4,0.0 +25125,12,38,26,0.0 +25125,40,18.4,11,0.0 +25125,27,43.9,36,0.0 +25125,66,17,42,0.0 +25125,52,7,28,0.0 +25125,1,18,17,0.0 +25125,22,21,8,0.0 +25125,28,45.6,47,0.0 +25125,32,32,3,0.0 +25125,14,23.25,18,0.0 +25125,17,39,23,0.0 +25125,43,46,30,0.0 +25125,73,15,31,0.0 +25125,70,15,21,0.0 +25125,58,13.25,15,0.0 +25125,55,24,13,0.0 +25125,46,12,50,0.0 +25125,38,263.5,26,0.0 +25125,31,12.5,1,0.0 +25125,63,43.9,50,0.0 +25125,42,14,34,0.0 +25125,41,9.65,29,0.0 +25125,24,4.5,1,0.0 +25125,7,30,25,0.0 +25125,9,97,4,0.0 +25125,34,14,4,0.0 +25125,57,19.5,22,0.0 +25125,3,10,41,0.0 +25125,75,7.75,47,0.0 +25125,15,15.5,49,0.0 +25125,36,19,14,0.0 +25125,18,62.5,49,0.0 +25125,47,9.5,18,0.0 +25125,5,21.35,38,0.0 +25125,33,2.5,7,0.0 +25125,64,33.25,25,0.0 +25125,2,19,34,0.0 +25125,19,9.2,49,0.0 +25125,54,7.45,26,0.0 +25125,77,13,19,0.0 +25126,31,12.5,49,0.0 +25126,65,21.05,26,0.0 +25126,47,9.5,33,0.0 +25126,67,14,27,0.0 +25126,69,36,18,0.0 +25126,58,13.25,2,0.0 +25126,29,123.79,27,0.0 +25126,38,263.5,15,0.0 +25126,6,25,23,0.0 +25126,17,39,35,0.0 +25126,41,9.65,42,0.0 +25126,27,43.9,43,0.0 +25127,64,33.25,4,0.0 +25127,41,9.65,19,0.0 +25127,37,26,3,0.0 +25127,22,21,48,0.0 +25127,19,9.2,10,0.0 +25127,50,16.25,26,0.0 +25127,40,18.4,36,0.0 +25127,52,7,1,0.0 +25127,10,31,37,0.0 +25127,12,38,46,0.0 +25127,5,21.35,39,0.0 +25127,58,13.25,4,0.0 +25127,46,12,4,0.0 +25127,23,9,38,0.0 +25127,65,21.05,2,0.0 +25127,51,53,30,0.0 +25127,71,21.5,36,0.0 +25127,14,23.25,3,0.0 +25127,4,22,42,0.0 +25127,63,43.9,48,0.0 +25127,33,2.5,9,0.0 +25127,47,9.5,26,0.0 +25127,21,10,46,0.0 +25127,24,4.5,35,0.0 +25127,7,30,17,0.0 +25127,32,32,27,0.0 +25127,59,55,28,0.0 +25127,3,10,11,0.0 +25127,18,62.5,28,0.0 +25127,25,14,18,0.0 +25127,72,34.8,31,0.0 +25127,66,17,40,0.0 +25127,45,9.5,27,0.0 +25127,6,25,45,0.0 +25127,35,18,36,0.0 +25127,53,32.8,20,0.0 +25127,44,19.45,7,0.0 +25127,60,34,19,0.0 +25127,31,12.5,17,0.0 +25127,20,81,44,0.0 +25127,42,14,48,0.0 +25127,56,38,21,0.0 +25127,73,15,22,0.0 +25127,27,43.9,27,0.0 +25127,39,18,1,0.0 +25127,9,97,42,0.0 +25127,28,45.6,11,0.0 +25127,62,49.3,48,0.0 +25127,15,15.5,4,0.0 +25127,70,15,40,0.0 +25127,29,123.79,28,0.0 +25127,76,18,8,0.0 +25127,30,25.89,23,0.0 +25127,54,7.45,2,0.0 +25127,77,13,36,0.0 +25127,75,7.75,41,0.0 +25127,26,31.23,26,0.0 +25127,16,17.45,10,0.0 +25127,13,6,20,0.0 +25127,57,19.5,38,0.0 +25127,11,21,48,0.0 +25127,1,18,11,0.0 +25127,38,263.5,16,0.0 +25127,74,10,17,0.0 +25127,69,36,50,0.0 +25127,61,28.5,36,0.0 +25127,36,19,2,0.0 +25127,67,14,22,0.0 +25127,43,46,46,0.0 +25127,48,12.75,37,0.0 +25127,55,24,35,0.0 +25127,68,12.5,12,0.0 +25127,2,19,9,0.0 +25127,17,39,48,0.0 +25127,8,40,3,0.0 +25128,42,14,10,0.0 +25128,10,31,39,0.0 +25128,18,62.5,2,0.0 +25128,21,10,30,0.0 +25128,66,17,14,0.0 +25128,6,25,34,0.0 +25128,70,15,34,0.0 +25128,72,34.8,37,0.0 +25128,74,10,22,0.0 +25129,59,55,12,0.0 +25129,15,15.5,12,0.0 +25129,71,21.5,13,0.0 +25129,36,19,3,0.0 +25129,48,12.75,31,0.0 +25129,12,38,33,0.0 +25129,61,28.5,2,0.0 +25129,63,43.9,6,0.0 +25129,58,13.25,5,0.0 +25129,29,123.79,5,0.0 +25129,5,21.35,23,0.0 +25129,43,46,3,0.0 +25129,68,12.5,20,0.0 +25129,10,31,20,0.0 +25129,17,39,30,0.0 +25129,38,263.5,36,0.0 +25129,46,12,1,0.0 +25129,25,14,5,0.0 +25129,41,9.65,5,0.0 +25129,34,14,11,0.0 +25129,52,7,18,0.0 +25129,54,7.45,44,0.0 +25129,31,12.5,7,0.0 +25129,56,38,47,0.0 +25129,44,19.45,33,0.0 +25129,66,17,16,0.0 +25129,22,21,46,0.0 +25129,18,62.5,23,0.0 +25129,76,18,32,0.0 +25129,30,25.89,29,0.0 +25129,9,97,2,0.0 +25129,13,6,24,0.0 +25129,47,9.5,46,0.0 +25129,50,16.25,10,0.0 +25129,64,33.25,7,0.0 +25129,28,45.6,24,0.0 +25129,74,10,18,0.0 +25129,11,21,18,0.0 +25129,69,36,34,0.0 +25129,73,15,35,0.0 +25129,65,21.05,36,0.0 +25129,53,32.8,12,0.0 +25129,6,25,7,0.0 +25129,4,22,14,0.0 +25129,23,9,13,0.0 +25129,39,18,8,0.0 +25129,62,49.3,16,0.0 +25129,42,14,34,0.0 +25129,32,32,20,0.0 +25129,72,34.8,15,0.0 +25130,4,22,19,0.0 +25130,38,263.5,38,0.0 +25130,14,23.25,15,0.0 +25130,58,13.25,23,0.0 +25130,19,9.2,24,0.0 +25130,25,14,13,0.0 +25130,60,34,7,0.0 +25130,3,10,34,0.0 +25130,37,26,21,0.0 +25130,7,30,23,0.0 +25130,62,49.3,23,0.0 +25130,28,45.6,6,0.0 +25130,22,21,8,0.0 +25130,31,12.5,15,0.0 +25130,55,24,19,0.0 +25130,30,25.89,40,0.0 +25130,70,15,19,0.0 +25130,61,28.5,33,0.0 +25130,39,18,18,0.0 +25130,24,4.5,6,0.0 +25130,59,55,29,0.0 +25130,44,19.45,37,0.0 +25130,21,10,8,0.0 +25130,10,31,9,0.0 +25130,74,10,47,0.0 +25130,36,19,6,0.0 +25130,32,32,27,0.0 +25130,73,15,23,0.0 +25130,41,9.65,46,0.0 +25130,69,36,29,0.0 +25130,76,18,38,0.0 +25130,43,46,42,0.0 +25130,68,12.5,31,0.0 +25130,63,43.9,10,0.0 +25130,65,21.05,19,0.0 +25130,67,14,3,0.0 +25130,51,53,28,0.0 +25130,1,18,49,0.0 +25130,49,20,45,0.0 +25130,53,32.8,39,0.0 +25130,48,12.75,43,0.0 +25130,23,9,20,0.0 +25130,27,43.9,12,0.0 +25130,9,97,37,0.0 +25130,52,7,27,0.0 +25130,29,123.79,42,0.0 +25130,12,38,48,0.0 +25130,47,9.5,49,0.0 +25130,56,38,42,0.0 +25130,6,25,30,0.0 +25130,77,13,8,0.0 +25130,50,16.25,14,0.0 +25130,66,17,43,0.0 +25130,42,14,4,0.0 +25130,15,15.5,48,0.0 +25130,35,18,4,0.0 +25130,2,19,45,0.0 +25130,45,9.5,11,0.0 +25130,54,7.45,32,0.0 +25130,11,21,47,0.0 +25130,18,62.5,36,0.0 +25130,57,19.5,30,0.0 +25130,20,81,5,0.0 +25130,71,21.5,50,0.0 +25130,72,34.8,27,0.0 +25130,46,12,16,0.0 +25130,40,18.4,33,0.0 +25130,8,40,44,0.0 +25130,17,39,6,0.0 +25130,34,14,9,0.0 +25130,13,6,35,0.0 +25130,64,33.25,26,0.0 +25130,16,17.45,44,0.0 +25130,33,2.5,39,0.0 +25131,47,9.5,2,0.0 +25131,16,17.45,26,0.0 +25131,39,18,43,0.0 +25131,18,62.5,35,0.0 +25131,14,23.25,43,0.0 +25131,60,34,2,0.0 +25131,62,49.3,3,0.0 +25131,35,18,23,0.0 +25131,54,7.45,45,0.0 +25131,31,12.5,6,0.0 +25131,7,30,6,0.0 +25131,8,40,20,0.0 +25131,30,25.89,49,0.0 +25131,28,45.6,36,0.0 +25131,59,55,30,0.0 +25131,3,10,25,0.0 +25131,67,14,3,0.0 +25131,33,2.5,6,0.0 +25131,51,53,6,0.0 +25132,46,12,13,0.0 +25132,31,12.5,8,0.0 +25132,48,12.75,34,0.0 +25132,17,39,30,0.0 +25132,26,31.23,30,0.0 +25132,8,40,48,0.0 +25132,35,18,3,0.0 +25132,58,13.25,11,0.0 +25132,41,9.65,27,0.0 +25132,70,15,41,0.0 +25132,7,30,39,0.0 +25132,36,19,11,0.0 +25132,15,15.5,37,0.0 +25132,73,15,14,0.0 +25132,61,28.5,21,0.0 +25132,19,9.2,11,0.0 +25132,72,34.8,2,0.0 +25132,74,10,5,0.0 +25132,23,9,11,0.0 +25132,44,19.45,7,0.0 +25132,56,38,40,0.0 +25132,39,18,37,0.0 +25132,52,7,41,0.0 +25132,18,62.5,43,0.0 +25132,13,6,20,0.0 +25132,55,24,37,0.0 +25132,20,81,34,0.0 +25132,60,34,49,0.0 +25132,42,14,9,0.0 +25132,66,17,45,0.0 +25132,3,10,46,0.0 +25132,54,7.45,39,0.0 +25132,29,123.79,36,0.0 +25132,6,25,21,0.0 +25132,24,4.5,46,0.0 +25132,71,21.5,40,0.0 +25132,50,16.25,18,0.0 +25132,64,33.25,12,0.0 +25132,68,12.5,31,0.0 +25132,59,55,35,0.0 +25132,33,2.5,32,0.0 +25132,22,21,44,0.0 +25132,53,32.8,17,0.0 +25132,69,36,30,0.0 +25132,28,45.6,8,0.0 +25132,4,22,41,0.0 +25132,62,49.3,8,0.0 +25132,9,97,33,0.0 +25132,2,19,17,0.0 +25132,5,21.35,36,0.0 +25132,47,9.5,44,0.0 +25132,40,18.4,18,0.0 +25132,30,25.89,28,0.0 +25132,51,53,40,0.0 +25132,25,14,16,0.0 +25132,75,7.75,12,0.0 +25132,67,14,30,0.0 +25132,45,9.5,13,0.0 +25132,49,20,10,0.0 +25132,76,18,25,0.0 +25132,16,17.45,7,0.0 +25132,27,43.9,18,0.0 +25132,21,10,48,0.0 +25132,38,263.5,27,0.0 +25132,34,14,12,0.0 +25132,12,38,29,0.0 +25132,77,13,3,0.0 +25132,43,46,31,0.0 +25132,37,26,22,0.0 +25132,57,19.5,48,0.0 +25132,11,21,48,0.0 +25133,74,10,27,0.0 +25133,39,18,4,0.0 +25133,11,21,16,0.0 +25134,36,19,5,0.0 +25134,6,25,47,0.0 +25134,52,7,11,0.0 +25134,11,21,43,0.0 +25134,70,15,27,0.0 +25134,50,16.25,14,0.0 +25134,30,25.89,15,0.0 +25134,42,14,44,0.0 +25134,2,19,15,0.0 +25134,27,43.9,46,0.0 +25134,1,18,36,0.0 +25134,69,36,15,0.0 +25134,48,12.75,35,0.0 +25134,73,15,18,0.0 +25134,34,14,33,0.0 +25134,60,34,18,0.0 +25134,51,53,45,0.0 +25134,21,10,39,0.0 +25134,53,32.8,41,0.0 +25134,62,49.3,22,0.0 +25134,74,10,8,0.0 +25134,47,9.5,28,0.0 +25134,77,13,18,0.0 +25134,28,45.6,31,0.0 +25134,46,12,13,0.0 +25134,10,31,12,0.0 +25134,43,46,38,0.0 +25134,68,12.5,3,0.0 +25134,72,34.8,35,0.0 +25134,18,62.5,40,0.0 +25134,55,24,32,0.0 +25134,56,38,42,0.0 +25134,32,32,20,0.0 +25135,50,16.25,14,0.0 +25135,58,13.25,37,0.0 +25135,43,46,48,0.0 +25135,52,7,20,0.0 +25135,1,18,26,0.0 +25135,22,21,23,0.0 +25135,70,15,5,0.0 +25135,42,14,9,0.0 +25135,74,10,16,0.0 +25135,30,25.89,28,0.0 +25135,39,18,38,0.0 +25135,18,62.5,28,0.0 +25135,41,9.65,47,0.0 +25135,61,28.5,6,0.0 +25135,10,31,24,0.0 +25135,66,17,27,0.0 +25135,4,22,7,0.0 +25135,56,38,29,0.0 +25135,23,9,4,0.0 +25135,8,40,14,0.0 +25136,54,7.45,10,0.0 +25136,73,15,32,0.0 +25136,63,43.9,5,0.0 +25136,66,17,49,0.0 +25136,27,43.9,40,0.0 +25136,45,9.5,40,0.0 +25136,76,18,5,0.0 +25136,71,21.5,19,0.0 +25136,75,7.75,18,0.0 +25136,26,31.23,29,0.0 +25136,44,19.45,40,0.0 +25136,3,10,29,0.0 +25136,55,24,45,0.0 +25136,19,9.2,49,0.0 +25136,8,40,47,0.0 +25136,37,26,45,0.0 +25136,12,38,36,0.0 +25136,68,12.5,16,0.0 +25136,15,15.5,37,0.0 +25136,30,25.89,9,0.0 +25136,70,15,24,0.0 +25136,33,2.5,15,0.0 +25136,58,13.25,46,0.0 +25136,14,23.25,22,0.0 +25136,47,9.5,18,0.0 +25136,2,19,1,0.0 +25136,50,16.25,19,0.0 +25136,61,28.5,44,0.0 +25136,69,36,2,0.0 +25136,60,34,24,0.0 +25136,43,46,41,0.0 +25136,40,18.4,19,0.0 +25136,16,17.45,42,0.0 +25136,39,18,22,0.0 +25136,35,18,26,0.0 +25136,38,263.5,26,0.0 +25136,51,53,25,0.0 +25136,46,12,42,0.0 +25136,77,13,37,0.0 +25136,21,10,41,0.0 +25136,18,62.5,22,0.0 +25136,53,32.8,4,0.0 +25136,34,14,47,0.0 +25136,13,6,39,0.0 +25136,49,20,38,0.0 +25136,36,19,41,0.0 +25136,20,81,44,0.0 +25136,17,39,7,0.0 +25136,4,22,1,0.0 +25136,56,38,6,0.0 +25136,11,21,29,0.0 +25136,48,12.75,8,0.0 +25136,9,97,39,0.0 +25136,7,30,1,0.0 +25136,1,18,15,0.0 +25136,10,31,21,0.0 +25137,67,14,6,0.0 +25137,31,12.5,37,0.0 +25137,69,36,21,0.0 +25137,16,17.45,24,0.0 +25137,55,24,6,0.0 +25137,50,16.25,2,0.0 +25137,73,15,37,0.0 +25137,37,26,40,0.0 +25137,17,39,47,0.0 +25137,33,2.5,42,0.0 +25137,27,43.9,14,0.0 +25137,32,32,18,0.0 +25137,43,46,34,0.0 +25137,54,7.45,30,0.0 +25137,22,21,15,0.0 +25137,51,53,21,0.0 +25137,18,62.5,38,0.0 +25137,56,38,40,0.0 +25137,42,14,36,0.0 +25137,26,31.23,40,0.0 +25137,9,97,3,0.0 +25137,25,14,4,0.0 +25137,28,45.6,2,0.0 +25137,39,18,8,0.0 +25137,29,123.79,46,0.0 +25137,49,20,29,0.0 +25137,60,34,45,0.0 +25137,10,31,36,0.0 +25137,59,55,50,0.0 +25137,19,9.2,17,0.0 +25137,44,19.45,22,0.0 +25137,1,18,8,0.0 +25137,34,14,36,0.0 +25137,12,38,33,0.0 +25137,40,18.4,35,0.0 +25137,57,19.5,45,0.0 +25137,35,18,35,0.0 +25137,58,13.25,18,0.0 +25137,68,12.5,23,0.0 +25137,64,33.25,16,0.0 +25137,63,43.9,41,0.0 +25137,21,10,9,0.0 +25137,53,32.8,23,0.0 +25137,77,13,4,0.0 +25137,61,28.5,9,0.0 +25137,11,21,41,0.0 +25137,46,12,18,0.0 +25137,41,9.65,27,0.0 +25138,6,25,33,0.0 +25138,4,22,35,0.0 +25138,5,21.35,28,0.0 +25138,59,55,15,0.0 +25138,46,12,6,0.0 +25138,22,21,48,0.0 +25138,58,13.25,16,0.0 +25138,26,31.23,45,0.0 +25138,33,2.5,14,0.0 +25138,61,28.5,47,0.0 +25138,54,7.45,39,0.0 +25138,24,4.5,32,0.0 +25138,55,24,5,0.0 +25138,65,21.05,15,0.0 +25138,34,14,9,0.0 +25138,17,39,42,0.0 +25138,16,17.45,32,0.0 +25138,29,123.79,29,0.0 +25138,41,9.65,50,0.0 +25138,39,18,2,0.0 +25138,44,19.45,14,0.0 +25138,23,9,2,0.0 +25138,60,34,17,0.0 +25138,12,38,42,0.0 +25138,64,33.25,44,0.0 +25138,75,7.75,30,0.0 +25138,9,97,25,0.0 +25138,21,10,28,0.0 +25138,25,14,29,0.0 +25138,51,53,7,0.0 +25139,20,81,10,0.0 +25139,75,7.75,38,0.0 +25139,8,40,33,0.0 +25139,37,26,1,0.0 +25139,39,18,1,0.0 +25139,52,7,18,0.0 +25139,64,33.25,27,0.0 +25139,3,10,1,0.0 +25139,66,17,34,0.0 +25139,54,7.45,35,0.0 +25140,23,9,20,0.0 +25140,51,53,30,0.0 +25140,15,15.5,45,0.0 +25140,73,15,10,0.0 +25140,11,21,27,0.0 +25140,1,18,4,0.0 +25140,33,2.5,41,0.0 +25140,44,19.45,44,0.0 +25140,28,45.6,26,0.0 +25140,42,14,49,0.0 +25140,17,39,22,0.0 +25140,19,9.2,20,0.0 +25140,61,28.5,50,0.0 +25140,32,32,9,0.0 +25140,26,31.23,37,0.0 +25140,63,43.9,26,0.0 +25140,74,10,13,0.0 +25140,30,25.89,11,0.0 +25140,5,21.35,7,0.0 +25140,3,10,48,0.0 +25140,54,7.45,30,0.0 +25140,25,14,4,0.0 +25140,57,19.5,10,0.0 +25140,29,123.79,35,0.0 +25140,31,12.5,42,0.0 +25141,3,10,38,0.0 +25142,2,19,12,0.0 +25142,37,26,47,0.0 +25142,6,25,12,0.0 +25142,56,38,19,0.0 +25142,77,13,50,0.0 +25142,15,15.5,30,0.0 +25142,57,19.5,7,0.0 +25142,38,263.5,32,0.0 +25142,66,17,34,0.0 +25142,39,18,4,0.0 +25142,21,10,49,0.0 +25142,28,45.6,31,0.0 +25142,33,2.5,13,0.0 +25142,54,7.45,27,0.0 +25142,49,20,12,0.0 +25142,71,21.5,27,0.0 +25142,42,14,42,0.0 +25142,4,22,17,0.0 +25142,47,9.5,37,0.0 +25142,3,10,22,0.0 +25142,19,9.2,21,0.0 +25142,35,18,49,0.0 +25142,23,9,8,0.0 +25142,31,12.5,2,0.0 +25142,53,32.8,15,0.0 +25142,17,39,1,0.0 +25142,48,12.75,5,0.0 +25142,63,43.9,47,0.0 +25142,41,9.65,43,0.0 +25142,11,21,18,0.0 +25142,32,32,41,0.0 +25142,26,31.23,35,0.0 +25142,22,21,21,0.0 +25142,62,49.3,47,0.0 +25142,52,7,16,0.0 +25142,1,18,49,0.0 +25142,13,6,36,0.0 +25142,58,13.25,22,0.0 +25142,25,14,21,0.0 +25142,44,19.45,32,0.0 +25142,43,46,44,0.0 +25142,20,81,35,0.0 +25142,10,31,48,0.0 +25142,40,18.4,10,0.0 +25142,8,40,47,0.0 +25142,30,25.89,9,0.0 +25142,65,21.05,13,0.0 +25142,9,97,27,0.0 +25142,46,12,4,0.0 +25142,61,28.5,30,0.0 +25142,16,17.45,4,0.0 +25142,59,55,39,0.0 +25142,70,15,36,0.0 +25142,29,123.79,37,0.0 +25142,7,30,34,0.0 +25142,73,15,34,0.0 +25142,75,7.75,50,0.0 +25142,50,16.25,24,0.0 +25142,12,38,23,0.0 +25142,36,19,43,0.0 +25142,45,9.5,25,0.0 +25142,5,21.35,48,0.0 +25142,69,36,34,0.0 +25142,67,14,38,0.0 +25142,74,10,45,0.0 +25142,68,12.5,20,0.0 +25142,72,34.8,22,0.0 +25142,64,33.25,20,0.0 +25142,60,34,4,0.0 +25142,14,23.25,45,0.0 +25142,55,24,33,0.0 +25142,34,14,44,0.0 +25143,54,7.45,14,0.0 +25143,70,15,14,0.0 +25143,22,21,4,0.0 +25143,69,36,29,0.0 +25143,46,12,27,0.0 +25143,4,22,10,0.0 +25143,13,6,10,0.0 +25143,51,53,30,0.0 +25143,14,23.25,18,0.0 +25143,25,14,49,0.0 +25143,58,13.25,33,0.0 +25143,71,21.5,40,0.0 +25143,42,14,45,0.0 +25143,67,14,25,0.0 +25143,28,45.6,17,0.0 +25143,6,25,42,0.0 +25143,57,19.5,26,0.0 +25143,52,7,1,0.0 +25143,50,16.25,39,0.0 +25143,60,34,30,0.0 +25143,48,12.75,37,0.0 +25143,27,43.9,2,0.0 +25143,32,32,7,0.0 +25143,19,9.2,10,0.0 +25143,7,30,14,0.0 +25143,44,19.45,12,0.0 +25143,64,33.25,29,0.0 +25143,75,7.75,20,0.0 +25143,18,62.5,22,0.0 +25143,1,18,26,0.0 +25143,65,21.05,12,0.0 +25143,41,9.65,16,0.0 +25143,55,24,33,0.0 +25143,36,19,8,0.0 +25143,11,21,1,0.0 +25143,47,9.5,50,0.0 +25143,34,14,26,0.0 +25143,63,43.9,18,0.0 +25143,31,12.5,37,0.0 +25143,17,39,5,0.0 +25143,62,49.3,13,0.0 +25143,20,81,19,0.0 +25143,21,10,48,0.0 +25143,29,123.79,50,0.0 +25143,16,17.45,10,0.0 +25143,72,34.8,41,0.0 +25143,37,26,20,0.0 +25143,77,13,4,0.0 +25143,12,38,16,0.0 +25143,56,38,38,0.0 +25144,55,24,20,0.0 +25144,36,19,46,0.0 +25144,62,49.3,35,0.0 +25144,10,31,23,0.0 +25144,29,123.79,12,0.0 +25144,61,28.5,37,0.0 +25144,30,25.89,20,0.0 +25144,16,17.45,43,0.0 +25144,57,19.5,37,0.0 +25144,12,38,20,0.0 +25144,18,62.5,48,0.0 +25144,7,30,4,0.0 +25144,44,19.45,23,0.0 +25144,69,36,42,0.0 +25144,37,26,40,0.0 +25144,39,18,43,0.0 +25144,3,10,27,0.0 +25144,35,18,29,0.0 +25144,67,14,13,0.0 +25144,28,45.6,9,0.0 +25144,41,9.65,2,0.0 +25144,25,14,44,0.0 +25144,33,2.5,46,0.0 +25144,43,46,27,0.0 +25144,52,7,29,0.0 +25144,76,18,40,0.0 +25144,59,55,39,0.0 +25144,60,34,20,0.0 +25144,8,40,47,0.0 +25144,53,32.8,46,0.0 +25144,51,53,36,0.0 +25144,47,9.5,16,0.0 +25144,64,33.25,30,0.0 +25144,9,97,45,0.0 +25144,66,17,2,0.0 +25144,22,21,30,0.0 +25144,68,12.5,14,0.0 +25144,71,21.5,37,0.0 +25145,23,9,26,0.0 +25145,68,12.5,38,0.0 +25145,3,10,4,0.0 +25145,18,62.5,8,0.0 +25145,20,81,13,0.0 +25145,76,18,42,0.0 +25145,44,19.45,16,0.0 +25145,14,23.25,9,0.0 +25145,4,22,1,0.0 +25145,59,55,12,0.0 +25145,25,14,34,0.0 +25145,7,30,16,0.0 +25145,51,53,12,0.0 +25145,52,7,29,0.0 +25145,45,9.5,40,0.0 +25145,2,19,23,0.0 +25145,1,18,30,0.0 +25145,10,31,11,0.0 +25145,46,12,21,0.0 +25145,35,18,5,0.0 +25145,74,10,27,0.0 +25145,77,13,21,0.0 +25145,64,33.25,13,0.0 +25145,32,32,29,0.0 +25145,62,49.3,47,0.0 +25145,65,21.05,37,0.0 +25145,6,25,23,0.0 +25145,47,9.5,11,0.0 +25145,40,18.4,18,0.0 +25145,22,21,47,0.0 +25145,67,14,35,0.0 +25145,56,38,41,0.0 +25145,33,2.5,7,0.0 +25145,42,14,2,0.0 +25146,41,9.65,43,0.0 +25146,4,22,34,0.0 +25146,72,34.8,45,0.0 +25146,48,12.75,6,0.0 +25146,69,36,48,0.0 +25146,24,4.5,23,0.0 +25146,25,14,16,0.0 +25146,32,32,29,0.0 +25146,16,17.45,15,0.0 +25146,66,17,25,0.0 +25146,47,9.5,44,0.0 +25146,34,14,18,0.0 +25146,10,31,30,0.0 +25146,56,38,50,0.0 +25146,42,14,10,0.0 +25146,11,21,46,0.0 +25146,6,25,29,0.0 +25146,43,46,39,0.0 +25146,57,19.5,43,0.0 +25146,18,62.5,30,0.0 +25146,19,9.2,35,0.0 +25146,30,25.89,20,0.0 +25146,2,19,46,0.0 +25146,39,18,1,0.0 +25146,53,32.8,14,0.0 +25146,65,21.05,27,0.0 +25146,15,15.5,2,0.0 +25146,12,38,33,0.0 +25146,8,40,27,0.0 +25146,52,7,10,0.0 +25146,28,45.6,26,0.0 +25146,59,55,36,0.0 +25146,17,39,37,0.0 +25146,55,24,32,0.0 +25146,74,10,21,0.0 +25146,36,19,33,0.0 +25146,63,43.9,16,0.0 +25146,13,6,47,0.0 +25146,27,43.9,29,0.0 +25146,62,49.3,9,0.0 +25146,9,97,31,0.0 +25146,40,18.4,50,0.0 +25146,22,21,38,0.0 +25146,38,263.5,27,0.0 +25146,64,33.25,14,0.0 +25146,14,23.25,27,0.0 +25146,77,13,38,0.0 +25146,67,14,49,0.0 +25146,33,2.5,24,0.0 +25146,26,31.23,23,0.0 +25146,35,18,28,0.0 +25146,5,21.35,26,0.0 +25146,54,7.45,36,0.0 +25146,61,28.5,39,0.0 +25146,73,15,19,0.0 +25146,44,19.45,47,0.0 +25146,51,53,15,0.0 +25146,46,12,25,0.0 +25146,1,18,27,0.0 +25146,49,20,1,0.0 +25146,21,10,27,0.0 +25146,3,10,26,0.0 +25146,75,7.75,43,0.0 +25146,76,18,29,0.0 +25146,31,12.5,29,0.0 +25146,37,26,1,0.0 +25146,20,81,17,0.0 +25146,58,13.25,27,0.0 +25146,71,21.5,24,0.0 +25146,7,30,27,0.0 +25146,70,15,47,0.0 +25146,45,9.5,9,0.0 +25146,29,123.79,47,0.0 +25146,60,34,18,0.0 +25147,33,2.5,26,0.0 +25147,74,10,24,0.0 +25147,43,46,20,0.0 +25147,52,7,9,0.0 +25147,50,16.25,19,0.0 +25147,1,18,19,0.0 +25147,60,34,18,0.0 +25147,5,21.35,48,0.0 +25147,21,10,37,0.0 +25147,40,18.4,22,0.0 +25147,57,19.5,11,0.0 +25147,65,21.05,2,0.0 +25147,44,19.45,49,0.0 +25147,19,9.2,4,0.0 +25147,22,21,27,0.0 +25147,73,15,22,0.0 +25148,51,53,23,0.0 +25148,28,45.6,39,0.0 +25148,77,13,4,0.0 +25148,47,9.5,33,0.0 +25148,43,46,17,0.0 +25148,70,15,42,0.0 +25148,53,32.8,50,0.0 +25148,31,12.5,45,0.0 +25148,69,36,45,0.0 +25148,65,21.05,15,0.0 +25148,20,81,43,0.0 +25148,37,26,12,0.0 +25148,39,18,35,0.0 +25148,35,18,25,0.0 +25148,21,10,22,0.0 +25148,11,21,50,0.0 +25148,33,2.5,33,0.0 +25148,34,14,48,0.0 +25148,32,32,44,0.0 +25148,8,40,13,0.0 +25148,16,17.45,46,0.0 +25148,14,23.25,37,0.0 +25148,12,38,20,0.0 +25148,67,14,30,0.0 +25148,71,21.5,14,0.0 +25148,48,12.75,30,0.0 +25148,18,62.5,44,0.0 +25148,26,31.23,8,0.0 +25148,74,10,18,0.0 +25148,50,16.25,31,0.0 +25148,5,21.35,2,0.0 +25148,10,31,21,0.0 +25148,22,21,12,0.0 +25148,19,9.2,48,0.0 +25148,72,34.8,35,0.0 +25148,25,14,6,0.0 +25148,41,9.65,39,0.0 +25149,43,46,49,0.0 +25149,57,19.5,4,0.0 +25149,73,15,38,0.0 +25149,25,14,42,0.0 +25149,50,16.25,19,0.0 +25149,49,20,15,0.0 +25149,66,17,17,0.0 +25149,3,10,13,0.0 +25149,19,9.2,33,0.0 +25149,53,32.8,36,0.0 +25149,39,18,49,0.0 +25149,56,38,23,0.0 +25149,59,55,2,0.0 +25149,29,123.79,50,0.0 +25149,64,33.25,15,0.0 +25149,10,31,2,0.0 +25149,17,39,11,0.0 +25149,55,24,5,0.0 +25149,71,21.5,28,0.0 +25149,63,43.9,21,0.0 +25149,58,13.25,50,0.0 +25149,72,34.8,11,0.0 +25149,74,10,7,0.0 +25149,9,97,28,0.0 +25149,68,12.5,8,0.0 +25149,23,9,34,0.0 +25149,6,25,34,0.0 +25150,34,14,46,0.0 +25150,26,31.23,14,0.0 +25150,1,18,8,0.0 +25150,53,32.8,20,0.0 +25150,66,17,1,0.0 +25150,38,263.5,3,0.0 +25151,75,7.75,44,0.0 +25151,46,12,42,0.0 +25151,40,18.4,34,0.0 +25151,48,12.75,37,0.0 +25151,30,25.89,33,0.0 +25151,53,32.8,15,0.0 +25151,34,14,4,0.0 +25151,37,26,22,0.0 +25151,42,14,48,0.0 +25151,59,55,32,0.0 +25151,18,62.5,21,0.0 +25151,21,10,15,0.0 +25151,51,53,8,0.0 +25151,13,6,19,0.0 +25151,66,17,9,0.0 +25151,61,28.5,1,0.0 +25151,70,15,34,0.0 +25151,20,81,12,0.0 +25151,5,21.35,19,0.0 +25151,10,31,38,0.0 +25151,32,32,35,0.0 +25151,73,15,7,0.0 +25151,8,40,12,0.0 +25151,55,24,40,0.0 +25151,25,14,38,0.0 +25151,62,49.3,18,0.0 +25151,65,21.05,11,0.0 +25151,54,7.45,3,0.0 +25151,27,43.9,47,0.0 +25151,39,18,16,0.0 +25151,60,34,10,0.0 +25151,24,4.5,49,0.0 +25151,26,31.23,29,0.0 +25151,50,16.25,47,0.0 +25151,41,9.65,34,0.0 +25151,28,45.6,11,0.0 +25151,35,18,3,0.0 +25151,64,33.25,48,0.0 +25152,17,39,29,0.0 +25152,32,32,22,0.0 +25152,14,23.25,36,0.0 +25152,28,45.6,24,0.0 +25152,49,20,1,0.0 +25152,40,18.4,32,0.0 +25152,66,17,9,0.0 +25152,70,15,26,0.0 +25152,18,62.5,39,0.0 +25152,22,21,41,0.0 +25152,51,53,5,0.0 +25152,7,30,15,0.0 +25152,50,16.25,30,0.0 +25152,57,19.5,31,0.0 +25152,33,2.5,44,0.0 +25152,67,14,50,0.0 +25152,10,31,47,0.0 +25152,58,13.25,28,0.0 +25152,8,40,44,0.0 +25152,3,10,32,0.0 +25152,27,43.9,2,0.0 +25152,59,55,14,0.0 +25152,13,6,48,0.0 +25152,64,33.25,22,0.0 +25152,37,26,28,0.0 +25152,24,4.5,45,0.0 +25152,20,81,5,0.0 +25152,77,13,33,0.0 +25152,45,9.5,1,0.0 +25152,5,21.35,14,0.0 +25152,38,263.5,12,0.0 +25152,62,49.3,39,0.0 +25152,56,38,21,0.0 +25152,39,18,3,0.0 +25152,46,12,24,0.0 +25152,71,21.5,33,0.0 +25152,61,28.5,4,0.0 +25152,68,12.5,14,0.0 +25152,55,24,11,0.0 +25152,34,14,43,0.0 +25152,44,19.45,13,0.0 +25152,30,25.89,47,0.0 +25152,75,7.75,50,0.0 +25152,16,17.45,13,0.0 +25152,9,97,27,0.0 +25152,36,19,9,0.0 +25152,4,22,1,0.0 +25152,2,19,5,0.0 +25152,6,25,25,0.0 +25152,26,31.23,35,0.0 +25152,76,18,6,0.0 +25152,31,12.5,24,0.0 +25152,11,21,40,0.0 +25152,74,10,16,0.0 +25152,52,7,28,0.0 +25152,1,18,27,0.0 +25152,21,10,50,0.0 +25152,53,32.8,48,0.0 +25152,15,15.5,36,0.0 +25152,43,46,27,0.0 +25152,47,9.5,10,0.0 +25152,23,9,23,0.0 +25152,35,18,24,0.0 +25152,69,36,6,0.0 +25152,73,15,36,0.0 +25152,29,123.79,23,0.0 +25152,19,9.2,8,0.0 +25152,63,43.9,27,0.0 +25152,72,34.8,7,0.0 +25152,12,38,14,0.0 +25152,65,21.05,24,0.0 +25152,25,14,35,0.0 +25152,42,14,19,0.0 +25152,60,34,38,0.0 +25152,54,7.45,9,0.0 +25152,48,12.75,4,0.0 +25153,47,9.5,31,0.0 +25153,30,25.89,46,0.0 +25153,17,39,19,0.0 +25153,36,19,44,0.0 +25153,62,49.3,3,0.0 +25153,18,62.5,50,0.0 +25153,35,18,23,0.0 +25153,2,19,24,0.0 +25153,20,81,29,0.0 +25153,71,21.5,45,0.0 +25153,45,9.5,19,0.0 +25153,58,13.25,23,0.0 +25153,64,33.25,42,0.0 +25153,57,19.5,31,0.0 +25153,41,9.65,24,0.0 +25153,38,263.5,31,0.0 +25153,39,18,8,0.0 +25153,10,31,36,0.0 +25153,42,14,29,0.0 +25153,65,21.05,5,0.0 +25153,15,15.5,31,0.0 +25153,37,26,41,0.0 +25153,33,2.5,12,0.0 +25153,67,14,27,0.0 +25153,5,21.35,19,0.0 +25153,61,28.5,25,0.0 +25153,14,23.25,11,0.0 +25153,12,38,8,0.0 +25153,13,6,14,0.0 +25153,26,31.23,44,0.0 +25153,25,14,50,0.0 +25153,60,34,1,0.0 +25153,43,46,36,0.0 +25153,51,53,18,0.0 +25153,50,16.25,8,0.0 +25153,21,10,16,0.0 +25153,29,123.79,5,0.0 +25153,24,4.5,37,0.0 +25153,3,10,46,0.0 +25153,16,17.45,22,0.0 +25153,76,18,25,0.0 +25153,46,12,1,0.0 +25153,59,55,38,0.0 +25153,56,38,3,0.0 +25153,6,25,7,0.0 +25153,69,36,41,0.0 +25153,68,12.5,15,0.0 +25153,48,12.75,30,0.0 +25154,55,24,41,0.0 +25154,52,7,22,0.0 +25154,32,32,33,0.0 +25154,5,21.35,18,0.0 +25154,6,25,15,0.0 +25154,3,10,11,0.0 +25154,30,25.89,33,0.0 +25154,12,38,1,0.0 +25154,33,2.5,37,0.0 +25154,17,39,45,0.0 +25154,77,13,33,0.0 +25154,57,19.5,10,0.0 +25154,67,14,17,0.0 +25154,8,40,31,0.0 +25154,16,17.45,19,0.0 +25154,19,9.2,40,0.0 +25154,35,18,28,0.0 +25154,20,81,4,0.0 +25154,11,21,5,0.0 +25154,14,23.25,41,0.0 +25154,48,12.75,21,0.0 +25154,24,4.5,46,0.0 +25154,41,9.65,19,0.0 +25154,74,10,49,0.0 +25154,26,31.23,2,0.0 +25154,39,18,41,0.0 +25154,34,14,42,0.0 +25154,72,34.8,38,0.0 +25154,23,9,42,0.0 +25154,76,18,29,0.0 +25154,58,13.25,20,0.0 +25154,9,97,29,0.0 +25154,53,32.8,29,0.0 +25154,64,33.25,43,0.0 +25154,68,12.5,25,0.0 +25154,36,19,42,0.0 +25154,59,55,36,0.0 +25154,21,10,8,0.0 +25154,38,263.5,50,0.0 +25154,10,31,47,0.0 +25154,37,26,47,0.0 +25154,47,9.5,12,0.0 +25154,50,16.25,29,0.0 +25154,13,6,36,0.0 +25154,18,62.5,29,0.0 +25154,62,49.3,6,0.0 +25154,4,22,14,0.0 +25154,51,53,31,0.0 +25154,69,36,20,0.0 +25154,29,123.79,49,0.0 +25154,40,18.4,30,0.0 +25154,7,30,43,0.0 +25154,49,20,28,0.0 +25155,28,45.6,33,0.0 +25155,66,17,2,0.0 +25155,25,14,10,0.0 +25155,10,31,15,0.0 +25155,44,19.45,19,0.0 +25155,64,33.25,42,0.0 +25155,6,25,8,0.0 +25155,22,21,6,0.0 +25155,19,9.2,50,0.0 +25155,18,62.5,6,0.0 +25155,16,17.45,39,0.0 +25155,43,46,41,0.0 +25155,30,25.89,20,0.0 +25155,50,16.25,48,0.0 +25155,20,81,44,0.0 +25155,21,10,36,0.0 +25155,67,14,27,0.0 +25155,35,18,9,0.0 +25155,15,15.5,2,0.0 +25155,70,15,17,0.0 +25155,51,53,29,0.0 +25155,8,40,40,0.0 +25155,74,10,25,0.0 +25155,49,20,28,0.0 +25155,9,97,5,0.0 +25155,47,9.5,7,0.0 +25155,33,2.5,23,0.0 +25155,61,28.5,48,0.0 +25155,65,21.05,7,0.0 +25155,48,12.75,25,0.0 +25155,4,22,5,0.0 +25155,41,9.65,50,0.0 +25155,31,12.5,17,0.0 +25155,76,18,12,0.0 +25155,12,38,14,0.0 +25155,53,32.8,5,0.0 +25155,71,21.5,4,0.0 +25155,42,14,44,0.0 +25155,29,123.79,38,0.0 +25155,3,10,18,0.0 +25155,1,18,37,0.0 +25155,46,12,7,0.0 +25155,5,21.35,14,0.0 +25155,17,39,4,0.0 +25155,63,43.9,28,0.0 +25155,55,24,25,0.0 +25155,40,18.4,7,0.0 +25155,39,18,23,0.0 +25155,75,7.75,7,0.0 +25155,32,32,4,0.0 +25155,56,38,44,0.0 +25155,58,13.25,38,0.0 +25155,69,36,38,0.0 +25155,54,7.45,20,0.0 +25155,77,13,16,0.0 +25155,62,49.3,34,0.0 +25155,57,19.5,9,0.0 +25155,23,9,8,0.0 +25155,11,21,11,0.0 +25155,45,9.5,34,0.0 +25155,72,34.8,18,0.0 +25155,34,14,39,0.0 +25155,26,31.23,9,0.0 +25155,59,55,30,0.0 +25155,73,15,27,0.0 +25155,14,23.25,8,0.0 +25155,13,6,16,0.0 +25155,36,19,8,0.0 +25156,33,2.5,19,0.0 +25156,4,22,27,0.0 +25156,77,13,22,0.0 +25156,27,43.9,34,0.0 +25156,46,12,25,0.0 +25156,20,81,33,0.0 +25156,1,18,34,0.0 +25156,19,9.2,28,0.0 +25156,12,38,23,0.0 +25156,23,9,1,0.0 +25156,38,263.5,22,0.0 +25156,65,21.05,19,0.0 +25156,41,9.65,6,0.0 +25156,67,14,39,0.0 +25156,54,7.45,14,0.0 +25156,62,49.3,50,0.0 +25156,10,31,44,0.0 +25156,9,97,29,0.0 +25156,76,18,8,0.0 +25156,71,21.5,46,0.0 +25156,45,9.5,17,0.0 +25156,75,7.75,2,0.0 +25156,66,17,17,0.0 +25156,53,32.8,39,0.0 +25156,61,28.5,14,0.0 +25156,34,14,33,0.0 +25156,44,19.45,16,0.0 +25156,39,18,17,0.0 +25156,57,19.5,30,0.0 +25156,17,39,34,0.0 +25157,7,30,32,0.0 +25157,20,81,6,0.0 +25157,4,22,14,0.0 +25157,13,6,2,0.0 +25157,9,97,40,0.0 +25157,2,19,17,0.0 +25158,16,17.45,38,0.0 +25158,70,15,45,0.0 +25158,36,19,30,0.0 +25158,3,10,35,0.0 +25158,53,32.8,47,0.0 +25158,21,10,40,0.0 +25158,67,14,29,0.0 +25158,8,40,17,0.0 +25158,10,31,14,0.0 +25158,60,34,16,0.0 +25158,52,7,44,0.0 +25158,22,21,33,0.0 +25158,25,14,48,0.0 +25158,46,12,4,0.0 +25158,35,18,36,0.0 +25158,11,21,38,0.0 +25158,63,43.9,13,0.0 +25158,13,6,27,0.0 +25158,69,36,3,0.0 +25158,62,49.3,12,0.0 +25158,23,9,16,0.0 +25158,39,18,28,0.0 +25158,77,13,2,0.0 +25158,55,24,6,0.0 +25158,66,17,50,0.0 +25158,54,7.45,30,0.0 +25158,61,28.5,21,0.0 +25158,18,62.5,6,0.0 +25158,5,21.35,10,0.0 +25158,14,23.25,45,0.0 +25158,19,9.2,2,0.0 +25158,38,263.5,50,0.0 +25158,72,34.8,48,0.0 +25158,7,30,14,0.0 +25158,74,10,15,0.0 +25158,33,2.5,12,0.0 +25158,50,16.25,38,0.0 +25158,34,14,22,0.0 +25158,31,12.5,10,0.0 +25158,12,38,40,0.0 +25158,40,18.4,9,0.0 +25158,17,39,28,0.0 +25158,56,38,3,0.0 +25158,47,9.5,25,0.0 +25158,2,19,2,0.0 +25158,26,31.23,16,0.0 +25159,2,19,9,0.0 +25159,38,263.5,2,0.0 +25159,28,45.6,4,0.0 +25159,55,24,35,0.0 +25159,10,31,15,0.0 +25159,57,19.5,19,0.0 +25159,20,81,24,0.0 +25159,24,4.5,45,0.0 +25159,14,23.25,10,0.0 +25159,72,34.8,13,0.0 +25159,47,9.5,10,0.0 +25159,34,14,34,0.0 +25159,59,55,10,0.0 +25159,62,49.3,27,0.0 +25159,7,30,21,0.0 +25159,46,12,48,0.0 +25159,15,15.5,43,0.0 +25159,65,21.05,8,0.0 +25159,4,22,17,0.0 +25159,68,12.5,36,0.0 +25159,44,19.45,10,0.0 +25159,50,16.25,19,0.0 +25159,37,26,37,0.0 +25159,5,21.35,43,0.0 +25159,52,7,49,0.0 +25159,66,17,48,0.0 +25159,71,21.5,11,0.0 +25159,35,18,37,0.0 +25159,64,33.25,8,0.0 +25159,6,25,40,0.0 +25160,26,31.23,47,0.0 +25160,62,49.3,11,0.0 +25160,22,21,41,0.0 +25160,21,10,6,0.0 +25160,35,18,34,0.0 +25160,70,15,24,0.0 +25160,44,19.45,35,0.0 +25160,12,38,39,0.0 +25160,14,23.25,50,0.0 +25160,23,9,13,0.0 +25160,6,25,19,0.0 +25160,8,40,5,0.0 +25160,65,21.05,17,0.0 +25160,73,15,11,0.0 +25160,60,34,1,0.0 +25160,67,14,37,0.0 +25160,18,62.5,1,0.0 +25160,3,10,25,0.0 +25160,51,53,31,0.0 +25160,43,46,15,0.0 +25160,46,12,6,0.0 +25160,61,28.5,17,0.0 +25160,20,81,5,0.0 +25160,64,33.25,12,0.0 +25160,54,7.45,27,0.0 +25160,40,18.4,16,0.0 +25160,28,45.6,39,0.0 +25160,47,9.5,25,0.0 +25160,27,43.9,37,0.0 +25160,53,32.8,42,0.0 +25160,10,31,20,0.0 +25160,45,9.5,8,0.0 +25160,24,4.5,38,0.0 +25160,29,123.79,29,0.0 +25160,56,38,39,0.0 +25160,55,24,28,0.0 +25160,9,97,11,0.0 +25160,72,34.8,20,0.0 +25160,71,21.5,6,0.0 +25160,57,19.5,37,0.0 +25160,63,43.9,41,0.0 +25160,31,12.5,26,0.0 +25160,30,25.89,43,0.0 +25160,2,19,25,0.0 +25160,49,20,30,0.0 +25160,41,9.65,25,0.0 +25160,48,12.75,39,0.0 +25161,39,18,29,0.0 +25161,60,34,43,0.0 +25161,33,2.5,23,0.0 +25161,47,9.5,37,0.0 +25161,25,14,41,0.0 +25161,71,21.5,26,0.0 +25161,52,7,24,0.0 +25161,69,36,10,0.0 +25161,65,21.05,1,0.0 +25161,46,12,44,0.0 +25161,12,38,23,0.0 +25161,75,7.75,10,0.0 +25161,64,33.25,44,0.0 +25161,14,23.25,31,0.0 +25161,3,10,16,0.0 +25161,66,17,9,0.0 +25161,42,14,38,0.0 +25161,9,97,13,0.0 +25161,36,19,16,0.0 +25161,54,7.45,9,0.0 +25161,74,10,21,0.0 +25161,23,9,35,0.0 +25161,7,30,15,0.0 +25161,56,38,39,0.0 +25161,61,28.5,16,0.0 +25161,22,21,20,0.0 +25161,21,10,42,0.0 +25161,59,55,8,0.0 +25161,55,24,8,0.0 +25161,18,62.5,9,0.0 +25161,28,45.6,28,0.0 +25161,17,39,39,0.0 +25161,37,26,13,0.0 +25161,19,9.2,6,0.0 +25161,73,15,17,0.0 +25161,49,20,34,0.0 +25161,29,123.79,37,0.0 +25161,34,14,21,0.0 +25161,57,19.5,29,0.0 +25161,51,53,11,0.0 +25161,24,4.5,24,0.0 +25161,45,9.5,3,0.0 +25161,62,49.3,48,0.0 +25161,63,43.9,24,0.0 +25161,4,22,49,0.0 +25161,38,263.5,9,0.0 +25161,13,6,11,0.0 +25161,58,13.25,6,0.0 +25161,6,25,34,0.0 +25161,76,18,37,0.0 +25161,5,21.35,18,0.0 +25161,8,40,42,0.0 +25161,10,31,6,0.0 +25161,2,19,29,0.0 +25161,44,19.45,21,0.0 +25161,20,81,32,0.0 +25161,26,31.23,13,0.0 +25161,1,18,48,0.0 +25161,30,25.89,6,0.0 +25161,50,16.25,41,0.0 +25161,16,17.45,11,0.0 +25161,77,13,15,0.0 +25161,41,9.65,50,0.0 +25161,31,12.5,40,0.0 +25161,40,18.4,37,0.0 +25161,43,46,3,0.0 +25161,70,15,41,0.0 +25161,35,18,27,0.0 +25161,67,14,26,0.0 +25161,11,21,18,0.0 +25161,72,34.8,18,0.0 +25161,27,43.9,6,0.0 +25161,32,32,1,0.0 +25162,64,33.25,48,0.0 +25162,15,15.5,44,0.0 +25162,4,22,42,0.0 +25162,49,20,27,0.0 +25162,22,21,16,0.0 +25162,27,43.9,44,0.0 +25162,40,18.4,2,0.0 +25162,19,9.2,28,0.0 +25162,42,14,38,0.0 +25162,74,10,18,0.0 +25162,34,14,50,0.0 +25162,56,38,18,0.0 +25162,13,6,12,0.0 +25162,41,9.65,32,0.0 +25162,75,7.75,4,0.0 +25162,67,14,30,0.0 +25162,10,31,48,0.0 +25162,32,32,17,0.0 +25162,16,17.45,14,0.0 +25162,1,18,33,0.0 +25162,31,12.5,22,0.0 +25162,35,18,25,0.0 +25162,48,12.75,1,0.0 +25162,62,49.3,34,0.0 +25162,76,18,8,0.0 +25162,37,26,4,0.0 +25162,38,263.5,2,0.0 +25162,71,21.5,17,0.0 +25162,25,14,25,0.0 +25162,17,39,22,0.0 +25162,45,9.5,42,0.0 +25162,69,36,30,0.0 +25162,68,12.5,6,0.0 +25162,33,2.5,11,0.0 +25162,7,30,23,0.0 +25162,65,21.05,26,0.0 +25162,70,15,14,0.0 +25162,11,21,38,0.0 +25162,12,38,17,0.0 +25162,63,43.9,20,0.0 +25162,23,9,4,0.0 +25162,8,40,16,0.0 +25162,55,24,4,0.0 +25162,20,81,5,0.0 +25162,9,97,4,0.0 +25162,21,10,19,0.0 +25162,66,17,45,0.0 +25162,14,23.25,49,0.0 +25163,31,12.5,45,0.0 +25163,47,9.5,49,0.0 +25163,27,43.9,34,0.0 +25163,75,7.75,8,0.0 +25163,42,14,3,0.0 +25163,16,17.45,25,0.0 +25163,71,21.5,30,0.0 +25163,2,19,34,0.0 +25163,22,21,32,0.0 +25163,12,38,35,0.0 +25163,24,4.5,20,0.0 +25163,6,25,19,0.0 +25163,32,32,16,0.0 +25163,15,15.5,7,0.0 +25163,37,26,36,0.0 +25163,30,25.89,5,0.0 +25163,50,16.25,28,0.0 +25163,48,12.75,25,0.0 +25163,3,10,21,0.0 +25163,70,15,16,0.0 +25163,59,55,18,0.0 +25163,9,97,9,0.0 +25163,19,9.2,48,0.0 +25163,34,14,7,0.0 +25163,51,53,1,0.0 +25163,72,34.8,17,0.0 +25163,52,7,30,0.0 +25163,13,6,32,0.0 +25163,45,9.5,11,0.0 +25163,36,19,16,0.0 +25163,33,2.5,2,0.0 +25163,40,18.4,49,0.0 +25163,43,46,3,0.0 +25163,66,17,26,0.0 +25163,25,14,18,0.0 +25163,77,13,27,0.0 +25163,68,12.5,23,0.0 +25163,56,38,38,0.0 +25163,7,30,18,0.0 +25163,55,24,9,0.0 +25163,46,12,3,0.0 +25163,61,28.5,30,0.0 +25163,69,36,13,0.0 +25163,44,19.45,3,0.0 +25163,18,62.5,29,0.0 +25163,63,43.9,3,0.0 +25163,64,33.25,36,0.0 +25163,21,10,21,0.0 +25163,53,32.8,23,0.0 +25163,1,18,1,0.0 +25163,8,40,20,0.0 +25163,54,7.45,24,0.0 +25163,5,21.35,41,0.0 +25163,20,81,46,0.0 +25163,38,263.5,26,0.0 +25163,41,9.65,38,0.0 +25163,10,31,44,0.0 +25163,28,45.6,31,0.0 +25163,60,34,45,0.0 +25163,11,21,19,0.0 +25163,26,31.23,15,0.0 +25163,73,15,16,0.0 +25163,14,23.25,42,0.0 +25163,35,18,17,0.0 +25163,67,14,16,0.0 +25164,22,21,31,0.0 +25164,63,43.9,33,0.0 +25164,39,18,32,0.0 +25164,18,62.5,10,0.0 +25164,35,18,21,0.0 +25164,1,18,13,0.0 +25164,73,15,7,0.0 +25164,28,45.6,19,0.0 +25164,59,55,13,0.0 +25164,41,9.65,14,0.0 +25164,51,53,42,0.0 +25164,64,33.25,48,0.0 +25164,2,19,30,0.0 +25164,38,263.5,10,0.0 +25164,54,7.45,14,0.0 +25164,70,15,49,0.0 +25164,57,19.5,9,0.0 +25164,15,15.5,30,0.0 +25164,62,49.3,39,0.0 +25164,7,30,30,0.0 +25164,58,13.25,32,0.0 +25164,37,26,1,0.0 +25164,33,2.5,20,0.0 +25164,31,12.5,20,0.0 +25164,11,21,6,0.0 +25164,69,36,4,0.0 +25164,29,123.79,42,0.0 +25164,74,10,29,0.0 +25164,67,14,9,0.0 +25164,36,19,17,0.0 +25164,8,40,33,0.0 +25164,19,9.2,28,0.0 +25164,3,10,9,0.0 +25164,76,18,9,0.0 +25164,27,43.9,25,0.0 +25164,71,21.5,5,0.0 +25164,32,32,45,0.0 +25164,24,4.5,27,0.0 +25164,20,81,28,0.0 +25164,50,16.25,13,0.0 +25164,42,14,18,0.0 +25164,23,9,45,0.0 +25164,46,12,24,0.0 +25164,10,31,9,0.0 +25164,25,14,21,0.0 +25164,47,9.5,32,0.0 +25164,13,6,2,0.0 +25164,16,17.45,13,0.0 +25164,4,22,7,0.0 +25164,44,19.45,22,0.0 +25164,60,34,41,0.0 +25164,77,13,48,0.0 +25164,40,18.4,36,0.0 +25164,56,38,22,0.0 +25164,43,46,10,0.0 +25164,72,34.8,33,0.0 +25164,68,12.5,31,0.0 +25164,34,14,46,0.0 +25164,75,7.75,48,0.0 +25164,14,23.25,45,0.0 +25164,6,25,46,0.0 +25164,30,25.89,7,0.0 +25164,9,97,37,0.0 +25164,66,17,5,0.0 +25164,65,21.05,29,0.0 +25164,49,20,44,0.0 +25164,5,21.35,35,0.0 +25164,17,39,39,0.0 +25164,55,24,32,0.0 +25164,61,28.5,6,0.0 +25164,52,7,14,0.0 +25164,21,10,43,0.0 +25164,45,9.5,12,0.0 +25164,53,32.8,38,0.0 +25164,48,12.75,10,0.0 +25164,26,31.23,31,0.0 +25164,12,38,48,0.0 +25165,9,97,28,0.0 +25165,75,7.75,25,0.0 +25165,5,21.35,9,0.0 +25165,23,9,8,0.0 +25165,27,43.9,35,0.0 +25165,69,36,15,0.0 +25165,76,18,43,0.0 +25165,67,14,6,0.0 +25165,71,21.5,32,0.0 +25165,45,9.5,29,0.0 +25165,51,53,48,0.0 +25165,29,123.79,9,0.0 +25165,41,9.65,16,0.0 +25165,3,10,8,0.0 +25165,40,18.4,7,0.0 +25165,55,24,44,0.0 +25165,30,25.89,2,0.0 +25165,38,263.5,49,0.0 +25165,2,19,43,0.0 +25165,19,9.2,47,0.0 +25165,52,7,21,0.0 +25165,74,10,36,0.0 +25165,6,25,15,0.0 +25165,20,81,2,0.0 +25165,50,16.25,16,0.0 +25165,15,15.5,39,0.0 +25165,4,22,31,0.0 +25165,72,34.8,42,0.0 +25165,64,33.25,5,0.0 +25165,28,45.6,30,0.0 +25165,32,32,31,0.0 +25165,7,30,31,0.0 +25165,43,46,4,0.0 +25165,70,15,35,0.0 +25165,37,26,23,0.0 +25165,22,21,39,0.0 +25165,54,7.45,8,0.0 +25165,17,39,17,0.0 +25165,62,49.3,50,0.0 +25165,14,23.25,31,0.0 +25165,63,43.9,36,0.0 +25165,12,38,39,0.0 +25165,39,18,3,0.0 +25165,46,12,3,0.0 +25165,44,19.45,40,0.0 +25165,10,31,37,0.0 +25165,11,21,41,0.0 +25165,8,40,41,0.0 +25165,58,13.25,50,0.0 +25165,13,6,7,0.0 +25166,51,53,45,0.0 +25166,13,6,17,0.0 +25166,30,25.89,38,0.0 +25166,74,10,3,0.0 +25166,43,46,48,0.0 +25166,42,14,27,0.0 +25166,9,97,43,0.0 +25166,58,13.25,10,0.0 +25166,70,15,11,0.0 +25166,67,14,30,0.0 +25166,45,9.5,36,0.0 +25166,71,21.5,4,0.0 +25166,41,9.65,22,0.0 +25166,16,17.45,35,0.0 +25166,62,49.3,50,0.0 +25166,59,55,17,0.0 +25166,25,14,16,0.0 +25166,56,38,40,0.0 +25166,73,15,17,0.0 +25166,39,18,48,0.0 +25166,17,39,2,0.0 +25166,26,31.23,48,0.0 +25166,4,22,28,0.0 +25166,40,18.4,3,0.0 +25166,6,25,42,0.0 +25166,3,10,21,0.0 +25166,46,12,47,0.0 +25166,77,13,4,0.0 +25166,72,34.8,20,0.0 +25166,1,18,11,0.0 +25166,32,32,50,0.0 +25166,75,7.75,34,0.0 +25166,31,12.5,40,0.0 +25166,15,15.5,14,0.0 +25166,44,19.45,18,0.0 +25166,65,21.05,38,0.0 +25166,7,30,24,0.0 +25166,22,21,39,0.0 +25166,38,263.5,23,0.0 +25166,21,10,5,0.0 +25166,66,17,4,0.0 +25166,8,40,20,0.0 +25166,47,9.5,24,0.0 +25166,53,32.8,40,0.0 +25166,35,18,42,0.0 +25166,52,7,10,0.0 +25166,55,24,8,0.0 +25166,2,19,17,0.0 +25166,76,18,28,0.0 +25166,61,28.5,19,0.0 +25166,57,19.5,4,0.0 +25166,24,4.5,10,0.0 +25166,20,81,5,0.0 +25166,64,33.25,36,0.0 +25166,14,23.25,42,0.0 +25166,34,14,4,0.0 +25166,49,20,29,0.0 +25166,11,21,25,0.0 +25166,19,9.2,27,0.0 +25166,37,26,32,0.0 +25166,48,12.75,49,0.0 +25166,23,9,2,0.0 +25166,69,36,35,0.0 +25166,60,34,9,0.0 +25166,27,43.9,1,0.0 +25166,28,45.6,12,0.0 +25166,36,19,10,0.0 +25166,54,7.45,46,0.0 +25167,19,9.2,12,0.0 +25167,49,20,47,0.0 +25167,29,123.79,25,0.0 +25167,56,38,1,0.0 +25167,34,14,25,0.0 +25167,48,12.75,24,0.0 +25167,70,15,35,0.0 +25167,71,21.5,21,0.0 +25167,8,40,50,0.0 +25168,39,18,35,0.0 +25168,32,32,32,0.0 +25168,48,12.75,11,0.0 +25168,6,25,8,0.0 +25168,10,31,16,0.0 +25168,70,15,20,0.0 +25168,30,25.89,13,0.0 +25168,38,263.5,3,0.0 +25168,34,14,18,0.0 +25168,47,9.5,44,0.0 +25168,59,55,20,0.0 +25168,53,32.8,2,0.0 +25168,17,39,10,0.0 +25168,43,46,30,0.0 +25168,68,12.5,19,0.0 +25168,33,2.5,19,0.0 +25168,72,34.8,26,0.0 +25168,12,38,12,0.0 +25168,62,49.3,9,0.0 +25168,23,9,20,0.0 +25168,7,30,41,0.0 +25168,77,13,38,0.0 +25168,60,34,20,0.0 +25168,11,21,14,0.0 +25168,16,17.45,44,0.0 +25168,15,15.5,35,0.0 +25168,73,15,30,0.0 +25168,67,14,3,0.0 +25168,42,14,2,0.0 +25168,28,45.6,42,0.0 +25168,75,7.75,34,0.0 +25168,9,97,41,0.0 +25168,69,36,37,0.0 +25168,20,81,16,0.0 +25168,13,6,25,0.0 +25168,44,19.45,22,0.0 +25168,56,38,45,0.0 +25168,58,13.25,46,0.0 +25168,4,22,10,0.0 +25168,2,19,30,0.0 +25168,37,26,6,0.0 +25168,24,4.5,21,0.0 +25168,63,43.9,13,0.0 +25168,51,53,15,0.0 +25168,52,7,10,0.0 +25168,74,10,34,0.0 +25168,3,10,9,0.0 +25168,14,23.25,1,0.0 +25168,61,28.5,6,0.0 +25168,66,17,34,0.0 +25168,41,9.65,45,0.0 +25168,57,19.5,1,0.0 +25168,55,24,26,0.0 +25168,18,62.5,23,0.0 +25168,1,18,3,0.0 +25168,22,21,34,0.0 +25168,5,21.35,41,0.0 +25169,70,15,20,0.0 +25169,5,21.35,3,0.0 +25169,33,2.5,21,0.0 +25169,36,19,31,0.0 +25169,48,12.75,38,0.0 +25169,53,32.8,35,0.0 +25169,57,19.5,47,0.0 +25169,50,16.25,16,0.0 +25169,74,10,31,0.0 +25169,45,9.5,37,0.0 +25169,7,30,21,0.0 +25169,3,10,35,0.0 +25169,12,38,15,0.0 +25169,65,21.05,27,0.0 +25169,71,21.5,34,0.0 +25169,35,18,28,0.0 +25169,18,62.5,13,0.0 +25169,21,10,47,0.0 +25169,75,7.75,8,0.0 +25169,16,17.45,45,0.0 +25169,39,18,42,0.0 +25169,64,33.25,46,0.0 +25169,54,7.45,35,0.0 +25169,47,9.5,29,0.0 +25169,43,46,49,0.0 +25169,38,263.5,3,0.0 +25169,77,13,6,0.0 +25169,66,17,2,0.0 +25169,26,31.23,14,0.0 +25169,11,21,17,0.0 +25169,52,7,37,0.0 +25169,19,9.2,7,0.0 +25169,56,38,34,0.0 +25169,30,25.89,18,0.0 +25169,51,53,13,0.0 +25169,76,18,13,0.0 +25169,40,18.4,47,0.0 +25169,10,31,35,0.0 +25169,34,14,10,0.0 +25169,31,12.5,19,0.0 +25169,17,39,3,0.0 +25169,55,24,36,0.0 +25169,1,18,1,0.0 +25169,29,123.79,19,0.0 +25169,67,14,17,0.0 +25169,32,32,42,0.0 +25169,2,19,13,0.0 +25169,9,97,21,0.0 +25169,69,36,48,0.0 +25170,45,9.5,23,0.0 +25170,40,18.4,48,0.0 +25170,24,4.5,24,0.0 +25170,22,21,10,0.0 +25170,3,10,23,0.0 +25170,1,18,48,0.0 +25170,11,21,29,0.0 +25170,31,12.5,15,0.0 +25170,2,19,34,0.0 +25170,28,45.6,37,0.0 +25170,20,81,30,0.0 +25170,12,38,36,0.0 +25170,33,2.5,30,0.0 +25170,26,31.23,25,0.0 +25170,43,46,32,0.0 +25170,58,13.25,29,0.0 +25170,19,9.2,40,0.0 +25170,48,12.75,3,0.0 +25170,35,18,47,0.0 +25170,7,30,39,0.0 +25170,30,25.89,28,0.0 +25170,77,13,8,0.0 +25170,37,26,3,0.0 +25170,54,7.45,46,0.0 +25170,49,20,43,0.0 +25170,38,263.5,37,0.0 +25170,15,15.5,44,0.0 +25170,53,32.8,2,0.0 +25170,64,33.25,36,0.0 +25170,75,7.75,28,0.0 +25170,63,43.9,37,0.0 +25170,70,15,46,0.0 +25170,55,24,35,0.0 +25170,69,36,2,0.0 +25170,62,49.3,33,0.0 +25170,23,9,44,0.0 +25170,32,32,38,0.0 +25170,44,19.45,28,0.0 +25170,14,23.25,10,0.0 +25170,18,62.5,37,0.0 +25170,50,16.25,23,0.0 +25170,4,22,41,0.0 +25170,47,9.5,38,0.0 +25170,57,19.5,43,0.0 +25170,6,25,18,0.0 +25170,39,18,23,0.0 +25170,73,15,46,0.0 +25170,60,34,7,0.0 +25170,25,14,47,0.0 +25170,41,9.65,21,0.0 +25170,51,53,41,0.0 +25170,16,17.45,16,0.0 +25170,10,31,25,0.0 +25170,66,17,44,0.0 +25170,17,39,2,0.0 +25170,76,18,3,0.0 +25170,13,6,21,0.0 +25170,46,12,12,0.0 +25170,72,34.8,37,0.0 +25170,29,123.79,50,0.0 +25170,59,55,5,0.0 +25170,36,19,26,0.0 +25170,42,14,48,0.0 +25170,52,7,49,0.0 +25171,26,31.23,10,0.0 +25171,47,9.5,16,0.0 +25171,17,39,3,0.0 +25171,61,28.5,21,0.0 +25171,69,36,35,0.0 +25171,75,7.75,4,0.0 +25171,36,19,32,0.0 +25171,43,46,14,0.0 +25171,16,17.45,29,0.0 +25171,25,14,33,0.0 +25171,20,81,1,0.0 +25171,21,10,32,0.0 +25171,38,263.5,16,0.0 +25171,22,21,48,0.0 +25172,62,49.3,41,0.0 +25172,74,10,1,0.0 +25172,22,21,8,0.0 +25172,17,39,25,0.0 +25173,23,9,42,0.0 +25173,56,38,11,0.0 +25173,65,21.05,18,0.0 +25173,24,4.5,3,0.0 +25173,30,25.89,15,0.0 +25173,45,9.5,10,0.0 +25173,25,14,44,0.0 +25173,28,45.6,39,0.0 +25173,67,14,49,0.0 +25173,21,10,22,0.0 +25173,10,31,17,0.0 +25173,43,46,18,0.0 +25173,63,43.9,14,0.0 +25173,20,81,1,0.0 +25173,70,15,19,0.0 +25173,8,40,5,0.0 +25173,55,24,15,0.0 +25173,36,19,35,0.0 +25173,49,20,25,0.0 +25173,66,17,44,0.0 +25173,38,263.5,44,0.0 +25173,3,10,12,0.0 +25173,42,14,48,0.0 +25173,19,9.2,22,0.0 +25173,13,6,32,0.0 +25173,40,18.4,3,0.0 +25173,6,25,23,0.0 +25173,27,43.9,20,0.0 +25173,69,36,4,0.0 +25173,51,53,21,0.0 +25173,15,15.5,50,0.0 +25173,64,33.25,50,0.0 +25173,54,7.45,15,0.0 +25173,17,39,31,0.0 +25173,46,12,40,0.0 +25173,34,14,8,0.0 +25173,74,10,33,0.0 +25173,68,12.5,2,0.0 +25173,59,55,47,0.0 +25173,7,30,22,0.0 +25173,58,13.25,23,0.0 +25173,35,18,22,0.0 +25173,1,18,17,0.0 +25173,29,123.79,44,0.0 +25173,52,7,19,0.0 +25173,75,7.75,41,0.0 +25173,71,21.5,32,0.0 +25173,50,16.25,16,0.0 +25173,76,18,37,0.0 +25173,22,21,21,0.0 +25173,72,34.8,26,0.0 +25173,73,15,6,0.0 +25173,33,2.5,2,0.0 +25173,26,31.23,33,0.0 +25173,44,19.45,43,0.0 +25173,62,49.3,25,0.0 +25173,57,19.5,10,0.0 +25173,14,23.25,26,0.0 +25173,2,19,8,0.0 +25173,18,62.5,48,0.0 +25173,60,34,20,0.0 +25173,53,32.8,42,0.0 +25174,77,13,35,0.0 +25174,74,10,49,0.0 +25174,41,9.65,38,0.0 +25174,37,26,12,0.0 +25174,40,18.4,7,0.0 +25174,67,14,50,0.0 +25174,42,14,49,0.0 +25174,73,15,5,0.0 +25174,44,19.45,37,0.0 +25174,39,18,39,0.0 +25174,51,53,30,0.0 +25174,47,9.5,42,0.0 +25174,18,62.5,50,0.0 +25174,64,33.25,15,0.0 +25174,32,32,34,0.0 +25174,52,7,26,0.0 +25174,38,263.5,48,0.0 +25174,75,7.75,37,0.0 +25174,46,12,49,0.0 +25174,63,43.9,22,0.0 +25174,21,10,17,0.0 +25174,58,13.25,39,0.0 +25174,13,6,24,0.0 +25174,5,21.35,1,0.0 +25174,49,20,42,0.0 +25174,6,25,17,0.0 +25174,31,12.5,19,0.0 +25174,68,12.5,21,0.0 +25174,9,97,26,0.0 +25174,1,18,14,0.0 +25174,56,38,12,0.0 +25174,2,19,47,0.0 +25174,10,31,22,0.0 +25174,26,31.23,47,0.0 +25174,15,15.5,44,0.0 +25174,76,18,35,0.0 +25174,53,32.8,11,0.0 +25174,65,21.05,33,0.0 +25174,20,81,27,0.0 +25174,30,25.89,44,0.0 +25174,57,19.5,4,0.0 +25174,35,18,39,0.0 +25174,16,17.45,8,0.0 +25174,14,23.25,3,0.0 +25174,60,34,31,0.0 +25174,23,9,16,0.0 +25174,48,12.75,21,0.0 +25174,71,21.5,45,0.0 +25174,19,9.2,10,0.0 +25174,4,22,3,0.0 +25174,36,19,50,0.0 +25174,43,46,33,0.0 +25174,61,28.5,38,0.0 +25174,3,10,9,0.0 +25174,33,2.5,16,0.0 +25175,26,31.23,28,0.0 +25175,62,49.3,42,0.0 +25175,54,7.45,9,0.0 +25175,76,18,1,0.0 +25175,22,21,28,0.0 +25175,60,34,19,0.0 +25175,68,12.5,49,0.0 +25175,64,33.25,30,0.0 +25175,8,40,3,0.0 +25175,66,17,38,0.0 +25175,24,4.5,45,0.0 +25175,69,36,19,0.0 +25175,12,38,41,0.0 +25175,36,19,36,0.0 +25175,15,15.5,20,0.0 +25175,7,30,31,0.0 +25175,19,9.2,45,0.0 +25175,10,31,50,0.0 +25175,14,23.25,38,0.0 +25175,20,81,39,0.0 +25175,59,55,24,0.0 +25176,42,14,6,0.0 +25176,63,43.9,25,0.0 +25176,62,49.3,22,0.0 +25176,17,39,39,0.0 +25176,38,263.5,43,0.0 +25176,52,7,8,0.0 +25176,49,20,27,0.0 +25176,2,19,30,0.0 +25176,11,21,22,0.0 +25176,46,12,38,0.0 +25176,4,22,33,0.0 +25176,56,38,47,0.0 +25176,14,23.25,50,0.0 +25176,7,30,14,0.0 +25176,37,26,19,0.0 +25176,74,10,38,0.0 +25176,59,55,17,0.0 +25176,51,53,23,0.0 +25176,47,9.5,2,0.0 +25176,39,18,2,0.0 +25176,5,21.35,20,0.0 +25176,20,81,32,0.0 +25176,18,62.5,27,0.0 +25176,6,25,24,0.0 +25176,3,10,26,0.0 +25176,16,17.45,48,0.0 +25176,45,9.5,23,0.0 +25176,58,13.25,20,0.0 +25176,29,123.79,18,0.0 +25176,36,19,31,0.0 +25176,44,19.45,17,0.0 +25176,35,18,20,0.0 +25176,64,33.25,34,0.0 +25176,67,14,31,0.0 +25176,72,34.8,43,0.0 +25176,40,18.4,32,0.0 +25176,28,45.6,18,0.0 +25176,61,28.5,31,0.0 +25176,1,18,47,0.0 +25176,22,21,16,0.0 +25176,30,25.89,33,0.0 +25176,43,46,6,0.0 +25176,50,16.25,37,0.0 +25176,65,21.05,30,0.0 +25176,27,43.9,34,0.0 +25176,71,21.5,3,0.0 +25176,57,19.5,49,0.0 +25176,8,40,26,0.0 +25176,54,7.45,32,0.0 +25176,23,9,10,0.0 +25176,25,14,14,0.0 +25176,24,4.5,6,0.0 +25176,48,12.75,41,0.0 +25176,21,10,31,0.0 +25176,66,17,50,0.0 +25176,77,13,13,0.0 +25176,60,34,38,0.0 +25176,34,14,41,0.0 +25176,12,38,29,0.0 +25176,69,36,5,0.0 +25176,73,15,21,0.0 +25176,75,7.75,27,0.0 +25176,55,24,21,0.0 +25176,32,32,20,0.0 +25176,15,15.5,13,0.0 +25176,53,32.8,43,0.0 +25176,41,9.65,42,0.0 +25176,68,12.5,38,0.0 +25176,70,15,15,0.0 +25176,10,31,7,0.0 +25176,31,12.5,30,0.0 +25177,11,21,21,0.0 +25177,40,18.4,14,0.0 +25177,35,18,31,0.0 +25177,57,19.5,1,0.0 +25177,31,12.5,46,0.0 +25177,23,9,23,0.0 +25177,41,9.65,11,0.0 +25178,40,18.4,33,0.0 +25178,9,97,32,0.0 +25178,36,19,44,0.0 +25178,60,34,38,0.0 +25178,18,62.5,20,0.0 +25178,49,20,30,0.0 +25178,25,14,10,0.0 +25178,69,36,41,0.0 +25178,21,10,37,0.0 +25178,50,16.25,45,0.0 +25178,44,19.45,11,0.0 +25178,30,25.89,23,0.0 +25178,12,38,42,0.0 +25178,63,43.9,36,0.0 +25178,61,28.5,19,0.0 +25178,27,43.9,9,0.0 +25178,67,14,1,0.0 +25178,57,19.5,18,0.0 +25178,3,10,50,0.0 +25178,45,9.5,49,0.0 +25178,59,55,45,0.0 +25178,37,26,43,0.0 +25178,42,14,2,0.0 +25178,20,81,27,0.0 +25178,72,34.8,38,0.0 +25178,43,46,45,0.0 +25178,70,15,50,0.0 +25178,19,9.2,5,0.0 +25178,35,18,32,0.0 +25178,6,25,22,0.0 +25178,64,33.25,20,0.0 +25178,55,24,37,0.0 +25178,76,18,15,0.0 +25178,56,38,42,0.0 +25178,26,31.23,42,0.0 +25178,46,12,23,0.0 +25178,1,18,11,0.0 +25178,33,2.5,11,0.0 +25178,14,23.25,31,0.0 +25178,54,7.45,6,0.0 +25178,31,12.5,47,0.0 +25178,65,21.05,23,0.0 +25179,38,263.5,14,0.0 +25179,69,36,6,0.0 +25179,62,49.3,49,0.0 +25179,2,19,46,0.0 +25179,50,16.25,25,0.0 +25179,71,21.5,20,0.0 +25179,31,12.5,1,0.0 +25179,10,31,2,0.0 +25179,41,9.65,9,0.0 +25179,43,46,22,0.0 +25179,33,2.5,40,0.0 +25179,26,31.23,45,0.0 +25179,64,33.25,7,0.0 +25179,57,19.5,10,0.0 +25179,75,7.75,43,0.0 +25179,53,32.8,6,0.0 +25179,67,14,47,0.0 +25179,39,18,2,0.0 +25179,70,15,29,0.0 +25179,15,15.5,27,0.0 +25179,1,18,39,0.0 +25179,34,14,35,0.0 +25179,32,32,46,0.0 +25179,4,22,39,0.0 +25179,61,28.5,35,0.0 +25179,65,21.05,31,0.0 +25179,5,21.35,2,0.0 +25179,46,12,16,0.0 +25179,56,38,20,0.0 +25180,5,21.35,48,0.0 +25180,61,28.5,41,0.0 +25180,7,30,34,0.0 +25180,25,14,33,0.0 +25180,45,9.5,5,0.0 +25180,56,38,1,0.0 +25180,52,7,14,0.0 +25180,17,39,39,0.0 +25180,27,43.9,41,0.0 +25180,49,20,17,0.0 +25180,18,62.5,33,0.0 +25180,40,18.4,20,0.0 +25180,21,10,47,0.0 +25180,26,31.23,8,0.0 +25180,4,22,40,0.0 +25180,71,21.5,43,0.0 +25180,24,4.5,44,0.0 +25180,68,12.5,29,0.0 +25180,44,19.45,35,0.0 +25180,23,9,28,0.0 +25180,41,9.65,18,0.0 +25180,75,7.75,7,0.0 +25180,12,38,39,0.0 +25180,35,18,15,0.0 +25180,33,2.5,4,0.0 +25180,54,7.45,7,0.0 +25180,77,13,34,0.0 +25180,51,53,8,0.0 +25180,55,24,47,0.0 +25180,37,26,50,0.0 +25180,11,21,23,0.0 +25180,30,25.89,22,0.0 +25180,29,123.79,30,0.0 +25180,8,40,26,0.0 +25180,32,32,31,0.0 +25180,58,13.25,43,0.0 +25180,48,12.75,50,0.0 +25180,16,17.45,9,0.0 +25180,20,81,36,0.0 +25180,64,33.25,49,0.0 +25180,60,34,25,0.0 +25180,31,12.5,38,0.0 +25180,3,10,15,0.0 +25180,69,36,17,0.0 +25180,1,18,50,0.0 +25180,65,21.05,42,0.0 +25180,38,263.5,25,0.0 +25180,19,9.2,50,0.0 +25180,53,32.8,26,0.0 +25180,36,19,2,0.0 +25180,14,23.25,3,0.0 +25180,72,34.8,13,0.0 +25180,74,10,4,0.0 +25180,22,21,22,0.0 +25180,63,43.9,9,0.0 +25180,62,49.3,42,0.0 +25180,6,25,31,0.0 +25180,66,17,39,0.0 +25180,43,46,46,0.0 +25180,28,45.6,27,0.0 +25181,49,20,27,0.0 +25181,17,39,48,0.0 +25181,33,2.5,30,0.0 +25181,13,6,23,0.0 +25181,27,43.9,22,0.0 +25181,14,23.25,20,0.0 +25181,58,13.25,21,0.0 +25181,29,123.79,16,0.0 +25181,65,21.05,46,0.0 +25181,20,81,46,0.0 +25181,63,43.9,35,0.0 +25181,18,62.5,40,0.0 +25181,44,19.45,31,0.0 +25181,59,55,20,0.0 +25181,51,53,12,0.0 +25181,61,28.5,7,0.0 +25181,26,31.23,17,0.0 +25181,11,21,2,0.0 +25181,47,9.5,31,0.0 +25181,53,32.8,7,0.0 +25181,9,97,4,0.0 +25181,55,24,7,0.0 +25181,42,14,12,0.0 +25181,69,36,28,0.0 +25181,12,38,3,0.0 +25181,39,18,16,0.0 +25181,34,14,24,0.0 +25181,31,12.5,4,0.0 +25181,2,19,30,0.0 +25181,52,7,32,0.0 +25181,70,15,46,0.0 +25181,28,45.6,26,0.0 +25181,67,14,18,0.0 +25181,64,33.25,31,0.0 +25181,7,30,35,0.0 +25181,46,12,4,0.0 +25181,73,15,31,0.0 +25181,71,21.5,42,0.0 +25181,76,18,21,0.0 +25181,21,10,21,0.0 +25181,48,12.75,41,0.0 +25181,23,9,24,0.0 +25181,22,21,47,0.0 +25181,32,32,47,0.0 +25181,15,15.5,22,0.0 +25181,50,16.25,23,0.0 +25181,77,13,20,0.0 +25181,3,10,21,0.0 +25182,45,9.5,7,0.0 +25182,2,19,29,0.0 +25182,19,9.2,35,0.0 +25182,52,7,28,0.0 +25182,10,31,23,0.0 +25182,73,15,7,0.0 +25182,46,12,25,0.0 +25182,58,13.25,26,0.0 +25182,34,14,3,0.0 +25182,12,38,3,0.0 +25182,68,12.5,41,0.0 +25182,56,38,2,0.0 +25182,42,14,26,0.0 +25182,4,22,6,0.0 +25182,17,39,30,0.0 +25182,41,9.65,21,0.0 +25182,62,49.3,34,0.0 +25182,50,16.25,34,0.0 +25182,21,10,9,0.0 +25182,27,43.9,9,0.0 +25182,32,32,29,0.0 +25182,23,9,20,0.0 +25182,9,97,27,0.0 +25182,72,34.8,13,0.0 +25182,31,12.5,15,0.0 +25182,53,32.8,11,0.0 +25182,22,21,19,0.0 +25182,1,18,2,0.0 +25182,29,123.79,28,0.0 +25182,69,36,15,0.0 +25182,38,263.5,33,0.0 +25182,61,28.5,4,0.0 +25182,8,40,30,0.0 +25182,60,34,39,0.0 +25182,14,23.25,16,0.0 +25182,70,15,44,0.0 +25182,43,46,41,0.0 +25182,3,10,27,0.0 +25182,37,26,19,0.0 +25182,66,17,49,0.0 +25182,26,31.23,4,0.0 +25182,48,12.75,22,0.0 +25182,74,10,12,0.0 +25182,7,30,43,0.0 +25182,47,9.5,33,0.0 +25182,44,19.45,41,0.0 +25182,30,25.89,42,0.0 +25182,11,21,2,0.0 +25182,51,53,2,0.0 +25182,75,7.75,15,0.0 +25182,54,7.45,24,0.0 +25182,20,81,14,0.0 +25182,24,4.5,42,0.0 +25182,55,24,42,0.0 +25182,33,2.5,21,0.0 +25182,49,20,23,0.0 +25182,16,17.45,43,0.0 +25182,64,33.25,48,0.0 +25182,67,14,43,0.0 +25182,36,19,49,0.0 +25182,28,45.6,22,0.0 +25182,35,18,35,0.0 +25182,13,6,35,0.0 +25182,59,55,36,0.0 +25182,18,62.5,12,0.0 +25182,6,25,45,0.0 +25182,39,18,25,0.0 +25182,63,43.9,4,0.0 +25182,76,18,49,0.0 +25182,57,19.5,9,0.0 +25182,15,15.5,31,0.0 +25182,25,14,12,0.0 +25182,65,21.05,41,0.0 +25183,74,10,50,0.0 +25183,25,14,49,0.0 +25183,24,4.5,45,0.0 +25183,67,14,45,0.0 +25183,34,14,10,0.0 +25183,61,28.5,37,0.0 +25183,23,9,14,0.0 +25183,49,20,16,0.0 +25183,6,25,1,0.0 +25183,45,9.5,27,0.0 +25183,27,43.9,21,0.0 +25183,62,49.3,1,0.0 +25183,47,9.5,22,0.0 +25183,12,38,46,0.0 +25183,71,21.5,30,0.0 +25183,26,31.23,49,0.0 +25183,29,123.79,31,0.0 +25183,44,19.45,47,0.0 +25183,77,13,27,0.0 +25183,31,12.5,17,0.0 +25183,8,40,25,0.0 +25183,55,24,4,0.0 +25183,46,12,27,0.0 +25183,13,6,49,0.0 +25183,39,18,17,0.0 +25183,2,19,45,0.0 +25183,50,16.25,30,0.0 +25183,69,36,23,0.0 +25183,41,9.65,30,0.0 +25183,76,18,9,0.0 +25183,42,14,33,0.0 +25183,68,12.5,4,0.0 +25183,3,10,18,0.0 +25183,70,15,42,0.0 +25183,72,34.8,15,0.0 +25183,58,13.25,33,0.0 +25183,7,30,2,0.0 +25183,28,45.6,37,0.0 +25183,18,62.5,44,0.0 +25183,60,34,37,0.0 +25183,9,97,15,0.0 +25183,15,15.5,32,0.0 +25183,16,17.45,19,0.0 +25183,11,21,30,0.0 +25183,33,2.5,6,0.0 +25183,57,19.5,43,0.0 +25183,21,10,35,0.0 +25183,59,55,38,0.0 +25183,64,33.25,25,0.0 +25183,53,32.8,45,0.0 +25183,19,9.2,47,0.0 +25183,36,19,22,0.0 +25183,20,81,5,0.0 +25183,73,15,13,0.0 +25183,10,31,43,0.0 +25183,38,263.5,5,0.0 +25183,56,38,7,0.0 +25183,17,39,35,0.0 +25183,35,18,6,0.0 +25183,52,7,35,0.0 +25183,22,21,13,0.0 +25183,43,46,6,0.0 +25183,63,43.9,46,0.0 +25183,4,22,32,0.0 +25184,7,30,21,0.0 +25184,57,19.5,30,0.0 +25184,54,7.45,32,0.0 +25184,3,10,13,0.0 +25184,19,9.2,19,0.0 +25184,66,17,22,0.0 +25184,22,21,42,0.0 +25184,72,34.8,29,0.0 +25185,45,9.5,41,0.0 +25185,47,9.5,28,0.0 +25185,52,7,43,0.0 +25185,76,18,44,0.0 +25185,43,46,49,0.0 +25185,60,34,29,0.0 +25185,10,31,35,0.0 +25185,36,19,46,0.0 +25185,11,21,49,0.0 +25185,49,20,46,0.0 +25185,22,21,29,0.0 +25185,8,40,42,0.0 +25185,19,9.2,18,0.0 +25185,74,10,10,0.0 +25185,34,14,33,0.0 +25185,58,13.25,3,0.0 +25185,73,15,14,0.0 +25185,75,7.75,20,0.0 +25185,9,97,39,0.0 +25185,6,25,29,0.0 +25185,42,14,8,0.0 +25185,40,18.4,2,0.0 +25185,66,17,49,0.0 +25185,14,23.25,24,0.0 +25185,71,21.5,23,0.0 +25185,59,55,47,0.0 +25185,28,45.6,9,0.0 +25185,30,25.89,12,0.0 +25185,31,12.5,46,0.0 +25185,7,30,24,0.0 +25185,44,19.45,4,0.0 +25185,63,43.9,39,0.0 +25185,61,28.5,34,0.0 +25185,72,34.8,21,0.0 +25185,26,31.23,47,0.0 +25185,51,53,33,0.0 +25185,37,26,25,0.0 +25185,21,10,30,0.0 +25185,57,19.5,50,0.0 +25185,27,43.9,34,0.0 +25185,55,24,17,0.0 +25185,16,17.45,35,0.0 +25185,46,12,45,0.0 +25185,69,36,18,0.0 +25185,1,18,45,0.0 +25185,54,7.45,50,0.0 +25185,12,38,9,0.0 +25185,25,14,13,0.0 +25185,68,12.5,15,0.0 +25185,77,13,3,0.0 +25185,15,15.5,1,0.0 +25185,33,2.5,28,0.0 +25185,39,18,29,0.0 +25185,2,19,37,0.0 +25185,53,32.8,39,0.0 +25185,18,62.5,45,0.0 +25185,23,9,27,0.0 +25185,64,33.25,28,0.0 +25185,48,12.75,45,0.0 +25185,50,16.25,44,0.0 +25185,67,14,44,0.0 +25186,57,19.5,30,0.0 +25186,50,16.25,37,0.0 +25186,22,21,10,0.0 +25186,67,14,37,0.0 +25186,5,21.35,18,0.0 +25186,42,14,1,0.0 +25186,37,26,34,0.0 +25186,65,21.05,2,0.0 +25186,68,12.5,24,0.0 +25186,31,12.5,17,0.0 +25186,18,62.5,49,0.0 +25186,75,7.75,30,0.0 +25186,62,49.3,5,0.0 +25186,64,33.25,35,0.0 +25186,1,18,11,0.0 +25186,71,21.5,32,0.0 +25186,46,12,49,0.0 +25186,60,34,43,0.0 +25186,7,30,17,0.0 +25186,44,19.45,8,0.0 +25186,38,263.5,35,0.0 +25186,63,43.9,29,0.0 +25186,21,10,28,0.0 +25186,4,22,12,0.0 +25186,43,46,44,0.0 +25186,59,55,29,0.0 +25186,34,14,49,0.0 +25186,14,23.25,38,0.0 +25186,3,10,48,0.0 +25186,8,40,45,0.0 +25186,28,45.6,22,0.0 +25186,49,20,11,0.0 +25186,48,12.75,4,0.0 +25186,52,7,9,0.0 +25186,2,19,19,0.0 +25186,47,9.5,9,0.0 +25186,12,38,8,0.0 +25186,24,4.5,13,0.0 +25186,15,15.5,39,0.0 +25186,26,31.23,1,0.0 +25186,11,21,13,0.0 +25186,72,34.8,33,0.0 +25186,77,13,5,0.0 +25186,56,38,21,0.0 +25186,36,19,26,0.0 +25186,41,9.65,27,0.0 +25186,10,31,26,0.0 +25186,45,9.5,50,0.0 +25186,16,17.45,24,0.0 +25186,53,32.8,29,0.0 +25186,70,15,26,0.0 +25186,55,24,35,0.0 +25186,13,6,18,0.0 +25186,54,7.45,7,0.0 +25186,69,36,12,0.0 +25186,33,2.5,44,0.0 +25186,32,32,49,0.0 +25186,61,28.5,34,0.0 +25186,25,14,28,0.0 +25186,66,17,13,0.0 +25186,6,25,29,0.0 +25186,27,43.9,15,0.0 +25186,20,81,32,0.0 +25186,39,18,15,0.0 +25187,8,40,33,0.0 +25187,36,19,46,0.0 +25187,42,14,26,0.0 +25187,52,7,16,0.0 +25187,9,97,26,0.0 +25187,68,12.5,33,0.0 +25187,59,55,12,0.0 +25187,64,33.25,40,0.0 +25187,16,17.45,15,0.0 +25187,17,39,11,0.0 +25187,62,49.3,25,0.0 +25187,45,9.5,16,0.0 +25187,34,14,35,0.0 +25187,77,13,39,0.0 +25187,25,14,18,0.0 +25187,20,81,46,0.0 +25187,41,9.65,16,0.0 +25187,75,7.75,41,0.0 +25187,53,32.8,40,0.0 +25187,33,2.5,17,0.0 +25187,3,10,8,0.0 +25187,54,7.45,22,0.0 +25187,69,36,9,0.0 +25187,22,21,41,0.0 +25187,35,18,26,0.0 +25187,14,23.25,12,0.0 +25187,66,17,1,0.0 +25187,23,9,31,0.0 +25187,1,18,22,0.0 +25187,15,15.5,29,0.0 +25187,24,4.5,41,0.0 +25187,19,9.2,14,0.0 +25187,57,19.5,12,0.0 +25187,43,46,18,0.0 +25187,39,18,25,0.0 +25187,5,21.35,14,0.0 +25187,37,26,29,0.0 +25187,27,43.9,29,0.0 +25187,18,62.5,19,0.0 +25187,50,16.25,28,0.0 +25187,7,30,45,0.0 +25187,65,21.05,24,0.0 +25187,58,13.25,28,0.0 +25187,28,45.6,33,0.0 +25187,49,20,49,0.0 +25187,60,34,38,0.0 +25187,74,10,25,0.0 +25187,38,263.5,12,0.0 +25187,48,12.75,45,0.0 +25187,2,19,35,0.0 +25187,47,9.5,12,0.0 +25187,46,12,45,0.0 +25187,13,6,29,0.0 +25187,73,15,21,0.0 +25187,67,14,2,0.0 +25187,6,25,19,0.0 +25187,12,38,44,0.0 +25187,11,21,30,0.0 +25187,30,25.89,27,0.0 +25187,55,24,26,0.0 +25187,29,123.79,29,0.0 +25187,40,18.4,21,0.0 +25187,61,28.5,9,0.0 +25187,32,32,38,0.0 +25187,31,12.5,44,0.0 +25187,51,53,22,0.0 +25187,76,18,5,0.0 +25187,21,10,37,0.0 +25187,4,22,2,0.0 +25187,71,21.5,17,0.0 +25188,10,31,36,0.0 +25188,15,15.5,18,0.0 +25188,39,18,48,0.0 +25188,8,40,30,0.0 +25188,11,21,24,0.0 +25188,4,22,15,0.0 +25188,41,9.65,9,0.0 +25188,16,17.45,49,0.0 +25188,31,12.5,50,0.0 +25188,21,10,49,0.0 +25188,34,14,1,0.0 +25188,40,18.4,14,0.0 +25188,64,33.25,20,0.0 +25188,14,23.25,3,0.0 +25188,46,12,30,0.0 +25188,44,19.45,12,0.0 +25188,23,9,34,0.0 +25188,29,123.79,38,0.0 +25188,9,97,43,0.0 +25188,25,14,47,0.0 +25188,17,39,21,0.0 +25188,57,19.5,5,0.0 +25188,73,15,50,0.0 +25188,38,263.5,13,0.0 +25188,33,2.5,30,0.0 +25188,22,21,31,0.0 +25188,19,9.2,15,0.0 +25188,74,10,48,0.0 +25188,47,9.5,15,0.0 +25188,35,18,47,0.0 +25188,53,32.8,29,0.0 +25188,2,19,37,0.0 +25188,50,16.25,37,0.0 +25188,37,26,35,0.0 +25188,76,18,4,0.0 +25188,24,4.5,43,0.0 +25188,28,45.6,9,0.0 +25188,45,9.5,27,0.0 +25188,7,30,46,0.0 +25188,54,7.45,24,0.0 +25188,60,34,18,0.0 +25188,42,14,7,0.0 +25188,77,13,31,0.0 +25189,71,21.5,39,0.0 +25189,65,21.05,47,0.0 +25189,58,13.25,34,0.0 +25189,46,12,4,0.0 +25189,1,18,40,0.0 +25189,7,30,29,0.0 +25189,31,12.5,14,0.0 +25189,20,81,5,0.0 +25189,61,28.5,5,0.0 +25189,30,25.89,19,0.0 +25189,8,40,40,0.0 +25189,18,62.5,24,0.0 +25189,73,15,49,0.0 +25189,2,19,2,0.0 +25189,14,23.25,25,0.0 +25189,74,10,14,0.0 +25189,9,97,25,0.0 +25189,68,12.5,44,0.0 +25189,19,9.2,7,0.0 +25189,36,19,9,0.0 +25189,40,18.4,41,0.0 +25189,64,33.25,6,0.0 +25189,26,31.23,38,0.0 +25189,54,7.45,36,0.0 +25189,41,9.65,23,0.0 +25189,6,25,40,0.0 +25189,75,7.75,49,0.0 +25189,13,6,6,0.0 +25189,34,14,13,0.0 +25189,62,49.3,40,0.0 +25189,69,36,47,0.0 +25189,51,53,14,0.0 +25189,66,17,15,0.0 +25189,60,34,33,0.0 +25189,5,21.35,49,0.0 +25189,37,26,31,0.0 +25189,11,21,41,0.0 +25189,23,9,4,0.0 +25190,58,13.25,48,0.0 +25190,36,19,15,0.0 +25190,50,16.25,29,0.0 +25190,56,38,14,0.0 +25190,2,19,7,0.0 +25190,33,2.5,34,0.0 +25190,34,14,41,0.0 +25190,72,34.8,10,0.0 +25190,17,39,41,0.0 +25190,45,9.5,24,0.0 +25190,77,13,20,0.0 +25190,7,30,18,0.0 +25190,20,81,22,0.0 +25190,61,28.5,50,0.0 +25190,5,21.35,32,0.0 +25190,9,97,23,0.0 +25190,11,21,41,0.0 +25190,76,18,35,0.0 +25190,43,46,17,0.0 +25190,1,18,35,0.0 +25190,64,33.25,47,0.0 +25190,55,24,3,0.0 +25190,25,14,27,0.0 +25190,51,53,20,0.0 +25190,19,9.2,34,0.0 +25190,21,10,45,0.0 +25190,28,45.6,18,0.0 +25190,53,32.8,49,0.0 +25190,18,62.5,19,0.0 +25191,35,18,49,0.0 +25191,65,21.05,42,0.0 +25191,61,28.5,17,0.0 +25191,74,10,22,0.0 +25191,67,14,46,0.0 +25191,41,9.65,46,0.0 +25191,53,32.8,31,0.0 +25191,70,15,14,0.0 +25191,27,43.9,39,0.0 +25191,6,25,41,0.0 +25191,20,81,23,0.0 +25191,44,19.45,26,0.0 +25191,51,53,2,0.0 +25191,40,18.4,31,0.0 +25191,69,36,18,0.0 +25191,56,38,2,0.0 +25191,39,18,24,0.0 +25191,50,16.25,23,0.0 +25191,9,97,19,0.0 +25191,59,55,6,0.0 +25191,55,24,47,0.0 +25191,66,17,30,0.0 +25191,1,18,32,0.0 +25191,49,20,4,0.0 +25191,24,4.5,32,0.0 +25191,32,32,20,0.0 +25191,77,13,37,0.0 +25191,26,31.23,1,0.0 +25191,21,10,13,0.0 +25191,11,21,46,0.0 +25191,3,10,18,0.0 +25191,29,123.79,43,0.0 +25191,58,13.25,21,0.0 +25191,16,17.45,41,0.0 +25191,12,38,6,0.0 +25191,5,21.35,20,0.0 +25191,42,14,15,0.0 +25191,22,21,23,0.0 +25191,37,26,49,0.0 +25191,13,6,11,0.0 +25191,64,33.25,46,0.0 +25191,47,9.5,28,0.0 +25191,63,43.9,19,0.0 +25191,46,12,18,0.0 +25191,60,34,36,0.0 +25191,72,34.8,38,0.0 +25191,73,15,27,0.0 +25191,30,25.89,48,0.0 +25191,52,7,26,0.0 +25191,17,39,32,0.0 +25191,43,46,42,0.0 +25191,57,19.5,4,0.0 +25191,25,14,20,0.0 +25191,7,30,25,0.0 +25191,54,7.45,46,0.0 +25191,75,7.75,46,0.0 +25191,19,9.2,36,0.0 +25191,18,62.5,7,0.0 +25191,10,31,42,0.0 +25191,38,263.5,43,0.0 +25191,34,14,39,0.0 +25191,2,19,39,0.0 +25191,76,18,8,0.0 +25191,45,9.5,42,0.0 +25191,33,2.5,50,0.0 +25191,8,40,46,0.0 +25191,71,21.5,11,0.0 +25191,14,23.25,32,0.0 +25191,15,15.5,28,0.0 +25191,62,49.3,24,0.0 +25191,48,12.75,18,0.0 +25191,23,9,41,0.0 +25191,28,45.6,16,0.0 +25191,31,12.5,41,0.0 +25191,36,19,17,0.0 +25191,4,22,6,0.0 +25192,14,23.25,10,0.0 +25192,77,13,31,0.0 +25192,1,18,12,0.0 +25192,20,81,2,0.0 +25192,58,13.25,11,0.0 +25192,12,38,38,0.0 +25192,43,46,15,0.0 +25192,51,53,36,0.0 +25192,33,2.5,49,0.0 +25192,46,12,6,0.0 +25192,26,31.23,38,0.0 +25192,55,24,27,0.0 +25192,16,17.45,18,0.0 +25192,61,28.5,20,0.0 +25192,19,9.2,4,0.0 +25193,29,123.79,33,0.0 +25193,60,34,35,0.0 +25193,7,30,12,0.0 +25193,1,18,33,0.0 +25193,53,32.8,30,0.0 +25193,17,39,22,0.0 +25193,39,18,28,0.0 +25193,3,10,7,0.0 +25193,30,25.89,9,0.0 +25193,33,2.5,9,0.0 +25193,12,38,16,0.0 +25193,63,43.9,7,0.0 +25193,43,46,30,0.0 +25193,21,10,33,0.0 +25193,14,23.25,19,0.0 +25193,49,20,44,0.0 +25193,70,15,45,0.0 +25193,25,14,22,0.0 +25193,59,55,45,0.0 +25193,32,32,23,0.0 +25193,50,16.25,27,0.0 +25193,51,53,35,0.0 +25193,9,97,32,0.0 +25193,8,40,44,0.0 +25193,38,263.5,34,0.0 +25193,74,10,33,0.0 +25193,57,19.5,30,0.0 +25193,28,45.6,31,0.0 +25193,62,49.3,32,0.0 +25193,69,36,23,0.0 +25193,55,24,34,0.0 +25193,52,7,5,0.0 +25193,48,12.75,32,0.0 +25193,56,38,23,0.0 +25193,5,21.35,49,0.0 +25193,24,4.5,8,0.0 +25193,61,28.5,22,0.0 +25193,34,14,33,0.0 +25193,10,31,9,0.0 +25193,27,43.9,50,0.0 +25194,62,49.3,50,0.0 +25194,76,18,50,0.0 +25194,6,25,50,0.0 +25194,60,34,16,0.0 +25194,68,12.5,4,0.0 +25194,56,38,47,0.0 +25194,12,38,7,0.0 +25194,9,97,27,0.0 +25194,64,33.25,34,0.0 +25194,55,24,50,0.0 +25194,52,7,33,0.0 +25194,43,46,30,0.0 +25194,14,23.25,11,0.0 +25194,38,263.5,8,0.0 +25194,45,9.5,28,0.0 +25194,27,43.9,43,0.0 +25194,44,19.45,49,0.0 +25194,65,21.05,26,0.0 +25194,15,15.5,10,0.0 +25194,24,4.5,13,0.0 +25194,69,36,28,0.0 +25194,61,28.5,27,0.0 +25194,23,9,32,0.0 +25194,58,13.25,11,0.0 +25194,39,18,23,0.0 +25194,66,17,43,0.0 +25194,59,55,38,0.0 +25194,2,19,42,0.0 +25194,53,32.8,22,0.0 +25194,75,7.75,15,0.0 +25194,10,31,29,0.0 +25194,31,12.5,33,0.0 +25194,25,14,26,0.0 +25194,72,34.8,15,0.0 +25194,36,19,22,0.0 +25194,29,123.79,49,0.0 +25194,30,25.89,39,0.0 +25194,4,22,10,0.0 +25194,13,6,5,0.0 +25194,42,14,33,0.0 +25194,47,9.5,20,0.0 +25194,54,7.45,34,0.0 +25194,51,53,29,0.0 +25194,73,15,31,0.0 +25195,76,18,33,0.0 +25195,44,19.45,37,0.0 +25195,41,9.65,31,0.0 +25195,11,21,28,0.0 +25195,62,49.3,12,0.0 +25195,53,32.8,48,0.0 +25195,10,31,30,0.0 +25195,50,16.25,21,0.0 +25195,9,97,40,0.0 +25195,60,34,7,0.0 +25195,32,32,41,0.0 +25195,40,18.4,36,0.0 +25195,39,18,2,0.0 +25195,1,18,29,0.0 +25195,15,15.5,41,0.0 +25195,68,12.5,48,0.0 +25195,37,26,7,0.0 +25195,28,45.6,9,0.0 +25195,12,38,23,0.0 +25195,54,7.45,21,0.0 +25195,31,12.5,11,0.0 +25195,6,25,39,0.0 +25195,59,55,1,0.0 +25195,56,38,49,0.0 +25195,35,18,13,0.0 +25195,2,19,16,0.0 +25195,55,24,40,0.0 +25195,38,263.5,7,0.0 +25195,66,17,44,0.0 +25195,34,14,41,0.0 +25195,43,46,26,0.0 +25195,64,33.25,19,0.0 +25195,42,14,31,0.0 +25195,74,10,16,0.0 +25195,67,14,17,0.0 +25195,4,22,32,0.0 +25195,51,53,44,0.0 +25195,70,15,36,0.0 +25195,72,34.8,28,0.0 +25195,25,14,16,0.0 +25195,3,10,10,0.0 +25195,57,19.5,5,0.0 +25195,75,7.75,35,0.0 +25195,26,31.23,29,0.0 +25195,58,13.25,14,0.0 +25195,48,12.75,14,0.0 +25195,71,21.5,22,0.0 +25195,52,7,19,0.0 +25195,14,23.25,47,0.0 +25195,61,28.5,44,0.0 +25195,5,21.35,31,0.0 +25195,33,2.5,27,0.0 +25195,69,36,7,0.0 +25195,20,81,12,0.0 +25195,18,62.5,1,0.0 +25195,27,43.9,49,0.0 +25195,65,21.05,11,0.0 +25195,49,20,35,0.0 +25195,7,30,43,0.0 +25195,23,9,18,0.0 +25195,36,19,1,0.0 +25195,24,4.5,22,0.0 +25195,22,21,44,0.0 +25195,73,15,23,0.0 +25195,30,25.89,5,0.0 +25195,8,40,45,0.0 +25195,45,9.5,35,0.0 +25195,77,13,40,0.0 +25195,17,39,9,0.0 +25195,46,12,49,0.0 +25195,63,43.9,14,0.0 +25196,56,38,18,0.0 +25196,33,2.5,37,0.0 +25196,17,39,22,0.0 +25196,52,7,15,0.0 +25196,30,25.89,45,0.0 +25196,39,18,4,0.0 +25196,25,14,21,0.0 +25196,49,20,33,0.0 +25196,64,33.25,13,0.0 +25196,4,22,37,0.0 +25196,42,14,29,0.0 +25196,32,32,31,0.0 +25196,18,62.5,21,0.0 +25196,55,24,18,0.0 +25196,20,81,42,0.0 +25196,3,10,29,0.0 +25196,1,18,14,0.0 +25196,72,34.8,36,0.0 +25196,65,21.05,24,0.0 +25196,14,23.25,14,0.0 +25196,5,21.35,44,0.0 +25196,43,46,33,0.0 +25196,36,19,11,0.0 +25196,21,10,27,0.0 +25196,45,9.5,15,0.0 +25196,60,34,38,0.0 +25196,38,263.5,47,0.0 +25196,31,12.5,25,0.0 +25196,74,10,43,0.0 +25196,54,7.45,29,0.0 +25196,70,15,38,0.0 +25196,67,14,21,0.0 +25196,12,38,23,0.0 +25196,10,31,14,0.0 +25196,76,18,31,0.0 +25196,50,16.25,4,0.0 +25196,29,123.79,16,0.0 +25196,11,21,28,0.0 +25196,19,9.2,30,0.0 +25196,28,45.6,22,0.0 +25196,26,31.23,32,0.0 +25196,2,19,3,0.0 +25196,66,17,13,0.0 +25196,62,49.3,11,0.0 +25196,46,12,2,0.0 +25196,7,30,41,0.0 +25197,28,45.6,46,0.0 +25197,29,123.79,5,0.0 +25197,50,16.25,28,0.0 +25197,11,21,35,0.0 +25197,8,40,33,0.0 +25197,30,25.89,33,0.0 +25197,7,30,38,0.0 +25197,24,4.5,33,0.0 +25197,43,46,30,0.0 +25197,19,9.2,13,0.0 +25197,9,97,43,0.0 +25197,22,21,15,0.0 +25197,10,31,28,0.0 +25197,27,43.9,40,0.0 +25197,41,9.65,40,0.0 +25197,2,19,43,0.0 +25197,57,19.5,6,0.0 +25197,49,20,27,0.0 +25197,54,7.45,4,0.0 +25197,44,19.45,11,0.0 +25197,60,34,31,0.0 +25197,20,81,19,0.0 +25197,46,12,17,0.0 +25197,40,18.4,16,0.0 +25197,32,32,34,0.0 +25197,67,14,6,0.0 +25197,61,28.5,10,0.0 +25197,37,26,29,0.0 +25197,73,15,9,0.0 +25197,5,21.35,3,0.0 +25197,13,6,48,0.0 +25197,71,21.5,5,0.0 +25197,42,14,27,0.0 +25197,26,31.23,19,0.0 +25197,62,49.3,43,0.0 +25197,74,10,29,0.0 +25197,18,62.5,26,0.0 +25197,53,32.8,36,0.0 +25197,51,53,48,0.0 +25197,25,14,7,0.0 +25197,3,10,25,0.0 +25197,16,17.45,2,0.0 +25197,52,7,35,0.0 +25198,21,10,42,0.0 +25198,54,7.45,49,0.0 +25198,63,43.9,31,0.0 +25198,26,31.23,29,0.0 +25198,37,26,22,0.0 +25198,19,9.2,35,0.0 +25198,36,19,19,0.0 +25198,67,14,31,0.0 +25198,60,34,21,0.0 +25198,38,263.5,28,0.0 +25198,55,24,17,0.0 +25198,44,19.45,42,0.0 +25198,51,53,40,0.0 +25198,29,123.79,44,0.0 +25198,66,17,38,0.0 +25198,25,14,35,0.0 +25198,39,18,42,0.0 +25198,61,28.5,31,0.0 +25198,46,12,39,0.0 +25198,11,21,33,0.0 +25198,47,9.5,12,0.0 +25198,59,55,35,0.0 +25198,12,38,35,0.0 +25198,7,30,46,0.0 +25198,34,14,7,0.0 +25198,13,6,23,0.0 +25198,74,10,39,0.0 +25198,20,81,14,0.0 +25198,77,13,6,0.0 +25198,10,31,6,0.0 +25198,40,18.4,18,0.0 +25198,52,7,44,0.0 +25198,68,12.5,1,0.0 +25198,31,12.5,49,0.0 +25198,65,21.05,16,0.0 +25198,6,25,13,0.0 +25198,58,13.25,15,0.0 +25198,42,14,47,0.0 +25198,9,97,37,0.0 +25198,8,40,49,0.0 +25198,35,18,1,0.0 +25198,5,21.35,33,0.0 +25198,69,36,47,0.0 +25198,28,45.6,49,0.0 +25198,53,32.8,16,0.0 +25198,33,2.5,38,0.0 +25198,16,17.45,41,0.0 +25198,43,46,10,0.0 +25198,56,38,44,0.0 +25198,70,15,8,0.0 +25198,50,16.25,6,0.0 +25198,14,23.25,3,0.0 +25198,75,7.75,11,0.0 +25198,30,25.89,16,0.0 +25198,22,21,50,0.0 +25198,18,62.5,24,0.0 +25198,4,22,29,0.0 +25198,64,33.25,27,0.0 +25199,42,14,8,0.0 +25199,65,21.05,21,0.0 +25199,68,12.5,37,0.0 +25199,9,97,6,0.0 +25199,44,19.45,26,0.0 +25199,19,9.2,42,0.0 +25199,33,2.5,19,0.0 +25199,41,9.65,45,0.0 +25199,67,14,6,0.0 +25199,15,15.5,30,0.0 +25199,27,43.9,12,0.0 +25199,46,12,6,0.0 +25199,73,15,2,0.0 +25199,61,28.5,41,0.0 +25199,20,81,38,0.0 +25199,7,30,47,0.0 +25199,13,6,33,0.0 +25199,64,33.25,15,0.0 +25199,76,18,4,0.0 +25199,75,7.75,12,0.0 +25199,53,32.8,9,0.0 +25199,22,21,20,0.0 +25199,63,43.9,27,0.0 +25199,45,9.5,8,0.0 +25199,18,62.5,27,0.0 +25199,71,21.5,2,0.0 +25199,30,25.89,25,0.0 +25199,1,18,21,0.0 +25199,38,263.5,11,0.0 +25199,60,34,13,0.0 +25199,31,12.5,43,0.0 +25199,2,19,4,0.0 +25199,3,10,41,0.0 +25199,17,39,39,0.0 +25199,59,55,32,0.0 +25199,24,4.5,34,0.0 +25199,12,38,28,0.0 +25199,11,21,20,0.0 +25199,28,45.6,26,0.0 +25199,21,10,43,0.0 +25199,25,14,13,0.0 +25199,74,10,33,0.0 +25199,57,19.5,30,0.0 +25199,35,18,45,0.0 +25199,54,7.45,30,0.0 +25199,70,15,25,0.0 +25199,55,24,24,0.0 +25199,43,46,32,0.0 +25199,40,18.4,37,0.0 +25199,77,13,48,0.0 +25199,29,123.79,2,0.0 +25199,49,20,11,0.0 +25199,56,38,38,0.0 +25199,69,36,5,0.0 +25199,14,23.25,3,0.0 +25199,6,25,43,0.0 +25199,52,7,21,0.0 +25200,14,23.25,26,0.0 +25200,39,18,17,0.0 +25200,18,62.5,20,0.0 +25200,60,34,9,0.0 +25200,43,46,16,0.0 +25200,68,12.5,23,0.0 +25200,51,53,26,0.0 +25200,10,31,23,0.0 +25200,55,24,24,0.0 +25200,30,25.89,18,0.0 +25200,5,21.35,30,0.0 +25200,27,43.9,9,0.0 +25200,50,16.25,29,0.0 +25200,20,81,45,0.0 +25200,17,39,41,0.0 +25200,24,4.5,6,0.0 +25200,2,19,13,0.0 +25200,77,13,14,0.0 +25200,49,20,42,0.0 +25200,9,97,28,0.0 +25200,6,25,40,0.0 +25200,11,21,42,0.0 +25200,46,12,9,0.0 +25200,45,9.5,22,0.0 +25200,73,15,31,0.0 +25200,41,9.65,34,0.0 +25200,70,15,25,0.0 +25200,4,22,2,0.0 +25200,75,7.75,43,0.0 +25200,52,7,26,0.0 +25200,1,18,17,0.0 +25200,53,32.8,33,0.0 +25200,21,10,13,0.0 +25200,37,26,40,0.0 +25200,56,38,49,0.0 +25200,57,19.5,48,0.0 +25200,19,9.2,40,0.0 +25200,7,30,47,0.0 +25200,71,21.5,1,0.0 +25200,62,49.3,44,0.0 +25200,65,21.05,31,0.0 +25200,35,18,14,0.0 +25200,64,33.25,36,0.0 +25200,40,18.4,20,0.0 +25200,3,10,50,0.0 +25200,29,123.79,37,0.0 +25200,38,263.5,33,0.0 +25200,48,12.75,30,0.0 +25200,72,34.8,44,0.0 +25200,26,31.23,6,0.0 +25200,25,14,16,0.0 +25200,8,40,39,0.0 +25200,12,38,47,0.0 +25200,31,12.5,11,0.0 +25201,59,55,11,0.0 +25201,5,21.35,8,0.0 +25201,50,16.25,11,0.0 +25201,14,23.25,9,0.0 +25201,64,33.25,30,0.0 +25201,22,21,45,0.0 +25201,68,12.5,4,0.0 +25201,49,20,25,0.0 +25201,27,43.9,44,0.0 +25201,4,22,46,0.0 +25201,66,17,42,0.0 +25201,62,49.3,47,0.0 +25201,26,31.23,11,0.0 +25202,16,17.45,7,0.0 +25202,34,14,19,0.0 +25202,24,4.5,5,0.0 +25202,45,9.5,27,0.0 +25202,8,40,45,0.0 +25202,75,7.75,49,0.0 +25202,59,55,49,0.0 +25202,33,2.5,49,0.0 +25202,6,25,19,0.0 +25202,44,19.45,8,0.0 +25202,22,21,7,0.0 +25202,67,14,46,0.0 +25202,53,32.8,47,0.0 +25202,25,14,4,0.0 +25202,46,12,27,0.0 +25202,9,97,21,0.0 +25202,63,43.9,28,0.0 +25202,26,31.23,23,0.0 +25202,72,34.8,34,0.0 +25202,77,13,41,0.0 +25202,74,10,31,0.0 +25202,37,26,36,0.0 +25202,7,30,32,0.0 +25202,31,12.5,5,0.0 +25202,32,32,17,0.0 +25202,2,19,11,0.0 +25202,61,28.5,21,0.0 +25202,28,45.6,42,0.0 +25202,13,6,5,0.0 +25202,3,10,17,0.0 +25202,29,123.79,43,0.0 +25203,62,49.3,50,0.0 +25203,3,10,25,0.0 +25203,71,21.5,29,0.0 +25203,22,21,10,0.0 +25203,9,97,31,0.0 +25203,18,62.5,31,0.0 +25203,19,9.2,47,0.0 +25203,1,18,24,0.0 +25203,23,9,16,0.0 +25203,52,7,30,0.0 +25203,37,26,16,0.0 +25203,47,9.5,3,0.0 +25203,17,39,50,0.0 +25203,39,18,24,0.0 +25203,34,14,5,0.0 +25203,33,2.5,17,0.0 +25203,64,33.25,4,0.0 +25203,35,18,35,0.0 +25203,76,18,8,0.0 +25203,68,12.5,16,0.0 +25203,61,28.5,39,0.0 +25203,13,6,40,0.0 +25203,41,9.65,16,0.0 +25204,76,18,19,0.0 +25204,3,10,22,0.0 +25204,28,45.6,5,0.0 +25204,35,18,36,0.0 +25204,67,14,27,0.0 +25204,24,4.5,32,0.0 +25204,57,19.5,20,0.0 +25204,20,81,19,0.0 +25204,27,43.9,19,0.0 +25204,19,9.2,6,0.0 +25204,23,9,35,0.0 +25204,7,30,20,0.0 +25204,10,31,4,0.0 +25204,30,25.89,2,0.0 +25204,11,21,39,0.0 +25204,46,12,19,0.0 +25205,58,13.25,28,0.0 +25205,47,9.5,18,0.0 +25205,7,30,12,0.0 +25205,51,53,39,0.0 +25205,50,16.25,4,0.0 +25205,46,12,39,0.0 +25205,29,123.79,24,0.0 +25205,45,9.5,12,0.0 +25205,15,15.5,2,0.0 +25205,11,21,2,0.0 +25205,71,21.5,19,0.0 +25205,16,17.45,32,0.0 +25205,43,46,2,0.0 +25205,18,62.5,24,0.0 +25205,74,10,27,0.0 +25205,48,12.75,27,0.0 +25205,65,21.05,14,0.0 +25205,12,38,9,0.0 +25205,37,26,2,0.0 +25205,13,6,24,0.0 +25205,63,43.9,21,0.0 +25205,54,7.45,5,0.0 +25205,72,34.8,50,0.0 +25205,35,18,4,0.0 +25205,19,9.2,8,0.0 +25205,1,18,43,0.0 +25205,10,31,49,0.0 +25205,42,14,10,0.0 +25205,14,23.25,31,0.0 +25205,23,9,47,0.0 +25205,22,21,18,0.0 +25205,21,10,40,0.0 +25205,57,19.5,26,0.0 +25205,66,17,22,0.0 +25205,32,32,37,0.0 +25205,34,14,9,0.0 +25205,68,12.5,37,0.0 +25205,36,19,44,0.0 +25205,33,2.5,14,0.0 +25205,40,18.4,39,0.0 +25205,41,9.65,1,0.0 +25205,69,36,11,0.0 +25205,3,10,46,0.0 +25205,76,18,38,0.0 +25205,44,19.45,3,0.0 +25205,31,12.5,21,0.0 +25205,73,15,34,0.0 +25205,59,55,24,0.0 +25205,77,13,24,0.0 +25205,20,81,46,0.0 +25205,4,22,4,0.0 +25205,60,34,43,0.0 +25205,70,15,24,0.0 +25205,39,18,5,0.0 +25205,2,19,5,0.0 +25205,56,38,48,0.0 +25205,49,20,12,0.0 +25205,26,31.23,40,0.0 +25205,52,7,41,0.0 +25205,38,263.5,12,0.0 +25205,75,7.75,11,0.0 +25205,25,14,41,0.0 +25205,27,43.9,44,0.0 +25205,55,24,37,0.0 +25205,28,45.6,39,0.0 +25205,24,4.5,39,0.0 +25205,61,28.5,46,0.0 +25205,67,14,31,0.0 +25205,64,33.25,14,0.0 +25205,9,97,33,0.0 +25205,62,49.3,27,0.0 +25206,19,9.2,46,0.0 +25206,51,53,18,0.0 +25206,8,40,34,0.0 +25206,38,263.5,28,0.0 +25206,13,6,3,0.0 +25206,50,16.25,18,0.0 +25206,33,2.5,9,0.0 +25206,16,17.45,8,0.0 +25206,22,21,41,0.0 +25206,12,38,9,0.0 +25206,73,15,5,0.0 +25206,37,26,13,0.0 +25206,74,10,30,0.0 +25206,72,34.8,39,0.0 +25206,75,7.75,15,0.0 +25206,64,33.25,38,0.0 +25206,15,15.5,7,0.0 +25206,52,7,39,0.0 +25206,65,21.05,35,0.0 +25206,5,21.35,2,0.0 +25206,11,21,14,0.0 +25206,41,9.65,23,0.0 +25206,39,18,45,0.0 +25206,66,17,19,0.0 +25206,23,9,7,0.0 +25206,49,20,50,0.0 +25206,60,34,33,0.0 +25206,10,31,25,0.0 +25206,40,18.4,7,0.0 +25206,20,81,41,0.0 +25206,14,23.25,19,0.0 +25206,3,10,18,0.0 +25206,76,18,44,0.0 +25206,26,31.23,35,0.0 +25206,34,14,36,0.0 +25206,48,12.75,2,0.0 +25206,70,15,7,0.0 +25206,17,39,18,0.0 +25206,32,32,23,0.0 +25206,62,49.3,38,0.0 +25206,55,24,39,0.0 +25206,7,30,25,0.0 +25206,54,7.45,6,0.0 +25206,71,21.5,35,0.0 +25206,27,43.9,2,0.0 +25206,68,12.5,9,0.0 +25206,77,13,5,0.0 +25206,9,97,22,0.0 +25206,28,45.6,49,0.0 +25206,31,12.5,4,0.0 +25206,43,46,11,0.0 +25206,69,36,21,0.0 +25206,63,43.9,10,0.0 +25207,29,123.79,35,0.0 +25207,24,4.5,12,0.0 +25207,20,81,48,0.0 +25207,63,43.9,31,0.0 +25207,2,19,26,0.0 +25207,4,22,45,0.0 +25207,9,97,30,0.0 +25207,57,19.5,41,0.0 +25207,72,34.8,10,0.0 +25207,74,10,32,0.0 +25207,31,12.5,29,0.0 +25207,10,31,50,0.0 +25207,39,18,5,0.0 +25207,11,21,16,0.0 +25207,48,12.75,9,0.0 +25207,16,17.45,33,0.0 +25207,55,24,10,0.0 +25207,3,10,9,0.0 +25207,70,15,3,0.0 +25207,27,43.9,5,0.0 +25207,68,12.5,37,0.0 +25207,50,16.25,22,0.0 +25207,73,15,11,0.0 +25207,62,49.3,12,0.0 +25207,54,7.45,43,0.0 +25207,1,18,13,0.0 +25207,37,26,14,0.0 +25207,34,14,17,0.0 +25207,5,21.35,30,0.0 +25207,46,12,29,0.0 +25207,61,28.5,25,0.0 +25207,32,32,8,0.0 +25207,14,23.25,6,0.0 +25207,22,21,16,0.0 +25207,65,21.05,9,0.0 +25207,13,6,21,0.0 +25207,58,13.25,3,0.0 +25207,8,40,48,0.0 +25207,15,15.5,47,0.0 +25207,66,17,28,0.0 +25207,33,2.5,27,0.0 +25207,23,9,17,0.0 +25207,38,263.5,22,0.0 +25207,28,45.6,44,0.0 +25207,45,9.5,35,0.0 +25207,59,55,41,0.0 +25207,52,7,14,0.0 +25207,40,18.4,30,0.0 +25207,76,18,43,0.0 +25207,67,14,4,0.0 +25207,56,38,20,0.0 +25207,60,34,13,0.0 +25207,30,25.89,22,0.0 +25208,77,13,6,0.0 +25208,18,62.5,8,0.0 +25208,8,40,24,0.0 +25208,42,14,23,0.0 +25208,40,18.4,50,0.0 +25208,7,30,31,0.0 +25208,19,9.2,6,0.0 +25208,35,18,44,0.0 +25208,17,39,22,0.0 +25208,38,263.5,18,0.0 +25208,25,14,24,0.0 +25208,69,36,15,0.0 +25208,47,9.5,26,0.0 +25208,76,18,15,0.0 +25208,66,17,27,0.0 +25208,5,21.35,22,0.0 +25208,58,13.25,43,0.0 +25208,15,15.5,6,0.0 +25208,59,55,44,0.0 +25208,43,46,18,0.0 +25208,53,32.8,27,0.0 +25208,65,21.05,6,0.0 +25208,29,123.79,4,0.0 +25208,13,6,37,0.0 +25208,62,49.3,38,0.0 +25208,45,9.5,38,0.0 +25208,4,22,30,0.0 +25208,50,16.25,39,0.0 +25208,2,19,11,0.0 +25208,10,31,28,0.0 +25208,57,19.5,6,0.0 +25208,34,14,1,0.0 +25208,39,18,5,0.0 +25208,12,38,1,0.0 +25208,55,24,1,0.0 +25208,32,32,22,0.0 +25208,11,21,48,0.0 +25208,74,10,19,0.0 +25208,73,15,26,0.0 +25208,28,45.6,22,0.0 +25208,51,53,23,0.0 +25208,54,7.45,40,0.0 +25208,49,20,40,0.0 +25208,22,21,25,0.0 +25208,31,12.5,47,0.0 +25208,72,34.8,12,0.0 +25208,60,34,9,0.0 +25208,26,31.23,36,0.0 +25208,16,17.45,31,0.0 +25208,67,14,34,0.0 +25208,52,7,15,0.0 +25208,61,28.5,41,0.0 +25208,48,12.75,12,0.0 +25208,33,2.5,8,0.0 +25208,6,25,46,0.0 +25208,3,10,15,0.0 +25208,46,12,10,0.0 +25208,68,12.5,4,0.0 +25208,20,81,46,0.0 +25208,9,97,1,0.0 +25208,63,43.9,40,0.0 +25208,27,43.9,1,0.0 +25208,44,19.45,42,0.0 +25208,37,26,38,0.0 +25208,21,10,49,0.0 +25208,70,15,20,0.0 +25209,36,19,36,0.0 +25209,34,14,43,0.0 +25209,62,49.3,5,0.0 +25209,14,23.25,31,0.0 +25209,38,263.5,11,0.0 +25209,11,21,3,0.0 +25209,15,15.5,50,0.0 +25209,3,10,39,0.0 +25209,71,21.5,27,0.0 +25209,65,21.05,23,0.0 +25209,64,33.25,47,0.0 +25209,43,46,19,0.0 +25209,66,17,41,0.0 +25209,4,22,40,0.0 +25209,16,17.45,4,0.0 +25209,31,12.5,1,0.0 +25209,23,9,47,0.0 +25209,68,12.5,18,0.0 +25209,75,7.75,16,0.0 +25209,48,12.75,21,0.0 +25209,7,30,2,0.0 +25209,57,19.5,3,0.0 +25210,1,18,21,0.0 +25210,21,10,41,0.0 +25210,62,49.3,31,0.0 +25210,74,10,33,0.0 +25210,34,14,8,0.0 +25210,7,30,40,0.0 +25210,73,15,6,0.0 +25210,36,19,45,0.0 +25210,55,24,23,0.0 +25210,17,39,43,0.0 +25210,26,31.23,48,0.0 +25210,59,55,13,0.0 +25210,45,9.5,8,0.0 +25210,8,40,19,0.0 +25210,22,21,42,0.0 +25210,52,7,4,0.0 +25210,46,12,1,0.0 +25210,28,45.6,40,0.0 +25210,57,19.5,1,0.0 +25210,77,13,8,0.0 +25210,15,15.5,39,0.0 +25210,13,6,24,0.0 +25210,39,18,28,0.0 +25210,75,7.75,48,0.0 +25210,2,19,25,0.0 +25210,47,9.5,22,0.0 +25210,70,15,47,0.0 +25210,29,123.79,1,0.0 +25210,31,12.5,8,0.0 +25210,71,21.5,19,0.0 +25210,64,33.25,3,0.0 +25210,3,10,49,0.0 +25210,68,12.5,46,0.0 +25210,23,9,11,0.0 +25210,72,34.8,17,0.0 +25210,30,25.89,39,0.0 +25210,11,21,15,0.0 +25210,27,43.9,12,0.0 +25210,54,7.45,35,0.0 +25210,44,19.45,8,0.0 +25210,41,9.65,38,0.0 +25210,20,81,20,0.0 +25210,42,14,30,0.0 +25210,43,46,19,0.0 +25210,49,20,23,0.0 +25210,48,12.75,9,0.0 +25210,38,263.5,28,0.0 +25210,25,14,6,0.0 +25210,24,4.5,27,0.0 +25210,6,25,47,0.0 +25210,16,17.45,3,0.0 +25210,33,2.5,19,0.0 +25210,12,38,10,0.0 +25210,66,17,17,0.0 +25210,18,62.5,25,0.0 +25210,67,14,29,0.0 +25210,51,53,6,0.0 +25210,32,32,8,0.0 +25210,65,21.05,32,0.0 +25210,50,16.25,13,0.0 +25210,10,31,43,0.0 +25210,56,38,34,0.0 +25210,37,26,42,0.0 +25210,35,18,38,0.0 +25210,4,22,42,0.0 +25211,13,6,18,0.0 +25211,61,28.5,15,0.0 +25211,23,9,35,0.0 +25211,66,17,11,0.0 +25211,41,9.65,5,0.0 +25211,63,43.9,31,0.0 +25211,1,18,5,0.0 +25211,51,53,46,0.0 +25211,18,62.5,7,0.0 +25211,64,33.25,39,0.0 +25211,16,17.45,41,0.0 +25211,32,32,38,0.0 +25211,72,34.8,23,0.0 +25211,65,21.05,1,0.0 +25211,11,21,20,0.0 +25211,68,12.5,30,0.0 +25211,52,7,27,0.0 +25211,62,49.3,49,0.0 +25211,6,25,20,0.0 +25211,54,7.45,4,0.0 +25211,10,31,8,0.0 +25211,39,18,23,0.0 +25211,57,19.5,8,0.0 +25211,36,19,50,0.0 +25211,45,9.5,37,0.0 +25211,2,19,9,0.0 +25211,75,7.75,24,0.0 +25211,56,38,43,0.0 +25211,70,15,23,0.0 +25211,14,23.25,5,0.0 +25211,38,263.5,20,0.0 +25211,20,81,7,0.0 +25211,21,10,39,0.0 +25211,17,39,6,0.0 +25211,71,21.5,44,0.0 +25211,69,36,24,0.0 +25211,27,43.9,2,0.0 +25211,47,9.5,14,0.0 +25211,50,16.25,33,0.0 +25211,28,45.6,16,0.0 +25211,74,10,31,0.0 +25211,26,31.23,38,0.0 +25211,76,18,49,0.0 +25211,46,12,29,0.0 +25211,22,21,24,0.0 +25211,12,38,19,0.0 +25211,59,55,50,0.0 +25211,35,18,16,0.0 +25211,48,12.75,27,0.0 +25211,55,24,22,0.0 +25211,33,2.5,44,0.0 +25211,60,34,48,0.0 +25211,44,19.45,26,0.0 +25211,77,13,19,0.0 +25211,73,15,22,0.0 +25211,29,123.79,46,0.0 +25211,30,25.89,32,0.0 +25211,24,4.5,7,0.0 +25211,49,20,6,0.0 +25211,4,22,16,0.0 +25211,25,14,23,0.0 +25211,43,46,41,0.0 +25211,58,13.25,41,0.0 +25211,53,32.8,9,0.0 +25211,42,14,45,0.0 +25211,7,30,5,0.0 +25211,67,14,1,0.0 +25211,8,40,47,0.0 +25211,19,9.2,49,0.0 +25211,40,18.4,10,0.0 +25211,15,15.5,19,0.0 +25211,9,97,10,0.0 +25211,31,12.5,24,0.0 +25211,37,26,14,0.0 +25211,5,21.35,23,0.0 +25211,34,14,13,0.0 +25211,3,10,34,0.0 +25212,37,26,48,0.0 +25212,69,36,31,0.0 +25212,74,10,37,0.0 +25212,25,14,25,0.0 +25212,71,21.5,16,0.0 +25212,5,21.35,25,0.0 +25212,9,97,39,0.0 +25212,34,14,29,0.0 +25212,8,40,26,0.0 +25212,13,6,2,0.0 +25212,24,4.5,19,0.0 +25212,55,24,13,0.0 +25212,35,18,19,0.0 +25212,47,9.5,9,0.0 +25212,72,34.8,30,0.0 +25212,43,46,41,0.0 +25212,59,55,25,0.0 +25212,67,14,29,0.0 +25212,41,9.65,31,0.0 +25212,6,25,39,0.0 +25212,62,49.3,44,0.0 +25212,70,15,8,0.0 +25212,16,17.45,14,0.0 +25212,21,10,24,0.0 +25212,39,18,27,0.0 +25212,26,31.23,28,0.0 +25212,29,123.79,42,0.0 +25212,32,32,11,0.0 +25212,51,53,31,0.0 +25212,4,22,14,0.0 +25212,30,25.89,44,0.0 +25212,46,12,4,0.0 +25212,58,13.25,50,0.0 +25212,49,20,30,0.0 +25212,56,38,48,0.0 +25212,68,12.5,30,0.0 +25212,1,18,11,0.0 +25212,28,45.6,32,0.0 +25212,7,30,42,0.0 +25212,38,263.5,25,0.0 +25212,60,34,36,0.0 +25212,63,43.9,16,0.0 +25213,75,7.75,10,0.0 +25213,50,16.25,24,0.0 +25213,32,32,43,0.0 +25213,48,12.75,14,0.0 +25213,10,31,41,0.0 +25213,4,22,7,0.0 +25213,54,7.45,15,0.0 +25213,34,14,30,0.0 +25213,42,14,42,0.0 +25213,77,13,45,0.0 +25213,59,55,26,0.0 +25213,33,2.5,49,0.0 +25213,12,38,48,0.0 +25213,17,39,43,0.0 +25213,51,53,5,0.0 +25213,38,263.5,46,0.0 +25213,29,123.79,4,0.0 +25213,49,20,41,0.0 +25213,14,23.25,34,0.0 +25213,70,15,20,0.0 +25213,55,24,34,0.0 +25213,2,19,15,0.0 +25213,44,19.45,30,0.0 +25213,53,32.8,15,0.0 +25213,71,21.5,5,0.0 +25213,67,14,13,0.0 +25213,39,18,43,0.0 +25213,52,7,43,0.0 +25213,65,21.05,11,0.0 +25213,56,38,42,0.0 +25213,40,18.4,43,0.0 +25213,43,46,11,0.0 +25213,3,10,41,0.0 +25213,8,40,15,0.0 +25213,28,45.6,2,0.0 +25213,46,12,6,0.0 +25213,11,21,28,0.0 +25213,26,31.23,31,0.0 +25213,1,18,11,0.0 +25213,25,14,44,0.0 +25213,13,6,24,0.0 +25213,22,21,40,0.0 +25213,5,21.35,4,0.0 +25213,73,15,34,0.0 +25213,30,25.89,15,0.0 +25213,6,25,26,0.0 +25213,57,19.5,24,0.0 +25213,9,97,28,0.0 +25213,63,43.9,45,0.0 +25213,68,12.5,6,0.0 +25213,31,12.5,35,0.0 +25213,41,9.65,33,0.0 +25213,61,28.5,37,0.0 +25213,27,43.9,36,0.0 +25213,60,34,35,0.0 +25213,15,15.5,39,0.0 +25213,20,81,44,0.0 +25213,37,26,2,0.0 +25213,58,13.25,30,0.0 +25213,23,9,50,0.0 +25213,24,4.5,10,0.0 +25213,69,36,6,0.0 +25213,76,18,29,0.0 +25214,31,12.5,7,0.0 +25214,5,21.35,6,0.0 +25214,55,24,32,0.0 +25214,14,23.25,41,0.0 +25214,77,13,31,0.0 +25214,75,7.75,46,0.0 +25214,16,17.45,31,0.0 +25214,45,9.5,46,0.0 +25214,23,9,49,0.0 +25214,42,14,18,0.0 +25214,67,14,42,0.0 +25214,39,18,15,0.0 +25214,56,38,17,0.0 +25214,74,10,47,0.0 +25214,25,14,41,0.0 +25214,17,39,35,0.0 +25214,33,2.5,12,0.0 +25214,15,15.5,48,0.0 +25214,71,21.5,50,0.0 +25214,38,263.5,37,0.0 +25214,3,10,33,0.0 +25214,10,31,34,0.0 +25214,28,45.6,45,0.0 +25214,8,40,27,0.0 +25214,1,18,49,0.0 +25214,24,4.5,41,0.0 +25214,64,33.25,47,0.0 +25214,12,38,23,0.0 +25214,27,43.9,15,0.0 +25214,29,123.79,30,0.0 +25214,37,26,2,0.0 +25214,47,9.5,40,0.0 +25214,73,15,4,0.0 +25214,41,9.65,44,0.0 +25214,49,20,47,0.0 +25214,72,34.8,48,0.0 +25214,63,43.9,46,0.0 +25214,44,19.45,15,0.0 +25214,40,18.4,11,0.0 +25214,9,97,19,0.0 +25214,7,30,45,0.0 +25214,52,7,31,0.0 +25214,18,62.5,13,0.0 +25214,51,53,4,0.0 +25214,54,7.45,46,0.0 +25214,11,21,2,0.0 +25214,57,19.5,15,0.0 +25214,22,21,4,0.0 +25214,34,14,20,0.0 +25214,60,34,28,0.0 +25214,13,6,14,0.0 +25214,62,49.3,39,0.0 +25214,69,36,47,0.0 +25215,60,34,14,0.0 +25215,45,9.5,38,0.0 +25215,24,4.5,39,0.0 +25215,56,38,14,0.0 +25215,76,18,3,0.0 +25215,18,62.5,36,0.0 +25215,47,9.5,27,0.0 +25215,23,9,27,0.0 +25215,41,9.65,9,0.0 +25215,14,23.25,50,0.0 +25215,6,25,45,0.0 +25215,74,10,45,0.0 +25215,30,25.89,49,0.0 +25215,27,43.9,47,0.0 +25215,34,14,3,0.0 +25215,33,2.5,23,0.0 +25215,44,19.45,8,0.0 +25215,8,40,21,0.0 +25215,37,26,38,0.0 +25215,68,12.5,32,0.0 +25215,3,10,7,0.0 +25215,17,39,19,0.0 +25215,42,14,45,0.0 +25215,55,24,32,0.0 +25215,22,21,38,0.0 +25215,31,12.5,23,0.0 +25216,43,46,22,0.0 +25216,35,18,30,0.0 +25216,28,45.6,6,0.0 +25216,18,62.5,19,0.0 +25216,1,18,21,0.0 +25216,41,9.65,11,0.0 +25216,11,21,2,0.0 +25216,4,22,9,0.0 +25216,61,28.5,37,0.0 +25216,25,14,3,0.0 +25216,57,19.5,11,0.0 +25216,30,25.89,29,0.0 +25216,56,38,19,0.0 +25216,24,4.5,21,0.0 +25216,64,33.25,46,0.0 +25216,46,12,22,0.0 +25216,52,7,49,0.0 +25216,63,43.9,47,0.0 +25216,58,13.25,39,0.0 +25216,42,14,12,0.0 +25216,68,12.5,22,0.0 +25216,2,19,12,0.0 +25216,3,10,4,0.0 +25216,5,21.35,12,0.0 +25216,6,25,25,0.0 +25216,36,19,11,0.0 +25216,67,14,50,0.0 +25216,20,81,50,0.0 +25216,77,13,34,0.0 +25216,49,20,24,0.0 +25216,19,9.2,50,0.0 +25216,13,6,3,0.0 +25216,54,7.45,24,0.0 +25216,48,12.75,15,0.0 +25216,73,15,3,0.0 +25216,32,32,14,0.0 +25216,9,97,18,0.0 +25216,55,24,36,0.0 +25216,71,21.5,41,0.0 +25216,50,16.25,24,0.0 +25216,10,31,15,0.0 +25216,15,15.5,12,0.0 +25216,40,18.4,49,0.0 +25216,27,43.9,45,0.0 +25216,26,31.23,10,0.0 +25216,66,17,32,0.0 +25216,17,39,28,0.0 +25216,37,26,10,0.0 +25216,34,14,38,0.0 +25216,74,10,31,0.0 +25216,22,21,25,0.0 +25216,60,34,30,0.0 +25216,59,55,8,0.0 +25216,31,12.5,41,0.0 +25216,12,38,14,0.0 +25216,53,32.8,16,0.0 +25216,62,49.3,26,0.0 +25216,76,18,13,0.0 +25216,14,23.25,40,0.0 +25216,33,2.5,47,0.0 +25216,38,263.5,34,0.0 +25216,8,40,11,0.0 +25216,70,15,41,0.0 +25216,16,17.45,45,0.0 +25216,51,53,49,0.0 +25216,7,30,32,0.0 +25216,47,9.5,24,0.0 +25216,65,21.05,6,0.0 +25217,76,18,15,0.0 +25217,12,38,26,0.0 +25217,73,15,19,0.0 +25217,30,25.89,35,0.0 +25217,14,23.25,50,0.0 +25217,69,36,48,0.0 +25217,24,4.5,14,0.0 +25217,16,17.45,9,0.0 +25217,37,26,13,0.0 +25217,23,9,41,0.0 +25217,72,34.8,15,0.0 +25217,64,33.25,38,0.0 +25217,56,38,45,0.0 +25217,63,43.9,4,0.0 +25217,13,6,18,0.0 +25217,61,28.5,40,0.0 +25217,53,32.8,21,0.0 +25217,66,17,19,0.0 +25217,47,9.5,30,0.0 +25217,18,62.5,40,0.0 +25217,51,53,33,0.0 +25217,32,32,43,0.0 +25217,21,10,28,0.0 +25217,25,14,15,0.0 +25217,36,19,3,0.0 +25217,31,12.5,19,0.0 +25217,59,55,25,0.0 +25217,5,21.35,45,0.0 +25217,33,2.5,27,0.0 +25217,34,14,34,0.0 +25217,52,7,45,0.0 +25217,28,45.6,15,0.0 +25217,10,31,14,0.0 +25217,65,21.05,41,0.0 +25217,19,9.2,39,0.0 +25217,4,22,4,0.0 +25217,27,43.9,22,0.0 +25217,74,10,32,0.0 +25217,44,19.45,25,0.0 +25217,7,30,11,0.0 +25217,3,10,32,0.0 +25217,40,18.4,2,0.0 +25217,60,34,37,0.0 +25217,2,19,21,0.0 +25217,54,7.45,22,0.0 +25217,67,14,39,0.0 +25217,70,15,6,0.0 +25217,77,13,12,0.0 +25217,57,19.5,18,0.0 +25217,41,9.65,22,0.0 +25217,35,18,39,0.0 +25217,38,263.5,17,0.0 +25217,17,39,38,0.0 +25217,46,12,24,0.0 +25217,68,12.5,48,0.0 +25217,48,12.75,21,0.0 +25217,49,20,47,0.0 +25217,75,7.75,10,0.0 +25217,55,24,31,0.0 +25217,11,21,38,0.0 +25217,42,14,19,0.0 +25217,20,81,31,0.0 +25217,58,13.25,32,0.0 +25217,8,40,12,0.0 +25217,71,21.5,21,0.0 +25217,43,46,23,0.0 +25217,39,18,47,0.0 +25217,29,123.79,39,0.0 +25218,27,43.9,43,0.0 +25218,35,18,39,0.0 +25218,21,10,18,0.0 +25218,5,21.35,17,0.0 +25218,47,9.5,50,0.0 +25218,56,38,40,0.0 +25218,23,9,48,0.0 +25218,39,18,4,0.0 +25218,54,7.45,38,0.0 +25219,65,21.05,6,0.0 +25219,26,31.23,11,0.0 +25219,60,34,20,0.0 +25219,31,12.5,20,0.0 +25219,24,4.5,25,0.0 +25219,18,62.5,28,0.0 +25219,27,43.9,36,0.0 +25219,28,45.6,19,0.0 +25219,30,25.89,50,0.0 +25219,73,15,8,0.0 +25219,9,97,44,0.0 +25219,51,53,42,0.0 +25219,59,55,41,0.0 +25219,14,23.25,30,0.0 +25219,48,12.75,22,0.0 +25219,74,10,21,0.0 +25219,2,19,49,0.0 +25219,39,18,37,0.0 +25219,13,6,33,0.0 +25219,56,38,17,0.0 +25219,45,9.5,15,0.0 +25219,77,13,9,0.0 +25219,71,21.5,39,0.0 +25219,66,17,41,0.0 +25219,70,15,32,0.0 +25219,37,26,8,0.0 +25219,20,81,1,0.0 +25219,42,14,47,0.0 +25219,19,9.2,25,0.0 +25219,75,7.75,5,0.0 +25219,54,7.45,20,0.0 +25219,32,32,47,0.0 +25219,61,28.5,41,0.0 +25219,57,19.5,7,0.0 +25219,41,9.65,34,0.0 +25219,10,31,2,0.0 +25219,25,14,29,0.0 +25219,34,14,48,0.0 +25219,67,14,5,0.0 +25219,11,21,44,0.0 +25219,1,18,30,0.0 +25219,50,16.25,18,0.0 +25219,72,34.8,22,0.0 +25219,35,18,33,0.0 +25219,5,21.35,35,0.0 +25219,16,17.45,23,0.0 +25219,7,30,40,0.0 +25220,76,18,6,0.0 +25220,64,33.25,5,0.0 +25220,37,26,12,0.0 +25220,61,28.5,42,0.0 +25220,12,38,10,0.0 +25220,27,43.9,4,0.0 +25220,6,25,23,0.0 +25220,46,12,50,0.0 +25220,41,9.65,3,0.0 +25220,11,21,21,0.0 +25220,58,13.25,30,0.0 +25220,16,17.45,38,0.0 +25220,5,21.35,50,0.0 +25220,60,34,2,0.0 +25220,8,40,42,0.0 +25220,45,9.5,45,0.0 +25220,20,81,17,0.0 +25220,70,15,18,0.0 +25220,3,10,48,0.0 +25220,47,9.5,32,0.0 +25220,21,10,49,0.0 +25220,65,21.05,16,0.0 +25220,55,24,37,0.0 +25220,42,14,2,0.0 +25221,1,18,14,0.0 +25221,34,14,26,0.0 +25221,3,10,48,0.0 +25221,48,12.75,14,0.0 +25221,54,7.45,47,0.0 +25221,6,25,50,0.0 +25221,46,12,48,0.0 +25221,27,43.9,14,0.0 +25221,56,38,38,0.0 +25221,24,4.5,15,0.0 +25221,51,53,1,0.0 +25221,55,24,8,0.0 +25221,59,55,36,0.0 +25221,31,12.5,13,0.0 +25221,73,15,49,0.0 +25221,23,9,17,0.0 +25221,22,21,33,0.0 +25221,76,18,7,0.0 +25221,74,10,32,0.0 +25221,63,43.9,2,0.0 +25221,67,14,40,0.0 +25221,13,6,36,0.0 +25221,41,9.65,43,0.0 +25221,44,19.45,33,0.0 +25221,69,36,26,0.0 +25221,40,18.4,33,0.0 +25221,37,26,18,0.0 +25221,25,14,21,0.0 +25221,19,9.2,9,0.0 +25221,8,40,5,0.0 +25221,38,263.5,40,0.0 +25221,72,34.8,6,0.0 +25221,14,23.25,34,0.0 +25221,42,14,14,0.0 +25221,68,12.5,26,0.0 +25221,66,17,48,0.0 +25221,2,19,13,0.0 +25221,29,123.79,17,0.0 +25221,18,62.5,40,0.0 +25221,28,45.6,39,0.0 +25221,10,31,16,0.0 +25221,17,39,21,0.0 +25221,30,25.89,41,0.0 +25221,21,10,16,0.0 +25221,15,15.5,41,0.0 +25221,64,33.25,17,0.0 +25221,70,15,39,0.0 +25221,11,21,11,0.0 +25221,62,49.3,2,0.0 +25221,7,30,27,0.0 +25222,2,19,50,0.0 +25222,5,21.35,48,0.0 +25222,68,12.5,48,0.0 +25222,13,6,6,0.0 +25222,62,49.3,20,0.0 +25222,42,14,21,0.0 +25222,27,43.9,11,0.0 +25222,23,9,16,0.0 +25222,65,21.05,5,0.0 +25222,25,14,26,0.0 +25222,16,17.45,22,0.0 +25222,60,34,25,0.0 +25222,58,13.25,7,0.0 +25222,3,10,48,0.0 +25222,33,2.5,47,0.0 +25222,26,31.23,23,0.0 +25222,9,97,35,0.0 +25222,37,26,43,0.0 +25222,19,9.2,49,0.0 +25222,66,17,50,0.0 +25222,22,21,35,0.0 +25222,59,55,2,0.0 +25222,47,9.5,42,0.0 +25222,63,43.9,42,0.0 +25222,32,32,31,0.0 +25222,69,36,7,0.0 +25222,72,34.8,25,0.0 +25222,14,23.25,14,0.0 +25222,57,19.5,4,0.0 +25222,4,22,13,0.0 +25222,29,123.79,35,0.0 +25223,73,15,12,0.0 +25223,11,21,41,0.0 +25223,72,34.8,22,0.0 +25223,1,18,41,0.0 +25223,6,25,37,0.0 +25223,44,19.45,48,0.0 +25223,51,53,5,0.0 +25223,75,7.75,49,0.0 +25223,25,14,23,0.0 +25223,5,21.35,40,0.0 +25223,53,32.8,28,0.0 +25223,7,30,24,0.0 +25223,55,24,44,0.0 +25223,26,31.23,34,0.0 +25223,52,7,20,0.0 +25223,35,18,14,0.0 +25223,61,28.5,38,0.0 +25223,31,12.5,50,0.0 +25223,21,10,47,0.0 +25223,60,34,48,0.0 +25223,23,9,50,0.0 +25223,47,9.5,41,0.0 +25223,14,23.25,15,0.0 +25223,29,123.79,8,0.0 +25223,15,15.5,32,0.0 +25223,30,25.89,12,0.0 +25223,49,20,7,0.0 +25223,19,9.2,3,0.0 +25223,4,22,42,0.0 +25223,9,97,34,0.0 +25223,22,21,38,0.0 +25223,70,15,50,0.0 +25223,10,31,46,0.0 +25223,71,21.5,2,0.0 +25223,18,62.5,25,0.0 +25223,69,36,45,0.0 +25223,58,13.25,23,0.0 +25223,57,19.5,9,0.0 +25223,74,10,17,0.0 +25223,65,21.05,3,0.0 +25223,17,39,45,0.0 +25223,46,12,30,0.0 +25223,42,14,25,0.0 +25223,62,49.3,1,0.0 +25223,12,38,8,0.0 +25223,45,9.5,18,0.0 +25223,3,10,17,0.0 +25223,32,32,46,0.0 +25223,2,19,47,0.0 +25223,24,4.5,18,0.0 +25223,48,12.75,50,0.0 +25223,37,26,1,0.0 +25223,77,13,24,0.0 +25223,40,18.4,13,0.0 +25223,59,55,32,0.0 +25223,36,19,21,0.0 +25223,41,9.65,8,0.0 +25223,68,12.5,17,0.0 +25223,64,33.25,35,0.0 +25223,28,45.6,26,0.0 +25223,43,46,41,0.0 +25223,63,43.9,15,0.0 +25223,76,18,1,0.0 +25223,56,38,21,0.0 +25223,67,14,5,0.0 +25223,27,43.9,6,0.0 +25224,41,9.65,5,0.0 +25224,68,12.5,48,0.0 +25225,62,49.3,19,0.0 +25225,18,62.5,4,0.0 +25225,73,15,42,0.0 +25225,7,30,38,0.0 +25225,74,10,20,0.0 +25225,15,15.5,7,0.0 +25225,54,7.45,29,0.0 +25225,59,55,22,0.0 +25225,23,9,28,0.0 +25225,26,31.23,13,0.0 +25225,4,22,14,0.0 +25225,67,14,21,0.0 +25225,46,12,12,0.0 +25225,10,31,30,0.0 +25225,40,18.4,48,0.0 +25225,66,17,35,0.0 +25225,63,43.9,27,0.0 +25225,8,40,21,0.0 +25225,36,19,24,0.0 +25225,69,36,41,0.0 +25225,9,97,32,0.0 +25225,51,53,12,0.0 +25225,35,18,5,0.0 +25225,6,25,37,0.0 +25225,58,13.25,49,0.0 +25225,14,23.25,28,0.0 +25225,28,45.6,29,0.0 +25225,60,34,10,0.0 +25225,70,15,8,0.0 +25225,5,21.35,31,0.0 +25225,72,34.8,39,0.0 +25225,22,21,44,0.0 +25225,30,25.89,24,0.0 +25225,52,7,24,0.0 +25225,71,21.5,44,0.0 +25225,37,26,6,0.0 +25225,29,123.79,23,0.0 +25225,31,12.5,41,0.0 +25225,17,39,45,0.0 +25225,53,32.8,29,0.0 +25225,65,21.05,10,0.0 +25225,41,9.65,49,0.0 +25225,38,263.5,9,0.0 +25225,56,38,21,0.0 +25225,19,9.2,31,0.0 +25225,45,9.5,28,0.0 +25225,11,21,46,0.0 +25225,21,10,20,0.0 +25225,1,18,20,0.0 +25225,75,7.75,33,0.0 +25225,55,24,42,0.0 +25225,13,6,43,0.0 +25225,76,18,10,0.0 +25225,25,14,40,0.0 +25226,52,7,27,0.0 +25226,48,12.75,42,0.0 +25227,76,18,34,0.0 +25227,44,19.45,24,0.0 +25227,11,21,25,0.0 +25227,65,21.05,26,0.0 +25227,70,15,8,0.0 +25227,55,24,27,0.0 +25227,38,263.5,40,0.0 +25227,19,9.2,11,0.0 +25227,21,10,15,0.0 +25227,24,4.5,15,0.0 +25227,62,49.3,32,0.0 +25227,58,13.25,6,0.0 +25227,54,7.45,44,0.0 +25227,63,43.9,25,0.0 +25227,3,10,35,0.0 +25227,68,12.5,50,0.0 +25227,52,7,38,0.0 +25227,71,21.5,4,0.0 +25227,49,20,29,0.0 +25227,7,30,6,0.0 +25227,56,38,42,0.0 +25227,74,10,12,0.0 +25227,36,19,24,0.0 +25227,66,17,19,0.0 +25227,61,28.5,42,0.0 +25227,72,34.8,31,0.0 +25227,47,9.5,3,0.0 +25227,33,2.5,12,0.0 +25227,30,25.89,44,0.0 +25227,22,21,34,0.0 +25227,77,13,45,0.0 +25227,6,25,4,0.0 +25227,51,53,8,0.0 +25227,28,45.6,19,0.0 +25227,16,17.45,11,0.0 +25227,26,31.23,14,0.0 +25227,53,32.8,23,0.0 +25227,8,40,23,0.0 +25227,14,23.25,32,0.0 +25227,12,38,47,0.0 +25227,59,55,26,0.0 +25227,27,43.9,23,0.0 +25227,57,19.5,10,0.0 +25227,42,14,29,0.0 +25227,41,9.65,2,0.0 +25227,48,12.75,45,0.0 +25227,20,81,9,0.0 +25227,23,9,17,0.0 +25227,18,62.5,32,0.0 +25227,5,21.35,22,0.0 +25227,31,12.5,48,0.0 +25227,25,14,5,0.0 +25227,9,97,5,0.0 +25227,69,36,23,0.0 +25227,15,15.5,13,0.0 +25227,64,33.25,5,0.0 +25227,60,34,3,0.0 +25227,2,19,37,0.0 +25228,18,62.5,24,0.0 +25228,56,38,21,0.0 +25228,44,19.45,6,0.0 +25228,20,81,24,0.0 +25228,14,23.25,10,0.0 +25228,22,21,2,0.0 +25228,50,16.25,48,0.0 +25228,2,19,1,0.0 +25228,33,2.5,1,0.0 +25228,15,15.5,44,0.0 +25228,25,14,26,0.0 +25228,47,9.5,9,0.0 +25228,38,263.5,17,0.0 +25228,69,36,22,0.0 +25228,60,34,43,0.0 +25228,11,21,35,0.0 +25228,59,55,43,0.0 +25228,34,14,34,0.0 +25228,27,43.9,44,0.0 +25228,64,33.25,47,0.0 +25228,43,46,32,0.0 +25228,24,4.5,31,0.0 +25228,28,45.6,14,0.0 +25228,75,7.75,47,0.0 +25228,3,10,33,0.0 +25228,17,39,39,0.0 +25228,65,21.05,18,0.0 +25228,41,9.65,39,0.0 +25228,26,31.23,26,0.0 +25228,6,25,22,0.0 +25228,58,13.25,37,0.0 +25228,1,18,32,0.0 +25228,63,43.9,20,0.0 +25228,53,32.8,10,0.0 +25228,9,97,19,0.0 +25228,32,32,36,0.0 +25228,21,10,17,0.0 +25228,10,31,18,0.0 +25228,73,15,34,0.0 +25228,57,19.5,31,0.0 +25228,19,9.2,40,0.0 +25228,55,24,8,0.0 +25228,12,38,38,0.0 +25228,62,49.3,36,0.0 +25228,39,18,33,0.0 +25228,7,30,46,0.0 +25228,45,9.5,9,0.0 +25228,76,18,30,0.0 +25228,42,14,36,0.0 +25228,5,21.35,3,0.0 +25228,31,12.5,46,0.0 +25228,70,15,23,0.0 +25228,13,6,46,0.0 +25228,36,19,43,0.0 +25228,49,20,8,0.0 +25228,61,28.5,3,0.0 +25228,4,22,7,0.0 +25228,35,18,42,0.0 +25229,73,15,49,0.0 +25229,64,33.25,27,0.0 +25229,2,19,39,0.0 +25229,39,18,46,0.0 +25229,32,32,46,0.0 +25229,3,10,38,0.0 +25229,41,9.65,41,0.0 +25229,37,26,41,0.0 +25229,40,18.4,12,0.0 +25229,8,40,41,0.0 +25229,22,21,14,0.0 +25229,33,2.5,46,0.0 +25229,69,36,6,0.0 +25229,10,31,2,0.0 +25229,58,13.25,27,0.0 +25229,71,21.5,22,0.0 +25229,35,18,44,0.0 +25229,18,62.5,17,0.0 +25229,59,55,6,0.0 +25229,57,19.5,13,0.0 +25229,1,18,1,0.0 +25229,23,9,19,0.0 +25229,54,7.45,34,0.0 +25229,43,46,33,0.0 +25229,11,21,41,0.0 +25229,60,34,15,0.0 +25229,15,15.5,9,0.0 +25229,75,7.75,13,0.0 +25229,20,81,12,0.0 +25229,51,53,50,0.0 +25229,24,4.5,26,0.0 +25229,68,12.5,40,0.0 +25229,30,25.89,2,0.0 +25229,5,21.35,34,0.0 +25229,74,10,34,0.0 +25229,65,21.05,36,0.0 +25229,70,15,27,0.0 +25229,47,9.5,13,0.0 +25229,63,43.9,43,0.0 +25229,72,34.8,6,0.0 +25229,76,18,16,0.0 +25229,25,14,25,0.0 +25229,49,20,48,0.0 +25229,31,12.5,44,0.0 +25229,26,31.23,5,0.0 +25229,6,25,4,0.0 +25229,4,22,6,0.0 +25229,34,14,13,0.0 +25229,50,16.25,31,0.0 +25229,53,32.8,9,0.0 +25229,56,38,27,0.0 +25229,28,45.6,36,0.0 +25229,12,38,41,0.0 +25229,61,28.5,44,0.0 +25229,48,12.75,45,0.0 +25229,46,12,7,0.0 +25229,55,24,19,0.0 +25229,52,7,15,0.0 +25229,27,43.9,38,0.0 +25229,7,30,10,0.0 +25229,17,39,47,0.0 +25229,21,10,25,0.0 +25229,29,123.79,1,0.0 +25229,9,97,2,0.0 +25230,23,9,48,0.0 +25230,5,21.35,27,0.0 +25230,11,21,4,0.0 +25230,60,34,44,0.0 +25231,19,9.2,21,0.0 +25231,10,31,43,0.0 +25231,35,18,50,0.0 +25231,71,21.5,31,0.0 +25231,23,9,26,0.0 +25231,67,14,10,0.0 +25231,31,12.5,36,0.0 +25231,62,49.3,27,0.0 +25231,46,12,5,0.0 +25231,33,2.5,25,0.0 +25231,77,13,14,0.0 +25231,54,7.45,8,0.0 +25231,76,18,35,0.0 +25231,30,25.89,31,0.0 +25231,27,43.9,4,0.0 +25231,74,10,9,0.0 +25231,59,55,15,0.0 +25231,61,28.5,2,0.0 +25231,9,97,42,0.0 +25231,70,15,21,0.0 +25231,65,21.05,39,0.0 +25231,48,12.75,17,0.0 +25231,8,40,43,0.0 +25231,14,23.25,19,0.0 +25231,69,36,47,0.0 +25231,41,9.65,44,0.0 +25231,55,24,30,0.0 +25231,40,18.4,47,0.0 +25231,66,17,15,0.0 +25231,5,21.35,11,0.0 +25231,25,14,36,0.0 +25231,56,38,38,0.0 +25231,18,62.5,11,0.0 +25231,34,14,8,0.0 +25231,53,32.8,8,0.0 +25231,52,7,36,0.0 +25231,75,7.75,32,0.0 +25231,7,30,48,0.0 +25231,26,31.23,2,0.0 +25231,3,10,42,0.0 +25231,57,19.5,33,0.0 +25231,15,15.5,20,0.0 +25231,45,9.5,6,0.0 +25231,20,81,48,0.0 +25231,49,20,16,0.0 +25231,13,6,11,0.0 +25231,12,38,41,0.0 +25231,44,19.45,14,0.0 +25231,73,15,45,0.0 +25231,38,263.5,48,0.0 +25231,2,19,14,0.0 +25231,28,45.6,14,0.0 +25231,21,10,31,0.0 +25232,34,14,29,0.0 +25232,42,14,4,0.0 +25232,47,9.5,48,0.0 +25232,60,34,7,0.0 +25232,45,9.5,39,0.0 +25232,66,17,40,0.0 +25232,75,7.75,3,0.0 +25232,74,10,29,0.0 +25232,14,23.25,7,0.0 +25232,70,15,49,0.0 +25232,54,7.45,31,0.0 +25232,31,12.5,33,0.0 +25232,59,55,1,0.0 +25232,22,21,9,0.0 +25232,72,34.8,42,0.0 +25232,36,19,40,0.0 +25232,40,18.4,38,0.0 +25232,26,31.23,8,0.0 +25232,63,43.9,30,0.0 +25232,11,21,5,0.0 +25232,57,19.5,5,0.0 +25232,25,14,24,0.0 +25232,76,18,34,0.0 +25232,37,26,17,0.0 +25232,1,18,11,0.0 +25232,53,32.8,14,0.0 +25232,17,39,25,0.0 +25232,27,43.9,23,0.0 +25232,33,2.5,31,0.0 +25232,19,9.2,40,0.0 +25232,21,10,45,0.0 +25232,58,13.25,12,0.0 +25232,29,123.79,10,0.0 +25232,8,40,35,0.0 +25232,9,97,19,0.0 +25232,52,7,29,0.0 +25232,67,14,38,0.0 +25232,71,21.5,44,0.0 +25232,39,18,21,0.0 +25232,5,21.35,45,0.0 +25232,49,20,21,0.0 +25232,64,33.25,41,0.0 +25232,15,15.5,37,0.0 +25232,23,9,4,0.0 +25233,75,7.75,1,0.0 +25233,74,10,18,0.0 +25233,15,15.5,45,0.0 +25233,36,19,6,0.0 +25233,69,36,49,0.0 +25233,65,21.05,28,0.0 +25233,60,34,12,0.0 +25233,17,39,38,0.0 +25233,35,18,50,0.0 +25233,57,19.5,44,0.0 +25233,29,123.79,18,0.0 +25233,5,21.35,9,0.0 +25233,30,25.89,9,0.0 +25233,24,4.5,24,0.0 +25233,2,19,41,0.0 +25233,42,14,49,0.0 +25233,9,97,39,0.0 +25233,41,9.65,36,0.0 +25233,20,81,19,0.0 +25233,46,12,43,0.0 +25233,59,55,44,0.0 +25233,34,14,20,0.0 +25233,14,23.25,41,0.0 +25233,67,14,22,0.0 +25233,18,62.5,6,0.0 +25233,43,46,20,0.0 +25233,32,32,42,0.0 +25233,49,20,45,0.0 +25233,44,19.45,42,0.0 +25233,56,38,21,0.0 +25233,31,12.5,10,0.0 +25233,76,18,46,0.0 +25233,39,18,20,0.0 +25233,26,31.23,11,0.0 +25233,77,13,34,0.0 +25233,23,9,17,0.0 +25233,53,32.8,14,0.0 +25233,72,34.8,22,0.0 +25233,54,7.45,2,0.0 +25233,28,45.6,4,0.0 +25234,50,16.25,25,0.0 +25234,34,14,13,0.0 +25234,60,34,32,0.0 +25234,65,21.05,5,0.0 +25234,35,18,38,0.0 +25234,47,9.5,47,0.0 +25234,66,17,45,0.0 +25234,18,62.5,22,0.0 +25234,3,10,38,0.0 +25234,51,53,10,0.0 +25234,6,25,47,0.0 +25234,7,30,17,0.0 +25234,41,9.65,24,0.0 +25235,6,25,40,0.0 +25235,36,19,20,0.0 +25235,7,30,20,0.0 +25235,68,12.5,33,0.0 +25235,5,21.35,7,0.0 +25235,71,21.5,47,0.0 +25235,70,15,49,0.0 +25235,42,14,9,0.0 +25235,16,17.45,38,0.0 +25235,74,10,10,0.0 +25235,41,9.65,8,0.0 +25235,57,19.5,4,0.0 +25235,38,263.5,34,0.0 +25235,4,22,35,0.0 +25235,30,25.89,19,0.0 +25235,15,15.5,27,0.0 +25235,62,49.3,25,0.0 +25235,23,9,6,0.0 +25235,76,18,43,0.0 +25235,32,32,34,0.0 +25235,65,21.05,7,0.0 +25235,39,18,20,0.0 +25235,18,62.5,19,0.0 +25236,41,9.65,30,0.0 +25236,29,123.79,22,0.0 +25236,1,18,21,0.0 +25236,16,17.45,8,0.0 +25236,33,2.5,50,0.0 +25236,11,21,29,0.0 +25236,55,24,25,0.0 +25236,38,263.5,41,0.0 +25236,50,16.25,10,0.0 +25236,13,6,6,0.0 +25236,59,55,35,0.0 +25236,20,81,5,0.0 +25236,8,40,40,0.0 +25236,19,9.2,18,0.0 +25236,67,14,15,0.0 +25236,15,15.5,40,0.0 +25236,54,7.45,8,0.0 +25236,64,33.25,31,0.0 +25236,77,13,26,0.0 +25236,48,12.75,8,0.0 +25236,56,38,48,0.0 +25236,76,18,16,0.0 +25236,51,53,46,0.0 +25236,61,28.5,38,0.0 +25236,37,26,23,0.0 +25236,62,49.3,14,0.0 +25236,22,21,35,0.0 +25236,26,31.23,50,0.0 +25236,5,21.35,45,0.0 +25236,28,45.6,15,0.0 +25236,42,14,18,0.0 +25236,63,43.9,36,0.0 +25237,58,13.25,22,0.0 +25237,35,18,46,0.0 +25237,29,123.79,49,0.0 +25237,27,43.9,7,0.0 +25237,1,18,34,0.0 +25237,45,9.5,41,0.0 +25237,8,40,46,0.0 +25237,59,55,40,0.0 +25237,10,31,3,0.0 +25237,56,38,36,0.0 +25237,67,14,4,0.0 +25237,74,10,46,0.0 +25237,12,38,20,0.0 +25237,26,31.23,27,0.0 +25237,44,19.45,8,0.0 +25237,43,46,9,0.0 +25237,68,12.5,38,0.0 +25237,20,81,40,0.0 +25237,39,18,18,0.0 +25237,61,28.5,1,0.0 +25237,40,18.4,11,0.0 +25237,32,32,41,0.0 +25237,13,6,20,0.0 +25237,73,15,44,0.0 +25237,19,9.2,34,0.0 +25237,21,10,30,0.0 +25237,17,39,17,0.0 +25237,34,14,2,0.0 +25237,71,21.5,32,0.0 +25237,47,9.5,16,0.0 +25237,16,17.45,41,0.0 +25237,46,12,14,0.0 +25237,52,7,17,0.0 +25237,42,14,37,0.0 +25237,33,2.5,24,0.0 +25237,24,4.5,18,0.0 +25237,5,21.35,18,0.0 +25237,4,22,32,0.0 +25237,69,36,4,0.0 +25237,30,25.89,32,0.0 +25237,60,34,45,0.0 +25237,54,7.45,29,0.0 +25237,48,12.75,11,0.0 +25237,66,17,31,0.0 +25237,7,30,12,0.0 +25238,51,53,46,0.0 +25238,62,49.3,21,0.0 +25238,2,19,6,0.0 +25238,65,21.05,4,0.0 +25238,17,39,3,0.0 +25238,58,13.25,33,0.0 +25238,8,40,1,0.0 +25238,6,25,16,0.0 +25238,42,14,50,0.0 +25238,38,263.5,38,0.0 +25238,76,18,27,0.0 +25238,56,38,30,0.0 +25238,73,15,34,0.0 +25238,18,62.5,50,0.0 +25238,30,25.89,34,0.0 +25238,16,17.45,19,0.0 +25238,21,10,2,0.0 +25238,10,31,42,0.0 +25238,4,22,47,0.0 +25238,45,9.5,5,0.0 +25238,71,21.5,13,0.0 +25238,54,7.45,44,0.0 +25238,9,97,44,0.0 +25238,3,10,36,0.0 +25238,25,14,7,0.0 +25238,48,12.75,4,0.0 +25238,13,6,9,0.0 +25238,36,19,27,0.0 +25238,67,14,29,0.0 +25238,27,43.9,19,0.0 +25238,12,38,42,0.0 +25238,40,18.4,38,0.0 +25238,74,10,20,0.0 +25238,33,2.5,12,0.0 +25238,55,24,36,0.0 +25238,60,34,48,0.0 +25238,19,9.2,32,0.0 +25238,70,15,7,0.0 +25238,14,23.25,41,0.0 +25238,23,9,48,0.0 +25238,44,19.45,24,0.0 +25238,37,26,11,0.0 +25238,43,46,24,0.0 +25238,5,21.35,31,0.0 +25238,49,20,15,0.0 +25238,52,7,9,0.0 +25238,68,12.5,14,0.0 +25238,31,12.5,23,0.0 +25238,34,14,1,0.0 +25238,66,17,6,0.0 +25238,32,32,3,0.0 +25238,69,36,25,0.0 +25238,28,45.6,22,0.0 +25238,63,43.9,49,0.0 +25238,46,12,10,0.0 +25238,77,13,35,0.0 +25238,35,18,47,0.0 +25238,7,30,25,0.0 +25238,64,33.25,3,0.0 +25238,15,15.5,44,0.0 +25238,50,16.25,21,0.0 +25238,61,28.5,27,0.0 +25238,29,123.79,49,0.0 +25238,57,19.5,48,0.0 +25238,20,81,50,0.0 +25238,26,31.23,13,0.0 +25238,72,34.8,39,0.0 +25239,15,15.5,29,0.0 +25239,58,13.25,44,0.0 +25239,13,6,16,0.0 +25239,17,39,48,0.0 +25239,27,43.9,22,0.0 +25239,8,40,11,0.0 +25239,12,38,30,0.0 +25239,56,38,6,0.0 +25240,50,16.25,44,0.0 +25240,67,14,18,0.0 +25240,28,45.6,8,0.0 +25240,24,4.5,38,0.0 +25240,72,34.8,42,0.0 +25240,4,22,24,0.0 +25240,40,18.4,21,0.0 +25240,69,36,12,0.0 +25240,29,123.79,25,0.0 +25240,70,15,45,0.0 +25240,47,9.5,14,0.0 +25240,21,10,7,0.0 +25240,8,40,23,0.0 +25240,58,13.25,47,0.0 +25240,56,38,30,0.0 +25240,45,9.5,34,0.0 +25240,12,38,24,0.0 +25240,22,21,8,0.0 +25240,48,12.75,26,0.0 +25240,35,18,37,0.0 +25240,38,263.5,34,0.0 +25240,63,43.9,45,0.0 +25240,68,12.5,36,0.0 +25240,55,24,35,0.0 +25240,71,21.5,13,0.0 +25240,77,13,15,0.0 +25240,19,9.2,35,0.0 +25240,37,26,45,0.0 +25240,44,19.45,19,0.0 +25241,42,14,15,0.0 +25241,13,6,39,0.0 +25241,48,12.75,29,0.0 +25241,51,53,6,0.0 +25241,73,15,8,0.0 +25241,61,28.5,9,0.0 +25241,6,25,26,0.0 +25241,4,22,27,0.0 +25241,27,43.9,1,0.0 +25241,69,36,49,0.0 +25241,3,10,17,0.0 +25241,29,123.79,38,0.0 +25241,76,18,19,0.0 +25241,32,32,8,0.0 +25241,31,12.5,47,0.0 +25241,37,26,5,0.0 +25241,77,13,18,0.0 +25241,75,7.75,48,0.0 +25241,24,4.5,7,0.0 +25241,11,21,50,0.0 +25241,55,24,42,0.0 +25241,63,43.9,31,0.0 +25241,45,9.5,1,0.0 +25241,10,31,30,0.0 +25241,33,2.5,25,0.0 +25241,71,21.5,7,0.0 +25241,41,9.65,6,0.0 +25241,46,12,28,0.0 +25241,26,31.23,30,0.0 +25241,2,19,44,0.0 +25241,35,18,15,0.0 +25241,52,7,12,0.0 +25241,64,33.25,26,0.0 +25241,7,30,50,0.0 +25242,13,6,26,0.0 +25242,61,28.5,21,0.0 +25242,55,24,2,0.0 +25242,9,97,38,0.0 +25242,17,39,15,0.0 +25242,8,40,38,0.0 +25242,50,16.25,30,0.0 +25242,52,7,9,0.0 +25242,30,25.89,9,0.0 +25242,6,25,43,0.0 +25242,23,9,1,0.0 +25242,15,15.5,41,0.0 +25242,14,23.25,16,0.0 +25242,54,7.45,47,0.0 +25242,47,9.5,35,0.0 +25242,39,18,34,0.0 +25242,32,32,41,0.0 +25242,26,31.23,24,0.0 +25242,3,10,41,0.0 +25242,33,2.5,16,0.0 +25242,43,46,36,0.0 +25242,7,30,40,0.0 +25242,29,123.79,19,0.0 +25242,69,36,5,0.0 +25242,35,18,26,0.0 +25243,24,4.5,1,0.0 +25243,44,19.45,26,0.0 +25243,48,12.75,25,0.0 +25243,51,53,1,0.0 +25243,26,31.23,13,0.0 +25243,66,17,15,0.0 +25243,43,46,49,0.0 +25243,56,38,17,0.0 +25243,34,14,22,0.0 +25243,74,10,39,0.0 +25243,62,49.3,26,0.0 +25243,33,2.5,36,0.0 +25243,52,7,8,0.0 +25243,7,30,46,0.0 +25243,61,28.5,33,0.0 +25243,27,43.9,48,0.0 +25243,40,18.4,19,0.0 +25243,64,33.25,44,0.0 +25243,23,9,14,0.0 +25243,54,7.45,1,0.0 +25243,69,36,4,0.0 +25243,32,32,41,0.0 +25243,30,25.89,33,0.0 +25243,42,14,10,0.0 +25243,13,6,2,0.0 +25243,6,25,46,0.0 +25243,72,34.8,43,0.0 +25243,71,21.5,31,0.0 +25243,57,19.5,24,0.0 +25243,21,10,6,0.0 +25243,67,14,2,0.0 +25243,20,81,10,0.0 +25243,47,9.5,15,0.0 +25243,9,97,41,0.0 +25243,12,38,9,0.0 +25243,53,32.8,33,0.0 +25243,49,20,38,0.0 +25243,38,263.5,42,0.0 +25243,1,18,6,0.0 +25243,8,40,11,0.0 +25243,10,31,23,0.0 +25244,45,9.5,37,0.0 +25244,37,26,25,0.0 +25244,30,25.89,11,0.0 +25244,57,19.5,42,0.0 +25244,66,17,40,0.0 +25244,27,43.9,6,0.0 +25244,22,21,31,0.0 +25244,77,13,4,0.0 +25244,20,81,26,0.0 +25244,8,40,21,0.0 +25244,1,18,34,0.0 +25244,34,14,13,0.0 +25244,46,12,45,0.0 +25244,43,46,46,0.0 +25244,36,19,37,0.0 +25244,56,38,25,0.0 +25244,73,15,28,0.0 +25244,7,30,9,0.0 +25244,75,7.75,27,0.0 +25244,44,19.45,34,0.0 +25244,24,4.5,24,0.0 +25244,53,32.8,7,0.0 +25244,63,43.9,40,0.0 +25244,42,14,45,0.0 +25244,26,31.23,22,0.0 +25244,40,18.4,12,0.0 +25244,16,17.45,39,0.0 +25244,41,9.65,45,0.0 +25244,18,62.5,12,0.0 +25244,14,23.25,35,0.0 +25244,3,10,50,0.0 +25244,32,32,18,0.0 +25244,23,9,26,0.0 +25244,11,21,28,0.0 +25244,10,31,14,0.0 +25244,47,9.5,25,0.0 +25244,25,14,15,0.0 +25244,19,9.2,37,0.0 +25244,68,12.5,50,0.0 +25244,60,34,28,0.0 +25244,62,49.3,25,0.0 +25245,60,34,42,0.0 +25245,31,12.5,26,0.0 +25245,41,9.65,24,0.0 +25245,3,10,26,0.0 +25245,76,18,23,0.0 +25245,25,14,2,0.0 +25245,2,19,25,0.0 +25245,75,7.75,32,0.0 +25245,13,6,23,0.0 +25245,39,18,8,0.0 +25245,38,263.5,20,0.0 +25245,6,25,29,0.0 +25245,27,43.9,44,0.0 +25245,34,14,12,0.0 +25245,30,25.89,1,0.0 +25245,17,39,30,0.0 +25245,50,16.25,19,0.0 +25245,16,17.45,7,0.0 +25245,4,22,12,0.0 +25245,37,26,38,0.0 +25245,68,12.5,10,0.0 +25245,8,40,24,0.0 +25245,33,2.5,24,0.0 +25245,44,19.45,9,0.0 +25245,74,10,21,0.0 +25245,67,14,44,0.0 +25246,43,46,2,0.0 +25246,12,38,42,0.0 +25246,10,31,8,0.0 +25246,45,9.5,36,0.0 +25246,21,10,18,0.0 +25246,37,26,4,0.0 +25246,77,13,49,0.0 +25246,31,12.5,39,0.0 +25246,62,49.3,9,0.0 +25246,24,4.5,25,0.0 +25246,72,34.8,4,0.0 +25246,59,55,14,0.0 +25246,71,21.5,8,0.0 +25246,5,21.35,1,0.0 +25246,76,18,44,0.0 +25246,35,18,21,0.0 +25246,67,14,33,0.0 +25246,69,36,50,0.0 +25246,33,2.5,17,0.0 +25246,41,9.65,34,0.0 +25246,58,13.25,22,0.0 +25246,40,18.4,14,0.0 +25246,75,7.75,22,0.0 +25246,13,6,13,0.0 +25246,46,12,41,0.0 +25246,55,24,9,0.0 +25246,61,28.5,44,0.0 +25246,28,45.6,41,0.0 +25246,60,34,39,0.0 +25246,50,16.25,20,0.0 +25246,27,43.9,9,0.0 +25246,7,30,35,0.0 +25246,36,19,3,0.0 +25246,65,21.05,47,0.0 +25246,22,21,6,0.0 +25246,20,81,9,0.0 +25246,3,10,1,0.0 +25246,70,15,33,0.0 +25246,14,23.25,25,0.0 +25246,23,9,27,0.0 +25246,30,25.89,15,0.0 +25246,4,22,16,0.0 +25246,56,38,6,0.0 +25246,54,7.45,32,0.0 +25246,39,18,26,0.0 +25246,8,40,4,0.0 +25246,18,62.5,49,0.0 +25246,38,263.5,28,0.0 +25246,48,12.75,6,0.0 +25246,17,39,30,0.0 +25246,25,14,21,0.0 +25246,51,53,30,0.0 +25246,64,33.25,21,0.0 +25246,42,14,12,0.0 +25246,68,12.5,39,0.0 +25246,66,17,21,0.0 +25246,32,32,44,0.0 +25246,47,9.5,41,0.0 +25246,1,18,47,0.0 +25246,29,123.79,41,0.0 +25246,57,19.5,45,0.0 +25246,34,14,28,0.0 +25246,52,7,22,0.0 +25246,73,15,23,0.0 +25246,63,43.9,21,0.0 +25246,44,19.45,32,0.0 +25246,2,19,45,0.0 +25246,11,21,3,0.0 +25246,26,31.23,15,0.0 +25246,74,10,32,0.0 +25246,6,25,32,0.0 +25246,15,15.5,37,0.0 +25246,19,9.2,42,0.0 +25247,1,18,46,0.0 +25247,6,25,1,0.0 +25247,47,9.5,49,0.0 +25247,5,21.35,13,0.0 +25247,60,34,44,0.0 +25247,44,19.45,18,0.0 +25247,22,21,38,0.0 +25247,26,31.23,35,0.0 +25247,43,46,6,0.0 +25247,51,53,17,0.0 +25247,21,10,44,0.0 +25247,52,7,15,0.0 +25247,75,7.75,29,0.0 +25247,16,17.45,49,0.0 +25247,41,9.65,1,0.0 +25247,50,16.25,49,0.0 +25247,55,24,25,0.0 +25247,53,32.8,3,0.0 +25247,57,19.5,21,0.0 +25247,48,12.75,50,0.0 +25247,34,14,22,0.0 +25247,70,15,25,0.0 +25247,9,97,40,0.0 +25247,63,43.9,9,0.0 +25247,28,45.6,39,0.0 +25247,77,13,9,0.0 +25247,19,9.2,15,0.0 +25248,8,40,20,0.0 +25248,39,18,37,0.0 +25248,74,10,35,0.0 +25248,69,36,32,0.0 +25248,41,9.65,39,0.0 +25248,19,9.2,15,0.0 +25248,32,32,33,0.0 +25248,72,34.8,42,0.0 +25248,48,12.75,2,0.0 +25248,37,26,26,0.0 +25248,23,9,21,0.0 +25248,20,81,14,0.0 +25248,50,16.25,6,0.0 +25248,42,14,19,0.0 +25248,22,21,37,0.0 +25248,28,45.6,40,0.0 +25248,63,43.9,50,0.0 +25248,71,21.5,42,0.0 +25248,1,18,41,0.0 +25248,49,20,22,0.0 +25248,64,33.25,24,0.0 +25248,18,62.5,9,0.0 +25248,54,7.45,1,0.0 +25248,77,13,19,0.0 +25248,65,21.05,13,0.0 +25248,40,18.4,35,0.0 +25248,12,38,36,0.0 +25248,60,34,12,0.0 +25248,11,21,3,0.0 +25248,21,10,6,0.0 +25248,53,32.8,45,0.0 +25248,24,4.5,3,0.0 +25248,58,13.25,3,0.0 +25248,33,2.5,40,0.0 +25248,5,21.35,26,0.0 +25248,25,14,24,0.0 +25248,31,12.5,27,0.0 +25248,75,7.75,45,0.0 +25248,35,18,3,0.0 +25248,52,7,46,0.0 +25248,17,39,1,0.0 +25248,7,30,42,0.0 +25248,70,15,49,0.0 +25248,4,22,15,0.0 +25248,76,18,35,0.0 +25248,66,17,12,0.0 +25248,59,55,48,0.0 +25248,51,53,48,0.0 +25248,45,9.5,5,0.0 +25248,57,19.5,32,0.0 +25248,38,263.5,28,0.0 +25248,44,19.45,37,0.0 +25248,3,10,43,0.0 +25248,36,19,9,0.0 +25249,1,18,9,0.0 +25249,6,25,41,0.0 +25249,76,18,12,0.0 +25249,64,33.25,50,0.0 +25249,36,19,34,0.0 +25249,60,34,20,0.0 +25249,30,25.89,24,0.0 +25249,77,13,17,0.0 +25249,11,21,26,0.0 +25249,23,9,26,0.0 +25249,2,19,6,0.0 +25249,67,14,12,0.0 +25249,73,15,42,0.0 +25249,43,46,13,0.0 +25249,61,28.5,38,0.0 +25249,31,12.5,49,0.0 +25249,39,18,6,0.0 +25249,72,34.8,25,0.0 +25249,37,26,45,0.0 +25249,5,21.35,30,0.0 +25249,34,14,7,0.0 +25249,19,9.2,12,0.0 +25249,25,14,48,0.0 +25249,59,55,9,0.0 +25249,12,38,17,0.0 +25249,70,15,38,0.0 +25249,54,7.45,33,0.0 +25249,57,19.5,49,0.0 +25249,66,17,36,0.0 +25249,17,39,11,0.0 +25249,65,21.05,32,0.0 +25249,22,21,37,0.0 +25249,40,18.4,41,0.0 +25249,71,21.5,35,0.0 +25249,46,12,5,0.0 +25249,47,9.5,47,0.0 +25249,18,62.5,34,0.0 +25249,15,15.5,22,0.0 +25249,62,49.3,23,0.0 +25249,42,14,1,0.0 +25249,7,30,45,0.0 +25249,58,13.25,44,0.0 +25249,24,4.5,9,0.0 +25249,4,22,36,0.0 +25249,74,10,39,0.0 +25249,52,7,39,0.0 +25249,51,53,19,0.0 +25249,55,24,37,0.0 +25249,53,32.8,40,0.0 +25250,49,20,5,0.0 +25250,62,49.3,25,0.0 +25250,51,53,9,0.0 +25250,57,19.5,32,0.0 +25250,9,97,21,0.0 +25250,66,17,43,0.0 +25250,73,15,16,0.0 +25250,7,30,29,0.0 +25250,68,12.5,29,0.0 +25250,26,31.23,43,0.0 +25250,44,19.45,49,0.0 +25250,41,9.65,40,0.0 +25250,72,34.8,47,0.0 +25250,74,10,38,0.0 +25250,27,43.9,39,0.0 +25250,76,18,36,0.0 +25250,71,21.5,22,0.0 +25250,8,40,46,0.0 +25250,28,45.6,5,0.0 +25250,34,14,23,0.0 +25250,55,24,17,0.0 +25250,48,12.75,13,0.0 +25250,50,16.25,35,0.0 +25250,18,62.5,26,0.0 +25250,25,14,29,0.0 +25250,54,7.45,48,0.0 +25250,2,19,41,0.0 +25250,23,9,16,0.0 +25250,40,18.4,44,0.0 +25250,30,25.89,7,0.0 +25250,3,10,16,0.0 +25250,38,263.5,20,0.0 +25250,16,17.45,23,0.0 +25250,20,81,13,0.0 +25250,19,9.2,10,0.0 +25250,47,9.5,47,0.0 +25250,46,12,46,0.0 +25250,37,26,16,0.0 +25250,15,15.5,46,0.0 +25251,39,18,43,0.0 +25251,22,21,37,0.0 +25251,51,53,18,0.0 +25251,73,15,2,0.0 +25251,34,14,22,0.0 +25251,33,2.5,43,0.0 +25251,65,21.05,26,0.0 +25251,68,12.5,43,0.0 +25251,60,34,45,0.0 +25251,64,33.25,18,0.0 +25251,57,19.5,4,0.0 +25251,2,19,47,0.0 +25251,32,32,4,0.0 +25251,24,4.5,7,0.0 +25251,7,30,15,0.0 +25251,42,14,1,0.0 +25251,4,22,4,0.0 +25251,66,17,8,0.0 +25251,16,17.45,3,0.0 +25251,8,40,33,0.0 +25251,49,20,14,0.0 +25251,58,13.25,3,0.0 +25251,28,45.6,27,0.0 +25251,10,31,30,0.0 +25251,52,7,34,0.0 +25251,63,43.9,46,0.0 +25251,69,36,3,0.0 +25251,14,23.25,50,0.0 +25251,77,13,31,0.0 +25251,47,9.5,8,0.0 +25251,59,55,44,0.0 +25251,61,28.5,33,0.0 +25251,44,19.45,29,0.0 +25251,18,62.5,19,0.0 +25251,31,12.5,45,0.0 +25251,30,25.89,25,0.0 +25251,21,10,16,0.0 +25251,55,24,30,0.0 +25251,3,10,28,0.0 +25251,19,9.2,20,0.0 +25251,27,43.9,5,0.0 +25252,11,21,1,0.0 +25252,30,25.89,30,0.0 +25252,24,4.5,15,0.0 +25252,18,62.5,31,0.0 +25252,41,9.65,37,0.0 +25252,19,9.2,43,0.0 +25252,60,34,16,0.0 +25252,20,81,37,0.0 +25252,2,19,9,0.0 +25252,38,263.5,7,0.0 +25252,69,36,32,0.0 +25252,36,19,24,0.0 +25252,56,38,11,0.0 +25252,70,15,43,0.0 +25252,10,31,45,0.0 +25252,35,18,18,0.0 +25252,58,13.25,33,0.0 +25252,68,12.5,25,0.0 +25252,62,49.3,7,0.0 +25252,31,12.5,35,0.0 +25252,61,28.5,26,0.0 +25252,12,38,17,0.0 +25252,6,25,20,0.0 +25252,4,22,48,0.0 +25252,50,16.25,32,0.0 +25252,71,21.5,37,0.0 +25252,5,21.35,37,0.0 +25252,66,17,22,0.0 +25252,27,43.9,38,0.0 +25252,23,9,10,0.0 +25252,13,6,9,0.0 +25252,28,45.6,35,0.0 +25252,33,2.5,23,0.0 +25252,67,14,34,0.0 +25252,7,30,35,0.0 +25252,9,97,13,0.0 +25252,14,23.25,3,0.0 +25252,51,53,13,0.0 +25252,17,39,8,0.0 +25252,8,40,18,0.0 +25252,39,18,30,0.0 +25252,1,18,11,0.0 +25252,47,9.5,2,0.0 +25252,73,15,6,0.0 +25252,75,7.75,2,0.0 +25252,54,7.45,26,0.0 +25252,22,21,48,0.0 +25252,46,12,6,0.0 +25252,25,14,48,0.0 +25252,37,26,48,0.0 +25252,59,55,32,0.0 +25252,55,24,35,0.0 +25252,53,32.8,32,0.0 +25252,34,14,50,0.0 +25253,18,62.5,6,0.0 +25253,58,13.25,22,0.0 +25253,25,14,20,0.0 +25253,74,10,5,0.0 +25253,35,18,20,0.0 +25253,30,25.89,14,0.0 +25253,43,46,18,0.0 +25253,36,19,42,0.0 +25253,50,16.25,9,0.0 +25253,77,13,21,0.0 +25253,72,34.8,6,0.0 +25253,56,38,25,0.0 +25253,54,7.45,7,0.0 +25253,34,14,4,0.0 +25253,14,23.25,38,0.0 +25253,69,36,12,0.0 +25253,10,31,30,0.0 +25253,41,9.65,47,0.0 +25253,4,22,10,0.0 +25253,19,9.2,20,0.0 +25253,66,17,34,0.0 +25253,31,12.5,44,0.0 +25253,9,97,38,0.0 +25253,7,30,33,0.0 +25253,63,43.9,35,0.0 +25253,44,19.45,41,0.0 +25253,52,7,4,0.0 +25253,20,81,47,0.0 +25253,13,6,50,0.0 +25253,5,21.35,18,0.0 +25253,27,43.9,11,0.0 +25253,45,9.5,32,0.0 +25253,15,15.5,21,0.0 +25253,38,263.5,46,0.0 +25253,60,34,12,0.0 +25253,22,21,48,0.0 +25253,42,14,14,0.0 +25253,47,9.5,26,0.0 +25253,17,39,6,0.0 +25253,67,14,36,0.0 +25253,6,25,35,0.0 +25253,32,32,38,0.0 +25253,24,4.5,4,0.0 +25253,64,33.25,33,0.0 +25253,57,19.5,46,0.0 +25253,68,12.5,15,0.0 +25253,16,17.45,5,0.0 +25253,37,26,32,0.0 +25253,2,19,45,0.0 +25253,53,32.8,10,0.0 +25253,8,40,5,0.0 +25254,13,6,45,0.0 +25254,6,25,32,0.0 +25254,56,38,37,0.0 +25254,43,46,14,0.0 +25254,69,36,23,0.0 +25254,8,40,46,0.0 +25254,11,21,37,0.0 +25254,19,9.2,3,0.0 +25254,31,12.5,46,0.0 +25254,33,2.5,15,0.0 +25254,15,15.5,32,0.0 +25254,38,263.5,15,0.0 +25254,17,39,24,0.0 +25254,55,24,41,0.0 +25254,39,18,16,0.0 +25254,18,62.5,42,0.0 +25254,32,32,9,0.0 +25254,75,7.75,49,0.0 +25254,5,21.35,29,0.0 +25254,34,14,39,0.0 +25254,3,10,2,0.0 +25254,60,34,20,0.0 +25254,37,26,14,0.0 +25254,30,25.89,31,0.0 +25254,36,19,43,0.0 +25254,77,13,12,0.0 +25254,73,15,48,0.0 +25254,65,21.05,46,0.0 +25254,54,7.45,25,0.0 +25254,67,14,39,0.0 +25254,24,4.5,5,0.0 +25254,21,10,27,0.0 +25254,20,81,46,0.0 +25254,57,19.5,10,0.0 +25254,52,7,11,0.0 +25254,61,28.5,23,0.0 +25254,16,17.45,42,0.0 +25254,41,9.65,22,0.0 +25254,23,9,17,0.0 +25254,10,31,33,0.0 +25254,35,18,19,0.0 +25254,48,12.75,40,0.0 +25254,22,21,35,0.0 +25254,70,15,25,0.0 +25254,53,32.8,35,0.0 +25254,25,14,15,0.0 +25254,63,43.9,44,0.0 +25254,46,12,34,0.0 +25254,76,18,24,0.0 +25254,72,34.8,17,0.0 +25254,58,13.25,16,0.0 +25254,40,18.4,3,0.0 +25254,2,19,4,0.0 +25254,12,38,1,0.0 +25254,9,97,49,0.0 +25254,68,12.5,35,0.0 +25254,66,17,48,0.0 +25254,62,49.3,45,0.0 +25254,47,9.5,2,0.0 +25254,59,55,36,0.0 +25254,29,123.79,42,0.0 +25254,14,23.25,18,0.0 +25254,1,18,11,0.0 +25254,45,9.5,3,0.0 +25254,4,22,49,0.0 +25254,50,16.25,20,0.0 +25254,26,31.23,10,0.0 +25254,49,20,44,0.0 +25254,42,14,10,0.0 +25255,54,7.45,4,0.0 +25255,22,21,45,0.0 +25255,10,31,32,0.0 +25255,57,19.5,32,0.0 +25255,44,19.45,10,0.0 +25255,56,38,44,0.0 +25255,77,13,23,0.0 +25255,31,12.5,37,0.0 +25255,5,21.35,21,0.0 +25255,14,23.25,13,0.0 +25255,74,10,4,0.0 +25255,35,18,6,0.0 +25255,63,43.9,8,0.0 +25255,15,15.5,4,0.0 +25256,44,19.45,25,0.0 +25256,66,17,20,0.0 +25256,45,9.5,14,0.0 +25256,63,43.9,2,0.0 +25256,62,49.3,31,0.0 +25256,38,263.5,22,0.0 +25256,18,62.5,8,0.0 +25256,42,14,10,0.0 +25256,2,19,7,0.0 +25256,74,10,2,0.0 +25256,48,12.75,19,0.0 +25257,54,7.45,31,0.0 +25257,74,10,29,0.0 +25257,57,19.5,3,0.0 +25257,35,18,2,0.0 +25257,15,15.5,14,0.0 +25257,11,21,20,0.0 +25257,71,21.5,28,0.0 +25257,38,263.5,31,0.0 +25257,13,6,37,0.0 +25257,26,31.23,47,0.0 +25257,18,62.5,4,0.0 +25257,62,49.3,4,0.0 +25257,6,25,45,0.0 +25257,69,36,30,0.0 +25257,56,38,49,0.0 +25257,23,9,20,0.0 +25257,17,39,33,0.0 +25257,22,21,37,0.0 +25257,39,18,9,0.0 +25257,30,25.89,27,0.0 +25257,3,10,21,0.0 +25257,60,34,20,0.0 +25257,19,9.2,13,0.0 +25257,34,14,45,0.0 +25257,53,32.8,6,0.0 +25257,33,2.5,30,0.0 +25257,7,30,33,0.0 +25257,1,18,47,0.0 +25257,28,45.6,50,0.0 +25257,45,9.5,43,0.0 +25257,59,55,27,0.0 +25257,10,31,23,0.0 +25257,49,20,48,0.0 +25257,65,21.05,37,0.0 +25257,25,14,33,0.0 +25257,44,19.45,23,0.0 +25257,52,7,16,0.0 +25257,77,13,20,0.0 +25257,40,18.4,34,0.0 +25257,5,21.35,9,0.0 +25257,43,46,43,0.0 +25257,24,4.5,31,0.0 +25257,63,43.9,46,0.0 +25257,12,38,4,0.0 +25257,70,15,6,0.0 +25257,55,24,36,0.0 +25257,58,13.25,12,0.0 +25257,61,28.5,14,0.0 +25257,27,43.9,17,0.0 +25257,29,123.79,27,0.0 +25257,64,33.25,3,0.0 +25257,47,9.5,25,0.0 +25257,72,34.8,7,0.0 +25257,48,12.75,38,0.0 +25257,37,26,5,0.0 +25258,33,2.5,16,0.0 +25258,37,26,11,0.0 +25258,62,49.3,7,0.0 +25258,20,81,23,0.0 +25258,28,45.6,14,0.0 +25258,53,32.8,27,0.0 +25258,39,18,30,0.0 +25258,41,9.65,30,0.0 +25258,1,18,18,0.0 +25258,31,12.5,30,0.0 +25258,5,21.35,34,0.0 +25258,25,14,14,0.0 +25258,46,12,41,0.0 +25258,70,15,39,0.0 +25258,26,31.23,6,0.0 +25258,4,22,34,0.0 +25258,52,7,41,0.0 +25258,13,6,25,0.0 +25258,10,31,43,0.0 +25258,44,19.45,38,0.0 +25258,47,9.5,23,0.0 +25258,12,38,23,0.0 +25258,23,9,17,0.0 +25258,16,17.45,9,0.0 +25258,6,25,50,0.0 +25259,43,46,6,0.0 +25259,14,23.25,43,0.0 +25259,72,34.8,30,0.0 +25259,53,32.8,40,0.0 +25259,52,7,16,0.0 +25259,13,6,44,0.0 +25259,30,25.89,17,0.0 +25259,54,7.45,26,0.0 +25259,47,9.5,14,0.0 +25259,39,18,36,0.0 +25259,58,13.25,45,0.0 +25259,59,55,21,0.0 +25259,34,14,8,0.0 +25259,77,13,20,0.0 +25259,33,2.5,36,0.0 +25259,76,18,37,0.0 +25259,16,17.45,49,0.0 +25259,20,81,46,0.0 +25259,1,18,34,0.0 +25259,56,38,30,0.0 +25259,45,9.5,1,0.0 +25259,12,38,1,0.0 +25259,27,43.9,36,0.0 +25259,35,18,20,0.0 +25259,74,10,29,0.0 +25259,62,49.3,15,0.0 +25259,48,12.75,32,0.0 +25259,28,45.6,21,0.0 +25259,3,10,47,0.0 +25259,70,15,48,0.0 +25259,69,36,1,0.0 +25259,63,43.9,43,0.0 +25259,73,15,11,0.0 +25259,51,53,42,0.0 +25259,23,9,48,0.0 +25259,9,97,41,0.0 +25259,67,14,9,0.0 +25259,60,34,25,0.0 +25259,24,4.5,29,0.0 +25259,57,19.5,35,0.0 +25259,25,14,28,0.0 +25259,18,62.5,13,0.0 +25259,55,24,50,0.0 +25259,46,12,40,0.0 +25259,42,14,38,0.0 +25259,17,39,30,0.0 +25259,71,21.5,18,0.0 +25259,37,26,49,0.0 +25259,49,20,46,0.0 +25259,44,19.45,21,0.0 +25259,6,25,1,0.0 +25259,22,21,39,0.0 +25260,44,19.45,31,0.0 +25260,9,97,44,0.0 +25260,33,2.5,39,0.0 +25260,42,14,37,0.0 +25260,55,24,25,0.0 +25260,41,9.65,35,0.0 +25260,39,18,27,0.0 +25260,10,31,19,0.0 +25260,22,21,21,0.0 +25261,27,43.9,22,0.0 +25261,57,19.5,24,0.0 +25261,68,12.5,50,0.0 +25261,39,18,6,0.0 +25261,34,14,33,0.0 +25261,23,9,46,0.0 +25261,29,123.79,37,0.0 +25262,22,21,19,0.0 +25262,20,81,48,0.0 +25262,45,9.5,29,0.0 +25262,34,14,23,0.0 +25262,66,17,20,0.0 +25262,18,62.5,24,0.0 +25262,39,18,22,0.0 +25262,58,13.25,3,0.0 +25262,52,7,22,0.0 +25262,69,36,38,0.0 +25262,72,34.8,11,0.0 +25262,77,13,42,0.0 +25262,49,20,24,0.0 +25262,37,26,5,0.0 +25262,40,18.4,27,0.0 +25262,62,49.3,36,0.0 +25262,28,45.6,11,0.0 +25262,61,28.5,28,0.0 +25262,67,14,14,0.0 +25262,21,10,28,0.0 +25262,48,12.75,15,0.0 +25262,30,25.89,7,0.0 +25262,56,38,13,0.0 +25262,31,12.5,26,0.0 +25262,27,43.9,26,0.0 +25262,4,22,50,0.0 +25262,42,14,19,0.0 +25262,65,21.05,19,0.0 +25262,1,18,45,0.0 +25262,9,97,30,0.0 +25262,76,18,15,0.0 +25262,55,24,8,0.0 +25262,19,9.2,4,0.0 +25262,12,38,45,0.0 +25262,5,21.35,48,0.0 +25262,54,7.45,30,0.0 +25262,33,2.5,25,0.0 +25262,44,19.45,6,0.0 +25262,13,6,19,0.0 +25263,66,17,40,0.0 +25263,73,15,3,0.0 +25263,61,28.5,1,0.0 +25263,52,7,5,0.0 +25263,16,17.45,23,0.0 +25263,9,97,30,0.0 +25263,14,23.25,10,0.0 +25264,38,263.5,1,0.0 +25264,35,18,39,0.0 +25264,73,15,9,0.0 +25264,49,20,36,0.0 +25264,45,9.5,1,0.0 +25264,17,39,16,0.0 +25264,67,14,19,0.0 +25264,57,19.5,2,0.0 +25264,10,31,18,0.0 +25264,44,19.45,17,0.0 +25264,12,38,22,0.0 +25264,61,28.5,19,0.0 +25264,72,34.8,48,0.0 +25264,36,19,33,0.0 +25264,21,10,6,0.0 +25264,66,17,27,0.0 +25264,13,6,28,0.0 +25264,6,25,7,0.0 +25264,14,23.25,3,0.0 +25264,18,62.5,26,0.0 +25264,59,55,6,0.0 +25264,24,4.5,7,0.0 +25264,43,46,37,0.0 +25264,50,16.25,12,0.0 +25264,55,24,41,0.0 +25264,69,36,49,0.0 +25264,58,13.25,46,0.0 +25264,40,18.4,41,0.0 +25264,54,7.45,10,0.0 +25264,51,53,28,0.0 +25264,25,14,24,0.0 +25264,62,49.3,36,0.0 +25264,8,40,28,0.0 +25264,2,19,10,0.0 +25264,56,38,30,0.0 +25264,47,9.5,4,0.0 +25265,22,21,38,0.0 +25265,29,123.79,30,0.0 +25265,60,34,17,0.0 +25265,72,34.8,47,0.0 +25265,38,263.5,32,0.0 +25265,34,14,50,0.0 +25265,63,43.9,36,0.0 +25265,33,2.5,3,0.0 +25265,10,31,44,0.0 +25265,40,18.4,36,0.0 +25265,42,14,40,0.0 +25265,65,21.05,37,0.0 +25265,8,40,50,0.0 +25265,27,43.9,31,0.0 +25265,77,13,10,0.0 +25265,44,19.45,35,0.0 +25265,71,21.5,3,0.0 +25265,39,18,19,0.0 +25265,28,45.6,4,0.0 +25265,9,97,22,0.0 +25265,55,24,50,0.0 +25265,1,18,5,0.0 +25265,20,81,11,0.0 +25265,68,12.5,40,0.0 +25265,61,28.5,20,0.0 +25265,73,15,11,0.0 +25265,67,14,12,0.0 +25265,2,19,3,0.0 +25265,12,38,17,0.0 +25265,51,53,1,0.0 +25265,43,46,10,0.0 +25265,15,15.5,35,0.0 +25265,30,25.89,15,0.0 +25265,37,26,26,0.0 +25265,14,23.25,50,0.0 +25265,54,7.45,47,0.0 +25265,52,7,43,0.0 +25266,46,12,4,0.0 +25266,7,30,37,0.0 +25266,66,17,34,0.0 +25266,3,10,16,0.0 +25267,29,123.79,45,0.0 +25267,27,43.9,11,0.0 +25267,18,62.5,40,0.0 +25267,23,9,25,0.0 +25267,62,49.3,48,0.0 +25267,46,12,8,0.0 +25267,15,15.5,13,0.0 +25267,44,19.45,10,0.0 +25267,19,9.2,1,0.0 +25267,17,39,15,0.0 +25267,74,10,25,0.0 +25267,7,30,45,0.0 +25267,73,15,44,0.0 +25267,49,20,23,0.0 +25267,76,18,22,0.0 +25267,37,26,36,0.0 +25267,36,19,26,0.0 +25267,1,18,31,0.0 +25267,33,2.5,8,0.0 +25267,48,12.75,18,0.0 +25267,71,21.5,33,0.0 +25267,14,23.25,32,0.0 +25267,26,31.23,23,0.0 +25267,55,24,26,0.0 +25267,35,18,22,0.0 +25267,69,36,44,0.0 +25267,47,9.5,24,0.0 +25267,54,7.45,40,0.0 +25267,68,12.5,49,0.0 +25267,40,18.4,25,0.0 +25267,57,19.5,1,0.0 +25267,21,10,41,0.0 +25267,53,32.8,15,0.0 +25267,42,14,48,0.0 +25267,41,9.65,2,0.0 +25267,6,25,29,0.0 +25267,10,31,11,0.0 +25267,5,21.35,41,0.0 +25267,34,14,23,0.0 +25267,50,16.25,13,0.0 +25267,22,21,46,0.0 +25267,72,34.8,40,0.0 +25267,52,7,1,0.0 +25267,3,10,18,0.0 +25267,59,55,31,0.0 +25267,65,21.05,46,0.0 +25267,16,17.45,26,0.0 +25267,64,33.25,19,0.0 +25267,61,28.5,9,0.0 +25267,13,6,1,0.0 +25267,66,17,23,0.0 +25267,4,22,22,0.0 +25267,12,38,49,0.0 +25267,28,45.6,40,0.0 +25267,31,12.5,36,0.0 +25267,60,34,30,0.0 +25267,45,9.5,18,0.0 +25267,43,46,14,0.0 +25267,58,13.25,31,0.0 +25267,67,14,20,0.0 +25267,30,25.89,28,0.0 +25267,70,15,38,0.0 +25267,39,18,32,0.0 +25267,11,21,11,0.0 +25267,38,263.5,39,0.0 +25267,8,40,7,0.0 +25267,56,38,13,0.0 +25268,3,10,5,0.0 +25268,44,19.45,42,0.0 +25268,25,14,4,0.0 +25268,2,19,3,0.0 +25268,13,6,43,0.0 +25268,72,34.8,38,0.0 +25268,28,45.6,25,0.0 +25268,16,17.45,2,0.0 +25268,41,9.65,30,0.0 +25268,37,26,16,0.0 +25268,59,55,34,0.0 +25268,6,25,50,0.0 +25268,43,46,24,0.0 +25268,12,38,4,0.0 +25268,57,19.5,21,0.0 +25268,23,9,7,0.0 +25268,40,18.4,44,0.0 +25268,45,9.5,24,0.0 +25268,61,28.5,48,0.0 +25268,46,12,36,0.0 +25268,47,9.5,8,0.0 +25268,53,32.8,37,0.0 +25268,62,49.3,11,0.0 +25268,58,13.25,19,0.0 +25268,20,81,34,0.0 +25268,55,24,31,0.0 +25268,21,10,41,0.0 +25268,67,14,27,0.0 +25268,27,43.9,17,0.0 +25269,10,31,11,0.0 +25269,76,18,8,0.0 +25269,19,9.2,23,0.0 +25269,75,7.75,38,0.0 +25269,43,46,30,0.0 +25269,33,2.5,4,0.0 +25269,30,25.89,43,0.0 +25269,14,23.25,14,0.0 +25269,44,19.45,41,0.0 +25269,47,9.5,49,0.0 +25269,63,43.9,36,0.0 +25269,41,9.65,23,0.0 +25269,1,18,14,0.0 +25269,57,19.5,13,0.0 +25269,22,21,33,0.0 +25269,15,15.5,10,0.0 +25269,23,9,31,0.0 +25269,46,12,6,0.0 +25269,74,10,2,0.0 +25269,39,18,3,0.0 +25269,20,81,38,0.0 +25269,65,21.05,16,0.0 +25269,18,62.5,22,0.0 +25269,49,20,42,0.0 +25269,53,32.8,5,0.0 +25269,62,49.3,36,0.0 +25269,68,12.5,14,0.0 +25269,51,53,1,0.0 +25269,60,34,40,0.0 +25269,69,36,44,0.0 +25269,40,18.4,7,0.0 +25269,52,7,33,0.0 +25269,24,4.5,15,0.0 +25269,2,19,28,0.0 +25269,31,12.5,40,0.0 +25269,25,14,45,0.0 +25269,8,40,1,0.0 +25269,37,26,44,0.0 +25269,45,9.5,1,0.0 +25269,13,6,39,0.0 +25269,11,21,15,0.0 +25269,58,13.25,17,0.0 +25269,3,10,37,0.0 +25269,67,14,37,0.0 +25269,61,28.5,44,0.0 +25269,38,263.5,5,0.0 +25269,17,39,7,0.0 +25269,27,43.9,16,0.0 +25269,66,17,47,0.0 +25270,8,40,30,0.0 +25270,60,34,21,0.0 +25270,57,19.5,46,0.0 +25270,72,34.8,33,0.0 +25270,43,46,28,0.0 +25270,31,12.5,47,0.0 +25270,70,15,8,0.0 +25270,32,32,12,0.0 +25270,53,32.8,27,0.0 +25270,37,26,27,0.0 +25270,51,53,34,0.0 +25270,40,18.4,10,0.0 +25270,11,21,8,0.0 +25270,18,62.5,9,0.0 +25270,64,33.25,17,0.0 +25270,6,25,1,0.0 +25270,68,12.5,33,0.0 +25270,3,10,16,0.0 +25270,63,43.9,25,0.0 +25270,67,14,2,0.0 +25270,66,17,39,0.0 +25270,29,123.79,43,0.0 +25270,34,14,4,0.0 +25270,44,19.45,38,0.0 +25270,28,45.6,9,0.0 +25270,50,16.25,50,0.0 +25270,39,18,9,0.0 +25270,19,9.2,1,0.0 +25271,6,25,37,0.0 +25271,25,14,26,0.0 +25272,57,19.5,45,0.0 +25272,4,22,19,0.0 +25272,43,46,35,0.0 +25272,56,38,16,0.0 +25272,49,20,13,0.0 +25272,62,49.3,36,0.0 +25272,32,32,48,0.0 +25272,37,26,28,0.0 +25272,44,19.45,13,0.0 +25272,21,10,21,0.0 +25272,25,14,50,0.0 +25272,5,21.35,16,0.0 +25272,76,18,10,0.0 +25272,24,4.5,35,0.0 +25272,45,9.5,17,0.0 +25272,63,43.9,5,0.0 +25272,16,17.45,16,0.0 +25272,38,263.5,11,0.0 +25272,70,15,22,0.0 +25272,75,7.75,35,0.0 +25272,22,21,23,0.0 +25272,69,36,3,0.0 +25272,9,97,6,0.0 +25272,36,19,6,0.0 +25272,71,21.5,25,0.0 +25272,8,40,7,0.0 +25272,23,9,40,0.0 +25272,14,23.25,49,0.0 +25272,59,55,40,0.0 +25272,28,45.6,5,0.0 +25272,20,81,26,0.0 +25272,41,9.65,49,0.0 +25272,50,16.25,29,0.0 +25272,55,24,35,0.0 +25272,74,10,41,0.0 +25272,46,12,23,0.0 +25272,53,32.8,20,0.0 +25272,17,39,12,0.0 +25272,6,25,12,0.0 +25272,33,2.5,50,0.0 +25272,34,14,41,0.0 +25272,13,6,28,0.0 +25272,1,18,36,0.0 +25272,35,18,5,0.0 +25272,64,33.25,8,0.0 +25272,12,38,16,0.0 +25272,48,12.75,27,0.0 +25273,10,31,9,0.0 +25274,57,19.5,22,0.0 +25274,50,16.25,49,0.0 +25274,27,43.9,41,0.0 +25274,58,13.25,45,0.0 +25274,69,36,49,0.0 +25274,77,13,39,0.0 +25274,54,7.45,31,0.0 +25274,44,19.45,28,0.0 +25274,76,18,18,0.0 +25274,28,45.6,19,0.0 +25274,18,62.5,16,0.0 +25274,62,49.3,22,0.0 +25274,45,9.5,39,0.0 +25274,34,14,46,0.0 +25274,64,33.25,22,0.0 +25274,59,55,19,0.0 +25274,25,14,8,0.0 +25274,30,25.89,50,0.0 +25274,26,31.23,30,0.0 +25274,42,14,50,0.0 +25274,12,38,19,0.0 +25274,75,7.75,7,0.0 +25274,24,4.5,33,0.0 +25274,5,21.35,33,0.0 +25274,39,18,45,0.0 +25274,8,40,26,0.0 +25274,46,12,22,0.0 +25274,33,2.5,41,0.0 +25274,56,38,16,0.0 +25274,67,14,13,0.0 +25274,17,39,6,0.0 +25274,65,21.05,40,0.0 +25274,1,18,13,0.0 +25274,14,23.25,14,0.0 +25274,4,22,34,0.0 +25274,6,25,2,0.0 +25274,16,17.45,43,0.0 +25274,60,34,45,0.0 +25274,51,53,20,0.0 +25274,47,9.5,1,0.0 +25274,71,21.5,30,0.0 +25274,40,18.4,30,0.0 +25274,38,263.5,21,0.0 +25274,55,24,31,0.0 +25274,49,20,1,0.0 +25274,48,12.75,23,0.0 +25274,35,18,45,0.0 +25274,3,10,12,0.0 +25274,74,10,28,0.0 +25274,52,7,35,0.0 +25274,9,97,14,0.0 +25274,41,9.65,18,0.0 +25274,63,43.9,47,0.0 +25274,61,28.5,21,0.0 +25274,2,19,1,0.0 +25274,7,30,19,0.0 +25274,22,21,27,0.0 +25274,21,10,35,0.0 +25274,37,26,7,0.0 +25274,11,21,3,0.0 +25274,70,15,9,0.0 +25274,32,32,2,0.0 +25274,13,6,30,0.0 +25274,19,9.2,12,0.0 +25274,31,12.5,25,0.0 +25274,15,15.5,19,0.0 +25274,73,15,23,0.0 +25274,66,17,9,0.0 +25274,23,9,1,0.0 +25274,29,123.79,25,0.0 +25274,72,34.8,11,0.0 +25274,36,19,37,0.0 +25274,53,32.8,32,0.0 +25274,68,12.5,15,0.0 +25275,72,34.8,27,0.0 +25275,45,9.5,50,0.0 +25275,53,32.8,28,0.0 +25275,24,4.5,39,0.0 +25275,67,14,45,0.0 +25275,3,10,23,0.0 +25275,75,7.75,7,0.0 +25275,65,21.05,25,0.0 +25275,70,15,6,0.0 +25275,14,23.25,6,0.0 +25275,73,15,38,0.0 +25275,1,18,18,0.0 +25275,5,21.35,19,0.0 +25275,49,20,4,0.0 +25275,52,7,39,0.0 +25275,57,19.5,1,0.0 +25276,15,15.5,21,0.0 +25276,29,123.79,3,0.0 +25276,52,7,29,0.0 +25276,55,24,39,0.0 +25276,58,13.25,20,0.0 +25276,11,21,43,0.0 +25276,68,12.5,5,0.0 +25276,9,97,15,0.0 +25276,47,9.5,11,0.0 +25276,49,20,16,0.0 +25276,73,15,45,0.0 +25276,7,30,13,0.0 +25276,53,32.8,30,0.0 +25276,28,45.6,40,0.0 +25276,38,263.5,47,0.0 +25276,23,9,50,0.0 +25276,39,18,35,0.0 +25276,36,19,23,0.0 +25276,50,16.25,50,0.0 +25276,27,43.9,21,0.0 +25276,30,25.89,10,0.0 +25276,24,4.5,13,0.0 +25276,3,10,6,0.0 +25276,48,12.75,35,0.0 +25276,72,34.8,45,0.0 +25276,16,17.45,38,0.0 +25276,61,28.5,10,0.0 +25276,43,46,5,0.0 +25276,54,7.45,47,0.0 +25276,67,14,11,0.0 +25276,37,26,16,0.0 +25276,17,39,46,0.0 +25276,42,14,19,0.0 +25276,41,9.65,38,0.0 +25276,18,62.5,25,0.0 +25276,57,19.5,31,0.0 +25276,77,13,16,0.0 +25276,71,21.5,19,0.0 +25276,32,32,26,0.0 +25276,2,19,8,0.0 +25276,51,53,12,0.0 +25276,59,55,42,0.0 +25276,14,23.25,9,0.0 +25276,66,17,19,0.0 +25276,25,14,6,0.0 +25276,5,21.35,20,0.0 +25276,8,40,8,0.0 +25276,10,31,36,0.0 +25276,45,9.5,49,0.0 +25276,22,21,35,0.0 +25276,64,33.25,14,0.0 +25276,70,15,23,0.0 +25276,1,18,7,0.0 +25276,12,38,17,0.0 +25276,31,12.5,38,0.0 +25276,40,18.4,1,0.0 +25276,75,7.75,12,0.0 +25276,4,22,44,0.0 +25276,19,9.2,11,0.0 +25276,26,31.23,24,0.0 +25276,6,25,35,0.0 +25276,60,34,3,0.0 +25276,33,2.5,43,0.0 +25276,65,21.05,6,0.0 +25276,34,14,50,0.0 +25276,69,36,30,0.0 +25276,63,43.9,39,0.0 +25276,56,38,11,0.0 +25276,21,10,3,0.0 +25276,62,49.3,8,0.0 +25276,35,18,17,0.0 +25276,74,10,13,0.0 +25277,66,17,35,0.0 +25277,69,36,46,0.0 +25277,10,31,7,0.0 +25277,58,13.25,48,0.0 +25277,46,12,11,0.0 +25277,50,16.25,5,0.0 +25277,22,21,6,0.0 +25277,14,23.25,46,0.0 +25277,12,38,13,0.0 +25277,15,15.5,19,0.0 +25277,29,123.79,44,0.0 +25277,72,34.8,43,0.0 +25277,76,18,34,0.0 +25277,62,49.3,19,0.0 +25277,54,7.45,17,0.0 +25277,32,32,24,0.0 +25277,4,22,29,0.0 +25278,42,14,14,0.0 +25278,15,15.5,23,0.0 +25278,37,26,18,0.0 +25278,21,10,2,0.0 +25278,77,13,36,0.0 +25278,70,15,35,0.0 +25278,26,31.23,13,0.0 +25278,67,14,14,0.0 +25278,47,9.5,44,0.0 +25278,55,24,48,0.0 +25278,20,81,19,0.0 +25278,2,19,22,0.0 +25278,5,21.35,14,0.0 +25278,68,12.5,36,0.0 +25278,62,49.3,20,0.0 +25278,66,17,37,0.0 +25278,59,55,14,0.0 +25278,29,123.79,43,0.0 +25278,58,13.25,13,0.0 +25278,11,21,15,0.0 +25278,39,18,20,0.0 +25278,53,32.8,45,0.0 +25278,73,15,35,0.0 +25278,31,12.5,1,0.0 +25278,25,14,10,0.0 +25278,33,2.5,38,0.0 +25278,56,38,40,0.0 +25278,3,10,36,0.0 +25278,74,10,24,0.0 +25278,54,7.45,33,0.0 +25278,22,21,10,0.0 +25278,23,9,12,0.0 +25278,44,19.45,42,0.0 +25278,65,21.05,30,0.0 +25278,10,31,30,0.0 +25278,76,18,11,0.0 +25278,52,7,37,0.0 +25278,57,19.5,49,0.0 +25278,61,28.5,14,0.0 +25278,72,34.8,15,0.0 +25278,9,97,17,0.0 +25278,19,9.2,45,0.0 +25278,34,14,8,0.0 +25278,51,53,42,0.0 +25278,28,45.6,21,0.0 +25278,64,33.25,17,0.0 +25278,24,4.5,1,0.0 +25278,48,12.75,34,0.0 +25278,30,25.89,1,0.0 +25278,8,40,6,0.0 +25278,60,34,1,0.0 +25278,75,7.75,18,0.0 +25278,4,22,32,0.0 +25279,54,7.45,29,0.0 +25279,67,14,34,0.0 +25279,64,33.25,4,0.0 +25279,23,9,9,0.0 +25279,18,62.5,6,0.0 +25279,7,30,4,0.0 +25279,40,18.4,10,0.0 +25279,38,263.5,41,0.0 +25279,76,18,48,0.0 +25279,28,45.6,45,0.0 +25279,20,81,9,0.0 +25279,70,15,23,0.0 +25279,61,28.5,1,0.0 +25279,8,40,3,0.0 +25279,36,19,23,0.0 +25279,27,43.9,48,0.0 +25279,45,9.5,6,0.0 +25279,14,23.25,30,0.0 +25279,34,14,2,0.0 +25279,29,123.79,10,0.0 +25280,10,31,47,0.0 +25280,49,20,18,0.0 +25280,37,26,28,0.0 +25280,40,18.4,16,0.0 +25280,47,9.5,44,0.0 +25280,1,18,40,0.0 +25280,71,21.5,28,0.0 +25280,58,13.25,18,0.0 +25280,14,23.25,49,0.0 +25280,73,15,17,0.0 +25280,69,36,18,0.0 +25280,41,9.65,48,0.0 +25280,65,21.05,39,0.0 +25280,76,18,40,0.0 +25280,64,33.25,50,0.0 +25280,46,12,1,0.0 +25280,44,19.45,33,0.0 +25280,57,19.5,22,0.0 +25280,63,43.9,15,0.0 +25280,15,15.5,42,0.0 +25280,25,14,38,0.0 +25280,21,10,30,0.0 +25280,55,24,12,0.0 +25280,38,263.5,38,0.0 +25280,54,7.45,41,0.0 +25280,45,9.5,33,0.0 +25280,6,25,4,0.0 +25280,39,18,6,0.0 +25280,7,30,5,0.0 +25281,21,10,17,0.0 +25281,47,9.5,50,0.0 +25281,24,4.5,9,0.0 +25281,40,18.4,35,0.0 +25281,67,14,49,0.0 +25281,22,21,26,0.0 +25281,46,12,11,0.0 +25281,61,28.5,34,0.0 +25281,74,10,16,0.0 +25281,68,12.5,32,0.0 +25281,15,15.5,23,0.0 +25281,52,7,50,0.0 +25281,63,43.9,24,0.0 +25281,2,19,4,0.0 +25281,8,40,17,0.0 +25281,58,13.25,39,0.0 +25281,14,23.25,25,0.0 +25281,76,18,10,0.0 +25281,43,46,3,0.0 +25281,7,30,34,0.0 +25281,17,39,36,0.0 +25281,66,17,36,0.0 +25281,13,6,40,0.0 +25281,64,33.25,15,0.0 +25281,48,12.75,37,0.0 +25281,41,9.65,26,0.0 +25281,16,17.45,1,0.0 +25281,5,21.35,49,0.0 +25281,12,38,48,0.0 +25282,61,28.5,44,0.0 +25282,41,9.65,36,0.0 +25282,60,34,25,0.0 +25282,49,20,34,0.0 +25282,7,30,4,0.0 +25282,37,26,20,0.0 +25282,30,25.89,35,0.0 +25282,36,19,18,0.0 +25282,53,32.8,6,0.0 +25282,39,18,31,0.0 +25282,29,123.79,35,0.0 +25282,48,12.75,12,0.0 +25282,50,16.25,1,0.0 +25282,12,38,38,0.0 +25282,42,14,25,0.0 +25282,17,39,9,0.0 +25282,65,21.05,25,0.0 +25282,33,2.5,38,0.0 +25282,62,49.3,30,0.0 +25282,63,43.9,26,0.0 +25282,51,53,3,0.0 +25282,10,31,4,0.0 +25282,40,18.4,25,0.0 +25282,23,9,39,0.0 +25282,31,12.5,31,0.0 +25282,45,9.5,25,0.0 +25282,19,9.2,3,0.0 +25282,4,22,9,0.0 +25282,67,14,42,0.0 +25282,9,97,27,0.0 +25282,3,10,28,0.0 +25282,26,31.23,44,0.0 +25282,21,10,12,0.0 +25282,35,18,21,0.0 +25282,20,81,10,0.0 +25282,28,45.6,12,0.0 +25282,5,21.35,21,0.0 +25282,8,40,43,0.0 +25282,72,34.8,21,0.0 +25282,58,13.25,9,0.0 +25282,24,4.5,30,0.0 +25282,47,9.5,17,0.0 +25282,38,263.5,5,0.0 +25282,64,33.25,39,0.0 +25282,14,23.25,8,0.0 +25282,69,36,21,0.0 +25282,55,24,30,0.0 +25282,54,7.45,44,0.0 +25282,11,21,41,0.0 +25282,76,18,42,0.0 +25282,34,14,43,0.0 +25282,59,55,9,0.0 +25282,18,62.5,26,0.0 +25282,43,46,49,0.0 +25282,15,15.5,10,0.0 +25282,68,12.5,4,0.0 +25282,6,25,40,0.0 +25282,75,7.75,12,0.0 +25282,66,17,43,0.0 +25282,22,21,49,0.0 +25282,71,21.5,10,0.0 +25282,46,12,22,0.0 +25282,1,18,12,0.0 +25283,65,21.05,34,0.0 +25284,21,10,28,0.0 +25284,44,19.45,8,0.0 +25284,18,62.5,18,0.0 +25284,8,40,20,0.0 +25284,31,12.5,21,0.0 +25284,35,18,12,0.0 +25284,38,263.5,24,0.0 +25284,7,30,33,0.0 +25284,47,9.5,22,0.0 +25284,46,12,39,0.0 +25284,63,43.9,41,0.0 +25284,50,16.25,38,0.0 +25284,61,28.5,9,0.0 +25284,17,39,19,0.0 +25284,10,31,14,0.0 +25284,28,45.6,3,0.0 +25284,33,2.5,16,0.0 +25284,29,123.79,16,0.0 +25284,25,14,12,0.0 +25284,73,15,36,0.0 +25284,45,9.5,17,0.0 +25284,19,9.2,46,0.0 +25284,77,13,20,0.0 +25284,30,25.89,3,0.0 +25284,58,13.25,5,0.0 +25284,5,21.35,23,0.0 +25284,69,36,4,0.0 +25284,34,14,6,0.0 +25284,15,15.5,33,0.0 +25284,51,53,44,0.0 +25284,56,38,1,0.0 +25284,68,12.5,37,0.0 +25284,60,34,9,0.0 +25284,70,15,4,0.0 +25284,23,9,48,0.0 +25284,3,10,1,0.0 +25284,16,17.45,45,0.0 +25285,51,53,7,0.0 +25285,56,38,13,0.0 +25285,5,21.35,5,0.0 +25285,35,18,16,0.0 +25285,52,7,42,0.0 +25285,42,14,24,0.0 +25285,34,14,25,0.0 +25286,34,14,8,0.0 +25286,23,9,13,0.0 +25286,75,7.75,36,0.0 +25286,43,46,2,0.0 +25286,54,7.45,37,0.0 +25286,13,6,21,0.0 +25286,71,21.5,31,0.0 +25286,74,10,33,0.0 +25286,8,40,33,0.0 +25286,11,21,24,0.0 +25286,41,9.65,20,0.0 +25286,61,28.5,26,0.0 +25286,49,20,1,0.0 +25286,60,34,9,0.0 +25286,69,36,38,0.0 +25286,7,30,1,0.0 +25286,42,14,48,0.0 +25286,46,12,1,0.0 +25286,12,38,43,0.0 +25286,36,19,11,0.0 +25286,53,32.8,12,0.0 +25287,53,32.8,6,0.0 +25287,43,46,30,0.0 +25287,14,23.25,43,0.0 +25287,76,18,21,0.0 +25287,15,15.5,34,0.0 +25287,13,6,10,0.0 +25287,51,53,19,0.0 +25287,23,9,8,0.0 +25287,9,97,48,0.0 +25287,20,81,41,0.0 +25287,35,18,32,0.0 +25287,62,49.3,43,0.0 +25287,54,7.45,16,0.0 +25287,26,31.23,6,0.0 +25287,67,14,24,0.0 +25287,3,10,32,0.0 +25287,16,17.45,8,0.0 +25287,41,9.65,21,0.0 +25287,31,12.5,26,0.0 +25287,38,263.5,47,0.0 +25287,59,55,5,0.0 +25287,24,4.5,37,0.0 +25287,61,28.5,48,0.0 +25287,11,21,34,0.0 +25287,39,18,43,0.0 +25287,60,34,34,0.0 +25287,49,20,20,0.0 +25287,34,14,14,0.0 +25287,77,13,33,0.0 +25287,22,21,29,0.0 +25287,12,38,6,0.0 +25287,73,15,20,0.0 +25287,71,21.5,32,0.0 +25288,8,40,14,0.0 +25288,38,263.5,4,0.0 +25288,1,18,8,0.0 +25288,40,18.4,5,0.0 +25288,4,22,31,0.0 +25288,43,46,48,0.0 +25288,28,45.6,9,0.0 +25288,71,21.5,21,0.0 +25288,69,36,10,0.0 +25288,54,7.45,1,0.0 +25288,2,19,2,0.0 +25288,39,18,36,0.0 +25288,58,13.25,3,0.0 +25288,46,12,29,0.0 +25288,53,32.8,15,0.0 +25288,23,9,26,0.0 +25288,33,2.5,49,0.0 +25288,65,21.05,28,0.0 +25288,34,14,19,0.0 +25288,51,53,15,0.0 +25288,29,123.79,33,0.0 +25288,20,81,19,0.0 +25288,68,12.5,49,0.0 +25288,37,26,48,0.0 +25288,17,39,17,0.0 +25288,60,34,33,0.0 +25288,59,55,23,0.0 +25288,41,9.65,48,0.0 +25288,70,15,37,0.0 +25288,61,28.5,11,0.0 +25288,13,6,22,0.0 +25288,3,10,9,0.0 +25288,27,43.9,48,0.0 +25288,48,12.75,22,0.0 +25288,49,20,50,0.0 +25288,18,62.5,32,0.0 +25288,66,17,33,0.0 +25288,57,19.5,24,0.0 +25288,30,25.89,8,0.0 +25288,50,16.25,14,0.0 +25288,22,21,41,0.0 +25288,72,34.8,16,0.0 +25288,42,14,5,0.0 +25288,6,25,6,0.0 +25288,31,12.5,33,0.0 +25288,5,21.35,17,0.0 +25288,64,33.25,30,0.0 +25288,36,19,48,0.0 +25288,63,43.9,23,0.0 +25288,12,38,43,0.0 +25288,73,15,12,0.0 +25288,35,18,50,0.0 +25288,45,9.5,21,0.0 +25288,56,38,22,0.0 +25288,75,7.75,15,0.0 +25288,15,15.5,48,0.0 +25288,32,32,23,0.0 +25288,25,14,18,0.0 +25288,76,18,4,0.0 +25288,10,31,12,0.0 +25289,22,21,46,0.0 +25289,76,18,37,0.0 +25289,55,24,25,0.0 +25289,73,15,46,0.0 +25289,67,14,49,0.0 +25289,72,34.8,30,0.0 +25289,64,33.25,32,0.0 +25289,25,14,35,0.0 +25289,43,46,35,0.0 +25289,62,49.3,33,0.0 +25289,38,263.5,7,0.0 +25289,44,19.45,28,0.0 +25289,61,28.5,42,0.0 +25289,52,7,42,0.0 +25289,29,123.79,27,0.0 +25289,9,97,4,0.0 +25289,69,36,21,0.0 +25289,7,30,13,0.0 +25289,75,7.75,37,0.0 +25289,49,20,5,0.0 +25289,8,40,18,0.0 +25289,56,38,12,0.0 +25289,15,15.5,19,0.0 +25289,14,23.25,8,0.0 +25289,1,18,34,0.0 +25289,54,7.45,37,0.0 +25289,57,19.5,25,0.0 +25289,10,31,15,0.0 +25289,63,43.9,27,0.0 +25289,31,12.5,49,0.0 +25289,66,17,29,0.0 +25289,71,21.5,30,0.0 +25289,23,9,15,0.0 +25289,34,14,12,0.0 +25289,41,9.65,32,0.0 +25289,60,34,6,0.0 +25289,5,21.35,13,0.0 +25289,45,9.5,23,0.0 +25289,19,9.2,4,0.0 +25289,3,10,7,0.0 +25289,51,53,1,0.0 +25289,11,21,36,0.0 +25289,47,9.5,15,0.0 +25289,17,39,18,0.0 +25289,16,17.45,43,0.0 +25289,68,12.5,3,0.0 +25289,21,10,18,0.0 +25289,74,10,19,0.0 +25289,6,25,44,0.0 +25289,12,38,21,0.0 +25289,46,12,43,0.0 +25289,77,13,17,0.0 +25289,24,4.5,33,0.0 +25289,4,22,13,0.0 +25289,42,14,22,0.0 +25289,59,55,9,0.0 +25289,35,18,46,0.0 +25289,70,15,45,0.0 +25289,37,26,4,0.0 +25289,2,19,15,0.0 +25289,26,31.23,16,0.0 +25289,58,13.25,17,0.0 +25289,28,45.6,15,0.0 +25289,20,81,50,0.0 +25289,30,25.89,17,0.0 +25289,50,16.25,28,0.0 +25289,65,21.05,49,0.0 +25290,26,31.23,23,0.0 +25290,2,19,20,0.0 +25290,67,14,49,0.0 +25290,3,10,27,0.0 +25290,39,18,6,0.0 +25290,10,31,29,0.0 +25290,50,16.25,48,0.0 +25290,5,21.35,29,0.0 +25290,11,21,30,0.0 +25290,13,6,5,0.0 +25290,8,40,21,0.0 +25290,72,34.8,30,0.0 +25290,66,17,24,0.0 +25290,16,17.45,24,0.0 +25290,30,25.89,14,0.0 +25290,53,32.8,40,0.0 +25290,61,28.5,33,0.0 +25290,41,9.65,10,0.0 +25290,42,14,9,0.0 +25290,69,36,26,0.0 +25290,55,24,13,0.0 +25290,15,15.5,18,0.0 +25290,34,14,49,0.0 +25290,28,45.6,12,0.0 +25290,45,9.5,35,0.0 +25290,14,23.25,10,0.0 +25290,43,46,42,0.0 +25290,21,10,32,0.0 +25290,19,9.2,13,0.0 +25290,38,263.5,32,0.0 +25290,18,62.5,18,0.0 +25290,7,30,17,0.0 +25290,6,25,23,0.0 +25290,1,18,15,0.0 +25290,56,38,18,0.0 +25290,73,15,16,0.0 +25290,62,49.3,22,0.0 +25290,24,4.5,30,0.0 +25290,54,7.45,50,0.0 +25290,77,13,6,0.0 +25290,29,123.79,28,0.0 +25290,48,12.75,41,0.0 +25290,32,32,15,0.0 +25290,33,2.5,29,0.0 +25290,68,12.5,37,0.0 +25290,4,22,47,0.0 +25290,49,20,48,0.0 +25290,22,21,4,0.0 +25290,75,7.75,18,0.0 +25290,37,26,7,0.0 +25290,46,12,50,0.0 +25290,12,38,8,0.0 +25290,35,18,48,0.0 +25290,71,21.5,30,0.0 +25290,74,10,18,0.0 +25290,76,18,29,0.0 +25291,54,7.45,22,0.0 +25291,27,43.9,34,0.0 +25291,16,17.45,43,0.0 +25291,43,46,19,0.0 +25291,68,12.5,13,0.0 +25291,44,19.45,48,0.0 +25291,12,38,36,0.0 +25291,7,30,46,0.0 +25291,39,18,30,0.0 +25291,5,21.35,4,0.0 +25291,18,62.5,9,0.0 +25291,73,15,47,0.0 +25291,60,34,24,0.0 +25291,70,15,19,0.0 +25291,4,22,13,0.0 +25291,59,55,11,0.0 +25291,37,26,41,0.0 +25291,31,12.5,3,0.0 +25291,69,36,47,0.0 +25291,30,25.89,10,0.0 +25291,38,263.5,44,0.0 +25291,46,12,19,0.0 +25291,15,15.5,14,0.0 +25291,66,17,4,0.0 +25291,71,21.5,47,0.0 +25291,1,18,22,0.0 +25291,64,33.25,23,0.0 +25291,24,4.5,27,0.0 +25291,77,13,31,0.0 +25291,19,9.2,40,0.0 +25291,14,23.25,22,0.0 +25291,40,18.4,33,0.0 +25291,75,7.75,3,0.0 +25291,61,28.5,13,0.0 +25291,36,19,47,0.0 +25291,65,21.05,38,0.0 +25291,22,21,40,0.0 +25291,63,43.9,16,0.0 +25291,51,53,20,0.0 +25291,10,31,10,0.0 +25291,25,14,5,0.0 +25291,57,19.5,25,0.0 +25291,21,10,50,0.0 +25291,58,13.25,31,0.0 +25291,50,16.25,22,0.0 +25291,35,18,26,0.0 +25291,26,31.23,43,0.0 +25291,11,21,2,0.0 +25291,56,38,3,0.0 +25291,8,40,34,0.0 +25291,13,6,23,0.0 +25291,49,20,14,0.0 +25291,23,9,26,0.0 +25291,20,81,27,0.0 +25291,67,14,36,0.0 +25291,41,9.65,16,0.0 +25291,32,32,31,0.0 +25291,45,9.5,14,0.0 +25291,33,2.5,8,0.0 +25291,2,19,41,0.0 +25291,29,123.79,43,0.0 +25291,34,14,39,0.0 +25291,76,18,40,0.0 +25291,62,49.3,27,0.0 +25291,6,25,36,0.0 +25291,55,24,3,0.0 +25291,9,97,29,0.0 +25291,42,14,39,0.0 +25292,33,2.5,17,0.0 +25292,71,21.5,21,0.0 +25292,49,20,44,0.0 +25292,35,18,24,0.0 +25292,47,9.5,37,0.0 +25292,5,21.35,9,0.0 +25292,29,123.79,43,0.0 +25292,67,14,38,0.0 +25292,63,43.9,11,0.0 +25292,12,38,13,0.0 +25292,45,9.5,38,0.0 +25292,69,36,24,0.0 +25292,54,7.45,9,0.0 +25292,22,21,13,0.0 +25292,43,46,25,0.0 +25292,64,33.25,22,0.0 +25292,23,9,22,0.0 +25292,3,10,11,0.0 +25293,1,18,30,0.0 +25293,64,33.25,10,0.0 +25293,66,17,38,0.0 +25294,23,9,4,0.0 +25294,2,19,14,0.0 +25294,68,12.5,43,0.0 +25294,39,18,7,0.0 +25294,73,15,8,0.0 +25294,58,13.25,14,0.0 +25294,48,12.75,21,0.0 +25294,65,21.05,48,0.0 +25294,21,10,13,0.0 +25294,42,14,42,0.0 +25294,46,12,30,0.0 +25294,43,46,19,0.0 +25294,67,14,29,0.0 +25294,10,31,33,0.0 +25294,61,28.5,5,0.0 +25294,77,13,23,0.0 +25294,33,2.5,6,0.0 +25294,20,81,4,0.0 +25294,28,45.6,29,0.0 +25294,76,18,45,0.0 +25294,60,34,46,0.0 +25294,38,263.5,28,0.0 +25294,30,25.89,6,0.0 +25294,16,17.45,1,0.0 +25294,59,55,46,0.0 +25294,40,18.4,27,0.0 +25294,24,4.5,15,0.0 +25294,13,6,2,0.0 +25294,53,32.8,42,0.0 +25294,64,33.25,14,0.0 +25294,41,9.65,23,0.0 +25294,37,26,42,0.0 +25294,71,21.5,20,0.0 +25294,72,34.8,26,0.0 +25294,52,7,36,0.0 +25294,31,12.5,7,0.0 +25294,5,21.35,48,0.0 +25294,9,97,48,0.0 +25294,54,7.45,49,0.0 +25294,11,21,14,0.0 +25294,12,38,30,0.0 +25294,51,53,6,0.0 +25294,56,38,7,0.0 +25294,66,17,18,0.0 +25294,4,22,41,0.0 +25294,44,19.45,16,0.0 +25294,69,36,34,0.0 +25294,49,20,1,0.0 +25294,19,9.2,6,0.0 +25295,26,31.23,31,0.0 +25295,61,28.5,29,0.0 +25295,71,21.5,26,0.0 +25295,7,30,10,0.0 +25295,74,10,4,0.0 +25295,53,32.8,20,0.0 +25295,70,15,21,0.0 +25295,34,14,31,0.0 +25295,51,53,50,0.0 +25295,8,40,6,0.0 +25295,32,32,38,0.0 +25295,47,9.5,47,0.0 +25295,28,45.6,16,0.0 +25295,17,39,18,0.0 +25295,29,123.79,7,0.0 +25295,58,13.25,11,0.0 +25295,13,6,7,0.0 +25295,38,263.5,39,0.0 +25295,2,19,7,0.0 +25295,65,21.05,40,0.0 +25295,4,22,26,0.0 +25295,9,97,20,0.0 +25295,22,21,40,0.0 +25295,25,14,11,0.0 +25295,23,9,7,0.0 +25295,72,34.8,48,0.0 +25295,3,10,38,0.0 +25295,19,9.2,18,0.0 +25295,27,43.9,14,0.0 +25295,67,14,45,0.0 +25295,42,14,39,0.0 +25295,49,20,27,0.0 +25295,77,13,40,0.0 +25295,76,18,34,0.0 +25295,1,18,38,0.0 +25295,54,7.45,12,0.0 +25295,63,43.9,6,0.0 +25295,66,17,5,0.0 +25295,35,18,35,0.0 +25295,60,34,49,0.0 +25295,68,12.5,1,0.0 +25295,43,46,33,0.0 +25295,52,7,25,0.0 +25295,50,16.25,43,0.0 +25295,56,38,29,0.0 +25295,44,19.45,50,0.0 +25295,18,62.5,13,0.0 +25295,12,38,6,0.0 +25295,48,12.75,49,0.0 +25295,55,24,7,0.0 +25295,62,49.3,9,0.0 +25295,14,23.25,50,0.0 +25295,45,9.5,5,0.0 +25295,6,25,36,0.0 +25295,20,81,14,0.0 +25295,41,9.65,39,0.0 +25295,10,31,42,0.0 +25295,64,33.25,17,0.0 +25295,69,36,50,0.0 +25295,11,21,44,0.0 +25295,33,2.5,46,0.0 +25295,21,10,11,0.0 +25295,40,18.4,49,0.0 +25295,24,4.5,2,0.0 +25295,15,15.5,48,0.0 +25295,31,12.5,17,0.0 +25295,75,7.75,15,0.0 +25295,46,12,31,0.0 +25295,39,18,47,0.0 +25296,10,31,21,0.0 +25296,61,28.5,27,0.0 +25296,35,18,13,0.0 +25296,37,26,35,0.0 +25296,60,34,48,0.0 +25296,70,15,40,0.0 +25296,54,7.45,19,0.0 +25296,36,19,46,0.0 +25296,64,33.25,29,0.0 +25296,40,18.4,29,0.0 +25296,51,53,31,0.0 +25296,43,46,31,0.0 +25296,74,10,15,0.0 +25296,6,25,15,0.0 +25296,58,13.25,18,0.0 +25296,52,7,40,0.0 +25296,12,38,18,0.0 +25296,47,9.5,20,0.0 +25296,22,21,31,0.0 +25296,48,12.75,12,0.0 +25296,39,18,34,0.0 +25296,15,15.5,40,0.0 +25296,69,36,35,0.0 +25296,32,32,44,0.0 +25296,38,263.5,11,0.0 +25296,1,18,7,0.0 +25296,28,45.6,38,0.0 +25296,46,12,26,0.0 +25296,20,81,20,0.0 +25296,62,49.3,5,0.0 +25296,55,24,46,0.0 +25296,31,12.5,12,0.0 +25296,5,21.35,3,0.0 +25296,19,9.2,41,0.0 +25296,59,55,12,0.0 +25296,8,40,12,0.0 +25296,65,21.05,7,0.0 +25296,41,9.65,30,0.0 +25296,26,31.23,5,0.0 +25296,68,12.5,17,0.0 +25296,45,9.5,38,0.0 +25296,2,19,31,0.0 +25296,29,123.79,50,0.0 +25296,9,97,8,0.0 +25296,63,43.9,13,0.0 +25296,13,6,45,0.0 +25296,67,14,6,0.0 +25296,77,13,30,0.0 +25296,3,10,44,0.0 +25296,72,34.8,25,0.0 +25297,24,4.5,42,0.0 +25297,8,40,44,0.0 +25297,62,49.3,11,0.0 +25297,15,15.5,27,0.0 +25297,9,97,18,0.0 +25297,18,62.5,24,0.0 +25297,64,33.25,48,0.0 +25297,44,19.45,27,0.0 +25297,29,123.79,24,0.0 +25297,52,7,11,0.0 +25297,32,32,33,0.0 +25297,40,18.4,17,0.0 +25297,16,17.45,13,0.0 +25297,25,14,13,0.0 +25297,59,55,21,0.0 +25297,70,15,32,0.0 +25297,36,19,17,0.0 +25297,43,46,7,0.0 +25297,51,53,31,0.0 +25297,49,20,10,0.0 +25297,58,13.25,37,0.0 +25297,28,45.6,44,0.0 +25297,48,12.75,19,0.0 +25297,63,43.9,33,0.0 +25297,6,25,42,0.0 +25297,50,16.25,20,0.0 +25297,21,10,46,0.0 +25297,53,32.8,44,0.0 +25297,10,31,22,0.0 +25297,5,21.35,16,0.0 +25297,3,10,20,0.0 +25297,42,14,14,0.0 +25297,34,14,43,0.0 +25297,45,9.5,1,0.0 +25298,2,19,22,0.0 +25298,58,13.25,23,0.0 +25298,22,21,34,0.0 +25298,42,14,14,0.0 +25298,50,16.25,39,0.0 +25298,31,12.5,50,0.0 +25298,19,9.2,9,0.0 +25298,26,31.23,40,0.0 +25298,51,53,42,0.0 +25298,32,32,47,0.0 +25298,34,14,1,0.0 +25298,33,2.5,39,0.0 +25298,11,21,20,0.0 +25298,23,9,19,0.0 +25298,13,6,17,0.0 +25298,17,39,36,0.0 +25298,3,10,33,0.0 +25298,47,9.5,45,0.0 +25298,68,12.5,43,0.0 +25298,52,7,16,0.0 +25298,49,20,8,0.0 +25298,15,15.5,18,0.0 +25298,76,18,37,0.0 +25298,4,22,17,0.0 +25298,48,12.75,25,0.0 +25298,35,18,1,0.0 +25298,67,14,2,0.0 +25298,27,43.9,18,0.0 +25298,63,43.9,47,0.0 +25298,71,21.5,46,0.0 +25298,77,13,24,0.0 +25298,24,4.5,40,0.0 +25298,25,14,3,0.0 +25298,41,9.65,5,0.0 +25298,36,19,8,0.0 +25298,65,21.05,48,0.0 +25298,18,62.5,50,0.0 +25298,7,30,25,0.0 +25298,61,28.5,40,0.0 +25298,70,15,45,0.0 +25298,53,32.8,30,0.0 +25298,46,12,25,0.0 +25298,45,9.5,46,0.0 +25298,21,10,17,0.0 +25298,54,7.45,42,0.0 +25298,14,23.25,20,0.0 +25298,38,263.5,29,0.0 +25298,66,17,13,0.0 +25298,64,33.25,14,0.0 +25298,12,38,5,0.0 +25298,37,26,6,0.0 +25298,28,45.6,1,0.0 +25298,59,55,48,0.0 +25298,57,19.5,41,0.0 +25298,56,38,35,0.0 +25298,30,25.89,47,0.0 +25298,60,34,36,0.0 +25298,73,15,42,0.0 +25298,43,46,5,0.0 +25298,44,19.45,20,0.0 +25298,72,34.8,10,0.0 +25298,40,18.4,6,0.0 +25298,75,7.75,18,0.0 +25298,69,36,44,0.0 +25298,39,18,24,0.0 +25298,29,123.79,15,0.0 +25298,1,18,15,0.0 +25299,40,18.4,38,0.0 +25299,21,10,28,0.0 +25299,41,9.65,18,0.0 +25299,77,13,6,0.0 +25299,37,26,8,0.0 +25299,42,14,45,0.0 +25299,45,9.5,17,0.0 +25299,51,53,19,0.0 +25299,17,39,27,0.0 +25299,66,17,30,0.0 +25299,4,22,21,0.0 +25299,5,21.35,38,0.0 +25299,10,31,44,0.0 +25299,44,19.45,36,0.0 +25299,18,62.5,48,0.0 +25299,24,4.5,1,0.0 +25299,30,25.89,9,0.0 +25299,70,15,26,0.0 +25299,69,36,49,0.0 +25299,60,34,19,0.0 +25299,65,21.05,19,0.0 +25300,30,25.89,16,0.0 +25300,8,40,25,0.0 +25300,61,28.5,29,0.0 +25300,26,31.23,9,0.0 +25300,58,13.25,24,0.0 +25300,23,9,12,0.0 +25300,35,18,4,0.0 +25300,53,32.8,22,0.0 +25301,12,38,26,0.0 +25301,55,24,39,0.0 +25301,56,38,26,0.0 +25301,72,34.8,5,0.0 +25301,2,19,3,0.0 +25301,66,17,47,0.0 +25301,37,26,16,0.0 +25301,4,22,11,0.0 +25301,71,21.5,47,0.0 +25301,25,14,2,0.0 +25301,3,10,35,0.0 +25301,73,15,19,0.0 +25301,9,97,45,0.0 +25301,50,16.25,1,0.0 +25301,44,19.45,26,0.0 +25301,61,28.5,8,0.0 +25301,36,19,25,0.0 +25301,16,17.45,28,0.0 +25301,18,62.5,40,0.0 +25301,13,6,18,0.0 +25301,31,12.5,23,0.0 +25301,63,43.9,24,0.0 +25302,74,10,1,0.0 +25302,76,18,22,0.0 +25302,13,6,6,0.0 +25302,10,31,11,0.0 +25302,39,18,28,0.0 +25302,38,263.5,9,0.0 +25302,70,15,48,0.0 +25302,2,19,27,0.0 +25302,75,7.75,17,0.0 +25302,4,22,28,0.0 +25302,58,13.25,19,0.0 +25302,62,49.3,9,0.0 +25302,45,9.5,17,0.0 +25302,67,14,25,0.0 +25302,40,18.4,7,0.0 +25302,23,9,1,0.0 +25302,73,15,36,0.0 +25302,69,36,33,0.0 +25302,27,43.9,40,0.0 +25302,7,30,18,0.0 +25302,37,26,48,0.0 +25302,52,7,10,0.0 +25302,6,25,25,0.0 +25302,15,15.5,2,0.0 +25302,11,21,16,0.0 +25302,46,12,37,0.0 +25302,55,24,26,0.0 +25302,26,31.23,7,0.0 +25302,30,25.89,11,0.0 +25302,14,23.25,16,0.0 +25302,12,38,44,0.0 +25302,66,17,31,0.0 +25302,8,40,20,0.0 +25302,24,4.5,2,0.0 +25302,31,12.5,37,0.0 +25302,18,62.5,31,0.0 +25302,29,123.79,8,0.0 +25302,42,14,35,0.0 +25302,33,2.5,38,0.0 +25302,9,97,42,0.0 +25302,53,32.8,27,0.0 +25302,65,21.05,35,0.0 +25302,19,9.2,46,0.0 +25302,1,18,43,0.0 +25302,49,20,31,0.0 +25302,21,10,30,0.0 +25302,28,45.6,33,0.0 +25302,20,81,12,0.0 +25302,5,21.35,13,0.0 +25302,50,16.25,44,0.0 +25302,71,21.5,23,0.0 +25302,48,12.75,46,0.0 +25302,51,53,42,0.0 +25302,64,33.25,24,0.0 +25302,63,43.9,11,0.0 +25302,68,12.5,48,0.0 +25302,56,38,1,0.0 +25302,35,18,19,0.0 +25302,17,39,6,0.0 +25302,25,14,19,0.0 +25302,59,55,1,0.0 +25302,72,34.8,22,0.0 +25302,36,19,18,0.0 +25302,34,14,33,0.0 +25302,32,32,43,0.0 +25302,61,28.5,50,0.0 +25303,47,9.5,4,0.0 +25303,67,14,17,0.0 +25303,32,32,23,0.0 +25303,56,38,41,0.0 +25303,18,62.5,11,0.0 +25303,17,39,13,0.0 +25303,59,55,22,0.0 +25303,62,49.3,26,0.0 +25303,46,12,39,0.0 +25303,64,33.25,12,0.0 +25303,15,15.5,1,0.0 +25304,58,13.25,28,0.0 +25304,35,18,30,0.0 +25304,69,36,31,0.0 +25304,33,2.5,6,0.0 +25304,46,12,3,0.0 +25304,57,19.5,27,0.0 +25304,1,18,20,0.0 +25304,65,21.05,19,0.0 +25304,75,7.75,20,0.0 +25304,62,49.3,17,0.0 +25304,72,34.8,22,0.0 +25304,34,14,28,0.0 +25304,4,22,28,0.0 +25304,30,25.89,27,0.0 +25304,74,10,45,0.0 +25304,22,21,11,0.0 +25304,44,19.45,22,0.0 +25304,27,43.9,35,0.0 +25304,71,21.5,10,0.0 +25304,29,123.79,37,0.0 +25304,70,15,19,0.0 +25304,23,9,8,0.0 +25304,59,55,44,0.0 +25304,26,31.23,22,0.0 +25304,5,21.35,16,0.0 +25304,54,7.45,12,0.0 +25304,36,19,39,0.0 +25304,43,46,10,0.0 +25304,50,16.25,5,0.0 +25304,42,14,45,0.0 +25304,7,30,33,0.0 +25304,61,28.5,49,0.0 +25304,21,10,25,0.0 +25304,31,12.5,8,0.0 +25304,67,14,4,0.0 +25304,24,4.5,31,0.0 +25304,9,97,9,0.0 +25304,48,12.75,9,0.0 +25304,49,20,15,0.0 +25304,66,17,7,0.0 +25304,25,14,46,0.0 +25304,73,15,7,0.0 +25304,77,13,47,0.0 +25304,56,38,37,0.0 +25304,52,7,7,0.0 +25304,51,53,3,0.0 +25304,60,34,39,0.0 +25304,8,40,2,0.0 +25304,55,24,13,0.0 +25304,63,43.9,17,0.0 +25304,14,23.25,24,0.0 +25304,39,18,5,0.0 +25304,32,32,15,0.0 +25304,15,15.5,6,0.0 +25304,12,38,41,0.0 +25304,3,10,6,0.0 +25304,76,18,25,0.0 +25304,2,19,47,0.0 +25304,6,25,13,0.0 +25304,41,9.65,40,0.0 +25304,16,17.45,18,0.0 +25304,53,32.8,32,0.0 +25304,11,21,46,0.0 +25304,10,31,8,0.0 +25304,40,18.4,28,0.0 +25304,68,12.5,41,0.0 +25304,20,81,13,0.0 +25304,38,263.5,39,0.0 +25304,13,6,12,0.0 +25304,18,62.5,4,0.0 +25304,37,26,25,0.0 +25304,45,9.5,13,0.0 +25304,19,9.2,47,0.0 +25304,17,39,2,0.0 +25304,28,45.6,10,0.0 +25304,47,9.5,46,0.0 +25305,37,26,45,0.0 +25305,29,123.79,28,0.0 +25305,69,36,20,0.0 +25305,9,97,15,0.0 +25305,64,33.25,33,0.0 +25305,20,81,9,0.0 +25305,45,9.5,11,0.0 +25305,59,55,28,0.0 +25305,40,18.4,34,0.0 +25305,11,21,32,0.0 +25305,56,38,11,0.0 +25305,57,19.5,47,0.0 +25305,36,19,26,0.0 +25305,42,14,4,0.0 +25305,53,32.8,25,0.0 +25305,27,43.9,29,0.0 +25305,22,21,45,0.0 +25305,13,6,7,0.0 +25306,29,123.79,27,0.0 +25306,68,12.5,25,0.0 +25306,33,2.5,46,0.0 +25306,16,17.45,31,0.0 +25307,34,14,50,0.0 +25307,43,46,20,0.0 +25307,53,32.8,43,0.0 +25307,63,43.9,22,0.0 +25307,19,9.2,9,0.0 +25307,13,6,6,0.0 +25307,37,26,27,0.0 +25307,21,10,43,0.0 +25307,56,38,7,0.0 +25307,11,21,1,0.0 +25307,42,14,5,0.0 +25307,73,15,40,0.0 +25307,24,4.5,30,0.0 +25307,12,38,42,0.0 +25307,51,53,1,0.0 +25307,58,13.25,41,0.0 +25307,47,9.5,8,0.0 +25307,6,25,33,0.0 +25307,1,18,48,0.0 +25307,31,12.5,7,0.0 +25307,60,34,32,0.0 +25307,36,19,6,0.0 +25307,48,12.75,38,0.0 +25307,74,10,40,0.0 +25307,49,20,44,0.0 +25307,30,25.89,29,0.0 +25307,55,24,45,0.0 +25307,46,12,10,0.0 +25307,4,22,37,0.0 +25307,29,123.79,14,0.0 +25307,33,2.5,50,0.0 +25307,2,19,8,0.0 +25307,27,43.9,42,0.0 +25307,23,9,43,0.0 +25307,69,36,34,0.0 +25307,28,45.6,42,0.0 +25307,57,19.5,19,0.0 +25307,45,9.5,4,0.0 +25307,65,21.05,18,0.0 +25307,41,9.65,35,0.0 +25307,32,32,18,0.0 +25307,70,15,21,0.0 +25307,35,18,10,0.0 +25307,44,19.45,35,0.0 +25307,77,13,34,0.0 +25307,75,7.75,6,0.0 +25307,38,263.5,49,0.0 +25307,25,14,4,0.0 +25307,8,40,49,0.0 +25307,14,23.25,49,0.0 +25307,39,18,22,0.0 +25307,9,97,5,0.0 +25307,20,81,4,0.0 +25307,66,17,3,0.0 +25307,76,18,36,0.0 +25307,40,18.4,49,0.0 +25307,22,21,28,0.0 +25308,55,24,33,0.0 +25308,38,263.5,35,0.0 +25308,30,25.89,28,0.0 +25308,5,21.35,41,0.0 +25308,32,32,25,0.0 +25308,33,2.5,4,0.0 +25308,36,19,40,0.0 +25308,13,6,50,0.0 +25308,51,53,16,0.0 +25308,41,9.65,20,0.0 +25308,40,18.4,2,0.0 +25308,26,31.23,24,0.0 +25308,25,14,45,0.0 +25308,19,9.2,8,0.0 +25308,27,43.9,18,0.0 +25308,70,15,43,0.0 +25308,72,34.8,39,0.0 +25308,6,25,40,0.0 +25308,77,13,40,0.0 +25308,14,23.25,23,0.0 +25308,8,40,25,0.0 +25308,44,19.45,43,0.0 +25308,20,81,15,0.0 +25308,71,21.5,18,0.0 +25308,49,20,44,0.0 +25308,65,21.05,33,0.0 +25308,67,14,37,0.0 +25308,53,32.8,30,0.0 +25308,73,15,1,0.0 +25308,7,30,30,0.0 +25308,28,45.6,33,0.0 +25308,18,62.5,11,0.0 +25308,12,38,5,0.0 +25308,4,22,24,0.0 +25308,54,7.45,23,0.0 +25308,15,15.5,35,0.0 +25308,61,28.5,42,0.0 +25308,11,21,44,0.0 +25308,75,7.75,32,0.0 +25308,56,38,49,0.0 +25308,21,10,7,0.0 +25308,23,9,35,0.0 +25308,35,18,7,0.0 +25308,58,13.25,20,0.0 +25308,63,43.9,27,0.0 +25308,69,36,36,0.0 +25308,47,9.5,11,0.0 +25308,17,39,40,0.0 +25308,24,4.5,24,0.0 +25308,29,123.79,15,0.0 +25308,62,49.3,1,0.0 +25308,64,33.25,42,0.0 +25308,43,46,38,0.0 +25308,52,7,39,0.0 +25308,31,12.5,11,0.0 +25308,74,10,31,0.0 +25308,60,34,43,0.0 +25309,39,18,2,0.0 +25309,4,22,24,0.0 +25309,75,7.75,35,0.0 +25309,17,39,39,0.0 +25309,63,43.9,34,0.0 +25310,15,15.5,17,0.0 +25310,32,32,28,0.0 +25310,75,7.75,11,0.0 +25310,14,23.25,47,0.0 +25310,71,21.5,47,0.0 +25310,76,18,35,0.0 +25310,62,49.3,19,0.0 +25310,56,38,24,0.0 +25310,17,39,49,0.0 +25310,16,17.45,30,0.0 +25310,5,21.35,41,0.0 +25310,66,17,13,0.0 +25310,39,18,12,0.0 +25310,31,12.5,16,0.0 +25310,35,18,10,0.0 +25310,74,10,25,0.0 +25310,26,31.23,1,0.0 +25310,22,21,2,0.0 +25310,50,16.25,19,0.0 +25310,43,46,32,0.0 +25310,7,30,9,0.0 +25310,52,7,17,0.0 +25310,1,18,23,0.0 +25310,18,62.5,9,0.0 +25310,19,9.2,11,0.0 +25310,12,38,33,0.0 +25310,69,36,40,0.0 +25310,33,2.5,23,0.0 +25310,61,28.5,37,0.0 +25310,46,12,21,0.0 +25310,27,43.9,32,0.0 +25310,54,7.45,20,0.0 +25310,4,22,8,0.0 +25310,30,25.89,18,0.0 +25310,21,10,32,0.0 +25310,37,26,26,0.0 +25310,28,45.6,28,0.0 +25310,42,14,1,0.0 +25311,63,43.9,39,0.0 +25311,68,12.5,39,0.0 +25311,65,21.05,22,0.0 +25311,7,30,20,0.0 +25311,55,24,33,0.0 +25311,22,21,4,0.0 +25311,41,9.65,21,0.0 +25311,23,9,27,0.0 +25311,61,28.5,27,0.0 +25311,70,15,5,0.0 +25311,18,62.5,27,0.0 +25311,49,20,20,0.0 +25311,19,9.2,50,0.0 +25311,10,31,20,0.0 +25311,21,10,34,0.0 +25311,20,81,8,0.0 +25311,9,97,28,0.0 +25311,3,10,32,0.0 +25311,24,4.5,8,0.0 +25311,37,26,31,0.0 +25311,48,12.75,17,0.0 +25311,33,2.5,5,0.0 +25311,8,40,24,0.0 +25311,75,7.75,6,0.0 +25311,57,19.5,21,0.0 +25311,71,21.5,42,0.0 +25311,15,15.5,48,0.0 +25311,51,53,40,0.0 +25311,67,14,24,0.0 +25311,72,34.8,14,0.0 +25311,17,39,37,0.0 +25312,44,19.45,47,0.0 +25312,39,18,8,0.0 +25312,2,19,5,0.0 +25312,60,34,11,0.0 +25312,37,26,14,0.0 +25312,26,31.23,2,0.0 +25313,14,23.25,21,0.0 +25313,60,34,29,0.0 +25313,77,13,9,0.0 +25313,34,14,43,0.0 +25313,73,15,15,0.0 +25313,21,10,12,0.0 +25313,53,32.8,42,0.0 +25313,13,6,38,0.0 +25313,1,18,45,0.0 +25313,65,21.05,26,0.0 +25313,8,40,29,0.0 +25313,32,32,30,0.0 +25313,12,38,23,0.0 +25313,22,21,34,0.0 +25313,9,97,1,0.0 +25313,54,7.45,36,0.0 +25313,16,17.45,9,0.0 +25313,47,9.5,19,0.0 +25313,72,34.8,6,0.0 +25313,64,33.25,5,0.0 +25313,6,25,36,0.0 +25313,27,43.9,13,0.0 +25313,45,9.5,34,0.0 +25313,29,123.79,42,0.0 +25313,19,9.2,17,0.0 +25313,20,81,11,0.0 +25313,15,15.5,2,0.0 +25313,76,18,37,0.0 +25313,33,2.5,9,0.0 +25313,30,25.89,47,0.0 +25313,46,12,16,0.0 +25313,63,43.9,33,0.0 +25313,41,9.65,42,0.0 +25313,51,53,48,0.0 +25313,52,7,1,0.0 +25313,17,39,25,0.0 +25313,59,55,32,0.0 +25313,4,22,1,0.0 +25313,42,14,5,0.0 +25313,35,18,32,0.0 +25313,38,263.5,23,0.0 +25313,67,14,44,0.0 +25313,69,36,1,0.0 +25313,43,46,20,0.0 +25314,24,4.5,21,0.0 +25314,43,46,28,0.0 +25314,70,15,12,0.0 +25315,16,17.45,35,0.0 +25315,74,10,35,0.0 +25315,41,9.65,27,0.0 +25315,19,9.2,6,0.0 +25315,50,16.25,41,0.0 +25315,36,19,31,0.0 +25315,72,34.8,8,0.0 +25315,71,21.5,14,0.0 +25315,35,18,31,0.0 +25315,33,2.5,15,0.0 +25315,51,53,18,0.0 +25315,32,32,12,0.0 +25315,15,15.5,5,0.0 +25315,29,123.79,38,0.0 +25315,30,25.89,21,0.0 +25315,47,9.5,5,0.0 +25315,38,263.5,40,0.0 +25315,31,12.5,7,0.0 +25315,67,14,7,0.0 +25315,43,46,3,0.0 +25315,59,55,29,0.0 +25315,44,19.45,29,0.0 +25315,68,12.5,39,0.0 +25316,61,28.5,11,0.0 +25316,50,16.25,3,0.0 +25316,67,14,37,0.0 +25316,28,45.6,23,0.0 +25316,15,15.5,2,0.0 +25316,8,40,50,0.0 +25316,40,18.4,27,0.0 +25316,11,21,6,0.0 +25316,75,7.75,29,0.0 +25316,60,34,21,0.0 +25316,53,32.8,22,0.0 +25316,54,7.45,7,0.0 +25316,14,23.25,29,0.0 +25316,22,21,18,0.0 +25316,27,43.9,2,0.0 +25316,5,21.35,38,0.0 +25316,37,26,23,0.0 +25316,18,62.5,27,0.0 +25316,70,15,40,0.0 +25316,77,13,43,0.0 +25316,34,14,9,0.0 +25316,49,20,10,0.0 +25316,32,32,50,0.0 +25316,26,31.23,16,0.0 +25316,1,18,17,0.0 +25316,43,46,22,0.0 +25316,45,9.5,11,0.0 +25316,57,19.5,29,0.0 +25316,19,9.2,30,0.0 +25316,10,31,13,0.0 +25316,47,9.5,5,0.0 +25316,7,30,39,0.0 +25316,20,81,8,0.0 +25316,52,7,23,0.0 +25316,65,21.05,26,0.0 +25316,39,18,21,0.0 +25317,77,13,8,0.0 +25317,59,55,2,0.0 +25317,19,9.2,4,0.0 +25317,54,7.45,30,0.0 +25317,11,21,31,0.0 +25317,5,21.35,42,0.0 +25317,4,22,23,0.0 +25318,56,38,1,0.0 +25318,24,4.5,16,0.0 +25318,35,18,14,0.0 +25318,31,12.5,50,0.0 +25319,20,81,21,0.0 +25319,44,19.45,24,0.0 +25319,54,7.45,46,0.0 +25319,51,53,21,0.0 +25319,13,6,26,0.0 +25319,58,13.25,25,0.0 +25319,38,263.5,45,0.0 +25319,12,38,25,0.0 +25319,11,21,45,0.0 +25319,26,31.23,35,0.0 +25319,7,30,46,0.0 +25319,50,16.25,24,0.0 +25319,16,17.45,11,0.0 +25319,27,43.9,38,0.0 +25319,57,19.5,27,0.0 +25319,28,45.6,18,0.0 +25319,2,19,44,0.0 +25319,8,40,35,0.0 +25319,71,21.5,29,0.0 +25319,66,17,38,0.0 +25320,76,18,43,0.0 +25320,15,15.5,27,0.0 +25320,68,12.5,26,0.0 +25320,61,28.5,13,0.0 +25320,57,19.5,1,0.0 +25320,59,55,3,0.0 +25320,45,9.5,18,0.0 +25320,70,15,4,0.0 +25320,25,14,44,0.0 +25320,52,7,26,0.0 +25320,50,16.25,29,0.0 +25320,48,12.75,40,0.0 +25320,32,32,45,0.0 +25320,74,10,46,0.0 +25320,46,12,27,0.0 +25320,36,19,20,0.0 +25320,34,14,8,0.0 +25320,1,18,11,0.0 +25320,30,25.89,29,0.0 +25320,3,10,35,0.0 +25320,66,17,12,0.0 +25320,63,43.9,36,0.0 +25320,14,23.25,37,0.0 +25320,2,19,17,0.0 +25321,50,16.25,38,0.0 +25321,5,21.35,27,0.0 +25321,6,25,5,0.0 +25321,34,14,50,0.0 +25321,45,9.5,6,0.0 +25321,56,38,24,0.0 +25321,15,15.5,22,0.0 +25321,62,49.3,23,0.0 +25321,73,15,50,0.0 +25321,9,97,5,0.0 +25321,59,55,24,0.0 +25321,55,24,47,0.0 +25321,32,32,9,0.0 +25321,21,10,28,0.0 +25321,8,40,23,0.0 +25321,69,36,50,0.0 +25321,36,19,32,0.0 +25321,41,9.65,19,0.0 +25321,2,19,19,0.0 +25321,54,7.45,18,0.0 +25321,49,20,38,0.0 +25321,25,14,26,0.0 +25321,1,18,1,0.0 +25321,13,6,17,0.0 +25321,10,31,36,0.0 +25321,40,18.4,30,0.0 +25321,38,263.5,24,0.0 +25321,68,12.5,36,0.0 +25321,43,46,15,0.0 +25321,76,18,13,0.0 +25321,30,25.89,19,0.0 +25321,58,13.25,19,0.0 +25321,29,123.79,50,0.0 +25321,27,43.9,11,0.0 +25321,70,15,38,0.0 +25322,17,39,13,0.0 +25322,69,36,16,0.0 +25322,39,18,48,0.0 +25322,15,15.5,3,0.0 +25322,1,18,30,0.0 +25322,34,14,37,0.0 +25322,71,21.5,11,0.0 +25322,8,40,37,0.0 +25322,60,34,33,0.0 +25322,14,23.25,22,0.0 +25322,61,28.5,35,0.0 +25322,3,10,37,0.0 +25322,67,14,19,0.0 +25322,21,10,27,0.0 +25322,52,7,44,0.0 +25322,56,38,43,0.0 +25322,48,12.75,18,0.0 +25322,7,30,30,0.0 +25322,55,24,1,0.0 +25322,51,53,1,0.0 +25322,47,9.5,27,0.0 +25322,53,32.8,23,0.0 +25322,43,46,29,0.0 +25322,37,26,46,0.0 +25322,2,19,33,0.0 +25322,12,38,3,0.0 +25322,44,19.45,17,0.0 +25322,4,22,30,0.0 +25322,36,19,15,0.0 +25322,66,17,5,0.0 +25322,27,43.9,44,0.0 +25322,50,16.25,5,0.0 +25322,13,6,13,0.0 +25322,63,43.9,42,0.0 +25322,45,9.5,30,0.0 +25322,57,19.5,36,0.0 +25322,42,14,24,0.0 +25322,25,14,14,0.0 +25322,38,263.5,7,0.0 +25322,54,7.45,36,0.0 +25322,20,81,42,0.0 +25322,18,62.5,49,0.0 +25322,59,55,36,0.0 +25323,44,19.45,29,0.0 +25323,45,9.5,46,0.0 +25323,19,9.2,6,0.0 +25323,5,21.35,14,0.0 +25323,24,4.5,48,0.0 +25323,72,34.8,48,0.0 +25323,13,6,3,0.0 +25323,2,19,46,0.0 +25323,61,28.5,39,0.0 +25323,17,39,25,0.0 +25323,75,7.75,46,0.0 +25323,9,97,36,0.0 +25323,15,15.5,41,0.0 +25323,51,53,42,0.0 +25323,30,25.89,6,0.0 +25323,29,123.79,12,0.0 +25323,38,263.5,46,0.0 +25323,63,43.9,13,0.0 +25323,7,30,23,0.0 +25323,47,9.5,7,0.0 +25323,27,43.9,35,0.0 +25323,20,81,11,0.0 +25323,18,62.5,3,0.0 +25323,39,18,1,0.0 +25323,66,17,37,0.0 +25323,34,14,42,0.0 +25323,68,12.5,27,0.0 +25323,42,14,8,0.0 +25323,76,18,26,0.0 +25323,71,21.5,29,0.0 +25323,4,22,42,0.0 +25323,59,55,12,0.0 +25323,73,15,32,0.0 +25323,36,19,50,0.0 +25323,56,38,9,0.0 +25323,21,10,40,0.0 +25323,33,2.5,16,0.0 +25323,26,31.23,46,0.0 +25323,32,32,38,0.0 +25323,77,13,10,0.0 +25323,8,40,22,0.0 +25323,69,36,20,0.0 +25323,46,12,21,0.0 +25323,62,49.3,11,0.0 +25323,57,19.5,17,0.0 +25323,58,13.25,40,0.0 +25323,64,33.25,24,0.0 +25323,25,14,17,0.0 +25323,67,14,45,0.0 +25323,50,16.25,26,0.0 +25323,41,9.65,35,0.0 +25323,48,12.75,49,0.0 +25323,40,18.4,17,0.0 +25323,74,10,2,0.0 +25323,28,45.6,22,0.0 +25323,49,20,37,0.0 +25323,16,17.45,27,0.0 +25323,23,9,48,0.0 +25323,54,7.45,6,0.0 +25324,10,31,1,0.0 +25324,66,17,20,0.0 +25324,37,26,9,0.0 +25324,24,4.5,43,0.0 +25324,5,21.35,35,0.0 +25324,38,263.5,32,0.0 +25324,52,7,35,0.0 +25324,76,18,27,0.0 +25324,62,49.3,25,0.0 +25324,71,21.5,3,0.0 +25324,12,38,24,0.0 +25324,67,14,43,0.0 +25324,4,22,33,0.0 +25324,1,18,31,0.0 +25324,59,55,28,0.0 +25324,32,32,16,0.0 +25324,61,28.5,46,0.0 +25324,43,46,4,0.0 +25324,14,23.25,8,0.0 +25324,56,38,31,0.0 +25324,36,19,21,0.0 +25324,47,9.5,18,0.0 +25324,64,33.25,13,0.0 +25324,18,62.5,48,0.0 +25324,15,15.5,23,0.0 +25324,45,9.5,31,0.0 +25324,70,15,22,0.0 +25324,28,45.6,44,0.0 +25324,57,19.5,14,0.0 +25324,33,2.5,32,0.0 +25324,25,14,50,0.0 +25324,9,97,28,0.0 +25324,55,24,40,0.0 +25324,13,6,42,0.0 +25324,6,25,36,0.0 +25324,53,32.8,16,0.0 +25324,72,34.8,28,0.0 +25324,49,20,24,0.0 +25324,3,10,2,0.0 +25324,26,31.23,35,0.0 +25324,44,19.45,16,0.0 +25324,50,16.25,41,0.0 +25324,11,21,5,0.0 +25324,2,19,7,0.0 +25324,7,30,7,0.0 +25324,42,14,6,0.0 +25324,58,13.25,40,0.0 +25324,35,18,50,0.0 +25324,41,9.65,16,0.0 +25324,22,21,24,0.0 +25324,77,13,9,0.0 +25324,75,7.75,33,0.0 +25324,68,12.5,1,0.0 +25324,19,9.2,25,0.0 +25324,31,12.5,46,0.0 +25324,17,39,2,0.0 +25324,69,36,48,0.0 +25324,39,18,6,0.0 +25324,20,81,6,0.0 +25324,29,123.79,27,0.0 +25325,64,33.25,6,0.0 +25325,11,21,22,0.0 +25325,56,38,16,0.0 +25325,19,9.2,39,0.0 +25325,40,18.4,46,0.0 +25325,15,15.5,23,0.0 +25325,4,22,22,0.0 +25325,53,32.8,41,0.0 +25325,76,18,15,0.0 +25325,32,32,48,0.0 +25325,67,14,15,0.0 +25325,2,19,7,0.0 +25325,31,12.5,29,0.0 +25325,5,21.35,10,0.0 +25325,6,25,2,0.0 +25325,69,36,17,0.0 +25325,73,15,42,0.0 +25325,63,43.9,33,0.0 +25325,55,24,38,0.0 +25325,38,263.5,5,0.0 +25325,3,10,42,0.0 +25326,57,19.5,46,0.0 +25326,13,6,16,0.0 +25326,56,38,16,0.0 +25326,22,21,50,0.0 +25326,20,81,19,0.0 +25326,1,18,40,0.0 +25326,30,25.89,14,0.0 +25326,10,31,39,0.0 +25326,4,22,38,0.0 +25326,59,55,22,0.0 +25326,23,9,13,0.0 +25326,58,13.25,9,0.0 +25326,65,21.05,43,0.0 +25326,25,14,35,0.0 +25326,75,7.75,48,0.0 +25327,48,12.75,34,0.0 +25327,9,97,11,0.0 +25327,6,25,19,0.0 +25327,45,9.5,25,0.0 +25327,49,20,25,0.0 +25327,5,21.35,23,0.0 +25327,12,38,50,0.0 +25327,53,32.8,36,0.0 +25327,65,21.05,39,0.0 +25327,33,2.5,9,0.0 +25327,68,12.5,22,0.0 +25327,42,14,47,0.0 +25327,66,17,34,0.0 +25327,31,12.5,28,0.0 +25327,23,9,43,0.0 +25327,22,21,33,0.0 +25327,16,17.45,32,0.0 +25327,18,62.5,23,0.0 +25327,58,13.25,3,0.0 +25327,59,55,50,0.0 +25327,11,21,14,0.0 +25327,61,28.5,35,0.0 +25327,13,6,40,0.0 +25327,4,22,22,0.0 +25327,35,18,44,0.0 +25327,47,9.5,40,0.0 +25327,3,10,41,0.0 +25327,17,39,45,0.0 +25327,71,21.5,37,0.0 +25327,51,53,39,0.0 +25327,27,43.9,6,0.0 +25327,76,18,33,0.0 +25327,52,7,18,0.0 +25327,21,10,50,0.0 +25327,32,32,10,0.0 +25327,72,34.8,1,0.0 +25327,50,16.25,16,0.0 +25327,41,9.65,48,0.0 +25327,43,46,27,0.0 +25327,1,18,19,0.0 +25327,2,19,5,0.0 +25327,67,14,42,0.0 +25328,46,12,7,0.0 +25328,57,19.5,47,0.0 +25328,43,46,43,0.0 +25328,47,9.5,42,0.0 +25328,73,15,21,0.0 +25328,3,10,25,0.0 +25328,24,4.5,10,0.0 +25328,6,25,9,0.0 +25328,58,13.25,42,0.0 +25328,72,34.8,15,0.0 +25328,2,19,22,0.0 +25328,70,15,3,0.0 +25328,51,53,17,0.0 +25328,66,17,3,0.0 +25328,17,39,48,0.0 +25328,44,19.45,50,0.0 +25328,64,33.25,32,0.0 +25328,75,7.75,11,0.0 +25328,69,36,1,0.0 +25328,67,14,10,0.0 +25328,60,34,27,0.0 +25328,52,7,27,0.0 +25328,23,9,35,0.0 +25328,45,9.5,44,0.0 +25328,27,43.9,39,0.0 +25328,18,62.5,14,0.0 +25328,22,21,31,0.0 +25329,29,123.79,27,0.0 +25329,64,33.25,32,0.0 +25329,75,7.75,41,0.0 +25329,63,43.9,5,0.0 +25329,53,32.8,8,0.0 +25329,24,4.5,12,0.0 +25329,40,18.4,39,0.0 +25329,7,30,3,0.0 +25329,61,28.5,9,0.0 +25329,51,53,13,0.0 +25329,22,21,13,0.0 +25329,31,12.5,31,0.0 +25329,3,10,11,0.0 +25329,2,19,29,0.0 +25329,36,19,42,0.0 +25329,67,14,42,0.0 +25329,54,7.45,17,0.0 +25329,48,12.75,22,0.0 +25329,77,13,35,0.0 +25329,71,21.5,3,0.0 +25329,60,34,49,0.0 +25329,33,2.5,5,0.0 +25329,73,15,6,0.0 +25329,55,24,32,0.0 +25329,15,15.5,44,0.0 +25329,34,14,24,0.0 +25329,30,25.89,27,0.0 +25329,35,18,11,0.0 +25329,14,23.25,49,0.0 +25329,62,49.3,16,0.0 +25329,20,81,47,0.0 +25329,66,17,20,0.0 +25329,13,6,23,0.0 +25329,59,55,2,0.0 +25329,28,45.6,24,0.0 +25329,50,16.25,28,0.0 +25329,19,9.2,6,0.0 +25329,44,19.45,43,0.0 +25329,42,14,12,0.0 +25329,11,21,46,0.0 +25329,8,40,14,0.0 +25329,23,9,30,0.0 +25329,72,34.8,33,0.0 +25329,21,10,32,0.0 +25329,46,12,27,0.0 +25329,5,21.35,22,0.0 +25329,1,18,23,0.0 +25329,12,38,29,0.0 +25329,69,36,21,0.0 +25329,52,7,28,0.0 +25329,70,15,47,0.0 +25329,41,9.65,11,0.0 +25329,65,21.05,21,0.0 +25329,26,31.23,40,0.0 +25329,16,17.45,11,0.0 +25329,58,13.25,33,0.0 +25329,45,9.5,31,0.0 +25329,10,31,21,0.0 +25329,56,38,43,0.0 +25329,39,18,44,0.0 +25329,37,26,29,0.0 +25329,9,97,11,0.0 +25329,17,39,26,0.0 +25329,74,10,44,0.0 +25329,76,18,15,0.0 +25329,57,19.5,10,0.0 +25329,25,14,38,0.0 +25329,32,32,22,0.0 +25329,38,263.5,31,0.0 +25329,49,20,6,0.0 +25329,6,25,14,0.0 +25329,4,22,10,0.0 +25329,68,12.5,33,0.0 +25329,27,43.9,22,0.0 +25329,18,62.5,8,0.0 +25329,47,9.5,41,0.0 +25330,34,14,16,0.0 +25330,19,9.2,41,0.0 +25330,64,33.25,19,0.0 +25330,72,34.8,21,0.0 +25330,11,21,49,0.0 +25330,18,62.5,49,0.0 +25330,71,21.5,13,0.0 +25330,65,21.05,39,0.0 +25330,40,18.4,32,0.0 +25330,45,9.5,28,0.0 +25330,27,43.9,15,0.0 +25331,47,9.5,49,0.0 +25331,21,10,23,0.0 +25331,61,28.5,1,0.0 +25331,11,21,16,0.0 +25331,18,62.5,25,0.0 +25331,77,13,40,0.0 +25331,34,14,24,0.0 +25331,1,18,19,0.0 +25331,54,7.45,38,0.0 +25331,70,15,29,0.0 +25331,15,15.5,4,0.0 +25331,37,26,8,0.0 +25331,63,43.9,4,0.0 +25331,41,9.65,48,0.0 +25331,33,2.5,31,0.0 +25331,72,34.8,10,0.0 +25331,25,14,33,0.0 +25331,66,17,6,0.0 +25331,39,18,22,0.0 +25331,50,16.25,11,0.0 +25331,62,49.3,33,0.0 +25331,38,263.5,33,0.0 +25331,23,9,6,0.0 +25331,43,46,10,0.0 +25331,65,21.05,29,0.0 +25331,46,12,21,0.0 +25331,14,23.25,8,0.0 +25331,31,12.5,40,0.0 +25331,60,34,35,0.0 +25331,51,53,50,0.0 +25331,71,21.5,21,0.0 +25331,2,19,34,0.0 +25331,30,25.89,45,0.0 +25331,69,36,19,0.0 +25331,10,31,44,0.0 +25331,8,40,41,0.0 +25331,12,38,38,0.0 +25331,36,19,50,0.0 +25331,40,18.4,25,0.0 +25331,6,25,6,0.0 +25331,32,32,46,0.0 +25331,7,30,43,0.0 +25331,17,39,8,0.0 +25331,24,4.5,5,0.0 +25331,19,9.2,50,0.0 +25331,59,55,44,0.0 +25331,52,7,15,0.0 +25331,13,6,11,0.0 +25331,44,19.45,2,0.0 +25331,28,45.6,43,0.0 +25331,26,31.23,31,0.0 +25331,68,12.5,37,0.0 +25331,74,10,3,0.0 +25331,3,10,31,0.0 +25331,42,14,24,0.0 +25331,64,33.25,10,0.0 +25331,57,19.5,50,0.0 +25331,67,14,13,0.0 +25331,58,13.25,48,0.0 +25331,76,18,50,0.0 +25331,75,7.75,13,0.0 +25331,5,21.35,48,0.0 +25331,27,43.9,5,0.0 +25331,53,32.8,48,0.0 +25331,29,123.79,40,0.0 +25331,73,15,43,0.0 +25331,35,18,11,0.0 +25331,9,97,9,0.0 +25331,45,9.5,20,0.0 +25331,55,24,12,0.0 +25332,12,38,22,0.0 +25332,59,55,32,0.0 +25332,24,4.5,40,0.0 +25332,53,32.8,39,0.0 +25332,1,18,19,0.0 +25332,60,34,33,0.0 +25332,67,14,18,0.0 +25332,70,15,27,0.0 +25332,43,46,27,0.0 +25332,26,31.23,27,0.0 +25332,20,81,23,0.0 +25332,18,62.5,48,0.0 +25332,62,49.3,14,0.0 +25332,52,7,38,0.0 +25332,75,7.75,47,0.0 +25332,71,21.5,16,0.0 +25332,55,24,29,0.0 +25332,36,19,9,0.0 +25332,57,19.5,34,0.0 +25332,69,36,4,0.0 +25332,46,12,12,0.0 +25332,30,25.89,43,0.0 +25332,9,97,31,0.0 +25332,77,13,20,0.0 +25332,25,14,48,0.0 +25332,54,7.45,42,0.0 +25332,27,43.9,36,0.0 +25332,16,17.45,2,0.0 +25332,15,15.5,37,0.0 +25332,19,9.2,13,0.0 +25332,3,10,25,0.0 +25332,21,10,34,0.0 +25332,68,12.5,45,0.0 +25332,47,9.5,28,0.0 +25332,2,19,13,0.0 +25332,35,18,50,0.0 +25332,65,21.05,25,0.0 +25332,32,32,12,0.0 +25332,23,9,9,0.0 +25332,41,9.65,30,0.0 +25332,66,17,1,0.0 +25332,39,18,28,0.0 +25332,49,20,9,0.0 +25332,42,14,26,0.0 +25332,61,28.5,17,0.0 +25332,72,34.8,25,0.0 +25332,45,9.5,47,0.0 +25332,8,40,2,0.0 +25332,38,263.5,27,0.0 +25332,34,14,16,0.0 +25332,5,21.35,41,0.0 +25332,56,38,10,0.0 +25332,50,16.25,48,0.0 +25332,40,18.4,13,0.0 +25332,17,39,49,0.0 +25332,10,31,29,0.0 +25333,25,14,44,0.0 +25333,75,7.75,13,0.0 +25333,73,15,20,0.0 +25333,31,12.5,5,0.0 +25333,43,46,9,0.0 +25333,11,21,15,0.0 +25333,7,30,28,0.0 +25333,33,2.5,2,0.0 +25333,44,19.45,29,0.0 +25333,58,13.25,32,0.0 +25333,27,43.9,39,0.0 +25333,54,7.45,33,0.0 +25333,1,18,50,0.0 +25333,41,9.65,17,0.0 +25333,35,18,24,0.0 +25333,60,34,19,0.0 +25333,70,15,38,0.0 +25333,36,19,22,0.0 +25333,67,14,1,0.0 +25333,61,28.5,38,0.0 +25333,18,62.5,34,0.0 +25333,13,6,47,0.0 +25334,3,10,11,0.0 +25334,7,30,44,0.0 +25334,66,17,6,0.0 +25334,53,32.8,36,0.0 +25334,72,34.8,49,0.0 +25334,68,12.5,43,0.0 +25334,74,10,15,0.0 +25334,63,43.9,29,0.0 +25334,20,81,4,0.0 +25334,71,21.5,38,0.0 +25334,28,45.6,1,0.0 +25334,40,18.4,24,0.0 +25334,45,9.5,23,0.0 +25334,21,10,38,0.0 +25334,6,25,49,0.0 +25334,57,19.5,31,0.0 +25334,36,19,31,0.0 +25334,4,22,25,0.0 +25334,26,31.23,18,0.0 +25334,46,12,20,0.0 +25334,12,38,22,0.0 +25334,38,263.5,25,0.0 +25334,5,21.35,35,0.0 +25334,10,31,33,0.0 +25334,37,26,2,0.0 +25334,77,13,38,0.0 +25334,58,13.25,30,0.0 +25334,13,6,36,0.0 +25334,76,18,21,0.0 +25334,61,28.5,15,0.0 +25334,73,15,39,0.0 +25334,32,32,30,0.0 +25334,27,43.9,14,0.0 +25334,55,24,46,0.0 +25334,16,17.45,42,0.0 +25334,23,9,7,0.0 +25334,9,97,16,0.0 +25334,44,19.45,44,0.0 +25334,47,9.5,4,0.0 +25334,39,18,40,0.0 +25334,25,14,12,0.0 +25334,56,38,39,0.0 +25334,17,39,12,0.0 +25334,2,19,33,0.0 +25334,65,21.05,19,0.0 +25334,1,18,26,0.0 +25334,8,40,35,0.0 +25334,48,12.75,15,0.0 +25334,43,46,38,0.0 +25334,52,7,36,0.0 +25334,70,15,5,0.0 +25334,34,14,13,0.0 +25334,35,18,49,0.0 +25334,42,14,20,0.0 +25334,54,7.45,8,0.0 +25334,31,12.5,30,0.0 +25334,33,2.5,26,0.0 +25334,19,9.2,23,0.0 +25334,50,16.25,17,0.0 +25334,24,4.5,20,0.0 +25334,51,53,28,0.0 +25334,41,9.65,22,0.0 +25335,50,16.25,32,0.0 +25335,26,31.23,15,0.0 +25335,3,10,34,0.0 +25335,9,97,47,0.0 +25335,14,23.25,1,0.0 +25335,32,32,47,0.0 +25335,22,21,9,0.0 +25335,13,6,21,0.0 +25335,70,15,16,0.0 +25335,76,18,6,0.0 +25335,30,25.89,43,0.0 +25335,72,34.8,26,0.0 +25335,69,36,7,0.0 +25335,28,45.6,34,0.0 +25335,5,21.35,8,0.0 +25335,18,62.5,38,0.0 +25335,48,12.75,42,0.0 +25335,23,9,34,0.0 +25335,56,38,28,0.0 +25335,65,21.05,45,0.0 +25335,20,81,20,0.0 +25335,21,10,13,0.0 +25335,25,14,36,0.0 +25335,19,9.2,17,0.0 +25335,41,9.65,32,0.0 +25335,1,18,44,0.0 +25335,16,17.45,47,0.0 +25335,12,38,2,0.0 +25335,74,10,26,0.0 +25335,52,7,6,0.0 +25335,49,20,43,0.0 +25335,63,43.9,47,0.0 +25335,51,53,35,0.0 +25335,59,55,3,0.0 +25335,62,49.3,50,0.0 +25335,60,34,42,0.0 +25335,55,24,25,0.0 +25335,47,9.5,37,0.0 +25335,33,2.5,23,0.0 +25335,53,32.8,11,0.0 +25335,7,30,7,0.0 +25335,8,40,30,0.0 +25335,45,9.5,16,0.0 +25335,10,31,12,0.0 +25335,67,14,6,0.0 +25335,77,13,32,0.0 +25335,38,263.5,23,0.0 +25335,43,46,44,0.0 +25335,4,22,42,0.0 +25335,2,19,42,0.0 +25335,73,15,22,0.0 +25335,29,123.79,28,0.0 +25335,35,18,13,0.0 +25335,61,28.5,40,0.0 +25335,36,19,44,0.0 +25335,58,13.25,14,0.0 +25335,44,19.45,24,0.0 +25335,11,21,43,0.0 +25335,24,4.5,26,0.0 +25335,66,17,46,0.0 +25335,71,21.5,31,0.0 +25335,46,12,47,0.0 +25335,39,18,45,0.0 +25335,54,7.45,24,0.0 +25335,64,33.25,18,0.0 +25335,37,26,11,0.0 +25335,15,15.5,5,0.0 +25335,40,18.4,4,0.0 +25335,27,43.9,3,0.0 +25335,75,7.75,14,0.0 +25336,2,19,50,0.0 +25336,48,12.75,21,0.0 +25336,43,46,2,0.0 +25336,47,9.5,16,0.0 +25336,72,34.8,19,0.0 +25336,76,18,25,0.0 +25336,40,18.4,27,0.0 +25336,58,13.25,46,0.0 +25336,45,9.5,12,0.0 +25336,59,55,46,0.0 +25336,46,12,8,0.0 +25336,70,15,38,0.0 +25336,17,39,2,0.0 +25336,32,32,49,0.0 +25336,49,20,2,0.0 +25336,19,9.2,40,0.0 +25336,75,7.75,34,0.0 +25336,63,43.9,2,0.0 +25336,55,24,21,0.0 +25336,44,19.45,29,0.0 +25336,33,2.5,13,0.0 +25336,64,33.25,49,0.0 +25337,46,12,29,0.0 +25337,51,53,22,0.0 +25337,65,21.05,44,0.0 +25337,44,19.45,50,0.0 +25337,60,34,38,0.0 +25337,32,32,38,0.0 +25337,64,33.25,16,0.0 +25337,58,13.25,6,0.0 +25337,45,9.5,33,0.0 +25337,21,10,49,0.0 +25338,5,21.35,37,0.0 +25338,23,9,28,0.0 +25338,40,18.4,14,0.0 +25338,60,34,36,0.0 +25338,55,24,35,0.0 +25338,50,16.25,38,0.0 +25338,45,9.5,44,0.0 +25338,75,7.75,22,0.0 +25338,30,25.89,10,0.0 +25338,56,38,40,0.0 +25338,17,39,18,0.0 +25338,37,26,8,0.0 +25338,53,32.8,5,0.0 +25338,47,9.5,2,0.0 +25338,48,12.75,27,0.0 +25338,6,25,49,0.0 +25339,38,263.5,21,0.0 +25339,72,34.8,46,0.0 +25339,32,32,18,0.0 +25339,76,18,22,0.0 +25339,43,46,35,0.0 +25339,73,15,9,0.0 +25339,13,6,10,0.0 +25339,57,19.5,3,0.0 +25339,45,9.5,20,0.0 +25339,27,43.9,6,0.0 +25339,6,25,41,0.0 +25339,74,10,27,0.0 +25339,44,19.45,23,0.0 +25339,48,12.75,19,0.0 +25339,40,18.4,1,0.0 +25339,16,17.45,40,0.0 +25339,25,14,22,0.0 +25339,3,10,49,0.0 +25339,29,123.79,19,0.0 +25339,1,18,7,0.0 +25339,71,21.5,34,0.0 +25339,47,9.5,41,0.0 +25339,7,30,48,0.0 +25339,26,31.23,5,0.0 +25339,19,9.2,33,0.0 +25339,22,21,34,0.0 +25339,59,55,12,0.0 +25339,53,32.8,27,0.0 +25339,70,15,11,0.0 +25339,58,13.25,6,0.0 +25339,37,26,40,0.0 +25339,66,17,28,0.0 +25340,62,49.3,36,0.0 +25340,46,12,31,0.0 +25340,59,55,35,0.0 +25340,64,33.25,22,0.0 +25340,33,2.5,6,0.0 +25340,24,4.5,16,0.0 +25340,58,13.25,39,0.0 +25340,13,6,47,0.0 +25340,32,32,30,0.0 +25340,43,46,4,0.0 +25340,47,9.5,26,0.0 +25340,68,12.5,14,0.0 +25340,49,20,6,0.0 +25340,40,18.4,14,0.0 +25340,27,43.9,42,0.0 +25340,35,18,41,0.0 +25340,55,24,39,0.0 +25340,16,17.45,2,0.0 +25340,6,25,36,0.0 +25340,8,40,50,0.0 +25340,12,38,45,0.0 +25340,52,7,6,0.0 +25340,38,263.5,5,0.0 +25340,54,7.45,11,0.0 +25340,26,31.23,12,0.0 +25340,76,18,33,0.0 +25340,37,26,16,0.0 +25340,7,30,4,0.0 +25340,48,12.75,3,0.0 +25340,56,38,20,0.0 +25340,65,21.05,24,0.0 +25340,10,31,16,0.0 +25340,25,14,28,0.0 +25340,73,15,21,0.0 +25340,4,22,20,0.0 +25340,29,123.79,37,0.0 +25340,61,28.5,38,0.0 +25340,45,9.5,6,0.0 +25340,69,36,44,0.0 +25340,66,17,25,0.0 +25340,67,14,3,0.0 +25340,77,13,17,0.0 +25340,44,19.45,5,0.0 +25340,74,10,28,0.0 +25340,34,14,37,0.0 +25340,39,18,34,0.0 +25340,36,19,33,0.0 +25340,28,45.6,20,0.0 +25340,9,97,16,0.0 +25340,60,34,10,0.0 +25340,22,21,39,0.0 +25340,63,43.9,47,0.0 +25340,42,14,10,0.0 +25340,31,12.5,4,0.0 +25340,70,15,36,0.0 +25340,15,15.5,11,0.0 +25340,51,53,10,0.0 +25340,18,62.5,5,0.0 +25340,14,23.25,4,0.0 +25340,75,7.75,48,0.0 +25340,53,32.8,14,0.0 +25340,1,18,13,0.0 +25340,21,10,22,0.0 +25340,57,19.5,43,0.0 +25340,2,19,4,0.0 +25341,51,53,18,0.0 +25341,15,15.5,40,0.0 +25341,32,32,40,0.0 +25341,24,4.5,5,0.0 +25341,54,7.45,12,0.0 +25341,27,43.9,17,0.0 +25341,49,20,22,0.0 +25341,36,19,4,0.0 +25341,70,15,30,0.0 +25341,52,7,15,0.0 +25341,59,55,44,0.0 +25341,39,18,28,0.0 +25341,44,19.45,41,0.0 +25341,43,46,12,0.0 +25341,31,12.5,50,0.0 +25341,33,2.5,37,0.0 +25341,4,22,39,0.0 +25341,46,12,10,0.0 +25341,53,32.8,34,0.0 +25341,21,10,24,0.0 +25341,38,263.5,43,0.0 +25341,48,12.75,27,0.0 +25341,63,43.9,4,0.0 +25341,5,21.35,24,0.0 +25341,2,19,24,0.0 +25341,41,9.65,33,0.0 +25341,67,14,3,0.0 +25341,66,17,43,0.0 +25341,26,31.23,30,0.0 +25341,20,81,2,0.0 +25341,60,34,17,0.0 +25341,18,62.5,11,0.0 +25341,62,49.3,7,0.0 +25341,40,18.4,29,0.0 +25341,35,18,16,0.0 +25341,65,21.05,48,0.0 +25341,34,14,50,0.0 +25341,17,39,29,0.0 +25341,73,15,17,0.0 +25341,76,18,8,0.0 +25341,56,38,48,0.0 +25341,16,17.45,41,0.0 +25341,12,38,26,0.0 +25341,55,24,1,0.0 +25341,47,9.5,40,0.0 +25341,11,21,6,0.0 +25341,42,14,15,0.0 +25341,19,9.2,5,0.0 +25341,58,13.25,20,0.0 +25341,61,28.5,46,0.0 +25341,9,97,14,0.0 +25341,7,30,27,0.0 +25341,72,34.8,40,0.0 +25341,10,31,19,0.0 +25341,6,25,2,0.0 +25341,23,9,5,0.0 +25341,68,12.5,15,0.0 +25341,8,40,24,0.0 +25341,64,33.25,49,0.0 +25341,22,21,6,0.0 +25341,74,10,33,0.0 +25341,25,14,37,0.0 +25341,1,18,16,0.0 +25341,77,13,13,0.0 +25341,57,19.5,9,0.0 +25341,50,16.25,24,0.0 +25341,45,9.5,16,0.0 +25341,75,7.75,7,0.0 +25341,14,23.25,20,0.0 +25341,71,21.5,41,0.0 +25341,37,26,34,0.0 +25341,13,6,12,0.0 +25341,30,25.89,47,0.0 +25341,29,123.79,10,0.0 +25341,28,45.6,14,0.0 +25342,18,62.5,20,0.0 +25342,14,23.25,38,0.0 +25342,59,55,32,0.0 +25342,51,53,46,0.0 +25342,70,15,13,0.0 +25342,5,21.35,8,0.0 +25342,22,21,14,0.0 +25342,68,12.5,21,0.0 +25342,28,45.6,4,0.0 +25342,12,38,50,0.0 +25342,29,123.79,44,0.0 +25342,26,31.23,38,0.0 +25342,37,26,1,0.0 +25342,58,13.25,34,0.0 +25342,42,14,33,0.0 +25342,49,20,5,0.0 +25342,33,2.5,5,0.0 +25342,75,7.75,44,0.0 +25342,54,7.45,26,0.0 +25342,10,31,30,0.0 +25342,3,10,29,0.0 +25342,65,21.05,5,0.0 +25342,64,33.25,7,0.0 +25342,73,15,20,0.0 +25342,41,9.65,28,0.0 +25342,52,7,10,0.0 +25342,43,46,40,0.0 +25342,47,9.5,50,0.0 +25342,60,34,2,0.0 +25342,2,19,15,0.0 +25342,35,18,38,0.0 +25342,53,32.8,49,0.0 +25342,13,6,46,0.0 +25342,8,40,12,0.0 +25342,36,19,19,0.0 +25342,32,32,33,0.0 +25342,72,34.8,50,0.0 +25342,11,21,43,0.0 +25342,63,43.9,22,0.0 +25342,27,43.9,36,0.0 +25342,9,97,7,0.0 +25342,38,263.5,34,0.0 +25342,50,16.25,2,0.0 +25342,69,36,10,0.0 +25342,39,18,5,0.0 +25342,34,14,20,0.0 +25342,45,9.5,17,0.0 +25342,30,25.89,14,0.0 +25342,74,10,3,0.0 +25342,31,12.5,7,0.0 +25342,24,4.5,14,0.0 +25342,4,22,28,0.0 +25343,74,10,31,0.0 +25343,55,24,21,0.0 +25343,61,28.5,21,0.0 +25343,40,18.4,48,0.0 +25343,52,7,12,0.0 +25343,53,32.8,47,0.0 +25343,71,21.5,37,0.0 +25343,57,19.5,5,0.0 +25343,8,40,12,0.0 +25343,34,14,27,0.0 +25343,70,15,4,0.0 +25343,10,31,18,0.0 +25343,43,46,1,0.0 +25343,63,43.9,20,0.0 +25343,51,53,9,0.0 +25343,41,9.65,45,0.0 +25343,16,17.45,34,0.0 +25343,64,33.25,47,0.0 +25343,69,36,2,0.0 +25343,1,18,31,0.0 +25343,38,263.5,5,0.0 +25343,77,13,39,0.0 +25343,46,12,35,0.0 +25343,76,18,35,0.0 +25343,30,25.89,14,0.0 +25343,72,34.8,33,0.0 +25344,7,30,45,0.0 +25344,32,32,18,0.0 +25344,3,10,28,0.0 +25344,69,36,10,0.0 +25344,53,32.8,23,0.0 +25344,76,18,10,0.0 +25344,9,97,40,0.0 +25344,56,38,48,0.0 +25344,55,24,32,0.0 +25344,68,12.5,33,0.0 +25344,50,16.25,9,0.0 +25344,42,14,19,0.0 +25344,40,18.4,30,0.0 +25344,20,81,22,0.0 +25344,60,34,33,0.0 +25344,27,43.9,34,0.0 +25344,44,19.45,6,0.0 +25344,23,9,22,0.0 +25344,6,25,46,0.0 +25344,28,45.6,16,0.0 +25344,26,31.23,39,0.0 +25344,61,28.5,33,0.0 +25344,65,21.05,45,0.0 +25344,13,6,27,0.0 +25344,66,17,6,0.0 +25344,43,46,11,0.0 +25345,52,7,15,0.0 +25345,18,62.5,48,0.0 +25345,46,12,35,0.0 +25345,36,19,33,0.0 +25345,19,9.2,41,0.0 +25345,8,40,15,0.0 +25345,49,20,31,0.0 +25345,20,81,50,0.0 +25345,56,38,49,0.0 +25345,16,17.45,11,0.0 +25345,29,123.79,18,0.0 +25345,43,46,21,0.0 +25345,44,19.45,35,0.0 +25345,17,39,43,0.0 +25345,75,7.75,15,0.0 +25345,73,15,20,0.0 +25345,77,13,16,0.0 +25345,42,14,49,0.0 +25345,2,19,41,0.0 +25345,40,18.4,4,0.0 +25345,30,25.89,24,0.0 +25345,65,21.05,35,0.0 +25345,33,2.5,22,0.0 +25345,57,19.5,50,0.0 +25345,37,26,26,0.0 +25345,62,49.3,31,0.0 +25345,26,31.23,38,0.0 +25345,6,25,13,0.0 +25345,41,9.65,17,0.0 +25345,59,55,20,0.0 +25345,4,22,38,0.0 +25345,69,36,23,0.0 +25345,31,12.5,31,0.0 +25345,53,32.8,33,0.0 +25345,25,14,43,0.0 +25345,1,18,5,0.0 +25345,14,23.25,23,0.0 +25345,64,33.25,41,0.0 +25345,23,9,5,0.0 +25345,76,18,35,0.0 +25345,11,21,15,0.0 +25345,28,45.6,30,0.0 +25345,12,38,46,0.0 +25345,21,10,23,0.0 +25345,48,12.75,25,0.0 +25346,51,53,20,0.0 +25346,22,21,14,0.0 +25346,52,7,20,0.0 +25346,25,14,24,0.0 +25346,66,17,43,0.0 +25346,27,43.9,47,0.0 +25346,37,26,48,0.0 +25346,18,62.5,4,0.0 +25346,33,2.5,48,0.0 +25346,32,32,22,0.0 +25346,71,21.5,46,0.0 +25346,73,15,31,0.0 +25346,64,33.25,38,0.0 +25346,70,15,3,0.0 +25346,5,21.35,17,0.0 +25346,34,14,25,0.0 +25346,72,34.8,44,0.0 +25346,41,9.65,48,0.0 +25346,15,15.5,1,0.0 +25346,3,10,45,0.0 +25346,46,12,34,0.0 +25346,28,45.6,1,0.0 +25346,31,12.5,29,0.0 +25346,57,19.5,19,0.0 +25346,54,7.45,32,0.0 +25346,65,21.05,35,0.0 +25346,44,19.45,2,0.0 +25346,14,23.25,50,0.0 +25346,75,7.75,5,0.0 +25346,69,36,35,0.0 +25346,56,38,34,0.0 +25346,13,6,24,0.0 +25346,20,81,2,0.0 +25346,40,18.4,43,0.0 +25346,23,9,50,0.0 +25346,45,9.5,5,0.0 +25347,44,19.45,15,0.0 +25347,5,21.35,14,0.0 +25347,62,49.3,12,0.0 +25347,71,21.5,9,0.0 +25347,26,31.23,15,0.0 +25347,3,10,32,0.0 +25347,1,18,28,0.0 +25347,13,6,44,0.0 +25347,74,10,7,0.0 +25347,8,40,21,0.0 +25347,32,32,1,0.0 +25347,56,38,20,0.0 +25347,2,19,41,0.0 +25347,17,39,29,0.0 +25347,70,15,29,0.0 +25347,35,18,30,0.0 +25347,48,12.75,22,0.0 +25347,11,21,16,0.0 +25347,6,25,50,0.0 +25347,36,19,37,0.0 +25347,52,7,5,0.0 +25347,51,53,25,0.0 +25347,16,17.45,15,0.0 +25347,19,9.2,25,0.0 +25347,21,10,38,0.0 +25347,12,38,17,0.0 +25347,29,123.79,40,0.0 +25347,61,28.5,27,0.0 +25347,9,97,20,0.0 +25347,54,7.45,1,0.0 +25347,64,33.25,5,0.0 +25347,4,22,25,0.0 +25347,30,25.89,32,0.0 +25347,15,15.5,44,0.0 +25347,55,24,16,0.0 +25347,58,13.25,26,0.0 +25347,67,14,20,0.0 +25347,66,17,16,0.0 +25347,38,263.5,41,0.0 +25347,10,31,37,0.0 +25347,24,4.5,18,0.0 +25347,76,18,26,0.0 +25347,20,81,13,0.0 +25347,28,45.6,48,0.0 +25347,42,14,9,0.0 +25347,34,14,14,0.0 +25347,41,9.65,17,0.0 +25347,60,34,32,0.0 +25347,40,18.4,22,0.0 +25347,63,43.9,45,0.0 +25347,22,21,32,0.0 +25347,25,14,19,0.0 +25347,46,12,20,0.0 +25347,39,18,3,0.0 +25347,69,36,38,0.0 +25347,45,9.5,41,0.0 +25347,47,9.5,33,0.0 +25347,33,2.5,46,0.0 +25347,37,26,35,0.0 +25347,43,46,45,0.0 +25347,77,13,29,0.0 +25347,27,43.9,17,0.0 +25347,68,12.5,28,0.0 +25347,73,15,34,0.0 +25347,65,21.05,15,0.0 +25347,59,55,17,0.0 +25347,49,20,23,0.0 +25347,75,7.75,15,0.0 +25347,53,32.8,1,0.0 +25348,48,12.75,1,0.0 +25348,75,7.75,3,0.0 +25348,61,28.5,32,0.0 +25348,4,22,2,0.0 +25348,28,45.6,6,0.0 +25348,76,18,14,0.0 +25348,43,46,19,0.0 +25348,41,9.65,41,0.0 +25348,70,15,3,0.0 +25348,77,13,34,0.0 +25348,2,19,41,0.0 +25348,8,40,6,0.0 +25348,66,17,31,0.0 +25348,58,13.25,38,0.0 +25348,74,10,30,0.0 +25348,36,19,5,0.0 +25348,20,81,44,0.0 +25348,7,30,3,0.0 +25348,57,19.5,21,0.0 +25348,50,16.25,6,0.0 +25348,65,21.05,49,0.0 +25348,71,21.5,14,0.0 +25348,51,53,28,0.0 +25348,18,62.5,25,0.0 +25348,63,43.9,37,0.0 +25348,55,24,37,0.0 +25348,38,263.5,14,0.0 +25348,1,18,35,0.0 +25348,17,39,50,0.0 +25348,59,55,25,0.0 +25348,52,7,26,0.0 +25348,42,14,47,0.0 +25348,25,14,35,0.0 +25348,60,34,42,0.0 +25348,32,32,26,0.0 +25348,69,36,5,0.0 +25348,54,7.45,40,0.0 +25348,23,9,15,0.0 +25348,68,12.5,27,0.0 +25348,29,123.79,5,0.0 +25348,56,38,38,0.0 +25348,26,31.23,48,0.0 +25348,24,4.5,22,0.0 +25348,12,38,6,0.0 +25348,53,32.8,49,0.0 +25348,44,19.45,44,0.0 +25348,21,10,43,0.0 +25348,16,17.45,27,0.0 +25348,37,26,2,0.0 +25348,39,18,38,0.0 +25348,73,15,25,0.0 +25348,19,9.2,31,0.0 +25348,46,12,17,0.0 +25348,72,34.8,48,0.0 +25348,11,21,16,0.0 +25348,45,9.5,25,0.0 +25348,64,33.25,1,0.0 +25348,31,12.5,23,0.0 +25348,5,21.35,19,0.0 +25348,35,18,47,0.0 +25348,47,9.5,23,0.0 +25348,15,15.5,43,0.0 +25348,49,20,50,0.0 +25348,13,6,2,0.0 +25348,30,25.89,2,0.0 +25348,62,49.3,41,0.0 +25348,40,18.4,30,0.0 +25348,10,31,6,0.0 +25348,14,23.25,44,0.0 +25348,9,97,13,0.0 +25348,33,2.5,42,0.0 +25348,22,21,38,0.0 +25348,67,14,11,0.0 +25348,27,43.9,1,0.0 +25348,6,25,12,0.0 +25348,3,10,7,0.0 +25348,34,14,47,0.0 +25349,50,16.25,5,0.0 +25349,49,20,10,0.0 +25349,20,81,48,0.0 +25349,12,38,12,0.0 +25349,71,21.5,18,0.0 +25349,38,263.5,8,0.0 +25349,73,15,9,0.0 +25349,41,9.65,34,0.0 +25349,23,9,5,0.0 +25349,5,21.35,49,0.0 +25349,77,13,20,0.0 +25349,63,43.9,11,0.0 +25349,10,31,38,0.0 +25349,28,45.6,8,0.0 +25349,1,18,49,0.0 +25349,48,12.75,33,0.0 +25349,62,49.3,42,0.0 +25349,53,32.8,47,0.0 +25349,14,23.25,17,0.0 +25349,68,12.5,19,0.0 +25349,8,40,25,0.0 +25349,33,2.5,21,0.0 +25349,76,18,49,0.0 +25349,56,38,9,0.0 +25349,13,6,30,0.0 +25349,9,97,16,0.0 +25349,66,17,32,0.0 +25350,55,24,11,0.0 +25350,62,49.3,33,0.0 +25350,5,21.35,16,0.0 +25350,28,45.6,39,0.0 +25350,21,10,2,0.0 +25350,74,10,22,0.0 +25350,9,97,36,0.0 +25350,25,14,5,0.0 +25350,20,81,11,0.0 +25350,7,30,10,0.0 +25350,71,21.5,36,0.0 +25350,42,14,6,0.0 +25350,12,38,48,0.0 +25350,8,40,26,0.0 +25350,1,18,31,0.0 +25350,70,15,38,0.0 +25350,39,18,11,0.0 +25350,50,16.25,15,0.0 +25350,43,46,25,0.0 +25350,46,12,48,0.0 +25350,48,12.75,4,0.0 +25350,60,34,41,0.0 +25350,15,15.5,29,0.0 +25350,26,31.23,49,0.0 +25350,37,26,22,0.0 +25350,19,9.2,34,0.0 +25350,3,10,27,0.0 +25350,36,19,48,0.0 +25350,67,14,13,0.0 +25350,69,36,22,0.0 +25350,23,9,7,0.0 +25350,59,55,40,0.0 +25350,18,62.5,34,0.0 +25350,11,21,44,0.0 +25350,61,28.5,50,0.0 +25350,73,15,9,0.0 +25351,50,16.25,37,0.0 +25351,24,4.5,16,0.0 +25351,26,31.23,28,0.0 +25351,36,19,49,0.0 +25351,59,55,14,0.0 +25351,30,25.89,14,0.0 +25351,46,12,20,0.0 +25351,5,21.35,31,0.0 +25351,61,28.5,26,0.0 +25351,14,23.25,47,0.0 +25351,47,9.5,23,0.0 +25351,10,31,6,0.0 +25351,4,22,11,0.0 +25351,8,40,49,0.0 +25351,70,15,3,0.0 +25351,42,14,16,0.0 +25351,38,263.5,32,0.0 +25351,41,9.65,46,0.0 +25351,2,19,37,0.0 +25351,31,12.5,41,0.0 +25351,64,33.25,31,0.0 +25351,66,17,40,0.0 +25351,3,10,3,0.0 +25351,67,14,11,0.0 +25351,19,9.2,18,0.0 +25351,34,14,48,0.0 +25351,72,34.8,39,0.0 +25351,63,43.9,35,0.0 +25351,68,12.5,40,0.0 +25351,33,2.5,23,0.0 +25351,1,18,18,0.0 +25351,28,45.6,10,0.0 +25351,44,19.45,21,0.0 +25351,77,13,39,0.0 +25351,56,38,38,0.0 +25351,6,25,15,0.0 +25351,43,46,14,0.0 +25351,37,26,18,0.0 +25351,40,18.4,17,0.0 +25351,12,38,17,0.0 +25351,32,32,29,0.0 +25351,17,39,34,0.0 +25351,13,6,29,0.0 +25351,39,18,44,0.0 +25351,25,14,49,0.0 +25351,54,7.45,31,0.0 +25351,18,62.5,48,0.0 +25351,74,10,41,0.0 +25351,52,7,34,0.0 +25351,73,15,37,0.0 +25351,49,20,43,0.0 +25351,20,81,23,0.0 +25351,53,32.8,24,0.0 +25351,23,9,37,0.0 +25351,11,21,2,0.0 +25351,48,12.75,32,0.0 +25351,55,24,31,0.0 +25351,35,18,24,0.0 +25351,29,123.79,32,0.0 +25351,7,30,35,0.0 +25351,22,21,42,0.0 +25351,58,13.25,18,0.0 +25351,51,53,4,0.0 +25351,62,49.3,16,0.0 +25351,45,9.5,49,0.0 +25351,16,17.45,35,0.0 +25351,60,34,5,0.0 +25351,9,97,32,0.0 +25351,15,15.5,17,0.0 +25351,27,43.9,1,0.0 +25351,76,18,47,0.0 +25351,65,21.05,45,0.0 +25351,69,36,39,0.0 +25351,71,21.5,15,0.0 +25351,75,7.75,11,0.0 +25351,57,19.5,36,0.0 +25352,70,15,45,0.0 +25352,20,81,7,0.0 +25352,3,10,29,0.0 +25352,55,24,29,0.0 +25352,9,97,31,0.0 +25352,4,22,5,0.0 +25352,38,263.5,45,0.0 +25352,64,33.25,47,0.0 +25352,73,15,4,0.0 +25352,11,21,38,0.0 +25352,10,31,13,0.0 +25352,63,43.9,49,0.0 +25352,22,21,47,0.0 +25352,33,2.5,3,0.0 +25352,46,12,12,0.0 +25352,40,18.4,31,0.0 +25352,72,34.8,21,0.0 +25352,37,26,4,0.0 +25352,32,32,15,0.0 +25353,52,7,24,0.0 +25353,74,10,38,0.0 +25353,37,26,32,0.0 +25353,38,263.5,14,0.0 +25353,67,14,32,0.0 +25353,43,46,44,0.0 +25353,14,23.25,50,0.0 +25353,66,17,34,0.0 +25353,51,53,14,0.0 +25353,56,38,19,0.0 +25353,3,10,17,0.0 +25353,65,21.05,16,0.0 +25353,11,21,38,0.0 +25353,57,19.5,7,0.0 +25353,34,14,20,0.0 +25353,36,19,30,0.0 +25353,53,32.8,48,0.0 +25353,8,40,13,0.0 +25353,49,20,6,0.0 +25353,63,43.9,17,0.0 +25353,76,18,29,0.0 +25353,18,62.5,6,0.0 +25353,2,19,23,0.0 +25353,23,9,9,0.0 +25353,27,43.9,40,0.0 +25353,58,13.25,49,0.0 +25353,72,34.8,36,0.0 +25353,64,33.25,24,0.0 +25353,21,10,49,0.0 +25353,13,6,4,0.0 +25353,26,31.23,41,0.0 +25353,31,12.5,3,0.0 +25353,71,21.5,30,0.0 +25353,40,18.4,45,0.0 +25353,30,25.89,10,0.0 +25353,20,81,49,0.0 +25353,48,12.75,40,0.0 +25353,45,9.5,37,0.0 +25353,60,34,44,0.0 +25353,29,123.79,15,0.0 +25354,1,18,17,0.0 +25354,39,18,17,0.0 +25354,53,32.8,50,0.0 +25354,10,31,18,0.0 +25354,24,4.5,28,0.0 +25354,2,19,40,0.0 +25354,18,62.5,32,0.0 +25354,33,2.5,38,0.0 +25354,51,53,29,0.0 +25354,4,22,16,0.0 +25354,74,10,33,0.0 +25354,52,7,41,0.0 +25354,73,15,21,0.0 +25354,25,14,32,0.0 +25354,61,28.5,1,0.0 +25354,36,19,47,0.0 +25354,46,12,42,0.0 +25354,60,34,18,0.0 +25354,70,15,4,0.0 +25354,26,31.23,17,0.0 +25354,67,14,18,0.0 +25354,38,263.5,11,0.0 +25354,40,18.4,6,0.0 +25354,71,21.5,1,0.0 +25354,20,81,23,0.0 +25354,30,25.89,21,0.0 +25354,69,36,14,0.0 +25354,15,15.5,17,0.0 +25354,32,32,18,0.0 +25354,3,10,20,0.0 +25354,12,38,50,0.0 +25354,76,18,29,0.0 +25354,41,9.65,45,0.0 +25354,29,123.79,12,0.0 +25354,66,17,45,0.0 +25354,56,38,43,0.0 +25354,17,39,35,0.0 +25354,64,33.25,26,0.0 +25354,34,14,41,0.0 +25354,63,43.9,28,0.0 +25354,65,21.05,38,0.0 +25354,54,7.45,15,0.0 +25354,43,46,15,0.0 +25354,8,40,12,0.0 +25354,72,34.8,13,0.0 +25354,59,55,18,0.0 +25354,55,24,47,0.0 +25354,68,12.5,8,0.0 +25354,14,23.25,33,0.0 +25354,23,9,49,0.0 +25354,9,97,26,0.0 +25354,22,21,12,0.0 +25354,7,30,47,0.0 +25354,75,7.75,37,0.0 +25354,62,49.3,48,0.0 +25354,16,17.45,30,0.0 +25354,35,18,11,0.0 +25354,57,19.5,40,0.0 +25354,27,43.9,50,0.0 +25354,31,12.5,12,0.0 +25354,28,45.6,50,0.0 +25354,58,13.25,17,0.0 +25354,49,20,27,0.0 +25355,40,18.4,1,0.0 +25355,11,21,28,0.0 +25355,51,53,8,0.0 +25355,73,15,50,0.0 +25355,54,7.45,20,0.0 +25355,67,14,19,0.0 +25355,3,10,31,0.0 +25355,50,16.25,4,0.0 +25355,8,40,49,0.0 +25355,18,62.5,15,0.0 +25355,30,25.89,2,0.0 +25355,57,19.5,15,0.0 +25355,45,9.5,23,0.0 +25355,6,25,7,0.0 +25355,32,32,13,0.0 +25355,27,43.9,40,0.0 +25355,10,31,15,0.0 +25355,23,9,14,0.0 +25355,1,18,8,0.0 +25355,66,17,48,0.0 +25355,20,81,24,0.0 +25355,55,24,1,0.0 +25355,17,39,24,0.0 +25355,31,12.5,24,0.0 +25355,70,15,42,0.0 +25355,74,10,21,0.0 +25355,43,46,37,0.0 +25355,33,2.5,45,0.0 +25355,61,28.5,23,0.0 +25355,39,18,4,0.0 +25355,15,15.5,10,0.0 +25355,62,49.3,18,0.0 +25355,34,14,47,0.0 +25355,68,12.5,40,0.0 +25355,9,97,9,0.0 +25355,60,34,33,0.0 +25355,48,12.75,20,0.0 +25355,22,21,21,0.0 +25355,41,9.65,23,0.0 +25355,7,30,39,0.0 +25355,63,43.9,28,0.0 +25355,52,7,49,0.0 +25355,13,6,5,0.0 +25355,37,26,36,0.0 +25355,35,18,5,0.0 +25355,77,13,48,0.0 +25355,49,20,31,0.0 +25355,29,123.79,39,0.0 +25355,58,13.25,12,0.0 +25355,65,21.05,8,0.0 +25355,26,31.23,20,0.0 +25355,47,9.5,9,0.0 +25355,12,38,38,0.0 +25355,19,9.2,16,0.0 +25355,75,7.75,11,0.0 +25355,21,10,34,0.0 +25355,72,34.8,30,0.0 +25355,2,19,4,0.0 +25355,14,23.25,32,0.0 +25355,28,45.6,33,0.0 +25356,53,32.8,2,0.0 +25356,43,46,4,0.0 +25356,50,16.25,47,0.0 +25356,8,40,11,0.0 +25356,17,39,8,0.0 +25356,73,15,16,0.0 +25356,70,15,4,0.0 +25356,20,81,34,0.0 +25356,32,32,12,0.0 +25356,77,13,40,0.0 +25356,51,53,9,0.0 +25356,37,26,29,0.0 +25356,4,22,20,0.0 +25356,58,13.25,36,0.0 +25356,69,36,3,0.0 +25356,5,21.35,1,0.0 +25357,37,26,6,0.0 +25357,57,19.5,21,0.0 +25357,67,14,1,0.0 +25357,11,21,3,0.0 +25357,29,123.79,26,0.0 +25357,28,45.6,35,0.0 +25357,23,9,14,0.0 +25357,64,33.25,46,0.0 +25357,10,31,20,0.0 +25357,76,18,22,0.0 +25357,43,46,34,0.0 +25357,68,12.5,12,0.0 +25357,59,55,50,0.0 +25357,3,10,7,0.0 +25357,51,53,9,0.0 +25357,8,40,10,0.0 +25357,48,12.75,48,0.0 +25357,41,9.65,26,0.0 +25357,15,15.5,38,0.0 +25357,52,7,46,0.0 +25357,26,31.23,41,0.0 +25357,60,34,31,0.0 +25357,53,32.8,37,0.0 +25357,25,14,39,0.0 +25357,73,15,42,0.0 +25357,22,21,18,0.0 +25357,54,7.45,20,0.0 +25357,30,25.89,17,0.0 +25357,2,19,37,0.0 +25357,50,16.25,36,0.0 +25357,6,25,37,0.0 +25357,27,43.9,1,0.0 +25357,74,10,5,0.0 +25357,65,21.05,21,0.0 +25357,14,23.25,6,0.0 +25357,77,13,32,0.0 +25357,7,30,41,0.0 +25357,45,9.5,31,0.0 +25357,20,81,30,0.0 +25357,38,263.5,12,0.0 +25357,49,20,44,0.0 +25357,21,10,37,0.0 +25357,12,38,33,0.0 +25357,9,97,20,0.0 +25357,19,9.2,4,0.0 +25357,56,38,9,0.0 +25357,66,17,4,0.0 +25357,36,19,35,0.0 +25357,55,24,36,0.0 +25357,4,22,40,0.0 +25357,32,32,32,0.0 +25357,24,4.5,32,0.0 +25357,31,12.5,41,0.0 +25357,35,18,10,0.0 +25357,72,34.8,36,0.0 +25357,69,36,7,0.0 +25357,42,14,12,0.0 +25357,44,19.45,31,0.0 +25357,13,6,46,0.0 +25357,46,12,46,0.0 +25357,62,49.3,24,0.0 +25357,39,18,2,0.0 +25357,1,18,10,0.0 +25357,16,17.45,23,0.0 +25357,18,62.5,46,0.0 +25357,40,18.4,6,0.0 +25357,17,39,3,0.0 +25357,47,9.5,13,0.0 +25357,5,21.35,17,0.0 +25357,70,15,44,0.0 +25357,71,21.5,6,0.0 +25357,58,13.25,10,0.0 +25358,40,18.4,39,0.0 +25358,62,49.3,14,0.0 +25358,51,53,24,0.0 +25358,42,14,19,0.0 +25358,63,43.9,7,0.0 +25358,25,14,14,0.0 +25358,36,19,36,0.0 +25358,16,17.45,35,0.0 +25358,71,21.5,2,0.0 +25358,7,30,31,0.0 +25358,2,19,1,0.0 +25358,34,14,34,0.0 +25358,35,18,34,0.0 +25358,52,7,50,0.0 +25358,28,45.6,22,0.0 +25358,58,13.25,37,0.0 +25358,39,18,39,0.0 +25358,66,17,42,0.0 +25358,67,14,40,0.0 +25358,53,32.8,40,0.0 +25358,5,21.35,40,0.0 +25358,15,15.5,19,0.0 +25358,47,9.5,6,0.0 +25358,50,16.25,33,0.0 +25358,19,9.2,19,0.0 +25358,18,62.5,3,0.0 +25358,23,9,41,0.0 +25358,29,123.79,5,0.0 +25358,48,12.75,19,0.0 +25358,57,19.5,32,0.0 +25358,14,23.25,27,0.0 +25358,6,25,3,0.0 +25358,61,28.5,11,0.0 +25358,10,31,37,0.0 +25358,64,33.25,31,0.0 +25358,75,7.75,50,0.0 +25358,17,39,13,0.0 +25358,44,19.45,3,0.0 +25358,77,13,36,0.0 +25358,59,55,7,0.0 +25358,74,10,34,0.0 +25358,37,26,20,0.0 +25358,72,34.8,5,0.0 +25358,27,43.9,14,0.0 +25358,31,12.5,4,0.0 +25358,46,12,39,0.0 +25358,20,81,46,0.0 +25358,3,10,5,0.0 +25358,4,22,15,0.0 +25358,65,21.05,24,0.0 +25358,24,4.5,15,0.0 +25358,41,9.65,7,0.0 +25358,1,18,32,0.0 +25358,60,34,1,0.0 +25358,56,38,42,0.0 +25358,22,21,44,0.0 +25358,30,25.89,23,0.0 +25359,77,13,7,0.0 +25359,4,22,33,0.0 +25359,50,16.25,49,0.0 +25359,62,49.3,50,0.0 +25359,52,7,20,0.0 +25359,75,7.75,9,0.0 +25359,66,17,49,0.0 +25359,10,31,25,0.0 +25359,26,31.23,13,0.0 +25359,42,14,20,0.0 +25359,73,15,45,0.0 +25359,38,263.5,32,0.0 +25359,22,21,15,0.0 +25359,39,18,21,0.0 +25359,21,10,45,0.0 +25359,40,18.4,42,0.0 +25359,29,123.79,26,0.0 +25359,7,30,31,0.0 +25359,56,38,20,0.0 +25359,11,21,19,0.0 +25359,32,32,15,0.0 +25359,60,34,24,0.0 +25359,30,25.89,6,0.0 +25359,9,97,36,0.0 +25359,24,4.5,9,0.0 +25359,76,18,37,0.0 +25359,55,24,42,0.0 +25359,48,12.75,40,0.0 +25359,18,62.5,13,0.0 +25359,54,7.45,36,0.0 +25359,16,17.45,37,0.0 +25359,57,19.5,37,0.0 +25359,14,23.25,39,0.0 +25359,45,9.5,24,0.0 +25359,19,9.2,11,0.0 +25359,51,53,28,0.0 +25359,28,45.6,37,0.0 +25359,41,9.65,14,0.0 +25359,8,40,39,0.0 +25359,6,25,3,0.0 +25359,31,12.5,17,0.0 +25359,47,9.5,38,0.0 +25359,68,12.5,24,0.0 +25359,17,39,20,0.0 +25359,69,36,48,0.0 +25359,33,2.5,33,0.0 +25359,44,19.45,41,0.0 +25359,37,26,21,0.0 +25359,72,34.8,43,0.0 +25359,49,20,46,0.0 +25359,27,43.9,29,0.0 +25359,43,46,42,0.0 +25359,74,10,20,0.0 +25359,61,28.5,20,0.0 +25359,58,13.25,32,0.0 +25359,71,21.5,39,0.0 +25359,65,21.05,35,0.0 +25359,53,32.8,47,0.0 +25359,15,15.5,10,0.0 +25359,46,12,9,0.0 +25359,63,43.9,6,0.0 +25359,12,38,1,0.0 +25359,35,18,5,0.0 +25359,5,21.35,7,0.0 +25359,67,14,31,0.0 +25359,20,81,44,0.0 +25359,2,19,6,0.0 +25359,34,14,33,0.0 +25359,1,18,29,0.0 +25360,48,12.75,19,0.0 +25360,15,15.5,48,0.0 +25360,21,10,13,0.0 +25360,7,30,8,0.0 +25360,69,36,32,0.0 +25360,63,43.9,18,0.0 +25360,72,34.8,16,0.0 +25360,73,15,25,0.0 +25360,24,4.5,26,0.0 +25360,51,53,35,0.0 +25360,68,12.5,44,0.0 +25360,47,9.5,38,0.0 +25360,6,25,20,0.0 +25360,54,7.45,28,0.0 +25360,2,19,40,0.0 +25360,71,21.5,38,0.0 +25360,41,9.65,15,0.0 +25360,5,21.35,21,0.0 +25360,37,26,10,0.0 +25360,70,15,17,0.0 +25360,38,263.5,25,0.0 +25360,16,17.45,33,0.0 +25361,37,26,35,0.0 +25361,15,15.5,35,0.0 +25361,65,21.05,40,0.0 +25361,40,18.4,41,0.0 +25361,46,12,45,0.0 +25361,43,46,44,0.0 +25361,41,9.65,36,0.0 +25361,34,14,22,0.0 +25361,48,12.75,18,0.0 +25361,69,36,24,0.0 +25361,72,34.8,41,0.0 +25361,44,19.45,31,0.0 +25361,10,31,4,0.0 +25361,25,14,29,0.0 +25361,18,62.5,31,0.0 +25361,73,15,11,0.0 +25361,57,19.5,34,0.0 +25361,28,45.6,48,0.0 +25361,13,6,29,0.0 +25361,66,17,21,0.0 +25361,62,49.3,18,0.0 +25361,8,40,32,0.0 +25361,58,13.25,36,0.0 +25361,49,20,44,0.0 +25361,77,13,48,0.0 +25361,23,9,46,0.0 +25361,61,28.5,36,0.0 +25361,55,24,16,0.0 +25361,20,81,1,0.0 +25361,74,10,50,0.0 +25361,29,123.79,27,0.0 +25361,54,7.45,7,0.0 +25361,21,10,6,0.0 +25361,38,263.5,29,0.0 +25361,56,38,30,0.0 +25361,51,53,27,0.0 +25361,64,33.25,3,0.0 +25361,1,18,1,0.0 +25361,14,23.25,28,0.0 +25361,63,43.9,24,0.0 +25361,6,25,36,0.0 +25361,60,34,6,0.0 +25361,59,55,11,0.0 +25361,31,12.5,27,0.0 +25361,32,32,20,0.0 +25361,22,21,8,0.0 +25361,50,16.25,21,0.0 +25361,30,25.89,9,0.0 +25361,33,2.5,31,0.0 +25361,2,19,4,0.0 +25361,4,22,30,0.0 +25361,9,97,38,0.0 +25361,75,7.75,47,0.0 +25361,45,9.5,22,0.0 +25361,67,14,41,0.0 +25361,68,12.5,50,0.0 +25361,12,38,9,0.0 +25361,19,9.2,32,0.0 +25361,42,14,26,0.0 +25361,11,21,27,0.0 +25361,17,39,12,0.0 +25361,24,4.5,7,0.0 +25361,16,17.45,40,0.0 +25361,27,43.9,4,0.0 +25361,47,9.5,37,0.0 +25361,3,10,44,0.0 +25361,36,19,36,0.0 +25361,52,7,37,0.0 +25361,5,21.35,28,0.0 +25362,72,34.8,40,0.0 +25362,11,21,30,0.0 +25362,33,2.5,25,0.0 +25362,14,23.25,13,0.0 +25362,76,18,49,0.0 +25362,55,24,50,0.0 +25362,28,45.6,22,0.0 +25362,61,28.5,26,0.0 +25362,62,49.3,14,0.0 +25362,77,13,33,0.0 +25362,8,40,11,0.0 +25362,10,31,41,0.0 +25362,40,18.4,38,0.0 +25362,56,38,29,0.0 +25362,37,26,21,0.0 +25362,73,15,43,0.0 +25362,58,13.25,49,0.0 +25362,18,62.5,41,0.0 +25362,69,36,8,0.0 +25362,36,19,5,0.0 +25362,59,55,39,0.0 +25362,64,33.25,35,0.0 +25362,4,22,8,0.0 +25362,29,123.79,12,0.0 +25362,24,4.5,37,0.0 +25362,30,25.89,23,0.0 +25362,31,12.5,12,0.0 +25362,6,25,22,0.0 +25362,46,12,26,0.0 +25362,51,53,6,0.0 +25362,20,81,14,0.0 +25362,43,46,31,0.0 +25362,1,18,27,0.0 +25362,25,14,3,0.0 +25362,54,7.45,24,0.0 +25362,13,6,24,0.0 +25362,39,18,48,0.0 +25362,75,7.75,31,0.0 +25362,71,21.5,27,0.0 +25362,12,38,23,0.0 +25362,53,32.8,26,0.0 +25362,47,9.5,28,0.0 +25363,58,13.25,47,0.0 +25363,50,16.25,14,0.0 +25363,57,19.5,18,0.0 +25363,11,21,47,0.0 +25363,21,10,17,0.0 +25363,12,38,22,0.0 +25363,43,46,42,0.0 +25363,45,9.5,20,0.0 +25363,56,38,30,0.0 +25363,41,9.65,31,0.0 +25363,2,19,27,0.0 +25363,48,12.75,11,0.0 +25363,28,45.6,29,0.0 +25363,27,43.9,26,0.0 +25363,37,26,40,0.0 +25363,15,15.5,10,0.0 +25363,68,12.5,2,0.0 +25363,16,17.45,17,0.0 +25363,73,15,7,0.0 +25363,13,6,42,0.0 +25363,69,36,34,0.0 +25363,35,18,15,0.0 +25363,42,14,14,0.0 +25363,31,12.5,45,0.0 +25363,20,81,29,0.0 +25363,1,18,22,0.0 +25363,14,23.25,12,0.0 +25363,22,21,44,0.0 +25363,25,14,17,0.0 +25363,24,4.5,49,0.0 +25363,8,40,21,0.0 +25363,49,20,28,0.0 +25363,17,39,35,0.0 +25363,77,13,2,0.0 +25363,39,18,22,0.0 +25363,64,33.25,24,0.0 +25363,10,31,40,0.0 +25363,4,22,37,0.0 +25363,63,43.9,1,0.0 +25363,59,55,40,0.0 +25363,26,31.23,1,0.0 +25363,72,34.8,22,0.0 +25363,54,7.45,27,0.0 +25363,51,53,9,0.0 +25363,36,19,48,0.0 +25363,66,17,18,0.0 +25363,74,10,41,0.0 +25363,61,28.5,22,0.0 +25363,7,30,7,0.0 +25363,18,62.5,1,0.0 +25363,6,25,50,0.0 +25363,47,9.5,4,0.0 +25363,70,15,11,0.0 +25363,76,18,16,0.0 +25363,29,123.79,12,0.0 +25363,5,21.35,24,0.0 +25364,43,46,4,0.0 +25364,34,14,14,0.0 +25364,1,18,41,0.0 +25364,56,38,14,0.0 +25364,38,263.5,40,0.0 +25364,35,18,29,0.0 +25364,37,26,7,0.0 +25364,18,62.5,2,0.0 +25364,76,18,15,0.0 +25364,12,38,34,0.0 +25364,58,13.25,13,0.0 +25364,74,10,1,0.0 +25364,28,45.6,20,0.0 +25364,71,21.5,26,0.0 +25364,77,13,5,0.0 +25364,20,81,19,0.0 +25364,73,15,44,0.0 +25364,36,19,19,0.0 +25364,65,21.05,21,0.0 +25364,40,18.4,45,0.0 +25364,54,7.45,6,0.0 +25364,29,123.79,10,0.0 +25364,4,22,4,0.0 +25364,21,10,47,0.0 +25364,16,17.45,31,0.0 +25364,53,32.8,37,0.0 +25364,41,9.65,14,0.0 +25364,63,43.9,21,0.0 +25364,59,55,5,0.0 +25364,5,21.35,14,0.0 +25364,3,10,28,0.0 +25364,8,40,8,0.0 +25364,49,20,12,0.0 +25364,13,6,42,0.0 +25364,42,14,7,0.0 +25364,69,36,45,0.0 +25364,19,9.2,14,0.0 +25364,62,49.3,50,0.0 +25364,14,23.25,36,0.0 +25364,67,14,39,0.0 +25364,57,19.5,27,0.0 +25364,2,19,29,0.0 +25364,33,2.5,26,0.0 +25364,10,31,6,0.0 +25364,68,12.5,45,0.0 +25364,51,53,32,0.0 +25364,23,9,23,0.0 +25364,15,15.5,1,0.0 +25364,26,31.23,41,0.0 +25364,66,17,20,0.0 +25364,6,25,9,0.0 +25364,45,9.5,32,0.0 +25364,64,33.25,13,0.0 +25364,52,7,4,0.0 +25364,60,34,34,0.0 +25364,70,15,13,0.0 +25364,24,4.5,47,0.0 +25364,17,39,29,0.0 +25364,48,12.75,48,0.0 +25364,44,19.45,1,0.0 +25364,55,24,15,0.0 +25364,27,43.9,9,0.0 +25364,30,25.89,19,0.0 +25364,61,28.5,10,0.0 +25364,31,12.5,31,0.0 +25364,39,18,15,0.0 +25364,11,21,11,0.0 +25365,19,9.2,33,0.0 +25366,68,12.5,24,0.0 +25366,25,14,25,0.0 +25366,21,10,42,0.0 +25366,17,39,24,0.0 +25366,60,34,2,0.0 +25366,33,2.5,28,0.0 +25366,37,26,16,0.0 +25366,52,7,49,0.0 +25366,42,14,36,0.0 +25366,46,12,8,0.0 +25366,73,15,18,0.0 +25366,6,25,8,0.0 +25366,32,32,41,0.0 +25366,38,263.5,14,0.0 +25366,16,17.45,37,0.0 +25366,71,21.5,15,0.0 +25366,58,13.25,34,0.0 +25366,28,45.6,45,0.0 +25366,2,19,26,0.0 +25366,51,53,6,0.0 +25366,31,12.5,13,0.0 +25366,74,10,33,0.0 +25366,22,21,11,0.0 +25366,40,18.4,43,0.0 +25366,23,9,23,0.0 +25366,30,25.89,11,0.0 +25366,3,10,8,0.0 +25366,48,12.75,2,0.0 +25366,29,123.79,39,0.0 +25366,12,38,12,0.0 +25366,54,7.45,17,0.0 +25366,55,24,39,0.0 +25366,15,15.5,7,0.0 +25366,19,9.2,39,0.0 +25366,72,34.8,34,0.0 +25366,66,17,17,0.0 +25366,57,19.5,37,0.0 +25366,43,46,31,0.0 +25366,49,20,10,0.0 +25366,59,55,31,0.0 +25366,56,38,24,0.0 +25366,63,43.9,14,0.0 +25366,36,19,46,0.0 +25366,35,18,14,0.0 +25366,75,7.75,29,0.0 +25366,70,15,40,0.0 +25366,61,28.5,37,0.0 +25366,1,18,11,0.0 +25366,13,6,6,0.0 +25366,7,30,21,0.0 +25366,62,49.3,12,0.0 +25366,67,14,13,0.0 +25366,45,9.5,42,0.0 +25366,53,32.8,28,0.0 +25366,50,16.25,22,0.0 +25366,27,43.9,6,0.0 +25366,47,9.5,35,0.0 +25366,69,36,27,0.0 +25366,44,19.45,2,0.0 +25367,73,15,13,0.0 +25367,26,31.23,15,0.0 +25367,4,22,29,0.0 +25367,50,16.25,2,0.0 +25367,52,7,14,0.0 +25367,24,4.5,26,0.0 +25367,76,18,46,0.0 +25367,31,12.5,27,0.0 +25367,19,9.2,20,0.0 +25367,3,10,12,0.0 +25367,61,28.5,32,0.0 +25367,75,7.75,9,0.0 +25367,30,25.89,6,0.0 +25367,32,32,14,0.0 +25367,8,40,32,0.0 +25367,14,23.25,36,0.0 +25367,9,97,24,0.0 +25367,11,21,27,0.0 +25367,17,39,16,0.0 +25367,15,15.5,37,0.0 +25367,41,9.65,13,0.0 +25367,36,19,17,0.0 +25368,77,13,5,0.0 +25368,72,34.8,45,0.0 +25368,57,19.5,18,0.0 +25368,73,15,35,0.0 +25368,69,36,11,0.0 +25368,17,39,48,0.0 +25368,42,14,1,0.0 +25368,19,9.2,44,0.0 +25368,21,10,45,0.0 +25368,38,263.5,8,0.0 +25368,30,25.89,9,0.0 +25368,24,4.5,32,0.0 +25368,27,43.9,17,0.0 +25368,46,12,38,0.0 +25368,55,24,7,0.0 +25368,50,16.25,28,0.0 +25368,6,25,41,0.0 +25368,58,13.25,17,0.0 +25368,74,10,7,0.0 +25368,15,15.5,7,0.0 +25368,44,19.45,34,0.0 +25368,51,53,16,0.0 +25368,37,26,9,0.0 +25368,36,19,44,0.0 +25368,1,18,28,0.0 +25368,67,14,44,0.0 +25368,48,12.75,6,0.0 +25368,39,18,2,0.0 +25368,59,55,33,0.0 +25368,28,45.6,30,0.0 +25368,62,49.3,20,0.0 +25368,33,2.5,48,0.0 +25368,68,12.5,10,0.0 +25368,11,21,3,0.0 +25368,23,9,38,0.0 +25368,47,9.5,31,0.0 +25368,14,23.25,33,0.0 +25368,29,123.79,45,0.0 +25368,2,19,44,0.0 +25368,4,22,20,0.0 +25368,12,38,47,0.0 +25368,16,17.45,14,0.0 +25368,18,62.5,23,0.0 +25368,54,7.45,23,0.0 +25368,8,40,1,0.0 +25368,76,18,4,0.0 +25368,25,14,25,0.0 +25368,10,31,15,0.0 +25368,41,9.65,39,0.0 +25368,64,33.25,23,0.0 +25369,70,15,43,0.0 +25369,56,38,44,0.0 +25369,57,19.5,35,0.0 +25369,58,13.25,46,0.0 +25369,65,21.05,27,0.0 +25369,59,55,48,0.0 +25369,19,9.2,27,0.0 +25369,60,34,17,0.0 +25369,8,40,21,0.0 +25369,10,31,6,0.0 +25369,69,36,40,0.0 +25369,6,25,4,0.0 +25369,11,21,31,0.0 +25369,21,10,36,0.0 +25369,52,7,10,0.0 +25369,74,10,26,0.0 +25369,36,19,50,0.0 +25369,13,6,50,0.0 +25369,14,23.25,25,0.0 +25369,63,43.9,29,0.0 +25369,26,31.23,3,0.0 +25369,67,14,49,0.0 +25369,72,34.8,22,0.0 +25369,47,9.5,27,0.0 +25369,12,38,10,0.0 +25369,76,18,4,0.0 +25369,22,21,13,0.0 +25369,24,4.5,26,0.0 +25369,20,81,2,0.0 +25369,53,32.8,34,0.0 +25369,3,10,43,0.0 +25369,44,19.45,1,0.0 +25369,41,9.65,14,0.0 +25369,38,263.5,9,0.0 +25369,15,15.5,7,0.0 +25369,33,2.5,28,0.0 +25369,71,21.5,24,0.0 +25369,48,12.75,31,0.0 +25369,51,53,43,0.0 +25369,9,97,4,0.0 +25369,18,62.5,26,0.0 +25369,54,7.45,46,0.0 +25369,68,12.5,26,0.0 +25369,64,33.25,20,0.0 +25369,55,24,35,0.0 +25369,5,21.35,9,0.0 +25369,50,16.25,34,0.0 +25369,61,28.5,3,0.0 +25369,29,123.79,5,0.0 +25369,2,19,8,0.0 +25369,17,39,34,0.0 +25369,4,22,44,0.0 +25369,1,18,11,0.0 +25369,37,26,40,0.0 +25369,77,13,44,0.0 +25369,7,30,5,0.0 +25369,66,17,17,0.0 +25369,28,45.6,4,0.0 +25369,25,14,7,0.0 +25369,43,46,8,0.0 +25369,27,43.9,40,0.0 +25369,75,7.75,2,0.0 +25369,46,12,29,0.0 +25369,16,17.45,33,0.0 +25369,73,15,30,0.0 +25369,45,9.5,37,0.0 +25369,30,25.89,3,0.0 +25369,49,20,17,0.0 +25369,32,32,11,0.0 +25369,34,14,1,0.0 +25369,31,12.5,10,0.0 +25369,23,9,43,0.0 +25370,43,46,3,0.0 +25370,61,28.5,31,0.0 +25370,51,53,19,0.0 +25370,39,18,16,0.0 +25370,54,7.45,29,0.0 +25370,49,20,23,0.0 +25370,25,14,25,0.0 +25370,9,97,37,0.0 +25370,4,22,27,0.0 +25370,44,19.45,14,0.0 +25371,63,43.9,1,0.0 +25371,34,14,31,0.0 +25371,13,6,48,0.0 +25372,30,25.89,6,0.0 +25372,65,21.05,17,0.0 +25372,46,12,47,0.0 +25372,18,62.5,14,0.0 +25372,76,18,33,0.0 +25372,74,10,36,0.0 +25372,29,123.79,46,0.0 +25372,3,10,4,0.0 +25372,60,34,47,0.0 +25372,54,7.45,10,0.0 +25372,38,263.5,29,0.0 +25372,50,16.25,30,0.0 +25372,55,24,43,0.0 +25372,11,21,1,0.0 +25372,44,19.45,29,0.0 +25372,32,32,11,0.0 +25372,57,19.5,41,0.0 +25372,47,9.5,10,0.0 +25372,28,45.6,50,0.0 +25372,9,97,14,0.0 +25372,43,46,49,0.0 +25372,10,31,32,0.0 +25372,23,9,25,0.0 +25372,4,22,35,0.0 +25372,52,7,4,0.0 +25372,20,81,35,0.0 +25372,31,12.5,12,0.0 +25372,66,17,50,0.0 +25372,59,55,32,0.0 +25372,77,13,25,0.0 +25372,62,49.3,24,0.0 +25372,37,26,39,0.0 +25372,71,21.5,28,0.0 +25372,45,9.5,6,0.0 +25372,67,14,35,0.0 +25372,19,9.2,12,0.0 +25372,75,7.75,1,0.0 +25372,13,6,18,0.0 +25372,1,18,43,0.0 +25372,63,43.9,46,0.0 +25372,51,53,6,0.0 +25372,48,12.75,27,0.0 +25372,8,40,49,0.0 +25372,21,10,1,0.0 +25372,69,36,32,0.0 +25372,17,39,30,0.0 +25372,41,9.65,4,0.0 +25372,58,13.25,23,0.0 +25372,64,33.25,5,0.0 +25372,73,15,48,0.0 +25372,42,14,21,0.0 +25372,61,28.5,49,0.0 +25372,25,14,17,0.0 +25372,14,23.25,45,0.0 +25372,2,19,23,0.0 +25372,35,18,21,0.0 +25372,15,15.5,48,0.0 +25372,22,21,23,0.0 +25372,33,2.5,15,0.0 +25372,16,17.45,47,0.0 +25372,12,38,5,0.0 +25372,40,18.4,25,0.0 +25372,56,38,17,0.0 +25372,70,15,40,0.0 +25372,68,12.5,29,0.0 +25372,27,43.9,41,0.0 +25372,7,30,49,0.0 +25372,24,4.5,34,0.0 +25372,53,32.8,47,0.0 +25372,72,34.8,46,0.0 +25373,34,14,45,0.0 +25373,16,17.45,42,0.0 +25373,21,10,38,0.0 +25373,55,24,41,0.0 +25373,63,43.9,35,0.0 +25373,7,30,43,0.0 +25373,14,23.25,21,0.0 +25373,11,21,45,0.0 +25373,61,28.5,36,0.0 +25373,25,14,25,0.0 +25373,64,33.25,41,0.0 +25373,72,34.8,29,0.0 +25373,45,9.5,50,0.0 +25373,71,21.5,7,0.0 +25373,4,22,11,0.0 +25373,39,18,27,0.0 +25373,13,6,28,0.0 +25373,15,15.5,7,0.0 +25373,43,46,25,0.0 +25373,20,81,27,0.0 +25373,38,263.5,19,0.0 +25373,42,14,28,0.0 +25373,70,15,48,0.0 +25373,2,19,5,0.0 +25373,67,14,48,0.0 +25373,27,43.9,44,0.0 +25373,47,9.5,1,0.0 +25373,56,38,5,0.0 +25373,19,9.2,22,0.0 +25373,62,49.3,18,0.0 +25373,36,19,8,0.0 +25373,35,18,11,0.0 +25373,37,26,10,0.0 +25373,60,34,13,0.0 +25373,40,18.4,47,0.0 +25373,73,15,29,0.0 +25373,12,38,47,0.0 +25373,65,21.05,24,0.0 +25373,58,13.25,20,0.0 +25373,5,21.35,28,0.0 +25373,75,7.75,50,0.0 +25373,48,12.75,44,0.0 +25373,59,55,43,0.0 +25373,69,36,17,0.0 +25373,28,45.6,31,0.0 +25373,8,40,35,0.0 +25373,52,7,23,0.0 +25373,3,10,35,0.0 +25373,41,9.65,12,0.0 +25373,53,32.8,19,0.0 +25373,18,62.5,36,0.0 +25373,17,39,13,0.0 +25374,1,18,5,0.0 +25374,59,55,42,0.0 +25374,32,32,17,0.0 +25374,10,31,32,0.0 +25374,76,18,12,0.0 +25374,46,12,26,0.0 +25374,6,25,47,0.0 +25374,52,7,49,0.0 +25374,7,30,16,0.0 +25374,45,9.5,40,0.0 +25374,13,6,39,0.0 +25374,64,33.25,8,0.0 +25374,34,14,15,0.0 +25374,69,36,35,0.0 +25374,35,18,28,0.0 +25374,75,7.75,35,0.0 +25374,2,19,36,0.0 +25374,43,46,28,0.0 +25374,26,31.23,11,0.0 +25374,25,14,36,0.0 +25374,20,81,18,0.0 +25374,11,21,37,0.0 +25374,24,4.5,37,0.0 +25374,14,23.25,12,0.0 +25374,55,24,28,0.0 +25374,37,26,41,0.0 +25374,30,25.89,19,0.0 +25374,54,7.45,23,0.0 +25374,68,12.5,20,0.0 +25374,3,10,40,0.0 +25374,61,28.5,7,0.0 +25374,17,39,43,0.0 +25374,50,16.25,25,0.0 +25374,36,19,3,0.0 +25374,48,12.75,48,0.0 +25375,47,9.5,39,0.0 +25375,6,25,10,0.0 +25375,51,53,44,0.0 +25375,53,32.8,17,0.0 +25375,21,10,34,0.0 +25375,71,21.5,30,0.0 +25375,20,81,30,0.0 +25375,3,10,7,0.0 +25375,50,16.25,4,0.0 +25375,22,21,5,0.0 +25375,72,34.8,30,0.0 +25375,23,9,45,0.0 +25375,28,45.6,7,0.0 +25375,76,18,31,0.0 +25375,44,19.45,36,0.0 +25375,52,7,18,0.0 +25375,41,9.65,32,0.0 +25375,32,32,50,0.0 +25375,57,19.5,18,0.0 +25375,2,19,37,0.0 +25375,75,7.75,17,0.0 +25375,68,12.5,40,0.0 +25375,4,22,50,0.0 +25375,27,43.9,13,0.0 +25376,50,16.25,35,0.0 +25376,63,43.9,42,0.0 +25377,1,18,26,0.0 +25377,38,263.5,42,0.0 +25377,6,25,30,0.0 +25377,7,30,33,0.0 +25377,61,28.5,48,0.0 +25377,3,10,31,0.0 +25377,74,10,25,0.0 +25377,30,25.89,37,0.0 +25377,8,40,20,0.0 +25377,27,43.9,22,0.0 +25377,47,9.5,12,0.0 +25377,62,49.3,21,0.0 +25377,63,43.9,33,0.0 +25377,5,21.35,20,0.0 +25377,28,45.6,30,0.0 +25377,32,32,7,0.0 +25377,20,81,15,0.0 +25377,33,2.5,11,0.0 +25377,2,19,27,0.0 +25377,24,4.5,5,0.0 +25377,77,13,40,0.0 +25377,54,7.45,22,0.0 +25377,21,10,16,0.0 +25377,67,14,46,0.0 +25377,19,9.2,49,0.0 +25377,45,9.5,14,0.0 +25377,12,38,2,0.0 +25377,73,15,14,0.0 +25377,66,17,38,0.0 +25377,29,123.79,35,0.0 +25377,40,18.4,14,0.0 +25377,42,14,34,0.0 +25377,41,9.65,31,0.0 +25377,57,19.5,40,0.0 +25377,23,9,7,0.0 +25377,35,18,3,0.0 +25377,68,12.5,46,0.0 +25377,60,34,21,0.0 +25377,48,12.75,3,0.0 +25377,39,18,34,0.0 +25377,52,7,31,0.0 +25377,17,39,25,0.0 +25377,37,26,24,0.0 +25377,31,12.5,33,0.0 +25377,34,14,28,0.0 +25377,9,97,1,0.0 +25377,53,32.8,31,0.0 +25377,10,31,29,0.0 +25377,36,19,21,0.0 +25377,13,6,26,0.0 +25377,64,33.25,15,0.0 +25377,49,20,12,0.0 +25377,70,15,35,0.0 +25377,22,21,24,0.0 +25377,76,18,22,0.0 +25377,25,14,31,0.0 +25378,58,13.25,32,0.0 +25378,30,25.89,16,0.0 +25378,50,16.25,33,0.0 +25378,41,9.65,49,0.0 +25378,48,12.75,44,0.0 +25378,73,15,33,0.0 +25378,26,31.23,5,0.0 +25378,49,20,20,0.0 +25378,40,18.4,11,0.0 +25378,22,21,43,0.0 +25378,12,38,22,0.0 +25378,61,28.5,31,0.0 +25378,69,36,17,0.0 +25378,70,15,46,0.0 +25378,36,19,42,0.0 +25378,39,18,45,0.0 +25379,46,12,9,0.0 +25379,50,16.25,13,0.0 +25379,69,36,15,0.0 +25379,39,18,27,0.0 +25379,66,17,50,0.0 +25379,62,49.3,13,0.0 +25379,30,25.89,23,0.0 +25379,11,21,28,0.0 +25379,47,9.5,3,0.0 +25379,42,14,44,0.0 +25379,71,21.5,48,0.0 +25379,22,21,5,0.0 +25379,31,12.5,20,0.0 +25379,34,14,49,0.0 +25379,10,31,6,0.0 +25379,59,55,27,0.0 +25379,53,32.8,19,0.0 +25379,77,13,4,0.0 +25379,75,7.75,41,0.0 +25379,15,15.5,4,0.0 +25379,52,7,35,0.0 +25379,43,46,2,0.0 +25379,14,23.25,21,0.0 +25379,72,34.8,30,0.0 +25379,8,40,26,0.0 +25379,51,53,9,0.0 +25379,68,12.5,6,0.0 +25379,32,32,45,0.0 +25379,58,13.25,26,0.0 +25379,21,10,46,0.0 +25379,12,38,25,0.0 +25379,4,22,16,0.0 +25379,54,7.45,34,0.0 +25379,17,39,50,0.0 +25379,16,17.45,22,0.0 +25379,60,34,37,0.0 +25379,67,14,46,0.0 +25379,73,15,18,0.0 +25379,70,15,17,0.0 +25379,74,10,31,0.0 +25379,2,19,8,0.0 +25379,61,28.5,28,0.0 +25379,76,18,43,0.0 +25379,40,18.4,39,0.0 +25379,20,81,3,0.0 +25379,19,9.2,14,0.0 +25379,26,31.23,12,0.0 +25379,27,43.9,37,0.0 +25379,6,25,27,0.0 +25379,63,43.9,27,0.0 +25379,44,19.45,23,0.0 +25379,3,10,6,0.0 +25379,25,14,6,0.0 +25379,9,97,37,0.0 +25379,55,24,2,0.0 +25379,48,12.75,18,0.0 +25379,33,2.5,47,0.0 +25379,23,9,35,0.0 +25379,35,18,49,0.0 +25379,38,263.5,44,0.0 +25379,5,21.35,47,0.0 +25379,41,9.65,24,0.0 +25379,45,9.5,46,0.0 +25379,28,45.6,49,0.0 +25380,19,9.2,32,0.0 +25380,56,38,37,0.0 +25380,16,17.45,30,0.0 +25380,62,49.3,37,0.0 +25381,75,7.75,33,0.0 +25381,62,49.3,41,0.0 +25381,7,30,43,0.0 +25381,3,10,10,0.0 +25381,40,18.4,17,0.0 +25381,32,32,7,0.0 +25381,60,34,2,0.0 +25381,65,21.05,31,0.0 +25381,57,19.5,24,0.0 +25382,24,4.5,50,0.0 +25382,57,19.5,18,0.0 +25382,58,13.25,19,0.0 +25382,16,17.45,22,0.0 +25382,55,24,8,0.0 +25382,67,14,14,0.0 +25382,18,62.5,11,0.0 +25382,77,13,8,0.0 +25382,42,14,48,0.0 +25382,47,9.5,13,0.0 +25382,68,12.5,13,0.0 +25382,15,15.5,18,0.0 +25382,50,16.25,19,0.0 +25382,34,14,14,0.0 +25382,33,2.5,27,0.0 +25382,5,21.35,38,0.0 +25382,21,10,6,0.0 +25382,70,15,6,0.0 +25382,2,19,9,0.0 +25382,17,39,35,0.0 +25382,27,43.9,26,0.0 +25382,8,40,45,0.0 +25382,71,21.5,24,0.0 +25382,53,32.8,50,0.0 +25382,62,49.3,3,0.0 +25382,26,31.23,43,0.0 +25382,22,21,9,0.0 +25382,66,17,5,0.0 +25382,6,25,15,0.0 +25382,1,18,36,0.0 +25382,61,28.5,14,0.0 +25382,52,7,40,0.0 +25382,49,20,13,0.0 +25382,30,25.89,43,0.0 +25382,63,43.9,20,0.0 +25382,38,263.5,50,0.0 +25382,36,19,35,0.0 +25382,31,12.5,30,0.0 +25382,25,14,39,0.0 +25382,76,18,19,0.0 +25382,28,45.6,37,0.0 +25382,41,9.65,31,0.0 +25382,69,36,42,0.0 +25382,13,6,11,0.0 +25382,51,53,47,0.0 +25382,64,33.25,28,0.0 +25382,29,123.79,35,0.0 +25382,7,30,50,0.0 +25382,46,12,17,0.0 +25382,54,7.45,16,0.0 +25382,59,55,6,0.0 +25382,14,23.25,6,0.0 +25382,72,34.8,12,0.0 +25382,23,9,12,0.0 +25382,65,21.05,46,0.0 +25382,73,15,5,0.0 +25382,75,7.75,20,0.0 +25383,5,21.35,14,0.0 +25383,42,14,32,0.0 +25383,28,45.6,16,0.0 +25383,7,30,13,0.0 +25383,26,31.23,32,0.0 +25383,10,31,2,0.0 +25383,65,21.05,2,0.0 +25383,3,10,32,0.0 +25383,15,15.5,5,0.0 +25383,31,12.5,7,0.0 +25383,75,7.75,48,0.0 +25383,6,25,5,0.0 +25383,64,33.25,31,0.0 +25383,58,13.25,29,0.0 +25383,61,28.5,48,0.0 +25383,39,18,4,0.0 +25383,23,9,11,0.0 +25383,57,19.5,46,0.0 +25383,62,49.3,20,0.0 +25383,55,24,7,0.0 +25383,43,46,11,0.0 +25383,8,40,33,0.0 +25383,71,21.5,7,0.0 +25383,70,15,3,0.0 +25383,52,7,44,0.0 +25383,37,26,41,0.0 +25383,67,14,18,0.0 +25383,56,38,50,0.0 +25383,2,19,3,0.0 +25383,9,97,45,0.0 +25383,48,12.75,16,0.0 +25383,21,10,31,0.0 +25383,46,12,19,0.0 +25383,41,9.65,44,0.0 +25383,36,19,28,0.0 +25383,50,16.25,45,0.0 +25383,13,6,10,0.0 +25383,76,18,2,0.0 +25383,25,14,13,0.0 +25383,14,23.25,19,0.0 +25383,32,32,50,0.0 +25383,19,9.2,10,0.0 +25383,30,25.89,2,0.0 +25383,77,13,8,0.0 +25383,68,12.5,17,0.0 +25383,12,38,22,0.0 +25383,72,34.8,24,0.0 +25383,20,81,16,0.0 +25383,66,17,48,0.0 +25383,49,20,46,0.0 +25383,69,36,21,0.0 +25383,63,43.9,36,0.0 +25383,74,10,38,0.0 +25383,73,15,14,0.0 +25383,51,53,7,0.0 +25383,1,18,6,0.0 +25384,28,45.6,38,0.0 +25384,29,123.79,3,0.0 +25384,26,31.23,21,0.0 +25384,42,14,41,0.0 +25384,37,26,39,0.0 +25384,69,36,16,0.0 +25384,22,21,1,0.0 +25384,5,21.35,44,0.0 +25384,71,21.5,7,0.0 +25384,39,18,47,0.0 +25384,73,15,35,0.0 +25384,59,55,33,0.0 +25384,6,25,6,0.0 +25384,35,18,10,0.0 +25384,8,40,32,0.0 +25384,65,21.05,47,0.0 +25384,74,10,40,0.0 +25384,58,13.25,12,0.0 +25384,31,12.5,16,0.0 +25384,72,34.8,17,0.0 +25384,44,19.45,48,0.0 +25384,68,12.5,33,0.0 +25384,12,38,42,0.0 +25384,46,12,12,0.0 +25384,52,7,33,0.0 +25384,16,17.45,10,0.0 +25384,64,33.25,40,0.0 +25384,76,18,25,0.0 +25384,17,39,40,0.0 +25384,75,7.75,44,0.0 +25384,34,14,27,0.0 +25384,67,14,10,0.0 +25384,11,21,26,0.0 +25384,70,15,46,0.0 +25384,49,20,7,0.0 +25384,40,18.4,14,0.0 +25384,25,14,24,0.0 +25384,41,9.65,17,0.0 +25384,13,6,1,0.0 +25384,24,4.5,38,0.0 +25384,7,30,33,0.0 +25384,57,19.5,44,0.0 +25384,21,10,17,0.0 +25384,55,24,37,0.0 +25384,61,28.5,39,0.0 +25384,63,43.9,8,0.0 +25385,64,33.25,1,0.0 +25385,34,14,14,0.0 +25385,3,10,14,0.0 +25385,63,43.9,9,0.0 +25385,73,15,9,0.0 +25385,4,22,49,0.0 +25385,53,32.8,25,0.0 +25385,44,19.45,18,0.0 +25385,12,38,47,0.0 +25385,27,43.9,7,0.0 +25385,29,123.79,25,0.0 +25385,74,10,26,0.0 +25385,22,21,47,0.0 +25385,20,81,33,0.0 +25385,32,32,49,0.0 +25385,2,19,47,0.0 +25385,36,19,41,0.0 +25385,62,49.3,18,0.0 +25385,31,12.5,48,0.0 +25385,76,18,48,0.0 +25385,60,34,31,0.0 +25385,11,21,20,0.0 +25385,72,34.8,48,0.0 +25386,33,2.5,44,0.0 +25386,22,21,5,0.0 +25386,19,9.2,9,0.0 +25386,58,13.25,40,0.0 +25386,28,45.6,50,0.0 +25386,15,15.5,43,0.0 +25386,25,14,31,0.0 +25386,73,15,34,0.0 +25386,12,38,7,0.0 +25386,30,25.89,38,0.0 +25386,70,15,21,0.0 +25386,53,32.8,32,0.0 +25386,23,9,43,0.0 +25386,46,12,1,0.0 +25386,38,263.5,24,0.0 +25386,14,23.25,8,0.0 +25386,31,12.5,34,0.0 +25386,55,24,35,0.0 +25386,42,14,1,0.0 +25386,69,36,28,0.0 +25386,71,21.5,10,0.0 +25386,74,10,19,0.0 +25386,61,28.5,23,0.0 +25386,62,49.3,18,0.0 +25386,68,12.5,34,0.0 +25386,44,19.45,2,0.0 +25386,40,18.4,1,0.0 +25386,72,34.8,15,0.0 +25386,27,43.9,14,0.0 +25386,41,9.65,37,0.0 +25386,63,43.9,9,0.0 +25386,60,34,44,0.0 +25386,7,30,14,0.0 +25386,51,53,43,0.0 +25386,75,7.75,8,0.0 +25386,8,40,37,0.0 +25386,67,14,34,0.0 +25386,29,123.79,33,0.0 +25386,3,10,38,0.0 +25386,21,10,37,0.0 +25386,20,81,5,0.0 +25386,9,97,49,0.0 +25386,4,22,45,0.0 +25386,35,18,15,0.0 +25386,39,18,25,0.0 +25387,10,31,19,0.0 +25387,60,34,11,0.0 +25387,22,21,35,0.0 +25387,48,12.75,36,0.0 +25387,3,10,30,0.0 +25387,21,10,43,0.0 +25387,61,28.5,14,0.0 +25387,17,39,46,0.0 +25387,12,38,15,0.0 +25387,69,36,26,0.0 +25387,36,19,33,0.0 +25387,33,2.5,23,0.0 +25387,45,9.5,11,0.0 +25387,44,19.45,12,0.0 +25387,76,18,27,0.0 +25387,11,21,28,0.0 +25387,52,7,18,0.0 +25387,35,18,25,0.0 +25387,67,14,15,0.0 +25387,28,45.6,19,0.0 +25387,13,6,39,0.0 +25387,50,16.25,20,0.0 +25387,5,21.35,38,0.0 +25387,9,97,1,0.0 +25387,71,21.5,2,0.0 +25387,53,32.8,33,0.0 +25387,14,23.25,43,0.0 +25387,19,9.2,46,0.0 +25387,54,7.45,21,0.0 +25387,47,9.5,49,0.0 +25387,63,43.9,3,0.0 +25387,73,15,42,0.0 +25387,64,33.25,35,0.0 +25387,27,43.9,24,0.0 +25387,26,31.23,11,0.0 +25387,62,49.3,26,0.0 +25387,66,17,22,0.0 +25387,74,10,31,0.0 +25387,6,25,36,0.0 +25387,40,18.4,49,0.0 +25387,18,62.5,9,0.0 +25387,7,30,15,0.0 +25387,70,15,5,0.0 +25387,65,21.05,21,0.0 +25387,51,53,37,0.0 +25387,24,4.5,3,0.0 +25387,2,19,21,0.0 +25387,46,12,5,0.0 +25387,57,19.5,20,0.0 +25387,77,13,25,0.0 +25387,30,25.89,4,0.0 +25387,8,40,40,0.0 +25387,59,55,36,0.0 +25387,38,263.5,31,0.0 +25387,39,18,19,0.0 +25387,49,20,18,0.0 +25387,68,12.5,5,0.0 +25387,37,26,2,0.0 +25387,32,32,17,0.0 +25387,20,81,12,0.0 +25387,23,9,24,0.0 +25387,72,34.8,19,0.0 +25387,31,12.5,14,0.0 +25387,15,15.5,20,0.0 +25387,43,46,30,0.0 +25387,16,17.45,6,0.0 +25387,34,14,33,0.0 +25387,1,18,42,0.0 +25387,4,22,16,0.0 +25387,41,9.65,48,0.0 +25387,55,24,29,0.0 +25388,23,9,1,0.0 +25388,5,21.35,36,0.0 +25388,60,34,10,0.0 +25388,15,15.5,38,0.0 +25388,21,10,11,0.0 +25388,2,19,40,0.0 +25388,33,2.5,34,0.0 +25388,24,4.5,24,0.0 +25388,26,31.23,47,0.0 +25388,53,32.8,4,0.0 +25388,47,9.5,11,0.0 +25388,29,123.79,2,0.0 +25388,22,21,43,0.0 +25388,9,97,32,0.0 +25388,46,12,11,0.0 +25388,30,25.89,28,0.0 +25388,71,21.5,11,0.0 +25388,59,55,38,0.0 +25388,4,22,28,0.0 +25389,26,31.23,17,0.0 +25389,19,9.2,16,0.0 +25389,13,6,2,0.0 +25389,35,18,37,0.0 +25389,46,12,49,0.0 +25389,65,21.05,35,0.0 +25389,76,18,50,0.0 +25389,6,25,36,0.0 +25389,73,15,17,0.0 +25389,18,62.5,46,0.0 +25389,5,21.35,23,0.0 +25389,72,34.8,17,0.0 +25389,27,43.9,29,0.0 +25389,12,38,29,0.0 +25389,22,21,45,0.0 +25389,59,55,17,0.0 +25389,45,9.5,11,0.0 +25389,16,17.45,1,0.0 +25389,14,23.25,37,0.0 +25389,55,24,1,0.0 +25389,74,10,37,0.0 +25389,44,19.45,9,0.0 +25389,10,31,5,0.0 +25389,42,14,43,0.0 +25389,75,7.75,33,0.0 +25389,4,22,47,0.0 +25389,20,81,49,0.0 +25389,30,25.89,42,0.0 +25389,31,12.5,10,0.0 +25389,11,21,17,0.0 +25389,28,45.6,27,0.0 +25389,50,16.25,3,0.0 +25389,3,10,36,0.0 +25389,67,14,45,0.0 +25389,23,9,8,0.0 +25389,41,9.65,22,0.0 +25389,34,14,47,0.0 +25389,58,13.25,26,0.0 +25389,60,34,29,0.0 +25389,21,10,7,0.0 +25389,47,9.5,10,0.0 +25389,57,19.5,19,0.0 +25389,54,7.45,26,0.0 +25389,7,30,30,0.0 +25389,40,18.4,4,0.0 +25389,37,26,8,0.0 +25389,15,15.5,15,0.0 +25389,48,12.75,8,0.0 +25389,69,36,38,0.0 +25389,70,15,22,0.0 +25389,71,21.5,13,0.0 +25389,61,28.5,24,0.0 +25389,29,123.79,24,0.0 +25389,53,32.8,39,0.0 +25389,1,18,17,0.0 +25389,17,39,33,0.0 +25389,49,20,48,0.0 +25389,66,17,36,0.0 +25389,43,46,7,0.0 +25389,77,13,8,0.0 +25389,56,38,48,0.0 +25389,9,97,3,0.0 +25389,51,53,20,0.0 +25389,38,263.5,17,0.0 +25389,68,12.5,28,0.0 +25389,52,7,45,0.0 +25389,25,14,28,0.0 +25389,64,33.25,41,0.0 +25389,24,4.5,39,0.0 +25389,63,43.9,43,0.0 +25389,32,32,29,0.0 +25389,33,2.5,39,0.0 +25389,2,19,23,0.0 +25390,65,21.05,14,0.0 +25390,4,22,6,0.0 +25390,57,19.5,29,0.0 +25390,76,18,20,0.0 +25390,12,38,36,0.0 +25390,8,40,50,0.0 +25390,20,81,44,0.0 +25390,73,15,31,0.0 +25390,51,53,11,0.0 +25390,33,2.5,18,0.0 +25390,41,9.65,24,0.0 +25390,61,28.5,3,0.0 +25390,64,33.25,35,0.0 +25390,19,9.2,35,0.0 +25390,72,34.8,11,0.0 +25390,5,21.35,1,0.0 +25390,7,30,25,0.0 +25390,23,9,29,0.0 +25390,40,18.4,29,0.0 +25390,48,12.75,12,0.0 +25390,11,21,9,0.0 +25390,74,10,4,0.0 +25390,29,123.79,37,0.0 +25390,39,18,1,0.0 +25390,75,7.75,23,0.0 +25390,30,25.89,19,0.0 +25390,49,20,9,0.0 +25390,36,19,29,0.0 +25390,66,17,35,0.0 +25390,26,31.23,2,0.0 +25391,36,19,2,0.0 +25391,13,6,19,0.0 +25391,72,34.8,44,0.0 +25391,30,25.89,20,0.0 +25391,17,39,45,0.0 +25391,54,7.45,44,0.0 +25391,55,24,36,0.0 +25391,34,14,19,0.0 +25392,37,26,22,0.0 +25392,24,4.5,29,0.0 +25392,42,14,44,0.0 +25392,46,12,17,0.0 +25392,50,16.25,10,0.0 +25392,51,53,17,0.0 +25392,14,23.25,33,0.0 +25392,47,9.5,42,0.0 +25392,29,123.79,18,0.0 +25392,77,13,31,0.0 +25392,67,14,25,0.0 +25392,35,18,10,0.0 +25392,34,14,44,0.0 +25392,25,14,37,0.0 +25392,53,32.8,37,0.0 +25392,19,9.2,12,0.0 +25392,18,62.5,34,0.0 +25392,66,17,31,0.0 +25392,73,15,25,0.0 +25392,13,6,46,0.0 +25392,16,17.45,28,0.0 +25392,31,12.5,28,0.0 +25392,55,24,8,0.0 +25392,17,39,29,0.0 +25392,4,22,5,0.0 +25392,70,15,35,0.0 +25392,63,43.9,29,0.0 +25392,9,97,14,0.0 +25392,10,31,22,0.0 +25392,60,34,33,0.0 +25392,8,40,39,0.0 +25392,26,31.23,11,0.0 +25392,41,9.65,17,0.0 +25392,57,19.5,37,0.0 +25392,7,30,5,0.0 +25392,75,7.75,16,0.0 +25392,58,13.25,24,0.0 +25392,5,21.35,8,0.0 +25392,62,49.3,40,0.0 +25392,72,34.8,39,0.0 +25392,3,10,29,0.0 +25393,64,33.25,27,0.0 +25393,73,15,8,0.0 +25393,61,28.5,16,0.0 +25393,22,21,42,0.0 +25393,8,40,20,0.0 +25393,28,45.6,7,0.0 +25393,4,22,26,0.0 +25393,21,10,18,0.0 +25393,65,21.05,20,0.0 +25393,1,18,36,0.0 +25393,45,9.5,47,0.0 +25393,12,38,18,0.0 +25393,30,25.89,3,0.0 +25393,50,16.25,16,0.0 +25393,69,36,12,0.0 +25393,14,23.25,20,0.0 +25393,75,7.75,29,0.0 +25393,25,14,40,0.0 +25393,66,17,7,0.0 +25393,31,12.5,21,0.0 +25393,29,123.79,49,0.0 +25393,27,43.9,7,0.0 +25393,43,46,22,0.0 +25393,46,12,3,0.0 +25393,56,38,40,0.0 +25393,34,14,16,0.0 +25393,20,81,18,0.0 +25393,33,2.5,50,0.0 +25393,36,19,48,0.0 +25393,53,32.8,49,0.0 +25393,24,4.5,44,0.0 +25393,19,9.2,28,0.0 +25393,60,34,1,0.0 +25393,76,18,46,0.0 +25394,44,19.45,46,0.0 +25394,45,9.5,12,0.0 +25394,11,21,38,0.0 +25394,36,19,7,0.0 +25394,38,263.5,39,0.0 +25394,14,23.25,2,0.0 +25394,43,46,49,0.0 +25394,59,55,39,0.0 +25394,75,7.75,5,0.0 +25394,48,12.75,17,0.0 +25394,18,62.5,9,0.0 +25394,56,38,11,0.0 +25394,32,32,25,0.0 +25394,24,4.5,30,0.0 +25394,71,21.5,33,0.0 +25394,74,10,32,0.0 +25394,31,12.5,23,0.0 +25394,53,32.8,7,0.0 +25394,17,39,1,0.0 +25394,6,25,40,0.0 +25394,4,22,41,0.0 +25394,23,9,4,0.0 +25394,10,31,38,0.0 +25394,30,25.89,42,0.0 +25394,52,7,46,0.0 +25394,70,15,19,0.0 +25394,61,28.5,3,0.0 +25394,50,16.25,14,0.0 +25394,33,2.5,28,0.0 +25394,28,45.6,26,0.0 +25394,39,18,46,0.0 +25394,42,14,42,0.0 +25394,16,17.45,18,0.0 +25394,76,18,5,0.0 +25394,77,13,5,0.0 +25394,55,24,24,0.0 +25395,17,39,13,0.0 +25395,38,263.5,32,0.0 +25395,68,12.5,20,0.0 +25395,54,7.45,8,0.0 +25395,4,22,36,0.0 +25395,63,43.9,45,0.0 +25395,72,34.8,28,0.0 +25395,56,38,43,0.0 +25395,29,123.79,32,0.0 +25395,23,9,7,0.0 +25395,59,55,16,0.0 +25395,27,43.9,8,0.0 +25395,50,16.25,40,0.0 +25395,16,17.45,38,0.0 +25395,35,18,20,0.0 +25395,33,2.5,36,0.0 +25395,6,25,9,0.0 +25395,45,9.5,36,0.0 +25395,47,9.5,37,0.0 +25395,48,12.75,49,0.0 +25395,49,20,11,0.0 +25395,5,21.35,39,0.0 +25395,31,12.5,1,0.0 +25395,69,36,26,0.0 +25395,1,18,47,0.0 +25395,21,10,8,0.0 +25395,20,81,19,0.0 +25395,18,62.5,46,0.0 +25395,32,32,37,0.0 +25395,12,38,5,0.0 +25395,13,6,7,0.0 +25395,36,19,31,0.0 +25395,24,4.5,27,0.0 +25395,41,9.65,35,0.0 +25395,44,19.45,49,0.0 +25395,70,15,22,0.0 +25395,57,19.5,8,0.0 +25395,66,17,8,0.0 +25395,71,21.5,34,0.0 +25395,73,15,8,0.0 +25395,15,15.5,4,0.0 +25395,10,31,24,0.0 +25396,56,38,39,0.0 +25396,35,18,43,0.0 +25396,69,36,31,0.0 +25396,34,14,10,0.0 +25396,14,23.25,17,0.0 +25396,42,14,30,0.0 +25396,49,20,18,0.0 +25396,28,45.6,6,0.0 +25396,26,31.23,27,0.0 +25396,60,34,37,0.0 +25396,53,32.8,19,0.0 +25396,43,46,29,0.0 +25396,6,25,36,0.0 +25396,29,123.79,38,0.0 +25396,5,21.35,31,0.0 +25396,24,4.5,23,0.0 +25396,50,16.25,44,0.0 +25396,48,12.75,1,0.0 +25396,55,24,34,0.0 +25396,44,19.45,35,0.0 +25396,62,49.3,16,0.0 +25396,58,13.25,3,0.0 +25396,20,81,33,0.0 +25396,3,10,44,0.0 +25396,63,43.9,46,0.0 +25396,39,18,25,0.0 +25396,51,53,18,0.0 +25396,64,33.25,5,0.0 +25396,4,22,6,0.0 +25396,23,9,15,0.0 +25396,67,14,35,0.0 +25396,25,14,15,0.0 +25396,47,9.5,14,0.0 +25397,2,19,12,0.0 +25397,19,9.2,27,0.0 +25397,21,10,35,0.0 +25397,15,15.5,46,0.0 +25397,57,19.5,21,0.0 +25397,12,38,8,0.0 +25397,4,22,36,0.0 +25397,56,38,37,0.0 +25397,58,13.25,23,0.0 +25397,45,9.5,35,0.0 +25397,25,14,14,0.0 +25397,76,18,5,0.0 +25397,34,14,14,0.0 +25397,64,33.25,36,0.0 +25397,67,14,30,0.0 +25397,77,13,30,0.0 +25397,41,9.65,14,0.0 +25397,53,32.8,12,0.0 +25397,8,40,13,0.0 +25397,17,39,44,0.0 +25397,26,31.23,2,0.0 +25397,63,43.9,41,0.0 +25397,24,4.5,36,0.0 +25397,32,32,5,0.0 +25397,44,19.45,47,0.0 +25397,61,28.5,33,0.0 +25397,20,81,17,0.0 +25397,28,45.6,40,0.0 +25397,73,15,41,0.0 +25397,6,25,8,0.0 +25397,59,55,21,0.0 +25397,16,17.45,29,0.0 +25397,22,21,43,0.0 +25397,31,12.5,17,0.0 +25397,10,31,26,0.0 +25397,30,25.89,11,0.0 +25397,69,36,7,0.0 +25397,40,18.4,18,0.0 +25397,5,21.35,36,0.0 +25397,38,263.5,5,0.0 +25397,13,6,19,0.0 +25397,46,12,37,0.0 +25397,11,21,37,0.0 +25397,62,49.3,1,0.0 +25397,39,18,25,0.0 +25397,70,15,35,0.0 +25397,42,14,49,0.0 +25397,3,10,10,0.0 +25397,72,34.8,15,0.0 +25397,35,18,21,0.0 +25397,71,21.5,6,0.0 +25397,49,20,24,0.0 +25397,52,7,3,0.0 +25397,7,30,38,0.0 +25397,14,23.25,33,0.0 +25397,1,18,47,0.0 +25397,66,17,20,0.0 +25397,29,123.79,25,0.0 +25398,41,9.65,1,0.0 +25398,44,19.45,35,0.0 +25398,56,38,26,0.0 +25398,64,33.25,28,0.0 +25398,20,81,44,0.0 +25398,57,19.5,30,0.0 +25398,69,36,21,0.0 +25398,35,18,35,0.0 +25398,33,2.5,9,0.0 +25398,42,14,48,0.0 +25398,43,46,15,0.0 +25398,21,10,14,0.0 +25398,72,34.8,31,0.0 +25398,10,31,32,0.0 +25398,13,6,45,0.0 +25398,66,17,35,0.0 +25398,74,10,16,0.0 +25398,52,7,27,0.0 +25398,22,21,47,0.0 +25398,51,53,32,0.0 +25398,37,26,1,0.0 +25398,16,17.45,48,0.0 +25398,62,49.3,6,0.0 +25398,48,12.75,41,0.0 +25398,76,18,25,0.0 +25398,75,7.75,6,0.0 +25398,55,24,49,0.0 +25398,12,38,29,0.0 +25398,15,15.5,32,0.0 +25398,14,23.25,30,0.0 +25398,27,43.9,25,0.0 +25399,44,19.45,12,0.0 +25399,41,9.65,25,0.0 +25399,76,18,35,0.0 +25399,12,38,49,0.0 +25399,14,23.25,8,0.0 +25399,7,30,28,0.0 +25399,17,39,14,0.0 +25399,59,55,34,0.0 +25399,3,10,50,0.0 +25399,60,34,35,0.0 +25399,15,15.5,10,0.0 +25399,73,15,16,0.0 +25399,29,123.79,24,0.0 +25399,56,38,48,0.0 +25399,38,263.5,41,0.0 +25399,48,12.75,20,0.0 +25399,33,2.5,43,0.0 +25399,51,53,10,0.0 +25399,11,21,18,0.0 +25399,71,21.5,25,0.0 +25399,68,12.5,4,0.0 +25400,39,18,37,0.0 +25400,14,23.25,32,0.0 +25400,63,43.9,4,0.0 +25400,49,20,27,0.0 +25400,51,53,24,0.0 +25400,23,9,45,0.0 +25400,53,32.8,43,0.0 +25400,67,14,47,0.0 +25400,6,25,46,0.0 +25400,27,43.9,29,0.0 +25400,35,18,1,0.0 +25400,56,38,24,0.0 +25400,54,7.45,40,0.0 +25400,69,36,18,0.0 +25400,10,31,46,0.0 +25400,8,40,18,0.0 +25400,36,19,17,0.0 +25400,24,4.5,30,0.0 +25400,43,46,48,0.0 +25400,32,32,16,0.0 +25400,3,10,14,0.0 +25400,60,34,47,0.0 +25400,66,17,36,0.0 +25400,2,19,27,0.0 +25400,21,10,13,0.0 +25400,11,21,12,0.0 +25400,25,14,28,0.0 +25400,4,22,49,0.0 +25400,47,9.5,38,0.0 +25400,71,21.5,3,0.0 +25400,40,18.4,50,0.0 +25400,61,28.5,41,0.0 +25400,57,19.5,14,0.0 +25400,42,14,45,0.0 +25400,68,12.5,45,0.0 +25400,5,21.35,47,0.0 +25400,73,15,45,0.0 +25400,9,97,44,0.0 +25400,58,13.25,37,0.0 +25400,7,30,14,0.0 +25400,64,33.25,21,0.0 +25400,75,7.75,45,0.0 +25400,18,62.5,13,0.0 +25400,12,38,8,0.0 +25400,72,34.8,31,0.0 +25400,46,12,2,0.0 +25400,30,25.89,35,0.0 +25400,70,15,8,0.0 +25400,52,7,43,0.0 +25400,22,21,34,0.0 +25400,37,26,13,0.0 +25400,74,10,19,0.0 +25400,59,55,9,0.0 +25400,65,21.05,23,0.0 +25400,50,16.25,31,0.0 +25401,30,25.89,15,0.0 +25401,3,10,20,0.0 +25401,1,18,35,0.0 +25401,11,21,2,0.0 +25401,29,123.79,33,0.0 +25401,77,13,1,0.0 +25401,67,14,29,0.0 +25401,10,31,10,0.0 +25401,46,12,37,0.0 +25401,19,9.2,43,0.0 +25401,44,19.45,32,0.0 +25401,14,23.25,43,0.0 +25401,2,19,22,0.0 +25401,49,20,24,0.0 +25401,65,21.05,37,0.0 +25401,50,16.25,12,0.0 +25401,18,62.5,39,0.0 +25401,35,18,13,0.0 +25401,28,45.6,14,0.0 +25401,34,14,1,0.0 +25401,59,55,11,0.0 +25401,39,18,19,0.0 +25401,74,10,38,0.0 +25401,55,24,35,0.0 +25401,9,97,44,0.0 +25401,48,12.75,25,0.0 +25401,51,53,42,0.0 +25401,37,26,26,0.0 +25401,53,32.8,20,0.0 +25401,40,18.4,38,0.0 +25401,7,30,27,0.0 +25401,43,46,17,0.0 +25401,69,36,9,0.0 +25401,31,12.5,32,0.0 +25401,60,34,21,0.0 +25401,5,21.35,20,0.0 +25401,45,9.5,27,0.0 +25401,21,10,13,0.0 +25401,22,21,32,0.0 +25401,32,32,43,0.0 +25401,26,31.23,35,0.0 +25401,75,7.75,47,0.0 +25401,71,21.5,4,0.0 +25401,57,19.5,46,0.0 +25401,58,13.25,32,0.0 +25401,12,38,10,0.0 +25401,4,22,9,0.0 +25401,25,14,20,0.0 +25401,23,9,36,0.0 +25401,52,7,37,0.0 +25401,13,6,3,0.0 +25401,54,7.45,12,0.0 +25401,38,263.5,26,0.0 +25401,63,43.9,39,0.0 +25401,56,38,42,0.0 +25401,36,19,17,0.0 +25401,20,81,36,0.0 +25401,27,43.9,5,0.0 +25401,64,33.25,5,0.0 +25401,47,9.5,39,0.0 +25401,17,39,39,0.0 +25401,72,34.8,4,0.0 +25401,6,25,50,0.0 +25401,33,2.5,2,0.0 +25401,76,18,26,0.0 +25401,62,49.3,43,0.0 +25401,66,17,44,0.0 +25401,8,40,5,0.0 +25401,24,4.5,21,0.0 +25401,16,17.45,24,0.0 +25401,68,12.5,42,0.0 +25401,70,15,28,0.0 +25401,61,28.5,25,0.0 +25401,41,9.65,42,0.0 +25401,73,15,4,0.0 +25402,29,123.79,19,0.0 +25402,62,49.3,8,0.0 +25402,26,31.23,14,0.0 +25402,2,19,18,0.0 +25402,45,9.5,4,0.0 +25402,22,21,32,0.0 +25402,67,14,15,0.0 +25402,5,21.35,7,0.0 +25402,46,12,42,0.0 +25402,9,97,32,0.0 +25402,36,19,16,0.0 +25402,28,45.6,28,0.0 +25402,42,14,10,0.0 +25402,39,18,15,0.0 +25402,49,20,9,0.0 +25402,72,34.8,47,0.0 +25402,52,7,16,0.0 +25402,69,36,44,0.0 +25402,30,25.89,5,0.0 +25402,27,43.9,32,0.0 +25402,51,53,49,0.0 +25402,23,9,45,0.0 +25402,61,28.5,32,0.0 +25402,6,25,5,0.0 +25402,53,32.8,36,0.0 +25402,70,15,43,0.0 +25402,7,30,36,0.0 +25402,56,38,7,0.0 +25402,63,43.9,5,0.0 +25402,13,6,36,0.0 +25402,44,19.45,25,0.0 +25402,43,46,19,0.0 +25402,20,81,36,0.0 +25402,57,19.5,39,0.0 +25402,64,33.25,20,0.0 +25402,40,18.4,31,0.0 +25402,66,17,18,0.0 +25402,14,23.25,17,0.0 +25402,16,17.45,21,0.0 +25402,25,14,47,0.0 +25402,18,62.5,41,0.0 +25402,60,34,28,0.0 +25402,65,21.05,43,0.0 +25402,58,13.25,28,0.0 +25402,33,2.5,24,0.0 +25402,15,15.5,31,0.0 +25402,68,12.5,46,0.0 +25402,10,31,27,0.0 +25402,34,14,37,0.0 +25402,55,24,28,0.0 +25402,11,21,3,0.0 +25402,77,13,12,0.0 +25402,24,4.5,28,0.0 +25402,48,12.75,26,0.0 +25402,31,12.5,42,0.0 +25402,50,16.25,30,0.0 +25402,19,9.2,15,0.0 +25402,4,22,33,0.0 +25402,32,32,30,0.0 +25402,12,38,2,0.0 +25402,38,263.5,38,0.0 +25402,3,10,35,0.0 +25402,76,18,5,0.0 +25402,47,9.5,38,0.0 +25402,17,39,5,0.0 +25402,8,40,48,0.0 +25402,41,9.65,48,0.0 +25403,26,31.23,50,0.0 +25403,46,12,47,0.0 +25403,64,33.25,39,0.0 +25403,55,24,10,0.0 +25403,44,19.45,28,0.0 +25403,31,12.5,19,0.0 +25403,32,32,37,0.0 +25403,22,21,14,0.0 +25403,8,40,16,0.0 +25403,3,10,29,0.0 +25403,43,46,28,0.0 +25403,71,21.5,4,0.0 +25403,49,20,15,0.0 +25403,18,62.5,23,0.0 +25403,10,31,43,0.0 +25403,40,18.4,36,0.0 +25403,28,45.6,33,0.0 +25403,33,2.5,46,0.0 +25403,2,19,50,0.0 +25403,59,55,10,0.0 +25403,69,36,1,0.0 +25403,60,34,8,0.0 +25403,11,21,27,0.0 +25403,29,123.79,48,0.0 +25403,36,19,10,0.0 +25403,67,14,34,0.0 +25403,37,26,4,0.0 +25403,34,14,47,0.0 +25403,35,18,46,0.0 +25403,68,12.5,16,0.0 +25403,75,7.75,1,0.0 +25403,21,10,49,0.0 +25403,14,23.25,35,0.0 +25403,13,6,12,0.0 +25403,50,16.25,40,0.0 +25403,73,15,11,0.0 +25403,66,17,40,0.0 +25403,70,15,10,0.0 +25403,53,32.8,12,0.0 +25403,74,10,15,0.0 +25403,61,28.5,2,0.0 +25403,48,12.75,8,0.0 +25403,51,53,40,0.0 +25403,47,9.5,33,0.0 +25403,12,38,44,0.0 +25403,62,49.3,37,0.0 +25403,27,43.9,41,0.0 +25403,4,22,14,0.0 +25403,38,263.5,9,0.0 +25403,76,18,25,0.0 +25403,52,7,2,0.0 +25403,25,14,47,0.0 +25403,5,21.35,32,0.0 +25403,15,15.5,9,0.0 +25403,57,19.5,24,0.0 +25403,30,25.89,25,0.0 +25403,41,9.65,49,0.0 +25403,19,9.2,22,0.0 +25403,56,38,50,0.0 +25404,32,32,45,0.0 +25404,34,14,5,0.0 +25404,5,21.35,10,0.0 +25404,12,38,24,0.0 +25404,73,15,9,0.0 +25404,14,23.25,45,0.0 +25404,64,33.25,42,0.0 +25404,51,53,33,0.0 +25404,1,18,2,0.0 +25404,39,18,2,0.0 +25404,29,123.79,13,0.0 +25404,54,7.45,44,0.0 +25404,3,10,2,0.0 +25404,42,14,6,0.0 +25404,24,4.5,48,0.0 +25404,58,13.25,45,0.0 +25404,17,39,43,0.0 +25404,35,18,17,0.0 +25404,28,45.6,32,0.0 +25404,44,19.45,18,0.0 +25404,61,28.5,3,0.0 +25404,69,36,7,0.0 +25404,66,17,44,0.0 +25404,48,12.75,25,0.0 +25404,52,7,36,0.0 +25404,55,24,18,0.0 +25404,4,22,13,0.0 +25404,45,9.5,18,0.0 +25404,19,9.2,6,0.0 +25404,65,21.05,28,0.0 +25404,10,31,40,0.0 +25404,41,9.65,6,0.0 +25404,62,49.3,40,0.0 +25404,13,6,24,0.0 +25404,30,25.89,5,0.0 +25404,20,81,26,0.0 +25405,44,19.45,45,0.0 +25405,69,36,38,0.0 +25405,19,9.2,1,0.0 +25405,70,15,27,0.0 +25405,57,19.5,49,0.0 +25405,37,26,41,0.0 +25405,10,31,39,0.0 +25405,61,28.5,24,0.0 +25405,45,9.5,20,0.0 +25405,3,10,3,0.0 +25405,12,38,10,0.0 +25405,77,13,43,0.0 +25405,28,45.6,48,0.0 +25405,65,21.05,32,0.0 +25405,76,18,29,0.0 +25405,41,9.65,4,0.0 +25405,5,21.35,23,0.0 +25406,26,31.23,11,0.0 +25406,20,81,18,0.0 +25406,69,36,7,0.0 +25406,33,2.5,20,0.0 +25406,11,21,15,0.0 +25406,61,28.5,22,0.0 +25406,46,12,49,0.0 +25406,2,19,37,0.0 +25406,43,46,39,0.0 +25406,75,7.75,42,0.0 +25406,48,12.75,24,0.0 +25406,30,25.89,30,0.0 +25406,8,40,41,0.0 +25406,76,18,15,0.0 +25406,15,15.5,36,0.0 +25406,70,15,19,0.0 +25406,67,14,13,0.0 +25406,17,39,23,0.0 +25406,7,30,13,0.0 +25406,57,19.5,33,0.0 +25406,42,14,5,0.0 +25406,29,123.79,1,0.0 +25406,37,26,4,0.0 +25406,71,21.5,28,0.0 +25406,63,43.9,44,0.0 +25406,18,62.5,5,0.0 +25406,65,21.05,21,0.0 +25406,55,24,18,0.0 +25406,9,97,36,0.0 +25406,41,9.65,29,0.0 +25406,22,21,4,0.0 +25406,72,34.8,16,0.0 +25406,51,53,50,0.0 +25406,19,9.2,14,0.0 +25406,50,16.25,11,0.0 +25406,35,18,39,0.0 +25406,73,15,49,0.0 +25406,32,32,22,0.0 +25406,53,32.8,38,0.0 +25406,12,38,27,0.0 +25406,68,12.5,20,0.0 +25406,34,14,16,0.0 +25406,56,38,36,0.0 +25406,52,7,47,0.0 +25406,27,43.9,14,0.0 +25406,3,10,14,0.0 +25406,54,7.45,44,0.0 +25406,4,22,44,0.0 +25406,10,31,39,0.0 +25406,14,23.25,21,0.0 +25406,77,13,38,0.0 +25406,5,21.35,8,0.0 +25406,66,17,42,0.0 +25406,45,9.5,2,0.0 +25406,58,13.25,2,0.0 +25406,31,12.5,35,0.0 +25406,1,18,11,0.0 +25406,28,45.6,19,0.0 +25406,13,6,23,0.0 +25406,44,19.45,11,0.0 +25406,24,4.5,27,0.0 +25406,64,33.25,38,0.0 +25406,74,10,18,0.0 +25406,21,10,25,0.0 +25406,39,18,8,0.0 +25406,36,19,9,0.0 +25406,60,34,26,0.0 +25406,62,49.3,1,0.0 +25406,16,17.45,7,0.0 +25406,47,9.5,22,0.0 +25406,25,14,27,0.0 +25406,38,263.5,31,0.0 +25406,49,20,6,0.0 +25406,59,55,34,0.0 +25406,6,25,39,0.0 +25406,23,9,24,0.0 +25406,40,18.4,33,0.0 +25407,66,17,36,0.0 +25407,19,9.2,47,0.0 +25407,31,12.5,43,0.0 +25407,12,38,8,0.0 +25407,54,7.45,21,0.0 +25407,73,15,42,0.0 +25407,41,9.65,50,0.0 +25407,25,14,25,0.0 +25407,9,97,8,0.0 +25407,24,4.5,19,0.0 +25407,44,19.45,33,0.0 +25407,70,15,37,0.0 +25407,6,25,30,0.0 +25407,63,43.9,21,0.0 +25407,43,46,4,0.0 +25407,4,22,43,0.0 +25407,56,38,12,0.0 +25407,49,20,5,0.0 +25407,45,9.5,48,0.0 +25407,26,31.23,47,0.0 +25407,51,53,11,0.0 +25407,40,18.4,10,0.0 +25407,62,49.3,29,0.0 +25407,8,40,48,0.0 +25407,15,15.5,1,0.0 +25407,37,26,7,0.0 +25407,34,14,26,0.0 +25407,23,9,43,0.0 +25407,5,21.35,32,0.0 +25407,72,34.8,48,0.0 +25407,57,19.5,6,0.0 +25407,3,10,50,0.0 +25407,38,263.5,5,0.0 +25407,46,12,49,0.0 +25407,13,6,10,0.0 +25407,65,21.05,38,0.0 +25407,32,32,36,0.0 +25407,33,2.5,22,0.0 +25407,47,9.5,19,0.0 +25408,39,18,48,0.0 +25408,24,4.5,22,0.0 +25408,45,9.5,13,0.0 +25408,3,10,24,0.0 +25408,31,12.5,5,0.0 +25408,58,13.25,30,0.0 +25408,72,34.8,21,0.0 +25408,43,46,49,0.0 +25408,10,31,29,0.0 +25408,77,13,4,0.0 +25408,66,17,34,0.0 +25408,61,28.5,34,0.0 +25408,49,20,28,0.0 +25408,14,23.25,28,0.0 +25408,57,19.5,35,0.0 +25408,65,21.05,11,0.0 +25408,12,38,9,0.0 +25408,60,34,35,0.0 +25408,6,25,8,0.0 +25408,36,19,43,0.0 +25408,42,14,12,0.0 +25408,46,12,8,0.0 +25408,28,45.6,7,0.0 +25409,65,21.05,38,0.0 +25409,5,21.35,7,0.0 +25409,77,13,46,0.0 +25409,31,12.5,16,0.0 +25409,14,23.25,34,0.0 +25409,35,18,19,0.0 +25409,2,19,25,0.0 +25409,36,19,34,0.0 +25409,50,16.25,45,0.0 +25409,57,19.5,30,0.0 +25409,3,10,24,0.0 +25409,9,97,35,0.0 +25409,63,43.9,1,0.0 +25409,10,31,1,0.0 +25409,41,9.65,14,0.0 +25409,28,45.6,7,0.0 +25409,15,15.5,12,0.0 +25409,52,7,20,0.0 +25409,55,24,48,0.0 +25409,33,2.5,47,0.0 +25409,32,32,50,0.0 +25409,47,9.5,7,0.0 +25409,12,38,49,0.0 +25409,29,123.79,10,0.0 +25409,30,25.89,34,0.0 +25409,8,40,46,0.0 +25409,11,21,24,0.0 +25409,26,31.23,15,0.0 +25409,54,7.45,8,0.0 +25409,37,26,50,0.0 +25409,23,9,23,0.0 +25409,76,18,1,0.0 +25409,44,19.45,24,0.0 +25409,7,30,32,0.0 +25409,13,6,20,0.0 +25409,24,4.5,44,0.0 +25409,25,14,3,0.0 +25409,45,9.5,45,0.0 +25409,75,7.75,6,0.0 +25409,74,10,17,0.0 +25409,49,20,15,0.0 +25409,53,32.8,46,0.0 +25409,70,15,12,0.0 +25409,61,28.5,41,0.0 +25409,21,10,7,0.0 +25409,19,9.2,29,0.0 +25409,20,81,45,0.0 +25409,51,53,27,0.0 +25409,39,18,10,0.0 +25409,68,12.5,27,0.0 +25409,56,38,39,0.0 +25410,47,9.5,18,0.0 +25410,40,18.4,11,0.0 +25410,3,10,41,0.0 +25410,32,32,44,0.0 +25410,5,21.35,46,0.0 +25410,28,45.6,16,0.0 +25410,9,97,37,0.0 +25410,27,43.9,25,0.0 +25410,15,15.5,49,0.0 +25410,77,13,6,0.0 +25410,60,34,21,0.0 +25410,53,32.8,7,0.0 +25410,21,10,42,0.0 +25410,6,25,36,0.0 +25410,34,14,37,0.0 +25410,8,40,25,0.0 +25410,73,15,39,0.0 +25410,13,6,16,0.0 +25410,42,14,12,0.0 +25410,41,9.65,40,0.0 +25410,63,43.9,41,0.0 +25410,67,14,1,0.0 +25411,57,19.5,20,0.0 +25411,52,7,43,0.0 +25411,34,14,21,0.0 +25411,17,39,37,0.0 +25411,27,43.9,21,0.0 +25411,19,9.2,45,0.0 +25411,12,38,22,0.0 +25411,14,23.25,13,0.0 +25411,41,9.65,49,0.0 +25411,39,18,3,0.0 +25411,21,10,49,0.0 +25411,32,32,47,0.0 +25411,13,6,13,0.0 +25411,64,33.25,3,0.0 +25411,11,21,42,0.0 +25411,24,4.5,36,0.0 +25411,3,10,7,0.0 +25411,2,19,2,0.0 +25412,53,32.8,37,0.0 +25412,24,4.5,48,0.0 +25412,68,12.5,36,0.0 +25412,76,18,12,0.0 +25412,1,18,18,0.0 +25412,56,38,35,0.0 +25412,36,19,38,0.0 +25412,16,17.45,4,0.0 +25412,20,81,6,0.0 +25412,2,19,18,0.0 +25412,31,12.5,8,0.0 +25412,9,97,38,0.0 +25412,26,31.23,8,0.0 +25412,57,19.5,32,0.0 +25412,42,14,44,0.0 +25412,47,9.5,35,0.0 +25412,35,18,7,0.0 +25412,7,30,40,0.0 +25412,32,32,32,0.0 +25412,34,14,40,0.0 +25412,44,19.45,9,0.0 +25412,15,15.5,15,0.0 +25412,3,10,48,0.0 +25412,51,53,4,0.0 +25412,29,123.79,18,0.0 +25412,48,12.75,36,0.0 +25412,25,14,49,0.0 +25412,37,26,25,0.0 +25412,18,62.5,41,0.0 +25412,8,40,41,0.0 +25412,4,22,31,0.0 +25412,75,7.75,19,0.0 +25412,65,21.05,26,0.0 +25412,54,7.45,7,0.0 +25412,72,34.8,31,0.0 +25412,60,34,25,0.0 +25412,64,33.25,37,0.0 +25412,63,43.9,34,0.0 +25412,27,43.9,14,0.0 +25412,10,31,41,0.0 +25412,12,38,32,0.0 +25412,40,18.4,40,0.0 +25412,17,39,38,0.0 +25412,28,45.6,37,0.0 +25412,30,25.89,6,0.0 +25412,46,12,13,0.0 +25412,6,25,17,0.0 +25412,45,9.5,50,0.0 +25412,74,10,16,0.0 +25412,11,21,44,0.0 +25412,33,2.5,31,0.0 +25413,22,21,22,0.0 +25413,41,9.65,12,0.0 +25413,57,19.5,24,0.0 +25413,23,9,31,0.0 +25413,3,10,20,0.0 +25413,8,40,13,0.0 +25413,59,55,19,0.0 +25413,72,34.8,10,0.0 +25413,25,14,23,0.0 +25413,55,24,40,0.0 +25413,53,32.8,20,0.0 +25414,6,25,1,0.0 +25414,66,17,19,0.0 +25414,1,18,25,0.0 +25415,38,263.5,5,0.0 +25415,9,97,29,0.0 +25415,64,33.25,49,0.0 +25415,70,15,7,0.0 +25415,19,9.2,47,0.0 +25415,62,49.3,26,0.0 +25415,66,17,39,0.0 +25415,28,45.6,24,0.0 +25415,22,21,34,0.0 +25415,44,19.45,29,0.0 +25415,12,38,25,0.0 +25415,68,12.5,29,0.0 +25415,23,9,15,0.0 +25415,50,16.25,29,0.0 +25415,46,12,1,0.0 +25415,72,34.8,41,0.0 +25415,61,28.5,17,0.0 +25415,49,20,30,0.0 +25415,5,21.35,47,0.0 +25415,57,19.5,25,0.0 +25415,52,7,28,0.0 +25415,25,14,40,0.0 +25415,3,10,27,0.0 +25415,71,21.5,6,0.0 +25415,41,9.65,15,0.0 +25415,74,10,41,0.0 +25415,17,39,15,0.0 +25415,33,2.5,25,0.0 +25415,2,19,48,0.0 +25415,39,18,25,0.0 +25415,37,26,3,0.0 +25415,54,7.45,45,0.0 +25415,7,30,27,0.0 +25415,21,10,23,0.0 +25415,42,14,3,0.0 +25415,34,14,46,0.0 +25415,63,43.9,49,0.0 +25415,8,40,44,0.0 +25415,76,18,50,0.0 +25416,45,9.5,12,0.0 +25416,54,7.45,41,0.0 +25416,74,10,6,0.0 +25416,48,12.75,45,0.0 +25416,14,23.25,8,0.0 +25416,52,7,24,0.0 +25416,60,34,45,0.0 +25416,27,43.9,9,0.0 +25416,69,36,15,0.0 +25416,37,26,25,0.0 +25416,42,14,7,0.0 +25416,63,43.9,42,0.0 +25416,40,18.4,47,0.0 +25416,36,19,50,0.0 +25416,61,28.5,4,0.0 +25416,39,18,36,0.0 +25416,8,40,1,0.0 +25416,23,9,3,0.0 +25416,15,15.5,5,0.0 +25416,50,16.25,44,0.0 +25416,2,19,30,0.0 +25416,20,81,21,0.0 +25416,22,21,4,0.0 +25416,71,21.5,40,0.0 +25416,29,123.79,40,0.0 +25416,76,18,35,0.0 +25416,72,34.8,26,0.0 +25416,38,263.5,15,0.0 +25416,5,21.35,47,0.0 +25416,41,9.65,34,0.0 +25416,31,12.5,5,0.0 +25416,68,12.5,26,0.0 +25416,30,25.89,43,0.0 +25416,51,53,1,0.0 +25416,59,55,6,0.0 +25416,35,18,7,0.0 +25416,33,2.5,39,0.0 +25417,46,12,34,0.0 +25417,6,25,50,0.0 +25417,58,13.25,4,0.0 +25417,48,12.75,33,0.0 +25417,52,7,15,0.0 +25417,15,15.5,22,0.0 +25417,67,14,36,0.0 +25417,36,19,39,0.0 +25417,31,12.5,10,0.0 +25417,68,12.5,21,0.0 +25417,44,19.45,50,0.0 +25417,60,34,12,0.0 +25417,77,13,45,0.0 +25417,63,43.9,34,0.0 +25417,61,28.5,29,0.0 +25417,27,43.9,30,0.0 +25417,12,38,19,0.0 +25417,73,15,4,0.0 +25417,54,7.45,3,0.0 +25417,35,18,14,0.0 +25417,43,46,24,0.0 +25417,74,10,11,0.0 +25417,13,6,10,0.0 +25417,32,32,40,0.0 +25417,34,14,10,0.0 +25417,3,10,8,0.0 +25417,55,24,25,0.0 +25417,21,10,35,0.0 +25417,28,45.6,10,0.0 +25417,71,21.5,32,0.0 +25417,37,26,42,0.0 +25417,69,36,16,0.0 +25417,17,39,15,0.0 +25417,40,18.4,9,0.0 +25417,11,21,33,0.0 +25417,50,16.25,35,0.0 +25417,53,32.8,41,0.0 +25417,41,9.65,38,0.0 +25417,19,9.2,17,0.0 +25417,39,18,41,0.0 +25417,62,49.3,13,0.0 +25418,36,19,7,0.0 +25418,10,31,17,0.0 +25418,27,43.9,26,0.0 +25418,39,18,36,0.0 +25418,5,21.35,31,0.0 +25418,21,10,21,0.0 +25418,55,24,24,0.0 +25418,40,18.4,26,0.0 +25418,1,18,32,0.0 +25418,76,18,10,0.0 +25418,3,10,32,0.0 +25418,59,55,14,0.0 +25418,71,21.5,29,0.0 +25418,43,46,6,0.0 +25418,61,28.5,15,0.0 +25418,73,15,37,0.0 +25418,23,9,43,0.0 +25418,2,19,18,0.0 +25418,72,34.8,35,0.0 +25418,18,62.5,9,0.0 +25418,41,9.65,29,0.0 +25418,42,14,24,0.0 +25418,52,7,3,0.0 +25418,67,14,6,0.0 +25418,33,2.5,11,0.0 +25418,13,6,30,0.0 +25418,49,20,38,0.0 +25418,47,9.5,31,0.0 +25418,22,21,20,0.0 +25418,46,12,10,0.0 +25418,68,12.5,12,0.0 +25418,64,33.25,39,0.0 +25418,29,123.79,39,0.0 +25418,60,34,28,0.0 +25418,44,19.45,8,0.0 +25418,58,13.25,16,0.0 +25418,75,7.75,42,0.0 +25418,30,25.89,10,0.0 +25418,66,17,10,0.0 +25418,24,4.5,44,0.0 +25418,62,49.3,34,0.0 +25418,54,7.45,38,0.0 +25418,57,19.5,40,0.0 +25418,32,32,30,0.0 +25418,8,40,49,0.0 +25418,53,32.8,11,0.0 +25418,15,15.5,27,0.0 +25418,11,21,18,0.0 +25418,7,30,8,0.0 +25418,35,18,33,0.0 +25418,28,45.6,40,0.0 +25418,31,12.5,6,0.0 +25418,50,16.25,28,0.0 +25418,16,17.45,34,0.0 +25418,63,43.9,19,0.0 +25418,19,9.2,17,0.0 +25418,65,21.05,26,0.0 +25418,45,9.5,16,0.0 +25418,34,14,46,0.0 +25418,12,38,33,0.0 +25418,17,39,25,0.0 +25418,74,10,10,0.0 +25418,38,263.5,34,0.0 +25418,56,38,38,0.0 +25418,77,13,10,0.0 +25418,48,12.75,23,0.0 +25418,6,25,34,0.0 +25418,69,36,25,0.0 +25418,4,22,39,0.0 +25418,20,81,43,0.0 +25419,39,18,2,0.0 +25419,49,20,3,0.0 +25419,76,18,47,0.0 +25419,48,12.75,32,0.0 +25419,63,43.9,7,0.0 +25419,1,18,23,0.0 +25419,69,36,1,0.0 +25419,17,39,47,0.0 +25419,3,10,19,0.0 +25419,65,21.05,34,0.0 +25419,30,25.89,10,0.0 +25419,40,18.4,10,0.0 +25419,44,19.45,4,0.0 +25419,10,31,40,0.0 +25419,31,12.5,26,0.0 +25419,34,14,35,0.0 +25419,67,14,32,0.0 +25419,4,22,1,0.0 +25419,18,62.5,30,0.0 +25419,71,21.5,15,0.0 +25419,51,53,9,0.0 +25419,59,55,1,0.0 +25419,19,9.2,4,0.0 +25419,41,9.65,35,0.0 +25419,12,38,21,0.0 +25419,61,28.5,28,0.0 +25419,23,9,42,0.0 +25419,64,33.25,49,0.0 +25419,8,40,21,0.0 +25419,33,2.5,32,0.0 +25419,46,12,39,0.0 +25419,74,10,42,0.0 +25419,14,23.25,4,0.0 +25419,45,9.5,11,0.0 +25419,27,43.9,29,0.0 +25419,20,81,34,0.0 +25419,13,6,20,0.0 +25419,56,38,29,0.0 +25419,50,16.25,8,0.0 +25419,37,26,19,0.0 +25419,70,15,31,0.0 +25419,11,21,26,0.0 +25420,27,43.9,27,0.0 +25420,13,6,17,0.0 +25420,58,13.25,31,0.0 +25420,53,32.8,46,0.0 +25420,20,81,28,0.0 +25420,37,26,50,0.0 +25420,11,21,43,0.0 +25420,14,23.25,4,0.0 +25420,56,38,28,0.0 +25420,2,19,40,0.0 +25420,30,25.89,35,0.0 +25420,71,21.5,40,0.0 +25420,63,43.9,7,0.0 +25420,17,39,26,0.0 +25420,41,9.65,33,0.0 +25420,76,18,17,0.0 +25420,38,263.5,35,0.0 +25420,7,30,15,0.0 +25420,22,21,37,0.0 +25420,69,36,16,0.0 +25420,55,24,49,0.0 +25420,68,12.5,27,0.0 +25420,28,45.6,14,0.0 +25420,3,10,47,0.0 +25420,65,21.05,33,0.0 +25420,34,14,11,0.0 +25420,8,40,26,0.0 +25420,21,10,23,0.0 +25420,50,16.25,36,0.0 +25420,31,12.5,16,0.0 +25420,72,34.8,20,0.0 +25420,70,15,34,0.0 +25420,36,19,50,0.0 +25420,77,13,27,0.0 +25420,51,53,31,0.0 +25420,35,18,23,0.0 +25420,60,34,35,0.0 +25420,66,17,42,0.0 +25420,24,4.5,34,0.0 +25420,49,20,27,0.0 +25420,12,38,40,0.0 +25420,26,31.23,46,0.0 +25420,47,9.5,23,0.0 +25420,73,15,5,0.0 +25420,44,19.45,28,0.0 +25420,43,46,47,0.0 +25420,19,9.2,8,0.0 +25420,61,28.5,24,0.0 +25420,39,18,2,0.0 +25420,18,62.5,49,0.0 +25420,6,25,44,0.0 +25420,62,49.3,33,0.0 +25420,74,10,22,0.0 +25420,46,12,33,0.0 +25420,16,17.45,5,0.0 +25420,10,31,35,0.0 +25420,45,9.5,26,0.0 +25420,4,22,18,0.0 +25420,67,14,49,0.0 +25420,59,55,46,0.0 +25420,15,15.5,35,0.0 +25420,1,18,27,0.0 +25420,40,18.4,21,0.0 +25420,23,9,24,0.0 +25420,54,7.45,11,0.0 +25420,9,97,26,0.0 +25420,52,7,8,0.0 +25420,5,21.35,27,0.0 +25420,57,19.5,50,0.0 +25420,64,33.25,22,0.0 +25420,42,14,28,0.0 +25420,48,12.75,12,0.0 +25420,32,32,28,0.0 +25420,33,2.5,45,0.0 +25420,25,14,8,0.0 +25421,20,81,18,0.0 +25421,59,55,2,0.0 +25421,47,9.5,33,0.0 +25421,22,21,11,0.0 +25421,10,31,27,0.0 +25421,26,31.23,43,0.0 +25421,28,45.6,26,0.0 +25421,9,97,26,0.0 +25421,46,12,8,0.0 +25421,52,7,9,0.0 +25421,76,18,15,0.0 +25421,36,19,24,0.0 +25421,55,24,28,0.0 +25421,73,15,39,0.0 +25421,2,19,23,0.0 +25421,38,263.5,46,0.0 +25421,17,39,26,0.0 +25421,33,2.5,43,0.0 +25421,12,38,29,0.0 +25421,8,40,15,0.0 +25421,53,32.8,26,0.0 +25421,4,22,25,0.0 +25421,30,25.89,28,0.0 +25421,19,9.2,40,0.0 +25421,60,34,28,0.0 +25421,58,13.25,35,0.0 +25421,34,14,18,0.0 +25421,51,53,21,0.0 +25421,29,123.79,8,0.0 +25421,24,4.5,6,0.0 +25421,57,19.5,23,0.0 +25421,48,12.75,28,0.0 +25421,43,46,22,0.0 +25421,39,18,43,0.0 +25421,64,33.25,8,0.0 +25421,62,49.3,49,0.0 +25421,42,14,20,0.0 +25421,61,28.5,40,0.0 +25422,14,23.25,32,0.0 +25422,25,14,9,0.0 +25422,41,9.65,26,0.0 +25422,64,33.25,42,0.0 +25422,73,15,28,0.0 +25422,58,13.25,20,0.0 +25422,4,22,40,0.0 +25422,37,26,1,0.0 +25422,9,97,28,0.0 +25422,35,18,5,0.0 +25422,68,12.5,36,0.0 +25422,10,31,14,0.0 +25422,38,263.5,21,0.0 +25422,49,20,37,0.0 +25422,17,39,38,0.0 +25422,62,49.3,46,0.0 +25422,44,19.45,43,0.0 +25422,3,10,44,0.0 +25422,55,24,41,0.0 +25422,6,25,23,0.0 +25422,50,16.25,35,0.0 +25422,13,6,22,0.0 +25422,63,43.9,7,0.0 +25422,27,43.9,36,0.0 +25422,52,7,25,0.0 +25422,47,9.5,41,0.0 +25422,36,19,28,0.0 +25422,46,12,23,0.0 +25422,77,13,11,0.0 +25422,2,19,33,0.0 +25422,59,55,46,0.0 +25422,66,17,2,0.0 +25422,67,14,23,0.0 +25422,28,45.6,45,0.0 +25423,60,34,21,0.0 +25423,23,9,18,0.0 +25423,17,39,47,0.0 +25423,3,10,30,0.0 +25423,31,12.5,1,0.0 +25423,43,46,40,0.0 +25423,16,17.45,19,0.0 +25423,4,22,11,0.0 +25423,34,14,43,0.0 +25423,77,13,29,0.0 +25423,37,26,24,0.0 +25423,29,123.79,39,0.0 +25423,10,31,5,0.0 +25423,22,21,16,0.0 +25423,46,12,48,0.0 +25423,72,34.8,41,0.0 +25423,75,7.75,30,0.0 +25423,8,40,31,0.0 +25423,73,15,33,0.0 +25423,58,13.25,11,0.0 +25423,24,4.5,4,0.0 +25423,26,31.23,28,0.0 +25423,64,33.25,2,0.0 +25423,7,30,42,0.0 +25423,52,7,6,0.0 +25423,12,38,14,0.0 +25423,53,32.8,29,0.0 +25423,71,21.5,26,0.0 +25423,14,23.25,20,0.0 +25423,1,18,30,0.0 +25423,6,25,27,0.0 +25423,18,62.5,41,0.0 +25423,38,263.5,7,0.0 +25423,49,20,32,0.0 +25423,33,2.5,2,0.0 +25423,30,25.89,29,0.0 +25423,11,21,3,0.0 +25423,20,81,28,0.0 +25423,66,17,40,0.0 +25424,10,31,17,0.0 +25424,25,14,19,0.0 +25424,17,39,49,0.0 +25424,7,30,5,0.0 +25424,77,13,6,0.0 +25424,13,6,29,0.0 +25424,11,21,9,0.0 +25424,23,9,16,0.0 +25424,8,40,32,0.0 +25424,52,7,31,0.0 +25424,51,53,10,0.0 +25424,62,49.3,25,0.0 +25424,18,62.5,49,0.0 +25424,67,14,28,0.0 +25424,46,12,13,0.0 +25424,26,31.23,34,0.0 +25424,47,9.5,33,0.0 +25424,56,38,50,0.0 +25424,74,10,45,0.0 +25424,37,26,3,0.0 +25424,32,32,7,0.0 +25424,15,15.5,31,0.0 +25424,40,18.4,9,0.0 +25424,12,38,15,0.0 +25424,36,19,13,0.0 +25424,66,17,28,0.0 +25424,16,17.45,18,0.0 +25424,22,21,35,0.0 +25424,3,10,42,0.0 +25424,34,14,47,0.0 +25424,60,34,37,0.0 +25424,69,36,31,0.0 +25424,55,24,43,0.0 +25424,29,123.79,41,0.0 +25424,35,18,44,0.0 +25424,49,20,29,0.0 +25424,63,43.9,24,0.0 +25424,6,25,47,0.0 +25424,24,4.5,42,0.0 +25424,72,34.8,12,0.0 +25424,21,10,36,0.0 +25424,75,7.75,2,0.0 +25424,5,21.35,14,0.0 +25424,1,18,19,0.0 +25424,14,23.25,28,0.0 +25424,45,9.5,32,0.0 +25424,4,22,44,0.0 +25424,44,19.45,34,0.0 +25425,77,13,12,0.0 +25425,39,18,16,0.0 +25425,29,123.79,40,0.0 +25425,10,31,29,0.0 +25425,37,26,5,0.0 +25425,60,34,21,0.0 +25425,4,22,35,0.0 +25425,22,21,50,0.0 +25425,6,25,20,0.0 +25425,31,12.5,18,0.0 +25425,45,9.5,29,0.0 +25425,51,53,9,0.0 +25425,68,12.5,33,0.0 +25425,16,17.45,24,0.0 +25425,64,33.25,5,0.0 +25425,20,81,5,0.0 +25425,43,46,39,0.0 +25425,26,31.23,47,0.0 +25425,61,28.5,25,0.0 +25425,34,14,35,0.0 +25425,48,12.75,9,0.0 +25425,33,2.5,36,0.0 +25425,38,263.5,32,0.0 +25425,46,12,45,0.0 +25425,71,21.5,5,0.0 +25425,50,16.25,26,0.0 +25425,42,14,28,0.0 +25425,24,4.5,50,0.0 +25425,65,21.05,4,0.0 +25425,18,62.5,10,0.0 +25425,44,19.45,47,0.0 +25425,49,20,25,0.0 +25425,63,43.9,39,0.0 +25425,15,15.5,30,0.0 +25425,12,38,18,0.0 +25425,2,19,34,0.0 +25425,62,49.3,41,0.0 +25425,47,9.5,32,0.0 +25425,73,15,28,0.0 +25425,13,6,3,0.0 +25425,53,32.8,45,0.0 +25425,30,25.89,46,0.0 +25425,25,14,22,0.0 +25425,72,34.8,14,0.0 +25425,11,21,20,0.0 +25425,76,18,34,0.0 +25425,56,38,2,0.0 +25425,69,36,4,0.0 +25425,9,97,24,0.0 +25425,8,40,22,0.0 +25425,1,18,21,0.0 +25425,23,9,13,0.0 +25425,66,17,10,0.0 +25425,54,7.45,50,0.0 +25425,52,7,15,0.0 +25425,75,7.75,32,0.0 +25425,35,18,40,0.0 +25425,28,45.6,31,0.0 +25425,19,9.2,31,0.0 +25425,32,32,39,0.0 +25425,5,21.35,9,0.0 +25425,17,39,46,0.0 +25425,21,10,40,0.0 +25425,59,55,24,0.0 +25425,55,24,31,0.0 +25425,7,30,45,0.0 +25425,40,18.4,47,0.0 +25425,3,10,14,0.0 +25425,27,43.9,2,0.0 +25425,14,23.25,46,0.0 +25425,57,19.5,47,0.0 +25425,74,10,39,0.0 +25425,58,13.25,13,0.0 +25425,70,15,43,0.0 +25426,36,19,15,0.0 +25426,51,53,31,0.0 +25426,48,12.75,43,0.0 +25426,76,18,19,0.0 +25426,45,9.5,46,0.0 +25426,18,62.5,50,0.0 +25426,31,12.5,39,0.0 +25426,38,263.5,31,0.0 +25426,22,21,4,0.0 +25426,62,49.3,24,0.0 +25426,42,14,6,0.0 +25426,1,18,7,0.0 +25426,19,9.2,50,0.0 +25426,3,10,24,0.0 +25426,29,123.79,14,0.0 +25426,25,14,50,0.0 +25426,11,21,49,0.0 +25426,32,32,11,0.0 +25426,16,17.45,10,0.0 +25426,7,30,25,0.0 +25426,30,25.89,18,0.0 +25426,35,18,44,0.0 +25426,63,43.9,21,0.0 +25426,69,36,25,0.0 +25426,61,28.5,18,0.0 +25426,66,17,37,0.0 +25426,68,12.5,32,0.0 +25426,59,55,47,0.0 +25426,60,34,39,0.0 +25426,28,45.6,5,0.0 +25426,46,12,33,0.0 +25426,23,9,20,0.0 +25426,33,2.5,38,0.0 +25426,50,16.25,17,0.0 +25426,13,6,29,0.0 +25426,71,21.5,17,0.0 +25426,2,19,31,0.0 +25426,20,81,42,0.0 +25426,77,13,18,0.0 +25426,73,15,46,0.0 +25426,43,46,5,0.0 +25426,74,10,46,0.0 +25426,64,33.25,21,0.0 +25426,41,9.65,10,0.0 +25426,54,7.45,37,0.0 +25426,75,7.75,7,0.0 +25426,65,21.05,22,0.0 +25426,70,15,49,0.0 +25426,72,34.8,39,0.0 +25426,67,14,43,0.0 +25426,53,32.8,4,0.0 +25426,27,43.9,21,0.0 +25426,6,25,28,0.0 +25426,8,40,16,0.0 +25426,37,26,14,0.0 +25426,5,21.35,43,0.0 +25427,38,263.5,31,0.0 +25427,35,18,20,0.0 +25427,8,40,26,0.0 +25427,4,22,32,0.0 +25427,59,55,48,0.0 +25427,69,36,1,0.0 +25427,13,6,10,0.0 +25427,71,21.5,23,0.0 +25427,52,7,7,0.0 +25427,73,15,44,0.0 +25427,5,21.35,6,0.0 +25427,31,12.5,38,0.0 +25427,33,2.5,1,0.0 +25427,11,21,7,0.0 +25427,7,30,22,0.0 +25427,23,9,3,0.0 +25427,26,31.23,8,0.0 +25427,39,18,25,0.0 +25427,36,19,8,0.0 +25427,61,28.5,45,0.0 +25427,22,21,25,0.0 +25427,68,12.5,45,0.0 +25427,70,15,23,0.0 +25427,19,9.2,50,0.0 +25427,72,34.8,2,0.0 +25427,32,32,43,0.0 +25427,53,32.8,39,0.0 +25427,54,7.45,14,0.0 +25427,50,16.25,46,0.0 +25427,49,20,5,0.0 +25427,77,13,22,0.0 +25427,17,39,34,0.0 +25427,15,15.5,24,0.0 +25427,10,31,21,0.0 +25427,45,9.5,1,0.0 +25427,76,18,48,0.0 +25427,57,19.5,12,0.0 +25427,16,17.45,36,0.0 +25427,63,43.9,18,0.0 +25427,65,21.05,11,0.0 +25427,66,17,45,0.0 +25427,27,43.9,14,0.0 +25427,21,10,45,0.0 +25427,37,26,7,0.0 +25427,41,9.65,26,0.0 +25427,25,14,26,0.0 +25427,55,24,40,0.0 +25427,62,49.3,4,0.0 +25427,14,23.25,4,0.0 +25427,56,38,33,0.0 +25427,75,7.75,43,0.0 +25427,18,62.5,15,0.0 +25427,74,10,32,0.0 +25427,29,123.79,35,0.0 +25427,2,19,42,0.0 +25427,30,25.89,50,0.0 +25427,6,25,35,0.0 +25427,34,14,16,0.0 +25427,46,12,26,0.0 +25428,61,28.5,32,0.0 +25428,13,6,28,0.0 +25428,76,18,41,0.0 +25428,51,53,19,0.0 +25429,63,43.9,11,0.0 +25429,26,31.23,41,0.0 +25429,53,32.8,34,0.0 +25429,30,25.89,23,0.0 +25429,69,36,41,0.0 +25429,13,6,49,0.0 +25429,12,38,15,0.0 +25429,75,7.75,34,0.0 +25429,32,32,35,0.0 +25429,23,9,25,0.0 +25429,45,9.5,33,0.0 +25429,4,22,36,0.0 +25429,24,4.5,30,0.0 +25429,6,25,35,0.0 +25429,16,17.45,14,0.0 +25429,61,28.5,10,0.0 +25429,40,18.4,2,0.0 +25429,62,49.3,17,0.0 +25429,17,39,24,0.0 +25429,21,10,16,0.0 +25429,73,15,38,0.0 +25429,67,14,10,0.0 +25429,70,15,16,0.0 +25430,69,36,37,0.0 +25430,60,34,42,0.0 +25430,8,40,27,0.0 +25430,57,19.5,39,0.0 +25430,72,34.8,8,0.0 +25430,15,15.5,48,0.0 +25430,9,97,38,0.0 +25430,51,53,24,0.0 +25430,71,21.5,35,0.0 +25430,11,21,2,0.0 +25430,59,55,43,0.0 +25430,66,17,30,0.0 +25430,52,7,41,0.0 +25430,61,28.5,31,0.0 +25430,19,9.2,41,0.0 +25430,56,38,22,0.0 +25430,77,13,26,0.0 +25430,54,7.45,36,0.0 +25430,42,14,49,0.0 +25430,27,43.9,47,0.0 +25430,63,43.9,9,0.0 +25430,28,45.6,49,0.0 +25430,64,33.25,23,0.0 +25430,24,4.5,32,0.0 +25430,35,18,33,0.0 +25430,39,18,25,0.0 +25430,25,14,24,0.0 +25430,13,6,22,0.0 +25430,50,16.25,20,0.0 +25430,38,263.5,15,0.0 +25430,26,31.23,31,0.0 +25430,1,18,28,0.0 +25430,76,18,23,0.0 +25430,12,38,30,0.0 +25430,45,9.5,42,0.0 +25430,10,31,5,0.0 +25430,74,10,46,0.0 +25430,18,62.5,6,0.0 +25430,5,21.35,28,0.0 +25430,30,25.89,21,0.0 +25430,17,39,18,0.0 +25430,20,81,17,0.0 +25430,43,46,5,0.0 +25430,4,22,25,0.0 +25430,33,2.5,25,0.0 +25430,75,7.75,15,0.0 +25430,21,10,30,0.0 +25430,31,12.5,30,0.0 +25430,7,30,32,0.0 +25430,58,13.25,31,0.0 +25430,49,20,13,0.0 +25430,44,19.45,31,0.0 +25430,32,32,11,0.0 +25430,16,17.45,10,0.0 +25430,65,21.05,42,0.0 +25430,73,15,22,0.0 +25430,23,9,20,0.0 +25430,2,19,19,0.0 +25430,3,10,45,0.0 +25430,55,24,3,0.0 +25430,53,32.8,10,0.0 +25430,29,123.79,21,0.0 +25430,36,19,8,0.0 +25430,48,12.75,3,0.0 +25430,46,12,45,0.0 +25431,39,18,19,0.0 +25431,59,55,45,0.0 +25431,1,18,20,0.0 +25431,54,7.45,32,0.0 +25431,71,21.5,33,0.0 +25431,46,12,29,0.0 +25431,23,9,8,0.0 +25431,16,17.45,29,0.0 +25431,53,32.8,20,0.0 +25431,43,46,13,0.0 +25431,68,12.5,22,0.0 +25431,64,33.25,24,0.0 +25431,42,14,10,0.0 +25431,70,15,13,0.0 +25431,18,62.5,30,0.0 +25431,15,15.5,3,0.0 +25431,72,34.8,8,0.0 +25431,69,36,18,0.0 +25431,36,19,20,0.0 +25431,2,19,46,0.0 +25431,34,14,21,0.0 +25431,24,4.5,14,0.0 +25431,35,18,10,0.0 +25431,9,97,49,0.0 +25431,3,10,31,0.0 +25431,62,49.3,37,0.0 +25431,13,6,45,0.0 +25431,4,22,18,0.0 +25431,56,38,22,0.0 +25431,10,31,44,0.0 +25431,47,9.5,20,0.0 +25431,60,34,36,0.0 +25431,11,21,19,0.0 +25431,38,263.5,16,0.0 +25431,5,21.35,29,0.0 +25431,21,10,44,0.0 +25431,14,23.25,26,0.0 +25431,19,9.2,32,0.0 +25431,6,25,37,0.0 +25431,57,19.5,24,0.0 +25432,18,62.5,46,0.0 +25432,54,7.45,50,0.0 +25432,31,12.5,10,0.0 +25432,36,19,16,0.0 +25432,40,18.4,48,0.0 +25432,53,32.8,10,0.0 +25432,38,263.5,8,0.0 +25432,67,14,29,0.0 +25432,17,39,42,0.0 +25432,71,21.5,20,0.0 +25432,59,55,9,0.0 +25432,74,10,22,0.0 +25432,73,15,36,0.0 +25432,22,21,40,0.0 +25432,55,24,25,0.0 +25432,62,49.3,33,0.0 +25432,49,20,47,0.0 +25432,66,17,47,0.0 +25432,1,18,34,0.0 +25432,10,31,37,0.0 +25432,34,14,16,0.0 +25432,63,43.9,39,0.0 +25432,69,36,48,0.0 +25432,39,18,45,0.0 +25432,32,32,30,0.0 +25432,60,34,23,0.0 +25432,35,18,47,0.0 +25432,47,9.5,32,0.0 +25432,76,18,14,0.0 +25432,57,19.5,35,0.0 +25432,37,26,11,0.0 +25432,4,22,2,0.0 +25432,2,19,36,0.0 +25432,6,25,40,0.0 +25432,72,34.8,8,0.0 +25432,8,40,28,0.0 +25432,26,31.23,41,0.0 +25432,44,19.45,6,0.0 +25432,68,12.5,26,0.0 +25432,21,10,31,0.0 +25432,28,45.6,46,0.0 +25432,30,25.89,20,0.0 +25432,19,9.2,10,0.0 +25432,15,15.5,20,0.0 +25432,45,9.5,19,0.0 +25432,61,28.5,16,0.0 +25432,77,13,47,0.0 +25432,20,81,42,0.0 +25432,12,38,47,0.0 +25432,52,7,20,0.0 +25432,65,21.05,28,0.0 +25432,56,38,13,0.0 +25432,27,43.9,44,0.0 +25432,13,6,8,0.0 +25432,29,123.79,41,0.0 +25432,50,16.25,6,0.0 +25432,23,9,26,0.0 +25432,7,30,13,0.0 +25432,9,97,35,0.0 +25432,5,21.35,40,0.0 +25432,46,12,39,0.0 +25432,48,12.75,46,0.0 +25432,75,7.75,4,0.0 +25432,14,23.25,9,0.0 +25432,42,14,12,0.0 +25432,41,9.65,5,0.0 +25432,64,33.25,19,0.0 +25432,24,4.5,37,0.0 +25432,16,17.45,43,0.0 +25432,70,15,5,0.0 +25432,11,21,21,0.0 +25432,3,10,4,0.0 +25432,43,46,15,0.0 +25432,51,53,25,0.0 +25432,25,14,16,0.0 +25432,33,2.5,17,0.0 +25432,58,13.25,24,0.0 +25433,39,18,38,0.0 +25433,68,12.5,30,0.0 +25433,60,34,7,0.0 +25433,33,2.5,41,0.0 +25433,36,19,19,0.0 +25433,59,55,46,0.0 +25433,52,7,47,0.0 +25433,42,14,24,0.0 +25433,41,9.65,49,0.0 +25433,48,12.75,45,0.0 +25433,72,34.8,47,0.0 +25433,22,21,8,0.0 +25433,23,9,45,0.0 +25433,63,43.9,18,0.0 +25433,77,13,43,0.0 +25433,74,10,14,0.0 +25433,26,31.23,45,0.0 +25433,66,17,46,0.0 +25433,37,26,27,0.0 +25433,61,28.5,12,0.0 +25433,17,39,48,0.0 +25433,53,32.8,8,0.0 +25433,76,18,34,0.0 +25433,9,97,6,0.0 +25433,45,9.5,16,0.0 +25434,8,40,27,0.0 +25434,6,25,7,0.0 +25434,14,23.25,47,0.0 +25434,50,16.25,38,0.0 +25434,51,53,40,0.0 +25434,75,7.75,37,0.0 +25434,15,15.5,21,0.0 +25434,3,10,33,0.0 +25434,48,12.75,5,0.0 +25434,11,21,16,0.0 +25434,74,10,30,0.0 +25434,45,9.5,42,0.0 +25434,27,43.9,4,0.0 +25434,70,15,33,0.0 +25434,59,55,20,0.0 +25434,69,36,39,0.0 +25434,68,12.5,14,0.0 +25434,37,26,37,0.0 +25434,7,30,21,0.0 +25434,2,19,44,0.0 +25434,63,43.9,39,0.0 +25434,17,39,15,0.0 +25434,53,32.8,40,0.0 +25434,56,38,39,0.0 +25434,73,15,19,0.0 +25434,13,6,3,0.0 +25434,9,97,7,0.0 +25434,33,2.5,6,0.0 +25434,4,22,50,0.0 +25434,21,10,50,0.0 +25434,42,14,36,0.0 +25434,28,45.6,49,0.0 +25434,77,13,26,0.0 +25434,30,25.89,24,0.0 +25434,57,19.5,25,0.0 +25434,61,28.5,46,0.0 +25434,65,21.05,21,0.0 +25434,60,34,15,0.0 +25434,64,33.25,10,0.0 +25434,58,13.25,5,0.0 +25434,39,18,1,0.0 +25434,22,21,31,0.0 +25434,38,263.5,15,0.0 +25434,12,38,22,0.0 +25435,35,18,1,0.0 +25436,56,38,9,0.0 +25436,7,30,2,0.0 +25436,50,16.25,2,0.0 +25436,19,9.2,20,0.0 +25436,34,14,12,0.0 +25436,35,18,44,0.0 +25436,41,9.65,37,0.0 +25436,46,12,44,0.0 +25436,5,21.35,41,0.0 +25436,66,17,10,0.0 +25437,74,10,17,0.0 +25437,39,18,10,0.0 +25437,21,10,38,0.0 +25437,9,97,40,0.0 +25437,53,32.8,3,0.0 +25437,59,55,11,0.0 +25437,63,43.9,39,0.0 +25438,15,15.5,2,0.0 +25438,76,18,44,0.0 +25438,18,62.5,38,0.0 +25438,68,12.5,27,0.0 +25438,69,36,15,0.0 +25438,38,263.5,36,0.0 +25438,59,55,31,0.0 +25438,55,24,10,0.0 +25438,49,20,14,0.0 +25438,29,123.79,34,0.0 +25438,20,81,7,0.0 +25438,16,17.45,37,0.0 +25438,64,33.25,15,0.0 +25438,58,13.25,27,0.0 +25438,60,34,21,0.0 +25438,43,46,24,0.0 +25438,19,9.2,11,0.0 +25438,9,97,41,0.0 +25438,61,28.5,29,0.0 +25438,21,10,27,0.0 +25438,46,12,42,0.0 +25438,10,31,43,0.0 +25438,12,38,41,0.0 +25438,5,21.35,46,0.0 +25438,1,18,3,0.0 +25438,34,14,13,0.0 +25438,31,12.5,8,0.0 +25438,24,4.5,37,0.0 +25438,70,15,26,0.0 +25438,3,10,42,0.0 +25438,71,21.5,46,0.0 +25438,65,21.05,12,0.0 +25438,72,34.8,25,0.0 +25438,36,19,37,0.0 +25438,28,45.6,13,0.0 +25438,67,14,44,0.0 +25438,62,49.3,9,0.0 +25438,7,30,2,0.0 +25438,56,38,34,0.0 +25438,17,39,24,0.0 +25438,25,14,20,0.0 +25438,51,53,39,0.0 +25438,75,7.75,1,0.0 +25438,63,43.9,15,0.0 +25438,26,31.23,7,0.0 +25438,73,15,2,0.0 +25438,74,10,16,0.0 +25438,54,7.45,43,0.0 +25438,66,17,47,0.0 +25438,4,22,30,0.0 +25438,48,12.75,40,0.0 +25438,37,26,25,0.0 +25438,53,32.8,46,0.0 +25438,22,21,13,0.0 +25438,45,9.5,31,0.0 +25438,2,19,45,0.0 +25438,30,25.89,45,0.0 +25438,33,2.5,33,0.0 +25438,13,6,46,0.0 +25438,52,7,18,0.0 +25438,41,9.65,32,0.0 +25438,8,40,46,0.0 +25438,39,18,41,0.0 +25438,50,16.25,8,0.0 +25438,6,25,7,0.0 +25438,11,21,1,0.0 +25438,27,43.9,29,0.0 +25438,44,19.45,13,0.0 +25438,57,19.5,25,0.0 +25438,40,18.4,32,0.0 +25438,77,13,44,0.0 +25438,47,9.5,5,0.0 +25439,30,25.89,4,0.0 +25439,39,18,29,0.0 +25439,22,21,6,0.0 +25439,10,31,47,0.0 +25439,32,32,17,0.0 +25439,73,15,12,0.0 +25439,69,36,29,0.0 +25440,64,33.25,48,0.0 +25440,56,38,21,0.0 +25440,22,21,11,0.0 +25440,45,9.5,30,0.0 +25440,36,19,38,0.0 +25440,68,12.5,45,0.0 +25440,76,18,48,0.0 +25440,46,12,44,0.0 +25440,50,16.25,47,0.0 +25440,3,10,38,0.0 +25440,1,18,25,0.0 +25440,71,21.5,41,0.0 +25440,51,53,42,0.0 +25440,18,62.5,22,0.0 +25440,61,28.5,40,0.0 +25440,13,6,1,0.0 +25440,40,18.4,14,0.0 +25440,8,40,20,0.0 +25440,53,32.8,40,0.0 +25440,33,2.5,36,0.0 +25440,20,81,47,0.0 +25440,57,19.5,46,0.0 +25440,10,31,36,0.0 +25440,27,43.9,25,0.0 +25440,25,14,19,0.0 +25440,44,19.45,4,0.0 +25440,37,26,11,0.0 +25440,66,17,50,0.0 +25440,28,45.6,38,0.0 +25440,74,10,32,0.0 +25440,47,9.5,29,0.0 +25440,16,17.45,18,0.0 +25440,48,12.75,8,0.0 +25440,7,30,21,0.0 +25440,23,9,20,0.0 +25440,49,20,3,0.0 +25440,38,263.5,35,0.0 +25440,26,31.23,32,0.0 +25440,39,18,31,0.0 +25440,58,13.25,41,0.0 +25440,5,21.35,24,0.0 +25440,24,4.5,25,0.0 +25440,52,7,31,0.0 +25440,17,39,1,0.0 +25440,72,34.8,16,0.0 +25440,31,12.5,8,0.0 +25440,34,14,45,0.0 +25440,43,46,18,0.0 +25441,42,14,31,0.0 +25441,65,21.05,9,0.0 +25441,17,39,45,0.0 +25441,15,15.5,10,0.0 +25442,50,16.25,11,0.0 +25442,24,4.5,37,0.0 +25442,54,7.45,36,0.0 +25442,18,62.5,42,0.0 +25442,11,21,15,0.0 +25442,77,13,31,0.0 +25442,23,9,48,0.0 +25442,25,14,30,0.0 +25442,6,25,27,0.0 +25442,37,26,44,0.0 +25442,51,53,24,0.0 +25442,13,6,43,0.0 +25442,71,21.5,23,0.0 +25442,60,34,15,0.0 +25442,74,10,45,0.0 +25442,58,13.25,6,0.0 +25443,70,15,41,0.0 +25443,20,81,14,0.0 +25443,31,12.5,7,0.0 +25443,72,34.8,11,0.0 +25444,34,14,1,0.0 +25444,28,45.6,15,0.0 +25444,67,14,38,0.0 +25444,32,32,22,0.0 +25444,74,10,9,0.0 +25444,10,31,14,0.0 +25444,69,36,7,0.0 +25444,46,12,22,0.0 +25444,4,22,45,0.0 +25444,21,10,35,0.0 +25444,5,21.35,48,0.0 +25444,36,19,19,0.0 +25444,12,38,9,0.0 +25444,49,20,2,0.0 +25444,73,15,37,0.0 +25444,63,43.9,10,0.0 +25444,17,39,5,0.0 +25444,70,15,48,0.0 +25444,68,12.5,3,0.0 +25444,43,46,42,0.0 +25444,33,2.5,14,0.0 +25444,29,123.79,22,0.0 +25444,35,18,37,0.0 +25444,13,6,20,0.0 +25444,64,33.25,32,0.0 +25444,1,18,20,0.0 +25444,53,32.8,25,0.0 +25444,47,9.5,21,0.0 +25444,62,49.3,46,0.0 +25444,55,24,44,0.0 +25444,77,13,8,0.0 +25444,59,55,41,0.0 +25444,7,30,36,0.0 +25444,41,9.65,18,0.0 +25444,71,21.5,4,0.0 +25444,15,15.5,29,0.0 +25444,48,12.75,37,0.0 +25444,14,23.25,36,0.0 +25444,66,17,19,0.0 +25444,75,7.75,20,0.0 +25444,8,40,48,0.0 +25444,50,16.25,21,0.0 +25444,25,14,45,0.0 +25445,6,25,21,0.0 +25445,74,10,29,0.0 +25445,39,18,8,0.0 +25445,21,10,23,0.0 +25445,8,40,41,0.0 +25445,62,49.3,37,0.0 +25445,45,9.5,35,0.0 +25445,40,18.4,1,0.0 +25445,56,38,18,0.0 +25445,60,34,4,0.0 +25445,64,33.25,43,0.0 +25445,24,4.5,46,0.0 +25445,17,39,34,0.0 +25445,9,97,9,0.0 +25445,37,26,50,0.0 +25445,66,17,20,0.0 +25445,47,9.5,32,0.0 +25445,16,17.45,19,0.0 +25445,4,22,32,0.0 +25445,54,7.45,24,0.0 +25445,61,28.5,13,0.0 +25445,44,19.45,28,0.0 +25445,20,81,42,0.0 +25445,69,36,14,0.0 +25445,70,15,45,0.0 +25445,26,31.23,25,0.0 +25445,46,12,19,0.0 +25445,63,43.9,48,0.0 +25445,5,21.35,10,0.0 +25445,30,25.89,37,0.0 +25445,51,53,46,0.0 +25445,15,15.5,15,0.0 +25445,42,14,34,0.0 +25445,33,2.5,28,0.0 +25445,49,20,16,0.0 +25445,32,32,47,0.0 +25445,18,62.5,33,0.0 +25445,76,18,20,0.0 +25445,48,12.75,30,0.0 +25445,28,45.6,38,0.0 +25445,71,21.5,43,0.0 +25445,29,123.79,45,0.0 +25445,55,24,11,0.0 +25445,72,34.8,38,0.0 +25445,7,30,40,0.0 +25446,50,16.25,37,0.0 +25446,4,22,39,0.0 +25446,19,9.2,17,0.0 +25446,5,21.35,1,0.0 +25446,67,14,29,0.0 +25446,74,10,24,0.0 +25446,70,15,48,0.0 +25446,36,19,1,0.0 +25446,63,43.9,16,0.0 +25446,64,33.25,36,0.0 +25446,28,45.6,16,0.0 +25446,41,9.65,39,0.0 +25446,32,32,32,0.0 +25446,62,49.3,34,0.0 +25446,27,43.9,15,0.0 +25446,46,12,16,0.0 +25446,39,18,12,0.0 +25446,53,32.8,19,0.0 +25446,25,14,17,0.0 +25446,69,36,38,0.0 +25446,34,14,36,0.0 +25446,6,25,31,0.0 +25446,7,30,26,0.0 +25446,47,9.5,43,0.0 +25446,38,263.5,7,0.0 +25446,33,2.5,23,0.0 +25446,66,17,37,0.0 +25446,75,7.75,40,0.0 +25446,35,18,9,0.0 +25446,52,7,35,0.0 +25446,48,12.75,11,0.0 +25446,12,38,43,0.0 +25446,30,25.89,43,0.0 +25446,37,26,7,0.0 +25446,42,14,15,0.0 +25446,23,9,4,0.0 +25446,26,31.23,46,0.0 +25446,17,39,14,0.0 +25446,57,19.5,45,0.0 +25446,76,18,32,0.0 +25446,3,10,25,0.0 +25446,51,53,15,0.0 +25446,31,12.5,48,0.0 +25446,22,21,37,0.0 +25446,65,21.05,20,0.0 +25446,73,15,1,0.0 +25446,1,18,45,0.0 +25446,10,31,47,0.0 +25446,72,34.8,48,0.0 +25446,49,20,32,0.0 +25446,24,4.5,41,0.0 +25446,54,7.45,17,0.0 +25446,2,19,33,0.0 +25446,61,28.5,42,0.0 +25446,9,97,12,0.0 +25446,14,23.25,10,0.0 +25446,13,6,46,0.0 +25447,33,2.5,39,0.0 +25447,37,26,37,0.0 +25447,38,263.5,17,0.0 +25447,71,21.5,15,0.0 +25447,74,10,28,0.0 +25447,19,9.2,34,0.0 +25447,34,14,21,0.0 +25447,31,12.5,19,0.0 +25447,54,7.45,38,0.0 +25447,57,19.5,11,0.0 +25447,72,34.8,1,0.0 +25447,21,10,8,0.0 +25447,53,32.8,48,0.0 +25447,60,34,12,0.0 +25447,7,30,50,0.0 +25447,40,18.4,25,0.0 +25447,75,7.75,17,0.0 +25447,28,45.6,50,0.0 +25447,9,97,11,0.0 +25447,50,16.25,44,0.0 +25447,8,40,34,0.0 +25447,56,38,7,0.0 +25447,44,19.45,32,0.0 +25447,55,24,15,0.0 +25447,39,18,48,0.0 +25448,55,24,44,0.0 +25448,66,17,15,0.0 +25448,71,21.5,49,0.0 +25448,35,18,46,0.0 +25448,59,55,10,0.0 +25448,4,22,16,0.0 +25448,18,62.5,40,0.0 +25448,10,31,35,0.0 +25448,26,31.23,25,0.0 +25448,2,19,22,0.0 +25448,28,45.6,34,0.0 +25448,52,7,5,0.0 +25448,69,36,19,0.0 +25448,65,21.05,32,0.0 +25448,39,18,35,0.0 +25448,58,13.25,42,0.0 +25448,29,123.79,30,0.0 +25448,51,53,32,0.0 +25448,44,19.45,43,0.0 +25448,41,9.65,42,0.0 +25448,48,12.75,17,0.0 +25448,46,12,46,0.0 +25448,21,10,6,0.0 +25448,32,32,41,0.0 +25448,24,4.5,41,0.0 +25448,62,49.3,22,0.0 +25448,19,9.2,27,0.0 +25448,73,15,24,0.0 +25448,42,14,40,0.0 +25448,17,39,39,0.0 +25448,20,81,29,0.0 +25448,34,14,3,0.0 +25448,75,7.75,45,0.0 +25448,47,9.5,23,0.0 +25448,45,9.5,46,0.0 +25448,16,17.45,12,0.0 +25448,38,263.5,44,0.0 +25448,13,6,16,0.0 +25448,15,15.5,8,0.0 +25448,11,21,24,0.0 +25448,70,15,21,0.0 +25448,43,46,7,0.0 +25448,5,21.35,11,0.0 +25448,50,16.25,11,0.0 +25448,23,9,8,0.0 +25448,8,40,16,0.0 +25448,27,43.9,5,0.0 +25448,68,12.5,22,0.0 +25448,31,12.5,16,0.0 +25448,60,34,41,0.0 +25449,26,31.23,48,0.0 +25449,76,18,35,0.0 +25449,58,13.25,13,0.0 +25449,25,14,37,0.0 +25449,24,4.5,9,0.0 +25449,37,26,49,0.0 +25449,48,12.75,13,0.0 +25449,52,7,12,0.0 +25449,8,40,1,0.0 +25449,49,20,43,0.0 +25449,77,13,42,0.0 +25449,6,25,44,0.0 +25449,28,45.6,6,0.0 +25449,29,123.79,25,0.0 +25449,31,12.5,48,0.0 +25449,27,43.9,29,0.0 +25449,10,31,22,0.0 +25449,19,9.2,8,0.0 +25449,14,23.25,18,0.0 +25449,39,18,3,0.0 +25449,18,62.5,46,0.0 +25449,11,21,11,0.0 +25449,23,9,8,0.0 +25449,73,15,1,0.0 +25449,38,263.5,37,0.0 +25449,62,49.3,9,0.0 +25449,50,16.25,38,0.0 +25449,3,10,40,0.0 +25449,4,22,44,0.0 +25449,63,43.9,49,0.0 +25449,43,46,46,0.0 +25450,3,10,23,0.0 +25450,67,14,33,0.0 +25450,55,24,34,0.0 +25450,45,9.5,29,0.0 +25450,52,7,31,0.0 +25450,54,7.45,33,0.0 +25450,1,18,39,0.0 +25450,15,15.5,7,0.0 +25450,58,13.25,14,0.0 +25450,35,18,46,0.0 +25450,65,21.05,37,0.0 +25450,5,21.35,1,0.0 +25450,30,25.89,38,0.0 +25450,19,9.2,13,0.0 +25450,28,45.6,14,0.0 +25450,21,10,47,0.0 +25450,10,31,20,0.0 +25450,68,12.5,14,0.0 +25450,40,18.4,45,0.0 +25450,51,53,11,0.0 +25450,16,17.45,49,0.0 +25450,41,9.65,10,0.0 +25450,72,34.8,48,0.0 +25450,2,19,26,0.0 +25450,6,25,37,0.0 +25451,73,15,44,0.0 +25451,77,13,20,0.0 +25451,21,10,23,0.0 +25451,34,14,19,0.0 +25451,43,46,7,0.0 +25451,67,14,27,0.0 +25451,1,18,29,0.0 +25451,4,22,40,0.0 +25451,32,32,31,0.0 +25451,42,14,3,0.0 +25451,56,38,27,0.0 +25451,59,55,48,0.0 +25451,26,31.23,50,0.0 +25451,31,12.5,17,0.0 +25451,25,14,2,0.0 +25451,16,17.45,29,0.0 +25451,38,263.5,48,0.0 +25451,5,21.35,48,0.0 +25451,2,19,29,0.0 +25451,70,15,22,0.0 +25451,11,21,19,0.0 +25451,61,28.5,33,0.0 +25451,13,6,4,0.0 +25451,14,23.25,46,0.0 +25451,46,12,44,0.0 +25451,28,45.6,16,0.0 +25451,71,21.5,46,0.0 +25451,18,62.5,21,0.0 +25451,49,20,8,0.0 +25451,64,33.25,24,0.0 +25451,6,25,49,0.0 +25452,46,12,48,0.0 +25452,74,10,17,0.0 +25452,13,6,5,0.0 +25452,12,38,5,0.0 +25452,72,34.8,14,0.0 +25452,66,17,43,0.0 +25452,59,55,35,0.0 +25452,28,45.6,2,0.0 +25452,64,33.25,1,0.0 +25452,27,43.9,33,0.0 +25452,40,18.4,48,0.0 +25452,39,18,37,0.0 +25452,3,10,33,0.0 +25452,47,9.5,12,0.0 +25452,33,2.5,28,0.0 +25452,56,38,29,0.0 +25452,76,18,39,0.0 +25452,53,32.8,50,0.0 +25452,8,40,10,0.0 +25452,25,14,44,0.0 +25452,19,9.2,35,0.0 +25452,14,23.25,28,0.0 +25452,58,13.25,25,0.0 +25452,22,21,5,0.0 +25452,4,22,3,0.0 +25452,60,34,15,0.0 +25452,29,123.79,12,0.0 +25452,6,25,15,0.0 +25452,77,13,7,0.0 +25452,15,15.5,30,0.0 +25452,65,21.05,49,0.0 +25452,7,30,7,0.0 +25452,9,97,1,0.0 +25452,62,49.3,37,0.0 +25452,38,263.5,43,0.0 +25452,50,16.25,42,0.0 +25452,16,17.45,16,0.0 +25452,35,18,12,0.0 +25452,10,31,2,0.0 +25452,32,32,41,0.0 +25452,11,21,44,0.0 +25452,68,12.5,36,0.0 +25452,48,12.75,32,0.0 +25452,61,28.5,38,0.0 +25452,44,19.45,43,0.0 +25452,21,10,31,0.0 +25452,52,7,43,0.0 +25452,51,53,50,0.0 +25452,75,7.75,10,0.0 +25452,45,9.5,3,0.0 +25453,74,10,17,0.0 +25453,58,13.25,8,0.0 +25453,9,97,48,0.0 +25453,31,12.5,17,0.0 +25453,26,31.23,24,0.0 +25453,48,12.75,23,0.0 +25453,19,9.2,28,0.0 +25453,73,15,27,0.0 +25453,7,30,18,0.0 +25453,70,15,49,0.0 +25453,46,12,23,0.0 +25453,61,28.5,47,0.0 +25453,15,15.5,46,0.0 +25453,37,26,39,0.0 +25453,54,7.45,7,0.0 +25453,68,12.5,4,0.0 +25453,17,39,17,0.0 +25453,2,19,14,0.0 +25453,14,23.25,14,0.0 +25453,43,46,4,0.0 +25453,30,25.89,44,0.0 +25453,35,18,39,0.0 +25453,32,32,47,0.0 +25453,13,6,27,0.0 +25453,42,14,5,0.0 +25453,23,9,24,0.0 +25453,34,14,27,0.0 +25453,24,4.5,47,0.0 +25453,40,18.4,43,0.0 +25453,10,31,40,0.0 +25453,11,21,6,0.0 +25453,29,123.79,17,0.0 +25453,27,43.9,15,0.0 +25453,59,55,44,0.0 +25453,38,263.5,21,0.0 +25453,22,21,13,0.0 +25453,53,32.8,2,0.0 +25453,1,18,7,0.0 +25453,8,40,27,0.0 +25453,16,17.45,39,0.0 +25453,50,16.25,12,0.0 +25453,12,38,22,0.0 +25453,62,49.3,12,0.0 +25453,52,7,12,0.0 +25453,41,9.65,49,0.0 +25454,46,12,48,0.0 +25454,59,55,31,0.0 +25454,41,9.65,16,0.0 +25454,16,17.45,4,0.0 +25454,61,28.5,43,0.0 +25454,73,15,30,0.0 +25454,25,14,4,0.0 +25454,45,9.5,45,0.0 +25454,44,19.45,1,0.0 +25454,8,40,12,0.0 +25454,42,14,41,0.0 +25454,31,12.5,18,0.0 +25454,5,21.35,49,0.0 +25454,68,12.5,26,0.0 +25454,51,53,28,0.0 +25454,11,21,41,0.0 +25454,32,32,20,0.0 +25454,10,31,42,0.0 +25454,77,13,30,0.0 +25454,37,26,36,0.0 +25454,72,34.8,17,0.0 +25454,6,25,48,0.0 +25454,39,18,35,0.0 +25454,76,18,16,0.0 +25454,40,18.4,5,0.0 +25454,12,38,20,0.0 +25454,71,21.5,33,0.0 +25454,9,97,22,0.0 +25454,7,30,41,0.0 +25454,66,17,21,0.0 +25454,48,12.75,2,0.0 +25454,30,25.89,10,0.0 +25454,47,9.5,16,0.0 +25454,67,14,10,0.0 +25454,17,39,9,0.0 +25454,27,43.9,35,0.0 +25454,2,19,44,0.0 +25454,15,15.5,47,0.0 +25454,54,7.45,1,0.0 +25454,26,31.23,23,0.0 +25454,52,7,22,0.0 +25454,53,32.8,39,0.0 +25454,22,21,41,0.0 +25454,70,15,7,0.0 +25454,1,18,26,0.0 +25454,36,19,29,0.0 +25454,64,33.25,23,0.0 +25454,3,10,6,0.0 +25454,33,2.5,11,0.0 +25454,29,123.79,6,0.0 +25454,34,14,12,0.0 +25454,38,263.5,24,0.0 +25454,35,18,21,0.0 +25454,63,43.9,9,0.0 +25454,4,22,47,0.0 +25454,43,46,26,0.0 +25454,49,20,9,0.0 +25454,75,7.75,41,0.0 +25454,13,6,3,0.0 +25455,1,18,1,0.0 +25455,61,28.5,43,0.0 +25455,5,21.35,12,0.0 +25455,10,31,37,0.0 +25455,54,7.45,4,0.0 +25455,36,19,9,0.0 +25455,8,40,21,0.0 +25455,42,14,7,0.0 +25455,39,18,30,0.0 +25455,46,12,13,0.0 +25455,52,7,19,0.0 +25455,44,19.45,46,0.0 +25455,37,26,49,0.0 +25455,55,24,41,0.0 +25455,64,33.25,30,0.0 +25455,26,31.23,39,0.0 +25455,47,9.5,31,0.0 +25455,57,19.5,35,0.0 +25455,41,9.65,9,0.0 +25455,51,53,47,0.0 +25455,69,36,38,0.0 +25456,68,12.5,29,0.0 +25456,7,30,37,0.0 +25456,12,38,4,0.0 +25456,19,9.2,14,0.0 +25456,24,4.5,27,0.0 +25456,29,123.79,47,0.0 +25456,72,34.8,26,0.0 +25456,43,46,23,0.0 +25456,48,12.75,35,0.0 +25456,26,31.23,4,0.0 +25456,14,23.25,13,0.0 +25456,4,22,44,0.0 +25456,10,31,1,0.0 +25456,44,19.45,33,0.0 +25456,67,14,19,0.0 +25456,27,43.9,45,0.0 +25456,49,20,3,0.0 +25456,5,21.35,37,0.0 +25456,50,16.25,9,0.0 +25456,9,97,46,0.0 +25456,64,33.25,1,0.0 +25456,3,10,34,0.0 +25456,33,2.5,34,0.0 +25456,39,18,30,0.0 +25456,8,40,40,0.0 +25456,51,53,41,0.0 +25456,15,15.5,38,0.0 +25456,47,9.5,27,0.0 +25456,71,21.5,8,0.0 +25456,69,36,43,0.0 +25456,58,13.25,45,0.0 +25456,31,12.5,21,0.0 +25456,1,18,27,0.0 +25456,65,21.05,4,0.0 +25456,55,24,26,0.0 +25456,37,26,31,0.0 +25456,52,7,40,0.0 +25456,45,9.5,39,0.0 +25456,53,32.8,22,0.0 +25456,63,43.9,23,0.0 +25456,28,45.6,15,0.0 +25456,74,10,29,0.0 +25456,75,7.75,1,0.0 +25456,22,21,19,0.0 +25456,73,15,15,0.0 +25456,62,49.3,14,0.0 +25456,25,14,18,0.0 +25456,30,25.89,27,0.0 +25456,46,12,14,0.0 +25456,17,39,45,0.0 +25456,66,17,35,0.0 +25456,56,38,4,0.0 +25456,76,18,19,0.0 +25457,8,40,50,0.0 +25458,77,13,31,0.0 +25458,35,18,18,0.0 +25458,52,7,25,0.0 +25458,59,55,24,0.0 +25458,11,21,5,0.0 +25458,41,9.65,20,0.0 +25458,37,26,18,0.0 +25458,34,14,44,0.0 +25458,74,10,39,0.0 +25458,8,40,17,0.0 +25458,46,12,31,0.0 +25458,3,10,49,0.0 +25458,48,12.75,6,0.0 +25458,23,9,10,0.0 +25458,49,20,7,0.0 +25458,50,16.25,31,0.0 +25458,54,7.45,49,0.0 +25458,53,32.8,27,0.0 +25458,32,32,5,0.0 +25458,67,14,20,0.0 +25458,26,31.23,22,0.0 +25458,65,21.05,35,0.0 +25458,12,38,20,0.0 +25458,47,9.5,25,0.0 +25458,33,2.5,8,0.0 +25458,69,36,45,0.0 +25458,45,9.5,16,0.0 +25458,1,18,5,0.0 +25458,2,19,18,0.0 +25458,21,10,13,0.0 +25458,22,21,45,0.0 +25458,61,28.5,45,0.0 +25458,58,13.25,31,0.0 +25458,30,25.89,46,0.0 +25458,17,39,19,0.0 +25458,19,9.2,18,0.0 +25458,72,34.8,18,0.0 +25458,44,19.45,20,0.0 +25458,25,14,4,0.0 +25458,55,24,5,0.0 +25458,71,21.5,3,0.0 +25458,57,19.5,11,0.0 +25458,16,17.45,13,0.0 +25458,31,12.5,29,0.0 +25458,63,43.9,9,0.0 +25459,75,7.75,29,0.0 +25459,55,24,7,0.0 +25459,11,21,26,0.0 +25459,76,18,3,0.0 +25459,44,19.45,28,0.0 +25459,29,123.79,17,0.0 +25459,49,20,6,0.0 +25459,61,28.5,47,0.0 +25459,68,12.5,8,0.0 +25459,12,38,5,0.0 +25459,16,17.45,9,0.0 +25459,47,9.5,31,0.0 +25459,32,32,13,0.0 +25459,48,12.75,10,0.0 +25459,70,15,35,0.0 +25460,19,9.2,2,0.0 +25460,15,15.5,22,0.0 +25460,4,22,50,0.0 +25460,28,45.6,20,0.0 +25460,41,9.65,6,0.0 +25460,54,7.45,21,0.0 +25460,31,12.5,15,0.0 +25460,55,24,8,0.0 +25460,11,21,22,0.0 +25460,12,38,44,0.0 +25460,74,10,23,0.0 +25460,8,40,21,0.0 +25460,37,26,30,0.0 +25460,9,97,32,0.0 +25460,27,43.9,30,0.0 +25460,51,53,47,0.0 +25460,77,13,37,0.0 +25460,32,32,9,0.0 +25460,72,34.8,45,0.0 +25460,46,12,29,0.0 +25460,70,15,37,0.0 +25461,74,10,7,0.0 +25461,5,21.35,34,0.0 +25461,47,9.5,2,0.0 +25461,45,9.5,13,0.0 +25461,21,10,50,0.0 +25461,20,81,25,0.0 +25461,23,9,43,0.0 +25461,51,53,6,0.0 +25461,64,33.25,7,0.0 +25461,39,18,10,0.0 +25461,1,18,21,0.0 +25461,36,19,24,0.0 +25461,58,13.25,29,0.0 +25461,75,7.75,48,0.0 +25461,59,55,9,0.0 +25461,34,14,6,0.0 +25461,57,19.5,12,0.0 +25461,56,38,43,0.0 +25461,27,43.9,30,0.0 +25461,32,32,21,0.0 +25461,61,28.5,45,0.0 +25461,24,4.5,15,0.0 +25462,28,45.6,32,0.0 +25462,48,12.75,21,0.0 +25462,61,28.5,37,0.0 +25462,42,14,13,0.0 +25462,56,38,22,0.0 +25462,75,7.75,43,0.0 +25462,45,9.5,6,0.0 +25462,34,14,4,0.0 +25462,37,26,8,0.0 +25462,53,32.8,35,0.0 +25462,4,22,33,0.0 +25462,50,16.25,40,0.0 +25462,29,123.79,45,0.0 +25462,55,24,20,0.0 +25462,39,18,31,0.0 +25462,8,40,40,0.0 +25462,57,19.5,4,0.0 +25462,66,17,37,0.0 +25462,10,31,1,0.0 +25462,76,18,9,0.0 +25462,24,4.5,13,0.0 +25462,68,12.5,43,0.0 +25462,46,12,40,0.0 +25462,3,10,10,0.0 +25462,49,20,9,0.0 +25463,65,21.05,42,0.0 +25463,20,81,12,0.0 +25463,29,123.79,26,0.0 +25463,11,21,7,0.0 +25463,39,18,19,0.0 +25463,58,13.25,37,0.0 +25463,56,38,21,0.0 +25463,48,12.75,43,0.0 +25463,62,49.3,15,0.0 +25463,35,18,19,0.0 +25463,36,19,30,0.0 +25463,66,17,48,0.0 +25463,14,23.25,45,0.0 +25463,63,43.9,36,0.0 +25463,33,2.5,14,0.0 +25463,40,18.4,11,0.0 +25463,7,30,27,0.0 +25463,57,19.5,5,0.0 +25463,28,45.6,9,0.0 +25463,2,19,34,0.0 +25463,10,31,21,0.0 +25463,37,26,40,0.0 +25463,61,28.5,48,0.0 +25463,45,9.5,24,0.0 +25463,1,18,47,0.0 +25463,73,15,36,0.0 +25463,54,7.45,17,0.0 +25463,53,32.8,16,0.0 +25463,13,6,44,0.0 +25463,31,12.5,25,0.0 +25463,8,40,8,0.0 +25463,71,21.5,16,0.0 +25463,69,36,1,0.0 +25463,9,97,1,0.0 +25463,5,21.35,3,0.0 +25463,25,14,3,0.0 +25463,52,7,37,0.0 +25463,49,20,20,0.0 +25463,72,34.8,21,0.0 +25464,71,21.5,17,0.0 +25464,75,7.75,8,0.0 +25464,27,43.9,17,0.0 +25464,9,97,48,0.0 +25464,63,43.9,48,0.0 +25464,76,18,1,0.0 +25464,11,21,29,0.0 +25464,62,49.3,50,0.0 +25464,29,123.79,48,0.0 +25464,70,15,11,0.0 +25464,21,10,13,0.0 +25464,42,14,43,0.0 +25464,50,16.25,18,0.0 +25464,47,9.5,46,0.0 +25464,65,21.05,16,0.0 +25464,34,14,48,0.0 +25464,69,36,28,0.0 +25465,39,18,23,0.0 +25465,1,18,5,0.0 +25465,71,21.5,2,0.0 +25465,37,26,45,0.0 +25465,29,123.79,29,0.0 +25465,57,19.5,18,0.0 +25465,75,7.75,21,0.0 +25465,35,18,6,0.0 +25465,22,21,48,0.0 +25465,70,15,1,0.0 +25465,20,81,38,0.0 +25465,19,9.2,20,0.0 +25465,66,17,21,0.0 +25465,4,22,8,0.0 +25465,33,2.5,44,0.0 +25465,30,25.89,12,0.0 +25465,16,17.45,40,0.0 +25465,8,40,23,0.0 +25465,56,38,1,0.0 +25465,44,19.45,31,0.0 +25465,46,12,28,0.0 +25465,68,12.5,17,0.0 +25465,36,19,19,0.0 +25465,18,62.5,41,0.0 +25465,47,9.5,37,0.0 +25465,2,19,7,0.0 +25465,6,25,13,0.0 +25465,15,15.5,22,0.0 +25465,17,39,48,0.0 +25465,11,21,14,0.0 +25465,59,55,7,0.0 +25465,64,33.25,38,0.0 +25465,5,21.35,47,0.0 +25465,26,31.23,20,0.0 +25466,21,10,41,0.0 +25466,37,26,43,0.0 +25466,8,40,23,0.0 +25466,53,32.8,16,0.0 +25466,17,39,23,0.0 +25466,16,17.45,28,0.0 +25466,6,25,18,0.0 +25466,76,18,11,0.0 +25466,28,45.6,23,0.0 +25466,70,15,48,0.0 +25466,34,14,20,0.0 +25466,57,19.5,46,0.0 +25466,2,19,37,0.0 +25466,10,31,42,0.0 +25466,36,19,23,0.0 +25466,62,49.3,44,0.0 +25466,51,53,27,0.0 +25466,55,24,12,0.0 +25466,20,81,8,0.0 +25466,40,18.4,32,0.0 +25466,65,21.05,44,0.0 +25467,61,28.5,24,0.0 +25467,33,2.5,37,0.0 +25467,23,9,21,0.0 +25467,60,34,22,0.0 +25467,66,17,18,0.0 +25467,35,18,47,0.0 +25467,52,7,38,0.0 +25467,13,6,34,0.0 +25467,51,53,47,0.0 +25467,17,39,8,0.0 +25467,67,14,40,0.0 +25467,47,9.5,42,0.0 +25467,14,23.25,17,0.0 +25467,32,32,34,0.0 +25467,16,17.45,4,0.0 +25467,70,15,45,0.0 +25467,36,19,34,0.0 +25467,45,9.5,13,0.0 +25467,56,38,10,0.0 +25467,19,9.2,28,0.0 +25467,42,14,33,0.0 +25467,48,12.75,41,0.0 +25467,30,25.89,24,0.0 +25467,72,34.8,15,0.0 +25467,22,21,27,0.0 +25467,50,16.25,11,0.0 +25467,55,24,45,0.0 +25467,20,81,34,0.0 +25467,28,45.6,6,0.0 +25467,8,40,9,0.0 +25467,65,21.05,16,0.0 +25467,15,15.5,43,0.0 +25467,44,19.45,43,0.0 +25467,59,55,2,0.0 +25467,31,12.5,34,0.0 +25467,69,36,1,0.0 +25467,10,31,48,0.0 +25467,62,49.3,21,0.0 +25467,49,20,33,0.0 +25467,29,123.79,49,0.0 +25467,43,46,1,0.0 +25467,40,18.4,36,0.0 +25467,64,33.25,34,0.0 +25467,2,19,33,0.0 +25468,21,10,41,0.0 +25468,30,25.89,16,0.0 +25468,42,14,30,0.0 +25468,71,21.5,9,0.0 +25468,35,18,18,0.0 +25468,26,31.23,10,0.0 +25468,6,25,35,0.0 +25468,36,19,18,0.0 +25468,13,6,20,0.0 +25468,75,7.75,11,0.0 +25468,8,40,43,0.0 +25468,18,62.5,20,0.0 +25468,2,19,25,0.0 +25468,41,9.65,31,0.0 +25468,28,45.6,10,0.0 +25468,74,10,12,0.0 +25468,3,10,10,0.0 +25468,31,12.5,30,0.0 +25468,50,16.25,3,0.0 +25468,10,31,35,0.0 +25468,68,12.5,19,0.0 +25468,60,34,35,0.0 +25468,7,30,29,0.0 +25468,67,14,29,0.0 +25468,43,46,11,0.0 +25468,5,21.35,23,0.0 +25468,65,21.05,3,0.0 +25468,73,15,47,0.0 +25468,23,9,18,0.0 +25468,59,55,14,0.0 +25468,47,9.5,25,0.0 +25469,29,123.79,8,0.0 +25469,3,10,3,0.0 +25469,52,7,45,0.0 +25469,33,2.5,12,0.0 +25469,57,19.5,26,0.0 +25469,13,6,3,0.0 +25469,71,21.5,36,0.0 +25469,22,21,17,0.0 +25469,68,12.5,49,0.0 +25469,10,31,7,0.0 +25469,59,55,10,0.0 +25469,12,38,36,0.0 +25469,45,9.5,18,0.0 +25469,49,20,35,0.0 +25469,34,14,2,0.0 +25469,72,34.8,5,0.0 +25469,47,9.5,1,0.0 +25469,41,9.65,41,0.0 +25469,64,33.25,50,0.0 +25469,30,25.89,32,0.0 +25469,70,15,40,0.0 +25469,35,18,40,0.0 +25469,7,30,21,0.0 +25469,14,23.25,19,0.0 +25469,6,25,1,0.0 +25469,50,16.25,14,0.0 +25469,15,15.5,40,0.0 +25469,18,62.5,36,0.0 +25469,26,31.23,50,0.0 +25469,58,13.25,23,0.0 +25469,76,18,2,0.0 +25469,54,7.45,38,0.0 +25469,9,97,44,0.0 +25469,17,39,1,0.0 +25469,69,36,17,0.0 +25469,55,24,15,0.0 +25469,24,4.5,25,0.0 +25469,4,22,37,0.0 +25469,73,15,18,0.0 +25469,16,17.45,41,0.0 +25469,56,38,36,0.0 +25469,1,18,25,0.0 +25469,25,14,47,0.0 +25469,63,43.9,39,0.0 +25469,67,14,48,0.0 +25469,77,13,18,0.0 +25469,27,43.9,28,0.0 +25469,53,32.8,42,0.0 +25469,48,12.75,37,0.0 +25469,32,32,4,0.0 +25469,65,21.05,22,0.0 +25469,46,12,42,0.0 +25469,61,28.5,37,0.0 +25469,43,46,34,0.0 +25469,2,19,29,0.0 +25469,66,17,46,0.0 +25470,14,23.25,12,0.0 +25470,20,81,2,0.0 +25470,51,53,30,0.0 +25470,70,15,40,0.0 +25470,4,22,2,0.0 +25470,29,123.79,34,0.0 +25470,75,7.75,37,0.0 +25470,21,10,1,0.0 +25470,3,10,6,0.0 +25470,60,34,47,0.0 +25470,24,4.5,31,0.0 +25470,39,18,18,0.0 +25470,40,18.4,48,0.0 +25470,30,25.89,24,0.0 +25470,11,21,45,0.0 +25470,47,9.5,39,0.0 +25470,50,16.25,16,0.0 +25470,26,31.23,39,0.0 +25470,6,25,36,0.0 +25470,13,6,33,0.0 +25470,45,9.5,12,0.0 +25470,65,21.05,49,0.0 +25470,17,39,46,0.0 +25470,48,12.75,22,0.0 +25470,53,32.8,41,0.0 +25470,25,14,6,0.0 +25470,59,55,37,0.0 +25470,57,19.5,30,0.0 +25470,73,15,16,0.0 +25470,54,7.45,31,0.0 +25470,46,12,33,0.0 +25470,42,14,17,0.0 +25470,9,97,18,0.0 +25470,66,17,34,0.0 +25470,74,10,20,0.0 +25470,8,40,20,0.0 +25470,55,24,14,0.0 +25470,10,31,19,0.0 +25470,38,263.5,39,0.0 +25470,18,62.5,1,0.0 +25470,23,9,9,0.0 +25470,27,43.9,34,0.0 +25470,5,21.35,45,0.0 +25470,36,19,2,0.0 +25470,67,14,46,0.0 +25470,63,43.9,8,0.0 +25470,31,12.5,5,0.0 +25471,24,4.5,46,0.0 +25471,13,6,47,0.0 +25471,19,9.2,29,0.0 +25471,70,15,2,0.0 +25471,74,10,11,0.0 +25471,47,9.5,34,0.0 +25471,73,15,20,0.0 +25471,44,19.45,37,0.0 +25471,69,36,19,0.0 +25471,29,123.79,16,0.0 +25471,61,28.5,15,0.0 +25471,51,53,30,0.0 +25471,25,14,28,0.0 +25471,5,21.35,2,0.0 +25471,72,34.8,23,0.0 +25471,68,12.5,30,0.0 +25471,53,32.8,13,0.0 +25471,40,18.4,4,0.0 +25471,55,24,28,0.0 +25471,65,21.05,16,0.0 +25471,52,7,32,0.0 +25471,8,40,42,0.0 +25471,38,263.5,36,0.0 +25471,34,14,34,0.0 +25471,46,12,41,0.0 +25471,23,9,43,0.0 +25471,16,17.45,43,0.0 +25471,12,38,13,0.0 +25471,37,26,42,0.0 +25471,56,38,28,0.0 +25471,31,12.5,19,0.0 +25471,35,18,40,0.0 +25471,26,31.23,49,0.0 +25471,50,16.25,48,0.0 +25471,11,21,21,0.0 +25471,60,34,28,0.0 +25471,77,13,50,0.0 +25471,17,39,15,0.0 +25472,31,12.5,45,0.0 +25472,6,25,3,0.0 +25472,42,14,35,0.0 +25472,44,19.45,28,0.0 +25472,43,46,40,0.0 +25472,2,19,15,0.0 +25473,68,12.5,7,0.0 +25473,37,26,47,0.0 +25473,67,14,13,0.0 +25473,1,18,41,0.0 +25473,59,55,18,0.0 +25473,62,49.3,20,0.0 +25473,42,14,18,0.0 +25473,23,9,28,0.0 +25473,21,10,23,0.0 +25473,71,21.5,37,0.0 +25473,66,17,9,0.0 +25473,6,25,15,0.0 +25473,60,34,37,0.0 +25473,13,6,16,0.0 +25473,73,15,4,0.0 +25473,69,36,26,0.0 +25473,58,13.25,44,0.0 +25473,64,33.25,25,0.0 +25473,54,7.45,8,0.0 +25473,44,19.45,6,0.0 +25473,56,38,37,0.0 +25473,36,19,17,0.0 +25473,34,14,48,0.0 +25473,57,19.5,24,0.0 +25473,28,45.6,14,0.0 +25474,6,25,47,0.0 +25474,47,9.5,50,0.0 +25474,70,15,33,0.0 +25474,30,25.89,30,0.0 +25474,72,34.8,26,0.0 +25474,56,38,48,0.0 +25474,13,6,21,0.0 +25474,42,14,1,0.0 +25474,35,18,37,0.0 +25474,45,9.5,5,0.0 +25474,65,21.05,18,0.0 +25474,37,26,25,0.0 +25474,28,45.6,20,0.0 +25474,16,17.45,11,0.0 +25474,60,34,38,0.0 +25474,26,31.23,34,0.0 +25474,51,53,47,0.0 +25474,38,263.5,19,0.0 +25474,61,28.5,29,0.0 +25474,53,32.8,8,0.0 +25474,17,39,34,0.0 +25474,2,19,18,0.0 +25474,25,14,12,0.0 +25474,52,7,22,0.0 +25474,15,15.5,45,0.0 +25474,12,38,36,0.0 +25474,68,12.5,27,0.0 +25474,22,21,11,0.0 +25474,71,21.5,10,0.0 +25474,62,49.3,8,0.0 +25474,7,30,43,0.0 +25474,44,19.45,1,0.0 +25474,14,23.25,41,0.0 +25474,76,18,6,0.0 +25474,3,10,2,0.0 +25474,41,9.65,11,0.0 +25474,29,123.79,23,0.0 +25474,23,9,14,0.0 +25474,49,20,34,0.0 +25474,10,31,3,0.0 +25474,18,62.5,40,0.0 +25474,43,46,35,0.0 +25474,11,21,8,0.0 +25474,21,10,37,0.0 +25474,39,18,46,0.0 +25474,69,36,44,0.0 +25474,5,21.35,9,0.0 +25474,9,97,25,0.0 +25474,27,43.9,10,0.0 +25474,77,13,41,0.0 +25474,31,12.5,40,0.0 +25474,24,4.5,8,0.0 +25474,59,55,50,0.0 +25474,50,16.25,45,0.0 +25474,48,12.75,28,0.0 +25474,74,10,25,0.0 +25474,32,32,47,0.0 +25474,34,14,45,0.0 +25474,8,40,43,0.0 +25474,75,7.75,34,0.0 +25474,33,2.5,35,0.0 +25474,55,24,23,0.0 +25474,63,43.9,23,0.0 +25474,4,22,20,0.0 +25474,57,19.5,6,0.0 +25474,1,18,29,0.0 +25474,64,33.25,33,0.0 +25475,67,14,35,0.0 +25475,29,123.79,21,0.0 +25475,21,10,49,0.0 +25475,15,15.5,23,0.0 +25475,76,18,31,0.0 +25475,74,10,19,0.0 +25475,70,15,18,0.0 +25475,77,13,41,0.0 +25475,24,4.5,5,0.0 +25475,14,23.25,26,0.0 +25475,63,43.9,49,0.0 +25475,64,33.25,19,0.0 +25475,39,18,17,0.0 +25475,16,17.45,23,0.0 +25475,9,97,29,0.0 +25475,19,9.2,20,0.0 +25475,31,12.5,40,0.0 +25475,54,7.45,15,0.0 +25475,56,38,37,0.0 +25475,40,18.4,15,0.0 +25475,49,20,12,0.0 +25475,71,21.5,32,0.0 +25475,36,19,43,0.0 +25475,4,22,41,0.0 +25475,66,17,28,0.0 +25475,35,18,39,0.0 +25475,37,26,3,0.0 +25475,33,2.5,5,0.0 +25475,1,18,1,0.0 +25475,43,46,34,0.0 +25475,69,36,17,0.0 +25475,42,14,27,0.0 +25475,45,9.5,18,0.0 +25475,12,38,1,0.0 +25475,22,21,10,0.0 +25475,44,19.45,9,0.0 +25475,18,62.5,13,0.0 +25475,27,43.9,43,0.0 +25475,60,34,33,0.0 +25475,5,21.35,25,0.0 +25475,61,28.5,9,0.0 +25475,6,25,43,0.0 +25475,25,14,39,0.0 +25475,28,45.6,48,0.0 +25475,30,25.89,47,0.0 +25475,53,32.8,8,0.0 +25475,48,12.75,3,0.0 +25475,72,34.8,50,0.0 +25475,73,15,18,0.0 +25475,58,13.25,37,0.0 +25475,55,24,18,0.0 +25475,47,9.5,5,0.0 +25475,65,21.05,43,0.0 +25475,13,6,9,0.0 +25475,52,7,40,0.0 +25475,51,53,33,0.0 +25475,41,9.65,43,0.0 +25475,26,31.23,49,0.0 +25475,75,7.75,34,0.0 +25475,68,12.5,16,0.0 +25475,3,10,33,0.0 +25475,10,31,27,0.0 +25475,23,9,15,0.0 +25475,38,263.5,30,0.0 +25475,34,14,25,0.0 +25475,50,16.25,13,0.0 +25475,2,19,23,0.0 +25475,57,19.5,13,0.0 +25476,74,10,15,0.0 +25476,71,21.5,31,0.0 +25476,24,4.5,33,0.0 +25476,35,18,42,0.0 +25476,37,26,34,0.0 +25476,9,97,11,0.0 +25476,45,9.5,41,0.0 +25476,68,12.5,1,0.0 +25476,29,123.79,3,0.0 +25476,13,6,29,0.0 +25476,31,12.5,16,0.0 +25476,62,49.3,34,0.0 +25476,15,15.5,15,0.0 +25476,55,24,49,0.0 +25476,10,31,13,0.0 +25476,25,14,23,0.0 +25476,11,21,4,0.0 +25476,17,39,9,0.0 +25476,65,21.05,10,0.0 +25476,22,21,29,0.0 +25476,8,40,20,0.0 +25476,40,18.4,21,0.0 +25476,63,43.9,37,0.0 +25476,75,7.75,47,0.0 +25476,60,34,22,0.0 +25476,19,9.2,34,0.0 +25476,41,9.65,27,0.0 +25476,58,13.25,13,0.0 +25476,3,10,50,0.0 +25476,51,53,19,0.0 +25476,73,15,28,0.0 +25476,50,16.25,6,0.0 +25476,57,19.5,12,0.0 +25476,14,23.25,28,0.0 +25476,61,28.5,40,0.0 +25476,56,38,20,0.0 +25476,20,81,3,0.0 +25476,69,36,48,0.0 +25476,4,22,4,0.0 +25476,54,7.45,10,0.0 +25476,77,13,2,0.0 +25476,7,30,10,0.0 +25476,1,18,22,0.0 +25476,6,25,49,0.0 +25476,70,15,46,0.0 +25476,72,34.8,50,0.0 +25476,2,19,7,0.0 +25476,30,25.89,13,0.0 +25476,47,9.5,6,0.0 +25476,12,38,18,0.0 +25476,46,12,43,0.0 +25476,38,263.5,24,0.0 +25476,32,32,47,0.0 +25476,67,14,10,0.0 +25476,42,14,8,0.0 +25476,52,7,37,0.0 +25476,39,18,27,0.0 +25476,66,17,6,0.0 +25476,28,45.6,4,0.0 +25476,48,12.75,13,0.0 +25476,27,43.9,2,0.0 +25476,34,14,38,0.0 +25476,21,10,44,0.0 +25476,44,19.45,44,0.0 +25476,49,20,10,0.0 +25476,18,62.5,7,0.0 +25476,26,31.23,3,0.0 +25476,16,17.45,31,0.0 +25476,23,9,26,0.0 +25476,36,19,40,0.0 +25476,43,46,46,0.0 +25476,53,32.8,39,0.0 +25476,76,18,48,0.0 +25476,59,55,17,0.0 +25476,33,2.5,34,0.0 +25476,5,21.35,9,0.0 +25476,64,33.25,33,0.0 +25477,31,12.5,18,0.0 +25477,13,6,1,0.0 +25477,11,21,20,0.0 +25477,29,123.79,20,0.0 +25477,41,9.65,46,0.0 +25477,14,23.25,46,0.0 +25477,54,7.45,39,0.0 +25477,7,30,30,0.0 +25477,44,19.45,34,0.0 +25477,49,20,30,0.0 +25477,56,38,39,0.0 +25477,47,9.5,8,0.0 +25477,50,16.25,6,0.0 +25477,69,36,19,0.0 +25477,15,15.5,20,0.0 +25477,8,40,18,0.0 +25477,30,25.89,43,0.0 +25477,4,22,46,0.0 +25477,64,33.25,43,0.0 +25477,48,12.75,2,0.0 +25477,59,55,35,0.0 +25477,70,15,47,0.0 +25478,2,19,12,0.0 +25478,30,25.89,43,0.0 +25478,38,263.5,49,0.0 +25478,62,49.3,2,0.0 +25478,34,14,21,0.0 +25478,32,32,4,0.0 +25478,29,123.79,9,0.0 +25478,33,2.5,33,0.0 +25478,75,7.75,20,0.0 +25478,25,14,11,0.0 +25478,31,12.5,46,0.0 +25478,58,13.25,44,0.0 +25478,8,40,29,0.0 +25478,76,18,19,0.0 +25478,60,34,23,0.0 +25478,73,15,23,0.0 +25478,56,38,37,0.0 +25478,40,18.4,14,0.0 +25478,47,9.5,50,0.0 +25478,39,18,43,0.0 +25479,51,53,8,0.0 +25479,5,21.35,41,0.0 +25479,35,18,45,0.0 +25479,37,26,26,0.0 +25479,9,97,20,0.0 +25479,4,22,23,0.0 +25479,16,17.45,27,0.0 +25479,12,38,14,0.0 +25479,3,10,10,0.0 +25479,72,34.8,46,0.0 +25479,31,12.5,17,0.0 +25479,69,36,44,0.0 +25479,14,23.25,2,0.0 +25479,6,25,13,0.0 +25479,45,9.5,5,0.0 +25479,74,10,29,0.0 +25479,46,12,48,0.0 +25479,36,19,18,0.0 +25479,49,20,16,0.0 +25479,1,18,21,0.0 +25479,26,31.23,25,0.0 +25479,11,21,10,0.0 +25479,33,2.5,15,0.0 +25479,58,13.25,48,0.0 +25479,73,15,50,0.0 +25479,75,7.75,30,0.0 +25479,30,25.89,13,0.0 +25479,59,55,28,0.0 +25479,63,43.9,12,0.0 +25479,71,21.5,15,0.0 +25479,41,9.65,42,0.0 +25479,52,7,10,0.0 +25480,34,14,47,0.0 +25480,49,20,28,0.0 +25480,74,10,34,0.0 +25480,13,6,4,0.0 +25480,56,38,30,0.0 +25480,35,18,30,0.0 +25480,68,12.5,33,0.0 +25480,2,19,23,0.0 +25480,76,18,18,0.0 +25480,54,7.45,5,0.0 +25480,67,14,1,0.0 +25480,48,12.75,32,0.0 +25480,43,46,17,0.0 +25480,57,19.5,44,0.0 +25480,72,34.8,46,0.0 +25480,42,14,35,0.0 +25480,17,39,49,0.0 +25480,46,12,16,0.0 +25480,65,21.05,39,0.0 +25480,36,19,25,0.0 +25480,7,30,1,0.0 +25480,6,25,1,0.0 +25480,12,38,42,0.0 +25480,16,17.45,35,0.0 +25480,64,33.25,42,0.0 +25480,70,15,39,0.0 +25480,66,17,27,0.0 +25480,37,26,32,0.0 +25480,51,53,9,0.0 +25480,8,40,46,0.0 +25480,32,32,41,0.0 +25480,4,22,7,0.0 +25480,20,81,31,0.0 +25480,9,97,32,0.0 +25480,15,15.5,14,0.0 +25480,47,9.5,36,0.0 +25480,22,21,47,0.0 +25480,40,18.4,28,0.0 +25480,19,9.2,39,0.0 +25480,75,7.75,33,0.0 +25480,3,10,26,0.0 +25480,30,25.89,21,0.0 +25480,62,49.3,28,0.0 +25480,61,28.5,32,0.0 +25480,63,43.9,10,0.0 +25480,18,62.5,16,0.0 +25480,11,21,48,0.0 +25480,50,16.25,2,0.0 +25480,53,32.8,14,0.0 +25480,23,9,29,0.0 +25480,1,18,27,0.0 +25480,59,55,48,0.0 +25480,27,43.9,23,0.0 +25480,71,21.5,50,0.0 +25480,55,24,37,0.0 +25480,60,34,26,0.0 +25480,44,19.45,47,0.0 +25480,41,9.65,45,0.0 +25480,38,263.5,9,0.0 +25480,45,9.5,6,0.0 +25480,26,31.23,5,0.0 +25480,10,31,24,0.0 +25481,30,25.89,2,0.0 +25481,22,21,3,0.0 +25481,4,22,5,0.0 +25481,33,2.5,14,0.0 +25481,13,6,43,0.0 +25481,21,10,2,0.0 +25481,70,15,27,0.0 +25481,61,28.5,5,0.0 +25481,50,16.25,6,0.0 +25481,77,13,14,0.0 +25481,31,12.5,7,0.0 +25481,47,9.5,37,0.0 +25481,67,14,1,0.0 +25481,58,13.25,29,0.0 +25481,39,18,36,0.0 +25481,23,9,7,0.0 +25481,38,263.5,2,0.0 +25481,73,15,21,0.0 +25481,20,81,16,0.0 +25481,35,18,28,0.0 +25481,25,14,44,0.0 +25481,18,62.5,44,0.0 +25481,40,18.4,12,0.0 +25481,3,10,8,0.0 +25481,19,9.2,22,0.0 +25481,62,49.3,9,0.0 +25481,69,36,45,0.0 +25481,48,12.75,6,0.0 +25481,14,23.25,25,0.0 +25481,44,19.45,34,0.0 +25481,66,17,42,0.0 +25481,16,17.45,47,0.0 +25481,71,21.5,40,0.0 +25481,75,7.75,10,0.0 +25481,6,25,35,0.0 +25481,27,43.9,33,0.0 +25481,17,39,30,0.0 +25481,34,14,30,0.0 +25481,46,12,35,0.0 +25481,57,19.5,31,0.0 +25481,1,18,40,0.0 +25481,51,53,14,0.0 +25481,29,123.79,4,0.0 +25481,24,4.5,20,0.0 +25481,63,43.9,19,0.0 +25481,76,18,39,0.0 +25481,7,30,25,0.0 +25481,55,24,18,0.0 +25482,19,9.2,23,0.0 +25482,67,14,21,0.0 +25482,18,62.5,21,0.0 +25482,20,81,49,0.0 +25482,43,46,34,0.0 +25482,55,24,15,0.0 +25482,27,43.9,45,0.0 +25482,23,9,22,0.0 +25482,77,13,13,0.0 +25482,50,16.25,4,0.0 +25482,32,32,6,0.0 +25482,69,36,35,0.0 +25482,33,2.5,45,0.0 +25482,52,7,23,0.0 +25482,7,30,38,0.0 +25482,56,38,33,0.0 +25482,22,21,34,0.0 +25482,3,10,32,0.0 +25482,1,18,24,0.0 +25482,66,17,10,0.0 +25482,37,26,18,0.0 +25482,44,19.45,30,0.0 +25482,29,123.79,10,0.0 +25482,54,7.45,43,0.0 +25482,51,53,44,0.0 +25482,15,15.5,39,0.0 +25482,12,38,1,0.0 +25482,17,39,43,0.0 +25482,28,45.6,2,0.0 +25482,73,15,13,0.0 +25482,24,4.5,11,0.0 +25482,21,10,9,0.0 +25482,25,14,35,0.0 +25482,65,21.05,42,0.0 +25482,39,18,46,0.0 +25482,45,9.5,36,0.0 +25482,76,18,39,0.0 +25482,61,28.5,6,0.0 +25482,64,33.25,13,0.0 +25482,31,12.5,34,0.0 +25482,38,263.5,36,0.0 +25482,59,55,11,0.0 +25482,14,23.25,2,0.0 +25482,5,21.35,41,0.0 +25482,57,19.5,42,0.0 +25482,36,19,34,0.0 +25482,8,40,28,0.0 +25482,70,15,19,0.0 +25482,49,20,38,0.0 +25482,16,17.45,4,0.0 +25482,13,6,15,0.0 +25482,26,31.23,50,0.0 +25482,46,12,49,0.0 +25482,71,21.5,4,0.0 +25483,74,10,43,0.0 +25483,24,4.5,29,0.0 +25483,5,21.35,15,0.0 +25483,49,20,47,0.0 +25483,45,9.5,15,0.0 +25483,63,43.9,33,0.0 +25483,53,32.8,31,0.0 +25483,34,14,41,0.0 +25483,19,9.2,13,0.0 +25483,13,6,14,0.0 +25483,16,17.45,28,0.0 +25483,31,12.5,1,0.0 +25483,27,43.9,39,0.0 +25483,22,21,13,0.0 +25483,30,25.89,37,0.0 +25483,2,19,33,0.0 +25483,28,45.6,22,0.0 +25483,26,31.23,35,0.0 +25483,40,18.4,45,0.0 +25483,9,97,20,0.0 +25483,41,9.65,22,0.0 +25483,77,13,40,0.0 +25483,39,18,5,0.0 +25483,11,21,5,0.0 +25483,50,16.25,11,0.0 +25483,43,46,50,0.0 +25483,14,23.25,27,0.0 +25483,36,19,4,0.0 +25483,51,53,5,0.0 +25483,8,40,37,0.0 +25483,1,18,44,0.0 +25483,61,28.5,5,0.0 +25483,38,263.5,3,0.0 +25483,72,34.8,50,0.0 +25483,56,38,47,0.0 +25483,66,17,4,0.0 +25483,68,12.5,5,0.0 +25483,73,15,37,0.0 +25483,29,123.79,28,0.0 +25483,32,32,23,0.0 +25483,59,55,17,0.0 +25483,48,12.75,14,0.0 +25483,58,13.25,35,0.0 +25483,60,34,10,0.0 +25484,20,81,29,0.0 +25484,21,10,14,0.0 +25484,31,12.5,41,0.0 +25484,69,36,17,0.0 +25484,13,6,40,0.0 +25484,39,18,28,0.0 +25484,50,16.25,43,0.0 +25484,59,55,29,0.0 +25484,53,32.8,22,0.0 +25484,73,15,33,0.0 +25484,34,14,43,0.0 +25484,70,15,20,0.0 +25484,2,19,6,0.0 +25484,48,12.75,9,0.0 +25484,23,9,48,0.0 +25484,19,9.2,18,0.0 +25484,3,10,30,0.0 +25484,6,25,48,0.0 +25484,72,34.8,27,0.0 +25484,40,18.4,16,0.0 +25484,44,19.45,36,0.0 +25484,4,22,40,0.0 +25484,32,32,1,0.0 +25484,16,17.45,30,0.0 +25484,27,43.9,14,0.0 +25484,5,21.35,41,0.0 +25484,9,97,20,0.0 +25484,76,18,19,0.0 +25484,71,21.5,13,0.0 +25484,25,14,44,0.0 +25484,29,123.79,28,0.0 +25484,26,31.23,1,0.0 +25484,11,21,1,0.0 +25484,28,45.6,4,0.0 +25484,64,33.25,3,0.0 +25484,17,39,45,0.0 +25484,14,23.25,21,0.0 +25484,24,4.5,48,0.0 +25484,37,26,47,0.0 +25484,18,62.5,3,0.0 +25484,77,13,39,0.0 +25484,51,53,29,0.0 +25484,60,34,49,0.0 +25484,61,28.5,16,0.0 +25484,35,18,34,0.0 +25485,37,26,17,0.0 +25485,71,21.5,11,0.0 +25485,56,38,39,0.0 +25485,33,2.5,21,0.0 +25485,44,19.45,45,0.0 +25485,31,12.5,14,0.0 +25485,36,19,4,0.0 +25485,57,19.5,43,0.0 +25485,68,12.5,42,0.0 +25485,63,43.9,17,0.0 +25485,28,45.6,13,0.0 +25485,32,32,19,0.0 +25485,43,46,12,0.0 +25485,30,25.89,25,0.0 +25485,55,24,37,0.0 +25485,51,53,40,0.0 +25485,5,21.35,39,0.0 +25485,25,14,21,0.0 +25485,22,21,41,0.0 +25485,40,18.4,13,0.0 +25485,60,34,20,0.0 +25485,1,18,50,0.0 +25485,2,19,29,0.0 +25485,61,28.5,14,0.0 +25485,47,9.5,19,0.0 +25485,41,9.65,5,0.0 +25485,67,14,25,0.0 +25485,48,12.75,3,0.0 +25485,13,6,9,0.0 +25485,18,62.5,8,0.0 +25485,76,18,4,0.0 +25485,64,33.25,4,0.0 +25485,73,15,34,0.0 +25485,77,13,49,0.0 +25485,15,15.5,10,0.0 +25485,75,7.75,15,0.0 +25485,4,22,27,0.0 +25485,21,10,12,0.0 +25485,24,4.5,43,0.0 +25485,6,25,25,0.0 +25485,38,263.5,29,0.0 +25485,72,34.8,47,0.0 +25485,9,97,18,0.0 +25485,3,10,34,0.0 +25485,26,31.23,26,0.0 +25485,62,49.3,26,0.0 +25485,27,43.9,36,0.0 +25485,42,14,46,0.0 +25485,8,40,47,0.0 +25485,59,55,50,0.0 +25485,74,10,32,0.0 +25485,17,39,37,0.0 +25485,58,13.25,21,0.0 +25485,50,16.25,28,0.0 +25485,20,81,35,0.0 +25485,49,20,43,0.0 +25485,45,9.5,13,0.0 +25485,46,12,32,0.0 +25485,54,7.45,13,0.0 +25485,35,18,32,0.0 +25485,23,9,15,0.0 +25485,70,15,6,0.0 +25485,12,38,37,0.0 +25486,59,55,28,0.0 +25486,10,31,33,0.0 +25486,12,38,44,0.0 +25486,20,81,11,0.0 +25486,41,9.65,44,0.0 +25486,4,22,46,0.0 +25486,45,9.5,18,0.0 +25486,7,30,21,0.0 +25486,53,32.8,16,0.0 +25486,14,23.25,42,0.0 +25486,38,263.5,10,0.0 +25486,26,31.23,41,0.0 +25486,15,15.5,27,0.0 +25486,61,28.5,6,0.0 +25486,49,20,9,0.0 +25486,37,26,28,0.0 +25486,24,4.5,33,0.0 +25486,46,12,6,0.0 +25486,40,18.4,18,0.0 +25486,51,53,7,0.0 +25486,32,32,46,0.0 +25486,47,9.5,32,0.0 +25486,25,14,2,0.0 +25486,71,21.5,18,0.0 +25486,76,18,50,0.0 +25486,2,19,39,0.0 +25486,56,38,48,0.0 +25486,9,97,23,0.0 +25486,36,19,29,0.0 +25486,60,34,35,0.0 +25486,11,21,19,0.0 +25486,17,39,1,0.0 +25486,22,21,4,0.0 +25486,63,43.9,36,0.0 +25486,30,25.89,9,0.0 +25486,43,46,42,0.0 +25486,68,12.5,14,0.0 +25486,64,33.25,12,0.0 +25486,74,10,37,0.0 +25486,72,34.8,25,0.0 +25486,28,45.6,23,0.0 +25486,52,7,36,0.0 +25486,29,123.79,41,0.0 +25486,13,6,21,0.0 +25486,55,24,40,0.0 +25486,23,9,8,0.0 +25486,65,21.05,19,0.0 +25486,50,16.25,44,0.0 +25486,77,13,46,0.0 +25486,54,7.45,24,0.0 +25486,18,62.5,1,0.0 +25486,67,14,25,0.0 +25486,3,10,27,0.0 +25486,1,18,5,0.0 +25487,15,15.5,35,0.0 +25487,59,55,15,0.0 +25487,8,40,36,0.0 +25487,33,2.5,22,0.0 +25487,54,7.45,15,0.0 +25487,13,6,29,0.0 +25487,46,12,5,0.0 +25487,10,31,36,0.0 +25487,65,21.05,4,0.0 +25487,55,24,31,0.0 +25487,27,43.9,30,0.0 +25487,17,39,8,0.0 +25487,66,17,31,0.0 +25487,53,32.8,14,0.0 +25487,47,9.5,30,0.0 +25488,27,43.9,32,0.0 +25488,16,17.45,35,0.0 +25488,69,36,8,0.0 +25488,1,18,46,0.0 +25488,56,38,14,0.0 +25488,57,19.5,22,0.0 +25488,49,20,39,0.0 +25488,77,13,1,0.0 +25488,64,33.25,13,0.0 +25488,58,13.25,46,0.0 +25488,29,123.79,13,0.0 +25488,63,43.9,26,0.0 +25488,60,34,21,0.0 +25488,62,49.3,3,0.0 +25488,53,32.8,10,0.0 +25488,14,23.25,35,0.0 +25488,2,19,38,0.0 +25488,45,9.5,31,0.0 +25488,4,22,25,0.0 +25488,51,53,29,0.0 +25488,37,26,10,0.0 +25488,44,19.45,14,0.0 +25488,71,21.5,47,0.0 +25488,24,4.5,8,0.0 +25488,73,15,18,0.0 +25488,41,9.65,48,0.0 +25488,52,7,38,0.0 +25488,70,15,19,0.0 +25488,50,16.25,47,0.0 +25488,20,81,46,0.0 +25488,22,21,16,0.0 +25488,7,30,43,0.0 +25488,38,263.5,5,0.0 +25488,75,7.75,49,0.0 +25488,9,97,42,0.0 +25488,47,9.5,25,0.0 +25488,13,6,30,0.0 +25488,19,9.2,2,0.0 +25488,65,21.05,12,0.0 +25488,8,40,2,0.0 +25488,76,18,8,0.0 +25488,59,55,34,0.0 +25488,66,17,18,0.0 +25488,74,10,20,0.0 +25488,72,34.8,38,0.0 +25488,67,14,48,0.0 +25488,33,2.5,10,0.0 +25488,42,14,29,0.0 +25488,25,14,34,0.0 +25488,23,9,44,0.0 +25488,68,12.5,28,0.0 +25488,26,31.23,4,0.0 +25488,36,19,23,0.0 +25488,15,15.5,29,0.0 +25488,55,24,28,0.0 +25488,28,45.6,11,0.0 +25488,34,14,48,0.0 +25488,39,18,40,0.0 +25488,18,62.5,26,0.0 +25488,46,12,47,0.0 +25488,11,21,44,0.0 +25488,17,39,50,0.0 +25488,21,10,31,0.0 +25488,30,25.89,41,0.0 +25488,48,12.75,27,0.0 +25489,72,34.8,11,0.0 +25489,74,10,29,0.0 +25489,34,14,42,0.0 +25489,13,6,24,0.0 +25489,44,19.45,13,0.0 +25489,76,18,48,0.0 +25489,47,9.5,27,0.0 +25489,37,26,2,0.0 +25489,61,28.5,44,0.0 +25489,52,7,8,0.0 +25489,57,19.5,15,0.0 +25489,27,43.9,11,0.0 +25489,64,33.25,47,0.0 +25489,63,43.9,1,0.0 +25489,48,12.75,32,0.0 +25489,45,9.5,45,0.0 +25489,49,20,38,0.0 +25489,2,19,5,0.0 +25489,19,9.2,27,0.0 +25489,56,38,41,0.0 +25489,43,46,42,0.0 +25489,28,45.6,6,0.0 +25489,41,9.65,31,0.0 +25489,55,24,23,0.0 +25489,12,38,12,0.0 +25489,59,55,39,0.0 +25489,66,17,48,0.0 +25489,40,18.4,25,0.0 +25489,58,13.25,29,0.0 +25489,38,263.5,5,0.0 +25490,10,31,20,0.0 +25490,24,4.5,31,0.0 +25490,54,7.45,26,0.0 +25490,52,7,42,0.0 +25490,34,14,31,0.0 +25490,37,26,34,0.0 +25490,13,6,46,0.0 +25490,30,25.89,28,0.0 +25490,55,24,1,0.0 +25490,66,17,9,0.0 +25490,62,49.3,28,0.0 +25490,8,40,35,0.0 +25490,21,10,25,0.0 +25490,69,36,20,0.0 +25490,73,15,36,0.0 +25490,42,14,34,0.0 +25490,32,32,2,0.0 +25490,12,38,4,0.0 +25490,7,30,28,0.0 +25490,23,9,40,0.0 +25490,3,10,32,0.0 +25490,14,23.25,11,0.0 +25490,58,13.25,31,0.0 +25490,4,22,17,0.0 +25490,76,18,5,0.0 +25490,18,62.5,41,0.0 +25490,71,21.5,36,0.0 +25490,9,97,20,0.0 +25490,57,19.5,10,0.0 +25490,16,17.45,9,0.0 +25490,35,18,11,0.0 +25490,27,43.9,35,0.0 +25490,49,20,49,0.0 +25490,63,43.9,3,0.0 +25490,26,31.23,31,0.0 +25490,75,7.75,4,0.0 +25490,51,53,21,0.0 +25490,39,18,16,0.0 +25490,28,45.6,24,0.0 +25490,56,38,9,0.0 +25490,43,46,48,0.0 +25490,36,19,8,0.0 +25490,68,12.5,5,0.0 +25490,1,18,18,0.0 +25490,15,15.5,38,0.0 +25490,5,21.35,6,0.0 +25490,17,39,42,0.0 +25490,60,34,11,0.0 +25490,31,12.5,16,0.0 +25490,47,9.5,29,0.0 +25490,48,12.75,34,0.0 +25490,50,16.25,15,0.0 +25490,65,21.05,12,0.0 +25490,59,55,15,0.0 +25490,72,34.8,27,0.0 +25490,25,14,44,0.0 +25490,38,263.5,42,0.0 +25490,29,123.79,13,0.0 +25490,61,28.5,1,0.0 +25490,2,19,39,0.0 +25491,65,21.05,13,0.0 +25491,72,34.8,18,0.0 +25491,36,19,40,0.0 +25491,4,22,35,0.0 +25491,22,21,6,0.0 +25491,50,16.25,19,0.0 +25491,13,6,46,0.0 +25491,1,18,47,0.0 +25491,56,38,50,0.0 +25491,28,45.6,24,0.0 +25491,58,13.25,18,0.0 +25491,41,9.65,35,0.0 +25491,71,21.5,29,0.0 +25491,76,18,1,0.0 +25491,26,31.23,26,0.0 +25491,70,15,10,0.0 +25491,30,25.89,32,0.0 +25491,3,10,23,0.0 +25491,59,55,8,0.0 +25491,33,2.5,37,0.0 +25491,34,14,13,0.0 +25491,62,49.3,48,0.0 +25491,45,9.5,37,0.0 +25491,16,17.45,21,0.0 +25491,24,4.5,48,0.0 +25491,19,9.2,27,0.0 +25491,6,25,37,0.0 +25491,64,33.25,21,0.0 +25491,75,7.75,21,0.0 +25491,73,15,18,0.0 +25491,46,12,7,0.0 +25491,21,10,4,0.0 +25491,68,12.5,28,0.0 +25491,25,14,17,0.0 +25491,48,12.75,13,0.0 +25491,67,14,10,0.0 +25491,5,21.35,9,0.0 +25491,9,97,39,0.0 +25491,17,39,20,0.0 +25491,39,18,50,0.0 +25492,73,15,21,0.0 +25492,64,33.25,6,0.0 +25492,70,15,48,0.0 +25492,1,18,49,0.0 +25492,20,81,42,0.0 +25492,76,18,43,0.0 +25492,58,13.25,48,0.0 +25492,31,12.5,14,0.0 +25492,17,39,10,0.0 +25492,13,6,46,0.0 +25492,36,19,4,0.0 +25492,55,24,30,0.0 +25492,3,10,41,0.0 +25492,24,4.5,13,0.0 +25492,54,7.45,10,0.0 +25492,18,62.5,16,0.0 +25492,8,40,28,0.0 +25492,4,22,31,0.0 +25492,39,18,16,0.0 +25492,27,43.9,35,0.0 +25492,52,7,30,0.0 +25492,49,20,22,0.0 +25492,77,13,49,0.0 +25492,67,14,39,0.0 +25492,46,12,30,0.0 +25492,2,19,33,0.0 +25492,6,25,4,0.0 +25492,56,38,49,0.0 +25492,66,17,41,0.0 +25492,72,34.8,33,0.0 +25492,45,9.5,38,0.0 +25492,50,16.25,48,0.0 +25492,59,55,22,0.0 +25492,25,14,1,0.0 +25492,19,9.2,42,0.0 +25492,74,10,40,0.0 +25492,16,17.45,20,0.0 +25492,61,28.5,36,0.0 +25492,65,21.05,8,0.0 +25492,34,14,4,0.0 +25492,7,30,18,0.0 +25492,21,10,44,0.0 +25492,51,53,46,0.0 +25492,60,34,18,0.0 +25492,35,18,31,0.0 +25492,69,36,18,0.0 +25492,14,23.25,13,0.0 +25493,34,14,21,0.0 +25493,28,45.6,43,0.0 +25493,13,6,34,0.0 +25493,75,7.75,24,0.0 +25493,8,40,14,0.0 +25493,49,20,19,0.0 +25493,54,7.45,14,0.0 +25493,27,43.9,4,0.0 +25493,73,15,46,0.0 +25493,14,23.25,9,0.0 +25493,44,19.45,33,0.0 +25493,3,10,8,0.0 +25493,66,17,2,0.0 +25493,6,25,6,0.0 +25493,69,36,35,0.0 +25493,60,34,24,0.0 +25493,48,12.75,50,0.0 +25493,17,39,26,0.0 +25493,41,9.65,4,0.0 +25493,40,18.4,27,0.0 +25493,25,14,19,0.0 +25493,16,17.45,4,0.0 +25493,9,97,50,0.0 +25493,22,21,35,0.0 +25493,2,19,27,0.0 +25493,39,18,22,0.0 +25493,47,9.5,33,0.0 +25493,20,81,47,0.0 +25493,46,12,11,0.0 +25493,38,263.5,43,0.0 +25493,24,4.5,50,0.0 +25493,58,13.25,20,0.0 +25493,53,32.8,29,0.0 +25493,64,33.25,16,0.0 +25493,26,31.23,26,0.0 +25493,56,38,26,0.0 +25493,1,18,24,0.0 +25493,67,14,35,0.0 +25493,74,10,40,0.0 +25493,72,34.8,21,0.0 +25494,12,38,48,0.0 +25494,3,10,7,0.0 +25494,40,18.4,47,0.0 +25494,22,21,13,0.0 +25494,30,25.89,46,0.0 +25494,53,32.8,27,0.0 +25494,43,46,30,0.0 +25494,61,28.5,34,0.0 +25494,38,263.5,10,0.0 +25494,36,19,7,0.0 +25494,39,18,3,0.0 +25494,67,14,38,0.0 +25494,69,36,47,0.0 +25494,23,9,4,0.0 +25494,5,21.35,20,0.0 +25494,8,40,36,0.0 +25494,32,32,19,0.0 +25494,52,7,45,0.0 +25494,34,14,14,0.0 +25494,72,34.8,48,0.0 +25494,48,12.75,43,0.0 +25494,15,15.5,10,0.0 +25494,31,12.5,12,0.0 +25494,46,12,26,0.0 +25494,65,21.05,2,0.0 +25494,58,13.25,31,0.0 +25494,4,22,38,0.0 +25494,2,19,34,0.0 +25494,45,9.5,6,0.0 +25494,6,25,13,0.0 +25494,71,21.5,33,0.0 +25494,47,9.5,22,0.0 +25494,50,16.25,37,0.0 +25494,70,15,7,0.0 +25494,25,14,8,0.0 +25494,13,6,2,0.0 +25494,73,15,23,0.0 +25494,21,10,13,0.0 +25494,11,21,7,0.0 +25494,16,17.45,34,0.0 +25494,27,43.9,5,0.0 +25494,19,9.2,48,0.0 +25494,26,31.23,11,0.0 +25494,20,81,33,0.0 +25494,60,34,22,0.0 +25494,7,30,48,0.0 +25494,56,38,10,0.0 +25494,37,26,6,0.0 +25494,9,97,6,0.0 +25494,62,49.3,49,0.0 +25494,10,31,32,0.0 +25494,59,55,4,0.0 +25494,44,19.45,7,0.0 +25494,49,20,1,0.0 +25494,57,19.5,49,0.0 +25494,54,7.45,40,0.0 +25494,55,24,5,0.0 +25494,77,13,43,0.0 +25494,33,2.5,39,0.0 +25494,41,9.65,16,0.0 +25494,64,33.25,19,0.0 +25494,17,39,9,0.0 +25494,51,53,50,0.0 +25494,63,43.9,23,0.0 +25494,68,12.5,49,0.0 +25494,75,7.75,26,0.0 +25495,67,14,19,0.0 +25495,75,7.75,12,0.0 +25495,69,36,18,0.0 +25495,61,28.5,14,0.0 +25495,15,15.5,10,0.0 +25495,40,18.4,38,0.0 +25495,17,39,37,0.0 +25495,21,10,44,0.0 +25495,12,38,1,0.0 +25495,37,26,13,0.0 +25495,7,30,18,0.0 +25495,63,43.9,33,0.0 +25495,66,17,50,0.0 +25495,16,17.45,30,0.0 +25495,76,18,15,0.0 +25495,68,12.5,37,0.0 +25495,29,123.79,12,0.0 +25495,54,7.45,1,0.0 +25495,10,31,27,0.0 +25495,55,24,9,0.0 +25495,77,13,49,0.0 +25495,30,25.89,21,0.0 +25495,49,20,12,0.0 +25495,41,9.65,7,0.0 +25496,51,53,22,0.0 +25496,8,40,41,0.0 +25496,70,15,40,0.0 +25496,55,24,43,0.0 +25496,22,21,22,0.0 +25496,53,32.8,45,0.0 +25496,6,25,33,0.0 +25496,15,15.5,42,0.0 +25496,3,10,9,0.0 +25496,42,14,42,0.0 +25496,32,32,3,0.0 +25496,31,12.5,49,0.0 +25496,30,25.89,21,0.0 +25496,28,45.6,42,0.0 +25496,59,55,41,0.0 +25496,20,81,22,0.0 +25496,73,15,19,0.0 +25496,16,17.45,29,0.0 +25496,63,43.9,33,0.0 +25496,9,97,28,0.0 +25496,24,4.5,13,0.0 +25496,26,31.23,22,0.0 +25496,46,12,3,0.0 +25496,23,9,13,0.0 +25496,18,62.5,32,0.0 +25496,44,19.45,13,0.0 +25496,21,10,46,0.0 +25496,27,43.9,7,0.0 +25496,25,14,4,0.0 +25496,5,21.35,47,0.0 +25496,36,19,38,0.0 +25496,49,20,27,0.0 +25496,11,21,50,0.0 +25496,12,38,8,0.0 +25496,45,9.5,19,0.0 +25496,34,14,10,0.0 +25496,65,21.05,1,0.0 +25496,60,34,2,0.0 +25496,62,49.3,30,0.0 +25496,72,34.8,5,0.0 +25496,2,19,17,0.0 +25496,38,263.5,44,0.0 +25496,61,28.5,21,0.0 +25496,67,14,44,0.0 +25496,29,123.79,6,0.0 +25496,1,18,7,0.0 +25496,68,12.5,22,0.0 +25496,50,16.25,22,0.0 +25496,77,13,24,0.0 +25496,19,9.2,21,0.0 +25496,35,18,17,0.0 +25496,39,18,22,0.0 +25496,76,18,13,0.0 +25497,32,32,9,0.0 +25497,76,18,17,0.0 +25497,60,34,3,0.0 +25497,10,31,12,0.0 +25497,44,19.45,1,0.0 +25497,62,49.3,1,0.0 +25497,9,97,20,0.0 +25497,74,10,4,0.0 +25497,59,55,29,0.0 +25497,26,31.23,36,0.0 +25497,67,14,27,0.0 +25497,1,18,8,0.0 +25497,23,9,35,0.0 +25497,45,9.5,9,0.0 +25497,68,12.5,24,0.0 +25497,16,17.45,15,0.0 +25497,2,19,17,0.0 +25497,39,18,45,0.0 +25497,46,12,31,0.0 +25497,72,34.8,25,0.0 +25497,40,18.4,42,0.0 +25497,58,13.25,15,0.0 +25497,19,9.2,30,0.0 +25497,29,123.79,22,0.0 +25497,15,15.5,10,0.0 +25497,71,21.5,44,0.0 +25497,36,19,17,0.0 +25497,21,10,41,0.0 +25497,25,14,19,0.0 +25497,51,53,14,0.0 +25497,17,39,25,0.0 +25497,55,24,29,0.0 +25497,49,20,21,0.0 +25498,37,26,21,0.0 +25498,10,31,28,0.0 +25498,7,30,14,0.0 +25498,20,81,5,0.0 +25498,49,20,39,0.0 +25498,61,28.5,45,0.0 +25498,74,10,5,0.0 +25498,72,34.8,30,0.0 +25498,41,9.65,33,0.0 +25498,33,2.5,8,0.0 +25498,28,45.6,39,0.0 +25498,4,22,34,0.0 +25498,18,62.5,16,0.0 +25498,2,19,29,0.0 +25498,77,13,3,0.0 +25498,43,46,50,0.0 +25498,76,18,11,0.0 +25498,29,123.79,19,0.0 +25498,50,16.25,29,0.0 +25498,55,24,44,0.0 +25498,21,10,16,0.0 +25498,17,39,8,0.0 +25498,3,10,2,0.0 +25498,59,55,28,0.0 +25498,26,31.23,44,0.0 +25498,11,21,21,0.0 +25498,57,19.5,38,0.0 +25498,12,38,16,0.0 +25498,13,6,40,0.0 +25498,73,15,34,0.0 +25498,8,40,40,0.0 +25498,25,14,26,0.0 +25498,42,14,7,0.0 +25498,40,18.4,3,0.0 +25498,16,17.45,13,0.0 +25498,48,12.75,42,0.0 +25498,19,9.2,37,0.0 +25498,51,53,34,0.0 +25498,38,263.5,5,0.0 +25498,24,4.5,24,0.0 +25498,53,32.8,8,0.0 +25498,30,25.89,10,0.0 +25498,35,18,42,0.0 +25498,75,7.75,45,0.0 +25498,70,15,7,0.0 +25498,56,38,30,0.0 +25499,19,9.2,36,0.0 +25499,1,18,50,0.0 +25499,20,81,26,0.0 +25499,16,17.45,4,0.0 +25499,46,12,37,0.0 +25499,25,14,28,0.0 +25499,34,14,18,0.0 +25499,45,9.5,37,0.0 +25499,64,33.25,17,0.0 +25499,68,12.5,28,0.0 +25499,37,26,24,0.0 +25499,23,9,23,0.0 +25499,59,55,15,0.0 +25499,54,7.45,5,0.0 +25499,70,15,10,0.0 +25499,57,19.5,19,0.0 +25499,66,17,27,0.0 +25499,58,13.25,33,0.0 +25499,14,23.25,30,0.0 +25499,52,7,25,0.0 +25499,60,34,50,0.0 +25499,32,32,1,0.0 +25499,28,45.6,3,0.0 +25499,6,25,36,0.0 +25499,18,62.5,41,0.0 +25499,65,21.05,33,0.0 +25499,75,7.75,45,0.0 +25499,53,32.8,14,0.0 +25499,74,10,26,0.0 +25499,15,15.5,2,0.0 +25499,47,9.5,39,0.0 +25499,12,38,50,0.0 +25499,36,19,48,0.0 +25499,39,18,23,0.0 +25499,35,18,39,0.0 +25499,24,4.5,43,0.0 +25499,33,2.5,4,0.0 +25499,38,263.5,33,0.0 +25499,49,20,1,0.0 +25499,27,43.9,23,0.0 +25499,73,15,17,0.0 +25499,29,123.79,1,0.0 +25499,8,40,30,0.0 +25499,77,13,1,0.0 +25499,9,97,44,0.0 +25499,61,28.5,17,0.0 +25499,11,21,39,0.0 +25499,50,16.25,23,0.0 +25499,26,31.23,26,0.0 +25499,72,34.8,2,0.0 +25499,41,9.65,12,0.0 +25499,56,38,25,0.0 +25499,44,19.45,14,0.0 +25499,63,43.9,40,0.0 +25499,22,21,7,0.0 +25499,51,53,34,0.0 +25499,71,21.5,17,0.0 +25499,55,24,43,0.0 +25500,31,12.5,46,0.0 +25500,2,19,39,0.0 +25500,17,39,25,0.0 +25500,51,53,46,0.0 +25500,44,19.45,39,0.0 +25500,38,263.5,44,0.0 +25500,6,25,9,0.0 +25500,43,46,15,0.0 +25500,49,20,31,0.0 +25500,73,15,5,0.0 +25500,50,16.25,4,0.0 +25500,72,34.8,45,0.0 +25500,54,7.45,23,0.0 +25500,62,49.3,24,0.0 +25500,12,38,24,0.0 +25500,11,21,40,0.0 +25500,57,19.5,29,0.0 +25500,30,25.89,2,0.0 +25500,27,43.9,39,0.0 +25500,39,18,43,0.0 +25500,42,14,14,0.0 +25500,75,7.75,47,0.0 +25500,10,31,25,0.0 +25500,19,9.2,35,0.0 +25500,70,15,10,0.0 +25500,40,18.4,5,0.0 +25500,46,12,36,0.0 +25500,61,28.5,50,0.0 +25500,25,14,30,0.0 +25500,55,24,45,0.0 +25500,18,62.5,27,0.0 +25500,71,21.5,41,0.0 +25500,63,43.9,37,0.0 +25500,1,18,15,0.0 +25500,5,21.35,39,0.0 +25500,22,21,16,0.0 +25500,36,19,3,0.0 +25500,33,2.5,45,0.0 +25500,32,32,28,0.0 +25500,59,55,19,0.0 +25500,24,4.5,47,0.0 +25500,74,10,29,0.0 +25500,13,6,7,0.0 +25500,23,9,3,0.0 +25500,16,17.45,1,0.0 +25500,45,9.5,2,0.0 +25500,67,14,48,0.0 +25500,53,32.8,19,0.0 +25500,15,15.5,41,0.0 +25500,52,7,32,0.0 +25500,66,17,10,0.0 +25500,4,22,42,0.0 +25500,37,26,5,0.0 +25500,8,40,48,0.0 +25500,3,10,31,0.0 +25500,77,13,11,0.0 +25500,56,38,34,0.0 +25500,76,18,22,0.0 +25500,65,21.05,32,0.0 +25500,14,23.25,32,0.0 +25500,64,33.25,8,0.0 +25500,60,34,20,0.0 +25500,9,97,21,0.0 +25500,21,10,39,0.0 +25500,26,31.23,41,0.0 +25500,47,9.5,50,0.0 +25500,48,12.75,29,0.0 +25500,20,81,16,0.0 +25500,7,30,41,0.0 +25500,58,13.25,44,0.0 +25500,34,14,49,0.0 +25500,28,45.6,39,0.0 +25500,68,12.5,1,0.0 +25500,29,123.79,50,0.0 +25500,35,18,48,0.0 +25500,69,36,35,0.0 +25501,51,53,5,0.0 +25501,33,2.5,9,0.0 +25501,53,32.8,32,0.0 +25502,48,12.75,15,0.0 +25502,31,12.5,49,0.0 +25502,16,17.45,19,0.0 +25502,17,39,42,0.0 +25502,49,20,9,0.0 +25502,67,14,33,0.0 +25503,69,36,2,0.0 +25503,22,21,48,0.0 +25503,59,55,22,0.0 +25503,76,18,42,0.0 +25503,10,31,28,0.0 +25503,26,31.23,28,0.0 +25503,56,38,35,0.0 +25503,33,2.5,50,0.0 +25503,68,12.5,40,0.0 +25503,27,43.9,12,0.0 +25503,2,19,43,0.0 +25503,28,45.6,3,0.0 +25503,53,32.8,48,0.0 +25503,16,17.45,40,0.0 +25503,9,97,9,0.0 +25503,67,14,20,0.0 +25503,8,40,20,0.0 +25503,29,123.79,30,0.0 +25503,62,49.3,26,0.0 +25503,74,10,41,0.0 +25503,20,81,27,0.0 +25503,45,9.5,12,0.0 +25503,42,14,16,0.0 +25503,47,9.5,20,0.0 +25503,13,6,45,0.0 +25503,63,43.9,15,0.0 +25503,21,10,32,0.0 +25503,75,7.75,36,0.0 +25503,77,13,41,0.0 +25503,32,32,1,0.0 +25503,39,18,39,0.0 +25503,15,15.5,41,0.0 +25503,38,263.5,48,0.0 +25503,41,9.65,14,0.0 +25503,14,23.25,33,0.0 +25503,6,25,46,0.0 +25503,4,22,50,0.0 +25503,54,7.45,38,0.0 +25503,46,12,20,0.0 +25503,61,28.5,32,0.0 +25503,18,62.5,50,0.0 +25503,65,21.05,32,0.0 +25503,44,19.45,10,0.0 +25503,49,20,29,0.0 +25503,58,13.25,8,0.0 +25503,72,34.8,1,0.0 +25503,48,12.75,28,0.0 +25503,71,21.5,40,0.0 +25503,31,12.5,35,0.0 +25503,57,19.5,25,0.0 +25503,64,33.25,1,0.0 +25504,76,18,36,0.0 +25504,19,9.2,8,0.0 +25504,53,32.8,46,0.0 +25504,41,9.65,34,0.0 +25504,51,53,31,0.0 +25504,5,21.35,46,0.0 +25504,62,49.3,50,0.0 +25504,77,13,31,0.0 +25504,10,31,42,0.0 +25504,44,19.45,41,0.0 +25504,16,17.45,50,0.0 +25504,7,30,19,0.0 +25504,33,2.5,50,0.0 +25504,60,34,29,0.0 +25504,2,19,43,0.0 +25504,75,7.75,3,0.0 +25504,47,9.5,16,0.0 +25504,72,34.8,9,0.0 +25504,24,4.5,11,0.0 +25504,64,33.25,30,0.0 +25504,1,18,18,0.0 +25504,34,14,38,0.0 +25504,25,14,5,0.0 +25504,73,15,32,0.0 +25504,17,39,1,0.0 +25504,69,36,17,0.0 +25505,62,49.3,6,0.0 +25505,65,21.05,1,0.0 +25505,54,7.45,41,0.0 +25505,32,32,41,0.0 +25505,28,45.6,5,0.0 +25505,44,19.45,17,0.0 +25505,2,19,23,0.0 +25505,9,97,23,0.0 +25505,39,18,10,0.0 +25505,41,9.65,41,0.0 +25505,50,16.25,15,0.0 +25505,8,40,32,0.0 +25505,75,7.75,45,0.0 +25505,18,62.5,44,0.0 +25505,35,18,19,0.0 +25505,76,18,36,0.0 +25505,67,14,43,0.0 +25505,22,21,14,0.0 +25505,12,38,15,0.0 +25505,7,30,26,0.0 +25505,61,28.5,6,0.0 +25505,14,23.25,45,0.0 +25506,61,28.5,10,0.0 +25506,53,32.8,12,0.0 +25506,46,12,8,0.0 +25506,74,10,43,0.0 +25506,54,7.45,41,0.0 +25506,1,18,30,0.0 +25506,51,53,15,0.0 +25506,73,15,32,0.0 +25506,60,34,18,0.0 +25506,69,36,8,0.0 +25506,36,19,21,0.0 +25506,16,17.45,16,0.0 +25506,63,43.9,46,0.0 +25506,52,7,39,0.0 +25506,37,26,4,0.0 +25506,40,18.4,10,0.0 +25506,33,2.5,8,0.0 +25506,22,21,16,0.0 +25506,39,18,13,0.0 +25506,66,17,27,0.0 +25506,48,12.75,8,0.0 +25506,70,15,8,0.0 +25506,62,49.3,4,0.0 +25506,76,18,39,0.0 +25506,25,14,44,0.0 +25506,9,97,1,0.0 +25506,68,12.5,39,0.0 +25506,71,21.5,49,0.0 +25506,13,6,45,0.0 +25506,28,45.6,37,0.0 +25506,65,21.05,33,0.0 +25506,56,38,16,0.0 +25506,64,33.25,17,0.0 +25506,50,16.25,37,0.0 +25506,49,20,38,0.0 +25506,21,10,21,0.0 +25506,75,7.75,38,0.0 +25506,67,14,41,0.0 +25506,31,12.5,46,0.0 +25506,10,31,50,0.0 +25506,45,9.5,34,0.0 +25506,43,46,21,0.0 +25506,17,39,10,0.0 +25506,44,19.45,39,0.0 +25506,77,13,13,0.0 +25506,24,4.5,11,0.0 +25506,72,34.8,47,0.0 +25507,37,26,20,0.0 +25507,33,2.5,32,0.0 +25507,71,21.5,45,0.0 +25507,67,14,9,0.0 +25507,36,19,24,0.0 +25507,28,45.6,32,0.0 +25507,5,21.35,46,0.0 +25507,7,30,43,0.0 +25507,17,39,47,0.0 +25507,52,7,24,0.0 +25507,21,10,11,0.0 +25507,2,19,25,0.0 +25507,15,15.5,40,0.0 +25507,45,9.5,13,0.0 +25507,14,23.25,34,0.0 +25507,8,40,37,0.0 +25507,61,28.5,1,0.0 +25507,3,10,7,0.0 +25507,55,24,48,0.0 +25507,20,81,43,0.0 +25507,16,17.45,17,0.0 +25507,63,43.9,15,0.0 +25507,26,31.23,6,0.0 +25507,76,18,36,0.0 +25507,27,43.9,4,0.0 +25507,1,18,2,0.0 +25507,56,38,31,0.0 +25507,12,38,12,0.0 +25507,58,13.25,17,0.0 +25507,18,62.5,41,0.0 +25507,65,21.05,6,0.0 +25507,57,19.5,23,0.0 +25507,51,53,34,0.0 +25507,35,18,21,0.0 +25507,59,55,44,0.0 +25507,74,10,12,0.0 +25507,9,97,15,0.0 +25507,66,17,23,0.0 +25507,25,14,11,0.0 +25507,68,12.5,25,0.0 +25507,53,32.8,9,0.0 +25507,34,14,22,0.0 +25507,11,21,48,0.0 +25507,77,13,16,0.0 +25507,72,34.8,40,0.0 +25507,70,15,38,0.0 +25507,19,9.2,16,0.0 +25507,64,33.25,40,0.0 +25508,2,19,45,0.0 +25508,31,12.5,10,0.0 +25508,37,26,45,0.0 +25508,4,22,20,0.0 +25508,13,6,36,0.0 +25508,49,20,42,0.0 +25508,77,13,2,0.0 +25508,43,46,25,0.0 +25508,39,18,23,0.0 +25508,36,19,39,0.0 +25508,15,15.5,31,0.0 +25508,16,17.45,45,0.0 +25508,69,36,26,0.0 +25508,6,25,39,0.0 +25508,65,21.05,41,0.0 +25508,42,14,28,0.0 +25508,41,9.65,12,0.0 +25508,21,10,21,0.0 +25508,66,17,45,0.0 +25508,23,9,32,0.0 +25508,12,38,7,0.0 +25508,57,19.5,35,0.0 +25508,10,31,40,0.0 +25508,26,31.23,31,0.0 +25508,22,21,30,0.0 +25508,17,39,10,0.0 +25508,38,263.5,48,0.0 +25508,30,25.89,16,0.0 +25508,70,15,37,0.0 +25508,63,43.9,30,0.0 +25508,27,43.9,17,0.0 +25508,60,34,25,0.0 +25508,19,9.2,17,0.0 +25508,46,12,32,0.0 +25508,48,12.75,33,0.0 +25508,14,23.25,23,0.0 +25508,52,7,40,0.0 +25508,35,18,6,0.0 +25508,61,28.5,30,0.0 +25508,33,2.5,33,0.0 +25508,67,14,40,0.0 +25508,44,19.45,24,0.0 +25508,53,32.8,16,0.0 +25508,54,7.45,10,0.0 +25508,1,18,4,0.0 +25508,72,34.8,49,0.0 +25508,73,15,9,0.0 +25508,55,24,20,0.0 +25508,62,49.3,26,0.0 +25508,7,30,13,0.0 +25508,59,55,49,0.0 +25508,71,21.5,11,0.0 +25508,9,97,17,0.0 +25508,5,21.35,12,0.0 +25508,45,9.5,28,0.0 +25508,32,32,44,0.0 +25508,40,18.4,7,0.0 +25508,56,38,5,0.0 +25508,64,33.25,26,0.0 +25508,51,53,39,0.0 +25508,28,45.6,43,0.0 +25508,74,10,38,0.0 +25508,75,7.75,4,0.0 +25508,58,13.25,46,0.0 +25508,8,40,43,0.0 +25508,76,18,4,0.0 +25508,29,123.79,15,0.0 +25508,18,62.5,18,0.0 +25508,20,81,11,0.0 +25508,68,12.5,43,0.0 +25508,3,10,13,0.0 +25508,34,14,3,0.0 +25508,24,4.5,24,0.0 +25508,47,9.5,24,0.0 +25508,50,16.25,42,0.0 +25508,11,21,46,0.0 +25509,5,21.35,47,0.0 +25509,71,21.5,38,0.0 +25509,64,33.25,38,0.0 +25509,21,10,40,0.0 +25509,38,263.5,37,0.0 +25509,8,40,46,0.0 +25509,15,15.5,36,0.0 +25510,61,28.5,21,0.0 +25510,11,21,45,0.0 +25510,64,33.25,37,0.0 +25510,43,46,46,0.0 +25510,62,49.3,30,0.0 +25510,19,9.2,16,0.0 +25510,28,45.6,13,0.0 +25510,63,43.9,21,0.0 +25510,71,21.5,11,0.0 +25510,40,18.4,2,0.0 +25510,10,31,37,0.0 +25510,70,15,25,0.0 +25510,7,30,24,0.0 +25510,68,12.5,11,0.0 +25510,15,15.5,1,0.0 +25510,57,19.5,30,0.0 +25510,72,34.8,43,0.0 +25510,53,32.8,43,0.0 +25510,76,18,41,0.0 +25510,51,53,38,0.0 +25510,1,18,41,0.0 +25510,4,22,38,0.0 +25510,77,13,16,0.0 +25510,74,10,36,0.0 +25510,30,25.89,47,0.0 +25510,59,55,49,0.0 +25510,13,6,43,0.0 +25510,20,81,8,0.0 +25510,58,13.25,17,0.0 +25510,16,17.45,17,0.0 +25510,31,12.5,2,0.0 +25510,49,20,39,0.0 +25510,46,12,9,0.0 +25510,12,38,23,0.0 +25510,42,14,7,0.0 +25510,9,97,41,0.0 +25510,17,39,5,0.0 +25510,48,12.75,34,0.0 +25510,29,123.79,23,0.0 +25510,66,17,10,0.0 +25510,36,19,5,0.0 +25510,50,16.25,7,0.0 +25510,39,18,23,0.0 +25510,73,15,50,0.0 +25511,71,21.5,48,0.0 +25511,62,49.3,3,0.0 +25512,2,19,2,0.0 +25512,45,9.5,44,0.0 +25512,59,55,38,0.0 +25512,47,9.5,30,0.0 +25512,36,19,47,0.0 +25512,8,40,30,0.0 +25512,70,15,12,0.0 +25512,69,36,30,0.0 +25512,55,24,39,0.0 +25512,27,43.9,19,0.0 +25512,53,32.8,48,0.0 +25512,17,39,32,0.0 +25512,76,18,5,0.0 +25512,73,15,28,0.0 +25512,23,9,46,0.0 +25512,63,43.9,8,0.0 +25512,66,17,31,0.0 +25512,65,21.05,18,0.0 +25513,43,46,37,0.0 +25513,33,2.5,26,0.0 +25513,24,4.5,33,0.0 +25513,47,9.5,41,0.0 +25513,27,43.9,5,0.0 +25513,42,14,11,0.0 +25513,46,12,43,0.0 +25513,70,15,44,0.0 +25513,10,31,48,0.0 +25513,35,18,50,0.0 +25513,39,18,45,0.0 +25513,26,31.23,14,0.0 +25513,12,38,2,0.0 +25513,65,21.05,36,0.0 +25513,61,28.5,9,0.0 +25513,29,123.79,7,0.0 +25513,49,20,8,0.0 +25513,58,13.25,24,0.0 +25513,6,25,34,0.0 +25513,1,18,13,0.0 +25513,8,40,47,0.0 +25513,60,34,28,0.0 +25513,2,19,17,0.0 +25513,76,18,46,0.0 +25513,57,19.5,35,0.0 +25513,63,43.9,12,0.0 +25513,25,14,18,0.0 +25513,64,33.25,17,0.0 +25513,40,18.4,28,0.0 +25513,4,22,2,0.0 +25513,34,14,41,0.0 +25513,16,17.45,42,0.0 +25513,15,15.5,22,0.0 +25513,11,21,42,0.0 +25513,52,7,33,0.0 +25513,73,15,21,0.0 +25513,22,21,37,0.0 +25513,3,10,12,0.0 +25513,51,53,6,0.0 +25513,75,7.75,13,0.0 +25513,18,62.5,36,0.0 +25513,45,9.5,18,0.0 +25513,48,12.75,31,0.0 +25513,56,38,44,0.0 +25513,9,97,31,0.0 +25513,53,32.8,33,0.0 +25513,59,55,8,0.0 +25513,55,24,27,0.0 +25513,41,9.65,35,0.0 +25513,23,9,40,0.0 +25513,44,19.45,42,0.0 +25513,37,26,29,0.0 +25513,66,17,48,0.0 +25513,31,12.5,4,0.0 +25513,69,36,46,0.0 +25513,17,39,41,0.0 +25513,71,21.5,31,0.0 +25513,20,81,29,0.0 +25513,13,6,29,0.0 +25513,19,9.2,4,0.0 +25513,77,13,4,0.0 +25513,32,32,16,0.0 +25513,28,45.6,8,0.0 +25513,14,23.25,45,0.0 +25513,5,21.35,6,0.0 +25513,62,49.3,20,0.0 +25513,30,25.89,28,0.0 +25513,7,30,37,0.0 +25513,21,10,47,0.0 +25513,54,7.45,39,0.0 +25513,67,14,23,0.0 +25513,72,34.8,32,0.0 +25513,74,10,41,0.0 +25513,36,19,20,0.0 +25514,70,15,4,0.0 +25515,37,26,26,0.0 +25515,56,38,44,0.0 +25515,8,40,10,0.0 +25515,51,53,44,0.0 +25515,72,34.8,34,0.0 +25515,24,4.5,43,0.0 +25515,48,12.75,49,0.0 +25515,17,39,4,0.0 +25515,59,55,22,0.0 +25515,23,9,42,0.0 +25515,14,23.25,44,0.0 +25515,57,19.5,30,0.0 +25515,1,18,29,0.0 +25515,47,9.5,46,0.0 +25516,10,31,33,0.0 +25516,41,9.65,34,0.0 +25516,7,30,3,0.0 +25516,38,263.5,35,0.0 +25516,22,21,23,0.0 +25516,74,10,48,0.0 +25516,23,9,16,0.0 +25516,44,19.45,44,0.0 +25516,15,15.5,31,0.0 +25516,50,16.25,38,0.0 +25516,43,46,7,0.0 +25516,26,31.23,48,0.0 +25516,18,62.5,48,0.0 +25516,76,18,32,0.0 +25516,69,36,24,0.0 +25516,34,14,9,0.0 +25516,46,12,35,0.0 +25516,4,22,8,0.0 +25516,27,43.9,24,0.0 +25516,11,21,29,0.0 +25516,71,21.5,50,0.0 +25516,32,32,24,0.0 +25516,13,6,33,0.0 +25516,58,13.25,17,0.0 +25516,73,15,1,0.0 +25516,55,24,27,0.0 +25516,56,38,9,0.0 +25516,20,81,9,0.0 +25516,31,12.5,10,0.0 +25516,6,25,9,0.0 +25516,75,7.75,34,0.0 +25516,16,17.45,9,0.0 +25516,49,20,50,0.0 +25516,33,2.5,48,0.0 +25516,47,9.5,34,0.0 +25516,29,123.79,20,0.0 +25516,53,32.8,40,0.0 +25516,37,26,9,0.0 +25516,1,18,49,0.0 +25516,35,18,38,0.0 +25516,19,9.2,8,0.0 +25516,66,17,7,0.0 +25516,54,7.45,37,0.0 +25516,2,19,32,0.0 +25516,25,14,39,0.0 +25516,39,18,50,0.0 +25516,5,21.35,50,0.0 +25516,45,9.5,46,0.0 +25516,57,19.5,19,0.0 +25516,65,21.05,18,0.0 +25516,8,40,42,0.0 +25516,62,49.3,10,0.0 +25516,17,39,5,0.0 +25516,51,53,50,0.0 +25516,30,25.89,11,0.0 +25516,64,33.25,39,0.0 +25516,9,97,24,0.0 +25516,70,15,15,0.0 +25516,52,7,30,0.0 +25516,21,10,47,0.0 +25516,72,34.8,17,0.0 +25516,42,14,31,0.0 +25516,14,23.25,43,0.0 +25516,61,28.5,46,0.0 +25516,24,4.5,32,0.0 +25517,61,28.5,32,0.0 +25517,67,14,2,0.0 +25517,55,24,39,0.0 +25517,7,30,50,0.0 +25517,56,38,48,0.0 +25517,76,18,18,0.0 +25517,49,20,12,0.0 +25517,47,9.5,6,0.0 +25517,26,31.23,33,0.0 +25517,73,15,8,0.0 +25517,1,18,15,0.0 +25517,3,10,23,0.0 +25517,43,46,44,0.0 +25517,35,18,49,0.0 +25517,41,9.65,1,0.0 +25517,6,25,36,0.0 +25517,21,10,50,0.0 +25517,44,19.45,8,0.0 +25517,29,123.79,19,0.0 +25517,39,18,10,0.0 +25517,60,34,28,0.0 +25517,53,32.8,7,0.0 +25517,28,45.6,40,0.0 +25517,24,4.5,29,0.0 +25517,50,16.25,31,0.0 +25517,70,15,7,0.0 +25517,51,53,22,0.0 +25517,69,36,41,0.0 +25517,22,21,31,0.0 +25517,15,15.5,50,0.0 +25517,48,12.75,26,0.0 +25517,10,31,13,0.0 +25517,77,13,17,0.0 +25517,14,23.25,24,0.0 +25517,17,39,17,0.0 +25517,18,62.5,15,0.0 +25517,75,7.75,27,0.0 +25517,72,34.8,1,0.0 +25517,23,9,26,0.0 +25517,16,17.45,5,0.0 +25518,3,10,7,0.0 +25518,53,32.8,24,0.0 +25518,43,46,29,0.0 +25518,29,123.79,5,0.0 +25518,16,17.45,6,0.0 +25518,23,9,10,0.0 +25518,61,28.5,26,0.0 +25518,25,14,24,0.0 +25518,59,55,27,0.0 +25518,68,12.5,46,0.0 +25518,14,23.25,36,0.0 +25518,77,13,20,0.0 +25518,62,49.3,35,0.0 +25518,38,263.5,25,0.0 +25518,27,43.9,3,0.0 +25518,72,34.8,10,0.0 +25518,42,14,24,0.0 +25518,55,24,9,0.0 +25518,44,19.45,4,0.0 +25518,39,18,49,0.0 +25518,37,26,30,0.0 +25518,67,14,44,0.0 +25518,71,21.5,48,0.0 +25518,40,18.4,27,0.0 +25518,41,9.65,8,0.0 +25518,47,9.5,21,0.0 +25518,69,36,31,0.0 +25518,9,97,10,0.0 +25518,50,16.25,32,0.0 +25518,70,15,4,0.0 +25518,34,14,9,0.0 +25518,75,7.75,47,0.0 +25518,18,62.5,49,0.0 +25518,2,19,9,0.0 +25518,66,17,25,0.0 +25518,35,18,7,0.0 +25518,28,45.6,27,0.0 +25519,40,18.4,22,0.0 +25519,21,10,29,0.0 +25519,14,23.25,21,0.0 +25519,61,28.5,1,0.0 +25519,71,21.5,1,0.0 +25519,3,10,33,0.0 +25519,57,19.5,19,0.0 +25519,43,46,21,0.0 +25519,67,14,50,0.0 +25519,52,7,4,0.0 +25519,54,7.45,24,0.0 +25519,66,17,35,0.0 +25519,48,12.75,42,0.0 +25519,49,20,31,0.0 +25519,59,55,2,0.0 +25519,72,34.8,47,0.0 +25519,4,22,29,0.0 +25519,38,263.5,24,0.0 +25519,37,26,11,0.0 +25519,28,45.6,13,0.0 +25519,60,34,31,0.0 +25519,46,12,48,0.0 +25519,32,32,1,0.0 +25519,42,14,11,0.0 +25519,29,123.79,23,0.0 +25519,36,19,44,0.0 +25519,74,10,42,0.0 +25519,31,12.5,2,0.0 +25519,12,38,24,0.0 +25519,47,9.5,12,0.0 +25519,33,2.5,2,0.0 +25519,34,14,26,0.0 +25519,8,40,6,0.0 +25519,10,31,11,0.0 +25519,76,18,47,0.0 +25519,55,24,47,0.0 +25519,58,13.25,42,0.0 +25519,17,39,3,0.0 +25519,24,4.5,14,0.0 +25519,26,31.23,46,0.0 +25519,7,30,46,0.0 +25519,15,15.5,20,0.0 +25519,27,43.9,12,0.0 +25519,18,62.5,24,0.0 +25519,62,49.3,46,0.0 +25519,9,97,26,0.0 +25519,68,12.5,24,0.0 +25519,30,25.89,21,0.0 +25519,23,9,13,0.0 +25519,65,21.05,6,0.0 +25519,20,81,1,0.0 +25519,6,25,13,0.0 +25519,50,16.25,22,0.0 +25519,16,17.45,27,0.0 +25519,22,21,42,0.0 +25519,11,21,29,0.0 +25519,53,32.8,1,0.0 +25519,64,33.25,38,0.0 +25519,25,14,7,0.0 +25519,63,43.9,16,0.0 +25519,35,18,20,0.0 +25519,73,15,40,0.0 +25519,39,18,20,0.0 +25519,19,9.2,45,0.0 +25519,13,6,46,0.0 +25519,51,53,1,0.0 +25520,31,12.5,38,0.0 +25520,47,9.5,32,0.0 +25520,28,45.6,28,0.0 +25520,9,97,22,0.0 +25520,61,28.5,16,0.0 +25520,59,55,7,0.0 +25520,46,12,29,0.0 +25520,62,49.3,10,0.0 +25520,34,14,2,0.0 +25520,48,12.75,41,0.0 +25520,17,39,23,0.0 +25520,55,24,19,0.0 +25520,70,15,24,0.0 +25520,36,19,33,0.0 +25520,74,10,47,0.0 +25520,53,32.8,34,0.0 +25520,58,13.25,2,0.0 +25520,7,30,20,0.0 +25520,13,6,22,0.0 +25520,11,21,13,0.0 +25520,8,40,12,0.0 +25520,29,123.79,48,0.0 +25520,3,10,34,0.0 +25520,41,9.65,14,0.0 +25520,51,53,50,0.0 +25520,43,46,46,0.0 +25520,10,31,11,0.0 +25520,76,18,33,0.0 +25520,56,38,3,0.0 +25520,33,2.5,46,0.0 +25520,37,26,4,0.0 +25520,38,263.5,2,0.0 +25520,35,18,4,0.0 +25520,20,81,28,0.0 +25520,32,32,3,0.0 +25520,69,36,35,0.0 +25520,54,7.45,10,0.0 +25520,63,43.9,19,0.0 +25520,16,17.45,11,0.0 +25520,45,9.5,1,0.0 +25520,27,43.9,27,0.0 +25520,71,21.5,23,0.0 +25520,14,23.25,10,0.0 +25520,4,22,4,0.0 +25520,77,13,23,0.0 +25520,21,10,4,0.0 +25520,19,9.2,28,0.0 +25520,1,18,43,0.0 +25520,50,16.25,33,0.0 +25520,67,14,41,0.0 +25520,52,7,28,0.0 +25520,75,7.75,46,0.0 +25520,66,17,34,0.0 +25520,60,34,43,0.0 +25520,72,34.8,6,0.0 +25520,22,21,18,0.0 +25520,6,25,19,0.0 +25520,44,19.45,27,0.0 +25520,30,25.89,5,0.0 +25520,15,15.5,6,0.0 +25520,65,21.05,21,0.0 +25520,39,18,40,0.0 +25520,2,19,17,0.0 +25520,64,33.25,13,0.0 +25520,73,15,8,0.0 +25520,42,14,28,0.0 +25520,24,4.5,35,0.0 +25520,25,14,18,0.0 +25521,77,13,14,0.0 +25521,36,19,29,0.0 +25521,18,62.5,38,0.0 +25521,7,30,38,0.0 +25521,26,31.23,17,0.0 +25521,20,81,3,0.0 +25521,44,19.45,43,0.0 +25521,31,12.5,32,0.0 +25521,19,9.2,7,0.0 +25521,49,20,34,0.0 +25521,60,34,18,0.0 +25521,13,6,2,0.0 +25521,24,4.5,13,0.0 +25521,3,10,36,0.0 +25521,61,28.5,38,0.0 +25521,12,38,34,0.0 +25521,59,55,8,0.0 +25521,46,12,48,0.0 +25521,48,12.75,27,0.0 +25521,17,39,12,0.0 +25521,50,16.25,23,0.0 +25521,69,36,47,0.0 +25521,45,9.5,8,0.0 +25521,53,32.8,14,0.0 +25521,40,18.4,4,0.0 +25521,37,26,41,0.0 +25521,41,9.65,20,0.0 +25521,33,2.5,32,0.0 +25521,57,19.5,24,0.0 +25521,23,9,16,0.0 +25521,38,263.5,43,0.0 +25521,76,18,1,0.0 +25521,65,21.05,33,0.0 +25521,70,15,27,0.0 +25521,67,14,22,0.0 +25521,71,21.5,1,0.0 +25521,22,21,5,0.0 +25521,55,24,19,0.0 +25521,9,97,29,0.0 +25521,66,17,36,0.0 +25521,1,18,19,0.0 +25521,72,34.8,12,0.0 +25521,21,10,42,0.0 +25521,51,53,44,0.0 +25521,56,38,44,0.0 +25521,16,17.45,16,0.0 +25521,73,15,4,0.0 +25521,42,14,36,0.0 +25521,29,123.79,21,0.0 +25521,75,7.75,33,0.0 +25521,11,21,46,0.0 +25521,25,14,8,0.0 +25521,10,31,43,0.0 +25521,4,22,39,0.0 +25521,74,10,6,0.0 +25521,35,18,25,0.0 +25521,34,14,34,0.0 +25521,30,25.89,16,0.0 +25521,14,23.25,10,0.0 +25521,62,49.3,2,0.0 +25521,27,43.9,44,0.0 +25521,28,45.6,40,0.0 +25521,58,13.25,5,0.0 +25521,39,18,2,0.0 +25521,5,21.35,31,0.0 +25522,37,26,41,0.0 +25522,2,19,37,0.0 +25522,13,6,10,0.0 +25523,55,24,5,0.0 +25523,20,81,19,0.0 +25523,6,25,29,0.0 +25523,42,14,37,0.0 +25523,15,15.5,41,0.0 +25523,19,9.2,32,0.0 +25523,36,19,36,0.0 +25523,28,45.6,38,0.0 +25523,34,14,28,0.0 +25523,4,22,3,0.0 +25523,49,20,14,0.0 +25523,39,18,20,0.0 +25523,52,7,45,0.0 +25523,41,9.65,11,0.0 +25523,50,16.25,50,0.0 +25523,9,97,9,0.0 +25523,10,31,20,0.0 +25523,68,12.5,45,0.0 +25523,53,32.8,8,0.0 +25523,64,33.25,16,0.0 +25523,43,46,27,0.0 +25523,47,9.5,38,0.0 +25523,67,14,2,0.0 +25523,57,19.5,5,0.0 +25523,70,15,20,0.0 +25523,1,18,18,0.0 +25523,69,36,44,0.0 +25523,26,31.23,29,0.0 +25523,74,10,33,0.0 +25523,63,43.9,42,0.0 +25523,35,18,34,0.0 +25523,30,25.89,30,0.0 +25523,61,28.5,9,0.0 +25523,40,18.4,16,0.0 +25523,45,9.5,30,0.0 +25523,8,40,5,0.0 +25523,48,12.75,38,0.0 +25523,76,18,1,0.0 +25523,73,15,38,0.0 +25523,7,30,5,0.0 +25523,31,12.5,25,0.0 +25523,72,34.8,19,0.0 +25523,18,62.5,44,0.0 +25523,75,7.75,36,0.0 +25523,17,39,18,0.0 +25523,21,10,5,0.0 +25523,37,26,33,0.0 +25523,11,21,8,0.0 +25523,5,21.35,4,0.0 +25523,58,13.25,6,0.0 +25523,3,10,36,0.0 +25523,44,19.45,8,0.0 +25523,23,9,47,0.0 +25523,71,21.5,15,0.0 +25523,32,32,43,0.0 +25523,60,34,44,0.0 +25523,24,4.5,8,0.0 +25523,66,17,18,0.0 +25523,54,7.45,23,0.0 +25523,33,2.5,11,0.0 +25523,27,43.9,40,0.0 +25523,12,38,50,0.0 +25523,29,123.79,36,0.0 +25523,14,23.25,15,0.0 +25523,77,13,40,0.0 +25523,59,55,32,0.0 +25523,2,19,7,0.0 +25523,25,14,38,0.0 +25523,38,263.5,6,0.0 +25523,13,6,8,0.0 +25523,22,21,20,0.0 +25523,56,38,31,0.0 +25523,62,49.3,15,0.0 +25524,55,24,21,0.0 +25524,44,19.45,49,0.0 +25524,49,20,1,0.0 +25524,23,9,49,0.0 +25524,9,97,24,0.0 +25524,48,12.75,23,0.0 +25524,61,28.5,11,0.0 +25524,70,15,35,0.0 +25524,3,10,10,0.0 +25524,75,7.75,9,0.0 +25524,64,33.25,31,0.0 +25524,33,2.5,19,0.0 +25524,43,46,38,0.0 +25524,5,21.35,31,0.0 +25524,26,31.23,18,0.0 +25524,38,263.5,1,0.0 +25524,7,30,38,0.0 +25524,8,40,33,0.0 +25524,22,21,13,0.0 +25524,58,13.25,2,0.0 +25524,42,14,23,0.0 +25524,62,49.3,40,0.0 +25524,10,31,9,0.0 +25524,67,14,2,0.0 +25524,2,19,41,0.0 +25524,52,7,47,0.0 +25524,73,15,31,0.0 +25524,1,18,9,0.0 +25524,71,21.5,38,0.0 +25524,47,9.5,7,0.0 +25524,32,32,16,0.0 +25524,28,45.6,44,0.0 +25524,13,6,39,0.0 +25524,37,26,26,0.0 +25524,76,18,35,0.0 +25524,45,9.5,36,0.0 +25524,39,18,10,0.0 +25525,51,53,23,0.0 +25525,17,39,15,0.0 +25525,61,28.5,44,0.0 +25525,10,31,48,0.0 +25525,37,26,16,0.0 +25525,40,18.4,38,0.0 +25525,66,17,29,0.0 +25525,39,18,22,0.0 +25525,3,10,10,0.0 +25525,25,14,33,0.0 +25525,36,19,18,0.0 +25525,29,123.79,47,0.0 +25525,33,2.5,47,0.0 +25525,8,40,7,0.0 +25525,55,24,7,0.0 +25525,44,19.45,20,0.0 +25525,41,9.65,43,0.0 +25525,59,55,16,0.0 +25525,19,9.2,10,0.0 +25525,67,14,2,0.0 +25525,12,38,42,0.0 +25525,13,6,4,0.0 +25525,57,19.5,38,0.0 +25525,11,21,21,0.0 +25526,69,36,28,0.0 +25526,62,49.3,47,0.0 +25526,18,62.5,22,0.0 +25526,36,19,29,0.0 +25526,66,17,31,0.0 +25526,73,15,37,0.0 +25526,33,2.5,12,0.0 +25527,66,17,36,0.0 +25527,4,22,21,0.0 +25527,10,31,31,0.0 +25527,35,18,6,0.0 +25527,45,9.5,1,0.0 +25527,48,12.75,46,0.0 +25527,16,17.45,29,0.0 +25527,74,10,5,0.0 +25527,27,43.9,32,0.0 +25527,69,36,41,0.0 +25527,75,7.75,4,0.0 +25527,55,24,7,0.0 +25527,15,15.5,18,0.0 +25527,23,9,36,0.0 +25527,59,55,28,0.0 +25527,38,263.5,24,0.0 +25527,61,28.5,48,0.0 +25527,39,18,32,0.0 +25527,62,49.3,1,0.0 +25527,49,20,1,0.0 +25527,2,19,34,0.0 +25527,14,23.25,32,0.0 +25527,9,97,27,0.0 +25527,58,13.25,47,0.0 +25527,70,15,4,0.0 +25527,50,16.25,49,0.0 +25528,7,30,2,0.0 +25528,37,26,35,0.0 +25528,10,31,9,0.0 +25528,19,9.2,5,0.0 +25528,47,9.5,44,0.0 +25528,12,38,25,0.0 +25528,66,17,26,0.0 +25528,40,18.4,11,0.0 +25528,61,28.5,10,0.0 +25528,75,7.75,13,0.0 +25528,17,39,6,0.0 +25528,22,21,20,0.0 +25528,16,17.45,19,0.0 +25528,30,25.89,6,0.0 +25528,50,16.25,45,0.0 +25528,68,12.5,17,0.0 +25528,48,12.75,22,0.0 +25528,45,9.5,35,0.0 +25528,63,43.9,7,0.0 +25528,27,43.9,8,0.0 +25528,42,14,32,0.0 +25528,76,18,31,0.0 +25528,52,7,37,0.0 +25528,46,12,28,0.0 +25528,31,12.5,46,0.0 +25528,59,55,2,0.0 +25528,4,22,23,0.0 +25528,69,36,50,0.0 +25528,23,9,49,0.0 +25528,43,46,27,0.0 +25528,55,24,22,0.0 +25528,3,10,40,0.0 +25528,13,6,25,0.0 +25528,18,62.5,18,0.0 +25528,38,263.5,28,0.0 +25528,5,21.35,23,0.0 +25528,41,9.65,6,0.0 +25528,25,14,8,0.0 +25528,71,21.5,30,0.0 +25528,70,15,2,0.0 +25528,1,18,21,0.0 +25528,54,7.45,50,0.0 +25528,49,20,7,0.0 +25528,73,15,32,0.0 +25528,26,31.23,31,0.0 +25528,62,49.3,19,0.0 +25528,6,25,10,0.0 +25528,67,14,43,0.0 +25528,20,81,4,0.0 +25528,51,53,12,0.0 +25528,33,2.5,32,0.0 +25528,29,123.79,47,0.0 +25529,37,26,36,0.0 +25529,36,19,22,0.0 +25529,61,28.5,7,0.0 +25529,71,21.5,12,0.0 +25529,67,14,44,0.0 +25529,76,18,42,0.0 +25529,31,12.5,30,0.0 +25529,72,34.8,6,0.0 +25529,29,123.79,20,0.0 +25529,54,7.45,42,0.0 +25529,20,81,45,0.0 +25529,60,34,6,0.0 +25529,13,6,3,0.0 +25529,21,10,30,0.0 +25529,69,36,1,0.0 +25529,11,21,24,0.0 +25529,3,10,27,0.0 +25529,14,23.25,19,0.0 +25529,75,7.75,44,0.0 +25529,57,19.5,5,0.0 +25530,40,18.4,14,0.0 +25530,10,31,25,0.0 +25530,7,30,24,0.0 +25530,14,23.25,20,0.0 +25530,68,12.5,6,0.0 +25530,46,12,46,0.0 +25530,18,62.5,10,0.0 +25530,62,49.3,37,0.0 +25530,36,19,22,0.0 +25530,29,123.79,33,0.0 +25530,53,32.8,15,0.0 +25530,21,10,18,0.0 +25530,42,14,6,0.0 +25530,15,15.5,23,0.0 +25530,5,21.35,9,0.0 +25530,13,6,32,0.0 +25530,60,34,24,0.0 +25530,12,38,25,0.0 +25530,75,7.75,33,0.0 +25530,33,2.5,31,0.0 +25530,56,38,40,0.0 +25530,50,16.25,22,0.0 +25530,26,31.23,35,0.0 +25530,35,18,29,0.0 +25530,39,18,8,0.0 +25530,3,10,27,0.0 +25530,58,13.25,3,0.0 +25530,65,21.05,12,0.0 +25530,28,45.6,25,0.0 +25530,17,39,42,0.0 +25530,77,13,10,0.0 +25530,8,40,14,0.0 +25530,52,7,42,0.0 +25530,73,15,30,0.0 +25530,69,36,27,0.0 +25530,38,263.5,34,0.0 +25531,63,43.9,46,0.0 +25531,25,14,27,0.0 +25531,62,49.3,9,0.0 +25531,17,39,39,0.0 +25531,3,10,22,0.0 +25531,8,40,28,0.0 +25531,51,53,35,0.0 +25531,68,12.5,11,0.0 +25531,39,18,36,0.0 +25531,20,81,15,0.0 +25531,11,21,8,0.0 +25531,50,16.25,24,0.0 +25531,60,34,29,0.0 +25531,13,6,33,0.0 +25531,43,46,41,0.0 +25531,65,21.05,35,0.0 +25531,7,30,1,0.0 +25531,57,19.5,4,0.0 +25531,71,21.5,39,0.0 +25531,19,9.2,33,0.0 +25531,61,28.5,16,0.0 +25531,35,18,5,0.0 +25531,2,19,4,0.0 +25531,53,32.8,49,0.0 +25531,27,43.9,7,0.0 +25531,18,62.5,39,0.0 +25531,59,55,32,0.0 +25531,42,14,10,0.0 +25531,37,26,44,0.0 +25531,24,4.5,4,0.0 +25531,33,2.5,18,0.0 +25531,41,9.65,7,0.0 +25531,22,21,42,0.0 +25531,34,14,42,0.0 +25531,10,31,40,0.0 +25531,23,9,34,0.0 +25531,77,13,17,0.0 +25531,52,7,13,0.0 +25531,12,38,39,0.0 +25531,67,14,26,0.0 +25531,48,12.75,16,0.0 +25531,26,31.23,28,0.0 +25531,66,17,1,0.0 +25531,36,19,3,0.0 +25531,74,10,24,0.0 +25531,73,15,41,0.0 +25531,44,19.45,16,0.0 +25531,32,32,8,0.0 +25531,21,10,36,0.0 +25531,4,22,16,0.0 +25531,49,20,35,0.0 +25531,75,7.75,16,0.0 +25531,64,33.25,9,0.0 +25531,5,21.35,21,0.0 +25531,76,18,16,0.0 +25531,55,24,44,0.0 +25531,70,15,4,0.0 +25531,47,9.5,11,0.0 +25531,1,18,28,0.0 +25532,13,6,32,0.0 +25532,55,24,39,0.0 +25532,6,25,45,0.0 +25532,65,21.05,48,0.0 +25533,27,43.9,2,0.0 +25533,66,17,28,0.0 +25533,70,15,18,0.0 +25533,62,49.3,18,0.0 +25533,13,6,22,0.0 +25533,76,18,3,0.0 +25533,19,9.2,23,0.0 +25533,41,9.65,46,0.0 +25533,64,33.25,15,0.0 +25533,2,19,11,0.0 +25533,4,22,49,0.0 +25533,61,28.5,24,0.0 +25533,6,25,41,0.0 +25533,14,23.25,35,0.0 +25533,46,12,48,0.0 +25533,74,10,14,0.0 +25533,59,55,50,0.0 +25533,48,12.75,14,0.0 +25533,43,46,17,0.0 +25533,12,38,33,0.0 +25533,21,10,11,0.0 +25533,11,21,35,0.0 +25533,71,21.5,32,0.0 +25533,25,14,15,0.0 +25533,32,32,27,0.0 +25533,51,53,10,0.0 +25533,49,20,2,0.0 +25533,54,7.45,33,0.0 +25533,47,9.5,23,0.0 +25533,38,263.5,44,0.0 +25533,10,31,43,0.0 +25533,20,81,30,0.0 +25533,16,17.45,19,0.0 +25533,34,14,47,0.0 +25533,35,18,18,0.0 +25533,73,15,44,0.0 +25533,50,16.25,35,0.0 +25533,23,9,31,0.0 +25533,53,32.8,38,0.0 +25533,40,18.4,17,0.0 +25533,33,2.5,49,0.0 +25533,60,34,13,0.0 +25533,36,19,7,0.0 +25533,68,12.5,13,0.0 +25533,29,123.79,39,0.0 +25533,28,45.6,32,0.0 +25533,3,10,43,0.0 +25533,63,43.9,27,0.0 +25533,77,13,36,0.0 +25533,7,30,33,0.0 +25533,57,19.5,49,0.0 +25533,45,9.5,43,0.0 +25533,42,14,9,0.0 +25533,75,7.75,35,0.0 +25533,56,38,9,0.0 +25533,8,40,3,0.0 +25533,31,12.5,2,0.0 +25533,18,62.5,3,0.0 +25533,67,14,36,0.0 +25533,26,31.23,9,0.0 +25533,30,25.89,6,0.0 +25533,17,39,42,0.0 +25533,58,13.25,50,0.0 +25533,65,21.05,21,0.0 +25533,1,18,18,0.0 +25533,55,24,11,0.0 +25533,39,18,22,0.0 +25533,72,34.8,15,0.0 +25533,24,4.5,10,0.0 +25533,52,7,16,0.0 +25533,9,97,34,0.0 +25533,37,26,49,0.0 +25533,5,21.35,8,0.0 +25533,15,15.5,30,0.0 +25533,22,21,23,0.0 +25533,44,19.45,13,0.0 +25533,69,36,5,0.0 +25534,15,15.5,31,0.0 +25534,10,31,36,0.0 +25534,56,38,7,0.0 +25534,18,62.5,19,0.0 +25534,40,18.4,19,0.0 +25534,55,24,5,0.0 +25534,12,38,40,0.0 +25534,41,9.65,6,0.0 +25534,63,43.9,8,0.0 +25534,11,21,42,0.0 +25534,67,14,18,0.0 +25534,77,13,50,0.0 +25534,49,20,13,0.0 +25534,47,9.5,50,0.0 +25534,26,31.23,34,0.0 +25534,3,10,37,0.0 +25534,25,14,10,0.0 +25534,38,263.5,23,0.0 +25534,68,12.5,36,0.0 +25534,24,4.5,10,0.0 +25534,62,49.3,25,0.0 +25534,45,9.5,6,0.0 +25534,35,18,21,0.0 +25534,32,32,26,0.0 +25534,57,19.5,21,0.0 +25534,28,45.6,17,0.0 +25534,70,15,32,0.0 +25534,9,97,11,0.0 +25534,60,34,38,0.0 +25534,34,14,19,0.0 +25534,58,13.25,33,0.0 +25535,8,40,4,0.0 +25535,29,123.79,28,0.0 +25535,21,10,13,0.0 +25535,13,6,1,0.0 +25535,39,18,41,0.0 +25535,59,55,22,0.0 +25535,18,62.5,50,0.0 +25535,7,30,41,0.0 +25535,71,21.5,33,0.0 +25535,66,17,2,0.0 +25535,45,9.5,31,0.0 +25535,11,21,32,0.0 +25535,17,39,35,0.0 +25535,16,17.45,26,0.0 +25535,12,38,35,0.0 +25535,24,4.5,16,0.0 +25535,43,46,22,0.0 +25535,67,14,32,0.0 +25535,35,18,40,0.0 +25535,40,18.4,11,0.0 +25535,34,14,26,0.0 +25535,64,33.25,17,0.0 +25535,27,43.9,32,0.0 +25535,76,18,22,0.0 +25535,32,32,37,0.0 +25535,52,7,13,0.0 +25535,10,31,43,0.0 +25535,60,34,33,0.0 +25535,44,19.45,30,0.0 +25535,65,21.05,22,0.0 +25535,75,7.75,24,0.0 +25535,73,15,34,0.0 +25535,42,14,15,0.0 +25535,2,19,42,0.0 +25535,58,13.25,42,0.0 +25535,74,10,17,0.0 +25535,30,25.89,29,0.0 +25535,46,12,9,0.0 +25535,47,9.5,45,0.0 +25535,62,49.3,32,0.0 +25535,23,9,28,0.0 +25535,14,23.25,26,0.0 +25535,28,45.6,37,0.0 +25535,41,9.65,29,0.0 +25535,22,21,27,0.0 +25535,4,22,14,0.0 +25535,20,81,30,0.0 +25535,53,32.8,48,0.0 +25535,33,2.5,17,0.0 +25535,54,7.45,34,0.0 +25535,19,9.2,20,0.0 +25535,36,19,30,0.0 +25535,61,28.5,6,0.0 +25535,3,10,3,0.0 +25536,30,25.89,23,0.0 +25536,14,23.25,31,0.0 +25536,29,123.79,10,0.0 +25536,50,16.25,29,0.0 +25536,51,53,44,0.0 +25536,72,34.8,32,0.0 +25536,40,18.4,26,0.0 +25536,67,14,28,0.0 +25536,43,46,7,0.0 +25536,57,19.5,24,0.0 +25536,41,9.65,29,0.0 +25536,6,25,24,0.0 +25536,18,62.5,10,0.0 +25536,8,40,28,0.0 +25536,49,20,15,0.0 +25536,27,43.9,27,0.0 +25536,22,21,7,0.0 +25536,70,15,9,0.0 +25536,37,26,38,0.0 +25536,54,7.45,33,0.0 +25536,74,10,36,0.0 +25536,31,12.5,7,0.0 +25536,61,28.5,10,0.0 +25536,58,13.25,48,0.0 +25536,10,31,21,0.0 +25536,56,38,46,0.0 +25537,2,19,14,0.0 +25537,75,7.75,32,0.0 +25537,12,38,2,0.0 +25537,11,21,27,0.0 +25537,52,7,45,0.0 +25537,31,12.5,9,0.0 +25537,71,21.5,48,0.0 +25537,41,9.65,41,0.0 +25537,36,19,30,0.0 +25537,34,14,3,0.0 +25537,30,25.89,6,0.0 +25537,15,15.5,20,0.0 +25537,74,10,50,0.0 +25537,18,62.5,23,0.0 +25537,69,36,15,0.0 +25537,9,97,24,0.0 +25537,13,6,33,0.0 +25537,51,53,40,0.0 +25537,7,30,15,0.0 +25537,46,12,19,0.0 +25537,43,46,29,0.0 +25537,47,9.5,38,0.0 +25537,50,16.25,17,0.0 +25537,76,18,25,0.0 +25537,73,15,23,0.0 +25537,62,49.3,39,0.0 +25538,32,32,24,0.0 +25538,21,10,19,0.0 +25538,4,22,36,0.0 +25538,26,31.23,42,0.0 +25538,61,28.5,42,0.0 +25538,36,19,45,0.0 +25538,59,55,50,0.0 +25538,11,21,35,0.0 +25538,37,26,50,0.0 +25538,72,34.8,5,0.0 +25538,1,18,28,0.0 +25538,3,10,23,0.0 +25538,20,81,36,0.0 +25538,71,21.5,16,0.0 +25538,13,6,13,0.0 +25538,9,97,40,0.0 +25538,62,49.3,18,0.0 +25538,58,13.25,43,0.0 +25538,67,14,8,0.0 +25538,39,18,41,0.0 +25538,70,15,9,0.0 +25538,44,19.45,6,0.0 +25538,38,263.5,47,0.0 +25538,55,24,43,0.0 +25539,57,19.5,45,0.0 +25539,54,7.45,25,0.0 +25539,14,23.25,7,0.0 +25539,52,7,45,0.0 +25539,27,43.9,34,0.0 +25539,6,25,22,0.0 +25539,10,31,47,0.0 +25539,22,21,23,0.0 +25539,73,15,2,0.0 +25539,36,19,13,0.0 +25539,71,21.5,38,0.0 +25539,1,18,10,0.0 +25539,13,6,41,0.0 +25539,15,15.5,14,0.0 +25539,9,97,22,0.0 +25539,62,49.3,38,0.0 +25539,39,18,19,0.0 +25540,35,18,16,0.0 +25540,31,12.5,27,0.0 +25540,46,12,8,0.0 +25540,49,20,39,0.0 +25540,7,30,6,0.0 +25540,63,43.9,42,0.0 +25540,76,18,2,0.0 +25540,52,7,4,0.0 +25540,59,55,33,0.0 +25540,48,12.75,7,0.0 +25540,19,9.2,39,0.0 +25540,3,10,44,0.0 +25540,27,43.9,47,0.0 +25540,20,81,8,0.0 +25540,6,25,28,0.0 +25540,44,19.45,18,0.0 +25540,9,97,9,0.0 +25540,28,45.6,2,0.0 +25540,45,9.5,11,0.0 +25540,40,18.4,21,0.0 +25540,61,28.5,2,0.0 +25540,22,21,4,0.0 +25540,15,15.5,19,0.0 +25540,65,21.05,31,0.0 +25540,34,14,23,0.0 +25540,74,10,45,0.0 +25540,32,32,11,0.0 +25540,67,14,43,0.0 +25540,70,15,8,0.0 +25540,12,38,37,0.0 +25540,23,9,31,0.0 +25540,14,23.25,31,0.0 +25540,42,14,44,0.0 +25540,50,16.25,50,0.0 +25540,51,53,15,0.0 +25540,58,13.25,17,0.0 +25540,64,33.25,2,0.0 +25541,45,9.5,28,0.0 +25541,17,39,49,0.0 +25541,26,31.23,22,0.0 +25541,35,18,4,0.0 +25541,55,24,38,0.0 +25541,59,55,37,0.0 +25541,33,2.5,21,0.0 +25541,77,13,27,0.0 +25541,32,32,7,0.0 +25541,21,10,29,0.0 +25541,18,62.5,4,0.0 +25541,50,16.25,34,0.0 +25541,48,12.75,9,0.0 +25541,40,18.4,1,0.0 +25541,13,6,23,0.0 +25541,69,36,14,0.0 +25541,75,7.75,19,0.0 +25541,58,13.25,41,0.0 +25541,70,15,31,0.0 +25541,46,12,44,0.0 +25541,76,18,14,0.0 +25541,51,53,22,0.0 +25541,1,18,24,0.0 +25541,11,21,3,0.0 +25541,8,40,11,0.0 +25541,44,19.45,38,0.0 +25541,31,12.5,18,0.0 +25541,42,14,11,0.0 +25541,39,18,45,0.0 +25541,4,22,30,0.0 +25541,72,34.8,33,0.0 +25541,49,20,28,0.0 +25541,9,97,11,0.0 +25541,25,14,29,0.0 +25541,23,9,26,0.0 +25541,10,31,17,0.0 +25541,73,15,47,0.0 +25541,34,14,12,0.0 +25541,15,15.5,45,0.0 +25541,53,32.8,8,0.0 +25541,41,9.65,3,0.0 +25541,29,123.79,32,0.0 +25541,38,263.5,37,0.0 +25541,66,17,40,0.0 +25541,63,43.9,48,0.0 +25541,67,14,39,0.0 +25541,22,21,42,0.0 +25541,61,28.5,20,0.0 +25541,14,23.25,26,0.0 +25541,2,19,35,0.0 +25541,62,49.3,20,0.0 +25541,12,38,39,0.0 +25541,56,38,16,0.0 +25541,68,12.5,34,0.0 +25541,24,4.5,12,0.0 +25542,54,7.45,37,0.0 +25542,77,13,44,0.0 +25542,5,21.35,34,0.0 +25542,9,97,18,0.0 +25542,41,9.65,1,0.0 +25542,23,9,30,0.0 +25542,76,18,14,0.0 +25542,33,2.5,18,0.0 +25542,68,12.5,41,0.0 +25542,3,10,40,0.0 +25542,14,23.25,31,0.0 +25542,72,34.8,18,0.0 +25542,27,43.9,18,0.0 +25542,29,123.79,25,0.0 +25542,1,18,17,0.0 +25542,11,21,2,0.0 +25542,6,25,47,0.0 +25542,17,39,24,0.0 +25542,60,34,40,0.0 +25542,8,40,46,0.0 +25542,64,33.25,48,0.0 +25542,44,19.45,16,0.0 +25542,16,17.45,36,0.0 +25542,37,26,44,0.0 +25542,31,12.5,16,0.0 +25542,61,28.5,40,0.0 +25542,73,15,32,0.0 +25542,35,18,11,0.0 +25542,55,24,8,0.0 +25542,34,14,49,0.0 +25542,32,32,10,0.0 +25542,22,21,47,0.0 +25542,63,43.9,31,0.0 +25542,15,15.5,46,0.0 +25542,70,15,36,0.0 +25542,26,31.23,36,0.0 +25542,71,21.5,31,0.0 +25542,51,53,19,0.0 +25542,36,19,35,0.0 +25542,56,38,50,0.0 +25542,75,7.75,7,0.0 +25542,4,22,1,0.0 +25542,58,13.25,17,0.0 +25542,49,20,48,0.0 +25542,46,12,10,0.0 +25543,28,45.6,8,0.0 +25543,7,30,44,0.0 +25543,74,10,27,0.0 +25543,2,19,27,0.0 +25543,73,15,29,0.0 +25543,61,28.5,17,0.0 +25543,66,17,40,0.0 +25543,27,43.9,21,0.0 +25543,77,13,12,0.0 +25543,58,13.25,27,0.0 +25543,9,97,22,0.0 +25543,14,23.25,17,0.0 +25543,47,9.5,50,0.0 +25543,67,14,45,0.0 +25543,32,32,36,0.0 +25543,40,18.4,49,0.0 +25543,64,33.25,14,0.0 +25543,26,31.23,25,0.0 +25543,65,21.05,10,0.0 +25543,12,38,27,0.0 +25543,30,25.89,47,0.0 +25543,63,43.9,11,0.0 +25543,56,38,49,0.0 +25543,19,9.2,30,0.0 +25543,54,7.45,35,0.0 +25543,70,15,32,0.0 +25543,55,24,5,0.0 +25543,62,49.3,38,0.0 +25543,16,17.45,36,0.0 +25543,41,9.65,11,0.0 +25543,18,62.5,17,0.0 +25543,44,19.45,23,0.0 +25543,69,36,7,0.0 +25543,21,10,48,0.0 +25543,20,81,15,0.0 +25543,51,53,10,0.0 +25543,46,12,45,0.0 +25543,60,34,19,0.0 +25543,13,6,20,0.0 +25543,5,21.35,43,0.0 +25543,50,16.25,44,0.0 +25543,45,9.5,13,0.0 +25543,49,20,4,0.0 +25543,25,14,40,0.0 +25543,8,40,37,0.0 +25543,10,31,41,0.0 +25544,49,20,40,0.0 +25544,2,19,15,0.0 +25544,64,33.25,11,0.0 +25544,46,12,3,0.0 +25544,17,39,44,0.0 +25544,42,14,41,0.0 +25544,33,2.5,20,0.0 +25544,63,43.9,36,0.0 +25544,8,40,37,0.0 +25544,65,21.05,21,0.0 +25544,22,21,37,0.0 +25544,20,81,6,0.0 +25544,59,55,17,0.0 +25544,31,12.5,49,0.0 +25544,36,19,33,0.0 +25544,61,28.5,10,0.0 +25544,54,7.45,1,0.0 +25544,12,38,16,0.0 +25544,43,46,50,0.0 +25544,16,17.45,28,0.0 +25544,23,9,5,0.0 +25544,26,31.23,49,0.0 +25544,28,45.6,12,0.0 +25544,55,24,3,0.0 +25544,24,4.5,4,0.0 +25544,13,6,40,0.0 +25544,10,31,12,0.0 +25544,18,62.5,49,0.0 +25545,75,7.75,35,0.0 +25545,5,21.35,19,0.0 +25545,76,18,6,0.0 +25545,36,19,11,0.0 +25545,12,38,29,0.0 +25545,34,14,21,0.0 +25545,73,15,12,0.0 +25545,14,23.25,35,0.0 +25545,68,12.5,28,0.0 +25545,6,25,47,0.0 +25545,18,62.5,50,0.0 +25545,33,2.5,20,0.0 +25545,47,9.5,20,0.0 +25545,67,14,23,0.0 +25545,3,10,18,0.0 +25545,37,26,19,0.0 +25546,17,39,22,0.0 +25546,9,97,43,0.0 +25546,37,26,21,0.0 +25546,11,21,5,0.0 +25546,57,19.5,19,0.0 +25546,77,13,46,0.0 +25546,67,14,22,0.0 +25546,52,7,6,0.0 +25546,24,4.5,32,0.0 +25546,1,18,21,0.0 +25546,8,40,48,0.0 +25546,54,7.45,29,0.0 +25546,27,43.9,42,0.0 +25546,19,9.2,48,0.0 +25546,65,21.05,47,0.0 +25546,15,15.5,43,0.0 +25546,12,38,4,0.0 +25546,69,36,12,0.0 +25546,55,24,20,0.0 +25546,76,18,10,0.0 +25546,73,15,49,0.0 +25546,58,13.25,9,0.0 +25546,7,30,23,0.0 +25546,70,15,14,0.0 +25546,49,20,19,0.0 +25546,63,43.9,22,0.0 +25546,39,18,11,0.0 +25546,3,10,40,0.0 +25546,48,12.75,29,0.0 +25546,23,9,26,0.0 +25546,60,34,46,0.0 +25546,10,31,6,0.0 +25546,6,25,6,0.0 +25546,35,18,10,0.0 +25546,47,9.5,27,0.0 +25546,64,33.25,29,0.0 +25546,34,14,3,0.0 +25546,68,12.5,23,0.0 +25546,59,55,7,0.0 +25546,5,21.35,42,0.0 +25546,42,14,2,0.0 +25546,16,17.45,27,0.0 +25546,66,17,28,0.0 +25546,30,25.89,36,0.0 +25546,75,7.75,40,0.0 +25546,22,21,45,0.0 +25546,62,49.3,2,0.0 +25546,2,19,41,0.0 +25546,53,32.8,26,0.0 +25546,72,34.8,14,0.0 +25546,36,19,30,0.0 +25546,74,10,45,0.0 +25546,20,81,12,0.0 +25546,4,22,26,0.0 +25546,43,46,6,0.0 +25546,51,53,11,0.0 +25546,46,12,25,0.0 +25546,45,9.5,47,0.0 +25546,40,18.4,36,0.0 +25546,26,31.23,20,0.0 +25546,71,21.5,5,0.0 +25547,62,49.3,27,0.0 +25547,10,31,23,0.0 +25547,8,40,50,0.0 +25547,41,9.65,3,0.0 +25547,65,21.05,27,0.0 +25547,54,7.45,32,0.0 +25547,40,18.4,32,0.0 +25547,49,20,21,0.0 +25547,53,32.8,48,0.0 +25547,52,7,40,0.0 +25547,75,7.75,36,0.0 +25547,20,81,39,0.0 +25547,55,24,2,0.0 +25547,17,39,5,0.0 +25547,76,18,48,0.0 +25547,23,9,35,0.0 +25547,16,17.45,32,0.0 +25547,25,14,10,0.0 +25547,63,43.9,50,0.0 +25547,56,38,35,0.0 +25547,57,19.5,21,0.0 +25547,27,43.9,14,0.0 +25547,1,18,6,0.0 +25547,45,9.5,50,0.0 +25547,24,4.5,19,0.0 +25547,26,31.23,24,0.0 +25547,44,19.45,15,0.0 +25547,69,36,2,0.0 +25547,51,53,36,0.0 +25547,9,97,44,0.0 +25547,77,13,39,0.0 +25547,12,38,43,0.0 +25547,66,17,16,0.0 +25547,64,33.25,38,0.0 +25548,50,16.25,47,0.0 +25548,6,25,8,0.0 +25548,45,9.5,20,0.0 +25548,61,28.5,45,0.0 +25548,19,9.2,21,0.0 +25548,67,14,2,0.0 +25548,54,7.45,4,0.0 +25548,28,45.6,33,0.0 +25548,41,9.65,46,0.0 +25548,23,9,18,0.0 +25548,37,26,23,0.0 +25548,74,10,44,0.0 +25548,72,34.8,37,0.0 +25548,60,34,48,0.0 +25548,71,21.5,38,0.0 +25548,68,12.5,47,0.0 +25548,40,18.4,40,0.0 +25548,59,55,1,0.0 +25548,18,62.5,3,0.0 +25548,66,17,41,0.0 +25548,70,15,40,0.0 +25548,38,263.5,21,0.0 +25548,34,14,18,0.0 +25548,21,10,36,0.0 +25548,14,23.25,16,0.0 +25548,58,13.25,47,0.0 +25548,17,39,3,0.0 +25548,73,15,50,0.0 +25548,52,7,2,0.0 +25548,53,32.8,42,0.0 +25548,75,7.75,39,0.0 +25548,46,12,13,0.0 +25548,24,4.5,14,0.0 +25548,2,19,42,0.0 +25548,36,19,22,0.0 +25549,51,53,16,0.0 +25549,19,9.2,31,0.0 +25549,22,21,17,0.0 +25549,62,49.3,12,0.0 +25549,3,10,47,0.0 +25549,2,19,26,0.0 +25549,33,2.5,18,0.0 +25549,37,26,8,0.0 +25549,63,43.9,36,0.0 +25549,15,15.5,49,0.0 +25549,29,123.79,32,0.0 +25549,4,22,1,0.0 +25549,52,7,8,0.0 +25549,1,18,24,0.0 +25549,35,18,41,0.0 +25549,39,18,44,0.0 +25549,16,17.45,20,0.0 +25549,47,9.5,32,0.0 +25549,18,62.5,5,0.0 +25549,60,34,14,0.0 +25549,48,12.75,2,0.0 +25549,67,14,50,0.0 +25549,74,10,43,0.0 +25549,6,25,4,0.0 +25549,71,21.5,20,0.0 +25549,12,38,32,0.0 +25549,21,10,10,0.0 +25549,49,20,13,0.0 +25549,25,14,25,0.0 +25549,34,14,27,0.0 +25549,70,15,7,0.0 +25549,13,6,12,0.0 +25549,28,45.6,28,0.0 +25550,62,49.3,48,0.0 +25550,74,10,11,0.0 +25550,39,18,44,0.0 +25550,15,15.5,3,0.0 +25550,11,21,19,0.0 +25550,4,22,15,0.0 +25550,54,7.45,3,0.0 +25550,48,12.75,18,0.0 +25550,53,32.8,39,0.0 +25550,50,16.25,30,0.0 +25550,13,6,46,0.0 +25550,47,9.5,33,0.0 +25550,37,26,9,0.0 +25550,25,14,41,0.0 +25550,51,53,6,0.0 +25550,8,40,7,0.0 +25550,63,43.9,50,0.0 +25550,59,55,18,0.0 +25550,31,12.5,43,0.0 +25550,20,81,37,0.0 +25550,43,46,36,0.0 +25550,23,9,50,0.0 +25550,61,28.5,48,0.0 +25550,7,30,44,0.0 +25550,40,18.4,41,0.0 +25550,14,23.25,23,0.0 +25550,77,13,25,0.0 +25550,3,10,2,0.0 +25550,24,4.5,9,0.0 +25551,5,21.35,36,0.0 +25551,16,17.45,34,0.0 +25551,61,28.5,43,0.0 +25551,29,123.79,19,0.0 +25551,34,14,21,0.0 +25551,20,81,17,0.0 +25551,45,9.5,40,0.0 +25551,38,263.5,49,0.0 +25551,70,15,1,0.0 +25551,6,25,29,0.0 +25551,3,10,10,0.0 +25551,24,4.5,45,0.0 +25551,55,24,21,0.0 +25551,9,97,12,0.0 +25551,36,19,9,0.0 +25551,28,45.6,8,0.0 +25551,4,22,31,0.0 +25552,21,10,38,0.0 +25552,25,14,10,0.0 +25552,35,18,30,0.0 +25552,7,30,36,0.0 +25552,48,12.75,24,0.0 +25552,55,24,16,0.0 +25552,6,25,15,0.0 +25552,13,6,12,0.0 +25552,59,55,9,0.0 +25552,32,32,16,0.0 +25552,61,28.5,39,0.0 +25552,62,49.3,12,0.0 +25552,49,20,20,0.0 +25552,63,43.9,10,0.0 +25552,2,19,11,0.0 +25552,53,32.8,7,0.0 +25553,73,15,4,0.0 +25553,66,17,9,0.0 +25553,44,19.45,21,0.0 +25553,28,45.6,5,0.0 +25553,26,31.23,35,0.0 +25553,46,12,28,0.0 +25553,17,39,33,0.0 +25553,4,22,9,0.0 +25553,2,19,10,0.0 +25553,18,62.5,23,0.0 +25553,70,15,18,0.0 +25553,11,21,39,0.0 +25553,9,97,35,0.0 +25553,36,19,47,0.0 +25553,35,18,11,0.0 +25553,64,33.25,3,0.0 +25553,14,23.25,15,0.0 +25553,60,34,43,0.0 +25553,6,25,39,0.0 +25553,10,31,11,0.0 +25553,49,20,3,0.0 +25553,50,16.25,25,0.0 +25553,37,26,5,0.0 +25553,61,28.5,50,0.0 +25553,34,14,27,0.0 +25553,54,7.45,8,0.0 +25553,77,13,22,0.0 +25553,25,14,43,0.0 +25553,51,53,27,0.0 +25553,55,24,46,0.0 +25553,5,21.35,21,0.0 +25553,21,10,33,0.0 +25553,8,40,29,0.0 +25553,29,123.79,41,0.0 +25553,74,10,35,0.0 +25553,76,18,28,0.0 +25553,43,46,41,0.0 +25553,72,34.8,31,0.0 +25553,12,38,42,0.0 +25553,23,9,14,0.0 +25553,30,25.89,18,0.0 +25553,52,7,33,0.0 +25553,69,36,45,0.0 +25553,16,17.45,40,0.0 +25553,42,14,6,0.0 +25553,33,2.5,19,0.0 +25553,7,30,32,0.0 +25553,47,9.5,12,0.0 +25554,48,12.75,12,0.0 +25554,1,18,20,0.0 +25554,41,9.65,18,0.0 +25554,12,38,38,0.0 +25554,64,33.25,25,0.0 +25554,19,9.2,3,0.0 +25554,63,43.9,47,0.0 +25554,13,6,40,0.0 +25554,2,19,7,0.0 +25554,29,123.79,19,0.0 +25554,36,19,2,0.0 +25554,22,21,45,0.0 +25554,20,81,33,0.0 +25554,37,26,28,0.0 +25554,50,16.25,24,0.0 +25554,47,9.5,48,0.0 +25554,32,32,17,0.0 +25554,30,25.89,1,0.0 +25554,46,12,48,0.0 +25554,10,31,28,0.0 +25554,58,13.25,30,0.0 +25554,25,14,21,0.0 +25554,52,7,19,0.0 +25554,53,32.8,44,0.0 +25554,55,24,16,0.0 +25554,14,23.25,36,0.0 +25554,62,49.3,17,0.0 +25554,70,15,49,0.0 +25554,45,9.5,29,0.0 +25554,59,55,13,0.0 +25554,11,21,15,0.0 +25554,74,10,40,0.0 +25554,6,25,10,0.0 +25554,9,97,45,0.0 +25554,28,45.6,17,0.0 +25554,77,13,1,0.0 +25554,75,7.75,36,0.0 +25554,4,22,34,0.0 +25554,67,14,36,0.0 +25554,51,53,14,0.0 +25554,33,2.5,25,0.0 +25554,24,4.5,44,0.0 +25554,21,10,9,0.0 +25554,17,39,37,0.0 +25554,16,17.45,10,0.0 +25554,26,31.23,1,0.0 +25554,76,18,30,0.0 +25554,15,15.5,15,0.0 +25554,68,12.5,39,0.0 +25554,39,18,2,0.0 +25554,56,38,6,0.0 +25555,8,40,6,0.0 +25555,54,7.45,21,0.0 +25555,3,10,43,0.0 +25555,53,32.8,42,0.0 +25555,26,31.23,17,0.0 +25555,58,13.25,24,0.0 +25555,27,43.9,29,0.0 +25555,47,9.5,12,0.0 +25555,76,18,42,0.0 +25555,42,14,7,0.0 +25555,48,12.75,27,0.0 +25555,7,30,1,0.0 +25555,36,19,31,0.0 +25555,17,39,49,0.0 +25555,25,14,3,0.0 +25555,62,49.3,23,0.0 +25555,35,18,19,0.0 +25555,43,46,9,0.0 +25555,65,21.05,15,0.0 +25555,73,15,8,0.0 +25555,22,21,48,0.0 +25555,14,23.25,38,0.0 +25555,39,18,34,0.0 +25555,59,55,29,0.0 +25555,61,28.5,15,0.0 +25555,50,16.25,32,0.0 +25555,63,43.9,27,0.0 +25555,20,81,42,0.0 +25555,60,34,11,0.0 +25555,11,21,19,0.0 +25555,6,25,5,0.0 +25555,40,18.4,6,0.0 +25556,62,49.3,7,0.0 +25556,8,40,30,0.0 +25556,55,24,29,0.0 +25556,4,22,40,0.0 +25556,19,9.2,6,0.0 +25556,49,20,43,0.0 +25556,16,17.45,6,0.0 +25556,69,36,36,0.0 +25556,50,16.25,29,0.0 +25556,56,38,46,0.0 +25556,58,13.25,36,0.0 +25556,21,10,28,0.0 +25556,27,43.9,6,0.0 +25556,68,12.5,45,0.0 +25556,51,53,16,0.0 +25556,10,31,21,0.0 +25556,45,9.5,22,0.0 +25556,63,43.9,1,0.0 +25556,12,38,8,0.0 +25556,43,46,37,0.0 +25556,11,21,27,0.0 +25556,71,21.5,45,0.0 +25556,75,7.75,38,0.0 +25556,77,13,41,0.0 +25556,47,9.5,16,0.0 +25556,73,15,23,0.0 +25556,1,18,18,0.0 +25556,2,19,44,0.0 +25556,18,62.5,25,0.0 +25556,41,9.65,24,0.0 +25556,25,14,25,0.0 +25556,60,34,3,0.0 +25556,22,21,2,0.0 +25556,66,17,24,0.0 +25556,9,97,18,0.0 +25556,6,25,39,0.0 +25556,72,34.8,33,0.0 +25556,54,7.45,38,0.0 +25556,48,12.75,1,0.0 +25556,44,19.45,37,0.0 +25556,24,4.5,10,0.0 +25556,65,21.05,6,0.0 +25556,33,2.5,25,0.0 +25556,26,31.23,36,0.0 +25556,17,39,23,0.0 +25556,29,123.79,11,0.0 +25556,57,19.5,37,0.0 +25556,23,9,48,0.0 +25556,30,25.89,44,0.0 +25556,46,12,41,0.0 +25556,38,263.5,8,0.0 +25556,36,19,36,0.0 +25556,64,33.25,41,0.0 +25556,39,18,45,0.0 +25556,67,14,24,0.0 +25556,3,10,26,0.0 +25556,15,15.5,42,0.0 +25556,52,7,2,0.0 +25556,40,18.4,38,0.0 +25556,34,14,25,0.0 +25556,14,23.25,22,0.0 +25557,77,13,34,0.0 +25557,59,55,35,0.0 +25557,54,7.45,27,0.0 +25557,42,14,14,0.0 +25557,30,25.89,2,0.0 +25557,73,15,9,0.0 +25557,62,49.3,25,0.0 +25557,31,12.5,32,0.0 +25557,57,19.5,23,0.0 +25557,10,31,44,0.0 +25557,33,2.5,12,0.0 +25557,23,9,38,0.0 +25557,7,30,10,0.0 +25557,48,12.75,1,0.0 +25557,13,6,32,0.0 +25557,19,9.2,16,0.0 +25557,60,34,35,0.0 +25557,37,26,40,0.0 +25557,74,10,42,0.0 +25557,75,7.75,46,0.0 +25557,76,18,36,0.0 +25557,44,19.45,36,0.0 +25557,14,23.25,5,0.0 +25557,71,21.5,30,0.0 +25557,50,16.25,46,0.0 +25557,18,62.5,30,0.0 +25557,35,18,4,0.0 +25557,40,18.4,43,0.0 +25557,55,24,26,0.0 +25557,2,19,12,0.0 +25557,46,12,36,0.0 +25557,58,13.25,48,0.0 +25557,29,123.79,8,0.0 +25557,69,36,25,0.0 +25557,61,28.5,18,0.0 +25557,39,18,6,0.0 +25557,67,14,2,0.0 +25557,41,9.65,31,0.0 +25557,27,43.9,23,0.0 +25557,6,25,43,0.0 +25557,22,21,16,0.0 +25557,9,97,16,0.0 +25557,68,12.5,2,0.0 +25557,26,31.23,10,0.0 +25557,72,34.8,17,0.0 +25557,16,17.45,49,0.0 +25557,3,10,23,0.0 +25557,52,7,15,0.0 +25557,64,33.25,32,0.0 +25557,4,22,41,0.0 +25557,15,15.5,11,0.0 +25557,32,32,29,0.0 +25557,8,40,18,0.0 +25557,21,10,18,0.0 +25557,34,14,44,0.0 +25557,1,18,18,0.0 +25557,49,20,39,0.0 +25557,36,19,41,0.0 +25557,43,46,19,0.0 +25557,5,21.35,24,0.0 +25557,28,45.6,13,0.0 +25557,17,39,2,0.0 +25557,47,9.5,8,0.0 +25558,14,23.25,30,0.0 +25558,27,43.9,13,0.0 +25558,35,18,21,0.0 +25558,56,38,41,0.0 +25558,43,46,11,0.0 +25558,21,10,13,0.0 +25558,77,13,43,0.0 +25558,40,18.4,49,0.0 +25558,75,7.75,20,0.0 +25558,59,55,49,0.0 +25558,28,45.6,8,0.0 +25558,10,31,21,0.0 +25558,30,25.89,39,0.0 +25558,70,15,25,0.0 +25558,1,18,38,0.0 +25558,46,12,13,0.0 +25558,19,9.2,7,0.0 +25558,36,19,24,0.0 +25558,55,24,16,0.0 +25558,22,21,29,0.0 +25558,8,40,20,0.0 +25558,47,9.5,38,0.0 +25558,42,14,38,0.0 +25558,63,43.9,47,0.0 +25558,50,16.25,14,0.0 +25558,45,9.5,37,0.0 +25558,65,21.05,11,0.0 +25558,20,81,8,0.0 +25558,60,34,33,0.0 +25558,74,10,29,0.0 +25558,51,53,44,0.0 +25558,38,263.5,12,0.0 +25558,37,26,49,0.0 +25558,73,15,36,0.0 +25559,66,17,50,0.0 +25559,15,15.5,43,0.0 +25559,23,9,6,0.0 +25559,75,7.75,18,0.0 +25559,19,9.2,35,0.0 +25559,51,53,27,0.0 +25559,39,18,38,0.0 +25559,16,17.45,11,0.0 +25559,7,30,1,0.0 +25559,36,19,34,0.0 +25559,44,19.45,23,0.0 +25559,64,33.25,37,0.0 +25559,8,40,2,0.0 +25559,68,12.5,8,0.0 +25559,45,9.5,2,0.0 +25559,28,45.6,36,0.0 +25559,25,14,26,0.0 +25559,34,14,46,0.0 +25559,70,15,38,0.0 +25559,3,10,32,0.0 +25559,12,38,49,0.0 +25559,33,2.5,48,0.0 +25559,38,263.5,37,0.0 +25559,13,6,24,0.0 +25559,5,21.35,48,0.0 +25559,31,12.5,28,0.0 +25559,49,20,13,0.0 +25559,60,34,21,0.0 +25559,72,34.8,29,0.0 +25559,2,19,47,0.0 +25559,27,43.9,47,0.0 +25559,47,9.5,49,0.0 +25559,4,22,43,0.0 +25559,32,32,2,0.0 +25559,55,24,10,0.0 +25559,20,81,46,0.0 +25559,61,28.5,49,0.0 +25559,46,12,8,0.0 +25559,35,18,32,0.0 +25559,21,10,23,0.0 +25559,67,14,10,0.0 +25559,9,97,17,0.0 +25559,22,21,19,0.0 +25559,37,26,9,0.0 +25559,24,4.5,8,0.0 +25559,59,55,31,0.0 +25559,14,23.25,26,0.0 +25559,63,43.9,31,0.0 +25559,17,39,33,0.0 +25559,29,123.79,29,0.0 +25559,57,19.5,30,0.0 +25559,11,21,26,0.0 +25559,53,32.8,1,0.0 +25559,50,16.25,37,0.0 +25559,69,36,4,0.0 +25559,18,62.5,31,0.0 +25559,42,14,17,0.0 +25559,52,7,38,0.0 +25559,54,7.45,7,0.0 +25559,40,18.4,49,0.0 +25559,43,46,16,0.0 +25559,62,49.3,34,0.0 +25559,30,25.89,6,0.0 +25559,26,31.23,37,0.0 +25559,41,9.65,44,0.0 +25559,56,38,12,0.0 +25559,71,21.5,17,0.0 +25559,10,31,26,0.0 +25559,65,21.05,10,0.0 +25559,58,13.25,46,0.0 +25560,43,46,48,0.0 +25560,20,81,11,0.0 +25560,52,7,20,0.0 +25560,60,34,39,0.0 +25560,29,123.79,25,0.0 +25560,2,19,48,0.0 +25560,73,15,3,0.0 +25560,1,18,6,0.0 +25560,70,15,26,0.0 +25560,44,19.45,6,0.0 +25560,49,20,34,0.0 +25560,41,9.65,25,0.0 +25560,57,19.5,9,0.0 +25560,30,25.89,26,0.0 +25560,50,16.25,43,0.0 +25560,74,10,34,0.0 +25560,18,62.5,1,0.0 +25560,47,9.5,41,0.0 +25560,48,12.75,20,0.0 +25560,69,36,25,0.0 +25560,53,32.8,12,0.0 +25560,75,7.75,48,0.0 +25560,38,263.5,24,0.0 +25560,77,13,31,0.0 +25560,17,39,15,0.0 +25560,39,18,50,0.0 +25560,34,14,25,0.0 +25560,24,4.5,3,0.0 +25560,12,38,1,0.0 +25560,63,43.9,34,0.0 +25560,37,26,33,0.0 +25560,11,21,7,0.0 +25560,15,15.5,17,0.0 +25560,62,49.3,35,0.0 +25560,55,24,18,0.0 +25560,5,21.35,42,0.0 +25560,22,21,11,0.0 +25560,42,14,48,0.0 +25560,19,9.2,16,0.0 +25560,3,10,38,0.0 +25560,26,31.23,50,0.0 +25560,13,6,18,0.0 +25561,40,18.4,37,0.0 +25561,18,62.5,40,0.0 +25561,54,7.45,32,0.0 +25561,21,10,7,0.0 +25561,47,9.5,6,0.0 +25561,69,36,20,0.0 +25561,50,16.25,46,0.0 +25561,20,81,44,0.0 +25561,57,19.5,36,0.0 +25561,27,43.9,40,0.0 +25561,55,24,12,0.0 +25561,22,21,29,0.0 +25561,16,17.45,6,0.0 +25561,4,22,3,0.0 +25561,66,17,29,0.0 +25561,65,21.05,37,0.0 +25561,12,38,20,0.0 +25561,10,31,44,0.0 +25561,41,9.65,11,0.0 +25561,74,10,11,0.0 +25561,5,21.35,2,0.0 +25561,73,15,19,0.0 +25561,11,21,26,0.0 +25561,60,34,17,0.0 +25561,64,33.25,42,0.0 +25561,58,13.25,29,0.0 +25561,61,28.5,28,0.0 +25561,48,12.75,5,0.0 +25561,53,32.8,36,0.0 +25561,37,26,26,0.0 +25561,34,14,9,0.0 +25561,19,9.2,44,0.0 +25561,9,97,34,0.0 +25561,1,18,32,0.0 +25562,26,31.23,22,0.0 +25562,71,21.5,34,0.0 +25562,12,38,22,0.0 +25562,73,15,21,0.0 +25562,23,9,49,0.0 +25562,15,15.5,23,0.0 +25562,55,24,47,0.0 +25562,41,9.65,50,0.0 +25562,2,19,49,0.0 +25562,58,13.25,23,0.0 +25562,13,6,28,0.0 +25562,21,10,12,0.0 +25562,64,33.25,31,0.0 +25562,11,21,35,0.0 +25562,24,4.5,12,0.0 +25562,50,16.25,6,0.0 +25562,75,7.75,26,0.0 +25562,29,123.79,30,0.0 +25562,43,46,35,0.0 +25562,6,25,21,0.0 +25562,35,18,31,0.0 +25562,5,21.35,49,0.0 +25562,37,26,32,0.0 +25563,52,7,20,0.0 +25563,31,12.5,19,0.0 +25563,57,19.5,8,0.0 +25563,62,49.3,8,0.0 +25563,16,17.45,33,0.0 +25563,46,12,50,0.0 +25563,73,15,2,0.0 +25563,60,34,42,0.0 +25563,38,263.5,8,0.0 +25563,63,43.9,16,0.0 +25563,6,25,35,0.0 +25563,3,10,30,0.0 +25563,19,9.2,48,0.0 +25563,56,38,1,0.0 +25563,58,13.25,47,0.0 +25563,22,21,27,0.0 +25563,67,14,18,0.0 +25563,49,20,45,0.0 +25563,39,18,30,0.0 +25563,5,21.35,47,0.0 +25563,12,38,23,0.0 +25563,55,24,3,0.0 +25563,29,123.79,42,0.0 +25563,1,18,16,0.0 +25563,44,19.45,42,0.0 +25563,25,14,3,0.0 +25563,28,45.6,49,0.0 +25563,34,14,34,0.0 +25563,69,36,34,0.0 +25563,24,4.5,16,0.0 +25563,9,97,23,0.0 +25563,7,30,43,0.0 +25563,18,62.5,26,0.0 +25563,14,23.25,28,0.0 +25563,43,46,5,0.0 +25563,37,26,4,0.0 +25563,47,9.5,8,0.0 +25563,27,43.9,25,0.0 +25563,32,32,43,0.0 +25563,10,31,14,0.0 +25563,15,15.5,44,0.0 +25563,40,18.4,45,0.0 +25563,11,21,37,0.0 +25563,59,55,21,0.0 +25563,17,39,38,0.0 +25563,42,14,18,0.0 +25563,74,10,43,0.0 +25563,45,9.5,44,0.0 +25563,8,40,1,0.0 +25563,36,19,14,0.0 +25563,4,22,4,0.0 +25563,71,21.5,20,0.0 +25563,53,32.8,5,0.0 +25563,61,28.5,8,0.0 +25563,41,9.65,39,0.0 +25563,48,12.75,26,0.0 +25563,26,31.23,48,0.0 +25563,77,13,32,0.0 +25563,21,10,34,0.0 +25563,64,33.25,12,0.0 +25563,75,7.75,34,0.0 +25563,35,18,4,0.0 +25563,13,6,11,0.0 +25563,54,7.45,41,0.0 +25563,2,19,44,0.0 +25563,33,2.5,31,0.0 +25563,65,21.05,28,0.0 +25563,51,53,36,0.0 +25564,10,31,50,0.0 +25564,69,36,40,0.0 +25564,73,15,16,0.0 +25564,26,31.23,48,0.0 +25564,61,28.5,29,0.0 +25564,59,55,27,0.0 +25564,60,34,28,0.0 +25564,46,12,22,0.0 +25564,5,21.35,35,0.0 +25564,12,38,30,0.0 +25564,48,12.75,26,0.0 +25564,45,9.5,20,0.0 +25564,1,18,40,0.0 +25564,38,263.5,8,0.0 +25564,19,9.2,1,0.0 +25564,2,19,25,0.0 +25564,47,9.5,10,0.0 +25564,7,30,31,0.0 +25564,28,45.6,30,0.0 +25564,63,43.9,35,0.0 +25564,40,18.4,4,0.0 +25564,54,7.45,33,0.0 +25564,41,9.65,39,0.0 +25564,11,21,36,0.0 +25564,37,26,50,0.0 +25564,14,23.25,15,0.0 +25564,18,62.5,49,0.0 +25564,20,81,29,0.0 +25564,52,7,28,0.0 +25564,32,32,36,0.0 +25564,9,97,26,0.0 +25564,6,25,9,0.0 +25564,22,21,16,0.0 +25564,66,17,14,0.0 +25564,44,19.45,21,0.0 +25564,30,25.89,4,0.0 +25564,17,39,19,0.0 +25564,77,13,24,0.0 +25565,6,25,41,0.0 +25565,55,24,30,0.0 +25565,51,53,34,0.0 +25565,56,38,36,0.0 +25565,63,43.9,33,0.0 +25565,61,28.5,47,0.0 +25565,31,12.5,48,0.0 +25565,37,26,13,0.0 +25565,13,6,5,0.0 +25565,35,18,16,0.0 +25565,40,18.4,6,0.0 +25565,4,22,5,0.0 +25565,10,31,6,0.0 +25565,38,263.5,20,0.0 +25565,28,45.6,6,0.0 +25565,32,32,20,0.0 +25565,17,39,4,0.0 +25565,42,14,38,0.0 +25565,21,10,1,0.0 +25565,60,34,4,0.0 +25565,48,12.75,38,0.0 +25565,52,7,22,0.0 +25565,76,18,38,0.0 +25565,75,7.75,9,0.0 +25565,39,18,25,0.0 +25565,73,15,48,0.0 +25565,20,81,26,0.0 +25565,70,15,5,0.0 +25565,77,13,24,0.0 +25565,18,62.5,18,0.0 +25565,12,38,19,0.0 +25565,30,25.89,27,0.0 +25565,7,30,28,0.0 +25565,72,34.8,2,0.0 +25565,29,123.79,5,0.0 +25565,26,31.23,48,0.0 +25565,36,19,19,0.0 +25565,44,19.45,45,0.0 +25565,65,21.05,34,0.0 +25565,27,43.9,8,0.0 +25565,58,13.25,48,0.0 +25565,11,21,50,0.0 +25565,2,19,24,0.0 +25565,8,40,29,0.0 +25565,57,19.5,49,0.0 +25565,68,12.5,5,0.0 +25565,46,12,35,0.0 +25565,69,36,14,0.0 +25565,71,21.5,16,0.0 +25565,41,9.65,21,0.0 +25565,19,9.2,12,0.0 +25565,14,23.25,16,0.0 +25565,54,7.45,36,0.0 +25565,16,17.45,33,0.0 +25565,66,17,16,0.0 +25565,24,4.5,43,0.0 +25565,15,15.5,35,0.0 +25565,3,10,21,0.0 +25565,1,18,29,0.0 +25565,5,21.35,15,0.0 +25565,53,32.8,12,0.0 +25565,9,97,20,0.0 +25565,43,46,30,0.0 +25565,34,14,11,0.0 +25565,23,9,41,0.0 +25565,45,9.5,3,0.0 +25565,33,2.5,30,0.0 +25565,62,49.3,18,0.0 +25565,22,21,47,0.0 +25565,59,55,27,0.0 +25565,49,20,8,0.0 +25565,64,33.25,33,0.0 +25566,14,23.25,30,0.0 +25566,65,21.05,9,0.0 +25566,49,20,44,0.0 +25566,36,19,11,0.0 +25566,56,38,6,0.0 +25566,71,21.5,5,0.0 +25566,55,24,23,0.0 +25566,63,43.9,6,0.0 +25566,9,97,28,0.0 +25566,47,9.5,2,0.0 +25566,18,62.5,22,0.0 +25566,25,14,18,0.0 +25566,10,31,7,0.0 +25566,77,13,17,0.0 +25566,13,6,19,0.0 +25566,39,18,16,0.0 +25566,54,7.45,24,0.0 +25566,19,9.2,20,0.0 +25566,32,32,42,0.0 +25566,22,21,38,0.0 +25566,24,4.5,5,0.0 +25566,30,25.89,37,0.0 +25566,33,2.5,47,0.0 +25566,70,15,34,0.0 +25566,72,34.8,22,0.0 +25566,46,12,28,0.0 +25566,37,26,32,0.0 +25566,59,55,11,0.0 +25566,28,45.6,20,0.0 +25566,35,18,8,0.0 +25566,12,38,33,0.0 +25566,43,46,43,0.0 +25566,61,28.5,3,0.0 +25566,69,36,20,0.0 +25566,23,9,16,0.0 +25566,15,15.5,46,0.0 +25566,17,39,25,0.0 +25566,3,10,13,0.0 +25566,20,81,25,0.0 +25566,68,12.5,13,0.0 +25566,53,32.8,6,0.0 +25566,58,13.25,45,0.0 +25566,75,7.75,6,0.0 +25566,26,31.23,39,0.0 +25566,64,33.25,44,0.0 +25566,8,40,49,0.0 +25566,16,17.45,46,0.0 +25566,41,9.65,34,0.0 +25566,51,53,48,0.0 +25566,31,12.5,28,0.0 +25566,73,15,3,0.0 +25566,67,14,3,0.0 +25566,34,14,49,0.0 +25566,38,263.5,13,0.0 +25566,42,14,44,0.0 +25566,27,43.9,42,0.0 +25566,52,7,9,0.0 +25566,5,21.35,33,0.0 +25566,40,18.4,14,0.0 +25566,76,18,19,0.0 +25566,4,22,31,0.0 +25567,43,46,36,0.0 +25567,67,14,13,0.0 +25567,58,13.25,39,0.0 +25567,22,21,48,0.0 +25567,77,13,41,0.0 +25567,66,17,44,0.0 +25567,49,20,33,0.0 +25567,51,53,36,0.0 +25567,53,32.8,10,0.0 +25567,59,55,38,0.0 +25567,8,40,48,0.0 +25567,14,23.25,26,0.0 +25567,17,39,36,0.0 +25567,11,21,21,0.0 +25567,21,10,22,0.0 +25567,12,38,13,0.0 +25567,46,12,30,0.0 +25567,50,16.25,6,0.0 +25567,37,26,14,0.0 +25567,60,34,1,0.0 +25567,4,22,45,0.0 +25567,41,9.65,37,0.0 +25567,30,25.89,41,0.0 +25567,72,34.8,10,0.0 +25567,9,97,12,0.0 +25567,32,32,6,0.0 +25567,56,38,39,0.0 +25567,34,14,21,0.0 +25567,25,14,10,0.0 +25567,57,19.5,21,0.0 +25567,18,62.5,9,0.0 +25567,62,49.3,1,0.0 +25567,48,12.75,40,0.0 +25567,7,30,14,0.0 +25567,74,10,1,0.0 +25567,13,6,41,0.0 +25567,75,7.75,23,0.0 +25567,31,12.5,33,0.0 +25567,33,2.5,8,0.0 +25567,64,33.25,34,0.0 +25567,63,43.9,49,0.0 +25567,20,81,9,0.0 +25567,54,7.45,16,0.0 +25567,28,45.6,24,0.0 +25567,44,19.45,11,0.0 +25567,52,7,6,0.0 +25567,3,10,48,0.0 +25567,15,15.5,1,0.0 +25567,61,28.5,30,0.0 +25567,24,4.5,20,0.0 +25567,6,25,32,0.0 +25567,39,18,8,0.0 +25567,65,21.05,32,0.0 +25567,36,19,21,0.0 +25567,38,263.5,5,0.0 +25567,76,18,41,0.0 +25567,55,24,50,0.0 +25568,18,62.5,28,0.0 +25568,64,33.25,9,0.0 +25568,71,21.5,10,0.0 +25568,44,19.45,50,0.0 +25568,29,123.79,39,0.0 +25568,66,17,3,0.0 +25568,15,15.5,32,0.0 +25568,65,21.05,18,0.0 +25568,22,21,15,0.0 +25568,1,18,36,0.0 +25568,74,10,27,0.0 +25568,32,32,50,0.0 +25568,7,30,11,0.0 +25568,10,31,23,0.0 +25568,13,6,21,0.0 +25568,11,21,33,0.0 +25568,45,9.5,41,0.0 +25568,28,45.6,31,0.0 +25568,12,38,14,0.0 +25568,53,32.8,14,0.0 +25568,4,22,16,0.0 +25568,19,9.2,10,0.0 +25568,51,53,8,0.0 +25568,40,18.4,15,0.0 +25568,48,12.75,35,0.0 +25568,57,19.5,41,0.0 +25568,61,28.5,8,0.0 +25568,46,12,40,0.0 +25568,16,17.45,50,0.0 +25568,6,25,26,0.0 +25568,20,81,16,0.0 +25568,68,12.5,11,0.0 +25568,23,9,19,0.0 +25568,34,14,2,0.0 +25568,24,4.5,47,0.0 +25568,60,34,17,0.0 +25568,67,14,15,0.0 +25568,14,23.25,28,0.0 +25568,58,13.25,13,0.0 +25568,3,10,33,0.0 +25568,26,31.23,25,0.0 +25569,63,43.9,20,0.0 +25569,1,18,23,0.0 +25569,53,32.8,19,0.0 +25569,51,53,32,0.0 +25569,15,15.5,10,0.0 +25569,13,6,21,0.0 +25569,55,24,34,0.0 +25569,67,14,15,0.0 +25569,61,28.5,27,0.0 +25569,6,25,27,0.0 +25569,50,16.25,6,0.0 +25569,33,2.5,26,0.0 +25569,39,18,42,0.0 +25569,74,10,43,0.0 +25569,10,31,35,0.0 +25569,58,13.25,39,0.0 +25569,18,62.5,3,0.0 +25569,59,55,49,0.0 +25569,30,25.89,3,0.0 +25569,16,17.45,37,0.0 +25569,70,15,13,0.0 +25569,76,18,44,0.0 +25569,22,21,8,0.0 +25569,12,38,12,0.0 +25569,11,21,46,0.0 +25569,77,13,13,0.0 +25569,68,12.5,49,0.0 +25569,31,12.5,23,0.0 +25569,72,34.8,30,0.0 +25569,75,7.75,2,0.0 +25569,73,15,42,0.0 +25569,29,123.79,13,0.0 +25570,45,9.5,1,0.0 +25570,57,19.5,32,0.0 +25570,15,15.5,40,0.0 +25570,67,14,40,0.0 +25570,34,14,40,0.0 +25570,49,20,13,0.0 +25570,61,28.5,24,0.0 +25570,42,14,5,0.0 +25570,1,18,38,0.0 +25570,55,24,22,0.0 +25570,62,49.3,48,0.0 +25570,52,7,40,0.0 +25570,21,10,29,0.0 +25570,32,32,7,0.0 +25570,17,39,18,0.0 +25570,68,12.5,39,0.0 +25570,38,263.5,19,0.0 +25570,5,21.35,40,0.0 +25570,13,6,8,0.0 +25570,40,18.4,21,0.0 +25570,72,34.8,23,0.0 +25570,66,17,7,0.0 +25570,75,7.75,17,0.0 +25570,63,43.9,35,0.0 +25570,48,12.75,31,0.0 +25570,26,31.23,35,0.0 +25570,7,30,13,0.0 +25570,76,18,25,0.0 +25570,44,19.45,29,0.0 +25570,2,19,5,0.0 +25571,2,19,49,0.0 +25571,49,20,21,0.0 +25571,61,28.5,33,0.0 +25571,72,34.8,47,0.0 +25571,34,14,28,0.0 +25571,38,263.5,7,0.0 +25571,32,32,46,0.0 +25571,76,18,45,0.0 +25571,65,21.05,3,0.0 +25571,22,21,40,0.0 +25571,42,14,34,0.0 +25571,31,12.5,17,0.0 +25571,47,9.5,41,0.0 +25571,26,31.23,25,0.0 +25571,75,7.75,27,0.0 +25571,37,26,31,0.0 +25571,74,10,12,0.0 +25571,67,14,6,0.0 +25571,29,123.79,9,0.0 +25571,4,22,5,0.0 +25571,6,25,44,0.0 +25571,44,19.45,13,0.0 +25571,77,13,24,0.0 +25571,25,14,47,0.0 +25571,10,31,22,0.0 +25571,14,23.25,7,0.0 +25571,55,24,34,0.0 +25571,16,17.45,42,0.0 +25571,70,15,45,0.0 +25571,13,6,47,0.0 +25571,36,19,33,0.0 +25571,53,32.8,5,0.0 +25571,28,45.6,49,0.0 +25571,33,2.5,11,0.0 +25571,18,62.5,36,0.0 +25571,58,13.25,5,0.0 +25571,73,15,6,0.0 +25571,11,21,19,0.0 +25571,5,21.35,40,0.0 +25571,12,38,13,0.0 +25571,43,46,15,0.0 +25571,30,25.89,17,0.0 +25571,9,97,26,0.0 +25571,24,4.5,35,0.0 +25571,62,49.3,36,0.0 +25571,71,21.5,12,0.0 +25572,53,32.8,23,0.0 +25572,7,30,20,0.0 +25572,38,263.5,49,0.0 +25572,49,20,45,0.0 +25572,51,53,43,0.0 +25572,34,14,36,0.0 +25572,47,9.5,29,0.0 +25572,18,62.5,48,0.0 +25572,21,10,25,0.0 +25572,37,26,16,0.0 +25572,39,18,39,0.0 +25572,68,12.5,27,0.0 +25572,14,23.25,11,0.0 +25572,63,43.9,49,0.0 +25572,61,28.5,25,0.0 +25572,33,2.5,26,0.0 +25572,52,7,37,0.0 +25572,25,14,19,0.0 +25573,2,19,45,0.0 +25573,24,4.5,15,0.0 +25573,69,36,46,0.0 +25573,27,43.9,4,0.0 +25573,42,14,28,0.0 +25573,41,9.65,27,0.0 +25573,11,21,39,0.0 +25573,6,25,25,0.0 +25573,43,46,17,0.0 +25573,29,123.79,48,0.0 +25573,49,20,25,0.0 +25573,56,38,41,0.0 +25573,4,22,47,0.0 +25573,73,15,2,0.0 +25573,50,16.25,19,0.0 +25573,28,45.6,14,0.0 +25573,65,21.05,28,0.0 +25573,47,9.5,28,0.0 +25573,20,81,26,0.0 +25573,5,21.35,40,0.0 +25573,51,53,19,0.0 +25573,52,7,24,0.0 +25573,12,38,45,0.0 +25573,19,9.2,12,0.0 +25573,18,62.5,6,0.0 +25573,10,31,27,0.0 +25573,48,12.75,23,0.0 +25573,55,24,41,0.0 +25573,53,32.8,17,0.0 +25573,62,49.3,20,0.0 +25573,46,12,24,0.0 +25573,25,14,4,0.0 +25573,14,23.25,46,0.0 +25573,75,7.75,21,0.0 +25573,30,25.89,44,0.0 +25573,76,18,38,0.0 +25573,33,2.5,28,0.0 +25573,21,10,2,0.0 +25573,22,21,5,0.0 +25573,44,19.45,11,0.0 +25573,38,263.5,28,0.0 +25573,32,32,26,0.0 +25573,40,18.4,2,0.0 +25573,67,14,24,0.0 +25573,68,12.5,9,0.0 +25573,45,9.5,45,0.0 +25573,71,21.5,50,0.0 +25573,16,17.45,21,0.0 +25573,66,17,39,0.0 +25573,3,10,31,0.0 +25573,54,7.45,4,0.0 +25573,57,19.5,13,0.0 +25573,36,19,14,0.0 +25573,63,43.9,9,0.0 +25573,74,10,30,0.0 +25573,1,18,39,0.0 +25573,64,33.25,41,0.0 +25573,34,14,34,0.0 +25573,7,30,42,0.0 +25573,9,97,1,0.0 +25573,31,12.5,26,0.0 +25574,39,18,10,0.0 +25574,63,43.9,48,0.0 +25574,1,18,27,0.0 +25574,54,7.45,29,0.0 +25574,15,15.5,19,0.0 +25574,53,32.8,36,0.0 +25574,58,13.25,45,0.0 +25574,44,19.45,20,0.0 +25574,76,18,22,0.0 +25574,43,46,22,0.0 +25574,50,16.25,20,0.0 +25574,12,38,44,0.0 +25574,10,31,10,0.0 +25574,3,10,42,0.0 +25574,47,9.5,38,0.0 +25574,51,53,38,0.0 +25574,16,17.45,16,0.0 +25574,33,2.5,11,0.0 +25574,61,28.5,6,0.0 +25574,7,30,41,0.0 +25574,2,19,50,0.0 +25574,5,21.35,26,0.0 +25574,59,55,49,0.0 +25574,29,123.79,31,0.0 +25574,77,13,26,0.0 +25574,9,97,30,0.0 +25574,45,9.5,32,0.0 +25574,22,21,28,0.0 +25574,30,25.89,13,0.0 +25574,72,34.8,4,0.0 +25574,64,33.25,3,0.0 +25574,34,14,31,0.0 +25574,4,22,12,0.0 +25574,67,14,3,0.0 +25574,32,32,36,0.0 +25574,66,17,21,0.0 +25574,73,15,40,0.0 +25574,55,24,8,0.0 +25574,27,43.9,2,0.0 +25574,57,19.5,29,0.0 +25574,23,9,39,0.0 +25574,13,6,50,0.0 +25574,41,9.65,2,0.0 +25574,52,7,1,0.0 +25574,20,81,2,0.0 +25574,69,36,27,0.0 +25574,35,18,40,0.0 +25574,62,49.3,29,0.0 +25574,25,14,16,0.0 +25574,38,263.5,43,0.0 +25574,70,15,33,0.0 +25574,74,10,31,0.0 +25574,68,12.5,35,0.0 +25574,71,21.5,27,0.0 +25574,36,19,30,0.0 +25574,37,26,13,0.0 +25574,28,45.6,4,0.0 +25574,40,18.4,20,0.0 +25574,24,4.5,21,0.0 +25574,42,14,2,0.0 +25575,8,40,28,0.0 +25575,36,19,4,0.0 +25575,50,16.25,47,0.0 +25575,70,15,47,0.0 +25575,18,62.5,8,0.0 +25575,21,10,48,0.0 +25575,39,18,30,0.0 +25575,65,21.05,12,0.0 +25575,6,25,27,0.0 +25575,46,12,25,0.0 +25575,10,31,6,0.0 +25575,71,21.5,40,0.0 +25575,17,39,10,0.0 +25575,37,26,33,0.0 +25575,77,13,34,0.0 +25576,52,7,42,0.0 +25576,75,7.75,17,0.0 +25576,14,23.25,40,0.0 +25576,20,81,46,0.0 +25576,5,21.35,12,0.0 +25576,13,6,7,0.0 +25576,73,15,4,0.0 +25576,46,12,16,0.0 +25576,8,40,21,0.0 +25576,6,25,10,0.0 +25576,2,19,28,0.0 +25576,67,14,5,0.0 +25576,21,10,11,0.0 +25576,53,32.8,4,0.0 +25576,72,34.8,37,0.0 +25576,11,21,38,0.0 +25576,63,43.9,21,0.0 +25576,23,9,40,0.0 +25576,17,39,27,0.0 +25576,18,62.5,28,0.0 +25576,74,10,21,0.0 +25576,68,12.5,40,0.0 +25576,34,14,32,0.0 +25576,12,38,29,0.0 +25576,30,25.89,50,0.0 +25576,58,13.25,29,0.0 +25576,76,18,36,0.0 +25576,38,263.5,43,0.0 +25576,54,7.45,6,0.0 +25576,57,19.5,15,0.0 +25576,49,20,48,0.0 +25576,26,31.23,50,0.0 +25576,31,12.5,22,0.0 +25576,43,46,26,0.0 +25576,27,43.9,15,0.0 +25576,35,18,28,0.0 +25576,56,38,46,0.0 +25576,69,36,18,0.0 +25576,9,97,20,0.0 +25576,25,14,27,0.0 +25576,55,24,23,0.0 +25576,47,9.5,48,0.0 +25576,32,32,17,0.0 +25576,29,123.79,2,0.0 +25576,33,2.5,9,0.0 +25576,19,9.2,31,0.0 +25576,51,53,7,0.0 +25576,3,10,16,0.0 +25576,40,18.4,28,0.0 +25576,59,55,40,0.0 +25576,28,45.6,29,0.0 +25576,60,34,10,0.0 +25576,41,9.65,43,0.0 +25576,15,15.5,19,0.0 +25576,42,14,20,0.0 +25576,24,4.5,42,0.0 +25576,37,26,2,0.0 +25576,71,21.5,2,0.0 +25576,4,22,25,0.0 +25576,62,49.3,15,0.0 +25576,45,9.5,47,0.0 +25577,17,39,35,0.0 +25577,7,30,4,0.0 +25577,42,14,47,0.0 +25577,14,23.25,39,0.0 +25577,13,6,50,0.0 +25577,77,13,35,0.0 +25577,22,21,10,0.0 +25577,38,263.5,2,0.0 +25577,51,53,37,0.0 +25577,53,32.8,35,0.0 +25577,8,40,42,0.0 +25577,39,18,6,0.0 +25577,6,25,22,0.0 +25577,65,21.05,4,0.0 +25577,44,19.45,47,0.0 +25577,58,13.25,14,0.0 +25577,34,14,31,0.0 +25577,10,31,2,0.0 +25577,61,28.5,30,0.0 +25577,74,10,17,0.0 +25577,63,43.9,41,0.0 +25577,56,38,17,0.0 +25577,67,14,25,0.0 +25577,12,38,30,0.0 +25577,5,21.35,21,0.0 +25577,40,18.4,34,0.0 +25577,19,9.2,33,0.0 +25577,47,9.5,49,0.0 +25577,26,31.23,19,0.0 +25577,66,17,4,0.0 +25577,75,7.75,21,0.0 +25577,73,15,19,0.0 +25577,16,17.45,15,0.0 +25577,24,4.5,27,0.0 +25577,27,43.9,18,0.0 +25577,55,24,50,0.0 +25577,69,36,2,0.0 +25577,30,25.89,49,0.0 +25577,32,32,44,0.0 +25577,20,81,11,0.0 +25577,35,18,8,0.0 +25577,49,20,46,0.0 +25577,46,12,40,0.0 +25577,71,21.5,23,0.0 +25577,28,45.6,40,0.0 +25577,1,18,33,0.0 +25577,9,97,24,0.0 +25577,76,18,12,0.0 +25577,57,19.5,15,0.0 +25577,21,10,24,0.0 +25578,34,14,7,0.0 +25578,7,30,28,0.0 +25578,28,45.6,21,0.0 +25578,55,24,12,0.0 +25578,32,32,25,0.0 +25578,48,12.75,46,0.0 +25578,33,2.5,3,0.0 +25578,58,13.25,43,0.0 +25578,27,43.9,49,0.0 +25578,13,6,13,0.0 +25578,16,17.45,2,0.0 +25578,12,38,45,0.0 +25578,76,18,6,0.0 +25578,62,49.3,29,0.0 +25578,61,28.5,45,0.0 +25578,31,12.5,45,0.0 +25578,71,21.5,2,0.0 +25578,18,62.5,46,0.0 +25578,46,12,15,0.0 +25578,29,123.79,42,0.0 +25578,65,21.05,30,0.0 +25578,19,9.2,15,0.0 +25578,70,15,12,0.0 +25578,1,18,41,0.0 +25578,43,46,25,0.0 +25578,9,97,12,0.0 +25578,59,55,38,0.0 +25578,42,14,14,0.0 +25578,11,21,34,0.0 +25578,40,18.4,43,0.0 +25578,49,20,21,0.0 +25578,57,19.5,16,0.0 +25578,35,18,17,0.0 +25578,64,33.25,15,0.0 +25578,3,10,15,0.0 +25578,68,12.5,5,0.0 +25578,2,19,44,0.0 +25578,30,25.89,31,0.0 +25578,66,17,28,0.0 +25578,52,7,1,0.0 +25578,17,39,49,0.0 +25578,5,21.35,40,0.0 +25578,50,16.25,33,0.0 +25578,44,19.45,15,0.0 +25579,26,31.23,10,0.0 +25579,8,40,1,0.0 +25579,38,263.5,38,0.0 +25579,15,15.5,39,0.0 +25579,59,55,29,0.0 +25579,52,7,4,0.0 +25579,72,34.8,1,0.0 +25579,19,9.2,31,0.0 +25579,49,20,18,0.0 +25579,44,19.45,20,0.0 +25579,4,22,16,0.0 +25579,1,18,37,0.0 +25579,74,10,12,0.0 +25579,47,9.5,37,0.0 +25579,56,38,1,0.0 +25579,62,49.3,30,0.0 +25579,5,21.35,4,0.0 +25579,63,43.9,3,0.0 +25579,60,34,48,0.0 +25579,57,19.5,16,0.0 +25579,65,21.05,35,0.0 +25580,53,32.8,4,0.0 +25580,28,45.6,16,0.0 +25580,12,38,21,0.0 +25580,61,28.5,34,0.0 +25580,42,14,49,0.0 +25580,77,13,20,0.0 +25580,35,18,14,0.0 +25580,47,9.5,34,0.0 +25580,5,21.35,19,0.0 +25580,65,21.05,27,0.0 +25580,58,13.25,41,0.0 +25580,52,7,25,0.0 +25580,31,12.5,48,0.0 +25580,48,12.75,13,0.0 +25580,33,2.5,39,0.0 +25580,37,26,34,0.0 +25580,66,17,30,0.0 +25580,13,6,10,0.0 +25580,39,18,10,0.0 +25580,64,33.25,42,0.0 +25580,4,22,4,0.0 +25580,2,19,8,0.0 +25580,59,55,34,0.0 +25580,7,30,17,0.0 +25580,57,19.5,11,0.0 +25580,10,31,22,0.0 +25580,36,19,33,0.0 +25580,62,49.3,25,0.0 +25580,38,263.5,33,0.0 +25580,40,18.4,11,0.0 +25580,8,40,10,0.0 +25580,29,123.79,50,0.0 +25580,26,31.23,23,0.0 +25580,1,18,40,0.0 +25580,32,32,38,0.0 +25580,45,9.5,28,0.0 +25580,41,9.65,49,0.0 +25580,43,46,39,0.0 +25580,49,20,30,0.0 +25580,6,25,40,0.0 +25580,68,12.5,15,0.0 +25580,20,81,26,0.0 +25580,16,17.45,26,0.0 +25580,44,19.45,13,0.0 +25580,27,43.9,12,0.0 +25580,63,43.9,6,0.0 +25580,60,34,22,0.0 +25580,18,62.5,16,0.0 +25580,73,15,5,0.0 +25580,69,36,15,0.0 +25580,21,10,21,0.0 +25580,71,21.5,14,0.0 +25580,67,14,20,0.0 +25580,11,21,5,0.0 +25580,46,12,1,0.0 +25580,25,14,34,0.0 +25581,51,53,3,0.0 +25582,21,10,16,0.0 +25582,2,19,3,0.0 +25582,68,12.5,40,0.0 +25582,77,13,36,0.0 +25582,26,31.23,24,0.0 +25582,57,19.5,42,0.0 +25582,12,38,44,0.0 +25582,42,14,15,0.0 +25582,76,18,40,0.0 +25582,10,31,21,0.0 +25583,52,7,21,0.0 +25583,19,9.2,49,0.0 +25583,23,9,49,0.0 +25583,51,53,27,0.0 +25583,30,25.89,21,0.0 +25583,64,33.25,34,0.0 +25583,61,28.5,29,0.0 +25583,12,38,48,0.0 +25583,42,14,4,0.0 +25583,71,21.5,29,0.0 +25583,49,20,1,0.0 +25583,4,22,41,0.0 +25583,17,39,12,0.0 +25583,73,15,14,0.0 +25583,38,263.5,19,0.0 +25583,35,18,38,0.0 +25583,9,97,8,0.0 +25583,16,17.45,19,0.0 +25583,29,123.79,34,0.0 +25583,27,43.9,19,0.0 +25583,58,13.25,24,0.0 +25583,67,14,12,0.0 +25583,69,36,40,0.0 +25583,11,21,16,0.0 +25583,43,46,2,0.0 +25583,72,34.8,37,0.0 +25583,62,49.3,44,0.0 +25583,24,4.5,49,0.0 +25583,2,19,12,0.0 +25583,46,12,41,0.0 +25583,13,6,26,0.0 +25583,45,9.5,35,0.0 +25583,15,15.5,16,0.0 +25583,54,7.45,15,0.0 +25583,28,45.6,38,0.0 +25583,74,10,37,0.0 +25583,63,43.9,1,0.0 +25583,56,38,46,0.0 +25583,77,13,21,0.0 +25583,37,26,49,0.0 +25583,21,10,3,0.0 +25583,59,55,30,0.0 +25583,48,12.75,4,0.0 +25583,6,25,13,0.0 +25583,41,9.65,30,0.0 +25583,50,16.25,40,0.0 +25583,60,34,28,0.0 +25583,39,18,6,0.0 +25583,32,32,26,0.0 +25583,22,21,9,0.0 +25583,20,81,45,0.0 +25583,47,9.5,16,0.0 +25583,3,10,23,0.0 +25583,66,17,22,0.0 +25583,53,32.8,47,0.0 +25583,18,62.5,49,0.0 +25583,40,18.4,46,0.0 +25583,55,24,26,0.0 +25583,33,2.5,6,0.0 +25583,5,21.35,15,0.0 +25583,7,30,40,0.0 +25583,65,21.05,35,0.0 +25583,36,19,29,0.0 +25584,16,17.45,2,0.0 +25584,32,32,9,0.0 +25584,13,6,20,0.0 +25584,73,15,29,0.0 +25584,19,9.2,30,0.0 +25584,62,49.3,9,0.0 +25584,37,26,46,0.0 +25584,67,14,34,0.0 +25584,38,263.5,39,0.0 +25584,28,45.6,14,0.0 +25584,9,97,8,0.0 +25584,26,31.23,38,0.0 +25584,34,14,44,0.0 +25584,23,9,40,0.0 +25584,68,12.5,46,0.0 +25584,54,7.45,23,0.0 +25584,77,13,13,0.0 +25584,10,31,2,0.0 +25584,49,20,25,0.0 +25584,12,38,2,0.0 +25584,71,21.5,49,0.0 +25584,31,12.5,1,0.0 +25584,57,19.5,39,0.0 +25584,17,39,28,0.0 +25584,7,30,41,0.0 +25584,55,24,40,0.0 +25584,24,4.5,49,0.0 +25584,21,10,29,0.0 +25584,4,22,40,0.0 +25584,51,53,15,0.0 +25584,30,25.89,38,0.0 +25584,6,25,24,0.0 +25584,70,15,17,0.0 +25584,35,18,11,0.0 +25584,22,21,35,0.0 +25584,40,18.4,29,0.0 +25584,18,62.5,7,0.0 +25584,47,9.5,29,0.0 +25584,20,81,13,0.0 +25584,75,7.75,25,0.0 +25584,27,43.9,5,0.0 +25584,60,34,9,0.0 +25584,72,34.8,25,0.0 +25584,61,28.5,50,0.0 +25584,11,21,48,0.0 +25584,74,10,13,0.0 +25584,43,46,49,0.0 +25584,14,23.25,34,0.0 +25584,41,9.65,7,0.0 +25584,44,19.45,18,0.0 +25584,15,15.5,17,0.0 +25584,33,2.5,8,0.0 +25584,50,16.25,10,0.0 +25584,65,21.05,32,0.0 +25584,52,7,7,0.0 +25584,5,21.35,32,0.0 +25584,64,33.25,34,0.0 +25584,66,17,24,0.0 +25584,25,14,13,0.0 +25584,3,10,22,0.0 +25584,48,12.75,6,0.0 +25584,2,19,21,0.0 +25584,76,18,45,0.0 +25584,45,9.5,25,0.0 +25584,58,13.25,18,0.0 +25584,59,55,17,0.0 +25584,56,38,43,0.0 +25584,39,18,16,0.0 +25584,1,18,7,0.0 +25584,46,12,39,0.0 +25584,53,32.8,38,0.0 +25585,61,28.5,49,0.0 +25585,57,19.5,2,0.0 +25585,46,12,4,0.0 +25585,48,12.75,43,0.0 +25585,49,20,25,0.0 +25585,14,23.25,6,0.0 +25585,18,62.5,27,0.0 +25585,67,14,17,0.0 +25585,32,32,12,0.0 +25585,51,53,1,0.0 +25585,77,13,48,0.0 +25585,54,7.45,42,0.0 +25585,17,39,9,0.0 +25585,43,46,37,0.0 +25585,25,14,17,0.0 +25585,60,34,13,0.0 +25585,69,36,38,0.0 +25585,34,14,49,0.0 +25585,5,21.35,17,0.0 +25585,59,55,2,0.0 +25585,35,18,47,0.0 +25585,24,4.5,38,0.0 +25585,3,10,35,0.0 +25585,74,10,18,0.0 +25585,22,21,49,0.0 +25585,23,9,43,0.0 +25585,27,43.9,17,0.0 +25585,66,17,31,0.0 +25585,37,26,16,0.0 +25585,39,18,13,0.0 +25585,64,33.25,32,0.0 +25585,6,25,38,0.0 +25585,31,12.5,37,0.0 +25585,42,14,11,0.0 +25585,9,97,30,0.0 +25585,33,2.5,26,0.0 +25585,73,15,32,0.0 +25585,36,19,29,0.0 +25585,76,18,23,0.0 +25585,38,263.5,8,0.0 +25585,71,21.5,9,0.0 +25585,40,18.4,24,0.0 +25585,56,38,13,0.0 +25585,2,19,44,0.0 +25585,26,31.23,18,0.0 +25585,72,34.8,31,0.0 +25585,58,13.25,7,0.0 +25585,7,30,33,0.0 +25585,44,19.45,35,0.0 +25585,1,18,22,0.0 +25585,65,21.05,49,0.0 +25585,19,9.2,20,0.0 +25585,29,123.79,38,0.0 +25585,52,7,28,0.0 +25586,38,263.5,46,0.0 +25586,48,12.75,41,0.0 +25586,43,46,14,0.0 +25586,64,33.25,43,0.0 +25586,12,38,40,0.0 +25586,35,18,26,0.0 +25586,67,14,49,0.0 +25586,10,31,10,0.0 +25586,11,21,35,0.0 +25586,4,22,14,0.0 +25586,71,21.5,19,0.0 +25586,34,14,40,0.0 +25586,16,17.45,23,0.0 +25586,7,30,32,0.0 +25586,74,10,18,0.0 +25586,13,6,46,0.0 +25586,60,34,40,0.0 +25586,9,97,21,0.0 +25586,57,19.5,40,0.0 +25586,22,21,43,0.0 +25586,41,9.65,30,0.0 +25586,65,21.05,14,0.0 +25586,50,16.25,3,0.0 +25586,37,26,19,0.0 +25586,61,28.5,26,0.0 +25586,15,15.5,43,0.0 +25586,5,21.35,8,0.0 +25586,30,25.89,5,0.0 +25586,70,15,15,0.0 +25586,77,13,35,0.0 +25586,25,14,32,0.0 +25586,54,7.45,15,0.0 +25586,6,25,49,0.0 +25587,57,19.5,34,0.0 +25588,47,9.5,49,0.0 +25588,52,7,38,0.0 +25588,4,22,25,0.0 +25588,16,17.45,49,0.0 +25588,71,21.5,18,0.0 +25588,60,34,17,0.0 +25588,48,12.75,24,0.0 +25588,51,53,4,0.0 +25588,14,23.25,9,0.0 +25588,38,263.5,4,0.0 +25588,62,49.3,10,0.0 +25588,53,32.8,5,0.0 +25588,64,33.25,5,0.0 +25588,66,17,31,0.0 +25588,34,14,16,0.0 +25588,13,6,28,0.0 +25588,30,25.89,33,0.0 +25588,57,19.5,34,0.0 +25588,9,97,49,0.0 +25588,74,10,46,0.0 +25588,28,45.6,11,0.0 +25588,54,7.45,43,0.0 +25588,41,9.65,16,0.0 +25588,17,39,49,0.0 +25588,36,19,5,0.0 +25588,44,19.45,27,0.0 +25588,31,12.5,22,0.0 +25588,67,14,20,0.0 +25588,18,62.5,45,0.0 +25588,58,13.25,9,0.0 +25588,72,34.8,7,0.0 +25588,11,21,15,0.0 +25588,77,13,1,0.0 +25588,5,21.35,1,0.0 +25588,20,81,14,0.0 +25588,2,19,11,0.0 +25588,12,38,23,0.0 +25588,69,36,43,0.0 +25588,73,15,34,0.0 +25588,76,18,43,0.0 +25588,68,12.5,20,0.0 +25588,21,10,27,0.0 +25588,75,7.75,48,0.0 +25588,56,38,2,0.0 +25588,61,28.5,30,0.0 +25588,49,20,43,0.0 +25588,45,9.5,17,0.0 +25588,15,15.5,35,0.0 +25588,3,10,5,0.0 +25588,35,18,5,0.0 +25588,65,21.05,10,0.0 +25588,1,18,10,0.0 +25588,70,15,34,0.0 +25588,24,4.5,45,0.0 +25588,63,43.9,1,0.0 +25588,39,18,44,0.0 +25588,29,123.79,26,0.0 +25588,10,31,1,0.0 +25588,37,26,23,0.0 +25588,6,25,47,0.0 +25588,7,30,21,0.0 +25588,59,55,50,0.0 +25588,22,21,46,0.0 +25588,25,14,28,0.0 +25588,27,43.9,6,0.0 +25588,32,32,23,0.0 +25588,19,9.2,29,0.0 +25588,50,16.25,11,0.0 +25588,42,14,28,0.0 +25588,55,24,25,0.0 +25588,46,12,27,0.0 +25588,43,46,37,0.0 +25588,33,2.5,20,0.0 +25589,22,21,50,0.0 +25589,57,19.5,28,0.0 +25589,65,21.05,30,0.0 +25589,32,32,21,0.0 +25589,59,55,36,0.0 +25589,30,25.89,8,0.0 +25589,28,45.6,44,0.0 +25589,12,38,14,0.0 +25589,6,25,44,0.0 +25589,63,43.9,9,0.0 +25589,67,14,33,0.0 +25589,14,23.25,21,0.0 +25589,27,43.9,35,0.0 +25589,8,40,39,0.0 +25589,61,28.5,9,0.0 +25589,75,7.75,34,0.0 +25589,73,15,29,0.0 +25589,17,39,37,0.0 +25589,18,62.5,11,0.0 +25589,39,18,40,0.0 +25589,41,9.65,25,0.0 +25589,51,53,20,0.0 +25589,13,6,11,0.0 +25589,24,4.5,36,0.0 +25589,46,12,44,0.0 +25589,4,22,46,0.0 +25589,26,31.23,49,0.0 +25589,50,16.25,22,0.0 +25589,5,21.35,43,0.0 +25589,40,18.4,30,0.0 +25589,23,9,18,0.0 +25589,15,15.5,38,0.0 +25589,71,21.5,29,0.0 +25589,7,30,39,0.0 +25589,37,26,45,0.0 +25589,35,18,3,0.0 +25589,77,13,12,0.0 +25589,69,36,12,0.0 +25589,53,32.8,33,0.0 +25589,47,9.5,22,0.0 +25589,31,12.5,30,0.0 +25589,21,10,34,0.0 +25589,48,12.75,47,0.0 +25589,9,97,37,0.0 +25589,29,123.79,36,0.0 +25589,76,18,21,0.0 +25589,74,10,30,0.0 +25589,70,15,31,0.0 +25589,36,19,8,0.0 +25589,19,9.2,43,0.0 +25589,58,13.25,31,0.0 +25589,25,14,28,0.0 +25589,38,263.5,42,0.0 +25589,60,34,12,0.0 +25589,34,14,7,0.0 +25589,45,9.5,35,0.0 +25589,42,14,25,0.0 +25589,16,17.45,33,0.0 +25589,62,49.3,16,0.0 +25590,21,10,18,0.0 +25590,14,23.25,46,0.0 +25590,37,26,27,0.0 +25590,10,31,37,0.0 +25590,67,14,49,0.0 +25590,55,24,15,0.0 +25590,20,81,44,0.0 +25590,39,18,15,0.0 +25590,34,14,4,0.0 +25590,5,21.35,30,0.0 +25590,44,19.45,5,0.0 +25590,11,21,50,0.0 +25590,43,46,34,0.0 +25590,22,21,50,0.0 +25590,6,25,14,0.0 +25590,4,22,23,0.0 +25590,45,9.5,47,0.0 +25590,13,6,50,0.0 +25590,26,31.23,28,0.0 +25590,30,25.89,7,0.0 +25590,58,13.25,46,0.0 +25590,74,10,11,0.0 +25590,29,123.79,14,0.0 +25590,33,2.5,18,0.0 +25590,40,18.4,29,0.0 +25590,61,28.5,5,0.0 +25590,38,263.5,12,0.0 +25590,51,53,24,0.0 +25590,52,7,14,0.0 +25590,23,9,50,0.0 +25590,31,12.5,32,0.0 +25590,36,19,30,0.0 +25590,56,38,49,0.0 +25590,15,15.5,49,0.0 +25590,18,62.5,7,0.0 +25590,7,30,23,0.0 +25590,2,19,7,0.0 +25590,73,15,48,0.0 +25590,32,32,22,0.0 +25590,65,21.05,43,0.0 +25590,50,16.25,16,0.0 +25590,71,21.5,38,0.0 +25590,35,18,18,0.0 +25591,45,9.5,32,0.0 +25591,16,17.45,13,0.0 +25591,56,38,17,0.0 +25591,27,43.9,32,0.0 +25591,63,43.9,22,0.0 +25591,26,31.23,4,0.0 +25591,53,32.8,1,0.0 +25591,58,13.25,10,0.0 +25591,8,40,47,0.0 +25591,50,16.25,10,0.0 +25591,73,15,33,0.0 +25591,31,12.5,6,0.0 +25591,57,19.5,10,0.0 +25591,13,6,5,0.0 +25591,18,62.5,4,0.0 +25591,9,97,22,0.0 +25591,24,4.5,24,0.0 +25591,11,21,32,0.0 +25591,71,21.5,9,0.0 +25591,43,46,26,0.0 +25591,74,10,32,0.0 +25591,49,20,3,0.0 +25591,6,25,3,0.0 +25591,3,10,26,0.0 +25591,41,9.65,30,0.0 +25591,59,55,8,0.0 +25591,20,81,48,0.0 +25591,28,45.6,19,0.0 +25591,12,38,6,0.0 +25591,10,31,47,0.0 +25591,76,18,13,0.0 +25591,77,13,49,0.0 +25591,15,15.5,1,0.0 +25591,23,9,10,0.0 +25591,75,7.75,42,0.0 +25591,19,9.2,13,0.0 +25591,70,15,49,0.0 +25591,22,21,8,0.0 +25591,46,12,32,0.0 +25591,33,2.5,15,0.0 +25591,51,53,50,0.0 +25591,42,14,43,0.0 +25591,62,49.3,12,0.0 +25591,72,34.8,47,0.0 +25591,54,7.45,11,0.0 +25591,69,36,49,0.0 +25591,30,25.89,37,0.0 +25591,36,19,1,0.0 +25591,60,34,30,0.0 +25591,35,18,16,0.0 +25591,29,123.79,31,0.0 +25591,7,30,5,0.0 +25591,37,26,11,0.0 +25591,40,18.4,32,0.0 +25591,25,14,20,0.0 +25591,52,7,33,0.0 +25591,66,17,42,0.0 +25591,44,19.45,40,0.0 +25591,1,18,48,0.0 +25591,68,12.5,16,0.0 +25591,55,24,20,0.0 +25591,67,14,43,0.0 +25591,14,23.25,33,0.0 +25591,47,9.5,25,0.0 +25591,38,263.5,13,0.0 +25591,32,32,18,0.0 +25591,34,14,18,0.0 +25591,64,33.25,41,0.0 +25591,4,22,9,0.0 +25591,39,18,25,0.0 +25592,74,10,33,0.0 +25592,67,14,40,0.0 +25592,70,15,20,0.0 +25592,51,53,35,0.0 +25592,59,55,30,0.0 +25592,49,20,20,0.0 +25592,48,12.75,49,0.0 +25592,7,30,16,0.0 +25592,52,7,24,0.0 +25592,22,21,24,0.0 +25592,58,13.25,45,0.0 +25592,38,263.5,38,0.0 +25592,6,25,39,0.0 +25592,28,45.6,25,0.0 +25592,77,13,43,0.0 +25592,37,26,10,0.0 +25592,40,18.4,6,0.0 +25592,56,38,46,0.0 +25592,44,19.45,1,0.0 +25592,68,12.5,49,0.0 +25592,36,19,45,0.0 +25592,53,32.8,26,0.0 +25593,69,36,42,0.0 +25593,14,23.25,45,0.0 +25593,72,34.8,31,0.0 +25593,40,18.4,7,0.0 +25593,12,38,6,0.0 +25593,60,34,18,0.0 +25593,18,62.5,31,0.0 +25593,32,32,19,0.0 +25593,47,9.5,41,0.0 +25593,39,18,28,0.0 +25593,27,43.9,13,0.0 +25593,19,9.2,35,0.0 +25593,45,9.5,5,0.0 +25593,57,19.5,21,0.0 +25593,30,25.89,24,0.0 +25593,11,21,41,0.0 +25593,66,17,31,0.0 +25593,53,32.8,42,0.0 +25593,37,26,35,0.0 +25593,38,263.5,6,0.0 +25593,68,12.5,34,0.0 +25593,22,21,4,0.0 +25593,21,10,21,0.0 +25593,62,49.3,2,0.0 +25593,74,10,32,0.0 +25593,48,12.75,2,0.0 +25593,13,6,33,0.0 +25593,6,25,22,0.0 +25593,58,13.25,48,0.0 +25593,70,15,16,0.0 +25593,34,14,40,0.0 +25593,28,45.6,14,0.0 +25593,77,13,19,0.0 +25593,35,18,31,0.0 +25594,66,17,40,0.0 +25594,48,12.75,24,0.0 +25594,46,12,30,0.0 +25594,5,21.35,11,0.0 +25594,16,17.45,42,0.0 +25594,54,7.45,43,0.0 +25594,3,10,6,0.0 +25594,6,25,27,0.0 +25594,20,81,15,0.0 +25594,42,14,41,0.0 +25594,73,15,14,0.0 +25594,11,21,22,0.0 +25594,51,53,14,0.0 +25594,31,12.5,3,0.0 +25594,27,43.9,27,0.0 +25594,38,263.5,22,0.0 +25594,9,97,33,0.0 +25594,19,9.2,17,0.0 +25595,13,6,7,0.0 +25595,68,12.5,23,0.0 +25595,69,36,9,0.0 +25595,57,19.5,43,0.0 +25595,26,31.23,34,0.0 +25595,28,45.6,35,0.0 +25595,46,12,2,0.0 +25595,43,46,27,0.0 +25595,24,4.5,12,0.0 +25595,50,16.25,41,0.0 +25595,4,22,21,0.0 +25595,58,13.25,22,0.0 +25595,8,40,12,0.0 +25595,63,43.9,38,0.0 +25595,66,17,5,0.0 +25595,21,10,8,0.0 +25595,55,24,3,0.0 +25595,40,18.4,37,0.0 +25595,2,19,3,0.0 +25595,56,38,10,0.0 +25595,42,14,10,0.0 +25595,17,39,46,0.0 +25595,27,43.9,38,0.0 +25595,23,9,49,0.0 +25595,47,9.5,36,0.0 +25595,54,7.45,26,0.0 +25595,32,32,30,0.0 +25595,20,81,16,0.0 +25595,15,15.5,9,0.0 +25595,29,123.79,49,0.0 +25595,52,7,43,0.0 +25595,36,19,26,0.0 +25595,6,25,43,0.0 +25595,30,25.89,38,0.0 +25595,22,21,7,0.0 +25595,71,21.5,31,0.0 +25595,76,18,43,0.0 +25595,65,21.05,30,0.0 +25595,31,12.5,34,0.0 +25595,45,9.5,38,0.0 +25595,11,21,13,0.0 +25595,34,14,34,0.0 +25595,9,97,28,0.0 +25595,48,12.75,34,0.0 +25595,75,7.75,38,0.0 +25595,59,55,16,0.0 +25595,33,2.5,25,0.0 +25595,60,34,47,0.0 +25595,49,20,32,0.0 +25595,3,10,29,0.0 +25595,19,9.2,29,0.0 +25595,73,15,45,0.0 +25595,74,10,41,0.0 +25595,25,14,17,0.0 +25595,5,21.35,19,0.0 +25595,77,13,44,0.0 +25595,38,263.5,2,0.0 +25595,37,26,34,0.0 +25595,18,62.5,40,0.0 +25595,39,18,2,0.0 +25595,67,14,49,0.0 +25595,35,18,5,0.0 +25595,16,17.45,40,0.0 +25595,7,30,24,0.0 +25595,72,34.8,2,0.0 +25595,41,9.65,39,0.0 +25595,61,28.5,10,0.0 +25595,10,31,20,0.0 +25595,44,19.45,25,0.0 +25595,62,49.3,45,0.0 +25595,64,33.25,4,0.0 +25595,1,18,44,0.0 +25595,14,23.25,15,0.0 +25595,51,53,37,0.0 +25596,37,26,7,0.0 +25596,28,45.6,27,0.0 +25596,26,31.23,49,0.0 +25596,34,14,14,0.0 +25596,76,18,4,0.0 +25596,48,12.75,42,0.0 +25596,33,2.5,5,0.0 +25596,17,39,45,0.0 +25596,60,34,14,0.0 +25596,9,97,46,0.0 +25596,69,36,22,0.0 +25596,54,7.45,4,0.0 +25596,66,17,39,0.0 +25596,71,21.5,13,0.0 +25596,1,18,26,0.0 +25596,19,9.2,43,0.0 +25596,43,46,28,0.0 +25596,53,32.8,25,0.0 +25596,47,9.5,24,0.0 +25596,52,7,4,0.0 +25596,25,14,19,0.0 +25596,13,6,18,0.0 +25596,41,9.65,1,0.0 +25596,59,55,7,0.0 +25596,8,40,42,0.0 +25596,77,13,24,0.0 +25596,14,23.25,46,0.0 +25596,73,15,44,0.0 +25596,40,18.4,18,0.0 +25596,4,22,14,0.0 +25596,46,12,3,0.0 +25597,73,15,2,0.0 +25597,33,2.5,12,0.0 +25597,64,33.25,20,0.0 +25597,22,21,22,0.0 +25597,65,21.05,15,0.0 +25597,39,18,1,0.0 +25597,17,39,22,0.0 +25597,13,6,42,0.0 +25597,26,31.23,16,0.0 +25597,23,9,9,0.0 +25597,32,32,44,0.0 +25597,1,18,46,0.0 +25597,28,45.6,37,0.0 +25597,70,15,11,0.0 +25597,61,28.5,47,0.0 +25597,7,30,36,0.0 +25597,45,9.5,28,0.0 +25597,41,9.65,6,0.0 +25597,71,21.5,32,0.0 +25597,2,19,21,0.0 +25597,6,25,21,0.0 +25597,67,14,6,0.0 +25597,16,17.45,48,0.0 +25597,20,81,35,0.0 +25597,66,17,37,0.0 +25598,2,19,37,0.0 +25598,38,263.5,6,0.0 +25598,63,43.9,9,0.0 +25598,34,14,24,0.0 +25598,15,15.5,32,0.0 +25598,33,2.5,50,0.0 +25598,51,53,45,0.0 +25598,73,15,28,0.0 +25598,72,34.8,9,0.0 +25598,10,31,28,0.0 +25598,41,9.65,36,0.0 +25598,43,46,23,0.0 +25598,8,40,12,0.0 +25598,37,26,34,0.0 +25598,17,39,42,0.0 +25598,76,18,48,0.0 +25598,19,9.2,27,0.0 +25598,44,19.45,30,0.0 +25598,31,12.5,21,0.0 +25598,68,12.5,48,0.0 +25598,14,23.25,26,0.0 +25598,20,81,7,0.0 +25598,27,43.9,21,0.0 +25598,30,25.89,36,0.0 +25598,24,4.5,43,0.0 +25598,55,24,16,0.0 +25598,52,7,49,0.0 +25598,64,33.25,37,0.0 +25598,6,25,4,0.0 +25598,69,36,37,0.0 +25598,1,18,21,0.0 +25598,45,9.5,45,0.0 +25598,25,14,32,0.0 +25598,40,18.4,45,0.0 +25598,48,12.75,24,0.0 +25598,5,21.35,27,0.0 +25598,71,21.5,22,0.0 +25598,18,62.5,8,0.0 +25598,53,32.8,50,0.0 +25598,65,21.05,13,0.0 +25598,13,6,43,0.0 +25598,61,28.5,13,0.0 +25598,39,18,25,0.0 +25598,66,17,24,0.0 +25598,3,10,17,0.0 +25598,42,14,14,0.0 +25598,23,9,27,0.0 +25598,67,14,6,0.0 +25598,58,13.25,22,0.0 +25598,60,34,4,0.0 +25598,16,17.45,43,0.0 +25598,59,55,18,0.0 +25598,21,10,19,0.0 +25598,22,21,9,0.0 +25598,70,15,14,0.0 +25598,9,97,27,0.0 +25598,57,19.5,18,0.0 +25598,46,12,8,0.0 +25598,11,21,48,0.0 +25598,4,22,12,0.0 +25598,7,30,20,0.0 +25598,56,38,16,0.0 +25598,62,49.3,23,0.0 +25598,32,32,4,0.0 +25598,12,38,36,0.0 +25598,35,18,8,0.0 +25598,36,19,4,0.0 +25598,28,45.6,27,0.0 +25598,47,9.5,50,0.0 +25598,54,7.45,1,0.0 +25598,77,13,41,0.0 +25598,29,123.79,36,0.0 +25599,61,28.5,16,0.0 +25599,24,4.5,40,0.0 +25599,4,22,28,0.0 +25600,77,13,27,0.0 +25600,46,12,42,0.0 +25600,4,22,42,0.0 +25600,36,19,15,0.0 +25600,39,18,13,0.0 +25600,53,32.8,23,0.0 +25600,30,25.89,22,0.0 +25600,16,17.45,34,0.0 +25600,1,18,50,0.0 +25600,45,9.5,23,0.0 +25600,58,13.25,28,0.0 +25600,40,18.4,5,0.0 +25600,23,9,36,0.0 +25600,64,33.25,13,0.0 +25600,35,18,9,0.0 +25600,52,7,14,0.0 +25600,27,43.9,4,0.0 +25600,72,34.8,25,0.0 +25600,28,45.6,4,0.0 +25600,60,34,22,0.0 +25600,9,97,28,0.0 +25600,19,9.2,39,0.0 +25600,22,21,47,0.0 +25600,24,4.5,33,0.0 +25600,5,21.35,35,0.0 +25600,68,12.5,10,0.0 +25600,69,36,8,0.0 +25600,48,12.75,26,0.0 +25600,61,28.5,37,0.0 +25600,66,17,22,0.0 +25600,17,39,50,0.0 +25600,55,24,6,0.0 +25600,75,7.75,14,0.0 +25600,43,46,14,0.0 +25600,71,21.5,25,0.0 +25600,10,31,1,0.0 +25600,31,12.5,34,0.0 +25600,7,30,17,0.0 +25600,12,38,33,0.0 +25600,74,10,12,0.0 +25600,3,10,8,0.0 +25600,76,18,15,0.0 +25600,20,81,39,0.0 +25600,18,62.5,38,0.0 +25600,70,15,23,0.0 +25600,54,7.45,32,0.0 +25600,67,14,12,0.0 +25600,50,16.25,37,0.0 +25600,29,123.79,12,0.0 +25600,57,19.5,50,0.0 +25600,37,26,16,0.0 +25600,44,19.45,16,0.0 +25600,63,43.9,46,0.0 +25600,2,19,15,0.0 +25600,49,20,48,0.0 +25600,25,14,44,0.0 +25600,73,15,38,0.0 +25600,62,49.3,29,0.0 +25600,41,9.65,22,0.0 +25600,34,14,41,0.0 +25600,13,6,1,0.0 +25600,15,15.5,1,0.0 +25600,65,21.05,50,0.0 +25600,59,55,4,0.0 +25600,47,9.5,1,0.0 +25600,56,38,47,0.0 +25600,21,10,26,0.0 +25600,33,2.5,12,0.0 +25600,26,31.23,36,0.0 +25600,14,23.25,25,0.0 +25600,6,25,5,0.0 +25600,11,21,9,0.0 +25600,51,53,12,0.0 +25601,11,21,48,0.0 +25601,33,2.5,18,0.0 +25601,13,6,5,0.0 +25601,64,33.25,24,0.0 +25601,37,26,32,0.0 +25601,18,62.5,46,0.0 +25601,16,17.45,21,0.0 +25601,17,39,46,0.0 +25601,68,12.5,32,0.0 +25601,60,34,25,0.0 +25601,51,53,18,0.0 +25601,14,23.25,22,0.0 +25601,42,14,44,0.0 +25601,9,97,46,0.0 +25601,70,15,18,0.0 +25601,29,123.79,8,0.0 +25601,77,13,20,0.0 +25601,35,18,24,0.0 +25601,63,43.9,20,0.0 +25601,62,49.3,7,0.0 +25601,41,9.65,22,0.0 +25601,56,38,6,0.0 +25601,73,15,20,0.0 +25601,47,9.5,34,0.0 +25601,2,19,9,0.0 +25601,61,28.5,44,0.0 +25601,20,81,27,0.0 +25601,52,7,33,0.0 +25601,74,10,46,0.0 +25601,3,10,22,0.0 +25601,36,19,21,0.0 +25601,4,22,32,0.0 +25601,43,46,11,0.0 +25601,19,9.2,34,0.0 +25601,30,25.89,44,0.0 +25601,76,18,36,0.0 +25601,31,12.5,30,0.0 +25601,58,13.25,7,0.0 +25601,45,9.5,48,0.0 +25601,6,25,20,0.0 +25601,28,45.6,15,0.0 +25601,44,19.45,28,0.0 +25601,1,18,1,0.0 +25601,15,15.5,1,0.0 +25601,72,34.8,29,0.0 +25601,49,20,21,0.0 +25601,34,14,2,0.0 +25601,25,14,31,0.0 +25601,21,10,37,0.0 +25601,69,36,37,0.0 +25601,39,18,25,0.0 +25601,53,32.8,46,0.0 +25601,10,31,27,0.0 +25601,65,21.05,23,0.0 +25601,38,263.5,6,0.0 +25601,66,17,31,0.0 +25601,5,21.35,27,0.0 +25601,54,7.45,25,0.0 +25602,29,123.79,12,0.0 +25602,21,10,6,0.0 +25602,62,49.3,2,0.0 +25602,76,18,50,0.0 +25602,40,18.4,40,0.0 +25602,47,9.5,48,0.0 +25602,10,31,37,0.0 +25602,39,18,15,0.0 +25602,24,4.5,13,0.0 +25602,20,81,39,0.0 +25602,53,32.8,12,0.0 +25602,22,21,26,0.0 +25602,2,19,14,0.0 +25602,65,21.05,37,0.0 +25602,42,14,10,0.0 +25602,32,32,16,0.0 +25602,38,263.5,9,0.0 +25602,19,9.2,14,0.0 +25602,77,13,24,0.0 +25602,59,55,49,0.0 +25602,63,43.9,9,0.0 +25602,34,14,17,0.0 +25602,61,28.5,19,0.0 +25602,9,97,47,0.0 +25602,70,15,42,0.0 +25602,17,39,15,0.0 +25602,67,14,35,0.0 +25602,30,25.89,40,0.0 +25602,3,10,40,0.0 +25602,12,38,25,0.0 +25602,11,21,39,0.0 +25602,31,12.5,29,0.0 +25602,73,15,27,0.0 +25602,75,7.75,2,0.0 +25602,26,31.23,2,0.0 +25602,13,6,43,0.0 +25602,45,9.5,4,0.0 +25602,44,19.45,48,0.0 +25602,18,62.5,24,0.0 +25602,48,12.75,15,0.0 +25602,7,30,6,0.0 +25602,15,15.5,40,0.0 +25602,66,17,24,0.0 +25602,60,34,50,0.0 +25602,68,12.5,1,0.0 +25602,23,9,11,0.0 +25602,69,36,28,0.0 +25602,35,18,49,0.0 +25602,54,7.45,29,0.0 +25602,16,17.45,4,0.0 +25602,4,22,48,0.0 +25602,64,33.25,17,0.0 +25602,74,10,43,0.0 +25602,25,14,48,0.0 +25602,41,9.65,21,0.0 +25602,5,21.35,9,0.0 +25602,50,16.25,19,0.0 +25602,28,45.6,3,0.0 +25602,57,19.5,44,0.0 +25602,72,34.8,22,0.0 +25602,56,38,22,0.0 +25602,6,25,32,0.0 +25602,46,12,32,0.0 +25602,52,7,25,0.0 +25602,1,18,37,0.0 +25602,36,19,11,0.0 +25602,27,43.9,25,0.0 +25602,58,13.25,16,0.0 +25602,43,46,11,0.0 +25602,37,26,8,0.0 +25602,71,21.5,1,0.0 +25603,7,30,12,0.0 +25603,16,17.45,22,0.0 +25603,9,97,1,0.0 +25603,58,13.25,14,0.0 +25603,39,18,12,0.0 +25603,47,9.5,41,0.0 +25603,40,18.4,29,0.0 +25603,43,46,18,0.0 +25603,59,55,38,0.0 +25603,65,21.05,7,0.0 +25603,3,10,23,0.0 +25603,21,10,42,0.0 +25603,14,23.25,47,0.0 +25603,37,26,42,0.0 +25603,63,43.9,34,0.0 +25603,70,15,39,0.0 +25603,76,18,2,0.0 +25603,2,19,14,0.0 +25604,76,18,36,0.0 +25604,68,12.5,45,0.0 +25604,59,55,29,0.0 +25604,31,12.5,30,0.0 +25604,73,15,19,0.0 +25604,60,34,29,0.0 +25604,67,14,31,0.0 +25604,55,24,4,0.0 +25604,4,22,17,0.0 +25604,16,17.45,49,0.0 +25604,57,19.5,36,0.0 +25604,28,45.6,8,0.0 +25604,7,30,33,0.0 +25604,58,13.25,18,0.0 +25604,14,23.25,49,0.0 +25604,29,123.79,30,0.0 +25604,17,39,26,0.0 +25604,43,46,49,0.0 +25604,75,7.75,21,0.0 +25604,37,26,19,0.0 +25604,70,15,7,0.0 +25604,19,9.2,47,0.0 +25604,32,32,27,0.0 +25604,63,43.9,11,0.0 +25604,25,14,9,0.0 +25604,56,38,17,0.0 +25604,44,19.45,22,0.0 +25604,40,18.4,18,0.0 +25604,21,10,40,0.0 +25604,65,21.05,47,0.0 +25604,42,14,47,0.0 +25604,50,16.25,42,0.0 +25604,8,40,11,0.0 +25604,41,9.65,18,0.0 +25604,51,53,11,0.0 +25604,35,18,46,0.0 +25604,39,18,46,0.0 +25604,54,7.45,42,0.0 +25604,38,263.5,27,0.0 +25604,48,12.75,41,0.0 +25604,9,97,24,0.0 +25604,13,6,34,0.0 +25604,66,17,1,0.0 +25604,47,9.5,12,0.0 +25604,11,21,8,0.0 +25604,27,43.9,32,0.0 +25604,72,34.8,38,0.0 +25604,30,25.89,19,0.0 +25604,49,20,42,0.0 +25604,46,12,46,0.0 +25604,2,19,16,0.0 +25604,34,14,5,0.0 +25605,19,9.2,13,0.0 +25605,51,53,43,0.0 +25605,2,19,13,0.0 +25605,4,22,47,0.0 +25605,9,97,22,0.0 +25605,23,9,18,0.0 +25605,21,10,24,0.0 +25605,17,39,34,0.0 +25605,7,30,32,0.0 +25605,71,21.5,44,0.0 +25605,20,81,30,0.0 +25605,24,4.5,32,0.0 +25605,52,7,23,0.0 +25605,6,25,32,0.0 +25605,30,25.89,1,0.0 +25605,11,21,44,0.0 +25605,47,9.5,9,0.0 +25605,68,12.5,34,0.0 +25605,53,32.8,15,0.0 +25605,35,18,24,0.0 +25605,37,26,41,0.0 +25605,18,62.5,16,0.0 +25605,63,43.9,18,0.0 +25605,49,20,24,0.0 +25605,44,19.45,43,0.0 +25605,27,43.9,10,0.0 +25605,40,18.4,13,0.0 +25605,74,10,34,0.0 +25605,77,13,14,0.0 +25605,15,15.5,1,0.0 +25605,60,34,41,0.0 +25605,38,263.5,10,0.0 +25605,1,18,49,0.0 +25605,28,45.6,49,0.0 +25605,3,10,34,0.0 +25605,14,23.25,5,0.0 +25605,34,14,25,0.0 +25605,59,55,35,0.0 +25605,12,38,45,0.0 +25606,48,12.75,25,0.0 +25606,25,14,29,0.0 +25606,31,12.5,11,0.0 +25606,45,9.5,17,0.0 +25606,34,14,45,0.0 +25606,47,9.5,3,0.0 +25606,41,9.65,9,0.0 +25606,9,97,12,0.0 +25606,68,12.5,13,0.0 +25606,64,33.25,37,0.0 +25606,42,14,41,0.0 +25606,6,25,35,0.0 +25606,23,9,20,0.0 +25606,18,62.5,49,0.0 +25606,5,21.35,29,0.0 +25606,55,24,29,0.0 +25606,21,10,24,0.0 +25606,32,32,45,0.0 +25606,71,21.5,19,0.0 +25606,59,55,16,0.0 +25606,13,6,22,0.0 +25606,26,31.23,33,0.0 +25606,52,7,26,0.0 +25606,28,45.6,31,0.0 +25606,74,10,6,0.0 +25606,75,7.75,31,0.0 +25606,19,9.2,35,0.0 +25606,58,13.25,33,0.0 +25606,10,31,1,0.0 +25606,77,13,46,0.0 +25606,36,19,10,0.0 +25606,20,81,49,0.0 +25606,11,21,22,0.0 +25606,76,18,11,0.0 +25606,51,53,7,0.0 +25606,24,4.5,46,0.0 +25606,37,26,28,0.0 +25606,49,20,46,0.0 +25606,62,49.3,43,0.0 +25606,54,7.45,3,0.0 +25606,33,2.5,3,0.0 +25606,66,17,28,0.0 +25606,53,32.8,5,0.0 +25606,12,38,15,0.0 +25606,38,263.5,49,0.0 +25606,65,21.05,6,0.0 +25606,3,10,17,0.0 +25606,73,15,40,0.0 +25606,15,15.5,40,0.0 +25606,27,43.9,25,0.0 +25606,16,17.45,7,0.0 +25606,4,22,30,0.0 +25606,39,18,9,0.0 +25606,7,30,5,0.0 +25606,46,12,8,0.0 +25606,60,34,30,0.0 +25606,69,36,39,0.0 +25606,2,19,41,0.0 +25606,70,15,18,0.0 +25606,1,18,7,0.0 +25606,17,39,1,0.0 +25606,8,40,35,0.0 +25606,56,38,39,0.0 +25606,72,34.8,8,0.0 +25606,30,25.89,7,0.0 +25606,22,21,33,0.0 +25606,44,19.45,50,0.0 +25606,63,43.9,27,0.0 +25606,35,18,26,0.0 +25606,29,123.79,44,0.0 +25606,14,23.25,36,0.0 +25606,67,14,1,0.0 +25606,43,46,45,0.0 +25606,50,16.25,30,0.0 +25606,57,19.5,26,0.0 +25606,40,18.4,28,0.0 +25607,72,34.8,31,0.0 +25607,29,123.79,49,0.0 +25607,43,46,7,0.0 +25607,40,18.4,46,0.0 +25607,71,21.5,12,0.0 +25607,36,19,22,0.0 +25607,11,21,48,0.0 +25607,49,20,37,0.0 +25607,9,97,3,0.0 +25607,18,62.5,16,0.0 +25607,41,9.65,8,0.0 +25607,5,21.35,8,0.0 +25607,2,19,30,0.0 +25607,31,12.5,4,0.0 +25607,51,53,39,0.0 +25607,57,19.5,35,0.0 +25607,26,31.23,27,0.0 +25607,73,15,3,0.0 +25607,8,40,34,0.0 +25607,53,32.8,49,0.0 +25607,75,7.75,13,0.0 +25607,47,9.5,46,0.0 +25607,34,14,32,0.0 +25607,50,16.25,9,0.0 +25607,13,6,49,0.0 +25607,16,17.45,12,0.0 +25607,24,4.5,43,0.0 +25607,19,9.2,33,0.0 +25607,32,32,37,0.0 +25607,14,23.25,24,0.0 +25607,68,12.5,12,0.0 +25607,27,43.9,49,0.0 +25607,63,43.9,10,0.0 +25607,1,18,33,0.0 +25607,23,9,39,0.0 +25607,56,38,47,0.0 +25607,66,17,41,0.0 +25607,25,14,42,0.0 +25607,45,9.5,33,0.0 +25607,6,25,45,0.0 +25607,10,31,17,0.0 +25607,74,10,15,0.0 +25607,4,22,33,0.0 +25607,67,14,22,0.0 +25607,69,36,1,0.0 +25607,30,25.89,27,0.0 +25607,12,38,41,0.0 +25607,70,15,4,0.0 +25607,33,2.5,19,0.0 +25607,46,12,32,0.0 +25607,7,30,27,0.0 +25607,42,14,6,0.0 +25607,54,7.45,50,0.0 +25608,56,38,8,0.0 +25608,8,40,20,0.0 +25608,68,12.5,27,0.0 +25608,18,62.5,20,0.0 +25608,43,46,45,0.0 +25608,61,28.5,38,0.0 +25608,4,22,27,0.0 +25608,6,25,5,0.0 +25608,23,9,34,0.0 +25608,46,12,10,0.0 +25608,2,19,28,0.0 +25608,12,38,23,0.0 +25608,40,18.4,33,0.0 +25608,11,21,7,0.0 +25608,57,19.5,4,0.0 +25608,48,12.75,43,0.0 +25608,52,7,24,0.0 +25608,39,18,48,0.0 +25608,28,45.6,26,0.0 +25608,15,15.5,23,0.0 +25608,16,17.45,10,0.0 +25608,67,14,23,0.0 +25608,33,2.5,40,0.0 +25608,27,43.9,37,0.0 +25608,1,18,19,0.0 +25608,9,97,10,0.0 +25608,10,31,36,0.0 +25608,77,13,45,0.0 +25608,47,9.5,49,0.0 +25608,17,39,31,0.0 +25608,32,32,9,0.0 +25608,65,21.05,19,0.0 +25608,22,21,37,0.0 +25609,69,36,8,0.0 +25609,32,32,23,0.0 +25609,73,15,43,0.0 +25609,16,17.45,10,0.0 +25609,62,49.3,27,0.0 +25609,6,25,13,0.0 +25609,23,9,49,0.0 +25609,12,38,13,0.0 +25609,24,4.5,23,0.0 +25609,10,31,3,0.0 +25609,76,18,36,0.0 +25609,60,34,33,0.0 +25609,21,10,37,0.0 +25609,28,45.6,25,0.0 +25609,58,13.25,9,0.0 +25609,20,81,17,0.0 +25609,5,21.35,23,0.0 +25609,27,43.9,31,0.0 +25609,18,62.5,49,0.0 +25609,2,19,7,0.0 +25609,11,21,28,0.0 +25609,22,21,17,0.0 +25609,72,34.8,3,0.0 +25609,70,15,28,0.0 +25609,53,32.8,33,0.0 +25609,66,17,2,0.0 +25609,29,123.79,44,0.0 +25609,68,12.5,50,0.0 +25609,3,10,41,0.0 +25609,55,24,30,0.0 +25609,54,7.45,40,0.0 +25609,35,18,41,0.0 +25609,49,20,35,0.0 +25609,8,40,41,0.0 +25609,36,19,1,0.0 +25609,9,97,22,0.0 +25609,44,19.45,40,0.0 +25610,51,53,24,0.0 +25610,69,36,16,0.0 +25610,70,15,14,0.0 +25610,28,45.6,7,0.0 +25610,17,39,10,0.0 +25610,74,10,9,0.0 +25610,43,46,16,0.0 +25610,1,18,50,0.0 +25610,38,263.5,24,0.0 +25610,50,16.25,17,0.0 +25610,35,18,28,0.0 +25610,27,43.9,25,0.0 +25610,12,38,42,0.0 +25610,16,17.45,3,0.0 +25610,34,14,16,0.0 +25610,41,9.65,3,0.0 +25610,14,23.25,2,0.0 +25610,45,9.5,40,0.0 +25610,10,31,7,0.0 +25610,53,32.8,22,0.0 +25610,37,26,27,0.0 +25610,26,31.23,19,0.0 +25610,21,10,28,0.0 +25610,20,81,30,0.0 +25610,33,2.5,47,0.0 +25610,40,18.4,19,0.0 +25610,23,9,27,0.0 +25610,48,12.75,7,0.0 +25610,75,7.75,11,0.0 +25610,44,19.45,11,0.0 +25610,30,25.89,25,0.0 +25610,71,21.5,40,0.0 +25610,4,22,38,0.0 +25610,19,9.2,45,0.0 +25610,46,12,5,0.0 +25610,47,9.5,12,0.0 +25610,7,30,13,0.0 +25610,57,19.5,35,0.0 +25610,25,14,41,0.0 +25610,66,17,30,0.0 +25610,5,21.35,38,0.0 +25610,55,24,49,0.0 +25610,31,12.5,33,0.0 +25610,8,40,48,0.0 +25610,64,33.25,37,0.0 +25610,11,21,22,0.0 +25610,15,15.5,36,0.0 +25610,58,13.25,19,0.0 +25610,63,43.9,41,0.0 +25610,65,21.05,25,0.0 +25610,62,49.3,14,0.0 +25610,3,10,28,0.0 +25610,13,6,18,0.0 +25610,52,7,17,0.0 +25610,32,32,12,0.0 +25610,61,28.5,23,0.0 +25610,39,18,43,0.0 +25611,56,38,39,0.0 +25611,54,7.45,26,0.0 +25611,20,81,15,0.0 +25611,36,19,28,0.0 +25611,22,21,49,0.0 +25611,28,45.6,14,0.0 +25611,40,18.4,7,0.0 +25611,52,7,38,0.0 +25611,31,12.5,10,0.0 +25611,4,22,11,0.0 +25611,46,12,33,0.0 +25611,12,38,26,0.0 +25611,30,25.89,34,0.0 +25611,29,123.79,7,0.0 +25611,49,20,9,0.0 +25611,50,16.25,3,0.0 +25611,47,9.5,28,0.0 +25611,62,49.3,41,0.0 +25611,66,17,3,0.0 +25611,70,15,41,0.0 +25611,27,43.9,12,0.0 +25611,61,28.5,2,0.0 +25611,65,21.05,26,0.0 +25611,38,263.5,32,0.0 +25611,41,9.65,48,0.0 +25611,51,53,11,0.0 +25611,16,17.45,2,0.0 +25611,5,21.35,38,0.0 +25611,59,55,10,0.0 +25611,74,10,38,0.0 +25611,13,6,50,0.0 +25611,64,33.25,2,0.0 +25611,35,18,18,0.0 +25611,14,23.25,16,0.0 +25611,24,4.5,44,0.0 +25611,63,43.9,7,0.0 +25611,1,18,21,0.0 +25611,73,15,42,0.0 +25611,33,2.5,7,0.0 +25611,17,39,47,0.0 +25611,3,10,43,0.0 +25611,23,9,45,0.0 +25611,39,18,6,0.0 +25611,19,9.2,16,0.0 +25611,58,13.25,40,0.0 +25611,60,34,5,0.0 +25611,68,12.5,11,0.0 +25611,11,21,36,0.0 +25611,67,14,26,0.0 +25611,43,46,23,0.0 +25611,26,31.23,33,0.0 +25611,25,14,10,0.0 +25611,6,25,28,0.0 +25611,32,32,10,0.0 +25611,42,14,42,0.0 +25611,48,12.75,45,0.0 +25611,75,7.75,2,0.0 +25611,8,40,11,0.0 +25611,77,13,38,0.0 +25611,21,10,39,0.0 +25611,44,19.45,37,0.0 +25611,53,32.8,50,0.0 +25611,37,26,39,0.0 +25612,25,14,5,0.0 +25612,69,36,35,0.0 +25612,65,21.05,4,0.0 +25612,4,22,36,0.0 +25612,36,19,48,0.0 +25612,67,14,37,0.0 +25612,31,12.5,31,0.0 +25612,61,28.5,5,0.0 +25612,1,18,24,0.0 +25612,22,21,27,0.0 +25612,66,17,15,0.0 +25612,71,21.5,10,0.0 +25612,17,39,7,0.0 +25612,37,26,19,0.0 +25612,72,34.8,41,0.0 +25612,28,45.6,43,0.0 +25612,39,18,1,0.0 +25612,43,46,25,0.0 +25612,15,15.5,13,0.0 +25612,47,9.5,24,0.0 +25612,42,14,12,0.0 +25612,46,12,36,0.0 +25612,5,21.35,28,0.0 +25612,3,10,8,0.0 +25612,70,15,20,0.0 +25612,38,263.5,12,0.0 +25612,55,24,8,0.0 +25612,21,10,32,0.0 +25612,40,18.4,11,0.0 +25612,76,18,38,0.0 +25612,12,38,27,0.0 +25612,11,21,50,0.0 +25612,58,13.25,37,0.0 +25612,14,23.25,2,0.0 +25612,60,34,50,0.0 +25612,49,20,26,0.0 +25612,52,7,21,0.0 +25612,56,38,6,0.0 +25612,8,40,12,0.0 +25612,33,2.5,16,0.0 +25612,24,4.5,19,0.0 +25612,59,55,41,0.0 +25612,64,33.25,35,0.0 +25612,10,31,29,0.0 +25612,32,32,35,0.0 +25612,30,25.89,46,0.0 +25612,75,7.75,19,0.0 +25612,62,49.3,8,0.0 +25612,13,6,35,0.0 +25612,6,25,29,0.0 +25612,34,14,31,0.0 +25612,2,19,39,0.0 +25612,35,18,49,0.0 +25612,16,17.45,28,0.0 +25612,18,62.5,3,0.0 +25612,9,97,18,0.0 +25612,53,32.8,12,0.0 +25612,27,43.9,16,0.0 +25612,7,30,42,0.0 +25612,50,16.25,19,0.0 +25612,74,10,25,0.0 +25612,77,13,45,0.0 +25612,20,81,44,0.0 +25612,19,9.2,15,0.0 +25612,26,31.23,36,0.0 +25612,48,12.75,10,0.0 +25612,63,43.9,30,0.0 +25612,44,19.45,1,0.0 +25612,54,7.45,36,0.0 +25612,73,15,43,0.0 +25612,45,9.5,29,0.0 +25613,1,18,1,0.0 +25613,36,19,12,0.0 +25613,3,10,48,0.0 +25613,70,15,46,0.0 +25613,69,36,15,0.0 +25613,6,25,30,0.0 +25613,61,28.5,37,0.0 +25613,51,53,7,0.0 +25613,30,25.89,1,0.0 +25613,9,97,41,0.0 +25613,24,4.5,1,0.0 +25613,19,9.2,26,0.0 +25613,13,6,9,0.0 +25613,72,34.8,8,0.0 +25613,37,26,24,0.0 +25613,26,31.23,46,0.0 +25613,39,18,5,0.0 +25613,32,32,32,0.0 +25613,28,45.6,42,0.0 +25613,76,18,17,0.0 +25613,66,17,17,0.0 +25613,17,39,18,0.0 +25613,15,15.5,45,0.0 +25613,41,9.65,18,0.0 +25613,59,55,6,0.0 +25613,2,19,27,0.0 +25613,74,10,25,0.0 +25613,77,13,25,0.0 +25613,7,30,4,0.0 +25613,5,21.35,22,0.0 +25613,75,7.75,13,0.0 +25613,45,9.5,38,0.0 +25613,57,19.5,42,0.0 +25613,14,23.25,27,0.0 +25613,62,49.3,43,0.0 +25613,58,13.25,6,0.0 +25613,49,20,39,0.0 +25613,25,14,13,0.0 +25613,29,123.79,21,0.0 +25613,55,24,24,0.0 +25613,73,15,17,0.0 +25613,47,9.5,3,0.0 +25613,23,9,14,0.0 +25613,22,21,32,0.0 +25613,64,33.25,46,0.0 +25613,35,18,43,0.0 +25614,34,14,44,0.0 +25614,6,25,35,0.0 +25614,45,9.5,50,0.0 +25614,40,18.4,34,0.0 +25614,1,18,34,0.0 +25614,20,81,18,0.0 +25614,5,21.35,30,0.0 +25614,38,263.5,18,0.0 +25614,32,32,36,0.0 +25614,55,24,29,0.0 +25614,35,18,15,0.0 +25614,57,19.5,16,0.0 +25614,68,12.5,46,0.0 +25614,61,28.5,5,0.0 +25614,11,21,21,0.0 +25614,39,18,2,0.0 +25614,21,10,44,0.0 +25614,19,9.2,12,0.0 +25614,23,9,49,0.0 +25614,65,21.05,8,0.0 +25614,42,14,30,0.0 +25614,69,36,42,0.0 +25614,31,12.5,11,0.0 +25614,4,22,1,0.0 +25614,75,7.75,47,0.0 +25614,17,39,37,0.0 +25614,48,12.75,20,0.0 +25614,25,14,44,0.0 +25614,63,43.9,4,0.0 +25614,30,25.89,20,0.0 +25614,66,17,7,0.0 +25614,67,14,7,0.0 +25615,6,25,32,0.0 +25615,19,9.2,44,0.0 +25615,62,49.3,49,0.0 +25615,54,7.45,4,0.0 +25615,69,36,23,0.0 +25615,5,21.35,17,0.0 +25615,36,19,39,0.0 +25615,53,32.8,1,0.0 +25615,73,15,33,0.0 +25615,76,18,19,0.0 +25615,74,10,2,0.0 +25616,12,38,23,0.0 +25616,72,34.8,43,0.0 +25616,41,9.65,11,0.0 +25616,19,9.2,26,0.0 +25616,30,25.89,24,0.0 +25616,9,97,34,0.0 +25616,8,40,2,0.0 +25616,62,49.3,20,0.0 +25616,66,17,21,0.0 +25616,71,21.5,32,0.0 +25616,76,18,35,0.0 +25616,33,2.5,21,0.0 +25616,32,32,26,0.0 +25616,28,45.6,35,0.0 +25616,57,19.5,33,0.0 +25616,47,9.5,39,0.0 +25616,70,15,32,0.0 +25616,75,7.75,43,0.0 +25616,11,21,22,0.0 +25616,14,23.25,15,0.0 +25616,55,24,9,0.0 +25616,31,12.5,5,0.0 +25616,39,18,39,0.0 +25616,3,10,38,0.0 +25616,49,20,43,0.0 +25616,27,43.9,7,0.0 +25616,25,14,17,0.0 +25616,10,31,26,0.0 +25616,61,28.5,50,0.0 +25616,42,14,23,0.0 +25616,73,15,31,0.0 +25616,48,12.75,6,0.0 +25616,26,31.23,2,0.0 +25616,58,13.25,28,0.0 +25616,22,21,46,0.0 +25616,51,53,13,0.0 +25616,37,26,28,0.0 +25616,46,12,24,0.0 +25616,24,4.5,25,0.0 +25616,52,7,10,0.0 +25616,16,17.45,23,0.0 +25616,40,18.4,47,0.0 +25616,53,32.8,39,0.0 +25616,50,16.25,14,0.0 +25616,54,7.45,45,0.0 +25616,63,43.9,24,0.0 +25616,38,263.5,45,0.0 +25616,65,21.05,24,0.0 +25617,13,6,29,0.0 +25617,32,32,17,0.0 +25617,49,20,37,0.0 +25617,41,9.65,33,0.0 +25617,66,17,49,0.0 +25617,22,21,12,0.0 +25617,59,55,45,0.0 +25617,50,16.25,33,0.0 +25617,47,9.5,50,0.0 +25617,24,4.5,50,0.0 +25617,19,9.2,6,0.0 +25617,75,7.75,14,0.0 +25617,21,10,28,0.0 +25617,40,18.4,9,0.0 +25617,23,9,44,0.0 +25617,45,9.5,5,0.0 +25617,77,13,39,0.0 +25617,37,26,12,0.0 +25617,8,40,28,0.0 +25617,34,14,25,0.0 +25617,73,15,24,0.0 +25617,58,13.25,20,0.0 +25617,63,43.9,13,0.0 +25617,12,38,35,0.0 +25617,1,18,30,0.0 +25617,61,28.5,30,0.0 +25617,69,36,34,0.0 +25617,57,19.5,15,0.0 +25617,55,24,2,0.0 +25617,42,14,5,0.0 +25617,31,12.5,21,0.0 +25617,60,34,5,0.0 +25617,67,14,29,0.0 +25617,9,97,8,0.0 +25617,52,7,44,0.0 +25617,70,15,15,0.0 +25617,38,263.5,43,0.0 +25617,53,32.8,20,0.0 +25617,17,39,50,0.0 +25617,20,81,25,0.0 +25617,43,46,20,0.0 +25617,29,123.79,16,0.0 +25617,64,33.25,8,0.0 +25617,11,21,47,0.0 +25617,25,14,14,0.0 +25617,62,49.3,14,0.0 +25617,14,23.25,36,0.0 +25618,1,18,21,0.0 +25618,28,45.6,45,0.0 +25618,77,13,5,0.0 +25618,13,6,45,0.0 +25618,9,97,23,0.0 +25618,21,10,48,0.0 +25618,70,15,15,0.0 +25618,6,25,45,0.0 +25618,76,18,23,0.0 +25618,33,2.5,48,0.0 +25618,73,15,8,0.0 +25618,67,14,28,0.0 +25618,56,38,1,0.0 +25618,11,21,36,0.0 +25618,2,19,40,0.0 +25618,54,7.45,29,0.0 +25618,51,53,46,0.0 +25618,3,10,48,0.0 +25618,63,43.9,11,0.0 +25618,44,19.45,40,0.0 +25618,43,46,22,0.0 +25618,12,38,36,0.0 +25618,41,9.65,31,0.0 +25618,61,28.5,11,0.0 +25618,20,81,48,0.0 +25618,40,18.4,4,0.0 +25618,5,21.35,39,0.0 +25618,59,55,39,0.0 +25618,60,34,36,0.0 +25618,69,36,16,0.0 +25618,38,263.5,47,0.0 +25618,34,14,19,0.0 +25618,7,30,18,0.0 +25618,4,22,10,0.0 +25618,35,18,13,0.0 +25618,74,10,46,0.0 +25618,25,14,27,0.0 +25618,32,32,43,0.0 +25618,15,15.5,3,0.0 +25618,18,62.5,44,0.0 +25618,42,14,18,0.0 +25618,45,9.5,32,0.0 +25618,16,17.45,36,0.0 +25618,58,13.25,6,0.0 +25618,26,31.23,48,0.0 +25618,64,33.25,13,0.0 +25618,14,23.25,16,0.0 +25618,22,21,46,0.0 +25618,8,40,31,0.0 +25618,57,19.5,25,0.0 +25618,17,39,29,0.0 +25618,62,49.3,32,0.0 +25619,65,21.05,29,0.0 +25619,26,31.23,2,0.0 +25619,51,53,6,0.0 +25619,75,7.75,25,0.0 +25619,10,31,43,0.0 +25619,3,10,7,0.0 +25619,17,39,21,0.0 +25619,77,13,6,0.0 +25619,31,12.5,13,0.0 +25619,37,26,15,0.0 +25619,35,18,22,0.0 +25619,36,19,50,0.0 +25619,54,7.45,1,0.0 +25619,72,34.8,37,0.0 +25619,47,9.5,13,0.0 +25619,61,28.5,22,0.0 +25619,14,23.25,28,0.0 +25619,23,9,22,0.0 +25619,66,17,23,0.0 +25619,21,10,12,0.0 +25619,63,43.9,38,0.0 +25619,18,62.5,2,0.0 +25619,69,36,49,0.0 +25619,62,49.3,3,0.0 +25619,7,30,14,0.0 +25619,32,32,13,0.0 +25619,25,14,37,0.0 +25619,11,21,31,0.0 +25619,55,24,8,0.0 +25619,76,18,48,0.0 +25619,53,32.8,30,0.0 +25619,13,6,47,0.0 +25619,74,10,5,0.0 +25619,28,45.6,26,0.0 +25619,1,18,6,0.0 +25619,52,7,40,0.0 +25619,27,43.9,17,0.0 +25619,4,22,29,0.0 +25619,67,14,12,0.0 +25619,29,123.79,12,0.0 +25619,44,19.45,8,0.0 +25619,64,33.25,44,0.0 +25619,39,18,5,0.0 +25619,68,12.5,27,0.0 +25619,59,55,46,0.0 +25619,71,21.5,45,0.0 +25619,15,15.5,26,0.0 +25619,45,9.5,8,0.0 +25619,70,15,3,0.0 +25619,42,14,3,0.0 +25619,58,13.25,47,0.0 +25619,56,38,10,0.0 +25619,6,25,37,0.0 +25619,34,14,46,0.0 +25619,43,46,16,0.0 +25619,38,263.5,34,0.0 +25619,20,81,7,0.0 +25619,5,21.35,38,0.0 +25619,24,4.5,40,0.0 +25619,33,2.5,46,0.0 +25619,2,19,29,0.0 +25619,46,12,5,0.0 +25619,73,15,19,0.0 +25619,40,18.4,11,0.0 +25619,49,20,39,0.0 +25619,19,9.2,20,0.0 +25619,50,16.25,34,0.0 +25619,22,21,16,0.0 +25620,60,34,33,0.0 +25620,7,30,8,0.0 +25620,38,263.5,31,0.0 +25620,54,7.45,40,0.0 +25620,27,43.9,32,0.0 +25620,4,22,11,0.0 +25620,41,9.65,7,0.0 +25620,39,18,27,0.0 +25620,18,62.5,45,0.0 +25620,65,21.05,21,0.0 +25620,15,15.5,6,0.0 +25620,5,21.35,19,0.0 +25620,13,6,18,0.0 +25620,61,28.5,26,0.0 +25620,19,9.2,4,0.0 +25621,4,22,12,0.0 +25621,2,19,41,0.0 +25621,67,14,19,0.0 +25621,9,97,27,0.0 +25621,17,39,41,0.0 +25621,1,18,9,0.0 +25621,10,31,12,0.0 +25621,51,53,46,0.0 +25621,61,28.5,29,0.0 +25621,35,18,49,0.0 +25622,2,19,32,0.0 +25622,64,33.25,25,0.0 +25622,13,6,46,0.0 +25622,66,17,29,0.0 +25622,8,40,8,0.0 +25622,62,49.3,26,0.0 +25622,32,32,43,0.0 +25622,48,12.75,7,0.0 +25622,52,7,12,0.0 +25622,65,21.05,49,0.0 +25622,72,34.8,11,0.0 +25622,34,14,40,0.0 +25622,77,13,14,0.0 +25622,28,45.6,17,0.0 +25622,10,31,26,0.0 +25622,11,21,26,0.0 +25622,54,7.45,20,0.0 +25622,61,28.5,28,0.0 +25622,56,38,49,0.0 +25622,63,43.9,24,0.0 +25622,16,17.45,48,0.0 +25622,14,23.25,31,0.0 +25622,15,15.5,12,0.0 +25622,17,39,10,0.0 +25622,51,53,9,0.0 +25623,48,12.75,43,0.0 +25623,38,263.5,35,0.0 +25623,50,16.25,9,0.0 +25623,65,21.05,19,0.0 +25623,13,6,6,0.0 +25623,40,18.4,1,0.0 +25623,2,19,49,0.0 +25623,55,24,24,0.0 +25623,58,13.25,50,0.0 +25623,34,14,5,0.0 +25623,23,9,35,0.0 +25623,76,18,10,0.0 +25623,15,15.5,27,0.0 +25623,9,97,34,0.0 +25623,32,32,28,0.0 +25623,1,18,18,0.0 +25623,27,43.9,42,0.0 +25623,75,7.75,21,0.0 +25623,43,46,29,0.0 +25623,31,12.5,45,0.0 +25623,62,49.3,28,0.0 +25623,77,13,42,0.0 +25623,37,26,50,0.0 +25623,71,21.5,47,0.0 +25623,17,39,33,0.0 +25623,61,28.5,4,0.0 +25623,72,34.8,23,0.0 +25623,41,9.65,26,0.0 +25623,18,62.5,19,0.0 +25623,30,25.89,38,0.0 +25623,59,55,21,0.0 +25623,10,31,17,0.0 +25623,4,22,11,0.0 +25623,25,14,18,0.0 +25623,70,15,32,0.0 +25623,6,25,23,0.0 +25623,51,53,8,0.0 +25623,5,21.35,14,0.0 +25624,35,18,30,0.0 +25624,40,18.4,42,0.0 +25624,23,9,23,0.0 +25624,28,45.6,41,0.0 +25624,65,21.05,50,0.0 +25624,57,19.5,9,0.0 +25624,20,81,22,0.0 +25624,31,12.5,30,0.0 +25624,58,13.25,42,0.0 +25624,32,32,9,0.0 +25624,36,19,7,0.0 +25624,19,9.2,42,0.0 +25624,1,18,21,0.0 +25624,9,97,6,0.0 +25624,77,13,1,0.0 +25624,8,40,48,0.0 +25624,73,15,6,0.0 +25624,70,15,20,0.0 +25624,6,25,29,0.0 +25624,2,19,16,0.0 +25624,11,21,38,0.0 +25624,52,7,50,0.0 +25624,4,22,28,0.0 +25624,41,9.65,4,0.0 +25624,74,10,16,0.0 +25624,68,12.5,3,0.0 +25624,12,38,38,0.0 +25624,50,16.25,8,0.0 +25624,62,49.3,22,0.0 +25624,48,12.75,35,0.0 +25624,54,7.45,32,0.0 +25624,24,4.5,25,0.0 +25624,76,18,15,0.0 +25624,33,2.5,4,0.0 +25624,15,15.5,43,0.0 +25624,14,23.25,44,0.0 +25624,39,18,13,0.0 +25624,53,32.8,6,0.0 +25624,71,21.5,50,0.0 +25624,46,12,16,0.0 +25624,21,10,49,0.0 +25624,60,34,36,0.0 +25625,38,263.5,21,0.0 +25625,9,97,46,0.0 +25625,41,9.65,7,0.0 +25625,55,24,37,0.0 +25625,16,17.45,37,0.0 +25625,63,43.9,38,0.0 +25625,36,19,17,0.0 +25625,49,20,12,0.0 +25625,7,30,2,0.0 +25625,54,7.45,8,0.0 +25625,43,46,30,0.0 +25626,1,18,8,0.0 +25626,19,9.2,50,0.0 +25626,69,36,48,0.0 +25626,23,9,21,0.0 +25626,43,46,47,0.0 +25626,28,45.6,22,0.0 +25626,53,32.8,38,0.0 +25626,30,25.89,12,0.0 +25626,5,21.35,46,0.0 +25626,74,10,26,0.0 +25626,66,17,35,0.0 +25626,77,13,43,0.0 +25627,67,14,28,0.0 +25627,49,20,38,0.0 +25627,60,34,50,0.0 +25627,26,31.23,28,0.0 +25627,20,81,15,0.0 +25627,45,9.5,13,0.0 +25627,36,19,21,0.0 +25627,48,12.75,3,0.0 +25627,53,32.8,28,0.0 +25627,47,9.5,16,0.0 +25627,70,15,40,0.0 +25627,66,17,9,0.0 +25627,1,18,15,0.0 +25627,28,45.6,20,0.0 +25627,69,36,25,0.0 +25627,63,43.9,21,0.0 +25627,16,17.45,32,0.0 +25627,50,16.25,10,0.0 +25627,34,14,33,0.0 +25627,75,7.75,19,0.0 +25627,76,18,48,0.0 +25627,21,10,2,0.0 +25627,2,19,18,0.0 +25627,57,19.5,7,0.0 +25627,32,32,37,0.0 +25627,54,7.45,41,0.0 +25627,27,43.9,25,0.0 +25627,3,10,41,0.0 +25627,14,23.25,49,0.0 +25627,41,9.65,43,0.0 +25627,37,26,24,0.0 +25627,40,18.4,3,0.0 +25627,42,14,45,0.0 +25627,25,14,3,0.0 +25627,9,97,24,0.0 +25627,4,22,46,0.0 +25627,68,12.5,50,0.0 +25627,13,6,7,0.0 +25627,64,33.25,16,0.0 +25627,7,30,28,0.0 +25627,29,123.79,40,0.0 +25627,31,12.5,21,0.0 +25627,51,53,34,0.0 +25627,77,13,4,0.0 +25627,33,2.5,44,0.0 +25627,35,18,20,0.0 +25627,52,7,33,0.0 +25627,61,28.5,39,0.0 +25627,18,62.5,44,0.0 +25627,30,25.89,40,0.0 +25627,12,38,43,0.0 +25628,41,9.65,37,0.0 +25628,25,14,28,0.0 +25628,13,6,12,0.0 +25628,50,16.25,9,0.0 +25628,57,19.5,48,0.0 +25628,4,22,18,0.0 +25628,44,19.45,5,0.0 +25628,28,45.6,41,0.0 +25628,23,9,28,0.0 +25628,73,15,5,0.0 +25628,22,21,24,0.0 +25628,55,24,23,0.0 +25628,12,38,10,0.0 +25628,27,43.9,30,0.0 +25628,52,7,38,0.0 +25628,42,14,39,0.0 +25628,33,2.5,49,0.0 +25628,18,62.5,16,0.0 +25628,32,32,46,0.0 +25629,39,18,47,0.0 +25630,37,26,19,0.0 +25630,57,19.5,13,0.0 +25630,18,62.5,41,0.0 +25631,27,43.9,18,0.0 +25631,58,13.25,11,0.0 +25631,36,19,17,0.0 +25631,49,20,41,0.0 +25631,45,9.5,5,0.0 +25631,21,10,50,0.0 +25631,69,36,41,0.0 +25631,29,123.79,2,0.0 +25631,24,4.5,43,0.0 +25631,25,14,16,0.0 +25631,50,16.25,12,0.0 +25631,34,14,24,0.0 +25631,39,18,1,0.0 +25631,76,18,48,0.0 +25631,6,25,3,0.0 +25631,61,28.5,17,0.0 +25631,30,25.89,34,0.0 +25631,12,38,37,0.0 +25631,65,21.05,30,0.0 +25631,13,6,20,0.0 +25631,67,14,48,0.0 +25631,18,62.5,24,0.0 +25631,70,15,10,0.0 +25631,42,14,40,0.0 +25631,66,17,32,0.0 +25631,54,7.45,48,0.0 +25631,22,21,10,0.0 +25631,43,46,34,0.0 +25631,10,31,31,0.0 +25631,26,31.23,39,0.0 +25631,16,17.45,10,0.0 +25631,75,7.75,8,0.0 +25631,51,53,37,0.0 +25631,73,15,18,0.0 +25631,47,9.5,35,0.0 +25631,71,21.5,43,0.0 +25631,3,10,25,0.0 +25631,59,55,6,0.0 +25631,63,43.9,49,0.0 +25631,17,39,46,0.0 +25631,41,9.65,5,0.0 +25631,55,24,22,0.0 +25631,38,263.5,15,0.0 +25631,40,18.4,40,0.0 +25631,9,97,12,0.0 +25631,5,21.35,50,0.0 +25631,31,12.5,28,0.0 +25631,11,21,45,0.0 +25631,62,49.3,43,0.0 +25631,4,22,42,0.0 +25631,72,34.8,28,0.0 +25631,53,32.8,25,0.0 +25631,52,7,36,0.0 +25631,64,33.25,1,0.0 +25631,74,10,10,0.0 +25631,32,32,27,0.0 +25631,14,23.25,35,0.0 +25631,28,45.6,13,0.0 +25631,23,9,32,0.0 +25631,8,40,4,0.0 +25631,68,12.5,1,0.0 +25631,15,15.5,15,0.0 +25631,77,13,15,0.0 +25631,56,38,30,0.0 +25631,1,18,50,0.0 +25631,46,12,16,0.0 +25631,44,19.45,4,0.0 +25631,7,30,38,0.0 +25631,19,9.2,16,0.0 +25631,33,2.5,19,0.0 +25631,57,19.5,40,0.0 +25631,2,19,15,0.0 +25631,37,26,2,0.0 +25631,20,81,7,0.0 +25631,35,18,37,0.0 +25631,60,34,28,0.0 +25631,48,12.75,31,0.0 +25632,60,34,43,0.0 +25632,17,39,29,0.0 +25632,77,13,46,0.0 +25632,30,25.89,49,0.0 +25632,16,17.45,26,0.0 +25632,54,7.45,20,0.0 +25632,22,21,35,0.0 +25632,5,21.35,16,0.0 +25632,34,14,20,0.0 +25632,26,31.23,38,0.0 +25632,66,17,22,0.0 +25632,41,9.65,15,0.0 +25632,40,18.4,36,0.0 +25632,43,46,47,0.0 +25632,28,45.6,43,0.0 +25632,29,123.79,37,0.0 +25632,49,20,21,0.0 +25632,25,14,32,0.0 +25632,53,32.8,37,0.0 +25632,15,15.5,19,0.0 +25632,70,15,37,0.0 +25632,74,10,40,0.0 +25632,7,30,29,0.0 +25632,73,15,22,0.0 +25632,1,18,44,0.0 +25632,65,21.05,41,0.0 +25632,37,26,1,0.0 +25632,9,97,46,0.0 +25632,21,10,6,0.0 +25632,32,32,8,0.0 +25632,67,14,22,0.0 +25632,3,10,45,0.0 +25632,61,28.5,30,0.0 +25632,76,18,13,0.0 +25632,55,24,30,0.0 +25632,51,53,31,0.0 +25632,47,9.5,20,0.0 +25632,44,19.45,9,0.0 +25632,57,19.5,45,0.0 +25632,38,263.5,35,0.0 +25632,63,43.9,28,0.0 +25632,42,14,12,0.0 +25632,72,34.8,28,0.0 +25632,14,23.25,10,0.0 +25632,6,25,2,0.0 +25632,59,55,48,0.0 +25632,69,36,27,0.0 +25632,24,4.5,38,0.0 +25632,11,21,47,0.0 +25632,2,19,40,0.0 +25632,18,62.5,44,0.0 +25632,52,7,8,0.0 +25632,71,21.5,5,0.0 +25633,63,43.9,44,0.0 +25633,44,19.45,5,0.0 +25633,7,30,35,0.0 +25633,50,16.25,18,0.0 +25633,52,7,44,0.0 +25633,77,13,11,0.0 +25633,60,34,46,0.0 +25633,75,7.75,20,0.0 +25633,20,81,32,0.0 +25633,66,17,42,0.0 +25633,36,19,28,0.0 +25633,21,10,45,0.0 +25633,3,10,11,0.0 +25633,29,123.79,16,0.0 +25633,31,12.5,2,0.0 +25633,18,62.5,27,0.0 +25633,67,14,14,0.0 +25633,47,9.5,31,0.0 +25633,46,12,2,0.0 +25633,13,6,1,0.0 +25633,28,45.6,33,0.0 +25633,48,12.75,37,0.0 +25633,70,15,45,0.0 +25633,41,9.65,18,0.0 +25633,42,14,21,0.0 +25633,53,32.8,29,0.0 +25633,71,21.5,36,0.0 +25633,5,21.35,8,0.0 +25633,61,28.5,20,0.0 +25633,16,17.45,25,0.0 +25633,15,15.5,48,0.0 +25633,14,23.25,32,0.0 +25633,23,9,20,0.0 +25633,74,10,22,0.0 +25633,2,19,14,0.0 +25633,54,7.45,36,0.0 +25633,1,18,49,0.0 +25633,19,9.2,25,0.0 +25633,26,31.23,45,0.0 +25633,6,25,18,0.0 +25633,37,26,8,0.0 +25633,65,21.05,21,0.0 +25633,72,34.8,19,0.0 +25633,55,24,17,0.0 +25633,73,15,37,0.0 +25633,38,263.5,15,0.0 +25633,68,12.5,8,0.0 +25633,32,32,9,0.0 +25633,43,46,11,0.0 +25633,49,20,33,0.0 +25633,51,53,47,0.0 +25633,4,22,3,0.0 +25633,9,97,23,0.0 +25633,57,19.5,12,0.0 +25633,76,18,36,0.0 +25633,10,31,48,0.0 +25633,56,38,42,0.0 +25633,22,21,5,0.0 +25633,24,4.5,23,0.0 +25633,64,33.25,6,0.0 +25633,69,36,32,0.0 +25633,33,2.5,8,0.0 +25633,34,14,11,0.0 +25633,58,13.25,7,0.0 +25633,35,18,13,0.0 +25634,43,46,48,0.0 +25634,65,21.05,3,0.0 +25634,62,49.3,29,0.0 +25634,15,15.5,35,0.0 +25634,75,7.75,4,0.0 +25634,7,30,35,0.0 +25634,54,7.45,16,0.0 +25634,77,13,19,0.0 +25634,44,19.45,33,0.0 +25634,69,36,28,0.0 +25634,4,22,7,0.0 +25634,51,53,37,0.0 +25634,73,15,20,0.0 +25634,16,17.45,6,0.0 +25635,5,21.35,15,0.0 +25635,10,31,29,0.0 +25635,43,46,41,0.0 +25635,74,10,21,0.0 +25635,42,14,21,0.0 +25635,16,17.45,35,0.0 +25635,2,19,27,0.0 +25635,15,15.5,13,0.0 +25635,50,16.25,2,0.0 +25635,17,39,18,0.0 +25635,61,28.5,11,0.0 +25635,3,10,2,0.0 +25635,38,263.5,16,0.0 +25635,26,31.23,9,0.0 +25635,32,32,27,0.0 +25635,20,81,44,0.0 +25635,67,14,4,0.0 +25635,29,123.79,20,0.0 +25635,4,22,39,0.0 +25635,72,34.8,5,0.0 +25635,13,6,6,0.0 +25635,63,43.9,47,0.0 +25635,41,9.65,7,0.0 +25635,47,9.5,39,0.0 +25635,53,32.8,25,0.0 +25635,54,7.45,19,0.0 +25635,28,45.6,44,0.0 +25635,60,34,11,0.0 +25635,75,7.75,32,0.0 +25635,30,25.89,28,0.0 +25635,51,53,25,0.0 +25635,64,33.25,42,0.0 +25636,73,15,39,0.0 +25636,29,123.79,48,0.0 +25636,42,14,1,0.0 +25636,24,4.5,31,0.0 +25636,28,45.6,26,0.0 +25636,67,14,33,0.0 +25636,9,97,33,0.0 +25636,18,62.5,24,0.0 +25636,41,9.65,47,0.0 +25636,76,18,48,0.0 +25636,14,23.25,13,0.0 +25636,77,13,41,0.0 +25636,5,21.35,1,0.0 +25636,13,6,28,0.0 +25636,51,53,21,0.0 +25636,19,9.2,25,0.0 +25636,59,55,16,0.0 +25636,32,32,30,0.0 +25636,53,32.8,32,0.0 +25636,49,20,40,0.0 +25636,15,15.5,34,0.0 +25636,65,21.05,10,0.0 +25637,35,18,16,0.0 +25637,76,18,44,0.0 +25637,67,14,36,0.0 +25637,49,20,45,0.0 +25637,17,39,19,0.0 +25637,5,21.35,18,0.0 +25637,11,21,45,0.0 +25637,30,25.89,29,0.0 +25637,27,43.9,41,0.0 +25637,20,81,30,0.0 +25637,48,12.75,31,0.0 +25637,46,12,22,0.0 +25637,73,15,4,0.0 +25637,1,18,30,0.0 +25637,69,36,39,0.0 +25637,18,62.5,16,0.0 +25637,65,21.05,46,0.0 +25637,55,24,13,0.0 +25637,29,123.79,14,0.0 +25637,15,15.5,10,0.0 +25637,44,19.45,40,0.0 +25637,54,7.45,35,0.0 +25637,75,7.75,16,0.0 +25637,23,9,19,0.0 +25637,33,2.5,17,0.0 +25637,10,31,32,0.0 +25637,22,21,2,0.0 +25637,64,33.25,39,0.0 +25638,37,26,12,0.0 +25639,44,19.45,35,0.0 +25639,20,81,47,0.0 +25639,22,21,45,0.0 +25639,25,14,25,0.0 +25639,3,10,45,0.0 +25639,49,20,30,0.0 +25639,16,17.45,23,0.0 +25639,47,9.5,48,0.0 +25639,39,18,34,0.0 +25639,50,16.25,2,0.0 +25639,24,4.5,31,0.0 +25639,46,12,9,0.0 +25639,26,31.23,19,0.0 +25639,4,22,4,0.0 +25639,5,21.35,4,0.0 +25639,54,7.45,22,0.0 +25639,71,21.5,43,0.0 +25639,18,62.5,45,0.0 +25639,69,36,44,0.0 +25639,13,6,36,0.0 +25639,29,123.79,15,0.0 +25639,36,19,30,0.0 +25639,76,18,3,0.0 +25639,43,46,20,0.0 +25639,61,28.5,43,0.0 +25639,65,21.05,1,0.0 +25639,70,15,21,0.0 +25639,34,14,16,0.0 +25639,42,14,20,0.0 +25639,12,38,27,0.0 +25639,48,12.75,2,0.0 +25639,14,23.25,41,0.0 +25639,27,43.9,5,0.0 +25639,73,15,10,0.0 +25639,28,45.6,11,0.0 +25639,77,13,17,0.0 +25639,51,53,16,0.0 +25639,32,32,41,0.0 +25639,58,13.25,15,0.0 +25639,75,7.75,47,0.0 +25639,23,9,43,0.0 +25639,33,2.5,38,0.0 +25639,10,31,3,0.0 +25639,60,34,22,0.0 +25639,74,10,43,0.0 +25639,31,12.5,13,0.0 +25639,53,32.8,41,0.0 +25639,67,14,20,0.0 +25639,37,26,35,0.0 +25639,55,24,38,0.0 +25639,1,18,46,0.0 +25639,2,19,37,0.0 +25639,9,97,12,0.0 +25639,11,21,44,0.0 +25639,7,30,48,0.0 +25639,30,25.89,28,0.0 +25639,15,15.5,32,0.0 +25639,68,12.5,26,0.0 +25639,66,17,16,0.0 +25639,40,18.4,10,0.0 +25639,59,55,24,0.0 +25639,41,9.65,36,0.0 +25639,17,39,19,0.0 +25639,56,38,49,0.0 +25640,36,19,17,0.0 +25640,35,18,45,0.0 +25640,60,34,48,0.0 +25640,70,15,3,0.0 +25640,10,31,39,0.0 +25640,24,4.5,8,0.0 +25640,30,25.89,26,0.0 +25640,48,12.75,37,0.0 +25640,77,13,3,0.0 +25640,1,18,26,0.0 +25640,17,39,28,0.0 +25640,72,34.8,50,0.0 +25640,15,15.5,38,0.0 +25640,8,40,33,0.0 +25640,32,32,1,0.0 +25640,62,49.3,29,0.0 +25640,37,26,29,0.0 +25640,57,19.5,41,0.0 +25640,42,14,22,0.0 +25640,12,38,48,0.0 +25640,65,21.05,39,0.0 +25640,67,14,50,0.0 +25640,20,81,35,0.0 +25640,23,9,17,0.0 +25640,55,24,14,0.0 +25640,61,28.5,21,0.0 +25640,14,23.25,48,0.0 +25640,27,43.9,9,0.0 +25640,7,30,36,0.0 +25640,3,10,20,0.0 +25640,39,18,45,0.0 +25640,31,12.5,26,0.0 +25640,66,17,31,0.0 +25640,76,18,4,0.0 +25640,56,38,29,0.0 +25640,43,46,35,0.0 +25640,40,18.4,21,0.0 +25641,18,62.5,48,0.0 +25641,26,31.23,50,0.0 +25641,21,10,37,0.0 +25641,46,12,11,0.0 +25641,28,45.6,47,0.0 +25641,16,17.45,23,0.0 +25641,9,97,36,0.0 +25641,4,22,28,0.0 +25641,52,7,26,0.0 +25641,10,31,23,0.0 +25641,44,19.45,17,0.0 +25641,43,46,21,0.0 +25641,63,43.9,35,0.0 +25641,75,7.75,41,0.0 +25641,48,12.75,36,0.0 +25641,72,34.8,37,0.0 +25641,36,19,48,0.0 +25641,3,10,37,0.0 +25641,20,81,46,0.0 +25641,25,14,17,0.0 +25641,40,18.4,35,0.0 +25641,31,12.5,15,0.0 +25641,1,18,14,0.0 +25641,49,20,10,0.0 +25641,71,21.5,39,0.0 +25641,60,34,14,0.0 +25641,12,38,15,0.0 +25641,38,263.5,14,0.0 +25641,62,49.3,21,0.0 +25641,2,19,32,0.0 +25641,77,13,21,0.0 +25641,45,9.5,24,0.0 +25641,5,21.35,38,0.0 +25641,57,19.5,36,0.0 +25641,30,25.89,23,0.0 +25641,42,14,11,0.0 +25641,11,21,9,0.0 +25641,50,16.25,16,0.0 +25641,19,9.2,17,0.0 +25641,56,38,24,0.0 +25641,33,2.5,18,0.0 +25641,68,12.5,27,0.0 +25641,69,36,32,0.0 +25641,14,23.25,23,0.0 +25642,73,15,11,0.0 +25642,31,12.5,37,0.0 +25642,59,55,23,0.0 +25642,40,18.4,1,0.0 +25642,47,9.5,30,0.0 +25642,11,21,17,0.0 +25642,28,45.6,50,0.0 +25642,8,40,5,0.0 +25642,12,38,4,0.0 +25642,71,21.5,8,0.0 +25642,76,18,35,0.0 +25642,45,9.5,3,0.0 +25642,33,2.5,34,0.0 +25642,17,39,15,0.0 +25642,24,4.5,26,0.0 +25642,61,28.5,38,0.0 +25642,58,13.25,24,0.0 +25642,5,21.35,16,0.0 +25642,70,15,22,0.0 +25642,62,49.3,47,0.0 +25642,14,23.25,38,0.0 +25642,39,18,20,0.0 +25642,57,19.5,4,0.0 +25642,22,21,21,0.0 +25642,36,19,48,0.0 +25642,48,12.75,49,0.0 +25642,43,46,35,0.0 +25642,41,9.65,16,0.0 +25642,50,16.25,17,0.0 +25642,77,13,41,0.0 +25642,18,62.5,15,0.0 +25642,65,21.05,30,0.0 +25642,37,26,13,0.0 +25642,2,19,32,0.0 +25642,63,43.9,46,0.0 +25642,3,10,33,0.0 +25642,16,17.45,39,0.0 +25642,9,97,5,0.0 +25642,75,7.75,32,0.0 +25642,54,7.45,13,0.0 +25642,13,6,2,0.0 +25642,56,38,45,0.0 +25642,25,14,32,0.0 +25642,19,9.2,30,0.0 +25642,69,36,14,0.0 +25642,20,81,41,0.0 +25642,29,123.79,47,0.0 +25642,10,31,35,0.0 +25642,49,20,3,0.0 +25642,4,22,11,0.0 +25642,42,14,11,0.0 +25642,26,31.23,14,0.0 +25642,30,25.89,36,0.0 +25642,6,25,11,0.0 +25642,27,43.9,20,0.0 +25642,35,18,21,0.0 +25642,21,10,44,0.0 +25642,53,32.8,28,0.0 +25642,66,17,17,0.0 +25642,55,24,45,0.0 +25642,1,18,26,0.0 +25642,15,15.5,18,0.0 +25642,46,12,1,0.0 +25642,7,30,20,0.0 +25642,68,12.5,49,0.0 +25642,52,7,13,0.0 +25642,34,14,43,0.0 +25642,72,34.8,35,0.0 +25642,60,34,47,0.0 +25642,44,19.45,20,0.0 +25642,38,263.5,46,0.0 +25642,51,53,9,0.0 +25642,74,10,48,0.0 +25642,23,9,6,0.0 +25642,67,14,10,0.0 +25643,35,18,21,0.0 +25643,14,23.25,9,0.0 +25643,53,32.8,23,0.0 +25643,43,46,13,0.0 +25643,70,15,1,0.0 +25643,32,32,39,0.0 +25643,41,9.65,22,0.0 +25643,59,55,38,0.0 +25643,52,7,7,0.0 +25643,47,9.5,26,0.0 +25643,67,14,1,0.0 +25643,27,43.9,17,0.0 +25643,34,14,28,0.0 +25643,74,10,33,0.0 +25643,4,22,21,0.0 +25643,72,34.8,25,0.0 +25643,37,26,36,0.0 +25643,1,18,22,0.0 +25643,36,19,31,0.0 +25643,29,123.79,39,0.0 +25643,48,12.75,19,0.0 +25643,18,62.5,7,0.0 +25643,71,21.5,40,0.0 +25643,20,81,36,0.0 +25643,58,13.25,5,0.0 +25643,73,15,26,0.0 +25643,55,24,27,0.0 +25643,8,40,26,0.0 +25643,66,17,11,0.0 +25643,28,45.6,20,0.0 +25643,63,43.9,8,0.0 +25643,6,25,2,0.0 +25643,9,97,42,0.0 +25643,26,31.23,49,0.0 +25643,44,19.45,5,0.0 +25643,7,30,23,0.0 +25643,38,263.5,6,0.0 +25643,61,28.5,41,0.0 +25643,68,12.5,48,0.0 +25643,64,33.25,40,0.0 +25643,56,38,50,0.0 +25643,17,39,45,0.0 +25643,49,20,50,0.0 +25643,11,21,19,0.0 +25644,20,81,28,0.0 +25644,3,10,23,0.0 +25644,51,53,50,0.0 +25644,41,9.65,15,0.0 +25644,25,14,20,0.0 +25644,77,13,32,0.0 +25644,5,21.35,14,0.0 +25644,27,43.9,1,0.0 +25644,64,33.25,28,0.0 +25644,16,17.45,14,0.0 +25644,63,43.9,49,0.0 +25644,71,21.5,2,0.0 +25644,67,14,3,0.0 +25644,72,34.8,8,0.0 +25644,36,19,12,0.0 +25645,53,32.8,25,0.0 +25645,39,18,27,0.0 +25645,73,15,29,0.0 +25646,62,49.3,44,0.0 +25646,55,24,41,0.0 +25646,73,15,13,0.0 +25646,9,97,40,0.0 +25646,38,263.5,31,0.0 +25646,15,15.5,49,0.0 +25646,45,9.5,29,0.0 +25646,7,30,9,0.0 +25646,61,28.5,5,0.0 +25646,67,14,35,0.0 +25646,23,9,29,0.0 +25646,65,21.05,9,0.0 +25646,31,12.5,1,0.0 +25646,48,12.75,2,0.0 +25646,3,10,32,0.0 +25646,43,46,43,0.0 +25646,27,43.9,30,0.0 +25646,13,6,4,0.0 +25646,4,22,38,0.0 +25646,12,38,30,0.0 +25646,51,53,34,0.0 +25646,76,18,28,0.0 +25646,22,21,34,0.0 +25646,14,23.25,20,0.0 +25646,1,18,42,0.0 +25646,77,13,34,0.0 +25646,36,19,26,0.0 +25646,66,17,24,0.0 +25646,57,19.5,44,0.0 +25646,37,26,34,0.0 +25646,20,81,25,0.0 +25646,25,14,12,0.0 +25646,63,43.9,11,0.0 +25646,41,9.65,43,0.0 +25646,49,20,27,0.0 +25646,19,9.2,31,0.0 +25646,16,17.45,19,0.0 +25646,5,21.35,26,0.0 +25646,68,12.5,4,0.0 +25646,21,10,50,0.0 +25646,30,25.89,10,0.0 +25646,32,32,33,0.0 +25646,50,16.25,41,0.0 +25646,72,34.8,6,0.0 +25646,34,14,33,0.0 +25646,11,21,13,0.0 +25647,70,15,7,0.0 +25647,32,32,43,0.0 +25647,43,46,15,0.0 +25647,17,39,2,0.0 +25647,13,6,15,0.0 +25648,55,24,46,0.0 +25648,64,33.25,3,0.0 +25648,6,25,21,0.0 +25648,36,19,20,0.0 +25648,40,18.4,20,0.0 +25648,27,43.9,39,0.0 +25648,21,10,26,0.0 +25648,44,19.45,22,0.0 +25648,22,21,8,0.0 +25648,53,32.8,3,0.0 +25648,26,31.23,44,0.0 +25648,56,38,32,0.0 +25648,12,38,2,0.0 +25648,67,14,25,0.0 +25648,37,26,38,0.0 +25648,38,263.5,4,0.0 +25648,16,17.45,21,0.0 +25648,66,17,43,0.0 +25648,14,23.25,12,0.0 +25648,50,16.25,4,0.0 +25648,20,81,7,0.0 +25648,57,19.5,8,0.0 +25648,19,9.2,43,0.0 +25648,7,30,6,0.0 +25648,60,34,13,0.0 +25648,1,18,30,0.0 +25648,74,10,4,0.0 +25648,68,12.5,42,0.0 +25648,63,43.9,38,0.0 +25648,41,9.65,36,0.0 +25648,73,15,28,0.0 +25648,25,14,2,0.0 +25648,28,45.6,32,0.0 +25648,10,31,27,0.0 +25648,15,15.5,37,0.0 +25648,75,7.75,47,0.0 +25648,71,21.5,8,0.0 +25648,17,39,48,0.0 +25648,13,6,33,0.0 +25648,43,46,10,0.0 +25648,33,2.5,19,0.0 +25648,62,49.3,36,0.0 +25648,69,36,14,0.0 +25648,39,18,33,0.0 +25648,61,28.5,5,0.0 +25648,30,25.89,8,0.0 +25648,45,9.5,39,0.0 +25648,11,21,45,0.0 +25649,61,28.5,42,0.0 +25649,60,34,2,0.0 +25649,25,14,13,0.0 +25649,36,19,7,0.0 +25649,45,9.5,45,0.0 +25649,74,10,39,0.0 +25649,35,18,1,0.0 +25649,63,43.9,18,0.0 +25649,15,15.5,9,0.0 +25649,12,38,14,0.0 +25649,10,31,39,0.0 +25649,16,17.45,35,0.0 +25649,18,62.5,22,0.0 +25649,46,12,49,0.0 +25649,6,25,13,0.0 +25649,38,263.5,44,0.0 +25649,4,22,37,0.0 +25649,41,9.65,20,0.0 +25649,17,39,22,0.0 +25649,76,18,26,0.0 +25649,77,13,46,0.0 +25649,64,33.25,44,0.0 +25649,50,16.25,6,0.0 +25649,34,14,4,0.0 +25649,28,45.6,3,0.0 +25649,3,10,50,0.0 +25649,62,49.3,15,0.0 +25649,57,19.5,20,0.0 +25649,7,30,37,0.0 +25649,54,7.45,2,0.0 +25650,71,21.5,10,0.0 +25650,59,55,2,0.0 +25650,41,9.65,1,0.0 +25650,38,263.5,1,0.0 +25650,69,36,34,0.0 +25650,15,15.5,35,0.0 +25650,75,7.75,1,0.0 +25650,61,28.5,21,0.0 +25650,63,43.9,15,0.0 +25650,5,21.35,41,0.0 +25650,17,39,39,0.0 +25650,29,123.79,13,0.0 +25650,37,26,2,0.0 +25650,19,9.2,8,0.0 +25650,64,33.25,3,0.0 +25650,46,12,13,0.0 +25650,40,18.4,28,0.0 +25650,74,10,50,0.0 +25650,21,10,47,0.0 +25650,8,40,24,0.0 +25650,6,25,6,0.0 +25650,13,6,4,0.0 +25650,20,81,10,0.0 +25650,56,38,49,0.0 +25650,44,19.45,24,0.0 +25650,49,20,4,0.0 +25650,42,14,38,0.0 +25650,52,7,44,0.0 +25650,65,21.05,36,0.0 +25650,9,97,23,0.0 +25650,25,14,21,0.0 +25650,50,16.25,31,0.0 +25650,27,43.9,21,0.0 +25650,12,38,11,0.0 +25650,26,31.23,40,0.0 +25650,31,12.5,2,0.0 +25650,36,19,9,0.0 +25650,1,18,11,0.0 +25650,62,49.3,35,0.0 +25650,47,9.5,7,0.0 +25650,55,24,8,0.0 +25650,72,34.8,26,0.0 +25650,68,12.5,21,0.0 +25650,4,22,30,0.0 +25650,66,17,16,0.0 +25650,24,4.5,11,0.0 +25650,76,18,28,0.0 +25650,45,9.5,24,0.0 +25650,33,2.5,2,0.0 +25650,43,46,44,0.0 +25650,53,32.8,12,0.0 +25650,35,18,35,0.0 +25650,11,21,5,0.0 +25650,51,53,16,0.0 +25650,54,7.45,35,0.0 +25650,3,10,10,0.0 +25650,34,14,17,0.0 +25650,10,31,29,0.0 +25650,58,13.25,19,0.0 +25650,70,15,13,0.0 +25650,18,62.5,15,0.0 +25650,7,30,16,0.0 +25650,16,17.45,36,0.0 +25650,77,13,7,0.0 +25650,60,34,11,0.0 +25650,73,15,43,0.0 +25651,18,62.5,47,0.0 +25651,43,46,24,0.0 +25651,10,31,44,0.0 +25651,38,263.5,36,0.0 +25651,61,28.5,34,0.0 +25651,50,16.25,39,0.0 +25651,64,33.25,45,0.0 +25651,53,32.8,20,0.0 +25651,59,55,49,0.0 +25651,70,15,18,0.0 +25651,57,19.5,39,0.0 +25652,14,23.25,10,0.0 +25652,65,21.05,13,0.0 +25652,6,25,26,0.0 +25652,51,53,23,0.0 +25652,11,21,25,0.0 +25652,68,12.5,27,0.0 +25652,9,97,13,0.0 +25652,12,38,6,0.0 +25652,66,17,14,0.0 +25652,61,28.5,39,0.0 +25652,30,25.89,21,0.0 +25652,36,19,22,0.0 +25652,16,17.45,43,0.0 +25652,18,62.5,23,0.0 +25652,71,21.5,29,0.0 +25652,37,26,24,0.0 +25652,67,14,41,0.0 +25652,72,34.8,17,0.0 +25652,76,18,35,0.0 +25652,40,18.4,39,0.0 +25652,74,10,12,0.0 +25652,43,46,21,0.0 +25652,27,43.9,45,0.0 +25652,29,123.79,19,0.0 +25652,15,15.5,40,0.0 +25652,62,49.3,24,0.0 +25652,2,19,38,0.0 +25652,38,263.5,47,0.0 +25652,34,14,40,0.0 +25652,59,55,26,0.0 +25652,47,9.5,2,0.0 +25652,26,31.23,27,0.0 +25652,35,18,18,0.0 +25652,33,2.5,16,0.0 +25652,28,45.6,37,0.0 +25652,42,14,18,0.0 +25652,48,12.75,32,0.0 +25652,20,81,33,0.0 +25652,53,32.8,11,0.0 +25652,77,13,37,0.0 +25652,50,16.25,25,0.0 +25652,55,24,14,0.0 +25652,64,33.25,12,0.0 +25652,1,18,10,0.0 +25652,56,38,29,0.0 +25652,49,20,46,0.0 +25652,23,9,1,0.0 +25652,44,19.45,42,0.0 +25652,52,7,30,0.0 +25652,3,10,26,0.0 +25652,58,13.25,20,0.0 +25652,7,30,37,0.0 +25652,17,39,20,0.0 +25652,19,9.2,39,0.0 +25652,4,22,14,0.0 +25652,31,12.5,31,0.0 +25652,41,9.65,5,0.0 +25652,46,12,44,0.0 +25652,22,21,14,0.0 +25652,13,6,27,0.0 +25652,73,15,25,0.0 +25652,69,36,17,0.0 +25652,21,10,28,0.0 +25652,39,18,4,0.0 +25652,25,14,26,0.0 +25653,77,13,16,0.0 +25653,43,46,24,0.0 +25653,73,15,39,0.0 +25653,54,7.45,26,0.0 +25653,74,10,18,0.0 +25653,1,18,49,0.0 +25653,37,26,5,0.0 +25653,38,263.5,35,0.0 +25653,76,18,3,0.0 +25653,53,32.8,2,0.0 +25653,55,24,17,0.0 +25653,39,18,36,0.0 +25653,51,53,26,0.0 +25653,4,22,5,0.0 +25653,31,12.5,15,0.0 +25653,29,123.79,16,0.0 +25653,41,9.65,29,0.0 +25653,47,9.5,17,0.0 +25653,2,19,35,0.0 +25653,62,49.3,2,0.0 +25653,6,25,35,0.0 +25653,30,25.89,16,0.0 +25653,59,55,35,0.0 +25653,34,14,46,0.0 +25653,42,14,37,0.0 +25653,20,81,16,0.0 +25653,49,20,25,0.0 +25653,28,45.6,32,0.0 +25653,15,15.5,10,0.0 +25653,14,23.25,13,0.0 +25653,44,19.45,32,0.0 +25653,45,9.5,21,0.0 +25653,70,15,37,0.0 +25653,69,36,26,0.0 +25653,9,97,44,0.0 +25653,18,62.5,40,0.0 +25653,8,40,46,0.0 +25653,57,19.5,29,0.0 +25653,36,19,23,0.0 +25653,33,2.5,12,0.0 +25653,35,18,39,0.0 +25653,17,39,41,0.0 +25654,63,43.9,26,0.0 +25654,76,18,25,0.0 +25654,6,25,15,0.0 +25654,62,49.3,23,0.0 +25654,68,12.5,32,0.0 +25654,65,21.05,3,0.0 +25654,49,20,50,0.0 +25654,37,26,11,0.0 +25654,47,9.5,36,0.0 +25654,74,10,38,0.0 +25654,43,46,25,0.0 +25654,11,21,49,0.0 +25654,70,15,35,0.0 +25654,9,97,18,0.0 +25654,54,7.45,14,0.0 +25654,34,14,9,0.0 +25654,66,17,10,0.0 +25654,17,39,11,0.0 +25654,61,28.5,3,0.0 +25654,4,22,46,0.0 +25654,10,31,14,0.0 +25654,1,18,41,0.0 +25654,27,43.9,11,0.0 +25654,30,25.89,21,0.0 +25654,40,18.4,5,0.0 +25654,55,24,6,0.0 +25654,42,14,35,0.0 +25654,29,123.79,7,0.0 +25654,38,263.5,50,0.0 +25654,7,30,43,0.0 +25654,5,21.35,43,0.0 +25654,51,53,7,0.0 +25654,44,19.45,41,0.0 +25654,14,23.25,46,0.0 +25654,64,33.25,19,0.0 +25654,33,2.5,32,0.0 +25654,41,9.65,47,0.0 +25655,10,31,31,0.0 +25655,77,13,20,0.0 +25655,60,34,11,0.0 +25655,8,40,46,0.0 +25655,35,18,26,0.0 +25655,46,12,15,0.0 +25655,5,21.35,42,0.0 +25655,6,25,11,0.0 +25655,57,19.5,25,0.0 +25655,59,55,27,0.0 +25655,44,19.45,21,0.0 +25655,19,9.2,40,0.0 +25655,30,25.89,9,0.0 +25655,42,14,18,0.0 +25655,21,10,46,0.0 +25655,56,38,12,0.0 +25655,36,19,17,0.0 +25655,52,7,16,0.0 +25655,9,97,17,0.0 +25655,23,9,43,0.0 +25655,76,18,38,0.0 +25655,64,33.25,39,0.0 +25655,45,9.5,48,0.0 +25655,49,20,47,0.0 +25655,75,7.75,1,0.0 +25655,72,34.8,18,0.0 +25655,74,10,17,0.0 +25655,38,263.5,12,0.0 +25655,69,36,27,0.0 +25655,50,16.25,42,0.0 +25655,55,24,31,0.0 +25655,28,45.6,18,0.0 +25655,54,7.45,49,0.0 +25655,43,46,11,0.0 +25655,47,9.5,48,0.0 +25655,18,62.5,3,0.0 +25655,33,2.5,32,0.0 +25655,68,12.5,39,0.0 +25655,40,18.4,1,0.0 +25655,16,17.45,34,0.0 +25655,65,21.05,50,0.0 +25655,26,31.23,14,0.0 +25655,48,12.75,13,0.0 +25655,15,15.5,39,0.0 +25655,14,23.25,35,0.0 +25655,1,18,8,0.0 +25655,11,21,30,0.0 +25655,41,9.65,24,0.0 +25655,67,14,40,0.0 +25655,12,38,13,0.0 +25655,13,6,47,0.0 +25655,34,14,45,0.0 +25655,2,19,35,0.0 +25655,25,14,50,0.0 +25655,39,18,48,0.0 +25655,70,15,49,0.0 +25655,20,81,31,0.0 +25655,63,43.9,45,0.0 +25655,51,53,41,0.0 +25655,37,26,19,0.0 +25655,73,15,39,0.0 +25655,31,12.5,44,0.0 +25655,53,32.8,40,0.0 +25655,3,10,29,0.0 +25655,27,43.9,36,0.0 +25656,21,10,11,0.0 +25656,3,10,33,0.0 +25656,56,38,45,0.0 +25656,5,21.35,17,0.0 +25656,7,30,46,0.0 +25656,72,34.8,23,0.0 +25656,13,6,7,0.0 +25656,31,12.5,17,0.0 +25656,28,45.6,8,0.0 +25656,26,31.23,27,0.0 +25656,43,46,25,0.0 +25656,37,26,44,0.0 +25656,30,25.89,26,0.0 +25656,48,12.75,27,0.0 +25656,71,21.5,2,0.0 +25656,45,9.5,16,0.0 +25656,61,28.5,29,0.0 +25656,12,38,17,0.0 +25656,38,263.5,43,0.0 +25657,68,12.5,24,0.0 +25657,34,14,28,0.0 +25657,70,15,36,0.0 +25657,13,6,43,0.0 +25657,50,16.25,23,0.0 +25657,25,14,8,0.0 +25657,53,32.8,9,0.0 +25657,11,21,8,0.0 +25657,39,18,44,0.0 +25657,48,12.75,14,0.0 +25657,14,23.25,35,0.0 +25657,30,25.89,24,0.0 +25657,65,21.05,38,0.0 +25657,57,19.5,46,0.0 +25657,62,49.3,27,0.0 +25657,38,263.5,33,0.0 +25657,75,7.75,24,0.0 +25657,42,14,38,0.0 +25657,16,17.45,35,0.0 +25657,52,7,50,0.0 +25657,33,2.5,4,0.0 +25657,73,15,34,0.0 +25657,3,10,50,0.0 +25657,31,12.5,39,0.0 +25657,17,39,5,0.0 +25657,1,18,21,0.0 +25657,61,28.5,45,0.0 +25657,7,30,33,0.0 +25657,69,36,14,0.0 +25657,41,9.65,24,0.0 +25657,6,25,30,0.0 +25657,72,34.8,17,0.0 +25657,9,97,6,0.0 +25657,35,18,31,0.0 +25657,77,13,22,0.0 +25657,64,33.25,36,0.0 +25657,2,19,38,0.0 +25657,58,13.25,31,0.0 +25657,19,9.2,39,0.0 +25657,5,21.35,32,0.0 +25657,20,81,7,0.0 +25657,37,26,26,0.0 +25657,55,24,9,0.0 +25657,24,4.5,36,0.0 +25657,63,43.9,30,0.0 +25657,36,19,23,0.0 +25657,74,10,1,0.0 +25657,45,9.5,13,0.0 +25657,59,55,37,0.0 +25658,44,19.45,19,0.0 +25658,73,15,5,0.0 +25658,71,21.5,36,0.0 +25658,70,15,21,0.0 +25658,4,22,5,0.0 +25658,11,21,37,0.0 +25658,48,12.75,4,0.0 +25658,50,16.25,22,0.0 +25658,24,4.5,1,0.0 +25658,8,40,49,0.0 +25658,23,9,5,0.0 +25658,40,18.4,22,0.0 +25658,3,10,6,0.0 +25658,66,17,26,0.0 +25658,25,14,6,0.0 +25658,53,32.8,35,0.0 +25658,76,18,7,0.0 +25658,51,53,19,0.0 +25658,6,25,44,0.0 +25658,59,55,30,0.0 +25658,19,9.2,9,0.0 +25658,7,30,9,0.0 +25658,36,19,5,0.0 +25658,22,21,48,0.0 +25658,60,34,18,0.0 +25658,30,25.89,33,0.0 +25658,15,15.5,5,0.0 +25658,18,62.5,33,0.0 +25658,20,81,1,0.0 +25658,56,38,10,0.0 +25658,13,6,48,0.0 +25659,52,7,34,0.0 +25659,44,19.45,16,0.0 +25659,49,20,14,0.0 +25659,11,21,48,0.0 +25659,14,23.25,30,0.0 +25659,7,30,27,0.0 +25659,40,18.4,2,0.0 +25659,63,43.9,38,0.0 +25659,19,9.2,41,0.0 +25659,46,12,8,0.0 +25659,5,21.35,49,0.0 +25659,21,10,30,0.0 +25659,47,9.5,2,0.0 +25659,32,32,48,0.0 +25659,48,12.75,9,0.0 +25659,71,21.5,26,0.0 +25659,76,18,44,0.0 +25659,28,45.6,25,0.0 +25659,34,14,17,0.0 +25659,36,19,3,0.0 +25659,42,14,29,0.0 +25659,45,9.5,25,0.0 +25659,1,18,45,0.0 +25659,55,24,31,0.0 +25659,3,10,38,0.0 +25659,62,49.3,41,0.0 +25659,33,2.5,16,0.0 +25659,37,26,48,0.0 +25659,59,55,25,0.0 +25659,60,34,9,0.0 +25659,74,10,1,0.0 +25659,31,12.5,8,0.0 +25659,39,18,10,0.0 +25659,30,25.89,11,0.0 +25659,54,7.45,21,0.0 +25659,16,17.45,41,0.0 +25659,10,31,21,0.0 +25659,12,38,45,0.0 +25659,38,263.5,10,0.0 +25659,9,97,31,0.0 +25659,58,13.25,8,0.0 +25659,69,36,24,0.0 +25659,24,4.5,10,0.0 +25659,66,17,12,0.0 +25659,35,18,21,0.0 +25659,64,33.25,43,0.0 +25659,75,7.75,3,0.0 +25659,23,9,44,0.0 +25659,20,81,4,0.0 +25659,18,62.5,23,0.0 +25659,51,53,28,0.0 +25659,29,123.79,43,0.0 +25659,43,46,28,0.0 +25659,27,43.9,42,0.0 +25659,4,22,24,0.0 +25659,70,15,17,0.0 +25659,15,15.5,30,0.0 +25659,61,28.5,29,0.0 +25659,41,9.65,36,0.0 +25659,53,32.8,28,0.0 +25659,17,39,28,0.0 +25659,25,14,13,0.0 +25659,67,14,37,0.0 +25660,74,10,49,0.0 +25660,42,14,9,0.0 +25660,20,81,30,0.0 +25660,60,34,27,0.0 +25660,30,25.89,30,0.0 +25660,64,33.25,47,0.0 +25660,18,62.5,24,0.0 +25660,17,39,16,0.0 +25660,41,9.65,16,0.0 +25660,55,24,48,0.0 +25660,22,21,8,0.0 +25660,10,31,24,0.0 +25660,39,18,8,0.0 +25660,48,12.75,18,0.0 +25660,38,263.5,21,0.0 +25660,9,97,43,0.0 +25660,56,38,20,0.0 +25660,76,18,4,0.0 +25660,44,19.45,20,0.0 +25660,33,2.5,5,0.0 +25660,72,34.8,2,0.0 +25660,7,30,16,0.0 +25660,61,28.5,22,0.0 +25660,12,38,20,0.0 +25660,70,15,37,0.0 +25660,71,21.5,10,0.0 +25660,51,53,31,0.0 +25660,45,9.5,34,0.0 +25660,29,123.79,2,0.0 +25660,63,43.9,42,0.0 +25660,14,23.25,5,0.0 +25660,24,4.5,29,0.0 +25660,52,7,38,0.0 +25660,47,9.5,32,0.0 +25660,59,55,6,0.0 +25660,57,19.5,8,0.0 +25660,36,19,36,0.0 +25660,77,13,36,0.0 +25660,26,31.23,10,0.0 +25660,62,49.3,25,0.0 +25660,28,45.6,34,0.0 +25660,40,18.4,27,0.0 +25660,58,13.25,14,0.0 +25660,34,14,43,0.0 +25660,32,32,6,0.0 +25661,65,21.05,30,0.0 +25661,75,7.75,35,0.0 +25661,32,32,36,0.0 +25661,40,18.4,5,0.0 +25661,63,43.9,2,0.0 +25661,77,13,32,0.0 +25661,70,15,47,0.0 +25661,33,2.5,18,0.0 +25661,19,9.2,27,0.0 +25661,39,18,32,0.0 +25661,23,9,32,0.0 +25661,55,24,21,0.0 +25661,4,22,27,0.0 +25661,76,18,7,0.0 +25661,1,18,21,0.0 +25661,74,10,41,0.0 +25661,46,12,1,0.0 +25661,49,20,2,0.0 +25661,50,16.25,46,0.0 +25661,2,19,47,0.0 +25661,59,55,20,0.0 +25661,60,34,45,0.0 +25661,56,38,32,0.0 +25661,68,12.5,19,0.0 +25661,22,21,24,0.0 +25661,37,26,42,0.0 +25661,42,14,49,0.0 +25661,67,14,38,0.0 +25661,3,10,12,0.0 +25661,17,39,10,0.0 +25661,72,34.8,48,0.0 +25661,53,32.8,2,0.0 +25661,26,31.23,21,0.0 +25661,38,263.5,8,0.0 +25661,43,46,6,0.0 +25662,26,31.23,34,0.0 +25662,45,9.5,29,0.0 +25662,42,14,45,0.0 +25662,11,21,33,0.0 +25662,24,4.5,24,0.0 +25662,13,6,33,0.0 +25662,27,43.9,11,0.0 +25662,34,14,6,0.0 +25662,39,18,16,0.0 +25662,63,43.9,42,0.0 +25662,10,31,40,0.0 +25662,3,10,42,0.0 +25662,9,97,8,0.0 +25662,18,62.5,16,0.0 +25662,36,19,27,0.0 +25662,59,55,20,0.0 +25662,17,39,49,0.0 +25662,62,49.3,11,0.0 +25662,28,45.6,49,0.0 +25662,54,7.45,23,0.0 +25662,49,20,33,0.0 +25662,69,36,41,0.0 +25662,64,33.25,18,0.0 +25662,20,81,45,0.0 +25662,38,263.5,38,0.0 +25662,14,23.25,31,0.0 +25662,67,14,17,0.0 +25662,71,21.5,29,0.0 +25662,33,2.5,9,0.0 +25662,52,7,14,0.0 +25662,1,18,44,0.0 +25662,53,32.8,30,0.0 +25662,44,19.45,18,0.0 +25662,12,38,35,0.0 +25662,57,19.5,26,0.0 +25662,72,34.8,41,0.0 +25662,40,18.4,15,0.0 +25662,4,22,41,0.0 +25662,35,18,45,0.0 +25662,7,30,12,0.0 +25662,43,46,48,0.0 +25662,21,10,3,0.0 +25662,65,21.05,1,0.0 +25662,46,12,2,0.0 +25662,55,24,36,0.0 +25662,8,40,4,0.0 +25662,70,15,31,0.0 +25662,32,32,26,0.0 +25662,66,17,33,0.0 +25662,60,34,7,0.0 +25662,19,9.2,5,0.0 +25662,41,9.65,11,0.0 +25662,47,9.5,47,0.0 +25662,51,53,30,0.0 +25662,48,12.75,38,0.0 +25662,73,15,22,0.0 +25662,5,21.35,20,0.0 +25663,27,43.9,24,0.0 +25664,52,7,19,0.0 +25664,8,40,30,0.0 +25664,69,36,31,0.0 +25664,57,19.5,24,0.0 +25664,35,18,5,0.0 +25664,70,15,28,0.0 +25664,46,12,35,0.0 +25664,28,45.6,26,0.0 +25664,12,38,49,0.0 +25664,1,18,4,0.0 +25664,76,18,42,0.0 +25664,36,19,43,0.0 +25664,55,24,23,0.0 +25664,4,22,45,0.0 +25664,75,7.75,39,0.0 +25664,62,49.3,6,0.0 +25664,18,62.5,23,0.0 +25664,15,15.5,48,0.0 +25664,72,34.8,42,0.0 +25664,66,17,36,0.0 +25664,61,28.5,29,0.0 +25664,37,26,39,0.0 +25664,27,43.9,23,0.0 +25664,44,19.45,15,0.0 +25664,49,20,29,0.0 +25664,56,38,33,0.0 +25664,64,33.25,32,0.0 +25664,53,32.8,18,0.0 +25664,22,21,34,0.0 +25664,3,10,35,0.0 +25664,19,9.2,3,0.0 +25664,17,39,40,0.0 +25664,13,6,49,0.0 +25664,14,23.25,5,0.0 +25664,24,4.5,47,0.0 +25664,48,12.75,36,0.0 +25664,63,43.9,34,0.0 +25664,77,13,4,0.0 +25664,50,16.25,47,0.0 +25664,34,14,23,0.0 +25664,30,25.89,46,0.0 +25664,5,21.35,24,0.0 +25664,51,53,43,0.0 +25664,68,12.5,46,0.0 +25664,2,19,42,0.0 +25664,65,21.05,12,0.0 +25664,11,21,20,0.0 +25664,25,14,42,0.0 +25664,60,34,31,0.0 +25664,31,12.5,8,0.0 +25665,56,38,4,0.0 +25665,63,43.9,29,0.0 +25665,14,23.25,22,0.0 +25665,73,15,19,0.0 +25665,71,21.5,12,0.0 +25665,52,7,29,0.0 +25665,45,9.5,29,0.0 +25665,27,43.9,29,0.0 +25665,4,22,25,0.0 +25665,18,62.5,12,0.0 +25665,51,53,27,0.0 +25665,36,19,4,0.0 +25665,68,12.5,41,0.0 +25665,34,14,45,0.0 +25665,41,9.65,8,0.0 +25665,32,32,6,0.0 +25665,25,14,15,0.0 +25665,17,39,25,0.0 +25665,61,28.5,44,0.0 +25665,74,10,9,0.0 +25665,2,19,47,0.0 +25665,69,36,46,0.0 +25666,10,31,44,0.0 +25666,2,19,47,0.0 +25666,50,16.25,32,0.0 +25666,4,22,18,0.0 +25666,64,33.25,13,0.0 +25666,36,19,8,0.0 +25666,71,21.5,28,0.0 +25666,26,31.23,13,0.0 +25666,44,19.45,37,0.0 +25666,63,43.9,27,0.0 +25666,23,9,13,0.0 +25666,5,21.35,23,0.0 +25666,46,12,44,0.0 +25666,43,46,48,0.0 +25666,37,26,23,0.0 +25666,3,10,44,0.0 +25666,13,6,19,0.0 +25666,75,7.75,35,0.0 +25666,49,20,42,0.0 +25666,17,39,10,0.0 +25666,74,10,48,0.0 +25666,73,15,21,0.0 +25666,14,23.25,38,0.0 +25666,7,30,16,0.0 +25667,66,17,24,0.0 +25667,24,4.5,16,0.0 +25667,75,7.75,32,0.0 +25667,4,22,18,0.0 +25667,65,21.05,33,0.0 +25667,63,43.9,2,0.0 +25667,17,39,19,0.0 +25667,2,19,43,0.0 +25667,39,18,39,0.0 +25667,69,36,28,0.0 +25667,26,31.23,34,0.0 +25667,62,49.3,9,0.0 +25667,50,16.25,29,0.0 +25667,34,14,19,0.0 +25667,38,263.5,4,0.0 +25667,44,19.45,28,0.0 +25667,28,45.6,2,0.0 +25667,16,17.45,37,0.0 +25667,40,18.4,44,0.0 +25667,61,28.5,27,0.0 +25667,15,15.5,49,0.0 +25667,72,34.8,12,0.0 +25667,9,97,7,0.0 +25667,29,123.79,23,0.0 +25667,5,21.35,49,0.0 +25667,18,62.5,47,0.0 +25667,35,18,1,0.0 +25667,21,10,12,0.0 +25667,77,13,9,0.0 +25667,51,53,12,0.0 +25667,10,31,8,0.0 +25667,20,81,12,0.0 +25667,49,20,13,0.0 +25667,68,12.5,48,0.0 +25667,37,26,48,0.0 +25667,12,38,45,0.0 +25667,14,23.25,16,0.0 +25667,23,9,1,0.0 +25667,59,55,23,0.0 +25667,32,32,46,0.0 +25667,31,12.5,13,0.0 +25667,70,15,48,0.0 +25667,57,19.5,48,0.0 +25667,6,25,49,0.0 +25667,58,13.25,7,0.0 +25667,73,15,38,0.0 +25667,46,12,50,0.0 +25667,7,30,34,0.0 +25667,22,21,33,0.0 +25667,76,18,1,0.0 +25667,36,19,37,0.0 +25667,71,21.5,5,0.0 +25667,74,10,35,0.0 +25667,27,43.9,44,0.0 +25667,13,6,50,0.0 +25667,1,18,31,0.0 +25667,54,7.45,44,0.0 +25667,41,9.65,30,0.0 +25667,45,9.5,24,0.0 +25667,33,2.5,43,0.0 +25667,25,14,12,0.0 +25667,30,25.89,25,0.0 +25667,47,9.5,6,0.0 +25667,19,9.2,40,0.0 +25667,53,32.8,33,0.0 +25667,8,40,35,0.0 +25667,56,38,10,0.0 +25667,11,21,6,0.0 +25667,43,46,14,0.0 +25667,55,24,7,0.0 +25667,3,10,9,0.0 +25667,48,12.75,34,0.0 +25667,52,7,19,0.0 +25667,60,34,35,0.0 +25668,32,32,30,0.0 +25668,56,38,19,0.0 +25668,40,18.4,11,0.0 +25668,5,21.35,41,0.0 +25668,36,19,40,0.0 +25668,54,7.45,21,0.0 +25668,10,31,5,0.0 +25668,14,23.25,39,0.0 +25668,62,49.3,17,0.0 +25668,76,18,7,0.0 +25668,27,43.9,4,0.0 +25668,65,21.05,50,0.0 +25668,23,9,38,0.0 +25668,16,17.45,3,0.0 +25668,41,9.65,27,0.0 +25668,63,43.9,39,0.0 +25668,37,26,31,0.0 +25668,17,39,7,0.0 +25668,43,46,27,0.0 +25668,77,13,44,0.0 +25668,11,21,8,0.0 +25668,21,10,40,0.0 +25668,52,7,17,0.0 +25668,33,2.5,9,0.0 +25668,59,55,33,0.0 +25668,64,33.25,10,0.0 +25668,3,10,24,0.0 +25668,20,81,44,0.0 +25668,45,9.5,45,0.0 +25668,12,38,50,0.0 +25668,57,19.5,1,0.0 +25668,69,36,30,0.0 +25668,67,14,13,0.0 +25668,4,22,38,0.0 +25668,26,31.23,18,0.0 +25668,68,12.5,36,0.0 +25668,49,20,47,0.0 +25668,53,32.8,19,0.0 +25668,72,34.8,15,0.0 +25668,15,15.5,38,0.0 +25668,39,18,22,0.0 +25668,24,4.5,22,0.0 +25668,51,53,50,0.0 +25668,61,28.5,34,0.0 +25668,2,19,31,0.0 +25668,46,12,16,0.0 +25668,8,40,43,0.0 +25668,44,19.45,42,0.0 +25668,13,6,19,0.0 +25668,50,16.25,22,0.0 +25668,48,12.75,38,0.0 +25668,60,34,22,0.0 +25668,35,18,47,0.0 +25668,34,14,35,0.0 +25668,70,15,17,0.0 +25668,29,123.79,6,0.0 +25668,47,9.5,16,0.0 +25668,75,7.75,2,0.0 +25669,75,7.75,6,0.0 +25669,73,15,2,0.0 +25669,64,33.25,13,0.0 +25669,51,53,2,0.0 +25669,55,24,24,0.0 +25669,8,40,45,0.0 +25669,10,31,47,0.0 +25669,65,21.05,4,0.0 +25669,67,14,2,0.0 +25669,25,14,22,0.0 +25669,37,26,50,0.0 +25669,19,9.2,26,0.0 +25669,16,17.45,10,0.0 +25669,11,21,41,0.0 +25669,62,49.3,22,0.0 +25669,74,10,46,0.0 +25669,14,23.25,15,0.0 +25669,13,6,28,0.0 +25669,28,45.6,39,0.0 +25669,44,19.45,6,0.0 +25669,34,14,18,0.0 +25669,58,13.25,47,0.0 +25669,72,34.8,13,0.0 +25669,9,97,3,0.0 +25669,15,15.5,37,0.0 +25669,57,19.5,22,0.0 +25669,23,9,17,0.0 +25669,36,19,35,0.0 +25669,46,12,24,0.0 +25669,49,20,44,0.0 +25669,24,4.5,46,0.0 +25669,40,18.4,42,0.0 +25669,54,7.45,28,0.0 +25669,77,13,15,0.0 +25669,32,32,13,0.0 +25669,50,16.25,32,0.0 +25669,27,43.9,32,0.0 +25669,17,39,3,0.0 +25669,42,14,12,0.0 +25669,71,21.5,3,0.0 +25669,1,18,46,0.0 +25669,6,25,30,0.0 +25669,4,22,37,0.0 +25669,35,18,20,0.0 +25669,7,30,36,0.0 +25669,21,10,29,0.0 +25669,5,21.35,46,0.0 +25669,76,18,47,0.0 +25669,26,31.23,15,0.0 +25669,30,25.89,28,0.0 +25669,22,21,28,0.0 +25669,18,62.5,50,0.0 +25669,47,9.5,16,0.0 +25669,2,19,25,0.0 +25669,53,32.8,8,0.0 +25669,33,2.5,21,0.0 +25669,61,28.5,37,0.0 +25670,20,81,39,0.0 +25670,22,21,30,0.0 +25670,64,33.25,22,0.0 +25670,3,10,36,0.0 +25670,57,19.5,49,0.0 +25670,8,40,19,0.0 +25670,16,17.45,50,0.0 +25670,7,30,34,0.0 +25670,44,19.45,29,0.0 +25670,23,9,39,0.0 +25670,37,26,42,0.0 +25670,29,123.79,16,0.0 +25670,45,9.5,27,0.0 +25670,32,32,20,0.0 +25670,21,10,34,0.0 +25670,54,7.45,35,0.0 +25670,74,10,21,0.0 +25670,69,36,26,0.0 +25670,2,19,19,0.0 +25670,38,263.5,22,0.0 +25670,67,14,28,0.0 +25670,27,43.9,37,0.0 +25670,1,18,31,0.0 +25670,18,62.5,42,0.0 +25670,41,9.65,11,0.0 +25670,35,18,43,0.0 +25670,42,14,22,0.0 +25670,4,22,4,0.0 +25670,13,6,41,0.0 +25670,46,12,39,0.0 +25670,56,38,27,0.0 +25670,53,32.8,24,0.0 +25670,28,45.6,31,0.0 +25670,71,21.5,24,0.0 +25670,68,12.5,4,0.0 +25670,63,43.9,49,0.0 +25670,77,13,26,0.0 +25670,6,25,37,0.0 +25670,50,16.25,38,0.0 +25670,40,18.4,11,0.0 +25670,76,18,4,0.0 +25670,51,53,29,0.0 +25671,20,81,18,0.0 +25671,9,97,26,0.0 +25671,55,24,37,0.0 +25671,61,28.5,18,0.0 +25671,31,12.5,15,0.0 +25671,16,17.45,36,0.0 +25671,77,13,44,0.0 +25671,34,14,14,0.0 +25671,32,32,21,0.0 +25671,37,26,17,0.0 +25671,59,55,45,0.0 +25671,39,18,6,0.0 +25671,30,25.89,48,0.0 +25671,8,40,36,0.0 +25671,43,46,28,0.0 +25671,50,16.25,33,0.0 +25671,12,38,43,0.0 +25671,27,43.9,11,0.0 +25671,4,22,24,0.0 +25671,2,19,16,0.0 +25671,23,9,32,0.0 +25671,40,18.4,24,0.0 +25671,64,33.25,47,0.0 +25671,5,21.35,3,0.0 +25671,42,14,32,0.0 +25671,15,15.5,4,0.0 +25671,51,53,33,0.0 +25671,36,19,39,0.0 +25671,29,123.79,21,0.0 +25671,57,19.5,30,0.0 +25671,74,10,18,0.0 +25671,49,20,16,0.0 +25671,21,10,31,0.0 +25671,45,9.5,36,0.0 +25671,56,38,49,0.0 +25671,19,9.2,13,0.0 +25671,52,7,40,0.0 +25671,44,19.45,38,0.0 +25671,73,15,19,0.0 +25671,72,34.8,14,0.0 +25671,47,9.5,30,0.0 +25671,3,10,46,0.0 +25671,75,7.75,17,0.0 +25671,53,32.8,41,0.0 +25671,60,34,28,0.0 +25671,17,39,7,0.0 +25671,76,18,46,0.0 +25671,35,18,20,0.0 +25671,1,18,12,0.0 +25671,24,4.5,41,0.0 +25671,62,49.3,27,0.0 +25671,48,12.75,2,0.0 +25671,18,62.5,35,0.0 +25671,66,17,17,0.0 +25671,14,23.25,15,0.0 +25671,54,7.45,18,0.0 +25671,63,43.9,4,0.0 +25671,58,13.25,21,0.0 +25671,26,31.23,33,0.0 +25671,6,25,2,0.0 +25672,10,31,26,0.0 +25672,14,23.25,2,0.0 +25672,8,40,5,0.0 +25673,39,18,6,0.0 +25673,43,46,16,0.0 +25673,72,34.8,41,0.0 +25673,55,24,3,0.0 +25673,33,2.5,36,0.0 +25673,65,21.05,9,0.0 +25673,75,7.75,27,0.0 +25673,11,21,31,0.0 +25673,37,26,49,0.0 +25673,58,13.25,8,0.0 +25673,30,25.89,36,0.0 +25673,24,4.5,50,0.0 +25673,74,10,8,0.0 +25673,68,12.5,36,0.0 +25673,61,28.5,22,0.0 +25673,22,21,5,0.0 +25673,76,18,30,0.0 +25673,77,13,2,0.0 +25673,46,12,38,0.0 +25673,51,53,24,0.0 +25673,14,23.25,43,0.0 +25673,2,19,24,0.0 +25673,3,10,9,0.0 +25673,9,97,26,0.0 +25673,7,30,7,0.0 +25673,32,32,36,0.0 +25673,48,12.75,45,0.0 +25673,38,263.5,41,0.0 +25673,31,12.5,11,0.0 +25673,8,40,24,0.0 +25673,63,43.9,38,0.0 +25673,70,15,31,0.0 +25673,4,22,26,0.0 +25673,49,20,22,0.0 +25673,52,7,38,0.0 +25673,21,10,33,0.0 +25673,62,49.3,18,0.0 +25673,28,45.6,32,0.0 +25673,29,123.79,27,0.0 +25673,17,39,3,0.0 +25673,57,19.5,47,0.0 +25673,12,38,28,0.0 +25673,45,9.5,19,0.0 +25673,10,31,32,0.0 +25673,13,6,34,0.0 +25673,18,62.5,33,0.0 +25673,59,55,1,0.0 +25673,66,17,10,0.0 +25673,41,9.65,8,0.0 +25673,67,14,27,0.0 +25673,34,14,24,0.0 +25673,36,19,50,0.0 +25673,60,34,22,0.0 +25673,64,33.25,18,0.0 +25673,44,19.45,25,0.0 +25673,56,38,5,0.0 +25673,53,32.8,8,0.0 +25673,23,9,11,0.0 +25673,1,18,26,0.0 +25673,69,36,48,0.0 +25673,42,14,19,0.0 +25673,73,15,31,0.0 +25673,15,15.5,29,0.0 +25673,19,9.2,49,0.0 +25673,6,25,1,0.0 +25673,5,21.35,20,0.0 +25673,40,18.4,8,0.0 +25674,72,34.8,21,0.0 +25674,18,62.5,33,0.0 +25674,15,15.5,38,0.0 +25674,34,14,34,0.0 +25674,58,13.25,11,0.0 +25674,20,81,19,0.0 +25674,48,12.75,34,0.0 +25674,12,38,42,0.0 +25674,16,17.45,28,0.0 +25674,2,19,11,0.0 +25674,28,45.6,36,0.0 +25674,5,21.35,47,0.0 +25674,44,19.45,12,0.0 +25674,41,9.65,29,0.0 +25674,40,18.4,46,0.0 +25674,6,25,35,0.0 +25674,61,28.5,30,0.0 +25674,66,17,33,0.0 +25674,30,25.89,32,0.0 +25674,45,9.5,4,0.0 +25674,47,9.5,41,0.0 +25674,31,12.5,21,0.0 +25674,53,32.8,5,0.0 +25674,73,15,31,0.0 +25674,1,18,35,0.0 +25674,37,26,36,0.0 +25674,55,24,36,0.0 +25674,27,43.9,43,0.0 +25674,63,43.9,15,0.0 +25674,21,10,34,0.0 +25674,32,32,5,0.0 +25674,38,263.5,38,0.0 +25674,77,13,7,0.0 +25674,74,10,9,0.0 +25674,9,97,18,0.0 +25674,56,38,44,0.0 +25674,52,7,31,0.0 +25674,10,31,33,0.0 +25674,26,31.23,14,0.0 +25674,60,34,6,0.0 +25674,46,12,38,0.0 +25674,51,53,25,0.0 +25674,75,7.75,2,0.0 +25674,7,30,31,0.0 +25674,13,6,48,0.0 +25674,22,21,31,0.0 +25674,50,16.25,41,0.0 +25674,62,49.3,25,0.0 +25674,54,7.45,13,0.0 +25674,59,55,32,0.0 +25674,17,39,21,0.0 +25674,33,2.5,20,0.0 +25674,64,33.25,9,0.0 +25674,8,40,5,0.0 +25674,42,14,43,0.0 +25674,25,14,42,0.0 +25674,29,123.79,20,0.0 +25674,36,19,46,0.0 +25674,19,9.2,41,0.0 +25674,68,12.5,35,0.0 +25674,11,21,44,0.0 +25674,70,15,4,0.0 +25674,43,46,36,0.0 +25674,35,18,25,0.0 +25674,69,36,38,0.0 +25674,49,20,27,0.0 +25674,24,4.5,24,0.0 +25674,4,22,14,0.0 +25674,3,10,9,0.0 +25674,23,9,41,0.0 +25674,57,19.5,43,0.0 +25674,65,21.05,13,0.0 +25674,71,21.5,7,0.0 +25674,76,18,18,0.0 +25674,14,23.25,46,0.0 +25674,39,18,15,0.0 +25675,33,2.5,5,0.0 +25675,64,33.25,8,0.0 +25675,35,18,11,0.0 +25675,2,19,39,0.0 +25675,58,13.25,33,0.0 +25675,50,16.25,14,0.0 +25675,65,21.05,30,0.0 +25675,72,34.8,9,0.0 +25675,10,31,24,0.0 +25675,56,38,25,0.0 +25675,23,9,2,0.0 +25675,52,7,4,0.0 +25675,5,21.35,28,0.0 +25675,14,23.25,28,0.0 +25675,63,43.9,49,0.0 +25675,67,14,37,0.0 +25675,15,15.5,12,0.0 +25675,55,24,38,0.0 +25676,31,12.5,32,0.0 +25676,2,19,17,0.0 +25676,37,26,32,0.0 +25676,14,23.25,47,0.0 +25676,23,9,45,0.0 +25676,66,17,40,0.0 +25676,63,43.9,4,0.0 +25676,10,31,15,0.0 +25676,69,36,22,0.0 +25676,35,18,12,0.0 +25676,4,22,1,0.0 +25676,5,21.35,35,0.0 +25676,45,9.5,36,0.0 +25676,21,10,32,0.0 +25676,27,43.9,24,0.0 +25676,72,34.8,11,0.0 +25676,70,15,46,0.0 +25676,59,55,6,0.0 +25676,18,62.5,39,0.0 +25676,44,19.45,44,0.0 +25676,11,21,36,0.0 +25676,3,10,27,0.0 +25676,67,14,45,0.0 +25676,41,9.65,42,0.0 +25676,20,81,47,0.0 +25676,28,45.6,6,0.0 +25676,8,40,26,0.0 +25676,51,53,48,0.0 +25676,12,38,14,0.0 +25676,39,18,50,0.0 +25676,53,32.8,24,0.0 +25676,60,34,8,0.0 +25676,62,49.3,36,0.0 +25676,34,14,24,0.0 +25676,74,10,32,0.0 +25676,36,19,22,0.0 +25676,71,21.5,50,0.0 +25676,64,33.25,12,0.0 +25676,75,7.75,34,0.0 +25676,77,13,32,0.0 +25676,65,21.05,21,0.0 +25676,76,18,47,0.0 +25676,26,31.23,49,0.0 +25676,43,46,31,0.0 +25676,56,38,46,0.0 +25676,22,21,43,0.0 +25676,17,39,12,0.0 +25676,32,32,10,0.0 +25676,7,30,50,0.0 +25676,58,13.25,9,0.0 +25676,1,18,20,0.0 +25676,25,14,11,0.0 +25676,19,9.2,6,0.0 +25676,42,14,7,0.0 +25676,40,18.4,18,0.0 +25676,15,15.5,21,0.0 +25676,52,7,11,0.0 +25676,49,20,22,0.0 +25676,46,12,18,0.0 +25676,6,25,38,0.0 +25676,13,6,6,0.0 +25676,38,263.5,3,0.0 +25677,59,55,18,0.0 +25677,54,7.45,32,0.0 +25677,36,19,7,0.0 +25677,76,18,24,0.0 +25677,74,10,7,0.0 +25677,4,22,14,0.0 +25677,63,43.9,7,0.0 +25677,55,24,37,0.0 +25677,2,19,46,0.0 +25677,15,15.5,24,0.0 +25677,72,34.8,10,0.0 +25677,19,9.2,17,0.0 +25677,32,32,16,0.0 +25677,25,14,33,0.0 +25677,70,15,41,0.0 +25677,22,21,24,0.0 +25677,61,28.5,16,0.0 +25677,8,40,7,0.0 +25677,45,9.5,38,0.0 +25677,38,263.5,15,0.0 +25677,18,62.5,41,0.0 +25677,29,123.79,46,0.0 +25677,33,2.5,3,0.0 +25677,23,9,27,0.0 +25677,64,33.25,47,0.0 +25677,69,36,28,0.0 +25677,17,39,32,0.0 +25677,73,15,50,0.0 +25677,28,45.6,40,0.0 +25678,20,81,6,0.0 +25678,51,53,48,0.0 +25678,13,6,47,0.0 +25678,77,13,50,0.0 +25678,10,31,45,0.0 +25678,63,43.9,40,0.0 +25678,25,14,15,0.0 +25678,24,4.5,24,0.0 +25678,68,12.5,9,0.0 +25678,11,21,33,0.0 +25678,70,15,30,0.0 +25678,59,55,31,0.0 +25678,9,97,37,0.0 +25678,14,23.25,36,0.0 +25678,64,33.25,38,0.0 +25678,46,12,9,0.0 +25678,76,18,28,0.0 +25678,22,21,3,0.0 +25678,55,24,4,0.0 +25678,28,45.6,41,0.0 +25678,4,22,35,0.0 +25678,7,30,12,0.0 +25678,41,9.65,45,0.0 +25678,72,34.8,39,0.0 +25678,40,18.4,50,0.0 +25678,73,15,11,0.0 +25678,21,10,8,0.0 +25678,44,19.45,34,0.0 +25678,18,62.5,22,0.0 +25678,39,18,9,0.0 +25678,49,20,19,0.0 +25678,26,31.23,31,0.0 +25678,52,7,7,0.0 +25678,75,7.75,6,0.0 +25678,58,13.25,26,0.0 +25678,57,19.5,21,0.0 +25678,69,36,4,0.0 +25678,27,43.9,42,0.0 +25678,65,21.05,10,0.0 +25678,42,14,23,0.0 +25678,12,38,30,0.0 +25679,45,9.5,3,0.0 +25679,76,18,30,0.0 +25679,20,81,20,0.0 +25679,71,21.5,20,0.0 +25679,67,14,3,0.0 +25679,28,45.6,49,0.0 +25679,62,49.3,27,0.0 +25679,52,7,11,0.0 +25679,34,14,4,0.0 +25679,15,15.5,12,0.0 +25679,14,23.25,43,0.0 +25679,37,26,36,0.0 +25679,27,43.9,50,0.0 +25679,3,10,31,0.0 +25679,53,32.8,35,0.0 +25679,8,40,7,0.0 +25679,60,34,39,0.0 +25679,51,53,41,0.0 +25679,42,14,42,0.0 +25679,65,21.05,36,0.0 +25679,64,33.25,48,0.0 +25679,17,39,46,0.0 +25679,43,46,40,0.0 +25679,26,31.23,29,0.0 +25679,40,18.4,47,0.0 +25679,18,62.5,23,0.0 +25679,59,55,31,0.0 +25679,47,9.5,50,0.0 +25679,77,13,13,0.0 +25679,44,19.45,50,0.0 +25679,1,18,19,0.0 +25679,30,25.89,23,0.0 +25679,38,263.5,17,0.0 +25679,13,6,5,0.0 +25679,63,43.9,27,0.0 +25679,48,12.75,48,0.0 +25679,31,12.5,49,0.0 +25679,61,28.5,4,0.0 +25679,4,22,19,0.0 +25679,74,10,8,0.0 +25679,58,13.25,3,0.0 +25679,75,7.75,46,0.0 +25679,11,21,48,0.0 +25679,12,38,50,0.0 +25679,56,38,30,0.0 +25679,21,10,33,0.0 +25679,23,9,48,0.0 +25679,24,4.5,6,0.0 +25679,41,9.65,40,0.0 +25679,39,18,3,0.0 +25679,55,24,30,0.0 +25679,46,12,7,0.0 +25679,22,21,11,0.0 +25679,69,36,19,0.0 +25679,16,17.45,44,0.0 +25679,73,15,48,0.0 +25679,19,9.2,34,0.0 +25679,66,17,4,0.0 +25679,25,14,21,0.0 +25679,2,19,37,0.0 +25679,35,18,43,0.0 +25679,57,19.5,44,0.0 +25679,70,15,29,0.0 +25679,68,12.5,34,0.0 +25679,5,21.35,21,0.0 +25679,10,31,48,0.0 +25679,49,20,42,0.0 +25679,7,30,45,0.0 +25679,32,32,45,0.0 +25679,33,2.5,8,0.0 +25679,72,34.8,1,0.0 +25679,36,19,48,0.0 +25679,50,16.25,31,0.0 +25679,29,123.79,49,0.0 +25679,9,97,20,0.0 +25680,40,18.4,37,0.0 +25680,48,12.75,42,0.0 +25680,3,10,41,0.0 +25680,73,15,42,0.0 +25680,34,14,42,0.0 +25680,44,19.45,47,0.0 +25680,15,15.5,26,0.0 +25680,38,263.5,28,0.0 +25680,46,12,3,0.0 +25680,22,21,17,0.0 +25680,49,20,45,0.0 +25680,25,14,14,0.0 +25680,6,25,21,0.0 +25680,39,18,19,0.0 +25680,63,43.9,27,0.0 +25680,36,19,1,0.0 +25680,58,13.25,1,0.0 +25680,20,81,13,0.0 +25680,18,62.5,46,0.0 +25680,66,17,7,0.0 +25680,12,38,27,0.0 +25680,41,9.65,26,0.0 +25680,7,30,17,0.0 +25680,50,16.25,34,0.0 +25680,70,15,22,0.0 +25680,61,28.5,34,0.0 +25680,1,18,2,0.0 +25680,55,24,40,0.0 +25680,45,9.5,8,0.0 +25680,27,43.9,20,0.0 +25680,47,9.5,18,0.0 +25680,53,32.8,50,0.0 +25680,68,12.5,36,0.0 +25680,74,10,19,0.0 +25680,8,40,15,0.0 +25680,71,21.5,19,0.0 +25680,2,19,41,0.0 +25680,13,6,4,0.0 +25680,77,13,3,0.0 +25680,54,7.45,50,0.0 +25680,9,97,45,0.0 +25680,16,17.45,41,0.0 +25680,28,45.6,37,0.0 +25680,59,55,18,0.0 +25680,67,14,24,0.0 +25680,17,39,33,0.0 +25680,75,7.75,50,0.0 +25680,35,18,26,0.0 +25680,26,31.23,13,0.0 +25680,72,34.8,25,0.0 +25680,76,18,31,0.0 +25680,57,19.5,7,0.0 +25680,32,32,24,0.0 +25680,52,7,44,0.0 +25680,29,123.79,47,0.0 +25680,23,9,9,0.0 +25680,30,25.89,1,0.0 +25680,19,9.2,50,0.0 +25680,37,26,19,0.0 +25681,47,9.5,5,0.0 +25681,33,2.5,6,0.0 +25681,13,6,15,0.0 +25681,25,14,28,0.0 +25681,50,16.25,35,0.0 +25681,21,10,4,0.0 +25681,35,18,43,0.0 +25681,28,45.6,17,0.0 +25681,68,12.5,42,0.0 +25681,59,55,10,0.0 +25681,15,15.5,24,0.0 +25681,73,15,33,0.0 +25681,5,21.35,46,0.0 +25681,23,9,15,0.0 +25681,27,43.9,5,0.0 +25681,75,7.75,39,0.0 +25681,31,12.5,7,0.0 +25681,53,32.8,24,0.0 +25681,66,17,21,0.0 +25681,36,19,13,0.0 +25681,70,15,35,0.0 +25681,58,13.25,26,0.0 +25681,20,81,26,0.0 +25681,8,40,26,0.0 +25681,61,28.5,31,0.0 +25681,62,49.3,43,0.0 +25681,77,13,3,0.0 +25681,26,31.23,33,0.0 +25681,39,18,9,0.0 +25681,64,33.25,24,0.0 +25681,1,18,41,0.0 +25681,56,38,11,0.0 +25681,11,21,22,0.0 +25681,7,30,10,0.0 +25681,74,10,5,0.0 +25681,10,31,7,0.0 +25681,17,39,16,0.0 +25681,69,36,16,0.0 +25681,60,34,17,0.0 +25681,44,19.45,24,0.0 +25681,18,62.5,36,0.0 +25681,52,7,32,0.0 +25681,32,32,20,0.0 +25681,4,22,50,0.0 +25681,48,12.75,22,0.0 +25681,37,26,18,0.0 +25682,31,12.5,16,0.0 +25682,3,10,12,0.0 +25682,71,21.5,21,0.0 +25682,66,17,25,0.0 +25682,61,28.5,24,0.0 +25682,9,97,33,0.0 +25682,20,81,15,0.0 +25682,49,20,25,0.0 +25682,5,21.35,5,0.0 +25682,45,9.5,41,0.0 +25682,8,40,45,0.0 +25682,33,2.5,32,0.0 +25682,65,21.05,22,0.0 +25682,30,25.89,20,0.0 +25682,11,21,8,0.0 +25682,60,34,41,0.0 +25682,18,62.5,48,0.0 +25682,14,23.25,21,0.0 +25682,69,36,33,0.0 +25682,41,9.65,15,0.0 +25682,15,15.5,39,0.0 +25682,16,17.45,12,0.0 +25682,39,18,7,0.0 +25682,68,12.5,27,0.0 +25682,26,31.23,28,0.0 +25682,35,18,13,0.0 +25682,6,25,40,0.0 +25682,4,22,8,0.0 +25682,63,43.9,43,0.0 +25682,10,31,9,0.0 +25682,36,19,18,0.0 +25682,48,12.75,22,0.0 +25682,52,7,9,0.0 +25682,75,7.75,4,0.0 +25682,29,123.79,19,0.0 +25682,50,16.25,42,0.0 +25682,25,14,49,0.0 +25682,70,15,35,0.0 +25682,13,6,39,0.0 +25682,28,45.6,41,0.0 +25682,58,13.25,33,0.0 +25682,2,19,4,0.0 +25682,12,38,5,0.0 +25682,74,10,5,0.0 +25682,73,15,50,0.0 +25682,24,4.5,27,0.0 +25682,51,53,14,0.0 +25682,32,32,33,0.0 +25682,76,18,6,0.0 +25682,38,263.5,11,0.0 +25682,43,46,34,0.0 +25682,21,10,26,0.0 +25682,67,14,19,0.0 +25682,46,12,5,0.0 +25682,56,38,15,0.0 +25682,37,26,40,0.0 +25682,27,43.9,50,0.0 +25683,29,123.79,34,0.0 +25683,15,15.5,5,0.0 +25683,20,81,48,0.0 +25683,2,19,18,0.0 +25683,61,28.5,18,0.0 +25683,40,18.4,47,0.0 +25684,11,21,28,0.0 +25684,63,43.9,27,0.0 +25684,27,43.9,19,0.0 +25684,8,40,14,0.0 +25684,47,9.5,8,0.0 +25684,73,15,20,0.0 +25684,33,2.5,39,0.0 +25684,17,39,34,0.0 +25684,9,97,1,0.0 +25684,42,14,36,0.0 +25684,44,19.45,9,0.0 +25684,52,7,50,0.0 +25684,16,17.45,46,0.0 +25684,51,53,21,0.0 +25684,28,45.6,25,0.0 +25684,69,36,20,0.0 +25684,68,12.5,40,0.0 +25685,22,21,19,0.0 +25685,15,15.5,13,0.0 +25685,55,24,17,0.0 +25685,26,31.23,6,0.0 +25685,24,4.5,49,0.0 +25685,61,28.5,26,0.0 +25685,1,18,11,0.0 +25685,68,12.5,12,0.0 +25685,75,7.75,44,0.0 +25685,49,20,1,0.0 +25685,41,9.65,29,0.0 +25685,20,81,45,0.0 +25685,32,32,11,0.0 +25685,52,7,48,0.0 +25685,40,18.4,30,0.0 +25685,17,39,25,0.0 +25685,63,43.9,13,0.0 +25685,43,46,23,0.0 +25685,62,49.3,30,0.0 +25685,56,38,25,0.0 +25685,69,36,30,0.0 +25685,67,14,5,0.0 +25685,57,19.5,12,0.0 +25685,73,15,49,0.0 +25685,12,38,45,0.0 +25685,9,97,48,0.0 +25685,19,9.2,21,0.0 +25685,47,9.5,29,0.0 +25685,33,2.5,26,0.0 +25685,44,19.45,27,0.0 +25685,37,26,28,0.0 +25685,28,45.6,37,0.0 +25685,4,22,8,0.0 +25685,23,9,39,0.0 +25685,64,33.25,10,0.0 +25685,5,21.35,50,0.0 +25685,7,30,11,0.0 +25685,45,9.5,21,0.0 +25685,46,12,25,0.0 +25685,50,16.25,6,0.0 +25685,25,14,11,0.0 +25685,14,23.25,29,0.0 +25685,74,10,33,0.0 +25685,34,14,42,0.0 +25685,66,17,11,0.0 +25685,72,34.8,19,0.0 +25685,42,14,32,0.0 +25685,70,15,12,0.0 +25685,35,18,14,0.0 +25685,54,7.45,10,0.0 +25685,36,19,28,0.0 +25685,16,17.45,20,0.0 +25685,59,55,3,0.0 +25685,13,6,50,0.0 +25685,18,62.5,26,0.0 +25685,38,263.5,36,0.0 +25685,39,18,6,0.0 +25685,29,123.79,31,0.0 +25685,8,40,43,0.0 +25685,65,21.05,42,0.0 +25685,48,12.75,30,0.0 +25685,77,13,21,0.0 +25685,6,25,50,0.0 +25685,60,34,8,0.0 +25685,27,43.9,38,0.0 +25685,2,19,50,0.0 +25685,51,53,27,0.0 +25685,21,10,15,0.0 +25685,3,10,48,0.0 +25685,58,13.25,48,0.0 +25685,76,18,14,0.0 +25685,31,12.5,25,0.0 +25685,71,21.5,9,0.0 +25685,30,25.89,22,0.0 +25686,7,30,38,0.0 +25686,14,23.25,39,0.0 +25686,49,20,13,0.0 +25686,56,38,3,0.0 +25686,48,12.75,3,0.0 +25686,72,34.8,8,0.0 +25686,36,19,14,0.0 +25686,74,10,28,0.0 +25687,28,45.6,5,0.0 +25687,75,7.75,10,0.0 +25687,72,34.8,12,0.0 +25687,10,31,23,0.0 +25687,44,19.45,16,0.0 +25687,3,10,9,0.0 +25687,56,38,46,0.0 +25687,9,97,36,0.0 +25687,22,21,23,0.0 +25687,5,21.35,31,0.0 +25687,43,46,7,0.0 +25687,73,15,50,0.0 +25687,17,39,1,0.0 +25687,61,28.5,20,0.0 +25687,16,17.45,49,0.0 +25687,27,43.9,20,0.0 +25687,38,263.5,19,0.0 +25687,35,18,12,0.0 +25687,67,14,26,0.0 +25687,14,23.25,12,0.0 +25687,65,21.05,41,0.0 +25687,23,9,42,0.0 +25687,52,7,43,0.0 +25687,49,20,9,0.0 +25687,31,12.5,39,0.0 +25687,8,40,44,0.0 +25687,21,10,41,0.0 +25687,36,19,41,0.0 +25687,68,12.5,44,0.0 +25687,37,26,31,0.0 +25687,57,19.5,1,0.0 +25687,25,14,40,0.0 +25687,42,14,38,0.0 +25687,47,9.5,2,0.0 +25687,12,38,41,0.0 +25687,29,123.79,19,0.0 +25687,66,17,22,0.0 +25687,1,18,2,0.0 +25687,62,49.3,19,0.0 +25687,64,33.25,20,0.0 +25687,69,36,38,0.0 +25687,4,22,17,0.0 +25687,30,25.89,46,0.0 +25687,53,32.8,45,0.0 +25687,63,43.9,46,0.0 +25687,48,12.75,1,0.0 +25687,24,4.5,47,0.0 +25687,41,9.65,19,0.0 +25688,26,31.23,14,0.0 +25688,60,34,49,0.0 +25688,62,49.3,42,0.0 +25688,20,81,40,0.0 +25688,75,7.75,41,0.0 +25688,3,10,44,0.0 +25688,21,10,12,0.0 +25688,1,18,33,0.0 +25688,66,17,21,0.0 +25688,58,13.25,23,0.0 +25688,9,97,7,0.0 +25688,13,6,7,0.0 +25688,7,30,16,0.0 +25688,36,19,25,0.0 +25688,2,19,36,0.0 +25688,29,123.79,47,0.0 +25688,47,9.5,12,0.0 +25688,48,12.75,6,0.0 +25688,39,18,50,0.0 +25688,22,21,13,0.0 +25688,37,26,28,0.0 +25688,55,24,40,0.0 +25688,67,14,42,0.0 +25688,32,32,43,0.0 +25688,71,21.5,30,0.0 +25688,46,12,10,0.0 +25688,40,18.4,8,0.0 +25688,34,14,29,0.0 +25688,42,14,39,0.0 +25688,23,9,4,0.0 +25688,12,38,10,0.0 +25688,76,18,26,0.0 +25688,19,9.2,14,0.0 +25688,69,36,41,0.0 +25688,30,25.89,27,0.0 +25688,59,55,16,0.0 +25688,11,21,10,0.0 +25688,5,21.35,19,0.0 +25688,18,62.5,32,0.0 +25688,35,18,12,0.0 +25688,49,20,35,0.0 +25688,70,15,27,0.0 +25689,36,19,3,0.0 +25689,18,62.5,23,0.0 +25689,55,24,48,0.0 +25689,27,43.9,39,0.0 +25689,13,6,26,0.0 +25689,43,46,17,0.0 +25689,15,15.5,31,0.0 +25689,35,18,11,0.0 +25689,6,25,22,0.0 +25689,30,25.89,19,0.0 +25689,64,33.25,23,0.0 +25689,5,21.35,34,0.0 +25689,32,32,4,0.0 +25689,67,14,22,0.0 +25689,11,21,36,0.0 +25689,14,23.25,23,0.0 +25689,60,34,11,0.0 +25689,57,19.5,46,0.0 +25689,16,17.45,16,0.0 +25689,70,15,28,0.0 +25689,51,53,25,0.0 +25689,76,18,48,0.0 +25689,65,21.05,1,0.0 +25689,58,13.25,14,0.0 +25689,3,10,27,0.0 +25689,44,19.45,47,0.0 +25689,28,45.6,27,0.0 +25689,71,21.5,20,0.0 +25689,53,32.8,50,0.0 +25689,74,10,35,0.0 +25689,66,17,43,0.0 +25689,42,14,46,0.0 +25689,63,43.9,19,0.0 +25689,40,18.4,8,0.0 +25689,39,18,50,0.0 +25689,72,34.8,17,0.0 +25689,49,20,14,0.0 +25689,73,15,9,0.0 +25689,46,12,44,0.0 +25689,8,40,36,0.0 +25689,17,39,20,0.0 +25689,59,55,33,0.0 +25689,20,81,3,0.0 +25689,54,7.45,33,0.0 +25689,41,9.65,45,0.0 +25689,52,7,31,0.0 +25689,50,16.25,47,0.0 +25689,75,7.75,23,0.0 +25689,26,31.23,39,0.0 +25689,37,26,20,0.0 +25689,19,9.2,19,0.0 +25689,23,9,11,0.0 +25689,2,19,40,0.0 +25689,48,12.75,8,0.0 +25689,21,10,23,0.0 +25689,4,22,10,0.0 +25689,29,123.79,30,0.0 +25689,33,2.5,34,0.0 +25689,62,49.3,14,0.0 +25689,9,97,11,0.0 +25689,7,30,31,0.0 +25689,25,14,4,0.0 +25689,12,38,27,0.0 +25689,38,263.5,32,0.0 +25689,31,12.5,31,0.0 +25689,61,28.5,43,0.0 +25689,56,38,30,0.0 +25689,34,14,42,0.0 +25689,45,9.5,44,0.0 +25689,1,18,26,0.0 +25689,24,4.5,43,0.0 +25689,68,12.5,13,0.0 +25689,22,21,32,0.0 +25690,39,18,29,0.0 +25690,46,12,3,0.0 +25690,21,10,34,0.0 +25690,5,21.35,41,0.0 +25690,43,46,3,0.0 +25690,68,12.5,17,0.0 +25690,77,13,7,0.0 +25690,6,25,34,0.0 +25690,10,31,42,0.0 +25691,13,6,46,0.0 +25691,40,18.4,38,0.0 +25691,39,18,43,0.0 +25691,50,16.25,21,0.0 +25691,11,21,20,0.0 +25691,6,25,14,0.0 +25691,76,18,16,0.0 +25691,1,18,47,0.0 +25691,22,21,1,0.0 +25691,47,9.5,12,0.0 +25691,61,28.5,1,0.0 +25691,26,31.23,27,0.0 +25691,49,20,27,0.0 +25691,77,13,21,0.0 +25691,31,12.5,47,0.0 +25691,71,21.5,6,0.0 +25691,3,10,17,0.0 +25691,58,13.25,12,0.0 +25691,74,10,39,0.0 +25692,70,15,29,0.0 +25692,73,15,1,0.0 +25692,9,97,6,0.0 +25692,72,34.8,3,0.0 +25692,32,32,34,0.0 +25692,62,49.3,43,0.0 +25692,18,62.5,13,0.0 +25692,34,14,44,0.0 +25692,25,14,47,0.0 +25692,29,123.79,21,0.0 +25692,61,28.5,32,0.0 +25692,63,43.9,21,0.0 +25692,77,13,32,0.0 +25692,68,12.5,42,0.0 +25693,28,45.6,6,0.0 +25693,25,14,23,0.0 +25693,30,25.89,18,0.0 +25693,77,13,23,0.0 +25693,68,12.5,44,0.0 +25693,53,32.8,9,0.0 +25693,55,24,5,0.0 +25693,46,12,29,0.0 +25693,11,21,50,0.0 +25693,17,39,6,0.0 +25693,4,22,9,0.0 +25694,34,14,3,0.0 +25694,75,7.75,43,0.0 +25694,38,263.5,47,0.0 +25694,2,19,37,0.0 +25694,54,7.45,21,0.0 +25694,26,31.23,7,0.0 +25694,50,16.25,44,0.0 +25694,71,21.5,26,0.0 +25694,46,12,7,0.0 +25694,70,15,14,0.0 +25694,41,9.65,5,0.0 +25694,16,17.45,15,0.0 +25694,42,14,38,0.0 +25694,32,32,33,0.0 +25694,63,43.9,47,0.0 +25694,36,19,20,0.0 +25694,43,46,44,0.0 +25694,9,97,13,0.0 +25694,64,33.25,20,0.0 +25694,53,32.8,24,0.0 +25694,30,25.89,45,0.0 +25694,21,10,15,0.0 +25694,74,10,41,0.0 +25694,31,12.5,37,0.0 +25694,17,39,29,0.0 +25694,48,12.75,5,0.0 +25694,61,28.5,28,0.0 +25694,14,23.25,6,0.0 +25694,3,10,26,0.0 +25694,24,4.5,36,0.0 +25694,37,26,35,0.0 +25694,27,43.9,27,0.0 +25694,8,40,37,0.0 +25694,66,17,29,0.0 +25694,22,21,26,0.0 +25694,49,20,14,0.0 +25694,57,19.5,10,0.0 +25694,6,25,43,0.0 +25694,73,15,16,0.0 +25694,47,9.5,12,0.0 +25694,29,123.79,2,0.0 +25694,19,9.2,26,0.0 +25694,33,2.5,32,0.0 +25694,7,30,10,0.0 +25694,10,31,15,0.0 +25694,18,62.5,33,0.0 +25694,59,55,22,0.0 +25694,23,9,44,0.0 +25694,68,12.5,48,0.0 +25694,11,21,40,0.0 +25694,76,18,8,0.0 +25694,72,34.8,42,0.0 +25694,69,36,28,0.0 +25694,40,18.4,26,0.0 +25694,1,18,42,0.0 +25694,60,34,20,0.0 +25694,55,24,42,0.0 +25694,4,22,44,0.0 +25694,65,21.05,40,0.0 +25694,58,13.25,4,0.0 +25694,15,15.5,6,0.0 +25694,45,9.5,50,0.0 +25694,12,38,44,0.0 +25694,25,14,35,0.0 +25694,35,18,50,0.0 +25694,44,19.45,23,0.0 +25694,77,13,21,0.0 +25694,20,81,2,0.0 +25694,39,18,26,0.0 +25694,52,7,29,0.0 +25695,55,24,32,0.0 +25695,74,10,38,0.0 +25695,63,43.9,45,0.0 +25695,67,14,25,0.0 +25695,76,18,1,0.0 +25695,1,18,46,0.0 +25695,56,38,20,0.0 +25695,9,97,22,0.0 +25695,77,13,5,0.0 +25695,70,15,27,0.0 +25695,41,9.65,37,0.0 +25695,5,21.35,3,0.0 +25695,12,38,28,0.0 +25695,73,15,27,0.0 +25695,34,14,39,0.0 +25695,13,6,14,0.0 +25695,36,19,20,0.0 +25695,24,4.5,6,0.0 +25695,18,62.5,32,0.0 +25695,29,123.79,11,0.0 +25695,7,30,41,0.0 +25695,14,23.25,4,0.0 +25695,8,40,18,0.0 +25695,16,17.45,38,0.0 +25695,65,21.05,23,0.0 +25695,31,12.5,12,0.0 +25695,64,33.25,47,0.0 +25695,72,34.8,18,0.0 +25695,26,31.23,19,0.0 +25695,46,12,17,0.0 +25695,30,25.89,14,0.0 +25695,19,9.2,37,0.0 +25695,17,39,5,0.0 +25695,53,32.8,40,0.0 +25695,11,21,24,0.0 +25695,68,12.5,17,0.0 +25695,42,14,34,0.0 +25695,45,9.5,20,0.0 +25695,48,12.75,27,0.0 +25695,37,26,22,0.0 +25695,33,2.5,27,0.0 +25695,50,16.25,15,0.0 +25695,75,7.75,44,0.0 +25695,22,21,2,0.0 +25695,58,13.25,46,0.0 +25695,20,81,21,0.0 +25695,27,43.9,34,0.0 +25695,10,31,42,0.0 +25695,44,19.45,44,0.0 +25695,40,18.4,7,0.0 +25695,35,18,12,0.0 +25695,57,19.5,14,0.0 +25695,51,53,7,0.0 +25695,62,49.3,18,0.0 +25695,49,20,39,0.0 +25695,28,45.6,1,0.0 +25695,15,15.5,33,0.0 +25695,69,36,37,0.0 +25695,2,19,13,0.0 +25695,47,9.5,40,0.0 +25696,68,12.5,33,0.0 +25696,24,4.5,38,0.0 +25696,13,6,13,0.0 +25696,67,14,20,0.0 +25696,47,9.5,48,0.0 +25696,32,32,12,0.0 +25696,59,55,36,0.0 +25696,72,34.8,43,0.0 +25696,35,18,36,0.0 +25696,51,53,30,0.0 +25696,44,19.45,35,0.0 +25696,30,25.89,39,0.0 +25696,36,19,8,0.0 +25696,33,2.5,4,0.0 +25696,3,10,48,0.0 +25696,73,15,6,0.0 +25696,26,31.23,10,0.0 +25696,63,43.9,23,0.0 +25696,75,7.75,48,0.0 +25696,49,20,37,0.0 +25697,66,17,36,0.0 +25697,1,18,13,0.0 +25697,3,10,28,0.0 +25697,69,36,40,0.0 +25697,56,38,48,0.0 +25697,76,18,28,0.0 +25697,32,32,28,0.0 +25697,45,9.5,10,0.0 +25697,39,18,43,0.0 +25697,15,15.5,26,0.0 +25697,67,14,29,0.0 +25697,73,15,38,0.0 +25697,35,18,37,0.0 +25697,51,53,36,0.0 +25697,36,19,36,0.0 +25697,2,19,37,0.0 +25697,22,21,24,0.0 +25697,72,34.8,18,0.0 +25697,43,46,8,0.0 +25697,29,123.79,33,0.0 +25697,46,12,32,0.0 +25697,7,30,11,0.0 +25697,68,12.5,10,0.0 +25697,42,14,47,0.0 +25697,62,49.3,9,0.0 +25697,26,31.23,36,0.0 +25697,21,10,32,0.0 +25697,16,17.45,30,0.0 +25697,48,12.75,13,0.0 +25697,24,4.5,9,0.0 +25697,40,18.4,21,0.0 +25697,64,33.25,30,0.0 +25697,54,7.45,46,0.0 +25697,23,9,16,0.0 +25697,63,43.9,11,0.0 +25697,17,39,25,0.0 +25697,10,31,32,0.0 +25697,8,40,21,0.0 +25697,4,22,14,0.0 +25697,52,7,12,0.0 +25697,50,16.25,5,0.0 +25697,38,263.5,41,0.0 +25697,44,19.45,4,0.0 +25697,28,45.6,16,0.0 +25697,13,6,22,0.0 +25697,5,21.35,19,0.0 +25697,55,24,35,0.0 +25697,33,2.5,29,0.0 +25697,6,25,50,0.0 +25697,49,20,9,0.0 +25697,12,38,20,0.0 +25697,65,21.05,23,0.0 +25697,70,15,8,0.0 +25697,75,7.75,18,0.0 +25698,76,18,10,0.0 +25698,61,28.5,17,0.0 +25698,18,62.5,27,0.0 +25698,38,263.5,7,0.0 +25698,3,10,39,0.0 +25698,44,19.45,16,0.0 +25698,25,14,48,0.0 +25698,34,14,49,0.0 +25698,29,123.79,43,0.0 +25698,30,25.89,4,0.0 +25698,4,22,40,0.0 +25698,47,9.5,8,0.0 +25698,31,12.5,24,0.0 +25698,65,21.05,13,0.0 +25698,43,46,3,0.0 +25698,53,32.8,47,0.0 +25698,56,38,40,0.0 +25698,36,19,12,0.0 +25698,63,43.9,15,0.0 +25698,73,15,34,0.0 +25698,60,34,50,0.0 +25698,46,12,47,0.0 +25698,66,17,44,0.0 +25698,7,30,24,0.0 +25698,32,32,39,0.0 +25698,11,21,28,0.0 +25698,5,21.35,47,0.0 +25698,40,18.4,9,0.0 +25698,55,24,30,0.0 +25698,54,7.45,48,0.0 +25698,2,19,3,0.0 +25698,22,21,38,0.0 +25698,71,21.5,27,0.0 +25698,58,13.25,43,0.0 +25698,75,7.75,4,0.0 +25698,23,9,34,0.0 +25698,67,14,1,0.0 +25698,17,39,31,0.0 +25698,14,23.25,7,0.0 +25698,48,12.75,23,0.0 +25698,50,16.25,17,0.0 +25698,6,25,31,0.0 +25698,20,81,47,0.0 +25698,28,45.6,4,0.0 +25698,15,15.5,35,0.0 +25698,8,40,2,0.0 +25698,10,31,18,0.0 +25698,69,36,42,0.0 +25698,59,55,5,0.0 +25698,68,12.5,49,0.0 +25698,19,9.2,33,0.0 +25698,12,38,10,0.0 +25698,39,18,33,0.0 +25698,24,4.5,6,0.0 +25698,1,18,6,0.0 +25698,62,49.3,30,0.0 +25698,35,18,25,0.0 +25698,49,20,48,0.0 +25698,51,53,21,0.0 +25698,21,10,17,0.0 +25699,22,21,41,0.0 +25699,3,10,49,0.0 +25699,34,14,16,0.0 +25699,51,53,43,0.0 +25699,16,17.45,37,0.0 +25700,40,18.4,43,0.0 +25700,18,62.5,32,0.0 +25700,61,28.5,40,0.0 +25700,47,9.5,5,0.0 +25700,25,14,13,0.0 +25700,36,19,41,0.0 +25700,73,15,8,0.0 +25701,11,21,6,0.0 +25701,15,15.5,9,0.0 +25701,1,18,25,0.0 +25701,70,15,8,0.0 +25701,22,21,3,0.0 +25701,59,55,17,0.0 +25701,34,14,45,0.0 +25701,10,31,6,0.0 +25702,67,14,1,0.0 +25702,25,14,50,0.0 +25702,57,19.5,18,0.0 +25702,52,7,16,0.0 +25702,60,34,36,0.0 +25702,29,123.79,21,0.0 +25702,38,263.5,14,0.0 +25702,48,12.75,48,0.0 +25702,1,18,27,0.0 +25702,11,21,42,0.0 +25702,18,62.5,10,0.0 +25702,71,21.5,47,0.0 +25702,65,21.05,46,0.0 +25702,34,14,3,0.0 +25702,63,43.9,36,0.0 +25702,43,46,43,0.0 +25702,58,13.25,20,0.0 +25702,49,20,34,0.0 +25702,28,45.6,22,0.0 +25702,22,21,9,0.0 +25702,56,38,22,0.0 +25702,12,38,2,0.0 +25702,59,55,28,0.0 +25702,75,7.75,30,0.0 +25702,44,19.45,10,0.0 +25702,61,28.5,37,0.0 +25702,20,81,45,0.0 +25702,19,9.2,14,0.0 +25702,76,18,20,0.0 +25702,24,4.5,37,0.0 +25702,45,9.5,24,0.0 +25702,68,12.5,11,0.0 +25702,36,19,14,0.0 +25702,15,15.5,48,0.0 +25702,77,13,26,0.0 +25702,16,17.45,15,0.0 +25702,73,15,37,0.0 +25702,13,6,12,0.0 +25702,31,12.5,21,0.0 +25702,33,2.5,11,0.0 +25702,47,9.5,44,0.0 +25702,40,18.4,29,0.0 +25702,39,18,46,0.0 +25702,66,17,10,0.0 +25702,9,97,32,0.0 +25702,23,9,42,0.0 +25702,70,15,29,0.0 +25702,32,32,40,0.0 +25702,2,19,33,0.0 +25702,42,14,30,0.0 +25702,64,33.25,26,0.0 +25702,7,30,27,0.0 +25702,14,23.25,2,0.0 +25702,10,31,42,0.0 +25703,72,34.8,46,0.0 +25703,14,23.25,28,0.0 +25703,32,32,48,0.0 +25703,70,15,18,0.0 +25704,7,30,44,0.0 +25704,31,12.5,18,0.0 +25705,34,14,17,0.0 +25705,16,17.45,2,0.0 +25705,29,123.79,41,0.0 +25705,76,18,45,0.0 +25705,67,14,46,0.0 +25705,38,263.5,49,0.0 +25705,12,38,29,0.0 +25705,28,45.6,20,0.0 +25705,75,7.75,23,0.0 +25705,5,21.35,46,0.0 +25705,8,40,40,0.0 +25705,32,32,45,0.0 +25705,17,39,47,0.0 +25705,58,13.25,29,0.0 +25706,35,18,20,0.0 +25706,48,12.75,49,0.0 +25706,65,21.05,31,0.0 +25706,41,9.65,3,0.0 +25706,76,18,32,0.0 +25706,3,10,29,0.0 +25706,47,9.5,28,0.0 +25706,4,22,7,0.0 +25706,56,38,36,0.0 +25706,59,55,19,0.0 +25706,26,31.23,25,0.0 +25706,36,19,25,0.0 +25706,69,36,10,0.0 +25706,18,62.5,15,0.0 +25706,49,20,42,0.0 +25706,10,31,40,0.0 +25706,71,21.5,43,0.0 +25706,77,13,43,0.0 +25706,6,25,14,0.0 +25706,52,7,27,0.0 +25706,8,40,33,0.0 +25706,20,81,10,0.0 +25706,28,45.6,1,0.0 +25706,42,14,30,0.0 +25706,13,6,32,0.0 +25706,60,34,11,0.0 +25706,37,26,10,0.0 +25706,39,18,16,0.0 +25706,31,12.5,25,0.0 +25706,55,24,46,0.0 +25706,72,34.8,26,0.0 +25706,22,21,30,0.0 +25706,63,43.9,46,0.0 +25706,2,19,32,0.0 +25706,1,18,24,0.0 +25706,74,10,21,0.0 +25706,62,49.3,43,0.0 +25706,5,21.35,22,0.0 +25706,33,2.5,44,0.0 +25706,73,15,5,0.0 +25706,61,28.5,26,0.0 +25706,25,14,21,0.0 +25706,24,4.5,35,0.0 +25706,12,38,46,0.0 +25706,16,17.45,16,0.0 +25706,50,16.25,35,0.0 +25706,23,9,49,0.0 +25706,30,25.89,5,0.0 +25706,75,7.75,35,0.0 +25706,46,12,46,0.0 +25706,34,14,3,0.0 +25706,67,14,29,0.0 +25706,53,32.8,49,0.0 +25706,38,263.5,32,0.0 +25706,11,21,36,0.0 +25706,19,9.2,32,0.0 +25706,57,19.5,17,0.0 +25706,58,13.25,49,0.0 +25706,45,9.5,22,0.0 +25706,51,53,9,0.0 +25706,64,33.25,43,0.0 +25706,70,15,18,0.0 +25706,54,7.45,28,0.0 +25706,43,46,27,0.0 +25706,15,15.5,50,0.0 +25706,40,18.4,2,0.0 +25706,9,97,33,0.0 +25706,14,23.25,26,0.0 +25706,66,17,26,0.0 +25706,17,39,36,0.0 +25706,27,43.9,40,0.0 +25706,44,19.45,25,0.0 +25706,29,123.79,17,0.0 +25706,21,10,16,0.0 +25706,7,30,34,0.0 +25706,68,12.5,4,0.0 +25706,32,32,9,0.0 +25707,23,9,49,0.0 +25707,72,34.8,42,0.0 +25707,61,28.5,25,0.0 +25707,13,6,2,0.0 +25707,62,49.3,19,0.0 +25707,60,34,31,0.0 +25707,6,25,17,0.0 +25707,55,24,14,0.0 +25707,4,22,43,0.0 +25707,15,15.5,29,0.0 +25707,57,19.5,48,0.0 +25707,14,23.25,39,0.0 +25707,41,9.65,32,0.0 +25707,51,53,30,0.0 +25707,39,18,7,0.0 +25707,70,15,15,0.0 +25708,2,19,27,0.0 +25708,43,46,23,0.0 +25708,63,43.9,12,0.0 +25708,62,49.3,21,0.0 +25708,9,97,9,0.0 +25708,1,18,10,0.0 +25708,11,21,36,0.0 +25708,66,17,49,0.0 +25708,61,28.5,20,0.0 +25708,6,25,33,0.0 +25708,57,19.5,41,0.0 +25708,13,6,1,0.0 +25708,77,13,33,0.0 +25708,10,31,38,0.0 +25708,32,32,31,0.0 +25708,70,15,20,0.0 +25708,33,2.5,22,0.0 +25708,52,7,36,0.0 +25708,69,36,31,0.0 +25708,23,9,3,0.0 +25708,7,30,8,0.0 +25708,30,25.89,35,0.0 +25708,55,24,14,0.0 +25708,45,9.5,37,0.0 +25708,19,9.2,4,0.0 +25708,20,81,40,0.0 +25708,48,12.75,31,0.0 +25708,49,20,37,0.0 +25708,67,14,43,0.0 +25708,15,15.5,2,0.0 +25708,5,21.35,23,0.0 +25708,27,43.9,48,0.0 +25708,21,10,26,0.0 +25708,65,21.05,30,0.0 +25708,72,34.8,21,0.0 +25708,25,14,19,0.0 +25708,56,38,39,0.0 +25708,38,263.5,30,0.0 +25708,36,19,33,0.0 +25708,50,16.25,9,0.0 +25708,60,34,50,0.0 +25708,14,23.25,23,0.0 +25708,75,7.75,29,0.0 +25708,40,18.4,46,0.0 +25708,53,32.8,23,0.0 +25708,59,55,13,0.0 +25708,44,19.45,4,0.0 +25708,4,22,38,0.0 +25708,16,17.45,48,0.0 +25708,54,7.45,45,0.0 +25708,29,123.79,39,0.0 +25708,47,9.5,50,0.0 +25708,73,15,21,0.0 +25708,37,26,46,0.0 +25708,74,10,37,0.0 +25708,17,39,6,0.0 +25708,26,31.23,43,0.0 +25708,31,12.5,38,0.0 +25708,35,18,13,0.0 +25708,76,18,7,0.0 +25708,12,38,27,0.0 +25708,64,33.25,49,0.0 +25708,8,40,40,0.0 +25709,33,2.5,5,0.0 +25709,15,15.5,29,0.0 +25709,10,31,50,0.0 +25710,66,17,42,0.0 +25710,30,25.89,34,0.0 +25710,28,45.6,45,0.0 +25710,5,21.35,25,0.0 +25710,65,21.05,27,0.0 +25710,22,21,50,0.0 +25710,37,26,19,0.0 +25710,26,31.23,14,0.0 +25710,54,7.45,6,0.0 +25710,57,19.5,38,0.0 +25710,69,36,18,0.0 +25710,33,2.5,20,0.0 +25710,18,62.5,25,0.0 +25710,16,17.45,40,0.0 +25710,68,12.5,45,0.0 +25710,15,15.5,45,0.0 +25710,59,55,15,0.0 +25710,23,9,1,0.0 +25710,20,81,38,0.0 +25710,7,30,8,0.0 +25710,62,49.3,24,0.0 +25710,12,38,37,0.0 +25710,10,31,25,0.0 +25710,70,15,44,0.0 +25710,17,39,44,0.0 +25710,53,32.8,35,0.0 +25710,49,20,13,0.0 +25710,73,15,8,0.0 +25710,13,6,34,0.0 +25710,4,22,4,0.0 +25710,2,19,32,0.0 +25710,63,43.9,39,0.0 +25710,52,7,38,0.0 +25710,60,34,33,0.0 +25711,10,31,19,0.0 +25711,31,12.5,45,0.0 +25711,35,18,49,0.0 +25711,19,9.2,18,0.0 +25712,5,21.35,19,0.0 +25712,13,6,3,0.0 +25712,9,97,50,0.0 +25712,64,33.25,29,0.0 +25712,70,15,18,0.0 +25712,63,43.9,36,0.0 +25712,1,18,30,0.0 +25712,57,19.5,20,0.0 +25712,48,12.75,31,0.0 +25712,53,32.8,10,0.0 +25712,66,17,36,0.0 +25712,55,24,35,0.0 +25712,27,43.9,36,0.0 +25712,30,25.89,27,0.0 +25712,75,7.75,37,0.0 +25712,17,39,17,0.0 +25712,28,45.6,34,0.0 +25712,52,7,13,0.0 +25712,43,46,3,0.0 +25712,39,18,38,0.0 +25712,71,21.5,44,0.0 +25712,14,23.25,42,0.0 +25712,42,14,33,0.0 +25712,36,19,1,0.0 +25712,61,28.5,19,0.0 +25712,4,22,9,0.0 +25712,65,21.05,46,0.0 +25712,46,12,11,0.0 +25712,7,30,4,0.0 +25712,56,38,47,0.0 +25712,6,25,22,0.0 +25712,11,21,30,0.0 +25712,26,31.23,16,0.0 +25712,51,53,4,0.0 +25712,2,19,26,0.0 +25712,74,10,32,0.0 +25712,16,17.45,43,0.0 +25712,62,49.3,46,0.0 +25713,31,12.5,42,0.0 +25713,42,14,33,0.0 +25713,58,13.25,15,0.0 +25713,4,22,39,0.0 +25713,28,45.6,15,0.0 +25713,9,97,25,0.0 +25713,47,9.5,41,0.0 +25713,18,62.5,30,0.0 +25713,52,7,19,0.0 +25713,6,25,16,0.0 +25713,73,15,47,0.0 +25713,15,15.5,48,0.0 +25713,20,81,9,0.0 +25713,40,18.4,27,0.0 +25713,57,19.5,9,0.0 +25713,7,30,26,0.0 +25713,16,17.45,11,0.0 +25713,29,123.79,26,0.0 +25713,66,17,2,0.0 +25713,69,36,11,0.0 +25713,55,24,20,0.0 +25713,60,34,42,0.0 +25713,35,18,41,0.0 +25713,50,16.25,30,0.0 +25713,77,13,23,0.0 +25713,54,7.45,29,0.0 +25713,48,12.75,31,0.0 +25713,56,38,37,0.0 +25713,43,46,17,0.0 +25713,10,31,11,0.0 +25713,49,20,1,0.0 +25713,32,32,41,0.0 +25713,53,32.8,40,0.0 +25713,39,18,26,0.0 +25713,67,14,34,0.0 +25713,37,26,38,0.0 +25713,34,14,31,0.0 +25713,27,43.9,20,0.0 +25713,46,12,42,0.0 +25713,24,4.5,47,0.0 +25713,30,25.89,43,0.0 +25713,17,39,34,0.0 +25713,12,38,34,0.0 +25713,64,33.25,12,0.0 +25713,25,14,13,0.0 +25713,70,15,23,0.0 +25713,23,9,41,0.0 +25713,2,19,31,0.0 +25713,14,23.25,32,0.0 +25713,71,21.5,35,0.0 +25713,72,34.8,8,0.0 +25713,76,18,29,0.0 +25713,59,55,40,0.0 +25713,11,21,19,0.0 +25713,74,10,37,0.0 +25713,38,263.5,16,0.0 +25713,44,19.45,36,0.0 +25713,19,9.2,44,0.0 +25713,13,6,38,0.0 +25713,21,10,39,0.0 +25713,41,9.65,28,0.0 +25713,68,12.5,4,0.0 +25713,51,53,15,0.0 +25714,67,14,29,0.0 +25714,41,9.65,25,0.0 +25714,62,49.3,37,0.0 +25714,71,21.5,21,0.0 +25714,28,45.6,12,0.0 +25714,24,4.5,34,0.0 +25714,43,46,37,0.0 +25714,25,14,29,0.0 +25714,68,12.5,9,0.0 +25714,16,17.45,43,0.0 +25714,39,18,25,0.0 +25714,12,38,2,0.0 +25714,75,7.75,47,0.0 +25714,70,15,14,0.0 +25714,52,7,15,0.0 +25714,38,263.5,14,0.0 +25714,31,12.5,49,0.0 +25714,3,10,29,0.0 +25714,10,31,25,0.0 +25714,8,40,18,0.0 +25714,32,32,34,0.0 +25714,22,21,42,0.0 +25714,69,36,2,0.0 +25714,23,9,37,0.0 +25714,60,34,3,0.0 +25714,72,34.8,12,0.0 +25714,34,14,23,0.0 +25714,77,13,37,0.0 +25714,26,31.23,22,0.0 +25714,30,25.89,37,0.0 +25714,35,18,48,0.0 +25714,29,123.79,6,0.0 +25714,65,21.05,20,0.0 +25714,6,25,45,0.0 +25714,44,19.45,30,0.0 +25714,19,9.2,24,0.0 +25714,48,12.75,20,0.0 +25714,4,22,30,0.0 +25714,36,19,6,0.0 +25714,50,16.25,35,0.0 +25714,59,55,2,0.0 +25714,55,24,5,0.0 +25714,64,33.25,35,0.0 +25714,47,9.5,43,0.0 +25714,53,32.8,29,0.0 +25714,40,18.4,45,0.0 +25714,73,15,22,0.0 +25714,49,20,1,0.0 +25714,61,28.5,34,0.0 +25714,7,30,8,0.0 +25714,9,97,41,0.0 +25714,46,12,27,0.0 +25714,54,7.45,7,0.0 +25714,45,9.5,36,0.0 +25714,2,19,39,0.0 +25714,37,26,47,0.0 +25714,63,43.9,49,0.0 +25714,20,81,28,0.0 +25715,24,4.5,45,0.0 +25716,17,39,42,0.0 +25716,62,49.3,14,0.0 +25716,47,9.5,18,0.0 +25716,33,2.5,3,0.0 +25716,5,21.35,6,0.0 +25716,19,9.2,40,0.0 +25716,77,13,8,0.0 +25716,37,26,31,0.0 +25716,31,12.5,44,0.0 +25716,76,18,49,0.0 +25716,50,16.25,26,0.0 +25716,64,33.25,19,0.0 +25716,68,12.5,2,0.0 +25716,28,45.6,50,0.0 +25716,60,34,5,0.0 +25716,1,18,8,0.0 +25716,72,34.8,23,0.0 +25716,15,15.5,37,0.0 +25716,11,21,10,0.0 +25716,26,31.23,42,0.0 +25716,8,40,5,0.0 +25716,39,18,12,0.0 +25716,24,4.5,48,0.0 +25717,38,263.5,17,0.0 +25717,71,21.5,31,0.0 +25717,22,21,14,0.0 +25717,51,53,28,0.0 +25717,4,22,49,0.0 +25717,40,18.4,38,0.0 +25717,58,13.25,14,0.0 +25717,36,19,10,0.0 +25717,11,21,1,0.0 +25717,18,62.5,46,0.0 +25717,17,39,26,0.0 +25717,67,14,3,0.0 +25717,56,38,18,0.0 +25717,23,9,19,0.0 +25717,69,36,41,0.0 +25717,5,21.35,28,0.0 +25717,62,49.3,25,0.0 +25717,9,97,43,0.0 +25717,19,9.2,8,0.0 +25717,30,25.89,28,0.0 +25717,21,10,50,0.0 +25717,48,12.75,19,0.0 +25717,39,18,24,0.0 +25717,55,24,22,0.0 +25717,35,18,35,0.0 +25717,2,19,47,0.0 +25717,45,9.5,39,0.0 +25717,42,14,4,0.0 +25717,25,14,2,0.0 +25717,24,4.5,38,0.0 +25717,53,32.8,9,0.0 +25717,59,55,41,0.0 +25717,47,9.5,24,0.0 +25717,43,46,23,0.0 +25717,8,40,39,0.0 +25718,66,17,1,0.0 +25718,16,17.45,3,0.0 +25718,28,45.6,25,0.0 +25718,73,15,13,0.0 +25718,3,10,23,0.0 +25718,59,55,19,0.0 +25718,8,40,14,0.0 +25718,27,43.9,15,0.0 +25718,72,34.8,42,0.0 +25718,64,33.25,41,0.0 +25718,17,39,5,0.0 +25718,23,9,48,0.0 +25718,40,18.4,46,0.0 +25718,69,36,30,0.0 +25718,76,18,49,0.0 +25718,63,43.9,16,0.0 +25718,1,18,16,0.0 +25718,77,13,39,0.0 +25718,60,34,11,0.0 +25718,46,12,15,0.0 +25718,61,28.5,30,0.0 +25718,70,15,37,0.0 +25718,65,21.05,32,0.0 +25718,33,2.5,29,0.0 +25718,48,12.75,37,0.0 +25718,6,25,6,0.0 +25718,21,10,37,0.0 +25718,7,30,25,0.0 +25718,42,14,32,0.0 +25718,18,62.5,14,0.0 +25718,45,9.5,48,0.0 +25718,52,7,20,0.0 +25718,68,12.5,47,0.0 +25718,19,9.2,28,0.0 +25718,53,32.8,1,0.0 +25718,2,19,49,0.0 +25718,37,26,16,0.0 +25718,57,19.5,44,0.0 +25718,34,14,41,0.0 +25718,32,32,21,0.0 +25718,25,14,10,0.0 +25718,15,15.5,7,0.0 +25718,41,9.65,13,0.0 +25718,35,18,15,0.0 +25718,58,13.25,21,0.0 +25718,26,31.23,44,0.0 +25718,13,6,29,0.0 +25718,20,81,47,0.0 +25718,31,12.5,20,0.0 +25718,67,14,47,0.0 +25718,56,38,9,0.0 +25718,55,24,31,0.0 +25718,49,20,31,0.0 +25718,29,123.79,17,0.0 +25718,74,10,12,0.0 +25718,71,21.5,6,0.0 +25718,11,21,24,0.0 +25718,50,16.25,27,0.0 +25718,9,97,31,0.0 +25718,30,25.89,28,0.0 +25718,44,19.45,30,0.0 +25718,62,49.3,48,0.0 +25718,5,21.35,47,0.0 +25718,43,46,30,0.0 +25718,4,22,25,0.0 +25718,22,21,25,0.0 +25718,38,263.5,39,0.0 +25718,39,18,28,0.0 +25718,14,23.25,15,0.0 +25718,54,7.45,36,0.0 +25718,51,53,18,0.0 +25718,36,19,18,0.0 +25718,10,31,31,0.0 +25718,75,7.75,1,0.0 +25718,47,9.5,24,0.0 +25718,24,4.5,45,0.0 +25719,60,34,20,0.0 +25719,68,12.5,13,0.0 +25719,27,43.9,31,0.0 +25719,46,12,8,0.0 +25719,4,22,41,0.0 +25719,41,9.65,3,0.0 +25719,73,15,6,0.0 +25719,7,30,26,0.0 +25719,32,32,33,0.0 +25719,24,4.5,9,0.0 +25719,21,10,48,0.0 +25719,77,13,43,0.0 +25719,74,10,50,0.0 +25719,54,7.45,5,0.0 +25719,58,13.25,43,0.0 +25719,42,14,3,0.0 +25719,26,31.23,11,0.0 +25719,10,31,37,0.0 +25719,48,12.75,35,0.0 +25719,39,18,29,0.0 +25719,51,53,14,0.0 +25719,59,55,38,0.0 +25719,33,2.5,39,0.0 +25719,56,38,8,0.0 +25719,14,23.25,27,0.0 +25719,49,20,38,0.0 +25719,17,39,36,0.0 +25719,18,62.5,23,0.0 +25719,63,43.9,43,0.0 +25719,71,21.5,41,0.0 +25719,15,15.5,9,0.0 +25719,57,19.5,29,0.0 +25719,13,6,40,0.0 +25719,34,14,42,0.0 +25719,2,19,23,0.0 +25719,30,25.89,38,0.0 +25719,64,33.25,31,0.0 +25719,12,38,9,0.0 +25719,22,21,49,0.0 +25719,72,34.8,11,0.0 +25719,29,123.79,17,0.0 +25719,1,18,40,0.0 +25719,43,46,15,0.0 +25719,16,17.45,37,0.0 +25719,61,28.5,35,0.0 +25719,52,7,9,0.0 +25719,66,17,45,0.0 +25719,11,21,45,0.0 +25719,38,263.5,27,0.0 +25719,70,15,43,0.0 +25719,47,9.5,35,0.0 +25719,53,32.8,39,0.0 +25719,40,18.4,43,0.0 +25719,35,18,33,0.0 +25719,28,45.6,45,0.0 +25719,69,36,3,0.0 +25720,24,4.5,35,0.0 +25720,75,7.75,7,0.0 +25720,58,13.25,20,0.0 +25720,4,22,6,0.0 +25720,37,26,46,0.0 +25720,49,20,1,0.0 +25720,73,15,48,0.0 +25720,6,25,10,0.0 +25720,18,62.5,32,0.0 +25720,62,49.3,1,0.0 +25720,31,12.5,14,0.0 +25720,3,10,45,0.0 +25720,74,10,9,0.0 +25720,43,46,9,0.0 +25720,40,18.4,46,0.0 +25720,71,21.5,39,0.0 +25720,60,34,6,0.0 +25720,69,36,24,0.0 +25720,2,19,46,0.0 +25720,30,25.89,31,0.0 +25720,63,43.9,25,0.0 +25720,76,18,26,0.0 +25720,33,2.5,43,0.0 +25720,20,81,41,0.0 +25720,34,14,42,0.0 +25720,14,23.25,39,0.0 +25720,17,39,44,0.0 +25720,16,17.45,39,0.0 +25720,42,14,39,0.0 +25720,9,97,33,0.0 +25720,59,55,7,0.0 +25720,21,10,5,0.0 +25720,25,14,26,0.0 +25720,27,43.9,39,0.0 +25720,66,17,38,0.0 +25720,26,31.23,41,0.0 +25720,38,263.5,31,0.0 +25720,77,13,5,0.0 +25720,10,31,40,0.0 +25720,54,7.45,50,0.0 +25720,51,53,26,0.0 +25720,50,16.25,8,0.0 +25720,5,21.35,47,0.0 +25720,15,15.5,31,0.0 +25720,45,9.5,12,0.0 +25720,8,40,35,0.0 +25720,36,19,1,0.0 +25720,19,9.2,8,0.0 +25720,48,12.75,47,0.0 +25720,64,33.25,37,0.0 +25720,68,12.5,12,0.0 +25720,29,123.79,50,0.0 +25720,35,18,29,0.0 +25720,56,38,14,0.0 +25720,13,6,37,0.0 +25720,32,32,26,0.0 +25720,65,21.05,23,0.0 +25720,46,12,26,0.0 +25720,41,9.65,4,0.0 +25720,11,21,45,0.0 +25720,61,28.5,25,0.0 +25720,23,9,38,0.0 +25720,70,15,39,0.0 +25720,55,24,34,0.0 +25720,72,34.8,42,0.0 +25720,28,45.6,18,0.0 +25720,7,30,25,0.0 +25720,53,32.8,1,0.0 +25720,39,18,15,0.0 +25720,67,14,25,0.0 +25720,22,21,21,0.0 +25720,12,38,40,0.0 +25720,52,7,11,0.0 +25721,69,36,46,0.0 +25721,73,15,6,0.0 +25721,9,97,18,0.0 +25721,66,17,27,0.0 +25721,19,9.2,41,0.0 +25721,10,31,28,0.0 +25721,62,49.3,38,0.0 +25722,61,28.5,6,0.0 +25722,7,30,8,0.0 +25722,38,263.5,32,0.0 +25722,75,7.75,37,0.0 +25722,62,49.3,11,0.0 +25722,68,12.5,42,0.0 +25722,66,17,3,0.0 +25722,24,4.5,12,0.0 +25722,56,38,40,0.0 +25722,46,12,33,0.0 +25722,30,25.89,1,0.0 +25722,15,15.5,49,0.0 +25722,50,16.25,22,0.0 +25722,37,26,25,0.0 +25722,18,62.5,7,0.0 +25722,23,9,21,0.0 +25722,36,19,29,0.0 +25722,64,33.25,21,0.0 +25722,58,13.25,9,0.0 +25722,42,14,8,0.0 +25722,60,34,17,0.0 +25722,9,97,12,0.0 +25722,35,18,5,0.0 +25722,26,31.23,27,0.0 +25722,67,14,46,0.0 +25722,11,21,16,0.0 +25722,40,18.4,27,0.0 +25722,71,21.5,11,0.0 +25722,57,19.5,21,0.0 +25722,49,20,2,0.0 +25722,45,9.5,28,0.0 +25722,4,22,47,0.0 +25722,72,34.8,30,0.0 +25722,2,19,14,0.0 +25722,47,9.5,35,0.0 +25722,28,45.6,39,0.0 +25722,21,10,22,0.0 +25722,29,123.79,11,0.0 +25722,27,43.9,9,0.0 +25722,22,21,3,0.0 +25722,52,7,48,0.0 +25722,39,18,31,0.0 +25722,8,40,15,0.0 +25722,69,36,36,0.0 +25722,51,53,25,0.0 +25722,6,25,32,0.0 +25722,59,55,34,0.0 +25722,31,12.5,4,0.0 +25722,43,46,45,0.0 +25722,54,7.45,46,0.0 +25722,25,14,10,0.0 +25722,33,2.5,1,0.0 +25722,74,10,14,0.0 +25722,34,14,12,0.0 +25722,14,23.25,49,0.0 +25722,13,6,34,0.0 +25722,3,10,24,0.0 +25722,55,24,36,0.0 +25722,1,18,14,0.0 +25722,20,81,43,0.0 +25722,76,18,8,0.0 +25722,10,31,22,0.0 +25722,65,21.05,23,0.0 +25722,16,17.45,13,0.0 +25722,77,13,33,0.0 +25722,19,9.2,12,0.0 +25722,17,39,8,0.0 +25722,53,32.8,31,0.0 +25723,65,21.05,22,0.0 +25723,49,20,17,0.0 +25723,48,12.75,7,0.0 +25723,19,9.2,34,0.0 +25723,66,17,29,0.0 +25723,16,17.45,46,0.0 +25723,41,9.65,17,0.0 +25723,6,25,15,0.0 +25723,27,43.9,11,0.0 +25723,7,30,23,0.0 +25723,55,24,28,0.0 +25723,26,31.23,19,0.0 +25723,11,21,47,0.0 +25723,43,46,34,0.0 +25723,9,97,47,0.0 +25723,68,12.5,32,0.0 +25723,34,14,11,0.0 +25723,40,18.4,32,0.0 +25723,4,22,45,0.0 +25723,32,32,50,0.0 +25724,24,4.5,41,0.0 +25724,47,9.5,14,0.0 +25724,72,34.8,19,0.0 +25724,11,21,37,0.0 +25725,45,9.5,47,0.0 +25725,69,36,47,0.0 +25725,10,31,45,0.0 +25725,77,13,4,0.0 +25725,39,18,9,0.0 +25725,67,14,11,0.0 +25725,25,14,2,0.0 +25725,31,12.5,12,0.0 +25725,20,81,24,0.0 +25725,54,7.45,36,0.0 +25725,43,46,31,0.0 +25725,46,12,26,0.0 +25725,7,30,44,0.0 +25726,27,43.9,31,0.0 +25726,22,21,10,0.0 +25726,23,9,34,0.0 +25726,13,6,42,0.0 +25726,21,10,31,0.0 +25726,28,45.6,18,0.0 +25726,2,19,24,0.0 +25726,68,12.5,5,0.0 +25726,71,21.5,19,0.0 +25726,37,26,44,0.0 +25726,44,19.45,43,0.0 +25726,36,19,7,0.0 +25726,17,39,23,0.0 +25726,20,81,5,0.0 +25726,25,14,43,0.0 +25726,64,33.25,25,0.0 +25726,61,28.5,5,0.0 +25726,24,4.5,44,0.0 +25726,47,9.5,2,0.0 +25726,59,55,37,0.0 +25726,65,21.05,17,0.0 +25726,70,15,38,0.0 +25726,48,12.75,6,0.0 +25726,39,18,21,0.0 +25726,34,14,20,0.0 +25726,1,18,33,0.0 +25726,58,13.25,27,0.0 +25726,3,10,5,0.0 +25726,35,18,3,0.0 +25726,60,34,21,0.0 +25726,74,10,26,0.0 +25726,41,9.65,36,0.0 +25726,63,43.9,34,0.0 +25726,67,14,20,0.0 +25726,62,49.3,17,0.0 +25726,66,17,6,0.0 +25726,73,15,25,0.0 +25726,29,123.79,49,0.0 +25726,72,34.8,26,0.0 +25726,32,32,4,0.0 +25726,69,36,41,0.0 +25726,26,31.23,6,0.0 +25726,18,62.5,28,0.0 +25726,55,24,13,0.0 +25726,52,7,31,0.0 +25726,16,17.45,17,0.0 +25726,54,7.45,41,0.0 +25726,30,25.89,33,0.0 +25726,9,97,15,0.0 +25726,12,38,31,0.0 +25726,38,263.5,6,0.0 +25726,10,31,39,0.0 +25727,8,40,2,0.0 +25727,12,38,41,0.0 +25727,47,9.5,39,0.0 +25727,15,15.5,9,0.0 +25727,9,97,32,0.0 +25727,67,14,27,0.0 +25727,29,123.79,1,0.0 +25727,61,28.5,25,0.0 +25727,32,32,28,0.0 +25727,36,19,30,0.0 +25727,10,31,50,0.0 +25727,33,2.5,15,0.0 +25727,26,31.23,41,0.0 +25727,35,18,25,0.0 +25727,39,18,13,0.0 +25727,77,13,27,0.0 +25727,76,18,11,0.0 +25727,45,9.5,24,0.0 +25727,70,15,41,0.0 +25727,21,10,49,0.0 +25727,65,21.05,47,0.0 +25727,22,21,37,0.0 +25727,66,17,42,0.0 +25727,64,33.25,23,0.0 +25727,53,32.8,43,0.0 +25727,20,81,36,0.0 +25727,23,9,1,0.0 +25727,24,4.5,46,0.0 +25727,74,10,33,0.0 +25727,3,10,49,0.0 +25727,2,19,2,0.0 +25728,59,55,22,0.0 +25728,35,18,44,0.0 +25728,71,21.5,13,0.0 +25728,24,4.5,25,0.0 +25728,65,21.05,26,0.0 +25728,50,16.25,29,0.0 +25728,42,14,17,0.0 +25728,32,32,19,0.0 +25728,27,43.9,24,0.0 +25728,47,9.5,41,0.0 +25728,48,12.75,13,0.0 +25728,29,123.79,39,0.0 +25728,21,10,46,0.0 +25728,76,18,44,0.0 +25728,40,18.4,41,0.0 +25728,43,46,23,0.0 +25728,37,26,12,0.0 +25728,73,15,22,0.0 +25728,13,6,31,0.0 +25728,64,33.25,18,0.0 +25728,69,36,44,0.0 +25728,66,17,40,0.0 +25728,11,21,35,0.0 +25728,74,10,7,0.0 +25728,1,18,34,0.0 +25728,3,10,4,0.0 +25728,46,12,10,0.0 +25728,39,18,27,0.0 +25728,38,263.5,14,0.0 +25728,70,15,33,0.0 +25728,6,25,3,0.0 +25728,72,34.8,5,0.0 +25728,28,45.6,41,0.0 +25728,31,12.5,25,0.0 +25728,8,40,42,0.0 +25728,18,62.5,5,0.0 +25728,61,28.5,49,0.0 +25728,77,13,50,0.0 +25728,22,21,36,0.0 +25728,62,49.3,14,0.0 +25728,63,43.9,31,0.0 +25728,67,14,40,0.0 +25728,60,34,8,0.0 +25728,5,21.35,45,0.0 +25728,56,38,47,0.0 +25728,16,17.45,17,0.0 +25728,53,32.8,30,0.0 +25728,15,15.5,14,0.0 +25728,17,39,15,0.0 +25728,33,2.5,25,0.0 +25728,9,97,41,0.0 +25728,68,12.5,12,0.0 +25728,49,20,35,0.0 +25728,45,9.5,39,0.0 +25728,75,7.75,5,0.0 +25728,55,24,37,0.0 +25728,26,31.23,41,0.0 +25728,7,30,6,0.0 +25728,14,23.25,3,0.0 +25728,10,31,45,0.0 +25728,12,38,5,0.0 +25728,19,9.2,24,0.0 +25728,25,14,21,0.0 +25728,30,25.89,6,0.0 +25729,56,38,21,0.0 +25729,33,2.5,24,0.0 +25729,4,22,15,0.0 +25729,27,43.9,2,0.0 +25729,41,9.65,4,0.0 +25729,19,9.2,41,0.0 +25729,42,14,34,0.0 +25729,3,10,41,0.0 +25729,48,12.75,50,0.0 +25729,44,19.45,6,0.0 +25729,67,14,45,0.0 +25729,54,7.45,9,0.0 +25729,32,32,4,0.0 +25729,76,18,38,0.0 +25729,1,18,33,0.0 +25729,18,62.5,43,0.0 +25729,21,10,30,0.0 +25729,30,25.89,23,0.0 +25729,37,26,46,0.0 +25729,45,9.5,22,0.0 +25729,10,31,22,0.0 +25729,60,34,26,0.0 +25729,71,21.5,9,0.0 +25729,66,17,27,0.0 +25729,51,53,42,0.0 +25729,28,45.6,42,0.0 +25729,52,7,7,0.0 +25729,34,14,10,0.0 +25729,64,33.25,49,0.0 +25729,61,28.5,22,0.0 +25729,49,20,11,0.0 +25729,62,49.3,36,0.0 +25729,35,18,2,0.0 +25729,57,19.5,2,0.0 +25729,11,21,16,0.0 +25729,68,12.5,28,0.0 +25729,29,123.79,33,0.0 +25729,38,263.5,17,0.0 +25729,77,13,10,0.0 +25729,65,21.05,27,0.0 +25729,73,15,43,0.0 +25729,58,13.25,45,0.0 +25729,26,31.23,34,0.0 +25729,70,15,43,0.0 +25729,25,14,32,0.0 +25729,47,9.5,12,0.0 +25729,23,9,39,0.0 +25729,5,21.35,10,0.0 +25729,40,18.4,31,0.0 +25729,75,7.75,48,0.0 +25729,14,23.25,31,0.0 +25729,53,32.8,50,0.0 +25729,7,30,45,0.0 +25729,50,16.25,32,0.0 +25729,63,43.9,31,0.0 +25729,20,81,27,0.0 +25729,46,12,27,0.0 +25729,9,97,48,0.0 +25729,31,12.5,43,0.0 +25729,15,15.5,38,0.0 +25729,55,24,47,0.0 +25729,24,4.5,16,0.0 +25729,36,19,7,0.0 +25729,8,40,11,0.0 +25729,12,38,17,0.0 +25729,17,39,2,0.0 +25729,2,19,27,0.0 +25730,23,9,35,0.0 +25730,69,36,39,0.0 +25730,64,33.25,7,0.0 +25730,37,26,5,0.0 +25730,34,14,15,0.0 +25730,59,55,33,0.0 +25730,22,21,24,0.0 +25730,19,9.2,21,0.0 +25730,25,14,5,0.0 +25730,3,10,28,0.0 +25730,56,38,35,0.0 +25730,24,4.5,50,0.0 +25730,38,263.5,16,0.0 +25730,12,38,45,0.0 +25730,13,6,13,0.0 +25730,18,62.5,44,0.0 +25730,55,24,26,0.0 +25730,5,21.35,13,0.0 +25730,36,19,5,0.0 +25730,57,19.5,14,0.0 +25730,49,20,19,0.0 +25730,77,13,18,0.0 +25730,41,9.65,2,0.0 +25730,65,21.05,32,0.0 +25730,54,7.45,2,0.0 +25730,20,81,14,0.0 +25730,14,23.25,23,0.0 +25730,76,18,33,0.0 +25730,46,12,27,0.0 +25730,16,17.45,38,0.0 +25730,70,15,15,0.0 +25730,35,18,9,0.0 +25730,52,7,41,0.0 +25730,62,49.3,17,0.0 +25730,73,15,46,0.0 +25730,39,18,20,0.0 +25730,67,14,46,0.0 +25730,74,10,9,0.0 +25730,63,43.9,38,0.0 +25730,32,32,50,0.0 +25730,61,28.5,3,0.0 +25730,30,25.89,49,0.0 +25730,50,16.25,36,0.0 +25730,42,14,32,0.0 +25730,21,10,2,0.0 +25730,4,22,50,0.0 +25730,60,34,4,0.0 +25730,45,9.5,42,0.0 +25730,28,45.6,43,0.0 +25730,27,43.9,4,0.0 +25730,44,19.45,6,0.0 +25730,11,21,47,0.0 +25730,68,12.5,23,0.0 +25730,1,18,17,0.0 +25730,8,40,9,0.0 +25730,31,12.5,30,0.0 +25730,43,46,11,0.0 +25730,33,2.5,11,0.0 +25730,2,19,5,0.0 +25730,58,13.25,5,0.0 +25730,29,123.79,34,0.0 +25730,10,31,21,0.0 +25731,39,18,34,0.0 +25731,74,10,42,0.0 +25731,48,12.75,10,0.0 +25731,52,7,11,0.0 +25731,68,12.5,23,0.0 +25731,4,22,40,0.0 +25731,34,14,21,0.0 +25731,22,21,43,0.0 +25731,57,19.5,4,0.0 +25731,69,36,27,0.0 +25731,9,97,23,0.0 +25731,33,2.5,45,0.0 +25731,38,263.5,10,0.0 +25731,75,7.75,22,0.0 +25731,59,55,11,0.0 +25731,50,16.25,33,0.0 +25731,6,25,22,0.0 +25731,2,19,34,0.0 +25731,62,49.3,43,0.0 +25731,41,9.65,40,0.0 +25731,30,25.89,8,0.0 +25731,28,45.6,34,0.0 +25731,29,123.79,2,0.0 +25731,70,15,44,0.0 +25731,5,21.35,41,0.0 +25732,5,21.35,10,0.0 +25732,2,19,35,0.0 +25732,37,26,45,0.0 +25732,46,12,7,0.0 +25732,53,32.8,45,0.0 +25732,28,45.6,33,0.0 +25732,35,18,41,0.0 +25732,1,18,9,0.0 +25732,60,34,42,0.0 +25732,40,18.4,19,0.0 +25732,66,17,4,0.0 +25732,9,97,40,0.0 +25732,30,25.89,30,0.0 +25732,21,10,50,0.0 +25732,31,12.5,14,0.0 +25732,43,46,14,0.0 +25732,67,14,29,0.0 +25732,49,20,2,0.0 +25732,34,14,32,0.0 +25732,47,9.5,29,0.0 +25732,25,14,10,0.0 +25732,15,15.5,29,0.0 +25732,8,40,21,0.0 +25732,29,123.79,33,0.0 +25732,13,6,18,0.0 +25732,33,2.5,33,0.0 +25732,38,263.5,15,0.0 +25732,19,9.2,41,0.0 +25732,18,62.5,4,0.0 +25732,68,12.5,15,0.0 +25732,65,21.05,40,0.0 +25732,70,15,10,0.0 +25732,64,33.25,43,0.0 +25732,45,9.5,8,0.0 +25733,37,26,34,0.0 +25733,27,43.9,48,0.0 +25733,22,21,47,0.0 +25733,66,17,28,0.0 +25733,3,10,26,0.0 +25733,51,53,33,0.0 +25733,74,10,26,0.0 +25733,57,19.5,40,0.0 +25733,64,33.25,2,0.0 +25733,35,18,21,0.0 +25733,47,9.5,46,0.0 +25733,29,123.79,46,0.0 +25733,18,62.5,10,0.0 +25733,17,39,8,0.0 +25733,1,18,17,0.0 +25733,7,30,9,0.0 +25733,56,38,22,0.0 +25733,5,21.35,7,0.0 +25733,13,6,33,0.0 +25733,61,28.5,24,0.0 +25733,11,21,5,0.0 +25733,71,21.5,47,0.0 +25733,50,16.25,33,0.0 +25733,54,7.45,49,0.0 +25733,15,15.5,17,0.0 +25733,31,12.5,48,0.0 +25733,26,31.23,16,0.0 +25733,25,14,21,0.0 +25733,6,25,29,0.0 +25733,77,13,3,0.0 +25733,62,49.3,10,0.0 +25733,72,34.8,27,0.0 +25733,63,43.9,18,0.0 +25733,41,9.65,29,0.0 +25733,65,21.05,20,0.0 +25733,43,46,29,0.0 +25734,41,9.65,21,0.0 +25734,74,10,21,0.0 +25734,19,9.2,41,0.0 +25734,50,16.25,42,0.0 +25734,37,26,2,0.0 +25734,7,30,28,0.0 +25734,67,14,38,0.0 +25734,9,97,39,0.0 +25734,35,18,42,0.0 +25734,24,4.5,11,0.0 +25734,59,55,35,0.0 +25734,48,12.75,1,0.0 +25734,11,21,40,0.0 +25734,64,33.25,2,0.0 +25734,31,12.5,42,0.0 +25734,65,21.05,38,0.0 +25734,18,62.5,17,0.0 +25734,8,40,6,0.0 +25734,28,45.6,40,0.0 +25734,75,7.75,21,0.0 +25734,54,7.45,14,0.0 +25734,53,32.8,11,0.0 +25734,12,38,7,0.0 +25734,71,21.5,13,0.0 +25734,46,12,12,0.0 +25734,63,43.9,40,0.0 +25734,14,23.25,50,0.0 +25734,44,19.45,5,0.0 +25734,4,22,38,0.0 +25734,57,19.5,13,0.0 +25734,6,25,47,0.0 +25734,68,12.5,5,0.0 +25734,38,263.5,19,0.0 +25734,13,6,30,0.0 +25734,23,9,12,0.0 +25734,3,10,39,0.0 +25734,30,25.89,6,0.0 +25734,45,9.5,33,0.0 +25734,29,123.79,38,0.0 +25734,5,21.35,50,0.0 +25734,36,19,49,0.0 +25734,76,18,39,0.0 +25734,25,14,50,0.0 +25734,66,17,1,0.0 +25734,56,38,42,0.0 +25734,10,31,24,0.0 +25734,15,15.5,33,0.0 +25734,49,20,49,0.0 +25734,39,18,15,0.0 +25734,26,31.23,10,0.0 +25734,20,81,29,0.0 +25734,61,28.5,36,0.0 +25734,34,14,22,0.0 +25734,55,24,18,0.0 +25734,70,15,1,0.0 +25734,16,17.45,15,0.0 +25734,43,46,12,0.0 +25734,69,36,4,0.0 +25734,72,34.8,41,0.0 +25734,77,13,10,0.0 +25734,51,53,24,0.0 +25734,2,19,28,0.0 +25734,17,39,17,0.0 +25734,22,21,1,0.0 +25734,1,18,31,0.0 +25734,40,18.4,36,0.0 +25734,33,2.5,19,0.0 +25734,58,13.25,23,0.0 +25734,21,10,44,0.0 +25734,47,9.5,2,0.0 +25734,42,14,28,0.0 +25735,1,18,48,0.0 +25735,14,23.25,22,0.0 +25735,58,13.25,23,0.0 +25735,5,21.35,47,0.0 +25735,30,25.89,32,0.0 +25735,6,25,7,0.0 +25735,61,28.5,13,0.0 +25735,77,13,34,0.0 +25736,61,28.5,45,0.0 +25736,62,49.3,16,0.0 +25736,41,9.65,44,0.0 +25736,40,18.4,5,0.0 +25736,22,21,31,0.0 +25736,46,12,3,0.0 +25736,30,25.89,2,0.0 +25736,60,34,17,0.0 +25736,18,62.5,5,0.0 +25736,64,33.25,16,0.0 +25736,29,123.79,3,0.0 +25736,65,21.05,4,0.0 +25736,34,14,44,0.0 +25736,53,32.8,3,0.0 +25736,48,12.75,7,0.0 +25736,66,17,19,0.0 +25736,17,39,31,0.0 +25736,76,18,2,0.0 +25736,23,9,47,0.0 +25736,31,12.5,45,0.0 +25736,21,10,38,0.0 +25736,6,25,32,0.0 +25736,43,46,18,0.0 +25736,2,19,44,0.0 +25736,39,18,46,0.0 +25736,1,18,47,0.0 +25736,20,81,31,0.0 +25736,15,15.5,19,0.0 +25736,9,97,33,0.0 +25736,26,31.23,13,0.0 +25736,54,7.45,33,0.0 +25736,25,14,1,0.0 +25736,12,38,27,0.0 +25737,19,9.2,47,0.0 +25737,70,15,25,0.0 +25737,10,31,19,0.0 +25737,20,81,28,0.0 +25737,26,31.23,5,0.0 +25737,57,19.5,25,0.0 +25737,18,62.5,4,0.0 +25737,54,7.45,23,0.0 +25737,63,43.9,17,0.0 +25737,68,12.5,22,0.0 +25737,14,23.25,33,0.0 +25738,49,20,42,0.0 +25738,37,26,23,0.0 +25738,40,18.4,7,0.0 +25738,47,9.5,39,0.0 +25738,41,9.65,16,0.0 +25739,67,14,16,0.0 +25739,11,21,7,0.0 +25739,54,7.45,39,0.0 +25739,44,19.45,6,0.0 +25739,51,53,13,0.0 +25739,77,13,19,0.0 +25739,29,123.79,29,0.0 +25739,46,12,50,0.0 +25739,41,9.65,7,0.0 +25739,39,18,19,0.0 +25739,62,49.3,44,0.0 +25739,20,81,12,0.0 +25739,71,21.5,40,0.0 +25739,76,18,44,0.0 +25739,2,19,19,0.0 +25739,4,22,15,0.0 +25739,21,10,28,0.0 +25739,3,10,13,0.0 +25739,73,15,20,0.0 +25739,35,18,45,0.0 +25739,12,38,20,0.0 +25739,14,23.25,17,0.0 +25739,28,45.6,12,0.0 +25739,15,15.5,10,0.0 +25739,30,25.89,15,0.0 +25739,6,25,36,0.0 +25739,25,14,1,0.0 +25739,68,12.5,14,0.0 +25739,26,31.23,17,0.0 +25739,9,97,30,0.0 +25740,40,18.4,35,0.0 +25740,59,55,49,0.0 +25740,4,22,6,0.0 +25740,74,10,33,0.0 +25740,23,9,8,0.0 +25740,19,9.2,5,0.0 +25740,56,38,2,0.0 +25740,48,12.75,48,0.0 +25740,70,15,50,0.0 +25740,22,21,2,0.0 +25740,26,31.23,9,0.0 +25740,16,17.45,8,0.0 +25740,46,12,12,0.0 +25740,73,15,5,0.0 +25740,50,16.25,33,0.0 +25740,32,32,26,0.0 +25740,15,15.5,8,0.0 +25740,47,9.5,35,0.0 +25740,57,19.5,45,0.0 +25740,20,81,34,0.0 +25740,28,45.6,17,0.0 +25740,52,7,7,0.0 +25740,27,43.9,8,0.0 +25740,62,49.3,17,0.0 +25740,67,14,37,0.0 +25740,54,7.45,25,0.0 +25740,29,123.79,32,0.0 +25740,11,21,38,0.0 +25740,10,31,17,0.0 +25740,38,263.5,34,0.0 +25740,24,4.5,33,0.0 +25740,44,19.45,20,0.0 +25740,1,18,20,0.0 +25740,13,6,47,0.0 +25740,37,26,9,0.0 +25740,77,13,27,0.0 +25740,7,30,26,0.0 +25740,6,25,45,0.0 +25740,31,12.5,12,0.0 +25740,8,40,25,0.0 +25740,36,19,20,0.0 +25740,64,33.25,4,0.0 +25740,33,2.5,13,0.0 +25740,14,23.25,21,0.0 +25740,51,53,38,0.0 +25740,72,34.8,31,0.0 +25740,71,21.5,4,0.0 +25740,43,46,34,0.0 +25740,3,10,12,0.0 +25740,21,10,24,0.0 +25740,63,43.9,20,0.0 +25740,45,9.5,15,0.0 +25740,61,28.5,31,0.0 +25740,9,97,11,0.0 +25740,49,20,7,0.0 +25740,53,32.8,30,0.0 +25740,65,21.05,25,0.0 +25740,69,36,5,0.0 +25740,75,7.75,26,0.0 +25740,60,34,5,0.0 +25740,34,14,45,0.0 +25740,66,17,44,0.0 +25740,12,38,17,0.0 +25740,25,14,34,0.0 +25740,5,21.35,17,0.0 +25740,76,18,13,0.0 +25740,18,62.5,5,0.0 +25740,68,12.5,27,0.0 +25740,39,18,9,0.0 +25740,41,9.65,46,0.0 +25740,2,19,27,0.0 +25740,35,18,11,0.0 +25740,58,13.25,8,0.0 +25740,55,24,12,0.0 +25740,42,14,4,0.0 +25740,17,39,40,0.0 +25740,30,25.89,35,0.0 +25741,31,12.5,39,0.0 +25741,44,19.45,34,0.0 +25741,10,31,38,0.0 +25741,68,12.5,35,0.0 +25741,56,38,42,0.0 +25741,9,97,21,0.0 +25741,74,10,19,0.0 +25741,1,18,41,0.0 +25741,3,10,39,0.0 +25741,32,32,40,0.0 +25741,76,18,10,0.0 +25741,38,263.5,23,0.0 +25741,19,9.2,32,0.0 +25741,66,17,15,0.0 +25741,30,25.89,10,0.0 +25741,54,7.45,4,0.0 +25741,5,21.35,10,0.0 +25741,8,40,28,0.0 +25741,6,25,22,0.0 +25741,62,49.3,38,0.0 +25741,77,13,19,0.0 +25741,35,18,23,0.0 +25741,29,123.79,30,0.0 +25741,23,9,33,0.0 +25741,64,33.25,11,0.0 +25741,18,62.5,2,0.0 +25741,41,9.65,33,0.0 +25741,26,31.23,28,0.0 +25741,4,22,37,0.0 +25741,15,15.5,29,0.0 +25741,2,19,23,0.0 +25741,49,20,13,0.0 +25741,70,15,35,0.0 +25741,47,9.5,41,0.0 +25741,12,38,34,0.0 +25741,46,12,26,0.0 +25741,13,6,49,0.0 +25741,55,24,36,0.0 +25741,59,55,13,0.0 +25741,45,9.5,17,0.0 +25741,48,12.75,34,0.0 +25741,17,39,15,0.0 +25741,36,19,4,0.0 +25741,16,17.45,50,0.0 +25741,28,45.6,28,0.0 +25741,33,2.5,21,0.0 +25741,51,53,15,0.0 +25741,73,15,36,0.0 +25741,14,23.25,3,0.0 +25741,20,81,14,0.0 +25741,50,16.25,44,0.0 +25741,60,34,16,0.0 +25741,40,18.4,33,0.0 +25741,11,21,14,0.0 +25741,7,30,14,0.0 +25741,34,14,45,0.0 +25741,75,7.75,17,0.0 +25741,72,34.8,9,0.0 +25741,21,10,11,0.0 +25741,43,46,35,0.0 +25742,19,9.2,12,0.0 +25742,41,9.65,15,0.0 +25742,47,9.5,28,0.0 +25742,51,53,26,0.0 +25742,53,32.8,22,0.0 +25742,55,24,42,0.0 +25742,32,32,7,0.0 +25742,22,21,1,0.0 +25742,71,21.5,12,0.0 +25742,15,15.5,10,0.0 +25742,64,33.25,50,0.0 +25742,37,26,33,0.0 +25742,26,31.23,17,0.0 +25742,73,15,4,0.0 +25742,17,39,20,0.0 +25742,12,38,35,0.0 +25742,56,38,27,0.0 +25742,43,46,19,0.0 +25742,28,45.6,16,0.0 +25742,75,7.75,13,0.0 +25742,7,30,50,0.0 +25742,6,25,2,0.0 +25742,23,9,13,0.0 +25742,16,17.45,20,0.0 +25742,63,43.9,35,0.0 +25742,29,123.79,48,0.0 +25742,58,13.25,44,0.0 +25742,50,16.25,45,0.0 +25742,36,19,3,0.0 +25742,52,7,50,0.0 +25742,5,21.35,35,0.0 +25742,77,13,38,0.0 +25742,74,10,34,0.0 +25742,39,18,20,0.0 +25742,48,12.75,4,0.0 +25742,44,19.45,22,0.0 +25742,66,17,36,0.0 +25742,31,12.5,21,0.0 +25742,35,18,10,0.0 +25742,20,81,12,0.0 +25742,45,9.5,2,0.0 +25742,9,97,7,0.0 +25742,59,55,41,0.0 +25742,1,18,14,0.0 +25742,8,40,41,0.0 +25742,65,21.05,6,0.0 +25742,40,18.4,31,0.0 +25742,61,28.5,48,0.0 +25742,62,49.3,26,0.0 +25742,69,36,50,0.0 +25742,70,15,28,0.0 +25742,57,19.5,43,0.0 +25742,13,6,30,0.0 +25742,72,34.8,37,0.0 +25742,34,14,12,0.0 +25742,30,25.89,18,0.0 +25742,18,62.5,10,0.0 +25742,46,12,44,0.0 +25742,60,34,25,0.0 +25742,38,263.5,2,0.0 +25742,33,2.5,30,0.0 +25742,68,12.5,50,0.0 +25742,67,14,33,0.0 +25742,2,19,2,0.0 +25743,32,32,45,0.0 +25743,41,9.65,35,0.0 +25743,27,43.9,19,0.0 +25743,37,26,27,0.0 +25743,3,10,42,0.0 +25743,47,9.5,33,0.0 +25743,74,10,27,0.0 +25743,30,25.89,33,0.0 +25743,77,13,45,0.0 +25743,48,12.75,18,0.0 +25743,24,4.5,23,0.0 +25743,21,10,23,0.0 +25743,50,16.25,48,0.0 +25743,20,81,19,0.0 +25743,34,14,39,0.0 +25743,69,36,4,0.0 +25743,9,97,16,0.0 +25743,2,19,17,0.0 +25743,66,17,9,0.0 +25743,29,123.79,46,0.0 +25743,16,17.45,49,0.0 +25743,28,45.6,39,0.0 +25743,17,39,7,0.0 +25743,72,34.8,32,0.0 +25743,35,18,20,0.0 +25743,63,43.9,9,0.0 +25743,62,49.3,35,0.0 +25743,19,9.2,18,0.0 +25743,12,38,47,0.0 +25743,73,15,10,0.0 +25743,4,22,34,0.0 +25743,15,15.5,23,0.0 +25743,13,6,18,0.0 +25743,40,18.4,30,0.0 +25743,23,9,21,0.0 +25744,50,16.25,12,0.0 +25744,74,10,31,0.0 +25744,3,10,31,0.0 +25744,32,32,30,0.0 +25744,18,62.5,1,0.0 +25744,26,31.23,32,0.0 +25744,29,123.79,26,0.0 +25744,13,6,45,0.0 +25744,53,32.8,8,0.0 +25744,65,21.05,42,0.0 +25744,23,9,20,0.0 +25744,11,21,37,0.0 +25744,41,9.65,26,0.0 +25744,5,21.35,20,0.0 +25744,39,18,24,0.0 +25744,16,17.45,36,0.0 +25744,22,21,25,0.0 +25744,58,13.25,38,0.0 +25744,57,19.5,8,0.0 +25744,66,17,13,0.0 +25744,42,14,39,0.0 +25744,69,36,18,0.0 +25744,12,38,16,0.0 +25744,68,12.5,29,0.0 +25745,23,9,42,0.0 +25745,35,18,1,0.0 +25745,30,25.89,4,0.0 +25745,2,19,42,0.0 +25745,24,4.5,38,0.0 +25745,56,38,45,0.0 +25745,65,21.05,14,0.0 +25745,72,34.8,30,0.0 +25745,62,49.3,6,0.0 +25745,21,10,38,0.0 +25745,36,19,3,0.0 +25745,1,18,28,0.0 +25746,26,31.23,50,0.0 +25746,30,25.89,25,0.0 +25746,8,40,13,0.0 +25746,51,53,44,0.0 +25746,16,17.45,28,0.0 +25746,60,34,24,0.0 +25746,19,9.2,27,0.0 +25746,69,36,17,0.0 +25746,23,9,2,0.0 +25746,71,21.5,14,0.0 +25746,28,45.6,30,0.0 +25746,2,19,40,0.0 +25746,12,38,16,0.0 +25746,33,2.5,31,0.0 +25746,43,46,35,0.0 +25746,70,15,23,0.0 +25746,7,30,45,0.0 +25746,49,20,22,0.0 +25747,4,22,15,0.0 +25747,17,39,36,0.0 +25747,8,40,47,0.0 +25747,76,18,42,0.0 +25747,22,21,17,0.0 +25747,24,4.5,19,0.0 +25747,51,53,7,0.0 +25747,9,97,15,0.0 +25747,29,123.79,19,0.0 +25747,70,15,14,0.0 +25747,52,7,23,0.0 +25747,35,18,22,0.0 +25747,62,49.3,19,0.0 +25747,30,25.89,40,0.0 +25747,77,13,34,0.0 +25747,5,21.35,18,0.0 +25747,26,31.23,37,0.0 +25747,23,9,45,0.0 +25747,42,14,4,0.0 +25747,14,23.25,47,0.0 +25747,68,12.5,18,0.0 +25747,25,14,5,0.0 +25747,33,2.5,5,0.0 +25747,39,18,36,0.0 +25747,38,263.5,36,0.0 +25747,18,62.5,37,0.0 +25747,46,12,26,0.0 +25747,55,24,27,0.0 +25747,10,31,7,0.0 +25747,15,15.5,18,0.0 +25747,20,81,28,0.0 +25747,49,20,33,0.0 +25747,48,12.75,46,0.0 +25747,13,6,44,0.0 +25747,72,34.8,44,0.0 +25747,3,10,3,0.0 +25747,54,7.45,8,0.0 +25747,2,19,17,0.0 +25747,34,14,16,0.0 +25747,1,18,18,0.0 +25747,36,19,19,0.0 +25747,44,19.45,29,0.0 +25747,7,30,29,0.0 +25747,73,15,9,0.0 +25747,12,38,3,0.0 +25747,28,45.6,50,0.0 +25747,50,16.25,14,0.0 +25747,65,21.05,48,0.0 +25747,64,33.25,7,0.0 +25747,47,9.5,3,0.0 +25747,37,26,7,0.0 +25747,32,32,28,0.0 +25747,16,17.45,8,0.0 +25747,45,9.5,33,0.0 +25747,75,7.75,21,0.0 +25747,27,43.9,9,0.0 +25747,67,14,49,0.0 +25748,26,31.23,48,0.0 +25748,27,43.9,35,0.0 +25748,74,10,35,0.0 +25748,71,21.5,36,0.0 +25748,57,19.5,16,0.0 +25748,51,53,40,0.0 +25748,8,40,45,0.0 +25748,7,30,20,0.0 +25748,53,32.8,21,0.0 +25748,25,14,47,0.0 +25748,19,9.2,10,0.0 +25748,44,19.45,18,0.0 +25748,32,32,48,0.0 +25748,3,10,26,0.0 +25748,56,38,1,0.0 +25748,14,23.25,22,0.0 +25748,29,123.79,9,0.0 +25748,70,15,37,0.0 +25748,17,39,45,0.0 +25748,50,16.25,5,0.0 +25748,62,49.3,45,0.0 +25748,68,12.5,12,0.0 +25748,59,55,1,0.0 +25748,52,7,47,0.0 +25748,58,13.25,2,0.0 +25748,15,15.5,36,0.0 +25748,69,36,6,0.0 +25748,13,6,41,0.0 +25748,64,33.25,17,0.0 +25748,75,7.75,24,0.0 +25748,22,21,36,0.0 +25748,21,10,12,0.0 +25748,6,25,15,0.0 +25748,49,20,25,0.0 +25748,47,9.5,43,0.0 +25748,63,43.9,18,0.0 +25748,54,7.45,16,0.0 +25748,38,263.5,5,0.0 +25748,12,38,42,0.0 +25748,30,25.89,17,0.0 +25748,67,14,28,0.0 +25748,41,9.65,17,0.0 +25748,34,14,35,0.0 +25748,9,97,4,0.0 +25748,77,13,18,0.0 +25748,40,18.4,37,0.0 +25748,65,21.05,45,0.0 +25748,1,18,32,0.0 +25748,46,12,14,0.0 +25748,4,22,17,0.0 +25748,37,26,39,0.0 +25748,20,81,31,0.0 +25748,18,62.5,12,0.0 +25748,55,24,18,0.0 +25748,11,21,45,0.0 +25748,45,9.5,12,0.0 +25748,48,12.75,28,0.0 +25748,24,4.5,42,0.0 +25748,76,18,39,0.0 +25748,16,17.45,41,0.0 +25748,33,2.5,7,0.0 +25748,60,34,11,0.0 +25748,35,18,4,0.0 +25749,32,32,34,0.0 +25749,76,18,20,0.0 +25749,52,7,13,0.0 +25749,17,39,3,0.0 +25749,62,49.3,6,0.0 +25749,68,12.5,27,0.0 +25749,54,7.45,18,0.0 +25749,69,36,1,0.0 +25749,73,15,28,0.0 +25749,39,18,7,0.0 +25749,28,45.6,16,0.0 +25749,53,32.8,1,0.0 +25749,77,13,7,0.0 +25749,36,19,42,0.0 +25749,31,12.5,23,0.0 +25749,12,38,38,0.0 +25749,46,12,26,0.0 +25749,75,7.75,19,0.0 +25749,27,43.9,28,0.0 +25749,72,34.8,8,0.0 +25749,66,17,37,0.0 +25749,34,14,40,0.0 +25749,30,25.89,11,0.0 +25749,71,21.5,16,0.0 +25750,40,18.4,42,0.0 +25750,8,40,2,0.0 +25750,75,7.75,19,0.0 +25750,16,17.45,10,0.0 +25750,15,15.5,18,0.0 +25750,71,21.5,23,0.0 +25750,32,32,12,0.0 +25750,21,10,4,0.0 +25750,13,6,27,0.0 +25750,7,30,11,0.0 +25750,24,4.5,41,0.0 +25750,45,9.5,10,0.0 +25750,51,53,25,0.0 +25750,22,21,14,0.0 +25750,27,43.9,40,0.0 +25750,73,15,46,0.0 +25750,1,18,23,0.0 +25750,9,97,12,0.0 +25750,43,46,37,0.0 +25750,67,14,32,0.0 +25750,64,33.25,46,0.0 +25750,50,16.25,31,0.0 +25750,25,14,46,0.0 +25750,30,25.89,34,0.0 +25750,3,10,25,0.0 +25750,61,28.5,35,0.0 +25750,41,9.65,16,0.0 +25750,57,19.5,8,0.0 +25750,63,43.9,40,0.0 +25750,74,10,1,0.0 +25750,18,62.5,43,0.0 +25750,70,15,8,0.0 +25750,6,25,41,0.0 +25750,33,2.5,9,0.0 +25750,42,14,12,0.0 +25750,60,34,10,0.0 +25750,46,12,26,0.0 +25750,44,19.45,42,0.0 +25750,65,21.05,31,0.0 +25750,77,13,30,0.0 +25750,72,34.8,33,0.0 +25750,56,38,26,0.0 +25750,28,45.6,15,0.0 +25750,2,19,42,0.0 +25750,59,55,8,0.0 +25750,47,9.5,20,0.0 +25750,12,38,24,0.0 +25750,52,7,32,0.0 +25750,14,23.25,10,0.0 +25750,35,18,35,0.0 +25750,36,19,48,0.0 +25750,53,32.8,40,0.0 +25750,34,14,47,0.0 +25750,11,21,2,0.0 +25750,38,263.5,11,0.0 +25750,17,39,8,0.0 +25750,31,12.5,34,0.0 +25750,4,22,11,0.0 +25750,20,81,11,0.0 +25750,62,49.3,36,0.0 +25750,69,36,46,0.0 +25751,32,32,7,0.0 +25751,42,14,4,0.0 +25751,75,7.75,50,0.0 +25751,19,9.2,33,0.0 +25751,43,46,6,0.0 +25751,36,19,42,0.0 +25751,64,33.25,48,0.0 +25751,20,81,20,0.0 +25751,61,28.5,26,0.0 +25751,3,10,39,0.0 +25751,7,30,43,0.0 +25751,46,12,2,0.0 +25751,41,9.65,5,0.0 +25751,56,38,3,0.0 +25751,9,97,20,0.0 +25751,51,53,18,0.0 +25751,50,16.25,42,0.0 +25751,1,18,49,0.0 +25751,74,10,31,0.0 +25751,28,45.6,46,0.0 +25751,44,19.45,10,0.0 +25751,45,9.5,26,0.0 +25751,67,14,24,0.0 +25751,12,38,7,0.0 +25751,68,12.5,49,0.0 +25751,62,49.3,22,0.0 +25751,48,12.75,44,0.0 +25751,76,18,4,0.0 +25751,6,25,17,0.0 +25751,71,21.5,5,0.0 +25751,10,31,26,0.0 +25751,66,17,14,0.0 +25751,77,13,38,0.0 +25751,33,2.5,1,0.0 +25751,4,22,9,0.0 +25751,70,15,14,0.0 +25751,25,14,17,0.0 +25751,26,31.23,25,0.0 +25751,40,18.4,23,0.0 +25751,37,26,27,0.0 +25751,23,9,11,0.0 +25751,72,34.8,12,0.0 +25751,34,14,47,0.0 +25752,77,13,1,0.0 +25752,18,62.5,21,0.0 +25752,6,25,4,0.0 +25752,11,21,47,0.0 +25752,21,10,25,0.0 +25752,51,53,1,0.0 +25752,72,34.8,9,0.0 +25752,50,16.25,50,0.0 +25752,23,9,19,0.0 +25752,36,19,15,0.0 +25752,22,21,1,0.0 +25752,62,49.3,34,0.0 +25752,71,21.5,5,0.0 +25752,17,39,14,0.0 +25753,34,14,28,0.0 +25753,66,17,35,0.0 +25753,16,17.45,7,0.0 +25753,38,263.5,17,0.0 +25753,11,21,39,0.0 +25753,44,19.45,35,0.0 +25753,32,32,29,0.0 +25753,67,14,45,0.0 +25753,13,6,36,0.0 +25753,47,9.5,50,0.0 +25753,55,24,45,0.0 +25753,33,2.5,4,0.0 +25753,61,28.5,38,0.0 +25754,11,21,37,0.0 +25754,42,14,47,0.0 +25754,20,81,47,0.0 +25754,1,18,10,0.0 +25754,33,2.5,29,0.0 +25754,61,28.5,44,0.0 +25754,35,18,34,0.0 +25754,60,34,23,0.0 +25754,26,31.23,23,0.0 +25754,48,12.75,40,0.0 +25754,10,31,38,0.0 +25754,15,15.5,14,0.0 +25754,34,14,10,0.0 +25754,12,38,37,0.0 +25754,3,10,14,0.0 +25754,51,53,41,0.0 +25754,54,7.45,6,0.0 +25754,19,9.2,24,0.0 +25754,67,14,29,0.0 +25754,36,19,46,0.0 +25754,32,32,21,0.0 +25754,8,40,25,0.0 +25755,15,15.5,41,0.0 +25755,43,46,50,0.0 +25755,54,7.45,6,0.0 +25755,72,34.8,27,0.0 +25755,55,24,31,0.0 +25755,28,45.6,32,0.0 +25755,49,20,38,0.0 +25755,66,17,31,0.0 +25755,26,31.23,22,0.0 +25755,52,7,43,0.0 +25755,71,21.5,45,0.0 +25755,68,12.5,31,0.0 +25755,5,21.35,50,0.0 +25755,12,38,7,0.0 +25755,59,55,20,0.0 +25755,34,14,12,0.0 +25755,32,32,33,0.0 +25755,17,39,5,0.0 +25755,6,25,44,0.0 +25755,45,9.5,37,0.0 +25755,37,26,48,0.0 +25755,69,36,47,0.0 +25755,10,31,8,0.0 +25755,3,10,40,0.0 +25755,77,13,37,0.0 +25755,60,34,6,0.0 +25755,39,18,15,0.0 +25755,1,18,35,0.0 +25755,25,14,39,0.0 +25755,51,53,31,0.0 +25755,21,10,50,0.0 +25756,76,18,16,0.0 +25756,10,31,12,0.0 +25756,13,6,38,0.0 +25756,74,10,11,0.0 +25756,19,9.2,27,0.0 +25756,52,7,12,0.0 +25756,12,38,22,0.0 +25756,62,49.3,36,0.0 +25756,56,38,25,0.0 +25756,34,14,8,0.0 +25756,26,31.23,12,0.0 +25756,25,14,50,0.0 +25756,6,25,22,0.0 +25756,72,34.8,24,0.0 +25756,4,22,42,0.0 +25756,69,36,24,0.0 +25756,9,97,26,0.0 +25756,64,33.25,47,0.0 +25756,61,28.5,40,0.0 +25756,57,19.5,12,0.0 +25756,7,30,4,0.0 +25756,70,15,35,0.0 +25756,41,9.65,4,0.0 +25756,33,2.5,13,0.0 +25756,40,18.4,19,0.0 +25756,51,53,1,0.0 +25756,35,18,27,0.0 +25756,75,7.75,18,0.0 +25756,77,13,43,0.0 +25756,16,17.45,48,0.0 +25756,23,9,11,0.0 +25756,20,81,34,0.0 +25756,8,40,14,0.0 +25756,43,46,5,0.0 +25756,46,12,47,0.0 +25756,59,55,1,0.0 +25756,2,19,7,0.0 +25756,38,263.5,18,0.0 +25756,49,20,35,0.0 +25756,45,9.5,2,0.0 +25756,17,39,20,0.0 +25756,1,18,8,0.0 +25756,18,62.5,8,0.0 +25756,48,12.75,32,0.0 +25756,24,4.5,43,0.0 +25756,11,21,12,0.0 +25756,67,14,20,0.0 +25756,66,17,25,0.0 +25756,31,12.5,10,0.0 +25756,27,43.9,26,0.0 +25756,60,34,46,0.0 +25756,14,23.25,35,0.0 +25756,44,19.45,4,0.0 +25756,68,12.5,42,0.0 +25756,15,15.5,5,0.0 +25757,67,14,48,0.0 +25757,45,9.5,50,0.0 +25757,18,62.5,17,0.0 +25757,58,13.25,24,0.0 +25757,71,21.5,7,0.0 +25757,66,17,18,0.0 +25757,26,31.23,49,0.0 +25757,25,14,23,0.0 +25757,19,9.2,19,0.0 +25757,68,12.5,17,0.0 +25757,53,32.8,45,0.0 +25757,33,2.5,6,0.0 +25757,24,4.5,12,0.0 +25757,69,36,50,0.0 +25757,42,14,35,0.0 +25757,56,38,14,0.0 +25757,75,7.75,2,0.0 +25757,11,21,41,0.0 +25757,48,12.75,32,0.0 +25757,50,16.25,46,0.0 +25757,7,30,22,0.0 +25757,47,9.5,2,0.0 +25757,60,34,15,0.0 +25757,73,15,48,0.0 +25757,15,15.5,43,0.0 +25757,9,97,48,0.0 +25758,63,43.9,41,0.0 +25758,40,18.4,18,0.0 +25758,10,31,38,0.0 +25758,39,18,19,0.0 +25758,18,62.5,38,0.0 +25758,36,19,34,0.0 +25758,21,10,23,0.0 +25758,76,18,20,0.0 +25758,42,14,9,0.0 +25758,33,2.5,44,0.0 +25758,17,39,23,0.0 +25758,60,34,33,0.0 +25758,51,53,33,0.0 +25758,7,30,40,0.0 +25758,9,97,4,0.0 +25758,4,22,3,0.0 +25758,68,12.5,7,0.0 +25758,24,4.5,3,0.0 +25758,35,18,10,0.0 +25758,31,12.5,37,0.0 +25758,55,24,7,0.0 +25758,56,38,15,0.0 +25758,69,36,16,0.0 +25758,77,13,42,0.0 +25758,15,15.5,13,0.0 +25758,71,21.5,13,0.0 +25758,45,9.5,20,0.0 +25758,25,14,32,0.0 +25758,32,32,3,0.0 +25758,67,14,6,0.0 +25758,59,55,4,0.0 +25758,61,28.5,15,0.0 +25758,8,40,40,0.0 +25758,54,7.45,25,0.0 +25758,16,17.45,8,0.0 +25758,5,21.35,43,0.0 +25758,29,123.79,14,0.0 +25759,25,14,41,0.0 +25759,24,4.5,19,0.0 +25759,1,18,23,0.0 +25759,33,2.5,30,0.0 +25759,15,15.5,12,0.0 +25759,5,21.35,24,0.0 +25759,12,38,4,0.0 +25759,51,53,44,0.0 +25759,26,31.23,24,0.0 +25759,21,10,44,0.0 +25759,38,263.5,22,0.0 +25759,39,18,10,0.0 +25759,65,21.05,24,0.0 +25759,30,25.89,11,0.0 +25759,23,9,29,0.0 +25759,41,9.65,33,0.0 +25759,17,39,25,0.0 +25759,7,30,33,0.0 +25759,32,32,2,0.0 +25759,31,12.5,21,0.0 +25759,2,19,21,0.0 +25759,8,40,24,0.0 +25759,60,34,1,0.0 +25759,29,123.79,11,0.0 +25759,72,34.8,1,0.0 +25759,20,81,2,0.0 +25759,6,25,23,0.0 +25759,52,7,22,0.0 +25759,62,49.3,11,0.0 +25759,43,46,14,0.0 +25759,3,10,14,0.0 +25759,64,33.25,16,0.0 +25759,57,19.5,46,0.0 +25759,63,43.9,39,0.0 +25759,74,10,8,0.0 +25759,70,15,30,0.0 +25759,56,38,16,0.0 +25759,50,16.25,5,0.0 +25759,35,18,26,0.0 +25759,16,17.45,45,0.0 +25759,34,14,17,0.0 +25759,28,45.6,49,0.0 +25759,58,13.25,32,0.0 +25759,59,55,17,0.0 +25759,69,36,25,0.0 +25759,42,14,27,0.0 +25759,76,18,30,0.0 +25759,61,28.5,17,0.0 +25759,75,7.75,39,0.0 +25760,59,55,36,0.0 +25760,28,45.6,26,0.0 +25760,31,12.5,44,0.0 +25760,55,24,12,0.0 +25760,43,46,12,0.0 +25760,20,81,10,0.0 +25760,35,18,16,0.0 +25760,74,10,50,0.0 +25760,29,123.79,38,0.0 +25760,23,9,10,0.0 +25760,3,10,6,0.0 +25760,4,22,36,0.0 +25760,71,21.5,40,0.0 +25760,50,16.25,42,0.0 +25760,17,39,4,0.0 +25760,15,15.5,25,0.0 +25760,25,14,4,0.0 +25760,70,15,35,0.0 +25760,10,31,40,0.0 +25760,8,40,26,0.0 +25760,73,15,8,0.0 +25760,63,43.9,4,0.0 +25760,16,17.45,34,0.0 +25760,21,10,36,0.0 +25760,11,21,33,0.0 +25760,47,9.5,42,0.0 +25760,77,13,43,0.0 +25760,13,6,14,0.0 +25760,30,25.89,49,0.0 +25760,24,4.5,21,0.0 +25760,26,31.23,29,0.0 +25760,39,18,47,0.0 +25760,7,30,21,0.0 +25760,60,34,40,0.0 +25760,72,34.8,35,0.0 +25760,42,14,8,0.0 +25760,54,7.45,24,0.0 +25760,57,19.5,25,0.0 +25760,46,12,19,0.0 +25760,36,19,36,0.0 +25760,45,9.5,29,0.0 +25760,6,25,47,0.0 +25760,32,32,39,0.0 +25761,21,10,9,0.0 +25761,53,32.8,4,0.0 +25761,74,10,14,0.0 +25761,75,7.75,30,0.0 +25761,26,31.23,36,0.0 +25761,44,19.45,10,0.0 +25761,59,55,6,0.0 +25761,43,46,36,0.0 +25761,30,25.89,32,0.0 +25761,27,43.9,22,0.0 +25761,14,23.25,48,0.0 +25761,68,12.5,17,0.0 +25762,55,24,50,0.0 +25762,47,9.5,23,0.0 +25762,57,19.5,16,0.0 +25762,26,31.23,44,0.0 +25762,50,16.25,4,0.0 +25762,28,45.6,44,0.0 +25762,27,43.9,11,0.0 +25762,25,14,44,0.0 +25762,7,30,41,0.0 +25762,42,14,42,0.0 +25762,64,33.25,50,0.0 +25762,66,17,15,0.0 +25762,53,32.8,29,0.0 +25762,73,15,35,0.0 +25762,12,38,48,0.0 +25762,16,17.45,45,0.0 +25762,35,18,3,0.0 +25762,65,21.05,4,0.0 +25762,2,19,35,0.0 +25762,9,97,7,0.0 +25762,23,9,3,0.0 +25762,52,7,32,0.0 +25762,24,4.5,2,0.0 +25762,6,25,1,0.0 +25762,36,19,48,0.0 +25762,68,12.5,31,0.0 +25763,33,2.5,17,0.0 +25763,4,22,21,0.0 +25763,5,21.35,15,0.0 +25763,39,18,43,0.0 +25763,11,21,46,0.0 +25763,53,32.8,38,0.0 +25763,25,14,10,0.0 +25763,44,19.45,12,0.0 +25763,42,14,18,0.0 +25763,10,31,20,0.0 +25763,18,62.5,33,0.0 +25763,71,21.5,11,0.0 +25763,23,9,26,0.0 +25763,61,28.5,4,0.0 +25763,7,30,19,0.0 +25763,52,7,28,0.0 +25763,38,263.5,16,0.0 +25763,49,20,4,0.0 +25764,39,18,18,0.0 +25764,51,53,8,0.0 +25764,63,43.9,20,0.0 +25764,60,34,22,0.0 +25764,33,2.5,39,0.0 +25764,32,32,7,0.0 +25764,1,18,18,0.0 +25764,66,17,26,0.0 +25764,27,43.9,22,0.0 +25764,45,9.5,20,0.0 +25764,58,13.25,43,0.0 +25764,17,39,38,0.0 +25764,8,40,21,0.0 +25764,46,12,14,0.0 +25764,34,14,15,0.0 +25764,9,97,9,0.0 +25764,5,21.35,17,0.0 +25764,38,263.5,46,0.0 +25764,36,19,43,0.0 +25764,64,33.25,25,0.0 +25764,20,81,50,0.0 +25764,75,7.75,13,0.0 +25764,74,10,24,0.0 +25764,62,49.3,33,0.0 +25764,4,22,30,0.0 +25764,37,26,7,0.0 +25764,56,38,47,0.0 +25764,10,31,34,0.0 +25764,35,18,44,0.0 +25764,7,30,42,0.0 +25764,23,9,9,0.0 +25764,25,14,21,0.0 +25764,44,19.45,17,0.0 +25764,30,25.89,30,0.0 +25764,15,15.5,6,0.0 +25764,42,14,43,0.0 +25765,27,43.9,20,0.0 +25765,9,97,39,0.0 +25765,46,12,11,0.0 +25765,16,17.45,42,0.0 +25765,66,17,12,0.0 +25765,10,31,37,0.0 +25765,40,18.4,46,0.0 +25765,65,21.05,22,0.0 +25765,24,4.5,7,0.0 +25765,48,12.75,43,0.0 +25765,31,12.5,20,0.0 +25765,53,32.8,19,0.0 +25765,26,31.23,27,0.0 +25765,32,32,6,0.0 +25765,21,10,15,0.0 +25765,45,9.5,21,0.0 +25765,22,21,9,0.0 +25765,18,62.5,4,0.0 +25765,57,19.5,37,0.0 +25765,76,18,30,0.0 +25765,1,18,44,0.0 +25765,51,53,21,0.0 +25765,47,9.5,21,0.0 +25765,35,18,9,0.0 +25765,4,22,15,0.0 +25765,42,14,13,0.0 +25765,8,40,48,0.0 +25765,25,14,16,0.0 +25765,33,2.5,34,0.0 +25765,74,10,18,0.0 +25765,41,9.65,30,0.0 +25765,58,13.25,26,0.0 +25765,64,33.25,26,0.0 +25765,38,263.5,21,0.0 +25765,19,9.2,9,0.0 +25765,50,16.25,49,0.0 +25765,12,38,24,0.0 +25765,72,34.8,26,0.0 +25765,77,13,27,0.0 +25765,14,23.25,49,0.0 +25765,3,10,1,0.0 +25765,5,21.35,38,0.0 +25765,11,21,15,0.0 +25765,2,19,39,0.0 +25765,15,15.5,36,0.0 +25765,20,81,3,0.0 +25765,67,14,14,0.0 +25765,29,123.79,19,0.0 +25765,36,19,14,0.0 +25765,44,19.45,37,0.0 +25765,71,21.5,36,0.0 +25765,56,38,44,0.0 +25765,69,36,22,0.0 +25765,30,25.89,27,0.0 +25765,73,15,50,0.0 +25765,7,30,41,0.0 +25765,63,43.9,39,0.0 +25765,6,25,2,0.0 +25765,52,7,20,0.0 +25765,61,28.5,15,0.0 +25765,39,18,8,0.0 +25765,37,26,30,0.0 +25765,60,34,8,0.0 +25765,13,6,31,0.0 +25765,28,45.6,12,0.0 +25765,75,7.75,29,0.0 +25765,43,46,45,0.0 +25765,62,49.3,4,0.0 +25765,59,55,42,0.0 +25765,23,9,22,0.0 +25765,68,12.5,20,0.0 +25765,17,39,22,0.0 +25766,14,23.25,30,0.0 +25766,75,7.75,16,0.0 +25766,35,18,5,0.0 +25766,47,9.5,35,0.0 +25766,27,43.9,2,0.0 +25766,16,17.45,35,0.0 +25766,69,36,40,0.0 +25766,37,26,9,0.0 +25766,5,21.35,32,0.0 +25766,72,34.8,26,0.0 +25766,33,2.5,30,0.0 +25766,38,263.5,39,0.0 +25766,77,13,45,0.0 +25766,32,32,10,0.0 +25766,63,43.9,33,0.0 +25766,49,20,1,0.0 +25766,29,123.79,2,0.0 +25766,64,33.25,24,0.0 +25766,50,16.25,18,0.0 +25766,68,12.5,18,0.0 +25766,25,14,17,0.0 +25766,71,21.5,34,0.0 +25766,6,25,20,0.0 +25766,51,53,44,0.0 +25766,22,21,31,0.0 +25766,61,28.5,41,0.0 +25766,36,19,8,0.0 +25766,45,9.5,6,0.0 +25766,70,15,15,0.0 +25766,53,32.8,10,0.0 +25766,43,46,13,0.0 +25766,23,9,6,0.0 +25766,57,19.5,34,0.0 +25766,28,45.6,3,0.0 +25767,49,20,28,0.0 +25767,60,34,37,0.0 +25767,33,2.5,18,0.0 +25767,31,12.5,31,0.0 +25767,21,10,42,0.0 +25767,18,62.5,49,0.0 +25767,1,18,45,0.0 +25767,36,19,13,0.0 +25767,24,4.5,42,0.0 +25767,46,12,42,0.0 +25767,44,19.45,45,0.0 +25767,65,21.05,13,0.0 +25767,66,17,9,0.0 +25767,14,23.25,16,0.0 +25767,5,21.35,12,0.0 +25767,38,263.5,38,0.0 +25767,27,43.9,23,0.0 +25767,6,25,25,0.0 +25768,33,2.5,39,0.0 +25768,70,15,17,0.0 +25768,4,22,9,0.0 +25768,39,18,41,0.0 +25768,19,9.2,27,0.0 +25768,52,7,34,0.0 +25768,28,45.6,19,0.0 +25768,66,17,21,0.0 +25768,58,13.25,44,0.0 +25768,73,15,44,0.0 +25768,57,19.5,35,0.0 +25768,50,16.25,37,0.0 +25768,20,81,46,0.0 +25768,21,10,9,0.0 +25768,1,18,15,0.0 +25768,63,43.9,10,0.0 +25768,24,4.5,26,0.0 +25768,64,33.25,15,0.0 +25768,40,18.4,8,0.0 +25768,15,15.5,8,0.0 +25768,53,32.8,12,0.0 +25768,27,43.9,3,0.0 +25768,10,31,43,0.0 +25768,54,7.45,39,0.0 +25768,3,10,11,0.0 +25768,77,13,26,0.0 +25768,8,40,45,0.0 +25768,37,26,37,0.0 +25768,61,28.5,48,0.0 +25768,67,14,29,0.0 +25768,12,38,25,0.0 +25768,48,12.75,15,0.0 +25768,26,31.23,47,0.0 +25768,18,62.5,40,0.0 +25768,56,38,8,0.0 +25768,68,12.5,18,0.0 +25768,30,25.89,11,0.0 +25768,16,17.45,21,0.0 +25768,41,9.65,35,0.0 +25768,23,9,37,0.0 +25768,32,32,33,0.0 +25768,44,19.45,13,0.0 +25768,69,36,42,0.0 +25768,5,21.35,11,0.0 +25768,22,21,10,0.0 +25768,45,9.5,39,0.0 +25768,36,19,10,0.0 +25768,74,10,9,0.0 +25768,62,49.3,44,0.0 +25768,35,18,43,0.0 +25768,71,21.5,5,0.0 +25768,7,30,33,0.0 +25769,48,12.75,14,0.0 +25769,60,34,2,0.0 +25769,41,9.65,3,0.0 +25769,22,21,47,0.0 +25769,42,14,31,0.0 +25769,7,30,46,0.0 +25769,76,18,32,0.0 +25769,58,13.25,20,0.0 +25769,71,21.5,42,0.0 +25769,12,38,49,0.0 +25769,10,31,29,0.0 +25769,4,22,27,0.0 +25769,1,18,47,0.0 +25769,5,21.35,17,0.0 +25769,31,12.5,6,0.0 +25769,45,9.5,35,0.0 +25769,69,36,41,0.0 +25769,15,15.5,42,0.0 +25769,35,18,33,0.0 +25769,37,26,40,0.0 +25769,70,15,33,0.0 +25769,26,31.23,5,0.0 +25769,43,46,7,0.0 +25769,63,43.9,35,0.0 +25769,68,12.5,32,0.0 +25769,23,9,40,0.0 +25769,17,39,44,0.0 +25769,54,7.45,46,0.0 +25769,62,49.3,4,0.0 +25769,9,97,31,0.0 +25769,36,19,18,0.0 +25769,2,19,6,0.0 +25769,20,81,15,0.0 +25769,24,4.5,6,0.0 +25769,44,19.45,23,0.0 +25769,8,40,24,0.0 +25769,66,17,8,0.0 +25769,19,9.2,45,0.0 +25769,51,53,37,0.0 +25769,34,14,38,0.0 +25769,32,32,35,0.0 +25769,38,263.5,38,0.0 +25769,29,123.79,22,0.0 +25770,10,31,15,0.0 +25770,41,9.65,40,0.0 +25770,42,14,21,0.0 +25770,25,14,16,0.0 +25770,58,13.25,26,0.0 +25770,37,26,44,0.0 +25770,11,21,39,0.0 +25770,15,15.5,16,0.0 +25770,32,32,22,0.0 +25770,29,123.79,5,0.0 +25770,66,17,30,0.0 +25770,45,9.5,8,0.0 +25770,53,32.8,33,0.0 +25770,48,12.75,50,0.0 +25770,30,25.89,20,0.0 +25770,40,18.4,42,0.0 +25770,28,45.6,5,0.0 +25770,56,38,35,0.0 +25770,31,12.5,36,0.0 +25770,54,7.45,35,0.0 +25770,72,34.8,8,0.0 +25770,74,10,27,0.0 +25770,2,19,50,0.0 +25770,50,16.25,40,0.0 +25770,52,7,7,0.0 +25770,36,19,12,0.0 +25770,64,33.25,38,0.0 +25770,69,36,42,0.0 +25770,57,19.5,17,0.0 +25770,12,38,12,0.0 +25770,24,4.5,28,0.0 +25770,77,13,4,0.0 +25770,70,15,7,0.0 +25770,49,20,12,0.0 +25770,75,7.75,36,0.0 +25770,33,2.5,24,0.0 +25770,67,14,46,0.0 +25770,55,24,3,0.0 +25770,39,18,24,0.0 +25770,46,12,41,0.0 +25770,35,18,15,0.0 +25770,71,21.5,34,0.0 +25770,23,9,19,0.0 +25770,26,31.23,29,0.0 +25770,73,15,5,0.0 +25770,34,14,19,0.0 +25770,5,21.35,45,0.0 +25770,8,40,40,0.0 +25770,4,22,7,0.0 +25770,59,55,15,0.0 +25770,9,97,42,0.0 +25770,21,10,4,0.0 +25770,27,43.9,12,0.0 +25770,17,39,20,0.0 +25771,1,18,39,0.0 +25771,68,12.5,14,0.0 +25771,57,19.5,10,0.0 +25771,62,49.3,41,0.0 +25771,69,36,50,0.0 +25771,2,19,3,0.0 +25771,16,17.45,5,0.0 +25771,3,10,9,0.0 +25771,22,21,32,0.0 +25771,18,62.5,22,0.0 +25771,15,15.5,34,0.0 +25771,60,34,26,0.0 +25771,53,32.8,44,0.0 +25771,35,18,3,0.0 +25771,40,18.4,33,0.0 +25771,41,9.65,30,0.0 +25771,61,28.5,39,0.0 +25771,50,16.25,22,0.0 +25771,25,14,25,0.0 +25771,27,43.9,50,0.0 +25771,43,46,50,0.0 +25771,75,7.75,39,0.0 +25771,55,24,12,0.0 +25771,23,9,25,0.0 +25771,4,22,13,0.0 +25771,31,12.5,4,0.0 +25771,33,2.5,40,0.0 +25771,37,26,23,0.0 +25771,65,21.05,13,0.0 +25771,44,19.45,41,0.0 +25771,14,23.25,9,0.0 +25771,47,9.5,40,0.0 +25771,66,17,3,0.0 +25771,30,25.89,26,0.0 +25771,56,38,15,0.0 +25771,26,31.23,27,0.0 +25771,54,7.45,39,0.0 +25771,59,55,48,0.0 +25771,64,33.25,22,0.0 +25771,72,34.8,45,0.0 +25771,28,45.6,16,0.0 +25771,39,18,45,0.0 +25771,52,7,5,0.0 +25771,74,10,23,0.0 +25771,13,6,8,0.0 +25771,19,9.2,4,0.0 +25772,36,19,33,0.0 +25772,60,34,20,0.0 +25772,14,23.25,26,0.0 +25772,1,18,25,0.0 +25772,73,15,28,0.0 +25772,10,31,39,0.0 +25772,72,34.8,34,0.0 +25772,32,32,19,0.0 +25772,31,12.5,36,0.0 +25772,39,18,16,0.0 +25772,40,18.4,7,0.0 +25772,63,43.9,45,0.0 +25772,47,9.5,3,0.0 +25772,70,15,21,0.0 +25772,67,14,42,0.0 +25772,41,9.65,38,0.0 +25772,55,24,20,0.0 +25772,24,4.5,30,0.0 +25772,75,7.75,41,0.0 +25772,16,17.45,40,0.0 +25772,20,81,48,0.0 +25772,49,20,29,0.0 +25772,64,33.25,42,0.0 +25772,69,36,48,0.0 +25772,4,22,20,0.0 +25772,68,12.5,14,0.0 +25772,28,45.6,14,0.0 +25772,23,9,29,0.0 +25772,52,7,49,0.0 +25772,35,18,42,0.0 +25772,66,17,15,0.0 +25772,7,30,23,0.0 +25772,56,38,32,0.0 +25772,46,12,30,0.0 +25772,44,19.45,21,0.0 +25772,65,21.05,41,0.0 +25772,12,38,20,0.0 +25772,71,21.5,49,0.0 +25772,34,14,39,0.0 +25772,51,53,21,0.0 +25772,2,19,21,0.0 +25772,3,10,34,0.0 +25772,8,40,17,0.0 +25772,54,7.45,3,0.0 +25772,6,25,31,0.0 +25772,37,26,8,0.0 +25772,26,31.23,29,0.0 +25772,17,39,43,0.0 +25772,27,43.9,43,0.0 +25772,50,16.25,12,0.0 +25772,25,14,6,0.0 +25772,19,9.2,14,0.0 +25772,57,19.5,49,0.0 +25772,48,12.75,11,0.0 +25772,42,14,42,0.0 +25772,15,15.5,33,0.0 +25772,43,46,19,0.0 +25772,22,21,47,0.0 +25772,9,97,33,0.0 +25772,29,123.79,32,0.0 +25772,58,13.25,47,0.0 +25772,53,32.8,23,0.0 +25772,61,28.5,25,0.0 +25772,45,9.5,32,0.0 +25773,42,14,6,0.0 +25773,74,10,42,0.0 +25773,55,24,21,0.0 +25773,68,12.5,38,0.0 +25774,57,19.5,25,0.0 +25774,71,21.5,49,0.0 +25774,35,18,42,0.0 +25774,37,26,15,0.0 +25774,19,9.2,39,0.0 +25774,75,7.75,45,0.0 +25774,49,20,48,0.0 +25774,30,25.89,6,0.0 +25774,73,15,16,0.0 +25774,6,25,12,0.0 +25774,4,22,18,0.0 +25774,77,13,32,0.0 +25774,5,21.35,8,0.0 +25774,17,39,21,0.0 +25774,47,9.5,48,0.0 +25774,36,19,5,0.0 +25774,33,2.5,5,0.0 +25774,51,53,18,0.0 +25774,24,4.5,16,0.0 +25774,23,9,46,0.0 +25774,39,18,42,0.0 +25774,60,34,26,0.0 +25774,3,10,7,0.0 +25774,62,49.3,19,0.0 +25774,20,81,48,0.0 +25774,43,46,27,0.0 +25774,72,34.8,8,0.0 +25774,1,18,46,0.0 +25774,61,28.5,11,0.0 +25774,40,18.4,18,0.0 +25774,8,40,36,0.0 +25774,52,7,46,0.0 +25774,44,19.45,28,0.0 +25774,26,31.23,17,0.0 +25774,25,14,43,0.0 +25774,41,9.65,12,0.0 +25774,58,13.25,3,0.0 +25774,64,33.25,8,0.0 +25774,16,17.45,32,0.0 +25774,9,97,8,0.0 +25774,14,23.25,17,0.0 +25774,46,12,49,0.0 +25774,10,31,25,0.0 +25775,46,12,13,0.0 +25775,59,55,34,0.0 +25775,52,7,39,0.0 +25775,13,6,41,0.0 +25775,67,14,39,0.0 +25775,51,53,26,0.0 +25775,19,9.2,29,0.0 +25775,58,13.25,8,0.0 +25775,38,263.5,43,0.0 +25775,33,2.5,16,0.0 +25776,63,43.9,20,0.0 +25776,27,43.9,38,0.0 +25776,69,36,47,0.0 +25776,9,97,44,0.0 +25776,74,10,5,0.0 +25776,66,17,50,0.0 +25776,22,21,20,0.0 +25776,54,7.45,16,0.0 +25776,14,23.25,28,0.0 +25776,55,24,18,0.0 +25776,61,28.5,29,0.0 +25776,33,2.5,40,0.0 +25776,72,34.8,15,0.0 +25776,50,16.25,27,0.0 +25776,17,39,40,0.0 +25776,43,46,49,0.0 +25776,44,19.45,47,0.0 +25776,57,19.5,32,0.0 +25776,73,15,2,0.0 +25776,25,14,50,0.0 +25776,32,32,44,0.0 +25776,37,26,11,0.0 +25776,45,9.5,37,0.0 +25776,76,18,39,0.0 +25776,6,25,20,0.0 +25776,23,9,42,0.0 +25777,7,30,7,0.0 +25777,24,4.5,12,0.0 +25777,12,38,18,0.0 +25777,48,12.75,1,0.0 +25777,60,34,29,0.0 +25777,11,21,35,0.0 +25777,51,53,37,0.0 +25777,45,9.5,5,0.0 +25777,15,15.5,40,0.0 +25777,35,18,19,0.0 +25777,72,34.8,37,0.0 +25777,61,28.5,8,0.0 +25777,29,123.79,41,0.0 +25777,1,18,46,0.0 +25777,33,2.5,43,0.0 +25777,62,49.3,15,0.0 +25777,8,40,22,0.0 +25777,31,12.5,36,0.0 +25777,9,97,6,0.0 +25777,32,32,12,0.0 +25777,5,21.35,18,0.0 +25777,47,9.5,46,0.0 +25777,20,81,28,0.0 +25777,18,62.5,6,0.0 +25777,69,36,42,0.0 +25777,26,31.23,14,0.0 +25777,16,17.45,43,0.0 +25777,40,18.4,37,0.0 +25777,14,23.25,45,0.0 +25777,52,7,33,0.0 +25778,17,39,21,0.0 +25778,75,7.75,33,0.0 +25778,51,53,50,0.0 +25778,32,32,23,0.0 +25778,37,26,48,0.0 +25778,54,7.45,37,0.0 +25778,61,28.5,49,0.0 +25778,6,25,10,0.0 +25778,16,17.45,26,0.0 +25778,44,19.45,33,0.0 +25778,27,43.9,23,0.0 +25778,74,10,35,0.0 +25778,31,12.5,26,0.0 +25778,39,18,12,0.0 +25778,3,10,23,0.0 +25778,49,20,4,0.0 +25778,24,4.5,14,0.0 +25778,73,15,49,0.0 +25778,64,33.25,9,0.0 +25778,5,21.35,2,0.0 +25778,23,9,21,0.0 +25778,11,21,21,0.0 +25778,68,12.5,38,0.0 +25778,42,14,1,0.0 +25778,21,10,1,0.0 +25778,41,9.65,44,0.0 +25778,69,36,6,0.0 +25778,53,32.8,48,0.0 +25778,20,81,40,0.0 +25778,63,43.9,32,0.0 +25778,28,45.6,46,0.0 +25778,66,17,44,0.0 +25778,77,13,18,0.0 +25778,52,7,50,0.0 +25778,12,38,48,0.0 +25778,40,18.4,47,0.0 +25778,34,14,14,0.0 +25778,13,6,39,0.0 +25778,4,22,21,0.0 +25779,13,6,27,0.0 +25779,6,25,3,0.0 +25779,12,38,19,0.0 +25779,62,49.3,38,0.0 +25779,63,43.9,46,0.0 +25779,37,26,40,0.0 +25779,15,15.5,10,0.0 +25779,59,55,47,0.0 +25779,26,31.23,37,0.0 +25779,20,81,46,0.0 +25779,44,19.45,24,0.0 +25779,60,34,49,0.0 +25779,72,34.8,14,0.0 +25779,9,97,44,0.0 +25779,16,17.45,9,0.0 +25779,51,53,31,0.0 +25779,22,21,11,0.0 +25779,10,31,15,0.0 +25779,40,18.4,33,0.0 +25779,30,25.89,13,0.0 +25779,5,21.35,1,0.0 +25779,50,16.25,49,0.0 +25779,55,24,46,0.0 +25779,32,32,36,0.0 +25779,71,21.5,34,0.0 +25779,52,7,6,0.0 +25779,1,18,18,0.0 +25779,73,15,38,0.0 +25779,74,10,3,0.0 +25779,76,18,20,0.0 +25779,48,12.75,26,0.0 +25779,46,12,16,0.0 +25779,19,9.2,46,0.0 +25779,21,10,8,0.0 +25779,49,20,15,0.0 +25779,27,43.9,2,0.0 +25779,56,38,40,0.0 +25779,14,23.25,23,0.0 +25779,57,19.5,4,0.0 +25779,38,263.5,35,0.0 +25779,68,12.5,8,0.0 +25779,67,14,22,0.0 +25779,2,19,22,0.0 +25779,45,9.5,30,0.0 +25779,35,18,35,0.0 +25779,34,14,31,0.0 +25779,77,13,3,0.0 +25779,53,32.8,19,0.0 +25779,23,9,17,0.0 +25779,11,21,44,0.0 +25779,42,14,38,0.0 +25779,7,30,50,0.0 +25779,29,123.79,26,0.0 +25779,17,39,42,0.0 +25779,69,36,6,0.0 +25779,54,7.45,13,0.0 +25779,70,15,47,0.0 +25779,8,40,1,0.0 +25779,75,7.75,1,0.0 +25779,66,17,24,0.0 +25779,43,46,9,0.0 +25779,58,13.25,9,0.0 +25779,61,28.5,3,0.0 +25779,18,62.5,41,0.0 +25779,31,12.5,47,0.0 +25779,33,2.5,35,0.0 +25779,3,10,16,0.0 +25779,64,33.25,46,0.0 +25780,3,10,12,0.0 +25780,69,36,49,0.0 +25780,72,34.8,12,0.0 +25780,70,15,36,0.0 +25780,42,14,11,0.0 +25780,52,7,3,0.0 +25780,31,12.5,1,0.0 +25780,24,4.5,33,0.0 +25780,20,81,47,0.0 +25780,30,25.89,13,0.0 +25780,26,31.23,16,0.0 +25780,32,32,49,0.0 +25780,9,97,9,0.0 +25780,1,18,48,0.0 +25780,14,23.25,40,0.0 +25780,34,14,49,0.0 +25780,18,62.5,7,0.0 +25780,4,22,8,0.0 +25780,39,18,19,0.0 +25780,11,21,48,0.0 +25780,50,16.25,21,0.0 +25780,36,19,23,0.0 +25780,55,24,38,0.0 +25780,23,9,38,0.0 +25780,65,21.05,6,0.0 +25780,67,14,44,0.0 +25780,6,25,14,0.0 +25780,17,39,7,0.0 +25780,75,7.75,38,0.0 +25780,21,10,27,0.0 +25780,73,15,40,0.0 +25780,54,7.45,39,0.0 +25780,8,40,16,0.0 +25780,19,9.2,10,0.0 +25780,40,18.4,50,0.0 +25780,62,49.3,16,0.0 +25780,63,43.9,43,0.0 +25780,57,19.5,5,0.0 +25780,60,34,14,0.0 +25780,16,17.45,11,0.0 +25780,27,43.9,31,0.0 +25780,59,55,6,0.0 +25780,37,26,45,0.0 +25780,10,31,5,0.0 +25780,25,14,25,0.0 +25780,49,20,38,0.0 +25780,71,21.5,6,0.0 +25780,58,13.25,1,0.0 +25780,22,21,20,0.0 +25780,5,21.35,43,0.0 +25780,76,18,35,0.0 +25780,64,33.25,35,0.0 +25780,41,9.65,37,0.0 +25780,44,19.45,9,0.0 +25780,53,32.8,46,0.0 +25780,46,12,47,0.0 +25780,61,28.5,28,0.0 +25780,7,30,26,0.0 +25780,47,9.5,11,0.0 +25780,43,46,2,0.0 +25780,13,6,38,0.0 +25780,28,45.6,44,0.0 +25780,15,15.5,8,0.0 +25780,2,19,10,0.0 +25780,51,53,18,0.0 +25781,1,18,27,0.0 +25781,32,32,1,0.0 +25781,77,13,8,0.0 +25781,25,14,7,0.0 +25781,67,14,39,0.0 +25781,48,12.75,15,0.0 +25781,28,45.6,35,0.0 +25781,16,17.45,26,0.0 +25781,5,21.35,45,0.0 +25781,49,20,34,0.0 +25781,57,19.5,45,0.0 +25781,50,16.25,2,0.0 +25781,69,36,15,0.0 +25781,72,34.8,12,0.0 +25781,6,25,49,0.0 +25781,36,19,47,0.0 +25781,4,22,6,0.0 +25781,19,9.2,28,0.0 +25782,60,34,10,0.0 +25782,77,13,9,0.0 +25782,25,14,41,0.0 +25782,38,263.5,49,0.0 +25782,20,81,12,0.0 +25782,37,26,24,0.0 +25782,72,34.8,16,0.0 +25782,47,9.5,50,0.0 +25782,39,18,8,0.0 +25782,55,24,27,0.0 +25782,70,15,32,0.0 +25782,14,23.25,44,0.0 +25782,43,46,13,0.0 +25782,11,21,45,0.0 +25782,17,39,14,0.0 +25782,22,21,49,0.0 +25782,29,123.79,27,0.0 +25782,28,45.6,46,0.0 +25782,12,38,27,0.0 +25782,44,19.45,12,0.0 +25782,73,15,2,0.0 +25782,51,53,46,0.0 +25782,31,12.5,31,0.0 +25783,69,36,32,0.0 +25783,17,39,6,0.0 +25783,22,21,18,0.0 +25783,47,9.5,31,0.0 +25783,58,13.25,44,0.0 +25784,3,10,25,0.0 +25784,26,31.23,45,0.0 +25784,49,20,41,0.0 +25784,5,21.35,3,0.0 +25784,31,12.5,12,0.0 +25784,39,18,24,0.0 +25784,21,10,28,0.0 +25784,4,22,27,0.0 +25784,53,32.8,21,0.0 +25784,73,15,3,0.0 +25784,44,19.45,23,0.0 +25784,69,36,8,0.0 +25784,35,18,47,0.0 +25784,64,33.25,8,0.0 +25784,24,4.5,46,0.0 +25784,28,45.6,20,0.0 +25784,1,18,37,0.0 +25784,27,43.9,28,0.0 +25784,34,14,37,0.0 +25784,36,19,24,0.0 +25784,62,49.3,29,0.0 +25784,50,16.25,31,0.0 +25784,30,25.89,10,0.0 +25784,15,15.5,42,0.0 +25784,76,18,2,0.0 +25784,23,9,2,0.0 +25784,57,19.5,11,0.0 +25784,32,32,3,0.0 +25784,66,17,36,0.0 +25785,20,81,20,0.0 +25785,61,28.5,9,0.0 +25785,30,25.89,2,0.0 +25785,31,12.5,27,0.0 +25785,6,25,10,0.0 +25785,22,21,39,0.0 +25785,67,14,2,0.0 +25785,69,36,19,0.0 +25785,26,31.23,36,0.0 +25785,21,10,16,0.0 +25785,33,2.5,19,0.0 +25785,49,20,33,0.0 +25785,25,14,26,0.0 +25785,27,43.9,7,0.0 +25785,47,9.5,47,0.0 +25785,71,21.5,42,0.0 +25785,55,24,39,0.0 +25785,1,18,44,0.0 +25785,4,22,42,0.0 +25785,8,40,19,0.0 +25785,48,12.75,42,0.0 +25785,14,23.25,48,0.0 +25785,59,55,38,0.0 +25785,44,19.45,23,0.0 +25785,24,4.5,15,0.0 +25785,9,97,23,0.0 +25785,10,31,19,0.0 +25785,43,46,3,0.0 +25785,66,17,38,0.0 +25785,74,10,35,0.0 +25785,36,19,30,0.0 +25785,65,21.05,25,0.0 +25785,45,9.5,11,0.0 +25785,3,10,40,0.0 +25785,12,38,9,0.0 +25785,15,15.5,40,0.0 +25785,77,13,26,0.0 +25785,62,49.3,47,0.0 +25785,75,7.75,2,0.0 +25785,50,16.25,8,0.0 +25785,39,18,43,0.0 +25785,52,7,38,0.0 +25785,11,21,43,0.0 +25785,19,9.2,28,0.0 +25785,70,15,23,0.0 +25785,72,34.8,36,0.0 +25785,64,33.25,40,0.0 +25785,34,14,46,0.0 +25785,38,263.5,17,0.0 +25785,51,53,43,0.0 +25786,57,19.5,34,0.0 +25786,15,15.5,15,0.0 +25786,53,32.8,36,0.0 +25786,14,23.25,8,0.0 +25786,45,9.5,47,0.0 +25786,6,25,25,0.0 +25786,27,43.9,50,0.0 +25786,68,12.5,32,0.0 +25786,1,18,6,0.0 +25786,73,15,46,0.0 +25786,29,123.79,50,0.0 +25786,59,55,15,0.0 +25786,62,49.3,37,0.0 +25786,74,10,28,0.0 +25786,41,9.65,34,0.0 +25786,37,26,46,0.0 +25786,54,7.45,11,0.0 +25786,34,14,24,0.0 +25786,2,19,17,0.0 +25786,19,9.2,8,0.0 +25786,46,12,31,0.0 +25786,63,43.9,34,0.0 +25786,42,14,9,0.0 +25786,72,34.8,8,0.0 +25786,16,17.45,7,0.0 +25786,55,24,29,0.0 +25786,43,46,17,0.0 +25786,10,31,35,0.0 +25786,12,38,3,0.0 +25786,20,81,34,0.0 +25786,40,18.4,13,0.0 +25786,39,18,14,0.0 +25786,7,30,6,0.0 +25786,71,21.5,9,0.0 +25786,47,9.5,42,0.0 +25786,11,21,49,0.0 +25786,3,10,37,0.0 +25786,25,14,7,0.0 +25786,9,97,19,0.0 +25786,70,15,17,0.0 +25786,44,19.45,9,0.0 +25786,21,10,37,0.0 +25786,36,19,2,0.0 +25786,67,14,22,0.0 +25786,50,16.25,1,0.0 +25786,4,22,20,0.0 +25786,30,25.89,14,0.0 +25786,65,21.05,1,0.0 +25786,56,38,45,0.0 +25786,61,28.5,42,0.0 +25786,38,263.5,33,0.0 +25786,17,39,39,0.0 +25786,22,21,17,0.0 +25786,35,18,38,0.0 +25786,31,12.5,29,0.0 +25787,42,14,14,0.0 +25787,45,9.5,28,0.0 +25787,66,17,21,0.0 +25787,67,14,39,0.0 +25787,68,12.5,28,0.0 +25787,30,25.89,30,0.0 +25787,28,45.6,47,0.0 +25787,19,9.2,33,0.0 +25787,15,15.5,15,0.0 +25787,56,38,34,0.0 +25787,27,43.9,45,0.0 +25787,20,81,9,0.0 +25787,4,22,34,0.0 +25787,53,32.8,6,0.0 +25787,57,19.5,36,0.0 +25787,22,21,49,0.0 +25787,33,2.5,39,0.0 +25787,14,23.25,23,0.0 +25787,55,24,49,0.0 +25787,32,32,39,0.0 +25787,74,10,12,0.0 +25787,35,18,3,0.0 +25787,8,40,9,0.0 +25787,46,12,16,0.0 +25787,63,43.9,17,0.0 +25787,1,18,23,0.0 +25787,47,9.5,47,0.0 +25787,7,30,43,0.0 +25787,5,21.35,39,0.0 +25787,18,62.5,3,0.0 +25787,71,21.5,45,0.0 +25787,76,18,37,0.0 +25787,31,12.5,45,0.0 +25787,10,31,5,0.0 +25787,59,55,2,0.0 +25787,3,10,16,0.0 +25787,11,21,14,0.0 +25787,52,7,16,0.0 +25787,65,21.05,29,0.0 +25787,69,36,12,0.0 +25787,60,34,28,0.0 +25787,37,26,1,0.0 +25787,34,14,41,0.0 +25787,38,263.5,20,0.0 +25787,50,16.25,36,0.0 +25787,9,97,33,0.0 +25787,62,49.3,18,0.0 +25787,21,10,30,0.0 +25787,70,15,8,0.0 +25787,64,33.25,39,0.0 +25787,13,6,39,0.0 +25787,24,4.5,48,0.0 +25787,44,19.45,27,0.0 +25787,72,34.8,48,0.0 +25788,16,17.45,50,0.0 +25788,12,38,26,0.0 +25788,74,10,27,0.0 +25788,10,31,6,0.0 +25788,1,18,35,0.0 +25788,36,19,9,0.0 +25788,9,97,22,0.0 +25788,38,263.5,26,0.0 +25788,62,49.3,20,0.0 +25788,77,13,40,0.0 +25788,70,15,5,0.0 +25788,69,36,42,0.0 +25788,25,14,45,0.0 +25788,26,31.23,46,0.0 +25788,47,9.5,24,0.0 +25788,55,24,7,0.0 +25788,18,62.5,16,0.0 +25788,14,23.25,44,0.0 +25788,43,46,37,0.0 +25788,59,55,9,0.0 +25788,21,10,39,0.0 +25788,68,12.5,13,0.0 +25788,58,13.25,2,0.0 +25788,3,10,14,0.0 +25788,30,25.89,18,0.0 +25788,27,43.9,2,0.0 +25788,7,30,26,0.0 +25788,31,12.5,35,0.0 +25788,5,21.35,24,0.0 +25788,57,19.5,17,0.0 +25788,51,53,43,0.0 +25788,66,17,9,0.0 +25788,17,39,3,0.0 +25788,63,43.9,47,0.0 +25788,60,34,50,0.0 +25788,56,38,18,0.0 +25788,35,18,35,0.0 +25788,49,20,24,0.0 +25788,20,81,47,0.0 +25788,24,4.5,6,0.0 +25788,75,7.75,21,0.0 +25788,4,22,28,0.0 +25788,53,32.8,43,0.0 +25788,22,21,5,0.0 +25788,52,7,23,0.0 +25788,61,28.5,25,0.0 +25788,19,9.2,48,0.0 +25788,65,21.05,47,0.0 +25788,11,21,15,0.0 +25788,41,9.65,5,0.0 +25788,54,7.45,40,0.0 +25788,45,9.5,45,0.0 +25788,67,14,6,0.0 +25788,34,14,22,0.0 +25788,72,34.8,10,0.0 +25788,29,123.79,14,0.0 +25788,40,18.4,33,0.0 +25788,13,6,17,0.0 +25788,39,18,40,0.0 +25788,32,32,7,0.0 +25788,48,12.75,28,0.0 +25789,51,53,48,0.0 +25789,76,18,50,0.0 +25789,77,13,37,0.0 +25789,65,21.05,5,0.0 +25789,49,20,3,0.0 +25789,5,21.35,11,0.0 +25789,59,55,27,0.0 +25789,2,19,4,0.0 +25789,44,19.45,34,0.0 +25789,3,10,32,0.0 +25789,74,10,20,0.0 +25789,52,7,5,0.0 +25789,23,9,39,0.0 +25789,41,9.65,50,0.0 +25789,72,34.8,38,0.0 +25789,17,39,34,0.0 +25789,48,12.75,29,0.0 +25789,31,12.5,41,0.0 +25789,19,9.2,36,0.0 +25789,34,14,10,0.0 +25789,61,28.5,50,0.0 +25789,32,32,33,0.0 +25789,69,36,32,0.0 +25789,47,9.5,38,0.0 +25789,4,22,34,0.0 +25789,50,16.25,5,0.0 +25789,58,13.25,29,0.0 +25789,1,18,23,0.0 +25789,14,23.25,14,0.0 +25789,57,19.5,29,0.0 +25789,60,34,33,0.0 +25789,68,12.5,22,0.0 +25789,39,18,50,0.0 +25789,55,24,15,0.0 +25789,18,62.5,3,0.0 +25789,21,10,40,0.0 +25789,40,18.4,49,0.0 +25789,63,43.9,18,0.0 +25789,67,14,32,0.0 +25789,73,15,29,0.0 +25789,33,2.5,9,0.0 +25789,70,15,14,0.0 +25789,7,30,25,0.0 +25789,43,46,19,0.0 +25789,29,123.79,20,0.0 +25789,28,45.6,14,0.0 +25789,64,33.25,41,0.0 +25789,46,12,44,0.0 +25789,15,15.5,11,0.0 +25789,71,21.5,15,0.0 +25789,66,17,27,0.0 +25789,35,18,19,0.0 +25789,56,38,32,0.0 +25790,13,6,6,0.0 +25790,75,7.75,11,0.0 +25790,43,46,40,0.0 +25790,42,14,43,0.0 +25790,74,10,16,0.0 +25790,51,53,41,0.0 +25790,50,16.25,1,0.0 +25790,36,19,29,0.0 +25790,22,21,35,0.0 +25790,73,15,43,0.0 +25790,16,17.45,45,0.0 +25790,18,62.5,20,0.0 +25790,31,12.5,38,0.0 +25790,20,81,38,0.0 +25790,28,45.6,12,0.0 +25790,58,13.25,10,0.0 +25790,35,18,11,0.0 +25790,15,15.5,41,0.0 +25790,8,40,33,0.0 +25790,65,21.05,28,0.0 +25790,70,15,44,0.0 +25790,11,21,19,0.0 +25790,48,12.75,17,0.0 +25790,69,36,33,0.0 +25790,32,32,31,0.0 +25790,29,123.79,24,0.0 +25790,62,49.3,18,0.0 +25790,46,12,15,0.0 +25790,76,18,18,0.0 +25790,10,31,44,0.0 +25790,26,31.23,45,0.0 +25790,49,20,49,0.0 +25790,1,18,31,0.0 +25790,14,23.25,40,0.0 +25790,41,9.65,15,0.0 +25790,19,9.2,9,0.0 +25790,3,10,14,0.0 +25790,4,22,10,0.0 +25790,52,7,45,0.0 +25790,59,55,30,0.0 +25790,66,17,2,0.0 +25790,56,38,27,0.0 +25790,72,34.8,48,0.0 +25790,25,14,11,0.0 +25790,61,28.5,26,0.0 +25790,53,32.8,2,0.0 +25790,37,26,26,0.0 +25790,63,43.9,23,0.0 +25790,64,33.25,40,0.0 +25790,71,21.5,24,0.0 +25790,24,4.5,23,0.0 +25790,67,14,44,0.0 +25790,55,24,10,0.0 +25791,47,9.5,47,0.0 +25791,53,32.8,24,0.0 +25791,73,15,11,0.0 +25791,42,14,45,0.0 +25791,55,24,34,0.0 +25791,77,13,39,0.0 +25791,37,26,13,0.0 +25791,9,97,15,0.0 +25791,13,6,43,0.0 +25791,17,39,25,0.0 +25791,5,21.35,13,0.0 +25791,72,34.8,22,0.0 +25791,54,7.45,48,0.0 +25791,7,30,2,0.0 +25791,25,14,27,0.0 +25791,52,7,4,0.0 +25791,26,31.23,14,0.0 +25791,4,22,26,0.0 +25791,67,14,32,0.0 +25791,11,21,31,0.0 +25791,1,18,16,0.0 +25791,57,19.5,18,0.0 +25791,23,9,39,0.0 +25791,21,10,37,0.0 +25791,24,4.5,8,0.0 +25791,64,33.25,48,0.0 +25791,46,12,41,0.0 +25791,66,17,35,0.0 +25791,12,38,36,0.0 +25791,41,9.65,37,0.0 +25791,31,12.5,21,0.0 +25791,76,18,20,0.0 +25791,14,23.25,43,0.0 +25791,6,25,43,0.0 +25791,34,14,50,0.0 +25791,27,43.9,36,0.0 +25791,43,46,4,0.0 +25791,61,28.5,9,0.0 +25791,60,34,24,0.0 +25791,18,62.5,9,0.0 +25791,75,7.75,7,0.0 +25791,56,38,28,0.0 +25791,22,21,7,0.0 +25791,63,43.9,24,0.0 +25791,20,81,35,0.0 +25791,10,31,29,0.0 +25792,19,9.2,31,0.0 +25792,6,25,46,0.0 +25792,68,12.5,49,0.0 +25792,52,7,4,0.0 +25792,58,13.25,40,0.0 +25792,70,15,27,0.0 +25792,53,32.8,18,0.0 +25792,10,31,7,0.0 +25792,20,81,32,0.0 +25792,24,4.5,13,0.0 +25792,7,30,44,0.0 +25792,28,45.6,13,0.0 +25792,62,49.3,46,0.0 +25792,66,17,27,0.0 +25792,37,26,7,0.0 +25792,63,43.9,39,0.0 +25792,54,7.45,5,0.0 +25792,57,19.5,38,0.0 +25792,2,19,15,0.0 +25792,9,97,40,0.0 +25792,51,53,8,0.0 +25792,15,15.5,34,0.0 +25792,32,32,4,0.0 +25792,33,2.5,33,0.0 +25792,76,18,46,0.0 +25792,55,24,4,0.0 +25792,77,13,41,0.0 +25792,60,34,37,0.0 +25792,47,9.5,21,0.0 +25792,18,62.5,13,0.0 +25792,43,46,34,0.0 +25792,26,31.23,46,0.0 +25792,56,38,15,0.0 +25792,27,43.9,32,0.0 +25792,14,23.25,11,0.0 +25793,72,34.8,15,0.0 +25793,9,97,44,0.0 +25793,26,31.23,43,0.0 +25793,1,18,14,0.0 +25793,11,21,29,0.0 +25793,58,13.25,3,0.0 +25793,15,15.5,36,0.0 +25793,69,36,8,0.0 +25793,65,21.05,18,0.0 +25794,30,25.89,45,0.0 +25794,76,18,13,0.0 +25794,22,21,13,0.0 +25794,69,36,45,0.0 +25794,8,40,33,0.0 +25794,16,17.45,3,0.0 +25794,14,23.25,42,0.0 +25794,12,38,33,0.0 +25794,31,12.5,8,0.0 +25794,29,123.79,24,0.0 +25794,37,26,21,0.0 +25794,5,21.35,22,0.0 +25794,1,18,26,0.0 +25794,23,9,7,0.0 +25794,33,2.5,40,0.0 +25795,43,46,39,0.0 +25795,13,6,3,0.0 +25795,21,10,20,0.0 +25795,28,45.6,44,0.0 +25795,70,15,10,0.0 +25795,62,49.3,16,0.0 +25795,48,12.75,29,0.0 +25795,49,20,23,0.0 +25795,63,43.9,38,0.0 +25795,7,30,40,0.0 +25795,30,25.89,47,0.0 +25795,73,15,41,0.0 +25795,26,31.23,7,0.0 +25795,58,13.25,27,0.0 +25795,42,14,42,0.0 +25795,76,18,28,0.0 +25795,55,24,12,0.0 +25795,12,38,44,0.0 +25795,32,32,29,0.0 +25795,36,19,9,0.0 +25795,20,81,31,0.0 +25795,52,7,14,0.0 +25795,23,9,30,0.0 +25795,34,14,8,0.0 +25795,25,14,28,0.0 +25795,38,263.5,20,0.0 +25795,53,32.8,7,0.0 +25795,18,62.5,4,0.0 +25795,39,18,31,0.0 +25795,68,12.5,30,0.0 +25795,3,10,7,0.0 +25795,27,43.9,33,0.0 +25795,5,21.35,43,0.0 +25795,46,12,3,0.0 +25795,8,40,46,0.0 +25795,6,25,18,0.0 +25795,72,34.8,28,0.0 +25795,19,9.2,43,0.0 +25795,71,21.5,32,0.0 +25795,59,55,16,0.0 +25795,44,19.45,35,0.0 +25795,47,9.5,3,0.0 +25795,24,4.5,46,0.0 +25795,61,28.5,9,0.0 +25796,53,32.8,21,0.0 +25796,8,40,39,0.0 +25796,34,14,22,0.0 +25796,44,19.45,17,0.0 +25796,23,9,6,0.0 +25796,37,26,47,0.0 +25796,19,9.2,16,0.0 +25796,21,10,31,0.0 +25796,75,7.75,42,0.0 +25796,41,9.65,35,0.0 +25796,63,43.9,21,0.0 +25796,20,81,17,0.0 +25796,64,33.25,42,0.0 +25796,55,24,25,0.0 +25796,51,53,2,0.0 +25796,6,25,15,0.0 +25796,14,23.25,35,0.0 +25796,65,21.05,50,0.0 +25796,1,18,45,0.0 +25796,54,7.45,16,0.0 +25796,22,21,8,0.0 +25796,69,36,1,0.0 +25796,13,6,28,0.0 +25796,27,43.9,26,0.0 +25796,35,18,19,0.0 +25796,38,263.5,21,0.0 +25796,10,31,20,0.0 +25796,60,34,48,0.0 +25796,42,14,29,0.0 +25796,12,38,13,0.0 +25796,15,15.5,37,0.0 +25796,4,22,23,0.0 +25796,5,21.35,16,0.0 +25796,48,12.75,42,0.0 +25796,67,14,33,0.0 +25796,26,31.23,8,0.0 +25796,32,32,32,0.0 +25796,36,19,29,0.0 +25796,61,28.5,10,0.0 +25796,52,7,33,0.0 +25796,74,10,3,0.0 +25796,47,9.5,13,0.0 +25796,46,12,43,0.0 +25796,7,30,38,0.0 +25796,43,46,34,0.0 +25796,72,34.8,37,0.0 +25796,18,62.5,50,0.0 +25796,16,17.45,18,0.0 +25796,49,20,36,0.0 +25796,57,19.5,41,0.0 +25796,17,39,23,0.0 +25796,56,38,44,0.0 +25796,2,19,49,0.0 +25796,28,45.6,41,0.0 +25796,29,123.79,16,0.0 +25796,31,12.5,14,0.0 +25796,50,16.25,6,0.0 +25796,40,18.4,21,0.0 +25797,14,23.25,16,0.0 +25797,1,18,30,0.0 +25797,9,97,40,0.0 +25797,53,32.8,38,0.0 +25797,11,21,15,0.0 +25797,57,19.5,40,0.0 +25797,50,16.25,30,0.0 +25797,51,53,15,0.0 +25797,39,18,26,0.0 +25797,16,17.45,46,0.0 +25797,61,28.5,1,0.0 +25797,19,9.2,24,0.0 +25797,33,2.5,9,0.0 +25797,10,31,50,0.0 +25797,12,38,33,0.0 +25797,48,12.75,16,0.0 +25797,74,10,26,0.0 +25798,63,43.9,23,0.0 +25798,37,26,27,0.0 +25798,19,9.2,24,0.0 +25798,49,20,7,0.0 +25798,7,30,2,0.0 +25798,23,9,2,0.0 +25798,60,34,34,0.0 +25798,3,10,40,0.0 +25798,9,97,6,0.0 +25798,71,21.5,10,0.0 +25798,8,40,21,0.0 +25798,20,81,36,0.0 +25798,56,38,22,0.0 +25798,11,21,28,0.0 +25799,50,16.25,31,0.0 +25799,25,14,6,0.0 +25799,27,43.9,4,0.0 +25799,10,31,27,0.0 +25799,28,45.6,43,0.0 +25799,43,46,41,0.0 +25799,46,12,24,0.0 +25799,12,38,42,0.0 +25799,15,15.5,16,0.0 +25799,7,30,18,0.0 +25799,29,123.79,26,0.0 +25799,54,7.45,27,0.0 +25799,18,62.5,20,0.0 +25799,63,43.9,43,0.0 +25799,61,28.5,47,0.0 +25799,52,7,29,0.0 +25799,53,32.8,36,0.0 +25799,65,21.05,7,0.0 +25799,71,21.5,20,0.0 +25799,68,12.5,35,0.0 +25799,40,18.4,5,0.0 +25799,24,4.5,18,0.0 +25799,4,22,24,0.0 +25799,57,19.5,43,0.0 +25799,36,19,43,0.0 +25799,48,12.75,22,0.0 +25799,64,33.25,45,0.0 +25799,31,12.5,3,0.0 +25799,38,263.5,31,0.0 +25799,9,97,41,0.0 +25799,22,21,27,0.0 +25799,75,7.75,40,0.0 +25799,23,9,35,0.0 +25799,34,14,4,0.0 +25799,77,13,25,0.0 +25799,73,15,48,0.0 +25799,32,32,9,0.0 +25799,11,21,30,0.0 +25799,6,25,19,0.0 +25799,72,34.8,28,0.0 +25799,41,9.65,26,0.0 +25799,17,39,12,0.0 +25799,39,18,23,0.0 +25799,37,26,9,0.0 +25799,21,10,41,0.0 +25799,30,25.89,33,0.0 +25799,20,81,26,0.0 +25799,51,53,13,0.0 +25799,14,23.25,47,0.0 +25799,60,34,36,0.0 +25799,19,9.2,47,0.0 +25799,67,14,18,0.0 +25799,59,55,35,0.0 +25799,66,17,5,0.0 +25799,8,40,45,0.0 +25799,2,19,7,0.0 +25799,47,9.5,38,0.0 +25800,56,38,25,0.0 +25800,47,9.5,25,0.0 +25800,17,39,41,0.0 +25800,70,15,14,0.0 +25800,57,19.5,25,0.0 +25800,52,7,21,0.0 +25800,41,9.65,20,0.0 +25800,2,19,4,0.0 +25800,34,14,48,0.0 +25800,5,21.35,25,0.0 +25800,31,12.5,21,0.0 +25800,35,18,12,0.0 +25800,37,26,25,0.0 +25800,39,18,39,0.0 +25800,76,18,38,0.0 +25800,38,263.5,41,0.0 +25800,29,123.79,32,0.0 +25800,58,13.25,38,0.0 +25800,25,14,1,0.0 +25800,36,19,45,0.0 +25800,77,13,19,0.0 +25800,12,38,24,0.0 +25800,60,34,20,0.0 +25800,62,49.3,24,0.0 +25800,14,23.25,29,0.0 +25800,46,12,24,0.0 +25800,61,28.5,3,0.0 +25800,15,15.5,2,0.0 +25800,71,21.5,10,0.0 +25800,22,21,11,0.0 +25800,55,24,20,0.0 +25800,7,30,4,0.0 +25800,26,31.23,37,0.0 +25800,10,31,24,0.0 +25800,65,21.05,19,0.0 +25800,48,12.75,19,0.0 +25800,20,81,13,0.0 +25800,11,21,8,0.0 +25800,3,10,20,0.0 +25800,68,12.5,37,0.0 +25800,53,32.8,14,0.0 +25800,16,17.45,10,0.0 +25800,74,10,28,0.0 +25800,73,15,17,0.0 +25800,63,43.9,33,0.0 +25800,9,97,40,0.0 +25800,19,9.2,41,0.0 +25801,27,43.9,12,0.0 +25801,68,12.5,11,0.0 +25801,8,40,2,0.0 +25801,11,21,50,0.0 +25801,40,18.4,32,0.0 +25801,57,19.5,47,0.0 +25801,76,18,26,0.0 +25801,47,9.5,39,0.0 +25801,62,49.3,36,0.0 +25801,30,25.89,5,0.0 +25801,29,123.79,13,0.0 +25801,34,14,4,0.0 +25801,39,18,48,0.0 +25801,64,33.25,46,0.0 +25801,37,26,40,0.0 +25801,61,28.5,29,0.0 +25801,25,14,13,0.0 +25801,74,10,8,0.0 +25801,75,7.75,13,0.0 +25801,1,18,26,0.0 +25801,36,19,28,0.0 +25801,67,14,2,0.0 +25801,72,34.8,40,0.0 +25801,16,17.45,14,0.0 +25801,28,45.6,16,0.0 +25801,41,9.65,42,0.0 +25801,50,16.25,41,0.0 +25801,13,6,5,0.0 +25801,9,97,20,0.0 +25801,10,31,46,0.0 +25801,44,19.45,25,0.0 +25801,53,32.8,21,0.0 +25801,43,46,34,0.0 +25801,63,43.9,26,0.0 +25801,49,20,21,0.0 +25801,35,18,14,0.0 +25801,66,17,44,0.0 +25801,5,21.35,32,0.0 +25801,19,9.2,17,0.0 +25801,52,7,16,0.0 +25801,46,12,8,0.0 +25801,77,13,27,0.0 +25801,26,31.23,13,0.0 +25801,20,81,48,0.0 +25801,65,21.05,18,0.0 +25801,69,36,31,0.0 +25801,70,15,8,0.0 +25801,7,30,9,0.0 +25801,14,23.25,47,0.0 +25801,6,25,37,0.0 +25801,42,14,25,0.0 +25801,51,53,41,0.0 +25801,48,12.75,14,0.0 +25801,22,21,50,0.0 +25801,17,39,9,0.0 +25801,32,32,38,0.0 +25801,71,21.5,37,0.0 +25801,55,24,24,0.0 +25801,58,13.25,33,0.0 +25801,31,12.5,9,0.0 +25801,56,38,12,0.0 +25801,60,34,36,0.0 +25801,3,10,27,0.0 +25801,2,19,23,0.0 +25801,59,55,10,0.0 +25801,38,263.5,5,0.0 +25802,8,40,16,0.0 +25802,2,19,29,0.0 +25802,77,13,30,0.0 +25802,67,14,11,0.0 +25802,39,18,41,0.0 +25802,25,14,27,0.0 +25802,30,25.89,42,0.0 +25802,76,18,23,0.0 +25802,40,18.4,4,0.0 +25802,70,15,1,0.0 +25802,1,18,32,0.0 +25802,58,13.25,24,0.0 +25802,46,12,25,0.0 +25802,7,30,9,0.0 +25802,4,22,34,0.0 +25802,21,10,15,0.0 +25802,29,123.79,18,0.0 +25802,55,24,7,0.0 +25802,66,17,9,0.0 +25802,17,39,34,0.0 +25802,20,81,1,0.0 +25802,54,7.45,45,0.0 +25802,11,21,13,0.0 +25802,60,34,42,0.0 +25802,26,31.23,27,0.0 +25802,13,6,21,0.0 +25802,50,16.25,19,0.0 +25802,47,9.5,1,0.0 +25802,61,28.5,27,0.0 +25802,43,46,4,0.0 +25802,68,12.5,49,0.0 +25802,44,19.45,6,0.0 +25802,42,14,47,0.0 +25802,5,21.35,27,0.0 +25802,62,49.3,44,0.0 +25802,71,21.5,21,0.0 +25802,73,15,23,0.0 +25802,16,17.45,36,0.0 +25802,32,32,46,0.0 +25802,28,45.6,44,0.0 +25802,27,43.9,1,0.0 +25802,45,9.5,17,0.0 +25802,35,18,6,0.0 +25802,38,263.5,39,0.0 +25802,3,10,10,0.0 +25802,51,53,50,0.0 +25802,48,12.75,39,0.0 +25802,74,10,1,0.0 +25802,64,33.25,36,0.0 +25803,76,18,13,0.0 +25803,37,26,4,0.0 +25803,30,25.89,45,0.0 +25803,2,19,14,0.0 +25803,71,21.5,22,0.0 +25803,14,23.25,10,0.0 +25803,74,10,18,0.0 +25803,44,19.45,38,0.0 +25803,15,15.5,44,0.0 +25803,9,97,35,0.0 +25803,36,19,26,0.0 +25803,33,2.5,37,0.0 +25803,13,6,49,0.0 +25803,35,18,5,0.0 +25803,66,17,33,0.0 +25803,19,9.2,20,0.0 +25803,51,53,11,0.0 +25803,16,17.45,44,0.0 +25803,53,32.8,10,0.0 +25803,39,18,49,0.0 +25803,63,43.9,18,0.0 +25803,54,7.45,6,0.0 +25803,4,22,13,0.0 +25803,41,9.65,45,0.0 +25803,75,7.75,20,0.0 +25803,24,4.5,14,0.0 +25803,57,19.5,32,0.0 +25803,17,39,50,0.0 +25803,58,13.25,21,0.0 +25803,5,21.35,47,0.0 +25803,20,81,36,0.0 +25803,29,123.79,36,0.0 +25803,23,9,26,0.0 +25803,21,10,29,0.0 +25803,62,49.3,19,0.0 +25803,34,14,42,0.0 +25803,65,21.05,48,0.0 +25803,56,38,29,0.0 +25803,32,32,8,0.0 +25803,3,10,7,0.0 +25803,42,14,49,0.0 +25803,38,263.5,14,0.0 +25803,67,14,8,0.0 +25803,69,36,18,0.0 +25803,55,24,32,0.0 +25803,60,34,26,0.0 +25803,47,9.5,28,0.0 +25803,8,40,27,0.0 +25803,6,25,8,0.0 +25803,28,45.6,6,0.0 +25803,52,7,30,0.0 +25803,73,15,39,0.0 +25803,70,15,39,0.0 +25803,50,16.25,28,0.0 +25803,31,12.5,8,0.0 +25803,72,34.8,11,0.0 +25803,77,13,10,0.0 +25803,64,33.25,3,0.0 +25803,11,21,30,0.0 +25804,42,14,48,0.0 +25804,35,18,18,0.0 +25804,49,20,48,0.0 +25804,71,21.5,19,0.0 +25804,57,19.5,1,0.0 +25804,21,10,46,0.0 +25804,55,24,17,0.0 +25804,24,4.5,9,0.0 +25804,12,38,26,0.0 +25804,26,31.23,6,0.0 +25804,44,19.45,38,0.0 +25804,46,12,27,0.0 +25804,75,7.75,20,0.0 +25804,16,17.45,43,0.0 +25804,48,12.75,12,0.0 +25804,50,16.25,22,0.0 +25804,47,9.5,2,0.0 +25804,33,2.5,45,0.0 +25804,10,31,15,0.0 +25804,9,97,14,0.0 +25804,15,15.5,10,0.0 +25804,30,25.89,29,0.0 +25804,68,12.5,46,0.0 +25804,77,13,8,0.0 +25804,64,33.25,14,0.0 +25804,6,25,27,0.0 +25804,17,39,27,0.0 +25804,34,14,17,0.0 +25804,59,55,28,0.0 +25804,14,23.25,37,0.0 +25804,32,32,37,0.0 +25804,74,10,20,0.0 +25804,45,9.5,11,0.0 +25804,29,123.79,40,0.0 +25804,76,18,6,0.0 +25804,54,7.45,38,0.0 +25804,56,38,17,0.0 +25804,41,9.65,41,0.0 +25804,67,14,12,0.0 +25804,8,40,22,0.0 +25804,61,28.5,37,0.0 +25805,28,45.6,26,0.0 +25805,74,10,48,0.0 +25805,2,19,24,0.0 +25805,51,53,8,0.0 +25805,44,19.45,10,0.0 +25805,40,18.4,14,0.0 +25805,48,12.75,13,0.0 +25805,52,7,41,0.0 +25805,7,30,20,0.0 +25805,70,15,24,0.0 +25805,16,17.45,37,0.0 +25805,3,10,49,0.0 +25805,10,31,47,0.0 +25805,71,21.5,32,0.0 +25805,36,19,16,0.0 +25805,43,46,35,0.0 +25805,13,6,29,0.0 +25805,54,7.45,2,0.0 +25805,41,9.65,27,0.0 +25805,63,43.9,10,0.0 +25805,30,25.89,39,0.0 +25805,18,62.5,50,0.0 +25805,23,9,39,0.0 +25805,69,36,39,0.0 +25805,68,12.5,21,0.0 +25805,6,25,21,0.0 +25805,57,19.5,18,0.0 +25805,8,40,35,0.0 +25805,38,263.5,50,0.0 +25805,20,81,33,0.0 +25805,9,97,35,0.0 +25805,73,15,43,0.0 +25805,49,20,36,0.0 +25805,67,14,7,0.0 +25805,64,33.25,42,0.0 +25805,39,18,34,0.0 +25805,66,17,37,0.0 +25805,47,9.5,25,0.0 +25805,34,14,38,0.0 +25805,21,10,43,0.0 +25805,25,14,4,0.0 +25805,53,32.8,8,0.0 +25805,42,14,17,0.0 +25805,32,32,25,0.0 +25805,50,16.25,24,0.0 +25805,46,12,6,0.0 +25805,62,49.3,28,0.0 +25805,59,55,3,0.0 +25805,58,13.25,8,0.0 +25805,45,9.5,22,0.0 +25805,12,38,23,0.0 +25805,29,123.79,25,0.0 +25805,56,38,28,0.0 +25805,27,43.9,10,0.0 +25805,77,13,43,0.0 +25805,60,34,5,0.0 +25805,35,18,41,0.0 +25805,5,21.35,5,0.0 +25805,33,2.5,29,0.0 +25805,17,39,21,0.0 +25805,65,21.05,27,0.0 +25805,24,4.5,17,0.0 +25805,76,18,34,0.0 +25805,37,26,22,0.0 +25805,75,7.75,8,0.0 +25805,15,15.5,36,0.0 +25805,22,21,42,0.0 +25806,51,53,40,0.0 +25806,37,26,15,0.0 +25806,71,21.5,31,0.0 +25806,3,10,45,0.0 +25806,13,6,49,0.0 +25806,23,9,12,0.0 +25806,59,55,36,0.0 +25806,38,263.5,7,0.0 +25806,58,13.25,49,0.0 +25806,10,31,50,0.0 +25806,42,14,9,0.0 +25806,29,123.79,21,0.0 +25807,58,13.25,9,0.0 +25807,18,62.5,30,0.0 +25807,64,33.25,41,0.0 +25807,52,7,41,0.0 +25807,12,38,27,0.0 +25807,1,18,38,0.0 +25807,53,32.8,18,0.0 +25807,34,14,32,0.0 +25807,43,46,29,0.0 +25807,48,12.75,7,0.0 +25807,59,55,46,0.0 +25807,31,12.5,45,0.0 +25807,47,9.5,33,0.0 +25807,35,18,34,0.0 +25807,51,53,37,0.0 +25807,37,26,24,0.0 +25807,66,17,1,0.0 +25807,76,18,17,0.0 +25807,65,21.05,20,0.0 +25807,39,18,28,0.0 +25807,30,25.89,18,0.0 +25807,3,10,50,0.0 +25807,22,21,23,0.0 +25807,8,40,38,0.0 +25807,24,4.5,40,0.0 +25807,57,19.5,25,0.0 +25807,46,12,19,0.0 +25807,49,20,22,0.0 +25807,15,15.5,13,0.0 +25807,56,38,31,0.0 +25807,13,6,17,0.0 +25807,45,9.5,43,0.0 +25807,20,81,39,0.0 +25807,21,10,15,0.0 +25807,2,19,50,0.0 +25807,69,36,31,0.0 +25807,72,34.8,19,0.0 +25807,62,49.3,37,0.0 +25807,55,24,4,0.0 +25807,23,9,23,0.0 +25807,25,14,12,0.0 +25808,34,14,23,0.0 +25808,9,97,29,0.0 +25808,41,9.65,36,0.0 +25808,40,18.4,14,0.0 +25808,61,28.5,45,0.0 +25808,44,19.45,31,0.0 +25808,72,34.8,34,0.0 +25808,27,43.9,11,0.0 +25808,6,25,14,0.0 +25808,37,26,22,0.0 +25808,47,9.5,31,0.0 +25808,17,39,7,0.0 +25808,75,7.75,3,0.0 +25808,21,10,32,0.0 +25808,5,21.35,1,0.0 +25808,67,14,21,0.0 +25808,3,10,49,0.0 +25808,1,18,1,0.0 +25808,57,19.5,20,0.0 +25808,7,30,4,0.0 +25808,36,19,30,0.0 +25808,58,13.25,18,0.0 +25808,52,7,13,0.0 +25808,64,33.25,3,0.0 +25808,16,17.45,35,0.0 +25808,11,21,35,0.0 +25808,68,12.5,24,0.0 +25809,28,45.6,16,0.0 +25809,57,19.5,3,0.0 +25809,76,18,10,0.0 +25809,44,19.45,40,0.0 +25809,26,31.23,31,0.0 +25809,54,7.45,18,0.0 +25809,51,53,34,0.0 +25809,4,22,3,0.0 +25809,62,49.3,44,0.0 +25809,75,7.75,50,0.0 +25809,56,38,22,0.0 +25809,59,55,30,0.0 +25809,58,13.25,31,0.0 +25809,45,9.5,48,0.0 +25809,12,38,35,0.0 +25809,72,34.8,33,0.0 +25809,18,62.5,18,0.0 +25809,33,2.5,38,0.0 +25809,66,17,43,0.0 +25809,32,32,13,0.0 +25809,16,17.45,8,0.0 +25809,73,15,17,0.0 +25809,20,81,43,0.0 +25809,14,23.25,24,0.0 +25809,36,19,23,0.0 +25809,67,14,9,0.0 +25809,1,18,49,0.0 +25809,71,21.5,25,0.0 +25809,8,40,29,0.0 +25809,47,9.5,11,0.0 +25809,11,21,23,0.0 +25809,46,12,20,0.0 +25809,23,9,36,0.0 +25809,63,43.9,23,0.0 +25809,35,18,16,0.0 +25809,69,36,16,0.0 +25809,74,10,40,0.0 +25809,9,97,35,0.0 +25809,52,7,43,0.0 +25809,34,14,42,0.0 +25810,56,38,22,0.0 +25810,50,16.25,43,0.0 +25810,62,49.3,10,0.0 +25810,57,19.5,7,0.0 +25810,47,9.5,34,0.0 +25810,15,15.5,7,0.0 +25810,75,7.75,22,0.0 +25810,33,2.5,49,0.0 +25810,32,32,18,0.0 +25810,38,263.5,13,0.0 +25810,77,13,31,0.0 +25810,52,7,9,0.0 +25810,64,33.25,24,0.0 +25810,26,31.23,50,0.0 +25810,27,43.9,33,0.0 +25810,19,9.2,41,0.0 +25810,63,43.9,43,0.0 +25810,54,7.45,24,0.0 +25810,20,81,31,0.0 +25810,39,18,41,0.0 +25810,51,53,4,0.0 +25810,12,38,8,0.0 +25810,36,19,45,0.0 +25810,21,10,22,0.0 +25810,22,21,11,0.0 +25810,31,12.5,3,0.0 +25810,3,10,28,0.0 +25810,43,46,23,0.0 +25810,8,40,14,0.0 +25810,61,28.5,29,0.0 +25810,48,12.75,9,0.0 +25810,11,21,24,0.0 +25810,30,25.89,30,0.0 +25810,44,19.45,33,0.0 +25810,7,30,35,0.0 +25810,2,19,12,0.0 +25810,9,97,34,0.0 +25810,70,15,8,0.0 +25810,71,21.5,17,0.0 +25811,57,19.5,36,0.0 +25811,36,19,17,0.0 +25811,33,2.5,38,0.0 +25811,11,21,4,0.0 +25811,71,21.5,31,0.0 +25811,23,9,46,0.0 +25811,56,38,25,0.0 +25811,53,32.8,13,0.0 +25811,26,31.23,22,0.0 +25811,60,34,7,0.0 +25811,6,25,22,0.0 +25811,52,7,25,0.0 +25811,13,6,7,0.0 +25811,75,7.75,4,0.0 +25811,51,53,49,0.0 +25811,8,40,14,0.0 +25811,62,49.3,21,0.0 +25811,63,43.9,38,0.0 +25811,18,62.5,47,0.0 +25811,27,43.9,41,0.0 +25811,22,21,23,0.0 +25811,41,9.65,25,0.0 +25811,3,10,3,0.0 +25811,29,123.79,19,0.0 +25811,72,34.8,39,0.0 +25811,7,30,5,0.0 +25811,69,36,19,0.0 +25811,61,28.5,2,0.0 +25811,43,46,25,0.0 +25811,74,10,20,0.0 +25811,9,97,11,0.0 +25811,24,4.5,27,0.0 +25811,16,17.45,34,0.0 +25811,21,10,44,0.0 +25811,25,14,4,0.0 +25811,65,21.05,7,0.0 +25811,37,26,5,0.0 +25811,39,18,32,0.0 +25811,34,14,14,0.0 +25811,32,32,47,0.0 +25811,58,13.25,22,0.0 +25811,35,18,24,0.0 +25811,47,9.5,21,0.0 +25811,45,9.5,17,0.0 +25811,64,33.25,10,0.0 +25811,68,12.5,23,0.0 +25811,38,263.5,23,0.0 +25811,14,23.25,2,0.0 +25811,44,19.45,21,0.0 +25811,12,38,35,0.0 +25811,20,81,49,0.0 +25811,28,45.6,32,0.0 +25811,31,12.5,6,0.0 +25811,15,15.5,38,0.0 +25811,76,18,27,0.0 +25811,19,9.2,45,0.0 +25812,32,32,10,0.0 +25812,6,25,25,0.0 +25812,50,16.25,46,0.0 +25812,39,18,22,0.0 +25812,15,15.5,48,0.0 +25812,48,12.75,42,0.0 +25812,19,9.2,34,0.0 +25812,14,23.25,20,0.0 +25812,8,40,45,0.0 +25812,34,14,26,0.0 +25812,47,9.5,4,0.0 +25812,37,26,3,0.0 +25812,54,7.45,37,0.0 +25812,11,21,30,0.0 +25812,55,24,9,0.0 +25812,22,21,29,0.0 +25812,24,4.5,17,0.0 +25812,67,14,31,0.0 +25812,75,7.75,36,0.0 +25812,1,18,3,0.0 +25812,46,12,49,0.0 +25812,25,14,16,0.0 +25812,33,2.5,32,0.0 +25812,60,34,29,0.0 +25812,13,6,36,0.0 +25812,3,10,34,0.0 +25812,73,15,5,0.0 +25812,27,43.9,14,0.0 +25812,71,21.5,37,0.0 +25812,12,38,12,0.0 +25812,20,81,33,0.0 +25812,52,7,43,0.0 +25812,16,17.45,28,0.0 +25812,2,19,38,0.0 +25812,53,32.8,10,0.0 +25812,74,10,30,0.0 +25812,63,43.9,26,0.0 +25812,31,12.5,42,0.0 +25812,18,62.5,23,0.0 +25812,40,18.4,14,0.0 +25812,58,13.25,37,0.0 +25812,72,34.8,23,0.0 +25812,68,12.5,14,0.0 +25812,23,9,9,0.0 +25812,4,22,46,0.0 +25812,51,53,11,0.0 +25812,61,28.5,40,0.0 +25812,42,14,34,0.0 +25812,66,17,5,0.0 +25812,9,97,8,0.0 +25812,38,263.5,36,0.0 +25812,30,25.89,2,0.0 +25812,29,123.79,37,0.0 +25812,49,20,12,0.0 +25813,1,18,37,0.0 +25813,29,123.79,41,0.0 +25813,67,14,25,0.0 +25813,63,43.9,41,0.0 +25813,3,10,50,0.0 +25813,62,49.3,7,0.0 +25813,32,32,20,0.0 +25813,72,34.8,30,0.0 +25813,37,26,40,0.0 +25813,53,32.8,10,0.0 +25813,57,19.5,6,0.0 +25813,38,263.5,20,0.0 +25813,51,53,19,0.0 +25813,75,7.75,22,0.0 +25813,60,34,18,0.0 +25813,6,25,44,0.0 +25813,16,17.45,47,0.0 +25813,56,38,20,0.0 +25813,4,22,20,0.0 +25813,66,17,33,0.0 +25813,23,9,30,0.0 +25813,65,21.05,38,0.0 +25813,48,12.75,41,0.0 +25813,8,40,6,0.0 +25813,19,9.2,23,0.0 +25813,40,18.4,19,0.0 +25813,33,2.5,23,0.0 +25813,17,39,9,0.0 +25813,14,23.25,3,0.0 +25813,27,43.9,32,0.0 +25813,22,21,25,0.0 +25813,55,24,45,0.0 +25813,69,36,41,0.0 +25813,44,19.45,36,0.0 +25813,41,9.65,49,0.0 +25813,9,97,18,0.0 +25813,47,9.5,11,0.0 +25813,52,7,37,0.0 +25813,59,55,20,0.0 +25813,5,21.35,45,0.0 +25813,76,18,10,0.0 +25813,15,15.5,25,0.0 +25814,15,15.5,35,0.0 +25814,45,9.5,44,0.0 +25814,30,25.89,33,0.0 +25814,58,13.25,42,0.0 +25814,4,22,33,0.0 +25814,18,62.5,30,0.0 +25814,14,23.25,35,0.0 +25814,22,21,30,0.0 +25814,68,12.5,15,0.0 +25814,63,43.9,42,0.0 +25814,51,53,16,0.0 +25814,55,24,5,0.0 +25814,2,19,27,0.0 +25814,24,4.5,42,0.0 +25814,52,7,23,0.0 +25815,2,19,43,0.0 +25815,30,25.89,5,0.0 +25815,25,14,7,0.0 +25815,64,33.25,17,0.0 +25815,60,34,41,0.0 +25815,36,19,12,0.0 +25815,26,31.23,19,0.0 +25815,50,16.25,6,0.0 +25815,49,20,31,0.0 +25815,68,12.5,13,0.0 +25815,66,17,14,0.0 +25815,71,21.5,14,0.0 +25815,28,45.6,2,0.0 +25815,31,12.5,42,0.0 +25815,19,9.2,49,0.0 +25815,12,38,5,0.0 +25815,6,25,19,0.0 +25815,51,53,11,0.0 +25815,23,9,17,0.0 +25815,65,21.05,13,0.0 +25815,73,15,9,0.0 +25815,53,32.8,46,0.0 +25815,21,10,24,0.0 +25815,27,43.9,11,0.0 +25815,52,7,45,0.0 +25815,58,13.25,19,0.0 +25815,13,6,35,0.0 +25815,17,39,25,0.0 +25815,33,2.5,25,0.0 +25815,76,18,40,0.0 +25815,34,14,46,0.0 +25815,74,10,13,0.0 +25815,55,24,22,0.0 +25815,72,34.8,47,0.0 +25815,69,36,16,0.0 +25815,45,9.5,35,0.0 +25815,8,40,17,0.0 +25815,57,19.5,27,0.0 +25815,20,81,21,0.0 +25815,42,14,12,0.0 +25815,75,7.75,37,0.0 +25815,4,22,10,0.0 +25815,70,15,7,0.0 +25815,61,28.5,25,0.0 +25815,47,9.5,1,0.0 +25815,59,55,14,0.0 +25815,41,9.65,49,0.0 +25815,3,10,50,0.0 +25815,38,263.5,31,0.0 +25815,77,13,13,0.0 +25815,44,19.45,10,0.0 +25815,37,26,42,0.0 +25815,43,46,1,0.0 +25815,9,97,5,0.0 +25815,29,123.79,36,0.0 +25815,7,30,39,0.0 +25815,35,18,19,0.0 +25815,18,62.5,22,0.0 +25815,32,32,42,0.0 +25815,16,17.45,3,0.0 +25815,63,43.9,10,0.0 +25815,5,21.35,20,0.0 +25815,24,4.5,7,0.0 +25815,48,12.75,4,0.0 +25815,11,21,31,0.0 +25815,1,18,47,0.0 +25815,14,23.25,32,0.0 +25816,32,32,16,0.0 +25816,37,26,34,0.0 +25816,74,10,40,0.0 +25816,50,16.25,50,0.0 +25816,34,14,45,0.0 +25816,76,18,4,0.0 +25816,60,34,6,0.0 +25816,64,33.25,21,0.0 +25816,1,18,21,0.0 +25816,14,23.25,7,0.0 +25816,43,46,35,0.0 +25816,17,39,20,0.0 +25816,15,15.5,40,0.0 +25816,55,24,11,0.0 +25816,26,31.23,16,0.0 +25816,54,7.45,43,0.0 +25816,24,4.5,37,0.0 +25816,8,40,26,0.0 +25816,12,38,26,0.0 +25816,27,43.9,21,0.0 +25816,62,49.3,29,0.0 +25816,77,13,19,0.0 +25816,11,21,31,0.0 +25816,65,21.05,50,0.0 +25816,44,19.45,37,0.0 +25816,41,9.65,32,0.0 +25816,38,263.5,41,0.0 +25816,40,18.4,44,0.0 +25816,21,10,47,0.0 +25816,59,55,4,0.0 +25816,70,15,46,0.0 +25816,42,14,14,0.0 +25816,57,19.5,32,0.0 +25816,35,18,29,0.0 +25816,10,31,22,0.0 +25816,48,12.75,26,0.0 +25816,33,2.5,31,0.0 +25816,23,9,49,0.0 +25816,36,19,2,0.0 +25816,39,18,30,0.0 +25816,22,21,17,0.0 +25816,4,22,27,0.0 +25816,75,7.75,5,0.0 +25816,69,36,16,0.0 +25816,3,10,5,0.0 +25816,13,6,35,0.0 +25816,28,45.6,47,0.0 +25816,68,12.5,19,0.0 +25816,6,25,7,0.0 +25816,46,12,5,0.0 +25816,56,38,35,0.0 +25816,72,34.8,28,0.0 +25816,18,62.5,33,0.0 +25816,25,14,9,0.0 +25816,63,43.9,43,0.0 +25817,32,32,18,0.0 +25817,27,43.9,33,0.0 +25817,23,9,35,0.0 +25817,45,9.5,2,0.0 +25817,47,9.5,20,0.0 +25817,12,38,4,0.0 +25817,41,9.65,46,0.0 +25817,60,34,5,0.0 +25817,40,18.4,9,0.0 +25817,46,12,7,0.0 +25817,18,62.5,46,0.0 +25817,20,81,34,0.0 +25817,56,38,3,0.0 +25817,39,18,37,0.0 +25817,34,14,38,0.0 +25817,50,16.25,17,0.0 +25817,5,21.35,30,0.0 +25817,55,24,48,0.0 +25817,25,14,36,0.0 +25817,8,40,29,0.0 +25817,67,14,41,0.0 +25817,17,39,7,0.0 +25817,64,33.25,36,0.0 +25817,76,18,17,0.0 +25817,48,12.75,20,0.0 +25817,3,10,45,0.0 +25817,36,19,38,0.0 +25817,53,32.8,14,0.0 +25817,30,25.89,23,0.0 +25817,9,97,1,0.0 +25817,68,12.5,26,0.0 +25817,51,53,10,0.0 +25817,74,10,47,0.0 +25817,33,2.5,41,0.0 +25817,21,10,26,0.0 +25817,19,9.2,10,0.0 +25817,61,28.5,45,0.0 +25817,10,31,7,0.0 +25817,11,21,46,0.0 +25817,65,21.05,44,0.0 +25817,29,123.79,41,0.0 +25817,49,20,3,0.0 +25817,75,7.75,16,0.0 +25817,31,12.5,32,0.0 +25817,4,22,9,0.0 +25817,38,263.5,2,0.0 +25817,71,21.5,20,0.0 +25817,24,4.5,25,0.0 +25817,54,7.45,24,0.0 +25817,14,23.25,45,0.0 +25817,2,19,22,0.0 +25817,35,18,33,0.0 +25817,44,19.45,11,0.0 +25817,52,7,29,0.0 +25817,57,19.5,18,0.0 +25817,63,43.9,24,0.0 +25817,62,49.3,26,0.0 +25817,15,15.5,28,0.0 +25817,1,18,12,0.0 +25817,43,46,22,0.0 +25817,42,14,38,0.0 +25818,34,14,8,0.0 +25818,73,15,44,0.0 +25818,48,12.75,21,0.0 +25818,67,14,34,0.0 +25818,68,12.5,12,0.0 +25818,54,7.45,42,0.0 +25818,56,38,12,0.0 +25819,23,9,28,0.0 +25819,62,49.3,32,0.0 +25819,40,18.4,17,0.0 +25819,57,19.5,42,0.0 +25819,64,33.25,27,0.0 +25819,63,43.9,32,0.0 +25819,11,21,27,0.0 +25819,18,62.5,4,0.0 +25819,27,43.9,40,0.0 +25819,24,4.5,32,0.0 +25819,28,45.6,43,0.0 +25819,16,17.45,36,0.0 +25819,1,18,4,0.0 +25819,32,32,42,0.0 +25819,46,12,5,0.0 +25819,45,9.5,42,0.0 +25819,69,36,35,0.0 +25820,8,40,22,0.0 +25820,20,81,3,0.0 +25820,45,9.5,7,0.0 +25820,18,62.5,36,0.0 +25820,55,24,41,0.0 +25820,42,14,11,0.0 +25820,21,10,17,0.0 +25820,22,21,13,0.0 +25820,70,15,40,0.0 +25820,47,9.5,5,0.0 +25820,73,15,22,0.0 +25820,6,25,43,0.0 +25820,4,22,14,0.0 +25820,15,15.5,1,0.0 +25820,32,32,49,0.0 +25820,66,17,38,0.0 +25820,37,26,24,0.0 +25820,49,20,28,0.0 +25820,3,10,25,0.0 +25820,28,45.6,49,0.0 +25820,64,33.25,18,0.0 +25820,62,49.3,23,0.0 +25820,12,38,2,0.0 +25820,35,18,31,0.0 +25820,41,9.65,41,0.0 +25820,52,7,20,0.0 +25820,13,6,2,0.0 +25820,10,31,46,0.0 +25820,54,7.45,46,0.0 +25820,60,34,34,0.0 +25820,36,19,17,0.0 +25820,38,263.5,29,0.0 +25820,68,12.5,17,0.0 +25820,43,46,6,0.0 +25820,17,39,27,0.0 +25820,44,19.45,8,0.0 +25820,30,25.89,49,0.0 +25820,34,14,8,0.0 +25820,50,16.25,44,0.0 +25820,59,55,16,0.0 +25821,22,21,40,0.0 +25821,7,30,12,0.0 +25821,73,15,43,0.0 +25821,57,19.5,45,0.0 +25821,31,12.5,17,0.0 +25821,46,12,16,0.0 +25821,25,14,47,0.0 +25821,6,25,23,0.0 +25821,55,24,20,0.0 +25821,16,17.45,9,0.0 +25821,32,32,4,0.0 +25821,11,21,17,0.0 +25821,67,14,37,0.0 +25821,45,9.5,50,0.0 +25821,40,18.4,32,0.0 +25821,41,9.65,28,0.0 +25821,69,36,15,0.0 +25821,24,4.5,20,0.0 +25821,50,16.25,47,0.0 +25821,74,10,39,0.0 +25821,77,13,44,0.0 +25821,68,12.5,38,0.0 +25821,20,81,23,0.0 +25821,10,31,45,0.0 +25821,3,10,9,0.0 +25821,36,19,22,0.0 +25822,38,263.5,31,0.0 +25822,19,9.2,21,0.0 +25822,67,14,5,0.0 +25822,40,18.4,11,0.0 +25822,14,23.25,25,0.0 +25822,68,12.5,34,0.0 +25822,64,33.25,46,0.0 +25822,31,12.5,23,0.0 +25822,2,19,37,0.0 +25822,59,55,4,0.0 +25822,44,19.45,25,0.0 +25822,48,12.75,41,0.0 +25822,66,17,26,0.0 +25822,75,7.75,16,0.0 +25822,49,20,21,0.0 +25822,3,10,27,0.0 +25822,72,34.8,13,0.0 +25822,24,4.5,41,0.0 +25822,62,49.3,17,0.0 +25822,17,39,41,0.0 +25822,50,16.25,17,0.0 +25822,61,28.5,8,0.0 +25822,63,43.9,9,0.0 +25822,70,15,23,0.0 +25822,39,18,14,0.0 +25822,76,18,27,0.0 +25822,35,18,3,0.0 +25822,28,45.6,31,0.0 +25822,54,7.45,25,0.0 +25822,7,30,17,0.0 +25822,20,81,12,0.0 +25822,15,15.5,34,0.0 +25822,42,14,35,0.0 +25823,60,34,14,0.0 +25823,46,12,47,0.0 +25823,51,53,19,0.0 +25823,50,16.25,15,0.0 +25823,64,33.25,30,0.0 +25823,52,7,6,0.0 +25823,2,19,23,0.0 +25823,47,9.5,47,0.0 +25823,65,21.05,2,0.0 +25823,14,23.25,43,0.0 +25823,73,15,11,0.0 +25823,9,97,20,0.0 +25823,53,32.8,43,0.0 +25823,62,49.3,8,0.0 +25823,30,25.89,23,0.0 +25823,70,15,39,0.0 +25823,43,46,41,0.0 +25823,39,18,7,0.0 +25823,58,13.25,10,0.0 +25823,36,19,1,0.0 +25823,59,55,24,0.0 +25823,42,14,45,0.0 +25823,3,10,29,0.0 +25823,33,2.5,46,0.0 +25823,20,81,29,0.0 +25823,37,26,43,0.0 +25823,12,38,21,0.0 +25823,76,18,36,0.0 +25823,10,31,9,0.0 +25823,55,24,31,0.0 +25823,63,43.9,27,0.0 +25823,17,39,36,0.0 +25823,67,14,8,0.0 +25823,28,45.6,46,0.0 +25823,54,7.45,30,0.0 +25823,18,62.5,24,0.0 +25823,45,9.5,35,0.0 +25823,66,17,6,0.0 +25823,72,34.8,12,0.0 +25823,41,9.65,29,0.0 +25823,68,12.5,27,0.0 +25823,71,21.5,10,0.0 +25823,25,14,18,0.0 +25823,56,38,12,0.0 +25823,23,9,24,0.0 +25823,6,25,29,0.0 +25823,49,20,28,0.0 +25823,11,21,36,0.0 +25823,4,22,8,0.0 +25823,7,30,49,0.0 +25823,35,18,5,0.0 +25823,44,19.45,33,0.0 +25823,19,9.2,23,0.0 +25823,34,14,43,0.0 +25823,38,263.5,50,0.0 +25823,32,32,22,0.0 +25823,48,12.75,6,0.0 +25823,31,12.5,32,0.0 +25823,24,4.5,42,0.0 +25824,65,21.05,10,0.0 +25824,21,10,41,0.0 +25824,50,16.25,6,0.0 +25824,11,21,14,0.0 +25824,4,22,36,0.0 +25824,57,19.5,32,0.0 +25824,12,38,38,0.0 +25824,52,7,26,0.0 +25824,29,123.79,39,0.0 +25824,66,17,49,0.0 +25824,22,21,25,0.0 +25824,47,9.5,13,0.0 +25824,38,263.5,44,0.0 +25824,32,32,16,0.0 +25824,58,13.25,1,0.0 +25824,20,81,26,0.0 +25825,23,9,46,0.0 +25825,42,14,4,0.0 +25825,72,34.8,15,0.0 +25825,6,25,38,0.0 +25825,33,2.5,22,0.0 +25825,37,26,46,0.0 +25825,34,14,14,0.0 +25825,64,33.25,6,0.0 +25825,39,18,21,0.0 +25825,50,16.25,3,0.0 +25825,35,18,21,0.0 +25825,53,32.8,19,0.0 +25825,65,21.05,8,0.0 +25825,13,6,16,0.0 +25825,58,13.25,47,0.0 +25825,63,43.9,48,0.0 +25825,69,36,28,0.0 +25825,41,9.65,16,0.0 +25825,77,13,46,0.0 +25825,28,45.6,11,0.0 +25825,19,9.2,19,0.0 +25825,76,18,9,0.0 +25825,27,43.9,11,0.0 +25825,73,15,36,0.0 +25825,52,7,44,0.0 +25825,44,19.45,9,0.0 +25825,36,19,37,0.0 +25825,56,38,6,0.0 +25825,68,12.5,27,0.0 +25825,51,53,30,0.0 +25825,21,10,29,0.0 +25825,24,4.5,25,0.0 +25825,9,97,5,0.0 +25825,62,49.3,2,0.0 +25825,66,17,11,0.0 +25825,45,9.5,11,0.0 +25825,57,19.5,37,0.0 +25825,47,9.5,31,0.0 +25825,4,22,9,0.0 +25825,70,15,42,0.0 +25825,46,12,35,0.0 +25825,20,81,35,0.0 +25825,26,31.23,26,0.0 +25825,10,31,10,0.0 +25825,48,12.75,46,0.0 +25825,7,30,23,0.0 +25825,59,55,2,0.0 +25825,60,34,14,0.0 +25825,40,18.4,42,0.0 +25825,1,18,31,0.0 +25825,3,10,24,0.0 +25825,8,40,28,0.0 +25825,30,25.89,4,0.0 +25825,49,20,22,0.0 +25825,12,38,16,0.0 +25825,31,12.5,47,0.0 +25825,32,32,13,0.0 +25825,5,21.35,36,0.0 +25825,71,21.5,25,0.0 +25825,74,10,7,0.0 +25825,17,39,32,0.0 +25825,61,28.5,35,0.0 +25825,29,123.79,45,0.0 +25825,75,7.75,4,0.0 +25825,38,263.5,44,0.0 +25825,54,7.45,22,0.0 +25825,43,46,46,0.0 +25825,14,23.25,34,0.0 +25825,18,62.5,18,0.0 +25825,22,21,21,0.0 +25825,2,19,1,0.0 +25825,15,15.5,42,0.0 +25826,53,32.8,41,0.0 +25826,26,31.23,47,0.0 +25826,59,55,42,0.0 +25826,69,36,17,0.0 +25826,70,15,17,0.0 +25826,16,17.45,5,0.0 +25826,27,43.9,9,0.0 +25826,63,43.9,14,0.0 +25826,11,21,3,0.0 +25826,73,15,34,0.0 +25826,65,21.05,17,0.0 +25826,9,97,46,0.0 +25826,30,25.89,44,0.0 +25826,12,38,48,0.0 +25826,67,14,18,0.0 +25826,17,39,8,0.0 +25826,40,18.4,12,0.0 +25826,61,28.5,3,0.0 +25826,50,16.25,49,0.0 +25826,2,19,50,0.0 +25826,8,40,27,0.0 +25826,72,34.8,28,0.0 +25826,21,10,26,0.0 +25826,60,34,17,0.0 +25827,54,7.45,50,0.0 +25827,32,32,11,0.0 +25827,57,19.5,41,0.0 +25827,23,9,17,0.0 +25827,26,31.23,20,0.0 +25827,36,19,47,0.0 +25827,50,16.25,9,0.0 +25827,2,19,25,0.0 +25827,10,31,20,0.0 +25827,49,20,43,0.0 +25827,69,36,31,0.0 +25827,53,32.8,39,0.0 +25827,65,21.05,35,0.0 +25827,58,13.25,44,0.0 +25827,70,15,4,0.0 +25827,19,9.2,26,0.0 +25827,42,14,46,0.0 +25827,25,14,18,0.0 +25827,76,18,5,0.0 +25827,37,26,23,0.0 +25827,27,43.9,3,0.0 +25827,75,7.75,14,0.0 +25827,60,34,11,0.0 +25827,22,21,40,0.0 +25827,8,40,2,0.0 +25827,46,12,42,0.0 +25827,28,45.6,13,0.0 +25827,51,53,12,0.0 +25827,38,263.5,46,0.0 +25827,24,4.5,38,0.0 +25827,35,18,26,0.0 +25827,29,123.79,32,0.0 +25827,62,49.3,3,0.0 +25827,59,55,48,0.0 +25827,39,18,25,0.0 +25827,41,9.65,28,0.0 +25827,16,17.45,36,0.0 +25827,17,39,36,0.0 +25827,61,28.5,35,0.0 +25827,68,12.5,42,0.0 +25827,56,38,48,0.0 +25827,5,21.35,4,0.0 +25827,11,21,49,0.0 +25827,30,25.89,26,0.0 +25827,4,22,35,0.0 +25827,77,13,29,0.0 +25827,9,97,18,0.0 +25827,52,7,31,0.0 +25827,33,2.5,18,0.0 +25827,64,33.25,46,0.0 +25827,3,10,3,0.0 +25827,63,43.9,5,0.0 +25827,48,12.75,23,0.0 +25827,21,10,27,0.0 +25827,31,12.5,21,0.0 +25827,43,46,17,0.0 +25827,18,62.5,33,0.0 +25827,67,14,40,0.0 +25827,45,9.5,20,0.0 +25827,13,6,8,0.0 +25827,12,38,6,0.0 +25827,74,10,22,0.0 +25827,66,17,12,0.0 +25827,20,81,10,0.0 +25827,40,18.4,37,0.0 +25827,7,30,35,0.0 +25827,72,34.8,41,0.0 +25827,73,15,14,0.0 +25827,71,21.5,2,0.0 +25827,34,14,21,0.0 +25827,55,24,11,0.0 +25828,51,53,49,0.0 +25828,58,13.25,34,0.0 +25828,74,10,17,0.0 +25828,31,12.5,33,0.0 +25828,33,2.5,17,0.0 +25828,24,4.5,45,0.0 +25828,57,19.5,3,0.0 +25828,16,17.45,42,0.0 +25828,6,25,46,0.0 +25828,35,18,22,0.0 +25828,27,43.9,43,0.0 +25828,66,17,10,0.0 +25828,49,20,49,0.0 +25828,71,21.5,20,0.0 +25828,56,38,15,0.0 +25828,45,9.5,10,0.0 +25828,48,12.75,44,0.0 +25828,47,9.5,16,0.0 +25828,76,18,11,0.0 +25828,36,19,12,0.0 +25828,4,22,21,0.0 +25828,19,9.2,3,0.0 +25828,20,81,9,0.0 +25828,23,9,9,0.0 +25828,55,24,36,0.0 +25829,41,9.65,3,0.0 +25829,22,21,42,0.0 +25829,60,34,7,0.0 +25829,14,23.25,36,0.0 +25829,27,43.9,2,0.0 +25829,46,12,17,0.0 +25829,7,30,23,0.0 +25829,20,81,31,0.0 +25829,13,6,33,0.0 +25829,35,18,16,0.0 +25829,32,32,41,0.0 +25829,10,31,18,0.0 +25829,31,12.5,12,0.0 +25829,43,46,38,0.0 +25829,56,38,49,0.0 +25829,40,18.4,35,0.0 +25829,39,18,46,0.0 +25829,59,55,6,0.0 +25829,47,9.5,9,0.0 +25829,8,40,26,0.0 +25829,42,14,19,0.0 +25829,1,18,8,0.0 +25829,66,17,8,0.0 +25829,38,263.5,4,0.0 +25829,61,28.5,19,0.0 +25829,44,19.45,6,0.0 +25829,69,36,3,0.0 +25829,4,22,9,0.0 +25829,53,32.8,23,0.0 +25829,72,34.8,7,0.0 +25829,26,31.23,17,0.0 +25829,54,7.45,47,0.0 +25829,51,53,8,0.0 +25829,18,62.5,34,0.0 +25829,28,45.6,12,0.0 +25829,62,49.3,39,0.0 +25829,34,14,29,0.0 +25829,64,33.25,4,0.0 +25829,45,9.5,30,0.0 +25829,9,97,42,0.0 +25829,70,15,31,0.0 +25829,58,13.25,1,0.0 +25829,19,9.2,49,0.0 +25829,3,10,37,0.0 +25829,16,17.45,28,0.0 +25829,67,14,4,0.0 +25829,33,2.5,33,0.0 +25829,17,39,29,0.0 +25829,5,21.35,39,0.0 +25829,24,4.5,47,0.0 +25829,65,21.05,2,0.0 +25829,74,10,17,0.0 +25829,75,7.75,46,0.0 +25829,76,18,49,0.0 +25829,63,43.9,10,0.0 +25829,2,19,16,0.0 +25829,21,10,31,0.0 +25829,36,19,25,0.0 +25829,49,20,28,0.0 +25829,55,24,20,0.0 +25829,52,7,34,0.0 +25829,6,25,10,0.0 +25829,37,26,11,0.0 +25829,71,21.5,8,0.0 +25829,48,12.75,32,0.0 +25829,73,15,2,0.0 +25829,23,9,20,0.0 +25829,29,123.79,6,0.0 +25829,30,25.89,3,0.0 +25829,50,16.25,41,0.0 +25829,25,14,22,0.0 +25830,63,43.9,47,0.0 +25830,72,34.8,44,0.0 +25830,6,25,14,0.0 +25830,66,17,10,0.0 +25830,56,38,20,0.0 +25830,24,4.5,25,0.0 +25830,69,36,15,0.0 +25830,75,7.75,13,0.0 +25830,5,21.35,25,0.0 +25830,4,22,26,0.0 +25830,76,18,46,0.0 +25830,40,18.4,20,0.0 +25830,77,13,13,0.0 +25830,34,14,24,0.0 +25830,10,31,26,0.0 +25830,35,18,11,0.0 +25830,68,12.5,22,0.0 +25830,64,33.25,4,0.0 +25830,11,21,34,0.0 +25830,22,21,39,0.0 +25830,74,10,33,0.0 +25830,39,18,42,0.0 +25830,33,2.5,44,0.0 +25830,49,20,30,0.0 +25830,50,16.25,25,0.0 +25830,23,9,43,0.0 +25830,55,24,2,0.0 +25830,70,15,41,0.0 +25830,12,38,37,0.0 +25830,17,39,37,0.0 +25830,60,34,45,0.0 +25830,42,14,3,0.0 +25830,47,9.5,24,0.0 +25830,36,19,31,0.0 +25830,51,53,44,0.0 +25830,54,7.45,8,0.0 +25830,26,31.23,2,0.0 +25830,8,40,35,0.0 +25830,52,7,40,0.0 +25830,53,32.8,8,0.0 +25830,58,13.25,34,0.0 +25830,62,49.3,10,0.0 +25830,9,97,46,0.0 +25830,67,14,2,0.0 +25830,71,21.5,13,0.0 +25830,41,9.65,39,0.0 +25830,28,45.6,43,0.0 +25830,14,23.25,21,0.0 +25830,16,17.45,9,0.0 +25830,1,18,32,0.0 +25830,45,9.5,8,0.0 +25830,73,15,28,0.0 +25830,31,12.5,26,0.0 +25830,57,19.5,38,0.0 +25830,3,10,13,0.0 +25830,27,43.9,42,0.0 +25831,17,39,44,0.0 +25831,3,10,47,0.0 +25831,36,19,3,0.0 +25831,27,43.9,15,0.0 +25831,69,36,29,0.0 +25831,41,9.65,43,0.0 +25831,1,18,29,0.0 +25831,11,21,30,0.0 +25831,68,12.5,9,0.0 +25831,20,81,12,0.0 +25831,4,22,2,0.0 +25831,32,32,22,0.0 +25831,35,18,38,0.0 +25831,49,20,43,0.0 +25832,77,13,2,0.0 +25832,70,15,45,0.0 +25832,26,31.23,43,0.0 +25832,57,19.5,19,0.0 +25833,10,31,6,0.0 +25833,27,43.9,39,0.0 +25834,60,34,7,0.0 +25834,63,43.9,20,0.0 +25834,18,62.5,29,0.0 +25834,33,2.5,9,0.0 +25834,41,9.65,15,0.0 +25834,3,10,2,0.0 +25834,54,7.45,26,0.0 +25834,51,53,3,0.0 +25834,38,263.5,37,0.0 +25834,19,9.2,29,0.0 +25834,73,15,41,0.0 +25834,17,39,19,0.0 +25834,72,34.8,42,0.0 +25834,57,19.5,34,0.0 +25834,16,17.45,9,0.0 +25834,22,21,36,0.0 +25834,4,22,48,0.0 +25834,36,19,37,0.0 +25834,70,15,38,0.0 +25834,20,81,41,0.0 +25834,6,25,45,0.0 +25834,27,43.9,44,0.0 +25834,21,10,25,0.0 +25834,8,40,6,0.0 +25834,42,14,4,0.0 +25834,62,49.3,5,0.0 +25834,2,19,6,0.0 +25834,15,15.5,27,0.0 +25834,52,7,11,0.0 +25834,47,9.5,43,0.0 +25834,32,32,10,0.0 +25834,7,30,22,0.0 +25834,59,55,26,0.0 +25834,53,32.8,28,0.0 +25834,48,12.75,5,0.0 +25834,37,26,44,0.0 +25834,28,45.6,1,0.0 +25834,68,12.5,28,0.0 +25834,10,31,6,0.0 +25834,39,18,38,0.0 +25834,67,14,26,0.0 +25834,31,12.5,27,0.0 +25834,77,13,45,0.0 +25834,34,14,22,0.0 +25834,66,17,8,0.0 +25834,35,18,28,0.0 +25834,69,36,8,0.0 +25834,58,13.25,37,0.0 +25834,64,33.25,29,0.0 +25834,55,24,32,0.0 +25834,29,123.79,38,0.0 +25834,71,21.5,33,0.0 +25834,74,10,14,0.0 +25834,23,9,15,0.0 +25834,9,97,16,0.0 +25834,13,6,3,0.0 +25834,24,4.5,1,0.0 +25834,49,20,29,0.0 +25834,26,31.23,36,0.0 +25834,56,38,21,0.0 +25834,50,16.25,25,0.0 +25834,25,14,30,0.0 +25834,45,9.5,42,0.0 +25834,1,18,14,0.0 +25834,43,46,26,0.0 +25834,44,19.45,17,0.0 +25834,12,38,17,0.0 +25834,5,21.35,9,0.0 +25834,11,21,11,0.0 +25834,14,23.25,13,0.0 +25834,46,12,10,0.0 +25834,40,18.4,43,0.0 +25834,65,21.05,50,0.0 +25834,76,18,5,0.0 +25835,10,31,36,0.0 +25835,43,46,25,0.0 +25835,20,81,11,0.0 +25835,47,9.5,8,0.0 +25835,63,43.9,34,0.0 +25835,24,4.5,33,0.0 +25835,70,15,23,0.0 +25835,35,18,44,0.0 +25835,68,12.5,8,0.0 +25835,52,7,50,0.0 +25835,2,19,33,0.0 +25835,36,19,11,0.0 +25835,51,53,36,0.0 +25835,38,263.5,43,0.0 +25835,14,23.25,21,0.0 +25835,19,9.2,35,0.0 +25835,12,38,38,0.0 +25835,23,9,7,0.0 +25835,72,34.8,25,0.0 +25835,37,26,2,0.0 +25835,65,21.05,25,0.0 +25835,7,30,50,0.0 +25835,41,9.65,47,0.0 +25835,40,18.4,24,0.0 +25835,33,2.5,45,0.0 +25835,56,38,35,0.0 +25835,18,62.5,8,0.0 +25835,71,21.5,19,0.0 +25835,49,20,17,0.0 +25835,9,97,22,0.0 +25835,62,49.3,23,0.0 +25835,6,25,41,0.0 +25835,76,18,46,0.0 +25835,21,10,48,0.0 +25835,25,14,11,0.0 +25835,15,15.5,42,0.0 +25835,75,7.75,40,0.0 +25835,30,25.89,32,0.0 +25835,50,16.25,39,0.0 +25835,39,18,34,0.0 +25835,60,34,12,0.0 +25835,34,14,14,0.0 +25835,1,18,8,0.0 +25835,29,123.79,45,0.0 +25835,64,33.25,28,0.0 +25835,27,43.9,35,0.0 +25835,77,13,49,0.0 +25835,58,13.25,5,0.0 +25835,22,21,25,0.0 +25835,46,12,45,0.0 +25835,17,39,35,0.0 +25835,53,32.8,49,0.0 +25835,48,12.75,45,0.0 +25835,16,17.45,36,0.0 +25835,59,55,50,0.0 +25835,45,9.5,28,0.0 +25835,57,19.5,33,0.0 +25835,4,22,19,0.0 +25835,13,6,9,0.0 +25835,28,45.6,9,0.0 +25835,67,14,14,0.0 +25835,61,28.5,31,0.0 +25835,8,40,10,0.0 +25835,31,12.5,18,0.0 +25836,5,21.35,45,0.0 +25836,11,21,23,0.0 +25836,7,30,28,0.0 +25836,31,12.5,9,0.0 +25836,69,36,12,0.0 +25836,18,62.5,41,0.0 +25836,33,2.5,26,0.0 +25836,8,40,50,0.0 +25836,48,12.75,13,0.0 +25836,43,46,30,0.0 +25836,45,9.5,3,0.0 +25836,25,14,45,0.0 +25836,30,25.89,27,0.0 +25836,47,9.5,23,0.0 +25836,13,6,25,0.0 +25836,59,55,31,0.0 +25836,64,33.25,14,0.0 +25836,57,19.5,12,0.0 +25836,51,53,11,0.0 +25836,55,24,30,0.0 +25836,53,32.8,7,0.0 +25836,27,43.9,46,0.0 +25836,60,34,49,0.0 +25836,66,17,33,0.0 +25836,42,14,28,0.0 +25836,68,12.5,24,0.0 +25836,14,23.25,2,0.0 +25836,4,22,31,0.0 +25836,2,19,29,0.0 +25836,3,10,27,0.0 +25836,21,10,45,0.0 +25836,39,18,37,0.0 +25836,19,9.2,41,0.0 +25837,62,49.3,31,0.0 +25837,51,53,37,0.0 +25837,13,6,17,0.0 +25837,36,19,24,0.0 +25837,22,21,25,0.0 +25837,17,39,50,0.0 +25837,56,38,36,0.0 +25837,16,17.45,10,0.0 +25837,26,31.23,38,0.0 +25837,9,97,32,0.0 +25837,73,15,35,0.0 +25837,33,2.5,18,0.0 +25837,55,24,20,0.0 +25837,15,15.5,49,0.0 +25837,48,12.75,9,0.0 +25837,45,9.5,43,0.0 +25837,58,13.25,18,0.0 +25837,5,21.35,37,0.0 +25837,4,22,29,0.0 +25837,11,21,28,0.0 +25837,49,20,11,0.0 +25837,65,21.05,50,0.0 +25837,3,10,32,0.0 +25837,69,36,34,0.0 +25837,44,19.45,18,0.0 +25837,75,7.75,11,0.0 +25837,32,32,5,0.0 +25837,24,4.5,1,0.0 +25837,61,28.5,20,0.0 +25837,67,14,30,0.0 +25837,40,18.4,27,0.0 +25837,47,9.5,3,0.0 +25837,77,13,26,0.0 +25837,43,46,37,0.0 +25837,57,19.5,49,0.0 +25837,37,26,29,0.0 +25837,59,55,21,0.0 +25837,74,10,36,0.0 +25837,50,16.25,3,0.0 +25837,66,17,50,0.0 +25837,21,10,50,0.0 +25837,20,81,33,0.0 +25837,23,9,19,0.0 +25837,41,9.65,21,0.0 +25837,60,34,6,0.0 +25837,29,123.79,25,0.0 +25837,34,14,23,0.0 +25837,18,62.5,49,0.0 +25837,30,25.89,32,0.0 +25837,25,14,18,0.0 +25837,38,263.5,22,0.0 +25837,14,23.25,35,0.0 +25837,53,32.8,30,0.0 +25837,2,19,22,0.0 +25837,8,40,43,0.0 +25837,10,31,12,0.0 +25837,19,9.2,36,0.0 +25837,1,18,18,0.0 +25837,68,12.5,13,0.0 +25837,70,15,45,0.0 +25837,71,21.5,19,0.0 +25837,72,34.8,19,0.0 +25837,46,12,26,0.0 +25837,64,33.25,46,0.0 +25837,12,38,37,0.0 +25837,76,18,36,0.0 +25837,39,18,12,0.0 +25837,31,12.5,27,0.0 +25837,27,43.9,30,0.0 +25837,52,7,18,0.0 +25837,28,45.6,16,0.0 +25837,54,7.45,9,0.0 +25838,10,31,40,0.0 +25838,35,18,49,0.0 +25838,8,40,24,0.0 +25838,26,31.23,11,0.0 +25838,66,17,32,0.0 +25838,39,18,38,0.0 +25838,70,15,40,0.0 +25838,37,26,18,0.0 +25838,19,9.2,46,0.0 +25838,51,53,37,0.0 +25838,63,43.9,48,0.0 +25838,34,14,44,0.0 +25838,4,22,50,0.0 +25838,68,12.5,48,0.0 +25838,62,49.3,10,0.0 +25838,31,12.5,33,0.0 +25838,55,24,10,0.0 +25838,58,13.25,14,0.0 +25838,3,10,37,0.0 +25838,56,38,21,0.0 +25838,43,46,36,0.0 +25838,11,21,28,0.0 +25838,71,21.5,27,0.0 +25838,28,45.6,31,0.0 +25838,32,32,31,0.0 +25838,5,21.35,36,0.0 +25838,75,7.75,49,0.0 +25838,54,7.45,4,0.0 +25838,40,18.4,29,0.0 +25838,49,20,28,0.0 +25838,30,25.89,12,0.0 +25838,24,4.5,20,0.0 +25838,57,19.5,14,0.0 +25838,44,19.45,1,0.0 +25838,16,17.45,21,0.0 +25838,77,13,18,0.0 +25838,17,39,30,0.0 +25838,72,34.8,42,0.0 +25838,1,18,13,0.0 +25838,65,21.05,30,0.0 +25838,42,14,22,0.0 +25838,22,21,50,0.0 +25838,59,55,47,0.0 +25838,48,12.75,7,0.0 +25838,18,62.5,6,0.0 +25838,64,33.25,21,0.0 +25838,41,9.65,38,0.0 +25838,7,30,39,0.0 +25838,29,123.79,18,0.0 +25838,21,10,20,0.0 +25838,23,9,1,0.0 +25838,20,81,25,0.0 +25838,25,14,11,0.0 +25838,60,34,27,0.0 +25838,69,36,19,0.0 +25838,6,25,47,0.0 +25838,76,18,4,0.0 +25838,15,15.5,18,0.0 +25838,2,19,12,0.0 +25838,9,97,15,0.0 +25838,14,23.25,21,0.0 +25838,53,32.8,48,0.0 +25838,50,16.25,5,0.0 +25838,36,19,43,0.0 +25838,67,14,10,0.0 +25838,45,9.5,43,0.0 +25838,74,10,8,0.0 +25838,61,28.5,9,0.0 +25839,15,15.5,47,0.0 +25839,33,2.5,38,0.0 +25839,18,62.5,8,0.0 +25839,43,46,9,0.0 +25839,36,19,11,0.0 +25839,46,12,35,0.0 +25839,25,14,27,0.0 +25839,74,10,46,0.0 +25839,7,30,36,0.0 +25839,21,10,18,0.0 +25839,37,26,22,0.0 +25839,27,43.9,38,0.0 +25839,54,7.45,43,0.0 +25839,70,15,22,0.0 +25839,35,18,20,0.0 +25839,38,263.5,31,0.0 +25839,9,97,15,0.0 +25839,57,19.5,14,0.0 +25839,4,22,29,0.0 +25839,53,32.8,41,0.0 +25839,61,28.5,49,0.0 +25839,51,53,42,0.0 +25839,58,13.25,7,0.0 +25839,68,12.5,3,0.0 +25839,12,38,18,0.0 +25839,28,45.6,41,0.0 +25839,10,31,25,0.0 +25839,14,23.25,50,0.0 +25839,11,21,34,0.0 +25839,24,4.5,12,0.0 +25839,75,7.75,34,0.0 +25839,23,9,5,0.0 +25839,8,40,26,0.0 +25839,41,9.65,43,0.0 +25839,47,9.5,49,0.0 +25839,42,14,7,0.0 +25839,17,39,46,0.0 +25839,63,43.9,28,0.0 +25839,73,15,38,0.0 +25839,2,19,1,0.0 +25839,62,49.3,40,0.0 +25839,5,21.35,34,0.0 +25839,13,6,33,0.0 +25839,65,21.05,35,0.0 +25839,77,13,28,0.0 +25840,33,2.5,1,0.0 +25840,26,31.23,19,0.0 +25840,36,19,15,0.0 +25840,14,23.25,29,0.0 +25840,67,14,5,0.0 +25840,16,17.45,29,0.0 +25840,71,21.5,46,0.0 +25840,3,10,25,0.0 +25840,30,25.89,30,0.0 +25840,72,34.8,1,0.0 +25840,9,97,13,0.0 +25840,73,15,38,0.0 +25840,34,14,27,0.0 +25840,50,16.25,37,0.0 +25840,46,12,18,0.0 +25840,52,7,30,0.0 +25840,40,18.4,12,0.0 +25840,24,4.5,20,0.0 +25841,17,39,5,0.0 +25841,34,14,27,0.0 +25841,27,43.9,21,0.0 +25841,12,38,35,0.0 +25841,53,32.8,49,0.0 +25841,64,33.25,45,0.0 +25841,35,18,12,0.0 +25841,67,14,38,0.0 +25841,48,12.75,12,0.0 +25841,62,49.3,34,0.0 +25841,26,31.23,16,0.0 +25841,22,21,37,0.0 +25841,29,123.79,29,0.0 +25841,10,31,5,0.0 +25841,52,7,41,0.0 +25841,15,15.5,39,0.0 +25841,19,9.2,43,0.0 +25841,40,18.4,15,0.0 +25841,38,263.5,16,0.0 +25841,7,30,11,0.0 +25841,59,55,10,0.0 +25841,46,12,49,0.0 +25841,16,17.45,3,0.0 +25841,18,62.5,15,0.0 +25841,71,21.5,10,0.0 +25841,30,25.89,14,0.0 +25841,2,19,26,0.0 +25841,39,18,21,0.0 +25841,37,26,2,0.0 +25841,45,9.5,44,0.0 +25841,8,40,16,0.0 +25841,72,34.8,13,0.0 +25841,36,19,7,0.0 +25841,70,15,3,0.0 +25841,28,45.6,1,0.0 +25841,61,28.5,37,0.0 +25841,13,6,4,0.0 +25841,31,12.5,4,0.0 +25841,54,7.45,44,0.0 +25841,21,10,43,0.0 +25841,74,10,40,0.0 +25841,4,22,27,0.0 +25841,55,24,15,0.0 +25841,58,13.25,45,0.0 +25841,49,20,50,0.0 +25841,33,2.5,13,0.0 +25841,14,23.25,15,0.0 +25841,76,18,45,0.0 +25841,1,18,31,0.0 +25841,3,10,39,0.0 +25841,75,7.75,41,0.0 +25841,42,14,19,0.0 +25841,63,43.9,24,0.0 +25841,43,46,30,0.0 +25841,5,21.35,50,0.0 +25841,47,9.5,34,0.0 +25841,65,21.05,23,0.0 +25841,57,19.5,31,0.0 +25841,66,17,41,0.0 +25841,9,97,18,0.0 +25841,56,38,12,0.0 +25842,76,18,22,0.0 +25842,7,30,30,0.0 +25842,58,13.25,49,0.0 +25842,67,14,45,0.0 +25842,59,55,15,0.0 +25842,45,9.5,18,0.0 +25842,43,46,34,0.0 +25842,48,12.75,45,0.0 +25842,35,18,41,0.0 +25842,6,25,20,0.0 +25842,49,20,33,0.0 +25842,14,23.25,9,0.0 +25842,73,15,7,0.0 +25842,37,26,32,0.0 +25842,26,31.23,13,0.0 +25842,23,9,31,0.0 +25842,53,32.8,31,0.0 +25842,38,263.5,11,0.0 +25842,40,18.4,24,0.0 +25842,42,14,7,0.0 +25842,75,7.75,20,0.0 +25842,15,15.5,17,0.0 +25842,13,6,45,0.0 +25842,20,81,32,0.0 +25842,47,9.5,25,0.0 +25842,11,21,29,0.0 +25842,74,10,49,0.0 +25842,18,62.5,46,0.0 +25842,16,17.45,2,0.0 +25842,2,19,16,0.0 +25842,19,9.2,9,0.0 +25842,72,34.8,29,0.0 +25842,71,21.5,18,0.0 +25842,51,53,12,0.0 +25842,36,19,6,0.0 +25842,25,14,21,0.0 +25842,31,12.5,22,0.0 +25842,70,15,35,0.0 +25842,57,19.5,4,0.0 +25842,10,31,27,0.0 +25843,24,4.5,15,0.0 +25843,20,81,12,0.0 +25843,68,12.5,37,0.0 +25843,44,19.45,34,0.0 +25843,61,28.5,41,0.0 +25843,9,97,48,0.0 +25843,16,17.45,31,0.0 +25843,70,15,47,0.0 +25843,26,31.23,20,0.0 +25843,72,34.8,44,0.0 +25843,23,9,42,0.0 +25843,17,39,19,0.0 +25843,1,18,48,0.0 +25843,58,13.25,39,0.0 +25843,60,34,4,0.0 +25843,67,14,19,0.0 +25843,25,14,9,0.0 +25843,54,7.45,22,0.0 +25843,8,40,17,0.0 +25843,28,45.6,44,0.0 +25843,34,14,23,0.0 +25843,64,33.25,1,0.0 +25843,63,43.9,3,0.0 +25843,37,26,8,0.0 +25843,4,22,49,0.0 +25843,50,16.25,7,0.0 +25843,73,15,10,0.0 +25843,77,13,29,0.0 +25843,39,18,15,0.0 +25843,29,123.79,17,0.0 +25843,66,17,14,0.0 +25843,47,9.5,11,0.0 +25843,22,21,27,0.0 +25843,49,20,46,0.0 +25843,15,15.5,38,0.0 +25843,65,21.05,37,0.0 +25843,11,21,34,0.0 +25843,62,49.3,16,0.0 +25843,12,38,37,0.0 +25843,71,21.5,50,0.0 +25843,2,19,43,0.0 +25844,60,34,14,0.0 +25844,50,16.25,18,0.0 +25844,26,31.23,28,0.0 +25844,32,32,30,0.0 +25844,17,39,31,0.0 +25844,9,97,24,0.0 +25844,23,9,11,0.0 +25844,77,13,24,0.0 +25844,73,15,25,0.0 +25844,58,13.25,22,0.0 +25844,51,53,23,0.0 +25844,29,123.79,6,0.0 +25844,37,26,1,0.0 +25844,76,18,1,0.0 +25844,66,17,24,0.0 +25844,40,18.4,12,0.0 +25844,8,40,18,0.0 +25844,27,43.9,48,0.0 +25844,1,18,14,0.0 +25844,21,10,11,0.0 +25844,71,21.5,22,0.0 +25844,46,12,11,0.0 +25844,7,30,4,0.0 +25844,41,9.65,38,0.0 +25844,15,15.5,24,0.0 +25844,56,38,50,0.0 +25844,47,9.5,49,0.0 +25845,45,9.5,29,0.0 +25845,11,21,11,0.0 +25845,31,12.5,19,0.0 +25845,19,9.2,38,0.0 +25845,34,14,14,0.0 +25845,22,21,48,0.0 +25845,69,36,8,0.0 +25845,2,19,43,0.0 +25845,40,18.4,23,0.0 +25845,6,25,49,0.0 +25845,56,38,9,0.0 +25845,12,38,41,0.0 +25845,44,19.45,39,0.0 +25845,17,39,14,0.0 +25845,58,13.25,2,0.0 +25845,13,6,16,0.0 +25845,10,31,2,0.0 +25845,20,81,31,0.0 +25845,52,7,46,0.0 +25845,26,31.23,22,0.0 +25845,42,14,38,0.0 +25845,33,2.5,5,0.0 +25845,35,18,33,0.0 +25845,55,24,18,0.0 +25845,43,46,34,0.0 +25845,59,55,39,0.0 +25845,3,10,31,0.0 +25845,47,9.5,39,0.0 +25845,73,15,35,0.0 +25845,72,34.8,21,0.0 +25845,29,123.79,3,0.0 +25845,46,12,47,0.0 +25845,60,34,16,0.0 +25845,66,17,31,0.0 +25846,54,7.45,30,0.0 +25846,72,34.8,40,0.0 +25846,18,62.5,50,0.0 +25846,38,263.5,1,0.0 +25846,42,14,41,0.0 +25846,60,34,14,0.0 +25846,16,17.45,23,0.0 +25846,45,9.5,5,0.0 +25846,58,13.25,41,0.0 +25846,9,97,44,0.0 +25846,33,2.5,28,0.0 +25846,24,4.5,11,0.0 +25846,34,14,40,0.0 +25846,64,33.25,34,0.0 +25846,56,38,15,0.0 +25846,28,45.6,28,0.0 +25846,4,22,3,0.0 +25846,14,23.25,8,0.0 +25846,59,55,10,0.0 +25846,37,26,12,0.0 +25846,63,43.9,16,0.0 +25846,5,21.35,32,0.0 +25846,23,9,31,0.0 +25846,44,19.45,19,0.0 +25846,26,31.23,16,0.0 +25846,12,38,50,0.0 +25846,15,15.5,24,0.0 +25846,67,14,5,0.0 +25846,69,36,32,0.0 +25846,22,21,33,0.0 +25846,49,20,45,0.0 +25846,7,30,14,0.0 +25846,19,9.2,18,0.0 +25846,66,17,29,0.0 +25846,73,15,41,0.0 +25846,55,24,35,0.0 +25846,61,28.5,3,0.0 +25846,41,9.65,4,0.0 +25846,35,18,31,0.0 +25846,68,12.5,17,0.0 +25846,17,39,43,0.0 +25846,43,46,12,0.0 +25846,39,18,42,0.0 +25846,74,10,21,0.0 +25846,65,21.05,9,0.0 +25846,47,9.5,12,0.0 +25846,6,25,1,0.0 +25846,53,32.8,6,0.0 +25846,71,21.5,13,0.0 +25846,11,21,48,0.0 +25847,25,14,40,0.0 +25847,35,18,32,0.0 +25847,43,46,17,0.0 +25847,13,6,3,0.0 +25847,40,18.4,49,0.0 +25847,12,38,40,0.0 +25847,17,39,28,0.0 +25847,48,12.75,41,0.0 +25847,50,16.25,32,0.0 +25847,69,36,50,0.0 +25847,72,34.8,12,0.0 +25847,42,14,29,0.0 +25847,32,32,2,0.0 +25847,60,34,22,0.0 +25847,52,7,4,0.0 +25847,28,45.6,29,0.0 +25847,8,40,34,0.0 +25847,16,17.45,4,0.0 +25847,22,21,16,0.0 +25847,64,33.25,34,0.0 +25847,77,13,47,0.0 +25847,39,18,11,0.0 +25847,4,22,10,0.0 +25847,6,25,4,0.0 +25847,24,4.5,7,0.0 +25847,36,19,29,0.0 +25847,14,23.25,36,0.0 +25847,75,7.75,10,0.0 +25847,61,28.5,26,0.0 +25847,71,21.5,7,0.0 +25847,29,123.79,44,0.0 +25847,44,19.45,36,0.0 +25847,15,15.5,27,0.0 +25847,1,18,31,0.0 +25847,67,14,41,0.0 +25847,27,43.9,25,0.0 +25847,65,21.05,3,0.0 +25847,66,17,11,0.0 +25847,38,263.5,12,0.0 +25847,55,24,5,0.0 +25847,19,9.2,5,0.0 +25847,46,12,1,0.0 +25847,30,25.89,17,0.0 +25847,7,30,28,0.0 +25847,11,21,14,0.0 +25847,41,9.65,40,0.0 +25847,63,43.9,1,0.0 +25847,10,31,16,0.0 +25847,23,9,34,0.0 +25847,59,55,35,0.0 +25847,51,53,18,0.0 +25847,20,81,31,0.0 +25847,2,19,3,0.0 +25847,21,10,37,0.0 +25847,18,62.5,24,0.0 +25847,56,38,47,0.0 +25847,37,26,50,0.0 +25847,70,15,35,0.0 +25847,26,31.23,34,0.0 +25847,58,13.25,5,0.0 +25847,47,9.5,45,0.0 +25848,72,34.8,33,0.0 +25848,25,14,43,0.0 +25848,67,14,36,0.0 +25848,44,19.45,40,0.0 +25848,29,123.79,33,0.0 +25848,35,18,23,0.0 +25848,47,9.5,8,0.0 +25848,12,38,4,0.0 +25848,16,17.45,36,0.0 +25848,33,2.5,26,0.0 +25848,20,81,10,0.0 +25848,21,10,15,0.0 +25848,13,6,23,0.0 +25848,70,15,6,0.0 +25848,64,33.25,48,0.0 +25848,61,28.5,12,0.0 +25848,45,9.5,2,0.0 +25848,30,25.89,36,0.0 +25848,6,25,9,0.0 +25848,18,62.5,22,0.0 +25848,10,31,42,0.0 +25848,8,40,15,0.0 +25848,2,19,35,0.0 +25848,75,7.75,34,0.0 +25848,74,10,16,0.0 +25848,39,18,8,0.0 +25848,19,9.2,30,0.0 +25848,4,22,23,0.0 +25848,52,7,43,0.0 +25849,65,21.05,20,0.0 +25849,74,10,32,0.0 +25849,39,18,4,0.0 +25849,22,21,15,0.0 +25849,8,40,31,0.0 +25849,67,14,29,0.0 +25849,53,32.8,23,0.0 +25849,35,18,24,0.0 +25849,55,24,11,0.0 +25849,29,123.79,49,0.0 +25849,69,36,8,0.0 +25849,43,46,3,0.0 +25849,33,2.5,14,0.0 +25849,10,31,22,0.0 +25850,15,15.5,5,0.0 +25850,13,6,16,0.0 +25850,23,9,3,0.0 +25850,51,53,34,0.0 +25850,46,12,10,0.0 +25851,45,9.5,34,0.0 +25851,30,25.89,4,0.0 +25851,77,13,40,0.0 +25851,65,21.05,40,0.0 +25851,47,9.5,45,0.0 +25851,25,14,45,0.0 +25851,23,9,24,0.0 +25852,38,263.5,5,0.0 +25852,30,25.89,6,0.0 +25852,42,14,42,0.0 +25852,54,7.45,10,0.0 +25852,25,14,36,0.0 +25852,12,38,33,0.0 +25852,66,17,23,0.0 +25852,36,19,12,0.0 +25852,2,19,1,0.0 +25852,18,62.5,47,0.0 +25852,28,45.6,5,0.0 +25852,48,12.75,22,0.0 +25852,14,23.25,33,0.0 +25852,9,97,34,0.0 +25852,58,13.25,20,0.0 +25852,77,13,19,0.0 +25852,26,31.23,44,0.0 +25852,61,28.5,33,0.0 +25852,35,18,17,0.0 +25852,4,22,2,0.0 +25852,70,15,33,0.0 +25852,22,21,24,0.0 +25852,69,36,44,0.0 +25853,77,13,3,0.0 +25853,4,22,2,0.0 +25853,71,21.5,38,0.0 +25853,19,9.2,46,0.0 +25853,23,9,14,0.0 +25853,39,18,44,0.0 +25853,5,21.35,1,0.0 +25853,54,7.45,25,0.0 +25853,63,43.9,22,0.0 +25853,21,10,4,0.0 +25853,64,33.25,9,0.0 +25853,62,49.3,50,0.0 +25853,1,18,25,0.0 +25853,67,14,11,0.0 +25853,6,25,42,0.0 +25853,36,19,13,0.0 +25853,68,12.5,3,0.0 +25853,28,45.6,18,0.0 +25853,70,15,17,0.0 +25853,56,38,4,0.0 +25853,35,18,19,0.0 +25853,55,24,25,0.0 +25853,73,15,15,0.0 +25853,41,9.65,44,0.0 +25853,74,10,33,0.0 +25853,18,62.5,10,0.0 +25853,17,39,20,0.0 +25853,49,20,28,0.0 +25853,76,18,24,0.0 +25853,60,34,37,0.0 +25853,69,36,29,0.0 +25853,42,14,11,0.0 +25853,27,43.9,14,0.0 +25853,15,15.5,2,0.0 +25854,4,22,8,0.0 +25854,1,18,38,0.0 +25854,52,7,7,0.0 +25854,35,18,40,0.0 +25854,14,23.25,42,0.0 +25854,32,32,15,0.0 +25854,34,14,35,0.0 +25854,31,12.5,12,0.0 +25854,73,15,16,0.0 +25854,12,38,11,0.0 +25854,48,12.75,45,0.0 +25854,3,10,13,0.0 +25854,5,21.35,9,0.0 +25854,68,12.5,40,0.0 +25854,58,13.25,15,0.0 +25854,75,7.75,9,0.0 +25854,45,9.5,20,0.0 +25854,33,2.5,1,0.0 +25854,6,25,42,0.0 +25854,37,26,22,0.0 +25854,39,18,38,0.0 +25854,70,15,30,0.0 +25854,61,28.5,3,0.0 +25854,76,18,20,0.0 +25854,56,38,27,0.0 +25854,65,21.05,13,0.0 +25854,11,21,44,0.0 +25854,26,31.23,36,0.0 +25854,20,81,19,0.0 +25854,30,25.89,27,0.0 +25854,72,34.8,3,0.0 +25854,18,62.5,10,0.0 +25854,46,12,31,0.0 +25854,7,30,43,0.0 +25854,41,9.65,50,0.0 +25854,62,49.3,11,0.0 +25854,59,55,17,0.0 +25854,47,9.5,45,0.0 +25854,43,46,7,0.0 +25854,66,17,10,0.0 +25854,63,43.9,28,0.0 +25854,38,263.5,12,0.0 +25854,42,14,30,0.0 +25854,9,97,13,0.0 +25854,67,14,45,0.0 +25854,51,53,15,0.0 +25854,57,19.5,2,0.0 +25854,24,4.5,11,0.0 +25855,56,38,29,0.0 +25855,38,263.5,39,0.0 +25855,47,9.5,49,0.0 +25855,2,19,40,0.0 +25855,39,18,36,0.0 +25855,11,21,40,0.0 +25855,37,26,41,0.0 +25855,36,19,10,0.0 +25855,58,13.25,16,0.0 +25855,65,21.05,14,0.0 +25855,51,53,45,0.0 +25855,29,123.79,22,0.0 +25855,67,14,44,0.0 +25855,74,10,49,0.0 +25855,45,9.5,45,0.0 +25855,40,18.4,19,0.0 +25855,12,38,15,0.0 +25855,1,18,49,0.0 +25855,24,4.5,24,0.0 +25855,62,49.3,10,0.0 +25855,35,18,13,0.0 +25855,46,12,48,0.0 +25855,7,30,34,0.0 +25855,66,17,32,0.0 +25855,13,6,48,0.0 +25855,15,15.5,39,0.0 +25855,69,36,23,0.0 +25855,63,43.9,6,0.0 +25855,14,23.25,40,0.0 +25855,70,15,28,0.0 +25855,30,25.89,45,0.0 +25855,76,18,5,0.0 +25855,17,39,1,0.0 +25855,64,33.25,13,0.0 +25855,59,55,15,0.0 +25855,20,81,35,0.0 +25855,55,24,33,0.0 +25855,16,17.45,10,0.0 +25855,19,9.2,24,0.0 +25855,60,34,16,0.0 +25855,73,15,7,0.0 +25855,44,19.45,32,0.0 +25855,5,21.35,40,0.0 +25855,43,46,1,0.0 +25855,21,10,31,0.0 +25855,18,62.5,3,0.0 +25855,27,43.9,22,0.0 +25855,72,34.8,34,0.0 +25855,42,14,48,0.0 +25855,71,21.5,28,0.0 +25855,10,31,30,0.0 +25855,32,32,39,0.0 +25855,25,14,36,0.0 +25855,53,32.8,13,0.0 +25855,77,13,1,0.0 +25855,50,16.25,33,0.0 +25855,9,97,33,0.0 +25855,33,2.5,21,0.0 +25855,8,40,50,0.0 +25855,57,19.5,49,0.0 +25855,31,12.5,34,0.0 +25855,23,9,41,0.0 +25855,75,7.75,47,0.0 +25855,54,7.45,1,0.0 +25855,52,7,1,0.0 +25855,28,45.6,18,0.0 +25855,34,14,7,0.0 +25855,26,31.23,8,0.0 +25855,3,10,33,0.0 +25856,49,20,17,0.0 +25856,50,16.25,49,0.0 +25856,16,17.45,40,0.0 +25856,39,18,20,0.0 +25856,14,23.25,48,0.0 +25856,64,33.25,24,0.0 +25856,63,43.9,3,0.0 +25856,53,32.8,28,0.0 +25856,2,19,11,0.0 +25856,8,40,49,0.0 +25856,46,12,24,0.0 +25856,62,49.3,18,0.0 +25856,61,28.5,48,0.0 +25856,15,15.5,10,0.0 +25856,41,9.65,17,0.0 +25856,27,43.9,35,0.0 +25856,1,18,15,0.0 +25856,11,21,10,0.0 +25856,59,55,46,0.0 +25856,30,25.89,31,0.0 +25856,73,15,5,0.0 +25856,13,6,34,0.0 +25856,31,12.5,50,0.0 +25856,77,13,32,0.0 +25856,55,24,45,0.0 +25856,25,14,39,0.0 +25856,60,34,35,0.0 +25856,7,30,4,0.0 +25856,57,19.5,12,0.0 +25856,75,7.75,19,0.0 +25856,21,10,44,0.0 +25856,4,22,8,0.0 +25856,20,81,43,0.0 +25856,29,123.79,43,0.0 +25856,36,19,18,0.0 +25856,22,21,45,0.0 +25856,67,14,4,0.0 +25856,17,39,12,0.0 +25856,32,32,3,0.0 +25856,71,21.5,6,0.0 +25856,58,13.25,29,0.0 +25856,19,9.2,45,0.0 +25856,45,9.5,44,0.0 +25856,65,21.05,26,0.0 +25856,9,97,14,0.0 +25856,48,12.75,27,0.0 +25856,51,53,42,0.0 +25856,37,26,42,0.0 +25856,23,9,9,0.0 +25856,42,14,49,0.0 +25856,54,7.45,31,0.0 +25856,40,18.4,11,0.0 +25856,69,36,44,0.0 +25856,34,14,8,0.0 +25856,56,38,12,0.0 +25856,3,10,42,0.0 +25856,12,38,32,0.0 +25856,28,45.6,5,0.0 +25856,6,25,22,0.0 +25856,74,10,24,0.0 +25856,18,62.5,37,0.0 +25856,38,263.5,27,0.0 +25856,24,4.5,29,0.0 +25856,72,34.8,24,0.0 +25856,66,17,9,0.0 +25856,43,46,39,0.0 +25856,5,21.35,18,0.0 +25856,47,9.5,29,0.0 +25856,33,2.5,39,0.0 +25856,76,18,35,0.0 +25856,35,18,5,0.0 +25856,68,12.5,19,0.0 +25857,2,19,49,0.0 +25857,57,19.5,44,0.0 +25857,24,4.5,2,0.0 +25857,47,9.5,2,0.0 +25857,67,14,29,0.0 +25857,1,18,44,0.0 +25857,7,30,15,0.0 +25857,36,19,32,0.0 +25857,55,24,26,0.0 +25857,63,43.9,7,0.0 +25857,18,62.5,4,0.0 +25857,32,32,26,0.0 +25857,65,21.05,49,0.0 +25857,21,10,47,0.0 +25857,13,6,38,0.0 +25857,3,10,33,0.0 +25857,66,17,42,0.0 +25857,10,31,27,0.0 +25857,5,21.35,50,0.0 +25857,73,15,25,0.0 +25857,9,97,6,0.0 +25857,43,46,28,0.0 +25857,15,15.5,50,0.0 +25857,75,7.75,44,0.0 +25857,54,7.45,14,0.0 +25857,42,14,36,0.0 +25857,77,13,1,0.0 +25857,33,2.5,20,0.0 +25857,26,31.23,32,0.0 +25857,72,34.8,35,0.0 +25857,23,9,28,0.0 +25857,51,53,49,0.0 +25857,37,26,11,0.0 +25857,45,9.5,31,0.0 +25857,62,49.3,12,0.0 +25857,74,10,33,0.0 +25857,53,32.8,45,0.0 +25857,76,18,46,0.0 +25857,31,12.5,18,0.0 +25857,11,21,10,0.0 +25857,69,36,22,0.0 +25857,44,19.45,32,0.0 +25857,61,28.5,3,0.0 +25857,20,81,15,0.0 +25857,12,38,20,0.0 +25857,39,18,5,0.0 +25857,60,34,24,0.0 +25857,17,39,7,0.0 +25857,48,12.75,27,0.0 +25857,34,14,32,0.0 +25857,27,43.9,45,0.0 +25857,56,38,22,0.0 +25857,16,17.45,33,0.0 +25857,4,22,45,0.0 +25857,22,21,26,0.0 +25857,50,16.25,5,0.0 +25857,68,12.5,21,0.0 +25857,46,12,24,0.0 +25857,19,9.2,25,0.0 +25857,6,25,20,0.0 +25857,41,9.65,30,0.0 +25857,38,263.5,42,0.0 +25857,30,25.89,11,0.0 +25857,70,15,33,0.0 +25857,71,21.5,28,0.0 +25857,64,33.25,2,0.0 +25858,15,15.5,29,0.0 +25858,23,9,12,0.0 +25858,62,49.3,11,0.0 +25858,35,18,19,0.0 +25858,11,21,43,0.0 +25858,47,9.5,4,0.0 +25858,9,97,41,0.0 +25858,22,21,25,0.0 +25858,7,30,38,0.0 +25858,59,55,20,0.0 +25858,31,12.5,4,0.0 +25858,25,14,10,0.0 +25858,43,46,12,0.0 +25858,58,13.25,12,0.0 +25858,65,21.05,45,0.0 +25858,28,45.6,24,0.0 +25858,40,18.4,15,0.0 +25858,54,7.45,37,0.0 +25858,33,2.5,46,0.0 +25858,20,81,19,0.0 +25858,60,34,33,0.0 +25858,26,31.23,6,0.0 +25858,63,43.9,34,0.0 +25858,74,10,33,0.0 +25858,6,25,6,0.0 +25858,8,40,4,0.0 +25858,64,33.25,26,0.0 +25858,69,36,25,0.0 +25858,52,7,42,0.0 +25858,50,16.25,1,0.0 +25858,45,9.5,41,0.0 +25858,34,14,26,0.0 +25858,18,62.5,16,0.0 +25858,38,263.5,19,0.0 +25858,77,13,40,0.0 +25858,46,12,6,0.0 +25858,30,25.89,49,0.0 +25858,53,32.8,32,0.0 +25858,1,18,45,0.0 +25858,24,4.5,6,0.0 +25858,48,12.75,44,0.0 +25858,4,22,2,0.0 +25858,44,19.45,22,0.0 +25858,73,15,43,0.0 +25858,71,21.5,4,0.0 +25858,39,18,2,0.0 +25858,12,38,8,0.0 +25858,10,31,13,0.0 +25858,70,15,27,0.0 +25858,5,21.35,1,0.0 +25858,57,19.5,24,0.0 +25858,67,14,6,0.0 +25858,72,34.8,19,0.0 +25858,61,28.5,35,0.0 +25858,19,9.2,26,0.0 +25858,16,17.45,42,0.0 +25858,13,6,9,0.0 +25858,37,26,29,0.0 +25858,2,19,50,0.0 +25858,3,10,38,0.0 +25858,51,53,6,0.0 +25858,56,38,11,0.0 +25858,75,7.75,30,0.0 +25858,21,10,32,0.0 +25858,17,39,31,0.0 +25858,29,123.79,17,0.0 +25858,66,17,39,0.0 +25858,55,24,1,0.0 +25858,68,12.5,49,0.0 +25858,41,9.65,39,0.0 +25858,49,20,37,0.0 +25859,62,49.3,32,0.0 +25859,72,34.8,31,0.0 +25859,19,9.2,30,0.0 +25859,4,22,22,0.0 +25859,34,14,35,0.0 +25859,59,55,34,0.0 +25859,46,12,2,0.0 +25859,27,43.9,2,0.0 +25859,63,43.9,38,0.0 +25859,24,4.5,3,0.0 +25860,66,17,47,0.0 +25860,3,10,14,0.0 +25860,71,21.5,19,0.0 +25860,55,24,8,0.0 +25860,34,14,10,0.0 +25860,1,18,32,0.0 +25860,58,13.25,18,0.0 +25860,2,19,12,0.0 +25860,36,19,6,0.0 +25860,7,30,44,0.0 +25860,33,2.5,27,0.0 +25860,57,19.5,31,0.0 +25860,4,22,1,0.0 +25860,52,7,26,0.0 +25860,9,97,47,0.0 +25860,70,15,10,0.0 +25860,68,12.5,44,0.0 +25860,72,34.8,46,0.0 +25860,56,38,3,0.0 +25860,50,16.25,46,0.0 +25860,8,40,3,0.0 +25860,29,123.79,9,0.0 +25860,30,25.89,19,0.0 +25860,13,6,4,0.0 +25860,14,23.25,27,0.0 +25860,12,38,23,0.0 +25860,48,12.75,22,0.0 +25860,45,9.5,26,0.0 +25860,15,15.5,31,0.0 +25860,47,9.5,40,0.0 +25860,73,15,22,0.0 +25860,10,31,19,0.0 +25860,49,20,1,0.0 +25860,40,18.4,29,0.0 +25860,54,7.45,11,0.0 +25860,37,26,4,0.0 +25861,61,28.5,49,0.0 +25861,26,31.23,9,0.0 +25861,59,55,7,0.0 +25861,4,22,35,0.0 +25861,33,2.5,30,0.0 +25861,34,14,27,0.0 +25861,11,21,44,0.0 +25861,16,17.45,5,0.0 +25861,30,25.89,9,0.0 +25861,71,21.5,50,0.0 +25861,52,7,13,0.0 +25861,40,18.4,10,0.0 +25861,63,43.9,41,0.0 +25861,74,10,31,0.0 +25861,55,24,34,0.0 +25861,50,16.25,15,0.0 +25861,48,12.75,40,0.0 +25861,31,12.5,41,0.0 +25861,65,21.05,38,0.0 +25861,21,10,23,0.0 +25861,58,13.25,4,0.0 +25861,27,43.9,6,0.0 +25862,71,21.5,11,0.0 +25862,7,30,42,0.0 +25862,5,21.35,28,0.0 +25862,69,36,40,0.0 +25862,43,46,34,0.0 +25862,19,9.2,12,0.0 +25862,16,17.45,35,0.0 +25862,49,20,24,0.0 +25862,68,12.5,50,0.0 +25862,66,17,41,0.0 +25862,58,13.25,48,0.0 +25862,47,9.5,44,0.0 +25862,4,22,44,0.0 +25862,25,14,19,0.0 +25862,63,43.9,40,0.0 +25862,45,9.5,25,0.0 +25862,8,40,20,0.0 +25862,44,19.45,41,0.0 +25862,52,7,50,0.0 +25862,26,31.23,36,0.0 +25862,13,6,40,0.0 +25862,35,18,4,0.0 +25862,17,39,40,0.0 +25862,42,14,34,0.0 +25862,6,25,47,0.0 +25862,15,15.5,4,0.0 +25862,39,18,41,0.0 +25862,14,23.25,13,0.0 +25862,48,12.75,9,0.0 +25862,24,4.5,13,0.0 +25862,34,14,37,0.0 +25862,27,43.9,22,0.0 +25862,50,16.25,21,0.0 +25862,64,33.25,38,0.0 +25862,23,9,31,0.0 +25862,65,21.05,12,0.0 +25862,2,19,20,0.0 +25862,11,21,49,0.0 +25863,52,7,48,0.0 +25863,8,40,25,0.0 +25863,42,14,6,0.0 +25863,65,21.05,39,0.0 +25863,41,9.65,19,0.0 +25863,77,13,23,0.0 +25863,70,15,14,0.0 +25863,39,18,41,0.0 +25863,16,17.45,13,0.0 +25863,28,45.6,22,0.0 +25863,17,39,17,0.0 +25863,3,10,6,0.0 +25863,22,21,17,0.0 +25863,11,21,3,0.0 +25863,24,4.5,40,0.0 +25863,15,15.5,38,0.0 +25863,7,30,48,0.0 +25863,27,43.9,40,0.0 +25863,62,49.3,25,0.0 +25863,36,19,18,0.0 +25863,67,14,4,0.0 +25863,59,55,5,0.0 +25863,53,32.8,41,0.0 +25863,69,36,42,0.0 +25863,37,26,42,0.0 +25863,19,9.2,2,0.0 +25863,23,9,9,0.0 +25863,13,6,17,0.0 +25863,64,33.25,35,0.0 +25863,50,16.25,36,0.0 +25863,20,81,1,0.0 +25863,29,123.79,39,0.0 +25863,9,97,12,0.0 +25863,40,18.4,6,0.0 +25863,46,12,6,0.0 +25863,55,24,35,0.0 +25863,45,9.5,27,0.0 +25863,1,18,46,0.0 +25863,48,12.75,21,0.0 +25863,76,18,28,0.0 +25864,25,14,43,0.0 +25864,41,9.65,19,0.0 +25864,64,33.25,18,0.0 +25864,11,21,40,0.0 +25864,60,34,3,0.0 +25864,76,18,25,0.0 +25864,5,21.35,34,0.0 +25864,51,53,38,0.0 +25864,75,7.75,37,0.0 +25864,13,6,25,0.0 +25864,19,9.2,29,0.0 +25864,35,18,40,0.0 +25864,56,38,32,0.0 +25864,52,7,1,0.0 +25864,45,9.5,29,0.0 +25864,58,13.25,11,0.0 +25864,6,25,4,0.0 +25864,10,31,29,0.0 +25864,65,21.05,46,0.0 +25864,14,23.25,35,0.0 +25864,46,12,7,0.0 +25864,39,18,20,0.0 +25864,49,20,26,0.0 +25864,66,17,26,0.0 +25864,28,45.6,4,0.0 +25864,30,25.89,7,0.0 +25864,50,16.25,4,0.0 +25864,57,19.5,21,0.0 +25864,21,10,24,0.0 +25864,55,24,1,0.0 +25864,36,19,33,0.0 +25864,74,10,9,0.0 +25864,63,43.9,23,0.0 +25864,12,38,11,0.0 +25864,15,15.5,2,0.0 +25864,69,36,49,0.0 +25864,16,17.45,44,0.0 +25864,31,12.5,18,0.0 +25864,40,18.4,8,0.0 +25864,7,30,7,0.0 +25864,4,22,10,0.0 +25864,44,19.45,41,0.0 +25864,67,14,10,0.0 +25864,27,43.9,46,0.0 +25864,23,9,47,0.0 +25864,33,2.5,29,0.0 +25864,34,14,17,0.0 +25864,18,62.5,37,0.0 +25864,53,32.8,25,0.0 +25864,17,39,7,0.0 +25864,38,263.5,24,0.0 +25864,62,49.3,6,0.0 +25864,24,4.5,26,0.0 +25864,72,34.8,26,0.0 +25864,32,32,50,0.0 +25864,77,13,30,0.0 +25864,9,97,34,0.0 +25864,48,12.75,37,0.0 +25864,29,123.79,37,0.0 +25864,59,55,27,0.0 +25864,71,21.5,33,0.0 +25864,54,7.45,21,0.0 +25864,20,81,16,0.0 +25864,3,10,47,0.0 +25864,43,46,6,0.0 +25865,52,7,31,0.0 +25865,15,15.5,3,0.0 +25865,72,34.8,25,0.0 +25865,19,9.2,40,0.0 +25865,71,21.5,24,0.0 +25865,60,34,3,0.0 +25865,8,40,11,0.0 +25865,61,28.5,42,0.0 +25865,18,62.5,41,0.0 +25865,12,38,23,0.0 +25865,46,12,39,0.0 +25865,14,23.25,26,0.0 +25865,11,21,41,0.0 +25865,43,46,18,0.0 +25865,31,12.5,18,0.0 +25865,17,39,16,0.0 +25865,3,10,46,0.0 +25865,76,18,1,0.0 +25865,62,49.3,29,0.0 +25865,53,32.8,42,0.0 +25865,59,55,9,0.0 +25865,37,26,37,0.0 +25865,69,36,8,0.0 +25865,7,30,32,0.0 +25865,6,25,17,0.0 +25865,55,24,2,0.0 +25865,54,7.45,27,0.0 +25865,35,18,50,0.0 +25865,34,14,37,0.0 +25865,38,263.5,42,0.0 +25865,58,13.25,33,0.0 +25865,67,14,6,0.0 +25865,51,53,45,0.0 +25865,70,15,21,0.0 +25865,24,4.5,16,0.0 +25865,36,19,1,0.0 +25865,4,22,26,0.0 +25865,73,15,5,0.0 +25865,39,18,22,0.0 +25865,20,81,19,0.0 +25865,26,31.23,18,0.0 +25865,64,33.25,43,0.0 +25865,50,16.25,38,0.0 +25865,2,19,25,0.0 +25865,30,25.89,36,0.0 +25865,1,18,30,0.0 +25865,77,13,6,0.0 +25865,68,12.5,32,0.0 +25865,22,21,4,0.0 +25865,44,19.45,13,0.0 +25865,25,14,29,0.0 +25865,23,9,16,0.0 +25865,63,43.9,6,0.0 +25865,28,45.6,14,0.0 +25865,66,17,32,0.0 +25865,16,17.45,46,0.0 +25866,26,31.23,14,0.0 +25866,65,21.05,19,0.0 +25866,18,62.5,5,0.0 +25867,28,45.6,24,0.0 +25867,74,10,38,0.0 +25867,13,6,2,0.0 +25867,31,12.5,13,0.0 +25867,29,123.79,13,0.0 +25867,32,32,2,0.0 +25867,55,24,43,0.0 +25867,15,15.5,32,0.0 +25867,4,22,47,0.0 +25867,24,4.5,29,0.0 +25867,23,9,2,0.0 +25867,45,9.5,8,0.0 +25867,44,19.45,30,0.0 +25867,73,15,34,0.0 +25867,63,43.9,16,0.0 +25867,42,14,34,0.0 +25867,41,9.65,32,0.0 +25867,21,10,33,0.0 +25867,8,40,23,0.0 +25867,40,18.4,39,0.0 +25867,14,23.25,30,0.0 +25867,57,19.5,35,0.0 +25867,17,39,31,0.0 +25867,9,97,29,0.0 +25867,48,12.75,43,0.0 +25867,43,46,31,0.0 +25867,37,26,14,0.0 +25868,75,7.75,15,0.0 +25868,7,30,47,0.0 +25868,5,21.35,42,0.0 +25868,15,15.5,1,0.0 +25868,57,19.5,8,0.0 +25868,59,55,40,0.0 +25868,49,20,31,0.0 +25868,33,2.5,33,0.0 +25868,71,21.5,49,0.0 +25868,19,9.2,26,0.0 +25868,44,19.45,27,0.0 +25868,45,9.5,13,0.0 +25868,28,45.6,13,0.0 +25868,40,18.4,5,0.0 +25868,20,81,50,0.0 +25868,41,9.65,16,0.0 +25868,23,9,1,0.0 +25868,11,21,30,0.0 +25868,10,31,43,0.0 +25868,53,32.8,37,0.0 +25868,3,10,34,0.0 +25868,27,43.9,27,0.0 +25868,52,7,34,0.0 +25868,16,17.45,29,0.0 +25868,56,38,31,0.0 +25868,13,6,38,0.0 +25868,63,43.9,12,0.0 +25868,29,123.79,45,0.0 +25868,26,31.23,34,0.0 +25868,1,18,7,0.0 +25868,61,28.5,6,0.0 +25868,50,16.25,27,0.0 +25868,74,10,20,0.0 +25868,54,7.45,2,0.0 +25868,43,46,17,0.0 +25868,22,21,21,0.0 +25868,39,18,39,0.0 +25868,36,19,40,0.0 +25868,46,12,35,0.0 +25868,55,24,13,0.0 +25868,69,36,44,0.0 +25868,18,62.5,10,0.0 +25868,4,22,15,0.0 +25868,67,14,17,0.0 +25868,25,14,47,0.0 +25868,68,12.5,3,0.0 +25868,9,97,21,0.0 +25868,64,33.25,12,0.0 +25868,6,25,5,0.0 +25868,31,12.5,46,0.0 +25868,72,34.8,34,0.0 +25868,73,15,40,0.0 +25868,48,12.75,50,0.0 +25868,38,263.5,33,0.0 +25868,35,18,27,0.0 +25868,70,15,50,0.0 +25869,19,9.2,37,0.0 +25869,39,18,47,0.0 +25869,8,40,7,0.0 +25869,32,32,31,0.0 +25869,5,21.35,13,0.0 +25869,41,9.65,34,0.0 +25869,50,16.25,36,0.0 +25869,59,55,30,0.0 +25869,73,15,20,0.0 +25869,37,26,24,0.0 +25869,70,15,40,0.0 +25869,48,12.75,37,0.0 +25869,75,7.75,30,0.0 +25869,68,12.5,31,0.0 +25869,42,14,24,0.0 +25869,35,18,10,0.0 +25869,14,23.25,26,0.0 +25869,40,18.4,31,0.0 +25869,53,32.8,41,0.0 +25869,56,38,25,0.0 +25869,7,30,19,0.0 +25869,15,15.5,22,0.0 +25869,13,6,47,0.0 +25869,23,9,28,0.0 +25869,74,10,50,0.0 +25869,17,39,49,0.0 +25869,62,49.3,23,0.0 +25869,71,21.5,41,0.0 +25869,29,123.79,23,0.0 +25869,49,20,45,0.0 +25869,77,13,18,0.0 +25869,30,25.89,20,0.0 +25869,66,17,28,0.0 +25869,34,14,31,0.0 +25869,64,33.25,30,0.0 +25869,47,9.5,20,0.0 +25869,54,7.45,41,0.0 +25869,24,4.5,43,0.0 +25870,66,17,48,0.0 +25870,77,13,4,0.0 +25870,34,14,12,0.0 +25870,12,38,30,0.0 +25870,23,9,33,0.0 +25870,56,38,12,0.0 +25870,55,24,3,0.0 +25870,20,81,14,0.0 +25870,73,15,13,0.0 +25870,29,123.79,39,0.0 +25870,26,31.23,9,0.0 +25870,62,49.3,10,0.0 +25870,13,6,43,0.0 +25870,4,22,46,0.0 +25870,9,97,28,0.0 +25870,32,32,41,0.0 +25870,22,21,24,0.0 +25870,10,31,31,0.0 +25870,11,21,19,0.0 +25870,51,53,49,0.0 +25870,15,15.5,32,0.0 +25870,41,9.65,38,0.0 +25870,72,34.8,23,0.0 +25870,21,10,50,0.0 +25870,39,18,24,0.0 +25870,49,20,22,0.0 +25870,67,14,28,0.0 +25870,40,18.4,33,0.0 +25870,61,28.5,36,0.0 +25870,53,32.8,17,0.0 +25870,17,39,10,0.0 +25870,33,2.5,34,0.0 +25870,46,12,49,0.0 +25870,54,7.45,33,0.0 +25870,35,18,33,0.0 +25870,42,14,32,0.0 +25870,28,45.6,33,0.0 +25870,18,62.5,1,0.0 +25870,6,25,26,0.0 +25870,74,10,35,0.0 +25870,1,18,23,0.0 +25870,24,4.5,26,0.0 +25870,60,34,34,0.0 +25870,38,263.5,20,0.0 +25870,25,14,13,0.0 +25870,8,40,31,0.0 +25870,50,16.25,29,0.0 +25870,59,55,34,0.0 +25870,5,21.35,16,0.0 +25870,31,12.5,10,0.0 +25870,76,18,23,0.0 +25870,69,36,40,0.0 +25870,68,12.5,40,0.0 +25870,3,10,4,0.0 +25870,63,43.9,16,0.0 +25870,2,19,40,0.0 +25870,75,7.75,27,0.0 +25870,36,19,44,0.0 +25870,44,19.45,48,0.0 +25870,48,12.75,34,0.0 +25870,43,46,43,0.0 +25870,71,21.5,20,0.0 +25870,47,9.5,33,0.0 +25870,27,43.9,4,0.0 +25871,64,33.25,10,0.0 +25871,24,4.5,13,0.0 +25871,7,30,48,0.0 +25871,34,14,36,0.0 +25871,71,21.5,34,0.0 +25871,16,17.45,3,0.0 +25871,56,38,49,0.0 +25871,52,7,35,0.0 +25871,41,9.65,50,0.0 +25871,70,15,1,0.0 +25871,9,97,19,0.0 +25871,39,18,8,0.0 +25871,74,10,35,0.0 +25871,11,21,19,0.0 +25871,42,14,45,0.0 +25871,47,9.5,41,0.0 +25871,40,18.4,19,0.0 +25871,13,6,21,0.0 +25871,4,22,28,0.0 +25871,26,31.23,30,0.0 +25871,61,28.5,38,0.0 +25871,57,19.5,37,0.0 +25872,54,7.45,1,0.0 +25872,10,31,40,0.0 +25872,11,21,21,0.0 +25872,19,9.2,22,0.0 +25872,58,13.25,29,0.0 +25872,6,25,27,0.0 +25872,15,15.5,40,0.0 +25872,77,13,44,0.0 +25872,29,123.79,26,0.0 +25872,70,15,38,0.0 +25872,22,21,33,0.0 +25872,42,14,31,0.0 +25872,30,25.89,12,0.0 +25872,8,40,11,0.0 +25872,48,12.75,23,0.0 +25872,50,16.25,50,0.0 +25872,75,7.75,29,0.0 +25872,55,24,16,0.0 +25872,38,263.5,49,0.0 +25872,36,19,44,0.0 +25872,53,32.8,32,0.0 +25872,44,19.45,38,0.0 +25872,43,46,12,0.0 +25872,69,36,40,0.0 +25872,9,97,30,0.0 +25872,73,15,15,0.0 +25872,68,12.5,36,0.0 +25872,65,21.05,46,0.0 +25872,62,49.3,23,0.0 +25873,29,123.79,43,0.0 +25873,24,4.5,20,0.0 +25873,56,38,34,0.0 +25873,6,25,38,0.0 +25873,49,20,9,0.0 +25873,66,17,25,0.0 +25873,40,18.4,25,0.0 +25873,43,46,3,0.0 +25873,15,15.5,9,0.0 +25874,27,43.9,48,0.0 +25874,39,18,13,0.0 +25874,8,40,23,0.0 +25874,38,263.5,5,0.0 +25874,18,62.5,4,0.0 +25874,61,28.5,38,0.0 +25874,50,16.25,39,0.0 +25874,51,53,32,0.0 +25874,48,12.75,10,0.0 +25874,13,6,45,0.0 +25874,22,21,50,0.0 +25874,2,19,9,0.0 +25874,17,39,34,0.0 +25874,20,81,35,0.0 +25874,54,7.45,16,0.0 +25874,72,34.8,30,0.0 +25874,30,25.89,26,0.0 +25874,35,18,49,0.0 +25874,24,4.5,39,0.0 +25874,42,14,31,0.0 +25874,55,24,38,0.0 +25874,25,14,23,0.0 +25874,40,18.4,30,0.0 +25874,62,49.3,4,0.0 +25874,52,7,50,0.0 +25874,7,30,31,0.0 +25874,37,26,14,0.0 +25874,74,10,13,0.0 +25874,12,38,47,0.0 +25874,21,10,11,0.0 +25874,67,14,15,0.0 +25874,4,22,29,0.0 +25874,58,13.25,22,0.0 +25875,7,30,32,0.0 +25875,66,17,29,0.0 +25875,60,34,27,0.0 +25875,19,9.2,35,0.0 +25875,56,38,27,0.0 +25875,15,15.5,8,0.0 +25875,32,32,22,0.0 +25875,76,18,36,0.0 +25875,53,32.8,16,0.0 +25875,41,9.65,32,0.0 +25875,21,10,30,0.0 +25875,75,7.75,8,0.0 +25875,36,19,14,0.0 +25875,17,39,31,0.0 +25875,27,43.9,8,0.0 +25875,51,53,19,0.0 +25875,1,18,15,0.0 +25875,37,26,43,0.0 +25875,20,81,5,0.0 +25875,73,15,11,0.0 +25875,48,12.75,25,0.0 +25875,5,21.35,1,0.0 +25875,49,20,10,0.0 +25875,44,19.45,19,0.0 +25875,30,25.89,41,0.0 +25875,69,36,23,0.0 +25875,25,14,35,0.0 +25875,72,34.8,32,0.0 +25875,10,31,26,0.0 +25875,9,97,39,0.0 +25875,50,16.25,11,0.0 +25875,29,123.79,48,0.0 +25875,45,9.5,33,0.0 +25875,68,12.5,5,0.0 +25875,28,45.6,38,0.0 +25875,12,38,5,0.0 +25875,59,55,22,0.0 +25875,26,31.23,1,0.0 +25875,74,10,24,0.0 +25875,14,23.25,3,0.0 +25875,43,46,37,0.0 +25875,63,43.9,15,0.0 +25875,46,12,9,0.0 +25875,42,14,14,0.0 +25875,57,19.5,49,0.0 +25875,77,13,36,0.0 +25875,38,263.5,12,0.0 +25875,34,14,29,0.0 +25875,2,19,22,0.0 +25875,58,13.25,13,0.0 +25875,35,18,28,0.0 +25875,70,15,38,0.0 +25875,71,21.5,22,0.0 +25875,62,49.3,39,0.0 +25875,11,21,19,0.0 +25875,22,21,45,0.0 +25875,33,2.5,34,0.0 +25875,31,12.5,9,0.0 +25875,40,18.4,12,0.0 +25875,64,33.25,1,0.0 +25875,23,9,25,0.0 +25875,55,24,4,0.0 +25875,54,7.45,11,0.0 +25875,8,40,42,0.0 +25875,18,62.5,15,0.0 +25875,4,22,35,0.0 +25875,47,9.5,12,0.0 +25875,52,7,16,0.0 +25875,6,25,8,0.0 +25875,67,14,45,0.0 +25875,13,6,47,0.0 +25875,39,18,34,0.0 +25875,24,4.5,7,0.0 +25875,16,17.45,37,0.0 +25875,65,21.05,45,0.0 +25876,17,39,35,0.0 +25876,58,13.25,29,0.0 +25876,77,13,39,0.0 +25876,27,43.9,39,0.0 +25876,52,7,2,0.0 +25876,43,46,41,0.0 +25876,40,18.4,47,0.0 +25876,76,18,50,0.0 +25876,44,19.45,15,0.0 +25876,16,17.45,38,0.0 +25876,73,15,40,0.0 +25876,41,9.65,11,0.0 +25876,3,10,16,0.0 +25876,45,9.5,14,0.0 +25876,49,20,24,0.0 +25876,51,53,11,0.0 +25876,39,18,38,0.0 +25876,60,34,16,0.0 +25876,72,34.8,49,0.0 +25876,7,30,34,0.0 +25876,24,4.5,27,0.0 +25876,75,7.75,4,0.0 +25876,18,62.5,24,0.0 +25876,50,16.25,44,0.0 +25876,21,10,31,0.0 +25876,31,12.5,41,0.0 +25876,46,12,3,0.0 +25876,33,2.5,50,0.0 +25876,11,21,6,0.0 +25876,1,18,22,0.0 +25876,74,10,2,0.0 +25876,22,21,35,0.0 +25876,61,28.5,33,0.0 +25876,64,33.25,17,0.0 +25876,42,14,31,0.0 +25876,68,12.5,14,0.0 +25876,69,36,1,0.0 +25876,67,14,30,0.0 +25876,37,26,19,0.0 +25876,6,25,21,0.0 +25876,19,9.2,50,0.0 +25876,62,49.3,1,0.0 +25876,26,31.23,9,0.0 +25877,64,33.25,17,0.0 +25877,17,39,11,0.0 +25877,1,18,49,0.0 +25877,19,9.2,15,0.0 +25877,56,38,14,0.0 +25877,18,62.5,50,0.0 +25877,42,14,10,0.0 +25877,67,14,28,0.0 +25877,77,13,17,0.0 +25877,76,18,50,0.0 +25877,50,16.25,27,0.0 +25877,16,17.45,30,0.0 +25877,54,7.45,44,0.0 +25877,46,12,32,0.0 +25877,73,15,34,0.0 +25877,22,21,43,0.0 +25877,12,38,29,0.0 +25877,53,32.8,8,0.0 +25877,49,20,13,0.0 +25877,69,36,15,0.0 +25877,37,26,32,0.0 +25877,3,10,2,0.0 +25877,63,43.9,26,0.0 +25877,8,40,6,0.0 +25877,23,9,42,0.0 +25877,48,12.75,20,0.0 +25877,15,15.5,4,0.0 +25877,36,19,41,0.0 +25877,7,30,35,0.0 +25877,75,7.75,39,0.0 +25877,58,13.25,13,0.0 +25877,57,19.5,16,0.0 +25877,66,17,43,0.0 +25877,14,23.25,29,0.0 +25877,45,9.5,32,0.0 +25877,33,2.5,23,0.0 +25877,24,4.5,26,0.0 +25877,60,34,6,0.0 +25877,9,97,22,0.0 +25877,68,12.5,13,0.0 +25877,21,10,46,0.0 +25877,28,45.6,12,0.0 +25877,6,25,39,0.0 +25877,71,21.5,2,0.0 +25877,27,43.9,41,0.0 +25877,40,18.4,27,0.0 +25877,20,81,30,0.0 +25877,61,28.5,32,0.0 +25877,59,55,4,0.0 +25878,65,21.05,23,0.0 +25878,11,21,23,0.0 +25878,40,18.4,42,0.0 +25878,69,36,35,0.0 +25878,50,16.25,8,0.0 +25878,60,34,40,0.0 +25878,7,30,17,0.0 +25878,54,7.45,24,0.0 +25878,52,7,30,0.0 +25878,47,9.5,49,0.0 +25878,14,23.25,19,0.0 +25878,53,32.8,28,0.0 +25878,3,10,31,0.0 +25878,25,14,48,0.0 +25878,75,7.75,39,0.0 +25878,46,12,8,0.0 +25878,32,32,11,0.0 +25878,33,2.5,10,0.0 +25878,18,62.5,50,0.0 +25878,35,18,39,0.0 +25878,74,10,45,0.0 +25878,29,123.79,42,0.0 +25878,76,18,13,0.0 +25878,44,19.45,45,0.0 +25878,15,15.5,44,0.0 +25878,5,21.35,42,0.0 +25878,27,43.9,30,0.0 +25878,8,40,13,0.0 +25878,61,28.5,43,0.0 +25878,56,38,26,0.0 +25878,43,46,38,0.0 +25878,64,33.25,47,0.0 +25878,66,17,6,0.0 +25878,45,9.5,16,0.0 +25878,34,14,25,0.0 +25878,59,55,49,0.0 +25878,23,9,9,0.0 +25878,72,34.8,33,0.0 +25878,73,15,26,0.0 +25878,21,10,41,0.0 +25878,71,21.5,3,0.0 +25878,26,31.23,50,0.0 +25878,39,18,39,0.0 +25878,42,14,32,0.0 +25878,49,20,23,0.0 +25878,4,22,6,0.0 +25878,12,38,42,0.0 +25878,63,43.9,6,0.0 +25878,67,14,19,0.0 +25878,19,9.2,32,0.0 +25878,20,81,39,0.0 +25878,37,26,29,0.0 +25878,2,19,3,0.0 +25879,43,46,41,0.0 +25879,23,9,36,0.0 +25879,4,22,14,0.0 +25879,68,12.5,20,0.0 +25879,2,19,35,0.0 +25879,71,21.5,17,0.0 +25879,65,21.05,33,0.0 +25879,3,10,28,0.0 +25879,52,7,49,0.0 +25879,73,15,41,0.0 +25879,26,31.23,22,0.0 +25879,40,18.4,13,0.0 +25879,28,45.6,19,0.0 +25879,45,9.5,40,0.0 +25879,13,6,28,0.0 +25879,20,81,2,0.0 +25879,67,14,28,0.0 +25879,6,25,16,0.0 +25879,29,123.79,13,0.0 +25879,25,14,25,0.0 +25879,64,33.25,38,0.0 +25879,76,18,37,0.0 +25879,10,31,7,0.0 +25879,24,4.5,44,0.0 +25879,32,32,43,0.0 +25879,55,24,43,0.0 +25879,30,25.89,2,0.0 +25879,14,23.25,20,0.0 +25879,54,7.45,14,0.0 +25879,51,53,8,0.0 +25879,21,10,13,0.0 +25879,22,21,7,0.0 +25879,61,28.5,20,0.0 +25879,57,19.5,23,0.0 +25879,50,16.25,30,0.0 +25879,63,43.9,10,0.0 +25879,33,2.5,41,0.0 +25879,41,9.65,30,0.0 +25879,34,14,49,0.0 +25879,46,12,49,0.0 +25879,47,9.5,12,0.0 +25879,36,19,49,0.0 +25879,39,18,18,0.0 +25879,75,7.75,14,0.0 +25879,72,34.8,48,0.0 +25879,11,21,3,0.0 +25879,1,18,33,0.0 +25879,7,30,32,0.0 +25879,74,10,23,0.0 +25879,27,43.9,33,0.0 +25879,48,12.75,6,0.0 +25879,42,14,11,0.0 +25879,16,17.45,28,0.0 +25879,37,26,45,0.0 +25879,5,21.35,44,0.0 +25879,31,12.5,41,0.0 +25879,18,62.5,43,0.0 +25879,9,97,15,0.0 +25879,12,38,42,0.0 +25879,17,39,33,0.0 +25879,69,36,18,0.0 +25879,77,13,14,0.0 +25879,59,55,46,0.0 +25879,62,49.3,34,0.0 +25879,53,32.8,7,0.0 +25879,58,13.25,39,0.0 +25879,38,263.5,36,0.0 +25880,44,19.45,30,0.0 +25880,42,14,30,0.0 +25880,29,123.79,42,0.0 +25880,62,49.3,11,0.0 +25880,3,10,50,0.0 +25880,27,43.9,40,0.0 +25880,14,23.25,1,0.0 +25880,46,12,41,0.0 +25880,54,7.45,29,0.0 +25880,63,43.9,18,0.0 +25880,34,14,21,0.0 +25880,22,21,16,0.0 +25880,35,18,2,0.0 +25880,32,32,31,0.0 +25880,37,26,15,0.0 +25880,38,263.5,3,0.0 +25880,67,14,8,0.0 +25880,75,7.75,13,0.0 +25880,7,30,24,0.0 +25880,11,21,25,0.0 +25880,58,13.25,46,0.0 +25880,10,31,10,0.0 +25880,20,81,34,0.0 +25880,2,19,34,0.0 +25880,31,12.5,7,0.0 +25880,68,12.5,16,0.0 +25880,12,38,37,0.0 +25880,40,18.4,1,0.0 +25880,50,16.25,34,0.0 +25880,30,25.89,2,0.0 +25880,33,2.5,36,0.0 +25880,56,38,42,0.0 +25880,47,9.5,1,0.0 +25880,51,53,24,0.0 +25880,64,33.25,23,0.0 +25880,66,17,20,0.0 +25880,41,9.65,26,0.0 +25880,55,24,2,0.0 +25880,45,9.5,6,0.0 +25880,48,12.75,9,0.0 +25880,70,15,26,0.0 +25880,76,18,28,0.0 +25880,19,9.2,34,0.0 +25880,59,55,10,0.0 +25880,18,62.5,3,0.0 +25880,74,10,14,0.0 +25880,8,40,9,0.0 +25880,39,18,12,0.0 +25880,13,6,16,0.0 +25880,60,34,4,0.0 +25880,24,4.5,35,0.0 +25880,26,31.23,16,0.0 +25880,57,19.5,41,0.0 +25880,6,25,41,0.0 +25880,4,22,31,0.0 +25880,77,13,23,0.0 +25880,69,36,32,0.0 +25880,9,97,45,0.0 +25880,73,15,32,0.0 +25880,71,21.5,10,0.0 +25880,25,14,14,0.0 +25880,21,10,29,0.0 +25880,36,19,25,0.0 +25880,72,34.8,21,0.0 +25880,1,18,35,0.0 +25880,17,39,25,0.0 +25880,65,21.05,4,0.0 +25880,49,20,44,0.0 +25880,43,46,36,0.0 +25881,68,12.5,26,0.0 +25881,69,36,47,0.0 +25881,63,43.9,19,0.0 +25881,57,19.5,49,0.0 +25881,13,6,26,0.0 +25882,73,15,42,0.0 +25882,9,97,8,0.0 +25882,62,49.3,9,0.0 +25882,32,32,33,0.0 +25882,19,9.2,19,0.0 +25882,35,18,9,0.0 +25882,21,10,23,0.0 +25882,30,25.89,20,0.0 +25882,44,19.45,13,0.0 +25882,2,19,8,0.0 +25882,13,6,7,0.0 +25882,29,123.79,36,0.0 +25882,67,14,9,0.0 +25882,15,15.5,49,0.0 +25882,25,14,3,0.0 +25882,70,15,40,0.0 +25882,59,55,21,0.0 +25882,55,24,42,0.0 +25882,33,2.5,22,0.0 +25882,18,62.5,49,0.0 +25882,22,21,48,0.0 +25882,77,13,4,0.0 +25882,51,53,39,0.0 +25882,61,28.5,38,0.0 +25882,48,12.75,25,0.0 +25882,34,14,41,0.0 +25882,76,18,7,0.0 +25882,50,16.25,30,0.0 +25882,8,40,45,0.0 +25882,58,13.25,23,0.0 +25882,7,30,5,0.0 +25882,69,36,5,0.0 +25882,64,33.25,42,0.0 +25882,52,7,5,0.0 +25882,68,12.5,14,0.0 +25882,63,43.9,30,0.0 +25882,57,19.5,14,0.0 +25882,17,39,17,0.0 +25882,5,21.35,48,0.0 +25882,23,9,27,0.0 +25882,31,12.5,4,0.0 +25882,65,21.05,22,0.0 +25882,38,263.5,6,0.0 +25882,47,9.5,33,0.0 +25882,11,21,26,0.0 +25882,74,10,3,0.0 +25882,42,14,36,0.0 +25882,27,43.9,34,0.0 +25882,66,17,32,0.0 +25882,6,25,33,0.0 +25882,20,81,19,0.0 +25882,28,45.6,43,0.0 +25882,12,38,48,0.0 +25882,72,34.8,22,0.0 +25882,14,23.25,5,0.0 +25882,43,46,2,0.0 +25882,39,18,14,0.0 +25882,36,19,31,0.0 +25882,10,31,32,0.0 +25882,4,22,21,0.0 +25882,24,4.5,39,0.0 +25882,53,32.8,5,0.0 +25882,26,31.23,40,0.0 +25883,2,19,48,0.0 +25883,60,34,10,0.0 +25883,10,31,6,0.0 +25883,49,20,42,0.0 +25883,12,38,41,0.0 +25883,34,14,10,0.0 +25883,55,24,45,0.0 +25883,28,45.6,18,0.0 +25883,27,43.9,37,0.0 +25883,9,97,17,0.0 +25883,5,21.35,21,0.0 +25883,65,21.05,48,0.0 +25883,3,10,47,0.0 +25883,37,26,19,0.0 +25883,20,81,50,0.0 +25883,24,4.5,44,0.0 +25883,39,18,17,0.0 +25883,35,18,17,0.0 +25883,25,14,18,0.0 +25884,58,13.25,15,0.0 +25884,3,10,7,0.0 +25884,50,16.25,8,0.0 +25884,13,6,6,0.0 +25884,67,14,8,0.0 +25884,7,30,41,0.0 +25884,29,123.79,48,0.0 +25884,8,40,7,0.0 +25884,26,31.23,3,0.0 +25884,34,14,39,0.0 +25884,55,24,36,0.0 +25884,22,21,10,0.0 +25884,27,43.9,36,0.0 +25884,44,19.45,19,0.0 +25884,45,9.5,48,0.0 +25884,63,43.9,26,0.0 +25884,70,15,10,0.0 +25884,32,32,3,0.0 +25884,60,34,42,0.0 +25884,19,9.2,24,0.0 +25884,36,19,31,0.0 +25884,51,53,15,0.0 +25884,20,81,6,0.0 +25884,9,97,17,0.0 +25884,64,33.25,17,0.0 +25884,47,9.5,16,0.0 +25885,48,12.75,8,0.0 +25885,63,43.9,13,0.0 +25885,19,9.2,28,0.0 +25885,12,38,39,0.0 +25885,10,31,30,0.0 +25885,38,263.5,42,0.0 +25885,29,123.79,30,0.0 +25885,52,7,49,0.0 +25885,33,2.5,27,0.0 +25885,30,25.89,2,0.0 +25885,61,28.5,10,0.0 +25885,57,19.5,37,0.0 +25885,65,21.05,5,0.0 +25885,60,34,14,0.0 +25885,39,18,14,0.0 +25885,5,21.35,7,0.0 +25885,58,13.25,30,0.0 +25885,70,15,44,0.0 +25885,51,53,50,0.0 +25885,35,18,18,0.0 +25885,56,38,10,0.0 +25885,41,9.65,29,0.0 +25885,32,32,5,0.0 +25885,44,19.45,35,0.0 +25885,59,55,5,0.0 +25885,2,19,47,0.0 +25885,37,26,30,0.0 +25885,8,40,35,0.0 +25885,76,18,6,0.0 +25885,21,10,49,0.0 +25885,50,16.25,13,0.0 +25885,28,45.6,1,0.0 +25885,66,17,25,0.0 +25885,46,12,47,0.0 +25885,7,30,44,0.0 +25885,77,13,6,0.0 +25885,49,20,44,0.0 +25885,53,32.8,33,0.0 +25885,13,6,16,0.0 +25885,54,7.45,42,0.0 +25885,40,18.4,24,0.0 +25885,9,97,48,0.0 +25885,72,34.8,49,0.0 +25885,23,9,23,0.0 +25885,1,18,40,0.0 +25885,24,4.5,37,0.0 +25885,69,36,48,0.0 +25885,4,22,26,0.0 +25885,42,14,11,0.0 +25885,71,21.5,11,0.0 +25885,18,62.5,45,0.0 +25885,20,81,40,0.0 +25885,43,46,23,0.0 +25885,6,25,26,0.0 +25885,22,21,21,0.0 +25885,55,24,17,0.0 +25885,27,43.9,15,0.0 +25886,33,2.5,21,0.0 +25886,3,10,25,0.0 +25886,38,263.5,40,0.0 +25886,70,15,17,0.0 +25886,67,14,14,0.0 +25886,52,7,10,0.0 +25886,50,16.25,2,0.0 +25886,23,9,25,0.0 +25886,25,14,33,0.0 +25886,65,21.05,5,0.0 +25886,6,25,47,0.0 +25886,34,14,28,0.0 +25886,15,15.5,17,0.0 +25886,69,36,50,0.0 +25886,8,40,13,0.0 +25886,32,32,16,0.0 +25887,58,13.25,42,0.0 +25887,64,33.25,30,0.0 +25887,38,263.5,12,0.0 +25887,19,9.2,27,0.0 +25887,36,19,25,0.0 +25887,32,32,31,0.0 +25887,67,14,43,0.0 +25887,68,12.5,13,0.0 +25887,59,55,26,0.0 +25887,47,9.5,37,0.0 +25887,29,123.79,33,0.0 +25887,46,12,22,0.0 +25887,66,17,15,0.0 +25887,13,6,45,0.0 +25887,70,15,5,0.0 +25887,18,62.5,44,0.0 +25887,62,49.3,39,0.0 +25887,41,9.65,43,0.0 +25887,44,19.45,15,0.0 +25887,54,7.45,34,0.0 +25887,49,20,13,0.0 +25887,34,14,7,0.0 +25887,15,15.5,29,0.0 +25887,10,31,4,0.0 +25887,77,13,30,0.0 +25887,3,10,25,0.0 +25887,53,32.8,18,0.0 +25887,57,19.5,45,0.0 +25887,24,4.5,22,0.0 +25887,5,21.35,36,0.0 +25887,14,23.25,14,0.0 +25887,23,9,22,0.0 +25887,7,30,48,0.0 +25887,26,31.23,32,0.0 +25887,69,36,19,0.0 +25887,61,28.5,48,0.0 +25887,74,10,25,0.0 +25887,28,45.6,1,0.0 +25887,48,12.75,14,0.0 +25887,21,10,25,0.0 +25887,51,53,42,0.0 +25887,65,21.05,30,0.0 +25887,45,9.5,40,0.0 +25887,12,38,31,0.0 +25887,56,38,12,0.0 +25887,4,22,43,0.0 +25887,22,21,50,0.0 +25887,30,25.89,44,0.0 +25887,6,25,38,0.0 +25887,63,43.9,7,0.0 +25887,8,40,45,0.0 +25887,9,97,16,0.0 +25887,20,81,48,0.0 +25887,42,14,41,0.0 +25887,1,18,49,0.0 +25887,50,16.25,2,0.0 +25887,60,34,32,0.0 +25888,32,32,40,0.0 +25888,70,15,22,0.0 +25888,67,14,47,0.0 +25888,69,36,21,0.0 +25888,27,43.9,1,0.0 +25888,73,15,48,0.0 +25888,58,13.25,27,0.0 +25888,35,18,46,0.0 +25888,21,10,13,0.0 +25888,38,263.5,33,0.0 +25888,40,18.4,30,0.0 +25888,6,25,14,0.0 +25888,37,26,50,0.0 +25888,61,28.5,43,0.0 +25888,74,10,49,0.0 +25888,9,97,20,0.0 +25888,23,9,21,0.0 +25888,59,55,49,0.0 +25888,28,45.6,8,0.0 +25888,75,7.75,22,0.0 +25888,52,7,34,0.0 +25888,71,21.5,3,0.0 +25888,2,19,46,0.0 +25888,22,21,26,0.0 +25888,53,32.8,49,0.0 +25888,46,12,31,0.0 +25888,76,18,17,0.0 +25888,56,38,21,0.0 +25888,18,62.5,30,0.0 +25888,30,25.89,1,0.0 +25888,8,40,36,0.0 +25888,51,53,48,0.0 +25888,48,12.75,32,0.0 +25888,72,34.8,41,0.0 +25888,31,12.5,1,0.0 +25888,50,16.25,33,0.0 +25888,1,18,44,0.0 +25888,77,13,40,0.0 +25888,24,4.5,36,0.0 +25888,65,21.05,23,0.0 +25888,13,6,38,0.0 +25888,16,17.45,17,0.0 +25888,33,2.5,34,0.0 +25888,15,15.5,15,0.0 +25888,36,19,22,0.0 +25888,45,9.5,49,0.0 +25888,12,38,13,0.0 +25888,20,81,11,0.0 +25888,11,21,19,0.0 +25888,55,24,19,0.0 +25888,10,31,29,0.0 +25888,5,21.35,6,0.0 +25888,39,18,48,0.0 +25888,47,9.5,19,0.0 +25888,4,22,21,0.0 +25888,64,33.25,7,0.0 +25888,43,46,2,0.0 +25888,29,123.79,25,0.0 +25889,66,17,28,0.0 +25889,7,30,50,0.0 +25889,67,14,20,0.0 +25889,38,263.5,20,0.0 +25889,1,18,2,0.0 +25889,15,15.5,49,0.0 +25889,17,39,42,0.0 +25889,51,53,8,0.0 +25889,77,13,29,0.0 +25889,27,43.9,29,0.0 +25889,60,34,43,0.0 +25889,53,32.8,6,0.0 +25889,57,19.5,23,0.0 +25889,4,22,32,0.0 +25889,12,38,39,0.0 +25889,5,21.35,25,0.0 +25889,25,14,22,0.0 +25889,64,33.25,44,0.0 +25889,46,12,9,0.0 +25889,20,81,8,0.0 +25889,13,6,43,0.0 +25889,61,28.5,23,0.0 +25889,63,43.9,11,0.0 +25889,72,34.8,31,0.0 +25889,50,16.25,35,0.0 +25889,19,9.2,46,0.0 +25889,62,49.3,48,0.0 +25889,24,4.5,4,0.0 +25889,29,123.79,16,0.0 +25889,31,12.5,34,0.0 +25889,14,23.25,43,0.0 +25889,52,7,31,0.0 +25889,70,15,47,0.0 +25889,44,19.45,5,0.0 +25889,43,46,18,0.0 +25889,35,18,10,0.0 +25889,6,25,42,0.0 +25889,74,10,22,0.0 +25889,11,21,19,0.0 +25889,34,14,10,0.0 +25889,68,12.5,39,0.0 +25889,37,26,23,0.0 +25889,73,15,14,0.0 +25889,9,97,4,0.0 +25889,32,32,15,0.0 +25889,59,55,49,0.0 +25889,21,10,8,0.0 +25889,23,9,17,0.0 +25889,16,17.45,30,0.0 +25889,8,40,20,0.0 +25889,28,45.6,48,0.0 +25889,69,36,42,0.0 +25889,55,24,29,0.0 +25889,47,9.5,18,0.0 +25889,58,13.25,11,0.0 +25889,36,19,44,0.0 +25889,39,18,14,0.0 +25889,54,7.45,16,0.0 +25889,42,14,41,0.0 +25889,30,25.89,12,0.0 +25889,18,62.5,32,0.0 +25889,76,18,50,0.0 +25889,41,9.65,32,0.0 +25890,5,21.35,35,0.0 +25890,56,38,1,0.0 +25890,67,14,5,0.0 +25890,11,21,38,0.0 +25890,69,36,48,0.0 +25890,66,17,42,0.0 +25890,64,33.25,34,0.0 +25890,76,18,15,0.0 +25890,9,97,40,0.0 +25890,46,12,37,0.0 +25890,73,15,9,0.0 +25890,18,62.5,48,0.0 +25890,20,81,43,0.0 +25890,31,12.5,46,0.0 +25890,36,19,22,0.0 +25890,27,43.9,24,0.0 +25890,33,2.5,35,0.0 +25890,74,10,7,0.0 +25890,47,9.5,22,0.0 +25890,41,9.65,34,0.0 +25890,37,26,24,0.0 +25890,70,15,23,0.0 +25890,26,31.23,50,0.0 +25890,43,46,38,0.0 +25890,25,14,22,0.0 +25890,12,38,33,0.0 +25890,72,34.8,48,0.0 +25890,19,9.2,18,0.0 +25890,7,30,38,0.0 +25890,68,12.5,38,0.0 +25890,3,10,48,0.0 +25890,59,55,46,0.0 +25890,2,19,25,0.0 +25890,10,31,28,0.0 +25890,22,21,28,0.0 +25890,1,18,34,0.0 +25890,38,263.5,33,0.0 +25890,55,24,45,0.0 +25890,71,21.5,37,0.0 +25891,49,20,1,0.0 +25891,40,18.4,22,0.0 +25891,76,18,30,0.0 +25891,57,19.5,45,0.0 +25891,72,34.8,5,0.0 +25891,19,9.2,46,0.0 +25891,28,45.6,21,0.0 +25891,45,9.5,24,0.0 +25891,17,39,17,0.0 +25891,77,13,46,0.0 +25891,38,263.5,43,0.0 +25891,65,21.05,41,0.0 +25891,36,19,35,0.0 +25891,58,13.25,37,0.0 +25891,22,21,24,0.0 +25891,13,6,6,0.0 +25891,29,123.79,17,0.0 +25892,16,17.45,15,0.0 +25892,54,7.45,18,0.0 +25892,63,43.9,26,0.0 +25892,11,21,18,0.0 +25892,6,25,37,0.0 +25892,15,15.5,41,0.0 +25892,22,21,15,0.0 +25892,65,21.05,12,0.0 +25893,61,28.5,16,0.0 +25893,26,31.23,10,0.0 +25893,59,55,11,0.0 +25893,65,21.05,35,0.0 +25893,56,38,29,0.0 +25893,8,40,8,0.0 +25893,55,24,38,0.0 +25893,62,49.3,40,0.0 +25893,19,9.2,18,0.0 +25893,2,19,32,0.0 +25893,66,17,33,0.0 +25893,7,30,16,0.0 +25893,60,34,18,0.0 +25893,6,25,40,0.0 +25893,57,19.5,48,0.0 +25893,30,25.89,37,0.0 +25893,53,32.8,46,0.0 +25893,9,97,22,0.0 +25893,1,18,48,0.0 +25893,16,17.45,1,0.0 +25893,39,18,32,0.0 +25893,12,38,28,0.0 +25893,27,43.9,13,0.0 +25893,45,9.5,16,0.0 +25893,25,14,18,0.0 +25893,35,18,40,0.0 +25893,75,7.75,34,0.0 +25893,15,15.5,44,0.0 +25893,33,2.5,47,0.0 +25893,41,9.65,39,0.0 +25894,65,21.05,12,0.0 +25894,3,10,12,0.0 +25894,74,10,4,0.0 +25894,73,15,20,0.0 +25894,27,43.9,33,0.0 +25894,43,46,15,0.0 +25894,42,14,19,0.0 +25894,17,39,42,0.0 +25894,18,62.5,2,0.0 +25894,60,34,23,0.0 +25894,29,123.79,6,0.0 +25894,56,38,43,0.0 +25894,52,7,41,0.0 +25894,10,31,18,0.0 +25894,37,26,30,0.0 +25894,35,18,24,0.0 +25894,63,43.9,25,0.0 +25894,44,19.45,41,0.0 +25894,8,40,48,0.0 +25894,6,25,13,0.0 +25894,49,20,40,0.0 +25894,68,12.5,50,0.0 +25894,72,34.8,43,0.0 +25894,13,6,15,0.0 +25894,14,23.25,18,0.0 +25894,62,49.3,9,0.0 +25894,2,19,4,0.0 +25894,50,16.25,42,0.0 +25894,75,7.75,12,0.0 +25894,32,32,46,0.0 +25894,76,18,41,0.0 +25894,11,21,22,0.0 +25894,38,263.5,32,0.0 +25894,70,15,37,0.0 +25894,53,32.8,8,0.0 +25894,58,13.25,1,0.0 +25894,15,15.5,50,0.0 +25894,26,31.23,34,0.0 +25894,48,12.75,48,0.0 +25894,5,21.35,14,0.0 +25894,28,45.6,13,0.0 +25894,39,18,36,0.0 +25894,40,18.4,40,0.0 +25894,25,14,33,0.0 +25894,55,24,24,0.0 +25894,64,33.25,33,0.0 +25894,71,21.5,5,0.0 +25894,33,2.5,21,0.0 +25894,16,17.45,34,0.0 +25894,1,18,20,0.0 +25894,51,53,19,0.0 +25894,20,81,15,0.0 +25894,46,12,14,0.0 +25894,24,4.5,34,0.0 +25894,47,9.5,10,0.0 +25894,66,17,9,0.0 +25894,67,14,30,0.0 +25894,36,19,50,0.0 +25894,31,12.5,7,0.0 +25894,21,10,18,0.0 +25894,41,9.65,49,0.0 +25894,23,9,48,0.0 +25894,57,19.5,46,0.0 +25894,34,14,13,0.0 +25894,4,22,18,0.0 +25894,69,36,11,0.0 +25894,19,9.2,9,0.0 +25894,12,38,43,0.0 +25894,61,28.5,32,0.0 +25894,30,25.89,12,0.0 +25894,59,55,1,0.0 +25894,45,9.5,50,0.0 +25894,54,7.45,4,0.0 +25895,52,7,27,0.0 +25895,69,36,36,0.0 +25895,66,17,22,0.0 +25895,55,24,1,0.0 +25895,76,18,6,0.0 +25895,70,15,49,0.0 +25895,4,22,22,0.0 +25895,54,7.45,18,0.0 +25895,77,13,49,0.0 +25895,9,97,27,0.0 +25895,16,17.45,37,0.0 +25895,63,43.9,50,0.0 +25895,3,10,21,0.0 +25895,67,14,5,0.0 +25895,23,9,38,0.0 +25895,43,46,48,0.0 +25895,35,18,27,0.0 +25895,48,12.75,40,0.0 +25895,58,13.25,29,0.0 +25895,8,40,48,0.0 +25895,37,26,28,0.0 +25895,20,81,30,0.0 +25895,57,19.5,13,0.0 +25895,24,4.5,21,0.0 +25895,71,21.5,17,0.0 +25895,7,30,19,0.0 +25895,50,16.25,41,0.0 +25895,39,18,1,0.0 +25895,33,2.5,17,0.0 +25895,30,25.89,38,0.0 +25895,60,34,7,0.0 +25895,45,9.5,3,0.0 +25895,68,12.5,48,0.0 +25895,38,263.5,32,0.0 +25895,65,21.05,30,0.0 +25895,14,23.25,21,0.0 +25895,75,7.75,18,0.0 +25895,49,20,39,0.0 +25895,42,14,7,0.0 +25895,27,43.9,35,0.0 +25895,17,39,3,0.0 +25895,51,53,16,0.0 +25895,47,9.5,28,0.0 +25895,10,31,14,0.0 +25895,29,123.79,23,0.0 +25895,74,10,17,0.0 +25895,31,12.5,18,0.0 +25895,59,55,47,0.0 +25895,1,18,13,0.0 +25895,32,32,8,0.0 +25895,15,15.5,47,0.0 +25895,26,31.23,7,0.0 +25895,21,10,3,0.0 +25895,12,38,21,0.0 +25895,22,21,10,0.0 +25895,41,9.65,4,0.0 +25895,19,9.2,43,0.0 +25895,72,34.8,37,0.0 +25895,11,21,43,0.0 +25895,28,45.6,33,0.0 +25895,40,18.4,22,0.0 +25895,13,6,36,0.0 +25895,46,12,26,0.0 +25895,25,14,24,0.0 +25895,64,33.25,30,0.0 +25895,6,25,11,0.0 +25895,56,38,44,0.0 +25895,73,15,7,0.0 +25895,36,19,45,0.0 +25896,46,12,2,0.0 +25896,37,26,46,0.0 +25896,16,17.45,41,0.0 +25896,48,12.75,50,0.0 +25896,56,38,26,0.0 +25896,60,34,2,0.0 +25896,7,30,17,0.0 +25896,29,123.79,8,0.0 +25896,58,13.25,9,0.0 +25896,47,9.5,7,0.0 +25896,35,18,27,0.0 +25896,36,19,32,0.0 +25896,62,49.3,43,0.0 +25896,70,15,45,0.0 +25896,72,34.8,9,0.0 +25896,10,31,31,0.0 +25896,15,15.5,30,0.0 +25896,28,45.6,27,0.0 +25896,76,18,42,0.0 +25896,30,25.89,38,0.0 +25896,53,32.8,28,0.0 +25896,4,22,50,0.0 +25896,64,33.25,47,0.0 +25896,59,55,30,0.0 +25896,27,43.9,37,0.0 +25896,51,53,36,0.0 +25896,21,10,21,0.0 +25896,24,4.5,36,0.0 +25896,39,18,23,0.0 +25896,33,2.5,26,0.0 +25896,45,9.5,39,0.0 +25896,38,263.5,36,0.0 +25896,5,21.35,15,0.0 +25896,25,14,31,0.0 +25896,68,12.5,19,0.0 +25896,2,19,49,0.0 +25896,42,14,48,0.0 +25896,74,10,4,0.0 +25897,12,38,38,0.0 +25897,44,19.45,9,0.0 +25897,56,38,7,0.0 +25897,10,31,24,0.0 +25897,37,26,33,0.0 +25897,24,4.5,11,0.0 +25897,29,123.79,1,0.0 +25897,19,9.2,5,0.0 +25897,20,81,2,0.0 +25897,8,40,4,0.0 +25897,43,46,15,0.0 +25898,30,25.89,29,0.0 +25898,54,7.45,41,0.0 +25898,27,43.9,13,0.0 +25898,41,9.65,39,0.0 +25898,57,19.5,31,0.0 +25898,21,10,5,0.0 +25898,49,20,3,0.0 +25898,65,21.05,34,0.0 +25898,63,43.9,38,0.0 +25898,4,22,10,0.0 +25898,25,14,13,0.0 +25898,51,53,2,0.0 +25898,38,263.5,16,0.0 +25898,59,55,9,0.0 +25898,9,97,45,0.0 +25898,61,28.5,5,0.0 +25898,33,2.5,19,0.0 +25898,77,13,33,0.0 +25898,40,18.4,48,0.0 +25898,46,12,30,0.0 +25898,48,12.75,43,0.0 +25898,2,19,50,0.0 +25898,43,46,14,0.0 +25898,34,14,13,0.0 +25898,20,81,40,0.0 +25898,8,40,44,0.0 +25898,42,14,40,0.0 +25898,19,9.2,34,0.0 +25898,11,21,7,0.0 +25898,12,38,39,0.0 +25898,60,34,35,0.0 +25898,26,31.23,24,0.0 +25898,52,7,25,0.0 +25898,28,45.6,31,0.0 +25898,7,30,40,0.0 +25898,37,26,48,0.0 +25898,44,19.45,37,0.0 +25899,32,32,40,0.0 +25899,18,62.5,28,0.0 +25899,47,9.5,25,0.0 +25899,2,19,26,0.0 +25899,20,81,45,0.0 +25899,30,25.89,46,0.0 +25899,12,38,18,0.0 +25899,22,21,33,0.0 +25899,3,10,4,0.0 +25899,54,7.45,38,0.0 +25899,21,10,34,0.0 +25899,24,4.5,22,0.0 +25899,61,28.5,29,0.0 +25899,4,22,38,0.0 +25899,69,36,46,0.0 +25899,34,14,41,0.0 +25899,71,21.5,10,0.0 +25899,73,15,46,0.0 +25899,41,9.65,13,0.0 +25899,75,7.75,15,0.0 +25899,26,31.23,38,0.0 +25899,49,20,7,0.0 +25899,57,19.5,21,0.0 +25899,68,12.5,37,0.0 +25899,35,18,13,0.0 +25899,5,21.35,36,0.0 +25899,62,49.3,35,0.0 +25899,42,14,21,0.0 +25899,50,16.25,28,0.0 +25899,19,9.2,22,0.0 +25899,9,97,38,0.0 +25899,40,18.4,8,0.0 +25899,37,26,46,0.0 +25899,60,34,15,0.0 +25899,51,53,20,0.0 +25899,7,30,44,0.0 +25899,66,17,22,0.0 +25899,36,19,40,0.0 +25899,77,13,10,0.0 +25899,17,39,43,0.0 +25899,1,18,9,0.0 +25899,27,43.9,46,0.0 +25899,64,33.25,16,0.0 +25899,29,123.79,3,0.0 +25899,33,2.5,14,0.0 +25899,46,12,8,0.0 +25899,72,34.8,47,0.0 +25899,44,19.45,41,0.0 +25899,10,31,45,0.0 +25899,11,21,33,0.0 +25899,25,14,36,0.0 +25899,31,12.5,37,0.0 +25899,56,38,20,0.0 +25899,52,7,35,0.0 +25899,70,15,9,0.0 +25899,63,43.9,47,0.0 +25899,14,23.25,33,0.0 +25899,59,55,39,0.0 +25899,43,46,37,0.0 +25899,38,263.5,10,0.0 +25899,67,14,30,0.0 +25899,55,24,43,0.0 +25899,28,45.6,11,0.0 +25899,8,40,8,0.0 +25899,76,18,5,0.0 +25899,23,9,26,0.0 +25899,48,12.75,43,0.0 +25899,45,9.5,19,0.0 +25899,53,32.8,1,0.0 +25899,15,15.5,41,0.0 +25899,16,17.45,25,0.0 +25900,12,38,18,0.0 +25900,7,30,5,0.0 +25900,4,22,30,0.0 +25900,77,13,4,0.0 +25900,6,25,5,0.0 +25900,37,26,48,0.0 +25900,5,21.35,42,0.0 +25900,16,17.45,16,0.0 +25900,19,9.2,1,0.0 +25900,57,19.5,22,0.0 +25900,60,34,13,0.0 +25900,61,28.5,7,0.0 +25900,59,55,44,0.0 +25900,34,14,36,0.0 +25900,72,34.8,18,0.0 +25900,51,53,33,0.0 +25900,55,24,13,0.0 +25900,40,18.4,6,0.0 +25900,41,9.65,38,0.0 +25900,65,21.05,47,0.0 +25900,10,31,48,0.0 +25900,49,20,11,0.0 +25900,44,19.45,6,0.0 +25900,2,19,34,0.0 +25900,47,9.5,19,0.0 +25901,59,55,23,0.0 +25901,19,9.2,6,0.0 +25901,5,21.35,49,0.0 +25901,4,22,11,0.0 +25901,12,38,14,0.0 +25901,22,21,7,0.0 +25901,55,24,20,0.0 +25901,10,31,31,0.0 +25901,6,25,46,0.0 +25901,28,45.6,4,0.0 +25901,33,2.5,39,0.0 +25901,75,7.75,27,0.0 +25901,72,34.8,17,0.0 +25901,2,19,50,0.0 +25901,65,21.05,3,0.0 +25901,52,7,28,0.0 +25901,53,32.8,28,0.0 +25901,47,9.5,25,0.0 +25901,63,43.9,10,0.0 +25901,17,39,23,0.0 +25901,70,15,27,0.0 +25901,18,62.5,1,0.0 +25901,27,43.9,26,0.0 +25901,54,7.45,47,0.0 +25901,42,14,9,0.0 +25901,58,13.25,19,0.0 +25901,62,49.3,35,0.0 +25901,40,18.4,16,0.0 +25901,26,31.23,7,0.0 +25901,73,15,18,0.0 +25901,36,19,7,0.0 +25901,9,97,26,0.0 +25901,46,12,43,0.0 +25901,76,18,1,0.0 +25901,30,25.89,46,0.0 +25901,1,18,24,0.0 +25901,15,15.5,44,0.0 +25901,49,20,41,0.0 +25901,25,14,11,0.0 +25901,16,17.45,1,0.0 +25902,12,38,7,0.0 +25902,21,10,5,0.0 +25902,22,21,23,0.0 +25902,32,32,3,0.0 +25902,15,15.5,18,0.0 +25902,29,123.79,37,0.0 +25902,63,43.9,26,0.0 +25902,57,19.5,2,0.0 +25902,53,32.8,38,0.0 +25902,30,25.89,44,0.0 +25902,1,18,16,0.0 +25902,27,43.9,3,0.0 +25902,58,13.25,19,0.0 +25902,5,21.35,20,0.0 +25902,35,18,34,0.0 +25902,67,14,21,0.0 +25902,17,39,24,0.0 +25902,28,45.6,35,0.0 +25902,73,15,12,0.0 +25902,42,14,34,0.0 +25902,48,12.75,17,0.0 +25902,9,97,16,0.0 +25902,20,81,42,0.0 +25902,77,13,47,0.0 +25902,24,4.5,49,0.0 +25902,61,28.5,5,0.0 +25902,25,14,6,0.0 +25902,69,36,36,0.0 +25902,36,19,17,0.0 +25902,66,17,33,0.0 +25902,49,20,39,0.0 +25902,76,18,44,0.0 +25902,50,16.25,33,0.0 +25903,62,49.3,29,0.0 +25903,41,9.65,32,0.0 +25903,51,53,7,0.0 +25903,29,123.79,41,0.0 +25903,61,28.5,2,0.0 +25903,10,31,30,0.0 +25903,55,24,38,0.0 +25903,17,39,39,0.0 +25903,2,19,25,0.0 +25903,6,25,49,0.0 +25903,48,12.75,30,0.0 +25903,5,21.35,5,0.0 +25903,63,43.9,19,0.0 +25903,4,22,35,0.0 +25903,32,32,16,0.0 +25903,65,21.05,2,0.0 +25903,40,18.4,11,0.0 +25903,58,13.25,5,0.0 +25903,46,12,28,0.0 +25903,13,6,18,0.0 +25903,42,14,20,0.0 +25903,8,40,17,0.0 +25903,19,9.2,29,0.0 +25903,53,32.8,4,0.0 +25903,70,15,23,0.0 +25903,33,2.5,18,0.0 +25903,52,7,44,0.0 +25903,23,9,12,0.0 +25903,24,4.5,47,0.0 +25903,14,23.25,22,0.0 +25903,60,34,31,0.0 +25903,11,21,29,0.0 +25903,16,17.45,14,0.0 +25903,36,19,49,0.0 +25903,57,19.5,1,0.0 +25903,72,34.8,28,0.0 +25903,39,18,26,0.0 +25903,75,7.75,36,0.0 +25903,69,36,30,0.0 +25903,49,20,48,0.0 +25904,61,28.5,19,0.0 +25904,69,36,6,0.0 +25904,34,14,35,0.0 +25904,9,97,38,0.0 +25904,76,18,44,0.0 +25904,15,15.5,31,0.0 +25904,25,14,31,0.0 +25904,62,49.3,25,0.0 +25904,57,19.5,10,0.0 +25904,30,25.89,44,0.0 +25904,13,6,10,0.0 +25904,11,21,45,0.0 +25904,53,32.8,45,0.0 +25904,3,10,2,0.0 +25904,66,17,12,0.0 +25904,64,33.25,12,0.0 +25904,17,39,27,0.0 +25904,47,9.5,20,0.0 +25904,4,22,35,0.0 +25904,56,38,30,0.0 +25904,32,32,10,0.0 +25904,27,43.9,27,0.0 +25904,10,31,16,0.0 +25904,23,9,22,0.0 +25904,54,7.45,45,0.0 +25904,46,12,4,0.0 +25904,36,19,28,0.0 +25904,75,7.75,22,0.0 +25904,19,9.2,34,0.0 +25904,16,17.45,20,0.0 +25904,51,53,35,0.0 +25904,74,10,45,0.0 +25904,26,31.23,24,0.0 +25904,6,25,34,0.0 +25905,42,14,11,0.0 +25905,26,31.23,18,0.0 +25905,73,15,33,0.0 +25905,51,53,29,0.0 +25905,39,18,24,0.0 +25905,64,33.25,15,0.0 +25905,9,97,20,0.0 +25905,43,46,25,0.0 +25905,68,12.5,9,0.0 +25905,6,25,37,0.0 +25905,29,123.79,47,0.0 +25905,14,23.25,6,0.0 +25905,52,7,25,0.0 +25905,17,39,37,0.0 +25905,25,14,16,0.0 +25905,24,4.5,3,0.0 +25906,50,16.25,32,0.0 +25906,10,31,13,0.0 +25906,22,21,7,0.0 +25906,26,31.23,22,0.0 +25906,15,15.5,41,0.0 +25906,27,43.9,31,0.0 +25906,45,9.5,25,0.0 +25906,44,19.45,19,0.0 +25906,75,7.75,37,0.0 +25906,28,45.6,39,0.0 +25907,34,14,34,0.0 +25907,71,21.5,17,0.0 +25907,70,15,6,0.0 +25907,65,21.05,40,0.0 +25907,43,46,6,0.0 +25907,54,7.45,33,0.0 +25907,11,21,47,0.0 +25907,61,28.5,32,0.0 +25907,49,20,35,0.0 +25907,31,12.5,44,0.0 +25907,32,32,7,0.0 +25907,2,19,28,0.0 +25907,22,21,40,0.0 +25907,50,16.25,18,0.0 +25907,67,14,22,0.0 +25907,4,22,30,0.0 +25907,13,6,49,0.0 +25907,15,15.5,9,0.0 +25907,51,53,15,0.0 +25907,20,81,39,0.0 +25907,12,38,24,0.0 +25907,45,9.5,10,0.0 +25907,53,32.8,24,0.0 +25907,62,49.3,42,0.0 +25907,6,25,34,0.0 +25907,44,19.45,1,0.0 +25907,75,7.75,16,0.0 +25907,25,14,44,0.0 +25907,28,45.6,39,0.0 +25907,36,19,34,0.0 +25907,35,18,1,0.0 +25907,63,43.9,34,0.0 +25907,38,263.5,5,0.0 +25907,72,34.8,11,0.0 +25907,73,15,21,0.0 +25907,8,40,5,0.0 +25907,55,24,2,0.0 +25907,3,10,23,0.0 +25907,68,12.5,34,0.0 +25907,74,10,3,0.0 +25907,59,55,33,0.0 +25907,39,18,27,0.0 +25907,18,62.5,6,0.0 +25907,77,13,15,0.0 +25907,76,18,10,0.0 +25907,42,14,38,0.0 +25907,41,9.65,17,0.0 +25907,58,13.25,30,0.0 +25907,52,7,35,0.0 +25907,19,9.2,11,0.0 +25907,64,33.25,5,0.0 +25907,40,18.4,11,0.0 +25907,48,12.75,14,0.0 +25907,47,9.5,21,0.0 +25907,46,12,36,0.0 +25907,1,18,47,0.0 +25907,21,10,13,0.0 +25907,5,21.35,17,0.0 +25907,9,97,29,0.0 +25907,10,31,36,0.0 +25907,37,26,29,0.0 +25907,66,17,22,0.0 +25907,57,19.5,39,0.0 +25907,26,31.23,16,0.0 +25907,17,39,6,0.0 +25907,23,9,11,0.0 +25908,28,45.6,14,0.0 +25908,23,9,46,0.0 +25908,49,20,42,0.0 +25908,71,21.5,12,0.0 +25908,53,32.8,8,0.0 +25908,44,19.45,40,0.0 +25908,14,23.25,24,0.0 +25908,9,97,40,0.0 +25908,38,263.5,46,0.0 +25908,11,21,26,0.0 +25908,59,55,21,0.0 +25908,67,14,40,0.0 +25908,20,81,25,0.0 +25908,50,16.25,9,0.0 +25908,57,19.5,37,0.0 +25908,51,53,27,0.0 +25908,55,24,43,0.0 +25908,18,62.5,12,0.0 +25908,27,43.9,46,0.0 +25908,73,15,18,0.0 +25908,52,7,26,0.0 +25908,34,14,19,0.0 +25908,25,14,40,0.0 +25908,1,18,5,0.0 +25908,66,17,48,0.0 +25908,40,18.4,4,0.0 +25908,41,9.65,15,0.0 +25908,54,7.45,16,0.0 +25908,35,18,7,0.0 +25908,2,19,14,0.0 +25908,24,4.5,8,0.0 +25908,5,21.35,15,0.0 +25908,58,13.25,26,0.0 +25908,39,18,1,0.0 +25908,8,40,16,0.0 +25908,17,39,3,0.0 +25908,62,49.3,1,0.0 +25908,56,38,23,0.0 +25908,21,10,28,0.0 +25908,37,26,49,0.0 +25908,19,9.2,12,0.0 +25908,47,9.5,25,0.0 +25908,76,18,28,0.0 +25908,72,34.8,50,0.0 +25908,10,31,17,0.0 +25908,36,19,44,0.0 +25908,75,7.75,50,0.0 +25908,65,21.05,16,0.0 +25908,61,28.5,20,0.0 +25908,16,17.45,38,0.0 +25908,74,10,17,0.0 +25908,7,30,19,0.0 +25908,63,43.9,48,0.0 +25908,69,36,17,0.0 +25908,48,12.75,12,0.0 +25908,12,38,22,0.0 +25908,68,12.5,36,0.0 +25908,60,34,32,0.0 +25908,30,25.89,20,0.0 +25908,4,22,7,0.0 +25909,46,12,33,0.0 +25909,60,34,44,0.0 +25909,75,7.75,25,0.0 +25909,30,25.89,33,0.0 +25909,68,12.5,50,0.0 +25910,75,7.75,23,0.0 +25910,31,12.5,43,0.0 +25910,36,19,9,0.0 +25910,69,36,23,0.0 +25910,23,9,24,0.0 +25910,10,31,5,0.0 +25910,46,12,23,0.0 +25910,37,26,41,0.0 +25910,35,18,20,0.0 +25910,6,25,41,0.0 +25910,42,14,7,0.0 +25910,73,15,47,0.0 +25910,12,38,48,0.0 +25910,24,4.5,41,0.0 +25910,62,49.3,5,0.0 +25910,59,55,45,0.0 +25910,20,81,8,0.0 +25910,53,32.8,41,0.0 +25910,11,21,2,0.0 +25910,8,40,14,0.0 +25910,16,17.45,7,0.0 +25910,5,21.35,39,0.0 +25910,74,10,31,0.0 +25910,15,15.5,37,0.0 +25910,21,10,6,0.0 +25910,58,13.25,34,0.0 +25910,51,53,19,0.0 +25910,71,21.5,11,0.0 +25910,18,62.5,4,0.0 +25910,3,10,46,0.0 +25910,47,9.5,6,0.0 +25910,39,18,24,0.0 +25910,77,13,11,0.0 +25910,38,263.5,34,0.0 +25910,30,25.89,22,0.0 +25910,63,43.9,6,0.0 +25910,9,97,45,0.0 +25910,13,6,40,0.0 +25910,1,18,19,0.0 +25910,64,33.25,13,0.0 +25910,68,12.5,37,0.0 +25910,72,34.8,4,0.0 +25910,61,28.5,19,0.0 +25910,41,9.65,46,0.0 +25910,2,19,23,0.0 +25911,25,14,27,0.0 +25911,40,18.4,15,0.0 +25911,74,10,27,0.0 +25911,15,15.5,46,0.0 +25911,17,39,25,0.0 +25911,60,34,20,0.0 +25911,57,19.5,20,0.0 +25911,65,21.05,12,0.0 +25911,46,12,2,0.0 +25911,56,38,5,0.0 +25911,73,15,15,0.0 +25911,35,18,39,0.0 +25911,1,18,22,0.0 +25911,59,55,47,0.0 +25911,61,28.5,35,0.0 +25911,70,15,35,0.0 +25911,12,38,44,0.0 +25911,44,19.45,46,0.0 +25911,3,10,30,0.0 +25911,43,46,37,0.0 +25911,53,32.8,28,0.0 +25911,77,13,12,0.0 +25911,7,30,45,0.0 +25911,27,43.9,18,0.0 +25911,58,13.25,33,0.0 +25911,38,263.5,15,0.0 +25911,13,6,35,0.0 +25911,30,25.89,27,0.0 +25911,14,23.25,15,0.0 +25911,71,21.5,4,0.0 +25911,66,17,8,0.0 +25911,24,4.5,15,0.0 +25911,67,14,14,0.0 +25911,2,19,22,0.0 +25911,68,12.5,15,0.0 +25911,62,49.3,15,0.0 +25911,52,7,29,0.0 +25911,39,18,35,0.0 +25911,76,18,26,0.0 +25911,6,25,41,0.0 +25911,50,16.25,20,0.0 +25911,72,34.8,4,0.0 +25911,16,17.45,9,0.0 +25911,55,24,15,0.0 +25911,9,97,3,0.0 +25911,20,81,30,0.0 +25911,42,14,43,0.0 +25911,8,40,21,0.0 +25911,23,9,43,0.0 +25911,32,32,27,0.0 +25911,5,21.35,18,0.0 +25911,28,45.6,48,0.0 +25911,26,31.23,10,0.0 +25911,49,20,28,0.0 +25911,75,7.75,39,0.0 +25911,19,9.2,33,0.0 +25911,22,21,10,0.0 +25911,33,2.5,48,0.0 +25911,21,10,16,0.0 +25911,10,31,7,0.0 +25911,11,21,32,0.0 +25911,47,9.5,3,0.0 +25911,4,22,42,0.0 +25911,18,62.5,16,0.0 +25911,69,36,48,0.0 +25911,63,43.9,3,0.0 +25911,54,7.45,50,0.0 +25912,56,38,14,0.0 +25912,13,6,15,0.0 +25912,4,22,33,0.0 +25912,76,18,14,0.0 +25912,66,17,39,0.0 +25912,52,7,17,0.0 +25912,49,20,32,0.0 +25912,45,9.5,13,0.0 +25912,26,31.23,5,0.0 +25912,53,32.8,9,0.0 +25912,46,12,18,0.0 +25912,15,15.5,41,0.0 +25912,57,19.5,46,0.0 +25912,65,21.05,35,0.0 +25912,28,45.6,33,0.0 +25912,8,40,3,0.0 +25912,34,14,23,0.0 +25912,19,9.2,30,0.0 +25912,30,25.89,37,0.0 +25912,68,12.5,20,0.0 +25912,70,15,2,0.0 +25912,40,18.4,7,0.0 +25912,39,18,15,0.0 +25912,6,25,15,0.0 +25913,71,21.5,4,0.0 +25913,30,25.89,47,0.0 +25913,65,21.05,11,0.0 +25913,17,39,6,0.0 +25913,7,30,4,0.0 +25913,32,32,21,0.0 +25913,59,55,33,0.0 +25913,63,43.9,20,0.0 +25913,27,43.9,46,0.0 +25913,69,36,35,0.0 +25913,50,16.25,5,0.0 +25913,2,19,16,0.0 +25913,12,38,47,0.0 +25913,54,7.45,2,0.0 +25913,62,49.3,20,0.0 +25913,14,23.25,6,0.0 +25913,37,26,30,0.0 +25913,72,34.8,6,0.0 +25913,4,22,14,0.0 +25913,49,20,38,0.0 +25913,67,14,41,0.0 +25913,28,45.6,30,0.0 +25913,66,17,30,0.0 +25913,3,10,42,0.0 +25913,55,24,27,0.0 +25913,43,46,11,0.0 +25913,51,53,47,0.0 +25913,20,81,1,0.0 +25913,48,12.75,49,0.0 +25913,44,19.45,10,0.0 +25913,52,7,38,0.0 +25913,33,2.5,38,0.0 +25913,61,28.5,14,0.0 +25913,68,12.5,36,0.0 +25913,19,9.2,6,0.0 +25913,34,14,46,0.0 +25913,36,19,14,0.0 +25913,18,62.5,32,0.0 +25913,9,97,40,0.0 +25913,76,18,50,0.0 +25913,35,18,43,0.0 +25913,47,9.5,48,0.0 +25913,26,31.23,29,0.0 +25913,58,13.25,37,0.0 +25913,53,32.8,25,0.0 +25913,75,7.75,33,0.0 +25913,16,17.45,3,0.0 +25913,57,19.5,24,0.0 +25914,63,43.9,47,0.0 +25914,47,9.5,22,0.0 +25914,68,12.5,37,0.0 +25914,33,2.5,41,0.0 +25914,8,40,36,0.0 +25914,35,18,34,0.0 +25914,39,18,7,0.0 +25914,31,12.5,42,0.0 +25914,57,19.5,5,0.0 +25914,61,28.5,18,0.0 +25914,12,38,36,0.0 +25914,10,31,2,0.0 +25914,71,21.5,26,0.0 +25914,29,123.79,48,0.0 +25914,60,34,17,0.0 +25914,65,21.05,41,0.0 +25914,9,97,11,0.0 +25914,77,13,42,0.0 +25914,16,17.45,8,0.0 +25914,56,38,13,0.0 +25914,44,19.45,13,0.0 +25914,4,22,1,0.0 +25914,49,20,24,0.0 +25914,59,55,17,0.0 +25914,19,9.2,8,0.0 +25914,58,13.25,13,0.0 +25914,42,14,20,0.0 +25914,46,12,10,0.0 +25914,23,9,32,0.0 +25914,1,18,2,0.0 +25914,54,7.45,41,0.0 +25914,30,25.89,8,0.0 +25914,48,12.75,18,0.0 +25914,52,7,27,0.0 +25914,24,4.5,21,0.0 +25914,27,43.9,15,0.0 +25914,26,31.23,41,0.0 +25914,11,21,50,0.0 +25914,73,15,10,0.0 +25914,13,6,31,0.0 +25914,6,25,39,0.0 +25914,21,10,18,0.0 +25914,28,45.6,22,0.0 +25914,43,46,45,0.0 +25914,34,14,27,0.0 +25914,53,32.8,13,0.0 +25914,7,30,39,0.0 +25914,75,7.75,43,0.0 +25914,69,36,19,0.0 +25914,51,53,19,0.0 +25914,74,10,32,0.0 +25914,62,49.3,43,0.0 +25914,37,26,49,0.0 +25914,32,32,47,0.0 +25914,40,18.4,45,0.0 +25914,76,18,48,0.0 +25914,41,9.65,23,0.0 +25914,3,10,50,0.0 +25914,66,17,4,0.0 +25914,17,39,35,0.0 +25914,64,33.25,25,0.0 +25914,5,21.35,4,0.0 +25914,2,19,27,0.0 +25914,22,21,25,0.0 +25914,67,14,38,0.0 +25915,52,7,4,0.0 +25916,26,31.23,13,0.0 +25916,55,24,16,0.0 +25916,41,9.65,19,0.0 +25916,25,14,45,0.0 +25916,1,18,12,0.0 +25916,42,14,16,0.0 +25916,10,31,22,0.0 +25916,71,21.5,28,0.0 +25916,43,46,32,0.0 +25916,9,97,40,0.0 +25916,67,14,31,0.0 +25916,15,15.5,17,0.0 +25916,21,10,10,0.0 +25916,73,15,25,0.0 +25916,11,21,14,0.0 +25916,13,6,17,0.0 +25916,34,14,34,0.0 +25916,62,49.3,25,0.0 +25916,75,7.75,32,0.0 +25916,60,34,2,0.0 +25916,68,12.5,44,0.0 +25916,63,43.9,5,0.0 +25916,65,21.05,24,0.0 +25916,2,19,31,0.0 +25916,36,19,16,0.0 +25916,7,30,41,0.0 +25916,14,23.25,10,0.0 +25916,23,9,48,0.0 +25916,58,13.25,28,0.0 +25916,16,17.45,6,0.0 +25916,72,34.8,43,0.0 +25916,8,40,41,0.0 +25916,66,17,29,0.0 +25916,33,2.5,13,0.0 +25916,12,38,41,0.0 +25916,27,43.9,49,0.0 +25916,3,10,10,0.0 +25916,17,39,47,0.0 +25916,49,20,49,0.0 +25916,4,22,49,0.0 +25916,45,9.5,39,0.0 +25916,39,18,33,0.0 +25917,64,33.25,1,0.0 +25917,45,9.5,4,0.0 +25917,52,7,18,0.0 +25917,28,45.6,23,0.0 +25917,68,12.5,10,0.0 +25917,9,97,9,0.0 +25917,27,43.9,23,0.0 +25917,34,14,25,0.0 +25917,25,14,4,0.0 +25917,75,7.75,29,0.0 +25917,24,4.5,24,0.0 +25917,38,263.5,50,0.0 +25917,22,21,43,0.0 +25917,8,40,18,0.0 +25917,21,10,10,0.0 +25917,69,36,9,0.0 +25917,4,22,38,0.0 +25917,56,38,40,0.0 +25917,70,15,10,0.0 +25917,17,39,37,0.0 +25917,35,18,48,0.0 +25917,32,32,28,0.0 +25917,3,10,33,0.0 +25917,33,2.5,30,0.0 +25917,44,19.45,41,0.0 +25917,15,15.5,47,0.0 +25917,11,21,20,0.0 +25917,36,19,22,0.0 +25917,77,13,47,0.0 +25917,71,21.5,23,0.0 +25917,41,9.65,28,0.0 +25917,2,19,25,0.0 +25917,55,24,21,0.0 +25917,1,18,47,0.0 +25917,29,123.79,26,0.0 +25917,73,15,12,0.0 +25917,76,18,5,0.0 +25917,6,25,28,0.0 +25917,19,9.2,4,0.0 +25917,66,17,50,0.0 +25917,26,31.23,50,0.0 +25917,63,43.9,37,0.0 +25917,46,12,49,0.0 +25917,58,13.25,12,0.0 +25917,40,18.4,37,0.0 +25917,47,9.5,30,0.0 +25917,49,20,43,0.0 +25917,43,46,22,0.0 +25917,7,30,8,0.0 +25917,54,7.45,4,0.0 +25917,10,31,19,0.0 +25917,31,12.5,7,0.0 +25917,42,14,42,0.0 +25917,30,25.89,6,0.0 +25917,5,21.35,38,0.0 +25917,14,23.25,35,0.0 +25917,48,12.75,3,0.0 +25917,51,53,3,0.0 +25917,57,19.5,50,0.0 +25917,13,6,38,0.0 +25917,74,10,14,0.0 +25917,37,26,15,0.0 +25918,20,81,46,0.0 +25918,45,9.5,1,0.0 +25918,56,38,42,0.0 +25918,61,28.5,3,0.0 +25918,30,25.89,2,0.0 +25918,17,39,7,0.0 +25918,24,4.5,24,0.0 +25918,38,263.5,1,0.0 +25918,74,10,10,0.0 +25918,66,17,50,0.0 +25918,18,62.5,20,0.0 +25918,59,55,8,0.0 +25918,33,2.5,32,0.0 +25918,47,9.5,46,0.0 +25918,36,19,12,0.0 +25918,46,12,4,0.0 +25918,32,32,26,0.0 +25918,67,14,7,0.0 +25918,44,19.45,28,0.0 +25918,26,31.23,2,0.0 +25918,4,22,14,0.0 +25918,19,9.2,27,0.0 +25918,48,12.75,3,0.0 +25918,54,7.45,4,0.0 +25918,50,16.25,31,0.0 +25918,64,33.25,25,0.0 +25918,42,14,19,0.0 +25918,49,20,45,0.0 +25918,25,14,49,0.0 +25918,51,53,37,0.0 +25918,75,7.75,26,0.0 +25918,68,12.5,6,0.0 +25918,43,46,14,0.0 +25918,5,21.35,43,0.0 +25918,11,21,12,0.0 +25918,28,45.6,13,0.0 +25918,77,13,18,0.0 +25918,53,32.8,49,0.0 +25918,52,7,33,0.0 +25918,70,15,8,0.0 +25918,9,97,12,0.0 +25918,2,19,33,0.0 +25918,3,10,14,0.0 +25918,57,19.5,11,0.0 +25918,22,21,13,0.0 +25918,1,18,43,0.0 +25918,16,17.45,23,0.0 +25918,69,36,16,0.0 +25918,37,26,13,0.0 +25918,15,15.5,14,0.0 +25918,23,9,23,0.0 +25918,35,18,1,0.0 +25918,8,40,15,0.0 +25918,7,30,25,0.0 +25918,76,18,46,0.0 +25918,60,34,34,0.0 +25918,58,13.25,42,0.0 +25918,13,6,27,0.0 +25918,31,12.5,16,0.0 +25918,21,10,24,0.0 +25918,65,21.05,19,0.0 +25918,10,31,18,0.0 +25918,63,43.9,36,0.0 +25918,14,23.25,32,0.0 +25918,71,21.5,28,0.0 +25918,62,49.3,28,0.0 +25918,40,18.4,12,0.0 +25918,39,18,23,0.0 +25918,6,25,6,0.0 +25918,29,123.79,34,0.0 +25918,73,15,20,0.0 +25919,33,2.5,2,0.0 +25919,56,38,36,0.0 +25919,19,9.2,9,0.0 +25919,13,6,36,0.0 +25919,6,25,8,0.0 +25919,55,24,37,0.0 +25919,51,53,35,0.0 +25919,45,9.5,50,0.0 +25919,50,16.25,39,0.0 +25919,64,33.25,39,0.0 +25919,23,9,29,0.0 +25919,11,21,30,0.0 +25919,16,17.45,13,0.0 +25919,20,81,38,0.0 +25919,4,22,35,0.0 +25919,21,10,24,0.0 +25919,36,19,12,0.0 +25919,52,7,49,0.0 +25919,67,14,41,0.0 +25919,59,55,43,0.0 +25919,24,4.5,25,0.0 +25919,5,21.35,2,0.0 +25919,75,7.75,22,0.0 +25919,49,20,32,0.0 +25919,27,43.9,38,0.0 +25920,9,97,41,0.0 +25920,12,38,49,0.0 +25920,67,14,3,0.0 +25920,46,12,14,0.0 +25920,32,32,47,0.0 +25920,11,21,1,0.0 +25920,4,22,12,0.0 +25920,70,15,26,0.0 +25920,13,6,9,0.0 +25920,72,34.8,47,0.0 +25920,31,12.5,3,0.0 +25920,68,12.5,2,0.0 +25920,18,62.5,14,0.0 +25920,71,21.5,41,0.0 +25920,3,10,19,0.0 +25920,48,12.75,26,0.0 +25920,66,17,23,0.0 +25920,1,18,8,0.0 +25920,34,14,23,0.0 +25920,42,14,1,0.0 +25920,39,18,31,0.0 +25920,52,7,7,0.0 +25920,19,9.2,39,0.0 +25920,10,31,17,0.0 +25920,40,18.4,40,0.0 +25920,55,24,28,0.0 +25920,8,40,35,0.0 +25920,21,10,50,0.0 +25920,27,43.9,36,0.0 +25920,44,19.45,10,0.0 +25920,65,21.05,18,0.0 +25920,43,46,23,0.0 +25920,62,49.3,14,0.0 +25920,53,32.8,23,0.0 +25920,7,30,21,0.0 +25920,47,9.5,5,0.0 +25920,61,28.5,12,0.0 +25921,7,30,11,0.0 +25921,45,9.5,47,0.0 +25921,23,9,22,0.0 +25921,2,19,49,0.0 +25921,53,32.8,49,0.0 +25921,75,7.75,9,0.0 +25921,34,14,50,0.0 +25921,55,24,40,0.0 +25921,43,46,1,0.0 +25921,36,19,48,0.0 +25921,46,12,50,0.0 +25921,74,10,33,0.0 +25921,49,20,18,0.0 +25921,59,55,40,0.0 +25921,73,15,9,0.0 +25921,30,25.89,29,0.0 +25921,64,33.25,39,0.0 +25921,3,10,44,0.0 +25921,32,32,34,0.0 +25921,14,23.25,21,0.0 +25921,5,21.35,19,0.0 +25921,52,7,16,0.0 +25922,25,14,32,0.0 +25922,39,18,1,0.0 +25922,56,38,38,0.0 +25922,35,18,22,0.0 +25922,67,14,8,0.0 +25922,27,43.9,43,0.0 +25922,74,10,24,0.0 +25923,28,45.6,45,0.0 +25923,38,263.5,9,0.0 +25923,75,7.75,30,0.0 +25923,6,25,43,0.0 +25923,15,15.5,5,0.0 +25923,19,9.2,16,0.0 +25923,5,21.35,12,0.0 +25923,57,19.5,29,0.0 +25923,25,14,10,0.0 +25923,56,38,4,0.0 +25923,46,12,50,0.0 +25923,67,14,34,0.0 +25923,3,10,7,0.0 +25923,69,36,48,0.0 +25923,68,12.5,43,0.0 +25923,45,9.5,6,0.0 +25923,62,49.3,7,0.0 +25923,52,7,9,0.0 +25923,1,18,43,0.0 +25923,39,18,25,0.0 +25924,57,19.5,33,0.0 +25924,21,10,5,0.0 +25924,42,14,33,0.0 +25924,74,10,34,0.0 +25924,35,18,4,0.0 +25924,47,9.5,14,0.0 +25924,25,14,13,0.0 +25924,2,19,22,0.0 +25924,68,12.5,11,0.0 +25924,15,15.5,49,0.0 +25924,49,20,44,0.0 +25924,10,31,16,0.0 +25924,32,32,40,0.0 +25924,3,10,40,0.0 +25924,70,15,29,0.0 +25924,12,38,31,0.0 +25924,56,38,22,0.0 +25924,33,2.5,39,0.0 +25924,17,39,35,0.0 +25924,39,18,5,0.0 +25924,69,36,15,0.0 +25924,31,12.5,26,0.0 +25924,48,12.75,47,0.0 +25924,4,22,48,0.0 +25924,66,17,17,0.0 +25924,60,34,2,0.0 +25924,23,9,36,0.0 +25924,24,4.5,5,0.0 +25924,19,9.2,10,0.0 +25924,62,49.3,45,0.0 +25924,61,28.5,14,0.0 +25924,5,21.35,40,0.0 +25924,34,14,49,0.0 +25924,26,31.23,31,0.0 +25924,75,7.75,44,0.0 +25924,7,30,27,0.0 +25924,13,6,6,0.0 +25924,72,34.8,31,0.0 +25924,20,81,42,0.0 +25924,37,26,8,0.0 +25924,54,7.45,48,0.0 +25925,36,19,19,0.0 +25925,8,40,24,0.0 +25925,44,19.45,39,0.0 +25925,47,9.5,33,0.0 +25925,57,19.5,8,0.0 +25925,69,36,44,0.0 +25925,71,21.5,14,0.0 +25925,56,38,37,0.0 +25925,74,10,41,0.0 +25925,7,30,8,0.0 +25925,24,4.5,47,0.0 +25925,50,16.25,47,0.0 +25925,62,49.3,38,0.0 +25925,39,18,41,0.0 +25925,58,13.25,29,0.0 +25926,1,18,46,0.0 +25926,23,9,41,0.0 +25926,63,43.9,44,0.0 +25926,26,31.23,49,0.0 +25926,61,28.5,7,0.0 +25926,72,34.8,23,0.0 +25926,74,10,40,0.0 +25926,2,19,23,0.0 +25926,37,26,47,0.0 +25926,29,123.79,8,0.0 +25926,52,7,46,0.0 +25926,16,17.45,49,0.0 +25926,22,21,49,0.0 +25926,5,21.35,41,0.0 +25926,35,18,50,0.0 +25926,68,12.5,28,0.0 +25926,70,15,44,0.0 +25926,56,38,46,0.0 +25926,60,34,42,0.0 +25926,50,16.25,15,0.0 +25926,8,40,19,0.0 +25926,18,62.5,19,0.0 +25926,3,10,16,0.0 +25926,67,14,15,0.0 +25926,43,46,21,0.0 +25926,15,15.5,22,0.0 +25926,13,6,16,0.0 +25926,10,31,23,0.0 +25926,76,18,47,0.0 +25926,14,23.25,1,0.0 +25926,38,263.5,24,0.0 +25926,30,25.89,15,0.0 +25926,58,13.25,14,0.0 +25926,11,21,12,0.0 +25926,12,38,19,0.0 +25926,57,19.5,35,0.0 +25926,54,7.45,20,0.0 +25926,65,21.05,8,0.0 +25926,49,20,36,0.0 +25926,7,30,2,0.0 +25926,19,9.2,29,0.0 +25926,45,9.5,43,0.0 +25926,25,14,6,0.0 +25926,47,9.5,9,0.0 +25926,32,32,35,0.0 +25926,41,9.65,13,0.0 +25926,53,32.8,35,0.0 +25926,46,12,36,0.0 +25926,73,15,4,0.0 +25926,77,13,46,0.0 +25926,66,17,1,0.0 +25927,77,13,39,0.0 +25927,14,23.25,18,0.0 +25927,47,9.5,6,0.0 +25927,4,22,45,0.0 +25927,23,9,14,0.0 +25927,43,46,42,0.0 +25927,52,7,19,0.0 +25927,24,4.5,33,0.0 +25927,2,19,50,0.0 +25927,61,28.5,31,0.0 +25927,50,16.25,12,0.0 +25927,42,14,15,0.0 +25927,57,19.5,36,0.0 +25927,37,26,21,0.0 +25927,31,12.5,39,0.0 +25927,65,21.05,24,0.0 +25927,26,31.23,50,0.0 +25927,11,21,45,0.0 +25927,33,2.5,24,0.0 +25927,25,14,23,0.0 +25927,16,17.45,19,0.0 +25927,29,123.79,32,0.0 +25927,36,19,33,0.0 +25927,20,81,42,0.0 +25927,67,14,12,0.0 +25927,74,10,8,0.0 +25927,1,18,24,0.0 +25927,3,10,33,0.0 +25927,22,21,5,0.0 +25927,28,45.6,15,0.0 +25927,19,9.2,47,0.0 +25927,60,34,37,0.0 +25927,40,18.4,42,0.0 +25927,13,6,1,0.0 +25927,69,36,9,0.0 +25927,45,9.5,20,0.0 +25927,35,18,14,0.0 +25927,10,31,24,0.0 +25927,49,20,9,0.0 +25927,7,30,36,0.0 +25927,51,53,41,0.0 +25927,27,43.9,49,0.0 +25927,44,19.45,33,0.0 +25927,41,9.65,44,0.0 +25927,39,18,29,0.0 +25927,5,21.35,14,0.0 +25927,8,40,24,0.0 +25927,75,7.75,21,0.0 +25927,48,12.75,41,0.0 +25927,21,10,45,0.0 +25928,41,9.65,39,0.0 +25928,33,2.5,48,0.0 +25928,43,46,30,0.0 +25928,10,31,11,0.0 +25928,8,40,3,0.0 +25928,72,34.8,27,0.0 +25928,47,9.5,13,0.0 +25928,5,21.35,35,0.0 +25928,35,18,42,0.0 +25928,15,15.5,6,0.0 +25928,67,14,37,0.0 +25928,27,43.9,4,0.0 +25928,42,14,45,0.0 +25928,9,97,30,0.0 +25928,6,25,42,0.0 +25928,70,15,23,0.0 +25928,53,32.8,11,0.0 +25928,28,45.6,46,0.0 +25928,40,18.4,38,0.0 +25928,16,17.45,12,0.0 +25928,69,36,17,0.0 +25928,11,21,27,0.0 +25928,25,14,36,0.0 +25928,4,22,18,0.0 +25928,64,33.25,42,0.0 +25928,51,53,14,0.0 +25928,14,23.25,45,0.0 +25928,65,21.05,31,0.0 +25928,12,38,40,0.0 +25928,38,263.5,1,0.0 +25928,44,19.45,6,0.0 +25928,23,9,32,0.0 +25928,24,4.5,10,0.0 +25928,75,7.75,34,0.0 +25928,76,18,6,0.0 +25928,45,9.5,27,0.0 +25928,63,43.9,13,0.0 +25928,37,26,37,0.0 +25928,68,12.5,10,0.0 +25928,20,81,1,0.0 +25928,26,31.23,7,0.0 +25928,3,10,13,0.0 +25928,58,13.25,37,0.0 +25928,57,19.5,50,0.0 +25928,31,12.5,19,0.0 +25928,55,24,12,0.0 +25928,22,21,45,0.0 +25928,36,19,12,0.0 +25928,19,9.2,45,0.0 +25928,7,30,20,0.0 +25928,21,10,15,0.0 +25928,59,55,35,0.0 +25928,74,10,39,0.0 +25928,29,123.79,10,0.0 +25928,73,15,41,0.0 +25928,66,17,19,0.0 +25928,50,16.25,24,0.0 +25928,30,25.89,30,0.0 +25928,39,18,4,0.0 +25928,48,12.75,17,0.0 +25929,50,16.25,6,0.0 +25929,72,34.8,16,0.0 +25929,6,25,46,0.0 +25929,17,39,28,0.0 +25929,71,21.5,31,0.0 +25929,21,10,49,0.0 +25929,52,7,23,0.0 +25929,16,17.45,42,0.0 +25929,62,49.3,50,0.0 +25929,3,10,14,0.0 +25929,51,53,2,0.0 +25929,13,6,38,0.0 +25929,24,4.5,9,0.0 +25929,55,24,21,0.0 +25929,60,34,48,0.0 +25929,5,21.35,27,0.0 +25929,20,81,31,0.0 +25929,30,25.89,7,0.0 +25929,53,32.8,11,0.0 +25929,39,18,19,0.0 +25929,19,9.2,25,0.0 +25929,34,14,20,0.0 +25929,9,97,20,0.0 +25929,36,19,49,0.0 +25929,46,12,45,0.0 +25929,65,21.05,39,0.0 +25929,54,7.45,30,0.0 +25929,76,18,10,0.0 +25929,22,21,16,0.0 +25929,70,15,1,0.0 +25929,12,38,3,0.0 +25929,40,18.4,14,0.0 +25929,32,32,38,0.0 +25929,67,14,17,0.0 +25929,29,123.79,35,0.0 +25929,26,31.23,44,0.0 +25929,7,30,43,0.0 +25930,35,18,33,0.0 +25930,47,9.5,37,0.0 +25930,18,62.5,38,0.0 +25930,61,28.5,25,0.0 +25930,50,16.25,29,0.0 +25930,8,40,5,0.0 +25930,22,21,24,0.0 +25930,6,25,15,0.0 +25930,65,21.05,49,0.0 +25930,45,9.5,24,0.0 +25930,49,20,13,0.0 +25930,54,7.45,28,0.0 +25930,43,46,50,0.0 +25930,42,14,32,0.0 +25930,76,18,44,0.0 +25930,32,32,22,0.0 +25930,26,31.23,44,0.0 +25930,17,39,39,0.0 +25930,33,2.5,13,0.0 +25930,4,22,21,0.0 +25930,1,18,3,0.0 +25930,3,10,20,0.0 +25930,70,15,14,0.0 +25930,7,30,24,0.0 +25930,72,34.8,47,0.0 +25930,74,10,4,0.0 +25930,68,12.5,40,0.0 +25930,25,14,19,0.0 +25930,77,13,32,0.0 +25930,23,9,42,0.0 +25930,28,45.6,35,0.0 +25930,24,4.5,36,0.0 +25930,37,26,2,0.0 +25930,29,123.79,17,0.0 +25930,12,38,26,0.0 +25930,44,19.45,31,0.0 +25930,57,19.5,4,0.0 +25930,71,21.5,17,0.0 +25931,52,7,18,0.0 +25931,58,13.25,23,0.0 +25931,75,7.75,17,0.0 +25931,68,12.5,45,0.0 +25931,61,28.5,4,0.0 +25931,31,12.5,29,0.0 +25931,46,12,34,0.0 +25931,33,2.5,29,0.0 +25931,36,19,23,0.0 +25931,59,55,16,0.0 +25931,77,13,31,0.0 +25931,48,12.75,42,0.0 +25931,19,9.2,38,0.0 +25931,49,20,29,0.0 +25931,56,38,39,0.0 +25931,40,18.4,10,0.0 +25931,72,34.8,23,0.0 +25931,76,18,27,0.0 +25931,11,21,31,0.0 +25931,34,14,16,0.0 +25931,74,10,18,0.0 +25931,10,31,17,0.0 +25931,12,38,23,0.0 +25931,27,43.9,5,0.0 +25931,51,53,2,0.0 +25931,43,46,21,0.0 +25931,66,17,21,0.0 +25931,73,15,38,0.0 +25931,67,14,47,0.0 +25931,25,14,35,0.0 +25931,15,15.5,32,0.0 +25931,71,21.5,3,0.0 +25931,37,26,42,0.0 +25931,2,19,46,0.0 +25931,41,9.65,10,0.0 +25931,60,34,35,0.0 +25931,69,36,39,0.0 +25931,42,14,15,0.0 +25931,35,18,47,0.0 +25931,45,9.5,2,0.0 +25931,22,21,17,0.0 +25931,5,21.35,19,0.0 +25931,70,15,45,0.0 +25931,54,7.45,49,0.0 +25931,38,263.5,10,0.0 +25931,30,25.89,42,0.0 +25931,62,49.3,26,0.0 +25931,53,32.8,48,0.0 +25931,28,45.6,2,0.0 +25931,3,10,40,0.0 +25931,21,10,35,0.0 +25932,26,31.23,1,0.0 +25932,27,43.9,5,0.0 +25932,35,18,2,0.0 +25932,29,123.79,31,0.0 +25932,50,16.25,12,0.0 +25932,36,19,27,0.0 +25932,32,32,35,0.0 +25932,12,38,6,0.0 +25932,45,9.5,17,0.0 +25932,73,15,2,0.0 +25932,51,53,44,0.0 +25932,70,15,16,0.0 +25932,46,12,31,0.0 +25932,4,22,14,0.0 +25932,77,13,1,0.0 +25932,1,18,14,0.0 +25932,67,14,42,0.0 +25932,41,9.65,43,0.0 +25932,25,14,41,0.0 +25932,19,9.2,32,0.0 +25932,3,10,14,0.0 +25932,63,43.9,14,0.0 +25932,23,9,30,0.0 +25932,49,20,12,0.0 +25932,61,28.5,26,0.0 +25932,57,19.5,16,0.0 +25932,30,25.89,8,0.0 +25932,11,21,49,0.0 +25932,42,14,22,0.0 +25932,33,2.5,26,0.0 +25932,65,21.05,23,0.0 +25932,48,12.75,47,0.0 +25932,44,19.45,50,0.0 +25932,7,30,21,0.0 +25932,71,21.5,7,0.0 +25932,66,17,9,0.0 +25932,72,34.8,28,0.0 +25932,20,81,26,0.0 +25932,62,49.3,6,0.0 +25932,47,9.5,4,0.0 +25932,13,6,23,0.0 +25932,24,4.5,45,0.0 +25932,58,13.25,42,0.0 +25932,28,45.6,24,0.0 +25932,15,15.5,11,0.0 +25932,68,12.5,27,0.0 +25932,60,34,13,0.0 +25932,10,31,50,0.0 +25932,69,36,44,0.0 +25932,22,21,20,0.0 +25932,55,24,49,0.0 +25932,74,10,46,0.0 +25932,8,40,45,0.0 +25932,21,10,20,0.0 +25932,2,19,18,0.0 +25932,16,17.45,23,0.0 +25932,59,55,17,0.0 +25932,9,97,35,0.0 +25932,5,21.35,45,0.0 +25932,43,46,49,0.0 +25932,34,14,19,0.0 +25932,53,32.8,28,0.0 +25932,76,18,13,0.0 +25932,37,26,9,0.0 +25932,14,23.25,46,0.0 +25932,52,7,48,0.0 +25932,40,18.4,39,0.0 +25932,31,12.5,19,0.0 +25932,75,7.75,29,0.0 +25932,56,38,26,0.0 +25932,18,62.5,5,0.0 +25932,54,7.45,30,0.0 +25933,37,26,34,0.0 +25933,54,7.45,34,0.0 +25933,45,9.5,1,0.0 +25933,59,55,38,0.0 +25933,40,18.4,38,0.0 +25933,27,43.9,27,0.0 +25933,64,33.25,30,0.0 +25934,4,22,4,0.0 +25934,67,14,47,0.0 +25934,45,9.5,20,0.0 +25934,61,28.5,6,0.0 +25934,35,18,46,0.0 +25934,8,40,15,0.0 +25934,7,30,34,0.0 +25934,37,26,10,0.0 +25934,62,49.3,31,0.0 +25934,30,25.89,29,0.0 +25934,34,14,29,0.0 +25934,18,62.5,33,0.0 +25934,13,6,2,0.0 +25934,22,21,2,0.0 +25934,72,34.8,10,0.0 +25934,36,19,15,0.0 +25934,17,39,46,0.0 +25934,16,17.45,26,0.0 +25934,63,43.9,46,0.0 +25934,26,31.23,37,0.0 +25934,6,25,7,0.0 +25934,23,9,50,0.0 +25934,66,17,29,0.0 +25934,57,19.5,33,0.0 +25934,27,43.9,10,0.0 +25934,40,18.4,49,0.0 +25934,11,21,22,0.0 +25934,2,19,47,0.0 +25934,49,20,9,0.0 +25934,50,16.25,30,0.0 +25934,42,14,25,0.0 +25934,56,38,46,0.0 +25934,21,10,20,0.0 +25934,64,33.25,10,0.0 +25934,46,12,31,0.0 +25934,51,53,47,0.0 +25934,38,263.5,33,0.0 +25934,55,24,5,0.0 +25934,54,7.45,40,0.0 +25934,31,12.5,49,0.0 +25935,63,43.9,12,0.0 +25935,9,97,22,0.0 +25935,22,21,14,0.0 +25935,76,18,20,0.0 +25935,31,12.5,45,0.0 +25935,13,6,41,0.0 +25935,64,33.25,30,0.0 +25935,49,20,32,0.0 +25935,75,7.75,13,0.0 +25935,39,18,38,0.0 +25935,30,25.89,5,0.0 +25935,73,15,46,0.0 +25935,41,9.65,21,0.0 +25935,7,30,19,0.0 +25935,38,263.5,47,0.0 +25935,68,12.5,21,0.0 +25935,58,13.25,29,0.0 +25935,12,38,39,0.0 +25935,50,16.25,33,0.0 +25935,74,10,47,0.0 +25935,25,14,27,0.0 +25935,34,14,31,0.0 +25935,16,17.45,7,0.0 +25935,10,31,15,0.0 +25935,15,15.5,39,0.0 +25935,62,49.3,29,0.0 +25935,3,10,44,0.0 +25935,57,19.5,44,0.0 +25935,65,21.05,4,0.0 +25935,1,18,49,0.0 +25935,72,34.8,18,0.0 +25935,11,21,2,0.0 +25935,5,21.35,48,0.0 +25935,26,31.23,5,0.0 +25935,67,14,46,0.0 +25935,71,21.5,46,0.0 +25935,28,45.6,18,0.0 +25935,54,7.45,20,0.0 +25935,48,12.75,23,0.0 +25935,56,38,3,0.0 +25935,44,19.45,43,0.0 +25935,59,55,35,0.0 +25935,18,62.5,40,0.0 +25935,36,19,9,0.0 +25935,55,24,29,0.0 +25935,35,18,26,0.0 +25935,61,28.5,39,0.0 +25935,29,123.79,12,0.0 +25935,60,34,33,0.0 +25935,51,53,35,0.0 +25935,37,26,36,0.0 +25936,55,24,13,0.0 +25936,77,13,6,0.0 +25936,71,21.5,22,0.0 +25937,2,19,11,0.0 +25937,49,20,34,0.0 +25937,53,32.8,33,0.0 +25937,10,31,39,0.0 +25937,43,46,33,0.0 +25937,15,15.5,14,0.0 +25937,48,12.75,5,0.0 +25937,37,26,32,0.0 +25937,74,10,34,0.0 +25937,3,10,35,0.0 +25937,36,19,42,0.0 +25937,26,31.23,17,0.0 +25937,18,62.5,45,0.0 +25937,76,18,36,0.0 +25937,58,13.25,28,0.0 +25937,75,7.75,8,0.0 +25938,73,15,15,0.0 +25938,70,15,32,0.0 +25938,55,24,41,0.0 +25938,58,13.25,18,0.0 +25938,67,14,2,0.0 +25938,52,7,30,0.0 +25938,32,32,37,0.0 +25938,36,19,44,0.0 +25938,26,31.23,11,0.0 +25938,37,26,20,0.0 +25938,56,38,1,0.0 +25938,75,7.75,18,0.0 +25938,19,9.2,44,0.0 +25938,41,9.65,3,0.0 +25938,45,9.5,21,0.0 +25938,16,17.45,17,0.0 +25938,27,43.9,28,0.0 +25938,9,97,23,0.0 +25938,74,10,39,0.0 +25938,18,62.5,26,0.0 +25938,21,10,12,0.0 +25938,29,123.79,39,0.0 +25938,72,34.8,46,0.0 +25938,8,40,21,0.0 +25938,65,21.05,32,0.0 +25938,13,6,25,0.0 +25938,54,7.45,42,0.0 +25938,49,20,8,0.0 +25938,69,36,27,0.0 +25938,15,15.5,13,0.0 +25938,33,2.5,6,0.0 +25938,4,22,49,0.0 +25938,20,81,19,0.0 +25938,25,14,23,0.0 +25938,50,16.25,47,0.0 +25938,5,21.35,42,0.0 +25938,53,32.8,11,0.0 +25938,3,10,8,0.0 +25938,40,18.4,32,0.0 +25938,7,30,8,0.0 +25938,10,31,27,0.0 +25938,6,25,37,0.0 +25938,42,14,45,0.0 +25938,31,12.5,17,0.0 +25938,63,43.9,7,0.0 +25938,43,46,2,0.0 +25938,47,9.5,21,0.0 +25938,11,21,19,0.0 +25938,1,18,44,0.0 +25938,2,19,39,0.0 +25938,61,28.5,38,0.0 +25938,30,25.89,5,0.0 +25938,59,55,31,0.0 +25938,12,38,22,0.0 +25938,35,18,44,0.0 +25938,39,18,32,0.0 +25938,71,21.5,36,0.0 +25939,42,14,20,0.0 +25939,30,25.89,30,0.0 +25939,12,38,42,0.0 +25939,73,15,15,0.0 +25939,77,13,19,0.0 +25939,33,2.5,30,0.0 +25939,48,12.75,22,0.0 +25939,37,26,27,0.0 +25939,9,97,24,0.0 +25939,61,28.5,10,0.0 +25939,39,18,46,0.0 +25939,25,14,47,0.0 +25939,67,14,31,0.0 +25939,16,17.45,31,0.0 +25939,76,18,2,0.0 +25939,54,7.45,28,0.0 +25939,27,43.9,6,0.0 +25939,38,263.5,3,0.0 +25939,22,21,32,0.0 +25939,3,10,11,0.0 +25939,59,55,48,0.0 +25939,70,15,28,0.0 +25939,17,39,3,0.0 +25939,2,19,48,0.0 +25939,74,10,6,0.0 +25939,31,12.5,35,0.0 +25939,51,53,41,0.0 +25939,55,24,38,0.0 +25939,46,12,38,0.0 +25939,43,46,3,0.0 +25939,75,7.75,14,0.0 +25939,26,31.23,26,0.0 +25939,6,25,12,0.0 +25939,32,32,47,0.0 +25939,21,10,48,0.0 +25939,60,34,48,0.0 +25939,52,7,50,0.0 +25939,34,14,7,0.0 +25939,11,21,23,0.0 +25939,7,30,23,0.0 +25939,35,18,27,0.0 +25939,14,23.25,11,0.0 +25939,45,9.5,15,0.0 +25939,47,9.5,2,0.0 +25939,71,21.5,4,0.0 +25939,8,40,13,0.0 +25939,69,36,49,0.0 +25939,40,18.4,47,0.0 +25939,44,19.45,45,0.0 +25939,64,33.25,33,0.0 +25939,23,9,23,0.0 +25939,20,81,24,0.0 +25939,19,9.2,7,0.0 +25939,28,45.6,28,0.0 +25939,5,21.35,21,0.0 +25939,68,12.5,7,0.0 +25939,72,34.8,34,0.0 +25939,13,6,3,0.0 +25939,15,15.5,20,0.0 +25939,63,43.9,4,0.0 +25939,10,31,42,0.0 +25939,53,32.8,16,0.0 +25939,66,17,43,0.0 +25939,18,62.5,40,0.0 +25940,4,22,13,0.0 +25940,58,13.25,3,0.0 +25940,14,23.25,23,0.0 +25940,32,32,39,0.0 +25940,72,34.8,11,0.0 +25940,64,33.25,31,0.0 +25940,12,38,27,0.0 +25940,51,53,35,0.0 +25940,17,39,12,0.0 +25940,61,28.5,36,0.0 +25940,69,36,46,0.0 +25940,20,81,33,0.0 +25940,46,12,30,0.0 +25940,15,15.5,14,0.0 +25940,44,19.45,24,0.0 +25940,77,13,46,0.0 +25940,56,38,18,0.0 +25940,37,26,49,0.0 +25940,76,18,40,0.0 +25941,4,22,47,0.0 +25941,8,40,37,0.0 +25941,46,12,50,0.0 +25941,69,36,2,0.0 +25941,22,21,3,0.0 +25941,21,10,47,0.0 +25941,76,18,36,0.0 +25941,75,7.75,18,0.0 +25941,16,17.45,22,0.0 +25941,60,34,50,0.0 +25941,36,19,20,0.0 +25941,7,30,1,0.0 +25941,1,18,8,0.0 +25941,23,9,31,0.0 +25941,17,39,42,0.0 +25941,24,4.5,28,0.0 +25941,31,12.5,37,0.0 +25941,47,9.5,39,0.0 +25941,50,16.25,31,0.0 +25941,18,62.5,14,0.0 +25941,15,15.5,2,0.0 +25941,32,32,38,0.0 +25941,71,21.5,21,0.0 +25941,33,2.5,24,0.0 +25941,49,20,4,0.0 +25941,52,7,12,0.0 +25941,9,97,35,0.0 +25941,68,12.5,21,0.0 +25941,66,17,38,0.0 +25941,44,19.45,22,0.0 +25941,58,13.25,12,0.0 +25941,62,49.3,17,0.0 +25941,67,14,21,0.0 +25941,63,43.9,38,0.0 +25941,65,21.05,18,0.0 +25941,25,14,8,0.0 +25941,74,10,42,0.0 +25941,55,24,19,0.0 +25941,28,45.6,9,0.0 +25941,6,25,4,0.0 +25941,19,9.2,6,0.0 +25941,48,12.75,17,0.0 +25942,43,46,32,0.0 +25942,63,43.9,6,0.0 +25942,9,97,12,0.0 +25942,77,13,44,0.0 +25943,52,7,7,0.0 +25943,63,43.9,19,0.0 +25943,72,34.8,3,0.0 +25943,69,36,42,0.0 +25943,19,9.2,23,0.0 +25943,76,18,50,0.0 +25943,6,25,18,0.0 +25943,28,45.6,39,0.0 +25943,17,39,19,0.0 +25943,68,12.5,22,0.0 +25943,30,25.89,3,0.0 +25943,2,19,33,0.0 +25943,12,38,1,0.0 +25943,27,43.9,42,0.0 +25943,15,15.5,49,0.0 +25943,34,14,21,0.0 +25943,66,17,20,0.0 +25943,71,21.5,21,0.0 +25943,4,22,15,0.0 +25943,54,7.45,46,0.0 +25943,29,123.79,3,0.0 +25943,14,23.25,23,0.0 +25943,50,16.25,35,0.0 +25943,3,10,28,0.0 +25943,20,81,19,0.0 +25943,37,26,41,0.0 +25943,44,19.45,18,0.0 +25943,9,97,23,0.0 +25943,73,15,7,0.0 +25943,70,15,27,0.0 +25943,61,28.5,27,0.0 +25943,75,7.75,20,0.0 +25943,21,10,50,0.0 +25943,24,4.5,21,0.0 +25943,58,13.25,39,0.0 +25943,45,9.5,49,0.0 +25943,47,9.5,12,0.0 +25943,8,40,49,0.0 +25943,57,19.5,10,0.0 +25943,5,21.35,25,0.0 +25943,31,12.5,2,0.0 +25943,23,9,16,0.0 +25943,56,38,48,0.0 +25944,45,9.5,18,0.0 +25944,5,21.35,13,0.0 +25944,19,9.2,15,0.0 +25944,24,4.5,26,0.0 +25944,76,18,27,0.0 +25944,28,45.6,37,0.0 +25944,36,19,16,0.0 +25944,42,14,3,0.0 +25944,52,7,38,0.0 +25944,73,15,27,0.0 +25944,75,7.75,28,0.0 +25944,49,20,35,0.0 +25944,72,34.8,28,0.0 +25944,59,55,32,0.0 +25944,21,10,34,0.0 +25944,46,12,14,0.0 +25944,33,2.5,21,0.0 +25944,37,26,33,0.0 +25944,15,15.5,21,0.0 +25944,65,21.05,26,0.0 +25944,27,43.9,37,0.0 +25944,61,28.5,24,0.0 +25944,50,16.25,41,0.0 +25945,18,62.5,39,0.0 +25946,4,22,27,0.0 +25946,61,28.5,43,0.0 +25947,35,18,41,0.0 +25947,22,21,3,0.0 +25947,62,49.3,30,0.0 +25947,38,263.5,45,0.0 +25947,29,123.79,45,0.0 +25947,49,20,1,0.0 +25947,40,18.4,8,0.0 +25947,7,30,50,0.0 +25947,42,14,9,0.0 +25947,37,26,41,0.0 +25947,2,19,47,0.0 +25947,77,13,3,0.0 +25947,30,25.89,47,0.0 +25947,21,10,20,0.0 +25947,45,9.5,11,0.0 +25947,43,46,40,0.0 +25947,67,14,13,0.0 +25947,46,12,1,0.0 +25947,5,21.35,29,0.0 +25947,55,24,26,0.0 +25947,11,21,35,0.0 +25947,10,31,48,0.0 +25947,19,9.2,45,0.0 +25947,17,39,48,0.0 +25947,34,14,10,0.0 +25947,59,55,10,0.0 +25947,36,19,47,0.0 +25947,65,21.05,26,0.0 +25947,76,18,48,0.0 +25947,75,7.75,50,0.0 +25947,24,4.5,12,0.0 +25947,33,2.5,22,0.0 +25947,50,16.25,8,0.0 +25947,71,21.5,25,0.0 +25947,18,62.5,14,0.0 +25947,3,10,8,0.0 +25947,58,13.25,30,0.0 +25947,61,28.5,10,0.0 +25947,69,36,10,0.0 +25947,8,40,27,0.0 +25947,20,81,18,0.0 +25947,31,12.5,23,0.0 +25947,60,34,15,0.0 +25947,74,10,3,0.0 +25947,68,12.5,6,0.0 +25947,1,18,28,0.0 +25947,26,31.23,9,0.0 +25947,64,33.25,40,0.0 +25947,39,18,22,0.0 +25947,72,34.8,13,0.0 +25947,27,43.9,35,0.0 +25947,48,12.75,35,0.0 +25947,73,15,21,0.0 +25947,9,97,5,0.0 +25947,6,25,48,0.0 +25947,4,22,6,0.0 +25947,41,9.65,9,0.0 +25947,28,45.6,14,0.0 +25947,54,7.45,7,0.0 +25947,23,9,17,0.0 +25947,44,19.45,41,0.0 +25947,63,43.9,41,0.0 +25947,32,32,9,0.0 +25947,66,17,17,0.0 +25947,51,53,5,0.0 +25947,16,17.45,17,0.0 +25947,52,7,46,0.0 +25947,57,19.5,26,0.0 +25947,47,9.5,17,0.0 +25948,24,4.5,49,0.0 +25948,32,32,32,0.0 +25948,69,36,14,0.0 +25948,55,24,12,0.0 +25948,36,19,4,0.0 +25948,54,7.45,48,0.0 +25948,33,2.5,45,0.0 +25948,41,9.65,47,0.0 +25948,40,18.4,5,0.0 +25948,64,33.25,30,0.0 +25948,46,12,11,0.0 +25948,62,49.3,26,0.0 +25948,1,18,44,0.0 +25948,51,53,29,0.0 +25948,75,7.75,43,0.0 +25948,65,21.05,32,0.0 +25948,61,28.5,42,0.0 +25948,50,16.25,23,0.0 +25949,64,33.25,39,0.0 +25949,3,10,37,0.0 +25949,68,12.5,35,0.0 +25949,7,30,10,0.0 +25949,59,55,11,0.0 +25949,46,12,4,0.0 +25949,30,25.89,45,0.0 +25949,74,10,17,0.0 +25949,76,18,9,0.0 +25949,15,15.5,31,0.0 +25949,44,19.45,34,0.0 +25949,13,6,30,0.0 +25949,1,18,19,0.0 +25949,69,36,18,0.0 +25949,27,43.9,18,0.0 +25949,37,26,23,0.0 +25949,4,22,40,0.0 +25949,33,2.5,18,0.0 +25949,75,7.75,22,0.0 +25949,9,97,19,0.0 +25949,48,12.75,24,0.0 +25949,40,18.4,4,0.0 +25949,41,9.65,18,0.0 +25949,6,25,35,0.0 +25949,55,24,46,0.0 +25949,17,39,34,0.0 +25949,58,13.25,10,0.0 +25949,67,14,16,0.0 +25949,16,17.45,26,0.0 +25949,73,15,48,0.0 +25949,29,123.79,36,0.0 +25949,52,7,31,0.0 +25949,38,263.5,8,0.0 +25949,12,38,47,0.0 +25949,43,46,34,0.0 +25949,56,38,37,0.0 +25949,72,34.8,4,0.0 +25949,28,45.6,38,0.0 +25949,25,14,45,0.0 +25949,36,19,29,0.0 +25949,65,21.05,6,0.0 +25949,20,81,25,0.0 +25949,19,9.2,2,0.0 +25949,51,53,29,0.0 +25949,21,10,34,0.0 +25949,11,21,6,0.0 +25949,5,21.35,33,0.0 +25949,18,62.5,41,0.0 +25949,22,21,24,0.0 +25949,50,16.25,44,0.0 +25949,57,19.5,6,0.0 +25949,45,9.5,43,0.0 +25949,23,9,50,0.0 +25950,11,21,17,0.0 +25950,47,9.5,47,0.0 +25950,25,14,22,0.0 +25950,21,10,31,0.0 +25950,64,33.25,37,0.0 +25950,56,38,32,0.0 +25950,66,17,13,0.0 +25950,38,263.5,43,0.0 +25950,41,9.65,13,0.0 +25950,51,53,16,0.0 +25950,46,12,46,0.0 +25950,35,18,11,0.0 +25950,61,28.5,39,0.0 +25950,74,10,50,0.0 +25950,28,45.6,47,0.0 +25950,32,32,17,0.0 +25950,52,7,15,0.0 +25950,2,19,23,0.0 +25950,1,18,50,0.0 +25950,49,20,13,0.0 +25950,75,7.75,36,0.0 +25950,55,24,42,0.0 +25950,45,9.5,38,0.0 +25950,59,55,6,0.0 +25950,6,25,20,0.0 +25950,58,13.25,36,0.0 +25950,10,31,41,0.0 +25950,9,97,16,0.0 +25950,12,38,14,0.0 +25950,5,21.35,15,0.0 +25950,65,21.05,24,0.0 +25950,16,17.45,31,0.0 +25950,43,46,45,0.0 +25950,7,30,13,0.0 +25950,60,34,25,0.0 +25950,27,43.9,17,0.0 +25950,20,81,47,0.0 +25950,70,15,34,0.0 +25950,48,12.75,12,0.0 +25950,30,25.89,14,0.0 +25950,19,9.2,25,0.0 +25950,33,2.5,11,0.0 +25950,15,15.5,6,0.0 +25950,69,36,36,0.0 +25950,24,4.5,6,0.0 +25950,72,34.8,46,0.0 +25950,17,39,36,0.0 +25950,8,40,14,0.0 +25950,39,18,10,0.0 +25950,23,9,9,0.0 +25950,18,62.5,36,0.0 +25950,67,14,6,0.0 +25950,76,18,23,0.0 +25950,13,6,42,0.0 +25950,77,13,32,0.0 +25950,3,10,9,0.0 +25950,50,16.25,37,0.0 +25950,57,19.5,23,0.0 +25950,68,12.5,8,0.0 +25950,29,123.79,30,0.0 +25950,73,15,30,0.0 +25950,36,19,5,0.0 +25950,31,12.5,22,0.0 +25950,63,43.9,41,0.0 +25950,44,19.45,8,0.0 +25950,54,7.45,29,0.0 +25950,42,14,4,0.0 +25950,71,21.5,26,0.0 +25950,62,49.3,50,0.0 +25951,32,32,11,0.0 +25951,66,17,4,0.0 +25951,64,33.25,2,0.0 +25951,61,28.5,25,0.0 +25951,33,2.5,31,0.0 +25951,62,49.3,13,0.0 +25951,76,18,21,0.0 +25951,8,40,3,0.0 +25951,14,23.25,33,0.0 +25952,50,16.25,43,0.0 +25952,45,9.5,2,0.0 +25952,17,39,21,0.0 +25952,69,36,44,0.0 +25952,56,38,32,0.0 +25952,18,62.5,39,0.0 +25952,15,15.5,13,0.0 +25952,68,12.5,44,0.0 +25952,77,13,32,0.0 +25952,5,21.35,14,0.0 +25952,13,6,10,0.0 +25952,62,49.3,49,0.0 +25952,22,21,25,0.0 +25952,19,9.2,43,0.0 +25952,74,10,21,0.0 +25952,26,31.23,9,0.0 +25952,8,40,45,0.0 +25952,67,14,1,0.0 +25952,51,53,37,0.0 +25952,23,9,46,0.0 +25952,11,21,22,0.0 +25952,39,18,12,0.0 +25952,40,18.4,34,0.0 +25952,53,32.8,18,0.0 +25952,21,10,3,0.0 +25952,37,26,33,0.0 +25952,66,17,39,0.0 +25952,41,9.65,41,0.0 +25952,1,18,6,0.0 +25952,10,31,32,0.0 +25952,29,123.79,15,0.0 +25952,76,18,41,0.0 +25952,48,12.75,9,0.0 +25952,54,7.45,43,0.0 +25953,49,20,20,0.0 +25953,12,38,41,0.0 +25953,36,19,12,0.0 +25953,25,14,41,0.0 +25953,69,36,50,0.0 +25953,71,21.5,37,0.0 +25953,64,33.25,11,0.0 +25953,5,21.35,41,0.0 +25953,30,25.89,40,0.0 +25953,31,12.5,9,0.0 +25953,74,10,32,0.0 +25953,68,12.5,27,0.0 +25953,57,19.5,41,0.0 +25953,51,53,14,0.0 +25953,1,18,27,0.0 +25953,2,19,29,0.0 +25953,45,9.5,31,0.0 +25953,72,34.8,23,0.0 +25953,8,40,37,0.0 +25953,76,18,33,0.0 +25953,19,9.2,34,0.0 +25953,73,15,24,0.0 +25953,39,18,26,0.0 +25953,26,31.23,13,0.0 +25953,23,9,30,0.0 +25953,59,55,38,0.0 +25953,7,30,41,0.0 +25953,10,31,27,0.0 +25953,24,4.5,23,0.0 +25953,38,263.5,39,0.0 +25953,41,9.65,17,0.0 +25953,32,32,16,0.0 +25953,52,7,31,0.0 +25953,58,13.25,24,0.0 +25953,53,32.8,23,0.0 +25953,34,14,44,0.0 +25953,13,6,15,0.0 +25953,70,15,13,0.0 +25953,44,19.45,10,0.0 +25953,62,49.3,10,0.0 +25953,33,2.5,29,0.0 +25953,27,43.9,16,0.0 +25953,14,23.25,39,0.0 +25953,55,24,16,0.0 +25953,47,9.5,50,0.0 +25953,67,14,4,0.0 +25953,40,18.4,28,0.0 +25953,42,14,42,0.0 +25953,50,16.25,5,0.0 +25953,77,13,46,0.0 +25953,63,43.9,14,0.0 +25953,4,22,19,0.0 +25953,28,45.6,12,0.0 +25954,48,12.75,11,0.0 +25954,60,34,4,0.0 +25954,41,9.65,48,0.0 +25954,7,30,18,0.0 +25954,28,45.6,49,0.0 +25954,52,7,11,0.0 +25954,9,97,2,0.0 +25954,71,21.5,6,0.0 +25954,54,7.45,38,0.0 +25954,18,62.5,21,0.0 +25954,76,18,12,0.0 +25954,62,49.3,43,0.0 +25954,14,23.25,49,0.0 +25954,37,26,12,0.0 +25954,33,2.5,18,0.0 +25954,69,36,17,0.0 +25954,40,18.4,49,0.0 +25954,42,14,27,0.0 +25954,19,9.2,17,0.0 +25954,12,38,2,0.0 +25954,38,263.5,25,0.0 +25954,57,19.5,29,0.0 +25954,72,34.8,37,0.0 +25954,13,6,41,0.0 +25954,3,10,21,0.0 +25954,16,17.45,31,0.0 +25954,4,22,33,0.0 +25954,35,18,37,0.0 +25954,6,25,48,0.0 +25954,15,15.5,14,0.0 +25954,31,12.5,21,0.0 +25954,46,12,46,0.0 +25954,10,31,40,0.0 +25954,51,53,21,0.0 +25954,22,21,4,0.0 +25954,63,43.9,13,0.0 +25954,50,16.25,5,0.0 +25954,1,18,46,0.0 +25954,24,4.5,49,0.0 +25954,74,10,49,0.0 +25954,44,19.45,25,0.0 +25954,45,9.5,47,0.0 +25954,36,19,1,0.0 +25954,64,33.25,18,0.0 +25954,75,7.75,44,0.0 +25954,32,32,37,0.0 +25954,55,24,8,0.0 +25954,68,12.5,42,0.0 +25954,73,15,31,0.0 +25954,61,28.5,33,0.0 +25955,36,19,31,0.0 +25955,51,53,43,0.0 +25955,61,28.5,18,0.0 +25955,28,45.6,26,0.0 +25955,38,263.5,3,0.0 +25955,25,14,42,0.0 +25955,19,9.2,49,0.0 +25955,52,7,47,0.0 +25955,18,62.5,33,0.0 +25955,49,20,48,0.0 +25955,15,15.5,33,0.0 +25955,73,15,30,0.0 +25955,8,40,43,0.0 +25955,30,25.89,50,0.0 +25955,45,9.5,26,0.0 +25955,44,19.45,29,0.0 +25955,11,21,50,0.0 +25955,70,15,4,0.0 +25955,77,13,41,0.0 +25955,67,14,43,0.0 +25955,39,18,29,0.0 +25956,40,18.4,16,0.0 +25956,34,14,13,0.0 +25956,56,38,49,0.0 +25956,12,38,6,0.0 +25956,18,62.5,32,0.0 +25956,2,19,42,0.0 +25956,3,10,45,0.0 +25956,8,40,28,0.0 +25956,69,36,8,0.0 +25956,16,17.45,10,0.0 +25956,65,21.05,41,0.0 +25956,30,25.89,36,0.0 +25956,20,81,25,0.0 +25956,10,31,24,0.0 +25956,33,2.5,37,0.0 +25956,63,43.9,5,0.0 +25956,41,9.65,48,0.0 +25956,58,13.25,26,0.0 +25956,47,9.5,11,0.0 +25956,60,34,47,0.0 +25956,71,21.5,39,0.0 +25956,73,15,18,0.0 +25956,6,25,29,0.0 +25956,7,30,49,0.0 +25956,35,18,16,0.0 +25956,4,22,48,0.0 +25956,43,46,42,0.0 +25956,72,34.8,15,0.0 +25956,61,28.5,16,0.0 +25956,62,49.3,42,0.0 +25956,46,12,28,0.0 +25956,54,7.45,29,0.0 +25956,21,10,7,0.0 +25956,29,123.79,28,0.0 +25956,76,18,14,0.0 +25956,37,26,35,0.0 +25956,23,9,27,0.0 +25956,17,39,40,0.0 +25956,15,15.5,27,0.0 +25956,50,16.25,9,0.0 +25956,26,31.23,25,0.0 +25956,1,18,20,0.0 +25956,49,20,1,0.0 +25956,74,10,46,0.0 +25956,5,21.35,48,0.0 +25956,66,17,10,0.0 +25956,14,23.25,12,0.0 +25956,48,12.75,22,0.0 +25956,45,9.5,39,0.0 +25956,28,45.6,40,0.0 +25956,36,19,7,0.0 +25957,48,12.75,14,0.0 +25957,72,34.8,26,0.0 +25957,2,19,13,0.0 +25957,76,18,34,0.0 +25957,77,13,16,0.0 +25957,59,55,10,0.0 +25957,34,14,15,0.0 +25957,54,7.45,34,0.0 +25957,11,21,48,0.0 +25957,47,9.5,25,0.0 +25957,58,13.25,12,0.0 +25957,1,18,19,0.0 +25957,8,40,4,0.0 +25957,42,14,21,0.0 +25957,53,32.8,2,0.0 +25957,67,14,33,0.0 +25957,43,46,9,0.0 +25957,26,31.23,49,0.0 +25957,49,20,14,0.0 +25957,71,21.5,39,0.0 +25957,12,38,9,0.0 +25957,61,28.5,34,0.0 +25957,44,19.45,38,0.0 +25957,23,9,9,0.0 +25957,14,23.25,33,0.0 +25957,35,18,5,0.0 +25957,63,43.9,44,0.0 +25957,64,33.25,15,0.0 +25957,31,12.5,11,0.0 +25957,30,25.89,35,0.0 +25957,9,97,26,0.0 +25957,27,43.9,11,0.0 +25957,40,18.4,18,0.0 +25957,4,22,31,0.0 +25957,5,21.35,2,0.0 +25957,17,39,40,0.0 +25957,16,17.45,30,0.0 +25957,60,34,11,0.0 +25957,73,15,6,0.0 +25957,51,53,44,0.0 +25957,36,19,16,0.0 +25957,6,25,41,0.0 +25957,57,19.5,1,0.0 +25958,10,31,24,0.0 +25958,76,18,45,0.0 +25958,49,20,22,0.0 +25958,54,7.45,37,0.0 +25958,22,21,17,0.0 +25958,28,45.6,35,0.0 +25958,68,12.5,44,0.0 +25958,48,12.75,6,0.0 +25958,58,13.25,15,0.0 +25958,65,21.05,41,0.0 +25958,7,30,43,0.0 +25958,71,21.5,18,0.0 +25958,21,10,5,0.0 +25958,74,10,44,0.0 +25958,27,43.9,25,0.0 +25958,11,21,48,0.0 +25958,44,19.45,3,0.0 +25958,8,40,4,0.0 +25958,77,13,50,0.0 +25958,34,14,39,0.0 +25959,69,36,31,0.0 +25959,21,10,47,0.0 +25959,72,34.8,40,0.0 +25959,30,25.89,12,0.0 +25959,3,10,21,0.0 +25959,37,26,20,0.0 +25959,57,19.5,30,0.0 +25959,43,46,12,0.0 +25959,36,19,31,0.0 +25959,12,38,28,0.0 +25959,15,15.5,30,0.0 +25959,28,45.6,35,0.0 +25959,67,14,18,0.0 +25959,48,12.75,27,0.0 +25959,39,18,29,0.0 +25959,64,33.25,28,0.0 +25959,38,263.5,6,0.0 +25959,63,43.9,4,0.0 +25959,7,30,38,0.0 +25959,76,18,1,0.0 +25959,70,15,33,0.0 +25959,11,21,18,0.0 +25959,2,19,33,0.0 +25959,50,16.25,10,0.0 +25959,33,2.5,30,0.0 +25959,49,20,44,0.0 +25959,42,14,37,0.0 +25959,1,18,14,0.0 +25959,32,32,31,0.0 +25959,24,4.5,11,0.0 +25959,20,81,37,0.0 +25959,13,6,25,0.0 +25959,40,18.4,28,0.0 +25959,54,7.45,42,0.0 +25959,25,14,3,0.0 +25959,27,43.9,9,0.0 +25959,65,21.05,6,0.0 +25959,51,53,37,0.0 +25959,22,21,19,0.0 +25959,60,34,25,0.0 +25959,29,123.79,24,0.0 +25959,26,31.23,19,0.0 +25959,74,10,50,0.0 +25959,8,40,21,0.0 +25959,47,9.5,18,0.0 +25959,55,24,10,0.0 +25959,23,9,38,0.0 +25959,77,13,33,0.0 +25959,45,9.5,25,0.0 +25959,71,21.5,48,0.0 +25959,35,18,15,0.0 +25959,19,9.2,50,0.0 +25959,66,17,16,0.0 +25959,68,12.5,36,0.0 +25959,44,19.45,41,0.0 +25959,53,32.8,36,0.0 +25959,9,97,5,0.0 +25959,17,39,18,0.0 +25959,59,55,30,0.0 +25959,41,9.65,22,0.0 +25959,5,21.35,11,0.0 +25959,58,13.25,2,0.0 +25959,31,12.5,32,0.0 +25959,62,49.3,16,0.0 +25959,16,17.45,9,0.0 +25959,4,22,27,0.0 +25959,18,62.5,22,0.0 +25959,52,7,16,0.0 +25959,46,12,13,0.0 +25959,75,7.75,7,0.0 +25959,10,31,43,0.0 +25959,73,15,22,0.0 +25959,56,38,16,0.0 +25959,61,28.5,8,0.0 +25959,6,25,30,0.0 +25960,73,15,50,0.0 +25960,11,21,29,0.0 +25960,29,123.79,23,0.0 +25960,68,12.5,31,0.0 +25960,28,45.6,42,0.0 +25960,37,26,50,0.0 +25960,55,24,33,0.0 +25960,76,18,11,0.0 +25960,54,7.45,3,0.0 +25960,6,25,2,0.0 +25960,27,43.9,10,0.0 +25960,61,28.5,39,0.0 +25960,16,17.45,40,0.0 +25960,59,55,26,0.0 +25960,3,10,26,0.0 +25960,72,34.8,24,0.0 +25960,74,10,31,0.0 +25960,40,18.4,17,0.0 +25960,44,19.45,46,0.0 +25960,58,13.25,45,0.0 +25960,10,31,34,0.0 +25960,5,21.35,46,0.0 +25960,43,46,5,0.0 +25960,39,18,33,0.0 +25960,4,22,50,0.0 +25960,12,38,31,0.0 +25960,14,23.25,25,0.0 +25960,63,43.9,35,0.0 +25960,45,9.5,3,0.0 +25960,52,7,2,0.0 +25960,53,32.8,19,0.0 +25960,21,10,30,0.0 +25960,62,49.3,5,0.0 +25960,49,20,27,0.0 +25960,13,6,19,0.0 +25960,60,34,7,0.0 +25960,30,25.89,3,0.0 +25960,41,9.65,44,0.0 +25960,71,21.5,16,0.0 +25960,46,12,38,0.0 +25960,18,62.5,35,0.0 +25960,15,15.5,45,0.0 +25960,9,97,27,0.0 +25960,66,17,42,0.0 +25960,36,19,5,0.0 +25960,57,19.5,14,0.0 +25960,1,18,13,0.0 +25960,56,38,4,0.0 +25960,47,9.5,14,0.0 +25960,22,21,39,0.0 +25960,34,14,41,0.0 +25960,67,14,32,0.0 +25960,69,36,13,0.0 +25960,33,2.5,43,0.0 +25960,42,14,13,0.0 +25960,64,33.25,42,0.0 +25960,31,12.5,18,0.0 +25960,35,18,47,0.0 +25960,7,30,50,0.0 +25960,24,4.5,46,0.0 +25960,19,9.2,8,0.0 +25960,77,13,45,0.0 +25961,73,15,24,0.0 +25961,28,45.6,18,0.0 +25961,75,7.75,43,0.0 +25961,22,21,48,0.0 +25961,16,17.45,26,0.0 +25961,52,7,20,0.0 +25961,26,31.23,27,0.0 +25961,50,16.25,11,0.0 +25961,35,18,6,0.0 +25961,67,14,46,0.0 +25961,72,34.8,40,0.0 +25961,25,14,4,0.0 +25961,18,62.5,1,0.0 +25961,2,19,42,0.0 +25961,15,15.5,43,0.0 +25961,55,24,48,0.0 +25961,76,18,9,0.0 +25961,36,19,41,0.0 +25961,58,13.25,21,0.0 +25961,37,26,39,0.0 +25961,59,55,45,0.0 +25961,14,23.25,24,0.0 +25961,53,32.8,12,0.0 +25961,9,97,25,0.0 +25961,21,10,7,0.0 +25961,24,4.5,1,0.0 +25961,48,12.75,6,0.0 +25961,12,38,39,0.0 +25961,38,263.5,48,0.0 +25961,19,9.2,39,0.0 +25961,69,36,28,0.0 +25961,1,18,27,0.0 +25961,77,13,8,0.0 +25961,7,30,1,0.0 +25961,17,39,25,0.0 +25961,71,21.5,16,0.0 +25961,20,81,35,0.0 +25961,44,19.45,36,0.0 +25961,34,14,25,0.0 +25961,60,34,8,0.0 +25961,41,9.65,27,0.0 +25961,57,19.5,17,0.0 +25961,46,12,33,0.0 +25961,51,53,19,0.0 +25961,10,31,16,0.0 +25961,23,9,21,0.0 +25961,49,20,2,0.0 +25961,74,10,12,0.0 +25961,61,28.5,15,0.0 +25961,3,10,41,0.0 +25961,68,12.5,34,0.0 +25961,65,21.05,1,0.0 +25961,4,22,24,0.0 +25961,5,21.35,12,0.0 +25961,32,32,39,0.0 +25961,45,9.5,11,0.0 +25961,64,33.25,16,0.0 +25961,39,18,38,0.0 +25961,27,43.9,44,0.0 +25961,30,25.89,27,0.0 +25961,11,21,32,0.0 +25961,54,7.45,23,0.0 +25961,63,43.9,14,0.0 +25961,66,17,12,0.0 +25962,15,15.5,39,0.0 +25962,44,19.45,32,0.0 +25963,5,21.35,36,0.0 +25963,77,13,49,0.0 +25963,15,15.5,21,0.0 +25963,55,24,13,0.0 +25963,31,12.5,34,0.0 +25963,24,4.5,33,0.0 +25963,70,15,15,0.0 +25963,49,20,7,0.0 +25963,21,10,8,0.0 +25963,53,32.8,14,0.0 +25963,52,7,29,0.0 +25963,17,39,3,0.0 +25963,43,46,30,0.0 +25963,2,19,27,0.0 +25963,19,9.2,12,0.0 +25963,75,7.75,12,0.0 +25963,48,12.75,13,0.0 +25963,13,6,35,0.0 +25963,69,36,44,0.0 +25963,50,16.25,33,0.0 +25963,39,18,6,0.0 +25963,3,10,23,0.0 +25963,46,12,26,0.0 +25963,18,62.5,18,0.0 +25963,68,12.5,44,0.0 +25963,66,17,31,0.0 +25963,41,9.65,5,0.0 +25963,47,9.5,22,0.0 +25963,11,21,9,0.0 +25963,33,2.5,33,0.0 +25963,67,14,5,0.0 +25963,61,28.5,18,0.0 +25963,6,25,18,0.0 +25963,76,18,38,0.0 +25963,57,19.5,41,0.0 +25963,26,31.23,27,0.0 +25963,1,18,43,0.0 +25963,30,25.89,12,0.0 +25963,34,14,32,0.0 +25963,58,13.25,11,0.0 +25963,73,15,25,0.0 +25963,45,9.5,15,0.0 +25963,59,55,2,0.0 +25963,36,19,42,0.0 +25963,65,21.05,23,0.0 +25963,32,32,12,0.0 +25963,44,19.45,36,0.0 +25963,74,10,50,0.0 +25963,27,43.9,20,0.0 +25963,56,38,9,0.0 +25963,7,30,8,0.0 +25963,51,53,12,0.0 +25963,37,26,29,0.0 +25963,64,33.25,25,0.0 +25964,38,263.5,45,0.0 +25964,51,53,10,0.0 +25964,59,55,16,0.0 +25964,41,9.65,33,0.0 +25964,52,7,9,0.0 +25964,54,7.45,37,0.0 +25964,48,12.75,4,0.0 +25964,77,13,12,0.0 +25964,36,19,41,0.0 +25964,14,23.25,24,0.0 +25964,34,14,49,0.0 +25964,7,30,31,0.0 +25964,31,12.5,21,0.0 +25964,47,9.5,29,0.0 +25964,22,21,5,0.0 +25964,53,32.8,10,0.0 +25964,44,19.45,22,0.0 +25964,17,39,46,0.0 +25964,35,18,44,0.0 +25964,29,123.79,28,0.0 +25964,62,49.3,42,0.0 +25964,3,10,47,0.0 +25964,15,15.5,40,0.0 +25964,28,45.6,40,0.0 +25964,27,43.9,28,0.0 +25964,40,18.4,33,0.0 +25964,5,21.35,50,0.0 +25964,67,14,22,0.0 +25964,24,4.5,30,0.0 +25964,26,31.23,31,0.0 +25964,13,6,50,0.0 +25964,60,34,38,0.0 +25964,33,2.5,35,0.0 +25964,65,21.05,36,0.0 +25964,75,7.75,48,0.0 +25964,18,62.5,49,0.0 +25964,50,16.25,36,0.0 +25964,76,18,22,0.0 +25964,71,21.5,47,0.0 +25964,39,18,37,0.0 +25964,56,38,1,0.0 +25964,66,17,46,0.0 +25964,20,81,39,0.0 +25964,6,25,39,0.0 +25964,10,31,30,0.0 +25964,30,25.89,48,0.0 +25964,2,19,1,0.0 +25964,19,9.2,5,0.0 +25964,37,26,8,0.0 +25964,9,97,18,0.0 +25964,57,19.5,9,0.0 +25964,11,21,1,0.0 +25964,68,12.5,19,0.0 +25964,16,17.45,6,0.0 +25964,74,10,18,0.0 +25964,23,9,7,0.0 +25964,49,20,24,0.0 +25964,42,14,48,0.0 +25964,8,40,44,0.0 +25964,72,34.8,31,0.0 +25964,61,28.5,16,0.0 +25964,63,43.9,38,0.0 +25964,64,33.25,8,0.0 +25964,1,18,15,0.0 +25964,46,12,18,0.0 +25964,73,15,30,0.0 +25964,45,9.5,36,0.0 +25964,58,13.25,42,0.0 +25964,43,46,2,0.0 +25965,77,13,8,0.0 +25965,73,15,26,0.0 +25965,30,25.89,10,0.0 +25965,31,12.5,9,0.0 +25965,15,15.5,20,0.0 +25965,49,20,27,0.0 +25965,68,12.5,15,0.0 +25965,47,9.5,15,0.0 +25965,9,97,37,0.0 +25965,12,38,16,0.0 +25965,35,18,6,0.0 +25965,50,16.25,11,0.0 +25965,25,14,7,0.0 +25965,55,24,18,0.0 +25966,23,9,27,0.0 +25966,70,15,16,0.0 +25966,29,123.79,42,0.0 +25966,20,81,50,0.0 +25966,59,55,32,0.0 +25966,15,15.5,36,0.0 +25967,19,9.2,4,0.0 +25967,51,53,31,0.0 +25967,77,13,43,0.0 +25967,55,24,43,0.0 +25967,66,17,43,0.0 +25967,1,18,17,0.0 +25967,23,9,11,0.0 +25967,65,21.05,50,0.0 +25967,5,21.35,16,0.0 +25967,71,21.5,21,0.0 +25967,4,22,12,0.0 +25967,32,32,19,0.0 +25967,56,38,38,0.0 +25967,30,25.89,50,0.0 +25967,2,19,37,0.0 +25967,3,10,14,0.0 +25967,24,4.5,46,0.0 +25967,12,38,3,0.0 +25967,43,46,18,0.0 +25967,31,12.5,8,0.0 +25967,57,19.5,30,0.0 +25968,42,14,12,0.0 +25968,46,12,39,0.0 +25968,1,18,14,0.0 +25968,58,13.25,11,0.0 +25968,6,25,5,0.0 +25968,36,19,45,0.0 +25968,77,13,43,0.0 +25968,12,38,42,0.0 +25968,2,19,21,0.0 +25968,51,53,49,0.0 +25968,5,21.35,42,0.0 +25968,20,81,23,0.0 +25968,43,46,27,0.0 +25968,49,20,27,0.0 +25968,17,39,38,0.0 +25968,23,9,6,0.0 +25968,66,17,35,0.0 +25968,10,31,37,0.0 +25968,57,19.5,40,0.0 +25968,18,62.5,43,0.0 +25968,56,38,40,0.0 +25968,31,12.5,33,0.0 +25968,11,21,45,0.0 +25968,39,18,5,0.0 +25968,54,7.45,32,0.0 +25968,13,6,39,0.0 +25968,60,34,34,0.0 +25968,61,28.5,1,0.0 +25968,44,19.45,18,0.0 +25968,28,45.6,10,0.0 +25968,74,10,49,0.0 +25968,19,9.2,23,0.0 +25968,25,14,33,0.0 +25968,35,18,28,0.0 +25968,75,7.75,44,0.0 +25968,45,9.5,17,0.0 +25968,3,10,41,0.0 +25968,38,263.5,9,0.0 +25968,40,18.4,30,0.0 +25968,68,12.5,1,0.0 +25968,8,40,30,0.0 +25968,71,21.5,43,0.0 +25968,50,16.25,37,0.0 +25968,15,15.5,13,0.0 +25968,4,22,11,0.0 +25968,21,10,33,0.0 +25968,62,49.3,36,0.0 +25968,63,43.9,31,0.0 +25968,52,7,49,0.0 +25968,30,25.89,27,0.0 +25968,53,32.8,28,0.0 +25968,16,17.45,8,0.0 +25968,32,32,24,0.0 +25968,27,43.9,21,0.0 +25968,37,26,8,0.0 +25968,73,15,34,0.0 +25968,69,36,3,0.0 +25968,9,97,22,0.0 +25968,34,14,37,0.0 +25968,55,24,26,0.0 +25968,47,9.5,43,0.0 +25969,76,18,17,0.0 +25969,24,4.5,17,0.0 +25969,19,9.2,11,0.0 +25969,33,2.5,32,0.0 +25969,30,25.89,30,0.0 +25969,25,14,19,0.0 +25969,50,16.25,20,0.0 +25969,9,97,13,0.0 +25969,64,33.25,33,0.0 +25969,4,22,36,0.0 +25969,1,18,1,0.0 +25970,8,40,33,0.0 +25970,5,21.35,24,0.0 +25970,66,17,49,0.0 +25970,54,7.45,45,0.0 +25970,52,7,20,0.0 +25970,41,9.65,23,0.0 +25970,30,25.89,30,0.0 +25970,16,17.45,44,0.0 +25970,58,13.25,8,0.0 +25970,39,18,43,0.0 +25970,60,34,49,0.0 +25970,48,12.75,29,0.0 +25970,71,21.5,32,0.0 +25970,75,7.75,15,0.0 +25970,22,21,20,0.0 +25970,72,34.8,41,0.0 +25970,67,14,42,0.0 +25970,29,123.79,46,0.0 +25970,7,30,49,0.0 +25970,50,16.25,23,0.0 +25970,17,39,22,0.0 +25970,12,38,41,0.0 +25970,31,12.5,26,0.0 +25970,74,10,42,0.0 +25970,25,14,49,0.0 +25970,2,19,36,0.0 +25970,42,14,10,0.0 +25970,23,9,25,0.0 +25970,44,19.45,41,0.0 +25970,21,10,9,0.0 +25970,47,9.5,1,0.0 +25970,27,43.9,5,0.0 +25970,57,19.5,16,0.0 +25970,10,31,13,0.0 +25970,14,23.25,16,0.0 +25970,24,4.5,32,0.0 +25970,76,18,16,0.0 +25970,61,28.5,30,0.0 +25970,28,45.6,23,0.0 +25970,3,10,41,0.0 +25970,18,62.5,33,0.0 +25970,19,9.2,29,0.0 +25970,6,25,19,0.0 +25970,53,32.8,10,0.0 +25970,70,15,43,0.0 +25970,55,24,38,0.0 +25970,69,36,39,0.0 +25970,11,21,2,0.0 +25970,4,22,14,0.0 +25970,65,21.05,14,0.0 +25971,39,18,4,0.0 +25971,47,9.5,40,0.0 +25971,20,81,35,0.0 +25971,69,36,35,0.0 +25971,67,14,12,0.0 +25971,58,13.25,21,0.0 +25971,34,14,32,0.0 +25971,6,25,20,0.0 +25971,55,24,23,0.0 +25971,11,21,23,0.0 +25971,45,9.5,26,0.0 +25971,52,7,11,0.0 +25971,33,2.5,25,0.0 +25971,74,10,22,0.0 +25971,61,28.5,25,0.0 +25971,28,45.6,5,0.0 +25971,75,7.75,8,0.0 +25971,31,12.5,18,0.0 +25971,64,33.25,50,0.0 +25971,26,31.23,39,0.0 +25971,50,16.25,36,0.0 +25971,40,18.4,33,0.0 +25971,4,22,25,0.0 +25971,51,53,23,0.0 +25971,38,263.5,29,0.0 +25971,15,15.5,11,0.0 +25971,7,30,35,0.0 +25971,37,26,26,0.0 +25971,56,38,15,0.0 +25971,16,17.45,50,0.0 +25971,2,19,27,0.0 +25971,62,49.3,3,0.0 +25971,5,21.35,37,0.0 +25971,53,32.8,46,0.0 +25971,44,19.45,9,0.0 +25971,12,38,1,0.0 +25971,72,34.8,15,0.0 +25971,3,10,8,0.0 +25971,77,13,14,0.0 +25971,35,18,49,0.0 +25971,48,12.75,28,0.0 +25971,17,39,22,0.0 +25971,63,43.9,28,0.0 +25971,23,9,29,0.0 +25971,42,14,8,0.0 +25971,65,21.05,25,0.0 +25971,73,15,5,0.0 +25971,60,34,11,0.0 +25971,13,6,29,0.0 +25971,59,55,40,0.0 +25971,54,7.45,17,0.0 +25971,25,14,46,0.0 +25971,21,10,33,0.0 +25971,10,31,42,0.0 +25971,19,9.2,29,0.0 +25971,71,21.5,49,0.0 +25971,76,18,43,0.0 +25971,14,23.25,16,0.0 +25971,70,15,45,0.0 +25971,46,12,2,0.0 +25971,8,40,19,0.0 +25972,21,10,31,0.0 +25972,41,9.65,50,0.0 +25972,51,53,12,0.0 +25972,68,12.5,33,0.0 +25972,76,18,8,0.0 +25972,14,23.25,2,0.0 +25972,73,15,7,0.0 +25972,26,31.23,7,0.0 +25972,15,15.5,48,0.0 +25972,30,25.89,35,0.0 +25972,11,21,10,0.0 +25972,47,9.5,29,0.0 +25972,45,9.5,13,0.0 +25973,7,30,12,0.0 +25973,5,21.35,21,0.0 +25973,10,31,26,0.0 +25973,62,49.3,16,0.0 +25973,55,24,11,0.0 +25973,19,9.2,47,0.0 +25973,31,12.5,39,0.0 +25973,22,21,29,0.0 +25973,39,18,17,0.0 +25973,72,34.8,41,0.0 +25973,43,46,11,0.0 +25973,36,19,18,0.0 +25973,28,45.6,39,0.0 +25973,61,28.5,39,0.0 +25973,14,23.25,48,0.0 +25973,13,6,42,0.0 +25973,18,62.5,32,0.0 +25973,29,123.79,26,0.0 +25973,24,4.5,40,0.0 +25974,59,55,9,0.0 +25974,42,14,13,0.0 +25974,34,14,25,0.0 +25974,32,32,34,0.0 +25974,69,36,22,0.0 +25974,47,9.5,32,0.0 +25974,8,40,44,0.0 +25974,6,25,7,0.0 +25974,27,43.9,44,0.0 +25974,31,12.5,5,0.0 +25974,45,9.5,16,0.0 +25974,12,38,27,0.0 +25974,2,19,49,0.0 +25974,56,38,43,0.0 +25974,41,9.65,49,0.0 +25974,70,15,12,0.0 +25974,38,263.5,23,0.0 +25974,65,21.05,39,0.0 +25974,24,4.5,46,0.0 +25974,18,62.5,40,0.0 +25974,15,15.5,20,0.0 +25974,75,7.75,2,0.0 +25974,49,20,11,0.0 +25974,77,13,16,0.0 +25974,7,30,48,0.0 +25974,36,19,49,0.0 +25974,50,16.25,34,0.0 +25974,20,81,22,0.0 +25974,1,18,6,0.0 +25974,62,49.3,16,0.0 +25974,76,18,4,0.0 +25974,10,31,21,0.0 +25974,53,32.8,45,0.0 +25974,39,18,19,0.0 +25974,71,21.5,23,0.0 +25974,67,14,50,0.0 +25975,35,18,27,0.0 +25975,2,19,3,0.0 +25975,74,10,31,0.0 +25975,62,49.3,46,0.0 +25975,32,32,37,0.0 +25975,75,7.75,28,0.0 +25975,15,15.5,28,0.0 +25975,7,30,13,0.0 +25975,5,21.35,42,0.0 +25975,63,43.9,10,0.0 +25975,56,38,9,0.0 +25975,71,21.5,34,0.0 +25975,44,19.45,12,0.0 +25975,13,6,37,0.0 +25975,18,62.5,48,0.0 +25975,37,26,10,0.0 +25975,66,17,49,0.0 +25975,67,14,20,0.0 +25975,65,21.05,42,0.0 +25975,52,7,31,0.0 +25975,33,2.5,32,0.0 +25975,31,12.5,11,0.0 +25975,54,7.45,12,0.0 +25975,50,16.25,29,0.0 +25975,14,23.25,20,0.0 +25975,27,43.9,32,0.0 +25975,68,12.5,48,0.0 +25975,40,18.4,14,0.0 +25975,19,9.2,41,0.0 +25975,23,9,43,0.0 +25975,49,20,46,0.0 +25975,3,10,25,0.0 +25975,8,40,47,0.0 +25975,47,9.5,28,0.0 +25975,28,45.6,37,0.0 +25975,6,25,43,0.0 +25975,20,81,49,0.0 +25975,26,31.23,43,0.0 +25975,25,14,41,0.0 +25975,42,14,16,0.0 +25975,38,263.5,8,0.0 +25975,11,21,15,0.0 +25975,73,15,22,0.0 +25975,46,12,9,0.0 +25975,58,13.25,6,0.0 +25975,10,31,1,0.0 +25975,30,25.89,43,0.0 +25975,72,34.8,13,0.0 +25975,64,33.25,18,0.0 +25975,61,28.5,28,0.0 +25975,21,10,2,0.0 +25975,22,21,17,0.0 +25975,45,9.5,1,0.0 +25975,1,18,31,0.0 +25975,59,55,5,0.0 +25975,69,36,25,0.0 +25975,9,97,14,0.0 +25975,24,4.5,41,0.0 +25975,76,18,1,0.0 +25975,34,14,9,0.0 +25975,39,18,1,0.0 +25975,16,17.45,48,0.0 +25975,51,53,45,0.0 +25975,17,39,3,0.0 +25975,36,19,25,0.0 +25976,17,39,8,0.0 +25976,12,38,15,0.0 +25976,54,7.45,42,0.0 +25976,65,21.05,12,0.0 +25976,48,12.75,13,0.0 +25976,43,46,13,0.0 +25976,56,38,48,0.0 +25976,47,9.5,37,0.0 +25976,74,10,12,0.0 +25976,68,12.5,22,0.0 +25976,32,32,20,0.0 +25976,27,43.9,32,0.0 +25976,52,7,10,0.0 +25976,16,17.45,3,0.0 +25976,51,53,31,0.0 +25976,46,12,48,0.0 +25976,69,36,25,0.0 +25976,55,24,22,0.0 +25976,71,21.5,42,0.0 +25976,70,15,2,0.0 +25976,38,263.5,50,0.0 +25976,22,21,34,0.0 +25976,77,13,46,0.0 +25976,23,9,15,0.0 +25976,18,62.5,14,0.0 +25976,64,33.25,35,0.0 +25976,37,26,27,0.0 +25976,53,32.8,17,0.0 +25976,63,43.9,48,0.0 +25976,30,25.89,35,0.0 +25976,39,18,20,0.0 +25976,2,19,12,0.0 +25976,76,18,14,0.0 +25976,29,123.79,42,0.0 +25976,3,10,8,0.0 +25976,73,15,48,0.0 +25976,21,10,16,0.0 +25976,34,14,40,0.0 +25976,58,13.25,14,0.0 +25976,26,31.23,38,0.0 +25976,4,22,43,0.0 +25976,66,17,34,0.0 +25976,6,25,19,0.0 +25976,67,14,27,0.0 +25976,7,30,40,0.0 +25976,59,55,35,0.0 +25976,57,19.5,17,0.0 +25976,40,18.4,14,0.0 +25976,72,34.8,28,0.0 +25976,36,19,43,0.0 +25976,44,19.45,50,0.0 +25976,61,28.5,31,0.0 +25976,25,14,21,0.0 +25976,75,7.75,6,0.0 +25976,1,18,19,0.0 +25976,42,14,14,0.0 +25976,24,4.5,35,0.0 +25976,31,12.5,3,0.0 +25976,41,9.65,6,0.0 +25976,60,34,48,0.0 +25976,49,20,5,0.0 +25976,62,49.3,15,0.0 +25976,50,16.25,33,0.0 +25976,33,2.5,48,0.0 +25976,5,21.35,27,0.0 +25976,11,21,2,0.0 +25976,28,45.6,37,0.0 +25976,45,9.5,25,0.0 +25976,14,23.25,14,0.0 +25976,35,18,16,0.0 +25976,19,9.2,37,0.0 +25976,15,15.5,23,0.0 +25976,9,97,18,0.0 +25976,20,81,14,0.0 +25976,8,40,14,0.0 +25977,64,33.25,8,0.0 +25977,70,15,18,0.0 +25977,15,15.5,31,0.0 +25977,38,263.5,38,0.0 +25977,43,46,41,0.0 +25977,36,19,23,0.0 +25977,9,97,21,0.0 +25977,17,39,42,0.0 +25977,40,18.4,47,0.0 +25977,21,10,11,0.0 +25977,39,18,42,0.0 +25977,29,123.79,6,0.0 +25977,47,9.5,13,0.0 +25977,63,43.9,20,0.0 +25977,67,14,1,0.0 +25978,14,23.25,32,0.0 +25978,49,20,33,0.0 +25978,10,31,26,0.0 +25978,58,13.25,36,0.0 +25978,8,40,47,0.0 +25978,67,14,38,0.0 +25978,62,49.3,10,0.0 +25978,72,34.8,2,0.0 +25978,20,81,35,0.0 +25978,39,18,32,0.0 +25978,70,15,38,0.0 +25978,76,18,39,0.0 +25978,11,21,4,0.0 +25978,44,19.45,2,0.0 +25978,53,32.8,43,0.0 +25978,12,38,42,0.0 +25978,7,30,37,0.0 +25978,23,9,34,0.0 +25978,59,55,41,0.0 +25978,2,19,32,0.0 +25978,60,34,29,0.0 +25978,9,97,23,0.0 +25978,35,18,18,0.0 +25978,52,7,15,0.0 +25978,19,9.2,30,0.0 +25978,64,33.25,23,0.0 +25978,41,9.65,23,0.0 +25978,4,22,33,0.0 +25978,6,25,39,0.0 +25978,3,10,9,0.0 +25978,69,36,20,0.0 +25979,23,9,47,0.0 +25979,18,62.5,13,0.0 +25979,71,21.5,23,0.0 +25979,22,21,36,0.0 +25979,50,16.25,28,0.0 +25979,41,9.65,8,0.0 +25979,40,18.4,46,0.0 +25979,20,81,10,0.0 +25979,37,26,39,0.0 +25979,7,30,3,0.0 +25979,36,19,41,0.0 +25979,28,45.6,17,0.0 +25979,34,14,17,0.0 +25979,11,21,2,0.0 +25979,57,19.5,13,0.0 +25979,26,31.23,9,0.0 +25979,44,19.45,30,0.0 +25979,6,25,12,0.0 +25979,5,21.35,46,0.0 +25979,16,17.45,23,0.0 +25979,52,7,5,0.0 +25979,35,18,33,0.0 +25979,59,55,26,0.0 +25979,67,14,21,0.0 +25979,29,123.79,41,0.0 +25979,54,7.45,4,0.0 +25979,1,18,3,0.0 +25979,30,25.89,34,0.0 +25979,39,18,14,0.0 +25979,66,17,48,0.0 +25979,70,15,2,0.0 +25979,60,34,42,0.0 +25979,31,12.5,10,0.0 +25979,51,53,12,0.0 +25979,33,2.5,28,0.0 +25979,77,13,2,0.0 +25979,21,10,18,0.0 +25979,14,23.25,23,0.0 +25979,55,24,23,0.0 +25980,12,38,22,0.0 +25980,56,38,6,0.0 +25980,59,55,1,0.0 +25980,11,21,39,0.0 +25980,10,31,30,0.0 +25980,33,2.5,2,0.0 +25980,48,12.75,14,0.0 +25980,6,25,31,0.0 +25980,50,16.25,13,0.0 +25980,61,28.5,41,0.0 +25980,64,33.25,29,0.0 +25980,3,10,43,0.0 +25980,54,7.45,19,0.0 +25980,62,49.3,44,0.0 +25980,18,62.5,29,0.0 +25980,25,14,39,0.0 +25980,38,263.5,44,0.0 +25980,7,30,4,0.0 +25980,49,20,47,0.0 +25980,20,81,4,0.0 +25980,46,12,3,0.0 +25980,51,53,35,0.0 +25980,57,19.5,50,0.0 +25980,43,46,22,0.0 +25980,23,9,41,0.0 +25980,5,21.35,10,0.0 +25980,39,18,19,0.0 +25980,29,123.79,46,0.0 +25980,8,40,50,0.0 +25980,9,97,48,0.0 +25980,60,34,4,0.0 +25980,58,13.25,13,0.0 +25980,41,9.65,15,0.0 +25980,28,45.6,41,0.0 +25980,70,15,34,0.0 +25980,63,43.9,4,0.0 +25980,4,22,20,0.0 +25980,2,19,10,0.0 +25980,27,43.9,27,0.0 +25980,74,10,43,0.0 +25980,66,17,49,0.0 +25980,14,23.25,14,0.0 +25980,31,12.5,30,0.0 +25980,24,4.5,29,0.0 +25980,47,9.5,6,0.0 +25980,53,32.8,28,0.0 +25980,52,7,26,0.0 +25980,40,18.4,25,0.0 +25980,75,7.75,33,0.0 +25980,67,14,44,0.0 +25980,26,31.23,18,0.0 +25980,73,15,37,0.0 +25980,21,10,5,0.0 +25980,42,14,2,0.0 +25980,35,18,6,0.0 +25980,36,19,1,0.0 +25980,19,9.2,34,0.0 +25980,68,12.5,26,0.0 +25980,13,6,11,0.0 +25980,30,25.89,14,0.0 +25980,1,18,34,0.0 +25980,65,21.05,37,0.0 +25980,17,39,38,0.0 +25980,34,14,20,0.0 +25980,45,9.5,27,0.0 +25980,71,21.5,44,0.0 +25980,16,17.45,35,0.0 +25980,44,19.45,4,0.0 +25980,77,13,14,0.0 +25980,15,15.5,13,0.0 +25980,55,24,16,0.0 +25980,76,18,34,0.0 +25980,72,34.8,30,0.0 +25980,22,21,16,0.0 +25980,37,26,13,0.0 +25980,32,32,48,0.0 +25981,35,18,10,0.0 +25981,47,9.5,32,0.0 +25981,62,49.3,2,0.0 +25981,17,39,37,0.0 +25981,49,20,15,0.0 +25981,52,7,35,0.0 +25981,10,31,34,0.0 +25981,25,14,5,0.0 +25981,31,12.5,16,0.0 +25981,54,7.45,6,0.0 +25981,11,21,21,0.0 +25981,51,53,15,0.0 +25981,45,9.5,43,0.0 +25981,41,9.65,28,0.0 +25981,32,32,49,0.0 +25981,42,14,23,0.0 +25981,70,15,26,0.0 +25981,56,38,38,0.0 +25981,72,34.8,4,0.0 +25981,29,123.79,35,0.0 +25981,69,36,23,0.0 +25981,46,12,16,0.0 +25981,71,21.5,47,0.0 +25981,1,18,17,0.0 +25981,55,24,34,0.0 +25981,2,19,13,0.0 +25981,36,19,25,0.0 +25981,33,2.5,50,0.0 +25981,23,9,36,0.0 +25981,37,26,40,0.0 +25982,39,18,12,0.0 +25982,50,16.25,33,0.0 +25982,26,31.23,33,0.0 +25982,75,7.75,5,0.0 +25982,61,28.5,12,0.0 +25982,35,18,21,0.0 +25982,45,9.5,34,0.0 +25982,53,32.8,26,0.0 +25982,38,263.5,28,0.0 +25982,19,9.2,19,0.0 +25982,40,18.4,12,0.0 +25982,49,20,27,0.0 +25982,36,19,13,0.0 +25982,9,97,40,0.0 +25982,11,21,43,0.0 +25982,72,34.8,45,0.0 +25982,31,12.5,13,0.0 +25982,55,24,34,0.0 +25982,4,22,21,0.0 +25982,60,34,33,0.0 +25982,52,7,41,0.0 +25982,15,15.5,33,0.0 +25982,51,53,16,0.0 +25982,76,18,45,0.0 +25982,57,19.5,37,0.0 +25982,22,21,45,0.0 +25982,44,19.45,16,0.0 +25982,69,36,45,0.0 +25982,8,40,28,0.0 +25982,63,43.9,19,0.0 +25982,58,13.25,42,0.0 +25982,5,21.35,38,0.0 +25982,66,17,35,0.0 +25982,43,46,18,0.0 +25982,56,38,11,0.0 +25982,64,33.25,31,0.0 +25982,47,9.5,2,0.0 +25982,23,9,11,0.0 +25982,6,25,49,0.0 +25982,3,10,20,0.0 +25982,27,43.9,23,0.0 +25982,12,38,19,0.0 +25982,13,6,49,0.0 +25982,29,123.79,42,0.0 +25982,54,7.45,16,0.0 +25983,49,20,11,0.0 +25983,75,7.75,40,0.0 +25983,9,97,40,0.0 +25983,77,13,26,0.0 +25983,67,14,9,0.0 +25983,55,24,6,0.0 +25983,20,81,25,0.0 +25983,5,21.35,19,0.0 +25983,15,15.5,12,0.0 +25983,4,22,16,0.0 +25983,43,46,28,0.0 +25983,73,15,21,0.0 +25983,31,12.5,29,0.0 +25983,59,55,28,0.0 +25984,66,17,46,0.0 +25984,49,20,27,0.0 +25984,3,10,48,0.0 +25984,74,10,42,0.0 +25984,17,39,36,0.0 +25984,1,18,27,0.0 +25984,14,23.25,37,0.0 +25984,18,62.5,8,0.0 +25984,62,49.3,22,0.0 +25984,46,12,8,0.0 +25984,6,25,2,0.0 +25984,59,55,41,0.0 +25984,25,14,28,0.0 +25984,60,34,13,0.0 +25984,10,31,30,0.0 +25984,68,12.5,4,0.0 +25984,51,53,20,0.0 +25984,65,21.05,47,0.0 +25984,16,17.45,49,0.0 +25984,29,123.79,41,0.0 +25984,64,33.25,31,0.0 +25984,11,21,22,0.0 +25984,72,34.8,3,0.0 +25984,54,7.45,47,0.0 +25984,48,12.75,38,0.0 +25984,34,14,10,0.0 +25984,76,18,11,0.0 +25984,42,14,30,0.0 +25984,44,19.45,48,0.0 +25984,45,9.5,11,0.0 +25984,67,14,2,0.0 +25984,27,43.9,28,0.0 +25984,32,32,28,0.0 +25984,43,46,32,0.0 +25984,21,10,9,0.0 +25984,8,40,1,0.0 +25984,24,4.5,4,0.0 +25984,12,38,39,0.0 +25984,53,32.8,11,0.0 +25984,2,19,34,0.0 +25984,73,15,10,0.0 +25984,35,18,14,0.0 +25984,37,26,49,0.0 +25984,58,13.25,3,0.0 +25984,57,19.5,31,0.0 +25984,75,7.75,25,0.0 +25984,55,24,1,0.0 +25984,70,15,31,0.0 +25984,13,6,19,0.0 +25984,47,9.5,31,0.0 +25984,52,7,5,0.0 +25984,30,25.89,16,0.0 +25984,19,9.2,8,0.0 +25984,33,2.5,5,0.0 +25984,41,9.65,27,0.0 +25984,5,21.35,24,0.0 +25984,63,43.9,9,0.0 +25984,23,9,32,0.0 +25984,71,21.5,40,0.0 +25984,4,22,15,0.0 +25984,22,21,38,0.0 +25984,69,36,25,0.0 +25984,39,18,23,0.0 +25984,77,13,14,0.0 +25984,38,263.5,9,0.0 +25984,56,38,43,0.0 +25984,15,15.5,50,0.0 +25985,22,21,31,0.0 +25985,42,14,50,0.0 +25985,17,39,9,0.0 +25985,32,32,38,0.0 +25985,74,10,17,0.0 +25985,59,55,26,0.0 +25985,41,9.65,45,0.0 +25985,52,7,38,0.0 +25985,8,40,15,0.0 +25985,50,16.25,12,0.0 +25985,55,24,39,0.0 +25985,5,21.35,36,0.0 +25985,40,18.4,18,0.0 +25985,3,10,2,0.0 +25985,63,43.9,34,0.0 +25985,29,123.79,20,0.0 +25985,37,26,21,0.0 +25985,19,9.2,37,0.0 +25985,48,12.75,1,0.0 +25985,30,25.89,26,0.0 +25985,77,13,22,0.0 +25985,16,17.45,18,0.0 +25985,34,14,3,0.0 +25985,24,4.5,30,0.0 +25985,72,34.8,25,0.0 +25985,70,15,36,0.0 +25985,36,19,45,0.0 +25985,28,45.6,35,0.0 +25985,57,19.5,33,0.0 +25985,7,30,5,0.0 +25985,69,36,40,0.0 +25985,20,81,34,0.0 +25985,6,25,41,0.0 +25985,75,7.75,33,0.0 +25985,61,28.5,47,0.0 +25985,11,21,15,0.0 +25985,58,13.25,37,0.0 +25985,62,49.3,37,0.0 +25985,35,18,47,0.0 +25985,45,9.5,33,0.0 +25985,43,46,49,0.0 +25985,46,12,45,0.0 +25985,38,263.5,27,0.0 +25985,26,31.23,3,0.0 +25985,53,32.8,43,0.0 +25985,54,7.45,9,0.0 +25985,27,43.9,10,0.0 +25985,31,12.5,6,0.0 +25985,56,38,24,0.0 +25985,2,19,19,0.0 +25985,60,34,5,0.0 +25985,76,18,22,0.0 +25985,21,10,43,0.0 +25985,51,53,50,0.0 +25985,23,9,39,0.0 +25985,12,38,19,0.0 +25985,49,20,3,0.0 +25985,64,33.25,9,0.0 +25985,14,23.25,14,0.0 +25985,25,14,24,0.0 +25986,42,14,50,0.0 +25986,54,7.45,1,0.0 +25986,6,25,6,0.0 +25986,2,19,5,0.0 +25986,49,20,2,0.0 +25986,24,4.5,44,0.0 +25986,53,32.8,20,0.0 +25986,12,38,46,0.0 +25986,13,6,33,0.0 +25986,75,7.75,35,0.0 +25986,50,16.25,3,0.0 +25986,17,39,21,0.0 +25986,22,21,24,0.0 +25986,19,9.2,21,0.0 +25986,57,19.5,30,0.0 +25986,74,10,6,0.0 +25987,3,10,32,0.0 +25987,49,20,9,0.0 +25987,69,36,49,0.0 +25987,48,12.75,13,0.0 +25987,23,9,38,0.0 +25987,27,43.9,19,0.0 +25987,26,31.23,43,0.0 +25987,74,10,12,0.0 +25987,53,32.8,38,0.0 +25987,9,97,19,0.0 +25987,16,17.45,35,0.0 +25987,77,13,23,0.0 +25987,29,123.79,14,0.0 +25987,25,14,50,0.0 +25987,45,9.5,10,0.0 +25987,65,21.05,26,0.0 +25987,52,7,16,0.0 +25987,36,19,27,0.0 +25987,31,12.5,6,0.0 +25987,5,21.35,25,0.0 +25987,10,31,42,0.0 +25987,64,33.25,3,0.0 +25987,66,17,37,0.0 +25987,56,38,47,0.0 +25987,37,26,43,0.0 +25987,28,45.6,26,0.0 +25987,60,34,31,0.0 +25987,22,21,30,0.0 +25987,32,32,11,0.0 +25987,21,10,23,0.0 +25987,71,21.5,29,0.0 +25987,20,81,14,0.0 +25987,18,62.5,22,0.0 +25987,44,19.45,21,0.0 +25987,35,18,50,0.0 +25987,1,18,18,0.0 +25987,75,7.75,19,0.0 +25987,43,46,3,0.0 +25987,6,25,18,0.0 +25987,59,55,10,0.0 +25987,30,25.89,30,0.0 +25987,47,9.5,24,0.0 +25987,17,39,18,0.0 +25987,11,21,21,0.0 +25987,67,14,43,0.0 +25987,62,49.3,32,0.0 +25988,5,21.35,12,0.0 +25988,74,10,27,0.0 +25988,29,123.79,47,0.0 +25988,7,30,37,0.0 +25988,46,12,5,0.0 +25988,6,25,19,0.0 +25988,58,13.25,12,0.0 +25988,32,32,11,0.0 +25988,12,38,21,0.0 +25988,67,14,24,0.0 +25988,70,15,32,0.0 +25988,66,17,23,0.0 +25988,36,19,36,0.0 +25988,40,18.4,1,0.0 +25988,44,19.45,34,0.0 +25988,38,263.5,4,0.0 +25988,59,55,18,0.0 +25988,26,31.23,48,0.0 +25988,75,7.75,3,0.0 +25988,22,21,25,0.0 +25988,49,20,15,0.0 +25988,56,38,26,0.0 +25988,50,16.25,3,0.0 +25988,71,21.5,11,0.0 +25988,53,32.8,8,0.0 +25989,32,32,46,0.0 +25989,15,15.5,9,0.0 +25989,31,12.5,42,0.0 +25989,55,24,42,0.0 +25989,39,18,32,0.0 +25989,40,18.4,3,0.0 +25989,52,7,33,0.0 +25989,72,34.8,37,0.0 +25989,25,14,42,0.0 +25989,66,17,1,0.0 +25989,63,43.9,19,0.0 +25989,42,14,18,0.0 +25989,21,10,1,0.0 +25989,68,12.5,12,0.0 +25989,26,31.23,22,0.0 +25989,33,2.5,2,0.0 +25989,77,13,13,0.0 +25989,34,14,1,0.0 +25990,63,43.9,4,0.0 +25990,15,15.5,17,0.0 +25990,57,19.5,35,0.0 +25990,18,62.5,38,0.0 +25990,43,46,20,0.0 +25990,13,6,23,0.0 +25990,56,38,3,0.0 +25990,16,17.45,37,0.0 +25990,1,18,6,0.0 +25990,58,13.25,44,0.0 +25990,51,53,3,0.0 +25990,5,21.35,19,0.0 +25990,50,16.25,39,0.0 +25990,53,32.8,30,0.0 +25990,4,22,22,0.0 +25990,62,49.3,21,0.0 +25990,61,28.5,34,0.0 +25990,12,38,32,0.0 +25990,73,15,33,0.0 +25990,10,31,43,0.0 +25990,60,34,43,0.0 +25990,17,39,29,0.0 +25990,20,81,15,0.0 +25990,41,9.65,4,0.0 +25990,54,7.45,42,0.0 +25990,39,18,42,0.0 +25990,34,14,33,0.0 +25990,49,20,17,0.0 +25990,65,21.05,14,0.0 +25990,75,7.75,15,0.0 +25990,9,97,25,0.0 +25990,37,26,44,0.0 +25991,55,24,29,0.0 +25991,7,30,44,0.0 +25991,49,20,45,0.0 +25991,43,46,28,0.0 +25991,26,31.23,26,0.0 +25991,53,32.8,34,0.0 +25991,17,39,46,0.0 +25991,10,31,19,0.0 +25991,4,22,22,0.0 +25991,18,62.5,10,0.0 +25991,28,45.6,20,0.0 +25991,47,9.5,37,0.0 +25991,9,97,39,0.0 +25991,33,2.5,5,0.0 +25991,16,17.45,30,0.0 +25991,45,9.5,44,0.0 +25991,68,12.5,13,0.0 +25991,56,38,17,0.0 +25991,41,9.65,18,0.0 +25991,64,33.25,10,0.0 +25991,66,17,40,0.0 +25991,62,49.3,1,0.0 +25991,42,14,42,0.0 +25991,20,81,31,0.0 +25991,25,14,28,0.0 +25991,35,18,16,0.0 +25991,14,23.25,35,0.0 +25991,58,13.25,36,0.0 +25991,8,40,1,0.0 +25991,63,43.9,43,0.0 +25991,69,36,35,0.0 +25991,75,7.75,31,0.0 +25991,5,21.35,50,0.0 +25991,51,53,11,0.0 +25991,48,12.75,27,0.0 +25991,23,9,32,0.0 +25991,57,19.5,6,0.0 +25991,36,19,23,0.0 +25991,3,10,34,0.0 +25991,71,21.5,10,0.0 +25991,11,21,40,0.0 +25991,76,18,6,0.0 +25991,29,123.79,18,0.0 +25991,27,43.9,17,0.0 +25991,44,19.45,41,0.0 +25991,54,7.45,25,0.0 +25991,32,32,25,0.0 +25991,70,15,12,0.0 +25991,21,10,3,0.0 +25991,34,14,28,0.0 +25991,46,12,40,0.0 +25991,65,21.05,12,0.0 +25991,73,15,20,0.0 +25991,24,4.5,42,0.0 +25991,77,13,16,0.0 +25991,13,6,14,0.0 +25991,22,21,50,0.0 +25992,34,14,46,0.0 +25992,33,2.5,41,0.0 +25992,6,25,23,0.0 +25992,23,9,20,0.0 +25992,44,19.45,37,0.0 +25992,10,31,6,0.0 +25992,5,21.35,2,0.0 +25992,60,34,22,0.0 +25992,55,24,47,0.0 +25992,2,19,37,0.0 +25992,74,10,1,0.0 +25992,36,19,27,0.0 +25992,47,9.5,8,0.0 +25992,32,32,50,0.0 +25992,62,49.3,24,0.0 +25992,48,12.75,48,0.0 +25992,51,53,31,0.0 +25992,76,18,16,0.0 +25992,67,14,3,0.0 +25992,68,12.5,48,0.0 +25992,54,7.45,30,0.0 +25992,7,30,6,0.0 +25992,41,9.65,2,0.0 +25992,53,32.8,40,0.0 +25992,13,6,28,0.0 +25993,9,97,4,0.0 +25993,68,12.5,33,0.0 +25993,13,6,32,0.0 +25993,14,23.25,1,0.0 +25993,30,25.89,15,0.0 +25993,71,21.5,13,0.0 +25993,40,18.4,45,0.0 +25993,31,12.5,39,0.0 +25993,6,25,14,0.0 +25993,69,36,29,0.0 +25993,61,28.5,25,0.0 +25994,23,9,42,0.0 +25994,52,7,17,0.0 +25994,34,14,19,0.0 +25994,64,33.25,1,0.0 +25994,54,7.45,3,0.0 +25994,30,25.89,37,0.0 +25994,16,17.45,44,0.0 +25994,39,18,4,0.0 +25994,12,38,42,0.0 +25994,25,14,6,0.0 +25994,19,9.2,9,0.0 +25994,56,38,30,0.0 +25994,63,43.9,18,0.0 +25994,33,2.5,21,0.0 +25994,8,40,17,0.0 +25994,43,46,12,0.0 +25994,2,19,4,0.0 +25994,32,32,41,0.0 +25994,49,20,43,0.0 +25994,17,39,38,0.0 +25994,45,9.5,5,0.0 +25994,20,81,15,0.0 +25994,70,15,8,0.0 +25994,66,17,6,0.0 +25994,57,19.5,28,0.0 +25994,62,49.3,44,0.0 +25994,58,13.25,42,0.0 +25994,28,45.6,1,0.0 +25994,26,31.23,49,0.0 +25994,6,25,29,0.0 +25994,9,97,14,0.0 +25994,61,28.5,1,0.0 +25994,71,21.5,29,0.0 +25994,27,43.9,3,0.0 +25994,11,21,45,0.0 +25994,37,26,8,0.0 +25994,44,19.45,19,0.0 +25994,22,21,32,0.0 +25994,47,9.5,49,0.0 +25994,29,123.79,32,0.0 +25994,14,23.25,37,0.0 +25994,67,14,2,0.0 +25994,60,34,21,0.0 +25994,51,53,6,0.0 +25994,36,19,41,0.0 +25994,59,55,34,0.0 +25994,21,10,48,0.0 +25994,75,7.75,5,0.0 +25994,53,32.8,4,0.0 +25994,72,34.8,39,0.0 +25994,73,15,12,0.0 +25994,77,13,28,0.0 +25994,7,30,13,0.0 +25994,4,22,2,0.0 +25994,46,12,36,0.0 +25994,5,21.35,14,0.0 +25994,18,62.5,25,0.0 +25994,24,4.5,47,0.0 +25994,50,16.25,27,0.0 +25994,55,24,3,0.0 +25994,38,263.5,17,0.0 +25994,65,21.05,5,0.0 +25994,31,12.5,34,0.0 +25994,74,10,20,0.0 +25994,13,6,29,0.0 +25994,42,14,7,0.0 +25994,76,18,44,0.0 +25994,48,12.75,50,0.0 +25994,41,9.65,42,0.0 +25994,10,31,12,0.0 +25994,3,10,35,0.0 +25994,69,36,44,0.0 +25994,1,18,25,0.0 +25995,53,32.8,47,0.0 +25995,40,18.4,23,0.0 +25995,51,53,47,0.0 +25995,26,31.23,34,0.0 +25995,57,19.5,41,0.0 +25995,39,18,45,0.0 +25995,59,55,18,0.0 +25995,77,13,40,0.0 +25995,73,15,23,0.0 +25995,21,10,6,0.0 +25995,56,38,29,0.0 +25995,23,9,48,0.0 +25995,74,10,31,0.0 +25995,61,28.5,46,0.0 +25995,60,34,32,0.0 +25995,70,15,49,0.0 +25995,15,15.5,38,0.0 +25995,67,14,3,0.0 +25995,2,19,18,0.0 +25995,68,12.5,28,0.0 +25995,30,25.89,37,0.0 +25995,41,9.65,34,0.0 +25995,36,19,34,0.0 +25995,42,14,8,0.0 +25995,65,21.05,41,0.0 +25995,9,97,34,0.0 +25995,20,81,22,0.0 +25995,55,24,49,0.0 +25995,72,34.8,15,0.0 +25995,45,9.5,48,0.0 +25995,17,39,41,0.0 +25995,37,26,3,0.0 +25995,19,9.2,3,0.0 +25995,71,21.5,10,0.0 +25995,1,18,6,0.0 +25995,4,22,33,0.0 +25995,24,4.5,38,0.0 +25995,22,21,12,0.0 +25995,75,7.75,20,0.0 +25995,54,7.45,20,0.0 +25995,76,18,50,0.0 +25995,46,12,6,0.0 +25995,63,43.9,27,0.0 +25995,52,7,38,0.0 +25995,33,2.5,16,0.0 +25995,58,13.25,33,0.0 +25995,8,40,11,0.0 +25995,7,30,7,0.0 +25995,10,31,25,0.0 +25995,25,14,50,0.0 +25995,28,45.6,40,0.0 +25995,13,6,30,0.0 +25995,5,21.35,35,0.0 +25995,35,18,22,0.0 +25995,38,263.5,45,0.0 +25995,31,12.5,40,0.0 +25995,12,38,12,0.0 +25995,6,25,26,0.0 +25995,29,123.79,5,0.0 +25995,44,19.45,16,0.0 +25995,27,43.9,42,0.0 +25995,14,23.25,40,0.0 +25995,43,46,20,0.0 +25995,32,32,12,0.0 +25995,18,62.5,1,0.0 +25995,49,20,21,0.0 +25995,64,33.25,47,0.0 +25995,48,12.75,50,0.0 +25995,66,17,23,0.0 +25995,47,9.5,34,0.0 +25996,41,9.65,47,0.0 +25996,75,7.75,43,0.0 +25996,32,32,27,0.0 +25996,35,18,47,0.0 +25996,54,7.45,27,0.0 +25996,2,19,16,0.0 +25996,29,123.79,11,0.0 +25996,21,10,35,0.0 +25996,55,24,46,0.0 +25996,19,9.2,44,0.0 +25996,48,12.75,27,0.0 +25996,10,31,21,0.0 +25996,61,28.5,3,0.0 +25996,9,97,10,0.0 +25996,64,33.25,26,0.0 +25996,8,40,9,0.0 +25996,49,20,9,0.0 +25996,63,43.9,8,0.0 +25996,58,13.25,18,0.0 +25996,1,18,6,0.0 +25996,4,22,42,0.0 +25996,69,36,1,0.0 +25996,74,10,27,0.0 +25996,56,38,49,0.0 +25996,47,9.5,10,0.0 +25996,23,9,35,0.0 +25996,33,2.5,43,0.0 +25996,65,21.05,25,0.0 +25996,3,10,44,0.0 +25996,51,53,46,0.0 +25996,30,25.89,22,0.0 +25996,67,14,26,0.0 +25996,72,34.8,3,0.0 +25996,13,6,35,0.0 +25996,50,16.25,33,0.0 +25996,14,23.25,44,0.0 +25996,52,7,23,0.0 +25996,59,55,12,0.0 +25996,15,15.5,8,0.0 +25996,7,30,36,0.0 +25996,11,21,30,0.0 +25996,27,43.9,40,0.0 +25996,6,25,5,0.0 +25996,68,12.5,6,0.0 +25996,53,32.8,33,0.0 +25996,42,14,43,0.0 +25996,76,18,33,0.0 +25996,5,21.35,24,0.0 +25996,18,62.5,18,0.0 +25996,62,49.3,4,0.0 +25996,70,15,34,0.0 +25996,40,18.4,8,0.0 +25996,38,263.5,50,0.0 +25996,57,19.5,4,0.0 +25996,12,38,36,0.0 +25996,45,9.5,50,0.0 +25996,73,15,3,0.0 +25997,36,19,35,0.0 +25997,26,31.23,4,0.0 +25997,63,43.9,18,0.0 +25997,28,45.6,32,0.0 +25997,64,33.25,9,0.0 +25997,52,7,50,0.0 +25997,8,40,3,0.0 +25997,30,25.89,50,0.0 +25997,38,263.5,44,0.0 +25997,25,14,27,0.0 +25997,65,21.05,29,0.0 +25997,23,9,28,0.0 +25997,35,18,18,0.0 +25997,31,12.5,5,0.0 +25997,58,13.25,8,0.0 +25997,34,14,50,0.0 +25997,73,15,49,0.0 +25997,55,24,5,0.0 +25997,37,26,38,0.0 +25997,5,21.35,49,0.0 +25997,47,9.5,48,0.0 +25997,15,15.5,50,0.0 +25997,76,18,4,0.0 +25997,14,23.25,18,0.0 +25997,39,18,33,0.0 +25997,7,30,13,0.0 +25997,75,7.75,25,0.0 +25997,62,49.3,42,0.0 +25997,68,12.5,23,0.0 +25997,12,38,37,0.0 +25997,6,25,26,0.0 +25997,10,31,24,0.0 +25997,45,9.5,33,0.0 +25997,77,13,26,0.0 +25997,61,28.5,37,0.0 +25997,9,97,19,0.0 +25997,3,10,32,0.0 +25997,46,12,4,0.0 +25997,70,15,50,0.0 +25997,33,2.5,9,0.0 +25997,66,17,31,0.0 +25997,29,123.79,18,0.0 +25997,54,7.45,3,0.0 +25997,24,4.5,22,0.0 +25997,71,21.5,37,0.0 +25997,56,38,43,0.0 +25997,20,81,13,0.0 +25997,19,9.2,26,0.0 +25997,1,18,18,0.0 +25997,22,21,22,0.0 +25997,69,36,16,0.0 +25997,57,19.5,39,0.0 +25997,27,43.9,25,0.0 +25997,44,19.45,1,0.0 +25997,18,62.5,27,0.0 +25997,74,10,45,0.0 +25997,41,9.65,45,0.0 +25997,13,6,18,0.0 +25997,32,32,4,0.0 +25997,59,55,29,0.0 +25997,60,34,31,0.0 +25997,48,12.75,10,0.0 +25997,49,20,28,0.0 +25997,50,16.25,2,0.0 +25997,2,19,38,0.0 +25997,51,53,16,0.0 +25997,21,10,42,0.0 +25997,40,18.4,11,0.0 +25998,72,34.8,8,0.0 +25998,9,97,22,0.0 +25998,46,12,29,0.0 +25998,61,28.5,15,0.0 +25998,56,38,42,0.0 +25998,68,12.5,43,0.0 +25998,6,25,14,0.0 +25998,3,10,14,0.0 +25998,33,2.5,48,0.0 +25998,16,17.45,32,0.0 +25998,48,12.75,3,0.0 +25998,37,26,22,0.0 +25998,53,32.8,21,0.0 +25998,71,21.5,8,0.0 +25998,76,18,38,0.0 +25998,40,18.4,4,0.0 +25998,67,14,30,0.0 +25999,17,39,36,0.0 +25999,65,21.05,24,0.0 +25999,23,9,13,0.0 +25999,69,36,8,0.0 +25999,57,19.5,30,0.0 +25999,25,14,41,0.0 +25999,9,97,42,0.0 +25999,55,24,10,0.0 +25999,36,19,45,0.0 +25999,70,15,50,0.0 +25999,41,9.65,26,0.0 +25999,37,26,22,0.0 +25999,8,40,18,0.0 +25999,34,14,31,0.0 +25999,16,17.45,12,0.0 +25999,38,263.5,13,0.0 +25999,75,7.75,19,0.0 +25999,11,21,26,0.0 +25999,73,15,3,0.0 +25999,60,34,34,0.0 +25999,72,34.8,38,0.0 +25999,66,17,29,0.0 +25999,7,30,13,0.0 +25999,76,18,24,0.0 +25999,3,10,31,0.0 +25999,58,13.25,12,0.0 +25999,5,21.35,40,0.0 +25999,67,14,17,0.0 +25999,14,23.25,48,0.0 +25999,74,10,23,0.0 +26000,34,14,36,0.0 +26000,50,16.25,33,0.0 +26000,32,32,24,0.0 +26000,31,12.5,41,0.0 +26000,65,21.05,37,0.0 +26000,47,9.5,21,0.0 +26000,69,36,36,0.0 +26000,38,263.5,23,0.0 +26000,1,18,12,0.0 +26000,55,24,13,0.0 +26000,61,28.5,11,0.0 +26000,40,18.4,14,0.0 +26000,17,39,32,0.0 +26000,45,9.5,16,0.0 +26000,73,15,13,0.0 +26000,2,19,48,0.0 +26001,43,46,44,0.0 +26001,45,9.5,8,0.0 +26001,31,12.5,21,0.0 +26001,38,263.5,25,0.0 +26001,51,53,17,0.0 +26001,33,2.5,4,0.0 +26001,72,34.8,30,0.0 +26001,35,18,6,0.0 +26001,53,32.8,9,0.0 +26001,13,6,45,0.0 +26001,52,7,13,0.0 +26001,76,18,28,0.0 +26001,1,18,50,0.0 +26001,3,10,11,0.0 +26001,37,26,26,0.0 +26001,25,14,30,0.0 +26001,15,15.5,41,0.0 +26001,48,12.75,31,0.0 +26001,32,32,19,0.0 +26001,63,43.9,1,0.0 +26001,59,55,49,0.0 +26001,18,62.5,35,0.0 +26001,23,9,27,0.0 +26001,6,25,4,0.0 +26001,36,19,15,0.0 +26001,26,31.23,36,0.0 +26001,12,38,24,0.0 +26001,41,9.65,22,0.0 +26001,11,21,22,0.0 +26001,54,7.45,37,0.0 +26001,67,14,31,0.0 +26001,7,30,6,0.0 +26001,62,49.3,13,0.0 +26001,46,12,7,0.0 +26001,42,14,26,0.0 +26001,39,18,43,0.0 +26001,74,10,44,0.0 +26001,4,22,6,0.0 +26001,20,81,5,0.0 +26001,27,43.9,14,0.0 +26001,71,21.5,15,0.0 +26001,22,21,37,0.0 +26001,61,28.5,34,0.0 +26001,66,17,27,0.0 +26001,58,13.25,44,0.0 +26001,69,36,25,0.0 +26001,16,17.45,14,0.0 +26001,68,12.5,4,0.0 +26001,50,16.25,24,0.0 +26001,24,4.5,10,0.0 +26001,44,19.45,49,0.0 +26001,5,21.35,28,0.0 +26002,33,2.5,28,0.0 +26002,56,38,3,0.0 +26002,44,19.45,15,0.0 +26002,66,17,20,0.0 +26002,43,46,43,0.0 +26002,37,26,10,0.0 +26002,23,9,12,0.0 +26002,31,12.5,32,0.0 +26002,26,31.23,39,0.0 +26002,4,22,10,0.0 +26002,71,21.5,41,0.0 +26002,22,21,38,0.0 +26002,15,15.5,49,0.0 +26002,68,12.5,11,0.0 +26002,74,10,35,0.0 +26002,1,18,30,0.0 +26002,70,15,20,0.0 +26002,57,19.5,30,0.0 +26002,8,40,6,0.0 +26002,51,53,37,0.0 +26002,41,9.65,26,0.0 +26002,54,7.45,23,0.0 +26002,16,17.45,20,0.0 +26002,34,14,49,0.0 +26002,21,10,2,0.0 +26002,6,25,7,0.0 +26002,40,18.4,50,0.0 +26002,42,14,11,0.0 +26002,76,18,23,0.0 +26002,29,123.79,47,0.0 +26002,27,43.9,30,0.0 +26002,17,39,30,0.0 +26002,65,21.05,43,0.0 +26002,19,9.2,31,0.0 +26002,30,25.89,38,0.0 +26002,11,21,34,0.0 +26002,24,4.5,18,0.0 +26002,59,55,10,0.0 +26002,48,12.75,49,0.0 +26002,2,19,50,0.0 +26002,13,6,39,0.0 +26003,15,15.5,3,0.0 +26003,64,33.25,4,0.0 +26003,77,13,44,0.0 +26003,63,43.9,1,0.0 +26003,39,18,35,0.0 +26003,68,12.5,23,0.0 +26003,72,34.8,48,0.0 +26003,17,39,37,0.0 +26003,20,81,24,0.0 +26003,23,9,42,0.0 +26003,65,21.05,19,0.0 +26003,28,45.6,38,0.0 +26003,48,12.75,11,0.0 +26003,42,14,12,0.0 +26003,69,36,18,0.0 +26003,30,25.89,17,0.0 +26003,9,97,38,0.0 +26003,74,10,47,0.0 +26003,27,43.9,31,0.0 +26003,34,14,2,0.0 +26003,41,9.65,38,0.0 +26003,3,10,30,0.0 +26003,60,34,2,0.0 +26003,70,15,39,0.0 +26003,38,263.5,43,0.0 +26003,13,6,3,0.0 +26003,8,40,42,0.0 +26003,62,49.3,5,0.0 +26003,25,14,3,0.0 +26003,4,22,44,0.0 +26003,35,18,45,0.0 +26003,5,21.35,43,0.0 +26003,14,23.25,22,0.0 +26003,1,18,1,0.0 +26003,49,20,6,0.0 +26003,67,14,11,0.0 +26003,45,9.5,28,0.0 +26003,16,17.45,36,0.0 +26004,44,19.45,35,0.0 +26004,32,32,37,0.0 +26004,58,13.25,6,0.0 +26004,71,21.5,4,0.0 +26004,5,21.35,38,0.0 +26004,47,9.5,14,0.0 +26004,59,55,27,0.0 +26004,14,23.25,18,0.0 +26004,33,2.5,30,0.0 +26004,42,14,6,0.0 +26004,4,22,38,0.0 +26004,12,38,45,0.0 +26004,19,9.2,42,0.0 +26004,6,25,11,0.0 +26004,13,6,45,0.0 +26004,29,123.79,49,0.0 +26004,67,14,27,0.0 +26004,43,46,49,0.0 +26004,24,4.5,25,0.0 +26004,50,16.25,15,0.0 +26004,62,49.3,4,0.0 +26004,61,28.5,45,0.0 +26004,37,26,43,0.0 +26004,64,33.25,24,0.0 +26004,11,21,37,0.0 +26004,2,19,43,0.0 +26004,28,45.6,18,0.0 +26004,18,62.5,3,0.0 +26004,63,43.9,18,0.0 +26004,75,7.75,28,0.0 +26004,45,9.5,37,0.0 +26004,49,20,43,0.0 +26004,57,19.5,43,0.0 +26004,7,30,39,0.0 +26004,70,15,43,0.0 +26004,66,17,7,0.0 +26004,8,40,23,0.0 +26004,39,18,32,0.0 +26004,30,25.89,25,0.0 +26004,35,18,48,0.0 +26004,46,12,47,0.0 +26004,36,19,22,0.0 +26004,22,21,47,0.0 +26004,77,13,38,0.0 +26004,55,24,14,0.0 +26004,3,10,1,0.0 +26004,26,31.23,5,0.0 +26004,25,14,28,0.0 +26004,23,9,15,0.0 +26004,17,39,1,0.0 +26004,73,15,10,0.0 +26004,40,18.4,14,0.0 +26004,56,38,9,0.0 +26004,52,7,34,0.0 +26004,41,9.65,25,0.0 +26004,72,34.8,45,0.0 +26004,68,12.5,24,0.0 +26004,51,53,24,0.0 +26004,54,7.45,26,0.0 +26004,69,36,30,0.0 +26004,15,15.5,14,0.0 +26004,34,14,16,0.0 +26004,1,18,11,0.0 +26004,76,18,39,0.0 +26004,31,12.5,43,0.0 +26005,35,18,10,0.0 +26005,18,62.5,43,0.0 +26005,67,14,40,0.0 +26005,25,14,46,0.0 +26005,40,18.4,28,0.0 +26005,46,12,12,0.0 +26005,49,20,27,0.0 +26005,42,14,38,0.0 +26005,44,19.45,21,0.0 +26005,2,19,17,0.0 +26005,56,38,27,0.0 +26005,39,18,7,0.0 +26005,62,49.3,23,0.0 +26005,20,81,21,0.0 +26005,7,30,4,0.0 +26005,59,55,28,0.0 +26005,63,43.9,30,0.0 +26005,12,38,22,0.0 +26005,61,28.5,26,0.0 +26005,4,22,50,0.0 +26005,13,6,25,0.0 +26005,75,7.75,37,0.0 +26005,54,7.45,39,0.0 +26005,72,34.8,5,0.0 +26005,52,7,49,0.0 +26005,10,31,2,0.0 +26005,24,4.5,31,0.0 +26005,68,12.5,18,0.0 +26005,74,10,29,0.0 +26005,47,9.5,24,0.0 +26005,48,12.75,14,0.0 +26005,58,13.25,50,0.0 +26005,6,25,47,0.0 +26005,3,10,8,0.0 +26005,50,16.25,34,0.0 +26005,14,23.25,35,0.0 +26005,55,24,43,0.0 +26005,17,39,40,0.0 +26005,31,12.5,21,0.0 +26005,11,21,34,0.0 +26005,19,9.2,38,0.0 +26005,5,21.35,6,0.0 +26005,37,26,48,0.0 +26005,16,17.45,21,0.0 +26005,8,40,24,0.0 +26005,64,33.25,49,0.0 +26005,51,53,35,0.0 +26005,1,18,37,0.0 +26005,70,15,44,0.0 +26005,27,43.9,38,0.0 +26005,60,34,6,0.0 +26005,77,13,29,0.0 +26005,36,19,37,0.0 +26005,30,25.89,27,0.0 +26005,45,9.5,10,0.0 +26005,57,19.5,33,0.0 +26005,15,15.5,33,0.0 +26005,32,32,37,0.0 +26005,41,9.65,12,0.0 +26005,65,21.05,36,0.0 +26005,53,32.8,26,0.0 +26005,66,17,38,0.0 +26005,71,21.5,46,0.0 +26005,29,123.79,15,0.0 +26005,22,21,33,0.0 +26005,73,15,31,0.0 +26006,44,19.45,11,0.0 +26006,72,34.8,29,0.0 +26006,17,39,17,0.0 +26006,7,30,15,0.0 +26006,4,22,15,0.0 +26006,3,10,46,0.0 +26006,53,32.8,15,0.0 +26006,47,9.5,6,0.0 +26006,48,12.75,50,0.0 +26006,40,18.4,44,0.0 +26006,8,40,34,0.0 +26006,74,10,30,0.0 +26006,39,18,14,0.0 +26006,28,45.6,33,0.0 +26006,71,21.5,22,0.0 +26006,9,97,24,0.0 +26006,57,19.5,41,0.0 +26006,12,38,49,0.0 +26006,32,32,48,0.0 +26006,63,43.9,31,0.0 +26006,65,21.05,40,0.0 +26006,22,21,42,0.0 +26006,50,16.25,27,0.0 +26006,69,36,2,0.0 +26006,38,263.5,43,0.0 +26006,2,19,14,0.0 +26006,59,55,26,0.0 +26006,70,15,11,0.0 +26006,19,9.2,12,0.0 +26006,10,31,6,0.0 +26006,58,13.25,14,0.0 +26006,41,9.65,46,0.0 +26006,13,6,39,0.0 +26006,77,13,33,0.0 +26006,45,9.5,20,0.0 +26006,56,38,16,0.0 +26006,18,62.5,24,0.0 +26006,15,15.5,33,0.0 +26006,30,25.89,19,0.0 +26006,5,21.35,50,0.0 +26006,14,23.25,17,0.0 +26006,73,15,28,0.0 +26006,52,7,38,0.0 +26007,35,18,28,0.0 +26007,51,53,23,0.0 +26007,23,9,50,0.0 +26007,56,38,11,0.0 +26007,38,263.5,36,0.0 +26007,3,10,23,0.0 +26007,2,19,30,0.0 +26007,41,9.65,1,0.0 +26007,62,49.3,11,0.0 +26007,46,12,4,0.0 +26007,19,9.2,26,0.0 +26007,58,13.25,25,0.0 +26007,7,30,1,0.0 +26007,31,12.5,21,0.0 +26007,63,43.9,24,0.0 +26007,11,21,25,0.0 +26007,55,24,25,0.0 +26007,15,15.5,24,0.0 +26007,24,4.5,34,0.0 +26007,4,22,34,0.0 +26007,53,32.8,46,0.0 +26007,25,14,46,0.0 +26007,22,21,5,0.0 +26007,71,21.5,32,0.0 +26007,20,81,28,0.0 +26007,32,32,23,0.0 +26007,73,15,11,0.0 +26007,9,97,35,0.0 +26007,16,17.45,4,0.0 +26007,54,7.45,49,0.0 +26007,57,19.5,30,0.0 +26007,77,13,6,0.0 +26007,75,7.75,35,0.0 +26007,1,18,49,0.0 +26007,5,21.35,12,0.0 +26007,28,45.6,25,0.0 +26007,8,40,25,0.0 +26007,34,14,43,0.0 +26007,68,12.5,38,0.0 +26007,37,26,12,0.0 +26007,14,23.25,47,0.0 +26007,48,12.75,38,0.0 +26007,27,43.9,38,0.0 +26007,64,33.25,15,0.0 +26007,18,62.5,5,0.0 +26007,74,10,14,0.0 +26007,45,9.5,15,0.0 +26007,33,2.5,20,0.0 +26007,69,36,23,0.0 +26007,42,14,4,0.0 +26007,70,15,27,0.0 +26007,21,10,40,0.0 +26007,13,6,7,0.0 +26007,61,28.5,38,0.0 +26007,29,123.79,13,0.0 +26007,49,20,35,0.0 +26007,59,55,25,0.0 +26007,26,31.23,4,0.0 +26007,12,38,25,0.0 +26007,36,19,24,0.0 +26007,52,7,2,0.0 +26007,47,9.5,14,0.0 +26007,50,16.25,12,0.0 +26007,44,19.45,33,0.0 +26007,6,25,34,0.0 +26007,66,17,44,0.0 +26007,17,39,25,0.0 +26007,30,25.89,26,0.0 +26007,39,18,37,0.0 +26007,67,14,9,0.0 +26007,76,18,42,0.0 +26007,43,46,16,0.0 +26007,60,34,19,0.0 +26008,27,43.9,28,0.0 +26008,40,18.4,9,0.0 +26008,23,9,26,0.0 +26008,41,9.65,8,0.0 +26008,30,25.89,46,0.0 +26008,58,13.25,19,0.0 +26008,67,14,9,0.0 +26008,17,39,3,0.0 +26008,29,123.79,1,0.0 +26008,26,31.23,29,0.0 +26008,13,6,10,0.0 +26008,77,13,10,0.0 +26008,8,40,3,0.0 +26008,72,34.8,34,0.0 +26008,10,31,16,0.0 +26008,69,36,42,0.0 +26008,32,32,19,0.0 +26008,62,49.3,38,0.0 +26008,60,34,2,0.0 +26008,55,24,32,0.0 +26008,74,10,1,0.0 +26008,44,19.45,2,0.0 +26008,4,22,29,0.0 +26008,38,263.5,30,0.0 +26008,3,10,8,0.0 +26009,35,18,14,0.0 +26009,17,39,5,0.0 +26009,13,6,33,0.0 +26009,5,21.35,36,0.0 +26009,15,15.5,16,0.0 +26009,7,30,39,0.0 +26009,69,36,19,0.0 +26009,9,97,28,0.0 +26009,71,21.5,21,0.0 +26009,52,7,13,0.0 +26009,40,18.4,43,0.0 +26009,36,19,15,0.0 +26009,16,17.45,49,0.0 +26009,22,21,1,0.0 +26009,54,7.45,31,0.0 +26009,51,53,16,0.0 +26009,67,14,27,0.0 +26010,4,22,18,0.0 +26010,59,55,30,0.0 +26010,10,31,41,0.0 +26010,65,21.05,32,0.0 +26010,49,20,3,0.0 +26010,72,34.8,27,0.0 +26010,17,39,17,0.0 +26010,2,19,44,0.0 +26010,29,123.79,11,0.0 +26010,58,13.25,46,0.0 +26010,57,19.5,42,0.0 +26010,20,81,50,0.0 +26010,69,36,12,0.0 +26010,50,16.25,15,0.0 +26010,23,9,44,0.0 +26010,35,18,3,0.0 +26010,25,14,2,0.0 +26010,53,32.8,2,0.0 +26010,55,24,16,0.0 +26010,21,10,31,0.0 +26010,66,17,41,0.0 +26010,47,9.5,46,0.0 +26010,19,9.2,34,0.0 +26010,27,43.9,19,0.0 +26010,22,21,1,0.0 +26010,8,40,9,0.0 +26010,60,34,50,0.0 +26010,51,53,28,0.0 +26010,13,6,30,0.0 +26010,16,17.45,42,0.0 +26010,63,43.9,16,0.0 +26010,48,12.75,44,0.0 +26010,64,33.25,35,0.0 +26010,30,25.89,49,0.0 +26010,67,14,37,0.0 +26010,15,15.5,4,0.0 +26010,40,18.4,43,0.0 +26010,77,13,26,0.0 +26011,73,15,1,0.0 +26011,4,22,29,0.0 +26011,51,53,23,0.0 +26011,40,18.4,4,0.0 +26011,53,32.8,5,0.0 +26011,9,97,37,0.0 +26011,76,18,5,0.0 +26011,37,26,32,0.0 +26011,69,36,41,0.0 +26011,21,10,16,0.0 +26011,54,7.45,20,0.0 +26011,39,18,16,0.0 +26011,67,14,33,0.0 +26011,10,31,9,0.0 +26011,56,38,14,0.0 +26011,38,263.5,6,0.0 +26011,61,28.5,47,0.0 +26011,47,9.5,17,0.0 +26012,32,32,25,0.0 +26012,57,19.5,29,0.0 +26012,13,6,25,0.0 +26012,4,22,19,0.0 +26012,17,39,29,0.0 +26012,77,13,11,0.0 +26012,29,123.79,26,0.0 +26012,52,7,31,0.0 +26012,33,2.5,17,0.0 +26012,18,62.5,17,0.0 +26012,48,12.75,33,0.0 +26012,74,10,1,0.0 +26012,6,25,41,0.0 +26012,39,18,9,0.0 +26012,68,12.5,41,0.0 +26012,7,30,2,0.0 +26012,27,43.9,42,0.0 +26012,14,23.25,20,0.0 +26012,20,81,37,0.0 +26012,23,9,42,0.0 +26012,37,26,3,0.0 +26012,8,40,33,0.0 +26012,50,16.25,6,0.0 +26012,67,14,11,0.0 +26012,56,38,49,0.0 +26012,12,38,18,0.0 +26012,73,15,39,0.0 +26012,36,19,42,0.0 +26012,47,9.5,48,0.0 +26012,5,21.35,16,0.0 +26012,28,45.6,37,0.0 +26012,54,7.45,6,0.0 +26012,10,31,43,0.0 +26012,19,9.2,43,0.0 +26012,44,19.45,47,0.0 +26012,72,34.8,49,0.0 +26012,42,14,6,0.0 +26012,61,28.5,11,0.0 +26012,51,53,7,0.0 +26012,49,20,35,0.0 +26012,58,13.25,38,0.0 +26012,60,34,38,0.0 +26012,30,25.89,14,0.0 +26012,69,36,11,0.0 +26012,53,32.8,37,0.0 +26012,25,14,35,0.0 +26012,21,10,21,0.0 +26012,66,17,45,0.0 +26012,35,18,22,0.0 +26012,24,4.5,9,0.0 +26012,45,9.5,26,0.0 +26012,62,49.3,16,0.0 +26012,71,21.5,44,0.0 +26012,9,97,13,0.0 +26012,76,18,28,0.0 +26012,16,17.45,26,0.0 +26012,55,24,42,0.0 +26012,38,263.5,28,0.0 +26012,59,55,3,0.0 +26013,40,18.4,45,0.0 +26013,51,53,3,0.0 +26013,54,7.45,1,0.0 +26013,58,13.25,50,0.0 +26013,69,36,50,0.0 +26013,72,34.8,28,0.0 +26013,70,15,23,0.0 +26013,35,18,28,0.0 +26013,20,81,9,0.0 +26013,77,13,25,0.0 +26013,32,32,1,0.0 +26013,12,38,4,0.0 +26013,71,21.5,28,0.0 +26013,33,2.5,41,0.0 +26013,21,10,36,0.0 +26013,68,12.5,7,0.0 +26013,61,28.5,34,0.0 +26013,18,62.5,30,0.0 +26013,43,46,16,0.0 +26013,41,9.65,7,0.0 +26013,15,15.5,35,0.0 +26013,47,9.5,40,0.0 +26013,38,263.5,6,0.0 +26013,74,10,5,0.0 +26013,45,9.5,18,0.0 +26013,30,25.89,49,0.0 +26013,44,19.45,34,0.0 +26013,37,26,12,0.0 +26013,9,97,46,0.0 +26013,55,24,15,0.0 +26013,53,32.8,48,0.0 +26013,19,9.2,39,0.0 +26013,7,30,1,0.0 +26013,75,7.75,34,0.0 +26013,25,14,11,0.0 +26013,56,38,26,0.0 +26013,50,16.25,9,0.0 +26013,48,12.75,50,0.0 +26013,63,43.9,45,0.0 +26013,2,19,40,0.0 +26013,1,18,24,0.0 +26014,42,14,32,0.0 +26014,68,12.5,34,0.0 +26014,14,23.25,10,0.0 +26014,76,18,18,0.0 +26014,69,36,9,0.0 +26014,10,31,17,0.0 +26014,49,20,20,0.0 +26014,11,21,15,0.0 +26014,50,16.25,41,0.0 +26014,19,9.2,34,0.0 +26014,33,2.5,9,0.0 +26014,41,9.65,1,0.0 +26014,7,30,33,0.0 +26014,15,15.5,2,0.0 +26014,45,9.5,37,0.0 +26014,27,43.9,5,0.0 +26014,47,9.5,31,0.0 +26014,2,19,11,0.0 +26014,28,45.6,16,0.0 +26014,75,7.75,26,0.0 +26014,38,263.5,32,0.0 +26014,65,21.05,10,0.0 +26014,8,40,15,0.0 +26014,22,21,2,0.0 +26014,5,21.35,10,0.0 +26014,64,33.25,5,0.0 +26014,25,14,9,0.0 +26014,43,46,5,0.0 +26014,63,43.9,36,0.0 +26014,4,22,15,0.0 +26014,71,21.5,12,0.0 +26014,72,34.8,39,0.0 +26014,52,7,25,0.0 +26014,21,10,39,0.0 +26014,18,62.5,23,0.0 +26014,61,28.5,42,0.0 +26014,12,38,38,0.0 +26014,35,18,40,0.0 +26014,56,38,27,0.0 +26014,57,19.5,5,0.0 +26014,32,32,50,0.0 +26014,9,97,45,0.0 +26014,36,19,22,0.0 +26014,29,123.79,22,0.0 +26014,46,12,49,0.0 +26014,70,15,5,0.0 +26014,20,81,49,0.0 +26014,77,13,15,0.0 +26014,54,7.45,23,0.0 +26014,67,14,38,0.0 +26014,55,24,34,0.0 +26014,39,18,43,0.0 +26014,37,26,33,0.0 +26014,13,6,46,0.0 +26014,51,53,39,0.0 +26014,24,4.5,29,0.0 +26014,31,12.5,31,0.0 +26015,54,7.45,32,0.0 +26015,39,18,10,0.0 +26015,11,21,15,0.0 +26015,7,30,22,0.0 +26015,20,81,26,0.0 +26015,66,17,31,0.0 +26015,51,53,23,0.0 +26015,16,17.45,2,0.0 +26015,30,25.89,33,0.0 +26015,63,43.9,32,0.0 +26015,62,49.3,29,0.0 +26015,3,10,40,0.0 +26015,75,7.75,10,0.0 +26015,37,26,21,0.0 +26015,53,32.8,21,0.0 +26015,65,21.05,13,0.0 +26015,70,15,2,0.0 +26015,31,12.5,42,0.0 +26015,76,18,11,0.0 +26015,13,6,49,0.0 +26015,27,43.9,28,0.0 +26015,72,34.8,24,0.0 +26015,15,15.5,20,0.0 +26016,21,10,10,0.0 +26016,13,6,6,0.0 +26016,53,32.8,40,0.0 +26016,19,9.2,30,0.0 +26016,47,9.5,46,0.0 +26016,54,7.45,49,0.0 +26016,59,55,31,0.0 +26016,25,14,35,0.0 +26016,65,21.05,20,0.0 +26016,22,21,35,0.0 +26016,32,32,36,0.0 +26016,26,31.23,47,0.0 +26016,48,12.75,38,0.0 +26016,15,15.5,4,0.0 +26016,74,10,19,0.0 +26016,73,15,32,0.0 +26016,1,18,23,0.0 +26016,66,17,15,0.0 +26016,62,49.3,12,0.0 +26016,9,97,26,0.0 +26016,55,24,3,0.0 +26016,5,21.35,3,0.0 +26016,57,19.5,3,0.0 +26016,34,14,40,0.0 +26016,56,38,20,0.0 +26016,24,4.5,39,0.0 +26016,63,43.9,5,0.0 +26016,77,13,2,0.0 +26016,75,7.75,18,0.0 +26016,11,21,49,0.0 +26016,7,30,28,0.0 +26016,12,38,21,0.0 +26016,49,20,49,0.0 +26016,36,19,38,0.0 +26016,6,25,29,0.0 +26016,46,12,31,0.0 +26016,58,13.25,40,0.0 +26016,8,40,48,0.0 +26016,38,263.5,37,0.0 +26016,35,18,38,0.0 +26016,18,62.5,34,0.0 +26016,37,26,4,0.0 +26016,14,23.25,50,0.0 +26016,28,45.6,44,0.0 +26016,76,18,25,0.0 +26016,31,12.5,36,0.0 +26016,60,34,23,0.0 +26016,71,21.5,28,0.0 +26016,51,53,37,0.0 +26016,68,12.5,28,0.0 +26016,70,15,34,0.0 +26016,67,14,47,0.0 +26016,52,7,36,0.0 +26016,4,22,26,0.0 +26016,39,18,45,0.0 +26016,29,123.79,10,0.0 +26016,20,81,2,0.0 +26016,16,17.45,8,0.0 +26016,72,34.8,41,0.0 +26016,40,18.4,13,0.0 +26017,47,9.5,38,0.0 +26017,33,2.5,36,0.0 +26017,20,81,8,0.0 +26017,49,20,40,0.0 +26017,12,38,46,0.0 +26017,44,19.45,44,0.0 +26017,19,9.2,39,0.0 +26017,71,21.5,28,0.0 +26017,8,40,12,0.0 +26017,34,14,22,0.0 +26017,70,15,42,0.0 +26017,16,17.45,39,0.0 +26017,27,43.9,2,0.0 +26017,11,21,10,0.0 +26017,58,13.25,11,0.0 +26017,63,43.9,48,0.0 +26017,64,33.25,16,0.0 +26017,69,36,26,0.0 +26017,53,32.8,49,0.0 +26017,1,18,36,0.0 +26017,55,24,28,0.0 +26017,76,18,49,0.0 +26017,66,17,7,0.0 +26017,45,9.5,5,0.0 +26017,21,10,41,0.0 +26017,7,30,44,0.0 +26017,14,23.25,30,0.0 +26017,39,18,19,0.0 +26017,65,21.05,2,0.0 +26017,6,25,40,0.0 +26017,48,12.75,35,0.0 +26017,22,21,37,0.0 +26017,15,15.5,21,0.0 +26017,2,19,20,0.0 +26017,56,38,45,0.0 +26017,4,22,30,0.0 +26017,24,4.5,46,0.0 +26017,73,15,25,0.0 +26017,52,7,41,0.0 +26017,13,6,33,0.0 +26017,35,18,35,0.0 +26017,25,14,2,0.0 +26017,57,19.5,47,0.0 +26017,40,18.4,16,0.0 +26017,36,19,36,0.0 +26017,50,16.25,25,0.0 +26017,5,21.35,2,0.0 +26017,43,46,25,0.0 +26017,26,31.23,3,0.0 +26017,74,10,4,0.0 +26017,77,13,40,0.0 +26017,31,12.5,21,0.0 +26017,42,14,33,0.0 +26017,60,34,26,0.0 +26017,38,263.5,39,0.0 +26017,75,7.75,10,0.0 +26017,68,12.5,12,0.0 +26017,3,10,6,0.0 +26017,37,26,45,0.0 +26017,28,45.6,13,0.0 +26017,30,25.89,1,0.0 +26017,67,14,2,0.0 +26018,56,38,32,0.0 +26018,40,18.4,41,0.0 +26018,3,10,8,0.0 +26018,45,9.5,27,0.0 +26019,13,6,20,0.0 +26019,4,22,33,0.0 +26019,50,16.25,5,0.0 +26019,42,14,5,0.0 +26019,43,46,4,0.0 +26019,40,18.4,19,0.0 +26019,39,18,2,0.0 +26019,6,25,42,0.0 +26019,35,18,19,0.0 +26019,72,34.8,28,0.0 +26019,74,10,18,0.0 +26019,17,39,3,0.0 +26019,1,18,19,0.0 +26019,16,17.45,22,0.0 +26019,48,12.75,16,0.0 +26019,62,49.3,46,0.0 +26019,46,12,13,0.0 +26019,9,97,33,0.0 +26019,57,19.5,40,0.0 +26019,3,10,46,0.0 +26019,11,21,42,0.0 +26019,68,12.5,3,0.0 +26019,30,25.89,11,0.0 +26019,19,9.2,32,0.0 +26019,12,38,10,0.0 +26019,26,31.23,31,0.0 +26019,66,17,46,0.0 +26019,44,19.45,38,0.0 +26019,38,263.5,23,0.0 +26019,49,20,29,0.0 +26019,5,21.35,13,0.0 +26019,53,32.8,47,0.0 +26019,76,18,2,0.0 +26019,54,7.45,27,0.0 +26019,2,19,44,0.0 +26019,37,26,46,0.0 +26019,52,7,42,0.0 +26019,71,21.5,26,0.0 +26019,33,2.5,42,0.0 +26019,64,33.25,40,0.0 +26019,15,15.5,13,0.0 +26019,70,15,45,0.0 +26019,28,45.6,7,0.0 +26019,47,9.5,36,0.0 +26019,14,23.25,1,0.0 +26019,21,10,29,0.0 +26019,73,15,32,0.0 +26019,67,14,43,0.0 +26019,59,55,26,0.0 +26019,65,21.05,3,0.0 +26019,29,123.79,49,0.0 +26019,24,4.5,4,0.0 +26019,77,13,6,0.0 +26019,27,43.9,43,0.0 +26019,55,24,50,0.0 +26019,56,38,44,0.0 +26019,31,12.5,7,0.0 +26019,34,14,16,0.0 +26019,63,43.9,32,0.0 +26019,58,13.25,32,0.0 +26019,7,30,6,0.0 +26019,45,9.5,11,0.0 +26019,41,9.65,6,0.0 +26019,20,81,6,0.0 +26019,8,40,4,0.0 +26019,51,53,10,0.0 +26019,23,9,50,0.0 +26019,22,21,28,0.0 +26019,25,14,19,0.0 +26019,61,28.5,46,0.0 +26019,18,62.5,47,0.0 +26019,36,19,37,0.0 +26020,17,39,6,0.0 +26020,49,20,5,0.0 +26020,61,28.5,32,0.0 +26020,21,10,7,0.0 +26020,28,45.6,50,0.0 +26020,2,19,34,0.0 +26020,37,26,22,0.0 +26020,59,55,10,0.0 +26020,39,18,11,0.0 +26020,16,17.45,25,0.0 +26020,44,19.45,50,0.0 +26020,41,9.65,43,0.0 +26020,31,12.5,16,0.0 +26020,45,9.5,48,0.0 +26020,62,49.3,26,0.0 +26020,57,19.5,39,0.0 +26020,33,2.5,38,0.0 +26020,66,17,30,0.0 +26020,76,18,33,0.0 +26020,43,46,32,0.0 +26020,1,18,5,0.0 +26020,13,6,41,0.0 +26020,35,18,27,0.0 +26020,68,12.5,28,0.0 +26020,9,97,48,0.0 +26020,73,15,11,0.0 +26020,22,21,40,0.0 +26020,52,7,44,0.0 +26020,32,32,13,0.0 +26020,56,38,20,0.0 +26020,55,24,48,0.0 +26020,36,19,10,0.0 +26020,50,16.25,50,0.0 +26020,38,263.5,20,0.0 +26020,63,43.9,16,0.0 +26020,46,12,9,0.0 +26020,12,38,41,0.0 +26020,69,36,35,0.0 +26020,11,21,30,0.0 +26020,72,34.8,28,0.0 +26020,47,9.5,16,0.0 +26020,60,34,36,0.0 +26020,18,62.5,14,0.0 +26020,77,13,11,0.0 +26020,40,18.4,50,0.0 +26020,8,40,23,0.0 +26020,14,23.25,12,0.0 +26020,23,9,14,0.0 +26021,9,97,43,0.0 +26021,49,20,12,0.0 +26021,36,19,12,0.0 +26021,26,31.23,36,0.0 +26021,41,9.65,7,0.0 +26021,33,2.5,4,0.0 +26021,56,38,40,0.0 +26021,10,31,19,0.0 +26021,66,17,12,0.0 +26021,43,46,45,0.0 +26021,7,30,30,0.0 +26021,17,39,34,0.0 +26021,50,16.25,16,0.0 +26021,73,15,20,0.0 +26021,69,36,42,0.0 +26021,20,81,4,0.0 +26021,75,7.75,14,0.0 +26021,54,7.45,6,0.0 +26021,48,12.75,42,0.0 +26021,2,19,48,0.0 +26021,13,6,40,0.0 +26021,5,21.35,29,0.0 +26021,31,12.5,18,0.0 +26021,52,7,16,0.0 +26021,62,49.3,22,0.0 +26021,1,18,34,0.0 +26021,18,62.5,45,0.0 +26021,16,17.45,13,0.0 +26021,40,18.4,28,0.0 +26021,46,12,11,0.0 +26021,71,21.5,6,0.0 +26021,38,263.5,43,0.0 +26021,19,9.2,17,0.0 +26021,37,26,22,0.0 +26021,72,34.8,46,0.0 +26021,8,40,8,0.0 +26021,15,15.5,10,0.0 +26021,30,25.89,17,0.0 +26021,27,43.9,32,0.0 +26021,6,25,31,0.0 +26021,35,18,17,0.0 +26021,28,45.6,25,0.0 +26021,64,33.25,2,0.0 +26021,51,53,23,0.0 +26021,32,32,37,0.0 +26021,59,55,34,0.0 +26021,44,19.45,18,0.0 +26021,47,9.5,21,0.0 +26021,39,18,39,0.0 +26021,29,123.79,16,0.0 +26021,42,14,32,0.0 +26021,58,13.25,9,0.0 +26021,76,18,28,0.0 +26021,55,24,35,0.0 +26021,3,10,48,0.0 +26021,21,10,39,0.0 +26021,60,34,44,0.0 +26021,61,28.5,24,0.0 +26021,24,4.5,5,0.0 +26021,12,38,44,0.0 +26021,53,32.8,48,0.0 +26021,4,22,17,0.0 +26021,45,9.5,17,0.0 +26021,34,14,7,0.0 +26021,14,23.25,24,0.0 +26021,67,14,10,0.0 +26021,77,13,32,0.0 +26022,38,263.5,33,0.0 +26022,66,17,45,0.0 +26022,13,6,12,0.0 +26022,39,18,9,0.0 +26022,19,9.2,39,0.0 +26022,57,19.5,37,0.0 +26022,48,12.75,41,0.0 +26022,28,45.6,28,0.0 +26022,76,18,13,0.0 +26022,54,7.45,26,0.0 +26022,42,14,5,0.0 +26022,69,36,7,0.0 +26022,72,34.8,30,0.0 +26022,3,10,41,0.0 +26022,8,40,8,0.0 +26022,33,2.5,24,0.0 +26022,22,21,6,0.0 +26022,50,16.25,22,0.0 +26022,7,30,42,0.0 +26022,61,28.5,50,0.0 +26022,2,19,6,0.0 +26022,6,25,24,0.0 +26022,24,4.5,36,0.0 +26022,71,21.5,17,0.0 +26022,1,18,24,0.0 +26022,32,32,25,0.0 +26022,40,18.4,38,0.0 +26022,63,43.9,39,0.0 +26022,49,20,42,0.0 +26022,12,38,15,0.0 +26022,58,13.25,7,0.0 +26022,77,13,18,0.0 +26022,51,53,21,0.0 +26022,45,9.5,14,0.0 +26022,44,19.45,8,0.0 +26022,31,12.5,48,0.0 +26022,47,9.5,50,0.0 +26022,16,17.45,21,0.0 +26022,56,38,48,0.0 +26022,26,31.23,22,0.0 +26022,4,22,16,0.0 +26022,60,34,41,0.0 +26022,27,43.9,25,0.0 +26022,68,12.5,36,0.0 +26022,67,14,40,0.0 +26022,10,31,37,0.0 +26022,35,18,20,0.0 +26022,15,15.5,2,0.0 +26022,18,62.5,9,0.0 +26022,14,23.25,15,0.0 +26022,53,32.8,28,0.0 +26022,30,25.89,21,0.0 +26023,11,21,27,0.0 +26023,17,39,2,0.0 +26023,41,9.65,10,0.0 +26023,42,14,46,0.0 +26023,24,4.5,46,0.0 +26023,67,14,45,0.0 +26023,51,53,44,0.0 +26023,53,32.8,23,0.0 +26023,77,13,21,0.0 +26023,27,43.9,27,0.0 +26023,37,26,13,0.0 +26023,5,21.35,48,0.0 +26023,35,18,8,0.0 +26023,55,24,9,0.0 +26023,10,31,35,0.0 +26023,13,6,27,0.0 +26023,72,34.8,31,0.0 +26023,64,33.25,13,0.0 +26023,16,17.45,32,0.0 +26023,46,12,15,0.0 +26024,30,25.89,13,0.0 +26024,6,25,6,0.0 +26024,16,17.45,6,0.0 +26024,62,49.3,20,0.0 +26024,65,21.05,42,0.0 +26024,22,21,18,0.0 +26024,63,43.9,45,0.0 +26024,46,12,32,0.0 +26024,52,7,35,0.0 +26024,51,53,14,0.0 +26024,61,28.5,11,0.0 +26024,33,2.5,36,0.0 +26024,48,12.75,31,0.0 +26024,13,6,25,0.0 +26024,60,34,13,0.0 +26024,34,14,32,0.0 +26024,77,13,38,0.0 +26024,26,31.23,44,0.0 +26024,5,21.35,17,0.0 +26024,72,34.8,33,0.0 +26024,71,21.5,28,0.0 +26024,66,17,2,0.0 +26024,40,18.4,15,0.0 +26024,44,19.45,22,0.0 +26024,45,9.5,35,0.0 +26024,70,15,12,0.0 +26024,21,10,32,0.0 +26024,58,13.25,44,0.0 +26024,74,10,15,0.0 +26024,31,12.5,17,0.0 +26024,1,18,32,0.0 +26024,57,19.5,27,0.0 +26024,67,14,12,0.0 +26024,11,21,5,0.0 +26024,38,263.5,44,0.0 +26024,28,45.6,26,0.0 +26024,23,9,39,0.0 +26024,50,16.25,29,0.0 +26024,59,55,27,0.0 +26024,19,9.2,7,0.0 +26024,8,40,16,0.0 +26024,9,97,23,0.0 +26024,10,31,33,0.0 +26024,54,7.45,44,0.0 +26024,43,46,48,0.0 +26024,55,24,13,0.0 +26024,39,18,13,0.0 +26025,23,9,1,0.0 +26025,9,97,44,0.0 +26026,22,21,16,0.0 +26026,14,23.25,40,0.0 +26026,53,32.8,21,0.0 +26026,8,40,3,0.0 +26026,76,18,15,0.0 +26026,28,45.6,39,0.0 +26026,51,53,49,0.0 +26026,60,34,30,0.0 +26026,41,9.65,44,0.0 +26026,23,9,22,0.0 +26026,71,21.5,28,0.0 +26026,21,10,16,0.0 +26026,54,7.45,18,0.0 +26026,59,55,39,0.0 +26026,3,10,3,0.0 +26026,17,39,46,0.0 +26026,37,26,31,0.0 +26026,39,18,14,0.0 +26026,74,10,46,0.0 +26026,27,43.9,7,0.0 +26026,1,18,45,0.0 +26027,35,18,45,0.0 +26027,24,4.5,43,0.0 +26027,13,6,19,0.0 +26027,55,24,7,0.0 +26027,67,14,25,0.0 +26027,61,28.5,49,0.0 +26027,66,17,40,0.0 +26027,56,38,27,0.0 +26027,2,19,19,0.0 +26027,34,14,14,0.0 +26027,25,14,50,0.0 +26027,3,10,47,0.0 +26027,41,9.65,19,0.0 +26027,46,12,10,0.0 +26027,38,263.5,37,0.0 +26027,70,15,21,0.0 +26027,58,13.25,26,0.0 +26027,26,31.23,37,0.0 +26027,64,33.25,19,0.0 +26027,39,18,2,0.0 +26027,5,21.35,39,0.0 +26027,16,17.45,34,0.0 +26027,37,26,3,0.0 +26027,75,7.75,34,0.0 +26027,47,9.5,40,0.0 +26027,73,15,13,0.0 +26027,22,21,48,0.0 +26027,68,12.5,15,0.0 +26027,29,123.79,16,0.0 +26027,65,21.05,22,0.0 +26027,9,97,4,0.0 +26027,11,21,11,0.0 +26027,51,53,2,0.0 +26027,32,32,30,0.0 +26027,18,62.5,13,0.0 +26027,45,9.5,26,0.0 +26027,71,21.5,9,0.0 +26027,15,15.5,48,0.0 +26027,36,19,33,0.0 +26027,14,23.25,32,0.0 +26027,53,32.8,40,0.0 +26027,12,38,32,0.0 +26027,33,2.5,14,0.0 +26027,74,10,41,0.0 +26027,44,19.45,44,0.0 +26027,69,36,2,0.0 +26027,10,31,41,0.0 +26027,17,39,38,0.0 +26027,6,25,4,0.0 +26027,43,46,17,0.0 +26027,27,43.9,2,0.0 +26027,59,55,27,0.0 +26027,31,12.5,21,0.0 +26027,52,7,6,0.0 +26027,72,34.8,29,0.0 +26027,40,18.4,24,0.0 +26027,57,19.5,47,0.0 +26027,8,40,34,0.0 +26027,4,22,23,0.0 +26027,7,30,37,0.0 +26027,62,49.3,38,0.0 +26027,30,25.89,50,0.0 +26028,3,10,33,0.0 +26029,2,19,47,0.0 +26029,37,26,5,0.0 +26029,76,18,6,0.0 +26029,30,25.89,49,0.0 +26029,25,14,30,0.0 +26029,39,18,48,0.0 +26029,6,25,40,0.0 +26029,29,123.79,3,0.0 +26029,67,14,45,0.0 +26029,49,20,43,0.0 +26029,61,28.5,48,0.0 +26029,73,15,16,0.0 +26029,63,43.9,47,0.0 +26029,34,14,32,0.0 +26029,74,10,24,0.0 +26029,35,18,48,0.0 +26029,77,13,32,0.0 +26029,53,32.8,49,0.0 +26029,57,19.5,35,0.0 +26029,54,7.45,47,0.0 +26029,47,9.5,1,0.0 +26029,31,12.5,10,0.0 +26029,42,14,48,0.0 +26029,58,13.25,22,0.0 +26029,17,39,3,0.0 +26029,72,34.8,48,0.0 +26029,59,55,45,0.0 +26029,12,38,8,0.0 +26029,71,21.5,21,0.0 +26029,1,18,13,0.0 +26029,14,23.25,41,0.0 +26029,23,9,9,0.0 +26029,33,2.5,34,0.0 +26029,3,10,17,0.0 +26029,70,15,44,0.0 +26029,15,15.5,26,0.0 +26030,71,21.5,44,0.0 +26030,20,81,1,0.0 +26030,23,9,44,0.0 +26030,10,31,12,0.0 +26030,27,43.9,33,0.0 +26030,3,10,15,0.0 +26030,68,12.5,45,0.0 +26030,8,40,3,0.0 +26030,7,30,36,0.0 +26030,50,16.25,27,0.0 +26030,9,97,25,0.0 +26030,57,19.5,12,0.0 +26030,46,12,47,0.0 +26030,32,32,26,0.0 +26030,37,26,41,0.0 +26030,51,53,12,0.0 +26030,63,43.9,20,0.0 +26030,76,18,41,0.0 +26030,29,123.79,1,0.0 +26030,47,9.5,39,0.0 +26030,19,9.2,10,0.0 +26030,65,21.05,14,0.0 +26030,25,14,32,0.0 +26030,44,19.45,33,0.0 +26030,53,32.8,12,0.0 +26030,58,13.25,11,0.0 +26030,30,25.89,48,0.0 +26030,15,15.5,13,0.0 +26030,13,6,5,0.0 +26030,75,7.75,11,0.0 +26030,56,38,10,0.0 +26030,34,14,25,0.0 +26030,49,20,30,0.0 +26030,55,24,13,0.0 +26030,70,15,50,0.0 +26030,11,21,20,0.0 +26030,61,28.5,4,0.0 +26030,28,45.6,42,0.0 +26030,66,17,23,0.0 +26030,60,34,40,0.0 +26030,62,49.3,25,0.0 +26030,74,10,40,0.0 +26030,54,7.45,34,0.0 +26030,12,38,21,0.0 +26030,39,18,6,0.0 +26030,6,25,49,0.0 +26030,43,46,38,0.0 +26030,35,18,21,0.0 +26030,24,4.5,19,0.0 +26030,41,9.65,3,0.0 +26030,73,15,37,0.0 +26030,14,23.25,30,0.0 +26030,2,19,2,0.0 +26030,33,2.5,3,0.0 +26030,26,31.23,50,0.0 +26030,52,7,35,0.0 +26030,72,34.8,29,0.0 +26030,42,14,11,0.0 +26030,17,39,12,0.0 +26030,18,62.5,35,0.0 +26030,5,21.35,12,0.0 +26030,59,55,28,0.0 +26030,4,22,15,0.0 +26030,36,19,22,0.0 +26031,77,13,44,0.0 +26031,61,28.5,42,0.0 +26031,45,9.5,15,0.0 +26031,56,38,19,0.0 +26031,70,15,9,0.0 +26031,2,19,36,0.0 +26031,36,19,1,0.0 +26031,30,25.89,10,0.0 +26031,23,9,20,0.0 +26031,3,10,11,0.0 +26031,43,46,11,0.0 +26031,21,10,16,0.0 +26031,44,19.45,20,0.0 +26031,40,18.4,16,0.0 +26031,74,10,40,0.0 +26031,18,62.5,39,0.0 +26031,60,34,28,0.0 +26031,73,15,19,0.0 +26031,52,7,33,0.0 +26031,35,18,1,0.0 +26031,53,32.8,34,0.0 +26031,63,43.9,3,0.0 +26031,15,15.5,29,0.0 +26031,1,18,46,0.0 +26031,37,26,32,0.0 +26031,46,12,24,0.0 +26031,17,39,30,0.0 +26031,33,2.5,46,0.0 +26032,43,46,2,0.0 +26032,63,43.9,16,0.0 +26032,27,43.9,28,0.0 +26032,16,17.45,41,0.0 +26032,68,12.5,1,0.0 +26032,9,97,30,0.0 +26032,13,6,32,0.0 +26032,40,18.4,19,0.0 +26032,15,15.5,19,0.0 +26032,31,12.5,25,0.0 +26032,29,123.79,19,0.0 +26032,56,38,33,0.0 +26032,28,45.6,24,0.0 +26032,38,263.5,48,0.0 +26032,61,28.5,5,0.0 +26032,25,14,41,0.0 +26032,52,7,12,0.0 +26032,45,9.5,4,0.0 +26032,54,7.45,11,0.0 +26032,2,19,4,0.0 +26032,58,13.25,18,0.0 +26032,72,34.8,10,0.0 +26032,57,19.5,15,0.0 +26032,32,32,50,0.0 +26032,67,14,32,0.0 +26032,76,18,7,0.0 +26032,48,12.75,41,0.0 +26032,11,21,2,0.0 +26032,14,23.25,44,0.0 +26033,63,43.9,28,0.0 +26033,12,38,11,0.0 +26033,44,19.45,30,0.0 +26033,42,14,44,0.0 +26033,55,24,34,0.0 +26033,33,2.5,48,0.0 +26033,11,21,47,0.0 +26033,24,4.5,7,0.0 +26033,13,6,48,0.0 +26033,72,34.8,48,0.0 +26033,59,55,16,0.0 +26033,6,25,22,0.0 +26033,47,9.5,15,0.0 +26033,51,53,34,0.0 +26033,37,26,36,0.0 +26033,52,7,17,0.0 +26033,14,23.25,42,0.0 +26033,57,19.5,36,0.0 +26033,1,18,33,0.0 +26033,40,18.4,17,0.0 +26033,8,40,46,0.0 +26033,17,39,9,0.0 +26033,9,97,31,0.0 +26033,77,13,9,0.0 +26033,66,17,1,0.0 +26033,5,21.35,39,0.0 +26033,31,12.5,50,0.0 +26033,29,123.79,50,0.0 +26033,69,36,49,0.0 +26033,34,14,40,0.0 +26033,48,12.75,46,0.0 +26033,39,18,32,0.0 +26033,7,30,18,0.0 +26033,20,81,12,0.0 +26033,71,21.5,8,0.0 +26033,23,9,13,0.0 +26033,61,28.5,27,0.0 +26033,45,9.5,45,0.0 +26033,70,15,45,0.0 +26033,56,38,13,0.0 +26033,53,32.8,17,0.0 +26033,50,16.25,17,0.0 +26033,18,62.5,14,0.0 +26033,26,31.23,46,0.0 +26033,25,14,28,0.0 +26033,68,12.5,4,0.0 +26033,76,18,36,0.0 +26033,43,46,46,0.0 +26033,62,49.3,3,0.0 +26033,19,9.2,16,0.0 +26033,21,10,35,0.0 +26034,38,263.5,43,0.0 +26034,55,24,7,0.0 +26034,27,43.9,5,0.0 +26034,61,28.5,6,0.0 +26034,14,23.25,32,0.0 +26034,66,17,24,0.0 +26034,34,14,37,0.0 +26034,24,4.5,38,0.0 +26034,50,16.25,17,0.0 +26034,74,10,26,0.0 +26034,60,34,15,0.0 +26034,36,19,6,0.0 +26034,57,19.5,3,0.0 +26034,8,40,3,0.0 +26034,21,10,9,0.0 +26034,35,18,15,0.0 +26034,69,36,38,0.0 +26034,29,123.79,37,0.0 +26034,22,21,24,0.0 +26034,42,14,47,0.0 +26034,6,25,17,0.0 +26034,37,26,23,0.0 +26034,2,19,11,0.0 +26034,19,9.2,13,0.0 +26034,41,9.65,16,0.0 +26034,48,12.75,23,0.0 +26034,23,9,15,0.0 +26034,45,9.5,20,0.0 +26034,10,31,41,0.0 +26034,46,12,13,0.0 +26034,13,6,7,0.0 +26034,47,9.5,48,0.0 +26034,52,7,17,0.0 +26034,64,33.25,26,0.0 +26034,4,22,36,0.0 +26034,67,14,37,0.0 +26034,12,38,50,0.0 +26034,39,18,37,0.0 +26034,63,43.9,6,0.0 +26034,15,15.5,23,0.0 +26034,43,46,38,0.0 +26034,62,49.3,27,0.0 +26034,44,19.45,10,0.0 +26034,65,21.05,49,0.0 +26034,18,62.5,38,0.0 +26034,33,2.5,26,0.0 +26034,59,55,40,0.0 +26034,71,21.5,16,0.0 +26034,9,97,50,0.0 +26034,32,32,19,0.0 +26034,56,38,15,0.0 +26034,20,81,28,0.0 +26034,31,12.5,26,0.0 +26034,1,18,19,0.0 +26034,16,17.45,33,0.0 +26034,28,45.6,35,0.0 +26034,3,10,35,0.0 +26034,68,12.5,1,0.0 +26034,5,21.35,7,0.0 +26034,75,7.75,4,0.0 +26034,72,34.8,37,0.0 +26034,73,15,35,0.0 +26034,17,39,50,0.0 +26034,7,30,6,0.0 +26034,51,53,46,0.0 +26035,40,18.4,7,0.0 +26035,71,21.5,30,0.0 +26035,69,36,9,0.0 +26035,18,62.5,28,0.0 +26035,73,15,9,0.0 +26035,2,19,4,0.0 +26035,5,21.35,39,0.0 +26035,70,15,29,0.0 +26035,60,34,13,0.0 +26035,11,21,27,0.0 +26035,24,4.5,18,0.0 +26035,42,14,19,0.0 +26035,45,9.5,30,0.0 +26035,23,9,38,0.0 +26035,77,13,2,0.0 +26035,36,19,11,0.0 +26035,76,18,21,0.0 +26035,37,26,2,0.0 +26035,19,9.2,42,0.0 +26035,34,14,39,0.0 +26035,67,14,24,0.0 +26035,46,12,13,0.0 +26035,14,23.25,21,0.0 +26035,68,12.5,25,0.0 +26035,12,38,47,0.0 +26035,6,25,11,0.0 +26035,54,7.45,15,0.0 +26035,58,13.25,23,0.0 +26035,7,30,12,0.0 +26035,56,38,47,0.0 +26035,25,14,50,0.0 +26035,31,12.5,45,0.0 +26035,65,21.05,31,0.0 +26035,9,97,7,0.0 +26035,3,10,16,0.0 +26035,39,18,12,0.0 +26035,66,17,40,0.0 +26035,74,10,50,0.0 +26035,30,25.89,8,0.0 +26036,73,15,44,0.0 +26036,7,30,22,0.0 +26036,1,18,20,0.0 +26036,44,19.45,33,0.0 +26036,76,18,43,0.0 +26036,49,20,24,0.0 +26036,71,21.5,50,0.0 +26036,39,18,19,0.0 +26036,17,39,16,0.0 +26036,69,36,7,0.0 +26036,42,14,37,0.0 +26036,28,45.6,9,0.0 +26036,52,7,37,0.0 +26036,16,17.45,10,0.0 +26036,18,62.5,41,0.0 +26036,68,12.5,37,0.0 +26036,31,12.5,16,0.0 +26036,61,28.5,7,0.0 +26036,47,9.5,49,0.0 +26036,14,23.25,41,0.0 +26036,46,12,46,0.0 +26036,62,49.3,8,0.0 +26036,54,7.45,49,0.0 +26036,21,10,26,0.0 +26036,9,97,28,0.0 +26036,34,14,6,0.0 +26036,38,263.5,38,0.0 +26036,2,19,27,0.0 +26036,70,15,43,0.0 +26036,66,17,35,0.0 +26036,40,18.4,41,0.0 +26036,65,21.05,10,0.0 +26036,77,13,15,0.0 +26036,41,9.65,15,0.0 +26036,53,32.8,13,0.0 +26036,30,25.89,36,0.0 +26036,10,31,43,0.0 +26036,11,21,30,0.0 +26036,22,21,3,0.0 +26036,37,26,25,0.0 +26036,56,38,35,0.0 +26036,20,81,43,0.0 +26036,35,18,38,0.0 +26036,51,53,41,0.0 +26036,50,16.25,30,0.0 +26036,33,2.5,12,0.0 +26036,24,4.5,39,0.0 +26036,58,13.25,36,0.0 +26036,26,31.23,6,0.0 +26036,4,22,48,0.0 +26036,32,32,26,0.0 +26036,57,19.5,34,0.0 +26036,55,24,8,0.0 +26036,74,10,47,0.0 +26036,60,34,22,0.0 +26036,67,14,7,0.0 +26037,34,14,13,0.0 +26037,70,15,14,0.0 +26037,37,26,37,0.0 +26037,16,17.45,48,0.0 +26037,46,12,32,0.0 +26037,12,38,8,0.0 +26037,63,43.9,18,0.0 +26037,28,45.6,41,0.0 +26037,23,9,31,0.0 +26037,9,97,31,0.0 +26037,42,14,1,0.0 +26037,20,81,3,0.0 +26037,44,19.45,6,0.0 +26037,33,2.5,40,0.0 +26037,17,39,16,0.0 +26037,3,10,24,0.0 +26037,4,22,43,0.0 +26037,61,28.5,42,0.0 +26037,56,38,45,0.0 +26037,35,18,1,0.0 +26037,52,7,10,0.0 +26037,62,49.3,35,0.0 +26037,14,23.25,21,0.0 +26037,7,30,20,0.0 +26037,43,46,15,0.0 +26037,58,13.25,43,0.0 +26037,50,16.25,7,0.0 +26037,47,9.5,40,0.0 +26037,25,14,19,0.0 +26037,59,55,26,0.0 +26037,27,43.9,50,0.0 +26037,49,20,5,0.0 +26037,24,4.5,19,0.0 +26037,18,62.5,39,0.0 +26037,32,32,22,0.0 +26037,67,14,19,0.0 +26037,40,18.4,1,0.0 +26037,30,25.89,50,0.0 +26037,54,7.45,20,0.0 +26037,75,7.75,19,0.0 +26037,64,33.25,9,0.0 +26037,22,21,15,0.0 +26037,65,21.05,26,0.0 +26037,38,263.5,46,0.0 +26037,69,36,14,0.0 +26037,13,6,42,0.0 +26037,68,12.5,11,0.0 +26037,76,18,24,0.0 +26037,11,21,25,0.0 +26037,60,34,28,0.0 +26037,2,19,6,0.0 +26037,74,10,12,0.0 +26037,15,15.5,40,0.0 +26037,10,31,3,0.0 +26037,51,53,47,0.0 +26037,71,21.5,26,0.0 +26037,21,10,9,0.0 +26037,53,32.8,45,0.0 +26037,57,19.5,34,0.0 +26037,29,123.79,16,0.0 +26037,6,25,17,0.0 +26037,8,40,43,0.0 +26037,39,18,1,0.0 +26037,55,24,36,0.0 +26037,1,18,6,0.0 +26037,41,9.65,33,0.0 +26037,26,31.23,45,0.0 +26037,19,9.2,31,0.0 +26037,77,13,45,0.0 +26037,31,12.5,4,0.0 +26037,66,17,30,0.0 +26037,45,9.5,37,0.0 +26037,72,34.8,47,0.0 +26037,73,15,18,0.0 +26037,48,12.75,16,0.0 +26037,36,19,19,0.0 +26038,15,15.5,27,0.0 +26038,68,12.5,20,0.0 +26038,57,19.5,10,0.0 +26038,29,123.79,27,0.0 +26038,77,13,19,0.0 +26038,69,36,32,0.0 +26038,41,9.65,3,0.0 +26038,36,19,8,0.0 +26038,52,7,6,0.0 +26038,1,18,9,0.0 +26038,6,25,13,0.0 +26038,19,9.2,43,0.0 +26038,24,4.5,38,0.0 +26038,38,263.5,19,0.0 +26038,14,23.25,5,0.0 +26038,51,53,30,0.0 +26038,18,62.5,7,0.0 +26038,65,21.05,21,0.0 +26038,45,9.5,27,0.0 +26038,46,12,8,0.0 +26038,26,31.23,43,0.0 +26038,44,19.45,45,0.0 +26038,73,15,26,0.0 +26038,61,28.5,14,0.0 +26038,13,6,47,0.0 +26038,62,49.3,12,0.0 +26038,55,24,37,0.0 +26038,21,10,44,0.0 +26038,30,25.89,11,0.0 +26038,48,12.75,41,0.0 +26038,76,18,32,0.0 +26038,32,32,3,0.0 +26038,22,21,29,0.0 +26038,40,18.4,24,0.0 +26038,43,46,3,0.0 +26038,67,14,22,0.0 +26038,17,39,37,0.0 +26038,39,18,7,0.0 +26038,75,7.75,13,0.0 +26038,5,21.35,19,0.0 +26038,63,43.9,50,0.0 +26038,4,22,27,0.0 +26038,54,7.45,14,0.0 +26038,27,43.9,48,0.0 +26038,34,14,28,0.0 +26038,72,34.8,44,0.0 +26038,56,38,37,0.0 +26038,11,21,47,0.0 +26038,60,34,48,0.0 +26038,16,17.45,40,0.0 +26038,20,81,22,0.0 +26038,7,30,14,0.0 +26038,59,55,14,0.0 +26039,7,30,42,0.0 +26039,54,7.45,3,0.0 +26039,22,21,12,0.0 +26039,52,7,42,0.0 +26039,38,263.5,5,0.0 +26039,26,31.23,4,0.0 +26039,67,14,26,0.0 +26039,20,81,42,0.0 +26039,30,25.89,18,0.0 +26039,21,10,11,0.0 +26039,63,43.9,12,0.0 +26039,19,9.2,26,0.0 +26039,51,53,3,0.0 +26039,36,19,3,0.0 +26039,13,6,16,0.0 +26039,5,21.35,18,0.0 +26039,2,19,34,0.0 +26039,44,19.45,18,0.0 +26039,68,12.5,3,0.0 +26039,14,23.25,11,0.0 +26039,53,32.8,45,0.0 +26039,48,12.75,20,0.0 +26039,10,31,44,0.0 +26039,56,38,36,0.0 +26039,66,17,6,0.0 +26039,17,39,26,0.0 +26039,29,123.79,5,0.0 +26039,59,55,7,0.0 +26039,55,24,21,0.0 +26039,23,9,36,0.0 +26039,75,7.75,34,0.0 +26039,64,33.25,48,0.0 +26039,11,21,24,0.0 +26039,32,32,43,0.0 +26039,70,15,47,0.0 +26039,33,2.5,1,0.0 +26039,15,15.5,17,0.0 +26039,57,19.5,4,0.0 +26039,35,18,19,0.0 +26039,73,15,17,0.0 +26039,6,25,29,0.0 +26039,31,12.5,10,0.0 +26039,34,14,35,0.0 +26039,72,34.8,5,0.0 +26039,45,9.5,46,0.0 +26039,58,13.25,23,0.0 +26039,39,18,7,0.0 +26040,62,49.3,28,0.0 +26040,50,16.25,7,0.0 +26040,35,18,43,0.0 +26040,71,21.5,24,0.0 +26040,69,36,34,0.0 +26040,40,18.4,2,0.0 +26040,47,9.5,8,0.0 +26040,9,97,30,0.0 +26040,19,9.2,47,0.0 +26040,45,9.5,47,0.0 +26040,5,21.35,13,0.0 +26040,23,9,3,0.0 +26040,6,25,17,0.0 +26040,20,81,13,0.0 +26040,66,17,10,0.0 +26040,39,18,19,0.0 +26040,13,6,41,0.0 +26040,75,7.75,35,0.0 +26040,24,4.5,43,0.0 +26040,12,38,48,0.0 +26040,3,10,12,0.0 +26040,10,31,13,0.0 +26040,30,25.89,15,0.0 +26040,44,19.45,19,0.0 +26040,53,32.8,28,0.0 +26040,14,23.25,21,0.0 +26040,2,19,7,0.0 +26040,52,7,17,0.0 +26040,70,15,3,0.0 +26040,36,19,31,0.0 +26040,72,34.8,29,0.0 +26040,32,32,50,0.0 +26040,57,19.5,49,0.0 +26040,56,38,2,0.0 +26040,76,18,23,0.0 +26040,8,40,36,0.0 +26040,37,26,41,0.0 +26040,59,55,22,0.0 +26041,61,28.5,10,0.0 +26041,63,43.9,6,0.0 +26041,1,18,42,0.0 +26041,55,24,27,0.0 +26041,5,21.35,48,0.0 +26041,46,12,10,0.0 +26041,57,19.5,36,0.0 +26041,64,33.25,41,0.0 +26041,26,31.23,31,0.0 +26041,60,34,19,0.0 +26041,54,7.45,38,0.0 +26041,40,18.4,26,0.0 +26041,29,123.79,15,0.0 +26041,2,19,45,0.0 +26041,16,17.45,24,0.0 +26041,21,10,15,0.0 +26041,53,32.8,34,0.0 +26041,34,14,4,0.0 +26041,74,10,42,0.0 +26041,35,18,13,0.0 +26041,75,7.75,33,0.0 +26041,8,40,4,0.0 +26041,24,4.5,30,0.0 +26042,71,21.5,33,0.0 +26042,63,43.9,35,0.0 +26042,14,23.25,37,0.0 +26042,16,17.45,4,0.0 +26042,49,20,1,0.0 +26042,74,10,4,0.0 +26042,19,9.2,9,0.0 +26042,11,21,27,0.0 +26043,28,45.6,28,0.0 +26043,22,21,11,0.0 +26043,69,36,2,0.0 +26043,36,19,20,0.0 +26043,38,263.5,32,0.0 +26043,9,97,13,0.0 +26043,51,53,50,0.0 +26043,73,15,18,0.0 +26043,24,4.5,43,0.0 +26043,45,9.5,46,0.0 +26043,18,62.5,1,0.0 +26043,2,19,6,0.0 +26043,21,10,20,0.0 +26043,40,18.4,19,0.0 +26043,59,55,5,0.0 +26043,34,14,7,0.0 +26043,67,14,16,0.0 +26043,6,25,23,0.0 +26043,14,23.25,47,0.0 +26043,61,28.5,48,0.0 +26043,57,19.5,33,0.0 +26043,49,20,5,0.0 +26043,16,17.45,39,0.0 +26043,17,39,22,0.0 +26043,72,34.8,12,0.0 +26043,27,43.9,41,0.0 +26043,37,26,45,0.0 +26043,30,25.89,41,0.0 +26043,13,6,15,0.0 +26043,62,49.3,49,0.0 +26043,43,46,18,0.0 +26043,10,31,23,0.0 +26043,11,21,16,0.0 +26043,70,15,6,0.0 +26043,77,13,6,0.0 +26043,41,9.65,33,0.0 +26043,42,14,21,0.0 +26043,23,9,22,0.0 +26043,65,21.05,10,0.0 +26043,20,81,25,0.0 +26043,76,18,30,0.0 +26043,26,31.23,2,0.0 +26043,48,12.75,23,0.0 +26043,19,9.2,42,0.0 +26043,52,7,20,0.0 +26043,33,2.5,5,0.0 +26043,71,21.5,21,0.0 +26043,56,38,2,0.0 +26043,4,22,11,0.0 +26043,15,15.5,36,0.0 +26043,50,16.25,26,0.0 +26043,25,14,49,0.0 +26043,75,7.75,49,0.0 +26043,35,18,46,0.0 +26043,64,33.25,38,0.0 +26043,32,32,9,0.0 +26043,53,32.8,41,0.0 +26043,1,18,25,0.0 +26043,29,123.79,15,0.0 +26043,63,43.9,7,0.0 +26043,60,34,2,0.0 +26043,58,13.25,10,0.0 +26043,5,21.35,9,0.0 +26043,12,38,17,0.0 +26044,77,13,36,0.0 +26044,2,19,33,0.0 +26044,73,15,49,0.0 +26044,66,17,49,0.0 +26044,71,21.5,35,0.0 +26044,16,17.45,29,0.0 +26044,22,21,35,0.0 +26044,38,263.5,32,0.0 +26044,9,97,49,0.0 +26045,42,14,18,0.0 +26045,23,9,1,0.0 +26045,77,13,44,0.0 +26045,71,21.5,49,0.0 +26045,12,38,10,0.0 +26045,31,12.5,22,0.0 +26045,63,43.9,48,0.0 +26045,60,34,47,0.0 +26045,15,15.5,35,0.0 +26045,7,30,22,0.0 +26045,53,32.8,4,0.0 +26045,10,31,22,0.0 +26045,62,49.3,12,0.0 +26045,68,12.5,15,0.0 +26045,44,19.45,44,0.0 +26045,2,19,3,0.0 +26045,65,21.05,30,0.0 +26045,50,16.25,8,0.0 +26045,69,36,42,0.0 +26045,9,97,37,0.0 +26045,45,9.5,49,0.0 +26045,6,25,19,0.0 +26045,33,2.5,9,0.0 +26045,11,21,34,0.0 +26045,40,18.4,1,0.0 +26045,72,34.8,32,0.0 +26045,61,28.5,40,0.0 +26045,22,21,37,0.0 +26045,35,18,37,0.0 +26045,75,7.75,38,0.0 +26045,18,62.5,31,0.0 +26045,64,33.25,3,0.0 +26045,76,18,26,0.0 +26045,66,17,23,0.0 +26045,17,39,10,0.0 +26045,21,10,17,0.0 +26045,51,53,30,0.0 +26045,55,24,38,0.0 +26045,34,14,45,0.0 +26045,16,17.45,11,0.0 +26046,11,21,4,0.0 +26046,60,34,43,0.0 +26046,47,9.5,29,0.0 +26046,72,34.8,23,0.0 +26046,26,31.23,43,0.0 +26046,35,18,2,0.0 +26046,13,6,18,0.0 +26046,76,18,39,0.0 +26046,52,7,6,0.0 +26046,68,12.5,42,0.0 +26046,15,15.5,25,0.0 +26046,67,14,14,0.0 +26046,17,39,7,0.0 +26046,31,12.5,47,0.0 +26046,9,97,29,0.0 +26046,25,14,34,0.0 +26046,58,13.25,28,0.0 +26046,75,7.75,7,0.0 +26046,57,19.5,14,0.0 +26046,59,55,17,0.0 +26046,41,9.65,44,0.0 +26046,51,53,28,0.0 +26046,36,19,34,0.0 +26046,19,9.2,23,0.0 +26046,53,32.8,46,0.0 +26046,21,10,15,0.0 +26046,8,40,2,0.0 +26046,12,38,48,0.0 +26046,34,14,10,0.0 +26046,22,21,10,0.0 +26046,64,33.25,1,0.0 +26046,54,7.45,7,0.0 +26046,70,15,31,0.0 +26046,3,10,15,0.0 +26046,49,20,9,0.0 +26046,23,9,4,0.0 +26046,39,18,47,0.0 +26046,46,12,9,0.0 +26046,7,30,38,0.0 +26046,1,18,4,0.0 +26046,42,14,36,0.0 +26046,55,24,43,0.0 +26046,2,19,3,0.0 +26046,37,26,11,0.0 +26046,73,15,9,0.0 +26046,48,12.75,13,0.0 +26046,4,22,22,0.0 +26046,6,25,5,0.0 +26046,32,32,12,0.0 +26046,28,45.6,15,0.0 +26046,40,18.4,47,0.0 +26046,16,17.45,39,0.0 +26046,33,2.5,19,0.0 +26046,24,4.5,18,0.0 +26046,30,25.89,11,0.0 +26046,20,81,43,0.0 +26046,10,31,13,0.0 +26046,43,46,11,0.0 +26046,29,123.79,25,0.0 +26046,61,28.5,20,0.0 +26046,74,10,44,0.0 +26047,55,24,45,0.0 +26047,2,19,40,0.0 +26047,34,14,45,0.0 +26047,8,40,31,0.0 +26047,19,9.2,5,0.0 +26047,37,26,17,0.0 +26047,3,10,42,0.0 +26047,38,263.5,7,0.0 +26047,68,12.5,21,0.0 +26047,15,15.5,14,0.0 +26047,14,23.25,13,0.0 +26047,17,39,23,0.0 +26047,6,25,6,0.0 +26047,54,7.45,30,0.0 +26047,10,31,24,0.0 +26047,28,45.6,9,0.0 +26047,30,25.89,5,0.0 +26047,76,18,22,0.0 +26047,7,30,16,0.0 +26048,28,45.6,42,0.0 +26048,36,19,3,0.0 +26048,40,18.4,7,0.0 +26048,45,9.5,11,0.0 +26048,5,21.35,14,0.0 +26048,63,43.9,1,0.0 +26048,19,9.2,8,0.0 +26048,52,7,50,0.0 +26048,48,12.75,28,0.0 +26048,62,49.3,29,0.0 +26048,71,21.5,10,0.0 +26048,1,18,36,0.0 +26048,25,14,23,0.0 +26048,53,32.8,19,0.0 +26048,24,4.5,39,0.0 +26048,8,40,2,0.0 +26048,74,10,38,0.0 +26048,3,10,29,0.0 +26048,43,46,19,0.0 +26048,35,18,9,0.0 +26048,22,21,39,0.0 +26048,50,16.25,2,0.0 +26048,57,19.5,34,0.0 +26048,39,18,37,0.0 +26048,12,38,25,0.0 +26048,15,15.5,40,0.0 +26048,41,9.65,26,0.0 +26048,31,12.5,45,0.0 +26048,76,18,18,0.0 +26048,27,43.9,36,0.0 +26048,29,123.79,15,0.0 +26048,37,26,19,0.0 +26048,77,13,49,0.0 +26048,38,263.5,38,0.0 +26048,59,55,32,0.0 +26048,56,38,37,0.0 +26048,6,25,26,0.0 +26048,33,2.5,5,0.0 +26048,20,81,22,0.0 +26048,68,12.5,48,0.0 +26048,66,17,30,0.0 +26048,46,12,14,0.0 +26048,60,34,31,0.0 +26048,73,15,33,0.0 +26048,67,14,49,0.0 +26048,7,30,3,0.0 +26048,30,25.89,19,0.0 +26048,10,31,22,0.0 +26048,55,24,33,0.0 +26048,32,32,37,0.0 +26048,75,7.75,49,0.0 +26048,70,15,42,0.0 +26048,64,33.25,20,0.0 +26048,44,19.45,47,0.0 +26048,54,7.45,35,0.0 +26048,47,9.5,35,0.0 +26048,16,17.45,19,0.0 +26048,13,6,25,0.0 +26048,49,20,23,0.0 +26048,72,34.8,11,0.0 +26048,17,39,47,0.0 +26048,58,13.25,11,0.0 +26048,69,36,48,0.0 +26048,61,28.5,19,0.0 +26048,9,97,20,0.0 +26048,11,21,6,0.0 +26048,34,14,38,0.0 +26048,21,10,23,0.0 +26048,14,23.25,15,0.0 +26048,26,31.23,9,0.0 +26049,17,39,16,0.0 +26049,16,17.45,43,0.0 +26049,73,15,41,0.0 +26049,28,45.6,48,0.0 +26049,10,31,5,0.0 +26049,31,12.5,22,0.0 +26049,74,10,36,0.0 +26049,77,13,49,0.0 +26049,58,13.25,9,0.0 +26049,12,38,26,0.0 +26049,29,123.79,7,0.0 +26049,36,19,12,0.0 +26049,19,9.2,50,0.0 +26049,8,40,32,0.0 +26049,45,9.5,45,0.0 +26049,37,26,30,0.0 +26049,32,32,27,0.0 +26049,33,2.5,23,0.0 +26049,23,9,43,0.0 +26049,40,18.4,32,0.0 +26049,68,12.5,50,0.0 +26049,35,18,38,0.0 +26049,49,20,38,0.0 +26049,27,43.9,17,0.0 +26049,2,19,23,0.0 +26049,56,38,23,0.0 +26049,60,34,7,0.0 +26049,11,21,7,0.0 +26049,72,34.8,40,0.0 +26049,25,14,50,0.0 +26049,52,7,16,0.0 +26049,18,62.5,30,0.0 +26049,9,97,5,0.0 +26049,47,9.5,14,0.0 +26049,62,49.3,49,0.0 +26049,7,30,35,0.0 +26049,24,4.5,16,0.0 +26049,14,23.25,20,0.0 +26049,4,22,30,0.0 +26049,64,33.25,44,0.0 +26049,54,7.45,50,0.0 +26049,76,18,32,0.0 +26049,70,15,8,0.0 +26049,1,18,5,0.0 +26049,30,25.89,31,0.0 +26049,48,12.75,10,0.0 +26049,42,14,17,0.0 +26049,55,24,10,0.0 +26049,34,14,45,0.0 +26049,26,31.23,21,0.0 +26049,3,10,12,0.0 +26049,46,12,29,0.0 +26049,57,19.5,7,0.0 +26049,59,55,13,0.0 +26049,6,25,21,0.0 +26049,20,81,5,0.0 +26050,57,19.5,37,0.0 +26050,54,7.45,8,0.0 +26050,58,13.25,7,0.0 +26050,31,12.5,4,0.0 +26050,73,15,43,0.0 +26050,13,6,16,0.0 +26050,12,38,26,0.0 +26050,45,9.5,5,0.0 +26050,70,15,22,0.0 +26050,35,18,12,0.0 +26050,8,40,10,0.0 +26050,38,263.5,25,0.0 +26050,71,21.5,7,0.0 +26050,68,12.5,28,0.0 +26050,47,9.5,9,0.0 +26050,60,34,29,0.0 +26050,14,23.25,2,0.0 +26050,49,20,4,0.0 +26050,34,14,37,0.0 +26050,19,9.2,16,0.0 +26050,15,15.5,17,0.0 +26050,33,2.5,32,0.0 +26050,17,39,43,0.0 +26050,65,21.05,10,0.0 +26050,75,7.75,41,0.0 +26050,20,81,50,0.0 +26050,44,19.45,17,0.0 +26050,22,21,20,0.0 +26050,42,14,12,0.0 +26050,40,18.4,37,0.0 +26050,25,14,13,0.0 +26050,74,10,42,0.0 +26050,3,10,47,0.0 +26050,9,97,28,0.0 +26050,53,32.8,33,0.0 +26050,76,18,1,0.0 +26050,72,34.8,7,0.0 +26050,46,12,16,0.0 +26050,64,33.25,45,0.0 +26050,23,9,39,0.0 +26050,21,10,3,0.0 +26050,59,55,47,0.0 +26050,30,25.89,1,0.0 +26050,66,17,5,0.0 +26051,27,43.9,11,0.0 +26051,34,14,24,0.0 +26051,36,19,39,0.0 +26051,57,19.5,12,0.0 +26051,19,9.2,40,0.0 +26051,33,2.5,46,0.0 +26051,44,19.45,23,0.0 +26051,30,25.89,22,0.0 +26051,26,31.23,22,0.0 +26051,61,28.5,41,0.0 +26051,24,4.5,42,0.0 +26051,68,12.5,32,0.0 +26051,46,12,31,0.0 +26051,62,49.3,15,0.0 +26051,40,18.4,7,0.0 +26051,37,26,20,0.0 +26051,65,21.05,38,0.0 +26051,9,97,37,0.0 +26051,6,25,35,0.0 +26051,50,16.25,46,0.0 +26051,77,13,46,0.0 +26051,60,34,12,0.0 +26051,63,43.9,20,0.0 +26051,43,46,39,0.0 +26051,64,33.25,16,0.0 +26051,58,13.25,43,0.0 +26051,76,18,4,0.0 +26051,73,15,32,0.0 +26051,51,53,9,0.0 +26051,25,14,6,0.0 +26051,52,7,44,0.0 +26051,74,10,44,0.0 +26051,21,10,7,0.0 +26051,7,30,26,0.0 +26051,11,21,34,0.0 +26051,13,6,36,0.0 +26051,15,15.5,12,0.0 +26051,1,18,22,0.0 +26051,67,14,12,0.0 +26051,41,9.65,30,0.0 +26052,77,13,24,0.0 +26052,68,12.5,46,0.0 +26052,75,7.75,12,0.0 +26052,55,24,38,0.0 +26052,32,32,38,0.0 +26052,74,10,44,0.0 +26052,67,14,26,0.0 +26052,25,14,16,0.0 +26052,8,40,37,0.0 +26052,63,43.9,32,0.0 +26052,29,123.79,21,0.0 +26052,36,19,13,0.0 +26052,72,34.8,36,0.0 +26052,14,23.25,1,0.0 +26052,51,53,16,0.0 +26052,31,12.5,13,0.0 +26052,4,22,32,0.0 +26052,3,10,33,0.0 +26052,73,15,2,0.0 +26052,64,33.25,23,0.0 +26052,23,9,40,0.0 +26052,66,17,1,0.0 +26052,11,21,50,0.0 +26052,6,25,39,0.0 +26052,7,30,4,0.0 +26052,9,97,35,0.0 +26052,2,19,29,0.0 +26052,13,6,47,0.0 +26052,34,14,4,0.0 +26052,20,81,36,0.0 +26052,12,38,15,0.0 +26052,59,55,32,0.0 +26052,33,2.5,33,0.0 +26052,19,9.2,33,0.0 +26052,10,31,40,0.0 +26052,71,21.5,30,0.0 +26052,16,17.45,10,0.0 +26052,44,19.45,3,0.0 +26052,65,21.05,4,0.0 +26052,56,38,50,0.0 +26052,58,13.25,35,0.0 +26052,43,46,38,0.0 +26052,70,15,37,0.0 +26052,62,49.3,43,0.0 +26052,60,34,27,0.0 +26052,47,9.5,42,0.0 +26052,50,16.25,48,0.0 +26052,45,9.5,7,0.0 +26052,37,26,24,0.0 +26052,24,4.5,1,0.0 +26052,42,14,23,0.0 +26052,40,18.4,35,0.0 +26052,53,32.8,17,0.0 +26052,38,263.5,1,0.0 +26052,30,25.89,31,0.0 +26052,49,20,36,0.0 +26052,5,21.35,42,0.0 +26052,35,18,27,0.0 +26053,71,21.5,29,0.0 +26053,75,7.75,22,0.0 +26053,30,25.89,45,0.0 +26053,61,28.5,2,0.0 +26053,36,19,7,0.0 +26053,20,81,2,0.0 +26053,56,38,10,0.0 +26053,22,21,31,0.0 +26053,6,25,45,0.0 +26053,62,49.3,13,0.0 +26053,38,263.5,46,0.0 +26053,40,18.4,43,0.0 +26054,31,12.5,35,0.0 +26054,25,14,40,0.0 +26054,16,17.45,9,0.0 +26054,4,22,26,0.0 +26054,45,9.5,16,0.0 +26054,34,14,27,0.0 +26054,18,62.5,22,0.0 +26054,53,32.8,18,0.0 +26054,62,49.3,30,0.0 +26054,52,7,13,0.0 +26054,58,13.25,5,0.0 +26054,59,55,50,0.0 +26054,15,15.5,43,0.0 +26054,38,263.5,46,0.0 +26054,20,81,1,0.0 +26054,54,7.45,5,0.0 +26054,23,9,19,0.0 +26054,2,19,47,0.0 +26054,35,18,50,0.0 +26054,42,14,38,0.0 +26054,10,31,17,0.0 +26054,67,14,17,0.0 +26054,32,32,15,0.0 +26054,65,21.05,35,0.0 +26054,28,45.6,5,0.0 +26054,56,38,26,0.0 +26054,22,21,37,0.0 +26054,21,10,44,0.0 +26054,75,7.75,17,0.0 +26054,66,17,28,0.0 +26054,9,97,1,0.0 +26054,69,36,4,0.0 +26054,47,9.5,16,0.0 +26054,1,18,33,0.0 +26054,33,2.5,12,0.0 +26054,63,43.9,33,0.0 +26054,61,28.5,25,0.0 +26054,51,53,2,0.0 +26054,60,34,22,0.0 +26054,6,25,46,0.0 +26054,11,21,7,0.0 +26054,26,31.23,11,0.0 +26054,71,21.5,25,0.0 +26055,45,9.5,11,0.0 +26055,40,18.4,26,0.0 +26055,2,19,41,0.0 +26055,50,16.25,14,0.0 +26055,44,19.45,2,0.0 +26055,34,14,25,0.0 +26055,39,18,7,0.0 +26055,24,4.5,47,0.0 +26055,49,20,27,0.0 +26055,68,12.5,49,0.0 +26055,9,97,40,0.0 +26055,61,28.5,7,0.0 +26055,53,32.8,42,0.0 +26055,75,7.75,29,0.0 +26055,15,15.5,27,0.0 +26055,37,26,47,0.0 +26055,76,18,22,0.0 +26055,11,21,47,0.0 +26055,29,123.79,7,0.0 +26055,36,19,34,0.0 +26055,55,24,32,0.0 +26055,47,9.5,16,0.0 +26055,56,38,16,0.0 +26055,63,43.9,44,0.0 +26055,31,12.5,43,0.0 +26055,1,18,6,0.0 +26055,43,46,37,0.0 +26055,28,45.6,29,0.0 +26055,71,21.5,33,0.0 +26055,4,22,20,0.0 +26055,62,49.3,36,0.0 +26055,17,39,37,0.0 +26055,52,7,45,0.0 +26055,6,25,50,0.0 +26055,60,34,49,0.0 +26055,67,14,7,0.0 +26055,65,21.05,20,0.0 +26056,56,38,41,0.0 +26056,49,20,11,0.0 +26057,39,18,49,0.0 +26057,65,21.05,26,0.0 +26057,32,32,35,0.0 +26057,58,13.25,50,0.0 +26057,69,36,16,0.0 +26057,25,14,35,0.0 +26057,3,10,16,0.0 +26058,13,6,13,0.0 +26058,27,43.9,38,0.0 +26058,12,38,15,0.0 +26058,53,32.8,24,0.0 +26058,51,53,18,0.0 +26058,38,263.5,16,0.0 +26058,15,15.5,44,0.0 +26058,76,18,29,0.0 +26058,44,19.45,7,0.0 +26058,42,14,44,0.0 +26058,75,7.75,27,0.0 +26058,29,123.79,5,0.0 +26058,4,22,36,0.0 +26058,48,12.75,30,0.0 +26058,43,46,42,0.0 +26058,77,13,4,0.0 +26058,25,14,49,0.0 +26058,41,9.65,40,0.0 +26058,6,25,46,0.0 +26058,31,12.5,14,0.0 +26058,57,19.5,32,0.0 +26058,59,55,47,0.0 +26058,47,9.5,28,0.0 +26058,10,31,23,0.0 +26058,19,9.2,12,0.0 +26058,71,21.5,38,0.0 +26058,66,17,20,0.0 +26058,46,12,16,0.0 +26058,74,10,46,0.0 +26058,22,21,46,0.0 +26059,1,18,38,0.0 +26059,11,21,24,0.0 +26059,40,18.4,12,0.0 +26059,26,31.23,28,0.0 +26059,74,10,40,0.0 +26059,18,62.5,37,0.0 +26059,45,9.5,27,0.0 +26059,75,7.75,44,0.0 +26059,69,36,42,0.0 +26059,49,20,15,0.0 +26059,12,38,25,0.0 +26059,47,9.5,48,0.0 +26059,34,14,10,0.0 +26059,52,7,9,0.0 +26059,20,81,22,0.0 +26059,60,34,18,0.0 +26059,31,12.5,15,0.0 +26059,66,17,28,0.0 +26059,32,32,49,0.0 +26059,35,18,16,0.0 +26059,61,28.5,3,0.0 +26059,10,31,45,0.0 +26059,72,34.8,21,0.0 +26059,23,9,31,0.0 +26059,4,22,7,0.0 +26059,53,32.8,50,0.0 +26059,56,38,8,0.0 +26059,62,49.3,47,0.0 +26059,57,19.5,22,0.0 +26059,16,17.45,24,0.0 +26059,24,4.5,24,0.0 +26059,28,45.6,34,0.0 +26059,59,55,8,0.0 +26059,17,39,23,0.0 +26059,48,12.75,25,0.0 +26059,21,10,49,0.0 +26059,43,46,24,0.0 +26060,51,53,20,0.0 +26060,15,15.5,45,0.0 +26060,41,9.65,25,0.0 +26060,31,12.5,44,0.0 +26060,18,62.5,44,0.0 +26060,10,31,29,0.0 +26060,36,19,5,0.0 +26060,44,19.45,2,0.0 +26060,4,22,20,0.0 +26060,28,45.6,47,0.0 +26060,66,17,22,0.0 +26060,73,15,19,0.0 +26060,26,31.23,1,0.0 +26060,62,49.3,19,0.0 +26060,11,21,19,0.0 +26060,72,34.8,34,0.0 +26060,29,123.79,17,0.0 +26060,2,19,29,0.0 +26060,45,9.5,25,0.0 +26060,42,14,26,0.0 +26060,19,9.2,32,0.0 +26060,27,43.9,26,0.0 +26060,75,7.75,43,0.0 +26060,1,18,22,0.0 +26060,17,39,6,0.0 +26060,49,20,33,0.0 +26060,69,36,20,0.0 +26060,7,30,1,0.0 +26060,71,21.5,4,0.0 +26060,30,25.89,1,0.0 +26060,47,9.5,26,0.0 +26060,48,12.75,11,0.0 +26060,39,18,12,0.0 +26060,77,13,2,0.0 +26060,21,10,12,0.0 +26060,25,14,17,0.0 +26060,61,28.5,11,0.0 +26060,50,16.25,27,0.0 +26060,20,81,30,0.0 +26060,12,38,45,0.0 +26060,57,19.5,10,0.0 +26060,38,263.5,1,0.0 +26061,26,31.23,40,0.0 +26061,22,21,22,0.0 +26061,40,18.4,30,0.0 +26061,77,13,33,0.0 +26061,49,20,36,0.0 +26061,33,2.5,23,0.0 +26061,28,45.6,6,0.0 +26061,14,23.25,28,0.0 +26061,72,34.8,20,0.0 +26061,51,53,24,0.0 +26061,6,25,35,0.0 +26061,76,18,1,0.0 +26061,71,21.5,3,0.0 +26061,56,38,26,0.0 +26061,7,30,31,0.0 +26061,65,21.05,34,0.0 +26061,3,10,30,0.0 +26061,13,6,48,0.0 +26061,25,14,37,0.0 +26061,23,9,21,0.0 +26061,68,12.5,3,0.0 +26061,50,16.25,32,0.0 +26061,42,14,29,0.0 +26061,1,18,24,0.0 +26061,47,9.5,50,0.0 +26061,62,49.3,23,0.0 +26061,38,263.5,49,0.0 +26061,74,10,45,0.0 +26061,34,14,44,0.0 +26061,37,26,49,0.0 +26061,10,31,14,0.0 +26061,66,17,15,0.0 +26061,45,9.5,32,0.0 +26061,16,17.45,45,0.0 +26061,55,24,18,0.0 +26061,63,43.9,11,0.0 +26061,2,19,12,0.0 +26061,43,46,27,0.0 +26061,35,18,14,0.0 +26061,17,39,48,0.0 +26061,12,38,27,0.0 +26061,64,33.25,13,0.0 +26061,67,14,26,0.0 +26061,9,97,50,0.0 +26061,31,12.5,30,0.0 +26061,53,32.8,25,0.0 +26061,57,19.5,20,0.0 +26061,11,21,34,0.0 +26061,39,18,18,0.0 +26061,69,36,31,0.0 +26061,54,7.45,2,0.0 +26061,59,55,20,0.0 +26061,61,28.5,7,0.0 +26061,52,7,31,0.0 +26061,58,13.25,42,0.0 +26061,48,12.75,26,0.0 +26061,27,43.9,3,0.0 +26061,4,22,19,0.0 +26061,30,25.89,12,0.0 +26061,70,15,24,0.0 +26061,29,123.79,38,0.0 +26062,35,18,43,0.0 +26062,46,12,9,0.0 +26062,21,10,29,0.0 +26062,20,81,10,0.0 +26062,26,31.23,30,0.0 +26062,33,2.5,2,0.0 +26062,37,26,14,0.0 +26062,11,21,48,0.0 +26062,34,14,22,0.0 +26062,29,123.79,12,0.0 +26062,59,55,32,0.0 +26062,23,9,11,0.0 +26062,40,18.4,29,0.0 +26062,66,17,40,0.0 +26062,48,12.75,36,0.0 +26062,30,25.89,19,0.0 +26062,61,28.5,42,0.0 +26062,2,19,27,0.0 +26062,39,18,42,0.0 +26062,45,9.5,7,0.0 +26062,24,4.5,37,0.0 +26062,58,13.25,43,0.0 +26062,31,12.5,19,0.0 +26062,38,263.5,26,0.0 +26062,67,14,24,0.0 +26062,36,19,32,0.0 +26062,5,21.35,16,0.0 +26062,68,12.5,23,0.0 +26062,62,49.3,27,0.0 +26062,64,33.25,10,0.0 +26062,47,9.5,49,0.0 +26062,49,20,35,0.0 +26062,22,21,15,0.0 +26062,70,15,35,0.0 +26062,15,15.5,13,0.0 +26062,12,38,35,0.0 +26062,10,31,1,0.0 +26062,16,17.45,15,0.0 +26062,52,7,45,0.0 +26062,60,34,8,0.0 +26062,74,10,26,0.0 +26062,73,15,15,0.0 +26062,65,21.05,10,0.0 +26062,57,19.5,42,0.0 +26062,54,7.45,32,0.0 +26062,6,25,25,0.0 +26062,32,32,45,0.0 +26062,42,14,24,0.0 +26062,7,30,18,0.0 +26062,44,19.45,20,0.0 +26062,14,23.25,37,0.0 +26062,9,97,37,0.0 +26062,25,14,40,0.0 +26062,3,10,22,0.0 +26062,75,7.75,47,0.0 +26062,56,38,18,0.0 +26062,72,34.8,22,0.0 +26062,53,32.8,8,0.0 +26062,51,53,5,0.0 +26062,28,45.6,28,0.0 +26062,43,46,13,0.0 +26062,19,9.2,17,0.0 +26062,8,40,43,0.0 +26062,13,6,11,0.0 +26062,17,39,23,0.0 +26062,18,62.5,12,0.0 +26062,76,18,42,0.0 +26062,63,43.9,23,0.0 +26062,41,9.65,2,0.0 +26063,66,17,45,0.0 +26063,16,17.45,14,0.0 +26063,6,25,10,0.0 +26063,30,25.89,4,0.0 +26063,17,39,49,0.0 +26063,75,7.75,45,0.0 +26063,55,24,25,0.0 +26063,62,49.3,32,0.0 +26063,22,21,36,0.0 +26063,50,16.25,15,0.0 +26063,29,123.79,18,0.0 +26064,23,9,22,0.0 +26064,62,49.3,49,0.0 +26064,13,6,43,0.0 +26064,49,20,21,0.0 +26064,40,18.4,6,0.0 +26064,46,12,27,0.0 +26064,70,15,43,0.0 +26064,28,45.6,4,0.0 +26064,60,34,45,0.0 +26064,27,43.9,6,0.0 +26064,53,32.8,34,0.0 +26064,20,81,22,0.0 +26064,52,7,20,0.0 +26064,8,40,15,0.0 +26064,24,4.5,11,0.0 +26064,22,21,8,0.0 +26064,5,21.35,45,0.0 +26064,32,32,22,0.0 +26064,9,97,4,0.0 +26064,34,14,9,0.0 +26064,44,19.45,44,0.0 +26064,69,36,22,0.0 +26064,45,9.5,13,0.0 +26064,42,14,25,0.0 +26064,37,26,49,0.0 +26064,61,28.5,5,0.0 +26064,56,38,33,0.0 +26064,12,38,18,0.0 +26064,19,9.2,48,0.0 +26064,1,18,12,0.0 +26064,48,12.75,19,0.0 +26064,39,18,29,0.0 +26064,66,17,19,0.0 +26064,71,21.5,27,0.0 +26064,38,263.5,48,0.0 +26064,51,53,15,0.0 +26064,2,19,37,0.0 +26064,63,43.9,43,0.0 +26064,11,21,22,0.0 +26064,31,12.5,27,0.0 +26064,30,25.89,35,0.0 +26064,15,15.5,35,0.0 +26064,64,33.25,17,0.0 +26064,50,16.25,10,0.0 +26064,65,21.05,31,0.0 +26064,67,14,40,0.0 +26064,36,19,37,0.0 +26064,3,10,40,0.0 +26064,33,2.5,23,0.0 +26064,68,12.5,17,0.0 +26064,41,9.65,47,0.0 +26064,16,17.45,7,0.0 +26064,72,34.8,6,0.0 +26064,7,30,30,0.0 +26064,55,24,47,0.0 +26064,73,15,42,0.0 +26064,54,7.45,6,0.0 +26064,29,123.79,13,0.0 +26065,72,34.8,16,0.0 +26065,51,53,29,0.0 +26065,74,10,16,0.0 +26065,61,28.5,12,0.0 +26065,18,62.5,37,0.0 +26065,76,18,20,0.0 +26066,11,21,29,0.0 +26066,50,16.25,21,0.0 +26066,72,34.8,14,0.0 +26066,44,19.45,43,0.0 +26066,22,21,49,0.0 +26066,62,49.3,26,0.0 +26066,69,36,24,0.0 +26066,51,53,11,0.0 +26066,38,263.5,3,0.0 +26066,52,7,47,0.0 +26066,13,6,39,0.0 +26066,14,23.25,15,0.0 +26066,15,15.5,48,0.0 +26066,29,123.79,3,0.0 +26066,48,12.75,25,0.0 +26066,68,12.5,3,0.0 +26066,65,21.05,20,0.0 +26066,70,15,14,0.0 +26066,19,9.2,32,0.0 +26066,66,17,43,0.0 +26066,54,7.45,40,0.0 +26066,33,2.5,1,0.0 +26066,73,15,50,0.0 +26066,8,40,35,0.0 +26067,7,30,22,0.0 +26067,69,36,12,0.0 +26067,56,38,33,0.0 +26067,21,10,27,0.0 +26067,3,10,40,0.0 +26067,39,18,9,0.0 +26067,77,13,11,0.0 +26067,10,31,45,0.0 +26067,19,9.2,19,0.0 +26067,66,17,33,0.0 +26067,48,12.75,48,0.0 +26067,61,28.5,30,0.0 +26067,59,55,26,0.0 +26067,15,15.5,7,0.0 +26067,73,15,8,0.0 +26067,12,38,21,0.0 +26067,42,14,37,0.0 +26067,6,25,12,0.0 +26067,70,15,33,0.0 +26067,62,49.3,18,0.0 +26067,1,18,19,0.0 +26067,29,123.79,40,0.0 +26067,65,21.05,23,0.0 +26067,24,4.5,10,0.0 +26067,40,18.4,9,0.0 +26067,50,16.25,48,0.0 +26067,47,9.5,48,0.0 +26067,20,81,9,0.0 +26067,33,2.5,17,0.0 +26067,67,14,9,0.0 +26067,31,12.5,23,0.0 +26067,13,6,17,0.0 +26067,5,21.35,45,0.0 +26067,57,19.5,32,0.0 +26067,75,7.75,44,0.0 +26067,4,22,27,0.0 +26067,60,34,44,0.0 +26067,64,33.25,39,0.0 +26067,17,39,35,0.0 +26067,9,97,49,0.0 +26067,16,17.45,14,0.0 +26067,46,12,15,0.0 +26067,54,7.45,27,0.0 +26067,11,21,15,0.0 +26067,41,9.65,17,0.0 +26067,38,263.5,10,0.0 +26067,32,32,50,0.0 +26067,49,20,8,0.0 +26067,18,62.5,44,0.0 +26067,2,19,1,0.0 +26067,14,23.25,17,0.0 +26067,43,46,16,0.0 +26067,30,25.89,22,0.0 +26067,63,43.9,10,0.0 +26067,52,7,15,0.0 +26067,74,10,50,0.0 +26067,72,34.8,38,0.0 +26067,58,13.25,21,0.0 +26068,23,9,39,0.0 +26068,62,49.3,23,0.0 +26068,25,14,9,0.0 +26068,5,21.35,15,0.0 +26068,77,13,1,0.0 +26068,75,7.75,33,0.0 +26069,65,21.05,2,0.0 +26069,39,18,10,0.0 +26069,37,26,5,0.0 +26069,62,49.3,14,0.0 +26069,6,25,44,0.0 +26069,40,18.4,30,0.0 +26069,11,21,35,0.0 +26069,51,53,8,0.0 +26069,23,9,20,0.0 +26069,22,21,3,0.0 +26069,53,32.8,33,0.0 +26069,54,7.45,11,0.0 +26069,49,20,41,0.0 +26069,46,12,5,0.0 +26069,12,38,30,0.0 +26069,76,18,4,0.0 +26069,69,36,42,0.0 +26069,50,16.25,28,0.0 +26069,47,9.5,49,0.0 +26069,30,25.89,17,0.0 +26069,60,34,48,0.0 +26069,72,34.8,48,0.0 +26069,17,39,1,0.0 +26069,36,19,22,0.0 +26069,77,13,27,0.0 +26069,3,10,46,0.0 +26069,25,14,35,0.0 +26069,44,19.45,36,0.0 +26069,34,14,33,0.0 +26069,8,40,19,0.0 +26069,41,9.65,17,0.0 +26069,2,19,46,0.0 +26069,43,46,6,0.0 +26069,4,22,2,0.0 +26069,15,15.5,24,0.0 +26069,21,10,34,0.0 +26069,16,17.45,22,0.0 +26069,70,15,16,0.0 +26069,27,43.9,9,0.0 +26069,35,18,41,0.0 +26069,61,28.5,13,0.0 +26069,10,31,49,0.0 +26069,74,10,46,0.0 +26069,59,55,35,0.0 +26069,71,21.5,31,0.0 +26069,13,6,18,0.0 +26069,38,263.5,35,0.0 +26069,64,33.25,25,0.0 +26069,29,123.79,21,0.0 +26069,63,43.9,19,0.0 +26069,14,23.25,48,0.0 +26069,58,13.25,50,0.0 +26069,52,7,39,0.0 +26069,48,12.75,48,0.0 +26069,57,19.5,2,0.0 +26069,19,9.2,15,0.0 +26069,20,81,2,0.0 +26069,18,62.5,13,0.0 +26069,26,31.23,10,0.0 +26070,24,4.5,6,0.0 +26070,4,22,32,0.0 +26070,50,16.25,2,0.0 +26070,10,31,50,0.0 +26070,14,23.25,49,0.0 +26070,41,9.65,19,0.0 +26070,55,24,17,0.0 +26070,33,2.5,30,0.0 +26070,7,30,35,0.0 +26070,46,12,18,0.0 +26070,75,7.75,45,0.0 +26070,52,7,25,0.0 +26070,12,38,37,0.0 +26070,62,49.3,42,0.0 +26070,6,25,30,0.0 +26070,48,12.75,25,0.0 +26070,2,19,50,0.0 +26070,57,19.5,46,0.0 +26070,47,9.5,40,0.0 +26070,35,18,15,0.0 +26070,3,10,31,0.0 +26070,18,62.5,17,0.0 +26070,65,21.05,42,0.0 +26070,37,26,30,0.0 +26070,68,12.5,28,0.0 +26070,9,97,28,0.0 +26070,72,34.8,9,0.0 +26070,1,18,45,0.0 +26070,43,46,49,0.0 +26070,53,32.8,18,0.0 +26070,40,18.4,4,0.0 +26070,23,9,25,0.0 +26070,27,43.9,40,0.0 +26070,74,10,24,0.0 +26070,42,14,13,0.0 +26070,73,15,20,0.0 +26071,27,43.9,36,0.0 +26071,24,4.5,45,0.0 +26071,75,7.75,17,0.0 +26071,26,31.23,46,0.0 +26071,73,15,43,0.0 +26071,70,15,5,0.0 +26071,29,123.79,23,0.0 +26071,77,13,16,0.0 +26071,25,14,32,0.0 +26071,68,12.5,46,0.0 +26071,21,10,32,0.0 +26071,58,13.25,17,0.0 +26071,39,18,18,0.0 +26071,16,17.45,48,0.0 +26071,57,19.5,3,0.0 +26071,76,18,43,0.0 +26071,23,9,29,0.0 +26071,9,97,17,0.0 +26071,17,39,7,0.0 +26071,48,12.75,23,0.0 +26071,36,19,33,0.0 +26071,15,15.5,50,0.0 +26071,47,9.5,10,0.0 +26071,19,9.2,14,0.0 +26071,30,25.89,24,0.0 +26071,41,9.65,41,0.0 +26071,14,23.25,18,0.0 +26071,46,12,12,0.0 +26071,56,38,47,0.0 +26071,1,18,24,0.0 +26071,65,21.05,26,0.0 +26071,64,33.25,38,0.0 +26071,71,21.5,1,0.0 +26071,18,62.5,31,0.0 +26071,59,55,27,0.0 +26071,40,18.4,8,0.0 +26071,37,26,36,0.0 +26071,13,6,1,0.0 +26071,3,10,8,0.0 +26071,72,34.8,30,0.0 +26071,20,81,38,0.0 +26071,51,53,15,0.0 +26071,34,14,18,0.0 +26071,55,24,32,0.0 +26071,35,18,23,0.0 +26071,2,19,35,0.0 +26071,44,19.45,41,0.0 +26071,31,12.5,42,0.0 +26071,45,9.5,31,0.0 +26071,28,45.6,26,0.0 +26071,60,34,25,0.0 +26071,69,36,16,0.0 +26071,43,46,21,0.0 +26071,50,16.25,32,0.0 +26071,12,38,32,0.0 +26071,52,7,33,0.0 +26071,7,30,43,0.0 +26071,33,2.5,40,0.0 +26071,42,14,34,0.0 +26071,49,20,48,0.0 +26071,74,10,33,0.0 +26071,54,7.45,37,0.0 +26071,66,17,13,0.0 +26071,67,14,44,0.0 +26071,22,21,7,0.0 +26071,4,22,1,0.0 +26071,63,43.9,41,0.0 +26072,67,14,40,0.0 +26072,9,97,31,0.0 +26072,77,13,50,0.0 +26072,33,2.5,38,0.0 +26072,75,7.75,47,0.0 +26072,36,19,2,0.0 +26072,47,9.5,33,0.0 +26072,13,6,39,0.0 +26072,71,21.5,31,0.0 +26072,10,31,2,0.0 +26072,28,45.6,32,0.0 +26072,19,9.2,16,0.0 +26072,6,25,24,0.0 +26072,41,9.65,32,0.0 +26072,50,16.25,9,0.0 +26072,31,12.5,1,0.0 +26072,40,18.4,38,0.0 +26072,1,18,36,0.0 +26072,64,33.25,29,0.0 +26072,2,19,48,0.0 +26072,56,38,24,0.0 +26072,26,31.23,43,0.0 +26072,43,46,21,0.0 +26072,51,53,44,0.0 +26072,68,12.5,22,0.0 +26072,4,22,21,0.0 +26072,34,14,13,0.0 +26072,20,81,34,0.0 +26072,18,62.5,11,0.0 +26072,44,19.45,8,0.0 +26072,24,4.5,36,0.0 +26072,30,25.89,9,0.0 +26072,16,17.45,48,0.0 +26072,53,32.8,30,0.0 +26072,14,23.25,50,0.0 +26072,22,21,47,0.0 +26072,25,14,25,0.0 +26072,12,38,4,0.0 +26072,73,15,21,0.0 +26072,74,10,48,0.0 +26072,63,43.9,47,0.0 +26072,49,20,29,0.0 +26072,62,49.3,17,0.0 +26072,58,13.25,19,0.0 +26072,60,34,24,0.0 +26072,48,12.75,36,0.0 +26072,15,15.5,29,0.0 +26072,52,7,14,0.0 +26072,17,39,27,0.0 +26072,70,15,11,0.0 +26072,54,7.45,36,0.0 +26072,27,43.9,16,0.0 +26072,57,19.5,1,0.0 +26072,65,21.05,37,0.0 +26072,38,263.5,10,0.0 +26072,76,18,17,0.0 +26072,29,123.79,3,0.0 +26072,61,28.5,3,0.0 +26073,54,7.45,2,0.0 +26073,46,12,14,0.0 +26073,55,24,4,0.0 +26073,10,31,21,0.0 +26073,73,15,45,0.0 +26073,21,10,3,0.0 +26073,18,62.5,17,0.0 +26073,22,21,7,0.0 +26073,66,17,44,0.0 +26073,31,12.5,42,0.0 +26073,45,9.5,41,0.0 +26073,14,23.25,33,0.0 +26073,61,28.5,7,0.0 +26073,9,97,7,0.0 +26073,60,34,20,0.0 +26073,27,43.9,10,0.0 +26073,62,49.3,49,0.0 +26073,19,9.2,11,0.0 +26073,37,26,42,0.0 +26073,13,6,41,0.0 +26073,40,18.4,35,0.0 +26073,58,13.25,2,0.0 +26073,12,38,6,0.0 +26073,1,18,42,0.0 +26073,24,4.5,20,0.0 +26073,39,18,25,0.0 +26073,20,81,47,0.0 +26073,75,7.75,9,0.0 +26073,64,33.25,29,0.0 +26073,48,12.75,49,0.0 +26073,50,16.25,50,0.0 +26073,71,21.5,16,0.0 +26073,74,10,44,0.0 +26073,41,9.65,2,0.0 +26073,70,15,40,0.0 +26073,5,21.35,39,0.0 +26073,43,46,47,0.0 +26073,72,34.8,13,0.0 +26073,68,12.5,46,0.0 +26073,63,43.9,40,0.0 +26073,52,7,8,0.0 +26073,47,9.5,21,0.0 +26073,26,31.23,29,0.0 +26073,2,19,24,0.0 +26073,53,32.8,30,0.0 +26073,57,19.5,17,0.0 +26073,67,14,50,0.0 +26073,56,38,18,0.0 +26073,15,15.5,49,0.0 +26073,8,40,41,0.0 +26073,65,21.05,8,0.0 +26073,28,45.6,1,0.0 +26073,25,14,14,0.0 +26073,44,19.45,2,0.0 +26073,77,13,11,0.0 +26073,3,10,49,0.0 +26073,59,55,15,0.0 +26073,34,14,17,0.0 +26074,33,2.5,27,0.0 +26074,40,18.4,12,0.0 +26074,60,34,14,0.0 +26074,30,25.89,42,0.0 +26074,23,9,43,0.0 +26075,53,32.8,42,0.0 +26075,45,9.5,4,0.0 +26075,1,18,6,0.0 +26075,39,18,34,0.0 +26075,52,7,6,0.0 +26075,43,46,29,0.0 +26075,33,2.5,24,0.0 +26075,58,13.25,43,0.0 +26075,54,7.45,17,0.0 +26075,14,23.25,36,0.0 +26075,63,43.9,10,0.0 +26075,12,38,48,0.0 +26075,11,21,43,0.0 +26075,26,31.23,36,0.0 +26075,51,53,7,0.0 +26075,67,14,1,0.0 +26075,8,40,37,0.0 +26075,37,26,32,0.0 +26075,42,14,24,0.0 +26075,55,24,22,0.0 +26075,21,10,1,0.0 +26075,24,4.5,34,0.0 +26075,23,9,19,0.0 +26075,76,18,49,0.0 +26076,29,123.79,36,0.0 +26076,22,21,8,0.0 +26076,38,263.5,50,0.0 +26076,30,25.89,29,0.0 +26076,65,21.05,18,0.0 +26076,62,49.3,23,0.0 +26076,74,10,40,0.0 +26076,61,28.5,12,0.0 +26076,73,15,21,0.0 +26076,41,9.65,33,0.0 +26076,77,13,33,0.0 +26076,2,19,38,0.0 +26076,39,18,2,0.0 +26076,67,14,1,0.0 +26076,4,22,23,0.0 +26076,66,17,28,0.0 +26076,63,43.9,40,0.0 +26076,49,20,36,0.0 +26076,75,7.75,9,0.0 +26076,35,18,50,0.0 +26076,48,12.75,49,0.0 +26076,19,9.2,21,0.0 +26076,76,18,13,0.0 +26076,9,97,29,0.0 +26076,58,13.25,2,0.0 +26076,50,16.25,35,0.0 +26076,32,32,12,0.0 +26076,54,7.45,48,0.0 +26076,60,34,17,0.0 +26076,47,9.5,5,0.0 +26076,27,43.9,27,0.0 +26076,28,45.6,7,0.0 +26076,13,6,8,0.0 +26077,71,21.5,13,0.0 +26077,52,7,5,0.0 +26077,57,19.5,4,0.0 +26077,32,32,11,0.0 +26077,59,55,47,0.0 +26077,14,23.25,32,0.0 +26077,61,28.5,40,0.0 +26077,45,9.5,12,0.0 +26077,13,6,37,0.0 +26077,39,18,13,0.0 +26077,54,7.45,34,0.0 +26077,47,9.5,11,0.0 +26077,19,9.2,40,0.0 +26077,34,14,36,0.0 +26077,40,18.4,43,0.0 +26077,29,123.79,36,0.0 +26077,21,10,8,0.0 +26077,30,25.89,48,0.0 +26077,31,12.5,32,0.0 +26077,35,18,5,0.0 +26077,1,18,38,0.0 +26077,53,32.8,3,0.0 +26077,58,13.25,4,0.0 +26077,75,7.75,3,0.0 +26077,43,46,33,0.0 +26077,16,17.45,6,0.0 +26077,48,12.75,48,0.0 +26077,38,263.5,48,0.0 +26077,37,26,28,0.0 +26077,8,40,8,0.0 +26077,12,38,14,0.0 +26077,5,21.35,47,0.0 +26077,25,14,41,0.0 +26077,69,36,6,0.0 +26077,2,19,1,0.0 +26077,70,15,41,0.0 +26077,24,4.5,50,0.0 +26077,41,9.65,34,0.0 +26077,76,18,27,0.0 +26077,18,62.5,37,0.0 +26077,6,25,11,0.0 +26077,55,24,35,0.0 +26077,46,12,49,0.0 +26077,36,19,36,0.0 +26077,73,15,50,0.0 +26077,17,39,17,0.0 +26077,44,19.45,40,0.0 +26077,63,43.9,7,0.0 +26077,15,15.5,47,0.0 +26077,22,21,34,0.0 +26077,60,34,30,0.0 +26077,72,34.8,7,0.0 +26077,51,53,17,0.0 +26077,23,9,49,0.0 +26077,77,13,33,0.0 +26077,74,10,21,0.0 +26077,3,10,19,0.0 +26077,26,31.23,37,0.0 +26077,10,31,16,0.0 +26077,67,14,48,0.0 +26077,65,21.05,44,0.0 +26077,49,20,42,0.0 +26077,64,33.25,46,0.0 +26078,61,28.5,14,0.0 +26078,39,18,20,0.0 +26078,35,18,8,0.0 +26078,54,7.45,37,0.0 +26078,42,14,29,0.0 +26078,5,21.35,22,0.0 +26078,77,13,4,0.0 +26078,72,34.8,24,0.0 +26078,37,26,4,0.0 +26078,6,25,13,0.0 +26078,14,23.25,38,0.0 +26078,58,13.25,16,0.0 +26078,55,24,35,0.0 +26078,7,30,15,0.0 +26078,49,20,15,0.0 +26078,66,17,15,0.0 +26078,69,36,12,0.0 +26078,76,18,45,0.0 +26078,23,9,4,0.0 +26078,31,12.5,19,0.0 +26078,50,16.25,8,0.0 +26078,45,9.5,36,0.0 +26078,17,39,24,0.0 +26078,52,7,47,0.0 +26078,74,10,9,0.0 +26078,59,55,12,0.0 +26078,3,10,21,0.0 +26078,48,12.75,30,0.0 +26078,32,32,34,0.0 +26078,53,32.8,28,0.0 +26078,68,12.5,13,0.0 +26078,24,4.5,30,0.0 +26078,47,9.5,28,0.0 +26078,4,22,35,0.0 +26078,44,19.45,42,0.0 +26078,15,15.5,10,0.0 +26078,67,14,11,0.0 +26078,12,38,10,0.0 +26078,30,25.89,1,0.0 +26078,21,10,37,0.0 +26078,64,33.25,36,0.0 +26078,10,31,42,0.0 +26078,36,19,17,0.0 +26078,25,14,1,0.0 +26078,38,263.5,28,0.0 +26078,22,21,5,0.0 +26078,11,21,35,0.0 +26078,20,81,44,0.0 +26078,62,49.3,5,0.0 +26078,57,19.5,9,0.0 +26078,41,9.65,40,0.0 +26078,1,18,9,0.0 +26078,29,123.79,48,0.0 +26078,16,17.45,31,0.0 +26078,34,14,24,0.0 +26078,71,21.5,39,0.0 +26078,18,62.5,18,0.0 +26079,32,32,38,0.0 +26079,9,97,21,0.0 +26079,41,9.65,34,0.0 +26079,73,15,36,0.0 +26079,19,9.2,15,0.0 +26079,25,14,30,0.0 +26079,39,18,24,0.0 +26079,33,2.5,48,0.0 +26080,44,19.45,35,0.0 +26080,74,10,25,0.0 +26080,42,14,14,0.0 +26080,33,2.5,19,0.0 +26080,5,21.35,7,0.0 +26080,61,28.5,6,0.0 +26080,17,39,6,0.0 +26080,22,21,2,0.0 +26080,67,14,34,0.0 +26080,14,23.25,19,0.0 +26080,72,34.8,17,0.0 +26080,53,32.8,17,0.0 +26080,37,26,41,0.0 +26080,23,9,22,0.0 +26080,6,25,32,0.0 +26080,31,12.5,9,0.0 +26080,40,18.4,4,0.0 +26080,59,55,30,0.0 +26080,29,123.79,34,0.0 +26080,32,32,4,0.0 +26080,73,15,5,0.0 +26080,13,6,24,0.0 +26080,71,21.5,3,0.0 +26080,51,53,33,0.0 +26080,56,38,37,0.0 +26080,2,19,13,0.0 +26080,39,18,25,0.0 +26080,4,22,9,0.0 +26080,60,34,29,0.0 +26080,11,21,5,0.0 +26080,18,62.5,35,0.0 +26080,27,43.9,35,0.0 +26080,65,21.05,1,0.0 +26080,69,36,11,0.0 +26080,21,10,45,0.0 +26080,25,14,16,0.0 +26080,47,9.5,8,0.0 +26080,75,7.75,1,0.0 +26080,70,15,21,0.0 +26080,50,16.25,23,0.0 +26080,77,13,30,0.0 +26080,41,9.65,17,0.0 +26080,54,7.45,23,0.0 +26080,35,18,14,0.0 +26080,8,40,11,0.0 +26080,68,12.5,47,0.0 +26080,1,18,43,0.0 +26080,64,33.25,38,0.0 +26080,19,9.2,28,0.0 +26080,66,17,49,0.0 +26080,43,46,9,0.0 +26080,28,45.6,44,0.0 +26080,76,18,7,0.0 +26080,49,20,8,0.0 +26081,69,36,34,0.0 +26081,60,34,25,0.0 +26081,26,31.23,1,0.0 +26081,73,15,26,0.0 +26081,5,21.35,18,0.0 +26081,14,23.25,28,0.0 +26081,13,6,44,0.0 +26081,39,18,15,0.0 +26081,25,14,22,0.0 +26081,61,28.5,23,0.0 +26081,75,7.75,48,0.0 +26081,48,12.75,37,0.0 +26081,62,49.3,30,0.0 +26081,1,18,34,0.0 +26081,24,4.5,18,0.0 +26081,16,17.45,45,0.0 +26081,36,19,30,0.0 +26081,50,16.25,23,0.0 +26082,68,12.5,16,0.0 +26082,33,2.5,44,0.0 +26082,18,62.5,27,0.0 +26082,69,36,43,0.0 +26082,26,31.23,25,0.0 +26082,12,38,9,0.0 +26082,57,19.5,4,0.0 +26082,41,9.65,47,0.0 +26082,21,10,31,0.0 +26082,11,21,46,0.0 +26082,62,49.3,49,0.0 +26082,64,33.25,39,0.0 +26082,76,18,3,0.0 +26082,25,14,7,0.0 +26082,9,97,10,0.0 +26082,5,21.35,50,0.0 +26082,77,13,23,0.0 +26082,74,10,7,0.0 +26082,20,81,18,0.0 +26082,4,22,24,0.0 +26082,2,19,32,0.0 +26082,3,10,9,0.0 +26082,55,24,45,0.0 +26082,46,12,32,0.0 +26082,39,18,1,0.0 +26082,13,6,22,0.0 +26082,40,18.4,41,0.0 +26082,6,25,12,0.0 +26082,36,19,45,0.0 +26082,54,7.45,2,0.0 +26082,51,53,39,0.0 +26082,58,13.25,13,0.0 +26082,56,38,32,0.0 +26082,70,15,4,0.0 +26082,61,28.5,38,0.0 +26082,7,30,13,0.0 +26082,59,55,37,0.0 +26082,44,19.45,10,0.0 +26082,43,46,19,0.0 +26082,73,15,20,0.0 +26082,52,7,40,0.0 +26082,8,40,9,0.0 +26082,10,31,3,0.0 +26082,38,263.5,44,0.0 +26082,71,21.5,27,0.0 +26082,15,15.5,27,0.0 +26082,32,32,25,0.0 +26082,49,20,27,0.0 +26082,17,39,37,0.0 +26083,3,10,7,0.0 +26083,26,31.23,45,0.0 +26083,41,9.65,30,0.0 +26083,61,28.5,42,0.0 +26083,45,9.5,20,0.0 +26083,23,9,41,0.0 +26083,18,62.5,15,0.0 +26083,43,46,29,0.0 +26083,39,18,2,0.0 +26083,59,55,25,0.0 +26083,24,4.5,20,0.0 +26083,63,43.9,38,0.0 +26083,21,10,40,0.0 +26083,8,40,26,0.0 +26083,72,34.8,46,0.0 +26083,35,18,44,0.0 +26083,36,19,24,0.0 +26083,34,14,8,0.0 +26083,9,97,21,0.0 +26083,32,32,40,0.0 +26083,4,22,23,0.0 +26083,47,9.5,49,0.0 +26083,42,14,15,0.0 +26083,64,33.25,26,0.0 +26083,37,26,35,0.0 +26083,14,23.25,13,0.0 +26083,52,7,34,0.0 +26083,49,20,15,0.0 +26083,31,12.5,2,0.0 +26083,2,19,18,0.0 +26083,48,12.75,42,0.0 +26083,74,10,20,0.0 +26083,6,25,1,0.0 +26083,12,38,13,0.0 +26083,69,36,22,0.0 +26083,40,18.4,26,0.0 +26083,28,45.6,4,0.0 +26083,70,15,27,0.0 +26083,27,43.9,10,0.0 +26083,77,13,40,0.0 +26083,57,19.5,24,0.0 +26083,55,24,44,0.0 +26083,73,15,10,0.0 +26083,17,39,11,0.0 +26083,11,21,15,0.0 +26083,75,7.75,49,0.0 +26083,65,21.05,19,0.0 +26083,67,14,46,0.0 +26084,3,10,48,0.0 +26084,28,45.6,42,0.0 +26084,10,31,19,0.0 +26084,63,43.9,26,0.0 +26084,36,19,17,0.0 +26084,6,25,47,0.0 +26084,20,81,37,0.0 +26084,26,31.23,43,0.0 +26084,74,10,31,0.0 +26084,39,18,9,0.0 +26084,23,9,47,0.0 +26084,42,14,28,0.0 +26084,38,263.5,4,0.0 +26084,14,23.25,19,0.0 +26084,69,36,36,0.0 +26084,58,13.25,2,0.0 +26084,19,9.2,3,0.0 +26084,41,9.65,9,0.0 +26084,77,13,44,0.0 +26084,73,15,38,0.0 +26084,64,33.25,19,0.0 +26084,56,38,21,0.0 +26084,71,21.5,28,0.0 +26084,33,2.5,27,0.0 +26084,61,28.5,32,0.0 +26084,15,15.5,14,0.0 +26084,9,97,48,0.0 +26084,18,62.5,15,0.0 +26084,12,38,2,0.0 +26084,4,22,6,0.0 +26084,32,32,9,0.0 +26084,70,15,48,0.0 +26084,46,12,9,0.0 +26084,48,12.75,23,0.0 +26084,62,49.3,31,0.0 +26084,52,7,41,0.0 +26085,77,13,41,0.0 +26085,75,7.75,1,0.0 +26085,39,18,41,0.0 +26085,57,19.5,3,0.0 +26085,23,9,44,0.0 +26085,21,10,43,0.0 +26085,73,15,27,0.0 +26085,50,16.25,40,0.0 +26085,76,18,48,0.0 +26085,22,21,18,0.0 +26085,37,26,39,0.0 +26085,48,12.75,36,0.0 +26085,26,31.23,12,0.0 +26085,65,21.05,10,0.0 +26085,19,9.2,10,0.0 +26085,56,38,15,0.0 +26085,69,36,21,0.0 +26085,33,2.5,29,0.0 +26085,14,23.25,17,0.0 +26085,16,17.45,43,0.0 +26085,1,18,24,0.0 +26085,2,19,45,0.0 +26085,11,21,18,0.0 +26085,62,49.3,24,0.0 +26085,31,12.5,4,0.0 +26085,61,28.5,28,0.0 +26085,47,9.5,26,0.0 +26085,66,17,15,0.0 +26085,10,31,21,0.0 +26085,71,21.5,25,0.0 +26085,18,62.5,4,0.0 +26085,46,12,22,0.0 +26085,64,33.25,30,0.0 +26085,54,7.45,7,0.0 +26085,32,32,35,0.0 +26085,20,81,30,0.0 +26085,40,18.4,49,0.0 +26085,49,20,38,0.0 +26085,9,97,20,0.0 +26085,70,15,26,0.0 +26085,51,53,40,0.0 +26085,43,46,44,0.0 +26085,25,14,50,0.0 +26085,41,9.65,26,0.0 +26085,36,19,36,0.0 +26085,35,18,17,0.0 +26085,44,19.45,26,0.0 +26085,59,55,2,0.0 +26085,17,39,40,0.0 +26085,8,40,15,0.0 +26085,34,14,28,0.0 +26085,27,43.9,49,0.0 +26085,52,7,35,0.0 +26085,24,4.5,41,0.0 +26085,74,10,45,0.0 +26085,53,32.8,24,0.0 +26085,42,14,7,0.0 +26085,13,6,38,0.0 +26085,28,45.6,32,0.0 +26085,38,263.5,36,0.0 +26085,45,9.5,49,0.0 +26085,12,38,21,0.0 +26085,7,30,32,0.0 +26085,4,22,26,0.0 +26085,63,43.9,12,0.0 +26085,58,13.25,16,0.0 +26085,55,24,22,0.0 +26085,30,25.89,1,0.0 +26086,40,18.4,4,0.0 +26086,61,28.5,49,0.0 +26086,26,31.23,10,0.0 +26086,56,38,36,0.0 +26086,37,26,29,0.0 +26086,55,24,5,0.0 +26086,52,7,50,0.0 +26087,39,18,47,0.0 +26087,68,12.5,27,0.0 +26087,1,18,2,0.0 +26087,75,7.75,43,0.0 +26087,36,19,2,0.0 +26087,22,21,35,0.0 +26087,8,40,37,0.0 +26087,37,26,11,0.0 +26087,53,32.8,4,0.0 +26087,72,34.8,21,0.0 +26087,12,38,47,0.0 +26087,30,25.89,44,0.0 +26087,13,6,16,0.0 +26087,69,36,41,0.0 +26087,10,31,35,0.0 +26087,32,32,7,0.0 +26087,50,16.25,6,0.0 +26087,59,55,30,0.0 +26087,70,15,48,0.0 +26087,27,43.9,33,0.0 +26087,58,13.25,7,0.0 +26087,31,12.5,21,0.0 +26087,6,25,38,0.0 +26087,74,10,37,0.0 +26087,20,81,11,0.0 +26087,71,21.5,33,0.0 +26087,24,4.5,9,0.0 +26087,57,19.5,4,0.0 +26087,7,30,11,0.0 +26087,66,17,27,0.0 +26087,33,2.5,44,0.0 +26087,35,18,45,0.0 +26087,46,12,27,0.0 +26087,60,34,18,0.0 +26087,19,9.2,20,0.0 +26087,51,53,4,0.0 +26087,41,9.65,3,0.0 +26087,23,9,14,0.0 +26087,62,49.3,23,0.0 +26087,34,14,19,0.0 +26087,17,39,37,0.0 +26087,54,7.45,26,0.0 +26087,43,46,1,0.0 +26087,9,97,6,0.0 +26087,63,43.9,41,0.0 +26087,67,14,25,0.0 +26087,48,12.75,16,0.0 +26087,65,21.05,4,0.0 +26087,25,14,32,0.0 +26087,3,10,48,0.0 +26087,11,21,8,0.0 +26087,44,19.45,28,0.0 +26087,76,18,28,0.0 +26087,52,7,46,0.0 +26087,64,33.25,42,0.0 +26087,38,263.5,33,0.0 +26087,77,13,41,0.0 +26087,40,18.4,45,0.0 +26087,61,28.5,27,0.0 +26087,49,20,4,0.0 +26087,42,14,4,0.0 +26087,18,62.5,21,0.0 +26087,29,123.79,23,0.0 +26087,16,17.45,20,0.0 +26087,45,9.5,40,0.0 +26087,56,38,43,0.0 +26088,3,10,13,0.0 +26088,60,34,30,0.0 +26088,19,9.2,1,0.0 +26088,7,30,7,0.0 +26088,31,12.5,2,0.0 +26088,21,10,15,0.0 +26088,63,43.9,12,0.0 +26088,28,45.6,46,0.0 +26088,48,12.75,5,0.0 +26088,8,40,48,0.0 +26088,71,21.5,42,0.0 +26088,52,7,20,0.0 +26088,62,49.3,2,0.0 +26088,73,15,32,0.0 +26088,55,24,43,0.0 +26088,74,10,25,0.0 +26088,34,14,18,0.0 +26088,32,32,27,0.0 +26088,2,19,36,0.0 +26088,61,28.5,22,0.0 +26088,39,18,46,0.0 +26088,38,263.5,31,0.0 +26088,25,14,6,0.0 +26088,26,31.23,8,0.0 +26088,77,13,44,0.0 +26088,45,9.5,5,0.0 +26088,58,13.25,44,0.0 +26088,37,26,50,0.0 +26088,43,46,29,0.0 +26088,75,7.75,26,0.0 +26088,24,4.5,27,0.0 +26089,49,20,44,0.0 +26089,4,22,13,0.0 +26089,65,21.05,9,0.0 +26089,6,25,38,0.0 +26089,59,55,25,0.0 +26089,37,26,22,0.0 +26089,76,18,35,0.0 +26089,24,4.5,49,0.0 +26089,73,15,23,0.0 +26089,12,38,44,0.0 +26089,16,17.45,10,0.0 +26089,36,19,48,0.0 +26089,17,39,37,0.0 +26089,70,15,40,0.0 +26089,15,15.5,43,0.0 +26089,61,28.5,12,0.0 +26089,64,33.25,4,0.0 +26089,14,23.25,46,0.0 +26089,68,12.5,24,0.0 +26089,5,21.35,30,0.0 +26089,18,62.5,30,0.0 +26089,32,32,2,0.0 +26089,26,31.23,10,0.0 +26089,48,12.75,50,0.0 +26089,53,32.8,11,0.0 +26089,56,38,19,0.0 +26089,44,19.45,40,0.0 +26089,77,13,21,0.0 +26089,39,18,28,0.0 +26089,34,14,13,0.0 +26089,58,13.25,24,0.0 +26089,60,34,6,0.0 +26089,8,40,13,0.0 +26089,57,19.5,8,0.0 +26089,63,43.9,16,0.0 +26089,1,18,16,0.0 +26089,33,2.5,38,0.0 +26089,30,25.89,8,0.0 +26089,10,31,29,0.0 +26089,41,9.65,50,0.0 +26089,40,18.4,41,0.0 +26089,7,30,18,0.0 +26089,35,18,43,0.0 +26089,21,10,6,0.0 +26089,13,6,28,0.0 +26089,75,7.75,8,0.0 +26089,46,12,37,0.0 +26089,38,263.5,11,0.0 +26089,9,97,5,0.0 +26089,19,9.2,22,0.0 +26089,25,14,35,0.0 +26089,72,34.8,41,0.0 +26089,28,45.6,42,0.0 +26089,69,36,25,0.0 +26089,54,7.45,18,0.0 +26089,42,14,17,0.0 +26089,74,10,9,0.0 +26089,27,43.9,9,0.0 +26089,45,9.5,19,0.0 +26089,20,81,28,0.0 +26089,23,9,3,0.0 +26089,22,21,50,0.0 +26089,50,16.25,19,0.0 +26089,2,19,5,0.0 +26089,62,49.3,45,0.0 +26089,31,12.5,6,0.0 +26089,52,7,28,0.0 +26089,66,17,2,0.0 +26089,47,9.5,7,0.0 +26089,55,24,42,0.0 +26090,42,14,5,0.0 +26090,31,12.5,20,0.0 +26090,57,19.5,41,0.0 +26090,34,14,14,0.0 +26090,32,32,49,0.0 +26090,63,43.9,44,0.0 +26090,27,43.9,17,0.0 +26090,52,7,36,0.0 +26090,28,45.6,32,0.0 +26090,19,9.2,40,0.0 +26090,68,12.5,28,0.0 +26090,47,9.5,30,0.0 +26090,38,263.5,39,0.0 +26090,24,4.5,10,0.0 +26090,9,97,21,0.0 +26090,2,19,36,0.0 +26090,18,62.5,10,0.0 +26090,10,31,40,0.0 +26090,73,15,36,0.0 +26090,55,24,5,0.0 +26090,39,18,16,0.0 +26090,41,9.65,25,0.0 +26090,33,2.5,4,0.0 +26090,65,21.05,28,0.0 +26090,72,34.8,40,0.0 +26090,3,10,4,0.0 +26090,67,14,6,0.0 +26090,44,19.45,43,0.0 +26090,30,25.89,10,0.0 +26090,12,38,9,0.0 +26090,40,18.4,22,0.0 +26090,13,6,43,0.0 +26090,26,31.23,40,0.0 +26090,29,123.79,45,0.0 +26090,20,81,28,0.0 +26090,71,21.5,30,0.0 +26090,36,19,16,0.0 +26090,59,55,25,0.0 +26090,1,18,20,0.0 +26090,62,49.3,36,0.0 +26090,74,10,18,0.0 +26090,51,53,1,0.0 +26090,69,36,18,0.0 +26090,35,18,19,0.0 +26090,43,46,7,0.0 +26090,22,21,33,0.0 +26090,60,34,17,0.0 +26090,75,7.75,42,0.0 +26090,70,15,25,0.0 +26090,45,9.5,30,0.0 +26090,61,28.5,37,0.0 +26090,46,12,40,0.0 +26090,17,39,18,0.0 +26090,7,30,4,0.0 +26090,5,21.35,32,0.0 +26090,76,18,30,0.0 +26090,11,21,10,0.0 +26090,54,7.45,37,0.0 +26090,50,16.25,37,0.0 +26090,14,23.25,17,0.0 +26090,25,14,17,0.0 +26090,64,33.25,43,0.0 +26090,49,20,32,0.0 +26090,6,25,23,0.0 +26090,23,9,43,0.0 +26090,66,17,31,0.0 +26091,14,23.25,15,0.0 +26091,13,6,34,0.0 +26091,2,19,30,0.0 +26091,73,15,24,0.0 +26091,56,38,34,0.0 +26091,70,15,1,0.0 +26091,60,34,33,0.0 +26091,34,14,42,0.0 +26091,72,34.8,43,0.0 +26091,71,21.5,14,0.0 +26091,1,18,22,0.0 +26091,11,21,3,0.0 +26091,51,53,26,0.0 +26091,8,40,4,0.0 +26091,59,55,23,0.0 +26091,45,9.5,38,0.0 +26091,9,97,13,0.0 +26091,49,20,5,0.0 +26091,76,18,8,0.0 +26091,15,15.5,20,0.0 +26091,52,7,49,0.0 +26091,75,7.75,18,0.0 +26091,23,9,8,0.0 +26091,6,25,12,0.0 +26091,28,45.6,49,0.0 +26091,64,33.25,32,0.0 +26091,63,43.9,25,0.0 +26091,55,24,42,0.0 +26091,20,81,39,0.0 +26091,53,32.8,29,0.0 +26091,5,21.35,21,0.0 +26091,22,21,17,0.0 +26091,47,9.5,20,0.0 +26091,32,32,37,0.0 +26091,61,28.5,47,0.0 +26091,62,49.3,9,0.0 +26091,4,22,22,0.0 +26091,18,62.5,14,0.0 +26091,38,263.5,25,0.0 +26091,43,46,42,0.0 +26091,31,12.5,33,0.0 +26091,37,26,11,0.0 +26091,27,43.9,19,0.0 +26091,24,4.5,37,0.0 +26092,75,7.75,10,0.0 +26092,53,32.8,26,0.0 +26092,43,46,35,0.0 +26092,65,21.05,32,0.0 +26092,45,9.5,1,0.0 +26092,31,12.5,24,0.0 +26092,19,9.2,23,0.0 +26092,56,38,5,0.0 +26092,26,31.23,48,0.0 +26092,6,25,31,0.0 +26092,32,32,5,0.0 +26092,76,18,43,0.0 +26092,2,19,1,0.0 +26092,18,62.5,3,0.0 +26092,64,33.25,29,0.0 +26092,73,15,2,0.0 +26092,46,12,3,0.0 +26092,52,7,15,0.0 +26092,3,10,22,0.0 +26092,21,10,13,0.0 +26092,5,21.35,15,0.0 +26092,22,21,50,0.0 +26092,7,30,46,0.0 +26092,1,18,2,0.0 +26092,24,4.5,20,0.0 +26092,51,53,5,0.0 +26092,47,9.5,46,0.0 +26092,30,25.89,12,0.0 +26092,57,19.5,31,0.0 +26092,35,18,40,0.0 +26092,48,12.75,36,0.0 +26093,12,38,49,0.0 +26093,67,14,1,0.0 +26093,8,40,28,0.0 +26093,62,49.3,39,0.0 +26093,41,9.65,32,0.0 +26093,30,25.89,5,0.0 +26093,36,19,12,0.0 +26093,44,19.45,19,0.0 +26093,28,45.6,23,0.0 +26093,22,21,10,0.0 +26093,55,24,19,0.0 +26093,57,19.5,10,0.0 +26093,23,9,22,0.0 +26093,5,21.35,45,0.0 +26093,16,17.45,9,0.0 +26093,77,13,2,0.0 +26093,38,263.5,39,0.0 +26093,72,34.8,36,0.0 +26093,40,18.4,40,0.0 +26093,69,36,3,0.0 +26093,37,26,2,0.0 +26093,61,28.5,21,0.0 +26093,39,18,33,0.0 +26093,19,9.2,34,0.0 +26093,46,12,49,0.0 +26093,27,43.9,7,0.0 +26093,70,15,34,0.0 +26093,49,20,30,0.0 +26093,31,12.5,46,0.0 +26093,17,39,28,0.0 +26093,1,18,37,0.0 +26093,53,32.8,20,0.0 +26093,15,15.5,18,0.0 +26093,7,30,9,0.0 +26093,13,6,1,0.0 +26093,74,10,24,0.0 +26094,23,9,31,0.0 +26094,17,39,45,0.0 +26094,18,62.5,45,0.0 +26095,55,24,37,0.0 +26095,39,18,24,0.0 +26095,48,12.75,24,0.0 +26095,61,28.5,46,0.0 +26095,14,23.25,8,0.0 +26095,17,39,44,0.0 +26095,37,26,46,0.0 +26095,12,38,50,0.0 +26095,2,19,48,0.0 +26095,60,34,49,0.0 +26095,54,7.45,23,0.0 +26095,1,18,12,0.0 +26095,9,97,48,0.0 +26095,40,18.4,18,0.0 +26095,71,21.5,13,0.0 +26095,73,15,2,0.0 +26095,19,9.2,17,0.0 +26095,46,12,30,0.0 +26095,6,25,47,0.0 +26095,50,16.25,5,0.0 +26095,8,40,37,0.0 +26095,22,21,33,0.0 +26095,15,15.5,33,0.0 +26095,69,36,32,0.0 +26095,27,43.9,31,0.0 +26095,16,17.45,42,0.0 +26095,36,19,35,0.0 +26095,59,55,15,0.0 +26095,51,53,14,0.0 +26095,70,15,17,0.0 +26096,65,21.05,25,0.0 +26096,53,32.8,41,0.0 +26096,40,18.4,18,0.0 +26096,51,53,12,0.0 +26096,56,38,14,0.0 +26096,10,31,4,0.0 +26096,2,19,38,0.0 +26096,6,25,5,0.0 +26096,77,13,49,0.0 +26096,5,21.35,8,0.0 +26096,49,20,39,0.0 +26096,72,34.8,10,0.0 +26096,68,12.5,9,0.0 +26096,37,26,16,0.0 +26096,14,23.25,1,0.0 +26096,29,123.79,21,0.0 +26096,66,17,16,0.0 +26096,44,19.45,11,0.0 +26096,70,15,21,0.0 +26096,33,2.5,27,0.0 +26096,38,263.5,16,0.0 +26096,69,36,20,0.0 +26096,47,9.5,42,0.0 +26096,74,10,28,0.0 +26096,21,10,30,0.0 +26096,9,97,20,0.0 +26096,4,22,46,0.0 +26096,55,24,9,0.0 +26096,31,12.5,20,0.0 +26096,36,19,30,0.0 +26096,26,31.23,17,0.0 +26096,17,39,17,0.0 +26096,64,33.25,1,0.0 +26096,19,9.2,29,0.0 +26096,8,40,19,0.0 +26096,76,18,23,0.0 +26096,7,30,7,0.0 +26096,46,12,46,0.0 +26096,52,7,31,0.0 +26096,50,16.25,48,0.0 +26096,57,19.5,37,0.0 +26096,23,9,28,0.0 +26096,61,28.5,5,0.0 +26096,24,4.5,38,0.0 +26096,58,13.25,33,0.0 +26096,28,45.6,17,0.0 +26096,63,43.9,49,0.0 +26096,20,81,32,0.0 +26096,32,32,30,0.0 +26096,18,62.5,11,0.0 +26096,48,12.75,6,0.0 +26096,22,21,2,0.0 +26096,27,43.9,14,0.0 +26096,71,21.5,46,0.0 +26096,54,7.45,37,0.0 +26096,15,15.5,15,0.0 +26096,60,34,4,0.0 +26096,13,6,32,0.0 +26096,34,14,19,0.0 +26096,62,49.3,37,0.0 +26096,41,9.65,20,0.0 +26096,75,7.75,50,0.0 +26096,39,18,25,0.0 +26096,42,14,11,0.0 +26096,73,15,49,0.0 +26096,25,14,41,0.0 +26096,12,38,26,0.0 +26096,45,9.5,23,0.0 +26097,46,12,11,0.0 +26097,76,18,16,0.0 +26097,6,25,48,0.0 +26097,65,21.05,2,0.0 +26097,53,32.8,22,0.0 +26097,66,17,30,0.0 +26097,38,263.5,25,0.0 +26097,3,10,14,0.0 +26097,62,49.3,29,0.0 +26097,19,9.2,30,0.0 +26097,67,14,48,0.0 +26097,34,14,6,0.0 +26097,4,22,39,0.0 +26097,54,7.45,5,0.0 +26097,44,19.45,9,0.0 +26097,40,18.4,42,0.0 +26097,27,43.9,48,0.0 +26097,51,53,47,0.0 +26097,10,31,39,0.0 +26097,33,2.5,30,0.0 +26097,64,33.25,16,0.0 +26097,75,7.75,29,0.0 +26097,11,21,12,0.0 +26097,12,38,18,0.0 +26097,70,15,29,0.0 +26097,43,46,30,0.0 +26097,69,36,36,0.0 +26097,57,19.5,35,0.0 +26097,14,23.25,13,0.0 +26097,47,9.5,40,0.0 +26097,71,21.5,25,0.0 +26097,15,15.5,3,0.0 +26097,61,28.5,40,0.0 +26097,63,43.9,39,0.0 +26097,45,9.5,48,0.0 +26097,72,34.8,4,0.0 +26098,32,32,15,0.0 +26098,53,32.8,28,0.0 +26098,41,9.65,32,0.0 +26098,11,21,27,0.0 +26098,63,43.9,34,0.0 +26098,2,19,48,0.0 +26098,35,18,45,0.0 +26098,31,12.5,40,0.0 +26098,24,4.5,44,0.0 +26098,22,21,28,0.0 +26098,68,12.5,14,0.0 +26098,50,16.25,28,0.0 +26098,66,17,48,0.0 +26098,13,6,44,0.0 +26098,72,34.8,42,0.0 +26098,54,7.45,4,0.0 +26098,37,26,18,0.0 +26098,42,14,31,0.0 +26098,39,18,34,0.0 +26098,19,9.2,21,0.0 +26098,64,33.25,34,0.0 +26098,25,14,49,0.0 +26098,28,45.6,43,0.0 +26098,52,7,31,0.0 +26098,38,263.5,14,0.0 +26098,10,31,7,0.0 +26098,40,18.4,1,0.0 +26098,34,14,5,0.0 +26098,30,25.89,22,0.0 +26098,12,38,42,0.0 +26098,43,46,38,0.0 +26098,77,13,1,0.0 +26099,61,28.5,21,0.0 +26099,20,81,25,0.0 +26099,10,31,19,0.0 +26099,64,33.25,45,0.0 +26099,77,13,25,0.0 +26099,32,32,48,0.0 +26099,23,9,47,0.0 +26099,33,2.5,1,0.0 +26099,60,34,15,0.0 +26099,66,17,16,0.0 +26099,8,40,46,0.0 +26099,46,12,18,0.0 +26099,5,21.35,19,0.0 +26099,14,23.25,26,0.0 +26099,29,123.79,4,0.0 +26099,56,38,30,0.0 +26099,62,49.3,29,0.0 +26099,47,9.5,18,0.0 +26099,41,9.65,2,0.0 +26099,12,38,46,0.0 +26099,25,14,11,0.0 +26099,57,19.5,6,0.0 +26099,58,13.25,49,0.0 +26099,37,26,1,0.0 +26099,21,10,19,0.0 +26099,72,34.8,16,0.0 +26099,30,25.89,35,0.0 +26099,16,17.45,22,0.0 +26099,55,24,8,0.0 +26099,68,12.5,8,0.0 +26099,67,14,39,0.0 +26099,27,43.9,26,0.0 +26099,59,55,27,0.0 +26099,36,19,36,0.0 +26099,22,21,48,0.0 +26099,53,32.8,49,0.0 +26099,43,46,29,0.0 +26099,13,6,37,0.0 +26099,49,20,30,0.0 +26099,38,263.5,13,0.0 +26099,69,36,26,0.0 +26099,24,4.5,46,0.0 +26099,71,21.5,36,0.0 +26099,39,18,32,0.0 +26099,42,14,34,0.0 +26099,73,15,37,0.0 +26099,52,7,48,0.0 +26099,45,9.5,20,0.0 +26099,28,45.6,38,0.0 +26099,34,14,6,0.0 +26099,19,9.2,31,0.0 +26099,51,53,14,0.0 +26099,7,30,40,0.0 +26099,76,18,17,0.0 +26099,44,19.45,40,0.0 +26099,75,7.75,36,0.0 +26099,3,10,2,0.0 +26099,50,16.25,44,0.0 +26100,49,20,15,0.0 +26100,8,40,48,0.0 +26100,73,15,1,0.0 +26100,7,30,47,0.0 +26100,56,38,18,0.0 +26100,24,4.5,39,0.0 +26100,71,21.5,1,0.0 +26100,27,43.9,24,0.0 +26100,46,12,11,0.0 +26100,77,13,18,0.0 +26100,68,12.5,8,0.0 +26100,50,16.25,39,0.0 +26100,13,6,11,0.0 +26100,53,32.8,18,0.0 +26100,76,18,47,0.0 +26100,39,18,44,0.0 +26100,15,15.5,28,0.0 +26100,26,31.23,3,0.0 +26100,18,62.5,41,0.0 +26100,19,9.2,8,0.0 +26100,75,7.75,15,0.0 +26100,44,19.45,41,0.0 +26100,64,33.25,9,0.0 +26100,42,14,31,0.0 +26100,22,21,50,0.0 +26100,65,21.05,19,0.0 +26100,58,13.25,1,0.0 +26100,9,97,17,0.0 +26100,38,263.5,31,0.0 +26100,51,53,46,0.0 +26100,52,7,37,0.0 +26100,57,19.5,15,0.0 +26100,11,21,20,0.0 +26100,35,18,37,0.0 +26100,74,10,27,0.0 +26100,1,18,37,0.0 +26100,30,25.89,50,0.0 +26100,17,39,13,0.0 +26100,45,9.5,18,0.0 +26100,21,10,39,0.0 +26100,63,43.9,24,0.0 +26100,2,19,47,0.0 +26100,34,14,8,0.0 +26100,16,17.45,16,0.0 +26100,61,28.5,19,0.0 +26100,59,55,46,0.0 +26100,31,12.5,1,0.0 +26100,54,7.45,39,0.0 +26100,48,12.75,23,0.0 +26100,20,81,39,0.0 +26100,69,36,48,0.0 +26100,29,123.79,10,0.0 +26100,23,9,20,0.0 +26100,62,49.3,28,0.0 +26100,66,17,17,0.0 +26101,75,7.75,32,0.0 +26101,3,10,10,0.0 +26101,35,18,48,0.0 +26101,5,21.35,39,0.0 +26101,50,16.25,42,0.0 +26101,26,31.23,43,0.0 +26101,18,62.5,3,0.0 +26101,65,21.05,26,0.0 +26101,38,263.5,43,0.0 +26101,23,9,35,0.0 +26101,21,10,6,0.0 +26101,20,81,5,0.0 +26101,24,4.5,49,0.0 +26101,30,25.89,9,0.0 +26101,15,15.5,18,0.0 +26101,43,46,23,0.0 +26101,44,19.45,40,0.0 +26101,40,18.4,28,0.0 +26101,6,25,44,0.0 +26101,64,33.25,14,0.0 +26101,77,13,24,0.0 +26101,12,38,38,0.0 +26101,1,18,47,0.0 +26101,19,9.2,40,0.0 +26102,69,36,8,0.0 +26102,6,25,20,0.0 +26102,14,23.25,30,0.0 +26102,1,18,30,0.0 +26102,59,55,23,0.0 +26102,62,49.3,26,0.0 +26102,65,21.05,18,0.0 +26102,13,6,45,0.0 +26103,12,38,47,0.0 +26103,43,46,49,0.0 +26103,22,21,33,0.0 +26103,71,21.5,38,0.0 +26103,36,19,38,0.0 +26103,70,15,26,0.0 +26103,20,81,48,0.0 +26103,56,38,6,0.0 +26103,73,15,37,0.0 +26103,63,43.9,2,0.0 +26103,39,18,26,0.0 +26103,35,18,1,0.0 +26103,72,34.8,25,0.0 +26103,77,13,30,0.0 +26103,18,62.5,1,0.0 +26103,5,21.35,18,0.0 +26103,6,25,44,0.0 +26103,13,6,47,0.0 +26103,33,2.5,38,0.0 +26103,27,43.9,16,0.0 +26103,65,21.05,16,0.0 +26103,59,55,4,0.0 +26103,66,17,37,0.0 +26103,4,22,2,0.0 +26103,11,21,48,0.0 +26103,76,18,35,0.0 +26103,60,34,35,0.0 +26103,51,53,36,0.0 +26103,38,263.5,39,0.0 +26103,17,39,24,0.0 +26103,64,33.25,8,0.0 +26103,42,14,46,0.0 +26103,41,9.65,7,0.0 +26103,7,30,14,0.0 +26103,61,28.5,8,0.0 +26103,48,12.75,36,0.0 +26103,34,14,22,0.0 +26103,57,19.5,11,0.0 +26103,25,14,44,0.0 +26103,52,7,40,0.0 +26103,75,7.75,38,0.0 +26103,23,9,47,0.0 +26103,49,20,36,0.0 +26103,21,10,5,0.0 +26103,44,19.45,39,0.0 +26103,47,9.5,8,0.0 +26103,62,49.3,25,0.0 +26103,9,97,47,0.0 +26103,8,40,18,0.0 +26103,46,12,15,0.0 +26103,55,24,10,0.0 +26103,1,18,41,0.0 +26103,14,23.25,30,0.0 +26103,54,7.45,11,0.0 +26103,31,12.5,15,0.0 +26103,19,9.2,25,0.0 +26103,2,19,16,0.0 +26103,32,32,47,0.0 +26103,15,15.5,16,0.0 +26103,74,10,32,0.0 +26103,28,45.6,29,0.0 +26103,26,31.23,23,0.0 +26103,29,123.79,26,0.0 +26103,3,10,34,0.0 +26103,53,32.8,16,0.0 +26103,10,31,25,0.0 +26103,68,12.5,33,0.0 +26103,40,18.4,12,0.0 +26103,24,4.5,3,0.0 +26104,62,49.3,36,0.0 +26104,48,12.75,7,0.0 +26104,26,31.23,49,0.0 +26104,39,18,38,0.0 +26104,19,9.2,49,0.0 +26104,61,28.5,45,0.0 +26104,27,43.9,9,0.0 +26104,56,38,23,0.0 +26104,3,10,7,0.0 +26104,32,32,26,0.0 +26104,67,14,35,0.0 +26104,28,45.6,42,0.0 +26104,76,18,2,0.0 +26104,5,21.35,6,0.0 +26104,31,12.5,14,0.0 +26104,8,40,13,0.0 +26104,73,15,49,0.0 +26104,45,9.5,13,0.0 +26104,43,46,3,0.0 +26104,25,14,20,0.0 +26104,42,14,23,0.0 +26104,41,9.65,15,0.0 +26105,51,53,29,0.0 +26105,61,28.5,22,0.0 +26105,70,15,15,0.0 +26105,5,21.35,12,0.0 +26106,39,18,19,0.0 +26106,29,123.79,27,0.0 +26106,13,6,9,0.0 +26106,36,19,25,0.0 +26106,58,13.25,20,0.0 +26106,50,16.25,1,0.0 +26106,40,18.4,30,0.0 +26106,57,19.5,9,0.0 +26106,5,21.35,50,0.0 +26106,41,9.65,43,0.0 +26106,61,28.5,4,0.0 +26106,18,62.5,42,0.0 +26106,30,25.89,44,0.0 +26106,48,12.75,22,0.0 +26106,52,7,12,0.0 +26107,34,14,42,0.0 +26107,23,9,46,0.0 +26107,70,15,15,0.0 +26107,69,36,18,0.0 +26107,6,25,16,0.0 +26107,14,23.25,31,0.0 +26107,47,9.5,41,0.0 +26107,10,31,46,0.0 +26107,36,19,21,0.0 +26107,73,15,22,0.0 +26107,39,18,19,0.0 +26107,30,25.89,31,0.0 +26107,48,12.75,39,0.0 +26107,41,9.65,32,0.0 +26107,35,18,50,0.0 +26107,28,45.6,12,0.0 +26107,65,21.05,45,0.0 +26107,19,9.2,30,0.0 +26107,63,43.9,27,0.0 +26107,38,263.5,1,0.0 +26107,67,14,44,0.0 +26107,8,40,47,0.0 +26107,27,43.9,17,0.0 +26107,46,12,11,0.0 +26107,59,55,37,0.0 +26107,33,2.5,45,0.0 +26107,61,28.5,29,0.0 +26107,4,22,17,0.0 +26107,31,12.5,14,0.0 +26108,73,15,32,0.0 +26108,5,21.35,28,0.0 +26108,30,25.89,10,0.0 +26108,35,18,14,0.0 +26108,8,40,2,0.0 +26108,1,18,44,0.0 +26108,16,17.45,5,0.0 +26108,7,30,22,0.0 +26108,2,19,30,0.0 +26108,65,21.05,44,0.0 +26108,29,123.79,1,0.0 +26108,33,2.5,23,0.0 +26108,20,81,27,0.0 +26108,21,10,43,0.0 +26108,10,31,16,0.0 +26108,49,20,32,0.0 +26108,19,9.2,6,0.0 +26108,58,13.25,6,0.0 +26108,57,19.5,42,0.0 +26108,66,17,1,0.0 +26108,26,31.23,32,0.0 +26108,67,14,12,0.0 +26108,55,24,37,0.0 +26108,62,49.3,28,0.0 +26108,4,22,48,0.0 +26108,60,34,50,0.0 +26108,36,19,16,0.0 +26108,40,18.4,49,0.0 +26108,25,14,20,0.0 +26108,75,7.75,1,0.0 +26108,69,36,46,0.0 +26108,59,55,34,0.0 +26108,39,18,32,0.0 +26108,44,19.45,47,0.0 +26108,47,9.5,26,0.0 +26108,34,14,31,0.0 +26108,54,7.45,34,0.0 +26108,14,23.25,10,0.0 +26108,24,4.5,19,0.0 +26108,13,6,12,0.0 +26108,12,38,13,0.0 +26108,38,263.5,45,0.0 +26108,72,34.8,44,0.0 +26108,61,28.5,23,0.0 +26108,74,10,41,0.0 +26108,71,21.5,8,0.0 +26108,76,18,6,0.0 +26108,68,12.5,6,0.0 +26108,32,32,31,0.0 +26108,42,14,1,0.0 +26108,45,9.5,26,0.0 +26108,63,43.9,19,0.0 +26108,37,26,14,0.0 +26108,50,16.25,1,0.0 +26108,56,38,14,0.0 +26108,31,12.5,49,0.0 +26108,6,25,5,0.0 +26108,53,32.8,6,0.0 +26108,22,21,32,0.0 +26108,18,62.5,12,0.0 +26108,43,46,16,0.0 +26108,77,13,12,0.0 +26108,46,12,39,0.0 +26108,28,45.6,2,0.0 +26108,27,43.9,24,0.0 +26108,3,10,35,0.0 +26108,51,53,35,0.0 +26108,11,21,12,0.0 +26108,52,7,50,0.0 +26108,17,39,36,0.0 +26108,41,9.65,6,0.0 +26108,48,12.75,35,0.0 +26108,9,97,28,0.0 +26109,44,19.45,46,0.0 +26109,40,18.4,41,0.0 +26109,46,12,40,0.0 +26109,6,25,47,0.0 +26109,69,36,38,0.0 +26109,37,26,40,0.0 +26109,55,24,9,0.0 +26109,50,16.25,22,0.0 +26109,59,55,4,0.0 +26109,9,97,32,0.0 +26109,25,14,35,0.0 +26109,64,33.25,26,0.0 +26109,43,46,20,0.0 +26109,39,18,38,0.0 +26109,54,7.45,41,0.0 +26109,3,10,38,0.0 +26109,15,15.5,35,0.0 +26109,74,10,46,0.0 +26109,2,19,43,0.0 +26109,63,43.9,37,0.0 +26109,8,40,20,0.0 +26109,68,12.5,37,0.0 +26109,70,15,3,0.0 +26109,49,20,14,0.0 +26109,24,4.5,36,0.0 +26109,36,19,8,0.0 +26109,11,21,49,0.0 +26109,65,21.05,6,0.0 +26109,41,9.65,48,0.0 +26109,21,10,30,0.0 +26109,61,28.5,19,0.0 +26109,67,14,6,0.0 +26109,13,6,33,0.0 +26109,30,25.89,8,0.0 +26109,58,13.25,48,0.0 +26109,31,12.5,24,0.0 +26109,75,7.75,16,0.0 +26109,71,21.5,39,0.0 +26109,23,9,23,0.0 +26109,66,17,43,0.0 +26109,57,19.5,47,0.0 +26109,26,31.23,48,0.0 +26109,51,53,4,0.0 +26110,21,10,12,0.0 +26110,9,97,9,0.0 +26110,37,26,26,0.0 +26110,30,25.89,50,0.0 +26110,20,81,26,0.0 +26110,31,12.5,33,0.0 +26110,13,6,2,0.0 +26110,41,9.65,22,0.0 +26110,44,19.45,1,0.0 +26110,49,20,28,0.0 +26110,74,10,49,0.0 +26110,14,23.25,6,0.0 +26110,77,13,14,0.0 +26110,72,34.8,12,0.0 +26110,40,18.4,33,0.0 +26110,47,9.5,47,0.0 +26110,4,22,30,0.0 +26110,75,7.75,17,0.0 +26110,52,7,42,0.0 +26110,38,263.5,36,0.0 +26110,23,9,29,0.0 +26110,15,15.5,24,0.0 +26110,28,45.6,7,0.0 +26110,18,62.5,5,0.0 +26110,62,49.3,2,0.0 +26110,71,21.5,30,0.0 +26110,5,21.35,42,0.0 +26110,29,123.79,30,0.0 +26110,57,19.5,26,0.0 +26110,63,43.9,37,0.0 +26110,16,17.45,11,0.0 +26110,39,18,27,0.0 +26110,22,21,31,0.0 +26110,70,15,16,0.0 +26110,24,4.5,33,0.0 +26110,53,32.8,5,0.0 +26110,50,16.25,6,0.0 +26110,19,9.2,12,0.0 +26110,66,17,16,0.0 +26110,34,14,49,0.0 +26110,76,18,40,0.0 +26110,73,15,36,0.0 +26110,64,33.25,47,0.0 +26110,10,31,4,0.0 +26110,48,12.75,40,0.0 +26110,51,53,49,0.0 +26110,26,31.23,35,0.0 +26110,12,38,48,0.0 +26110,60,34,6,0.0 +26110,46,12,17,0.0 +26110,7,30,2,0.0 +26110,25,14,7,0.0 +26110,33,2.5,16,0.0 +26110,36,19,48,0.0 +26110,11,21,44,0.0 +26110,35,18,33,0.0 +26110,27,43.9,48,0.0 +26110,61,28.5,37,0.0 +26110,6,25,18,0.0 +26110,65,21.05,45,0.0 +26110,17,39,47,0.0 +26110,56,38,23,0.0 +26110,45,9.5,46,0.0 +26110,55,24,45,0.0 +26110,54,7.45,49,0.0 +26110,58,13.25,8,0.0 +26110,67,14,49,0.0 +26110,69,36,43,0.0 +26110,8,40,25,0.0 +26111,61,28.5,22,0.0 +26111,59,55,30,0.0 +26111,44,19.45,24,0.0 +26111,52,7,44,0.0 +26111,54,7.45,20,0.0 +26111,75,7.75,23,0.0 +26111,29,123.79,40,0.0 +26111,9,97,21,0.0 +26111,77,13,28,0.0 +26111,68,12.5,15,0.0 +26111,57,19.5,35,0.0 +26111,20,81,25,0.0 +26111,76,18,4,0.0 +26111,72,34.8,1,0.0 +26111,14,23.25,6,0.0 +26111,55,24,4,0.0 +26111,10,31,2,0.0 +26111,41,9.65,44,0.0 +26111,63,43.9,42,0.0 +26111,32,32,31,0.0 +26111,28,45.6,49,0.0 +26111,31,12.5,12,0.0 +26111,53,32.8,14,0.0 +26111,69,36,50,0.0 +26111,73,15,9,0.0 +26111,39,18,39,0.0 +26111,70,15,23,0.0 +26111,17,39,50,0.0 +26111,24,4.5,26,0.0 +26111,16,17.45,29,0.0 +26111,11,21,11,0.0 +26111,23,9,27,0.0 +26111,8,40,12,0.0 +26111,58,13.25,14,0.0 +26111,71,21.5,5,0.0 +26111,47,9.5,49,0.0 +26111,5,21.35,17,0.0 +26111,13,6,18,0.0 +26111,51,53,41,0.0 +26111,35,18,7,0.0 +26112,64,33.25,34,0.0 +26112,11,21,47,0.0 +26112,37,26,3,0.0 +26112,34,14,23,0.0 +26112,69,36,8,0.0 +26112,22,21,30,0.0 +26112,5,21.35,1,0.0 +26112,54,7.45,45,0.0 +26112,58,13.25,46,0.0 +26112,36,19,17,0.0 +26112,14,23.25,15,0.0 +26112,57,19.5,14,0.0 +26112,8,40,39,0.0 +26112,13,6,26,0.0 +26112,29,123.79,2,0.0 +26112,4,22,7,0.0 +26112,72,34.8,27,0.0 +26112,27,43.9,9,0.0 +26112,16,17.45,44,0.0 +26112,41,9.65,25,0.0 +26112,73,15,30,0.0 +26112,33,2.5,17,0.0 +26112,74,10,5,0.0 +26112,23,9,49,0.0 +26112,71,21.5,49,0.0 +26112,53,32.8,10,0.0 +26112,70,15,19,0.0 +26112,77,13,36,0.0 +26112,50,16.25,44,0.0 +26112,51,53,6,0.0 +26112,42,14,28,0.0 +26112,39,18,47,0.0 +26112,32,32,34,0.0 +26112,3,10,29,0.0 +26112,55,24,35,0.0 +26112,66,17,3,0.0 +26112,56,38,3,0.0 +26112,47,9.5,41,0.0 +26112,2,19,30,0.0 +26112,6,25,22,0.0 +26112,59,55,5,0.0 +26112,63,43.9,12,0.0 +26112,67,14,13,0.0 +26112,48,12.75,31,0.0 +26112,46,12,27,0.0 +26112,61,28.5,9,0.0 +26112,10,31,10,0.0 +26112,40,18.4,33,0.0 +26112,17,39,37,0.0 +26112,9,97,13,0.0 +26112,18,62.5,23,0.0 +26112,76,18,11,0.0 +26112,30,25.89,47,0.0 +26112,60,34,28,0.0 +26112,65,21.05,45,0.0 +26112,24,4.5,25,0.0 +26112,38,263.5,22,0.0 +26112,35,18,1,0.0 +26112,26,31.23,25,0.0 +26112,44,19.45,29,0.0 +26112,68,12.5,38,0.0 +26112,1,18,28,0.0 +26113,28,45.6,1,0.0 +26113,16,17.45,19,0.0 +26113,51,53,39,0.0 +26113,52,7,49,0.0 +26113,29,123.79,12,0.0 +26113,17,39,35,0.0 +26113,59,55,6,0.0 +26113,26,31.23,10,0.0 +26113,72,34.8,32,0.0 +26113,30,25.89,13,0.0 +26113,77,13,36,0.0 +26113,14,23.25,32,0.0 +26113,10,31,18,0.0 +26113,43,46,42,0.0 +26113,58,13.25,48,0.0 +26113,62,49.3,13,0.0 +26113,60,34,33,0.0 +26113,1,18,33,0.0 +26113,67,14,1,0.0 +26113,4,22,27,0.0 +26113,3,10,22,0.0 +26113,31,12.5,35,0.0 +26113,36,19,24,0.0 +26113,42,14,11,0.0 +26113,13,6,1,0.0 +26113,63,43.9,35,0.0 +26113,15,15.5,2,0.0 +26113,41,9.65,37,0.0 +26113,39,18,45,0.0 +26113,61,28.5,45,0.0 +26113,73,15,39,0.0 +26113,27,43.9,34,0.0 +26113,54,7.45,34,0.0 +26113,6,25,17,0.0 +26113,24,4.5,24,0.0 +26113,47,9.5,38,0.0 +26113,11,21,46,0.0 +26113,40,18.4,17,0.0 +26113,53,32.8,47,0.0 +26113,56,38,22,0.0 +26113,44,19.45,25,0.0 +26113,65,21.05,15,0.0 +26113,21,10,13,0.0 +26113,23,9,45,0.0 +26113,12,38,7,0.0 +26113,8,40,49,0.0 +26113,25,14,29,0.0 +26113,70,15,26,0.0 +26113,34,14,5,0.0 +26113,71,21.5,24,0.0 +26113,46,12,37,0.0 +26113,74,10,49,0.0 +26113,37,26,10,0.0 +26113,20,81,8,0.0 +26113,57,19.5,26,0.0 +26113,22,21,14,0.0 +26113,35,18,10,0.0 +26113,76,18,2,0.0 +26113,9,97,6,0.0 +26114,68,12.5,31,0.0 +26114,40,18.4,2,0.0 +26114,2,19,20,0.0 +26114,49,20,43,0.0 +26114,43,46,16,0.0 +26114,39,18,19,0.0 +26114,61,28.5,31,0.0 +26114,21,10,13,0.0 +26114,38,263.5,28,0.0 +26114,34,14,47,0.0 +26114,30,25.89,50,0.0 +26114,64,33.25,25,0.0 +26114,67,14,16,0.0 +26114,60,34,21,0.0 +26114,44,19.45,42,0.0 +26114,58,13.25,38,0.0 +26114,74,10,3,0.0 +26115,76,18,27,0.0 +26115,9,97,16,0.0 +26115,4,22,38,0.0 +26115,18,62.5,21,0.0 +26115,38,263.5,23,0.0 +26115,61,28.5,42,0.0 +26115,72,34.8,7,0.0 +26115,27,43.9,31,0.0 +26115,34,14,41,0.0 +26115,47,9.5,48,0.0 +26115,64,33.25,14,0.0 +26115,66,17,14,0.0 +26115,22,21,37,0.0 +26115,63,43.9,30,0.0 +26115,45,9.5,4,0.0 +26115,12,38,34,0.0 +26115,37,26,21,0.0 +26115,24,4.5,37,0.0 +26115,39,18,16,0.0 +26115,62,49.3,45,0.0 +26115,6,25,21,0.0 +26115,59,55,49,0.0 +26115,19,9.2,7,0.0 +26115,13,6,27,0.0 +26115,58,13.25,15,0.0 +26115,51,53,1,0.0 +26115,46,12,33,0.0 +26115,53,32.8,20,0.0 +26115,5,21.35,11,0.0 +26115,21,10,4,0.0 +26115,48,12.75,10,0.0 +26115,56,38,9,0.0 +26115,40,18.4,32,0.0 +26115,69,36,49,0.0 +26115,25,14,32,0.0 +26115,65,21.05,27,0.0 +26115,42,14,8,0.0 +26115,8,40,30,0.0 +26115,16,17.45,1,0.0 +26115,57,19.5,46,0.0 +26115,10,31,37,0.0 +26115,54,7.45,1,0.0 +26115,60,34,37,0.0 +26115,55,24,23,0.0 +26115,23,9,30,0.0 +26115,28,45.6,30,0.0 +26115,73,15,25,0.0 +26115,31,12.5,46,0.0 +26115,29,123.79,36,0.0 +26115,43,46,41,0.0 +26115,26,31.23,44,0.0 +26115,52,7,41,0.0 +26115,7,30,33,0.0 +26115,17,39,19,0.0 +26115,2,19,38,0.0 +26115,67,14,25,0.0 +26115,1,18,1,0.0 +26115,36,19,47,0.0 +26115,32,32,45,0.0 +26115,14,23.25,5,0.0 +26115,77,13,2,0.0 +26115,50,16.25,36,0.0 +26115,49,20,48,0.0 +26115,74,10,37,0.0 +26116,4,22,7,0.0 +26116,70,15,12,0.0 +26116,58,13.25,50,0.0 +26116,62,49.3,11,0.0 +26116,38,263.5,44,0.0 +26116,7,30,14,0.0 +26116,65,21.05,35,0.0 +26116,41,9.65,3,0.0 +26116,40,18.4,32,0.0 +26116,31,12.5,25,0.0 +26116,71,21.5,5,0.0 +26116,56,38,25,0.0 +26116,36,19,48,0.0 +26116,77,13,14,0.0 +26116,17,39,7,0.0 +26116,28,45.6,6,0.0 +26116,24,4.5,45,0.0 +26116,14,23.25,17,0.0 +26116,2,19,21,0.0 +26116,49,20,32,0.0 +26116,33,2.5,11,0.0 +26116,48,12.75,7,0.0 +26116,1,18,13,0.0 +26116,67,14,46,0.0 +26116,64,33.25,41,0.0 +26116,47,9.5,22,0.0 +26117,75,7.75,30,0.0 +26117,31,12.5,31,0.0 +26117,48,12.75,24,0.0 +26117,28,45.6,12,0.0 +26117,41,9.65,24,0.0 +26117,71,21.5,24,0.0 +26117,39,18,24,0.0 +26117,56,38,1,0.0 +26117,52,7,37,0.0 +26117,67,14,42,0.0 +26117,68,12.5,40,0.0 +26117,26,31.23,24,0.0 +26117,3,10,41,0.0 +26117,40,18.4,46,0.0 +26117,29,123.79,19,0.0 +26117,33,2.5,12,0.0 +26117,76,18,21,0.0 +26117,53,32.8,40,0.0 +26117,13,6,49,0.0 +26117,24,4.5,6,0.0 +26117,4,22,36,0.0 +26117,74,10,1,0.0 +26117,59,55,21,0.0 +26117,49,20,16,0.0 +26117,63,43.9,15,0.0 +26117,5,21.35,47,0.0 +26117,66,17,33,0.0 +26117,44,19.45,14,0.0 +26117,10,31,25,0.0 +26117,1,18,49,0.0 +26117,22,21,48,0.0 +26117,17,39,12,0.0 +26117,12,38,48,0.0 +26117,60,34,24,0.0 +26117,61,28.5,45,0.0 +26117,45,9.5,12,0.0 +26117,8,40,33,0.0 +26117,51,53,21,0.0 +26117,20,81,35,0.0 +26117,34,14,41,0.0 +26117,2,19,12,0.0 +26117,23,9,48,0.0 +26117,65,21.05,31,0.0 +26117,9,97,40,0.0 +26117,32,32,1,0.0 +26117,69,36,1,0.0 +26117,15,15.5,40,0.0 +26117,54,7.45,13,0.0 +26117,36,19,38,0.0 +26117,14,23.25,3,0.0 +26117,30,25.89,10,0.0 +26117,7,30,31,0.0 +26117,43,46,10,0.0 +26117,57,19.5,16,0.0 +26117,47,9.5,15,0.0 +26117,37,26,31,0.0 +26117,11,21,21,0.0 +26117,25,14,21,0.0 +26117,77,13,8,0.0 +26117,72,34.8,46,0.0 +26117,58,13.25,38,0.0 +26118,65,21.05,20,0.0 +26118,21,10,23,0.0 +26118,69,36,34,0.0 +26118,12,38,13,0.0 +26118,1,18,13,0.0 +26118,11,21,14,0.0 +26118,25,14,12,0.0 +26118,40,18.4,28,0.0 +26118,36,19,16,0.0 +26118,50,16.25,1,0.0 +26118,58,13.25,35,0.0 +26118,73,15,20,0.0 +26118,17,39,25,0.0 +26118,66,17,41,0.0 +26118,2,19,47,0.0 +26118,52,7,42,0.0 +26118,8,40,5,0.0 +26118,4,22,4,0.0 +26118,49,20,44,0.0 +26118,3,10,11,0.0 +26118,64,33.25,20,0.0 +26118,57,19.5,49,0.0 +26118,10,31,41,0.0 +26118,46,12,45,0.0 +26118,18,62.5,6,0.0 +26118,75,7.75,17,0.0 +26118,62,49.3,24,0.0 +26118,67,14,46,0.0 +26118,37,26,15,0.0 +26118,54,7.45,31,0.0 +26118,71,21.5,17,0.0 +26118,77,13,8,0.0 +26118,14,23.25,27,0.0 +26118,29,123.79,45,0.0 +26118,55,24,38,0.0 +26118,27,43.9,47,0.0 +26118,38,263.5,3,0.0 +26118,47,9.5,26,0.0 +26118,34,14,33,0.0 +26118,32,32,36,0.0 +26118,74,10,38,0.0 +26118,30,25.89,17,0.0 +26118,19,9.2,48,0.0 +26118,23,9,36,0.0 +26118,6,25,44,0.0 +26118,51,53,23,0.0 +26118,76,18,14,0.0 +26118,15,15.5,1,0.0 +26118,39,18,19,0.0 +26118,56,38,6,0.0 +26118,28,45.6,49,0.0 +26118,26,31.23,48,0.0 +26119,55,24,47,0.0 +26119,46,12,30,0.0 +26119,34,14,4,0.0 +26119,4,22,3,0.0 +26119,24,4.5,38,0.0 +26119,2,19,37,0.0 +26119,5,21.35,16,0.0 +26119,40,18.4,1,0.0 +26119,60,34,23,0.0 +26119,58,13.25,47,0.0 +26119,52,7,50,0.0 +26119,11,21,23,0.0 +26119,37,26,49,0.0 +26119,66,17,11,0.0 +26119,30,25.89,24,0.0 +26119,64,33.25,35,0.0 +26119,59,55,32,0.0 +26119,25,14,20,0.0 +26119,70,15,8,0.0 +26119,14,23.25,39,0.0 +26119,41,9.65,24,0.0 +26119,71,21.5,20,0.0 +26119,65,21.05,34,0.0 +26119,74,10,22,0.0 +26119,13,6,22,0.0 +26119,33,2.5,6,0.0 +26119,17,39,45,0.0 +26119,72,34.8,48,0.0 +26119,44,19.45,37,0.0 +26119,20,81,24,0.0 +26119,51,53,17,0.0 +26119,36,19,6,0.0 +26119,43,46,26,0.0 +26119,67,14,35,0.0 +26119,54,7.45,17,0.0 +26119,31,12.5,29,0.0 +26119,38,263.5,21,0.0 +26119,53,32.8,10,0.0 +26119,76,18,6,0.0 +26119,19,9.2,27,0.0 +26119,42,14,16,0.0 +26119,47,9.5,23,0.0 +26119,50,16.25,43,0.0 +26119,12,38,24,0.0 +26119,10,31,31,0.0 +26119,57,19.5,43,0.0 +26119,69,36,35,0.0 +26119,7,30,14,0.0 +26119,68,12.5,31,0.0 +26119,3,10,2,0.0 +26119,22,21,2,0.0 +26119,32,32,31,0.0 +26119,1,18,25,0.0 +26119,9,97,47,0.0 +26119,77,13,41,0.0 +26119,28,45.6,8,0.0 +26119,39,18,8,0.0 +26119,62,49.3,19,0.0 +26119,56,38,16,0.0 +26119,63,43.9,12,0.0 +26119,23,9,33,0.0 +26119,73,15,37,0.0 +26119,18,62.5,16,0.0 +26119,61,28.5,32,0.0 +26119,8,40,3,0.0 +26119,16,17.45,47,0.0 +26119,6,25,31,0.0 +26119,15,15.5,40,0.0 +26119,27,43.9,23,0.0 +26119,29,123.79,6,0.0 +26119,35,18,44,0.0 +26119,45,9.5,46,0.0 +26119,21,10,1,0.0 +26119,48,12.75,8,0.0 +26120,26,31.23,4,0.0 +26120,37,26,17,0.0 +26120,2,19,35,0.0 +26120,76,18,37,0.0 +26120,77,13,18,0.0 +26120,36,19,21,0.0 +26120,72,34.8,8,0.0 +26120,46,12,22,0.0 +26120,73,15,25,0.0 +26120,27,43.9,39,0.0 +26120,65,21.05,6,0.0 +26120,44,19.45,17,0.0 +26120,18,62.5,45,0.0 +26120,23,9,34,0.0 +26120,55,24,25,0.0 +26120,61,28.5,23,0.0 +26120,19,9.2,31,0.0 +26120,31,12.5,22,0.0 +26120,28,45.6,17,0.0 +26120,30,25.89,44,0.0 +26120,68,12.5,43,0.0 +26120,1,18,13,0.0 +26120,9,97,49,0.0 +26120,34,14,13,0.0 +26120,7,30,40,0.0 +26120,51,53,16,0.0 +26120,75,7.75,36,0.0 +26120,15,15.5,27,0.0 +26120,8,40,18,0.0 +26120,52,7,17,0.0 +26120,62,49.3,15,0.0 +26120,10,31,31,0.0 +26120,11,21,3,0.0 +26120,43,46,39,0.0 +26120,54,7.45,47,0.0 +26120,14,23.25,46,0.0 +26120,71,21.5,29,0.0 +26120,45,9.5,32,0.0 +26120,25,14,41,0.0 +26120,33,2.5,19,0.0 +26120,70,15,25,0.0 +26120,32,32,20,0.0 +26120,17,39,41,0.0 +26120,59,55,31,0.0 +26120,12,38,6,0.0 +26120,74,10,40,0.0 +26120,50,16.25,28,0.0 +26120,21,10,35,0.0 +26120,57,19.5,45,0.0 +26120,42,14,1,0.0 +26120,67,14,6,0.0 +26120,22,21,2,0.0 +26121,68,12.5,6,0.0 +26121,32,32,48,0.0 +26121,4,22,37,0.0 +26121,16,17.45,41,0.0 +26121,28,45.6,40,0.0 +26121,31,12.5,3,0.0 +26121,44,19.45,43,0.0 +26121,5,21.35,5,0.0 +26121,27,43.9,35,0.0 +26121,60,34,15,0.0 +26121,72,34.8,6,0.0 +26121,70,15,39,0.0 +26121,75,7.75,37,0.0 +26121,56,38,32,0.0 +26121,15,15.5,36,0.0 +26121,76,18,20,0.0 +26121,20,81,39,0.0 +26121,18,62.5,6,0.0 +26121,22,21,48,0.0 +26121,43,46,43,0.0 +26121,67,14,22,0.0 +26121,30,25.89,48,0.0 +26121,25,14,14,0.0 +26121,2,19,34,0.0 +26121,61,28.5,49,0.0 +26121,12,38,6,0.0 +26121,13,6,17,0.0 +26121,58,13.25,5,0.0 +26121,45,9.5,21,0.0 +26121,9,97,17,0.0 +26121,57,19.5,9,0.0 +26121,35,18,27,0.0 +26121,54,7.45,31,0.0 +26121,34,14,30,0.0 +26121,59,55,44,0.0 +26121,6,25,41,0.0 +26121,29,123.79,35,0.0 +26121,42,14,44,0.0 +26121,37,26,1,0.0 +26121,14,23.25,28,0.0 +26121,39,18,34,0.0 +26121,52,7,7,0.0 +26121,62,49.3,46,0.0 +26121,48,12.75,7,0.0 +26121,69,36,49,0.0 +26121,8,40,26,0.0 +26121,24,4.5,7,0.0 +26121,73,15,14,0.0 +26121,1,18,3,0.0 +26122,9,97,20,0.0 +26122,15,15.5,3,0.0 +26122,58,13.25,22,0.0 +26122,20,81,34,0.0 +26122,24,4.5,11,0.0 +26122,70,15,1,0.0 +26122,13,6,25,0.0 +26122,62,49.3,19,0.0 +26122,68,12.5,29,0.0 +26122,47,9.5,37,0.0 +26122,5,21.35,43,0.0 +26122,64,33.25,6,0.0 +26122,6,25,1,0.0 +26122,55,24,30,0.0 +26122,40,18.4,30,0.0 +26122,51,53,31,0.0 +26122,49,20,23,0.0 +26122,76,18,15,0.0 +26122,50,16.25,25,0.0 +26122,10,31,28,0.0 +26122,41,9.65,23,0.0 +26122,26,31.23,50,0.0 +26122,65,21.05,8,0.0 +26122,35,18,16,0.0 +26122,66,17,21,0.0 +26122,72,34.8,7,0.0 +26122,37,26,34,0.0 +26122,22,21,6,0.0 +26122,34,14,7,0.0 +26122,21,10,47,0.0 +26122,53,32.8,17,0.0 +26122,30,25.89,37,0.0 +26122,7,30,39,0.0 +26122,11,21,16,0.0 +26122,38,263.5,27,0.0 +26122,77,13,41,0.0 +26122,28,45.6,25,0.0 +26122,43,46,13,0.0 +26122,1,18,39,0.0 +26122,23,9,18,0.0 +26122,63,43.9,40,0.0 +26122,57,19.5,8,0.0 +26122,8,40,49,0.0 +26122,27,43.9,37,0.0 +26122,19,9.2,29,0.0 +26122,25,14,19,0.0 +26122,39,18,48,0.0 +26122,14,23.25,18,0.0 +26122,61,28.5,10,0.0 +26122,33,2.5,35,0.0 +26122,74,10,23,0.0 +26122,31,12.5,29,0.0 +26122,59,55,41,0.0 +26122,45,9.5,50,0.0 +26122,36,19,24,0.0 +26122,69,36,26,0.0 +26122,18,62.5,38,0.0 +26123,25,14,48,0.0 +26123,59,55,20,0.0 +26124,68,12.5,33,0.0 +26124,49,20,27,0.0 +26124,74,10,18,0.0 +26124,19,9.2,8,0.0 +26124,62,49.3,37,0.0 +26124,53,32.8,44,0.0 +26124,5,21.35,2,0.0 +26124,27,43.9,19,0.0 +26124,61,28.5,24,0.0 +26124,37,26,46,0.0 +26124,6,25,6,0.0 +26124,50,16.25,25,0.0 +26124,16,17.45,35,0.0 +26124,63,43.9,42,0.0 +26124,48,12.75,31,0.0 +26124,44,19.45,45,0.0 +26124,28,45.6,27,0.0 +26124,22,21,22,0.0 +26124,73,15,42,0.0 +26124,17,39,42,0.0 +26124,47,9.5,41,0.0 +26124,18,62.5,14,0.0 +26124,40,18.4,15,0.0 +26125,12,38,1,0.0 +26125,16,17.45,30,0.0 +26125,64,33.25,4,0.0 +26125,9,97,19,0.0 +26125,47,9.5,13,0.0 +26125,26,31.23,34,0.0 +26125,65,21.05,30,0.0 +26125,77,13,46,0.0 +26125,3,10,17,0.0 +26125,41,9.65,17,0.0 +26125,25,14,21,0.0 +26125,27,43.9,26,0.0 +26125,45,9.5,23,0.0 +26125,48,12.75,18,0.0 +26125,76,18,15,0.0 +26125,57,19.5,38,0.0 +26125,67,14,22,0.0 +26125,62,49.3,31,0.0 +26125,1,18,45,0.0 +26125,5,21.35,31,0.0 +26125,60,34,36,0.0 +26125,23,9,12,0.0 +26125,33,2.5,44,0.0 +26125,37,26,34,0.0 +26125,18,62.5,45,0.0 +26125,6,25,5,0.0 +26125,50,16.25,31,0.0 +26125,31,12.5,38,0.0 +26125,40,18.4,48,0.0 +26125,30,25.89,35,0.0 +26125,38,263.5,39,0.0 +26125,46,12,40,0.0 +26125,34,14,33,0.0 +26125,8,40,24,0.0 +26125,17,39,37,0.0 +26125,53,32.8,33,0.0 +26125,2,19,6,0.0 +26125,14,23.25,5,0.0 +26125,49,20,9,0.0 +26125,72,34.8,34,0.0 +26125,36,19,11,0.0 +26125,24,4.5,30,0.0 +26125,4,22,48,0.0 +26125,55,24,3,0.0 +26125,35,18,10,0.0 +26125,71,21.5,2,0.0 +26125,74,10,29,0.0 +26125,7,30,3,0.0 +26125,70,15,17,0.0 +26125,11,21,15,0.0 +26125,61,28.5,41,0.0 +26125,58,13.25,21,0.0 +26125,44,19.45,49,0.0 +26125,20,81,12,0.0 +26125,42,14,16,0.0 +26125,39,18,37,0.0 +26125,51,53,45,0.0 +26125,63,43.9,7,0.0 +26125,56,38,2,0.0 +26125,73,15,43,0.0 +26125,59,55,2,0.0 +26126,75,7.75,36,0.0 +26126,59,55,33,0.0 +26126,55,24,13,0.0 +26126,56,38,15,0.0 +26126,12,38,43,0.0 +26126,50,16.25,47,0.0 +26126,42,14,21,0.0 +26126,41,9.65,6,0.0 +26126,19,9.2,48,0.0 +26126,53,32.8,19,0.0 +26126,21,10,4,0.0 +26126,45,9.5,13,0.0 +26126,30,25.89,38,0.0 +26126,15,15.5,33,0.0 +26126,76,18,8,0.0 +26126,6,25,20,0.0 +26126,47,9.5,10,0.0 +26126,22,21,3,0.0 +26126,57,19.5,18,0.0 +26126,37,26,39,0.0 +26126,8,40,48,0.0 +26126,10,31,31,0.0 +26126,44,19.45,11,0.0 +26126,5,21.35,21,0.0 +26126,24,4.5,18,0.0 +26126,52,7,35,0.0 +26126,49,20,42,0.0 +26126,67,14,18,0.0 +26126,25,14,24,0.0 +26126,43,46,12,0.0 +26126,29,123.79,15,0.0 +26126,38,263.5,22,0.0 +26126,74,10,45,0.0 +26126,72,34.8,28,0.0 +26126,51,53,32,0.0 +26126,61,28.5,42,0.0 +26126,18,62.5,37,0.0 +26126,73,15,49,0.0 +26126,11,21,44,0.0 +26127,50,16.25,21,0.0 +26127,26,31.23,37,0.0 +26127,54,7.45,9,0.0 +26127,77,13,37,0.0 +26127,70,15,3,0.0 +26127,53,32.8,13,0.0 +26127,28,45.6,17,0.0 +26127,66,17,33,0.0 +26127,64,33.25,37,0.0 +26127,3,10,33,0.0 +26127,14,23.25,32,0.0 +26127,63,43.9,11,0.0 +26127,1,18,38,0.0 +26127,41,9.65,32,0.0 +26127,52,7,21,0.0 +26127,60,34,29,0.0 +26128,61,28.5,4,0.0 +26128,50,16.25,23,0.0 +26128,36,19,8,0.0 +26128,4,22,26,0.0 +26128,11,21,33,0.0 +26129,30,25.89,13,0.0 +26129,14,23.25,8,0.0 +26129,53,32.8,23,0.0 +26129,20,81,25,0.0 +26129,68,12.5,40,0.0 +26129,71,21.5,23,0.0 +26129,10,31,45,0.0 +26129,39,18,27,0.0 +26129,77,13,12,0.0 +26129,4,22,12,0.0 +26129,73,15,32,0.0 +26129,35,18,1,0.0 +26129,60,34,44,0.0 +26129,38,263.5,30,0.0 +26129,6,25,33,0.0 +26129,57,19.5,2,0.0 +26129,72,34.8,49,0.0 +26129,43,46,12,0.0 +26129,16,17.45,7,0.0 +26129,62,49.3,13,0.0 +26129,27,43.9,28,0.0 +26130,57,19.5,36,0.0 +26130,46,12,40,0.0 +26130,45,9.5,1,0.0 +26130,49,20,32,0.0 +26130,4,22,34,0.0 +26130,32,32,25,0.0 +26130,61,28.5,30,0.0 +26130,33,2.5,14,0.0 +26130,18,62.5,8,0.0 +26130,41,9.65,14,0.0 +26130,30,25.89,33,0.0 +26130,62,49.3,48,0.0 +26130,10,31,27,0.0 +26130,70,15,22,0.0 +26130,5,21.35,22,0.0 +26130,23,9,18,0.0 +26130,56,38,20,0.0 +26130,2,19,46,0.0 +26130,13,6,2,0.0 +26130,19,9.2,48,0.0 +26130,50,16.25,27,0.0 +26130,27,43.9,1,0.0 +26130,65,21.05,13,0.0 +26130,55,24,8,0.0 +26130,53,32.8,50,0.0 +26130,29,123.79,44,0.0 +26130,69,36,2,0.0 +26130,58,13.25,28,0.0 +26130,1,18,39,0.0 +26130,24,4.5,35,0.0 +26130,66,17,20,0.0 +26130,16,17.45,25,0.0 +26130,75,7.75,50,0.0 +26130,17,39,34,0.0 +26130,48,12.75,1,0.0 +26130,77,13,28,0.0 +26130,37,26,9,0.0 +26130,22,21,27,0.0 +26130,71,21.5,40,0.0 +26130,39,18,41,0.0 +26131,26,31.23,16,0.0 +26131,32,32,23,0.0 +26131,34,14,19,0.0 +26131,30,25.89,40,0.0 +26131,55,24,29,0.0 +26131,44,19.45,22,0.0 +26131,39,18,6,0.0 +26131,31,12.5,45,0.0 +26131,1,18,47,0.0 +26131,9,97,27,0.0 +26131,37,26,32,0.0 +26131,24,4.5,21,0.0 +26131,10,31,30,0.0 +26131,22,21,1,0.0 +26131,35,18,5,0.0 +26131,59,55,1,0.0 +26131,7,30,17,0.0 +26131,42,14,32,0.0 +26131,68,12.5,34,0.0 +26131,6,25,19,0.0 +26131,58,13.25,13,0.0 +26131,52,7,1,0.0 +26131,12,38,12,0.0 +26131,3,10,47,0.0 +26131,33,2.5,48,0.0 +26131,29,123.79,38,0.0 +26131,71,21.5,43,0.0 +26131,49,20,16,0.0 +26131,45,9.5,23,0.0 +26131,65,21.05,12,0.0 +26131,60,34,14,0.0 +26131,63,43.9,29,0.0 +26131,8,40,20,0.0 +26131,18,62.5,4,0.0 +26131,66,17,23,0.0 +26131,14,23.25,22,0.0 +26131,50,16.25,49,0.0 +26131,70,15,39,0.0 +26131,15,15.5,15,0.0 +26131,23,9,29,0.0 +26131,13,6,21,0.0 +26131,27,43.9,39,0.0 +26131,77,13,32,0.0 +26131,47,9.5,18,0.0 +26131,72,34.8,16,0.0 +26131,5,21.35,12,0.0 +26131,61,28.5,13,0.0 +26131,21,10,38,0.0 +26131,43,46,49,0.0 +26131,48,12.75,26,0.0 +26131,16,17.45,1,0.0 +26131,74,10,8,0.0 +26131,28,45.6,8,0.0 +26131,67,14,36,0.0 +26131,56,38,13,0.0 +26131,73,15,9,0.0 +26131,75,7.75,33,0.0 +26131,76,18,39,0.0 +26131,64,33.25,37,0.0 +26131,40,18.4,17,0.0 +26131,2,19,21,0.0 +26131,57,19.5,22,0.0 +26131,20,81,38,0.0 +26131,62,49.3,50,0.0 +26132,61,28.5,38,0.0 +26132,64,33.25,22,0.0 +26132,48,12.75,16,0.0 +26132,49,20,46,0.0 +26132,34,14,2,0.0 +26132,19,9.2,50,0.0 +26132,17,39,37,0.0 +26133,56,38,37,0.0 +26133,20,81,28,0.0 +26133,69,36,3,0.0 +26133,6,25,12,0.0 +26133,44,19.45,45,0.0 +26133,32,32,25,0.0 +26133,73,15,3,0.0 +26133,31,12.5,13,0.0 +26133,74,10,7,0.0 +26133,62,49.3,47,0.0 +26133,22,21,47,0.0 +26133,12,38,13,0.0 +26133,59,55,27,0.0 +26133,24,4.5,22,0.0 +26133,67,14,5,0.0 +26133,39,18,20,0.0 +26133,72,34.8,37,0.0 +26134,43,46,41,0.0 +26134,49,20,13,0.0 +26134,48,12.75,30,0.0 +26134,7,30,38,0.0 +26134,45,9.5,5,0.0 +26134,44,19.45,43,0.0 +26134,76,18,1,0.0 +26134,75,7.75,14,0.0 +26134,36,19,33,0.0 +26134,18,62.5,15,0.0 +26134,42,14,27,0.0 +26134,51,53,26,0.0 +26134,24,4.5,4,0.0 +26134,57,19.5,24,0.0 +26134,8,40,39,0.0 +26134,34,14,49,0.0 +26134,74,10,17,0.0 +26134,47,9.5,16,0.0 +26134,46,12,13,0.0 +26134,68,12.5,40,0.0 +26134,37,26,39,0.0 +26134,41,9.65,32,0.0 +26134,3,10,26,0.0 +26134,13,6,43,0.0 +26134,55,24,43,0.0 +26134,64,33.25,12,0.0 +26134,65,21.05,5,0.0 +26134,12,38,29,0.0 +26134,29,123.79,16,0.0 +26134,61,28.5,9,0.0 +26134,33,2.5,18,0.0 +26134,70,15,42,0.0 +26134,14,23.25,7,0.0 +26134,52,7,8,0.0 +26135,26,31.23,9,0.0 +26135,2,19,31,0.0 +26135,20,81,42,0.0 +26135,31,12.5,33,0.0 +26135,24,4.5,5,0.0 +26135,51,53,35,0.0 +26135,46,12,39,0.0 +26135,29,123.79,33,0.0 +26135,75,7.75,23,0.0 +26135,1,18,35,0.0 +26136,15,15.5,25,0.0 +26136,69,36,7,0.0 +26136,65,21.05,44,0.0 +26136,63,43.9,22,0.0 +26136,1,18,14,0.0 +26136,27,43.9,3,0.0 +26136,62,49.3,23,0.0 +26136,67,14,18,0.0 +26136,38,263.5,42,0.0 +26136,57,19.5,1,0.0 +26136,23,9,44,0.0 +26136,18,62.5,49,0.0 +26136,9,97,46,0.0 +26136,75,7.75,50,0.0 +26136,20,81,2,0.0 +26136,47,9.5,33,0.0 +26136,8,40,1,0.0 +26136,10,31,22,0.0 +26136,41,9.65,39,0.0 +26136,76,18,11,0.0 +26136,44,19.45,34,0.0 +26136,39,18,42,0.0 +26136,42,14,26,0.0 +26136,21,10,10,0.0 +26136,24,4.5,38,0.0 +26136,68,12.5,16,0.0 +26136,13,6,44,0.0 +26136,31,12.5,26,0.0 +26136,70,15,46,0.0 +26136,3,10,39,0.0 +26136,53,32.8,10,0.0 +26136,11,21,40,0.0 +26136,7,30,1,0.0 +26136,2,19,17,0.0 +26136,54,7.45,13,0.0 +26136,50,16.25,29,0.0 +26136,4,22,3,0.0 +26136,71,21.5,34,0.0 +26136,52,7,21,0.0 +26136,72,34.8,33,0.0 +26136,26,31.23,7,0.0 +26136,66,17,9,0.0 +26136,46,12,9,0.0 +26136,40,18.4,7,0.0 +26136,29,123.79,3,0.0 +26136,28,45.6,27,0.0 +26136,59,55,32,0.0 +26136,43,46,20,0.0 +26136,45,9.5,3,0.0 +26136,33,2.5,32,0.0 +26136,48,12.75,21,0.0 +26136,14,23.25,37,0.0 +26136,60,34,25,0.0 +26136,12,38,9,0.0 +26136,32,32,13,0.0 +26136,51,53,20,0.0 +26137,72,34.8,31,0.0 +26137,58,13.25,32,0.0 +26137,56,38,16,0.0 +26137,6,25,48,0.0 +26137,46,12,37,0.0 +26137,53,32.8,21,0.0 +26137,66,17,36,0.0 +26137,50,16.25,50,0.0 +26137,38,263.5,19,0.0 +26137,44,19.45,45,0.0 +26137,37,26,29,0.0 +26137,1,18,10,0.0 +26137,51,53,35,0.0 +26137,47,9.5,23,0.0 +26137,12,38,44,0.0 +26137,64,33.25,46,0.0 +26137,3,10,16,0.0 +26137,62,49.3,4,0.0 +26137,49,20,30,0.0 +26137,43,46,26,0.0 +26137,19,9.2,15,0.0 +26137,21,10,32,0.0 +26137,63,43.9,15,0.0 +26137,67,14,22,0.0 +26137,27,43.9,13,0.0 +26137,42,14,41,0.0 +26137,65,21.05,5,0.0 +26137,39,18,4,0.0 +26137,14,23.25,29,0.0 +26137,60,34,41,0.0 +26137,41,9.65,37,0.0 +26137,4,22,7,0.0 +26137,31,12.5,18,0.0 +26137,68,12.5,8,0.0 +26137,48,12.75,34,0.0 +26137,59,55,18,0.0 +26137,28,45.6,42,0.0 +26137,34,14,50,0.0 +26137,71,21.5,12,0.0 +26137,13,6,45,0.0 +26137,22,21,24,0.0 +26137,17,39,36,0.0 +26137,40,18.4,23,0.0 +26137,57,19.5,22,0.0 +26137,26,31.23,5,0.0 +26137,32,32,15,0.0 +26137,7,30,15,0.0 +26137,16,17.45,15,0.0 +26137,25,14,44,0.0 +26137,24,4.5,24,0.0 +26137,33,2.5,31,0.0 +26137,30,25.89,42,0.0 +26137,74,10,49,0.0 +26137,20,81,8,0.0 +26137,5,21.35,33,0.0 +26137,8,40,12,0.0 +26137,2,19,48,0.0 +26137,61,28.5,44,0.0 +26137,11,21,47,0.0 +26137,18,62.5,44,0.0 +26137,15,15.5,29,0.0 +26137,29,123.79,47,0.0 +26138,9,97,42,0.0 +26138,33,2.5,38,0.0 +26138,32,32,24,0.0 +26138,57,19.5,27,0.0 +26138,45,9.5,21,0.0 +26138,1,18,50,0.0 +26138,37,26,39,0.0 +26138,3,10,5,0.0 +26138,64,33.25,42,0.0 +26138,20,81,34,0.0 +26138,28,45.6,24,0.0 +26138,31,12.5,25,0.0 +26138,14,23.25,37,0.0 +26138,15,15.5,14,0.0 +26138,68,12.5,29,0.0 +26138,17,39,50,0.0 +26138,39,18,50,0.0 +26138,74,10,21,0.0 +26138,19,9.2,29,0.0 +26138,71,21.5,41,0.0 +26138,13,6,17,0.0 +26138,38,263.5,10,0.0 +26138,56,38,24,0.0 +26138,25,14,14,0.0 +26138,49,20,3,0.0 +26138,46,12,20,0.0 +26138,34,14,22,0.0 +26138,4,22,40,0.0 +26138,70,15,34,0.0 +26139,5,21.35,13,0.0 +26139,75,7.75,23,0.0 +26139,30,25.89,46,0.0 +26139,50,16.25,17,0.0 +26139,1,18,23,0.0 +26139,63,43.9,3,0.0 +26139,2,19,24,0.0 +26139,3,10,14,0.0 +26139,10,31,5,0.0 +26139,38,263.5,37,0.0 +26139,20,81,44,0.0 +26139,51,53,39,0.0 +26139,67,14,21,0.0 +26139,74,10,18,0.0 +26139,21,10,2,0.0 +26139,11,21,13,0.0 +26139,23,9,16,0.0 +26139,9,97,18,0.0 +26139,8,40,49,0.0 +26139,65,21.05,41,0.0 +26139,34,14,23,0.0 +26139,76,18,23,0.0 +26139,13,6,21,0.0 +26139,47,9.5,31,0.0 +26139,22,21,19,0.0 +26139,39,18,28,0.0 +26139,66,17,36,0.0 +26139,37,26,14,0.0 +26139,6,25,30,0.0 +26139,29,123.79,40,0.0 +26139,35,18,7,0.0 +26139,71,21.5,16,0.0 +26139,48,12.75,21,0.0 +26139,54,7.45,29,0.0 +26139,25,14,11,0.0 +26139,24,4.5,35,0.0 +26139,73,15,35,0.0 +26139,18,62.5,24,0.0 +26139,4,22,19,0.0 +26139,7,30,29,0.0 +26139,69,36,25,0.0 +26139,44,19.45,1,0.0 +26139,77,13,12,0.0 +26139,16,17.45,22,0.0 +26139,31,12.5,5,0.0 +26139,33,2.5,12,0.0 +26139,55,24,40,0.0 +26139,64,33.25,4,0.0 +26139,32,32,1,0.0 +26139,41,9.65,48,0.0 +26139,40,18.4,5,0.0 +26139,72,34.8,43,0.0 +26139,59,55,2,0.0 +26139,53,32.8,18,0.0 +26139,45,9.5,22,0.0 +26139,27,43.9,10,0.0 +26139,17,39,39,0.0 +26139,15,15.5,15,0.0 +26139,36,19,32,0.0 +26139,43,46,48,0.0 +26139,12,38,27,0.0 +26139,62,49.3,12,0.0 +26140,56,38,43,0.0 +26140,31,12.5,1,0.0 +26140,72,34.8,37,0.0 +26140,1,18,25,0.0 +26140,68,12.5,33,0.0 +26140,50,16.25,46,0.0 +26140,66,17,7,0.0 +26140,3,10,48,0.0 +26140,19,9.2,6,0.0 +26140,20,81,36,0.0 +26140,60,34,19,0.0 +26140,76,18,29,0.0 +26140,75,7.75,8,0.0 +26140,42,14,34,0.0 +26140,17,39,34,0.0 +26140,16,17.45,16,0.0 +26140,18,62.5,33,0.0 +26140,61,28.5,12,0.0 +26140,64,33.25,1,0.0 +26140,21,10,6,0.0 +26140,13,6,1,0.0 +26140,15,15.5,37,0.0 +26140,46,12,42,0.0 +26140,25,14,16,0.0 +26140,67,14,43,0.0 +26140,53,32.8,37,0.0 +26140,38,263.5,45,0.0 +26140,65,21.05,11,0.0 +26140,2,19,26,0.0 +26140,36,19,19,0.0 +26140,35,18,35,0.0 +26140,47,9.5,12,0.0 +26140,24,4.5,37,0.0 +26140,10,31,37,0.0 +26140,73,15,6,0.0 +26140,43,46,28,0.0 +26140,59,55,17,0.0 +26140,27,43.9,25,0.0 +26140,49,20,2,0.0 +26140,22,21,17,0.0 +26140,58,13.25,45,0.0 +26140,57,19.5,17,0.0 +26140,28,45.6,21,0.0 +26140,45,9.5,26,0.0 +26140,48,12.75,28,0.0 +26140,51,53,9,0.0 +26140,69,36,18,0.0 +26140,6,25,18,0.0 +26140,77,13,33,0.0 +26140,41,9.65,10,0.0 +26140,23,9,41,0.0 +26140,33,2.5,19,0.0 +26140,54,7.45,38,0.0 +26140,9,97,45,0.0 +26140,4,22,8,0.0 +26140,39,18,24,0.0 +26140,62,49.3,5,0.0 +26140,63,43.9,43,0.0 +26140,74,10,16,0.0 +26140,26,31.23,40,0.0 +26140,32,32,20,0.0 +26140,8,40,28,0.0 +26140,70,15,17,0.0 +26140,7,30,19,0.0 +26140,14,23.25,5,0.0 +26140,55,24,42,0.0 +26140,40,18.4,21,0.0 +26140,5,21.35,50,0.0 +26140,12,38,19,0.0 +26140,71,21.5,2,0.0 +26140,29,123.79,19,0.0 +26141,10,31,8,0.0 +26141,6,25,19,0.0 +26141,42,14,23,0.0 +26142,25,14,40,0.0 +26142,11,21,40,0.0 +26142,70,15,4,0.0 +26142,56,38,10,0.0 +26142,69,36,25,0.0 +26142,55,24,45,0.0 +26142,61,28.5,36,0.0 +26142,59,55,39,0.0 +26142,39,18,48,0.0 +26142,65,21.05,32,0.0 +26142,19,9.2,7,0.0 +26142,26,31.23,44,0.0 +26142,45,9.5,23,0.0 +26142,41,9.65,37,0.0 +26142,50,16.25,48,0.0 +26142,28,45.6,16,0.0 +26142,75,7.75,16,0.0 +26142,71,21.5,25,0.0 +26142,42,14,47,0.0 +26142,10,31,47,0.0 +26142,3,10,7,0.0 +26142,60,34,29,0.0 +26142,47,9.5,14,0.0 +26142,74,10,27,0.0 +26142,44,19.45,6,0.0 +26142,2,19,40,0.0 +26142,58,13.25,13,0.0 +26142,38,263.5,22,0.0 +26142,17,39,17,0.0 +26142,21,10,27,0.0 +26142,22,21,16,0.0 +26142,63,43.9,48,0.0 +26142,35,18,26,0.0 +26142,57,19.5,13,0.0 +26143,48,12.75,33,0.0 +26143,55,24,12,0.0 +26143,9,97,44,0.0 +26143,58,13.25,50,0.0 +26143,50,16.25,44,0.0 +26143,30,25.89,13,0.0 +26143,42,14,32,0.0 +26143,10,31,26,0.0 +26143,72,34.8,49,0.0 +26143,18,62.5,48,0.0 +26143,43,46,28,0.0 +26143,16,17.45,19,0.0 +26143,66,17,10,0.0 +26143,45,9.5,43,0.0 +26143,73,15,20,0.0 +26143,11,21,32,0.0 +26143,62,49.3,48,0.0 +26143,56,38,33,0.0 +26143,69,36,7,0.0 +26143,26,31.23,36,0.0 +26143,64,33.25,43,0.0 +26143,1,18,40,0.0 +26143,21,10,5,0.0 +26143,53,32.8,31,0.0 +26143,46,12,49,0.0 +26143,23,9,48,0.0 +26143,44,19.45,41,0.0 +26143,2,19,11,0.0 +26143,35,18,6,0.0 +26143,67,14,26,0.0 +26143,15,15.5,27,0.0 +26143,5,21.35,26,0.0 +26143,63,43.9,39,0.0 +26143,57,19.5,15,0.0 +26143,70,15,21,0.0 +26143,76,18,9,0.0 +26143,74,10,41,0.0 +26143,22,21,39,0.0 +26143,54,7.45,48,0.0 +26143,6,25,28,0.0 +26143,49,20,20,0.0 +26143,12,38,47,0.0 +26143,37,26,38,0.0 +26143,4,22,39,0.0 +26143,41,9.65,41,0.0 +26143,51,53,2,0.0 +26143,36,19,6,0.0 +26143,33,2.5,48,0.0 +26143,8,40,17,0.0 +26143,19,9.2,48,0.0 +26143,71,21.5,18,0.0 +26144,24,4.5,35,0.0 +26144,62,49.3,15,0.0 +26144,70,15,2,0.0 +26144,51,53,18,0.0 +26144,55,24,8,0.0 +26144,59,55,40,0.0 +26144,60,34,16,0.0 +26144,4,22,10,0.0 +26144,20,81,33,0.0 +26144,39,18,36,0.0 +26144,68,12.5,25,0.0 +26144,53,32.8,20,0.0 +26144,2,19,5,0.0 +26144,44,19.45,38,0.0 +26144,25,14,44,0.0 +26144,21,10,19,0.0 +26144,22,21,16,0.0 +26144,45,9.5,42,0.0 +26144,67,14,14,0.0 +26144,28,45.6,25,0.0 +26144,29,123.79,11,0.0 +26144,6,25,24,0.0 +26144,30,25.89,40,0.0 +26144,5,21.35,34,0.0 +26144,12,38,25,0.0 +26144,54,7.45,8,0.0 +26144,26,31.23,49,0.0 +26144,10,31,41,0.0 +26144,48,12.75,34,0.0 +26144,7,30,30,0.0 +26144,52,7,33,0.0 +26144,13,6,23,0.0 +26144,49,20,42,0.0 +26144,37,26,39,0.0 +26144,65,21.05,2,0.0 +26144,33,2.5,24,0.0 +26144,38,263.5,36,0.0 +26144,66,17,19,0.0 +26144,1,18,35,0.0 +26144,3,10,37,0.0 +26144,71,21.5,5,0.0 +26144,58,13.25,46,0.0 +26144,17,39,39,0.0 +26144,61,28.5,24,0.0 +26144,76,18,26,0.0 +26144,40,18.4,13,0.0 +26144,64,33.25,50,0.0 +26144,31,12.5,50,0.0 +26144,27,43.9,47,0.0 +26144,75,7.75,18,0.0 +26144,74,10,19,0.0 +26144,41,9.65,38,0.0 +26144,56,38,13,0.0 +26144,18,62.5,23,0.0 +26144,9,97,44,0.0 +26145,1,18,35,0.0 +26145,13,6,44,0.0 +26145,47,9.5,10,0.0 +26145,12,38,49,0.0 +26145,59,55,7,0.0 +26145,72,34.8,7,0.0 +26145,54,7.45,27,0.0 +26145,41,9.65,25,0.0 +26145,39,18,26,0.0 +26145,62,49.3,49,0.0 +26145,22,21,24,0.0 +26145,48,12.75,9,0.0 +26145,52,7,48,0.0 +26145,16,17.45,43,0.0 +26145,7,30,32,0.0 +26145,71,21.5,28,0.0 +26145,14,23.25,48,0.0 +26145,5,21.35,30,0.0 +26145,51,53,50,0.0 +26145,15,15.5,39,0.0 +26145,74,10,41,0.0 +26145,19,9.2,37,0.0 +26145,17,39,14,0.0 +26145,6,25,27,0.0 +26145,4,22,22,0.0 +26145,3,10,14,0.0 +26145,65,21.05,10,0.0 +26145,38,263.5,2,0.0 +26145,10,31,9,0.0 +26145,73,15,16,0.0 +26145,68,12.5,39,0.0 +26145,64,33.25,44,0.0 +26145,11,21,17,0.0 +26145,77,13,33,0.0 +26145,26,31.23,43,0.0 +26145,50,16.25,42,0.0 +26145,42,14,15,0.0 +26145,21,10,27,0.0 +26145,9,97,26,0.0 +26145,35,18,38,0.0 +26145,49,20,43,0.0 +26145,24,4.5,46,0.0 +26145,76,18,7,0.0 +26145,61,28.5,31,0.0 +26145,30,25.89,30,0.0 +26145,53,32.8,42,0.0 +26145,44,19.45,27,0.0 +26145,8,40,16,0.0 +26145,29,123.79,3,0.0 +26145,43,46,26,0.0 +26145,37,26,1,0.0 +26145,32,32,42,0.0 +26145,55,24,38,0.0 +26145,31,12.5,21,0.0 +26145,45,9.5,11,0.0 +26145,58,13.25,20,0.0 +26145,23,9,26,0.0 +26145,28,45.6,23,0.0 +26145,18,62.5,9,0.0 +26145,70,15,16,0.0 +26145,27,43.9,47,0.0 +26145,46,12,40,0.0 +26145,34,14,10,0.0 +26145,25,14,37,0.0 +26145,36,19,36,0.0 +26145,57,19.5,43,0.0 +26145,40,18.4,27,0.0 +26145,2,19,34,0.0 +26146,7,30,33,0.0 +26146,62,49.3,10,0.0 +26146,16,17.45,1,0.0 +26146,74,10,22,0.0 +26146,69,36,24,0.0 +26146,9,97,23,0.0 +26146,4,22,25,0.0 +26146,20,81,16,0.0 +26146,63,43.9,28,0.0 +26146,76,18,49,0.0 +26146,67,14,48,0.0 +26146,25,14,16,0.0 +26146,50,16.25,31,0.0 +26146,48,12.75,47,0.0 +26146,2,19,35,0.0 +26146,44,19.45,5,0.0 +26146,8,40,9,0.0 +26146,46,12,2,0.0 +26146,19,9.2,22,0.0 +26146,10,31,28,0.0 +26146,30,25.89,32,0.0 +26146,71,21.5,47,0.0 +26146,3,10,30,0.0 +26146,17,39,16,0.0 +26146,34,14,30,0.0 +26146,38,263.5,27,0.0 +26146,13,6,34,0.0 +26146,59,55,34,0.0 +26146,15,15.5,43,0.0 +26146,28,45.6,29,0.0 +26146,42,14,7,0.0 +26147,57,19.5,36,0.0 +26147,73,15,15,0.0 +26147,43,46,12,0.0 +26147,23,9,15,0.0 +26147,54,7.45,10,0.0 +26147,52,7,9,0.0 +26147,11,21,20,0.0 +26147,50,16.25,2,0.0 +26147,58,13.25,31,0.0 +26147,35,18,25,0.0 +26147,13,6,24,0.0 +26147,26,31.23,45,0.0 +26147,15,15.5,46,0.0 +26147,53,32.8,29,0.0 +26147,7,30,31,0.0 +26147,67,14,45,0.0 +26147,19,9.2,25,0.0 +26147,18,62.5,32,0.0 +26147,40,18.4,40,0.0 +26147,4,22,21,0.0 +26147,60,34,48,0.0 +26147,25,14,16,0.0 +26147,38,263.5,44,0.0 +26147,61,28.5,30,0.0 +26147,71,21.5,29,0.0 +26147,28,45.6,16,0.0 +26147,31,12.5,22,0.0 +26147,70,15,29,0.0 +26147,74,10,49,0.0 +26147,6,25,40,0.0 +26147,17,39,42,0.0 +26147,37,26,47,0.0 +26147,34,14,36,0.0 +26148,20,81,41,0.0 +26148,55,24,31,0.0 +26148,24,4.5,47,0.0 +26148,33,2.5,12,0.0 +26149,45,9.5,29,0.0 +26149,76,18,7,0.0 +26149,67,14,9,0.0 +26149,58,13.25,2,0.0 +26149,39,18,19,0.0 +26149,66,17,35,0.0 +26149,44,19.45,44,0.0 +26149,1,18,28,0.0 +26149,32,32,14,0.0 +26149,54,7.45,27,0.0 +26149,7,30,37,0.0 +26149,36,19,24,0.0 +26149,61,28.5,37,0.0 +26149,22,21,22,0.0 +26149,51,53,39,0.0 +26149,60,34,49,0.0 +26149,19,9.2,25,0.0 +26149,57,19.5,46,0.0 +26149,17,39,17,0.0 +26149,30,25.89,1,0.0 +26149,74,10,39,0.0 +26149,5,21.35,49,0.0 +26149,28,45.6,48,0.0 +26149,55,24,27,0.0 +26149,40,18.4,23,0.0 +26149,29,123.79,6,0.0 +26149,56,38,30,0.0 +26149,11,21,49,0.0 +26149,75,7.75,45,0.0 +26149,69,36,5,0.0 +26149,18,62.5,42,0.0 +26149,26,31.23,30,0.0 +26149,25,14,46,0.0 +26149,3,10,30,0.0 +26149,6,25,18,0.0 +26149,4,22,20,0.0 +26149,2,19,14,0.0 +26149,13,6,43,0.0 +26149,72,34.8,2,0.0 +26149,52,7,14,0.0 +26149,37,26,38,0.0 +26149,35,18,22,0.0 +26149,65,21.05,27,0.0 +26149,31,12.5,35,0.0 +26149,70,15,28,0.0 +26149,48,12.75,4,0.0 +26149,43,46,34,0.0 +26149,77,13,12,0.0 +26149,21,10,11,0.0 +26149,20,81,41,0.0 +26149,53,32.8,8,0.0 +26149,15,15.5,22,0.0 +26149,16,17.45,50,0.0 +26149,73,15,16,0.0 +26149,71,21.5,20,0.0 +26149,62,49.3,9,0.0 +26149,14,23.25,48,0.0 +26149,8,40,41,0.0 +26149,59,55,25,0.0 +26149,10,31,30,0.0 +26149,47,9.5,5,0.0 +26149,27,43.9,15,0.0 +26149,33,2.5,50,0.0 +26149,12,38,37,0.0 +26149,9,97,30,0.0 +26149,38,263.5,37,0.0 +26149,34,14,9,0.0 +26149,49,20,8,0.0 +26149,46,12,50,0.0 +26149,63,43.9,2,0.0 +26149,42,14,40,0.0 +26149,41,9.65,43,0.0 +26149,50,16.25,6,0.0 +26149,64,33.25,29,0.0 +26149,24,4.5,5,0.0 +26149,23,9,48,0.0 +26149,68,12.5,16,0.0 +26150,27,43.9,49,0.0 +26150,40,18.4,22,0.0 +26150,72,34.8,3,0.0 +26150,20,81,10,0.0 +26150,52,7,36,0.0 +26150,23,9,24,0.0 +26151,14,23.25,27,0.0 +26151,35,18,10,0.0 +26151,70,15,25,0.0 +26151,11,21,18,0.0 +26151,19,9.2,39,0.0 +26151,24,4.5,13,0.0 +26151,75,7.75,12,0.0 +26151,61,28.5,41,0.0 +26151,4,22,43,0.0 +26151,50,16.25,43,0.0 +26151,36,19,10,0.0 +26151,51,53,38,0.0 +26151,13,6,47,0.0 +26151,41,9.65,25,0.0 +26152,55,24,38,0.0 +26152,60,34,26,0.0 +26152,34,14,3,0.0 +26152,47,9.5,27,0.0 +26152,75,7.75,2,0.0 +26152,7,30,22,0.0 +26152,15,15.5,44,0.0 +26152,9,97,48,0.0 +26152,52,7,8,0.0 +26152,71,21.5,45,0.0 +26152,22,21,39,0.0 +26152,43,46,14,0.0 +26152,33,2.5,20,0.0 +26152,8,40,32,0.0 +26152,39,18,26,0.0 +26152,48,12.75,29,0.0 +26152,11,21,23,0.0 +26152,12,38,28,0.0 +26152,16,17.45,47,0.0 +26152,30,25.89,12,0.0 +26152,4,22,38,0.0 +26152,45,9.5,15,0.0 +26152,13,6,26,0.0 +26152,66,17,6,0.0 +26152,63,43.9,25,0.0 +26152,64,33.25,41,0.0 +26152,17,39,33,0.0 +26152,32,32,3,0.0 +26152,76,18,31,0.0 +26152,31,12.5,21,0.0 +26152,67,14,14,0.0 +26152,20,81,19,0.0 +26152,72,34.8,49,0.0 +26152,56,38,34,0.0 +26152,38,263.5,10,0.0 +26153,75,7.75,9,0.0 +26153,50,16.25,39,0.0 +26153,73,15,19,0.0 +26153,54,7.45,27,0.0 +26153,1,18,11,0.0 +26153,53,32.8,13,0.0 +26153,8,40,32,0.0 +26153,57,19.5,16,0.0 +26153,19,9.2,25,0.0 +26153,4,22,18,0.0 +26153,43,46,15,0.0 +26153,71,21.5,23,0.0 +26153,26,31.23,35,0.0 +26153,72,34.8,7,0.0 +26153,33,2.5,12,0.0 +26153,14,23.25,41,0.0 +26153,34,14,41,0.0 +26153,18,62.5,45,0.0 +26153,74,10,11,0.0 +26153,15,15.5,8,0.0 +26153,77,13,41,0.0 +26153,28,45.6,29,0.0 +26153,11,21,16,0.0 +26153,37,26,19,0.0 +26153,65,21.05,44,0.0 +26153,30,25.89,7,0.0 +26153,2,19,26,0.0 +26153,36,19,13,0.0 +26153,17,39,24,0.0 +26153,59,55,26,0.0 +26153,39,18,5,0.0 +26153,31,12.5,13,0.0 +26153,64,33.25,43,0.0 +26154,2,19,11,0.0 +26154,10,31,43,0.0 +26154,73,15,27,0.0 +26154,22,21,3,0.0 +26154,61,28.5,30,0.0 +26154,52,7,18,0.0 +26154,56,38,19,0.0 +26154,69,36,27,0.0 +26154,17,39,43,0.0 +26154,13,6,43,0.0 +26154,33,2.5,8,0.0 +26154,46,12,15,0.0 +26154,76,18,43,0.0 +26154,50,16.25,14,0.0 +26155,2,19,24,0.0 +26155,59,55,31,0.0 +26155,63,43.9,29,0.0 +26155,4,22,44,0.0 +26155,77,13,40,0.0 +26155,72,34.8,26,0.0 +26155,52,7,24,0.0 +26155,66,17,30,0.0 +26155,34,14,28,0.0 +26155,10,31,46,0.0 +26155,69,36,24,0.0 +26155,74,10,21,0.0 +26155,67,14,42,0.0 +26155,5,21.35,32,0.0 +26155,42,14,50,0.0 +26155,25,14,44,0.0 +26155,65,21.05,16,0.0 +26155,54,7.45,20,0.0 +26155,32,32,25,0.0 +26155,55,24,50,0.0 +26155,64,33.25,45,0.0 +26155,61,28.5,23,0.0 +26155,68,12.5,42,0.0 +26155,30,25.89,4,0.0 +26155,24,4.5,2,0.0 +26155,39,18,3,0.0 +26155,46,12,5,0.0 +26155,57,19.5,49,0.0 +26155,15,15.5,42,0.0 +26155,62,49.3,10,0.0 +26155,76,18,36,0.0 +26155,1,18,13,0.0 +26155,71,21.5,39,0.0 +26155,45,9.5,31,0.0 +26155,22,21,2,0.0 +26155,11,21,48,0.0 +26155,20,81,2,0.0 +26155,70,15,20,0.0 +26155,48,12.75,12,0.0 +26155,14,23.25,19,0.0 +26155,51,53,21,0.0 +26155,53,32.8,23,0.0 +26155,37,26,43,0.0 +26155,27,43.9,39,0.0 +26155,19,9.2,12,0.0 +26155,26,31.23,16,0.0 +26155,13,6,29,0.0 +26155,60,34,20,0.0 +26155,44,19.45,49,0.0 +26155,31,12.5,35,0.0 +26155,36,19,2,0.0 +26155,56,38,47,0.0 +26155,41,9.65,3,0.0 +26155,8,40,43,0.0 +26155,47,9.5,22,0.0 +26156,42,14,21,0.0 +26156,33,2.5,27,0.0 +26156,35,18,37,0.0 +26156,54,7.45,30,0.0 +26156,57,19.5,45,0.0 +26156,67,14,30,0.0 +26156,66,17,47,0.0 +26156,27,43.9,12,0.0 +26156,51,53,47,0.0 +26156,59,55,41,0.0 +26156,55,24,1,0.0 +26156,70,15,36,0.0 +26156,49,20,26,0.0 +26156,75,7.75,49,0.0 +26156,24,4.5,32,0.0 +26156,77,13,15,0.0 +26156,47,9.5,31,0.0 +26156,74,10,27,0.0 +26156,48,12.75,11,0.0 +26156,14,23.25,4,0.0 +26156,53,32.8,5,0.0 +26156,19,9.2,32,0.0 +26156,4,22,24,0.0 +26156,52,7,45,0.0 +26156,37,26,22,0.0 +26156,62,49.3,29,0.0 +26156,61,28.5,45,0.0 +26156,8,40,40,0.0 +26156,58,13.25,23,0.0 +26156,60,34,13,0.0 +26156,41,9.65,1,0.0 +26156,16,17.45,23,0.0 +26156,40,18.4,6,0.0 +26156,71,21.5,14,0.0 +26156,68,12.5,3,0.0 +26156,20,81,16,0.0 +26156,17,39,35,0.0 +26156,2,19,12,0.0 +26156,10,31,44,0.0 +26156,26,31.23,31,0.0 +26156,56,38,28,0.0 +26156,31,12.5,45,0.0 +26156,5,21.35,33,0.0 +26156,38,263.5,4,0.0 +26156,28,45.6,11,0.0 +26156,25,14,28,0.0 +26156,34,14,43,0.0 +26157,3,10,23,0.0 +26157,50,16.25,9,0.0 +26157,20,81,42,0.0 +26157,61,28.5,15,0.0 +26157,34,14,49,0.0 +26157,42,14,37,0.0 +26157,71,21.5,25,0.0 +26157,44,19.45,34,0.0 +26157,16,17.45,6,0.0 +26157,21,10,42,0.0 +26157,6,25,16,0.0 +26157,31,12.5,38,0.0 +26157,24,4.5,14,0.0 +26157,36,19,8,0.0 +26157,52,7,7,0.0 +26157,75,7.75,49,0.0 +26157,60,34,12,0.0 +26157,47,9.5,43,0.0 +26157,67,14,37,0.0 +26157,43,46,10,0.0 +26157,8,40,13,0.0 +26157,58,13.25,26,0.0 +26157,9,97,37,0.0 +26157,48,12.75,25,0.0 +26157,28,45.6,16,0.0 +26157,26,31.23,47,0.0 +26157,74,10,11,0.0 +26157,55,24,2,0.0 +26157,70,15,18,0.0 +26157,32,32,23,0.0 +26157,17,39,20,0.0 +26157,14,23.25,42,0.0 +26157,2,19,30,0.0 +26157,41,9.65,2,0.0 +26157,33,2.5,41,0.0 +26157,10,31,17,0.0 +26157,69,36,22,0.0 +26157,23,9,46,0.0 +26157,40,18.4,20,0.0 +26157,57,19.5,38,0.0 +26157,13,6,29,0.0 +26157,59,55,41,0.0 +26157,5,21.35,12,0.0 +26157,77,13,20,0.0 +26157,7,30,29,0.0 +26157,72,34.8,45,0.0 +26157,19,9.2,38,0.0 +26158,13,6,2,0.0 +26158,11,21,21,0.0 +26158,44,19.45,28,0.0 +26158,25,14,20,0.0 +26158,76,18,40,0.0 +26158,50,16.25,33,0.0 +26158,69,36,49,0.0 +26158,16,17.45,4,0.0 +26158,65,21.05,35,0.0 +26158,70,15,44,0.0 +26158,7,30,9,0.0 +26158,17,39,16,0.0 +26158,55,24,25,0.0 +26158,37,26,32,0.0 +26158,24,4.5,34,0.0 +26159,53,32.8,49,0.0 +26159,16,17.45,22,0.0 +26159,23,9,11,0.0 +26159,13,6,19,0.0 +26159,38,263.5,46,0.0 +26159,2,19,43,0.0 +26159,39,18,40,0.0 +26159,47,9.5,2,0.0 +26159,8,40,11,0.0 +26159,65,21.05,8,0.0 +26159,7,30,5,0.0 +26159,4,22,21,0.0 +26159,15,15.5,5,0.0 +26159,64,33.25,41,0.0 +26159,70,15,8,0.0 +26159,45,9.5,5,0.0 +26159,52,7,46,0.0 +26159,48,12.75,21,0.0 +26159,68,12.5,7,0.0 +26159,76,18,42,0.0 +26159,43,46,21,0.0 +26159,56,38,5,0.0 +26159,44,19.45,27,0.0 +26159,63,43.9,21,0.0 +26159,3,10,17,0.0 +26159,59,55,7,0.0 +26159,58,13.25,16,0.0 +26159,69,36,1,0.0 +26159,18,62.5,32,0.0 +26159,61,28.5,2,0.0 +26159,73,15,33,0.0 +26159,1,18,21,0.0 +26159,27,43.9,31,0.0 +26159,25,14,31,0.0 +26159,35,18,50,0.0 +26159,46,12,21,0.0 +26159,19,9.2,37,0.0 +26159,71,21.5,4,0.0 +26159,50,16.25,46,0.0 +26159,29,123.79,19,0.0 +26159,72,34.8,36,0.0 +26159,75,7.75,5,0.0 +26160,20,81,27,0.0 +26160,19,9.2,25,0.0 +26160,9,97,10,0.0 +26160,59,55,7,0.0 +26160,43,46,30,0.0 +26160,69,36,46,0.0 +26160,22,21,50,0.0 +26160,70,15,29,0.0 +26160,16,17.45,47,0.0 +26160,14,23.25,35,0.0 +26160,56,38,4,0.0 +26160,40,18.4,37,0.0 +26160,39,18,35,0.0 +26160,42,14,35,0.0 +26160,37,26,25,0.0 +26160,72,34.8,31,0.0 +26160,4,22,8,0.0 +26160,76,18,14,0.0 +26160,26,31.23,8,0.0 +26160,11,21,5,0.0 +26160,47,9.5,38,0.0 +26160,64,33.25,21,0.0 +26160,41,9.65,14,0.0 +26160,50,16.25,27,0.0 +26160,65,21.05,47,0.0 +26160,73,15,11,0.0 +26160,66,17,40,0.0 +26160,23,9,16,0.0 +26160,27,43.9,4,0.0 +26160,35,18,11,0.0 +26160,36,19,4,0.0 +26160,8,40,21,0.0 +26160,54,7.45,9,0.0 +26160,2,19,35,0.0 +26160,57,19.5,35,0.0 +26160,51,53,36,0.0 +26160,10,31,37,0.0 +26160,74,10,30,0.0 +26160,75,7.75,39,0.0 +26160,21,10,25,0.0 +26160,29,123.79,27,0.0 +26160,3,10,27,0.0 +26160,28,45.6,16,0.0 +26160,6,25,9,0.0 +26160,25,14,19,0.0 +26160,61,28.5,29,0.0 +26160,44,19.45,23,0.0 +26160,63,43.9,42,0.0 +26160,45,9.5,35,0.0 +26160,12,38,47,0.0 +26160,62,49.3,15,0.0 +26160,77,13,30,0.0 +26160,31,12.5,40,0.0 +26160,58,13.25,5,0.0 +26160,13,6,25,0.0 +26160,5,21.35,5,0.0 +26160,24,4.5,26,0.0 +26160,18,62.5,45,0.0 +26160,60,34,16,0.0 +26161,46,12,35,0.0 +26161,16,17.45,18,0.0 +26161,28,45.6,31,0.0 +26161,9,97,15,0.0 +26161,11,21,25,0.0 +26161,71,21.5,44,0.0 +26161,62,49.3,1,0.0 +26162,25,14,47,0.0 +26162,30,25.89,29,0.0 +26162,65,21.05,34,0.0 +26162,67,14,42,0.0 +26162,32,32,15,0.0 +26162,69,36,34,0.0 +26162,62,49.3,9,0.0 +26162,54,7.45,1,0.0 +26162,48,12.75,41,0.0 +26162,40,18.4,9,0.0 +26162,9,97,12,0.0 +26162,28,45.6,20,0.0 +26162,46,12,19,0.0 +26162,43,46,13,0.0 +26162,36,19,2,0.0 +26162,68,12.5,1,0.0 +26162,18,62.5,30,0.0 +26162,33,2.5,11,0.0 +26162,70,15,23,0.0 +26162,6,25,42,0.0 +26162,52,7,28,0.0 +26162,63,43.9,41,0.0 +26162,60,34,29,0.0 +26162,58,13.25,50,0.0 +26162,38,263.5,34,0.0 +26162,19,9.2,41,0.0 +26162,74,10,43,0.0 +26162,47,9.5,30,0.0 +26162,39,18,33,0.0 +26162,17,39,50,0.0 +26162,27,43.9,13,0.0 +26162,26,31.23,37,0.0 +26162,24,4.5,37,0.0 +26162,44,19.45,43,0.0 +26162,41,9.65,14,0.0 +26162,16,17.45,12,0.0 +26162,49,20,19,0.0 +26162,42,14,50,0.0 +26162,73,15,24,0.0 +26162,76,18,28,0.0 +26162,4,22,34,0.0 +26162,5,21.35,24,0.0 +26162,21,10,12,0.0 +26162,50,16.25,17,0.0 +26162,29,123.79,43,0.0 +26162,1,18,39,0.0 +26162,51,53,30,0.0 +26162,59,55,50,0.0 +26162,15,15.5,2,0.0 +26162,8,40,35,0.0 +26162,55,24,4,0.0 +26162,22,21,30,0.0 +26162,72,34.8,41,0.0 +26162,77,13,47,0.0 +26162,34,14,27,0.0 +26162,10,31,15,0.0 +26162,11,21,28,0.0 +26162,53,32.8,5,0.0 +26162,61,28.5,31,0.0 +26162,66,17,34,0.0 +26162,20,81,25,0.0 +26162,7,30,45,0.0 +26162,71,21.5,37,0.0 +26162,3,10,39,0.0 +26162,31,12.5,7,0.0 +26163,62,49.3,47,0.0 +26163,8,40,33,0.0 +26163,7,30,45,0.0 +26163,65,21.05,32,0.0 +26163,40,18.4,32,0.0 +26163,41,9.65,17,0.0 +26163,67,14,32,0.0 +26163,31,12.5,44,0.0 +26163,77,13,1,0.0 +26163,56,38,14,0.0 +26163,51,53,22,0.0 +26163,73,15,30,0.0 +26163,22,21,17,0.0 +26163,14,23.25,41,0.0 +26163,18,62.5,18,0.0 +26163,74,10,14,0.0 +26163,42,14,22,0.0 +26163,72,34.8,45,0.0 +26163,71,21.5,15,0.0 +26163,4,22,3,0.0 +26163,50,16.25,15,0.0 +26163,49,20,26,0.0 +26163,64,33.25,11,0.0 +26163,27,43.9,46,0.0 +26163,11,21,5,0.0 +26164,29,123.79,41,0.0 +26164,11,21,7,0.0 +26164,5,21.35,6,0.0 +26164,65,21.05,24,0.0 +26164,36,19,5,0.0 +26164,43,46,24,0.0 +26164,37,26,12,0.0 +26164,14,23.25,35,0.0 +26164,62,49.3,23,0.0 +26164,9,97,46,0.0 +26164,20,81,35,0.0 +26164,64,33.25,13,0.0 +26164,38,263.5,36,0.0 +26164,50,16.25,1,0.0 +26164,10,31,17,0.0 +26164,21,10,28,0.0 +26164,57,19.5,40,0.0 +26164,53,32.8,28,0.0 +26164,7,30,4,0.0 +26164,15,15.5,46,0.0 +26164,52,7,2,0.0 +26164,40,18.4,1,0.0 +26164,74,10,16,0.0 +26164,13,6,47,0.0 +26164,76,18,26,0.0 +26164,45,9.5,36,0.0 +26164,26,31.23,17,0.0 +26164,72,34.8,9,0.0 +26164,6,25,2,0.0 +26164,31,12.5,45,0.0 +26164,1,18,31,0.0 +26164,24,4.5,23,0.0 +26164,4,22,32,0.0 +26165,38,263.5,44,0.0 +26165,58,13.25,30,0.0 +26165,20,81,4,0.0 +26165,10,31,22,0.0 +26165,56,38,32,0.0 +26165,57,19.5,25,0.0 +26165,49,20,27,0.0 +26165,22,21,14,0.0 +26165,42,14,41,0.0 +26165,69,36,46,0.0 +26165,48,12.75,44,0.0 +26165,50,16.25,41,0.0 +26165,6,25,5,0.0 +26165,60,34,42,0.0 +26165,29,123.79,8,0.0 +26165,39,18,44,0.0 +26165,13,6,49,0.0 +26165,3,10,45,0.0 +26165,63,43.9,44,0.0 +26165,64,33.25,43,0.0 +26165,32,32,5,0.0 +26165,4,22,47,0.0 +26165,71,21.5,26,0.0 +26165,46,12,18,0.0 +26165,11,21,1,0.0 +26165,51,53,45,0.0 +26165,75,7.75,44,0.0 +26165,44,19.45,17,0.0 +26165,61,28.5,19,0.0 +26165,54,7.45,6,0.0 +26165,25,14,50,0.0 +26165,62,49.3,39,0.0 +26165,70,15,34,0.0 +26165,76,18,47,0.0 +26165,36,19,3,0.0 +26165,23,9,45,0.0 +26165,9,97,26,0.0 +26165,24,4.5,8,0.0 +26165,40,18.4,25,0.0 +26165,31,12.5,3,0.0 +26165,5,21.35,42,0.0 +26165,67,14,48,0.0 +26165,68,12.5,12,0.0 +26165,37,26,44,0.0 +26166,70,15,15,0.0 +26166,38,263.5,40,0.0 +26166,30,25.89,12,0.0 +26166,29,123.79,15,0.0 +26166,62,49.3,14,0.0 +26166,37,26,16,0.0 +26166,61,28.5,1,0.0 +26166,8,40,25,0.0 +26166,39,18,44,0.0 +26166,19,9.2,3,0.0 +26166,28,45.6,9,0.0 +26166,60,34,19,0.0 +26166,55,24,1,0.0 +26166,7,30,13,0.0 +26166,77,13,25,0.0 +26166,73,15,19,0.0 +26166,11,21,27,0.0 +26166,21,10,41,0.0 +26166,47,9.5,13,0.0 +26166,63,43.9,31,0.0 +26166,27,43.9,16,0.0 +26166,2,19,9,0.0 +26166,76,18,13,0.0 +26166,67,14,32,0.0 +26166,17,39,36,0.0 +26166,35,18,47,0.0 +26166,53,32.8,42,0.0 +26166,52,7,1,0.0 +26166,40,18.4,41,0.0 +26166,66,17,36,0.0 +26166,3,10,9,0.0 +26166,20,81,47,0.0 +26166,23,9,15,0.0 +26166,25,14,46,0.0 +26166,1,18,20,0.0 +26166,74,10,5,0.0 +26166,69,36,38,0.0 +26166,32,32,48,0.0 +26166,51,53,37,0.0 +26166,64,33.25,48,0.0 +26166,15,15.5,17,0.0 +26166,4,22,35,0.0 +26166,22,21,10,0.0 +26166,72,34.8,21,0.0 +26166,24,4.5,25,0.0 +26166,6,25,26,0.0 +26166,48,12.75,4,0.0 +26166,43,46,17,0.0 +26166,75,7.75,5,0.0 +26166,31,12.5,2,0.0 +26166,54,7.45,29,0.0 +26166,57,19.5,38,0.0 +26166,71,21.5,20,0.0 +26166,59,55,6,0.0 +26166,42,14,27,0.0 +26166,50,16.25,31,0.0 +26166,45,9.5,1,0.0 +26166,41,9.65,19,0.0 +26166,33,2.5,6,0.0 +26166,12,38,49,0.0 +26166,58,13.25,31,0.0 +26166,36,19,27,0.0 +26166,49,20,39,0.0 +26167,75,7.75,10,0.0 +26167,22,21,30,0.0 +26167,15,15.5,11,0.0 +26167,72,34.8,36,0.0 +26167,63,43.9,11,0.0 +26167,66,17,2,0.0 +26167,49,20,32,0.0 +26167,64,33.25,34,0.0 +26167,59,55,31,0.0 +26167,10,31,18,0.0 +26167,30,25.89,4,0.0 +26167,2,19,24,0.0 +26167,20,81,42,0.0 +26167,13,6,9,0.0 +26167,55,24,31,0.0 +26167,76,18,49,0.0 +26167,43,46,13,0.0 +26167,5,21.35,8,0.0 +26167,12,38,1,0.0 +26167,71,21.5,50,0.0 +26167,47,9.5,44,0.0 +26167,42,14,38,0.0 +26167,29,123.79,31,0.0 +26167,57,19.5,43,0.0 +26167,38,263.5,4,0.0 +26167,4,22,25,0.0 +26167,18,62.5,38,0.0 +26167,77,13,15,0.0 +26167,58,13.25,42,0.0 +26167,62,49.3,22,0.0 +26167,60,34,21,0.0 +26167,67,14,38,0.0 +26167,69,36,38,0.0 +26167,53,32.8,30,0.0 +26167,24,4.5,48,0.0 +26167,68,12.5,24,0.0 +26167,73,15,37,0.0 +26167,46,12,29,0.0 +26167,48,12.75,9,0.0 +26167,51,53,14,0.0 +26167,36,19,8,0.0 +26167,17,39,1,0.0 +26167,52,7,50,0.0 +26167,25,14,8,0.0 +26167,50,16.25,23,0.0 +26167,27,43.9,50,0.0 +26167,6,25,39,0.0 +26167,23,9,20,0.0 +26167,56,38,3,0.0 +26167,39,18,21,0.0 +26167,19,9.2,40,0.0 +26167,7,30,25,0.0 +26167,9,97,23,0.0 +26167,70,15,23,0.0 +26167,54,7.45,5,0.0 +26167,41,9.65,16,0.0 +26167,61,28.5,9,0.0 +26168,18,62.5,6,0.0 +26168,13,6,29,0.0 +26168,63,43.9,16,0.0 +26168,2,19,20,0.0 +26168,60,34,17,0.0 +26168,39,18,34,0.0 +26168,12,38,36,0.0 +26168,57,19.5,9,0.0 +26168,71,21.5,12,0.0 +26168,20,81,7,0.0 +26168,29,123.79,17,0.0 +26168,72,34.8,30,0.0 +26168,56,38,21,0.0 +26168,9,97,46,0.0 +26169,24,4.5,38,0.0 +26169,36,19,20,0.0 +26169,47,9.5,34,0.0 +26169,10,31,24,0.0 +26169,66,17,30,0.0 +26169,56,38,18,0.0 +26169,9,97,36,0.0 +26169,54,7.45,33,0.0 +26169,48,12.75,40,0.0 +26169,55,24,46,0.0 +26169,29,123.79,37,0.0 +26169,27,43.9,50,0.0 +26169,26,31.23,27,0.0 +26169,21,10,48,0.0 +26169,41,9.65,39,0.0 +26169,7,30,25,0.0 +26169,68,12.5,20,0.0 +26169,28,45.6,34,0.0 +26169,23,9,27,0.0 +26169,62,49.3,10,0.0 +26169,5,21.35,35,0.0 +26169,72,34.8,49,0.0 +26169,19,9.2,36,0.0 +26169,77,13,13,0.0 +26169,61,28.5,7,0.0 +26169,8,40,8,0.0 +26169,43,46,35,0.0 +26169,1,18,3,0.0 +26169,11,21,27,0.0 +26169,44,19.45,36,0.0 +26169,63,43.9,11,0.0 +26169,70,15,5,0.0 +26169,52,7,5,0.0 +26169,50,16.25,16,0.0 +26169,12,38,23,0.0 +26169,35,18,47,0.0 +26169,51,53,17,0.0 +26169,75,7.75,34,0.0 +26169,25,14,15,0.0 +26169,18,62.5,21,0.0 +26169,69,36,40,0.0 +26169,22,21,28,0.0 +26169,39,18,37,0.0 +26169,45,9.5,42,0.0 +26169,32,32,26,0.0 +26170,40,18.4,17,0.0 +26170,21,10,21,0.0 +26170,35,18,50,0.0 +26170,28,45.6,9,0.0 +26170,61,28.5,23,0.0 +26170,49,20,14,0.0 +26170,2,19,5,0.0 +26170,17,39,40,0.0 +26170,4,22,21,0.0 +26170,52,7,17,0.0 +26170,13,6,29,0.0 +26170,27,43.9,27,0.0 +26170,9,97,10,0.0 +26170,59,55,6,0.0 +26170,69,36,4,0.0 +26170,37,26,31,0.0 +26170,15,15.5,19,0.0 +26170,39,18,39,0.0 +26170,33,2.5,28,0.0 +26170,63,43.9,35,0.0 +26170,48,12.75,18,0.0 +26170,75,7.75,33,0.0 +26170,57,19.5,6,0.0 +26170,53,32.8,13,0.0 +26170,18,62.5,33,0.0 +26170,32,32,17,0.0 +26170,62,49.3,16,0.0 +26170,16,17.45,7,0.0 +26170,38,263.5,27,0.0 +26171,8,40,41,0.0 +26171,22,21,5,0.0 +26171,63,43.9,27,0.0 +26171,69,36,31,0.0 +26171,70,15,22,0.0 +26171,1,18,48,0.0 +26171,6,25,4,0.0 +26171,30,25.89,36,0.0 +26171,40,18.4,1,0.0 +26171,60,34,22,0.0 +26171,28,45.6,47,0.0 +26171,13,6,36,0.0 +26171,56,38,24,0.0 +26171,4,22,18,0.0 +26171,54,7.45,31,0.0 +26171,55,24,8,0.0 +26171,41,9.65,3,0.0 +26171,76,18,30,0.0 +26171,52,7,50,0.0 +26171,25,14,6,0.0 +26171,20,81,35,0.0 +26171,17,39,25,0.0 +26171,27,43.9,27,0.0 +26171,37,26,4,0.0 +26171,9,97,44,0.0 +26171,62,49.3,3,0.0 +26171,18,62.5,16,0.0 +26171,33,2.5,10,0.0 +26171,43,46,12,0.0 +26171,46,12,40,0.0 +26171,2,19,50,0.0 +26171,47,9.5,12,0.0 +26171,15,15.5,50,0.0 +26171,59,55,30,0.0 +26172,23,9,50,0.0 +26172,26,31.23,12,0.0 +26172,24,4.5,14,0.0 +26172,71,21.5,25,0.0 +26172,22,21,5,0.0 +26172,14,23.25,44,0.0 +26172,73,15,16,0.0 +26172,13,6,2,0.0 +26172,20,81,25,0.0 +26172,43,46,7,0.0 +26172,55,24,47,0.0 +26172,59,55,37,0.0 +26172,56,38,12,0.0 +26172,37,26,33,0.0 +26172,11,21,42,0.0 +26172,65,21.05,30,0.0 +26172,64,33.25,38,0.0 +26172,72,34.8,42,0.0 +26172,7,30,49,0.0 +26172,42,14,22,0.0 +26172,49,20,21,0.0 +26172,33,2.5,3,0.0 +26172,19,9.2,9,0.0 +26172,39,18,31,0.0 +26172,18,62.5,36,0.0 +26172,58,13.25,9,0.0 +26172,38,263.5,26,0.0 +26172,46,12,21,0.0 +26172,44,19.45,12,0.0 +26172,16,17.45,20,0.0 +26172,76,18,7,0.0 +26172,34,14,47,0.0 +26172,32,32,21,0.0 +26172,4,22,27,0.0 +26172,10,31,18,0.0 +26172,8,40,7,0.0 +26172,57,19.5,8,0.0 +26172,77,13,1,0.0 +26172,31,12.5,36,0.0 +26172,27,43.9,1,0.0 +26172,28,45.6,14,0.0 +26172,47,9.5,39,0.0 +26172,52,7,10,0.0 +26172,60,34,46,0.0 +26172,53,32.8,5,0.0 +26172,51,53,7,0.0 +26172,2,19,24,0.0 +26173,53,32.8,2,0.0 +26173,59,55,32,0.0 +26173,61,28.5,12,0.0 +26173,58,13.25,25,0.0 +26173,37,26,29,0.0 +26173,74,10,30,0.0 +26173,63,43.9,40,0.0 +26173,68,12.5,49,0.0 +26173,13,6,35,0.0 +26173,49,20,24,0.0 +26173,38,263.5,46,0.0 +26173,28,45.6,49,0.0 +26173,11,21,8,0.0 +26173,9,97,18,0.0 +26173,62,49.3,38,0.0 +26173,17,39,12,0.0 +26173,55,24,9,0.0 +26173,3,10,27,0.0 +26173,77,13,28,0.0 +26173,30,25.89,11,0.0 +26173,22,21,3,0.0 +26173,57,19.5,37,0.0 +26173,65,21.05,20,0.0 +26173,35,18,2,0.0 +26173,51,53,35,0.0 +26173,32,32,20,0.0 +26173,33,2.5,48,0.0 +26173,66,17,28,0.0 +26173,44,19.45,31,0.0 +26173,34,14,35,0.0 +26173,1,18,41,0.0 +26173,15,15.5,21,0.0 +26173,4,22,5,0.0 +26173,73,15,24,0.0 +26173,75,7.75,23,0.0 +26173,45,9.5,30,0.0 +26173,18,62.5,19,0.0 +26173,70,15,17,0.0 +26173,2,19,43,0.0 +26173,16,17.45,13,0.0 +26173,7,30,14,0.0 +26173,23,9,49,0.0 +26173,29,123.79,49,0.0 +26173,20,81,6,0.0 +26173,19,9.2,41,0.0 +26173,26,31.23,14,0.0 +26173,43,46,4,0.0 +26173,72,34.8,28,0.0 +26174,50,16.25,7,0.0 +26174,64,33.25,17,0.0 +26174,59,55,6,0.0 +26174,27,43.9,11,0.0 +26174,5,21.35,4,0.0 +26174,1,18,33,0.0 +26174,21,10,48,0.0 +26174,29,123.79,14,0.0 +26174,32,32,45,0.0 +26174,8,40,46,0.0 +26174,62,49.3,21,0.0 +26174,33,2.5,6,0.0 +26174,12,38,24,0.0 +26174,25,14,21,0.0 +26174,7,30,22,0.0 +26174,41,9.65,36,0.0 +26174,48,12.75,23,0.0 +26174,30,25.89,19,0.0 +26174,53,32.8,15,0.0 +26174,3,10,8,0.0 +26174,14,23.25,43,0.0 +26174,55,24,41,0.0 +26174,45,9.5,21,0.0 +26174,44,19.45,32,0.0 +26174,68,12.5,27,0.0 +26174,61,28.5,34,0.0 +26174,67,14,3,0.0 +26174,49,20,27,0.0 +26174,39,18,8,0.0 +26175,30,25.89,23,0.0 +26175,54,7.45,19,0.0 +26175,47,9.5,29,0.0 +26175,69,36,28,0.0 +26175,57,19.5,26,0.0 +26175,19,9.2,13,0.0 +26175,76,18,4,0.0 +26175,71,21.5,15,0.0 +26175,3,10,14,0.0 +26175,77,13,10,0.0 +26175,52,7,22,0.0 +26175,63,43.9,43,0.0 +26175,18,62.5,31,0.0 +26175,61,28.5,33,0.0 +26175,75,7.75,44,0.0 +26175,36,19,37,0.0 +26175,7,30,12,0.0 +26175,62,49.3,31,0.0 +26175,29,123.79,38,0.0 +26175,20,81,15,0.0 +26175,9,97,32,0.0 +26175,22,21,39,0.0 +26175,72,34.8,4,0.0 +26175,8,40,43,0.0 +26175,12,38,13,0.0 +26175,5,21.35,7,0.0 +26175,31,12.5,48,0.0 +26175,70,15,14,0.0 +26175,73,15,2,0.0 +26175,21,10,19,0.0 +26175,13,6,24,0.0 +26175,40,18.4,17,0.0 +26175,41,9.65,34,0.0 +26175,27,43.9,27,0.0 +26175,25,14,44,0.0 +26175,45,9.5,37,0.0 +26175,23,9,4,0.0 +26175,17,39,31,0.0 +26175,49,20,41,0.0 +26175,10,31,29,0.0 +26175,46,12,36,0.0 +26175,53,32.8,25,0.0 +26175,43,46,30,0.0 +26175,2,19,10,0.0 +26175,64,33.25,43,0.0 +26175,65,21.05,45,0.0 +26175,39,18,41,0.0 +26175,48,12.75,31,0.0 +26175,6,25,6,0.0 +26175,16,17.45,30,0.0 +26175,51,53,36,0.0 +26175,60,34,27,0.0 +26175,24,4.5,23,0.0 +26175,50,16.25,9,0.0 +26175,58,13.25,33,0.0 +26175,35,18,23,0.0 +26175,15,15.5,39,0.0 +26175,38,263.5,14,0.0 +26175,28,45.6,34,0.0 +26175,37,26,14,0.0 +26175,32,32,49,0.0 +26175,66,17,38,0.0 +26175,11,21,34,0.0 +26175,59,55,44,0.0 +26175,67,14,36,0.0 +26175,4,22,24,0.0 +26176,72,34.8,36,0.0 +26176,14,23.25,21,0.0 +26176,67,14,48,0.0 +26176,5,21.35,38,0.0 +26176,48,12.75,7,0.0 +26176,73,15,46,0.0 +26176,39,18,41,0.0 +26176,57,19.5,32,0.0 +26176,26,31.23,23,0.0 +26176,20,81,32,0.0 +26176,19,9.2,8,0.0 +26176,15,15.5,18,0.0 +26176,22,21,3,0.0 +26176,51,53,39,0.0 +26176,41,9.65,23,0.0 +26176,23,9,7,0.0 +26176,36,19,8,0.0 +26176,42,14,5,0.0 +26176,77,13,17,0.0 +26176,75,7.75,45,0.0 +26176,8,40,9,0.0 +26176,50,16.25,17,0.0 +26176,1,18,29,0.0 +26176,32,32,6,0.0 +26176,29,123.79,5,0.0 +26176,10,31,11,0.0 +26176,3,10,32,0.0 +26176,12,38,31,0.0 +26176,68,12.5,23,0.0 +26176,2,19,47,0.0 +26176,28,45.6,18,0.0 +26176,6,25,4,0.0 +26176,49,20,36,0.0 +26176,55,24,1,0.0 +26176,37,26,14,0.0 +26176,4,22,7,0.0 +26176,56,38,24,0.0 +26176,44,19.45,10,0.0 +26176,47,9.5,3,0.0 +26176,31,12.5,24,0.0 +26176,58,13.25,7,0.0 +26176,35,18,41,0.0 +26176,61,28.5,44,0.0 +26176,70,15,1,0.0 +26176,69,36,17,0.0 +26176,25,14,8,0.0 +26176,21,10,2,0.0 +26176,17,39,41,0.0 +26176,38,263.5,30,0.0 +26176,76,18,35,0.0 +26176,7,30,34,0.0 +26176,30,25.89,14,0.0 +26176,52,7,4,0.0 +26176,33,2.5,7,0.0 +26176,60,34,9,0.0 +26176,62,49.3,46,0.0 +26176,18,62.5,11,0.0 +26176,66,17,35,0.0 +26176,59,55,27,0.0 +26176,63,43.9,46,0.0 +26176,34,14,28,0.0 +26176,13,6,1,0.0 +26177,15,15.5,45,0.0 +26177,76,18,42,0.0 +26177,77,13,41,0.0 +26177,17,39,39,0.0 +26177,65,21.05,23,0.0 +26177,29,123.79,36,0.0 +26177,25,14,8,0.0 +26177,33,2.5,1,0.0 +26177,74,10,48,0.0 +26177,34,14,39,0.0 +26177,51,53,48,0.0 +26177,5,21.35,23,0.0 +26177,38,263.5,43,0.0 +26177,41,9.65,45,0.0 +26177,18,62.5,50,0.0 +26177,64,33.25,2,0.0 +26177,14,23.25,20,0.0 +26177,52,7,41,0.0 +26177,59,55,23,0.0 +26177,20,81,47,0.0 +26177,72,34.8,43,0.0 +26177,63,43.9,1,0.0 +26177,26,31.23,38,0.0 +26177,31,12.5,14,0.0 +26177,19,9.2,6,0.0 +26177,60,34,3,0.0 +26177,71,21.5,40,0.0 +26177,44,19.45,30,0.0 +26177,73,15,33,0.0 +26177,67,14,17,0.0 +26177,8,40,38,0.0 +26177,50,16.25,27,0.0 +26177,61,28.5,16,0.0 +26177,2,19,34,0.0 +26177,3,10,46,0.0 +26177,10,31,1,0.0 +26177,43,46,48,0.0 +26177,69,36,35,0.0 +26177,30,25.89,25,0.0 +26177,57,19.5,34,0.0 +26177,37,26,8,0.0 +26177,45,9.5,7,0.0 +26177,28,45.6,37,0.0 +26177,53,32.8,38,0.0 +26177,21,10,8,0.0 +26177,40,18.4,12,0.0 +26177,75,7.75,38,0.0 +26177,70,15,49,0.0 +26177,27,43.9,43,0.0 +26177,46,12,36,0.0 +26177,32,32,46,0.0 +26177,56,38,25,0.0 +26178,54,7.45,14,0.0 +26178,16,17.45,49,0.0 +26178,13,6,27,0.0 +26178,37,26,31,0.0 +26178,39,18,27,0.0 +26178,64,33.25,16,0.0 +26178,59,55,32,0.0 +26178,14,23.25,19,0.0 +26178,6,25,12,0.0 +26178,33,2.5,13,0.0 +26178,29,123.79,35,0.0 +26178,48,12.75,41,0.0 +26178,56,38,40,0.0 +26178,21,10,6,0.0 +26178,3,10,12,0.0 +26178,66,17,29,0.0 +26178,31,12.5,45,0.0 +26178,12,38,39,0.0 +26178,8,40,36,0.0 +26178,60,34,48,0.0 +26178,43,46,27,0.0 +26178,28,45.6,25,0.0 +26178,1,18,37,0.0 +26178,70,15,44,0.0 +26178,46,12,33,0.0 +26178,68,12.5,39,0.0 +26178,73,15,18,0.0 +26178,10,31,30,0.0 +26178,52,7,17,0.0 +26178,75,7.75,8,0.0 +26178,11,21,18,0.0 +26178,15,15.5,18,0.0 +26178,7,30,27,0.0 +26178,65,21.05,4,0.0 +26178,25,14,2,0.0 +26178,77,13,42,0.0 +26178,50,16.25,20,0.0 +26178,22,21,29,0.0 +26178,44,19.45,36,0.0 +26178,76,18,23,0.0 +26178,53,32.8,40,0.0 +26178,47,9.5,17,0.0 +26178,30,25.89,39,0.0 +26178,36,19,18,0.0 +26178,41,9.65,4,0.0 +26178,55,24,46,0.0 +26178,57,19.5,37,0.0 +26178,62,49.3,16,0.0 +26178,51,53,24,0.0 +26178,40,18.4,39,0.0 +26178,24,4.5,39,0.0 +26178,23,9,5,0.0 +26178,69,36,21,0.0 +26178,63,43.9,39,0.0 +26178,45,9.5,14,0.0 +26178,74,10,44,0.0 +26178,58,13.25,14,0.0 +26178,18,62.5,40,0.0 +26178,26,31.23,40,0.0 +26178,5,21.35,18,0.0 +26178,34,14,25,0.0 +26178,32,32,12,0.0 +26178,19,9.2,47,0.0 +26178,49,20,5,0.0 +26178,71,21.5,38,0.0 +26179,12,38,13,0.0 +26179,7,30,4,0.0 +26179,21,10,8,0.0 +26179,57,19.5,7,0.0 +26179,61,28.5,47,0.0 +26179,9,97,19,0.0 +26179,11,21,23,0.0 +26179,14,23.25,11,0.0 +26179,58,13.25,50,0.0 +26179,72,34.8,40,0.0 +26179,67,14,34,0.0 +26179,41,9.65,19,0.0 +26179,39,18,11,0.0 +26179,43,46,41,0.0 +26179,23,9,43,0.0 +26179,54,7.45,44,0.0 +26179,37,26,46,0.0 +26179,65,21.05,6,0.0 +26179,60,34,33,0.0 +26179,47,9.5,45,0.0 +26179,17,39,38,0.0 +26179,20,81,44,0.0 +26179,51,53,4,0.0 +26179,10,31,10,0.0 +26179,16,17.45,48,0.0 +26180,28,45.6,4,0.0 +26180,9,97,11,0.0 +26180,57,19.5,1,0.0 +26180,26,31.23,48,0.0 +26180,63,43.9,23,0.0 +26180,70,15,3,0.0 +26180,62,49.3,46,0.0 +26180,55,24,38,0.0 +26180,35,18,26,0.0 +26180,12,38,44,0.0 +26180,48,12.75,38,0.0 +26180,50,16.25,43,0.0 +26180,24,4.5,45,0.0 +26180,61,28.5,46,0.0 +26180,58,13.25,45,0.0 +26180,36,19,45,0.0 +26180,44,19.45,35,0.0 +26180,37,26,44,0.0 +26180,8,40,36,0.0 +26180,47,9.5,35,0.0 +26180,2,19,19,0.0 +26180,46,12,4,0.0 +26180,41,9.65,23,0.0 +26180,52,7,48,0.0 +26180,56,38,8,0.0 +26180,69,36,14,0.0 +26180,72,34.8,30,0.0 +26180,75,7.75,6,0.0 +26180,60,34,48,0.0 +26180,33,2.5,49,0.0 +26180,6,25,43,0.0 +26180,67,14,18,0.0 +26180,77,13,50,0.0 +26180,59,55,33,0.0 +26180,11,21,6,0.0 +26180,73,15,39,0.0 +26180,39,18,30,0.0 +26180,34,14,27,0.0 +26180,23,9,48,0.0 +26180,10,31,10,0.0 +26180,45,9.5,46,0.0 +26180,3,10,44,0.0 +26180,14,23.25,26,0.0 +26180,16,17.45,6,0.0 +26180,76,18,45,0.0 +26180,21,10,7,0.0 +26180,65,21.05,3,0.0 +26180,1,18,30,0.0 +26180,15,15.5,15,0.0 +26180,32,32,31,0.0 +26180,40,18.4,12,0.0 +26180,29,123.79,45,0.0 +26180,30,25.89,21,0.0 +26180,31,12.5,3,0.0 +26180,54,7.45,19,0.0 +26180,53,32.8,24,0.0 +26180,74,10,47,0.0 +26180,4,22,12,0.0 +26180,66,17,40,0.0 +26180,49,20,19,0.0 +26180,64,33.25,26,0.0 +26180,27,43.9,9,0.0 +26180,38,263.5,2,0.0 +26180,22,21,10,0.0 +26180,18,62.5,23,0.0 +26180,7,30,14,0.0 +26180,51,53,16,0.0 +26180,71,21.5,2,0.0 +26180,68,12.5,31,0.0 +26180,25,14,28,0.0 +26180,20,81,49,0.0 +26181,68,12.5,46,0.0 +26181,17,39,33,0.0 +26181,69,36,28,0.0 +26181,1,18,40,0.0 +26181,32,32,4,0.0 +26181,63,43.9,23,0.0 +26181,49,20,21,0.0 +26181,61,28.5,21,0.0 +26181,53,32.8,11,0.0 +26181,57,19.5,2,0.0 +26181,67,14,42,0.0 +26181,26,31.23,22,0.0 +26181,41,9.65,48,0.0 +26181,22,21,15,0.0 +26181,4,22,6,0.0 +26181,28,45.6,13,0.0 +26181,2,19,40,0.0 +26181,60,34,19,0.0 +26181,76,18,32,0.0 +26181,74,10,16,0.0 +26181,65,21.05,15,0.0 +26181,20,81,33,0.0 +26181,14,23.25,2,0.0 +26181,50,16.25,2,0.0 +26181,36,19,18,0.0 +26181,77,13,47,0.0 +26181,34,14,40,0.0 +26181,15,15.5,19,0.0 +26181,73,15,29,0.0 +26181,40,18.4,1,0.0 +26181,16,17.45,45,0.0 +26181,64,33.25,42,0.0 +26182,23,9,37,0.0 +26182,27,43.9,38,0.0 +26182,25,14,2,0.0 +26182,37,26,4,0.0 +26182,40,18.4,33,0.0 +26182,56,38,50,0.0 +26182,28,45.6,17,0.0 +26182,64,33.25,5,0.0 +26182,73,15,3,0.0 +26182,58,13.25,46,0.0 +26182,47,9.5,30,0.0 +26182,10,31,35,0.0 +26182,72,34.8,4,0.0 +26182,75,7.75,38,0.0 +26182,29,123.79,1,0.0 +26182,76,18,3,0.0 +26182,12,38,29,0.0 +26182,54,7.45,16,0.0 +26182,60,34,15,0.0 +26182,14,23.25,1,0.0 +26182,39,18,44,0.0 +26182,16,17.45,12,0.0 +26182,38,263.5,21,0.0 +26182,35,18,34,0.0 +26182,62,49.3,19,0.0 +26182,48,12.75,33,0.0 +26182,41,9.65,37,0.0 +26182,21,10,46,0.0 +26182,31,12.5,50,0.0 +26182,22,21,33,0.0 +26182,66,17,43,0.0 +26182,53,32.8,43,0.0 +26182,4,22,23,0.0 +26182,6,25,17,0.0 +26182,24,4.5,2,0.0 +26182,32,32,35,0.0 +26182,63,43.9,41,0.0 +26182,57,19.5,10,0.0 +26182,20,81,25,0.0 +26182,43,46,36,0.0 +26182,30,25.89,48,0.0 +26182,19,9.2,33,0.0 +26182,15,15.5,41,0.0 +26182,74,10,9,0.0 +26182,8,40,29,0.0 +26182,11,21,43,0.0 +26182,65,21.05,22,0.0 +26182,3,10,29,0.0 +26182,59,55,17,0.0 +26182,77,13,38,0.0 +26182,44,19.45,26,0.0 +26182,71,21.5,9,0.0 +26182,50,16.25,45,0.0 +26182,67,14,39,0.0 +26182,26,31.23,43,0.0 +26182,55,24,31,0.0 +26182,46,12,29,0.0 +26182,9,97,27,0.0 +26182,42,14,1,0.0 +26182,7,30,2,0.0 +26182,49,20,37,0.0 +26182,61,28.5,34,0.0 +26182,68,12.5,20,0.0 +26182,18,62.5,25,0.0 +26182,70,15,6,0.0 +26182,13,6,33,0.0 +26183,11,21,16,0.0 +26183,24,4.5,3,0.0 +26183,12,38,41,0.0 +26183,50,16.25,47,0.0 +26183,38,263.5,20,0.0 +26183,69,36,6,0.0 +26183,75,7.75,20,0.0 +26183,19,9.2,35,0.0 +26183,26,31.23,9,0.0 +26183,32,32,11,0.0 +26183,28,45.6,39,0.0 +26183,10,31,50,0.0 +26183,45,9.5,13,0.0 +26183,44,19.45,41,0.0 +26183,2,19,48,0.0 +26183,76,18,48,0.0 +26183,23,9,22,0.0 +26183,70,15,20,0.0 +26183,1,18,37,0.0 +26183,58,13.25,10,0.0 +26183,48,12.75,29,0.0 +26183,29,123.79,1,0.0 +26183,34,14,20,0.0 +26183,39,18,39,0.0 +26183,14,23.25,45,0.0 +26183,57,19.5,46,0.0 +26183,35,18,30,0.0 +26183,6,25,42,0.0 +26183,54,7.45,8,0.0 +26183,62,49.3,21,0.0 +26183,42,14,15,0.0 +26183,52,7,15,0.0 +26183,31,12.5,10,0.0 +26183,4,22,19,0.0 +26183,5,21.35,3,0.0 +26183,65,21.05,32,0.0 +26183,37,26,15,0.0 +26183,18,62.5,37,0.0 +26183,13,6,24,0.0 +26183,43,46,38,0.0 +26183,33,2.5,30,0.0 +26183,30,25.89,24,0.0 +26183,72,34.8,34,0.0 +26183,7,30,21,0.0 +26183,15,15.5,39,0.0 +26183,66,17,22,0.0 +26183,77,13,48,0.0 +26183,22,21,5,0.0 +26183,53,32.8,8,0.0 +26183,73,15,44,0.0 +26183,55,24,15,0.0 +26183,40,18.4,27,0.0 +26183,49,20,20,0.0 +26183,41,9.65,15,0.0 +26183,67,14,9,0.0 +26183,60,34,28,0.0 +26183,47,9.5,6,0.0 +26183,9,97,10,0.0 +26183,64,33.25,46,0.0 +26183,63,43.9,23,0.0 +26183,71,21.5,25,0.0 +26183,68,12.5,23,0.0 +26183,51,53,42,0.0 +26183,59,55,20,0.0 +26183,61,28.5,2,0.0 +26183,8,40,4,0.0 +26183,17,39,31,0.0 +26183,36,19,9,0.0 +26183,16,17.45,15,0.0 +26183,25,14,40,0.0 +26184,48,12.75,10,0.0 +26184,6,25,46,0.0 +26184,1,18,6,0.0 +26184,76,18,5,0.0 +26184,20,81,20,0.0 +26184,2,19,1,0.0 +26184,34,14,41,0.0 +26184,62,49.3,27,0.0 +26184,32,32,19,0.0 +26184,58,13.25,29,0.0 +26184,72,34.8,31,0.0 +26184,57,19.5,26,0.0 +26184,73,15,21,0.0 +26184,5,21.35,26,0.0 +26184,70,15,13,0.0 +26184,29,123.79,33,0.0 +26184,77,13,13,0.0 +26184,36,19,23,0.0 +26184,19,9.2,13,0.0 +26184,55,24,17,0.0 +26184,4,22,3,0.0 +26184,14,23.25,40,0.0 +26184,71,21.5,16,0.0 +26184,15,15.5,39,0.0 +26184,7,30,15,0.0 +26184,66,17,26,0.0 +26184,49,20,19,0.0 +26184,28,45.6,12,0.0 +26184,46,12,18,0.0 +26184,45,9.5,13,0.0 +26184,12,38,32,0.0 +26184,67,14,37,0.0 +26184,54,7.45,23,0.0 +26184,53,32.8,6,0.0 +26184,43,46,48,0.0 +26184,16,17.45,11,0.0 +26184,8,40,34,0.0 +26184,30,25.89,2,0.0 +26184,41,9.65,36,0.0 +26184,74,10,18,0.0 +26184,10,31,23,0.0 +26184,31,12.5,37,0.0 +26184,9,97,14,0.0 +26184,47,9.5,20,0.0 +26184,25,14,34,0.0 +26184,33,2.5,41,0.0 +26184,26,31.23,3,0.0 +26184,44,19.45,41,0.0 +26184,68,12.5,26,0.0 +26185,62,49.3,34,0.0 +26185,47,9.5,27,0.0 +26185,32,32,7,0.0 +26185,76,18,35,0.0 +26185,5,21.35,8,0.0 +26185,2,19,30,0.0 +26185,29,123.79,36,0.0 +26185,1,18,24,0.0 +26185,20,81,39,0.0 +26185,73,15,40,0.0 +26185,68,12.5,42,0.0 +26185,14,23.25,8,0.0 +26185,58,13.25,43,0.0 +26185,9,97,47,0.0 +26185,53,32.8,46,0.0 +26185,17,39,30,0.0 +26185,50,16.25,21,0.0 +26185,15,15.5,2,0.0 +26185,43,46,24,0.0 +26185,66,17,36,0.0 +26185,44,19.45,10,0.0 +26185,26,31.23,44,0.0 +26185,48,12.75,25,0.0 +26185,11,21,10,0.0 +26185,59,55,31,0.0 +26185,16,17.45,49,0.0 +26185,12,38,18,0.0 +26185,38,263.5,29,0.0 +26185,57,19.5,43,0.0 +26185,55,24,28,0.0 +26185,34,14,41,0.0 +26185,13,6,17,0.0 +26185,40,18.4,32,0.0 +26185,51,53,36,0.0 +26185,23,9,16,0.0 +26185,3,10,45,0.0 +26185,46,12,34,0.0 +26185,77,13,1,0.0 +26185,52,7,35,0.0 +26185,72,34.8,5,0.0 +26185,70,15,16,0.0 +26185,10,31,36,0.0 +26185,71,21.5,35,0.0 +26185,39,18,35,0.0 +26185,33,2.5,27,0.0 +26185,41,9.65,19,0.0 +26185,21,10,27,0.0 +26185,19,9.2,12,0.0 +26185,42,14,48,0.0 +26185,31,12.5,24,0.0 +26185,6,25,8,0.0 +26185,65,21.05,26,0.0 +26185,63,43.9,13,0.0 +26185,30,25.89,25,0.0 +26186,75,7.75,29,0.0 +26186,43,46,27,0.0 +26186,36,19,21,0.0 +26186,61,28.5,41,0.0 +26186,33,2.5,4,0.0 +26186,77,13,23,0.0 +26186,30,25.89,28,0.0 +26186,66,17,36,0.0 +26186,70,15,10,0.0 +26186,26,31.23,5,0.0 +26186,16,17.45,23,0.0 +26186,74,10,16,0.0 +26186,64,33.25,17,0.0 +26186,53,32.8,23,0.0 +26186,25,14,13,0.0 +26186,21,10,27,0.0 +26186,62,49.3,32,0.0 +26186,13,6,28,0.0 +26186,4,22,17,0.0 +26186,27,43.9,36,0.0 +26186,12,38,24,0.0 +26186,11,21,25,0.0 +26186,17,39,10,0.0 +26186,7,30,37,0.0 +26186,69,36,6,0.0 +26186,72,34.8,42,0.0 +26186,50,16.25,23,0.0 +26186,8,40,21,0.0 +26186,46,12,2,0.0 +26186,23,9,39,0.0 +26186,34,14,23,0.0 +26186,3,10,16,0.0 +26186,32,32,44,0.0 +26186,56,38,22,0.0 +26186,1,18,50,0.0 +26186,18,62.5,23,0.0 +26186,5,21.35,9,0.0 +26186,42,14,45,0.0 +26186,15,15.5,26,0.0 +26186,76,18,36,0.0 +26186,48,12.75,37,0.0 +26186,49,20,44,0.0 +26186,14,23.25,6,0.0 +26186,37,26,47,0.0 +26186,65,21.05,16,0.0 +26186,71,21.5,50,0.0 +26186,58,13.25,33,0.0 +26186,2,19,20,0.0 +26186,20,81,41,0.0 +26186,68,12.5,23,0.0 +26186,31,12.5,47,0.0 +26186,39,18,49,0.0 +26186,51,53,47,0.0 +26186,55,24,1,0.0 +26186,6,25,23,0.0 +26186,54,7.45,11,0.0 +26186,9,97,10,0.0 +26186,57,19.5,38,0.0 +26186,22,21,2,0.0 +26186,73,15,39,0.0 +26186,38,263.5,7,0.0 +26186,24,4.5,25,0.0 +26186,67,14,39,0.0 +26186,59,55,18,0.0 +26186,10,31,1,0.0 +26186,44,19.45,14,0.0 +26186,63,43.9,9,0.0 +26187,54,7.45,30,0.0 +26187,63,43.9,34,0.0 +26187,64,33.25,30,0.0 +26187,5,21.35,24,0.0 +26187,52,7,44,0.0 +26187,16,17.45,3,0.0 +26187,15,15.5,23,0.0 +26188,42,14,7,0.0 +26188,41,9.65,25,0.0 +26188,72,34.8,44,0.0 +26188,32,32,10,0.0 +26188,76,18,20,0.0 +26188,16,17.45,34,0.0 +26188,25,14,38,0.0 +26188,73,15,13,0.0 +26188,36,19,29,0.0 +26188,75,7.75,41,0.0 +26188,68,12.5,28,0.0 +26188,18,62.5,47,0.0 +26188,47,9.5,10,0.0 +26188,51,53,11,0.0 +26188,37,26,35,0.0 +26188,7,30,12,0.0 +26188,17,39,24,0.0 +26188,64,33.25,19,0.0 +26188,65,21.05,23,0.0 +26188,70,15,26,0.0 +26188,2,19,26,0.0 +26188,74,10,6,0.0 +26188,34,14,5,0.0 +26188,1,18,22,0.0 +26188,77,13,9,0.0 +26188,8,40,24,0.0 +26188,50,16.25,50,0.0 +26188,13,6,16,0.0 +26188,26,31.23,8,0.0 +26188,23,9,36,0.0 +26188,33,2.5,34,0.0 +26188,58,13.25,19,0.0 +26188,35,18,22,0.0 +26188,29,123.79,20,0.0 +26188,3,10,28,0.0 +26188,60,34,1,0.0 +26188,31,12.5,32,0.0 +26188,49,20,18,0.0 +26188,55,24,7,0.0 +26188,54,7.45,42,0.0 +26188,56,38,6,0.0 +26188,27,43.9,43,0.0 +26189,4,22,19,0.0 +26189,55,24,24,0.0 +26189,11,21,40,0.0 +26189,47,9.5,14,0.0 +26189,2,19,49,0.0 +26189,34,14,29,0.0 +26189,77,13,22,0.0 +26189,74,10,6,0.0 +26189,29,123.79,1,0.0 +26189,42,14,5,0.0 +26189,41,9.65,4,0.0 +26189,66,17,2,0.0 +26189,64,33.25,17,0.0 +26189,17,39,44,0.0 +26189,62,49.3,23,0.0 +26189,63,43.9,9,0.0 +26189,30,25.89,37,0.0 +26189,69,36,33,0.0 +26189,61,28.5,8,0.0 +26189,26,31.23,13,0.0 +26189,7,30,10,0.0 +26190,60,34,36,0.0 +26190,15,15.5,36,0.0 +26190,22,21,7,0.0 +26190,76,18,16,0.0 +26190,11,21,2,0.0 +26190,67,14,5,0.0 +26190,69,36,47,0.0 +26190,23,9,4,0.0 +26190,24,4.5,16,0.0 +26190,77,13,38,0.0 +26190,41,9.65,9,0.0 +26190,20,81,31,0.0 +26190,2,19,31,0.0 +26190,9,97,18,0.0 +26190,73,15,21,0.0 +26190,59,55,10,0.0 +26190,18,62.5,34,0.0 +26190,32,32,8,0.0 +26190,35,18,20,0.0 +26190,74,10,48,0.0 +26190,37,26,3,0.0 +26190,57,19.5,31,0.0 +26190,7,30,13,0.0 +26190,30,25.89,25,0.0 +26190,12,38,42,0.0 +26190,4,22,34,0.0 +26190,52,7,3,0.0 +26190,28,45.6,45,0.0 +26190,25,14,40,0.0 +26190,75,7.75,8,0.0 +26190,1,18,39,0.0 +26190,38,263.5,46,0.0 +26190,72,34.8,12,0.0 +26190,64,33.25,3,0.0 +26190,6,25,25,0.0 +26190,10,31,46,0.0 +26190,62,49.3,16,0.0 +26190,33,2.5,37,0.0 +26190,27,43.9,45,0.0 +26191,47,9.5,13,0.0 +26191,25,14,29,0.0 +26191,33,2.5,25,0.0 +26191,37,26,1,0.0 +26191,6,25,38,0.0 +26191,56,38,44,0.0 +26191,51,53,26,0.0 +26191,70,15,29,0.0 +26191,3,10,24,0.0 +26191,35,18,1,0.0 +26191,11,21,32,0.0 +26191,22,21,17,0.0 +26191,45,9.5,8,0.0 +26191,1,18,32,0.0 +26191,74,10,27,0.0 +26191,49,20,18,0.0 +26191,54,7.45,38,0.0 +26191,17,39,49,0.0 +26191,43,46,18,0.0 +26191,63,43.9,11,0.0 +26191,39,18,36,0.0 +26191,62,49.3,4,0.0 +26191,20,81,42,0.0 +26191,9,97,28,0.0 +26191,23,9,49,0.0 +26191,67,14,33,0.0 +26191,13,6,4,0.0 +26191,10,31,45,0.0 +26191,50,16.25,17,0.0 +26191,66,17,24,0.0 +26191,59,55,23,0.0 +26191,69,36,34,0.0 +26191,65,21.05,18,0.0 +26191,53,32.8,7,0.0 +26191,60,34,32,0.0 +26191,72,34.8,19,0.0 +26191,2,19,20,0.0 +26191,76,18,6,0.0 +26191,12,38,49,0.0 +26191,30,25.89,45,0.0 +26191,19,9.2,42,0.0 +26191,71,21.5,35,0.0 +26191,48,12.75,16,0.0 +26191,61,28.5,28,0.0 +26191,15,15.5,11,0.0 +26191,75,7.75,29,0.0 +26191,41,9.65,12,0.0 +26191,24,4.5,26,0.0 +26191,21,10,39,0.0 +26191,40,18.4,43,0.0 +26191,18,62.5,35,0.0 +26191,27,43.9,36,0.0 +26191,29,123.79,19,0.0 +26191,4,22,26,0.0 +26191,26,31.23,43,0.0 +26191,16,17.45,1,0.0 +26191,52,7,15,0.0 +26191,34,14,41,0.0 +26191,77,13,20,0.0 +26191,44,19.45,50,0.0 +26191,73,15,46,0.0 +26191,68,12.5,43,0.0 +26191,31,12.5,41,0.0 +26191,46,12,47,0.0 +26192,77,13,9,0.0 +26192,56,38,27,0.0 +26192,18,62.5,39,0.0 +26192,50,16.25,45,0.0 +26193,74,10,6,0.0 +26193,45,9.5,8,0.0 +26193,25,14,2,0.0 +26193,56,38,17,0.0 +26193,75,7.75,43,0.0 +26193,19,9.2,11,0.0 +26193,43,46,34,0.0 +26193,57,19.5,10,0.0 +26193,11,21,40,0.0 +26193,48,12.75,11,0.0 +26193,64,33.25,8,0.0 +26193,7,30,46,0.0 +26193,46,12,8,0.0 +26193,10,31,25,0.0 +26193,51,53,8,0.0 +26193,59,55,11,0.0 +26193,24,4.5,24,0.0 +26193,38,263.5,48,0.0 +26193,41,9.65,37,0.0 +26193,14,23.25,49,0.0 +26193,37,26,47,0.0 +26193,54,7.45,11,0.0 +26193,27,43.9,34,0.0 +26193,67,14,18,0.0 +26193,44,19.45,28,0.0 +26193,42,14,9,0.0 +26193,30,25.89,17,0.0 +26193,12,38,40,0.0 +26193,39,18,50,0.0 +26193,68,12.5,5,0.0 +26193,4,22,3,0.0 +26193,2,19,45,0.0 +26194,33,2.5,23,0.0 +26194,59,55,27,0.0 +26194,16,17.45,13,0.0 +26194,45,9.5,41,0.0 +26194,42,14,41,0.0 +26194,58,13.25,22,0.0 +26194,49,20,40,0.0 +26194,51,53,8,0.0 +26194,46,12,15,0.0 +26194,57,19.5,29,0.0 +26194,21,10,36,0.0 +26194,74,10,11,0.0 +26194,20,81,3,0.0 +26194,72,34.8,42,0.0 +26194,19,9.2,37,0.0 +26194,12,38,48,0.0 +26194,31,12.5,16,0.0 +26194,47,9.5,42,0.0 +26194,13,6,49,0.0 +26194,36,19,49,0.0 +26194,23,9,19,0.0 +26194,60,34,47,0.0 +26194,1,18,12,0.0 +26194,6,25,48,0.0 +26194,54,7.45,6,0.0 +26194,75,7.75,36,0.0 +26194,56,38,28,0.0 +26194,67,14,4,0.0 +26194,18,62.5,31,0.0 +26194,55,24,47,0.0 +26194,43,46,24,0.0 +26194,68,12.5,5,0.0 +26194,27,43.9,34,0.0 +26194,64,33.25,11,0.0 +26194,69,36,47,0.0 +26194,41,9.65,10,0.0 +26194,15,15.5,34,0.0 +26194,32,32,1,0.0 +26194,11,21,42,0.0 +26194,40,18.4,47,0.0 +26194,73,15,20,0.0 +26194,28,45.6,31,0.0 +26194,10,31,2,0.0 +26194,71,21.5,42,0.0 +26194,8,40,25,0.0 +26194,30,25.89,35,0.0 +26194,61,28.5,44,0.0 +26194,25,14,34,0.0 +26194,39,18,33,0.0 +26194,7,30,19,0.0 +26194,63,43.9,45,0.0 +26194,22,21,43,0.0 +26194,37,26,6,0.0 +26194,34,14,36,0.0 +26194,53,32.8,36,0.0 +26194,76,18,7,0.0 +26194,65,21.05,12,0.0 +26194,35,18,2,0.0 +26194,4,22,16,0.0 +26194,17,39,1,0.0 +26195,39,18,38,0.0 +26195,44,19.45,40,0.0 +26195,31,12.5,32,0.0 +26195,26,31.23,48,0.0 +26195,50,16.25,23,0.0 +26195,61,28.5,21,0.0 +26195,59,55,49,0.0 +26195,56,38,15,0.0 +26195,28,45.6,47,0.0 +26195,6,25,43,0.0 +26195,23,9,3,0.0 +26195,12,38,15,0.0 +26195,48,12.75,29,0.0 +26195,69,36,1,0.0 +26195,16,17.45,34,0.0 +26195,75,7.75,12,0.0 +26195,10,31,5,0.0 +26195,18,62.5,6,0.0 +26195,4,22,24,0.0 +26195,37,26,38,0.0 +26195,27,43.9,1,0.0 +26195,38,263.5,44,0.0 +26195,22,21,42,0.0 +26195,58,13.25,25,0.0 +26195,34,14,37,0.0 +26195,25,14,19,0.0 +26196,54,7.45,5,0.0 +26196,65,21.05,6,0.0 +26196,20,81,12,0.0 +26196,9,97,1,0.0 +26196,5,21.35,12,0.0 +26196,59,55,3,0.0 +26196,16,17.45,40,0.0 +26196,40,18.4,49,0.0 +26196,48,12.75,26,0.0 +26196,12,38,20,0.0 +26196,75,7.75,18,0.0 +26196,49,20,33,0.0 +26196,3,10,22,0.0 +26196,13,6,23,0.0 +26196,10,31,30,0.0 +26196,6,25,36,0.0 +26196,73,15,38,0.0 +26196,7,30,47,0.0 +26196,15,15.5,17,0.0 +26196,19,9.2,19,0.0 +26196,22,21,31,0.0 +26196,51,53,13,0.0 +26196,37,26,16,0.0 +26196,60,34,19,0.0 +26196,38,263.5,34,0.0 +26196,46,12,32,0.0 +26196,1,18,13,0.0 +26196,36,19,11,0.0 +26196,29,123.79,38,0.0 +26196,55,24,39,0.0 +26196,57,19.5,12,0.0 +26196,43,46,22,0.0 +26196,53,32.8,10,0.0 +26196,32,32,7,0.0 +26196,72,34.8,9,0.0 +26196,23,9,26,0.0 +26196,67,14,25,0.0 +26196,2,19,2,0.0 +26196,58,13.25,12,0.0 +26196,24,4.5,13,0.0 +26196,25,14,6,0.0 +26196,71,21.5,45,0.0 +26196,41,9.65,34,0.0 +26196,14,23.25,23,0.0 +26196,28,45.6,43,0.0 +26196,63,43.9,27,0.0 +26196,35,18,18,0.0 +26196,17,39,22,0.0 +26196,52,7,34,0.0 +26196,31,12.5,30,0.0 +26196,56,38,24,0.0 +26196,61,28.5,14,0.0 +26196,18,62.5,49,0.0 +26196,34,14,43,0.0 +26196,62,49.3,48,0.0 +26196,64,33.25,24,0.0 +26196,74,10,38,0.0 +26196,26,31.23,26,0.0 +26196,76,18,11,0.0 +26196,42,14,27,0.0 +26196,45,9.5,33,0.0 +26196,77,13,50,0.0 +26196,39,18,9,0.0 +26196,8,40,3,0.0 +26196,27,43.9,5,0.0 +26196,69,36,5,0.0 +26196,70,15,10,0.0 +26196,66,17,27,0.0 +26196,11,21,47,0.0 +26196,44,19.45,12,0.0 +26196,21,10,21,0.0 +26196,30,25.89,40,0.0 +26196,68,12.5,41,0.0 +26196,50,16.25,30,0.0 +26197,44,19.45,26,0.0 +26197,42,14,27,0.0 +26197,7,30,2,0.0 +26197,16,17.45,48,0.0 +26197,5,21.35,30,0.0 +26197,43,46,36,0.0 +26197,15,15.5,13,0.0 +26197,35,18,18,0.0 +26197,68,12.5,43,0.0 +26197,76,18,46,0.0 +26197,9,97,47,0.0 +26197,12,38,9,0.0 +26197,49,20,34,0.0 +26197,11,21,23,0.0 +26197,34,14,45,0.0 +26197,50,16.25,2,0.0 +26197,32,32,37,0.0 +26197,1,18,13,0.0 +26197,3,10,19,0.0 +26197,65,21.05,32,0.0 +26197,53,32.8,15,0.0 +26197,24,4.5,34,0.0 +26197,45,9.5,38,0.0 +26197,37,26,2,0.0 +26197,8,40,28,0.0 +26197,64,33.25,22,0.0 +26197,10,31,9,0.0 +26197,60,34,45,0.0 +26197,41,9.65,34,0.0 +26197,73,15,29,0.0 +26197,21,10,30,0.0 +26197,26,31.23,10,0.0 +26197,56,38,39,0.0 +26197,29,123.79,36,0.0 +26197,54,7.45,14,0.0 +26198,4,22,30,0.0 +26198,45,9.5,12,0.0 +26198,33,2.5,19,0.0 +26198,47,9.5,9,0.0 +26198,25,14,45,0.0 +26198,39,18,31,0.0 +26198,11,21,13,0.0 +26198,53,32.8,6,0.0 +26198,2,19,34,0.0 +26198,75,7.75,4,0.0 +26198,29,123.79,17,0.0 +26198,56,38,46,0.0 +26198,1,18,41,0.0 +26198,27,43.9,45,0.0 +26198,43,46,16,0.0 +26198,70,15,50,0.0 +26198,48,12.75,16,0.0 +26198,21,10,38,0.0 +26198,37,26,9,0.0 +26198,50,16.25,7,0.0 +26198,69,36,36,0.0 +26198,32,32,23,0.0 +26198,65,21.05,15,0.0 +26198,67,14,35,0.0 +26198,9,97,31,0.0 +26198,10,31,41,0.0 +26198,38,263.5,5,0.0 +26198,41,9.65,41,0.0 +26198,64,33.25,49,0.0 +26198,62,49.3,1,0.0 +26198,18,62.5,47,0.0 +26198,16,17.45,31,0.0 +26198,17,39,29,0.0 +26198,60,34,25,0.0 +26198,31,12.5,26,0.0 +26198,55,24,12,0.0 +26198,54,7.45,10,0.0 +26198,19,9.2,16,0.0 +26198,20,81,31,0.0 +26198,71,21.5,18,0.0 +26198,51,53,40,0.0 +26198,36,19,48,0.0 +26198,58,13.25,42,0.0 +26198,3,10,26,0.0 +26198,35,18,17,0.0 +26198,76,18,50,0.0 +26198,73,15,15,0.0 +26198,12,38,26,0.0 +26198,57,19.5,8,0.0 +26198,74,10,49,0.0 +26198,44,19.45,8,0.0 +26198,63,43.9,35,0.0 +26198,5,21.35,8,0.0 +26198,6,25,44,0.0 +26198,49,20,3,0.0 +26198,23,9,15,0.0 +26198,15,15.5,2,0.0 +26198,52,7,15,0.0 +26198,46,12,3,0.0 +26198,22,21,20,0.0 +26198,34,14,4,0.0 +26198,77,13,25,0.0 +26198,26,31.23,15,0.0 +26199,51,53,3,0.0 +26199,31,12.5,6,0.0 +26199,20,81,20,0.0 +26199,34,14,43,0.0 +26199,2,19,49,0.0 +26199,8,40,10,0.0 +26199,49,20,40,0.0 +26199,71,21.5,11,0.0 +26199,14,23.25,46,0.0 +26199,45,9.5,6,0.0 +26199,72,34.8,32,0.0 +26199,21,10,3,0.0 +26199,5,21.35,28,0.0 +26199,67,14,34,0.0 +26199,50,16.25,1,0.0 +26199,1,18,21,0.0 +26199,77,13,49,0.0 +26199,69,36,15,0.0 +26199,15,15.5,41,0.0 +26199,43,46,47,0.0 +26199,6,25,4,0.0 +26199,38,263.5,23,0.0 +26199,73,15,8,0.0 +26199,47,9.5,24,0.0 +26199,7,30,50,0.0 +26199,10,31,19,0.0 +26199,48,12.75,19,0.0 +26199,42,14,50,0.0 +26199,24,4.5,46,0.0 +26199,22,21,17,0.0 +26199,64,33.25,16,0.0 +26199,62,49.3,34,0.0 +26199,68,12.5,49,0.0 +26199,13,6,8,0.0 +26200,37,26,2,0.0 +26200,57,19.5,31,0.0 +26200,34,14,27,0.0 +26200,17,39,9,0.0 +26200,3,10,14,0.0 +26200,55,24,48,0.0 +26200,14,23.25,5,0.0 +26200,5,21.35,43,0.0 +26200,6,25,8,0.0 +26200,50,16.25,2,0.0 +26200,48,12.75,24,0.0 +26200,32,32,47,0.0 +26200,43,46,37,0.0 +26200,69,36,18,0.0 +26200,46,12,44,0.0 +26200,4,22,30,0.0 +26200,20,81,8,0.0 +26200,54,7.45,37,0.0 +26200,64,33.25,27,0.0 +26200,66,17,50,0.0 +26200,23,9,28,0.0 +26200,77,13,18,0.0 +26200,71,21.5,32,0.0 +26200,49,20,32,0.0 +26200,56,38,39,0.0 +26200,76,18,30,0.0 +26200,59,55,9,0.0 +26200,21,10,50,0.0 +26200,33,2.5,25,0.0 +26200,16,17.45,45,0.0 +26200,8,40,38,0.0 +26200,39,18,27,0.0 +26200,22,21,20,0.0 +26200,45,9.5,34,0.0 +26200,67,14,41,0.0 +26200,25,14,17,0.0 +26200,62,49.3,32,0.0 +26200,41,9.65,34,0.0 +26200,40,18.4,25,0.0 +26200,1,18,17,0.0 +26200,36,19,15,0.0 +26200,15,15.5,3,0.0 +26200,11,21,44,0.0 +26200,42,14,49,0.0 +26200,65,21.05,41,0.0 +26200,51,53,49,0.0 +26200,52,7,29,0.0 +26200,70,15,5,0.0 +26200,13,6,26,0.0 +26200,60,34,29,0.0 +26200,63,43.9,49,0.0 +26200,31,12.5,32,0.0 +26200,10,31,5,0.0 +26200,73,15,11,0.0 +26200,28,45.6,25,0.0 +26200,24,4.5,42,0.0 +26200,19,9.2,15,0.0 +26200,18,62.5,2,0.0 +26200,44,19.45,22,0.0 +26200,38,263.5,26,0.0 +26200,47,9.5,35,0.0 +26200,61,28.5,31,0.0 +26200,26,31.23,22,0.0 +26200,9,97,18,0.0 +26200,27,43.9,29,0.0 +26200,29,123.79,32,0.0 +26200,7,30,49,0.0 +26200,35,18,5,0.0 +26200,2,19,19,0.0 +26200,12,38,42,0.0 +26200,30,25.89,42,0.0 +26200,72,34.8,46,0.0 +26200,74,10,28,0.0 +26201,35,18,36,0.0 +26201,69,36,9,0.0 +26201,48,12.75,12,0.0 +26201,23,9,38,0.0 +26201,27,43.9,22,0.0 +26201,17,39,28,0.0 +26201,21,10,1,0.0 +26201,7,30,39,0.0 +26201,40,18.4,1,0.0 +26201,45,9.5,47,0.0 +26201,42,14,21,0.0 +26201,67,14,28,0.0 +26201,38,263.5,49,0.0 +26201,70,15,44,0.0 +26201,47,9.5,37,0.0 +26201,34,14,35,0.0 +26201,9,97,27,0.0 +26201,22,21,37,0.0 +26201,8,40,4,0.0 +26201,30,25.89,49,0.0 +26201,57,19.5,17,0.0 +26201,68,12.5,2,0.0 +26201,43,46,25,0.0 +26201,54,7.45,26,0.0 +26201,1,18,3,0.0 +26201,50,16.25,25,0.0 +26201,55,24,34,0.0 +26201,15,15.5,42,0.0 +26201,25,14,48,0.0 +26201,16,17.45,28,0.0 +26201,20,81,6,0.0 +26201,76,18,14,0.0 +26201,32,32,18,0.0 +26201,61,28.5,16,0.0 +26201,33,2.5,40,0.0 +26201,28,45.6,19,0.0 +26201,4,22,46,0.0 +26201,31,12.5,10,0.0 +26201,13,6,31,0.0 +26201,52,7,50,0.0 +26201,77,13,27,0.0 +26201,29,123.79,10,0.0 +26201,49,20,16,0.0 +26201,39,18,5,0.0 +26201,72,34.8,2,0.0 +26201,56,38,25,0.0 +26201,60,34,3,0.0 +26201,53,32.8,32,0.0 +26201,46,12,37,0.0 +26201,65,21.05,27,0.0 +26201,51,53,35,0.0 +26201,10,31,19,0.0 +26201,63,43.9,2,0.0 +26201,74,10,49,0.0 +26201,71,21.5,4,0.0 +26201,75,7.75,13,0.0 +26201,12,38,30,0.0 +26201,2,19,49,0.0 +26201,11,21,16,0.0 +26201,44,19.45,9,0.0 +26201,37,26,20,0.0 +26201,14,23.25,42,0.0 +26201,59,55,10,0.0 +26201,36,19,28,0.0 +26201,58,13.25,47,0.0 +26201,6,25,40,0.0 +26201,26,31.23,38,0.0 +26201,64,33.25,24,0.0 +26201,3,10,33,0.0 +26202,22,21,35,0.0 +26202,16,17.45,11,0.0 +26202,27,43.9,5,0.0 +26202,52,7,20,0.0 +26202,71,21.5,43,0.0 +26202,35,18,21,0.0 +26202,3,10,18,0.0 +26202,66,17,25,0.0 +26202,38,263.5,34,0.0 +26202,62,49.3,1,0.0 +26202,6,25,7,0.0 +26202,48,12.75,35,0.0 +26202,13,6,39,0.0 +26202,1,18,11,0.0 +26202,77,13,39,0.0 +26202,54,7.45,13,0.0 +26202,53,32.8,13,0.0 +26202,65,21.05,27,0.0 +26202,64,33.25,34,0.0 +26202,4,22,23,0.0 +26202,36,19,18,0.0 +26202,51,53,15,0.0 +26202,30,25.89,5,0.0 +26202,68,12.5,50,0.0 +26202,8,40,16,0.0 +26202,75,7.75,33,0.0 +26202,41,9.65,31,0.0 +26202,33,2.5,29,0.0 +26202,17,39,16,0.0 +26202,59,55,48,0.0 +26202,42,14,43,0.0 +26202,28,45.6,2,0.0 +26202,50,16.25,21,0.0 +26202,49,20,25,0.0 +26202,61,28.5,35,0.0 +26202,21,10,19,0.0 +26202,44,19.45,36,0.0 +26202,47,9.5,30,0.0 +26202,76,18,33,0.0 +26202,40,18.4,48,0.0 +26202,72,34.8,34,0.0 +26202,20,81,10,0.0 +26202,45,9.5,13,0.0 +26202,37,26,9,0.0 +26202,15,15.5,10,0.0 +26202,32,32,22,0.0 +26202,19,9.2,29,0.0 +26203,27,43.9,17,0.0 +26203,9,97,3,0.0 +26203,34,14,45,0.0 +26203,75,7.75,46,0.0 +26203,3,10,32,0.0 +26203,54,7.45,30,0.0 +26203,68,12.5,14,0.0 +26203,38,263.5,29,0.0 +26203,30,25.89,42,0.0 +26203,55,24,14,0.0 +26203,41,9.65,14,0.0 +26203,20,81,50,0.0 +26203,23,9,2,0.0 +26203,44,19.45,13,0.0 +26203,77,13,26,0.0 +26203,32,32,26,0.0 +26203,46,12,18,0.0 +26203,7,30,31,0.0 +26203,73,15,4,0.0 +26203,21,10,10,0.0 +26203,65,21.05,47,0.0 +26203,4,22,13,0.0 +26203,36,19,14,0.0 +26203,31,12.5,6,0.0 +26203,29,123.79,14,0.0 +26203,18,62.5,15,0.0 +26203,67,14,8,0.0 +26203,37,26,5,0.0 +26203,26,31.23,5,0.0 +26203,52,7,27,0.0 +26203,35,18,44,0.0 +26203,64,33.25,30,0.0 +26203,72,34.8,35,0.0 +26203,51,53,38,0.0 +26203,62,49.3,24,0.0 +26203,5,21.35,3,0.0 +26203,53,32.8,43,0.0 +26203,57,19.5,20,0.0 +26203,74,10,45,0.0 +26203,56,38,26,0.0 +26203,59,55,23,0.0 +26203,63,43.9,31,0.0 +26203,15,15.5,12,0.0 +26203,61,28.5,26,0.0 +26203,16,17.45,43,0.0 +26203,49,20,29,0.0 +26204,67,14,19,0.0 +26204,1,18,31,0.0 +26204,4,22,41,0.0 +26204,26,31.23,6,0.0 +26204,12,38,36,0.0 +26204,15,15.5,32,0.0 +26204,13,6,35,0.0 +26204,59,55,26,0.0 +26204,20,81,31,0.0 +26204,54,7.45,13,0.0 +26204,61,28.5,7,0.0 +26204,11,21,32,0.0 +26204,38,263.5,18,0.0 +26204,48,12.75,28,0.0 +26204,8,40,39,0.0 +26205,74,10,18,0.0 +26205,69,36,31,0.0 +26205,70,15,20,0.0 +26205,43,46,36,0.0 +26205,3,10,25,0.0 +26205,2,19,44,0.0 +26205,56,38,11,0.0 +26205,54,7.45,22,0.0 +26205,57,19.5,23,0.0 +26205,33,2.5,21,0.0 +26205,28,45.6,36,0.0 +26205,38,263.5,11,0.0 +26205,11,21,19,0.0 +26205,31,12.5,1,0.0 +26205,1,18,45,0.0 +26205,7,30,34,0.0 +26205,8,40,3,0.0 +26205,44,19.45,47,0.0 +26205,59,55,49,0.0 +26205,19,9.2,31,0.0 +26205,42,14,8,0.0 +26205,68,12.5,5,0.0 +26205,18,62.5,19,0.0 +26205,71,21.5,34,0.0 +26205,60,34,3,0.0 +26205,63,43.9,27,0.0 +26205,6,25,15,0.0 +26205,64,33.25,26,0.0 +26205,12,38,6,0.0 +26205,36,19,13,0.0 +26205,13,6,9,0.0 +26205,35,18,10,0.0 +26205,67,14,6,0.0 +26205,14,23.25,19,0.0 +26205,9,97,33,0.0 +26205,50,16.25,41,0.0 +26205,41,9.65,32,0.0 +26205,77,13,43,0.0 +26205,5,21.35,43,0.0 +26205,32,32,30,0.0 +26205,29,123.79,33,0.0 +26205,23,9,15,0.0 +26205,21,10,50,0.0 +26205,15,15.5,6,0.0 +26205,46,12,20,0.0 +26205,73,15,6,0.0 +26205,66,17,7,0.0 +26205,72,34.8,48,0.0 +26205,26,31.23,38,0.0 +26205,52,7,32,0.0 +26206,21,10,32,0.0 +26206,75,7.75,4,0.0 +26206,19,9.2,34,0.0 +26206,7,30,25,0.0 +26206,17,39,4,0.0 +26206,56,38,9,0.0 +26206,27,43.9,36,0.0 +26206,3,10,9,0.0 +26206,54,7.45,34,0.0 +26206,30,25.89,50,0.0 +26206,46,12,37,0.0 +26206,20,81,49,0.0 +26206,14,23.25,22,0.0 +26207,14,23.25,21,0.0 +26207,53,32.8,38,0.0 +26207,24,4.5,17,0.0 +26207,60,34,24,0.0 +26207,67,14,43,0.0 +26207,56,38,39,0.0 +26207,13,6,28,0.0 +26207,66,17,7,0.0 +26207,55,24,16,0.0 +26207,29,123.79,34,0.0 +26207,74,10,10,0.0 +26207,42,14,19,0.0 +26207,12,38,32,0.0 +26207,47,9.5,9,0.0 +26207,10,31,34,0.0 +26207,22,21,31,0.0 +26207,28,45.6,13,0.0 +26207,15,15.5,8,0.0 +26207,40,18.4,6,0.0 +26207,35,18,38,0.0 +26207,3,10,44,0.0 +26207,17,39,4,0.0 +26207,54,7.45,37,0.0 +26207,62,49.3,27,0.0 +26208,35,18,20,0.0 +26208,72,34.8,3,0.0 +26208,55,24,34,0.0 +26208,42,14,26,0.0 +26208,33,2.5,49,0.0 +26208,69,36,40,0.0 +26209,30,25.89,23,0.0 +26209,24,4.5,18,0.0 +26209,61,28.5,39,0.0 +26209,4,22,43,0.0 +26209,42,14,45,0.0 +26209,63,43.9,3,0.0 +26209,38,263.5,37,0.0 +26209,75,7.75,7,0.0 +26209,15,15.5,47,0.0 +26209,33,2.5,37,0.0 +26209,10,31,7,0.0 +26209,70,15,39,0.0 +26209,16,17.45,35,0.0 +26209,62,49.3,39,0.0 +26209,77,13,4,0.0 +26209,66,17,27,0.0 +26209,8,40,32,0.0 +26209,48,12.75,44,0.0 +26209,3,10,36,0.0 +26209,46,12,11,0.0 +26209,1,18,47,0.0 +26209,19,9.2,33,0.0 +26209,14,23.25,38,0.0 +26209,25,14,5,0.0 +26209,2,19,17,0.0 +26210,67,14,34,0.0 +26210,54,7.45,27,0.0 +26210,24,4.5,37,0.0 +26210,15,15.5,32,0.0 +26210,42,14,36,0.0 +26210,40,18.4,2,0.0 +26210,76,18,14,0.0 +26210,36,19,33,0.0 +26210,48,12.75,7,0.0 +26210,63,43.9,24,0.0 +26210,13,6,36,0.0 +26210,7,30,43,0.0 +26210,16,17.45,18,0.0 +26210,46,12,5,0.0 +26210,44,19.45,25,0.0 +26210,38,263.5,42,0.0 +26210,74,10,15,0.0 +26210,52,7,20,0.0 +26210,51,53,38,0.0 +26210,23,9,22,0.0 +26210,47,9.5,6,0.0 +26210,1,18,23,0.0 +26210,75,7.75,14,0.0 +26210,69,36,50,0.0 +26210,32,32,18,0.0 +26210,60,34,43,0.0 +26210,64,33.25,19,0.0 +26210,18,62.5,43,0.0 +26210,50,16.25,27,0.0 +26210,10,31,10,0.0 +26210,26,31.23,34,0.0 +26210,30,25.89,46,0.0 +26210,34,14,3,0.0 +26210,6,25,41,0.0 +26210,70,15,38,0.0 +26210,58,13.25,16,0.0 +26211,1,18,11,0.0 +26211,17,39,39,0.0 +26211,8,40,15,0.0 +26211,30,25.89,44,0.0 +26211,12,38,50,0.0 +26211,57,19.5,18,0.0 +26211,29,123.79,42,0.0 +26211,38,263.5,22,0.0 +26211,21,10,28,0.0 +26211,25,14,44,0.0 +26211,5,21.35,35,0.0 +26211,31,12.5,5,0.0 +26211,69,36,44,0.0 +26211,14,23.25,14,0.0 +26211,22,21,47,0.0 +26211,39,18,19,0.0 +26211,15,15.5,1,0.0 +26211,13,6,43,0.0 +26211,56,38,12,0.0 +26211,36,19,32,0.0 +26211,72,34.8,45,0.0 +26211,33,2.5,1,0.0 +26211,75,7.75,2,0.0 +26211,49,20,38,0.0 +26211,63,43.9,36,0.0 +26211,73,15,46,0.0 +26211,47,9.5,25,0.0 +26211,62,49.3,10,0.0 +26211,77,13,17,0.0 +26211,11,21,39,0.0 +26211,4,22,42,0.0 +26211,64,33.25,18,0.0 +26211,61,28.5,27,0.0 +26211,32,32,5,0.0 +26211,44,19.45,18,0.0 +26211,50,16.25,23,0.0 +26211,46,12,18,0.0 +26211,27,43.9,18,0.0 +26211,60,34,26,0.0 +26211,20,81,10,0.0 +26211,16,17.45,9,0.0 +26211,43,46,22,0.0 +26211,24,4.5,26,0.0 +26211,67,14,30,0.0 +26211,52,7,46,0.0 +26211,34,14,38,0.0 +26211,28,45.6,5,0.0 +26211,55,24,27,0.0 +26211,18,62.5,38,0.0 +26211,51,53,16,0.0 +26211,54,7.45,44,0.0 +26211,58,13.25,36,0.0 +26211,26,31.23,48,0.0 +26211,19,9.2,27,0.0 +26211,3,10,32,0.0 +26211,40,18.4,14,0.0 +26211,76,18,9,0.0 +26211,37,26,40,0.0 +26211,65,21.05,19,0.0 +26211,9,97,18,0.0 +26211,42,14,3,0.0 +26212,41,9.65,48,0.0 +26212,72,34.8,33,0.0 +26212,35,18,27,0.0 +26212,40,18.4,13,0.0 +26212,32,32,36,0.0 +26212,34,14,34,0.0 +26212,48,12.75,1,0.0 +26212,37,26,36,0.0 +26212,14,23.25,33,0.0 +26212,1,18,50,0.0 +26212,33,2.5,28,0.0 +26212,25,14,40,0.0 +26212,74,10,32,0.0 +26212,66,17,39,0.0 +26212,57,19.5,16,0.0 +26212,67,14,18,0.0 +26212,51,53,27,0.0 +26212,62,49.3,37,0.0 +26212,3,10,44,0.0 +26212,46,12,21,0.0 +26212,22,21,27,0.0 +26212,70,15,8,0.0 +26212,7,30,5,0.0 +26212,2,19,9,0.0 +26212,26,31.23,22,0.0 +26212,61,28.5,26,0.0 +26212,76,18,25,0.0 +26212,56,38,23,0.0 +26212,36,19,3,0.0 +26212,38,263.5,25,0.0 +26212,64,33.25,3,0.0 +26212,18,62.5,40,0.0 +26212,11,21,10,0.0 +26212,21,10,3,0.0 +26212,10,31,43,0.0 +26212,65,21.05,11,0.0 +26212,12,38,48,0.0 +26212,20,81,48,0.0 +26212,55,24,35,0.0 +26212,16,17.45,48,0.0 +26212,54,7.45,14,0.0 +26212,75,7.75,14,0.0 +26212,5,21.35,2,0.0 +26212,6,25,12,0.0 +26212,49,20,37,0.0 +26212,63,43.9,4,0.0 +26212,45,9.5,16,0.0 +26212,17,39,22,0.0 +26212,27,43.9,24,0.0 +26212,23,9,48,0.0 +26212,53,32.8,1,0.0 +26212,52,7,26,0.0 +26212,59,55,15,0.0 +26212,9,97,27,0.0 +26212,50,16.25,4,0.0 +26212,44,19.45,4,0.0 +26212,60,34,38,0.0 +26212,73,15,16,0.0 +26212,19,9.2,8,0.0 +26212,68,12.5,44,0.0 +26212,30,25.89,40,0.0 +26212,29,123.79,15,0.0 +26213,46,12,47,0.0 +26213,2,19,34,0.0 +26213,33,2.5,19,0.0 +26213,15,15.5,34,0.0 +26213,59,55,38,0.0 +26213,23,9,1,0.0 +26213,10,31,37,0.0 +26213,75,7.75,47,0.0 +26213,37,26,9,0.0 +26213,41,9.65,32,0.0 +26213,26,31.23,23,0.0 +26213,28,45.6,18,0.0 +26213,73,15,7,0.0 +26213,31,12.5,36,0.0 +26213,54,7.45,23,0.0 +26213,19,9.2,4,0.0 +26213,53,32.8,24,0.0 +26213,63,43.9,38,0.0 +26213,3,10,29,0.0 +26213,70,15,37,0.0 +26213,22,21,13,0.0 +26213,12,38,28,0.0 +26213,16,17.45,50,0.0 +26213,8,40,20,0.0 +26213,32,32,9,0.0 +26213,58,13.25,39,0.0 +26213,52,7,37,0.0 +26213,30,25.89,28,0.0 +26213,57,19.5,37,0.0 +26213,45,9.5,17,0.0 +26213,67,14,21,0.0 +26213,62,49.3,21,0.0 +26213,13,6,24,0.0 +26213,38,263.5,34,0.0 +26213,48,12.75,8,0.0 +26213,7,30,46,0.0 +26213,44,19.45,44,0.0 +26213,60,34,21,0.0 +26213,20,81,42,0.0 +26213,47,9.5,21,0.0 +26213,61,28.5,16,0.0 +26213,66,17,41,0.0 +26213,25,14,41,0.0 +26213,36,19,50,0.0 +26213,42,14,16,0.0 +26213,6,25,13,0.0 +26213,77,13,21,0.0 +26213,39,18,28,0.0 +26213,40,18.4,2,0.0 +26213,49,20,24,0.0 +26213,5,21.35,21,0.0 +26213,35,18,7,0.0 +26213,69,36,14,0.0 +26213,17,39,49,0.0 +26213,14,23.25,15,0.0 +26213,71,21.5,37,0.0 +26213,51,53,41,0.0 +26213,34,14,17,0.0 +26213,65,21.05,1,0.0 +26213,56,38,12,0.0 +26213,27,43.9,49,0.0 +26213,76,18,24,0.0 +26213,11,21,24,0.0 +26213,43,46,11,0.0 +26213,72,34.8,3,0.0 +26213,29,123.79,23,0.0 +26213,21,10,26,0.0 +26214,15,15.5,13,0.0 +26214,43,46,43,0.0 +26214,63,43.9,48,0.0 +26214,51,53,2,0.0 +26214,61,28.5,10,0.0 +26214,17,39,19,0.0 +26214,69,36,3,0.0 +26214,59,55,27,0.0 +26214,23,9,40,0.0 +26214,50,16.25,7,0.0 +26214,42,14,4,0.0 +26214,62,49.3,5,0.0 +26214,40,18.4,16,0.0 +26214,6,25,34,0.0 +26214,68,12.5,16,0.0 +26214,2,19,33,0.0 +26214,65,21.05,19,0.0 +26214,3,10,35,0.0 +26214,26,31.23,4,0.0 +26214,55,24,5,0.0 +26214,44,19.45,20,0.0 +26214,31,12.5,23,0.0 +26214,13,6,2,0.0 +26214,73,15,15,0.0 +26214,22,21,13,0.0 +26214,41,9.65,16,0.0 +26214,4,22,46,0.0 +26214,66,17,44,0.0 +26214,75,7.75,13,0.0 +26214,57,19.5,48,0.0 +26214,5,21.35,7,0.0 +26214,77,13,19,0.0 +26214,54,7.45,7,0.0 +26214,70,15,25,0.0 +26214,16,17.45,43,0.0 +26214,9,97,49,0.0 +26214,76,18,11,0.0 +26214,7,30,49,0.0 +26214,27,43.9,40,0.0 +26214,49,20,10,0.0 +26214,60,34,1,0.0 +26214,1,18,3,0.0 +26214,14,23.25,24,0.0 +26214,46,12,12,0.0 +26214,30,25.89,47,0.0 +26214,47,9.5,8,0.0 +26214,38,263.5,27,0.0 +26214,64,33.25,28,0.0 +26214,74,10,14,0.0 +26214,25,14,22,0.0 +26214,52,7,43,0.0 +26214,12,38,11,0.0 +26214,8,40,12,0.0 +26214,32,32,21,0.0 +26214,29,123.79,47,0.0 +26214,56,38,29,0.0 +26214,67,14,7,0.0 +26214,24,4.5,31,0.0 +26214,11,21,6,0.0 +26214,35,18,35,0.0 +26214,20,81,28,0.0 +26214,21,10,39,0.0 +26214,19,9.2,21,0.0 +26214,58,13.25,4,0.0 +26214,39,18,11,0.0 +26214,45,9.5,31,0.0 +26215,73,15,20,0.0 +26215,1,18,16,0.0 +26215,14,23.25,10,0.0 +26215,42,14,9,0.0 +26215,9,97,5,0.0 +26215,33,2.5,34,0.0 +26215,77,13,39,0.0 +26215,59,55,50,0.0 +26215,51,53,18,0.0 +26215,36,19,8,0.0 +26215,72,34.8,22,0.0 +26215,25,14,49,0.0 +26215,63,43.9,4,0.0 +26215,30,25.89,4,0.0 +26215,23,9,40,0.0 +26215,16,17.45,37,0.0 +26215,29,123.79,36,0.0 +26215,3,10,18,0.0 +26215,69,36,18,0.0 +26215,41,9.65,42,0.0 +26215,24,4.5,48,0.0 +26215,47,9.5,49,0.0 +26215,48,12.75,23,0.0 +26215,11,21,32,0.0 +26215,64,33.25,37,0.0 +26215,62,49.3,2,0.0 +26215,7,30,38,0.0 +26215,15,15.5,50,0.0 +26215,61,28.5,41,0.0 +26215,54,7.45,46,0.0 +26215,56,38,23,0.0 +26215,12,38,5,0.0 +26215,13,6,21,0.0 +26215,74,10,33,0.0 +26215,67,14,25,0.0 +26215,66,17,33,0.0 +26215,28,45.6,48,0.0 +26215,5,21.35,30,0.0 +26215,50,16.25,4,0.0 +26215,46,12,6,0.0 +26215,37,26,1,0.0 +26215,27,43.9,44,0.0 +26215,75,7.75,20,0.0 +26216,42,14,41,0.0 +26216,11,21,2,0.0 +26216,26,31.23,18,0.0 +26216,16,17.45,39,0.0 +26216,4,22,2,0.0 +26216,15,15.5,23,0.0 +26216,25,14,32,0.0 +26216,55,24,49,0.0 +26216,70,15,25,0.0 +26216,51,53,41,0.0 +26216,68,12.5,14,0.0 +26216,67,14,33,0.0 +26216,69,36,7,0.0 +26216,62,49.3,44,0.0 +26216,71,21.5,27,0.0 +26216,22,21,24,0.0 +26216,32,32,49,0.0 +26216,45,9.5,16,0.0 +26216,35,18,3,0.0 +26216,27,43.9,46,0.0 +26216,5,21.35,7,0.0 +26216,10,31,40,0.0 +26216,17,39,48,0.0 +26216,7,30,2,0.0 +26216,1,18,2,0.0 +26216,2,19,33,0.0 +26216,72,34.8,43,0.0 +26216,59,55,9,0.0 +26216,60,34,34,0.0 +26216,75,7.75,28,0.0 +26216,39,18,38,0.0 +26216,44,19.45,45,0.0 +26216,46,12,13,0.0 +26216,28,45.6,4,0.0 +26216,36,19,14,0.0 +26216,63,43.9,48,0.0 +26216,40,18.4,19,0.0 +26216,6,25,1,0.0 +26216,52,7,8,0.0 +26216,31,12.5,31,0.0 +26216,77,13,20,0.0 +26216,12,38,16,0.0 +26216,38,263.5,1,0.0 +26216,37,26,7,0.0 +26216,23,9,21,0.0 +26216,14,23.25,43,0.0 +26216,29,123.79,42,0.0 +26216,8,40,24,0.0 +26216,21,10,31,0.0 +26216,18,62.5,42,0.0 +26216,56,38,12,0.0 +26216,57,19.5,45,0.0 +26216,3,10,19,0.0 +26216,34,14,31,0.0 +26216,50,16.25,30,0.0 +26216,43,46,6,0.0 +26216,54,7.45,2,0.0 +26216,74,10,12,0.0 +26216,20,81,32,0.0 +26216,41,9.65,18,0.0 +26216,76,18,31,0.0 +26216,47,9.5,37,0.0 +26216,33,2.5,20,0.0 +26216,9,97,3,0.0 +26216,61,28.5,1,0.0 +26216,19,9.2,42,0.0 +26216,30,25.89,21,0.0 +26217,16,17.45,17,0.0 +26217,5,21.35,15,0.0 +26217,14,23.25,11,0.0 +26217,19,9.2,46,0.0 +26217,62,49.3,21,0.0 +26217,2,19,26,0.0 +26217,40,18.4,48,0.0 +26217,71,21.5,37,0.0 +26217,7,30,2,0.0 +26217,39,18,45,0.0 +26217,53,32.8,35,0.0 +26217,8,40,21,0.0 +26217,22,21,12,0.0 +26217,66,17,32,0.0 +26217,12,38,15,0.0 +26217,31,12.5,43,0.0 +26217,45,9.5,2,0.0 +26217,20,81,16,0.0 +26217,59,55,21,0.0 +26217,4,22,47,0.0 +26217,15,15.5,7,0.0 +26217,58,13.25,8,0.0 +26217,34,14,43,0.0 +26217,52,7,9,0.0 +26217,35,18,34,0.0 +26217,46,12,24,0.0 +26217,55,24,20,0.0 +26217,23,9,21,0.0 +26217,56,38,23,0.0 +26217,54,7.45,15,0.0 +26217,11,21,18,0.0 +26217,50,16.25,45,0.0 +26217,33,2.5,10,0.0 +26217,76,18,20,0.0 +26217,13,6,9,0.0 +26217,65,21.05,42,0.0 +26217,37,26,43,0.0 +26217,28,45.6,8,0.0 +26217,18,62.5,46,0.0 +26217,57,19.5,12,0.0 +26217,70,15,8,0.0 +26217,49,20,35,0.0 +26217,24,4.5,38,0.0 +26217,60,34,4,0.0 +26217,67,14,11,0.0 +26217,25,14,8,0.0 +26217,43,46,19,0.0 +26217,10,31,3,0.0 +26217,73,15,3,0.0 +26217,32,32,38,0.0 +26217,9,97,26,0.0 +26217,48,12.75,46,0.0 +26217,27,43.9,40,0.0 +26217,38,263.5,17,0.0 +26217,72,34.8,47,0.0 +26217,44,19.45,43,0.0 +26217,69,36,30,0.0 +26217,47,9.5,19,0.0 +26217,61,28.5,15,0.0 +26217,41,9.65,43,0.0 +26217,29,123.79,43,0.0 +26217,64,33.25,20,0.0 +26217,68,12.5,41,0.0 +26217,51,53,32,0.0 +26217,1,18,36,0.0 +26217,42,14,19,0.0 +26218,26,31.23,24,0.0 +26218,3,10,21,0.0 +26218,21,10,17,0.0 +26218,40,18.4,32,0.0 +26218,32,32,12,0.0 +26218,30,25.89,11,0.0 +26218,66,17,48,0.0 +26218,6,25,25,0.0 +26218,12,38,28,0.0 +26218,63,43.9,45,0.0 +26218,37,26,42,0.0 +26218,61,28.5,47,0.0 +26218,35,18,42,0.0 +26218,16,17.45,5,0.0 +26218,23,9,8,0.0 +26218,57,19.5,34,0.0 +26218,74,10,7,0.0 +26218,76,18,26,0.0 +26218,58,13.25,3,0.0 +26218,65,21.05,41,0.0 +26218,71,21.5,20,0.0 +26218,56,38,7,0.0 +26218,51,53,23,0.0 +26218,36,19,32,0.0 +26218,39,18,8,0.0 +26218,54,7.45,30,0.0 +26218,24,4.5,21,0.0 +26218,9,97,48,0.0 +26218,10,31,34,0.0 +26218,68,12.5,45,0.0 +26218,72,34.8,15,0.0 +26218,34,14,41,0.0 +26218,28,45.6,23,0.0 +26218,4,22,12,0.0 +26218,38,263.5,13,0.0 +26218,11,21,8,0.0 +26218,15,15.5,43,0.0 +26218,22,21,40,0.0 +26218,43,46,48,0.0 +26218,67,14,16,0.0 +26218,14,23.25,1,0.0 +26218,55,24,35,0.0 +26218,75,7.75,49,0.0 +26218,48,12.75,14,0.0 +26218,2,19,31,0.0 +26218,19,9.2,31,0.0 +26218,20,81,31,0.0 +26218,46,12,44,0.0 +26218,47,9.5,50,0.0 +26218,45,9.5,38,0.0 +26218,25,14,39,0.0 +26218,60,34,16,0.0 +26218,41,9.65,47,0.0 +26218,31,12.5,16,0.0 +26218,53,32.8,24,0.0 +26218,49,20,7,0.0 +26218,77,13,16,0.0 +26219,32,32,26,0.0 +26219,27,43.9,39,0.0 +26219,47,9.5,10,0.0 +26219,5,21.35,20,0.0 +26219,21,10,9,0.0 +26219,20,81,35,0.0 +26219,44,19.45,36,0.0 +26219,11,21,2,0.0 +26219,68,12.5,48,0.0 +26219,37,26,24,0.0 +26219,53,32.8,16,0.0 +26219,4,22,19,0.0 +26219,65,21.05,44,0.0 +26219,10,31,7,0.0 +26219,3,10,20,0.0 +26219,18,62.5,46,0.0 +26219,73,15,45,0.0 +26219,31,12.5,32,0.0 +26219,72,34.8,44,0.0 +26219,8,40,15,0.0 +26219,49,20,4,0.0 +26219,33,2.5,33,0.0 +26219,42,14,44,0.0 +26219,57,19.5,2,0.0 +26219,28,45.6,38,0.0 +26219,75,7.75,32,0.0 +26219,60,34,35,0.0 +26219,52,7,22,0.0 +26219,38,263.5,45,0.0 +26219,46,12,28,0.0 +26219,51,53,26,0.0 +26219,7,30,25,0.0 +26219,55,24,24,0.0 +26219,16,17.45,23,0.0 +26219,74,10,24,0.0 +26219,50,16.25,35,0.0 +26219,64,33.25,18,0.0 +26219,48,12.75,5,0.0 +26220,10,31,19,0.0 +26220,71,21.5,15,0.0 +26220,45,9.5,15,0.0 +26220,30,25.89,42,0.0 +26220,27,43.9,22,0.0 +26220,3,10,43,0.0 +26220,36,19,39,0.0 +26220,42,14,13,0.0 +26220,21,10,30,0.0 +26220,37,26,25,0.0 +26220,74,10,16,0.0 +26220,41,9.65,12,0.0 +26220,29,123.79,9,0.0 +26220,46,12,6,0.0 +26220,43,46,46,0.0 +26220,69,36,49,0.0 +26220,32,32,2,0.0 +26220,33,2.5,1,0.0 +26220,66,17,15,0.0 +26220,50,16.25,18,0.0 +26220,26,31.23,43,0.0 +26220,2,19,36,0.0 +26220,9,97,34,0.0 +26220,19,9.2,46,0.0 +26220,55,24,13,0.0 +26220,56,38,13,0.0 +26220,38,263.5,7,0.0 +26220,48,12.75,9,0.0 +26220,60,34,30,0.0 +26220,57,19.5,28,0.0 +26220,22,21,10,0.0 +26220,8,40,44,0.0 +26220,53,32.8,35,0.0 +26220,44,19.45,41,0.0 +26220,47,9.5,34,0.0 +26220,59,55,22,0.0 +26220,61,28.5,27,0.0 +26220,76,18,32,0.0 +26220,4,22,37,0.0 +26220,73,15,17,0.0 +26220,17,39,33,0.0 +26220,39,18,26,0.0 +26221,70,15,7,0.0 +26221,43,46,43,0.0 +26221,3,10,12,0.0 +26221,44,19.45,32,0.0 +26221,32,32,8,0.0 +26221,64,33.25,6,0.0 +26221,16,17.45,38,0.0 +26221,45,9.5,30,0.0 +26221,12,38,35,0.0 +26221,73,15,10,0.0 +26221,68,12.5,23,0.0 +26221,27,43.9,38,0.0 +26221,9,97,36,0.0 +26221,30,25.89,7,0.0 +26221,25,14,9,0.0 +26221,2,19,50,0.0 +26221,74,10,20,0.0 +26221,18,62.5,37,0.0 +26221,11,21,19,0.0 +26221,57,19.5,45,0.0 +26221,69,36,5,0.0 +26221,72,34.8,8,0.0 +26221,24,4.5,1,0.0 +26221,17,39,32,0.0 +26221,33,2.5,42,0.0 +26221,77,13,38,0.0 +26221,38,263.5,50,0.0 +26221,22,21,14,0.0 +26221,10,31,1,0.0 +26221,53,32.8,17,0.0 +26221,34,14,46,0.0 +26221,39,18,16,0.0 +26221,58,13.25,4,0.0 +26221,26,31.23,21,0.0 +26221,23,9,11,0.0 +26221,20,81,2,0.0 +26221,15,15.5,45,0.0 +26221,61,28.5,16,0.0 +26221,59,55,13,0.0 +26221,66,17,40,0.0 +26221,75,7.75,10,0.0 +26221,4,22,41,0.0 +26221,28,45.6,5,0.0 +26221,65,21.05,17,0.0 +26221,5,21.35,26,0.0 +26221,46,12,9,0.0 +26221,29,123.79,40,0.0 +26221,31,12.5,38,0.0 +26221,41,9.65,45,0.0 +26221,36,19,49,0.0 +26221,71,21.5,17,0.0 +26221,1,18,44,0.0 +26221,35,18,50,0.0 +26221,63,43.9,30,0.0 +26221,55,24,1,0.0 +26221,50,16.25,43,0.0 +26221,6,25,32,0.0 +26221,60,34,23,0.0 +26222,12,38,9,0.0 +26222,77,13,8,0.0 +26222,32,32,14,0.0 +26222,6,25,40,0.0 +26222,30,25.89,29,0.0 +26222,46,12,17,0.0 +26222,17,39,32,0.0 +26222,49,20,29,0.0 +26222,34,14,47,0.0 +26222,68,12.5,27,0.0 +26223,17,39,12,0.0 +26223,55,24,15,0.0 +26223,50,16.25,1,0.0 +26223,2,19,7,0.0 +26223,34,14,12,0.0 +26223,70,15,5,0.0 +26223,14,23.25,17,0.0 +26223,53,32.8,33,0.0 +26223,65,21.05,42,0.0 +26224,33,2.5,48,0.0 +26224,30,25.89,31,0.0 +26224,11,21,3,0.0 +26224,15,15.5,3,0.0 +26224,61,28.5,39,0.0 +26224,43,46,34,0.0 +26224,4,22,48,0.0 +26224,45,9.5,5,0.0 +26224,12,38,16,0.0 +26224,62,49.3,38,0.0 +26224,71,21.5,5,0.0 +26224,47,9.5,39,0.0 +26224,73,15,31,0.0 +26224,19,9.2,48,0.0 +26224,23,9,19,0.0 +26224,22,21,46,0.0 +26224,41,9.65,29,0.0 +26224,63,43.9,11,0.0 +26224,13,6,9,0.0 +26224,40,18.4,9,0.0 +26224,16,17.45,6,0.0 +26224,3,10,9,0.0 +26224,52,7,50,0.0 +26224,27,43.9,17,0.0 +26224,64,33.25,15,0.0 +26224,1,18,13,0.0 +26224,67,14,50,0.0 +26224,18,62.5,15,0.0 +26224,31,12.5,32,0.0 +26224,48,12.75,29,0.0 +26224,72,34.8,30,0.0 +26224,17,39,17,0.0 +26224,57,19.5,4,0.0 +26224,70,15,16,0.0 +26224,37,26,43,0.0 +26224,75,7.75,31,0.0 +26224,68,12.5,50,0.0 +26224,59,55,21,0.0 +26224,42,14,36,0.0 +26224,60,34,34,0.0 +26224,24,4.5,48,0.0 +26224,14,23.25,31,0.0 +26224,39,18,17,0.0 +26224,5,21.35,14,0.0 +26224,58,13.25,37,0.0 +26224,26,31.23,24,0.0 +26224,7,30,12,0.0 +26224,53,32.8,38,0.0 +26224,46,12,2,0.0 +26224,69,36,33,0.0 +26224,54,7.45,21,0.0 +26224,28,45.6,24,0.0 +26224,76,18,40,0.0 +26224,36,19,12,0.0 +26224,49,20,31,0.0 +26224,32,32,46,0.0 +26224,56,38,41,0.0 +26224,21,10,34,0.0 +26224,29,123.79,11,0.0 +26224,55,24,5,0.0 +26224,35,18,12,0.0 +26224,2,19,33,0.0 +26224,20,81,8,0.0 +26224,51,53,40,0.0 +26224,6,25,30,0.0 +26224,66,17,32,0.0 +26224,9,97,25,0.0 +26225,2,19,24,0.0 +26225,29,123.79,45,0.0 +26225,28,45.6,5,0.0 +26225,50,16.25,30,0.0 +26225,72,34.8,45,0.0 +26225,67,14,1,0.0 +26225,33,2.5,44,0.0 +26225,38,263.5,33,0.0 +26225,44,19.45,22,0.0 +26225,63,43.9,20,0.0 +26225,54,7.45,3,0.0 +26225,56,38,2,0.0 +26225,30,25.89,20,0.0 +26225,12,38,1,0.0 +26225,66,17,48,0.0 +26225,6,25,4,0.0 +26225,18,62.5,40,0.0 +26225,40,18.4,27,0.0 +26225,31,12.5,40,0.0 +26225,34,14,35,0.0 +26225,49,20,2,0.0 +26225,46,12,40,0.0 +26225,20,81,1,0.0 +26225,42,14,2,0.0 +26225,39,18,11,0.0 +26225,21,10,9,0.0 +26225,10,31,26,0.0 +26225,37,26,20,0.0 +26225,15,15.5,1,0.0 +26225,3,10,14,0.0 +26225,68,12.5,42,0.0 +26225,24,4.5,21,0.0 +26225,53,32.8,15,0.0 +26225,8,40,47,0.0 +26225,64,33.25,17,0.0 +26225,55,24,12,0.0 +26225,14,23.25,40,0.0 +26225,69,36,3,0.0 +26225,26,31.23,42,0.0 +26225,59,55,42,0.0 +26225,65,21.05,5,0.0 +26225,58,13.25,24,0.0 +26225,27,43.9,29,0.0 +26225,23,9,9,0.0 +26225,41,9.65,7,0.0 +26225,7,30,47,0.0 +26225,71,21.5,27,0.0 +26225,62,49.3,39,0.0 +26225,60,34,10,0.0 +26225,73,15,38,0.0 +26225,61,28.5,46,0.0 +26225,43,46,35,0.0 +26225,76,18,26,0.0 +26225,35,18,20,0.0 +26225,9,97,32,0.0 +26226,46,12,39,0.0 +26226,6,25,18,0.0 +26226,23,9,33,0.0 +26226,67,14,1,0.0 +26226,73,15,48,0.0 +26226,48,12.75,39,0.0 +26226,14,23.25,28,0.0 +26226,68,12.5,48,0.0 +26226,52,7,2,0.0 +26226,75,7.75,14,0.0 +26226,40,18.4,19,0.0 +26226,39,18,32,0.0 +26226,45,9.5,17,0.0 +26226,47,9.5,33,0.0 +26226,10,31,15,0.0 +26226,60,34,22,0.0 +26226,44,19.45,11,0.0 +26226,28,45.6,23,0.0 +26226,20,81,32,0.0 +26226,59,55,14,0.0 +26226,26,31.23,29,0.0 +26226,29,123.79,34,0.0 +26226,43,46,50,0.0 +26226,8,40,42,0.0 +26226,53,32.8,39,0.0 +26226,37,26,45,0.0 +26226,51,53,32,0.0 +26226,9,97,34,0.0 +26226,27,43.9,4,0.0 +26226,33,2.5,20,0.0 +26226,56,38,10,0.0 +26226,63,43.9,3,0.0 +26226,42,14,48,0.0 +26226,3,10,29,0.0 +26226,74,10,46,0.0 +26226,19,9.2,22,0.0 +26226,30,25.89,14,0.0 +26226,34,14,1,0.0 +26226,12,38,27,0.0 +26226,31,12.5,30,0.0 +26226,36,19,25,0.0 +26226,62,49.3,41,0.0 +26226,2,19,16,0.0 +26226,50,16.25,47,0.0 +26226,65,21.05,50,0.0 +26226,5,21.35,44,0.0 +26226,57,19.5,4,0.0 +26226,77,13,38,0.0 +26226,18,62.5,47,0.0 +26226,55,24,24,0.0 +26226,1,18,17,0.0 +26226,64,33.25,50,0.0 +26226,58,13.25,4,0.0 +26226,66,17,3,0.0 +26226,24,4.5,15,0.0 +26226,49,20,30,0.0 +26226,35,18,12,0.0 +26226,11,21,27,0.0 +26227,1,18,36,0.0 +26227,35,18,32,0.0 +26227,77,13,48,0.0 +26227,3,10,7,0.0 +26227,64,33.25,30,0.0 +26227,5,21.35,14,0.0 +26227,25,14,31,0.0 +26227,74,10,18,0.0 +26227,66,17,44,0.0 +26227,57,19.5,39,0.0 +26227,14,23.25,49,0.0 +26227,53,32.8,25,0.0 +26227,54,7.45,13,0.0 +26227,22,21,2,0.0 +26227,11,21,9,0.0 +26227,45,9.5,34,0.0 +26227,69,36,35,0.0 +26227,23,9,45,0.0 +26227,39,18,29,0.0 +26227,65,21.05,6,0.0 +26227,28,45.6,8,0.0 +26227,26,31.23,9,0.0 +26227,10,31,25,0.0 +26227,8,40,11,0.0 +26227,12,38,28,0.0 +26227,73,15,21,0.0 +26227,27,43.9,36,0.0 +26227,71,21.5,25,0.0 +26227,33,2.5,48,0.0 +26227,19,9.2,33,0.0 +26227,49,20,31,0.0 +26227,21,10,14,0.0 +26227,63,43.9,2,0.0 +26227,34,14,12,0.0 +26227,70,15,8,0.0 +26227,75,7.75,40,0.0 +26227,18,62.5,20,0.0 +26227,72,34.8,42,0.0 +26227,37,26,43,0.0 +26227,15,15.5,50,0.0 +26227,55,24,27,0.0 +26227,16,17.45,13,0.0 +26227,41,9.65,26,0.0 +26227,58,13.25,6,0.0 +26227,60,34,26,0.0 +26227,32,32,14,0.0 +26227,42,14,43,0.0 +26227,31,12.5,36,0.0 +26227,52,7,32,0.0 +26227,20,81,41,0.0 +26227,62,49.3,44,0.0 +26227,51,53,6,0.0 +26227,50,16.25,43,0.0 +26227,29,123.79,2,0.0 +26227,13,6,40,0.0 +26227,68,12.5,38,0.0 +26228,56,38,26,0.0 +26228,42,14,10,0.0 +26228,37,26,40,0.0 +26228,66,17,4,0.0 +26228,49,20,36,0.0 +26228,23,9,45,0.0 +26228,7,30,10,0.0 +26228,63,43.9,22,0.0 +26228,69,36,32,0.0 +26228,20,81,24,0.0 +26228,61,28.5,15,0.0 +26228,55,24,50,0.0 +26228,41,9.65,6,0.0 +26228,33,2.5,2,0.0 +26228,54,7.45,19,0.0 +26228,34,14,21,0.0 +26228,70,15,48,0.0 +26228,2,19,18,0.0 +26228,32,32,29,0.0 +26228,62,49.3,43,0.0 +26228,16,17.45,26,0.0 +26228,39,18,26,0.0 +26228,44,19.45,7,0.0 +26228,51,53,17,0.0 +26228,72,34.8,45,0.0 +26228,1,18,47,0.0 +26228,27,43.9,5,0.0 +26229,58,13.25,45,0.0 +26229,60,34,9,0.0 +26229,56,38,22,0.0 +26229,53,32.8,17,0.0 +26229,37,26,20,0.0 +26229,45,9.5,48,0.0 +26229,7,30,4,0.0 +26229,32,32,35,0.0 +26229,28,45.6,30,0.0 +26229,25,14,9,0.0 +26229,64,33.25,47,0.0 +26229,3,10,13,0.0 +26229,24,4.5,3,0.0 +26229,19,9.2,41,0.0 +26229,75,7.75,11,0.0 +26229,67,14,12,0.0 +26229,22,21,35,0.0 +26229,52,7,40,0.0 +26229,27,43.9,47,0.0 +26229,46,12,42,0.0 +26229,8,40,15,0.0 +26229,77,13,32,0.0 +26229,68,12.5,35,0.0 +26229,35,18,31,0.0 +26229,33,2.5,14,0.0 +26229,14,23.25,26,0.0 +26229,62,49.3,30,0.0 +26229,63,43.9,23,0.0 +26229,2,19,44,0.0 +26229,41,9.65,38,0.0 +26229,15,15.5,5,0.0 +26229,29,123.79,15,0.0 +26229,20,81,7,0.0 +26230,9,97,48,0.0 +26230,70,15,45,0.0 +26230,1,18,43,0.0 +26230,20,81,16,0.0 +26230,53,32.8,20,0.0 +26230,58,13.25,16,0.0 +26230,66,17,29,0.0 +26230,4,22,24,0.0 +26230,77,13,1,0.0 +26230,52,7,47,0.0 +26230,56,38,19,0.0 +26230,16,17.45,49,0.0 +26230,67,14,3,0.0 +26230,17,39,24,0.0 +26230,14,23.25,23,0.0 +26230,34,14,21,0.0 +26230,69,36,35,0.0 +26230,49,20,47,0.0 +26230,71,21.5,41,0.0 +26230,35,18,40,0.0 +26230,74,10,30,0.0 +26230,54,7.45,13,0.0 +26230,21,10,41,0.0 +26230,6,25,28,0.0 +26230,43,46,23,0.0 +26230,5,21.35,9,0.0 +26230,59,55,41,0.0 +26230,33,2.5,44,0.0 +26230,55,24,45,0.0 +26230,8,40,26,0.0 +26230,37,26,49,0.0 +26230,48,12.75,19,0.0 +26230,38,263.5,38,0.0 +26230,45,9.5,16,0.0 +26230,63,43.9,47,0.0 +26230,62,49.3,42,0.0 +26230,64,33.25,9,0.0 +26230,24,4.5,43,0.0 +26230,10,31,17,0.0 +26230,68,12.5,28,0.0 +26230,22,21,9,0.0 +26230,47,9.5,34,0.0 +26230,51,53,11,0.0 +26230,18,62.5,26,0.0 +26230,76,18,20,0.0 +26230,75,7.75,21,0.0 +26230,7,30,14,0.0 +26230,41,9.65,19,0.0 +26230,2,19,28,0.0 +26230,29,123.79,49,0.0 +26230,40,18.4,23,0.0 +26230,28,45.6,26,0.0 +26230,32,32,45,0.0 +26230,61,28.5,46,0.0 +26230,50,16.25,43,0.0 +26230,30,25.89,15,0.0 +26230,73,15,15,0.0 +26230,60,34,14,0.0 +26231,46,12,3,0.0 +26231,40,18.4,21,0.0 +26231,67,14,49,0.0 +26231,52,7,5,0.0 +26231,12,38,9,0.0 +26231,55,24,16,0.0 +26231,10,31,2,0.0 +26231,9,97,13,0.0 +26231,65,21.05,22,0.0 +26231,60,34,34,0.0 +26232,8,40,9,0.0 +26232,53,32.8,30,0.0 +26232,44,19.45,26,0.0 +26232,11,21,17,0.0 +26232,74,10,43,0.0 +26232,72,34.8,29,0.0 +26232,17,39,41,0.0 +26232,55,24,12,0.0 +26232,69,36,9,0.0 +26232,51,53,34,0.0 +26232,66,17,11,0.0 +26232,15,15.5,50,0.0 +26232,49,20,47,0.0 +26232,30,25.89,34,0.0 +26232,45,9.5,7,0.0 +26232,61,28.5,9,0.0 +26232,65,21.05,20,0.0 +26232,22,21,1,0.0 +26232,23,9,22,0.0 +26232,62,49.3,47,0.0 +26232,50,16.25,27,0.0 +26232,2,19,30,0.0 +26232,73,15,8,0.0 +26232,70,15,45,0.0 +26232,52,7,20,0.0 +26232,77,13,48,0.0 +26232,38,263.5,38,0.0 +26232,33,2.5,25,0.0 +26232,4,22,2,0.0 +26232,34,14,37,0.0 +26232,28,45.6,29,0.0 +26232,42,14,4,0.0 +26232,57,19.5,40,0.0 +26232,19,9.2,42,0.0 +26232,26,31.23,41,0.0 +26232,25,14,30,0.0 +26232,6,25,47,0.0 +26232,24,4.5,30,0.0 +26232,40,18.4,45,0.0 +26232,12,38,48,0.0 +26232,5,21.35,27,0.0 +26232,36,19,31,0.0 +26232,31,12.5,14,0.0 +26232,54,7.45,11,0.0 +26232,41,9.65,34,0.0 +26232,13,6,45,0.0 +26232,32,32,31,0.0 +26232,76,18,4,0.0 +26232,60,34,33,0.0 +26232,21,10,35,0.0 +26232,47,9.5,14,0.0 +26232,39,18,24,0.0 +26232,9,97,33,0.0 +26232,1,18,2,0.0 +26232,35,18,4,0.0 +26232,29,123.79,27,0.0 +26232,59,55,26,0.0 +26232,10,31,31,0.0 +26232,68,12.5,50,0.0 +26232,56,38,12,0.0 +26232,7,30,48,0.0 +26232,67,14,6,0.0 +26232,75,7.75,2,0.0 +26232,3,10,45,0.0 +26232,20,81,47,0.0 +26232,64,33.25,46,0.0 +26233,50,16.25,49,0.0 +26233,62,49.3,44,0.0 +26233,8,40,9,0.0 +26233,7,30,5,0.0 +26233,71,21.5,2,0.0 +26233,6,25,48,0.0 +26233,25,14,7,0.0 +26233,55,24,43,0.0 +26233,17,39,32,0.0 +26233,16,17.45,7,0.0 +26233,39,18,44,0.0 +26234,1,18,23,0.0 +26234,35,18,45,0.0 +26234,6,25,14,0.0 +26234,50,16.25,46,0.0 +26234,13,6,18,0.0 +26234,74,10,4,0.0 +26234,41,9.65,37,0.0 +26234,52,7,20,0.0 +26234,58,13.25,23,0.0 +26234,39,18,33,0.0 +26234,8,40,23,0.0 +26234,33,2.5,36,0.0 +26234,23,9,37,0.0 +26234,31,12.5,25,0.0 +26234,10,31,38,0.0 +26234,61,28.5,14,0.0 +26234,22,21,25,0.0 +26234,48,12.75,6,0.0 +26234,3,10,13,0.0 +26234,53,32.8,18,0.0 +26234,67,14,37,0.0 +26234,2,19,14,0.0 +26234,59,55,17,0.0 +26234,21,10,7,0.0 +26234,66,17,30,0.0 +26234,54,7.45,15,0.0 +26234,12,38,29,0.0 +26234,55,24,6,0.0 +26234,4,22,24,0.0 +26234,11,21,39,0.0 +26234,7,30,1,0.0 +26234,26,31.23,35,0.0 +26234,73,15,10,0.0 +26234,60,34,29,0.0 +26234,64,33.25,12,0.0 +26234,47,9.5,34,0.0 +26234,56,38,6,0.0 +26234,24,4.5,19,0.0 +26234,29,123.79,10,0.0 +26234,70,15,5,0.0 +26234,15,15.5,12,0.0 +26234,20,81,44,0.0 +26234,27,43.9,9,0.0 +26234,5,21.35,19,0.0 +26234,44,19.45,32,0.0 +26234,28,45.6,9,0.0 +26234,37,26,4,0.0 +26234,14,23.25,34,0.0 +26234,51,53,43,0.0 +26234,57,19.5,45,0.0 +26234,38,263.5,31,0.0 +26234,30,25.89,46,0.0 +26234,9,97,15,0.0 +26234,19,9.2,4,0.0 +26234,32,32,13,0.0 +26235,8,40,25,0.0 +26235,38,263.5,45,0.0 +26235,3,10,12,0.0 +26235,62,49.3,10,0.0 +26235,19,9.2,13,0.0 +26235,32,32,12,0.0 +26235,45,9.5,15,0.0 +26235,28,45.6,13,0.0 +26235,72,34.8,2,0.0 +26235,57,19.5,48,0.0 +26235,9,97,6,0.0 +26235,41,9.65,44,0.0 +26235,73,15,20,0.0 +26235,70,15,50,0.0 +26235,4,22,22,0.0 +26235,43,46,4,0.0 +26235,30,25.89,13,0.0 +26235,14,23.25,38,0.0 +26235,42,14,10,0.0 +26235,33,2.5,16,0.0 +26235,55,24,38,0.0 +26235,25,14,23,0.0 +26235,16,17.45,16,0.0 +26236,52,7,15,0.0 +26236,18,62.5,9,0.0 +26236,38,263.5,8,0.0 +26236,48,12.75,47,0.0 +26236,21,10,36,0.0 +26236,1,18,16,0.0 +26236,23,9,16,0.0 +26236,31,12.5,26,0.0 +26236,54,7.45,21,0.0 +26236,20,81,22,0.0 +26236,26,31.23,36,0.0 +26236,33,2.5,1,0.0 +26236,28,45.6,22,0.0 +26236,16,17.45,12,0.0 +26236,53,32.8,19,0.0 +26236,68,12.5,5,0.0 +26236,3,10,13,0.0 +26236,45,9.5,30,0.0 +26236,57,19.5,10,0.0 +26236,76,18,8,0.0 +26237,19,9.2,19,0.0 +26237,64,33.25,38,0.0 +26237,10,31,10,0.0 +26237,44,19.45,18,0.0 +26237,62,49.3,30,0.0 +26237,69,36,25,0.0 +26237,47,9.5,39,0.0 +26237,65,21.05,2,0.0 +26237,74,10,24,0.0 +26237,46,12,32,0.0 +26237,11,21,31,0.0 +26237,60,34,48,0.0 +26237,63,43.9,38,0.0 +26237,12,38,8,0.0 +26237,31,12.5,38,0.0 +26237,32,32,49,0.0 +26237,30,25.89,26,0.0 +26237,25,14,9,0.0 +26237,21,10,50,0.0 +26237,34,14,36,0.0 +26237,20,81,39,0.0 +26237,52,7,44,0.0 +26237,77,13,19,0.0 +26237,73,15,15,0.0 +26237,50,16.25,35,0.0 +26237,57,19.5,23,0.0 +26237,58,13.25,3,0.0 +26237,27,43.9,21,0.0 +26237,6,25,6,0.0 +26237,48,12.75,3,0.0 +26237,38,263.5,38,0.0 +26237,45,9.5,16,0.0 +26237,70,15,48,0.0 +26237,68,12.5,34,0.0 +26237,35,18,32,0.0 +26237,49,20,22,0.0 +26237,39,18,5,0.0 +26237,72,34.8,31,0.0 +26237,17,39,21,0.0 +26237,24,4.5,41,0.0 +26237,61,28.5,13,0.0 +26237,41,9.65,31,0.0 +26237,33,2.5,41,0.0 +26237,42,14,45,0.0 +26237,66,17,12,0.0 +26237,59,55,49,0.0 +26237,2,19,32,0.0 +26237,43,46,46,0.0 +26237,36,19,14,0.0 +26237,5,21.35,15,0.0 +26237,9,97,39,0.0 +26237,8,40,30,0.0 +26237,67,14,18,0.0 +26237,13,6,21,0.0 +26237,15,15.5,4,0.0 +26237,40,18.4,29,0.0 +26237,14,23.25,50,0.0 +26237,23,9,26,0.0 +26237,3,10,49,0.0 +26237,18,62.5,37,0.0 +26237,29,123.79,46,0.0 +26237,75,7.75,27,0.0 +26237,54,7.45,12,0.0 +26237,1,18,41,0.0 +26237,56,38,8,0.0 +26238,36,19,16,0.0 +26238,10,31,47,0.0 +26238,29,123.79,46,0.0 +26238,69,36,47,0.0 +26238,3,10,16,0.0 +26238,14,23.25,5,0.0 +26238,43,46,21,0.0 +26238,65,21.05,40,0.0 +26238,54,7.45,42,0.0 +26238,27,43.9,31,0.0 +26238,9,97,49,0.0 +26238,59,55,25,0.0 +26238,25,14,27,0.0 +26238,5,21.35,39,0.0 +26238,73,15,13,0.0 +26238,75,7.75,50,0.0 +26238,28,45.6,45,0.0 +26238,15,15.5,19,0.0 +26238,49,20,1,0.0 +26238,74,10,34,0.0 +26238,42,14,13,0.0 +26238,26,31.23,25,0.0 +26238,16,17.45,50,0.0 +26238,33,2.5,46,0.0 +26238,52,7,32,0.0 +26238,72,34.8,5,0.0 +26238,37,26,48,0.0 +26238,45,9.5,2,0.0 +26238,21,10,35,0.0 +26238,68,12.5,38,0.0 +26238,12,38,23,0.0 +26238,58,13.25,43,0.0 +26238,35,18,49,0.0 +26238,30,25.89,32,0.0 +26238,63,43.9,36,0.0 +26238,71,21.5,45,0.0 +26238,23,9,5,0.0 +26238,57,19.5,44,0.0 +26239,25,14,31,0.0 +26239,14,23.25,10,0.0 +26239,75,7.75,30,0.0 +26239,51,53,7,0.0 +26239,42,14,10,0.0 +26239,22,21,26,0.0 +26239,60,34,22,0.0 +26239,74,10,27,0.0 +26239,34,14,9,0.0 +26239,39,18,3,0.0 +26239,2,19,14,0.0 +26239,53,32.8,41,0.0 +26239,10,31,17,0.0 +26239,50,16.25,44,0.0 +26239,20,81,8,0.0 +26239,8,40,22,0.0 +26239,7,30,3,0.0 +26239,48,12.75,43,0.0 +26239,13,6,13,0.0 +26239,36,19,20,0.0 +26239,16,17.45,21,0.0 +26239,59,55,26,0.0 +26239,61,28.5,14,0.0 +26239,77,13,24,0.0 +26239,68,12.5,23,0.0 +26239,44,19.45,7,0.0 +26239,63,43.9,42,0.0 +26239,31,12.5,31,0.0 +26239,27,43.9,7,0.0 +26239,19,9.2,22,0.0 +26240,9,97,3,0.0 +26240,66,17,15,0.0 +26240,57,19.5,6,0.0 +26240,46,12,19,0.0 +26240,27,43.9,30,0.0 +26240,4,22,17,0.0 +26240,15,15.5,23,0.0 +26240,41,9.65,5,0.0 +26240,48,12.75,3,0.0 +26240,61,28.5,3,0.0 +26240,75,7.75,39,0.0 +26240,47,9.5,18,0.0 +26240,18,62.5,25,0.0 +26240,7,30,46,0.0 +26240,71,21.5,41,0.0 +26240,53,32.8,42,0.0 +26240,17,39,14,0.0 +26240,39,18,50,0.0 +26240,25,14,25,0.0 +26240,73,15,29,0.0 +26240,30,25.89,21,0.0 +26240,42,14,9,0.0 +26240,70,15,42,0.0 +26240,14,23.25,5,0.0 +26240,10,31,11,0.0 +26240,60,34,37,0.0 +26240,72,34.8,50,0.0 +26240,62,49.3,3,0.0 +26240,56,38,4,0.0 +26240,21,10,38,0.0 +26240,40,18.4,48,0.0 +26240,28,45.6,47,0.0 +26240,35,18,11,0.0 +26240,16,17.45,1,0.0 +26240,51,53,21,0.0 +26240,20,81,20,0.0 +26240,77,13,13,0.0 +26240,1,18,41,0.0 +26240,64,33.25,41,0.0 +26240,59,55,39,0.0 +26240,23,9,48,0.0 +26240,34,14,8,0.0 +26240,67,14,30,0.0 +26240,11,21,20,0.0 +26240,12,38,25,0.0 +26241,10,31,35,0.0 +26241,2,19,49,0.0 +26241,26,31.23,41,0.0 +26241,49,20,27,0.0 +26241,65,21.05,39,0.0 +26241,27,43.9,8,0.0 +26241,7,30,4,0.0 +26241,62,49.3,2,0.0 +26241,33,2.5,45,0.0 +26241,52,7,28,0.0 +26241,71,21.5,38,0.0 +26241,70,15,21,0.0 +26241,36,19,25,0.0 +26241,56,38,29,0.0 +26241,76,18,2,0.0 +26241,45,9.5,30,0.0 +26241,22,21,41,0.0 +26241,28,45.6,14,0.0 +26241,18,62.5,27,0.0 +26241,13,6,33,0.0 +26241,66,17,4,0.0 +26241,29,123.79,12,0.0 +26241,17,39,3,0.0 +26241,77,13,42,0.0 +26241,12,38,36,0.0 +26241,68,12.5,24,0.0 +26241,53,32.8,8,0.0 +26241,34,14,4,0.0 +26241,50,16.25,33,0.0 +26241,4,22,33,0.0 +26241,43,46,28,0.0 +26241,51,53,31,0.0 +26241,74,10,8,0.0 +26241,14,23.25,38,0.0 +26241,16,17.45,18,0.0 +26241,47,9.5,30,0.0 +26241,25,14,24,0.0 +26241,59,55,43,0.0 +26241,3,10,50,0.0 +26241,6,25,27,0.0 +26241,67,14,22,0.0 +26241,46,12,47,0.0 +26241,48,12.75,39,0.0 +26241,42,14,12,0.0 +26241,63,43.9,39,0.0 +26241,39,18,42,0.0 +26241,35,18,7,0.0 +26241,15,15.5,21,0.0 +26241,61,28.5,14,0.0 +26241,58,13.25,26,0.0 +26241,54,7.45,37,0.0 +26241,64,33.25,13,0.0 +26241,30,25.89,1,0.0 +26241,72,34.8,36,0.0 +26241,69,36,43,0.0 +26241,31,12.5,1,0.0 +26241,32,32,31,0.0 +26241,24,4.5,16,0.0 +26241,23,9,20,0.0 +26241,9,97,46,0.0 +26241,75,7.75,7,0.0 +26241,55,24,19,0.0 +26241,38,263.5,44,0.0 +26241,57,19.5,14,0.0 +26241,40,18.4,33,0.0 +26241,21,10,35,0.0 +26241,37,26,4,0.0 +26241,20,81,41,0.0 +26241,41,9.65,5,0.0 +26241,60,34,26,0.0 +26241,1,18,1,0.0 +26242,46,12,43,0.0 +26242,62,49.3,19,0.0 +26242,32,32,18,0.0 +26242,15,15.5,18,0.0 +26242,28,45.6,14,0.0 +26242,66,17,50,0.0 +26242,61,28.5,13,0.0 +26242,22,21,33,0.0 +26242,73,15,16,0.0 +26242,23,9,39,0.0 +26242,33,2.5,22,0.0 +26242,26,31.23,28,0.0 +26242,35,18,48,0.0 +26242,21,10,7,0.0 +26242,29,123.79,12,0.0 +26242,6,25,3,0.0 +26242,58,13.25,7,0.0 +26242,71,21.5,44,0.0 +26242,3,10,47,0.0 +26242,76,18,20,0.0 +26242,63,43.9,47,0.0 +26242,17,39,43,0.0 +26242,30,25.89,4,0.0 +26242,14,23.25,47,0.0 +26242,56,38,18,0.0 +26242,51,53,12,0.0 +26242,12,38,25,0.0 +26242,52,7,22,0.0 +26242,2,19,3,0.0 +26242,55,24,48,0.0 +26242,74,10,26,0.0 +26242,65,21.05,8,0.0 +26242,75,7.75,41,0.0 +26242,47,9.5,9,0.0 +26242,53,32.8,16,0.0 +26242,5,21.35,11,0.0 +26242,64,33.25,46,0.0 +26242,20,81,39,0.0 +26242,43,46,12,0.0 +26242,59,55,13,0.0 +26242,69,36,24,0.0 +26242,4,22,46,0.0 +26242,39,18,32,0.0 +26242,50,16.25,34,0.0 +26242,1,18,18,0.0 +26242,13,6,23,0.0 +26242,67,14,39,0.0 +26242,31,12.5,48,0.0 +26242,27,43.9,10,0.0 +26242,34,14,6,0.0 +26242,72,34.8,8,0.0 +26242,7,30,5,0.0 +26242,10,31,15,0.0 +26243,22,21,5,0.0 +26243,61,28.5,1,0.0 +26243,72,34.8,3,0.0 +26243,23,9,35,0.0 +26243,47,9.5,6,0.0 +26243,44,19.45,3,0.0 +26243,65,21.05,41,0.0 +26243,20,81,22,0.0 +26243,12,38,48,0.0 +26243,1,18,23,0.0 +26243,6,25,20,0.0 +26243,30,25.89,1,0.0 +26243,31,12.5,40,0.0 +26243,62,49.3,2,0.0 +26243,26,31.23,21,0.0 +26243,71,21.5,14,0.0 +26243,32,32,30,0.0 +26243,55,24,12,0.0 +26243,66,17,50,0.0 +26243,60,34,28,0.0 +26243,43,46,8,0.0 +26243,74,10,2,0.0 +26243,25,14,7,0.0 +26243,19,9.2,32,0.0 +26243,10,31,7,0.0 +26243,49,20,21,0.0 +26243,21,10,17,0.0 +26243,11,21,19,0.0 +26243,15,15.5,37,0.0 +26244,47,9.5,20,0.0 +26244,65,21.05,27,0.0 +26244,66,17,13,0.0 +26244,9,97,18,0.0 +26244,11,21,9,0.0 +26244,75,7.75,42,0.0 +26244,3,10,40,0.0 +26244,49,20,6,0.0 +26244,12,38,25,0.0 +26244,63,43.9,38,0.0 +26244,31,12.5,50,0.0 +26244,21,10,3,0.0 +26244,24,4.5,18,0.0 +26244,51,53,36,0.0 +26244,18,62.5,18,0.0 +26244,13,6,37,0.0 +26244,23,9,45,0.0 +26244,40,18.4,24,0.0 +26244,73,15,46,0.0 +26244,33,2.5,5,0.0 +26244,62,49.3,48,0.0 +26244,4,22,41,0.0 +26244,50,16.25,28,0.0 +26244,1,18,45,0.0 +26245,59,55,10,0.0 +26245,14,23.25,15,0.0 +26245,15,15.5,2,0.0 +26245,1,18,49,0.0 +26245,3,10,34,0.0 +26245,57,19.5,23,0.0 +26245,25,14,35,0.0 +26245,53,32.8,17,0.0 +26245,42,14,9,0.0 +26245,72,34.8,20,0.0 +26245,51,53,4,0.0 +26245,56,38,27,0.0 +26245,76,18,50,0.0 +26245,10,31,36,0.0 +26245,21,10,20,0.0 +26245,27,43.9,26,0.0 +26245,22,21,3,0.0 +26245,39,18,22,0.0 +26245,33,2.5,41,0.0 +26245,52,7,31,0.0 +26245,35,18,14,0.0 +26245,19,9.2,21,0.0 +26245,66,17,33,0.0 +26245,20,81,39,0.0 +26245,32,32,26,0.0 +26245,38,263.5,26,0.0 +26246,61,28.5,21,0.0 +26246,41,9.65,6,0.0 +26246,38,263.5,9,0.0 +26246,4,22,26,0.0 +26246,70,15,15,0.0 +26246,23,9,14,0.0 +26246,44,19.45,19,0.0 +26246,12,38,33,0.0 +26246,22,21,9,0.0 +26246,32,32,23,0.0 +26246,10,31,24,0.0 +26246,77,13,41,0.0 +26246,37,26,26,0.0 +26246,17,39,8,0.0 +26246,43,46,35,0.0 +26246,76,18,24,0.0 +26246,2,19,6,0.0 +26246,62,49.3,34,0.0 +26246,53,32.8,6,0.0 +26246,54,7.45,44,0.0 +26246,69,36,9,0.0 +26246,8,40,46,0.0 +26246,31,12.5,45,0.0 +26246,45,9.5,1,0.0 +26246,21,10,3,0.0 +26246,3,10,43,0.0 +26246,73,15,34,0.0 +26246,19,9.2,43,0.0 +26246,35,18,22,0.0 +26246,51,53,11,0.0 +26246,72,34.8,15,0.0 +26246,24,4.5,33,0.0 +26246,40,18.4,34,0.0 +26246,18,62.5,19,0.0 +26246,75,7.75,22,0.0 +26246,11,21,6,0.0 +26246,59,55,11,0.0 +26246,56,38,15,0.0 +26246,5,21.35,26,0.0 +26246,14,23.25,14,0.0 +26246,55,24,19,0.0 +26246,6,25,4,0.0 +26246,46,12,48,0.0 +26246,58,13.25,37,0.0 +26247,34,14,6,0.0 +26247,52,7,18,0.0 +26247,60,34,43,0.0 +26247,8,40,13,0.0 +26247,35,18,43,0.0 +26247,4,22,3,0.0 +26247,44,19.45,23,0.0 +26247,33,2.5,20,0.0 +26247,40,18.4,40,0.0 +26247,75,7.75,10,0.0 +26247,20,81,24,0.0 +26247,63,43.9,29,0.0 +26247,22,21,27,0.0 +26247,2,19,23,0.0 +26247,45,9.5,48,0.0 +26247,3,10,36,0.0 +26247,42,14,25,0.0 +26247,12,38,7,0.0 +26247,72,34.8,46,0.0 +26247,56,38,26,0.0 +26247,23,9,25,0.0 +26247,50,16.25,11,0.0 +26247,15,15.5,33,0.0 +26247,48,12.75,42,0.0 +26247,26,31.23,6,0.0 +26247,70,15,42,0.0 +26247,13,6,12,0.0 +26247,43,46,26,0.0 +26247,55,24,26,0.0 +26247,25,14,48,0.0 +26247,1,18,44,0.0 +26247,46,12,13,0.0 +26247,9,97,3,0.0 +26247,77,13,1,0.0 +26247,65,21.05,31,0.0 +26247,76,18,38,0.0 +26247,74,10,21,0.0 +26247,30,25.89,19,0.0 +26247,5,21.35,5,0.0 +26248,68,12.5,10,0.0 +26248,44,19.45,13,0.0 +26248,52,7,47,0.0 +26248,32,32,11,0.0 +26248,25,14,7,0.0 +26248,49,20,13,0.0 +26248,73,15,6,0.0 +26248,53,32.8,36,0.0 +26248,16,17.45,26,0.0 +26248,51,53,25,0.0 +26248,70,15,24,0.0 +26248,38,263.5,21,0.0 +26248,5,21.35,23,0.0 +26248,31,12.5,19,0.0 +26248,58,13.25,48,0.0 +26248,75,7.75,47,0.0 +26248,33,2.5,20,0.0 +26249,15,15.5,19,0.0 +26249,51,53,20,0.0 +26249,43,46,27,0.0 +26249,2,19,19,0.0 +26249,57,19.5,9,0.0 +26249,54,7.45,31,0.0 +26249,29,123.79,6,0.0 +26249,41,9.65,27,0.0 +26249,33,2.5,17,0.0 +26249,5,21.35,24,0.0 +26249,13,6,8,0.0 +26249,75,7.75,6,0.0 +26249,40,18.4,43,0.0 +26249,25,14,48,0.0 +26249,36,19,6,0.0 +26249,20,81,26,0.0 +26249,22,21,6,0.0 +26249,6,25,22,0.0 +26249,24,4.5,28,0.0 +26249,56,38,6,0.0 +26249,69,36,5,0.0 +26249,52,7,2,0.0 +26249,16,17.45,32,0.0 +26249,19,9.2,40,0.0 +26249,71,21.5,7,0.0 +26249,17,39,37,0.0 +26249,39,18,2,0.0 +26249,70,15,15,0.0 +26249,11,21,7,0.0 +26249,4,22,38,0.0 +26249,18,62.5,13,0.0 +26249,35,18,39,0.0 +26249,27,43.9,32,0.0 +26249,32,32,28,0.0 +26249,63,43.9,38,0.0 +26249,67,14,14,0.0 +26249,44,19.45,7,0.0 +26249,28,45.6,1,0.0 +26249,1,18,12,0.0 +26249,68,12.5,48,0.0 +26249,64,33.25,30,0.0 +26249,55,24,22,0.0 +26249,21,10,39,0.0 +26249,9,97,4,0.0 +26249,42,14,18,0.0 +26249,10,31,14,0.0 +26249,26,31.23,26,0.0 +26249,23,9,46,0.0 +26249,50,16.25,29,0.0 +26249,74,10,45,0.0 +26249,46,12,32,0.0 +26249,66,17,13,0.0 +26249,31,12.5,42,0.0 +26249,77,13,1,0.0 +26249,58,13.25,4,0.0 +26249,34,14,48,0.0 +26249,59,55,48,0.0 +26249,7,30,37,0.0 +26249,30,25.89,35,0.0 +26249,60,34,17,0.0 +26249,65,21.05,44,0.0 +26249,8,40,38,0.0 +26249,14,23.25,14,0.0 +26249,47,9.5,50,0.0 +26249,38,263.5,22,0.0 +26249,37,26,18,0.0 +26249,45,9.5,45,0.0 +26249,3,10,5,0.0 +26249,48,12.75,13,0.0 +26249,76,18,42,0.0 +26249,53,32.8,4,0.0 +26249,73,15,31,0.0 +26249,72,34.8,38,0.0 +26249,61,28.5,12,0.0 +26250,16,17.45,47,0.0 +26250,25,14,29,0.0 +26250,32,32,20,0.0 +26250,41,9.65,6,0.0 +26250,42,14,7,0.0 +26250,39,18,33,0.0 +26250,31,12.5,45,0.0 +26250,36,19,11,0.0 +26250,69,36,14,0.0 +26251,75,7.75,16,0.0 +26251,29,123.79,20,0.0 +26251,30,25.89,38,0.0 +26251,28,45.6,17,0.0 +26251,46,12,43,0.0 +26251,24,4.5,1,0.0 +26251,54,7.45,12,0.0 +26251,23,9,34,0.0 +26251,34,14,41,0.0 +26251,17,39,5,0.0 +26251,26,31.23,11,0.0 +26251,37,26,5,0.0 +26251,67,14,43,0.0 +26251,50,16.25,42,0.0 +26251,15,15.5,29,0.0 +26251,72,34.8,9,0.0 +26251,38,263.5,44,0.0 +26251,66,17,37,0.0 +26251,12,38,21,0.0 +26251,4,22,30,0.0 +26251,27,43.9,9,0.0 +26251,19,9.2,13,0.0 +26251,69,36,32,0.0 +26251,8,40,21,0.0 +26251,68,12.5,7,0.0 +26251,43,46,7,0.0 +26251,52,7,48,0.0 +26251,18,62.5,50,0.0 +26251,51,53,37,0.0 +26251,11,21,32,0.0 +26251,45,9.5,21,0.0 +26251,47,9.5,20,0.0 +26251,76,18,39,0.0 +26251,36,19,38,0.0 +26251,77,13,13,0.0 +26251,41,9.65,31,0.0 +26251,59,55,15,0.0 +26251,61,28.5,12,0.0 +26251,33,2.5,49,0.0 +26251,48,12.75,1,0.0 +26251,63,43.9,31,0.0 +26251,16,17.45,14,0.0 +26251,42,14,38,0.0 +26251,5,21.35,48,0.0 +26251,3,10,18,0.0 +26251,40,18.4,21,0.0 +26251,74,10,37,0.0 +26251,44,19.45,10,0.0 +26251,1,18,12,0.0 +26251,62,49.3,44,0.0 +26251,49,20,7,0.0 +26251,10,31,26,0.0 +26251,53,32.8,27,0.0 +26251,7,30,30,0.0 +26251,2,19,2,0.0 +26251,55,24,44,0.0 +26251,70,15,9,0.0 +26251,32,32,7,0.0 +26251,25,14,22,0.0 +26251,13,6,39,0.0 +26251,71,21.5,19,0.0 +26251,73,15,20,0.0 +26251,6,25,18,0.0 +26251,57,19.5,41,0.0 +26251,58,13.25,18,0.0 +26251,21,10,34,0.0 +26251,60,34,23,0.0 +26251,39,18,6,0.0 +26251,35,18,7,0.0 +26251,9,97,18,0.0 +26251,20,81,21,0.0 +26251,31,12.5,37,0.0 +26251,22,21,34,0.0 +26252,9,97,34,0.0 +26252,69,36,4,0.0 +26252,10,31,4,0.0 +26252,61,28.5,21,0.0 +26252,50,16.25,2,0.0 +26252,55,24,10,0.0 +26252,47,9.5,35,0.0 +26252,57,19.5,41,0.0 +26252,52,7,43,0.0 +26252,35,18,30,0.0 +26252,77,13,46,0.0 +26252,51,53,32,0.0 +26252,33,2.5,9,0.0 +26252,42,14,6,0.0 +26252,4,22,1,0.0 +26252,49,20,1,0.0 +26252,43,46,48,0.0 +26252,11,21,12,0.0 +26252,45,9.5,16,0.0 +26252,24,4.5,7,0.0 +26252,7,30,49,0.0 +26252,68,12.5,22,0.0 +26252,39,18,7,0.0 +26252,73,15,30,0.0 +26252,59,55,15,0.0 +26252,19,9.2,4,0.0 +26252,54,7.45,27,0.0 +26252,5,21.35,27,0.0 +26253,15,15.5,35,0.0 +26253,21,10,24,0.0 +26253,37,26,50,0.0 +26253,30,25.89,18,0.0 +26253,55,24,32,0.0 +26253,56,38,27,0.0 +26253,51,53,5,0.0 +26253,76,18,27,0.0 +26253,49,20,28,0.0 +26253,38,263.5,37,0.0 +26253,4,22,4,0.0 +26253,13,6,29,0.0 +26253,35,18,45,0.0 +26253,26,31.23,20,0.0 +26253,75,7.75,26,0.0 +26253,42,14,34,0.0 +26253,66,17,40,0.0 +26253,65,21.05,21,0.0 +26253,11,21,50,0.0 +26253,46,12,2,0.0 +26253,45,9.5,7,0.0 +26253,25,14,27,0.0 +26253,2,19,41,0.0 +26253,50,16.25,45,0.0 +26253,24,4.5,1,0.0 +26253,40,18.4,35,0.0 +26253,23,9,22,0.0 +26253,19,9.2,16,0.0 +26253,69,36,6,0.0 +26253,10,31,25,0.0 +26253,62,49.3,11,0.0 +26253,48,12.75,43,0.0 +26253,59,55,50,0.0 +26253,31,12.5,8,0.0 +26253,32,32,50,0.0 +26253,61,28.5,39,0.0 +26253,27,43.9,12,0.0 +26253,5,21.35,39,0.0 +26253,3,10,20,0.0 +26253,20,81,10,0.0 +26253,17,39,17,0.0 +26253,7,30,20,0.0 +26253,14,23.25,28,0.0 +26253,44,19.45,50,0.0 +26253,39,18,39,0.0 +26254,31,12.5,14,0.0 +26254,55,24,43,0.0 +26254,71,21.5,34,0.0 +26254,24,4.5,23,0.0 +26254,50,16.25,14,0.0 +26254,56,38,15,0.0 +26254,23,9,32,0.0 +26254,41,9.65,4,0.0 +26254,22,21,16,0.0 +26254,1,18,14,0.0 +26254,19,9.2,23,0.0 +26254,53,32.8,23,0.0 +26254,35,18,26,0.0 +26254,57,19.5,9,0.0 +26254,76,18,6,0.0 +26254,62,49.3,32,0.0 +26254,37,26,22,0.0 +26254,60,34,50,0.0 +26254,49,20,13,0.0 +26254,54,7.45,16,0.0 +26254,69,36,36,0.0 +26254,12,38,7,0.0 +26254,16,17.45,35,0.0 +26254,73,15,22,0.0 +26254,25,14,50,0.0 +26254,43,46,44,0.0 +26254,45,9.5,26,0.0 +26254,33,2.5,38,0.0 +26254,32,32,35,0.0 +26254,59,55,41,0.0 +26254,10,31,3,0.0 +26254,68,12.5,49,0.0 +26255,26,31.23,24,0.0 +26255,36,19,1,0.0 +26255,11,21,2,0.0 +26255,58,13.25,3,0.0 +26255,14,23.25,19,0.0 +26255,17,39,49,0.0 +26255,5,21.35,3,0.0 +26255,67,14,48,0.0 +26255,63,43.9,36,0.0 +26255,9,97,7,0.0 +26255,69,36,17,0.0 +26255,3,10,49,0.0 +26255,46,12,1,0.0 +26255,44,19.45,25,0.0 +26255,72,34.8,36,0.0 +26255,33,2.5,3,0.0 +26255,39,18,19,0.0 +26255,45,9.5,4,0.0 +26255,66,17,36,0.0 +26255,59,55,15,0.0 +26255,8,40,46,0.0 +26255,37,26,50,0.0 +26255,57,19.5,40,0.0 +26255,35,18,15,0.0 +26255,30,25.89,8,0.0 +26255,2,19,34,0.0 +26255,22,21,17,0.0 +26255,41,9.65,37,0.0 +26255,73,15,42,0.0 +26255,15,15.5,17,0.0 +26255,51,53,25,0.0 +26255,19,9.2,2,0.0 +26255,43,46,23,0.0 +26255,21,10,24,0.0 +26255,34,14,19,0.0 +26255,1,18,36,0.0 +26255,13,6,43,0.0 +26255,49,20,28,0.0 +26255,32,32,40,0.0 +26255,12,38,6,0.0 +26255,16,17.45,42,0.0 +26255,27,43.9,19,0.0 +26255,68,12.5,33,0.0 +26255,77,13,49,0.0 +26255,54,7.45,46,0.0 +26255,47,9.5,28,0.0 +26255,18,62.5,23,0.0 +26255,28,45.6,7,0.0 +26255,74,10,26,0.0 +26255,23,9,16,0.0 +26255,10,31,16,0.0 +26255,48,12.75,3,0.0 +26255,6,25,36,0.0 +26255,50,16.25,28,0.0 +26255,40,18.4,13,0.0 +26255,25,14,33,0.0 +26255,29,123.79,36,0.0 +26255,75,7.75,45,0.0 +26255,60,34,44,0.0 +26255,53,32.8,10,0.0 +26255,61,28.5,3,0.0 +26255,76,18,5,0.0 +26255,64,33.25,9,0.0 +26255,52,7,11,0.0 +26255,71,21.5,23,0.0 +26255,55,24,23,0.0 +26255,42,14,5,0.0 +26255,7,30,49,0.0 +26255,65,21.05,20,0.0 +26255,62,49.3,14,0.0 +26255,31,12.5,10,0.0 +26255,4,22,50,0.0 +26255,56,38,41,0.0 +26255,38,263.5,27,0.0 +26255,70,15,36,0.0 +26255,20,81,9,0.0 +26255,24,4.5,5,0.0 +26256,39,18,45,0.0 +26256,52,7,13,0.0 +26256,44,19.45,17,0.0 +26256,8,40,7,0.0 +26256,24,4.5,25,0.0 +26256,5,21.35,42,0.0 +26256,76,18,37,0.0 +26256,13,6,40,0.0 +26256,11,21,22,0.0 +26256,57,19.5,38,0.0 +26256,36,19,16,0.0 +26256,23,9,36,0.0 +26256,41,9.65,31,0.0 +26256,67,14,38,0.0 +26256,3,10,4,0.0 +26256,17,39,43,0.0 +26256,12,38,28,0.0 +26256,59,55,22,0.0 +26256,77,13,31,0.0 +26256,27,43.9,30,0.0 +26256,38,263.5,47,0.0 +26256,1,18,46,0.0 +26256,48,12.75,16,0.0 +26256,28,45.6,12,0.0 +26256,37,26,3,0.0 +26256,72,34.8,24,0.0 +26256,56,38,18,0.0 +26256,62,49.3,34,0.0 +26256,47,9.5,36,0.0 +26256,50,16.25,44,0.0 +26256,22,21,46,0.0 +26256,29,123.79,46,0.0 +26256,71,21.5,25,0.0 +26256,60,34,38,0.0 +26256,64,33.25,16,0.0 +26256,45,9.5,40,0.0 +26256,16,17.45,43,0.0 +26256,30,25.89,3,0.0 +26256,42,14,25,0.0 +26256,66,17,46,0.0 +26256,43,46,38,0.0 +26256,14,23.25,26,0.0 +26256,46,12,42,0.0 +26256,61,28.5,37,0.0 +26256,18,62.5,32,0.0 +26256,31,12.5,46,0.0 +26256,70,15,16,0.0 +26256,55,24,39,0.0 +26256,34,14,44,0.0 +26256,74,10,29,0.0 +26257,34,14,33,0.0 +26257,9,97,22,0.0 +26257,53,32.8,32,0.0 +26257,76,18,11,0.0 +26257,60,34,31,0.0 +26257,28,45.6,21,0.0 +26257,27,43.9,48,0.0 +26257,77,13,27,0.0 +26257,12,38,36,0.0 +26257,33,2.5,6,0.0 +26257,17,39,37,0.0 +26257,52,7,49,0.0 +26257,63,43.9,27,0.0 +26257,10,31,42,0.0 +26257,13,6,27,0.0 +26257,5,21.35,29,0.0 +26257,38,263.5,12,0.0 +26257,23,9,49,0.0 +26257,69,36,39,0.0 +26257,35,18,15,0.0 +26257,61,28.5,21,0.0 +26257,66,17,22,0.0 +26257,8,40,25,0.0 +26257,39,18,40,0.0 +26257,59,55,1,0.0 +26257,49,20,27,0.0 +26257,41,9.65,26,0.0 +26257,26,31.23,6,0.0 +26257,73,15,13,0.0 +26257,54,7.45,36,0.0 +26257,32,32,37,0.0 +26257,47,9.5,17,0.0 +26257,25,14,24,0.0 +26257,14,23.25,2,0.0 +26257,50,16.25,33,0.0 +26257,42,14,3,0.0 +26257,18,62.5,32,0.0 +26257,37,26,13,0.0 +26257,30,25.89,31,0.0 +26257,62,49.3,1,0.0 +26257,43,46,2,0.0 +26257,55,24,8,0.0 +26257,45,9.5,27,0.0 +26257,40,18.4,16,0.0 +26257,68,12.5,23,0.0 +26257,2,19,19,0.0 +26257,20,81,46,0.0 +26257,4,22,27,0.0 +26257,46,12,32,0.0 +26257,15,15.5,21,0.0 +26257,64,33.25,14,0.0 +26257,74,10,11,0.0 +26257,24,4.5,13,0.0 +26257,75,7.75,24,0.0 +26257,29,123.79,32,0.0 +26257,11,21,27,0.0 +26257,58,13.25,34,0.0 +26257,6,25,27,0.0 +26257,1,18,46,0.0 +26257,65,21.05,28,0.0 +26257,19,9.2,19,0.0 +26257,22,21,48,0.0 +26257,16,17.45,22,0.0 +26257,67,14,6,0.0 +26257,3,10,36,0.0 +26257,36,19,41,0.0 +26257,56,38,8,0.0 +26257,44,19.45,44,0.0 +26257,70,15,33,0.0 +26257,57,19.5,46,0.0 +26258,45,9.5,10,0.0 +26258,2,19,2,0.0 +26258,71,21.5,44,0.0 +26258,40,18.4,33,0.0 +26258,21,10,41,0.0 +26258,47,9.5,33,0.0 +26258,10,31,49,0.0 +26258,37,26,30,0.0 +26258,50,16.25,35,0.0 +26258,48,12.75,27,0.0 +26258,17,39,7,0.0 +26258,26,31.23,19,0.0 +26258,6,25,4,0.0 +26258,18,62.5,39,0.0 +26258,62,49.3,22,0.0 +26258,3,10,11,0.0 +26258,1,18,3,0.0 +26258,73,15,26,0.0 +26258,43,46,34,0.0 +26258,70,15,23,0.0 +26258,65,21.05,22,0.0 +26258,41,9.65,9,0.0 +26258,54,7.45,49,0.0 +26258,57,19.5,27,0.0 +26258,59,55,5,0.0 +26259,52,7,4,0.0 +26259,41,9.65,24,0.0 +26259,32,32,33,0.0 +26259,30,25.89,23,0.0 +26259,7,30,24,0.0 +26259,46,12,7,0.0 +26259,66,17,35,0.0 +26259,2,19,17,0.0 +26259,54,7.45,14,0.0 +26259,19,9.2,35,0.0 +26259,10,31,36,0.0 +26259,69,36,40,0.0 +26259,17,39,50,0.0 +26259,72,34.8,33,0.0 +26259,35,18,9,0.0 +26259,22,21,47,0.0 +26259,65,21.05,26,0.0 +26259,21,10,45,0.0 +26259,37,26,47,0.0 +26259,8,40,23,0.0 +26259,77,13,34,0.0 +26259,43,46,42,0.0 +26259,60,34,29,0.0 +26259,70,15,20,0.0 +26259,58,13.25,36,0.0 +26259,1,18,8,0.0 +26259,4,22,11,0.0 +26259,67,14,46,0.0 +26259,76,18,24,0.0 +26259,27,43.9,29,0.0 +26259,14,23.25,21,0.0 +26259,73,15,2,0.0 +26259,44,19.45,31,0.0 +26259,23,9,27,0.0 +26259,56,38,1,0.0 +26259,6,25,29,0.0 +26259,36,19,25,0.0 +26259,34,14,32,0.0 +26259,62,49.3,5,0.0 +26259,12,38,21,0.0 +26259,47,9.5,1,0.0 +26259,75,7.75,39,0.0 +26259,59,55,11,0.0 +26259,11,21,41,0.0 +26259,40,18.4,19,0.0 +26259,28,45.6,32,0.0 +26259,63,43.9,20,0.0 +26259,31,12.5,50,0.0 +26259,24,4.5,14,0.0 +26259,13,6,46,0.0 +26259,16,17.45,5,0.0 +26259,61,28.5,50,0.0 +26259,42,14,46,0.0 +26259,38,263.5,33,0.0 +26259,53,32.8,5,0.0 +26259,39,18,40,0.0 +26259,18,62.5,33,0.0 +26259,71,21.5,16,0.0 +26259,45,9.5,8,0.0 +26259,29,123.79,7,0.0 +26259,25,14,32,0.0 +26259,33,2.5,10,0.0 +26259,15,15.5,3,0.0 +26259,57,19.5,37,0.0 +26259,48,12.75,21,0.0 +26259,51,53,17,0.0 +26259,74,10,8,0.0 +26259,20,81,1,0.0 +26260,41,9.65,13,0.0 +26260,30,25.89,16,0.0 +26260,16,17.45,5,0.0 +26260,44,19.45,46,0.0 +26260,59,55,16,0.0 +26260,28,45.6,43,0.0 +26260,24,4.5,30,0.0 +26260,73,15,4,0.0 +26260,35,18,28,0.0 +26260,36,19,26,0.0 +26261,62,49.3,7,0.0 +26261,36,19,43,0.0 +26261,3,10,48,0.0 +26261,28,45.6,20,0.0 +26261,64,33.25,8,0.0 +26261,57,19.5,29,0.0 +26261,40,18.4,30,0.0 +26261,30,25.89,34,0.0 +26261,55,24,2,0.0 +26261,12,38,21,0.0 +26261,51,53,19,0.0 +26261,29,123.79,20,0.0 +26261,71,21.5,11,0.0 +26261,31,12.5,12,0.0 +26261,52,7,21,0.0 +26261,16,17.45,48,0.0 +26261,43,46,1,0.0 +26261,6,25,4,0.0 +26261,9,97,8,0.0 +26261,39,18,21,0.0 +26261,15,15.5,5,0.0 +26261,54,7.45,30,0.0 +26261,42,14,27,0.0 +26261,7,30,44,0.0 +26261,34,14,29,0.0 +26261,19,9.2,15,0.0 +26262,70,15,44,0.0 +26262,25,14,47,0.0 +26262,51,53,29,0.0 +26262,23,9,44,0.0 +26262,12,38,40,0.0 +26262,43,46,4,0.0 +26262,10,31,30,0.0 +26263,70,15,35,0.0 +26263,3,10,46,0.0 +26263,2,19,26,0.0 +26263,77,13,14,0.0 +26263,74,10,18,0.0 +26263,54,7.45,41,0.0 +26263,16,17.45,8,0.0 +26263,10,31,30,0.0 +26263,27,43.9,20,0.0 +26263,68,12.5,42,0.0 +26263,29,123.79,7,0.0 +26263,15,15.5,30,0.0 +26263,9,97,45,0.0 +26263,30,25.89,23,0.0 +26263,25,14,5,0.0 +26263,7,30,15,0.0 +26263,24,4.5,16,0.0 +26263,71,21.5,23,0.0 +26263,4,22,40,0.0 +26263,6,25,48,0.0 +26263,67,14,48,0.0 +26263,43,46,7,0.0 +26263,66,17,40,0.0 +26263,32,32,31,0.0 +26263,23,9,34,0.0 +26263,17,39,28,0.0 +26263,72,34.8,2,0.0 +26263,37,26,18,0.0 +26263,52,7,24,0.0 +26264,50,16.25,41,0.0 +26264,70,15,4,0.0 +26264,45,9.5,13,0.0 +26264,2,19,44,0.0 +26264,43,46,44,0.0 +26264,24,4.5,17,0.0 +26264,27,43.9,24,0.0 +26264,67,14,40,0.0 +26264,72,34.8,8,0.0 +26264,8,40,9,0.0 +26264,18,62.5,44,0.0 +26264,32,32,44,0.0 +26264,30,25.89,19,0.0 +26264,25,14,9,0.0 +26264,69,36,5,0.0 +26264,57,19.5,33,0.0 +26264,26,31.23,31,0.0 +26264,52,7,5,0.0 +26264,66,17,30,0.0 +26264,4,22,25,0.0 +26265,68,12.5,40,0.0 +26265,21,10,15,0.0 +26265,66,17,34,0.0 +26265,53,32.8,43,0.0 +26265,32,32,43,0.0 +26265,5,21.35,26,0.0 +26265,70,15,21,0.0 +26265,42,14,41,0.0 +26265,59,55,20,0.0 +26265,52,7,30,0.0 +26266,65,21.05,12,0.0 +26266,15,15.5,44,0.0 +26266,23,9,24,0.0 +26266,36,19,8,0.0 +26266,58,13.25,37,0.0 +26266,44,19.45,38,0.0 +26266,32,32,35,0.0 +26266,17,39,1,0.0 +26266,12,38,16,0.0 +26266,63,43.9,3,0.0 +26266,55,24,41,0.0 +26266,39,18,38,0.0 +26266,67,14,4,0.0 +26266,8,40,2,0.0 +26266,59,55,9,0.0 +26266,47,9.5,17,0.0 +26266,24,4.5,12,0.0 +26266,2,19,23,0.0 +26266,62,49.3,27,0.0 +26266,61,28.5,44,0.0 +26266,7,30,23,0.0 +26266,66,17,46,0.0 +26266,35,18,24,0.0 +26266,28,45.6,15,0.0 +26266,54,7.45,27,0.0 +26266,76,18,30,0.0 +26266,56,38,32,0.0 +26266,68,12.5,42,0.0 +26266,10,31,8,0.0 +26266,16,17.45,32,0.0 +26266,25,14,46,0.0 +26266,4,22,44,0.0 +26266,26,31.23,8,0.0 +26266,31,12.5,50,0.0 +26266,37,26,43,0.0 +26266,71,21.5,12,0.0 +26266,53,32.8,7,0.0 +26266,9,97,29,0.0 +26266,27,43.9,3,0.0 +26266,48,12.75,13,0.0 +26266,72,34.8,50,0.0 +26266,57,19.5,34,0.0 +26266,34,14,16,0.0 +26266,11,21,33,0.0 +26266,46,12,34,0.0 +26266,33,2.5,48,0.0 +26266,21,10,41,0.0 +26266,29,123.79,43,0.0 +26266,18,62.5,31,0.0 +26266,40,18.4,44,0.0 +26266,41,9.65,16,0.0 +26266,6,25,8,0.0 +26266,30,25.89,35,0.0 +26266,19,9.2,41,0.0 +26266,64,33.25,45,0.0 +26266,22,21,27,0.0 +26266,38,263.5,6,0.0 +26266,45,9.5,47,0.0 +26267,14,23.25,34,0.0 +26267,34,14,1,0.0 +26267,33,2.5,10,0.0 +26267,6,25,26,0.0 +26267,25,14,39,0.0 +26267,40,18.4,3,0.0 +26267,18,62.5,18,0.0 +26267,23,9,42,0.0 +26267,11,21,23,0.0 +26267,68,12.5,1,0.0 +26267,16,17.45,27,0.0 +26267,32,32,32,0.0 +26267,73,15,10,0.0 +26267,46,12,33,0.0 +26267,19,9.2,35,0.0 +26267,71,21.5,28,0.0 +26267,20,81,12,0.0 +26267,44,19.45,29,0.0 +26267,30,25.89,25,0.0 +26267,21,10,24,0.0 +26267,56,38,6,0.0 +26267,41,9.65,18,0.0 +26267,45,9.5,10,0.0 +26267,10,31,41,0.0 +26267,62,49.3,34,0.0 +26267,72,34.8,42,0.0 +26267,37,26,40,0.0 +26267,75,7.75,42,0.0 +26267,60,34,44,0.0 +26267,55,24,36,0.0 +26267,29,123.79,8,0.0 +26267,12,38,16,0.0 +26267,9,97,48,0.0 +26267,53,32.8,5,0.0 +26267,64,33.25,30,0.0 +26267,5,21.35,24,0.0 +26267,22,21,12,0.0 +26267,59,55,28,0.0 +26267,1,18,43,0.0 +26267,43,46,22,0.0 +26267,36,19,43,0.0 +26267,39,18,10,0.0 +26267,61,28.5,19,0.0 +26267,57,19.5,2,0.0 +26267,76,18,46,0.0 +26267,26,31.23,12,0.0 +26267,4,22,31,0.0 +26267,69,36,17,0.0 +26267,63,43.9,17,0.0 +26267,51,53,5,0.0 +26267,52,7,43,0.0 +26267,65,21.05,35,0.0 +26267,50,16.25,29,0.0 +26267,13,6,7,0.0 +26267,27,43.9,49,0.0 +26267,58,13.25,4,0.0 +26267,48,12.75,28,0.0 +26267,66,17,19,0.0 +26267,2,19,32,0.0 +26267,3,10,7,0.0 +26267,70,15,28,0.0 +26267,35,18,8,0.0 +26267,7,30,33,0.0 +26267,49,20,31,0.0 +26268,18,62.5,48,0.0 +26268,71,21.5,4,0.0 +26268,55,24,30,0.0 +26268,44,19.45,34,0.0 +26268,34,14,34,0.0 +26268,8,40,16,0.0 +26268,60,34,41,0.0 +26268,64,33.25,10,0.0 +26268,5,21.35,33,0.0 +26268,72,34.8,40,0.0 +26268,12,38,15,0.0 +26268,41,9.65,33,0.0 +26268,45,9.5,15,0.0 +26268,46,12,4,0.0 +26268,49,20,8,0.0 +26268,22,21,42,0.0 +26268,1,18,13,0.0 +26268,54,7.45,34,0.0 +26268,69,36,42,0.0 +26268,2,19,12,0.0 +26268,62,49.3,8,0.0 +26268,16,17.45,3,0.0 +26268,31,12.5,4,0.0 +26268,17,39,27,0.0 +26268,21,10,7,0.0 +26268,10,31,37,0.0 +26268,19,9.2,38,0.0 +26268,70,15,33,0.0 +26268,48,12.75,38,0.0 +26268,65,21.05,4,0.0 +26268,40,18.4,28,0.0 +26268,76,18,11,0.0 +26269,57,19.5,23,0.0 +26269,2,19,9,0.0 +26269,21,10,6,0.0 +26269,58,13.25,29,0.0 +26269,25,14,42,0.0 +26269,6,25,24,0.0 +26269,11,21,34,0.0 +26269,67,14,15,0.0 +26270,10,31,35,0.0 +26270,55,24,22,0.0 +26270,9,97,43,0.0 +26270,58,13.25,10,0.0 +26270,37,26,7,0.0 +26270,20,81,19,0.0 +26270,77,13,26,0.0 +26270,52,7,24,0.0 +26270,33,2.5,25,0.0 +26271,43,46,21,0.0 +26271,75,7.75,47,0.0 +26271,76,18,16,0.0 +26271,51,53,43,0.0 +26271,39,18,34,0.0 +26271,47,9.5,9,0.0 +26271,38,263.5,3,0.0 +26271,67,14,6,0.0 +26271,41,9.65,21,0.0 +26271,44,19.45,14,0.0 +26271,40,18.4,42,0.0 +26271,53,32.8,38,0.0 +26271,13,6,45,0.0 +26272,22,21,3,0.0 +26272,69,36,2,0.0 +26272,39,18,16,0.0 +26272,34,14,31,0.0 +26272,36,19,26,0.0 +26272,33,2.5,38,0.0 +26272,21,10,8,0.0 +26272,51,53,24,0.0 +26272,48,12.75,38,0.0 +26272,41,9.65,13,0.0 +26272,75,7.75,35,0.0 +26272,55,24,35,0.0 +26272,7,30,38,0.0 +26272,71,21.5,44,0.0 +26272,61,28.5,30,0.0 +26272,2,19,5,0.0 +26272,66,17,7,0.0 +26272,76,18,45,0.0 +26272,28,45.6,38,0.0 +26272,44,19.45,17,0.0 +26272,46,12,47,0.0 +26272,49,20,44,0.0 +26273,72,34.8,41,0.0 +26273,69,36,21,0.0 +26273,45,9.5,37,0.0 +26273,56,38,36,0.0 +26273,55,24,37,0.0 +26273,39,18,4,0.0 +26273,66,17,29,0.0 +26273,32,32,22,0.0 +26273,16,17.45,15,0.0 +26273,50,16.25,36,0.0 +26273,63,43.9,50,0.0 +26273,73,15,40,0.0 +26273,31,12.5,47,0.0 +26273,12,38,6,0.0 +26273,8,40,5,0.0 +26273,30,25.89,41,0.0 +26273,42,14,10,0.0 +26273,9,97,31,0.0 +26273,67,14,37,0.0 +26273,62,49.3,29,0.0 +26273,22,21,27,0.0 +26273,59,55,21,0.0 +26273,3,10,39,0.0 +26273,29,123.79,45,0.0 +26273,15,15.5,16,0.0 +26273,5,21.35,15,0.0 +26273,58,13.25,16,0.0 +26273,4,22,26,0.0 +26273,43,46,50,0.0 +26273,44,19.45,38,0.0 +26273,18,62.5,15,0.0 +26273,57,19.5,2,0.0 +26273,53,32.8,35,0.0 +26273,61,28.5,35,0.0 +26273,10,31,23,0.0 +26273,20,81,15,0.0 +26273,33,2.5,19,0.0 +26273,19,9.2,21,0.0 +26273,38,263.5,48,0.0 +26273,6,25,35,0.0 +26273,77,13,35,0.0 +26273,65,21.05,36,0.0 +26273,40,18.4,42,0.0 +26273,23,9,31,0.0 +26273,26,31.23,43,0.0 +26273,36,19,49,0.0 +26273,34,14,21,0.0 +26273,7,30,6,0.0 +26273,52,7,7,0.0 +26273,54,7.45,26,0.0 +26273,51,53,33,0.0 +26273,74,10,19,0.0 +26273,24,4.5,40,0.0 +26273,25,14,41,0.0 +26273,37,26,40,0.0 +26273,76,18,35,0.0 +26273,2,19,11,0.0 +26273,17,39,47,0.0 +26273,70,15,7,0.0 +26273,27,43.9,36,0.0 +26273,60,34,37,0.0 +26273,71,21.5,8,0.0 +26273,13,6,12,0.0 +26273,28,45.6,2,0.0 +26273,64,33.25,18,0.0 +26274,20,81,46,0.0 +26274,71,21.5,30,0.0 +26274,59,55,7,0.0 +26274,30,25.89,34,0.0 +26274,6,25,5,0.0 +26274,2,19,13,0.0 +26274,74,10,48,0.0 +26274,76,18,38,0.0 +26274,39,18,24,0.0 +26274,46,12,47,0.0 +26274,23,9,22,0.0 +26274,60,34,6,0.0 +26274,68,12.5,28,0.0 +26274,27,43.9,38,0.0 +26274,64,33.25,36,0.0 +26274,40,18.4,25,0.0 +26274,3,10,31,0.0 +26274,24,4.5,17,0.0 +26274,75,7.75,44,0.0 +26274,42,14,42,0.0 +26274,43,46,16,0.0 +26274,5,21.35,4,0.0 +26274,36,19,41,0.0 +26274,29,123.79,4,0.0 +26274,73,15,10,0.0 +26274,25,14,36,0.0 +26274,49,20,19,0.0 +26274,72,34.8,25,0.0 +26274,22,21,39,0.0 +26274,9,97,22,0.0 +26274,66,17,20,0.0 +26274,54,7.45,25,0.0 +26274,1,18,37,0.0 +26274,47,9.5,49,0.0 +26274,33,2.5,3,0.0 +26274,13,6,7,0.0 +26274,28,45.6,27,0.0 +26274,31,12.5,32,0.0 +26274,50,16.25,44,0.0 +26274,62,49.3,14,0.0 +26274,26,31.23,5,0.0 +26274,7,30,5,0.0 +26274,41,9.65,10,0.0 +26274,19,9.2,3,0.0 +26274,21,10,47,0.0 +26274,57,19.5,4,0.0 +26274,48,12.75,29,0.0 +26274,56,38,46,0.0 +26274,45,9.5,6,0.0 +26274,18,62.5,5,0.0 +26274,38,263.5,12,0.0 +26274,67,14,41,0.0 +26274,35,18,12,0.0 +26274,70,15,46,0.0 +26274,53,32.8,13,0.0 +26275,10,31,41,0.0 +26275,15,15.5,33,0.0 +26275,7,30,45,0.0 +26275,71,21.5,15,0.0 +26275,9,97,41,0.0 +26275,24,4.5,10,0.0 +26275,42,14,8,0.0 +26275,59,55,17,0.0 +26275,53,32.8,41,0.0 +26275,69,36,26,0.0 +26275,14,23.25,27,0.0 +26275,70,15,44,0.0 +26275,13,6,16,0.0 +26275,47,9.5,27,0.0 +26275,52,7,1,0.0 +26275,48,12.75,4,0.0 +26275,18,62.5,24,0.0 +26275,63,43.9,11,0.0 +26275,19,9.2,1,0.0 +26275,17,39,4,0.0 +26275,23,9,6,0.0 +26275,62,49.3,34,0.0 +26275,29,123.79,48,0.0 +26275,44,19.45,25,0.0 +26275,57,19.5,39,0.0 +26275,65,21.05,32,0.0 +26275,75,7.75,9,0.0 +26276,39,18,12,0.0 +26276,77,13,12,0.0 +26276,28,45.6,27,0.0 +26276,29,123.79,38,0.0 +26276,23,9,42,0.0 +26276,59,55,40,0.0 +26276,18,62.5,32,0.0 +26276,41,9.65,1,0.0 +26276,57,19.5,9,0.0 +26276,8,40,40,0.0 +26276,38,263.5,47,0.0 +26276,17,39,35,0.0 +26276,73,15,6,0.0 +26276,61,28.5,37,0.0 +26276,50,16.25,47,0.0 +26276,16,17.45,19,0.0 +26276,45,9.5,5,0.0 +26276,6,25,20,0.0 +26276,13,6,16,0.0 +26276,51,53,27,0.0 +26276,3,10,1,0.0 +26276,21,10,36,0.0 +26276,63,43.9,19,0.0 +26276,53,32.8,3,0.0 +26276,25,14,40,0.0 +26276,52,7,30,0.0 +26276,67,14,6,0.0 +26276,5,21.35,16,0.0 +26276,71,21.5,20,0.0 +26276,30,25.89,19,0.0 +26276,64,33.25,15,0.0 +26276,58,13.25,4,0.0 +26276,2,19,22,0.0 +26276,37,26,22,0.0 +26276,22,21,41,0.0 +26276,27,43.9,19,0.0 +26276,31,12.5,27,0.0 +26276,20,81,24,0.0 +26276,7,30,9,0.0 +26276,1,18,16,0.0 +26276,75,7.75,27,0.0 +26276,72,34.8,1,0.0 +26276,70,15,46,0.0 +26276,40,18.4,14,0.0 +26276,42,14,1,0.0 +26276,54,7.45,23,0.0 +26276,44,19.45,13,0.0 +26276,33,2.5,38,0.0 +26276,14,23.25,38,0.0 +26276,10,31,28,0.0 +26276,24,4.5,12,0.0 +26276,47,9.5,8,0.0 +26276,69,36,48,0.0 +26276,26,31.23,32,0.0 +26276,15,15.5,32,0.0 +26276,32,32,43,0.0 +26276,48,12.75,26,0.0 +26276,68,12.5,5,0.0 +26276,9,97,43,0.0 +26276,46,12,50,0.0 +26276,65,21.05,35,0.0 +26276,35,18,47,0.0 +26276,62,49.3,9,0.0 +26276,11,21,27,0.0 +26276,12,38,26,0.0 +26276,55,24,39,0.0 +26276,4,22,46,0.0 +26276,76,18,13,0.0 +26276,34,14,18,0.0 +26276,36,19,15,0.0 +26276,66,17,43,0.0 +26277,9,97,32,0.0 +26277,18,62.5,29,0.0 +26277,36,19,47,0.0 +26277,54,7.45,28,0.0 +26277,51,53,19,0.0 +26277,32,32,39,0.0 +26277,7,30,17,0.0 +26277,57,19.5,19,0.0 +26277,66,17,24,0.0 +26277,75,7.75,24,0.0 +26277,1,18,37,0.0 +26277,56,38,6,0.0 +26277,53,32.8,46,0.0 +26277,35,18,31,0.0 +26277,50,16.25,36,0.0 +26277,67,14,50,0.0 +26277,71,21.5,11,0.0 +26277,64,33.25,3,0.0 +26277,68,12.5,9,0.0 +26277,26,31.23,36,0.0 +26277,28,45.6,40,0.0 +26277,60,34,44,0.0 +26277,63,43.9,17,0.0 +26277,65,21.05,32,0.0 +26277,11,21,26,0.0 +26277,58,13.25,26,0.0 +26277,23,9,39,0.0 +26277,74,10,25,0.0 +26277,12,38,49,0.0 +26277,31,12.5,37,0.0 +26277,77,13,36,0.0 +26277,22,21,13,0.0 +26277,20,81,18,0.0 +26277,29,123.79,39,0.0 +26277,44,19.45,43,0.0 +26277,16,17.45,32,0.0 +26277,25,14,31,0.0 +26277,41,9.65,18,0.0 +26277,73,15,33,0.0 +26277,33,2.5,47,0.0 +26277,61,28.5,7,0.0 +26277,45,9.5,29,0.0 +26277,40,18.4,49,0.0 +26277,15,15.5,30,0.0 +26277,19,9.2,43,0.0 +26277,47,9.5,8,0.0 +26277,39,18,16,0.0 +26277,37,26,21,0.0 +26277,49,20,49,0.0 +26277,8,40,29,0.0 +26277,6,25,32,0.0 +26278,1,18,45,0.0 +26278,57,19.5,43,0.0 +26278,10,31,28,0.0 +26278,45,9.5,15,0.0 +26278,12,38,7,0.0 +26278,33,2.5,24,0.0 +26278,9,97,49,0.0 +26278,41,9.65,34,0.0 +26278,27,43.9,43,0.0 +26278,63,43.9,25,0.0 +26278,23,9,48,0.0 +26278,43,46,46,0.0 +26278,38,263.5,30,0.0 +26278,25,14,26,0.0 +26278,39,18,15,0.0 +26278,52,7,7,0.0 +26278,46,12,15,0.0 +26278,15,15.5,44,0.0 +26278,56,38,32,0.0 +26278,13,6,1,0.0 +26278,19,9.2,14,0.0 +26278,62,49.3,22,0.0 +26278,30,25.89,17,0.0 +26278,11,21,14,0.0 +26278,20,81,3,0.0 +26278,5,21.35,2,0.0 +26278,59,55,26,0.0 +26278,75,7.75,42,0.0 +26278,67,14,19,0.0 +26278,58,13.25,14,0.0 +26278,26,31.23,26,0.0 +26278,60,34,16,0.0 +26278,68,12.5,44,0.0 +26278,31,12.5,6,0.0 +26278,3,10,47,0.0 +26278,2,19,27,0.0 +26278,24,4.5,33,0.0 +26278,61,28.5,12,0.0 +26278,72,34.8,31,0.0 +26278,74,10,32,0.0 +26278,21,10,25,0.0 +26278,53,32.8,12,0.0 +26278,54,7.45,36,0.0 +26278,16,17.45,9,0.0 +26278,29,123.79,20,0.0 +26278,73,15,48,0.0 +26278,42,14,10,0.0 +26278,69,36,8,0.0 +26279,31,12.5,6,0.0 +26279,75,7.75,16,0.0 +26279,71,21.5,37,0.0 +26279,59,55,24,0.0 +26280,55,24,2,0.0 +26280,26,31.23,26,0.0 +26280,30,25.89,17,0.0 +26280,42,14,21,0.0 +26280,48,12.75,34,0.0 +26280,66,17,24,0.0 +26280,46,12,23,0.0 +26280,11,21,39,0.0 +26280,57,19.5,33,0.0 +26280,16,17.45,8,0.0 +26280,24,4.5,10,0.0 +26280,60,34,46,0.0 +26280,56,38,23,0.0 +26280,6,25,22,0.0 +26280,37,26,24,0.0 +26280,27,43.9,39,0.0 +26280,68,12.5,47,0.0 +26280,29,123.79,23,0.0 +26280,76,18,30,0.0 +26281,69,36,1,0.0 +26281,10,31,13,0.0 +26281,33,2.5,35,0.0 +26281,12,38,34,0.0 +26281,53,32.8,13,0.0 +26281,7,30,26,0.0 +26281,54,7.45,25,0.0 +26281,37,26,45,0.0 +26281,45,9.5,38,0.0 +26281,36,19,44,0.0 +26281,1,18,32,0.0 +26281,39,18,27,0.0 +26281,6,25,23,0.0 +26281,35,18,15,0.0 +26281,29,123.79,16,0.0 +26281,41,9.65,31,0.0 +26281,61,28.5,8,0.0 +26281,58,13.25,22,0.0 +26281,77,13,24,0.0 +26281,18,62.5,44,0.0 +26281,30,25.89,37,0.0 +26281,70,15,24,0.0 +26281,68,12.5,38,0.0 +26281,59,55,30,0.0 +26281,44,19.45,18,0.0 +26281,72,34.8,10,0.0 +26281,24,4.5,40,0.0 +26281,62,49.3,36,0.0 +26281,75,7.75,50,0.0 +26281,67,14,2,0.0 +26281,47,9.5,13,0.0 +26281,13,6,35,0.0 +26281,17,39,50,0.0 +26281,2,19,19,0.0 +26281,20,81,6,0.0 +26281,5,21.35,23,0.0 +26281,9,97,2,0.0 +26281,74,10,36,0.0 +26281,51,53,24,0.0 +26281,14,23.25,36,0.0 +26281,4,22,8,0.0 +26281,8,40,49,0.0 +26281,23,9,13,0.0 +26281,66,17,31,0.0 +26281,11,21,21,0.0 +26281,21,10,40,0.0 +26281,19,9.2,18,0.0 +26281,56,38,38,0.0 +26281,34,14,13,0.0 +26281,26,31.23,37,0.0 +26281,60,34,48,0.0 +26281,43,46,12,0.0 +26281,64,33.25,30,0.0 +26281,25,14,1,0.0 +26281,16,17.45,25,0.0 +26281,42,14,31,0.0 +26281,48,12.75,36,0.0 +26281,31,12.5,31,0.0 +26281,63,43.9,2,0.0 +26281,73,15,36,0.0 +26281,65,21.05,42,0.0 +26281,52,7,13,0.0 +26281,22,21,23,0.0 +26281,76,18,6,0.0 +26281,27,43.9,23,0.0 +26281,32,32,21,0.0 +26281,3,10,2,0.0 +26281,50,16.25,5,0.0 +26281,49,20,1,0.0 +26281,71,21.5,18,0.0 +26281,28,45.6,19,0.0 +26281,38,263.5,48,0.0 +26281,57,19.5,36,0.0 +26281,55,24,26,0.0 +26281,40,18.4,42,0.0 +26281,15,15.5,19,0.0 +26281,46,12,9,0.0 +26282,75,7.75,47,0.0 +26282,56,38,14,0.0 +26282,18,62.5,25,0.0 +26282,1,18,21,0.0 +26282,76,18,13,0.0 +26282,67,14,20,0.0 +26282,13,6,29,0.0 +26282,6,25,38,0.0 +26282,17,39,30,0.0 +26282,72,34.8,24,0.0 +26282,11,21,13,0.0 +26282,9,97,42,0.0 +26282,39,18,2,0.0 +26282,50,16.25,23,0.0 +26282,2,19,19,0.0 +26282,71,21.5,36,0.0 +26282,38,263.5,13,0.0 +26282,27,43.9,28,0.0 +26282,33,2.5,50,0.0 +26282,19,9.2,8,0.0 +26282,49,20,34,0.0 +26283,71,21.5,37,0.0 +26283,50,16.25,40,0.0 +26283,72,34.8,13,0.0 +26283,55,24,18,0.0 +26283,63,43.9,28,0.0 +26283,28,45.6,16,0.0 +26283,16,17.45,4,0.0 +26283,32,32,49,0.0 +26283,11,21,14,0.0 +26283,38,263.5,35,0.0 +26283,29,123.79,2,0.0 +26283,54,7.45,28,0.0 +26283,77,13,3,0.0 +26283,53,32.8,5,0.0 +26283,2,19,17,0.0 +26283,21,10,39,0.0 +26283,25,14,32,0.0 +26283,49,20,33,0.0 +26283,41,9.65,21,0.0 +26283,51,53,30,0.0 +26283,26,31.23,29,0.0 +26284,42,14,21,0.0 +26284,62,49.3,17,0.0 +26284,67,14,2,0.0 +26284,47,9.5,3,0.0 +26284,77,13,34,0.0 +26284,52,7,19,0.0 +26284,9,97,43,0.0 +26284,11,21,1,0.0 +26284,36,19,27,0.0 +26284,18,62.5,49,0.0 +26284,74,10,10,0.0 +26284,14,23.25,35,0.0 +26284,13,6,50,0.0 +26284,27,43.9,9,0.0 +26284,68,12.5,37,0.0 +26284,8,40,46,0.0 +26284,28,45.6,25,0.0 +26284,54,7.45,3,0.0 +26284,43,46,5,0.0 +26284,22,21,28,0.0 +26284,58,13.25,14,0.0 +26284,1,18,38,0.0 +26284,64,33.25,43,0.0 +26284,7,30,19,0.0 +26284,55,24,44,0.0 +26284,39,18,38,0.0 +26284,5,21.35,34,0.0 +26284,19,9.2,25,0.0 +26284,69,36,41,0.0 +26284,46,12,18,0.0 +26284,66,17,15,0.0 +26284,49,20,37,0.0 +26284,17,39,32,0.0 +26284,32,32,49,0.0 +26284,72,34.8,9,0.0 +26284,60,34,8,0.0 +26284,3,10,32,0.0 +26284,35,18,45,0.0 +26284,20,81,8,0.0 +26284,61,28.5,26,0.0 +26284,48,12.75,1,0.0 +26284,44,19.45,25,0.0 +26284,71,21.5,38,0.0 +26285,16,17.45,13,0.0 +26285,32,32,22,0.0 +26285,11,21,1,0.0 +26285,9,97,23,0.0 +26285,24,4.5,45,0.0 +26285,74,10,14,0.0 +26285,25,14,37,0.0 +26285,19,9.2,8,0.0 +26285,37,26,28,0.0 +26285,67,14,47,0.0 +26285,42,14,47,0.0 +26285,53,32.8,6,0.0 +26285,17,39,24,0.0 +26285,15,15.5,9,0.0 +26285,64,33.25,8,0.0 +26285,69,36,44,0.0 +26285,29,123.79,12,0.0 +26285,58,13.25,14,0.0 +26285,62,49.3,34,0.0 +26285,39,18,45,0.0 +26285,45,9.5,34,0.0 +26285,6,25,18,0.0 +26285,48,12.75,3,0.0 +26285,47,9.5,15,0.0 +26285,57,19.5,6,0.0 +26285,14,23.25,11,0.0 +26285,60,34,17,0.0 +26285,20,81,21,0.0 +26285,50,16.25,11,0.0 +26285,75,7.75,38,0.0 +26285,22,21,39,0.0 +26285,49,20,6,0.0 +26285,35,18,21,0.0 +26285,77,13,26,0.0 +26285,21,10,49,0.0 +26285,66,17,31,0.0 +26286,47,9.5,11,0.0 +26286,70,15,34,0.0 +26286,18,62.5,4,0.0 +26286,63,43.9,35,0.0 +26286,19,9.2,27,0.0 +26286,33,2.5,25,0.0 +26286,52,7,14,0.0 +26286,48,12.75,50,0.0 +26286,73,15,15,0.0 +26286,54,7.45,10,0.0 +26286,16,17.45,23,0.0 +26286,21,10,40,0.0 +26286,56,38,4,0.0 +26287,3,10,50,0.0 +26287,7,30,43,0.0 +26287,18,62.5,13,0.0 +26287,23,9,46,0.0 +26287,27,43.9,17,0.0 +26287,63,43.9,9,0.0 +26287,28,45.6,33,0.0 +26287,30,25.89,26,0.0 +26287,55,24,5,0.0 +26287,58,13.25,17,0.0 +26287,53,32.8,12,0.0 +26287,59,55,47,0.0 +26287,17,39,32,0.0 +26287,73,15,34,0.0 +26287,8,40,2,0.0 +26287,13,6,16,0.0 +26287,48,12.75,18,0.0 +26287,9,97,43,0.0 +26287,49,20,9,0.0 +26287,74,10,36,0.0 +26287,37,26,30,0.0 +26287,22,21,40,0.0 +26287,10,31,31,0.0 +26287,40,18.4,10,0.0 +26287,32,32,35,0.0 +26287,4,22,23,0.0 +26287,14,23.25,5,0.0 +26287,43,46,12,0.0 +26287,51,53,22,0.0 +26287,39,18,28,0.0 +26287,70,15,10,0.0 +26287,41,9.65,18,0.0 +26287,75,7.75,3,0.0 +26287,44,19.45,20,0.0 +26287,56,38,43,0.0 +26287,38,263.5,1,0.0 +26287,45,9.5,27,0.0 +26287,62,49.3,41,0.0 +26287,57,19.5,8,0.0 +26287,11,21,19,0.0 +26287,25,14,33,0.0 +26287,42,14,25,0.0 +26287,36,19,36,0.0 +26287,19,9.2,22,0.0 +26287,66,17,33,0.0 +26287,61,28.5,7,0.0 +26287,1,18,42,0.0 +26287,72,34.8,35,0.0 +26287,52,7,5,0.0 +26287,76,18,47,0.0 +26287,24,4.5,9,0.0 +26287,65,21.05,45,0.0 +26287,67,14,8,0.0 +26287,33,2.5,26,0.0 +26287,31,12.5,16,0.0 +26287,60,34,38,0.0 +26287,71,21.5,2,0.0 +26287,21,10,34,0.0 +26287,12,38,10,0.0 +26287,77,13,41,0.0 +26287,2,19,6,0.0 +26287,64,33.25,50,0.0 +26287,35,18,28,0.0 +26287,29,123.79,36,0.0 +26288,33,2.5,23,0.0 +26288,75,7.75,9,0.0 +26288,2,19,3,0.0 +26288,51,53,11,0.0 +26288,43,46,18,0.0 +26288,20,81,12,0.0 +26288,4,22,27,0.0 +26288,14,23.25,17,0.0 +26288,39,18,15,0.0 +26288,59,55,17,0.0 +26288,62,49.3,45,0.0 +26288,40,18.4,9,0.0 +26288,47,9.5,41,0.0 +26288,15,15.5,45,0.0 +26288,27,43.9,39,0.0 +26288,67,14,10,0.0 +26288,18,62.5,23,0.0 +26288,37,26,36,0.0 +26288,63,43.9,33,0.0 +26288,50,16.25,18,0.0 +26288,60,34,3,0.0 +26288,31,12.5,28,0.0 +26288,29,123.79,6,0.0 +26288,8,40,5,0.0 +26288,64,33.25,3,0.0 +26288,16,17.45,27,0.0 +26288,53,32.8,3,0.0 +26288,36,19,44,0.0 +26288,26,31.23,15,0.0 +26288,28,45.6,30,0.0 +26288,77,13,32,0.0 +26288,66,17,50,0.0 +26288,44,19.45,30,0.0 +26288,70,15,44,0.0 +26288,55,24,4,0.0 +26288,1,18,38,0.0 +26288,10,31,39,0.0 +26288,49,20,43,0.0 +26288,6,25,27,0.0 +26288,34,14,17,0.0 +26288,76,18,3,0.0 +26288,17,39,49,0.0 +26288,24,4.5,20,0.0 +26288,52,7,45,0.0 +26288,38,263.5,43,0.0 +26288,69,36,24,0.0 +26288,21,10,8,0.0 +26289,35,18,38,0.0 +26289,55,24,4,0.0 +26289,22,21,28,0.0 +26289,19,9.2,35,0.0 +26289,25,14,16,0.0 +26289,74,10,20,0.0 +26289,65,21.05,23,0.0 +26289,37,26,2,0.0 +26289,58,13.25,1,0.0 +26289,2,19,13,0.0 +26289,33,2.5,33,0.0 +26289,45,9.5,18,0.0 +26289,27,43.9,14,0.0 +26289,72,34.8,4,0.0 +26289,34,14,45,0.0 +26289,54,7.45,14,0.0 +26289,71,21.5,37,0.0 +26289,68,12.5,40,0.0 +26289,5,21.35,15,0.0 +26289,26,31.23,10,0.0 +26290,45,9.5,11,0.0 +26290,8,40,11,0.0 +26290,9,97,8,0.0 +26290,69,36,41,0.0 +26290,59,55,35,0.0 +26290,38,263.5,21,0.0 +26290,31,12.5,18,0.0 +26290,40,18.4,45,0.0 +26290,4,22,12,0.0 +26290,58,13.25,24,0.0 +26290,16,17.45,5,0.0 +26290,22,21,2,0.0 +26290,27,43.9,49,0.0 +26290,57,19.5,39,0.0 +26290,46,12,12,0.0 +26290,13,6,28,0.0 +26290,7,30,30,0.0 +26290,55,24,32,0.0 +26290,28,45.6,16,0.0 +26290,49,20,35,0.0 +26290,74,10,44,0.0 +26290,50,16.25,30,0.0 +26290,23,9,28,0.0 +26290,24,4.5,49,0.0 +26290,53,32.8,46,0.0 +26290,15,15.5,16,0.0 +26290,64,33.25,18,0.0 +26290,73,15,1,0.0 +26290,75,7.75,40,0.0 +26290,70,15,41,0.0 +26290,36,19,1,0.0 +26290,68,12.5,21,0.0 +26290,10,31,27,0.0 +26290,48,12.75,20,0.0 +26290,5,21.35,19,0.0 +26290,39,18,4,0.0 +26290,66,17,2,0.0 +26290,2,19,23,0.0 +26290,34,14,27,0.0 +26290,44,19.45,23,0.0 +26290,21,10,12,0.0 +26290,67,14,43,0.0 +26290,41,9.65,14,0.0 +26290,76,18,37,0.0 +26290,62,49.3,32,0.0 +26291,74,10,33,0.0 +26291,17,39,32,0.0 +26291,45,9.5,32,0.0 +26291,53,32.8,34,0.0 +26291,13,6,31,0.0 +26291,46,12,33,0.0 +26291,3,10,15,0.0 +26291,69,36,33,0.0 +26291,27,43.9,48,0.0 +26291,54,7.45,26,0.0 +26291,73,15,21,0.0 +26291,55,24,27,0.0 +26291,20,81,9,0.0 +26291,19,9.2,20,0.0 +26291,60,34,26,0.0 +26291,12,38,50,0.0 +26291,7,30,27,0.0 +26291,25,14,8,0.0 +26291,9,97,37,0.0 +26291,37,26,7,0.0 +26291,8,40,23,0.0 +26291,24,4.5,50,0.0 +26291,56,38,39,0.0 +26291,62,49.3,2,0.0 +26291,68,12.5,46,0.0 +26291,26,31.23,28,0.0 +26291,4,22,45,0.0 +26291,18,62.5,30,0.0 +26291,52,7,13,0.0 +26291,67,14,10,0.0 +26291,16,17.45,44,0.0 +26291,30,25.89,1,0.0 +26291,35,18,6,0.0 +26291,51,53,21,0.0 +26291,10,31,46,0.0 +26291,33,2.5,17,0.0 +26291,31,12.5,49,0.0 +26291,63,43.9,45,0.0 +26291,21,10,44,0.0 +26291,71,21.5,20,0.0 +26291,22,21,47,0.0 +26291,57,19.5,19,0.0 +26291,14,23.25,4,0.0 +26291,75,7.75,1,0.0 +26291,6,25,11,0.0 +26291,70,15,38,0.0 +26292,50,16.25,25,0.0 +26292,46,12,48,0.0 +26292,12,38,11,0.0 +26292,36,19,6,0.0 +26292,45,9.5,34,0.0 +26292,69,36,45,0.0 +26292,26,31.23,27,0.0 +26292,32,32,45,0.0 +26292,40,18.4,4,0.0 +26292,56,38,7,0.0 +26292,67,14,10,0.0 +26292,27,43.9,43,0.0 +26292,48,12.75,2,0.0 +26292,54,7.45,4,0.0 +26292,70,15,7,0.0 +26292,61,28.5,47,0.0 +26292,52,7,31,0.0 +26292,63,43.9,30,0.0 +26292,19,9.2,30,0.0 +26292,66,17,3,0.0 +26292,65,21.05,16,0.0 +26292,8,40,15,0.0 +26292,24,4.5,34,0.0 +26292,55,24,19,0.0 +26292,76,18,34,0.0 +26292,5,21.35,44,0.0 +26292,18,62.5,48,0.0 +26292,77,13,34,0.0 +26292,13,6,31,0.0 +26292,34,14,1,0.0 +26292,75,7.75,28,0.0 +26292,58,13.25,35,0.0 +26292,1,18,10,0.0 +26292,41,9.65,44,0.0 +26292,16,17.45,39,0.0 +26292,29,123.79,49,0.0 +26292,15,15.5,31,0.0 +26292,22,21,21,0.0 +26292,2,19,3,0.0 +26292,60,34,22,0.0 +26292,10,31,35,0.0 +26293,25,14,36,0.0 +26293,73,15,25,0.0 +26293,11,21,38,0.0 +26293,18,62.5,42,0.0 +26293,2,19,45,0.0 +26293,30,25.89,21,0.0 +26293,9,97,31,0.0 +26293,61,28.5,23,0.0 +26293,32,32,2,0.0 +26293,67,14,12,0.0 +26293,19,9.2,22,0.0 +26293,33,2.5,16,0.0 +26293,37,26,4,0.0 +26293,62,49.3,9,0.0 +26293,65,21.05,47,0.0 +26293,12,38,37,0.0 +26293,28,45.6,31,0.0 +26293,54,7.45,47,0.0 +26293,50,16.25,46,0.0 +26293,76,18,25,0.0 +26293,71,21.5,18,0.0 +26293,31,12.5,11,0.0 +26293,42,14,34,0.0 +26293,69,36,38,0.0 +26293,13,6,21,0.0 +26293,52,7,6,0.0 +26293,48,12.75,32,0.0 +26293,44,19.45,30,0.0 +26293,75,7.75,16,0.0 +26293,66,17,48,0.0 +26293,8,40,36,0.0 +26293,74,10,8,0.0 +26293,3,10,13,0.0 +26293,27,43.9,9,0.0 +26293,41,9.65,26,0.0 +26293,47,9.5,50,0.0 +26293,55,24,25,0.0 +26293,23,9,2,0.0 +26293,56,38,31,0.0 +26293,77,13,35,0.0 +26293,6,25,47,0.0 +26293,57,19.5,42,0.0 +26293,40,18.4,47,0.0 +26293,7,30,21,0.0 +26293,46,12,24,0.0 +26293,59,55,4,0.0 +26293,26,31.23,43,0.0 +26293,45,9.5,18,0.0 +26293,60,34,50,0.0 +26293,10,31,26,0.0 +26293,51,53,36,0.0 +26293,35,18,47,0.0 +26293,15,15.5,39,0.0 +26293,17,39,19,0.0 +26293,1,18,27,0.0 +26293,39,18,50,0.0 +26293,14,23.25,42,0.0 +26293,20,81,28,0.0 +26293,38,263.5,17,0.0 +26293,70,15,9,0.0 +26293,16,17.45,36,0.0 +26293,21,10,50,0.0 +26293,43,46,1,0.0 +26293,49,20,44,0.0 +26293,36,19,28,0.0 +26293,58,13.25,42,0.0 +26293,5,21.35,24,0.0 +26293,29,123.79,42,0.0 +26294,71,21.5,43,0.0 +26294,7,30,15,0.0 +26294,36,19,12,0.0 +26294,24,4.5,14,0.0 +26294,20,81,17,0.0 +26294,13,6,37,0.0 +26294,38,263.5,21,0.0 +26294,6,25,10,0.0 +26294,47,9.5,48,0.0 +26294,68,12.5,19,0.0 +26294,42,14,46,0.0 +26294,72,34.8,19,0.0 +26294,19,9.2,7,0.0 +26294,61,28.5,36,0.0 +26294,74,10,21,0.0 +26294,54,7.45,39,0.0 +26294,31,12.5,30,0.0 +26294,70,15,21,0.0 +26294,32,32,30,0.0 +26294,58,13.25,19,0.0 +26294,15,15.5,4,0.0 +26294,56,38,2,0.0 +26294,12,38,46,0.0 +26294,26,31.23,24,0.0 +26294,21,10,28,0.0 +26294,9,97,23,0.0 +26294,22,21,5,0.0 +26294,52,7,4,0.0 +26294,63,43.9,39,0.0 +26294,50,16.25,30,0.0 +26294,67,14,45,0.0 +26294,60,34,42,0.0 +26294,35,18,10,0.0 +26294,5,21.35,11,0.0 +26294,3,10,30,0.0 +26294,40,18.4,7,0.0 +26294,76,18,19,0.0 +26294,33,2.5,34,0.0 +26294,41,9.65,6,0.0 +26294,62,49.3,35,0.0 +26294,2,19,45,0.0 +26294,34,14,18,0.0 +26294,45,9.5,50,0.0 +26294,29,123.79,48,0.0 +26294,49,20,43,0.0 +26294,25,14,44,0.0 +26294,39,18,43,0.0 +26294,16,17.45,27,0.0 +26294,57,19.5,30,0.0 +26294,27,43.9,18,0.0 +26294,8,40,4,0.0 +26294,11,21,47,0.0 +26294,73,15,34,0.0 +26294,44,19.45,13,0.0 +26294,23,9,44,0.0 +26294,46,12,17,0.0 +26294,51,53,37,0.0 +26294,4,22,33,0.0 +26294,48,12.75,20,0.0 +26294,1,18,14,0.0 +26294,53,32.8,38,0.0 +26294,43,46,16,0.0 +26294,14,23.25,3,0.0 +26294,64,33.25,33,0.0 +26295,19,9.2,16,0.0 +26295,17,39,16,0.0 +26295,42,14,18,0.0 +26295,24,4.5,45,0.0 +26295,53,32.8,39,0.0 +26295,38,263.5,15,0.0 +26295,10,31,48,0.0 +26295,54,7.45,43,0.0 +26295,14,23.25,45,0.0 +26295,59,55,42,0.0 +26295,62,49.3,20,0.0 +26295,66,17,26,0.0 +26295,70,15,15,0.0 +26295,22,21,48,0.0 +26295,67,14,41,0.0 +26295,33,2.5,2,0.0 +26295,4,22,42,0.0 +26295,44,19.45,49,0.0 +26295,76,18,28,0.0 +26295,52,7,4,0.0 +26295,60,34,29,0.0 +26295,8,40,27,0.0 +26295,35,18,6,0.0 +26295,58,13.25,17,0.0 +26295,68,12.5,46,0.0 +26295,71,21.5,29,0.0 +26295,65,21.05,22,0.0 +26295,57,19.5,47,0.0 +26295,43,46,47,0.0 +26295,20,81,13,0.0 +26295,50,16.25,2,0.0 +26295,18,62.5,17,0.0 +26295,64,33.25,30,0.0 +26295,36,19,9,0.0 +26295,46,12,43,0.0 +26295,56,38,26,0.0 +26295,48,12.75,25,0.0 +26295,39,18,43,0.0 +26295,37,26,20,0.0 +26295,40,18.4,6,0.0 +26295,15,15.5,1,0.0 +26295,32,32,1,0.0 +26295,25,14,27,0.0 +26295,2,19,43,0.0 +26295,12,38,4,0.0 +26295,27,43.9,47,0.0 +26295,73,15,33,0.0 +26295,16,17.45,12,0.0 +26295,55,24,25,0.0 +26295,11,21,3,0.0 +26295,3,10,41,0.0 +26295,49,20,43,0.0 +26295,69,36,3,0.0 +26296,63,43.9,38,0.0 +26296,54,7.45,40,0.0 +26296,56,38,10,0.0 +26297,13,6,19,0.0 +26297,31,12.5,50,0.0 +26297,38,263.5,41,0.0 +26297,41,9.65,35,0.0 +26297,12,38,23,0.0 +26297,68,12.5,18,0.0 +26297,57,19.5,41,0.0 +26297,42,14,45,0.0 +26297,1,18,40,0.0 +26297,24,4.5,34,0.0 +26297,39,18,10,0.0 +26297,71,21.5,42,0.0 +26297,66,17,29,0.0 +26297,44,19.45,48,0.0 +26297,17,39,17,0.0 +26297,62,49.3,39,0.0 +26297,3,10,20,0.0 +26297,8,40,17,0.0 +26297,10,31,28,0.0 +26297,27,43.9,48,0.0 +26297,45,9.5,18,0.0 +26297,56,38,18,0.0 +26297,58,13.25,5,0.0 +26297,47,9.5,12,0.0 +26297,55,24,42,0.0 +26297,19,9.2,7,0.0 +26297,21,10,47,0.0 +26297,9,97,39,0.0 +26297,32,32,8,0.0 +26297,29,123.79,19,0.0 +26297,76,18,2,0.0 +26297,26,31.23,11,0.0 +26297,54,7.45,16,0.0 +26297,48,12.75,7,0.0 +26297,36,19,33,0.0 +26297,50,16.25,18,0.0 +26297,5,21.35,35,0.0 +26297,65,21.05,5,0.0 +26297,7,30,21,0.0 +26297,33,2.5,8,0.0 +26297,43,46,43,0.0 +26297,51,53,15,0.0 +26297,49,20,3,0.0 +26297,4,22,11,0.0 +26297,22,21,2,0.0 +26297,18,62.5,44,0.0 +26297,11,21,7,0.0 +26297,52,7,24,0.0 +26297,73,15,49,0.0 +26297,53,32.8,5,0.0 +26297,77,13,3,0.0 +26297,15,15.5,32,0.0 +26297,74,10,11,0.0 +26297,60,34,9,0.0 +26297,70,15,7,0.0 +26297,46,12,10,0.0 +26297,2,19,23,0.0 +26297,25,14,19,0.0 +26297,64,33.25,25,0.0 +26297,72,34.8,32,0.0 +26297,30,25.89,46,0.0 +26297,16,17.45,15,0.0 +26297,63,43.9,38,0.0 +26297,6,25,36,0.0 +26297,69,36,1,0.0 +26297,61,28.5,41,0.0 +26298,16,17.45,34,0.0 +26298,41,9.65,32,0.0 +26298,39,18,16,0.0 +26298,70,15,18,0.0 +26298,38,263.5,49,0.0 +26298,75,7.75,44,0.0 +26298,3,10,24,0.0 +26298,77,13,23,0.0 +26298,10,31,31,0.0 +26298,1,18,29,0.0 +26298,74,10,48,0.0 +26298,12,38,7,0.0 +26298,11,21,29,0.0 +26298,36,19,40,0.0 +26298,17,39,2,0.0 +26298,76,18,48,0.0 +26298,64,33.25,19,0.0 +26298,58,13.25,36,0.0 +26298,20,81,36,0.0 +26298,69,36,5,0.0 +26298,13,6,22,0.0 +26298,14,23.25,15,0.0 +26298,15,15.5,13,0.0 +26298,65,21.05,41,0.0 +26298,42,14,34,0.0 +26298,59,55,31,0.0 +26298,5,21.35,25,0.0 +26298,40,18.4,9,0.0 +26298,72,34.8,3,0.0 +26298,30,25.89,23,0.0 +26298,68,12.5,37,0.0 +26298,18,62.5,15,0.0 +26298,8,40,23,0.0 +26298,6,25,30,0.0 +26298,37,26,35,0.0 +26298,21,10,33,0.0 +26298,71,21.5,5,0.0 +26298,54,7.45,13,0.0 +26298,35,18,30,0.0 +26298,9,97,14,0.0 +26298,26,31.23,48,0.0 +26298,56,38,4,0.0 +26298,67,14,41,0.0 +26298,31,12.5,43,0.0 +26298,57,19.5,30,0.0 +26298,4,22,3,0.0 +26298,46,12,21,0.0 +26298,44,19.45,42,0.0 +26298,50,16.25,20,0.0 +26298,32,32,10,0.0 +26298,19,9.2,14,0.0 +26298,63,43.9,23,0.0 +26298,43,46,17,0.0 +26298,73,15,12,0.0 +26299,25,14,10,0.0 +26299,12,38,8,0.0 +26299,30,25.89,27,0.0 +26299,21,10,7,0.0 +26299,75,7.75,5,0.0 +26299,55,24,16,0.0 +26299,28,45.6,5,0.0 +26299,50,16.25,24,0.0 +26299,72,34.8,30,0.0 +26299,17,39,8,0.0 +26299,6,25,19,0.0 +26299,43,46,24,0.0 +26299,40,18.4,25,0.0 +26300,71,21.5,48,0.0 +26300,23,9,12,0.0 +26300,2,19,11,0.0 +26300,60,34,32,0.0 +26300,21,10,38,0.0 +26300,7,30,30,0.0 +26300,38,263.5,25,0.0 +26300,26,31.23,20,0.0 +26300,37,26,33,0.0 +26300,39,18,12,0.0 +26300,8,40,26,0.0 +26300,11,21,26,0.0 +26300,72,34.8,6,0.0 +26300,19,9.2,50,0.0 +26300,50,16.25,47,0.0 +26300,47,9.5,49,0.0 +26300,48,12.75,10,0.0 +26300,42,14,23,0.0 +26300,27,43.9,31,0.0 +26300,16,17.45,47,0.0 +26300,4,22,42,0.0 +26300,63,43.9,37,0.0 +26300,54,7.45,29,0.0 +26301,61,28.5,41,0.0 +26301,27,43.9,49,0.0 +26301,23,9,11,0.0 +26301,40,18.4,22,0.0 +26301,68,12.5,19,0.0 +26301,49,20,40,0.0 +26301,57,19.5,47,0.0 +26301,50,16.25,19,0.0 +26301,60,34,29,0.0 +26301,58,13.25,5,0.0 +26301,59,55,18,0.0 +26301,55,24,39,0.0 +26301,65,21.05,26,0.0 +26301,6,25,36,0.0 +26301,2,19,24,0.0 +26301,25,14,3,0.0 +26301,31,12.5,12,0.0 +26301,35,18,33,0.0 +26301,73,15,13,0.0 +26301,34,14,23,0.0 +26301,18,62.5,6,0.0 +26301,3,10,17,0.0 +26301,70,15,26,0.0 +26301,8,40,39,0.0 +26301,21,10,10,0.0 +26301,42,14,21,0.0 +26301,29,123.79,11,0.0 +26301,1,18,19,0.0 +26301,77,13,50,0.0 +26301,43,46,37,0.0 +26301,7,30,3,0.0 +26301,17,39,45,0.0 +26301,36,19,49,0.0 +26301,33,2.5,24,0.0 +26301,11,21,27,0.0 +26301,28,45.6,31,0.0 +26301,71,21.5,27,0.0 +26301,69,36,24,0.0 +26301,48,12.75,42,0.0 +26301,47,9.5,27,0.0 +26301,74,10,32,0.0 +26301,24,4.5,49,0.0 +26301,15,15.5,1,0.0 +26301,56,38,30,0.0 +26301,39,18,19,0.0 +26301,63,43.9,36,0.0 +26301,38,263.5,30,0.0 +26301,54,7.45,33,0.0 +26301,67,14,21,0.0 +26301,9,97,11,0.0 +26301,19,9.2,11,0.0 +26301,32,32,34,0.0 +26301,64,33.25,32,0.0 +26301,12,38,34,0.0 +26301,75,7.75,40,0.0 +26301,16,17.45,16,0.0 +26301,41,9.65,24,0.0 +26301,44,19.45,31,0.0 +26301,45,9.5,50,0.0 +26301,76,18,31,0.0 +26301,10,31,44,0.0 +26301,26,31.23,25,0.0 +26301,20,81,24,0.0 +26301,52,7,6,0.0 +26301,4,22,21,0.0 +26301,13,6,16,0.0 +26301,62,49.3,1,0.0 +26302,63,43.9,44,0.0 +26302,29,123.79,22,0.0 +26302,57,19.5,15,0.0 +26302,48,12.75,13,0.0 +26302,19,9.2,16,0.0 +26302,59,55,5,0.0 +26302,4,22,30,0.0 +26302,22,21,23,0.0 +26302,23,9,38,0.0 +26302,18,62.5,25,0.0 +26302,24,4.5,46,0.0 +26302,28,45.6,4,0.0 +26302,7,30,9,0.0 +26302,62,49.3,12,0.0 +26302,39,18,43,0.0 +26302,40,18.4,11,0.0 +26302,64,33.25,4,0.0 +26302,12,38,10,0.0 +26302,56,38,28,0.0 +26302,9,97,41,0.0 +26302,52,7,43,0.0 +26302,54,7.45,29,0.0 +26302,15,15.5,11,0.0 +26302,65,21.05,41,0.0 +26302,1,18,41,0.0 +26302,77,13,22,0.0 +26302,16,17.45,45,0.0 +26302,72,34.8,40,0.0 +26302,30,25.89,5,0.0 +26302,46,12,45,0.0 +26302,27,43.9,6,0.0 +26302,25,14,20,0.0 +26302,71,21.5,31,0.0 +26302,34,14,4,0.0 +26302,37,26,23,0.0 +26302,13,6,49,0.0 +26302,2,19,11,0.0 +26302,66,17,29,0.0 +26302,69,36,24,0.0 +26302,8,40,11,0.0 +26302,3,10,21,0.0 +26302,35,18,1,0.0 +26302,42,14,29,0.0 +26302,33,2.5,20,0.0 +26302,32,32,35,0.0 +26302,74,10,32,0.0 +26302,5,21.35,19,0.0 +26302,17,39,4,0.0 +26302,76,18,6,0.0 +26302,36,19,13,0.0 +26302,45,9.5,2,0.0 +26302,26,31.23,11,0.0 +26302,73,15,32,0.0 +26302,10,31,17,0.0 +26302,70,15,3,0.0 +26302,55,24,36,0.0 +26302,21,10,41,0.0 +26302,49,20,39,0.0 +26302,44,19.45,47,0.0 +26302,43,46,30,0.0 +26302,67,14,20,0.0 +26302,51,53,31,0.0 +26302,53,32.8,20,0.0 +26302,75,7.75,22,0.0 +26302,38,263.5,49,0.0 +26302,31,12.5,2,0.0 +26302,20,81,22,0.0 +26303,18,62.5,32,0.0 +26303,76,18,46,0.0 +26303,58,13.25,47,0.0 +26303,19,9.2,28,0.0 +26303,30,25.89,29,0.0 +26303,43,46,45,0.0 +26303,71,21.5,41,0.0 +26303,37,26,40,0.0 +26303,22,21,36,0.0 +26303,27,43.9,16,0.0 +26303,47,9.5,29,0.0 +26303,6,25,30,0.0 +26303,69,36,38,0.0 +26303,63,43.9,13,0.0 +26303,57,19.5,9,0.0 +26303,31,12.5,30,0.0 +26303,24,4.5,24,0.0 +26303,74,10,10,0.0 +26303,70,15,28,0.0 +26303,20,81,28,0.0 +26303,13,6,41,0.0 +26303,77,13,10,0.0 +26303,68,12.5,16,0.0 +26303,38,263.5,6,0.0 +26303,21,10,6,0.0 +26303,10,31,46,0.0 +26303,48,12.75,14,0.0 +26303,55,24,24,0.0 +26303,45,9.5,40,0.0 +26303,23,9,22,0.0 +26303,3,10,47,0.0 +26303,32,32,6,0.0 +26303,65,21.05,3,0.0 +26303,15,15.5,37,0.0 +26303,2,19,13,0.0 +26303,33,2.5,8,0.0 +26303,25,14,17,0.0 +26303,54,7.45,48,0.0 +26303,17,39,6,0.0 +26303,12,38,28,0.0 +26303,49,20,40,0.0 +26303,40,18.4,20,0.0 +26303,75,7.75,33,0.0 +26303,53,32.8,10,0.0 +26303,51,53,2,0.0 +26303,62,49.3,1,0.0 +26303,4,22,9,0.0 +26304,37,26,15,0.0 +26304,14,23.25,2,0.0 +26304,4,22,43,0.0 +26304,6,25,10,0.0 +26304,76,18,15,0.0 +26304,2,19,44,0.0 +26304,42,14,50,0.0 +26304,59,55,21,0.0 +26304,11,21,26,0.0 +26304,69,36,27,0.0 +26304,75,7.75,38,0.0 +26304,13,6,42,0.0 +26304,62,49.3,16,0.0 +26304,41,9.65,30,0.0 +26304,48,12.75,30,0.0 +26304,22,21,21,0.0 +26304,65,21.05,31,0.0 +26304,18,62.5,48,0.0 +26304,58,13.25,7,0.0 +26304,36,19,4,0.0 +26305,36,19,9,0.0 +26305,65,21.05,49,0.0 +26305,9,97,9,0.0 +26305,58,13.25,9,0.0 +26305,69,36,23,0.0 +26305,17,39,28,0.0 +26305,66,17,37,0.0 +26305,43,46,13,0.0 +26305,23,9,6,0.0 +26305,5,21.35,1,0.0 +26305,73,15,32,0.0 +26305,54,7.45,45,0.0 +26305,71,21.5,25,0.0 +26305,37,26,44,0.0 +26305,61,28.5,29,0.0 +26305,28,45.6,31,0.0 +26305,30,25.89,2,0.0 +26305,3,10,31,0.0 +26305,57,19.5,9,0.0 +26305,63,43.9,34,0.0 +26305,53,32.8,40,0.0 +26305,70,15,42,0.0 +26305,6,25,48,0.0 +26305,44,19.45,33,0.0 +26305,68,12.5,21,0.0 +26305,11,21,28,0.0 +26305,31,12.5,41,0.0 +26306,67,14,9,0.0 +26306,22,21,29,0.0 +26306,12,38,18,0.0 +26306,60,34,15,0.0 +26306,7,30,27,0.0 +26306,21,10,5,0.0 +26306,3,10,15,0.0 +26306,20,81,3,0.0 +26306,70,15,8,0.0 +26306,16,17.45,4,0.0 +26306,73,15,31,0.0 +26306,59,55,31,0.0 +26306,23,9,10,0.0 +26306,46,12,37,0.0 +26306,44,19.45,26,0.0 +26306,13,6,50,0.0 +26306,42,14,7,0.0 +26306,4,22,37,0.0 +26306,27,43.9,29,0.0 +26306,45,9.5,18,0.0 +26306,18,62.5,6,0.0 +26306,77,13,39,0.0 +26306,47,9.5,32,0.0 +26306,75,7.75,16,0.0 +26306,49,20,10,0.0 +26306,17,39,30,0.0 +26306,55,24,14,0.0 +26306,39,18,18,0.0 +26306,58,13.25,49,0.0 +26306,48,12.75,10,0.0 +26306,76,18,33,0.0 +26306,11,21,19,0.0 +26306,14,23.25,14,0.0 +26306,43,46,1,0.0 +26306,37,26,45,0.0 +26306,9,97,36,0.0 +26306,38,263.5,8,0.0 +26306,51,53,45,0.0 +26306,65,21.05,47,0.0 +26306,50,16.25,34,0.0 +26306,64,33.25,15,0.0 +26306,19,9.2,16,0.0 +26306,25,14,48,0.0 +26306,31,12.5,33,0.0 +26306,33,2.5,45,0.0 +26307,67,14,41,0.0 +26307,31,12.5,39,0.0 +26307,53,32.8,14,0.0 +26307,63,43.9,18,0.0 +26308,19,9.2,12,0.0 +26308,22,21,2,0.0 +26308,71,21.5,20,0.0 +26308,14,23.25,49,0.0 +26308,20,81,43,0.0 +26308,64,33.25,41,0.0 +26308,56,38,29,0.0 +26308,47,9.5,37,0.0 +26308,77,13,23,0.0 +26308,23,9,49,0.0 +26308,6,25,21,0.0 +26308,24,4.5,25,0.0 +26308,32,32,9,0.0 +26308,27,43.9,48,0.0 +26308,62,49.3,9,0.0 +26308,28,45.6,10,0.0 +26308,74,10,38,0.0 +26308,49,20,15,0.0 +26308,11,21,21,0.0 +26308,63,43.9,40,0.0 +26308,1,18,35,0.0 +26308,45,9.5,36,0.0 +26308,26,31.23,7,0.0 +26308,73,15,43,0.0 +26308,17,39,32,0.0 +26308,42,14,11,0.0 +26308,58,13.25,34,0.0 +26308,30,25.89,26,0.0 +26308,40,18.4,31,0.0 +26308,39,18,27,0.0 +26308,76,18,50,0.0 +26308,48,12.75,42,0.0 +26308,29,123.79,8,0.0 +26308,3,10,50,0.0 +26308,43,46,13,0.0 +26308,51,53,16,0.0 +26308,54,7.45,7,0.0 +26308,41,9.65,49,0.0 +26308,12,38,15,0.0 +26308,31,12.5,39,0.0 +26308,7,30,34,0.0 +26308,34,14,46,0.0 +26308,67,14,8,0.0 +26308,35,18,29,0.0 +26308,36,19,29,0.0 +26308,69,36,31,0.0 +26308,38,263.5,34,0.0 +26308,21,10,42,0.0 +26308,70,15,40,0.0 +26308,18,62.5,32,0.0 +26308,50,16.25,26,0.0 +26308,25,14,3,0.0 +26308,68,12.5,18,0.0 +26308,8,40,8,0.0 +26308,10,31,41,0.0 +26308,57,19.5,12,0.0 +26308,59,55,32,0.0 +26308,13,6,3,0.0 +26308,55,24,41,0.0 +26308,61,28.5,17,0.0 +26308,72,34.8,16,0.0 +26308,65,21.05,6,0.0 +26308,37,26,28,0.0 +26308,9,97,25,0.0 +26308,16,17.45,27,0.0 +26308,15,15.5,24,0.0 +26308,44,19.45,18,0.0 +26308,4,22,45,0.0 +26309,44,19.45,47,0.0 +26309,19,9.2,28,0.0 +26309,33,2.5,42,0.0 +26309,52,7,20,0.0 +26309,9,97,39,0.0 +26309,17,39,34,0.0 +26309,53,32.8,43,0.0 +26309,38,263.5,38,0.0 +26309,2,19,18,0.0 +26309,25,14,9,0.0 +26309,71,21.5,40,0.0 +26309,48,12.75,22,0.0 +26309,42,14,36,0.0 +26309,8,40,33,0.0 +26310,29,123.79,9,0.0 +26310,34,14,21,0.0 +26310,24,4.5,19,0.0 +26310,52,7,44,0.0 +26310,12,38,28,0.0 +26310,18,62.5,32,0.0 +26310,53,32.8,14,0.0 +26310,43,46,38,0.0 +26310,23,9,30,0.0 +26310,76,18,22,0.0 +26310,35,18,11,0.0 +26310,74,10,9,0.0 +26310,39,18,7,0.0 +26310,6,25,46,0.0 +26310,64,33.25,6,0.0 +26310,45,9.5,34,0.0 +26310,17,39,14,0.0 +26310,61,28.5,36,0.0 +26310,48,12.75,19,0.0 +26310,37,26,4,0.0 +26310,26,31.23,4,0.0 +26310,50,16.25,25,0.0 +26310,54,7.45,47,0.0 +26310,57,19.5,29,0.0 +26310,11,21,12,0.0 +26310,3,10,15,0.0 +26310,60,34,39,0.0 +26310,33,2.5,11,0.0 +26310,1,18,17,0.0 +26310,46,12,12,0.0 +26310,44,19.45,4,0.0 +26310,56,38,44,0.0 +26310,16,17.45,20,0.0 +26310,8,40,5,0.0 +26310,38,263.5,43,0.0 +26310,40,18.4,39,0.0 +26310,27,43.9,10,0.0 +26310,31,12.5,36,0.0 +26311,65,21.05,27,0.0 +26311,70,15,37,0.0 +26311,27,43.9,34,0.0 +26311,74,10,33,0.0 +26311,22,21,8,0.0 +26311,9,97,8,0.0 +26311,1,18,23,0.0 +26311,62,49.3,23,0.0 +26311,13,6,11,0.0 +26311,32,32,49,0.0 +26311,69,36,48,0.0 +26311,28,45.6,7,0.0 +26311,52,7,20,0.0 +26311,34,14,26,0.0 +26311,66,17,24,0.0 +26311,49,20,28,0.0 +26311,7,30,21,0.0 +26311,3,10,27,0.0 +26311,73,15,14,0.0 +26311,44,19.45,24,0.0 +26311,38,263.5,45,0.0 +26311,29,123.79,46,0.0 +26311,35,18,16,0.0 +26311,63,43.9,36,0.0 +26311,25,14,39,0.0 +26311,12,38,10,0.0 +26311,26,31.23,40,0.0 +26311,77,13,11,0.0 +26311,10,31,40,0.0 +26311,57,19.5,34,0.0 +26311,50,16.25,28,0.0 +26311,76,18,10,0.0 +26311,68,12.5,9,0.0 +26311,8,40,30,0.0 +26311,24,4.5,37,0.0 +26311,6,25,6,0.0 +26311,71,21.5,21,0.0 +26311,4,22,18,0.0 +26311,5,21.35,28,0.0 +26311,17,39,43,0.0 +26312,6,25,17,0.0 +26312,33,2.5,18,0.0 +26312,49,20,19,0.0 +26312,51,53,49,0.0 +26312,29,123.79,34,0.0 +26312,54,7.45,37,0.0 +26313,49,20,32,0.0 +26313,47,9.5,4,0.0 +26313,38,263.5,34,0.0 +26313,1,18,13,0.0 +26313,23,9,32,0.0 +26313,65,21.05,19,0.0 +26313,72,34.8,22,0.0 +26313,77,13,49,0.0 +26313,55,24,11,0.0 +26313,7,30,15,0.0 +26313,29,123.79,20,0.0 +26313,10,31,2,0.0 +26313,53,32.8,22,0.0 +26313,52,7,25,0.0 +26313,4,22,47,0.0 +26313,62,49.3,15,0.0 +26313,12,38,40,0.0 +26313,17,39,29,0.0 +26313,3,10,10,0.0 +26313,70,15,33,0.0 +26313,25,14,21,0.0 +26313,44,19.45,41,0.0 +26313,58,13.25,22,0.0 +26313,31,12.5,39,0.0 +26313,73,15,49,0.0 +26313,75,7.75,39,0.0 +26313,33,2.5,2,0.0 +26313,32,32,25,0.0 +26313,6,25,9,0.0 +26313,20,81,26,0.0 +26313,13,6,21,0.0 +26313,76,18,11,0.0 +26313,22,21,40,0.0 +26313,42,14,48,0.0 +26313,43,46,45,0.0 +26313,57,19.5,33,0.0 +26313,27,43.9,33,0.0 +26313,16,17.45,8,0.0 +26313,45,9.5,1,0.0 +26313,54,7.45,11,0.0 +26313,35,18,15,0.0 +26313,2,19,12,0.0 +26313,67,14,23,0.0 +26313,15,15.5,20,0.0 +26313,51,53,48,0.0 +26313,28,45.6,31,0.0 +26313,61,28.5,45,0.0 +26313,40,18.4,22,0.0 +26313,30,25.89,19,0.0 +26313,24,4.5,47,0.0 +26313,36,19,13,0.0 +26313,9,97,33,0.0 +26313,18,62.5,23,0.0 +26313,39,18,15,0.0 +26313,56,38,42,0.0 +26313,60,34,2,0.0 +26313,37,26,17,0.0 +26313,69,36,23,0.0 +26313,41,9.65,3,0.0 +26313,66,17,41,0.0 +26313,46,12,21,0.0 +26313,19,9.2,17,0.0 +26313,14,23.25,9,0.0 +26313,63,43.9,26,0.0 +26313,34,14,46,0.0 +26313,59,55,36,0.0 +26313,26,31.23,15,0.0 +26313,8,40,37,0.0 +26313,74,10,46,0.0 +26313,21,10,18,0.0 +26313,68,12.5,45,0.0 +26314,47,9.5,6,0.0 +26314,45,9.5,17,0.0 +26314,1,18,19,0.0 +26314,11,21,30,0.0 +26314,24,4.5,11,0.0 +26314,75,7.75,5,0.0 +26314,36,19,42,0.0 +26314,62,49.3,17,0.0 +26314,37,26,16,0.0 +26314,3,10,41,0.0 +26314,57,19.5,29,0.0 +26314,8,40,34,0.0 +26314,34,14,42,0.0 +26314,39,18,3,0.0 +26314,20,81,7,0.0 +26314,2,19,32,0.0 +26314,31,12.5,7,0.0 +26314,7,30,34,0.0 +26314,28,45.6,1,0.0 +26314,10,31,23,0.0 +26314,27,43.9,30,0.0 +26314,19,9.2,20,0.0 +26314,44,19.45,15,0.0 +26314,73,15,19,0.0 +26314,72,34.8,14,0.0 +26314,69,36,42,0.0 +26314,70,15,26,0.0 +26314,33,2.5,33,0.0 +26314,51,53,29,0.0 +26314,42,14,44,0.0 +26314,68,12.5,16,0.0 +26314,55,24,31,0.0 +26314,18,62.5,9,0.0 +26314,43,46,3,0.0 +26314,53,32.8,30,0.0 +26314,71,21.5,2,0.0 +26314,67,14,40,0.0 +26314,40,18.4,36,0.0 +26314,50,16.25,36,0.0 +26314,58,13.25,28,0.0 +26314,64,33.25,9,0.0 +26314,4,22,18,0.0 +26314,6,25,17,0.0 +26314,46,12,25,0.0 +26314,61,28.5,6,0.0 +26314,66,17,20,0.0 +26314,15,15.5,5,0.0 +26314,60,34,19,0.0 +26314,25,14,4,0.0 +26314,59,55,3,0.0 +26314,30,25.89,45,0.0 +26314,74,10,22,0.0 +26315,34,14,33,0.0 +26315,15,15.5,47,0.0 +26315,11,21,41,0.0 +26315,69,36,36,0.0 +26315,61,28.5,39,0.0 +26315,2,19,4,0.0 +26315,1,18,32,0.0 +26315,57,19.5,43,0.0 +26315,45,9.5,39,0.0 +26315,20,81,33,0.0 +26315,9,97,50,0.0 +26315,43,46,9,0.0 +26315,66,17,46,0.0 +26315,60,34,29,0.0 +26315,13,6,39,0.0 +26315,73,15,46,0.0 +26315,42,14,38,0.0 +26315,70,15,21,0.0 +26315,74,10,24,0.0 +26315,63,43.9,27,0.0 +26315,3,10,28,0.0 +26315,5,21.35,44,0.0 +26315,40,18.4,21,0.0 +26315,23,9,6,0.0 +26315,6,25,13,0.0 +26315,56,38,18,0.0 +26315,62,49.3,38,0.0 +26315,54,7.45,8,0.0 +26315,53,32.8,41,0.0 +26315,12,38,12,0.0 +26315,41,9.65,44,0.0 +26315,64,33.25,41,0.0 +26315,75,7.75,7,0.0 +26315,28,45.6,37,0.0 +26315,35,18,2,0.0 +26315,48,12.75,1,0.0 +26315,58,13.25,41,0.0 +26315,47,9.5,50,0.0 +26315,27,43.9,39,0.0 +26315,37,26,27,0.0 +26315,22,21,47,0.0 +26315,55,24,3,0.0 +26315,21,10,1,0.0 +26315,52,7,10,0.0 +26315,25,14,23,0.0 +26315,7,30,34,0.0 +26315,72,34.8,22,0.0 +26315,31,12.5,31,0.0 +26315,68,12.5,16,0.0 +26315,39,18,34,0.0 +26315,76,18,30,0.0 +26315,26,31.23,10,0.0 +26315,50,16.25,20,0.0 +26315,67,14,22,0.0 +26315,65,21.05,22,0.0 +26315,49,20,21,0.0 +26315,33,2.5,19,0.0 +26315,32,32,6,0.0 +26315,8,40,2,0.0 +26315,16,17.45,36,0.0 +26315,51,53,8,0.0 +26315,30,25.89,1,0.0 +26315,38,263.5,40,0.0 +26315,29,123.79,1,0.0 +26315,36,19,42,0.0 +26315,4,22,50,0.0 +26315,19,9.2,19,0.0 +26315,44,19.45,39,0.0 +26315,59,55,12,0.0 +26316,74,10,35,0.0 +26316,18,62.5,27,0.0 +26316,51,53,14,0.0 +26316,19,9.2,9,0.0 +26316,56,38,9,0.0 +26316,5,21.35,9,0.0 +26316,66,17,49,0.0 +26316,49,20,7,0.0 +26316,36,19,30,0.0 +26316,6,25,44,0.0 +26316,24,4.5,42,0.0 +26316,27,43.9,4,0.0 +26316,62,49.3,19,0.0 +26316,60,34,21,0.0 +26316,37,26,12,0.0 +26316,41,9.65,47,0.0 +26316,26,31.23,13,0.0 +26316,15,15.5,32,0.0 +26316,10,31,16,0.0 +26316,30,25.89,9,0.0 +26316,71,21.5,30,0.0 +26316,59,55,27,0.0 +26316,70,15,33,0.0 +26316,35,18,2,0.0 +26316,17,39,26,0.0 +26316,58,13.25,30,0.0 +26316,52,7,25,0.0 +26316,55,24,6,0.0 +26316,28,45.6,6,0.0 +26316,32,32,50,0.0 +26316,38,263.5,19,0.0 +26316,29,123.79,49,0.0 +26316,39,18,28,0.0 +26316,77,13,31,0.0 +26317,35,18,35,0.0 +26317,7,30,32,0.0 +26317,64,33.25,41,0.0 +26317,56,38,43,0.0 +26317,48,12.75,31,0.0 +26318,12,38,2,0.0 +26318,48,12.75,50,0.0 +26318,35,18,17,0.0 +26318,5,21.35,47,0.0 +26318,70,15,13,0.0 +26318,18,62.5,32,0.0 +26318,63,43.9,7,0.0 +26318,73,15,45,0.0 +26318,30,25.89,49,0.0 +26318,32,32,50,0.0 +26318,11,21,2,0.0 +26318,34,14,34,0.0 +26318,2,19,19,0.0 +26318,8,40,26,0.0 +26319,54,7.45,1,0.0 +26319,68,12.5,41,0.0 +26319,6,25,8,0.0 +26319,23,9,46,0.0 +26319,13,6,33,0.0 +26319,43,46,26,0.0 +26319,46,12,23,0.0 +26319,69,36,45,0.0 +26319,55,24,48,0.0 +26319,35,18,34,0.0 +26319,66,17,22,0.0 +26319,16,17.45,8,0.0 +26319,26,31.23,45,0.0 +26319,9,97,3,0.0 +26319,10,31,50,0.0 +26319,28,45.6,24,0.0 +26319,49,20,46,0.0 +26319,38,263.5,1,0.0 +26319,7,30,36,0.0 +26319,72,34.8,45,0.0 +26319,65,21.05,45,0.0 +26319,64,33.25,33,0.0 +26319,62,49.3,47,0.0 +26319,21,10,37,0.0 +26319,24,4.5,15,0.0 +26319,1,18,43,0.0 +26319,47,9.5,20,0.0 +26319,73,15,33,0.0 +26319,59,55,14,0.0 +26319,2,19,27,0.0 +26319,12,38,35,0.0 +26319,8,40,9,0.0 +26319,18,62.5,49,0.0 +26319,51,53,7,0.0 +26319,20,81,27,0.0 +26319,25,14,22,0.0 +26319,39,18,40,0.0 +26319,45,9.5,41,0.0 +26319,31,12.5,40,0.0 +26319,53,32.8,33,0.0 +26319,61,28.5,1,0.0 +26319,50,16.25,50,0.0 +26319,58,13.25,16,0.0 +26319,56,38,45,0.0 +26319,15,15.5,21,0.0 +26319,22,21,16,0.0 +26319,41,9.65,10,0.0 +26319,74,10,15,0.0 +26319,33,2.5,42,0.0 +26319,52,7,29,0.0 +26319,19,9.2,32,0.0 +26319,32,32,23,0.0 +26320,51,53,1,0.0 +26320,12,38,3,0.0 +26320,34,14,25,0.0 +26320,15,15.5,15,0.0 +26320,64,33.25,20,0.0 +26320,60,34,14,0.0 +26320,32,32,46,0.0 +26320,56,38,46,0.0 +26320,39,18,22,0.0 +26320,44,19.45,32,0.0 +26320,30,25.89,13,0.0 +26320,7,30,39,0.0 +26320,4,22,33,0.0 +26320,35,18,45,0.0 +26320,38,263.5,6,0.0 +26320,19,9.2,30,0.0 +26320,77,13,7,0.0 +26320,33,2.5,43,0.0 +26320,48,12.75,35,0.0 +26320,23,9,7,0.0 +26320,10,31,3,0.0 +26320,45,9.5,28,0.0 +26320,8,40,50,0.0 +26320,41,9.65,21,0.0 +26320,68,12.5,18,0.0 +26320,13,6,31,0.0 +26320,2,19,40,0.0 +26320,29,123.79,50,0.0 +26320,55,24,40,0.0 +26320,70,15,33,0.0 +26320,49,20,20,0.0 +26320,27,43.9,24,0.0 +26320,21,10,13,0.0 +26320,58,13.25,47,0.0 +26320,46,12,34,0.0 +26320,76,18,9,0.0 +26320,31,12.5,13,0.0 +26320,42,14,22,0.0 +26320,5,21.35,12,0.0 +26320,59,55,39,0.0 +26320,1,18,46,0.0 +26320,63,43.9,20,0.0 +26320,69,36,7,0.0 +26320,57,19.5,33,0.0 +26320,25,14,7,0.0 +26320,18,62.5,9,0.0 +26320,52,7,30,0.0 +26320,14,23.25,39,0.0 +26320,20,81,41,0.0 +26320,66,17,30,0.0 +26320,61,28.5,45,0.0 +26320,16,17.45,2,0.0 +26320,65,21.05,31,0.0 +26320,22,21,8,0.0 +26320,28,45.6,25,0.0 +26320,43,46,8,0.0 +26320,6,25,22,0.0 +26320,9,97,37,0.0 +26320,75,7.75,20,0.0 +26320,26,31.23,39,0.0 +26320,37,26,20,0.0 +26320,73,15,11,0.0 +26320,67,14,37,0.0 +26320,71,21.5,10,0.0 +26320,53,32.8,23,0.0 +26320,36,19,22,0.0 +26320,74,10,26,0.0 +26320,40,18.4,7,0.0 +26320,47,9.5,8,0.0 +26320,50,16.25,28,0.0 +26320,72,34.8,39,0.0 +26320,3,10,34,0.0 +26320,62,49.3,12,0.0 +26321,3,10,47,0.0 +26321,35,18,43,0.0 +26321,7,30,22,0.0 +26321,42,14,3,0.0 +26321,32,32,45,0.0 +26321,43,46,17,0.0 +26321,75,7.75,30,0.0 +26321,9,97,33,0.0 +26321,38,263.5,20,0.0 +26321,64,33.25,45,0.0 +26321,25,14,38,0.0 +26321,36,19,9,0.0 +26321,29,123.79,25,0.0 +26321,12,38,36,0.0 +26321,69,36,41,0.0 +26321,72,34.8,4,0.0 +26321,63,43.9,47,0.0 +26321,40,18.4,25,0.0 +26321,46,12,14,0.0 +26321,10,31,18,0.0 +26322,4,22,20,0.0 +26322,73,15,37,0.0 +26322,25,14,30,0.0 +26322,46,12,33,0.0 +26322,65,21.05,19,0.0 +26322,5,21.35,42,0.0 +26322,3,10,11,0.0 +26322,35,18,21,0.0 +26322,6,25,26,0.0 +26322,14,23.25,48,0.0 +26322,11,21,28,0.0 +26322,36,19,20,0.0 +26322,48,12.75,1,0.0 +26322,28,45.6,23,0.0 +26322,59,55,37,0.0 +26322,49,20,24,0.0 +26322,77,13,14,0.0 +26322,71,21.5,40,0.0 +26322,41,9.65,24,0.0 +26322,66,17,41,0.0 +26322,16,17.45,39,0.0 +26322,42,14,4,0.0 +26322,23,9,14,0.0 +26322,54,7.45,36,0.0 +26322,10,31,42,0.0 +26322,27,43.9,38,0.0 +26322,40,18.4,35,0.0 +26322,22,21,24,0.0 +26322,74,10,28,0.0 +26322,56,38,39,0.0 +26322,26,31.23,22,0.0 +26322,57,19.5,50,0.0 +26322,67,14,34,0.0 +26322,1,18,16,0.0 +26322,2,19,45,0.0 +26322,72,34.8,21,0.0 +26322,13,6,24,0.0 +26322,24,4.5,26,0.0 +26322,70,15,43,0.0 +26322,38,263.5,18,0.0 +26322,34,14,18,0.0 +26322,44,19.45,4,0.0 +26322,52,7,9,0.0 +26322,55,24,36,0.0 +26322,53,32.8,19,0.0 +26322,64,33.25,12,0.0 +26322,76,18,46,0.0 +26322,17,39,4,0.0 +26322,7,30,22,0.0 +26322,45,9.5,16,0.0 +26322,50,16.25,17,0.0 +26322,37,26,15,0.0 +26322,9,97,29,0.0 +26322,60,34,42,0.0 +26322,12,38,11,0.0 +26322,69,36,46,0.0 +26322,18,62.5,4,0.0 +26322,31,12.5,3,0.0 +26322,61,28.5,29,0.0 +26322,8,40,8,0.0 +26322,33,2.5,47,0.0 +26322,62,49.3,48,0.0 +26322,32,32,30,0.0 +26322,21,10,43,0.0 +26322,47,9.5,48,0.0 +26322,20,81,20,0.0 +26322,58,13.25,13,0.0 +26322,43,46,20,0.0 +26322,19,9.2,20,0.0 +26322,30,25.89,22,0.0 +26322,75,7.75,17,0.0 +26322,68,12.5,40,0.0 +26322,29,123.79,48,0.0 +26322,39,18,17,0.0 +26322,15,15.5,5,0.0 +26322,51,53,9,0.0 +26322,63,43.9,41,0.0 +26323,9,97,43,0.0 +26323,20,81,14,0.0 +26323,64,33.25,4,0.0 +26323,66,17,47,0.0 +26323,44,19.45,33,0.0 +26323,29,123.79,28,0.0 +26323,12,38,13,0.0 +26323,31,12.5,48,0.0 +26323,76,18,1,0.0 +26323,37,26,44,0.0 +26323,38,263.5,10,0.0 +26323,59,55,20,0.0 +26323,77,13,28,0.0 +26323,75,7.75,43,0.0 +26324,55,24,25,0.0 +26324,31,12.5,10,0.0 +26324,13,6,8,0.0 +26324,71,21.5,7,0.0 +26324,72,34.8,26,0.0 +26324,36,19,22,0.0 +26324,19,9.2,5,0.0 +26324,14,23.25,3,0.0 +26324,49,20,50,0.0 +26324,54,7.45,16,0.0 +26324,65,21.05,18,0.0 +26324,35,18,23,0.0 +26324,60,34,44,0.0 +26324,51,53,18,0.0 +26324,68,12.5,4,0.0 +26324,4,22,45,0.0 +26324,62,49.3,3,0.0 +26324,1,18,45,0.0 +26324,38,263.5,21,0.0 +26324,29,123.79,31,0.0 +26324,77,13,38,0.0 +26324,7,30,47,0.0 +26324,23,9,24,0.0 +26324,75,7.75,34,0.0 +26324,43,46,42,0.0 +26324,53,32.8,13,0.0 +26324,37,26,48,0.0 +26324,47,9.5,15,0.0 +26324,74,10,15,0.0 +26324,50,16.25,2,0.0 +26324,76,18,19,0.0 +26324,59,55,49,0.0 +26324,57,19.5,5,0.0 +26324,16,17.45,17,0.0 +26324,66,17,26,0.0 +26324,2,19,11,0.0 +26324,26,31.23,39,0.0 +26325,42,14,12,0.0 +26325,20,81,50,0.0 +26325,8,40,29,0.0 +26325,21,10,27,0.0 +26325,14,23.25,44,0.0 +26325,64,33.25,19,0.0 +26325,3,10,24,0.0 +26325,52,7,47,0.0 +26325,49,20,8,0.0 +26325,17,39,19,0.0 +26325,38,263.5,3,0.0 +26325,36,19,19,0.0 +26325,4,22,8,0.0 +26325,33,2.5,5,0.0 +26325,41,9.65,48,0.0 +26325,46,12,2,0.0 +26325,66,17,18,0.0 +26325,11,21,10,0.0 +26326,59,55,12,0.0 +26326,20,81,5,0.0 +26326,44,19.45,3,0.0 +26326,47,9.5,6,0.0 +26326,31,12.5,19,0.0 +26326,8,40,13,0.0 +26326,71,21.5,40,0.0 +26326,28,45.6,21,0.0 +26326,14,23.25,26,0.0 +26326,74,10,25,0.0 +26326,10,31,10,0.0 +26326,40,18.4,8,0.0 +26326,35,18,24,0.0 +26326,19,9.2,13,0.0 +26326,50,16.25,19,0.0 +26326,37,26,48,0.0 +26326,6,25,6,0.0 +26326,62,49.3,21,0.0 +26326,39,18,1,0.0 +26327,14,23.25,30,0.0 +26327,23,9,21,0.0 +26327,55,24,41,0.0 +26327,28,45.6,7,0.0 +26327,10,31,11,0.0 +26327,51,53,37,0.0 +26327,67,14,29,0.0 +26327,11,21,50,0.0 +26327,70,15,16,0.0 +26327,30,25.89,8,0.0 +26327,63,43.9,20,0.0 +26327,73,15,6,0.0 +26327,60,34,48,0.0 +26327,66,17,3,0.0 +26327,13,6,47,0.0 +26327,44,19.45,31,0.0 +26327,25,14,13,0.0 +26327,38,263.5,1,0.0 +26327,5,21.35,7,0.0 +26327,39,18,22,0.0 +26327,50,16.25,13,0.0 +26327,37,26,39,0.0 +26327,32,32,40,0.0 +26327,24,4.5,38,0.0 +26327,68,12.5,25,0.0 +26327,8,40,18,0.0 +26327,58,13.25,23,0.0 +26327,54,7.45,5,0.0 +26327,62,49.3,15,0.0 +26327,26,31.23,11,0.0 +26327,15,15.5,12,0.0 +26328,20,81,34,0.0 +26328,9,97,47,0.0 +26328,53,32.8,44,0.0 +26328,24,4.5,27,0.0 +26328,52,7,37,0.0 +26328,5,21.35,24,0.0 +26328,65,21.05,21,0.0 +26328,12,38,39,0.0 +26328,56,38,21,0.0 +26328,58,13.25,24,0.0 +26328,6,25,5,0.0 +26328,17,39,10,0.0 +26328,38,263.5,48,0.0 +26328,62,49.3,8,0.0 +26328,19,9.2,44,0.0 +26328,70,15,33,0.0 +26328,31,12.5,28,0.0 +26328,7,30,22,0.0 +26328,22,21,6,0.0 +26328,27,43.9,9,0.0 +26328,18,62.5,37,0.0 +26328,40,18.4,11,0.0 +26328,37,26,32,0.0 +26328,32,32,27,0.0 +26328,16,17.45,46,0.0 +26328,75,7.75,10,0.0 +26328,61,28.5,38,0.0 +26328,14,23.25,33,0.0 +26328,46,12,43,0.0 +26328,26,31.23,28,0.0 +26328,3,10,31,0.0 +26328,76,18,40,0.0 +26328,4,22,42,0.0 +26328,77,13,38,0.0 +26328,63,43.9,50,0.0 +26328,67,14,20,0.0 +26328,42,14,25,0.0 +26328,48,12.75,34,0.0 +26328,51,53,49,0.0 +26328,66,17,5,0.0 +26328,2,19,10,0.0 +26328,15,15.5,42,0.0 +26328,60,34,48,0.0 +26328,74,10,2,0.0 +26328,39,18,15,0.0 +26328,21,10,28,0.0 +26328,50,16.25,8,0.0 +26328,47,9.5,29,0.0 +26328,11,21,9,0.0 +26328,54,7.45,24,0.0 +26328,72,34.8,9,0.0 +26328,49,20,29,0.0 +26328,68,12.5,19,0.0 +26328,59,55,43,0.0 +26328,64,33.25,16,0.0 +26328,30,25.89,27,0.0 +26328,69,36,9,0.0 +26328,57,19.5,8,0.0 +26328,73,15,19,0.0 +26328,1,18,40,0.0 +26328,71,21.5,2,0.0 +26328,41,9.65,45,0.0 +26328,45,9.5,34,0.0 +26328,8,40,14,0.0 +26328,23,9,44,0.0 +26328,34,14,44,0.0 +26328,55,24,22,0.0 +26328,28,45.6,13,0.0 +26328,43,46,28,0.0 +26328,44,19.45,16,0.0 +26328,10,31,24,0.0 +26328,13,6,39,0.0 +26328,25,14,29,0.0 +26329,57,19.5,7,0.0 +26329,2,19,33,0.0 +26329,39,18,41,0.0 +26329,49,20,36,0.0 +26329,50,16.25,40,0.0 +26329,5,21.35,15,0.0 +26329,6,25,46,0.0 +26329,70,15,14,0.0 +26329,71,21.5,50,0.0 +26329,75,7.75,25,0.0 +26329,44,19.45,24,0.0 +26329,31,12.5,6,0.0 +26329,66,17,49,0.0 +26329,3,10,47,0.0 +26329,14,23.25,37,0.0 +26329,65,21.05,40,0.0 +26329,25,14,39,0.0 +26329,63,43.9,50,0.0 +26329,37,26,21,0.0 +26329,17,39,47,0.0 +26329,27,43.9,19,0.0 +26329,73,15,43,0.0 +26329,76,18,47,0.0 +26329,40,18.4,50,0.0 +26329,13,6,9,0.0 +26329,51,53,26,0.0 +26329,15,15.5,6,0.0 +26329,60,34,39,0.0 +26329,55,24,5,0.0 +26329,69,36,12,0.0 +26329,8,40,10,0.0 +26330,41,9.65,24,0.0 +26330,4,22,10,0.0 +26330,32,32,3,0.0 +26330,59,55,27,0.0 +26330,24,4.5,26,0.0 +26330,53,32.8,27,0.0 +26330,52,7,48,0.0 +26330,15,15.5,24,0.0 +26330,6,25,37,0.0 +26330,42,14,1,0.0 +26330,22,21,21,0.0 +26330,25,14,33,0.0 +26330,26,31.23,29,0.0 +26330,36,19,43,0.0 +26330,43,46,47,0.0 +26330,71,21.5,45,0.0 +26330,47,9.5,37,0.0 +26330,49,20,38,0.0 +26330,65,21.05,35,0.0 +26330,12,38,31,0.0 +26330,20,81,33,0.0 +26330,29,123.79,40,0.0 +26330,69,36,3,0.0 +26330,8,40,9,0.0 +26330,50,16.25,36,0.0 +26330,74,10,25,0.0 +26330,34,14,49,0.0 +26330,28,45.6,46,0.0 +26330,57,19.5,6,0.0 +26330,58,13.25,16,0.0 +26330,13,6,18,0.0 +26330,23,9,22,0.0 +26330,75,7.75,21,0.0 +26330,45,9.5,45,0.0 +26330,21,10,8,0.0 +26330,63,43.9,30,0.0 +26330,72,34.8,36,0.0 +26330,56,38,50,0.0 +26330,67,14,5,0.0 +26330,37,26,11,0.0 +26330,27,43.9,31,0.0 +26330,7,30,7,0.0 +26330,64,33.25,5,0.0 +26330,60,34,3,0.0 +26330,5,21.35,6,0.0 +26330,48,12.75,2,0.0 +26330,10,31,43,0.0 +26330,66,17,5,0.0 +26330,46,12,24,0.0 +26330,3,10,2,0.0 +26330,9,97,34,0.0 +26330,33,2.5,41,0.0 +26330,1,18,12,0.0 +26330,18,62.5,10,0.0 +26330,16,17.45,23,0.0 +26330,17,39,36,0.0 +26330,76,18,48,0.0 +26330,70,15,23,0.0 +26330,62,49.3,47,0.0 +26330,44,19.45,42,0.0 +26330,40,18.4,7,0.0 +26330,39,18,8,0.0 +26330,30,25.89,11,0.0 +26330,31,12.5,22,0.0 +26330,61,28.5,15,0.0 +26330,77,13,47,0.0 +26330,35,18,10,0.0 +26330,51,53,7,0.0 +26330,11,21,12,0.0 +26330,55,24,29,0.0 +26330,19,9.2,23,0.0 +26330,2,19,28,0.0 +26330,38,263.5,12,0.0 +26330,68,12.5,24,0.0 +26330,54,7.45,20,0.0 +26331,63,43.9,31,0.0 +26331,56,38,6,0.0 +26331,21,10,33,0.0 +26331,30,25.89,7,0.0 +26331,7,30,49,0.0 +26331,19,9.2,7,0.0 +26331,77,13,27,0.0 +26331,50,16.25,10,0.0 +26331,41,9.65,11,0.0 +26331,62,49.3,32,0.0 +26331,40,18.4,25,0.0 +26331,71,21.5,41,0.0 +26331,20,81,6,0.0 +26331,26,31.23,3,0.0 +26331,66,17,39,0.0 +26331,49,20,39,0.0 +26331,31,12.5,23,0.0 +26331,24,4.5,28,0.0 +26331,16,17.45,27,0.0 +26331,17,39,46,0.0 +26331,15,15.5,5,0.0 +26331,11,21,5,0.0 +26331,68,12.5,22,0.0 +26331,1,18,16,0.0 +26331,2,19,40,0.0 +26331,3,10,38,0.0 +26331,14,23.25,8,0.0 +26331,54,7.45,18,0.0 +26331,6,25,6,0.0 +26331,32,32,31,0.0 +26331,8,40,31,0.0 +26331,36,19,49,0.0 +26331,48,12.75,4,0.0 +26331,18,62.5,41,0.0 +26331,12,38,21,0.0 +26331,45,9.5,23,0.0 +26331,13,6,47,0.0 +26331,76,18,6,0.0 +26331,9,97,20,0.0 +26331,75,7.75,32,0.0 +26331,39,18,23,0.0 +26331,53,32.8,43,0.0 +26331,35,18,44,0.0 +26331,73,15,18,0.0 +26331,74,10,38,0.0 +26331,69,36,29,0.0 +26331,52,7,14,0.0 +26331,64,33.25,39,0.0 +26331,5,21.35,5,0.0 +26331,10,31,18,0.0 +26331,33,2.5,1,0.0 +26331,60,34,31,0.0 +26331,51,53,14,0.0 +26331,27,43.9,35,0.0 +26331,58,13.25,48,0.0 +26331,44,19.45,14,0.0 +26331,47,9.5,29,0.0 +26331,72,34.8,3,0.0 +26331,61,28.5,41,0.0 +26331,70,15,34,0.0 +26331,42,14,34,0.0 +26331,57,19.5,2,0.0 +26331,34,14,38,0.0 +26332,47,9.5,34,0.0 +26332,41,9.65,25,0.0 +26332,2,19,14,0.0 +26332,37,26,41,0.0 +26332,43,46,10,0.0 +26332,12,38,18,0.0 +26332,21,10,36,0.0 +26332,4,22,9,0.0 +26332,13,6,3,0.0 +26332,28,45.6,45,0.0 +26332,24,4.5,20,0.0 +26332,64,33.25,26,0.0 +26332,29,123.79,17,0.0 +26332,62,49.3,10,0.0 +26332,46,12,7,0.0 +26332,26,31.23,33,0.0 +26332,53,32.8,18,0.0 +26332,67,14,35,0.0 +26332,74,10,35,0.0 +26332,49,20,23,0.0 +26332,56,38,37,0.0 +26332,20,81,39,0.0 +26332,15,15.5,37,0.0 +26332,16,17.45,5,0.0 +26332,42,14,26,0.0 +26332,51,53,49,0.0 +26332,23,9,5,0.0 +26332,17,39,20,0.0 +26332,31,12.5,49,0.0 +26332,1,18,43,0.0 +26332,35,18,35,0.0 +26332,33,2.5,29,0.0 +26332,73,15,2,0.0 +26332,44,19.45,42,0.0 +26332,75,7.75,3,0.0 +26332,48,12.75,49,0.0 +26332,69,36,32,0.0 +26332,9,97,1,0.0 +26332,7,30,27,0.0 +26332,72,34.8,19,0.0 +26332,39,18,43,0.0 +26332,36,19,13,0.0 +26332,55,24,31,0.0 +26332,63,43.9,16,0.0 +26332,76,18,41,0.0 +26332,54,7.45,17,0.0 +26332,6,25,46,0.0 +26332,61,28.5,48,0.0 +26332,60,34,46,0.0 +26332,65,21.05,16,0.0 +26332,68,12.5,28,0.0 +26332,32,32,37,0.0 +26332,22,21,47,0.0 +26332,5,21.35,10,0.0 +26332,77,13,40,0.0 +26332,25,14,2,0.0 +26332,19,9.2,24,0.0 +26333,59,55,33,0.0 +26333,16,17.45,20,0.0 +26333,34,14,47,0.0 +26333,40,18.4,34,0.0 +26333,58,13.25,4,0.0 +26333,6,25,26,0.0 +26333,67,14,16,0.0 +26333,57,19.5,7,0.0 +26333,36,19,32,0.0 +26333,13,6,35,0.0 +26333,38,263.5,2,0.0 +26333,60,34,32,0.0 +26333,47,9.5,25,0.0 +26333,74,10,46,0.0 +26333,66,17,50,0.0 +26333,1,18,3,0.0 +26333,69,36,27,0.0 +26333,4,22,9,0.0 +26333,73,15,28,0.0 +26333,26,31.23,6,0.0 +26333,51,53,48,0.0 +26333,42,14,6,0.0 +26333,61,28.5,35,0.0 +26333,56,38,30,0.0 +26333,32,32,17,0.0 +26333,46,12,34,0.0 +26333,2,19,46,0.0 +26333,14,23.25,37,0.0 +26333,76,18,39,0.0 +26333,70,15,19,0.0 +26333,63,43.9,12,0.0 +26333,8,40,36,0.0 +26333,21,10,40,0.0 +26333,39,18,40,0.0 +26333,20,81,42,0.0 +26333,18,62.5,48,0.0 +26333,71,21.5,34,0.0 +26333,77,13,21,0.0 +26333,48,12.75,49,0.0 +26333,62,49.3,24,0.0 +26333,27,43.9,9,0.0 +26333,52,7,12,0.0 +26333,68,12.5,29,0.0 +26333,45,9.5,17,0.0 +26333,29,123.79,33,0.0 +26333,28,45.6,25,0.0 +26333,5,21.35,13,0.0 +26333,43,46,31,0.0 +26333,49,20,48,0.0 +26333,72,34.8,35,0.0 +26333,41,9.65,20,0.0 +26333,22,21,37,0.0 +26333,23,9,30,0.0 +26333,25,14,1,0.0 +26333,54,7.45,2,0.0 +26333,65,21.05,22,0.0 +26333,35,18,25,0.0 +26333,55,24,49,0.0 +26333,64,33.25,22,0.0 +26333,24,4.5,42,0.0 +26333,15,15.5,5,0.0 +26333,17,39,22,0.0 +26333,30,25.89,42,0.0 +26333,53,32.8,20,0.0 +26333,19,9.2,34,0.0 +26333,3,10,6,0.0 +26333,37,26,38,0.0 +26333,33,2.5,18,0.0 +26333,31,12.5,34,0.0 +26333,50,16.25,18,0.0 +26333,10,31,41,0.0 +26334,49,20,5,0.0 +26334,55,24,20,0.0 +26334,65,21.05,34,0.0 +26334,28,45.6,24,0.0 +26334,44,19.45,2,0.0 +26334,27,43.9,48,0.0 +26334,15,15.5,1,0.0 +26334,61,28.5,49,0.0 +26334,21,10,27,0.0 +26334,69,36,45,0.0 +26334,34,14,2,0.0 +26334,30,25.89,46,0.0 +26334,24,4.5,9,0.0 +26334,31,12.5,34,0.0 +26334,29,123.79,6,0.0 +26334,43,46,6,0.0 +26334,22,21,11,0.0 +26334,10,31,13,0.0 +26334,46,12,37,0.0 +26334,35,18,21,0.0 +26334,76,18,8,0.0 +26334,6,25,16,0.0 +26334,74,10,30,0.0 +26334,32,32,12,0.0 +26334,60,34,25,0.0 +26334,19,9.2,14,0.0 +26334,33,2.5,22,0.0 +26334,50,16.25,47,0.0 +26334,2,19,40,0.0 +26334,5,21.35,4,0.0 +26334,23,9,36,0.0 +26334,56,38,45,0.0 +26334,42,14,15,0.0 +26334,57,19.5,49,0.0 +26334,77,13,16,0.0 +26334,7,30,28,0.0 +26334,72,34.8,47,0.0 +26334,37,26,47,0.0 +26334,58,13.25,40,0.0 +26334,59,55,16,0.0 +26334,18,62.5,43,0.0 +26334,16,17.45,6,0.0 +26334,1,18,38,0.0 +26334,67,14,28,0.0 +26334,38,263.5,33,0.0 +26334,47,9.5,44,0.0 +26334,20,81,23,0.0 +26334,41,9.65,15,0.0 +26334,48,12.75,4,0.0 +26334,17,39,22,0.0 +26334,51,53,49,0.0 +26334,64,33.25,47,0.0 +26334,53,32.8,12,0.0 +26334,36,19,19,0.0 +26334,71,21.5,9,0.0 +26334,13,6,1,0.0 +26334,40,18.4,46,0.0 +26334,14,23.25,24,0.0 +26334,63,43.9,37,0.0 +26334,12,38,45,0.0 +26334,52,7,29,0.0 +26334,45,9.5,15,0.0 +26334,3,10,2,0.0 +26335,14,23.25,13,0.0 +26335,52,7,25,0.0 +26335,34,14,11,0.0 +26335,13,6,16,0.0 +26335,26,31.23,30,0.0 +26335,44,19.45,1,0.0 +26335,20,81,35,0.0 +26335,29,123.79,2,0.0 +26335,69,36,19,0.0 +26335,2,19,18,0.0 +26335,18,62.5,47,0.0 +26335,38,263.5,5,0.0 +26335,23,9,47,0.0 +26335,59,55,43,0.0 +26335,67,14,35,0.0 +26335,8,40,44,0.0 +26335,3,10,35,0.0 +26335,57,19.5,2,0.0 +26335,73,15,39,0.0 +26335,63,43.9,4,0.0 +26335,46,12,11,0.0 +26335,65,21.05,41,0.0 +26336,9,97,44,0.0 +26336,53,32.8,6,0.0 +26336,64,33.25,5,0.0 +26336,18,62.5,20,0.0 +26336,73,15,47,0.0 +26336,47,9.5,23,0.0 +26336,40,18.4,34,0.0 +26337,64,33.25,20,0.0 +26337,72,34.8,44,0.0 +26337,25,14,33,0.0 +26337,43,46,17,0.0 +26337,76,18,50,0.0 +26337,65,21.05,36,0.0 +26337,4,22,7,0.0 +26337,34,14,50,0.0 +26337,5,21.35,29,0.0 +26337,33,2.5,21,0.0 +26337,40,18.4,48,0.0 +26337,37,26,30,0.0 +26337,31,12.5,35,0.0 +26337,3,10,17,0.0 +26337,36,19,9,0.0 +26337,28,45.6,14,0.0 +26337,51,53,10,0.0 +26337,70,15,46,0.0 +26337,9,97,27,0.0 +26337,50,16.25,24,0.0 +26338,47,9.5,44,0.0 +26338,6,25,34,0.0 +26338,57,19.5,21,0.0 +26338,59,55,3,0.0 +26338,72,34.8,47,0.0 +26338,58,13.25,1,0.0 +26338,69,36,34,0.0 +26338,73,15,6,0.0 +26338,13,6,3,0.0 +26338,68,12.5,39,0.0 +26338,75,7.75,2,0.0 +26338,55,24,7,0.0 +26338,64,33.25,49,0.0 +26338,53,32.8,23,0.0 +26338,14,23.25,37,0.0 +26338,29,123.79,29,0.0 +26338,18,62.5,8,0.0 +26338,76,18,42,0.0 +26338,11,21,9,0.0 +26338,34,14,13,0.0 +26338,12,38,15,0.0 +26338,66,17,31,0.0 +26338,62,49.3,17,0.0 +26338,49,20,19,0.0 +26338,46,12,18,0.0 +26338,56,38,27,0.0 +26338,51,53,24,0.0 +26338,63,43.9,47,0.0 +26338,35,18,48,0.0 +26338,52,7,47,0.0 +26338,70,15,43,0.0 +26338,37,26,31,0.0 +26338,77,13,14,0.0 +26338,24,4.5,42,0.0 +26338,21,10,49,0.0 +26338,25,14,39,0.0 +26338,43,46,20,0.0 +26338,5,21.35,1,0.0 +26338,41,9.65,9,0.0 +26338,30,25.89,1,0.0 +26338,32,32,50,0.0 +26338,28,45.6,28,0.0 +26338,48,12.75,9,0.0 +26339,59,55,22,0.0 +26339,77,13,34,0.0 +26339,14,23.25,19,0.0 +26339,29,123.79,36,0.0 +26339,1,18,6,0.0 +26339,33,2.5,49,0.0 +26339,35,18,11,0.0 +26339,64,33.25,6,0.0 +26339,31,12.5,12,0.0 +26339,2,19,10,0.0 +26339,4,22,41,0.0 +26339,70,15,5,0.0 +26339,7,30,3,0.0 +26339,69,36,39,0.0 +26339,62,49.3,48,0.0 +26339,58,13.25,15,0.0 +26339,46,12,32,0.0 +26339,71,21.5,49,0.0 +26339,57,19.5,48,0.0 +26339,47,9.5,32,0.0 +26339,49,20,35,0.0 +26339,22,21,1,0.0 +26339,67,14,2,0.0 +26339,72,34.8,18,0.0 +26339,76,18,15,0.0 +26339,52,7,32,0.0 +26339,74,10,43,0.0 +26339,26,31.23,32,0.0 +26339,45,9.5,12,0.0 +26339,51,53,28,0.0 +26339,16,17.45,27,0.0 +26339,40,18.4,4,0.0 +26339,38,263.5,39,0.0 +26339,55,24,2,0.0 +26339,63,43.9,30,0.0 +26339,53,32.8,25,0.0 +26339,28,45.6,35,0.0 +26339,24,4.5,35,0.0 +26339,39,18,35,0.0 +26339,21,10,48,0.0 +26339,48,12.75,29,0.0 +26339,3,10,36,0.0 +26339,8,40,4,0.0 +26339,43,46,41,0.0 +26339,61,28.5,4,0.0 +26339,37,26,25,0.0 +26339,18,62.5,43,0.0 +26339,19,9.2,5,0.0 +26339,36,19,17,0.0 +26339,17,39,48,0.0 +26339,32,32,1,0.0 +26339,60,34,27,0.0 +26339,68,12.5,48,0.0 +26339,20,81,50,0.0 +26339,25,14,31,0.0 +26339,9,97,22,0.0 +26339,15,15.5,4,0.0 +26339,13,6,35,0.0 +26339,6,25,31,0.0 +26339,27,43.9,38,0.0 +26339,41,9.65,18,0.0 +26339,23,9,47,0.0 +26339,56,38,29,0.0 +26339,30,25.89,11,0.0 +26339,12,38,25,0.0 +26339,65,21.05,39,0.0 +26339,66,17,24,0.0 +26339,10,31,33,0.0 +26339,54,7.45,17,0.0 +26339,75,7.75,47,0.0 +26339,11,21,2,0.0 +26339,44,19.45,30,0.0 +26339,42,14,31,0.0 +26339,50,16.25,13,0.0 +26339,73,15,27,0.0 +26340,2,19,31,0.0 +26340,72,34.8,1,0.0 +26340,58,13.25,5,0.0 +26340,26,31.23,48,0.0 +26340,56,38,42,0.0 +26340,37,26,20,0.0 +26340,70,15,34,0.0 +26340,12,38,25,0.0 +26340,33,2.5,10,0.0 +26340,53,32.8,13,0.0 +26340,69,36,46,0.0 +26340,32,32,30,0.0 +26340,4,22,43,0.0 +26340,35,18,23,0.0 +26340,42,14,42,0.0 +26340,22,21,30,0.0 +26340,63,43.9,42,0.0 +26340,30,25.89,37,0.0 +26340,17,39,34,0.0 +26340,3,10,40,0.0 +26340,47,9.5,23,0.0 +26340,13,6,25,0.0 +26340,45,9.5,31,0.0 +26340,14,23.25,2,0.0 +26340,18,62.5,20,0.0 +26340,62,49.3,13,0.0 +26340,38,263.5,15,0.0 +26340,66,17,17,0.0 +26340,46,12,9,0.0 +26340,75,7.75,17,0.0 +26340,57,19.5,2,0.0 +26340,60,34,32,0.0 +26340,49,20,5,0.0 +26340,55,24,47,0.0 +26340,24,4.5,42,0.0 +26340,25,14,8,0.0 +26340,54,7.45,13,0.0 +26340,67,14,1,0.0 +26340,9,97,30,0.0 +26340,36,19,35,0.0 +26340,29,123.79,1,0.0 +26340,10,31,10,0.0 +26340,39,18,16,0.0 +26340,71,21.5,17,0.0 +26340,7,30,38,0.0 +26340,5,21.35,5,0.0 +26340,44,19.45,34,0.0 +26340,52,7,19,0.0 +26340,73,15,2,0.0 +26340,19,9.2,1,0.0 +26340,40,18.4,34,0.0 +26340,34,14,6,0.0 +26340,20,81,41,0.0 +26340,1,18,4,0.0 +26340,6,25,16,0.0 +26340,27,43.9,19,0.0 +26340,41,9.65,8,0.0 +26340,31,12.5,15,0.0 +26340,15,15.5,33,0.0 +26340,59,55,3,0.0 +26340,51,53,39,0.0 +26340,76,18,46,0.0 +26340,68,12.5,19,0.0 +26340,23,9,47,0.0 +26340,21,10,46,0.0 +26341,53,32.8,15,0.0 +26341,76,18,10,0.0 +26341,9,97,30,0.0 +26341,40,18.4,27,0.0 +26341,65,21.05,45,0.0 +26341,39,18,6,0.0 +26341,35,18,4,0.0 +26341,47,9.5,5,0.0 +26341,22,21,33,0.0 +26341,34,14,27,0.0 +26341,64,33.25,35,0.0 +26341,23,9,14,0.0 +26341,3,10,13,0.0 +26341,48,12.75,40,0.0 +26341,41,9.65,34,0.0 +26341,75,7.75,24,0.0 +26341,28,45.6,43,0.0 +26341,67,14,38,0.0 +26341,54,7.45,40,0.0 +26341,30,25.89,50,0.0 +26341,49,20,42,0.0 +26341,61,28.5,4,0.0 +26341,56,38,45,0.0 +26341,18,62.5,45,0.0 +26341,73,15,4,0.0 +26341,62,49.3,4,0.0 +26341,4,22,27,0.0 +26341,68,12.5,17,0.0 +26341,16,17.45,19,0.0 +26341,74,10,34,0.0 +26341,19,9.2,38,0.0 +26341,55,24,39,0.0 +26341,57,19.5,25,0.0 +26341,13,6,31,0.0 +26341,33,2.5,10,0.0 +26341,1,18,43,0.0 +26341,32,32,18,0.0 +26341,59,55,24,0.0 +26341,14,23.25,38,0.0 +26341,38,263.5,20,0.0 +26341,72,34.8,20,0.0 +26341,15,15.5,38,0.0 +26341,20,81,40,0.0 +26341,42,14,11,0.0 +26341,27,43.9,17,0.0 +26341,29,123.79,37,0.0 +26341,63,43.9,31,0.0 +26341,45,9.5,34,0.0 +26341,12,38,5,0.0 +26341,37,26,15,0.0 +26341,50,16.25,31,0.0 +26341,5,21.35,3,0.0 +26341,51,53,16,0.0 +26341,26,31.23,12,0.0 +26341,70,15,24,0.0 +26341,43,46,21,0.0 +26341,11,21,11,0.0 +26341,10,31,39,0.0 +26341,71,21.5,18,0.0 +26341,31,12.5,30,0.0 +26341,21,10,24,0.0 +26341,69,36,40,0.0 +26341,6,25,34,0.0 +26342,74,10,23,0.0 +26342,16,17.45,1,0.0 +26342,73,15,17,0.0 +26342,49,20,33,0.0 +26342,55,24,8,0.0 +26342,32,32,38,0.0 +26342,34,14,15,0.0 +26342,43,46,32,0.0 +26342,70,15,14,0.0 +26342,40,18.4,28,0.0 +26342,29,123.79,39,0.0 +26342,5,21.35,9,0.0 +26342,8,40,46,0.0 +26342,46,12,4,0.0 +26342,15,15.5,18,0.0 +26342,59,55,18,0.0 +26342,9,97,4,0.0 +26342,53,32.8,2,0.0 +26342,38,263.5,9,0.0 +26342,69,36,44,0.0 +26342,14,23.25,27,0.0 +26342,20,81,10,0.0 +26342,77,13,40,0.0 +26342,62,49.3,16,0.0 +26342,44,19.45,9,0.0 +26342,56,38,1,0.0 +26342,11,21,29,0.0 +26342,35,18,11,0.0 +26342,67,14,35,0.0 +26342,27,43.9,16,0.0 +26342,48,12.75,37,0.0 +26342,30,25.89,41,0.0 +26342,2,19,10,0.0 +26342,42,14,1,0.0 +26342,7,30,40,0.0 +26342,24,4.5,30,0.0 +26342,75,7.75,42,0.0 +26342,51,53,22,0.0 +26342,64,33.25,39,0.0 +26342,37,26,4,0.0 +26342,13,6,7,0.0 +26342,58,13.25,39,0.0 +26342,28,45.6,19,0.0 +26342,61,28.5,1,0.0 +26342,12,38,40,0.0 +26342,52,7,14,0.0 +26342,31,12.5,15,0.0 +26342,33,2.5,27,0.0 +26342,17,39,43,0.0 +26342,50,16.25,6,0.0 +26342,18,62.5,48,0.0 +26342,45,9.5,13,0.0 +26342,3,10,15,0.0 +26342,4,22,50,0.0 +26342,26,31.23,6,0.0 +26342,6,25,33,0.0 +26342,47,9.5,42,0.0 +26342,54,7.45,9,0.0 +26342,36,19,12,0.0 +26342,72,34.8,12,0.0 +26342,19,9.2,9,0.0 +26342,23,9,33,0.0 +26342,68,12.5,13,0.0 +26342,76,18,24,0.0 +26342,25,14,38,0.0 +26342,63,43.9,13,0.0 +26342,71,21.5,50,0.0 +26342,10,31,17,0.0 +26342,66,17,11,0.0 +26342,22,21,40,0.0 +26342,60,34,50,0.0 +26342,1,18,36,0.0 +26342,57,19.5,39,0.0 +26343,35,18,46,0.0 +26343,32,32,30,0.0 +26343,48,12.75,19,0.0 +26343,70,15,43,0.0 +26343,36,19,5,0.0 +26343,53,32.8,13,0.0 +26343,21,10,50,0.0 +26343,73,15,45,0.0 +26343,59,55,35,0.0 +26343,34,14,50,0.0 +26343,8,40,4,0.0 +26343,65,21.05,31,0.0 +26343,19,9.2,27,0.0 +26343,26,31.23,20,0.0 +26343,20,81,47,0.0 +26343,7,30,33,0.0 +26343,25,14,26,0.0 +26343,49,20,35,0.0 +26343,29,123.79,47,0.0 +26343,54,7.45,30,0.0 +26343,1,18,16,0.0 +26343,6,25,38,0.0 +26343,42,14,46,0.0 +26343,10,31,38,0.0 +26343,72,34.8,45,0.0 +26343,52,7,7,0.0 +26343,69,36,36,0.0 +26343,9,97,20,0.0 +26343,15,15.5,11,0.0 +26343,66,17,29,0.0 +26343,40,18.4,1,0.0 +26343,68,12.5,9,0.0 +26343,11,21,16,0.0 +26343,39,18,23,0.0 +26343,57,19.5,30,0.0 +26343,67,14,50,0.0 +26343,62,49.3,21,0.0 +26343,27,43.9,21,0.0 +26343,61,28.5,24,0.0 +26343,55,24,20,0.0 +26343,46,12,40,0.0 +26343,38,263.5,12,0.0 +26343,47,9.5,17,0.0 +26343,23,9,4,0.0 +26343,50,16.25,24,0.0 +26343,77,13,35,0.0 +26343,44,19.45,16,0.0 +26343,18,62.5,50,0.0 +26343,28,45.6,46,0.0 +26343,14,23.25,35,0.0 +26343,51,53,26,0.0 +26343,33,2.5,12,0.0 +26343,58,13.25,45,0.0 +26343,71,21.5,41,0.0 +26343,45,9.5,10,0.0 +26343,60,34,3,0.0 +26343,24,4.5,2,0.0 +26343,76,18,19,0.0 +26343,3,10,2,0.0 +26343,16,17.45,49,0.0 +26343,13,6,5,0.0 +26343,17,39,45,0.0 +26344,32,32,8,0.0 +26344,19,9.2,20,0.0 +26344,52,7,50,0.0 +26344,71,21.5,20,0.0 +26344,35,18,13,0.0 +26344,73,15,11,0.0 +26344,28,45.6,12,0.0 +26344,74,10,40,0.0 +26344,67,14,33,0.0 +26344,69,36,36,0.0 +26344,66,17,16,0.0 +26344,5,21.35,7,0.0 +26344,2,19,10,0.0 +26344,51,53,44,0.0 +26344,42,14,38,0.0 +26344,27,43.9,10,0.0 +26344,25,14,36,0.0 +26344,24,4.5,27,0.0 +26344,45,9.5,50,0.0 +26344,41,9.65,16,0.0 +26345,33,2.5,49,0.0 +26346,1,18,48,0.0 +26346,40,18.4,25,0.0 +26346,31,12.5,43,0.0 +26346,3,10,45,0.0 +26346,37,26,15,0.0 +26346,74,10,45,0.0 +26346,62,49.3,23,0.0 +26346,23,9,19,0.0 +26346,67,14,37,0.0 +26346,4,22,5,0.0 +26346,73,15,20,0.0 +26346,64,33.25,13,0.0 +26346,47,9.5,3,0.0 +26346,20,81,3,0.0 +26346,71,21.5,18,0.0 +26346,2,19,30,0.0 +26346,72,34.8,21,0.0 +26346,17,39,12,0.0 +26346,21,10,15,0.0 +26346,66,17,16,0.0 +26346,10,31,15,0.0 +26347,6,25,46,0.0 +26347,2,19,23,0.0 +26347,18,62.5,35,0.0 +26347,7,30,14,0.0 +26347,21,10,45,0.0 +26347,12,38,33,0.0 +26347,17,39,38,0.0 +26347,60,34,47,0.0 +26347,8,40,13,0.0 +26347,46,12,27,0.0 +26347,9,97,42,0.0 +26347,22,21,9,0.0 +26347,68,12.5,20,0.0 +26347,37,26,22,0.0 +26347,20,81,21,0.0 +26347,24,4.5,49,0.0 +26347,71,21.5,6,0.0 +26347,30,25.89,23,0.0 +26347,52,7,30,0.0 +26347,25,14,24,0.0 +26347,23,9,15,0.0 +26347,29,123.79,38,0.0 +26347,32,32,41,0.0 +26347,62,49.3,17,0.0 +26347,72,34.8,31,0.0 +26347,58,13.25,19,0.0 +26347,70,15,20,0.0 +26347,19,9.2,11,0.0 +26347,33,2.5,1,0.0 +26347,3,10,4,0.0 +26347,63,43.9,12,0.0 +26347,39,18,12,0.0 +26347,44,19.45,15,0.0 +26347,66,17,32,0.0 +26347,76,18,50,0.0 +26347,15,15.5,2,0.0 +26347,43,46,15,0.0 +26347,40,18.4,48,0.0 +26347,36,19,19,0.0 +26347,56,38,8,0.0 +26348,23,9,21,0.0 +26348,22,21,37,0.0 +26348,1,18,26,0.0 +26348,17,39,12,0.0 +26348,66,17,18,0.0 +26348,45,9.5,20,0.0 +26348,29,123.79,36,0.0 +26348,69,36,10,0.0 +26348,54,7.45,12,0.0 +26348,51,53,29,0.0 +26348,19,9.2,6,0.0 +26348,36,19,23,0.0 +26348,11,21,40,0.0 +26348,74,10,26,0.0 +26348,73,15,10,0.0 +26348,38,263.5,12,0.0 +26348,43,46,42,0.0 +26348,3,10,4,0.0 +26348,5,21.35,18,0.0 +26348,26,31.23,27,0.0 +26348,46,12,33,0.0 +26348,48,12.75,1,0.0 +26348,34,14,39,0.0 +26348,72,34.8,30,0.0 +26348,44,19.45,7,0.0 +26348,50,16.25,3,0.0 +26348,49,20,31,0.0 +26348,56,38,46,0.0 +26348,60,34,42,0.0 +26348,63,43.9,31,0.0 +26348,68,12.5,36,0.0 +26348,62,49.3,14,0.0 +26348,4,22,13,0.0 +26348,67,14,31,0.0 +26348,30,25.89,27,0.0 +26349,73,15,35,0.0 +26349,68,12.5,7,0.0 +26349,74,10,39,0.0 +26349,46,12,7,0.0 +26349,24,4.5,12,0.0 +26350,12,38,27,0.0 +26350,17,39,2,0.0 +26350,44,19.45,11,0.0 +26350,68,12.5,22,0.0 +26350,7,30,24,0.0 +26350,34,14,46,0.0 +26350,58,13.25,3,0.0 +26350,36,19,10,0.0 +26351,27,43.9,8,0.0 +26351,19,9.2,23,0.0 +26351,52,7,13,0.0 +26351,71,21.5,12,0.0 +26351,24,4.5,14,0.0 +26351,4,22,30,0.0 +26351,46,12,15,0.0 +26351,43,46,49,0.0 +26351,13,6,43,0.0 +26351,11,21,4,0.0 +26351,51,53,41,0.0 +26351,76,18,48,0.0 +26351,16,17.45,50,0.0 +26351,21,10,35,0.0 +26351,55,24,3,0.0 +26351,2,19,32,0.0 +26351,57,19.5,39,0.0 +26351,40,18.4,19,0.0 +26351,59,55,15,0.0 +26351,3,10,27,0.0 +26351,65,21.05,15,0.0 +26351,69,36,40,0.0 +26351,9,97,33,0.0 +26351,72,34.8,41,0.0 +26351,53,32.8,28,0.0 +26351,61,28.5,4,0.0 +26351,64,33.25,11,0.0 +26351,1,18,36,0.0 +26351,12,38,43,0.0 +26351,60,34,37,0.0 +26351,41,9.65,27,0.0 +26351,23,9,21,0.0 +26351,33,2.5,5,0.0 +26351,22,21,31,0.0 +26351,20,81,49,0.0 +26351,39,18,2,0.0 +26351,50,16.25,49,0.0 +26351,15,15.5,42,0.0 +26351,47,9.5,2,0.0 +26351,68,12.5,27,0.0 +26351,44,19.45,5,0.0 +26351,25,14,23,0.0 +26351,10,31,50,0.0 +26351,34,14,31,0.0 +26351,48,12.75,35,0.0 +26351,14,23.25,7,0.0 +26351,29,123.79,14,0.0 +26351,28,45.6,27,0.0 +26351,77,13,40,0.0 +26351,45,9.5,50,0.0 +26351,32,32,37,0.0 +26351,6,25,38,0.0 +26351,66,17,19,0.0 +26351,63,43.9,27,0.0 +26351,58,13.25,32,0.0 +26351,70,15,10,0.0 +26351,17,39,12,0.0 +26351,36,19,42,0.0 +26351,18,62.5,28,0.0 +26351,7,30,37,0.0 +26351,75,7.75,7,0.0 +26351,31,12.5,25,0.0 +26351,26,31.23,43,0.0 +26351,56,38,50,0.0 +26351,35,18,7,0.0 +26351,54,7.45,1,0.0 +26351,74,10,15,0.0 +26351,49,20,14,0.0 +26351,30,25.89,2,0.0 +26352,58,13.25,2,0.0 +26352,44,19.45,42,0.0 +26352,10,31,50,0.0 +26352,61,28.5,35,0.0 +26352,56,38,12,0.0 +26352,29,123.79,18,0.0 +26352,16,17.45,16,0.0 +26352,23,9,29,0.0 +26352,76,18,32,0.0 +26352,17,39,30,0.0 +26352,41,9.65,37,0.0 +26352,68,12.5,44,0.0 +26352,20,81,45,0.0 +26353,56,38,37,0.0 +26353,57,19.5,33,0.0 +26353,3,10,5,0.0 +26354,6,25,12,0.0 +26354,41,9.65,22,0.0 +26354,57,19.5,28,0.0 +26354,34,14,43,0.0 +26354,74,10,35,0.0 +26354,60,34,34,0.0 +26354,30,25.89,42,0.0 +26354,51,53,30,0.0 +26354,16,17.45,19,0.0 +26354,27,43.9,35,0.0 +26354,72,34.8,19,0.0 +26354,56,38,31,0.0 +26355,16,17.45,5,0.0 +26355,59,55,47,0.0 +26355,9,97,49,0.0 +26355,29,123.79,43,0.0 +26355,22,21,41,0.0 +26355,63,43.9,4,0.0 +26355,40,18.4,28,0.0 +26355,21,10,31,0.0 +26355,53,32.8,2,0.0 +26355,49,20,25,0.0 +26355,28,45.6,9,0.0 +26355,23,9,16,0.0 +26355,35,18,7,0.0 +26355,41,9.65,22,0.0 +26355,66,17,43,0.0 +26355,11,21,11,0.0 +26355,65,21.05,19,0.0 +26355,69,36,38,0.0 +26355,56,38,8,0.0 +26355,67,14,3,0.0 +26355,47,9.5,32,0.0 +26355,68,12.5,35,0.0 +26355,73,15,40,0.0 +26355,57,19.5,3,0.0 +26355,26,31.23,1,0.0 +26355,7,30,42,0.0 +26355,37,26,50,0.0 +26355,25,14,49,0.0 +26355,3,10,30,0.0 +26355,34,14,5,0.0 +26355,45,9.5,34,0.0 +26356,51,53,44,0.0 +26356,1,18,13,0.0 +26356,53,32.8,35,0.0 +26356,46,12,31,0.0 +26356,39,18,36,0.0 +26356,27,43.9,18,0.0 +26356,59,55,4,0.0 +26356,40,18.4,8,0.0 +26356,52,7,4,0.0 +26356,18,62.5,49,0.0 +26356,7,30,2,0.0 +26356,55,24,47,0.0 +26356,8,40,5,0.0 +26356,9,97,22,0.0 +26357,52,7,33,0.0 +26357,68,12.5,24,0.0 +26357,27,43.9,23,0.0 +26357,30,25.89,36,0.0 +26357,71,21.5,1,0.0 +26357,69,36,30,0.0 +26357,24,4.5,13,0.0 +26357,4,22,45,0.0 +26357,43,46,40,0.0 +26358,68,12.5,2,0.0 +26358,33,2.5,45,0.0 +26358,11,21,17,0.0 +26358,52,7,49,0.0 +26358,34,14,47,0.0 +26358,69,36,22,0.0 +26358,66,17,9,0.0 +26358,2,19,32,0.0 +26358,51,53,36,0.0 +26358,39,18,5,0.0 +26358,15,15.5,23,0.0 +26358,6,25,45,0.0 +26358,49,20,26,0.0 +26358,44,19.45,15,0.0 +26358,47,9.5,23,0.0 +26358,54,7.45,38,0.0 +26358,7,30,43,0.0 +26358,77,13,27,0.0 +26358,43,46,46,0.0 +26358,28,45.6,19,0.0 +26358,46,12,27,0.0 +26358,5,21.35,25,0.0 +26358,21,10,46,0.0 +26358,40,18.4,19,0.0 +26358,26,31.23,27,0.0 +26358,73,15,47,0.0 +26358,55,24,23,0.0 +26358,57,19.5,2,0.0 +26358,3,10,2,0.0 +26358,31,12.5,11,0.0 +26358,64,33.25,3,0.0 +26358,36,19,16,0.0 +26358,20,81,45,0.0 +26358,17,39,41,0.0 +26358,35,18,35,0.0 +26358,23,9,41,0.0 +26358,48,12.75,40,0.0 +26358,18,62.5,12,0.0 +26358,29,123.79,8,0.0 +26358,9,97,17,0.0 +26358,8,40,17,0.0 +26358,62,49.3,8,0.0 +26358,14,23.25,2,0.0 +26358,59,55,35,0.0 +26358,41,9.65,18,0.0 +26358,67,14,40,0.0 +26358,45,9.5,45,0.0 +26358,75,7.75,38,0.0 +26358,53,32.8,30,0.0 +26358,60,34,49,0.0 +26358,13,6,22,0.0 +26358,63,43.9,12,0.0 +26358,70,15,6,0.0 +26358,56,38,11,0.0 +26358,10,31,27,0.0 +26358,71,21.5,17,0.0 +26358,37,26,18,0.0 +26358,38,263.5,25,0.0 +26358,27,43.9,7,0.0 +26358,24,4.5,28,0.0 +26358,72,34.8,47,0.0 +26358,76,18,45,0.0 +26358,19,9.2,34,0.0 +26358,30,25.89,32,0.0 +26358,50,16.25,39,0.0 +26358,42,14,10,0.0 +26359,27,43.9,41,0.0 +26359,46,12,21,0.0 +26359,9,97,10,0.0 +26359,37,26,34,0.0 +26359,17,39,47,0.0 +26359,58,13.25,30,0.0 +26359,47,9.5,9,0.0 +26359,12,38,40,0.0 +26359,8,40,44,0.0 +26359,25,14,41,0.0 +26359,73,15,25,0.0 +26359,20,81,29,0.0 +26359,71,21.5,26,0.0 +26359,64,33.25,14,0.0 +26359,24,4.5,25,0.0 +26359,55,24,37,0.0 +26359,4,22,11,0.0 +26359,66,17,6,0.0 +26359,40,18.4,30,0.0 +26359,29,123.79,12,0.0 +26359,38,263.5,42,0.0 +26359,62,49.3,23,0.0 +26359,60,34,15,0.0 +26359,61,28.5,37,0.0 +26359,34,14,33,0.0 +26360,42,14,26,0.0 +26360,63,43.9,42,0.0 +26360,44,19.45,15,0.0 +26360,6,25,50,0.0 +26360,22,21,14,0.0 +26360,40,18.4,34,0.0 +26360,13,6,49,0.0 +26360,18,62.5,3,0.0 +26360,51,53,49,0.0 +26360,50,16.25,32,0.0 +26360,5,21.35,12,0.0 +26360,64,33.25,18,0.0 +26360,33,2.5,21,0.0 +26360,9,97,16,0.0 +26360,62,49.3,24,0.0 +26360,29,123.79,1,0.0 +26360,67,14,18,0.0 +26360,41,9.65,6,0.0 +26360,25,14,48,0.0 +26360,23,9,14,0.0 +26360,53,32.8,33,0.0 +26360,75,7.75,1,0.0 +26360,24,4.5,9,0.0 +26360,15,15.5,13,0.0 +26360,36,19,16,0.0 +26360,57,19.5,32,0.0 +26360,56,38,43,0.0 +26360,73,15,15,0.0 +26360,17,39,47,0.0 +26360,21,10,25,0.0 +26360,37,26,15,0.0 +26360,32,32,20,0.0 +26360,45,9.5,35,0.0 +26360,49,20,36,0.0 +26360,48,12.75,10,0.0 +26360,35,18,15,0.0 +26360,1,18,4,0.0 +26360,12,38,45,0.0 +26360,30,25.89,1,0.0 +26360,55,24,24,0.0 +26360,26,31.23,48,0.0 +26360,59,55,47,0.0 +26360,77,13,5,0.0 +26360,65,21.05,50,0.0 +26360,54,7.45,3,0.0 +26361,68,12.5,45,0.0 +26361,18,62.5,33,0.0 +26361,70,15,2,0.0 +26361,27,43.9,40,0.0 +26361,43,46,33,0.0 +26361,42,14,38,0.0 +26361,13,6,38,0.0 +26361,17,39,32,0.0 +26361,62,49.3,44,0.0 +26361,66,17,19,0.0 +26361,4,22,36,0.0 +26361,59,55,19,0.0 +26361,52,7,36,0.0 +26361,9,97,1,0.0 +26361,26,31.23,20,0.0 +26361,12,38,38,0.0 +26361,69,36,37,0.0 +26361,46,12,15,0.0 +26361,14,23.25,44,0.0 +26361,5,21.35,16,0.0 +26361,22,21,6,0.0 +26361,50,16.25,32,0.0 +26361,67,14,41,0.0 +26361,64,33.25,22,0.0 +26361,32,32,15,0.0 +26361,41,9.65,2,0.0 +26361,73,15,11,0.0 +26361,16,17.45,20,0.0 +26361,7,30,5,0.0 +26361,30,25.89,31,0.0 +26361,72,34.8,29,0.0 +26361,48,12.75,41,0.0 +26361,19,9.2,6,0.0 +26361,57,19.5,24,0.0 +26361,24,4.5,30,0.0 +26361,35,18,10,0.0 +26361,45,9.5,44,0.0 +26361,76,18,45,0.0 +26361,49,20,29,0.0 +26361,3,10,13,0.0 +26361,74,10,9,0.0 +26361,39,18,24,0.0 +26361,1,18,20,0.0 +26361,53,32.8,46,0.0 +26361,25,14,46,0.0 +26361,20,81,9,0.0 +26361,77,13,47,0.0 +26361,47,9.5,23,0.0 +26361,33,2.5,29,0.0 +26361,15,15.5,39,0.0 +26361,63,43.9,7,0.0 +26361,56,38,30,0.0 +26361,55,24,40,0.0 +26361,11,21,29,0.0 +26361,51,53,30,0.0 +26361,71,21.5,34,0.0 +26361,6,25,21,0.0 +26361,61,28.5,46,0.0 +26361,65,21.05,38,0.0 +26361,34,14,44,0.0 +26361,2,19,9,0.0 +26361,60,34,17,0.0 +26361,10,31,16,0.0 +26361,58,13.25,8,0.0 +26361,23,9,8,0.0 +26361,28,45.6,16,0.0 +26361,37,26,5,0.0 +26361,29,123.79,1,0.0 +26361,8,40,2,0.0 +26361,54,7.45,41,0.0 +26361,31,12.5,28,0.0 +26361,36,19,44,0.0 +26362,54,7.45,24,0.0 +26362,56,38,16,0.0 +26362,33,2.5,37,0.0 +26362,23,9,26,0.0 +26362,4,22,32,0.0 +26362,60,34,7,0.0 +26362,65,21.05,28,0.0 +26362,41,9.65,9,0.0 +26362,63,43.9,33,0.0 +26362,39,18,40,0.0 +26362,34,14,12,0.0 +26362,1,18,18,0.0 +26362,32,32,39,0.0 +26362,55,24,1,0.0 +26363,77,13,19,0.0 +26363,33,2.5,30,0.0 +26363,30,25.89,8,0.0 +26363,76,18,14,0.0 +26363,56,38,34,0.0 +26363,48,12.75,17,0.0 +26363,18,62.5,38,0.0 +26363,12,38,11,0.0 +26363,5,21.35,15,0.0 +26363,47,9.5,8,0.0 +26363,53,32.8,1,0.0 +26363,43,46,46,0.0 +26363,52,7,42,0.0 +26363,40,18.4,41,0.0 +26363,71,21.5,42,0.0 +26363,70,15,8,0.0 +26363,57,19.5,44,0.0 +26363,8,40,7,0.0 +26363,21,10,29,0.0 +26363,50,16.25,24,0.0 +26363,32,32,23,0.0 +26363,38,263.5,50,0.0 +26363,72,34.8,25,0.0 +26364,58,13.25,10,0.0 +26364,47,9.5,44,0.0 +26364,71,21.5,5,0.0 +26364,56,38,23,0.0 +26364,14,23.25,38,0.0 +26364,63,43.9,16,0.0 +26364,54,7.45,4,0.0 +26364,39,18,13,0.0 +26364,31,12.5,26,0.0 +26364,64,33.25,7,0.0 +26364,75,7.75,22,0.0 +26364,1,18,10,0.0 +26364,53,32.8,12,0.0 +26364,11,21,46,0.0 +26364,76,18,32,0.0 +26364,3,10,49,0.0 +26364,8,40,6,0.0 +26364,43,46,5,0.0 +26364,61,28.5,49,0.0 +26364,57,19.5,18,0.0 +26364,32,32,39,0.0 +26364,18,62.5,43,0.0 +26364,70,15,6,0.0 +26364,50,16.25,4,0.0 +26364,19,9.2,16,0.0 +26364,44,19.45,7,0.0 +26364,74,10,24,0.0 +26364,24,4.5,33,0.0 +26364,72,34.8,23,0.0 +26364,55,24,47,0.0 +26364,46,12,20,0.0 +26364,77,13,15,0.0 +26364,5,21.35,32,0.0 +26364,69,36,30,0.0 +26364,2,19,48,0.0 +26364,60,34,38,0.0 +26364,20,81,1,0.0 +26364,42,14,33,0.0 +26364,52,7,27,0.0 +26364,38,263.5,43,0.0 +26364,65,21.05,17,0.0 +26364,34,14,19,0.0 +26364,33,2.5,9,0.0 +26364,26,31.23,10,0.0 +26364,27,43.9,37,0.0 +26364,41,9.65,10,0.0 +26364,13,6,37,0.0 +26364,28,45.6,28,0.0 +26364,59,55,45,0.0 +26364,62,49.3,26,0.0 +26364,40,18.4,32,0.0 +26364,6,25,23,0.0 +26364,35,18,40,0.0 +26364,73,15,4,0.0 +26364,23,9,4,0.0 +26364,37,26,22,0.0 +26364,48,12.75,19,0.0 +26364,4,22,6,0.0 +26364,21,10,47,0.0 +26364,17,39,49,0.0 +26364,25,14,17,0.0 +26364,22,21,41,0.0 +26364,9,97,31,0.0 +26364,49,20,7,0.0 +26364,16,17.45,5,0.0 +26364,68,12.5,2,0.0 +26364,30,25.89,26,0.0 +26364,66,17,11,0.0 +26364,45,9.5,10,0.0 +26364,36,19,13,0.0 +26364,67,14,17,0.0 +26364,10,31,9,0.0 +26365,9,97,6,0.0 +26365,49,20,47,0.0 +26365,55,24,48,0.0 +26365,13,6,49,0.0 +26365,10,31,36,0.0 +26365,69,36,37,0.0 +26365,64,33.25,18,0.0 +26365,4,22,29,0.0 +26365,36,19,50,0.0 +26365,73,15,41,0.0 +26365,76,18,27,0.0 +26365,34,14,17,0.0 +26365,53,32.8,41,0.0 +26365,21,10,13,0.0 +26365,60,34,25,0.0 +26365,28,45.6,27,0.0 +26365,3,10,32,0.0 +26365,65,21.05,27,0.0 +26365,24,4.5,29,0.0 +26365,38,263.5,29,0.0 +26365,26,31.23,15,0.0 +26365,32,32,15,0.0 +26365,35,18,5,0.0 +26365,57,19.5,10,0.0 +26365,8,40,18,0.0 +26365,15,15.5,18,0.0 +26365,44,19.45,24,0.0 +26365,1,18,43,0.0 +26365,46,12,13,0.0 +26365,77,13,16,0.0 +26365,29,123.79,5,0.0 +26365,40,18.4,48,0.0 +26365,31,12.5,13,0.0 +26365,75,7.75,42,0.0 +26365,74,10,17,0.0 +26365,58,13.25,1,0.0 +26365,72,34.8,18,0.0 +26365,39,18,24,0.0 +26365,43,46,27,0.0 +26365,42,14,6,0.0 +26365,33,2.5,26,0.0 +26365,16,17.45,15,0.0 +26365,25,14,38,0.0 +26365,20,81,35,0.0 +26365,71,21.5,49,0.0 +26365,30,25.89,15,0.0 +26365,52,7,1,0.0 +26365,11,21,16,0.0 +26366,39,18,26,0.0 +26366,7,30,14,0.0 +26366,28,45.6,48,0.0 +26367,76,18,46,0.0 +26367,77,13,15,0.0 +26367,5,21.35,31,0.0 +26367,64,33.25,26,0.0 +26367,36,19,45,0.0 +26367,30,25.89,36,0.0 +26367,29,123.79,28,0.0 +26367,67,14,47,0.0 +26367,21,10,45,0.0 +26367,75,7.75,40,0.0 +26367,52,7,9,0.0 +26367,53,32.8,4,0.0 +26367,60,34,19,0.0 +26367,41,9.65,11,0.0 +26367,62,49.3,16,0.0 +26367,9,97,26,0.0 +26367,12,38,32,0.0 +26367,37,26,4,0.0 +26367,61,28.5,18,0.0 +26367,38,263.5,50,0.0 +26367,72,34.8,27,0.0 +26367,68,12.5,25,0.0 +26367,56,38,6,0.0 +26367,50,16.25,26,0.0 +26367,63,43.9,28,0.0 +26367,66,17,45,0.0 +26367,16,17.45,48,0.0 +26367,17,39,16,0.0 +26367,70,15,23,0.0 +26367,74,10,32,0.0 +26367,55,24,41,0.0 +26367,27,43.9,46,0.0 +26367,20,81,19,0.0 +26367,58,13.25,44,0.0 +26367,48,12.75,36,0.0 +26367,32,32,43,0.0 +26367,18,62.5,25,0.0 +26367,25,14,2,0.0 +26367,57,19.5,37,0.0 +26367,54,7.45,48,0.0 +26367,71,21.5,50,0.0 +26367,73,15,41,0.0 +26367,11,21,50,0.0 +26367,22,21,31,0.0 +26368,44,19.45,36,0.0 +26368,77,13,8,0.0 +26368,24,4.5,28,0.0 +26368,60,34,8,0.0 +26368,17,39,36,0.0 +26368,69,36,8,0.0 +26368,47,9.5,49,0.0 +26368,14,23.25,38,0.0 +26368,20,81,35,0.0 +26368,75,7.75,13,0.0 +26368,55,24,39,0.0 +26368,35,18,18,0.0 +26368,3,10,13,0.0 +26368,30,25.89,45,0.0 +26368,64,33.25,2,0.0 +26368,29,123.79,11,0.0 +26368,57,19.5,6,0.0 +26368,16,17.45,9,0.0 +26368,73,15,34,0.0 +26368,58,13.25,40,0.0 +26368,25,14,41,0.0 +26368,1,18,49,0.0 +26368,22,21,31,0.0 +26368,21,10,38,0.0 +26368,26,31.23,12,0.0 +26368,70,15,41,0.0 +26368,40,18.4,16,0.0 +26368,71,21.5,35,0.0 +26368,18,62.5,31,0.0 +26368,48,12.75,38,0.0 +26368,31,12.5,23,0.0 +26368,10,31,12,0.0 +26368,8,40,44,0.0 +26368,39,18,42,0.0 +26368,23,9,4,0.0 +26368,9,97,17,0.0 +26368,34,14,43,0.0 +26368,65,21.05,7,0.0 +26368,68,12.5,8,0.0 +26368,41,9.65,28,0.0 +26368,11,21,13,0.0 +26368,61,28.5,20,0.0 +26368,53,32.8,50,0.0 +26368,66,17,21,0.0 +26368,12,38,43,0.0 +26368,28,45.6,34,0.0 +26368,52,7,23,0.0 +26368,32,32,21,0.0 +26368,6,25,20,0.0 +26368,42,14,27,0.0 +26368,54,7.45,34,0.0 +26368,49,20,4,0.0 +26368,33,2.5,16,0.0 +26368,50,16.25,34,0.0 +26368,38,263.5,16,0.0 +26368,43,46,42,0.0 +26368,59,55,14,0.0 +26368,15,15.5,5,0.0 +26368,5,21.35,21,0.0 +26368,45,9.5,47,0.0 +26368,4,22,11,0.0 +26368,63,43.9,2,0.0 +26368,74,10,22,0.0 +26368,7,30,4,0.0 +26368,36,19,27,0.0 +26368,46,12,13,0.0 +26368,27,43.9,12,0.0 +26369,42,14,48,0.0 +26369,7,30,40,0.0 +26369,51,53,40,0.0 +26369,16,17.45,7,0.0 +26369,52,7,40,0.0 +26369,73,15,28,0.0 +26369,63,43.9,1,0.0 +26369,62,49.3,7,0.0 +26369,65,21.05,45,0.0 +26369,74,10,21,0.0 +26369,24,4.5,19,0.0 +26369,23,9,12,0.0 +26369,34,14,23,0.0 +26369,64,33.25,21,0.0 +26369,50,16.25,12,0.0 +26369,10,31,16,0.0 +26369,18,62.5,32,0.0 +26369,22,21,39,0.0 +26369,58,13.25,27,0.0 +26369,11,21,33,0.0 +26369,49,20,24,0.0 +26369,1,18,16,0.0 +26369,13,6,45,0.0 +26369,25,14,24,0.0 +26369,6,25,14,0.0 +26369,56,38,29,0.0 +26369,3,10,18,0.0 +26369,2,19,20,0.0 +26369,9,97,42,0.0 +26369,14,23.25,34,0.0 +26369,46,12,33,0.0 +26369,36,19,37,0.0 +26369,19,9.2,47,0.0 +26369,44,19.45,3,0.0 +26369,20,81,36,0.0 +26369,57,19.5,41,0.0 +26369,28,45.6,47,0.0 +26370,60,34,34,0.0 +26370,29,123.79,30,0.0 +26370,24,4.5,2,0.0 +26370,73,15,40,0.0 +26370,26,31.23,42,0.0 +26370,3,10,14,0.0 +26370,50,16.25,41,0.0 +26370,32,32,21,0.0 +26370,37,26,48,0.0 +26370,28,45.6,26,0.0 +26370,10,31,25,0.0 +26370,18,62.5,7,0.0 +26370,39,18,48,0.0 +26370,55,24,49,0.0 +26370,12,38,8,0.0 +26370,21,10,42,0.0 +26370,16,17.45,19,0.0 +26370,30,25.89,16,0.0 +26370,1,18,33,0.0 +26370,40,18.4,10,0.0 +26370,51,53,14,0.0 +26370,68,12.5,28,0.0 +26370,34,14,20,0.0 +26370,49,20,50,0.0 +26370,54,7.45,25,0.0 +26370,22,21,21,0.0 +26370,20,81,38,0.0 +26370,25,14,30,0.0 +26370,6,25,42,0.0 +26370,48,12.75,34,0.0 +26370,76,18,4,0.0 +26371,27,43.9,43,0.0 +26371,77,13,46,0.0 +26371,14,23.25,47,0.0 +26371,46,12,31,0.0 +26371,47,9.5,9,0.0 +26371,28,45.6,15,0.0 +26371,26,31.23,43,0.0 +26371,36,19,42,0.0 +26371,37,26,44,0.0 +26371,30,25.89,40,0.0 +26371,39,18,21,0.0 +26371,10,31,1,0.0 +26371,20,81,31,0.0 +26371,32,32,34,0.0 +26371,22,21,50,0.0 +26371,49,20,1,0.0 +26371,60,34,46,0.0 +26371,65,21.05,13,0.0 +26371,50,16.25,50,0.0 +26371,51,53,11,0.0 +26371,13,6,48,0.0 +26371,59,55,23,0.0 +26371,33,2.5,50,0.0 +26371,5,21.35,21,0.0 +26371,45,9.5,50,0.0 +26371,57,19.5,41,0.0 +26371,6,25,32,0.0 +26371,9,97,27,0.0 +26371,42,14,49,0.0 +26371,41,9.65,41,0.0 +26371,44,19.45,35,0.0 +26371,74,10,14,0.0 +26371,3,10,14,0.0 +26371,8,40,14,0.0 +26371,70,15,25,0.0 +26371,55,24,28,0.0 +26371,66,17,34,0.0 +26371,62,49.3,25,0.0 +26371,25,14,48,0.0 +26371,15,15.5,41,0.0 +26371,24,4.5,10,0.0 +26371,34,14,32,0.0 +26371,73,15,21,0.0 +26371,17,39,29,0.0 +26371,23,9,7,0.0 +26371,56,38,40,0.0 +26371,16,17.45,11,0.0 +26371,11,21,6,0.0 +26371,54,7.45,29,0.0 +26371,72,34.8,20,0.0 +26371,71,21.5,49,0.0 +26371,18,62.5,17,0.0 +26371,76,18,49,0.0 +26371,43,46,10,0.0 +26371,68,12.5,20,0.0 +26371,53,32.8,30,0.0 +26371,1,18,30,0.0 +26371,61,28.5,5,0.0 +26371,4,22,19,0.0 +26371,2,19,42,0.0 +26371,69,36,50,0.0 +26371,21,10,26,0.0 +26371,12,38,6,0.0 +26371,58,13.25,18,0.0 +26372,57,19.5,15,0.0 +26372,14,23.25,42,0.0 +26372,4,22,43,0.0 +26372,47,9.5,1,0.0 +26372,39,18,15,0.0 +26372,7,30,7,0.0 +26372,69,36,30,0.0 +26372,49,20,6,0.0 +26372,55,24,12,0.0 +26372,56,38,14,0.0 +26372,60,34,20,0.0 +26372,27,43.9,11,0.0 +26372,23,9,26,0.0 +26372,44,19.45,25,0.0 +26372,29,123.79,16,0.0 +26372,68,12.5,27,0.0 +26372,59,55,24,0.0 +26372,12,38,15,0.0 +26372,25,14,35,0.0 +26372,63,43.9,16,0.0 +26372,18,62.5,35,0.0 +26372,46,12,10,0.0 +26372,34,14,24,0.0 +26372,52,7,42,0.0 +26372,40,18.4,35,0.0 +26372,22,21,35,0.0 +26372,61,28.5,11,0.0 +26372,38,263.5,15,0.0 +26372,58,13.25,39,0.0 +26372,75,7.75,13,0.0 +26372,66,17,43,0.0 +26372,76,18,20,0.0 +26372,5,21.35,11,0.0 +26372,43,46,9,0.0 +26372,54,7.45,7,0.0 +26372,48,12.75,40,0.0 +26372,71,21.5,35,0.0 +26372,8,40,15,0.0 +26372,16,17.45,35,0.0 +26372,9,97,21,0.0 +26372,65,21.05,49,0.0 +26372,1,18,28,0.0 +26372,53,32.8,44,0.0 +26372,42,14,3,0.0 +26372,13,6,33,0.0 +26372,72,34.8,24,0.0 +26372,64,33.25,35,0.0 +26372,20,81,16,0.0 +26372,74,10,34,0.0 +26372,10,31,33,0.0 +26372,73,15,12,0.0 +26372,51,53,23,0.0 +26372,3,10,38,0.0 +26372,31,12.5,13,0.0 +26372,28,45.6,43,0.0 +26372,21,10,15,0.0 +26372,33,2.5,48,0.0 +26372,70,15,28,0.0 +26372,36,19,29,0.0 +26372,15,15.5,14,0.0 +26372,24,4.5,15,0.0 +26372,2,19,22,0.0 +26373,22,21,42,0.0 +26373,71,21.5,46,0.0 +26373,24,4.5,14,0.0 +26373,65,21.05,25,0.0 +26373,37,26,34,0.0 +26373,40,18.4,44,0.0 +26373,66,17,17,0.0 +26373,35,18,14,0.0 +26373,76,18,27,0.0 +26373,55,24,28,0.0 +26373,38,263.5,47,0.0 +26373,54,7.45,14,0.0 +26373,5,21.35,50,0.0 +26373,73,15,16,0.0 +26373,13,6,50,0.0 +26373,34,14,50,0.0 +26373,9,97,23,0.0 +26373,1,18,21,0.0 +26373,44,19.45,18,0.0 +26373,17,39,22,0.0 +26373,63,43.9,47,0.0 +26373,26,31.23,49,0.0 +26373,41,9.65,29,0.0 +26373,77,13,24,0.0 +26374,39,18,21,0.0 +26374,34,14,10,0.0 +26374,18,62.5,19,0.0 +26374,3,10,30,0.0 +26374,12,38,22,0.0 +26374,46,12,8,0.0 +26374,14,23.25,48,0.0 +26374,44,19.45,16,0.0 +26374,67,14,26,0.0 +26374,10,31,8,0.0 +26374,43,46,45,0.0 +26374,41,9.65,5,0.0 +26374,5,21.35,46,0.0 +26374,42,14,48,0.0 +26374,66,17,24,0.0 +26374,31,12.5,9,0.0 +26374,69,36,33,0.0 +26374,70,15,34,0.0 +26374,40,18.4,1,0.0 +26374,60,34,45,0.0 +26374,13,6,7,0.0 +26374,58,13.25,19,0.0 +26374,9,97,11,0.0 +26374,21,10,31,0.0 +26374,77,13,20,0.0 +26374,4,22,30,0.0 +26374,36,19,12,0.0 +26374,38,263.5,30,0.0 +26374,30,25.89,14,0.0 +26374,49,20,17,0.0 +26374,1,18,37,0.0 +26374,47,9.5,46,0.0 +26374,20,81,11,0.0 +26374,15,15.5,34,0.0 +26374,8,40,50,0.0 +26374,26,31.23,37,0.0 +26374,23,9,40,0.0 +26374,59,55,36,0.0 +26374,64,33.25,12,0.0 +26374,54,7.45,4,0.0 +26374,2,19,1,0.0 +26374,52,7,49,0.0 +26374,11,21,2,0.0 +26374,19,9.2,21,0.0 +26374,57,19.5,48,0.0 +26374,71,21.5,43,0.0 +26374,75,7.75,43,0.0 +26374,22,21,2,0.0 +26374,17,39,50,0.0 +26374,27,43.9,34,0.0 +26374,51,53,35,0.0 +26374,32,32,35,0.0 +26374,62,49.3,18,0.0 +26374,55,24,41,0.0 +26374,72,34.8,1,0.0 +26374,56,38,2,0.0 +26374,45,9.5,1,0.0 +26374,61,28.5,50,0.0 +26374,7,30,6,0.0 +26374,63,43.9,5,0.0 +26374,28,45.6,23,0.0 +26375,49,20,29,0.0 +26375,17,39,14,0.0 +26375,57,19.5,5,0.0 +26375,46,12,23,0.0 +26375,4,22,25,0.0 +26375,27,43.9,35,0.0 +26375,18,62.5,17,0.0 +26375,70,15,4,0.0 +26375,23,9,11,0.0 +26375,47,9.5,20,0.0 +26375,16,17.45,39,0.0 +26375,51,53,44,0.0 +26375,65,21.05,16,0.0 +26375,10,31,18,0.0 +26375,13,6,48,0.0 +26375,14,23.25,47,0.0 +26375,41,9.65,14,0.0 +26375,58,13.25,16,0.0 +26375,24,4.5,23,0.0 +26375,45,9.5,38,0.0 +26375,38,263.5,5,0.0 +26375,25,14,19,0.0 +26375,31,12.5,40,0.0 +26375,8,40,3,0.0 +26375,64,33.25,45,0.0 +26375,19,9.2,1,0.0 +26375,29,123.79,37,0.0 +26375,60,34,23,0.0 +26375,15,15.5,35,0.0 +26375,71,21.5,36,0.0 +26375,6,25,44,0.0 +26375,37,26,25,0.0 +26375,59,55,26,0.0 +26375,33,2.5,15,0.0 +26375,77,13,40,0.0 +26375,75,7.75,28,0.0 +26375,56,38,23,0.0 +26375,20,81,49,0.0 +26375,22,21,34,0.0 +26375,76,18,18,0.0 +26375,52,7,1,0.0 +26375,42,14,22,0.0 +26375,9,97,39,0.0 +26375,34,14,48,0.0 +26375,2,19,45,0.0 +26375,62,49.3,30,0.0 +26375,36,19,40,0.0 +26375,50,16.25,47,0.0 +26375,73,15,11,0.0 +26375,1,18,12,0.0 +26375,54,7.45,19,0.0 +26375,7,30,29,0.0 +26375,63,43.9,9,0.0 +26376,40,18.4,37,0.0 +26376,12,38,43,0.0 +26376,43,46,3,0.0 +26376,25,14,16,0.0 +26376,57,19.5,42,0.0 +26376,37,26,15,0.0 +26376,65,21.05,33,0.0 +26376,36,19,49,0.0 +26376,42,14,3,0.0 +26376,19,9.2,11,0.0 +26376,38,263.5,48,0.0 +26376,41,9.65,39,0.0 +26376,35,18,33,0.0 +26376,58,13.25,2,0.0 +26376,13,6,13,0.0 +26376,11,21,1,0.0 +26377,13,6,30,0.0 +26377,32,32,32,0.0 +26377,26,31.23,43,0.0 +26377,11,21,38,0.0 +26377,43,46,32,0.0 +26377,24,4.5,12,0.0 +26377,55,24,32,0.0 +26377,42,14,35,0.0 +26377,54,7.45,47,0.0 +26377,16,17.45,4,0.0 +26377,9,97,30,0.0 +26377,57,19.5,38,0.0 +26377,21,10,27,0.0 +26377,38,263.5,47,0.0 +26377,53,32.8,18,0.0 +26377,39,18,25,0.0 +26377,10,31,28,0.0 +26377,25,14,7,0.0 +26377,74,10,49,0.0 +26377,44,19.45,1,0.0 +26377,3,10,31,0.0 +26377,66,17,7,0.0 +26377,8,40,25,0.0 +26377,61,28.5,3,0.0 +26377,34,14,22,0.0 +26377,28,45.6,31,0.0 +26377,50,16.25,47,0.0 +26377,65,21.05,23,0.0 +26377,41,9.65,17,0.0 +26377,46,12,4,0.0 +26377,6,25,32,0.0 +26377,33,2.5,8,0.0 +26377,76,18,3,0.0 +26377,22,21,13,0.0 +26377,20,81,34,0.0 +26377,14,23.25,43,0.0 +26377,63,43.9,15,0.0 +26377,29,123.79,15,0.0 +26377,45,9.5,39,0.0 +26377,73,15,41,0.0 +26377,30,25.89,16,0.0 +26377,27,43.9,41,0.0 +26377,5,21.35,6,0.0 +26377,31,12.5,10,0.0 +26377,72,34.8,27,0.0 +26377,59,55,37,0.0 +26377,19,9.2,48,0.0 +26377,15,15.5,28,0.0 +26377,62,49.3,49,0.0 +26377,71,21.5,16,0.0 +26377,68,12.5,37,0.0 +26377,60,34,18,0.0 +26377,75,7.75,9,0.0 +26377,56,38,36,0.0 +26377,4,22,5,0.0 +26377,18,62.5,24,0.0 +26377,37,26,1,0.0 +26377,23,9,32,0.0 +26377,70,15,42,0.0 +26377,17,39,25,0.0 +26377,67,14,2,0.0 +26377,35,18,1,0.0 +26377,12,38,16,0.0 +26377,48,12.75,37,0.0 +26377,7,30,19,0.0 +26377,64,33.25,1,0.0 +26377,1,18,41,0.0 +26377,47,9.5,46,0.0 +26377,69,36,27,0.0 +26377,36,19,34,0.0 +26377,40,18.4,12,0.0 +26378,70,15,33,0.0 +26378,67,14,14,0.0 +26378,77,13,37,0.0 +26378,27,43.9,3,0.0 +26378,53,32.8,19,0.0 +26378,36,19,2,0.0 +26378,43,46,33,0.0 +26378,65,21.05,16,0.0 +26378,1,18,10,0.0 +26378,24,4.5,15,0.0 +26378,45,9.5,45,0.0 +26378,55,24,20,0.0 +26378,7,30,12,0.0 +26378,30,25.89,5,0.0 +26378,17,39,31,0.0 +26378,10,31,44,0.0 +26378,15,15.5,31,0.0 +26378,21,10,44,0.0 +26379,5,21.35,36,0.0 +26379,36,19,28,0.0 +26379,29,123.79,19,0.0 +26379,25,14,5,0.0 +26379,65,21.05,8,0.0 +26379,31,12.5,43,0.0 +26379,10,31,7,0.0 +26379,38,263.5,19,0.0 +26379,9,97,26,0.0 +26379,1,18,35,0.0 +26379,8,40,3,0.0 +26379,60,34,10,0.0 +26379,71,21.5,34,0.0 +26379,63,43.9,32,0.0 +26379,13,6,25,0.0 +26379,33,2.5,7,0.0 +26379,27,43.9,44,0.0 +26379,73,15,1,0.0 +26379,20,81,35,0.0 +26379,4,22,32,0.0 +26379,58,13.25,48,0.0 +26379,76,18,39,0.0 +26379,43,46,22,0.0 +26379,57,19.5,29,0.0 +26379,55,24,11,0.0 +26379,68,12.5,36,0.0 +26379,64,33.25,10,0.0 +26379,22,21,48,0.0 +26379,47,9.5,28,0.0 +26379,6,25,11,0.0 +26379,2,19,18,0.0 +26379,62,49.3,19,0.0 +26379,3,10,38,0.0 +26379,17,39,46,0.0 +26379,46,12,31,0.0 +26379,45,9.5,7,0.0 +26379,32,32,50,0.0 +26379,56,38,15,0.0 +26379,74,10,49,0.0 +26379,37,26,38,0.0 +26379,41,9.65,31,0.0 +26379,42,14,19,0.0 +26379,59,55,6,0.0 +26379,28,45.6,26,0.0 +26379,12,38,42,0.0 +26379,66,17,9,0.0 +26379,15,15.5,33,0.0 +26380,28,45.6,23,0.0 +26380,11,21,21,0.0 +26380,52,7,49,0.0 +26380,44,19.45,18,0.0 +26380,60,34,26,0.0 +26380,16,17.45,15,0.0 +26380,29,123.79,27,0.0 +26380,27,43.9,22,0.0 +26380,38,263.5,37,0.0 +26380,45,9.5,21,0.0 +26380,42,14,16,0.0 +26380,14,23.25,35,0.0 +26380,56,38,50,0.0 +26380,40,18.4,37,0.0 +26380,73,15,3,0.0 +26380,9,97,31,0.0 +26380,18,62.5,26,0.0 +26380,25,14,24,0.0 +26380,67,14,20,0.0 +26380,72,34.8,13,0.0 +26380,12,38,36,0.0 +26380,62,49.3,21,0.0 +26380,58,13.25,37,0.0 +26380,21,10,46,0.0 +26380,51,53,1,0.0 +26380,20,81,30,0.0 +26380,35,18,38,0.0 +26380,31,12.5,12,0.0 +26380,3,10,21,0.0 +26380,1,18,43,0.0 +26380,69,36,27,0.0 +26380,75,7.75,6,0.0 +26380,47,9.5,2,0.0 +26380,66,17,41,0.0 +26380,24,4.5,43,0.0 +26380,39,18,13,0.0 +26380,33,2.5,20,0.0 +26380,54,7.45,30,0.0 +26380,61,28.5,14,0.0 +26380,17,39,47,0.0 +26380,32,32,33,0.0 +26380,23,9,50,0.0 +26380,22,21,22,0.0 +26380,7,30,12,0.0 +26380,77,13,8,0.0 +26380,76,18,14,0.0 +26380,13,6,19,0.0 +26380,26,31.23,12,0.0 +26380,59,55,1,0.0 +26380,55,24,30,0.0 +26380,49,20,24,0.0 +26380,2,19,1,0.0 +26380,15,15.5,23,0.0 +26380,4,22,40,0.0 +26380,37,26,21,0.0 +26380,41,9.65,41,0.0 +26380,74,10,34,0.0 +26380,70,15,22,0.0 +26380,46,12,37,0.0 +26380,57,19.5,33,0.0 +26380,34,14,50,0.0 +26380,10,31,38,0.0 +26380,43,46,2,0.0 +26380,71,21.5,11,0.0 +26380,68,12.5,48,0.0 +26380,63,43.9,28,0.0 +26380,5,21.35,22,0.0 +26380,64,33.25,18,0.0 +26380,48,12.75,3,0.0 +26380,19,9.2,38,0.0 +26380,30,25.89,23,0.0 +26380,36,19,44,0.0 +26380,50,16.25,3,0.0 +26381,44,19.45,12,0.0 +26381,69,36,3,0.0 +26381,73,15,26,0.0 +26381,60,34,46,0.0 +26381,14,23.25,7,0.0 +26381,24,4.5,37,0.0 +26381,20,81,39,0.0 +26381,64,33.25,6,0.0 +26381,1,18,20,0.0 +26381,3,10,9,0.0 +26381,10,31,41,0.0 +26381,68,12.5,22,0.0 +26381,9,97,41,0.0 +26381,39,18,4,0.0 +26381,66,17,4,0.0 +26381,33,2.5,11,0.0 +26381,53,32.8,20,0.0 +26381,19,9.2,42,0.0 +26381,18,62.5,6,0.0 +26381,30,25.89,4,0.0 +26381,28,45.6,24,0.0 +26381,45,9.5,11,0.0 +26381,76,18,41,0.0 +26381,75,7.75,35,0.0 +26381,72,34.8,13,0.0 +26381,70,15,38,0.0 +26381,65,21.05,5,0.0 +26381,17,39,32,0.0 +26381,16,17.45,33,0.0 +26382,60,34,12,0.0 +26382,28,45.6,23,0.0 +26382,37,26,27,0.0 +26382,44,19.45,33,0.0 +26382,33,2.5,10,0.0 +26382,26,31.23,37,0.0 +26382,52,7,48,0.0 +26382,4,22,40,0.0 +26382,20,81,23,0.0 +26382,18,62.5,44,0.0 +26382,3,10,16,0.0 +26382,50,16.25,12,0.0 +26382,59,55,49,0.0 +26382,1,18,48,0.0 +26382,8,40,19,0.0 +26382,61,28.5,13,0.0 +26382,62,49.3,34,0.0 +26382,53,32.8,28,0.0 +26382,70,15,2,0.0 +26382,42,14,9,0.0 +26382,72,34.8,2,0.0 +26382,27,43.9,10,0.0 +26382,29,123.79,44,0.0 +26382,69,36,12,0.0 +26382,24,4.5,28,0.0 +26382,45,9.5,6,0.0 +26382,10,31,45,0.0 +26382,54,7.45,15,0.0 +26382,46,12,34,0.0 +26382,9,97,34,0.0 +26382,31,12.5,2,0.0 +26382,21,10,18,0.0 +26382,38,263.5,2,0.0 +26382,22,21,15,0.0 +26382,64,33.25,19,0.0 +26382,5,21.35,49,0.0 +26382,35,18,21,0.0 +26382,13,6,19,0.0 +26382,41,9.65,9,0.0 +26382,6,25,16,0.0 +26382,56,38,8,0.0 +26382,57,19.5,24,0.0 +26382,12,38,45,0.0 +26382,32,32,43,0.0 +26382,47,9.5,36,0.0 +26382,65,21.05,4,0.0 +26382,77,13,36,0.0 +26382,11,21,40,0.0 +26382,7,30,31,0.0 +26382,15,15.5,50,0.0 +26383,9,97,17,0.0 +26383,56,38,12,0.0 +26383,43,46,25,0.0 +26383,49,20,40,0.0 +26383,16,17.45,20,0.0 +26383,58,13.25,38,0.0 +26383,27,43.9,42,0.0 +26383,13,6,48,0.0 +26383,61,28.5,43,0.0 +26383,48,12.75,8,0.0 +26383,15,15.5,2,0.0 +26383,4,22,35,0.0 +26383,28,45.6,24,0.0 +26383,17,39,20,0.0 +26383,47,9.5,8,0.0 +26383,42,14,41,0.0 +26383,34,14,28,0.0 +26383,14,23.25,4,0.0 +26383,32,32,36,0.0 +26383,69,36,7,0.0 +26383,12,38,42,0.0 +26383,41,9.65,8,0.0 +26383,19,9.2,42,0.0 +26383,60,34,10,0.0 +26383,33,2.5,17,0.0 +26383,45,9.5,1,0.0 +26383,57,19.5,17,0.0 +26383,53,32.8,29,0.0 +26383,24,4.5,25,0.0 +26383,5,21.35,11,0.0 +26383,52,7,40,0.0 +26383,26,31.23,8,0.0 +26383,44,19.45,33,0.0 +26383,50,16.25,22,0.0 +26383,38,263.5,48,0.0 +26383,37,26,26,0.0 +26383,29,123.79,30,0.0 +26383,68,12.5,21,0.0 +26383,59,55,12,0.0 +26383,73,15,11,0.0 +26383,62,49.3,18,0.0 +26383,22,21,36,0.0 +26383,66,17,4,0.0 +26383,20,81,13,0.0 +26383,75,7.75,14,0.0 +26383,76,18,31,0.0 +26383,23,9,2,0.0 +26383,11,21,39,0.0 +26383,40,18.4,17,0.0 +26383,72,34.8,28,0.0 +26383,6,25,31,0.0 +26383,63,43.9,46,0.0 +26383,2,19,14,0.0 +26383,51,53,35,0.0 +26383,74,10,45,0.0 +26383,54,7.45,15,0.0 +26383,8,40,24,0.0 +26383,65,21.05,38,0.0 +26383,1,18,41,0.0 +26383,25,14,31,0.0 +26383,35,18,18,0.0 +26383,10,31,37,0.0 +26383,77,13,46,0.0 +26383,3,10,12,0.0 +26383,46,12,12,0.0 +26383,7,30,6,0.0 +26383,64,33.25,34,0.0 +26383,39,18,17,0.0 +26383,31,12.5,3,0.0 +26383,70,15,2,0.0 +26383,67,14,2,0.0 +26383,21,10,6,0.0 +26383,55,24,33,0.0 +26384,39,18,28,0.0 +26384,46,12,47,0.0 +26384,75,7.75,33,0.0 +26384,14,23.25,10,0.0 +26384,45,9.5,21,0.0 +26384,56,38,27,0.0 +26384,20,81,26,0.0 +26384,66,17,42,0.0 +26384,42,14,30,0.0 +26384,15,15.5,39,0.0 +26384,26,31.23,28,0.0 +26384,7,30,50,0.0 +26384,38,263.5,48,0.0 +26385,3,10,26,0.0 +26385,14,23.25,11,0.0 +26385,15,15.5,29,0.0 +26385,67,14,36,0.0 +26385,66,17,37,0.0 +26385,71,21.5,40,0.0 +26385,65,21.05,22,0.0 +26385,68,12.5,9,0.0 +26385,74,10,46,0.0 +26385,23,9,27,0.0 +26385,64,33.25,19,0.0 +26385,40,18.4,10,0.0 +26385,61,28.5,12,0.0 +26385,19,9.2,39,0.0 +26385,49,20,16,0.0 +26385,10,31,32,0.0 +26385,38,263.5,49,0.0 +26385,59,55,19,0.0 +26385,57,19.5,8,0.0 +26385,26,31.23,5,0.0 +26385,12,38,29,0.0 +26385,56,38,15,0.0 +26385,25,14,40,0.0 +26385,46,12,37,0.0 +26385,54,7.45,16,0.0 +26385,53,32.8,39,0.0 +26385,2,19,42,0.0 +26385,31,12.5,12,0.0 +26385,51,53,4,0.0 +26385,63,43.9,18,0.0 +26385,70,15,45,0.0 +26386,64,33.25,36,0.0 +26386,38,263.5,37,0.0 +26386,9,97,29,0.0 +26386,70,15,35,0.0 +26386,3,10,26,0.0 +26386,1,18,22,0.0 +26386,44,19.45,27,0.0 +26386,27,43.9,21,0.0 +26386,30,25.89,32,0.0 +26386,56,38,42,0.0 +26386,39,18,34,0.0 +26387,66,17,15,0.0 +26387,33,2.5,40,0.0 +26387,27,43.9,1,0.0 +26387,11,21,47,0.0 +26387,52,7,36,0.0 +26387,43,46,30,0.0 +26387,23,9,49,0.0 +26387,53,32.8,44,0.0 +26387,3,10,40,0.0 +26387,28,45.6,35,0.0 +26387,18,62.5,7,0.0 +26387,32,32,37,0.0 +26387,60,34,15,0.0 +26387,30,25.89,7,0.0 +26387,44,19.45,7,0.0 +26387,35,18,40,0.0 +26387,56,38,29,0.0 +26387,70,15,7,0.0 +26387,13,6,14,0.0 +26387,14,23.25,8,0.0 +26387,9,97,18,0.0 +26387,31,12.5,26,0.0 +26387,6,25,27,0.0 +26387,29,123.79,27,0.0 +26387,40,18.4,24,0.0 +26387,37,26,2,0.0 +26387,63,43.9,17,0.0 +26387,51,53,43,0.0 +26387,20,81,48,0.0 +26387,72,34.8,27,0.0 +26387,54,7.45,4,0.0 +26387,67,14,10,0.0 +26387,59,55,1,0.0 +26387,65,21.05,44,0.0 +26387,22,21,18,0.0 +26387,34,14,21,0.0 +26387,76,18,18,0.0 +26387,77,13,4,0.0 +26387,50,16.25,40,0.0 +26387,75,7.75,23,0.0 +26387,74,10,28,0.0 +26387,57,19.5,17,0.0 +26387,4,22,19,0.0 +26387,36,19,44,0.0 +26387,58,13.25,37,0.0 +26387,19,9.2,37,0.0 +26387,68,12.5,21,0.0 +26387,26,31.23,43,0.0 +26387,55,24,44,0.0 +26387,8,40,14,0.0 +26387,46,12,17,0.0 +26387,45,9.5,11,0.0 +26387,69,36,27,0.0 +26387,47,9.5,19,0.0 +26387,41,9.65,44,0.0 +26387,61,28.5,3,0.0 +26387,24,4.5,35,0.0 +26387,38,263.5,38,0.0 +26388,19,9.2,14,0.0 +26389,34,14,14,0.0 +26389,30,25.89,38,0.0 +26389,54,7.45,48,0.0 +26389,57,19.5,2,0.0 +26389,7,30,21,0.0 +26389,1,18,34,0.0 +26389,35,18,40,0.0 +26389,33,2.5,10,0.0 +26389,62,49.3,5,0.0 +26389,26,31.23,29,0.0 +26389,66,17,26,0.0 +26389,73,15,34,0.0 +26389,6,25,16,0.0 +26389,36,19,49,0.0 +26389,70,15,41,0.0 +26389,69,36,33,0.0 +26389,60,34,37,0.0 +26389,43,46,41,0.0 +26389,47,9.5,28,0.0 +26389,68,12.5,30,0.0 +26389,55,24,20,0.0 +26389,67,14,49,0.0 +26389,31,12.5,35,0.0 +26389,27,43.9,26,0.0 +26389,9,97,45,0.0 +26389,16,17.45,45,0.0 +26389,48,12.75,12,0.0 +26389,71,21.5,11,0.0 +26389,63,43.9,19,0.0 +26389,20,81,13,0.0 +26389,72,34.8,17,0.0 +26389,58,13.25,47,0.0 +26389,59,55,7,0.0 +26389,11,21,27,0.0 +26389,4,22,6,0.0 +26389,49,20,42,0.0 +26389,37,26,49,0.0 +26389,38,263.5,38,0.0 +26389,64,33.25,4,0.0 +26389,21,10,14,0.0 +26389,28,45.6,34,0.0 +26389,19,9.2,50,0.0 +26389,13,6,48,0.0 +26389,32,32,15,0.0 +26389,74,10,32,0.0 +26389,29,123.79,37,0.0 +26389,51,53,6,0.0 +26390,27,43.9,36,0.0 +26390,74,10,8,0.0 +26390,50,16.25,44,0.0 +26390,17,39,12,0.0 +26390,33,2.5,41,0.0 +26390,52,7,32,0.0 +26390,55,24,23,0.0 +26390,42,14,22,0.0 +26390,38,263.5,19,0.0 +26391,20,81,2,0.0 +26391,48,12.75,38,0.0 +26391,19,9.2,27,0.0 +26391,35,18,8,0.0 +26391,24,4.5,15,0.0 +26391,49,20,34,0.0 +26391,9,97,4,0.0 +26391,27,43.9,12,0.0 +26391,39,18,39,0.0 +26391,50,16.25,16,0.0 +26391,69,36,41,0.0 +26391,4,22,41,0.0 +26391,8,40,22,0.0 +26391,45,9.5,49,0.0 +26391,60,34,11,0.0 +26391,61,28.5,38,0.0 +26391,46,12,31,0.0 +26391,5,21.35,37,0.0 +26391,51,53,28,0.0 +26391,10,31,5,0.0 +26391,6,25,23,0.0 +26391,1,18,23,0.0 +26391,71,21.5,25,0.0 +26391,7,30,41,0.0 +26391,68,12.5,42,0.0 +26391,11,21,7,0.0 +26391,13,6,13,0.0 +26391,42,14,26,0.0 +26391,33,2.5,40,0.0 +26391,43,46,17,0.0 +26391,41,9.65,36,0.0 +26391,67,14,45,0.0 +26391,23,9,33,0.0 +26391,55,24,22,0.0 +26391,15,15.5,41,0.0 +26391,65,21.05,10,0.0 +26391,28,45.6,34,0.0 +26391,29,123.79,7,0.0 +26391,17,39,22,0.0 +26391,38,263.5,46,0.0 +26391,57,19.5,40,0.0 +26391,16,17.45,3,0.0 +26391,44,19.45,46,0.0 +26391,76,18,22,0.0 +26391,63,43.9,50,0.0 +26391,72,34.8,10,0.0 +26391,36,19,9,0.0 +26391,34,14,37,0.0 +26391,70,15,8,0.0 +26391,21,10,2,0.0 +26391,30,25.89,25,0.0 +26391,58,13.25,46,0.0 +26391,56,38,5,0.0 +26391,22,21,49,0.0 +26391,47,9.5,47,0.0 +26391,62,49.3,17,0.0 +26391,3,10,36,0.0 +26391,26,31.23,18,0.0 +26391,12,38,45,0.0 +26391,37,26,50,0.0 +26391,14,23.25,20,0.0 +26391,54,7.45,33,0.0 +26391,66,17,20,0.0 +26391,2,19,43,0.0 +26391,59,55,41,0.0 +26391,52,7,32,0.0 +26392,77,13,35,0.0 +26392,7,30,40,0.0 +26392,34,14,14,0.0 +26392,10,31,31,0.0 +26392,72,34.8,13,0.0 +26392,35,18,34,0.0 +26392,38,263.5,6,0.0 +26392,45,9.5,46,0.0 +26392,21,10,35,0.0 +26392,3,10,9,0.0 +26392,4,22,39,0.0 +26392,18,62.5,47,0.0 +26392,30,25.89,50,0.0 +26392,63,43.9,30,0.0 +26392,1,18,33,0.0 +26392,49,20,46,0.0 +26392,29,123.79,8,0.0 +26392,69,36,43,0.0 +26392,5,21.35,37,0.0 +26392,66,17,35,0.0 +26392,8,40,4,0.0 +26392,2,19,10,0.0 +26392,54,7.45,27,0.0 +26392,59,55,6,0.0 +26392,11,21,33,0.0 +26392,14,23.25,43,0.0 +26392,20,81,25,0.0 +26392,23,9,12,0.0 +26392,15,15.5,49,0.0 +26392,44,19.45,13,0.0 +26393,75,7.75,17,0.0 +26393,47,9.5,35,0.0 +26393,33,2.5,35,0.0 +26393,56,38,44,0.0 +26393,13,6,13,0.0 +26393,6,25,12,0.0 +26393,19,9.2,43,0.0 +26393,70,15,41,0.0 +26393,49,20,31,0.0 +26393,69,36,16,0.0 +26393,50,16.25,4,0.0 +26393,64,33.25,43,0.0 +26393,23,9,36,0.0 +26393,26,31.23,12,0.0 +26393,29,123.79,39,0.0 +26393,11,21,9,0.0 +26393,45,9.5,14,0.0 +26393,8,40,4,0.0 +26393,7,30,8,0.0 +26393,63,43.9,26,0.0 +26393,17,39,13,0.0 +26393,44,19.45,5,0.0 +26393,14,23.25,24,0.0 +26393,57,19.5,24,0.0 +26393,18,62.5,6,0.0 +26394,71,21.5,5,0.0 +26394,39,18,11,0.0 +26394,76,18,49,0.0 +26394,11,21,21,0.0 +26394,23,9,9,0.0 +26394,65,21.05,4,0.0 +26394,72,34.8,35,0.0 +26394,67,14,50,0.0 +26394,18,62.5,10,0.0 +26394,47,9.5,39,0.0 +26394,35,18,34,0.0 +26394,34,14,9,0.0 +26394,21,10,42,0.0 +26394,55,24,23,0.0 +26394,14,23.25,18,0.0 +26394,62,49.3,31,0.0 +26394,30,25.89,48,0.0 +26394,28,45.6,40,0.0 +26394,46,12,34,0.0 +26394,17,39,25,0.0 +26394,51,53,8,0.0 +26394,63,43.9,4,0.0 +26394,6,25,44,0.0 +26394,38,263.5,10,0.0 +26394,50,16.25,31,0.0 +26394,53,32.8,30,0.0 +26394,9,97,18,0.0 +26394,26,31.23,20,0.0 +26394,29,123.79,41,0.0 +26394,33,2.5,10,0.0 +26394,74,10,40,0.0 +26394,40,18.4,26,0.0 +26394,68,12.5,43,0.0 +26394,15,15.5,47,0.0 +26394,13,6,37,0.0 +26394,58,13.25,14,0.0 +26394,44,19.45,38,0.0 +26394,60,34,45,0.0 +26394,20,81,14,0.0 +26394,4,22,27,0.0 +26394,48,12.75,13,0.0 +26394,1,18,29,0.0 +26394,12,38,50,0.0 +26394,66,17,12,0.0 +26394,22,21,15,0.0 +26394,37,26,7,0.0 +26394,27,43.9,42,0.0 +26394,70,15,49,0.0 +26394,3,10,7,0.0 +26394,52,7,8,0.0 +26394,41,9.65,10,0.0 +26394,2,19,33,0.0 +26394,25,14,24,0.0 +26394,54,7.45,50,0.0 +26394,59,55,1,0.0 +26394,77,13,25,0.0 +26394,49,20,31,0.0 +26394,43,46,21,0.0 +26394,56,38,8,0.0 +26395,41,9.65,36,0.0 +26395,25,14,36,0.0 +26395,70,15,38,0.0 +26395,40,18.4,18,0.0 +26395,45,9.5,10,0.0 +26395,49,20,33,0.0 +26395,77,13,25,0.0 +26395,22,21,24,0.0 +26395,19,9.2,6,0.0 +26395,9,97,11,0.0 +26395,64,33.25,24,0.0 +26395,11,21,33,0.0 +26395,13,6,9,0.0 +26395,54,7.45,37,0.0 +26395,74,10,31,0.0 +26395,61,28.5,21,0.0 +26395,42,14,34,0.0 +26395,3,10,50,0.0 +26395,15,15.5,46,0.0 +26395,12,38,40,0.0 +26395,44,19.45,36,0.0 +26395,43,46,5,0.0 +26395,32,32,34,0.0 +26395,6,25,20,0.0 +26395,68,12.5,35,0.0 +26395,65,21.05,35,0.0 +26395,52,7,20,0.0 +26395,72,34.8,22,0.0 +26395,59,55,49,0.0 +26395,16,17.45,48,0.0 +26395,51,53,26,0.0 +26395,5,21.35,18,0.0 +26395,4,22,4,0.0 +26395,38,263.5,33,0.0 +26395,18,62.5,7,0.0 +26395,62,49.3,31,0.0 +26395,50,16.25,3,0.0 +26395,69,36,30,0.0 +26395,20,81,33,0.0 +26395,56,38,32,0.0 +26395,76,18,29,0.0 +26395,66,17,23,0.0 +26395,14,23.25,15,0.0 +26395,29,123.79,9,0.0 +26395,23,9,8,0.0 +26395,33,2.5,23,0.0 +26395,53,32.8,15,0.0 +26395,30,25.89,4,0.0 +26396,22,21,46,0.0 +26396,10,31,42,0.0 +26396,6,25,18,0.0 +26396,19,9.2,34,0.0 +26396,47,9.5,44,0.0 +26396,71,21.5,40,0.0 +26396,65,21.05,6,0.0 +26396,37,26,5,0.0 +26396,23,9,49,0.0 +26396,76,18,41,0.0 +26396,73,15,45,0.0 +26396,50,16.25,11,0.0 +26396,5,21.35,33,0.0 +26396,51,53,24,0.0 +26396,64,33.25,24,0.0 +26396,77,13,25,0.0 +26396,39,18,35,0.0 +26396,68,12.5,26,0.0 +26396,27,43.9,6,0.0 +26396,75,7.75,27,0.0 +26396,25,14,4,0.0 +26396,58,13.25,13,0.0 +26396,20,81,13,0.0 +26396,7,30,24,0.0 +26396,35,18,29,0.0 +26396,3,10,28,0.0 +26396,26,31.23,32,0.0 +26396,42,14,30,0.0 +26396,63,43.9,4,0.0 +26396,21,10,16,0.0 +26396,66,17,40,0.0 +26396,16,17.45,29,0.0 +26396,46,12,24,0.0 +26396,34,14,4,0.0 +26396,41,9.65,35,0.0 +26396,60,34,33,0.0 +26396,44,19.45,23,0.0 +26396,45,9.5,25,0.0 +26396,53,32.8,43,0.0 +26396,18,62.5,47,0.0 +26396,54,7.45,1,0.0 +26396,40,18.4,21,0.0 +26396,31,12.5,27,0.0 +26396,11,21,9,0.0 +26396,70,15,27,0.0 +26396,36,19,30,0.0 +26396,56,38,28,0.0 +26396,29,123.79,40,0.0 +26396,24,4.5,33,0.0 +26396,1,18,34,0.0 +26396,48,12.75,48,0.0 +26396,55,24,24,0.0 +26396,9,97,16,0.0 +26396,43,46,18,0.0 +26396,72,34.8,34,0.0 +26396,62,49.3,17,0.0 +26396,2,19,48,0.0 +26396,13,6,27,0.0 +26396,38,263.5,39,0.0 +26396,32,32,14,0.0 +26396,59,55,23,0.0 +26396,12,38,35,0.0 +26396,61,28.5,47,0.0 +26396,14,23.25,30,0.0 +26396,74,10,45,0.0 +26396,52,7,17,0.0 +26397,45,9.5,21,0.0 +26397,23,9,30,0.0 +26397,51,53,39,0.0 +26397,61,28.5,33,0.0 +26397,59,55,39,0.0 +26397,13,6,46,0.0 +26397,19,9.2,47,0.0 +26397,34,14,23,0.0 +26397,21,10,36,0.0 +26397,9,97,32,0.0 +26397,50,16.25,28,0.0 +26397,60,34,38,0.0 +26397,69,36,34,0.0 +26397,70,15,36,0.0 +26397,73,15,40,0.0 +26397,52,7,44,0.0 +26397,30,25.89,2,0.0 +26397,5,21.35,28,0.0 +26397,65,21.05,32,0.0 +26397,2,19,22,0.0 +26397,54,7.45,42,0.0 +26397,17,39,46,0.0 +26398,16,17.45,48,0.0 +26398,19,9.2,2,0.0 +26398,2,19,35,0.0 +26398,60,34,35,0.0 +26398,46,12,21,0.0 +26398,6,25,17,0.0 +26398,71,21.5,46,0.0 +26398,15,15.5,9,0.0 +26398,49,20,19,0.0 +26398,65,21.05,3,0.0 +26398,24,4.5,38,0.0 +26398,62,49.3,36,0.0 +26398,25,14,30,0.0 +26398,69,36,34,0.0 +26398,52,7,20,0.0 +26398,39,18,46,0.0 +26398,36,19,32,0.0 +26398,7,30,26,0.0 +26398,8,40,19,0.0 +26398,74,10,46,0.0 +26398,9,97,36,0.0 +26398,72,34.8,33,0.0 +26398,58,13.25,13,0.0 +26398,45,9.5,1,0.0 +26398,22,21,15,0.0 +26398,63,43.9,27,0.0 +26398,23,9,17,0.0 +26398,76,18,19,0.0 +26398,20,81,36,0.0 +26398,31,12.5,50,0.0 +26398,35,18,29,0.0 +26398,1,18,17,0.0 +26398,33,2.5,22,0.0 +26398,48,12.75,22,0.0 +26398,77,13,35,0.0 +26398,30,25.89,39,0.0 +26398,5,21.35,16,0.0 +26398,57,19.5,44,0.0 +26398,51,53,46,0.0 +26398,66,17,34,0.0 +26398,68,12.5,20,0.0 +26398,42,14,24,0.0 +26398,18,62.5,42,0.0 +26398,73,15,16,0.0 +26398,47,9.5,43,0.0 +26398,50,16.25,6,0.0 +26398,53,32.8,33,0.0 +26398,43,46,25,0.0 +26398,34,14,47,0.0 +26399,15,15.5,16,0.0 +26399,73,15,11,0.0 +26399,70,15,29,0.0 +26399,18,62.5,5,0.0 +26399,69,36,35,0.0 +26399,16,17.45,47,0.0 +26399,52,7,40,0.0 +26399,53,32.8,2,0.0 +26399,63,43.9,22,0.0 +26399,27,43.9,48,0.0 +26399,64,33.25,25,0.0 +26399,29,123.79,10,0.0 +26399,2,19,13,0.0 +26399,59,55,50,0.0 +26399,56,38,31,0.0 +26399,67,14,37,0.0 +26399,22,21,50,0.0 +26399,41,9.65,3,0.0 +26400,54,7.45,49,0.0 +26400,69,36,37,0.0 +26400,17,39,45,0.0 +26400,71,21.5,38,0.0 +26400,49,20,2,0.0 +26400,25,14,32,0.0 +26400,14,23.25,23,0.0 +26400,67,14,14,0.0 +26400,70,15,45,0.0 +26400,42,14,34,0.0 +26400,64,33.25,13,0.0 +26400,19,9.2,15,0.0 +26400,48,12.75,39,0.0 +26400,7,30,25,0.0 +26400,52,7,15,0.0 +26400,62,49.3,38,0.0 +26400,24,4.5,39,0.0 +26400,33,2.5,12,0.0 +26400,28,45.6,47,0.0 +26400,6,25,10,0.0 +26400,37,26,5,0.0 +26400,31,12.5,10,0.0 +26400,50,16.25,36,0.0 +26400,16,17.45,42,0.0 +26400,59,55,14,0.0 +26400,29,123.79,30,0.0 +26400,73,15,34,0.0 +26400,60,34,44,0.0 +26400,68,12.5,29,0.0 +26400,12,38,32,0.0 +26400,43,46,12,0.0 +26400,9,97,4,0.0 +26400,53,32.8,6,0.0 +26400,63,43.9,47,0.0 +26400,38,263.5,47,0.0 +26400,15,15.5,4,0.0 +26400,35,18,3,0.0 +26400,4,22,48,0.0 +26400,44,19.45,21,0.0 +26400,55,24,12,0.0 +26400,1,18,41,0.0 +26400,30,25.89,28,0.0 +26400,40,18.4,32,0.0 +26400,65,21.05,22,0.0 +26400,23,9,36,0.0 +26400,76,18,25,0.0 +26400,8,40,18,0.0 +26400,45,9.5,15,0.0 +26400,5,21.35,48,0.0 +26400,22,21,50,0.0 +26400,34,14,35,0.0 +26400,13,6,8,0.0 +26400,74,10,39,0.0 +26400,10,31,25,0.0 +26400,32,32,24,0.0 +26400,75,7.75,15,0.0 +26400,51,53,17,0.0 +26400,26,31.23,38,0.0 +26400,27,43.9,15,0.0 +26400,61,28.5,33,0.0 +26400,18,62.5,13,0.0 +26400,66,17,4,0.0 +26400,11,21,17,0.0 +26401,15,15.5,27,0.0 +26401,73,15,11,0.0 +26401,5,21.35,2,0.0 +26401,45,9.5,5,0.0 +26401,28,45.6,49,0.0 +26401,40,18.4,35,0.0 +26401,62,49.3,47,0.0 +26401,58,13.25,26,0.0 +26401,38,263.5,33,0.0 +26401,68,12.5,25,0.0 +26401,42,14,29,0.0 +26401,6,25,21,0.0 +26401,11,21,37,0.0 +26401,36,19,10,0.0 +26401,24,4.5,17,0.0 +26401,74,10,18,0.0 +26401,37,26,31,0.0 +26401,52,7,46,0.0 +26401,34,14,18,0.0 +26401,3,10,21,0.0 +26401,59,55,13,0.0 +26401,51,53,26,0.0 +26401,60,34,44,0.0 +26401,31,12.5,26,0.0 +26401,72,34.8,41,0.0 +26401,77,13,37,0.0 +26401,29,123.79,29,0.0 +26401,10,31,20,0.0 +26401,30,25.89,32,0.0 +26401,14,23.25,19,0.0 +26401,41,9.65,42,0.0 +26401,49,20,5,0.0 +26401,21,10,15,0.0 +26401,2,19,9,0.0 +26401,27,43.9,32,0.0 +26401,69,36,2,0.0 +26401,53,32.8,18,0.0 +26401,17,39,41,0.0 +26401,4,22,16,0.0 +26401,7,30,22,0.0 +26401,35,18,5,0.0 +26401,39,18,34,0.0 +26401,46,12,33,0.0 +26401,22,21,9,0.0 +26401,63,43.9,9,0.0 +26401,44,19.45,42,0.0 +26401,61,28.5,47,0.0 +26401,25,14,48,0.0 +26401,71,21.5,24,0.0 +26401,65,21.05,20,0.0 +26401,67,14,24,0.0 +26401,66,17,24,0.0 +26401,1,18,33,0.0 +26401,43,46,30,0.0 +26401,18,62.5,40,0.0 +26401,33,2.5,17,0.0 +26401,50,16.25,7,0.0 +26401,16,17.45,3,0.0 +26402,18,62.5,19,0.0 +26402,72,34.8,22,0.0 +26402,5,21.35,38,0.0 +26402,47,9.5,19,0.0 +26402,51,53,30,0.0 +26402,49,20,5,0.0 +26402,67,14,17,0.0 +26402,37,26,8,0.0 +26402,30,25.89,1,0.0 +26402,54,7.45,42,0.0 +26402,9,97,48,0.0 +26402,58,13.25,3,0.0 +26402,28,45.6,13,0.0 +26402,29,123.79,3,0.0 +26402,70,15,19,0.0 +26402,27,43.9,29,0.0 +26402,69,36,4,0.0 +26402,24,4.5,3,0.0 +26402,1,18,37,0.0 +26402,57,19.5,38,0.0 +26402,45,9.5,36,0.0 +26402,8,40,7,0.0 +26403,72,34.8,9,0.0 +26403,48,12.75,38,0.0 +26403,22,21,14,0.0 +26403,1,18,8,0.0 +26403,6,25,35,0.0 +26403,52,7,4,0.0 +26403,15,15.5,45,0.0 +26403,14,23.25,44,0.0 +26403,13,6,48,0.0 +26403,71,21.5,18,0.0 +26403,37,26,46,0.0 +26403,65,21.05,31,0.0 +26403,21,10,2,0.0 +26403,75,7.75,37,0.0 +26403,61,28.5,8,0.0 +26403,41,9.65,19,0.0 +26403,16,17.45,37,0.0 +26403,77,13,31,0.0 +26403,54,7.45,11,0.0 +26403,8,40,48,0.0 +26403,23,9,12,0.0 +26403,36,19,40,0.0 +26403,4,22,2,0.0 +26403,28,45.6,39,0.0 +26403,29,123.79,47,0.0 +26403,70,15,28,0.0 +26403,46,12,32,0.0 +26403,44,19.45,49,0.0 +26403,10,31,19,0.0 +26403,40,18.4,31,0.0 +26403,63,43.9,4,0.0 +26403,11,21,37,0.0 +26403,33,2.5,1,0.0 +26403,59,55,38,0.0 +26403,68,12.5,11,0.0 +26403,57,19.5,49,0.0 +26404,52,7,23,0.0 +26404,10,31,10,0.0 +26404,42,14,50,0.0 +26404,35,18,25,0.0 +26404,63,43.9,23,0.0 +26404,74,10,40,0.0 +26404,29,123.79,45,0.0 +26404,19,9.2,44,0.0 +26404,72,34.8,3,0.0 +26404,6,25,23,0.0 +26404,70,15,26,0.0 +26404,59,55,15,0.0 +26404,34,14,36,0.0 +26404,1,18,22,0.0 +26404,11,21,30,0.0 +26404,51,53,4,0.0 +26404,77,13,45,0.0 +26404,62,49.3,1,0.0 +26404,18,62.5,16,0.0 +26404,64,33.25,8,0.0 +26404,21,10,3,0.0 +26404,16,17.45,43,0.0 +26404,12,38,24,0.0 +26404,45,9.5,38,0.0 +26404,40,18.4,19,0.0 +26404,30,25.89,21,0.0 +26404,73,15,39,0.0 +26404,8,40,25,0.0 +26404,26,31.23,49,0.0 +26404,17,39,16,0.0 +26404,56,38,19,0.0 +26404,75,7.75,15,0.0 +26404,9,97,18,0.0 +26404,3,10,37,0.0 +26404,15,15.5,47,0.0 +26404,48,12.75,41,0.0 +26404,47,9.5,14,0.0 +26404,39,18,50,0.0 +26404,55,24,5,0.0 +26404,41,9.65,3,0.0 +26404,22,21,19,0.0 +26405,11,21,32,0.0 +26405,56,38,5,0.0 +26405,70,15,4,0.0 +26405,69,36,41,0.0 +26405,37,26,29,0.0 +26405,54,7.45,19,0.0 +26405,31,12.5,16,0.0 +26405,38,263.5,9,0.0 +26405,34,14,20,0.0 +26405,55,24,31,0.0 +26405,65,21.05,40,0.0 +26405,76,18,1,0.0 +26405,17,39,23,0.0 +26405,33,2.5,36,0.0 +26405,22,21,49,0.0 +26405,62,49.3,30,0.0 +26405,5,21.35,22,0.0 +26405,36,19,31,0.0 +26405,20,81,18,0.0 +26405,61,28.5,30,0.0 +26405,12,38,18,0.0 +26405,6,25,16,0.0 +26405,18,62.5,9,0.0 +26405,41,9.65,6,0.0 +26405,74,10,6,0.0 +26405,13,6,40,0.0 +26405,64,33.25,3,0.0 +26405,42,14,25,0.0 +26405,25,14,47,0.0 +26405,21,10,39,0.0 +26405,47,9.5,19,0.0 +26405,9,97,16,0.0 +26405,32,32,15,0.0 +26405,72,34.8,3,0.0 +26405,60,34,35,0.0 +26405,4,22,31,0.0 +26405,26,31.23,6,0.0 +26405,44,19.45,21,0.0 +26405,8,40,48,0.0 +26405,29,123.79,28,0.0 +26405,7,30,5,0.0 +26405,50,16.25,46,0.0 +26405,2,19,15,0.0 +26405,27,43.9,19,0.0 +26405,1,18,47,0.0 +26405,23,9,19,0.0 +26405,40,18.4,34,0.0 +26405,58,13.25,27,0.0 +26405,39,18,39,0.0 +26405,35,18,10,0.0 +26405,51,53,37,0.0 +26405,30,25.89,11,0.0 +26405,43,46,34,0.0 +26405,68,12.5,25,0.0 +26405,73,15,26,0.0 +26405,48,12.75,41,0.0 +26406,45,9.5,19,0.0 +26406,49,20,10,0.0 +26406,5,21.35,7,0.0 +26406,4,22,43,0.0 +26406,62,49.3,4,0.0 +26406,52,7,10,0.0 +26406,74,10,48,0.0 +26406,61,28.5,27,0.0 +26406,73,15,37,0.0 +26406,19,9.2,16,0.0 +26406,35,18,4,0.0 +26406,51,53,7,0.0 +26406,41,9.65,35,0.0 +26406,21,10,6,0.0 +26406,2,19,13,0.0 +26406,38,263.5,31,0.0 +26406,66,17,14,0.0 +26406,77,13,38,0.0 +26406,50,16.25,37,0.0 +26406,76,18,17,0.0 +26406,59,55,37,0.0 +26406,57,19.5,23,0.0 +26406,48,12.75,37,0.0 +26406,17,39,5,0.0 +26406,33,2.5,10,0.0 +26406,27,43.9,15,0.0 +26406,11,21,31,0.0 +26406,28,45.6,9,0.0 +26406,58,13.25,23,0.0 +26406,8,40,30,0.0 +26406,75,7.75,50,0.0 +26406,1,18,25,0.0 +26406,63,43.9,2,0.0 +26406,34,14,35,0.0 +26406,15,15.5,49,0.0 +26406,42,14,15,0.0 +26407,47,9.5,38,0.0 +26407,27,43.9,6,0.0 +26407,12,38,30,0.0 +26407,69,36,43,0.0 +26407,32,32,1,0.0 +26407,45,9.5,4,0.0 +26407,7,30,36,0.0 +26407,74,10,34,0.0 +26407,38,263.5,37,0.0 +26407,36,19,19,0.0 +26407,5,21.35,9,0.0 +26407,70,15,16,0.0 +26407,64,33.25,41,0.0 +26407,6,25,49,0.0 +26407,48,12.75,25,0.0 +26407,16,17.45,42,0.0 +26407,28,45.6,18,0.0 +26407,77,13,7,0.0 +26407,3,10,1,0.0 +26407,13,6,48,0.0 +26407,19,9.2,19,0.0 +26407,66,17,30,0.0 +26407,22,21,39,0.0 +26408,2,19,14,0.0 +26408,63,43.9,3,0.0 +26408,59,55,18,0.0 +26408,70,15,14,0.0 +26408,50,16.25,12,0.0 +26408,76,18,19,0.0 +26408,42,14,42,0.0 +26408,28,45.6,31,0.0 +26408,23,9,4,0.0 +26408,45,9.5,23,0.0 +26408,71,21.5,27,0.0 +26408,67,14,24,0.0 +26408,10,31,40,0.0 +26408,40,18.4,37,0.0 +26408,22,21,35,0.0 +26408,31,12.5,22,0.0 +26408,37,26,31,0.0 +26408,48,12.75,42,0.0 +26408,58,13.25,28,0.0 +26408,39,18,26,0.0 +26408,61,28.5,45,0.0 +26408,33,2.5,17,0.0 +26408,65,21.05,13,0.0 +26408,21,10,6,0.0 +26408,36,19,18,0.0 +26408,57,19.5,33,0.0 +26408,6,25,5,0.0 +26408,75,7.75,16,0.0 +26408,14,23.25,7,0.0 +26408,77,13,23,0.0 +26408,68,12.5,5,0.0 +26408,66,17,22,0.0 +26408,11,21,25,0.0 +26408,38,263.5,23,0.0 +26408,16,17.45,11,0.0 +26408,32,32,44,0.0 +26408,17,39,28,0.0 +26408,47,9.5,32,0.0 +26408,60,34,14,0.0 +26408,51,53,5,0.0 +26408,35,18,47,0.0 +26408,69,36,38,0.0 +26408,52,7,15,0.0 +26408,24,4.5,25,0.0 +26408,29,123.79,50,0.0 +26408,13,6,16,0.0 +26408,1,18,35,0.0 +26408,43,46,11,0.0 +26408,15,15.5,31,0.0 +26408,72,34.8,29,0.0 +26408,46,12,23,0.0 +26408,64,33.25,45,0.0 +26408,73,15,21,0.0 +26408,54,7.45,47,0.0 +26408,55,24,25,0.0 +26408,4,22,30,0.0 +26408,3,10,1,0.0 +26408,5,21.35,25,0.0 +26408,62,49.3,15,0.0 +26408,25,14,12,0.0 +26408,26,31.23,23,0.0 +26408,18,62.5,21,0.0 +26408,19,9.2,47,0.0 +26408,27,43.9,37,0.0 +26409,73,15,29,0.0 +26409,52,7,11,0.0 +26409,57,19.5,47,0.0 +26410,75,7.75,21,0.0 +26410,73,15,7,0.0 +26410,20,81,48,0.0 +26410,22,21,32,0.0 +26410,29,123.79,37,0.0 +26410,10,31,40,0.0 +26410,40,18.4,1,0.0 +26410,52,7,47,0.0 +26410,61,28.5,42,0.0 +26410,77,13,46,0.0 +26410,54,7.45,39,0.0 +26410,31,12.5,21,0.0 +26410,71,21.5,39,0.0 +26410,32,32,30,0.0 +26410,65,21.05,35,0.0 +26410,39,18,35,0.0 +26410,21,10,27,0.0 +26410,56,38,17,0.0 +26410,58,13.25,6,0.0 +26410,37,26,5,0.0 +26410,8,40,34,0.0 +26410,53,32.8,44,0.0 +26410,60,34,16,0.0 +26410,30,25.89,30,0.0 +26410,3,10,11,0.0 +26410,72,34.8,29,0.0 +26410,18,62.5,16,0.0 +26410,25,14,25,0.0 +26410,45,9.5,41,0.0 +26410,6,25,24,0.0 +26410,51,53,3,0.0 +26410,34,14,15,0.0 +26410,63,43.9,2,0.0 +26410,23,9,11,0.0 +26410,15,15.5,44,0.0 +26410,19,9.2,50,0.0 +26410,14,23.25,49,0.0 +26410,38,263.5,20,0.0 +26410,62,49.3,20,0.0 +26410,55,24,14,0.0 +26410,33,2.5,20,0.0 +26410,2,19,1,0.0 +26410,49,20,7,0.0 +26410,70,15,12,0.0 +26410,13,6,23,0.0 +26410,43,46,17,0.0 +26410,44,19.45,29,0.0 +26410,35,18,19,0.0 +26410,66,17,24,0.0 +26410,69,36,8,0.0 +26410,68,12.5,27,0.0 +26410,74,10,27,0.0 +26410,9,97,20,0.0 +26410,24,4.5,44,0.0 +26410,7,30,25,0.0 +26411,67,14,30,0.0 +26411,16,17.45,10,0.0 +26411,42,14,19,0.0 +26411,44,19.45,16,0.0 +26411,26,31.23,47,0.0 +26411,27,43.9,1,0.0 +26411,18,62.5,17,0.0 +26411,57,19.5,4,0.0 +26411,31,12.5,46,0.0 +26411,71,21.5,16,0.0 +26411,4,22,29,0.0 +26411,55,24,33,0.0 +26411,19,9.2,45,0.0 +26411,56,38,15,0.0 +26411,50,16.25,46,0.0 +26411,17,39,43,0.0 +26411,62,49.3,13,0.0 +26411,65,21.05,29,0.0 +26411,60,34,19,0.0 +26411,13,6,42,0.0 +26411,32,32,40,0.0 +26411,1,18,43,0.0 +26411,49,20,16,0.0 +26411,69,36,10,0.0 +26412,72,34.8,45,0.0 +26412,63,43.9,49,0.0 +26412,27,43.9,42,0.0 +26412,37,26,31,0.0 +26412,59,55,41,0.0 +26413,27,43.9,39,0.0 +26413,23,9,34,0.0 +26413,2,19,23,0.0 +26413,55,24,3,0.0 +26413,71,21.5,5,0.0 +26413,61,28.5,7,0.0 +26413,63,43.9,48,0.0 +26413,12,38,36,0.0 +26413,59,55,11,0.0 +26413,8,40,28,0.0 +26413,1,18,46,0.0 +26413,58,13.25,26,0.0 +26413,66,17,18,0.0 +26413,39,18,35,0.0 +26413,38,263.5,11,0.0 +26413,11,21,29,0.0 +26413,54,7.45,4,0.0 +26413,41,9.65,34,0.0 +26413,56,38,34,0.0 +26413,67,14,21,0.0 +26413,24,4.5,48,0.0 +26413,21,10,32,0.0 +26413,62,49.3,24,0.0 +26413,9,97,37,0.0 +26413,72,34.8,35,0.0 +26413,3,10,49,0.0 +26413,76,18,42,0.0 +26413,48,12.75,15,0.0 +26413,68,12.5,22,0.0 +26413,65,21.05,4,0.0 +26413,52,7,14,0.0 +26413,13,6,9,0.0 +26413,14,23.25,37,0.0 +26413,40,18.4,23,0.0 +26413,57,19.5,43,0.0 +26413,25,14,32,0.0 +26413,19,9.2,7,0.0 +26413,32,32,31,0.0 +26413,46,12,39,0.0 +26413,29,123.79,22,0.0 +26413,70,15,24,0.0 +26413,49,20,14,0.0 +26413,20,81,9,0.0 +26413,7,30,7,0.0 +26413,64,33.25,47,0.0 +26413,30,25.89,45,0.0 +26413,10,31,26,0.0 +26413,15,15.5,29,0.0 +26413,34,14,12,0.0 +26413,77,13,41,0.0 +26413,36,19,14,0.0 +26413,22,21,4,0.0 +26413,51,53,34,0.0 +26413,74,10,48,0.0 +26413,17,39,18,0.0 +26413,37,26,32,0.0 +26413,47,9.5,12,0.0 +26413,28,45.6,15,0.0 +26413,6,25,23,0.0 +26413,73,15,6,0.0 +26413,50,16.25,43,0.0 +26413,26,31.23,16,0.0 +26413,18,62.5,26,0.0 +26413,69,36,42,0.0 +26413,31,12.5,7,0.0 +26413,53,32.8,9,0.0 +26413,35,18,8,0.0 +26413,5,21.35,49,0.0 +26413,44,19.45,17,0.0 +26413,43,46,4,0.0 +26414,25,14,47,0.0 +26414,41,9.65,40,0.0 +26414,17,39,10,0.0 +26414,2,19,35,0.0 +26414,5,21.35,50,0.0 +26414,13,6,28,0.0 +26414,77,13,17,0.0 +26414,27,43.9,18,0.0 +26414,55,24,3,0.0 +26414,39,18,42,0.0 +26414,37,26,22,0.0 +26414,47,9.5,22,0.0 +26414,68,12.5,36,0.0 +26414,10,31,48,0.0 +26414,1,18,39,0.0 +26414,63,43.9,4,0.0 +26414,51,53,37,0.0 +26414,38,263.5,3,0.0 +26414,59,55,49,0.0 +26414,66,17,8,0.0 +26414,26,31.23,1,0.0 +26414,31,12.5,11,0.0 +26414,44,19.45,27,0.0 +26414,32,32,22,0.0 +26414,46,12,21,0.0 +26414,12,38,28,0.0 +26414,54,7.45,41,0.0 +26414,43,46,10,0.0 +26414,3,10,37,0.0 +26414,34,14,30,0.0 +26414,45,9.5,43,0.0 +26414,24,4.5,13,0.0 +26414,8,40,2,0.0 +26414,62,49.3,50,0.0 +26414,70,15,24,0.0 +26414,60,34,39,0.0 +26415,71,21.5,41,0.0 +26415,6,25,19,0.0 +26415,75,7.75,49,0.0 +26415,42,14,24,0.0 +26415,60,34,25,0.0 +26415,74,10,49,0.0 +26415,37,26,36,0.0 +26415,56,38,31,0.0 +26415,30,25.89,33,0.0 +26415,64,33.25,25,0.0 +26415,14,23.25,39,0.0 +26415,53,32.8,34,0.0 +26415,32,32,3,0.0 +26415,18,62.5,34,0.0 +26415,55,24,28,0.0 +26415,27,43.9,22,0.0 +26415,21,10,15,0.0 +26415,40,18.4,25,0.0 +26415,57,19.5,42,0.0 +26415,16,17.45,10,0.0 +26415,63,43.9,8,0.0 +26415,67,14,30,0.0 +26415,29,123.79,29,0.0 +26415,9,97,1,0.0 +26415,26,31.23,5,0.0 +26415,61,28.5,30,0.0 +26415,1,18,8,0.0 +26415,39,18,18,0.0 +26415,25,14,38,0.0 +26415,62,49.3,15,0.0 +26415,77,13,33,0.0 +26415,23,9,45,0.0 +26415,47,9.5,42,0.0 +26415,7,30,6,0.0 +26415,33,2.5,15,0.0 +26415,17,39,12,0.0 +26415,46,12,23,0.0 +26415,72,34.8,3,0.0 +26415,50,16.25,48,0.0 +26415,66,17,1,0.0 +26415,36,19,19,0.0 +26415,34,14,10,0.0 +26415,51,53,2,0.0 +26415,54,7.45,49,0.0 +26415,49,20,15,0.0 +26415,20,81,3,0.0 +26415,24,4.5,4,0.0 +26415,3,10,11,0.0 +26415,76,18,19,0.0 +26415,2,19,22,0.0 +26415,4,22,20,0.0 +26415,10,31,32,0.0 +26415,22,21,28,0.0 +26415,58,13.25,40,0.0 +26415,28,45.6,26,0.0 +26415,15,15.5,16,0.0 +26415,59,55,35,0.0 +26416,53,32.8,43,0.0 +26416,40,18.4,11,0.0 +26416,2,19,31,0.0 +26416,4,22,17,0.0 +26416,70,15,5,0.0 +26416,5,21.35,10,0.0 +26416,18,62.5,34,0.0 +26416,43,46,17,0.0 +26416,28,45.6,11,0.0 +26416,63,43.9,39,0.0 +26416,12,38,21,0.0 +26416,15,15.5,32,0.0 +26416,71,21.5,13,0.0 +26416,75,7.75,19,0.0 +26416,56,38,11,0.0 +26416,14,23.25,17,0.0 +26416,57,19.5,19,0.0 +26416,30,25.89,2,0.0 +26416,68,12.5,2,0.0 +26416,46,12,27,0.0 +26416,37,26,22,0.0 +26416,44,19.45,24,0.0 +26416,45,9.5,39,0.0 +26416,64,33.25,31,0.0 +26416,3,10,49,0.0 +26416,23,9,41,0.0 +26416,72,34.8,34,0.0 +26416,27,43.9,37,0.0 +26416,67,14,50,0.0 +26416,32,32,31,0.0 +26416,34,14,38,0.0 +26416,35,18,6,0.0 +26416,52,7,14,0.0 +26416,22,21,27,0.0 +26416,59,55,27,0.0 +26416,65,21.05,17,0.0 +26416,39,18,49,0.0 +26416,33,2.5,7,0.0 +26416,8,40,7,0.0 +26416,16,17.45,17,0.0 +26416,19,9.2,6,0.0 +26416,48,12.75,42,0.0 +26416,61,28.5,31,0.0 +26416,24,4.5,28,0.0 +26416,41,9.65,27,0.0 +26416,69,36,43,0.0 +26416,9,97,41,0.0 +26416,51,53,50,0.0 +26416,31,12.5,24,0.0 +26416,66,17,20,0.0 +26416,62,49.3,44,0.0 +26417,47,9.5,25,0.0 +26417,7,30,21,0.0 +26417,67,14,39,0.0 +26417,13,6,26,0.0 +26417,63,43.9,46,0.0 +26417,56,38,2,0.0 +26417,69,36,10,0.0 +26417,49,20,15,0.0 +26417,3,10,5,0.0 +26417,54,7.45,48,0.0 +26417,77,13,4,0.0 +26417,70,15,16,0.0 +26417,8,40,42,0.0 +26417,36,19,45,0.0 +26417,10,31,48,0.0 +26417,4,22,20,0.0 +26417,18,62.5,9,0.0 +26417,72,34.8,15,0.0 +26418,1,18,32,0.0 +26418,4,22,15,0.0 +26418,77,13,1,0.0 +26418,62,49.3,22,0.0 +26418,3,10,19,0.0 +26418,35,18,29,0.0 +26418,8,40,15,0.0 +26418,23,9,3,0.0 +26418,26,31.23,11,0.0 +26418,37,26,24,0.0 +26418,17,39,7,0.0 +26418,38,263.5,15,0.0 +26418,19,9.2,28,0.0 +26418,74,10,9,0.0 +26418,42,14,21,0.0 +26418,67,14,49,0.0 +26418,31,12.5,42,0.0 +26418,54,7.45,47,0.0 +26418,56,38,16,0.0 +26418,44,19.45,21,0.0 +26418,61,28.5,24,0.0 +26418,5,21.35,25,0.0 +26418,41,9.65,2,0.0 +26418,75,7.75,43,0.0 +26418,2,19,1,0.0 +26418,71,21.5,12,0.0 +26418,59,55,15,0.0 +26418,16,17.45,27,0.0 +26418,52,7,10,0.0 +26418,15,15.5,44,0.0 +26418,65,21.05,19,0.0 +26418,22,21,50,0.0 +26418,21,10,6,0.0 +26418,24,4.5,9,0.0 +26418,39,18,41,0.0 +26418,60,34,7,0.0 +26418,55,24,23,0.0 +26418,20,81,2,0.0 +26418,11,21,24,0.0 +26418,46,12,33,0.0 +26418,14,23.25,44,0.0 +26418,69,36,15,0.0 +26418,76,18,38,0.0 +26418,64,33.25,11,0.0 +26418,53,32.8,3,0.0 +26418,66,17,10,0.0 +26418,10,31,30,0.0 +26418,13,6,17,0.0 +26418,29,123.79,44,0.0 +26418,6,25,44,0.0 +26419,69,36,45,0.0 +26419,56,38,47,0.0 +26419,55,24,47,0.0 +26419,22,21,31,0.0 +26419,50,16.25,48,0.0 +26419,51,53,10,0.0 +26419,54,7.45,50,0.0 +26419,6,25,2,0.0 +26419,64,33.25,20,0.0 +26419,67,14,7,0.0 +26419,58,13.25,31,0.0 +26419,12,38,28,0.0 +26419,38,263.5,29,0.0 +26419,41,9.65,18,0.0 +26419,7,30,20,0.0 +26419,14,23.25,26,0.0 +26419,10,31,35,0.0 +26419,40,18.4,28,0.0 +26419,66,17,16,0.0 +26419,39,18,49,0.0 +26419,72,34.8,7,0.0 +26419,29,123.79,35,0.0 +26419,48,12.75,45,0.0 +26419,32,32,17,0.0 +26419,31,12.5,39,0.0 +26419,23,9,36,0.0 +26419,18,62.5,9,0.0 +26419,17,39,35,0.0 +26419,11,21,40,0.0 +26419,19,9.2,27,0.0 +26419,49,20,14,0.0 +26419,52,7,14,0.0 +26419,42,14,35,0.0 +26419,28,45.6,1,0.0 +26419,57,19.5,25,0.0 +26419,36,19,10,0.0 +26419,44,19.45,5,0.0 +26419,46,12,33,0.0 +26419,61,28.5,40,0.0 +26419,62,49.3,39,0.0 +26419,77,13,24,0.0 +26419,43,46,47,0.0 +26419,25,14,24,0.0 +26419,33,2.5,32,0.0 +26419,21,10,26,0.0 +26419,70,15,27,0.0 +26419,73,15,34,0.0 +26419,16,17.45,9,0.0 +26419,2,19,19,0.0 +26419,63,43.9,30,0.0 +26419,37,26,18,0.0 +26419,13,6,3,0.0 +26419,65,21.05,43,0.0 +26419,35,18,24,0.0 +26419,68,12.5,29,0.0 +26419,59,55,8,0.0 +26419,9,97,18,0.0 +26419,27,43.9,38,0.0 +26419,74,10,24,0.0 +26419,76,18,14,0.0 +26419,24,4.5,49,0.0 +26419,26,31.23,2,0.0 +26419,45,9.5,48,0.0 +26419,20,81,11,0.0 +26419,71,21.5,6,0.0 +26419,53,32.8,46,0.0 +26419,34,14,50,0.0 +26419,47,9.5,37,0.0 +26419,5,21.35,46,0.0 +26419,3,10,4,0.0 +26419,75,7.75,33,0.0 +26419,60,34,48,0.0 +26420,4,22,7,0.0 +26420,53,32.8,5,0.0 +26420,14,23.25,11,0.0 +26420,22,21,14,0.0 +26420,69,36,1,0.0 +26420,54,7.45,3,0.0 +26420,6,25,40,0.0 +26420,30,25.89,22,0.0 +26420,51,53,18,0.0 +26420,1,18,5,0.0 +26420,27,43.9,23,0.0 +26420,52,7,49,0.0 +26420,57,19.5,20,0.0 +26420,47,9.5,19,0.0 +26420,9,97,47,0.0 +26420,13,6,32,0.0 +26420,7,30,14,0.0 +26420,41,9.65,10,0.0 +26420,44,19.45,38,0.0 +26420,74,10,40,0.0 +26420,2,19,44,0.0 +26420,32,32,28,0.0 +26420,36,19,19,0.0 +26420,67,14,42,0.0 +26420,48,12.75,24,0.0 +26420,68,12.5,36,0.0 +26420,60,34,49,0.0 +26420,63,43.9,28,0.0 +26420,77,13,40,0.0 +26420,29,123.79,7,0.0 +26420,25,14,14,0.0 +26420,66,17,20,0.0 +26420,40,18.4,48,0.0 +26420,39,18,44,0.0 +26420,31,12.5,9,0.0 +26420,70,15,17,0.0 +26420,50,16.25,35,0.0 +26421,51,53,49,0.0 +26421,36,19,47,0.0 +26421,11,21,23,0.0 +26421,1,18,44,0.0 +26421,47,9.5,35,0.0 +26421,27,43.9,26,0.0 +26421,48,12.75,16,0.0 +26421,15,15.5,32,0.0 +26421,30,25.89,8,0.0 +26421,16,17.45,19,0.0 +26421,34,14,32,0.0 +26421,40,18.4,34,0.0 +26421,61,28.5,1,0.0 +26421,38,263.5,46,0.0 +26421,55,24,44,0.0 +26421,18,62.5,37,0.0 +26421,42,14,46,0.0 +26421,25,14,15,0.0 +26421,24,4.5,17,0.0 +26421,10,31,38,0.0 +26421,64,33.25,22,0.0 +26421,6,25,28,0.0 +26421,45,9.5,30,0.0 +26421,70,15,48,0.0 +26421,76,18,6,0.0 +26421,26,31.23,45,0.0 +26421,32,32,19,0.0 +26421,44,19.45,23,0.0 +26421,49,20,23,0.0 +26421,9,97,46,0.0 +26421,56,38,18,0.0 +26421,33,2.5,50,0.0 +26421,67,14,12,0.0 +26421,4,22,47,0.0 +26421,46,12,19,0.0 +26421,19,9.2,6,0.0 +26421,54,7.45,22,0.0 +26421,28,45.6,10,0.0 +26421,72,34.8,40,0.0 +26421,62,49.3,12,0.0 +26421,5,21.35,34,0.0 +26421,12,38,34,0.0 +26421,8,40,37,0.0 +26421,13,6,42,0.0 +26421,37,26,16,0.0 +26421,43,46,28,0.0 +26421,35,18,18,0.0 +26421,65,21.05,10,0.0 +26421,2,19,13,0.0 +26421,59,55,23,0.0 +26421,22,21,12,0.0 +26421,7,30,42,0.0 +26421,68,12.5,22,0.0 +26421,31,12.5,33,0.0 +26421,52,7,32,0.0 +26421,21,10,34,0.0 +26421,20,81,20,0.0 +26421,60,34,15,0.0 +26421,41,9.65,7,0.0 +26421,77,13,10,0.0 +26421,57,19.5,22,0.0 +26422,50,16.25,32,0.0 +26422,67,14,31,0.0 +26422,64,33.25,49,0.0 +26422,20,81,7,0.0 +26422,14,23.25,7,0.0 +26422,7,30,18,0.0 +26422,18,62.5,19,0.0 +26422,55,24,26,0.0 +26422,21,10,6,0.0 +26422,47,9.5,14,0.0 +26422,56,38,49,0.0 +26422,33,2.5,23,0.0 +26422,35,18,11,0.0 +26422,26,31.23,49,0.0 +26422,40,18.4,50,0.0 +26423,51,53,25,0.0 +26423,40,18.4,8,0.0 +26423,58,13.25,38,0.0 +26423,64,33.25,13,0.0 +26423,16,17.45,27,0.0 +26423,70,15,33,0.0 +26423,57,19.5,8,0.0 +26423,27,43.9,7,0.0 +26423,21,10,23,0.0 +26423,43,46,37,0.0 +26423,52,7,19,0.0 +26423,26,31.23,20,0.0 +26423,10,31,26,0.0 +26423,25,14,23,0.0 +26423,31,12.5,47,0.0 +26423,28,45.6,29,0.0 +26423,54,7.45,38,0.0 +26423,6,25,33,0.0 +26423,19,9.2,41,0.0 +26423,45,9.5,23,0.0 +26423,33,2.5,21,0.0 +26423,53,32.8,49,0.0 +26423,36,19,18,0.0 +26424,25,14,50,0.0 +26424,19,9.2,42,0.0 +26424,41,9.65,5,0.0 +26424,76,18,1,0.0 +26424,9,97,1,0.0 +26424,66,17,34,0.0 +26424,17,39,4,0.0 +26424,59,55,50,0.0 +26424,55,24,26,0.0 +26424,52,7,1,0.0 +26424,33,2.5,16,0.0 +26424,65,21.05,45,0.0 +26424,21,10,2,0.0 +26424,53,32.8,49,0.0 +26424,77,13,40,0.0 +26424,16,17.45,21,0.0 +26424,32,32,19,0.0 +26424,20,81,27,0.0 +26424,1,18,4,0.0 +26424,44,19.45,47,0.0 +26424,12,38,19,0.0 +26424,70,15,6,0.0 +26424,67,14,21,0.0 +26424,28,45.6,1,0.0 +26424,35,18,39,0.0 +26424,29,123.79,14,0.0 +26424,30,25.89,7,0.0 +26424,69,36,24,0.0 +26424,60,34,38,0.0 +26424,62,49.3,20,0.0 +26424,34,14,23,0.0 +26424,36,19,6,0.0 +26424,48,12.75,45,0.0 +26424,56,38,40,0.0 +26424,75,7.75,22,0.0 +26424,45,9.5,18,0.0 +26424,50,16.25,31,0.0 +26424,11,21,9,0.0 +26424,6,25,28,0.0 +26424,18,62.5,33,0.0 +26424,63,43.9,19,0.0 +26424,74,10,5,0.0 +26424,23,9,18,0.0 +26424,73,15,27,0.0 +26424,46,12,49,0.0 +26424,40,18.4,1,0.0 +26424,54,7.45,32,0.0 +26424,10,31,41,0.0 +26424,4,22,20,0.0 +26424,26,31.23,29,0.0 +26424,47,9.5,14,0.0 +26424,15,15.5,40,0.0 +26424,49,20,17,0.0 +26424,43,46,31,0.0 +26424,51,53,16,0.0 +26424,38,263.5,49,0.0 +26424,2,19,23,0.0 +26424,5,21.35,20,0.0 +26424,42,14,24,0.0 +26424,8,40,27,0.0 +26424,72,34.8,10,0.0 +26424,61,28.5,43,0.0 +26424,7,30,23,0.0 +26424,3,10,10,0.0 +26424,57,19.5,45,0.0 +26424,58,13.25,46,0.0 +26424,31,12.5,43,0.0 +26425,68,12.5,23,0.0 +26425,67,14,14,0.0 +26425,44,19.45,8,0.0 +26425,75,7.75,41,0.0 +26425,49,20,32,0.0 +26425,11,21,45,0.0 +26425,6,25,1,0.0 +26425,18,62.5,27,0.0 +26425,22,21,34,0.0 +26425,55,24,43,0.0 +26425,20,81,26,0.0 +26425,47,9.5,3,0.0 +26425,29,123.79,28,0.0 +26425,5,21.35,48,0.0 +26425,65,21.05,32,0.0 +26425,66,17,40,0.0 +26425,13,6,47,0.0 +26425,48,12.75,2,0.0 +26425,64,33.25,43,0.0 +26425,39,18,36,0.0 +26425,51,53,27,0.0 +26425,77,13,43,0.0 +26425,74,10,6,0.0 +26425,15,15.5,14,0.0 +26425,42,14,24,0.0 +26425,62,49.3,46,0.0 +26425,73,15,47,0.0 +26425,45,9.5,32,0.0 +26425,21,10,39,0.0 +26425,31,12.5,33,0.0 +26425,40,18.4,44,0.0 +26425,24,4.5,10,0.0 +26425,30,25.89,4,0.0 +26425,14,23.25,43,0.0 +26425,60,34,23,0.0 +26425,76,18,48,0.0 +26425,69,36,3,0.0 +26425,23,9,49,0.0 +26425,52,7,31,0.0 +26425,53,32.8,26,0.0 +26425,36,19,8,0.0 +26425,70,15,3,0.0 +26425,12,38,9,0.0 +26425,57,19.5,36,0.0 +26425,33,2.5,11,0.0 +26425,32,32,27,0.0 +26425,34,14,42,0.0 +26425,43,46,37,0.0 +26425,7,30,43,0.0 +26425,27,43.9,15,0.0 +26425,38,263.5,25,0.0 +26425,61,28.5,38,0.0 +26425,54,7.45,41,0.0 +26425,19,9.2,15,0.0 +26425,16,17.45,50,0.0 +26426,11,21,40,0.0 +26426,8,40,30,0.0 +26426,36,19,44,0.0 +26426,49,20,17,0.0 +26426,69,36,46,0.0 +26426,66,17,6,0.0 +26426,4,22,2,0.0 +26426,3,10,25,0.0 +26426,25,14,45,0.0 +26426,21,10,4,0.0 +26426,28,45.6,23,0.0 +26426,65,21.05,31,0.0 +26426,22,21,41,0.0 +26426,51,53,16,0.0 +26426,52,7,50,0.0 +26426,55,24,29,0.0 +26426,43,46,41,0.0 +26426,58,13.25,26,0.0 +26426,54,7.45,46,0.0 +26426,18,62.5,42,0.0 +26426,32,32,27,0.0 +26426,45,9.5,39,0.0 +26426,76,18,37,0.0 +26426,42,14,45,0.0 +26426,77,13,21,0.0 +26426,13,6,33,0.0 +26426,37,26,9,0.0 +26426,23,9,13,0.0 +26426,9,97,38,0.0 +26426,30,25.89,26,0.0 +26426,70,15,5,0.0 +26426,14,23.25,21,0.0 +26426,38,263.5,24,0.0 +26426,33,2.5,18,0.0 +26426,60,34,33,0.0 +26426,62,49.3,27,0.0 +26426,5,21.35,15,0.0 +26426,57,19.5,30,0.0 +26426,24,4.5,42,0.0 +26426,56,38,9,0.0 +26426,71,21.5,15,0.0 +26426,72,34.8,5,0.0 +26426,20,81,42,0.0 +26426,61,28.5,39,0.0 +26427,64,33.25,28,0.0 +26427,48,12.75,20,0.0 +26427,24,4.5,1,0.0 +26427,21,10,12,0.0 +26427,7,30,5,0.0 +26427,66,17,37,0.0 +26427,54,7.45,38,0.0 +26427,55,24,32,0.0 +26427,46,12,39,0.0 +26427,68,12.5,22,0.0 +26427,26,31.23,15,0.0 +26427,6,25,26,0.0 +26427,71,21.5,2,0.0 +26427,4,22,12,0.0 +26427,8,40,36,0.0 +26427,2,19,19,0.0 +26427,28,45.6,32,0.0 +26427,43,46,23,0.0 +26427,70,15,20,0.0 +26427,37,26,30,0.0 +26427,31,12.5,22,0.0 +26427,65,21.05,1,0.0 +26427,63,43.9,19,0.0 +26427,12,38,30,0.0 +26427,34,14,41,0.0 +26427,72,34.8,30,0.0 +26427,74,10,13,0.0 +26427,75,7.75,3,0.0 +26427,10,31,38,0.0 +26427,5,21.35,47,0.0 +26427,16,17.45,4,0.0 +26427,3,10,40,0.0 +26427,73,15,21,0.0 +26427,29,123.79,33,0.0 +26427,9,97,11,0.0 +26427,60,34,13,0.0 +26427,50,16.25,40,0.0 +26427,41,9.65,40,0.0 +26427,69,36,50,0.0 +26427,22,21,34,0.0 +26427,77,13,9,0.0 +26427,11,21,27,0.0 +26427,20,81,15,0.0 +26427,14,23.25,13,0.0 +26427,61,28.5,37,0.0 +26427,40,18.4,24,0.0 +26427,76,18,42,0.0 +26427,57,19.5,38,0.0 +26427,44,19.45,10,0.0 +26427,32,32,5,0.0 +26427,35,18,17,0.0 +26427,27,43.9,3,0.0 +26427,42,14,17,0.0 +26427,59,55,2,0.0 +26427,58,13.25,19,0.0 +26427,39,18,50,0.0 +26427,30,25.89,26,0.0 +26427,15,15.5,7,0.0 +26427,13,6,9,0.0 +26427,56,38,19,0.0 +26427,17,39,48,0.0 +26427,52,7,47,0.0 +26427,53,32.8,28,0.0 +26427,18,62.5,23,0.0 +26427,49,20,8,0.0 +26427,51,53,46,0.0 +26428,67,14,43,0.0 +26428,58,13.25,7,0.0 +26428,69,36,31,0.0 +26428,7,30,2,0.0 +26428,59,55,21,0.0 +26428,26,31.23,43,0.0 +26428,41,9.65,25,0.0 +26428,2,19,24,0.0 +26428,32,32,8,0.0 +26428,29,123.79,32,0.0 +26428,24,4.5,43,0.0 +26428,27,43.9,8,0.0 +26428,62,49.3,18,0.0 +26428,61,28.5,26,0.0 +26428,74,10,27,0.0 +26428,40,18.4,36,0.0 +26428,6,25,4,0.0 +26428,44,19.45,13,0.0 +26428,71,21.5,50,0.0 +26428,30,25.89,4,0.0 +26428,13,6,43,0.0 +26428,39,18,22,0.0 +26428,12,38,12,0.0 +26428,76,18,11,0.0 +26428,72,34.8,6,0.0 +26428,8,40,44,0.0 +26428,68,12.5,5,0.0 +26428,66,17,11,0.0 +26428,55,24,12,0.0 +26428,17,39,36,0.0 +26428,25,14,9,0.0 +26428,16,17.45,41,0.0 +26428,28,45.6,6,0.0 +26428,11,21,34,0.0 +26428,48,12.75,47,0.0 +26428,42,14,26,0.0 +26428,46,12,32,0.0 +26428,34,14,23,0.0 +26428,50,16.25,30,0.0 +26428,54,7.45,4,0.0 +26428,21,10,7,0.0 +26428,36,19,15,0.0 +26428,35,18,27,0.0 +26428,43,46,29,0.0 +26429,1,18,18,0.0 +26429,75,7.75,23,0.0 +26429,5,21.35,50,0.0 +26429,38,263.5,47,0.0 +26429,51,53,17,0.0 +26429,59,55,46,0.0 +26429,76,18,10,0.0 +26429,34,14,17,0.0 +26429,47,9.5,24,0.0 +26429,17,39,7,0.0 +26429,66,17,18,0.0 +26429,73,15,26,0.0 +26429,46,12,14,0.0 +26429,16,17.45,28,0.0 +26429,19,9.2,46,0.0 +26429,58,13.25,27,0.0 +26429,41,9.65,23,0.0 +26429,33,2.5,20,0.0 +26429,39,18,10,0.0 +26429,57,19.5,36,0.0 +26429,3,10,1,0.0 +26429,21,10,27,0.0 +26429,61,28.5,20,0.0 +26429,28,45.6,27,0.0 +26429,67,14,22,0.0 +26429,69,36,13,0.0 +26429,40,18.4,15,0.0 +26429,70,15,32,0.0 +26429,9,97,49,0.0 +26429,36,19,10,0.0 +26429,8,40,1,0.0 +26429,71,21.5,6,0.0 +26429,23,9,34,0.0 +26429,60,34,40,0.0 +26429,27,43.9,27,0.0 +26429,72,34.8,37,0.0 +26429,31,12.5,46,0.0 +26429,65,21.05,11,0.0 +26429,4,22,11,0.0 +26429,35,18,18,0.0 +26429,13,6,44,0.0 +26429,37,26,28,0.0 +26429,30,25.89,6,0.0 +26429,50,16.25,42,0.0 +26429,68,12.5,41,0.0 +26429,45,9.5,7,0.0 +26429,10,31,41,0.0 +26429,2,19,46,0.0 +26429,56,38,17,0.0 +26429,74,10,19,0.0 +26429,63,43.9,45,0.0 +26429,24,4.5,17,0.0 +26429,7,30,10,0.0 +26429,52,7,6,0.0 +26429,44,19.45,34,0.0 +26429,11,21,5,0.0 +26429,64,33.25,39,0.0 +26429,43,46,43,0.0 +26429,22,21,48,0.0 +26429,32,32,33,0.0 +26429,48,12.75,21,0.0 +26429,26,31.23,45,0.0 +26429,15,15.5,36,0.0 +26429,62,49.3,16,0.0 +26429,53,32.8,45,0.0 +26429,77,13,35,0.0 +26429,54,7.45,43,0.0 +26429,18,62.5,13,0.0 +26429,14,23.25,17,0.0 +26429,12,38,22,0.0 +26429,20,81,41,0.0 +26430,47,9.5,38,0.0 +26430,39,18,24,0.0 +26430,1,18,18,0.0 +26430,48,12.75,37,0.0 +26430,66,17,12,0.0 +26430,32,32,12,0.0 +26430,62,49.3,34,0.0 +26430,55,24,16,0.0 +26430,65,21.05,49,0.0 +26430,2,19,18,0.0 +26430,50,16.25,13,0.0 +26430,18,62.5,17,0.0 +26430,22,21,43,0.0 +26430,64,33.25,21,0.0 +26430,20,81,9,0.0 +26430,41,9.65,49,0.0 +26430,17,39,11,0.0 +26430,63,43.9,13,0.0 +26430,71,21.5,18,0.0 +26430,8,40,48,0.0 +26430,12,38,40,0.0 +26430,16,17.45,8,0.0 +26430,26,31.23,8,0.0 +26430,21,10,16,0.0 +26430,59,55,26,0.0 +26430,29,123.79,4,0.0 +26430,70,15,41,0.0 +26430,15,15.5,41,0.0 +26430,58,13.25,18,0.0 +26430,46,12,34,0.0 +26430,24,4.5,1,0.0 +26430,73,15,13,0.0 +26430,44,19.45,10,0.0 +26430,43,46,29,0.0 +26430,60,34,24,0.0 +26430,69,36,39,0.0 +26431,44,19.45,10,0.0 +26431,8,40,43,0.0 +26431,75,7.75,38,0.0 +26431,50,16.25,40,0.0 +26431,74,10,1,0.0 +26431,2,19,46,0.0 +26431,21,10,13,0.0 +26431,41,9.65,1,0.0 +26431,22,21,31,0.0 +26431,31,12.5,29,0.0 +26431,34,14,45,0.0 +26431,59,55,50,0.0 +26431,76,18,48,0.0 +26431,45,9.5,36,0.0 +26431,66,17,11,0.0 +26431,1,18,2,0.0 +26431,29,123.79,1,0.0 +26431,56,38,34,0.0 +26431,23,9,1,0.0 +26431,53,32.8,8,0.0 +26431,30,25.89,38,0.0 +26431,25,14,39,0.0 +26431,77,13,11,0.0 +26431,46,12,48,0.0 +26431,26,31.23,46,0.0 +26431,27,43.9,14,0.0 +26431,20,81,12,0.0 +26431,5,21.35,13,0.0 +26431,40,18.4,48,0.0 +26431,38,263.5,26,0.0 +26431,42,14,45,0.0 +26431,43,46,14,0.0 +26431,13,6,30,0.0 +26431,15,15.5,42,0.0 +26431,19,9.2,36,0.0 +26431,70,15,50,0.0 +26431,6,25,41,0.0 +26432,66,17,25,0.0 +26432,53,32.8,43,0.0 +26432,6,25,17,0.0 +26432,51,53,6,0.0 +26433,22,21,34,0.0 +26433,8,40,16,0.0 +26433,43,46,21,0.0 +26433,21,10,21,0.0 +26433,67,14,9,0.0 +26433,1,18,26,0.0 +26433,2,19,28,0.0 +26433,57,19.5,2,0.0 +26433,62,49.3,41,0.0 +26433,33,2.5,17,0.0 +26433,20,81,6,0.0 +26433,24,4.5,45,0.0 +26433,31,12.5,33,0.0 +26433,19,9.2,2,0.0 +26433,34,14,25,0.0 +26433,72,34.8,13,0.0 +26433,76,18,3,0.0 +26433,65,21.05,49,0.0 +26433,47,9.5,28,0.0 +26433,32,32,12,0.0 +26433,49,20,34,0.0 +26433,11,21,20,0.0 +26433,74,10,7,0.0 +26433,28,45.6,41,0.0 +26433,30,25.89,46,0.0 +26433,58,13.25,4,0.0 +26433,54,7.45,8,0.0 +26433,66,17,47,0.0 +26433,23,9,13,0.0 +26433,73,15,41,0.0 +26433,44,19.45,7,0.0 +26433,35,18,24,0.0 +26433,60,34,24,0.0 +26433,75,7.75,3,0.0 +26433,39,18,49,0.0 +26433,59,55,13,0.0 +26433,63,43.9,48,0.0 +26433,69,36,46,0.0 +26433,27,43.9,32,0.0 +26433,37,26,39,0.0 +26433,77,13,6,0.0 +26433,64,33.25,29,0.0 +26434,57,19.5,43,0.0 +26434,42,14,5,0.0 +26434,24,4.5,10,0.0 +26434,68,12.5,4,0.0 +26434,64,33.25,46,0.0 +26434,41,9.65,46,0.0 +26434,14,23.25,20,0.0 +26434,8,40,19,0.0 +26434,25,14,49,0.0 +26434,39,18,3,0.0 +26434,17,39,13,0.0 +26434,13,6,22,0.0 +26434,35,18,40,0.0 +26434,6,25,31,0.0 +26434,30,25.89,26,0.0 +26434,38,263.5,41,0.0 +26434,50,16.25,24,0.0 +26434,75,7.75,37,0.0 +26434,23,9,20,0.0 +26434,51,53,15,0.0 +26434,55,24,23,0.0 +26434,73,15,4,0.0 +26434,48,12.75,29,0.0 +26434,21,10,11,0.0 +26434,33,2.5,41,0.0 +26434,71,21.5,19,0.0 +26434,29,123.79,27,0.0 +26434,20,81,39,0.0 +26434,37,26,6,0.0 +26434,74,10,23,0.0 +26434,65,21.05,14,0.0 +26434,77,13,19,0.0 +26434,5,21.35,21,0.0 +26434,34,14,23,0.0 +26434,9,97,8,0.0 +26434,53,32.8,5,0.0 +26434,36,19,33,0.0 +26434,18,62.5,43,0.0 +26434,70,15,36,0.0 +26434,60,34,24,0.0 +26435,35,18,10,0.0 +26435,14,23.25,6,0.0 +26435,45,9.5,27,0.0 +26435,68,12.5,26,0.0 +26435,76,18,34,0.0 +26435,33,2.5,28,0.0 +26435,49,20,26,0.0 +26435,50,16.25,5,0.0 +26435,51,53,19,0.0 +26435,52,7,24,0.0 +26435,59,55,21,0.0 +26435,72,34.8,5,0.0 +26435,11,21,28,0.0 +26435,77,13,34,0.0 +26435,1,18,21,0.0 +26435,7,30,28,0.0 +26435,4,22,47,0.0 +26435,28,45.6,47,0.0 +26435,73,15,11,0.0 +26435,37,26,3,0.0 +26435,56,38,4,0.0 +26435,34,14,45,0.0 +26435,53,32.8,16,0.0 +26435,18,62.5,12,0.0 +26435,63,43.9,45,0.0 +26435,3,10,22,0.0 +26435,32,32,25,0.0 +26435,5,21.35,28,0.0 +26435,66,17,38,0.0 +26435,43,46,7,0.0 +26435,61,28.5,42,0.0 +26435,62,49.3,9,0.0 +26435,17,39,16,0.0 +26435,24,4.5,13,0.0 +26435,69,36,30,0.0 +26435,54,7.45,28,0.0 +26435,67,14,24,0.0 +26435,2,19,46,0.0 +26435,6,25,32,0.0 +26435,58,13.25,40,0.0 +26435,47,9.5,21,0.0 +26435,27,43.9,17,0.0 +26435,60,34,40,0.0 +26435,74,10,41,0.0 +26435,39,18,24,0.0 +26435,19,9.2,6,0.0 +26435,22,21,34,0.0 +26435,16,17.45,38,0.0 +26435,9,97,34,0.0 +26435,31,12.5,20,0.0 +26435,44,19.45,27,0.0 +26435,64,33.25,40,0.0 +26435,26,31.23,46,0.0 +26436,44,19.45,30,0.0 +26437,77,13,35,0.0 +26437,23,9,41,0.0 +26437,40,18.4,17,0.0 +26437,29,123.79,21,0.0 +26437,53,32.8,28,0.0 +26437,56,38,24,0.0 +26437,39,18,40,0.0 +26437,74,10,5,0.0 +26437,9,97,32,0.0 +26437,58,13.25,20,0.0 +26437,13,6,1,0.0 +26437,34,14,41,0.0 +26437,33,2.5,15,0.0 +26437,72,34.8,8,0.0 +26437,48,12.75,44,0.0 +26437,24,4.5,19,0.0 +26437,51,53,3,0.0 +26437,52,7,28,0.0 +26437,11,21,45,0.0 +26437,73,15,28,0.0 +26437,26,31.23,1,0.0 +26437,21,10,10,0.0 +26437,63,43.9,18,0.0 +26437,55,24,47,0.0 +26437,46,12,32,0.0 +26437,28,45.6,20,0.0 +26437,54,7.45,35,0.0 +26438,5,21.35,10,0.0 +26438,64,33.25,47,0.0 +26438,71,21.5,21,0.0 +26438,24,4.5,45,0.0 +26438,12,38,29,0.0 +26438,8,40,15,0.0 +26438,42,14,24,0.0 +26438,47,9.5,10,0.0 +26438,72,34.8,33,0.0 +26438,18,62.5,25,0.0 +26438,28,45.6,31,0.0 +26438,6,25,22,0.0 +26438,22,21,22,0.0 +26439,52,7,5,0.0 +26439,35,18,41,0.0 +26439,74,10,13,0.0 +26439,22,21,46,0.0 +26439,29,123.79,19,0.0 +26439,76,18,21,0.0 +26439,18,62.5,39,0.0 +26439,45,9.5,8,0.0 +26439,77,13,16,0.0 +26439,47,9.5,32,0.0 +26439,23,9,14,0.0 +26439,19,9.2,47,0.0 +26439,62,49.3,44,0.0 +26439,24,4.5,19,0.0 +26439,57,19.5,33,0.0 +26439,26,31.23,22,0.0 +26439,9,97,24,0.0 +26439,43,46,2,0.0 +26439,50,16.25,46,0.0 +26439,58,13.25,31,0.0 +26439,70,15,24,0.0 +26439,31,12.5,13,0.0 +26439,8,40,10,0.0 +26439,30,25.89,24,0.0 +26439,28,45.6,16,0.0 +26439,25,14,44,0.0 +26439,4,22,44,0.0 +26439,69,36,7,0.0 +26439,61,28.5,19,0.0 +26439,41,9.65,29,0.0 +26439,59,55,35,0.0 +26439,60,34,20,0.0 +26439,38,263.5,44,0.0 +26439,17,39,38,0.0 +26439,55,24,22,0.0 +26439,27,43.9,41,0.0 +26439,53,32.8,48,0.0 +26439,32,32,11,0.0 +26439,2,19,1,0.0 +26439,71,21.5,3,0.0 +26439,5,21.35,48,0.0 +26439,40,18.4,23,0.0 +26439,33,2.5,12,0.0 +26439,6,25,22,0.0 +26439,11,21,38,0.0 +26439,10,31,44,0.0 +26439,75,7.75,2,0.0 +26439,42,14,23,0.0 +26439,36,19,45,0.0 +26439,65,21.05,29,0.0 +26439,66,17,39,0.0 +26439,34,14,24,0.0 +26439,63,43.9,11,0.0 +26439,46,12,20,0.0 +26439,21,10,41,0.0 +26439,12,38,32,0.0 +26439,48,12.75,28,0.0 +26439,1,18,13,0.0 +26439,15,15.5,13,0.0 +26439,68,12.5,16,0.0 +26439,3,10,5,0.0 +26439,13,6,41,0.0 +26439,37,26,1,0.0 +26439,73,15,10,0.0 +26439,54,7.45,4,0.0 +26439,44,19.45,46,0.0 +26439,14,23.25,20,0.0 +26439,7,30,7,0.0 +26439,16,17.45,23,0.0 +26439,49,20,18,0.0 +26439,72,34.8,27,0.0 +26439,20,81,10,0.0 +26440,76,18,50,0.0 +26440,18,62.5,10,0.0 +26440,55,24,45,0.0 +26440,69,36,15,0.0 +26440,40,18.4,43,0.0 +26440,9,97,31,0.0 +26440,17,39,21,0.0 +26440,16,17.45,1,0.0 +26440,66,17,27,0.0 +26440,37,26,23,0.0 +26440,31,12.5,3,0.0 +26440,64,33.25,2,0.0 +26440,29,123.79,15,0.0 +26440,43,46,14,0.0 +26440,13,6,8,0.0 +26440,26,31.23,23,0.0 +26440,61,28.5,29,0.0 +26440,70,15,29,0.0 +26440,38,263.5,11,0.0 +26440,5,21.35,16,0.0 +26440,2,19,6,0.0 +26440,45,9.5,42,0.0 +26440,46,12,21,0.0 +26440,60,34,43,0.0 +26440,67,14,49,0.0 +26440,47,9.5,6,0.0 +26440,63,43.9,3,0.0 +26440,1,18,33,0.0 +26440,62,49.3,40,0.0 +26440,10,31,36,0.0 +26440,71,21.5,34,0.0 +26440,11,21,32,0.0 +26440,7,30,12,0.0 +26440,4,22,22,0.0 +26440,28,45.6,16,0.0 +26440,74,10,8,0.0 +26440,50,16.25,39,0.0 +26440,53,32.8,40,0.0 +26440,35,18,5,0.0 +26440,73,15,28,0.0 +26440,56,38,35,0.0 +26440,54,7.45,21,0.0 +26440,48,12.75,18,0.0 +26440,19,9.2,29,0.0 +26440,41,9.65,9,0.0 +26440,51,53,38,0.0 +26440,75,7.75,24,0.0 +26440,25,14,41,0.0 +26440,15,15.5,42,0.0 +26440,12,38,14,0.0 +26440,77,13,7,0.0 +26440,32,32,50,0.0 +26440,8,40,46,0.0 +26440,22,21,44,0.0 +26440,30,25.89,31,0.0 +26440,42,14,1,0.0 +26440,72,34.8,27,0.0 +26440,57,19.5,35,0.0 +26440,24,4.5,35,0.0 +26440,49,20,23,0.0 +26440,65,21.05,33,0.0 +26440,27,43.9,20,0.0 +26440,14,23.25,21,0.0 +26440,58,13.25,43,0.0 +26440,6,25,38,0.0 +26440,3,10,30,0.0 +26440,52,7,44,0.0 +26440,39,18,27,0.0 +26441,67,14,6,0.0 +26441,60,34,43,0.0 +26441,33,2.5,28,0.0 +26441,24,4.5,50,0.0 +26441,37,26,26,0.0 +26441,57,19.5,33,0.0 +26441,41,9.65,46,0.0 +26441,53,32.8,10,0.0 +26441,59,55,39,0.0 +26441,10,31,36,0.0 +26441,32,32,32,0.0 +26441,55,24,23,0.0 +26441,70,15,17,0.0 +26441,47,9.5,17,0.0 +26441,49,20,23,0.0 +26441,19,9.2,43,0.0 +26441,40,18.4,34,0.0 +26441,46,12,50,0.0 +26441,31,12.5,36,0.0 +26441,9,97,21,0.0 +26441,16,17.45,24,0.0 +26441,38,263.5,36,0.0 +26441,68,12.5,40,0.0 +26441,23,9,23,0.0 +26441,69,36,35,0.0 +26441,56,38,30,0.0 +26441,7,30,14,0.0 +26441,43,46,29,0.0 +26441,34,14,28,0.0 +26441,20,81,45,0.0 +26441,66,17,5,0.0 +26442,53,32.8,39,0.0 +26442,34,14,21,0.0 +26442,67,14,43,0.0 +26442,10,31,44,0.0 +26442,4,22,1,0.0 +26442,65,21.05,2,0.0 +26442,75,7.75,15,0.0 +26442,18,62.5,3,0.0 +26442,1,18,18,0.0 +26442,49,20,26,0.0 +26442,41,9.65,8,0.0 +26442,22,21,17,0.0 +26442,48,12.75,47,0.0 +26442,44,19.45,2,0.0 +26442,38,263.5,7,0.0 +26442,7,30,5,0.0 +26442,76,18,48,0.0 +26442,74,10,9,0.0 +26442,31,12.5,48,0.0 +26442,30,25.89,30,0.0 +26442,3,10,24,0.0 +26442,25,14,23,0.0 +26443,77,13,6,0.0 +26443,73,15,42,0.0 +26443,23,9,1,0.0 +26443,1,18,36,0.0 +26443,40,18.4,16,0.0 +26443,66,17,18,0.0 +26443,33,2.5,12,0.0 +26443,76,18,31,0.0 +26443,42,14,19,0.0 +26443,6,25,32,0.0 +26443,36,19,16,0.0 +26443,25,14,49,0.0 +26443,75,7.75,26,0.0 +26443,2,19,31,0.0 +26443,8,40,24,0.0 +26443,48,12.75,32,0.0 +26443,67,14,38,0.0 +26443,34,14,42,0.0 +26443,63,43.9,3,0.0 +26443,65,21.05,26,0.0 +26443,20,81,35,0.0 +26443,28,45.6,43,0.0 +26443,3,10,45,0.0 +26443,44,19.45,17,0.0 +26443,64,33.25,11,0.0 +26443,4,22,3,0.0 +26443,5,21.35,37,0.0 +26443,45,9.5,38,0.0 +26444,36,19,47,0.0 +26444,38,263.5,6,0.0 +26444,33,2.5,44,0.0 +26444,43,46,17,0.0 +26444,51,53,13,0.0 +26444,76,18,39,0.0 +26444,19,9.2,15,0.0 +26444,52,7,18,0.0 +26444,1,18,11,0.0 +26444,49,20,38,0.0 +26444,16,17.45,9,0.0 +26444,20,81,4,0.0 +26444,13,6,7,0.0 +26444,44,19.45,40,0.0 +26444,72,34.8,29,0.0 +26444,22,21,22,0.0 +26444,4,22,14,0.0 +26444,61,28.5,16,0.0 +26444,15,15.5,24,0.0 +26444,47,9.5,6,0.0 +26444,62,49.3,20,0.0 +26444,73,15,32,0.0 +26444,29,123.79,13,0.0 +26444,48,12.75,48,0.0 +26444,64,33.25,24,0.0 +26444,7,30,24,0.0 +26444,27,43.9,42,0.0 +26444,32,32,36,0.0 +26444,24,4.5,6,0.0 +26444,60,34,47,0.0 +26444,37,26,35,0.0 +26444,40,18.4,25,0.0 +26444,55,24,23,0.0 +26444,26,31.23,4,0.0 +26444,17,39,38,0.0 +26444,50,16.25,29,0.0 +26444,65,21.05,42,0.0 +26444,67,14,38,0.0 +26444,18,62.5,17,0.0 +26444,57,19.5,37,0.0 +26444,69,36,18,0.0 +26444,59,55,48,0.0 +26444,75,7.75,2,0.0 +26444,53,32.8,14,0.0 +26444,42,14,45,0.0 +26444,56,38,12,0.0 +26444,34,14,4,0.0 +26445,3,10,31,0.0 +26445,63,43.9,39,0.0 +26445,77,13,1,0.0 +26445,36,19,46,0.0 +26445,1,18,15,0.0 +26445,32,32,34,0.0 +26445,65,21.05,39,0.0 +26445,54,7.45,37,0.0 +26445,45,9.5,19,0.0 +26445,50,16.25,3,0.0 +26445,74,10,23,0.0 +26445,71,21.5,10,0.0 +26445,29,123.79,38,0.0 +26445,17,39,22,0.0 +26445,25,14,17,0.0 +26445,12,38,18,0.0 +26445,43,46,13,0.0 +26445,21,10,2,0.0 +26445,24,4.5,15,0.0 +26445,8,40,11,0.0 +26445,60,34,44,0.0 +26445,14,23.25,7,0.0 +26445,28,45.6,6,0.0 +26445,56,38,43,0.0 +26445,40,18.4,25,0.0 +26445,20,81,35,0.0 +26445,23,9,40,0.0 +26445,69,36,3,0.0 +26445,34,14,36,0.0 +26445,6,25,2,0.0 +26445,57,19.5,5,0.0 +26445,39,18,21,0.0 +26445,33,2.5,7,0.0 +26445,64,33.25,43,0.0 +26445,10,31,33,0.0 +26445,30,25.89,30,0.0 +26445,51,53,8,0.0 +26445,55,24,22,0.0 +26445,76,18,5,0.0 +26446,15,15.5,26,0.0 +26446,40,18.4,12,0.0 +26446,48,12.75,23,0.0 +26446,65,21.05,26,0.0 +26446,38,263.5,25,0.0 +26446,62,49.3,11,0.0 +26446,58,13.25,32,0.0 +26446,12,38,1,0.0 +26446,69,36,43,0.0 +26446,23,9,4,0.0 +26446,73,15,48,0.0 +26446,5,21.35,48,0.0 +26446,53,32.8,13,0.0 +26446,21,10,45,0.0 +26446,64,33.25,12,0.0 +26446,16,17.45,3,0.0 +26446,71,21.5,39,0.0 +26446,33,2.5,3,0.0 +26446,17,39,15,0.0 +26446,10,31,17,0.0 +26446,47,9.5,4,0.0 +26446,68,12.5,48,0.0 +26446,35,18,18,0.0 +26446,32,32,18,0.0 +26446,27,43.9,26,0.0 +26446,2,19,28,0.0 +26446,42,14,34,0.0 +26446,31,12.5,7,0.0 +26446,46,12,4,0.0 +26446,39,18,22,0.0 +26446,43,46,15,0.0 +26446,29,123.79,15,0.0 +26446,36,19,9,0.0 +26446,61,28.5,37,0.0 +26446,49,20,3,0.0 +26446,50,16.25,26,0.0 +26446,59,55,1,0.0 +26446,54,7.45,4,0.0 +26446,72,34.8,9,0.0 +26446,60,34,13,0.0 +26446,8,40,12,0.0 +26446,11,21,10,0.0 +26446,13,6,15,0.0 +26446,19,9.2,22,0.0 +26446,22,21,20,0.0 +26446,14,23.25,25,0.0 +26446,28,45.6,46,0.0 +26446,57,19.5,36,0.0 +26446,56,38,20,0.0 +26446,41,9.65,15,0.0 +26446,37,26,38,0.0 +26446,1,18,18,0.0 +26446,74,10,14,0.0 +26446,25,14,47,0.0 +26446,6,25,20,0.0 +26446,18,62.5,5,0.0 +26447,72,34.8,11,0.0 +26447,34,14,41,0.0 +26447,57,19.5,20,0.0 +26447,13,6,48,0.0 +26447,2,19,15,0.0 +26447,67,14,7,0.0 +26447,40,18.4,27,0.0 +26447,19,9.2,28,0.0 +26447,27,43.9,25,0.0 +26447,54,7.45,34,0.0 +26447,20,81,35,0.0 +26447,17,39,37,0.0 +26447,26,31.23,49,0.0 +26447,7,30,12,0.0 +26447,35,18,19,0.0 +26447,36,19,47,0.0 +26447,60,34,24,0.0 +26447,63,43.9,41,0.0 +26447,77,13,13,0.0 +26447,38,263.5,7,0.0 +26447,70,15,29,0.0 +26447,74,10,2,0.0 +26447,16,17.45,6,0.0 +26447,53,32.8,17,0.0 +26448,52,7,5,0.0 +26448,31,12.5,24,0.0 +26448,68,12.5,31,0.0 +26448,66,17,16,0.0 +26448,58,13.25,30,0.0 +26448,44,19.45,10,0.0 +26448,49,20,45,0.0 +26448,14,23.25,40,0.0 +26448,4,22,7,0.0 +26448,12,38,31,0.0 +26448,27,43.9,3,0.0 +26448,10,31,21,0.0 +26448,3,10,6,0.0 +26448,57,19.5,22,0.0 +26448,67,14,22,0.0 +26448,72,34.8,47,0.0 +26448,40,18.4,4,0.0 +26448,60,34,47,0.0 +26448,26,31.23,32,0.0 +26448,63,43.9,47,0.0 +26448,51,53,9,0.0 +26448,22,21,13,0.0 +26448,24,4.5,8,0.0 +26448,35,18,12,0.0 +26448,38,263.5,40,0.0 +26448,56,38,10,0.0 +26448,19,9.2,47,0.0 +26448,23,9,13,0.0 +26448,50,16.25,15,0.0 +26448,62,49.3,21,0.0 +26448,47,9.5,42,0.0 +26448,59,55,37,0.0 +26448,5,21.35,41,0.0 +26448,74,10,1,0.0 +26448,73,15,9,0.0 +26448,42,14,13,0.0 +26448,46,12,50,0.0 +26448,21,10,12,0.0 +26448,30,25.89,28,0.0 +26448,48,12.75,22,0.0 +26448,75,7.75,8,0.0 +26448,54,7.45,28,0.0 +26448,76,18,48,0.0 +26448,17,39,21,0.0 +26448,8,40,11,0.0 +26448,11,21,47,0.0 +26448,43,46,48,0.0 +26448,6,25,48,0.0 +26448,61,28.5,30,0.0 +26448,15,15.5,48,0.0 +26448,69,36,46,0.0 +26448,39,18,16,0.0 +26448,70,15,41,0.0 +26448,53,32.8,20,0.0 +26448,20,81,21,0.0 +26448,55,24,9,0.0 +26448,33,2.5,4,0.0 +26448,36,19,8,0.0 +26448,7,30,27,0.0 +26448,13,6,37,0.0 +26448,65,21.05,33,0.0 +26448,25,14,14,0.0 +26448,41,9.65,27,0.0 +26448,9,97,31,0.0 +26448,29,123.79,44,0.0 +26448,16,17.45,33,0.0 +26448,37,26,12,0.0 +26448,64,33.25,2,0.0 +26448,77,13,43,0.0 +26448,34,14,16,0.0 +26448,32,32,23,0.0 +26448,71,21.5,50,0.0 +26449,7,30,27,0.0 +26449,17,39,38,0.0 +26449,59,55,46,0.0 +26449,65,21.05,50,0.0 +26449,22,21,39,0.0 +26449,68,12.5,16,0.0 +26449,74,10,40,0.0 +26449,49,20,7,0.0 +26449,54,7.45,17,0.0 +26449,21,10,26,0.0 +26449,71,21.5,17,0.0 +26449,28,45.6,47,0.0 +26449,62,49.3,12,0.0 +26449,18,62.5,18,0.0 +26449,61,28.5,6,0.0 +26449,56,38,24,0.0 +26449,76,18,20,0.0 +26449,30,25.89,49,0.0 +26449,45,9.5,24,0.0 +26449,6,25,45,0.0 +26449,29,123.79,17,0.0 +26449,43,46,1,0.0 +26449,72,34.8,48,0.0 +26449,33,2.5,25,0.0 +26449,15,15.5,4,0.0 +26449,46,12,31,0.0 +26449,50,16.25,13,0.0 +26449,19,9.2,28,0.0 +26449,23,9,29,0.0 +26449,73,15,30,0.0 +26449,3,10,5,0.0 +26449,25,14,31,0.0 +26449,44,19.45,11,0.0 +26449,41,9.65,14,0.0 +26449,53,32.8,3,0.0 +26449,77,13,47,0.0 +26449,64,33.25,10,0.0 +26449,5,21.35,17,0.0 +26449,69,36,47,0.0 +26449,38,263.5,18,0.0 +26449,60,34,17,0.0 +26449,8,40,10,0.0 +26449,48,12.75,42,0.0 +26449,26,31.23,42,0.0 +26449,51,53,9,0.0 +26449,16,17.45,32,0.0 +26450,37,26,17,0.0 +26450,57,19.5,20,0.0 +26450,14,23.25,32,0.0 +26450,61,28.5,47,0.0 +26450,2,19,10,0.0 +26450,22,21,38,0.0 +26450,59,55,36,0.0 +26451,66,17,30,0.0 +26451,75,7.75,29,0.0 +26451,18,62.5,11,0.0 +26451,11,21,24,0.0 +26451,54,7.45,31,0.0 +26451,64,33.25,11,0.0 +26451,38,263.5,22,0.0 +26451,59,55,23,0.0 +26451,4,22,35,0.0 +26451,52,7,41,0.0 +26451,2,19,17,0.0 +26451,71,21.5,45,0.0 +26451,24,4.5,26,0.0 +26451,51,53,39,0.0 +26451,60,34,32,0.0 +26451,28,45.6,9,0.0 +26451,56,38,34,0.0 +26451,76,18,39,0.0 +26451,70,15,17,0.0 +26451,39,18,18,0.0 +26451,67,14,19,0.0 +26451,63,43.9,11,0.0 +26451,13,6,13,0.0 +26451,30,25.89,30,0.0 +26451,58,13.25,30,0.0 +26451,57,19.5,49,0.0 +26451,73,15,24,0.0 +26451,43,46,36,0.0 +26451,19,9.2,8,0.0 +26451,53,32.8,47,0.0 +26451,42,14,36,0.0 +26451,25,14,16,0.0 +26451,31,12.5,38,0.0 +26451,37,26,34,0.0 +26451,44,19.45,20,0.0 +26451,6,25,4,0.0 +26451,26,31.23,6,0.0 +26451,34,14,31,0.0 +26451,33,2.5,46,0.0 +26451,41,9.65,22,0.0 +26451,10,31,38,0.0 +26451,55,24,41,0.0 +26451,74,10,7,0.0 +26451,36,19,13,0.0 +26451,21,10,19,0.0 +26451,27,43.9,40,0.0 +26451,40,18.4,6,0.0 +26451,8,40,1,0.0 +26451,72,34.8,23,0.0 +26451,22,21,24,0.0 +26451,17,39,31,0.0 +26451,65,21.05,2,0.0 +26451,61,28.5,48,0.0 +26451,35,18,14,0.0 +26451,14,23.25,38,0.0 +26451,45,9.5,14,0.0 +26451,49,20,33,0.0 +26451,47,9.5,19,0.0 +26452,69,36,20,0.0 +26452,25,14,19,0.0 +26452,76,18,38,0.0 +26452,65,21.05,50,0.0 +26452,23,9,9,0.0 +26452,16,17.45,22,0.0 +26452,30,25.89,6,0.0 +26452,6,25,2,0.0 +26452,1,18,34,0.0 +26452,29,123.79,22,0.0 +26452,34,14,7,0.0 +26452,37,26,17,0.0 +26452,12,38,44,0.0 +26452,71,21.5,24,0.0 +26452,20,81,5,0.0 +26452,74,10,46,0.0 +26452,13,6,35,0.0 +26452,52,7,19,0.0 +26452,57,19.5,10,0.0 +26452,63,43.9,38,0.0 +26452,45,9.5,49,0.0 +26452,44,19.45,12,0.0 +26452,11,21,29,0.0 +26452,32,32,31,0.0 +26452,27,43.9,37,0.0 +26452,75,7.75,9,0.0 +26452,31,12.5,44,0.0 +26452,14,23.25,27,0.0 +26452,59,55,45,0.0 +26452,40,18.4,25,0.0 +26452,33,2.5,48,0.0 +26452,56,38,10,0.0 +26452,17,39,1,0.0 +26452,3,10,17,0.0 +26452,22,21,13,0.0 +26452,70,15,45,0.0 +26452,10,31,48,0.0 +26452,41,9.65,40,0.0 +26452,7,30,41,0.0 +26453,38,263.5,9,0.0 +26453,70,15,42,0.0 +26453,10,31,43,0.0 +26453,29,123.79,9,0.0 +26453,68,12.5,17,0.0 +26453,7,30,17,0.0 +26453,45,9.5,2,0.0 +26453,25,14,26,0.0 +26453,46,12,13,0.0 +26453,36,19,2,0.0 +26453,56,38,26,0.0 +26453,11,21,3,0.0 +26453,28,45.6,27,0.0 +26453,2,19,46,0.0 +26453,53,32.8,12,0.0 +26453,35,18,9,0.0 +26453,61,28.5,24,0.0 +26453,41,9.65,45,0.0 +26453,5,21.35,10,0.0 +26453,71,21.5,21,0.0 +26453,26,31.23,37,0.0 +26453,49,20,40,0.0 +26453,1,18,28,0.0 +26453,16,17.45,27,0.0 +26453,73,15,20,0.0 +26453,64,33.25,30,0.0 +26453,21,10,9,0.0 +26453,19,9.2,5,0.0 +26453,3,10,5,0.0 +26453,66,17,32,0.0 +26453,67,14,15,0.0 +26453,48,12.75,1,0.0 +26453,33,2.5,39,0.0 +26453,15,15.5,26,0.0 +26453,32,32,34,0.0 +26453,55,24,20,0.0 +26453,62,49.3,35,0.0 +26453,39,18,15,0.0 +26453,6,25,9,0.0 +26453,14,23.25,47,0.0 +26453,40,18.4,36,0.0 +26453,63,43.9,22,0.0 +26453,54,7.45,14,0.0 +26453,59,55,8,0.0 +26453,17,39,21,0.0 +26453,52,7,22,0.0 +26453,51,53,40,0.0 +26453,22,21,16,0.0 +26453,77,13,25,0.0 +26453,43,46,18,0.0 +26453,9,97,18,0.0 +26453,37,26,22,0.0 +26453,65,21.05,48,0.0 +26453,47,9.5,2,0.0 +26453,74,10,41,0.0 +26453,30,25.89,9,0.0 +26453,13,6,26,0.0 +26453,76,18,25,0.0 +26453,75,7.75,28,0.0 +26453,69,36,17,0.0 +26453,27,43.9,22,0.0 +26453,34,14,46,0.0 +26453,23,9,16,0.0 +26453,12,38,10,0.0 +26454,44,19.45,7,0.0 +26454,4,22,13,0.0 +26454,64,33.25,16,0.0 +26454,67,14,50,0.0 +26455,34,14,7,0.0 +26455,26,31.23,20,0.0 +26455,53,32.8,30,0.0 +26455,75,7.75,44,0.0 +26455,33,2.5,19,0.0 +26455,2,19,14,0.0 +26455,56,38,41,0.0 +26455,30,25.89,40,0.0 +26455,32,32,31,0.0 +26455,51,53,24,0.0 +26455,13,6,48,0.0 +26455,42,14,44,0.0 +26455,67,14,13,0.0 +26455,11,21,11,0.0 +26455,35,18,31,0.0 +26455,1,18,19,0.0 +26455,5,21.35,31,0.0 +26455,73,15,32,0.0 +26455,7,30,7,0.0 +26455,45,9.5,47,0.0 +26455,43,46,20,0.0 +26455,21,10,6,0.0 +26455,41,9.65,24,0.0 +26455,50,16.25,18,0.0 +26455,19,9.2,10,0.0 +26455,74,10,46,0.0 +26455,46,12,34,0.0 +26455,77,13,13,0.0 +26455,49,20,40,0.0 +26455,44,19.45,5,0.0 +26455,62,49.3,49,0.0 +26455,22,21,33,0.0 +26455,16,17.45,30,0.0 +26455,61,28.5,10,0.0 +26455,72,34.8,1,0.0 +26455,8,40,38,0.0 +26455,48,12.75,42,0.0 +26455,12,38,40,0.0 +26455,24,4.5,21,0.0 +26455,27,43.9,13,0.0 +26455,57,19.5,39,0.0 +26455,38,263.5,32,0.0 +26455,76,18,48,0.0 +26455,65,21.05,36,0.0 +26455,25,14,37,0.0 +26455,10,31,20,0.0 +26455,28,45.6,14,0.0 +26455,69,36,21,0.0 +26455,58,13.25,12,0.0 +26455,9,97,43,0.0 +26456,45,9.5,1,0.0 +26456,9,97,8,0.0 +26456,64,33.25,14,0.0 +26456,11,21,30,0.0 +26456,15,15.5,44,0.0 +26456,28,45.6,10,0.0 +26456,49,20,46,0.0 +26456,35,18,17,0.0 +26456,27,43.9,37,0.0 +26456,31,12.5,26,0.0 +26456,33,2.5,36,0.0 +26456,68,12.5,15,0.0 +26456,19,9.2,8,0.0 +26456,69,36,48,0.0 +26456,62,49.3,33,0.0 +26456,40,18.4,36,0.0 +26456,56,38,43,0.0 +26456,3,10,32,0.0 +26456,39,18,18,0.0 +26456,32,32,42,0.0 +26456,42,14,42,0.0 +26456,12,38,31,0.0 +26456,61,28.5,44,0.0 +26456,66,17,49,0.0 +26456,65,21.05,44,0.0 +26456,58,13.25,20,0.0 +26456,67,14,20,0.0 +26456,38,263.5,48,0.0 +26456,30,25.89,48,0.0 +26456,70,15,27,0.0 +26456,74,10,13,0.0 +26456,54,7.45,38,0.0 +26456,36,19,27,0.0 +26456,25,14,19,0.0 +26456,41,9.65,30,0.0 +26456,57,19.5,8,0.0 +26456,13,6,20,0.0 +26456,6,25,15,0.0 +26456,10,31,14,0.0 +26456,63,43.9,47,0.0 +26456,43,46,49,0.0 +26456,26,31.23,6,0.0 +26456,4,22,9,0.0 +26456,20,81,33,0.0 +26456,16,17.45,5,0.0 +26456,44,19.45,20,0.0 +26456,60,34,41,0.0 +26456,1,18,27,0.0 +26456,47,9.5,39,0.0 +26456,73,15,13,0.0 +26456,17,39,47,0.0 +26456,2,19,32,0.0 +26456,72,34.8,47,0.0 +26457,22,21,34,0.0 +26457,10,31,47,0.0 +26457,3,10,31,0.0 +26457,74,10,1,0.0 +26457,26,31.23,17,0.0 +26457,11,21,42,0.0 +26457,27,43.9,22,0.0 +26457,68,12.5,2,0.0 +26457,71,21.5,6,0.0 +26457,17,39,22,0.0 +26457,60,34,10,0.0 +26457,19,9.2,13,0.0 +26457,14,23.25,24,0.0 +26457,45,9.5,24,0.0 +26457,65,21.05,18,0.0 +26457,35,18,28,0.0 +26457,66,17,37,0.0 +26457,53,32.8,10,0.0 +26457,67,14,45,0.0 +26457,46,12,37,0.0 +26457,28,45.6,23,0.0 +26457,50,16.25,29,0.0 +26457,29,123.79,3,0.0 +26457,37,26,34,0.0 +26457,4,22,19,0.0 +26457,30,25.89,6,0.0 +26457,8,40,29,0.0 +26457,63,43.9,15,0.0 +26457,51,53,48,0.0 +26457,72,34.8,18,0.0 +26457,5,21.35,3,0.0 +26457,43,46,26,0.0 +26457,76,18,4,0.0 +26457,44,19.45,14,0.0 +26457,54,7.45,14,0.0 +26457,24,4.5,41,0.0 +26457,40,18.4,39,0.0 +26457,58,13.25,48,0.0 +26457,2,19,5,0.0 +26457,13,6,32,0.0 +26457,55,24,4,0.0 +26457,52,7,17,0.0 +26457,75,7.75,34,0.0 +26457,38,263.5,5,0.0 +26457,9,97,16,0.0 +26457,31,12.5,19,0.0 +26457,23,9,23,0.0 +26457,49,20,37,0.0 +26457,25,14,8,0.0 +26457,18,62.5,33,0.0 +26457,34,14,14,0.0 +26457,69,36,19,0.0 +26457,21,10,50,0.0 +26457,12,38,31,0.0 +26457,36,19,5,0.0 +26457,77,13,23,0.0 +26457,47,9.5,17,0.0 +26457,70,15,22,0.0 +26457,73,15,21,0.0 +26457,48,12.75,2,0.0 +26457,64,33.25,37,0.0 +26457,15,15.5,33,0.0 +26457,61,28.5,13,0.0 +26457,20,81,50,0.0 +26457,32,32,10,0.0 +26457,7,30,36,0.0 +26457,41,9.65,41,0.0 +26457,62,49.3,42,0.0 +26457,1,18,7,0.0 +26457,39,18,25,0.0 +26457,42,14,38,0.0 +26457,6,25,32,0.0 +26457,33,2.5,44,0.0 +26457,59,55,10,0.0 +26457,57,19.5,14,0.0 +26457,16,17.45,50,0.0 +26457,56,38,27,0.0 +26458,25,14,7,0.0 +26459,3,10,27,0.0 +26459,31,12.5,4,0.0 +26459,62,49.3,11,0.0 +26459,55,24,20,0.0 +26459,35,18,14,0.0 +26459,67,14,33,0.0 +26459,60,34,37,0.0 +26459,32,32,21,0.0 +26459,10,31,40,0.0 +26459,54,7.45,7,0.0 +26459,77,13,2,0.0 +26459,7,30,5,0.0 +26459,48,12.75,38,0.0 +26459,12,38,25,0.0 +26459,61,28.5,12,0.0 +26459,75,7.75,14,0.0 +26459,18,62.5,13,0.0 +26459,45,9.5,4,0.0 +26459,14,23.25,48,0.0 +26459,71,21.5,30,0.0 +26459,76,18,29,0.0 +26459,29,123.79,9,0.0 +26459,36,19,10,0.0 +26459,44,19.45,12,0.0 +26459,16,17.45,18,0.0 +26459,64,33.25,41,0.0 +26459,65,21.05,39,0.0 +26459,74,10,10,0.0 +26459,51,53,36,0.0 +26459,2,19,33,0.0 +26459,52,7,37,0.0 +26459,38,263.5,11,0.0 +26459,6,25,20,0.0 +26459,40,18.4,12,0.0 +26459,30,25.89,6,0.0 +26459,23,9,40,0.0 +26459,21,10,9,0.0 +26459,13,6,7,0.0 +26459,73,15,35,0.0 +26459,42,14,16,0.0 +26459,72,34.8,26,0.0 +26459,11,21,19,0.0 +26459,70,15,15,0.0 +26459,57,19.5,18,0.0 +26459,46,12,38,0.0 +26459,47,9.5,23,0.0 +26459,43,46,9,0.0 +26459,37,26,30,0.0 +26459,15,15.5,15,0.0 +26459,5,21.35,32,0.0 +26459,50,16.25,47,0.0 +26459,26,31.23,3,0.0 +26459,39,18,5,0.0 +26459,41,9.65,33,0.0 +26459,63,43.9,4,0.0 +26459,24,4.5,13,0.0 +26460,39,18,5,0.0 +26460,44,19.45,35,0.0 +26460,30,25.89,50,0.0 +26460,16,17.45,29,0.0 +26460,62,49.3,41,0.0 +26460,74,10,48,0.0 +26460,9,97,48,0.0 +26460,77,13,48,0.0 +26460,20,81,42,0.0 +26460,17,39,20,0.0 +26460,63,43.9,24,0.0 +26460,3,10,23,0.0 +26460,12,38,42,0.0 +26460,32,32,37,0.0 +26460,8,40,25,0.0 +26460,6,25,11,0.0 +26460,21,10,38,0.0 +26460,43,46,44,0.0 +26460,38,263.5,37,0.0 +26460,49,20,10,0.0 +26460,19,9.2,50,0.0 +26460,33,2.5,34,0.0 +26460,70,15,21,0.0 +26460,52,7,15,0.0 +26460,48,12.75,12,0.0 +26460,65,21.05,17,0.0 +26460,66,17,14,0.0 +26460,34,14,42,0.0 +26460,23,9,8,0.0 +26460,76,18,39,0.0 +26460,72,34.8,12,0.0 +26460,60,34,41,0.0 +26460,64,33.25,16,0.0 +26460,11,21,41,0.0 +26460,36,19,18,0.0 +26460,25,14,47,0.0 +26460,27,43.9,47,0.0 +26460,55,24,1,0.0 +26460,59,55,14,0.0 +26460,31,12.5,41,0.0 +26460,1,18,35,0.0 +26460,42,14,32,0.0 +26460,53,32.8,9,0.0 +26460,73,15,38,0.0 +26460,10,31,9,0.0 +26460,45,9.5,10,0.0 +26460,57,19.5,49,0.0 +26460,37,26,46,0.0 +26460,51,53,19,0.0 +26460,46,12,2,0.0 +26460,71,21.5,15,0.0 +26460,2,19,49,0.0 +26460,40,18.4,32,0.0 +26460,22,21,42,0.0 +26460,29,123.79,19,0.0 +26460,18,62.5,28,0.0 +26460,26,31.23,47,0.0 +26460,69,36,34,0.0 +26460,4,22,45,0.0 +26460,56,38,13,0.0 +26460,68,12.5,38,0.0 +26460,50,16.25,32,0.0 +26460,14,23.25,44,0.0 +26460,13,6,5,0.0 +26460,75,7.75,3,0.0 +26460,54,7.45,10,0.0 +26460,58,13.25,18,0.0 +26460,15,15.5,14,0.0 +26460,35,18,31,0.0 +26460,61,28.5,15,0.0 +26461,21,10,41,0.0 +26461,67,14,3,0.0 +26461,12,38,5,0.0 +26461,17,39,9,0.0 +26461,23,9,19,0.0 +26461,77,13,35,0.0 +26461,70,15,20,0.0 +26461,47,9.5,41,0.0 +26461,24,4.5,47,0.0 +26461,64,33.25,22,0.0 +26461,38,263.5,49,0.0 +26461,49,20,30,0.0 +26461,19,9.2,21,0.0 +26461,15,15.5,13,0.0 +26461,42,14,36,0.0 +26461,63,43.9,21,0.0 +26461,20,81,18,0.0 +26461,53,32.8,4,0.0 +26461,33,2.5,26,0.0 +26461,68,12.5,4,0.0 +26461,55,24,16,0.0 +26461,35,18,6,0.0 +26461,8,40,21,0.0 +26461,46,12,4,0.0 +26461,40,18.4,48,0.0 +26461,31,12.5,41,0.0 +26461,26,31.23,28,0.0 +26461,74,10,34,0.0 +26461,59,55,41,0.0 +26461,39,18,32,0.0 +26461,11,21,43,0.0 +26461,28,45.6,12,0.0 +26461,44,19.45,16,0.0 +26461,65,21.05,9,0.0 +26461,10,31,30,0.0 +26461,3,10,36,0.0 +26461,71,21.5,44,0.0 +26461,13,6,34,0.0 +26461,61,28.5,41,0.0 +26461,69,36,22,0.0 +26461,6,25,49,0.0 +26461,37,26,2,0.0 +26461,43,46,1,0.0 +26461,36,19,23,0.0 +26461,2,19,8,0.0 +26461,34,14,7,0.0 +26461,25,14,4,0.0 +26461,4,22,48,0.0 +26461,16,17.45,12,0.0 +26461,45,9.5,20,0.0 +26461,50,16.25,35,0.0 +26461,1,18,28,0.0 +26461,27,43.9,8,0.0 +26461,5,21.35,27,0.0 +26461,30,25.89,15,0.0 +26461,48,12.75,1,0.0 +26461,7,30,24,0.0 +26461,22,21,33,0.0 +26461,60,34,42,0.0 +26461,62,49.3,17,0.0 +26461,14,23.25,50,0.0 +26461,73,15,4,0.0 +26461,75,7.75,12,0.0 +26461,32,32,11,0.0 +26461,54,7.45,23,0.0 +26461,29,123.79,23,0.0 +26461,52,7,43,0.0 +26461,58,13.25,16,0.0 +26461,56,38,41,0.0 +26461,41,9.65,26,0.0 +26461,51,53,44,0.0 +26462,8,40,2,0.0 +26462,45,9.5,18,0.0 +26462,14,23.25,11,0.0 +26462,18,62.5,38,0.0 +26462,16,17.45,9,0.0 +26462,36,19,3,0.0 +26462,6,25,47,0.0 +26462,44,19.45,42,0.0 +26462,52,7,18,0.0 +26462,61,28.5,38,0.0 +26462,31,12.5,26,0.0 +26462,13,6,35,0.0 +26462,62,49.3,38,0.0 +26462,26,31.23,49,0.0 +26462,23,9,4,0.0 +26462,15,15.5,9,0.0 +26462,41,9.65,8,0.0 +26462,46,12,23,0.0 +26462,40,18.4,8,0.0 +26462,3,10,21,0.0 +26462,60,34,41,0.0 +26462,77,13,46,0.0 +26462,72,34.8,33,0.0 +26462,21,10,1,0.0 +26462,64,33.25,22,0.0 +26462,29,123.79,39,0.0 +26462,59,55,2,0.0 +26462,19,9.2,5,0.0 +26462,74,10,29,0.0 +26462,37,26,39,0.0 +26462,67,14,23,0.0 +26462,50,16.25,48,0.0 +26462,7,30,2,0.0 +26462,27,43.9,4,0.0 +26462,66,17,26,0.0 +26462,76,18,31,0.0 +26462,63,43.9,24,0.0 +26462,53,32.8,21,0.0 +26462,75,7.75,36,0.0 +26462,24,4.5,1,0.0 +26462,10,31,44,0.0 +26462,57,19.5,33,0.0 +26462,4,22,13,0.0 +26462,55,24,10,0.0 +26462,73,15,1,0.0 +26462,12,38,18,0.0 +26462,71,21.5,11,0.0 +26462,54,7.45,10,0.0 +26462,48,12.75,29,0.0 +26462,33,2.5,49,0.0 +26462,47,9.5,45,0.0 +26462,39,18,32,0.0 +26462,5,21.35,17,0.0 +26462,70,15,38,0.0 +26462,68,12.5,49,0.0 +26462,25,14,32,0.0 +26462,11,21,29,0.0 +26462,42,14,42,0.0 +26462,38,263.5,12,0.0 +26463,55,24,39,0.0 +26463,14,23.25,22,0.0 +26463,37,26,11,0.0 +26463,2,19,24,0.0 +26463,10,31,31,0.0 +26463,20,81,12,0.0 +26463,68,12.5,7,0.0 +26463,38,263.5,45,0.0 +26463,28,45.6,15,0.0 +26463,22,21,34,0.0 +26463,39,18,48,0.0 +26463,25,14,25,0.0 +26463,4,22,35,0.0 +26463,16,17.45,10,0.0 +26463,26,31.23,25,0.0 +26463,57,19.5,27,0.0 +26463,74,10,30,0.0 +26463,71,21.5,34,0.0 +26463,35,18,26,0.0 +26463,11,21,29,0.0 +26463,9,97,38,0.0 +26463,72,34.8,48,0.0 +26463,3,10,45,0.0 +26464,44,19.45,12,0.0 +26464,26,31.23,7,0.0 +26464,69,36,23,0.0 +26464,58,13.25,18,0.0 +26464,76,18,9,0.0 +26464,43,46,22,0.0 +26464,6,25,16,0.0 +26464,15,15.5,11,0.0 +26464,16,17.45,5,0.0 +26464,67,14,15,0.0 +26464,59,55,3,0.0 +26465,37,26,20,0.0 +26465,35,18,18,0.0 +26465,13,6,41,0.0 +26465,40,18.4,35,0.0 +26465,70,15,22,0.0 +26465,69,36,21,0.0 +26465,71,21.5,11,0.0 +26465,55,24,40,0.0 +26465,20,81,14,0.0 +26465,7,30,38,0.0 +26465,45,9.5,21,0.0 +26465,53,32.8,25,0.0 +26465,8,40,50,0.0 +26465,50,16.25,30,0.0 +26465,1,18,32,0.0 +26465,74,10,32,0.0 +26465,5,21.35,1,0.0 +26465,17,39,42,0.0 +26465,39,18,21,0.0 +26465,2,19,20,0.0 +26465,14,23.25,38,0.0 +26465,31,12.5,36,0.0 +26465,21,10,1,0.0 +26465,75,7.75,28,0.0 +26465,41,9.65,49,0.0 +26465,60,34,44,0.0 +26465,26,31.23,14,0.0 +26465,18,62.5,42,0.0 +26465,16,17.45,39,0.0 +26465,19,9.2,11,0.0 +26465,51,53,10,0.0 +26465,49,20,24,0.0 +26465,22,21,35,0.0 +26465,36,19,10,0.0 +26465,15,15.5,46,0.0 +26465,27,43.9,45,0.0 +26465,43,46,17,0.0 +26465,72,34.8,25,0.0 +26465,34,14,19,0.0 +26465,32,32,39,0.0 +26465,58,13.25,16,0.0 +26465,33,2.5,35,0.0 +26465,25,14,11,0.0 +26465,62,49.3,28,0.0 +26465,56,38,21,0.0 +26465,24,4.5,10,0.0 +26465,76,18,20,0.0 +26465,30,25.89,36,0.0 +26465,48,12.75,6,0.0 +26465,63,43.9,31,0.0 +26465,47,9.5,32,0.0 +26465,64,33.25,43,0.0 +26465,23,9,42,0.0 +26465,66,17,7,0.0 +26465,12,38,10,0.0 +26465,52,7,28,0.0 +26465,4,22,33,0.0 +26465,67,14,7,0.0 +26465,54,7.45,5,0.0 +26465,46,12,9,0.0 +26465,77,13,4,0.0 +26465,28,45.6,43,0.0 +26465,57,19.5,17,0.0 +26465,73,15,25,0.0 +26465,29,123.79,10,0.0 +26465,38,263.5,47,0.0 +26465,59,55,20,0.0 +26466,18,62.5,47,0.0 +26466,7,30,9,0.0 +26466,62,49.3,39,0.0 +26466,40,18.4,34,0.0 +26466,6,25,22,0.0 +26466,60,34,3,0.0 +26466,48,12.75,39,0.0 +26466,19,9.2,48,0.0 +26466,10,31,23,0.0 +26466,46,12,27,0.0 +26466,38,263.5,40,0.0 +26466,49,20,7,0.0 +26466,30,25.89,1,0.0 +26466,51,53,24,0.0 +26466,73,15,40,0.0 +26466,4,22,10,0.0 +26466,44,19.45,49,0.0 +26466,3,10,21,0.0 +26466,16,17.45,39,0.0 +26466,2,19,27,0.0 +26466,65,21.05,9,0.0 +26466,8,40,17,0.0 +26466,39,18,12,0.0 +26466,28,45.6,22,0.0 +26466,47,9.5,5,0.0 +26466,12,38,29,0.0 +26466,76,18,19,0.0 +26466,11,21,12,0.0 +26466,36,19,27,0.0 +26466,37,26,44,0.0 +26466,35,18,37,0.0 +26466,43,46,50,0.0 +26466,74,10,39,0.0 +26466,1,18,35,0.0 +26467,13,6,25,0.0 +26467,29,123.79,19,0.0 +26467,51,53,5,0.0 +26467,10,31,48,0.0 +26467,5,21.35,40,0.0 +26467,55,24,17,0.0 +26467,75,7.75,38,0.0 +26467,56,38,25,0.0 +26467,53,32.8,47,0.0 +26467,41,9.65,29,0.0 +26467,49,20,19,0.0 +26467,61,28.5,45,0.0 +26467,77,13,12,0.0 +26467,6,25,6,0.0 +26467,25,14,41,0.0 +26467,27,43.9,50,0.0 +26467,37,26,37,0.0 +26467,42,14,2,0.0 +26467,7,30,48,0.0 +26467,45,9.5,30,0.0 +26467,9,97,44,0.0 +26467,4,22,16,0.0 +26467,31,12.5,7,0.0 +26467,43,46,39,0.0 +26467,8,40,6,0.0 +26467,38,263.5,42,0.0 +26467,59,55,49,0.0 +26467,34,14,39,0.0 +26467,44,19.45,49,0.0 +26467,62,49.3,40,0.0 +26467,3,10,47,0.0 +26467,71,21.5,19,0.0 +26467,58,13.25,5,0.0 +26467,46,12,17,0.0 +26467,22,21,38,0.0 +26467,19,9.2,23,0.0 +26467,20,81,17,0.0 +26467,21,10,33,0.0 +26467,47,9.5,28,0.0 +26467,39,18,45,0.0 +26467,57,19.5,11,0.0 +26467,67,14,33,0.0 +26467,76,18,46,0.0 +26467,16,17.45,13,0.0 +26467,12,38,31,0.0 +26467,69,36,42,0.0 +26468,22,21,24,0.0 +26468,45,9.5,6,0.0 +26468,68,12.5,37,0.0 +26468,20,81,16,0.0 +26468,16,17.45,23,0.0 +26468,66,17,19,0.0 +26468,9,97,9,0.0 +26468,36,19,21,0.0 +26468,29,123.79,20,0.0 +26468,77,13,6,0.0 +26468,1,18,12,0.0 +26468,56,38,47,0.0 +26468,23,9,30,0.0 +26468,7,30,34,0.0 +26468,75,7.75,8,0.0 +26468,67,14,13,0.0 +26468,43,46,7,0.0 +26468,40,18.4,36,0.0 +26468,21,10,4,0.0 +26468,28,45.6,31,0.0 +26468,4,22,47,0.0 +26468,8,40,39,0.0 +26468,11,21,24,0.0 +26468,63,43.9,14,0.0 +26468,71,21.5,39,0.0 +26468,3,10,12,0.0 +26468,74,10,33,0.0 +26468,46,12,5,0.0 +26468,50,16.25,15,0.0 +26468,31,12.5,15,0.0 +26468,52,7,4,0.0 +26468,41,9.65,14,0.0 +26468,26,31.23,28,0.0 +26468,64,33.25,18,0.0 +26468,54,7.45,27,0.0 +26468,25,14,47,0.0 +26468,53,32.8,1,0.0 +26468,44,19.45,45,0.0 +26468,17,39,17,0.0 +26468,10,31,33,0.0 +26468,49,20,35,0.0 +26468,32,32,10,0.0 +26468,6,25,16,0.0 +26468,62,49.3,18,0.0 +26468,12,38,12,0.0 +26468,24,4.5,3,0.0 +26468,18,62.5,33,0.0 +26468,48,12.75,16,0.0 +26468,39,18,23,0.0 +26468,33,2.5,39,0.0 +26468,73,15,24,0.0 +26468,13,6,27,0.0 +26468,72,34.8,24,0.0 +26468,30,25.89,8,0.0 +26468,5,21.35,29,0.0 +26468,15,15.5,24,0.0 +26468,2,19,23,0.0 +26468,38,263.5,19,0.0 +26468,60,34,38,0.0 +26469,25,14,49,0.0 +26469,63,43.9,50,0.0 +26469,14,23.25,19,0.0 +26469,54,7.45,6,0.0 +26469,30,25.89,23,0.0 +26469,6,25,41,0.0 +26469,67,14,14,0.0 +26469,22,21,16,0.0 +26469,47,9.5,14,0.0 +26469,43,46,5,0.0 +26469,58,13.25,9,0.0 +26469,3,10,46,0.0 +26469,28,45.6,48,0.0 +26469,75,7.75,48,0.0 +26469,40,18.4,6,0.0 +26469,13,6,28,0.0 +26469,60,34,4,0.0 +26469,8,40,14,0.0 +26469,64,33.25,26,0.0 +26469,70,15,37,0.0 +26469,50,16.25,3,0.0 +26469,35,18,41,0.0 +26469,11,21,43,0.0 +26469,51,53,19,0.0 +26469,68,12.5,16,0.0 +26469,1,18,13,0.0 +26469,48,12.75,45,0.0 +26469,46,12,24,0.0 +26469,4,22,14,0.0 +26469,41,9.65,33,0.0 +26469,73,15,50,0.0 +26469,42,14,1,0.0 +26469,36,19,35,0.0 +26469,66,17,2,0.0 +26469,32,32,9,0.0 +26469,9,97,50,0.0 +26469,74,10,2,0.0 +26469,5,21.35,10,0.0 +26469,26,31.23,8,0.0 +26469,44,19.45,31,0.0 +26469,69,36,44,0.0 +26469,29,123.79,39,0.0 +26469,21,10,24,0.0 +26469,65,21.05,45,0.0 +26469,49,20,29,0.0 +26469,71,21.5,35,0.0 +26469,62,49.3,8,0.0 +26469,57,19.5,31,0.0 +26469,53,32.8,42,0.0 +26469,38,263.5,16,0.0 +26469,33,2.5,40,0.0 +26469,16,17.45,6,0.0 +26469,27,43.9,20,0.0 +26469,34,14,50,0.0 +26469,19,9.2,18,0.0 +26469,24,4.5,1,0.0 +26469,37,26,39,0.0 +26469,56,38,13,0.0 +26470,44,19.45,5,0.0 +26470,72,34.8,14,0.0 +26470,9,97,11,0.0 +26470,75,7.75,46,0.0 +26470,26,31.23,10,0.0 +26470,50,16.25,31,0.0 +26470,25,14,40,0.0 +26470,38,263.5,7,0.0 +26470,5,21.35,1,0.0 +26470,74,10,39,0.0 +26470,76,18,26,0.0 +26471,14,23.25,15,0.0 +26471,56,38,16,0.0 +26471,66,17,17,0.0 +26471,59,55,21,0.0 +26471,47,9.5,31,0.0 +26471,30,25.89,31,0.0 +26471,60,34,37,0.0 +26471,1,18,39,0.0 +26471,71,21.5,48,0.0 +26471,9,97,31,0.0 +26471,4,22,18,0.0 +26471,26,31.23,49,0.0 +26471,7,30,30,0.0 +26471,54,7.45,18,0.0 +26471,2,19,36,0.0 +26471,69,36,15,0.0 +26471,23,9,16,0.0 +26471,24,4.5,42,0.0 +26472,31,12.5,50,0.0 +26472,28,45.6,45,0.0 +26472,8,40,11,0.0 +26472,22,21,49,0.0 +26472,13,6,26,0.0 +26472,48,12.75,19,0.0 +26472,63,43.9,49,0.0 +26472,12,38,18,0.0 +26472,18,62.5,26,0.0 +26472,38,263.5,24,0.0 +26472,54,7.45,6,0.0 +26472,27,43.9,8,0.0 +26472,70,15,21,0.0 +26472,2,19,20,0.0 +26472,33,2.5,23,0.0 +26472,4,22,41,0.0 +26472,43,46,31,0.0 +26472,25,14,26,0.0 +26472,14,23.25,44,0.0 +26472,60,34,9,0.0 +26472,56,38,7,0.0 +26472,59,55,47,0.0 +26472,32,32,37,0.0 +26472,7,30,24,0.0 +26472,21,10,3,0.0 +26472,29,123.79,34,0.0 +26472,1,18,41,0.0 +26472,9,97,1,0.0 +26472,68,12.5,8,0.0 +26472,24,4.5,13,0.0 +26472,74,10,6,0.0 +26472,51,53,46,0.0 +26472,45,9.5,30,0.0 +26472,36,19,7,0.0 +26472,76,18,13,0.0 +26472,11,21,50,0.0 +26472,5,21.35,27,0.0 +26472,46,12,46,0.0 +26472,64,33.25,40,0.0 +26472,67,14,41,0.0 +26472,3,10,50,0.0 +26472,66,17,14,0.0 +26472,15,15.5,17,0.0 +26472,75,7.75,15,0.0 +26472,44,19.45,33,0.0 +26472,62,49.3,38,0.0 +26472,40,18.4,1,0.0 +26472,35,18,17,0.0 +26472,65,21.05,23,0.0 +26472,69,36,13,0.0 +26472,19,9.2,1,0.0 +26472,30,25.89,12,0.0 +26472,16,17.45,30,0.0 +26472,52,7,28,0.0 +26472,55,24,31,0.0 +26472,39,18,12,0.0 +26472,50,16.25,25,0.0 +26472,10,31,23,0.0 +26472,53,32.8,14,0.0 +26472,58,13.25,26,0.0 +26472,61,28.5,47,0.0 +26472,6,25,26,0.0 +26472,26,31.23,3,0.0 +26472,49,20,48,0.0 +26472,17,39,17,0.0 +26472,23,9,15,0.0 +26472,20,81,28,0.0 +26472,72,34.8,44,0.0 +26472,71,21.5,6,0.0 +26473,37,26,7,0.0 +26473,44,19.45,31,0.0 +26473,25,14,27,0.0 +26473,76,18,48,0.0 +26473,67,14,33,0.0 +26473,68,12.5,19,0.0 +26473,46,12,6,0.0 +26473,56,38,29,0.0 +26473,29,123.79,47,0.0 +26473,39,18,46,0.0 +26473,12,38,28,0.0 +26473,71,21.5,11,0.0 +26473,21,10,24,0.0 +26473,41,9.65,49,0.0 +26473,27,43.9,40,0.0 +26473,64,33.25,11,0.0 +26473,7,30,15,0.0 +26473,73,15,1,0.0 +26473,31,12.5,18,0.0 +26474,56,38,13,0.0 +26474,23,9,22,0.0 +26474,1,18,19,0.0 +26474,40,18.4,25,0.0 +26474,30,25.89,19,0.0 +26474,38,263.5,49,0.0 +26474,62,49.3,2,0.0 +26474,70,15,12,0.0 +26474,68,12.5,29,0.0 +26474,42,14,22,0.0 +26474,20,81,32,0.0 +26474,48,12.75,7,0.0 +26474,8,40,11,0.0 +26474,41,9.65,34,0.0 +26474,76,18,7,0.0 +26474,29,123.79,37,0.0 +26474,61,28.5,35,0.0 +26474,50,16.25,22,0.0 +26474,35,18,29,0.0 +26474,7,30,25,0.0 +26474,24,4.5,28,0.0 +26474,77,13,11,0.0 +26474,60,34,20,0.0 +26474,25,14,20,0.0 +26474,51,53,11,0.0 +26474,69,36,44,0.0 +26474,66,17,48,0.0 +26474,15,15.5,13,0.0 +26474,74,10,8,0.0 +26474,4,22,20,0.0 +26474,44,19.45,30,0.0 +26474,65,21.05,21,0.0 +26474,57,19.5,16,0.0 +26474,5,21.35,43,0.0 +26474,17,39,6,0.0 +26474,54,7.45,44,0.0 +26474,52,7,14,0.0 +26474,46,12,36,0.0 +26474,59,55,25,0.0 +26474,33,2.5,48,0.0 +26474,37,26,49,0.0 +26474,26,31.23,30,0.0 +26474,6,25,45,0.0 +26474,14,23.25,31,0.0 +26474,34,14,11,0.0 +26474,36,19,16,0.0 +26474,13,6,31,0.0 +26474,19,9.2,14,0.0 +26474,73,15,23,0.0 +26474,39,18,1,0.0 +26474,72,34.8,43,0.0 +26474,32,32,28,0.0 +26474,67,14,37,0.0 +26474,58,13.25,30,0.0 +26474,63,43.9,32,0.0 +26474,3,10,15,0.0 +26474,12,38,46,0.0 +26474,21,10,15,0.0 +26474,22,21,45,0.0 +26474,10,31,3,0.0 +26474,28,45.6,2,0.0 +26475,72,34.8,34,0.0 +26475,33,2.5,7,0.0 +26475,39,18,41,0.0 +26475,37,26,41,0.0 +26475,47,9.5,16,0.0 +26475,30,25.89,17,0.0 +26475,58,13.25,11,0.0 +26475,48,12.75,43,0.0 +26475,52,7,25,0.0 +26475,63,43.9,37,0.0 +26475,59,55,37,0.0 +26475,56,38,12,0.0 +26475,45,9.5,27,0.0 +26475,4,22,29,0.0 +26475,49,20,23,0.0 +26475,8,40,5,0.0 +26475,17,39,24,0.0 +26475,3,10,4,0.0 +26475,14,23.25,3,0.0 +26475,5,21.35,44,0.0 +26475,16,17.45,32,0.0 +26475,62,49.3,48,0.0 +26475,28,45.6,3,0.0 +26475,31,12.5,21,0.0 +26475,15,15.5,28,0.0 +26475,74,10,3,0.0 +26475,35,18,19,0.0 +26475,2,19,14,0.0 +26475,61,28.5,43,0.0 +26475,66,17,28,0.0 +26475,6,25,12,0.0 +26475,75,7.75,2,0.0 +26475,42,14,14,0.0 +26475,32,32,7,0.0 +26475,43,46,15,0.0 +26475,38,263.5,37,0.0 +26475,65,21.05,48,0.0 +26475,68,12.5,45,0.0 +26475,1,18,45,0.0 +26475,23,9,8,0.0 +26475,73,15,24,0.0 +26475,51,53,31,0.0 +26475,77,13,9,0.0 +26475,27,43.9,50,0.0 +26475,24,4.5,45,0.0 +26475,57,19.5,15,0.0 +26475,64,33.25,14,0.0 +26475,29,123.79,37,0.0 +26475,7,30,39,0.0 +26475,67,14,16,0.0 +26475,25,14,24,0.0 +26476,64,33.25,41,0.0 +26476,32,32,1,0.0 +26476,68,12.5,40,0.0 +26476,7,30,37,0.0 +26476,15,15.5,21,0.0 +26476,11,21,7,0.0 +26476,50,16.25,29,0.0 +26476,53,32.8,15,0.0 +26476,57,19.5,49,0.0 +26476,18,62.5,43,0.0 +26476,77,13,14,0.0 +26477,2,19,8,0.0 +26477,3,10,3,0.0 +26477,21,10,43,0.0 +26477,58,13.25,15,0.0 +26477,30,25.89,25,0.0 +26477,41,9.65,2,0.0 +26477,72,34.8,43,0.0 +26477,32,32,32,0.0 +26477,15,15.5,25,0.0 +26477,20,81,9,0.0 +26477,17,39,35,0.0 +26477,71,21.5,11,0.0 +26477,70,15,47,0.0 +26477,19,9.2,35,0.0 +26477,38,263.5,10,0.0 +26477,47,9.5,26,0.0 +26477,31,12.5,28,0.0 +26477,16,17.45,50,0.0 +26477,18,62.5,8,0.0 +26477,69,36,29,0.0 +26477,55,24,43,0.0 +26477,68,12.5,25,0.0 +26477,22,21,12,0.0 +26477,65,21.05,14,0.0 +26477,63,43.9,36,0.0 +26477,43,46,23,0.0 +26477,27,43.9,16,0.0 +26477,67,14,45,0.0 +26477,60,34,44,0.0 +26477,59,55,22,0.0 +26477,76,18,4,0.0 +26477,1,18,38,0.0 +26477,42,14,29,0.0 +26477,34,14,35,0.0 +26477,33,2.5,35,0.0 +26477,52,7,50,0.0 +26477,7,30,20,0.0 +26477,73,15,28,0.0 +26477,46,12,8,0.0 +26477,29,123.79,13,0.0 +26477,57,19.5,10,0.0 +26477,64,33.25,29,0.0 +26477,28,45.6,15,0.0 +26477,51,53,43,0.0 +26477,77,13,41,0.0 +26477,53,32.8,49,0.0 +26477,10,31,44,0.0 +26477,44,19.45,20,0.0 +26477,56,38,29,0.0 +26477,14,23.25,23,0.0 +26477,50,16.25,26,0.0 +26477,8,40,42,0.0 +26477,62,49.3,38,0.0 +26477,37,26,50,0.0 +26477,24,4.5,25,0.0 +26477,49,20,26,0.0 +26477,48,12.75,14,0.0 +26477,61,28.5,40,0.0 +26477,5,21.35,9,0.0 +26477,9,97,19,0.0 +26477,36,19,18,0.0 +26477,35,18,9,0.0 +26477,6,25,40,0.0 +26477,26,31.23,36,0.0 +26477,39,18,21,0.0 +26477,4,22,9,0.0 +26478,5,21.35,33,0.0 +26478,69,36,22,0.0 +26478,70,15,37,0.0 +26478,17,39,31,0.0 +26478,4,22,48,0.0 +26478,18,62.5,41,0.0 +26478,11,21,30,0.0 +26478,77,13,37,0.0 +26478,2,19,27,0.0 +26478,15,15.5,48,0.0 +26478,16,17.45,26,0.0 +26478,63,43.9,8,0.0 +26478,22,21,2,0.0 +26478,40,18.4,36,0.0 +26478,41,9.65,23,0.0 +26478,25,14,19,0.0 +26478,46,12,22,0.0 +26478,59,55,21,0.0 +26478,72,34.8,32,0.0 +26478,37,26,38,0.0 +26478,1,18,7,0.0 +26478,67,14,19,0.0 +26478,55,24,50,0.0 +26478,64,33.25,41,0.0 +26478,49,20,32,0.0 +26478,45,9.5,12,0.0 +26478,60,34,42,0.0 +26478,57,19.5,3,0.0 +26478,26,31.23,20,0.0 +26478,42,14,3,0.0 +26478,29,123.79,25,0.0 +26478,20,81,10,0.0 +26478,75,7.75,49,0.0 +26478,44,19.45,22,0.0 +26478,52,7,28,0.0 +26478,73,15,49,0.0 +26478,19,9.2,13,0.0 +26478,65,21.05,16,0.0 +26478,13,6,7,0.0 +26478,43,46,31,0.0 +26478,21,10,24,0.0 +26478,10,31,16,0.0 +26478,54,7.45,29,0.0 +26478,32,32,37,0.0 +26478,27,43.9,32,0.0 +26478,38,263.5,40,0.0 +26478,53,32.8,8,0.0 +26478,35,18,43,0.0 +26478,74,10,50,0.0 +26478,50,16.25,15,0.0 +26478,6,25,16,0.0 +26478,31,12.5,10,0.0 +26478,51,53,20,0.0 +26478,56,38,6,0.0 +26478,66,17,12,0.0 +26478,36,19,36,0.0 +26478,68,12.5,16,0.0 +26478,58,13.25,15,0.0 +26478,61,28.5,36,0.0 +26478,30,25.89,13,0.0 +26478,7,30,1,0.0 +26478,34,14,6,0.0 +26478,8,40,25,0.0 +26478,3,10,20,0.0 +26478,62,49.3,23,0.0 +26478,48,12.75,19,0.0 +26478,24,4.5,23,0.0 +26478,47,9.5,23,0.0 +26478,28,45.6,11,0.0 +26479,36,19,19,0.0 +26479,48,12.75,19,0.0 +26479,51,53,10,0.0 +26479,4,22,35,0.0 +26479,64,33.25,20,0.0 +26479,67,14,42,0.0 +26479,73,15,19,0.0 +26479,11,21,38,0.0 +26479,20,81,12,0.0 +26479,37,26,28,0.0 +26479,31,12.5,28,0.0 +26479,28,45.6,43,0.0 +26479,44,19.45,26,0.0 +26479,62,49.3,17,0.0 +26479,43,46,9,0.0 +26479,16,17.45,17,0.0 +26479,59,55,23,0.0 +26479,45,9.5,31,0.0 +26479,24,4.5,21,0.0 +26479,15,15.5,21,0.0 +26479,71,21.5,35,0.0 +26479,38,263.5,47,0.0 +26479,35,18,15,0.0 +26479,50,16.25,47,0.0 +26479,76,18,39,0.0 +26479,21,10,28,0.0 +26479,46,12,18,0.0 +26480,11,21,2,0.0 +26480,65,21.05,7,0.0 +26480,30,25.89,9,0.0 +26480,62,49.3,22,0.0 +26480,69,36,15,0.0 +26480,10,31,23,0.0 +26480,57,19.5,35,0.0 +26480,9,97,28,0.0 +26480,22,21,26,0.0 +26480,26,31.23,38,0.0 +26480,68,12.5,22,0.0 +26480,5,21.35,19,0.0 +26480,27,43.9,32,0.0 +26480,18,62.5,46,0.0 +26480,66,17,28,0.0 +26480,6,25,23,0.0 +26480,15,15.5,14,0.0 +26480,14,23.25,42,0.0 +26480,37,26,23,0.0 +26480,36,19,8,0.0 +26480,48,12.75,10,0.0 +26480,38,263.5,46,0.0 +26480,67,14,37,0.0 +26480,52,7,46,0.0 +26480,45,9.5,46,0.0 +26480,71,21.5,1,0.0 +26480,33,2.5,19,0.0 +26480,49,20,23,0.0 +26480,2,19,45,0.0 +26480,8,40,10,0.0 +26480,70,15,12,0.0 +26480,58,13.25,35,0.0 +26480,41,9.65,26,0.0 +26480,59,55,30,0.0 +26480,24,4.5,11,0.0 +26480,77,13,8,0.0 +26481,73,15,10,0.0 +26481,72,34.8,42,0.0 +26481,26,31.23,14,0.0 +26481,37,26,37,0.0 +26481,59,55,14,0.0 +26481,42,14,38,0.0 +26481,34,14,19,0.0 +26481,23,9,32,0.0 +26481,2,19,30,0.0 +26481,3,10,9,0.0 +26481,7,30,9,0.0 +26481,35,18,39,0.0 +26481,53,32.8,21,0.0 +26481,21,10,46,0.0 +26481,14,23.25,1,0.0 +26481,33,2.5,34,0.0 +26481,8,40,16,0.0 +26481,44,19.45,2,0.0 +26481,4,22,14,0.0 +26481,11,21,7,0.0 +26481,15,15.5,21,0.0 +26481,18,62.5,23,0.0 +26481,27,43.9,43,0.0 +26481,67,14,38,0.0 +26481,68,12.5,25,0.0 +26482,41,9.65,29,0.0 +26482,26,31.23,50,0.0 +26482,57,19.5,28,0.0 +26482,36,19,31,0.0 +26482,16,17.45,22,0.0 +26482,30,25.89,6,0.0 +26482,43,46,25,0.0 +26482,77,13,44,0.0 +26482,55,24,3,0.0 +26482,23,9,39,0.0 +26482,60,34,29,0.0 +26482,49,20,41,0.0 +26482,73,15,42,0.0 +26482,74,10,24,0.0 +26482,7,30,19,0.0 +26482,24,4.5,43,0.0 +26482,4,22,6,0.0 +26482,28,45.6,46,0.0 +26482,31,12.5,7,0.0 +26482,17,39,34,0.0 +26482,10,31,47,0.0 +26482,12,38,20,0.0 +26482,9,97,30,0.0 +26482,75,7.75,10,0.0 +26482,25,14,29,0.0 +26482,51,53,38,0.0 +26482,53,32.8,33,0.0 +26483,60,34,6,0.0 +26483,21,10,41,0.0 +26483,41,9.65,43,0.0 +26483,47,9.5,47,0.0 +26483,37,26,31,0.0 +26483,55,24,15,0.0 +26483,64,33.25,22,0.0 +26483,66,17,29,0.0 +26484,13,6,8,0.0 +26484,57,19.5,20,0.0 +26484,71,21.5,27,0.0 +26485,24,4.5,18,0.0 +26485,40,18.4,29,0.0 +26485,51,53,18,0.0 +26485,65,21.05,43,0.0 +26485,43,46,30,0.0 +26485,47,9.5,48,0.0 +26485,49,20,38,0.0 +26485,16,17.45,8,0.0 +26485,54,7.45,40,0.0 +26485,63,43.9,16,0.0 +26485,15,15.5,14,0.0 +26485,26,31.23,48,0.0 +26485,19,9.2,16,0.0 +26485,27,43.9,44,0.0 +26485,45,9.5,7,0.0 +26485,6,25,36,0.0 +26485,13,6,25,0.0 +26485,72,34.8,29,0.0 +26485,5,21.35,30,0.0 +26485,64,33.25,45,0.0 +26485,73,15,7,0.0 +26485,68,12.5,31,0.0 +26485,12,38,18,0.0 +26485,34,14,11,0.0 +26485,17,39,42,0.0 +26485,48,12.75,9,0.0 +26485,30,25.89,36,0.0 +26485,53,32.8,38,0.0 +26485,61,28.5,32,0.0 +26485,55,24,26,0.0 +26485,29,123.79,6,0.0 +26485,9,97,38,0.0 +26485,60,34,50,0.0 +26485,71,21.5,12,0.0 +26485,44,19.45,7,0.0 +26485,75,7.75,27,0.0 +26485,20,81,20,0.0 +26485,23,9,40,0.0 +26485,35,18,36,0.0 +26485,14,23.25,30,0.0 +26485,70,15,1,0.0 +26485,8,40,2,0.0 +26485,37,26,24,0.0 +26485,42,14,43,0.0 +26485,18,62.5,38,0.0 +26485,57,19.5,30,0.0 +26485,31,12.5,29,0.0 +26485,66,17,9,0.0 +26485,59,55,31,0.0 +26485,58,13.25,38,0.0 +26485,38,263.5,37,0.0 +26485,41,9.65,24,0.0 +26485,62,49.3,38,0.0 +26485,39,18,28,0.0 +26485,10,31,47,0.0 +26485,21,10,16,0.0 +26485,74,10,35,0.0 +26485,76,18,23,0.0 +26485,7,30,7,0.0 +26485,69,36,19,0.0 +26485,32,32,37,0.0 +26485,4,22,7,0.0 +26485,33,2.5,19,0.0 +26485,1,18,38,0.0 +26485,77,13,22,0.0 +26485,28,45.6,26,0.0 +26485,11,21,7,0.0 +26485,22,21,44,0.0 +26485,50,16.25,22,0.0 +26485,2,19,43,0.0 +26486,9,97,5,0.0 +26486,52,7,11,0.0 +26486,33,2.5,2,0.0 +26486,19,9.2,30,0.0 +26486,5,21.35,46,0.0 +26486,76,18,9,0.0 +26486,35,18,28,0.0 +26486,30,25.89,31,0.0 +26486,40,18.4,16,0.0 +26486,1,18,39,0.0 +26486,70,15,31,0.0 +26486,22,21,40,0.0 +26486,46,12,39,0.0 +26486,73,15,47,0.0 +26486,31,12.5,49,0.0 +26486,75,7.75,50,0.0 +26486,27,43.9,9,0.0 +26486,66,17,49,0.0 +26486,23,9,25,0.0 +26486,42,14,32,0.0 +26486,54,7.45,13,0.0 +26486,65,21.05,4,0.0 +26486,51,53,50,0.0 +26486,67,14,46,0.0 +26486,74,10,4,0.0 +26486,45,9.5,49,0.0 +26486,38,263.5,36,0.0 +26486,77,13,38,0.0 +26486,10,31,27,0.0 +26486,8,40,12,0.0 +26486,36,19,25,0.0 +26486,61,28.5,27,0.0 +26486,29,123.79,38,0.0 +26486,71,21.5,49,0.0 +26486,53,32.8,28,0.0 +26486,43,46,21,0.0 +26486,28,45.6,4,0.0 +26486,17,39,38,0.0 +26486,64,33.25,11,0.0 +26486,60,34,12,0.0 +26486,41,9.65,30,0.0 +26486,72,34.8,45,0.0 +26486,18,62.5,25,0.0 +26486,69,36,11,0.0 +26486,68,12.5,2,0.0 +26486,21,10,22,0.0 +26486,50,16.25,36,0.0 +26486,48,12.75,36,0.0 +26486,16,17.45,47,0.0 +26486,24,4.5,47,0.0 +26486,62,49.3,5,0.0 +26486,11,21,19,0.0 +26486,39,18,46,0.0 +26486,37,26,43,0.0 +26486,47,9.5,20,0.0 +26486,57,19.5,31,0.0 +26486,55,24,5,0.0 +26486,58,13.25,31,0.0 +26486,2,19,15,0.0 +26486,32,32,42,0.0 +26486,56,38,15,0.0 +26487,14,23.25,31,0.0 +26487,71,21.5,23,0.0 +26487,49,20,21,0.0 +26488,59,55,11,0.0 +26488,29,123.79,34,0.0 +26488,71,21.5,46,0.0 +26488,70,15,5,0.0 +26488,50,16.25,29,0.0 +26488,40,18.4,11,0.0 +26488,27,43.9,25,0.0 +26488,47,9.5,16,0.0 +26488,34,14,44,0.0 +26488,13,6,42,0.0 +26488,73,15,31,0.0 +26488,61,28.5,18,0.0 +26488,55,24,37,0.0 +26488,6,25,21,0.0 +26488,10,31,41,0.0 +26488,2,19,38,0.0 +26488,3,10,26,0.0 +26488,62,49.3,7,0.0 +26488,24,4.5,8,0.0 +26488,66,17,42,0.0 +26488,12,38,40,0.0 +26488,72,34.8,15,0.0 +26488,5,21.35,46,0.0 +26488,46,12,29,0.0 +26488,28,45.6,44,0.0 +26488,14,23.25,46,0.0 +26488,67,14,36,0.0 +26488,23,9,4,0.0 +26488,21,10,25,0.0 +26488,30,25.89,35,0.0 +26488,4,22,26,0.0 +26488,32,32,18,0.0 +26488,35,18,12,0.0 +26488,15,15.5,6,0.0 +26488,20,81,31,0.0 +26488,7,30,47,0.0 +26488,49,20,24,0.0 +26488,33,2.5,49,0.0 +26488,11,21,27,0.0 +26488,56,38,33,0.0 +26488,8,40,36,0.0 +26488,77,13,18,0.0 +26488,68,12.5,28,0.0 +26488,44,19.45,39,0.0 +26488,45,9.5,45,0.0 +26488,51,53,47,0.0 +26488,39,18,14,0.0 +26488,17,39,20,0.0 +26488,9,97,22,0.0 +26488,52,7,6,0.0 +26488,64,33.25,10,0.0 +26488,54,7.45,26,0.0 +26488,31,12.5,14,0.0 +26488,38,263.5,12,0.0 +26488,75,7.75,7,0.0 +26488,25,14,46,0.0 +26488,53,32.8,10,0.0 +26488,74,10,33,0.0 +26488,16,17.45,18,0.0 +26488,19,9.2,15,0.0 +26488,58,13.25,5,0.0 +26488,48,12.75,14,0.0 +26488,36,19,29,0.0 +26488,65,21.05,50,0.0 +26488,26,31.23,4,0.0 +26488,41,9.65,6,0.0 +26488,43,46,4,0.0 +26488,22,21,16,0.0 +26488,18,62.5,13,0.0 +26488,42,14,12,0.0 +26488,1,18,6,0.0 +26489,38,263.5,39,0.0 +26489,14,23.25,15,0.0 +26489,70,15,28,0.0 +26489,60,34,44,0.0 +26489,49,20,49,0.0 +26489,19,9.2,16,0.0 +26489,20,81,50,0.0 +26489,69,36,20,0.0 +26489,75,7.75,46,0.0 +26489,64,33.25,27,0.0 +26489,77,13,17,0.0 +26489,39,18,29,0.0 +26489,31,12.5,43,0.0 +26489,24,4.5,17,0.0 +26489,53,32.8,17,0.0 +26489,25,14,9,0.0 +26489,11,21,32,0.0 +26489,1,18,36,0.0 +26489,9,97,25,0.0 +26489,51,53,7,0.0 +26489,12,38,15,0.0 +26489,63,43.9,18,0.0 +26489,50,16.25,39,0.0 +26489,34,14,9,0.0 +26489,62,49.3,3,0.0 +26489,10,31,22,0.0 +26489,17,39,6,0.0 +26489,54,7.45,46,0.0 +26489,18,62.5,40,0.0 +26489,67,14,47,0.0 +26489,65,21.05,37,0.0 +26489,5,21.35,16,0.0 +26489,29,123.79,44,0.0 +26489,43,46,28,0.0 +26489,76,18,39,0.0 +26489,73,15,25,0.0 +26489,23,9,41,0.0 +26489,44,19.45,15,0.0 +26489,8,40,50,0.0 +26489,42,14,29,0.0 +26489,71,21.5,25,0.0 +26489,48,12.75,36,0.0 +26489,26,31.23,32,0.0 +26489,56,38,19,0.0 +26489,59,55,2,0.0 +26489,33,2.5,17,0.0 +26489,57,19.5,9,0.0 +26489,2,19,38,0.0 +26489,22,21,13,0.0 +26489,46,12,3,0.0 +26489,30,25.89,27,0.0 +26489,6,25,4,0.0 +26489,7,30,29,0.0 +26489,15,15.5,12,0.0 +26489,21,10,19,0.0 +26489,41,9.65,8,0.0 +26489,37,26,18,0.0 +26489,40,18.4,15,0.0 +26489,45,9.5,25,0.0 +26489,68,12.5,28,0.0 +26489,66,17,2,0.0 +26489,36,19,37,0.0 +26489,55,24,9,0.0 +26489,4,22,26,0.0 +26489,32,32,21,0.0 +26489,74,10,27,0.0 +26489,16,17.45,27,0.0 +26489,58,13.25,26,0.0 +26489,13,6,31,0.0 +26489,27,43.9,3,0.0 +26489,28,45.6,7,0.0 +26489,72,34.8,38,0.0 +26489,3,10,19,0.0 +26490,10,31,10,0.0 +26490,74,10,13,0.0 +26490,18,62.5,47,0.0 +26490,35,18,45,0.0 +26490,51,53,28,0.0 +26490,2,19,22,0.0 +26490,29,123.79,37,0.0 +26490,31,12.5,26,0.0 +26490,8,40,33,0.0 +26490,13,6,35,0.0 +26490,71,21.5,32,0.0 +26490,19,9.2,46,0.0 +26490,22,21,30,0.0 +26490,34,14,37,0.0 +26490,23,9,17,0.0 +26490,38,263.5,13,0.0 +26490,65,21.05,21,0.0 +26490,64,33.25,37,0.0 +26490,61,28.5,46,0.0 +26490,17,39,17,0.0 +26490,26,31.23,48,0.0 +26490,53,32.8,8,0.0 +26490,45,9.5,34,0.0 +26490,60,34,46,0.0 +26490,24,4.5,1,0.0 +26490,63,43.9,31,0.0 +26490,77,13,15,0.0 +26490,12,38,7,0.0 +26490,25,14,40,0.0 +26490,49,20,26,0.0 +26491,63,43.9,37,0.0 +26491,2,19,1,0.0 +26491,6,25,26,0.0 +26491,50,16.25,27,0.0 +26491,66,17,44,0.0 +26491,45,9.5,6,0.0 +26491,48,12.75,32,0.0 +26491,8,40,40,0.0 +26491,51,53,36,0.0 +26491,31,12.5,32,0.0 +26491,11,21,3,0.0 +26491,30,25.89,26,0.0 +26491,75,7.75,23,0.0 +26491,33,2.5,50,0.0 +26491,1,18,50,0.0 +26491,16,17.45,9,0.0 +26491,43,46,35,0.0 +26491,14,23.25,15,0.0 +26491,60,34,25,0.0 +26491,20,81,13,0.0 +26491,18,62.5,24,0.0 +26491,28,45.6,27,0.0 +26491,76,18,49,0.0 +26491,67,14,48,0.0 +26491,69,36,29,0.0 +26491,15,15.5,50,0.0 +26491,25,14,41,0.0 +26491,12,38,33,0.0 +26491,39,18,6,0.0 +26491,5,21.35,19,0.0 +26491,71,21.5,10,0.0 +26491,72,34.8,11,0.0 +26491,9,97,34,0.0 +26491,32,32,19,0.0 +26491,23,9,2,0.0 +26491,55,24,16,0.0 +26491,53,32.8,43,0.0 +26491,17,39,21,0.0 +26491,3,10,25,0.0 +26491,74,10,35,0.0 +26491,36,19,30,0.0 +26491,10,31,49,0.0 +26491,57,19.5,48,0.0 +26491,47,9.5,8,0.0 +26491,52,7,46,0.0 +26491,22,21,4,0.0 +26491,65,21.05,19,0.0 +26491,37,26,19,0.0 +26491,62,49.3,26,0.0 +26491,68,12.5,28,0.0 +26491,19,9.2,11,0.0 +26491,27,43.9,12,0.0 +26491,54,7.45,49,0.0 +26491,40,18.4,5,0.0 +26491,24,4.5,17,0.0 +26492,36,19,33,0.0 +26492,67,14,27,0.0 +26492,74,10,33,0.0 +26492,35,18,38,0.0 +26492,20,81,28,0.0 +26492,6,25,18,0.0 +26492,19,9.2,4,0.0 +26492,69,36,4,0.0 +26492,3,10,19,0.0 +26492,57,19.5,21,0.0 +26492,17,39,38,0.0 +26492,42,14,23,0.0 +26492,62,49.3,20,0.0 +26492,60,34,16,0.0 +26492,14,23.25,2,0.0 +26492,38,263.5,6,0.0 +26492,46,12,1,0.0 +26492,71,21.5,5,0.0 +26492,2,19,37,0.0 +26492,16,17.45,29,0.0 +26492,23,9,43,0.0 +26492,58,13.25,14,0.0 +26492,49,20,36,0.0 +26492,30,25.89,5,0.0 +26492,53,32.8,16,0.0 +26492,43,46,48,0.0 +26492,29,123.79,38,0.0 +26492,40,18.4,45,0.0 +26492,4,22,37,0.0 +26492,25,14,34,0.0 +26492,15,15.5,29,0.0 +26492,66,17,13,0.0 +26492,33,2.5,39,0.0 +26492,51,53,37,0.0 +26492,48,12.75,39,0.0 +26492,52,7,30,0.0 +26492,56,38,5,0.0 +26492,55,24,12,0.0 +26492,31,12.5,6,0.0 +26492,45,9.5,22,0.0 +26492,12,38,36,0.0 +26492,8,40,30,0.0 +26492,44,19.45,6,0.0 +26492,72,34.8,10,0.0 +26492,61,28.5,29,0.0 +26492,64,33.25,26,0.0 +26492,11,21,8,0.0 +26492,27,43.9,13,0.0 +26492,50,16.25,3,0.0 +26492,68,12.5,14,0.0 +26492,13,6,47,0.0 +26492,21,10,41,0.0 +26492,39,18,9,0.0 +26492,32,32,19,0.0 +26492,9,97,31,0.0 +26492,73,15,39,0.0 +26492,10,31,44,0.0 +26492,41,9.65,7,0.0 +26492,22,21,25,0.0 +26492,34,14,2,0.0 +26492,7,30,18,0.0 +26492,18,62.5,39,0.0 +26492,76,18,29,0.0 +26492,65,21.05,12,0.0 +26492,75,7.75,7,0.0 +26492,37,26,43,0.0 +26492,1,18,35,0.0 +26492,24,4.5,33,0.0 +26492,59,55,8,0.0 +26492,5,21.35,33,0.0 +26492,70,15,20,0.0 +26492,28,45.6,45,0.0 +26492,63,43.9,49,0.0 +26492,54,7.45,47,0.0 +26492,77,13,38,0.0 +26492,47,9.5,34,0.0 +26492,26,31.23,49,0.0 +26493,63,43.9,35,0.0 +26493,44,19.45,2,0.0 +26493,17,39,26,0.0 +26493,32,32,34,0.0 +26493,58,13.25,16,0.0 +26493,62,49.3,14,0.0 +26493,74,10,16,0.0 +26493,26,31.23,4,0.0 +26493,18,62.5,45,0.0 +26493,56,38,16,0.0 +26493,8,40,8,0.0 +26493,25,14,25,0.0 +26493,9,97,23,0.0 +26493,6,25,16,0.0 +26493,4,22,26,0.0 +26493,27,43.9,13,0.0 +26493,20,81,45,0.0 +26493,68,12.5,42,0.0 +26493,60,34,27,0.0 +26493,49,20,4,0.0 +26493,70,15,17,0.0 +26493,33,2.5,37,0.0 +26493,10,31,27,0.0 +26493,73,15,37,0.0 +26493,31,12.5,27,0.0 +26493,46,12,3,0.0 +26493,1,18,8,0.0 +26493,69,36,20,0.0 +26493,43,46,4,0.0 +26493,5,21.35,27,0.0 +26493,59,55,6,0.0 +26493,11,21,25,0.0 +26493,50,16.25,42,0.0 +26493,54,7.45,17,0.0 +26493,22,21,11,0.0 +26493,13,6,24,0.0 +26493,72,34.8,13,0.0 +26493,45,9.5,37,0.0 +26493,57,19.5,16,0.0 +26493,76,18,12,0.0 +26493,55,24,35,0.0 +26494,33,2.5,28,0.0 +26494,10,31,26,0.0 +26494,46,12,26,0.0 +26494,64,33.25,47,0.0 +26494,57,19.5,25,0.0 +26494,27,43.9,46,0.0 +26494,47,9.5,14,0.0 +26494,20,81,44,0.0 +26494,2,19,37,0.0 +26494,6,25,40,0.0 +26494,40,18.4,43,0.0 +26494,11,21,21,0.0 +26494,73,15,16,0.0 +26494,35,18,41,0.0 +26494,29,123.79,44,0.0 +26494,15,15.5,20,0.0 +26494,58,13.25,50,0.0 +26494,12,38,40,0.0 +26494,43,46,9,0.0 +26494,44,19.45,42,0.0 +26494,28,45.6,9,0.0 +26494,7,30,17,0.0 +26494,56,38,42,0.0 +26494,67,14,20,0.0 +26494,24,4.5,20,0.0 +26494,19,9.2,16,0.0 +26494,74,10,32,0.0 +26494,54,7.45,25,0.0 +26494,32,32,2,0.0 +26494,62,49.3,15,0.0 +26494,36,19,31,0.0 +26494,70,15,15,0.0 +26494,18,62.5,9,0.0 +26494,17,39,49,0.0 +26494,60,34,3,0.0 +26494,30,25.89,40,0.0 +26494,5,21.35,2,0.0 +26494,1,18,10,0.0 +26494,16,17.45,1,0.0 +26494,9,97,8,0.0 +26494,25,14,5,0.0 +26494,53,32.8,39,0.0 +26494,50,16.25,47,0.0 +26494,72,34.8,25,0.0 +26494,23,9,43,0.0 +26494,71,21.5,14,0.0 +26494,61,28.5,23,0.0 +26494,26,31.23,24,0.0 +26494,49,20,45,0.0 +26494,13,6,17,0.0 +26494,41,9.65,41,0.0 +26494,34,14,22,0.0 +26494,38,263.5,44,0.0 +26494,55,24,39,0.0 +26494,37,26,29,0.0 +26494,59,55,34,0.0 +26494,4,22,47,0.0 +26494,75,7.75,35,0.0 +26494,68,12.5,16,0.0 +26494,31,12.5,32,0.0 +26494,52,7,11,0.0 +26494,45,9.5,17,0.0 +26494,65,21.05,25,0.0 +26494,21,10,14,0.0 +26494,42,14,6,0.0 +26494,8,40,9,0.0 +26494,63,43.9,39,0.0 +26494,51,53,20,0.0 +26494,66,17,34,0.0 +26494,39,18,39,0.0 +26494,14,23.25,20,0.0 +26494,3,10,25,0.0 +26495,11,21,5,0.0 +26495,3,10,38,0.0 +26495,2,19,37,0.0 +26495,59,55,50,0.0 +26495,77,13,9,0.0 +26495,21,10,39,0.0 +26495,69,36,46,0.0 +26495,10,31,15,0.0 +26495,16,17.45,24,0.0 +26495,19,9.2,11,0.0 +26495,33,2.5,27,0.0 +26495,72,34.8,9,0.0 +26495,55,24,4,0.0 +26495,73,15,8,0.0 +26495,67,14,1,0.0 +26495,12,38,28,0.0 +26495,43,46,11,0.0 +26495,23,9,31,0.0 +26495,41,9.65,11,0.0 +26495,62,49.3,4,0.0 +26495,66,17,15,0.0 +26495,1,18,49,0.0 +26495,5,21.35,3,0.0 +26495,74,10,2,0.0 +26495,8,40,33,0.0 +26495,39,18,24,0.0 +26495,36,19,24,0.0 +26495,52,7,4,0.0 +26495,20,81,28,0.0 +26495,70,15,22,0.0 +26495,31,12.5,15,0.0 +26495,7,30,26,0.0 +26495,26,31.23,42,0.0 +26495,48,12.75,11,0.0 +26495,53,32.8,35,0.0 +26495,15,15.5,45,0.0 +26495,46,12,16,0.0 +26495,64,33.25,32,0.0 +26495,4,22,2,0.0 +26495,49,20,31,0.0 +26495,61,28.5,32,0.0 +26495,13,6,14,0.0 +26495,42,14,44,0.0 +26495,40,18.4,33,0.0 +26495,45,9.5,14,0.0 +26495,14,23.25,43,0.0 +26495,38,263.5,49,0.0 +26495,71,21.5,45,0.0 +26495,29,123.79,8,0.0 +26495,58,13.25,5,0.0 +26496,33,2.5,43,0.0 +26496,42,14,37,0.0 +26496,12,38,1,0.0 +26496,25,14,14,0.0 +26496,65,21.05,38,0.0 +26496,40,18.4,37,0.0 +26496,23,9,4,0.0 +26496,7,30,35,0.0 +26496,50,16.25,1,0.0 +26496,10,31,39,0.0 +26496,72,34.8,26,0.0 +26496,77,13,3,0.0 +26496,1,18,14,0.0 +26496,18,62.5,35,0.0 +26496,44,19.45,24,0.0 +26496,63,43.9,14,0.0 +26496,3,10,4,0.0 +26496,9,97,2,0.0 +26496,2,19,5,0.0 +26496,6,25,47,0.0 +26496,74,10,49,0.0 +26496,51,53,41,0.0 +26496,53,32.8,48,0.0 +26496,48,12.75,48,0.0 +26496,47,9.5,24,0.0 +26496,70,15,44,0.0 +26496,30,25.89,49,0.0 +26496,43,46,40,0.0 +26496,36,19,47,0.0 +26496,11,21,40,0.0 +26496,41,9.65,49,0.0 +26496,66,17,37,0.0 +26496,39,18,42,0.0 +26496,4,22,13,0.0 +26496,29,123.79,45,0.0 +26496,76,18,27,0.0 +26496,19,9.2,37,0.0 +26496,38,263.5,17,0.0 +26496,45,9.5,23,0.0 +26496,21,10,31,0.0 +26496,52,7,11,0.0 +26496,73,15,40,0.0 +26496,58,13.25,41,0.0 +26496,15,15.5,38,0.0 +26496,14,23.25,13,0.0 +26496,22,21,35,0.0 +26496,60,34,24,0.0 +26496,69,36,34,0.0 +26496,26,31.23,1,0.0 +26496,28,45.6,48,0.0 +26496,17,39,13,0.0 +26496,75,7.75,47,0.0 +26496,61,28.5,21,0.0 +26496,13,6,26,0.0 +26496,59,55,47,0.0 +26496,16,17.45,44,0.0 +26496,37,26,33,0.0 +26496,46,12,1,0.0 +26496,27,43.9,46,0.0 +26496,35,18,30,0.0 +26496,55,24,26,0.0 +26496,54,7.45,46,0.0 +26496,62,49.3,9,0.0 +26496,20,81,18,0.0 +26496,32,32,9,0.0 +26496,31,12.5,30,0.0 +26497,24,4.5,19,0.0 +26497,7,30,10,0.0 +26497,59,55,1,0.0 +26497,15,15.5,35,0.0 +26497,74,10,22,0.0 +26497,57,19.5,2,0.0 +26497,51,53,41,0.0 +26497,3,10,33,0.0 +26497,52,7,22,0.0 +26497,77,13,10,0.0 +26497,37,26,41,0.0 +26497,70,15,35,0.0 +26497,42,14,45,0.0 +26497,26,31.23,6,0.0 +26497,10,31,48,0.0 +26497,9,97,43,0.0 +26497,21,10,25,0.0 +26497,6,25,28,0.0 +26497,62,49.3,47,0.0 +26497,76,18,6,0.0 +26497,50,16.25,47,0.0 +26497,63,43.9,20,0.0 +26497,47,9.5,27,0.0 +26497,38,263.5,16,0.0 +26497,5,21.35,5,0.0 +26497,35,18,5,0.0 +26497,65,21.05,23,0.0 +26497,61,28.5,2,0.0 +26497,16,17.45,28,0.0 +26497,30,25.89,12,0.0 +26497,27,43.9,36,0.0 +26497,58,13.25,48,0.0 +26497,39,18,24,0.0 +26497,8,40,33,0.0 +26497,18,62.5,12,0.0 +26497,11,21,41,0.0 +26497,53,32.8,9,0.0 +26497,14,23.25,46,0.0 +26497,23,9,6,0.0 +26497,32,32,15,0.0 +26497,46,12,49,0.0 +26497,56,38,1,0.0 +26497,22,21,41,0.0 +26497,12,38,37,0.0 +26497,44,19.45,21,0.0 +26497,48,12.75,33,0.0 +26497,17,39,47,0.0 +26497,69,36,4,0.0 +26497,2,19,29,0.0 +26497,55,24,45,0.0 +26497,20,81,33,0.0 +26497,28,45.6,47,0.0 +26497,34,14,39,0.0 +26497,41,9.65,48,0.0 +26497,75,7.75,36,0.0 +26497,33,2.5,50,0.0 +26497,45,9.5,45,0.0 +26497,66,17,29,0.0 +26497,1,18,5,0.0 +26497,71,21.5,1,0.0 +26497,49,20,11,0.0 +26497,29,123.79,2,0.0 +26497,36,19,9,0.0 +26497,72,34.8,8,0.0 +26497,4,22,2,0.0 +26497,43,46,22,0.0 +26497,54,7.45,46,0.0 +26498,73,15,43,0.0 +26498,67,14,37,0.0 +26498,70,15,38,0.0 +26498,44,19.45,25,0.0 +26498,23,9,12,0.0 +26498,45,9.5,4,0.0 +26498,74,10,7,0.0 +26498,60,34,50,0.0 +26498,25,14,48,0.0 +26498,20,81,18,0.0 +26498,12,38,21,0.0 +26498,54,7.45,43,0.0 +26498,17,39,30,0.0 +26498,10,31,1,0.0 +26498,55,24,32,0.0 +26498,57,19.5,8,0.0 +26498,68,12.5,21,0.0 +26498,65,21.05,32,0.0 +26498,41,9.65,28,0.0 +26498,62,49.3,19,0.0 +26498,29,123.79,29,0.0 +26498,43,46,27,0.0 +26498,1,18,34,0.0 +26498,49,20,10,0.0 +26498,3,10,9,0.0 +26498,66,17,25,0.0 +26498,6,25,30,0.0 +26498,24,4.5,47,0.0 +26498,37,26,18,0.0 +26498,40,18.4,28,0.0 +26498,2,19,30,0.0 +26498,7,30,43,0.0 +26498,11,21,18,0.0 +26498,61,28.5,10,0.0 +26498,39,18,41,0.0 +26498,69,36,46,0.0 +26498,46,12,41,0.0 +26498,71,21.5,13,0.0 +26498,27,43.9,16,0.0 +26498,15,15.5,24,0.0 +26498,18,62.5,50,0.0 +26498,59,55,48,0.0 +26498,8,40,33,0.0 +26498,48,12.75,37,0.0 +26498,77,13,15,0.0 +26498,22,21,45,0.0 +26498,34,14,24,0.0 +26498,58,13.25,3,0.0 +26498,52,7,41,0.0 +26498,75,7.75,18,0.0 +26498,9,97,34,0.0 +26498,63,43.9,19,0.0 +26498,21,10,15,0.0 +26498,72,34.8,42,0.0 +26498,51,53,17,0.0 +26498,56,38,13,0.0 +26498,14,23.25,17,0.0 +26498,32,32,48,0.0 +26498,13,6,50,0.0 +26498,31,12.5,39,0.0 +26498,33,2.5,17,0.0 +26498,42,14,12,0.0 +26498,64,33.25,14,0.0 +26498,35,18,17,0.0 +26498,19,9.2,33,0.0 +26498,16,17.45,6,0.0 +26498,5,21.35,12,0.0 +26498,53,32.8,44,0.0 +26499,38,263.5,5,0.0 +26499,18,62.5,22,0.0 +26499,68,12.5,43,0.0 +26499,33,2.5,46,0.0 +26499,28,45.6,29,0.0 +26499,8,40,24,0.0 +26499,24,4.5,1,0.0 +26500,47,9.5,8,0.0 +26500,27,43.9,41,0.0 +26500,59,55,28,0.0 +26500,1,18,25,0.0 +26500,9,97,32,0.0 +26500,3,10,14,0.0 +26500,72,34.8,20,0.0 +26500,17,39,23,0.0 +26501,51,53,45,0.0 +26501,36,19,10,0.0 +26501,76,18,18,0.0 +26501,1,18,27,0.0 +26501,52,7,39,0.0 +26501,6,25,33,0.0 +26501,31,12.5,7,0.0 +26501,72,34.8,27,0.0 +26501,39,18,3,0.0 +26501,54,7.45,20,0.0 +26501,26,31.23,12,0.0 +26501,46,12,20,0.0 +26501,17,39,1,0.0 +26501,10,31,50,0.0 +26501,60,34,21,0.0 +26501,15,15.5,25,0.0 +26501,57,19.5,10,0.0 +26501,38,263.5,11,0.0 +26501,67,14,11,0.0 +26501,30,25.89,45,0.0 +26501,43,46,33,0.0 +26501,7,30,6,0.0 +26501,71,21.5,12,0.0 +26501,48,12.75,12,0.0 +26501,41,9.65,7,0.0 +26501,73,15,30,0.0 +26501,35,18,23,0.0 +26501,59,55,35,0.0 +26501,62,49.3,46,0.0 +26502,73,15,7,0.0 +26502,15,15.5,32,0.0 +26502,4,22,36,0.0 +26502,75,7.75,41,0.0 +26502,60,34,32,0.0 +26502,1,18,50,0.0 +26502,20,81,48,0.0 +26502,5,21.35,45,0.0 +26502,66,17,36,0.0 +26502,42,14,14,0.0 +26502,43,46,36,0.0 +26502,33,2.5,9,0.0 +26502,50,16.25,11,0.0 +26502,77,13,17,0.0 +26502,9,97,38,0.0 +26502,24,4.5,30,0.0 +26502,16,17.45,39,0.0 +26502,52,7,45,0.0 +26502,8,40,22,0.0 +26502,70,15,47,0.0 +26502,3,10,39,0.0 +26502,38,263.5,11,0.0 +26502,72,34.8,18,0.0 +26502,39,18,27,0.0 +26502,55,24,3,0.0 +26502,21,10,40,0.0 +26502,11,21,50,0.0 +26502,13,6,28,0.0 +26502,51,53,36,0.0 +26502,2,19,41,0.0 +26502,19,9.2,49,0.0 +26502,45,9.5,28,0.0 +26502,76,18,17,0.0 +26502,37,26,44,0.0 +26502,7,30,31,0.0 +26502,6,25,36,0.0 +26502,26,31.23,14,0.0 +26502,10,31,44,0.0 +26502,46,12,12,0.0 +26502,71,21.5,16,0.0 +26502,49,20,49,0.0 +26502,12,38,33,0.0 +26502,48,12.75,3,0.0 +26502,17,39,3,0.0 +26502,41,9.65,16,0.0 +26502,31,12.5,16,0.0 +26502,36,19,27,0.0 +26502,28,45.6,18,0.0 +26502,54,7.45,5,0.0 +26502,22,21,48,0.0 +26502,57,19.5,12,0.0 +26502,18,62.5,33,0.0 +26502,69,36,20,0.0 +26502,25,14,14,0.0 +26502,14,23.25,15,0.0 +26502,34,14,12,0.0 +26502,58,13.25,41,0.0 +26502,40,18.4,29,0.0 +26502,59,55,26,0.0 +26502,30,25.89,26,0.0 +26502,64,33.25,1,0.0 +26502,65,21.05,1,0.0 +26502,62,49.3,50,0.0 +26502,74,10,38,0.0 +26502,23,9,8,0.0 +26502,47,9.5,5,0.0 +26503,16,17.45,1,0.0 +26503,59,55,35,0.0 +26503,10,31,2,0.0 +26503,46,12,50,0.0 +26503,74,10,34,0.0 +26503,6,25,44,0.0 +26503,27,43.9,18,0.0 +26503,13,6,35,0.0 +26503,26,31.23,26,0.0 +26503,36,19,11,0.0 +26503,42,14,45,0.0 +26503,64,33.25,31,0.0 +26503,1,18,16,0.0 +26503,55,24,11,0.0 +26503,54,7.45,14,0.0 +26503,52,7,4,0.0 +26503,35,18,49,0.0 +26503,22,21,47,0.0 +26503,67,14,4,0.0 +26503,71,21.5,18,0.0 +26503,23,9,15,0.0 +26503,66,17,47,0.0 +26503,61,28.5,18,0.0 +26503,38,263.5,10,0.0 +26503,65,21.05,46,0.0 +26503,25,14,35,0.0 +26503,53,32.8,48,0.0 +26503,41,9.65,28,0.0 +26503,69,36,19,0.0 +26503,32,32,7,0.0 +26503,19,9.2,43,0.0 +26503,70,15,34,0.0 +26503,50,16.25,35,0.0 +26503,49,20,31,0.0 +26503,60,34,9,0.0 +26503,28,45.6,33,0.0 +26503,20,81,25,0.0 +26504,9,97,31,0.0 +26504,62,49.3,8,0.0 +26504,4,22,50,0.0 +26504,77,13,37,0.0 +26504,59,55,7,0.0 +26504,24,4.5,44,0.0 +26504,32,32,32,0.0 +26504,51,53,17,0.0 +26504,39,18,3,0.0 +26504,76,18,46,0.0 +26504,26,31.23,18,0.0 +26504,2,19,6,0.0 +26504,27,43.9,14,0.0 +26504,31,12.5,25,0.0 +26504,21,10,22,0.0 +26504,74,10,42,0.0 +26504,47,9.5,7,0.0 +26504,28,45.6,13,0.0 +26504,56,38,37,0.0 +26504,44,19.45,4,0.0 +26504,34,14,21,0.0 +26504,36,19,8,0.0 +26504,75,7.75,39,0.0 +26504,12,38,24,0.0 +26504,55,24,29,0.0 +26504,65,21.05,41,0.0 +26504,57,19.5,32,0.0 +26504,11,21,23,0.0 +26504,15,15.5,39,0.0 +26504,16,17.45,20,0.0 +26504,30,25.89,30,0.0 +26505,37,26,2,0.0 +26505,13,6,46,0.0 +26505,52,7,3,0.0 +26505,19,9.2,37,0.0 +26505,54,7.45,7,0.0 +26505,3,10,20,0.0 +26505,57,19.5,36,0.0 +26505,48,12.75,3,0.0 +26505,35,18,28,0.0 +26505,21,10,8,0.0 +26505,15,15.5,29,0.0 +26505,64,33.25,48,0.0 +26505,12,38,29,0.0 +26505,75,7.75,42,0.0 +26505,8,40,41,0.0 +26505,72,34.8,4,0.0 +26505,68,12.5,4,0.0 +26505,55,24,29,0.0 +26505,71,21.5,36,0.0 +26505,9,97,46,0.0 +26505,69,36,21,0.0 +26505,38,263.5,38,0.0 +26505,31,12.5,2,0.0 +26505,74,10,46,0.0 +26505,29,123.79,32,0.0 +26505,2,19,17,0.0 +26505,53,32.8,43,0.0 +26505,42,14,46,0.0 +26505,16,17.45,29,0.0 +26505,10,31,7,0.0 +26505,47,9.5,12,0.0 +26505,7,30,17,0.0 +26505,43,46,6,0.0 +26505,18,62.5,2,0.0 +26505,65,21.05,38,0.0 +26505,32,32,32,0.0 +26505,25,14,7,0.0 +26505,45,9.5,16,0.0 +26505,56,38,27,0.0 +26505,5,21.35,24,0.0 +26505,61,28.5,4,0.0 +26505,40,18.4,49,0.0 +26505,39,18,29,0.0 +26505,77,13,9,0.0 +26505,62,49.3,5,0.0 +26505,28,45.6,8,0.0 +26505,14,23.25,7,0.0 +26505,66,17,38,0.0 +26505,1,18,4,0.0 +26505,26,31.23,48,0.0 +26505,63,43.9,1,0.0 +26505,33,2.5,2,0.0 +26505,24,4.5,27,0.0 +26505,36,19,46,0.0 +26505,46,12,26,0.0 +26505,27,43.9,11,0.0 +26505,76,18,40,0.0 +26505,67,14,4,0.0 +26505,4,22,10,0.0 +26505,60,34,35,0.0 +26505,70,15,3,0.0 +26505,17,39,26,0.0 +26506,63,43.9,30,0.0 +26506,61,28.5,21,0.0 +26506,55,24,27,0.0 +26506,23,9,50,0.0 +26506,72,34.8,45,0.0 +26506,27,43.9,47,0.0 +26506,50,16.25,18,0.0 +26506,33,2.5,5,0.0 +26506,20,81,22,0.0 +26506,45,9.5,8,0.0 +26506,32,32,10,0.0 +26506,18,62.5,24,0.0 +26506,21,10,40,0.0 +26506,66,17,14,0.0 +26506,13,6,20,0.0 +26506,73,15,26,0.0 +26506,49,20,11,0.0 +26506,59,55,48,0.0 +26506,71,21.5,14,0.0 +26506,42,14,32,0.0 +26506,3,10,20,0.0 +26506,64,33.25,47,0.0 +26506,68,12.5,23,0.0 +26506,36,19,2,0.0 +26506,5,21.35,41,0.0 +26506,17,39,32,0.0 +26506,76,18,37,0.0 +26506,69,36,50,0.0 +26506,40,18.4,37,0.0 +26506,39,18,7,0.0 +26506,31,12.5,42,0.0 +26506,11,21,33,0.0 +26506,46,12,46,0.0 +26506,70,15,43,0.0 +26507,53,32.8,5,0.0 +26507,31,12.5,7,0.0 +26507,46,12,25,0.0 +26507,6,25,12,0.0 +26507,8,40,7,0.0 +26507,20,81,31,0.0 +26507,29,123.79,29,0.0 +26507,32,32,34,0.0 +26507,21,10,34,0.0 +26507,28,45.6,6,0.0 +26507,11,21,30,0.0 +26507,69,36,9,0.0 +26507,42,14,43,0.0 +26507,75,7.75,3,0.0 +26507,40,18.4,22,0.0 +26507,43,46,50,0.0 +26507,34,14,47,0.0 +26507,9,97,6,0.0 +26507,73,15,31,0.0 +26507,47,9.5,26,0.0 +26507,62,49.3,6,0.0 +26507,74,10,22,0.0 +26507,16,17.45,28,0.0 +26507,59,55,28,0.0 +26507,49,20,25,0.0 +26507,55,24,40,0.0 +26507,13,6,40,0.0 +26507,54,7.45,50,0.0 +26507,35,18,30,0.0 +26507,52,7,37,0.0 +26507,18,62.5,21,0.0 +26507,37,26,34,0.0 +26507,36,19,18,0.0 +26507,76,18,46,0.0 +26507,72,34.8,32,0.0 +26507,22,21,49,0.0 +26507,25,14,25,0.0 +26507,66,17,31,0.0 +26507,60,34,37,0.0 +26507,64,33.25,27,0.0 +26507,63,43.9,5,0.0 +26507,57,19.5,41,0.0 +26507,56,38,23,0.0 +26507,26,31.23,24,0.0 +26507,77,13,50,0.0 +26507,71,21.5,9,0.0 +26507,41,9.65,21,0.0 +26507,7,30,38,0.0 +26507,27,43.9,15,0.0 +26507,17,39,48,0.0 +26507,3,10,29,0.0 +26508,3,10,14,0.0 +26508,66,17,6,0.0 +26508,37,26,6,0.0 +26508,54,7.45,4,0.0 +26508,20,81,28,0.0 +26508,65,21.05,14,0.0 +26508,10,31,43,0.0 +26508,39,18,26,0.0 +26508,30,25.89,29,0.0 +26508,59,55,35,0.0 +26508,46,12,7,0.0 +26508,69,36,2,0.0 +26508,40,18.4,28,0.0 +26508,44,19.45,21,0.0 +26508,73,15,11,0.0 +26508,14,23.25,16,0.0 +26508,28,45.6,7,0.0 +26508,53,32.8,28,0.0 +26508,2,19,42,0.0 +26508,64,33.25,14,0.0 +26508,32,32,14,0.0 +26508,74,10,14,0.0 +26508,42,14,46,0.0 +26508,60,34,34,0.0 +26508,68,12.5,42,0.0 +26508,13,6,23,0.0 +26508,15,15.5,29,0.0 +26508,19,9.2,4,0.0 +26508,35,18,43,0.0 +26508,75,7.75,29,0.0 +26508,1,18,32,0.0 +26508,24,4.5,41,0.0 +26508,11,21,49,0.0 +26508,48,12.75,16,0.0 +26509,66,17,5,0.0 +26509,55,24,49,0.0 +26509,3,10,39,0.0 +26509,75,7.75,27,0.0 +26509,47,9.5,41,0.0 +26509,34,14,39,0.0 +26509,68,12.5,48,0.0 +26509,36,19,13,0.0 +26509,24,4.5,30,0.0 +26509,4,22,14,0.0 +26509,25,14,16,0.0 +26509,70,15,37,0.0 +26509,19,9.2,21,0.0 +26509,62,49.3,46,0.0 +26509,69,36,47,0.0 +26509,6,25,18,0.0 +26509,41,9.65,10,0.0 +26509,2,19,6,0.0 +26509,73,15,42,0.0 +26509,29,123.79,20,0.0 +26509,72,34.8,13,0.0 +26509,9,97,27,0.0 +26509,57,19.5,13,0.0 +26509,49,20,6,0.0 +26509,63,43.9,35,0.0 +26509,11,21,2,0.0 +26509,54,7.45,35,0.0 +26509,8,40,40,0.0 +26509,10,31,40,0.0 +26509,33,2.5,21,0.0 +26509,48,12.75,20,0.0 +26509,23,9,22,0.0 +26509,59,55,23,0.0 +26509,1,18,4,0.0 +26509,38,263.5,29,0.0 +26509,5,21.35,43,0.0 +26509,43,46,2,0.0 +26509,14,23.25,19,0.0 +26509,56,38,27,0.0 +26509,27,43.9,11,0.0 +26509,50,16.25,13,0.0 +26509,26,31.23,33,0.0 +26509,71,21.5,39,0.0 +26509,20,81,29,0.0 +26509,44,19.45,11,0.0 +26509,7,30,20,0.0 +26509,35,18,9,0.0 +26509,21,10,43,0.0 +26509,31,12.5,26,0.0 +26509,39,18,11,0.0 +26509,51,53,20,0.0 +26509,42,14,21,0.0 +26509,77,13,47,0.0 +26509,61,28.5,32,0.0 +26509,28,45.6,12,0.0 +26509,17,39,17,0.0 +26510,75,7.75,49,0.0 +26510,24,4.5,9,0.0 +26510,51,53,4,0.0 +26510,71,21.5,24,0.0 +26510,48,12.75,21,0.0 +26510,59,55,29,0.0 +26510,68,12.5,10,0.0 +26510,27,43.9,50,0.0 +26510,4,22,31,0.0 +26510,77,13,41,0.0 +26510,23,9,21,0.0 +26510,70,15,41,0.0 +26510,18,62.5,39,0.0 +26510,62,49.3,49,0.0 +26510,67,14,32,0.0 +26510,1,18,27,0.0 +26510,19,9.2,27,0.0 +26510,28,45.6,10,0.0 +26510,44,19.45,25,0.0 +26510,6,25,23,0.0 +26510,11,21,48,0.0 +26510,65,21.05,7,0.0 +26510,74,10,25,0.0 +26510,54,7.45,31,0.0 +26510,2,19,18,0.0 +26510,42,14,14,0.0 +26510,16,17.45,47,0.0 +26510,7,30,6,0.0 +26510,10,31,15,0.0 +26510,72,34.8,37,0.0 +26510,66,17,31,0.0 +26510,52,7,36,0.0 +26510,40,18.4,4,0.0 +26510,63,43.9,32,0.0 +26510,73,15,33,0.0 +26510,49,20,50,0.0 +26510,12,38,40,0.0 +26510,39,18,1,0.0 +26510,56,38,47,0.0 +26510,57,19.5,23,0.0 +26510,30,25.89,41,0.0 +26510,37,26,34,0.0 +26510,41,9.65,32,0.0 +26510,61,28.5,14,0.0 +26510,20,81,41,0.0 +26510,34,14,3,0.0 +26510,50,16.25,37,0.0 +26510,9,97,1,0.0 +26510,15,15.5,41,0.0 +26510,22,21,18,0.0 +26510,25,14,15,0.0 +26510,60,34,24,0.0 +26510,14,23.25,42,0.0 +26510,21,10,43,0.0 +26510,55,24,41,0.0 +26510,69,36,2,0.0 +26510,58,13.25,40,0.0 +26510,17,39,45,0.0 +26511,59,55,31,0.0 +26511,55,24,21,0.0 +26511,12,38,38,0.0 +26511,60,34,34,0.0 +26511,23,9,2,0.0 +26511,30,25.89,21,0.0 +26511,56,38,7,0.0 +26511,57,19.5,6,0.0 +26511,69,36,9,0.0 +26511,15,15.5,39,0.0 +26511,49,20,22,0.0 +26511,1,18,37,0.0 +26511,31,12.5,7,0.0 +26511,58,13.25,15,0.0 +26511,21,10,46,0.0 +26511,18,62.5,34,0.0 +26511,32,32,38,0.0 +26511,5,21.35,2,0.0 +26511,77,13,3,0.0 +26511,61,28.5,29,0.0 +26511,13,6,14,0.0 +26511,29,123.79,5,0.0 +26511,73,15,21,0.0 +26511,43,46,6,0.0 +26511,28,45.6,31,0.0 +26511,70,15,26,0.0 +26511,38,263.5,49,0.0 +26511,36,19,50,0.0 +26511,25,14,19,0.0 +26511,71,21.5,50,0.0 +26511,50,16.25,38,0.0 +26511,68,12.5,1,0.0 +26511,46,12,38,0.0 +26511,24,4.5,35,0.0 +26511,74,10,39,0.0 +26511,8,40,2,0.0 +26511,14,23.25,12,0.0 +26511,64,33.25,11,0.0 +26511,22,21,17,0.0 +26511,42,14,10,0.0 +26511,17,39,50,0.0 +26511,45,9.5,29,0.0 +26511,26,31.23,50,0.0 +26511,48,12.75,17,0.0 +26511,67,14,38,0.0 +26511,2,19,32,0.0 +26511,54,7.45,35,0.0 +26511,62,49.3,40,0.0 +26511,75,7.75,3,0.0 +26511,51,53,37,0.0 +26511,19,9.2,46,0.0 +26511,65,21.05,45,0.0 +26511,37,26,41,0.0 +26511,11,21,10,0.0 +26511,20,81,46,0.0 +26511,39,18,45,0.0 +26511,63,43.9,35,0.0 +26512,76,18,14,0.0 +26512,7,30,24,0.0 +26512,19,9.2,39,0.0 +26512,47,9.5,36,0.0 +26512,32,32,47,0.0 +26512,13,6,47,0.0 +26512,18,62.5,25,0.0 +26512,59,55,23,0.0 +26512,48,12.75,25,0.0 +26512,22,21,32,0.0 +26512,26,31.23,33,0.0 +26512,72,34.8,46,0.0 +26512,64,33.25,24,0.0 +26512,5,21.35,24,0.0 +26512,3,10,5,0.0 +26512,58,13.25,3,0.0 +26512,63,43.9,16,0.0 +26512,71,21.5,32,0.0 +26512,49,20,50,0.0 +26512,10,31,27,0.0 +26512,15,15.5,34,0.0 +26512,52,7,22,0.0 +26512,25,14,27,0.0 +26512,16,17.45,26,0.0 +26512,55,24,45,0.0 +26512,35,18,12,0.0 +26512,31,12.5,8,0.0 +26512,62,49.3,7,0.0 +26512,75,7.75,23,0.0 +26512,33,2.5,36,0.0 +26512,14,23.25,40,0.0 +26512,77,13,23,0.0 +26512,69,36,25,0.0 +26512,21,10,28,0.0 +26512,1,18,24,0.0 +26512,43,46,42,0.0 +26512,24,4.5,25,0.0 +26512,41,9.65,29,0.0 +26512,53,32.8,33,0.0 +26512,40,18.4,29,0.0 +26512,34,14,19,0.0 +26512,60,34,30,0.0 +26512,29,123.79,9,0.0 +26512,23,9,38,0.0 +26512,30,25.89,6,0.0 +26512,36,19,47,0.0 +26513,20,81,22,0.0 +26513,60,34,34,0.0 +26513,59,55,27,0.0 +26513,14,23.25,33,0.0 +26513,34,14,38,0.0 +26513,17,39,38,0.0 +26513,22,21,12,0.0 +26513,4,22,27,0.0 +26513,68,12.5,16,0.0 +26513,73,15,14,0.0 +26513,51,53,15,0.0 +26513,65,21.05,4,0.0 +26513,46,12,45,0.0 +26513,36,19,15,0.0 +26513,64,33.25,43,0.0 +26513,5,21.35,23,0.0 +26513,76,18,28,0.0 +26513,48,12.75,44,0.0 +26513,27,43.9,3,0.0 +26513,42,14,46,0.0 +26513,6,25,8,0.0 +26513,63,43.9,4,0.0 +26513,23,9,44,0.0 +26513,1,18,39,0.0 +26513,9,97,34,0.0 +26514,77,13,5,0.0 +26514,16,17.45,5,0.0 +26514,75,7.75,50,0.0 +26514,25,14,30,0.0 +26514,40,18.4,19,0.0 +26514,74,10,43,0.0 +26514,65,21.05,20,0.0 +26514,6,25,35,0.0 +26514,54,7.45,26,0.0 +26514,7,30,4,0.0 +26514,66,17,20,0.0 +26514,17,39,40,0.0 +26514,37,26,1,0.0 +26514,10,31,21,0.0 +26514,46,12,1,0.0 +26514,8,40,6,0.0 +26514,63,43.9,31,0.0 +26514,9,97,38,0.0 +26514,60,34,39,0.0 +26514,29,123.79,12,0.0 +26514,12,38,21,0.0 +26514,48,12.75,47,0.0 +26514,76,18,31,0.0 +26514,18,62.5,9,0.0 +26514,30,25.89,31,0.0 +26514,55,24,43,0.0 +26514,28,45.6,3,0.0 +26514,51,53,37,0.0 +26514,61,28.5,36,0.0 +26514,50,16.25,48,0.0 +26514,43,46,25,0.0 +26514,2,19,7,0.0 +26514,3,10,41,0.0 +26514,36,19,42,0.0 +26514,32,32,25,0.0 +26514,20,81,2,0.0 +26514,1,18,28,0.0 +26514,59,55,27,0.0 +26514,49,20,21,0.0 +26514,72,34.8,34,0.0 +26514,71,21.5,38,0.0 +26514,69,36,39,0.0 +26515,68,12.5,46,0.0 +26515,59,55,37,0.0 +26515,48,12.75,34,0.0 +26515,39,18,42,0.0 +26515,44,19.45,39,0.0 +26515,53,32.8,26,0.0 +26515,17,39,30,0.0 +26515,11,21,20,0.0 +26515,14,23.25,43,0.0 +26515,67,14,45,0.0 +26515,47,9.5,49,0.0 +26515,31,12.5,19,0.0 +26515,51,53,6,0.0 +26515,64,33.25,13,0.0 +26515,66,17,23,0.0 +26515,27,43.9,4,0.0 +26515,49,20,15,0.0 +26515,71,21.5,46,0.0 +26515,4,22,16,0.0 +26515,73,15,47,0.0 +26515,52,7,20,0.0 +26515,58,13.25,33,0.0 +26515,69,36,38,0.0 +26515,28,45.6,6,0.0 +26515,19,9.2,12,0.0 +26515,60,34,11,0.0 +26515,24,4.5,29,0.0 +26515,61,28.5,39,0.0 +26515,54,7.45,18,0.0 +26515,57,19.5,37,0.0 +26515,35,18,9,0.0 +26515,62,49.3,41,0.0 +26515,70,15,49,0.0 +26515,56,38,29,0.0 +26515,55,24,26,0.0 +26515,12,38,23,0.0 +26515,7,30,14,0.0 +26515,42,14,26,0.0 +26515,75,7.75,13,0.0 +26515,30,25.89,28,0.0 +26515,41,9.65,2,0.0 +26515,72,34.8,46,0.0 +26515,25,14,40,0.0 +26515,50,16.25,40,0.0 +26515,5,21.35,3,0.0 +26515,45,9.5,15,0.0 +26515,20,81,10,0.0 +26516,70,15,23,0.0 +26516,40,18.4,8,0.0 +26516,24,4.5,31,0.0 +26516,54,7.45,7,0.0 +26516,3,10,39,0.0 +26516,15,15.5,29,0.0 +26516,66,17,46,0.0 +26516,23,9,47,0.0 +26516,53,32.8,24,0.0 +26516,68,12.5,36,0.0 +26516,55,24,16,0.0 +26516,8,40,23,0.0 +26516,59,55,25,0.0 +26516,39,18,50,0.0 +26516,50,16.25,19,0.0 +26516,69,36,37,0.0 +26516,47,9.5,32,0.0 +26516,31,12.5,8,0.0 +26516,12,38,49,0.0 +26516,51,53,4,0.0 +26516,52,7,26,0.0 +26516,46,12,30,0.0 +26516,72,34.8,32,0.0 +26516,11,21,25,0.0 +26516,75,7.75,11,0.0 +26516,22,21,33,0.0 +26516,77,13,33,0.0 +26516,76,18,45,0.0 +26516,42,14,9,0.0 +26516,4,22,10,0.0 +26516,63,43.9,34,0.0 +26516,36,19,46,0.0 +26516,67,14,1,0.0 +26516,5,21.35,44,0.0 +26516,61,28.5,33,0.0 +26517,41,9.65,27,0.0 +26517,61,28.5,7,0.0 +26517,24,4.5,22,0.0 +26517,3,10,10,0.0 +26517,51,53,37,0.0 +26517,72,34.8,10,0.0 +26517,38,263.5,22,0.0 +26517,69,36,26,0.0 +26517,74,10,7,0.0 +26517,56,38,47,0.0 +26517,22,21,17,0.0 +26517,10,31,41,0.0 +26517,66,17,14,0.0 +26517,39,18,34,0.0 +26517,49,20,10,0.0 +26517,33,2.5,18,0.0 +26517,14,23.25,32,0.0 +26517,68,12.5,2,0.0 +26517,32,32,39,0.0 +26517,59,55,14,0.0 +26517,75,7.75,14,0.0 +26517,58,13.25,50,0.0 +26517,44,19.45,14,0.0 +26517,53,32.8,14,0.0 +26517,25,14,47,0.0 +26517,4,22,39,0.0 +26517,12,38,50,0.0 +26517,47,9.5,39,0.0 +26517,7,30,5,0.0 +26517,34,14,17,0.0 +26517,20,81,37,0.0 +26517,2,19,36,0.0 +26517,26,31.23,15,0.0 +26517,40,18.4,47,0.0 +26517,9,97,16,0.0 +26517,55,24,27,0.0 +26517,16,17.45,21,0.0 +26517,5,21.35,41,0.0 +26517,35,18,25,0.0 +26517,29,123.79,34,0.0 +26517,42,14,16,0.0 +26517,8,40,5,0.0 +26517,64,33.25,34,0.0 +26517,13,6,22,0.0 +26517,28,45.6,28,0.0 +26517,62,49.3,16,0.0 +26517,63,43.9,28,0.0 +26517,45,9.5,15,0.0 +26517,27,43.9,39,0.0 +26517,76,18,37,0.0 +26517,67,14,29,0.0 +26518,45,9.5,17,0.0 +26518,51,53,19,0.0 +26518,16,17.45,1,0.0 +26518,69,36,39,0.0 +26518,66,17,2,0.0 +26518,48,12.75,29,0.0 +26518,22,21,31,0.0 +26518,18,62.5,44,0.0 +26518,49,20,27,0.0 +26518,14,23.25,41,0.0 +26518,17,39,11,0.0 +26518,32,32,26,0.0 +26518,50,16.25,20,0.0 +26518,52,7,48,0.0 +26518,71,21.5,50,0.0 +26518,65,21.05,17,0.0 +26518,36,19,32,0.0 +26518,59,55,40,0.0 +26518,75,7.75,30,0.0 +26518,9,97,50,0.0 +26518,3,10,29,0.0 +26518,26,31.23,9,0.0 +26518,64,33.25,41,0.0 +26518,76,18,6,0.0 +26518,34,14,36,0.0 +26518,44,19.45,33,0.0 +26518,42,14,34,0.0 +26518,35,18,37,0.0 +26518,28,45.6,47,0.0 +26518,54,7.45,37,0.0 +26518,41,9.65,32,0.0 +26518,11,21,8,0.0 +26518,57,19.5,3,0.0 +26518,39,18,20,0.0 +26518,61,28.5,16,0.0 +26518,8,40,12,0.0 +26518,24,4.5,23,0.0 +26518,62,49.3,3,0.0 +26518,5,21.35,45,0.0 +26518,68,12.5,41,0.0 +26518,58,13.25,37,0.0 +26518,19,9.2,40,0.0 +26518,46,12,18,0.0 +26518,31,12.5,47,0.0 +26518,27,43.9,18,0.0 +26519,46,12,26,0.0 +26519,51,53,45,0.0 +26519,35,18,14,0.0 +26519,43,46,19,0.0 +26519,22,21,4,0.0 +26519,45,9.5,11,0.0 +26519,24,4.5,46,0.0 +26519,47,9.5,11,0.0 +26519,31,12.5,33,0.0 +26519,4,22,41,0.0 +26519,73,15,5,0.0 +26519,70,15,49,0.0 +26519,30,25.89,48,0.0 +26519,74,10,50,0.0 +26519,69,36,24,0.0 +26519,65,21.05,17,0.0 +26519,39,18,42,0.0 +26519,61,28.5,41,0.0 +26519,40,18.4,12,0.0 +26519,14,23.25,24,0.0 +26519,38,263.5,13,0.0 +26519,13,6,44,0.0 +26519,32,32,18,0.0 +26519,63,43.9,27,0.0 +26519,17,39,50,0.0 +26519,15,15.5,44,0.0 +26519,62,49.3,41,0.0 +26519,75,7.75,10,0.0 +26519,18,62.5,6,0.0 +26519,37,26,45,0.0 +26519,67,14,49,0.0 +26520,66,17,16,0.0 +26520,9,97,34,0.0 +26520,38,263.5,21,0.0 +26520,31,12.5,38,0.0 +26520,29,123.79,8,0.0 +26520,60,34,49,0.0 +26520,54,7.45,1,0.0 +26520,24,4.5,30,0.0 +26520,49,20,13,0.0 +26520,42,14,29,0.0 +26520,11,21,36,0.0 +26520,47,9.5,27,0.0 +26520,53,32.8,11,0.0 +26520,45,9.5,42,0.0 +26520,74,10,14,0.0 +26520,30,25.89,33,0.0 +26520,43,46,46,0.0 +26520,8,40,2,0.0 +26520,4,22,21,0.0 +26520,50,16.25,27,0.0 +26520,21,10,24,0.0 +26520,28,45.6,34,0.0 +26520,67,14,25,0.0 +26520,12,38,35,0.0 +26521,30,25.89,35,0.0 +26521,63,43.9,3,0.0 +26521,4,22,40,0.0 +26521,19,9.2,43,0.0 +26521,13,6,16,0.0 +26521,50,16.25,38,0.0 +26521,54,7.45,33,0.0 +26521,39,18,12,0.0 +26521,42,14,7,0.0 +26521,34,14,37,0.0 +26521,55,24,33,0.0 +26521,10,31,22,0.0 +26521,65,21.05,48,0.0 +26521,2,19,8,0.0 +26521,1,18,46,0.0 +26521,70,15,25,0.0 +26521,60,34,49,0.0 +26521,33,2.5,17,0.0 +26521,20,81,20,0.0 +26521,51,53,28,0.0 +26521,22,21,49,0.0 +26521,5,21.35,11,0.0 +26521,76,18,17,0.0 +26521,45,9.5,1,0.0 +26521,47,9.5,36,0.0 +26521,74,10,8,0.0 +26521,24,4.5,13,0.0 +26521,18,62.5,43,0.0 +26521,61,28.5,15,0.0 +26522,62,49.3,19,0.0 +26522,33,2.5,2,0.0 +26522,30,25.89,14,0.0 +26522,34,14,23,0.0 +26522,69,36,25,0.0 +26522,46,12,30,0.0 +26522,51,53,41,0.0 +26522,6,25,21,0.0 +26522,7,30,24,0.0 +26522,18,62.5,3,0.0 +26522,37,26,18,0.0 +26522,28,45.6,40,0.0 +26522,14,23.25,37,0.0 +26522,12,38,43,0.0 +26522,63,43.9,43,0.0 +26522,45,9.5,19,0.0 +26522,61,28.5,22,0.0 +26522,49,20,39,0.0 +26522,8,40,50,0.0 +26522,15,15.5,1,0.0 +26522,3,10,49,0.0 +26522,24,4.5,44,0.0 +26522,59,55,26,0.0 +26522,29,123.79,46,0.0 +26522,19,9.2,46,0.0 +26522,77,13,30,0.0 +26522,38,263.5,25,0.0 +26523,65,21.05,43,0.0 +26523,13,6,10,0.0 +26523,46,12,1,0.0 +26523,66,17,30,0.0 +26523,24,4.5,44,0.0 +26523,34,14,21,0.0 +26523,30,25.89,40,0.0 +26523,21,10,33,0.0 +26523,1,18,9,0.0 +26523,18,62.5,25,0.0 +26523,20,81,11,0.0 +26523,23,9,44,0.0 +26523,37,26,5,0.0 +26523,43,46,48,0.0 +26523,32,32,37,0.0 +26523,6,25,40,0.0 +26523,45,9.5,45,0.0 +26523,59,55,39,0.0 +26523,28,45.6,35,0.0 +26523,69,36,28,0.0 +26523,26,31.23,25,0.0 +26523,29,123.79,40,0.0 +26523,55,24,2,0.0 +26523,33,2.5,17,0.0 +26523,40,18.4,17,0.0 +26523,3,10,45,0.0 +26523,17,39,21,0.0 +26523,36,19,11,0.0 +26523,19,9.2,28,0.0 +26523,52,7,33,0.0 +26523,31,12.5,8,0.0 +26523,76,18,1,0.0 +26523,71,21.5,11,0.0 +26523,9,97,37,0.0 +26523,48,12.75,33,0.0 +26523,70,15,6,0.0 +26523,16,17.45,30,0.0 +26523,38,263.5,49,0.0 +26523,68,12.5,11,0.0 +26523,14,23.25,17,0.0 +26523,22,21,14,0.0 +26523,27,43.9,42,0.0 +26523,63,43.9,38,0.0 +26523,44,19.45,35,0.0 +26523,7,30,5,0.0 +26523,62,49.3,32,0.0 +26523,50,16.25,11,0.0 +26523,60,34,43,0.0 +26523,72,34.8,21,0.0 +26523,56,38,39,0.0 +26523,35,18,28,0.0 +26523,75,7.75,17,0.0 +26523,25,14,42,0.0 +26523,77,13,24,0.0 +26523,2,19,28,0.0 +26523,5,21.35,19,0.0 +26523,74,10,25,0.0 +26523,57,19.5,10,0.0 +26523,42,14,23,0.0 +26523,54,7.45,28,0.0 +26524,41,9.65,28,0.0 +26524,51,53,49,0.0 +26524,1,18,26,0.0 +26524,14,23.25,4,0.0 +26524,23,9,4,0.0 +26524,45,9.5,10,0.0 +26524,16,17.45,47,0.0 +26525,32,32,8,0.0 +26525,69,36,15,0.0 +26525,26,31.23,35,0.0 +26525,2,19,29,0.0 +26525,36,19,28,0.0 +26525,8,40,15,0.0 +26526,3,10,42,0.0 +26526,54,7.45,39,0.0 +26526,20,81,6,0.0 +26526,66,17,38,0.0 +26526,17,39,39,0.0 +26526,48,12.75,4,0.0 +26526,28,45.6,32,0.0 +26526,53,32.8,39,0.0 +26526,21,10,16,0.0 +26526,73,15,20,0.0 +26526,43,46,17,0.0 +26526,39,18,9,0.0 +26526,59,55,26,0.0 +26526,30,25.89,20,0.0 +26526,55,24,13,0.0 +26526,67,14,13,0.0 +26526,45,9.5,21,0.0 +26526,36,19,23,0.0 +26526,1,18,9,0.0 +26526,72,34.8,32,0.0 +26526,68,12.5,33,0.0 +26526,49,20,18,0.0 +26526,6,25,7,0.0 +26526,32,32,2,0.0 +26526,46,12,36,0.0 +26526,27,43.9,40,0.0 +26526,31,12.5,29,0.0 +26526,5,21.35,16,0.0 +26526,16,17.45,27,0.0 +26526,76,18,34,0.0 +26526,25,14,36,0.0 +26526,8,40,35,0.0 +26526,26,31.23,19,0.0 +26526,19,9.2,36,0.0 +26526,71,21.5,20,0.0 +26526,62,49.3,22,0.0 +26526,41,9.65,30,0.0 +26526,47,9.5,3,0.0 +26526,51,53,11,0.0 +26526,57,19.5,9,0.0 +26526,12,38,26,0.0 +26526,60,34,50,0.0 +26526,33,2.5,36,0.0 +26526,14,23.25,31,0.0 +26526,63,43.9,25,0.0 +26526,50,16.25,49,0.0 +26526,44,19.45,26,0.0 +26526,40,18.4,11,0.0 +26526,29,123.79,34,0.0 +26526,37,26,44,0.0 +26526,35,18,28,0.0 +26526,13,6,20,0.0 +26526,23,9,6,0.0 +26526,56,38,7,0.0 +26526,2,19,38,0.0 +26526,38,263.5,31,0.0 +26526,34,14,46,0.0 +26526,7,30,30,0.0 +26526,52,7,40,0.0 +26526,77,13,41,0.0 +26526,4,22,50,0.0 +26526,58,13.25,32,0.0 +26526,70,15,2,0.0 +26526,10,31,38,0.0 +26527,26,31.23,45,0.0 +26527,14,23.25,28,0.0 +26527,49,20,26,0.0 +26527,72,34.8,36,0.0 +26527,58,13.25,23,0.0 +26527,48,12.75,23,0.0 +26527,13,6,22,0.0 +26527,17,39,11,0.0 +26527,15,15.5,20,0.0 +26527,57,19.5,42,0.0 +26527,44,19.45,13,0.0 +26527,65,21.05,41,0.0 +26527,23,9,5,0.0 +26527,1,18,49,0.0 +26527,27,43.9,24,0.0 +26527,24,4.5,38,0.0 +26527,71,21.5,35,0.0 +26527,53,32.8,17,0.0 +26527,55,24,16,0.0 +26527,56,38,20,0.0 +26527,41,9.65,1,0.0 +26527,29,123.79,49,0.0 +26527,33,2.5,35,0.0 +26527,42,14,17,0.0 +26527,7,30,30,0.0 +26527,52,7,12,0.0 +26527,20,81,15,0.0 +26527,50,16.25,32,0.0 +26527,62,49.3,37,0.0 +26527,16,17.45,9,0.0 +26527,32,32,2,0.0 +26527,25,14,39,0.0 +26527,22,21,4,0.0 +26527,61,28.5,23,0.0 +26527,9,97,11,0.0 +26527,5,21.35,39,0.0 +26527,2,19,42,0.0 +26527,54,7.45,37,0.0 +26527,47,9.5,41,0.0 +26527,4,22,36,0.0 +26527,69,36,19,0.0 +26527,12,38,16,0.0 +26528,50,16.25,26,0.0 +26528,31,12.5,36,0.0 +26528,15,15.5,25,0.0 +26528,5,21.35,15,0.0 +26528,75,7.75,7,0.0 +26528,67,14,3,0.0 +26528,43,46,19,0.0 +26528,36,19,17,0.0 +26528,64,33.25,27,0.0 +26528,26,31.23,42,0.0 +26528,22,21,7,0.0 +26528,59,55,29,0.0 +26528,12,38,42,0.0 +26528,52,7,45,0.0 +26528,32,32,13,0.0 +26528,74,10,49,0.0 +26528,45,9.5,47,0.0 +26528,53,32.8,36,0.0 +26529,25,14,34,0.0 +26529,39,18,32,0.0 +26529,28,45.6,32,0.0 +26529,72,34.8,1,0.0 +26529,1,18,50,0.0 +26529,71,21.5,24,0.0 +26529,57,19.5,10,0.0 +26529,15,15.5,1,0.0 +26529,77,13,4,0.0 +26529,12,38,25,0.0 +26529,58,13.25,18,0.0 +26529,31,12.5,8,0.0 +26529,5,21.35,9,0.0 +26529,33,2.5,31,0.0 +26529,61,28.5,8,0.0 +26529,65,21.05,20,0.0 +26529,6,25,4,0.0 +26529,59,55,19,0.0 +26529,51,53,7,0.0 +26529,45,9.5,32,0.0 +26529,19,9.2,21,0.0 +26529,22,21,49,0.0 +26529,53,32.8,37,0.0 +26529,64,33.25,24,0.0 +26529,30,25.89,30,0.0 +26529,14,23.25,32,0.0 +26529,20,81,6,0.0 +26529,47,9.5,44,0.0 +26529,74,10,3,0.0 +26529,73,15,38,0.0 +26529,13,6,50,0.0 +26529,70,15,46,0.0 +26529,50,16.25,14,0.0 +26529,69,36,10,0.0 +26529,36,19,10,0.0 +26529,38,263.5,29,0.0 +26529,43,46,38,0.0 +26529,66,17,35,0.0 +26529,54,7.45,2,0.0 +26529,55,24,1,0.0 +26529,3,10,3,0.0 +26529,63,43.9,47,0.0 +26529,68,12.5,49,0.0 +26529,41,9.65,39,0.0 +26529,56,38,32,0.0 +26529,8,40,23,0.0 +26529,40,18.4,30,0.0 +26529,62,49.3,24,0.0 +26529,48,12.75,26,0.0 +26529,75,7.75,19,0.0 +26529,16,17.45,28,0.0 +26529,76,18,33,0.0 +26529,18,62.5,47,0.0 +26529,42,14,17,0.0 +26529,24,4.5,29,0.0 +26529,52,7,34,0.0 +26529,67,14,36,0.0 +26529,9,97,49,0.0 +26529,37,26,11,0.0 +26529,60,34,5,0.0 +26529,49,20,2,0.0 +26529,44,19.45,47,0.0 +26529,23,9,31,0.0 +26529,11,21,19,0.0 +26529,29,123.79,39,0.0 +26529,21,10,7,0.0 +26529,2,19,38,0.0 +26529,10,31,26,0.0 +26529,46,12,18,0.0 +26529,26,31.23,3,0.0 +26529,27,43.9,24,0.0 +26529,17,39,26,0.0 diff --git a/templates/store.gbai/store.gbdata/Orders.csv b/templates/store.gbai/store.gbdata/Orders.csv new file mode 100644 index 00000000..8981ccd9 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Orders.csv @@ -0,0 +1,16283 @@ +OrderID,CustomerID,EmployeeID,OrderDate,RequiredDate,ShippedDate,ShipVia,Freight,ShipName,ShipAddress,ShipCity,ShipRegion,ShipPostalCode,ShipCountry +10248,VINET,5,2016-07-04,2016-08-01,2016-07-16,3,16.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +10249,TOMSP,6,2016-07-05,2016-08-16,2016-07-10,1,22.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +10250,HANAR,4,2016-07-08,2016-08-05,2016-07-12,2,25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10251,VICTE,3,2016-07-08,2016-08-05,2016-07-15,1,20.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10252,SUPRD,4,2016-07-09,2016-08-06,2016-07-11,2,36.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10253,HANAR,3,2016-07-10,2016-07-24,2016-07-16,2,35.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10254,CHOPS,5,2016-07-11,2016-08-08,2016-07-23,2,24.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +10255,RICSU,9,2016-07-12,2016-08-09,2016-07-15,3,37.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10256,WELLI,3,2016-07-15,2016-08-12,2016-07-17,2,16.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10257,HILAA,4,2016-07-16,2016-08-13,2016-07-22,3,21.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10258,ERNSH,1,2016-07-17,2016-08-14,2016-07-23,1,40.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10259,CENTC,4,2016-07-18,2016-08-15,2016-07-25,3,12.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +10260,OTTIK,4,2016-07-19,2016-08-16,2016-07-29,1,35.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10261,QUEDE,4,2016-07-19,2016-08-16,2016-07-30,2,20,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10262,RATTC,8,2016-07-22,2016-08-19,2016-07-25,3,17.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10263,ERNSH,9,2016-07-23,2016-08-20,2016-07-31,3,56,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10264,FOLKO,6,2016-07-24,2016-08-21,2016-08-23,3,25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10265,BLONP,2,2016-07-25,2016-08-22,2016-08-12,1,22.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10266,WARTH,3,2016-07-26,2016-09-06,2016-07-31,3,13,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10267,FRANK,4,2016-07-29,2016-08-26,2016-08-06,1,43.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10268,GROSR,8,2016-07-30,2016-08-27,2016-08-02,3,13.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +10269,WHITC,5,2016-07-31,2016-08-14,2016-08-09,1,30,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10270,WARTH,1,2016-08-01,2016-08-29,2016-08-02,1,23.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10271,SPLIR,6,2016-08-01,2016-08-29,2016-08-30,2,16,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10272,RATTC,6,2016-08-02,2016-08-30,2016-08-06,2,27.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10273,QUICK,3,2016-08-05,2016-09-02,2016-08-12,3,48,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10274,VINET,6,2016-08-06,2016-09-03,2016-08-16,1,16.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +10275,MAGAA,1,2016-08-07,2016-09-04,2016-08-09,1,14.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10276,TORTU,8,2016-08-08,2016-08-22,2016-08-14,3,16.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10277,MORGK,2,2016-08-09,2016-09-06,2016-08-13,3,18,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +10278,BERGS,8,2016-08-12,2016-09-09,2016-08-16,2,26,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10279,LEHMS,8,2016-08-13,2016-09-10,2016-08-16,2,13.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10280,BERGS,2,2016-08-14,2016-09-11,2016-09-12,1,25.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10281,ROMEY,4,2016-08-14,2016-08-28,2016-08-21,1,12.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +10282,ROMEY,4,2016-08-15,2016-09-12,2016-08-21,1,12,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +10283,LILAS,3,2016-08-16,2016-09-13,2016-08-23,3,29,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10284,LEHMS,4,2016-08-19,2016-09-16,2016-08-27,1,25.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10285,QUICK,1,2016-08-20,2016-09-17,2016-08-26,2,40.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10286,QUICK,8,2016-08-21,2016-09-18,2016-08-30,3,45,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10287,RICAR,8,2016-08-22,2016-09-19,2016-08-28,3,28.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10288,REGGC,4,2016-08-23,2016-09-20,2016-09-03,1,13.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10289,BSBEV,7,2016-08-26,2016-09-23,2016-08-28,3,19.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10290,COMMI,8,2016-08-27,2016-09-24,2016-09-03,1,25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +10291,QUEDE,6,2016-08-27,2016-09-24,2016-09-04,2,21.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10292,TRADH,1,2016-08-28,2016-09-25,2016-09-02,2,15,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +10293,TORTU,1,2016-08-29,2016-09-26,2016-09-11,3,18.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10294,RATTC,4,2016-08-30,2016-09-27,2016-09-05,2,28.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10295,VINET,2,2016-09-02,2016-09-30,2016-09-10,2,11,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +10296,LILAS,6,2016-09-03,2016-10-01,2016-09-11,1,24.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10297,BLONP,5,2016-09-04,2016-10-16,2016-09-10,2,30,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10298,HUNGO,6,2016-09-05,2016-10-03,2016-09-11,2,41.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10299,RICAR,4,2016-09-06,2016-10-04,2016-09-13,2,18.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10300,MAGAA,2,2016-09-09,2016-10-07,2016-09-18,2,22.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10301,WANDK,8,2016-09-09,2016-10-07,2016-09-17,2,17.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10302,SUPRD,4,2016-09-10,2016-10-08,2016-10-09,2,30,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10303,GODOS,7,2016-09-11,2016-10-09,2016-09-18,2,31.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10304,TORTU,1,2016-09-12,2016-10-10,2016-09-17,2,20.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10305,OLDWO,8,2016-09-13,2016-10-11,2016-10-09,3,30,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10306,ROMEY,1,2016-09-16,2016-10-14,2016-09-23,3,16.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +10307,LONEP,2,2016-09-17,2016-10-15,2016-09-25,2,13.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10308,ANATR,7,2016-09-18,2016-10-16,2016-09-24,3,11.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +10309,HUNGO,3,2016-09-19,2016-10-17,2016-10-23,1,28.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10310,THEBI,8,2016-09-20,2016-10-18,2016-09-27,2,13.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +10311,DUMON,1,2016-09-20,2016-10-04,2016-09-26,3,13.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +10312,WANDK,2,2016-09-23,2016-10-21,2016-10-03,2,24.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10313,QUICK,2,2016-09-24,2016-10-22,2016-10-04,2,13,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10314,RATTC,1,2016-09-25,2016-10-23,2016-10-04,2,33.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10315,ISLAT,4,2016-09-26,2016-10-24,2016-10-03,2,21,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10316,RATTC,1,2016-09-27,2016-10-25,2016-10-08,3,30,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10317,LONEP,6,2016-09-30,2016-10-28,2016-10-10,1,15,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10318,ISLAT,8,2016-10-01,2016-10-29,2016-10-04,2,16.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10319,TORTU,7,2016-10-02,2016-10-30,2016-10-11,3,23,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10320,WARTH,5,2016-10-03,2016-10-17,2016-10-18,3,17.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10321,ISLAT,3,2016-10-03,2016-10-31,2016-10-11,2,12.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10322,PERIC,7,2016-10-04,2016-11-01,2016-10-23,3,15,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +10323,KOENE,4,2016-10-07,2016-11-04,2016-10-14,1,13.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10324,SAVEA,9,2016-10-08,2016-11-05,2016-10-10,1,70.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10325,KOENE,1,2016-10-09,2016-10-23,2016-10-14,3,27.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10326,BOLID,4,2016-10-10,2016-11-07,2016-10-14,2,32.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +10327,FOLKO,2,2016-10-11,2016-11-08,2016-10-14,1,45,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10328,FURIB,4,2016-10-14,2016-11-11,2016-10-17,3,24.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10329,SPLIR,4,2016-10-15,2016-11-26,2016-10-23,2,22.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10330,LILAS,3,2016-10-16,2016-11-13,2016-10-28,1,28.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10331,BONAP,9,2016-10-16,2016-11-27,2016-10-21,1,13.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10332,MEREP,3,2016-10-17,2016-11-28,2016-10-21,2,26.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10333,WARTH,5,2016-10-18,2016-11-15,2016-10-25,3,25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10334,VICTE,8,2016-10-21,2016-11-18,2016-10-28,2,14.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10335,HUNGO,7,2016-10-22,2016-11-19,2016-10-24,2,31.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10336,PRINI,7,2016-10-23,2016-11-20,2016-10-25,2,14.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +10337,FRANK,4,2016-10-24,2016-11-21,2016-10-29,3,44.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10338,OLDWO,4,2016-10-25,2016-11-22,2016-10-29,3,18.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10339,MEREP,2,2016-10-28,2016-11-25,2016-11-04,2,37,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10340,BONAP,1,2016-10-29,2016-11-26,2016-11-08,3,28,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10341,SIMOB,7,2016-10-29,2016-11-26,2016-11-05,3,14.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +10342,FRANK,4,2016-10-30,2016-11-13,2016-11-04,2,50,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10343,LEHMS,4,2016-10-31,2016-11-28,2016-11-06,1,27.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10344,WHITC,4,2016-11-01,2016-11-29,2016-11-05,2,36.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10345,QUICK,2,2016-11-04,2016-12-02,2016-11-11,2,49.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10346,RATTC,3,2016-11-05,2016-12-17,2016-11-08,3,24,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10347,FAMIA,4,2016-11-06,2016-12-04,2016-11-08,3,27.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10348,WANDK,4,2016-11-07,2016-12-05,2016-11-15,2,20,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10349,SPLIR,7,2016-11-08,2016-12-06,2016-11-15,1,16,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10350,LAMAI,6,2016-11-11,2016-12-09,2016-12-03,2,18.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10351,ERNSH,1,2016-11-11,2016-12-09,2016-11-20,1,40,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10352,FURIB,3,2016-11-12,2016-11-26,2016-11-18,3,17.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10353,PICCO,7,2016-11-13,2016-12-11,2016-11-25,3,25.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10354,PERIC,8,2016-11-14,2016-12-12,2016-11-20,3,14,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +10355,AROUT,6,2016-11-15,2016-12-13,2016-11-20,1,22.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10356,WANDK,6,2016-11-18,2016-12-16,2016-11-27,2,25.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10357,LILAS,1,2016-11-19,2016-12-17,2016-12-02,3,23.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10358,LAMAI,5,2016-11-20,2016-12-18,2016-11-27,1,20,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10359,SEVES,5,2016-11-21,2016-12-19,2016-11-26,3,61.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10360,BLONP,4,2016-11-22,2016-12-20,2016-12-02,3,44.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10361,QUICK,1,2016-11-22,2016-12-20,2016-12-03,2,37.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10362,BONAP,3,2016-11-25,2016-12-23,2016-11-28,1,33.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10363,DRACD,4,2016-11-26,2016-12-24,2016-12-04,3,21,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +10364,EASTC,1,2016-11-26,2017-01-07,2016-12-04,1,18.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +10365,ANTON,3,2016-11-27,2016-12-25,2016-12-02,2,16,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10366,GALED,8,2016-11-28,2017-01-09,2016-12-30,2,12.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +10367,VAFFE,7,2016-11-28,2016-12-26,2016-12-02,3,29,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10368,ERNSH,2,2016-11-29,2016-12-27,2016-12-02,2,29.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10369,SPLIR,8,2016-12-02,2016-12-30,2016-12-09,2,19.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10370,CHOPS,6,2016-12-03,2016-12-31,2016-12-27,2,26.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +10371,LAMAI,1,2016-12-03,2016-12-31,2016-12-24,1,11.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10372,QUEEN,5,2016-12-04,2017-01-01,2016-12-09,2,51,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10373,HUNGO,4,2016-12-05,2017-01-02,2016-12-11,3,42.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10374,WOLZA,1,2016-12-05,2017-01-02,2016-12-09,3,21.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +10375,HUNGC,3,2016-12-06,2017-01-03,2016-12-09,2,16.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +10376,MEREP,1,2016-12-09,2017-01-06,2016-12-13,2,20.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10377,SEVES,1,2016-12-09,2017-01-06,2016-12-13,3,20,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10378,FOLKO,5,2016-12-10,2017-01-07,2016-12-19,3,11.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10379,QUEDE,2,2016-12-11,2017-01-08,2016-12-13,1,21,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10380,HUNGO,8,2016-12-12,2017-01-09,2017-01-16,3,28.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10381,LILAS,3,2016-12-12,2017-01-09,2016-12-13,3,13.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10382,ERNSH,4,2016-12-13,2017-01-10,2016-12-16,1,51.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10383,AROUT,8,2016-12-16,2017-01-13,2016-12-18,3,23.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10384,BERGS,3,2016-12-16,2017-01-13,2016-12-20,3,20.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10385,SPLIR,1,2016-12-17,2017-01-14,2016-12-23,2,19.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10386,FAMIA,9,2016-12-18,2017-01-01,2016-12-25,3,16.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10387,SANTG,1,2016-12-18,2017-01-15,2016-12-20,2,22,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +10388,SEVES,2,2016-12-19,2017-01-16,2016-12-20,1,28.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10389,BOTTM,4,2016-12-20,2017-01-17,2016-12-24,2,30.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10390,ERNSH,6,2016-12-23,2017-01-20,2016-12-26,1,52.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10391,DRACD,3,2016-12-23,2017-01-20,2016-12-31,3,14.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +10392,PICCO,2,2016-12-24,2017-01-21,2017-01-01,3,22.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10393,SAVEA,1,2016-12-25,2017-01-22,2017-01-03,3,54,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10394,HUNGC,1,2016-12-25,2017-01-22,2017-01-03,3,15,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +10395,HILAA,6,2016-12-26,2017-01-23,2017-01-03,1,36.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10396,FRANK,1,2016-12-27,2017-01-10,2017-01-06,3,40.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10397,PRINI,5,2016-12-27,2017-01-24,2017-01-02,1,17,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +10398,SAVEA,2,2016-12-30,2017-01-27,2017-01-09,3,47.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10399,VAFFE,8,2016-12-31,2017-01-14,2017-01-08,3,44.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10400,EASTC,1,2017-01-01,2017-01-29,2017-01-16,3,31.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +10401,RATTC,1,2017-01-01,2017-01-29,2017-01-10,1,52,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10402,ERNSH,8,2017-01-02,2017-02-13,2017-01-10,2,41.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10403,ERNSH,4,2017-01-03,2017-01-31,2017-01-09,3,32.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10404,MAGAA,2,2017-01-03,2017-01-31,2017-01-08,1,35,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10405,LINOD,1,2017-01-06,2017-02-03,2017-01-22,1,22.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10406,QUEEN,7,2017-01-07,2017-02-18,2017-01-13,1,32.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10407,OTTIK,2,2017-01-07,2017-02-04,2017-01-30,2,25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10408,FOLIG,8,2017-01-08,2017-02-05,2017-01-14,1,22.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +10409,OCEAN,3,2017-01-09,2017-02-06,2017-01-14,1,16,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +10410,BOTTM,3,2017-01-10,2017-02-07,2017-01-15,3,26.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10411,BOTTM,9,2017-01-10,2017-02-07,2017-01-21,3,28.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10412,WARTH,8,2017-01-13,2017-02-10,2017-01-15,2,15,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10413,LAMAI,3,2017-01-14,2017-02-11,2017-01-16,2,29.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10414,FAMIA,2,2017-01-14,2017-02-11,2017-01-17,3,27,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10415,HUNGC,3,2017-01-15,2017-02-12,2017-01-24,1,15.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +10416,WARTH,8,2017-01-16,2017-02-13,2017-01-27,3,22.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10417,SIMOB,4,2017-01-16,2017-02-13,2017-01-28,3,40.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +10418,QUICK,4,2017-01-17,2017-02-14,2017-01-24,1,46.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10419,RICSU,4,2017-01-20,2017-02-17,2017-01-30,2,30,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10420,WELLI,3,2017-01-21,2017-02-18,2017-01-27,1,22.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10421,QUEDE,8,2017-01-21,2017-03-04,2017-01-27,1,24.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10422,FRANS,2,2017-01-22,2017-02-19,2017-01-31,1,10.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +10423,GOURL,6,2017-01-23,2017-02-06,2017-02-24,3,18.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10424,MEREP,7,2017-01-23,2017-02-20,2017-01-27,2,44.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10425,LAMAI,6,2017-01-24,2017-02-21,2017-02-14,2,17.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10426,GALED,4,2017-01-27,2017-02-24,2017-02-06,1,13,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +10427,PICCO,4,2017-01-27,2017-02-24,2017-03-03,2,18.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10428,REGGC,7,2017-01-28,2017-02-25,2017-02-04,1,15,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10429,HUNGO,3,2017-01-29,2017-03-12,2017-02-07,2,28.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10430,ERNSH,4,2017-01-30,2017-02-13,2017-02-03,1,58.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10431,BOTTM,4,2017-01-30,2017-02-13,2017-02-07,2,42.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10432,SPLIR,3,2017-01-31,2017-02-14,2017-02-07,2,22.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10433,PRINI,3,2017-02-03,2017-03-03,2017-03-04,3,17,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +10434,FOLKO,3,2017-02-03,2017-03-03,2017-02-13,2,16,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10435,CONSH,8,2017-02-04,2017-03-18,2017-02-07,2,18,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +10436,BLONP,3,2017-02-05,2017-03-05,2017-02-11,2,34.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10437,WARTH,8,2017-02-05,2017-03-05,2017-02-12,1,13.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10438,TOMSP,3,2017-02-06,2017-03-06,2017-02-14,2,22.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +10439,MEREP,6,2017-02-07,2017-03-07,2017-02-10,3,26.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10440,SAVEA,4,2017-02-10,2017-03-10,2017-02-28,2,62,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10441,OLDWO,3,2017-02-10,2017-03-24,2017-03-14,2,22.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10442,ERNSH,3,2017-02-11,2017-03-11,2017-02-18,2,52.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10443,REGGC,8,2017-02-12,2017-03-12,2017-02-14,1,14.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10444,BERGS,3,2017-02-12,2017-03-12,2017-02-21,3,25.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10445,BERGS,3,2017-02-13,2017-03-13,2017-02-20,1,15.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10446,TOMSP,6,2017-02-14,2017-03-14,2017-02-19,1,22.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +10447,RICAR,4,2017-02-14,2017-03-14,2017-03-07,2,29.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10448,RANCH,4,2017-02-17,2017-03-17,2017-02-24,2,16.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +10449,BLONP,3,2017-02-18,2017-03-18,2017-02-27,2,27.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10450,VICTE,8,2017-02-19,2017-03-19,2017-03-11,2,16.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10451,QUICK,4,2017-02-19,2017-03-05,2017-03-12,3,69.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10452,SAVEA,8,2017-02-20,2017-03-20,2017-02-26,1,38.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10453,AROUT,1,2017-02-21,2017-03-21,2017-02-26,2,20,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10454,LAMAI,4,2017-02-21,2017-03-21,2017-02-25,3,22.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10455,WARTH,8,2017-02-24,2017-04-07,2017-03-03,2,41.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10456,KOENE,8,2017-02-25,2017-04-08,2017-02-28,2,25.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10457,KOENE,2,2017-02-25,2017-03-25,2017-03-03,1,19,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10458,SUPRD,7,2017-02-26,2017-03-26,2017-03-04,3,46.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10459,VICTE,4,2017-02-27,2017-03-27,2017-02-28,2,29,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10460,FOLKO,8,2017-02-28,2017-03-28,2017-03-03,1,16.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10461,LILAS,1,2017-02-28,2017-03-28,2017-03-05,3,42,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10462,CONSH,2,2017-03-03,2017-03-31,2017-03-18,1,15.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +10463,SUPRD,5,2017-03-04,2017-04-01,2017-03-06,3,27.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10464,FURIB,4,2017-03-04,2017-04-01,2017-03-14,2,27.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10465,VAFFE,1,2017-03-05,2017-04-02,2017-03-14,3,39.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10466,COMMI,4,2017-03-06,2017-04-03,2017-03-13,1,13.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +10467,MAGAA,8,2017-03-06,2017-04-03,2017-03-11,2,20,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10468,KOENE,3,2017-03-07,2017-04-04,2017-03-12,3,15.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10469,WHITC,1,2017-03-10,2017-04-07,2017-03-14,1,29.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10470,BONAP,4,2017-03-11,2017-04-08,2017-03-14,2,23.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10471,BSBEV,2,2017-03-11,2017-04-08,2017-03-18,3,22.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10472,SEVES,8,2017-03-12,2017-04-09,2017-03-19,1,34.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10473,ISLAT,1,2017-03-13,2017-03-27,2017-03-21,3,16,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10474,PERIC,5,2017-03-13,2017-04-10,2017-03-21,2,25.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +10475,SUPRD,9,2017-03-14,2017-04-11,2017-04-04,1,44.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10476,HILAA,8,2017-03-17,2017-04-14,2017-03-24,3,13.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10477,PRINI,5,2017-03-17,2017-04-14,2017-03-25,2,24,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +10478,VICTE,2,2017-03-18,2017-04-01,2017-03-26,3,15,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10479,RATTC,3,2017-03-19,2017-04-16,2017-03-21,3,47,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10480,FOLIG,6,2017-03-20,2017-04-17,2017-03-24,2,20.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +10481,RICAR,8,2017-03-20,2017-04-17,2017-03-25,2,26,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10482,LAZYK,1,2017-03-21,2017-04-18,2017-04-10,3,12.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +10483,WHITC,7,2017-03-24,2017-04-21,2017-04-25,2,26.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10484,BSBEV,3,2017-03-24,2017-04-21,2017-04-01,3,16.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10485,LINOD,4,2017-03-25,2017-04-08,2017-03-31,2,42.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10486,HILAA,1,2017-03-26,2017-04-23,2017-04-02,2,21.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10487,QUEEN,2,2017-03-26,2017-04-23,2017-03-28,2,24.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10488,FRANK,8,2017-03-27,2017-04-24,2017-04-02,2,22.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10489,PICCO,6,2017-03-28,2017-04-25,2017-04-09,2,18.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10490,HILAA,7,2017-03-31,2017-04-28,2017-04-03,2,41.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10491,FURIB,8,2017-03-31,2017-04-28,2017-04-08,3,15.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10492,BOTTM,3,2017-04-01,2017-04-29,2017-04-11,1,30,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10493,LAMAI,4,2017-04-02,2017-04-30,2017-04-10,3,18.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10494,COMMI,4,2017-04-02,2017-04-30,2017-04-09,2,17.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +10495,LAUGB,3,2017-04-03,2017-05-01,2017-04-11,3,18.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +10496,TRADH,7,2017-04-04,2017-05-02,2017-04-07,2,15,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +10497,LEHMS,7,2017-04-04,2017-05-02,2017-04-07,1,26,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10498,HILAA,8,2017-04-07,2017-05-05,2017-04-11,2,22.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10499,LILAS,4,2017-04-08,2017-05-06,2017-04-16,2,21.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10500,LAMAI,6,2017-04-09,2017-05-07,2017-04-17,1,15,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10501,BLAUS,9,2017-04-09,2017-05-07,2017-04-16,3,15,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +10502,PERIC,2,2017-04-10,2017-05-08,2017-04-29,1,24.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +10503,HUNGO,6,2017-04-11,2017-05-09,2017-04-16,2,32.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10504,WHITC,4,2017-04-11,2017-05-09,2017-04-18,3,24.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10505,MEREP,3,2017-04-14,2017-05-12,2017-04-21,3,10.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10506,KOENE,9,2017-04-15,2017-05-13,2017-05-02,2,18,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10507,ANTON,7,2017-04-15,2017-05-13,2017-04-22,1,17.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10508,OTTIK,1,2017-04-16,2017-05-14,2017-05-13,2,15,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10509,BLAUS,4,2017-04-17,2017-05-15,2017-04-29,1,10.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +10510,SAVEA,6,2017-04-18,2017-05-16,2017-04-28,3,28,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10511,BONAP,4,2017-04-18,2017-05-16,2017-04-21,3,37.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10512,FAMIA,7,2017-04-21,2017-05-19,2017-04-24,2,19.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10513,WANDK,7,2017-04-22,2017-06-03,2017-04-28,1,36.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10514,ERNSH,3,2017-04-22,2017-05-20,2017-05-16,2,68.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10515,QUICK,2,2017-04-23,2017-05-07,2017-05-23,1,81.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10516,HUNGO,2,2017-04-24,2017-05-22,2017-05-01,3,41.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10517,NORTS,3,2017-04-24,2017-05-22,2017-04-29,3,14,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +10518,TORTU,4,2017-04-25,2017-05-09,2017-05-05,2,17.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10519,CHOPS,6,2017-04-28,2017-05-26,2017-05-01,3,26.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +10520,SANTG,7,2017-04-29,2017-05-27,2017-05-01,1,13.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +10521,CACTU,8,2017-04-29,2017-05-27,2017-05-02,2,14.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +10522,LEHMS,4,2017-04-30,2017-05-28,2017-05-06,1,37.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10523,SEVES,7,2017-05-01,2017-05-29,2017-05-30,2,26,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10524,BERGS,1,2017-05-01,2017-05-29,2017-05-07,2,31.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10525,BONAP,1,2017-05-02,2017-05-30,2017-05-23,2,21.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10526,WARTH,4,2017-05-05,2017-06-02,2017-05-15,2,22,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10527,QUICK,7,2017-05-05,2017-06-02,2017-05-07,1,30,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10528,GREAL,6,2017-05-06,2017-05-20,2017-05-09,2,15,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10529,MAISD,5,2017-05-07,2017-06-04,2017-05-09,2,21,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +10530,PICCO,3,2017-05-08,2017-06-05,2017-05-12,2,43.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10531,OCEAN,7,2017-05-08,2017-06-05,2017-05-19,1,10.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +10532,EASTC,7,2017-05-09,2017-06-06,2017-05-12,3,19.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +10533,FOLKO,8,2017-05-12,2017-06-09,2017-05-22,1,34.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10534,LEHMS,8,2017-05-12,2017-06-09,2017-05-14,2,17.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10535,ANTON,4,2017-05-13,2017-06-10,2017-05-21,1,30,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10536,LEHMS,3,2017-05-14,2017-06-11,2017-06-06,2,35,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10537,RICSU,1,2017-05-14,2017-05-28,2017-05-19,1,31.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10538,BSBEV,9,2017-05-15,2017-06-12,2017-05-16,3,12,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10539,BSBEV,6,2017-05-16,2017-06-13,2017-05-23,3,21,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10540,QUICK,3,2017-05-19,2017-06-16,2017-06-13,3,51.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10541,HANAR,2,2017-05-19,2017-06-16,2017-05-29,1,31,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10542,KOENE,1,2017-05-20,2017-06-17,2017-05-26,3,19.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10543,LILAS,8,2017-05-21,2017-06-18,2017-05-23,2,35,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10544,LONEP,4,2017-05-21,2017-06-18,2017-05-30,1,13.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10545,LAZYK,8,2017-05-22,2017-06-19,2017-06-26,2,12.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +10546,VICTE,1,2017-05-23,2017-06-20,2017-05-27,3,30,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10547,SEVES,3,2017-05-23,2017-06-20,2017-06-02,2,31,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10548,TOMSP,3,2017-05-26,2017-06-23,2017-06-02,2,16,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +10549,QUICK,5,2017-05-27,2017-06-10,2017-05-30,1,60.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10550,GODOS,7,2017-05-28,2017-06-25,2017-06-06,3,18.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10551,FURIB,4,2017-05-28,2017-07-09,2017-06-06,3,35,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10552,HILAA,2,2017-05-29,2017-06-26,2017-06-05,1,22,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10553,WARTH,2,2017-05-30,2017-06-27,2017-06-03,2,32.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10554,OTTIK,4,2017-05-30,2017-06-27,2017-06-05,3,30,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10555,SAVEA,6,2017-06-02,2017-06-30,2017-06-04,3,45.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10556,SIMOB,2,2017-06-03,2017-07-15,2017-06-13,1,16,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +10557,LEHMS,9,2017-06-03,2017-06-17,2017-06-06,2,22.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10558,AROUT,1,2017-06-04,2017-07-02,2017-06-10,2,34,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10559,BLONP,6,2017-06-05,2017-07-03,2017-06-13,1,17.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10560,FRANK,8,2017-06-06,2017-07-04,2017-06-09,1,18.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10561,FOLKO,2,2017-06-06,2017-07-04,2017-06-09,2,25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10562,REGGC,1,2017-06-09,2017-07-07,2017-06-12,1,17.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10563,RICAR,2,2017-06-10,2017-07-22,2017-06-24,2,33.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10564,RATTC,4,2017-06-10,2017-07-08,2017-06-16,3,21.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10565,MEREP,8,2017-06-11,2017-07-09,2017-06-18,2,20.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10566,BLONP,9,2017-06-12,2017-07-10,2017-06-18,1,25.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10567,HUNGO,1,2017-06-12,2017-07-10,2017-06-17,1,35.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10568,GALED,3,2017-06-13,2017-07-11,2017-07-09,3,11.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +10569,RATTC,5,2017-06-16,2017-07-14,2017-07-11,1,26.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10570,MEREP,3,2017-06-17,2017-07-15,2017-06-19,3,28.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10571,ERNSH,8,2017-06-17,2017-07-29,2017-07-04,3,19.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10572,BERGS,3,2017-06-18,2017-07-16,2017-06-25,2,31.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10573,ANTON,7,2017-06-19,2017-07-17,2017-06-20,3,30.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10574,TRAIH,4,2017-06-19,2017-07-17,2017-06-30,2,18,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +10575,MORGK,5,2017-06-20,2017-07-04,2017-06-30,1,24.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +10576,TORTU,3,2017-06-23,2017-07-07,2017-06-30,3,22.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10577,TRAIH,9,2017-06-23,2017-08-04,2017-06-30,2,22,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +10578,BSBEV,4,2017-06-24,2017-07-22,2017-07-25,3,16.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10579,LETSS,1,2017-06-25,2017-07-23,2017-07-04,2,17.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +10580,OTTIK,4,2017-06-26,2017-07-24,2017-07-01,3,23.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10581,FAMIA,3,2017-06-26,2017-07-24,2017-07-02,1,22.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10582,BLAUS,3,2017-06-27,2017-07-25,2017-07-14,2,14.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +10583,WARTH,2,2017-06-30,2017-07-28,2017-07-04,2,21,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10584,BLONP,4,2017-06-30,2017-07-28,2017-07-04,1,22.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10585,WELLI,7,2017-07-01,2017-07-29,2017-07-10,1,13.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10586,REGGC,9,2017-07-02,2017-07-30,2017-07-09,1,11,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10587,QUEDE,1,2017-07-02,2017-07-30,2017-07-09,1,21.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10588,QUICK,2,2017-07-03,2017-07-31,2017-07-10,3,45,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10589,GREAL,8,2017-07-04,2017-08-01,2017-07-14,2,11,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10590,MEREP,4,2017-07-07,2017-08-04,2017-07-14,3,30,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10591,VAFFE,1,2017-07-07,2017-07-21,2017-07-16,1,28.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10592,LEHMS,3,2017-07-08,2017-08-05,2017-07-16,1,17.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10593,LEHMS,7,2017-07-09,2017-08-06,2017-08-13,2,21.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10594,OLDWO,3,2017-07-09,2017-08-06,2017-07-16,2,23.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10595,ERNSH,2,2017-07-10,2017-08-07,2017-07-14,1,63.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10596,WHITC,8,2017-07-11,2017-08-08,2017-08-12,1,24.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10597,PICCO,7,2017-07-11,2017-08-08,2017-07-18,3,26.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10598,RATTC,1,2017-07-14,2017-08-11,2017-07-18,3,24.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10599,BSBEV,6,2017-07-15,2017-08-26,2017-07-21,3,12.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10600,HUNGC,4,2017-07-16,2017-08-13,2017-07-21,1,18.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +10601,HILAA,7,2017-07-16,2017-08-27,2017-07-22,1,33.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10602,VAFFE,8,2017-07-17,2017-08-14,2017-07-22,2,11.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10603,SAVEA,8,2017-07-18,2017-08-15,2017-08-08,2,28.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10604,FURIB,1,2017-07-18,2017-08-15,2017-07-29,1,14,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10605,MEREP,1,2017-07-21,2017-08-18,2017-07-29,2,43.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10606,TRADH,4,2017-07-22,2017-08-19,2017-07-31,3,22.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +10607,SAVEA,5,2017-07-22,2017-08-19,2017-07-25,1,63.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10608,TOMSP,4,2017-07-23,2017-08-20,2017-08-01,2,17,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +10609,DUMON,7,2017-07-24,2017-08-21,2017-07-30,2,14.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +10610,LAMAI,8,2017-07-25,2017-08-22,2017-08-06,1,15.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10611,WOLZA,6,2017-07-25,2017-08-22,2017-08-01,2,17.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +10612,SAVEA,1,2017-07-28,2017-08-25,2017-08-01,2,75.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10613,HILAA,4,2017-07-29,2017-08-26,2017-08-01,2,22,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10614,BLAUS,8,2017-07-29,2017-08-26,2017-08-01,3,16.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +10615,WILMK,2,2017-07-30,2017-08-27,2017-08-06,3,11.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +10616,GREAL,1,2017-07-31,2017-08-28,2017-08-05,2,24.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10617,GREAL,4,2017-07-31,2017-08-28,2017-08-04,2,17.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10618,MEREP,1,2017-08-01,2017-09-12,2017-08-08,1,36.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10619,MEREP,3,2017-08-04,2017-09-01,2017-08-07,3,30.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10620,LAUGB,2,2017-08-05,2017-09-02,2017-08-14,3,12.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +10621,ISLAT,4,2017-08-05,2017-09-02,2017-08-11,2,22.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10622,RICAR,4,2017-08-06,2017-09-03,2017-08-11,3,19.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10623,FRANK,8,2017-08-07,2017-09-04,2017-08-12,2,33.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10624,THECR,4,2017-08-07,2017-09-04,2017-08-19,2,16.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +10625,ANATR,3,2017-08-08,2017-09-05,2017-08-14,1,14.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +10626,BERGS,1,2017-08-11,2017-09-08,2017-08-20,2,23,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10627,SAVEA,8,2017-08-11,2017-09-22,2017-08-21,3,22.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10628,BLONP,4,2017-08-12,2017-09-09,2017-08-20,3,16.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10629,GODOS,4,2017-08-12,2017-09-09,2017-08-20,3,17.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10630,KOENE,1,2017-08-13,2017-09-10,2017-08-19,2,21.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10631,LAMAI,8,2017-08-14,2017-09-11,2017-08-15,1,12,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10632,WANDK,8,2017-08-14,2017-09-11,2017-08-19,1,22.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10633,ERNSH,7,2017-08-15,2017-09-12,2017-08-18,3,51,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10634,FOLIG,4,2017-08-15,2017-09-12,2017-08-21,3,35.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +10635,MAGAA,8,2017-08-18,2017-09-15,2017-08-21,3,26.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10636,WARTH,4,2017-08-19,2017-09-16,2017-08-26,1,17.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10637,QUEEN,6,2017-08-19,2017-09-16,2017-08-26,1,33.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10638,LINOD,3,2017-08-20,2017-09-17,2017-09-01,1,35.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10639,SANTG,7,2017-08-20,2017-09-17,2017-08-27,3,12,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +10640,WANDK,4,2017-08-21,2017-09-18,2017-08-28,1,18.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10641,HILAA,4,2017-08-22,2017-09-19,2017-08-26,2,37.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10642,SIMOB,7,2017-08-22,2017-09-19,2017-09-05,3,22.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +10643,ALFKI,6,2017-08-25,2017-09-22,2017-09-02,1,19.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +10644,WELLI,3,2017-08-25,2017-09-22,2017-09-01,2,21.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10645,HANAR,4,2017-08-26,2017-09-23,2017-09-02,1,18.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10646,HUNGO,9,2017-08-27,2017-10-08,2017-09-03,3,34.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10647,QUEDE,4,2017-08-27,2017-09-10,2017-09-03,2,22.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10648,RICAR,5,2017-08-28,2017-10-09,2017-09-09,2,17.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10649,MAISD,5,2017-08-28,2017-09-25,2017-08-29,3,18.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +10650,FAMIA,5,2017-08-29,2017-09-26,2017-09-03,3,31.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10651,WANDK,8,2017-09-01,2017-09-29,2017-09-11,2,18,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10652,GOURL,4,2017-09-01,2017-09-29,2017-09-08,2,15.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10653,FRANK,1,2017-09-02,2017-09-30,2017-09-19,1,22.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10654,BERGS,5,2017-09-02,2017-09-30,2017-09-11,1,19.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10655,REGGC,1,2017-09-03,2017-10-01,2017-09-11,2,15,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10656,GREAL,6,2017-09-04,2017-10-02,2017-09-10,1,19.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10657,SAVEA,2,2017-09-04,2017-10-02,2017-09-15,2,61,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10658,QUICK,4,2017-09-05,2017-10-03,2017-09-08,1,73.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10659,QUEEN,7,2017-09-05,2017-10-03,2017-09-10,2,31,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10660,HUNGC,8,2017-09-08,2017-10-06,2017-10-15,1,15.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +10661,HUNGO,7,2017-09-09,2017-10-07,2017-09-15,3,23,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10662,LONEP,3,2017-09-09,2017-10-07,2017-09-18,2,12.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10663,BONAP,2,2017-09-10,2017-09-24,2017-10-03,2,30,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10664,FURIB,1,2017-09-10,2017-10-08,2017-09-19,3,22.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10665,LONEP,1,2017-09-11,2017-10-09,2017-09-17,2,17.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10666,RICSU,7,2017-09-12,2017-10-10,2017-09-22,2,21.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10667,ERNSH,7,2017-09-12,2017-10-10,2017-09-19,1,24.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10668,WANDK,1,2017-09-15,2017-10-13,2017-09-23,2,16.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +10669,SIMOB,2,2017-09-15,2017-10-13,2017-09-22,1,17.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +10670,FRANK,4,2017-09-16,2017-10-14,2017-09-18,1,58,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10671,FRANR,1,2017-09-17,2017-10-15,2017-09-24,1,18,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +10672,BERGS,9,2017-09-17,2017-10-01,2017-09-26,2,16.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10673,WILMK,2,2017-09-18,2017-10-16,2017-09-19,1,13.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +10674,ISLAT,4,2017-09-18,2017-10-16,2017-09-30,2,11.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10675,FRANK,5,2017-09-19,2017-10-17,2017-09-23,2,27.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10676,TORTU,2,2017-09-22,2017-10-20,2017-09-29,2,17.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10677,ANTON,1,2017-09-22,2017-10-20,2017-09-26,3,19.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10678,SAVEA,7,2017-09-23,2017-10-21,2017-10-16,3,80,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10679,BLONP,8,2017-09-23,2017-10-21,2017-09-30,3,13,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10680,OLDWO,1,2017-09-24,2017-10-22,2017-09-26,1,37.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10681,GREAL,3,2017-09-25,2017-10-23,2017-09-30,3,27.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10682,ANTON,3,2017-09-25,2017-10-23,2017-10-01,2,26,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10683,DUMON,2,2017-09-26,2017-10-24,2017-10-01,1,12.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +10684,OTTIK,3,2017-09-26,2017-10-24,2017-09-30,1,32.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10685,GOURL,4,2017-09-29,2017-10-13,2017-10-03,2,19.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10686,PICCO,2,2017-09-30,2017-10-28,2017-10-08,1,21.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10687,HUNGO,9,2017-09-30,2017-10-28,2017-10-30,2,26.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10688,VAFFE,4,2017-10-01,2017-10-15,2017-10-07,2,33,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10689,BERGS,1,2017-10-01,2017-10-29,2017-10-07,2,18.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10690,HANAR,1,2017-10-02,2017-10-30,2017-10-03,1,22.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10691,QUICK,2,2017-10-03,2017-11-14,2017-10-22,2,55.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10692,ALFKI,4,2017-10-03,2017-10-31,2017-10-13,2,15,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +10693,WHITC,3,2017-10-06,2017-10-20,2017-10-10,3,37.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10694,QUICK,8,2017-10-06,2017-11-03,2017-10-09,3,51.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10695,WILMK,7,2017-10-07,2017-11-18,2017-10-14,1,18.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +10696,WHITC,8,2017-10-08,2017-11-19,2017-10-14,3,19.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10697,LINOD,3,2017-10-08,2017-11-05,2017-10-14,1,29,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10698,ERNSH,4,2017-10-09,2017-11-06,2017-10-17,1,37,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10699,MORGK,3,2017-10-09,2017-11-06,2017-10-13,3,13,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +10700,SAVEA,3,2017-10-10,2017-11-07,2017-10-16,1,39.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10701,HUNGO,6,2017-10-13,2017-10-27,2017-10-15,3,34.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10702,ALFKI,4,2017-10-13,2017-11-24,2017-10-21,1,15.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +10703,FOLKO,6,2017-10-14,2017-11-11,2017-10-20,2,28.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10704,QUEEN,6,2017-10-14,2017-11-11,2017-11-07,1,26.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10705,HILAA,9,2017-10-15,2017-11-12,2017-11-18,2,16,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10706,OLDWO,8,2017-10-16,2017-11-13,2017-10-21,3,23,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10707,AROUT,4,2017-10-16,2017-10-30,2017-10-23,3,32.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10708,THEBI,6,2017-10-17,2017-11-28,2017-11-05,2,12.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +10709,GOURL,1,2017-10-17,2017-11-14,2017-11-20,3,29.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10710,FRANS,1,2017-10-20,2017-11-17,2017-10-23,1,12.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +10711,SAVEA,5,2017-10-21,2017-12-02,2017-10-29,2,53.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10712,HUNGO,3,2017-10-21,2017-11-18,2017-10-31,1,18.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10713,SAVEA,1,2017-10-22,2017-11-19,2017-10-24,1,55.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10714,SAVEA,5,2017-10-22,2017-11-19,2017-10-27,3,44.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10715,BONAP,3,2017-10-23,2017-11-06,2017-10-29,1,22.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10716,RANCH,4,2017-10-24,2017-11-21,2017-10-27,2,15.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +10717,FRANK,1,2017-10-24,2017-11-21,2017-10-29,2,28,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10718,KOENE,1,2017-10-27,2017-11-24,2017-10-29,3,39,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10719,LETSS,8,2017-10-27,2017-11-24,2017-11-05,2,23.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +10720,QUEDE,8,2017-10-28,2017-11-11,2017-11-05,2,17.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10721,QUICK,5,2017-10-29,2017-11-26,2017-10-31,3,22.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10722,SAVEA,8,2017-10-29,2017-12-10,2017-11-04,1,45,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10723,WHITC,3,2017-10-30,2017-11-27,2017-11-25,1,13.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10724,MEREP,8,2017-10-30,2017-12-11,2017-11-05,2,15.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +10725,FAMIA,4,2017-10-31,2017-11-28,2017-11-05,3,15.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +10726,EASTC,4,2017-11-03,2017-11-17,2017-12-05,1,17.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +10727,REGGC,2,2017-11-03,2017-12-01,2017-12-05,1,20,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10728,QUEEN,4,2017-11-04,2017-12-02,2017-11-11,2,22,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10729,LINOD,8,2017-11-04,2017-12-16,2017-11-14,3,40,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10730,BONAP,5,2017-11-05,2017-12-03,2017-11-14,1,17,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10731,CHOPS,7,2017-11-06,2017-12-04,2017-11-14,1,27.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +10732,BONAP,3,2017-11-06,2017-12-04,2017-11-07,1,15,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10733,BERGS,1,2017-11-07,2017-12-05,2017-11-10,3,25.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10734,GOURL,2,2017-11-07,2017-12-05,2017-11-12,3,26.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10735,LETSS,6,2017-11-10,2017-12-08,2017-11-21,2,15.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +10736,HUNGO,9,2017-11-11,2017-12-09,2017-11-21,2,25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10737,VINET,2,2017-11-11,2017-12-09,2017-11-18,2,14,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +10738,SPECD,2,2017-11-12,2017-12-10,2017-11-18,1,10.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +10739,VINET,3,2017-11-12,2017-12-10,2017-11-17,3,16,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +10740,WHITC,4,2017-11-13,2017-12-11,2017-11-25,2,33.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10741,AROUT,4,2017-11-14,2017-11-28,2017-11-18,3,13.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10742,BOTTM,3,2017-11-14,2017-12-12,2017-11-18,3,36.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10743,AROUT,1,2017-11-17,2017-12-15,2017-11-21,2,17,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10744,VAFFE,6,2017-11-17,2017-12-15,2017-11-24,1,22.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10745,QUICK,9,2017-11-18,2017-12-16,2017-11-27,1,33,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10746,CHOPS,1,2017-11-19,2017-12-17,2017-11-21,3,30.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +10747,PICCO,6,2017-11-19,2017-12-17,2017-11-26,1,30.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10748,SAVEA,3,2017-11-20,2017-12-18,2017-11-28,1,38,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10749,ISLAT,4,2017-11-20,2017-12-18,2017-12-19,2,17.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10750,WARTH,9,2017-11-21,2017-12-19,2017-11-24,1,27.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10751,RICSU,3,2017-11-24,2017-12-22,2017-12-03,3,29.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10752,NORTS,2,2017-11-24,2017-12-22,2017-11-28,3,12.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +10753,FRANS,3,2017-11-25,2017-12-23,2017-11-27,1,12.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +10754,MAGAA,6,2017-11-25,2017-12-23,2017-11-27,3,10.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10755,BONAP,4,2017-11-26,2017-12-24,2017-11-28,2,34.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10756,SPLIR,8,2017-11-27,2017-12-25,2017-12-02,2,26.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10757,SAVEA,6,2017-11-27,2017-12-25,2017-12-15,1,32.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10758,RICSU,3,2017-11-28,2017-12-26,2017-12-04,3,40,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10759,ANATR,3,2017-11-28,2017-12-26,2017-12-12,3,12.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +10760,MAISD,4,2017-12-01,2017-12-29,2017-12-10,1,30.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +10761,RATTC,5,2017-12-02,2017-12-30,2017-12-08,2,23.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10762,FOLKO,3,2017-12-02,2017-12-30,2017-12-09,1,43.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10763,FOLIG,3,2017-12-03,2017-12-31,2017-12-08,3,26.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +10764,ERNSH,6,2017-12-03,2017-12-31,2017-12-08,3,47.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10765,QUICK,3,2017-12-04,2018-01-01,2017-12-09,3,30,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10766,OTTIK,4,2017-12-05,2018-01-02,2017-12-09,1,38.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10767,SUPRD,4,2017-12-05,2018-01-02,2017-12-15,3,10.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10768,AROUT,3,2017-12-08,2018-01-05,2017-12-15,2,30.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10769,VAFFE,3,2017-12-08,2018-01-05,2017-12-12,1,30,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10770,HANAR,8,2017-12-09,2018-01-06,2017-12-17,3,13.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10771,ERNSH,9,2017-12-10,2018-01-07,2018-01-02,2,14,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10772,LEHMS,3,2017-12-10,2018-01-07,2017-12-19,2,20.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10773,ERNSH,1,2017-12-11,2018-01-08,2017-12-16,3,37.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10774,FOLKO,4,2017-12-11,2017-12-25,2017-12-12,1,23,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10775,THECR,7,2017-12-12,2018-01-09,2017-12-26,1,12.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +10776,ERNSH,1,2017-12-15,2018-01-12,2017-12-18,3,53.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10777,GOURL,7,2017-12-15,2017-12-29,2018-01-21,2,15,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10778,BERGS,3,2017-12-16,2018-01-13,2017-12-24,1,12.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10779,MORGK,3,2017-12-16,2018-01-13,2018-01-14,2,20,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +10780,LILAS,2,2017-12-16,2017-12-30,2017-12-25,1,22.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10781,WARTH,2,2017-12-17,2018-01-14,2017-12-19,3,24.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +10782,CACTU,9,2017-12-17,2018-01-14,2017-12-22,3,10.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +10783,HANAR,4,2017-12-18,2018-01-15,2017-12-19,2,13.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10784,MAGAA,4,2017-12-18,2018-01-15,2017-12-22,3,25.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10785,GROSR,1,2017-12-18,2018-01-15,2017-12-24,3,15,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +10786,QUEEN,8,2017-12-19,2018-01-16,2017-12-23,1,31.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10787,LAMAI,2,2017-12-19,2018-01-02,2017-12-26,1,18.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10788,QUICK,1,2017-12-22,2018-01-19,2018-01-19,2,32.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10789,FOLIG,1,2017-12-22,2018-01-19,2017-12-31,2,33.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +10790,GOURL,6,2017-12-22,2018-01-19,2017-12-26,1,15.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10791,FRANK,6,2017-12-23,2018-01-20,2018-01-01,2,18.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10792,WOLZA,1,2017-12-23,2018-01-20,2017-12-31,3,17,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +10793,AROUT,3,2017-12-24,2018-01-21,2018-01-08,3,15.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10794,QUEDE,6,2017-12-24,2018-01-21,2018-01-02,1,15.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10795,ERNSH,8,2017-12-24,2018-01-21,2018-01-20,2,35,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10796,HILAA,3,2017-12-25,2018-01-22,2018-01-14,1,32.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10797,DRACD,7,2017-12-25,2018-01-22,2018-01-05,2,15,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +10798,ISLAT,2,2017-12-26,2018-01-23,2018-01-05,1,13,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10799,KOENE,9,2017-12-26,2018-02-06,2018-01-05,3,26.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10800,SEVES,1,2017-12-26,2018-01-23,2018-01-05,3,26.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10801,BOLID,4,2017-12-29,2018-01-26,2017-12-31,2,25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +10802,SIMOB,4,2017-12-29,2018-01-26,2018-01-02,2,40,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +10803,WELLI,4,2017-12-30,2018-01-27,2018-01-06,1,23.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10804,SEVES,6,2017-12-30,2018-01-27,2018-01-07,2,26,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10805,THEBI,2,2017-12-30,2018-01-27,2018-01-09,3,15,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +10806,VICTE,3,2017-12-31,2018-01-28,2018-01-05,2,19.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10807,FRANS,4,2017-12-31,2018-01-28,2018-01-30,1,10.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +10808,OLDWO,2,2018-01-01,2018-01-29,2018-01-09,3,27.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10809,WELLI,7,2018-01-01,2018-01-29,2018-01-07,1,15,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10810,LAUGB,2,2018-01-01,2018-01-29,2018-01-07,3,14.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +10811,LINOD,8,2018-01-02,2018-01-30,2018-01-08,1,25.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10812,REGGC,5,2018-01-02,2018-01-30,2018-01-12,1,29,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10813,RICAR,1,2018-01-05,2018-02-02,2018-01-09,1,21.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10814,VICTE,3,2018-01-05,2018-02-02,2018-01-14,3,29.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10815,SAVEA,2,2018-01-05,2018-02-02,2018-01-14,3,14,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10816,GREAL,4,2018-01-06,2018-02-03,2018-02-04,2,22.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10817,KOENE,3,2018-01-06,2018-01-20,2018-01-13,2,48.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10818,MAGAA,7,2018-01-07,2018-02-04,2018-01-12,3,20,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10819,CACTU,2,2018-01-07,2018-02-04,2018-01-16,3,16.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +10820,RATTC,3,2018-01-07,2018-02-04,2018-01-13,2,17.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10821,SPLIR,1,2018-01-08,2018-02-05,2018-01-15,1,16.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10822,TRAIH,6,2018-01-08,2018-02-05,2018-01-16,3,12.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +10823,LILAS,5,2018-01-09,2018-02-06,2018-01-13,2,32.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10824,FOLKO,8,2018-01-09,2018-02-06,2018-01-30,1,15.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10825,DRACD,1,2018-01-09,2018-02-06,2018-01-14,1,18,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +10826,BLONP,6,2018-01-12,2018-02-09,2018-02-06,1,22.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +10827,BONAP,1,2018-01-12,2018-01-26,2018-02-06,2,19,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10828,RANCH,9,2018-01-13,2018-01-27,2018-02-04,1,11.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +10829,ISLAT,9,2018-01-13,2018-02-10,2018-01-23,1,25.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10830,TRADH,4,2018-01-13,2018-02-24,2018-01-21,2,32,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +10831,SANTG,3,2018-01-14,2018-02-11,2018-01-23,2,16.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +10832,LAMAI,2,2018-01-14,2018-02-11,2018-01-19,2,18,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10833,OTTIK,6,2018-01-15,2018-02-12,2018-01-23,2,19.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +10834,TRADH,1,2018-01-15,2018-02-12,2018-01-19,3,17,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +10835,ALFKI,1,2018-01-15,2018-02-12,2018-01-21,3,14.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +10836,ERNSH,7,2018-01-16,2018-02-13,2018-01-21,1,53,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10837,BERGS,9,2018-01-16,2018-02-13,2018-01-23,3,33,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10838,LINOD,3,2018-01-19,2018-02-16,2018-01-23,3,29.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10839,TRADH,3,2018-01-19,2018-02-16,2018-01-22,3,21.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +10840,LINOD,4,2018-01-19,2018-03-02,2018-02-16,2,14,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10841,SUPRD,5,2018-01-20,2018-02-17,2018-01-29,2,37.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10842,TORTU,1,2018-01-20,2018-02-17,2018-01-29,3,23,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10843,VICTE,4,2018-01-21,2018-02-18,2018-01-26,2,11,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10844,PICCO,8,2018-01-21,2018-02-18,2018-01-26,2,18.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +10845,QUICK,8,2018-01-21,2018-02-04,2018-01-30,1,71.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10846,SUPRD,2,2018-01-22,2018-03-05,2018-01-23,3,27.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10847,SAVEA,4,2018-01-22,2018-02-05,2018-02-10,3,82,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10848,CONSH,7,2018-01-23,2018-02-20,2018-01-29,2,18.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +10849,KOENE,9,2018-01-23,2018-02-20,2018-01-30,2,26.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10850,VICTE,1,2018-01-23,2018-03-06,2018-01-30,1,23.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +10851,RICAR,5,2018-01-26,2018-02-23,2018-02-02,1,26.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10852,RATTC,8,2018-01-26,2018-02-09,2018-01-30,1,27.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10853,BLAUS,9,2018-01-27,2018-02-24,2018-02-03,2,12.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +10854,ERNSH,3,2018-01-27,2018-02-24,2018-02-05,2,51.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10855,OLDWO,3,2018-01-27,2018-02-24,2018-02-04,1,35.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10856,ANTON,3,2018-01-28,2018-02-25,2018-02-10,2,20,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +10857,BERGS,8,2018-01-28,2018-02-25,2018-02-06,2,28.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10858,LACOR,2,2018-01-29,2018-02-26,2018-02-03,1,14.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +10859,FRANK,1,2018-01-29,2018-02-26,2018-02-02,2,36.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10860,FRANR,3,2018-01-29,2018-02-26,2018-02-04,3,15.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +10861,WHITC,4,2018-01-30,2018-02-27,2018-02-17,2,45,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10862,LEHMS,8,2018-01-30,2018-03-13,2018-02-02,2,18.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10863,HILAA,4,2018-02-02,2018-03-02,2018-02-17,2,18,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10864,AROUT,4,2018-02-02,2018-03-02,2018-02-09,2,14.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10865,QUICK,2,2018-02-02,2018-02-16,2018-02-12,1,45,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10866,BERGS,5,2018-02-03,2018-03-03,2018-02-12,1,26.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10867,LONEP,6,2018-02-03,2018-03-17,2018-02-11,1,10.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10868,QUEEN,7,2018-02-04,2018-03-04,2018-02-23,2,33,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10869,SEVES,5,2018-02-04,2018-03-04,2018-02-09,1,40,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +10870,WOLZA,5,2018-02-04,2018-03-04,2018-02-13,3,11.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +10871,BONAP,9,2018-02-05,2018-03-05,2018-02-10,2,29.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10872,GODOS,5,2018-02-05,2018-03-05,2018-02-09,2,26.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10873,WILMK,4,2018-02-06,2018-03-06,2018-02-09,1,15.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +10874,GODOS,5,2018-02-06,2018-03-06,2018-02-11,2,12.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10875,BERGS,4,2018-02-06,2018-03-06,2018-03-03,2,25.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10876,BONAP,7,2018-02-09,2018-03-09,2018-02-12,3,20.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10877,RICAR,1,2018-02-09,2018-03-09,2018-02-19,1,23.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +10878,QUICK,4,2018-02-10,2018-03-10,2018-02-12,1,15,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10879,WILMK,3,2018-02-10,2018-03-10,2018-02-12,3,18,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +10880,FOLKO,7,2018-02-10,2018-03-24,2018-02-18,1,37.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10881,CACTU,4,2018-02-11,2018-03-11,2018-02-18,1,12.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +10882,SAVEA,4,2018-02-11,2018-03-11,2018-02-20,3,29.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10883,LONEP,8,2018-02-12,2018-03-12,2018-02-20,3,12,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +10884,LETSS,4,2018-02-12,2018-03-12,2018-02-13,2,28.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +10885,SUPRD,6,2018-02-12,2018-03-12,2018-02-18,3,31.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10886,HANAR,1,2018-02-13,2018-03-13,2018-03-02,1,46.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10887,GALED,8,2018-02-13,2018-03-13,2018-02-16,3,11.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +10888,GODOS,1,2018-02-16,2018-03-16,2018-02-23,2,19.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10889,RATTC,9,2018-02-16,2018-03-16,2018-02-23,3,30,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10890,DUMON,7,2018-02-16,2018-03-16,2018-02-18,1,19.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +10891,LEHMS,7,2018-02-17,2018-03-17,2018-02-19,2,13.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10892,MAISD,4,2018-02-17,2018-03-17,2018-02-19,2,20,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +10893,KOENE,9,2018-02-18,2018-03-18,2018-02-20,2,39.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +10894,SAVEA,1,2018-02-18,2018-03-18,2018-02-20,1,59.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10895,ERNSH,3,2018-02-18,2018-03-18,2018-02-23,1,96.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10896,MAISD,7,2018-02-19,2018-03-19,2018-02-27,3,17.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +10897,HUNGO,3,2018-02-19,2018-03-19,2018-02-25,2,39,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10898,OCEAN,4,2018-02-20,2018-03-20,2018-03-06,2,11.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +10899,LILAS,5,2018-02-20,2018-03-20,2018-02-26,3,12,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10900,WELLI,1,2018-02-20,2018-03-20,2018-03-04,2,10.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10901,HILAA,4,2018-02-23,2018-03-23,2018-02-26,1,25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10902,FOLKO,1,2018-02-23,2018-03-23,2018-03-03,1,19,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10903,HANAR,3,2018-02-24,2018-03-24,2018-03-04,3,30.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10904,WHITC,3,2018-02-24,2018-03-24,2018-02-27,3,22.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +10905,WELLI,9,2018-02-24,2018-03-24,2018-03-06,2,15,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10906,WOLZA,4,2018-02-25,2018-03-11,2018-03-03,3,13.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +10907,SPECD,6,2018-02-25,2018-03-25,2018-02-27,3,13.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +10908,REGGC,4,2018-02-26,2018-03-26,2018-03-06,2,18.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10909,SANTG,1,2018-02-26,2018-03-26,2018-03-10,2,18,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +10910,WILMK,1,2018-02-26,2018-03-26,2018-03-04,3,16.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +10911,GODOS,3,2018-02-26,2018-03-26,2018-03-05,1,19.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10912,HUNGO,2,2018-02-26,2018-03-26,2018-03-18,2,35,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10913,QUEEN,4,2018-02-26,2018-03-26,2018-03-04,1,31.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10914,QUEEN,6,2018-02-27,2018-03-27,2018-03-02,1,16.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10915,TORTU,2,2018-02-27,2018-03-27,2018-03-02,2,22.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +10916,RANCH,1,2018-02-27,2018-03-27,2018-03-09,2,18,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +10917,ROMEY,4,2018-03-02,2018-03-30,2018-03-11,2,12.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +10918,BOTTM,3,2018-03-02,2018-03-30,2018-03-11,3,31.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10919,LINOD,2,2018-03-02,2018-03-30,2018-03-04,2,27,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10920,AROUT,4,2018-03-03,2018-03-31,2018-03-09,2,16,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10921,VAFFE,1,2018-03-03,2018-04-14,2018-03-09,1,22.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10922,HANAR,5,2018-03-03,2018-03-31,2018-03-05,3,22.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10923,LAMAI,7,2018-03-03,2018-04-14,2018-03-13,3,21,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +10924,BERGS,3,2018-03-04,2018-04-01,2018-04-08,2,24,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +10925,HANAR,3,2018-03-04,2018-04-01,2018-03-13,1,19.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10926,ANATR,4,2018-03-04,2018-04-01,2018-03-11,3,17.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +10927,LACOR,4,2018-03-05,2018-04-02,2018-04-08,1,17.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +10928,GALED,1,2018-03-05,2018-04-02,2018-03-18,1,12.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +10929,FRANK,6,2018-03-05,2018-04-02,2018-03-12,1,41,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +10930,SUPRD,4,2018-03-06,2018-04-17,2018-03-18,3,39,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +10931,RICSU,4,2018-03-06,2018-03-20,2018-03-19,2,28,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10932,BONAP,8,2018-03-06,2018-04-03,2018-03-24,1,30,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10933,ISLAT,6,2018-03-06,2018-04-03,2018-03-16,3,18,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +10934,LEHMS,3,2018-03-09,2018-04-06,2018-03-12,3,15,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +10935,WELLI,4,2018-03-09,2018-04-06,2018-03-18,3,18.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +10936,GREAL,3,2018-03-09,2018-04-06,2018-03-18,2,17.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +10937,CACTU,7,2018-03-10,2018-03-24,2018-03-13,3,17,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +10938,QUICK,3,2018-03-10,2018-04-07,2018-03-16,2,42,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10939,MAGAA,2,2018-03-10,2018-04-07,2018-03-13,2,22.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10940,BONAP,8,2018-03-11,2018-04-08,2018-03-23,3,17,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +10941,SAVEA,7,2018-03-11,2018-04-08,2018-03-20,2,61,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10942,REGGC,9,2018-03-11,2018-04-08,2018-03-18,3,17,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +10943,BSBEV,4,2018-03-11,2018-04-08,2018-03-19,2,22.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10944,BOTTM,6,2018-03-12,2018-03-26,2018-03-13,3,20.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10945,MORGK,4,2018-03-12,2018-04-09,2018-03-18,1,17.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +10946,VAFFE,1,2018-03-12,2018-04-09,2018-03-19,2,32.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10947,BSBEV,3,2018-03-13,2018-04-10,2018-03-16,2,11,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +10948,GODOS,3,2018-03-13,2018-04-10,2018-03-19,3,23.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +10949,BOTTM,2,2018-03-13,2018-04-10,2018-03-17,3,37,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10950,MAGAA,1,2018-03-16,2018-04-13,2018-03-23,2,11.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +10951,RICSU,9,2018-03-16,2018-04-27,2018-04-07,2,27.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +10952,ALFKI,1,2018-03-16,2018-04-27,2018-03-24,1,14.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +10953,AROUT,9,2018-03-16,2018-03-30,2018-03-25,2,35,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +10954,LINOD,5,2018-03-17,2018-04-28,2018-03-20,1,36.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +10955,FOLKO,8,2018-03-17,2018-04-14,2018-03-20,2,13,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10956,BLAUS,6,2018-03-17,2018-04-28,2018-03-20,2,18.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +10957,HILAA,8,2018-03-18,2018-04-15,2018-03-27,3,29.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10958,OCEAN,7,2018-03-18,2018-04-15,2018-03-27,2,17.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +10959,GOURL,6,2018-03-18,2018-04-29,2018-03-23,2,15,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +10960,HILAA,3,2018-03-19,2018-04-02,2018-04-08,1,18.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10961,QUEEN,8,2018-03-19,2018-04-16,2018-03-30,1,26.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +10962,QUICK,8,2018-03-19,2018-04-16,2018-03-23,2,58.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10963,FURIB,9,2018-03-19,2018-04-16,2018-03-26,3,10.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +10964,SPECD,3,2018-03-20,2018-04-17,2018-03-24,2,15.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +10965,OLDWO,6,2018-03-20,2018-04-17,2018-03-30,3,14,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +10966,CHOPS,4,2018-03-20,2018-04-17,2018-04-08,1,18,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +10967,TOMSP,2,2018-03-23,2018-04-20,2018-04-02,2,23,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +10968,ERNSH,1,2018-03-23,2018-04-20,2018-04-01,3,26,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10969,COMMI,1,2018-03-23,2018-04-20,2018-03-30,2,12.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +10970,BOLID,9,2018-03-24,2018-04-07,2018-04-24,1,20,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +10971,FRANR,2,2018-03-24,2018-04-21,2018-04-02,2,13.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +10972,LACOR,4,2018-03-24,2018-04-21,2018-03-26,2,13.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +10973,LACOR,6,2018-03-24,2018-04-21,2018-03-27,2,15.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +10974,SPLIR,3,2018-03-25,2018-04-08,2018-04-03,3,12.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +10975,BOTTM,1,2018-03-25,2018-04-22,2018-03-27,3,16.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10976,HILAA,1,2018-03-25,2018-05-06,2018-04-03,1,15,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +10977,FOLKO,8,2018-03-26,2018-04-23,2018-04-10,3,32.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10978,MAISD,9,2018-03-26,2018-04-23,2018-04-23,2,29,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +10979,ERNSH,8,2018-03-26,2018-04-23,2018-03-31,2,61.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10980,FOLKO,4,2018-03-27,2018-05-08,2018-04-17,1,20,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10981,HANAR,1,2018-03-27,2018-04-24,2018-04-02,2,25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +10982,BOTTM,2,2018-03-27,2018-04-24,2018-04-08,1,17.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +10983,SAVEA,2,2018-03-27,2018-04-24,2018-04-06,2,34.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10984,SAVEA,1,2018-03-30,2018-04-27,2018-04-03,3,38.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +10985,HUNGO,2,2018-03-30,2018-04-27,2018-04-02,1,29.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +10986,OCEAN,8,2018-03-30,2018-04-27,2018-04-21,2,27.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +10987,EASTC,8,2018-03-31,2018-04-28,2018-04-06,1,31.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +10988,RATTC,3,2018-03-31,2018-04-28,2018-04-10,2,35,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +10989,QUEDE,2,2018-03-31,2018-04-28,2018-04-02,1,24.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +10990,ERNSH,2,2018-04-01,2018-05-13,2018-04-07,3,74,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +10991,QUICK,1,2018-04-01,2018-04-29,2018-04-07,1,50,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10992,THEBI,1,2018-04-01,2018-04-29,2018-04-03,3,10.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +10993,FOLKO,7,2018-04-01,2018-04-29,2018-04-10,3,31.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +10994,VAFFE,2,2018-04-02,2018-04-16,2018-04-09,3,14.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +10995,PERIC,1,2018-04-02,2018-04-30,2018-04-06,3,16,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +10996,QUICK,4,2018-04-02,2018-04-30,2018-04-10,2,20,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +10997,LILAS,8,2018-04-03,2018-05-15,2018-04-13,2,32.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +10998,WOLZA,8,2018-04-03,2018-04-17,2018-04-17,2,27.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +10999,OTTIK,6,2018-04-03,2018-05-01,2018-04-10,2,24,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11000,RATTC,2,2018-04-06,2018-05-04,2018-04-14,3,31.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11001,FOLKO,2,2018-04-06,2018-05-04,2018-04-14,2,39,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11002,SAVEA,4,2018-04-06,2018-05-04,2018-04-16,1,43.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11003,THECR,3,2018-04-06,2018-05-04,2018-04-08,3,16,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11004,MAISD,3,2018-04-07,2018-05-05,2018-04-20,1,13,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +11005,WILMK,2,2018-04-07,2018-05-05,2018-04-10,1,13,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11006,GREAL,3,2018-04-07,2018-05-05,2018-04-15,2,12.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11007,PRINI,8,2018-04-08,2018-05-06,2018-04-13,2,23.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11008,ERNSH,7,2018-04-08,2018-05-06,,3,55.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11009,GODOS,2,2018-04-08,2018-05-06,2018-04-10,1,19.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11010,REGGC,2,2018-04-09,2018-05-07,2018-04-21,2,17.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11011,ALFKI,3,2018-04-09,2018-05-07,2018-04-13,1,25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11012,FRANK,1,2018-04-09,2018-04-23,2018-04-17,3,46.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11013,ROMEY,2,2018-04-09,2018-05-07,2018-04-10,1,19,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11014,LINOD,2,2018-04-10,2018-05-08,2018-04-15,3,17,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11015,SANTG,2,2018-04-10,2018-04-24,2018-04-20,2,18.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11016,AROUT,9,2018-04-10,2018-05-08,2018-04-13,2,17.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11017,ERNSH,9,2018-04-13,2018-05-11,2018-04-20,2,51.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11018,LONEP,4,2018-04-13,2018-05-11,2018-04-16,2,18.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11019,RANCH,6,2018-04-13,2018-05-11,,3,11.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11020,OTTIK,2,2018-04-14,2018-05-12,2018-04-16,2,16,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11021,QUICK,3,2018-04-14,2018-05-12,2018-04-21,1,52,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11022,HANAR,9,2018-04-14,2018-05-12,2018-05-04,2,26.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11023,BSBEV,1,2018-04-14,2018-04-28,2018-04-24,2,18.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +11024,EASTC,4,2018-04-15,2018-05-13,2018-04-20,1,38.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11025,WARTH,6,2018-04-15,2018-05-13,2018-04-24,3,17.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11026,FRANS,4,2018-04-15,2018-05-13,2018-04-28,1,14.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11027,BOTTM,1,2018-04-16,2018-05-14,2018-04-20,1,22.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11028,KOENE,2,2018-04-16,2018-05-14,2018-04-22,1,24.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +11029,CHOPS,4,2018-04-16,2018-05-14,2018-04-27,1,18,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11030,SAVEA,7,2018-04-17,2018-05-15,2018-04-27,2,92.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11031,SAVEA,6,2018-04-17,2018-05-15,2018-04-24,2,55.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11032,WHITC,2,2018-04-17,2018-05-15,2018-04-23,3,32.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11033,RICSU,7,2018-04-17,2018-05-15,2018-04-23,3,36.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11034,OLDWO,8,2018-04-20,2018-06-01,2018-04-27,1,18.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11035,SUPRD,2,2018-04-20,2018-05-18,2018-04-24,2,37.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11036,DRACD,8,2018-04-20,2018-05-18,2018-04-22,3,19.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11037,GODOS,7,2018-04-21,2018-05-19,2018-04-27,1,11,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11038,SUPRD,1,2018-04-21,2018-05-19,2018-04-30,2,19.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11039,LINOD,1,2018-04-21,2018-05-19,,2,43,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11040,GREAL,4,2018-04-22,2018-05-20,,3,15,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11041,CHOPS,3,2018-04-22,2018-05-20,2018-04-28,2,25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11042,COMMI,2,2018-04-22,2018-05-06,2018-05-01,1,14.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11043,SPECD,5,2018-04-22,2018-05-20,2018-04-29,2,12.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11044,WOLZA,4,2018-04-23,2018-05-21,2018-05-01,1,13,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11045,BOTTM,6,2018-04-23,2018-05-21,,2,19.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11046,WANDK,8,2018-04-23,2018-05-21,2018-04-24,2,23.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11047,EASTC,7,2018-04-24,2018-05-22,2018-05-01,3,23.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11048,BOTTM,7,2018-04-24,2018-05-22,2018-04-30,3,20.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11049,GOURL,3,2018-04-24,2018-05-22,2018-05-04,1,13.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11050,FOLKO,8,2018-04-27,2018-05-25,2018-05-05,2,22.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11051,LAMAI,7,2018-04-27,2018-05-25,,3,12.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11052,HANAR,3,2018-04-27,2018-05-25,2018-05-01,1,20,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11053,PICCO,2,2018-04-27,2018-05-25,2018-04-29,2,30,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11054,CACTU,8,2018-04-28,2018-05-26,,1,17.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11055,HILAA,7,2018-04-28,2018-05-26,2018-05-05,2,27.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11056,EASTC,8,2018-04-28,2018-05-12,2018-05-01,2,41.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11057,NORTS,3,2018-04-29,2018-05-27,2018-05-01,3,10.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11058,BLAUS,9,2018-04-29,2018-05-27,,3,17,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11059,RICAR,2,2018-04-29,2018-06-10,,2,29.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11060,FRANS,2,2018-04-30,2018-05-28,2018-05-04,2,13.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11061,GREAL,4,2018-04-30,2018-06-11,,3,13.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11062,REGGC,4,2018-04-30,2018-05-28,,2,15.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11063,HUNGO,3,2018-04-30,2018-05-28,2018-05-06,2,35,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11064,SAVEA,1,2018-05-01,2018-05-29,2018-05-04,1,53.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11065,LILAS,8,2018-05-01,2018-05-29,,1,16,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11066,WHITC,7,2018-05-01,2018-05-29,2018-05-04,2,30,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11067,DRACD,1,2018-05-04,2018-05-18,2018-05-06,2,12.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11068,QUEEN,8,2018-05-04,2018-06-01,,2,28,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11069,TORTU,1,2018-05-04,2018-06-01,2018-05-06,2,15,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11070,LEHMS,2,2018-05-05,2018-06-02,,1,37.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11071,LILAS,1,2018-05-05,2018-06-02,,1,16.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11072,ERNSH,4,2018-05-05,2018-06-02,,2,60,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11073,PERIC,2,2018-05-05,2018-06-02,,2,17.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11074,SIMOB,7,2018-05-06,2018-06-03,,2,13.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11075,RICSU,8,2018-05-06,2018-06-03,,2,20.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11076,BONAP,4,2018-05-06,2018-06-03,,2,22.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11077,RATTC,1,2018-05-06,2018-06-03,,2,28,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11078,ROMEY,9,2023-08-29 09:23:46,2023-10-03 17:28:12,2023-09-05 01:55:31,2,72.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11079,OCEAN,8,2022-04-04 03:44:42,2022-04-20 21:33:14,2022-04-16 01:28:09,2,112.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11080,REGGC,2,2019-05-04 21:08:02,2019-06-23 01:17:35,2019-05-07 20:14:43,2,265.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11081,PERIC,4,2015-06-04 02:03:12,2015-07-24 04:27:42,2015-06-13 00:22:16,3,421.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11082,SPECD,3,2016-04-14 09:53:02,2016-04-24 18:36:36,2016-04-30 22:51:14,2,62.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11083,PARIS,4,2014-07-07 01:11:17,2014-07-25 11:36:55,2014-07-09 07:43:43,1,341.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11084,BLONP,4,2015-01-04 21:53:22,2015-02-11 15:51:22,2015-01-09 06:01:19,3,495.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11085,LETSS,1,2013-04-14 00:40:40,2013-05-23 19:32:49,2013-04-14 22:35:08,2,232.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11086,HUNGC,3,2022-04-02 03:38:44,2022-04-12 14:10:34,2022-04-03 14:45:05,1,25.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11087,WANDK,9,2020-04-25 14:00:46,2020-05-05 22:58:54,2020-05-06 22:09:40,3,136.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11088,PRINI,1,2020-10-08 17:17:24,2020-10-28 01:48:22,2020-10-13 21:51:37,3,339.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11089,LAZYK,1,2018-03-20 18:08:28,2018-03-31 20:13:13,2018-03-28 05:03:45,2,62.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11090,VAFFE,2,2014-04-28 19:09:57,2014-05-14 06:21:18,2014-05-03 12:55:32,2,225,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11091,ANATR,3,2015-02-03 07:09:34,2015-02-13 16:54:14,2015-02-16 17:14:46,2,78.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11092,MORGK,9,2021-02-20 06:16:56,2021-03-06 14:06:27,2021-02-24 12:14:59,1,155,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11093,SIMOB,5,2022-01-18 01:39:32,2022-03-16 18:00:07,2022-02-03 18:21:14,2,330.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11094,SPLIR,3,2014-08-15 18:23:12,2014-08-26 08:27:35,2014-09-13 17:05:46,3,256,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11095,TOMSP,1,2014-05-26 07:54:12,2014-05-29 16:04:31,2014-06-07 06:41:55,2,83.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11096,FRANS,4,2017-08-20 19:49:48,2017-08-26 17:33:03,2017-08-21 20:08:04,1,454.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11097,BLAUS,3,2014-03-26 15:56:49,2014-04-07 06:12:36,2014-04-03 00:08:49,2,86.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11098,BSBEV,2,2022-05-28 22:03:57,2022-06-08 13:08:33,2022-05-30 23:31:00,2,91.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11099,HUNGC,1,2019-11-16 16:26:37,2019-11-27 05:09:29,2019-11-17 12:29:38,2,136.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11100,TRAIH,5,2017-06-09 11:44:26,2017-06-26 16:52:35,2017-06-13 05:55:13,1,438,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11101,LONEP,6,2019-01-27 04:34:19,2019-02-12 21:11:42,2019-02-04 09:32:44,3,169.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11102,BOLID,5,2013-10-07 18:23:07,2013-10-28 02:26:04,2013-10-12 12:38:57,3,250.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11103,PRINI,1,2014-07-17 18:31:34,2014-08-11 15:27:39,2014-07-18 05:10:06,2,420,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11104,DRACD,1,2021-03-06 10:07:50,2021-04-17 04:58:06,2021-03-06 10:51:11,3,45.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11105,CENTC,8,2023-03-20 23:48:40,2023-05-01 08:34:04,2023-03-21 22:04:51,3,524.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +11106,BERGS,3,2018-11-19 11:29:34,2018-11-22 07:43:58,2018-12-09 07:27:03,1,111.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11107,BLONP,9,2023-06-03 05:23:41,2023-06-14 00:25:47,2023-06-10 02:57:56,1,440,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11108,CACTU,6,2023-10-09 16:34:02,2023-11-27 16:36:19,2023-10-30 21:22:51,2,256.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11109,VINET,5,2013-05-08 05:52:40,2013-05-21 13:11:04,2013-05-29 10:10:50,1,38,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11110,SUPRD,4,2021-05-13 02:11:51,2021-05-19 06:32:33,2021-05-13 15:50:01,2,270.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11111,MORGK,4,2017-01-16 04:51:18,2017-03-08 02:25:42,2017-01-27 00:10:52,1,471.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11112,FOLKO,6,2014-07-04 04:57:18,2014-08-12 22:06:10,2014-07-06 01:32:46,2,466.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11113,OTTIK,5,2018-04-16 16:01:33,2018-05-03 15:48:25,2018-04-20 22:36:10,3,417.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11114,BLAUS,2,2019-10-07 09:52:11,2019-10-08 16:46:38,2019-10-29 17:42:02,3,82.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11115,LETSS,4,2012-12-10 10:42:18,2012-12-26 17:46:20,2012-12-10 14:58:45,2,459.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11116,BOLID,4,2022-08-06 01:50:28,2022-08-28 08:27:09,2022-08-11 12:41:43,1,476.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11117,FRANR,5,2014-11-07 04:43:06,2014-11-14 14:09:25,2014-11-14 04:06:39,3,137.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11118,LAZYK,6,2018-01-18 09:33:31,2018-02-13 17:13:17,2018-01-26 15:06:32,2,246.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11119,TRAIH,2,2013-08-25 14:48:08,2013-08-26 02:11:53,2013-08-26 04:33:08,3,137.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11120,BOTTM,2,2014-03-11 18:33:28,2014-03-21 21:03:23,2014-03-16 19:42:02,3,33.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11121,FISSA,2,2017-03-01 00:08:07,2017-03-20 16:15:15,2017-03-03 07:32:22,1,360,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11122,SUPRD,3,2014-11-26 22:55:18,2014-12-08 22:30:42,2014-12-02 14:31:09,3,20,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11123,HILAA,9,2023-06-30 10:40:37,2023-07-04 02:41:04,2023-07-21 13:27:29,2,69,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11124,CHOPS,1,2021-08-07 08:59:40,2021-08-09 01:29:24,2021-08-16 06:32:44,2,457,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11125,WILMK,5,2017-01-20 04:14:20,2017-01-27 20:20:46,2017-01-25 17:05:52,2,147,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11126,TOMSP,3,2013-03-14 03:34:38,2013-03-16 21:11:00,2013-03-22 21:29:26,3,47.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11127,DUMON,8,2023-06-05 07:16:04,2023-07-01 23:16:11,2023-06-05 21:21:50,1,174.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11128,SANTG,7,2023-05-21 23:58:27,2023-06-07 22:43:37,2023-06-11 20:04:21,1,465.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11129,LILAS,9,2013-12-19 12:16:39,2014-01-02 22:41:54,2014-01-11 10:08:20,2,407.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11130,THECR,4,2014-02-24 11:50:21,2014-03-20 03:03:41,2014-03-07 06:55:34,1,302.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11131,SUPRD,8,2016-04-29 06:01:40,2016-05-01 00:15:11,2016-05-09 02:05:33,3,32.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11132,THECR,7,2015-05-31 22:49:05,2015-07-02 00:39:05,2015-06-02 20:25:12,2,304.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11133,RATTC,3,2014-05-09 10:16:47,2014-06-05 14:51:00,2014-05-22 11:14:18,3,219,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11134,BERGS,5,2015-05-25 16:37:31,2015-07-03 09:12:02,2015-05-27 14:08:59,1,503,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11135,VINET,9,2019-04-07 12:05:20,2019-05-08 13:32:27,2019-04-21 14:52:04,2,41,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11136,NORTS,4,2016-03-09 15:12:34,2016-03-27 22:47:24,2016-03-09 20:43:13,3,239.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11137,TRAIH,5,2019-09-15 07:40:35,2019-10-21 13:46:42,2019-10-06 01:10:07,1,74.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11138,SUPRD,8,2019-12-09 14:47:12,2020-01-06 10:41:37,2019-12-12 21:36:07,2,180.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11139,SEVES,2,2018-03-31 10:31:42,2018-04-24 08:09:19,2018-04-01 10:18:48,3,368.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11140,Val2 ,2,2020-08-27 13:25:15,2020-09-08 01:15:06,2020-09-09 19:59:48,3,403,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11141,PRINI,7,2016-04-01 21:14:21,2016-04-06 20:31:33,2016-04-23 15:21:52,2,146.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11142,FOLIG,9,2013-12-11 11:15:19,2013-12-22 17:11:36,2013-12-25 15:40:31,2,41.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11143,QUEEN,2,2022-10-04 05:51:54,2022-10-18 18:16:36,2022-10-04 19:47:39,2,156.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11144,CENTC,2,2014-12-23 08:06:55,2015-01-12 01:25:49,2014-12-31 20:56:54,3,489,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11145,QUEEN,7,2015-01-29 15:28:01,2015-03-03 03:17:23,2015-01-30 05:47:35,3,196,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11146,WANDK,5,2016-09-19 11:01:05,2016-09-21 04:15:59,2016-10-06 14:29:08,2,419.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11147,RATTC,6,2020-05-28 02:47:24,2020-06-08 14:45:53,2020-06-09 23:29:06,2,124.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11148,OCEAN,2,2019-04-21 14:04:39,2019-06-03 01:10:29,2019-04-21 22:37:25,3,242.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11149,LONEP,5,2015-07-10 06:04:31,2015-07-20 07:05:03,2015-07-11 15:23:21,1,480,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11150,PERIC,3,2013-04-03 13:30:02,2013-04-11 23:11:52,2013-04-07 12:27:43,2,120.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11151,GOURL,3,2014-01-20 22:56:57,2014-02-10 15:04:35,2014-01-24 03:45:51,3,62,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11152,HILAA,9,2020-03-19 07:15:34,2020-04-02 15:48:11,2020-04-05 04:38:17,2,107.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11153,ROMEY,5,2019-11-28 23:12:39,2020-01-02 10:50:19,2019-12-07 14:53:21,2,307.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11154,WELLI,2,2013-08-12 13:20:44,2013-08-20 16:25:33,2013-08-26 19:28:46,1,24.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11155,RATTC,5,2018-03-29 12:42:21,2018-03-31 08:26:37,2018-03-31 06:00:51,3,420.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11156,OTTIK,8,2020-06-14 21:54:19,2020-07-16 07:50:53,2020-06-30 19:23:39,3,66.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11157,BOLID,3,2019-09-30 15:11:13,2019-10-29 12:14:05,2019-10-06 10:32:11,3,203,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11158,TRAIH,7,2022-08-15 19:48:52,2022-08-21 23:30:00,2022-08-28 15:02:19,2,454.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11159,BSBEV,4,2022-03-05 00:40:53,2022-04-14 19:55:37,2022-03-05 16:34:35,3,229.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11160,GODOS,2,2022-01-16 17:03:51,2022-01-28 22:22:19,2022-01-23 09:56:44,3,313.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11161,SPECD,2,2020-01-12 21:55:05,2020-01-27 07:44:38,2020-01-19 15:59:26,2,434.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11162,SIMOB,4,2019-04-08 11:02:02,2019-04-23 13:59:41,2019-04-13 02:52:46,1,318.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11163,TRADH,4,2016-11-07 21:49:06,2016-11-15 06:48:57,2016-11-14 20:20:41,2,153.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11164,RICAR,3,2018-10-03 21:42:23,2018-10-06 10:27:45,2018-10-10 17:03:54,3,231.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11165,LEHMS,8,2019-09-15 08:23:25,2019-10-02 09:32:11,2019-09-28 05:50:19,3,430.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11166,WHITC,8,2016-03-10 22:41:23,2016-03-17 17:25:25,2016-03-28 05:25:36,3,363.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11167,CACTU,4,2020-11-11 01:53:31,2020-11-24 11:21:57,2020-11-16 10:38:31,2,218,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11168,Val2 ,6,2019-05-06 23:01:34,2019-05-23 23:44:43,2019-05-26 09:44:08,2,480.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11169,MORGK,3,2020-10-27 23:26:34,2020-11-23 03:46:21,2020-11-06 07:41:11,2,428.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11170,WILMK,5,2016-08-01 13:16:15,2016-08-15 01:04:42,2016-08-11 15:34:14,2,63.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11171,PERIC,2,2023-07-19 20:44:10,2023-07-24 06:44:09,2023-07-25 05:16:02,3,202.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11172,RICAR,9,2019-09-03 13:23:35,2019-09-25 16:46:31,2019-09-20 04:25:53,3,25.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +11173,EASTC,5,2016-01-25 11:20:02,2016-02-05 02:01:35,2016-02-13 10:43:51,3,23,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11174,MORGK,9,2016-01-28 04:00:22,2016-02-21 06:14:28,2016-02-09 06:16:01,1,292.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11175,HANAR,5,2012-10-17 10:29:59,2012-11-23 03:18:19,2012-10-19 02:48:37,1,212.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11176,SPECD,5,2019-05-07 00:00:03,2019-05-11 05:09:52,2019-05-26 22:56:23,1,182,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11177,MAGAA,4,2015-12-21 09:01:24,2016-01-19 17:04:49,2015-12-31 06:53:02,3,515.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11178,THEBI,9,2016-02-27 11:03:37,2016-03-20 05:01:27,2016-03-05 16:48:26,3,329.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11179,BERGS,3,2019-12-20 12:17:45,2019-12-27 01:33:43,2019-12-24 12:40:17,2,357.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11180,REGGC,5,2015-11-13 20:48:45,2015-11-25 08:31:30,2015-12-02 19:44:24,2,334.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11181,MAGAA,6,2015-11-06 11:35:34,2015-11-14 21:31:57,2015-11-28 13:47:47,1,208,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11182,FRANR,3,2019-03-27 09:37:26,2019-03-30 09:37:50,2019-04-17 22:46:53,1,280,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11183,MORGK,8,2021-05-17 11:09:54,2021-07-04 11:30:08,2021-05-25 02:27:03,3,98.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11184,MAISD,5,2023-10-10 20:20:26,2023-11-01 08:21:00,2023-10-15 07:11:12,1,369.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11185,PRINI,7,2023-09-06 01:10:54,2023-10-18 10:10:08,2023-09-11 07:20:04,2,319,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11186,ANATR,8,2017-07-16 03:24:26,2017-07-22 20:47:17,2017-07-21 09:14:10,2,348.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11187,RICSU,4,2022-04-28 22:34:21,2022-06-10 07:24:02,2022-05-01 00:21:49,3,97.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11188,CENTC,8,2018-07-07 15:47:01,2018-08-08 22:24:03,2018-07-11 08:00:04,3,514.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11189,BSBEV,8,2014-12-25 23:48:46,2015-01-23 17:16:33,2014-12-29 09:23:36,1,388.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11190,MORGK,4,2020-07-17 15:03:56,2020-07-17 21:30:03,2020-07-31 12:17:42,2,384.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11191,FURIB,2,2019-02-08 10:47:43,2019-03-22 05:39:50,2019-02-12 19:04:46,3,275.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11192,QUEEN,5,2015-05-01 03:31:43,2015-05-16 01:28:38,2015-05-11 18:07:58,2,408.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11193,CENTC,1,2022-05-13 02:05:08,2022-05-22 02:15:59,2022-06-03 14:35:09,3,193.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11194,BERGS,4,2022-03-07 17:25:49,2022-03-13 01:42:46,2022-03-08 11:48:36,3,271.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11195,LEHMS,9,2022-06-06 03:56:04,2022-07-14 04:32:49,2022-06-22 15:06:39,1,172.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11196,WARTH,3,2022-05-06 16:05:49,2022-06-05 04:51:59,2022-05-19 06:41:16,3,456.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11197,PRINI,9,2020-09-19 16:22:26,2020-10-24 07:33:28,2020-10-06 14:58:19,1,76.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11198,FRANK,8,2016-01-01 22:20:52,2016-02-08 12:49:00,2016-01-08 01:30:00,1,381.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11199,BOLID,4,2015-09-27 02:44:09,2015-10-09 19:40:01,2015-09-29 20:54:18,1,59.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11200,LACOR,2,2018-03-23 20:38:43,2018-03-25 00:16:07,2018-04-13 10:23:42,1,210.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11201,PRINI,8,2015-11-25 01:49:16,2015-12-20 10:31:56,2015-11-25 09:41:16,2,56,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11202,RICAR,1,2016-01-29 16:31:09,2016-02-23 08:11:06,2016-01-30 06:56:41,1,332.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11203,ANATR,2,2020-12-09 23:17:46,2020-12-16 15:31:05,2020-12-11 12:03:33,3,175.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +11204,THECR,3,2022-07-29 03:14:00,2022-08-25 19:08:58,2022-08-08 14:28:07,3,449.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +11205,TRADH,8,2015-08-28 23:35:44,2015-09-08 16:15:07,2015-09-12 12:19:11,2,232.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11206,WELLI,4,2014-06-17 23:27:06,2014-07-07 13:00:59,2014-06-26 19:19:18,3,36.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11207,THEBI,7,2016-09-02 20:25:55,2016-09-10 01:45:43,2016-09-13 01:01:20,3,339.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11208,BSBEV,5,2013-11-17 04:43:35,2013-12-10 22:19:21,2013-11-21 05:18:25,1,239.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11209,OLDWO,8,2015-04-09 17:39:36,2015-04-11 05:13:17,2015-04-28 12:03:31,2,219.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11210,FOLKO,4,2014-10-20 18:59:27,2014-10-21 17:08:56,2014-11-13 19:14:24,3,401,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11211,HANAR,4,2017-03-10 02:39:55,2017-04-23 13:19:55,2017-03-14 18:46:33,2,158.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11212,HILAA,1,2018-01-24 23:47:59,2018-03-11 14:43:07,2018-02-16 11:50:26,2,455.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11213,LETSS,6,2020-12-25 07:49:12,2021-01-27 18:19:09,2021-01-01 12:43:08,2,17.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11214,OTTIK,6,2018-02-03 00:01:22,2018-02-19 04:14:55,2018-02-04 22:49:21,1,167.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11215,HANAR,5,2013-08-21 01:50:04,2013-08-30 11:04:50,2013-08-21 09:26:03,2,323.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11216,OTTIK,5,2016-05-05 18:27:21,2016-05-16 20:17:47,2016-05-21 03:39:33,1,230.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11217,PARIS,5,2020-08-08 06:04:20,2020-10-01 18:50:36,2020-08-14 00:43:31,1,416.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11218,OTTIK,8,2019-11-27 19:53:27,2019-12-27 15:09:27,2019-12-04 22:53:11,3,57.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11219,RICAR,2,2019-06-07 09:00:38,2019-06-21 09:27:58,2019-06-15 01:10:24,2,321.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11220,MEREP,2,2017-07-26 04:17:39,2017-07-30 15:58:29,2017-08-07 13:41:56,3,408.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11221,CACTU,9,2012-12-09 15:23:56,2013-01-12 08:06:09,2012-12-13 21:49:43,1,202,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11222,RICSU,5,2016-05-07 17:54:16,2016-05-16 20:21:46,2016-06-02 08:38:10,3,444.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11223,PRINI,4,2020-08-25 03:37:15,2020-09-07 01:39:34,2020-09-02 21:23:22,2,225.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11224,MAGAA,3,2016-03-11 21:07:53,2016-03-16 13:38:46,2016-03-18 14:42:24,2,331,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11225,WILMK,6,2015-04-18 07:07:19,2015-05-17 13:50:53,2015-04-25 03:27:42,2,412.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11226,QUEEN,7,2021-10-01 20:42:59,2021-10-05 13:15:24,2021-10-05 08:40:25,3,103.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11227,HILAA,8,2016-05-02 17:23:59,2016-05-22 17:12:38,2016-05-14 19:06:26,2,183.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11228,CACTU,7,2020-04-11 13:14:10,2020-04-30 12:56:39,2020-05-06 12:22:53,3,276.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11229,VAFFE,2,2014-05-01 22:35:39,2014-05-23 07:03:21,2014-05-02 22:30:51,1,306.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11230,LETSS,5,2013-08-27 23:33:50,2013-10-01 13:20:24,2013-09-12 13:05:48,1,345,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11231,MAGAA,4,2013-09-03 23:41:07,2013-09-17 19:25:16,2013-09-21 20:56:04,2,41.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11232,FRANR,1,2017-11-08 20:14:12,2017-12-10 03:07:22,2017-11-25 08:28:08,1,205.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11233,MORGK,7,2014-07-23 16:03:26,2014-08-22 23:36:13,2014-08-04 11:22:37,1,120.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11234,FOLKO,9,2013-07-07 12:35:23,2013-08-10 19:12:30,2013-07-14 08:27:12,2,334,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11235,FOLKO,2,2015-01-05 00:06:51,2015-01-09 14:57:32,2015-01-09 01:18:42,1,87.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11236,MORGK,7,2019-04-30 09:14:04,2019-05-01 19:43:21,2019-05-01 14:10:41,3,439.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11237,FISSA,4,2016-07-20 10:25:10,2016-08-24 19:56:00,2016-07-25 05:03:12,1,444.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11238,DUMON,3,2014-01-26 23:21:35,2014-02-06 23:05:51,2014-01-27 09:27:27,3,104.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11239,BLAUS,8,2021-05-11 03:54:14,2021-06-06 02:55:57,2021-05-23 02:36:29,2,52,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11240,ALFKI,2,2020-12-27 13:13:57,2021-01-01 17:50:29,2021-01-02 00:21:21,2,52,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11241,GREAL,9,2023-09-14 06:12:58,2023-10-07 11:37:23,2023-10-06 04:11:11,1,81.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11242,OCEAN,8,2020-03-26 00:21:42,2020-04-14 16:55:29,2020-03-29 12:37:46,3,191.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11243,WOLZA,6,2017-08-03 02:24:09,2017-08-03 15:56:35,2017-08-12 03:47:37,1,210.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11244,DUMON,4,2014-07-30 19:17:57,2014-08-04 09:20:01,2014-08-09 21:00:43,1,69,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11245,DUMON,3,2017-04-24 17:55:58,2017-05-04 09:42:35,2017-04-26 04:41:42,1,194.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11246,REGGC,7,2013-07-11 01:35:17,2013-08-14 17:13:40,2013-07-12 00:07:48,1,462.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11247,CENTC,9,2022-09-21 10:39:39,2022-10-18 07:42:20,2022-09-27 07:34:40,2,96,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11248,THECR,8,2021-02-26 07:08:41,2021-02-27 01:12:16,2021-03-22 15:37:31,1,146.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11249,RATTC,8,2020-04-19 20:07:34,2020-04-22 09:11:47,2020-05-09 04:10:43,3,66.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11250,SAVEA,4,2015-07-18 16:40:45,2015-08-08 22:19:42,2015-07-25 21:50:42,2,172.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11251,FRANK,2,2019-06-26 08:49:03,2019-07-07 12:32:58,2019-06-29 18:07:56,3,371,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11252,OCEAN,3,2014-10-16 04:25:32,2014-10-18 13:33:06,2014-10-17 06:18:57,2,115.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11253,DUMON,9,2013-09-30 01:12:18,2013-11-19 04:14:44,2013-10-07 23:41:48,3,133.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11254,MORGK,9,2013-07-02 07:33:08,2013-07-09 01:49:55,2013-07-03 21:16:47,3,315,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11255,REGGC,7,2021-03-25 16:35:32,2021-03-31 10:15:05,2021-04-08 05:29:05,3,24.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11256,DRACD,7,2020-12-02 14:15:57,2020-12-09 07:12:52,2020-12-09 03:31:15,2,254.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11257,RICAR,1,2013-10-03 01:27:45,2013-10-07 07:47:02,2013-10-14 03:06:21,1,387,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11258,BSBEV,9,2016-10-14 21:12:36,2016-10-28 19:07:49,2016-10-28 01:27:16,1,438.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11259,LONEP,5,2023-01-22 17:33:30,2023-02-11 05:14:55,2023-01-30 16:27:30,1,393,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11260,FURIB,1,2014-03-07 14:03:03,2014-04-07 00:29:16,2014-03-12 17:42:13,3,307.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11261,NORTS,5,2019-09-11 08:31:41,2019-10-07 10:09:19,2019-09-17 03:23:22,1,416,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11262,HANAR,1,2018-09-19 19:53:31,2018-10-31 05:30:45,2018-09-21 17:07:56,2,94,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11263,BONAP,3,2022-05-26 10:43:23,2022-06-03 15:32:46,2022-06-18 06:05:23,1,79.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11264,SAVEA,1,2020-05-06 13:40:49,2020-05-11 20:30:31,2020-05-07 05:40:44,1,217,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11265,FRANK,4,2020-12-19 17:21:23,2021-01-16 05:00:56,2020-12-27 01:04:44,1,310,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11266,THEBI,4,2017-07-06 17:26:21,2017-07-13 13:36:26,2017-07-08 11:55:32,3,203.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11267,COMMI,4,2021-08-07 10:42:35,2021-09-06 02:41:44,2021-08-12 01:36:16,3,95.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11268,WOLZA,9,2020-04-08 09:36:59,2020-05-02 17:31:12,2020-04-13 13:52:59,3,12.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11269,SUPRD,4,2015-11-04 16:52:40,2015-12-03 15:01:49,2015-11-08 14:52:15,3,359,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11270,BLONP,8,2013-05-05 18:24:23,2013-06-16 05:45:04,2013-05-07 07:40:10,1,68.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11271,EASTC,9,2013-12-21 20:33:27,2014-01-06 14:25:25,2013-12-28 19:22:09,2,23.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11272,MAGAA,8,2023-05-14 07:09:23,2023-05-30 07:02:21,2023-05-16 04:42:28,2,256.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11273,CACTU,3,2019-11-24 06:55:08,2019-11-25 18:21:44,2019-11-30 22:58:40,3,112,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11274,FRANR,6,2020-03-05 04:37:04,2020-03-10 07:23:04,2020-03-17 11:10:28,3,376.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11275,OTTIK,4,2014-09-17 12:19:55,2014-09-29 17:13:15,2014-09-19 06:23:17,1,136.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11276,FURIB,6,2017-02-07 13:01:56,2017-02-17 07:12:31,2017-02-12 18:19:17,1,155,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11277,CACTU,6,2020-11-24 23:18:21,2020-12-07 00:04:30,2020-11-26 10:04:01,3,348.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11278,ANATR,8,2020-03-21 02:19:53,2020-05-13 06:27:57,2020-03-23 06:57:28,2,309.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11279,MAGAA,4,2023-06-15 03:53:43,2023-07-14 18:01:47,2023-06-17 02:54:10,3,32.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11280,SIMOB,3,2014-05-10 22:03:58,2014-06-02 01:10:09,2014-05-17 18:31:16,2,372,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11281,SEVES,6,2018-09-01 21:51:16,2018-09-15 07:10:21,2018-09-17 03:03:03,3,459,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11282,WELLI,6,2021-02-23 04:25:41,2021-02-27 13:49:53,2021-03-05 05:35:57,2,460.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11283,FAMIA,7,2017-12-19 09:22:23,2017-12-29 19:35:50,2017-12-20 19:40:48,3,467.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11284,TRADH,7,2023-04-04 18:00:40,2023-04-16 17:57:41,2023-04-09 00:08:39,1,335.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11285,ANTON,9,2016-10-23 21:54:07,2016-11-02 06:13:58,2016-10-26 07:43:13,3,32.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11286,TRADH,9,2019-04-28 23:42:43,2019-05-01 13:30:56,2019-05-06 16:57:13,2,263.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11287,RATTC,5,2017-09-30 14:33:10,2017-10-04 23:47:55,2017-10-01 10:29:15,1,50.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11288,BERGS,1,2015-10-23 03:29:09,2015-10-23 18:12:29,2015-10-26 15:14:46,1,69.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11289,SPLIR,3,2013-07-09 23:06:21,2013-07-18 12:26:27,2013-07-22 18:00:15,2,23.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11290,ROMEY,9,2019-07-09 04:35:02,2019-08-06 21:07:33,2019-07-15 17:00:25,2,128,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11291,BLAUS,6,2015-03-04 22:07:49,2015-04-04 04:38:41,2015-03-07 11:17:47,3,227,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11292,LACOR,7,2021-10-21 17:01:27,2021-10-24 17:28:58,2021-10-30 15:43:32,3,145.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11293,PARIS,9,2019-11-02 06:00:45,2019-12-23 23:39:03,2019-11-03 20:34:36,2,226.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11294,LAZYK,2,2013-03-23 07:30:11,2013-04-21 22:18:46,2013-03-28 01:50:14,2,358.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11295,ERNSH,2,2022-08-30 06:44:51,2022-09-25 04:32:37,2022-09-04 02:38:39,2,451.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11296,LEHMS,2,2014-01-13 18:11:50,2014-02-01 17:18:45,2014-02-12 00:59:34,3,454.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11297,LETSS,8,2014-01-16 22:37:25,2014-01-17 18:35:12,2014-02-05 22:13:53,2,201,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11298,WHITC,9,2023-10-25 13:00:29,2023-10-30 20:13:36,2023-11-07 08:52:17,1,345,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11299,GREAL,2,2014-04-13 01:38:48,2014-04-26 06:38:56,2014-04-18 01:07:21,1,472.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11300,LILAS,3,2020-04-27 03:19:16,2020-05-27 23:27:03,2020-05-08 01:38:27,2,205,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11301,ISLAT,8,2015-12-08 07:53:46,2015-12-09 23:09:54,2015-12-12 16:41:34,2,142,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11302,WELLI,7,2019-04-09 11:12:11,2019-05-01 21:51:19,2019-04-27 05:21:41,1,173.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11303,OCEAN,9,2017-07-08 22:47:40,2017-07-15 18:32:08,2017-07-12 17:36:23,1,156.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11304,VALON,3,2016-01-17 23:15:51,2016-02-07 05:20:05,2016-01-20 17:08:57,3,154.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11305,QUICK,2,2018-08-14 13:25:03,2018-09-10 04:28:04,2018-09-05 11:53:11,3,379.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +11306,DRACD,9,2015-11-10 02:11:59,2015-12-05 13:54:38,2015-11-13 16:59:27,1,119,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11307,HUNGO,6,2015-12-30 10:35:03,2016-01-08 07:07:50,2016-01-02 23:28:38,3,236,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11308,WILMK,1,2022-02-03 22:07:42,2022-03-21 04:09:38,2022-02-04 17:22:46,3,493.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11309,BONAP,2,2023-04-09 02:29:29,2023-04-20 05:58:47,2023-04-26 02:37:45,2,306.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11310,BOTTM,8,2020-07-16 21:53:01,2020-07-23 03:46:24,2020-08-03 05:56:35,3,64.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11311,EASTC,1,2019-10-23 02:33:52,2019-10-23 04:14:35,2019-10-31 22:20:19,2,235,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11312,PICCO,1,2017-05-18 16:25:19,2017-06-09 23:02:02,2017-05-19 15:36:05,1,14,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11313,ERNSH,7,2019-04-10 16:30:54,2019-04-21 18:19:03,2019-04-10 23:23:44,2,131.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11314,SPECD,2,2020-03-02 05:03:20,2020-03-28 19:20:34,2020-03-03 00:06:55,3,132.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11315,PRINI,6,2021-11-16 20:19:47,2021-11-19 05:05:49,2021-12-07 11:58:08,1,101.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11316,ROMEY,3,2018-07-30 21:06:37,2018-09-07 02:39:03,2018-08-06 10:41:55,3,132.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11317,BOLID,1,2017-08-18 00:27:45,2017-08-26 12:44:51,2017-08-24 16:52:59,2,366.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11318,HUNGC,9,2015-11-02 22:31:46,2015-11-07 16:58:36,2015-11-23 20:45:50,3,275.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11319,BOTTM,2,2017-10-08 09:21:39,2017-10-16 16:48:23,2017-10-11 23:20:39,2,321.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11320,THEBI,2,2017-12-12 14:43:30,2017-12-20 10:31:06,2018-01-04 02:04:07,3,310,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11321,WHITC,1,2022-06-04 09:23:07,2022-07-21 22:31:02,2022-06-20 21:07:00,1,100,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11322,RANCH,4,2018-07-18 22:52:25,2018-08-10 08:30:50,2018-07-19 22:49:30,2,325.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11323,MORGK,4,2021-05-07 21:56:40,2021-06-11 14:09:47,2021-05-25 21:07:38,3,333,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11324,ROMEY,9,2015-09-28 15:17:23,2015-10-12 20:09:40,2015-10-12 07:41:09,3,247,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11325,DUMON,6,2018-01-25 21:38:39,2018-02-25 08:07:37,2018-01-26 07:02:58,3,42.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11326,BERGS,2,2013-12-01 11:24:43,2013-12-22 11:25:46,2013-12-04 16:18:08,2,155,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11327,MEREP,2,2021-03-14 19:49:44,2021-04-20 05:55:59,2021-03-15 02:54:19,1,51.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +11328,OCEAN,2,2015-10-29 15:27:06,2015-12-24 23:32:48,2015-11-15 10:27:37,2,295.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11329,LAZYK,3,2017-07-29 07:31:45,2017-07-31 16:11:18,2017-07-30 18:15:50,2,330,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11330,GROSR,3,2014-03-11 14:09:41,2014-03-25 03:37:14,2014-03-18 04:01:37,3,185,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11331,TRAIH,9,2014-07-28 11:45:15,2014-08-02 17:56:20,2014-07-29 07:16:31,3,508.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11332,FOLIG,5,2014-08-04 07:31:56,2014-08-04 09:55:05,2014-08-06 05:31:42,2,367.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11333,GREAL,3,2021-03-05 19:47:39,2021-04-07 01:49:09,2021-03-06 07:37:02,1,156.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11334,TOMSP,6,2014-12-27 10:25:44,2015-02-04 08:46:02,2014-12-28 17:13:26,2,444.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11335,VINET,9,2020-11-19 23:17:45,2020-11-28 10:34:06,2020-11-27 08:56:00,3,409.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11336,THECR,4,2023-05-25 20:00:46,2023-06-28 16:39:59,2023-06-01 22:01:03,3,40.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11337,SPLIR,2,2015-08-25 05:07:16,2015-09-13 05:39:49,2015-09-09 01:19:02,3,46.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11338,CONSH,8,2023-04-26 01:44:24,2023-05-09 23:52:12,2023-04-29 10:58:16,1,250.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11339,KOENE,8,2019-11-23 04:31:53,2019-12-06 09:52:55,2019-11-28 19:58:38,3,443,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11340,VALON,4,2017-07-20 09:17:10,2017-08-18 13:29:13,2017-07-21 11:17:22,3,92,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11341,THEBI,2,2016-01-16 07:10:22,2016-01-24 20:24:37,2016-01-27 15:05:46,2,362.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11342,SPLIR,8,2013-10-10 18:56:43,2013-11-18 20:20:14,2013-10-11 19:18:37,3,431.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11343,ROMEY,5,2018-10-16 14:42:53,2018-10-23 07:47:30,2018-10-23 06:42:00,1,35.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11344,TRADH,7,2012-10-13 14:50:59,2012-10-26 08:27:08,2012-10-19 23:00:32,3,247.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11345,LETSS,7,2015-12-30 03:17:08,2016-01-24 16:04:38,2016-01-22 10:02:36,2,267,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11346,WOLZA,2,2016-11-08 00:25:26,2016-12-09 12:53:59,2016-11-15 22:38:29,1,86,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11347,SPECD,7,2013-09-26 15:38:01,2013-10-27 00:37:19,2013-10-20 22:00:29,2,133.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11348,FRANR,3,2014-06-16 02:04:17,2014-06-27 16:42:21,2014-06-24 16:11:50,2,92,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11349,FOLKO,6,2015-12-27 23:48:44,2016-02-01 17:06:36,2016-01-03 14:55:45,1,306,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11350,LETSS,9,2022-09-03 02:41:26,2022-09-20 04:51:05,2022-09-11 12:09:19,2,498.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11351,GOURL,5,2016-01-11 02:32:53,2016-02-03 23:49:59,2016-01-11 22:49:38,3,321.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11352,OCEAN,4,2014-12-10 20:39:50,2014-12-29 01:09:05,2014-12-12 07:38:44,1,368,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11353,LAMAI,6,2021-03-30 14:17:28,2021-05-01 06:47:15,2021-04-17 13:10:18,2,198.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11354,LAUGB,3,2020-05-26 10:46:22,2020-06-02 07:35:15,2020-05-27 02:00:22,2,126.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11355,HILAA,3,2015-11-28 04:33:18,2015-12-28 09:07:37,2015-12-01 17:34:57,3,493.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11356,KOENE,6,2014-07-19 10:56:18,2014-07-28 09:30:06,2014-07-23 00:37:21,2,392,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11357,WELLI,5,2015-01-18 06:49:33,2015-02-21 06:40:00,2015-01-23 16:21:37,1,286,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11358,DUMON,4,2017-07-20 16:11:57,2017-08-06 07:53:35,2017-07-20 19:33:08,1,102.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11359,QUEEN,9,2023-06-06 18:35:39,2023-06-20 01:20:47,2023-06-09 10:39:18,1,263.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11360,FAMIA,8,2020-09-07 18:53:31,2020-09-23 04:40:37,2020-09-13 07:15:26,3,426.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11361,HUNGC,5,2016-01-12 16:27:23,2016-01-30 19:21:06,2016-01-27 12:54:07,1,298.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11362,VICTE,5,2017-11-09 00:30:43,2017-11-22 09:40:11,2017-11-22 17:09:50,1,123,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11363,RICSU,4,2019-08-30 20:34:11,2019-09-09 20:18:12,2019-09-01 20:45:10,3,441.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11364,BERGS,4,2015-11-29 18:20:54,2015-12-17 20:47:50,2015-12-09 04:21:18,3,362.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11365,SPLIR,6,2021-02-24 22:44:33,2021-04-22 19:51:39,2021-03-01 19:21:07,3,97.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11366,LAUGB,1,2022-09-10 11:36:02,2022-10-23 12:09:42,2022-09-28 04:44:00,1,242.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11367,RATTC,8,2021-06-28 16:50:09,2021-08-06 10:12:26,2021-07-13 03:17:42,3,28,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11368,BLAUS,8,2016-01-21 15:18:20,2016-02-05 17:21:33,2016-02-16 05:57:46,3,264.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11369,CHOPS,6,2019-10-04 12:08:43,2019-10-09 16:57:00,2019-10-10 11:24:08,3,83.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +11370,HILAA,5,2014-10-29 07:32:45,2014-11-11 12:31:12,2014-11-19 15:45:24,2,284,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11371,HUNGO,1,2018-06-05 13:56:10,2018-06-24 06:14:33,2018-06-11 12:23:54,1,107.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11372,LAUGB,7,2023-09-28 15:05:14,2023-09-28 18:53:49,2023-10-10 20:22:49,2,181.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11373,OLDWO,9,2012-12-07 05:58:10,2013-01-16 14:51:46,2012-12-18 05:04:10,3,307,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11374,WOLZA,9,2022-01-25 05:14:30,2022-01-25 17:22:52,2022-02-06 04:36:02,1,255.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +11375,LAZYK,4,2016-12-13 14:02:55,2017-01-05 09:42:14,2016-12-20 06:10:36,2,251.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11376,GODOS,9,2018-08-11 17:24:54,2018-08-23 09:33:52,2018-08-14 17:08:58,2,70.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11377,WHITC,7,2020-12-22 06:36:52,2021-01-06 08:04:43,2020-12-23 01:06:20,3,179,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11378,BSBEV,2,2017-08-06 18:36:35,2017-08-09 06:21:23,2017-08-07 20:00:03,3,188.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11379,FRANR,2,2014-02-02 02:39:20,2014-02-07 06:15:41,2014-02-08 09:30:13,1,160,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11380,FRANR,9,2018-08-13 08:04:11,2018-09-08 18:24:26,2018-08-19 18:37:35,2,392,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11381,WELLI,2,2018-10-31 12:17:34,2018-12-01 18:49:26,2018-11-03 14:00:17,1,423.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11382,CONSH,8,2018-11-11 21:26:31,2018-12-13 14:51:17,2018-11-18 03:46:56,1,245.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11383,HUNGC,2,2017-02-18 19:39:40,2017-02-19 11:45:34,2017-02-19 21:14:35,1,224.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11384,QUEDE,9,2019-03-07 22:21:09,2019-03-08 13:08:45,2019-03-09 06:56:17,1,65,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11385,MAISD,9,2013-09-12 03:30:22,2013-09-25 00:59:28,2013-09-26 13:52:14,1,20.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11386,HUNGC,5,2017-05-11 13:48:27,2017-05-17 13:50:32,2017-05-13 14:20:11,2,518.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11387,SPLIR,7,2020-04-14 23:36:43,2020-04-15 13:42:49,2020-04-28 06:46:16,2,278.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11388,LAUGB,3,2022-02-22 19:01:49,2022-02-23 09:51:11,2022-03-01 22:07:19,3,138.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11389,SANTG,4,2021-07-14 10:01:59,2021-08-07 12:31:28,2021-07-16 21:56:50,1,79.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11390,ISLAT,1,2015-09-03 19:31:10,2015-09-08 14:35:35,2015-09-08 06:32:09,2,42.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11391,FRANR,9,2020-01-30 16:07:17,2020-02-05 14:52:47,2020-02-04 22:22:38,1,106.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11392,LAUGB,9,2014-04-08 17:47:07,2014-05-02 20:57:59,2014-04-13 16:04:20,1,247.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11393,LAMAI,8,2021-05-10 09:30:58,2021-05-28 17:05:09,2021-05-22 23:31:19,3,151,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11394,VICTE,8,2016-06-11 23:18:44,2016-07-03 08:00:06,2016-06-19 01:12:17,3,481.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11395,PRINI,6,2020-07-28 10:50:08,2020-09-23 02:09:00,2020-08-03 05:01:44,3,325.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11396,SPECD,2,2022-04-20 17:03:10,2022-04-21 14:37:54,2022-05-01 02:04:51,3,354.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11397,BSBEV,2,2018-01-17 15:48:49,2018-01-30 05:18:03,2018-01-17 15:57:14,3,471.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11398,RICAR,8,2019-05-13 09:03:48,2019-06-15 01:17:24,2019-05-15 22:14:13,3,499.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11399,WOLZA,9,2013-09-08 05:14:10,2013-09-26 20:52:25,2013-09-09 07:00:52,1,180.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11400,OTTIK,3,2021-10-01 06:02:57,2021-11-06 01:12:03,2021-10-25 02:32:26,2,175.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11401,HUNGC,3,2017-05-27 14:00:20,2017-06-06 18:43:55,2017-06-23 19:24:20,1,370.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11402,SPECD,3,2016-08-13 23:19:49,2016-09-04 02:04:10,2016-08-17 01:43:22,2,242.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11403,HUNGC,6,2023-03-06 15:03:09,2023-03-22 08:45:08,2023-03-09 06:42:28,3,116,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11404,WOLZA,2,2014-11-14 10:01:56,2014-11-27 23:51:19,2014-11-25 07:11:30,3,472.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11405,FRANR,9,2017-02-27 00:19:35,2017-03-31 16:23:52,2017-02-27 22:51:33,3,86,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11406,CONSH,9,2013-01-14 00:31:19,2013-02-12 22:06:55,2013-01-14 16:23:50,3,96,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11407,GODOS,3,2021-07-22 22:59:09,2021-08-16 20:23:38,2021-07-24 02:14:05,1,210.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11408,TOMSP,6,2023-06-19 22:24:38,2023-08-08 20:12:32,2023-06-30 20:12:46,2,100.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11409,Val2 ,6,2020-10-06 20:34:36,2020-10-17 06:41:44,2020-10-09 19:05:43,3,181,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11410,WANDK,2,2018-11-22 05:03:20,2018-12-14 19:52:37,2018-11-27 08:58:08,3,57,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11411,WARTH,7,2017-10-18 18:14:31,2017-10-23 17:49:00,2017-10-20 04:17:14,3,484.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11412,GOURL,4,2021-04-10 18:15:28,2021-05-04 05:10:58,2021-04-16 10:47:11,2,174.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11413,WARTH,8,2016-04-21 01:21:30,2016-04-22 16:21:11,2016-05-05 00:06:57,2,286.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11414,MAGAA,5,2015-11-06 10:39:03,2015-11-12 09:09:30,2015-11-11 02:34:19,2,260.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11415,GODOS,2,2022-10-25 08:01:09,2022-10-26 12:24:31,2022-11-02 18:40:15,3,249.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11416,OLDWO,2,2017-01-02 09:58:06,2017-01-19 20:49:50,2017-01-10 07:35:36,2,131,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11417,PARIS,8,2016-07-15 18:51:36,2016-07-22 01:39:00,2016-07-26 12:08:15,2,436.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11418,QUEDE,9,2016-01-26 11:48:32,2016-02-22 05:49:28,2016-02-05 16:10:40,1,423.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11419,SPLIR,9,2014-08-17 10:52:30,2014-08-24 05:32:39,2014-08-21 23:18:05,1,226.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11420,LAZYK,8,2016-06-06 20:24:31,2016-06-18 07:23:18,2016-06-07 21:10:20,1,171.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11421,FOLIG,7,2021-12-10 08:24:32,2021-12-11 19:34:43,2021-12-22 13:33:42,3,375,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11422,LAUGB,6,2016-04-09 16:56:58,2016-04-12 14:53:41,2016-04-24 11:12:41,3,280.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11423,QUEEN,5,2018-10-04 01:33:49,2018-10-23 06:39:10,2018-10-09 08:56:56,2,150.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11424,RATTC,4,2021-02-23 07:30:54,2021-03-07 05:57:48,2021-02-23 20:31:25,1,185,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11425,CENTC,4,2017-05-20 21:39:28,2017-05-27 04:02:53,2017-06-04 20:32:40,1,421.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11426,BERGS,1,2019-01-04 14:47:55,2019-01-26 14:43:21,2019-02-01 22:41:55,3,459,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11427,SPLIR,4,2015-08-14 13:57:44,2015-08-29 05:40:48,2015-08-27 07:05:21,3,499,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11428,EASTC,5,2019-05-25 07:21:00,2019-06-17 23:37:36,2019-05-30 14:09:14,2,376.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11429,FOLIG,4,2014-06-09 23:27:47,2014-06-12 00:16:37,2014-06-16 06:19:02,1,137.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11430,FAMIA,2,2015-04-02 19:41:42,2015-05-08 16:48:35,2015-04-05 13:45:24,3,408.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11431,SAVEA,4,2016-05-20 00:59:18,2016-05-27 20:19:11,2016-06-12 18:18:09,1,34.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11432,SANTG,5,2022-10-31 20:06:24,2022-12-20 20:40:57,2022-11-24 11:37:00,1,439.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11433,OLDWO,7,2022-11-17 11:41:04,2022-12-04 18:15:24,2022-11-17 11:49:59,3,267,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11434,PARIS,9,2022-10-16 12:47:24,2022-10-31 05:54:30,2022-10-31 23:25:07,2,412.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11435,ANATR,4,2019-08-27 13:28:25,2019-09-22 21:58:08,2019-08-28 16:38:28,3,392.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11436,FISSA,1,2018-09-27 06:34:29,2018-10-10 13:13:48,2018-10-15 03:25:03,1,480,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11437,OLDWO,9,2014-10-19 02:44:58,2014-10-22 18:45:25,2014-11-06 02:34:11,1,469.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11438,BOLID,5,2021-06-13 20:51:55,2021-07-02 03:02:29,2021-06-14 13:22:52,3,145.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11439,LILAS,7,2020-11-13 10:21:26,2020-12-09 23:12:17,2020-11-26 07:51:59,1,422,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11440,VALON,5,2017-12-22 05:53:52,2018-01-11 08:06:27,2018-01-13 12:26:15,2,163.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11441,THEBI,4,2015-04-27 07:31:33,2015-05-12 17:51:41,2015-05-06 18:45:48,2,205.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11442,LEHMS,3,2023-03-17 08:37:34,2023-04-16 03:04:19,2023-03-18 01:38:11,2,503.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11443,RICAR,8,2014-06-17 11:57:59,2014-06-18 00:48:23,2014-06-25 14:29:48,1,513,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11444,Val2 ,8,2018-04-20 20:54:28,2018-06-02 11:14:33,2018-04-27 10:35:43,3,530.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11445,WHITC,8,2016-09-24 13:10:55,2016-10-13 13:56:43,2016-10-09 22:02:10,2,59.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11446,WANDK,5,2021-01-07 12:55:59,2021-01-12 00:05:36,2021-01-19 10:26:10,2,404,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11447,PICCO,8,2013-04-02 04:02:52,2013-05-16 05:48:53,2013-04-05 22:22:50,3,446,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11448,BONAP,3,2020-03-26 05:45:01,2020-05-15 03:56:58,2020-04-08 17:17:49,1,260,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11449,LONEP,5,2021-01-14 02:22:28,2021-01-26 22:18:03,2021-01-21 19:10:54,1,198.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11450,ALFKI,4,2016-01-07 07:28:54,2016-02-02 21:47:52,2016-01-10 02:32:08,3,207.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11451,WHITC,1,2016-11-25 22:08:06,2016-11-26 20:10:45,2016-12-04 12:53:10,3,484.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11452,BSBEV,7,2023-01-15 23:36:03,2023-02-10 04:50:43,2023-02-02 11:40:52,3,292.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11453,FOLKO,5,2021-12-01 17:19:42,2021-12-16 04:57:39,2021-12-15 10:32:53,3,274,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11454,CONSH,3,2013-05-03 12:02:46,2013-05-05 17:46:04,2013-05-15 19:08:36,3,134,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11455,SANTG,7,2022-09-01 04:38:44,2022-09-18 07:49:42,2022-09-03 19:48:37,2,269.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11456,GALED,6,2016-02-23 09:04:14,2016-03-01 12:05:57,2016-02-25 04:19:26,3,34.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11457,WARTH,4,2019-01-03 14:57:07,2019-01-06 07:45:32,2019-01-09 21:44:51,2,172.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11458,AROUT,6,2018-03-24 00:10:41,2018-04-11 16:09:05,2018-03-24 16:50:54,1,296.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11459,WILMK,2,2014-10-08 17:50:05,2014-10-31 09:55:16,2014-10-15 03:00:25,2,445.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11460,OTTIK,3,2021-05-11 13:46:06,2021-05-14 02:44:36,2021-05-28 03:01:03,3,69.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11461,OLDWO,9,2017-08-15 07:38:30,2017-09-06 10:07:03,2017-08-15 08:43:27,3,114,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11462,EASTC,6,2013-03-16 11:20:53,2013-04-14 03:38:52,2013-03-20 16:00:06,1,437.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11463,FRANS,8,2016-05-07 13:15:03,2016-05-21 06:39:34,2016-05-13 16:00:47,1,214.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11464,LINOD,3,2013-12-28 18:46:41,2014-01-28 10:56:03,2013-12-28 19:08:29,2,440.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11465,GALED,3,2018-09-13 23:41:51,2018-10-25 00:14:13,2018-09-16 02:26:19,1,161,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11466,PARIS,1,2013-07-09 13:25:48,2013-08-04 00:14:00,2013-07-22 20:01:25,3,431.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11467,MAGAA,3,2018-02-06 21:10:37,2018-02-21 12:36:47,2018-02-12 11:56:50,2,197.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11468,PRINI,1,2015-03-02 20:52:20,2015-03-28 12:44:10,2015-03-05 01:59:18,1,260,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11469,FOLIG,1,2012-08-28 22:55:26,2012-09-11 10:24:38,2012-08-31 19:04:29,1,356,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11470,LEHMS,2,2017-03-18 20:58:48,2017-04-09 14:36:47,2017-03-25 15:01:26,3,179.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11471,BLONP,7,2016-03-08 11:11:49,2016-03-11 23:25:36,2016-04-06 05:21:26,1,108.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11472,AROUT,7,2019-06-30 03:05:43,2019-07-06 16:52:24,2019-07-08 08:33:08,2,303.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11473,HUNGC,3,2023-04-15 05:23:10,2023-04-26 06:01:36,2023-04-19 01:02:18,1,310.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11474,TOMSP,5,2016-04-06 16:04:48,2016-04-12 02:18:49,2016-04-27 13:12:22,2,368,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11475,VALON,9,2023-10-23 03:42:59,2023-11-19 07:07:05,2023-10-23 22:30:20,2,99.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11476,HANAR,8,2021-12-10 17:25:01,2022-01-04 19:13:36,2021-12-11 23:55:11,3,379.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11477,WARTH,4,2022-06-13 18:32:58,2022-07-14 14:06:04,2022-06-25 01:06:46,2,91,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11478,VICTE,8,2016-03-08 19:18:07,2016-03-25 12:08:48,2016-03-11 17:10:31,1,434.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11479,VAFFE,2,2020-09-17 02:38:05,2020-09-19 05:11:18,2020-09-24 07:44:20,1,157.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11480,DRACD,6,2023-05-19 15:06:48,2023-06-06 02:18:19,2023-06-03 22:42:28,1,295.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11481,GROSR,9,2020-10-12 02:21:12,2020-10-14 11:24:54,2020-10-23 15:22:13,1,30,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11482,QUICK,9,2017-04-23 17:58:22,2017-05-18 07:49:19,2017-04-23 20:19:01,1,308.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11483,HUNGO,3,2016-06-18 03:25:41,2016-07-31 08:42:44,2016-06-27 05:53:27,2,299.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11484,HILAA,4,2017-05-05 13:15:10,2017-05-17 00:26:14,2017-05-05 19:09:39,3,517,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11485,BOLID,9,2022-08-04 05:51:13,2022-08-17 11:48:07,2022-08-14 07:44:41,2,523,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11486,FISSA,5,2021-08-15 19:23:16,2021-09-02 18:11:25,2021-08-30 16:23:18,3,54.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11487,WILMK,2,2015-05-05 20:50:56,2015-06-03 10:02:57,2015-05-09 07:51:31,2,552.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11488,PARIS,8,2018-01-12 18:44:19,2018-01-12 19:56:24,2018-01-20 17:53:53,1,351.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11489,LILAS,1,2017-09-17 09:44:48,2017-10-01 21:21:39,2017-09-18 05:33:52,3,71.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11490,LONEP,6,2022-03-03 09:48:34,2022-03-14 10:59:53,2022-03-06 04:50:54,2,89,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11491,LEHMS,9,2020-12-04 02:46:27,2020-12-05 07:11:00,2020-12-06 01:03:40,2,127,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11492,REGGC,9,2013-09-16 07:17:00,2013-09-27 22:41:01,2013-09-18 16:41:41,3,352.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11493,REGGC,8,2018-06-06 17:16:50,2018-06-07 07:40:54,2018-06-18 07:44:23,1,315,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11494,MORGK,3,2021-06-24 04:01:29,2021-07-05 02:49:11,2021-06-27 03:35:01,1,173.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11495,FRANK,5,2022-05-23 16:52:08,2022-07-04 18:59:20,2022-05-25 15:05:14,1,531.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11496,BONAP,3,2021-12-30 00:28:03,2022-01-18 03:11:47,2022-01-20 16:19:51,1,329.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11497,CACTU,1,2013-09-02 22:38:29,2013-09-16 22:51:12,2013-09-06 13:29:09,2,50.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11498,SPLIR,6,2022-12-03 02:06:51,2022-12-07 20:58:06,2022-12-26 19:28:14,2,352.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11499,Val2 ,6,2021-12-21 12:13:19,2022-02-04 06:13:13,2021-12-23 05:51:32,2,109,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11500,LILAS,1,2015-06-10 01:36:17,2015-07-13 03:00:30,2015-06-10 15:10:24,1,12.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11501,FURIB,6,2016-02-21 00:13:54,2016-03-27 23:29:57,2016-03-09 03:19:07,1,180.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11502,TRADH,1,2020-11-24 01:58:11,2020-11-26 08:11:35,2020-11-28 03:20:39,2,183.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11503,BONAP,2,2017-01-21 06:07:08,2017-01-27 00:37:22,2017-01-28 06:53:04,1,432.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11504,THECR,9,2014-07-09 02:48:46,2014-07-21 11:34:20,2014-07-16 11:06:02,3,412.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11505,LILAS,5,2023-03-10 23:06:56,2023-03-29 21:51:13,2023-03-16 14:13:57,1,358.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11506,QUEEN,3,2012-10-05 01:57:01,2012-10-11 12:20:15,2012-10-08 09:59:50,1,97.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11507,CONSH,4,2022-06-13 15:11:42,2022-08-06 10:34:21,2022-06-18 18:16:56,2,305.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11508,VINET,1,2019-04-15 13:06:17,2019-05-01 14:23:40,2019-04-28 01:08:36,2,176.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11509,QUICK,2,2021-10-07 02:07:12,2021-10-14 23:17:01,2021-10-07 07:39:00,2,516.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11510,QUICK,8,2016-03-18 05:12:06,2016-03-23 07:00:15,2016-03-23 12:03:16,3,157.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11511,EASTC,2,2015-07-22 04:34:37,2015-08-03 20:22:06,2015-07-22 18:14:47,1,209.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11512,SPLIR,8,2018-05-28 03:05:58,2018-06-17 01:27:12,2018-06-01 16:23:40,3,303.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11513,MAISD,8,2015-08-14 09:08:11,2015-09-06 12:15:02,2015-08-31 05:11:07,3,450,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11514,Val2 ,4,2022-07-05 19:21:04,2022-07-30 15:14:26,2022-07-31 21:41:37,1,216.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11515,SPECD,1,2014-02-10 20:28:12,2014-02-11 02:53:37,2014-02-12 22:38:39,2,114.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11516,BERGS,9,2017-08-02 19:08:37,2017-09-03 12:38:33,2017-08-06 07:14:43,3,159.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11517,GALED,3,2015-09-07 20:11:39,2015-10-08 09:16:37,2015-09-08 02:26:36,3,447.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11518,Val2 ,7,2022-06-05 23:27:44,2022-07-04 14:17:13,2022-06-17 19:42:15,2,77.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11519,VICTE,2,2020-04-21 20:21:48,2020-05-13 06:28:52,2020-05-02 16:43:51,1,58,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11520,MAISD,4,2023-01-03 05:20:32,2023-01-10 06:56:26,2023-01-13 11:48:18,2,153,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11521,BSBEV,1,2016-06-24 16:28:28,2016-06-29 16:26:31,2016-06-28 04:16:24,3,404.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11522,HILAA,6,2013-03-14 20:23:47,2013-04-18 05:45:52,2013-03-23 18:52:40,2,98,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11523,BLONP,5,2023-07-19 11:56:30,2023-08-05 20:23:37,2023-07-19 12:14:11,1,319.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11524,DUMON,1,2023-06-14 05:57:46,2023-06-25 13:43:42,2023-06-15 06:51:31,1,475,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11525,PICCO,7,2020-09-07 17:52:13,2020-09-23 18:41:48,2020-09-10 11:18:34,1,77.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11526,RATTC,4,2019-11-29 17:37:07,2019-12-16 11:42:39,2019-12-03 05:15:22,2,541.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11527,BLAUS,1,2019-06-29 09:24:53,2019-08-04 09:48:42,2019-07-03 22:02:08,2,468.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11528,SEVES,9,2021-12-16 04:20:45,2021-12-16 21:53:42,2021-12-28 22:14:46,1,446.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11529,QUICK,9,2019-07-02 18:13:03,2019-08-06 18:23:02,2019-07-17 03:03:39,1,85,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11530,RANCH,7,2014-11-05 13:24:39,2014-11-22 17:13:15,2014-11-06 19:06:54,2,430.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11531,BOTTM,4,2020-09-13 03:46:02,2020-09-23 11:10:03,2020-09-13 17:34:40,1,241.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11532,WHITC,2,2017-05-23 12:27:19,2017-06-14 21:59:55,2017-05-24 01:15:55,1,516.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11533,LETSS,2,2023-01-20 23:15:47,2023-01-31 03:04:56,2023-01-25 20:23:46,3,245.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11534,GOURL,3,2017-01-16 17:22:33,2017-01-23 02:28:39,2017-01-21 19:57:42,2,123.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11535,DRACD,6,2014-08-18 04:06:56,2014-09-11 02:46:32,2014-08-26 07:48:31,3,217,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +11536,ANATR,3,2016-04-10 08:40:50,2016-05-13 19:45:47,2016-04-16 20:00:23,3,285.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11537,BOLID,6,2020-11-19 02:36:11,2020-12-01 20:39:00,2020-11-21 05:44:57,2,483.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11538,COMMI,9,2023-04-20 13:10:44,2023-04-29 17:43:21,2023-04-23 00:20:19,2,261.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11539,SANTG,6,2015-10-25 15:14:16,2015-11-18 07:44:13,2015-10-30 17:04:09,2,471.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11540,BOLID,6,2023-06-16 02:37:16,2023-06-16 21:14:59,2023-06-22 06:42:09,1,345.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11541,OLDWO,4,2019-03-18 03:02:42,2019-03-21 18:55:07,2019-03-18 07:54:23,1,75.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11542,ROMEY,3,2023-09-24 15:22:22,2023-09-27 18:58:07,2023-09-25 04:34:54,2,342.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11543,BOTTM,8,2016-11-08 19:19:16,2016-12-20 05:41:22,2016-11-09 02:50:53,3,399.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11544,BERGS,3,2021-11-05 17:47:22,2021-11-30 09:33:13,2021-11-06 12:17:34,2,217.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11545,WANDK,3,2013-10-10 23:48:47,2013-11-13 15:38:02,2013-10-11 23:42:23,2,257.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11546,BERGS,5,2014-06-17 12:01:32,2014-07-19 03:48:27,2014-06-21 10:57:49,2,217.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11547,ERNSH,8,2013-02-06 11:16:57,2013-02-22 03:22:48,2013-02-07 07:51:26,3,207.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11548,MEREP,5,2022-07-09 12:16:43,2022-07-31 22:01:17,2022-07-13 21:41:11,2,338.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11549,FRANK,8,2018-12-10 06:59:20,2018-12-17 14:33:37,2018-12-10 16:39:51,2,248.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11550,PERIC,1,2015-09-21 21:13:47,2015-10-02 00:39:24,2015-10-01 17:15:00,3,335.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11551,RATTC,6,2017-11-12 02:32:52,2017-11-12 16:20:15,2017-11-16 22:44:51,3,284,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11552,GOURL,8,2023-09-25 22:14:51,2023-10-12 06:20:53,2023-10-07 21:41:54,3,347,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11553,QUEDE,9,2014-04-25 22:47:04,2014-05-20 01:40:05,2014-04-29 22:33:33,3,197.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11554,SUPRD,3,2015-01-10 16:41:50,2015-01-21 17:03:43,2015-01-11 15:21:24,1,279.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11555,OTTIK,9,2016-01-20 10:52:38,2016-02-02 01:04:14,2016-01-28 06:55:15,2,501.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11556,MORGK,8,2019-04-08 04:37:54,2019-04-24 00:41:54,2019-04-18 14:13:07,2,440.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11557,BONAP,7,2020-10-17 01:27:49,2020-12-01 06:38:31,2020-10-28 20:44:22,2,295.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11558,SEVES,5,2023-09-18 20:31:43,2023-09-25 01:53:09,2023-10-01 02:42:43,2,428.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11559,CACTU,6,2023-04-04 12:06:24,2023-04-30 02:02:17,2023-04-11 03:17:51,1,530.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11560,GOURL,2,2022-08-10 14:32:41,2022-09-14 19:35:03,2022-08-11 01:13:08,3,383.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11561,LACOR,9,2012-12-03 12:20:25,2012-12-17 02:58:55,2012-12-17 22:17:34,1,203.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11562,TRADH,6,2018-01-07 03:26:52,2018-01-25 03:52:25,2018-01-29 15:38:40,3,117.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11563,MAGAA,2,2014-11-20 11:45:27,2014-11-30 21:38:57,2014-11-20 14:39:45,2,403,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11564,LAMAI,5,2013-08-09 00:58:46,2013-08-14 00:17:41,2013-08-18 10:48:51,3,158.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11565,RANCH,1,2020-09-15 14:12:24,2020-09-26 04:26:24,2020-09-25 10:09:41,1,340.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11566,LETSS,2,2016-03-23 04:17:35,2016-03-27 22:25:44,2016-03-23 19:44:13,3,426.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11567,WANDK,5,2013-12-01 21:00:57,2014-01-12 04:09:03,2013-12-03 19:19:16,1,379.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11568,RICSU,4,2021-02-15 18:43:03,2021-03-05 18:06:03,2021-03-07 05:01:06,3,472.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11569,FRANK,1,2017-12-17 06:02:38,2017-12-26 08:20:11,2017-12-22 22:39:06,3,102.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11570,LILAS,4,2012-09-02 22:14:26,2012-10-11 13:13:01,2012-09-14 11:28:35,1,36.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11571,TRADH,4,2015-12-11 00:34:45,2015-12-15 09:13:18,2015-12-18 17:39:06,1,357.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11572,QUEEN,1,2023-03-12 04:44:30,2023-04-05 09:19:24,2023-03-19 05:44:44,1,256.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11573,FURIB,8,2018-02-08 17:57:13,2018-03-07 00:55:06,2018-02-13 00:56:19,2,209.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11574,TRAIH,8,2012-10-16 08:04:05,2012-11-04 11:49:31,2012-10-17 15:49:25,3,244.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11575,REGGC,6,2013-02-06 12:34:30,2013-02-24 19:37:25,2013-02-09 10:46:50,2,155.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11576,MAISD,9,2020-09-20 06:16:41,2020-10-27 06:23:11,2020-10-11 16:01:13,3,72,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11577,HUNGC,3,2020-05-02 17:15:14,2020-06-04 10:13:18,2020-05-12 07:48:26,3,441.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11578,MORGK,6,2020-09-28 09:48:27,2020-10-02 02:46:41,2020-09-29 00:22:30,1,373.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11579,FURIB,3,2020-04-06 09:53:12,2020-05-14 12:22:05,2020-04-25 01:28:40,1,20.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11580,VICTE,8,2020-09-03 09:20:39,2020-09-22 19:02:29,2020-09-16 19:15:30,1,141.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11581,BLAUS,5,2020-01-07 00:56:30,2020-02-12 20:16:33,2020-01-10 15:09:17,2,289.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11582,ISLAT,8,2019-05-24 10:57:01,2019-06-03 01:07:28,2019-05-26 08:21:31,3,271,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11583,ANATR,7,2022-11-07 06:15:51,2022-12-17 04:55:44,2022-11-25 16:59:11,2,294.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11584,QUICK,1,2021-04-22 19:05:43,2021-05-03 00:42:46,2021-04-25 04:33:19,3,110.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11585,REGGC,7,2015-08-26 05:47:17,2015-09-14 14:41:18,2015-09-03 03:16:19,1,236.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11586,FURIB,3,2021-02-09 20:46:32,2021-02-15 16:10:24,2021-02-11 06:48:40,2,284.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11587,DRACD,3,2018-10-09 00:15:56,2018-10-28 11:07:59,2018-10-12 04:00:53,1,53,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11588,HANAR,4,2016-12-28 23:48:29,2017-01-16 22:03:35,2017-01-10 05:39:27,3,424.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11589,WANDK,8,2014-12-16 12:48:13,2014-12-19 23:43:40,2014-12-22 02:36:54,2,387,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11590,BLONP,8,2017-08-04 09:10:16,2017-08-16 13:22:37,2017-08-04 21:29:42,2,250.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11591,ROMEY,5,2015-09-12 23:33:06,2015-10-05 08:22:43,2015-09-16 04:50:06,3,14.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11592,SEVES,5,2015-06-14 04:54:12,2015-06-30 12:04:40,2015-06-22 05:02:20,3,316.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11593,KOENE,1,2016-07-08 18:58:01,2016-08-02 17:17:24,2016-07-26 21:26:35,2,439.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11594,OCEAN,3,2017-03-01 19:28:21,2017-03-24 18:30:33,2017-03-03 12:54:38,3,395.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11595,PARIS,9,2021-09-06 17:25:41,2021-09-27 02:40:51,2021-09-14 16:52:35,3,387.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11596,GALED,9,2016-09-21 05:39:32,2016-10-23 23:21:44,2016-10-06 19:55:46,3,216.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11597,LAMAI,6,2023-06-03 17:43:40,2023-06-10 01:30:57,2023-06-12 12:01:06,2,244.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11598,SAVEA,3,2022-10-26 05:28:18,2022-10-30 10:12:53,2022-11-08 23:01:04,3,485.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11599,THEBI,1,2013-05-22 12:13:45,2013-06-04 14:21:08,2013-06-12 09:05:37,2,118.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11600,PARIS,4,2016-04-26 17:57:09,2016-04-27 09:24:49,2016-04-27 03:49:28,3,102.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11601,OTTIK,8,2016-08-02 19:33:27,2016-08-21 17:06:36,2016-08-11 00:31:24,2,248.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11602,VINET,8,2015-10-01 16:47:29,2015-10-27 09:19:49,2015-10-12 23:25:31,2,274.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11603,Val2 ,4,2013-03-17 08:04:06,2013-04-11 00:23:35,2013-03-22 12:44:34,3,234.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11604,BOTTM,3,2016-07-20 20:18:51,2016-08-08 01:09:50,2016-07-29 17:06:21,1,416,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11605,SEVES,5,2022-11-08 03:41:21,2022-12-16 19:47:41,2022-11-10 12:54:07,1,197.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11606,QUEEN,1,2021-10-09 08:05:02,2021-10-24 23:20:53,2021-10-11 10:17:10,1,147,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11607,LETSS,9,2020-08-14 19:28:25,2020-10-02 08:19:18,2020-08-20 17:08:14,1,155.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11608,TRADH,9,2013-10-12 08:20:39,2013-10-28 02:54:05,2013-10-22 19:12:02,3,18.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11609,WELLI,3,2017-06-11 22:03:11,2017-06-24 11:32:55,2017-06-12 00:35:24,2,247.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11610,MEREP,8,2015-07-03 13:55:47,2015-08-07 14:55:30,2015-07-10 11:32:32,2,339.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11611,RICSU,2,2014-01-05 20:01:29,2014-02-12 07:43:23,2014-01-22 08:43:55,1,70.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11612,VICTE,9,2020-02-29 19:45:11,2020-04-04 22:56:13,2020-03-08 21:25:48,2,412,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11613,RICSU,9,2020-05-19 10:42:43,2020-06-11 22:42:36,2020-05-24 21:20:08,1,238,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11614,GODOS,6,2012-09-12 11:58:29,2012-09-18 21:57:57,2012-09-18 04:01:50,3,470.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11615,GREAL,8,2017-05-06 13:45:43,2017-05-11 06:51:43,2017-05-07 22:50:15,1,321.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11616,THECR,9,2013-06-18 09:27:03,2013-06-22 21:16:45,2013-06-29 22:01:02,3,206.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11617,FOLIG,4,2023-04-07 13:02:27,2023-05-16 18:13:48,2023-04-23 04:39:22,1,260.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11618,WELLI,2,2015-06-07 05:59:33,2015-07-05 05:09:45,2015-06-17 14:42:35,3,94.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11619,LINOD,5,2023-09-03 23:16:21,2023-09-24 00:36:31,2023-09-05 04:46:48,1,193.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11620,RATTC,8,2017-03-14 22:49:31,2017-04-26 17:19:07,2017-03-15 18:11:45,1,129,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11621,DRACD,6,2016-05-26 07:12:38,2016-06-07 02:34:10,2016-06-10 06:56:50,1,326.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11622,HILAA,6,2023-06-08 02:34:21,2023-07-03 00:13:07,2023-06-17 04:51:49,3,310.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11623,NORTS,5,2017-01-07 19:26:46,2017-02-01 02:52:18,2017-01-22 06:48:57,1,269.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11624,ROMEY,7,2019-11-11 12:08:17,2019-12-19 00:35:51,2019-11-13 10:43:47,3,172.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11625,ANTON,7,2013-07-11 18:51:30,2013-07-18 23:17:08,2013-07-17 10:15:08,1,20.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11626,TRAIH,1,2015-07-03 09:18:15,2015-07-06 22:47:50,2015-07-13 05:07:33,2,32.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11627,FAMIA,5,2017-05-28 08:32:32,2017-06-16 16:43:42,2017-06-13 01:00:37,1,168.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11628,LAUGB,3,2017-05-24 17:50:23,2017-05-25 09:16:55,2017-05-27 10:05:00,2,61.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11629,ANATR,6,2020-02-28 05:34:57,2020-03-23 20:47:21,2020-03-05 06:50:27,2,295.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11630,LINOD,6,2019-12-01 17:22:06,2019-12-19 18:08:46,2019-12-02 14:23:04,2,194,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11631,WHITC,8,2023-05-09 17:02:19,2023-05-15 02:16:52,2023-05-18 17:35:45,3,79,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11632,GREAL,2,2022-12-09 13:14:18,2022-12-20 23:44:12,2022-12-15 10:01:54,3,418,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11633,LAMAI,7,2022-03-07 13:09:48,2022-03-09 04:04:20,2022-03-25 08:39:28,2,139,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11634,GODOS,5,2016-11-07 00:20:10,2016-11-26 03:30:02,2016-11-12 02:27:29,3,403.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11635,FOLKO,7,2023-09-11 16:55:42,2023-09-19 01:33:15,2023-10-06 17:44:23,2,221.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11636,BLONP,1,2021-06-04 19:45:13,2021-07-03 02:23:08,2021-06-05 05:33:09,3,106,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11637,PRINI,1,2015-12-06 18:21:53,2015-12-20 16:16:26,2015-12-11 19:56:22,2,12.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11638,BSBEV,1,2018-10-22 17:46:08,2018-10-31 01:05:06,2018-10-22 19:33:11,2,79.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11639,RICAR,7,2017-01-25 05:52:44,2017-02-10 14:06:50,2017-01-28 04:29:40,2,86.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11640,EASTC,7,2015-10-19 08:07:54,2015-12-04 05:38:01,2015-10-26 15:16:41,2,157,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11641,FOLIG,8,2020-07-09 07:42:22,2020-07-10 09:43:22,2020-07-11 15:32:04,2,96,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11642,CHOPS,5,2015-09-21 01:04:42,2015-10-27 15:20:48,2015-09-22 01:27:45,1,373.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11643,CACTU,2,2022-08-28 17:53:23,2022-09-01 14:44:59,2022-08-30 01:53:56,1,74.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11644,VAFFE,1,2022-03-16 09:13:37,2022-04-03 04:15:08,2022-03-17 01:20:20,1,364.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11645,ANTON,6,2017-08-17 02:18:45,2017-09-04 22:35:09,2017-08-25 22:15:51,2,115.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11646,OLDWO,8,2018-06-19 09:37:15,2018-07-13 11:47:19,2018-06-27 23:37:58,1,22,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11647,VICTE,9,2020-09-06 14:55:00,2020-09-22 08:19:43,2020-09-20 14:48:46,1,176.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11648,CONSH,9,2020-09-30 18:12:21,2020-10-27 04:54:08,2020-10-03 02:56:29,1,320.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11649,Val2 ,8,2023-06-09 00:45:01,2023-07-03 21:41:57,2023-06-10 08:44:20,2,155.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11650,SPECD,6,2012-11-21 13:56:05,2012-12-16 16:31:15,2012-11-27 03:14:11,1,191.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11651,QUEEN,3,2012-11-03 18:51:43,2012-12-07 18:01:41,2012-11-08 17:51:32,2,487.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11652,CHOPS,9,2014-04-23 04:30:00,2014-06-19 17:19:45,2014-05-08 06:39:31,1,74,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11653,WOLZA,6,2015-05-06 18:52:14,2015-05-30 12:40:22,2015-05-11 15:48:01,2,487,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11654,ISLAT,8,2018-11-29 11:27:58,2018-12-25 01:04:20,2018-12-10 04:12:02,2,282.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11655,TOMSP,9,2017-05-29 03:14:02,2017-06-21 09:59:43,2017-05-29 14:57:11,3,67.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11656,ROMEY,7,2019-02-07 13:06:04,2019-02-19 21:37:59,2019-02-08 07:25:35,3,284.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11657,TRAIH,2,2017-06-13 06:20:40,2017-06-26 01:31:06,2017-07-01 00:15:14,3,285.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11658,ALFKI,3,2019-03-10 15:53:13,2019-04-30 01:11:03,2019-03-10 21:54:41,1,49,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11659,ROMEY,6,2016-12-06 02:24:32,2016-12-24 19:05:01,2016-12-29 17:37:16,3,119.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11660,BLAUS,2,2021-12-10 11:53:34,2021-12-31 14:15:39,2021-12-27 04:45:16,2,361,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11661,WHITC,5,2022-01-15 08:01:20,2022-02-02 10:36:12,2022-01-23 17:09:30,3,203.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11662,GALED,7,2018-10-19 01:24:15,2018-11-21 21:01:56,2018-10-19 23:17:07,3,374.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11663,ANATR,2,2022-06-01 15:51:52,2022-07-01 22:09:59,2022-06-05 20:23:58,2,31,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11664,PARIS,2,2014-10-25 22:07:42,2014-11-22 22:45:42,2014-10-29 00:45:39,2,94.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11665,SAVEA,7,2020-02-13 16:22:35,2020-02-20 08:02:22,2020-02-24 19:44:36,1,356.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11666,TOMSP,9,2017-02-10 03:28:40,2017-02-10 23:55:37,2017-02-19 07:25:01,3,214.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11667,LONEP,4,2016-04-10 01:41:20,2016-04-20 16:14:33,2016-04-24 10:24:37,1,495,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11668,GODOS,6,2017-04-15 10:52:56,2017-04-15 17:43:01,2017-04-16 07:34:19,2,213,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11669,ROMEY,6,2019-06-25 03:58:11,2019-06-30 01:26:33,2019-07-03 01:24:25,1,146,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11670,GROSR,5,2017-07-24 05:28:11,2017-08-13 05:07:28,2017-07-27 15:19:33,1,13.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11671,RICAR,1,2013-04-11 12:35:16,2013-04-20 20:22:16,2013-04-19 15:20:36,1,277.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11672,FOLIG,8,2021-11-29 16:00:43,2021-12-29 00:44:08,2021-11-29 18:42:33,2,331.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11673,RICAR,4,2020-09-04 00:09:02,2020-10-09 21:30:14,2020-09-23 14:51:58,3,295,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11674,LONEP,4,2016-07-09 14:37:23,2016-07-21 18:30:48,2016-07-14 08:37:47,3,351.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11675,BONAP,4,2021-09-06 03:42:41,2021-09-22 22:44:36,2021-09-10 17:06:54,2,135,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11676,ROMEY,6,2020-07-19 12:15:15,2020-08-12 07:01:32,2020-07-22 06:03:48,1,341.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11677,OCEAN,3,2015-12-09 19:00:22,2016-01-13 20:36:45,2016-01-06 01:13:00,1,447,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11678,BOTTM,1,2018-09-05 16:42:46,2018-09-20 14:42:34,2018-09-20 03:36:38,1,365.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11679,BOTTM,6,2020-03-26 20:31:08,2020-04-05 23:00:09,2020-04-21 07:52:22,2,71.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11680,WOLZA,7,2012-07-20 13:30:30,2012-07-29 10:12:02,2012-07-24 11:02:17,3,257.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11681,PRINI,5,2022-07-01 12:58:13,2022-08-04 22:09:12,2022-07-02 06:07:32,1,542,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11682,PICCO,7,2015-07-09 13:14:58,2015-07-11 17:39:24,2015-07-11 11:52:43,2,531.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11683,ALFKI,5,2015-09-30 17:07:34,2015-10-01 07:51:18,2015-10-07 03:57:10,3,393.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11684,LAUGB,3,2014-03-14 05:23:45,2014-03-25 08:41:34,2014-03-14 10:10:43,2,257.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11685,TRAIH,7,2016-12-10 22:06:38,2017-01-30 12:57:02,2016-12-14 07:41:05,3,69,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11686,MORGK,3,2021-12-17 13:03:11,2021-12-30 12:48:39,2021-12-26 10:38:51,1,203,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11687,FOLIG,5,2023-03-12 13:11:04,2023-04-26 12:51:55,2023-03-17 07:46:35,2,218.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11688,QUICK,2,2020-12-24 13:43:37,2021-01-10 19:16:58,2021-01-04 04:06:37,1,388.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11689,MORGK,5,2021-12-18 06:39:09,2022-01-26 05:02:10,2021-12-22 00:49:45,1,483.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11690,Val2 ,8,2018-01-15 00:35:03,2018-01-26 12:38:28,2018-01-31 18:46:02,1,170.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +11691,HUNGO,3,2015-07-20 11:27:24,2015-08-28 15:32:45,2015-07-21 03:01:22,1,254.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11692,OCEAN,4,2018-07-23 21:28:50,2018-08-11 21:49:51,2018-08-01 08:51:33,2,336.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +11693,FISSA,4,2015-12-16 07:00:25,2016-01-11 03:34:50,2015-12-25 10:55:40,1,305,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11694,Val2 ,1,2022-12-09 14:08:54,2022-12-29 14:45:21,2022-12-30 06:21:25,3,217,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11695,OLDWO,5,2014-05-13 06:38:19,2014-06-01 11:12:09,2014-05-25 04:08:56,3,120.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +11696,LAUGB,3,2016-07-10 07:47:32,2016-07-13 11:23:15,2016-07-15 00:14:34,3,487.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11697,FRANR,8,2023-07-29 01:22:47,2023-07-29 02:27:10,2023-08-14 02:02:57,3,66.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11698,FURIB,3,2014-07-05 05:25:16,2014-07-13 16:10:07,2014-07-16 08:29:48,2,123.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11699,SIMOB,5,2022-08-18 03:13:47,2022-10-09 16:18:37,2022-09-12 01:25:50,1,238.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11700,BONAP,9,2021-05-17 03:29:59,2021-06-24 17:08:07,2021-06-09 00:57:08,1,207.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11701,KOENE,1,2020-01-12 05:13:02,2020-03-05 02:15:16,2020-01-15 00:48:00,2,404.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11702,QUEDE,1,2016-06-28 12:01:38,2016-08-07 20:42:29,2016-06-28 15:34:36,3,125.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11703,WELLI,7,2015-04-21 23:25:08,2015-04-29 06:23:57,2015-05-11 03:43:02,3,340.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11704,DUMON,6,2019-03-23 23:59:26,2019-03-30 00:15:45,2019-03-26 00:21:53,2,35,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11705,SEVES,8,2021-04-23 15:19:02,2021-05-22 18:11:11,2021-05-13 16:31:56,1,467.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11706,QUEDE,9,2014-06-27 13:11:16,2014-06-29 13:09:19,2014-07-04 06:36:05,3,466.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11707,VINET,5,2013-10-17 03:14:59,2013-12-01 23:32:03,2013-10-23 03:37:47,3,119.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11708,THEBI,8,2022-07-15 10:28:39,2022-08-05 00:42:55,2022-08-02 09:01:26,3,191,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11709,PRINI,2,2016-01-08 14:07:50,2016-02-22 06:33:51,2016-01-30 21:26:04,3,300.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11710,ROMEY,5,2016-06-22 03:00:21,2016-07-11 20:43:06,2016-07-06 13:00:06,3,114.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +11711,CACTU,6,2017-10-08 12:51:29,2017-10-21 09:03:10,2017-10-29 05:07:34,3,243.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11712,TRADH,8,2017-09-12 00:49:22,2017-10-15 05:07:53,2017-09-14 09:15:38,2,105.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +11713,WOLZA,9,2017-09-25 14:51:28,2017-10-12 11:28:23,2017-10-02 02:30:34,1,373.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11714,FRANS,1,2023-07-27 09:13:11,2023-08-10 17:32:23,2023-07-27 22:48:12,1,287,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +11715,QUEDE,9,2020-07-13 22:18:41,2020-07-15 18:33:30,2020-07-25 02:05:35,3,68.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11716,SANTG,6,2014-08-01 21:56:05,2014-08-12 19:09:11,2014-08-07 14:20:38,1,395.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11717,ALFKI,9,2014-04-29 14:04:20,2014-05-29 21:32:56,2014-05-02 07:09:59,1,17.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11718,TORTU,7,2012-12-07 09:43:13,2012-12-25 19:00:30,2012-12-31 11:47:01,1,144.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11719,CHOPS,8,2021-06-21 04:03:28,2021-07-12 21:04:06,2021-06-28 01:01:23,3,338.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11720,BOTTM,6,2021-01-21 02:31:48,2021-01-31 10:15:36,2021-01-21 21:37:00,3,41.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11721,RICSU,5,2022-07-25 06:06:12,2022-08-12 09:36:22,2022-07-30 14:10:31,1,53.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11722,RICAR,6,2016-12-02 11:56:02,2016-12-02 13:54:32,2016-12-03 15:19:59,1,66.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11723,TORTU,4,2018-11-29 23:41:50,2018-12-14 01:48:38,2018-11-30 02:42:57,3,176.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11724,AROUT,3,2019-10-25 03:59:11,2019-11-07 02:54:09,2019-10-31 12:22:38,1,161.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +11725,ANTON,7,2020-08-08 20:28:22,2020-09-13 05:04:16,2020-08-22 12:43:42,2,101.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11726,QUEEN,4,2020-04-06 00:54:48,2020-04-09 03:06:46,2020-04-11 00:46:51,3,229,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11727,EASTC,7,2015-06-10 13:56:46,2015-07-26 17:28:59,2015-07-03 00:37:41,1,388.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +11728,VALON,1,2012-12-26 06:05:41,2013-01-02 12:55:13,2012-12-27 12:16:35,1,122.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11729,CENTC,5,2018-04-27 02:17:13,2018-05-01 05:52:26,2018-05-10 10:39:25,3,321.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11730,CACTU,4,2021-02-17 18:08:43,2021-03-04 07:31:29,2021-02-27 23:21:03,3,336.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11731,BOLID,2,2017-11-02 06:39:11,2017-11-06 06:31:48,2017-11-04 07:26:59,2,421.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11732,GALED,9,2023-08-07 21:18:38,2023-08-14 01:14:44,2023-08-08 15:41:42,2,75.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11733,EASTC,6,2020-06-13 12:02:34,2020-07-04 02:28:07,2020-06-14 05:54:27,2,254,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11734,GODOS,7,2015-08-05 01:44:49,2015-08-23 00:33:27,2015-08-27 17:03:20,3,272,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11735,BSBEV,4,2019-02-05 23:53:48,2019-03-15 11:50:05,2019-02-11 05:29:46,1,373.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11736,MEREP,8,2015-08-17 15:56:06,2015-09-28 02:28:13,2015-08-18 14:46:39,3,438.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11737,WARTH,3,2014-11-02 00:22:06,2014-11-05 21:00:27,2014-11-02 19:20:00,2,336.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11738,GROSR,1,2015-12-10 01:41:46,2015-12-12 22:24:04,2015-12-20 03:34:30,1,231.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11739,BSBEV,1,2018-04-29 11:25:34,2018-05-08 14:53:59,2018-05-01 02:40:21,2,308.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11740,SUPRD,3,2023-01-02 15:05:50,2023-01-24 01:02:48,2023-01-06 14:50:30,1,485.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11741,SIMOB,4,2014-10-17 18:11:30,2014-12-07 11:13:15,2014-10-20 11:53:04,3,440.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11742,CHOPS,1,2023-07-07 09:25:43,2023-07-19 03:56:42,2023-07-19 19:18:40,3,91,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11743,OTTIK,8,2014-02-09 18:22:32,2014-02-19 11:10:17,2014-02-23 16:38:50,2,95,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11744,AROUT,4,2019-03-28 22:35:30,2019-04-20 05:15:18,2019-04-11 06:26:49,3,393.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11745,VAFFE,9,2020-03-20 12:57:57,2020-05-07 21:26:32,2020-03-20 22:30:21,1,129.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11746,FRANS,2,2021-12-22 13:56:21,2021-12-24 04:57:29,2021-12-24 07:05:35,3,53.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11747,HILAA,4,2022-04-01 04:03:42,2022-05-08 04:42:45,2022-04-14 02:01:00,1,220.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11748,CONSH,1,2022-07-03 23:51:55,2022-07-21 17:11:39,2022-07-13 02:15:34,3,14.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11749,LEHMS,6,2020-05-13 23:12:48,2020-05-24 18:33:24,2020-05-15 03:10:37,2,395.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11750,LINOD,9,2018-10-26 20:59:18,2018-11-19 16:25:37,2018-11-04 12:00:28,3,249,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11751,FRANR,7,2019-12-08 11:38:53,2019-12-14 11:05:15,2019-12-11 15:22:59,3,312.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11752,ROMEY,1,2014-07-13 12:16:38,2014-08-16 03:24:23,2014-07-16 20:51:01,3,293.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11753,VINET,6,2020-02-25 09:21:08,2020-03-06 00:55:23,2020-02-28 12:16:10,1,337.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11754,QUEEN,5,2013-08-05 18:15:04,2013-08-15 18:44:25,2013-08-18 05:32:49,1,467.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11755,VICTE,6,2023-03-17 13:58:10,2023-04-16 02:29:45,2023-03-19 14:50:53,1,333.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11756,HUNGC,6,2018-12-22 01:15:27,2019-01-04 09:22:28,2018-12-26 08:01:50,3,74.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11757,AROUT,8,2017-03-26 17:22:47,2017-04-04 00:35:56,2017-03-27 04:35:17,1,162.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11758,OLDWO,3,2021-05-08 04:42:09,2021-05-25 16:20:01,2021-05-11 02:26:27,3,422.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +11759,GALED,6,2014-07-25 01:12:21,2014-09-18 11:50:21,2014-07-25 04:06:29,3,377.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11760,BOTTM,9,2014-11-09 00:46:10,2014-11-26 09:45:51,2014-11-19 13:07:26,1,391.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11761,DUMON,3,2013-07-14 01:35:55,2013-07-19 10:43:08,2013-07-17 01:55:46,2,490,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11762,LAUGB,5,2017-12-20 08:46:48,2018-01-02 06:18:47,2018-01-05 02:49:47,1,506.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11763,QUEEN,7,2020-04-25 12:02:33,2020-06-14 15:24:02,2020-05-21 16:53:25,1,179.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11764,HUNGC,4,2021-07-03 07:25:51,2021-08-02 16:53:27,2021-07-28 10:16:03,2,127.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11765,BOTTM,3,2022-11-15 19:00:26,2022-11-27 10:04:26,2022-12-08 22:20:30,1,370.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11766,THEBI,1,2020-07-19 00:48:03,2020-08-29 12:43:02,2020-08-02 11:41:49,2,510.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11767,TORTU,9,2019-07-22 16:08:56,2019-08-04 19:25:48,2019-07-29 11:24:08,1,316.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11768,LETSS,2,2013-05-08 04:52:04,2013-05-25 14:19:08,2013-05-19 19:23:53,1,243.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11769,ROMEY,3,2019-12-30 15:51:38,2020-01-26 14:17:36,2020-01-09 12:59:40,2,447.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11770,HUNGO,1,2016-01-21 16:25:58,2016-01-28 01:24:11,2016-01-26 15:20:04,3,422.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11771,CACTU,9,2018-08-03 05:17:10,2018-08-07 12:03:33,2018-08-06 08:26:38,3,71.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11772,BLAUS,2,2021-12-14 11:57:25,2021-12-21 03:53:30,2022-01-02 08:55:22,1,70.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +11773,COMMI,5,2016-04-16 19:04:29,2016-05-02 16:06:55,2016-04-23 02:50:26,3,14.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11774,LILAS,5,2014-07-25 18:07:59,2014-08-09 02:41:35,2014-07-30 13:06:34,2,351.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11775,ANATR,1,2020-03-16 04:49:43,2020-03-25 14:05:54,2020-03-25 07:45:46,1,308.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11776,WARTH,1,2014-05-20 20:05:40,2014-06-14 10:44:02,2014-05-26 08:43:59,3,326.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11777,ERNSH,9,2022-01-14 11:33:18,2022-01-15 03:27:14,2022-01-16 06:08:16,2,342.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +11778,MAGAA,8,2014-02-16 01:44:06,2014-02-24 05:51:04,2014-02-17 00:01:22,2,343,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11779,PERIC,4,2013-07-24 06:30:37,2013-08-12 11:27:25,2013-07-28 15:35:54,3,517.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11780,FURIB,1,2019-11-30 16:36:00,2019-12-12 21:01:32,2019-12-01 09:43:56,2,160,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11781,BSBEV,2,2018-07-24 14:42:42,2018-08-16 22:21:22,2018-08-02 17:46:06,3,406.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11782,LETSS,7,2014-12-09 19:46:18,2015-01-14 03:37:38,2014-12-26 20:43:22,3,82.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11783,LACOR,4,2020-08-16 14:04:10,2020-09-09 21:03:24,2020-08-19 14:43:27,1,314,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11784,Val2 ,3,2023-08-05 07:46:12,2023-08-05 15:25:36,2023-08-10 03:33:48,3,81.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11785,BLAUS,2,2017-08-28 07:53:23,2017-09-05 00:58:00,2017-09-05 12:05:10,1,38,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11786,RICAR,2,2020-06-11 13:00:30,2020-06-13 01:37:05,2020-06-20 05:04:23,1,101.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11787,OCEAN,9,2020-10-14 04:02:45,2020-10-23 17:40:16,2020-10-28 08:25:27,1,304.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11788,THEBI,6,2023-01-04 03:02:54,2023-01-07 05:22:43,2023-01-18 06:23:35,3,511.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11789,ALFKI,5,2013-01-05 17:27:45,2013-02-01 17:37:28,2013-01-06 14:10:06,1,272.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11790,LILAS,6,2012-09-12 04:49:42,2012-10-21 16:41:07,2012-09-17 23:55:42,3,484.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11791,SEVES,9,2019-09-30 15:34:04,2019-10-07 15:53:16,2019-10-04 20:19:38,2,454.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11792,HUNGC,7,2022-01-24 03:59:06,2022-02-17 13:32:34,2022-02-14 23:50:28,3,448.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11793,MEREP,1,2018-09-17 05:53:58,2018-09-20 15:34:56,2018-09-17 23:38:50,1,362.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11794,MORGK,6,2015-08-01 10:45:00,2015-08-14 20:42:04,2015-08-02 18:52:32,3,464.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11795,FISSA,9,2018-05-25 15:53:44,2018-05-25 16:37:07,2018-05-26 02:06:18,3,403.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11796,GROSR,7,2019-10-03 23:20:16,2019-10-07 17:07:37,2019-10-14 14:15:37,1,427.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11797,RANCH,3,2013-05-14 04:05:43,2013-06-05 11:52:33,2013-05-14 14:14:46,3,246.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +11798,ALFKI,6,2014-12-08 14:11:23,2014-12-27 12:55:45,2014-12-19 05:05:34,1,49.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11799,LAUGB,6,2014-12-05 19:48:04,2014-12-30 05:31:13,2014-12-08 14:04:30,1,18.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11800,ERNSH,5,2013-08-31 12:12:44,2013-09-12 11:36:35,2013-09-12 02:11:42,2,258.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11801,CENTC,5,2015-02-20 05:10:43,2015-03-07 00:37:32,2015-03-12 19:29:06,2,344.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11802,RICAR,3,2019-06-13 10:45:48,2019-07-18 01:48:02,2019-06-29 21:46:23,1,277.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11803,LETSS,2,2022-10-03 09:04:08,2022-10-13 17:11:15,2022-10-18 18:51:55,3,430.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11804,DRACD,4,2023-01-01 23:07:17,2023-01-02 02:14:58,2023-01-16 15:31:47,3,250.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11805,LAUGB,9,2022-01-12 07:01:18,2022-01-30 12:07:54,2022-01-12 20:26:09,3,178,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11806,CACTU,7,2012-11-29 15:13:27,2013-01-23 04:54:07,2012-12-20 14:10:04,3,32.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11807,THEBI,2,2015-08-09 20:50:41,2015-09-02 01:43:05,2015-08-16 21:44:00,1,496.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11808,TRAIH,6,2012-11-23 19:35:38,2012-12-11 23:17:56,2012-11-28 21:18:26,1,184.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11809,VAFFE,5,2015-10-15 17:02:07,2015-10-25 04:32:07,2015-10-16 03:10:09,1,217.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +11810,LETSS,6,2018-02-23 18:18:27,2018-03-08 22:01:36,2018-03-10 06:07:54,3,100.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +11811,TRAIH,6,2019-07-14 18:44:48,2019-07-25 22:44:56,2019-07-17 04:09:34,2,419.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11812,FOLKO,4,2014-01-26 02:05:38,2014-02-08 20:37:53,2014-01-29 02:49:54,2,31,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11813,RICSU,8,2012-12-31 02:40:54,2013-01-08 15:26:02,2013-01-04 16:28:16,3,540.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11814,VAFFE,2,2013-10-28 07:54:03,2013-10-29 10:54:39,2013-11-01 03:52:52,1,453.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11815,VALON,5,2022-09-25 05:39:58,2022-10-16 04:36:36,2022-10-09 23:56:34,2,122.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +11816,ERNSH,1,2020-10-28 10:11:24,2020-11-19 19:32:29,2020-11-05 09:00:49,1,455.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11817,AROUT,4,2014-10-24 15:40:43,2014-11-11 17:58:47,2014-10-26 05:27:53,2,384.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +11818,OCEAN,4,2023-08-07 23:22:48,2023-08-14 03:35:40,2023-08-13 14:38:07,1,342.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +11819,ALFKI,4,2019-05-30 17:50:56,2019-06-12 09:49:38,2019-06-06 16:23:18,1,253,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11820,LAMAI,8,2019-06-30 13:59:05,2019-07-08 17:45:32,2019-07-08 16:21:23,3,414.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +11821,HILAA,8,2014-04-04 21:16:35,2014-04-26 09:03:37,2014-04-06 15:53:35,3,139,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11822,KOENE,2,2016-02-17 16:58:58,2016-03-10 22:46:37,2016-02-18 09:59:19,3,150.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11823,GALED,6,2016-11-16 13:41:37,2016-11-23 20:51:37,2016-11-17 21:39:44,2,249.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11824,SUPRD,5,2021-05-17 13:33:31,2021-05-23 15:47:52,2021-05-18 07:26:41,3,454.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11825,REGGC,1,2017-08-04 11:01:11,2017-08-05 21:41:46,2017-09-01 22:02:28,2,501.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11826,BSBEV,9,2016-10-05 21:58:34,2016-10-21 08:57:13,2016-10-11 00:24:08,1,223.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11827,HUNGO,9,2016-06-13 14:00:24,2016-07-06 22:53:37,2016-06-23 01:13:49,1,236,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11828,BOLID,3,2021-01-09 09:06:33,2021-01-19 22:59:08,2021-01-09 21:10:34,1,322.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11829,REGGC,3,2014-04-28 14:11:20,2014-05-05 12:31:08,2014-05-03 14:00:13,3,200.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11830,VAFFE,7,2020-07-18 07:14:38,2020-07-23 06:02:00,2020-07-19 05:42:45,2,182.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11831,ERNSH,4,2017-11-04 08:11:49,2017-11-30 16:36:24,2017-11-11 18:38:28,1,409.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11832,VAFFE,4,2021-02-23 17:50:48,2021-03-30 04:36:58,2021-03-04 04:33:17,3,271.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11833,RATTC,4,2023-07-17 21:45:47,2023-08-02 06:17:28,2023-07-18 07:01:39,2,89.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11834,SANTG,5,2020-12-28 03:07:44,2021-01-15 12:23:06,2021-01-01 06:21:17,1,467.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11835,ALFKI,7,2013-10-10 06:22:39,2013-12-04 06:23:58,2013-10-10 11:51:55,2,156,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11836,HANAR,8,2019-03-02 11:26:40,2019-03-28 09:41:42,2019-03-04 10:24:18,1,171.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11837,MAGAA,8,2020-11-19 19:32:03,2020-12-16 04:26:59,2020-11-22 11:40:03,3,261,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11838,DRACD,8,2023-01-07 22:27:13,2023-01-13 14:04:53,2023-01-09 17:27:00,2,75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11839,FOLKO,5,2015-03-22 07:44:15,2015-03-31 10:27:53,2015-03-24 05:52:56,2,327.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11840,CACTU,2,2022-02-25 06:29:17,2022-03-06 03:14:42,2022-03-04 09:43:42,1,183.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11841,SPLIR,2,2013-05-20 17:38:00,2013-06-26 01:08:23,2013-05-22 20:05:10,3,33,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11842,FRANS,5,2022-07-19 15:34:56,2022-08-16 07:01:39,2022-08-03 10:30:33,3,449,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11843,AROUT,8,2023-01-19 22:04:06,2023-02-13 18:56:36,2023-02-01 10:02:39,3,60,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11844,RANCH,9,2015-08-30 08:07:18,2015-08-31 19:53:25,2015-09-01 03:16:59,1,332.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11845,MEREP,9,2013-07-14 23:25:09,2013-07-21 22:08:43,2013-07-17 16:05:29,3,202.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11846,TORTU,2,2016-12-17 06:53:16,2016-12-25 09:52:54,2016-12-18 19:24:23,1,397.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11847,GODOS,7,2023-03-20 17:43:21,2023-04-07 07:43:40,2023-03-25 07:19:38,3,30,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11848,WOLZA,9,2015-10-02 09:34:05,2015-10-26 22:25:19,2015-10-02 15:31:08,2,267.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +11849,CONSH,4,2014-11-29 03:30:54,2014-12-04 07:17:27,2014-11-30 12:15:12,3,24.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11850,ANATR,7,2019-09-06 15:51:37,2019-09-18 11:04:52,2019-09-11 22:19:05,2,142.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11851,VALON,7,2013-03-20 09:44:41,2013-04-17 07:06:42,2013-04-01 07:04:09,3,391.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11852,LILAS,8,2018-09-26 14:26:23,2018-10-06 13:07:23,2018-10-09 18:24:21,1,52.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11853,FRANK,7,2015-02-06 06:18:26,2015-02-22 08:53:01,2015-02-07 04:47:06,1,174.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11854,VICTE,6,2012-10-03 21:48:01,2012-10-10 11:24:20,2012-10-04 06:50:05,1,242.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11855,PARIS,1,2020-05-15 03:53:28,2020-05-29 03:36:06,2020-05-16 19:41:38,1,195,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11856,AROUT,9,2023-07-18 06:50:04,2023-07-29 12:32:15,2023-07-22 18:28:28,3,144.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11857,WILMK,8,2014-12-01 00:58:52,2014-12-20 07:56:12,2014-12-07 03:20:38,2,167.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11858,LONEP,8,2022-10-04 07:06:14,2022-10-26 15:54:29,2022-10-21 18:22:08,2,212.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +11859,WHITC,3,2020-05-08 04:03:50,2020-05-20 07:16:41,2020-05-17 05:26:36,1,281.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +11860,HUNGC,9,2018-04-02 04:47:39,2018-04-08 21:32:46,2018-04-16 03:01:08,3,361.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11861,GALED,1,2023-08-28 23:21:04,2023-09-19 06:32:19,2023-09-02 03:59:57,3,85.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +11862,GOURL,3,2017-12-23 06:09:16,2018-01-31 20:20:55,2018-01-07 08:04:59,2,197.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11863,ALFKI,7,2014-07-07 19:21:17,2014-07-17 13:10:32,2014-07-14 07:01:05,1,312.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11864,BONAP,2,2022-08-19 04:56:20,2022-09-04 17:14:56,2022-09-02 03:20:53,2,397,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11865,LACOR,6,2014-02-05 21:49:25,2014-02-16 17:16:04,2014-02-06 09:04:44,1,338.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +11866,PRINI,5,2013-04-29 00:55:01,2013-05-29 04:48:23,2013-04-30 15:22:46,2,302,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11867,CACTU,8,2021-02-06 03:39:48,2021-03-13 01:50:01,2021-02-14 02:29:14,3,108.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11868,VAFFE,4,2014-03-17 12:15:12,2014-04-14 23:39:16,2014-03-17 16:12:39,1,26.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +11869,ALFKI,8,2015-12-25 03:46:24,2016-01-02 11:21:53,2015-12-30 18:40:55,2,308.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11870,SPLIR,9,2012-10-18 04:39:35,2012-10-26 00:00:51,2012-10-20 01:37:59,3,179,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +11871,THECR,3,2020-08-23 10:52:20,2020-09-04 09:49:16,2020-09-04 07:59:56,3,181.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11872,PICCO,5,2015-03-01 09:09:03,2015-03-09 16:52:19,2015-03-09 00:29:20,3,54.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11873,BOTTM,7,2015-09-03 13:44:12,2015-09-04 02:53:53,2015-09-13 14:24:03,1,269,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11874,RATTC,3,2021-03-27 08:39:36,2021-04-23 05:31:35,2021-04-03 08:32:54,3,225.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +11875,LACOR,2,2015-03-08 16:32:49,2015-04-11 20:23:14,2015-03-08 23:05:18,1,189.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +11876,AROUT,4,2013-06-26 21:58:32,2013-08-16 20:11:56,2013-07-04 00:34:29,1,442.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +11877,GROSR,8,2019-12-10 12:14:43,2020-01-28 06:00:55,2019-12-20 09:07:30,3,461,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11878,RICSU,4,2016-04-24 17:25:20,2016-05-31 05:55:24,2016-04-29 07:59:33,2,40.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11879,SUPRD,4,2013-02-10 07:16:38,2013-03-28 22:51:32,2013-02-10 22:55:40,2,123.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +11880,SPLIR,8,2015-03-20 18:03:34,2015-03-27 22:00:13,2015-04-13 19:09:19,1,545.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11881,THEBI,6,2014-04-16 18:18:05,2014-04-29 11:12:16,2014-04-16 21:47:19,2,347.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +11882,PICCO,5,2015-08-10 02:14:25,2015-08-13 04:36:20,2015-08-19 01:06:14,1,422.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +11883,QUEDE,8,2019-10-06 14:03:23,2019-11-10 11:39:08,2019-10-13 06:15:41,1,155.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11884,LAUGB,5,2012-08-05 19:06:12,2012-09-07 14:56:36,2012-08-11 07:40:51,2,205,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +11885,MEREP,4,2013-01-05 04:09:51,2013-01-07 18:12:20,2013-01-05 06:27:08,3,221.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +11886,GODOS,8,2018-07-07 00:10:14,2018-08-17 23:02:31,2018-07-27 19:03:04,3,340.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11887,VICTE,1,2020-07-10 13:37:43,2020-07-22 16:33:06,2020-07-11 14:30:31,2,324.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11888,TOMSP,4,2015-05-07 03:04:15,2015-06-02 04:32:19,2015-05-07 14:52:21,3,358,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11889,CHOPS,4,2020-10-17 17:02:16,2020-12-04 16:10:03,2020-10-19 15:21:58,1,405.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +11890,SAVEA,4,2021-05-25 19:54:12,2021-07-08 07:56:41,2021-05-26 18:10:33,3,552,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +11891,PERIC,2,2021-08-24 13:35:28,2021-09-30 05:03:02,2021-08-25 18:32:49,1,279,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11892,FRANS,6,2016-09-03 04:49:33,2016-09-20 09:05:47,2016-09-03 10:46:13,1,356,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +11893,WOLZA,7,2023-06-16 10:01:15,2023-07-15 00:51:43,2023-06-17 01:31:02,1,137.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +11894,CENTC,8,2017-09-18 13:15:57,2017-10-23 21:51:24,2017-09-25 19:10:58,1,145.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11895,BSBEV,9,2013-03-21 12:41:17,2013-03-27 18:10:45,2013-04-06 22:44:36,1,111,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11896,TRADH,2,2012-08-07 06:11:45,2012-09-24 13:40:07,2012-08-12 17:45:18,2,26.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11897,FAMIA,3,2014-02-02 17:26:59,2014-02-28 14:55:13,2014-02-04 05:23:04,3,236.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11898,ANTON,6,2012-07-13 14:29:29,2012-08-05 07:07:22,2012-07-17 14:38:55,1,133.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +11899,OLDWO,9,2016-08-26 11:54:54,2016-09-14 23:51:01,2016-09-04 20:56:16,1,385.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11900,TRAIH,5,2014-12-07 06:35:34,2014-12-07 09:38:02,2014-12-09 21:34:02,3,120.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11901,EASTC,4,2014-03-15 04:53:18,2014-04-09 16:09:01,2014-03-20 23:17:06,2,379.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +11902,BOTTM,7,2016-04-21 09:25:18,2016-05-28 18:42:33,2016-05-17 13:25:19,2,111.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +11903,HUNGO,2,2013-08-14 14:31:51,2013-08-17 03:35:16,2013-08-20 21:34:15,3,151.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +11904,SIMOB,7,2022-11-24 15:05:24,2022-11-29 04:20:36,2022-11-29 09:00:54,3,275.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11905,DUMON,6,2016-02-17 15:17:03,2016-03-14 01:53:02,2016-02-20 04:40:01,3,449,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11906,LONEP,5,2017-08-18 11:30:38,2017-09-04 14:18:45,2017-08-20 22:36:09,2,25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11907,LAMAI,5,2017-06-12 15:46:35,2017-06-14 20:56:20,2017-06-13 12:14:10,1,231.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11908,ALFKI,3,2012-09-07 02:39:28,2012-09-22 10:10:13,2012-09-14 05:09:17,1,424.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +11909,FAMIA,4,2013-05-31 07:54:49,2013-06-08 11:49:23,2013-06-04 16:43:29,3,317.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +11910,QUICK,6,2023-06-22 00:56:44,2023-07-19 23:05:43,2023-07-09 14:08:28,3,324.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +11911,FRANR,5,2015-11-26 19:40:44,2015-12-09 13:56:16,2015-12-02 18:39:50,1,70.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11912,GROSR,4,2015-06-02 06:13:28,2015-07-01 12:52:55,2015-06-11 18:07:58,3,301,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +11913,LONEP,4,2019-05-21 05:48:17,2019-05-25 09:21:00,2019-05-21 20:39:56,2,304.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11914,FOLKO,6,2015-11-09 03:36:13,2015-11-17 15:50:57,2015-11-11 16:04:34,1,354,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11915,WELLI,7,2020-04-01 23:17:32,2020-04-15 01:13:07,2020-04-12 14:51:36,2,442.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11916,MEREP,5,2013-01-31 02:21:59,2013-02-15 10:57:43,2013-02-04 22:47:43,2,266.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11917,RICAR,5,2013-02-26 19:13:03,2013-03-12 18:59:00,2013-03-13 13:26:36,3,152.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +11918,FAMIA,3,2015-12-04 22:47:22,2015-12-09 03:01:41,2015-12-23 11:14:57,1,426,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11919,LAZYK,2,2020-06-04 00:37:13,2020-07-01 08:56:03,2020-06-21 16:30:03,1,49.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +11920,PERIC,2,2014-06-04 02:01:33,2014-06-17 18:45:31,2014-06-18 19:07:31,2,500.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11921,ROMEY,9,2018-07-09 22:21:45,2018-07-23 09:57:46,2018-07-11 22:35:13,3,244.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +11922,KOENE,8,2020-08-25 06:12:51,2020-09-25 00:51:18,2020-08-30 02:12:42,2,372.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11923,BERGS,6,2017-07-03 09:04:02,2017-07-17 10:40:26,2017-07-06 11:34:34,2,66,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11924,LILAS,2,2020-01-08 01:34:56,2020-01-18 14:48:00,2020-01-17 18:55:45,2,137.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +11925,LEHMS,4,2015-12-27 17:21:01,2016-01-19 13:44:13,2015-12-29 05:38:46,3,225.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +11926,THECR,7,2022-10-29 01:04:02,2022-11-15 03:44:47,2022-11-13 07:34:31,1,247.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +11927,COMMI,1,2015-07-15 14:32:12,2015-07-31 20:04:05,2015-07-19 14:16:23,3,89.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11928,RANCH,4,2021-04-19 11:34:07,2021-05-26 06:52:36,2021-05-07 10:52:14,1,452,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11929,GOURL,9,2021-08-05 11:23:38,2021-08-18 06:07:59,2021-08-08 18:07:13,1,42.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +11930,CACTU,7,2021-04-17 10:01:57,2021-05-19 22:17:12,2021-05-04 04:44:22,1,420.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +11931,PERIC,2,2019-10-26 23:56:11,2019-11-16 09:19:57,2019-10-29 04:01:36,2,196.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11932,ISLAT,6,2013-10-31 01:03:24,2013-12-01 01:19:32,2013-11-12 07:13:14,2,262.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11933,NORTS,1,2023-08-12 01:18:09,2023-08-12 19:06:13,2023-09-08 15:59:14,1,119.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11934,LETSS,1,2022-12-05 06:28:40,2023-01-02 01:52:34,2022-12-13 05:06:23,2,333.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11935,GREAL,2,2019-12-31 07:22:47,2020-01-17 04:01:37,2020-01-18 04:47:57,2,31.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +11936,FRANR,1,2012-08-12 14:17:35,2012-09-17 14:26:17,2012-08-12 21:00:02,2,490.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +11937,LAZYK,7,2016-05-22 13:14:48,2016-06-02 01:02:36,2016-06-11 05:36:25,2,475,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11938,SPLIR,5,2017-10-07 16:07:33,2017-10-16 17:51:31,2017-10-25 13:30:13,1,327.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11939,GODOS,4,2020-08-14 04:23:43,2020-09-01 11:55:25,2020-08-16 01:25:35,3,292.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11940,ISLAT,1,2016-02-24 04:48:12,2016-03-19 06:14:24,2016-03-08 09:35:41,1,421.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +11941,WHITC,6,2014-03-17 13:36:58,2014-03-24 18:09:37,2014-03-29 20:28:04,3,415.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11942,TRADH,1,2017-10-06 14:59:03,2017-10-07 13:03:39,2017-10-09 04:13:10,2,100.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +11943,FURIB,9,2016-04-07 22:47:04,2016-04-27 04:53:36,2016-04-28 02:55:13,2,390.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +11944,TRADH,7,2019-09-10 17:48:51,2019-09-11 20:23:57,2019-09-15 11:40:31,3,72.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +11945,CENTC,5,2015-08-08 00:58:11,2015-09-18 19:42:29,2015-08-08 15:28:25,2,324,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +11946,GREAL,1,2018-03-30 06:58:29,2018-04-28 11:19:10,2018-04-27 04:17:44,1,131.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +11947,FOLIG,6,2022-09-11 06:20:35,2022-10-26 07:03:01,2022-09-19 07:43:10,1,69.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11948,VICTE,5,2012-07-21 02:53:38,2012-08-16 04:34:25,2012-07-24 08:25:13,2,23.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11949,LAUGB,5,2022-10-13 17:03:56,2022-11-27 07:34:45,2022-11-04 11:30:42,3,193.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +11950,RANCH,6,2021-05-07 18:10:25,2021-05-27 13:02:42,2021-05-23 10:52:19,1,87.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11951,BOLID,5,2017-10-09 08:12:29,2017-10-16 03:05:34,2017-11-03 14:24:08,2,135,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +11952,GREAL,3,2019-10-28 00:10:45,2019-11-27 12:17:31,2019-11-12 23:25:02,3,414.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11953,LAUGB,6,2013-03-02 08:45:55,2013-04-03 20:06:25,2013-03-06 05:55:54,2,39.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11954,LETSS,7,2013-01-29 01:02:36,2013-03-17 22:56:26,2013-01-30 16:40:24,1,69.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11955,ANATR,3,2019-04-13 23:25:00,2019-04-23 10:57:27,2019-04-26 18:00:37,1,305,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11956,QUICK,9,2014-11-07 11:29:39,2014-11-20 04:24:09,2014-11-15 18:31:57,1,467,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11957,WANDK,8,2019-06-30 23:34:22,2019-08-06 15:01:48,2019-07-05 01:14:08,2,454.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +11958,AROUT,2,2020-01-07 23:32:32,2020-02-16 18:29:43,2020-01-09 02:59:55,3,338.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +11959,PRINI,5,2019-04-05 16:44:20,2019-05-03 19:58:46,2019-04-06 22:07:41,1,19,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +11960,TRAIH,4,2015-05-14 02:46:08,2015-05-18 01:18:19,2015-05-17 21:53:54,2,365.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +11961,SPLIR,3,2015-01-10 08:27:06,2015-01-16 02:43:48,2015-02-05 02:26:58,2,220,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +11962,DRACD,6,2018-03-29 15:49:10,2018-04-29 18:40:43,2018-03-31 00:50:32,3,276,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +11963,BONAP,7,2013-01-23 08:26:20,2013-02-06 03:50:41,2013-02-02 11:08:54,1,179,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +11964,SEVES,8,2013-12-20 03:51:28,2014-01-03 06:54:20,2013-12-26 02:06:59,2,48.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11965,GOURL,3,2018-02-17 03:53:43,2018-02-21 03:38:44,2018-02-22 17:38:59,1,178,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11966,TRAIH,6,2022-01-04 18:33:06,2022-01-12 13:58:23,2022-01-19 22:57:57,2,183.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +11967,BOTTM,9,2013-08-26 18:56:14,2013-08-31 11:17:56,2013-09-13 14:24:29,3,86,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11968,LINOD,3,2012-11-04 04:54:40,2012-12-03 04:01:26,2012-11-06 13:28:40,3,98,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11969,FRANR,2,2022-12-25 19:36:54,2023-01-05 21:20:05,2023-01-14 08:50:43,2,281.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +11970,SPECD,9,2020-12-06 02:51:17,2020-12-18 23:17:41,2020-12-15 22:17:51,2,454.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +11971,WHITC,5,2020-07-08 04:04:05,2020-08-06 02:47:49,2020-07-09 12:30:20,1,521.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +11972,GALED,1,2016-02-26 21:12:17,2016-04-18 10:17:55,2016-02-29 15:14:24,2,358.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +11973,CENTC,5,2016-12-30 04:23:04,2017-01-06 07:27:01,2016-12-30 07:51:27,2,327.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +11974,FOLKO,1,2014-08-31 03:41:27,2014-10-01 02:06:47,2014-09-03 19:08:42,3,353.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +11975,FOLIG,2,2013-04-23 14:48:28,2013-05-27 09:54:10,2013-05-07 00:22:01,3,26,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11976,WELLI,9,2015-03-21 22:30:47,2015-04-25 09:28:25,2015-04-09 23:38:24,2,185.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +11977,VINET,1,2023-09-02 11:01:17,2023-09-23 14:11:50,2023-09-13 21:48:43,2,293.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +11978,GODOS,8,2016-11-07 07:56:43,2016-12-02 21:41:28,2016-11-09 09:24:50,3,306.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +11979,CHOPS,1,2015-01-29 05:45:03,2015-01-31 19:32:10,2015-02-07 04:56:24,3,163.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11980,GOURL,5,2012-11-22 17:57:28,2012-12-09 09:58:06,2012-11-27 05:42:43,3,543.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +11981,HILAA,2,2013-09-05 10:56:49,2013-10-09 09:20:39,2013-09-15 19:07:32,1,288.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +11982,RICAR,4,2013-10-29 12:24:22,2013-12-09 19:10:42,2013-11-09 23:54:06,2,360.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11983,SAVEA,6,2021-03-15 23:58:13,2021-04-22 14:00:50,2021-03-24 13:33:19,3,287.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +11984,SIMOB,6,2014-10-25 11:04:35,2014-11-28 07:08:01,2014-10-25 14:14:08,2,369.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +11985,NORTS,4,2016-08-22 16:40:48,2016-08-26 21:56:01,2016-09-02 11:26:57,1,428,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +11986,SAVEA,8,2019-04-23 09:05:37,2019-06-02 20:06:52,2019-05-05 09:42:09,1,104.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +11987,CHOPS,9,2017-12-14 13:42:34,2018-01-01 19:25:18,2017-12-23 00:18:30,2,315.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +11988,LILAS,3,2014-10-25 19:09:37,2014-11-27 08:24:26,2014-10-26 06:58:46,3,72,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11989,EASTC,3,2023-10-11 23:56:00,2023-11-05 20:45:01,2023-10-22 07:09:28,3,230.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +11990,QUICK,3,2012-07-20 23:54:37,2012-08-06 22:54:01,2012-07-21 12:37:39,3,93.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +11991,FOLKO,7,2018-01-19 04:33:47,2018-02-03 15:22:08,2018-01-24 00:21:39,1,255,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +11992,KOENE,5,2016-09-16 14:32:19,2016-10-04 06:06:21,2016-09-17 13:07:18,2,90.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +11993,ROMEY,4,2017-01-07 22:20:05,2017-02-03 12:15:24,2017-01-10 23:52:07,3,126.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +11994,VINET,2,2016-08-25 03:52:31,2016-08-28 01:14:08,2016-09-15 14:10:09,2,263.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +11995,QUICK,7,2019-02-16 19:36:31,2019-03-12 01:56:51,2019-03-07 09:03:42,1,435.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +11996,SPLIR,7,2023-07-14 02:07:16,2023-08-23 15:45:17,2023-07-18 16:28:41,2,323.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +11997,ANATR,9,2022-03-15 02:00:06,2022-03-21 22:32:26,2022-03-27 21:59:41,3,99.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +11998,WILMK,7,2021-03-28 22:42:41,2021-03-30 21:27:50,2021-04-09 18:30:00,1,144.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +11999,REGGC,4,2016-11-20 05:15:48,2016-11-21 03:29:21,2016-12-04 08:58:56,2,58.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12000,LINOD,2,2015-07-30 22:55:37,2015-08-01 07:03:32,2015-08-02 14:56:31,2,314.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12001,LILAS,7,2023-05-14 11:09:33,2023-05-16 05:34:00,2023-05-20 15:46:24,2,173.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12002,FOLIG,9,2015-07-21 20:17:34,2015-07-27 19:06:54,2015-08-06 14:39:49,3,198.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12003,KOENE,2,2020-11-15 12:09:28,2020-12-14 18:35:12,2020-11-16 20:12:24,1,239.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12004,VINET,6,2020-10-04 01:56:15,2020-11-18 21:08:53,2020-10-23 10:27:22,3,107.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12005,SIMOB,4,2017-12-15 23:55:27,2018-01-09 14:19:03,2017-12-16 01:39:08,3,442.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12006,Val2 ,2,2022-07-03 06:01:16,2022-08-06 07:14:24,2022-07-05 20:35:01,1,436.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12007,ERNSH,1,2020-06-19 14:55:30,2020-06-19 22:45:27,2020-06-27 09:08:15,1,298.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12008,SPECD,1,2016-06-11 09:34:04,2016-06-13 20:08:22,2016-06-20 19:10:25,1,85,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12009,ANTON,7,2014-04-14 11:17:19,2014-05-10 19:31:40,2014-04-20 11:11:24,3,394.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12010,SANTG,7,2023-09-13 05:55:55,2023-09-27 01:58:47,2023-09-29 18:15:24,2,465,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12011,GOURL,3,2021-12-20 20:03:18,2022-01-06 22:49:50,2021-12-23 13:39:59,3,260.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +12012,THEBI,6,2012-07-15 05:33:51,2012-07-22 15:23:41,2012-07-26 08:54:07,3,90,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12013,MAGAA,3,2021-01-15 06:34:10,2021-01-15 06:37:49,2021-02-03 17:25:24,1,212.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +12014,RICAR,8,2016-11-12 05:31:06,2016-11-23 10:23:58,2016-11-23 08:18:03,2,179.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12015,TRADH,4,2021-10-23 16:38:31,2021-10-27 21:55:39,2021-10-29 00:12:02,1,29,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12016,SPECD,1,2021-02-05 21:50:11,2021-02-09 01:14:06,2021-03-04 00:57:33,3,242,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12017,GALED,9,2017-06-01 12:29:16,2017-06-14 04:22:24,2017-06-05 04:43:27,3,481.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12018,FISSA,3,2022-01-14 17:59:44,2022-02-23 23:57:08,2022-01-22 17:50:21,2,220,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12019,SPLIR,7,2021-12-22 23:34:59,2021-12-26 12:11:07,2022-01-10 11:21:34,2,485.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12020,LINOD,3,2018-01-04 06:51:47,2018-02-11 19:00:33,2018-01-04 21:47:59,1,252.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12021,TORTU,2,2021-06-01 00:51:07,2021-06-25 04:22:05,2021-06-05 11:16:33,3,219,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12022,THECR,9,2023-04-13 18:22:12,2023-05-02 13:00:59,2023-04-15 01:43:35,2,199.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12023,LONEP,2,2012-09-10 03:36:14,2012-10-21 07:01:30,2012-09-14 21:54:00,1,196,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12024,RICAR,1,2014-08-14 13:14:41,2014-08-21 12:14:40,2014-09-02 16:05:58,1,204,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12025,CONSH,4,2015-02-06 14:05:51,2015-02-18 06:42:15,2015-02-12 02:05:51,3,271.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12026,PRINI,9,2022-11-07 12:08:55,2022-11-21 09:04:10,2022-11-10 20:13:07,2,200,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12027,KOENE,4,2021-02-10 00:33:20,2021-02-25 06:46:04,2021-02-13 09:43:53,2,467.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12028,VALON,7,2015-01-11 03:41:40,2015-01-18 20:34:33,2015-01-20 17:53:00,2,304.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12029,MAGAA,2,2017-08-16 17:14:45,2017-08-20 05:51:13,2017-09-10 02:47:59,2,80,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +12030,NORTS,3,2016-02-26 18:47:36,2016-03-17 15:43:22,2016-03-02 07:29:39,1,193.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +12031,FISSA,7,2013-09-05 18:49:12,2013-09-21 01:59:28,2013-09-15 19:34:02,2,210.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12032,SAVEA,2,2018-06-19 03:18:38,2018-07-06 12:43:17,2018-06-20 20:08:23,3,132.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12033,ANATR,1,2016-08-06 01:15:00,2016-08-27 02:51:25,2016-08-22 10:24:22,3,494.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12034,SANTG,9,2014-12-05 17:41:05,2014-12-15 06:42:35,2014-12-09 02:24:13,3,245.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12035,RICSU,6,2021-08-01 15:45:02,2021-08-12 03:07:46,2021-08-03 06:02:49,2,435.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12036,WOLZA,7,2020-01-14 11:34:15,2020-01-22 03:10:14,2020-01-15 22:23:09,3,462.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12037,ALFKI,1,2017-11-13 00:41:28,2017-12-10 09:26:03,2017-12-09 10:56:15,2,448.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12038,MAISD,5,2017-03-28 21:59:37,2017-04-20 11:09:47,2017-03-29 23:06:54,2,350.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12039,CHOPS,9,2016-03-02 22:39:28,2016-04-04 09:35:50,2016-03-24 05:59:01,1,38.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12040,LETSS,1,2013-04-30 12:09:52,2013-06-06 21:03:48,2013-05-12 00:26:26,1,311.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12041,WILMK,7,2016-06-13 05:50:10,2016-07-13 02:05:07,2016-06-26 10:02:26,3,155.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12042,RICAR,1,2013-01-13 19:32:40,2013-01-30 22:15:12,2013-02-04 09:21:35,3,391.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12043,SPLIR,6,2013-04-24 05:50:55,2013-05-14 10:25:26,2013-04-30 20:51:20,2,328,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12044,WHITC,9,2022-06-15 18:59:14,2022-07-02 18:06:02,2022-06-16 00:27:29,2,387,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12045,THEBI,9,2014-12-31 19:26:07,2015-01-28 18:43:00,2015-01-25 22:55:36,3,254.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12046,VALON,5,2013-08-08 18:41:14,2013-08-26 14:47:08,2013-08-19 05:54:08,3,437.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12047,EASTC,1,2018-08-08 13:13:18,2018-09-08 07:05:53,2018-08-09 23:05:58,1,202.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12048,LACOR,9,2015-07-30 20:47:20,2015-08-16 04:25:28,2015-08-02 02:50:57,3,156.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12049,BLONP,3,2020-09-29 06:22:35,2020-10-02 15:34:52,2020-09-30 11:24:26,3,57.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12050,SEVES,9,2017-05-12 20:28:25,2017-06-23 19:42:15,2017-06-01 18:36:27,2,411.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12051,MEREP,5,2020-03-29 01:03:04,2020-05-09 14:30:46,2020-04-03 04:55:32,3,415.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12052,SUPRD,5,2022-07-29 13:43:20,2022-08-24 14:55:53,2022-07-31 09:36:35,2,209.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12053,MEREP,5,2015-11-26 05:44:45,2015-12-20 18:57:48,2015-12-02 02:42:54,2,114.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12054,BOTTM,6,2021-07-20 09:11:00,2021-08-02 23:03:37,2021-07-25 22:28:30,2,170.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +12055,BSBEV,6,2021-10-14 02:22:16,2021-11-02 06:13:35,2021-10-14 06:11:49,2,196,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12056,SANTG,1,2015-09-13 13:18:41,2015-10-21 14:33:31,2015-09-19 18:52:52,1,190.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12057,DRACD,7,2020-01-14 01:03:48,2020-02-07 02:36:32,2020-01-20 15:12:58,2,68.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12058,ERNSH,6,2014-04-27 01:04:50,2014-05-31 10:35:35,2014-04-28 14:40:51,3,24.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12059,RANCH,8,2019-02-08 08:08:10,2019-02-23 08:11:55,2019-02-12 03:18:02,1,125.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12060,WILMK,9,2022-03-04 04:37:34,2022-03-06 12:21:45,2022-03-06 22:14:57,2,304.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12061,REGGC,4,2021-05-02 18:06:53,2021-05-14 01:24:22,2021-05-05 04:08:25,3,353.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12062,CACTU,7,2015-08-02 06:21:34,2015-08-18 17:59:53,2015-08-13 10:53:37,3,86,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12063,LINOD,7,2020-12-30 20:45:12,2020-12-31 02:16:25,2021-01-01 03:58:11,1,364.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12064,HUNGC,8,2015-07-08 03:11:58,2015-07-22 20:47:34,2015-07-13 04:43:55,1,362,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12065,BLAUS,2,2023-01-20 17:08:34,2023-01-31 04:21:19,2023-01-29 22:42:15,1,234.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12066,LAUGB,2,2017-08-31 00:33:12,2017-09-09 20:59:03,2017-08-31 10:48:48,3,162.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12067,TORTU,8,2016-05-12 00:20:00,2016-06-21 04:32:37,2016-05-29 14:08:19,3,431.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12068,HUNGC,1,2018-12-05 12:08:06,2019-01-02 03:18:25,2018-12-08 07:22:52,1,380.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12069,QUEEN,1,2016-02-25 11:46:49,2016-03-20 19:26:34,2016-02-25 20:08:01,3,183.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12070,WARTH,9,2016-05-21 03:25:43,2016-05-26 16:42:22,2016-05-24 18:35:31,3,292,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12071,MEREP,5,2016-10-05 23:14:46,2016-10-26 00:04:34,2016-10-18 06:57:04,3,462.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12072,FURIB,2,2023-02-18 20:42:18,2023-02-25 19:55:04,2023-03-01 23:51:40,1,150.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +12073,GALED,4,2014-05-11 11:18:42,2014-06-14 10:44:22,2014-05-17 17:53:48,3,45.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12074,BSBEV,2,2021-03-25 16:47:53,2021-04-07 18:17:36,2021-03-25 19:54:46,1,243.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12075,LINOD,1,2017-04-02 05:21:10,2017-04-11 09:02:46,2017-04-11 08:06:10,2,158,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12076,CHOPS,5,2013-11-24 00:30:35,2013-11-30 07:48:40,2013-12-01 14:25:03,2,380,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12077,LAUGB,2,2014-10-08 17:40:19,2014-10-24 06:20:30,2014-10-11 13:47:48,2,111.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +12078,ALFKI,4,2012-08-31 17:02:02,2012-09-20 12:14:02,2012-09-02 11:30:58,2,205.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12079,HUNGC,7,2017-06-06 20:46:57,2017-06-13 00:00:17,2017-06-21 09:44:48,1,77.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12080,WELLI,5,2013-11-05 06:01:45,2013-12-06 22:52:24,2013-11-07 00:33:10,2,422.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12081,NORTS,6,2015-11-12 04:36:07,2016-01-06 11:25:49,2015-11-15 07:18:21,1,62.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12082,CHOPS,9,2020-08-15 00:06:12,2020-08-26 18:19:01,2020-08-20 20:07:48,3,205.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12083,TORTU,5,2020-05-27 15:29:36,2020-06-11 20:29:15,2020-06-01 08:05:50,3,87.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12084,SEVES,3,2014-05-09 07:27:58,2014-05-09 16:06:41,2014-05-16 09:21:24,3,178.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12085,WANDK,6,2021-10-01 17:27:43,2021-10-13 12:10:29,2021-10-03 20:11:34,1,171.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12086,PERIC,8,2014-04-28 16:35:20,2014-05-15 16:15:40,2014-05-02 11:03:01,1,131.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12087,LACOR,5,2022-06-24 16:18:04,2022-06-24 19:19:44,2022-07-01 06:18:15,1,466,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12088,AROUT,1,2013-08-07 16:25:18,2013-08-07 16:36:51,2013-08-08 17:05:44,2,281.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12089,FRANS,1,2015-04-10 07:26:03,2015-04-18 21:49:49,2015-04-20 21:26:29,2,288.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12090,MAISD,2,2019-02-12 22:19:27,2019-03-07 09:12:43,2019-02-28 08:32:18,1,163.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12091,WHITC,2,2022-12-23 09:57:02,2023-01-14 17:48:52,2022-12-25 13:33:24,2,148.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12092,BLONP,4,2023-08-25 23:27:42,2023-09-25 10:15:36,2023-09-11 20:52:57,3,105.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12093,COMMI,1,2013-03-30 03:43:58,2013-04-19 12:53:36,2013-04-22 01:31:40,3,20.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12094,MAISD,7,2018-05-26 06:40:56,2018-06-14 08:05:12,2018-06-07 07:23:14,3,183,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12095,BONAP,1,2016-02-15 16:50:42,2016-02-27 19:12:35,2016-02-17 01:56:51,2,463.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12096,BLAUS,2,2018-06-10 22:04:57,2018-06-27 08:55:30,2018-06-11 18:53:11,2,315,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12097,ANATR,3,2017-01-13 19:11:45,2017-01-18 03:05:05,2017-01-15 00:40:15,2,276,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12098,TOMSP,1,2022-02-26 17:28:58,2022-03-07 17:57:20,2022-03-02 15:32:56,1,272.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12099,BOLID,3,2014-09-16 23:54:16,2014-11-06 16:40:24,2014-09-18 06:33:36,1,409.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12100,PICCO,4,2012-12-15 22:19:42,2012-12-25 06:49:19,2012-12-31 21:32:57,2,311.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +12101,OTTIK,9,2017-11-12 05:04:30,2017-12-13 14:52:48,2017-11-21 20:23:25,2,203.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12102,BOLID,2,2018-11-30 10:54:19,2018-12-11 00:51:41,2018-12-14 15:43:47,3,388,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12103,OTTIK,6,2013-01-15 17:40:11,2013-01-30 03:47:31,2013-01-16 10:00:01,1,187.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12104,MORGK,7,2019-12-19 20:28:32,2020-01-01 22:30:18,2019-12-26 12:34:23,3,231.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12105,MEREP,4,2015-05-09 16:17:17,2015-06-05 02:42:31,2015-05-10 18:54:24,1,401.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12106,CENTC,1,2014-12-16 20:08:28,2014-12-22 20:47:36,2014-12-19 23:23:44,3,247,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12107,WELLI,8,2020-11-07 07:10:31,2020-12-16 13:39:49,2020-11-10 19:32:16,3,74,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12108,COMMI,1,2022-12-09 17:14:41,2022-12-26 17:45:34,2022-12-12 20:35:24,3,284.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12109,BONAP,1,2017-06-15 23:18:36,2017-06-27 21:11:05,2017-06-22 16:25:52,1,307.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12110,Val2 ,2,2020-10-21 02:57:42,2020-10-26 12:14:15,2020-10-22 14:37:26,2,288.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12111,ERNSH,3,2013-09-02 07:24:55,2013-09-30 04:13:52,2013-09-09 19:09:20,1,80,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12112,SEVES,2,2019-09-06 09:50:23,2019-10-17 03:16:27,2019-09-19 07:08:53,3,88.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +12113,DUMON,8,2021-08-11 17:10:19,2021-10-02 16:23:07,2021-08-17 16:54:35,3,428,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12114,VICTE,8,2018-09-10 06:17:16,2018-10-11 12:06:45,2018-09-11 12:24:12,1,191,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12115,GREAL,7,2020-05-20 07:23:04,2020-05-20 18:35:50,2020-06-01 01:39:12,1,344,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12116,FURIB,6,2016-10-01 15:18:58,2016-10-19 10:07:50,2016-10-05 04:00:37,2,284.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12117,ROMEY,9,2020-10-22 00:45:26,2020-11-14 00:14:42,2020-11-02 06:41:32,3,98,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12118,MAISD,3,2018-05-30 21:14:12,2018-06-02 12:00:55,2018-06-08 12:47:08,3,298.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12119,FOLIG,9,2019-09-07 09:08:55,2019-09-19 19:06:33,2019-09-09 23:36:31,1,138.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12120,QUICK,9,2015-11-30 12:18:54,2015-12-16 17:04:05,2015-12-01 08:56:00,1,307,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12121,DUMON,3,2012-08-18 15:18:31,2012-09-16 02:47:53,2012-08-18 20:19:26,3,434.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12122,LACOR,5,2015-04-25 14:56:38,2015-06-05 15:00:16,2015-05-13 05:19:45,2,375,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12123,PICCO,8,2018-12-22 16:12:10,2019-01-21 07:21:46,2019-01-03 16:49:31,1,101.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12124,LONEP,3,2016-05-23 02:04:05,2016-06-13 02:17:33,2016-05-25 00:05:31,2,258.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12125,PRINI,5,2017-02-22 21:44:59,2017-02-24 16:51:18,2017-02-23 10:55:08,3,242.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +12126,EASTC,7,2016-01-20 22:03:19,2016-02-18 12:24:48,2016-01-21 21:12:40,1,329,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12127,SIMOB,7,2021-03-30 20:15:44,2021-05-08 02:15:21,2021-04-02 22:49:27,1,332.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12128,SEVES,7,2016-01-27 23:27:03,2016-02-03 02:48:32,2016-02-09 01:36:04,1,122.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12129,VICTE,4,2016-02-13 11:14:30,2016-02-15 16:28:35,2016-02-21 06:25:46,2,29,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12130,BONAP,9,2021-04-15 20:53:55,2021-04-24 20:17:51,2021-04-25 09:48:43,1,458,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12131,FAMIA,1,2018-03-11 22:58:19,2018-03-30 01:01:39,2018-03-16 07:44:54,3,336.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12132,OTTIK,9,2021-04-21 17:41:22,2021-05-23 19:07:38,2021-04-26 02:15:33,2,251,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12133,LILAS,7,2021-01-07 02:51:13,2021-01-12 01:51:27,2021-01-09 13:05:06,3,365.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12134,TRADH,6,2022-11-27 08:10:06,2022-12-18 07:42:12,2022-11-29 16:26:21,3,218.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12135,PRINI,6,2013-08-14 02:31:29,2013-09-17 02:31:23,2013-08-14 12:27:00,2,407.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12136,FOLIG,9,2013-03-24 22:17:45,2013-04-09 00:50:52,2013-04-01 16:30:51,3,274.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +12137,TRAIH,1,2020-07-18 10:30:33,2020-07-23 15:17:12,2020-07-19 01:21:28,3,24,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12138,THEBI,2,2018-01-30 13:34:01,2018-03-13 03:26:35,2018-02-04 01:21:41,3,96.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12139,CONSH,5,2023-03-20 11:06:11,2023-03-25 05:36:36,2023-03-20 11:22:20,3,177.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12140,SEVES,2,2017-04-26 00:00:36,2017-05-30 02:12:36,2017-05-10 01:21:21,1,35.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12141,FRANS,5,2017-06-19 01:14:05,2017-08-01 14:49:53,2017-06-25 15:16:37,1,64.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12142,TRAIH,5,2021-04-11 14:04:53,2021-04-19 10:30:21,2021-04-22 19:13:13,2,404.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12143,QUEEN,8,2018-12-14 11:11:58,2019-01-12 14:09:52,2019-01-10 01:27:27,3,440.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12144,LAZYK,7,2022-11-12 21:38:01,2022-11-24 05:16:59,2022-11-27 12:14:25,3,493.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12145,FRANS,3,2020-02-29 22:02:56,2020-04-22 10:28:35,2020-03-05 07:45:41,2,493.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12146,QUICK,2,2014-06-28 05:32:15,2014-07-01 13:40:26,2014-07-02 17:07:00,1,477.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12147,PERIC,6,2020-09-11 17:39:35,2020-10-20 12:45:34,2020-09-12 08:43:21,3,479.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12148,WELLI,9,2017-03-20 05:52:33,2017-04-02 10:49:59,2017-03-23 19:57:32,1,264.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +12149,VINET,6,2012-12-02 06:53:50,2012-12-28 17:05:15,2012-12-14 19:48:04,2,93.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12150,HUNGC,9,2014-01-02 21:57:20,2014-01-09 15:47:56,2014-01-03 16:41:27,3,423.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12151,GROSR,9,2014-01-25 11:54:27,2014-03-18 17:28:36,2014-01-27 04:31:31,1,16.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12152,FRANK,9,2019-06-08 02:57:13,2019-06-14 21:09:04,2019-06-19 07:10:57,2,59.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12153,ROMEY,5,2015-09-25 18:11:49,2015-10-18 11:34:16,2015-10-08 19:31:50,3,314.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12154,RATTC,6,2020-09-23 13:36:22,2020-10-11 02:02:31,2020-09-24 09:41:31,3,390.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12155,Val2 ,1,2023-08-16 06:11:45,2023-09-20 04:43:47,2023-08-17 00:53:56,2,397.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12156,GOURL,7,2015-03-15 07:16:42,2015-03-16 09:05:17,2015-03-27 10:09:47,2,363,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12157,FRANK,8,2022-12-04 17:49:25,2022-12-13 22:43:10,2022-12-20 21:56:07,3,262.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12158,CONSH,4,2022-07-07 09:23:49,2022-07-11 06:24:05,2022-07-13 07:30:52,1,404.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12159,HUNGC,5,2020-02-03 16:11:01,2020-02-22 16:28:41,2020-02-04 02:23:57,1,383,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12160,OTTIK,3,2020-05-19 22:13:07,2020-05-20 17:45:22,2020-05-31 02:47:58,3,258.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12161,RICSU,8,2014-02-19 19:23:25,2014-03-30 22:37:45,2014-02-27 04:39:49,2,287,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12162,HUNGC,5,2014-12-12 13:08:15,2015-01-23 11:26:02,2014-12-24 17:48:41,1,299.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12163,OCEAN,7,2019-03-25 22:35:37,2019-05-05 12:45:16,2019-03-26 15:33:55,3,94.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12164,FRANK,2,2018-05-03 04:40:01,2018-07-01 14:48:20,2018-05-09 06:07:20,2,334,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12165,GODOS,3,2022-12-05 01:25:01,2022-12-23 11:32:08,2022-12-28 18:02:28,2,374.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12166,LAZYK,5,2018-07-23 02:38:15,2018-07-23 06:19:17,2018-08-01 15:38:35,1,312.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12167,LAMAI,7,2015-02-13 04:42:11,2015-02-16 23:46:40,2015-03-04 15:26:41,3,242.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12168,RANCH,5,2023-03-20 05:29:10,2023-04-12 22:49:54,2023-03-28 20:23:34,3,137.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12169,REGGC,8,2023-02-22 03:07:51,2023-03-09 13:19:23,2023-02-23 06:58:54,3,54.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12170,LINOD,6,2017-04-12 02:57:59,2017-04-21 23:03:52,2017-04-24 22:26:55,1,158.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12171,HILAA,6,2015-03-10 18:54:08,2015-04-15 11:55:04,2015-03-31 19:22:33,1,45.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12172,PICCO,1,2023-01-14 20:00:39,2023-02-04 23:35:33,2023-01-22 22:06:43,3,22.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12173,HANAR,1,2014-10-06 16:23:08,2014-10-26 15:44:01,2014-10-14 21:28:48,2,38,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12174,GREAL,6,2021-08-09 01:24:25,2021-08-10 14:55:08,2021-08-13 12:14:27,2,190.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12175,FOLIG,8,2013-11-05 00:22:46,2013-11-11 20:44:17,2013-11-18 08:34:55,2,460.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12176,VAFFE,9,2021-12-07 01:11:32,2021-12-16 13:00:26,2021-12-13 19:24:18,2,468.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12177,WARTH,3,2013-12-02 03:54:58,2013-12-07 04:17:07,2013-12-04 19:06:02,1,488.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12178,GREAL,7,2018-08-31 00:06:57,2018-09-15 23:18:06,2018-09-07 15:38:51,3,403.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12179,ROMEY,3,2020-02-05 02:05:52,2020-02-18 19:12:06,2020-02-15 10:53:15,2,35.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12180,SPECD,9,2013-11-26 23:23:29,2013-12-14 06:20:40,2013-11-27 08:30:20,1,375.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12181,LAZYK,2,2012-09-06 12:17:51,2012-10-13 07:34:02,2012-09-12 09:30:02,2,451.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12182,SPECD,6,2021-03-31 18:39:59,2021-04-12 12:17:41,2021-04-09 04:24:55,2,294.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12183,PERIC,4,2016-01-04 20:51:56,2016-01-05 10:56:05,2016-01-05 16:18:55,2,326.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12184,BOTTM,8,2014-05-06 05:41:51,2014-05-10 06:38:50,2014-05-10 22:40:53,2,215.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12185,DUMON,7,2018-06-06 16:41:32,2018-06-13 21:11:35,2018-06-23 06:55:30,3,203,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12186,RICSU,9,2022-08-21 08:47:12,2022-09-08 19:04:44,2022-09-02 01:47:32,1,261.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12187,GODOS,1,2023-07-16 13:08:34,2023-07-21 19:22:02,2023-07-24 18:10:36,1,333.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12188,BLONP,1,2016-06-04 22:23:43,2016-06-08 05:49:13,2016-06-20 04:16:58,3,26.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12189,EASTC,4,2016-03-19 15:44:01,2016-04-10 12:08:57,2016-03-22 05:29:19,2,150.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12190,HILAA,6,2019-02-26 08:47:04,2019-03-13 19:49:31,2019-02-27 07:49:36,1,73.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12191,ANATR,6,2016-10-04 19:17:24,2016-10-17 20:07:40,2016-10-18 05:35:17,2,287.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12192,SAVEA,3,2020-07-03 05:30:08,2020-07-16 23:21:45,2020-07-07 03:13:51,1,288.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12193,TRADH,3,2014-09-02 18:46:52,2014-09-28 05:29:10,2014-09-04 23:40:58,3,230.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12194,WILMK,2,2014-01-28 08:55:18,2014-02-03 11:38:07,2014-02-05 03:21:08,3,19.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12195,SEVES,6,2014-07-16 20:18:15,2014-07-30 07:35:30,2014-07-18 06:55:29,2,410.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12196,SAVEA,9,2022-05-11 04:45:58,2022-05-30 20:32:50,2022-05-24 10:10:16,3,184,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12197,PARIS,2,2020-08-03 01:48:14,2020-09-13 16:38:37,2020-08-17 22:15:12,1,185.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12198,TORTU,7,2018-04-30 17:21:39,2018-06-11 07:32:02,2018-05-14 23:50:29,2,259.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12199,PICCO,2,2016-03-18 04:30:28,2016-03-19 12:21:43,2016-04-03 01:34:16,2,215.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12200,GALED,3,2016-11-29 23:46:29,2016-12-02 05:58:49,2016-12-09 06:50:52,3,465.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12201,COMMI,1,2019-12-08 19:55:25,2019-12-30 00:13:59,2019-12-11 19:30:53,3,201,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12202,BONAP,7,2023-06-17 17:55:37,2023-08-02 12:58:44,2023-06-26 06:39:59,2,16.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12203,MORGK,8,2017-04-25 15:45:48,2017-05-15 10:08:52,2017-04-27 04:24:41,1,21.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12204,LEHMS,3,2021-10-11 22:42:04,2021-10-17 03:37:14,2021-10-21 06:52:30,1,96.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12205,MORGK,5,2015-06-05 10:52:31,2015-07-01 01:23:32,2015-06-19 03:44:44,3,117.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12206,CACTU,3,2016-03-12 01:14:02,2016-03-18 07:58:39,2016-03-14 02:48:40,2,29.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12207,TOMSP,4,2021-08-02 03:32:15,2021-08-13 21:09:06,2021-08-08 01:32:43,1,232.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12208,FRANS,6,2013-02-23 04:09:04,2013-02-27 02:09:41,2013-02-26 22:33:53,1,261.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12209,GREAL,8,2015-11-11 11:30:02,2015-11-25 17:34:05,2015-11-13 19:29:20,1,217,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12210,GALED,5,2022-09-01 22:40:40,2022-09-28 16:39:54,2022-09-18 02:50:21,3,471.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12211,BOTTM,6,2018-10-11 04:56:35,2018-10-18 20:51:33,2018-10-24 05:58:43,3,66,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12212,SPECD,5,2020-01-23 21:07:26,2020-02-02 06:36:06,2020-01-25 02:42:31,2,106.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12213,GOURL,1,2020-08-13 16:39:22,2020-09-18 13:05:59,2020-08-22 00:46:09,3,328.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12214,OCEAN,9,2022-05-15 05:21:10,2022-05-31 22:12:21,2022-05-21 09:42:58,3,204.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12215,TOMSP,3,2022-07-13 00:53:44,2022-09-05 19:54:05,2022-07-15 09:12:28,1,467.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12216,ANTON,5,2016-04-09 04:02:09,2016-04-13 20:14:58,2016-04-15 20:33:15,2,225.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12217,VINET,3,2021-02-12 17:23:10,2021-02-24 20:39:44,2021-02-18 10:04:37,3,101,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12218,VICTE,2,2021-06-17 10:21:08,2021-08-08 00:21:48,2021-06-23 04:17:26,3,367.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12219,OLDWO,6,2019-04-09 21:52:59,2019-04-14 22:39:26,2019-04-15 01:19:12,1,188.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12220,ISLAT,3,2013-10-13 00:51:07,2013-11-09 16:28:13,2013-10-22 09:45:18,2,432,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12221,SAVEA,6,2020-06-07 21:28:25,2020-07-30 14:31:24,2020-06-21 03:14:33,2,111.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12222,WARTH,1,2019-07-08 21:42:46,2019-07-27 06:15:56,2019-07-09 02:23:43,1,418,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12223,PICCO,3,2023-02-23 00:07:16,2023-03-03 05:00:54,2023-03-14 03:21:41,2,282.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12224,GOURL,2,2023-04-14 12:56:36,2023-04-29 03:32:59,2023-04-17 18:15:54,2,335.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12225,LEHMS,5,2021-12-28 01:11:57,2022-01-23 06:30:23,2022-01-15 02:34:16,1,412.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +12226,BOTTM,5,2022-06-17 06:52:08,2022-07-28 16:07:00,2022-06-18 11:39:16,1,307.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12227,LINOD,5,2016-06-04 12:12:37,2016-06-07 23:14:00,2016-06-19 00:43:13,1,112.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12228,WANDK,8,2017-09-05 13:48:29,2017-09-13 16:55:58,2017-09-25 02:16:58,1,47.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12229,FOLIG,2,2014-07-17 01:29:54,2014-07-20 01:08:15,2014-07-31 13:50:38,3,343,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12230,COMMI,3,2014-01-15 20:24:34,2014-02-16 06:58:44,2014-01-29 16:04:48,2,43.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12231,FOLIG,5,2022-02-15 16:58:54,2022-02-22 17:32:48,2022-03-03 14:34:02,3,314.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12232,NORTS,8,2017-04-29 23:33:40,2017-05-01 18:49:54,2017-05-09 00:26:52,3,133.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12233,BERGS,5,2021-02-04 07:14:09,2021-02-05 08:12:55,2021-02-10 22:03:40,2,416,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12234,SAVEA,9,2020-06-12 02:50:15,2020-07-28 12:19:07,2020-06-25 07:23:26,3,46,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12235,MEREP,7,2013-02-25 19:11:29,2013-03-14 08:33:48,2013-03-04 14:26:49,1,372.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12236,ROMEY,5,2016-02-23 04:31:28,2016-03-19 15:28:39,2016-02-24 17:39:52,3,233,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12237,LILAS,2,2023-04-20 05:18:46,2023-04-24 14:11:31,2023-04-20 23:13:19,3,387.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12238,FRANS,6,2022-02-10 23:20:17,2022-03-26 22:46:06,2022-02-20 05:51:59,1,138,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12239,OCEAN,4,2020-02-06 04:15:45,2020-02-18 19:25:31,2020-02-13 00:13:27,2,17.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12240,WARTH,6,2023-06-30 03:30:13,2023-07-05 13:05:56,2023-07-02 04:27:29,2,310.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12241,CACTU,5,2020-05-18 03:39:08,2020-06-24 18:03:42,2020-05-28 15:49:57,3,90.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12242,VAFFE,3,2013-06-17 00:59:27,2013-07-03 04:58:45,2013-06-27 01:58:28,2,406.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12243,GODOS,3,2013-11-13 06:07:27,2013-11-27 23:10:05,2013-11-13 20:08:28,3,66,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12244,TORTU,8,2014-04-25 19:12:57,2014-05-08 03:42:26,2014-05-03 16:07:34,3,438.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12245,LINOD,1,2021-11-19 11:15:38,2021-12-09 13:28:51,2021-12-04 10:53:51,3,148.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12246,SIMOB,3,2013-07-19 11:38:03,2013-08-30 11:11:25,2013-07-31 14:44:43,2,142,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12247,DUMON,3,2017-09-27 10:52:34,2017-11-14 08:59:35,2017-09-28 11:11:00,3,188.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12248,FRANR,5,2020-07-31 13:39:10,2020-08-31 10:02:43,2020-08-01 22:57:01,3,140,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12249,VALON,4,2017-07-04 03:15:05,2017-08-01 14:31:32,2017-07-14 19:59:08,3,497.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12250,GROSR,3,2015-06-02 20:26:12,2015-06-24 04:43:16,2015-06-11 23:42:38,2,21.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12251,VALON,8,2019-11-24 00:30:01,2019-11-30 16:46:52,2019-12-02 02:32:59,3,147.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12252,OCEAN,6,2014-09-19 06:31:12,2014-10-01 06:36:53,2014-09-21 02:50:33,1,257,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12253,DRACD,4,2014-10-31 16:03:21,2014-11-09 08:32:43,2014-11-03 12:45:00,1,197,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12254,TRADH,4,2021-12-30 23:42:42,2022-01-12 01:19:23,2022-01-01 03:01:57,3,432.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12255,TORTU,6,2016-12-03 01:38:14,2016-12-20 09:49:56,2016-12-22 20:25:06,1,400,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12256,SIMOB,6,2023-04-04 22:44:40,2023-04-23 05:50:40,2023-04-16 17:03:12,3,478,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12257,TOMSP,7,2014-01-06 11:14:52,2014-01-09 02:44:41,2014-01-10 05:38:03,2,374.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12258,THEBI,1,2016-06-05 02:10:49,2016-06-08 09:28:12,2016-06-25 07:49:02,2,443.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12259,SUPRD,2,2023-02-16 09:12:09,2023-02-18 07:17:10,2023-03-03 19:00:36,1,471,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12260,HUNGO,8,2019-12-22 17:50:10,2019-12-30 23:54:49,2020-01-12 04:42:27,2,40.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12261,CENTC,3,2021-05-04 18:28:46,2021-05-13 05:54:12,2021-05-24 21:27:20,1,143,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12262,HUNGC,7,2023-10-10 13:59:58,2023-11-06 16:22:38,2023-11-03 14:22:40,3,67,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12263,HUNGC,4,2013-07-30 15:15:24,2013-08-09 22:05:48,2013-08-02 08:55:39,2,505.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12264,HANAR,8,2018-01-13 01:17:56,2018-01-15 11:48:28,2018-01-14 22:07:49,2,301.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12265,LAMAI,8,2021-09-10 19:45:22,2021-10-29 10:13:01,2021-09-12 02:06:46,1,158.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +12266,OTTIK,3,2015-12-03 09:34:50,2015-12-19 12:59:12,2015-12-05 06:21:28,1,268.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12267,ISLAT,5,2015-12-04 22:02:28,2015-12-31 21:59:21,2015-12-07 15:54:54,1,116.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12268,SANTG,4,2016-03-31 05:55:38,2016-05-08 20:41:23,2016-04-02 03:32:51,2,215.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12269,FISSA,5,2020-01-14 19:00:27,2020-02-05 23:37:49,2020-01-18 11:50:33,1,379.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12270,VINET,3,2019-12-04 13:44:28,2019-12-28 11:40:47,2019-12-08 22:16:13,1,541.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12271,ALFKI,2,2023-08-18 01:47:30,2023-08-26 09:00:41,2023-08-22 02:31:12,1,442.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12272,BOLID,2,2019-04-29 21:09:52,2019-05-24 19:52:54,2019-05-11 13:40:28,2,462.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12273,PRINI,8,2015-09-05 13:45:39,2015-09-08 01:34:30,2015-09-14 03:36:22,1,305.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12274,GOURL,9,2014-05-05 17:06:46,2014-05-30 17:20:32,2014-05-10 08:48:58,1,23.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12275,GROSR,9,2015-09-11 05:07:59,2015-09-29 15:39:07,2015-09-30 10:18:29,2,121,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12276,OLDWO,5,2015-10-22 10:44:20,2015-11-18 22:36:16,2015-10-30 01:03:18,2,110.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12277,HANAR,3,2014-04-03 17:44:57,2014-04-30 16:30:45,2014-04-16 14:11:28,3,320.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12278,GODOS,5,2012-10-07 05:30:20,2012-10-31 17:12:12,2012-10-15 03:17:19,2,336.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12279,OLDWO,6,2012-12-23 20:36:06,2013-01-10 13:38:21,2012-12-24 23:06:37,3,299,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12280,GALED,9,2017-12-06 15:53:57,2017-12-30 11:48:35,2017-12-07 06:13:58,2,45,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12281,QUEDE,3,2019-04-13 09:47:48,2019-04-28 07:21:48,2019-04-13 17:32:50,2,255.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12282,SAVEA,7,2018-02-17 14:46:48,2018-03-25 08:34:14,2018-03-07 12:02:18,3,119.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12283,VICTE,8,2021-06-20 21:58:06,2021-06-21 11:12:09,2021-06-21 16:48:06,2,388,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12284,GROSR,6,2014-03-20 04:40:48,2014-04-17 22:45:14,2014-03-24 01:19:03,2,43.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12285,GOURL,9,2021-12-08 21:58:33,2022-01-03 09:15:00,2021-12-16 00:24:40,3,299.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12286,MAISD,4,2021-01-26 08:01:15,2021-02-06 14:54:47,2021-01-27 14:10:57,2,104,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12287,LONEP,7,2022-04-15 23:48:38,2022-04-18 13:33:16,2022-04-18 05:13:37,2,81,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12288,SPLIR,1,2018-04-01 15:13:31,2018-04-09 06:02:46,2018-04-02 14:52:31,1,419.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12289,SUPRD,1,2017-07-15 16:38:48,2017-07-20 14:26:36,2017-07-21 21:11:05,3,421,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +12290,LACOR,4,2013-07-01 13:05:07,2013-07-16 05:40:35,2013-07-21 14:23:36,3,248.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12291,BSBEV,7,2015-08-29 19:07:41,2015-09-12 21:30:28,2015-09-17 02:21:42,1,296,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12292,HILAA,9,2018-09-11 04:27:50,2018-10-01 19:25:39,2018-09-15 22:21:58,3,62.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12293,LONEP,3,2017-04-24 13:53:54,2017-05-15 21:01:47,2017-05-03 13:00:30,1,509.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12294,Val2 ,1,2013-05-01 10:50:48,2013-05-13 12:16:43,2013-05-09 08:21:06,2,420.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12295,SIMOB,5,2015-08-25 00:11:01,2015-08-31 11:41:26,2015-08-28 14:36:15,1,497,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12296,SAVEA,3,2014-12-20 21:32:53,2015-01-12 05:24:10,2014-12-24 21:10:59,3,21.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12297,WELLI,7,2022-09-22 12:50:04,2022-11-08 10:48:38,2022-09-29 12:48:55,2,193.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12298,THECR,7,2014-02-17 23:10:11,2014-03-19 07:00:47,2014-03-08 08:46:54,3,188.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12299,SAVEA,6,2017-10-07 15:21:31,2017-10-16 01:29:16,2017-10-13 18:30:28,3,360,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12300,SIMOB,9,2018-07-20 03:32:17,2018-07-28 13:21:05,2018-07-26 21:22:13,1,32.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12301,FOLKO,1,2019-02-01 16:45:12,2019-02-28 04:30:46,2019-02-03 16:30:30,1,492.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12302,ALFKI,3,2018-02-24 12:51:07,2018-02-25 00:05:19,2018-03-22 16:19:19,2,173.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12303,VAFFE,2,2023-09-11 09:22:06,2023-09-14 11:21:55,2023-09-14 06:34:48,2,140.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +12304,ALFKI,2,2021-01-31 04:13:48,2021-02-04 09:39:52,2021-02-01 08:38:00,1,229,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12305,HILAA,7,2017-02-17 03:59:47,2017-03-24 12:52:26,2017-02-25 08:56:23,3,65.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12306,ANATR,5,2020-04-26 21:36:54,2020-05-11 08:28:43,2020-05-19 03:11:05,1,87.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12307,OCEAN,6,2013-11-20 01:53:18,2013-12-17 19:35:01,2013-11-28 12:14:15,1,333.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12308,ROMEY,6,2017-07-27 22:51:00,2017-08-15 20:09:06,2017-07-29 10:31:07,2,314,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12309,FOLIG,6,2022-01-01 13:45:48,2022-01-09 15:30:54,2022-01-05 19:50:23,1,263,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12310,WELLI,2,2021-11-09 01:06:53,2021-11-30 06:33:28,2021-11-10 03:19:39,1,135.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12311,RICAR,6,2016-12-01 17:37:10,2016-12-08 11:31:28,2016-12-08 14:45:58,2,388.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12312,SPLIR,8,2020-03-01 19:48:10,2020-03-10 11:18:01,2020-03-19 01:45:30,3,260.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12313,BOLID,2,2017-11-05 22:14:08,2017-11-22 02:37:10,2017-11-20 05:08:12,3,355.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12314,FRANK,8,2017-03-27 12:41:20,2017-05-08 12:07:44,2017-04-20 23:50:33,3,256.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12315,GOURL,8,2014-10-06 03:45:54,2014-10-08 21:46:38,2014-10-10 10:47:11,1,461.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12316,GOURL,8,2018-03-15 09:53:39,2018-04-15 16:27:05,2018-04-03 08:27:42,3,395.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12317,FISSA,2,2016-05-23 02:06:59,2016-05-29 17:24:26,2016-06-02 17:19:20,3,253.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12318,CHOPS,4,2015-07-12 07:55:53,2015-08-10 03:27:20,2015-08-02 09:18:42,2,181.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12319,ANATR,1,2017-05-29 04:52:25,2017-06-02 00:32:06,2017-05-30 06:42:02,1,392.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12320,LONEP,8,2013-05-28 12:03:20,2013-05-29 09:30:25,2013-06-12 07:50:24,2,61.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12321,QUEDE,7,2018-08-02 05:22:33,2018-09-06 21:55:02,2018-08-15 23:43:56,3,220.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12322,THEBI,5,2021-01-26 18:11:34,2021-02-21 11:31:03,2021-02-07 22:15:49,2,381,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12323,FISSA,8,2012-11-04 03:53:53,2012-11-18 15:55:52,2012-11-07 16:58:57,3,70,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12324,SANTG,9,2020-09-12 20:14:08,2020-10-26 18:30:54,2020-09-25 09:43:54,3,103.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12325,SAVEA,9,2021-01-11 07:33:42,2021-01-16 04:51:38,2021-01-23 03:59:51,1,62.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12326,FRANS,7,2021-01-01 01:37:43,2021-01-10 14:29:20,2021-01-05 13:59:15,1,423.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12327,WHITC,3,2013-01-23 02:10:08,2013-02-16 11:27:18,2013-01-31 13:34:15,3,354,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12328,THEBI,3,2019-07-03 11:38:57,2019-07-26 23:24:36,2019-07-08 19:52:29,1,333,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12329,WELLI,5,2018-01-26 07:25:06,2018-02-01 06:00:00,2018-01-28 15:43:19,3,458,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12330,TOMSP,4,2014-08-04 10:53:05,2014-08-11 19:51:39,2014-08-22 04:26:55,2,104.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12331,SIMOB,3,2021-05-05 10:47:49,2021-06-04 04:21:56,2021-05-25 02:44:41,3,15.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12332,DUMON,7,2019-03-10 05:32:02,2019-04-05 10:18:26,2019-03-13 04:01:06,2,195.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12333,BSBEV,6,2014-11-27 08:41:03,2014-12-04 11:19:50,2014-11-29 00:59:43,1,172.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12334,GREAL,2,2015-07-11 17:58:04,2015-07-16 22:35:28,2015-07-24 14:22:32,3,412.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +12335,BLAUS,7,2018-11-14 06:44:13,2018-12-06 01:59:33,2018-11-14 23:13:41,3,112.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12336,THEBI,9,2022-10-19 10:58:43,2022-10-20 23:37:42,2022-10-25 15:57:45,2,410.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12337,PARIS,3,2015-03-15 13:02:37,2015-03-21 10:24:03,2015-03-27 22:30:19,2,223.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12338,QUEEN,4,2018-04-20 19:48:09,2018-04-22 03:48:22,2018-05-12 18:34:33,3,305.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12339,FURIB,2,2020-05-26 06:33:03,2020-06-20 21:06:48,2020-05-31 13:12:31,2,416.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +12340,QUEDE,8,2020-01-21 02:33:02,2020-02-08 23:14:42,2020-01-26 02:27:19,1,426,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12341,LONEP,3,2023-10-18 11:09:19,2023-12-04 17:08:59,2023-10-19 08:24:05,2,52.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12342,SPECD,9,2018-01-27 12:05:57,2018-02-03 09:09:27,2018-02-07 15:29:51,1,29,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12343,BOTTM,4,2017-06-23 14:29:25,2017-07-18 07:11:22,2017-07-07 07:05:39,1,311.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12344,HANAR,7,2018-08-21 08:15:52,2018-09-27 19:01:56,2018-08-24 00:24:25,3,161.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12345,BLAUS,6,2019-09-23 08:06:52,2019-09-23 14:56:03,2019-09-24 04:53:00,3,346.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12346,LAUGB,1,2020-06-21 22:05:20,2020-07-07 18:48:56,2020-06-24 14:41:57,3,114.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12347,CHOPS,8,2018-12-30 17:09:34,2019-01-14 19:11:54,2019-01-02 23:09:53,2,151.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12348,FURIB,4,2013-03-18 12:26:59,2013-04-13 05:56:57,2013-03-21 18:51:37,2,287.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +12349,LAZYK,8,2014-08-01 21:56:09,2014-08-04 16:19:08,2014-08-04 19:08:35,2,407.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12350,TRADH,5,2019-07-04 19:39:26,2019-07-13 08:27:01,2019-07-07 15:38:22,1,41.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12351,QUEEN,2,2014-11-24 04:12:08,2014-12-20 21:32:52,2014-12-02 03:07:21,2,165.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12352,AROUT,9,2021-06-15 13:00:52,2021-06-18 08:52:53,2021-06-15 21:14:24,2,444.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12353,TORTU,8,2021-09-04 19:48:00,2021-09-13 13:52:31,2021-09-07 08:19:16,1,16.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12354,LILAS,5,2019-12-21 08:16:26,2020-01-14 04:10:43,2020-01-08 01:34:17,2,249.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12355,WARTH,4,2021-06-17 02:15:45,2021-07-04 16:40:42,2021-07-01 03:52:26,3,273.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12356,BSBEV,4,2019-03-27 08:47:42,2019-04-10 15:57:45,2019-03-28 00:42:14,3,45.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12357,COMMI,7,2018-06-14 03:35:17,2018-06-30 05:39:22,2018-07-01 07:32:47,3,318.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12358,WARTH,8,2013-07-21 21:36:00,2013-08-05 19:14:03,2013-08-07 02:56:12,3,138.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12359,ISLAT,1,2020-02-08 03:21:29,2020-03-02 15:33:18,2020-02-09 09:00:48,1,441.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12360,VICTE,6,2015-09-03 05:33:44,2015-09-21 12:13:40,2015-09-10 05:01:49,2,389,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12361,LETSS,5,2021-09-16 05:12:36,2021-10-15 12:13:49,2021-09-21 18:39:22,2,122.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12362,TRADH,1,2016-06-03 14:10:42,2016-07-16 00:31:55,2016-06-07 08:04:42,1,340.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +12363,LEHMS,9,2017-06-13 11:36:28,2017-06-26 21:50:30,2017-06-15 15:04:01,3,285.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12364,GALED,4,2019-04-15 01:14:32,2019-05-20 23:22:42,2019-04-15 21:48:53,2,400,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12365,GROSR,7,2015-01-21 07:11:47,2015-02-25 00:39:13,2015-02-03 13:25:48,2,336,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12366,CONSH,9,2016-08-30 20:28:48,2016-10-09 05:05:06,2016-09-13 07:46:37,1,508,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12367,BLONP,3,2013-01-18 18:01:42,2013-02-10 02:28:56,2013-01-20 11:43:20,2,102.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12368,WANDK,8,2020-03-20 18:42:51,2020-03-28 04:08:34,2020-03-29 12:17:38,3,420.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12369,VINET,8,2019-02-01 10:18:11,2019-03-14 00:33:54,2019-02-02 07:30:04,3,489.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12370,FOLKO,6,2015-07-19 16:56:21,2015-08-17 10:35:13,2015-07-28 05:29:41,2,412.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12371,VAFFE,4,2022-12-05 14:07:36,2023-01-10 22:32:52,2022-12-26 13:12:25,1,437.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12372,NORTS,8,2016-12-22 22:06:01,2016-12-30 11:08:52,2017-01-12 19:53:41,1,197.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12373,DUMON,1,2021-05-13 04:46:07,2021-06-13 05:15:42,2021-05-24 04:39:32,3,380.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12374,OTTIK,4,2016-08-15 13:31:40,2016-10-07 21:29:59,2016-08-25 15:32:00,2,408,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12375,LILAS,4,2019-03-09 01:50:28,2019-03-10 17:01:52,2019-03-12 18:27:37,1,85,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12376,KOENE,3,2022-02-20 16:59:26,2022-03-15 03:51:09,2022-02-23 02:55:07,1,147,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +12377,FRANS,4,2023-03-21 03:17:27,2023-04-05 14:02:11,2023-04-16 00:42:40,2,282.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12378,WARTH,2,2023-08-09 09:02:36,2023-08-22 20:23:24,2023-08-11 14:17:02,1,405.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12379,PICCO,4,2022-11-19 23:49:17,2022-11-27 14:58:00,2022-12-08 16:09:22,1,265,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +12380,FISSA,7,2014-02-18 10:41:11,2014-03-09 00:56:25,2014-02-21 16:36:26,2,230.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +12381,OTTIK,4,2015-02-12 06:54:29,2015-03-18 00:34:09,2015-02-19 14:09:40,3,405.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12382,VICTE,7,2014-04-08 17:29:16,2014-04-21 06:50:54,2014-04-09 11:52:05,3,204,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +12383,DRACD,5,2017-03-28 19:07:06,2017-04-07 08:15:10,2017-04-06 14:51:08,2,97.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12384,SPLIR,5,2023-04-28 10:46:18,2023-05-17 05:55:09,2023-04-28 22:31:09,1,112.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12385,WARTH,9,2016-01-09 12:39:27,2016-01-16 17:48:54,2016-01-24 05:59:01,2,211.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12386,CONSH,9,2013-04-04 10:51:28,2013-04-23 06:15:36,2013-04-15 06:18:39,3,116.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12387,LEHMS,5,2012-10-25 17:30:46,2012-11-18 04:45:01,2012-10-27 14:25:58,3,112,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12388,BOLID,4,2020-10-25 19:03:58,2020-12-09 07:33:39,2020-10-25 20:45:00,1,526.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12389,WILMK,2,2022-10-06 15:56:47,2022-10-27 07:05:36,2022-10-13 09:53:55,2,489.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12390,MAGAA,3,2020-07-20 20:45:03,2020-07-28 13:55:37,2020-08-03 06:02:19,3,470.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12391,PICCO,7,2013-03-07 08:46:18,2013-03-15 06:19:09,2013-03-08 05:21:04,1,339.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12392,MAGAA,9,2016-11-10 13:58:53,2016-11-14 07:45:10,2016-11-14 08:14:14,3,476.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12393,WHITC,8,2013-08-13 18:49:50,2013-09-17 20:37:06,2013-08-18 05:37:06,3,315.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12394,WOLZA,9,2017-07-08 09:54:29,2017-08-05 08:45:51,2017-07-26 03:20:53,2,114.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12395,BSBEV,2,2016-12-01 14:08:17,2016-12-28 04:04:43,2016-12-04 07:41:32,1,94.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12396,QUEDE,9,2018-08-08 22:35:49,2018-08-09 18:50:45,2018-08-21 20:12:39,2,245.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12397,SPECD,3,2017-01-01 14:22:47,2017-01-21 11:43:08,2017-01-05 03:34:44,2,218.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12398,THEBI,1,2014-06-01 13:40:13,2014-06-21 09:42:34,2014-06-01 14:17:01,3,279.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12399,TOMSP,9,2022-07-15 10:01:12,2022-07-20 15:23:31,2022-07-25 02:11:14,2,134,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +12400,COMMI,1,2019-07-10 03:40:05,2019-07-27 03:19:48,2019-07-22 15:34:26,1,108.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +12401,VAFFE,6,2019-02-14 12:35:22,2019-03-13 11:45:51,2019-02-14 20:32:19,3,356.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12402,ERNSH,9,2021-08-24 03:42:06,2021-09-05 03:31:27,2021-08-24 22:21:11,1,341,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12403,OLDWO,8,2018-04-22 06:00:04,2018-05-16 03:32:39,2018-05-16 22:46:02,2,335.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12404,RICSU,1,2018-06-15 21:36:57,2018-07-05 14:05:27,2018-06-21 05:29:29,2,135.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12405,HUNGO,8,2012-11-11 08:41:08,2012-12-04 14:32:25,2012-11-27 09:30:50,3,235.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12406,SAVEA,9,2017-04-08 10:47:11,2017-05-16 10:07:59,2017-04-10 00:03:21,1,20,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12407,BONAP,8,2017-02-01 08:25:43,2017-02-13 03:08:41,2017-02-03 10:45:53,3,164.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12408,FRANS,8,2018-01-04 19:24:42,2018-01-08 08:30:34,2018-01-06 10:40:42,1,337,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12409,ALFKI,8,2019-06-28 22:13:20,2019-07-05 11:29:42,2019-07-08 08:33:01,1,98.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12410,SPECD,9,2016-10-19 22:59:00,2016-10-25 22:19:12,2016-10-20 07:48:46,1,208.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12411,TRAIH,2,2014-03-27 10:09:11,2014-05-10 10:12:15,2014-04-09 03:52:58,1,277,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12412,RICSU,9,2012-11-26 17:05:37,2012-12-17 08:58:05,2012-12-01 05:02:47,1,380.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12413,PRINI,3,2013-06-15 18:46:24,2013-07-11 15:00:14,2013-06-29 04:28:49,2,446,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12414,THEBI,5,2015-10-18 10:39:40,2015-10-24 03:11:09,2015-10-23 09:37:50,3,118.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12415,GODOS,8,2019-12-05 07:23:42,2020-01-01 21:54:48,2020-01-02 04:09:10,3,232.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12416,QUEEN,9,2015-07-14 17:14:03,2015-07-22 19:58:49,2015-07-20 23:45:19,3,64.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12417,WELLI,5,2022-11-26 16:21:38,2022-12-01 06:03:54,2022-11-27 23:18:47,1,239.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12418,LETSS,2,2015-08-26 05:47:18,2015-10-04 21:53:03,2015-09-03 00:31:58,1,177.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12419,SEVES,7,2022-08-15 11:03:54,2022-09-14 03:57:28,2022-08-21 18:39:11,1,327.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12420,HANAR,8,2022-03-20 12:57:47,2022-04-19 12:51:24,2022-03-21 14:15:40,2,520.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12421,FAMIA,3,2021-07-30 06:45:56,2021-08-02 12:39:28,2021-08-04 13:06:04,2,466.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12422,EASTC,4,2018-01-10 22:26:39,2018-01-17 14:06:07,2018-01-13 22:50:15,2,199.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12423,RICSU,7,2014-01-07 11:39:32,2014-02-13 08:28:15,2014-01-12 00:35:14,3,289,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12424,CENTC,6,2014-12-22 18:11:21,2015-01-27 19:09:04,2015-01-02 08:21:51,1,233.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12425,BERGS,5,2023-02-01 13:38:15,2023-02-18 23:13:37,2023-02-22 22:58:07,3,404.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12426,RICAR,9,2020-01-08 16:00:06,2020-01-25 10:43:58,2020-01-14 17:35:11,3,246.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12427,SPECD,7,2018-11-03 02:30:58,2018-11-21 01:57:52,2018-11-11 20:16:06,3,530,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12428,RICAR,4,2018-09-21 08:21:16,2018-11-05 05:50:12,2018-10-04 03:04:01,2,73.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12429,OLDWO,8,2023-06-26 14:07:51,2023-08-11 17:27:38,2023-06-27 10:56:53,1,184.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12430,SIMOB,4,2016-03-21 17:04:04,2016-03-24 02:33:14,2016-03-26 04:04:26,3,302,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12431,LETSS,4,2021-08-07 02:24:28,2021-08-13 13:14:14,2021-08-09 22:28:37,1,514.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12432,FISSA,6,2021-07-04 14:10:58,2021-08-10 11:34:44,2021-07-24 15:43:18,1,361.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12433,GROSR,2,2019-09-16 20:09:40,2019-09-22 15:06:30,2019-09-19 04:24:48,2,323.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12434,ANATR,7,2014-12-30 11:24:27,2015-02-06 11:24:59,2015-01-09 14:44:24,1,289.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12435,SAVEA,7,2013-07-14 07:04:06,2013-08-02 22:26:16,2013-07-26 14:29:35,2,460,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12436,FISSA,3,2012-12-18 03:27:37,2012-12-20 11:44:27,2012-12-22 09:39:28,3,371,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12437,LAMAI,1,2020-10-08 03:19:25,2020-10-11 02:42:29,2020-10-24 20:50:31,2,302,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12438,FOLKO,2,2020-08-31 15:31:17,2020-09-04 07:04:32,2020-09-02 22:00:07,2,309.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12439,TORTU,8,2017-04-29 19:32:14,2017-05-11 16:48:01,2017-05-02 21:59:57,1,445.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12440,SIMOB,6,2015-12-24 11:51:24,2016-01-21 19:13:55,2016-01-04 16:18:17,3,428.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12441,GROSR,9,2022-03-08 12:26:00,2022-03-21 16:00:34,2022-03-23 15:26:19,1,347.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12442,TRAIH,3,2013-04-25 20:56:45,2013-06-11 19:06:46,2013-05-05 15:17:32,3,343.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12443,MEREP,1,2018-10-21 02:19:33,2018-11-30 16:02:53,2018-10-21 18:50:10,1,226.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12444,RATTC,6,2021-11-04 23:08:09,2021-12-15 09:06:41,2021-11-18 21:51:15,1,79.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12445,QUEEN,6,2023-03-25 06:46:02,2023-04-01 12:16:22,2023-03-29 20:40:31,1,475.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12446,FOLKO,8,2021-06-17 23:20:06,2021-06-24 19:04:38,2021-06-18 04:27:58,3,398.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12447,HUNGC,3,2018-02-14 07:40:25,2018-03-01 01:53:11,2018-02-14 19:29:04,1,390.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12448,VINET,9,2020-02-11 09:06:06,2020-03-03 23:44:04,2020-02-11 14:06:40,3,158.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12449,LACOR,8,2017-08-31 00:54:29,2017-09-01 05:00:50,2017-09-10 22:16:40,3,387.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12450,OTTIK,8,2015-10-28 19:37:26,2015-11-13 13:02:38,2015-10-28 22:14:33,1,432.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12451,TRADH,5,2015-05-15 17:13:58,2015-05-17 07:07:15,2015-05-19 09:10:55,1,299.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12452,KOENE,3,2013-06-27 23:12:53,2013-07-16 13:54:49,2013-07-03 10:53:04,1,266.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12453,WELLI,8,2014-09-20 16:44:40,2014-11-09 02:37:53,2014-09-25 11:04:12,3,28,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12454,LACOR,4,2017-06-27 16:17:02,2017-07-19 12:24:23,2017-07-08 16:48:24,2,393.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12455,LAMAI,3,2016-07-08 18:21:34,2016-07-17 19:39:10,2016-07-09 12:30:41,2,250.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12456,SANTG,1,2023-03-13 14:03:44,2023-03-27 22:56:43,2023-04-11 22:35:44,3,401.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12457,TORTU,2,2022-12-24 00:49:08,2022-12-31 15:16:10,2023-01-13 08:41:52,2,22.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12458,OCEAN,8,2013-07-17 01:57:52,2013-07-20 21:34:59,2013-07-19 20:41:46,2,413.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12459,WANDK,6,2020-11-14 10:13:44,2020-12-15 15:39:51,2020-11-17 00:13:51,3,147,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12460,SUPRD,3,2021-05-22 01:00:42,2021-06-14 10:33:36,2021-06-08 03:24:14,3,357.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12461,ROMEY,7,2013-07-21 21:25:25,2013-08-20 08:07:49,2013-07-24 16:04:23,1,23.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12462,RATTC,9,2015-04-17 21:41:17,2015-04-25 08:08:47,2015-04-22 21:40:08,3,51.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12463,SPLIR,3,2018-11-30 18:25:49,2018-12-06 06:34:36,2018-12-02 17:29:22,2,253,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12464,CACTU,7,2016-01-02 04:10:12,2016-01-16 17:22:32,2016-01-17 13:46:53,3,80.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12465,BLAUS,2,2022-07-16 04:26:41,2022-08-15 23:26:25,2022-07-25 00:07:22,2,135.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12466,SUPRD,9,2017-04-28 09:26:11,2017-05-27 06:58:10,2017-05-11 04:47:21,1,71.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12467,FISSA,8,2017-01-31 13:39:38,2017-03-05 11:05:57,2017-02-11 03:10:58,2,123,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12468,MORGK,7,2020-11-20 11:35:07,2020-12-06 10:30:53,2020-11-21 09:07:03,3,67.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12469,WANDK,4,2021-10-17 01:25:22,2021-11-07 00:05:39,2021-11-01 05:48:00,1,61,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12470,SAVEA,4,2019-07-10 07:06:07,2019-08-22 16:39:02,2019-07-22 10:55:19,3,106,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12471,SPLIR,2,2017-01-21 00:39:39,2017-01-29 16:17:30,2017-02-01 11:56:50,1,79.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12472,OCEAN,6,2014-04-07 13:52:35,2014-05-09 12:34:12,2014-04-10 08:54:56,3,275.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12473,MEREP,1,2021-06-11 05:38:59,2021-06-22 08:44:48,2021-07-06 07:37:51,3,155.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12474,MORGK,8,2020-12-28 21:47:08,2021-01-07 06:52:14,2021-01-06 20:43:00,2,289,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12475,HUNGO,3,2021-05-28 07:47:29,2021-06-29 07:23:07,2021-05-31 09:02:35,2,316.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12476,KOENE,5,2013-04-08 13:45:38,2013-05-07 00:12:47,2013-04-09 01:06:45,3,132.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12477,MAISD,7,2017-02-22 13:32:20,2017-03-13 02:48:10,2017-03-07 04:34:00,3,454,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12478,SANTG,5,2021-07-14 01:46:55,2021-07-19 18:03:46,2021-07-28 17:14:54,2,275.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12479,KOENE,7,2014-12-19 18:12:16,2015-02-06 04:39:35,2014-12-28 09:31:19,2,218.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12480,MORGK,7,2020-09-03 15:40:55,2020-09-13 09:42:18,2020-09-03 23:27:21,2,474.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12481,THECR,8,2014-01-21 07:16:41,2014-02-12 07:56:25,2014-01-24 20:50:26,3,237.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12482,PERIC,4,2013-12-28 18:13:00,2014-02-03 11:04:26,2013-12-29 05:40:57,3,409.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12483,NORTS,1,2017-07-15 00:00:16,2017-07-25 20:03:51,2017-07-17 20:53:47,3,15.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12484,BOTTM,4,2014-08-11 18:59:27,2014-08-21 04:08:33,2014-08-21 18:25:19,1,233,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12485,LEHMS,3,2013-02-23 09:35:06,2013-03-22 21:59:35,2013-03-02 22:02:02,2,483.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12486,VICTE,7,2018-11-12 09:26:26,2018-12-05 20:39:29,2018-11-18 09:21:46,1,367.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12487,RANCH,4,2023-02-23 14:10:34,2023-02-28 18:18:34,2023-03-22 03:49:38,3,14.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12488,LEHMS,2,2016-03-31 08:28:16,2016-04-10 11:49:16,2016-04-04 03:23:53,1,181.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12489,AROUT,2,2020-02-26 00:09:23,2020-04-07 07:36:13,2020-03-03 19:23:34,3,490.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12490,WOLZA,2,2014-09-23 09:46:34,2014-11-07 07:02:39,2014-09-27 14:53:25,2,330,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12491,ANATR,4,2016-03-18 06:27:53,2016-03-23 20:10:40,2016-03-26 19:34:51,1,413.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12492,HILAA,6,2023-09-19 06:30:44,2023-11-04 15:03:48,2023-09-20 14:29:17,1,453.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12493,ANTON,8,2015-08-22 04:39:55,2015-09-17 08:40:13,2015-08-27 08:24:22,1,154.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12494,RANCH,2,2020-07-13 16:46:41,2020-07-21 08:15:53,2020-08-06 06:19:54,2,335,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12495,SAVEA,6,2016-08-15 00:07:41,2016-09-16 21:04:55,2016-08-18 02:25:50,3,354.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12496,OTTIK,7,2014-05-05 08:54:30,2014-05-11 10:29:52,2014-05-07 11:28:03,3,462.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12497,BERGS,6,2013-08-12 07:09:40,2013-08-15 12:54:19,2013-08-14 15:51:34,1,62.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12498,CENTC,4,2019-02-03 21:26:20,2019-03-14 10:18:37,2019-02-06 21:33:37,2,368.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12499,HILAA,1,2018-08-30 15:01:09,2018-09-29 06:19:37,2018-09-12 13:32:39,2,385.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12500,WILMK,3,2019-07-27 22:52:12,2019-08-14 06:31:28,2019-08-07 04:39:43,1,22.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12501,LETSS,1,2013-12-13 10:42:16,2013-12-16 21:58:29,2013-12-30 02:27:26,1,366.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12502,ROMEY,9,2013-07-05 21:59:18,2013-07-12 18:49:08,2013-07-12 06:42:54,2,189.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12503,BLAUS,9,2020-07-15 12:47:05,2020-07-19 18:00:50,2020-07-16 10:39:44,1,407.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12504,LAUGB,1,2018-03-12 19:04:09,2018-04-05 07:44:15,2018-03-13 19:36:58,2,192.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12505,BOLID,8,2016-06-27 01:38:07,2016-07-05 17:40:10,2016-06-27 15:03:14,2,351,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12506,LONEP,5,2023-08-02 03:21:51,2023-09-04 16:48:52,2023-08-17 03:03:25,2,404.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12507,GROSR,2,2021-04-11 06:08:30,2021-04-19 09:21:24,2021-04-14 06:08:58,2,71.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12508,QUICK,1,2014-11-15 12:09:28,2014-12-02 13:34:02,2014-12-06 06:40:29,2,275.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12509,MORGK,5,2020-08-05 16:42:08,2020-09-13 08:59:53,2020-08-10 16:03:59,1,362.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12510,SPLIR,7,2014-09-20 08:41:10,2014-09-24 05:43:25,2014-09-22 13:37:08,1,455.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12511,CHOPS,1,2014-12-05 20:41:04,2015-01-08 16:37:58,2014-12-14 06:08:09,1,452.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12512,OTTIK,1,2020-09-11 11:51:01,2020-10-01 14:18:35,2020-09-14 03:18:02,1,68.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12513,RANCH,1,2022-11-02 09:39:35,2022-11-15 04:42:02,2022-11-05 00:27:48,3,335.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12514,HUNGC,5,2018-06-03 02:18:43,2018-06-19 09:48:26,2018-06-07 18:17:47,3,206.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12515,WELLI,8,2017-02-09 12:58:04,2017-03-27 00:53:56,2017-02-10 11:09:21,2,435.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12516,NORTS,1,2018-05-29 19:51:30,2018-06-07 14:10:50,2018-06-05 15:10:44,1,134.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12517,ERNSH,6,2019-03-20 12:44:00,2019-04-08 10:19:52,2019-03-22 14:02:37,3,205.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12518,LONEP,5,2014-06-29 14:13:21,2014-08-05 19:57:00,2014-07-06 20:05:48,1,296,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12519,MAISD,4,2021-10-08 08:34:27,2021-10-29 11:40:48,2021-10-17 08:36:59,2,384.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +12520,SAVEA,7,2018-05-06 02:27:03,2018-05-16 17:30:23,2018-05-15 05:33:22,3,276.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12521,GOURL,6,2020-08-11 16:24:42,2020-09-13 08:34:14,2020-08-15 14:50:39,2,282.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12522,RICSU,7,2022-02-24 07:31:35,2022-03-02 06:03:24,2022-03-05 17:15:26,1,358,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12523,WHITC,6,2014-02-14 19:34:00,2014-03-19 14:21:20,2014-02-16 16:07:04,1,55,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12524,RANCH,4,2015-03-25 02:52:05,2015-04-08 04:21:34,2015-04-08 15:27:35,2,183.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12525,HUNGO,5,2019-07-04 14:28:19,2019-07-17 19:42:56,2019-07-12 04:35:16,1,242.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12526,ERNSH,5,2021-06-01 21:49:38,2021-06-24 23:30:33,2021-06-12 10:13:54,2,435.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12527,LAZYK,5,2020-07-14 01:45:33,2020-07-28 16:08:29,2020-07-26 12:38:43,1,433.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12528,MAGAA,1,2021-08-15 20:56:28,2021-08-28 07:57:40,2021-09-02 18:10:59,2,483,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12529,DRACD,1,2020-05-14 04:53:02,2020-05-20 11:10:03,2020-05-16 01:43:10,2,184,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12530,GODOS,8,2021-05-10 18:34:04,2021-05-11 04:01:16,2021-05-14 07:19:42,2,120.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12531,FRANS,6,2015-05-24 08:19:37,2015-06-10 18:55:18,2015-05-27 18:54:59,2,441.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12532,REGGC,1,2013-02-09 21:22:58,2013-02-12 20:20:17,2013-02-10 10:11:41,1,416.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12533,LONEP,4,2022-12-04 03:08:13,2022-12-09 05:49:28,2022-12-05 01:22:24,2,147.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12534,TORTU,6,2015-01-24 02:19:20,2015-02-02 00:53:50,2015-01-28 20:49:38,3,303.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12535,PRINI,9,2013-09-13 03:30:38,2013-09-30 14:49:15,2013-09-13 08:43:20,2,229,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12536,PRINI,9,2012-12-05 05:24:22,2012-12-23 16:09:50,2012-12-11 16:16:17,2,158.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12537,FAMIA,1,2014-09-01 13:46:11,2014-09-10 11:16:54,2014-09-02 13:06:47,2,64.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12538,LACOR,8,2019-09-15 00:22:27,2019-10-07 01:25:57,2019-09-18 20:13:45,3,453.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12539,BLAUS,1,2020-05-22 23:36:58,2020-06-11 01:54:51,2020-05-29 07:58:47,2,94,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +12540,SPECD,7,2017-07-13 00:35:01,2017-07-23 23:33:26,2017-07-16 01:24:32,2,473,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12541,THEBI,1,2017-08-24 11:20:50,2017-08-25 02:02:20,2017-08-28 02:00:59,2,287.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12542,EASTC,6,2016-02-29 19:54:45,2016-03-22 16:06:26,2016-03-02 14:28:59,1,412,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12543,WARTH,6,2017-06-07 13:13:52,2017-06-10 09:34:56,2017-06-20 12:16:39,1,222.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12544,TOMSP,2,2023-10-09 11:26:49,2023-10-26 22:07:34,2023-11-01 00:34:03,1,13,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12545,CHOPS,4,2013-09-22 16:23:42,2013-09-24 03:15:12,2013-09-27 10:15:15,2,460,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12546,GODOS,4,2021-05-30 12:25:40,2021-06-06 18:38:16,2021-06-01 03:10:43,2,337.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12547,LAUGB,8,2015-09-11 01:52:29,2015-09-27 19:13:31,2015-09-30 12:49:13,2,488.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12548,HANAR,6,2019-09-07 03:23:15,2019-09-14 02:01:47,2019-09-07 05:03:41,3,277.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12549,ISLAT,7,2022-08-04 02:36:47,2022-08-07 07:15:05,2022-08-05 02:10:09,3,425.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12550,TRADH,5,2015-11-09 21:07:20,2015-11-09 22:35:35,2015-11-24 23:12:29,1,79,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12551,ALFKI,5,2014-06-16 00:22:37,2014-06-23 08:30:54,2014-07-02 01:10:15,2,33,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12552,LACOR,1,2016-07-10 15:07:21,2016-08-02 13:08:37,2016-07-28 15:06:29,3,36.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12553,BOTTM,3,2017-08-23 12:52:29,2017-08-26 04:09:38,2017-08-28 11:39:15,2,40.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12554,QUEDE,3,2023-02-20 10:16:33,2023-02-28 08:17:16,2023-02-23 03:03:42,1,14,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12555,BONAP,9,2021-01-20 03:05:10,2021-01-20 20:49:31,2021-01-23 23:57:29,1,153.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12556,DUMON,6,2017-03-25 02:03:09,2017-04-20 08:02:29,2017-04-01 06:10:52,3,248.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12557,CENTC,2,2021-04-22 03:00:48,2021-06-10 23:59:33,2021-04-30 17:25:30,3,337.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12558,PERIC,2,2022-07-09 17:00:43,2022-07-10 12:37:10,2022-07-10 01:23:36,2,430.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12559,FOLIG,7,2015-07-30 14:16:18,2015-09-02 09:00:09,2015-08-05 21:37:31,1,69.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12560,WELLI,4,2022-08-29 04:05:09,2022-09-12 16:52:30,2022-08-29 16:01:36,2,30,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12561,MORGK,8,2016-12-24 15:58:17,2016-12-27 01:42:51,2016-12-30 20:47:24,2,186,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12562,BERGS,4,2013-12-18 19:30:55,2013-12-25 19:50:45,2014-01-16 13:54:31,1,281.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12563,FAMIA,2,2019-06-28 06:25:28,2019-07-11 09:46:12,2019-06-29 20:14:01,2,302,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12564,LAUGB,1,2014-03-13 10:32:01,2014-03-30 03:13:30,2014-03-26 00:22:48,2,22.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12565,WOLZA,3,2013-01-29 11:02:20,2013-02-16 11:33:18,2013-02-03 07:53:12,1,261.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12566,OCEAN,7,2016-08-23 00:18:05,2016-09-20 05:38:55,2016-09-13 03:03:28,1,142.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12567,WHITC,5,2018-01-16 16:56:55,2018-02-17 04:30:11,2018-01-18 12:36:49,1,52.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12568,TORTU,3,2013-09-21 19:33:04,2013-10-01 06:49:19,2013-09-25 18:40:05,1,301,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +12569,LEHMS,2,2016-07-21 07:50:21,2016-07-28 07:24:21,2016-07-28 10:04:20,3,135.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12570,WHITC,8,2013-02-18 10:36:06,2013-03-29 04:59:04,2013-02-20 01:17:53,2,126.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12571,COMMI,4,2015-08-27 02:01:39,2015-09-25 18:06:40,2015-09-06 17:45:32,2,195.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12572,CONSH,3,2015-07-15 04:30:07,2015-07-30 08:36:58,2015-07-19 15:50:57,2,129.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12573,BSBEV,1,2016-06-03 06:37:33,2016-07-14 12:57:20,2016-06-10 01:18:49,2,426,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12574,GROSR,1,2020-01-20 09:19:59,2020-02-05 19:51:14,2020-02-04 11:06:13,3,64.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +12575,PERIC,8,2020-12-06 18:06:16,2021-01-17 19:10:25,2020-12-07 05:00:55,3,315.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12576,COMMI,5,2017-04-10 15:25:19,2017-05-01 02:54:31,2017-04-13 08:03:07,1,131.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12577,LACOR,6,2014-11-24 11:24:50,2014-12-18 22:19:48,2014-11-27 02:22:11,3,433.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12578,LACOR,4,2017-09-28 02:45:28,2017-11-21 09:56:44,2017-10-07 01:31:09,3,292.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12579,TOMSP,8,2015-04-20 09:02:32,2015-05-20 19:26:59,2015-04-29 06:12:45,2,447.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12580,REGGC,6,2013-04-28 19:29:30,2013-05-14 18:02:03,2013-05-19 01:29:35,3,166.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12581,FOLIG,5,2014-05-12 10:03:02,2014-05-30 12:31:39,2014-05-22 10:16:04,1,283.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12582,ISLAT,7,2016-10-27 23:13:11,2016-11-01 07:59:21,2016-11-07 22:28:20,3,87.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12583,PARIS,5,2013-04-20 02:38:54,2013-05-02 02:44:29,2013-05-03 17:59:32,3,23.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12584,LAMAI,4,2014-08-20 03:29:10,2014-08-29 18:30:11,2014-08-20 17:11:52,3,429,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12585,WANDK,7,2013-07-14 20:21:25,2013-08-05 11:02:44,2013-07-29 22:15:52,3,54,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12586,ANATR,8,2017-12-07 16:26:51,2018-01-04 13:05:34,2017-12-18 07:44:47,3,114.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12587,RANCH,1,2023-08-08 01:44:16,2023-08-12 19:57:51,2023-08-17 15:28:24,2,533.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12588,LETSS,9,2017-03-22 21:15:31,2017-04-21 07:26:42,2017-04-10 12:29:01,2,535.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12589,THEBI,3,2015-07-06 23:19:46,2015-08-15 11:53:57,2015-07-30 04:40:48,1,149,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +12590,WELLI,5,2019-07-04 17:27:24,2019-07-24 07:30:49,2019-07-15 00:36:21,2,347,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12591,PRINI,8,2018-11-08 03:18:25,2018-12-21 13:45:19,2018-11-19 08:38:59,1,45,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12592,TORTU,5,2021-01-24 23:24:27,2021-03-04 13:18:26,2021-01-31 08:23:32,1,40.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12593,FOLKO,9,2012-09-16 19:30:41,2012-10-05 19:39:04,2012-09-23 16:14:09,3,366.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12594,TRADH,8,2015-02-07 06:49:00,2015-03-18 22:52:26,2015-02-16 13:38:48,3,19.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12595,LETSS,1,2017-06-28 02:25:02,2017-07-17 23:01:48,2017-07-02 22:28:37,3,424.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12596,MORGK,8,2014-06-14 15:11:10,2014-06-22 01:39:01,2014-06-27 19:05:53,3,118.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12597,FAMIA,5,2022-05-23 00:17:54,2022-06-16 14:39:34,2022-05-26 04:02:39,3,323.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12598,WANDK,3,2018-09-21 10:17:07,2018-11-05 13:53:54,2018-09-30 01:41:33,1,404,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12599,Val2 ,6,2014-10-05 01:34:15,2014-10-12 06:17:19,2014-10-20 12:04:38,1,375,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12600,WILMK,2,2016-06-05 04:25:02,2016-07-01 02:21:05,2016-06-12 04:03:48,3,318.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12601,VICTE,3,2020-04-07 21:02:34,2020-04-18 01:22:46,2020-04-08 08:51:22,2,238.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12602,HUNGC,4,2014-01-09 04:33:19,2014-02-23 02:48:46,2014-01-09 21:46:18,2,422.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12603,VICTE,8,2020-07-08 03:37:20,2020-08-04 07:43:55,2020-07-23 21:33:47,3,436,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12604,QUEEN,4,2020-11-19 00:31:37,2020-11-28 12:30:54,2020-12-06 22:49:20,1,170,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12605,TOMSP,8,2018-04-28 10:23:34,2018-05-25 06:23:36,2018-04-30 22:31:56,2,99.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +12606,DRACD,6,2018-06-21 04:17:04,2018-07-21 17:54:19,2018-06-30 16:35:03,3,408.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12607,BLONP,6,2021-09-19 01:08:45,2021-09-19 17:24:35,2021-10-02 01:32:51,3,340.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +12608,HUNGC,3,2015-03-07 21:28:16,2015-03-16 17:45:58,2015-03-16 23:45:31,2,269.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12609,ANATR,8,2021-06-26 20:52:30,2021-07-09 23:44:08,2021-06-28 06:07:07,3,37.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12610,FOLIG,2,2019-12-16 13:40:32,2020-01-01 02:31:58,2019-12-16 17:14:40,1,498,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12611,HUNGO,9,2019-10-11 20:39:43,2019-10-13 05:23:50,2019-10-13 06:37:23,2,172,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12612,FOLKO,8,2020-03-31 04:42:34,2020-04-13 07:46:32,2020-04-03 10:09:37,1,47.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12613,VICTE,4,2015-03-20 10:58:59,2015-05-03 01:16:37,2015-03-24 17:08:43,2,95.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12614,THECR,6,2017-11-23 12:27:30,2017-12-31 10:07:28,2017-11-27 17:41:38,3,413.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12615,PARIS,7,2013-08-21 16:35:50,2013-09-01 04:10:17,2013-08-26 21:42:39,1,54.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12616,LAMAI,6,2016-07-06 20:03:34,2016-07-08 15:00:42,2016-07-15 17:02:43,2,336,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12617,LINOD,9,2023-01-12 03:05:55,2023-01-26 22:06:14,2023-02-01 18:05:26,1,30.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12618,REGGC,7,2022-12-27 20:08:39,2022-12-30 01:42:48,2023-01-09 11:36:11,2,389,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12619,WARTH,3,2022-11-27 11:35:54,2022-12-14 02:48:15,2022-12-06 18:58:15,2,276.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12620,VINET,9,2014-03-28 22:10:43,2014-04-07 16:43:52,2014-04-14 08:08:54,2,78.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12621,CACTU,9,2020-10-22 22:37:36,2020-11-05 18:33:17,2020-10-27 23:26:13,2,236.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12622,GROSR,7,2016-07-30 23:51:45,2016-08-25 05:51:21,2016-08-16 05:03:12,3,50.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12623,BSBEV,1,2018-03-23 00:29:16,2018-04-18 00:28:53,2018-03-24 10:55:21,3,459.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12624,BLAUS,4,2020-01-06 14:16:51,2020-01-18 15:28:28,2020-01-13 00:07:15,2,464,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12625,SPLIR,3,2020-05-02 02:38:34,2020-05-12 19:38:26,2020-05-03 07:50:45,3,498.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12626,SIMOB,2,2021-04-13 07:15:10,2021-05-01 02:06:19,2021-05-02 10:17:38,2,477,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12627,CHOPS,2,2017-05-23 08:37:11,2017-06-08 11:41:14,2017-05-31 08:23:01,1,453.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12628,GROSR,4,2017-06-15 00:05:15,2017-07-20 01:39:15,2017-06-27 00:21:57,1,55.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12629,OLDWO,1,2015-07-03 15:32:50,2015-08-16 01:31:04,2015-07-11 23:42:54,1,336.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12630,SUPRD,3,2015-08-14 07:13:37,2015-09-14 01:01:26,2015-08-15 04:16:46,2,150,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12631,FRANS,3,2014-04-05 11:57:35,2014-05-02 12:18:30,2014-04-06 07:41:36,2,375.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12632,DUMON,8,2015-02-21 07:08:10,2015-03-31 00:04:11,2015-03-06 19:24:56,3,267.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12633,EASTC,4,2015-06-18 23:05:54,2015-07-02 13:28:05,2015-06-19 20:30:36,1,482.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12634,WANDK,8,2022-05-10 15:59:45,2022-05-19 19:03:37,2022-05-29 18:17:16,1,258.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12635,TRAIH,8,2020-06-15 07:52:36,2020-07-07 02:45:10,2020-07-01 00:14:17,1,189.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12636,PICCO,6,2022-01-07 16:14:00,2022-02-16 11:57:00,2022-01-17 18:12:28,3,87,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12637,WELLI,7,2018-09-28 13:36:01,2018-09-30 12:00:24,2018-10-22 23:37:13,1,32,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12638,HILAA,7,2012-08-14 03:44:26,2012-08-17 08:32:26,2012-08-16 10:59:01,1,209.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12639,MAISD,7,2018-07-18 06:26:38,2018-07-22 03:46:21,2018-07-18 15:52:51,2,405,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12640,OCEAN,3,2021-06-04 15:51:14,2021-06-07 23:34:57,2021-06-05 09:06:48,2,139,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12641,FAMIA,9,2013-06-16 08:15:37,2013-07-14 13:46:42,2013-06-19 05:40:00,1,337.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12642,GALED,9,2014-01-26 22:37:00,2014-02-04 10:13:36,2014-01-27 02:55:59,2,40,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12643,HANAR,6,2022-11-02 02:03:38,2022-11-16 18:17:20,2022-11-24 06:09:33,2,89.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +12644,GOURL,6,2022-12-23 23:39:42,2023-02-04 11:16:19,2022-12-30 03:19:54,1,367.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12645,CENTC,7,2016-09-30 08:11:47,2016-11-12 15:27:04,2016-10-07 14:23:04,3,286.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12646,SAVEA,4,2021-02-10 03:40:17,2021-02-26 14:16:24,2021-02-19 11:56:16,1,427.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12647,OLDWO,4,2020-12-27 00:56:22,2021-02-21 08:01:06,2021-01-14 15:45:32,1,242.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12648,HUNGC,4,2014-07-14 04:00:30,2014-07-24 04:45:11,2014-07-19 19:45:33,1,443.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12649,BERGS,9,2015-07-20 03:44:06,2015-07-31 19:18:01,2015-07-29 03:02:28,1,360.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12650,VALON,7,2019-09-08 08:05:37,2019-10-01 01:41:07,2019-09-21 09:30:52,2,368,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +12651,TRADH,4,2015-12-15 04:01:24,2016-01-24 02:49:13,2016-01-11 23:14:27,1,233.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12652,MAGAA,6,2021-11-10 16:49:35,2021-11-18 01:45:17,2021-11-19 13:07:32,2,391,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12653,BERGS,4,2016-04-02 14:18:16,2016-04-19 09:29:31,2016-04-04 02:52:40,2,256.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12654,LAUGB,1,2015-02-14 03:06:27,2015-03-07 17:32:37,2015-03-10 08:22:47,1,115,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12655,EASTC,5,2020-04-19 19:31:21,2020-05-07 11:46:24,2020-05-04 17:42:41,3,146.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12656,VAFFE,5,2018-01-07 01:42:14,2018-01-18 02:37:54,2018-01-08 18:32:42,1,433.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12657,CENTC,2,2023-09-18 23:47:56,2023-10-01 23:29:29,2023-09-25 03:27:07,2,187,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12658,HILAA,6,2019-09-18 16:37:23,2019-10-11 02:54:13,2019-10-03 11:17:48,3,209.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12659,LACOR,7,2018-11-02 10:50:05,2018-12-20 09:57:45,2018-11-03 10:12:07,3,397.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12660,TORTU,7,2014-02-09 20:08:25,2014-02-15 10:59:39,2014-02-15 05:13:17,3,219,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12661,LAMAI,8,2022-10-20 12:03:22,2022-10-25 07:05:12,2022-11-03 02:51:58,2,140.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12662,NORTS,1,2021-12-15 08:03:57,2021-12-25 18:21:09,2021-12-18 10:34:11,1,268.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12663,RANCH,6,2018-10-07 20:40:40,2018-10-07 21:46:32,2018-10-08 05:54:36,1,38.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12664,FOLKO,7,2021-04-18 08:29:37,2021-05-18 17:01:04,2021-04-21 18:59:08,3,23.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +12665,SAVEA,2,2013-06-03 08:49:11,2013-06-20 01:25:30,2013-06-18 16:15:00,1,29,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12666,OCEAN,6,2015-09-17 04:18:02,2015-09-17 19:38:11,2015-10-01 06:43:47,1,203.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12667,ISLAT,5,2022-09-21 05:11:00,2022-10-26 12:39:25,2022-10-01 17:09:02,3,149.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12668,GROSR,9,2012-09-16 20:49:49,2012-09-25 01:27:50,2012-10-03 04:19:49,1,253.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12669,ISLAT,4,2015-12-03 06:42:03,2015-12-26 05:31:13,2015-12-03 23:15:57,2,320,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12670,GOURL,5,2019-01-04 18:14:14,2019-01-06 09:16:01,2019-01-11 15:14:19,2,61.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12671,ALFKI,7,2012-08-22 13:27:12,2012-09-13 13:47:05,2012-08-27 11:16:19,1,107.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12672,BLONP,3,2015-03-03 17:22:34,2015-03-27 23:41:59,2015-03-07 02:31:06,3,484.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12673,QUEDE,3,2018-12-15 21:27:45,2019-01-17 17:26:02,2018-12-20 09:22:32,1,135.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12674,MAISD,1,2016-05-23 09:29:48,2016-05-25 05:55:11,2016-06-06 03:08:23,1,313.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12675,WARTH,3,2015-01-02 16:19:43,2015-01-09 06:30:36,2015-01-17 18:09:44,2,366.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12676,WANDK,2,2014-09-04 00:09:01,2014-09-10 07:48:34,2014-09-04 10:06:49,2,134,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12677,SPECD,3,2013-10-20 11:44:12,2013-12-03 09:49:05,2013-10-28 02:55:55,2,67.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12678,REGGC,1,2019-01-13 08:36:49,2019-01-25 06:27:37,2019-01-15 14:06:24,2,356,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12679,HILAA,8,2013-11-11 12:15:57,2013-11-30 08:39:37,2013-11-12 15:52:22,3,323.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12680,BSBEV,8,2023-03-11 07:17:20,2023-03-31 19:43:28,2023-03-14 10:41:54,1,32.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +12681,BERGS,3,2015-07-25 05:39:24,2015-08-31 18:32:58,2015-07-26 16:20:32,2,293.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12682,BOLID,5,2023-04-05 00:23:52,2023-05-13 05:39:47,2023-04-05 23:02:46,2,39,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12683,RATTC,7,2013-05-04 01:45:51,2013-05-05 02:25:45,2013-05-25 18:09:08,1,395.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12684,QUICK,3,2015-12-03 07:08:50,2015-12-04 00:50:45,2015-12-24 20:22:12,1,171.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12685,LAMAI,2,2021-10-18 09:46:46,2021-12-02 13:02:42,2021-11-03 15:30:29,3,382,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +12686,CHOPS,6,2017-04-26 04:39:05,2017-05-08 01:05:26,2017-05-12 22:26:45,1,457.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12687,LEHMS,1,2015-11-11 18:43:01,2015-11-20 16:12:03,2015-12-01 22:29:27,2,61.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12688,WELLI,8,2013-07-17 05:46:30,2013-07-29 00:46:00,2013-07-18 20:22:06,3,311.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12689,LACOR,3,2014-12-08 09:04:08,2014-12-11 15:29:41,2014-12-08 11:28:25,3,155.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +12690,GOURL,7,2013-07-06 09:31:27,2013-08-12 00:22:07,2013-07-08 14:45:27,2,91,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12691,BLONP,8,2012-09-30 11:29:12,2012-10-24 16:35:09,2012-10-11 00:38:30,3,368,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12692,GOURL,3,2013-07-10 10:26:39,2013-08-07 10:28:27,2013-07-26 05:25:42,2,201.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12693,CACTU,2,2023-01-18 19:53:54,2023-01-24 06:01:57,2023-02-04 14:58:20,2,397.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12694,COMMI,2,2014-04-16 11:03:31,2014-05-23 19:52:23,2014-04-25 19:37:11,2,431.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12695,CENTC,3,2015-11-19 10:21:33,2015-12-26 22:09:06,2015-12-14 16:42:02,2,125,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12696,ALFKI,4,2012-12-18 05:24:55,2013-01-06 23:32:38,2012-12-18 19:16:53,1,253.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12697,HILAA,7,2017-06-06 07:21:23,2017-06-24 17:31:12,2017-06-06 12:48:09,3,326.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12698,BONAP,6,2021-06-22 06:08:05,2021-07-11 22:46:13,2021-07-20 19:00:45,2,469.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12699,PRINI,7,2016-02-10 11:26:15,2016-02-24 13:02:02,2016-02-11 21:14:17,3,268.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12700,WHITC,6,2014-05-04 03:20:22,2014-05-04 03:53:30,2014-05-17 14:24:40,1,32,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12701,QUICK,2,2022-06-18 10:59:28,2022-07-02 11:19:35,2022-06-24 06:58:56,1,114.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12702,ANATR,2,2015-06-11 14:57:00,2015-08-06 22:01:43,2015-06-23 09:08:26,2,217.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12703,LILAS,7,2021-10-29 22:19:20,2021-11-13 10:49:08,2021-11-03 00:27:43,2,250.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12704,PERIC,9,2018-02-18 05:49:19,2018-03-11 07:43:14,2018-03-10 13:14:02,1,212.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12705,AROUT,2,2019-08-08 05:54:09,2019-08-23 08:13:39,2019-08-12 23:32:16,3,99,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12706,HANAR,3,2021-10-15 15:01:52,2021-10-20 10:51:14,2021-10-21 13:05:12,2,261.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12707,ANTON,4,2019-09-22 07:59:33,2019-09-25 03:24:40,2019-10-01 02:59:26,2,202.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12708,PERIC,7,2015-04-29 19:40:42,2015-05-14 00:31:17,2015-04-30 10:40:16,3,540.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12709,VALON,3,2015-06-21 08:22:07,2015-07-02 00:09:35,2015-07-06 03:47:29,3,372.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12710,PICCO,9,2018-02-27 06:13:52,2018-04-05 20:15:56,2018-03-17 22:29:16,2,187.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12711,OCEAN,8,2020-08-26 03:07:08,2020-10-07 05:37:19,2020-08-28 10:46:56,3,39.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12712,VAFFE,5,2017-10-25 06:44:16,2017-11-11 08:29:33,2017-11-20 04:36:30,3,424,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12713,TRADH,5,2017-03-24 10:14:12,2017-05-04 05:00:24,2017-04-10 21:06:22,2,453.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12714,BOTTM,7,2021-01-21 11:12:41,2021-02-12 08:20:02,2021-01-25 13:24:42,1,205,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12715,HANAR,4,2013-11-20 05:47:02,2013-12-05 00:30:50,2013-12-03 07:20:13,1,427.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12716,DRACD,1,2013-10-11 10:06:28,2013-11-04 19:58:20,2013-10-24 02:59:39,2,459,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12717,WOLZA,5,2014-11-03 17:33:56,2014-11-12 13:11:27,2014-11-09 04:48:16,3,20.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12718,HUNGO,7,2017-07-24 15:58:37,2017-08-04 10:32:20,2017-07-27 03:31:37,1,126,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12719,MAGAA,8,2014-06-02 16:06:21,2014-07-24 12:57:46,2014-06-14 05:54:04,2,196.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12720,EASTC,6,2014-11-24 01:00:43,2014-12-18 19:24:14,2014-12-07 22:37:07,2,39.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12721,WELLI,6,2017-01-27 11:41:58,2017-01-28 19:56:02,2017-01-29 15:27:20,3,305.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12722,SAVEA,9,2017-12-02 21:10:34,2017-12-17 01:30:12,2017-12-04 11:27:50,1,28,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12723,FRANS,5,2023-07-20 18:09:05,2023-07-21 10:20:12,2023-07-22 11:31:10,2,347.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12724,PICCO,6,2018-08-04 11:38:14,2018-09-01 13:56:49,2018-08-05 00:17:57,2,298.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12725,LONEP,2,2016-04-15 21:22:06,2016-04-27 11:31:58,2016-05-11 14:26:52,1,60.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12726,BLAUS,2,2017-03-02 11:09:21,2017-04-15 04:44:07,2017-03-03 11:28:51,3,59.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12727,HANAR,9,2015-05-25 23:19:30,2015-06-07 17:20:41,2015-06-02 08:24:12,2,319,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +12728,OLDWO,4,2018-05-26 08:07:52,2018-05-27 03:30:44,2018-05-30 14:22:46,2,476.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12729,SPECD,4,2013-04-21 14:49:24,2013-05-06 16:40:56,2013-04-28 14:09:21,3,33,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12730,SUPRD,3,2020-08-20 13:36:01,2020-09-07 09:26:41,2020-08-30 12:23:51,2,96.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12731,THECR,5,2014-03-09 12:34:56,2014-03-28 22:49:43,2014-03-14 02:07:24,3,114,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +12732,WHITC,2,2022-12-23 07:58:34,2023-01-03 23:32:26,2022-12-24 01:53:40,1,321,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12733,GOURL,1,2016-04-04 22:17:01,2016-04-06 05:59:09,2016-04-08 15:43:20,2,353,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12734,TORTU,1,2017-08-10 10:14:02,2017-08-11 07:53:30,2017-08-21 04:46:43,2,528.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12735,SUPRD,8,2014-06-03 06:52:25,2014-07-03 12:39:40,2014-06-13 12:25:07,2,437.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12736,HUNGC,9,2016-09-14 22:56:06,2016-10-17 08:09:10,2016-09-19 08:34:21,2,69.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12737,ALFKI,7,2015-03-15 11:40:42,2015-04-01 17:46:12,2015-03-18 16:44:33,1,402.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +12738,VICTE,6,2016-10-05 09:44:01,2016-10-08 06:51:54,2016-10-30 03:14:12,3,424.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +12739,RANCH,1,2017-05-18 12:23:33,2017-06-06 14:55:54,2017-06-08 15:08:45,1,483,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12740,GODOS,8,2018-08-16 13:44:19,2018-09-19 23:36:05,2018-08-26 22:41:53,3,256.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12741,COMMI,6,2019-03-02 20:47:51,2019-03-21 19:11:25,2019-03-20 09:19:55,1,396.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12742,HILAA,3,2018-11-15 21:52:43,2019-01-10 00:32:55,2018-11-22 22:17:05,3,130.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12743,ANATR,2,2013-04-30 18:57:22,2013-05-16 02:52:09,2013-05-21 09:52:29,1,47.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12744,LAMAI,2,2013-01-07 15:25:19,2013-01-24 01:21:50,2013-02-02 07:09:46,2,467.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12745,WILMK,9,2017-10-16 04:23:02,2017-11-29 00:54:42,2017-10-23 07:43:52,1,332.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12746,PARIS,3,2012-10-04 19:34:39,2012-11-05 12:33:29,2012-10-07 03:34:35,1,420.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12747,BOTTM,6,2017-09-11 23:18:18,2017-10-24 10:39:08,2017-09-24 07:48:41,3,190,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12748,ALFKI,9,2021-03-15 06:02:28,2021-03-26 23:00:48,2021-03-28 20:05:42,3,35,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +12749,CONSH,7,2016-12-18 03:58:41,2017-01-02 07:47:28,2016-12-31 22:31:47,2,481.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12750,THECR,1,2017-11-14 22:39:55,2017-12-13 01:55:13,2017-11-15 19:49:04,1,162.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12751,HUNGO,5,2019-10-12 19:57:13,2019-10-26 07:04:16,2019-10-23 16:01:24,3,17.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12752,SANTG,2,2019-04-26 07:36:00,2019-05-21 16:21:31,2019-04-30 06:58:02,2,102.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +12753,VICTE,9,2020-04-29 17:32:23,2020-06-17 12:21:39,2020-05-02 20:20:31,3,350.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12754,VICTE,6,2017-12-20 08:20:36,2018-01-25 22:50:20,2018-01-02 07:50:09,3,315,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12755,FOLIG,5,2023-07-06 13:03:36,2023-08-14 09:25:42,2023-07-09 00:30:11,1,395.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +12756,ANATR,1,2013-05-12 17:30:38,2013-05-20 19:27:48,2013-05-15 13:57:49,1,261,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12757,TRADH,9,2016-12-01 17:02:58,2016-12-17 23:18:10,2016-12-03 20:22:04,3,172.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12758,LAMAI,8,2012-12-14 13:34:13,2012-12-25 11:20:07,2012-12-16 04:38:44,1,73,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12759,QUICK,3,2016-11-18 03:55:51,2016-12-02 18:53:06,2016-11-18 09:17:34,3,111.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12760,FOLIG,2,2012-08-29 06:38:31,2012-09-22 06:20:49,2012-09-06 21:54:55,2,492,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12761,TRADH,2,2019-06-04 07:38:17,2019-06-17 08:52:50,2019-06-06 19:40:22,1,301.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12762,BSBEV,3,2013-04-02 11:49:46,2013-04-05 02:57:20,2013-04-14 18:49:00,3,247,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12763,PICCO,8,2017-02-04 17:08:11,2017-02-23 07:54:01,2017-02-15 12:19:25,3,507.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12764,FAMIA,5,2012-10-02 05:10:21,2012-10-02 05:29:58,2012-10-28 17:21:52,3,294,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +12765,GOURL,6,2017-09-22 04:03:55,2017-10-09 18:38:34,2017-10-07 16:55:47,2,108,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +12766,HUNGC,4,2019-06-09 01:01:19,2019-06-14 06:40:40,2019-06-28 14:41:39,3,284.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12767,WANDK,2,2021-07-27 19:46:18,2021-07-28 03:23:29,2021-08-02 11:52:35,3,295.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12768,RANCH,9,2016-05-24 16:53:42,2016-06-21 20:58:39,2016-05-28 08:37:37,1,402.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12769,VALON,2,2013-09-07 02:58:00,2013-09-11 02:38:00,2013-09-25 02:32:08,1,99,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12770,DUMON,7,2019-11-06 13:42:38,2019-11-19 10:16:57,2019-11-11 06:51:37,2,53.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12771,WANDK,8,2015-05-10 14:57:32,2015-05-21 01:45:16,2015-05-13 02:48:25,1,541.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12772,GROSR,7,2017-03-13 07:18:52,2017-03-18 12:12:12,2017-03-13 11:05:51,3,343.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12773,RANCH,3,2020-09-01 15:01:16,2020-09-18 22:26:13,2020-09-05 12:55:51,3,183.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12774,BLAUS,1,2019-04-22 05:14:53,2019-06-05 20:20:40,2019-04-27 07:33:23,2,450.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12775,CONSH,2,2014-03-29 19:48:33,2014-04-07 06:58:21,2014-04-12 22:49:00,3,328.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12776,FOLIG,2,2023-08-31 08:05:02,2023-09-02 05:42:30,2023-09-12 20:50:34,1,369.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12777,MORGK,5,2018-05-24 02:00:38,2018-06-20 21:58:05,2018-05-27 01:52:54,3,319.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12778,BOLID,6,2022-04-23 04:34:21,2022-05-31 00:43:14,2022-04-29 08:17:33,2,180.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +12779,TORTU,3,2019-09-10 21:22:23,2019-10-05 22:58:52,2019-09-11 02:05:21,3,491,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12780,GODOS,7,2017-06-23 19:41:10,2017-07-27 12:24:09,2017-07-13 07:59:43,3,487,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12781,WHITC,2,2020-11-19 22:57:02,2020-12-09 01:18:52,2020-11-29 05:44:17,2,406.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12782,MAGAA,2,2023-06-14 19:15:35,2023-08-01 22:36:44,2023-06-20 14:49:39,2,369.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12783,MEREP,1,2020-07-13 20:36:21,2020-07-17 22:50:02,2020-07-21 05:08:36,3,364.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12784,TOMSP,9,2014-11-09 05:58:24,2014-12-04 14:31:16,2014-11-22 09:55:26,3,349.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12785,WHITC,6,2019-12-23 18:24:21,2020-01-01 14:22:30,2020-01-07 02:11:21,3,198,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12786,RANCH,1,2016-01-22 05:52:47,2016-02-17 13:51:34,2016-01-23 23:54:40,2,198.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12787,SUPRD,2,2019-06-14 11:20:58,2019-07-07 21:54:56,2019-06-18 13:37:13,2,477.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12788,KOENE,5,2013-03-30 20:58:14,2013-05-05 02:26:14,2013-04-17 01:57:07,1,396.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12789,GOURL,4,2021-03-08 15:55:23,2021-03-15 20:56:02,2021-03-17 08:23:51,2,38,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +12790,QUEEN,2,2016-07-30 11:02:06,2016-09-20 11:51:15,2016-08-07 22:41:46,2,130.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12791,HUNGC,8,2023-03-05 15:07:05,2023-03-12 03:48:00,2023-03-09 19:54:12,1,183.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12792,BSBEV,2,2015-03-17 22:27:16,2015-04-03 20:34:26,2015-03-28 13:47:53,2,349.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +12793,VALON,3,2021-10-03 15:10:04,2021-11-01 08:50:19,2021-10-06 23:38:38,2,456.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12794,THEBI,9,2021-08-16 05:08:00,2021-08-31 04:22:08,2021-08-17 15:34:44,1,60.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12795,BERGS,7,2023-10-18 14:37:03,2023-10-28 14:25:15,2023-10-19 09:11:57,1,429.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12796,BOTTM,2,2022-12-13 21:51:44,2022-12-26 06:03:50,2022-12-19 21:31:06,2,31.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12797,CHOPS,7,2022-03-12 21:03:38,2022-03-18 02:54:12,2022-03-13 15:06:21,3,456.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12798,GREAL,2,2018-01-17 06:35:44,2018-02-21 20:08:52,2018-01-23 03:40:59,2,74.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12799,WOLZA,9,2020-01-15 00:13:33,2020-02-16 05:15:56,2020-02-09 15:05:12,3,297.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12800,FRANS,7,2013-05-02 00:35:01,2013-05-17 14:52:43,2013-05-03 21:53:59,1,94,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +12801,FISSA,4,2022-02-23 04:05:32,2022-03-24 06:58:27,2022-03-02 12:56:28,2,291,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12802,PERIC,9,2018-03-13 18:58:00,2018-03-23 17:30:23,2018-03-14 08:24:43,3,231,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12803,BSBEV,1,2018-06-06 12:49:24,2018-07-21 00:28:28,2018-06-27 09:24:45,1,168.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12804,WOLZA,1,2022-11-02 21:35:05,2022-12-17 06:47:06,2022-11-20 17:28:18,2,425,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +12805,OTTIK,1,2022-02-11 12:50:15,2022-03-17 01:41:02,2022-02-11 17:36:07,3,238.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12806,TRADH,6,2020-02-25 08:03:48,2020-03-24 03:06:41,2020-02-25 18:51:42,2,149.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12807,LAMAI,2,2016-11-29 02:11:51,2016-12-14 01:19:30,2016-12-02 15:32:20,3,264.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12808,WILMK,1,2019-06-01 12:50:09,2019-07-03 19:43:39,2019-06-03 04:12:51,2,294.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12809,GREAL,5,2017-03-03 07:10:18,2017-03-10 23:25:57,2017-03-17 14:49:14,3,466.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12810,VALON,5,2017-05-05 15:17:31,2017-05-12 20:55:21,2017-05-24 09:42:16,1,226.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12811,OTTIK,3,2012-11-26 19:49:03,2012-11-28 08:50:55,2012-12-09 01:55:29,1,254.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +12812,ANTON,5,2020-09-25 10:11:23,2020-10-03 20:19:20,2020-10-03 06:40:58,3,125.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12813,EASTC,7,2017-03-22 02:38:34,2017-03-31 09:52:20,2017-03-29 22:14:15,1,405.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12814,LILAS,4,2016-10-27 21:29:09,2016-12-11 16:49:20,2016-10-29 18:56:28,3,394.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12815,EASTC,2,2014-04-27 00:52:43,2014-05-25 15:09:09,2014-05-04 18:05:50,2,259.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12816,LETSS,8,2019-12-07 20:06:41,2019-12-18 16:28:42,2019-12-13 05:40:44,1,371.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +12817,MAGAA,5,2014-10-18 21:58:51,2014-11-18 01:59:51,2014-10-23 21:51:25,3,158.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12818,CHOPS,9,2022-06-29 04:00:26,2022-07-13 15:38:32,2022-07-04 13:22:14,3,104.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12819,TRAIH,7,2015-01-29 02:39:38,2015-02-21 12:01:31,2015-02-04 23:10:06,1,406.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12820,ANATR,4,2022-08-17 16:54:05,2022-08-29 03:44:41,2022-08-21 13:25:47,2,230.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +12821,ANTON,1,2022-10-04 03:00:47,2022-10-16 18:02:00,2022-10-12 17:28:09,1,178,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12822,TOMSP,9,2019-07-26 15:31:41,2019-09-01 06:54:59,2019-07-27 22:45:47,1,449.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12823,OCEAN,3,2021-08-04 16:22:55,2021-08-13 00:38:56,2021-08-07 01:36:36,1,446.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12824,SUPRD,1,2022-08-03 22:23:26,2022-08-05 14:20:03,2022-08-18 11:54:09,2,133.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12825,GROSR,7,2017-04-10 00:21:42,2017-05-20 23:01:55,2017-04-11 14:43:06,2,272,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12826,VINET,3,2022-10-28 16:06:31,2022-11-28 20:43:02,2022-11-07 02:20:11,1,144,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +12827,HILAA,7,2013-02-19 22:41:32,2013-03-12 11:21:49,2013-03-08 17:52:49,2,422.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12828,HUNGC,5,2013-02-12 02:33:40,2013-03-02 19:27:56,2013-02-14 18:15:44,2,369.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12829,Val2 ,3,2020-07-17 02:53:36,2020-07-18 15:41:03,2020-07-21 16:32:21,3,309.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12830,QUICK,5,2016-10-26 15:02:34,2016-11-09 17:25:47,2016-11-12 18:44:11,3,378.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12831,ANATR,5,2021-12-03 16:54:56,2022-01-02 07:23:17,2021-12-06 17:15:50,1,126.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12832,BLAUS,5,2016-12-22 21:50:05,2017-01-03 13:08:52,2017-01-12 17:00:02,2,493.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12833,MEREP,3,2018-10-03 18:07:32,2018-11-21 05:27:49,2018-10-10 14:09:40,1,404.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12834,ERNSH,4,2014-09-02 01:25:55,2014-09-15 02:28:37,2014-09-05 21:51:42,2,354,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12835,CENTC,4,2021-11-29 08:57:39,2021-12-07 20:17:20,2021-12-07 14:40:32,3,330.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12836,HANAR,6,2019-01-31 01:57:16,2019-02-15 18:38:39,2019-02-21 05:05:32,2,66.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +12837,LILAS,5,2020-05-15 13:04:35,2020-05-22 18:22:10,2020-05-20 10:55:34,2,91.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12838,LACOR,7,2019-08-28 03:04:02,2019-09-04 06:44:32,2019-09-02 19:08:00,2,42.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12839,MAISD,3,2012-09-20 13:25:58,2012-10-21 22:36:08,2012-09-21 01:27:15,1,140.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +12840,Val2 ,1,2019-05-24 13:16:05,2019-06-24 19:59:27,2019-05-26 18:24:25,1,499.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12841,QUEDE,8,2022-11-02 14:12:23,2022-12-29 18:36:56,2022-11-11 15:17:15,3,402.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12842,VINET,6,2015-04-11 18:06:54,2015-04-23 12:50:03,2015-04-16 05:13:18,2,148.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12843,WANDK,4,2017-11-02 01:02:44,2017-11-10 10:27:55,2017-11-06 15:39:08,2,176,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +12844,GALED,2,2018-06-11 17:48:48,2018-06-17 13:44:40,2018-06-18 01:07:15,2,152.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12845,SANTG,2,2022-06-17 11:25:32,2022-06-24 13:34:13,2022-06-29 02:13:39,2,45,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12846,CHOPS,2,2017-10-19 03:11:06,2017-10-28 02:07:21,2017-10-22 23:06:45,1,532.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12847,FURIB,7,2022-03-12 21:58:46,2022-03-24 17:58:17,2022-03-14 10:34:32,2,303.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12848,VINET,5,2014-12-05 14:27:22,2014-12-07 05:41:57,2014-12-14 12:15:53,2,154.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12849,RANCH,1,2021-07-18 08:39:59,2021-08-01 08:35:38,2021-07-18 16:34:30,2,410.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12850,HANAR,6,2017-12-02 08:02:13,2017-12-16 23:46:35,2017-12-02 09:51:46,2,178,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12851,QUEEN,3,2022-07-23 11:55:34,2022-08-03 19:40:02,2022-08-07 19:59:03,3,176,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +12852,SPECD,3,2018-04-21 12:00:58,2018-05-08 16:54:30,2018-04-21 19:33:13,1,468.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12853,LAUGB,9,2020-10-19 22:12:27,2020-10-23 04:26:55,2020-10-24 11:15:27,2,500.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +12854,SANTG,7,2015-11-01 17:24:44,2015-12-02 19:53:21,2015-11-14 19:51:35,1,32,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12855,VALON,5,2016-03-17 13:24:30,2016-03-30 04:55:37,2016-03-22 09:48:53,1,389,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12856,LAUGB,5,2014-11-20 21:32:07,2014-12-13 16:40:46,2014-11-22 02:30:52,2,408.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12857,NORTS,3,2023-10-07 19:41:50,2023-11-08 02:20:25,2023-10-26 19:40:57,1,105.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +12858,BOTTM,7,2016-08-18 04:09:15,2016-08-19 10:17:33,2016-08-19 04:22:56,2,347.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12859,SEVES,5,2013-10-23 19:36:10,2013-12-02 19:47:54,2013-11-07 11:04:10,2,34.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12860,FRANS,3,2019-05-23 06:19:26,2019-06-20 00:43:48,2019-05-24 20:59:13,2,260.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12861,PRINI,8,2021-01-13 04:34:29,2021-01-20 20:34:25,2021-01-25 20:59:34,3,533.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12862,GOURL,2,2014-01-09 01:30:52,2014-01-19 17:36:27,2014-01-09 12:36:54,2,304,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12863,THEBI,3,2013-05-02 19:49:30,2013-05-24 18:01:25,2013-05-05 13:39:29,2,19.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12864,LINOD,3,2015-11-16 17:46:30,2015-12-11 04:25:35,2015-12-02 10:30:35,3,40.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +12865,VAFFE,5,2022-05-27 12:10:22,2022-06-22 00:28:21,2022-05-30 09:15:06,1,243.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12866,VALON,3,2014-02-15 18:58:37,2014-02-23 18:19:07,2014-02-16 14:15:00,2,147,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12867,BLONP,6,2019-10-09 00:54:58,2019-10-21 12:37:48,2019-10-20 08:56:35,1,304,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12868,LAUGB,4,2018-06-18 11:05:43,2018-07-19 02:33:37,2018-06-21 20:15:42,1,83,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12869,SPECD,8,2021-12-07 03:36:49,2021-12-10 11:37:34,2021-12-07 14:59:38,2,63.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +12870,RICAR,5,2016-12-05 03:57:54,2017-01-19 21:10:41,2016-12-07 23:52:59,2,318.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12871,KOENE,5,2013-06-09 23:32:08,2013-06-17 05:25:57,2013-06-20 12:34:37,3,51.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +12872,RATTC,7,2019-06-07 19:10:52,2019-07-06 18:59:46,2019-06-24 06:24:04,3,236.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12873,LAMAI,7,2023-02-22 12:46:00,2023-03-23 13:04:02,2023-02-25 22:05:08,3,72,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12874,SPECD,4,2021-06-11 12:57:15,2021-06-29 10:16:25,2021-06-12 21:44:27,2,210.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +12875,ANATR,1,2020-03-29 06:29:03,2020-03-30 13:08:28,2020-04-05 05:07:52,2,376.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12876,RANCH,4,2019-03-01 12:28:56,2019-04-13 13:58:33,2019-03-12 07:50:10,2,246,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12877,LAMAI,8,2014-08-15 21:41:53,2014-09-02 05:01:01,2014-08-16 11:32:31,3,91,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +12878,SUPRD,7,2020-04-13 08:44:25,2020-04-25 15:43:39,2020-05-08 08:22:09,3,456,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12879,VALON,3,2012-09-07 02:58:32,2012-09-18 02:06:50,2012-09-18 02:46:14,3,231,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12880,CENTC,7,2019-02-12 14:34:16,2019-04-01 09:50:25,2019-02-26 16:19:44,3,502.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +12881,LACOR,2,2019-05-10 20:33:20,2019-05-22 03:49:25,2019-05-11 05:31:27,1,341.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12882,MAISD,4,2021-02-04 16:38:43,2021-02-22 16:27:21,2021-02-14 23:01:42,1,290,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +12883,CACTU,1,2014-02-17 20:26:59,2014-03-17 08:07:29,2014-02-18 19:57:35,3,201,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12884,TOMSP,7,2022-12-22 13:47:46,2023-01-20 18:46:57,2022-12-29 22:23:18,2,392.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12885,SANTG,2,2020-07-24 16:59:19,2020-08-04 05:25:50,2020-07-31 17:54:29,3,122.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12886,LINOD,9,2019-12-22 21:52:25,2020-01-05 09:14:24,2020-01-01 21:54:50,1,231,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12887,SIMOB,3,2018-03-21 23:15:17,2018-04-26 21:58:50,2018-04-11 08:42:55,1,368.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +12888,CONSH,1,2019-11-08 06:00:00,2019-11-26 04:28:52,2019-11-18 00:28:35,2,432.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12889,LAZYK,1,2018-08-27 17:04:34,2018-10-12 18:01:00,2018-09-04 15:27:06,2,126,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12890,VAFFE,3,2020-03-11 21:02:20,2020-04-07 12:13:01,2020-03-13 01:49:13,3,133.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12891,BOTTM,4,2023-09-14 04:10:38,2023-09-23 21:14:39,2023-09-18 14:53:10,3,451.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +12892,BOLID,3,2021-12-22 17:39:04,2021-12-24 21:25:18,2021-12-26 08:09:58,3,361,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12893,MAISD,2,2018-06-03 19:20:35,2018-06-07 11:48:03,2018-06-14 00:57:34,3,61.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +12894,ANTON,6,2019-12-19 21:58:38,2019-12-25 23:30:30,2019-12-24 20:31:16,1,286.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12895,OTTIK,2,2015-07-20 08:11:13,2015-07-31 16:40:43,2015-07-30 07:30:10,1,475,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12896,CHOPS,2,2021-08-17 14:33:58,2021-08-23 08:22:02,2021-08-21 00:44:01,2,276,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +12897,WARTH,4,2015-03-31 14:25:17,2015-04-18 20:40:14,2015-04-07 02:08:24,1,263.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12898,LETSS,5,2020-05-24 23:20:45,2020-05-25 12:03:55,2020-06-03 04:11:53,3,347,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12899,OCEAN,1,2022-08-19 22:26:50,2022-09-18 12:02:21,2022-08-21 20:53:16,1,469.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12900,NORTS,1,2022-12-11 23:28:41,2022-12-19 15:15:13,2022-12-16 23:47:11,2,183,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12901,TRAIH,9,2012-10-15 05:20:38,2012-11-02 02:26:49,2012-10-19 04:40:23,2,387.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12902,SAVEA,2,2020-10-05 10:11:00,2020-10-16 11:16:58,2020-10-14 13:27:01,2,123.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12903,GOURL,1,2019-01-18 21:42:53,2019-03-10 07:44:11,2019-02-02 20:10:59,1,226,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +12904,WILMK,3,2014-06-23 07:42:39,2014-07-09 19:01:44,2014-07-21 00:12:22,2,463,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12905,FAMIA,5,2020-05-20 12:44:49,2020-05-25 14:48:51,2020-05-22 11:58:49,1,39.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +12906,TRADH,6,2016-12-02 16:30:55,2016-12-16 10:15:05,2016-12-06 12:58:20,3,383,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12907,CONSH,8,2015-05-30 10:58:35,2015-06-01 22:35:49,2015-06-02 10:51:20,3,90.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12908,ROMEY,4,2022-02-01 08:17:24,2022-03-03 12:50:21,2022-02-05 08:36:39,1,481.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12909,SANTG,5,2015-12-27 17:06:51,2016-01-08 02:20:49,2016-01-01 23:26:23,3,486,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12910,DRACD,9,2015-06-29 00:02:24,2015-07-09 21:11:12,2015-07-17 05:37:51,2,383.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12911,WELLI,5,2019-03-12 12:19:46,2019-04-09 19:37:44,2019-03-16 01:43:14,3,346.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12912,VALON,7,2022-11-06 12:55:57,2022-11-11 22:14:57,2022-11-06 19:17:00,2,475.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12913,BONAP,4,2013-03-24 22:12:11,2013-03-28 13:47:29,2013-04-06 11:13:21,3,69.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12914,COMMI,3,2019-07-16 00:29:36,2019-07-26 11:55:43,2019-07-16 21:15:57,3,381.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12915,FRANS,6,2014-10-20 11:04:15,2014-11-03 20:33:47,2014-10-23 06:30:42,1,490.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12916,PICCO,5,2016-06-03 22:28:15,2016-06-25 14:40:18,2016-06-07 12:02:23,1,351.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12917,RICSU,8,2014-06-12 17:17:37,2014-07-06 00:49:08,2014-07-04 11:46:32,1,447,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12918,WANDK,1,2019-08-28 07:56:33,2019-09-14 09:37:56,2019-09-14 11:08:11,1,312.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +12919,HUNGC,3,2013-07-10 17:05:04,2013-08-09 18:23:32,2013-07-16 18:31:23,1,201.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +12920,WHITC,8,2023-06-25 14:54:45,2023-07-12 00:17:39,2023-07-04 10:10:27,2,196,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12921,BOTTM,6,2021-10-27 18:14:16,2021-11-15 20:30:46,2021-11-10 11:58:08,3,32,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12922,CACTU,7,2021-01-21 09:53:39,2021-01-27 05:55:57,2021-01-29 05:22:56,3,450,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +12923,QUEDE,4,2016-03-24 21:38:31,2016-04-13 14:47:29,2016-04-12 16:10:24,2,341.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12924,HANAR,2,2013-11-29 10:29:59,2013-12-14 06:49:11,2013-11-30 15:01:50,2,396.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +12925,PARIS,9,2022-12-09 18:47:31,2022-12-18 14:18:00,2022-12-17 04:31:27,3,247.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +12926,LAMAI,9,2021-07-06 10:51:39,2021-07-12 17:36:36,2021-07-09 09:23:10,3,79.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12927,PARIS,9,2022-06-30 17:42:29,2022-07-21 21:08:20,2022-07-04 06:42:50,3,321,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12928,MEREP,3,2019-01-17 09:44:26,2019-02-23 13:35:23,2019-01-23 08:08:58,2,51.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +12929,GREAL,3,2019-08-23 10:54:05,2019-08-28 02:17:33,2019-08-29 05:52:14,3,476.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +12930,LETSS,2,2016-02-08 07:03:05,2016-03-10 04:54:28,2016-02-09 08:30:45,1,237,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +12931,GOURL,3,2021-12-18 15:50:00,2022-01-07 08:11:28,2022-01-05 03:10:05,2,76,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +12932,LACOR,5,2019-04-22 13:47:48,2019-05-14 07:27:27,2019-04-23 08:32:16,1,100,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +12933,BLONP,9,2018-09-23 23:13:46,2018-10-06 18:02:33,2018-10-06 17:16:50,1,498,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +12934,ROMEY,7,2018-03-23 07:27:33,2018-05-06 15:01:24,2018-04-08 04:32:44,3,367.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12935,OLDWO,4,2023-02-06 19:25:18,2023-02-20 21:57:57,2023-02-15 17:37:07,3,239.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +12936,RATTC,2,2022-07-30 03:57:32,2022-07-30 17:36:06,2022-07-31 10:48:18,3,132,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +12937,HANAR,2,2013-08-17 01:43:56,2013-08-19 17:57:50,2013-08-25 17:02:16,1,409.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12938,WELLI,4,2015-01-19 11:02:12,2015-02-14 17:19:34,2015-01-20 11:14:32,1,13.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +12939,TOMSP,6,2018-12-23 12:47:39,2019-01-11 05:32:48,2018-12-24 19:23:24,1,343.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12940,HILAA,7,2014-01-23 04:07:50,2014-02-09 03:58:29,2014-01-23 15:45:49,2,40.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +12941,TRADH,4,2021-03-27 23:42:33,2021-04-09 04:18:12,2021-04-13 18:23:34,3,338.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +12942,LINOD,8,2022-02-11 07:06:25,2022-03-23 08:28:36,2022-02-24 13:02:51,1,49.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +12943,WOLZA,1,2016-05-23 23:23:16,2016-05-25 01:00:28,2016-06-05 23:50:10,2,106,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12944,THEBI,3,2020-01-17 21:09:16,2020-01-25 04:18:51,2020-01-20 05:55:34,2,447.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +12945,SPECD,3,2017-09-17 07:21:24,2017-10-22 19:14:41,2017-09-18 20:00:41,1,271.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12946,VICTE,9,2023-10-22 04:11:53,2023-11-22 18:45:54,2023-11-01 03:27:57,1,293.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12947,CENTC,3,2023-01-09 01:54:10,2023-01-22 00:57:52,2023-01-18 13:39:10,3,237.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +12948,ANATR,1,2023-05-24 00:05:44,2023-05-25 09:22:51,2023-05-27 14:16:29,3,451.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +12949,GALED,8,2016-07-28 15:38:23,2016-09-14 02:14:26,2016-07-29 12:00:46,1,373.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +12950,VINET,6,2022-01-15 04:48:32,2022-01-31 20:36:10,2022-01-22 07:11:31,2,293,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12951,QUEDE,5,2017-06-25 23:05:28,2017-07-06 16:34:04,2017-06-27 05:49:13,2,95.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12952,PERIC,8,2015-03-14 09:29:41,2015-03-19 04:47:38,2015-03-16 21:38:07,2,171,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12953,LILAS,3,2013-09-14 15:08:15,2013-09-28 14:47:58,2013-09-30 11:58:03,3,133.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +12954,BLAUS,6,2018-03-10 03:47:01,2018-03-27 05:31:07,2018-03-26 13:11:35,3,242.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +12955,COMMI,6,2015-10-18 16:03:02,2015-10-31 21:14:22,2015-10-18 22:29:54,3,314.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +12956,CENTC,3,2017-07-24 16:13:47,2017-08-22 15:37:33,2017-07-30 15:45:30,3,129.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12957,ALFKI,2,2018-06-03 09:53:45,2018-06-14 18:38:09,2018-06-05 07:46:26,3,45.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +12958,LAZYK,2,2020-03-11 00:38:02,2020-04-16 19:21:38,2020-03-14 02:15:00,1,130,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +12959,FOLIG,3,2019-01-12 11:11:48,2019-01-30 17:45:40,2019-01-14 19:50:10,2,155,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12960,CACTU,4,2019-02-19 09:32:06,2019-03-06 08:25:06,2019-02-19 21:51:43,2,159.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12961,CONSH,9,2021-07-28 23:55:11,2021-08-05 10:14:58,2021-08-02 23:41:58,3,89.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12962,LINOD,8,2019-07-07 05:23:33,2019-07-14 21:26:54,2019-07-11 17:28:42,1,407.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12963,SAVEA,3,2023-09-09 03:16:38,2023-10-23 18:00:26,2023-09-11 17:11:02,3,272.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +12964,SAVEA,4,2020-08-22 23:43:44,2020-08-25 19:11:26,2020-08-26 09:48:58,1,491.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +12965,GALED,7,2023-07-03 10:11:00,2023-07-17 01:15:54,2023-07-08 15:58:07,1,416.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12966,ERNSH,6,2013-02-17 19:38:46,2013-03-07 14:11:19,2013-02-25 06:23:09,1,183.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +12967,WILMK,2,2017-06-29 08:36:51,2017-07-30 17:00:29,2017-07-08 21:25:30,2,397,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +12968,PRINI,9,2012-10-21 11:40:20,2012-11-14 16:40:46,2012-11-02 22:56:13,2,216.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +12969,MORGK,2,2023-08-10 23:40:38,2023-08-15 12:25:58,2023-08-31 22:52:35,1,207,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +12970,NORTS,5,2022-03-14 01:23:35,2022-04-10 13:52:38,2022-03-14 19:28:42,2,135.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12971,GROSR,4,2016-07-20 19:37:43,2016-08-01 23:38:03,2016-08-14 19:17:41,1,493,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +12972,RICSU,8,2014-08-01 11:20:17,2014-08-09 16:38:20,2014-08-12 03:53:21,3,419.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +12973,REGGC,1,2017-04-10 03:10:55,2017-04-13 06:06:18,2017-04-29 20:34:47,2,440.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +12974,GROSR,7,2014-08-26 16:32:12,2014-09-12 02:38:39,2014-08-27 04:12:28,2,405,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +12975,PRINI,1,2014-07-20 06:36:08,2014-07-25 18:25:38,2014-08-06 14:19:45,3,182.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +12976,ROMEY,8,2020-11-08 17:58:14,2020-12-14 20:47:17,2020-11-08 20:31:18,3,122.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12977,QUICK,5,2018-05-18 00:53:41,2018-05-30 00:58:03,2018-06-13 01:12:40,1,94.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +12978,LONEP,1,2014-01-14 16:34:22,2014-01-30 16:40:18,2014-01-25 19:19:04,2,192.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +12979,CENTC,9,2013-09-27 01:47:36,2013-11-01 17:32:22,2013-10-08 16:05:28,1,48.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12980,LETSS,3,2016-08-29 04:27:22,2016-09-02 21:05:51,2016-09-11 19:41:07,2,359,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +12981,LETSS,1,2021-03-13 06:05:27,2021-04-09 01:51:18,2021-03-16 11:40:21,2,123.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +12982,BOTTM,2,2021-05-13 08:48:57,2021-05-19 01:08:18,2021-05-18 23:56:26,3,263.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +12983,TORTU,7,2017-04-28 12:30:03,2017-05-04 07:26:33,2017-04-28 15:03:18,1,205.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +12984,GREAL,6,2018-08-28 16:30:23,2018-09-01 13:34:45,2018-09-23 19:05:43,3,341,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12985,EASTC,1,2019-12-09 15:04:10,2019-12-13 07:06:23,2019-12-10 06:03:56,1,511.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12986,THEBI,1,2022-02-11 14:40:31,2022-02-20 14:43:41,2022-02-28 16:31:02,1,19.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +12987,Val2 ,9,2015-10-23 20:44:30,2015-11-11 06:45:28,2015-11-02 07:57:46,2,358.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +12988,GALED,3,2018-09-16 17:47:17,2018-09-30 15:53:02,2018-09-17 13:10:29,2,406.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +12989,SPECD,5,2013-10-20 19:16:51,2013-11-02 14:19:13,2013-10-30 02:59:57,3,20.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12990,DUMON,3,2018-07-17 14:01:42,2018-07-27 00:51:55,2018-08-03 15:28:48,3,487.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +12991,WANDK,3,2014-05-12 00:58:34,2014-05-16 15:06:20,2014-05-30 17:14:04,3,210.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +12992,QUEEN,5,2019-11-28 14:30:52,2019-12-24 00:45:47,2019-12-06 18:55:07,1,45,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12993,GALED,5,2015-06-07 02:04:25,2015-07-17 05:24:21,2015-06-25 05:34:25,2,335.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +12994,MORGK,4,2022-11-21 10:45:07,2022-11-22 01:18:26,2022-12-11 21:51:04,3,391.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +12995,QUICK,8,2019-06-22 11:55:54,2019-06-26 05:38:05,2019-07-18 23:26:56,2,170,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +12996,LINOD,3,2018-05-15 15:20:57,2018-05-22 23:16:44,2018-05-19 01:29:48,1,81.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +12997,ANATR,8,2023-03-06 21:55:19,2023-03-09 15:12:31,2023-03-13 11:52:48,2,186,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +12998,SAVEA,9,2015-05-21 12:33:48,2015-06-24 23:59:53,2015-05-31 19:40:41,2,309.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +12999,ROMEY,2,2021-08-09 16:09:45,2021-08-13 11:32:54,2021-08-10 08:08:42,3,317.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13000,GREAL,2,2019-10-26 05:57:55,2019-11-21 05:01:33,2019-10-27 11:32:24,2,115.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13001,MEREP,6,2017-09-06 10:08:57,2017-10-02 01:02:11,2017-09-11 01:44:26,1,148,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13002,TRAIH,9,2021-12-09 08:35:51,2022-01-12 11:40:58,2021-12-09 10:20:58,1,376,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13003,TRADH,1,2013-08-24 00:23:46,2013-09-05 19:41:02,2013-08-25 19:23:21,1,202.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13004,LETSS,9,2020-06-08 12:06:10,2020-07-04 06:42:42,2020-06-22 04:24:34,3,104,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13005,WHITC,8,2021-12-17 21:57:34,2021-12-21 05:13:39,2021-12-28 09:44:46,3,476,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13006,Val2 ,7,2020-06-17 04:35:37,2020-07-18 09:52:57,2020-06-30 18:18:51,1,236,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13007,FRANR,7,2012-09-04 07:44:52,2012-09-08 06:36:37,2012-09-08 00:58:41,2,227.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +13008,LETSS,3,2021-02-05 07:04:52,2021-02-05 12:45:16,2021-02-06 09:45:03,1,351.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13009,CHOPS,2,2014-05-28 09:36:19,2014-06-02 06:28:26,2014-06-02 12:33:04,3,98.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13010,ROMEY,5,2021-10-05 17:53:49,2021-10-10 06:13:25,2021-10-07 05:38:59,1,321.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +13011,HUNGC,7,2018-09-08 11:09:57,2018-09-15 02:12:25,2018-09-09 23:34:36,3,179.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13012,WELLI,5,2018-02-27 16:06:54,2018-03-27 03:41:44,2018-03-03 21:23:10,3,233.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13013,REGGC,1,2018-04-16 08:03:34,2018-04-18 02:25:27,2018-04-16 13:16:44,2,367.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13014,CHOPS,3,2022-06-08 13:05:46,2022-06-12 02:12:56,2022-06-12 21:51:08,2,117.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13015,FRANS,5,2017-11-29 00:00:13,2017-12-06 03:38:31,2017-12-15 08:14:06,2,104.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13016,CHOPS,3,2013-01-18 07:07:49,2013-01-24 05:57:21,2013-01-31 11:45:35,2,264,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13017,BSBEV,7,2022-04-08 14:01:17,2022-04-27 06:46:36,2022-04-17 19:57:13,2,296.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13018,LONEP,9,2013-04-13 05:45:59,2013-05-11 04:22:42,2013-04-28 04:06:20,1,484,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13019,THECR,4,2022-10-16 22:51:06,2022-10-28 19:17:58,2022-10-31 21:14:25,2,73,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13020,CENTC,3,2021-04-21 23:08:34,2021-05-31 20:58:10,2021-04-24 14:13:17,2,159.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13021,BONAP,9,2019-08-17 19:53:16,2019-09-14 07:50:18,2019-08-19 21:02:02,3,349.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13022,LEHMS,5,2020-07-24 00:12:24,2020-08-12 14:27:55,2020-07-28 16:36:03,3,31.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13023,MAISD,3,2016-05-23 15:32:15,2016-05-27 03:16:54,2016-06-14 03:37:39,1,60,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13024,TRADH,8,2022-04-17 21:39:49,2022-05-26 21:37:29,2022-04-27 06:11:32,2,222.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13025,HUNGC,7,2023-08-07 12:01:52,2023-09-03 08:38:23,2023-08-08 07:19:42,2,464.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13026,COMMI,9,2018-04-14 03:13:29,2018-05-08 19:57:12,2018-04-18 23:06:44,2,101.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13027,PICCO,8,2023-09-12 22:49:53,2023-09-21 04:24:22,2023-09-20 12:03:48,2,296.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13028,GREAL,6,2015-03-02 13:30:29,2015-03-18 05:51:12,2015-03-07 19:56:20,2,185.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13029,ANTON,4,2020-07-04 11:56:39,2020-08-03 06:14:55,2020-07-15 09:29:51,3,146,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13030,BOTTM,6,2013-10-19 23:54:48,2013-11-06 14:41:55,2013-10-31 23:36:53,2,431,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13031,BLAUS,7,2021-12-07 16:00:29,2021-12-08 18:45:33,2021-12-09 03:59:57,1,178,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13032,GROSR,2,2017-01-09 10:12:55,2017-02-02 02:40:11,2017-01-20 09:52:14,2,367,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +13033,THEBI,4,2022-10-07 23:50:19,2022-11-18 20:10:01,2022-10-16 07:49:57,1,446,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13034,FISSA,4,2023-02-21 13:19:35,2023-04-17 08:11:35,2023-03-11 14:34:09,3,190,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13035,SPLIR,7,2019-05-04 03:44:38,2019-05-20 16:31:12,2019-05-05 08:40:54,3,168,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13036,FOLIG,6,2019-10-02 02:09:06,2019-10-22 02:54:05,2019-10-02 03:02:47,2,219,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13037,REGGC,4,2019-07-27 20:34:38,2019-08-05 14:47:44,2019-08-12 02:02:47,3,201.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13038,HANAR,6,2017-12-13 13:24:22,2017-12-29 23:09:26,2017-12-13 15:29:31,3,434.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13039,LAUGB,5,2021-04-01 21:11:49,2021-04-27 18:28:21,2021-04-03 15:37:11,1,395.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13040,FOLIG,9,2022-04-04 01:53:21,2022-04-06 09:49:26,2022-04-06 23:18:55,3,291,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13041,REGGC,7,2021-12-13 04:42:52,2021-12-16 07:38:04,2021-12-17 18:44:10,1,289.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13042,LAMAI,3,2023-04-10 06:22:06,2023-05-10 05:11:49,2023-04-11 19:22:59,2,252,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13043,FURIB,9,2022-10-13 02:22:37,2022-10-31 10:38:18,2022-10-18 18:31:06,2,267.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13044,FRANK,2,2016-12-01 13:28:08,2016-12-18 07:59:19,2016-12-05 00:10:41,1,416,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +13045,HUNGO,8,2022-03-14 01:19:54,2022-03-20 22:40:04,2022-03-23 17:12:28,2,423.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13046,COMMI,1,2023-07-20 17:50:31,2023-07-29 01:28:20,2023-07-26 04:46:04,1,185.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13047,CHOPS,2,2023-09-24 04:44:45,2023-10-10 11:27:25,2023-09-29 13:23:49,3,485,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13048,RATTC,8,2022-09-03 11:10:02,2022-09-23 17:36:30,2022-09-06 03:43:03,2,104.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13049,QUICK,1,2021-12-16 03:57:57,2021-12-27 09:38:54,2021-12-25 19:54:40,2,427.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13050,BERGS,1,2013-03-16 11:14:54,2013-03-23 09:06:01,2013-03-24 07:32:01,3,111,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13051,MORGK,6,2018-01-15 23:13:21,2018-02-08 03:54:55,2018-01-29 10:17:46,2,24,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13052,LAUGB,1,2013-06-14 03:22:16,2013-07-12 19:27:17,2013-06-19 08:56:06,2,102.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13053,CENTC,3,2016-07-31 19:52:39,2016-08-05 05:44:57,2016-08-28 22:06:58,3,136.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13054,PARIS,7,2017-11-08 21:11:57,2017-11-10 13:42:26,2017-11-10 21:12:15,1,472.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13055,OCEAN,1,2020-09-03 09:28:14,2020-09-30 16:01:07,2020-09-07 01:40:26,2,242.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13056,ROMEY,3,2016-10-11 04:35:02,2016-10-31 16:54:34,2016-11-01 14:29:27,3,303.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13057,HILAA,8,2013-10-24 12:57:21,2013-11-17 22:39:02,2013-10-25 08:40:25,3,412.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13058,ANTON,8,2018-07-18 05:23:26,2018-08-16 07:20:53,2018-08-07 10:04:57,3,66,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13059,SAVEA,4,2017-10-02 01:40:10,2017-10-03 21:40:03,2017-10-17 00:59:26,1,109.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13060,ERNSH,3,2022-08-09 01:41:39,2022-09-24 17:08:46,2022-08-23 06:09:19,2,278,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13061,BOTTM,5,2018-03-16 03:55:03,2018-03-31 01:13:26,2018-03-23 01:26:37,2,410.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13062,OTTIK,3,2017-07-20 04:50:43,2017-07-23 21:45:08,2017-07-20 19:08:37,2,203.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13063,LAZYK,7,2018-02-16 16:00:50,2018-03-05 15:55:56,2018-03-04 19:41:49,2,486.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13064,DRACD,6,2018-02-14 04:49:38,2018-03-02 23:51:41,2018-02-23 07:00:26,3,507,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13065,LILAS,1,2020-10-15 06:15:35,2020-10-29 15:56:57,2020-10-16 14:35:55,1,263.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13066,HANAR,2,2016-06-08 19:54:59,2016-06-10 21:04:41,2016-06-16 13:37:09,3,310,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13067,WELLI,7,2016-09-11 13:03:45,2016-09-12 14:02:53,2016-09-20 16:41:04,3,431.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13068,ALFKI,5,2017-04-20 14:18:38,2017-05-11 10:47:13,2017-04-25 15:50:38,1,289,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13069,VICTE,8,2016-04-06 09:06:30,2016-04-12 15:37:10,2016-04-19 04:17:58,3,393,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13070,MORGK,6,2018-01-03 03:42:23,2018-01-25 02:59:14,2018-01-28 00:54:53,1,370.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13071,DUMON,5,2013-02-10 05:23:39,2013-02-28 16:15:23,2013-02-20 13:07:56,1,245,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13072,VALON,6,2016-08-25 16:58:24,2016-09-07 08:37:40,2016-08-26 18:52:11,2,282.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13073,RICAR,2,2015-09-22 07:32:14,2015-11-01 14:54:51,2015-10-16 23:40:49,3,216.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13074,LAUGB,1,2012-08-04 01:03:18,2012-08-30 10:26:57,2012-08-18 17:56:26,3,69.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13075,MEREP,6,2016-08-28 11:08:38,2016-09-06 06:19:17,2016-09-03 23:09:28,1,375.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13076,GODOS,4,2016-04-29 07:20:33,2016-05-27 01:48:44,2016-05-13 03:52:40,2,34.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13077,ISLAT,3,2015-06-06 16:15:42,2015-06-11 06:36:48,2015-06-26 11:57:46,3,93,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13078,VICTE,4,2017-09-12 22:29:26,2017-09-21 23:53:33,2017-09-14 20:58:05,1,36.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13079,GROSR,3,2019-09-02 20:45:38,2019-09-22 13:21:32,2019-09-10 10:06:15,2,424,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13080,ANATR,3,2014-04-27 01:04:21,2014-05-01 14:09:50,2014-05-01 15:21:29,1,411.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13081,FAMIA,8,2017-03-06 03:42:04,2017-03-30 07:50:58,2017-03-24 15:52:31,1,57.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13082,WHITC,8,2019-03-24 08:15:09,2019-04-18 14:08:40,2019-04-10 08:52:57,3,189.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13083,BOLID,4,2014-12-03 05:19:45,2014-12-13 14:13:59,2014-12-18 00:49:41,1,265.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13084,NORTS,3,2018-02-05 10:16:16,2018-02-19 01:09:05,2018-02-07 16:50:34,3,350.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13085,BONAP,4,2018-02-26 13:16:09,2018-03-06 16:15:37,2018-02-28 04:00:37,2,100.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13086,LILAS,3,2012-09-25 09:09:53,2012-10-22 08:37:01,2012-10-04 10:43:36,1,408.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13087,SAVEA,3,2015-08-29 06:00:58,2015-08-30 18:54:36,2015-09-07 01:25:15,2,363.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13088,SPLIR,8,2016-03-15 01:56:42,2016-04-04 03:19:14,2016-03-26 06:41:27,3,26.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13089,VICTE,3,2015-06-03 20:14:55,2015-07-06 02:46:22,2015-06-20 20:23:43,3,245.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13090,ERNSH,3,2016-09-15 12:33:29,2016-10-10 20:39:26,2016-09-21 21:44:54,3,509,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13091,MORGK,7,2020-01-15 20:24:20,2020-02-23 02:29:13,2020-01-21 05:52:54,1,348.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13092,ISLAT,4,2015-07-14 03:09:25,2015-08-09 19:03:04,2015-07-20 15:22:41,1,407.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13093,WOLZA,5,2012-08-24 19:14:19,2012-09-12 22:05:08,2012-08-27 17:56:38,2,139,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13094,WILMK,3,2017-01-05 10:55:02,2017-01-25 09:30:34,2017-01-14 21:44:28,2,418.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13095,CENTC,9,2014-10-24 09:39:30,2014-11-23 23:31:30,2014-11-05 02:30:15,1,451.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13096,WARTH,2,2023-03-22 20:32:56,2023-04-08 08:11:46,2023-03-31 12:27:43,1,254.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13097,TOMSP,8,2020-01-07 02:53:41,2020-02-27 06:14:26,2020-01-07 16:10:04,3,194.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13098,RICSU,5,2014-02-06 21:22:07,2014-02-23 01:42:59,2014-03-01 06:23:47,3,246.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13099,SAVEA,8,2014-05-23 13:04:22,2014-05-25 01:41:00,2014-05-26 21:05:02,3,268.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13100,HANAR,4,2016-11-28 19:41:30,2016-12-05 14:03:02,2016-12-01 16:36:44,1,276.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13101,FOLIG,2,2021-01-28 18:43:33,2021-02-28 21:58:18,2021-02-03 21:51:41,1,325,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13102,MAGAA,3,2019-06-21 00:44:46,2019-07-11 17:50:13,2019-07-06 23:33:14,3,387.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13103,GROSR,3,2022-03-31 22:12:32,2022-04-21 06:40:01,2022-04-09 04:19:10,2,106.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13104,SUPRD,9,2014-06-05 23:07:52,2014-07-01 12:04:13,2014-06-10 12:47:11,1,439.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13105,RANCH,5,2022-03-12 23:29:52,2022-04-10 01:14:59,2022-03-23 17:46:31,2,172,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13106,SPECD,5,2014-06-05 10:19:03,2014-06-24 20:40:00,2014-06-07 00:58:28,2,464.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13107,VALON,6,2019-04-12 06:04:47,2019-04-21 13:21:41,2019-04-14 09:29:50,2,337.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13108,DUMON,4,2021-07-10 12:24:00,2021-07-13 20:29:43,2021-07-25 13:34:44,3,459,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13109,CENTC,5,2016-07-20 12:25:47,2016-08-20 20:53:53,2016-07-20 20:14:37,2,295.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13110,BLONP,8,2014-03-27 12:48:58,2014-04-08 03:04:49,2014-03-28 18:08:51,1,325.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13111,HILAA,9,2022-07-06 07:37:54,2022-07-26 22:45:06,2022-07-10 08:07:34,1,435.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13112,WELLI,3,2018-10-15 19:07:45,2018-10-20 21:32:27,2018-11-03 02:58:12,3,103.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +13113,LILAS,4,2018-06-18 17:11:47,2018-07-08 13:04:35,2018-06-23 06:06:41,3,293.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13114,GALED,1,2017-07-31 19:06:51,2017-08-19 01:47:54,2017-08-18 11:46:21,3,482.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13115,LACOR,9,2019-03-17 10:49:01,2019-03-24 08:01:54,2019-03-22 00:23:46,2,436.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13116,WARTH,7,2020-08-08 04:09:53,2020-08-25 21:49:13,2020-08-12 00:15:27,1,318.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13117,LACOR,7,2023-07-31 05:32:07,2023-08-11 21:49:39,2023-08-20 01:23:37,3,452.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13118,QUEDE,7,2022-04-03 02:08:06,2022-04-23 23:44:54,2022-04-08 02:45:43,1,129.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13119,ALFKI,6,2017-04-13 16:31:36,2017-04-28 00:35:16,2017-04-15 02:08:22,1,165.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13120,BLAUS,8,2015-09-16 03:10:23,2015-10-06 01:31:47,2015-10-09 21:54:43,1,322.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13121,FOLKO,7,2023-08-01 15:27:10,2023-08-29 21:33:50,2023-08-16 08:53:23,3,290,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13122,RICAR,2,2023-04-08 21:14:03,2023-05-10 01:40:35,2023-04-18 02:24:04,2,87.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13123,TRAIH,4,2018-01-19 14:35:10,2018-02-20 00:04:32,2018-02-07 15:43:28,3,34.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13124,FOLKO,4,2017-07-08 05:16:11,2017-08-17 07:40:09,2017-07-11 01:34:02,1,352.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13125,CACTU,5,2021-02-10 19:46:15,2021-02-19 08:20:47,2021-02-11 16:14:41,3,399.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13126,WILMK,3,2018-10-08 11:24:53,2018-12-03 04:16:14,2018-10-20 11:52:15,2,471.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13127,BOTTM,9,2017-08-12 05:29:30,2017-08-22 21:03:19,2017-08-30 00:33:29,1,345.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13128,DRACD,1,2013-09-26 11:28:44,2013-10-20 18:43:52,2013-09-26 22:08:02,1,324.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13129,BERGS,6,2013-07-15 13:17:39,2013-07-26 19:17:10,2013-07-15 18:36:01,3,354,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13130,WELLI,2,2019-12-11 12:34:02,2019-12-18 18:14:32,2019-12-12 22:27:16,2,207.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13131,GROSR,6,2013-06-05 07:46:02,2013-07-22 08:02:31,2013-06-08 04:15:52,2,109.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13132,QUEDE,7,2014-01-14 16:27:22,2014-01-18 03:21:42,2014-01-16 06:19:04,3,106.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13133,RATTC,3,2019-06-24 05:12:51,2019-08-01 15:29:44,2019-06-29 16:54:37,1,164.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13134,GOURL,3,2023-01-22 06:04:01,2023-02-07 22:55:41,2023-01-25 00:54:06,3,123,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13135,MEREP,5,2013-04-09 04:14:15,2013-04-17 01:44:26,2013-04-23 12:51:07,3,89,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13136,GROSR,7,2015-10-05 17:35:04,2015-10-21 14:03:47,2015-10-17 11:18:28,1,350.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13137,KOENE,4,2023-07-18 13:21:17,2023-09-03 08:14:01,2023-07-23 14:38:10,3,279,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13138,ROMEY,8,2015-02-27 19:42:31,2015-02-28 06:17:36,2015-03-01 13:35:29,1,111.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13139,LAZYK,2,2021-08-21 06:31:16,2021-08-31 11:38:34,2021-08-29 14:07:11,2,227.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13140,OLDWO,6,2022-04-26 18:35:09,2022-05-01 07:16:17,2022-04-27 05:04:48,2,85,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13141,DUMON,3,2021-04-22 01:27:05,2021-04-22 04:58:47,2021-04-22 14:28:59,2,118.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13142,OTTIK,5,2013-01-11 06:42:29,2013-02-05 17:13:25,2013-01-29 18:58:10,1,230.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13143,WHITC,3,2020-10-15 08:46:03,2020-10-15 15:43:55,2020-10-15 20:30:36,3,43.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13144,SAVEA,4,2020-11-18 02:22:08,2020-11-25 04:13:49,2020-11-28 06:44:56,1,87.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13145,GROSR,3,2018-02-20 14:37:23,2018-04-02 06:48:49,2018-02-21 14:31:50,2,466,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +13146,ERNSH,9,2017-12-19 09:36:49,2018-01-21 07:05:38,2017-12-20 22:50:56,1,475.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13147,MAISD,7,2016-03-21 12:03:52,2016-03-29 21:55:01,2016-04-15 07:41:14,1,247.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13148,VINET,4,2018-08-01 17:38:56,2018-08-24 08:16:40,2018-08-02 13:47:02,1,199.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13149,VINET,5,2021-06-08 17:03:06,2021-07-17 14:43:28,2021-06-16 23:54:01,1,115.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13150,FOLKO,1,2015-08-28 13:41:44,2015-09-15 10:14:58,2015-08-28 15:01:44,2,408.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13151,WOLZA,2,2023-05-08 10:16:58,2023-05-13 04:05:58,2023-05-14 17:28:13,2,461.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13152,BERGS,8,2023-10-22 23:01:39,2023-12-12 18:44:54,2023-10-24 23:37:23,2,134.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13153,GREAL,5,2017-02-04 17:58:28,2017-02-14 15:45:43,2017-02-12 10:21:09,2,110,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13154,OTTIK,3,2022-08-19 16:09:07,2022-09-01 01:42:53,2022-08-20 10:25:11,2,442.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13155,KOENE,4,2020-10-27 06:51:32,2020-11-01 06:16:00,2020-10-30 23:50:26,1,443.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13156,WHITC,1,2013-08-05 11:41:02,2013-08-16 01:14:48,2013-08-07 07:00:27,3,511.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13157,Val2 ,5,2018-11-14 08:02:03,2018-11-20 08:01:00,2018-11-18 23:47:16,3,114.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +13158,LEHMS,2,2019-07-16 12:58:50,2019-07-31 11:41:03,2019-07-20 06:25:15,1,269.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13159,SIMOB,1,2014-12-11 16:40:03,2014-12-29 19:57:11,2014-12-20 03:25:38,3,174.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13160,VICTE,5,2021-06-19 20:53:33,2021-07-11 04:33:39,2021-06-24 04:01:35,3,305,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13161,FAMIA,8,2013-03-05 14:19:51,2013-03-31 03:45:36,2013-03-26 06:19:25,2,104.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13162,NORTS,9,2022-05-28 18:04:12,2022-06-20 01:38:43,2022-06-03 19:51:47,2,300.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13163,MAISD,4,2013-03-05 19:33:06,2013-03-27 06:27:16,2013-03-08 18:55:18,1,146.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13164,HILAA,2,2022-12-02 09:17:10,2023-01-13 19:10:22,2022-12-13 07:00:05,1,223.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13165,FRANS,4,2014-11-27 07:43:38,2014-12-09 02:41:52,2014-12-01 03:23:13,3,165.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13166,HUNGO,8,2020-02-29 02:51:59,2020-04-04 00:08:48,2020-03-01 00:55:06,3,192.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13167,Val2 ,3,2014-12-05 22:26:10,2014-12-09 14:40:30,2014-12-20 19:55:10,2,403.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13168,SEVES,7,2015-03-08 20:04:42,2015-03-24 18:22:36,2015-03-11 22:03:10,3,285.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13169,LINOD,8,2015-12-14 09:58:20,2015-12-23 21:51:01,2015-12-19 20:03:46,1,88.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13170,BERGS,3,2013-11-23 20:59:12,2013-12-12 16:08:53,2013-12-08 04:12:54,1,477.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13171,TORTU,8,2020-02-23 02:53:34,2020-02-26 22:44:04,2020-03-13 16:18:03,3,107,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13172,QUEDE,5,2022-12-09 02:15:34,2022-12-20 02:03:55,2022-12-27 03:03:44,1,115.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13173,BLONP,5,2021-03-28 06:07:35,2021-04-15 14:13:11,2021-04-07 17:47:20,3,426.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13174,RATTC,7,2023-05-03 00:44:58,2023-05-27 19:48:51,2023-05-03 19:02:59,3,456.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13175,QUICK,8,2018-05-26 01:32:17,2018-05-29 01:51:49,2018-05-28 20:48:44,3,473.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13176,WILMK,7,2014-10-10 11:47:40,2014-11-28 10:59:55,2014-10-12 01:22:48,1,373.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13177,ERNSH,3,2014-08-02 15:42:55,2014-08-20 01:30:17,2014-08-11 12:05:51,3,42.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13178,NORTS,3,2022-10-22 05:39:37,2022-10-28 21:19:00,2022-10-22 09:07:24,1,433.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13179,PRINI,8,2018-07-26 08:10:08,2018-08-07 11:05:13,2018-08-14 04:23:43,2,200.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13180,THEBI,2,2023-04-30 16:44:16,2023-05-24 13:41:03,2023-05-12 08:05:56,2,455.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13181,SPLIR,9,2015-08-21 12:31:23,2015-09-10 02:45:22,2015-08-23 10:42:13,3,437,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13182,MAISD,6,2014-03-27 19:03:00,2014-04-09 22:01:20,2014-03-28 15:58:52,3,249,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13183,ISLAT,5,2022-02-02 12:32:10,2022-02-22 09:17:45,2022-02-12 18:40:40,3,12.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13184,KOENE,5,2020-09-22 00:51:44,2020-10-18 10:00:35,2020-09-22 15:00:33,2,360.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13185,SIMOB,5,2021-07-16 03:54:31,2021-08-21 11:58:43,2021-07-19 10:50:08,2,491.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13186,LEHMS,2,2021-12-16 03:40:16,2022-01-25 21:15:09,2021-12-31 23:50:14,2,498.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13187,SUPRD,5,2013-07-18 10:59:54,2013-08-13 23:02:06,2013-07-19 21:34:19,2,438.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13188,LINOD,6,2016-08-25 22:26:19,2016-08-31 18:32:37,2016-08-26 01:15:12,3,107.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13189,CHOPS,2,2021-04-12 01:06:30,2021-04-19 05:44:40,2021-04-21 08:42:07,2,64.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13190,LILAS,5,2020-05-30 01:35:43,2020-06-08 13:55:43,2020-06-05 14:39:42,2,243.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13191,MAGAA,3,2014-04-17 02:17:54,2014-04-18 08:53:25,2014-04-24 09:33:28,3,460.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13192,FRANR,5,2017-01-25 03:58:51,2017-02-06 23:38:06,2017-02-06 09:08:44,1,165.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13193,SPLIR,8,2022-01-11 11:19:49,2022-02-03 16:46:24,2022-01-20 16:49:58,1,252.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13194,PERIC,5,2023-05-25 13:53:38,2023-06-01 09:43:56,2023-06-12 01:04:14,1,224.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13195,SEVES,5,2019-11-05 04:40:22,2019-11-20 22:43:48,2019-11-06 19:38:24,3,258.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13196,FISSA,8,2019-01-18 08:32:04,2019-02-17 14:00:27,2019-01-18 11:22:14,3,223.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13197,ANTON,7,2018-01-30 15:53:43,2018-02-14 19:33:22,2018-02-18 21:57:19,1,146.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13198,MAGAA,3,2019-02-16 05:32:00,2019-03-19 02:31:53,2019-02-18 06:45:15,1,233.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13199,PRINI,6,2014-02-21 20:23:54,2014-03-08 17:25:54,2014-03-10 09:00:37,3,184.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13200,LACOR,2,2022-01-15 16:37:49,2022-02-16 15:11:47,2022-01-16 04:11:20,1,498.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13201,BSBEV,7,2017-11-09 09:43:28,2017-11-27 08:27:18,2017-11-26 22:58:08,3,401.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13202,HUNGC,4,2018-01-26 05:16:47,2018-01-31 00:34:59,2018-01-28 23:08:39,1,115.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13203,HANAR,3,2020-11-23 06:02:46,2020-12-15 16:29:01,2020-12-02 14:52:40,1,32.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +13204,SANTG,6,2021-08-31 23:28:12,2021-10-04 03:30:16,2021-09-07 15:18:42,1,285,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13205,RATTC,3,2018-10-10 15:32:01,2018-10-30 06:35:19,2018-10-20 15:12:56,3,370.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13206,BLONP,7,2023-05-10 20:11:09,2023-06-18 03:25:07,2023-05-10 20:30:43,1,46.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13207,KOENE,5,2019-10-19 06:39:36,2019-10-24 13:36:57,2019-10-29 22:18:09,2,342.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13208,Val2 ,2,2012-08-18 18:05:12,2012-10-01 01:49:02,2012-08-21 20:12:09,2,469.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13209,SANTG,2,2021-07-25 17:58:59,2021-08-05 00:04:01,2021-07-27 12:05:51,3,259.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13210,BSBEV,1,2021-12-06 21:40:38,2021-12-08 16:55:53,2021-12-14 18:08:36,2,398.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13211,SPECD,1,2017-09-12 16:40:32,2017-09-21 19:49:20,2017-09-19 06:02:02,3,426.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13212,FRANR,1,2017-05-07 12:02:24,2017-05-20 17:20:21,2017-05-13 08:38:36,1,252,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13213,LONEP,5,2018-04-26 07:41:08,2018-06-09 07:40:56,2018-05-05 15:51:10,2,112.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13214,OLDWO,5,2017-05-21 00:50:26,2017-06-01 12:38:47,2017-05-23 04:11:24,3,437,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13215,ANTON,9,2015-01-17 09:58:05,2015-02-06 04:39:33,2015-01-17 14:33:59,2,431.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13216,LILAS,9,2015-04-05 08:54:58,2015-04-23 12:26:36,2015-04-13 22:34:19,2,363.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13217,FOLIG,3,2023-10-08 19:47:46,2023-11-19 02:15:01,2023-11-02 01:55:01,1,157.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13218,RANCH,5,2016-07-17 01:18:05,2016-08-03 22:54:56,2016-07-19 07:38:55,3,181.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13219,BERGS,6,2019-10-24 21:41:43,2019-11-26 07:14:24,2019-10-28 04:07:07,3,68.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13220,VALON,4,2023-06-11 00:48:06,2023-06-30 01:55:23,2023-06-29 13:16:13,1,24.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13221,WARTH,3,2016-10-21 14:24:20,2016-11-28 21:26:21,2016-11-14 00:55:05,2,83.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13222,PRINI,5,2021-09-03 07:59:32,2021-10-29 10:36:16,2021-09-21 04:58:15,3,292,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13223,ALFKI,6,2020-02-09 08:56:17,2020-02-10 12:00:58,2020-02-18 01:02:15,3,69.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13224,QUEDE,9,2022-11-21 19:00:35,2022-11-28 18:19:39,2022-11-22 18:11:49,3,453.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13225,LILAS,2,2023-10-20 05:26:34,2023-11-02 01:24:50,2023-10-24 12:03:02,2,200,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13226,WHITC,6,2022-06-19 14:58:56,2022-08-09 00:00:41,2022-07-09 07:52:01,3,297.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13227,PERIC,8,2023-07-27 03:20:11,2023-08-06 10:47:10,2023-08-13 06:23:41,1,38.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13228,MEREP,9,2021-12-21 07:13:39,2022-01-15 01:26:35,2021-12-23 11:03:29,1,329.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13229,ISLAT,6,2013-06-19 02:39:09,2013-07-10 02:04:00,2013-07-05 06:54:45,1,457.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13230,RANCH,2,2020-01-06 17:58:31,2020-01-11 22:23:13,2020-01-13 01:09:20,2,88.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13231,FRANS,7,2020-01-23 18:29:42,2020-02-23 23:22:03,2020-01-29 08:06:12,2,151.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13232,GOURL,8,2023-09-23 17:06:36,2023-10-08 06:38:20,2023-09-23 21:24:34,3,126,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13233,WARTH,9,2023-02-28 06:37:35,2023-04-22 08:54:20,2023-03-01 23:04:52,2,192,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13234,FAMIA,9,2015-08-08 17:18:08,2015-09-07 07:44:53,2015-08-09 06:43:11,1,297.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13235,ANATR,8,2013-01-12 13:46:10,2013-02-18 23:59:29,2013-01-18 04:39:28,3,426,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13236,BONAP,4,2023-04-28 18:14:23,2023-05-08 07:14:21,2023-05-03 02:20:55,3,158.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13237,FRANR,4,2022-02-07 00:21:35,2022-02-08 18:51:39,2022-02-19 21:08:16,2,209,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13238,THEBI,1,2023-01-17 22:17:24,2023-01-21 11:37:06,2023-01-22 00:48:10,2,367.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13239,ANATR,9,2016-02-27 09:17:30,2016-03-29 03:32:12,2016-03-11 18:18:52,1,357.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13240,PRINI,9,2014-06-13 22:43:00,2014-07-18 20:12:35,2014-06-19 23:03:21,3,72.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13241,Val2 ,9,2017-01-03 12:37:41,2017-01-09 18:32:32,2017-01-16 10:24:46,3,135.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13242,QUEDE,1,2023-04-30 10:25:12,2023-05-11 02:05:32,2023-05-10 23:32:41,3,67.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13243,WOLZA,7,2020-12-09 10:47:11,2021-01-27 12:38:16,2020-12-16 16:29:30,2,106,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13244,RANCH,4,2015-04-30 13:03:41,2015-05-17 01:51:43,2015-05-07 11:40:21,3,318.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13245,PERIC,6,2019-08-03 19:44:12,2019-08-24 11:12:35,2019-08-04 04:47:06,1,198.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13246,CENTC,5,2013-02-15 10:15:15,2013-04-02 09:29:50,2013-02-17 03:24:44,3,256.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13247,LINOD,9,2016-01-29 19:19:17,2016-03-24 10:08:54,2016-02-13 12:38:08,1,309,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13248,TRAIH,4,2021-05-14 14:11:55,2021-05-16 11:56:12,2021-05-22 07:08:40,3,228.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13249,GODOS,5,2020-04-06 04:59:14,2020-05-02 00:45:50,2020-04-21 18:34:52,3,309,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13250,CACTU,9,2018-02-20 04:36:57,2018-03-12 23:23:23,2018-02-25 12:34:34,3,391.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13251,LACOR,3,2017-09-12 15:02:46,2017-09-29 22:21:11,2017-09-23 16:29:31,1,311,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13252,SPECD,5,2020-11-29 07:24:30,2020-12-02 13:40:35,2020-12-15 17:57:13,1,46.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13253,SEVES,6,2021-10-06 04:24:57,2021-11-09 05:49:22,2021-10-16 14:26:01,1,34,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13254,CONSH,3,2014-07-28 05:19:58,2014-08-21 10:47:08,2014-08-06 06:53:57,1,46.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13255,ISLAT,4,2018-09-30 03:17:41,2018-10-09 22:55:25,2018-10-03 21:27:58,2,144,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13256,MORGK,8,2018-03-25 07:42:40,2018-05-04 18:53:26,2018-04-06 11:38:45,1,444.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13257,VINET,1,2017-05-07 15:10:28,2017-05-11 19:18:45,2017-06-01 22:38:37,1,82.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13258,ROMEY,1,2022-06-27 08:31:57,2022-07-08 23:12:40,2022-06-30 18:57:08,1,262.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13259,LACOR,6,2012-12-04 09:17:08,2012-12-12 21:35:14,2012-12-06 07:12:57,1,424,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13260,CHOPS,6,2016-10-01 05:13:06,2016-10-27 20:18:44,2016-10-02 12:52:48,3,420.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13261,DRACD,5,2016-11-30 13:17:37,2017-01-06 09:54:11,2016-12-13 06:49:24,3,275.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13262,BOLID,2,2022-04-20 04:55:42,2022-05-12 19:37:33,2022-05-14 10:36:06,1,173,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13263,DUMON,6,2017-06-16 11:17:28,2017-06-21 02:41:31,2017-06-16 15:30:46,2,166.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13264,SPECD,4,2014-12-08 07:44:25,2014-12-22 00:34:15,2014-12-28 13:20:37,2,324.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13265,FRANR,7,2022-01-03 08:13:24,2022-02-14 01:58:14,2022-01-11 04:18:07,3,351.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13266,DUMON,6,2017-07-24 10:03:21,2017-08-08 08:39:07,2017-08-06 05:20:20,1,107.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +13267,CENTC,5,2014-10-28 08:01:43,2014-10-31 06:17:14,2014-10-30 22:52:11,2,269.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13268,SAVEA,3,2019-10-23 12:05:50,2019-11-10 04:02:51,2019-10-23 22:47:45,3,11.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13269,MAISD,1,2022-08-18 18:13:32,2022-09-21 22:44:45,2022-08-20 09:11:39,1,329.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13270,WHITC,2,2013-01-12 05:16:55,2013-01-17 22:58:24,2013-01-19 18:29:28,1,112.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13271,PARIS,9,2016-10-28 08:28:01,2016-10-29 14:53:19,2016-11-16 13:37:41,2,461.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13272,TRADH,1,2018-01-12 21:04:43,2018-01-17 08:39:38,2018-01-26 16:04:24,2,384.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13273,FURIB,3,2016-10-06 16:23:57,2016-10-09 22:57:13,2016-10-18 06:23:51,2,498.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13274,BERGS,3,2020-09-24 17:11:51,2020-10-11 02:11:04,2020-10-07 04:34:44,3,531.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13275,RICSU,3,2020-10-28 02:13:49,2020-11-21 07:01:45,2020-10-28 07:36:38,2,219.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13276,MEREP,4,2017-06-06 18:14:13,2017-07-03 17:30:34,2017-06-08 03:10:23,3,359,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13277,MAGAA,8,2019-02-27 11:58:59,2019-03-12 09:54:32,2019-03-01 23:25:50,3,206,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13278,LINOD,1,2015-01-21 01:13:18,2015-02-04 07:00:59,2015-01-25 03:32:55,3,396.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13279,COMMI,1,2023-08-12 07:51:48,2023-08-12 19:48:38,2023-08-12 09:47:05,3,421,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13280,SPLIR,6,2013-07-06 09:56:00,2013-07-22 13:54:16,2013-07-22 19:43:29,3,145.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13281,GREAL,9,2016-06-21 04:41:46,2016-07-12 15:50:43,2016-07-02 17:54:29,2,113,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13282,WELLI,6,2015-06-13 19:12:15,2015-06-20 06:32:55,2015-06-14 17:13:04,2,315.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13283,BSBEV,8,2023-01-07 06:40:57,2023-01-29 21:01:32,2023-01-11 15:38:13,3,477.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13284,LINOD,8,2015-03-22 00:52:55,2015-04-07 05:25:38,2015-04-06 17:37:30,3,104.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13285,SPLIR,1,2017-08-04 02:27:00,2017-08-04 22:19:52,2017-08-18 09:40:12,3,332.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13286,GREAL,9,2014-12-17 05:42:15,2015-01-27 05:28:15,2014-12-17 23:11:29,3,374,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13287,GREAL,4,2022-02-14 00:21:45,2022-02-24 03:09:10,2022-02-26 13:16:31,1,210,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13288,TRADH,4,2017-11-23 23:42:11,2017-11-29 23:29:45,2017-12-16 19:27:56,1,457.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13289,CHOPS,9,2020-04-06 09:12:17,2020-04-23 03:28:43,2020-04-21 17:52:21,2,428.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13290,PERIC,4,2012-07-24 08:34:27,2012-08-14 07:20:56,2012-07-25 05:03:19,3,272.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13291,TRAIH,1,2020-07-02 13:17:20,2020-07-27 13:43:31,2020-07-13 05:40:47,3,263.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13292,Val2 ,8,2015-06-06 16:24:28,2015-06-19 05:20:10,2015-06-17 00:01:29,2,15.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13293,WOLZA,4,2016-02-16 22:06:27,2016-02-19 08:55:09,2016-02-23 18:32:51,3,465,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13294,THEBI,1,2023-03-24 20:18:19,2023-03-25 13:39:07,2023-03-27 10:41:10,2,48.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13295,LETSS,5,2012-08-31 18:02:19,2012-09-21 12:27:04,2012-09-12 05:17:47,3,546.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13296,TORTU,5,2022-02-07 14:41:37,2022-03-02 23:35:05,2022-02-17 02:26:44,1,424.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13297,HANAR,8,2015-03-22 04:05:32,2015-04-03 17:37:22,2015-04-02 05:35:48,3,274.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13298,FOLIG,9,2016-02-01 04:48:52,2016-02-08 01:32:33,2016-02-06 19:32:15,1,146.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13299,LILAS,4,2019-04-20 19:19:22,2019-05-15 01:51:22,2019-04-29 04:20:26,2,113,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13300,HANAR,7,2012-10-09 21:56:04,2012-10-18 20:55:46,2012-10-12 21:45:36,2,155.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13301,TRADH,9,2021-05-06 17:41:39,2021-06-19 09:14:56,2021-05-11 16:32:39,1,469.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13302,WANDK,6,2012-11-20 16:26:58,2012-12-25 09:34:27,2012-12-01 12:27:25,3,238.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13303,GALED,2,2018-10-01 20:08:55,2018-10-10 17:39:30,2018-10-02 19:44:40,1,122.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13304,DUMON,4,2021-09-26 13:59:44,2021-10-07 14:35:03,2021-09-26 19:37:40,2,255.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13305,CACTU,1,2012-11-14 00:08:01,2012-12-15 16:11:35,2012-11-17 15:52:37,2,295,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13306,OCEAN,9,2021-01-09 23:35:32,2021-01-12 08:00:19,2021-01-16 07:28:17,1,17.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13307,LILAS,7,2019-09-09 13:48:34,2019-09-12 00:57:10,2019-09-16 09:08:52,3,340,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13308,WILMK,4,2014-12-01 13:01:20,2015-01-25 16:21:53,2014-12-13 08:10:49,2,165.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13309,VICTE,2,2020-09-09 05:02:48,2020-09-25 20:35:02,2020-10-02 22:12:03,2,478,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13310,VINET,5,2022-11-22 19:51:46,2022-12-04 16:31:23,2022-12-07 19:27:53,1,428,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13311,PRINI,6,2020-05-06 00:07:26,2020-05-16 06:03:26,2020-05-22 22:55:14,2,441.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +13312,QUICK,4,2019-01-15 16:04:37,2019-01-24 23:26:29,2019-01-18 22:00:38,1,172.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13313,REGGC,2,2016-01-07 01:03:37,2016-01-20 11:10:37,2016-01-18 09:48:47,3,42.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13314,Val2 ,4,2020-12-21 19:48:32,2020-12-28 19:59:44,2020-12-22 17:04:27,1,388.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13315,BOLID,5,2019-06-16 13:29:40,2019-06-29 10:21:03,2019-06-20 15:33:30,1,492,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13316,THECR,3,2016-08-20 13:17:54,2016-08-25 16:34:23,2016-08-22 20:25:43,1,404.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13317,THECR,4,2013-05-11 15:29:02,2013-06-18 04:50:01,2013-05-31 18:38:23,1,128.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13318,FAMIA,8,2018-09-23 13:34:12,2018-09-25 23:10:19,2018-09-24 14:19:54,3,188.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13319,DRACD,8,2016-10-01 04:36:40,2016-10-04 07:36:20,2016-10-06 21:22:23,1,181.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13320,BOTTM,5,2020-03-09 05:23:36,2020-04-01 17:38:58,2020-03-23 00:06:04,3,161.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13321,MAISD,4,2014-03-18 20:19:11,2014-05-08 04:07:04,2014-03-24 21:31:00,3,315,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13322,QUEEN,2,2021-01-09 06:24:32,2021-01-10 14:31:55,2021-01-27 21:06:39,3,374.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13323,LAMAI,4,2019-10-23 12:39:39,2019-11-12 16:44:52,2019-10-26 09:16:29,1,453,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13324,VAFFE,7,2022-01-27 21:58:24,2022-02-27 08:00:13,2022-02-22 06:26:22,3,233.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13325,MAISD,5,2012-08-27 00:34:51,2012-08-31 15:17:45,2012-08-31 01:44:50,3,196,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13326,GOURL,9,2023-01-23 15:11:45,2023-02-01 07:39:16,2023-01-29 20:11:11,3,424.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13327,KOENE,4,2014-05-23 15:18:17,2014-05-26 00:34:43,2014-05-27 22:08:51,3,120.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13328,LINOD,7,2017-12-09 14:16:22,2017-12-11 23:01:03,2017-12-09 18:33:55,3,446.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13329,TORTU,3,2015-03-05 20:46:50,2015-03-15 07:56:09,2015-03-12 13:16:13,1,447,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13330,GALED,9,2013-02-04 16:37:56,2013-02-26 06:55:41,2013-02-15 11:29:53,2,261.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13331,PRINI,7,2017-09-28 22:04:52,2017-10-06 22:44:15,2017-09-29 06:38:27,1,179,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13332,RATTC,9,2014-02-11 19:22:11,2014-02-24 19:56:32,2014-02-12 02:13:13,1,75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13333,BLAUS,5,2022-09-13 18:08:09,2022-09-22 22:22:09,2022-09-13 22:52:07,3,219.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13334,WANDK,8,2015-11-20 04:44:15,2015-12-08 23:48:53,2015-12-09 02:36:16,2,345.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13335,ANTON,8,2023-03-18 01:46:16,2023-03-23 06:32:06,2023-03-20 19:27:02,3,511,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13336,SIMOB,1,2013-08-25 23:15:26,2013-09-15 09:45:56,2013-08-29 09:54:02,1,414,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13337,SEVES,2,2015-07-31 14:29:46,2015-08-06 20:06:34,2015-08-03 13:27:03,1,433,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13338,RANCH,4,2018-05-03 00:48:39,2018-05-16 09:42:11,2018-05-10 07:09:42,1,68.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13339,WILMK,7,2022-04-05 09:32:09,2022-05-16 08:48:42,2022-04-10 15:06:29,1,90.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13340,Val2 ,7,2023-03-08 19:55:44,2023-04-29 22:26:10,2023-03-12 00:51:01,1,499,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13341,LEHMS,6,2023-02-12 21:33:02,2023-03-04 15:45:39,2023-02-20 19:43:12,3,344.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13342,THECR,7,2021-07-18 14:15:55,2021-08-08 21:19:56,2021-07-19 22:43:04,3,140.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13343,SIMOB,1,2017-12-10 02:17:35,2017-12-28 10:54:56,2017-12-21 08:25:43,1,413.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13344,CONSH,9,2017-09-07 13:59:54,2017-09-23 21:14:11,2017-09-08 02:47:42,2,139,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13345,ROMEY,6,2023-02-12 12:07:28,2023-02-16 05:59:27,2023-02-13 07:29:43,2,51,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13346,FRANR,8,2019-10-17 00:49:21,2019-10-23 04:56:31,2019-10-23 02:59:33,3,462.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13347,VALON,5,2016-01-30 17:05:46,2016-02-11 10:56:25,2016-02-19 15:03:44,3,465.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13348,THEBI,5,2017-10-12 16:56:34,2017-11-02 00:17:39,2017-11-08 03:12:30,3,175.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13349,TOMSP,2,2013-09-20 13:42:55,2013-10-23 14:41:10,2013-09-26 01:00:04,1,163.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13350,RANCH,5,2013-04-12 10:28:34,2013-04-30 19:21:54,2013-04-18 03:39:00,2,89,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13351,TORTU,9,2023-07-12 04:10:03,2023-07-14 15:30:27,2023-07-13 18:39:26,1,218.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13352,DRACD,2,2014-02-19 23:53:23,2014-03-09 07:26:24,2014-02-20 01:18:48,1,94.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13353,WELLI,1,2013-04-15 09:53:18,2013-04-28 01:57:48,2013-04-22 22:45:58,1,183,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13354,Val2 ,8,2021-10-09 19:52:47,2021-10-24 01:48:40,2021-10-13 20:11:00,1,211.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13355,TRADH,1,2014-06-18 03:09:26,2014-07-13 23:12:44,2014-06-29 05:30:47,2,208.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13356,SANTG,1,2022-08-01 11:12:55,2022-08-06 03:18:32,2022-08-19 03:18:50,3,20.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13357,HUNGC,9,2021-11-28 13:19:54,2021-12-16 19:03:28,2021-11-28 16:07:48,1,323.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13358,THEBI,5,2015-10-17 04:24:46,2015-10-17 14:34:58,2015-10-18 17:50:32,3,284.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13359,GROSR,3,2022-10-18 02:18:49,2022-11-17 23:24:11,2022-11-02 12:48:51,2,293,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13360,QUEDE,2,2017-04-09 05:22:14,2017-05-13 04:39:08,2017-04-10 00:03:58,2,204,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13361,KOENE,2,2022-12-20 18:28:44,2023-01-18 07:06:19,2022-12-22 19:27:13,1,233.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13362,VALON,6,2016-11-12 02:59:54,2016-11-27 01:14:59,2016-11-28 09:17:39,1,213.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13363,GREAL,1,2012-09-01 10:41:00,2012-09-02 04:21:13,2012-09-03 06:22:20,2,284.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13364,WELLI,6,2016-03-13 17:00:06,2016-03-16 02:33:54,2016-03-21 23:16:22,3,336.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13365,LETSS,6,2015-07-09 03:58:55,2015-07-13 03:42:24,2015-07-23 02:44:12,1,382.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13366,CENTC,9,2023-06-19 01:13:03,2023-06-23 03:53:38,2023-07-15 16:15:08,2,247.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13367,TRADH,5,2021-07-27 10:52:57,2021-08-13 02:41:37,2021-07-30 13:45:07,1,344.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13368,CHOPS,7,2017-12-21 18:37:17,2018-01-07 18:19:01,2017-12-30 14:15:17,2,186,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13369,ANATR,8,2023-05-28 03:45:04,2023-07-01 19:52:44,2023-05-28 05:34:07,1,75.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13370,MAISD,9,2020-09-25 04:17:40,2020-10-09 19:53:36,2020-10-02 21:14:17,3,515,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13371,VAFFE,8,2020-04-07 06:40:43,2020-04-13 05:15:03,2020-04-19 08:43:15,1,362,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13372,ISLAT,9,2022-04-01 14:02:15,2022-04-17 01:50:13,2022-04-07 04:24:16,2,574.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13373,GROSR,9,2017-05-21 23:41:07,2017-05-26 11:53:01,2017-05-22 22:44:21,2,61.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13374,CONSH,2,2021-12-19 19:11:48,2022-01-30 10:02:19,2022-01-03 19:29:20,1,16,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13375,VAFFE,2,2013-10-14 10:44:58,2013-10-22 05:07:58,2013-10-15 07:59:05,1,241.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13376,REGGC,9,2012-10-13 19:31:24,2012-10-31 18:40:49,2012-11-01 14:47:08,3,371.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13377,RICAR,2,2021-01-02 04:11:52,2021-01-16 15:43:42,2021-01-02 18:28:27,2,448.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13378,MAGAA,9,2014-05-02 09:15:28,2014-05-04 12:56:18,2014-05-07 21:12:26,1,447.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13379,LEHMS,2,2019-10-16 10:24:24,2019-10-30 19:53:43,2019-11-02 06:52:25,1,90,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13380,SAVEA,2,2021-03-19 03:19:54,2021-05-05 09:01:28,2021-03-19 21:39:00,1,43,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +13381,BLAUS,8,2018-12-31 08:02:35,2019-01-31 15:37:38,2018-12-31 16:33:14,1,30.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13382,DUMON,9,2019-12-22 15:29:20,2019-12-25 07:22:48,2019-12-28 01:09:22,2,156,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13383,QUICK,9,2021-10-01 02:06:27,2021-11-14 02:49:47,2021-10-11 06:41:35,2,334.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13384,BONAP,5,2017-02-05 21:25:02,2017-02-23 16:21:55,2017-02-21 12:57:13,1,445.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13385,HUNGC,8,2023-09-01 18:11:33,2023-09-16 05:36:24,2023-09-13 12:27:40,1,119.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13386,WHITC,1,2020-03-27 16:43:57,2020-05-12 20:08:10,2020-03-30 10:58:02,3,330,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13387,DUMON,3,2015-05-16 04:42:09,2015-06-19 22:37:58,2015-06-14 00:15:56,1,166.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13388,LINOD,9,2014-11-28 08:25:47,2014-12-31 10:34:21,2014-11-29 10:29:28,3,196.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13389,KOENE,4,2021-02-10 22:07:16,2021-03-08 02:53:16,2021-02-11 03:22:33,2,168,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13390,RATTC,5,2021-12-29 08:38:28,2022-01-16 16:02:54,2021-12-30 10:37:24,1,43.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13391,SIMOB,5,2021-10-01 22:21:33,2021-10-27 23:51:47,2021-10-03 23:53:11,3,80.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13392,MORGK,2,2017-05-25 01:00:13,2017-06-08 05:51:52,2017-06-03 08:56:12,3,534.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13393,BONAP,5,2015-06-05 06:49:31,2015-06-28 13:13:10,2015-06-14 04:18:35,3,467.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13394,CENTC,6,2019-01-06 00:34:24,2019-01-22 22:36:11,2019-01-20 17:45:16,2,186,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13395,LAMAI,1,2018-09-09 23:39:12,2018-10-02 11:56:22,2018-09-10 07:42:02,1,458.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13396,KOENE,9,2018-06-27 00:06:01,2018-07-30 06:17:04,2018-07-11 06:53:05,1,174.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13397,FURIB,6,2020-01-07 13:31:52,2020-02-05 11:30:11,2020-01-07 19:13:16,3,93.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13398,MAGAA,8,2023-03-17 19:25:09,2023-04-06 23:38:09,2023-03-19 16:56:21,2,327.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13399,FRANR,7,2018-12-20 15:43:48,2019-01-25 22:35:59,2019-01-04 02:06:49,2,453.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13400,SEVES,1,2015-08-09 17:04:48,2015-08-18 20:47:20,2015-08-22 11:51:27,1,511,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13401,BOTTM,9,2023-05-01 03:54:54,2023-06-11 15:03:39,2023-05-09 12:33:37,1,258.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13402,ANTON,3,2020-12-15 20:38:17,2020-12-24 02:41:08,2021-01-01 20:28:43,1,60.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13403,REGGC,5,2021-02-09 05:54:47,2021-02-22 13:19:37,2021-02-19 07:06:14,3,473.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13404,SEVES,7,2015-04-27 13:21:12,2015-06-01 12:00:40,2015-04-29 01:09:51,3,392.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13405,PICCO,3,2014-08-30 05:11:35,2014-09-08 03:38:23,2014-09-23 09:05:20,1,505.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13406,HILAA,1,2021-01-31 09:44:50,2021-02-10 19:09:40,2021-02-04 18:17:45,3,382.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13407,VICTE,5,2017-12-17 14:45:52,2018-01-13 20:56:16,2017-12-26 15:32:58,3,521.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13408,VINET,5,2014-12-26 20:26:55,2015-01-18 22:11:55,2015-01-07 00:09:25,1,389.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13409,VICTE,1,2021-01-23 20:00:24,2021-02-04 07:14:21,2021-01-25 03:24:32,1,324.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13410,HUNGO,2,2019-05-03 06:18:36,2019-06-03 00:41:03,2019-05-05 21:42:32,1,245,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13411,WHITC,2,2012-08-22 23:15:41,2012-09-05 21:20:40,2012-08-29 04:40:56,3,303.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13412,QUICK,5,2015-04-22 13:26:20,2015-04-25 20:25:10,2015-04-28 10:59:31,1,459.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13413,TRAIH,5,2015-05-18 02:58:46,2015-07-04 08:16:18,2015-05-26 22:39:35,2,165.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13414,DUMON,2,2019-07-17 02:43:43,2019-08-20 13:10:47,2019-07-22 05:49:53,3,343.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13415,DUMON,1,2023-07-29 12:13:47,2023-07-29 19:04:03,2023-08-08 06:21:03,2,135,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13416,BLAUS,3,2022-01-03 01:42:38,2022-01-20 02:41:15,2022-01-04 14:23:19,2,399.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13417,RANCH,3,2019-04-28 07:45:27,2019-04-29 00:11:48,2019-05-09 17:57:50,1,312.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13418,BOTTM,5,2015-11-23 08:49:28,2015-12-16 03:47:18,2015-11-24 09:44:21,3,36.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13419,HUNGC,9,2014-05-11 21:30:15,2014-05-21 11:44:20,2014-05-26 09:46:40,2,424,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13420,VALON,3,2017-01-21 19:39:33,2017-02-04 11:20:39,2017-01-25 19:39:45,1,395.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13421,FRANS,5,2017-05-29 13:27:49,2017-06-12 09:42:36,2017-06-09 16:48:28,1,130.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +13422,THEBI,4,2023-07-16 19:29:58,2023-08-02 11:17:40,2023-07-17 04:25:31,1,226.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13423,HUNGC,5,2013-05-22 12:27:43,2013-06-03 18:19:22,2013-05-25 20:40:47,3,514.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13424,GODOS,6,2021-03-27 21:27:05,2021-04-14 22:26:59,2021-03-30 21:37:06,2,218.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13425,RATTC,6,2023-02-08 10:02:05,2023-02-09 22:34:53,2023-02-10 05:11:07,1,173.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13426,HILAA,7,2020-08-01 17:23:43,2020-08-10 07:46:18,2020-08-11 02:45:05,1,82.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13427,TORTU,3,2012-09-07 08:28:32,2012-10-02 07:50:50,2012-09-26 07:03:20,3,293.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13428,TOMSP,3,2017-07-25 08:13:48,2017-08-13 08:54:27,2017-07-30 01:42:12,1,254.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13429,WANDK,9,2014-06-17 12:14:13,2014-06-17 21:35:52,2014-07-04 09:00:57,2,132.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13430,FRANS,4,2014-06-26 23:55:50,2014-07-31 13:09:59,2014-06-27 01:23:14,2,471,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13431,MAGAA,4,2021-05-19 09:19:27,2021-05-20 12:53:47,2021-05-23 00:18:27,1,312.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13432,FISSA,9,2021-07-27 11:04:59,2021-08-02 14:47:49,2021-08-08 15:32:52,2,214.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13433,RICSU,3,2012-11-15 03:16:22,2012-12-14 13:52:19,2012-11-29 19:25:02,2,117.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13434,QUEDE,1,2013-07-17 17:40:24,2013-09-05 23:32:31,2013-08-06 10:54:05,1,159,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13435,TRADH,6,2017-02-18 20:56:43,2017-02-28 09:08:39,2017-02-27 01:14:23,1,204,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13436,FRANK,1,2021-08-31 23:27:49,2021-10-05 06:20:32,2021-09-01 21:42:35,2,356,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13437,TRAIH,8,2020-05-31 14:23:39,2020-06-04 22:02:03,2020-06-01 11:42:27,3,237.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13438,RICSU,7,2018-01-25 21:15:52,2018-03-08 20:49:41,2018-02-03 22:29:54,2,488.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13439,TORTU,6,2018-03-30 02:17:33,2018-04-23 23:07:52,2018-04-08 01:02:17,1,330.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13440,GREAL,6,2015-08-01 19:41:51,2015-09-16 13:56:41,2015-08-03 15:29:16,1,425.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13441,WHITC,8,2022-04-09 05:56:00,2022-04-15 09:16:48,2022-04-09 15:12:57,3,371,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13442,BSBEV,3,2016-12-16 19:26:39,2017-01-23 18:53:34,2017-01-09 11:13:35,3,471.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13443,WHITC,7,2022-03-09 00:55:44,2022-04-23 14:45:07,2022-03-28 16:06:31,1,335,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13444,SEVES,5,2015-12-12 09:04:43,2015-12-14 20:05:04,2015-12-14 10:00:35,1,38.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13445,CONSH,8,2022-01-24 17:29:12,2022-02-03 10:07:12,2022-01-26 15:21:42,3,488.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13446,SEVES,4,2019-02-28 19:34:42,2019-03-25 09:39:09,2019-03-22 13:41:16,3,157.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13447,VAFFE,1,2015-06-04 06:31:50,2015-06-04 20:04:13,2015-06-08 19:12:58,2,186.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13448,PARIS,3,2013-08-19 15:21:50,2013-09-12 03:20:43,2013-08-25 20:23:51,3,190,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13449,THECR,8,2018-11-17 03:10:24,2018-12-20 13:27:39,2018-11-30 16:06:00,2,495.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13450,LILAS,4,2021-08-27 04:17:08,2021-08-28 10:30:58,2021-09-05 11:13:06,2,550.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13451,WILMK,9,2017-12-03 14:47:26,2017-12-21 11:11:08,2017-12-05 10:38:46,3,494.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13452,VALON,5,2021-04-03 14:43:06,2021-04-30 10:30:04,2021-04-16 12:34:41,2,415.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13453,LINOD,5,2022-08-13 06:34:48,2022-09-09 17:38:22,2022-08-14 01:07:29,3,39.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13454,LILAS,4,2015-07-15 07:29:13,2015-08-14 23:27:43,2015-07-30 06:08:14,3,286.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13455,CONSH,8,2015-11-02 14:16:15,2015-12-07 20:15:13,2015-11-07 10:16:16,1,383.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13456,WOLZA,5,2023-08-02 21:16:26,2023-08-15 12:20:10,2023-08-05 09:33:02,1,77.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13457,MORGK,9,2016-08-22 23:44:10,2016-09-10 03:17:44,2016-09-11 22:19:09,2,174.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13458,THEBI,4,2014-03-21 09:36:31,2014-04-13 19:09:35,2014-03-31 09:07:17,1,484.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13459,CHOPS,7,2017-07-27 22:10:36,2017-08-13 07:27:36,2017-08-05 21:19:24,1,329.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13460,RANCH,5,2014-02-28 14:46:27,2014-04-06 15:51:51,2014-02-28 21:23:06,3,587,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13461,MORGK,8,2013-09-21 13:34:25,2013-09-30 09:11:43,2013-09-28 16:18:23,3,479,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13462,SEVES,3,2023-03-12 04:16:02,2023-04-08 09:29:58,2023-03-15 21:29:00,3,88.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13463,PICCO,3,2014-12-15 01:23:34,2015-01-07 00:28:07,2014-12-20 11:47:20,3,458,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13464,WELLI,9,2014-10-24 15:46:00,2014-10-27 09:50:09,2014-11-01 09:09:08,2,214.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13465,MAISD,7,2021-12-31 07:04:23,2022-01-23 21:56:57,2022-01-20 00:08:52,3,372.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13466,CONSH,3,2020-03-22 07:54:49,2020-04-06 09:12:19,2020-03-27 16:19:09,2,568.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13467,PRINI,5,2020-12-27 06:42:24,2020-12-30 01:00:32,2020-12-28 05:49:12,1,202,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13468,HILAA,4,2023-03-22 23:17:13,2023-04-05 16:16:58,2023-03-26 03:23:10,1,92,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13469,WILMK,8,2015-07-02 06:00:24,2015-07-23 21:03:27,2015-07-04 15:05:54,3,229.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13470,LILAS,1,2019-11-01 13:14:37,2019-11-14 12:31:50,2019-11-23 09:45:52,2,34.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13471,THEBI,3,2023-03-10 13:27:44,2023-03-18 08:08:17,2023-03-16 20:18:26,2,185,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13472,ANTON,3,2022-03-17 11:51:18,2022-03-28 09:28:50,2022-03-25 16:20:27,1,203.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13473,WILMK,7,2022-06-20 09:06:01,2022-07-10 09:17:56,2022-06-26 12:38:25,3,448,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13474,LONEP,2,2015-03-24 22:06:13,2015-04-18 04:17:03,2015-03-30 11:18:29,3,24.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13475,PERIC,5,2019-04-10 18:57:39,2019-04-15 00:49:04,2019-04-11 06:42:28,1,137.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13476,FISSA,1,2014-07-17 20:35:50,2014-08-18 18:41:24,2014-07-20 03:32:36,2,346,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13477,BONAP,1,2014-05-04 03:17:52,2014-05-29 10:09:02,2014-05-04 12:16:26,2,342.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13478,FURIB,8,2021-03-02 02:13:54,2021-04-12 05:50:38,2021-03-24 15:08:39,3,188.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13479,VAFFE,6,2013-08-20 06:12:51,2013-09-26 10:12:26,2013-08-23 03:21:51,1,517,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13480,ALFKI,5,2020-02-08 21:14:01,2020-02-17 21:53:56,2020-02-15 15:23:27,1,178.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13481,WILMK,6,2015-02-17 02:41:48,2015-02-22 17:24:41,2015-03-04 18:40:37,1,21.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13482,THECR,7,2018-08-16 11:20:07,2018-08-18 06:23:49,2018-09-03 05:06:15,1,496.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13483,MAGAA,3,2017-06-17 01:52:05,2017-06-27 06:08:32,2017-06-27 12:14:30,2,115.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13484,FISSA,7,2019-11-16 11:18:25,2019-12-29 01:53:46,2019-11-22 09:49:17,2,311.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13485,LILAS,3,2017-07-05 10:39:23,2017-07-15 04:14:19,2017-07-05 22:02:31,3,369.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13486,WELLI,6,2021-08-25 04:25:18,2021-09-17 23:36:19,2021-08-25 12:22:17,3,341,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13487,SPECD,6,2023-05-25 19:38:25,2023-06-14 05:36:02,2023-06-15 06:13:15,3,124.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13488,LEHMS,8,2021-02-19 07:38:54,2021-03-05 08:58:09,2021-03-03 06:26:38,2,18.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13489,THEBI,2,2016-02-02 17:34:09,2016-02-20 19:13:22,2016-02-04 13:16:59,2,436.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13490,LAUGB,6,2021-07-12 12:52:59,2021-07-29 10:00:23,2021-07-22 10:13:53,1,11.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +13491,ANTON,6,2020-03-15 06:54:12,2020-03-28 03:51:55,2020-03-23 12:47:01,2,479.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13492,LAZYK,3,2013-11-04 09:55:49,2013-11-13 15:51:49,2013-11-07 00:48:53,3,273.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13493,BONAP,9,2014-08-25 20:12:10,2014-09-20 20:42:18,2014-08-27 07:58:03,3,451.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13494,EASTC,2,2017-02-20 04:24:51,2017-03-21 23:11:19,2017-03-02 20:46:59,3,50,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13495,NORTS,7,2012-12-25 15:42:09,2013-01-26 05:22:17,2013-01-02 17:16:49,3,113.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13496,ISLAT,8,2021-10-02 06:37:30,2021-11-25 13:47:56,2021-10-09 06:42:15,2,437.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13497,TOMSP,8,2022-05-13 04:35:09,2022-06-11 04:09:48,2022-05-13 04:56:01,1,396,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13498,FRANS,4,2020-09-17 19:16:35,2020-09-28 07:12:36,2020-09-20 09:32:13,1,282.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13499,ANATR,4,2018-08-30 13:51:55,2018-10-16 16:15:18,2018-09-03 14:26:29,3,221.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13500,ERNSH,2,2020-07-08 14:06:39,2020-07-20 09:06:16,2020-07-22 17:12:44,1,141.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13501,GOURL,9,2016-04-21 14:33:07,2016-05-11 09:42:09,2016-04-21 17:14:30,3,114.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13502,LEHMS,7,2020-07-16 23:26:01,2020-08-03 07:09:00,2020-07-17 23:12:03,2,517.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13503,QUICK,8,2022-06-26 23:19:56,2022-07-05 06:36:48,2022-07-04 08:28:55,3,212.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13504,OLDWO,4,2015-09-01 01:38:54,2015-09-29 11:13:22,2015-09-14 07:41:51,1,49,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13505,SAVEA,7,2012-07-17 01:31:18,2012-08-02 23:59:54,2012-07-22 23:45:45,2,445.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13506,ROMEY,4,2018-08-14 11:24:50,2018-09-21 01:25:45,2018-08-21 04:02:11,1,20.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +13507,FOLKO,1,2023-08-20 01:44:29,2023-10-01 06:49:15,2023-08-21 09:18:13,3,19.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13508,HANAR,9,2018-12-27 03:13:43,2018-12-31 01:12:46,2019-01-03 18:44:19,3,268.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13509,OTTIK,8,2015-08-22 14:11:51,2015-09-03 16:30:59,2015-08-25 05:16:32,3,392.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13510,LETSS,9,2013-11-13 05:10:30,2013-11-14 15:04:21,2013-11-15 19:28:49,1,48.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13511,EASTC,8,2016-05-15 06:56:22,2016-06-19 20:55:18,2016-05-15 20:35:56,1,51,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13512,OTTIK,1,2022-04-28 16:56:10,2022-05-30 19:11:24,2022-05-01 00:26:59,2,542.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13513,HANAR,8,2016-02-13 22:43:01,2016-02-28 05:10:37,2016-02-15 12:12:15,3,196.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13514,SPLIR,7,2017-08-15 00:32:02,2017-08-21 01:38:15,2017-08-18 13:19:57,2,188,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13515,KOENE,7,2017-09-27 02:59:22,2017-10-14 12:58:42,2017-09-28 02:38:18,3,201.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13516,BLAUS,7,2016-03-04 16:47:10,2016-03-29 00:12:08,2016-03-04 19:02:29,1,428.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13517,SAVEA,3,2016-11-03 14:12:04,2016-11-03 22:13:41,2016-11-06 01:17:44,3,486.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13518,SEVES,7,2020-07-20 15:00:34,2020-07-30 21:53:16,2020-07-25 16:10:26,1,454.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13519,LETSS,5,2018-12-08 18:38:28,2018-12-31 08:10:05,2018-12-16 13:15:54,2,501.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13520,MAISD,1,2021-10-07 14:57:21,2021-10-11 06:14:20,2021-10-08 21:04:32,2,208,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13521,FOLIG,7,2015-11-05 03:30:00,2015-12-05 12:35:59,2015-11-06 16:26:12,3,222.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13522,FISSA,1,2013-08-14 06:39:48,2013-09-02 15:48:45,2013-08-18 03:45:24,3,369.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13523,HUNGC,7,2018-08-26 19:00:21,2018-10-04 09:57:55,2018-08-29 15:58:59,3,157.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13524,HUNGC,1,2013-02-14 07:07:05,2013-02-26 17:04:18,2013-03-03 03:31:00,3,404.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13525,ANATR,1,2015-07-26 06:20:00,2015-08-12 08:27:48,2015-08-03 03:38:39,2,268.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13526,MAGAA,7,2016-12-10 03:36:13,2017-01-18 18:20:41,2016-12-14 14:59:48,1,152,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13527,PRINI,6,2018-10-28 19:46:32,2018-11-17 23:54:07,2018-11-07 14:25:36,2,12,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13528,LAMAI,2,2013-10-30 15:04:04,2013-12-25 07:15:13,2013-11-05 17:53:45,3,444.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13529,BSBEV,2,2013-02-06 17:54:36,2013-03-03 13:09:44,2013-02-07 16:33:11,2,301.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13530,ERNSH,2,2014-05-30 20:10:06,2014-06-09 17:12:25,2014-06-09 01:28:58,2,382,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13531,FRANS,7,2021-05-28 20:38:36,2021-06-06 01:11:17,2021-06-03 16:53:01,2,93.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13532,MEREP,6,2019-06-16 11:34:34,2019-07-06 23:28:52,2019-07-07 17:57:54,2,295.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13533,HILAA,2,2012-12-06 17:32:29,2012-12-28 18:47:35,2012-12-14 15:17:57,1,86.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13534,SANTG,6,2017-03-31 19:21:40,2017-05-12 03:57:20,2017-04-07 02:04:08,2,271,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13535,CENTC,3,2014-03-24 17:13:13,2014-03-27 05:44:17,2014-03-29 07:48:30,1,423.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13536,PERIC,1,2015-09-22 17:54:54,2015-10-18 22:00:03,2015-09-23 03:27:14,1,425.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +13537,SPECD,7,2017-07-03 01:23:27,2017-07-16 21:51:59,2017-07-05 04:17:18,2,206.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13538,PERIC,5,2012-07-19 13:35:20,2012-08-10 12:20:48,2012-07-20 23:45:07,1,192.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13539,QUEEN,9,2016-04-28 16:06:48,2016-05-10 06:35:56,2016-05-17 18:08:46,3,173.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13540,SANTG,6,2012-09-04 16:30:04,2012-10-15 03:07:32,2012-09-06 08:34:20,3,472.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13541,FOLIG,4,2020-04-17 08:45:42,2020-04-25 07:15:58,2020-04-21 17:17:01,2,401,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13542,FAMIA,4,2015-12-23 07:38:12,2016-01-13 22:35:05,2015-12-23 10:57:42,2,283.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13543,Val2 ,9,2023-05-25 07:28:05,2023-06-10 05:38:28,2023-05-30 01:40:12,1,128.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13544,LAMAI,5,2020-07-11 13:05:41,2020-08-02 11:27:20,2020-07-19 00:28:52,1,129.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13545,LAUGB,8,2018-01-14 05:05:04,2018-02-04 13:15:41,2018-01-14 12:30:51,1,160.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13546,AROUT,4,2019-11-05 11:43:25,2019-11-29 06:54:24,2019-11-15 15:06:34,3,400.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13547,QUICK,6,2014-03-12 23:19:22,2014-04-04 06:56:17,2014-03-28 02:37:40,1,368.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13548,QUEEN,4,2017-01-17 03:07:29,2017-02-06 04:56:41,2017-01-17 05:20:43,3,48.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13549,TOMSP,7,2015-11-14 05:46:01,2015-12-10 10:58:07,2015-12-08 09:13:08,3,341.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13550,BLONP,5,2021-03-02 17:23:17,2021-03-07 01:58:48,2021-03-15 16:00:45,3,261.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13551,FRANR,6,2022-03-15 23:13:57,2022-03-19 02:28:55,2022-03-31 03:39:55,3,479.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13552,CHOPS,5,2018-10-02 09:31:38,2018-11-13 21:21:46,2018-10-03 05:47:15,1,191.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13553,OTTIK,9,2022-08-19 17:25:55,2022-09-02 22:13:53,2022-08-23 01:38:28,3,304.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13554,SPECD,5,2023-04-25 00:12:49,2023-05-04 12:38:55,2023-04-30 07:09:02,1,141.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13555,LAUGB,1,2020-11-12 08:32:18,2020-12-08 02:44:31,2020-11-14 05:13:59,1,381.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13556,WANDK,4,2014-12-05 08:30:47,2014-12-28 23:15:29,2014-12-06 11:46:52,3,398.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13557,GOURL,9,2020-06-11 17:19:58,2020-06-14 16:10:47,2020-06-16 09:53:21,3,430.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13558,BSBEV,9,2019-12-30 11:36:14,2020-01-21 14:14:19,2020-01-10 16:42:56,2,206.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13559,RICSU,5,2023-08-17 10:02:19,2023-08-31 08:22:46,2023-09-04 18:28:00,2,446.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13560,KOENE,1,2014-05-15 17:11:59,2014-06-06 06:46:06,2014-05-23 17:26:28,3,177.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13561,PERIC,2,2022-12-08 23:40:12,2023-01-02 14:39:52,2022-12-12 06:51:44,3,171.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13562,FRANR,2,2023-03-01 15:15:12,2023-03-06 02:40:11,2023-03-13 02:04:45,2,401.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13563,OLDWO,1,2015-10-10 10:57:31,2015-11-19 18:37:27,2015-10-22 16:28:08,1,81.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13564,FOLKO,4,2023-04-18 22:48:01,2023-05-10 08:10:13,2023-04-24 16:42:49,3,131.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13565,HANAR,5,2021-06-22 09:05:46,2021-07-04 17:12:32,2021-07-03 15:30:00,1,145,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13566,TOMSP,7,2022-02-01 01:19:32,2022-02-19 23:25:45,2022-02-06 18:45:03,1,491.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13567,KOENE,4,2022-03-23 23:58:47,2022-04-06 20:49:03,2022-04-08 17:59:07,1,149,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13568,LONEP,6,2017-09-01 06:53:09,2017-09-03 08:47:49,2017-09-08 09:01:21,3,183,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13569,SANTG,1,2019-10-10 19:07:37,2019-10-19 23:16:05,2019-11-01 18:36:58,1,10.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13570,LAMAI,5,2020-03-29 18:31:53,2020-04-25 10:25:48,2020-04-02 02:50:57,3,268.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13571,MAISD,2,2021-11-06 13:29:39,2021-12-16 20:45:05,2021-11-09 05:22:40,2,277,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13572,ROMEY,9,2018-11-08 03:26:42,2018-11-10 16:24:14,2018-11-16 08:53:27,2,113,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13573,MEREP,9,2017-05-16 06:01:31,2017-06-04 05:14:11,2017-05-23 03:15:12,2,82,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13574,GOURL,2,2013-11-20 12:19:39,2013-11-26 13:02:11,2013-11-29 05:32:12,1,76.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13575,SIMOB,7,2015-10-10 07:18:47,2015-10-19 07:27:38,2015-10-11 04:34:16,2,383.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13576,GROSR,1,2021-02-11 20:43:52,2021-03-04 18:08:30,2021-02-26 09:54:02,1,238.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13577,RICAR,4,2017-05-16 00:25:19,2017-06-03 02:01:39,2017-05-18 21:01:10,1,370,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13578,SEVES,9,2012-10-14 07:38:06,2012-11-06 00:09:47,2012-10-15 06:43:46,1,281.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13579,HUNGO,8,2017-07-25 18:13:52,2017-09-06 13:58:09,2017-07-28 05:06:21,3,233.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13580,BSBEV,7,2015-07-24 18:48:00,2015-08-24 11:43:49,2015-07-26 01:31:00,3,183.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13581,VALON,7,2017-01-07 07:24:34,2017-01-14 22:59:30,2017-01-07 21:38:53,1,86.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13582,GREAL,3,2022-04-09 23:54:53,2022-04-10 13:12:25,2022-04-16 19:40:20,2,477,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13583,TRADH,5,2019-03-01 00:02:43,2019-04-01 11:47:11,2019-03-01 02:56:08,2,367,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13584,LINOD,5,2019-06-13 21:17:52,2019-07-08 18:01:19,2019-06-18 07:00:32,1,50.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13585,ROMEY,7,2019-12-02 21:50:11,2019-12-15 23:49:30,2019-12-30 06:21:57,1,260.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13586,BLONP,6,2020-11-13 06:53:17,2020-11-28 09:25:24,2020-11-13 22:10:04,3,128.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13587,SAVEA,2,2016-02-29 22:10:21,2016-03-02 18:57:01,2016-03-03 01:26:35,3,181.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13588,THECR,8,2023-08-06 00:25:14,2023-08-16 20:20:13,2023-08-07 04:53:37,1,459.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13589,CONSH,6,2012-12-03 10:11:31,2012-12-14 10:38:13,2012-12-29 14:34:52,1,21.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13590,OLDWO,1,2018-10-11 21:14:29,2018-10-30 01:22:29,2018-10-16 15:23:22,3,176.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13591,PERIC,5,2019-01-19 09:12:42,2019-02-16 11:55:34,2019-01-27 10:54:21,1,346.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13592,LEHMS,5,2019-04-21 11:56:31,2019-04-30 05:03:59,2019-04-23 20:18:39,3,183.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13593,ANATR,6,2017-11-16 06:24:12,2017-12-01 22:42:14,2017-11-18 05:34:43,1,187,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13594,PRINI,3,2017-01-16 10:25:17,2017-01-27 05:30:34,2017-02-02 22:29:04,2,354.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13595,GROSR,4,2023-10-13 19:28:49,2023-10-15 20:21:56,2023-10-21 01:17:06,3,189.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13596,WILMK,2,2020-01-25 20:48:03,2020-02-09 22:50:07,2020-02-01 11:01:43,3,307.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13597,WHITC,6,2015-08-13 04:04:30,2015-08-23 16:48:44,2015-08-18 00:06:54,3,296.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13598,OLDWO,7,2016-06-10 16:11:33,2016-07-06 14:54:21,2016-06-12 15:25:38,2,228.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13599,QUICK,9,2013-08-20 18:07:24,2013-09-03 22:50:40,2013-09-11 12:37:13,2,154,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13600,LONEP,2,2018-02-07 12:20:21,2018-03-17 01:56:43,2018-02-24 02:48:16,1,352,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13601,NORTS,6,2021-05-15 23:04:17,2021-05-22 03:46:58,2021-05-16 00:28:17,1,333,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13602,OTTIK,7,2017-01-16 16:25:18,2017-02-22 01:06:40,2017-01-31 05:21:24,2,262,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13603,FRANR,1,2015-05-23 04:11:19,2015-06-14 01:11:28,2015-05-27 16:20:36,1,471.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13604,ERNSH,9,2016-05-16 02:49:17,2016-06-12 23:45:46,2016-05-24 13:22:00,1,389,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13605,HUNGC,6,2016-04-20 03:22:24,2016-04-22 15:25:36,2016-05-07 00:14:17,2,59.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13606,PERIC,2,2019-07-23 05:45:29,2019-08-21 07:14:01,2019-08-03 19:40:31,3,286.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13607,LAUGB,3,2012-09-25 13:21:15,2012-10-15 06:49:20,2012-09-27 08:35:46,2,161.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13608,MAGAA,9,2012-09-25 09:33:52,2012-10-05 12:42:03,2012-09-26 04:57:55,3,296,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13609,PRINI,1,2014-04-15 10:02:13,2014-04-23 03:21:49,2014-04-18 00:09:41,3,137.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13610,FRANR,2,2020-05-04 06:02:57,2020-05-16 16:31:15,2020-05-07 00:19:57,2,340.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13611,WILMK,1,2021-05-23 01:39:34,2021-05-31 09:01:29,2021-05-24 18:38:10,3,49.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +13612,BSBEV,9,2014-09-08 23:03:40,2014-09-15 06:40:26,2014-09-09 17:31:48,1,22.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13613,MORGK,9,2021-07-06 13:55:28,2021-07-11 09:54:04,2021-07-14 09:01:31,2,153.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13614,HILAA,8,2016-06-04 18:29:34,2016-06-10 15:21:11,2016-06-08 08:15:54,1,189.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13615,GREAL,6,2022-05-25 16:30:52,2022-05-26 14:47:18,2022-06-01 22:54:56,1,499,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13616,GOURL,6,2015-08-23 00:43:42,2015-09-28 17:51:06,2015-09-09 21:07:11,3,238.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13617,SEVES,3,2015-01-09 22:31:58,2015-01-27 03:03:45,2015-01-11 06:54:16,2,24.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13618,MORGK,2,2012-11-06 04:28:18,2012-11-27 23:16:09,2012-11-12 09:01:37,1,326.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +13619,ANATR,3,2017-08-16 08:36:38,2017-08-24 21:14:44,2017-08-21 03:35:56,1,396.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13620,HILAA,2,2014-05-04 12:41:27,2014-05-26 06:55:20,2014-05-05 01:30:59,3,348.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13621,FRANK,2,2013-01-25 23:40:51,2013-01-31 16:26:31,2013-02-07 04:24:53,3,417.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13622,GOURL,2,2023-10-09 17:54:26,2023-10-19 13:57:24,2023-10-29 05:19:00,3,530.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13623,WELLI,7,2014-03-03 07:46:10,2014-03-16 20:08:39,2014-03-04 05:31:54,2,490.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13624,REGGC,3,2012-08-20 06:02:20,2012-09-21 06:53:19,2012-08-30 05:49:34,3,253.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13625,CONSH,5,2021-10-06 15:22:19,2021-11-13 22:22:09,2021-10-18 11:46:20,3,34.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13626,PARIS,4,2018-02-02 16:52:19,2018-02-15 07:07:28,2018-02-09 08:30:30,1,34.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13627,LONEP,5,2022-02-14 22:17:04,2022-03-10 12:46:27,2022-02-16 17:33:54,1,384,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13628,QUICK,7,2016-09-07 14:54:11,2016-09-13 18:17:48,2016-09-15 10:44:02,1,436,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13629,GODOS,4,2022-03-01 07:21:42,2022-03-16 05:44:47,2022-03-02 05:57:46,1,470.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13630,WHITC,9,2020-02-25 00:50:12,2020-03-07 09:31:50,2020-02-28 22:55:44,2,212.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13631,WHITC,1,2020-12-05 08:23:01,2020-12-30 01:30:07,2021-01-02 11:07:07,3,219.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13632,SANTG,6,2013-09-22 01:28:07,2013-10-09 18:51:06,2013-10-08 01:43:46,3,402,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13633,MAGAA,6,2018-09-24 01:45:16,2018-10-02 05:25:12,2018-09-27 08:20:05,3,203,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13634,REGGC,6,2014-12-17 14:16:29,2014-12-23 13:34:55,2014-12-19 17:05:59,3,463,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13635,HANAR,6,2020-11-18 09:04:49,2020-12-31 00:06:13,2020-11-21 09:13:15,2,447.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13636,SAVEA,9,2015-06-03 06:49:17,2015-06-13 13:12:14,2015-06-03 22:19:25,2,235,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13637,BLAUS,9,2016-04-04 01:20:42,2016-04-11 23:52:10,2016-04-14 15:13:43,3,227.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13638,RATTC,4,2021-01-19 09:22:27,2021-02-18 02:06:59,2021-01-21 10:24:51,1,139,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13639,SPLIR,6,2022-05-21 02:27:31,2022-06-04 11:14:34,2022-05-26 08:30:28,1,27.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13640,CENTC,8,2014-06-14 14:22:25,2014-07-02 07:48:30,2014-06-14 21:03:53,3,145.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13641,ANATR,2,2023-05-09 21:32:29,2023-05-22 04:29:13,2023-05-12 05:01:27,3,166,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13642,PRINI,3,2022-05-25 23:09:24,2022-05-30 07:29:41,2022-06-02 09:13:34,2,423.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13643,ANATR,9,2015-10-13 03:02:01,2015-11-10 19:21:39,2015-10-23 04:16:30,1,145.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13644,HUNGO,8,2013-09-21 04:05:55,2013-10-15 01:18:34,2013-09-22 17:41:55,1,45,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13645,BLAUS,5,2017-08-20 14:52:30,2017-09-27 15:29:18,2017-09-01 16:14:56,1,422.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13646,WOLZA,7,2022-01-22 19:36:13,2022-02-25 01:01:24,2022-02-01 09:46:08,1,419,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13647,RANCH,7,2015-01-27 08:47:05,2015-02-01 09:54:58,2015-02-05 23:53:05,2,498,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13648,LILAS,1,2021-03-13 22:25:16,2021-04-01 19:38:50,2021-03-21 06:02:21,1,26.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13649,CENTC,7,2017-04-12 10:09:39,2017-05-02 14:19:07,2017-04-27 06:20:59,3,234.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13650,GOURL,2,2022-03-10 14:24:44,2022-03-17 15:39:50,2022-03-30 08:55:08,1,488.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13651,HANAR,1,2023-03-26 01:55:55,2023-04-14 00:03:08,2023-03-28 22:04:43,2,71.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13652,BONAP,1,2013-10-23 07:16:10,2013-10-23 08:09:53,2013-10-30 09:39:44,1,324.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13653,WOLZA,9,2016-04-21 20:04:58,2016-06-06 10:42:05,2016-04-23 17:02:07,3,167.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13654,SANTG,7,2017-04-22 11:12:12,2017-05-04 08:15:27,2017-04-29 02:28:09,3,41,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13655,CONSH,1,2018-11-20 06:09:50,2018-12-30 09:41:51,2018-11-27 07:39:29,3,504.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13656,THECR,5,2012-10-26 00:00:19,2012-11-02 02:15:12,2012-10-27 07:43:41,2,538.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13657,WANDK,8,2013-04-20 23:26:14,2013-05-14 08:08:58,2013-04-22 04:12:09,3,219.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13658,HUNGO,3,2022-06-20 04:08:41,2022-06-25 13:57:54,2022-07-15 10:22:13,2,175.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13659,EASTC,8,2022-05-25 04:03:05,2022-06-05 19:05:09,2022-06-05 07:48:12,1,347,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13660,OLDWO,7,2015-03-04 02:09:08,2015-04-10 21:39:32,2015-03-13 22:57:53,2,202,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13661,VAFFE,8,2013-02-20 12:17:17,2013-03-06 10:11:58,2013-03-09 11:53:10,1,131.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13662,PERIC,1,2014-02-07 00:42:24,2014-02-22 01:21:16,2014-02-11 23:57:59,1,273,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13663,SIMOB,5,2020-10-10 05:03:48,2020-11-13 07:42:39,2020-10-20 11:46:55,3,286.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13664,PERIC,3,2016-08-24 13:18:49,2016-08-29 06:55:41,2016-08-29 03:11:36,1,210,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13665,ISLAT,3,2014-06-08 06:33:17,2014-06-09 23:01:29,2014-06-10 04:07:24,1,407.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13666,WANDK,6,2023-05-12 01:12:07,2023-05-31 00:36:29,2023-05-14 21:37:15,2,326.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13667,Val2 ,5,2021-04-11 01:03:19,2021-04-14 00:54:09,2021-04-14 04:36:39,2,201.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13668,HUNGO,7,2014-03-15 10:28:07,2014-04-02 22:52:34,2014-03-24 20:17:54,2,51,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13669,FISSA,6,2016-12-22 16:02:31,2017-01-18 01:35:18,2017-01-12 16:51:41,1,245.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13670,THECR,7,2023-07-20 16:56:32,2023-08-28 08:12:21,2023-07-28 16:14:09,1,441.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13671,GREAL,8,2014-06-16 09:27:21,2014-07-07 00:49:20,2014-06-24 02:39:08,3,431.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13672,HILAA,1,2023-04-22 14:32:57,2023-06-04 12:16:14,2023-04-24 01:22:07,1,245,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13673,ISLAT,1,2022-06-23 18:18:23,2022-07-06 18:24:33,2022-07-10 21:30:37,1,420,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +13674,VALON,9,2014-02-10 13:22:21,2014-02-12 11:56:40,2014-02-15 23:51:16,2,200.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13675,GREAL,8,2014-02-20 17:24:24,2014-03-07 18:59:52,2014-02-28 11:19:06,3,260.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13676,LILAS,1,2015-08-17 00:00:16,2015-10-01 16:22:01,2015-08-18 22:08:35,2,351,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13677,LINOD,9,2022-02-23 05:22:49,2022-03-30 00:46:47,2022-03-03 05:36:56,3,107.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13678,Val2 ,7,2022-03-13 11:34:11,2022-03-23 09:40:43,2022-03-13 20:15:11,1,290.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13679,SPLIR,4,2018-06-15 05:48:36,2018-07-18 06:51:09,2018-06-17 23:34:42,1,16.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13680,PICCO,2,2015-11-12 23:11:29,2015-12-08 23:25:04,2015-12-06 06:28:03,3,194.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13681,HILAA,2,2016-03-22 03:39:06,2016-03-30 12:56:18,2016-03-24 23:09:34,1,439.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13682,VAFFE,7,2017-09-22 13:09:54,2017-09-30 08:29:08,2017-09-30 01:05:07,2,447,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13683,FOLIG,8,2014-05-20 21:16:31,2014-06-03 19:33:34,2014-05-21 12:44:52,3,189.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13684,VICTE,7,2022-08-28 10:41:56,2022-08-29 22:34:46,2022-09-06 02:40:20,3,256.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13685,LAUGB,3,2013-11-04 03:14:56,2013-12-10 00:45:26,2013-11-20 06:44:30,1,81,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13686,PARIS,7,2015-12-22 18:52:32,2016-01-06 16:54:18,2015-12-24 22:55:47,1,183.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13687,MAISD,6,2023-06-14 10:55:15,2023-07-24 04:59:09,2023-06-18 15:53:52,2,180.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13688,FOLKO,8,2017-01-20 08:01:05,2017-02-15 03:40:39,2017-01-21 02:15:16,2,204.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13689,HUNGO,4,2012-09-20 23:14:50,2012-10-06 15:18:36,2012-09-21 05:59:16,1,381.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13690,ANTON,6,2018-07-15 21:02:39,2018-07-21 05:48:50,2018-07-16 16:57:31,2,56.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13691,RICSU,8,2018-04-14 03:28:22,2018-05-13 14:54:40,2018-04-29 13:17:07,1,318.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13692,HILAA,4,2017-05-15 11:59:57,2017-06-10 04:01:09,2017-05-23 02:09:26,1,234.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13693,RANCH,5,2013-01-01 16:21:57,2013-01-21 15:31:29,2013-01-13 01:15:32,1,116,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13694,LINOD,7,2014-08-26 06:51:43,2014-09-05 18:26:52,2014-09-12 16:54:28,3,130.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13695,QUICK,8,2020-03-24 20:42:50,2020-05-01 16:29:04,2020-03-31 01:43:28,2,246,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13696,PICCO,4,2022-07-30 09:24:04,2022-08-31 14:28:10,2022-07-31 00:38:48,3,221.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13697,CHOPS,8,2016-05-26 23:51:40,2016-06-13 09:32:56,2016-06-07 13:16:14,2,274.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13698,BOTTM,1,2023-01-10 01:36:26,2023-01-15 12:51:24,2023-01-15 01:40:59,2,487.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13699,EASTC,9,2022-10-22 01:48:17,2022-10-28 10:40:41,2022-11-01 09:18:54,1,63,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13700,SAVEA,5,2023-08-10 06:27:31,2023-08-28 23:44:04,2023-08-23 06:00:33,3,277.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13701,DUMON,9,2015-11-12 03:39:48,2016-01-06 02:31:32,2015-11-14 18:01:20,3,181,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13702,EASTC,8,2023-09-27 06:59:20,2023-10-08 16:02:58,2023-10-04 00:43:37,1,104.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13703,LAZYK,2,2017-10-09 04:26:48,2017-10-19 13:08:01,2017-10-16 09:46:09,2,368,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13704,DUMON,6,2021-06-10 21:15:42,2021-06-21 12:39:03,2021-06-21 05:52:34,2,127,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13705,BERGS,2,2012-08-07 00:09:09,2012-08-16 23:00:42,2012-08-09 15:43:36,2,399,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13706,COMMI,8,2019-07-06 03:36:32,2019-07-14 21:12:15,2019-07-12 04:14:14,3,273.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13707,DRACD,8,2015-12-22 12:59:23,2016-02-04 14:26:21,2015-12-24 05:05:46,2,163.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13708,QUEDE,7,2020-05-30 19:12:53,2020-07-03 22:24:30,2020-06-03 20:16:18,2,89,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13709,ANTON,4,2016-01-29 19:09:40,2016-01-30 08:16:29,2016-02-05 06:21:03,1,125.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13710,BLONP,8,2015-11-04 21:47:34,2015-11-28 04:37:17,2015-11-10 19:19:33,2,352,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13711,MAGAA,1,2019-03-19 15:45:08,2019-03-27 12:59:37,2019-03-23 19:00:53,1,329.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13712,BLONP,6,2020-07-09 07:10:46,2020-07-30 01:31:21,2020-07-09 11:34:57,2,501.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +13713,SPECD,8,2022-06-19 06:56:37,2022-07-04 12:39:15,2022-07-03 01:39:44,2,447.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13714,DUMON,6,2013-02-14 05:50:09,2013-02-28 03:39:09,2013-03-04 06:00:59,2,411.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13715,NORTS,5,2014-10-24 13:39:30,2014-11-04 22:11:48,2014-10-31 08:21:06,2,65.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13716,FOLIG,6,2013-01-09 20:07:41,2013-01-16 05:53:45,2013-01-12 07:30:18,1,449.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13717,BOLID,2,2015-10-24 21:25:50,2015-11-30 19:32:26,2015-10-29 05:19:42,3,404,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +13718,FISSA,1,2021-07-01 08:05:15,2021-07-30 12:06:30,2021-07-14 22:49:47,3,182.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13719,KOENE,4,2013-05-04 04:59:14,2013-05-11 00:01:25,2013-05-06 04:01:16,1,121.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13720,GOURL,1,2017-04-21 10:33:41,2017-05-04 14:29:47,2017-04-24 18:23:04,1,348,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13721,LETSS,5,2015-09-21 15:35:09,2015-10-03 04:26:11,2015-09-21 21:20:16,1,43.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13722,QUEDE,7,2014-11-17 04:34:22,2014-11-23 02:43:53,2014-12-01 00:27:12,3,318,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13723,Val2 ,2,2017-10-20 12:52:15,2017-11-07 17:38:23,2017-10-23 08:38:26,2,56.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13724,MAISD,9,2023-10-28 00:09:48,2023-11-04 21:19:12,2023-11-13 13:56:30,2,112.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13725,OTTIK,6,2017-05-16 08:30:35,2017-06-22 17:12:44,2017-06-02 23:49:44,1,408.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13726,COMMI,3,2018-06-29 09:33:46,2018-08-20 19:37:28,2018-07-03 03:40:34,2,283.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13727,VINET,9,2019-02-11 05:07:13,2019-03-03 11:32:38,2019-02-16 02:42:05,3,187.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13728,EASTC,4,2021-07-07 18:30:22,2021-07-23 10:33:38,2021-07-12 23:32:36,1,349.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13729,CENTC,7,2017-03-31 00:38:28,2017-04-18 21:06:45,2017-04-01 14:49:39,3,76.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13730,WHITC,6,2021-10-01 14:58:08,2021-10-10 03:55:07,2021-10-17 02:06:57,3,195.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13731,SPLIR,2,2015-12-11 09:11:44,2015-12-31 20:52:21,2015-12-21 16:17:23,2,307.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13732,WHITC,4,2020-07-31 09:31:47,2020-08-20 01:42:46,2020-08-09 21:20:45,3,124.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +13733,LEHMS,3,2022-12-26 00:51:29,2023-01-09 18:42:06,2023-01-02 02:44:27,3,377,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13734,ANATR,9,2012-12-01 16:16:33,2013-01-23 20:37:47,2012-12-13 14:07:31,1,299.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13735,PARIS,7,2023-08-20 07:17:51,2023-08-20 07:35:24,2023-08-26 15:53:06,1,450,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13736,ALFKI,3,2023-09-24 08:20:26,2023-10-01 06:18:08,2023-09-27 10:33:29,1,166,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13737,FRANS,3,2015-02-08 11:23:09,2015-02-22 03:36:58,2015-02-16 09:18:17,3,217,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13738,WARTH,7,2015-04-09 16:01:38,2015-04-20 11:10:05,2015-04-29 20:57:11,1,236.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13739,PICCO,1,2018-06-16 07:16:56,2018-07-01 15:12:50,2018-07-01 03:26:15,1,261.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13740,LAZYK,6,2016-08-13 10:16:48,2016-09-04 11:58:35,2016-08-13 15:33:40,1,317.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +13741,HUNGO,5,2023-04-05 01:54:20,2023-04-08 16:13:39,2023-04-08 08:52:13,1,290.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13742,HANAR,6,2023-10-18 07:20:56,2023-10-18 13:40:34,2023-10-18 16:29:59,3,344,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13743,VAFFE,3,2013-01-26 15:40:32,2013-03-05 07:45:00,2013-01-27 15:09:07,1,67.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13744,DRACD,5,2013-02-08 18:38:59,2013-02-14 21:39:41,2013-02-10 22:47:02,3,345.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13745,SPLIR,1,2013-04-08 01:58:11,2013-04-26 06:03:32,2013-04-21 05:10:55,3,476.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13746,PERIC,3,2019-03-29 01:31:32,2019-04-14 17:42:40,2019-03-29 21:09:18,1,344.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13747,TOMSP,1,2020-12-17 14:37:10,2021-01-21 12:54:14,2021-01-02 04:13:17,1,61.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13748,LACOR,4,2018-08-20 07:00:42,2018-09-06 09:32:57,2018-08-23 10:37:04,1,91.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13749,BERGS,3,2021-09-29 19:56:27,2021-10-20 12:01:04,2021-09-30 17:57:44,2,406.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13750,AROUT,1,2014-03-16 01:23:29,2014-04-19 16:38:20,2014-03-18 07:45:30,3,355.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13751,AROUT,9,2013-08-13 03:11:50,2013-08-24 23:38:12,2013-08-13 21:09:41,2,85.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13752,GROSR,1,2015-02-10 11:39:26,2015-03-02 01:41:34,2015-02-17 19:11:29,2,266.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13753,GALED,5,2017-05-13 18:22:02,2017-06-19 08:44:05,2017-05-30 03:14:52,2,425.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13754,WANDK,5,2022-12-10 21:25:53,2023-01-05 13:33:31,2022-12-12 06:14:16,3,30.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13755,LAUGB,5,2015-10-13 01:21:00,2015-10-26 16:58:05,2015-10-13 22:13:30,1,254.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13756,PRINI,6,2014-02-14 02:26:50,2014-03-24 05:11:54,2014-02-18 15:56:24,3,69.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13757,FAMIA,4,2017-03-14 02:27:49,2017-03-28 18:39:47,2017-03-20 21:00:24,1,451.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13758,MAISD,1,2021-07-16 03:53:45,2021-08-06 06:36:10,2021-07-20 22:30:35,2,463.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +13759,QUEEN,2,2016-08-10 10:23:43,2016-09-08 18:02:47,2016-08-23 02:00:41,3,312.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13760,PARIS,8,2021-02-05 10:00:36,2021-03-07 14:27:37,2021-02-24 12:17:43,1,51.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13761,COMMI,9,2013-07-08 04:30:58,2013-07-27 20:11:33,2013-07-11 07:16:15,1,454,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +13762,WARTH,8,2015-01-12 16:56:35,2015-01-23 20:24:23,2015-01-14 06:54:13,3,199,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13763,HILAA,3,2016-12-19 12:41:25,2017-01-04 16:50:39,2016-12-30 04:04:39,3,366.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13764,COMMI,8,2015-11-28 11:56:00,2015-12-06 13:58:36,2015-12-07 00:29:58,3,445,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13765,ROMEY,7,2019-01-13 19:32:12,2019-02-27 01:47:21,2019-01-19 22:34:05,3,152.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13766,CHOPS,3,2017-01-26 23:40:13,2017-02-11 09:33:20,2017-02-01 05:40:54,3,138.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13767,BONAP,7,2014-01-11 02:12:38,2014-01-22 13:47:24,2014-01-25 03:58:24,2,155,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13768,SAVEA,2,2013-09-26 06:12:52,2013-10-04 14:55:29,2013-10-10 15:06:04,3,464.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13769,THEBI,3,2021-10-03 20:14:48,2021-11-17 14:48:27,2021-10-06 16:22:23,2,162,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13770,VAFFE,3,2014-02-17 19:14:45,2014-03-02 03:54:16,2014-03-03 13:03:18,2,419.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13771,MAISD,7,2012-11-29 08:35:11,2012-12-09 19:43:27,2012-12-19 21:46:06,3,412.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13772,SUPRD,1,2021-05-18 08:59:33,2021-05-22 03:44:06,2021-06-06 22:28:22,2,177,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13773,LINOD,1,2015-06-30 07:05:19,2015-07-15 21:45:11,2015-07-09 01:30:31,2,456.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13774,OCEAN,6,2022-12-01 10:59:46,2022-12-11 11:14:45,2022-12-23 22:36:57,2,224.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13775,VAFFE,7,2020-03-07 12:01:12,2020-04-02 19:33:43,2020-03-07 18:25:09,2,53.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13776,BSBEV,6,2014-03-05 16:58:02,2014-04-11 15:10:06,2014-03-06 23:20:58,3,285.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13777,QUEEN,4,2017-03-11 22:14:54,2017-03-13 17:40:07,2017-03-17 02:33:08,1,308.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13778,BLAUS,4,2020-05-15 07:49:03,2020-06-06 23:01:52,2020-05-17 15:51:16,2,444,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13779,GOURL,3,2016-05-07 20:09:20,2016-05-13 05:14:35,2016-05-16 22:45:14,2,353.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13780,FRANK,8,2018-12-12 03:23:32,2019-01-03 00:33:26,2018-12-13 05:04:56,3,458.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +13781,RICAR,7,2017-10-04 22:02:20,2017-10-20 07:57:15,2017-10-07 08:00:41,2,356.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13782,COMMI,9,2017-03-26 01:17:48,2017-04-01 20:42:44,2017-03-26 18:51:35,3,471.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13783,BLAUS,7,2015-10-25 05:04:50,2015-10-27 02:24:10,2015-11-02 01:28:06,1,239.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13784,LAUGB,7,2021-05-04 15:53:11,2021-06-01 21:10:44,2021-05-07 12:51:35,2,303.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13785,WILMK,3,2013-04-01 00:08:13,2013-04-12 23:30:41,2013-04-04 06:48:27,2,182.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13786,PICCO,3,2016-01-19 07:59:59,2016-01-23 12:12:18,2016-02-06 03:05:22,2,245,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13787,OTTIK,6,2021-10-29 16:15:29,2021-12-14 05:31:14,2021-10-31 22:31:32,2,385.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13788,VALON,3,2016-02-27 19:45:07,2016-03-10 12:17:15,2016-03-17 01:11:11,3,54.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +13789,MORGK,2,2023-10-27 06:38:44,2023-12-13 21:41:33,2023-11-18 15:37:08,1,418.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13790,OLDWO,1,2018-05-17 05:07:15,2018-06-05 01:13:50,2018-05-23 02:27:39,1,164.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13791,HUNGC,3,2016-06-30 11:05:29,2016-07-05 03:40:40,2016-07-17 04:55:58,3,385.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13792,SPECD,7,2020-02-19 17:59:57,2020-02-24 12:38:28,2020-03-03 18:04:36,3,465.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13793,SANTG,8,2013-07-09 08:01:19,2013-09-03 21:50:22,2013-07-31 19:08:23,3,81.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13794,WELLI,6,2023-03-24 02:32:57,2023-05-14 08:47:09,2023-03-25 02:16:14,2,55.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13795,PRINI,1,2014-10-23 22:43:51,2014-11-01 10:37:46,2014-11-03 23:46:12,2,156.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13796,MORGK,6,2013-09-23 18:19:40,2013-10-01 00:34:24,2013-10-03 12:12:25,1,492.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13797,TRAIH,7,2021-03-07 11:36:26,2021-03-10 06:53:09,2021-03-10 16:30:38,3,261.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13798,PICCO,4,2014-09-19 10:34:59,2014-10-01 14:29:56,2014-09-22 21:41:38,2,371.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13799,WARTH,5,2014-11-14 10:47:09,2014-12-07 11:07:30,2014-11-17 11:35:21,1,422,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13800,GODOS,7,2017-10-15 02:26:40,2017-10-21 03:55:09,2017-10-15 20:43:52,1,142.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13801,HUNGC,4,2022-08-21 16:00:54,2022-09-24 02:47:41,2022-09-08 05:10:35,2,423.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13802,BERGS,1,2022-11-03 17:27:10,2022-11-10 03:01:29,2022-11-04 17:14:23,1,324.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13803,GOURL,2,2022-02-24 06:51:22,2022-03-27 19:35:08,2022-03-07 00:13:35,1,362,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13804,SPLIR,7,2015-02-02 16:31:55,2015-03-22 12:00:23,2015-02-24 15:45:08,3,445.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13805,GALED,5,2015-07-01 21:24:15,2015-07-22 10:53:40,2015-07-10 06:10:12,1,306.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13806,FRANR,9,2015-06-03 23:04:01,2015-06-04 23:33:58,2015-06-06 22:59:38,2,229,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +13807,RICSU,4,2015-10-12 06:09:14,2015-10-23 03:27:09,2015-10-29 00:24:52,3,302.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13808,FRANR,6,2013-06-05 19:04:33,2013-07-17 07:52:10,2013-06-15 21:55:42,1,184.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13809,WILMK,3,2016-02-11 04:08:59,2016-02-14 04:09:05,2016-02-24 07:03:13,3,381.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13810,FOLIG,1,2012-10-09 12:47:14,2012-10-12 09:59:34,2012-10-13 09:39:32,3,353.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13811,MAISD,2,2017-06-05 10:43:09,2017-06-24 13:30:29,2017-06-10 21:56:38,3,102.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13812,RICAR,9,2014-02-20 19:05:19,2014-04-04 15:08:14,2014-02-21 15:18:15,2,321.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13813,BSBEV,2,2021-12-19 11:56:27,2022-01-01 14:33:03,2021-12-22 19:35:24,1,383,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13814,FAMIA,4,2016-03-20 07:04:05,2016-04-10 19:36:10,2016-03-21 02:22:33,3,43.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13815,THEBI,4,2020-06-28 14:38:14,2020-06-29 16:58:40,2020-06-30 13:57:02,3,129.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +13816,TOMSP,1,2015-06-03 16:11:13,2015-06-05 22:16:14,2015-06-03 17:51:57,2,68.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13817,DRACD,6,2015-10-20 00:06:39,2015-10-28 00:28:12,2015-11-03 23:52:17,1,102.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13818,SIMOB,8,2015-08-16 14:14:50,2015-09-05 04:28:07,2015-08-22 18:27:37,2,172.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13819,RICAR,3,2016-03-09 16:22:33,2016-03-22 00:05:59,2016-03-16 11:49:28,2,79.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13820,GODOS,5,2022-10-25 22:18:10,2022-11-10 20:28:20,2022-10-26 11:23:52,1,279.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +13821,SIMOB,3,2015-05-28 23:16:10,2015-06-23 03:49:07,2015-06-15 10:29:16,2,331.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13822,OTTIK,6,2022-02-27 03:10:17,2022-03-13 05:38:34,2022-03-01 22:28:04,2,308.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13823,AROUT,1,2012-10-11 11:53:58,2012-10-22 08:49:22,2012-10-15 22:21:56,3,305.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13824,ISLAT,5,2021-04-28 19:11:08,2021-05-06 14:19:21,2021-05-01 10:01:55,2,488,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13825,COMMI,9,2012-12-31 06:52:08,2013-01-09 10:09:07,2013-01-10 05:32:28,1,519.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13826,LINOD,2,2017-11-26 04:27:45,2017-12-14 07:07:11,2017-12-13 22:46:56,2,420.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13827,LAUGB,4,2023-09-08 20:46:01,2023-10-25 21:00:46,2023-09-22 06:36:51,3,487.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +13828,TORTU,2,2017-08-06 22:00:28,2017-09-10 12:01:18,2017-08-11 08:38:20,2,375,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13829,VICTE,5,2022-10-24 10:24:11,2022-10-30 00:05:31,2022-11-12 01:26:04,1,207.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +13830,ANATR,9,2018-04-05 13:07:07,2018-04-27 08:42:51,2018-04-05 18:06:11,2,209.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13831,PRINI,8,2017-11-01 09:04:15,2017-11-17 14:02:45,2017-11-02 14:45:32,1,411.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13832,GROSR,4,2022-10-18 17:05:37,2022-11-01 15:02:30,2022-10-18 23:16:25,1,183.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13833,GALED,8,2022-10-13 19:15:46,2022-10-23 21:55:15,2022-10-14 05:24:56,3,133,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13834,EASTC,7,2016-08-26 05:47:31,2016-09-10 23:57:43,2016-09-05 12:46:36,1,492,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13835,MAGAA,2,2019-03-21 03:34:19,2019-03-23 20:41:51,2019-03-21 03:59:09,2,267,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13836,LINOD,7,2022-10-26 18:02:29,2022-11-10 02:34:26,2022-11-01 04:07:22,3,321,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +13837,FURIB,1,2023-01-06 22:36:47,2023-01-09 14:32:06,2023-01-08 18:12:48,2,184.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13838,OCEAN,8,2013-01-28 10:28:51,2013-02-21 12:52:40,2013-02-19 01:40:28,1,248.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13839,RICAR,1,2014-12-23 18:49:38,2015-01-17 22:23:35,2014-12-29 06:58:23,2,190,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13840,WHITC,4,2013-06-27 13:18:01,2013-07-14 19:34:05,2013-06-29 14:54:56,3,321.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13841,VALON,9,2015-08-20 12:00:01,2015-08-30 06:48:57,2015-09-01 13:33:43,3,48.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13842,TRADH,5,2021-02-25 10:36:26,2021-03-01 09:20:14,2021-02-26 21:09:13,1,170.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +13843,FOLKO,7,2016-10-02 01:59:16,2016-10-07 09:16:56,2016-10-03 20:12:57,3,65.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +13844,LILAS,5,2016-12-05 08:39:51,2016-12-08 09:04:40,2017-01-01 19:24:17,3,471.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13845,CACTU,7,2023-05-12 19:22:50,2023-06-01 01:26:19,2023-05-15 09:08:06,3,411.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13846,MAGAA,4,2022-03-14 14:33:51,2022-03-19 10:57:28,2022-03-18 06:32:17,2,413,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13847,FRANR,4,2015-02-04 04:49:28,2015-03-16 04:39:19,2015-02-04 22:33:17,1,223.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13848,VALON,3,2018-11-02 19:19:42,2018-11-12 23:36:50,2018-11-09 11:35:33,3,220.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13849,VICTE,2,2023-03-12 10:58:43,2023-03-16 16:32:09,2023-03-12 22:18:01,1,199,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +13850,CHOPS,5,2018-12-04 13:04:35,2018-12-13 19:44:10,2018-12-05 12:36:02,2,472.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13851,FURIB,4,2014-05-05 13:16:54,2014-06-17 21:33:14,2014-05-15 16:09:38,3,178.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13852,GOURL,6,2018-04-25 07:40:54,2018-06-20 05:38:51,2018-05-12 04:58:00,2,92,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13853,ERNSH,4,2013-01-06 13:41:47,2013-01-20 11:40:27,2013-01-07 08:29:32,2,152.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13854,GREAL,7,2019-10-26 05:07:12,2019-10-29 12:51:27,2019-11-08 03:29:58,1,474.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13855,LAUGB,9,2022-11-17 10:15:38,2022-12-05 16:03:19,2022-11-27 15:32:07,2,342.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13856,SPLIR,8,2015-08-05 06:16:56,2015-08-13 15:53:51,2015-08-05 17:23:47,2,63.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13857,SAVEA,3,2019-03-05 14:29:17,2019-03-20 18:13:00,2019-04-01 10:19:09,1,120,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13858,OLDWO,8,2022-11-21 09:24:45,2022-11-23 10:42:41,2022-11-23 16:17:00,2,77.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13859,THECR,4,2020-07-22 14:49:20,2020-08-15 16:02:46,2020-07-24 02:34:34,3,192.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13860,VAFFE,4,2018-07-31 03:21:05,2018-08-09 00:07:29,2018-08-03 02:32:38,3,484.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13861,GOURL,1,2022-04-17 01:11:15,2022-05-13 06:40:17,2022-04-19 08:13:48,2,273,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +13862,HILAA,3,2023-02-20 07:10:25,2023-03-14 15:06:32,2023-02-20 08:03:08,2,455.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13863,BSBEV,9,2022-11-17 14:18:30,2022-11-30 12:42:16,2022-11-21 03:05:05,3,250.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13864,FOLIG,1,2020-10-31 11:03:46,2020-12-09 22:07:27,2020-11-03 06:53:45,1,489,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +13865,ERNSH,8,2018-11-06 07:52:57,2018-12-01 18:09:30,2018-11-18 12:12:32,1,263,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13866,DUMON,4,2015-04-06 18:24:54,2015-05-02 20:26:07,2015-04-18 01:40:22,1,120.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13867,LACOR,2,2016-09-29 08:28:59,2016-10-16 07:52:45,2016-09-30 13:22:20,2,387.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +13868,RATTC,1,2014-09-21 08:33:56,2014-10-05 10:48:22,2014-09-21 09:45:10,2,499.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +13869,SEVES,1,2020-06-13 14:47:39,2020-06-28 19:49:15,2020-06-20 20:10:18,3,256.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13870,Val2 ,8,2017-10-29 06:36:20,2017-12-15 09:27:49,2017-11-10 14:44:27,1,517.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13871,GOURL,8,2021-09-22 01:16:27,2021-11-09 06:53:32,2021-09-24 14:06:58,1,131,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13872,WOLZA,4,2014-03-01 03:19:00,2014-03-19 18:57:43,2014-03-02 00:06:09,2,183,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13873,THECR,7,2014-07-10 02:42:33,2014-07-11 10:17:18,2014-07-17 15:40:42,3,353.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13874,OLDWO,2,2017-02-03 00:15:00,2017-02-28 07:21:27,2017-02-14 23:16:32,1,435.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13875,TRAIH,1,2017-01-05 12:42:58,2017-02-12 06:58:56,2017-01-16 00:03:22,1,112.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13876,GOURL,2,2022-05-01 18:49:28,2022-05-13 00:06:28,2022-05-07 18:41:21,1,220.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13877,PICCO,5,2012-08-28 04:36:10,2012-08-28 08:44:09,2012-09-07 13:09:52,3,110.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13878,HANAR,7,2015-03-15 12:49:33,2015-04-14 15:47:09,2015-03-19 19:36:01,2,441.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13879,TRADH,8,2015-10-10 01:27:14,2015-11-18 06:18:09,2015-10-18 23:02:45,3,380.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +13880,WELLI,6,2023-09-25 08:58:26,2023-10-06 08:56:37,2023-09-25 09:12:29,1,87,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +13881,QUICK,8,2022-01-22 13:43:35,2022-02-18 01:25:44,2022-01-28 12:20:21,2,157,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13882,ANATR,1,2016-05-10 13:37:09,2016-06-06 03:09:48,2016-05-10 23:40:25,2,107.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13883,BONAP,6,2021-07-23 02:49:49,2021-08-03 07:33:07,2021-08-07 06:21:44,3,216.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13884,HILAA,9,2014-12-06 19:01:41,2014-12-25 04:41:48,2014-12-09 03:58:37,1,374.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13885,MAISD,6,2021-01-23 00:29:23,2021-02-12 09:15:28,2021-02-11 10:05:09,2,108.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13886,ALFKI,5,2022-10-14 04:00:33,2022-10-26 04:24:09,2022-10-18 07:46:29,2,475.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13887,PRINI,2,2015-12-27 02:15:02,2016-02-13 06:55:44,2015-12-30 13:10:05,2,330,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +13888,Val2 ,8,2022-09-02 18:26:31,2022-10-04 18:01:11,2022-09-18 13:56:48,1,89,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +13889,WANDK,9,2021-02-08 15:44:19,2021-03-16 13:16:45,2021-02-12 23:13:01,2,206.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13890,VALON,8,2016-02-14 10:05:44,2016-02-16 09:28:23,2016-02-26 16:17:09,1,27.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13891,WILMK,7,2020-08-25 19:24:46,2020-08-31 10:52:02,2020-08-27 06:21:35,3,35.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13892,CHOPS,9,2013-02-21 21:40:05,2013-03-20 11:23:38,2013-03-07 22:51:15,1,263.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13893,WHITC,6,2019-04-10 15:57:13,2019-04-26 18:07:40,2019-04-13 20:11:18,1,348.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13894,CACTU,8,2015-08-17 04:45:28,2015-08-24 12:40:08,2015-08-28 19:05:45,1,425.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +13895,BSBEV,8,2021-11-06 17:51:44,2021-11-21 05:50:36,2021-11-20 14:42:22,2,510.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13896,VAFFE,5,2017-01-11 17:46:27,2017-02-01 01:42:47,2017-01-21 17:32:25,2,375.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13897,BERGS,5,2016-05-18 11:51:49,2016-06-29 09:23:44,2016-05-19 00:58:36,2,445.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +13898,DRACD,4,2020-08-20 11:01:34,2020-08-27 17:11:27,2020-08-21 18:14:38,2,114.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13899,LINOD,7,2017-09-19 14:20:06,2017-09-27 20:04:59,2017-10-06 05:38:23,2,306.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +13900,RATTC,2,2013-07-17 15:25:05,2013-07-20 22:59:47,2013-07-25 14:53:09,1,308.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13901,WHITC,1,2022-07-25 11:37:07,2022-08-16 12:03:43,2022-08-07 03:41:08,2,408.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +13902,SPLIR,9,2019-09-01 09:49:03,2019-09-04 01:33:17,2019-09-09 01:34:08,2,320.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13903,BSBEV,3,2013-02-06 05:32:24,2013-02-24 16:13:29,2013-02-16 23:48:17,3,441,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13904,RATTC,4,2013-03-01 07:26:40,2013-04-16 07:06:29,2013-03-02 17:31:41,3,36,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13905,HUNGO,7,2020-02-18 04:54:53,2020-02-21 16:28:16,2020-02-20 19:09:14,1,296.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13906,RICSU,7,2021-07-31 11:28:03,2021-08-27 18:03:59,2021-08-03 23:17:30,2,373.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13907,GREAL,2,2015-11-04 15:19:25,2015-11-12 03:26:45,2015-11-26 14:34:06,1,378.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13908,QUICK,7,2023-03-11 13:15:00,2023-03-28 02:15:47,2023-03-12 12:42:03,3,442.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13909,TRAIH,5,2012-10-29 17:48:44,2012-11-02 19:19:04,2012-10-30 15:51:40,3,174.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13910,ANTON,7,2020-09-07 05:41:35,2020-09-23 10:38:15,2020-09-19 18:54:44,1,260.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13911,THECR,3,2013-10-01 18:19:47,2013-10-08 00:16:58,2013-10-05 17:56:17,3,306.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13912,BLAUS,6,2016-11-30 03:15:24,2016-12-17 06:22:30,2016-12-05 22:08:33,3,453.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13913,LETSS,5,2020-05-13 07:54:31,2020-05-30 09:18:24,2020-05-20 04:53:49,3,332,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13914,ALFKI,4,2021-12-11 14:58:59,2021-12-19 18:36:30,2021-12-14 11:57:55,3,367,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13915,DRACD,4,2012-08-04 21:08:28,2012-08-07 16:53:28,2012-08-06 16:23:13,1,356.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13916,BOLID,1,2020-03-20 21:35:28,2020-03-26 19:31:49,2020-03-26 16:09:46,3,136.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +13917,MAISD,9,2023-03-15 09:23:22,2023-03-15 18:59:10,2023-03-29 14:26:24,3,437,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +13918,ISLAT,6,2014-06-06 03:38:09,2014-06-29 10:17:51,2014-06-11 18:09:24,3,55.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13919,MEREP,4,2021-03-27 04:01:33,2021-04-07 02:23:39,2021-04-01 10:25:07,3,345.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13920,SEVES,2,2018-10-06 15:04:39,2018-10-28 14:46:33,2018-10-23 19:45:38,1,74,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13921,FRANR,5,2014-04-28 23:44:57,2014-06-05 12:15:19,2014-05-08 18:04:52,3,22.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +13922,QUICK,3,2023-03-28 22:02:16,2023-05-13 10:31:31,2023-04-15 18:19:36,3,470.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13923,OCEAN,7,2016-07-16 02:38:14,2016-07-27 12:04:14,2016-07-17 18:24:40,2,81.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +13924,THEBI,3,2015-02-05 21:06:44,2015-03-30 03:34:44,2015-02-12 08:03:44,1,194.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +13925,SPECD,5,2023-07-22 19:19:45,2023-09-17 00:13:55,2023-07-25 17:48:58,2,327,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13926,GROSR,2,2015-06-05 17:02:52,2015-06-17 04:01:57,2015-06-05 19:42:43,2,19.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13927,PRINI,1,2014-05-04 20:43:48,2014-05-10 01:09:52,2014-05-10 07:28:17,3,396.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +13928,BSBEV,5,2022-09-17 12:37:31,2022-09-24 07:13:51,2022-09-18 20:16:23,3,466,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13929,BERGS,2,2021-06-08 16:39:32,2021-06-20 00:03:42,2021-06-09 19:01:48,2,151,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +13930,WHITC,8,2018-12-11 20:56:34,2018-12-31 07:01:01,2018-12-21 16:22:02,2,422.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13931,BSBEV,7,2013-07-28 19:17:38,2013-08-03 06:43:31,2013-08-10 05:21:20,1,104.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +13932,LETSS,9,2014-04-02 01:25:00,2014-04-18 06:19:39,2014-04-13 23:56:26,1,88.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +13933,LETSS,8,2018-04-06 16:32:33,2018-05-08 19:36:20,2018-04-17 00:02:06,1,488.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +13934,SUPRD,8,2013-11-25 00:02:08,2013-11-25 14:42:25,2013-12-11 06:33:16,1,374.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +13935,TRADH,7,2012-09-07 01:10:24,2012-09-12 15:31:15,2012-09-08 21:01:24,2,478.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +13936,REGGC,5,2015-04-07 17:09:36,2015-05-27 04:26:13,2015-04-17 01:28:19,2,371,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +13937,BLAUS,9,2020-10-18 08:40:39,2020-10-20 00:15:46,2020-10-21 08:32:48,3,122,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13938,WANDK,3,2017-11-26 04:55:37,2017-12-20 02:05:16,2017-12-21 15:08:13,3,119,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13939,ANTON,3,2021-12-10 14:03:06,2021-12-26 09:59:15,2021-12-13 03:45:25,2,332.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +13940,Val2 ,8,2015-11-19 14:52:58,2015-12-17 09:04:41,2015-11-20 06:08:16,1,170.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +13941,GROSR,2,2019-01-19 20:07:20,2019-01-29 16:25:52,2019-01-19 23:53:56,1,473,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +13942,SIMOB,8,2014-01-25 11:09:25,2014-01-26 18:08:44,2014-01-30 23:03:44,1,136.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13943,CHOPS,2,2013-11-22 08:09:46,2013-12-13 09:19:36,2013-12-19 21:16:33,2,390.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +13944,DRACD,2,2023-05-12 13:03:46,2023-05-16 03:07:17,2023-05-14 01:58:33,1,418.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13945,VALON,7,2018-08-17 16:11:28,2018-08-25 10:42:04,2018-08-25 04:27:14,1,52.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13946,DUMON,8,2021-03-19 07:24:00,2021-04-03 09:56:43,2021-03-24 03:43:00,1,421.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +13947,FOLKO,2,2022-01-08 13:11:08,2022-02-03 01:14:31,2022-01-28 21:52:01,2,241.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13948,HILAA,9,2020-10-02 09:14:04,2020-10-29 20:05:28,2020-10-12 03:12:49,2,469.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +13949,HANAR,6,2022-02-13 08:48:01,2022-02-20 18:59:00,2022-02-23 09:03:50,1,21,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +13950,SUPRD,1,2016-12-08 07:08:48,2016-12-08 11:25:51,2016-12-14 15:04:34,3,305.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +13951,FRANR,8,2016-05-21 08:07:52,2016-05-27 17:48:19,2016-05-27 07:33:13,1,439.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +13952,GROSR,5,2014-03-06 10:27:45,2014-03-16 14:07:18,2014-03-21 04:08:31,1,157,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13953,DRACD,7,2019-03-18 08:14:33,2019-04-20 20:22:55,2019-03-25 07:11:52,2,133.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +13954,GREAL,5,2013-06-20 12:55:17,2013-07-06 11:21:40,2013-06-20 13:18:00,3,400.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +13955,ANATR,4,2019-03-23 15:30:39,2019-04-11 18:17:14,2019-03-24 16:09:04,2,194.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +13956,FOLKO,6,2015-03-20 23:41:10,2015-04-07 16:04:34,2015-03-30 17:29:21,2,53.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13957,PRINI,4,2022-10-21 09:09:12,2022-11-09 17:24:35,2022-10-21 20:18:35,3,418,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +13958,FRANS,4,2020-08-21 10:46:00,2020-09-11 07:58:47,2020-09-07 17:19:57,2,450.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +13959,GOURL,7,2017-12-07 17:39:58,2018-01-07 15:00:59,2017-12-22 10:23:56,3,367.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +13960,ANATR,7,2022-05-27 15:06:31,2022-07-05 18:01:27,2022-06-01 14:17:45,2,169.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +13961,TOMSP,2,2012-12-12 07:36:46,2012-12-23 16:31:12,2012-12-14 07:50:53,3,243,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13962,MORGK,8,2017-05-06 11:00:24,2017-05-12 23:24:08,2017-05-12 11:15:31,2,342,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13963,THEBI,3,2022-04-11 16:12:04,2022-04-27 12:21:17,2022-04-12 03:11:13,1,191.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +13964,BOLID,9,2013-07-02 21:02:01,2013-08-22 13:47:40,2013-07-07 16:49:39,1,303.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +13965,VICTE,9,2023-08-13 13:20:23,2023-08-14 04:20:18,2023-08-15 05:05:11,2,35,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +13966,RICAR,3,2020-08-06 19:46:30,2020-08-07 19:23:13,2020-08-16 03:24:34,1,176,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +13967,HANAR,8,2021-08-10 21:12:05,2021-08-12 15:29:56,2021-08-15 07:35:22,3,183.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +13968,LAZYK,6,2013-03-18 09:07:47,2013-03-26 14:15:18,2013-04-07 02:49:20,3,501.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +13969,HILAA,5,2015-11-08 12:59:50,2015-12-13 20:08:37,2015-11-18 02:06:25,1,187.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +13970,HANAR,6,2017-11-09 10:31:46,2017-11-15 18:33:22,2017-11-10 01:36:20,3,345.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13971,AROUT,2,2021-10-01 03:45:51,2021-10-27 02:36:14,2021-10-04 21:33:22,1,206.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13972,ROMEY,5,2019-03-13 04:54:33,2019-03-19 22:50:07,2019-03-19 19:30:32,2,477,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +13973,MAISD,3,2021-01-18 04:02:27,2021-01-30 21:06:27,2021-01-28 09:32:53,2,361.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +13974,THECR,1,2023-09-24 02:12:42,2023-10-02 07:28:03,2023-10-22 08:50:27,1,327.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13975,RANCH,6,2021-11-16 06:39:43,2021-11-18 22:22:03,2021-11-19 20:55:25,2,73.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +13976,WELLI,3,2018-01-20 17:14:38,2018-02-01 17:16:13,2018-01-25 19:06:06,3,484.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +13977,VICTE,6,2023-01-28 05:01:54,2023-01-30 19:22:45,2023-02-14 19:10:32,2,190,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +13978,ERNSH,7,2014-11-25 03:31:11,2014-12-17 11:13:55,2014-11-26 11:44:49,3,285,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +13979,Val2 ,6,2019-10-03 04:02:58,2019-10-10 16:26:24,2019-10-10 03:25:52,3,510,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +13980,THEBI,9,2015-12-23 03:16:40,2015-12-25 12:31:57,2015-12-23 08:46:32,2,215.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +13981,LACOR,2,2015-05-17 07:26:22,2015-06-28 15:50:33,2015-06-04 18:41:32,1,360.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +13982,Val2 ,2,2022-01-03 03:19:44,2022-01-17 09:02:39,2022-01-05 03:36:48,2,288.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13983,KOENE,9,2014-12-02 06:13:10,2014-12-11 19:44:01,2014-12-03 03:11:37,1,295.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +13984,BLONP,9,2022-03-06 19:03:30,2022-03-14 03:27:40,2022-03-23 12:26:28,3,461.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +13985,SPLIR,3,2021-09-15 10:40:04,2021-09-28 14:25:32,2021-09-18 21:55:34,2,312.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +13986,CHOPS,1,2017-08-11 05:41:32,2017-08-28 20:25:08,2017-08-13 11:48:26,1,495.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +13987,Val2 ,8,2015-03-15 08:22:58,2015-04-09 13:42:02,2015-04-08 08:13:47,1,287.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +13988,BERGS,4,2019-11-13 14:53:39,2019-11-13 20:53:58,2019-11-15 00:06:58,3,25.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +13989,LETSS,3,2020-02-15 14:46:08,2020-02-25 08:55:25,2020-02-22 03:13:23,2,237,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +13990,HANAR,4,2020-11-23 20:30:52,2020-12-20 20:39:18,2020-11-29 00:25:33,2,421.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13991,ANATR,1,2021-06-08 15:01:58,2021-06-20 00:56:13,2021-06-08 19:00:27,3,407.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +13992,FOLKO,9,2022-02-20 10:13:49,2022-03-08 01:37:15,2022-02-21 06:55:16,1,469.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +13993,WANDK,4,2016-01-22 18:59:02,2016-01-28 06:07:46,2016-02-07 06:26:16,2,412.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +13994,BOTTM,7,2013-08-28 05:04:57,2013-09-07 21:09:02,2013-09-12 20:50:05,3,325.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +13995,GROSR,7,2014-11-16 08:42:58,2015-01-04 17:55:31,2014-11-16 17:00:14,2,136.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +13996,QUEEN,7,2021-11-19 22:34:37,2021-11-29 02:50:05,2021-11-20 00:36:44,3,202.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +13997,LAUGB,7,2021-02-22 11:55:17,2021-03-10 23:31:38,2021-03-09 09:02:52,1,25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +13998,OTTIK,7,2022-02-24 07:56:33,2022-02-25 02:23:37,2022-02-27 21:56:45,3,74.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +13999,MAISD,4,2023-08-29 08:04:52,2023-09-02 15:51:26,2023-09-20 06:09:22,1,401.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14000,BLONP,4,2020-11-19 04:09:23,2020-12-03 14:51:50,2020-11-19 23:42:19,1,112,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14001,BOLID,9,2019-09-02 20:07:18,2019-09-13 12:28:31,2019-09-06 20:14:53,3,475.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14002,SPECD,9,2022-12-21 02:16:57,2022-12-29 15:17:50,2023-01-03 05:06:23,3,169.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14003,CONSH,3,2017-04-27 08:31:22,2017-05-31 15:28:24,2017-04-28 05:07:38,3,104.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14004,Val2 ,4,2016-11-25 22:06:55,2016-11-30 08:10:50,2016-12-07 10:42:59,1,18.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14005,REGGC,2,2014-07-23 03:27:44,2014-08-06 05:19:21,2014-07-23 16:02:25,3,36.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14006,PRINI,6,2021-09-25 02:01:42,2021-10-26 14:30:28,2021-10-02 05:45:13,1,435.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14007,HUNGO,5,2021-01-31 08:10:55,2021-02-08 07:59:45,2021-02-20 15:07:46,2,30.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14008,MEREP,5,2020-02-01 15:30:03,2020-03-20 17:45:50,2020-02-01 23:13:10,3,192.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14009,BOLID,1,2019-05-26 02:15:52,2019-07-03 21:59:33,2019-06-01 15:13:59,1,180,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14010,DUMON,4,2016-07-21 21:06:12,2016-08-19 07:31:54,2016-07-24 03:35:00,2,202.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14011,TOMSP,7,2020-01-16 21:16:58,2020-01-19 20:30:22,2020-01-27 15:13:54,1,175.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14012,ISLAT,7,2016-02-23 06:33:15,2016-02-25 08:50:22,2016-02-26 10:47:50,1,80.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14013,KOENE,8,2015-08-01 12:59:33,2015-08-13 15:05:16,2015-08-12 14:59:45,3,524.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14014,PERIC,9,2015-05-09 12:45:15,2015-05-28 19:02:42,2015-05-17 19:18:37,2,145.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14015,WELLI,5,2012-10-16 20:48:29,2012-10-28 17:08:57,2012-10-20 02:20:45,2,294,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14016,BOLID,5,2015-03-02 07:57:01,2015-04-13 13:17:31,2015-03-04 01:51:24,3,234.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14017,TRAIH,5,2015-08-09 03:47:29,2015-08-12 10:30:27,2015-08-14 06:32:35,3,333.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14018,PICCO,2,2015-10-16 02:56:36,2015-11-03 12:11:16,2015-10-20 01:45:47,2,334.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14019,RICSU,6,2018-05-10 05:38:52,2018-06-16 12:58:30,2018-05-11 12:28:46,3,68.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14020,MORGK,2,2012-07-14 11:57:11,2012-07-22 05:02:10,2012-08-03 11:05:13,1,398,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14021,TORTU,5,2013-06-26 19:13:17,2013-07-07 21:35:12,2013-07-05 12:05:44,2,283.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14022,RICAR,4,2017-06-19 02:45:46,2017-06-29 09:54:54,2017-06-21 20:33:28,2,26,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14023,PARIS,4,2017-10-23 17:51:47,2017-11-02 16:37:56,2017-10-24 21:40:21,3,193.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14024,SEVES,9,2019-03-04 02:13:53,2019-04-20 16:36:00,2019-03-20 03:33:35,2,207.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14025,FISSA,3,2017-04-30 05:08:45,2017-05-03 22:09:31,2017-05-05 04:41:09,3,263,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14026,COMMI,4,2012-12-07 05:31:26,2012-12-29 00:19:43,2012-12-14 09:20:26,3,446.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14027,OLDWO,4,2019-11-27 07:00:36,2019-12-10 18:24:41,2019-12-10 06:02:33,2,99.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14028,LAZYK,6,2017-05-30 19:10:07,2017-05-31 10:23:17,2017-05-31 03:03:58,3,352.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14029,SPECD,4,2023-09-22 12:48:03,2023-10-12 02:55:42,2023-09-22 18:51:30,3,67.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14030,BLAUS,4,2019-04-14 13:42:16,2019-05-17 14:34:47,2019-04-20 19:13:02,2,367.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14031,HANAR,8,2017-07-21 14:22:49,2017-08-02 10:38:32,2017-07-22 02:42:14,1,485.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14032,TORTU,3,2014-02-19 19:47:19,2014-03-21 21:34:34,2014-03-01 16:10:46,3,379,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +14033,CACTU,7,2019-06-23 00:06:45,2019-07-04 03:42:27,2019-07-04 23:45:14,2,498,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14034,CONSH,1,2012-10-18 08:10:29,2012-11-24 18:47:56,2012-10-19 08:29:02,2,34.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14035,HUNGO,5,2014-03-22 23:59:54,2014-04-26 05:51:58,2014-03-24 11:25:44,1,427.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14036,SEVES,2,2012-09-01 15:32:41,2012-09-16 18:15:36,2012-09-05 18:00:40,2,289.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14037,LINOD,6,2016-04-26 20:04:36,2016-05-21 06:07:53,2016-05-02 11:37:51,3,504.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14038,KOENE,4,2017-11-03 01:50:07,2017-11-17 11:12:17,2017-11-25 20:16:44,1,267.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14039,FOLKO,9,2023-06-06 06:01:43,2023-06-14 12:14:17,2023-06-08 02:49:04,3,74.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14040,HILAA,1,2016-05-10 02:54:24,2016-06-13 07:49:02,2016-05-19 19:00:43,2,293.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14041,LONEP,4,2015-08-19 05:29:39,2015-09-15 16:23:36,2015-08-19 18:48:15,2,134,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14042,MEREP,3,2021-01-18 14:12:28,2021-01-28 06:58:31,2021-01-29 10:11:16,1,255.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14043,QUICK,6,2016-09-23 12:38:47,2016-10-16 07:04:31,2016-09-27 03:27:58,1,391.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14044,LAZYK,6,2023-10-15 20:26:54,2023-11-14 03:55:38,2023-10-23 08:51:03,1,390.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14045,SEVES,8,2019-01-27 10:56:21,2019-01-30 07:24:43,2019-01-31 03:43:09,1,238.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14046,ANTON,1,2022-08-30 00:26:53,2022-09-04 04:15:14,2022-09-16 16:49:33,3,131.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14047,GROSR,6,2013-04-11 23:55:18,2013-05-04 07:08:19,2013-04-30 05:57:56,3,181,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14048,FRANK,7,2021-09-19 05:18:46,2021-10-10 00:15:36,2021-10-01 10:08:35,1,302.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14049,WELLI,4,2013-06-08 22:33:14,2013-08-01 20:49:00,2013-06-12 03:08:37,2,235.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14050,ANATR,1,2019-06-02 14:08:14,2019-07-14 21:44:55,2019-06-05 19:20:53,3,34,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14051,VICTE,7,2020-11-24 21:31:31,2021-01-10 20:10:14,2020-12-12 09:42:09,2,446.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14052,ERNSH,5,2019-10-07 19:04:43,2019-11-09 15:56:01,2019-10-12 18:56:24,2,41,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14053,QUEEN,1,2020-01-01 09:08:23,2020-02-02 04:27:32,2020-01-03 08:20:04,2,76.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14054,WARTH,6,2014-05-30 07:38:53,2014-07-19 13:02:57,2014-06-09 19:30:44,2,309.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14055,WANDK,5,2012-10-15 02:30:14,2012-10-29 19:19:15,2012-10-20 19:13:08,2,430.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14056,VALON,9,2020-10-23 18:27:54,2020-11-02 22:23:40,2020-11-12 18:15:25,1,367.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14057,BONAP,9,2021-01-26 20:24:47,2021-02-13 21:38:25,2021-01-27 11:09:13,2,83.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14058,SAVEA,7,2013-05-16 19:44:18,2013-05-20 23:43:02,2013-05-29 10:02:16,3,327.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14059,ERNSH,3,2019-12-24 22:23:39,2019-12-30 07:24:46,2019-12-31 15:50:43,3,90.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14060,AROUT,4,2023-03-26 22:42:46,2023-03-30 10:54:58,2023-04-04 21:01:12,1,363.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14061,GREAL,9,2021-02-27 17:31:43,2021-03-16 06:39:31,2021-03-08 23:38:44,1,495.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14062,GREAL,5,2022-07-20 13:17:03,2022-07-27 20:52:03,2022-07-20 19:32:38,1,302.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14063,BERGS,7,2018-02-16 08:51:05,2018-03-05 00:39:45,2018-02-26 18:12:39,3,53.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14064,THEBI,3,2018-01-13 12:31:59,2018-01-24 15:38:35,2018-02-01 17:30:07,3,390.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14065,FRANS,1,2015-09-06 22:39:48,2015-09-27 15:20:15,2015-09-12 02:25:28,3,132.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14066,FOLIG,6,2013-01-25 11:42:43,2013-01-26 20:00:13,2013-02-06 11:38:04,2,477.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14067,QUICK,6,2019-08-29 21:28:27,2019-09-18 10:00:50,2019-09-07 02:41:41,3,351.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14068,BLAUS,3,2014-05-04 13:05:39,2014-06-17 14:04:38,2014-05-09 11:07:36,3,363,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14069,LAZYK,3,2015-05-20 07:20:01,2015-05-31 09:23:11,2015-05-30 15:19:17,2,443,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14070,MAGAA,5,2013-09-01 19:48:04,2013-09-24 10:14:51,2013-09-13 22:56:54,1,21.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14071,WANDK,6,2022-06-30 23:30:38,2022-07-28 13:39:17,2022-07-01 10:10:26,3,340.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14072,REGGC,9,2015-05-07 22:47:44,2015-05-10 17:56:46,2015-05-18 17:53:43,2,253.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14073,QUEDE,7,2016-07-30 13:38:54,2016-09-03 18:52:36,2016-08-11 17:28:44,1,430.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14074,SEVES,3,2013-06-12 21:38:34,2013-06-20 06:20:08,2013-06-14 19:50:29,1,471.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14075,VINET,9,2018-12-26 14:40:36,2019-01-16 11:44:30,2018-12-27 12:19:54,1,300.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14076,ISLAT,6,2019-07-18 17:13:36,2019-07-31 15:00:18,2019-07-28 01:39:56,2,463.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14077,TRADH,2,2021-01-05 05:08:56,2021-02-13 18:52:55,2021-01-21 13:59:59,1,309.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14078,BLONP,7,2019-06-18 12:19:48,2019-07-28 03:48:20,2019-06-19 12:01:57,1,184,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14079,CENTC,2,2022-11-17 08:13:10,2023-01-02 18:47:08,2022-12-05 14:56:22,1,180.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14080,WARTH,6,2022-12-02 10:54:12,2023-01-04 02:10:28,2022-12-15 02:23:45,3,396,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14081,PICCO,3,2014-11-27 10:17:14,2014-11-28 06:13:15,2014-12-15 09:13:57,1,486.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14082,WARTH,7,2022-08-16 16:28:59,2022-09-20 15:27:41,2022-08-22 05:40:43,2,347.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14083,LINOD,9,2017-03-15 21:06:29,2017-04-17 11:57:48,2017-03-28 19:55:52,3,329,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14084,Val2 ,8,2015-03-08 18:03:30,2015-04-03 11:30:42,2015-03-08 22:26:23,2,380.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14085,FURIB,3,2017-03-25 03:25:35,2017-04-10 07:38:33,2017-03-26 17:46:48,2,350.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14086,FURIB,4,2016-08-31 12:52:19,2016-09-12 14:24:24,2016-09-07 13:36:18,2,305.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14087,EASTC,8,2017-02-27 11:10:54,2017-03-04 11:44:07,2017-03-01 14:57:07,3,189.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14088,LAMAI,9,2021-04-26 11:30:01,2021-04-30 09:00:37,2021-05-03 16:13:38,1,439.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14089,OLDWO,8,2022-02-21 08:59:28,2022-02-27 21:55:29,2022-02-25 16:04:19,3,540.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14090,NORTS,1,2014-06-21 01:24:37,2014-07-15 12:51:04,2014-06-22 22:38:32,1,84.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14091,ALFKI,8,2015-05-09 23:06:27,2015-05-20 12:36:35,2015-05-26 01:46:38,1,221.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14092,EASTC,2,2015-02-03 10:54:49,2015-02-11 20:13:00,2015-02-07 21:27:42,2,362.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14093,LILAS,5,2016-12-12 01:43:37,2016-12-24 03:03:30,2016-12-12 22:36:39,2,381.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14094,SPECD,3,2021-03-16 12:28:03,2021-03-26 01:24:15,2021-03-17 02:31:03,3,437.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14095,MEREP,9,2015-05-04 00:04:33,2015-05-13 00:34:50,2015-05-22 00:51:15,1,475.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14096,WILMK,8,2019-10-10 21:13:13,2019-11-03 04:52:50,2019-10-10 23:36:37,2,228.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14097,DUMON,5,2020-01-29 17:29:31,2020-02-24 01:07:55,2020-02-05 15:29:22,1,225.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14098,CONSH,2,2018-07-19 20:13:00,2018-07-25 19:52:52,2018-08-01 11:23:34,3,401.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14099,MORGK,2,2017-01-19 18:12:59,2017-02-10 06:57:24,2017-01-22 17:45:21,1,204.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14100,SUPRD,8,2022-03-16 17:23:37,2022-03-17 12:08:04,2022-03-17 00:48:49,3,69.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14101,TOMSP,2,2015-02-06 10:59:17,2015-02-19 00:54:12,2015-02-08 00:48:34,3,14.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14102,GALED,8,2015-04-19 22:04:22,2015-05-09 01:48:40,2015-04-27 12:02:54,2,325.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14103,RANCH,1,2014-05-13 15:43:49,2014-07-03 08:25:39,2014-05-15 08:10:39,1,409,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14104,FISSA,4,2012-10-05 02:40:37,2012-10-25 11:25:17,2012-10-11 00:12:06,1,304,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14105,LETSS,8,2013-11-12 02:11:08,2013-11-30 15:33:16,2013-12-09 16:32:25,1,117.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14106,ANATR,4,2015-12-24 03:00:50,2016-01-06 23:21:17,2015-12-31 19:49:17,3,21.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14107,WILMK,3,2022-12-27 03:56:58,2022-12-30 08:16:19,2023-01-01 07:50:42,2,264,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14108,ISLAT,4,2020-02-01 08:36:50,2020-02-11 12:50:39,2020-02-17 00:54:30,1,516.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14109,FRANK,2,2020-04-20 06:14:32,2020-05-07 15:58:28,2020-05-06 05:55:09,1,434.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14110,SANTG,6,2013-03-18 06:16:57,2013-03-24 07:21:56,2013-03-22 15:50:32,2,272.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14111,FRANK,2,2021-06-22 13:12:22,2021-07-25 06:36:35,2021-07-01 16:34:27,1,270.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14112,BONAP,4,2023-07-09 14:26:58,2023-07-21 19:23:49,2023-07-16 19:13:44,3,360.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14113,QUEEN,4,2021-06-04 10:52:17,2021-06-16 00:20:55,2021-06-08 08:08:31,1,497.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14114,TOMSP,7,2015-08-10 17:16:54,2015-08-23 17:32:18,2015-08-24 14:09:45,1,245.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14115,FURIB,7,2022-02-23 22:57:25,2022-02-28 15:04:17,2022-03-08 02:07:16,3,79,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14116,SEVES,1,2022-10-21 23:50:33,2022-11-07 18:25:34,2022-10-29 05:23:42,1,155.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14117,PARIS,8,2012-09-21 23:29:49,2012-09-24 14:13:54,2012-09-26 18:15:16,2,418.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14118,MORGK,1,2018-08-22 03:36:02,2018-10-10 01:37:47,2018-08-22 15:30:34,2,459.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14119,VALON,8,2016-05-19 08:15:13,2016-06-09 20:10:57,2016-06-04 20:55:41,2,103,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14120,VINET,9,2016-04-22 15:20:12,2016-04-28 15:15:25,2016-05-03 10:48:40,1,130.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14121,BONAP,7,2016-07-04 13:56:04,2016-07-07 17:24:34,2016-07-13 00:34:33,2,204.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14122,BERGS,9,2018-06-26 22:54:27,2018-07-09 14:38:33,2018-06-30 16:26:53,2,471.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14123,WILMK,4,2019-02-20 00:20:32,2019-02-24 19:54:45,2019-02-26 00:51:22,2,512.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14124,WELLI,9,2023-07-02 00:51:32,2023-07-03 23:21:21,2023-07-14 00:10:47,2,109,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14125,MAISD,1,2017-04-03 17:31:05,2017-04-12 23:28:20,2017-04-04 15:25:36,1,279.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14126,REGGC,9,2020-05-12 12:51:34,2020-05-15 14:15:29,2020-05-13 03:40:12,3,380,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14127,GREAL,1,2012-11-13 01:45:47,2012-12-10 09:51:45,2012-11-21 02:30:51,3,22.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14128,LONEP,8,2019-01-17 05:24:35,2019-01-28 10:38:06,2019-01-17 12:57:29,1,451.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14129,RICAR,4,2013-04-22 20:34:03,2013-05-05 02:28:18,2013-04-30 18:05:42,2,157.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14130,RATTC,5,2023-05-03 19:10:43,2023-05-04 11:47:07,2023-05-05 10:06:28,1,270.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14131,SPECD,4,2015-03-10 22:32:58,2015-04-19 12:15:13,2015-04-04 07:10:36,1,111.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14132,CENTC,9,2022-11-28 02:46:28,2022-12-17 17:26:57,2022-12-09 10:12:08,3,152.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14133,COMMI,8,2023-02-11 14:03:43,2023-03-07 22:51:46,2023-02-12 04:30:45,2,485,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14134,COMMI,2,2015-10-12 14:31:20,2015-11-25 17:12:07,2015-10-29 05:47:54,2,295.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14135,ANATR,7,2022-09-09 03:16:33,2022-09-22 16:22:14,2022-09-25 07:34:23,1,57.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14136,BSBEV,8,2013-03-08 07:14:09,2013-03-20 10:52:21,2013-03-12 17:21:08,2,169.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14137,THECR,4,2017-02-06 11:15:47,2017-03-10 21:45:17,2017-02-23 11:32:01,2,276.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14138,VALON,1,2016-09-16 19:52:38,2016-10-12 20:29:21,2016-09-24 16:56:13,2,373.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14139,SIMOB,2,2014-12-07 04:05:45,2015-01-07 19:19:48,2014-12-08 01:36:34,2,144.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14140,HANAR,2,2012-10-11 11:51:29,2012-11-12 04:24:40,2012-10-17 13:00:18,1,351.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14141,FURIB,5,2021-01-14 08:00:13,2021-01-17 20:49:39,2021-02-05 04:01:48,1,317,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14142,GOURL,8,2012-09-28 05:09:06,2012-10-18 15:22:55,2012-10-11 22:57:50,2,422.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14143,SEVES,3,2014-11-10 22:54:33,2014-11-23 05:26:23,2014-11-27 04:37:13,2,313.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14144,WANDK,9,2017-02-16 20:10:41,2017-02-28 14:48:46,2017-02-27 14:37:54,2,263.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14145,HANAR,4,2013-01-25 07:54:23,2013-01-29 16:38:25,2013-02-13 17:04:29,2,60.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14146,LAMAI,5,2019-06-13 07:48:44,2019-06-25 17:13:21,2019-06-18 06:14:10,1,38,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14147,BONAP,4,2021-03-05 21:58:14,2021-03-13 19:37:55,2021-03-06 01:58:18,1,84.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14148,FISSA,6,2016-06-02 23:06:22,2016-06-14 08:13:08,2016-06-16 03:05:19,1,188.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14149,SIMOB,9,2018-07-01 07:38:24,2018-07-13 21:58:38,2018-07-04 04:00:01,2,498.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14150,BONAP,6,2014-12-29 04:42:42,2015-01-06 00:14:19,2015-01-03 08:38:56,2,450.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14151,ROMEY,7,2018-05-29 23:10:20,2018-07-11 05:05:37,2018-06-12 05:31:25,1,159,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14152,WARTH,9,2018-08-02 06:38:26,2018-08-15 04:56:38,2018-08-05 06:07:39,3,483.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14153,GOURL,2,2014-09-06 06:22:27,2014-09-12 06:10:10,2014-09-20 11:13:10,1,190.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14154,WANDK,5,2023-02-11 21:09:45,2023-02-14 05:32:32,2023-02-12 12:08:02,3,336.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14155,SPECD,4,2017-04-12 15:54:24,2017-04-21 21:45:14,2017-04-13 19:54:34,3,25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14156,FOLKO,7,2019-10-10 18:22:51,2019-12-01 23:41:12,2019-10-21 21:43:01,1,74.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14157,ALFKI,4,2017-09-08 16:18:21,2017-09-25 13:33:46,2017-09-15 07:16:58,1,431.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +14158,RANCH,7,2020-09-04 20:58:38,2020-09-18 05:24:16,2020-09-14 14:36:15,1,107.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14159,LAMAI,1,2023-08-03 03:16:32,2023-09-03 10:48:30,2023-08-21 11:51:20,3,261,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14160,WANDK,6,2014-08-02 00:11:46,2014-08-04 18:32:37,2014-08-07 05:48:01,1,239.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14161,RICAR,3,2016-12-18 22:03:17,2016-12-27 17:44:52,2017-01-12 06:22:10,2,232.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14162,RANCH,7,2022-07-24 17:27:44,2022-08-15 20:10:37,2022-07-31 09:21:22,2,213.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14163,WANDK,3,2019-08-14 15:55:36,2019-09-16 19:42:52,2019-08-17 21:20:32,3,156,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14164,ANATR,1,2017-09-25 18:13:06,2017-09-28 07:34:26,2017-10-15 17:40:47,2,379.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14165,GREAL,6,2020-09-01 04:21:33,2020-09-16 04:17:44,2020-09-03 14:09:46,1,31.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14166,QUICK,6,2012-11-10 01:06:55,2012-11-18 22:12:07,2012-11-10 18:12:51,1,40,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14167,BOLID,7,2022-12-30 07:13:25,2023-01-13 22:03:09,2023-01-21 21:36:19,2,145,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14168,PERIC,7,2017-10-15 01:10:29,2017-10-21 19:58:48,2017-10-23 03:19:19,3,309,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14169,VALON,6,2015-08-30 02:21:51,2015-10-02 12:14:48,2015-09-13 15:09:05,3,215.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14170,BSBEV,7,2021-12-24 19:27:30,2021-12-30 17:48:45,2021-12-25 11:19:05,2,100.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14171,TORTU,1,2023-08-02 10:56:47,2023-08-13 07:55:20,2023-08-04 18:59:11,1,58,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14172,VALON,8,2023-01-14 12:35:36,2023-02-09 02:23:27,2023-01-15 20:05:36,1,321.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14173,TRADH,2,2016-07-23 06:14:53,2016-08-16 11:08:37,2016-07-29 10:16:31,2,441.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14174,PICCO,1,2018-10-11 12:13:40,2018-11-19 07:03:23,2018-10-16 01:58:14,3,393.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14175,FRANR,6,2021-03-21 13:38:21,2021-04-15 11:23:41,2021-03-28 19:45:54,1,488.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14176,SIMOB,3,2021-11-12 07:41:10,2022-01-04 07:13:31,2021-11-19 05:53:06,1,413.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14177,CHOPS,3,2023-10-12 00:02:02,2023-10-17 02:57:41,2023-10-13 16:57:23,3,313.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14178,MAISD,6,2012-08-06 02:39:24,2012-08-11 10:55:05,2012-08-29 15:33:15,2,179.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14179,WHITC,9,2018-02-08 20:54:54,2018-02-18 07:43:00,2018-02-10 12:58:39,3,286.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14180,LAZYK,6,2013-01-17 18:15:05,2013-01-30 09:30:36,2013-01-21 19:29:18,2,446.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14181,DUMON,9,2013-12-13 16:35:23,2013-12-16 23:58:19,2013-12-19 10:15:06,3,253,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14182,SEVES,4,2014-12-07 14:47:35,2014-12-17 01:07:24,2014-12-10 12:59:28,1,217,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14183,TOMSP,7,2023-05-21 22:45:22,2023-06-19 09:03:52,2023-05-27 21:38:40,2,427.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14184,GODOS,1,2013-06-17 22:41:02,2013-06-28 18:44:07,2013-07-04 03:17:35,1,214.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14185,LAZYK,9,2020-05-25 06:11:47,2020-05-31 14:14:53,2020-05-30 16:44:52,1,414.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14186,FOLKO,4,2013-11-05 08:42:44,2013-11-19 01:48:49,2013-11-13 09:28:38,2,208.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14187,Val2 ,5,2016-11-30 07:16:33,2016-12-31 22:05:42,2016-12-05 05:21:56,2,447.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14188,COMMI,3,2022-12-29 18:31:42,2023-01-04 19:42:00,2023-01-15 16:16:50,2,132.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14189,LEHMS,9,2017-03-29 02:25:12,2017-04-20 07:15:19,2017-04-20 23:27:43,1,72.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14190,VINET,8,2023-06-29 10:09:56,2023-07-26 11:10:35,2023-07-02 12:39:41,2,277.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14191,FRANR,9,2021-10-03 06:21:30,2021-10-16 23:46:00,2021-10-12 09:06:20,2,162.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14192,FRANS,5,2021-11-16 20:03:25,2021-12-17 15:52:14,2021-11-18 06:46:42,3,97,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14193,OCEAN,6,2023-06-19 16:11:11,2023-07-16 16:58:42,2023-07-02 01:47:24,3,56.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14194,WARTH,9,2022-10-27 14:09:41,2022-11-06 23:16:59,2022-11-01 23:21:57,3,469.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14195,LINOD,5,2013-12-09 02:49:25,2013-12-16 18:19:16,2013-12-16 09:26:24,1,510.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14196,VAFFE,9,2020-09-03 08:49:37,2020-09-16 18:14:26,2020-09-27 12:51:22,2,112.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14197,BERGS,7,2015-07-11 13:08:36,2015-08-08 06:17:13,2015-07-15 18:43:44,2,319.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14198,COMMI,9,2018-12-04 10:13:40,2018-12-26 00:42:43,2018-12-04 23:10:00,2,165.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14199,LEHMS,9,2022-07-07 02:04:07,2022-07-07 14:15:12,2022-07-09 23:13:28,2,134.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14200,BERGS,3,2019-07-18 05:59:41,2019-08-04 20:39:49,2019-07-27 03:20:38,1,281.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14201,RICAR,7,2019-05-29 06:03:42,2019-07-11 03:19:02,2019-05-29 19:57:50,2,156.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14202,NORTS,3,2018-11-17 02:48:31,2019-01-01 23:12:07,2018-11-19 20:32:43,3,65.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14203,OTTIK,4,2016-10-25 05:19:37,2016-11-01 06:03:09,2016-11-18 18:36:10,2,128,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14204,BERGS,7,2015-05-23 15:41:32,2015-06-04 11:25:08,2015-05-25 11:15:20,2,431.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14205,DUMON,9,2012-10-23 17:03:48,2012-11-09 16:29:04,2012-11-02 13:13:11,3,214.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14206,FRANR,2,2020-06-29 10:19:41,2020-08-13 14:49:01,2020-07-16 17:39:09,1,126.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14207,HUNGO,8,2013-09-06 11:50:58,2013-09-08 08:24:28,2013-09-10 14:12:44,3,133.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14208,ALFKI,6,2012-10-06 12:09:23,2012-10-24 10:18:06,2012-10-07 03:17:51,1,387,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14209,SPLIR,9,2016-07-15 06:54:12,2016-08-09 12:24:29,2016-07-21 00:11:21,1,287.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +14210,FURIB,2,2020-12-09 07:02:05,2020-12-25 13:35:40,2020-12-26 21:25:10,2,127.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14211,THECR,1,2016-10-02 18:56:54,2016-10-18 05:57:53,2016-10-15 04:55:03,3,187.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14212,PARIS,2,2020-05-31 05:48:04,2020-06-18 11:00:50,2020-06-01 03:34:43,1,290.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14213,PERIC,8,2013-05-08 23:00:47,2013-06-07 02:31:31,2013-05-10 09:46:17,3,25.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14214,ALFKI,6,2020-04-10 12:23:16,2020-04-24 04:36:28,2020-04-11 10:01:07,2,94,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14215,TRAIH,5,2022-07-11 21:39:17,2022-07-23 08:01:37,2022-07-19 23:07:47,2,293.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14216,NORTS,3,2012-11-07 01:28:00,2012-11-15 17:20:48,2012-11-10 11:08:02,2,453,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14217,OTTIK,4,2022-06-20 06:01:26,2022-06-25 04:23:36,2022-06-21 08:14:21,3,320.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14218,HILAA,1,2018-01-10 07:05:57,2018-01-24 12:37:16,2018-01-28 01:24:05,1,70,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14219,LINOD,1,2012-08-11 20:45:51,2012-09-02 21:17:08,2012-08-13 12:22:02,2,175.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14220,CACTU,4,2021-07-29 01:31:43,2021-08-13 17:20:26,2021-08-10 19:20:08,1,104,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14221,RANCH,7,2016-07-28 19:32:57,2016-08-24 19:59:53,2016-08-02 02:37:48,3,187,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14222,KOENE,4,2019-11-26 19:19:42,2019-12-05 00:55:01,2019-11-28 03:05:38,3,100.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14223,GOURL,2,2021-06-10 02:26:57,2021-07-05 00:07:34,2021-06-18 17:30:23,2,237.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14224,DRACD,6,2019-07-13 05:59:18,2019-08-11 00:55:31,2019-07-18 18:42:31,1,442.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14225,CENTC,6,2016-06-28 16:15:25,2016-07-18 19:06:02,2016-07-03 12:19:55,3,368.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14226,ANTON,6,2018-08-03 16:22:11,2018-09-02 11:37:51,2018-08-04 03:27:10,3,244.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14227,LINOD,6,2016-12-24 05:48:49,2017-01-13 22:37:47,2016-12-27 09:23:16,1,18.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14228,PRINI,6,2020-06-03 18:24:39,2020-06-10 20:26:19,2020-06-20 18:03:39,1,78.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14229,WARTH,1,2019-01-08 18:22:05,2019-02-15 16:09:32,2019-01-24 17:59:21,2,258.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14230,WELLI,2,2014-05-15 10:09:20,2014-06-09 01:37:37,2014-05-18 01:11:01,1,299.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14231,ANTON,2,2012-09-23 22:22:43,2012-11-10 01:24:27,2012-09-29 02:30:47,2,286,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14232,LEHMS,3,2020-05-29 15:44:52,2020-07-14 13:46:14,2020-05-31 02:58:10,1,439.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14233,FISSA,4,2016-02-07 21:40:13,2016-02-24 17:17:07,2016-02-09 04:38:07,3,176.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14234,DRACD,8,2023-06-22 21:01:30,2023-07-03 13:17:40,2023-06-27 14:23:20,3,153.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14235,OTTIK,1,2014-10-08 09:45:21,2014-11-24 06:28:13,2014-10-11 17:58:21,1,13.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14236,TRAIH,3,2020-01-27 01:48:18,2020-02-29 09:06:23,2020-02-04 15:46:05,3,155,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14237,OLDWO,7,2020-08-12 20:08:38,2020-08-24 01:22:17,2020-08-19 11:16:09,2,172,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14238,FURIB,4,2022-04-09 01:39:33,2022-05-06 18:21:54,2022-04-17 12:58:16,2,348.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14239,HANAR,3,2013-02-18 16:34:24,2013-03-16 04:31:47,2013-02-21 18:31:02,3,157.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14240,TORTU,6,2016-05-11 06:51:16,2016-05-28 00:56:48,2016-05-13 21:24:16,3,316.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14241,FURIB,5,2015-09-15 15:48:44,2015-09-30 09:09:23,2015-09-17 03:29:19,2,470.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14242,DUMON,3,2020-03-08 04:48:45,2020-04-17 12:16:46,2020-03-09 12:50:00,1,206.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14243,RICAR,2,2015-04-01 21:48:50,2015-04-29 22:00:29,2015-04-10 00:38:36,1,443,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14244,CENTC,8,2023-10-07 06:44:03,2023-11-25 07:25:56,2023-10-13 02:00:55,3,431.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +14245,MAISD,7,2017-04-03 21:48:21,2017-04-11 07:42:34,2017-04-14 07:51:00,1,365.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14246,GROSR,1,2023-04-25 06:47:39,2023-04-30 21:23:07,2023-05-06 09:57:34,1,420.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14247,REGGC,4,2012-08-25 01:23:33,2012-09-23 00:33:04,2012-08-31 17:40:32,2,42.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14248,WHITC,4,2013-07-03 05:46:05,2013-07-07 00:49:20,2013-07-15 01:51:14,1,318.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14249,TOMSP,9,2021-12-21 08:17:40,2021-12-24 23:18:34,2021-12-28 10:52:31,1,172.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14250,EASTC,6,2012-10-07 14:07:37,2012-10-20 17:56:18,2012-10-13 02:41:38,2,348.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14251,TORTU,9,2020-01-02 23:11:19,2020-01-06 22:02:12,2020-01-18 20:11:24,2,124.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14252,ALFKI,2,2023-03-02 10:20:49,2023-04-05 08:14:27,2023-03-05 05:49:21,3,514.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14253,CONSH,2,2012-09-29 12:32:17,2012-10-10 13:49:49,2012-10-01 04:31:48,1,474.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14254,ANTON,5,2017-06-19 03:08:38,2017-07-11 11:00:44,2017-06-20 00:59:32,3,88.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14255,RATTC,8,2020-07-31 22:36:05,2020-08-10 20:44:34,2020-08-23 08:12:43,3,355.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14256,MAGAA,9,2014-10-02 07:36:24,2014-10-15 00:59:27,2014-10-11 00:51:29,3,200,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14257,DUMON,5,2016-10-18 19:08:19,2016-11-14 19:51:08,2016-11-14 07:00:01,2,237,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14258,QUEEN,1,2015-08-08 20:31:40,2015-08-20 22:57:49,2015-08-12 07:44:40,3,85.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14259,OCEAN,7,2021-10-13 14:43:13,2021-10-23 06:32:54,2021-10-31 20:58:03,1,100.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14260,LILAS,6,2018-04-27 06:42:59,2018-05-21 22:35:18,2018-04-29 01:44:19,1,387.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14261,DRACD,6,2020-07-21 11:16:22,2020-07-25 13:26:29,2020-07-24 05:31:49,2,280.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14262,RANCH,9,2012-07-12 11:39:39,2012-07-24 22:57:09,2012-07-13 21:20:47,3,399.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14263,LETSS,4,2014-01-26 23:20:17,2014-02-04 12:15:22,2014-01-28 10:23:12,3,409.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14264,CENTC,4,2022-01-26 16:18:42,2022-01-30 05:24:13,2022-02-10 14:12:58,1,121,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14265,OTTIK,3,2023-09-15 12:57:48,2023-09-27 10:28:17,2023-09-16 05:53:21,1,294.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14266,QUEEN,6,2018-11-01 08:11:15,2018-11-22 02:12:47,2018-11-10 09:15:18,3,174.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14267,ISLAT,9,2019-06-15 10:59:55,2019-06-29 01:57:31,2019-06-25 02:05:16,1,173.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14268,MAGAA,9,2018-10-20 13:28:41,2018-11-17 19:52:55,2018-10-27 20:16:53,1,148.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14269,BONAP,3,2013-11-12 01:47:06,2013-12-15 17:39:48,2013-12-06 01:36:47,3,267.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14270,LETSS,5,2021-12-07 14:36:49,2021-12-31 08:43:20,2021-12-10 17:35:12,3,192,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14271,FRANS,6,2020-05-01 15:49:05,2020-05-14 08:46:56,2020-05-03 17:19:22,3,64,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14272,RANCH,1,2016-10-15 07:12:14,2016-10-21 21:20:11,2016-11-03 04:18:55,3,420.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14273,SIMOB,1,2015-09-07 10:34:44,2015-09-10 00:43:43,2015-09-25 17:18:42,3,430.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14274,BOLID,1,2021-12-28 04:38:09,2022-01-04 16:26:12,2022-01-07 15:21:38,2,158,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14275,GREAL,3,2022-12-16 20:28:12,2022-12-30 22:56:47,2022-12-29 11:25:53,2,23.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14276,BERGS,4,2018-11-15 01:08:02,2018-11-18 19:50:45,2018-11-19 12:47:16,3,106.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14277,QUEEN,1,2015-12-01 00:51:55,2015-12-08 14:34:52,2015-12-24 16:22:20,1,49.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14278,QUEEN,7,2013-02-06 03:38:26,2013-02-17 03:04:51,2013-02-12 16:26:47,3,132,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14279,SUPRD,2,2023-06-11 10:29:04,2023-06-26 03:48:54,2023-07-01 16:24:17,1,433.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14280,HUNGO,1,2021-03-03 18:05:42,2021-03-18 14:22:03,2021-03-09 05:53:19,1,276.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14281,BSBEV,9,2012-10-25 08:07:12,2012-11-11 12:31:51,2012-10-27 02:23:48,2,57.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14282,Val2 ,6,2020-07-25 00:54:03,2020-08-14 21:10:52,2020-07-29 03:48:54,3,267,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14283,BOTTM,5,2017-06-21 06:30:25,2017-07-03 05:45:36,2017-06-24 12:43:30,3,437,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14284,ANATR,2,2017-10-21 05:20:48,2017-10-28 03:43:00,2017-10-29 22:18:18,3,325.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14285,LINOD,6,2020-02-06 03:22:44,2020-02-23 13:38:05,2020-02-09 11:37:01,2,361.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14286,QUEEN,3,2018-10-08 02:35:41,2018-10-10 18:48:01,2018-10-22 17:33:32,3,325,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14287,TOMSP,4,2023-04-10 07:47:05,2023-04-26 10:10:34,2023-04-12 14:02:02,1,82.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14288,FRANR,6,2023-10-23 03:20:11,2023-11-16 01:42:26,2023-11-19 02:55:24,3,331.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14289,MAGAA,4,2021-10-02 23:52:35,2021-10-21 06:11:49,2021-10-09 17:39:34,2,164.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14290,LETSS,1,2019-01-09 22:25:39,2019-01-24 10:08:02,2019-01-14 04:09:48,1,398.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14291,QUEEN,8,2016-05-25 18:33:42,2016-06-14 05:22:32,2016-06-04 10:07:45,3,20.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14292,CACTU,9,2015-01-13 12:34:31,2015-01-16 05:04:22,2015-01-18 15:44:11,1,145.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14293,LETSS,9,2017-01-16 16:44:19,2017-02-20 15:33:35,2017-01-19 14:08:17,2,57,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14294,LEHMS,6,2017-06-08 19:46:17,2017-06-10 16:07:01,2017-06-09 15:04:53,3,422.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14295,SAVEA,5,2013-10-06 17:53:39,2013-10-07 14:06:42,2013-10-18 07:53:02,3,202.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14296,FOLKO,3,2012-10-23 18:56:37,2012-10-26 15:25:07,2012-10-28 08:57:48,2,519.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14297,WELLI,3,2022-02-02 06:22:33,2022-02-17 03:55:52,2022-02-05 15:42:02,3,496,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14298,FRANK,9,2023-02-24 12:59:13,2023-02-27 18:14:44,2023-02-26 12:37:36,2,138.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14299,WANDK,2,2020-04-19 01:24:48,2020-04-28 16:53:43,2020-04-26 13:45:28,1,254.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14300,LACOR,3,2013-04-21 03:30:08,2013-05-18 05:44:46,2013-04-24 01:19:15,2,478.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14301,PRINI,5,2020-06-20 03:58:27,2020-07-19 18:49:27,2020-06-20 16:24:30,3,404.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14302,ALFKI,9,2020-06-13 10:10:14,2020-06-15 17:37:38,2020-06-18 01:01:21,3,338.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14303,GREAL,5,2014-11-22 09:31:48,2014-11-30 20:59:33,2014-12-17 07:10:56,3,168,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14304,GOURL,4,2021-12-13 15:04:49,2021-12-16 18:07:43,2022-01-02 15:13:30,2,323,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14305,MORGK,5,2017-11-10 08:39:31,2017-11-24 12:41:43,2017-11-13 02:56:49,3,152,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14306,BSBEV,9,2021-12-02 14:46:33,2021-12-29 01:51:50,2021-12-08 04:52:30,3,86.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14307,LETSS,8,2017-10-21 03:50:39,2017-11-01 15:45:53,2017-10-27 00:23:48,1,205.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14308,LAZYK,6,2017-01-21 07:57:23,2017-01-25 13:56:31,2017-02-03 20:39:35,3,151.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14309,DRACD,5,2014-03-23 04:08:07,2014-04-08 05:56:49,2014-03-27 00:28:56,3,139.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14310,RANCH,1,2014-07-29 22:39:19,2014-08-03 19:30:57,2014-08-07 14:50:26,2,304,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14311,THEBI,5,2014-10-09 18:58:36,2014-11-11 01:38:15,2014-10-29 13:10:34,1,232,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14312,HUNGO,4,2021-11-20 05:03:06,2021-12-11 19:20:16,2021-12-02 04:32:46,3,501.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14313,VICTE,8,2014-04-03 04:36:27,2014-04-17 11:12:39,2014-04-14 19:52:06,1,485.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14314,PARIS,8,2018-07-17 06:56:19,2018-08-10 01:49:36,2018-07-23 17:48:31,3,242.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14315,LAUGB,3,2019-01-12 14:22:31,2019-01-22 03:52:16,2019-01-14 00:24:36,2,211.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14316,BLAUS,9,2015-01-23 01:52:14,2015-01-29 21:13:48,2015-02-05 03:20:23,3,106.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14317,CENTC,5,2019-03-29 02:58:12,2019-04-15 12:51:48,2019-04-01 17:34:49,3,97,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14318,GALED,3,2019-08-01 06:41:51,2019-08-26 20:16:28,2019-08-17 17:39:11,1,435.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14319,CENTC,5,2023-06-01 04:23:00,2023-06-05 21:14:08,2023-06-10 22:53:31,2,23.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14320,GREAL,3,2015-11-12 05:28:25,2015-12-04 04:28:32,2015-11-23 16:41:16,3,362.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14321,QUEDE,7,2014-04-06 21:40:17,2014-04-18 02:08:51,2014-04-27 08:19:11,2,36.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14322,LAZYK,3,2015-07-11 06:46:37,2015-07-23 01:05:29,2015-08-02 02:08:44,2,235.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +14323,LEHMS,5,2016-09-30 11:50:51,2016-10-27 09:12:26,2016-10-02 10:42:35,2,197.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14324,RATTC,6,2016-12-30 11:55:05,2017-02-04 09:57:50,2017-01-06 16:39:57,2,503.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14325,PICCO,6,2021-05-03 13:45:08,2021-05-09 20:49:04,2021-05-04 11:20:06,2,184.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14326,TORTU,4,2013-02-20 23:59:57,2013-02-28 16:42:41,2013-02-23 21:50:09,1,439,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14327,FRANK,8,2016-03-31 10:30:44,2016-04-26 15:08:41,2016-04-27 23:15:05,2,422.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14328,LEHMS,4,2013-11-26 04:38:15,2013-12-07 03:00:50,2013-11-30 20:41:39,3,383.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14329,LINOD,9,2016-06-11 21:52:50,2016-06-25 06:02:08,2016-07-07 01:34:07,1,185.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14330,PRINI,8,2022-07-21 09:12:06,2022-08-03 07:52:57,2022-07-22 08:12:19,3,312.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14331,BOTTM,5,2015-09-28 00:42:46,2015-09-30 17:15:21,2015-09-29 20:37:29,2,500.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +14332,ANTON,2,2019-10-04 08:36:37,2019-10-26 20:51:52,2019-10-04 18:31:22,1,503.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +14333,QUEDE,2,2020-02-21 02:39:11,2020-02-25 01:35:40,2020-03-09 22:35:30,2,289,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14334,SIMOB,2,2017-10-02 03:11:54,2017-10-22 21:16:20,2017-10-14 02:18:28,2,353,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14335,MAGAA,1,2020-06-06 11:31:21,2020-06-09 01:45:30,2020-06-16 01:49:58,1,444.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14336,TORTU,5,2021-06-26 10:49:03,2021-07-30 02:36:10,2021-07-07 00:16:42,1,126,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14337,VALON,9,2018-01-09 20:31:58,2018-01-26 07:02:09,2018-01-22 10:03:48,1,141,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14338,WANDK,8,2016-11-24 03:01:38,2016-11-25 13:57:12,2016-12-14 14:35:44,2,362.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14339,CONSH,8,2015-04-19 14:18:39,2015-05-09 11:26:15,2015-04-30 04:04:16,3,79.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14340,BOLID,4,2013-10-17 10:40:53,2013-10-24 12:54:01,2013-11-05 13:46:28,2,383.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14341,MEREP,5,2018-11-12 00:03:29,2018-11-14 20:09:52,2018-12-04 20:15:37,1,238.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14342,QUEDE,2,2015-06-11 21:36:39,2015-06-29 14:40:07,2015-06-15 09:44:16,3,90.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14343,LAMAI,9,2019-11-20 21:07:03,2019-11-25 14:09:01,2019-12-05 11:19:15,3,223.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14344,FOLIG,7,2018-07-19 01:32:52,2018-08-09 23:09:05,2018-07-21 15:20:45,3,31.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14345,LETSS,1,2014-08-09 03:24:20,2014-08-26 02:34:00,2014-08-19 11:35:18,1,224,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14346,CHOPS,3,2019-10-04 17:00:42,2019-10-08 06:10:09,2019-10-28 01:34:21,3,154.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14347,LAZYK,2,2021-07-02 06:24:40,2021-07-26 23:46:05,2021-07-05 17:46:52,1,509.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14348,ISLAT,8,2014-03-01 15:03:10,2014-03-08 05:48:37,2014-03-08 16:33:43,3,460,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14349,HILAA,7,2023-08-14 22:58:36,2023-09-07 19:58:14,2023-08-28 08:10:58,1,150,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14350,CONSH,5,2020-08-09 22:51:28,2020-08-14 15:29:59,2020-08-16 03:02:08,3,85.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14351,LONEP,2,2023-04-05 02:39:22,2023-04-15 04:16:51,2023-04-12 22:34:15,3,298.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14352,GODOS,6,2017-01-21 00:05:22,2017-02-03 18:10:43,2017-02-12 16:55:32,2,119.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14353,HANAR,4,2020-05-05 22:08:06,2020-05-12 16:17:56,2020-05-08 00:03:34,2,236.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14354,LEHMS,6,2014-04-19 08:17:29,2014-04-24 17:17:03,2014-04-22 02:05:18,3,100.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14355,RICAR,4,2014-01-06 07:24:50,2014-01-18 20:28:41,2014-01-10 19:08:11,2,226,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14356,MORGK,6,2014-09-11 21:27:53,2014-10-24 09:38:50,2014-10-03 15:07:56,3,185.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14357,CHOPS,4,2019-03-26 23:33:58,2019-04-28 00:36:02,2019-04-03 21:06:03,2,32,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14358,LAUGB,1,2022-07-17 01:04:45,2022-07-25 09:30:31,2022-08-01 12:21:33,1,65.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14359,LINOD,5,2016-10-07 12:56:24,2016-10-17 19:43:32,2016-10-07 14:13:50,2,236,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14360,DUMON,5,2014-05-26 08:45:08,2014-06-03 01:46:39,2014-06-03 01:48:01,3,488.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14361,PICCO,7,2023-04-24 17:11:14,2023-05-03 01:42:47,2023-04-29 04:03:21,1,349,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14362,BOTTM,6,2017-07-23 03:28:27,2017-08-13 10:27:39,2017-08-03 22:40:31,3,106.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14363,HUNGO,2,2012-08-23 08:04:28,2012-09-07 12:15:59,2012-08-25 00:19:23,3,480.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14364,GODOS,3,2015-09-04 00:18:05,2015-09-18 12:09:33,2015-09-16 20:23:28,3,203.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14365,COMMI,4,2013-10-12 19:29:28,2013-11-03 14:29:31,2013-10-18 12:05:48,3,299.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14366,ANTON,9,2021-06-24 07:44:00,2021-07-04 13:58:00,2021-06-25 04:13:35,3,383.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14367,LEHMS,6,2015-08-24 13:15:03,2015-08-24 21:23:38,2015-09-08 18:30:24,3,316.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14368,WHITC,9,2020-02-14 20:59:11,2020-03-16 10:14:38,2020-03-02 01:24:30,2,267.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14369,PRINI,7,2021-07-05 09:11:41,2021-07-07 21:38:00,2021-07-18 10:37:42,3,293,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14370,LONEP,7,2015-06-08 04:57:28,2015-06-19 01:36:47,2015-06-09 09:32:17,2,277,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14371,HUNGC,4,2015-03-29 08:59:59,2015-04-02 06:12:03,2015-04-01 14:54:45,1,294.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14372,RATTC,7,2012-12-24 11:51:42,2013-01-09 15:05:28,2012-12-28 05:12:08,2,259.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14373,PICCO,4,2013-06-24 11:33:05,2013-07-01 23:11:52,2013-06-25 21:14:58,3,162.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14374,TOMSP,1,2014-06-28 14:25:53,2014-07-04 15:11:32,2014-06-29 10:58:03,3,319.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14375,FISSA,7,2021-04-06 23:51:52,2021-04-08 04:38:48,2021-04-15 23:35:57,3,328,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14376,TORTU,5,2015-01-18 01:23:34,2015-02-23 15:23:10,2015-01-22 13:53:08,2,235.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14377,OTTIK,9,2021-05-07 14:10:23,2021-05-15 21:01:58,2021-05-14 05:11:19,2,56.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14378,PERIC,7,2020-04-13 23:19:19,2020-05-08 03:38:14,2020-04-22 12:01:41,3,21.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14379,SPECD,2,2016-12-02 06:18:16,2016-12-09 21:04:43,2016-12-15 16:35:28,3,213.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14380,VALON,3,2018-05-06 10:07:47,2018-06-26 10:03:18,2018-05-08 06:20:44,2,49,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14381,CHOPS,4,2021-07-12 23:21:19,2021-08-05 00:59:26,2021-07-21 01:22:38,2,389.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14382,BLAUS,2,2019-12-22 18:31:19,2020-01-17 18:40:57,2020-01-01 12:53:28,3,65,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14383,LAMAI,1,2021-06-23 07:26:34,2021-07-01 14:56:38,2021-06-25 10:29:18,2,429,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14384,HILAA,5,2012-12-27 06:11:08,2013-01-06 00:40:33,2013-01-18 01:21:42,1,326.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14385,FOLIG,6,2017-10-06 02:09:44,2017-11-10 22:15:02,2017-10-11 08:10:17,2,510.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14386,BERGS,8,2017-06-04 07:01:13,2017-07-16 10:42:56,2017-06-12 16:03:02,2,268.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14387,HILAA,4,2016-08-09 08:41:37,2016-08-29 22:39:24,2016-08-29 01:30:01,3,366.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14388,LETSS,1,2022-05-10 03:52:33,2022-05-12 20:05:23,2022-05-12 06:44:05,3,49.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14389,WANDK,2,2022-08-29 03:28:57,2022-09-17 20:33:02,2022-09-21 21:35:57,3,499.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14390,RICSU,9,2018-03-03 22:33:54,2018-03-14 20:57:00,2018-03-07 17:26:25,2,290.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14391,ROMEY,5,2016-03-18 19:52:23,2016-03-20 02:19:51,2016-03-24 08:46:46,2,367.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14392,LACOR,7,2022-05-01 22:14:24,2022-05-17 08:19:56,2022-05-03 05:31:22,2,287.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14393,MAGAA,4,2018-01-22 00:15:46,2018-02-10 05:44:07,2018-01-23 16:54:34,1,529.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14394,RICSU,2,2018-04-16 04:20:44,2018-04-23 14:07:59,2018-04-24 22:05:14,2,444.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14395,RANCH,1,2013-04-24 20:10:50,2013-06-20 13:22:26,2013-04-25 23:16:56,2,100,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14396,KOENE,1,2013-07-19 10:21:41,2013-07-29 13:48:25,2013-07-25 18:59:33,2,458.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14397,QUICK,1,2016-07-03 16:05:57,2016-07-10 00:40:52,2016-07-12 08:32:42,2,102.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14398,WELLI,8,2017-06-22 23:31:02,2017-06-23 12:02:03,2017-06-26 01:48:55,2,227.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14399,VINET,1,2020-02-13 05:52:53,2020-02-17 01:57:37,2020-03-01 02:47:53,2,184,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14400,EASTC,4,2019-08-24 18:34:34,2019-09-24 06:36:40,2019-08-30 02:20:36,2,146,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14401,AROUT,2,2019-09-13 13:07:23,2019-09-23 02:41:53,2019-09-14 04:12:18,1,318.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14402,FISSA,8,2020-01-08 21:20:16,2020-02-04 22:47:36,2020-01-10 15:58:19,2,263,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14403,ANATR,7,2020-09-09 06:42:32,2020-10-03 04:09:13,2020-09-15 14:39:49,3,22.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14404,WARTH,2,2023-10-15 06:54:39,2023-10-17 14:00:30,2023-10-17 22:58:53,1,339.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14405,BLONP,3,2021-11-24 15:58:20,2021-12-20 00:44:48,2021-11-29 05:51:24,3,95.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14406,LACOR,8,2015-06-01 19:32:43,2015-06-27 02:08:26,2015-06-08 05:14:14,3,320.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14407,FISSA,1,2020-06-23 22:45:18,2020-07-24 06:13:45,2020-07-09 06:08:10,2,258,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14408,QUICK,7,2016-11-21 21:20:24,2016-12-18 20:26:20,2016-11-21 23:52:53,3,400,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14409,SPLIR,3,2013-11-23 12:47:26,2013-12-10 18:02:59,2013-12-04 02:14:06,3,457.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14410,GODOS,8,2020-01-24 22:21:19,2020-02-15 05:42:01,2020-02-07 19:17:38,1,352.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14411,WARTH,1,2018-06-02 23:57:24,2018-06-21 07:30:30,2018-06-15 20:11:29,2,75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14412,REGGC,1,2020-06-01 07:34:57,2020-06-25 20:16:50,2020-06-14 11:18:48,1,414,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14413,VAFFE,9,2015-01-22 23:26:59,2015-01-29 11:12:04,2015-01-27 07:04:59,3,147,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14414,TORTU,8,2020-03-16 18:42:39,2020-03-24 00:25:05,2020-03-25 10:43:23,1,75.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14415,HUNGO,3,2017-12-23 04:24:10,2018-01-27 13:06:35,2017-12-23 08:02:46,2,378.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14416,CONSH,4,2018-04-29 03:17:34,2018-05-19 00:40:13,2018-05-15 00:14:30,1,324.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14417,PERIC,1,2019-11-08 16:21:36,2019-11-22 07:04:06,2019-11-28 03:55:50,1,506.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14418,FOLIG,1,2019-04-29 04:41:56,2019-05-15 20:00:52,2019-04-29 07:25:12,3,229.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14419,DUMON,1,2017-02-01 16:22:33,2017-02-28 17:14:51,2017-02-22 11:44:51,2,82.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14420,SEVES,8,2017-12-01 07:49:39,2017-12-06 02:16:28,2017-12-09 08:59:41,3,463,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14421,VALON,9,2020-04-07 08:19:39,2020-04-28 14:43:27,2020-04-27 04:59:19,1,102.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14422,RANCH,6,2018-06-03 01:52:53,2018-06-09 08:21:55,2018-06-14 20:30:43,3,396.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +14423,KOENE,3,2012-09-04 08:19:09,2012-09-06 22:35:14,2012-09-22 13:34:18,2,105.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14424,PRINI,8,2015-08-18 14:53:31,2015-08-20 06:07:45,2015-08-22 07:10:31,2,455.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14425,LONEP,1,2015-04-11 11:09:29,2015-05-21 21:54:25,2015-04-20 08:30:45,3,516.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14426,MORGK,5,2019-06-01 04:50:52,2019-06-02 22:45:12,2019-06-04 01:43:55,3,169,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14427,CONSH,3,2021-09-22 19:33:01,2021-09-26 10:09:52,2021-09-26 14:23:30,2,388.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14428,DRACD,8,2013-06-08 16:58:52,2013-06-23 07:24:18,2013-06-14 01:32:55,3,39.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14429,VICTE,2,2012-08-27 09:50:13,2012-10-04 02:00:36,2012-08-31 17:19:25,3,234.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14430,FRANR,4,2012-08-13 20:30:03,2012-08-14 05:20:13,2012-08-30 12:29:31,2,281.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14431,ANATR,3,2020-12-27 06:07:50,2021-01-08 17:38:22,2021-01-02 18:05:40,1,207,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14432,CHOPS,9,2021-06-20 12:15:07,2021-06-26 20:31:40,2021-06-20 14:12:11,1,404.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14433,ERNSH,8,2012-10-11 04:17:49,2012-10-24 13:02:51,2012-10-12 04:31:08,2,324.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14434,COMMI,6,2016-11-11 00:51:42,2016-11-27 01:46:19,2016-11-18 05:52:04,2,91.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14435,PERIC,8,2013-05-21 03:41:22,2013-06-08 11:42:25,2013-05-21 13:44:05,2,126.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14436,BERGS,5,2015-09-16 23:14:58,2015-10-05 09:19:36,2015-09-19 08:32:28,3,260.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14437,SANTG,4,2020-11-08 15:56:29,2020-12-10 09:50:57,2020-11-10 03:21:56,3,29.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14438,ALFKI,7,2015-08-23 07:56:42,2015-09-07 01:09:31,2015-09-12 03:39:24,3,359,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14439,BOLID,7,2013-09-20 20:26:06,2013-10-04 21:09:23,2013-09-24 07:43:43,2,352.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14440,LEHMS,8,2014-08-03 00:23:23,2014-08-20 00:14:22,2014-08-03 03:24:54,1,136,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14441,CHOPS,6,2017-06-23 18:42:53,2017-07-31 22:00:46,2017-07-05 14:31:27,2,63,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14442,GOURL,6,2019-04-13 14:05:09,2019-04-24 03:13:53,2019-04-14 01:15:01,1,416,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14443,OCEAN,8,2021-11-20 08:04:13,2021-12-27 08:40:18,2021-11-24 07:38:41,3,170.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14444,SPLIR,1,2014-06-25 05:09:18,2014-07-18 03:29:22,2014-07-06 23:44:42,2,416.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14445,LINOD,7,2023-02-16 15:53:14,2023-03-07 00:53:20,2023-02-24 00:45:59,3,78,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14446,LAUGB,8,2016-05-09 10:39:42,2016-05-18 13:05:11,2016-05-10 05:38:55,1,55.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14447,QUEEN,9,2013-02-28 14:12:55,2013-04-02 13:33:29,2013-03-02 11:34:34,2,481.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14448,LETSS,1,2015-10-15 15:34:44,2015-11-02 07:42:44,2015-10-16 17:42:30,2,112.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14449,WILMK,9,2022-07-18 07:07:30,2022-08-12 14:24:42,2022-07-31 00:48:30,2,18.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14450,FRANK,6,2013-09-07 07:18:43,2013-10-02 09:16:09,2013-09-07 19:40:33,3,434,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14451,WHITC,9,2013-08-19 19:16:08,2013-09-10 20:27:36,2013-09-05 23:58:29,3,99.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14452,WILMK,8,2017-09-28 15:25:15,2017-10-19 14:05:49,2017-09-29 21:30:02,1,485,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14453,WARTH,7,2023-03-11 23:06:48,2023-03-20 06:09:27,2023-03-16 19:29:34,3,492.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14454,MORGK,3,2022-12-05 00:06:41,2023-01-11 07:03:41,2022-12-23 00:20:14,1,265,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14455,BSBEV,4,2020-02-23 12:46:55,2020-04-03 20:46:23,2020-03-05 14:50:54,3,374,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14456,ISLAT,4,2019-04-01 20:23:44,2019-04-04 08:02:10,2019-04-03 07:31:57,2,432.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14457,PRINI,8,2019-04-09 04:15:08,2019-05-10 12:14:44,2019-05-03 22:31:27,2,177.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14458,LINOD,4,2020-08-31 21:59:06,2020-09-08 12:24:48,2020-09-06 21:22:39,2,163,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14459,MEREP,4,2020-11-28 15:06:41,2020-12-23 07:00:56,2020-12-09 18:38:18,1,479.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14460,BOTTM,3,2019-07-22 22:10:15,2019-08-16 09:04:36,2019-07-26 18:58:09,1,132,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14461,PRINI,9,2015-12-13 18:39:19,2015-12-22 20:41:46,2015-12-19 01:22:39,2,88,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14462,THECR,1,2013-10-16 13:37:08,2013-10-25 18:25:04,2013-11-03 17:08:50,3,458,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14463,CONSH,5,2022-09-21 19:17:48,2022-09-28 14:46:06,2022-09-26 08:06:30,1,213.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14464,REGGC,8,2012-07-26 04:33:05,2012-08-28 09:44:49,2012-08-02 18:34:00,1,192.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +14465,SAVEA,9,2016-08-06 14:38:46,2016-08-17 23:15:30,2016-08-07 21:24:16,2,181.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14466,FURIB,7,2022-05-15 16:12:31,2022-06-25 19:58:40,2022-05-18 12:14:02,3,468.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14467,ANATR,8,2015-02-21 19:46:55,2015-03-16 18:19:50,2015-02-27 20:47:22,1,361.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14468,BERGS,7,2019-11-16 08:11:00,2019-11-21 22:31:41,2019-11-18 13:02:44,3,165.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14469,REGGC,5,2013-07-17 23:34:21,2013-07-31 00:58:35,2013-07-21 11:17:40,3,267,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14470,PERIC,8,2022-05-20 01:21:00,2022-06-01 06:00:39,2022-05-24 08:36:43,3,412.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14471,LILAS,3,2013-12-26 03:30:53,2014-01-09 20:53:04,2013-12-30 11:32:55,2,350.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14472,BSBEV,3,2023-10-01 22:43:55,2023-11-06 04:48:58,2023-10-08 06:09:36,3,405,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14473,FAMIA,3,2019-11-09 17:47:34,2019-11-29 21:16:55,2019-11-17 00:25:52,1,244.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14474,VINET,4,2016-02-08 12:02:37,2016-02-19 08:59:17,2016-02-26 01:18:18,1,221.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14475,ERNSH,5,2018-03-13 12:53:19,2018-03-16 10:35:57,2018-03-14 07:48:36,1,471.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14476,SANTG,2,2019-05-25 20:23:58,2019-05-29 07:13:03,2019-05-25 23:04:47,3,178.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14477,OCEAN,3,2018-05-14 20:43:38,2018-06-17 08:41:45,2018-06-03 10:38:16,2,194.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14478,REGGC,7,2022-02-03 12:57:39,2022-02-08 01:32:40,2022-02-07 22:26:25,2,82.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14479,MAISD,7,2022-12-25 06:41:31,2022-12-29 21:08:16,2022-12-31 12:12:04,1,84,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14480,WILMK,4,2022-07-18 18:26:00,2022-07-23 20:42:42,2022-07-25 06:44:51,2,449.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14481,RATTC,9,2013-03-09 12:26:24,2013-04-02 22:38:55,2013-03-28 07:28:55,1,497.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14482,CACTU,7,2020-07-25 03:09:11,2020-07-25 16:37:20,2020-08-09 11:25:00,1,227,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14483,THECR,2,2022-06-19 08:23:50,2022-07-17 08:04:37,2022-06-27 03:31:31,1,370,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14484,ISLAT,3,2015-04-20 13:00:13,2015-05-17 20:47:54,2015-04-21 05:29:08,1,206.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14485,WANDK,4,2015-06-26 02:18:54,2015-07-07 03:09:18,2015-07-12 07:16:48,1,59.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +14486,ALFKI,4,2022-11-26 09:25:20,2022-12-09 15:18:53,2022-12-18 16:18:46,2,116.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14487,THECR,1,2021-09-05 11:50:17,2021-10-20 02:15:04,2021-09-20 12:02:47,3,161,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14488,FRANS,4,2022-05-13 15:10:43,2022-05-21 18:06:20,2022-05-20 18:11:01,2,499.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14489,KOENE,5,2023-09-29 02:47:22,2023-10-02 03:59:32,2023-10-08 18:12:36,3,495.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14490,THEBI,1,2014-10-01 12:31:19,2014-10-14 17:15:23,2014-10-21 12:11:52,1,295.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14491,RANCH,5,2023-06-29 20:38:17,2023-07-12 11:33:05,2023-06-30 12:20:08,3,231.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14492,BLAUS,7,2012-11-29 09:58:45,2012-12-20 10:57:44,2012-12-15 16:26:56,1,227.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +14493,REGGC,5,2018-06-08 22:08:13,2018-06-11 11:08:42,2018-06-14 14:33:59,3,145.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14494,LETSS,2,2015-12-15 03:05:54,2016-01-27 06:05:20,2015-12-28 16:35:18,3,141.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14495,DRACD,7,2019-02-06 17:17:21,2019-03-14 16:48:17,2019-02-18 07:05:21,1,421.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14496,RICSU,7,2018-02-25 00:27:15,2018-03-01 00:43:56,2018-03-03 16:56:07,2,257,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14497,PICCO,8,2013-05-14 21:16:47,2013-05-27 07:48:44,2013-05-26 03:47:53,2,235.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14498,BERGS,4,2020-02-06 18:19:05,2020-04-03 13:38:33,2020-02-18 21:58:29,2,90.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +14499,LAMAI,9,2018-09-04 22:22:16,2018-09-09 09:02:02,2018-09-06 21:02:28,2,269.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14500,SAVEA,8,2018-02-02 10:32:01,2018-02-03 19:22:47,2018-02-13 13:30:26,2,336,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14501,COMMI,9,2014-10-01 05:46:28,2014-10-16 15:46:37,2014-10-04 20:44:02,1,197.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14502,PRINI,4,2023-05-08 03:48:15,2023-06-25 21:28:55,2023-05-13 00:40:49,2,18,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14503,PERIC,7,2015-05-11 11:15:35,2015-06-04 22:20:23,2015-05-20 21:21:48,3,446,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14504,SPLIR,7,2019-07-24 22:52:12,2019-08-10 06:08:02,2019-08-09 00:33:34,1,268.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14505,VAFFE,6,2013-04-13 23:10:17,2013-05-09 08:52:29,2013-04-22 00:28:27,1,194.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14506,CHOPS,1,2015-04-04 10:17:31,2015-04-13 00:39:24,2015-04-06 00:24:00,1,172,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14507,FISSA,5,2021-01-08 01:18:39,2021-02-12 20:39:47,2021-01-12 01:00:29,3,313.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14508,PICCO,3,2023-09-26 16:31:48,2023-10-07 18:05:17,2023-10-01 10:42:33,1,168,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14509,RANCH,6,2019-09-16 16:17:39,2019-10-13 22:30:07,2019-09-19 18:49:46,3,154,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14510,DUMON,7,2018-10-20 15:06:19,2018-12-02 19:30:38,2018-10-24 20:03:57,1,91.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14511,EASTC,3,2012-08-31 13:38:46,2012-10-08 12:12:19,2012-09-21 03:43:15,3,458.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14512,BOLID,1,2014-08-22 08:22:38,2014-08-31 14:02:53,2014-08-24 14:07:21,3,342.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14513,SPECD,7,2022-04-04 18:11:13,2022-04-07 06:16:52,2022-04-10 23:15:53,2,35.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14514,ROMEY,2,2019-05-03 06:48:02,2019-05-29 03:51:12,2019-05-08 00:24:30,2,289,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14515,FOLIG,1,2022-08-30 15:59:42,2022-09-01 18:59:22,2022-09-12 00:54:14,1,107.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14516,WELLI,6,2016-05-26 20:05:33,2016-07-06 15:29:33,2016-06-08 04:46:24,2,174.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14517,COMMI,9,2021-10-03 19:26:06,2021-10-10 12:09:01,2021-10-07 18:19:13,3,444.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14518,LEHMS,6,2016-01-04 07:56:22,2016-01-23 23:17:26,2016-01-05 02:01:44,2,204,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14519,QUEEN,4,2020-12-02 21:49:40,2020-12-26 18:44:16,2020-12-05 07:58:45,3,146.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14520,VAFFE,3,2022-04-20 14:28:11,2022-05-03 03:54:04,2022-04-21 18:46:20,2,417,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14521,BONAP,2,2018-10-23 23:45:26,2018-11-19 00:31:19,2018-10-29 04:00:08,1,513.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14522,CONSH,6,2016-04-03 05:26:41,2016-04-21 10:19:34,2016-04-04 11:49:30,1,332.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14523,THECR,4,2016-11-16 04:42:58,2016-12-12 03:11:16,2016-11-28 04:40:25,1,201.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14524,GODOS,7,2018-05-14 11:56:51,2018-06-25 20:35:26,2018-05-14 17:43:43,1,209.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14525,VINET,4,2023-06-01 13:14:54,2023-06-19 13:54:05,2023-06-25 17:41:18,1,330.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14526,CENTC,9,2021-09-23 02:52:19,2021-10-08 17:46:35,2021-09-29 06:59:33,1,12.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14527,TRADH,5,2022-10-19 03:07:37,2022-11-14 20:12:18,2022-10-20 21:29:28,1,257,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14528,TORTU,7,2018-01-26 16:52:04,2018-02-06 23:20:58,2018-02-10 22:11:54,2,210.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14529,ANTON,7,2015-10-18 15:28:03,2015-11-08 12:14:01,2015-10-20 20:11:06,2,390.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14530,QUICK,8,2013-10-23 18:24:50,2013-11-19 03:06:55,2013-10-28 20:29:58,3,268,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14531,QUICK,8,2013-12-20 19:21:36,2013-12-22 14:00:27,2013-12-23 00:47:20,1,213.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14532,WANDK,5,2020-11-24 22:58:10,2020-12-12 15:59:59,2020-11-26 04:58:15,1,257,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14533,ISLAT,8,2014-02-26 15:59:24,2014-04-04 14:09:44,2014-03-02 09:43:45,2,137.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14534,LAUGB,2,2017-09-02 18:29:18,2017-10-04 16:23:36,2017-09-12 02:02:26,1,157.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14535,SPECD,4,2020-04-17 22:05:20,2020-04-24 10:55:41,2020-04-19 05:08:12,2,149.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14536,LACOR,7,2023-07-27 13:55:36,2023-09-09 21:53:22,2023-07-27 21:24:39,2,393.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14537,FAMIA,5,2020-12-24 05:51:21,2021-01-07 13:53:27,2020-12-30 07:23:44,2,137.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14538,TRADH,8,2015-12-22 05:56:47,2016-01-11 17:54:46,2016-01-14 22:41:40,2,284,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14539,CACTU,7,2023-04-07 00:30:16,2023-04-13 07:14:14,2023-04-10 01:36:49,3,48.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14540,OLDWO,2,2021-06-26 04:59:13,2021-06-29 06:42:12,2021-06-26 07:37:00,2,316,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14541,RICSU,5,2019-02-14 00:29:36,2019-03-23 17:02:21,2019-02-14 11:03:09,3,218,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14542,ANATR,3,2018-10-10 10:24:50,2018-10-30 19:33:09,2018-10-17 12:50:42,1,160.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14543,EASTC,8,2013-03-30 06:45:12,2013-04-26 06:32:33,2013-04-11 01:17:47,2,384.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14544,TRAIH,6,2018-12-17 09:32:02,2019-01-07 02:40:46,2018-12-20 15:33:05,1,359,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14545,BLAUS,5,2014-06-18 16:39:50,2014-07-01 06:25:00,2014-06-20 04:28:03,2,197.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +14546,MORGK,3,2020-07-29 07:00:00,2020-08-07 06:58:40,2020-07-29 14:44:19,1,144.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14547,HANAR,6,2013-07-31 07:12:36,2013-08-10 11:21:27,2013-08-14 23:06:37,2,202.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14548,FISSA,9,2018-04-27 06:16:48,2018-05-03 21:22:56,2018-05-04 12:19:20,2,153.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14549,ROMEY,1,2019-01-04 11:40:31,2019-01-11 02:38:13,2019-01-19 01:41:29,2,315.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14550,Val2 ,2,2013-12-26 20:09:47,2014-01-21 21:28:58,2014-01-11 08:58:55,2,81.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14551,COMMI,7,2023-02-03 19:12:24,2023-02-23 12:50:39,2023-02-06 09:25:27,1,222.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14552,SPECD,8,2014-09-01 06:12:33,2014-09-28 04:45:39,2014-09-05 18:26:53,1,185.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14553,COMMI,3,2015-10-23 03:17:33,2015-10-26 02:56:43,2015-10-30 15:44:37,3,172.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14554,SPECD,7,2022-04-10 17:35:48,2022-04-10 19:50:14,2022-04-15 00:08:40,3,46,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14555,CACTU,6,2021-09-16 03:58:48,2021-10-09 08:48:10,2021-09-16 10:43:04,2,105,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14556,OTTIK,8,2022-10-03 07:14:56,2022-10-31 00:19:24,2022-10-11 19:56:01,1,34,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14557,ISLAT,6,2015-10-28 04:17:49,2015-12-06 14:56:47,2015-11-15 02:55:53,2,453.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14558,LACOR,7,2015-07-10 02:24:10,2015-07-18 13:40:56,2015-07-20 11:18:02,2,90.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14559,QUEDE,3,2020-04-23 05:03:32,2020-05-10 19:17:01,2020-04-24 18:44:38,1,137.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14560,OTTIK,4,2019-01-17 23:11:55,2019-02-07 13:06:33,2019-01-23 07:21:39,3,257.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14561,BERGS,9,2012-11-09 07:31:10,2012-11-14 06:38:22,2012-11-14 15:15:47,1,207,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14562,VAFFE,3,2022-02-02 03:14:03,2022-02-11 10:06:26,2022-02-05 04:47:30,3,447.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14563,WARTH,6,2017-10-10 04:29:13,2017-10-25 04:03:48,2017-10-19 07:40:29,1,465.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14564,PICCO,9,2016-02-01 20:54:00,2016-03-06 12:50:37,2016-02-04 12:07:15,3,116.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14565,AROUT,7,2023-08-26 17:05:17,2023-09-25 13:31:32,2023-08-30 17:09:37,2,483.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14566,OLDWO,2,2018-07-01 06:12:50,2018-07-02 01:35:58,2018-07-14 05:54:48,1,263.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14567,TRAIH,2,2021-05-02 19:30:06,2021-06-06 08:09:08,2021-05-12 05:06:43,3,27.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14568,ISLAT,7,2015-03-20 07:46:01,2015-03-31 02:17:52,2015-03-22 11:36:00,2,255.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14569,MAGAA,8,2019-06-11 20:46:45,2019-07-08 11:59:37,2019-06-12 08:44:34,1,206.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14570,ERNSH,4,2023-08-22 19:40:44,2023-09-30 12:54:05,2023-08-24 08:30:18,3,359.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14571,SAVEA,4,2023-09-09 14:58:40,2023-09-13 23:13:27,2023-09-22 23:24:47,2,186.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14572,BSBEV,8,2013-10-11 23:59:58,2013-12-01 11:42:05,2013-10-18 01:46:17,2,385.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14573,TOMSP,3,2013-09-24 18:47:34,2013-10-17 20:48:58,2013-09-26 09:42:59,3,154.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14574,BOLID,4,2023-07-17 05:20:11,2023-08-18 05:34:03,2023-07-18 00:57:47,1,529.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14575,LILAS,4,2019-03-18 22:17:33,2019-04-07 12:25:01,2019-04-12 02:51:52,1,428.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14576,GODOS,3,2018-02-17 21:49:42,2018-03-07 22:08:26,2018-02-18 20:22:00,3,225,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14577,LAUGB,8,2013-01-06 08:12:00,2013-01-12 12:05:58,2013-01-08 15:57:09,2,94.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14578,GALED,6,2019-04-23 19:25:02,2019-05-02 13:36:10,2019-04-27 05:14:07,1,210,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14579,SUPRD,8,2014-10-12 16:03:01,2014-11-04 19:55:09,2014-10-24 21:16:13,2,223.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14580,VALON,6,2019-03-01 19:18:13,2019-03-08 11:46:33,2019-03-03 06:39:32,1,127.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14581,ROMEY,9,2023-06-30 14:41:00,2023-07-18 17:00:08,2023-07-08 05:29:07,3,456,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14582,DRACD,7,2014-05-26 10:24:16,2014-05-29 19:32:26,2014-05-27 23:06:43,3,344.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14583,CENTC,1,2019-10-02 14:03:48,2019-10-09 17:22:33,2019-10-18 19:06:05,1,48,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14584,CONSH,7,2020-03-12 15:06:40,2020-03-15 05:34:21,2020-03-13 19:16:42,3,111.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14585,BOTTM,8,2016-12-16 15:37:46,2017-01-22 20:34:09,2016-12-21 18:54:51,1,462,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +14586,FOLIG,8,2023-06-13 23:17:30,2023-07-06 17:52:54,2023-06-14 16:43:30,1,415.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14587,DUMON,9,2017-06-03 04:16:21,2017-06-20 01:01:01,2017-06-18 13:03:15,3,235.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14588,RICSU,2,2020-02-08 05:31:14,2020-02-17 01:25:00,2020-02-23 04:07:42,1,285.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14589,BOLID,2,2015-02-03 07:29:41,2015-02-12 01:25:25,2015-02-06 18:44:12,1,424.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14590,DRACD,5,2013-10-04 22:25:59,2013-10-16 15:20:53,2013-10-29 02:49:53,1,229.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14591,LONEP,3,2018-11-02 20:24:09,2018-11-14 00:26:48,2018-11-05 03:39:46,1,337.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14592,RANCH,5,2022-01-20 11:34:39,2022-01-26 17:18:49,2022-02-11 09:26:00,2,131.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14593,THEBI,4,2021-04-22 10:19:27,2021-06-03 04:49:35,2021-04-22 19:39:17,1,447.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14594,ISLAT,8,2014-05-02 07:41:50,2014-05-04 11:17:22,2014-05-15 12:19:45,2,142.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14595,REGGC,3,2018-05-15 21:46:27,2018-05-24 04:55:09,2018-06-05 02:41:13,3,341,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14596,GROSR,1,2017-03-03 00:28:43,2017-03-15 16:00:01,2017-03-10 04:01:11,1,161.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14597,RICAR,9,2017-05-11 07:08:08,2017-06-21 16:03:19,2017-05-24 13:41:58,3,291,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14598,LONEP,5,2015-06-02 03:32:50,2015-06-23 04:47:04,2015-06-05 06:36:36,2,34.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14599,OCEAN,5,2022-06-16 11:48:20,2022-06-28 15:04:28,2022-06-20 00:15:46,2,18,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14600,BOTTM,6,2016-05-29 16:04:30,2016-07-03 14:00:53,2016-05-31 01:41:13,2,359.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14601,CENTC,2,2020-07-20 22:05:09,2020-08-27 17:55:31,2020-07-27 18:36:29,2,326.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14602,FRANK,6,2020-12-23 02:54:31,2021-01-19 06:56:10,2020-12-23 13:18:09,3,408.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14603,MORGK,3,2017-11-18 21:35:36,2017-11-27 20:25:37,2017-11-25 06:55:32,3,302.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14604,BSBEV,2,2018-01-20 00:01:53,2018-01-29 12:46:01,2018-02-15 07:21:32,1,232.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14605,CACTU,2,2017-10-03 10:16:20,2017-10-27 02:47:36,2017-10-07 15:53:12,3,276,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14606,WANDK,8,2012-11-24 01:52:11,2012-12-01 20:56:32,2012-11-27 19:27:52,2,483,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14607,HUNGC,1,2017-07-12 09:02:19,2017-07-23 21:31:57,2017-07-13 07:35:47,3,237,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14608,FRANS,9,2016-03-27 15:21:17,2016-04-09 20:53:50,2016-04-06 14:01:15,1,90.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14609,TORTU,7,2021-04-08 08:26:41,2021-05-03 03:18:31,2021-04-22 08:59:54,2,132.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14610,BOTTM,3,2019-11-03 12:06:23,2019-12-08 01:45:25,2019-11-05 20:37:05,2,402,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14611,LAZYK,2,2018-01-17 19:24:47,2018-01-26 11:02:38,2018-01-20 05:08:03,3,46,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14612,TRADH,5,2023-10-10 22:16:26,2023-10-27 18:50:04,2023-10-12 10:46:23,1,340,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14613,HANAR,2,2020-12-23 18:17:35,2020-12-25 11:23:27,2021-01-14 06:49:05,1,318.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14614,PRINI,6,2018-09-09 20:54:16,2018-09-28 22:40:42,2018-09-10 19:24:56,1,410.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14615,CONSH,9,2017-03-23 17:00:45,2017-04-17 06:54:20,2017-03-23 17:33:07,3,372.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14616,SPLIR,8,2016-02-01 16:48:44,2016-02-20 01:56:40,2016-02-11 10:18:14,2,437.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14617,OLDWO,7,2023-03-06 22:12:41,2023-03-20 09:55:54,2023-03-14 15:59:34,3,231.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14618,TRAIH,9,2015-03-01 11:49:21,2015-03-06 04:10:18,2015-03-05 23:00:40,1,465.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14619,VAFFE,2,2020-06-14 13:46:12,2020-07-03 00:08:20,2020-06-19 20:11:51,2,168.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14620,LONEP,3,2014-04-27 23:29:14,2014-05-03 23:16:25,2014-05-20 09:19:36,3,168.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14621,FRANR,4,2018-04-13 23:25:23,2018-05-12 00:41:23,2018-04-20 22:42:50,2,432.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14622,QUEDE,8,2023-01-25 17:04:59,2023-02-24 18:18:53,2023-02-06 10:47:21,3,54.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14623,THEBI,9,2021-06-14 08:56:52,2021-07-11 16:28:25,2021-06-29 13:52:08,1,420.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14624,GREAL,2,2013-12-11 02:13:58,2014-01-06 19:08:58,2013-12-12 00:14:08,3,420.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14625,OTTIK,4,2023-05-03 10:57:13,2023-06-03 12:10:18,2023-05-15 13:34:48,3,72.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14626,QUICK,4,2012-10-04 20:14:03,2012-11-01 17:42:01,2012-10-05 02:31:20,3,65.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14627,GROSR,9,2018-08-18 15:20:07,2018-09-07 21:26:18,2018-08-18 20:47:50,2,248.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +14628,RICAR,4,2021-08-28 07:05:47,2021-09-08 09:24:31,2021-08-28 18:49:00,3,345.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +14629,HUNGO,4,2019-11-25 01:55:06,2019-12-18 06:29:34,2019-11-27 10:42:59,1,481.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14630,SIMOB,3,2022-12-29 04:50:11,2023-01-01 15:36:30,2023-01-04 05:39:21,3,405.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14631,VICTE,4,2016-12-01 04:39:13,2016-12-14 06:52:40,2016-12-19 18:58:01,1,437.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14632,MORGK,2,2017-11-13 11:01:56,2018-01-01 01:57:45,2017-12-02 01:48:12,3,69.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14633,THEBI,7,2021-06-28 16:16:44,2021-07-09 01:22:11,2021-07-05 04:13:55,1,225.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14634,AROUT,1,2013-09-19 03:28:18,2013-09-25 09:37:37,2013-09-19 23:13:51,2,556.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14635,PICCO,4,2014-05-22 10:05:37,2014-05-31 08:54:50,2014-06-13 03:49:15,2,335,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14636,FOLIG,8,2022-02-09 04:56:55,2022-02-18 01:53:50,2022-02-19 17:59:45,1,128.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14637,ISLAT,4,2021-01-17 01:35:55,2021-02-06 21:37:25,2021-01-28 11:04:59,2,260.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14638,WANDK,4,2017-07-21 20:07:51,2017-09-19 19:41:12,2017-07-27 01:27:16,3,165.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14639,WILMK,7,2023-10-24 12:31:49,2023-12-14 23:09:18,2023-11-06 05:48:32,2,173.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14640,FRANR,7,2015-05-07 21:37:33,2015-05-30 05:03:11,2015-05-12 05:57:36,2,427.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14641,FRANR,6,2014-01-01 01:57:59,2014-01-04 22:58:27,2014-01-17 02:52:28,2,134.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +14642,FOLIG,5,2012-12-21 09:06:33,2013-01-14 05:37:02,2012-12-27 00:49:45,2,362,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14643,WHITC,5,2013-02-23 17:23:10,2013-03-16 04:20:47,2013-03-05 09:38:50,3,64.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14644,SPLIR,1,2020-02-22 17:24:30,2020-02-24 21:51:25,2020-02-24 12:47:11,1,424.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14645,TRADH,1,2020-08-24 15:43:00,2020-08-30 22:32:44,2020-08-28 04:42:33,1,184.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14646,WELLI,5,2022-10-02 18:09:44,2022-10-24 16:04:18,2022-10-02 21:29:08,1,217,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14647,ALFKI,8,2023-01-07 17:08:02,2023-01-11 22:37:03,2023-01-13 02:10:17,2,277.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14648,QUEDE,5,2019-01-28 16:29:26,2019-02-06 05:12:10,2019-01-29 18:10:31,1,267.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14649,FRANK,5,2021-04-02 10:38:15,2021-04-22 10:29:41,2021-04-03 12:40:55,3,328,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14650,BOLID,2,2017-10-28 01:13:22,2017-11-17 05:36:14,2017-10-28 11:51:44,2,257.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14651,WILMK,1,2013-01-04 17:31:50,2013-02-18 02:48:03,2013-01-08 04:02:04,1,434.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +14652,MEREP,3,2020-05-07 02:34:09,2020-05-08 22:20:06,2020-05-18 02:00:59,3,201.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14653,SAVEA,8,2022-02-16 18:48:22,2022-03-13 09:16:13,2022-02-19 01:40:09,1,112.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14654,OTTIK,9,2022-12-02 02:24:07,2023-01-16 05:01:41,2022-12-02 22:06:41,3,480.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14655,WARTH,7,2021-06-10 10:15:14,2021-07-18 02:03:20,2021-06-11 22:15:26,3,387.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14656,RATTC,7,2017-01-24 22:10:10,2017-01-27 18:38:28,2017-02-12 02:19:26,3,220.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14657,RICSU,3,2019-03-03 05:33:30,2019-03-12 22:43:16,2019-03-04 18:39:55,2,315.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +14658,HUNGO,8,2016-05-19 18:28:48,2016-06-04 11:22:00,2016-05-20 18:24:30,2,462.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14659,LAZYK,4,2020-06-27 21:40:59,2020-08-05 17:44:46,2020-07-06 04:51:08,1,109.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14660,SAVEA,7,2013-04-30 10:07:52,2013-05-21 22:40:45,2013-05-11 18:47:35,3,308.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14661,ANATR,2,2012-09-02 05:55:34,2012-09-27 11:58:17,2012-09-09 00:27:49,3,180.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14662,HUNGC,5,2012-11-26 17:10:14,2013-01-06 13:01:39,2012-11-28 00:15:47,2,134,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14663,CACTU,6,2022-11-02 10:42:01,2022-11-05 05:35:57,2022-11-04 10:25:29,3,483.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14664,VINET,1,2020-02-06 17:38:50,2020-02-20 13:51:39,2020-02-07 16:48:00,2,112.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +14665,MEREP,7,2023-07-09 22:36:22,2023-07-20 18:54:03,2023-07-27 17:34:21,2,432,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14666,LETSS,7,2019-03-06 12:28:10,2019-04-01 09:48:31,2019-03-14 15:37:30,1,51.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14667,LILAS,3,2017-10-09 09:16:21,2017-11-22 06:38:37,2017-10-31 08:50:05,1,329,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14668,CONSH,9,2021-11-12 14:46:28,2021-12-16 18:11:02,2021-11-27 17:29:13,2,357.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14669,BONAP,6,2021-12-23 10:11:57,2022-01-12 20:44:49,2021-12-24 11:59:40,2,418.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14670,VALON,3,2023-05-08 06:14:03,2023-05-13 16:54:47,2023-05-23 13:14:43,2,295.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14671,SIMOB,7,2016-04-23 18:56:14,2016-05-10 08:43:20,2016-04-27 13:00:57,3,190.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14672,ANTON,5,2022-10-16 12:32:27,2022-10-23 16:32:38,2022-10-21 00:43:49,2,138.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +14673,BOLID,4,2021-01-26 03:14:45,2021-02-08 09:37:01,2021-01-26 15:26:54,3,397.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14674,REGGC,5,2017-04-08 21:22:17,2017-05-14 06:53:03,2017-05-02 17:51:08,2,496,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14675,WARTH,5,2017-09-30 21:11:02,2017-10-05 03:42:52,2017-10-11 23:44:08,3,83,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14676,OLDWO,9,2017-03-14 23:17:47,2017-04-05 07:26:07,2017-04-03 20:06:09,3,256,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14677,AROUT,9,2020-06-23 13:13:58,2020-06-24 04:46:21,2020-07-04 05:21:03,2,147.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14678,TRADH,8,2014-10-19 13:05:41,2014-10-20 13:07:19,2014-10-25 21:06:49,1,46.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14679,GOURL,5,2014-01-15 00:58:35,2014-01-16 09:26:45,2014-01-18 15:17:06,3,294.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14680,SAVEA,6,2016-04-28 11:50:44,2016-05-07 05:26:27,2016-05-03 13:00:15,3,259,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14681,MAISD,9,2016-10-02 21:32:06,2016-10-19 17:53:50,2016-10-08 20:47:39,3,477.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14682,ERNSH,2,2020-01-20 20:12:54,2020-02-01 09:50:23,2020-02-10 13:40:59,2,286,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +14683,BSBEV,2,2019-05-15 12:02:44,2019-05-20 22:19:17,2019-05-16 16:22:34,3,102,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14684,WELLI,9,2014-06-14 07:14:37,2014-06-28 08:34:52,2014-06-25 10:36:20,3,390.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14685,GALED,5,2013-10-26 17:53:19,2013-11-13 17:01:35,2013-10-27 09:30:18,2,64.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14686,MAISD,9,2015-07-12 09:05:02,2015-07-31 16:51:16,2015-07-15 19:47:53,1,485.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14687,OCEAN,5,2020-08-29 10:15:35,2020-09-16 21:08:56,2020-08-30 14:14:38,2,388.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14688,ANTON,9,2013-12-01 20:16:04,2013-12-21 12:10:42,2013-12-12 12:58:10,2,40.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14689,MEREP,1,2019-06-23 18:18:03,2019-06-27 14:28:48,2019-06-23 21:12:40,1,332.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +14690,VINET,7,2013-12-02 22:36:01,2014-01-02 23:45:23,2013-12-18 14:41:50,2,97.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14691,HUNGO,6,2021-04-15 08:41:14,2021-04-18 03:12:51,2021-04-17 19:07:59,2,345.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14692,SPECD,9,2014-12-29 12:50:59,2015-01-15 01:49:36,2014-12-31 06:47:27,3,352,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14693,HUNGC,9,2020-08-14 11:21:31,2020-08-31 01:45:26,2020-08-14 14:01:20,1,132.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14694,MEREP,9,2020-11-11 20:09:48,2020-11-15 09:57:41,2020-11-12 13:59:31,1,29.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14695,HUNGO,8,2014-01-12 16:06:51,2014-01-17 22:47:24,2014-01-12 20:33:38,3,43.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +14696,FRANS,9,2018-02-28 02:52:05,2018-04-01 09:16:30,2018-03-05 18:02:00,2,387.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +14697,QUEDE,2,2013-02-23 14:05:35,2013-02-23 17:38:47,2013-03-06 07:54:14,1,431,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14698,ROMEY,2,2023-02-15 19:06:13,2023-03-01 14:33:14,2023-02-19 00:40:16,1,123,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14699,MAISD,4,2018-07-25 05:20:57,2018-08-24 17:21:39,2018-07-25 13:44:06,1,303.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14700,ANATR,4,2013-04-30 13:17:43,2013-05-23 22:13:52,2013-05-06 23:05:07,1,106,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14701,BLONP,3,2019-05-01 18:19:38,2019-05-14 21:07:43,2019-05-10 16:17:57,1,23.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14702,SANTG,1,2015-09-29 04:54:54,2015-10-05 03:43:31,2015-09-30 22:16:49,3,230.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14703,FRANS,3,2020-06-03 17:58:35,2020-06-15 08:04:38,2020-06-12 09:31:34,1,352.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14704,DUMON,3,2023-06-12 07:55:47,2023-06-22 07:40:18,2023-06-21 07:13:52,1,220.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14705,GOURL,4,2015-11-07 06:15:30,2015-11-18 12:51:32,2015-11-12 21:16:20,3,250.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14706,VICTE,5,2019-05-31 18:08:27,2019-07-15 08:48:54,2019-06-23 08:51:43,3,48,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14707,VALON,6,2018-09-16 10:25:32,2018-10-29 15:21:31,2018-09-16 17:12:37,3,479.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14708,LACOR,3,2021-12-01 21:24:13,2021-12-29 07:05:08,2021-12-03 10:56:16,3,31,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14709,VAFFE,9,2016-05-16 07:31:49,2016-05-26 13:42:02,2016-06-11 16:28:31,1,326.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14710,QUEEN,4,2021-06-24 20:05:13,2021-07-28 16:20:21,2021-06-27 01:40:08,2,108.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14711,OTTIK,8,2015-11-30 05:33:07,2015-12-26 12:47:00,2015-12-08 00:02:05,2,324,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14712,CONSH,4,2023-01-08 00:45:04,2023-01-17 16:09:19,2023-01-11 04:22:19,1,120.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14713,CACTU,8,2013-02-27 00:44:17,2013-03-17 09:39:50,2013-03-15 20:29:42,3,223,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14714,BOLID,5,2019-10-19 12:57:17,2019-10-28 08:21:04,2019-10-23 05:19:40,3,472.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14715,TORTU,2,2017-10-19 06:57:28,2017-10-25 13:36:29,2017-10-20 22:06:22,1,400.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14716,FOLKO,1,2013-03-06 03:21:00,2013-04-12 08:25:51,2013-03-07 21:27:27,1,206.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14717,CONSH,4,2018-05-21 00:05:06,2018-06-03 17:39:33,2018-05-31 14:42:09,2,150.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +14718,KOENE,3,2017-05-22 22:43:53,2017-05-29 16:10:10,2017-06-07 04:13:21,1,442.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14719,HUNGO,9,2022-01-12 03:44:42,2022-02-02 01:25:27,2022-01-13 21:00:06,2,87.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14720,PERIC,7,2023-01-02 01:47:50,2023-01-24 19:01:35,2023-01-20 14:24:01,3,184,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14721,THECR,5,2019-05-20 12:51:58,2019-05-20 23:08:48,2019-06-14 07:13:02,1,282.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14722,LEHMS,2,2015-05-10 21:19:32,2015-05-27 21:49:50,2015-06-02 03:36:29,2,134,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14723,LAMAI,6,2014-10-20 15:01:59,2014-11-20 20:31:19,2014-11-02 11:36:08,2,257.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14724,CHOPS,1,2019-05-12 04:35:13,2019-06-22 15:35:39,2019-05-15 00:59:08,2,557,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14725,CONSH,9,2017-07-20 18:20:04,2017-08-29 23:46:00,2017-07-27 01:07:04,3,379.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14726,FISSA,4,2020-04-27 21:08:37,2020-05-03 23:57:53,2020-04-27 22:13:12,3,92.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14727,VALON,3,2013-07-16 17:52:26,2013-07-31 13:22:34,2013-07-22 09:18:18,2,390.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14728,RATTC,9,2013-06-09 05:26:05,2013-06-22 15:32:46,2013-06-09 06:45:38,1,543.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14729,PERIC,1,2013-06-12 10:25:33,2013-07-30 10:24:10,2013-06-17 17:24:30,3,100,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +14730,WELLI,3,2014-05-12 23:54:48,2014-06-21 07:21:14,2014-05-13 19:17:30,3,246.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14731,SPLIR,3,2014-12-15 05:44:24,2015-01-31 05:31:52,2014-12-30 07:51:05,2,272.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14732,LAMAI,5,2019-03-18 21:22:26,2019-04-10 01:57:28,2019-04-09 10:33:34,3,218.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14733,THECR,5,2014-06-14 03:29:46,2014-07-02 10:30:22,2014-06-17 09:55:17,3,64,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14734,RICAR,7,2020-10-24 16:23:53,2020-11-14 23:12:05,2020-10-29 02:03:11,1,85.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14735,THECR,9,2016-01-06 23:17:57,2016-02-09 05:01:12,2016-01-10 05:03:17,1,17.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14736,FOLKO,3,2020-12-14 02:54:01,2020-12-25 15:23:59,2021-01-11 01:28:20,2,323.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14737,HUNGC,8,2022-03-01 23:17:15,2022-03-08 18:56:34,2022-03-23 11:49:17,3,434.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14738,SANTG,5,2018-02-19 06:48:20,2018-03-06 19:47:39,2018-03-05 11:20:02,1,319.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14739,CACTU,3,2017-03-01 23:45:04,2017-04-16 20:48:11,2017-03-17 21:06:13,1,76,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14740,PICCO,9,2020-12-22 05:57:37,2021-01-25 21:30:58,2021-01-13 08:57:18,1,97.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14741,FAMIA,8,2016-05-05 20:20:56,2016-05-13 03:16:50,2016-05-07 18:52:00,1,403.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14742,TRAIH,6,2021-10-19 14:57:36,2021-11-03 13:06:51,2021-11-12 06:17:17,2,266.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14743,VAFFE,5,2017-03-02 19:39:43,2017-03-22 02:37:27,2017-03-05 11:26:17,2,477.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14744,MAISD,4,2022-06-15 17:13:29,2022-06-19 17:28:18,2022-07-05 03:30:45,2,359,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14745,SPLIR,4,2015-08-20 12:41:42,2015-09-16 00:32:37,2015-09-09 19:08:08,3,349.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14746,ALFKI,5,2018-03-09 05:34:11,2018-03-26 13:43:58,2018-04-06 00:24:29,2,171.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14747,BOLID,8,2015-10-27 07:04:18,2015-11-17 01:48:32,2015-11-10 05:50:45,1,154.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14748,MAISD,3,2015-03-08 02:37:13,2015-03-27 03:36:43,2015-03-22 09:02:43,1,346.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14749,CACTU,3,2013-03-26 21:55:47,2013-03-27 01:03:41,2013-04-01 01:51:40,2,309.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14750,FRANR,8,2018-08-01 13:42:03,2018-09-11 06:06:47,2018-08-22 18:49:41,3,447.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14751,OTTIK,7,2013-09-12 19:06:21,2013-10-26 03:39:03,2013-09-27 07:09:32,2,436.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14752,WELLI,3,2021-11-23 07:37:54,2021-11-30 18:15:31,2021-11-29 08:38:36,1,91.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14753,PARIS,6,2022-05-03 01:59:13,2022-05-05 18:54:11,2022-05-14 00:41:52,3,84.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14754,COMMI,1,2019-02-21 22:09:36,2019-03-18 01:56:05,2019-03-10 10:35:16,3,243,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14755,QUEDE,3,2018-12-07 17:00:59,2018-12-14 07:06:00,2018-12-17 08:25:43,3,372.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14756,GALED,7,2015-04-19 11:47:07,2015-05-10 16:22:21,2015-05-05 18:53:00,3,333,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14757,AROUT,2,2021-10-26 17:48:56,2021-12-10 16:55:33,2021-11-19 17:09:49,1,366.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14758,SAVEA,5,2019-12-02 02:01:21,2019-12-21 00:53:21,2019-12-10 10:53:33,3,539.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14759,QUEDE,2,2018-09-28 16:31:41,2018-10-08 19:13:48,2018-09-29 12:01:45,3,252,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14760,SANTG,9,2022-04-14 22:45:51,2022-05-07 23:09:57,2022-04-15 17:40:35,2,261.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14761,RATTC,4,2019-07-14 06:11:32,2019-07-29 03:50:50,2019-07-24 13:24:23,3,370.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14762,SPECD,4,2015-05-29 11:45:46,2015-06-10 22:01:16,2015-06-05 21:29:06,3,280.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14763,PERIC,6,2022-10-16 10:03:39,2022-11-03 03:48:02,2022-11-01 05:54:09,3,442.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14764,HANAR,9,2018-11-07 07:20:36,2018-12-30 17:05:33,2018-11-19 09:12:36,2,402,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14765,BERGS,1,2013-09-08 07:37:09,2013-09-20 23:35:42,2013-09-09 15:32:17,3,315.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +14766,QUICK,2,2021-07-18 01:21:56,2021-07-25 03:18:48,2021-07-29 20:57:41,1,48,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14767,VICTE,6,2022-10-08 13:41:22,2022-10-29 05:18:09,2022-10-11 19:59:03,1,472.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14768,QUEEN,4,2017-12-14 03:12:25,2017-12-22 13:25:39,2017-12-14 23:22:14,1,378,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14769,RANCH,4,2019-01-01 16:02:41,2019-01-21 05:17:35,2019-01-10 15:27:41,2,445.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14770,TRAIH,9,2022-09-03 11:10:04,2022-09-28 06:03:45,2022-09-13 22:17:13,1,252.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14771,HUNGO,1,2012-10-18 16:28:14,2012-11-14 22:12:57,2012-10-21 07:30:19,2,171.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14772,ISLAT,6,2019-04-28 15:19:47,2019-05-08 01:47:24,2019-05-23 02:31:31,2,295.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14773,SEVES,8,2015-10-02 10:55:53,2015-10-10 13:06:39,2015-10-03 18:51:10,2,195.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14774,QUEDE,2,2012-08-21 14:37:11,2012-09-05 17:26:44,2012-08-26 16:53:27,1,187,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14775,OCEAN,4,2016-02-21 17:10:12,2016-03-16 07:05:02,2016-02-25 03:54:06,3,298.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14776,FRANS,3,2020-02-05 18:21:12,2020-03-03 08:56:06,2020-02-12 12:54:25,1,78.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14777,HANAR,8,2013-12-15 06:53:58,2014-01-07 14:35:42,2013-12-19 15:37:46,2,185,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14778,LAZYK,9,2014-08-08 21:33:14,2014-08-12 03:00:37,2014-08-13 09:46:22,1,267.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14779,SIMOB,8,2016-10-20 08:59:34,2016-10-31 22:49:31,2016-10-25 11:37:11,1,491.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14780,NORTS,2,2013-07-21 23:30:20,2013-08-14 01:34:17,2013-07-24 19:26:30,1,155,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +14781,CENTC,7,2022-07-05 23:29:12,2022-07-14 06:30:08,2022-07-06 07:59:18,2,50.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14782,FRANK,7,2019-04-03 16:40:12,2019-04-26 22:40:56,2019-04-08 02:59:11,2,227.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14783,LEHMS,4,2023-05-24 04:44:13,2023-06-03 15:20:40,2023-05-25 03:50:06,3,154.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14784,RICAR,5,2019-07-09 09:55:57,2019-08-02 07:51:41,2019-07-18 08:04:57,1,18.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14785,ERNSH,8,2018-09-02 06:00:12,2018-09-29 19:58:16,2018-09-03 00:48:46,2,124.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14786,BLONP,5,2015-04-24 15:07:48,2015-04-27 02:58:58,2015-04-27 12:16:33,2,353.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14787,BLONP,5,2022-10-14 14:21:37,2022-10-28 13:50:42,2022-10-16 12:44:22,1,196.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14788,VAFFE,8,2016-10-11 10:04:58,2016-11-13 02:26:47,2016-10-14 14:32:46,2,493.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14789,GREAL,9,2018-01-23 01:32:41,2018-01-29 19:03:00,2018-02-07 00:02:29,2,280,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14790,VAFFE,5,2016-06-13 10:59:10,2016-06-30 09:18:37,2016-06-13 19:27:55,3,46,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14791,TRADH,9,2015-08-09 06:18:47,2015-09-02 10:17:42,2015-08-10 12:41:14,1,164.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14792,CONSH,6,2018-09-18 21:57:26,2018-10-01 19:27:26,2018-09-29 03:50:17,2,194.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14793,RANCH,5,2015-04-06 05:55:30,2015-04-15 08:11:33,2015-04-21 20:41:45,3,397.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +14794,FRANK,4,2018-08-04 00:51:22,2018-08-07 10:42:05,2018-08-12 20:37:41,2,38.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14795,MORGK,4,2020-06-16 01:32:17,2020-06-21 13:37:42,2020-06-17 08:15:01,1,21.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14796,BSBEV,7,2016-06-05 02:43:05,2016-06-22 04:24:10,2016-06-06 23:23:18,3,203,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14797,QUEDE,9,2016-05-12 13:54:42,2016-05-26 02:31:35,2016-05-14 08:07:20,3,31,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14798,WANDK,5,2018-03-30 17:09:20,2018-04-09 23:12:12,2018-04-01 23:57:15,2,251.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14799,RATTC,8,2018-10-30 21:23:46,2018-11-13 00:30:25,2018-10-30 21:41:16,2,213.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +14800,HILAA,8,2013-08-14 08:34:59,2013-08-27 12:23:22,2013-08-15 19:31:00,3,184.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14801,FAMIA,1,2023-07-15 17:31:11,2023-08-31 11:04:38,2023-07-16 04:16:41,1,249.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14802,CONSH,2,2012-07-28 23:19:50,2012-08-11 12:57:21,2012-08-03 15:09:13,3,14.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14803,WOLZA,3,2023-06-22 23:39:16,2023-07-01 15:14:20,2023-06-24 19:40:12,3,19.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14804,DRACD,6,2019-09-15 08:54:56,2019-10-01 10:28:57,2019-09-17 17:42:32,2,486.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14805,HUNGO,3,2018-06-01 19:15:40,2018-06-09 22:29:48,2018-06-04 13:18:16,2,280.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14806,BOLID,8,2023-03-22 06:49:04,2023-03-26 23:21:23,2023-04-13 02:02:48,3,28,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14807,BLAUS,9,2018-02-07 07:55:07,2018-02-08 19:15:34,2018-02-17 08:43:21,1,401.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +14808,BLONP,2,2015-06-11 11:00:25,2015-07-30 13:04:56,2015-07-03 23:44:56,1,422.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14809,MEREP,1,2014-08-03 02:51:38,2014-08-03 05:37:30,2014-08-11 18:36:09,3,119.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +14810,WARTH,3,2019-06-14 09:44:19,2019-06-23 11:57:47,2019-06-18 03:48:06,2,515.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14811,FAMIA,5,2023-08-03 11:59:28,2023-08-22 14:50:30,2023-08-26 04:24:28,3,341,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14812,HUNGO,3,2019-06-16 22:22:51,2019-07-24 21:19:24,2019-07-07 19:42:35,1,399.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14813,VICTE,7,2013-04-03 23:27:32,2013-04-25 19:08:49,2013-04-17 23:23:47,3,78.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +14814,ISLAT,3,2018-10-16 01:18:52,2018-10-21 19:06:40,2018-10-18 05:19:57,2,260,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14815,SPECD,8,2016-11-04 15:14:45,2016-11-19 17:15:35,2016-11-11 03:33:35,1,379.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14816,SAVEA,6,2012-10-07 07:00:59,2012-11-11 13:13:14,2012-10-15 14:31:42,2,414.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14817,FISSA,3,2015-06-10 23:50:18,2015-06-14 20:49:45,2015-06-12 11:07:22,1,449,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14818,VINET,3,2023-02-04 01:22:10,2023-02-18 18:16:06,2023-02-08 07:36:19,3,39.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14819,WELLI,1,2018-05-26 23:24:39,2018-06-06 19:22:43,2018-05-28 09:59:29,1,54,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14820,FURIB,9,2019-12-28 07:47:31,2020-01-13 04:08:04,2019-12-29 19:11:45,2,236.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14821,HUNGO,6,2016-07-06 02:04:32,2016-07-06 08:46:20,2016-07-07 13:19:37,1,446.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +14822,BOLID,4,2016-07-22 02:18:30,2016-07-26 08:09:08,2016-07-25 21:16:30,2,483.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14823,PERIC,7,2021-04-02 21:07:00,2021-04-23 11:24:47,2021-04-12 13:15:26,2,120.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14824,DRACD,4,2017-10-24 22:39:17,2017-10-28 04:16:37,2017-11-01 09:48:36,1,169.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +14825,GOURL,6,2021-04-21 00:17:33,2021-05-17 15:29:44,2021-04-29 01:05:32,2,136.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14826,Val2 ,3,2014-04-20 12:20:47,2014-05-19 06:57:43,2014-04-29 07:45:11,3,246.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14827,LETSS,5,2021-09-28 20:05:25,2021-10-13 01:16:55,2021-10-05 03:31:06,1,186.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14828,PERIC,6,2016-07-01 07:11:25,2016-08-08 06:34:22,2016-07-18 06:52:28,3,184.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14829,RATTC,8,2015-11-07 05:08:14,2015-12-06 13:36:38,2015-11-09 12:42:16,1,120.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14830,LAZYK,2,2013-02-21 05:17:09,2013-03-03 15:07:20,2013-02-23 23:05:06,1,360.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14831,GALED,7,2015-01-26 06:38:02,2015-02-15 05:59:38,2015-02-01 03:47:00,3,316,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14832,SUPRD,4,2021-10-28 03:48:17,2021-11-08 11:28:08,2021-10-28 14:50:27,3,366,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14833,GREAL,7,2020-06-10 22:04:20,2020-06-21 07:40:29,2020-06-12 00:42:52,3,106.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14834,LILAS,9,2015-03-28 16:26:08,2015-03-28 16:59:17,2015-03-30 07:12:06,3,115.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14835,GROSR,5,2022-04-26 11:22:08,2022-05-02 14:09:38,2022-04-26 12:10:39,3,248.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +14836,PARIS,1,2021-02-17 02:54:24,2021-02-18 19:43:09,2021-02-25 02:41:05,1,37.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14837,CHOPS,5,2019-06-09 20:04:37,2019-07-14 06:05:59,2019-06-19 00:37:12,2,267,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14838,VICTE,4,2023-05-11 08:27:29,2023-06-02 18:56:47,2023-05-11 16:11:51,1,138.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14839,CACTU,8,2014-07-23 12:42:19,2014-08-12 03:05:09,2014-07-24 13:13:51,2,207,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14840,LAZYK,2,2014-11-02 13:50:31,2014-11-07 13:27:21,2014-11-13 09:56:29,2,199.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +14841,RICSU,7,2020-09-19 11:33:56,2020-10-06 05:21:00,2020-09-20 21:01:38,1,113.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +14842,LILAS,8,2016-10-14 09:22:57,2016-10-22 00:37:01,2016-10-31 05:08:52,2,133.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14843,ALFKI,8,2022-03-04 18:39:01,2022-04-30 20:13:23,2022-03-06 18:09:08,1,79.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14844,SPLIR,1,2015-09-08 07:50:45,2015-09-10 13:02:50,2015-09-30 03:57:20,1,28.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14845,BOLID,2,2020-01-07 12:05:54,2020-02-27 12:24:14,2020-01-12 19:17:07,2,252.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +14846,PERIC,1,2022-12-15 14:55:46,2023-01-21 14:25:33,2022-12-16 12:56:14,2,278,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14847,WARTH,3,2019-08-20 11:09:38,2019-09-27 21:04:43,2019-08-22 06:08:19,3,301.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14848,NORTS,9,2012-09-21 21:00:45,2012-10-25 16:17:54,2012-09-23 17:00:23,3,185.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +14849,PARIS,8,2014-06-21 05:38:49,2014-07-31 03:47:00,2014-07-01 00:12:36,3,326.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14850,FRANS,5,2017-03-29 14:23:04,2017-05-03 18:42:31,2017-04-02 05:44:42,3,388.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14851,FOLIG,5,2013-03-03 19:20:17,2013-03-08 13:10:17,2013-03-14 19:08:16,2,207,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +14852,RANCH,6,2016-09-15 06:22:10,2016-09-18 09:44:52,2016-09-29 08:17:32,3,388.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14853,OLDWO,4,2021-03-02 08:32:10,2021-03-09 08:03:50,2021-03-02 12:33:31,3,113.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14854,MORGK,8,2017-10-15 01:09:46,2017-10-24 17:30:37,2017-10-16 05:58:15,2,380.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14855,ALFKI,2,2018-04-14 05:39:22,2018-04-20 19:28:47,2018-04-18 14:57:24,1,210,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14856,LAUGB,9,2013-05-22 15:20:05,2013-06-16 22:16:53,2013-05-23 05:00:04,2,387.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14857,SIMOB,4,2023-03-23 16:03:34,2023-03-28 18:35:52,2023-03-24 12:15:04,1,367.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14858,LETSS,7,2015-06-08 13:46:54,2015-06-18 05:10:20,2015-06-13 18:59:46,3,144.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14859,GALED,5,2019-01-12 14:33:36,2019-01-26 04:04:29,2019-01-28 22:27:16,3,205.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14860,BERGS,3,2023-10-17 15:46:15,2023-11-01 07:11:55,2023-10-20 14:48:11,2,41.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +14861,ROMEY,4,2013-07-26 00:44:36,2013-09-09 12:37:35,2013-08-20 07:49:49,3,256.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14862,PRINI,4,2018-04-17 04:28:22,2018-05-16 15:53:19,2018-04-26 15:01:59,3,418.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +14863,THECR,5,2012-10-29 07:09:50,2012-12-05 01:05:16,2012-11-08 03:59:43,1,215.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14864,WARTH,8,2020-08-31 04:40:19,2020-09-15 17:19:14,2020-09-11 05:16:20,1,65,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +14865,WHITC,7,2018-05-01 15:05:27,2018-06-16 01:00:01,2018-05-05 09:08:08,3,229.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14866,SANTG,4,2021-02-20 10:32:33,2021-03-20 15:00:58,2021-02-24 09:54:11,3,360,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14867,BOLID,7,2012-09-05 10:49:14,2012-09-22 20:11:59,2012-09-11 07:06:39,3,170.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +14868,RICSU,6,2019-11-11 15:15:46,2019-12-08 02:06:36,2019-11-17 14:11:53,3,414,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14869,RICAR,7,2019-10-08 03:05:31,2019-11-04 11:22:03,2019-11-03 13:16:01,3,338.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +14870,DUMON,4,2016-07-23 02:00:44,2016-08-30 02:46:56,2016-07-24 20:45:54,1,133,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14871,SPECD,6,2017-02-23 09:34:58,2017-04-08 09:51:17,2017-02-24 14:07:52,3,474.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14872,MAGAA,7,2020-08-25 03:21:54,2020-10-05 06:56:33,2020-08-25 23:27:54,1,371.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14873,CHOPS,4,2018-03-31 02:00:50,2018-03-31 19:23:35,2018-04-09 11:33:26,1,54,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14874,MAGAA,4,2023-07-23 02:08:38,2023-09-03 18:42:41,2023-07-31 15:41:35,1,356.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14875,THECR,3,2014-03-18 05:34:52,2014-03-31 10:54:13,2014-03-19 15:32:36,1,52,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14876,LONEP,5,2020-09-25 10:27:41,2020-10-31 06:06:01,2020-09-28 01:10:14,1,131.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +14877,SIMOB,7,2013-10-07 21:37:29,2013-10-23 08:27:22,2013-10-17 17:41:20,1,313.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +14878,TORTU,2,2018-02-27 12:51:31,2018-04-17 06:17:49,2018-02-27 14:06:40,2,411.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14879,BOLID,4,2012-12-19 10:47:13,2013-01-18 19:36:16,2012-12-22 10:23:15,1,67,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14880,FRANK,8,2021-12-09 23:33:58,2021-12-17 01:08:59,2021-12-30 07:56:50,1,161.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14881,RICAR,9,2023-02-03 03:58:18,2023-02-12 21:57:59,2023-02-13 07:25:44,1,118.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +14882,QUEEN,5,2017-12-08 10:39:11,2017-12-08 23:26:29,2017-12-18 10:56:21,1,346.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14883,AROUT,6,2019-10-17 18:09:30,2019-12-06 11:12:49,2019-10-19 18:53:44,3,82.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +14884,ROMEY,3,2012-08-13 16:14:15,2012-09-02 13:33:42,2012-08-15 08:23:06,3,304.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14885,CACTU,7,2021-07-15 09:49:58,2021-07-19 18:17:49,2021-07-23 00:24:00,2,260.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +14886,THECR,4,2016-06-04 21:32:24,2016-06-07 09:56:01,2016-06-18 14:59:23,1,160.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +14887,WHITC,8,2015-09-04 12:18:25,2015-09-22 10:20:33,2015-09-08 08:50:00,1,258,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14888,BLAUS,7,2015-08-13 17:58:30,2015-08-31 23:27:48,2015-08-21 22:19:31,3,455.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14889,QUEEN,2,2019-02-14 09:33:10,2019-02-15 10:47:00,2019-02-26 18:40:07,2,117.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14890,OLDWO,3,2015-01-06 15:49:18,2015-01-19 16:23:32,2015-01-07 11:55:56,2,256.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14891,BLAUS,3,2013-02-12 07:52:49,2013-03-07 07:44:35,2013-02-13 02:34:55,1,324,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +14892,VINET,9,2014-09-13 04:37:16,2014-09-15 10:45:40,2014-09-14 04:34:32,3,111.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14893,MORGK,7,2018-11-23 03:12:33,2018-11-25 21:19:30,2018-11-26 18:29:04,2,468.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14894,GODOS,6,2013-06-01 01:12:58,2013-06-14 12:40:40,2013-06-03 14:16:48,2,319,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14895,REGGC,8,2020-06-06 14:12:26,2020-07-14 01:41:19,2020-06-07 19:29:12,2,370.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14896,WHITC,9,2013-10-23 04:32:06,2013-11-09 00:51:24,2013-10-25 18:09:13,1,78.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +14897,ANTON,9,2022-05-23 21:38:55,2022-05-27 02:37:27,2022-05-28 13:35:38,2,421.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14898,VINET,2,2013-10-29 14:49:08,2013-10-30 04:53:17,2013-11-20 08:25:51,2,81.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14899,LILAS,5,2013-08-05 16:43:35,2013-08-23 09:59:18,2013-08-06 16:54:13,3,232,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14900,THECR,4,2014-03-27 20:19:08,2014-04-22 05:17:47,2014-04-03 09:41:12,3,282.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +14901,QUICK,5,2016-10-22 13:15:18,2016-10-29 00:03:47,2016-10-28 16:00:03,1,327.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14902,THECR,1,2023-04-27 03:59:35,2023-05-04 15:14:27,2023-05-03 06:11:27,1,379.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +14903,QUEDE,2,2019-04-06 22:36:56,2019-04-16 18:58:45,2019-04-14 14:35:55,2,470.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +14904,FISSA,9,2020-12-09 17:11:26,2021-01-03 14:12:36,2020-12-23 08:32:42,2,146,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14905,FRANK,1,2016-03-13 21:04:49,2016-03-17 05:42:39,2016-03-16 21:23:25,3,81,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14906,LAUGB,3,2018-05-06 18:38:15,2018-06-16 13:43:16,2018-05-20 08:45:43,2,318.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14907,FRANK,4,2017-05-06 14:19:07,2017-05-25 23:10:21,2017-05-07 08:09:45,1,109.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14908,BOLID,1,2014-04-05 13:38:04,2014-04-14 21:58:09,2014-04-09 01:25:12,2,253,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14909,QUEDE,6,2015-06-01 10:14:57,2015-06-04 15:32:05,2015-06-03 00:39:58,2,90,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +14910,OCEAN,4,2012-08-07 00:16:11,2012-08-13 19:14:38,2012-08-12 19:59:28,1,354,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +14911,MAGAA,4,2023-06-18 17:47:42,2023-07-07 20:35:08,2023-07-06 19:39:46,1,418.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +14912,QUEEN,5,2020-08-24 01:54:38,2020-09-02 19:09:13,2020-08-26 17:53:15,1,111.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14913,FOLIG,1,2019-05-08 00:06:01,2019-06-12 18:25:57,2019-05-13 13:52:37,1,279,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14914,THEBI,6,2016-08-17 13:23:45,2016-08-23 14:38:44,2016-08-23 18:55:29,3,58.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14915,GALED,3,2015-08-03 22:02:44,2015-09-07 16:53:36,2015-08-20 18:57:22,3,307,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14916,RICSU,7,2016-12-17 07:17:03,2017-01-11 16:16:38,2016-12-26 15:45:45,1,75.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +14917,SUPRD,3,2014-04-25 14:39:18,2014-05-16 14:11:55,2014-05-10 17:10:48,1,212.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14918,FOLIG,1,2015-06-27 04:00:10,2015-07-01 14:38:06,2015-07-06 01:51:00,2,223,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14919,BOLID,1,2013-06-19 04:42:56,2013-06-19 20:54:45,2013-06-29 13:16:17,1,219.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +14920,LACOR,9,2015-04-03 15:20:46,2015-04-17 00:47:21,2015-04-13 22:27:09,1,215,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +14921,MAGAA,3,2016-04-12 00:40:38,2016-04-30 03:11:34,2016-04-23 02:34:20,1,268,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +14922,ANTON,5,2019-12-25 06:23:17,2020-01-18 18:39:26,2019-12-25 13:24:36,1,254.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14923,RICAR,5,2016-09-02 10:05:16,2016-09-13 16:57:06,2016-09-05 04:33:09,1,125.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14924,ISLAT,4,2016-05-04 06:35:33,2016-05-19 09:24:22,2016-05-27 05:56:15,1,57,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +14925,NORTS,5,2015-01-09 12:42:32,2015-02-28 08:12:55,2015-01-12 18:18:29,3,227,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +14926,SUPRD,8,2012-09-09 08:14:14,2012-10-03 01:59:45,2012-09-20 22:07:56,3,266.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14927,LEHMS,5,2018-01-10 22:26:18,2018-02-01 16:26:02,2018-01-27 20:47:24,3,69.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14928,BSBEV,9,2022-10-06 07:49:04,2022-10-12 00:14:59,2022-10-21 05:38:39,3,88.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +14929,BLAUS,4,2017-10-27 20:30:34,2017-11-18 05:26:54,2017-11-05 18:22:57,2,194.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14930,CENTC,7,2013-05-23 02:40:09,2013-06-04 14:30:45,2013-05-28 11:10:31,3,146,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14931,SEVES,1,2019-08-29 10:51:48,2019-09-14 13:00:21,2019-09-04 23:27:47,1,409.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14932,BLONP,1,2019-10-19 07:28:18,2019-11-25 09:08:37,2019-10-26 04:11:51,3,147.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +14933,RICAR,2,2021-05-28 17:45:21,2021-06-27 05:17:49,2021-06-16 12:21:54,1,319.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +14934,PARIS,8,2023-04-20 06:02:46,2023-04-24 15:41:15,2023-04-22 11:39:03,2,119.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +14935,MORGK,5,2016-08-12 13:56:30,2016-08-29 16:59:42,2016-08-29 08:26:54,1,336.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14936,FURIB,1,2018-05-12 01:43:12,2018-06-12 10:44:06,2018-05-23 03:18:54,1,371,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +14937,FISSA,6,2018-07-23 23:16:21,2018-09-12 00:14:26,2018-08-05 15:34:59,2,34.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14938,LAZYK,5,2017-08-27 09:58:51,2017-09-24 08:08:12,2017-09-02 13:19:41,2,44.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14939,GALED,8,2016-03-11 11:50:03,2016-04-20 03:13:14,2016-03-16 22:05:55,1,468.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14940,OCEAN,7,2023-03-22 04:55:55,2023-03-23 15:15:40,2023-03-23 11:57:55,1,189.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14941,MAGAA,6,2020-01-17 09:11:40,2020-01-27 13:00:54,2020-02-06 22:19:58,1,255.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +14942,DRACD,2,2017-07-19 02:44:28,2017-08-06 14:54:44,2017-08-11 19:02:54,1,53.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +14943,GALED,4,2019-10-27 07:59:08,2019-11-28 16:28:49,2019-10-28 20:03:56,2,346.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +14944,WILMK,2,2017-05-16 15:22:30,2017-06-29 07:15:23,2017-06-08 05:10:46,3,270,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +14945,HUNGC,4,2021-03-18 17:22:54,2021-04-06 20:37:28,2021-03-23 03:58:29,3,284,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +14946,WOLZA,8,2019-08-19 12:28:10,2019-09-09 18:45:57,2019-08-19 14:00:51,1,66,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +14947,ROMEY,6,2015-02-24 15:44:09,2015-03-05 02:14:38,2015-02-26 17:04:36,3,253.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14948,BSBEV,6,2021-02-06 04:35:06,2021-03-16 16:33:51,2021-02-08 00:32:42,1,104.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14949,AROUT,2,2017-10-07 06:08:44,2017-10-27 13:13:25,2017-10-14 20:13:32,3,369,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14950,RATTC,4,2018-09-15 12:59:13,2018-10-08 17:42:07,2018-09-18 18:54:46,1,476.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +14951,OCEAN,6,2020-08-09 00:51:19,2020-08-14 15:09:06,2020-09-06 11:29:24,3,428,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14952,GOURL,3,2023-08-13 02:04:27,2023-09-02 19:15:08,2023-08-13 05:36:58,3,348,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +14953,WOLZA,9,2020-04-05 19:55:53,2020-05-03 10:55:48,2020-04-12 18:19:26,2,198,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14954,FRANS,5,2019-09-13 10:11:24,2019-09-23 13:37:40,2019-09-15 12:36:48,3,514.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14955,LINOD,2,2016-03-09 22:51:57,2016-04-02 13:06:09,2016-03-31 03:36:10,1,311.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +14956,EASTC,3,2017-05-17 06:27:56,2017-05-19 12:16:46,2017-05-27 11:14:14,1,307.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14957,CONSH,3,2015-06-03 00:53:54,2015-06-23 03:34:14,2015-06-17 09:42:02,2,172.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14958,SIMOB,9,2013-11-03 19:43:44,2013-11-04 18:05:43,2013-11-04 09:48:19,3,183,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14959,MAISD,8,2022-03-25 14:56:11,2022-04-19 10:05:28,2022-03-27 01:19:44,3,357.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +14960,ANTON,1,2018-01-17 06:39:38,2018-01-24 21:21:42,2018-01-25 04:10:01,2,381.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14961,SUPRD,1,2017-06-05 20:45:26,2017-07-15 13:51:57,2017-06-14 11:00:17,3,66,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14962,GOURL,2,2013-08-05 01:51:15,2013-09-11 06:15:35,2013-08-10 14:54:49,2,437.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +14963,FOLKO,5,2021-01-11 09:52:01,2021-01-17 04:19:57,2021-01-16 04:38:17,2,44.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14964,WHITC,1,2014-05-17 15:30:07,2014-06-01 23:32:16,2014-05-22 12:49:54,2,269.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +14965,ERNSH,9,2016-02-20 05:21:40,2016-02-28 15:42:17,2016-02-29 15:32:08,1,187.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +14966,KOENE,7,2022-12-03 06:42:45,2022-12-06 12:02:44,2022-12-03 10:11:06,1,334,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14967,HANAR,3,2014-09-24 14:51:42,2014-10-05 01:41:11,2014-09-26 12:08:08,1,294.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +14968,BLONP,8,2013-02-23 10:27:42,2013-04-02 23:04:11,2013-03-07 23:35:47,3,32.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +14969,NORTS,1,2022-07-03 01:13:02,2022-08-02 18:10:04,2022-07-03 09:49:36,2,238.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +14970,CONSH,3,2015-11-13 07:53:36,2015-11-18 23:39:32,2015-11-23 03:03:50,1,452.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +14971,RICAR,7,2023-07-02 14:28:54,2023-07-03 11:57:08,2023-07-19 00:07:43,2,102,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +14972,MORGK,1,2018-06-26 01:37:34,2018-07-15 23:50:30,2018-06-26 20:00:25,3,271.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +14973,ALFKI,7,2013-05-27 22:31:39,2013-07-08 14:30:06,2013-05-29 09:01:07,3,52.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +14974,NORTS,3,2022-01-08 21:45:22,2022-02-05 23:52:07,2022-01-19 09:14:30,3,501.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14975,KOENE,9,2023-10-13 02:16:40,2023-10-21 14:08:29,2023-10-29 14:35:59,1,297.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14976,LILAS,3,2016-03-17 22:44:09,2016-04-01 03:00:19,2016-04-02 16:52:44,3,236.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +14977,LONEP,1,2016-01-17 16:18:50,2016-01-20 06:27:49,2016-01-24 04:30:30,1,307.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +14978,RANCH,9,2016-05-28 09:29:28,2016-07-04 13:30:45,2016-06-06 09:32:25,2,161.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +14979,FOLIG,5,2015-08-26 23:54:47,2015-09-06 15:13:56,2015-08-29 05:02:11,1,454.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +14980,ANTON,8,2021-05-21 12:44:03,2021-06-09 13:21:05,2021-05-25 15:41:32,3,97,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +14981,BSBEV,4,2019-10-29 03:05:16,2019-11-07 09:38:48,2019-10-29 07:41:13,2,172.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14982,ANTON,8,2016-02-07 15:41:51,2016-03-19 15:33:23,2016-02-26 23:08:52,2,140,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +14983,ANATR,3,2019-05-07 08:42:57,2019-05-07 16:39:00,2019-05-08 03:39:45,1,81.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +14984,LAMAI,8,2022-07-21 18:15:37,2022-08-21 08:16:40,2022-08-10 01:33:55,1,436,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +14985,BONAP,1,2021-11-11 13:39:40,2021-11-19 18:29:42,2021-11-26 16:20:33,3,81.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +14986,FRANR,6,2015-03-13 20:51:37,2015-04-16 15:24:14,2015-03-17 12:59:15,3,71,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14987,PRINI,1,2013-05-17 12:19:23,2013-06-01 06:32:50,2013-05-18 05:09:04,2,146,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +14988,FAMIA,9,2012-07-25 11:13:23,2012-08-10 21:31:49,2012-08-01 05:22:23,2,264.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +14989,RATTC,5,2018-04-22 19:20:18,2018-05-02 05:08:52,2018-04-23 05:45:01,1,503.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +14990,BOLID,8,2016-06-03 09:51:49,2016-06-29 11:52:39,2016-06-05 21:17:20,3,471.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +14991,FISSA,4,2014-10-21 12:37:50,2014-11-11 09:20:48,2014-10-25 19:24:35,1,19.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +14992,TRAIH,5,2016-01-20 17:43:03,2016-02-13 02:50:46,2016-01-27 11:17:19,2,347.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +14993,OCEAN,4,2021-01-03 20:04:43,2021-01-24 09:14:31,2021-01-14 21:00:31,1,230.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +14994,LAMAI,1,2013-07-28 22:53:27,2013-08-14 16:40:51,2013-07-29 17:10:48,1,437.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +14995,WOLZA,9,2022-12-29 06:20:55,2023-01-21 12:28:20,2022-12-29 17:33:17,1,366,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +14996,KOENE,6,2023-06-26 06:43:52,2023-06-28 14:29:18,2023-07-15 00:33:11,3,268,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +14997,TORTU,9,2014-08-23 06:01:08,2014-09-12 23:42:18,2014-09-10 04:57:24,3,37.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +14998,QUEDE,1,2016-04-06 14:59:03,2016-04-08 04:05:21,2016-04-16 15:50:30,1,309,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +14999,HUNGO,6,2023-05-16 01:31:59,2023-05-28 21:49:00,2023-05-16 13:56:50,3,50.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15000,QUEEN,8,2015-09-01 18:51:42,2015-09-29 16:36:14,2015-09-14 15:39:40,1,462.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15001,SUPRD,4,2016-02-08 12:40:17,2016-03-16 22:11:39,2016-02-09 16:15:18,2,324,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15002,WHITC,3,2023-02-18 08:43:55,2023-02-19 04:10:19,2023-03-06 14:57:28,3,148.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15003,WANDK,6,2013-03-20 20:44:46,2013-04-22 15:19:47,2013-03-27 01:24:39,2,144.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15004,WARTH,1,2020-12-18 17:41:27,2020-12-29 02:54:52,2020-12-19 15:55:48,1,341,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15005,SAVEA,7,2013-03-26 06:39:27,2013-04-01 03:04:19,2013-03-28 13:54:10,3,80,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15006,VICTE,5,2013-04-10 01:13:36,2013-04-27 13:43:06,2013-04-17 21:18:32,2,212.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15007,REGGC,9,2015-09-24 17:12:41,2015-10-09 19:26:19,2015-09-28 05:12:53,3,186.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15008,CENTC,9,2020-09-16 22:19:20,2020-09-19 06:30:49,2020-09-19 14:27:50,3,348,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15009,THEBI,8,2014-03-23 09:42:45,2014-03-30 13:04:46,2014-03-25 19:40:48,3,305,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15010,PARIS,3,2022-10-17 13:50:52,2022-11-04 20:12:54,2022-11-05 10:39:21,1,156.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15011,PERIC,1,2013-06-11 23:42:13,2013-07-08 03:26:22,2013-06-15 03:35:21,2,335.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15012,OCEAN,1,2016-04-20 03:55:18,2016-06-04 03:48:07,2016-04-25 06:49:29,1,164,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15013,PRINI,2,2021-04-14 09:44:23,2021-05-19 22:01:59,2021-04-26 07:26:24,2,315.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15014,SUPRD,7,2017-10-19 14:45:38,2017-12-12 04:47:14,2017-10-29 11:44:02,1,66.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15015,THECR,6,2019-03-27 21:19:32,2019-04-04 07:32:43,2019-03-30 16:53:53,1,376,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15016,CENTC,8,2018-08-01 04:50:05,2018-08-09 09:23:24,2018-08-09 22:33:28,2,186,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +15017,RICSU,3,2021-09-13 15:09:13,2021-09-14 08:14:02,2021-09-13 19:51:53,3,123.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15018,LETSS,3,2015-09-05 00:59:21,2015-10-07 12:51:07,2015-09-15 19:41:56,2,188.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15019,LEHMS,4,2015-12-17 16:38:39,2015-12-24 20:41:50,2015-12-19 01:54:33,2,384,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15020,PERIC,3,2015-08-24 20:26:33,2015-09-22 12:45:31,2015-08-25 18:44:49,1,300.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15021,QUEEN,7,2016-11-10 17:00:48,2016-11-17 19:01:56,2016-11-20 14:09:18,1,25.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +15022,KOENE,3,2018-11-04 04:54:35,2018-11-27 07:22:33,2018-11-19 12:24:27,2,19.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15023,QUICK,6,2020-01-03 06:52:26,2020-01-18 06:37:36,2020-01-08 02:31:46,2,147.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15024,QUEEN,1,2014-05-09 04:10:19,2014-05-17 19:57:46,2014-05-31 23:49:12,1,413.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15025,THEBI,3,2014-06-19 11:07:49,2014-07-17 19:40:51,2014-06-21 01:26:36,1,404.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15026,OLDWO,2,2021-05-12 03:17:34,2021-05-30 12:20:19,2021-05-18 10:00:53,1,180.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15027,VAFFE,4,2020-06-04 11:44:47,2020-06-09 09:23:27,2020-06-18 06:19:23,1,347.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15028,QUEDE,4,2017-10-17 23:56:38,2017-10-18 12:50:01,2017-11-06 08:17:23,1,166.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15029,SPECD,4,2020-11-14 11:12:15,2021-01-04 06:06:35,2020-11-26 16:17:55,1,495.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15030,BSBEV,3,2021-11-19 18:33:14,2021-11-26 04:52:37,2021-11-22 11:22:40,3,327.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15031,HUNGO,1,2014-01-02 13:20:52,2014-02-20 08:06:28,2014-01-06 07:22:27,3,130,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15032,WARTH,2,2022-07-16 09:56:43,2022-07-21 13:09:19,2022-07-20 19:38:59,2,452,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15033,FURIB,4,2023-01-08 08:55:03,2023-01-21 23:17:10,2023-01-25 21:56:34,1,81.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15034,SPLIR,7,2023-05-22 19:53:40,2023-05-28 13:55:41,2023-05-27 05:22:08,1,491.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15035,GALED,2,2014-04-16 14:53:29,2014-05-02 09:09:06,2014-04-20 15:29:34,1,157.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15036,OLDWO,8,2020-02-07 19:45:06,2020-03-05 00:29:01,2020-02-17 04:29:42,3,124,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15037,SUPRD,2,2015-09-07 22:01:24,2015-09-15 14:22:13,2015-09-11 22:05:35,2,104.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15038,SIMOB,1,2017-10-10 14:04:40,2017-10-25 01:07:27,2017-10-30 21:28:13,3,453.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15039,GOURL,7,2021-05-20 17:46:01,2021-06-29 23:32:29,2021-05-30 19:42:15,2,281.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +15040,GOURL,4,2022-09-29 07:22:04,2022-10-22 14:48:25,2022-10-01 16:33:32,2,233.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15041,LINOD,6,2017-10-05 16:06:25,2017-10-09 07:56:54,2017-10-08 10:01:30,1,251.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15042,GOURL,7,2014-06-09 18:30:35,2014-07-11 14:41:06,2014-06-11 15:25:56,3,102.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15043,MAGAA,3,2022-03-13 04:25:28,2022-03-15 13:25:26,2022-03-22 13:38:11,2,477.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15044,BLONP,6,2021-03-02 21:16:12,2021-03-21 14:41:07,2021-03-10 23:57:11,2,149,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15045,WHITC,4,2020-09-18 05:15:58,2020-09-23 13:27:27,2020-10-01 01:09:46,3,196.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15046,RICSU,6,2023-03-12 20:33:35,2023-04-20 05:53:57,2023-03-19 04:47:28,3,216.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15047,BOTTM,7,2022-10-26 22:55:38,2022-12-07 09:58:06,2022-11-06 11:14:51,1,41.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15048,WHITC,6,2017-04-13 14:31:27,2017-05-09 19:20:35,2017-05-03 13:21:31,2,274.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15049,GODOS,5,2022-07-20 13:30:10,2022-08-04 09:57:06,2022-08-06 19:10:22,3,286.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15050,FURIB,4,2018-12-24 16:24:34,2019-01-12 21:59:25,2019-01-06 04:41:35,1,359.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15051,CENTC,6,2017-06-01 11:04:29,2017-06-03 17:19:16,2017-06-02 10:34:20,3,34,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15052,ANTON,7,2021-08-06 19:12:00,2021-09-02 17:10:25,2021-08-24 13:33:30,1,180,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15053,LEHMS,9,2018-12-24 08:31:35,2019-01-23 18:36:55,2018-12-27 18:53:22,1,226.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15054,LAMAI,2,2017-05-27 17:11:33,2017-06-14 22:40:57,2017-05-28 04:14:06,3,156,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15055,GALED,6,2019-04-16 11:56:33,2019-06-02 15:33:18,2019-05-14 05:55:17,3,102.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15056,PICCO,3,2021-05-08 12:56:39,2021-05-09 08:19:08,2021-05-11 05:08:47,1,327.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15057,ERNSH,9,2019-04-07 23:31:50,2019-04-26 04:41:52,2019-04-09 06:59:45,3,514.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15058,PERIC,7,2022-08-09 14:10:52,2022-09-15 09:52:23,2022-08-11 15:44:46,1,371.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15059,FRANS,4,2021-08-21 00:31:18,2021-09-20 18:20:16,2021-08-22 22:11:22,1,355.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15060,DRACD,7,2020-08-08 23:16:33,2020-08-23 23:28:05,2020-08-11 16:55:16,3,163,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15061,TRAIH,3,2016-07-07 07:44:20,2016-07-12 16:17:56,2016-07-19 20:46:40,3,408,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15062,THECR,8,2020-11-01 23:40:24,2020-11-21 15:57:01,2020-11-02 15:40:38,2,191.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15063,BERGS,7,2014-01-01 00:20:14,2014-01-30 09:57:59,2014-01-02 17:37:40,1,273,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15064,OCEAN,4,2012-12-31 23:19:29,2013-01-10 11:41:13,2013-01-11 23:46:15,2,179,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15065,GREAL,6,2018-04-27 19:22:02,2018-06-07 21:28:51,2018-04-29 10:43:27,3,351.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15066,QUEEN,8,2014-08-26 23:22:19,2014-09-24 06:16:39,2014-08-28 16:27:36,1,98.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15067,HUNGO,6,2023-06-15 04:27:01,2023-07-17 02:36:28,2023-06-16 13:37:13,2,388.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15068,ANATR,1,2019-06-17 10:18:32,2019-06-20 10:23:52,2019-06-19 06:36:25,3,423.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15069,RATTC,3,2020-12-07 03:42:20,2020-12-13 00:40:59,2020-12-08 09:25:02,1,247.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15070,HUNGC,7,2023-05-25 18:44:02,2023-06-01 05:28:43,2023-06-02 18:11:26,3,64.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15071,MORGK,6,2012-12-01 03:35:40,2013-01-19 20:27:03,2012-12-13 05:24:58,3,116.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15072,PARIS,7,2013-01-20 08:14:55,2013-02-06 17:56:23,2013-01-22 19:41:08,3,148,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15073,RICAR,7,2022-09-30 02:09:16,2022-10-27 09:58:54,2022-10-03 07:04:18,1,270.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15074,MAGAA,1,2018-03-05 09:46:32,2018-03-07 00:55:49,2018-03-10 13:02:44,2,394.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15075,QUEDE,1,2013-06-24 17:15:36,2013-07-13 18:32:00,2013-06-26 13:39:41,2,370.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15076,LETSS,9,2016-11-02 18:01:14,2016-11-04 02:04:37,2016-11-04 09:14:08,3,482.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15077,HANAR,6,2023-03-02 06:25:15,2023-04-22 23:01:02,2023-03-15 11:45:13,1,422.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +15078,CACTU,3,2016-04-23 16:09:58,2016-05-16 05:21:33,2016-05-07 22:39:15,1,446.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15079,SAVEA,9,2021-09-09 21:28:00,2021-10-01 02:40:30,2021-09-23 17:37:03,3,500.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15080,QUICK,6,2018-05-01 06:15:33,2018-06-08 17:45:29,2018-05-09 05:12:27,1,167,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15081,FOLIG,6,2014-06-21 00:44:38,2014-07-05 22:59:17,2014-06-26 07:42:33,3,237.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15082,TOMSP,9,2021-08-12 14:36:39,2021-08-16 20:04:35,2021-08-31 18:23:54,2,69.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15083,GALED,2,2013-02-22 18:40:28,2013-03-16 02:17:43,2013-03-17 17:07:31,1,377,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15084,BLAUS,8,2021-01-05 03:37:07,2021-01-22 15:00:04,2021-01-21 22:52:45,3,212.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15085,TRADH,4,2017-10-24 17:07:49,2017-10-25 17:23:40,2017-10-25 04:05:10,3,516,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15086,TOMSP,1,2015-07-13 13:19:57,2015-07-13 19:59:18,2015-07-13 21:24:47,3,313.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15087,OCEAN,6,2021-10-28 11:29:54,2021-11-03 22:18:28,2021-11-03 04:47:10,2,394.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15088,FRANR,1,2020-01-20 23:06:57,2020-02-03 00:00:47,2020-02-10 11:20:27,2,394.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15089,QUICK,7,2017-10-11 18:49:39,2017-11-22 23:03:12,2017-10-17 11:43:07,1,116.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +15090,COMMI,3,2021-09-26 03:21:44,2021-09-29 14:20:34,2021-10-06 16:00:25,2,351.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15091,ROMEY,1,2017-09-06 00:36:45,2017-09-27 04:29:45,2017-09-09 22:43:30,3,320.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15092,NORTS,5,2015-01-23 10:44:38,2015-02-07 22:19:12,2015-02-03 12:24:42,2,267,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15093,BOLID,6,2012-11-17 12:04:01,2012-11-21 13:24:00,2012-11-25 14:14:59,1,302.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15094,SUPRD,8,2018-07-11 00:55:21,2018-07-27 23:31:15,2018-07-18 20:21:21,3,178,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15095,LILAS,6,2013-03-01 17:04:32,2013-03-17 11:23:33,2013-03-07 08:42:18,3,446.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15096,FOLKO,9,2019-03-30 17:40:08,2019-04-14 17:16:03,2019-03-30 22:42:38,3,432.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15097,SEVES,6,2022-03-20 06:59:33,2022-04-13 01:35:13,2022-04-09 11:52:33,3,432,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15098,RATTC,6,2014-07-11 09:44:00,2014-08-03 05:12:44,2014-07-20 22:40:05,2,177,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15099,FAMIA,3,2014-03-20 00:17:50,2014-05-02 12:14:37,2014-04-04 06:59:34,3,115.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15100,DUMON,9,2012-08-01 12:32:06,2012-08-02 19:28:05,2012-08-09 01:24:45,3,243,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15101,TORTU,8,2017-11-07 07:29:02,2017-12-09 01:57:30,2017-11-14 15:59:50,3,520,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15102,TRAIH,3,2015-02-24 22:19:07,2015-03-08 05:03:37,2015-03-14 02:39:54,2,159.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15103,OLDWO,6,2013-01-22 00:22:09,2013-02-04 15:06:01,2013-01-25 22:57:33,2,170.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15104,OTTIK,1,2018-03-25 15:33:32,2018-03-28 03:25:04,2018-04-08 13:29:21,2,91,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15105,FRANS,2,2014-05-08 17:27:36,2014-05-28 09:21:44,2014-05-10 18:26:28,2,270.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15106,HILAA,7,2020-08-13 09:52:33,2020-08-17 16:45:27,2020-09-08 09:46:14,3,491.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15107,VICTE,5,2018-02-02 11:54:21,2018-02-04 00:48:06,2018-02-20 01:31:22,3,78,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15108,RANCH,5,2023-04-21 17:57:54,2023-05-28 15:05:17,2023-05-08 15:57:12,3,346.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15109,MAGAA,5,2017-06-03 04:59:14,2017-06-08 09:01:09,2017-06-19 14:25:46,3,202,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15110,MEREP,2,2019-12-13 20:03:32,2020-01-19 18:33:55,2019-12-23 09:40:05,2,458.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15111,PRINI,2,2015-09-30 13:43:09,2015-11-03 01:32:12,2015-10-07 18:30:21,3,401.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15112,MAGAA,5,2016-07-11 04:19:44,2016-07-22 02:39:21,2016-07-24 01:17:05,3,184.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15113,LAMAI,2,2017-10-12 22:05:42,2017-11-18 02:47:32,2017-10-21 07:51:57,3,19.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15114,TRAIH,5,2020-09-08 23:56:16,2020-10-09 15:06:29,2020-09-20 21:58:26,1,485,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15115,THEBI,3,2023-02-14 18:17:28,2023-03-14 02:06:14,2023-02-16 03:49:48,3,234.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15116,PARIS,6,2023-08-07 21:49:25,2023-09-26 20:35:32,2023-08-08 11:22:54,2,113.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15117,NORTS,5,2018-01-11 22:46:25,2018-01-15 17:53:25,2018-01-25 19:29:58,2,434,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15118,BLAUS,8,2017-05-25 21:44:49,2017-06-14 23:23:57,2017-05-28 22:18:09,1,395.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +15119,BLAUS,4,2014-04-22 17:43:01,2014-04-25 16:57:38,2014-04-26 07:26:43,1,123.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15120,PRINI,6,2023-02-05 08:49:27,2023-02-22 15:31:35,2023-02-12 09:38:18,1,34.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15121,BLONP,6,2018-10-12 20:06:23,2018-11-19 23:45:06,2018-10-15 18:10:40,2,55.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15122,FRANS,3,2015-03-04 22:41:09,2015-03-11 13:26:49,2015-03-18 12:47:31,1,438.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15123,OTTIK,8,2014-12-25 00:09:00,2015-01-26 16:24:08,2014-12-31 04:43:35,1,229,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15124,FRANR,7,2012-11-17 08:48:50,2012-11-29 14:41:35,2012-11-26 04:03:25,1,474.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15125,DUMON,6,2021-01-16 07:48:14,2021-02-04 08:07:14,2021-02-10 08:13:08,2,346.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15126,MAGAA,6,2017-11-26 16:28:00,2018-01-02 21:17:54,2017-12-01 20:07:20,3,360.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15127,MORGK,8,2022-12-03 14:45:55,2022-12-12 11:07:56,2022-12-08 15:17:39,3,487.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15128,MORGK,6,2022-11-20 02:23:31,2022-11-28 02:32:13,2022-11-20 16:00:11,3,323.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15129,PRINI,8,2020-09-10 05:08:37,2020-09-15 10:42:54,2020-09-10 20:04:39,1,93,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15130,WELLI,3,2013-12-05 19:38:33,2014-01-14 17:11:48,2013-12-06 00:17:55,1,437.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15131,BOLID,1,2013-03-15 13:03:22,2013-04-03 12:24:27,2013-04-07 12:09:53,1,477.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15132,TRAIH,7,2015-04-03 21:16:35,2015-04-24 04:22:24,2015-04-05 01:54:57,3,30.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15133,FURIB,1,2016-04-30 06:36:27,2016-05-14 08:21:02,2016-05-13 13:20:05,3,218.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15134,MAGAA,4,2017-01-03 09:04:09,2017-01-21 16:13:15,2017-01-09 15:37:01,2,107.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15135,LACOR,9,2020-11-17 05:47:35,2020-11-26 19:37:52,2020-11-28 14:38:32,3,339.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15136,VALON,2,2022-02-06 16:46:42,2022-02-12 14:55:45,2022-02-07 07:08:34,2,54,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15137,FRANK,2,2023-01-13 22:47:47,2023-02-01 22:38:03,2023-01-17 19:38:14,1,190.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15138,WILMK,5,2017-10-10 13:03:00,2017-10-31 21:37:39,2017-10-16 20:37:13,1,112.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15139,HILAA,6,2020-02-19 21:28:24,2020-03-13 12:33:05,2020-03-01 11:03:22,2,457.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15140,LAZYK,5,2021-07-20 07:44:22,2021-07-24 12:47:04,2021-07-20 12:34:21,3,299.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15141,ROMEY,4,2018-07-24 17:24:24,2018-07-29 16:12:56,2018-07-26 10:54:07,1,121.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +15142,CACTU,1,2014-06-28 08:35:48,2014-07-03 03:00:08,2014-07-18 12:16:49,3,524,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +15143,KOENE,4,2017-04-22 10:42:30,2017-04-27 04:18:15,2017-04-23 21:34:53,1,117.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15144,BONAP,6,2016-03-05 05:23:16,2016-03-09 16:34:37,2016-03-13 11:37:42,1,278.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15145,BSBEV,2,2015-08-04 19:18:25,2015-08-27 23:05:33,2015-08-07 10:28:30,3,170.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15146,BSBEV,2,2021-03-25 01:04:29,2021-03-29 16:57:38,2021-03-26 20:51:17,2,245.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15147,BLAUS,1,2019-09-24 03:39:17,2019-10-24 15:00:19,2019-09-27 21:21:33,2,423.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15148,FOLKO,7,2023-04-26 10:02:28,2023-06-04 23:58:08,2023-05-02 06:48:02,3,473,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15149,LETSS,5,2023-04-05 08:01:56,2023-04-10 16:52:50,2023-04-05 21:45:13,1,132,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15150,SPECD,1,2013-05-21 19:18:24,2013-06-10 11:31:49,2013-05-26 22:37:54,2,350.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15151,LAMAI,2,2012-08-17 18:48:42,2012-09-25 05:08:40,2012-08-31 01:38:55,1,131.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15152,SEVES,3,2014-05-26 10:17:28,2014-06-25 09:55:40,2014-06-04 11:17:11,2,223.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15153,WOLZA,4,2015-09-07 13:01:50,2015-09-18 13:13:31,2015-09-09 03:40:14,2,87.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15154,ANTON,9,2019-09-21 20:26:32,2019-10-18 01:51:29,2019-09-23 06:45:08,2,149.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +15155,LETSS,5,2015-10-15 18:15:59,2015-10-28 23:02:32,2015-10-16 05:56:54,2,223.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15156,GODOS,4,2013-03-31 06:06:45,2013-05-01 14:40:57,2013-04-03 18:16:21,2,178,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15157,PARIS,2,2022-11-19 17:53:53,2022-11-23 13:39:57,2022-11-19 21:35:07,3,456.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15158,SPECD,7,2014-05-01 14:01:48,2014-05-04 15:07:35,2014-05-05 15:58:54,2,332.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15159,MEREP,4,2015-11-03 11:03:33,2015-12-13 16:16:32,2015-11-10 15:39:08,2,91,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15160,LAZYK,2,2017-02-04 11:31:01,2017-02-25 15:18:55,2017-02-16 09:05:03,1,97.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15161,MORGK,2,2017-10-25 22:42:20,2017-11-06 07:54:52,2017-11-09 15:51:19,2,403,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15162,SPLIR,6,2017-05-03 18:43:10,2017-05-12 02:02:43,2017-05-04 17:46:41,3,308.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15163,OLDWO,4,2017-08-14 01:57:06,2017-09-12 15:01:19,2017-08-17 10:18:36,3,336,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15164,TORTU,2,2017-01-11 14:21:33,2017-02-07 15:05:35,2017-01-30 11:16:32,3,479.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15165,BOLID,7,2014-02-28 19:03:55,2014-03-30 20:51:28,2014-03-01 10:00:11,1,186,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15166,KOENE,4,2020-11-04 16:30:44,2020-11-04 22:06:04,2020-11-07 00:28:35,2,333.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15167,HANAR,6,2013-12-30 05:16:23,2014-01-18 10:03:47,2014-01-01 12:32:03,1,425,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15168,VICTE,9,2021-09-01 19:24:22,2021-09-03 17:07:10,2021-09-13 12:12:18,2,25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15169,VALON,5,2020-06-26 23:13:08,2020-07-15 10:22:33,2020-06-30 13:33:37,1,184.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15170,VALON,4,2018-11-01 14:51:16,2018-12-15 08:23:47,2018-11-11 01:21:18,3,457.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15171,PERIC,8,2016-05-07 02:43:28,2016-06-15 02:13:18,2016-05-14 08:18:28,3,370,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15172,BLONP,8,2018-10-26 04:38:59,2018-12-19 02:38:26,2018-10-28 20:58:19,2,250.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15173,WELLI,1,2023-07-16 07:54:00,2023-08-07 21:54:01,2023-07-18 03:45:40,3,505.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15174,OTTIK,3,2013-10-09 02:49:29,2013-10-26 10:09:18,2013-10-17 23:16:22,1,406.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15175,BLONP,2,2015-06-24 17:34:03,2015-08-03 18:57:09,2015-07-07 22:27:21,1,56.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15176,MAISD,5,2013-07-30 09:22:09,2013-08-20 02:57:45,2013-08-01 05:54:38,2,416.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15177,MAGAA,6,2013-01-08 02:29:09,2013-01-23 11:21:50,2013-01-21 19:54:10,3,138.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15178,SPLIR,2,2020-09-21 18:24:18,2020-09-25 09:57:12,2020-09-22 12:19:32,1,246.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15179,CACTU,5,2014-04-02 21:33:21,2014-04-22 18:45:35,2014-04-05 07:35:52,2,447.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15180,BLONP,3,2021-05-14 10:32:28,2021-05-24 11:27:11,2021-05-24 18:24:12,2,358.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15181,OCEAN,1,2014-04-25 21:52:36,2014-05-13 06:46:12,2014-04-27 10:00:25,1,394.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15182,WANDK,7,2019-05-04 21:29:43,2019-05-28 17:48:10,2019-05-07 14:50:24,2,449.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15183,QUEDE,8,2020-03-23 09:00:47,2020-04-12 11:25:56,2020-04-11 20:32:12,1,308.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15184,LETSS,9,2018-08-11 17:46:35,2018-09-20 16:00:51,2018-08-12 18:59:05,2,398.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15185,Val2 ,9,2013-02-22 21:59:21,2013-03-20 09:13:39,2013-03-02 05:40:07,2,339.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15186,LONEP,8,2021-06-25 05:32:20,2021-07-11 13:52:32,2021-07-05 19:01:52,3,374.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15187,ISLAT,4,2012-09-11 12:14:21,2012-10-08 06:20:40,2012-09-13 06:04:50,1,130,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15188,VICTE,5,2013-03-23 00:25:06,2013-04-03 01:26:41,2013-03-29 03:25:32,1,304.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15189,RICSU,9,2016-09-28 09:14:53,2016-10-12 00:02:21,2016-09-30 08:37:10,1,406.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15190,DUMON,8,2021-11-05 20:29:07,2021-11-05 22:12:53,2021-11-09 19:41:05,1,354.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15191,FURIB,6,2020-05-03 14:00:43,2020-05-18 21:45:31,2020-05-23 21:51:11,2,225.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15192,ANATR,4,2018-12-13 12:27:48,2018-12-19 18:03:09,2018-12-15 16:30:30,3,406.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15193,CONSH,5,2023-04-15 15:43:16,2023-04-17 14:55:54,2023-04-16 19:41:39,3,42.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15194,DRACD,3,2018-04-16 00:58:39,2018-04-18 03:45:40,2018-04-20 04:59:27,2,460,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15195,LETSS,1,2015-08-21 15:18:22,2015-09-30 08:09:07,2015-08-30 05:13:53,1,315.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15196,FRANR,5,2018-06-16 20:51:51,2018-07-23 12:13:54,2018-06-17 18:17:32,2,34.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15197,PICCO,2,2022-02-18 06:34:41,2022-03-09 12:10:10,2022-02-24 16:49:02,1,277.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15198,THECR,3,2013-12-08 11:18:40,2013-12-26 23:31:07,2013-12-13 03:30:08,2,485.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15199,QUEDE,7,2023-09-13 22:02:09,2023-09-15 12:53:54,2023-09-20 19:58:21,1,337,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15200,LINOD,4,2016-12-28 14:56:04,2017-01-12 15:33:37,2016-12-31 21:44:08,2,370.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +15201,LEHMS,8,2013-09-01 00:21:45,2013-10-03 06:59:32,2013-09-04 18:56:28,1,169.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15202,GROSR,4,2012-09-19 09:06:48,2012-09-24 16:43:48,2012-10-06 10:10:15,2,227.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15203,QUICK,4,2020-09-02 09:08:07,2020-09-07 07:20:12,2020-09-12 08:46:33,2,379.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15204,ANATR,2,2020-09-20 09:14:02,2020-10-01 06:42:25,2020-10-04 22:09:56,1,55.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15205,FRANK,2,2016-08-12 11:50:26,2016-09-01 04:15:45,2016-08-16 10:37:27,3,89,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +15206,PARIS,8,2020-11-28 13:09:28,2020-12-17 23:16:20,2020-12-21 02:31:48,1,480.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15207,FRANR,7,2013-03-10 17:42:59,2013-04-21 06:16:25,2013-03-21 03:21:00,2,403.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15208,QUEDE,1,2018-05-06 18:19:33,2018-05-19 23:29:33,2018-05-08 15:46:38,3,304.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15209,WILMK,3,2022-10-15 20:10:17,2022-10-27 04:53:33,2022-10-16 08:58:30,2,118.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15210,HUNGO,4,2015-12-31 02:08:10,2016-01-13 01:35:46,2015-12-31 19:49:33,2,280,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15211,SUPRD,9,2020-11-27 06:55:00,2020-12-29 11:20:16,2020-11-27 14:32:38,3,117,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15212,BOLID,7,2018-12-14 18:10:42,2018-12-26 00:18:49,2018-12-17 12:24:51,3,365,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15213,RICAR,2,2021-11-16 01:44:13,2021-12-27 15:40:07,2021-11-25 10:04:12,1,266.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15214,FOLKO,3,2016-08-18 09:58:57,2016-08-24 16:39:39,2016-09-09 18:02:17,2,74.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15215,PARIS,9,2017-07-24 10:05:44,2017-08-17 17:43:00,2017-08-03 22:25:55,2,177.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15216,SPECD,7,2014-01-24 17:51:05,2014-02-05 12:08:27,2014-01-29 17:59:05,3,224,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15217,FISSA,8,2015-12-14 16:56:50,2016-01-08 08:03:19,2015-12-17 16:37:48,1,112,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15218,Val2 ,6,2023-04-01 15:20:10,2023-05-04 20:56:11,2023-04-04 19:27:37,2,439.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15219,REGGC,5,2017-04-24 08:29:33,2017-05-14 18:16:54,2017-05-07 06:18:47,3,109,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15220,FAMIA,7,2019-03-19 03:44:57,2019-05-02 05:04:10,2019-04-07 20:54:49,1,146.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15221,LAMAI,8,2014-02-02 05:27:08,2014-03-01 10:41:32,2014-02-16 08:09:41,2,438.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15222,SUPRD,1,2019-01-17 11:53:32,2019-01-22 23:35:44,2019-02-06 23:12:14,3,408.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15223,PICCO,1,2022-02-22 01:01:42,2022-03-06 22:35:58,2022-02-26 16:47:05,1,183,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15224,DRACD,5,2018-01-07 08:44:39,2018-01-22 05:31:52,2018-01-28 04:34:53,3,266.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15225,SEVES,9,2019-10-17 11:19:14,2019-11-19 11:55:22,2019-11-03 22:14:06,2,365,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15226,Val2 ,7,2014-02-08 03:04:11,2014-03-14 18:07:32,2014-02-15 08:36:02,3,248,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15227,CHOPS,6,2021-05-31 20:19:11,2021-07-01 05:54:34,2021-06-11 17:09:00,3,174.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15228,WARTH,8,2017-10-19 10:12:49,2017-11-05 07:13:18,2017-10-31 01:22:51,1,290.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15229,QUEEN,9,2019-05-06 05:30:07,2019-06-11 17:53:20,2019-05-08 09:59:32,3,328.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15230,NORTS,4,2015-08-18 07:22:27,2015-09-02 06:38:03,2015-08-25 05:48:48,2,271,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15231,RANCH,9,2017-03-10 22:00:34,2017-03-11 10:11:09,2017-03-14 19:09:14,2,260,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15232,VICTE,3,2022-03-11 09:55:52,2022-04-06 17:52:37,2022-03-19 05:13:32,1,80,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15233,RANCH,3,2017-03-21 11:07:17,2017-05-16 06:31:45,2017-03-28 02:26:48,1,347,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15234,PICCO,5,2020-10-05 14:15:10,2020-10-25 07:15:06,2020-10-14 16:35:48,1,453.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +15235,QUEEN,6,2012-11-16 20:28:26,2012-12-06 07:45:01,2012-11-19 15:07:26,2,343.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15236,LAUGB,2,2014-05-31 14:58:06,2014-06-14 22:33:38,2014-06-04 15:15:31,2,180.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15237,Val2 ,8,2014-06-07 07:07:22,2014-06-18 02:54:50,2014-06-09 22:07:53,2,362.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15238,FURIB,3,2012-09-07 00:03:57,2012-09-18 12:28:18,2012-09-15 20:06:16,2,87.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15239,RANCH,5,2015-02-23 01:40:01,2015-03-13 15:31:19,2015-02-24 11:01:43,1,509.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15240,BSBEV,5,2012-10-23 10:55:46,2012-11-28 20:48:46,2012-10-26 12:16:33,1,476.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15241,QUEDE,5,2016-01-15 05:26:37,2016-01-23 22:18:12,2016-01-27 23:35:43,2,424.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15242,PERIC,9,2012-10-11 06:19:28,2012-10-19 08:45:03,2012-10-30 19:11:06,1,508.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15243,HANAR,8,2014-07-13 10:35:26,2014-07-29 12:11:19,2014-08-07 19:30:59,1,382.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15244,QUEDE,8,2012-12-20 23:22:39,2013-01-06 08:24:16,2012-12-21 09:02:38,1,349.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15245,WHITC,4,2020-05-13 13:58:56,2020-05-22 19:56:47,2020-05-27 17:16:30,3,44,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15246,TRAIH,6,2016-10-30 07:38:17,2016-11-10 06:55:30,2016-11-04 05:51:11,2,472.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15247,BOTTM,7,2013-09-29 17:02:00,2013-10-06 05:14:28,2013-10-04 16:11:49,2,182,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15248,ERNSH,9,2015-03-14 03:46:22,2015-03-29 00:43:56,2015-03-15 09:49:13,1,167.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15249,WOLZA,8,2013-08-23 13:31:18,2013-08-31 21:52:16,2013-08-26 13:06:27,2,55.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15250,NORTS,7,2014-03-04 12:51:38,2014-04-12 17:36:57,2014-03-21 07:56:05,1,157.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15251,LETSS,6,2018-10-13 09:17:13,2018-11-26 12:38:27,2018-11-01 12:06:22,2,289,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15252,WILMK,9,2014-03-21 07:38:34,2014-05-05 06:30:39,2014-03-24 16:44:11,3,461.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15253,FRANK,2,2022-07-06 15:55:41,2022-07-18 17:55:28,2022-07-13 08:46:58,3,404.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15254,HANAR,6,2018-06-14 12:56:57,2018-06-28 07:08:58,2018-06-22 13:23:54,3,213.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15255,RICSU,2,2014-08-31 22:12:25,2014-09-03 08:05:45,2014-09-07 13:56:27,2,458.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15256,RICSU,4,2016-11-14 02:57:06,2016-12-08 06:45:48,2016-11-21 19:28:47,1,52.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15257,LETSS,4,2016-11-01 03:54:13,2016-11-06 16:27:58,2016-11-14 18:40:21,3,223.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15258,EASTC,9,2015-12-16 22:23:42,2015-12-17 00:41:14,2015-12-19 05:49:20,2,111.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15259,HUNGC,8,2014-02-04 22:18:32,2014-02-05 09:00:59,2014-02-06 08:23:53,1,209,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15260,MAISD,7,2022-08-09 16:22:19,2022-08-21 07:23:46,2022-08-12 12:30:59,3,228,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15261,LILAS,9,2016-10-17 12:37:28,2016-10-29 03:10:03,2016-10-27 00:08:18,2,378,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15262,VICTE,2,2012-12-02 10:17:38,2013-01-06 06:10:02,2012-12-13 14:08:08,1,501.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15263,LAZYK,9,2017-10-31 00:55:32,2017-11-09 20:53:26,2017-11-02 21:06:20,2,439,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15264,GALED,5,2019-09-14 17:29:12,2019-09-23 04:23:28,2019-09-27 03:21:39,3,470,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15265,CHOPS,9,2021-05-13 20:12:46,2021-05-29 23:00:16,2021-05-21 04:48:44,1,107,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15266,ROMEY,9,2022-10-27 20:49:19,2022-12-14 22:00:56,2022-10-31 20:56:11,2,460.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15267,WANDK,3,2012-08-22 21:24:53,2012-09-01 19:19:26,2012-08-30 05:43:42,3,497.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15268,SEVES,6,2015-10-17 16:38:37,2015-10-25 22:00:45,2015-11-06 09:53:56,3,171,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15269,WHITC,7,2019-09-04 17:58:15,2019-09-05 03:18:15,2019-09-04 18:40:17,3,391.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15270,PARIS,8,2022-06-13 14:14:50,2022-07-26 13:09:50,2022-06-17 04:38:49,1,212.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15271,LETSS,8,2021-09-28 16:27:43,2021-11-05 11:57:32,2021-10-15 21:46:39,2,269.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15272,WELLI,8,2019-02-17 02:37:08,2019-03-16 14:04:24,2019-02-22 12:22:52,2,228,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15273,LAZYK,6,2017-02-24 14:27:18,2017-03-16 17:24:30,2017-03-17 09:38:13,2,168.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15274,CHOPS,3,2020-01-02 23:56:46,2020-01-21 12:28:44,2020-01-05 03:21:10,2,88.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15275,SPECD,5,2012-09-07 02:37:40,2012-09-09 09:22:47,2012-09-13 18:55:02,3,436,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15276,CHOPS,3,2021-01-04 23:14:28,2021-02-16 06:44:27,2021-01-13 05:19:00,3,484.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15277,SPLIR,7,2016-01-29 06:58:24,2016-02-05 23:19:56,2016-02-07 02:26:01,3,215.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15278,VINET,3,2021-12-31 21:12:46,2022-02-11 01:43:23,2022-01-04 23:39:41,3,235,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15279,RATTC,8,2014-10-25 16:34:58,2014-11-04 09:52:47,2014-10-27 12:02:14,2,89.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15280,WHITC,2,2018-02-08 08:18:16,2018-03-03 06:56:49,2018-02-14 17:52:36,1,497,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15281,TRAIH,9,2014-03-03 08:36:53,2014-03-25 14:09:04,2014-03-08 09:28:16,3,301,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15282,LEHMS,6,2016-10-04 06:18:36,2016-11-15 02:22:21,2016-10-05 08:46:28,3,489.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15283,TOMSP,8,2013-12-19 08:10:57,2014-01-01 13:05:47,2013-12-22 18:55:01,1,201.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15284,LETSS,1,2020-10-11 16:28:57,2020-10-17 13:48:23,2020-10-16 01:22:06,3,264,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15285,DUMON,5,2015-08-13 17:34:33,2015-08-30 05:38:33,2015-08-20 02:40:36,3,379.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15286,ERNSH,8,2013-05-14 22:15:57,2013-06-10 19:42:11,2013-05-18 00:02:22,2,123.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15287,FISSA,2,2017-02-02 07:02:08,2017-02-20 08:02:28,2017-02-17 07:27:57,2,290.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +15288,THECR,8,2023-04-06 09:39:01,2023-05-02 23:30:09,2023-04-17 09:25:36,3,340.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15289,GROSR,3,2014-02-13 22:26:22,2014-04-01 23:27:25,2014-02-15 01:57:37,2,50,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15290,BSBEV,8,2015-09-14 16:10:24,2015-09-16 00:00:04,2015-09-19 01:26:35,3,162.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15291,FURIB,6,2021-03-22 20:38:55,2021-03-29 19:44:24,2021-03-27 18:36:38,2,404.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +15292,BOTTM,4,2012-12-28 09:54:53,2013-01-27 09:13:21,2013-01-04 13:19:31,1,426.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15293,LEHMS,4,2022-08-08 18:26:21,2022-09-15 08:31:37,2022-08-20 00:32:04,1,235.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15294,WOLZA,5,2015-06-28 23:57:57,2015-07-08 04:30:51,2015-07-02 13:53:00,1,484.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15295,LEHMS,2,2017-12-12 20:02:36,2017-12-24 07:15:51,2017-12-20 06:39:54,1,323.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15296,DUMON,3,2013-10-07 13:14:36,2013-10-17 23:19:36,2013-10-22 19:02:31,1,145.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15297,ISLAT,5,2022-10-08 19:34:10,2022-10-21 14:58:37,2022-10-11 16:26:21,1,384,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15298,BLONP,2,2014-02-17 12:11:06,2014-02-23 21:44:47,2014-02-18 13:31:23,1,343.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15299,HUNGC,5,2014-08-15 01:14:49,2014-08-27 08:54:14,2014-08-19 08:10:49,2,259.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15300,VICTE,1,2019-01-02 19:46:24,2019-02-01 03:51:25,2019-01-11 19:08:41,3,314,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15301,BERGS,3,2017-04-24 08:15:07,2017-05-04 04:05:58,2017-04-24 10:25:44,3,145.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15302,SIMOB,3,2017-07-28 08:16:16,2017-08-27 06:17:05,2017-07-30 14:55:34,1,362.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15303,MAGAA,4,2018-06-26 13:52:41,2018-07-12 14:47:54,2018-07-08 19:11:03,1,194.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15304,LILAS,7,2012-12-28 08:47:47,2013-01-06 01:39:53,2013-01-09 10:10:40,3,455.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15305,TOMSP,4,2017-08-03 12:50:45,2017-08-12 13:31:20,2017-08-09 10:14:35,3,409.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +15306,LAMAI,9,2019-03-24 23:42:48,2019-04-17 06:41:47,2019-04-07 12:15:28,3,89.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15307,GALED,2,2020-04-13 06:57:02,2020-05-17 07:22:30,2020-04-13 11:26:43,3,144,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15308,FRANK,3,2014-01-20 22:44:11,2014-02-19 12:23:23,2014-01-22 20:36:33,2,330.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15309,ISLAT,2,2014-03-05 22:46:19,2014-04-02 00:15:27,2014-03-24 09:54:56,2,508,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15310,HUNGC,6,2021-10-24 09:25:54,2021-11-27 05:19:52,2021-10-24 14:45:48,1,141.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15311,ERNSH,8,2015-04-16 02:29:58,2015-05-10 17:52:53,2015-04-18 17:24:50,2,313.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15312,WILMK,5,2020-04-06 02:44:46,2020-05-08 19:32:27,2020-04-06 12:43:12,1,522.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15313,QUEEN,2,2012-12-19 02:31:56,2012-12-25 06:42:09,2012-12-23 09:47:47,1,292.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15314,DRACD,2,2017-09-13 17:32:34,2017-09-14 18:57:37,2017-09-13 18:09:23,1,245.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15315,ROMEY,8,2018-05-11 12:20:46,2018-05-12 23:53:05,2018-05-14 22:43:22,2,465.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15316,WILMK,7,2014-11-25 13:39:18,2014-12-10 22:35:24,2014-12-05 09:12:45,2,422,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15317,PERIC,4,2013-12-21 17:03:04,2014-02-01 15:20:49,2014-01-07 02:01:07,1,500.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +15318,ALFKI,9,2023-07-01 09:32:35,2023-07-28 04:01:45,2023-07-02 00:47:50,2,196.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15319,DRACD,8,2018-01-08 22:27:09,2018-01-17 07:30:47,2018-01-14 20:58:47,2,406.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15320,ROMEY,6,2018-04-28 20:58:35,2018-05-05 18:13:04,2018-05-16 08:44:00,2,199.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15321,THECR,6,2017-08-12 09:00:51,2017-08-31 01:03:08,2017-08-30 05:57:43,2,182.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15322,THEBI,2,2016-11-17 18:32:05,2016-12-28 09:08:35,2016-12-15 10:34:56,3,113,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15323,LAZYK,9,2014-02-18 05:02:06,2014-04-04 12:29:33,2014-02-26 15:01:32,1,285,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15324,GROSR,2,2021-11-17 14:29:31,2021-12-20 03:00:14,2021-12-06 06:17:22,2,275.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15325,BONAP,9,2013-01-11 08:12:01,2013-02-01 16:25:16,2013-02-01 19:07:06,3,368.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15326,MAGAA,1,2017-07-07 05:20:36,2017-07-23 05:29:06,2017-07-24 08:46:49,2,180.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15327,WANDK,1,2015-04-03 17:50:33,2015-05-23 10:37:19,2015-04-07 10:47:57,3,39,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15328,ROMEY,3,2017-10-31 06:49:44,2017-11-11 12:53:02,2017-10-31 07:57:17,2,493.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15329,SEVES,7,2015-03-16 21:56:49,2015-04-03 16:34:19,2015-03-20 05:11:17,1,420.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15330,ROMEY,6,2022-07-13 21:24:23,2022-08-01 21:20:42,2022-07-22 10:03:22,3,50,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15331,VINET,3,2017-11-28 15:39:37,2017-12-26 08:43:18,2017-12-03 08:46:51,3,181,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15332,DUMON,5,2020-01-14 13:06:11,2020-02-08 06:27:07,2020-01-14 13:56:39,2,207.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15333,RANCH,3,2020-05-19 06:28:13,2020-06-22 09:48:38,2020-05-26 10:27:01,3,31.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15334,DRACD,7,2015-04-07 06:26:01,2015-05-09 17:32:42,2015-04-12 16:06:01,3,79.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15335,PRINI,9,2014-05-18 01:09:34,2014-06-27 09:29:33,2014-05-28 11:10:19,2,204.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15336,LACOR,9,2013-09-27 11:05:08,2013-11-03 10:44:14,2013-09-27 23:33:54,1,196.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15337,MEREP,1,2022-04-10 02:22:02,2022-05-04 08:41:10,2022-04-10 07:23:08,3,441.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15338,HUNGC,5,2018-02-17 18:34:16,2018-03-02 13:28:43,2018-02-18 11:51:49,3,179,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15339,CONSH,6,2021-01-02 23:15:58,2021-02-15 11:16:29,2021-01-13 00:11:43,1,392,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15340,CONSH,1,2017-08-04 10:34:14,2017-09-11 23:40:43,2017-08-22 11:04:08,1,282.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15341,LINOD,8,2019-06-10 17:48:02,2019-06-21 04:21:11,2019-06-12 03:18:13,2,340,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15342,LEHMS,4,2013-04-27 10:54:10,2013-05-31 01:33:50,2013-05-06 12:17:07,1,312.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15343,LAZYK,1,2019-01-18 07:05:45,2019-01-30 18:00:56,2019-01-28 08:09:19,3,280.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15344,RANCH,2,2019-03-19 01:50:08,2019-04-13 14:24:36,2019-03-25 17:21:10,1,260.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15345,TRADH,6,2019-03-23 03:02:48,2019-04-05 02:16:18,2019-04-03 02:53:46,3,222,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15346,CONSH,6,2018-06-02 06:56:43,2018-06-23 22:28:49,2018-06-11 10:54:37,3,362.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15347,ALFKI,8,2019-12-10 17:34:55,2020-01-22 23:51:12,2019-12-11 03:06:42,3,362.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15348,HILAA,5,2014-03-13 19:38:04,2014-03-26 21:01:24,2014-03-22 14:33:03,1,222.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15349,RANCH,8,2019-07-02 17:00:32,2019-08-07 04:53:47,2019-07-03 08:06:27,2,126,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15350,VINET,4,2016-12-09 21:13:29,2017-01-06 01:28:41,2017-01-01 01:29:30,1,422.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15351,SAVEA,5,2014-05-09 22:12:39,2014-05-14 18:25:02,2014-05-22 16:43:18,1,306.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15352,LEHMS,6,2021-07-07 08:13:35,2021-07-11 21:38:24,2021-07-16 14:40:37,2,293.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15353,PICCO,1,2014-07-24 12:03:30,2014-09-02 23:09:30,2014-07-27 15:05:53,2,174,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15354,FISSA,7,2021-12-06 23:13:22,2021-12-13 21:38:12,2021-12-07 05:13:19,2,374.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15355,HILAA,4,2021-10-23 02:12:06,2021-10-23 06:48:14,2021-10-28 08:59:13,3,404.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15356,PICCO,6,2015-10-22 17:04:04,2015-10-23 18:54:44,2015-11-11 09:31:20,2,340.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15357,VAFFE,9,2015-06-20 23:07:18,2015-06-26 10:00:23,2015-06-29 00:42:00,3,513.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15358,OCEAN,9,2018-08-20 23:07:51,2018-08-31 16:49:34,2018-08-25 18:01:21,2,113,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15359,Val2 ,1,2017-03-25 19:20:45,2017-04-04 16:14:04,2017-04-05 13:50:51,1,115,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15360,LILAS,8,2019-07-14 03:55:18,2019-08-21 06:02:56,2019-07-23 06:51:37,2,134.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15361,TRAIH,8,2015-03-30 10:49:28,2015-04-10 22:05:23,2015-04-02 09:01:08,1,272,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15362,OLDWO,5,2014-11-30 14:12:40,2014-12-05 20:51:11,2014-12-14 08:16:49,2,129.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15363,SIMOB,5,2019-09-22 23:31:54,2019-10-08 22:31:31,2019-09-25 20:11:16,3,93,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15364,BLONP,9,2020-08-13 03:55:36,2020-09-13 18:26:15,2020-08-20 15:03:59,3,429.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15365,VINET,5,2023-02-01 00:51:16,2023-02-11 05:36:24,2023-02-06 15:32:12,2,524.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15366,REGGC,6,2014-06-02 06:06:37,2014-06-13 15:02:53,2014-06-03 12:26:10,1,359.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15367,LINOD,5,2022-09-04 22:12:31,2022-09-08 21:12:10,2022-09-06 18:28:13,2,395,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15368,THECR,2,2018-10-26 17:51:54,2018-11-21 03:28:14,2018-10-30 15:15:26,3,235.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15369,BSBEV,3,2022-09-25 03:44:01,2022-10-22 03:41:06,2022-10-01 20:20:48,2,66.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15370,SEVES,5,2019-05-15 01:46:01,2019-06-11 16:04:57,2019-05-24 20:34:29,2,21.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15371,MEREP,8,2019-01-18 05:35:59,2019-01-26 19:31:01,2019-01-20 02:29:01,2,185,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15372,MORGK,9,2016-08-08 10:23:59,2016-08-19 11:28:29,2016-08-11 12:01:12,2,103.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15373,FRANS,2,2020-03-20 09:22:45,2020-03-30 09:41:02,2020-03-30 04:51:50,2,57,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15374,WHITC,5,2013-07-14 21:56:21,2013-08-31 07:57:59,2013-07-15 00:07:56,2,244.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15375,QUEDE,5,2021-03-08 00:55:26,2021-03-16 23:40:55,2021-03-10 07:29:41,1,201.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15376,GREAL,4,2019-05-21 13:36:21,2019-05-25 04:08:53,2019-05-24 00:37:42,3,100.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15377,WARTH,2,2022-10-05 06:11:34,2022-11-01 21:33:41,2022-10-07 05:10:17,2,386.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15378,RATTC,4,2018-07-06 08:43:57,2018-07-27 15:35:53,2018-07-06 16:09:57,1,106.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15379,LILAS,3,2023-06-14 15:05:00,2023-06-27 20:23:52,2023-06-23 00:20:33,3,491.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15380,THEBI,7,2021-01-20 05:56:36,2021-02-19 17:29:32,2021-02-04 01:23:19,1,425.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15381,WHITC,8,2017-07-10 08:47:51,2017-08-11 12:37:24,2017-07-23 18:11:57,3,74.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15382,FURIB,9,2019-06-15 02:52:22,2019-06-20 21:36:44,2019-06-20 16:20:20,3,64.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15383,QUEDE,7,2016-12-05 21:38:44,2017-01-11 06:23:06,2016-12-06 11:05:36,3,248.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15384,SPLIR,5,2021-05-16 22:13:57,2021-05-28 11:12:40,2021-06-04 19:41:26,3,197,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15385,FRANR,8,2017-03-25 02:18:10,2017-03-29 18:05:40,2017-03-26 14:52:50,3,215.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15386,WELLI,4,2022-10-04 22:27:49,2022-10-24 17:12:03,2022-10-14 19:16:13,3,221,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15387,LILAS,9,2015-09-11 14:31:05,2015-10-21 16:19:17,2015-09-22 07:34:04,2,505.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15388,CENTC,3,2017-02-11 23:29:52,2017-03-25 13:36:49,2017-02-14 07:34:31,3,109.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +15389,WELLI,4,2013-05-23 04:22:58,2013-05-27 11:36:11,2013-06-01 23:44:10,1,507,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15390,PARIS,7,2016-09-28 11:47:24,2016-10-06 13:34:51,2016-10-02 14:57:21,3,503.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15391,LAUGB,4,2015-08-15 18:10:39,2015-09-05 05:07:00,2015-09-06 12:25:44,2,136,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15392,TRAIH,4,2020-04-04 04:25:44,2020-04-16 05:08:05,2020-04-04 09:18:59,2,105.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15393,GROSR,3,2022-11-06 09:22:23,2022-12-01 16:39:43,2022-11-06 11:14:32,3,356.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15394,VAFFE,2,2023-04-24 13:53:52,2023-05-13 07:24:47,2023-04-27 22:31:42,3,356,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15395,MORGK,3,2016-04-16 23:36:09,2016-04-27 06:00:33,2016-04-27 03:09:08,1,163,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15396,ROMEY,8,2015-10-03 01:54:25,2015-11-12 00:28:36,2015-10-07 05:00:24,3,336.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15397,HANAR,1,2020-06-28 23:31:48,2020-08-19 09:20:15,2020-07-07 11:37:12,1,217.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15398,BSBEV,7,2017-03-29 11:50:13,2017-04-08 10:46:01,2017-03-29 21:55:35,2,33.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15399,DUMON,8,2018-08-21 04:39:59,2018-09-01 09:45:26,2018-08-24 06:23:02,3,393,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15400,PICCO,8,2022-06-24 13:36:25,2022-07-12 01:01:36,2022-07-11 01:46:50,3,374.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15401,REGGC,1,2020-07-22 18:02:55,2020-08-26 23:02:19,2020-08-04 00:26:23,1,22,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15402,OCEAN,2,2020-02-10 21:08:33,2020-03-04 09:06:33,2020-02-19 22:30:17,1,244.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15403,PICCO,5,2021-10-29 21:45:59,2021-11-06 11:18:24,2021-10-31 10:28:25,1,367.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15404,WOLZA,8,2014-09-03 21:09:43,2014-10-20 08:15:47,2014-09-06 01:43:07,2,349.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15405,PICCO,9,2013-07-20 20:29:02,2013-08-24 15:10:46,2013-08-01 18:22:55,2,171,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15406,CHOPS,4,2014-04-06 09:44:42,2014-04-14 16:45:06,2014-04-09 21:51:02,2,220.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15407,QUEEN,9,2012-12-25 00:13:37,2013-01-24 01:14:02,2012-12-25 20:04:48,2,119.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15408,VINET,4,2014-03-27 11:39:59,2014-04-07 04:34:52,2014-04-02 12:15:56,3,141,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15409,WILMK,8,2018-03-29 09:36:19,2018-04-29 02:54:41,2018-03-29 16:43:54,3,209.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15410,HANAR,8,2021-12-18 07:38:59,2021-12-25 07:04:49,2021-12-21 13:36:20,2,479.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +15411,FRANK,3,2019-08-30 23:51:35,2019-09-29 15:38:20,2019-09-02 22:10:00,1,303.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15412,TOMSP,4,2012-10-08 14:48:31,2012-11-28 17:28:20,2012-10-21 02:31:27,1,241.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15413,VINET,1,2022-08-26 12:08:22,2022-09-06 06:04:46,2022-09-01 09:13:39,2,295.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15414,OTTIK,3,2015-11-25 07:21:53,2015-12-10 08:57:14,2015-11-27 22:54:28,3,339,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15415,ANTON,4,2023-02-25 12:33:25,2023-03-08 17:43:37,2023-03-03 17:04:24,1,323.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15416,FRANS,8,2023-04-20 18:42:48,2023-05-04 02:07:42,2023-05-06 09:08:27,1,440.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15417,LAUGB,4,2019-10-16 12:31:23,2019-11-06 07:32:22,2019-10-17 19:43:07,1,189.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15418,MEREP,7,2017-01-20 14:49:27,2017-02-07 23:22:18,2017-01-20 20:07:57,1,192.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15419,BSBEV,9,2018-12-16 11:04:48,2019-01-01 00:15:46,2018-12-20 11:45:33,2,90,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15420,TOMSP,2,2020-02-18 04:11:48,2020-02-25 03:56:11,2020-03-05 08:57:06,2,61,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15421,SANTG,6,2016-05-25 09:15:54,2016-06-04 03:30:09,2016-06-01 09:27:50,2,20,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15422,GALED,4,2021-12-08 10:31:46,2022-01-15 13:57:02,2021-12-10 09:50:12,3,20.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15423,ANTON,9,2013-03-06 12:13:44,2013-03-23 20:08:55,2013-03-14 23:58:34,3,254.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15424,REGGC,6,2013-12-16 20:56:28,2013-12-17 11:56:54,2013-12-29 11:07:10,1,483.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15425,FISSA,4,2012-08-23 02:19:08,2012-09-02 07:09:00,2012-08-23 21:14:31,1,149.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15426,QUEDE,5,2014-08-08 11:23:59,2014-08-11 13:50:03,2014-08-10 19:37:21,1,428.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15427,PARIS,1,2017-10-31 05:11:07,2017-11-04 20:44:52,2017-11-02 14:01:37,3,469.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15428,HUNGC,3,2023-02-20 20:17:16,2023-03-06 21:19:35,2023-02-23 00:18:19,1,364.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15429,SAVEA,6,2022-05-02 16:24:42,2022-05-21 14:14:31,2022-05-03 14:31:21,1,70,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15430,SPLIR,8,2022-03-13 15:05:45,2022-03-17 08:53:26,2022-03-14 05:46:12,3,65,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15431,VICTE,8,2021-04-30 06:30:49,2021-04-30 08:39:32,2021-05-04 05:16:38,3,173.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15432,RICAR,5,2019-07-31 07:47:10,2019-09-03 04:52:46,2019-08-03 04:07:32,2,482.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15433,WILMK,4,2012-10-24 19:05:17,2012-11-16 22:22:00,2012-10-30 17:03:32,2,119.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15434,VINET,9,2015-04-15 01:33:24,2015-04-23 23:33:13,2015-04-18 07:44:54,3,260,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15435,BERGS,7,2014-12-05 03:25:39,2014-12-19 00:32:26,2014-12-19 01:05:41,1,354.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15436,COMMI,2,2022-01-19 04:47:29,2022-02-01 03:19:46,2022-01-19 09:27:53,3,159.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15437,LONEP,3,2015-09-15 20:24:43,2015-09-29 08:07:35,2015-09-22 06:33:25,3,413.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15438,FRANS,2,2012-10-26 09:35:54,2012-11-06 16:23:22,2012-11-11 16:19:44,2,149.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15439,BOTTM,8,2016-10-06 05:56:27,2016-10-17 09:37:50,2016-10-15 02:30:40,1,326.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15440,LACOR,7,2014-02-20 08:26:05,2014-03-12 03:46:39,2014-02-25 07:36:27,2,62.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15441,MAGAA,8,2022-02-01 04:29:07,2022-02-17 20:28:36,2022-02-02 06:40:38,2,237.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15442,THECR,6,2018-01-17 02:59:30,2018-01-19 21:11:51,2018-01-31 10:00:39,2,310,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15443,Val2 ,8,2020-02-23 10:15:53,2020-03-19 21:18:02,2020-02-25 16:38:08,1,215,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15444,LILAS,6,2021-06-07 20:17:20,2021-06-15 13:10:47,2021-06-09 05:52:57,1,426.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15445,TRAIH,4,2019-07-11 02:21:22,2019-07-20 14:46:10,2019-07-14 11:13:03,1,339.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15446,COMMI,7,2020-08-07 21:47:56,2020-09-13 00:49:34,2020-08-08 06:36:59,2,348,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15447,WHITC,9,2021-03-17 02:32:01,2021-03-22 18:08:24,2021-03-17 12:40:19,2,103.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15448,EASTC,1,2014-12-15 22:09:42,2014-12-31 11:51:35,2015-01-06 04:20:06,2,43.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15449,LAMAI,5,2012-10-20 20:32:08,2012-10-27 05:16:22,2012-10-29 03:42:19,2,308.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15450,ROMEY,5,2015-03-12 03:00:47,2015-04-17 01:16:37,2015-03-27 08:51:45,2,103.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15451,MORGK,6,2015-10-20 17:06:22,2015-10-23 12:26:20,2015-10-22 10:09:26,2,123.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15452,QUEDE,8,2015-07-07 02:43:17,2015-07-14 03:00:00,2015-07-11 23:57:17,1,181,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15453,PICCO,2,2014-05-07 23:07:56,2014-05-24 21:35:13,2014-05-18 12:32:46,1,203,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15454,VINET,9,2013-06-17 06:18:03,2013-08-08 03:10:08,2013-06-19 17:51:22,3,170.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15455,KOENE,2,2013-07-24 17:56:29,2013-07-30 08:01:31,2013-07-25 05:17:01,1,109.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15456,RICSU,9,2021-03-10 22:54:43,2021-04-15 23:12:10,2021-03-15 10:43:54,2,206.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15457,CENTC,1,2023-10-06 13:57:46,2023-10-24 09:18:09,2023-10-07 17:46:48,3,387,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15458,CONSH,8,2012-10-10 22:12:27,2012-10-22 14:44:11,2012-10-24 19:22:22,2,95.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15459,MAGAA,9,2017-08-01 08:38:03,2017-08-07 03:27:05,2017-08-10 21:40:53,2,228.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15460,FRANR,7,2022-12-02 10:56:17,2022-12-20 15:10:06,2022-12-14 14:04:21,3,163.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15461,FAMIA,6,2019-09-27 02:06:36,2019-09-30 08:29:43,2019-10-01 11:02:24,1,261.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15462,WARTH,2,2012-09-26 10:39:06,2012-10-27 16:22:22,2012-10-19 14:19:32,2,180,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15463,BLAUS,9,2016-12-22 21:29:55,2016-12-30 13:59:40,2017-01-15 06:44:45,3,440.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15464,GODOS,9,2014-03-11 05:13:22,2014-03-13 09:48:04,2014-03-11 13:38:34,2,536.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15465,TOMSP,2,2017-04-21 03:01:11,2017-05-04 11:20:23,2017-04-23 21:45:30,2,178.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15466,CHOPS,3,2017-11-09 04:25:55,2017-11-27 10:05:42,2017-11-11 22:27:07,1,209,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15467,QUICK,1,2023-01-11 02:21:10,2023-02-01 02:05:41,2023-01-13 16:53:09,2,371.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15468,OLDWO,9,2019-06-25 00:07:15,2019-07-04 11:20:37,2019-07-08 15:30:32,1,202,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15469,OLDWO,5,2016-08-05 18:28:21,2016-08-05 23:53:00,2016-08-06 23:55:37,2,384.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15470,ALFKI,8,2017-09-11 05:54:22,2017-09-16 14:01:02,2017-09-13 11:56:03,3,148.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15471,BONAP,8,2021-08-21 16:07:56,2021-09-01 08:42:28,2021-08-24 12:25:19,2,69.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15472,GODOS,1,2019-08-12 03:15:05,2019-08-24 04:56:34,2019-08-13 23:32:53,1,112,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15473,SUPRD,6,2020-01-07 14:02:49,2020-01-21 04:39:33,2020-01-20 10:23:51,3,404.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15474,MAGAA,1,2019-08-01 18:20:37,2019-08-29 21:06:52,2019-08-10 21:19:26,3,194.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15475,PRINI,8,2014-08-23 08:01:49,2014-09-08 20:29:53,2014-08-31 01:33:54,2,252.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15476,LAMAI,9,2017-03-19 01:28:51,2017-04-09 16:26:29,2017-03-20 16:48:55,2,246.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15477,LAUGB,2,2021-12-17 22:57:52,2022-01-18 14:21:09,2021-12-19 12:59:06,1,393,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15478,Val2 ,1,2019-10-25 05:29:58,2019-11-03 02:48:25,2019-10-26 02:25:39,2,58.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15479,LETSS,1,2018-01-24 19:53:26,2018-01-29 12:40:18,2018-01-25 22:23:50,1,277.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15480,ALFKI,2,2021-06-09 05:22:14,2021-06-19 02:31:30,2021-06-10 19:30:10,1,39,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15481,ERNSH,5,2015-05-25 22:11:22,2015-06-15 06:20:14,2015-05-31 02:43:37,1,63,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15482,TORTU,1,2014-10-10 06:25:39,2014-11-09 09:24:45,2014-10-17 00:58:43,2,268.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15483,FOLKO,6,2018-08-29 20:08:05,2018-09-21 10:41:50,2018-08-31 11:35:08,1,115,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15484,MEREP,3,2013-06-06 10:40:23,2013-07-30 01:01:00,2013-06-11 12:18:34,2,193.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15485,NORTS,7,2012-10-28 15:34:41,2012-11-16 12:01:58,2012-10-30 18:01:31,1,373.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15486,SPECD,5,2016-05-28 20:30:39,2016-06-26 06:28:55,2016-06-14 01:21:08,1,194.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15487,BLAUS,7,2015-09-08 01:46:10,2015-09-30 00:46:12,2015-09-13 20:35:32,1,187.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15488,MORGK,5,2016-03-04 05:45:48,2016-03-24 04:10:50,2016-03-06 07:55:34,3,426,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15489,TRAIH,2,2020-09-18 12:53:19,2020-10-02 04:22:21,2020-09-28 19:54:41,1,68.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15490,DRACD,8,2017-09-22 11:14:22,2017-10-25 22:09:10,2017-09-28 18:40:07,2,214,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +15491,TRAIH,3,2021-10-05 04:40:03,2021-10-22 23:22:08,2021-10-06 04:38:54,2,339,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15492,PERIC,5,2022-07-24 00:06:37,2022-07-31 19:35:15,2022-07-26 04:20:05,2,313.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15493,TOMSP,9,2015-07-23 23:16:43,2015-08-04 18:51:10,2015-08-02 05:00:46,2,53.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15494,LETSS,6,2014-09-15 01:47:16,2014-09-20 03:11:05,2014-09-22 18:57:02,2,494,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15495,FAMIA,1,2020-03-01 07:06:14,2020-03-09 18:18:54,2020-03-05 03:19:01,3,429,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15496,ANATR,8,2013-01-26 22:58:25,2013-02-12 17:40:32,2013-02-05 06:48:42,1,102.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15497,ANTON,1,2019-02-03 17:02:39,2019-02-15 22:39:35,2019-02-08 00:03:37,3,212.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15498,CACTU,2,2018-08-29 21:55:21,2018-08-30 22:44:24,2018-09-08 18:26:42,1,343.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15499,BOLID,1,2019-11-17 05:58:13,2019-12-04 09:11:45,2019-12-07 19:53:56,1,262.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15500,FRANS,5,2013-05-09 15:46:15,2013-06-04 01:01:39,2013-05-15 17:44:33,1,137,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15501,WHITC,1,2020-06-07 09:52:39,2020-07-08 09:12:18,2020-06-13 08:59:17,3,134.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15502,WILMK,3,2020-07-12 01:41:40,2020-09-01 09:09:04,2020-07-18 05:02:39,2,89.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15503,SIMOB,4,2013-08-29 06:33:39,2013-09-19 12:22:27,2013-09-04 04:09:17,1,414.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15504,RANCH,6,2021-12-13 21:21:56,2021-12-27 04:42:12,2021-12-15 18:03:55,2,470,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15505,LILAS,7,2016-03-01 19:35:04,2016-03-10 17:15:39,2016-03-26 05:16:04,2,283,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +15506,CENTC,9,2021-12-12 14:49:42,2021-12-18 09:06:40,2021-12-20 13:56:45,2,321.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15507,NORTS,3,2018-09-02 01:33:40,2018-10-08 11:00:16,2018-09-02 12:03:16,3,489.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15508,SANTG,3,2017-04-06 22:54:30,2017-04-15 22:10:43,2017-04-15 05:32:32,1,520,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15509,WELLI,6,2021-09-17 21:54:36,2021-10-02 10:26:12,2021-10-02 22:15:01,2,59.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15510,GODOS,8,2019-11-05 02:01:20,2019-11-06 14:08:20,2019-11-29 06:06:50,3,41.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15511,VINET,5,2019-11-10 16:15:37,2019-12-04 16:39:42,2019-11-26 06:52:05,3,387.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15512,BLONP,2,2017-02-10 09:26:57,2017-03-18 05:49:40,2017-02-13 01:54:18,1,490.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15513,ANATR,2,2018-09-24 03:45:10,2018-09-30 15:32:13,2018-10-10 22:15:47,1,322.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15514,VALON,2,2019-07-09 00:46:11,2019-07-09 01:16:55,2019-07-17 13:41:12,1,171.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15515,SIMOB,5,2022-06-23 00:29:20,2022-06-30 14:58:00,2022-07-07 14:59:29,2,275.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +15516,QUEEN,5,2012-09-24 18:01:29,2012-10-21 00:19:09,2012-09-28 04:01:42,3,214.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15517,HUNGC,6,2021-06-22 11:03:58,2021-06-28 10:44:25,2021-07-08 16:03:16,3,356.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15518,FOLKO,5,2015-02-19 14:48:42,2015-03-09 04:14:57,2015-02-21 08:17:54,2,521.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15519,QUEEN,5,2014-08-04 12:50:38,2014-08-18 20:29:29,2014-08-17 07:36:53,3,398.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15520,DUMON,9,2021-08-27 08:38:24,2021-09-18 04:21:41,2021-09-03 13:26:05,2,468.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15521,VINET,3,2018-09-08 08:42:34,2018-10-07 13:15:39,2018-09-10 08:29:44,3,98.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15522,HUNGC,3,2015-09-03 15:09:28,2015-09-22 10:06:12,2015-09-05 05:18:17,3,494.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15523,SPECD,7,2021-07-15 17:41:03,2021-07-17 03:10:16,2021-07-19 12:46:25,3,298.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15524,WILMK,1,2012-10-17 16:34:33,2012-12-02 06:03:49,2012-10-17 22:52:02,2,471.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15525,SUPRD,3,2013-02-28 09:46:58,2013-03-02 22:30:52,2013-03-20 02:14:49,2,146.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15526,BERGS,9,2013-08-04 06:44:57,2013-08-27 02:44:45,2013-08-18 05:02:34,2,494.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15527,EASTC,2,2020-10-06 01:50:51,2020-10-08 15:39:51,2020-10-06 09:57:13,3,211.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15528,RANCH,9,2016-06-24 18:25:53,2016-07-30 23:53:27,2016-07-03 01:00:10,3,92.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15529,HANAR,1,2020-01-24 22:31:37,2020-02-02 10:32:52,2020-01-27 19:38:29,3,61.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15530,SIMOB,9,2020-04-12 03:12:28,2020-05-04 03:20:25,2020-04-19 23:41:29,1,124.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15531,LILAS,4,2018-07-11 15:24:19,2018-08-02 18:21:26,2018-07-15 14:25:09,3,441.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15532,OLDWO,4,2023-03-04 12:42:09,2023-03-25 10:31:42,2023-03-09 20:51:11,2,132.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15533,WANDK,6,2014-08-30 04:23:34,2014-09-18 15:41:56,2014-09-22 19:31:07,1,408.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15534,LINOD,4,2013-07-20 19:03:03,2013-07-21 10:44:16,2013-07-31 06:59:21,1,134.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15535,GOURL,2,2019-10-24 07:14:58,2019-10-27 08:34:28,2019-10-29 19:40:51,1,369.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15536,OTTIK,4,2017-11-11 05:00:24,2017-11-20 02:44:13,2017-11-15 05:30:47,1,154.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15537,LEHMS,2,2022-02-10 12:22:48,2022-03-13 03:19:26,2022-02-22 11:29:28,3,192.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15538,LEHMS,4,2016-12-09 13:43:45,2016-12-17 08:02:52,2016-12-13 10:59:54,3,337.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15539,BONAP,3,2017-04-16 19:25:12,2017-05-21 07:13:53,2017-04-19 08:33:50,3,344.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15540,QUEEN,7,2018-03-22 17:49:44,2018-04-03 08:37:28,2018-03-30 00:57:02,2,219.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15541,MORGK,9,2013-02-25 03:34:40,2013-03-26 19:40:01,2013-02-25 21:15:25,3,344.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15542,LONEP,4,2022-07-06 11:43:02,2022-07-08 12:20:35,2022-07-17 22:26:24,1,61.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15543,LACOR,5,2013-04-22 22:05:11,2013-05-20 09:56:27,2013-04-23 03:13:51,2,339.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15544,GOURL,6,2016-05-01 22:10:57,2016-05-16 12:07:46,2016-05-02 20:06:14,3,116.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15545,KOENE,7,2019-12-14 21:29:21,2019-12-18 06:24:06,2019-12-20 17:08:20,3,393.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15546,ERNSH,1,2022-01-27 09:27:39,2022-03-05 08:00:23,2022-01-30 00:46:16,1,187.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15547,RICSU,6,2016-02-10 10:41:48,2016-02-25 01:24:42,2016-02-16 04:47:19,2,146.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15548,LEHMS,5,2021-12-21 19:55:17,2022-01-22 13:20:10,2021-12-22 15:16:41,3,144,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15549,BLONP,5,2019-10-31 21:33:46,2019-11-20 02:40:53,2019-11-06 19:25:51,1,455,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15550,FISSA,7,2022-02-01 11:40:15,2022-02-23 23:54:01,2022-02-01 19:44:55,2,147.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15551,QUEEN,5,2023-10-14 06:04:51,2023-10-16 04:37:15,2023-10-19 06:25:07,2,186.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15552,QUEEN,9,2021-10-24 16:06:13,2021-11-04 22:37:15,2021-10-30 06:26:00,2,334,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15553,CACTU,2,2020-11-04 18:04:57,2020-11-22 05:55:12,2020-11-23 05:43:27,2,212.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15554,MAGAA,4,2019-11-26 20:42:47,2019-12-24 23:48:35,2019-11-28 14:12:07,3,393.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15555,TRAIH,8,2014-06-02 17:30:31,2014-07-28 17:16:34,2014-06-20 16:44:50,3,446.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15556,TRADH,1,2019-07-06 00:33:48,2019-08-06 16:01:41,2019-07-12 13:28:56,3,503.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15557,PERIC,8,2014-04-24 14:44:45,2014-05-03 09:27:35,2014-04-27 19:06:37,3,332.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15558,GOURL,3,2016-09-24 19:37:57,2016-11-03 04:02:22,2016-09-30 09:40:09,2,256.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15559,FRANR,7,2019-04-07 15:34:09,2019-04-30 16:40:08,2019-04-17 15:39:11,2,98.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15560,PARIS,4,2012-12-01 23:04:55,2013-01-02 15:07:00,2012-12-17 07:18:46,2,454.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15561,FAMIA,6,2014-07-14 17:27:26,2014-08-07 18:13:03,2014-08-05 01:47:51,3,482.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15562,PICCO,5,2017-07-25 06:39:50,2017-07-30 03:55:02,2017-08-18 07:19:53,2,340.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15563,RICSU,5,2014-04-26 05:07:44,2014-05-05 20:08:19,2014-05-14 04:08:54,3,270,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15564,TORTU,6,2021-06-04 04:55:55,2021-06-11 20:33:08,2021-06-11 04:52:44,3,61.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15565,CENTC,3,2019-09-06 20:00:46,2019-09-26 06:35:37,2019-09-17 10:57:59,2,86.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15566,LEHMS,3,2023-01-22 03:36:32,2023-01-27 11:55:15,2023-02-06 06:32:01,1,423.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15567,RANCH,4,2012-07-28 04:46:56,2012-08-16 02:13:31,2012-08-12 15:46:47,3,324.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15568,QUEEN,2,2016-01-24 17:02:52,2016-01-31 15:07:49,2016-01-28 04:53:38,1,423.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15569,WHITC,1,2022-06-09 00:08:15,2022-07-14 12:05:05,2022-06-25 16:58:37,3,226.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15570,FISSA,9,2022-05-24 15:33:41,2022-06-14 17:41:51,2022-05-26 15:44:40,1,188.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15571,LAMAI,9,2017-03-19 16:11:13,2017-04-11 01:40:42,2017-03-20 15:56:11,3,212.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15572,GROSR,2,2013-03-06 07:10:39,2013-04-13 08:51:21,2013-03-22 08:51:42,1,336,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15573,TOMSP,5,2015-04-01 19:29:09,2015-04-22 01:23:56,2015-04-02 14:09:19,1,424.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15574,LONEP,8,2021-07-29 15:24:40,2021-08-13 04:09:24,2021-07-31 09:47:27,3,400.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15575,WANDK,9,2021-04-26 20:48:58,2021-05-20 12:33:37,2021-05-01 20:45:34,2,448.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15576,FAMIA,9,2023-05-12 16:06:47,2023-06-01 04:51:12,2023-05-16 04:39:46,3,348.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15577,FURIB,1,2023-09-01 15:36:38,2023-09-28 17:33:49,2023-09-06 03:08:57,2,240.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15578,MAGAA,6,2022-12-30 04:48:26,2023-01-13 12:18:03,2023-01-09 21:51:31,2,334.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15579,HUNGC,8,2016-09-13 11:53:54,2016-10-08 01:22:21,2016-09-19 22:29:49,1,291.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15580,WHITC,7,2019-09-10 03:51:37,2019-09-23 09:06:39,2019-09-22 13:54:48,3,362.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15581,GREAL,4,2014-01-23 07:01:40,2014-01-30 15:15:17,2014-01-28 14:29:52,1,102.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15582,LONEP,6,2018-04-09 17:39:06,2018-04-22 06:50:02,2018-04-16 10:35:41,3,250,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15583,ANTON,2,2021-11-20 09:24:00,2021-12-12 04:25:15,2021-12-11 06:59:19,3,470.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15584,OLDWO,6,2022-03-08 13:39:59,2022-03-10 05:33:53,2022-03-16 16:46:05,1,430.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15585,GALED,4,2020-04-26 08:48:43,2020-05-27 14:44:18,2020-04-28 13:12:54,3,81.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15586,SIMOB,2,2013-01-03 04:36:52,2013-01-27 00:06:36,2013-01-03 14:21:48,3,46.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15587,FOLIG,4,2021-07-17 20:09:41,2021-08-11 17:38:47,2021-08-03 22:53:28,3,260.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15588,NORTS,7,2015-03-04 05:54:48,2015-03-24 12:27:54,2015-03-14 22:39:41,3,137.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15589,OTTIK,2,2016-06-01 01:48:04,2016-06-04 18:59:57,2016-06-03 20:02:58,2,278.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15590,WANDK,7,2022-05-06 02:21:43,2022-05-20 12:32:56,2022-05-12 05:00:17,2,129.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15591,REGGC,8,2015-06-22 00:44:30,2015-07-17 21:02:02,2015-07-11 20:50:13,3,126,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15592,GALED,6,2020-01-13 02:11:59,2020-01-23 19:09:37,2020-01-27 00:19:41,1,47.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15593,BLONP,4,2013-07-16 18:37:42,2013-07-23 05:32:20,2013-07-21 16:11:31,3,266.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15594,FRANR,4,2012-09-15 21:06:59,2012-10-08 07:28:31,2012-09-17 12:52:24,1,468,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15595,RATTC,3,2018-06-25 09:52:31,2018-07-12 13:27:45,2018-06-29 03:48:44,2,175,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15596,FISSA,4,2016-03-29 03:00:09,2016-03-30 12:54:54,2016-04-12 13:08:17,1,488.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15597,FOLKO,8,2021-11-03 15:36:24,2021-11-25 22:19:41,2021-11-06 05:56:58,2,359.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +15598,LAMAI,5,2018-05-03 03:15:45,2018-06-13 02:56:18,2018-05-04 10:07:00,3,139,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15599,Val2 ,5,2015-12-21 03:51:08,2016-01-05 14:24:05,2015-12-24 14:49:12,2,351,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15600,TRADH,6,2017-10-03 07:15:50,2017-11-13 18:25:57,2017-10-29 17:10:22,2,262.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15601,VICTE,8,2021-08-26 13:17:01,2021-09-09 19:44:47,2021-09-01 21:28:33,2,471,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15602,VALON,7,2022-06-23 14:32:16,2022-06-25 13:01:03,2022-06-29 06:48:26,1,394.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15603,VICTE,1,2012-07-19 21:50:16,2012-08-20 04:27:08,2012-07-25 00:59:16,1,482,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15604,SPECD,5,2017-02-25 14:01:50,2017-03-14 19:13:39,2017-03-09 22:05:47,2,322,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15605,BERGS,9,2019-11-26 04:26:13,2020-01-03 11:04:49,2019-11-29 21:47:19,2,57,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15606,GREAL,7,2022-12-07 02:32:21,2022-12-26 00:49:02,2022-12-12 23:23:08,1,127.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15607,WANDK,8,2014-11-06 08:34:30,2014-11-18 06:23:19,2014-11-19 19:46:16,2,477.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15608,MORGK,5,2014-11-13 20:45:19,2014-11-27 11:04:14,2014-11-25 02:02:22,3,109,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15609,SAVEA,2,2013-04-02 03:06:01,2013-04-20 00:44:26,2013-04-13 14:04:13,1,260.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15610,QUEDE,3,2022-12-06 11:55:58,2022-12-11 03:06:55,2022-12-12 05:19:50,3,155,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +15611,SPLIR,8,2016-10-31 11:54:31,2016-11-19 05:20:05,2016-11-02 01:21:39,2,512.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15612,RANCH,3,2016-09-01 03:13:30,2016-09-12 16:23:40,2016-09-03 15:02:56,1,414.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15613,CHOPS,1,2013-01-29 05:58:19,2013-02-27 04:19:39,2013-02-03 15:51:20,1,159,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15614,VICTE,9,2023-04-20 17:30:26,2023-05-24 10:30:42,2023-04-26 14:59:28,3,399.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15615,LILAS,9,2018-06-01 12:25:31,2018-07-11 18:33:51,2018-06-18 05:10:49,1,373,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15616,TOMSP,9,2016-06-08 08:01:51,2016-07-24 07:29:17,2016-06-09 16:01:10,1,430.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15617,NORTS,5,2022-08-08 03:08:06,2022-08-20 23:48:49,2022-08-13 09:07:45,2,450.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15618,VAFFE,5,2022-09-06 12:56:03,2022-09-21 07:28:29,2022-09-11 03:39:21,1,83.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15619,MEREP,8,2020-10-23 09:24:58,2020-11-04 03:37:19,2020-10-24 14:19:22,1,282.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15620,HILAA,6,2015-10-17 01:31:43,2015-10-26 06:52:16,2015-11-02 17:47:56,2,428.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15621,GREAL,3,2017-08-04 17:41:08,2017-08-27 21:45:13,2017-08-09 11:52:28,3,209.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15622,DRACD,2,2021-08-28 23:02:33,2021-09-19 18:39:30,2021-09-01 06:32:12,1,208.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15623,WELLI,2,2014-06-20 01:12:28,2014-07-12 01:01:56,2014-06-25 08:20:40,3,260.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15624,VICTE,1,2022-11-14 09:20:51,2022-11-25 19:20:33,2022-11-16 12:23:26,1,347.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15625,PERIC,1,2022-07-01 03:42:15,2022-08-02 20:04:38,2022-07-08 07:48:16,3,414.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15626,TRADH,6,2018-05-11 01:50:39,2018-05-13 07:51:12,2018-05-15 04:31:49,3,469,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15627,THECR,6,2022-02-15 04:29:50,2022-02-23 23:58:51,2022-03-03 06:37:57,3,348,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15628,HUNGC,5,2013-05-30 14:06:49,2013-06-15 17:18:52,2013-06-02 16:11:20,2,500,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15629,BOTTM,4,2023-09-04 10:22:21,2023-09-20 16:44:33,2023-09-05 07:58:41,2,406.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15630,MORGK,8,2023-02-22 01:47:08,2023-03-13 09:35:02,2023-02-25 16:35:33,2,202,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15631,NORTS,7,2016-05-11 06:27:20,2016-05-17 17:13:30,2016-05-20 21:28:12,1,262,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15632,LAZYK,1,2019-03-24 01:28:36,2019-03-24 23:27:03,2019-04-10 20:29:41,3,529.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15633,GOURL,1,2012-10-10 15:22:38,2012-10-11 03:36:23,2012-10-24 10:05:08,3,373.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15634,RATTC,7,2020-06-12 17:38:25,2020-06-27 05:58:38,2020-06-20 22:04:26,2,381.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15635,QUEEN,1,2017-09-25 01:34:34,2017-09-29 10:59:24,2017-10-03 12:20:47,1,315,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15636,SPLIR,3,2012-12-31 02:23:04,2013-01-23 04:06:45,2012-12-31 03:16:15,1,466.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15637,BONAP,4,2022-08-18 05:28:50,2022-09-20 19:39:15,2022-08-24 20:45:50,2,442.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15638,HILAA,1,2020-07-31 21:29:03,2020-08-06 11:30:21,2020-08-12 01:28:41,3,329,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15639,TRADH,1,2022-12-14 11:05:48,2023-01-12 23:14:45,2022-12-15 01:55:40,1,258.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15640,HANAR,9,2012-10-31 18:36:04,2012-11-15 05:55:37,2012-11-13 13:40:07,3,264.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15641,BOTTM,5,2021-04-03 23:45:25,2021-04-19 00:52:34,2021-04-04 23:13:00,1,363.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15642,QUEDE,2,2022-08-24 14:00:27,2022-08-25 22:38:35,2022-08-29 05:27:46,3,11.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15643,MAGAA,4,2022-03-30 04:26:48,2022-04-21 00:56:57,2022-04-21 08:47:07,2,335,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15644,VICTE,4,2018-04-03 00:56:23,2018-04-12 01:39:42,2018-04-21 09:55:36,1,239,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15645,SANTG,3,2016-09-23 16:10:17,2016-10-09 00:51:45,2016-09-24 05:26:50,1,534,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15646,VICTE,4,2013-01-21 02:06:39,2013-02-07 03:48:58,2013-01-26 19:39:13,1,229.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15647,LACOR,5,2023-10-14 07:06:31,2023-11-05 18:03:52,2023-10-22 09:24:45,3,307.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15648,AROUT,9,2022-09-20 01:19:15,2022-10-20 13:07:58,2022-09-20 08:23:37,3,272.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15649,WOLZA,4,2022-12-05 07:42:44,2022-12-09 17:51:48,2022-12-21 16:06:03,3,153.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15650,RATTC,2,2023-06-19 10:52:28,2023-07-21 03:12:33,2023-06-27 19:56:30,1,87.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15651,TOMSP,3,2021-09-10 03:34:37,2021-10-06 14:44:09,2021-09-26 10:22:54,1,119.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15652,PERIC,8,2020-07-29 01:59:30,2020-08-22 04:52:51,2020-07-31 00:55:16,3,46.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15653,HUNGO,2,2014-08-23 03:22:46,2014-08-25 22:40:07,2014-08-23 12:52:24,1,143.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +15654,BOTTM,7,2015-03-03 17:06:42,2015-03-14 23:31:39,2015-03-05 18:13:36,2,520.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15655,PARIS,9,2015-09-18 06:21:44,2015-10-04 14:44:33,2015-09-18 07:17:40,1,63.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15656,BOLID,9,2019-08-31 20:55:40,2019-09-27 07:24:25,2019-09-17 23:32:01,3,385.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15657,DRACD,2,2020-08-19 05:04:04,2020-08-28 13:51:23,2020-09-01 12:56:48,2,339,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15658,MAISD,8,2013-02-26 21:32:00,2013-03-17 09:22:12,2013-02-26 21:56:38,3,376.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15659,LEHMS,1,2020-07-06 07:22:54,2020-07-21 22:30:47,2020-07-16 11:07:16,1,122.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +15660,ERNSH,3,2019-11-06 07:12:58,2019-11-17 02:02:20,2019-11-16 19:32:04,1,25.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15661,BONAP,2,2020-06-01 21:24:33,2020-07-01 00:03:35,2020-06-22 00:03:29,2,300.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15662,FURIB,2,2023-06-17 12:06:41,2023-06-17 16:45:27,2023-06-21 05:16:56,1,16.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15663,BOTTM,2,2015-04-07 02:48:50,2015-04-13 06:58:10,2015-04-12 01:49:55,1,401.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15664,Val2 ,7,2014-10-21 09:43:58,2014-11-22 08:06:47,2014-11-09 06:03:40,2,134,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15665,GREAL,9,2013-03-12 03:38:05,2013-03-15 18:49:56,2013-03-12 15:28:11,3,375.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15666,VALON,1,2015-05-22 21:36:08,2015-06-21 07:31:58,2015-06-01 13:47:09,3,347.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15667,FOLKO,8,2013-04-09 01:48:09,2013-04-27 11:31:28,2013-04-11 16:30:46,1,142.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15668,QUEDE,4,2021-10-29 16:53:17,2021-11-02 05:15:20,2021-11-06 03:14:16,1,139.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15669,CONSH,7,2022-03-06 01:18:24,2022-03-17 10:52:29,2022-03-11 10:25:24,2,474.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15670,BOTTM,8,2014-10-11 19:09:20,2014-11-18 21:17:41,2014-10-21 08:03:12,3,35.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15671,KOENE,7,2023-01-15 20:04:26,2023-01-16 17:48:08,2023-01-16 04:42:03,2,414.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15672,OCEAN,9,2019-01-08 19:36:00,2019-01-23 00:06:12,2019-01-10 04:35:58,2,188.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15673,SUPRD,8,2020-04-07 06:21:56,2020-05-16 21:14:09,2020-05-02 12:53:14,2,141.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15674,WANDK,3,2017-06-05 01:07:59,2017-06-12 20:19:32,2017-06-23 07:18:59,1,76.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15675,WELLI,4,2022-05-22 03:15:13,2022-06-08 23:00:36,2022-06-01 03:22:59,2,271,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15676,TOMSP,2,2019-09-06 05:39:12,2019-09-07 07:41:05,2019-09-09 06:55:40,2,160.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15677,REGGC,7,2013-08-30 20:05:53,2013-09-05 22:03:34,2013-09-16 09:25:24,2,345,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15678,GODOS,4,2017-02-10 22:24:59,2017-02-17 08:21:25,2017-02-17 04:47:26,2,92,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15679,TORTU,3,2016-06-16 05:49:52,2016-06-21 03:59:27,2016-06-19 02:08:51,2,231,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15680,GREAL,4,2022-05-05 00:37:54,2022-06-13 03:53:49,2022-05-09 14:16:06,2,484.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15681,CHOPS,8,2023-10-14 09:00:04,2023-11-20 20:29:55,2023-10-17 20:30:32,2,70.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15682,AROUT,2,2015-01-03 19:07:14,2015-02-18 23:06:52,2015-01-13 08:10:42,3,357.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15683,CENTC,7,2012-07-24 13:39:01,2012-08-08 14:16:19,2012-07-25 02:47:54,3,410.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15684,FOLIG,7,2018-10-09 15:42:49,2018-10-28 01:41:30,2018-11-01 01:20:33,2,87.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15685,GODOS,9,2012-08-01 14:22:20,2012-08-03 07:05:02,2012-08-05 23:46:06,3,365.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15686,SEVES,3,2017-09-23 02:53:09,2017-10-07 19:16:31,2017-09-23 18:19:44,2,373,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15687,VALON,2,2023-03-10 05:19:38,2023-04-05 15:33:44,2023-03-10 17:00:15,2,108.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15688,FOLKO,6,2021-02-03 11:57:44,2021-02-25 14:11:41,2021-02-04 02:22:49,3,461.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15689,FRANK,3,2013-01-03 17:45:15,2013-01-31 20:04:05,2013-01-14 12:36:41,3,441.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15690,TRAIH,2,2015-07-03 05:39:38,2015-07-10 22:37:55,2015-07-09 05:51:39,3,300.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15691,SPECD,1,2021-02-17 08:03:28,2021-03-07 20:45:13,2021-02-21 01:00:17,3,356.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15692,TRADH,1,2020-10-06 19:40:23,2020-11-19 06:15:58,2020-10-09 02:19:31,2,371.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15693,TORTU,3,2020-09-17 23:33:49,2020-09-30 10:35:10,2020-09-24 05:01:22,3,191.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15694,SAVEA,3,2016-10-06 17:02:18,2016-11-09 18:46:41,2016-10-08 06:50:50,1,52.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15695,GROSR,9,2018-06-30 04:40:23,2018-08-22 18:18:37,2018-07-12 17:52:21,2,285.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15696,FURIB,3,2014-06-30 02:00:40,2014-07-18 14:33:15,2014-06-30 08:11:10,2,234,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15697,EASTC,2,2017-09-03 10:58:05,2017-09-17 07:34:48,2017-09-03 13:31:40,2,328,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15698,KOENE,3,2018-05-19 05:22:17,2018-06-24 05:29:31,2018-05-27 02:01:41,3,198.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15699,GALED,2,2012-07-18 15:32:12,2012-08-03 14:40:06,2012-07-19 08:37:43,3,486.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15700,SUPRD,4,2022-03-14 09:44:49,2022-03-14 11:35:26,2022-03-24 11:31:40,1,322.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15701,FOLKO,4,2017-01-07 07:01:06,2017-02-23 21:00:07,2017-01-15 15:43:31,1,11,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15702,FRANK,1,2021-03-13 15:18:04,2021-03-15 09:02:57,2021-03-17 20:50:19,2,456,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15703,BLONP,7,2017-02-10 21:39:48,2017-03-29 15:02:26,2017-02-11 04:09:25,1,421.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15704,WILMK,6,2019-04-14 18:43:20,2019-05-16 09:26:11,2019-04-22 01:07:41,1,170,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15705,FRANS,2,2013-09-05 01:49:45,2013-10-05 07:05:35,2013-09-15 10:15:32,3,58.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15706,GOURL,7,2020-11-22 00:02:11,2020-12-03 03:56:03,2020-12-16 07:38:35,3,284.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15707,LAMAI,1,2013-06-02 14:34:10,2013-06-13 06:05:23,2013-06-11 04:39:36,2,248.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15708,RICAR,9,2013-09-28 20:41:28,2013-10-08 20:26:38,2013-09-29 13:44:39,1,219.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15709,VICTE,5,2022-04-05 19:26:21,2022-04-16 01:48:05,2022-04-06 10:11:04,2,452,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15710,DRACD,9,2019-12-31 06:11:41,2020-01-11 06:54:02,2020-01-03 08:36:03,1,16.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15711,OTTIK,2,2015-01-09 04:52:10,2015-02-08 03:28:11,2015-01-11 02:20:37,3,359.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15712,FRANR,8,2021-11-16 08:53:13,2021-12-05 10:18:29,2021-12-12 07:35:04,2,64,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15713,SAVEA,2,2019-06-27 03:31:48,2019-08-02 15:20:51,2019-07-22 08:03:17,2,450.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15714,CENTC,3,2018-08-23 14:11:00,2018-09-06 23:58:22,2018-08-24 11:38:24,1,418.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15715,CACTU,1,2020-01-14 20:32:02,2020-01-20 09:44:12,2020-01-31 03:26:46,3,466.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15716,WOLZA,2,2023-05-10 21:33:24,2023-05-26 07:14:20,2023-05-19 00:54:53,3,374.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15717,NORTS,7,2023-08-16 12:44:00,2023-08-29 15:29:39,2023-08-20 10:34:14,2,178,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15718,RICAR,2,2020-11-02 00:40:15,2020-11-22 08:19:39,2020-11-02 23:32:14,2,200,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15719,AROUT,3,2016-02-02 10:45:57,2016-02-09 23:35:05,2016-02-24 18:29:29,3,231,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15720,THEBI,5,2016-07-22 11:36:29,2016-07-30 16:22:05,2016-07-27 13:31:46,2,127.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15721,FRANS,9,2012-12-18 13:52:31,2013-01-20 04:19:24,2012-12-18 17:59:08,3,402.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15722,HUNGO,6,2017-11-14 13:14:58,2017-12-15 10:26:26,2017-11-20 00:38:05,1,55,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15723,RATTC,3,2023-01-29 04:57:06,2023-02-01 10:10:58,2023-02-01 04:14:55,3,191.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15724,THEBI,8,2021-03-22 19:29:59,2021-04-28 16:31:21,2021-03-24 12:42:48,1,166.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +15725,BOLID,1,2018-02-21 04:10:45,2018-03-11 22:08:51,2018-02-26 00:22:40,1,396,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15726,LONEP,3,2018-12-18 00:10:31,2018-12-30 15:53:49,2019-01-04 23:19:32,1,29.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +15727,SIMOB,3,2020-12-05 05:23:35,2020-12-24 01:28:49,2020-12-12 14:38:32,1,378.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15728,HANAR,6,2016-07-21 15:46:30,2016-07-26 23:38:15,2016-08-07 15:29:04,2,254.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15729,PRINI,2,2016-04-18 23:27:10,2016-05-03 00:12:48,2016-05-09 05:01:03,3,236.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15730,SANTG,6,2014-04-07 12:06:37,2014-04-25 19:06:30,2014-04-10 07:14:53,1,252.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15731,RATTC,3,2021-04-29 16:44:28,2021-06-01 17:22:08,2021-05-15 16:17:51,1,152.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +15732,AROUT,2,2021-05-06 14:57:14,2021-05-30 10:06:37,2021-05-07 01:46:33,2,102.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15733,HANAR,8,2020-11-18 20:30:04,2020-11-22 17:47:04,2020-12-02 05:03:13,1,48.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15734,PERIC,7,2014-09-15 05:15:14,2014-10-06 02:29:09,2014-10-10 00:16:34,3,179,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15735,NORTS,2,2020-11-27 09:28:11,2020-12-14 07:14:46,2020-11-30 23:15:01,1,392.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15736,EASTC,3,2021-05-14 00:05:32,2021-05-19 23:48:40,2021-05-21 07:33:05,3,278.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15737,DUMON,4,2021-03-06 05:57:52,2021-04-23 07:09:16,2021-03-06 09:41:26,1,197,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15738,VINET,1,2013-10-10 07:11:53,2013-10-18 17:24:09,2013-10-10 23:37:18,3,422,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15739,CHOPS,3,2021-05-15 12:18:41,2021-06-13 03:18:24,2021-05-19 20:02:27,3,204.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15740,TOMSP,3,2014-09-21 12:46:42,2014-10-13 18:04:49,2014-09-22 22:35:08,3,487.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15741,WOLZA,3,2017-12-31 05:45:48,2017-12-31 22:17:46,2017-12-31 16:11:37,3,174.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15742,LACOR,7,2019-07-17 07:01:10,2019-08-15 17:00:04,2019-07-20 09:31:57,3,38.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15743,PERIC,7,2020-09-12 01:27:13,2020-10-11 19:18:15,2020-09-14 16:24:07,1,400.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15744,SPLIR,1,2015-07-26 18:01:15,2015-08-07 11:32:00,2015-08-07 19:20:39,1,148,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15745,Val2 ,8,2013-10-28 02:34:05,2013-10-31 09:46:58,2013-11-12 22:32:25,3,338,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15746,HILAA,7,2023-08-23 17:36:02,2023-08-25 16:44:00,2023-09-18 11:32:05,3,59.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15747,SAVEA,2,2021-01-21 21:30:38,2021-02-05 10:53:20,2021-01-23 19:50:36,2,113.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15748,FRANK,9,2022-07-30 07:03:19,2022-08-18 17:05:44,2022-08-03 20:18:00,1,187.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15749,FAMIA,3,2019-01-22 05:31:09,2019-01-31 05:32:13,2019-01-29 18:01:36,3,276.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15750,BOLID,1,2013-08-09 23:54:36,2013-09-04 10:34:02,2013-08-11 07:51:41,1,140.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15751,WOLZA,9,2013-03-07 15:24:21,2013-03-20 19:51:56,2013-03-09 05:27:17,3,18,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15752,GOURL,2,2021-10-08 11:09:26,2021-10-15 09:09:42,2021-10-20 06:48:58,1,474.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15753,DUMON,2,2014-08-14 13:55:30,2014-09-06 20:55:39,2014-08-17 03:50:23,2,545.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15754,FOLIG,8,2018-06-16 08:21:08,2018-07-27 09:47:15,2018-06-21 09:43:26,1,346.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15755,FRANS,4,2020-09-01 12:43:07,2020-09-18 23:11:44,2020-09-12 05:47:05,3,411.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15756,LILAS,3,2016-02-22 09:10:28,2016-02-27 06:06:26,2016-03-13 07:27:27,2,336.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15757,REGGC,7,2022-08-21 04:04:48,2022-08-27 19:24:08,2022-08-31 16:53:25,1,350,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15758,MORGK,4,2016-06-26 17:52:19,2016-07-30 10:33:47,2016-06-29 13:34:53,1,135,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15759,TRADH,9,2017-03-24 05:49:57,2017-04-18 20:41:46,2017-03-29 18:43:30,2,86.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15760,PICCO,2,2022-12-11 21:39:41,2023-01-13 19:49:51,2022-12-13 12:00:12,1,95,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15761,LACOR,3,2016-09-07 15:09:00,2016-10-10 16:16:49,2016-09-14 13:26:59,1,436.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15762,FRANK,3,2017-10-13 02:37:47,2017-11-15 02:17:13,2017-10-24 03:54:28,1,331.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15763,PERIC,3,2015-11-25 07:38:57,2016-01-18 01:11:28,2015-11-28 21:08:58,1,444.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15764,PARIS,2,2017-12-23 14:42:21,2018-01-17 08:38:10,2017-12-31 18:56:38,2,170,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15765,CACTU,2,2017-12-25 05:11:27,2017-12-27 03:11:21,2017-12-26 16:46:39,2,115.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15766,DRACD,6,2019-05-08 19:11:15,2019-05-27 05:27:20,2019-05-09 03:29:35,2,403.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +15767,VALON,9,2020-09-09 15:28:56,2020-09-17 05:49:02,2020-09-20 01:45:24,1,516.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15768,MEREP,6,2019-02-21 19:00:53,2019-03-06 14:58:18,2019-03-01 09:33:21,3,124.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15769,RANCH,6,2018-10-30 06:29:36,2018-11-26 09:28:49,2018-11-10 15:53:55,1,43.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15770,GREAL,3,2023-02-23 01:31:05,2023-03-06 08:38:44,2023-03-06 15:31:25,3,95.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15771,HILAA,5,2023-10-20 20:42:17,2023-11-12 03:22:22,2023-10-28 14:06:28,2,355.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15772,TRADH,2,2018-10-17 15:37:21,2018-10-23 05:01:43,2018-11-02 19:48:47,1,110.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15773,NORTS,2,2021-11-21 01:45:29,2021-11-29 21:19:09,2021-12-03 11:11:09,3,291.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15774,SEVES,2,2017-09-12 01:03:47,2017-09-20 08:43:09,2017-09-26 01:43:16,2,114,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15775,QUEDE,4,2017-04-25 11:22:33,2017-05-04 11:37:04,2017-04-28 15:20:45,2,257.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15776,LACOR,3,2020-03-03 20:13:58,2020-03-09 04:27:46,2020-03-09 06:57:50,1,153.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15777,HILAA,9,2023-05-05 05:35:09,2023-05-10 11:35:28,2023-05-08 20:21:11,1,264.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15778,CHOPS,1,2013-05-16 23:56:35,2013-05-17 10:04:47,2013-05-17 15:27:37,3,327,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15779,OTTIK,9,2015-10-04 16:25:44,2015-10-15 12:30:42,2015-10-08 00:23:48,1,448.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15780,SAVEA,7,2013-03-09 00:20:36,2013-03-18 13:49:46,2013-03-12 03:16:11,2,215.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15781,ANTON,7,2021-04-29 17:25:00,2021-05-03 18:47:23,2021-05-02 11:42:48,1,224.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15782,RICSU,7,2019-01-28 18:48:56,2019-02-18 10:41:15,2019-01-29 08:00:58,3,312.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15783,BOTTM,3,2013-09-30 16:16:29,2013-10-13 11:32:04,2013-10-09 20:19:10,1,69,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15784,KOENE,6,2022-01-03 16:13:18,2022-01-05 06:56:22,2022-01-06 09:19:21,1,19,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15785,SEVES,8,2016-02-19 21:49:21,2016-03-01 15:14:01,2016-03-03 00:42:25,2,336.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15786,LETSS,7,2023-01-31 05:03:56,2023-02-17 22:06:15,2023-02-07 00:54:16,1,525.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15787,PRINI,9,2016-05-10 22:03:49,2016-06-15 23:17:31,2016-05-11 04:11:50,2,84,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15788,LONEP,8,2014-02-23 11:17:14,2014-03-10 22:52:23,2014-02-24 14:21:44,3,180.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15789,FRANK,7,2021-05-04 16:53:35,2021-05-12 11:45:49,2021-05-05 16:01:43,3,258.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15790,PRINI,5,2015-04-17 13:43:20,2015-05-15 18:51:49,2015-04-25 07:18:35,3,172.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15791,OLDWO,9,2023-05-21 12:32:26,2023-06-11 17:15:39,2023-06-02 09:31:30,3,71,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15792,LINOD,6,2018-06-29 06:30:45,2018-07-31 22:47:14,2018-06-30 07:22:17,3,174.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15793,GODOS,2,2013-12-18 09:01:40,2013-12-27 03:30:23,2013-12-22 17:01:02,1,435.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +15794,THEBI,9,2020-04-01 08:51:50,2020-05-08 01:36:44,2020-04-13 14:47:56,3,115.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15795,WOLZA,4,2022-06-14 12:20:07,2022-07-22 15:23:23,2022-06-23 08:46:32,2,332.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15796,CONSH,2,2022-02-15 11:07:47,2022-03-14 06:50:58,2022-02-18 19:58:05,3,136,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15797,FRANS,9,2022-04-07 10:35:31,2022-05-28 11:40:23,2022-04-07 11:49:53,2,532.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15798,RICAR,2,2012-10-27 11:09:52,2012-11-03 13:50:58,2012-11-02 04:26:01,1,268.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +15799,LETSS,5,2015-11-20 23:38:34,2015-12-21 19:02:51,2015-12-10 21:04:32,3,205,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15800,FAMIA,2,2019-02-17 15:03:29,2019-04-17 07:11:20,2019-02-18 22:01:53,1,166.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15801,VICTE,4,2015-04-12 23:54:20,2015-05-18 01:54:40,2015-05-01 02:24:05,1,129.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15802,BONAP,5,2021-11-15 11:56:10,2021-11-26 22:06:06,2021-11-28 01:58:43,2,205.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +15803,BERGS,1,2015-11-16 20:54:34,2015-12-20 01:46:34,2015-11-20 10:21:56,3,36.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15804,WANDK,1,2020-01-20 02:04:44,2020-02-21 04:18:15,2020-01-23 10:32:33,1,87.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +15805,FRANS,2,2021-11-02 02:53:15,2021-11-25 20:13:45,2021-11-02 19:12:07,2,93,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15806,PARIS,8,2016-02-19 18:53:54,2016-03-01 03:47:43,2016-03-04 15:12:00,3,144,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15807,PICCO,5,2019-12-28 21:01:39,2020-01-13 13:44:16,2020-01-09 06:03:00,2,327.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +15808,PERIC,8,2016-08-11 21:23:17,2016-08-14 02:29:16,2016-08-26 09:32:58,2,106,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15809,GODOS,7,2023-07-25 11:08:44,2023-08-22 11:38:51,2023-08-04 01:36:23,2,91.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15810,WILMK,3,2021-02-09 23:21:39,2021-02-11 06:02:53,2021-02-21 19:33:56,1,59,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15811,GALED,8,2021-08-16 15:25:37,2021-08-28 07:50:28,2021-08-17 03:03:54,3,61.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +15812,OLDWO,9,2022-09-19 15:50:05,2022-10-07 01:21:40,2022-10-13 04:47:43,1,103,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15813,OLDWO,1,2020-05-01 07:12:41,2020-05-29 15:25:54,2020-05-06 04:34:49,3,96,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +15814,ERNSH,7,2018-11-29 03:33:02,2018-12-31 00:51:11,2018-12-10 12:34:12,2,113,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15815,HANAR,5,2014-01-24 09:42:19,2014-02-23 23:38:59,2014-01-26 07:52:40,2,147,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15816,MAGAA,4,2023-07-27 13:04:10,2023-08-09 07:24:29,2023-08-12 09:42:05,1,273.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15817,LAUGB,5,2014-01-20 07:56:49,2014-03-13 12:26:27,2014-01-21 08:11:00,1,40.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15818,GODOS,5,2018-11-04 11:18:17,2018-12-07 12:48:58,2018-11-10 09:11:22,3,467.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15819,QUEEN,8,2021-12-16 02:51:56,2022-01-10 11:51:55,2021-12-19 11:26:46,3,176.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +15820,RICAR,2,2020-03-14 13:45:49,2020-05-03 08:07:49,2020-03-15 05:01:35,3,217,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15821,OLDWO,7,2018-11-20 11:49:10,2018-12-09 13:27:47,2018-11-27 12:10:42,2,446.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15822,SANTG,4,2013-12-30 12:05:44,2014-02-08 15:10:31,2014-01-09 04:41:05,1,318.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15823,FOLKO,3,2020-11-17 01:09:53,2020-11-22 12:40:56,2020-12-02 12:10:05,1,431,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15824,WILMK,1,2016-08-25 11:14:02,2016-09-23 07:41:52,2016-09-12 03:10:29,1,319.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15825,BONAP,9,2023-01-06 12:04:36,2023-01-12 16:10:41,2023-01-09 13:59:59,3,58,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15826,LAUGB,2,2015-09-14 22:24:08,2015-10-22 15:31:59,2015-09-25 22:30:50,3,251,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15827,OLDWO,1,2014-10-08 10:27:08,2014-11-13 04:56:42,2014-10-17 01:46:43,3,188,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15828,BLAUS,1,2017-04-28 20:40:24,2017-06-07 02:42:08,2017-04-30 02:22:09,1,188.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15829,BOLID,8,2015-08-27 20:23:41,2015-08-29 21:52:24,2015-09-01 15:12:00,2,133.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15830,DUMON,7,2017-05-24 13:32:56,2017-06-06 00:54:17,2017-05-27 14:35:19,2,384.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15831,RICAR,7,2019-01-05 03:42:27,2019-01-30 07:15:52,2019-01-11 13:52:10,2,233.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +15832,BOTTM,1,2020-02-06 14:49:13,2020-02-12 00:01:48,2020-02-08 07:19:26,1,414.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +15833,LAMAI,2,2016-07-08 16:02:58,2016-07-22 03:46:23,2016-07-10 01:59:13,2,269.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15834,MAISD,1,2021-02-01 13:04:42,2021-02-14 02:48:36,2021-02-20 10:32:09,1,53.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15835,GALED,1,2016-12-24 00:05:56,2017-01-25 20:14:07,2017-01-10 21:59:31,3,47,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15836,FURIB,2,2018-09-09 07:32:23,2018-10-06 00:14:25,2018-09-27 15:10:23,3,173.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +15837,PICCO,2,2021-04-20 11:56:32,2021-04-25 21:38:14,2021-04-20 14:03:43,2,512,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15838,WANDK,6,2017-08-27 19:40:47,2017-09-16 12:24:39,2017-08-28 03:53:49,1,81,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15839,CACTU,4,2021-06-14 16:38:02,2021-06-15 16:33:41,2021-07-02 10:35:24,3,235.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +15840,VALON,4,2015-06-04 16:49:30,2015-06-14 08:08:12,2015-06-24 04:35:13,2,194.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15841,ANATR,2,2021-03-17 18:23:53,2021-04-05 15:28:02,2021-03-17 21:34:27,2,26.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15842,WARTH,4,2016-07-01 19:27:34,2016-07-25 07:04:35,2016-07-02 09:25:14,3,238.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15843,WHITC,4,2017-08-06 09:39:23,2017-09-06 07:21:36,2017-08-10 15:44:18,3,241.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15844,HUNGO,9,2021-07-10 10:26:28,2021-08-13 17:01:32,2021-07-13 16:07:23,2,431.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15845,BSBEV,2,2015-12-27 00:00:55,2016-01-10 21:22:23,2015-12-27 07:50:41,2,426.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15846,TRAIH,3,2022-12-07 05:25:02,2023-01-02 14:37:40,2022-12-07 09:01:59,3,335.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15847,ISLAT,3,2019-04-03 23:51:29,2019-05-02 00:15:10,2019-04-14 20:17:23,3,303,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +15848,QUEEN,5,2020-02-16 11:05:07,2020-02-18 07:14:46,2020-03-01 09:19:01,1,470.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15849,TRADH,8,2022-10-01 22:23:00,2022-11-06 21:36:28,2022-10-19 05:25:41,2,303.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15850,QUEDE,3,2022-06-03 10:00:07,2022-07-15 18:40:52,2022-06-03 13:31:08,1,311.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15851,CENTC,5,2021-03-01 16:17:02,2021-03-19 05:21:43,2021-03-07 16:05:07,3,61,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15852,WILMK,8,2014-07-13 09:55:42,2014-07-14 14:13:19,2014-07-19 05:04:09,2,211.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15853,PARIS,3,2021-02-16 03:00:27,2021-03-05 07:34:44,2021-03-08 17:53:27,3,280.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15854,BLAUS,8,2014-08-30 12:07:23,2014-10-22 20:16:02,2014-09-01 16:05:10,2,177.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +15855,BERGS,9,2012-08-28 19:58:40,2012-08-30 16:40:18,2012-09-09 10:11:41,2,464,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15856,OCEAN,2,2016-09-24 06:16:11,2016-10-20 07:54:39,2016-10-11 00:08:02,3,472.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15857,FRANS,2,2016-09-28 06:22:08,2016-10-01 13:11:48,2016-09-29 04:57:18,2,85.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15858,CONSH,3,2023-07-24 10:31:35,2023-09-14 04:11:03,2023-08-01 23:55:24,2,358.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15859,VALON,9,2018-10-04 06:56:40,2018-10-09 08:35:56,2018-10-04 22:55:54,3,264,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15860,OTTIK,9,2019-02-27 11:01:36,2019-03-12 16:59:56,2019-03-01 06:41:02,3,67.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15861,FOLKO,3,2015-07-24 02:09:45,2015-08-06 14:55:03,2015-08-05 10:26:32,1,148.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15862,KOENE,9,2022-11-03 06:28:32,2022-11-07 07:19:30,2022-11-12 18:48:18,2,493.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15863,REGGC,4,2016-09-05 12:50:52,2016-11-02 03:45:39,2016-09-14 12:59:13,3,103.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15864,ROMEY,7,2019-11-05 08:11:59,2019-11-25 01:17:52,2019-11-11 16:45:25,3,308.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15865,BOLID,5,2013-10-13 22:21:55,2013-10-24 09:02:51,2013-11-05 06:47:14,3,414.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15866,FAMIA,8,2019-05-24 21:26:15,2019-05-29 16:36:54,2019-05-25 16:39:28,3,226.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15867,LILAS,2,2014-09-08 23:31:04,2014-09-19 21:35:46,2014-09-24 14:52:52,1,59,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +15868,ERNSH,1,2019-03-17 15:50:17,2019-05-09 14:47:14,2019-03-25 15:40:32,1,150.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15869,NORTS,4,2020-09-15 19:06:33,2020-10-09 08:19:57,2020-09-21 18:24:18,2,468,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15870,BERGS,6,2020-06-07 20:41:14,2020-07-14 09:42:36,2020-06-11 04:45:45,1,397.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15871,BONAP,3,2020-04-20 20:09:15,2020-04-22 21:31:56,2020-05-03 21:10:08,3,306,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15872,FRANS,4,2023-09-09 17:35:11,2023-10-29 18:05:40,2023-09-29 20:20:53,3,467.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15873,PARIS,1,2020-07-01 15:48:27,2020-08-05 01:00:12,2020-07-01 20:18:19,2,298.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15874,HUNGC,5,2020-02-24 18:35:54,2020-03-20 06:48:42,2020-02-25 13:36:20,1,152.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15875,DRACD,6,2018-11-01 17:35:22,2018-11-24 10:54:06,2018-11-07 13:54:11,1,390.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +15876,GALED,4,2018-08-03 17:47:38,2018-08-13 10:01:59,2018-08-15 01:35:56,1,473.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15877,GODOS,3,2017-12-11 12:08:37,2018-01-25 17:47:05,2017-12-13 15:13:10,3,438,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +15878,TRADH,2,2015-10-20 11:45:59,2015-11-13 02:16:27,2015-11-11 11:36:17,2,498,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15879,FOLKO,9,2019-10-16 22:18:20,2019-11-02 16:10:06,2019-11-04 04:26:31,2,444.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +15880,BOLID,2,2019-09-02 18:34:57,2019-09-18 06:27:54,2019-09-07 02:45:20,3,159.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15881,MORGK,6,2019-02-27 12:08:00,2019-03-18 15:24:51,2019-03-06 20:31:24,1,120.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15882,CONSH,6,2022-06-10 06:36:53,2022-06-22 02:44:48,2022-06-12 10:01:21,3,462.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15883,CHOPS,3,2019-01-13 15:44:51,2019-02-18 21:02:03,2019-01-16 13:41:02,1,283.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +15884,ROMEY,3,2019-03-18 01:21:21,2019-04-02 01:42:39,2019-03-21 22:33:12,1,254.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +15885,ERNSH,9,2019-07-09 06:02:54,2019-08-19 23:50:39,2019-07-10 18:20:08,1,228.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15886,QUICK,6,2013-05-17 08:37:49,2013-05-25 06:39:32,2013-05-23 03:23:25,2,169,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15887,HILAA,5,2017-03-20 13:39:44,2017-03-21 02:15:11,2017-03-21 17:14:43,1,189,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15888,LILAS,6,2016-12-05 04:31:34,2016-12-26 05:21:39,2016-12-11 09:49:46,1,191.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15889,OLDWO,4,2021-11-29 21:34:04,2021-12-25 23:17:20,2021-12-14 07:40:06,1,374.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15890,SAVEA,5,2012-09-06 04:46:02,2012-09-14 11:10:20,2012-09-21 22:31:42,1,418.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15891,GODOS,5,2020-04-03 17:17:36,2020-04-23 05:00:06,2020-04-18 20:47:51,1,68.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15892,FRANR,5,2019-05-06 06:36:14,2019-05-25 08:08:30,2019-05-06 07:43:11,3,240.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15893,OTTIK,8,2017-09-17 11:49:00,2017-10-02 15:43:46,2017-09-20 23:18:55,3,50,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15894,LETSS,4,2015-10-29 18:20:07,2015-12-19 18:15:24,2015-11-12 06:25:24,2,135.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15895,DUMON,6,2015-10-20 15:47:29,2015-11-26 02:12:19,2015-10-26 22:16:49,2,16.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +15896,RICSU,4,2019-05-15 21:06:34,2019-06-09 11:26:27,2019-06-04 08:37:09,1,26.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +15897,ALFKI,8,2013-04-09 00:20:15,2013-04-19 18:09:55,2013-04-15 22:14:46,3,21.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +15898,FOLIG,4,2023-08-04 16:33:03,2023-08-10 23:16:48,2023-08-05 13:42:17,3,385.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15899,WELLI,6,2013-12-17 05:58:32,2013-12-19 23:25:42,2014-01-10 04:11:41,2,119.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +15900,ALFKI,2,2020-01-26 07:17:31,2020-02-01 15:43:47,2020-02-15 12:05:01,2,430.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15901,ISLAT,7,2014-06-10 12:00:02,2014-06-21 11:20:10,2014-06-11 09:49:50,2,470.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15902,ANATR,6,2015-10-01 10:04:37,2015-11-06 20:15:06,2015-10-03 21:05:26,3,85.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15903,DRACD,3,2013-11-09 16:14:17,2013-12-02 16:22:14,2013-11-11 03:56:32,2,56,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15904,FOLKO,8,2020-09-04 08:35:28,2020-10-02 06:53:24,2020-09-22 13:07:40,2,334,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15905,ALFKI,3,2023-10-02 12:20:28,2023-10-18 19:22:37,2023-10-03 01:26:35,2,168.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15906,DUMON,8,2020-05-20 16:18:12,2020-06-09 22:17:39,2020-05-23 11:46:16,3,251.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +15907,THECR,1,2014-05-13 15:29:04,2014-05-18 17:30:41,2014-05-24 00:43:24,1,412.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15908,RICAR,1,2015-12-01 16:41:28,2016-01-03 16:03:09,2015-12-21 03:06:16,2,395.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15909,PRINI,3,2016-09-07 05:16:01,2016-09-25 10:39:20,2016-09-27 03:55:44,1,359.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +15910,BERGS,8,2013-03-23 13:22:09,2013-03-28 01:52:08,2013-03-28 19:37:02,1,288,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15911,FRANR,9,2022-11-28 14:43:25,2022-12-12 18:14:19,2022-12-10 21:28:32,1,85.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15912,LEHMS,8,2019-01-05 02:02:57,2019-01-15 10:19:37,2019-01-09 16:02:03,1,203.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15913,RANCH,4,2015-05-30 13:33:52,2015-06-24 10:08:07,2015-05-31 10:42:00,1,401.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15914,MEREP,8,2022-10-16 16:12:01,2022-11-14 16:28:45,2022-10-25 02:58:18,3,297,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +15915,ANTON,1,2022-02-18 11:09:54,2022-03-03 14:44:31,2022-03-10 01:24:01,3,146.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +15916,VALON,5,2015-06-17 16:05:22,2015-07-11 20:00:18,2015-06-22 12:14:57,3,97.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15917,GALED,1,2018-04-04 19:02:58,2018-04-07 12:41:35,2018-04-04 22:59:14,1,324.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15918,LACOR,5,2020-02-16 14:19:29,2020-03-18 23:11:42,2020-03-05 19:29:43,3,426.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +15919,SEVES,7,2022-01-09 02:08:00,2022-01-18 03:33:43,2022-01-10 18:54:24,1,51.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +15920,THECR,8,2012-10-09 15:40:01,2012-10-28 05:42:00,2012-10-18 17:50:44,3,386.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15921,PRINI,1,2012-11-20 08:36:25,2012-12-31 12:53:09,2012-12-11 08:51:21,3,397.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15922,LINOD,4,2015-11-26 12:46:20,2015-12-21 15:01:32,2015-12-04 17:23:09,2,102.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +15923,BONAP,4,2015-12-25 19:00:40,2016-01-11 23:10:09,2016-01-07 16:01:43,1,67.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +15924,LACOR,1,2015-03-06 04:49:41,2015-03-19 23:45:04,2015-03-10 07:15:01,3,149.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15925,GREAL,2,2021-10-17 08:24:15,2021-11-13 18:42:01,2021-10-18 00:38:14,3,449.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +15926,THECR,4,2018-02-19 08:30:25,2018-02-27 20:29:46,2018-03-03 00:07:14,2,203.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15927,WILMK,4,2013-07-16 00:51:56,2013-08-13 07:46:06,2013-07-18 23:58:35,3,345.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15928,REGGC,1,2013-05-18 15:13:51,2013-06-17 15:31:41,2013-05-20 12:34:48,2,72.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +15929,ANATR,8,2015-02-04 13:56:15,2015-02-08 15:11:06,2015-02-05 11:33:32,3,304.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15930,FOLIG,5,2014-09-05 01:13:54,2014-09-13 01:11:20,2014-09-07 21:58:54,2,281,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15931,ANTON,2,2012-08-16 13:11:30,2012-08-31 16:19:25,2012-09-02 18:34:10,3,254.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +15932,EASTC,1,2019-12-08 11:17:31,2019-12-23 17:46:03,2019-12-30 16:54:54,1,508.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15933,FRANS,1,2017-03-28 20:51:54,2017-04-22 12:29:25,2017-04-01 03:25:33,1,140.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +15934,KOENE,7,2019-07-22 04:31:04,2019-07-26 12:46:24,2019-07-22 09:09:58,2,441.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +15935,LONEP,4,2014-12-11 00:12:08,2015-01-10 06:51:53,2014-12-18 12:36:50,2,99.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15936,ALFKI,7,2023-03-10 11:35:35,2023-03-25 19:49:05,2023-03-12 08:28:38,2,186,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +15937,LINOD,2,2015-09-28 21:55:53,2015-11-14 16:55:28,2015-10-01 05:04:11,3,75.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15938,WOLZA,2,2018-06-10 11:01:54,2018-07-25 07:11:49,2018-06-25 06:17:51,2,145.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15939,TRAIH,2,2015-07-16 22:26:02,2015-07-21 02:28:49,2015-07-28 13:21:54,2,215.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15940,CACTU,2,2018-01-20 14:26:34,2018-02-15 15:41:42,2018-01-21 16:10:18,3,412,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +15941,SIMOB,8,2019-03-26 11:55:26,2019-04-06 21:34:02,2019-04-09 23:37:51,2,213.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +15942,HUNGO,7,2018-03-05 17:39:42,2018-04-01 01:44:40,2018-03-11 16:54:45,3,361.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15943,THECR,1,2020-12-09 01:46:25,2020-12-25 16:44:27,2020-12-24 00:58:57,3,170.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15944,QUICK,5,2022-03-02 19:55:07,2022-03-05 18:52:01,2022-03-03 16:20:49,3,403.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +15945,OCEAN,5,2015-12-05 03:00:07,2016-01-12 23:12:33,2015-12-15 01:37:34,2,256.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +15946,HUNGO,8,2022-08-08 11:07:08,2022-08-17 19:39:50,2022-08-19 03:47:31,2,472.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +15947,WELLI,5,2023-07-02 05:58:12,2023-07-27 06:01:06,2023-07-03 01:56:43,2,460.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +15948,TOMSP,8,2015-03-03 20:12:24,2015-03-07 18:29:00,2015-03-20 17:43:43,3,341.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +15949,ISLAT,3,2015-01-15 22:19:48,2015-02-10 05:24:32,2015-01-22 14:41:33,1,298.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +15950,WILMK,2,2015-11-04 04:31:29,2015-11-08 01:25:20,2015-11-09 18:08:19,2,101.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +15951,NORTS,8,2014-04-11 18:16:35,2014-05-24 02:19:18,2014-04-18 07:11:02,3,385.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +15952,PRINI,7,2020-08-03 10:13:38,2020-08-25 14:16:45,2020-09-01 20:32:38,3,247.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15953,SIMOB,4,2018-03-06 05:47:29,2018-03-07 17:45:22,2018-03-07 02:10:56,3,333.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15954,VALON,6,2013-02-05 08:16:58,2013-02-28 04:57:55,2013-02-11 16:16:32,3,320.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15955,RICSU,1,2018-01-13 10:20:25,2018-03-02 11:43:15,2018-01-14 02:23:19,1,138.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +15956,SIMOB,7,2016-09-05 18:00:52,2016-09-30 01:41:58,2016-09-07 15:02:16,2,164.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15957,BOTTM,3,2015-07-18 08:25:48,2015-08-06 06:22:58,2015-07-21 18:39:05,2,296.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +15958,ALFKI,7,2022-05-22 22:45:24,2022-06-10 04:48:28,2022-05-27 06:31:20,1,267.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +15959,EASTC,8,2017-06-12 21:20:12,2017-06-22 04:53:22,2017-07-06 20:03:27,1,37,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15960,VAFFE,6,2012-11-17 06:54:48,2012-11-17 10:25:11,2012-11-17 12:23:14,3,373.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +15961,GODOS,1,2023-05-08 19:35:48,2023-05-22 18:56:44,2023-05-20 21:48:53,2,502.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +15962,DRACD,7,2018-07-15 03:22:29,2018-07-23 08:01:01,2018-07-17 08:55:59,1,364,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +15963,TOMSP,7,2022-01-17 20:19:59,2022-02-03 23:33:28,2022-01-28 19:35:39,2,476,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +15964,LILAS,2,2022-12-28 07:39:25,2023-02-03 13:38:32,2022-12-29 04:10:11,2,344.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +15965,WANDK,8,2014-06-17 11:35:11,2014-07-18 18:16:07,2014-06-25 13:15:14,2,313,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +15966,CENTC,9,2017-12-02 10:31:35,2017-12-20 00:36:29,2017-12-06 08:40:38,3,88.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +15967,HUNGO,3,2017-07-16 09:15:24,2017-07-29 17:45:46,2017-07-23 19:43:49,2,448,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15968,VINET,8,2020-02-19 08:36:08,2020-03-02 17:27:13,2020-02-24 12:12:43,3,345,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +15969,HUNGC,2,2012-09-21 19:54:16,2012-10-15 01:36:13,2012-09-25 10:04:02,3,286.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15970,MAGAA,8,2020-11-10 10:02:37,2020-11-16 18:24:13,2020-11-12 18:25:57,1,124,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +15971,MEREP,8,2016-10-10 20:59:02,2016-10-29 16:48:28,2016-10-19 07:58:38,3,182.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +15972,BLONP,8,2012-11-20 02:48:43,2012-11-25 05:11:16,2012-12-04 20:42:24,2,180.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15973,MAGAA,6,2016-01-27 04:24:59,2016-02-04 04:32:58,2016-01-30 18:32:50,1,312.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +15974,QUEDE,1,2015-01-04 03:24:20,2015-02-07 04:48:53,2015-01-16 19:03:12,1,251,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +15975,BSBEV,9,2016-01-22 11:40:11,2016-02-05 22:03:32,2016-01-26 03:21:19,1,391.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +15976,LONEP,1,2015-08-14 17:03:08,2015-08-20 16:33:28,2015-08-22 00:56:48,3,47.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +15977,TRADH,3,2021-02-08 14:20:07,2021-02-17 21:44:33,2021-02-28 22:41:09,3,110.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +15978,PARIS,1,2017-10-17 20:19:23,2017-11-04 22:48:25,2017-11-08 18:54:18,2,342.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +15979,PRINI,6,2016-04-21 12:57:22,2016-05-16 11:19:41,2016-05-04 06:14:33,3,89,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +15980,TRADH,4,2019-05-15 02:14:32,2019-05-31 18:45:15,2019-05-16 04:19:46,2,33.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +15981,WOLZA,1,2018-03-17 21:16:12,2018-04-02 23:52:18,2018-03-29 23:17:44,3,293.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +15982,GREAL,1,2013-01-01 11:37:51,2013-02-14 10:07:44,2013-01-18 20:02:30,1,73.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +15983,LACOR,7,2015-06-28 15:37:19,2015-07-31 11:29:49,2015-07-08 06:55:54,1,120.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +15984,SPLIR,6,2014-07-10 00:13:55,2014-09-02 01:27:18,2014-07-30 03:21:49,2,401.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +15985,BOTTM,4,2022-04-04 09:17:03,2022-05-23 11:00:03,2022-04-07 15:50:18,1,367.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15986,TRADH,6,2015-10-23 07:00:42,2015-10-29 14:48:34,2015-11-03 07:59:47,3,378,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +15987,KOENE,4,2023-01-13 16:06:49,2023-02-06 11:32:13,2023-01-20 17:50:58,3,19.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +15988,MAGAA,8,2020-12-02 02:01:57,2020-12-11 07:07:39,2020-12-09 20:37:29,3,298,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +15989,VINET,5,2022-06-29 23:43:16,2022-07-04 17:50:40,2022-07-06 04:56:03,1,275.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15990,PERIC,9,2020-10-28 03:49:33,2020-11-19 11:07:54,2020-11-04 10:00:23,3,317,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +15991,FRANS,7,2015-03-09 04:03:31,2015-03-17 16:07:13,2015-03-09 07:53:08,3,424,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +15992,WOLZA,9,2021-06-21 02:11:14,2021-07-11 19:53:56,2021-06-24 15:14:52,2,279.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +15993,CACTU,6,2017-03-25 15:56:43,2017-04-12 22:47:26,2017-03-27 05:17:39,1,488,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +15994,LAZYK,5,2014-09-17 02:07:05,2014-09-21 13:07:42,2014-09-29 00:12:09,1,235.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15995,RICSU,7,2023-01-30 03:41:13,2023-02-13 15:38:54,2023-02-01 05:15:18,2,145,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +15996,Val2 ,9,2013-01-19 13:46:41,2013-02-20 00:59:20,2013-01-20 01:48:43,2,92.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +15997,BLONP,1,2013-05-28 12:54:31,2013-07-04 09:25:53,2013-06-18 09:52:14,1,528,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +15998,FAMIA,8,2016-04-21 12:36:54,2016-05-31 03:54:14,2016-04-23 06:24:17,2,25.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +15999,VINET,9,2020-05-05 22:07:49,2020-05-21 08:36:23,2020-05-13 18:37:23,2,507,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +16000,SPLIR,6,2012-08-27 23:09:33,2012-09-08 15:02:40,2012-08-30 18:09:18,2,353.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16001,BLONP,3,2018-04-25 15:20:47,2018-05-12 00:31:09,2018-05-05 16:19:36,2,29.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16002,WHITC,8,2021-01-20 01:51:43,2021-02-14 17:20:21,2021-01-26 16:21:14,2,378.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16003,LEHMS,5,2012-11-04 19:48:09,2012-11-19 07:46:31,2012-11-08 04:44:46,2,326.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16004,LAMAI,8,2023-05-10 15:41:50,2023-05-30 17:10:45,2023-05-17 17:23:43,2,283.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16005,AROUT,5,2019-08-30 22:17:48,2019-10-04 10:53:41,2019-09-05 08:18:54,1,161.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16006,MEREP,5,2017-09-20 18:13:03,2017-10-24 11:18:23,2017-10-08 10:08:18,3,187,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16007,PRINI,3,2021-04-29 20:28:08,2021-06-20 09:10:03,2021-04-30 18:44:10,2,139.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16008,VICTE,1,2019-05-16 03:18:27,2019-05-18 16:55:40,2019-05-16 09:28:40,2,202.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16009,PERIC,4,2018-06-13 22:44:34,2018-07-09 15:16:06,2018-06-14 02:49:53,2,277,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16010,VAFFE,7,2014-01-27 13:56:02,2014-02-19 10:44:25,2014-02-03 09:57:12,3,320.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16011,CACTU,7,2014-02-18 05:02:44,2014-02-24 10:35:47,2014-02-23 06:33:50,3,259.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16012,CONSH,7,2022-06-11 04:33:46,2022-07-06 09:16:36,2022-06-11 23:16:56,1,297,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16013,LAZYK,2,2013-08-23 08:30:15,2013-10-04 08:24:59,2013-08-29 09:42:16,1,111.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +16014,MAISD,2,2021-05-29 05:14:00,2021-06-24 02:11:31,2021-06-04 00:39:37,3,15.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16015,FRANS,5,2017-06-05 16:58:51,2017-06-09 23:37:19,2017-06-13 01:51:37,3,236,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16016,TRAIH,5,2015-07-08 09:25:28,2015-08-12 11:58:34,2015-07-08 19:45:13,3,480.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16017,HUNGC,7,2017-09-29 19:08:01,2017-10-05 19:16:59,2017-10-14 13:23:52,1,82.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16018,GODOS,7,2020-08-13 06:23:06,2020-08-15 18:09:18,2020-08-21 22:34:19,2,365.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16019,LILAS,2,2014-03-08 11:00:27,2014-03-21 02:29:54,2014-03-08 21:55:05,1,329.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +16020,VAFFE,9,2021-10-08 15:10:45,2021-11-10 21:05:30,2021-10-19 20:09:43,3,327.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16021,LACOR,5,2023-07-08 03:55:24,2023-08-10 03:37:47,2023-07-13 00:01:57,3,509.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16022,GALED,1,2016-09-06 04:15:18,2016-09-07 13:25:39,2016-09-06 17:40:46,2,445.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16023,WANDK,1,2022-10-09 15:36:01,2022-11-05 19:19:05,2022-10-16 17:49:03,1,53,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16024,LAUGB,7,2021-01-28 10:53:04,2021-03-07 11:07:54,2021-02-04 22:37:04,2,448,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16025,LONEP,1,2017-12-30 05:09:09,2018-02-06 23:51:16,2017-12-30 10:48:05,3,226.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16026,GREAL,4,2013-02-07 15:14:38,2013-03-13 21:00:33,2013-02-27 04:03:33,3,43.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16027,GODOS,6,2015-07-19 12:10:01,2015-08-11 14:50:53,2015-07-19 12:40:00,3,197.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16028,WANDK,2,2023-03-28 07:49:14,2023-04-04 05:20:47,2023-03-28 10:27:13,2,54.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16029,VAFFE,7,2020-08-20 02:35:29,2020-09-07 04:41:08,2020-08-20 19:53:27,3,419.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16030,BLAUS,3,2018-08-26 18:49:34,2018-08-28 21:18:20,2018-08-27 05:32:14,1,401.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16031,RICAR,9,2012-12-09 03:44:01,2012-12-21 16:22:46,2012-12-28 04:28:10,3,393.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16032,LILAS,7,2019-07-29 06:10:37,2019-08-14 23:24:33,2019-07-30 18:00:37,1,107,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16033,HANAR,1,2015-09-01 17:23:32,2015-10-29 07:44:40,2015-09-24 14:23:02,2,435.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16034,LAZYK,3,2023-10-08 16:11:11,2023-10-31 20:25:13,2023-10-17 09:47:52,3,391.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16035,ANTON,4,2021-06-15 03:21:07,2021-07-08 21:01:46,2021-06-21 20:33:24,2,128,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16036,WANDK,9,2017-01-12 00:14:39,2017-01-31 23:59:05,2017-01-13 10:30:16,1,337.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16037,SPECD,2,2023-02-22 21:11:33,2023-03-31 13:30:19,2023-02-25 17:57:58,2,324,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16038,LACOR,4,2017-01-13 22:39:00,2017-01-18 00:26:20,2017-01-19 03:11:42,3,256.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16039,MORGK,9,2023-07-15 21:50:06,2023-08-18 20:09:59,2023-07-17 03:33:02,2,368,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16040,LAUGB,9,2020-07-08 06:37:15,2020-07-15 16:42:06,2020-07-09 14:19:46,3,389.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16041,TRADH,6,2014-04-01 18:22:12,2014-04-20 20:03:30,2014-04-17 05:36:34,2,344.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16042,SPLIR,3,2016-05-16 05:28:13,2016-07-02 02:09:45,2016-05-17 04:51:09,3,116.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16043,GODOS,3,2012-11-13 03:29:01,2012-12-06 19:08:20,2012-11-18 02:38:21,3,312.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16044,QUEDE,9,2013-04-05 07:24:18,2013-04-05 22:35:21,2013-04-07 23:01:08,1,119.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16045,QUICK,9,2015-09-07 13:02:57,2015-10-14 10:04:08,2015-09-08 15:06:22,3,396,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16046,QUEDE,3,2020-12-11 01:48:05,2020-12-27 17:36:34,2020-12-13 23:54:39,3,261,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16047,RICAR,7,2013-12-21 10:51:12,2013-12-31 07:27:01,2014-01-12 05:14:58,2,420,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16048,THEBI,1,2016-05-01 07:54:20,2016-05-16 16:45:29,2016-05-22 06:33:01,2,471.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16049,FURIB,7,2016-01-23 20:02:25,2016-02-24 06:43:50,2016-01-31 21:24:40,1,444.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16050,HUNGC,2,2013-06-23 13:52:44,2013-07-17 13:39:43,2013-06-24 00:54:54,2,171.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16051,CENTC,7,2012-09-07 06:31:29,2012-09-26 11:43:27,2012-09-17 22:08:39,2,337,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16052,MEREP,7,2013-10-23 23:20:40,2013-10-25 03:24:35,2013-11-03 08:08:33,2,108.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16053,MEREP,7,2020-01-12 04:06:05,2020-01-14 13:46:27,2020-01-12 08:07:04,3,301.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16054,CONSH,6,2022-11-05 09:07:56,2022-11-12 16:00:42,2022-11-05 13:04:23,3,28.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16055,LONEP,3,2012-09-20 19:04:23,2012-09-30 17:58:51,2012-10-04 19:52:33,3,35,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16056,LACOR,5,2022-01-28 09:33:33,2022-02-03 08:03:44,2022-02-16 21:33:30,3,24.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16057,SPECD,8,2023-09-19 13:28:45,2023-10-01 20:00:21,2023-09-26 00:38:46,2,315,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16058,COMMI,2,2022-10-16 12:52:00,2022-10-26 22:18:10,2022-11-01 05:24:59,2,394.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16059,SUPRD,3,2015-02-19 19:27:23,2015-03-04 07:45:04,2015-02-20 15:56:55,2,33.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16060,LINOD,7,2014-07-19 13:29:01,2014-08-05 05:26:22,2014-07-25 12:30:25,2,178,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16061,ROMEY,5,2022-01-20 10:15:59,2022-02-07 00:02:58,2022-01-20 18:13:10,1,25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16062,SUPRD,7,2015-02-03 17:36:03,2015-03-03 08:39:06,2015-02-16 09:37:32,3,24.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16063,ROMEY,1,2017-05-21 04:12:54,2017-06-04 01:00:08,2017-05-21 15:49:07,3,261.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16064,COMMI,6,2018-08-08 14:03:53,2018-09-27 07:55:25,2018-08-09 11:13:19,2,245.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16065,PICCO,6,2013-07-09 09:01:04,2013-07-23 09:09:50,2013-07-11 15:16:37,1,202.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16066,WOLZA,2,2017-09-14 21:13:56,2017-09-30 00:58:13,2017-09-23 23:06:46,2,170.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16067,DRACD,8,2020-06-10 00:40:30,2020-06-16 12:56:44,2020-06-21 19:05:52,2,503.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16068,FRANS,2,2013-02-14 22:32:15,2013-02-25 11:23:45,2013-02-22 16:39:19,3,446,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16069,QUEDE,5,2021-06-15 19:27:55,2021-06-25 05:57:21,2021-06-23 20:56:34,1,105.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16070,KOENE,6,2020-12-19 10:56:17,2020-12-27 22:33:19,2020-12-23 19:05:58,3,319.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16071,BLAUS,7,2014-10-02 23:42:21,2014-10-08 12:02:08,2014-10-07 07:40:52,1,127.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16072,GROSR,4,2017-08-04 17:52:37,2017-09-04 04:42:39,2017-08-26 08:00:29,1,481.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16073,WILMK,4,2016-10-20 09:49:38,2016-11-03 17:14:42,2016-10-22 19:07:33,2,282,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16074,FRANK,9,2014-07-30 04:25:00,2014-09-10 15:33:43,2014-07-31 04:09:56,1,78.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16075,ROMEY,8,2015-06-10 09:15:09,2015-07-02 23:32:29,2015-06-27 11:16:56,1,312.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16076,OTTIK,1,2022-07-08 09:25:46,2022-07-22 14:44:51,2022-07-13 12:02:35,2,144.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16077,BONAP,5,2020-02-23 22:30:45,2020-03-12 10:25:39,2020-02-26 20:31:58,2,403.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16078,MEREP,4,2017-11-24 12:29:57,2017-11-29 19:10:35,2017-11-24 12:33:41,3,226,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16079,MORGK,6,2014-01-16 04:39:54,2014-02-03 17:39:40,2014-01-18 21:10:05,3,448.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16080,BERGS,7,2016-09-18 01:55:56,2016-10-15 23:23:12,2016-09-23 04:58:15,1,136.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16081,BOTTM,6,2015-08-25 16:10:32,2015-08-30 17:44:24,2015-08-25 16:50:09,2,477.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16082,FOLKO,6,2018-05-31 21:37:52,2018-06-13 01:05:58,2018-06-10 19:03:31,3,300.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16083,GALED,4,2016-07-20 13:40:31,2016-07-23 02:18:50,2016-08-06 10:25:10,1,188.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16084,CHOPS,3,2015-02-22 14:18:42,2015-04-03 12:42:19,2015-02-24 14:35:35,1,273.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16085,HUNGO,5,2017-10-20 08:46:54,2017-11-01 02:21:12,2017-10-20 11:38:44,3,422.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +16086,GREAL,2,2013-01-16 14:52:23,2013-01-28 20:44:39,2013-01-19 06:12:16,2,163.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16087,RANCH,7,2023-06-19 11:16:56,2023-06-27 04:44:20,2023-07-02 17:18:13,1,47.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16088,PARIS,1,2022-09-10 19:04:05,2022-09-25 08:13:31,2022-09-18 14:52:04,2,70.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16089,Val2 ,4,2016-11-22 23:52:08,2016-12-07 23:59:51,2016-11-26 08:07:52,3,333.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16090,BLAUS,4,2021-06-22 15:40:19,2021-07-18 11:42:52,2021-06-22 16:11:28,1,302.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16091,OLDWO,9,2020-12-22 13:40:06,2021-01-13 02:08:43,2021-01-01 00:31:44,3,244.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16092,DRACD,8,2021-06-07 18:19:53,2021-07-23 20:07:19,2021-06-11 11:01:30,3,391.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16093,ROMEY,5,2018-11-30 16:51:01,2018-12-31 02:53:11,2018-12-01 11:18:53,2,88.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16094,FRANR,4,2019-05-31 20:28:19,2019-06-09 17:02:32,2019-06-06 05:05:58,3,193.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16095,CHOPS,9,2013-10-19 07:06:42,2013-11-20 16:41:34,2013-11-14 12:16:16,2,95,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16096,THEBI,5,2023-07-01 22:06:28,2023-07-15 11:30:41,2023-07-04 15:21:39,1,341,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16097,FRANR,6,2019-09-24 17:19:55,2019-10-30 09:52:36,2019-09-24 19:42:37,1,156.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16098,REGGC,6,2012-08-17 19:50:41,2012-08-19 15:15:10,2012-08-23 05:29:42,2,265,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +16099,LAUGB,4,2015-04-12 03:08:39,2015-04-24 08:04:44,2015-04-13 12:53:47,2,83,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16100,KOENE,3,2019-12-21 01:53:57,2019-12-27 21:41:39,2019-12-23 04:34:49,3,269.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16101,WANDK,4,2023-02-22 01:15:50,2023-04-03 21:08:08,2023-02-23 22:27:40,1,393.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16102,OLDWO,1,2013-09-27 19:20:48,2013-11-10 01:03:33,2013-09-27 23:56:19,3,307.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16103,ERNSH,5,2013-04-08 04:04:12,2013-05-19 05:02:23,2013-04-15 01:30:42,1,253,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16104,ANTON,7,2016-03-13 10:15:50,2016-03-18 21:11:15,2016-03-16 07:30:59,3,150.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +16105,FRANK,5,2012-09-14 20:31:45,2012-11-01 20:58:18,2012-09-17 08:24:00,2,518,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16106,CENTC,6,2014-10-09 07:02:38,2014-11-21 13:47:22,2014-10-24 14:53:21,3,238.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16107,KOENE,6,2012-12-23 07:47:53,2013-01-25 08:29:02,2012-12-24 04:24:32,2,434.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +16108,WARTH,8,2016-05-08 01:37:35,2016-06-07 08:04:32,2016-05-18 11:25:12,1,164.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16109,COMMI,7,2013-02-19 03:49:48,2013-02-23 14:35:14,2013-02-27 18:23:14,1,179.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16110,BERGS,6,2013-10-11 23:17:47,2013-10-26 12:22:32,2013-10-17 20:48:43,2,381.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16111,HUNGO,8,2020-10-14 22:43:54,2020-10-28 13:00:06,2020-10-28 14:45:38,3,261.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16112,FRANS,5,2019-05-23 21:38:39,2019-05-28 16:28:54,2019-05-24 06:46:33,3,463.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16113,EASTC,2,2018-01-08 07:30:52,2018-01-18 08:42:12,2018-01-26 09:56:31,2,478.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16114,PRINI,9,2018-12-01 14:50:37,2018-12-12 00:30:10,2018-12-08 01:48:24,1,382.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16115,GALED,7,2021-05-06 12:05:36,2021-05-09 17:57:05,2021-05-14 18:33:36,1,351.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16116,SIMOB,8,2014-06-06 13:25:12,2014-07-10 12:40:37,2014-06-10 02:36:39,1,398.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16117,WELLI,7,2023-04-07 02:54:54,2023-04-28 00:56:50,2023-04-21 08:35:37,3,274,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16118,SPECD,2,2015-02-21 12:03:05,2015-03-10 21:35:37,2015-03-06 14:05:21,2,123.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16119,HANAR,2,2013-10-21 04:20:31,2013-11-20 04:16:01,2013-10-25 17:14:45,3,182.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16120,GROSR,1,2021-03-02 05:07:12,2021-04-16 14:55:44,2021-03-04 16:47:32,1,172,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16121,FOLIG,7,2019-03-13 04:45:10,2019-05-08 09:11:28,2019-03-21 14:45:26,1,437,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +16122,WOLZA,5,2023-02-04 09:00:52,2023-03-04 11:32:05,2023-02-11 16:58:57,3,474,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16123,OTTIK,6,2018-01-10 08:54:37,2018-02-04 08:52:42,2018-01-17 23:51:53,2,448,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16124,BOLID,7,2019-11-21 14:25:04,2019-12-04 09:05:22,2019-12-08 14:40:24,3,441,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16125,OLDWO,5,2023-09-23 03:13:28,2023-09-26 00:22:44,2023-10-01 22:58:58,1,396.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16126,OLDWO,3,2014-11-26 09:03:50,2014-11-27 01:51:22,2014-12-06 10:30:28,2,373.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16127,BOTTM,7,2022-03-07 09:56:58,2022-04-10 11:15:38,2022-03-14 16:11:40,3,163.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16128,COMMI,3,2018-05-14 13:28:48,2018-06-18 07:54:58,2018-05-15 19:34:31,3,197.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16129,VICTE,4,2014-10-29 02:46:58,2014-10-31 05:24:07,2014-10-29 23:45:57,2,330.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16130,SUPRD,6,2012-07-22 18:08:42,2012-08-12 23:32:03,2012-07-23 03:43:12,3,172.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16131,RICAR,2,2017-08-21 08:02:22,2017-10-08 11:25:27,2017-08-25 15:12:37,1,209,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16132,RANCH,6,2017-05-27 08:19:01,2017-05-30 12:15:40,2017-06-21 05:50:41,1,147,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16133,FRANR,5,2019-10-16 17:39:03,2019-10-30 23:45:41,2019-11-04 04:28:20,2,284.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16134,PICCO,3,2017-11-27 12:53:34,2017-11-30 22:25:42,2017-12-06 00:43:51,1,98.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16135,WELLI,9,2020-05-03 09:32:12,2020-05-31 03:59:25,2020-05-18 12:57:20,3,218,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +16136,BOTTM,6,2013-07-26 15:50:24,2013-08-03 14:03:26,2013-08-02 16:25:45,2,105.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16137,WILMK,4,2015-10-16 00:44:59,2015-12-01 01:44:44,2015-10-24 07:55:21,2,285.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16138,KOENE,6,2023-09-14 12:48:35,2023-09-16 05:02:08,2023-09-14 17:33:52,1,118.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16139,CHOPS,6,2013-10-19 06:33:22,2013-11-20 08:56:31,2013-10-31 23:22:48,3,269.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16140,BERGS,7,2019-02-14 05:13:13,2019-03-07 06:13:15,2019-02-18 18:46:19,3,430.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16141,VICTE,8,2019-05-22 22:26:42,2019-06-16 22:55:31,2019-05-23 17:11:21,2,394.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16142,SEVES,5,2020-06-27 21:13:06,2020-08-09 05:00:21,2020-06-28 06:14:03,1,151,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16143,OCEAN,1,2021-02-15 01:31:58,2021-02-19 03:50:00,2021-02-21 05:16:11,3,96,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16144,LEHMS,5,2023-04-16 00:39:28,2023-04-17 13:42:53,2023-04-21 06:54:58,1,347.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16145,WOLZA,6,2019-11-10 18:54:59,2019-11-19 03:20:49,2019-11-16 03:16:02,3,486.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16146,GODOS,2,2022-11-18 07:00:33,2022-11-18 20:30:48,2022-11-30 17:30:27,1,381.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16147,RATTC,2,2012-10-14 07:14:07,2012-10-25 11:47:20,2012-10-20 23:01:15,3,334.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16148,CENTC,3,2014-11-13 07:40:36,2014-12-10 06:30:35,2014-12-08 08:34:32,2,365.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16149,ALFKI,1,2016-06-19 04:51:55,2016-07-16 14:16:51,2016-06-21 19:23:30,2,68,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16150,ANATR,5,2013-01-26 08:48:03,2013-02-11 16:28:22,2013-01-27 09:35:45,2,296.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16151,RATTC,5,2017-03-10 08:31:53,2017-04-06 01:13:48,2017-03-13 11:16:24,3,34.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16152,ERNSH,1,2022-03-21 00:25:22,2022-04-16 14:28:40,2022-03-22 15:29:00,2,367.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16153,LINOD,7,2023-03-12 23:57:42,2023-04-22 13:42:18,2023-03-20 15:28:34,3,245.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +16154,VALON,8,2013-04-01 10:09:53,2013-04-03 15:00:48,2013-04-14 03:31:19,1,286.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16155,SUPRD,6,2023-05-28 06:56:38,2023-06-11 13:11:35,2023-05-30 01:31:00,2,74.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16156,TRADH,2,2016-10-12 05:32:14,2016-10-30 09:01:32,2016-10-24 01:28:55,1,317.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16157,ANTON,3,2013-12-13 07:31:47,2014-01-18 14:02:48,2013-12-16 04:01:43,1,420.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16158,RICSU,6,2013-12-23 12:54:55,2014-01-01 05:26:22,2014-01-09 10:29:14,3,228.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16159,OLDWO,3,2017-10-14 14:24:52,2017-11-11 01:57:26,2017-10-19 04:50:57,2,487.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16160,SANTG,7,2013-08-13 11:15:33,2013-09-09 10:52:41,2013-08-24 00:12:45,2,504,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16161,REGGC,4,2019-12-30 07:29:13,2020-01-23 08:02:45,2020-01-09 23:41:29,3,232,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16162,SPLIR,7,2014-01-13 07:56:33,2014-01-16 13:04:48,2014-01-13 21:14:31,3,147.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16163,GODOS,1,2021-06-15 03:38:03,2021-07-08 16:50:02,2021-06-16 21:03:38,3,35.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16164,VICTE,2,2023-08-13 17:45:01,2023-08-15 17:32:30,2023-08-20 20:54:10,2,240.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16165,VINET,9,2016-07-10 22:02:50,2016-07-24 03:16:43,2016-07-15 01:47:30,3,295.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16166,BLAUS,9,2017-02-27 15:32:23,2017-03-02 15:38:40,2017-02-27 18:34:22,2,396,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16167,BSBEV,6,2013-08-24 20:18:46,2013-10-02 13:02:25,2013-09-07 10:16:32,1,55.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16168,RICAR,5,2015-12-21 00:17:00,2016-01-01 09:51:42,2016-01-17 12:23:21,2,390.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16169,FISSA,5,2016-08-29 07:28:58,2016-09-12 21:19:48,2016-09-04 09:24:54,3,462.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16170,FRANR,7,2019-10-25 23:41:51,2019-11-13 01:01:07,2019-10-26 13:14:56,3,145.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16171,FRANK,7,2016-05-19 20:40:41,2016-05-29 03:50:27,2016-05-25 20:22:44,2,190.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16172,MEREP,8,2013-07-13 13:16:18,2013-07-27 20:20:37,2013-07-27 08:37:02,3,78,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16173,BOTTM,7,2015-02-02 06:53:17,2015-03-07 08:35:17,2015-02-02 10:03:12,3,311.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16174,WHITC,4,2017-10-18 19:17:01,2017-10-29 09:35:01,2017-10-22 00:38:29,3,91.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16175,ERNSH,8,2017-04-24 12:54:35,2017-06-11 03:03:38,2017-04-30 18:58:52,2,186,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16176,VALON,7,2017-08-20 23:08:17,2017-09-20 07:26:03,2017-08-21 22:40:52,3,285.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16177,HUNGC,2,2019-05-06 21:39:31,2019-06-10 16:20:37,2019-05-06 23:32:06,1,210.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16178,ISLAT,4,2018-06-08 05:10:39,2018-06-23 22:54:08,2018-06-08 14:31:51,2,24,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16179,RANCH,2,2021-11-01 21:45:46,2021-12-10 19:00:55,2021-11-12 07:18:22,1,93.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16180,LACOR,2,2022-12-03 12:25:18,2022-12-09 12:43:29,2022-12-28 16:28:52,1,474.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16181,FOLIG,9,2019-08-06 13:10:35,2019-08-12 03:29:35,2019-08-08 08:26:59,3,75.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16182,AROUT,8,2014-01-22 09:32:28,2014-01-23 17:20:36,2014-02-02 09:38:49,3,414.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16183,RICAR,4,2021-02-23 00:58:46,2021-02-26 18:06:46,2021-03-02 06:05:19,3,30,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16184,ANATR,8,2020-08-13 12:54:44,2020-08-14 04:02:01,2020-08-15 11:33:47,1,67.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16185,RANCH,5,2013-08-22 07:14:36,2013-08-25 18:06:53,2013-08-22 12:15:38,2,201.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16186,EASTC,7,2013-03-19 20:37:00,2013-04-10 00:57:24,2013-04-14 00:26:44,2,550.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16187,WOLZA,5,2023-07-28 13:54:19,2023-08-21 04:38:35,2023-08-10 05:18:05,1,293.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16188,SEVES,3,2012-10-03 23:02:27,2012-10-15 05:07:16,2012-10-26 14:15:42,3,316.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16189,FOLKO,6,2020-09-23 02:37:44,2020-11-04 13:34:56,2020-09-23 19:03:56,1,85.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16190,RATTC,4,2018-05-08 10:03:43,2018-06-12 23:31:43,2018-05-19 14:40:25,2,252,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16191,LINOD,1,2019-04-02 19:38:03,2019-04-15 14:28:35,2019-04-04 13:14:59,1,376,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16192,OTTIK,3,2015-08-14 08:02:04,2015-08-17 02:58:23,2015-09-04 17:31:46,1,308.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16193,LAMAI,8,2017-10-09 13:12:49,2017-10-11 08:32:46,2017-10-24 15:10:08,3,137.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +16194,CHOPS,5,2021-02-20 01:48:01,2021-03-14 07:31:53,2021-02-23 00:11:41,3,448.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16195,QUICK,6,2021-01-23 07:10:40,2021-02-07 08:02:54,2021-02-07 22:03:47,1,137.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +16196,RANCH,7,2013-10-10 18:29:04,2013-10-26 22:57:52,2013-10-16 05:44:03,2,206.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16197,BONAP,4,2012-08-28 08:02:09,2012-09-27 18:46:51,2012-08-29 15:45:49,2,429.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16198,ALFKI,1,2013-09-29 01:54:02,2013-10-13 19:20:22,2013-10-17 02:28:10,2,272.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16199,LEHMS,7,2023-08-17 05:36:35,2023-09-10 12:41:41,2023-08-23 19:42:20,3,136.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16200,WOLZA,4,2016-01-08 18:54:57,2016-01-10 06:54:21,2016-01-17 16:20:30,2,486,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16201,ROMEY,3,2016-07-10 21:32:56,2016-07-20 11:41:35,2016-07-14 04:09:47,3,440.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16202,LAZYK,4,2018-06-05 19:59:02,2018-06-23 10:48:39,2018-06-10 10:11:00,3,331.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +16203,WILMK,7,2021-10-02 23:17:04,2021-11-03 19:04:28,2021-10-28 12:50:49,1,511.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16204,ALFKI,3,2016-10-16 16:38:24,2016-11-05 11:54:56,2016-11-08 20:46:06,1,306.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +16205,PRINI,8,2017-08-09 04:18:27,2017-08-12 05:53:12,2017-08-11 19:46:02,3,522.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16206,DUMON,2,2014-08-13 11:57:39,2014-10-02 16:18:58,2014-09-01 07:42:42,3,274,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16207,FRANK,1,2023-06-10 12:42:58,2023-06-27 08:26:55,2023-06-19 22:49:44,1,364,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16208,TORTU,9,2020-10-18 22:07:28,2020-11-18 07:08:57,2020-10-24 14:32:40,3,303.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16209,PICCO,4,2023-05-17 07:56:34,2023-06-19 07:01:05,2023-06-01 17:50:28,3,174.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16210,Val2 ,3,2022-09-22 16:40:33,2022-10-07 22:47:35,2022-09-25 01:00:43,1,413.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16211,WELLI,4,2021-10-08 08:09:16,2021-10-21 15:34:01,2021-10-14 12:36:41,2,229.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16212,SANTG,2,2022-05-15 02:11:08,2022-06-03 09:57:46,2022-05-19 00:35:20,2,430.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16213,SUPRD,1,2016-01-31 09:45:37,2016-02-05 08:16:53,2016-02-08 14:51:54,3,205,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16214,LAUGB,8,2017-04-01 18:00:18,2017-04-16 15:02:11,2017-04-03 18:48:27,3,396.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16215,MORGK,2,2013-01-02 06:46:58,2013-02-19 05:04:46,2013-01-07 13:59:11,1,260.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16216,ROMEY,8,2016-09-18 22:18:02,2016-10-25 09:54:49,2016-09-25 11:29:22,3,325.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16217,BOTTM,7,2019-07-14 11:48:06,2019-08-21 23:33:22,2019-07-15 20:30:58,2,374.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16218,CENTC,9,2015-04-20 04:34:09,2015-04-23 15:14:19,2015-04-21 09:39:50,2,47.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16219,LAUGB,2,2019-01-08 09:22:19,2019-01-19 14:38:58,2019-01-09 23:48:52,2,337.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16220,HUNGC,5,2022-10-26 20:11:46,2022-11-26 01:06:22,2022-11-02 19:21:06,2,154.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +16221,BLAUS,7,2016-11-15 02:47:38,2016-11-23 21:15:15,2016-11-16 14:52:35,1,402.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16222,OLDWO,1,2013-11-30 19:19:50,2013-12-05 21:22:28,2013-12-06 20:55:42,1,441,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +16223,RATTC,1,2014-10-29 07:49:42,2014-11-15 06:56:11,2014-10-29 17:38:39,3,224,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16224,PICCO,7,2012-11-23 12:27:30,2012-12-06 18:36:03,2012-11-29 10:26:01,3,237.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16225,MAGAA,4,2018-10-12 11:37:32,2018-10-20 06:30:51,2018-10-17 06:33:32,3,176.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16226,RANCH,3,2015-12-10 04:04:19,2016-01-01 17:38:04,2015-12-22 21:03:37,1,320.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16227,RICAR,5,2014-03-15 07:16:43,2014-03-25 09:53:19,2014-03-15 18:29:43,2,138.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16228,KOENE,2,2014-01-17 15:18:01,2014-01-19 13:27:24,2014-01-29 12:19:10,3,304.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16229,THEBI,6,2020-06-19 13:03:38,2020-08-05 13:38:31,2020-06-20 19:21:41,2,221.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16230,ISLAT,6,2018-07-12 13:17:56,2018-08-16 20:03:02,2018-08-07 00:58:11,3,188.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16231,FRANR,5,2016-08-29 19:11:36,2016-09-07 01:16:38,2016-09-09 20:58:51,3,47.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16232,CONSH,5,2015-12-26 23:23:37,2015-12-29 19:19:43,2015-12-29 04:15:08,1,474.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16233,GREAL,5,2017-03-22 13:43:11,2017-04-18 09:04:23,2017-04-15 04:14:39,2,476,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16234,SPECD,4,2023-03-12 05:40:54,2023-04-14 19:03:31,2023-03-28 22:21:23,1,454.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16235,KOENE,8,2014-07-17 03:19:00,2014-07-30 03:25:12,2014-07-21 20:43:52,2,227,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16236,OLDWO,8,2015-07-18 15:29:06,2015-07-29 15:24:02,2015-07-19 07:43:22,1,374.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16237,ERNSH,3,2013-08-07 14:22:59,2013-08-26 09:04:01,2013-08-15 06:14:18,3,278.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16238,SPECD,3,2023-01-29 03:20:05,2023-02-09 14:20:01,2023-02-02 19:49:57,2,212.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16239,VICTE,1,2022-06-29 01:04:04,2022-07-03 20:11:08,2022-07-05 22:03:56,3,186.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16240,LACOR,4,2013-04-27 14:54:37,2013-05-24 14:12:39,2013-04-29 20:45:26,1,346.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16241,LAUGB,5,2016-03-04 01:20:50,2016-03-17 12:33:22,2016-03-13 13:20:58,2,338,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16242,BONAP,1,2016-04-07 18:10:01,2016-05-11 16:43:30,2016-04-24 02:26:10,2,31,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16243,Val2 ,9,2016-07-24 16:30:18,2016-08-16 18:53:51,2016-08-02 08:54:49,1,97.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16244,THEBI,8,2016-06-02 18:26:45,2016-07-04 09:33:22,2016-06-15 05:10:11,1,145.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16245,SIMOB,3,2019-04-09 12:50:18,2019-04-15 01:11:52,2019-05-02 10:01:23,1,274.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16246,WILMK,1,2020-12-05 06:32:15,2020-12-15 02:56:55,2020-12-07 21:52:28,3,280,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16247,TORTU,8,2020-01-24 06:04:25,2020-02-07 03:00:21,2020-02-03 00:42:39,2,85,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +16248,LILAS,6,2021-08-08 17:06:36,2021-08-26 11:51:00,2021-08-23 03:17:32,1,89.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16249,PICCO,5,2018-11-04 11:58:47,2018-11-18 09:38:54,2018-11-05 09:09:35,1,70,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16250,RANCH,5,2013-02-23 21:02:02,2013-03-15 12:29:25,2013-02-27 04:07:32,3,170,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16251,ALFKI,8,2019-05-04 15:07:08,2019-05-22 21:47:28,2019-05-11 13:43:52,2,222.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16252,LEHMS,8,2018-02-17 08:33:15,2018-02-26 16:46:47,2018-02-25 14:17:23,2,74,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16253,VICTE,3,2017-01-10 01:58:07,2017-01-12 18:56:39,2017-01-20 22:39:58,2,271.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16254,FOLIG,5,2020-03-01 06:02:28,2020-04-09 03:11:52,2020-03-06 03:04:44,1,472.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16255,FURIB,9,2016-09-07 00:36:06,2016-09-12 12:44:48,2016-09-29 20:02:36,3,504.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16256,CENTC,5,2014-06-03 03:00:58,2014-06-17 19:12:33,2014-06-17 10:06:00,2,78.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16257,SPLIR,7,2022-05-23 07:08:31,2022-06-30 01:49:42,2022-05-24 01:27:57,3,307,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16258,ALFKI,6,2016-11-07 00:57:17,2016-11-18 04:02:15,2016-11-13 06:09:17,1,94.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16259,PRINI,9,2015-04-02 07:20:32,2015-05-07 06:37:17,2015-04-11 08:00:09,3,460.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16260,AROUT,2,2020-03-14 05:19:56,2020-03-23 02:17:22,2020-03-21 12:06:06,1,312,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16261,WELLI,6,2019-08-18 08:08:27,2019-08-19 16:23:08,2019-08-19 19:05:20,2,496,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16262,BLAUS,3,2018-03-11 08:21:09,2018-03-13 03:52:45,2018-03-13 11:20:34,1,125.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16263,SANTG,4,2020-08-17 01:02:50,2020-09-03 05:09:52,2020-08-20 13:17:05,3,246.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16264,ROMEY,3,2017-01-15 17:06:20,2017-02-08 00:00:49,2017-02-12 17:59:59,3,457.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16265,NORTS,2,2022-07-22 20:15:30,2022-08-04 10:26:26,2022-07-25 12:52:43,3,159.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16266,RICSU,3,2020-12-30 21:26:39,2021-02-24 07:47:48,2021-01-07 21:58:32,2,437.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16267,LILAS,1,2018-06-07 19:07:51,2018-07-18 16:00:32,2018-06-20 14:45:54,1,484,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16268,SANTG,2,2023-03-09 12:25:38,2023-04-02 04:20:40,2023-03-20 23:13:35,3,232.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16269,BOTTM,2,2016-02-11 18:19:06,2016-02-28 15:52:49,2016-02-18 04:46:51,1,450.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16270,FISSA,1,2013-08-14 07:05:28,2013-08-21 23:38:48,2013-08-14 14:38:52,2,452,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16271,HANAR,6,2014-03-09 08:21:35,2014-03-09 22:25:40,2014-03-22 13:00:53,2,166.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16272,LEHMS,8,2022-05-16 10:46:24,2022-05-29 23:06:06,2022-05-19 18:02:51,2,192.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16273,WILMK,1,2021-01-29 02:56:18,2021-03-14 05:50:21,2021-02-19 22:36:38,1,272.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16274,LEHMS,8,2015-08-18 18:47:02,2015-09-03 17:34:11,2015-08-25 06:27:41,1,267,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16275,VAFFE,7,2014-05-26 23:26:06,2014-06-13 15:25:28,2014-05-30 21:33:09,1,417,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16276,BONAP,5,2012-11-03 10:25:42,2012-11-26 00:09:47,2012-11-26 19:54:04,3,449.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16277,SEVES,3,2013-03-01 11:10:10,2013-03-17 23:31:26,2013-03-30 03:13:01,3,324.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16278,WOLZA,1,2016-01-01 16:55:40,2016-01-14 15:58:05,2016-01-02 14:06:00,3,454.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16279,WANDK,3,2016-07-08 16:57:06,2016-07-12 16:59:58,2016-07-09 16:56:02,1,347.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16280,WARTH,8,2020-07-03 04:46:58,2020-07-11 18:20:42,2020-07-08 09:43:41,2,285,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16281,BOLID,4,2014-03-31 16:58:36,2014-04-01 03:30:33,2014-04-05 16:02:32,1,221.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16282,FRANR,9,2020-09-10 12:36:35,2020-09-12 05:43:18,2020-09-11 00:12:21,3,175.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16283,BONAP,2,2014-03-13 03:14:08,2014-03-30 11:57:20,2014-03-24 20:26:08,1,351.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16284,PRINI,1,2020-11-01 08:44:53,2020-11-11 03:56:13,2020-11-01 09:41:55,2,375.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16285,PARIS,8,2019-09-12 16:04:50,2019-09-12 16:15:50,2019-09-17 18:22:53,2,414.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16286,SEVES,8,2022-11-01 13:54:17,2022-11-01 20:11:18,2022-11-01 21:26:36,3,75.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16287,HUNGO,9,2013-05-14 10:36:54,2013-06-15 07:17:13,2013-06-02 06:01:45,2,187,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16288,MAISD,4,2014-06-02 20:33:33,2014-07-17 21:41:18,2014-06-03 03:48:00,1,401,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16289,CHOPS,9,2020-08-16 03:57:48,2020-08-16 15:36:28,2020-08-29 08:22:50,3,127.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16290,ROMEY,2,2016-05-08 03:36:26,2016-05-18 01:44:47,2016-05-09 20:26:04,1,153.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16291,THECR,1,2020-08-31 07:56:04,2020-09-03 15:36:06,2020-09-11 19:57:19,1,354,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16292,PRINI,2,2022-09-12 07:35:31,2022-09-17 19:37:44,2022-09-15 03:19:32,2,14.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16293,SIMOB,8,2017-01-22 03:53:39,2017-01-31 12:23:18,2017-02-06 17:19:12,1,541.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16294,LILAS,9,2012-12-01 06:35:37,2012-12-09 20:13:08,2012-12-08 22:58:43,3,24,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16295,ANATR,6,2020-01-13 13:25:18,2020-01-23 17:05:02,2020-01-15 03:05:00,2,178,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16296,TORTU,3,2017-02-17 11:05:36,2017-03-09 14:53:19,2017-02-18 05:33:27,2,284,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16297,FAMIA,5,2023-09-11 14:14:37,2023-09-27 11:52:00,2023-09-19 14:35:26,1,15.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +16298,DUMON,4,2014-11-16 06:44:13,2014-11-24 21:07:00,2014-11-25 13:02:56,1,18.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16299,HUNGO,3,2014-08-09 16:53:47,2014-08-24 02:37:37,2014-08-10 13:57:07,3,457.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16300,SUPRD,5,2019-03-20 19:43:34,2019-04-07 06:33:22,2019-03-27 12:29:05,1,30.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16301,OTTIK,7,2020-09-26 08:13:12,2020-09-28 02:30:15,2020-10-11 13:25:05,3,287.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16302,HILAA,7,2012-08-08 09:13:31,2012-08-30 07:41:45,2012-08-16 05:26:56,3,476.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16303,PERIC,3,2017-11-13 20:42:46,2017-12-21 04:33:07,2017-11-20 05:39:29,1,411.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16304,VAFFE,5,2020-12-26 12:22:19,2021-01-25 14:09:48,2021-01-09 04:04:58,3,462.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16305,LETSS,3,2015-01-18 12:54:24,2015-01-31 06:21:51,2015-02-06 14:24:57,3,430,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16306,WANDK,5,2019-02-11 09:14:52,2019-03-27 12:11:45,2019-02-14 18:35:12,1,378,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +16307,HILAA,5,2013-09-03 12:18:03,2013-09-04 01:46:42,2013-09-07 02:38:06,3,80.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16308,VINET,8,2017-05-28 04:33:55,2017-06-13 13:24:32,2017-06-05 02:58:05,2,77.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16309,FRANK,5,2022-02-17 09:36:22,2022-02-27 03:21:46,2022-02-25 23:45:50,2,232.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +16310,LINOD,1,2019-07-11 23:50:08,2019-07-28 22:40:07,2019-07-29 11:52:26,1,170.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16311,RATTC,5,2014-02-07 07:35:47,2014-02-19 22:59:36,2014-02-11 11:34:04,1,469,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16312,NORTS,7,2020-09-04 04:04:42,2020-09-22 04:10:57,2020-09-28 08:56:01,2,240,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16313,GODOS,6,2019-04-05 02:16:10,2019-05-23 11:08:28,2019-04-05 21:37:04,1,74,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16314,MAISD,4,2012-08-25 10:56:30,2012-09-05 18:54:47,2012-08-30 08:05:10,1,19.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16315,FOLIG,5,2021-08-10 01:48:28,2021-08-26 14:18:59,2021-08-11 16:36:22,3,112.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16316,VICTE,4,2022-04-11 22:00:15,2022-04-14 07:43:52,2022-04-17 07:47:35,3,495.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16317,FRANK,8,2018-08-06 15:32:32,2018-08-16 09:20:16,2018-08-20 00:14:01,2,128.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16318,ANATR,4,2020-05-13 01:06:20,2020-05-26 10:02:53,2020-05-18 17:24:32,3,234.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16319,GALED,7,2020-09-14 13:59:08,2020-09-16 11:47:18,2020-09-24 06:05:24,2,321.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16320,SIMOB,9,2020-08-05 09:34:41,2020-09-01 02:23:08,2020-08-08 06:18:15,3,98.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16321,VICTE,1,2013-02-11 09:32:00,2013-03-14 19:26:48,2013-02-16 15:08:21,3,191,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16322,CENTC,3,2017-05-19 20:21:31,2017-06-01 09:07:18,2017-05-25 06:17:55,2,446,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16323,THECR,2,2020-11-14 22:37:35,2020-11-19 08:22:15,2020-12-03 13:42:15,3,115,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16324,SIMOB,1,2017-03-31 11:47:04,2017-04-23 16:21:00,2017-04-02 05:12:22,2,87,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16325,RATTC,9,2012-11-20 16:59:31,2012-11-23 13:12:04,2012-12-04 05:18:29,3,161.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16326,LAMAI,8,2021-01-22 19:50:49,2021-03-01 06:10:41,2021-02-02 16:47:26,3,248.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16327,WILMK,7,2021-05-30 05:29:22,2021-07-13 08:28:56,2021-06-26 15:00:38,1,103.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16328,QUEEN,7,2015-05-28 06:12:01,2015-05-31 00:43:06,2015-05-30 17:25:49,3,418.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16329,LACOR,9,2014-03-27 01:50:02,2014-04-22 02:56:40,2014-03-31 13:22:24,3,379.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16330,THECR,4,2022-11-25 23:12:09,2022-12-09 07:10:32,2022-12-08 06:11:38,2,453.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16331,CONSH,5,2016-07-20 06:16:07,2016-08-18 01:51:20,2016-07-21 03:07:37,3,374,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16332,WARTH,9,2020-04-06 17:43:42,2020-05-17 11:21:50,2020-04-15 07:10:46,1,112.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16333,OTTIK,4,2020-06-18 19:46:41,2020-07-18 06:07:46,2020-06-28 15:37:13,2,332,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16334,LONEP,5,2016-01-13 21:48:42,2016-01-20 04:49:50,2016-01-23 00:54:03,3,63.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16335,BOLID,1,2018-11-16 13:44:41,2018-11-30 07:47:43,2018-11-24 19:16:30,3,394.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16336,CONSH,5,2022-02-07 00:30:06,2022-03-02 10:52:40,2022-02-08 20:43:12,2,468,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16337,ERNSH,2,2018-01-12 10:08:33,2018-01-28 17:13:53,2018-01-13 14:32:34,2,108,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16338,BONAP,8,2022-04-09 06:56:59,2022-05-11 13:11:09,2022-04-25 11:24:28,1,242.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16339,BOLID,9,2015-01-27 15:56:48,2015-03-28 01:05:22,2015-01-30 09:41:51,3,42.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16340,BOLID,5,2016-08-25 02:57:51,2016-08-30 05:14:11,2016-08-29 05:03:15,3,395.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16341,QUEEN,6,2013-11-01 19:33:00,2013-12-19 20:05:43,2013-11-02 13:26:29,1,171.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16342,LACOR,7,2014-02-25 07:43:16,2014-03-30 20:02:31,2014-03-07 19:25:28,2,397.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16343,TRADH,7,2022-03-28 08:16:50,2022-05-06 04:21:43,2022-04-05 13:23:59,3,332,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16344,PERIC,8,2018-05-18 05:05:02,2018-06-07 01:07:48,2018-05-18 12:56:57,1,126.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16345,SUPRD,5,2013-03-15 09:10:23,2013-04-11 04:25:38,2013-03-18 03:41:44,2,86,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16346,HUNGC,9,2016-06-22 14:45:43,2016-08-12 03:35:28,2016-06-23 04:40:01,1,417.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16347,WELLI,7,2015-01-09 14:39:40,2015-01-17 05:28:09,2015-01-30 09:50:23,3,250.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16348,EASTC,1,2014-04-16 04:56:04,2014-04-27 16:04:55,2014-04-23 07:33:47,1,244.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16349,OTTIK,8,2019-10-21 00:12:50,2019-11-08 05:36:54,2019-10-26 09:19:37,2,454.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +16350,EASTC,4,2013-10-05 18:10:20,2013-11-05 06:37:57,2013-10-07 02:05:48,3,259.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16351,OTTIK,9,2021-03-31 17:46:11,2021-04-26 10:18:00,2021-04-12 00:40:43,1,541.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16352,Val2 ,8,2020-10-19 04:31:25,2020-11-15 05:39:09,2020-10-26 09:40:15,1,301.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16353,THECR,9,2013-12-24 19:05:39,2014-01-07 21:30:54,2014-01-05 14:00:54,1,286.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16354,ERNSH,8,2023-09-25 07:37:43,2023-10-26 22:39:57,2023-09-26 16:12:03,2,496,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16355,GOURL,5,2012-11-19 07:12:30,2012-12-02 14:13:10,2012-11-28 02:47:17,3,24.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16356,LAMAI,4,2022-02-07 07:57:08,2022-02-14 09:54:21,2022-02-09 23:55:38,2,279,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16357,QUICK,8,2020-07-15 05:07:10,2020-07-17 22:10:15,2020-08-01 07:21:02,3,198,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16358,OLDWO,5,2017-11-28 06:38:09,2017-11-30 06:06:55,2017-12-01 21:49:16,3,341.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16359,VINET,1,2023-05-05 12:35:22,2023-06-03 06:33:41,2023-05-13 16:11:14,2,288.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16360,OTTIK,1,2021-09-02 23:16:58,2021-09-06 19:39:09,2021-09-04 11:44:32,3,435.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16361,TOMSP,9,2013-04-06 15:10:08,2013-04-09 21:55:53,2013-04-06 16:55:52,3,313,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16362,BLONP,3,2018-08-03 21:43:45,2018-08-13 01:21:12,2018-08-06 11:54:39,2,195.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16363,TRADH,3,2019-07-18 14:48:02,2019-08-02 12:56:53,2019-07-27 19:51:07,2,457.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16364,OLDWO,5,2021-09-18 00:30:18,2021-10-20 00:21:58,2021-09-22 15:44:56,3,437.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16365,SUPRD,5,2023-01-29 17:30:27,2023-02-19 11:41:09,2023-01-30 12:09:40,2,317.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16366,RICAR,1,2020-01-22 00:16:33,2020-02-13 16:22:50,2020-01-28 00:25:55,1,101.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16367,WILMK,4,2020-06-12 02:16:26,2020-07-13 18:26:18,2020-06-18 15:10:59,2,149.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16368,TORTU,4,2019-08-22 14:54:54,2019-08-31 20:50:07,2019-08-25 02:46:17,1,479.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16369,GREAL,8,2018-09-30 19:41:12,2018-10-19 11:05:41,2018-10-03 01:24:52,2,464.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16370,ALFKI,5,2013-03-25 22:48:40,2013-05-01 03:19:30,2013-03-28 04:24:41,1,63,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16371,NORTS,2,2013-04-28 11:57:21,2013-05-24 13:44:07,2013-05-19 22:56:35,1,237,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16372,PERIC,4,2020-08-19 13:58:47,2020-08-28 06:19:33,2020-08-26 05:28:56,1,80.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16373,CONSH,7,2017-05-19 01:30:51,2017-05-28 02:38:53,2017-05-21 15:40:14,2,470.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16374,NORTS,2,2012-08-18 21:41:33,2012-08-31 01:46:57,2012-08-28 12:51:42,3,438.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16375,LAZYK,8,2013-07-28 18:53:21,2013-08-10 11:04:24,2013-07-31 14:30:43,2,450,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16376,WANDK,8,2018-11-11 19:07:09,2018-12-07 08:29:57,2018-11-11 21:38:05,3,421.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16377,FAMIA,5,2018-03-13 06:17:44,2018-03-21 12:08:26,2018-03-15 02:03:40,1,295,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16378,PERIC,4,2020-03-16 20:23:28,2020-05-05 11:19:55,2020-03-18 22:58:13,3,95.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16379,TORTU,9,2014-03-11 03:57:29,2014-03-31 14:56:51,2014-03-11 13:22:47,1,279.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16380,BLONP,5,2013-07-20 20:22:50,2013-08-19 06:50:13,2013-07-27 08:47:34,3,433.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16381,MAISD,9,2019-02-23 02:23:44,2019-03-04 21:21:19,2019-02-24 01:58:15,1,267.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16382,LAUGB,2,2013-02-20 14:42:55,2013-03-13 16:18:00,2013-02-22 06:31:04,2,430,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16383,EASTC,2,2020-05-08 18:22:08,2020-05-10 12:40:45,2020-05-13 14:24:25,1,266.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16384,GROSR,4,2013-03-11 18:42:49,2013-04-01 16:35:56,2013-03-12 01:22:50,2,73.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16385,GODOS,9,2017-01-31 21:01:56,2017-02-21 13:09:04,2017-02-17 05:42:18,2,260.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16386,ANATR,8,2023-02-03 09:17:46,2023-02-27 05:50:08,2023-02-18 15:48:07,2,142.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16387,FISSA,3,2023-05-01 00:13:32,2023-05-12 03:41:41,2023-05-05 04:38:01,2,347.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16388,LAZYK,1,2016-10-11 14:51:05,2016-11-17 20:02:24,2016-11-01 11:41:06,3,378,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16389,CHOPS,6,2022-03-04 04:03:18,2022-03-17 09:03:29,2022-03-17 21:51:23,1,453.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16390,CACTU,4,2018-02-16 09:58:04,2018-02-24 02:34:51,2018-03-04 22:59:16,2,404.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16391,LONEP,7,2021-09-24 22:49:03,2021-10-31 02:01:31,2021-09-26 22:52:47,1,50.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16392,LETSS,6,2014-09-25 09:25:58,2014-10-13 06:23:52,2014-10-08 12:28:41,1,211.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16393,TOMSP,3,2014-12-13 03:39:17,2015-01-12 05:07:23,2014-12-17 23:43:33,2,358.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16394,MEREP,5,2014-10-11 02:24:53,2014-11-18 05:43:20,2014-10-14 07:37:13,2,139.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16395,TRADH,5,2022-12-23 16:34:54,2022-12-27 10:30:47,2023-01-02 13:00:10,2,468.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16396,RANCH,6,2022-11-28 21:32:06,2022-12-01 03:11:43,2022-12-02 08:35:29,3,331.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16397,RANCH,4,2013-11-23 21:06:05,2013-12-09 19:49:29,2013-12-02 22:49:17,2,440.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16398,FISSA,9,2016-01-31 09:33:32,2016-02-21 11:23:09,2016-02-27 02:44:50,2,276.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16399,PICCO,6,2018-04-14 03:03:28,2018-04-26 01:18:50,2018-04-20 16:41:40,2,115.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16400,QUICK,3,2021-12-29 04:24:48,2022-01-10 02:25:38,2022-01-02 09:31:53,2,31.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16401,HUNGO,6,2017-05-29 16:00:36,2017-06-29 05:45:40,2017-06-09 14:31:04,2,227.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16402,HUNGO,4,2015-08-03 02:19:22,2015-09-18 05:36:18,2015-08-03 09:54:20,2,448.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16403,SPLIR,8,2020-06-13 15:31:51,2020-07-27 07:20:20,2020-06-15 04:33:11,1,375.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16404,LONEP,1,2013-12-08 20:48:14,2014-01-04 09:37:41,2013-12-10 04:01:48,1,395,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16405,TOMSP,5,2012-12-28 12:25:48,2013-01-06 06:24:02,2012-12-28 17:05:49,3,317.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16406,NORTS,5,2016-03-06 10:44:57,2016-03-20 13:34:37,2016-03-06 18:09:59,2,196.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16407,FRANK,7,2023-06-17 18:46:09,2023-07-01 22:27:23,2023-07-07 21:28:36,3,475.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16408,VAFFE,1,2020-05-01 09:57:32,2020-05-07 18:54:06,2020-05-07 10:40:45,3,363,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16409,OLDWO,3,2017-05-25 09:58:36,2017-06-13 11:49:01,2017-06-02 20:47:34,2,133.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16410,LONEP,9,2018-12-02 02:41:13,2018-12-12 08:20:01,2018-12-24 11:24:23,1,399,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16411,FRANK,9,2017-07-24 19:45:01,2017-07-28 06:21:40,2017-08-04 22:34:40,3,22.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16412,LAMAI,1,2015-02-08 06:38:57,2015-02-27 04:12:26,2015-02-22 02:20:36,1,345.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16413,VALON,6,2022-11-04 04:42:43,2022-11-07 13:10:07,2022-11-11 10:30:50,3,63,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16414,AROUT,1,2017-01-16 00:34:23,2017-01-27 21:56:17,2017-01-17 17:17:27,3,457.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16415,FRANS,6,2014-02-17 21:03:15,2014-04-15 18:37:13,2014-02-20 00:29:24,3,151,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16416,GROSR,6,2017-02-26 18:54:21,2017-04-14 04:24:36,2017-02-27 08:46:00,1,296,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16417,FURIB,8,2018-10-29 00:51:11,2018-11-21 18:26:59,2018-11-10 01:19:28,3,101,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16418,ISLAT,4,2016-08-29 09:36:14,2016-09-11 21:02:44,2016-09-02 17:32:55,1,164.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +16419,BOLID,7,2019-01-28 06:58:51,2019-02-08 18:30:02,2019-02-09 10:01:18,3,85.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16420,TORTU,2,2019-03-18 13:04:14,2019-05-01 19:47:48,2019-03-20 08:25:37,2,261.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16421,ISLAT,8,2020-02-08 20:24:51,2020-02-13 19:06:23,2020-02-15 19:00:33,2,368.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16422,HUNGC,4,2016-11-08 21:58:34,2016-12-05 00:16:18,2016-11-11 10:42:25,2,18.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16423,RICSU,3,2019-07-23 13:08:43,2019-07-30 13:23:01,2019-07-26 01:53:40,1,334.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16424,RICSU,3,2023-04-17 20:39:30,2023-04-29 17:09:59,2023-05-01 04:14:31,3,374.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16425,FOLKO,8,2016-09-08 13:49:19,2016-10-01 10:04:55,2016-09-15 11:27:24,1,188.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16426,WHITC,3,2018-03-24 13:17:09,2018-03-29 08:01:11,2018-03-26 06:06:57,3,112.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16427,WHITC,5,2013-03-15 04:00:50,2013-03-22 19:51:15,2013-03-17 19:39:42,2,360,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16428,ISLAT,6,2022-04-28 17:33:38,2022-05-07 14:23:41,2022-05-05 04:11:44,3,120.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16429,CENTC,9,2018-07-14 19:46:22,2018-07-18 20:49:29,2018-07-29 18:54:18,1,99,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16430,TRADH,6,2012-12-10 07:31:58,2012-12-18 23:16:52,2012-12-10 17:40:04,3,405.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16431,COMMI,2,2020-01-10 16:21:04,2020-01-21 19:15:50,2020-01-18 16:22:49,1,305.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16432,MEREP,1,2021-05-05 00:58:42,2021-05-15 04:59:23,2021-05-05 15:29:45,1,241.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16433,ANATR,6,2021-12-19 03:19:14,2022-01-02 10:40:32,2021-12-30 06:16:59,1,520.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16434,OCEAN,8,2018-05-13 18:30:56,2018-06-19 17:20:43,2018-05-19 00:47:18,2,341.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16435,VALON,9,2019-01-06 15:08:19,2019-01-16 11:14:27,2019-01-25 18:39:41,3,414.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +16436,AROUT,4,2015-06-11 20:32:41,2015-06-25 07:12:27,2015-06-15 15:19:30,3,129,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16437,WHITC,2,2017-08-23 08:43:37,2017-09-13 14:15:49,2017-09-07 20:54:35,3,472.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16438,WOLZA,4,2018-06-05 06:20:57,2018-06-25 15:00:27,2018-06-08 03:52:34,2,373,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16439,LILAS,9,2021-03-18 13:09:21,2021-04-02 21:36:38,2021-03-23 10:29:29,3,17,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16440,SANTG,8,2018-08-05 08:55:47,2018-08-22 00:22:15,2018-08-05 18:23:07,1,299,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16441,ALFKI,7,2017-01-26 13:51:23,2017-01-29 07:38:32,2017-02-03 11:13:41,3,190,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16442,GROSR,3,2014-12-13 08:22:46,2015-01-01 18:47:38,2014-12-13 20:56:52,1,305.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16443,HILAA,1,2021-09-05 05:54:24,2021-09-08 16:52:23,2021-09-05 11:03:56,3,414.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16444,SPECD,6,2020-08-11 23:24:32,2020-08-27 04:13:45,2020-08-17 06:27:51,3,399,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16445,KOENE,2,2019-09-26 07:27:49,2019-10-08 04:58:07,2019-09-27 09:52:39,1,163,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16446,SANTG,9,2021-05-08 00:51:45,2021-05-12 05:59:20,2021-05-16 13:32:24,2,449.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16447,MORGK,4,2020-12-12 00:21:18,2020-12-28 09:35:24,2020-12-15 18:24:27,1,342.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16448,NORTS,4,2021-01-17 12:30:02,2021-01-30 04:38:52,2021-01-28 19:52:47,3,335.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16449,BOTTM,5,2018-08-01 13:27:11,2018-09-19 09:05:40,2018-08-02 19:33:06,3,200,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16450,FOLIG,6,2013-10-15 04:58:48,2013-10-25 11:35:28,2013-10-19 18:39:51,2,359.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16451,MAGAA,5,2013-01-09 15:04:27,2013-01-27 23:34:45,2013-01-09 18:39:05,1,69.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16452,FURIB,6,2017-01-29 23:23:25,2017-02-07 14:34:54,2017-01-30 21:40:24,1,269,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16453,RICSU,1,2015-07-29 08:45:46,2015-08-03 00:52:53,2015-08-02 20:12:58,3,382.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16454,FURIB,4,2022-04-24 14:58:55,2022-05-10 18:16:27,2022-04-24 18:05:56,1,129.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16455,LAMAI,5,2012-12-01 16:39:34,2012-12-25 16:53:11,2012-12-19 22:02:50,3,216.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16456,RICAR,4,2012-08-13 09:54:10,2012-08-25 14:38:26,2012-08-14 02:05:08,3,331.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16457,ERNSH,2,2020-11-12 08:57:32,2020-12-25 17:59:24,2020-11-21 00:23:31,1,335.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16458,FAMIA,1,2023-03-05 17:33:04,2023-03-06 00:39:32,2023-03-20 08:28:25,1,75.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16459,OCEAN,5,2014-08-28 20:14:24,2014-10-10 06:16:00,2014-09-08 06:31:32,1,342.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16460,GODOS,7,2016-12-23 00:35:29,2017-01-06 09:10:07,2017-01-01 16:23:28,3,20.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16461,CENTC,1,2013-10-24 09:31:56,2013-11-14 00:55:12,2013-10-28 04:03:06,2,149.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16462,SPECD,9,2023-09-24 06:42:15,2023-09-30 19:32:25,2023-10-12 05:07:16,3,136.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16463,ROMEY,8,2013-01-07 04:24:16,2013-02-19 19:27:21,2013-01-10 03:15:07,1,33,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16464,THECR,3,2020-07-22 16:36:37,2020-08-15 00:58:39,2020-07-25 15:30:53,3,200.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16465,FRANS,2,2014-02-14 04:29:04,2014-04-07 05:00:57,2014-02-23 14:18:54,3,247,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16466,GALED,1,2020-09-23 01:53:10,2020-11-08 19:22:45,2020-10-02 17:41:43,3,61.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16467,MORGK,6,2020-10-28 17:42:38,2020-11-26 10:01:36,2020-11-05 14:27:42,3,414.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16468,THECR,6,2020-12-06 06:16:12,2020-12-10 23:26:04,2020-12-26 22:15:14,1,507.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16469,GOURL,3,2016-12-04 18:20:02,2016-12-27 15:54:59,2016-12-18 17:18:33,3,32.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16470,RICAR,9,2022-04-06 03:34:01,2022-04-18 15:53:38,2022-04-06 16:49:05,1,376.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16471,VINET,9,2018-05-19 14:56:51,2018-05-22 10:15:07,2018-05-28 23:23:03,2,389,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16472,TRAIH,3,2018-01-28 14:11:25,2018-02-06 08:37:32,2018-02-01 12:58:29,2,228.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16473,LAMAI,5,2022-03-28 09:08:52,2022-03-31 04:47:48,2022-03-31 01:34:16,2,205.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16474,SANTG,3,2019-09-10 16:41:24,2019-10-22 22:43:16,2019-09-25 07:41:14,2,407.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16475,FAMIA,2,2014-09-22 04:39:42,2014-09-25 12:10:33,2014-09-29 23:43:26,1,399,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16476,THECR,9,2018-04-02 17:33:23,2018-05-13 19:22:13,2018-04-10 17:09:48,3,361.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16477,NORTS,8,2017-11-12 06:09:52,2017-11-15 02:58:44,2017-11-17 11:24:37,3,47,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16478,BOTTM,9,2014-04-01 10:38:03,2014-05-16 09:48:14,2014-04-03 12:17:09,1,461,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16479,SUPRD,5,2015-02-02 20:44:59,2015-02-13 06:23:24,2015-02-05 07:22:34,3,297.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16480,COMMI,4,2020-12-14 07:28:35,2020-12-25 02:28:23,2020-12-17 06:06:43,2,29.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16481,ERNSH,2,2023-05-27 13:15:57,2023-06-30 12:36:16,2023-05-30 19:42:24,1,397.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16482,ISLAT,1,2015-09-17 20:38:22,2015-10-25 16:40:33,2015-09-23 22:25:35,2,158.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16483,MAGAA,4,2023-03-25 06:16:42,2023-05-02 12:32:30,2023-03-28 15:05:17,1,509.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16484,FRANR,5,2013-10-09 03:58:21,2013-10-28 20:06:37,2013-10-14 12:53:48,2,383,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16485,MAISD,1,2013-12-26 09:35:12,2014-01-05 21:02:17,2014-01-11 20:35:14,2,277,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +16486,MEREP,9,2018-07-28 13:57:26,2018-08-27 21:21:35,2018-08-09 07:57:13,3,293.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16487,ANTON,4,2022-10-07 22:39:05,2022-10-10 15:10:56,2022-10-18 04:38:53,1,161,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16488,CONSH,5,2019-04-14 21:50:22,2019-05-08 01:06:00,2019-04-15 05:13:32,1,80.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16489,BLAUS,1,2013-05-24 02:18:27,2013-07-02 21:47:02,2013-05-25 14:15:08,1,192.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16490,FISSA,5,2017-08-15 00:19:40,2017-08-25 03:50:46,2017-08-26 12:23:45,3,326.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16491,GALED,5,2020-04-18 05:06:43,2020-05-31 00:27:17,2020-04-25 17:02:59,1,498.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16492,DRACD,2,2012-10-27 10:34:35,2012-11-03 02:48:03,2012-11-07 17:53:57,1,175.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16493,WELLI,8,2017-05-20 17:46:08,2017-07-05 16:26:47,2017-05-26 16:42:08,1,403.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16494,MAISD,6,2018-07-26 12:23:17,2018-08-02 23:10:45,2018-07-31 23:48:38,1,155.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +16495,TRADH,7,2019-09-19 18:50:57,2019-10-16 15:58:21,2019-09-21 02:22:03,2,452.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16496,SPECD,6,2012-08-07 16:40:16,2012-09-03 08:24:19,2012-08-22 22:06:23,2,42.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16497,BSBEV,7,2019-11-26 12:37:25,2019-11-29 20:16:56,2019-12-10 02:21:10,3,413,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16498,LINOD,2,2014-05-30 18:49:20,2014-07-03 15:26:14,2014-06-12 20:08:42,3,144.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16499,LACOR,6,2022-09-13 07:28:41,2022-10-13 01:20:28,2022-09-19 18:21:20,3,418,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16500,THECR,3,2021-02-09 12:31:26,2021-02-14 05:14:38,2021-02-14 08:05:34,3,227.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16501,LEHMS,7,2021-09-06 13:45:54,2021-09-22 16:29:49,2021-09-19 19:25:20,1,437.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16502,RANCH,1,2019-07-23 10:25:14,2019-07-30 11:02:19,2019-07-24 21:50:54,1,42.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16503,QUEEN,6,2019-04-10 08:52:02,2019-05-01 11:40:27,2019-04-29 07:06:08,2,238.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16504,OLDWO,4,2013-02-19 10:52:34,2013-03-06 08:19:41,2013-03-07 19:31:27,2,221.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16505,ERNSH,6,2014-12-13 17:23:18,2015-01-07 13:13:27,2014-12-15 14:36:59,1,485.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16506,TOMSP,3,2023-08-11 03:41:14,2023-08-23 10:38:00,2023-08-11 11:20:44,2,239.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16507,EASTC,5,2012-08-28 13:35:05,2012-09-26 04:54:42,2012-09-09 01:49:25,3,319.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16508,VINET,2,2022-04-28 10:00:39,2022-05-05 08:42:25,2022-05-11 21:58:09,3,291.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16509,PARIS,8,2017-07-23 21:44:50,2017-07-28 17:55:45,2017-08-12 09:17:40,3,110.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16510,FOLIG,9,2016-01-18 23:58:47,2016-03-09 13:06:48,2016-01-23 16:25:59,2,340.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16511,THEBI,5,2012-10-17 16:58:30,2012-10-25 13:47:46,2012-10-20 14:48:17,3,380.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16512,OTTIK,8,2012-07-28 08:51:48,2012-08-02 22:22:33,2012-08-06 10:38:27,1,76.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16513,LAZYK,7,2021-06-22 01:34:31,2021-06-24 10:28:46,2021-06-26 03:19:17,3,447.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16514,CACTU,5,2014-03-28 14:21:19,2014-04-20 05:47:51,2014-03-30 21:40:44,2,98.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16515,RICSU,2,2016-08-05 08:26:34,2016-08-29 09:19:12,2016-08-14 03:48:59,3,209,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16516,GODOS,4,2017-05-27 01:01:05,2017-06-13 22:05:41,2017-06-12 12:54:22,2,427,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16517,TORTU,8,2020-09-30 23:28:26,2020-10-12 13:31:43,2020-10-18 05:43:37,3,241.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16518,CHOPS,7,2016-12-05 23:40:45,2016-12-09 16:30:35,2016-12-25 07:19:05,1,471.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16519,FOLIG,5,2017-12-07 12:41:11,2018-01-11 10:34:51,2017-12-09 23:53:45,1,385.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16520,OLDWO,3,2015-12-18 04:31:01,2015-12-26 12:39:46,2015-12-26 15:45:15,3,251.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16521,LEHMS,4,2023-05-02 11:22:56,2023-05-08 13:42:41,2023-05-07 10:37:36,2,480.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16522,SIMOB,1,2015-11-22 04:51:51,2015-12-01 20:09:16,2015-11-30 10:56:16,2,26.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16523,OCEAN,5,2020-07-05 10:41:15,2020-07-15 07:50:21,2020-07-22 05:56:32,1,355.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16524,COMMI,1,2019-01-16 03:41:23,2019-01-21 19:36:55,2019-02-05 00:09:17,1,215.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +16525,THECR,5,2017-11-13 18:18:27,2017-12-03 11:53:07,2017-11-21 01:56:23,2,96.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16526,BOLID,5,2021-02-11 10:04:26,2021-03-26 08:18:20,2021-02-17 15:23:05,1,174.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16527,GROSR,7,2014-06-10 12:36:14,2014-06-27 12:02:26,2014-06-15 18:51:27,2,156.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16528,GREAL,9,2019-11-27 04:47:45,2019-12-11 09:39:03,2019-11-27 21:10:00,3,178,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16529,SIMOB,6,2016-07-15 23:45:05,2016-07-25 20:25:11,2016-07-16 00:16:41,2,459.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +16530,LAMAI,5,2017-09-14 02:39:06,2017-09-20 08:52:48,2017-09-26 11:31:51,3,35,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16531,THEBI,8,2022-11-12 06:52:47,2022-11-18 06:38:21,2022-12-05 08:25:13,3,53.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16532,WELLI,6,2019-12-16 01:35:43,2020-01-03 22:53:49,2019-12-29 06:04:10,1,215,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16533,WARTH,1,2014-07-12 06:37:35,2014-07-21 23:29:20,2014-07-19 18:55:59,1,492.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16534,BLONP,2,2023-09-04 19:01:39,2023-09-18 11:18:32,2023-09-26 21:39:27,1,130.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +16535,VALON,7,2015-06-04 04:10:53,2015-06-26 02:44:42,2015-06-15 15:48:58,1,299,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16536,SPLIR,5,2013-09-25 22:04:04,2013-10-11 21:53:11,2013-09-29 05:06:18,2,453.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16537,ALFKI,8,2019-04-28 13:24:17,2019-05-15 21:00:42,2019-05-09 01:51:26,2,252.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16538,CHOPS,2,2012-09-18 11:18:08,2012-10-12 23:41:50,2012-09-29 05:20:05,3,244.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16539,LAUGB,2,2014-03-19 10:24:45,2014-04-02 16:20:07,2014-03-27 11:16:10,2,361,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16540,BSBEV,8,2017-12-15 00:47:48,2018-01-30 07:55:57,2017-12-16 12:01:12,2,295.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16541,FOLKO,2,2021-12-23 20:03:06,2021-12-23 22:36:17,2021-12-24 16:01:00,2,133.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16542,WOLZA,3,2013-09-12 21:24:37,2013-10-19 03:12:56,2013-09-13 12:20:00,1,35,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16543,BERGS,5,2019-06-08 01:33:42,2019-06-18 12:22:53,2019-06-15 22:09:39,1,220.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16544,WARTH,3,2022-04-20 20:28:50,2022-05-12 02:53:24,2022-04-21 08:10:51,1,401.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16545,DRACD,7,2019-04-11 21:52:06,2019-04-21 20:07:48,2019-04-13 13:23:12,2,466,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16546,PICCO,2,2020-06-10 05:45:55,2020-06-16 20:02:51,2020-06-15 17:09:59,3,333,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16547,HUNGO,2,2023-02-09 09:10:04,2023-03-08 16:01:20,2023-03-08 22:33:37,2,354.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16548,ALFKI,6,2016-12-28 16:23:31,2017-01-09 13:02:31,2017-01-08 05:52:33,2,175.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16549,KOENE,8,2019-02-28 23:52:52,2019-03-09 14:09:47,2019-03-05 21:17:03,3,336.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16550,TRAIH,9,2013-05-17 15:52:55,2013-05-19 17:32:24,2013-05-19 17:32:22,3,310.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16551,QUICK,6,2012-07-13 01:14:03,2012-07-26 07:12:42,2012-07-20 08:56:05,2,136,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16552,FRANK,5,2013-05-31 15:36:40,2013-06-11 04:59:04,2013-06-09 11:28:59,3,508.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16553,WOLZA,7,2017-11-28 05:08:09,2017-12-16 19:49:06,2017-12-08 17:29:52,1,49,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16554,ISLAT,6,2023-01-12 11:44:05,2023-01-30 00:21:25,2023-01-15 04:41:35,3,206.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16555,SPLIR,1,2020-12-15 22:47:42,2021-01-01 12:03:00,2021-01-10 19:54:47,1,247.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16556,WHITC,4,2022-10-21 12:22:07,2022-11-17 05:28:04,2022-11-04 08:39:26,3,172,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16557,RATTC,2,2022-12-30 14:36:40,2023-01-16 16:27:33,2023-01-03 16:10:40,2,432.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16558,AROUT,3,2022-11-27 19:51:02,2022-12-07 08:55:08,2022-11-28 09:28:00,3,78.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16559,LAUGB,4,2018-04-29 21:05:43,2018-05-10 04:48:06,2018-05-03 01:32:22,3,281,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16560,LAMAI,6,2019-02-08 10:36:52,2019-03-01 16:31:52,2019-02-11 22:11:50,2,79.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16561,LINOD,4,2014-05-05 08:25:10,2014-06-04 04:49:28,2014-05-09 17:48:46,2,204.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16562,RICAR,1,2014-03-03 13:58:02,2014-03-11 19:57:44,2014-03-15 04:30:57,3,513,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16563,CENTC,4,2018-03-28 07:25:09,2018-04-01 21:08:57,2018-04-13 14:08:50,2,426.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16564,FAMIA,1,2017-12-29 19:34:46,2018-01-07 03:00:29,2018-01-16 21:16:57,2,354.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16565,LACOR,4,2017-12-11 05:14:49,2017-12-25 17:08:14,2018-01-08 03:48:28,2,354.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16566,LEHMS,2,2018-11-23 10:06:34,2018-12-07 22:49:50,2018-12-04 21:10:16,2,77.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16567,SANTG,5,2021-05-08 01:42:37,2021-05-23 17:24:05,2021-05-16 19:42:45,2,246.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16568,NORTS,9,2012-12-14 14:30:56,2012-12-27 07:24:14,2012-12-16 14:29:45,1,45.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16569,LAZYK,9,2018-03-25 16:03:47,2018-04-23 09:36:49,2018-04-04 15:15:30,3,325.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16570,TORTU,9,2022-08-06 19:23:08,2022-08-17 13:45:55,2022-08-28 04:54:54,2,325.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16571,HANAR,1,2019-04-13 14:27:18,2019-04-28 09:41:16,2019-04-17 05:01:28,2,132.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16572,PICCO,9,2019-08-17 21:23:18,2019-09-29 01:10:22,2019-08-27 17:51:16,1,313.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16573,PARIS,1,2021-10-16 05:19:02,2021-11-17 18:05:57,2021-10-16 07:48:03,2,212.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16574,RICSU,4,2019-02-05 02:15:43,2019-02-11 05:56:19,2019-02-05 09:16:00,1,223,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16575,SUPRD,1,2013-11-04 13:48:02,2013-11-13 04:01:17,2013-11-14 19:34:20,2,14.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16576,SEVES,6,2016-05-07 18:01:20,2016-05-23 13:59:48,2016-05-09 12:44:18,1,256.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16577,BOLID,6,2021-08-19 16:55:51,2021-08-26 15:23:27,2021-09-06 15:38:01,2,264,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16578,NORTS,2,2023-09-15 09:27:27,2023-09-27 20:02:48,2023-09-15 12:45:14,1,112.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16579,QUICK,3,2013-11-18 01:50:29,2013-11-30 07:55:03,2013-11-27 07:48:35,3,451.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16580,QUICK,3,2019-02-07 01:16:39,2019-02-16 21:39:51,2019-02-16 14:16:20,1,329.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +16581,ALFKI,9,2019-02-01 16:22:01,2019-02-17 19:06:55,2019-02-12 12:47:13,2,188.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16582,BSBEV,4,2020-08-08 15:50:40,2020-08-28 23:19:05,2020-08-14 18:15:22,3,262,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16583,TRADH,9,2017-08-24 20:20:19,2017-08-27 19:47:27,2017-09-10 15:23:15,2,191.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16584,BERGS,9,2016-01-20 18:39:25,2016-01-23 06:02:59,2016-01-26 06:42:32,2,245.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16585,MAGAA,8,2013-07-08 13:56:45,2013-07-27 07:24:15,2013-07-13 04:25:10,2,281.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16586,SUPRD,1,2016-01-25 12:23:40,2016-02-03 07:48:54,2016-02-05 05:28:56,2,243.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16587,QUICK,4,2017-08-22 07:58:23,2017-09-14 06:32:30,2017-09-10 22:49:29,3,365,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16588,CENTC,2,2017-09-01 07:37:43,2017-09-24 00:20:27,2017-09-04 17:04:16,1,187.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16589,RICAR,9,2015-12-22 17:32:21,2015-12-31 12:02:26,2015-12-24 16:21:34,3,99,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16590,ANTON,2,2012-10-20 20:21:28,2012-10-29 17:21:37,2012-11-07 20:45:18,1,390.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16591,BOLID,5,2020-12-20 15:45:25,2021-01-14 06:06:57,2020-12-27 06:30:35,2,170.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16592,ROMEY,3,2013-06-30 05:54:57,2013-07-11 18:42:48,2013-07-04 07:11:47,2,359.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16593,RICSU,5,2023-01-03 06:30:53,2023-01-05 20:25:11,2023-01-08 22:12:50,2,221.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16594,ROMEY,9,2022-11-20 19:07:28,2022-11-28 05:29:28,2022-11-29 17:24:45,3,162.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16595,LINOD,1,2018-09-14 04:01:58,2018-09-20 04:30:10,2018-09-14 08:27:10,1,437.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16596,ALFKI,1,2013-12-22 10:53:21,2014-01-18 13:33:42,2013-12-29 23:15:52,1,39.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16597,GODOS,4,2012-09-13 07:15:32,2012-09-24 21:36:07,2012-09-16 17:50:43,1,50.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16598,MAISD,4,2016-01-30 07:56:17,2016-02-17 13:20:59,2016-02-01 19:15:34,2,320,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16599,WHITC,7,2019-09-19 05:56:44,2019-10-04 07:34:49,2019-10-06 05:37:08,3,227.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +16600,GODOS,3,2015-12-07 07:25:09,2015-12-10 00:31:30,2015-12-07 16:23:52,1,169.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16601,WOLZA,2,2019-08-06 08:08:20,2019-08-30 19:16:31,2019-08-09 15:29:17,3,476.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16602,FRANS,1,2013-02-09 17:37:37,2013-03-01 04:13:19,2013-02-11 09:51:28,2,366.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16603,SAVEA,3,2014-02-16 03:06:08,2014-02-23 11:47:44,2014-02-25 22:12:17,3,108,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16604,DRACD,5,2015-05-14 17:26:25,2015-06-12 06:07:50,2015-05-17 18:43:08,3,277.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16605,QUICK,1,2014-11-12 12:30:43,2014-11-18 08:01:58,2014-11-14 13:45:28,3,351.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16606,HANAR,9,2016-04-25 14:32:00,2016-04-27 06:57:54,2016-05-13 18:56:12,2,126.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16607,ISLAT,6,2018-08-16 18:16:15,2018-09-26 22:39:09,2018-08-22 14:33:49,2,37.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16608,WHITC,7,2021-06-26 20:48:42,2021-08-05 17:08:34,2021-06-28 23:41:28,1,340,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16609,OLDWO,7,2020-03-16 03:10:09,2020-03-24 21:21:35,2020-04-01 17:46:46,1,215.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16610,ANATR,8,2014-04-18 07:18:45,2014-04-25 02:00:32,2014-04-19 14:00:52,2,376.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16611,GOURL,9,2014-11-29 08:22:20,2014-12-09 21:10:12,2014-12-12 18:02:20,3,344.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16612,LILAS,4,2015-03-03 11:22:07,2015-03-18 10:57:46,2015-03-26 14:11:06,3,385.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16613,FRANR,2,2013-01-30 09:50:00,2013-02-23 14:48:28,2013-02-04 21:42:15,2,505.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16614,ANTON,4,2020-05-05 04:09:27,2020-06-04 07:50:10,2020-05-24 12:05:14,1,388.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16615,HUNGC,2,2018-03-26 14:46:52,2018-04-14 18:35:22,2018-04-03 19:50:16,2,509.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16616,MORGK,6,2018-01-15 11:04:31,2018-01-22 16:31:03,2018-01-17 09:55:24,2,398.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16617,ALFKI,7,2013-02-12 05:51:27,2013-02-23 05:22:05,2013-03-04 08:44:03,2,41.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16618,ANTON,9,2022-09-29 10:45:06,2022-10-23 03:59:53,2022-10-11 00:39:13,1,80.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16619,MEREP,6,2018-09-09 06:42:32,2018-09-12 11:30:18,2018-09-15 07:41:46,1,401,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16620,VAFFE,7,2018-02-09 04:13:26,2018-02-21 22:53:08,2018-02-16 08:04:17,2,310.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16621,MEREP,5,2016-05-10 20:08:02,2016-06-07 21:58:21,2016-06-01 10:50:57,3,410.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16622,LILAS,3,2020-04-08 04:47:31,2020-04-22 23:43:52,2020-04-09 14:10:56,1,79.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16623,VAFFE,5,2015-11-02 01:46:01,2015-11-04 07:32:24,2015-11-05 09:53:10,3,190.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16624,SPLIR,8,2014-10-06 19:12:02,2014-10-13 20:51:09,2014-10-14 06:16:44,3,382.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16625,VINET,9,2020-05-08 09:23:58,2020-06-16 08:26:52,2020-05-08 15:15:09,2,428.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16626,BSBEV,8,2017-05-23 02:33:59,2017-06-10 00:57:19,2017-05-24 22:07:22,2,504.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16627,HUNGO,7,2021-03-12 06:26:17,2021-04-06 04:45:23,2021-03-12 22:34:28,3,417.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16628,RATTC,2,2021-08-25 12:52:53,2021-09-22 15:11:44,2021-08-28 23:29:42,1,153,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16629,SUPRD,8,2014-11-14 09:11:13,2014-11-29 20:19:22,2014-12-02 07:22:19,3,491.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16630,QUEDE,6,2022-05-08 21:23:45,2022-06-07 08:31:39,2022-05-10 20:58:53,2,73.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +16631,OTTIK,2,2019-06-06 21:55:46,2019-06-14 03:27:52,2019-06-08 17:22:28,2,220,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16632,FURIB,4,2022-04-30 17:28:48,2022-06-18 13:58:09,2022-05-12 21:45:56,1,232.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16633,BSBEV,7,2017-03-14 16:13:07,2017-03-25 23:36:08,2017-03-15 02:52:03,2,240.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16634,KOENE,6,2023-01-01 06:12:05,2023-01-14 15:44:27,2023-01-03 12:00:59,3,29,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16635,WANDK,7,2022-09-12 06:26:19,2022-10-08 10:27:21,2022-09-12 17:45:37,1,27.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16636,REGGC,1,2018-05-23 20:09:03,2018-06-24 23:57:25,2018-05-25 10:38:38,1,490.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16637,BOLID,1,2023-10-19 05:37:39,2023-11-05 20:03:52,2023-11-06 14:20:50,3,264.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16638,VICTE,5,2021-10-13 06:09:40,2021-11-04 18:21:13,2021-11-03 06:20:34,2,184,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16639,TORTU,3,2015-08-23 04:51:34,2015-09-12 09:56:59,2015-09-08 21:42:21,1,299.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16640,FURIB,8,2022-07-26 17:51:11,2022-08-02 18:14:55,2022-07-28 09:20:38,3,340.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16641,SUPRD,4,2015-06-30 08:12:19,2015-07-06 11:35:35,2015-07-11 05:39:23,1,503.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16642,FRANR,2,2016-10-20 12:22:15,2016-11-06 01:00:32,2016-10-21 06:52:37,2,314.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16643,HILAA,8,2014-05-13 16:24:28,2014-05-15 07:28:22,2014-05-25 04:15:45,2,168.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16644,SEVES,1,2014-12-13 12:52:04,2014-12-18 09:44:29,2014-12-25 08:26:13,2,179.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16645,GODOS,2,2021-09-03 21:09:50,2021-09-07 14:30:17,2021-09-07 03:17:00,2,304.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16646,MEREP,7,2022-06-02 22:38:34,2022-06-25 04:41:33,2022-06-04 13:45:55,1,245.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16647,MAISD,4,2014-08-26 02:20:13,2014-09-21 12:47:41,2014-08-27 09:53:55,1,299.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16648,PARIS,4,2017-09-21 06:51:48,2017-11-01 18:06:14,2017-10-02 00:48:21,1,21.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16649,EASTC,1,2017-09-26 10:38:38,2017-09-29 19:19:58,2017-09-29 21:32:57,1,429.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16650,FOLIG,3,2022-07-30 21:47:38,2022-08-01 07:54:19,2022-08-05 04:11:09,3,52.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16651,FAMIA,4,2021-10-03 10:37:27,2021-11-07 11:55:08,2021-10-11 10:06:11,2,84.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16652,RICSU,5,2022-02-08 18:53:15,2022-03-05 21:51:44,2022-02-10 22:22:03,2,147.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16653,LINOD,2,2020-11-01 06:15:07,2020-12-03 14:34:36,2020-11-21 18:28:50,1,251.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16654,LAUGB,4,2014-10-27 09:01:22,2014-11-06 12:30:39,2014-10-31 18:20:14,1,357.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16655,OTTIK,6,2018-02-24 17:21:15,2018-03-04 13:22:18,2018-02-28 07:58:07,3,154.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16656,FRANR,3,2016-04-02 00:00:11,2016-04-02 12:01:15,2016-04-02 23:47:17,3,67.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16657,CONSH,2,2019-08-20 23:37:18,2019-10-12 19:24:15,2019-09-13 12:13:57,1,144.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16658,RANCH,4,2014-10-25 22:36:14,2014-11-12 15:31:38,2014-10-26 20:12:53,2,454.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16659,PICCO,9,2013-06-08 19:50:41,2013-06-25 09:43:36,2013-06-20 00:34:08,2,269.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16660,CONSH,6,2015-04-20 07:11:52,2015-06-01 06:19:15,2015-04-30 09:19:00,1,62.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16661,FRANR,2,2017-03-25 08:01:42,2017-04-02 21:25:00,2017-03-30 09:11:18,1,344,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16662,HANAR,3,2022-10-10 14:46:28,2022-10-13 08:36:30,2022-10-23 21:26:03,2,524.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16663,COMMI,8,2015-01-01 11:36:48,2015-01-12 08:13:09,2015-01-03 13:45:04,2,327.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16664,GREAL,4,2018-10-15 19:27:16,2018-10-20 06:07:54,2018-11-01 08:18:32,3,327,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16665,FRANK,3,2022-11-02 20:09:58,2022-11-29 05:52:14,2022-11-04 07:53:17,3,206.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16666,MAISD,8,2016-07-23 13:05:07,2016-08-25 16:19:32,2016-07-28 14:44:42,3,308,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16667,MAGAA,2,2020-05-20 09:43:44,2020-07-02 22:47:47,2020-05-24 05:06:52,3,76.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16668,BSBEV,9,2017-05-02 01:30:34,2017-06-14 05:18:50,2017-05-19 01:41:25,1,87.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16669,LINOD,8,2023-09-04 10:03:17,2023-10-12 04:30:23,2023-09-10 12:47:13,3,272.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16670,RICSU,9,2023-05-10 02:28:38,2023-05-15 09:05:57,2023-05-27 13:23:09,1,500.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16671,WARTH,6,2020-01-01 02:26:22,2020-01-16 14:42:32,2020-01-14 02:38:41,3,192.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16672,MEREP,1,2015-12-10 09:57:07,2016-01-16 00:14:28,2015-12-17 08:54:30,1,272,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16673,TORTU,4,2018-02-07 17:57:21,2018-02-17 01:58:12,2018-02-14 21:01:30,2,325.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16674,FISSA,4,2021-04-19 19:27:46,2021-04-30 17:15:47,2021-05-05 03:48:08,3,328,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16675,WOLZA,6,2023-10-08 06:36:45,2023-10-27 07:44:49,2023-10-23 09:57:07,3,152,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16676,RICSU,6,2016-10-10 15:56:01,2016-10-22 06:25:27,2016-10-11 20:20:53,2,153.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16677,VINET,6,2017-04-27 21:51:44,2017-05-21 14:28:49,2017-04-30 06:01:17,2,329.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16678,CHOPS,8,2020-12-08 08:52:56,2020-12-22 18:07:44,2020-12-13 07:50:06,1,214.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16679,BERGS,5,2017-04-18 09:37:33,2017-05-18 18:47:21,2017-04-20 08:31:57,3,177.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16680,WOLZA,3,2017-12-06 12:58:55,2017-12-08 14:28:25,2017-12-17 03:29:27,1,130.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16681,CONSH,5,2016-02-12 18:35:18,2016-02-22 06:37:56,2016-02-29 16:23:44,2,513.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16682,SPECD,9,2017-08-31 01:51:01,2017-10-18 00:59:50,2017-09-02 10:55:01,3,40.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +16683,NORTS,7,2021-11-26 01:48:02,2021-12-08 00:45:51,2021-11-26 04:20:56,2,189.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16684,SANTG,2,2020-08-21 13:25:20,2020-08-25 09:33:09,2020-09-01 17:27:02,3,471.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16685,EASTC,5,2020-01-21 13:35:11,2020-02-09 01:15:08,2020-01-24 02:38:35,1,48,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16686,CONSH,9,2022-08-28 20:50:14,2022-09-08 17:32:35,2022-09-02 23:02:07,2,232.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16687,FURIB,8,2021-12-23 19:42:49,2022-02-13 05:57:05,2021-12-28 05:14:15,1,456,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16688,WOLZA,3,2013-08-23 19:38:18,2013-10-11 03:28:42,2013-08-26 01:28:58,1,278.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +16689,WELLI,9,2019-07-01 07:33:40,2019-07-02 09:49:03,2019-07-05 04:18:19,3,90.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16690,CENTC,1,2012-12-02 05:42:40,2012-12-05 05:38:16,2012-12-10 02:27:07,3,146,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16691,LAMAI,9,2023-03-31 19:24:39,2023-04-03 02:09:52,2023-04-21 01:15:35,3,218.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16692,COMMI,1,2018-05-19 14:30:55,2018-06-11 11:10:30,2018-05-29 12:36:47,1,261.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16693,SAVEA,1,2014-10-05 02:01:43,2014-10-21 10:45:49,2014-10-25 20:51:46,1,158,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16694,CHOPS,1,2020-08-31 16:10:43,2020-10-12 00:40:48,2020-09-01 10:36:51,1,335.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16695,RICAR,5,2023-04-24 08:05:24,2023-05-11 05:37:48,2023-04-28 14:09:13,1,192.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16696,WELLI,9,2018-05-14 22:21:53,2018-06-09 12:00:06,2018-05-30 03:50:12,1,337,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +16697,VICTE,8,2017-12-22 16:26:39,2018-02-06 20:27:37,2018-01-06 04:13:08,3,159,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16698,QUICK,3,2013-06-02 01:04:59,2013-06-28 16:46:13,2013-06-02 09:28:22,1,376,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16699,VALON,5,2018-07-18 16:05:45,2018-08-14 11:38:12,2018-08-08 02:11:00,3,312.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16700,LILAS,6,2018-03-01 00:45:13,2018-03-17 20:43:29,2018-03-07 19:02:54,2,237.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16701,MAGAA,7,2016-05-12 10:44:27,2016-05-28 07:07:39,2016-05-15 19:37:05,2,46.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16702,EASTC,5,2018-01-12 02:40:10,2018-02-17 01:06:31,2018-01-18 17:46:20,1,453,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16703,ANATR,9,2013-06-12 15:13:29,2013-07-12 01:24:31,2013-06-22 01:51:36,1,355.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16704,SUPRD,1,2017-08-22 02:52:53,2017-08-29 05:15:33,2017-08-24 06:31:20,1,350.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16705,GODOS,2,2015-02-05 14:02:57,2015-03-10 08:47:22,2015-02-08 12:16:09,3,225.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16706,HUNGO,1,2020-07-28 12:34:01,2020-08-29 15:58:27,2020-08-01 21:41:28,1,30.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +16707,COMMI,8,2013-02-28 03:39:14,2013-03-16 10:24:28,2013-03-07 19:57:52,1,166.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16708,ANATR,3,2016-08-20 00:56:30,2016-08-24 01:25:57,2016-08-22 08:30:35,1,275.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16709,TORTU,2,2015-12-07 02:11:03,2015-12-21 19:11:15,2015-12-29 21:09:02,3,292,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +16710,MEREP,5,2023-05-30 03:34:56,2023-06-02 20:19:32,2023-06-22 02:48:03,2,31.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16711,BOTTM,6,2022-06-14 13:53:33,2022-07-02 23:53:53,2022-06-19 13:08:08,1,391.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16712,WANDK,2,2018-11-07 16:25:52,2018-11-21 09:23:44,2018-11-15 18:53:07,1,157.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16713,OCEAN,6,2014-04-06 11:34:37,2014-04-11 16:29:50,2014-04-11 08:11:53,2,77.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16714,THEBI,4,2020-05-22 12:57:16,2020-06-19 21:11:55,2020-06-01 03:44:41,3,415.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16715,CONSH,2,2022-11-23 11:29:20,2022-12-20 09:25:40,2022-11-30 02:35:43,2,16.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16716,OTTIK,5,2020-02-04 22:02:44,2020-02-17 20:26:02,2020-02-07 14:52:48,1,438,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16717,FISSA,3,2020-03-17 12:36:16,2020-03-17 14:20:21,2020-03-24 02:21:30,1,201.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16718,LINOD,4,2013-09-05 01:16:42,2013-09-13 22:41:11,2013-09-28 12:14:49,2,85.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +16719,HANAR,9,2021-08-08 23:25:28,2021-08-25 18:41:09,2021-08-31 20:41:31,2,19.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16720,SPECD,8,2016-09-08 21:15:20,2016-10-19 06:30:59,2016-09-15 23:56:15,1,412,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +16721,GALED,1,2022-06-15 17:12:22,2022-06-27 23:31:15,2022-07-04 05:59:06,2,377.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16722,VAFFE,7,2018-11-02 15:02:37,2018-11-07 10:41:07,2018-11-04 08:47:45,2,82.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16723,GREAL,4,2018-07-15 23:49:35,2018-08-30 22:04:32,2018-07-17 13:58:40,2,503.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16724,GOURL,9,2012-12-23 23:23:14,2013-01-16 06:31:00,2012-12-27 17:59:13,2,197,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16725,RANCH,6,2015-11-29 20:26:33,2015-12-03 09:52:36,2015-12-06 05:42:50,2,350.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16726,QUICK,3,2020-04-23 13:24:18,2020-05-08 04:51:16,2020-05-09 12:47:16,1,464,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16727,BLONP,1,2013-04-06 22:40:30,2013-04-08 19:08:27,2013-04-07 01:29:35,2,408.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16728,BLAUS,4,2021-07-08 21:53:52,2021-07-14 00:24:38,2021-07-12 15:16:18,3,13.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16729,GROSR,9,2016-12-14 06:28:25,2016-12-27 23:51:00,2016-12-16 03:25:31,1,217.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16730,THECR,3,2015-02-04 17:43:42,2015-02-20 10:43:53,2015-02-05 13:41:54,2,387,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16731,WARTH,6,2014-02-11 01:07:40,2014-02-28 19:31:26,2014-02-20 00:03:54,3,460.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16732,VINET,7,2016-10-05 01:10:32,2016-10-09 16:15:44,2016-10-27 17:36:24,1,331.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16733,LAZYK,4,2016-08-23 05:42:56,2016-09-25 07:58:59,2016-08-31 17:40:16,2,231,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16734,GROSR,8,2021-01-09 10:48:41,2021-01-14 11:01:01,2021-01-12 01:05:06,2,39,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16735,FRANR,3,2014-02-11 20:29:18,2014-03-02 09:24:26,2014-02-19 05:40:33,3,379.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16736,BSBEV,1,2017-07-20 09:51:28,2017-08-06 06:36:37,2017-08-13 07:16:15,3,356.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16737,ISLAT,2,2013-10-05 04:18:20,2013-11-25 01:40:58,2013-10-19 20:32:18,3,129.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16738,GREAL,3,2019-03-02 01:17:09,2019-03-02 21:52:25,2019-03-07 19:54:01,3,185.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16739,RANCH,8,2012-08-20 18:54:44,2012-08-22 19:08:15,2012-08-21 09:29:18,3,432.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16740,BOLID,1,2014-04-19 03:54:33,2014-04-27 13:05:08,2014-04-20 15:00:03,1,38.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16741,VICTE,3,2012-11-09 14:01:54,2012-11-18 19:12:19,2012-11-20 22:05:19,1,150.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16742,GREAL,2,2015-09-06 08:01:45,2015-09-16 20:14:27,2015-10-02 21:20:01,3,244.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16743,BONAP,5,2021-07-27 14:42:00,2021-08-03 16:50:43,2021-07-28 06:09:51,3,388,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16744,LAUGB,6,2017-03-22 15:47:52,2017-04-08 06:15:40,2017-03-27 08:33:58,2,40.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16745,THECR,5,2017-05-09 15:42:56,2017-05-13 16:24:42,2017-05-13 00:55:41,3,247.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16746,HUNGC,5,2016-06-28 16:04:50,2016-07-22 15:26:26,2016-07-08 17:21:46,2,392.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16747,GOURL,9,2019-09-09 23:26:11,2019-09-15 17:29:23,2019-09-10 12:20:24,1,192,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16748,SPECD,3,2020-02-20 17:07:54,2020-03-28 03:21:06,2020-02-22 14:59:16,2,104,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16749,BOLID,7,2017-01-16 07:24:15,2017-02-04 18:51:30,2017-01-17 09:28:48,2,141.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +16750,PERIC,8,2015-01-26 20:25:10,2015-02-11 02:54:13,2015-02-03 19:32:50,2,294.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16751,LILAS,3,2022-08-28 10:35:20,2022-09-10 03:21:13,2022-08-29 10:20:06,1,75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16752,MAGAA,5,2012-10-05 21:06:34,2012-10-19 03:46:21,2012-10-16 06:46:26,3,273.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16753,BSBEV,5,2017-05-16 03:12:45,2017-05-31 22:21:55,2017-05-17 18:54:46,1,454,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16754,LAZYK,2,2023-08-23 09:59:43,2023-08-25 19:16:56,2023-08-30 03:01:27,1,485,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16755,MAGAA,7,2022-03-21 09:37:27,2022-04-02 08:22:26,2022-03-24 17:21:09,2,141.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +16756,PICCO,8,2017-04-27 18:38:47,2017-06-10 11:58:59,2017-04-28 18:16:11,3,162.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16757,ANTON,4,2015-03-25 09:49:26,2015-04-29 07:38:34,2015-03-27 11:43:16,3,371,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16758,ANATR,8,2023-10-13 06:47:26,2023-10-18 03:40:59,2023-10-19 17:24:57,2,264.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16759,LAMAI,9,2018-05-08 13:40:29,2018-06-20 22:36:39,2018-05-17 11:28:08,2,506.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16760,FURIB,4,2021-11-05 20:49:37,2021-12-23 17:10:37,2021-11-16 04:21:09,2,94.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16761,SEVES,7,2013-11-05 12:54:04,2013-11-24 07:56:18,2013-11-07 18:57:32,1,91.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16762,TOMSP,3,2014-08-29 14:15:22,2014-10-14 13:55:41,2014-08-31 08:26:43,2,397.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +16763,ERNSH,3,2012-12-18 00:11:10,2012-12-28 18:39:54,2012-12-21 12:23:28,3,357.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16764,VAFFE,3,2014-12-03 06:02:52,2015-01-01 20:50:06,2014-12-11 15:32:26,3,392.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16765,AROUT,2,2015-12-17 03:14:20,2016-02-01 22:58:13,2015-12-18 01:28:27,1,270,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16766,FRANR,1,2014-04-20 08:55:27,2014-05-04 12:49:44,2014-04-23 02:00:22,2,264.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16767,QUEEN,4,2013-03-08 04:41:32,2013-03-26 19:50:05,2013-03-14 16:59:17,2,432,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16768,HUNGC,2,2023-09-07 07:57:36,2023-10-11 04:22:05,2023-09-10 08:39:55,2,457.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16769,NORTS,6,2020-09-24 19:16:42,2020-10-06 17:59:21,2020-09-26 23:31:07,2,144.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16770,CONSH,7,2020-01-08 20:46:07,2020-01-23 08:02:21,2020-01-09 07:42:34,3,304.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16771,VAFFE,4,2022-01-17 12:15:32,2022-01-22 12:20:11,2022-02-05 20:05:32,2,142.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16772,MAISD,6,2023-10-01 19:30:45,2023-11-08 17:27:55,2023-10-02 07:48:39,2,315,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16773,QUEDE,8,2023-04-09 12:05:12,2023-04-24 03:07:58,2023-04-15 15:57:27,3,343.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16774,LONEP,4,2023-05-21 21:14:14,2023-06-03 03:31:05,2023-05-30 01:40:41,2,409.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16775,GROSR,4,2018-08-06 09:20:45,2018-09-10 09:03:10,2018-08-06 13:07:38,2,471.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16776,DRACD,9,2022-09-20 13:31:02,2022-10-11 11:58:08,2022-09-30 20:23:28,2,266.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16777,BLONP,4,2020-09-13 14:12:27,2020-09-28 08:25:38,2020-10-04 13:07:02,3,37.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16778,SAVEA,4,2018-06-03 10:24:45,2018-06-15 20:55:08,2018-06-13 08:02:43,2,44.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16779,FOLKO,3,2022-07-15 21:17:57,2022-07-24 12:51:38,2022-07-24 00:48:31,2,223.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16780,ANTON,4,2018-04-22 13:41:59,2018-05-05 18:45:56,2018-04-23 16:08:00,1,111.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16781,NORTS,8,2019-02-11 13:32:26,2019-03-03 21:34:45,2019-02-22 22:19:17,2,285,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16782,TOMSP,7,2022-06-29 05:28:44,2022-08-11 19:18:14,2022-06-29 19:10:14,3,376,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16783,CHOPS,4,2017-01-17 01:30:58,2017-01-20 13:32:27,2017-01-19 05:04:00,2,122,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16784,NORTS,6,2020-03-16 20:47:06,2020-04-09 05:52:40,2020-03-18 07:58:58,3,317.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +16785,MEREP,3,2019-09-05 03:52:47,2019-09-21 11:03:05,2019-09-09 05:41:45,1,329.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16786,QUEDE,9,2020-12-25 05:34:37,2021-01-08 12:28:51,2021-01-08 12:03:56,2,16.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16787,EASTC,4,2015-08-20 08:58:48,2015-09-09 16:48:50,2015-08-27 09:59:16,2,165,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16788,SPECD,4,2017-05-13 08:42:31,2017-05-16 00:18:56,2017-06-05 19:06:59,3,354.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16789,CENTC,7,2018-04-22 04:29:15,2018-04-28 22:44:14,2018-04-28 10:53:33,3,309,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16790,CHOPS,6,2017-03-09 16:27:20,2017-03-15 15:00:06,2017-03-22 02:36:18,3,395.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16791,GODOS,5,2017-04-23 15:59:53,2017-05-08 17:38:24,2017-04-24 22:16:02,2,250.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +16792,TORTU,1,2021-10-24 10:31:51,2021-11-13 06:46:04,2021-10-27 02:53:11,2,301.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16793,PRINI,4,2014-06-25 15:46:09,2014-07-17 07:59:10,2014-07-01 04:05:52,2,133,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +16794,LINOD,7,2020-07-31 21:00:36,2020-08-05 08:51:46,2020-08-19 05:28:20,3,440,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16795,LAZYK,9,2015-03-17 04:28:04,2015-04-06 04:35:26,2015-03-19 22:01:58,3,112.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16796,VALON,4,2022-03-27 15:15:10,2022-04-28 19:25:28,2022-03-30 19:04:15,3,219,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16797,GOURL,3,2021-02-09 02:49:45,2021-03-14 11:17:55,2021-02-12 17:44:58,3,109,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16798,FURIB,1,2022-12-17 17:30:40,2022-12-20 08:19:20,2022-12-22 01:27:34,1,474.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +16799,GOURL,4,2018-02-07 22:53:15,2018-02-24 03:50:43,2018-02-11 04:06:19,2,420.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16800,OLDWO,8,2014-10-18 13:22:26,2014-11-03 10:28:15,2014-10-23 09:47:35,2,182.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16801,LEHMS,9,2016-08-26 14:40:16,2016-09-26 17:08:38,2016-09-12 18:28:08,2,151,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16802,HUNGC,7,2023-03-03 23:36:45,2023-04-17 00:03:22,2023-03-07 21:17:36,2,32,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16803,CONSH,4,2020-09-06 09:43:11,2020-09-30 12:32:50,2020-09-13 19:00:59,3,503.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16804,MORGK,1,2020-12-25 15:54:36,2020-12-31 13:34:37,2021-01-03 04:57:29,3,291.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +16805,VICTE,7,2015-04-13 09:35:05,2015-05-04 12:26:01,2015-04-16 21:15:30,1,417.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16806,ERNSH,6,2017-08-26 10:56:19,2017-09-07 16:54:05,2017-09-07 08:02:40,3,115.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16807,TRAIH,4,2014-11-25 22:43:47,2014-12-22 00:30:15,2014-12-20 08:27:04,1,313.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +16808,BOLID,4,2020-05-26 09:47:58,2020-07-17 07:58:48,2020-06-16 12:03:29,1,412.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16809,LETSS,1,2014-05-19 15:09:50,2014-06-10 09:38:11,2014-06-02 10:06:08,2,276,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16810,HUNGC,8,2017-03-15 00:58:50,2017-03-17 13:47:05,2017-03-20 22:51:51,2,355.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16811,PRINI,3,2019-06-19 18:28:41,2019-07-06 16:30:48,2019-06-19 19:35:48,1,108,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +16812,GROSR,4,2018-07-19 14:24:00,2018-07-24 23:41:03,2018-07-27 05:46:34,2,69,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16813,RANCH,9,2015-11-02 21:15:36,2015-11-26 01:44:15,2015-11-12 18:27:29,2,202.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16814,VICTE,5,2021-10-17 02:48:20,2021-11-09 05:57:27,2021-10-24 00:20:25,3,16,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16815,HUNGC,6,2013-02-24 05:49:39,2013-02-27 18:03:17,2013-03-03 21:48:52,2,156.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16816,EASTC,9,2013-03-27 04:16:01,2013-05-03 14:48:03,2013-04-04 19:57:29,2,270.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16817,FISSA,8,2020-05-23 11:47:50,2020-05-30 00:24:14,2020-06-06 03:09:21,1,419.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +16818,RICSU,2,2012-11-04 21:17:11,2012-11-11 04:00:40,2012-11-11 10:21:52,2,410.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16819,SIMOB,9,2019-12-31 04:46:39,2020-01-17 07:02:26,2020-01-26 22:16:49,2,317.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16820,LAMAI,5,2021-08-27 03:00:09,2021-09-09 09:14:20,2021-09-14 13:31:24,2,44,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16821,SIMOB,1,2017-11-14 13:04:43,2017-12-12 09:36:48,2017-11-26 15:35:05,1,241.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16822,SEVES,1,2020-08-02 21:17:55,2020-09-12 07:13:35,2020-08-08 13:37:28,1,428.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +16823,RICAR,5,2020-08-29 06:22:46,2020-09-06 12:21:38,2020-08-31 18:43:54,2,225.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16824,OLDWO,6,2014-09-26 00:31:55,2014-09-26 15:41:37,2014-10-19 19:15:15,1,231.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16825,FRANK,4,2014-09-30 08:27:22,2014-11-11 10:31:35,2014-10-23 13:56:50,3,143.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16826,LEHMS,7,2020-02-20 03:49:30,2020-02-28 06:12:41,2020-02-21 02:37:39,2,345.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16827,BSBEV,5,2016-11-28 12:03:35,2016-12-16 22:56:01,2016-11-29 10:44:21,2,363.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16828,WILMK,3,2021-08-10 06:38:02,2021-09-05 23:02:32,2021-09-07 05:44:14,3,494.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16829,THECR,5,2023-03-11 09:45:12,2023-03-29 18:45:48,2023-03-11 16:48:16,1,295,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16830,RANCH,7,2018-10-09 09:27:24,2018-10-22 01:37:20,2018-10-16 15:22:37,1,321.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16831,GALED,5,2021-01-20 22:04:25,2021-01-24 06:16:32,2021-01-20 23:36:57,2,254.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16832,FRANS,2,2019-09-11 10:23:27,2019-11-02 19:09:30,2019-09-20 09:28:24,2,116.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16833,SPECD,8,2023-03-31 06:53:03,2023-05-08 14:09:41,2023-04-06 01:42:25,3,320.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16834,WHITC,9,2017-05-08 22:23:11,2017-05-27 06:20:34,2017-05-08 23:07:35,1,357.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16835,SIMOB,3,2018-06-25 11:05:51,2018-07-10 18:21:23,2018-06-28 05:29:34,3,183.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16836,WARTH,8,2013-03-14 08:52:31,2013-03-22 23:41:02,2013-03-15 13:25:36,2,377.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16837,COMMI,6,2013-08-11 04:46:31,2013-08-14 14:03:13,2013-08-13 13:42:33,2,311.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16838,COMMI,8,2016-06-15 11:58:17,2016-07-25 07:14:15,2016-06-18 09:12:45,2,475.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16839,Val2 ,4,2022-08-21 13:55:10,2022-08-29 13:04:56,2022-08-30 06:37:26,1,116.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16840,CHOPS,1,2016-08-11 03:15:14,2016-09-03 02:11:25,2016-08-21 11:16:53,2,66.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +16841,DRACD,7,2017-11-01 03:59:29,2017-11-12 06:19:30,2017-11-01 14:43:29,3,262.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16842,MAISD,8,2016-04-27 06:40:51,2016-06-08 05:51:32,2016-05-09 08:50:19,3,254,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16843,SPECD,1,2018-06-05 10:28:10,2018-07-05 02:26:02,2018-06-09 15:09:55,2,254.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16844,SIMOB,1,2015-01-29 10:13:44,2015-02-07 17:53:54,2015-01-30 13:12:10,1,406.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16845,BOTTM,4,2015-09-13 00:56:22,2015-09-20 22:31:03,2015-09-14 00:39:50,1,235,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16846,KOENE,2,2016-06-12 10:04:55,2016-06-23 18:06:16,2016-06-16 15:37:02,2,306,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16847,FURIB,5,2017-05-30 15:58:40,2017-06-28 17:00:51,2017-06-07 11:15:20,1,325.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16848,ROMEY,1,2021-03-22 01:59:17,2021-04-23 21:17:39,2021-03-26 00:21:30,3,306.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +16849,DRACD,6,2023-07-18 09:30:31,2023-07-23 19:09:44,2023-07-25 09:23:44,1,43.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16850,BSBEV,4,2022-07-02 02:02:42,2022-08-17 22:31:16,2022-07-07 17:19:41,2,450.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +16851,FRANR,5,2013-03-03 02:39:57,2013-03-06 17:03:15,2013-03-13 00:35:29,3,43.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16852,VAFFE,1,2017-08-14 15:14:45,2017-09-07 21:15:10,2017-08-17 03:49:09,2,15.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16853,THECR,8,2022-04-23 08:02:45,2022-05-04 13:18:43,2022-04-27 01:52:47,2,189.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16854,SIMOB,5,2013-08-26 14:03:52,2013-09-29 20:06:04,2013-08-27 21:23:19,1,133.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16855,THEBI,2,2018-10-30 05:57:38,2018-11-08 23:27:37,2018-11-17 18:02:59,1,348.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +16856,HANAR,9,2021-09-25 17:13:25,2021-10-02 08:43:39,2021-10-05 09:29:22,2,271.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16857,RICSU,4,2012-09-01 12:09:20,2012-09-08 20:19:08,2012-09-04 03:33:17,2,384,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +16858,VINET,2,2016-10-11 08:37:05,2016-10-13 16:30:31,2016-10-14 14:45:40,1,97.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +16859,WELLI,4,2016-11-20 15:37:39,2016-12-21 13:22:39,2016-12-04 06:36:19,1,199.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16860,ROMEY,7,2023-07-19 20:06:17,2023-08-06 14:55:35,2023-08-11 17:12:25,1,190,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16861,ANATR,7,2018-02-18 23:52:36,2018-03-12 09:51:05,2018-02-19 18:48:13,3,109.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16862,WANDK,3,2014-04-30 00:07:14,2014-05-11 12:57:54,2014-04-30 07:21:36,3,195.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16863,THECR,1,2021-11-24 17:55:49,2021-12-12 21:06:50,2021-12-03 12:05:15,3,271.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16864,GALED,2,2018-09-15 12:32:18,2018-09-23 13:51:48,2018-09-27 06:42:04,3,412.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16865,SEVES,8,2013-10-03 14:04:20,2013-10-13 15:29:41,2013-10-25 17:44:36,2,151,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16866,BERGS,7,2014-05-13 14:24:27,2014-05-23 16:53:31,2014-05-20 07:53:18,3,463,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16867,COMMI,7,2015-06-19 21:34:24,2015-06-23 11:14:32,2015-06-23 18:06:35,1,383.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16868,SPLIR,9,2022-09-30 03:22:41,2022-10-13 02:41:51,2022-10-15 18:01:38,3,189.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +16869,BLONP,8,2013-08-08 10:17:35,2013-09-05 12:20:35,2013-08-09 16:24:04,3,246.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16870,LONEP,3,2019-06-01 23:14:30,2019-06-11 04:23:54,2019-06-07 21:50:14,2,232.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16871,VAFFE,1,2013-11-16 05:08:50,2013-11-25 14:00:25,2013-11-21 10:09:07,2,482.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16872,VINET,8,2016-01-22 14:35:23,2016-02-09 16:28:44,2016-01-24 19:44:59,2,23,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16873,PRINI,1,2020-10-25 21:43:35,2020-11-24 21:12:04,2020-10-27 15:43:00,2,292.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16874,DUMON,1,2020-11-16 08:13:41,2020-11-18 09:53:19,2020-11-22 00:33:35,2,66,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +16875,ERNSH,2,2016-07-09 05:00:04,2016-07-31 11:38:49,2016-07-20 00:49:34,2,106,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16876,SAVEA,3,2022-03-26 10:51:51,2022-03-30 11:15:40,2022-04-06 01:57:33,1,11.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16877,EASTC,7,2019-07-30 00:00:23,2019-08-20 08:45:46,2019-08-04 03:17:05,1,29,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +16878,LACOR,2,2015-11-11 04:27:51,2015-11-23 17:34:05,2015-11-13 03:38:21,1,158,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +16879,KOENE,5,2016-12-24 08:48:37,2017-01-15 01:13:03,2016-12-30 19:02:19,1,33,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16880,KOENE,3,2016-11-27 16:09:32,2017-01-17 02:39:03,2016-11-28 02:28:11,2,30.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +16881,SAVEA,2,2016-09-09 02:05:01,2016-09-21 15:23:10,2016-09-10 18:09:03,3,186,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16882,LONEP,7,2014-08-28 01:54:32,2014-09-27 14:26:31,2014-08-30 19:40:18,1,418,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16883,LAUGB,6,2020-05-08 15:14:00,2020-05-22 08:38:06,2020-05-13 19:28:37,3,480.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16884,WOLZA,5,2019-06-01 10:29:13,2019-06-02 10:49:23,2019-06-03 16:16:27,3,89.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16885,SAVEA,4,2019-01-03 15:11:23,2019-01-04 20:04:53,2019-01-04 19:50:15,2,193.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +16886,WILMK,1,2013-01-03 01:30:12,2013-01-05 13:49:50,2013-01-05 01:45:26,1,24.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16887,GALED,4,2022-03-21 20:40:54,2022-04-15 20:06:42,2022-03-23 19:32:35,3,305.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16888,BOTTM,2,2017-01-17 12:50:21,2017-02-10 02:47:23,2017-02-05 09:11:35,1,181.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16889,HUNGO,7,2014-12-29 13:34:52,2014-12-29 14:10:32,2015-01-07 04:54:36,2,175.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16890,LONEP,8,2014-03-08 04:57:10,2014-03-29 11:39:08,2014-03-08 13:21:37,1,333,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16891,FURIB,2,2018-03-17 17:45:17,2018-04-04 02:28:18,2018-03-21 04:50:26,3,476.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16892,LINOD,3,2018-07-10 09:24:27,2018-07-30 23:37:01,2018-07-27 10:05:31,1,334.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16893,BLONP,8,2018-01-10 20:50:04,2018-02-10 07:49:46,2018-01-14 06:28:43,1,364.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16894,Val2 ,4,2022-08-24 19:21:43,2022-10-12 01:46:16,2022-09-05 09:34:22,1,448,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +16895,LAMAI,4,2019-08-09 16:37:30,2019-08-12 12:45:49,2019-08-10 16:43:24,1,202.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16896,HUNGO,7,2015-06-27 12:37:59,2015-07-02 16:46:49,2015-07-08 05:38:00,1,114.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +16897,FRANK,5,2017-07-16 05:56:06,2017-07-21 17:40:13,2017-07-29 04:47:46,2,183,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16898,ISLAT,7,2016-03-17 00:52:47,2016-03-23 03:28:33,2016-03-19 16:19:22,1,55.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +16899,WOLZA,6,2014-08-31 10:22:53,2014-09-04 09:11:19,2014-09-14 21:49:57,2,470.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16900,LEHMS,3,2020-04-28 02:03:39,2020-04-29 01:29:42,2020-05-01 00:44:43,2,308.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16901,TORTU,2,2019-02-12 05:38:49,2019-03-10 01:50:29,2019-02-15 07:48:34,2,63.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +16902,FRANS,5,2015-07-31 01:04:09,2015-08-30 12:38:40,2015-08-05 22:14:45,2,317.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +16903,WELLI,8,2022-07-04 10:34:17,2022-07-21 11:58:43,2022-07-12 10:35:14,3,272.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16904,FOLIG,7,2018-09-10 03:07:49,2018-09-12 06:48:00,2018-09-10 11:50:18,2,76.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16905,FURIB,7,2013-10-03 06:43:15,2013-10-03 18:21:54,2013-10-04 11:43:34,2,42.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16906,TRAIH,3,2020-08-02 17:11:33,2020-08-27 07:22:51,2020-08-03 09:47:34,2,39.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16907,HILAA,1,2020-01-02 14:03:25,2020-02-19 02:01:17,2020-01-11 07:46:22,3,444,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16908,RANCH,4,2019-08-20 15:41:12,2019-08-29 22:01:38,2019-09-04 12:06:18,2,395,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +16909,PRINI,2,2016-06-11 14:40:00,2016-07-16 19:03:49,2016-06-13 09:22:37,3,325.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +16910,LAMAI,3,2017-02-05 22:22:35,2017-02-07 22:03:41,2017-02-07 16:19:53,2,443.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16911,RATTC,5,2023-04-27 18:17:47,2023-05-22 09:17:24,2023-04-29 18:33:45,1,451,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16912,ERNSH,5,2019-12-15 13:42:25,2020-01-14 07:47:30,2019-12-22 09:58:20,2,151.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16913,WANDK,7,2017-03-30 21:39:59,2017-04-01 07:33:46,2017-04-02 13:39:51,3,54.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +16914,MAISD,8,2022-04-10 03:51:51,2022-05-20 04:02:53,2022-04-10 11:01:54,2,440.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +16915,PRINI,1,2012-12-21 15:04:16,2012-12-28 18:12:27,2012-12-22 10:44:59,1,85.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +16916,FOLIG,1,2019-04-03 19:12:23,2019-04-04 04:48:50,2019-04-05 08:03:40,2,297.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +16917,FOLKO,1,2018-02-21 16:04:10,2018-03-11 11:57:12,2018-02-28 16:46:17,2,397.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16918,GALED,6,2019-04-09 09:32:43,2019-05-08 17:43:49,2019-04-22 23:38:04,3,401.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16919,RATTC,1,2022-12-25 05:58:18,2023-02-08 11:07:54,2022-12-25 18:31:38,3,331.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16920,CONSH,1,2020-01-16 03:51:23,2020-01-22 06:20:31,2020-01-18 11:40:05,2,400.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16921,PRINI,4,2021-11-14 09:05:16,2021-12-25 01:12:45,2021-11-19 12:20:24,3,416.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +16922,CACTU,7,2016-08-08 20:26:50,2016-08-09 16:39:34,2016-08-15 03:43:08,1,483,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +16923,FRANK,8,2022-12-09 10:27:25,2022-12-26 18:40:27,2022-12-11 06:34:33,3,438.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16924,TOMSP,3,2018-04-06 10:40:22,2018-04-10 06:07:31,2018-04-11 20:36:04,2,505.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16925,LAZYK,7,2017-09-20 06:48:11,2017-10-07 09:15:04,2017-09-25 08:01:57,3,126.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +16926,ANATR,5,2013-04-01 11:22:18,2013-04-08 07:30:19,2013-04-06 00:42:22,3,197.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16927,DRACD,9,2014-01-03 15:04:22,2014-01-23 04:18:16,2014-01-07 12:53:50,2,425.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +16928,MORGK,3,2020-09-29 20:46:55,2020-10-09 05:03:14,2020-10-01 13:43:37,3,207,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16929,OTTIK,8,2021-12-12 08:25:32,2022-01-23 18:38:42,2021-12-25 20:29:57,1,182.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16930,SAVEA,9,2018-05-19 21:16:43,2018-06-14 08:08:33,2018-06-01 00:33:54,3,255.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +16931,BOTTM,1,2019-05-04 00:18:55,2019-05-09 18:07:44,2019-05-13 01:42:02,2,251.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +16932,BONAP,6,2012-07-14 16:10:21,2012-08-30 18:30:40,2012-07-22 10:31:53,1,306.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16933,QUEEN,7,2015-09-19 11:22:01,2015-10-06 07:41:03,2015-09-27 02:58:54,1,479.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16934,WARTH,3,2021-03-20 12:19:30,2021-03-29 21:32:24,2021-03-23 09:29:24,2,350.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16935,NORTS,8,2012-08-01 04:33:24,2012-08-03 20:19:20,2012-08-01 17:10:58,1,369.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16936,COMMI,7,2016-08-16 09:06:11,2016-08-18 21:31:51,2016-08-25 12:38:25,1,365.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +16937,QUICK,3,2013-12-04 16:52:08,2013-12-12 06:27:52,2013-12-15 22:29:33,1,233,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16938,VINET,4,2022-03-23 04:50:36,2022-03-24 00:41:34,2022-03-23 23:57:38,3,283.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +16939,CENTC,1,2015-07-28 23:16:51,2015-08-06 13:55:54,2015-07-29 20:10:36,2,483.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +16940,SIMOB,9,2023-09-24 21:36:33,2023-11-07 13:18:25,2023-10-02 14:49:41,2,81,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16941,SANTG,6,2013-02-16 14:42:02,2013-02-20 04:30:20,2013-03-02 14:37:33,2,419,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +16942,ALFKI,9,2016-10-04 06:26:44,2016-10-08 09:53:40,2016-10-08 01:43:22,2,376,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16943,HUNGO,8,2023-05-18 05:36:53,2023-05-18 08:02:47,2023-05-24 02:54:40,1,225,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16944,CHOPS,1,2017-10-30 23:36:48,2017-11-09 05:56:53,2017-11-02 01:11:20,2,384.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +16945,RICAR,6,2018-09-11 12:24:28,2018-09-16 20:05:16,2018-09-19 06:12:35,1,310.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16946,VINET,1,2021-07-14 13:52:16,2021-07-25 21:27:00,2021-07-17 00:09:02,2,332.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16947,RANCH,7,2022-08-31 03:37:18,2022-09-02 21:41:06,2022-09-21 00:02:02,1,133,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +16948,OLDWO,2,2014-09-25 04:55:16,2014-10-31 09:45:11,2014-10-12 12:18:46,2,321.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +16949,SEVES,3,2018-06-27 13:51:47,2018-08-18 12:29:24,2018-06-28 19:35:23,3,100.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16950,FOLIG,2,2014-11-20 04:34:26,2014-12-03 06:59:50,2014-11-22 14:56:55,2,468,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +16951,SEVES,1,2020-12-25 11:42:01,2021-01-31 10:20:15,2021-01-05 01:30:03,1,445,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16952,BONAP,5,2017-07-02 13:07:45,2017-07-20 11:34:58,2017-07-08 22:32:26,1,444.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +16953,LEHMS,8,2023-07-01 02:21:18,2023-07-04 02:48:03,2023-07-18 18:00:42,3,290.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +16954,PERIC,2,2022-06-01 23:02:36,2022-06-05 18:53:15,2022-06-12 07:44:34,2,468.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16955,LAZYK,1,2015-06-19 12:30:47,2015-07-13 17:28:35,2015-06-20 06:58:30,3,72,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +16956,BLONP,4,2015-10-08 07:59:45,2015-10-12 02:18:03,2015-10-17 03:41:48,1,464.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +16957,HUNGC,4,2022-11-11 10:12:05,2022-11-15 17:39:27,2022-11-19 18:51:20,2,355.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16958,FOLKO,2,2012-07-11 20:26:28,2012-08-14 03:55:00,2012-07-21 13:39:55,3,234,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +16959,GROSR,1,2014-05-23 07:51:44,2014-06-23 17:08:01,2014-06-06 10:03:05,3,390.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +16960,COMMI,3,2018-03-19 11:22:42,2018-03-26 02:25:56,2018-03-26 16:01:27,2,153,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16961,MEREP,4,2019-10-31 03:06:59,2019-11-11 13:06:34,2019-11-02 14:38:10,2,53.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +16962,THECR,3,2019-04-13 11:32:59,2019-05-05 09:20:41,2019-04-16 16:43:07,3,193.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16963,BOLID,6,2014-01-28 07:27:56,2014-01-29 14:17:52,2014-02-19 20:32:25,1,186,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +16964,CENTC,8,2021-03-19 23:15:39,2021-04-03 13:17:25,2021-04-06 04:49:21,3,490,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +16965,PARIS,3,2021-01-12 08:30:01,2021-02-24 07:01:32,2021-02-03 12:50:03,3,468.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +16966,BOLID,3,2016-07-25 08:49:45,2016-08-24 05:40:08,2016-07-28 15:27:27,1,256.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +16967,CENTC,9,2015-11-21 15:27:57,2015-12-08 03:17:00,2015-11-22 07:37:40,3,171.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +16968,RATTC,3,2012-10-13 10:05:53,2012-10-28 20:07:11,2012-10-22 10:23:37,3,197.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +16969,OLDWO,5,2013-01-16 04:00:42,2013-01-27 05:08:01,2013-01-16 18:47:23,2,492,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16970,FRANS,3,2013-08-28 09:56:05,2013-08-28 18:42:50,2013-09-09 10:00:24,2,402.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +16971,DUMON,1,2017-03-06 21:24:57,2017-04-08 15:16:54,2017-03-10 17:27:58,2,205.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +16972,GOURL,1,2018-12-27 10:02:50,2019-01-21 07:21:04,2019-01-16 09:05:35,3,387.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +16973,BSBEV,1,2014-04-30 13:34:13,2014-06-01 00:56:40,2014-05-08 18:57:06,3,164.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +16974,FISSA,9,2013-04-01 06:55:00,2013-05-05 03:53:16,2013-04-01 13:27:43,1,456,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +16975,FAMIA,9,2021-04-16 08:34:12,2021-04-24 14:46:32,2021-05-02 20:06:02,3,386.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +16976,ISLAT,8,2018-03-02 16:41:52,2018-04-05 14:28:23,2018-03-06 17:20:33,2,155,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +16977,LILAS,5,2019-04-07 09:07:23,2019-04-24 12:18:07,2019-04-30 12:45:03,2,450,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16978,FRANR,4,2023-06-01 07:13:48,2023-07-21 04:32:25,2023-06-01 18:18:28,3,472,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +16979,COMMI,4,2023-07-13 17:10:02,2023-07-26 21:04:13,2023-07-14 09:33:27,2,245.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +16980,GREAL,7,2013-12-05 15:32:57,2014-01-16 17:36:05,2013-12-16 21:36:16,2,354.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +16981,ALFKI,3,2021-11-05 19:30:47,2021-11-11 22:37:21,2021-11-07 03:00:13,2,341.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +16982,THECR,2,2023-05-28 02:56:11,2023-07-07 11:56:41,2023-06-09 18:20:03,2,191,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +16983,GODOS,8,2017-12-21 21:40:29,2017-12-24 19:46:27,2017-12-22 17:24:56,1,64.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16984,TRADH,7,2017-10-24 03:47:37,2017-11-23 06:49:41,2017-10-27 02:26:06,2,49.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16985,BLAUS,1,2020-05-25 01:17:26,2020-06-09 21:46:02,2020-06-13 23:10:08,3,403.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +16986,BSBEV,7,2021-03-08 05:58:13,2021-03-27 19:23:35,2021-03-08 09:50:27,3,350.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +16987,ROMEY,2,2015-01-30 01:00:50,2015-02-08 05:43:58,2015-02-11 00:56:36,1,177.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +16988,SANTG,8,2022-08-20 02:00:10,2022-10-04 08:23:01,2022-08-30 23:17:54,1,440.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +16989,MAISD,6,2015-03-16 20:24:17,2015-04-29 06:16:20,2015-03-17 23:35:24,1,476.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +16990,SEVES,4,2021-02-08 14:12:09,2021-02-09 20:10:15,2021-02-08 14:57:27,3,387.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +16991,LACOR,6,2017-08-22 17:16:12,2017-08-27 19:07:28,2017-08-24 23:05:11,1,100.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +16992,AROUT,1,2013-12-21 04:34:10,2013-12-22 07:59:39,2014-01-07 14:00:52,3,181.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +16993,AROUT,5,2012-07-11 21:17:46,2012-08-09 15:07:27,2012-08-05 20:38:00,3,121.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +16994,GALED,4,2019-01-13 02:38:50,2019-01-16 14:27:14,2019-01-20 08:27:56,1,409.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +16995,VAFFE,4,2021-03-23 10:05:24,2021-04-10 20:18:23,2021-04-07 12:33:41,2,464.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16996,GALED,1,2019-09-25 09:42:26,2019-10-20 07:32:57,2019-10-01 05:06:34,2,158.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +16997,ROMEY,9,2018-12-18 11:31:55,2019-01-13 04:11:20,2018-12-27 00:49:48,1,365.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +16998,FISSA,5,2019-01-27 20:46:55,2019-03-08 01:02:49,2019-02-06 09:03:03,1,15.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +16999,MAISD,7,2014-10-18 10:47:16,2014-10-29 04:14:44,2014-10-26 03:47:05,2,475,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17000,BOTTM,4,2013-03-10 23:27:25,2013-03-20 04:24:11,2013-03-30 04:24:24,3,326.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17001,SPLIR,6,2018-06-02 17:05:48,2018-06-05 21:18:33,2018-06-06 13:18:10,1,457.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17002,GOURL,7,2013-04-22 22:19:36,2013-04-23 14:42:54,2013-05-05 07:41:03,1,39.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17003,COMMI,7,2022-09-24 04:15:59,2022-10-03 23:38:45,2022-10-02 04:40:39,3,395.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +17004,WHITC,5,2016-01-22 03:24:52,2016-01-28 14:19:13,2016-01-28 10:12:53,3,479.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17005,SPLIR,9,2016-09-15 20:15:13,2016-09-29 15:26:52,2016-09-20 02:17:02,1,43.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17006,FURIB,2,2021-03-28 08:30:58,2021-04-15 09:43:41,2021-03-30 20:55:24,1,414,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17007,PICCO,7,2017-05-09 17:39:56,2017-05-14 02:51:37,2017-05-10 22:02:00,3,421.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17008,BLAUS,7,2022-04-04 22:24:22,2022-04-11 11:12:34,2022-04-29 13:11:53,1,32,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17009,GALED,8,2022-03-05 21:55:59,2022-04-05 09:20:22,2022-03-10 08:16:06,1,109.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17010,THECR,8,2016-02-28 05:32:53,2016-02-28 13:50:08,2016-03-12 22:16:27,2,419.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17011,HILAA,1,2016-04-09 00:48:28,2016-05-22 13:30:16,2016-04-24 09:42:29,2,62.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17012,PRINI,9,2022-05-11 16:05:14,2022-05-26 07:31:41,2022-05-12 09:42:36,2,510,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17013,RICAR,4,2013-07-28 19:59:26,2013-07-30 23:20:16,2013-08-02 01:16:03,3,210.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17014,RATTC,2,2015-04-26 06:02:40,2015-05-13 04:14:04,2015-05-05 22:24:11,2,439.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17015,ALFKI,8,2017-12-15 23:55:36,2018-01-22 00:12:51,2017-12-19 16:58:03,2,367.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17016,GOURL,5,2022-10-15 09:58:14,2022-11-04 01:06:45,2022-10-22 16:38:24,1,231,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17017,FISSA,5,2014-07-23 08:16:17,2014-08-10 15:15:47,2014-07-26 17:25:51,3,154.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17018,WILMK,4,2019-04-28 03:02:58,2019-05-23 03:24:33,2019-04-28 18:00:19,3,326.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17019,VALON,9,2016-07-25 11:26:29,2016-08-09 00:13:36,2016-08-15 09:07:37,3,133,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17020,VALON,9,2023-06-14 06:01:01,2023-06-27 08:13:08,2023-06-20 15:51:20,2,493,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17021,PARIS,6,2022-01-25 03:28:21,2022-03-07 13:39:28,2022-01-27 20:28:20,2,492.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17022,LINOD,7,2022-10-08 14:42:55,2022-10-19 12:21:43,2022-10-17 22:35:54,1,284.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17023,BSBEV,3,2018-02-04 14:24:08,2018-02-14 10:57:30,2018-02-10 10:31:30,2,118,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17024,WELLI,3,2014-05-28 12:54:01,2014-06-12 19:40:44,2014-06-02 10:46:54,2,69.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17025,CACTU,8,2013-10-23 17:06:00,2013-11-17 12:27:27,2013-10-26 10:37:44,1,372.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17026,ISLAT,2,2022-05-03 06:42:41,2022-05-09 18:38:53,2022-05-17 02:56:45,2,167.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +17027,BLAUS,2,2021-02-24 21:23:27,2021-03-27 22:42:32,2021-03-02 00:28:09,3,263.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17028,OLDWO,3,2013-12-08 11:47:09,2014-01-19 05:02:37,2013-12-08 20:09:13,3,470.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17029,SAVEA,1,2016-11-25 02:11:48,2017-01-21 14:31:55,2016-12-01 13:58:17,3,399,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17030,SIMOB,3,2021-11-18 03:53:11,2021-11-18 13:57:20,2021-11-18 11:13:10,2,390.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17031,HUNGO,7,2021-12-23 11:13:24,2022-01-03 01:55:13,2021-12-27 19:32:09,3,385.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17032,LEHMS,9,2015-02-24 13:32:16,2015-02-25 22:13:32,2015-03-03 20:44:36,1,271,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17033,LETSS,7,2013-05-12 11:41:36,2013-06-02 08:30:56,2013-05-22 13:53:01,2,297.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17034,CACTU,5,2019-10-19 00:24:44,2019-12-01 22:22:10,2019-10-21 07:41:17,2,149.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17035,OTTIK,5,2015-12-27 21:18:17,2016-01-08 17:22:36,2016-01-10 17:30:37,2,325.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17036,VICTE,2,2014-06-01 22:32:55,2014-06-22 02:43:11,2014-06-05 14:30:25,3,128.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17037,ANATR,9,2019-09-11 14:07:02,2019-09-21 03:05:08,2019-09-13 00:08:57,3,58.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17038,OLDWO,7,2020-05-12 12:15:29,2020-05-28 03:44:59,2020-05-15 17:01:46,2,44.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17039,CHOPS,1,2015-03-14 21:44:21,2015-03-28 00:48:58,2015-03-17 23:13:25,3,263.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17040,RATTC,7,2017-01-21 02:07:51,2017-01-24 11:27:49,2017-02-08 21:52:55,2,436.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17041,DRACD,9,2021-04-30 18:32:02,2021-05-03 16:40:16,2021-05-14 12:20:43,3,105.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17042,COMMI,4,2016-08-06 23:54:29,2016-08-13 06:12:25,2016-08-11 00:39:12,1,24.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17043,BOTTM,9,2022-03-24 13:09:50,2022-04-14 08:48:20,2022-03-26 01:31:58,3,55.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17044,QUEDE,2,2016-03-06 11:55:44,2016-03-21 08:25:17,2016-03-21 03:01:45,3,121.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17045,LEHMS,2,2021-10-30 15:08:29,2021-11-17 22:12:41,2021-11-02 10:26:13,2,33.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17046,SPECD,6,2015-07-19 16:49:55,2015-07-30 14:21:10,2015-07-23 08:33:45,3,400,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17047,ANTON,1,2016-05-05 23:10:21,2016-06-05 01:10:45,2016-05-09 02:20:22,1,240.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17048,ROMEY,5,2019-05-07 20:17:45,2019-05-20 00:04:54,2019-05-14 18:03:10,3,377.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17049,LAZYK,7,2023-02-23 07:37:38,2023-03-09 14:36:18,2023-03-14 21:59:55,1,377.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17050,GALED,4,2016-08-28 20:38:05,2016-09-07 20:00:03,2016-09-25 21:17:52,2,85,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17051,Val2 ,6,2023-05-20 04:25:58,2023-05-29 15:55:38,2023-06-10 18:16:51,3,360.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17052,RICSU,8,2017-04-08 19:50:26,2017-04-14 11:20:40,2017-04-10 00:19:43,1,274.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17053,ISLAT,2,2020-03-23 16:38:23,2020-04-14 19:32:12,2020-04-05 20:34:29,3,374.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17054,VINET,7,2020-08-24 02:31:04,2020-09-16 14:19:52,2020-09-10 22:43:04,2,193.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17055,QUICK,9,2019-05-24 19:11:24,2019-07-12 19:50:20,2019-06-12 22:09:23,1,77.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17056,BSBEV,1,2015-05-01 13:11:23,2015-05-24 21:56:10,2015-05-10 10:51:25,1,262.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17057,MAISD,7,2019-03-07 10:36:21,2019-03-13 07:19:29,2019-03-08 08:04:33,2,515.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17058,HILAA,6,2016-07-25 15:59:30,2016-08-25 22:55:06,2016-08-16 22:27:48,2,354.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17059,BOTTM,5,2013-06-02 12:39:36,2013-06-15 07:21:55,2013-06-04 10:59:53,2,483,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +17060,WHITC,9,2013-08-29 08:22:08,2013-09-17 03:10:28,2013-09-01 17:03:36,1,244.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17061,OCEAN,6,2014-03-22 19:42:45,2014-04-07 04:02:20,2014-03-26 23:37:02,3,298.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17062,PERIC,4,2016-02-16 23:52:49,2016-03-11 16:31:14,2016-03-04 05:36:40,3,135.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17063,BLONP,8,2021-12-06 05:38:39,2021-12-18 20:37:55,2021-12-11 16:10:33,3,508.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17064,PARIS,9,2018-09-19 09:35:51,2018-10-09 20:04:36,2018-10-12 04:03:23,3,70.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17065,MAISD,7,2017-10-09 03:22:11,2017-11-12 01:30:44,2017-10-29 23:30:58,1,443,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17066,BLONP,4,2015-12-07 23:38:28,2015-12-12 21:36:14,2015-12-16 06:34:13,3,345.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17067,WOLZA,2,2023-03-09 22:43:38,2023-04-17 01:13:46,2023-03-10 11:39:11,1,424,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17068,LACOR,7,2021-03-29 20:00:46,2021-04-18 17:48:28,2021-03-31 07:27:14,2,132.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17069,ISLAT,3,2018-01-23 04:04:23,2018-01-26 01:49:36,2018-01-27 23:47:50,3,480.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17070,TRADH,9,2015-11-12 12:15:03,2015-11-15 00:27:33,2015-11-13 15:13:12,2,282.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +17071,SUPRD,2,2023-05-07 12:08:35,2023-05-16 20:10:48,2023-05-10 01:32:32,2,133.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17072,SANTG,7,2015-12-06 13:39:55,2016-01-26 05:42:02,2015-12-18 10:56:27,2,24.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17073,SUPRD,8,2021-10-09 05:30:25,2021-10-23 00:24:18,2021-10-09 22:07:49,1,61.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +17074,AROUT,7,2023-09-04 03:43:14,2023-09-13 02:24:44,2023-09-23 10:10:12,2,363.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17075,LETSS,9,2013-01-23 08:32:54,2013-02-02 01:15:28,2013-01-24 09:05:27,3,165.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17076,TORTU,8,2012-09-30 10:39:34,2012-10-10 08:31:06,2012-10-03 16:41:31,3,100.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17077,FRANR,4,2018-08-12 05:17:13,2018-08-18 11:52:25,2018-08-15 06:24:05,1,137,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17078,GREAL,9,2023-08-24 07:56:55,2023-08-26 05:15:37,2023-09-06 06:07:25,1,98.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +17079,LAZYK,9,2014-04-22 14:55:47,2014-05-23 21:28:56,2014-04-27 05:10:30,3,138.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17080,ROMEY,3,2019-12-24 17:41:11,2020-01-02 08:21:36,2020-01-01 18:34:00,2,184.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17081,CACTU,5,2022-07-12 02:47:24,2022-08-03 15:21:53,2022-08-01 05:15:10,3,404,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17082,TRADH,2,2018-11-24 08:30:53,2018-12-17 04:39:19,2018-12-17 22:02:49,3,76.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17083,FRANR,8,2015-09-27 11:05:40,2015-10-15 03:16:14,2015-10-13 12:36:31,2,284.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +17084,ROMEY,1,2022-03-23 15:58:20,2022-04-03 15:47:26,2022-04-02 22:09:12,2,72,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17085,HUNGO,3,2021-07-14 15:50:33,2021-08-01 01:07:46,2021-07-25 02:21:34,2,146.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17086,RICAR,4,2020-08-27 11:10:34,2020-09-04 20:11:41,2020-09-07 12:57:26,3,458.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17087,TOMSP,7,2019-07-03 15:02:36,2019-07-29 12:44:47,2019-07-09 12:13:15,2,138.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17088,MORGK,3,2012-12-19 22:36:27,2013-01-03 18:09:11,2012-12-26 04:02:56,3,180.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17089,FOLKO,8,2023-05-19 18:30:56,2023-05-20 21:15:42,2023-06-01 03:04:58,1,345,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17090,FAMIA,3,2022-01-20 02:08:42,2022-02-01 04:03:04,2022-01-25 01:17:02,2,141.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17091,TORTU,3,2022-12-22 08:36:07,2023-01-03 14:44:13,2023-01-07 03:23:25,2,183,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17092,WHITC,8,2022-12-17 22:14:12,2023-01-02 16:33:57,2022-12-28 14:38:08,1,327.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17093,FRANK,1,2013-11-14 00:37:27,2013-11-28 12:22:15,2013-11-16 08:07:15,3,37.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17094,LAZYK,6,2021-01-29 11:36:23,2021-03-05 17:00:25,2021-02-04 13:32:22,3,207.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17095,HUNGO,1,2022-07-26 03:04:49,2022-08-06 14:50:48,2022-07-28 20:48:57,3,370.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17096,PRINI,1,2017-08-19 10:41:05,2017-09-18 16:26:12,2017-08-20 02:47:07,3,224.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17097,FURIB,4,2021-11-07 22:46:36,2021-11-23 07:22:46,2021-11-29 15:34:39,1,76.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17098,FRANK,4,2023-07-24 19:24:31,2023-08-07 02:23:09,2023-08-16 08:13:33,2,28.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17099,GALED,7,2020-01-07 18:44:58,2020-01-22 00:30:33,2020-01-08 08:48:43,1,108,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17100,WARTH,9,2013-10-29 03:26:24,2013-11-14 04:37:19,2013-11-09 17:55:56,3,437.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17101,ROMEY,1,2016-05-24 22:43:26,2016-06-09 04:12:02,2016-06-01 15:57:09,2,154.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17102,RICSU,8,2014-09-18 19:55:45,2014-09-22 05:31:41,2014-10-05 11:32:59,2,219.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17103,ANATR,2,2015-10-21 04:10:03,2015-11-02 15:24:55,2015-10-22 17:51:18,1,250.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17104,CENTC,5,2018-11-21 19:35:22,2018-12-18 20:37:07,2018-12-05 23:44:02,3,172.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17105,PRINI,7,2023-10-23 06:17:48,2023-11-01 21:26:08,2023-10-26 15:03:06,2,428.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17106,LILAS,1,2018-08-28 12:00:08,2018-09-03 01:05:15,2018-09-06 14:00:37,3,146.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +17107,ALFKI,3,2013-06-11 01:53:21,2013-06-17 13:07:31,2013-06-13 16:22:33,3,423.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17108,LAMAI,8,2018-05-07 14:13:15,2018-05-13 06:35:03,2018-05-09 06:35:07,1,100.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17109,WARTH,3,2014-03-08 15:39:41,2014-03-13 01:31:03,2014-03-13 16:33:23,1,477.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17110,SAVEA,9,2018-12-11 08:48:46,2019-01-08 21:35:24,2018-12-11 23:55:53,3,206.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17111,SPLIR,4,2016-06-29 07:19:44,2016-08-04 17:55:23,2016-07-01 17:33:22,2,249,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17112,SAVEA,2,2017-04-11 21:24:18,2017-05-07 02:24:37,2017-04-13 01:26:34,2,169.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17113,GREAL,1,2013-05-04 15:40:11,2013-05-22 13:49:20,2013-05-08 18:47:35,3,41,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17114,TORTU,6,2016-01-02 06:00:29,2016-01-18 14:40:53,2016-01-20 10:26:25,1,437.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17115,GROSR,8,2019-08-05 10:09:51,2019-08-22 08:03:33,2019-08-14 07:01:50,3,191,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17116,BLONP,8,2018-06-15 15:10:16,2018-06-18 16:00:05,2018-07-02 10:36:37,1,385.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17117,HUNGC,3,2020-08-25 07:39:00,2020-09-10 22:32:27,2020-08-28 11:01:21,2,432.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17118,RICAR,8,2015-10-10 15:38:22,2015-10-19 19:53:20,2015-10-13 17:08:06,1,187,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17119,FAMIA,3,2012-09-19 05:35:51,2012-10-12 17:32:19,2012-09-21 14:57:48,2,223.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17120,ROMEY,2,2022-01-31 19:42:25,2022-02-18 01:53:15,2022-02-01 18:18:44,2,387.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17121,WANDK,3,2013-03-24 19:51:51,2013-04-20 07:37:05,2013-04-09 07:16:43,1,340.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17122,TORTU,6,2013-06-24 08:20:22,2013-06-30 04:12:26,2013-07-08 17:09:00,3,144.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17123,NORTS,2,2012-12-02 03:27:34,2012-12-03 13:23:26,2012-12-05 18:36:08,1,527.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17124,BSBEV,9,2017-08-13 20:10:48,2017-08-17 03:14:55,2017-08-20 04:46:04,2,501.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17125,CONSH,2,2022-07-10 11:52:54,2022-07-17 22:04:35,2022-07-10 18:07:44,1,238.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17126,TRAIH,4,2023-09-23 20:01:49,2023-10-21 05:11:38,2023-10-16 17:03:02,3,364.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17127,FAMIA,5,2017-11-04 19:05:56,2017-11-13 22:55:44,2017-11-06 15:57:00,3,243.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17128,FRANR,6,2023-08-19 10:19:42,2023-09-02 06:29:45,2023-08-22 23:07:14,3,70,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17129,RATTC,4,2017-10-22 06:13:22,2017-12-07 05:29:46,2017-10-25 01:20:17,2,179.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17130,BLAUS,9,2015-12-02 02:50:16,2016-01-01 05:10:24,2015-12-26 19:54:58,1,150.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17131,THEBI,5,2018-01-28 00:32:54,2018-02-20 20:26:35,2018-02-13 10:57:21,3,109.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17132,DRACD,6,2020-02-21 13:20:06,2020-02-28 22:44:38,2020-03-12 19:37:03,1,305.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17133,GALED,6,2015-09-14 02:09:04,2015-09-29 13:14:47,2015-09-14 22:10:55,2,181.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17134,THEBI,4,2018-10-28 00:28:58,2018-12-13 02:56:27,2018-11-22 15:37:46,3,70,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17135,GODOS,4,2020-05-04 14:47:26,2020-05-24 11:25:59,2020-05-23 15:12:21,2,147,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17136,LEHMS,2,2018-05-05 16:32:02,2018-05-22 20:34:54,2018-05-08 03:52:36,1,467.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17137,FRANS,5,2015-06-07 00:25:14,2015-07-01 21:14:22,2015-06-19 07:35:26,3,401.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17138,PICCO,7,2020-01-15 20:23:10,2020-01-18 09:14:05,2020-02-02 13:36:56,2,154.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17139,MAISD,7,2014-05-19 12:17:25,2014-06-12 18:33:13,2014-05-31 00:59:29,1,158.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17140,KOENE,9,2015-08-01 11:14:12,2015-09-24 03:28:19,2015-08-01 14:44:35,3,379,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17141,ANATR,7,2020-04-07 12:07:02,2020-04-17 14:19:35,2020-04-24 06:22:36,3,208,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17142,LEHMS,3,2016-04-09 00:02:51,2016-04-10 06:00:02,2016-04-11 09:40:39,1,59,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17143,HUNGC,2,2021-01-22 11:42:36,2021-01-24 14:55:33,2021-02-03 06:54:33,1,296.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17144,HUNGO,6,2015-06-01 08:20:03,2015-06-03 23:27:35,2015-06-03 02:53:51,1,243.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17145,THEBI,2,2023-01-20 21:58:30,2023-02-08 23:14:33,2023-01-21 16:47:34,2,338.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17146,THECR,4,2013-04-23 17:19:47,2013-04-27 20:30:16,2013-04-27 17:08:05,1,26.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17147,CHOPS,5,2021-12-11 14:32:25,2021-12-31 15:06:31,2021-12-15 11:46:55,3,169,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17148,RANCH,4,2020-09-10 11:28:25,2020-09-11 07:21:19,2020-09-19 20:16:28,3,459.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17149,LILAS,5,2014-07-29 19:18:22,2014-08-05 13:35:57,2014-08-15 12:53:57,3,232.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17150,SANTG,8,2019-05-05 02:04:52,2019-05-09 00:37:17,2019-05-07 20:33:56,2,507.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17151,AROUT,8,2015-04-22 03:07:48,2015-04-24 16:43:12,2015-04-24 20:52:34,1,355.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17152,TOMSP,7,2017-01-16 10:41:44,2017-01-23 07:20:14,2017-01-25 14:02:07,3,456.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17153,BLONP,3,2018-07-25 08:46:03,2018-08-26 02:18:48,2018-07-25 17:11:52,2,374.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17154,LEHMS,2,2017-02-24 21:36:16,2017-03-23 09:28:40,2017-03-01 04:42:11,1,32,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17155,NORTS,2,2013-08-24 08:01:56,2013-10-01 10:09:27,2013-09-01 01:07:01,1,253.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17156,QUEEN,4,2012-07-27 00:21:28,2012-07-29 05:36:51,2012-07-28 18:05:12,3,56,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17157,BOTTM,6,2018-01-26 10:14:20,2018-03-08 07:21:56,2018-01-31 09:12:54,2,105,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17158,QUEDE,3,2016-11-01 01:46:28,2016-12-08 13:55:12,2016-11-01 05:03:28,3,88,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17159,RANCH,9,2022-01-12 06:32:12,2022-01-20 20:00:41,2022-01-20 12:33:57,2,86.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17160,TORTU,1,2015-05-29 03:33:43,2015-06-07 21:44:29,2015-05-30 00:21:51,2,461.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17161,BSBEV,5,2016-12-17 19:42:09,2016-12-31 10:46:27,2017-01-03 22:42:45,3,62.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17162,BLAUS,8,2013-03-19 13:39:35,2013-03-24 05:17:43,2013-04-02 16:14:09,2,410.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17163,CENTC,3,2023-04-08 20:57:17,2023-04-26 05:32:58,2023-04-21 15:30:01,2,182.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17164,OCEAN,3,2016-07-13 11:07:27,2016-08-10 12:43:11,2016-07-18 21:57:13,3,471.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17165,LAZYK,1,2020-03-15 04:27:19,2020-04-10 11:56:00,2020-04-11 19:28:13,3,473.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17166,BSBEV,8,2017-05-05 08:22:36,2017-05-13 07:58:00,2017-05-13 13:14:05,2,111.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17167,WOLZA,6,2013-09-17 05:25:20,2013-10-07 06:33:50,2013-09-28 06:40:07,1,54.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17168,LINOD,7,2016-04-05 09:35:49,2016-04-13 23:03:28,2016-04-23 06:27:57,1,250,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +17169,GOURL,3,2015-03-18 15:28:11,2015-03-31 16:12:40,2015-03-25 15:11:30,1,214.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17170,THEBI,4,2013-04-25 13:47:51,2013-04-26 21:08:02,2013-04-26 18:59:51,1,367.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17171,FOLKO,8,2016-10-28 15:10:38,2016-11-21 17:03:57,2016-10-31 12:18:21,1,147.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17172,ROMEY,9,2021-01-14 06:51:03,2021-01-23 02:48:18,2021-01-16 12:49:15,3,390.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17173,FAMIA,8,2023-06-22 00:37:50,2023-06-30 07:15:51,2023-07-18 02:25:39,2,412.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17174,VINET,9,2017-09-16 12:39:29,2017-10-04 19:46:12,2017-10-06 17:34:27,3,44,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17175,VICTE,5,2015-05-22 09:15:39,2015-05-24 20:32:35,2015-06-05 09:35:47,1,70,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17176,ANTON,3,2020-07-16 08:54:45,2020-08-10 23:42:08,2020-07-28 08:58:26,3,381.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17177,SPECD,9,2022-01-18 10:14:42,2022-02-23 09:26:47,2022-01-23 02:26:03,2,109.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17178,RATTC,5,2012-12-10 23:04:29,2013-01-13 18:35:26,2012-12-19 03:13:57,2,60.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17179,HUNGC,6,2021-01-07 07:42:29,2021-01-15 01:22:20,2021-01-13 10:41:37,1,398.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17180,SPECD,3,2022-11-04 09:21:29,2022-12-16 19:33:39,2022-11-04 21:14:57,1,449,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17181,RICAR,7,2023-02-21 23:21:55,2023-03-09 00:59:35,2023-03-11 19:45:00,2,150.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17182,REGGC,9,2015-05-06 09:04:35,2015-05-11 14:40:54,2015-05-15 14:00:14,2,75.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17183,CHOPS,4,2016-04-24 04:32:06,2016-05-27 21:01:37,2016-04-27 18:49:54,3,379.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +17184,LETSS,7,2020-08-20 22:04:53,2020-09-13 17:43:19,2020-08-22 19:51:55,3,397.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17185,LINOD,7,2014-05-03 08:59:19,2014-05-13 07:42:43,2014-05-24 13:42:51,2,367.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +17186,LAMAI,1,2017-05-10 17:38:21,2017-06-09 21:47:05,2017-05-18 14:01:25,2,265.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17187,HANAR,5,2015-11-20 18:48:52,2015-12-29 12:25:35,2015-12-10 00:22:57,1,172.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17188,THEBI,6,2020-02-13 03:29:33,2020-03-20 06:25:59,2020-02-25 19:28:38,3,124.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17189,QUEEN,4,2015-02-04 15:00:17,2015-03-03 07:19:42,2015-02-18 22:47:50,3,421.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17190,PARIS,4,2018-10-25 20:02:05,2018-11-13 18:39:07,2018-11-03 04:46:28,1,334,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17191,ROMEY,5,2016-12-01 08:21:34,2016-12-27 07:12:41,2016-12-06 06:05:08,1,183.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17192,PRINI,4,2014-12-26 15:14:32,2015-01-03 08:28:06,2015-01-21 00:27:14,3,170.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17193,GOURL,6,2018-06-25 09:13:44,2018-07-03 10:45:31,2018-07-04 15:35:31,2,462,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17194,ALFKI,7,2020-02-21 14:43:38,2020-04-09 17:04:18,2020-03-01 20:06:39,3,374.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17195,LINOD,9,2021-11-20 18:09:20,2021-11-23 19:41:17,2021-12-05 14:53:51,1,311.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17196,WARTH,2,2016-03-04 02:39:37,2016-03-27 10:16:12,2016-03-04 07:32:19,3,131,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17197,BOLID,7,2013-11-14 08:36:12,2013-11-18 16:33:35,2013-11-23 13:44:36,3,486.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17198,PICCO,4,2021-07-06 04:45:52,2021-07-14 00:40:25,2021-07-06 09:28:59,2,190.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17199,QUEDE,3,2022-02-16 22:08:32,2022-03-24 15:00:02,2022-02-19 03:59:05,1,147.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17200,SANTG,4,2018-01-28 21:32:22,2018-03-16 13:36:12,2018-01-29 05:22:18,2,176.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17201,BLAUS,7,2018-08-02 12:22:32,2018-08-07 23:28:15,2018-08-09 04:58:25,2,213.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17202,WOLZA,7,2015-06-09 15:06:00,2015-06-18 10:06:34,2015-06-29 12:25:58,1,234.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17203,THEBI,8,2022-08-07 07:35:02,2022-08-20 03:22:10,2022-08-12 14:15:00,3,325.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17204,HUNGC,2,2021-03-22 18:15:58,2021-03-28 02:37:42,2021-03-23 09:48:21,2,78.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17205,HUNGC,6,2014-08-10 20:27:44,2014-08-24 20:50:34,2014-08-27 19:51:25,3,72.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17206,TOMSP,1,2018-01-29 22:16:52,2018-01-30 09:33:53,2018-02-01 13:19:59,2,282.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17207,GREAL,4,2022-09-28 07:06:29,2022-11-19 10:50:39,2022-10-08 16:25:22,2,62.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17208,OTTIK,4,2014-11-06 04:08:48,2014-11-15 08:01:27,2014-11-08 23:51:17,1,480,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17209,RANCH,5,2015-05-20 00:34:09,2015-05-29 10:06:16,2015-05-30 16:05:44,3,112,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17210,HILAA,9,2016-11-13 09:49:55,2016-11-17 12:48:09,2016-11-30 10:44:47,1,261.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17211,HILAA,8,2021-11-28 00:53:24,2021-12-02 12:21:53,2021-11-30 08:05:03,1,228.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17212,HUNGC,8,2018-03-09 14:02:04,2018-04-17 18:39:47,2018-03-27 13:04:41,1,119.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17213,FISSA,8,2017-11-11 22:33:05,2017-12-02 21:09:02,2017-11-15 01:56:49,1,170.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17214,RICAR,7,2022-01-25 17:25:44,2022-02-24 05:38:32,2022-02-05 08:15:05,3,380.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17215,SAVEA,4,2019-09-18 16:27:36,2019-10-10 13:41:41,2019-09-21 02:39:23,3,181.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17216,SAVEA,2,2018-02-12 17:05:40,2018-02-15 10:01:16,2018-02-14 11:22:50,2,448.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17217,FRANK,6,2016-01-09 12:27:57,2016-02-13 08:12:24,2016-01-29 04:54:01,2,424.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17218,VAFFE,3,2018-05-23 16:33:28,2018-05-28 04:18:10,2018-05-30 18:11:10,2,165.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17219,VALON,7,2023-09-28 03:04:42,2023-10-15 21:12:01,2023-10-20 10:08:24,1,338.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +17220,LAMAI,3,2013-03-23 16:42:11,2013-03-29 13:05:36,2013-04-06 11:34:01,2,32.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17221,REGGC,9,2020-08-22 14:33:04,2020-09-05 00:27:45,2020-08-30 04:10:14,2,322.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17222,REGGC,7,2020-07-24 01:05:01,2020-07-25 03:43:43,2020-07-27 13:42:00,3,257.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17223,OTTIK,7,2022-03-03 08:26:18,2022-04-07 07:29:47,2022-03-11 18:13:26,3,88.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17224,TRAIH,2,2015-02-04 10:13:39,2015-02-25 21:31:13,2015-02-06 05:18:44,2,196,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17225,NORTS,8,2017-10-29 08:31:05,2017-12-07 04:44:05,2017-11-02 20:29:44,2,15.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17226,WARTH,9,2013-05-03 22:33:03,2013-05-23 06:45:23,2013-05-04 04:06:39,2,352.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17227,CENTC,7,2020-09-23 05:53:24,2020-10-07 13:32:30,2020-09-23 10:43:51,3,44.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17228,FOLIG,9,2021-11-06 21:07:51,2021-11-20 22:19:17,2021-11-09 02:41:36,2,502.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17229,BOTTM,2,2018-04-18 20:18:06,2018-05-09 06:29:42,2018-04-19 16:53:27,1,376.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17230,HANAR,9,2018-01-03 12:43:19,2018-01-04 22:35:53,2018-01-18 10:08:18,1,154,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17231,VINET,6,2016-03-10 09:53:44,2016-04-25 16:21:02,2016-03-16 03:30:39,2,356.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17232,PARIS,3,2021-10-20 09:55:36,2021-10-27 23:54:27,2021-10-27 06:24:13,1,111,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17233,GROSR,1,2021-06-16 01:49:57,2021-07-01 14:48:01,2021-06-16 03:32:56,2,398.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17234,RANCH,3,2021-10-01 12:25:40,2021-10-09 15:17:02,2021-10-25 05:23:54,3,389.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17235,HUNGC,3,2012-08-10 20:38:10,2012-08-30 09:20:58,2012-08-16 07:00:18,2,151,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17236,OLDWO,2,2017-02-24 06:18:56,2017-04-16 03:42:35,2017-02-27 14:34:14,2,96.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17237,MEREP,9,2022-07-07 19:57:05,2022-07-09 20:08:03,2022-07-08 20:23:28,3,407,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17238,SUPRD,6,2015-10-12 08:24:26,2015-10-16 11:07:04,2015-10-15 22:49:59,3,113.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17239,QUEDE,5,2020-01-08 01:31:27,2020-02-01 11:24:38,2020-01-19 14:34:26,1,291.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17240,ISLAT,7,2018-09-23 20:07:46,2018-09-26 03:49:25,2018-10-10 17:31:09,3,124,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17241,LILAS,9,2013-11-19 08:08:32,2013-12-04 08:01:50,2013-11-23 11:16:41,1,39.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17242,BONAP,7,2022-10-20 14:27:48,2022-11-11 13:08:39,2022-11-09 03:44:48,2,443,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17243,ALFKI,8,2022-04-15 18:48:12,2022-05-23 21:49:03,2022-04-20 21:36:53,3,131.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17244,PICCO,5,2017-12-16 09:55:05,2018-01-12 02:44:09,2017-12-25 15:50:30,2,258.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17245,NORTS,3,2021-10-03 04:28:49,2021-10-26 15:59:59,2021-10-18 07:00:01,2,121.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17246,SPECD,5,2021-07-24 19:17:45,2021-07-30 08:15:05,2021-07-29 01:29:15,3,497.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17247,FRANS,7,2017-10-08 06:54:26,2017-10-24 01:59:22,2017-10-14 14:44:02,1,261.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17248,BLONP,2,2017-08-23 22:52:55,2017-08-26 18:01:18,2017-08-25 20:39:34,3,238.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17249,BOLID,4,2021-09-20 00:46:04,2021-10-17 01:56:32,2021-09-22 00:32:41,3,446.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17250,Val2 ,9,2014-12-27 22:53:16,2015-01-16 16:55:31,2015-01-11 06:14:35,2,320,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17251,BSBEV,6,2014-08-12 05:14:50,2014-08-15 20:53:55,2014-08-12 05:49:42,3,359.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17252,HUNGO,5,2021-05-10 18:03:36,2021-05-13 01:39:53,2021-05-14 09:40:00,1,203.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17253,GROSR,2,2017-06-07 13:21:55,2017-07-05 17:49:11,2017-06-29 11:00:49,1,439.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17254,PICCO,8,2014-12-13 23:20:55,2015-01-03 05:26:57,2014-12-14 06:44:35,1,276.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17255,LILAS,7,2022-02-17 15:28:30,2022-02-28 01:08:01,2022-02-25 12:38:54,1,22.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17256,TOMSP,1,2018-11-13 10:26:51,2018-11-19 00:08:16,2018-12-01 14:14:08,1,400.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17257,COMMI,1,2023-02-22 23:00:43,2023-03-17 08:43:50,2023-02-28 01:04:33,2,282.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17258,ALFKI,4,2019-10-30 14:25:02,2019-11-18 09:30:10,2019-11-09 07:42:08,3,137.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17259,QUEDE,1,2017-12-03 02:52:02,2017-12-04 16:00:47,2017-12-09 00:29:58,2,274.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17260,LAUGB,6,2019-02-21 08:05:30,2019-03-10 12:39:26,2019-03-06 00:32:58,3,61.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17261,EASTC,8,2015-09-04 10:06:52,2015-09-19 18:47:31,2015-09-10 15:52:19,2,217.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17262,BLONP,6,2019-12-23 11:03:05,2020-01-18 19:22:22,2019-12-29 12:44:30,3,37.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17263,RATTC,7,2014-02-12 16:59:34,2014-02-23 18:43:05,2014-02-23 12:06:20,3,63,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17264,TRADH,1,2017-08-13 13:52:26,2017-08-24 00:35:08,2017-08-17 04:27:17,3,524.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17265,FOLIG,7,2014-10-04 02:19:04,2014-10-15 03:23:19,2014-10-07 16:51:13,3,34,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17266,OTTIK,1,2022-07-27 20:35:24,2022-07-27 22:46:32,2022-08-08 11:42:15,2,473.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17267,SPLIR,3,2017-03-15 07:16:26,2017-04-05 17:40:47,2017-03-16 12:50:16,1,96.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17268,GALED,5,2023-01-06 08:45:07,2023-01-08 23:35:58,2023-01-06 21:37:39,2,394.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17269,DRACD,4,2019-09-18 06:13:13,2019-09-25 10:53:38,2019-09-19 15:57:52,3,27.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17270,GREAL,8,2019-01-17 14:29:17,2019-01-20 15:47:03,2019-01-19 06:29:35,2,540,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17271,OCEAN,8,2015-01-01 06:31:01,2015-01-07 04:35:42,2015-01-05 00:34:17,1,140.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17272,THECR,9,2015-11-11 06:36:25,2015-12-01 03:42:20,2015-11-19 18:52:38,3,197.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17273,FRANR,8,2017-07-12 03:38:37,2017-07-21 12:34:15,2017-07-31 06:57:20,1,104.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17274,TORTU,6,2015-06-27 14:38:25,2015-06-29 06:37:03,2015-07-09 01:04:28,2,31,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17275,CACTU,4,2022-01-24 07:04:29,2022-02-18 15:16:17,2022-02-08 12:31:57,2,275.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17276,VICTE,1,2023-06-09 19:22:08,2023-06-27 10:48:24,2023-07-01 12:33:56,1,246.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17277,VALON,3,2020-05-14 03:16:36,2020-05-24 16:06:14,2020-05-17 13:09:40,2,244.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17278,BOTTM,5,2018-07-21 22:31:48,2018-08-04 08:21:59,2018-07-26 12:48:01,1,154.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17279,Val2 ,9,2012-12-13 09:54:23,2012-12-22 06:09:26,2012-12-15 10:40:22,2,380.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17280,CACTU,2,2019-09-19 11:12:26,2019-09-22 16:09:11,2019-09-26 01:12:09,2,190.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17281,TRADH,2,2017-09-01 14:44:42,2017-09-23 19:44:03,2017-09-23 23:08:43,1,48.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17282,HUNGC,6,2014-01-06 06:21:42,2014-01-30 19:23:11,2014-01-13 05:01:13,2,269.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17283,COMMI,9,2021-08-16 00:53:57,2021-08-26 16:32:36,2021-08-16 08:31:56,2,446.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17284,PARIS,5,2012-09-22 12:43:43,2012-10-17 18:39:57,2012-10-03 16:29:16,2,214.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +17285,ISLAT,8,2018-03-27 19:20:28,2018-04-11 16:03:54,2018-03-31 08:16:27,3,504.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17286,VAFFE,9,2023-01-11 18:52:46,2023-01-13 05:20:32,2023-01-28 12:10:28,1,433.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17287,BONAP,4,2020-11-06 06:39:20,2020-11-21 02:39:42,2020-11-07 20:55:19,1,340.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17288,ANTON,3,2019-06-14 02:24:16,2019-06-22 03:58:59,2019-07-01 16:05:53,2,407,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17289,FRANS,5,2015-11-04 07:18:21,2015-11-05 01:39:20,2015-11-08 20:55:37,1,158,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17290,QUEEN,3,2020-07-14 17:07:12,2020-07-23 04:31:42,2020-08-01 06:38:58,3,154.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17291,VICTE,8,2020-02-15 23:07:07,2020-03-30 17:54:10,2020-02-20 12:32:41,1,470,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17292,FURIB,6,2019-05-04 08:28:29,2019-05-18 15:11:50,2019-05-17 08:37:39,2,302,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17293,FOLIG,4,2012-10-21 12:00:29,2012-11-20 17:41:16,2012-10-22 06:59:08,1,63.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17294,TRAIH,5,2017-02-22 14:22:59,2017-03-25 10:54:54,2017-03-06 09:20:58,2,286,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17295,SUPRD,2,2017-02-28 09:36:06,2017-03-08 09:59:50,2017-03-02 22:20:20,2,34,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17296,WANDK,5,2013-02-01 15:22:37,2013-02-23 00:44:08,2013-02-03 03:51:18,3,27,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17297,FAMIA,9,2014-10-07 08:47:47,2014-11-05 04:25:39,2014-10-08 12:24:40,1,394.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17298,QUICK,7,2021-12-07 09:59:05,2021-12-22 19:20:44,2021-12-18 23:46:26,3,469.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17299,BONAP,7,2015-11-22 06:47:09,2015-12-20 23:44:38,2015-12-07 01:09:41,1,59,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17300,NORTS,8,2017-05-19 21:30:19,2017-06-06 22:47:02,2017-05-23 07:02:29,1,16.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17301,KOENE,4,2017-10-24 08:26:27,2017-11-06 11:54:16,2017-11-03 23:51:01,2,113.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17302,LAMAI,3,2017-08-16 10:22:01,2017-08-24 09:17:04,2017-08-17 03:20:17,3,384.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17303,OLDWO,4,2021-11-19 07:52:21,2021-12-19 12:31:12,2021-12-02 13:57:29,2,84.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17304,FURIB,7,2021-01-26 07:34:30,2021-03-04 04:45:32,2021-01-26 13:40:35,2,235.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17305,VALON,9,2013-10-28 12:53:02,2013-11-16 03:31:34,2013-11-12 11:18:23,1,445.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +17306,BSBEV,6,2023-01-29 05:57:57,2023-02-19 21:46:43,2023-02-03 07:22:16,1,478.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17307,TOMSP,7,2017-03-24 12:38:37,2017-04-07 13:48:15,2017-03-30 15:08:48,1,188,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17308,ISLAT,5,2022-06-05 06:09:30,2022-06-21 20:49:31,2022-06-05 08:40:38,2,445,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17309,TOMSP,6,2021-04-10 00:04:26,2021-04-10 10:12:14,2021-04-12 01:18:11,1,99,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17310,KOENE,1,2013-12-14 05:38:28,2014-01-02 19:10:50,2013-12-15 04:18:22,3,484.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17311,ANTON,4,2020-01-21 00:17:14,2020-02-13 10:09:36,2020-01-21 11:52:45,2,106.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17312,GROSR,8,2022-03-08 21:15:47,2022-05-02 22:19:06,2022-03-21 00:18:54,2,42.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17313,GALED,6,2022-08-29 19:27:55,2022-09-20 01:36:34,2022-09-06 20:25:49,2,133.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17314,BLONP,5,2014-11-23 03:02:21,2014-11-28 05:08:53,2014-12-12 01:15:39,3,397.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17315,EASTC,9,2017-08-29 01:56:50,2017-09-02 10:00:18,2017-08-29 01:58:44,1,36,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17316,ANTON,1,2018-12-29 08:53:43,2019-01-03 12:52:57,2019-01-07 23:09:36,2,221.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17317,MORGK,3,2022-12-21 20:42:58,2023-01-22 09:31:24,2022-12-22 17:20:18,1,65,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17318,WELLI,7,2016-02-12 18:45:12,2016-03-13 02:47:58,2016-03-08 21:20:29,3,24,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17319,MAGAA,2,2014-02-21 16:22:53,2014-02-28 22:51:24,2014-03-10 19:18:24,1,352,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17320,DUMON,3,2020-11-06 17:31:09,2020-12-13 05:30:20,2020-11-10 03:18:41,3,29.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17321,FURIB,7,2016-04-13 23:52:16,2016-05-21 01:32:03,2016-04-18 10:04:34,1,65,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17322,NORTS,7,2020-03-02 19:30:33,2020-04-16 18:38:26,2020-03-11 20:41:21,1,118.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17323,VALON,5,2023-09-15 11:14:56,2023-10-02 19:36:33,2023-09-27 19:02:19,2,206.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17324,CACTU,8,2015-08-09 18:30:29,2015-08-10 22:29:36,2015-08-19 20:31:52,1,296,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17325,BOTTM,9,2015-01-11 21:10:30,2015-01-26 03:53:20,2015-01-24 10:31:53,3,99.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17326,LAUGB,7,2018-05-13 12:45:53,2018-05-17 12:59:43,2018-05-20 02:32:05,3,92.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17327,AROUT,2,2018-12-29 10:15:27,2019-02-09 19:03:08,2019-01-03 17:38:24,3,44.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17328,LAUGB,1,2021-11-08 14:26:33,2021-11-19 04:29:42,2021-11-12 10:00:28,3,271,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17329,FOLIG,2,2020-09-07 13:14:10,2020-09-16 08:38:05,2020-09-07 15:02:33,1,389.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17330,ALFKI,3,2021-07-02 05:40:03,2021-08-13 16:35:02,2021-07-15 16:06:39,3,293.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17331,COMMI,1,2014-03-09 02:53:41,2014-03-10 20:31:15,2014-03-13 05:24:09,1,70.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17332,WOLZA,7,2020-07-13 01:29:49,2020-07-17 09:29:29,2020-08-03 11:40:23,2,190,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17333,DRACD,3,2016-07-19 10:14:45,2016-08-01 05:39:11,2016-07-23 04:57:02,3,143.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17334,AROUT,7,2020-06-17 23:19:15,2020-06-28 07:03:16,2020-07-05 17:30:35,1,232.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17335,BLONP,6,2012-09-10 05:40:48,2012-10-07 17:51:58,2012-09-19 03:38:16,3,487,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17336,THEBI,4,2016-04-04 09:07:57,2016-04-17 03:11:51,2016-04-04 20:54:39,2,215.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17337,EASTC,2,2023-08-29 08:06:26,2023-10-04 14:57:51,2023-09-02 19:16:28,1,151,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17338,AROUT,4,2017-10-28 13:57:49,2017-11-19 16:42:22,2017-11-02 04:56:46,3,211.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17339,WOLZA,4,2021-06-22 23:05:03,2021-07-01 21:20:31,2021-07-02 22:05:01,1,369.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17340,TRAIH,2,2020-08-06 13:58:43,2020-09-30 19:58:53,2020-08-10 19:40:56,3,189.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17341,SANTG,3,2014-12-18 23:05:33,2014-12-28 20:58:12,2014-12-31 01:43:03,2,231.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17342,THEBI,4,2020-09-07 02:50:42,2020-09-30 00:14:27,2020-09-23 06:35:33,1,133.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17343,PERIC,1,2013-07-10 06:28:07,2013-08-01 04:37:01,2013-07-13 05:25:15,1,180.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17344,CHOPS,4,2019-08-06 02:58:49,2019-08-30 06:59:13,2019-08-18 21:09:41,1,66.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17345,CONSH,6,2022-05-21 06:06:33,2022-06-02 01:31:07,2022-05-22 14:11:14,3,176.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17346,GREAL,5,2013-12-21 16:44:32,2013-12-29 05:11:02,2014-01-06 12:37:46,1,508,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17347,SANTG,8,2016-10-10 06:03:58,2016-10-23 22:56:56,2016-10-16 09:27:18,2,446.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17348,WOLZA,1,2021-07-27 15:45:52,2021-07-29 21:56:00,2021-08-04 02:14:58,1,68.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17349,SEVES,7,2021-07-03 08:31:47,2021-07-22 10:39:54,2021-07-17 13:41:06,3,270.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17350,WHITC,1,2023-10-18 08:26:38,2023-11-27 00:50:26,2023-10-20 17:13:03,1,324,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17351,Val2 ,3,2014-07-20 18:59:44,2014-08-06 14:34:58,2014-07-30 20:09:50,2,376.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17352,MAISD,2,2017-04-30 04:09:53,2017-05-19 03:00:32,2017-05-13 10:58:22,2,485.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17353,GREAL,7,2017-05-31 21:13:03,2017-06-03 14:48:16,2017-06-07 05:18:02,2,228.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17354,FISSA,9,2019-11-13 11:56:43,2019-11-23 05:31:04,2019-11-17 19:57:39,1,119.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17355,PICCO,5,2021-04-20 01:08:20,2021-04-23 16:20:11,2021-04-21 21:21:05,1,50,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17356,WHITC,2,2013-10-13 20:17:16,2013-10-20 22:25:54,2013-10-20 05:27:25,3,38.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17357,BLONP,9,2021-08-19 10:16:40,2021-09-06 19:58:45,2021-08-28 08:42:38,3,73.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17358,SUPRD,2,2018-07-21 02:06:02,2018-08-08 12:06:12,2018-07-22 21:18:51,1,122,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17359,RICSU,1,2021-12-13 17:02:07,2021-12-20 13:57:18,2021-12-18 07:46:46,3,227.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17360,PICCO,3,2021-07-04 16:08:23,2021-07-27 14:10:38,2021-07-05 11:27:12,1,67.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17361,COMMI,3,2020-01-03 03:20:55,2020-01-17 08:56:44,2020-01-12 17:02:31,1,59.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17362,SPECD,7,2013-03-30 00:39:22,2013-04-30 15:05:17,2013-04-04 08:46:59,3,58,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17363,QUICK,1,2021-08-23 04:35:44,2021-08-26 04:08:34,2021-08-28 19:15:28,2,289.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17364,QUEDE,9,2014-12-15 06:23:37,2014-12-28 14:15:43,2014-12-27 03:31:25,2,261.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17365,REGGC,6,2012-09-12 11:37:44,2012-09-23 00:14:54,2012-09-23 14:36:24,3,46,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17366,GOURL,3,2021-06-27 19:56:14,2021-07-07 03:17:49,2021-07-04 23:40:02,3,376,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17367,THECR,5,2022-06-23 05:23:29,2022-06-29 17:45:43,2022-07-05 20:19:01,1,95.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17368,Val2 ,8,2013-11-26 15:44:35,2014-01-09 22:05:40,2013-12-18 13:01:33,3,108.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17369,FRANS,7,2021-05-31 08:49:02,2021-06-20 03:18:20,2021-06-13 13:56:51,1,356.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17370,ANATR,5,2013-03-04 00:54:11,2013-03-17 01:08:09,2013-03-31 15:42:03,3,109,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17371,WILMK,7,2022-11-11 20:26:05,2022-12-25 14:38:33,2022-11-14 02:32:05,3,374.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17372,PARIS,1,2016-07-09 04:53:24,2016-08-04 01:41:52,2016-07-10 01:54:03,3,223.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17373,BLONP,9,2015-05-24 10:59:16,2015-06-02 10:33:01,2015-05-31 08:03:22,1,327.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17374,AROUT,8,2014-05-25 14:48:36,2014-06-29 03:28:28,2014-05-28 01:09:26,3,350.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17375,VALON,7,2021-05-15 01:56:38,2021-05-24 19:43:31,2021-05-29 01:05:44,1,35.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17376,ERNSH,4,2019-09-11 00:21:47,2019-09-15 09:48:09,2019-09-12 15:07:21,2,135.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17377,RATTC,9,2022-05-08 08:27:41,2022-05-28 07:20:33,2022-05-13 11:19:22,1,396,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +17378,COMMI,5,2018-11-10 18:58:44,2018-12-24 05:52:31,2018-11-18 19:56:42,2,79.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +17379,SEVES,5,2020-08-30 15:15:59,2020-09-06 04:51:13,2020-09-04 01:09:41,1,168.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17380,VALON,1,2017-01-23 20:39:31,2017-02-02 23:52:40,2017-01-25 12:48:36,3,249.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17381,ALFKI,9,2015-04-01 07:41:38,2015-04-26 09:27:29,2015-04-05 10:58:15,1,82.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17382,SANTG,8,2015-03-16 15:29:29,2015-04-12 09:21:55,2015-03-25 07:13:20,1,341.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17383,PERIC,2,2018-12-17 18:35:33,2018-12-25 14:36:41,2018-12-30 15:57:38,1,378.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17384,LAMAI,6,2016-12-14 09:56:00,2016-12-24 10:16:05,2016-12-30 14:32:19,2,214.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17385,DUMON,6,2017-01-17 08:35:51,2017-01-25 23:28:13,2017-02-10 19:10:39,3,412,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17386,ROMEY,8,2016-07-03 04:18:30,2016-08-09 13:57:36,2016-07-08 07:56:40,3,313.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17387,LETSS,2,2012-07-22 23:25:04,2012-08-03 10:00:39,2012-07-25 06:22:50,3,381.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17388,CENTC,9,2022-10-26 07:24:29,2022-12-05 19:54:16,2022-10-30 04:07:14,3,155.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17389,FURIB,9,2014-03-01 05:42:31,2014-03-10 21:20:50,2014-03-01 17:15:39,2,510.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17390,TRAIH,2,2017-11-05 03:27:31,2017-11-24 23:19:58,2017-11-05 16:43:16,3,35,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17391,LAUGB,8,2016-04-19 10:49:07,2016-05-10 15:31:30,2016-04-22 00:09:05,1,456.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17392,VAFFE,2,2016-06-11 03:04:56,2016-07-04 16:42:33,2016-07-02 21:58:08,3,471.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17393,LONEP,8,2021-08-01 15:10:31,2021-09-22 04:54:10,2021-08-07 11:04:44,1,233,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17394,CACTU,8,2021-03-31 13:41:44,2021-04-03 16:09:45,2021-04-25 12:54:10,2,265,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17395,GREAL,3,2014-04-12 04:37:14,2014-05-04 17:57:07,2014-04-16 02:56:06,3,130.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17396,TOMSP,7,2019-06-24 22:34:41,2019-06-29 17:52:31,2019-07-01 21:52:29,1,402.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17397,RATTC,4,2021-02-22 11:11:18,2021-03-22 19:54:14,2021-02-24 00:40:43,1,306.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17398,DRACD,9,2014-03-14 01:24:55,2014-04-18 16:41:50,2014-03-29 01:51:53,3,269.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17399,FRANK,6,2020-10-11 16:08:14,2020-10-15 05:23:33,2020-10-18 00:35:49,3,93.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17400,GROSR,4,2018-09-24 01:48:34,2018-09-28 22:22:50,2018-09-29 06:55:03,1,237.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17401,CENTC,4,2018-04-15 04:01:36,2018-05-17 04:57:24,2018-05-01 07:21:06,2,90.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17402,LEHMS,9,2023-04-18 22:00:08,2023-04-23 16:23:18,2023-04-30 07:48:00,1,501.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17403,KOENE,7,2023-09-02 01:45:35,2023-09-15 06:34:17,2023-09-17 20:00:01,2,269.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17404,OLDWO,4,2018-10-08 16:22:37,2018-11-01 03:55:22,2018-10-12 14:56:24,2,422.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17405,SANTG,5,2014-12-17 02:03:41,2014-12-23 22:27:25,2014-12-17 22:29:31,3,57.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17406,FRANS,5,2015-01-24 15:59:43,2015-02-18 12:09:47,2015-01-30 22:32:39,3,188.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17407,GODOS,5,2015-01-16 17:48:07,2015-03-13 14:06:47,2015-02-07 07:33:42,1,81.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17408,DRACD,1,2021-11-12 20:09:32,2021-12-02 07:13:52,2021-11-14 18:30:47,3,292.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17409,BOLID,1,2015-01-13 04:21:33,2015-02-25 06:12:32,2015-01-14 13:00:36,1,123.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17410,NORTS,7,2014-04-20 11:37:19,2014-05-10 12:45:50,2014-05-06 01:39:15,2,236.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17411,PICCO,7,2019-06-27 04:19:29,2019-08-01 21:04:30,2019-06-27 21:32:24,1,443.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17412,PICCO,9,2013-04-16 23:07:04,2013-04-22 18:58:44,2013-04-24 11:47:37,3,220.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17413,VICTE,2,2016-01-08 15:00:21,2016-01-09 07:43:48,2016-01-09 00:14:16,3,203.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17414,CONSH,2,2018-09-28 21:57:21,2018-10-16 15:27:39,2018-10-18 12:34:35,2,412.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17415,LACOR,3,2022-06-27 04:39:32,2022-08-07 11:37:12,2022-07-04 13:14:52,2,239.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17416,LAMAI,4,2014-11-06 01:57:05,2014-12-27 07:02:03,2014-11-10 04:06:49,2,119.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17417,FRANS,8,2023-07-14 03:18:00,2023-07-20 18:31:04,2023-07-20 04:59:15,2,52.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17418,HANAR,1,2017-06-11 01:10:54,2017-07-11 01:22:40,2017-06-20 00:40:03,3,372.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17419,LILAS,9,2015-04-11 09:27:06,2015-05-01 08:22:28,2015-04-23 13:16:28,3,141.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17420,WOLZA,6,2020-03-05 22:32:42,2020-03-17 04:48:57,2020-03-08 17:03:19,2,43.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17421,SPLIR,6,2020-10-16 03:02:20,2020-11-11 07:41:59,2020-10-16 19:29:10,2,80.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17422,CHOPS,5,2012-07-30 01:48:16,2012-08-12 21:13:38,2012-07-31 13:37:01,1,475.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17423,PICCO,7,2023-01-14 03:45:31,2023-01-21 03:51:42,2023-01-15 02:48:29,3,352,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17424,PICCO,8,2016-10-21 22:08:37,2016-11-08 19:25:19,2016-10-22 20:03:03,1,424.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17425,CHOPS,7,2018-01-26 03:11:13,2018-02-22 18:24:37,2018-01-29 10:58:52,2,173.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17426,WELLI,9,2015-06-23 15:54:00,2015-07-01 21:03:14,2015-06-27 03:53:18,2,272.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17427,TRADH,4,2014-09-05 08:31:27,2014-09-11 21:29:19,2014-09-20 01:53:41,3,240.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17428,GALED,5,2015-10-29 05:21:52,2015-12-11 12:19:15,2015-11-04 13:43:00,1,319.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17429,Val2 ,3,2012-10-06 23:41:34,2012-10-23 19:00:46,2012-10-13 03:41:09,1,453.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +17430,TRADH,3,2021-11-02 09:09:04,2021-12-04 07:13:36,2021-11-11 00:38:33,3,151.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17431,BOLID,1,2017-01-01 18:08:50,2017-01-02 20:20:17,2017-01-07 10:22:02,3,55.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17432,LETSS,6,2013-01-18 16:59:58,2013-02-17 23:45:18,2013-01-27 11:04:45,1,153.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17433,HUNGO,4,2013-03-13 09:50:25,2013-03-17 09:16:42,2013-03-26 17:46:39,3,443,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17434,RATTC,3,2017-09-08 01:29:24,2017-09-24 22:55:34,2017-09-08 17:40:41,2,238.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17435,MAISD,5,2017-11-10 21:33:54,2017-11-20 16:07:25,2017-11-15 17:10:53,2,291.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17436,TOMSP,1,2013-06-22 13:44:08,2013-07-01 07:03:19,2013-06-22 22:12:13,1,444.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17437,LILAS,3,2013-07-16 06:42:31,2013-08-27 19:20:24,2013-07-30 21:39:28,2,108,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17438,ANTON,5,2016-03-02 20:53:38,2016-04-01 14:14:14,2016-03-10 05:33:53,3,220.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17439,HILAA,7,2015-07-25 01:22:46,2015-08-05 13:29:47,2015-07-25 17:52:26,1,31.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17440,GREAL,2,2023-01-09 00:38:16,2023-01-26 17:34:35,2023-01-09 19:35:40,3,429.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +17441,WHITC,2,2016-05-06 02:41:14,2016-05-16 22:11:27,2016-05-23 05:23:02,3,464.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17442,FRANR,8,2022-12-30 15:34:18,2023-01-09 03:09:06,2023-01-10 15:01:05,1,104.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17443,LETSS,6,2023-04-22 09:52:49,2023-05-03 21:13:03,2023-04-23 00:59:16,1,364.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17444,ROMEY,4,2020-04-02 15:38:27,2020-04-07 21:41:48,2020-04-03 19:51:18,3,407.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17445,OTTIK,9,2019-01-23 21:00:48,2019-01-28 19:57:17,2019-02-06 00:57:12,2,50.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17446,HUNGC,9,2022-02-17 18:00:25,2022-04-05 09:14:56,2022-03-01 04:16:37,3,85.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17447,GOURL,4,2020-04-05 07:21:31,2020-04-17 01:47:28,2020-04-05 22:05:03,3,373.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17448,BSBEV,9,2020-08-05 06:57:59,2020-08-23 01:59:24,2020-08-21 19:26:57,3,400,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17449,COMMI,1,2014-09-09 23:35:41,2014-10-10 09:04:15,2014-09-28 17:31:23,2,379.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17450,GOURL,3,2023-05-06 22:14:55,2023-05-10 10:51:09,2023-05-09 01:46:54,3,246,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17451,VALON,6,2022-08-22 03:19:31,2022-08-27 19:26:46,2022-08-22 23:56:53,1,323,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17452,MAGAA,5,2022-08-30 11:40:31,2022-10-14 09:15:59,2022-08-30 23:03:08,1,53.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17453,RATTC,4,2017-06-19 05:55:54,2017-06-29 14:23:57,2017-06-22 02:25:03,3,412,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +17454,HUNGC,1,2018-12-01 02:56:56,2018-12-07 06:00:53,2018-12-01 18:54:52,1,266.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17455,BOLID,7,2015-08-22 08:37:56,2015-09-24 20:57:49,2015-08-28 00:13:28,3,550.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17456,REGGC,4,2018-09-08 14:17:50,2018-09-18 04:11:31,2018-09-15 01:25:05,3,180.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17457,WARTH,6,2016-05-05 23:43:02,2016-05-08 21:02:42,2016-05-17 15:21:04,2,283,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17458,ISLAT,1,2016-12-09 06:50:10,2016-12-12 18:16:08,2016-12-15 00:43:03,3,451.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17459,Val2 ,6,2023-02-16 09:58:04,2023-03-23 16:42:30,2023-03-06 19:50:51,2,345.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17460,ISLAT,2,2021-06-09 13:45:47,2021-06-15 15:27:00,2021-06-10 13:52:53,3,278,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17461,FOLKO,8,2016-06-05 23:43:03,2016-06-29 19:42:13,2016-06-10 03:43:29,1,433.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17462,ROMEY,8,2022-09-01 09:50:16,2022-10-13 12:59:48,2022-09-04 12:06:02,1,118.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17463,Val2 ,1,2013-08-26 10:59:15,2013-09-01 08:22:13,2013-09-07 05:57:19,1,454.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17464,QUEEN,8,2014-12-21 02:38:52,2015-01-20 06:14:53,2014-12-25 08:04:20,2,334,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17465,EASTC,7,2015-04-15 18:50:16,2015-05-05 03:06:27,2015-04-18 01:55:07,1,353,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17466,FURIB,7,2018-01-16 10:55:33,2018-02-12 00:36:18,2018-01-19 07:25:51,2,213.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17467,TRAIH,5,2015-11-24 11:08:48,2015-12-07 03:13:31,2015-11-30 00:25:42,2,287.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17468,ISLAT,8,2018-02-09 12:20:11,2018-02-25 12:54:53,2018-02-15 13:56:33,1,473.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17469,FAMIA,3,2022-01-17 13:13:38,2022-02-23 01:49:13,2022-01-19 15:02:16,1,388.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17470,MORGK,7,2018-10-02 19:59:15,2018-10-30 20:50:19,2018-10-04 11:44:40,2,470.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17471,GROSR,6,2021-11-15 14:33:23,2021-11-17 04:31:05,2021-11-17 06:00:08,2,374.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17472,VAFFE,9,2017-05-19 00:39:40,2017-06-05 11:17:27,2017-05-19 03:48:10,2,82.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17473,CENTC,4,2023-05-14 13:08:04,2023-05-21 02:41:40,2023-06-01 23:01:33,1,484.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17474,PERIC,9,2021-05-06 10:22:42,2021-06-06 04:00:12,2021-05-15 08:41:04,3,478.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17475,VINET,9,2017-11-25 17:12:55,2017-12-03 12:17:46,2017-12-05 13:20:21,2,237,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17476,FAMIA,8,2015-12-14 05:02:19,2015-12-26 04:38:58,2015-12-16 02:11:16,1,149,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17477,NORTS,6,2013-10-16 21:52:10,2013-11-01 11:07:19,2013-10-25 21:41:07,2,443.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17478,LACOR,1,2015-11-13 19:22:25,2015-11-25 19:57:23,2015-12-09 08:30:48,2,111.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17479,WOLZA,4,2023-08-22 09:22:53,2023-10-05 04:20:59,2023-08-25 18:56:38,1,131.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17480,EASTC,5,2015-09-11 21:49:05,2015-09-15 10:12:10,2015-09-26 14:24:19,3,406.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17481,FRANS,2,2013-04-23 11:46:37,2013-05-06 14:11:07,2013-04-26 12:07:52,3,248.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17482,BOLID,6,2013-11-30 21:06:16,2013-12-01 00:00:19,2013-12-09 12:32:38,2,449,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17483,WILMK,3,2020-11-28 22:33:45,2020-12-11 04:15:25,2020-12-12 22:40:01,2,346.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17484,WANDK,5,2021-11-28 20:17:50,2022-01-18 12:24:26,2021-12-01 08:36:24,1,148.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17485,FISSA,9,2016-03-08 17:12:37,2016-04-02 12:19:00,2016-03-15 09:00:28,3,36.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17486,RICSU,5,2022-11-18 09:42:07,2022-12-12 22:00:32,2022-11-22 10:07:40,1,412.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17487,GREAL,5,2021-10-17 19:25:59,2021-10-20 06:18:34,2021-11-14 01:37:59,1,26.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17488,BLONP,6,2019-03-22 06:57:05,2019-04-12 11:32:59,2019-03-31 01:35:10,1,357.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17489,PARIS,3,2016-04-08 23:28:33,2016-04-27 05:24:59,2016-04-12 09:26:10,1,304.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17490,ISLAT,5,2021-11-28 06:01:18,2021-12-10 18:34:59,2021-11-29 14:45:46,3,67,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17491,RICSU,5,2020-05-02 08:41:57,2020-05-08 19:41:55,2020-05-29 15:27:03,1,396.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17492,REGGC,7,2022-09-07 05:31:15,2022-09-27 22:37:12,2022-09-09 08:09:21,3,255,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17493,LETSS,2,2017-07-01 17:40:48,2017-07-28 15:56:59,2017-07-14 15:48:34,1,382.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17494,QUEEN,1,2012-09-11 12:35:09,2012-10-24 10:41:13,2012-09-12 23:20:56,3,261.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17495,LINOD,2,2015-02-26 20:43:06,2015-02-28 13:52:06,2015-02-27 20:48:28,2,292,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17496,HILAA,1,2012-12-04 01:08:10,2012-12-25 04:59:12,2012-12-13 14:06:55,3,71.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17497,SIMOB,7,2020-12-23 12:00:42,2021-01-05 09:53:33,2021-01-05 18:45:28,1,273.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17498,PERIC,7,2023-06-05 19:05:55,2023-07-20 20:15:37,2023-06-18 09:31:00,2,38.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +17499,CHOPS,3,2021-06-13 08:06:25,2021-06-20 20:03:58,2021-06-19 04:51:09,3,258,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17500,LINOD,1,2023-07-18 03:36:35,2023-09-08 15:52:10,2023-08-13 11:26:38,3,138.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17501,WHITC,5,2012-11-04 05:59:29,2012-11-25 19:03:03,2012-11-06 12:52:48,3,278,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17502,LONEP,1,2016-12-31 02:57:12,2017-01-19 11:39:42,2017-01-05 07:50:44,2,461.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17503,COMMI,3,2020-11-10 14:18:08,2020-12-21 22:58:29,2020-11-21 05:37:21,2,191,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17504,MAGAA,2,2017-06-05 03:39:49,2017-06-25 07:35:52,2017-06-05 21:56:16,2,339.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17505,THEBI,9,2016-09-05 03:13:10,2016-10-08 11:17:09,2016-09-28 21:38:57,2,79,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17506,HUNGO,6,2020-01-09 18:59:14,2020-01-20 22:02:27,2020-01-11 17:39:07,1,269.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +17507,FISSA,7,2012-08-27 20:00:30,2012-09-20 10:05:43,2012-09-06 08:53:43,2,198,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17508,VICTE,1,2020-03-16 14:20:48,2020-03-27 15:00:50,2020-03-19 02:44:30,2,135,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17509,LONEP,9,2013-12-05 22:16:33,2014-01-03 22:48:03,2013-12-10 15:14:52,1,126.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17510,CACTU,3,2012-10-14 03:29:39,2012-11-07 14:49:55,2012-10-17 11:18:04,1,64.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17511,FURIB,9,2013-01-14 23:38:36,2013-01-29 09:27:49,2013-01-16 05:35:33,1,160.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17512,FRANR,6,2022-05-18 20:47:01,2022-07-03 02:13:16,2022-05-19 11:15:28,2,490.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17513,KOENE,6,2016-03-17 05:14:57,2016-04-18 09:05:03,2016-04-01 10:23:38,1,523.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17514,KOENE,5,2016-07-06 10:21:41,2016-07-22 17:33:02,2016-07-22 13:08:41,2,48.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17515,FISSA,8,2021-05-24 07:40:17,2021-06-13 08:48:17,2021-06-07 19:09:10,2,251.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17516,RANCH,1,2012-11-11 13:28:39,2012-12-25 06:41:49,2012-11-12 10:14:35,3,498.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17517,AROUT,9,2017-01-06 02:05:52,2017-01-17 18:44:48,2017-01-11 23:17:54,1,17.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17518,CONSH,1,2021-11-26 09:30:49,2021-12-10 01:58:14,2021-11-30 05:19:25,2,222.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +17519,OCEAN,9,2015-10-12 19:36:39,2015-10-26 14:56:18,2015-10-16 14:30:39,2,122.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17520,MAISD,9,2015-11-30 05:26:16,2015-12-09 22:08:07,2015-11-30 22:30:43,3,450,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17521,OTTIK,4,2023-07-19 05:20:47,2023-08-15 03:28:46,2023-07-19 09:09:03,3,384.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17522,LETSS,1,2018-01-16 00:05:14,2018-02-05 03:09:46,2018-01-20 11:39:17,1,186.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17523,QUICK,3,2020-10-11 23:23:43,2020-10-14 20:03:56,2020-10-16 02:16:16,3,436.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17524,RANCH,5,2021-12-12 18:32:30,2021-12-30 07:17:42,2021-12-19 05:45:26,1,334.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17525,PERIC,4,2016-01-17 04:05:46,2016-02-03 00:04:24,2016-01-17 15:30:03,2,528.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17526,HUNGO,6,2020-11-28 20:23:28,2020-12-29 23:18:41,2020-12-03 19:04:58,1,445.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17527,WHITC,7,2020-02-25 06:40:54,2020-03-11 13:17:20,2020-03-15 01:54:28,1,209.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17528,WARTH,9,2020-04-13 17:20:48,2020-05-09 04:10:19,2020-04-28 04:37:58,3,138.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17529,GROSR,4,2016-03-07 23:12:09,2016-03-12 22:02:28,2016-03-10 16:15:34,3,30.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17530,FOLIG,6,2019-03-10 10:17:56,2019-04-02 01:56:22,2019-03-20 03:08:38,3,359.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17531,WILMK,5,2021-06-14 20:42:19,2021-06-29 16:57:23,2021-06-30 20:59:30,2,423,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17532,PICCO,6,2015-11-02 08:25:26,2015-11-10 17:01:26,2015-11-04 07:43:41,1,465.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17533,THEBI,3,2015-03-22 22:04:09,2015-03-29 16:03:16,2015-03-24 23:36:10,2,251.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17534,LAMAI,6,2022-09-11 20:47:26,2022-10-20 21:00:02,2022-09-12 05:34:10,3,254.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17535,FRANK,2,2015-01-28 15:22:38,2015-02-21 23:30:48,2015-02-09 00:56:37,2,136.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17536,BERGS,6,2019-09-26 08:57:14,2019-11-06 18:29:36,2019-10-01 19:19:09,3,193,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17537,LAZYK,1,2012-12-05 23:46:59,2012-12-27 04:30:44,2012-12-24 07:49:09,1,288.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17538,GODOS,9,2023-02-24 08:23:46,2023-03-20 10:43:44,2023-02-27 14:00:46,3,177.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17539,EASTC,6,2023-09-02 10:16:24,2023-09-09 14:45:47,2023-09-03 03:35:34,2,323.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17540,PRINI,8,2019-12-16 18:27:02,2020-01-10 23:34:28,2019-12-27 01:46:24,1,545.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17541,ANTON,7,2023-10-18 20:03:23,2023-11-09 15:51:02,2023-11-10 18:59:01,1,349.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17542,LAUGB,5,2016-08-11 19:26:40,2016-08-23 12:43:36,2016-09-07 05:45:37,3,138.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17543,VALON,3,2015-12-14 05:02:41,2015-12-19 18:25:35,2016-01-03 11:44:26,3,54,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17544,ALFKI,4,2021-06-18 08:01:41,2021-06-24 23:14:26,2021-06-18 15:21:35,1,102.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17545,PERIC,6,2018-07-07 17:25:47,2018-07-12 16:55:19,2018-07-13 06:31:06,3,443.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17546,RANCH,8,2022-05-29 04:47:39,2022-05-30 05:12:12,2022-05-31 17:34:09,1,329.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17547,QUEDE,3,2020-12-18 06:07:43,2021-01-23 15:34:54,2021-01-05 17:55:29,1,214.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17548,HUNGO,9,2013-05-08 16:27:52,2013-06-09 12:15:40,2013-05-09 00:22:15,1,278.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17549,PERIC,4,2019-08-04 10:09:16,2019-08-21 22:30:38,2019-08-14 16:53:55,2,367.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17550,GODOS,8,2022-10-02 02:44:26,2022-11-03 17:09:34,2022-10-02 06:34:17,2,357.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17551,LONEP,2,2021-01-09 05:11:37,2021-01-11 03:47:12,2021-01-09 11:00:27,1,273.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17552,HUNGC,3,2022-04-15 12:52:47,2022-05-17 00:25:41,2022-04-24 02:34:23,2,464.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17553,GOURL,2,2013-04-24 14:08:33,2013-04-27 20:31:15,2013-04-25 07:23:49,1,355.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17554,SIMOB,1,2013-10-01 08:58:36,2013-10-22 14:59:50,2013-10-08 10:52:28,2,180.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17555,FISSA,2,2020-12-14 01:44:02,2021-01-23 10:43:15,2020-12-14 09:24:41,3,349.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +17556,ANATR,2,2013-08-01 21:07:29,2013-09-24 14:46:26,2013-08-08 10:34:54,2,229.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17557,HANAR,2,2020-08-23 22:03:54,2020-09-03 08:17:34,2020-08-25 03:49:47,1,86.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17558,DRACD,6,2017-03-28 20:32:41,2017-04-13 12:04:14,2017-04-04 07:10:55,3,157.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17559,WHITC,8,2012-08-31 13:40:08,2012-10-08 20:23:39,2012-09-10 14:34:59,3,210.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17560,ALFKI,2,2015-07-31 01:03:34,2015-08-01 12:22:10,2015-07-31 22:49:42,1,232.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17561,MAGAA,3,2016-01-18 17:28:54,2016-02-12 11:34:23,2016-01-20 01:37:53,2,370.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17562,VALON,2,2021-11-30 23:54:50,2021-12-15 13:15:24,2021-12-11 04:07:32,2,310.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17563,WANDK,7,2021-05-24 18:21:14,2021-06-19 12:13:56,2021-06-06 19:18:47,2,254.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17564,RANCH,1,2019-06-06 05:06:06,2019-06-27 05:59:35,2019-06-17 07:30:06,1,394.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17565,HUNGC,1,2021-12-12 00:28:06,2022-01-17 21:12:19,2021-12-15 11:57:38,3,433.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17566,SIMOB,7,2021-07-20 20:06:05,2021-08-07 14:29:10,2021-07-24 08:37:49,2,117.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17567,SIMOB,3,2014-06-29 17:00:24,2014-07-24 11:22:24,2014-07-05 13:37:43,1,180.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17568,LETSS,5,2015-10-24 18:49:01,2015-11-08 01:46:40,2015-11-10 09:13:22,2,496.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17569,TOMSP,8,2015-02-14 15:52:42,2015-02-18 07:54:33,2015-02-21 02:13:02,1,461.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17570,Val2 ,7,2019-03-16 01:53:03,2019-03-22 03:08:05,2019-03-16 03:59:23,1,52.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17571,EASTC,7,2018-08-15 17:05:40,2018-10-01 17:58:10,2018-08-28 05:26:10,2,332.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17572,GODOS,1,2021-04-21 08:26:01,2021-04-26 22:32:15,2021-04-24 09:02:49,3,303,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17573,LEHMS,6,2016-03-07 22:59:36,2016-04-07 12:21:34,2016-03-08 04:54:06,2,133.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17574,SUPRD,1,2021-06-18 16:49:02,2021-06-20 19:43:30,2021-06-26 22:13:48,3,265.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17575,ISLAT,9,2019-02-23 08:30:28,2019-03-20 23:03:15,2019-02-25 13:49:44,1,203.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17576,WARTH,4,2023-05-31 04:35:32,2023-06-24 19:55:55,2023-06-11 02:24:53,2,40,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17577,WANDK,3,2018-05-16 03:44:03,2018-06-06 15:09:20,2018-05-18 01:54:11,1,215.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17578,LETSS,1,2017-09-03 12:57:24,2017-09-20 12:02:20,2017-09-04 14:37:53,2,109,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17579,FOLIG,2,2013-02-20 01:19:49,2013-03-10 04:43:46,2013-02-21 10:55:23,3,463.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17580,WELLI,9,2013-01-05 08:40:33,2013-01-08 18:31:36,2013-01-05 15:27:45,3,144.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17581,RICSU,8,2023-02-28 00:51:51,2023-03-10 09:23:36,2023-03-08 10:58:31,2,346,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17582,TOMSP,8,2022-09-21 00:51:44,2022-10-27 01:10:19,2022-10-02 00:29:47,3,362.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17583,DRACD,1,2022-05-12 05:35:51,2022-06-23 19:49:09,2022-05-21 21:19:03,2,291.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17584,COMMI,5,2015-11-09 06:13:40,2015-11-25 17:49:42,2015-11-13 12:43:34,1,234,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17585,VINET,1,2017-05-02 20:46:06,2017-05-12 08:27:02,2017-05-15 21:32:26,3,250.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17586,HANAR,3,2013-12-07 17:28:56,2014-01-22 15:21:34,2013-12-12 14:00:31,1,224.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17587,LILAS,9,2023-08-04 05:19:38,2023-08-18 22:11:05,2023-08-15 13:44:51,1,113.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17588,TRADH,8,2021-09-23 15:59:30,2021-10-18 23:19:39,2021-09-26 20:56:28,1,187.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17589,SPECD,8,2022-02-03 01:54:13,2022-02-07 01:36:48,2022-02-21 19:21:18,3,41.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17590,GOURL,8,2018-03-18 13:44:21,2018-04-21 02:07:23,2018-03-26 00:06:17,2,504,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17591,BLAUS,5,2021-02-28 23:24:25,2021-03-16 20:54:49,2021-03-02 13:16:06,1,382,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17592,GROSR,3,2012-07-23 04:05:29,2012-08-08 19:34:33,2012-08-09 09:19:38,2,508.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17593,THECR,3,2014-01-21 11:04:48,2014-01-24 22:38:19,2014-01-29 08:19:15,3,454.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17594,PRINI,3,2015-08-14 00:01:32,2015-08-23 10:15:10,2015-08-14 16:11:48,1,125.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17595,OCEAN,5,2018-08-31 07:05:33,2018-09-22 18:40:34,2018-09-01 05:11:24,3,322.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17596,WILMK,7,2021-12-01 17:02:03,2021-12-14 19:58:43,2021-12-10 15:56:47,2,580.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17597,VAFFE,6,2021-07-30 16:38:16,2021-08-03 03:46:33,2021-08-06 07:21:01,1,384.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17598,RATTC,1,2013-03-21 05:31:08,2013-03-29 06:19:14,2013-04-01 16:45:27,3,265.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17599,BOTTM,4,2015-07-03 05:29:32,2015-07-13 20:48:06,2015-07-21 23:01:05,3,500.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17600,FRANS,6,2020-09-27 12:55:23,2020-10-11 20:25:34,2020-09-30 12:28:02,1,119,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17601,FOLIG,2,2021-11-05 18:39:53,2021-11-07 06:31:59,2021-11-25 03:36:02,1,460.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17602,CENTC,3,2021-02-06 23:49:40,2021-03-26 00:21:17,2021-02-07 18:52:00,1,214,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17603,DRACD,4,2016-01-04 15:01:12,2016-01-20 01:37:33,2016-01-22 20:46:47,1,441,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17604,LONEP,3,2021-03-18 03:25:16,2021-03-19 11:38:58,2021-04-06 21:45:05,3,78.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17605,SAVEA,7,2023-08-23 23:41:07,2023-09-24 20:26:32,2023-08-24 03:26:05,1,112.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17606,SUPRD,2,2018-04-15 15:47:10,2018-05-25 03:19:44,2018-04-18 06:44:13,3,438.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17607,LETSS,4,2014-03-03 02:16:55,2014-03-27 07:01:36,2014-03-04 20:42:34,3,57.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17608,TRAIH,6,2014-11-15 07:06:13,2014-12-11 05:49:18,2014-11-16 00:27:29,2,217.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17609,MAGAA,2,2017-10-07 07:34:03,2017-10-12 21:08:05,2017-10-10 11:49:54,2,28,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17610,EASTC,7,2021-09-13 22:31:17,2021-10-10 09:29:05,2021-09-16 18:45:51,1,324.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17611,GROSR,2,2023-09-14 02:25:09,2023-10-01 12:36:47,2023-09-15 21:04:47,3,254,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17612,VICTE,5,2017-05-05 15:27:09,2017-05-28 16:06:12,2017-05-06 19:55:04,1,47.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17613,BSBEV,3,2018-10-21 21:06:46,2018-11-26 21:32:10,2018-10-24 18:02:36,3,289.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17614,LAMAI,7,2021-07-19 02:47:47,2021-08-01 10:52:38,2021-07-19 18:32:43,1,121,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17615,SANTG,3,2022-11-12 01:32:46,2022-11-27 05:57:46,2022-11-17 10:04:28,2,109,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17616,WOLZA,4,2014-09-24 17:27:36,2014-09-25 08:54:43,2014-09-25 10:55:18,3,103.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17617,SAVEA,7,2021-07-13 05:49:46,2021-07-24 07:40:35,2021-08-01 02:27:27,2,121.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17618,WELLI,6,2016-05-27 21:48:30,2016-06-23 04:47:33,2016-06-14 05:09:44,2,240.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17619,BSBEV,1,2014-08-11 00:33:37,2014-09-23 03:51:53,2014-08-16 07:21:45,1,422.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17620,WANDK,6,2020-08-23 16:58:14,2020-08-26 12:02:40,2020-09-11 11:59:30,1,458.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17621,FRANS,1,2016-07-08 16:54:38,2016-08-03 04:21:49,2016-07-18 06:42:28,2,65.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17622,ANATR,5,2018-06-27 13:35:37,2018-07-27 13:24:07,2018-07-01 04:54:16,3,368,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17623,FISSA,6,2018-06-08 06:41:03,2018-07-28 02:58:39,2018-06-17 05:25:30,3,343.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17624,LAZYK,5,2017-04-18 16:57:08,2017-05-04 15:32:16,2017-04-20 15:52:12,2,200,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17625,ROMEY,4,2022-09-13 00:46:36,2022-10-01 19:54:01,2022-09-30 07:19:57,2,430.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17626,MAGAA,8,2014-06-24 10:40:19,2014-06-30 14:19:16,2014-07-07 07:12:45,3,24,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17627,OTTIK,1,2013-05-20 13:24:39,2013-06-16 01:52:14,2013-06-17 05:38:49,1,216,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17628,FURIB,3,2023-10-11 05:28:33,2023-10-29 15:54:11,2023-10-19 23:31:51,3,391,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17629,FAMIA,3,2019-12-15 13:16:41,2020-01-11 20:28:17,2019-12-23 08:25:39,2,250.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17630,NORTS,2,2014-03-06 18:13:55,2014-03-27 10:04:55,2014-03-07 14:14:20,2,147.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17631,FRANR,3,2021-12-02 18:45:43,2021-12-06 21:00:23,2021-12-18 18:51:38,2,194.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17632,OTTIK,4,2021-05-28 21:11:50,2021-06-14 14:40:10,2021-06-04 08:56:11,3,92.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17633,MEREP,4,2016-05-24 16:52:27,2016-06-26 00:43:52,2016-05-30 23:40:58,3,242.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17634,ANATR,6,2022-05-17 08:29:55,2022-05-27 01:11:24,2022-05-27 15:50:47,3,287.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17635,NORTS,6,2014-01-14 00:31:46,2014-01-25 19:16:03,2014-01-14 16:17:37,2,196.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17636,BOTTM,1,2015-04-17 09:31:28,2015-04-30 05:10:44,2015-04-17 23:44:22,3,247,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17637,SEVES,9,2018-01-13 06:30:28,2018-01-15 12:08:11,2018-01-24 11:22:08,3,449.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17638,SUPRD,7,2015-04-02 01:33:19,2015-04-21 23:38:33,2015-04-16 07:11:48,2,181.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +17639,CENTC,6,2021-10-20 21:50:18,2021-11-10 16:32:30,2021-10-25 12:27:55,3,138.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17640,OLDWO,9,2017-03-09 20:53:34,2017-03-21 09:54:30,2017-03-29 04:01:52,1,321.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17641,SPECD,1,2017-06-26 00:57:08,2017-08-23 18:41:01,2017-07-08 04:52:42,1,184.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17642,FOLKO,6,2014-08-14 08:32:20,2014-08-15 07:48:40,2014-08-16 01:07:16,2,171.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17643,WHITC,8,2019-12-19 20:39:43,2020-01-16 00:27:06,2019-12-23 18:14:43,2,377.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17644,LAUGB,1,2020-04-03 07:23:02,2020-04-13 19:05:51,2020-04-04 00:55:00,3,383.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17645,HUNGC,1,2012-10-24 07:30:48,2012-11-07 15:48:45,2012-10-27 05:50:27,2,164.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17646,PARIS,4,2017-05-07 13:52:26,2017-05-16 14:51:29,2017-05-11 23:32:27,1,398.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17647,WARTH,5,2016-08-22 20:33:34,2016-08-30 12:29:23,2016-09-06 13:28:09,1,379.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17648,ANTON,1,2023-03-24 22:57:20,2023-04-18 10:20:17,2023-03-27 22:55:56,2,245.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17649,LEHMS,1,2017-01-15 16:05:42,2017-01-27 00:15:51,2017-01-16 17:48:56,2,269,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17650,PERIC,3,2018-04-28 13:10:54,2018-05-03 04:52:41,2018-05-22 07:44:38,3,207.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17651,HUNGC,6,2023-02-14 08:27:59,2023-03-02 19:14:05,2023-02-27 10:14:41,3,259.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17652,MORGK,2,2022-02-09 18:00:06,2022-02-19 04:45:49,2022-02-22 22:39:12,3,163,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17653,LILAS,4,2022-07-02 03:33:49,2022-07-08 19:46:22,2022-07-10 12:36:41,2,396,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17654,VINET,3,2016-05-05 14:17:14,2016-05-24 12:05:40,2016-05-12 16:13:30,3,379,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17655,PRINI,2,2019-12-28 05:47:04,2020-01-01 07:44:18,2019-12-29 10:47:38,3,105.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17656,WANDK,1,2015-11-04 22:24:07,2015-11-15 06:07:24,2015-11-13 17:47:57,1,210.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17657,DUMON,7,2014-10-01 16:23:05,2014-10-09 22:13:14,2014-10-05 11:23:03,2,18.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17658,EASTC,6,2013-02-11 09:08:08,2013-03-07 15:23:49,2013-03-07 16:08:55,2,179,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17659,LAMAI,4,2020-05-25 04:45:49,2020-05-29 11:05:46,2020-06-02 23:57:28,3,238.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17660,CONSH,9,2020-02-04 21:20:01,2020-02-21 07:08:37,2020-02-08 17:19:45,1,214,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17661,VALON,5,2015-10-21 18:20:16,2015-11-29 12:40:23,2015-11-12 12:58:10,1,427.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17662,HILAA,6,2020-06-09 06:17:59,2020-06-20 10:41:34,2020-06-22 10:03:34,1,156.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17663,MAISD,3,2015-06-21 20:55:46,2015-07-26 13:47:13,2015-06-25 15:45:13,1,241.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17664,ANTON,6,2013-01-09 07:25:13,2013-01-26 18:59:44,2013-01-10 05:07:47,3,192.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17665,ALFKI,6,2016-04-23 18:12:03,2016-05-19 01:50:11,2016-05-01 13:50:07,2,450,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17666,GOURL,1,2021-08-24 06:25:01,2021-09-21 05:37:55,2021-09-02 02:29:34,1,85,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +17667,THEBI,8,2023-02-04 11:09:36,2023-02-24 05:15:04,2023-02-09 20:56:47,2,375.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17668,SIMOB,3,2021-04-27 22:50:51,2021-05-08 05:33:01,2021-04-30 15:53:01,3,434.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17669,BSBEV,9,2021-06-24 14:57:44,2021-07-15 15:30:20,2021-06-26 21:07:08,1,175.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17670,FRANR,2,2014-09-16 08:50:09,2014-09-24 15:45:52,2014-09-18 10:04:55,3,366.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17671,TRAIH,3,2017-06-06 16:32:11,2017-07-01 08:43:20,2017-06-07 06:13:43,1,32,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17672,CONSH,2,2019-06-06 23:50:20,2019-06-17 13:05:05,2019-06-15 13:53:01,3,175.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17673,VICTE,7,2015-12-30 03:23:19,2016-01-31 23:22:10,2016-01-24 02:12:24,1,524.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17674,PRINI,3,2015-11-15 08:00:41,2015-12-01 20:37:18,2015-12-06 02:07:53,3,466.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17675,MAGAA,2,2017-10-15 09:13:01,2017-10-24 09:24:42,2017-10-27 23:58:59,1,249.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17676,BERGS,3,2021-03-27 00:57:38,2021-04-11 19:14:38,2021-04-03 00:27:20,2,95.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17677,CENTC,5,2013-04-24 13:00:35,2013-05-11 18:37:08,2013-05-05 00:07:51,2,210.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17678,BLONP,9,2014-10-11 16:23:32,2014-11-02 00:57:05,2014-11-03 11:28:17,2,235.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17679,LAUGB,3,2013-10-17 02:40:51,2013-10-20 00:09:27,2013-10-22 21:06:34,3,503.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17680,COMMI,4,2023-03-25 19:54:08,2023-05-02 03:02:07,2023-03-27 00:19:57,2,170.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17681,RICSU,4,2014-04-20 22:13:42,2014-05-09 09:34:35,2014-05-02 00:25:17,2,162.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17682,ISLAT,9,2021-01-07 22:48:40,2021-01-30 15:31:31,2021-01-10 10:45:43,3,214.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17683,WILMK,9,2019-05-26 11:44:59,2019-06-29 16:48:53,2019-05-30 05:15:41,1,462.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17684,ALFKI,9,2023-08-21 18:01:37,2023-09-13 22:00:43,2023-09-02 08:36:56,1,521.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17685,GOURL,5,2019-02-02 14:29:17,2019-02-17 03:36:23,2019-02-11 13:33:36,2,202.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17686,LAUGB,1,2012-08-07 10:14:26,2012-08-11 16:38:07,2012-08-09 13:43:17,2,487.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17687,GALED,8,2018-09-28 16:45:37,2018-10-05 23:44:57,2018-10-06 18:45:13,1,31.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17688,SANTG,5,2023-09-26 00:22:28,2023-10-23 23:49:46,2023-09-29 22:50:23,3,503,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17689,RICAR,9,2020-10-31 08:02:15,2020-11-08 18:43:08,2020-11-02 12:47:06,2,452.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17690,WOLZA,6,2022-06-29 15:59:01,2022-06-30 13:26:02,2022-07-05 15:27:50,2,260.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17691,WANDK,4,2015-06-13 10:00:28,2015-07-30 05:38:38,2015-06-24 02:02:41,2,142.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17692,SANTG,9,2021-03-15 16:34:20,2021-03-16 02:10:40,2021-03-15 18:30:12,2,63.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17693,GALED,6,2022-10-15 22:27:57,2022-10-28 07:00:55,2022-10-28 07:25:14,2,200.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +17694,BERGS,3,2013-08-01 08:25:22,2013-09-01 01:46:27,2013-08-08 00:36:51,2,483,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17695,CHOPS,8,2017-03-30 02:54:38,2017-04-20 00:02:17,2017-04-04 04:19:14,2,447.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17696,THECR,8,2023-05-16 18:52:37,2023-06-16 19:49:07,2023-06-02 06:46:00,3,447,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17697,SPECD,9,2016-01-26 09:04:16,2016-03-02 05:22:56,2016-01-28 00:17:57,3,291.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17698,GREAL,3,2020-07-03 12:03:42,2020-07-14 20:15:38,2020-07-16 04:01:16,2,319,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17699,BSBEV,2,2016-11-04 13:07:20,2016-11-20 18:20:44,2016-11-07 16:06:37,2,336.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17700,SAVEA,5,2015-08-08 03:44:11,2015-08-18 06:13:20,2015-08-11 01:16:51,3,138.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17701,GOURL,9,2018-12-20 19:58:23,2019-01-18 23:54:46,2019-01-11 15:11:37,2,74.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +17702,EASTC,1,2016-06-23 13:01:59,2016-08-05 03:21:05,2016-07-14 18:16:32,3,148.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17703,HUNGC,8,2016-07-27 19:47:00,2016-08-20 19:57:55,2016-07-27 22:29:02,1,96,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17704,SANTG,5,2013-07-06 11:11:41,2013-08-25 18:34:38,2013-07-21 17:06:44,3,448.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17705,FAMIA,5,2017-12-06 14:14:13,2017-12-25 02:18:26,2017-12-27 06:01:00,1,130.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17706,LEHMS,5,2018-11-20 04:49:49,2018-12-04 04:17:14,2018-11-22 11:01:49,3,243.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17707,GOURL,2,2015-02-12 05:07:39,2015-02-12 09:50:14,2015-02-14 20:47:17,2,379.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +17708,ALFKI,6,2017-11-07 10:39:30,2017-12-11 19:44:22,2017-11-08 09:28:32,2,310.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17709,ERNSH,3,2013-03-11 11:42:31,2013-04-06 05:06:52,2013-03-11 13:11:37,1,159.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17710,QUICK,6,2022-06-01 05:38:45,2022-06-11 09:26:19,2022-06-08 05:16:02,3,500.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17711,WHITC,7,2014-11-17 23:28:55,2014-12-19 00:10:46,2014-11-19 08:30:24,3,330.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17712,TORTU,1,2013-11-14 18:08:47,2013-12-10 23:41:05,2013-11-15 13:23:51,3,359,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17713,ISLAT,1,2022-03-08 14:48:16,2022-03-26 23:06:56,2022-03-14 20:38:08,3,109.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17714,FOLKO,1,2021-04-08 06:57:24,2021-05-18 06:21:11,2021-04-21 22:07:05,2,363.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17715,WHITC,7,2022-09-19 04:24:03,2022-10-09 01:44:37,2022-09-21 14:34:36,3,466.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17716,KOENE,7,2017-08-16 21:28:44,2017-09-19 20:06:19,2017-08-31 21:51:41,3,242.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17717,BOLID,3,2020-04-15 17:01:49,2020-04-30 02:49:03,2020-04-29 00:42:15,1,83.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17718,RATTC,6,2014-12-08 10:22:52,2014-12-23 21:02:41,2014-12-21 08:53:31,1,106,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17719,EASTC,9,2015-09-20 16:59:40,2015-10-21 10:47:02,2015-09-27 08:23:42,2,159.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17720,CACTU,1,2021-03-24 22:51:21,2021-04-25 10:15:24,2021-04-09 08:18:36,3,90.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17721,WELLI,7,2019-04-01 02:13:19,2019-04-06 09:18:51,2019-04-06 14:20:02,1,217.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17722,PARIS,6,2020-10-31 21:03:03,2020-11-14 02:25:53,2020-11-17 05:30:57,3,413,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17723,HANAR,9,2019-09-30 05:56:51,2019-10-10 02:34:30,2019-10-19 10:32:57,2,151,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17724,MEREP,5,2014-09-09 03:30:59,2014-09-19 04:49:16,2014-09-18 09:00:25,2,118.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17725,FRANR,8,2020-03-23 09:12:39,2020-04-23 11:35:06,2020-04-08 10:18:37,1,414.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17726,VINET,7,2012-08-21 18:05:59,2012-10-08 06:46:54,2012-08-23 06:16:33,1,412.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17727,WARTH,8,2015-08-10 23:00:43,2015-09-19 11:34:16,2015-08-23 23:29:17,1,437.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17728,RICSU,6,2013-05-18 23:26:38,2013-06-30 22:18:01,2013-06-05 05:12:33,1,24.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17729,Val2 ,2,2015-02-19 05:24:16,2015-02-21 16:38:37,2015-02-25 01:23:33,2,335.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17730,ISLAT,4,2015-08-31 09:58:55,2015-09-06 20:55:45,2015-09-12 01:44:24,3,159.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17731,VINET,4,2021-07-15 09:22:17,2021-07-27 20:56:57,2021-08-01 01:14:19,1,496,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17732,QUEDE,6,2023-05-23 11:03:44,2023-06-13 05:18:00,2023-05-23 22:08:02,2,304.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17733,RICAR,4,2013-07-04 11:54:17,2013-07-18 09:18:45,2013-07-08 07:01:35,3,456,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17734,PRINI,6,2018-10-25 06:52:52,2018-11-03 14:14:34,2018-11-12 19:59:54,3,45,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17735,VAFFE,2,2018-01-02 02:21:38,2018-01-28 00:58:18,2018-01-23 12:34:17,3,126.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17736,FRANK,7,2018-06-20 21:28:21,2018-07-04 19:03:11,2018-06-26 15:57:34,2,138.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17737,RANCH,9,2013-04-02 14:48:10,2013-04-19 16:01:25,2013-04-17 07:56:07,2,88.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17738,TRADH,9,2020-11-17 08:31:59,2020-11-22 18:48:00,2020-12-15 01:06:00,2,119.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17739,GALED,9,2016-04-23 00:26:08,2016-04-29 16:55:37,2016-04-26 14:52:11,3,175.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17740,CACTU,6,2016-03-07 17:05:06,2016-03-09 20:32:30,2016-03-11 01:44:10,3,62,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17741,QUICK,2,2018-06-14 03:51:56,2018-07-07 05:37:17,2018-06-18 11:09:31,3,25.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17742,WARTH,4,2019-01-07 01:32:39,2019-02-22 19:24:27,2019-01-07 08:31:09,3,351.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17743,LONEP,5,2018-07-22 05:09:38,2018-08-16 14:47:52,2018-08-10 09:51:18,2,191.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17744,LACOR,3,2022-04-05 05:25:15,2022-04-11 12:11:35,2022-04-09 05:43:59,3,229,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17745,LACOR,3,2015-03-26 02:37:51,2015-04-15 03:12:32,2015-04-04 19:59:48,2,213.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17746,TRADH,5,2017-05-19 07:29:51,2017-05-30 07:32:41,2017-05-21 01:39:21,3,148.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17747,CHOPS,7,2020-01-14 18:42:17,2020-01-30 23:42:49,2020-01-16 03:59:14,1,132.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17748,GODOS,3,2019-06-25 07:45:05,2019-08-05 11:04:22,2019-06-29 07:05:48,1,502,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17749,BOLID,6,2022-02-20 00:21:12,2022-03-08 10:48:38,2022-02-26 10:35:20,3,230.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17750,WARTH,1,2019-05-14 22:22:13,2019-05-26 14:14:24,2019-05-16 12:36:12,1,366,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17751,LACOR,2,2022-08-19 10:39:41,2022-08-28 20:37:21,2022-08-19 17:51:09,2,284.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17752,TOMSP,3,2014-04-05 10:14:19,2014-04-21 19:14:04,2014-04-24 20:21:57,1,260,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17753,ANATR,8,2015-01-26 03:12:40,2015-03-03 13:27:40,2015-02-03 17:06:43,1,318,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17754,SPLIR,3,2019-07-24 22:56:03,2019-07-30 04:00:35,2019-08-02 11:11:10,2,14,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17755,HUNGO,5,2017-08-20 08:02:18,2017-09-22 20:39:24,2017-08-21 06:47:29,2,392.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17756,BOLID,4,2012-10-29 18:00:53,2012-11-11 20:31:29,2012-11-07 11:14:06,3,62,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17757,PRINI,2,2014-02-18 15:40:14,2014-03-21 19:25:39,2014-02-24 10:10:14,1,68.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17758,NORTS,7,2021-12-03 02:48:34,2021-12-31 21:01:30,2021-12-06 15:26:31,3,72.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17759,BLAUS,4,2019-08-10 18:30:35,2019-09-02 03:05:07,2019-08-11 21:00:25,3,428.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +17760,RICSU,2,2017-05-11 09:34:29,2017-06-22 06:08:37,2017-05-18 17:05:44,2,135.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +17761,RATTC,4,2014-12-24 14:44:00,2015-01-23 03:30:44,2015-01-03 04:54:00,1,23.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17762,AROUT,5,2018-09-01 16:57:52,2018-09-23 15:32:54,2018-09-09 15:31:29,2,368.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17763,HILAA,8,2017-11-21 14:35:26,2017-12-05 18:19:23,2017-11-24 06:27:59,3,126.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17764,WHITC,6,2019-02-10 09:21:46,2019-02-26 13:56:25,2019-02-12 06:28:09,2,66,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17765,FAMIA,3,2018-05-04 01:33:09,2018-05-12 00:34:38,2018-05-06 19:22:26,1,132,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17766,THEBI,7,2014-01-17 05:00:05,2014-02-15 12:20:23,2014-02-02 03:10:23,2,436.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17767,FRANR,9,2022-01-18 15:20:25,2022-01-19 01:07:38,2022-01-19 21:24:15,1,293.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17768,CONSH,5,2016-05-04 18:11:31,2016-05-16 15:19:58,2016-05-10 17:55:08,1,113,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17769,PICCO,5,2016-01-01 17:41:53,2016-01-10 20:01:02,2016-01-04 19:19:51,3,363.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17770,SEVES,2,2014-03-03 06:24:32,2014-03-16 18:50:54,2014-03-09 03:40:01,1,96.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17771,Val2 ,8,2023-06-30 11:51:28,2023-07-12 01:51:34,2023-07-10 03:09:57,2,503.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17772,RICAR,1,2015-10-08 03:04:10,2015-10-24 15:27:08,2015-10-17 18:40:55,3,14.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17773,CACTU,9,2022-12-15 08:04:35,2022-12-28 13:29:59,2022-12-25 07:26:35,3,352.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +17774,THEBI,7,2015-08-04 20:14:30,2015-08-09 20:25:08,2015-08-15 23:38:47,3,392,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17775,ROMEY,1,2015-10-25 08:30:05,2015-11-05 08:50:00,2015-10-25 08:50:03,1,89.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17776,ANATR,7,2021-05-12 18:37:52,2021-05-20 19:35:25,2021-05-12 23:41:32,1,206,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17777,TRAIH,3,2019-11-26 05:28:28,2019-12-14 14:21:48,2019-12-21 06:55:39,3,235.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17778,WANDK,6,2017-05-04 15:18:56,2017-06-01 01:08:49,2017-05-20 18:37:40,3,437.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17779,OCEAN,5,2020-05-28 02:18:12,2020-05-28 03:40:08,2020-06-13 00:03:46,2,12.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17780,LONEP,2,2015-11-04 16:59:53,2015-12-02 11:42:16,2015-11-05 15:24:39,3,45.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17781,FURIB,1,2014-03-29 16:54:44,2014-05-01 06:56:21,2014-04-24 07:06:51,2,319,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17782,BERGS,1,2021-09-06 02:45:48,2021-09-29 04:06:10,2021-09-18 09:59:04,1,148.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +17783,FRANS,4,2014-02-03 13:46:41,2014-02-25 03:26:48,2014-02-09 16:33:16,2,247.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17784,LINOD,1,2019-02-19 17:09:20,2019-03-06 18:06:25,2019-02-20 11:03:36,3,59.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17785,ANATR,8,2015-11-04 03:46:54,2015-12-04 19:29:21,2015-11-13 10:23:01,3,208,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17786,RICSU,2,2015-05-20 05:23:10,2015-06-16 03:21:04,2015-05-23 09:51:22,1,208.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17787,PARIS,7,2019-04-23 20:29:36,2019-05-23 09:56:45,2019-04-28 13:49:14,2,94,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17788,MORGK,5,2022-09-14 06:12:46,2022-10-27 01:22:19,2022-09-22 15:01:35,2,200,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17789,VICTE,9,2019-04-10 00:32:52,2019-05-17 17:43:33,2019-04-18 01:51:51,2,258,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17790,ANTON,5,2017-06-11 04:04:24,2017-06-15 09:46:41,2017-06-13 07:57:12,2,38.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +17791,FRANR,6,2016-12-21 02:46:11,2017-01-06 13:20:05,2016-12-21 22:43:01,1,264.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17792,ERNSH,3,2022-08-09 20:52:29,2022-08-18 14:25:10,2022-08-27 02:06:34,3,121.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17793,LEHMS,1,2017-07-30 10:53:08,2017-08-09 11:34:28,2017-08-05 09:42:51,1,148,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17794,PRINI,5,2016-06-05 17:20:55,2016-06-17 22:22:52,2016-06-06 02:46:57,1,387.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +17795,EASTC,2,2023-01-13 03:26:14,2023-02-02 05:02:12,2023-01-17 14:37:56,1,443.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17796,LAMAI,2,2013-09-15 13:12:55,2013-09-29 14:47:29,2013-09-27 05:05:53,1,273.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17797,BLONP,3,2012-10-14 12:44:55,2012-10-23 11:35:03,2012-10-15 09:53:47,2,20.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17798,LEHMS,8,2020-09-23 01:42:53,2020-09-24 01:55:16,2020-10-02 06:21:44,3,323.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17799,ANATR,7,2015-10-11 19:15:54,2015-10-27 17:30:33,2015-11-07 01:01:43,1,242.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17800,TORTU,2,2014-01-21 22:44:19,2014-01-30 19:48:59,2014-01-27 11:42:42,1,56.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17801,OCEAN,9,2023-10-19 11:40:55,2023-11-27 03:40:26,2023-10-31 06:11:58,1,304.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17802,SAVEA,7,2015-11-18 13:33:58,2015-11-21 01:17:54,2015-11-19 21:40:29,1,531.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17803,DRACD,5,2016-01-08 13:54:45,2016-01-09 15:08:23,2016-01-18 10:51:58,2,319.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +17804,LINOD,5,2020-03-13 08:22:04,2020-03-25 17:34:06,2020-03-29 20:59:38,3,132.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17805,MAGAA,5,2018-04-26 05:07:29,2018-05-08 11:57:47,2018-04-30 05:42:11,2,190,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17806,VALON,2,2021-04-02 17:57:56,2021-04-07 04:04:50,2021-04-14 23:27:04,2,225.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17807,LAUGB,9,2019-06-15 09:09:48,2019-07-04 13:17:58,2019-07-08 03:05:34,2,59.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17808,MORGK,9,2023-02-05 10:50:21,2023-02-18 15:30:02,2023-02-22 10:41:18,1,134.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17809,MAGAA,7,2018-11-04 08:30:45,2018-11-13 20:28:47,2018-11-06 19:57:55,2,406.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +17810,ANATR,3,2018-02-15 19:43:37,2018-02-28 13:42:52,2018-02-28 20:05:32,1,57,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17811,VICTE,3,2015-09-22 22:11:04,2015-10-09 21:33:42,2015-10-08 02:35:20,2,286.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17812,REGGC,2,2018-08-10 03:26:02,2018-09-16 10:58:28,2018-08-10 03:36:56,2,140.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17813,KOENE,9,2013-03-28 10:19:57,2013-04-03 05:32:41,2013-03-31 14:55:40,1,427,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17814,COMMI,8,2019-08-20 18:12:58,2019-09-18 15:47:04,2019-08-28 04:18:54,1,388,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17815,GALED,3,2023-07-24 23:31:18,2023-09-14 06:44:00,2023-07-29 12:27:53,2,331.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17816,VICTE,7,2022-08-14 04:25:49,2022-09-22 18:09:06,2022-08-21 01:53:29,3,226.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17817,Val2 ,5,2015-10-26 13:58:53,2015-11-08 22:37:06,2015-10-27 19:45:17,1,37.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17818,VALON,2,2018-11-14 18:15:11,2018-12-02 21:05:44,2018-11-17 13:46:21,1,357.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17819,TORTU,9,2014-04-26 23:51:54,2014-05-05 23:29:00,2014-05-15 20:47:55,3,212,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +17820,QUICK,7,2020-05-09 16:59:22,2020-05-24 16:32:34,2020-05-22 21:38:01,1,228.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17821,HILAA,6,2021-02-06 09:06:31,2021-03-15 13:12:00,2021-03-04 22:14:54,1,306.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17822,Val2 ,9,2022-04-03 13:49:12,2022-04-20 10:43:50,2022-04-15 07:20:09,1,161.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17823,MEREP,1,2023-03-11 06:18:14,2023-03-20 23:45:20,2023-03-12 13:03:30,3,180,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17824,VICTE,3,2013-10-07 05:07:31,2013-10-16 23:06:21,2013-10-08 09:36:08,3,45.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17825,BERGS,1,2018-11-04 20:30:17,2018-12-14 13:22:51,2018-11-05 21:33:32,1,360.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17826,DRACD,1,2019-06-30 20:30:45,2019-07-12 20:36:35,2019-07-09 13:46:52,1,477,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17827,BOLID,3,2017-12-30 01:43:15,2018-01-04 10:53:19,2018-01-01 03:22:38,2,295,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +17828,WANDK,4,2014-03-21 20:59:26,2014-05-04 07:03:30,2014-03-26 17:23:06,3,26.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17829,TORTU,9,2020-05-18 01:33:18,2020-06-06 08:23:41,2020-05-26 21:13:07,1,443.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17830,WILMK,6,2022-10-12 09:39:35,2022-10-26 01:53:45,2022-10-23 16:47:12,2,110.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17831,PERIC,1,2012-08-01 14:55:04,2012-08-28 00:41:06,2012-08-14 22:42:12,1,155.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17832,BLONP,3,2021-02-14 19:40:20,2021-02-24 13:32:25,2021-02-14 22:02:45,2,445.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17833,WANDK,6,2018-09-16 11:56:30,2018-10-08 00:44:01,2018-09-17 02:11:18,2,438.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17834,BOLID,6,2020-12-04 04:12:47,2020-12-21 02:14:11,2020-12-10 07:48:36,1,194.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17835,BONAP,7,2020-02-19 04:25:30,2020-03-03 01:38:00,2020-03-05 17:17:09,2,44,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17836,GODOS,3,2013-03-24 18:35:45,2013-04-06 15:31:11,2013-04-03 01:46:32,2,25.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17837,SANTG,4,2021-11-15 19:36:59,2021-12-01 11:17:28,2021-11-24 01:16:31,2,38,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17838,TRAIH,7,2017-05-30 12:52:49,2017-06-01 05:08:31,2017-06-07 08:21:56,1,288.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17839,BLONP,5,2014-02-01 05:22:21,2014-02-14 00:13:56,2014-02-02 13:31:08,2,335.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17840,DUMON,5,2019-06-04 06:03:26,2019-07-13 12:21:08,2019-06-11 14:44:01,1,237.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +17841,COMMI,4,2019-05-16 08:15:39,2019-06-12 04:18:26,2019-05-26 02:30:34,2,369.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17842,GODOS,1,2021-07-11 20:11:49,2021-08-04 22:47:39,2021-07-14 04:48:26,1,349,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +17843,OLDWO,9,2013-12-15 07:36:48,2013-12-27 23:13:34,2013-12-16 15:59:12,3,253,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17844,EASTC,1,2016-02-27 11:00:08,2016-04-22 03:37:19,2016-03-04 11:35:24,2,158,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17845,MAISD,3,2012-09-20 00:15:25,2012-10-07 15:36:57,2012-10-01 06:33:10,1,184.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17846,CHOPS,6,2022-01-31 20:31:40,2022-02-04 21:52:58,2022-02-10 06:08:06,2,415.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17847,FRANR,6,2017-06-30 16:26:39,2017-07-02 13:32:44,2017-07-01 12:57:17,3,319.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +17848,QUEDE,8,2016-08-19 06:22:05,2016-08-27 11:53:20,2016-08-19 12:43:39,3,369.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17849,BLAUS,2,2017-08-21 08:22:26,2017-08-30 07:21:07,2017-08-26 21:09:22,2,143.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +17850,BLONP,1,2018-11-06 13:56:10,2018-11-23 05:58:18,2018-11-10 13:40:29,2,133.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17851,THECR,1,2021-12-28 19:53:57,2022-01-14 23:57:30,2022-01-14 04:48:47,3,304.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17852,WELLI,1,2020-04-15 20:04:47,2020-04-25 09:49:32,2020-04-18 12:48:30,3,522,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17853,QUICK,2,2016-09-10 06:33:05,2016-09-23 03:48:30,2016-09-18 06:52:50,1,79.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17854,DUMON,7,2018-04-16 16:41:47,2018-04-23 09:58:38,2018-04-17 00:20:33,1,254,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17855,WARTH,3,2023-02-20 05:53:42,2023-03-09 03:16:14,2023-02-20 07:02:19,1,235.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17856,SPECD,4,2018-11-18 03:52:12,2018-11-26 15:46:07,2018-11-30 13:26:31,3,405.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17857,GOURL,3,2015-06-14 13:51:15,2015-06-20 06:12:20,2015-06-20 16:52:56,2,450.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17858,LILAS,8,2016-09-16 21:19:36,2016-10-07 04:02:26,2016-09-20 21:54:27,2,255.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17859,LAZYK,2,2015-01-31 04:43:25,2015-03-10 17:21:30,2015-02-03 10:18:42,1,449,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17860,BONAP,7,2022-02-14 20:53:04,2022-03-03 07:35:49,2022-03-07 21:48:28,3,458.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17861,FRANS,6,2017-03-26 17:51:43,2017-04-07 02:02:38,2017-04-07 11:32:59,1,514,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17862,TORTU,5,2021-03-18 10:39:32,2021-03-22 12:39:30,2021-03-30 19:04:43,1,468.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17863,TRADH,9,2014-04-13 14:50:04,2014-04-23 09:33:58,2014-04-16 07:00:52,1,471,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +17864,FRANS,4,2023-09-12 23:33:46,2023-09-20 16:31:38,2023-09-28 02:23:37,1,21.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17865,PRINI,8,2016-09-21 13:02:36,2016-09-23 01:29:49,2016-10-03 11:12:27,3,348,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17866,QUEEN,3,2016-04-30 23:27:24,2016-05-07 14:33:51,2016-05-12 19:54:18,3,203.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +17867,VALON,1,2012-12-12 16:13:27,2013-01-23 11:18:05,2012-12-13 21:38:11,1,22,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17868,AROUT,6,2016-01-10 10:48:34,2016-01-13 11:34:36,2016-01-16 04:15:01,1,223,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17869,BLAUS,5,2015-08-06 04:36:45,2015-08-16 19:06:03,2015-08-08 17:41:29,1,93.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17870,BONAP,1,2022-08-20 11:00:32,2022-08-21 06:57:31,2022-08-20 11:04:15,2,472,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17871,MEREP,6,2022-02-15 19:43:47,2022-02-28 08:51:19,2022-02-22 11:12:42,3,240,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17872,GALED,6,2022-04-24 20:17:10,2022-06-23 18:42:42,2022-05-05 07:34:30,1,200.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17873,FOLIG,1,2015-11-18 08:32:16,2015-12-04 19:25:01,2015-11-21 10:05:09,2,175.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17874,MORGK,1,2021-08-09 07:39:36,2021-08-13 04:10:43,2021-08-21 10:13:24,3,253.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +17875,ALFKI,4,2023-09-21 21:43:03,2023-10-29 21:41:15,2023-09-23 13:17:46,3,21.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +17876,WOLZA,9,2015-09-21 14:37:30,2015-10-11 12:44:42,2015-09-21 17:05:16,2,221.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17877,LONEP,1,2021-10-21 18:56:11,2021-11-23 22:45:48,2021-11-08 16:08:36,2,345.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17878,SIMOB,5,2012-08-18 02:54:48,2012-08-28 14:07:18,2012-08-19 01:10:40,1,100,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17879,SPECD,7,2022-02-10 15:50:50,2022-02-11 18:59:43,2022-02-17 09:09:54,2,365.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17880,FOLKO,5,2023-03-14 23:31:17,2023-03-31 12:20:05,2023-03-18 13:14:01,2,314.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17881,FOLKO,9,2022-09-26 07:52:09,2022-10-05 23:36:37,2022-10-17 09:56:53,2,191.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +17882,BOTTM,3,2018-12-27 04:15:23,2019-02-07 14:58:18,2018-12-28 00:35:20,1,462.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17883,OCEAN,2,2017-10-15 14:31:37,2017-10-19 16:42:02,2017-10-17 14:58:20,3,81,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +17884,RANCH,3,2020-11-04 06:32:37,2020-11-13 04:31:46,2020-11-05 02:56:44,3,163.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17885,QUEEN,8,2019-01-07 16:32:38,2019-01-24 20:52:43,2019-01-09 14:50:31,1,164.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17886,LAUGB,8,2020-11-22 06:48:20,2020-12-05 00:49:05,2020-11-26 16:42:39,3,110.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17887,CHOPS,1,2014-04-15 22:35:44,2014-05-21 21:23:35,2014-04-22 03:10:15,2,31.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +17888,HILAA,1,2017-06-30 12:03:24,2017-08-03 16:36:47,2017-07-02 13:55:33,2,475.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17889,AROUT,3,2012-08-12 03:51:29,2012-08-14 07:46:52,2012-08-27 01:26:52,2,305.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17890,EASTC,6,2021-01-30 02:33:10,2021-03-03 04:55:03,2021-02-03 19:01:41,3,139.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17891,Val2 ,6,2012-07-21 22:28:42,2012-08-21 21:10:39,2012-07-30 03:02:32,2,261.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +17892,WOLZA,1,2015-08-03 13:37:00,2015-08-27 21:20:47,2015-08-05 13:49:00,2,81,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +17893,SANTG,6,2018-03-31 02:51:37,2018-04-19 02:08:16,2018-04-20 12:55:59,3,212.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17894,KOENE,1,2014-08-22 18:49:48,2014-09-19 13:06:00,2014-09-09 13:43:37,2,308.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +17895,PRINI,8,2013-12-13 05:52:52,2013-12-25 03:18:15,2013-12-13 21:32:10,1,97.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17896,ANTON,1,2014-04-23 18:17:29,2014-06-03 08:18:34,2014-04-25 01:53:51,1,311.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17897,CONSH,1,2023-04-22 00:00:02,2023-04-22 17:06:33,2023-04-27 23:09:56,3,399.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17898,FOLKO,3,2013-05-22 07:23:18,2013-06-09 12:39:32,2013-05-22 14:52:41,2,316,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17899,WHITC,8,2016-11-08 20:39:33,2016-11-15 22:02:22,2016-11-27 11:31:06,3,196,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17900,OLDWO,2,2019-11-02 00:11:30,2019-11-02 12:59:23,2019-11-05 03:16:36,1,76.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +17901,FISSA,1,2021-05-13 10:37:34,2021-05-22 07:44:29,2021-05-13 13:30:04,2,238.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17902,GOURL,3,2017-05-12 14:34:15,2017-06-07 19:59:55,2017-05-30 01:16:52,2,118.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17903,SPECD,6,2018-01-10 06:05:54,2018-01-29 01:37:46,2018-01-10 21:11:00,2,146.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17904,RATTC,5,2021-12-07 08:31:58,2022-01-03 05:58:24,2021-12-17 01:34:08,3,393.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +17905,OLDWO,2,2020-12-11 02:17:02,2021-01-26 06:27:47,2020-12-15 11:37:27,1,152,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17906,WARTH,5,2015-03-16 05:03:02,2015-03-22 23:59:10,2015-03-18 14:27:08,3,72,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17907,KOENE,1,2021-07-13 02:52:07,2021-07-30 20:16:39,2021-07-25 08:37:35,2,439,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +17908,TRADH,6,2018-06-25 04:30:44,2018-08-15 20:22:36,2018-06-29 22:50:59,3,439.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17909,OLDWO,5,2019-08-22 23:29:40,2019-09-15 12:01:32,2019-08-24 18:26:01,2,348,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +17910,OCEAN,6,2022-01-17 14:07:38,2022-02-06 09:02:44,2022-01-21 23:09:56,3,470,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17911,FAMIA,4,2016-02-15 05:54:08,2016-03-13 03:37:17,2016-03-01 01:55:07,3,392,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +17912,FURIB,2,2023-03-07 01:54:33,2023-03-28 04:41:13,2023-03-07 17:02:22,1,28.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17913,VAFFE,8,2016-10-02 04:23:34,2016-10-04 12:01:02,2016-10-03 04:16:49,2,328.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17914,RATTC,4,2021-09-27 11:07:28,2021-11-10 03:51:39,2021-10-07 22:13:11,2,540.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17915,RATTC,4,2018-03-14 02:20:42,2018-03-21 19:36:36,2018-03-22 14:50:25,3,325.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17916,HUNGC,9,2015-06-29 21:16:16,2015-07-26 22:15:42,2015-07-02 11:55:17,3,252.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17917,KOENE,6,2016-09-04 10:42:22,2016-09-09 10:55:16,2016-09-06 01:33:29,1,91.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17918,TRAIH,2,2022-08-09 13:12:09,2022-08-23 05:38:11,2022-08-20 13:15:51,2,481.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +17919,RICSU,7,2022-01-11 09:24:44,2022-01-27 10:17:16,2022-01-12 16:05:12,3,418,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17920,SAVEA,1,2020-01-22 04:23:32,2020-01-27 23:51:41,2020-01-26 01:29:45,2,231.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17921,SIMOB,2,2013-01-03 21:42:30,2013-02-04 03:26:30,2013-01-26 11:48:42,1,338,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +17922,QUEDE,5,2023-07-08 05:57:04,2023-07-28 16:06:30,2023-07-16 04:19:48,1,214.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +17923,ERNSH,6,2015-10-14 15:49:56,2015-11-20 22:13:27,2015-10-15 19:57:22,3,75.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +17924,LAZYK,1,2023-03-03 02:55:48,2023-03-04 06:57:11,2023-03-03 23:48:25,3,289.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17925,VAFFE,7,2019-05-26 11:12:26,2019-06-23 10:45:07,2019-05-29 01:52:13,1,95,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +17926,ALFKI,1,2017-04-12 18:03:03,2017-05-05 10:54:49,2017-04-20 07:57:06,2,280.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +17927,LAMAI,6,2015-01-20 04:03:14,2015-02-21 15:51:32,2015-02-15 06:22:45,2,260.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17928,BLONP,8,2016-05-21 14:49:51,2016-07-15 12:00:42,2016-06-10 18:25:52,3,410.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17929,EASTC,2,2023-06-09 18:36:10,2023-07-06 07:18:50,2023-06-11 00:48:08,2,144.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +17930,MAISD,4,2017-04-03 10:21:10,2017-04-08 00:47:33,2017-04-07 18:37:16,3,114.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +17931,CENTC,2,2014-11-30 22:22:04,2014-12-18 22:00:40,2014-12-04 22:24:29,2,199.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17932,BSBEV,9,2021-07-29 20:48:56,2021-08-22 14:44:12,2021-07-30 06:38:16,3,92.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +17933,HUNGC,1,2018-04-16 23:37:56,2018-05-13 12:25:15,2018-05-02 04:52:37,2,488,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17934,DRACD,2,2016-04-25 20:50:44,2016-05-08 02:42:30,2016-05-11 17:40:09,3,240.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17935,VALON,2,2019-12-09 11:41:47,2019-12-31 22:35:38,2019-12-15 11:13:40,2,171,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17936,BOLID,3,2019-05-17 12:18:53,2019-05-26 20:25:25,2019-05-25 09:25:29,2,467,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17937,BLONP,2,2013-03-06 22:32:25,2013-03-13 22:53:23,2013-03-10 09:48:46,3,99.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +17938,HUNGC,8,2018-02-19 17:35:28,2018-03-14 11:55:14,2018-02-20 14:02:49,2,135.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +17939,HILAA,8,2015-08-05 19:29:44,2015-09-30 09:19:44,2015-08-10 09:30:11,1,259.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +17940,VICTE,9,2019-12-27 11:39:55,2020-01-01 01:12:43,2020-01-01 19:50:19,1,215.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +17941,SANTG,8,2021-03-26 12:54:22,2021-04-04 14:39:03,2021-03-28 08:34:29,3,97,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17942,FRANS,2,2020-12-24 15:29:22,2021-01-13 06:35:56,2020-12-29 03:41:01,1,188,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +17943,RICSU,9,2023-04-08 06:01:22,2023-05-04 20:56:23,2023-04-10 14:45:04,3,93.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17944,LILAS,3,2018-12-05 19:51:25,2018-12-19 22:39:01,2018-12-08 06:23:15,1,360.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17945,SPLIR,1,2020-06-23 05:12:56,2020-08-17 05:12:01,2020-06-23 12:16:59,3,393.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17946,BERGS,8,2015-10-08 19:55:54,2015-10-30 22:15:48,2015-10-08 22:45:18,3,194.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +17947,LAMAI,6,2016-07-05 03:55:34,2016-07-09 11:24:34,2016-07-17 20:05:26,2,138.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +17948,SAVEA,7,2012-11-05 06:26:10,2012-12-21 02:57:24,2012-11-10 13:38:19,1,199.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17949,MAISD,8,2020-04-28 04:46:23,2020-05-11 04:20:57,2020-04-29 11:14:13,3,208.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17950,NORTS,7,2023-01-11 17:09:39,2023-01-22 07:22:12,2023-01-15 10:00:53,1,189.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17951,LACOR,6,2022-02-19 14:38:46,2022-03-08 12:28:45,2022-03-05 03:04:02,2,96.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17952,BSBEV,5,2022-11-28 12:33:24,2023-01-05 20:24:28,2022-11-30 18:54:05,2,150,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +17953,HANAR,5,2012-11-27 17:40:20,2012-12-27 06:37:31,2012-12-01 23:31:28,2,41.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +17954,THEBI,4,2021-04-18 19:29:00,2021-04-19 18:22:18,2021-04-19 02:28:09,3,508,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +17955,THECR,2,2022-12-26 23:55:35,2023-01-25 15:45:01,2023-01-15 14:01:57,3,480.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +17956,PICCO,6,2018-01-07 19:42:08,2018-02-04 18:21:45,2018-01-11 18:16:40,2,246,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +17957,RATTC,7,2015-01-13 08:08:20,2015-01-25 05:52:56,2015-01-19 13:42:26,2,96.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +17958,BERGS,3,2021-12-29 10:38:15,2022-01-18 20:58:28,2022-01-10 18:07:21,3,105.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17959,FURIB,8,2016-04-19 05:11:43,2016-04-29 01:45:31,2016-04-21 09:52:41,1,30.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17960,FOLIG,2,2013-01-17 11:11:22,2013-01-23 02:11:01,2013-01-17 14:53:47,3,83.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +17961,ALFKI,2,2017-09-24 07:49:37,2017-10-05 07:44:57,2017-09-25 20:21:49,1,271.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +17962,QUEEN,2,2020-11-28 12:55:41,2020-12-06 20:29:21,2020-12-02 01:54:23,1,175.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17963,FURIB,2,2023-08-28 03:24:31,2023-09-30 15:39:44,2023-09-17 03:52:45,3,353.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +17964,QUICK,1,2022-11-18 04:39:10,2022-12-24 17:03:05,2022-11-25 03:37:06,2,378.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +17965,FRANK,1,2016-10-13 15:36:43,2016-11-01 02:02:12,2016-10-24 15:59:04,2,219.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +17966,VALON,5,2016-02-08 20:42:51,2016-03-06 04:28:12,2016-02-08 20:54:37,2,58.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +17967,HUNGC,7,2014-04-21 20:15:43,2014-05-09 21:19:54,2014-04-21 23:41:43,2,432,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +17968,ROMEY,2,2014-11-23 06:38:40,2014-12-28 01:14:13,2014-11-25 01:53:58,1,352.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +17969,THEBI,6,2020-09-26 02:49:47,2020-10-15 17:05:45,2020-10-06 09:03:02,3,237,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +17970,REGGC,7,2015-01-30 18:19:27,2015-01-31 21:27:46,2015-02-07 02:11:03,3,501,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +17971,COMMI,8,2015-11-01 17:30:35,2015-11-07 20:24:36,2015-11-08 15:42:58,2,136.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +17972,PICCO,5,2020-08-25 04:20:57,2020-09-03 19:52:23,2020-08-30 08:16:04,3,194,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +17973,VAFFE,8,2020-08-09 22:29:25,2020-09-05 12:08:22,2020-08-13 08:03:14,2,30.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +17974,WILMK,7,2017-04-29 01:38:10,2017-05-07 08:47:15,2017-05-05 09:49:20,3,222.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +17975,SEVES,2,2012-12-20 03:52:49,2013-01-06 14:30:59,2012-12-23 14:52:39,2,46.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +17976,LAZYK,8,2019-04-08 05:34:44,2019-05-14 14:22:48,2019-04-11 01:18:54,1,443.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +17977,SAVEA,6,2016-06-11 16:43:49,2016-08-06 12:38:21,2016-06-12 17:56:07,1,232.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17978,LILAS,2,2023-08-23 12:51:27,2023-09-08 14:49:57,2023-08-25 08:51:22,3,313,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +17979,LAMAI,4,2021-12-07 07:49:20,2021-12-25 14:54:51,2021-12-10 18:40:06,3,399.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +17980,GROSR,6,2019-01-19 09:50:45,2019-02-12 21:59:49,2019-02-11 04:14:59,2,22.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +17981,RICAR,6,2013-07-27 12:30:43,2013-08-17 08:21:54,2013-08-05 04:55:26,1,368.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +17982,RICAR,5,2019-05-24 22:35:36,2019-07-07 19:16:28,2019-06-19 13:57:41,1,435.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +17983,MAGAA,6,2020-12-08 08:09:45,2021-01-07 13:41:35,2020-12-22 23:49:13,2,152.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +17984,SUPRD,9,2019-12-22 19:16:55,2020-02-03 18:22:03,2019-12-26 14:16:11,3,15,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +17985,RATTC,7,2015-01-29 02:36:30,2015-03-02 09:42:31,2015-02-05 02:53:41,1,393,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +17986,SPLIR,4,2014-08-26 06:24:17,2014-09-14 11:15:36,2014-08-31 11:50:48,3,480.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +17987,FOLKO,7,2018-01-15 23:51:05,2018-01-26 08:29:41,2018-01-19 02:45:53,2,478.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +17988,ANTON,7,2012-09-29 20:55:08,2012-09-30 00:30:12,2012-10-03 22:30:27,2,557.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +17989,WANDK,3,2018-12-31 02:43:41,2019-01-07 20:25:39,2019-01-06 01:10:40,3,202.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +17990,SIMOB,4,2017-10-04 19:42:59,2017-10-28 20:58:10,2017-10-17 22:50:12,1,349.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17991,FRANS,2,2016-01-16 22:53:25,2016-01-22 01:56:19,2016-01-29 08:46:23,3,330.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +17992,TRAIH,7,2014-12-29 11:12:19,2015-01-25 01:02:38,2014-12-29 22:17:45,1,167,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +17993,MORGK,4,2013-02-08 00:16:23,2013-02-21 07:57:21,2013-02-10 23:53:58,1,89.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +17994,WANDK,1,2015-08-03 05:26:10,2015-09-05 10:46:55,2015-08-08 18:40:58,2,55.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +17995,VICTE,4,2022-05-15 06:52:38,2022-05-19 22:23:21,2022-05-22 01:38:00,1,284.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +17996,GOURL,3,2013-12-07 21:07:23,2013-12-10 22:06:53,2013-12-10 05:12:14,1,426.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17997,ERNSH,7,2014-10-15 10:19:42,2014-12-03 07:51:15,2014-10-23 04:27:43,1,429.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +17998,LILAS,8,2020-02-25 11:09:56,2020-03-13 05:01:21,2020-02-25 21:02:47,3,232.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +17999,WELLI,1,2017-07-24 13:24:33,2017-09-09 01:57:29,2017-07-29 03:24:58,3,332.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18000,OTTIK,9,2015-07-24 01:01:13,2015-09-01 00:22:29,2015-08-08 19:00:57,3,340,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18001,PRINI,2,2023-09-01 00:22:01,2023-09-07 13:46:12,2023-09-06 02:56:26,3,420,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18002,FOLIG,8,2022-07-02 05:58:02,2022-07-16 18:29:11,2022-07-02 09:33:46,3,300.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18003,LAMAI,7,2020-08-07 22:52:53,2020-09-08 01:59:16,2020-08-14 05:15:29,1,209,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18004,FOLKO,1,2023-08-14 00:30:47,2023-09-13 22:24:10,2023-08-14 04:46:06,2,383.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18005,QUEEN,4,2017-12-16 19:02:21,2018-01-16 05:30:51,2018-01-03 02:06:10,3,169.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18006,DRACD,1,2017-05-09 00:17:05,2017-05-24 09:51:17,2017-05-16 23:43:02,2,50,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18007,HUNGC,7,2019-03-08 11:16:17,2019-03-22 16:55:17,2019-03-10 11:56:42,3,143,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18008,QUEDE,2,2021-05-06 02:43:39,2021-05-20 08:55:48,2021-05-12 22:38:48,1,222,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +18009,LAUGB,7,2013-08-09 21:26:20,2013-09-18 06:28:31,2013-08-16 23:02:42,3,378.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18010,RICAR,2,2017-12-28 23:24:05,2018-01-19 07:51:06,2018-01-02 22:38:48,1,306,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18011,ALFKI,4,2016-01-07 10:50:28,2016-02-09 14:33:00,2016-01-08 09:40:14,2,102.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18012,LAZYK,5,2017-08-04 17:58:51,2017-09-16 18:08:43,2017-08-07 18:48:28,2,252.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18013,THECR,4,2013-06-25 05:11:45,2013-07-25 16:57:45,2013-07-03 17:46:06,3,415.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18014,LEHMS,1,2022-12-28 09:02:47,2023-01-07 05:12:47,2022-12-30 23:20:50,3,166.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18015,ROMEY,6,2022-06-09 21:44:15,2022-06-17 05:31:46,2022-06-21 08:34:32,1,368.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18016,ERNSH,5,2013-01-17 07:43:35,2013-01-22 08:30:49,2013-01-21 14:51:21,2,418.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18017,SIMOB,3,2012-08-30 10:05:20,2012-09-17 01:51:41,2012-09-04 01:05:24,1,368,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18018,RATTC,3,2016-09-10 15:53:09,2016-10-18 12:47:36,2016-09-17 10:53:44,3,511.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18019,COMMI,1,2012-09-26 18:14:38,2012-10-18 17:44:44,2012-09-29 05:08:23,1,202.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18020,ANTON,2,2014-06-05 20:59:51,2014-06-26 23:55:13,2014-06-06 23:37:07,1,505.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18021,QUICK,5,2022-10-16 09:32:34,2022-11-24 21:11:09,2022-10-24 16:10:34,1,144.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18022,BOTTM,9,2018-07-24 05:12:51,2018-08-05 11:37:18,2018-08-03 21:39:15,3,295.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18023,LONEP,5,2023-07-08 20:07:43,2023-07-24 18:37:10,2023-07-21 20:27:43,3,274,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18024,HUNGC,4,2018-06-14 21:44:38,2018-07-02 22:47:07,2018-06-25 06:54:26,2,357.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18025,FISSA,1,2022-12-11 21:41:32,2022-12-20 18:03:43,2022-12-25 00:31:32,1,405.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18026,FOLKO,2,2022-05-28 21:44:56,2022-06-23 19:10:13,2022-06-07 04:41:29,3,175.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18027,BLONP,1,2021-07-11 04:18:30,2021-07-11 15:42:11,2021-07-21 22:51:06,2,108,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18028,BOTTM,7,2013-05-02 03:45:09,2013-06-17 20:58:20,2013-05-08 18:10:30,3,489.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18029,HILAA,6,2015-12-21 02:46:54,2015-12-27 12:35:24,2015-12-21 09:19:11,1,287.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18030,TORTU,3,2018-08-12 01:29:40,2018-08-16 12:18:59,2018-08-30 07:32:53,1,348.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18031,COMMI,2,2015-11-19 05:39:57,2015-12-18 17:11:14,2015-11-22 18:58:46,3,47.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18032,WELLI,1,2021-08-11 05:49:22,2021-08-21 16:29:43,2021-08-15 23:56:09,2,112,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18033,RICSU,6,2021-03-21 09:49:38,2021-04-09 11:15:46,2021-03-23 13:19:06,2,91.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18034,SANTG,5,2019-04-01 17:00:22,2019-04-15 07:24:46,2019-04-17 14:57:38,3,141.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18035,ERNSH,9,2020-06-09 15:16:22,2020-06-30 07:14:58,2020-06-12 14:08:42,1,117.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +18036,VALON,3,2020-05-06 05:20:56,2020-06-26 21:32:34,2020-05-09 14:07:39,2,317,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18037,OCEAN,1,2020-01-18 11:04:51,2020-01-23 00:06:13,2020-01-26 15:33:53,3,109.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +18038,WELLI,9,2015-06-16 21:16:30,2015-07-01 17:45:41,2015-06-17 23:54:31,3,131,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18039,VINET,5,2016-01-19 15:46:19,2016-02-04 14:39:24,2016-01-22 11:06:28,3,113,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18040,FRANK,2,2021-03-20 07:46:23,2021-03-29 03:28:36,2021-03-26 04:20:46,3,327.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18041,VAFFE,3,2015-05-18 19:50:10,2015-05-29 06:00:03,2015-05-31 08:52:47,2,438.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18042,ERNSH,3,2020-03-24 22:43:25,2020-03-25 07:34:24,2020-04-03 19:52:22,2,376.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18043,RATTC,7,2012-10-28 23:03:33,2012-11-21 23:51:53,2012-11-14 07:01:01,3,370,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18044,LILAS,2,2023-10-10 07:04:33,2023-11-01 04:02:38,2023-10-11 04:30:53,2,207.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18045,FAMIA,1,2013-07-27 21:14:06,2013-09-06 23:02:05,2013-08-10 12:32:28,1,448,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18046,FISSA,4,2014-04-18 14:41:25,2014-05-09 14:58:28,2014-04-21 18:33:49,3,331.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18047,VAFFE,4,2021-08-26 07:37:00,2021-08-28 05:20:23,2021-08-30 11:06:03,3,151.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18048,HUNGO,8,2018-02-23 06:21:32,2018-03-27 08:42:56,2018-03-11 13:28:58,1,315.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18049,WHITC,5,2023-02-15 00:59:18,2023-02-25 13:49:35,2023-03-07 16:19:50,2,457.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18050,WARTH,9,2014-10-31 15:15:57,2014-12-18 06:46:49,2014-11-11 13:59:27,1,143.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18051,ERNSH,7,2016-09-21 06:35:51,2016-10-14 10:33:01,2016-09-23 00:28:25,2,462.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18052,MEREP,7,2013-05-07 15:05:33,2013-05-27 20:00:25,2013-05-29 21:58:43,3,322,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18053,GOURL,2,2014-09-15 02:54:45,2014-10-03 13:53:02,2014-09-17 17:11:40,3,394.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +18054,MAGAA,2,2021-11-19 02:02:25,2021-12-28 05:21:49,2021-11-20 23:14:42,2,257.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18055,FRANK,2,2020-09-16 17:21:35,2020-10-11 15:53:58,2020-09-17 10:04:59,2,324,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18056,DUMON,6,2019-11-14 13:59:36,2019-11-17 17:28:23,2019-11-28 08:27:48,1,491.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18057,LILAS,2,2017-02-09 23:32:38,2017-02-17 18:42:55,2017-02-10 01:16:48,2,469.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18058,THEBI,2,2013-12-29 04:42:25,2014-01-26 18:53:29,2014-01-05 23:49:58,3,515,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +18059,SIMOB,2,2018-02-01 18:42:25,2018-02-15 19:59:08,2018-02-05 02:18:56,2,72.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +18060,LAZYK,5,2013-06-09 09:09:11,2013-06-19 05:25:40,2013-06-14 15:09:34,3,60,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18061,OTTIK,1,2019-03-17 00:41:21,2019-03-30 11:31:59,2019-03-23 03:00:44,2,93.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18062,THECR,9,2022-01-23 01:04:43,2022-02-06 05:10:10,2022-02-10 00:18:17,1,398.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18063,LONEP,6,2021-07-21 22:25:57,2021-08-05 16:20:27,2021-07-24 12:52:27,1,382.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18064,FURIB,7,2013-11-24 11:55:39,2014-01-11 18:51:29,2013-12-06 16:38:11,3,362.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18065,CHOPS,9,2018-04-06 10:48:59,2018-04-20 07:07:49,2018-04-09 17:19:38,3,45.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18066,PICCO,3,2019-02-13 15:54:45,2019-02-25 16:09:58,2019-02-19 14:53:16,3,442,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18067,GROSR,1,2023-05-24 13:25:43,2023-06-06 06:03:04,2023-06-05 07:24:55,1,141,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18068,TRADH,7,2015-07-03 21:07:40,2015-07-05 02:22:37,2015-07-07 02:44:00,1,380,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18069,HANAR,2,2014-04-15 06:22:29,2014-04-21 11:56:52,2014-04-30 14:08:17,2,407.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18070,HILAA,4,2019-11-11 13:34:38,2019-11-20 09:36:06,2019-11-28 11:30:35,2,195.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18071,FRANS,7,2022-05-29 23:23:12,2022-06-03 21:03:06,2022-06-25 03:26:35,2,326,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18072,RICAR,7,2014-09-16 21:14:24,2014-10-07 05:00:33,2014-09-25 12:06:31,3,232.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18073,GOURL,5,2013-04-28 07:24:55,2013-05-21 08:06:22,2013-05-02 08:55:58,1,242.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18074,TORTU,3,2016-07-26 23:47:36,2016-08-16 05:54:53,2016-08-10 11:43:41,3,382.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18075,OLDWO,9,2018-09-01 16:48:18,2018-09-13 20:31:53,2018-09-21 15:40:31,1,200.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18076,LAZYK,3,2020-08-09 13:27:51,2020-08-13 12:45:24,2020-08-30 08:31:03,2,364,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18077,WILMK,7,2013-04-06 23:16:38,2013-05-05 11:21:21,2013-04-09 17:15:53,3,123.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18078,THECR,3,2020-03-29 21:58:21,2020-05-08 16:08:31,2020-04-08 01:21:00,3,124.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18079,EASTC,9,2022-06-30 13:35:01,2022-07-07 15:50:18,2022-07-05 18:50:01,1,401,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18080,BOTTM,5,2012-09-03 00:56:17,2012-09-08 11:47:38,2012-09-14 15:15:01,3,315.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18081,ANTON,9,2013-01-05 12:16:05,2013-01-09 04:51:50,2013-01-10 06:37:58,2,376.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18082,BLAUS,3,2018-06-16 14:47:27,2018-07-26 10:07:38,2018-06-19 08:34:06,2,177.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18083,FRANR,6,2017-06-16 18:50:09,2017-07-06 07:49:08,2017-06-25 11:23:03,2,440.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18084,GREAL,2,2021-05-29 11:58:25,2021-06-28 05:16:27,2021-05-30 12:27:27,3,270.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18085,SPECD,9,2020-04-14 10:18:19,2020-05-01 21:02:41,2020-04-26 21:37:17,1,427.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18086,LAUGB,6,2021-04-25 14:48:49,2021-06-01 08:53:15,2021-05-05 02:19:57,3,115.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18087,TOMSP,4,2016-01-22 18:32:27,2016-02-25 04:23:04,2016-02-06 10:23:55,2,451.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18088,RATTC,7,2014-01-16 10:10:51,2014-02-11 22:16:42,2014-01-21 08:59:13,3,279,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18089,OCEAN,5,2013-07-19 04:22:40,2013-08-03 11:26:40,2013-07-24 03:48:41,3,11.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18090,RICAR,7,2016-11-07 03:11:13,2016-11-09 22:58:57,2016-11-15 19:16:52,2,63.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18091,VAFFE,7,2016-04-02 19:29:22,2016-04-07 18:00:51,2016-04-05 01:10:25,1,271.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +18092,ANATR,3,2020-02-09 19:40:04,2020-03-08 19:34:33,2020-02-21 04:46:00,1,235.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18093,TORTU,8,2015-10-08 08:26:49,2015-10-21 14:38:27,2015-10-15 06:19:24,1,327,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18094,TOMSP,7,2015-05-04 13:24:36,2015-05-19 04:32:43,2015-05-17 23:46:11,2,39,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18095,ISLAT,5,2015-07-11 12:24:38,2015-08-25 12:39:53,2015-07-23 09:44:32,2,416.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18096,LACOR,3,2013-12-20 19:06:22,2014-01-13 16:53:08,2014-01-08 19:12:39,1,195.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18097,OTTIK,9,2015-07-27 09:46:47,2015-08-04 10:49:49,2015-07-27 10:57:36,2,342,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18098,HUNGO,6,2022-02-11 05:56:22,2022-02-28 19:14:58,2022-02-17 14:03:40,1,255.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18099,FOLIG,5,2017-12-25 05:03:27,2018-01-13 04:17:14,2017-12-29 17:36:31,3,292,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18100,ANTON,6,2022-04-07 01:51:43,2022-04-28 21:51:58,2022-04-13 02:31:01,2,111.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18101,FURIB,2,2020-09-16 04:23:14,2020-10-22 05:13:37,2020-10-03 06:30:21,1,412,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18102,SPECD,5,2014-03-28 11:34:52,2014-04-08 04:42:31,2014-04-02 03:31:49,1,217,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18103,ANATR,9,2015-08-19 11:27:02,2015-08-28 10:09:31,2015-09-15 07:56:43,2,419.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18104,TRAIH,4,2013-02-01 12:46:36,2013-02-09 03:40:20,2013-02-05 06:27:37,2,160.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18105,WELLI,5,2021-07-31 02:54:02,2021-09-08 12:57:02,2021-08-08 08:32:52,3,227.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18106,AROUT,9,2013-07-31 01:24:30,2013-08-13 05:59:33,2013-08-09 21:07:31,2,172.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18107,LAZYK,4,2019-05-27 00:55:37,2019-06-02 09:11:32,2019-05-28 12:48:02,1,274,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18108,LILAS,9,2021-10-07 08:10:00,2021-10-18 02:14:40,2021-10-21 18:56:48,2,462.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18109,OTTIK,3,2020-09-09 22:09:38,2020-10-19 02:46:24,2020-09-13 18:38:39,1,209.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18110,FRANR,9,2022-12-28 21:39:55,2023-02-21 22:45:09,2022-12-29 09:15:49,3,333.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18111,CONSH,5,2020-12-24 08:29:31,2021-01-27 09:08:52,2021-01-04 09:24:03,2,25.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18112,LINOD,9,2014-09-05 21:57:26,2014-09-07 00:28:01,2014-09-09 01:48:42,3,46,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18113,FOLIG,1,2018-09-25 21:58:21,2018-10-15 17:39:54,2018-10-01 06:08:40,3,248,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18114,LAZYK,8,2017-11-30 07:43:23,2017-12-17 23:37:50,2017-12-10 23:13:07,3,434.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18115,EASTC,4,2018-11-21 01:40:03,2018-12-30 03:04:16,2018-12-01 07:06:52,3,277,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18116,COMMI,1,2013-06-28 19:04:19,2013-07-05 16:09:28,2013-06-30 22:11:08,3,140,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18117,TRAIH,9,2021-04-29 05:45:01,2021-05-06 13:55:52,2021-05-02 01:59:01,1,47,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18118,BSBEV,5,2022-10-29 01:55:36,2022-11-09 14:37:53,2022-11-19 16:17:33,3,175.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18119,MORGK,6,2016-03-23 13:47:49,2016-05-02 01:06:38,2016-03-25 14:34:23,3,466.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18120,BSBEV,6,2019-02-16 12:42:00,2019-03-18 17:19:58,2019-03-06 07:01:35,1,387.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18121,VINET,8,2019-12-24 12:24:40,2019-12-25 10:15:59,2020-01-06 06:20:44,1,236.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18122,VICTE,5,2017-05-04 16:31:09,2017-05-06 02:27:08,2017-05-07 03:29:18,3,38.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18123,WOLZA,5,2012-10-10 15:30:42,2012-10-31 21:32:48,2012-10-12 14:29:03,2,100.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18124,HUNGO,8,2015-07-12 14:44:36,2015-07-23 20:07:34,2015-07-18 06:24:26,3,467,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18125,SPECD,7,2018-10-08 03:59:36,2018-10-15 16:43:48,2018-10-29 02:08:38,3,443,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18126,FOLIG,8,2018-09-13 10:27:38,2018-09-15 09:21:25,2018-10-01 09:06:10,2,211.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18127,HUNGO,5,2017-09-04 03:55:07,2017-09-05 15:35:16,2017-09-25 03:19:22,1,116.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18128,QUEDE,9,2016-04-07 01:57:37,2016-04-10 11:34:55,2016-04-07 01:58:16,3,169,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18129,QUEDE,6,2022-10-17 17:44:34,2022-11-01 05:35:44,2022-10-27 21:26:36,1,397,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18130,WANDK,7,2016-02-20 22:13:20,2016-03-11 13:41:03,2016-03-14 23:24:11,1,205,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18131,WOLZA,5,2021-07-17 20:02:20,2021-08-13 14:38:19,2021-07-22 21:02:12,2,232.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18132,LEHMS,4,2020-02-02 18:48:18,2020-02-26 06:06:44,2020-02-18 14:37:45,1,83.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18133,COMMI,2,2020-03-27 18:32:14,2020-03-29 21:45:24,2020-04-13 19:30:39,1,107.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18134,SUPRD,6,2023-08-07 05:13:32,2023-09-08 18:21:01,2023-08-28 10:14:42,1,187.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18135,OLDWO,8,2016-03-26 11:15:18,2016-04-26 00:42:06,2016-04-01 16:21:46,3,433.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18136,SIMOB,3,2021-05-02 08:32:04,2021-05-09 00:26:52,2021-05-08 01:10:43,3,418.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18137,OLDWO,7,2020-08-26 17:49:30,2020-09-18 09:37:34,2020-09-06 18:30:26,1,376,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18138,DUMON,3,2016-11-04 21:00:01,2016-11-09 10:33:12,2016-11-07 09:34:19,2,324.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18139,CENTC,1,2017-09-02 04:14:44,2017-09-25 20:44:15,2017-09-04 02:29:01,3,459.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18140,COMMI,9,2021-06-10 17:01:45,2021-06-23 15:34:00,2021-06-16 15:46:49,2,168.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18141,ALFKI,4,2014-05-04 08:09:46,2014-05-19 07:52:07,2014-05-26 14:14:05,2,391.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18142,PARIS,1,2023-07-26 13:58:20,2023-08-02 15:29:55,2023-07-27 08:03:03,1,435.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18143,BSBEV,2,2015-09-25 12:58:55,2015-09-27 15:02:54,2015-09-28 10:20:05,1,507.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18144,FURIB,2,2012-07-26 05:06:04,2012-08-15 14:49:05,2012-08-10 00:12:50,1,331,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18145,WILMK,8,2023-02-26 22:05:22,2023-03-09 17:38:49,2023-03-04 09:00:06,2,17.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18146,VAFFE,2,2020-08-09 07:03:28,2020-09-25 14:46:21,2020-08-12 09:51:50,3,232.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18147,PERIC,5,2017-01-20 06:00:39,2017-02-04 20:18:02,2017-01-29 03:34:48,3,358.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18148,AROUT,5,2015-01-11 22:36:53,2015-01-22 11:01:20,2015-01-20 22:59:01,3,205,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18149,TORTU,5,2019-02-16 05:11:54,2019-02-19 23:24:32,2019-02-28 16:59:00,1,260.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18150,PRINI,2,2013-01-18 14:02:55,2013-01-31 17:37:13,2013-01-22 23:09:37,2,217.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18151,SUPRD,3,2019-04-18 15:26:16,2019-06-05 04:28:43,2019-04-23 20:11:18,3,394,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18152,EASTC,8,2022-03-29 03:35:41,2022-05-05 06:38:03,2022-03-29 17:56:23,3,302.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18153,MEREP,9,2015-08-11 21:45:42,2015-08-24 03:28:48,2015-08-13 20:26:20,1,215.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18154,TOMSP,8,2022-08-06 17:22:50,2022-08-10 00:53:49,2022-08-19 21:15:27,2,472.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18155,SANTG,5,2023-08-03 08:12:41,2023-08-30 11:56:44,2023-08-03 12:36:38,1,459.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18156,KOENE,6,2018-10-19 00:40:31,2018-10-27 02:44:21,2018-11-05 04:18:09,1,387.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18157,FRANR,5,2017-10-16 12:49:26,2017-10-22 15:42:03,2017-10-17 04:20:35,1,166.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18158,WANDK,5,2019-04-19 05:40:06,2019-05-14 09:40:34,2019-04-20 23:54:43,3,414.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18159,FOLIG,9,2018-03-29 23:15:44,2018-04-19 05:41:33,2018-04-23 01:20:20,1,377,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18160,PICCO,7,2019-12-15 03:56:30,2019-12-21 11:07:02,2019-12-15 22:07:17,2,411.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18161,FAMIA,6,2020-07-21 04:33:25,2020-07-21 18:59:15,2020-07-26 03:20:36,1,326,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18162,LAMAI,1,2019-03-13 01:56:15,2019-03-24 09:10:58,2019-03-24 05:44:21,3,73,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18163,CHOPS,5,2020-12-12 15:07:35,2020-12-17 05:46:18,2020-12-24 17:22:17,1,334.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18164,BLONP,3,2022-01-19 08:52:19,2022-02-04 09:13:23,2022-01-21 03:22:30,1,408,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18165,BOLID,2,2016-10-19 17:23:44,2016-10-31 02:39:57,2016-10-21 17:31:10,3,281.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18166,ERNSH,4,2022-10-01 02:54:51,2022-10-06 18:47:33,2022-10-22 19:08:03,2,266,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18167,LETSS,3,2017-11-27 15:52:26,2018-01-06 09:34:57,2017-12-09 02:47:34,3,217.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18168,HUNGC,4,2019-06-20 00:43:32,2019-07-23 20:18:29,2019-06-27 03:36:04,1,81,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +18169,BLONP,8,2019-02-11 17:57:51,2019-02-28 15:11:57,2019-02-25 03:04:15,2,471.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +18170,RICSU,7,2015-02-19 11:45:57,2015-03-02 09:06:48,2015-02-20 00:30:14,3,247.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18171,VAFFE,4,2021-01-08 19:21:08,2021-02-11 05:46:52,2021-01-22 09:58:40,3,165.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18172,PRINI,9,2022-02-03 07:30:29,2022-02-08 07:57:38,2022-02-14 09:00:31,1,244,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18173,GOURL,8,2019-10-20 07:18:45,2019-10-31 21:34:08,2019-10-23 05:39:56,3,231.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18174,VICTE,3,2017-03-07 08:46:19,2017-04-03 08:23:41,2017-03-17 01:06:40,3,206.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18175,ALFKI,9,2016-09-09 16:04:39,2016-10-07 08:53:44,2016-09-17 01:48:05,1,301.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18176,ROMEY,7,2022-11-28 04:42:56,2022-12-04 10:01:38,2022-11-29 16:26:35,3,434.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18177,FAMIA,1,2021-10-24 22:23:20,2021-11-13 10:10:45,2021-10-29 01:29:11,1,237.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18178,NORTS,8,2021-10-11 22:03:17,2021-10-28 06:20:41,2021-11-02 05:01:15,1,55.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18179,NORTS,1,2013-02-01 02:40:01,2013-02-04 20:33:21,2013-02-10 09:33:08,3,137.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18180,NORTS,2,2019-01-25 23:05:10,2019-02-27 05:28:46,2019-01-26 12:58:40,3,205.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18181,EASTC,7,2012-07-18 20:10:37,2012-07-28 05:51:33,2012-08-09 12:32:42,3,159.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18182,LONEP,2,2023-01-06 15:52:22,2023-02-04 01:37:46,2023-01-17 04:06:21,3,58,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18183,BSBEV,1,2022-03-02 17:27:23,2022-03-25 23:44:32,2022-03-06 17:45:32,2,259.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18184,LETSS,1,2023-05-17 00:35:34,2023-06-02 11:40:45,2023-06-08 07:17:45,1,17.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18185,AROUT,8,2015-05-25 04:38:15,2015-07-16 15:21:07,2015-06-10 22:35:14,3,457.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18186,RICSU,8,2021-10-31 09:19:10,2021-11-04 21:33:12,2021-11-19 06:24:19,3,318.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18187,LINOD,6,2021-09-29 11:47:57,2021-11-04 21:00:39,2021-10-05 07:20:43,2,335.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18188,QUEDE,1,2019-01-20 02:59:57,2019-02-20 17:52:30,2019-02-07 20:09:56,3,241.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18189,AROUT,1,2018-08-08 08:50:43,2018-08-18 21:51:11,2018-08-30 08:52:26,1,340.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +18190,TRADH,6,2016-06-06 00:32:56,2016-07-28 14:46:20,2016-06-10 07:02:01,1,377.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18191,VICTE,9,2020-06-20 04:02:07,2020-06-25 01:56:33,2020-06-28 07:14:08,2,96.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18192,MORGK,8,2015-02-09 03:05:01,2015-03-04 23:26:44,2015-02-16 14:24:21,3,486,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18193,GALED,6,2014-09-09 20:33:55,2014-09-17 07:18:32,2014-09-17 21:58:44,2,357,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18194,SPECD,6,2022-09-21 14:29:31,2022-11-05 07:11:14,2022-10-06 03:34:44,1,169.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18195,QUICK,2,2023-04-16 12:34:56,2023-04-26 09:50:14,2023-04-16 17:36:25,2,479,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18196,FAMIA,6,2016-07-27 01:04:51,2016-08-13 20:19:09,2016-08-23 04:37:08,1,484.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18197,FOLKO,6,2017-08-23 15:37:00,2017-09-16 11:41:25,2017-09-02 11:38:29,2,329,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18198,BLONP,8,2022-01-16 19:45:11,2022-01-26 08:48:15,2022-01-31 18:20:04,2,483.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18199,CENTC,2,2021-08-13 13:35:22,2021-09-03 22:56:54,2021-08-18 17:51:55,3,402.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18200,CHOPS,1,2023-08-23 06:36:02,2023-10-12 02:14:54,2023-08-27 04:45:49,2,455.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18201,ANATR,7,2012-09-12 02:25:53,2012-09-15 12:31:15,2012-10-02 11:13:46,1,109,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18202,RANCH,7,2012-09-02 00:52:13,2012-09-22 07:23:20,2012-09-02 22:30:58,2,83.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18203,BONAP,4,2020-08-28 23:19:27,2020-09-24 18:53:47,2020-09-08 20:49:49,3,257.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18204,ERNSH,2,2013-06-02 11:09:48,2013-07-13 12:56:04,2013-06-13 07:51:59,2,142.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18205,TORTU,5,2013-07-07 04:37:51,2013-07-24 15:13:54,2013-07-16 04:36:56,1,439,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18206,HUNGC,9,2013-02-14 04:14:32,2013-02-20 00:37:55,2013-03-13 19:30:58,2,198.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18207,RANCH,6,2018-12-30 14:46:57,2019-01-06 18:04:23,2019-01-03 09:05:36,2,233.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18208,TRAIH,4,2018-02-13 07:20:21,2018-03-18 19:50:17,2018-02-14 20:31:08,2,243,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18209,RICAR,8,2015-04-14 18:05:11,2015-05-24 06:21:57,2015-04-28 05:56:38,2,31.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18210,GALED,6,2021-04-23 21:49:12,2021-04-26 23:30:54,2021-05-15 15:38:09,2,318.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18211,ANTON,8,2019-01-19 06:50:10,2019-02-17 09:43:56,2019-02-01 20:08:17,3,426.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18212,LAMAI,2,2018-06-02 01:09:41,2018-06-02 06:28:16,2018-06-04 01:25:55,1,458.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18213,OCEAN,3,2015-10-22 20:26:48,2015-12-09 13:19:38,2015-11-09 18:55:45,2,405.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18214,CENTC,9,2015-12-05 16:54:22,2015-12-07 17:57:47,2015-12-06 03:30:10,2,369.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18215,VALON,4,2017-03-18 15:32:52,2017-04-04 04:38:55,2017-03-30 06:02:07,3,214,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18216,TORTU,7,2021-03-12 05:55:54,2021-04-24 17:16:55,2021-03-20 12:55:58,3,485,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18217,WELLI,6,2019-11-09 03:15:01,2019-11-17 16:37:32,2019-11-20 22:22:01,3,201,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18218,LAUGB,9,2013-05-22 03:09:43,2013-06-08 12:57:17,2013-05-24 14:08:46,3,325.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18219,BSBEV,7,2023-03-02 16:17:06,2023-03-12 21:28:27,2023-03-07 07:30:01,3,156.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18220,RATTC,9,2018-02-06 01:58:10,2018-02-06 19:20:02,2018-02-11 05:29:54,3,369.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18221,ANTON,9,2019-11-14 04:02:06,2019-12-12 04:45:37,2019-11-15 13:01:30,1,240.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18222,GREAL,6,2022-01-24 18:38:13,2022-02-05 21:25:02,2022-02-12 15:56:26,1,229,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18223,FISSA,8,2021-10-10 07:26:41,2021-10-16 21:12:43,2021-10-21 18:45:57,1,411.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18224,FRANR,1,2013-04-01 00:11:45,2013-04-09 06:54:55,2013-04-03 06:27:12,1,82.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18225,MAISD,3,2013-05-25 03:44:26,2013-06-20 01:28:24,2013-06-05 05:59:49,1,91.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +18226,HANAR,5,2018-12-08 12:52:03,2018-12-14 01:46:02,2018-12-21 08:55:55,1,323.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18227,PICCO,3,2015-07-20 09:25:36,2015-08-24 08:26:39,2015-07-21 22:38:33,3,176.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18228,RANCH,4,2022-12-16 21:17:08,2022-12-22 13:18:58,2022-12-24 12:23:28,2,250.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18229,LINOD,2,2017-01-04 12:57:13,2017-01-20 11:10:25,2017-01-25 21:37:31,1,401.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18230,OLDWO,9,2016-03-20 03:33:32,2016-04-16 00:22:29,2016-03-30 11:11:25,1,96,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18231,CACTU,4,2022-10-17 07:25:26,2022-11-29 11:30:01,2022-11-14 00:53:13,3,248.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18232,MORGK,7,2014-11-30 06:03:32,2014-12-17 18:32:03,2014-12-04 14:20:33,3,292.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18233,PARIS,8,2014-04-22 12:58:14,2014-04-28 12:02:17,2014-04-30 03:48:34,1,58.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18234,HUNGO,1,2014-06-04 06:55:37,2014-06-05 14:22:50,2014-06-07 17:42:08,3,427.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18235,ALFKI,8,2019-11-11 06:13:23,2019-12-01 10:56:23,2019-12-03 13:46:06,1,298.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18236,CHOPS,2,2020-07-22 08:31:41,2020-08-13 01:39:32,2020-07-30 20:10:47,3,341.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18237,PICCO,5,2016-04-30 22:53:52,2016-05-24 08:03:13,2016-05-06 08:29:08,2,158.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18238,MORGK,8,2021-05-28 07:03:49,2021-07-05 10:11:23,2021-06-05 07:28:18,1,135,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18239,GODOS,8,2015-02-24 05:39:10,2015-03-17 19:00:42,2015-02-28 03:37:40,1,56,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18240,BSBEV,8,2017-08-02 10:50:32,2017-08-03 07:56:27,2017-08-02 14:16:40,1,483.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18241,GODOS,8,2012-08-15 08:24:51,2012-08-22 05:25:03,2012-08-19 22:04:48,3,153.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18242,REGGC,8,2015-06-06 22:58:13,2015-06-11 16:49:21,2015-06-07 22:39:33,3,148.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18243,MORGK,9,2022-01-09 15:59:35,2022-03-08 14:41:42,2022-01-11 18:39:58,2,394.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18244,VINET,4,2022-05-01 15:21:32,2022-05-28 06:55:41,2022-05-14 02:49:24,2,82.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18245,ANTON,9,2016-12-25 07:26:59,2017-01-31 14:58:49,2017-01-05 22:36:45,1,209.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18246,RICAR,9,2019-10-28 12:20:54,2019-11-05 11:31:08,2019-11-05 02:19:03,3,331,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18247,WOLZA,9,2018-11-23 04:29:17,2018-12-11 18:24:59,2018-11-25 09:32:05,3,475.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18248,FRANR,1,2021-06-19 04:04:04,2021-06-25 19:39:39,2021-06-20 21:15:44,1,181.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18249,BLONP,7,2021-03-19 23:51:56,2021-04-29 11:29:05,2021-03-20 22:05:44,3,438.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18250,GROSR,1,2019-11-01 21:11:20,2019-11-16 01:32:32,2019-11-03 14:13:46,3,515.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18251,PARIS,7,2015-12-27 07:31:52,2016-02-05 14:41:23,2016-01-02 23:42:58,1,62,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18252,BOTTM,9,2018-08-04 11:41:53,2018-08-13 10:40:35,2018-08-24 13:04:33,2,170,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18253,AROUT,2,2023-08-19 19:00:57,2023-09-03 14:47:20,2023-08-27 21:57:18,1,480,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18254,GREAL,6,2021-08-28 08:00:24,2021-08-29 14:58:36,2021-08-28 17:29:48,2,256,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18255,PICCO,7,2015-05-22 12:31:40,2015-06-01 01:39:25,2015-05-30 15:16:50,2,133.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18256,HANAR,7,2017-01-24 08:49:50,2017-02-12 03:50:53,2017-01-30 19:48:15,1,505.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18257,LONEP,4,2016-07-28 04:04:36,2016-08-12 18:55:02,2016-07-30 13:51:50,1,452.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18258,LAMAI,4,2019-06-08 18:05:36,2019-06-25 01:21:27,2019-06-13 07:01:15,3,488.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18259,Val2 ,8,2018-10-06 04:40:02,2018-10-17 18:21:58,2018-10-12 18:09:08,1,463.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18260,LAMAI,9,2023-02-14 04:53:44,2023-03-10 07:25:53,2023-02-15 11:07:25,1,313.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18261,SAVEA,1,2019-01-18 10:33:41,2019-02-13 18:30:38,2019-01-20 09:17:46,3,82.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18262,OLDWO,8,2018-01-16 11:02:37,2018-01-17 04:27:28,2018-01-18 22:59:22,2,255.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18263,EASTC,7,2022-01-06 20:12:14,2022-01-22 18:35:58,2022-01-11 13:57:35,1,203.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18264,BOLID,2,2022-12-13 10:39:35,2023-01-01 14:16:04,2023-01-03 05:52:16,3,87,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18265,WARTH,8,2021-09-12 05:14:16,2021-09-27 05:19:34,2021-09-27 23:51:04,1,203.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18266,BOTTM,4,2022-07-18 20:09:58,2022-08-05 19:14:23,2022-07-24 14:27:36,3,61.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18267,REGGC,4,2016-04-20 03:56:48,2016-05-21 09:14:09,2016-04-30 01:19:02,3,108.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18268,CACTU,1,2016-04-13 00:41:55,2016-04-14 21:42:26,2016-04-16 03:45:39,3,166.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18269,PRINI,2,2022-06-18 19:09:10,2022-07-24 16:16:43,2022-06-21 20:43:02,1,302.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18270,THEBI,4,2018-01-22 12:42:20,2018-01-22 13:39:02,2018-01-29 17:07:54,1,28.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18271,GODOS,5,2014-02-08 19:04:42,2014-03-06 17:19:25,2014-02-16 08:55:26,2,154.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18272,RICAR,3,2023-05-26 06:15:22,2023-06-19 17:56:48,2023-06-12 23:57:33,1,169.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18273,VAFFE,6,2022-07-27 16:05:46,2022-08-02 23:05:52,2022-08-08 10:34:42,1,390.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18274,FRANR,1,2017-01-04 22:57:34,2017-01-08 13:17:06,2017-01-20 14:38:03,2,317.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18275,VAFFE,1,2017-02-22 04:26:31,2017-04-04 17:16:29,2017-03-02 11:18:15,3,421,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18276,PERIC,5,2020-05-21 09:22:50,2020-06-18 16:57:41,2020-05-21 18:15:42,1,242.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18277,SPLIR,7,2017-04-05 16:49:54,2017-04-21 06:00:00,2017-04-26 16:23:12,3,191.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18278,CHOPS,4,2014-11-02 07:33:17,2014-11-25 02:02:47,2014-11-08 00:49:55,3,182,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18279,BOTTM,4,2013-03-08 21:07:52,2013-04-01 13:32:34,2013-03-14 20:04:09,1,514.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18280,LAUGB,4,2017-10-14 01:58:48,2017-11-04 23:30:22,2017-10-14 14:25:14,1,275.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18281,RATTC,8,2020-08-11 12:17:30,2020-09-27 21:34:26,2020-08-23 17:28:31,1,293,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18282,NORTS,7,2019-02-10 04:37:04,2019-02-15 23:49:45,2019-02-14 12:21:27,2,318.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18283,Val2 ,2,2017-11-01 20:02:09,2017-11-23 07:22:28,2017-11-04 06:32:01,2,448.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18284,PERIC,4,2015-08-18 13:43:11,2015-09-16 20:05:07,2015-08-23 12:18:36,1,421,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18285,RANCH,1,2022-12-04 11:29:06,2022-12-10 19:16:54,2022-12-06 22:21:08,2,83.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18286,BONAP,2,2014-03-31 09:01:26,2014-04-12 10:35:44,2014-04-04 20:33:03,1,513.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18287,KOENE,6,2020-12-23 17:29:28,2021-01-04 04:00:25,2021-01-02 04:36:03,3,359.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18288,WELLI,5,2019-06-15 20:14:17,2019-07-17 17:08:30,2019-07-08 19:17:01,1,392.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18289,SIMOB,7,2020-11-27 02:42:24,2020-12-15 09:35:58,2020-12-02 17:17:59,1,473.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18290,LAMAI,9,2015-08-06 10:03:26,2015-09-10 09:47:10,2015-08-18 02:25:33,3,443.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18291,HUNGC,4,2016-05-19 01:38:50,2016-06-27 12:59:37,2016-05-27 11:24:52,3,164,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18292,KOENE,2,2023-03-06 18:27:07,2023-04-03 14:24:11,2023-03-09 02:43:48,2,231.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18293,QUEDE,1,2018-09-15 08:24:36,2018-09-26 22:01:16,2018-09-15 12:09:33,3,115.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18294,FOLKO,3,2015-07-30 13:48:52,2015-08-08 02:58:42,2015-08-05 05:29:40,3,326.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18295,TOMSP,4,2013-01-06 10:45:14,2013-02-19 18:30:55,2013-01-08 23:19:33,3,197.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18296,CACTU,9,2016-06-18 06:54:28,2016-07-16 02:01:09,2016-07-16 10:20:22,1,320.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18297,BLAUS,1,2015-11-23 01:37:12,2015-12-01 09:37:08,2015-11-26 12:46:25,3,252.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18298,WHITC,2,2023-10-24 02:51:15,2023-10-28 08:36:36,2023-10-24 11:44:41,3,14.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18299,HUNGC,1,2017-05-21 06:02:43,2017-06-04 11:03:42,2017-05-24 01:18:33,3,397.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18300,BOTTM,6,2019-03-06 22:08:17,2019-03-10 18:48:07,2019-03-08 01:51:42,3,53.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18301,VICTE,9,2014-01-26 13:36:35,2014-02-18 08:24:23,2014-01-27 16:52:52,3,72,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18302,MORGK,3,2023-07-28 15:37:13,2023-08-16 13:14:04,2023-08-02 10:23:10,3,118.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18303,HANAR,1,2013-03-01 15:31:49,2013-03-19 00:48:07,2013-03-08 00:59:08,3,327.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18304,AROUT,7,2013-04-24 05:23:08,2013-04-27 16:41:16,2013-05-01 02:43:47,3,560.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18305,FRANS,8,2016-09-11 21:04:20,2016-10-15 19:57:53,2016-09-16 09:39:51,3,477.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18306,TORTU,8,2018-12-29 14:50:23,2019-01-24 17:37:43,2019-01-13 04:49:57,3,521,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18307,THECR,4,2018-04-11 17:08:13,2018-04-20 05:44:44,2018-04-22 20:26:28,3,456.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18308,WILMK,7,2017-11-20 12:43:25,2017-12-07 07:50:14,2017-11-23 19:05:33,2,414.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18309,FRANR,1,2019-04-14 11:19:23,2019-05-19 17:44:05,2019-04-30 03:08:56,3,447.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18310,AROUT,3,2014-10-04 01:07:32,2014-11-13 11:31:56,2014-10-23 03:53:41,3,199.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18311,TRADH,7,2020-10-23 12:32:39,2020-10-26 00:15:50,2020-10-28 18:08:26,2,76.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18312,VALON,1,2012-08-22 17:18:48,2012-09-07 00:16:49,2012-08-23 19:40:25,3,60.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18313,RATTC,7,2017-07-26 19:26:37,2017-08-03 04:59:17,2017-07-27 20:57:50,3,425.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18314,SAVEA,9,2017-10-17 18:54:00,2017-11-14 11:12:57,2017-10-28 02:30:37,3,119,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18315,MEREP,2,2016-12-19 17:27:30,2016-12-21 00:43:43,2016-12-26 09:31:36,2,171.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18316,PERIC,8,2022-04-07 13:50:41,2022-04-15 06:38:53,2022-04-08 10:34:57,3,221.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18317,OTTIK,1,2020-09-14 14:15:39,2020-10-17 16:11:07,2020-09-20 04:24:36,1,272,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18318,QUEEN,2,2017-08-22 03:08:32,2017-08-29 23:29:53,2017-08-24 12:28:59,2,135.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18319,LETSS,8,2023-02-04 06:58:15,2023-02-18 03:39:20,2023-02-05 17:58:27,1,390.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18320,TORTU,2,2023-08-26 10:18:13,2023-09-15 16:14:09,2023-08-29 18:32:39,1,239.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18321,DRACD,8,2015-05-04 23:49:23,2015-06-09 22:10:56,2015-05-05 13:53:29,1,179,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18322,AROUT,4,2021-05-23 13:53:24,2021-06-04 06:43:15,2021-05-27 21:56:37,1,216,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18323,WILMK,6,2022-07-21 22:36:45,2022-08-10 18:01:11,2022-07-27 20:57:03,2,35.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18324,WELLI,8,2017-06-14 06:07:57,2017-06-29 14:06:20,2017-06-19 13:02:12,2,506.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18325,SUPRD,8,2013-03-21 07:41:46,2013-03-27 23:05:08,2013-04-02 07:28:07,1,358.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18326,GROSR,6,2022-03-11 10:55:07,2022-04-13 21:10:32,2022-03-12 11:54:04,2,130.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18327,OTTIK,5,2014-10-06 17:07:05,2014-11-26 15:53:11,2014-10-16 11:59:00,1,182.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18328,PICCO,3,2021-06-07 09:09:35,2021-07-19 19:09:32,2021-07-04 02:57:15,1,150.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18329,GROSR,5,2013-03-19 02:11:41,2013-04-01 12:40:51,2013-04-10 00:47:03,1,415,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18330,KOENE,4,2023-09-12 01:09:21,2023-09-12 22:50:07,2023-09-17 05:14:29,1,379.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18331,QUEEN,1,2022-12-25 05:24:40,2023-01-10 15:07:51,2022-12-26 04:07:30,2,286,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18332,NORTS,7,2022-02-18 09:22:36,2022-02-20 19:02:56,2022-02-28 18:11:41,3,258,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18333,VICTE,2,2015-09-01 17:44:09,2015-09-20 14:03:48,2015-09-19 10:45:43,1,127,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18334,GODOS,7,2022-01-27 19:26:57,2022-02-18 21:35:07,2022-02-06 05:02:59,1,336.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18335,WANDK,6,2018-10-17 13:10:35,2018-10-29 13:57:47,2018-10-29 10:49:34,3,206,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18336,CONSH,3,2016-01-15 11:12:04,2016-02-13 00:41:13,2016-01-16 04:49:16,2,461.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18337,GALED,1,2016-10-27 20:58:01,2016-12-15 18:03:07,2016-11-05 02:37:44,1,385.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18338,VAFFE,5,2013-10-21 15:29:11,2013-10-23 15:32:08,2013-10-30 12:26:59,1,48.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18339,OTTIK,1,2019-04-20 14:53:26,2019-04-25 08:57:43,2019-04-21 12:26:11,3,249.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18340,PERIC,9,2020-12-08 17:53:47,2021-01-22 13:51:11,2020-12-14 06:38:50,1,217.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18341,FOLIG,6,2017-06-18 21:48:11,2017-07-10 11:31:40,2017-06-25 17:20:53,3,309.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18342,LACOR,5,2018-07-15 06:05:19,2018-07-17 09:06:57,2018-07-24 20:26:53,1,274.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18343,PRINI,2,2014-09-24 14:22:46,2014-10-07 19:07:11,2014-09-26 17:56:58,2,76.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18344,VAFFE,5,2019-06-23 08:09:12,2019-07-09 19:34:51,2019-06-25 01:54:22,2,32.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18345,MAISD,7,2019-11-02 16:46:56,2019-12-05 13:36:13,2019-11-23 18:28:40,1,11.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18346,DRACD,9,2023-06-18 19:32:43,2023-06-25 07:37:50,2023-06-23 14:12:20,3,402.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +18347,HUNGO,8,2022-08-18 11:25:08,2022-09-10 03:31:34,2022-08-21 01:28:38,2,18.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18348,ANTON,7,2021-07-19 00:29:42,2021-08-07 02:10:16,2021-07-19 12:44:50,3,367.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18349,FRANS,9,2014-03-20 16:06:09,2014-03-23 06:00:32,2014-03-24 13:46:04,3,74.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18350,VINET,8,2018-03-21 11:04:28,2018-03-27 12:40:34,2018-03-31 12:19:02,3,224.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18351,LILAS,5,2019-04-23 19:12:35,2019-05-31 15:35:46,2019-04-30 04:49:22,2,274.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18352,WARTH,2,2021-03-02 00:46:51,2021-03-12 00:47:27,2021-03-06 15:07:03,1,301.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18353,ROMEY,6,2017-12-05 12:23:31,2017-12-22 17:46:04,2017-12-08 16:34:11,1,329.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18354,WARTH,3,2017-11-10 03:55:28,2017-12-24 05:19:23,2017-11-13 00:09:39,2,283.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18355,FRANS,9,2016-01-16 20:28:53,2016-02-07 13:16:07,2016-01-17 15:46:00,3,32,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18356,REGGC,9,2019-10-15 15:42:35,2019-10-30 05:59:58,2019-10-19 03:50:40,2,253,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18357,LAZYK,2,2023-02-14 06:27:58,2023-02-22 04:05:07,2023-03-07 01:21:51,1,189.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18358,LEHMS,5,2013-09-17 13:56:23,2013-10-13 19:35:56,2013-09-18 01:17:04,1,483.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18359,BOTTM,6,2023-05-11 15:47:16,2023-05-12 16:41:40,2023-05-27 12:49:04,2,74.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18360,PRINI,2,2017-10-22 19:08:46,2017-11-08 06:58:22,2017-10-28 06:25:33,3,138,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18361,LAZYK,8,2021-02-28 12:39:14,2021-03-30 13:12:38,2021-03-11 23:05:56,1,82.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18362,PARIS,7,2020-09-27 21:47:15,2020-10-23 18:16:28,2020-10-02 22:25:05,3,479.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18363,BOTTM,2,2018-09-28 12:37:27,2018-11-05 07:34:09,2018-10-06 23:16:21,1,374.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18364,CENTC,8,2017-07-31 03:20:41,2017-08-11 17:27:57,2017-08-11 23:28:08,2,99,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18365,BOLID,6,2013-04-10 06:04:09,2013-04-17 03:58:16,2013-04-18 06:23:19,1,223,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18366,SAVEA,4,2015-03-05 18:05:48,2015-03-07 16:46:22,2015-03-31 01:04:31,2,405.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18367,SIMOB,8,2021-10-15 07:30:44,2021-10-27 16:26:21,2021-10-15 19:54:02,1,81,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18368,ISLAT,8,2016-03-05 14:09:35,2016-04-23 20:24:25,2016-03-12 09:26:53,2,506.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18369,WANDK,1,2018-06-07 21:14:22,2018-06-23 12:06:43,2018-06-09 03:14:19,1,318.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18370,GOURL,4,2014-12-23 23:53:25,2015-01-05 10:00:19,2015-01-09 01:00:41,1,398.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18371,WHITC,2,2019-05-26 16:43:57,2019-06-08 20:32:26,2019-06-01 06:30:54,1,28,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18372,BOTTM,1,2018-12-09 08:28:55,2018-12-10 04:28:38,2018-12-13 06:07:55,3,525.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18373,MEREP,5,2015-12-21 12:23:19,2016-02-05 20:03:05,2015-12-21 19:10:16,1,505.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18374,WANDK,2,2021-01-29 19:33:04,2021-02-28 17:03:14,2021-02-08 18:22:46,2,181.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18375,WANDK,6,2013-08-23 10:35:29,2013-10-19 03:34:20,2013-08-27 13:27:58,1,43.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18376,DRACD,8,2015-08-28 18:12:22,2015-09-03 00:44:05,2015-09-22 13:55:54,2,79.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +18377,SPECD,9,2022-09-07 21:29:30,2022-10-01 23:22:57,2022-09-09 13:50:53,3,54,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18378,NORTS,3,2023-08-25 23:28:34,2023-09-28 00:21:36,2023-08-27 23:12:00,2,438.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18379,PRINI,1,2021-09-11 06:17:38,2021-09-25 16:36:41,2021-09-28 21:39:49,3,23.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18380,AROUT,4,2019-05-12 13:39:42,2019-05-27 11:29:16,2019-06-02 09:15:12,3,263.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18381,CENTC,6,2022-09-10 18:01:29,2022-10-11 21:04:45,2022-09-19 19:43:40,1,191.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18382,WELLI,8,2013-05-25 05:25:32,2013-06-16 22:50:48,2013-06-05 23:17:50,3,399,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18383,HILAA,2,2015-11-10 03:23:56,2015-11-17 04:21:09,2015-11-10 14:42:34,1,255,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18384,HANAR,5,2022-01-01 10:10:01,2022-01-12 03:55:35,2022-01-14 03:04:56,1,90.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18385,FRANR,4,2021-04-16 15:53:41,2021-05-03 00:35:02,2021-04-20 19:32:32,2,459.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18386,LILAS,7,2018-10-18 16:17:41,2018-11-06 05:01:41,2018-10-19 06:55:05,3,108,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18387,THECR,9,2021-04-07 09:12:52,2021-05-09 13:40:02,2021-04-11 15:43:42,2,162.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18388,GREAL,8,2013-08-30 05:56:02,2013-09-24 05:11:52,2013-09-15 00:22:53,2,60.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18389,COMMI,6,2014-02-27 13:16:09,2014-02-28 08:47:39,2014-03-04 20:08:22,3,292.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18390,VAFFE,2,2017-05-21 21:01:14,2017-07-03 16:53:09,2017-05-28 14:11:54,2,449.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18391,TRADH,7,2018-02-16 00:22:22,2018-02-17 06:43:11,2018-03-07 10:15:57,3,193.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18392,SEVES,3,2013-05-22 15:41:52,2013-05-29 02:31:51,2013-06-12 01:32:27,1,29.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18393,WARTH,9,2013-07-30 14:11:49,2013-08-01 06:26:39,2013-08-06 23:08:54,3,459.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18394,GALED,4,2021-01-06 23:13:56,2021-01-11 21:16:37,2021-01-11 01:17:48,2,62.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18395,HANAR,4,2017-11-14 10:54:41,2017-12-14 20:23:58,2017-11-25 07:00:55,2,397.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18396,CENTC,6,2018-02-06 23:08:01,2018-02-18 11:07:48,2018-02-07 04:37:50,2,39.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18397,SPECD,6,2019-11-05 21:50:20,2019-12-28 17:40:47,2019-11-30 10:19:26,2,47.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18398,QUEEN,7,2014-04-28 16:56:02,2014-05-10 04:23:37,2014-05-20 15:55:22,2,447.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18399,PARIS,8,2019-04-21 03:40:10,2019-05-21 11:49:29,2019-04-30 16:07:44,1,374,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18400,SEVES,4,2017-07-24 14:24:14,2017-08-01 21:12:05,2017-07-29 08:42:04,2,413.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +18401,SUPRD,4,2019-01-01 05:21:47,2019-01-20 15:02:17,2019-01-08 14:51:32,3,468,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18402,FRANK,2,2018-11-05 23:33:22,2018-11-23 12:29:13,2018-11-09 19:38:04,2,303.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18403,GROSR,8,2012-08-11 07:53:21,2012-08-11 16:30:26,2012-08-12 12:09:25,3,15.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18404,FOLKO,1,2012-08-17 02:55:37,2012-09-26 04:22:31,2012-09-04 02:10:55,1,141,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18405,FAMIA,2,2013-01-04 04:06:53,2013-01-28 02:49:21,2013-01-08 11:21:10,2,48.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18406,NORTS,8,2018-05-06 08:56:18,2018-05-20 12:25:30,2018-05-14 14:20:31,1,143.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18407,MAISD,9,2014-10-27 20:44:31,2014-10-30 06:40:54,2014-11-05 02:20:45,3,472,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18408,CHOPS,9,2012-12-31 05:15:43,2013-01-15 11:52:53,2013-01-13 14:00:46,2,294.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18409,FRANR,7,2013-03-22 19:33:45,2013-04-12 06:23:26,2013-04-12 03:11:50,2,225.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18410,SPECD,6,2012-09-02 00:15:02,2012-09-16 18:38:08,2012-09-05 09:00:58,1,85,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18411,ANTON,1,2021-03-03 09:40:05,2021-03-10 12:35:41,2021-03-19 17:04:34,3,199.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18412,ISLAT,6,2022-11-12 07:55:25,2022-11-29 20:59:48,2022-11-15 05:26:53,3,182.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18413,ERNSH,1,2020-12-24 18:38:39,2021-01-01 09:24:02,2021-01-03 02:04:28,1,386.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18414,FAMIA,7,2023-05-22 11:13:31,2023-05-27 23:42:06,2023-05-29 10:49:43,3,147,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18415,HILAA,9,2019-12-08 17:54:45,2019-12-26 10:04:57,2019-12-08 22:25:46,1,49.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18416,GOURL,8,2012-09-11 00:14:33,2012-09-21 12:54:06,2012-09-21 02:41:32,3,66.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18417,LILAS,7,2022-02-17 17:36:06,2022-02-25 06:39:55,2022-03-02 21:58:17,1,16,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +18418,SUPRD,8,2016-12-02 00:29:59,2016-12-21 21:52:27,2016-12-08 08:07:11,1,265,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18419,BSBEV,4,2020-11-30 21:32:15,2021-01-03 18:20:41,2020-12-16 19:17:11,2,21.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18420,LAUGB,4,2014-11-28 04:35:54,2014-12-19 02:07:08,2014-11-30 14:35:52,1,177,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18421,ALFKI,2,2023-05-25 02:46:06,2023-06-15 11:28:39,2023-06-08 04:13:23,1,488.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18422,GROSR,2,2021-02-01 16:23:52,2021-03-12 16:07:51,2021-02-04 11:04:56,2,142.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18423,GALED,8,2013-04-23 03:05:43,2013-05-08 11:25:15,2013-04-29 22:33:20,1,234.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18424,SIMOB,1,2015-09-21 06:49:23,2015-09-30 21:04:51,2015-09-25 00:56:04,2,111.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18425,LINOD,4,2017-10-11 21:53:38,2017-11-14 18:50:29,2017-10-28 22:52:43,1,326.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18426,ALFKI,1,2020-10-08 16:11:03,2020-10-24 05:35:18,2020-10-11 23:11:53,3,278.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18427,BOTTM,6,2012-11-15 09:37:43,2012-11-20 13:19:08,2012-11-21 01:16:36,2,511.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18428,LEHMS,9,2015-07-03 00:10:56,2015-08-12 09:37:52,2015-07-16 14:02:14,3,94.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18429,GREAL,8,2012-07-10 15:40:46,2012-08-05 06:14:38,2012-07-23 02:57:19,1,271,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18430,LINOD,9,2017-05-10 17:05:03,2017-05-24 21:42:35,2017-05-28 07:20:44,2,255,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18431,LINOD,5,2021-05-20 00:50:32,2021-06-15 00:57:03,2021-05-30 04:14:55,2,317,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18432,ANATR,5,2014-09-09 06:48:05,2014-09-13 19:17:12,2014-09-10 05:19:40,1,287.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18433,MEREP,5,2016-08-27 23:43:51,2016-08-29 15:22:54,2016-09-09 03:25:01,1,226.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18434,FURIB,9,2013-09-11 18:03:48,2013-09-29 06:08:17,2013-09-13 10:01:14,2,438.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +18435,FRANK,8,2021-08-22 13:31:33,2021-08-24 03:02:30,2021-09-03 07:36:17,1,150,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18436,HUNGO,1,2021-05-05 19:02:51,2021-05-06 20:06:27,2021-05-11 13:14:17,1,272,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18437,EASTC,6,2014-03-20 05:35:47,2014-04-23 15:42:40,2014-03-24 21:10:19,3,261.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18438,LAUGB,7,2021-08-27 21:57:46,2021-09-22 23:08:49,2021-09-06 17:01:30,1,87.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18439,SUPRD,1,2015-01-31 08:02:13,2015-02-16 00:49:32,2015-02-14 19:59:29,1,399.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18440,TORTU,5,2021-05-29 21:27:38,2021-06-01 19:37:15,2021-06-05 02:33:41,3,415.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18441,VINET,5,2012-12-12 00:30:55,2013-01-10 02:18:45,2012-12-13 20:01:48,2,372.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18442,EASTC,1,2016-04-14 19:59:30,2016-05-08 17:50:02,2016-04-19 05:57:45,2,411.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18443,VAFFE,7,2012-07-23 17:22:23,2012-08-16 08:40:34,2012-07-24 00:37:13,2,75.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18444,COMMI,2,2016-10-29 03:15:31,2016-11-03 13:18:44,2016-11-12 13:52:46,2,168.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18445,SIMOB,7,2020-10-03 19:51:38,2020-11-10 15:00:17,2020-10-14 10:54:40,2,401.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18446,LINOD,8,2019-04-28 03:02:35,2019-05-25 14:27:23,2019-05-09 18:56:41,1,385,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18447,DRACD,4,2019-11-21 12:17:49,2019-12-16 06:46:26,2019-12-01 16:43:42,3,255.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18448,LONEP,6,2014-05-24 13:26:06,2014-06-19 11:38:03,2014-06-04 10:15:06,3,50.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18449,WANDK,6,2023-04-08 03:24:57,2023-05-14 10:38:35,2023-04-17 18:35:15,3,216.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18450,VAFFE,8,2019-07-16 11:20:20,2019-08-12 09:55:47,2019-08-01 07:08:55,3,321,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18451,BSBEV,9,2021-02-13 10:27:51,2021-03-01 03:27:03,2021-02-24 01:36:39,3,196.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18452,LONEP,4,2023-10-01 05:34:37,2023-10-23 13:56:07,2023-10-09 07:29:47,1,239,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18453,ERNSH,3,2015-10-28 05:10:24,2015-11-29 16:06:57,2015-11-11 13:16:03,2,472,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18454,MAGAA,8,2022-05-09 16:17:18,2022-05-25 01:47:35,2022-05-24 17:56:09,3,386.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18455,Val2 ,2,2019-04-13 08:31:18,2019-05-05 08:47:45,2019-04-16 17:54:18,1,238.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18456,BONAP,9,2012-09-03 15:04:27,2012-09-13 18:54:36,2012-09-17 17:12:14,2,275.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18457,ISLAT,7,2016-02-05 21:12:37,2016-02-05 22:41:18,2016-02-12 03:43:22,3,86.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18458,LACOR,4,2012-09-01 06:39:28,2012-09-19 05:10:06,2012-09-13 21:35:30,3,72.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18459,FOLIG,3,2019-04-06 03:12:13,2019-05-13 12:46:36,2019-04-16 16:48:00,3,257.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18460,RATTC,9,2021-07-10 00:51:17,2021-08-10 14:02:45,2021-07-14 22:48:09,3,415.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18461,RICSU,5,2019-03-12 20:38:48,2019-03-27 07:53:35,2019-03-18 03:21:56,1,170.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18462,GALED,4,2019-01-09 20:53:51,2019-01-25 19:22:07,2019-01-09 23:47:06,1,318.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18463,SEVES,5,2022-05-24 07:03:10,2022-06-04 23:36:42,2022-06-08 10:28:39,3,308.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18464,SPECD,3,2022-03-25 12:52:57,2022-03-26 04:25:09,2022-03-27 19:25:55,3,38.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18465,KOENE,1,2016-02-23 12:51:16,2016-03-19 13:17:30,2016-02-24 07:44:47,1,176,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18466,LAZYK,9,2020-11-01 18:48:59,2020-11-12 09:05:20,2020-11-19 15:54:39,3,262,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18467,SPECD,2,2020-12-31 10:53:31,2021-01-13 21:24:01,2021-01-08 12:18:17,2,188.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18468,MEREP,2,2019-01-17 23:07:46,2019-02-13 21:23:10,2019-01-20 17:04:26,3,81.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18469,HANAR,8,2020-07-19 22:09:23,2020-08-18 05:18:06,2020-07-22 20:00:07,1,308,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18470,CONSH,6,2022-12-20 03:44:21,2022-12-20 23:23:34,2023-01-13 11:43:47,2,406,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18471,HUNGC,8,2013-05-13 04:05:10,2013-05-29 19:55:07,2013-05-20 16:37:32,1,434.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18472,FAMIA,6,2021-09-24 23:01:32,2021-09-30 22:05:23,2021-09-25 15:08:51,2,323.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18473,FISSA,8,2017-05-27 21:23:22,2017-07-16 21:24:51,2017-06-02 13:19:39,3,454.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18474,FRANS,7,2014-10-05 07:39:27,2014-10-24 08:18:31,2014-10-09 21:23:58,1,102.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18475,CACTU,4,2014-10-20 12:19:12,2014-11-01 14:49:33,2014-10-31 05:16:45,3,409.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18476,VAFFE,9,2019-09-15 06:06:07,2019-09-26 08:11:24,2019-09-24 14:21:17,2,351,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18477,PARIS,5,2013-04-13 17:06:54,2013-04-23 22:57:05,2013-04-17 04:18:22,2,319.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18478,GODOS,5,2016-10-14 22:17:10,2016-11-06 09:03:03,2016-10-25 22:01:33,1,347,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18479,TORTU,1,2016-07-01 00:06:19,2016-07-25 04:24:35,2016-07-02 13:53:34,1,171.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18480,VAFFE,6,2022-09-16 04:28:48,2022-09-28 23:26:39,2022-09-17 03:34:05,1,110.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18481,BLONP,3,2018-06-19 13:46:49,2018-06-27 03:04:28,2018-06-19 15:20:46,2,277.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18482,LAMAI,4,2016-01-15 16:53:49,2016-01-22 22:58:16,2016-01-19 05:49:51,2,376.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18483,REGGC,4,2013-04-06 09:36:48,2013-04-25 22:45:50,2013-04-17 13:34:45,2,274.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18484,MAGAA,9,2020-12-06 18:21:55,2021-01-01 23:15:06,2020-12-18 03:41:39,3,321.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18485,HUNGC,5,2013-06-05 11:58:04,2013-07-03 18:11:19,2013-06-07 11:09:27,3,272,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18486,RANCH,4,2014-10-19 03:30:05,2014-10-19 22:38:22,2014-10-19 09:31:30,3,441,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18487,CACTU,4,2023-03-06 17:25:08,2023-03-16 16:38:37,2023-03-07 01:26:47,3,214.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +18488,FOLKO,1,2020-12-03 02:07:05,2020-12-25 22:15:07,2020-12-18 00:17:54,2,244,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18489,FISSA,2,2018-02-02 18:02:57,2018-02-25 21:18:31,2018-02-04 03:43:30,2,400,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +18490,QUICK,3,2019-07-20 22:24:39,2019-08-24 22:40:10,2019-08-06 04:14:49,2,268.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18491,GODOS,6,2017-02-27 22:45:11,2017-03-01 23:32:40,2017-03-04 12:20:15,2,365.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18492,CHOPS,1,2019-11-29 20:01:10,2019-12-26 05:05:21,2019-12-05 16:46:18,3,275.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18493,SPLIR,3,2015-09-02 03:26:21,2015-10-10 16:00:06,2015-09-15 01:27:49,1,232.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18494,FAMIA,2,2016-04-06 18:49:40,2016-04-17 20:58:50,2016-04-30 09:35:02,3,414.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18495,ANTON,9,2015-10-09 12:12:31,2015-10-15 14:51:43,2015-10-12 08:58:54,3,256.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18496,BOLID,4,2020-05-10 02:49:47,2020-05-26 13:39:02,2020-05-12 12:40:20,3,344.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18497,GREAL,5,2013-06-14 19:53:43,2013-07-25 14:02:41,2013-06-18 20:05:55,2,474,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18498,BSBEV,9,2013-04-18 23:01:46,2013-05-12 14:49:31,2013-04-22 07:53:26,1,285.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18499,RATTC,6,2022-10-14 05:02:32,2022-11-20 15:34:10,2022-10-22 13:53:19,2,208,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18500,HUNGC,6,2014-04-17 07:28:02,2014-04-25 03:18:52,2014-04-21 05:08:37,3,92,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18501,WANDK,1,2018-05-22 02:12:25,2018-06-09 00:38:54,2018-06-02 03:57:25,2,412.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18502,GALED,4,2020-12-10 02:38:49,2021-01-21 16:29:52,2020-12-17 03:57:39,2,278,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18503,TRADH,4,2022-03-28 12:21:10,2022-03-30 23:21:55,2022-04-20 08:19:57,2,194.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18504,GALED,7,2012-08-02 11:31:40,2012-08-28 05:29:30,2012-08-07 22:39:03,2,23,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18505,GROSR,7,2022-08-07 17:38:43,2022-08-31 09:46:45,2022-08-12 00:53:59,1,192.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18506,VINET,9,2014-05-11 10:43:54,2014-05-16 01:52:13,2014-05-21 15:01:58,2,188.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18507,TRADH,3,2015-11-13 04:07:24,2015-12-17 15:12:53,2015-11-27 15:28:42,1,122.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18508,QUEDE,4,2020-12-30 23:22:17,2021-01-23 07:58:47,2021-01-03 05:20:30,1,71.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18509,TOMSP,8,2018-08-10 22:43:40,2018-08-27 14:20:48,2018-08-11 22:46:54,1,109.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18510,GROSR,2,2014-08-19 05:16:26,2014-08-31 15:29:26,2014-08-20 13:31:02,2,477.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18511,SAVEA,8,2019-06-25 03:46:28,2019-07-07 18:41:01,2019-06-30 09:05:43,3,399.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18512,CONSH,6,2019-02-22 12:10:46,2019-03-05 01:34:52,2019-03-02 01:00:50,3,61,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18513,FRANR,7,2020-02-22 16:18:25,2020-03-04 12:16:07,2020-03-09 06:26:52,1,84.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18514,OLDWO,2,2019-03-08 19:26:10,2019-03-29 03:53:07,2019-03-18 12:13:04,2,338,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18515,AROUT,8,2014-03-10 00:39:09,2014-03-16 03:39:05,2014-03-27 07:48:14,1,128.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18516,DRACD,2,2021-08-08 14:15:41,2021-09-08 08:12:24,2021-08-21 17:08:20,2,176.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +18517,SAVEA,2,2023-01-12 14:30:26,2023-02-04 04:15:01,2023-01-13 04:06:23,3,318.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18518,WANDK,2,2014-06-28 07:46:34,2014-07-30 14:16:19,2014-06-28 20:02:24,3,204.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18519,WHITC,6,2018-08-21 16:53:03,2018-09-05 08:01:00,2018-08-26 14:29:09,3,349.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18520,TRAIH,5,2014-02-11 07:35:44,2014-02-19 23:00:24,2014-02-14 10:15:40,3,181.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18521,CACTU,8,2020-04-01 10:19:57,2020-04-24 03:54:00,2020-04-13 05:52:16,1,156.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18522,DRACD,3,2022-04-02 15:12:46,2022-04-04 06:43:44,2022-04-11 03:39:32,2,434.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18523,MORGK,8,2018-12-28 17:45:47,2019-01-08 21:49:11,2019-01-10 10:24:16,1,313.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18524,FISSA,5,2018-11-17 05:00:50,2018-11-18 02:55:18,2018-11-29 04:01:39,2,343.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18525,NORTS,1,2017-08-22 10:54:50,2017-09-11 17:31:06,2017-09-17 09:40:18,1,339.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18526,THECR,4,2015-05-09 16:10:20,2015-05-27 11:12:32,2015-05-27 01:42:26,2,543.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18527,VALON,1,2016-12-22 17:10:42,2017-01-12 10:17:48,2017-01-04 15:35:24,2,339.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18528,LETSS,5,2017-07-03 05:12:30,2017-07-12 16:59:37,2017-07-11 02:01:34,2,192.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18529,TRADH,2,2019-04-23 23:29:25,2019-06-04 12:21:22,2019-05-16 10:16:18,1,428.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18530,RICSU,1,2023-01-09 03:07:00,2023-01-18 17:10:55,2023-01-24 11:42:17,2,477,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18531,PICCO,9,2014-10-02 08:56:51,2014-11-03 00:34:21,2014-10-17 06:45:37,1,30.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18532,DUMON,7,2018-12-09 01:48:21,2018-12-10 14:53:19,2018-12-17 20:57:55,3,501.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18533,QUICK,8,2014-08-28 23:28:34,2014-09-10 17:17:04,2014-08-29 23:09:41,2,69.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18534,LAMAI,5,2023-06-26 19:51:14,2023-06-28 01:36:32,2023-07-03 20:11:00,1,100.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18535,SANTG,5,2019-07-18 22:26:06,2019-07-20 07:51:40,2019-07-19 11:34:19,3,102.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18536,LETSS,6,2013-05-25 21:36:50,2013-06-03 10:41:27,2013-06-05 19:19:53,2,247,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18537,ALFKI,6,2022-06-11 19:50:31,2022-06-26 04:46:25,2022-06-14 15:11:47,2,312.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18538,DUMON,7,2018-10-14 03:20:40,2018-10-21 07:19:49,2018-11-02 18:01:14,1,118.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18539,FRANR,3,2018-07-30 01:02:33,2018-08-12 12:39:02,2018-08-10 03:22:19,3,27.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18540,RATTC,3,2014-03-30 22:18:17,2014-04-30 23:52:31,2014-04-22 19:57:04,1,258.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18541,FAMIA,6,2015-01-08 11:53:14,2015-03-04 13:30:55,2015-01-26 10:54:34,1,324.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18542,LEHMS,6,2014-03-31 00:55:53,2014-04-06 06:24:12,2014-04-23 01:53:25,2,233.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18543,WARTH,7,2018-07-03 00:04:18,2018-07-18 19:55:39,2018-07-09 08:48:31,2,133.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18544,MAGAA,6,2014-07-15 00:06:50,2014-08-04 18:16:24,2014-08-03 23:02:07,3,456,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18545,PRINI,5,2022-09-09 07:13:56,2022-09-27 07:22:29,2022-09-22 05:42:33,2,210,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18546,BERGS,2,2012-09-28 11:47:11,2012-10-04 22:51:03,2012-10-17 06:25:10,1,353.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18547,WOLZA,8,2021-01-17 18:04:00,2021-02-03 03:14:54,2021-01-22 16:39:36,3,363.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18548,ANATR,6,2017-06-18 12:04:34,2017-06-27 05:34:47,2017-06-18 22:45:53,3,37,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18549,QUICK,5,2014-03-09 20:46:44,2014-03-12 07:48:00,2014-03-13 07:25:55,2,473.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18550,RICAR,9,2021-03-19 22:20:26,2021-04-17 21:26:52,2021-03-26 20:08:44,1,196,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18551,VICTE,8,2020-07-12 15:14:31,2020-07-17 13:09:37,2020-08-07 16:21:58,1,163.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +18552,QUICK,4,2015-11-25 02:28:52,2015-12-06 17:52:55,2015-12-10 09:43:52,3,367.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18553,OTTIK,9,2021-08-29 07:32:20,2021-10-15 19:28:18,2021-09-01 20:54:05,3,113.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18554,VALON,2,2015-03-13 13:36:44,2015-03-20 01:48:26,2015-03-20 19:20:10,2,286.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18555,DRACD,1,2018-11-26 06:25:16,2018-12-14 08:13:17,2018-11-29 01:01:00,3,267.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18556,HANAR,8,2016-12-12 04:50:02,2016-12-22 15:07:17,2017-01-01 21:49:01,1,443,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18557,WOLZA,4,2018-09-01 09:21:53,2018-09-02 00:28:32,2018-09-09 15:21:46,1,491.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18558,GREAL,4,2023-07-26 09:40:14,2023-08-04 11:05:37,2023-08-07 19:01:11,3,322.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18559,KOENE,2,2012-08-23 17:01:57,2012-09-17 03:55:26,2012-09-10 11:53:18,1,72.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18560,FOLKO,2,2014-04-04 06:42:52,2014-05-24 06:51:14,2014-04-14 03:12:59,1,212.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18561,ANTON,6,2023-02-01 23:56:05,2023-02-20 20:34:12,2023-03-03 13:37:45,1,136.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18562,HUNGC,6,2021-10-28 22:02:11,2021-11-13 08:44:25,2021-11-06 21:26:15,2,174.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18563,MORGK,2,2022-01-08 13:06:02,2022-01-13 10:15:19,2022-01-11 12:21:39,3,154,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18564,SPECD,7,2017-11-05 18:03:56,2017-12-07 11:11:45,2017-11-07 23:16:25,2,438.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18565,LONEP,6,2018-10-16 14:21:54,2018-10-29 19:04:49,2018-11-08 03:03:55,3,15.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18566,THECR,5,2017-05-09 08:44:40,2017-05-25 05:10:55,2017-05-10 23:15:46,2,363,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18567,LINOD,3,2018-01-17 18:49:30,2018-01-19 06:05:05,2018-01-17 21:19:16,1,38,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18568,FAMIA,2,2014-08-07 01:19:30,2014-08-11 09:13:41,2014-08-10 16:35:25,1,370,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18569,FOLIG,1,2014-03-09 05:52:04,2014-03-23 06:51:06,2014-03-12 14:52:22,3,36,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18570,VALON,8,2017-05-27 17:50:14,2017-06-23 14:03:19,2017-06-01 07:01:44,2,364.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18571,PICCO,4,2014-05-14 00:25:31,2014-07-09 09:59:18,2014-06-03 08:08:36,2,135,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18572,WILMK,1,2020-02-27 20:26:30,2020-04-01 00:17:33,2020-03-09 23:02:56,2,53.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18573,QUEEN,5,2016-10-23 11:45:17,2016-10-29 16:12:55,2016-10-26 07:46:10,3,348,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18574,BLAUS,2,2016-10-03 02:17:18,2016-10-10 23:43:39,2016-10-16 10:54:47,1,10.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18575,FURIB,7,2020-06-21 01:42:18,2020-07-05 10:46:51,2020-06-24 18:43:40,2,198.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18576,COMMI,3,2020-01-01 04:35:58,2020-01-10 12:17:48,2020-01-09 13:58:31,3,268.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18577,GALED,8,2020-07-22 19:40:04,2020-08-15 10:34:14,2020-07-23 18:16:41,3,461,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18578,QUICK,1,2013-03-04 20:35:40,2013-03-20 01:33:16,2013-03-06 15:34:08,1,99.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18579,PRINI,2,2014-03-10 15:11:57,2014-03-12 00:53:55,2014-04-05 12:34:53,2,229.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18580,OLDWO,9,2017-08-06 09:52:19,2017-08-06 18:19:52,2017-08-09 16:35:58,1,393,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18581,HUNGC,2,2019-05-21 04:27:23,2019-06-16 02:18:33,2019-05-27 19:31:05,1,158.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18582,WARTH,7,2020-09-09 04:13:33,2020-10-01 12:56:48,2020-09-13 02:17:27,3,339.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18583,HUNGO,9,2015-12-18 18:06:07,2015-12-20 19:31:10,2015-12-19 14:23:43,3,272.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18584,FRANR,6,2019-06-24 06:24:16,2019-07-01 08:33:16,2019-07-09 20:55:25,1,41,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18585,MEREP,8,2016-02-07 19:28:00,2016-03-27 15:17:39,2016-02-16 00:11:21,3,198,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18586,WANDK,5,2015-09-17 17:19:35,2015-09-19 00:24:37,2015-09-28 21:55:21,3,197.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18587,LAMAI,1,2016-01-04 04:01:17,2016-02-06 18:05:44,2016-01-04 10:14:03,1,287,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18588,TORTU,7,2018-03-02 07:14:05,2018-03-22 21:24:30,2018-03-15 14:30:01,1,280.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +18589,SAVEA,4,2020-01-06 23:22:04,2020-01-12 19:01:38,2020-01-09 00:27:50,1,318,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18590,RICAR,5,2016-03-02 01:49:24,2016-04-24 08:31:04,2016-03-05 19:42:24,3,193,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18591,SIMOB,1,2012-12-06 20:01:26,2013-01-06 05:44:21,2012-12-20 15:03:56,1,289.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +18592,REGGC,6,2022-12-02 18:43:45,2022-12-31 13:55:21,2022-12-30 00:44:38,2,139,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18593,VAFFE,5,2015-04-02 01:37:32,2015-04-02 13:10:03,2015-04-22 08:12:00,2,288.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18594,BERGS,7,2015-11-03 01:47:57,2015-11-16 06:09:04,2015-11-15 11:38:26,2,508.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18595,LEHMS,8,2020-12-22 19:48:58,2021-01-03 01:07:41,2020-12-31 05:30:09,3,24,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18596,LACOR,9,2016-11-01 01:07:55,2016-11-20 17:44:02,2016-11-14 03:38:26,2,54,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18597,VAFFE,7,2023-08-24 22:12:36,2023-09-12 02:30:58,2023-09-04 12:44:42,1,339,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18598,PRINI,2,2018-03-02 04:23:43,2018-03-07 16:21:20,2018-03-08 11:10:36,1,303.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18599,SANTG,8,2015-09-29 18:49:06,2015-10-27 02:54:34,2015-10-03 13:12:51,3,418.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18600,TRADH,3,2017-10-15 00:18:45,2017-11-01 19:03:42,2017-10-24 14:10:10,2,220,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18601,CONSH,2,2016-01-07 02:14:14,2016-01-23 03:52:34,2016-01-19 20:01:16,3,69.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18602,ANATR,8,2021-02-14 04:02:08,2021-02-20 12:54:28,2021-02-15 09:49:50,2,75.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18603,QUICK,3,2012-11-26 20:33:04,2012-12-04 18:09:35,2012-12-21 12:02:00,1,387.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18604,QUEEN,1,2016-05-19 10:14:28,2016-06-12 17:08:55,2016-05-26 20:32:15,1,363,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18605,FRANS,8,2023-01-05 06:28:07,2023-01-06 07:57:07,2023-01-27 10:34:11,3,259.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18606,OLDWO,1,2016-10-11 17:36:15,2016-10-27 11:06:38,2016-10-13 02:45:25,1,32.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +18607,PICCO,6,2018-12-31 09:57:06,2019-01-07 01:01:14,2019-01-03 22:08:15,2,357.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18608,FOLKO,2,2012-10-11 18:19:19,2012-11-29 01:14:46,2012-10-18 12:09:41,2,522.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18609,RANCH,1,2013-01-25 00:43:33,2013-02-15 18:30:44,2013-01-31 22:49:10,2,220.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18610,ANTON,7,2020-04-12 02:56:47,2020-04-29 17:51:11,2020-04-14 10:01:53,2,492.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18611,NORTS,2,2021-12-30 09:09:45,2022-02-08 20:44:48,2022-01-03 02:31:05,3,195,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18612,SIMOB,9,2019-10-01 05:00:31,2019-10-22 08:17:00,2019-10-08 10:40:51,1,416.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18613,ERNSH,6,2019-07-19 20:51:28,2019-07-20 04:08:38,2019-07-24 11:19:50,2,498.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18614,ALFKI,9,2020-09-07 11:37:25,2020-09-29 23:04:17,2020-09-15 11:04:00,2,231,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18615,TOMSP,3,2021-10-22 20:14:20,2021-11-08 08:39:57,2021-11-01 05:51:23,1,426,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18616,RICSU,4,2021-01-30 08:33:26,2021-02-12 19:23:02,2021-02-04 23:20:59,1,302.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18617,FRANR,1,2023-06-04 13:48:54,2023-06-28 15:33:02,2023-06-15 02:13:25,3,115.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18618,WELLI,7,2014-01-24 17:14:47,2014-02-07 19:52:21,2014-02-09 02:53:19,3,34.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18619,PRINI,3,2020-08-13 16:19:47,2020-08-28 20:49:36,2020-08-28 20:17:50,2,321.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18620,RANCH,6,2019-01-04 17:25:59,2019-02-14 06:21:21,2019-01-10 12:57:58,3,41,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18621,BSBEV,7,2023-05-10 11:45:46,2023-06-05 00:06:00,2023-05-10 20:37:19,1,164.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18622,FOLIG,1,2018-07-12 00:55:43,2018-08-02 04:43:45,2018-07-24 02:50:08,1,203.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18623,GROSR,2,2013-03-04 17:18:37,2013-03-16 01:29:16,2013-03-07 04:23:35,1,225,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18624,SUPRD,6,2016-11-13 15:38:03,2016-11-29 16:35:50,2016-11-18 20:16:38,2,381.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18625,TORTU,4,2016-07-19 01:41:17,2016-08-12 12:00:05,2016-07-31 00:21:41,3,102.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18626,WARTH,6,2012-12-15 01:59:26,2012-12-20 21:30:03,2012-12-19 10:58:53,1,96.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18627,RANCH,5,2012-11-13 05:49:58,2012-11-23 08:10:28,2012-11-16 04:57:05,1,252.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18628,CACTU,9,2020-09-15 19:39:11,2020-10-14 20:31:15,2020-09-16 06:30:05,2,239,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18629,BERGS,9,2019-02-17 00:05:15,2019-03-05 03:44:25,2019-02-21 18:14:21,3,285.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +18630,LETSS,8,2021-10-19 13:33:29,2021-11-08 15:46:20,2021-10-24 03:04:26,2,292,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18631,EASTC,4,2018-11-18 16:36:17,2018-11-24 08:18:09,2018-11-20 02:02:30,3,225,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18632,PICCO,4,2014-07-17 14:59:58,2014-07-23 12:43:37,2014-07-28 14:38:15,1,57,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18633,WANDK,3,2021-02-07 00:30:55,2021-02-12 20:08:11,2021-02-11 06:53:40,2,144.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18634,ANTON,3,2014-08-17 00:44:08,2014-08-21 07:09:46,2014-08-20 16:13:14,3,261.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18635,CACTU,8,2020-10-01 02:40:15,2020-10-20 05:46:51,2020-10-06 08:03:48,1,50.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18636,LAMAI,8,2016-06-11 12:52:32,2016-07-09 06:18:32,2016-06-23 00:10:20,3,204.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18637,THEBI,7,2020-01-20 23:28:47,2020-02-06 20:01:49,2020-01-24 00:16:11,3,16.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18638,GOURL,5,2018-06-12 15:00:11,2018-06-15 11:13:36,2018-06-25 10:24:59,2,495.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18639,WANDK,1,2020-02-06 14:08:11,2020-02-18 18:05:09,2020-02-07 02:46:25,3,464,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18640,ANATR,4,2022-11-15 20:48:09,2022-12-29 14:34:59,2022-12-02 02:49:41,3,373,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18641,LAUGB,7,2014-03-28 10:18:15,2014-04-16 12:05:45,2014-03-28 17:21:28,1,19.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18642,RICAR,6,2017-11-22 04:29:34,2017-11-25 01:20:05,2017-12-14 16:07:51,3,175.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18643,QUEDE,1,2015-04-14 17:13:31,2015-04-21 13:57:21,2015-04-18 07:03:16,2,295,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18644,LONEP,6,2014-04-28 10:51:28,2014-05-27 11:57:32,2014-05-06 19:32:07,3,22.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18645,RICSU,5,2016-03-02 11:26:21,2016-03-17 08:48:11,2016-03-06 03:48:35,3,182.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18646,FOLKO,3,2015-07-06 00:19:15,2015-07-13 03:43:10,2015-07-06 08:25:21,1,367,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18647,COMMI,4,2015-10-17 19:52:57,2015-11-22 14:13:44,2015-10-20 11:27:27,2,377.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18648,CONSH,2,2021-05-29 01:54:50,2021-06-26 10:25:17,2021-06-02 10:32:21,3,58.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18649,MAISD,9,2013-06-01 00:18:28,2013-06-07 07:23:28,2013-06-03 07:49:09,3,445,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18650,ANATR,2,2016-10-29 19:36:06,2016-10-30 23:20:29,2016-11-09 09:31:12,1,17,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18651,LAUGB,4,2020-03-15 15:05:48,2020-04-19 07:13:22,2020-03-29 15:49:52,2,259.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18652,PARIS,3,2022-03-11 06:10:21,2022-04-17 17:05:08,2022-03-11 10:25:03,3,324.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18653,FOLKO,5,2015-11-07 00:35:49,2015-11-24 06:34:32,2015-11-17 16:50:15,2,77.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18654,LAZYK,9,2014-05-11 05:35:11,2014-05-30 04:59:42,2014-05-27 10:09:39,1,216.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18655,HANAR,4,2023-04-07 18:50:45,2023-05-22 12:35:09,2023-04-15 16:37:49,2,257.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18656,WANDK,6,2013-05-12 00:52:22,2013-05-16 12:21:27,2013-05-24 14:19:20,2,141.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18657,SANTG,6,2023-09-02 05:34:56,2023-09-05 08:47:48,2023-09-08 14:01:49,3,331,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18658,HILAA,4,2015-12-30 00:20:11,2016-01-20 15:03:11,2016-01-21 16:25:47,1,110.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18659,VICTE,6,2015-02-12 05:53:21,2015-02-21 23:01:45,2015-03-08 14:52:55,3,139.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18660,FISSA,2,2021-01-20 07:15:25,2021-02-25 20:18:04,2021-01-28 10:15:11,3,322.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18661,HUNGC,2,2023-06-28 12:14:32,2023-07-01 18:14:12,2023-07-12 04:11:15,2,190,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18662,BSBEV,4,2015-08-15 19:35:16,2015-09-23 00:05:10,2015-08-26 06:31:39,1,89,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18663,LAMAI,3,2015-11-29 04:27:35,2015-12-21 02:23:51,2015-12-08 05:20:44,3,20.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18664,PARIS,3,2014-04-25 22:08:49,2014-04-27 11:43:34,2014-05-02 05:43:17,1,475,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18665,SUPRD,5,2016-07-10 23:43:11,2016-07-31 08:07:52,2016-07-19 15:16:04,2,82,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18666,FRANS,6,2013-05-14 23:17:41,2013-05-15 05:33:00,2013-05-17 00:50:30,1,502.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18667,OLDWO,9,2017-11-13 10:41:18,2017-11-22 17:22:00,2017-12-06 01:00:16,1,463,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +18668,SAVEA,4,2014-01-04 10:46:07,2014-01-23 06:32:04,2014-01-13 00:38:04,3,210.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18669,KOENE,5,2022-03-22 13:57:36,2022-04-06 23:51:12,2022-04-01 01:24:09,2,357.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18670,Val2 ,3,2023-07-07 05:28:43,2023-07-10 20:52:12,2023-07-27 17:07:19,3,349.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18671,RATTC,2,2023-08-25 08:23:43,2023-09-25 18:16:37,2023-08-31 06:11:59,1,105,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18672,BOLID,8,2016-12-12 19:30:33,2017-01-10 05:10:06,2016-12-14 23:30:56,2,176.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18673,SANTG,2,2014-01-08 05:34:28,2014-01-09 04:45:52,2014-01-10 09:25:04,3,55.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18674,BERGS,4,2014-12-07 08:00:33,2015-01-02 16:11:17,2014-12-16 16:29:29,1,248,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18675,TORTU,9,2016-11-25 00:41:42,2016-12-02 03:00:02,2016-12-05 09:07:37,2,450.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18676,NORTS,9,2013-04-17 11:14:36,2013-05-11 08:17:31,2013-05-04 13:14:00,3,410.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18677,BLONP,1,2013-05-23 04:36:06,2013-06-11 22:04:32,2013-05-26 21:15:34,2,447.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18678,NORTS,1,2014-05-17 06:38:59,2014-05-30 11:50:49,2014-05-22 04:01:57,1,345.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18679,GROSR,4,2014-03-28 00:21:25,2014-03-28 19:15:26,2014-04-03 01:59:15,2,525,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18680,CHOPS,1,2015-07-07 19:28:05,2015-07-28 02:17:25,2015-07-15 03:51:54,3,481,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18681,REGGC,4,2023-01-20 16:18:05,2023-01-29 08:49:25,2023-01-31 00:12:23,1,357.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18682,FRANR,5,2023-01-22 23:27:22,2023-02-03 14:02:13,2023-01-28 04:24:15,3,351.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18683,BSBEV,5,2019-04-20 17:06:03,2019-05-09 04:11:43,2019-04-20 19:33:26,2,112,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18684,FISSA,4,2020-10-15 08:11:41,2020-11-05 22:47:16,2020-10-17 13:02:24,3,395.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18685,QUEEN,4,2014-12-21 18:38:39,2015-01-05 05:25:39,2014-12-22 20:45:10,3,177,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18686,CENTC,5,2016-08-27 05:46:24,2016-08-28 09:06:19,2016-08-30 06:38:39,1,64.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18687,FOLIG,9,2022-10-18 20:09:28,2022-10-19 06:57:29,2022-10-22 11:56:37,1,494,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18688,CONSH,1,2022-08-01 13:19:11,2022-09-02 11:52:41,2022-08-07 19:52:21,1,523.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18689,BOLID,5,2018-01-04 22:09:48,2018-01-14 19:52:11,2018-01-09 08:58:12,1,254,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18690,MORGK,2,2019-06-03 13:37:49,2019-06-18 04:53:30,2019-06-11 00:13:11,2,269.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18691,LILAS,6,2022-02-15 04:26:21,2022-02-21 15:50:55,2022-02-17 04:11:00,1,222.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18692,PRINI,2,2015-03-29 10:14:11,2015-04-26 18:11:08,2015-04-03 11:09:09,2,104,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18693,FOLKO,7,2018-03-28 10:52:09,2018-04-13 01:00:13,2018-04-26 00:52:25,1,18.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18694,OCEAN,8,2017-04-22 06:38:02,2017-05-14 14:14:56,2017-05-01 22:25:08,3,327.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +18695,RICSU,3,2012-12-01 08:02:19,2012-12-19 14:00:54,2012-12-02 03:31:19,3,336.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18696,GROSR,5,2013-12-01 03:23:54,2013-12-25 01:28:58,2013-12-02 15:56:43,2,497.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18697,OLDWO,2,2013-01-29 03:39:28,2013-02-03 18:34:57,2013-01-31 08:40:26,1,371.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18698,WANDK,4,2015-05-10 08:29:07,2015-05-19 20:11:39,2015-05-16 03:13:22,3,295.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18699,THECR,5,2014-07-29 04:38:10,2014-08-03 19:43:45,2014-07-31 17:55:56,2,182.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18700,LILAS,7,2023-06-13 13:04:19,2023-06-27 13:30:24,2023-06-15 00:39:41,2,351.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18701,SUPRD,7,2022-09-09 02:08:09,2022-09-25 07:48:28,2022-09-17 17:50:05,3,231.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18702,GREAL,7,2020-02-11 09:24:34,2020-03-04 19:54:10,2020-02-11 10:18:55,2,429.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18703,QUEEN,7,2017-01-23 20:34:35,2017-02-14 11:29:58,2017-01-25 18:23:04,3,286.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18704,RICAR,4,2019-10-06 08:04:50,2019-11-29 21:57:48,2019-10-21 14:53:59,3,232,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18705,MAISD,8,2022-06-23 06:47:42,2022-07-04 10:52:29,2022-07-19 21:45:59,2,284.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18706,GALED,5,2017-12-23 17:51:17,2018-01-20 02:14:16,2017-12-27 18:03:41,1,376.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18707,TOMSP,1,2020-04-02 11:20:44,2020-04-19 08:16:29,2020-04-18 19:10:21,3,121.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18708,QUICK,5,2016-05-14 19:36:27,2016-07-08 00:14:44,2016-05-17 03:02:46,2,37.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18709,ANTON,6,2023-03-20 23:01:39,2023-04-09 09:08:21,2023-04-05 18:55:59,1,190.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18710,TORTU,3,2017-07-30 15:41:39,2017-08-10 17:21:56,2017-08-02 22:34:51,1,164,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18711,NORTS,1,2012-12-10 06:11:59,2013-01-14 11:15:54,2012-12-16 06:35:04,3,62,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18712,COMMI,9,2018-01-01 00:08:45,2018-02-07 17:19:53,2018-01-05 10:05:42,2,64.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18713,LONEP,4,2022-01-03 23:02:17,2022-01-11 07:43:39,2022-01-14 21:35:54,3,30.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18714,BOLID,9,2022-11-14 12:43:24,2022-11-26 16:52:29,2022-11-30 07:17:19,2,295,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18715,TRADH,9,2020-10-12 11:28:06,2020-10-16 10:47:35,2020-10-15 14:50:19,3,23.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18716,CHOPS,4,2020-07-29 23:29:05,2020-08-02 04:38:47,2020-08-02 19:41:43,2,425.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18717,WOLZA,1,2023-09-16 12:38:34,2023-10-16 03:11:29,2023-09-18 23:16:21,1,240,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18718,OLDWO,8,2018-06-13 01:55:20,2018-07-18 16:52:25,2018-07-10 19:20:04,3,138.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18719,FRANS,2,2022-04-14 16:06:34,2022-05-21 18:13:53,2022-04-14 21:51:25,1,214.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +18720,SEVES,8,2022-06-28 00:04:47,2022-07-14 12:09:01,2022-07-05 21:03:50,2,416,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18721,QUICK,2,2023-03-28 01:15:48,2023-04-09 12:45:57,2023-03-30 02:01:54,1,485.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18722,HILAA,4,2014-10-10 08:21:11,2014-10-22 10:51:38,2014-10-15 15:20:46,3,212.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18723,TORTU,2,2018-07-12 21:18:19,2018-07-21 23:25:59,2018-07-13 10:47:19,3,315.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18724,GROSR,8,2014-01-25 07:20:49,2014-01-25 21:52:20,2014-01-29 09:34:59,1,265.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18725,FOLIG,7,2021-11-02 17:50:32,2021-11-27 17:50:51,2021-11-04 14:01:30,2,152,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +18726,LAMAI,5,2022-05-22 18:56:47,2022-06-21 22:00:48,2022-05-25 20:35:31,1,307.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +18727,MAGAA,6,2013-12-19 05:21:07,2013-12-22 12:12:40,2013-12-20 10:18:30,3,281.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18728,OCEAN,4,2015-11-04 00:19:36,2015-11-09 08:05:17,2015-11-14 01:44:40,2,476,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18729,BOLID,9,2022-05-26 07:36:23,2022-06-10 12:14:39,2022-06-21 02:33:02,2,461.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18730,REGGC,3,2012-12-10 06:39:06,2013-01-14 09:36:58,2012-12-11 21:45:27,1,92.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18731,EASTC,1,2021-12-06 13:58:19,2021-12-07 22:04:21,2021-12-08 23:19:07,1,194.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18732,FRANK,2,2021-10-19 23:06:19,2021-11-13 13:20:35,2021-10-25 23:45:36,2,284.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18733,KOENE,5,2017-04-20 16:16:53,2017-05-05 18:43:31,2017-04-27 04:29:19,3,234,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18734,LEHMS,1,2020-04-11 11:59:17,2020-04-21 05:21:46,2020-04-20 02:29:46,2,239,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18735,BLAUS,3,2015-02-25 20:35:16,2015-03-07 19:39:35,2015-02-28 17:28:03,3,270,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18736,VINET,6,2018-10-28 09:58:11,2018-11-15 03:51:50,2018-11-21 19:54:36,2,371.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18737,BSBEV,5,2013-07-17 09:20:18,2013-07-21 00:27:10,2013-07-21 09:31:24,1,99.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18738,GROSR,2,2013-11-14 21:11:54,2013-12-03 23:25:10,2013-11-20 16:37:17,3,431.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18739,ANATR,1,2021-06-21 13:03:47,2021-08-10 19:18:15,2021-06-26 14:29:44,3,312.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18740,BSBEV,1,2015-05-18 05:43:03,2015-05-28 14:18:58,2015-05-19 10:27:35,3,519.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18741,BLONP,9,2016-02-29 17:19:58,2016-03-27 20:32:43,2016-03-02 08:45:04,2,205.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18742,PERIC,8,2016-06-12 20:16:30,2016-06-18 07:23:30,2016-06-14 05:30:39,2,290.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18743,LINOD,7,2021-06-13 09:16:56,2021-06-18 09:38:06,2021-06-26 20:42:41,1,474.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18744,ANATR,8,2015-06-14 20:48:38,2015-07-14 14:18:07,2015-07-10 18:18:34,3,216.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18745,DUMON,1,2016-08-26 10:05:14,2016-09-11 12:01:40,2016-09-05 05:15:21,3,181,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18746,LACOR,5,2021-01-14 06:23:48,2021-01-21 15:35:14,2021-01-29 07:43:16,1,364,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18747,PICCO,2,2020-10-22 15:47:28,2020-11-15 15:02:34,2020-10-28 00:05:19,1,527,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18748,EASTC,1,2023-07-14 15:14:34,2023-08-19 21:59:46,2023-07-17 15:34:52,2,109.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18749,HANAR,5,2012-08-26 01:14:45,2012-10-02 05:00:48,2012-08-26 20:08:19,1,167.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18750,KOENE,9,2023-04-21 11:46:48,2023-05-29 02:43:37,2023-04-29 12:03:15,3,199.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18751,SPLIR,3,2018-03-08 12:26:29,2018-03-12 19:19:40,2018-03-29 14:47:22,1,21,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18752,FAMIA,9,2013-07-30 19:05:55,2013-08-18 08:30:18,2013-08-02 15:41:19,2,296.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18753,RANCH,9,2019-01-16 18:52:56,2019-02-24 05:55:59,2019-01-23 14:55:12,2,327,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18754,WARTH,3,2018-10-18 20:13:56,2018-11-07 16:35:11,2018-10-22 05:22:28,1,378,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18755,DUMON,1,2022-12-25 08:27:49,2023-01-17 06:32:37,2022-12-30 00:24:11,3,312.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18756,MORGK,4,2022-03-27 22:40:48,2022-04-18 07:39:24,2022-03-28 12:03:34,2,166,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18757,SUPRD,1,2016-10-03 13:25:08,2016-10-20 23:58:59,2016-10-10 13:41:47,3,18.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18758,GALED,7,2019-06-13 11:05:00,2019-07-31 18:31:30,2019-07-01 11:51:55,1,54.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +18759,TRAIH,3,2018-06-27 20:14:12,2018-07-14 07:45:03,2018-07-06 09:08:00,1,458,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18760,OCEAN,1,2016-10-28 12:53:55,2016-11-20 23:27:43,2016-11-01 18:05:26,2,199.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18761,FISSA,6,2016-05-25 11:13:19,2016-06-15 11:45:10,2016-05-27 09:01:33,3,389.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18762,LONEP,5,2017-01-13 11:30:01,2017-01-20 08:08:34,2017-01-27 06:02:57,2,258.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18763,ANTON,8,2015-05-15 05:37:01,2015-06-04 21:49:24,2015-05-24 11:22:58,1,466.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18764,MAGAA,8,2017-08-29 06:43:44,2017-10-03 07:56:24,2017-09-03 01:41:25,3,155.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18765,FURIB,5,2020-12-12 15:15:17,2021-01-16 16:53:39,2020-12-29 06:38:39,3,281.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18766,LAUGB,1,2020-02-10 14:50:36,2020-02-27 22:28:33,2020-02-29 23:23:09,1,140.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18767,WILMK,4,2021-07-11 02:37:02,2021-07-16 05:43:06,2021-07-12 06:57:02,2,212,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18768,CENTC,1,2018-02-18 22:56:47,2018-02-24 12:05:38,2018-03-13 22:47:22,1,375,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18769,LILAS,9,2022-11-16 01:31:24,2022-12-21 01:23:23,2022-11-16 02:03:55,3,80.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18770,OCEAN,8,2017-08-28 19:39:35,2017-10-11 09:56:23,2017-08-29 19:38:54,2,143,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18771,VINET,9,2015-12-30 12:04:04,2015-12-30 18:11:14,2016-01-07 13:39:23,1,238.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18772,HUNGC,6,2022-11-12 12:28:31,2022-11-13 18:22:44,2022-11-12 20:32:57,2,186.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18773,VAFFE,8,2013-05-01 22:07:41,2013-05-30 10:15:47,2013-05-07 01:37:04,3,283.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18774,FRANS,3,2017-12-08 10:28:35,2017-12-23 12:58:28,2017-12-12 05:04:45,1,525.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +18775,LAUGB,2,2022-08-19 01:59:47,2022-09-01 12:09:26,2022-08-31 11:33:36,2,47.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18776,GOURL,7,2021-02-12 16:36:23,2021-03-21 21:26:26,2021-02-24 08:08:18,1,435.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18777,PERIC,6,2013-10-03 11:42:39,2013-11-09 03:05:46,2013-10-04 09:56:58,2,364,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18778,RICAR,8,2022-10-11 23:16:14,2022-10-30 16:17:04,2022-10-15 17:08:08,2,159.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18779,TRAIH,9,2021-05-24 09:48:38,2021-05-31 08:48:28,2021-05-28 21:40:27,2,160.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18780,THECR,6,2019-10-17 08:57:54,2019-11-03 16:59:29,2019-10-26 22:21:37,3,108.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18781,ERNSH,9,2015-08-16 03:44:10,2015-09-08 01:07:47,2015-08-20 09:00:23,3,427.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +18782,ANTON,7,2017-06-07 05:09:56,2017-06-16 00:37:36,2017-06-07 12:12:26,1,92.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18783,WELLI,5,2014-11-24 08:39:29,2014-12-15 17:04:12,2014-11-26 09:16:47,3,481.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18784,REGGC,2,2018-05-07 17:24:21,2018-05-16 07:27:55,2018-05-15 11:42:13,3,386.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18785,GROSR,2,2020-08-23 22:37:51,2020-09-09 06:54:56,2020-08-26 10:55:39,3,176,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18786,LILAS,9,2021-04-08 11:12:30,2021-04-09 11:19:08,2021-04-15 00:30:40,1,135,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18787,TRADH,4,2016-03-09 01:55:56,2016-03-31 16:29:05,2016-03-09 02:55:06,1,140.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +18788,NORTS,5,2018-03-30 04:35:11,2018-04-26 08:38:03,2018-04-16 01:09:26,1,15.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18789,FRANR,1,2022-11-18 12:55:40,2022-11-29 20:06:44,2022-11-23 17:15:11,2,70,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18790,NORTS,7,2012-12-15 10:52:04,2012-12-15 17:17:43,2013-01-09 11:29:01,3,244.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18791,SAVEA,5,2023-01-05 08:07:36,2023-02-04 12:57:40,2023-01-25 00:41:46,2,247.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18792,ANATR,3,2014-03-09 11:31:06,2014-03-29 05:03:09,2014-03-12 11:19:41,2,18.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18793,TORTU,7,2021-04-01 06:28:28,2021-04-05 01:41:07,2021-04-25 10:26:52,3,434.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18794,REGGC,8,2021-03-25 17:08:25,2021-03-27 03:38:43,2021-03-27 05:12:18,1,238.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18795,GOURL,5,2019-12-14 21:02:09,2020-01-02 03:21:09,2019-12-29 16:57:01,1,429.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18796,LONEP,9,2019-01-03 08:11:01,2019-01-28 08:10:00,2019-01-14 12:01:18,3,22,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +18797,CENTC,7,2018-11-28 05:46:20,2018-11-30 06:18:38,2018-11-29 15:18:52,2,372.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18798,ISLAT,3,2017-12-11 13:50:38,2017-12-12 19:50:08,2017-12-21 17:28:02,3,164.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18799,RANCH,7,2016-11-11 12:41:36,2016-11-22 17:00:24,2016-11-12 19:20:13,3,339.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18800,ERNSH,1,2021-06-08 10:47:31,2021-06-27 18:04:29,2021-06-16 19:34:18,3,51,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18801,FOLKO,7,2012-11-13 04:31:56,2012-12-12 14:45:20,2012-11-21 16:48:36,2,405.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18802,THECR,1,2018-02-16 09:24:35,2018-03-12 19:34:10,2018-02-20 05:13:14,2,80,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18803,MEREP,1,2016-02-24 07:45:02,2016-03-25 02:44:56,2016-02-25 09:35:24,3,400.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18804,MAISD,1,2017-05-19 23:43:43,2017-06-10 19:40:52,2017-05-31 05:35:52,1,221.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18805,CONSH,1,2021-12-17 02:47:09,2022-01-04 15:12:13,2021-12-18 15:58:54,2,83.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18806,FOLKO,5,2018-03-23 12:09:38,2018-04-14 07:04:16,2018-03-24 07:21:34,3,454.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18807,PICCO,7,2015-08-12 17:06:42,2015-08-21 10:22:12,2015-08-21 04:21:51,3,235,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +18808,OCEAN,1,2012-11-24 03:47:05,2012-12-08 11:59:17,2012-11-25 00:06:26,3,107.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18809,FRANK,5,2016-05-03 19:10:49,2016-06-02 20:19:28,2016-05-14 23:38:16,2,377.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18810,HANAR,7,2018-03-19 01:23:37,2018-03-21 09:36:03,2018-03-23 03:16:19,3,510.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18811,ANTON,8,2022-09-21 12:43:23,2022-09-29 18:22:34,2022-09-25 03:45:40,2,50.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18812,VAFFE,5,2012-11-21 05:20:09,2012-12-03 21:20:48,2012-11-29 16:33:05,1,29.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18813,ANTON,5,2021-09-04 20:00:32,2021-09-08 14:38:22,2021-09-24 17:18:13,2,241.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18814,DUMON,5,2016-03-13 10:23:31,2016-03-18 07:18:50,2016-03-16 11:24:54,3,354.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18815,BSBEV,1,2015-06-10 21:20:15,2015-07-25 03:32:09,2015-06-14 05:41:11,3,163.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18816,TORTU,5,2019-04-11 00:47:49,2019-04-11 01:37:21,2019-04-13 15:23:35,3,238.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18817,VICTE,6,2015-01-29 08:01:03,2015-01-30 00:28:25,2015-01-31 06:24:27,2,31.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18818,PERIC,2,2012-09-28 21:20:03,2012-10-27 09:07:01,2012-10-20 22:54:14,2,99.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18819,FRANK,9,2019-07-19 09:30:20,2019-08-02 10:20:03,2019-08-07 01:36:55,1,537.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18820,DRACD,6,2023-09-24 06:43:04,2023-10-08 00:58:00,2023-10-17 23:30:23,2,284.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18821,LAUGB,6,2020-10-31 12:17:45,2020-11-01 11:09:16,2020-11-01 06:26:34,3,356.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +18822,COMMI,8,2021-08-03 03:07:24,2021-08-22 08:52:53,2021-08-04 11:02:40,2,134.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18823,BSBEV,8,2019-06-05 23:13:29,2019-06-21 13:53:25,2019-06-06 02:58:59,2,385,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18824,PERIC,2,2019-07-29 17:56:37,2019-08-09 01:05:23,2019-07-31 02:56:12,1,537,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18825,MORGK,4,2012-10-18 08:56:26,2012-11-05 06:14:25,2012-10-19 04:45:10,3,278.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18826,TOMSP,2,2022-11-23 07:44:05,2022-11-24 04:38:52,2022-12-06 05:54:51,3,236.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18827,THECR,7,2013-04-10 08:39:16,2013-04-30 06:46:10,2013-04-19 12:28:08,1,185,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18828,GROSR,7,2018-09-15 08:36:49,2018-10-12 15:36:07,2018-09-16 06:53:54,3,342,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +18829,PICCO,3,2015-10-08 10:55:05,2015-10-24 18:35:18,2015-10-20 08:32:51,1,353.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18830,SPLIR,6,2013-01-11 16:11:30,2013-02-12 08:11:09,2013-01-13 17:29:44,2,56.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18831,SEVES,3,2019-11-16 05:47:51,2019-12-29 03:06:42,2019-12-02 18:50:01,2,269,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +18832,OLDWO,4,2016-03-06 19:26:07,2016-03-09 00:42:41,2016-03-17 14:52:59,3,261.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18833,FOLIG,8,2012-08-17 07:29:10,2012-09-01 13:27:43,2012-08-21 07:28:32,2,420,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18834,AROUT,6,2016-05-22 18:36:54,2016-06-27 20:48:44,2016-06-01 23:30:35,1,341.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18835,WOLZA,3,2014-09-11 07:26:30,2014-10-10 06:37:08,2014-09-22 16:31:42,3,249.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +18836,BOLID,9,2016-03-16 04:37:39,2016-04-21 04:56:08,2016-03-28 18:48:06,1,330.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +18837,OCEAN,9,2017-11-10 10:50:14,2017-12-21 14:46:00,2017-11-24 08:27:56,3,310.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18838,WILMK,3,2017-04-19 07:32:51,2017-05-08 10:25:32,2017-04-23 23:26:00,1,131.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18839,SPLIR,6,2019-09-06 13:06:28,2019-09-26 09:17:44,2019-09-06 15:05:18,2,419.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18840,MEREP,1,2014-02-07 04:00:09,2014-02-13 22:22:56,2014-02-07 11:34:09,2,134.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18841,OCEAN,5,2015-12-02 10:37:43,2015-12-10 04:21:59,2015-12-13 04:45:05,3,244,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18842,ANATR,9,2022-03-04 09:55:24,2022-03-18 22:01:42,2022-03-07 00:51:42,2,363,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18843,BSBEV,2,2022-02-07 03:48:17,2022-03-01 10:30:10,2022-02-10 12:16:44,1,395.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18844,MAISD,3,2013-10-27 22:13:17,2013-11-02 21:42:45,2013-10-28 23:48:24,2,421.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18845,VALON,2,2014-10-22 18:30:43,2014-11-03 14:49:49,2014-10-23 05:51:24,1,97.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +18846,LETSS,1,2019-10-22 11:08:26,2019-11-03 01:00:27,2019-11-03 02:04:07,1,114,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18847,VICTE,7,2021-11-04 16:16:29,2021-12-01 19:24:26,2021-11-07 19:48:01,2,26.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18848,FAMIA,1,2018-07-09 14:34:03,2018-08-23 19:38:43,2018-08-05 00:47:50,2,508.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18849,GREAL,4,2014-03-20 12:56:09,2014-04-07 00:29:42,2014-04-01 21:18:30,3,256.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18850,DRACD,4,2018-08-15 20:43:27,2018-08-25 19:53:45,2018-08-25 12:45:22,3,425.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18851,SPLIR,9,2021-06-10 23:07:55,2021-07-16 19:29:14,2021-06-23 19:43:27,1,87.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18852,OTTIK,5,2015-03-24 17:36:44,2015-04-09 14:27:15,2015-03-25 22:41:41,3,454.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18853,BOTTM,3,2022-07-30 03:04:10,2022-08-16 09:05:10,2022-08-05 20:01:58,2,245,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18854,PERIC,6,2012-10-06 14:54:40,2012-10-22 19:41:34,2012-11-01 05:14:10,3,339.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +18855,BONAP,1,2019-08-16 07:46:04,2019-09-05 23:29:27,2019-08-20 18:54:34,1,283.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18856,LETSS,3,2022-06-18 14:44:36,2022-06-22 04:18:12,2022-07-03 20:22:31,2,318.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18857,BOLID,8,2022-12-11 05:53:27,2023-01-25 01:45:32,2022-12-15 08:30:07,3,118.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18858,QUEEN,7,2014-01-16 12:40:10,2014-02-22 23:32:29,2014-01-19 20:11:42,2,193,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +18859,MAGAA,1,2017-04-30 22:36:08,2017-05-20 15:39:56,2017-05-06 13:07:03,3,132.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18860,REGGC,5,2017-09-02 14:56:39,2017-09-24 09:27:11,2017-09-10 05:21:53,1,73,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18861,ISLAT,1,2020-11-23 19:52:13,2020-12-08 10:57:36,2020-11-27 12:48:47,2,116,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18862,HUNGC,1,2015-08-28 08:09:48,2015-10-10 09:23:07,2015-08-29 06:36:15,1,401.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18863,FAMIA,3,2018-07-26 21:46:59,2018-08-01 22:15:08,2018-08-04 12:27:57,2,210,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +18864,VALON,6,2019-04-16 15:35:09,2019-05-24 17:28:36,2019-04-16 17:41:25,3,274,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18865,FRANK,5,2020-08-10 03:27:29,2020-08-20 17:02:46,2020-08-15 03:11:08,1,85.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18866,BOLID,2,2013-07-24 01:01:33,2013-08-10 05:30:16,2013-07-25 12:14:34,3,48.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18867,FRANK,1,2022-10-10 17:33:18,2022-10-18 22:47:15,2022-10-28 17:38:38,1,441,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18868,SIMOB,1,2023-02-20 13:38:44,2023-03-17 07:17:41,2023-02-26 23:06:25,2,173.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18869,TRAIH,1,2019-12-16 04:14:32,2020-01-03 09:07:15,2019-12-16 10:10:55,1,328.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18870,WELLI,1,2020-04-07 19:17:13,2020-04-18 20:22:08,2020-04-22 10:06:55,2,402.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18871,HUNGC,5,2020-10-08 23:14:50,2020-10-25 07:40:32,2020-10-18 14:09:27,2,205.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18872,THEBI,5,2019-01-01 22:16:59,2019-02-09 17:06:55,2019-01-18 12:36:07,1,140.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18873,HUNGC,9,2019-11-26 14:19:21,2019-12-21 16:15:32,2019-12-01 18:19:09,3,302.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +18874,FOLKO,7,2016-02-25 20:07:21,2016-03-04 13:51:59,2016-03-06 12:25:55,2,493,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18875,SUPRD,8,2015-01-12 21:39:12,2015-02-16 16:48:11,2015-01-13 21:20:14,2,231.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18876,DRACD,9,2016-05-30 19:08:53,2016-07-03 14:07:44,2016-06-10 17:06:57,3,62.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18877,WELLI,6,2018-01-10 11:10:15,2018-01-26 16:47:40,2018-01-21 12:15:49,1,300.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18878,WANDK,6,2022-08-31 15:19:05,2022-10-08 19:53:38,2022-09-02 14:40:48,2,198.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +18879,OCEAN,9,2015-01-25 03:59:40,2015-01-29 10:16:25,2015-01-27 20:35:47,2,80.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +18880,VAFFE,1,2014-03-12 21:19:57,2014-05-08 13:09:25,2014-03-17 22:00:08,1,445,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18881,LETSS,9,2020-04-28 03:45:11,2020-05-11 23:57:23,2020-05-09 09:24:18,2,47.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18882,FAMIA,7,2013-05-14 15:17:11,2013-07-11 03:39:25,2013-05-18 03:04:39,3,111.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18883,PICCO,8,2021-03-16 20:59:11,2021-03-30 04:00:21,2021-03-17 18:23:13,2,369.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18884,FOLKO,1,2022-10-26 14:20:25,2022-11-21 17:32:29,2022-10-29 01:46:20,3,283,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18885,SAVEA,1,2019-02-14 05:44:36,2019-03-04 17:44:51,2019-02-14 14:57:37,2,297.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18886,LEHMS,2,2012-10-31 02:41:18,2012-11-15 01:14:14,2012-11-12 01:58:15,1,450.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18887,QUICK,3,2015-10-26 22:14:39,2015-11-16 01:49:09,2015-10-30 01:49:08,2,182.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18888,AROUT,9,2021-08-10 11:15:10,2021-09-15 14:42:14,2021-08-11 23:13:30,2,58,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +18889,SIMOB,5,2022-03-29 18:38:17,2022-04-07 23:54:18,2022-03-30 04:08:43,3,346,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18890,MAISD,2,2017-01-13 05:45:38,2017-01-27 03:31:22,2017-01-23 19:24:29,2,495.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +18891,FISSA,6,2019-03-01 10:34:26,2019-03-15 21:41:40,2019-03-01 12:31:02,3,167.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18892,RICSU,2,2022-03-08 18:29:43,2022-03-09 08:26:21,2022-03-10 02:42:34,1,269.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18893,MAGAA,2,2015-01-25 12:31:38,2015-02-13 22:33:25,2015-02-07 04:49:39,2,350.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18894,AROUT,7,2022-07-02 09:51:14,2022-08-07 23:56:12,2022-07-18 19:55:50,1,116.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +18895,CHOPS,8,2017-03-07 13:57:38,2017-03-09 18:28:46,2017-03-07 23:03:53,1,378,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18896,ALFKI,9,2020-01-08 19:28:51,2020-01-27 19:18:49,2020-01-15 05:08:06,3,443,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +18897,HANAR,9,2020-07-02 20:08:11,2020-07-18 15:40:52,2020-07-26 01:40:44,2,20.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +18898,THECR,8,2018-02-01 00:01:58,2018-02-12 02:53:40,2018-02-01 23:05:27,3,289.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18899,FOLKO,5,2013-08-03 06:28:19,2013-08-15 08:10:35,2013-08-18 21:03:28,3,427.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18900,SPLIR,7,2018-01-29 13:19:52,2018-03-17 03:53:28,2018-02-26 05:02:04,1,350.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18901,OTTIK,1,2022-09-13 22:56:22,2022-09-21 22:08:30,2022-09-16 06:28:31,2,284.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +18902,FRANR,6,2013-07-17 15:18:19,2013-08-15 12:31:13,2013-07-21 16:29:47,2,340.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +18903,WHITC,3,2015-05-01 05:59:04,2015-05-25 07:31:56,2015-05-14 23:26:37,3,102.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18904,OCEAN,4,2017-12-08 00:16:14,2017-12-29 02:03:25,2017-12-18 09:15:53,3,503.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18905,WANDK,6,2012-11-25 04:23:25,2012-12-29 16:02:53,2012-12-02 08:28:51,1,479.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18906,LAMAI,5,2020-10-31 02:57:11,2020-11-09 16:04:25,2020-11-02 00:44:07,2,22,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18907,QUEEN,5,2020-01-18 03:45:36,2020-03-01 17:57:31,2020-01-23 22:09:09,1,397,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +18908,HUNGC,2,2018-07-05 22:12:41,2018-07-17 05:50:37,2018-07-09 23:22:22,3,18.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +18909,RATTC,4,2013-10-20 03:41:31,2013-11-14 15:10:44,2013-10-20 06:06:26,3,184.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18910,SPLIR,5,2013-02-22 12:36:04,2013-03-01 19:02:46,2013-03-03 04:26:28,1,342,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18911,PERIC,4,2016-06-15 06:44:46,2016-07-06 19:49:04,2016-06-19 03:21:20,3,301.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18912,FRANK,3,2016-11-04 03:14:56,2016-11-04 07:58:40,2016-11-27 12:51:25,2,410,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18913,TRADH,3,2020-09-23 02:51:54,2020-10-13 14:18:11,2020-10-03 22:01:03,3,425,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18914,PARIS,3,2014-08-22 15:21:35,2014-09-27 22:05:37,2014-09-06 22:51:09,3,161.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18915,LETSS,9,2019-08-05 01:36:21,2019-08-16 03:23:26,2019-08-07 21:41:31,1,402.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18916,PRINI,4,2021-06-20 16:04:45,2021-06-26 23:58:58,2021-06-21 21:44:14,3,375,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +18917,THEBI,3,2017-05-26 16:09:49,2017-06-26 16:27:18,2017-06-03 22:58:24,3,33.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +18918,WELLI,2,2013-03-31 16:02:53,2013-04-03 23:31:11,2013-04-04 05:58:22,1,71.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +18919,MAGAA,2,2013-02-22 00:46:56,2013-02-27 15:16:57,2013-02-22 01:15:47,1,83.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18920,RICSU,3,2022-05-20 17:58:01,2022-05-28 14:50:13,2022-05-24 19:32:00,1,254,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +18921,GODOS,8,2019-11-09 02:40:14,2019-11-18 20:59:04,2019-11-17 21:33:48,1,55.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18922,CONSH,9,2016-05-17 10:43:02,2016-06-08 11:24:35,2016-06-01 09:01:20,2,485.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +18923,GALED,9,2021-09-21 12:46:00,2021-11-09 18:39:31,2021-10-09 11:48:06,2,374,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18924,LACOR,8,2012-12-13 20:33:01,2012-12-23 15:02:18,2012-12-19 05:53:48,3,454,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18925,VALON,9,2017-11-25 02:01:07,2017-12-03 04:48:48,2017-11-27 03:22:02,3,188.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18926,Val2 ,2,2016-06-29 18:07:31,2016-07-26 17:05:15,2016-07-02 15:26:07,2,175.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18927,WHITC,2,2021-11-08 05:07:09,2021-12-26 07:45:31,2021-12-03 14:22:11,1,393.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +18928,FRANK,6,2012-10-23 02:49:16,2012-11-01 14:47:01,2012-10-23 22:06:16,1,522,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +18929,MEREP,8,2014-07-20 02:40:39,2014-08-19 19:15:34,2014-07-20 09:24:38,2,326.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18930,KOENE,2,2016-11-26 11:06:37,2016-11-29 10:15:51,2016-12-13 16:54:21,2,77.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +18931,EASTC,8,2020-05-21 10:43:45,2020-06-05 07:50:49,2020-05-23 10:54:42,1,232,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18932,SIMOB,6,2020-04-27 22:49:07,2020-05-06 02:46:45,2020-04-29 06:30:46,1,55.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18933,THECR,1,2019-07-15 08:40:47,2019-09-02 05:10:37,2019-07-16 04:18:00,2,269,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +18934,RICAR,6,2015-05-25 04:04:25,2015-06-10 22:50:27,2015-06-02 14:35:57,2,219.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18935,MAISD,6,2018-11-18 04:11:04,2019-01-08 14:52:41,2018-11-22 01:40:04,1,375.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +18936,BERGS,9,2012-08-16 20:38:32,2012-09-23 12:30:56,2012-08-21 11:08:16,1,24.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +18937,HILAA,9,2020-09-20 19:35:39,2020-10-16 14:28:35,2020-09-20 21:30:27,3,51.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +18938,GOURL,3,2016-07-24 14:16:57,2016-07-25 06:22:54,2016-07-27 06:10:19,2,274.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18939,OCEAN,1,2013-02-12 06:12:18,2013-02-20 16:01:51,2013-02-14 23:20:12,1,369.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18940,NORTS,3,2023-09-08 19:20:45,2023-09-27 19:30:35,2023-09-25 14:31:26,2,386,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18941,WOLZA,1,2020-06-19 14:38:36,2020-07-06 21:47:45,2020-07-08 10:24:24,3,235.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18942,LETSS,9,2017-10-05 16:01:11,2017-10-10 11:41:55,2017-10-18 06:51:26,3,504.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +18943,ROMEY,7,2018-12-11 04:53:15,2019-01-24 11:43:22,2018-12-11 18:38:09,1,256.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +18944,LAZYK,7,2019-01-10 00:10:48,2019-02-17 13:32:01,2019-01-13 23:32:25,1,195.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18945,BSBEV,3,2017-12-02 02:07:51,2018-01-02 09:10:23,2017-12-09 15:02:44,3,20.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +18946,GODOS,4,2013-07-24 13:04:48,2013-08-23 01:55:30,2013-07-27 18:07:23,3,298.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +18947,PERIC,9,2019-03-06 00:12:34,2019-03-19 10:48:43,2019-03-14 15:48:14,2,359.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +18948,SPECD,5,2012-11-16 12:28:35,2013-01-06 08:33:14,2012-11-16 22:40:01,1,363.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18949,VICTE,9,2020-01-04 20:55:55,2020-01-23 10:14:58,2020-01-06 11:25:52,3,38.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18950,TOMSP,3,2019-12-14 05:23:50,2020-01-29 10:24:56,2019-12-30 04:20:07,1,69.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +18951,SUPRD,4,2014-12-18 16:47:43,2014-12-23 15:04:19,2015-01-04 20:33:34,2,314.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +18952,WARTH,4,2018-12-14 03:03:24,2019-01-19 08:47:04,2018-12-14 09:21:24,2,504.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +18953,VINET,3,2017-11-27 09:36:30,2017-12-12 06:36:10,2017-12-10 02:14:12,3,141.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +18954,HUNGC,9,2020-09-12 17:51:55,2020-10-14 03:42:00,2020-09-16 12:06:20,3,430,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18955,OTTIK,8,2023-04-14 10:13:04,2023-04-25 04:51:15,2023-04-24 07:47:24,1,265,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18956,LONEP,1,2019-10-22 20:46:45,2019-10-28 10:49:27,2019-10-26 02:57:40,1,139.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +18957,ALFKI,1,2015-08-06 11:23:12,2015-08-22 10:43:48,2015-08-16 18:08:37,1,108.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +18958,GROSR,3,2022-05-31 17:34:01,2022-07-15 19:47:08,2022-06-10 11:43:54,2,351.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +18959,SANTG,1,2015-08-12 01:08:13,2015-08-16 10:47:31,2015-08-24 07:53:46,2,356,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18960,WELLI,3,2015-11-10 12:15:37,2015-12-09 14:23:37,2015-11-23 22:03:25,3,308,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +18961,RANCH,1,2015-06-27 20:52:55,2015-07-25 03:01:15,2015-07-09 15:54:46,1,470,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +18962,VALON,7,2014-05-06 12:17:08,2014-05-16 14:38:11,2014-05-16 16:25:36,1,403,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18963,LAUGB,1,2016-12-20 13:14:54,2017-01-01 15:06:33,2016-12-20 20:19:11,2,188,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18964,TORTU,7,2022-02-26 17:20:20,2022-03-18 15:32:06,2022-02-26 23:36:57,3,29.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +18965,RICSU,2,2019-08-08 01:44:21,2019-08-16 00:50:57,2019-09-04 18:54:27,3,545,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +18966,TORTU,9,2018-12-21 10:55:05,2019-01-21 05:40:02,2018-12-22 10:31:53,1,492,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +18967,SUPRD,1,2020-06-19 16:38:15,2020-07-05 00:32:52,2020-06-25 18:56:44,1,422.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +18968,LINOD,5,2014-09-18 06:35:29,2014-10-23 20:27:05,2014-09-20 12:43:05,3,135.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +18969,CHOPS,5,2016-04-15 06:40:06,2016-04-21 02:29:59,2016-04-16 06:15:52,3,52.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +18970,ISLAT,3,2014-06-23 17:04:56,2014-07-27 22:25:47,2014-07-01 03:23:20,1,76.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +18971,FAMIA,6,2018-05-18 05:26:28,2018-06-03 01:16:56,2018-05-27 03:46:27,2,327.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +18972,HUNGO,2,2022-09-20 11:19:12,2022-10-09 06:03:01,2022-09-25 14:56:16,3,240.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +18973,HANAR,5,2017-07-28 14:37:28,2017-08-24 01:03:20,2017-08-15 10:35:01,2,473.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18974,BONAP,7,2017-11-03 09:23:19,2017-11-16 05:55:03,2017-11-03 12:20:30,2,84.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +18975,THEBI,4,2023-06-03 03:58:01,2023-06-23 00:52:48,2023-06-03 07:24:55,1,281,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18976,RANCH,5,2018-05-06 16:54:39,2018-06-07 15:45:06,2018-05-26 23:17:54,3,135.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18977,GALED,6,2012-08-30 21:25:29,2012-09-18 15:18:56,2012-09-06 01:06:06,1,382.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +18978,NORTS,1,2021-01-19 04:24:23,2021-01-20 22:53:51,2021-02-05 22:03:11,2,507.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +18979,LETSS,1,2019-03-25 05:28:30,2019-03-30 20:01:43,2019-03-28 18:27:16,3,490.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +18980,FURIB,9,2020-06-22 08:56:08,2020-07-04 05:43:44,2020-06-22 20:15:58,1,439.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +18981,CONSH,7,2013-11-14 11:21:08,2013-11-30 11:49:45,2013-11-20 04:39:55,2,223,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +18982,HILAA,4,2020-02-11 15:29:23,2020-03-15 17:05:20,2020-02-18 16:49:35,2,427,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +18983,LAZYK,5,2020-07-01 02:03:30,2020-07-02 05:43:19,2020-07-02 13:38:45,3,467,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +18984,TRADH,2,2017-01-19 08:19:55,2017-02-03 04:44:02,2017-01-20 09:17:10,3,352.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +18985,COMMI,6,2018-08-01 15:59:37,2018-08-23 18:37:05,2018-08-19 02:08:07,2,54.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +18986,ROMEY,2,2015-06-08 14:39:23,2015-06-25 14:58:39,2015-06-15 17:26:42,3,258.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +18987,GREAL,4,2020-02-07 02:08:07,2020-03-01 21:56:55,2020-02-18 07:21:42,3,202.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +18988,EASTC,1,2013-09-22 17:18:03,2013-09-29 20:24:51,2013-10-09 01:17:59,3,97.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +18989,OLDWO,5,2022-05-13 13:05:09,2022-06-18 07:08:45,2022-05-14 12:53:19,3,248,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +18990,OTTIK,4,2021-01-09 00:32:07,2021-01-25 05:58:53,2021-01-19 07:33:52,3,288.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +18991,DRACD,6,2018-06-22 00:11:53,2018-07-07 19:10:20,2018-06-25 09:17:44,2,396.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +18992,MEREP,7,2019-07-14 11:26:25,2019-08-10 03:10:54,2019-08-08 21:21:58,3,396.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +18993,CONSH,3,2018-11-25 04:53:06,2018-11-26 00:22:00,2018-12-10 19:42:11,3,320.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +18994,BOLID,7,2012-07-13 15:05:27,2012-08-08 22:51:37,2012-07-19 19:39:20,2,107.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +18995,RICAR,5,2018-08-18 04:24:01,2018-09-09 08:28:50,2018-08-27 04:12:12,3,296.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18996,VINET,4,2018-05-07 14:40:09,2018-05-25 16:14:25,2018-05-10 06:36:39,3,332.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +18997,VICTE,9,2023-02-28 22:42:33,2023-03-28 09:43:52,2023-03-14 17:11:43,3,485,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +18998,LACOR,7,2014-09-15 01:43:52,2014-09-30 20:46:39,2014-09-25 22:35:09,2,11.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +18999,GODOS,3,2018-06-12 19:34:28,2018-07-06 03:24:36,2018-06-26 19:01:38,3,364.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19000,WANDK,4,2019-10-18 04:44:05,2019-12-11 16:16:46,2019-10-29 11:08:41,1,321,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19001,SEVES,4,2019-08-12 15:19:43,2019-08-19 18:50:36,2019-08-13 10:30:46,1,33.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19002,PERIC,2,2015-10-06 07:32:46,2015-11-11 20:12:20,2015-10-19 12:52:48,1,334.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19003,OTTIK,2,2013-01-30 12:32:37,2013-02-04 03:07:49,2013-02-14 14:28:05,1,273.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19004,BERGS,6,2017-01-10 02:51:07,2017-01-11 22:15:12,2017-01-10 04:14:40,3,348.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19005,PERIC,6,2022-03-08 12:27:41,2022-03-25 19:30:11,2022-04-05 09:40:44,3,195.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19006,PICCO,1,2018-11-27 19:57:16,2018-12-04 12:07:15,2018-12-19 06:58:00,2,432.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19007,BSBEV,9,2023-10-18 17:27:12,2023-10-20 04:00:50,2023-10-29 05:13:08,3,179,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19008,AROUT,9,2016-08-01 03:23:46,2016-08-02 17:42:16,2016-08-29 01:56:07,1,496.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +19009,FOLKO,8,2020-07-06 07:56:38,2020-08-08 07:01:34,2020-07-06 17:16:49,3,212.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19010,TRAIH,2,2018-06-30 16:40:08,2018-07-21 06:23:49,2018-07-12 04:25:38,1,405.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19011,NORTS,6,2017-03-13 06:01:31,2017-03-24 21:31:52,2017-03-15 03:38:25,1,134.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19012,LACOR,3,2022-02-28 06:53:57,2022-03-27 19:27:11,2022-03-19 18:24:07,2,137,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19013,VAFFE,4,2017-04-03 11:12:49,2017-04-24 18:42:21,2017-04-16 01:51:28,1,362,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19014,SPECD,1,2014-12-25 09:38:59,2015-01-19 04:47:01,2014-12-28 05:50:13,1,209,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19015,OLDWO,9,2015-03-05 01:22:17,2015-03-17 18:05:04,2015-03-05 21:54:02,3,452.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19016,SANTG,7,2013-04-03 01:05:01,2013-05-07 21:52:58,2013-04-03 06:32:57,2,218.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19017,QUEEN,5,2013-10-09 02:15:59,2013-10-29 02:04:56,2013-10-18 13:22:56,1,126.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19018,ANATR,1,2013-07-09 13:10:12,2013-07-26 05:30:07,2013-07-11 07:12:28,1,456.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19019,FOLKO,4,2013-11-29 00:18:27,2013-12-17 12:31:27,2013-12-16 10:04:06,3,50.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19020,LINOD,4,2016-10-17 20:59:38,2016-11-20 16:42:01,2016-10-31 18:36:10,2,463.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19021,FRANS,9,2020-09-01 08:45:07,2020-09-18 01:59:31,2020-09-05 09:50:41,1,116.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19022,FOLKO,1,2013-03-06 08:54:21,2013-04-03 04:23:41,2013-03-17 19:44:41,2,355.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19023,NORTS,6,2015-05-12 00:43:55,2015-06-08 07:46:40,2015-05-12 10:34:58,1,11.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19024,SANTG,8,2022-02-25 00:08:31,2022-03-22 13:07:06,2022-03-07 11:53:37,3,254,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19025,LACOR,1,2015-02-17 19:18:26,2015-02-27 20:08:25,2015-02-20 04:11:48,1,413.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19026,GOURL,7,2015-05-05 19:41:00,2015-05-12 20:31:18,2015-05-06 04:51:15,1,241.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19027,WHITC,1,2016-10-26 20:25:07,2016-10-27 14:51:22,2016-11-14 08:04:41,2,138.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19028,TRAIH,5,2019-06-01 04:20:17,2019-06-27 11:12:30,2019-06-10 12:04:17,1,103.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19029,DUMON,4,2018-01-17 01:25:28,2018-03-05 00:00:12,2018-01-19 14:36:55,3,31,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19030,FOLIG,8,2015-07-03 03:55:20,2015-08-17 20:12:48,2015-07-15 15:53:24,2,339.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19031,GODOS,1,2019-05-10 00:43:26,2019-06-04 10:35:29,2019-05-14 14:28:40,2,402,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19032,CENTC,2,2018-08-30 07:40:09,2018-09-28 20:03:23,2018-09-01 21:02:25,3,439.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19033,BONAP,7,2023-05-07 03:58:55,2023-05-26 10:34:11,2023-05-22 17:41:43,2,526,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19034,LONEP,4,2023-08-12 23:13:06,2023-08-14 15:33:37,2023-08-13 18:40:48,1,459.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19035,WHITC,8,2015-08-20 01:26:57,2015-09-08 11:24:34,2015-09-04 21:32:31,1,366.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19036,SUPRD,7,2016-07-06 11:13:37,2016-07-31 12:27:45,2016-07-09 06:08:55,2,334,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19037,GREAL,9,2013-04-08 12:07:02,2013-04-25 11:19:09,2013-04-17 02:47:49,3,342.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19038,BOTTM,1,2015-05-25 20:02:14,2015-06-08 10:15:34,2015-06-13 14:41:30,3,29.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19039,SIMOB,3,2016-04-21 09:15:55,2016-05-14 17:52:44,2016-04-30 17:46:32,1,361,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19040,SPECD,6,2013-03-17 22:40:35,2013-03-20 17:06:25,2013-03-27 04:26:44,2,152.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19041,MEREP,9,2020-11-30 20:12:59,2020-12-25 21:41:27,2020-12-14 05:34:33,1,448.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19042,MEREP,9,2016-09-30 05:21:01,2016-10-04 14:36:20,2016-10-22 16:46:04,2,25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19043,TRADH,9,2021-12-02 16:47:37,2022-01-06 02:04:36,2021-12-20 23:01:48,3,267.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19044,HILAA,1,2015-04-08 13:58:29,2015-04-28 14:54:28,2015-04-15 00:59:22,1,429.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19045,WANDK,5,2021-05-17 09:23:01,2021-06-13 16:31:16,2021-05-29 06:58:19,2,202,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19046,TOMSP,6,2015-03-28 19:11:09,2015-04-29 11:21:11,2015-03-31 21:01:14,1,36.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19047,FOLIG,3,2016-11-29 15:13:30,2016-12-13 05:13:42,2016-12-09 23:28:17,1,317,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19048,HILAA,7,2016-07-10 12:27:24,2016-07-18 16:44:51,2016-07-23 02:21:39,1,394,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19049,SANTG,1,2013-11-23 22:36:07,2013-12-08 22:58:36,2013-11-29 01:07:51,3,358.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19050,PRINI,2,2019-02-21 16:29:56,2019-02-25 00:25:49,2019-03-02 01:23:55,1,122.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19051,LONEP,4,2018-12-12 07:09:45,2019-01-01 05:10:52,2018-12-25 06:15:44,2,436,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19052,HILAA,5,2023-08-03 05:58:02,2023-08-15 06:42:28,2023-08-08 17:36:42,3,444.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19053,TORTU,1,2013-02-12 14:54:49,2013-02-13 07:25:26,2013-02-24 05:29:03,2,60,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19054,LILAS,6,2018-09-13 08:31:33,2018-10-07 13:40:51,2018-09-14 18:44:53,3,362.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19055,COMMI,3,2021-10-20 23:25:38,2021-11-19 14:54:03,2021-10-22 21:12:30,1,145,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19056,TORTU,9,2013-05-27 22:48:42,2013-05-30 05:50:04,2013-06-04 02:08:31,2,45.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19057,RICAR,1,2017-03-13 18:10:42,2017-03-14 21:52:06,2017-03-14 18:28:25,1,495.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19058,LEHMS,1,2013-07-01 17:29:57,2013-07-14 06:29:27,2013-07-31 14:56:05,1,405.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19059,WHITC,2,2019-10-11 23:23:31,2019-11-05 13:29:34,2019-10-12 01:25:32,2,393.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19060,GODOS,8,2016-07-19 06:41:44,2016-07-23 11:42:48,2016-08-04 07:28:14,3,162.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19061,ROMEY,5,2017-12-30 12:40:44,2018-01-03 21:01:53,2018-01-02 12:26:47,2,287.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19062,LONEP,4,2013-01-29 02:31:24,2013-03-09 21:24:00,2013-02-03 23:20:22,1,206.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19063,GOURL,7,2015-06-04 00:32:31,2015-06-12 14:13:50,2015-06-17 05:49:57,2,380,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +19064,MAGAA,1,2012-12-27 02:39:01,2013-02-03 02:32:14,2013-01-23 15:37:06,2,306.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19065,GODOS,5,2021-11-12 00:43:09,2021-12-17 21:19:53,2021-11-27 08:46:43,2,157,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19066,COMMI,3,2012-09-11 16:04:18,2012-10-01 07:30:06,2012-09-23 20:34:20,1,19.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19067,SPECD,4,2019-03-01 00:52:54,2019-03-09 19:01:09,2019-03-01 12:20:08,2,424,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19068,SUPRD,1,2019-10-20 07:35:39,2019-11-11 16:59:10,2019-10-23 13:30:05,3,210.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19069,TORTU,5,2020-09-23 02:58:06,2020-09-25 16:23:14,2020-09-25 03:40:20,3,220.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19070,AROUT,9,2014-03-16 12:17:27,2014-03-16 20:39:29,2014-03-20 14:38:04,1,412,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19071,TORTU,4,2018-09-06 17:34:12,2018-10-07 10:00:44,2018-09-08 08:24:40,2,475,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19072,DRACD,6,2022-03-11 07:00:27,2022-04-02 11:09:31,2022-03-18 10:57:48,1,221,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19073,LILAS,1,2022-01-03 20:08:52,2022-01-15 19:17:59,2022-01-05 23:52:25,2,213.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19074,DRACD,3,2012-11-30 22:45:12,2012-12-14 11:51:53,2012-12-12 14:28:18,3,151.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19075,MEREP,6,2014-11-20 05:04:48,2014-12-17 15:12:20,2014-11-23 12:22:06,3,376.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19076,WILMK,2,2021-03-05 11:44:50,2021-03-29 14:48:39,2021-03-08 10:28:42,2,282.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19077,PRINI,5,2012-10-31 04:07:52,2012-12-09 10:13:41,2012-10-31 22:28:32,3,213.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19078,CENTC,4,2023-04-05 14:08:31,2023-04-20 17:40:03,2023-04-23 22:15:04,3,274,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19079,OTTIK,6,2015-10-30 10:19:20,2015-11-24 16:16:46,2015-11-07 03:44:23,3,326.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +19080,TRADH,4,2015-01-14 10:06:30,2015-02-02 06:03:25,2015-01-31 10:19:33,3,388.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19081,Val2 ,9,2016-01-04 17:42:42,2016-01-17 15:38:14,2016-01-05 20:10:02,3,386.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19082,TOMSP,6,2014-01-08 19:25:04,2014-01-18 17:11:32,2014-01-22 13:09:41,1,310.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19083,TOMSP,4,2018-08-08 20:51:37,2018-09-08 18:02:50,2018-08-09 15:40:07,3,476.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19084,ERNSH,4,2016-11-06 02:12:42,2016-11-11 17:36:20,2016-11-06 10:37:22,2,294.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19085,QUEEN,7,2022-10-27 00:38:34,2022-12-04 13:55:38,2022-10-27 13:28:32,3,172,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19086,RICSU,2,2016-07-19 23:19:59,2016-08-02 16:25:31,2016-07-20 05:43:08,2,340,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19087,NORTS,2,2021-08-12 23:52:20,2021-08-14 23:20:15,2021-08-26 01:07:42,3,377,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19088,CACTU,9,2015-02-23 06:02:03,2015-03-09 13:18:02,2015-02-23 08:11:20,2,116,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19089,HILAA,3,2014-11-08 08:18:49,2014-11-09 14:32:53,2014-11-10 14:18:13,1,455,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19090,FURIB,5,2015-02-14 20:02:02,2015-03-11 13:36:17,2015-02-20 21:55:16,3,290.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19091,FRANR,3,2013-03-06 15:56:17,2013-03-13 06:39:22,2013-03-19 18:47:13,3,519.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19092,KOENE,9,2015-02-12 22:55:14,2015-03-09 09:49:34,2015-02-13 13:44:54,2,391.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19093,GREAL,8,2013-07-11 01:05:17,2013-08-04 07:36:08,2013-07-28 19:54:46,1,507,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19094,FOLIG,7,2013-08-30 01:58:03,2013-09-17 11:21:01,2013-09-06 16:58:16,2,314.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19095,FISSA,2,2013-09-11 09:24:40,2013-09-28 15:02:22,2013-09-23 16:49:31,1,289.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19096,LAZYK,9,2019-09-17 03:17:28,2019-09-21 12:57:38,2019-10-02 23:00:57,2,157.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19097,OCEAN,1,2023-05-30 08:21:02,2023-07-17 11:30:09,2023-06-16 08:34:11,2,502.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19098,CACTU,6,2016-01-14 13:03:16,2016-02-07 05:23:05,2016-01-31 20:11:44,3,264,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19099,QUEEN,6,2014-05-31 16:29:35,2014-06-12 16:02:10,2014-06-09 09:29:17,1,200,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19100,TOMSP,7,2020-11-07 18:56:21,2020-11-13 19:48:24,2020-11-08 19:23:54,2,202.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19101,WANDK,3,2023-10-20 12:19:41,2023-11-01 20:09:52,2023-10-22 16:39:52,3,229.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19102,HILAA,9,2017-08-30 01:10:07,2017-09-13 14:56:05,2017-08-31 12:28:33,3,344.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19103,ERNSH,2,2020-07-09 19:07:05,2020-07-21 00:47:39,2020-07-15 01:35:18,3,175,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19104,WARTH,8,2015-11-24 16:58:08,2015-12-01 21:58:37,2015-11-24 18:13:08,1,57.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19105,DRACD,2,2021-03-01 20:31:40,2021-03-27 22:31:56,2021-03-23 22:26:11,2,253.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19106,CONSH,5,2023-03-01 02:20:15,2023-03-30 20:41:48,2023-03-03 22:33:00,1,184,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19107,CACTU,8,2019-01-14 15:19:37,2019-02-24 20:37:55,2019-01-21 08:36:40,3,197.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19108,HUNGO,6,2014-08-24 07:45:16,2014-08-26 17:08:47,2014-09-04 13:26:35,2,205,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19109,FOLIG,9,2013-03-20 19:32:03,2013-03-24 07:34:16,2013-03-25 14:22:28,3,193.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19110,LONEP,1,2015-05-16 06:27:44,2015-06-01 00:35:59,2015-05-18 13:45:05,1,33.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19111,WARTH,1,2022-02-18 03:07:45,2022-03-06 02:13:58,2022-02-20 07:48:04,1,179.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19112,QUICK,1,2013-02-28 03:17:53,2013-02-28 12:01:44,2013-03-15 12:14:22,1,341,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19113,FRANS,9,2015-06-10 12:14:56,2015-07-30 07:41:54,2015-06-27 22:35:54,2,112,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19114,GREAL,2,2022-04-22 02:23:34,2022-05-22 00:28:29,2022-04-26 00:07:00,1,495.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19115,WARTH,7,2022-03-30 00:41:53,2022-05-06 05:30:07,2022-04-05 08:17:11,2,495,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19116,BONAP,8,2020-11-19 10:21:30,2020-11-28 04:41:22,2020-11-19 16:11:28,2,206.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19117,SPECD,8,2021-02-22 00:31:06,2021-03-25 22:25:08,2021-02-25 14:59:56,1,352.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19118,SEVES,4,2013-11-12 01:37:20,2013-11-19 15:18:17,2013-12-01 13:47:06,2,117.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19119,SUPRD,4,2020-09-13 15:25:13,2020-10-06 15:17:46,2020-09-15 06:20:50,2,474.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19120,TOMSP,7,2023-07-27 07:39:44,2023-08-19 18:12:02,2023-07-30 11:27:29,1,24.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19121,VAFFE,5,2012-11-02 23:51:16,2012-12-06 11:54:01,2012-11-04 08:57:03,3,144,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19122,FRANK,2,2019-01-29 02:13:35,2019-02-16 09:41:01,2019-02-10 05:23:02,3,242.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19123,BONAP,3,2023-03-23 20:53:00,2023-04-03 11:39:26,2023-04-03 18:36:23,2,260.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19124,MORGK,3,2023-06-28 09:25:51,2023-06-30 10:20:25,2023-06-30 08:29:19,3,489,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19125,BOTTM,6,2016-09-17 13:04:25,2016-10-28 20:16:31,2016-09-18 06:03:16,1,42.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19126,MAGAA,8,2023-10-08 19:33:38,2023-11-12 15:10:19,2023-10-10 14:49:05,2,37.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19127,EASTC,8,2023-04-04 22:56:34,2023-04-10 18:36:24,2023-04-23 20:39:21,1,166,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19128,WHITC,7,2016-06-17 07:09:33,2016-06-24 11:11:53,2016-06-19 06:30:48,3,493.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19129,SEVES,2,2023-09-09 05:40:40,2023-09-11 17:53:39,2023-09-10 00:02:31,1,236.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +19130,RATTC,2,2014-09-21 05:28:21,2014-09-25 20:09:13,2014-10-06 04:28:58,2,502,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19131,REGGC,8,2018-09-29 03:59:24,2018-11-16 17:18:18,2018-10-16 05:59:35,2,121.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19132,OLDWO,5,2017-09-17 03:57:49,2017-10-31 04:39:43,2017-09-19 17:00:31,2,441,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19133,AROUT,9,2019-07-30 11:00:56,2019-08-17 17:50:07,2019-07-31 05:25:24,3,196,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19134,FRANK,7,2023-05-13 15:40:07,2023-06-11 16:00:19,2023-05-27 20:42:48,1,394.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19135,KOENE,7,2017-04-08 10:16:44,2017-04-15 09:32:31,2017-04-13 06:48:00,3,85.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19136,FURIB,5,2018-03-28 20:49:48,2018-04-18 10:11:10,2018-04-08 17:02:53,3,265,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19137,LILAS,8,2022-06-28 02:59:28,2022-07-17 23:16:36,2022-06-28 03:48:14,2,467,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19138,HUNGO,2,2017-03-02 05:21:51,2017-04-01 10:22:56,2017-03-07 10:22:11,3,303.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19139,FOLKO,8,2015-03-23 14:57:21,2015-04-04 11:24:25,2015-03-30 20:57:09,3,309.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19140,WHITC,6,2019-03-14 06:36:53,2019-03-29 00:57:28,2019-04-02 06:44:47,3,95.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19141,SPECD,8,2020-06-24 01:02:00,2020-06-27 08:28:31,2020-06-26 21:46:16,2,101.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19142,FRANK,9,2019-05-14 22:18:18,2019-05-16 04:48:27,2019-05-25 04:24:37,2,438.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19143,WHITC,7,2022-12-24 07:51:16,2022-12-30 19:14:30,2023-01-02 14:14:17,2,307,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19144,RICAR,1,2016-10-12 17:28:23,2016-10-15 03:26:40,2016-11-04 02:59:03,1,132.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19145,SPECD,7,2022-01-05 14:21:54,2022-01-07 17:47:33,2022-01-24 09:49:14,3,268.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +19146,ALFKI,1,2022-09-29 12:39:03,2022-10-05 17:29:07,2022-10-22 16:04:43,2,178,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19147,FURIB,3,2014-12-12 20:25:52,2014-12-24 07:34:31,2014-12-13 07:13:10,1,303.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19148,RICSU,4,2013-10-29 01:39:32,2013-12-03 08:21:31,2013-11-03 19:23:36,3,133.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19149,ISLAT,4,2021-04-02 08:57:25,2021-05-03 07:28:17,2021-04-03 08:07:29,2,32,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19150,BLAUS,4,2015-08-20 15:30:00,2015-09-06 11:04:15,2015-09-07 01:41:21,2,355.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19151,WELLI,4,2021-12-28 02:08:22,2022-01-24 03:24:23,2021-12-28 23:13:12,1,416.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19152,GOURL,7,2020-06-03 07:31:06,2020-06-23 17:14:50,2020-06-10 05:17:15,3,193.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19153,BONAP,5,2015-02-18 18:34:24,2015-03-30 00:23:32,2015-03-04 13:19:26,1,355,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19154,DRACD,4,2021-11-28 02:51:01,2022-01-10 07:50:24,2021-12-01 03:14:11,2,357.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19155,FRANR,2,2014-10-05 11:33:29,2014-10-14 07:00:42,2014-10-27 03:37:06,1,372.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19156,HANAR,7,2016-12-12 04:06:46,2017-01-01 04:42:18,2016-12-24 13:50:05,3,324.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19157,MAGAA,9,2014-06-08 23:46:51,2014-06-15 22:52:18,2014-06-21 14:43:04,2,360.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19158,RATTC,6,2012-07-12 05:29:34,2012-08-09 09:28:37,2012-07-16 22:21:35,2,231.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19159,FURIB,9,2019-03-21 14:03:04,2019-04-24 04:24:09,2019-03-24 15:01:05,1,283,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19160,HILAA,8,2015-07-20 05:32:36,2015-08-08 14:47:32,2015-07-25 16:55:35,3,273.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19161,ROMEY,3,2017-05-03 00:07:06,2017-05-10 07:31:17,2017-05-04 13:17:12,2,79.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19162,SAVEA,6,2023-04-24 06:32:31,2023-04-27 16:57:36,2023-04-28 16:55:24,2,164.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19163,GOURL,5,2015-08-01 19:27:36,2015-08-29 11:13:07,2015-08-27 03:57:39,2,192,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19164,BONAP,1,2014-12-20 14:47:38,2015-02-13 15:12:52,2014-12-22 11:11:28,3,142.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19165,FOLKO,9,2022-01-02 13:40:47,2022-01-25 23:47:30,2022-01-08 20:37:34,2,60.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19166,LAMAI,5,2015-07-31 11:25:51,2015-08-14 09:24:26,2015-08-22 12:11:31,1,451.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19167,QUEEN,7,2015-05-14 17:42:29,2015-05-31 20:43:31,2015-05-22 13:43:00,3,333.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19168,GROSR,3,2020-05-10 20:18:06,2020-05-31 02:52:05,2020-05-11 03:34:22,2,239.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19169,RICSU,9,2017-10-01 13:38:21,2017-10-02 06:05:05,2017-10-01 18:48:53,1,409.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19170,BOLID,8,2021-12-12 21:06:00,2022-01-12 04:06:50,2021-12-20 23:27:08,1,252.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19171,Val2 ,9,2016-01-26 05:37:43,2016-02-15 07:07:54,2016-01-26 10:54:39,3,203.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19172,LEHMS,4,2012-10-08 13:45:16,2012-11-23 12:27:37,2012-10-09 09:52:32,1,198.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19173,ALFKI,1,2018-05-08 12:01:02,2018-05-28 05:57:25,2018-06-02 10:03:14,3,63.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19174,RANCH,6,2013-02-06 01:35:04,2013-02-06 06:06:27,2013-03-05 20:31:15,3,345.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19175,QUEEN,3,2023-05-24 12:57:05,2023-06-17 16:46:16,2023-06-02 03:03:53,1,417.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19176,FISSA,9,2016-07-08 10:26:41,2016-08-13 22:52:41,2016-07-14 07:54:06,3,256.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19177,HANAR,1,2017-04-24 12:47:48,2017-05-25 12:38:06,2017-05-03 12:14:25,3,278.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19178,QUEDE,6,2015-10-22 13:38:50,2015-11-21 04:35:15,2015-11-16 01:38:04,2,248,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19179,FRANR,1,2023-01-24 11:01:22,2023-03-04 21:12:50,2023-02-11 19:14:31,1,19.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +19180,HUNGO,1,2020-02-07 10:24:17,2020-02-21 05:03:31,2020-02-07 15:25:56,1,209.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19181,SANTG,1,2012-09-18 00:53:30,2012-09-25 07:55:01,2012-09-20 13:05:01,2,65.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19182,FISSA,7,2014-08-16 05:33:50,2014-08-18 08:58:21,2014-08-21 23:57:07,2,222.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19183,HUNGO,8,2023-08-06 18:13:40,2023-08-26 16:09:26,2023-08-22 02:09:48,2,197.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19184,OTTIK,2,2013-04-25 15:15:37,2013-05-09 13:45:32,2013-04-29 05:31:51,3,125.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19185,FOLIG,5,2012-07-16 09:41:10,2012-08-08 22:08:09,2012-07-26 14:36:54,1,508.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19186,BERGS,6,2018-11-09 08:33:57,2018-12-04 10:00:20,2018-11-13 12:02:07,1,360,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19187,VALON,9,2017-04-25 06:45:05,2017-05-09 07:22:59,2017-05-07 16:39:45,1,37.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19188,LAUGB,9,2023-04-12 09:08:01,2023-04-29 08:40:57,2023-04-24 13:38:50,1,446.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19189,CONSH,4,2022-06-14 08:04:11,2022-07-24 12:58:27,2022-06-30 03:23:53,2,63.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19190,FOLKO,3,2012-08-18 01:30:51,2012-09-27 10:01:21,2012-08-23 09:14:43,1,271,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19191,SPLIR,7,2021-05-06 14:27:25,2021-05-18 08:50:06,2021-05-12 14:54:49,1,49.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19192,HANAR,3,2023-06-13 12:31:13,2023-07-07 11:52:25,2023-06-24 09:41:36,3,491.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19193,DRACD,9,2023-07-10 16:49:30,2023-07-12 04:36:02,2023-07-13 16:03:28,1,121.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19194,HILAA,5,2013-09-16 18:02:18,2013-10-09 12:29:59,2013-09-18 03:49:29,3,414.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19195,FOLKO,1,2014-07-14 16:55:02,2014-07-22 19:51:50,2014-07-24 10:13:07,1,444.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19196,TRADH,1,2012-12-02 10:03:57,2012-12-14 00:39:07,2012-12-14 07:25:50,3,280,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19197,RICSU,3,2021-12-18 21:31:19,2021-12-29 07:41:26,2022-01-02 23:35:13,1,333.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19198,BOTTM,7,2016-12-10 01:05:16,2016-12-20 19:44:27,2016-12-15 16:11:06,2,439.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19199,FISSA,8,2016-04-16 09:43:20,2016-04-28 06:54:54,2016-04-20 05:28:20,2,353,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19200,LILAS,1,2022-10-26 02:45:56,2022-10-29 06:40:59,2022-11-06 04:34:14,2,334.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19201,TOMSP,7,2020-06-22 23:13:12,2020-07-06 11:24:36,2020-07-10 17:42:23,1,186.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19202,ANTON,4,2021-08-10 04:16:25,2021-09-09 21:29:29,2021-08-21 02:52:12,3,391.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +19203,TORTU,8,2018-05-06 08:20:31,2018-05-13 20:14:07,2018-05-12 13:01:01,3,179.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19204,LINOD,6,2014-12-06 22:25:10,2015-01-07 11:26:39,2014-12-13 19:30:01,1,365.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19205,TRADH,3,2017-01-15 10:42:26,2017-03-13 14:32:51,2017-01-23 12:56:41,2,387.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19206,THEBI,2,2021-06-21 03:03:07,2021-07-02 16:07:55,2021-07-11 18:57:18,2,462,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19207,VINET,9,2013-12-23 00:53:44,2014-01-29 02:32:28,2014-01-06 22:28:33,2,209,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19208,VICTE,5,2016-06-13 02:15:34,2016-07-26 08:21:37,2016-07-06 01:44:49,1,360,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19209,LETSS,1,2022-08-06 20:57:27,2022-09-25 14:00:01,2022-08-07 16:05:47,2,151.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +19210,GALED,9,2014-09-28 02:01:31,2014-10-06 08:37:40,2014-09-29 21:49:39,1,157,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19211,SIMOB,5,2016-06-15 00:48:48,2016-07-18 14:59:47,2016-06-20 05:33:31,1,408.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19212,QUICK,1,2017-06-29 16:16:52,2017-07-06 09:36:10,2017-07-01 11:03:33,2,449.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19213,PICCO,4,2023-10-02 00:02:52,2023-11-18 03:43:37,2023-10-10 15:20:23,3,279.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19214,ERNSH,9,2012-08-14 23:20:05,2012-09-14 01:50:16,2012-08-22 11:51:47,2,486,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19215,TRAIH,9,2014-02-26 00:53:25,2014-03-18 23:33:33,2014-02-26 00:57:45,2,82.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19216,EASTC,2,2013-05-28 11:42:09,2013-06-20 08:33:10,2013-06-08 14:55:10,2,103.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19217,MEREP,1,2020-05-09 22:47:17,2020-05-10 00:58:34,2020-05-13 10:18:31,2,332.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19218,RANCH,6,2014-04-30 06:51:53,2014-05-11 08:42:08,2014-05-20 15:18:08,3,34.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19219,FOLIG,9,2021-01-27 08:55:59,2021-02-15 21:12:10,2021-02-02 14:09:28,3,28.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19220,CACTU,6,2019-12-22 17:05:54,2020-02-13 01:30:11,2019-12-24 09:39:11,2,147,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19221,LILAS,7,2017-05-21 18:42:36,2017-05-25 15:36:46,2017-06-02 06:20:02,2,306,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19222,MAISD,4,2015-05-11 12:55:36,2015-05-20 04:23:18,2015-05-18 05:13:55,3,205.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19223,QUICK,6,2017-03-23 04:58:58,2017-04-05 11:15:57,2017-04-07 00:42:10,3,40.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19224,PARIS,2,2015-03-26 01:48:12,2015-03-28 16:47:37,2015-04-17 01:18:45,3,308.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19225,THEBI,5,2021-07-21 15:47:39,2021-07-23 23:21:44,2021-07-26 18:41:18,1,136.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19226,KOENE,3,2022-06-29 18:14:41,2022-07-31 05:18:22,2022-06-29 22:39:09,2,211.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19227,HANAR,4,2018-07-28 16:38:24,2018-08-29 13:00:57,2018-08-26 06:04:31,1,40.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19228,COMMI,6,2018-09-26 19:32:20,2018-10-13 06:49:50,2018-09-30 10:43:58,1,353.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19229,TORTU,9,2019-08-11 01:44:59,2019-08-13 22:13:50,2019-08-16 15:56:17,1,277.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19230,ERNSH,6,2017-05-08 04:27:13,2017-05-22 16:06:57,2017-05-08 06:03:35,3,361,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19231,FURIB,5,2017-11-17 06:27:17,2017-12-09 12:31:58,2017-12-02 05:18:02,3,425.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19232,HUNGO,8,2019-11-17 13:39:58,2019-12-18 14:50:14,2019-11-19 05:08:18,3,523,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19233,EASTC,9,2014-09-16 14:57:08,2014-09-17 20:20:43,2014-09-17 10:28:12,2,354.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19234,LAZYK,4,2019-09-20 17:57:34,2019-10-18 20:57:35,2019-09-25 07:53:42,1,444.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19235,TORTU,5,2020-04-16 23:29:04,2020-05-19 10:13:00,2020-04-18 17:05:43,1,398.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19236,WILMK,1,2014-10-14 15:51:25,2014-11-10 13:34:36,2014-10-22 10:27:22,1,234.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19237,CACTU,2,2018-05-30 13:40:12,2018-06-02 03:50:05,2018-06-02 03:31:19,2,507.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19238,SUPRD,4,2015-01-28 03:00:14,2015-02-25 12:26:37,2015-01-28 23:19:43,1,354.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19239,PARIS,7,2016-03-24 23:19:38,2016-03-29 18:08:56,2016-03-28 01:00:23,1,279.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19240,MAISD,7,2018-11-01 13:03:15,2018-12-25 20:12:54,2018-11-19 00:54:31,1,233.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19241,WANDK,8,2021-07-14 01:12:52,2021-08-09 07:30:31,2021-07-15 14:11:46,3,18.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +19242,OTTIK,5,2018-12-03 21:10:33,2018-12-20 20:25:10,2018-12-09 19:45:28,1,41.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19243,FRANK,7,2017-06-29 09:21:20,2017-07-26 02:34:16,2017-07-04 23:05:21,3,115.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19244,GROSR,9,2013-12-21 19:16:13,2013-12-30 05:42:25,2013-12-22 13:59:34,3,425.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19245,EASTC,6,2014-01-18 04:37:23,2014-01-25 17:39:35,2014-01-29 21:01:11,1,398,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19246,RANCH,8,2014-10-07 00:33:44,2014-10-11 09:36:39,2014-10-12 10:59:38,1,201,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19247,MORGK,4,2018-07-29 17:34:00,2018-08-07 03:23:20,2018-08-13 22:51:37,1,55.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19248,TRADH,8,2019-06-26 21:06:30,2019-07-08 18:00:01,2019-07-13 09:58:07,2,484,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19249,ANTON,9,2021-10-14 06:42:57,2021-10-27 02:04:42,2021-11-04 11:22:24,3,398.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19250,QUICK,8,2020-03-09 10:02:34,2020-03-20 12:34:03,2020-03-09 19:10:14,1,319.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19251,SIMOB,4,2017-04-28 08:46:15,2017-05-18 04:37:21,2017-05-02 06:58:53,2,39,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19252,WHITC,2,2018-10-03 15:34:11,2018-10-27 10:58:44,2018-10-14 16:33:43,1,306.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19253,LEHMS,7,2019-06-30 16:13:45,2019-07-13 21:31:04,2019-07-01 20:26:03,3,237,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19254,TOMSP,3,2015-05-20 16:19:05,2015-05-24 12:39:50,2015-05-23 09:41:34,3,193.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19255,KOENE,7,2023-02-27 06:24:50,2023-03-13 23:06:24,2023-03-13 23:32:52,3,465.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19256,FAMIA,4,2015-02-17 19:13:19,2015-02-27 15:25:17,2015-02-25 01:51:56,1,340,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19257,RICAR,6,2022-04-30 09:50:19,2022-06-06 15:35:09,2022-05-04 17:55:27,2,212.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19258,HUNGO,7,2012-07-12 08:42:56,2012-07-12 11:00:21,2012-08-01 10:17:30,2,64.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19259,TRADH,3,2017-10-26 07:20:09,2017-10-31 20:51:48,2017-11-01 03:16:42,1,107.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19260,GODOS,5,2022-01-30 02:56:17,2022-02-14 06:09:52,2022-02-02 03:17:38,1,289.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19261,ISLAT,9,2021-11-27 08:07:34,2021-11-30 17:29:12,2021-11-29 20:41:14,2,214,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19262,TRAIH,4,2020-11-12 00:50:42,2021-01-03 23:08:28,2020-11-15 05:15:02,1,130,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +19263,DUMON,4,2022-05-02 22:30:23,2022-06-16 12:59:37,2022-05-08 16:35:10,1,76.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19264,CACTU,1,2014-08-27 18:21:29,2014-08-30 15:47:30,2014-08-30 04:22:15,1,90,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19265,QUEDE,7,2015-06-10 17:18:31,2015-07-01 19:45:44,2015-06-22 10:01:33,1,401.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19266,TOMSP,3,2019-10-25 14:59:51,2019-11-08 02:52:43,2019-10-28 21:57:44,3,122,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19267,THECR,1,2013-07-31 19:58:39,2013-08-21 21:43:02,2013-08-01 09:06:39,3,214.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19268,OLDWO,3,2020-11-06 01:46:00,2020-11-14 00:13:08,2020-11-20 03:01:16,1,451.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19269,ISLAT,2,2015-03-03 20:18:40,2015-04-13 07:30:32,2015-03-16 14:13:27,1,52,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19270,DUMON,9,2017-08-30 09:43:15,2017-09-04 13:43:13,2017-09-03 05:21:33,3,120.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19271,WANDK,7,2019-04-02 21:35:24,2019-04-17 19:46:28,2019-04-09 03:58:14,1,182,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19272,SUPRD,3,2023-05-17 21:15:01,2023-06-06 03:45:12,2023-06-07 15:39:02,1,520.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19273,GROSR,3,2018-05-12 20:49:42,2018-05-20 01:34:40,2018-05-13 20:11:44,1,374.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19274,KOENE,2,2013-06-03 07:59:58,2013-06-18 02:14:01,2013-06-04 04:02:55,2,115,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19275,HUNGC,3,2022-04-20 08:08:43,2022-06-02 01:23:38,2022-04-24 19:49:06,2,57,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19276,VALON,8,2021-08-08 00:07:29,2021-08-25 05:52:15,2021-08-10 22:25:49,2,155.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19277,OLDWO,5,2013-04-19 12:30:33,2013-05-14 20:18:10,2013-04-30 01:36:51,1,34.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19278,GODOS,8,2016-11-17 10:39:44,2016-12-07 22:53:47,2016-11-17 11:37:49,2,197,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19279,FRANK,6,2021-06-07 08:19:20,2021-06-09 21:02:47,2021-06-10 01:32:38,3,116,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19280,FAMIA,8,2013-08-07 02:54:26,2013-08-19 00:29:55,2013-08-27 18:24:12,3,179.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19281,FURIB,7,2021-11-07 03:26:11,2021-11-26 10:17:46,2021-11-17 15:19:22,2,43,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19282,LEHMS,8,2016-08-08 21:02:10,2016-09-03 01:47:13,2016-08-16 11:20:18,2,211.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19283,AROUT,6,2022-06-03 14:30:20,2022-06-15 07:39:46,2022-06-09 23:09:24,2,77.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19284,NORTS,5,2015-07-06 07:27:57,2015-08-29 18:00:12,2015-07-13 17:32:03,2,379.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19285,WARTH,4,2020-03-02 16:38:30,2020-03-20 08:06:46,2020-03-13 22:10:53,2,377.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19286,FOLIG,4,2015-08-08 20:39:06,2015-08-27 18:50:30,2015-08-14 12:16:07,2,151,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19287,THECR,5,2023-05-08 10:34:33,2023-05-14 14:43:08,2023-05-18 21:57:55,3,21.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19288,LINOD,6,2012-09-13 08:55:05,2012-09-30 10:35:42,2012-09-14 07:30:55,1,311,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19289,MORGK,2,2012-08-14 16:32:17,2012-09-04 22:16:04,2012-08-22 22:40:32,3,244.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19290,FISSA,7,2017-09-22 23:24:39,2017-10-01 16:37:25,2017-10-05 20:39:22,3,249.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19291,FISSA,9,2013-02-02 21:51:24,2013-03-04 04:09:55,2013-02-07 10:12:17,2,49,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19292,Val2 ,7,2019-08-29 19:31:35,2019-10-03 23:27:49,2019-08-30 05:35:22,2,308.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19293,BLAUS,6,2020-06-16 18:24:24,2020-06-22 23:13:53,2020-06-26 03:38:18,2,475.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19294,Val2 ,9,2022-06-26 07:41:17,2022-07-08 14:52:09,2022-06-27 14:06:45,3,554,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19295,HILAA,7,2016-10-12 21:06:23,2016-10-24 01:56:17,2016-10-16 09:23:47,3,322.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19296,PERIC,1,2014-12-21 07:14:16,2014-12-30 10:21:47,2014-12-24 09:37:48,1,152.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19297,FOLIG,4,2014-03-11 01:08:55,2014-03-12 00:45:13,2014-03-20 00:26:45,2,373.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19298,HILAA,7,2018-04-19 22:33:09,2018-04-25 00:43:58,2018-05-03 08:04:58,2,194,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19299,WHITC,1,2015-11-29 13:34:38,2015-12-28 04:09:54,2015-12-12 05:21:24,1,506,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19300,LACOR,7,2022-10-24 09:44:38,2022-12-06 17:00:00,2022-10-29 03:17:49,3,374.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19301,LILAS,7,2015-05-04 07:06:45,2015-05-18 02:14:43,2015-05-10 16:18:34,3,147.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19302,GROSR,4,2021-04-28 00:36:15,2021-06-26 05:31:15,2021-04-30 19:24:41,3,89.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19303,FRANS,2,2012-07-12 16:27:31,2012-08-09 08:06:41,2012-07-16 08:25:59,2,357,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19304,BONAP,3,2020-10-13 20:02:05,2020-11-17 14:40:15,2020-10-19 10:41:23,2,292.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19305,LINOD,5,2016-03-23 19:47:49,2016-04-02 18:40:38,2016-03-25 16:06:41,2,424.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19306,GODOS,3,2019-03-09 21:20:53,2019-03-28 00:11:22,2019-03-11 05:55:54,2,294,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19307,HANAR,5,2020-03-01 03:19:03,2020-04-23 15:27:26,2020-03-02 02:52:49,3,110.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19308,RICAR,4,2015-02-28 05:55:31,2015-03-05 10:16:26,2015-03-01 02:22:07,3,341.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19309,TRADH,5,2023-09-09 18:04:32,2023-10-10 23:18:21,2023-09-12 02:21:14,2,277.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +19310,LAZYK,3,2020-06-14 15:37:40,2020-06-18 14:31:30,2020-06-21 23:46:18,2,375.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19311,RICAR,6,2022-05-05 09:37:33,2022-05-18 11:34:34,2022-05-15 18:38:30,1,492.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19312,BSBEV,1,2020-03-15 16:31:11,2020-04-03 20:43:24,2020-03-20 14:17:35,2,171.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19313,FISSA,8,2015-08-09 18:33:55,2015-08-25 05:30:06,2015-08-31 21:00:47,1,508.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19314,CENTC,3,2023-10-14 00:18:00,2023-10-23 23:59:19,2023-10-16 20:45:22,1,72.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19315,SAVEA,9,2012-08-22 20:17:13,2012-08-29 15:19:52,2012-09-05 01:48:57,3,517,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19316,HUNGC,6,2023-08-24 16:22:15,2023-09-16 05:24:26,2023-08-26 15:01:51,2,402.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19317,TRAIH,6,2020-03-09 06:25:55,2020-03-22 15:09:38,2020-03-15 22:27:01,2,180.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19318,ERNSH,4,2013-09-15 07:34:52,2013-10-01 07:46:09,2013-09-15 20:45:18,3,161,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19319,SPLIR,6,2022-05-11 14:06:16,2022-05-24 09:36:50,2022-05-13 04:14:03,3,456.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19320,CENTC,8,2019-06-22 15:20:07,2019-07-09 17:40:41,2019-06-23 11:53:58,1,193,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19321,TRAIH,3,2023-09-13 12:34:19,2023-10-17 11:43:11,2023-09-18 14:32:47,1,197,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19322,QUEDE,8,2013-11-22 09:37:02,2013-11-26 04:36:58,2013-12-11 22:52:21,2,230.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19323,MORGK,7,2023-06-22 13:37:52,2023-06-25 15:02:01,2023-06-22 21:47:10,1,25.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19324,ISLAT,1,2014-11-29 01:24:43,2014-12-07 23:37:23,2014-12-07 18:07:53,3,284,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19325,FRANS,1,2015-12-23 22:51:56,2016-02-06 12:22:30,2015-12-29 17:05:58,3,116,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19326,LAMAI,2,2013-09-22 14:35:33,2013-09-23 08:50:59,2013-09-26 05:37:22,2,197.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19327,HANAR,4,2012-08-28 03:23:35,2012-09-11 17:36:01,2012-09-09 17:53:32,3,299.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19328,OLDWO,1,2020-01-07 22:30:33,2020-02-03 07:01:42,2020-01-18 15:59:33,1,236,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19329,CHOPS,5,2013-04-08 02:57:29,2013-05-09 02:07:46,2013-04-14 14:02:04,1,168.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19330,ISLAT,1,2023-03-07 12:15:44,2023-05-02 00:25:10,2023-03-16 11:17:38,1,138.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19331,EASTC,9,2019-12-06 20:17:30,2019-12-25 17:43:51,2019-12-21 20:12:42,2,60.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19332,OCEAN,6,2013-04-05 09:09:05,2013-04-27 21:26:53,2013-04-09 08:31:26,2,146.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19333,ALFKI,7,2016-06-24 04:58:49,2016-07-02 23:28:49,2016-07-18 09:02:24,1,200.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19334,BLONP,4,2021-12-05 05:39:08,2021-12-06 15:25:02,2021-12-16 14:49:40,2,75.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19335,CENTC,5,2012-08-20 01:48:37,2012-08-25 20:00:29,2012-08-23 15:17:19,2,421.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19336,CONSH,3,2014-10-15 05:52:39,2014-10-26 04:40:51,2014-10-24 11:45:48,1,270.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19337,SIMOB,4,2017-03-29 23:50:51,2017-04-06 11:52:57,2017-04-04 13:30:53,1,318,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19338,HUNGO,6,2016-02-17 10:09:49,2016-02-17 17:44:52,2016-02-20 14:52:51,2,467.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19339,RICAR,9,2021-03-03 16:05:48,2021-03-11 15:35:55,2021-03-06 06:25:41,1,151,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19340,TORTU,7,2023-02-05 07:24:53,2023-02-10 09:55:34,2023-02-15 09:43:35,2,356.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19341,VINET,8,2016-05-30 17:57:56,2016-06-06 16:54:04,2016-06-02 21:08:57,2,323.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19342,NORTS,3,2022-12-07 15:05:48,2022-12-20 16:40:12,2022-12-31 23:01:08,1,54.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19343,ERNSH,3,2018-01-22 12:44:10,2018-01-28 09:48:51,2018-01-29 20:30:02,2,172,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19344,ALFKI,6,2020-05-16 14:09:46,2020-05-19 20:28:56,2020-05-17 04:17:16,1,394.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19345,VAFFE,3,2021-08-28 05:21:01,2021-09-13 22:17:46,2021-09-12 16:11:51,2,445.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19346,CHOPS,2,2016-03-06 23:57:30,2016-03-08 20:04:21,2016-03-21 09:17:41,3,77,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19347,WARTH,9,2023-09-28 23:43:11,2023-11-08 16:09:21,2023-09-29 20:23:40,2,291.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19348,ROMEY,9,2012-10-16 00:26:15,2012-11-10 09:22:22,2012-10-16 18:48:07,2,92.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19349,FOLIG,2,2021-05-16 22:06:00,2021-05-30 04:13:38,2021-05-20 11:50:14,2,408.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19350,BONAP,2,2012-09-12 11:50:40,2012-11-05 21:31:00,2012-10-05 04:24:35,1,314,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19351,ISLAT,6,2021-02-06 19:52:31,2021-02-22 16:40:19,2021-02-08 03:51:27,3,494,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19352,BONAP,2,2021-06-06 13:58:15,2021-07-13 06:15:47,2021-06-30 14:07:52,3,342.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19353,WHITC,8,2016-08-29 13:01:32,2016-10-04 22:26:20,2016-08-31 02:42:10,3,213,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19354,PICCO,5,2023-05-26 17:42:19,2023-06-24 05:35:04,2023-05-27 03:25:17,2,110,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19355,PARIS,4,2022-08-17 22:19:32,2022-09-02 05:53:39,2022-08-22 09:38:17,1,288,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19356,RANCH,3,2023-01-07 12:54:52,2023-02-05 09:08:02,2023-01-09 05:29:36,3,173.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19357,GALED,6,2015-07-16 01:50:23,2015-07-22 18:51:58,2015-07-19 08:49:48,1,225.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19358,BONAP,6,2019-07-15 09:37:53,2019-07-27 08:07:44,2019-07-21 05:28:28,1,378,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19359,VICTE,6,2018-04-29 21:03:41,2018-06-09 05:03:27,2018-05-14 04:22:27,2,465.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19360,BLAUS,4,2016-09-27 10:00:25,2016-10-07 05:16:41,2016-10-03 22:59:45,2,406.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19361,RICSU,9,2019-08-11 18:44:32,2019-08-28 21:19:24,2019-08-30 18:35:41,2,242.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19362,LILAS,4,2014-06-26 11:40:06,2014-07-25 12:40:42,2014-07-04 21:50:39,1,349.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19363,GODOS,1,2014-10-26 07:16:21,2014-11-11 16:14:13,2014-11-08 14:51:53,3,412.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19364,LETSS,7,2022-09-15 23:09:25,2022-09-29 12:00:37,2022-09-15 23:30:59,2,416,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19365,ANATR,5,2015-08-08 05:06:45,2015-08-27 17:57:22,2015-08-10 00:22:58,2,187,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19366,HILAA,6,2012-08-28 07:04:02,2012-09-26 13:26:37,2012-08-31 11:51:11,1,13.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19367,MAISD,3,2016-08-03 22:31:30,2016-08-12 09:28:32,2016-08-24 10:41:49,2,341.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19368,BERGS,2,2013-01-07 10:47:14,2013-01-14 00:15:43,2013-01-08 00:09:24,3,495.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19369,SIMOB,5,2015-07-13 12:41:54,2015-08-03 03:23:17,2015-07-25 04:42:39,2,345.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19370,PERIC,8,2020-05-27 14:51:02,2020-06-28 19:11:57,2020-06-06 06:16:29,1,205.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19371,WOLZA,2,2014-10-16 23:47:55,2014-11-16 12:27:12,2014-11-02 04:13:02,3,370,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19372,AROUT,4,2015-12-12 21:57:26,2016-01-09 02:57:50,2015-12-25 05:14:06,3,350.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19373,THEBI,6,2019-10-31 23:43:05,2019-11-05 20:54:40,2019-11-04 13:50:34,3,474.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19374,THECR,7,2019-06-27 15:22:34,2019-08-13 03:52:50,2019-07-08 23:03:00,1,475,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19375,ANTON,4,2020-04-04 10:23:23,2020-04-14 05:48:52,2020-04-17 07:56:49,2,12.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19376,WHITC,9,2018-05-15 15:40:10,2018-05-16 20:19:32,2018-05-16 09:05:11,1,410.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19377,BLONP,5,2020-09-19 01:31:46,2020-11-11 07:31:03,2020-09-20 21:44:21,1,286,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19378,QUEEN,5,2022-08-16 21:42:06,2022-08-25 13:32:50,2022-08-21 22:39:19,3,386,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19379,TRAIH,5,2023-02-09 23:55:58,2023-03-17 13:23:39,2023-02-19 09:07:12,3,483.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19380,WANDK,1,2020-01-15 06:24:06,2020-02-09 09:27:07,2020-01-30 00:34:01,3,142.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19381,LILAS,8,2012-12-04 01:50:50,2012-12-09 01:18:59,2012-12-17 15:31:52,2,355.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19382,SUPRD,2,2015-12-09 09:00:36,2015-12-18 07:31:24,2015-12-19 05:48:07,1,276,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19383,FRANS,5,2020-12-07 14:13:02,2021-01-27 02:02:03,2020-12-13 07:53:24,1,208.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19384,ISLAT,2,2014-08-14 22:29:19,2014-08-17 08:43:34,2014-08-28 11:37:37,3,38.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19385,NORTS,4,2014-01-03 12:27:27,2014-01-07 05:44:48,2014-01-03 22:55:42,3,90.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19386,RANCH,1,2015-08-06 11:28:02,2015-08-23 20:14:52,2015-08-13 09:10:07,3,483.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19387,FRANR,7,2015-02-11 13:30:58,2015-02-12 09:19:57,2015-02-12 14:23:37,1,297.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +19388,MORGK,1,2020-07-06 10:26:50,2020-07-28 06:33:08,2020-07-15 21:21:43,3,252.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19389,GODOS,3,2023-01-08 10:05:36,2023-01-24 15:01:50,2023-01-23 14:08:01,1,81.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19390,SANTG,7,2021-07-16 08:11:27,2021-07-22 19:34:06,2021-07-16 22:33:47,3,126.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19391,RICSU,9,2017-02-16 20:22:59,2017-02-19 10:41:46,2017-03-05 09:52:02,3,338.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19392,OCEAN,8,2019-01-10 06:49:42,2019-02-03 19:19:13,2019-01-20 04:56:08,2,408,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19393,ALFKI,6,2018-06-15 11:18:50,2018-06-25 01:10:42,2018-06-22 16:14:32,1,428,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19394,MEREP,1,2021-09-02 04:49:45,2021-09-19 02:39:02,2021-09-04 05:28:13,1,361.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19395,EASTC,6,2013-08-25 13:56:15,2013-09-14 09:00:20,2013-08-30 11:09:09,1,402,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19396,FOLKO,1,2014-10-03 15:42:21,2014-11-05 09:16:13,2014-10-04 15:51:17,3,181.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19397,FAMIA,2,2014-05-23 15:05:47,2014-05-26 05:46:06,2014-06-05 20:19:46,1,348.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19398,GREAL,8,2018-02-14 18:29:08,2018-03-17 03:12:27,2018-02-27 00:52:19,2,261,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19399,BERGS,7,2015-03-31 10:35:52,2015-04-21 09:42:50,2015-04-11 17:36:54,2,101,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19400,RANCH,1,2016-08-08 04:47:48,2016-09-04 00:15:00,2016-08-09 17:37:56,2,329.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19401,BLONP,4,2021-08-11 09:30:15,2021-08-11 13:05:51,2021-08-27 02:51:16,2,199.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19402,FOLKO,6,2018-01-12 02:44:41,2018-01-12 14:34:17,2018-01-18 01:40:02,2,423.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19403,RANCH,8,2016-03-19 04:25:48,2016-03-26 16:28:24,2016-03-22 05:45:09,1,217.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19404,ISLAT,6,2013-05-02 08:42:37,2013-05-09 22:49:32,2013-05-21 15:46:13,1,305.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19405,FISSA,1,2017-05-22 06:48:52,2017-06-06 02:54:17,2017-05-28 09:22:29,3,347.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19406,BLAUS,8,2017-03-31 08:37:15,2017-04-05 20:06:07,2017-04-02 06:35:21,1,21.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19407,EASTC,1,2015-06-09 14:36:26,2015-06-25 22:59:51,2015-06-11 07:57:05,1,259,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19408,PERIC,1,2022-08-12 10:34:20,2022-08-28 06:30:22,2022-09-02 10:16:37,2,512.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19409,LEHMS,8,2013-11-07 01:07:56,2013-11-16 05:12:15,2013-11-16 21:22:26,2,141,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19410,GOURL,8,2021-08-06 13:20:26,2021-09-05 12:29:53,2021-08-10 05:11:47,3,525,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19411,WOLZA,8,2012-12-12 09:38:01,2012-12-31 09:47:03,2012-12-26 04:41:48,2,362.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19412,GROSR,1,2013-09-24 08:48:49,2013-10-05 02:30:53,2013-10-08 01:12:04,1,157.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19413,FOLKO,3,2014-06-11 03:04:23,2014-06-14 03:10:27,2014-06-12 16:49:59,1,552.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19414,CONSH,8,2019-09-10 08:23:17,2019-09-16 21:01:16,2019-09-26 15:14:58,3,460,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19415,RICSU,7,2012-10-20 05:26:56,2012-11-07 08:22:47,2012-11-01 11:58:30,2,364.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19416,HUNGO,4,2016-08-06 14:27:05,2016-09-19 14:23:22,2016-08-09 04:23:24,3,276.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19417,PICCO,6,2021-01-12 18:31:43,2021-01-24 10:30:56,2021-01-25 09:49:36,1,484.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19418,MORGK,8,2014-03-26 21:44:30,2014-04-01 18:20:57,2014-03-28 10:26:07,3,161.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19419,WILMK,3,2022-12-31 03:01:54,2023-01-03 12:28:05,2023-01-05 22:55:18,2,73.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19420,VICTE,5,2023-04-10 23:23:27,2023-04-16 21:18:01,2023-04-13 17:43:57,3,76.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19421,KOENE,3,2021-08-09 12:00:17,2021-08-30 02:34:47,2021-08-24 17:00:06,2,457,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19422,VALON,8,2020-04-15 17:01:40,2020-05-25 03:22:16,2020-04-17 12:16:44,1,345,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19423,THEBI,2,2012-11-10 14:15:07,2012-12-31 17:12:08,2012-11-11 02:27:12,1,278.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19424,PRINI,3,2019-12-22 10:43:37,2020-01-25 14:21:47,2019-12-23 04:51:02,3,383,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19425,GREAL,6,2014-06-25 06:45:28,2014-08-01 19:39:56,2014-06-25 23:57:02,1,116.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19426,LAMAI,4,2019-09-24 19:06:01,2019-09-27 15:17:47,2019-10-02 08:16:14,3,110.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19427,BLONP,5,2014-03-26 03:11:53,2014-04-13 00:04:12,2014-03-28 05:19:36,1,507,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19428,PARIS,9,2023-09-12 23:23:52,2023-10-26 08:43:32,2023-09-18 21:14:06,3,198,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19429,BERGS,1,2013-04-27 07:23:22,2013-05-01 04:32:10,2013-04-28 07:03:15,3,95.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19430,SPLIR,8,2012-08-03 01:11:09,2012-09-05 17:02:46,2012-08-03 22:19:26,3,227.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19431,BLAUS,8,2013-11-13 12:53:15,2013-12-08 15:03:06,2013-11-26 01:42:05,3,455.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19432,QUEEN,1,2016-09-17 06:44:05,2016-11-07 09:44:08,2016-09-17 15:49:40,2,95.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19433,QUEDE,7,2016-05-11 20:34:40,2016-05-18 20:54:38,2016-05-29 21:48:46,3,95,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19434,FAMIA,4,2022-03-07 15:56:22,2022-03-14 23:19:15,2022-03-08 12:29:19,2,119.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19435,FRANS,7,2015-11-26 12:13:05,2015-12-14 13:24:04,2015-12-01 05:38:11,1,165,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19436,RANCH,5,2013-06-06 00:26:06,2013-06-15 08:33:57,2013-06-09 09:43:36,3,179.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19437,VAFFE,7,2023-02-26 00:56:48,2023-03-17 00:46:23,2023-03-03 02:46:11,3,384,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19438,COMMI,1,2019-04-15 12:29:40,2019-05-10 18:05:31,2019-04-16 09:59:42,2,318.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19439,OCEAN,4,2014-07-09 03:36:36,2014-07-09 09:12:02,2014-07-30 07:16:47,1,10.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19440,SEVES,6,2018-07-13 02:53:48,2018-07-22 04:23:03,2018-07-16 00:52:20,1,377,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19441,NORTS,3,2023-09-01 21:14:35,2023-10-22 14:24:21,2023-09-06 17:17:32,3,356,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19442,SPLIR,9,2016-09-06 18:26:40,2016-09-18 00:42:29,2016-09-29 11:27:46,3,136.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19443,TORTU,8,2016-09-05 06:22:50,2016-10-21 09:50:46,2016-09-18 04:02:10,3,518.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19444,PERIC,2,2023-07-07 01:13:01,2023-07-17 11:09:00,2023-07-23 18:39:48,3,440,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19445,ISLAT,3,2015-02-23 16:41:40,2015-03-14 06:16:31,2015-02-26 09:27:39,1,180.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19446,VALON,5,2022-02-13 20:09:02,2022-02-17 16:34:00,2022-02-21 06:29:05,1,496.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19447,COMMI,2,2016-09-21 01:15:45,2016-10-11 23:29:58,2016-09-24 20:35:57,3,224.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19448,BLAUS,7,2018-11-05 06:52:32,2018-11-20 12:34:19,2018-11-07 01:48:49,3,331,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19449,LAMAI,6,2016-04-08 00:08:51,2016-05-09 00:57:33,2016-04-10 22:16:25,2,428.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19450,BERGS,9,2015-10-03 16:07:50,2015-11-04 20:25:28,2015-10-05 22:23:38,2,535.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19451,CACTU,3,2018-10-23 23:12:24,2018-12-01 23:39:01,2018-11-08 02:48:02,2,348.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19452,SUPRD,8,2021-07-11 17:34:51,2021-09-01 01:19:20,2021-07-21 05:34:37,3,254.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19453,VALON,1,2013-07-18 11:51:40,2013-07-25 20:13:37,2013-08-06 11:01:26,1,515.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19454,DUMON,5,2019-05-24 03:47:19,2019-05-29 19:35:36,2019-05-31 10:01:25,2,402.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19455,GOURL,8,2023-03-22 07:56:44,2023-03-30 09:31:30,2023-03-25 06:05:27,2,441.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19456,FOLKO,2,2018-09-13 08:24:17,2018-11-09 06:45:53,2018-09-22 18:37:51,2,260.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19457,FRANS,2,2017-07-28 23:19:40,2017-08-18 22:22:11,2017-08-02 16:09:01,2,176,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19458,FOLIG,1,2019-11-06 02:10:30,2019-11-16 04:31:03,2019-11-07 19:13:18,2,157.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19459,LAMAI,5,2012-12-19 23:12:54,2012-12-30 01:10:31,2012-12-27 21:16:58,1,146.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19460,ISLAT,3,2018-04-07 09:57:17,2018-05-07 14:26:57,2018-04-11 07:32:31,1,131,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19461,CONSH,4,2017-10-28 13:44:53,2017-10-29 18:58:37,2017-11-01 23:10:31,3,486.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19462,SANTG,6,2018-10-29 17:32:12,2018-11-14 12:09:28,2018-11-03 00:34:26,3,354.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19463,LONEP,4,2018-01-25 09:47:19,2018-02-15 16:47:05,2018-01-25 23:51:47,2,520,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19464,VICTE,1,2014-12-14 15:22:06,2014-12-24 19:31:37,2014-12-19 10:16:23,1,441.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19465,FISSA,4,2021-10-18 21:26:19,2021-10-22 21:36:23,2021-10-20 00:02:45,3,353.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19466,MORGK,9,2015-11-13 09:11:42,2015-12-18 07:14:42,2015-11-14 13:03:16,3,84.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19467,SEVES,9,2023-06-11 11:01:14,2023-06-19 03:13:28,2023-06-23 17:21:49,1,327.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19468,THEBI,8,2019-11-11 00:51:47,2019-11-12 02:43:34,2019-11-11 05:40:50,3,368,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19469,BOTTM,9,2015-05-26 21:55:23,2015-06-27 16:21:14,2015-05-30 00:05:56,2,379.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19470,FISSA,4,2016-06-07 01:06:38,2016-07-12 06:57:59,2016-06-16 22:00:19,3,340.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19471,CACTU,1,2013-05-04 20:58:31,2013-05-10 00:15:20,2013-05-05 02:58:45,3,320,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19472,LINOD,2,2021-07-05 08:07:27,2021-07-27 20:53:20,2021-07-27 07:25:11,1,203.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19473,GREAL,5,2016-05-31 00:30:40,2016-07-01 00:09:12,2016-06-06 07:48:36,1,240,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19474,LINOD,1,2018-01-16 12:01:34,2018-01-29 09:12:43,2018-01-21 14:28:48,3,158,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19475,ANTON,9,2022-01-04 21:55:18,2022-02-06 02:44:25,2022-01-09 13:09:05,1,306,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19476,BLONP,7,2020-07-01 16:23:03,2020-08-01 13:37:52,2020-07-07 08:45:37,3,14.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19477,VAFFE,1,2014-05-15 19:39:18,2014-06-16 02:59:08,2014-05-17 22:05:32,2,296.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19478,BSBEV,6,2013-05-09 08:30:34,2013-05-22 13:52:19,2013-06-02 22:17:02,3,63.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19479,TORTU,8,2018-08-04 07:58:56,2018-08-16 03:43:02,2018-08-07 15:52:16,1,226,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19480,BERGS,3,2020-11-03 04:47:45,2020-11-29 13:13:45,2020-11-12 11:45:15,2,18.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19481,WANDK,2,2013-06-02 14:49:44,2013-06-13 18:33:37,2013-06-20 07:08:36,2,506.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19482,ANTON,8,2017-02-10 00:04:28,2017-03-03 17:03:45,2017-02-10 01:27:10,3,108,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19483,OLDWO,7,2013-12-21 14:05:31,2014-01-07 21:47:13,2013-12-24 22:38:32,2,135.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19484,FRANS,4,2021-06-05 16:48:51,2021-06-23 12:11:24,2021-06-12 14:39:47,3,262,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19485,LETSS,4,2018-02-12 07:35:47,2018-02-16 23:03:15,2018-02-14 21:03:47,2,102.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19486,ANTON,6,2020-07-24 08:23:11,2020-07-24 13:41:29,2020-07-28 11:01:37,2,380.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19487,LAMAI,8,2015-01-02 21:59:02,2015-01-29 08:53:10,2015-01-15 16:38:31,3,322.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19488,SAVEA,8,2014-05-09 09:44:26,2014-05-13 20:33:20,2014-05-16 20:18:10,1,378.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19489,OLDWO,4,2019-09-03 04:44:10,2019-09-23 19:33:11,2019-09-07 04:16:44,2,177,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19490,RATTC,9,2017-03-24 06:55:07,2017-04-18 20:00:53,2017-03-25 02:23:34,1,207,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19491,FAMIA,1,2014-06-23 09:37:51,2014-07-24 00:52:06,2014-07-03 10:32:21,3,319.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19492,PARIS,2,2022-03-16 11:54:39,2022-03-24 23:32:50,2022-03-16 16:27:13,2,83.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19493,GREAL,9,2016-08-10 06:36:40,2016-09-01 21:36:42,2016-09-07 06:11:28,2,330,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19494,SEVES,7,2014-08-05 15:10:42,2014-09-07 01:26:32,2014-08-07 01:33:07,2,76.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19495,TORTU,1,2020-10-14 17:45:45,2020-11-23 19:54:34,2020-10-14 21:26:56,1,174,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19496,ALFKI,2,2014-12-28 10:18:28,2015-01-02 04:49:45,2015-01-04 20:11:58,2,296.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19497,AROUT,7,2019-12-28 06:50:46,2020-02-02 17:48:29,2019-12-28 10:14:00,1,379,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19498,LACOR,2,2017-10-13 03:04:14,2017-10-26 01:03:39,2017-10-13 12:01:11,3,340.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19499,BSBEV,4,2021-11-08 01:09:42,2021-12-14 10:28:02,2021-11-13 10:31:59,1,436.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19500,RICSU,3,2015-01-30 16:12:31,2015-03-09 19:33:56,2015-02-13 06:08:46,3,251,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19501,MORGK,8,2022-01-16 10:18:23,2022-02-10 04:59:49,2022-01-24 22:40:56,1,519.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19502,VAFFE,4,2016-09-21 08:08:33,2016-10-26 15:11:21,2016-09-22 15:30:14,3,373.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19503,LONEP,1,2015-03-12 19:50:14,2015-04-12 15:57:32,2015-03-16 06:28:22,3,165.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19504,FAMIA,1,2017-03-18 05:59:26,2017-03-31 19:57:38,2017-04-03 22:08:44,2,335.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19505,VALON,6,2013-05-15 18:23:18,2013-06-17 00:40:09,2013-06-04 06:42:00,3,17.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19506,CENTC,1,2019-01-18 09:25:06,2019-01-27 22:48:15,2019-02-02 13:39:15,1,313.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19507,BOLID,2,2014-07-05 22:17:51,2014-08-03 01:56:58,2014-07-12 09:06:02,1,277.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19508,BERGS,2,2013-08-12 10:52:02,2013-09-01 14:34:37,2013-08-13 07:39:59,2,294.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19509,HILAA,4,2016-11-30 03:48:05,2016-12-11 03:58:10,2016-12-06 15:04:52,3,244.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19510,Val2 ,8,2023-04-22 02:16:06,2023-06-10 03:06:25,2023-05-09 22:36:10,1,495.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19511,VALON,3,2013-04-24 23:10:05,2013-05-06 13:26:56,2013-05-19 02:09:48,3,59,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19512,RANCH,9,2013-10-15 07:21:15,2013-10-28 01:03:15,2013-10-20 17:19:51,2,166.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19513,GODOS,9,2023-02-07 07:56:34,2023-02-23 17:32:23,2023-02-14 03:18:53,1,187.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19514,LAUGB,1,2021-08-25 20:17:44,2021-09-02 23:23:58,2021-08-31 23:39:10,2,295.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19515,PICCO,1,2018-02-25 23:33:12,2018-03-17 07:16:58,2018-02-27 18:34:39,3,452.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19516,FOLIG,3,2014-03-09 01:30:25,2014-03-23 08:29:10,2014-03-09 05:50:58,1,411.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19517,WOLZA,4,2019-04-20 22:47:06,2019-05-07 20:51:01,2019-05-14 15:05:23,1,517.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19518,HUNGO,4,2021-04-17 06:28:46,2021-05-16 03:56:36,2021-05-07 05:22:51,1,139,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19519,THECR,2,2015-12-28 23:14:56,2016-02-10 07:53:35,2015-12-29 14:17:58,2,35.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19520,KOENE,3,2020-09-08 12:57:31,2020-09-11 00:16:13,2020-09-15 12:34:31,2,94.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19521,THEBI,9,2017-06-29 10:40:03,2017-07-26 02:49:35,2017-07-09 15:44:07,3,435,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19522,CENTC,5,2014-10-30 06:36:03,2014-11-14 01:32:56,2014-10-31 04:04:35,3,98.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19523,QUICK,4,2020-09-29 16:29:03,2020-10-25 12:17:08,2020-10-05 09:45:24,3,180.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19524,FRANS,8,2017-04-23 22:59:58,2017-04-27 11:39:00,2017-04-24 09:38:46,2,40,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19525,BSBEV,9,2019-05-03 04:40:34,2019-05-16 08:40:21,2019-05-03 20:05:36,3,195.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19526,QUEDE,9,2016-03-11 03:39:06,2016-04-09 05:15:16,2016-03-18 23:53:03,3,398.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19527,VALON,7,2022-09-28 23:12:15,2022-10-12 11:10:16,2022-10-04 05:18:28,1,189.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19528,BLAUS,8,2022-03-12 01:57:41,2022-03-15 06:57:41,2022-03-23 07:14:09,2,227.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19529,VAFFE,2,2022-03-29 08:24:35,2022-04-07 01:00:41,2022-03-30 01:15:33,3,150.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19530,SPLIR,9,2014-09-15 15:56:11,2014-09-27 12:02:42,2014-10-10 17:03:33,3,188.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19531,LACOR,9,2017-05-25 10:34:04,2017-05-25 19:52:32,2017-06-06 10:31:41,1,241.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19532,RATTC,1,2014-10-18 18:06:01,2014-11-03 09:02:39,2014-10-19 09:42:40,2,271.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19533,LAMAI,5,2020-04-20 11:06:33,2020-04-27 09:21:55,2020-04-21 06:17:16,3,331,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19534,VINET,1,2022-04-20 18:07:10,2022-04-22 23:10:47,2022-04-22 01:32:27,3,87.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19535,QUICK,9,2020-03-07 14:15:15,2020-04-21 04:28:55,2020-03-08 20:22:18,2,164.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19536,ANATR,1,2016-07-01 03:01:11,2016-07-06 09:35:10,2016-07-02 05:09:57,3,222.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19537,OLDWO,2,2017-10-13 02:22:45,2017-10-27 19:25:58,2017-10-16 09:59:12,1,269.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19538,SPECD,2,2020-01-19 18:55:34,2020-02-04 01:10:55,2020-01-27 05:12:47,2,181,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19539,BLAUS,1,2012-11-02 09:48:41,2012-11-14 08:26:06,2012-11-08 11:18:53,1,170.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19540,FOLIG,4,2019-05-07 04:35:46,2019-06-07 12:12:16,2019-05-11 01:54:18,3,337,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19541,HANAR,3,2023-02-06 13:02:41,2023-03-18 07:55:48,2023-02-11 04:36:18,2,458,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19542,BOTTM,5,2014-12-04 06:45:02,2014-12-15 18:31:55,2014-12-11 04:45:04,1,247.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19543,ERNSH,1,2019-08-04 20:56:55,2019-08-13 13:13:02,2019-08-22 07:41:10,1,479.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19544,PERIC,4,2015-03-03 05:31:51,2015-04-09 20:13:43,2015-03-03 16:51:25,3,418.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19545,MORGK,6,2021-08-12 18:59:11,2021-08-14 12:05:12,2021-08-19 11:28:06,2,180.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19546,ISLAT,2,2014-10-05 19:44:55,2014-10-07 05:33:06,2014-10-06 02:31:22,1,259.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19547,GOURL,1,2019-12-19 20:55:42,2020-02-08 10:05:05,2019-12-23 09:23:35,2,402.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19548,EASTC,5,2020-02-01 12:12:39,2020-02-11 11:48:22,2020-02-07 18:58:49,2,350,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19549,CONSH,7,2023-10-20 23:24:11,2023-10-21 18:56:02,2023-10-27 09:31:30,1,412.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19550,ERNSH,6,2021-11-13 11:16:18,2021-12-17 05:05:58,2021-11-13 18:47:42,1,219,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +19551,FRANS,5,2018-01-02 06:25:50,2018-02-03 06:50:00,2018-01-14 08:46:45,3,122.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19552,THECR,6,2013-10-24 02:31:58,2013-11-07 16:15:54,2013-10-31 17:04:03,1,35.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19553,WOLZA,8,2015-07-15 09:11:17,2015-07-21 22:00:38,2015-07-22 02:45:52,3,397.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19554,MORGK,7,2022-07-31 20:37:09,2022-08-11 14:33:32,2022-08-03 22:20:22,3,517.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19555,PARIS,4,2022-06-19 05:29:36,2022-07-01 20:36:17,2022-06-22 16:58:40,3,296.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19556,HANAR,9,2019-05-10 14:36:00,2019-06-10 10:20:14,2019-05-29 14:03:17,2,290.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19557,TRADH,3,2021-12-01 12:07:53,2022-01-01 15:34:23,2021-12-08 23:37:36,1,105.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19558,ANATR,9,2012-12-06 05:04:03,2012-12-20 02:48:37,2012-12-10 11:12:55,2,387.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19559,HUNGC,2,2014-11-24 16:26:19,2014-11-26 14:02:55,2014-11-26 22:13:16,3,268.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19560,FAMIA,6,2012-10-10 21:37:54,2012-11-24 01:34:07,2012-10-23 18:46:41,3,148.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19561,WHITC,6,2019-01-14 13:58:15,2019-02-06 23:24:12,2019-01-15 13:54:15,2,152,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19562,LONEP,6,2017-04-15 04:52:10,2017-04-19 04:18:03,2017-04-30 19:58:39,2,158.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19563,REGGC,6,2023-02-03 15:47:09,2023-02-14 03:09:21,2023-02-13 10:21:24,1,245.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19564,RATTC,3,2015-12-31 17:57:31,2016-01-16 18:00:54,2016-01-20 23:30:33,3,162.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19565,SUPRD,2,2019-04-15 19:17:51,2019-04-20 16:31:23,2019-04-16 11:58:30,2,88.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19566,GODOS,4,2012-09-20 22:24:48,2012-10-24 16:28:03,2012-10-18 22:17:02,2,321.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19567,OLDWO,4,2021-10-05 03:19:38,2021-11-02 05:30:51,2021-10-06 15:27:17,3,61.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19568,QUICK,2,2013-04-02 06:31:55,2013-04-08 01:48:56,2013-04-06 20:17:28,3,516.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19569,ALFKI,2,2012-12-16 21:52:46,2012-12-28 12:08:23,2012-12-18 16:21:31,1,195.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19570,PICCO,8,2020-03-22 14:44:06,2020-03-23 04:40:08,2020-04-13 17:26:01,2,450.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19571,THECR,3,2020-02-26 01:22:52,2020-03-07 19:27:49,2020-03-21 03:32:51,2,335.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19572,LEHMS,9,2014-01-18 10:05:56,2014-01-28 18:55:12,2014-01-27 19:37:16,3,42.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19573,SAVEA,1,2015-08-25 11:32:45,2015-08-31 21:04:16,2015-08-29 05:37:38,1,465,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19574,WHITC,8,2017-11-28 23:38:26,2017-11-30 11:07:39,2017-12-04 04:58:14,3,86,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19575,RANCH,3,2022-07-23 07:30:49,2022-07-31 19:20:54,2022-07-31 22:25:00,3,232.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19576,CHOPS,3,2018-03-28 16:46:20,2018-04-02 11:38:06,2018-03-31 09:15:16,1,74.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19577,RICSU,7,2013-10-12 16:11:01,2013-10-31 08:38:53,2013-10-17 10:52:57,3,473.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19578,BOTTM,1,2013-10-04 00:30:46,2013-10-13 03:12:24,2013-10-06 03:53:33,1,102.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19579,TORTU,6,2019-02-18 23:50:17,2019-02-26 22:53:50,2019-03-17 23:12:11,1,492.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19580,WHITC,9,2023-10-12 10:48:37,2023-11-05 08:42:14,2023-10-17 18:48:41,1,278.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19581,ANATR,9,2016-03-23 00:05:18,2016-04-06 10:28:14,2016-03-23 12:01:32,3,332.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19582,NORTS,5,2013-07-11 07:53:08,2013-07-22 07:58:05,2013-07-16 18:31:54,3,24,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19583,REGGC,5,2021-09-19 20:27:40,2021-10-05 06:26:02,2021-09-30 10:52:16,1,204.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19584,FAMIA,1,2018-10-02 22:48:56,2018-10-30 13:40:42,2018-10-09 08:21:53,1,67.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19585,SPLIR,1,2017-10-06 09:01:39,2017-10-20 14:29:01,2017-10-07 08:39:25,3,333.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19586,SPECD,3,2023-02-21 10:53:55,2023-02-27 01:10:03,2023-02-23 03:07:55,1,74.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19587,GREAL,4,2021-06-06 10:55:43,2021-06-11 19:39:42,2021-06-15 17:18:31,2,434.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19588,FOLKO,6,2016-09-02 23:25:20,2016-09-19 08:00:04,2016-09-05 01:07:34,3,57.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19589,QUEDE,8,2015-01-08 23:54:10,2015-01-17 13:10:20,2015-01-21 04:41:30,2,266,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19590,LEHMS,7,2019-08-07 09:20:43,2019-08-08 01:09:07,2019-08-13 13:08:08,2,487.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19591,FOLIG,4,2020-07-11 18:50:24,2020-08-02 17:41:19,2020-07-13 20:59:45,2,203.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19592,FISSA,2,2017-01-20 18:42:05,2017-02-14 10:52:00,2017-01-26 07:47:19,2,178,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19593,WILMK,6,2017-06-15 19:54:19,2017-06-25 11:04:19,2017-06-20 01:22:33,1,456.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19594,TOMSP,4,2020-04-12 06:18:54,2020-05-12 02:29:34,2020-04-17 07:54:51,1,94,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19595,VINET,8,2012-09-06 10:07:11,2012-09-22 09:42:32,2012-09-14 22:29:24,3,214.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19596,EASTC,3,2015-06-04 18:38:11,2015-06-19 11:50:17,2015-06-17 07:23:12,2,372.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19597,SANTG,8,2017-08-23 23:30:28,2017-10-11 18:24:07,2017-08-27 23:01:50,3,156.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +19598,PERIC,9,2013-04-09 09:30:33,2013-04-21 15:41:04,2013-04-11 03:53:13,3,501,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19599,PICCO,7,2020-11-18 00:51:07,2020-11-27 06:23:11,2020-12-15 20:14:40,3,340.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19600,TORTU,4,2018-01-08 02:45:20,2018-01-14 03:22:53,2018-01-25 03:22:41,2,41.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19601,DUMON,2,2013-09-21 17:50:08,2013-09-25 05:03:02,2013-09-30 02:35:50,2,456.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19602,LACOR,3,2013-04-18 20:00:10,2013-05-24 11:06:13,2013-04-26 01:43:18,2,77.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19603,SPLIR,8,2019-11-01 01:08:50,2019-11-01 12:27:00,2019-11-05 12:32:51,1,79,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +19604,BONAP,4,2017-05-12 22:21:09,2017-05-13 09:58:17,2017-05-14 20:08:52,1,394.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19605,TRAIH,4,2015-11-29 19:33:19,2015-12-01 05:51:56,2015-12-01 00:55:36,1,395,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19606,THEBI,9,2014-08-08 09:40:04,2014-08-15 16:49:04,2014-08-20 08:45:30,1,477.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19607,BERGS,4,2018-01-11 15:35:24,2018-01-26 08:35:39,2018-01-11 19:54:13,1,81,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19608,SEVES,8,2020-09-05 20:13:40,2020-10-08 09:02:37,2020-09-30 17:51:45,2,219.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19609,FISSA,7,2019-10-05 07:23:58,2019-11-01 07:59:29,2019-10-16 18:48:19,3,463.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19610,RATTC,8,2013-01-18 15:25:02,2013-02-03 16:53:17,2013-01-22 19:41:39,1,449.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19611,HUNGC,2,2020-08-03 04:03:08,2020-08-11 02:09:11,2020-08-17 09:14:22,2,335,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19612,REGGC,7,2021-01-30 10:51:24,2021-03-01 20:58:28,2021-01-31 00:29:45,2,27.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19613,SANTG,1,2017-10-17 00:34:23,2017-11-17 20:42:01,2017-11-02 21:03:19,1,391,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19614,HUNGO,7,2015-04-10 01:46:25,2015-04-30 13:55:40,2015-04-23 02:37:35,1,19,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19615,QUICK,6,2023-02-11 22:58:35,2023-02-22 16:27:41,2023-03-05 14:10:14,3,315,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +19616,BERGS,1,2021-01-03 11:31:11,2021-01-27 21:36:32,2021-01-15 08:45:27,2,458.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +19617,FAMIA,8,2022-04-24 13:36:02,2022-05-16 18:14:14,2022-04-29 14:12:38,3,441,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19618,OLDWO,5,2020-12-10 20:56:20,2020-12-15 03:42:14,2020-12-15 20:46:21,1,360,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19619,TRAIH,4,2014-02-26 04:31:22,2014-02-26 23:02:00,2014-03-12 03:21:27,3,66.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19620,FRANS,3,2022-12-07 01:27:22,2022-12-27 18:06:26,2022-12-11 05:19:49,2,161.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19621,ANATR,4,2021-11-09 02:53:13,2021-12-23 11:13:22,2021-11-13 01:38:21,2,131.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19622,TRADH,8,2022-01-12 19:58:44,2022-01-25 23:36:37,2022-01-16 06:30:28,2,395.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19623,VAFFE,1,2020-08-04 16:16:53,2020-08-16 21:57:54,2020-08-06 03:03:32,2,138.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19624,SPLIR,6,2022-07-18 22:05:07,2022-07-19 01:50:31,2022-07-24 13:27:25,3,372,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19625,BOTTM,1,2019-11-01 22:30:56,2019-11-09 07:49:13,2019-11-03 00:17:23,2,71.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +19626,DUMON,8,2023-03-13 12:51:27,2023-03-17 12:22:30,2023-03-14 08:51:22,2,111,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19627,BOLID,3,2014-12-09 21:16:14,2015-01-01 01:31:42,2014-12-10 14:59:57,3,68,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19628,TOMSP,4,2021-07-17 17:07:44,2021-07-29 05:44:45,2021-07-30 09:12:23,1,20,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19629,WHITC,5,2016-10-28 23:50:43,2016-11-03 06:59:07,2016-11-06 20:55:13,3,465.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19630,PARIS,5,2022-09-13 16:46:09,2022-10-29 16:48:02,2022-09-22 04:24:09,1,297,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19631,LAUGB,4,2018-04-28 02:56:52,2018-05-04 19:06:38,2018-05-08 20:54:09,1,385.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19632,SAVEA,4,2023-09-05 23:27:10,2023-09-13 06:47:52,2023-09-06 15:09:55,2,115.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19633,WANDK,4,2017-03-04 17:46:53,2017-03-16 11:10:59,2017-03-06 06:24:04,2,487.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19634,SIMOB,6,2021-02-02 15:04:24,2021-03-01 07:55:22,2021-02-18 06:41:25,1,365.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19635,WOLZA,8,2014-06-01 02:51:14,2014-06-16 07:28:55,2014-06-23 10:48:09,3,208,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19636,FAMIA,9,2022-11-08 06:38:55,2022-11-09 02:11:42,2022-11-24 13:22:52,2,404,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19637,PARIS,1,2023-05-15 03:56:56,2023-06-03 04:28:56,2023-05-26 17:33:24,1,147.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19638,WHITC,9,2017-12-26 21:04:09,2018-01-07 22:00:58,2018-01-01 21:53:22,2,82.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19639,FOLIG,6,2023-01-09 11:57:12,2023-02-14 05:01:17,2023-01-25 05:05:40,3,57,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19640,HANAR,9,2021-09-03 23:29:22,2021-09-23 14:18:02,2021-09-06 23:48:38,2,270.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19641,MEREP,8,2021-10-08 14:38:10,2021-10-25 01:32:41,2021-10-19 05:25:32,1,261.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19642,WELLI,5,2014-07-08 23:39:56,2014-08-17 10:22:41,2014-07-21 15:46:23,1,302,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19643,PICCO,4,2017-08-11 08:57:27,2017-08-15 22:46:19,2017-08-13 16:20:38,2,447.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19644,GOURL,6,2023-05-10 11:25:08,2023-05-11 00:40:18,2023-05-13 07:39:29,2,105.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19645,SPLIR,6,2015-10-24 21:20:13,2015-11-15 00:19:20,2015-10-29 17:14:09,1,45.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19646,FRANS,1,2013-04-05 20:05:22,2013-04-20 01:44:30,2013-04-15 09:12:27,3,182.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19647,WARTH,7,2022-03-17 00:29:43,2022-03-26 04:29:23,2022-03-31 13:20:59,1,526.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19648,TRADH,6,2014-05-17 18:01:27,2014-06-27 00:22:24,2014-05-17 20:36:31,2,59.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19649,SPECD,7,2017-02-09 10:00:33,2017-02-10 07:39:34,2017-03-01 17:16:44,2,257.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19650,HANAR,8,2013-12-14 20:00:07,2014-01-01 00:17:01,2013-12-16 04:34:45,2,410.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19651,DRACD,7,2022-04-08 13:56:20,2022-04-18 16:26:05,2022-04-17 10:25:17,3,217.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19652,HUNGO,9,2023-06-06 11:24:43,2023-06-07 08:21:43,2023-06-06 18:03:16,3,107.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19653,OTTIK,2,2013-11-12 10:56:28,2013-11-29 15:21:45,2013-11-22 11:40:56,2,78,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19654,BOTTM,9,2019-01-01 16:34:22,2019-01-18 03:19:14,2019-01-09 02:19:02,2,248.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19655,FOLKO,8,2020-01-19 07:09:43,2020-01-31 12:13:42,2020-01-30 16:30:13,1,210.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19656,THECR,1,2017-12-21 01:26:40,2018-01-21 16:36:18,2018-01-08 13:33:22,1,358.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19657,LACOR,3,2013-05-09 20:27:09,2013-05-15 05:30:00,2013-05-20 10:15:06,3,432.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19658,RICSU,5,2021-07-24 06:28:56,2021-08-07 12:45:20,2021-08-09 17:30:30,3,306.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19659,WILMK,2,2018-12-22 16:49:29,2019-01-13 16:34:36,2018-12-23 15:00:32,1,343.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19660,BERGS,6,2013-03-28 01:53:09,2013-04-07 20:13:32,2013-04-06 02:20:01,3,454.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19661,GROSR,4,2018-11-07 11:53:05,2018-11-07 23:37:38,2018-12-02 11:29:53,3,107.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19662,LAZYK,3,2013-09-28 07:50:29,2013-11-18 13:13:55,2013-10-12 13:05:13,1,46.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19663,THECR,4,2017-04-08 05:51:55,2017-05-22 04:25:54,2017-04-23 02:09:02,2,344.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19664,VINET,1,2023-07-29 03:51:26,2023-08-26 07:23:27,2023-07-30 01:56:08,1,29.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19665,SUPRD,8,2022-01-16 14:59:37,2022-02-02 14:08:49,2022-02-02 18:12:01,3,248.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19666,VAFFE,4,2018-12-30 18:05:16,2019-01-11 15:47:21,2019-01-05 02:02:20,2,366.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19667,BOTTM,2,2014-09-04 23:18:01,2014-09-27 08:30:33,2014-09-15 09:47:08,2,62.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19668,THEBI,7,2018-06-16 06:16:44,2018-07-09 06:58:47,2018-06-19 02:48:51,2,429.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19669,RATTC,6,2018-09-13 17:48:16,2018-09-23 00:02:18,2018-09-14 02:08:02,3,256.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19670,GROSR,1,2022-12-04 11:32:14,2022-12-31 03:10:52,2022-12-06 02:17:26,3,239,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19671,FOLKO,7,2013-08-12 22:17:59,2013-08-19 03:54:06,2013-09-05 13:49:42,2,55.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19672,VAFFE,1,2019-01-22 21:23:56,2019-02-23 15:12:18,2019-01-24 02:56:41,3,64.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19673,WOLZA,2,2021-04-26 20:51:39,2021-05-09 09:35:57,2021-05-07 08:39:20,3,532.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19674,Val2 ,2,2023-09-21 14:35:01,2023-10-12 04:26:43,2023-09-28 01:36:11,2,362.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19675,SIMOB,1,2015-06-12 16:52:25,2015-07-03 17:22:00,2015-06-16 01:59:18,2,285.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19676,GOURL,6,2019-01-02 22:41:33,2019-01-14 13:25:42,2019-01-06 14:30:31,1,153.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19677,HUNGO,1,2018-08-10 08:13:01,2018-09-23 01:30:35,2018-08-16 06:32:51,2,183,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19678,OCEAN,7,2019-02-11 10:40:19,2019-02-16 12:30:38,2019-02-14 01:36:27,2,194.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19679,TOMSP,3,2019-09-03 21:48:08,2019-09-17 01:46:15,2019-09-05 21:00:07,1,228.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19680,SAVEA,6,2023-02-11 11:58:27,2023-03-13 11:05:05,2023-02-24 16:13:08,2,185.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19681,FURIB,2,2020-03-17 22:12:13,2020-04-29 18:33:04,2020-03-19 18:59:23,1,93.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19682,HANAR,7,2015-03-15 07:12:10,2015-03-19 01:47:26,2015-03-23 03:21:38,1,264.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19683,BOTTM,9,2023-05-28 13:36:58,2023-07-02 20:46:53,2023-05-28 14:21:33,1,402.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19684,QUEDE,2,2021-08-23 21:54:00,2021-08-28 17:24:00,2021-08-24 01:38:21,1,227,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19685,THECR,5,2012-08-06 00:04:44,2012-09-18 21:24:22,2012-08-24 08:46:19,1,62,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19686,SUPRD,2,2019-09-03 14:32:40,2019-09-27 10:57:21,2019-09-08 05:45:48,3,141.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19687,DRACD,5,2020-05-30 15:33:52,2020-06-18 17:19:01,2020-06-20 06:20:53,2,372.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19688,TORTU,8,2019-03-11 19:03:26,2019-03-14 22:07:04,2019-03-12 09:24:15,1,237.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19689,Val2 ,8,2021-11-18 03:01:33,2021-11-23 03:07:22,2021-11-19 01:19:52,1,554,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19690,GROSR,5,2012-12-08 05:10:50,2012-12-29 07:38:36,2012-12-11 12:03:28,3,484.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19691,FRANR,1,2016-10-23 18:23:32,2016-11-15 06:23:32,2016-11-04 08:17:01,2,13.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19692,BLAUS,4,2016-08-05 07:48:47,2016-08-14 20:05:41,2016-08-11 22:05:23,3,180.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +19693,VALON,6,2015-01-26 04:37:40,2015-02-14 21:15:41,2015-01-29 17:23:31,3,494.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19694,SANTG,9,2021-02-03 09:17:10,2021-03-23 23:03:35,2021-02-27 06:21:54,3,279,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19695,GROSR,3,2017-02-02 20:30:56,2017-02-04 12:32:16,2017-02-21 14:07:46,2,258.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19696,KOENE,9,2021-04-23 08:10:04,2021-05-18 09:33:40,2021-05-18 01:23:59,3,379,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19697,SIMOB,9,2012-08-27 19:58:04,2012-08-31 19:02:06,2012-08-30 01:52:11,3,496.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19698,QUICK,8,2022-02-24 08:14:51,2022-03-10 05:24:25,2022-02-25 05:55:59,3,99.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19699,BLONP,9,2014-03-27 20:50:45,2014-04-25 08:23:37,2014-04-01 20:52:46,3,474,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19700,LAZYK,6,2018-07-11 16:06:22,2018-07-20 13:32:15,2018-07-18 01:07:21,3,340.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19701,Val2 ,8,2022-10-17 09:33:00,2022-11-08 02:55:38,2022-10-22 15:00:18,3,34.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19702,TRAIH,6,2021-12-14 05:32:19,2022-01-02 17:37:52,2021-12-16 20:09:57,2,296.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19703,MORGK,1,2012-09-30 10:51:21,2012-10-31 17:29:50,2012-10-09 06:00:35,3,453.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19704,RICAR,2,2014-08-02 17:31:46,2014-08-19 05:43:45,2014-08-06 09:23:12,3,507.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19705,LAMAI,4,2015-06-22 10:47:25,2015-07-01 10:02:43,2015-07-21 14:27:13,1,66.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19706,BOLID,9,2013-09-24 03:26:09,2013-10-12 06:41:11,2013-10-04 02:16:09,3,232.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19707,PERIC,8,2019-02-18 19:04:31,2019-03-12 07:28:37,2019-03-03 03:08:54,3,82.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19708,BLAUS,4,2013-12-22 07:09:34,2013-12-22 09:07:17,2014-01-03 15:33:52,2,391.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19709,COMMI,1,2021-11-21 16:28:55,2021-12-17 04:08:39,2021-11-22 17:35:19,2,360.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19710,TORTU,5,2015-05-01 05:31:04,2015-05-22 14:23:26,2015-05-01 11:16:48,2,507.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19711,CACTU,8,2021-07-22 04:21:31,2021-08-10 17:54:26,2021-07-25 01:07:56,1,454.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19712,HILAA,1,2021-04-07 10:01:13,2021-04-20 10:57:49,2021-04-13 12:49:01,2,102,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19713,Val2 ,5,2019-02-23 10:53:22,2019-03-03 08:41:40,2019-03-16 16:30:06,3,208.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19714,LAMAI,4,2019-07-31 21:32:47,2019-08-14 04:48:22,2019-08-21 04:01:36,3,154,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19715,TRADH,7,2018-01-14 19:24:51,2018-02-16 02:33:12,2018-02-04 00:27:47,3,257,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19716,MAGAA,6,2013-01-01 09:01:34,2013-02-16 23:48:33,2013-01-17 05:03:35,2,508,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19717,BOLID,3,2014-02-26 01:58:38,2014-03-07 02:41:20,2014-03-07 06:51:04,1,406.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19718,Val2 ,1,2014-12-01 20:51:49,2014-12-23 11:27:03,2014-12-06 12:27:21,3,480.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19719,OTTIK,1,2015-12-18 18:47:44,2015-12-24 08:24:31,2015-12-23 02:14:06,2,162.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +19720,WARTH,7,2022-06-22 21:14:22,2022-07-20 12:52:10,2022-06-26 19:14:22,3,191,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19721,PICCO,2,2022-10-07 07:30:46,2022-10-08 13:58:37,2022-10-10 03:45:37,2,463.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19722,SUPRD,5,2020-09-30 15:56:52,2020-10-05 18:08:30,2020-10-02 04:45:11,3,351.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19723,GROSR,3,2019-08-27 11:58:13,2019-09-05 23:17:26,2019-08-31 14:32:51,1,395.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19724,LACOR,2,2017-07-05 17:36:39,2017-07-19 19:03:40,2017-07-08 07:39:50,3,346.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19725,FRANK,4,2017-03-02 04:43:32,2017-03-19 07:50:45,2017-03-04 17:21:45,1,159.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19726,VALON,6,2014-10-07 01:11:00,2014-10-12 10:22:20,2014-10-08 21:14:59,1,79,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19727,PICCO,2,2016-06-07 02:25:51,2016-07-14 16:25:42,2016-06-07 10:59:25,2,94,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19728,QUEEN,7,2016-08-20 09:01:59,2016-08-27 08:17:20,2016-08-24 04:33:00,2,299,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19729,FISSA,3,2013-05-28 14:43:42,2013-05-28 19:51:55,2013-05-29 15:38:38,1,503,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19730,THECR,9,2013-11-22 03:51:12,2013-12-11 01:57:32,2013-11-30 19:31:00,2,52.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19731,THEBI,9,2021-04-09 01:38:19,2021-04-24 04:32:01,2021-04-24 08:16:27,1,96.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19732,PARIS,8,2023-02-13 11:33:36,2023-03-06 19:06:39,2023-02-15 15:09:38,2,39.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +19733,QUICK,2,2019-10-10 23:46:42,2019-10-30 14:17:20,2019-10-14 09:27:53,2,394.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19734,EASTC,9,2017-04-07 04:20:57,2017-05-03 09:27:29,2017-04-23 06:19:45,1,83.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19735,FRANR,6,2018-01-29 17:46:12,2018-02-28 07:09:59,2018-02-13 12:26:40,1,55.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19736,CHOPS,4,2020-03-07 00:05:17,2020-03-12 23:46:30,2020-03-10 05:27:45,1,230,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19737,RATTC,5,2015-06-19 08:09:35,2015-07-21 16:43:47,2015-06-21 13:01:57,3,107.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19738,BOTTM,3,2016-03-21 15:34:38,2016-04-02 23:04:38,2016-04-11 07:31:51,3,359,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19739,BSBEV,6,2019-02-05 13:37:46,2019-03-11 23:16:47,2019-02-15 11:37:10,1,18,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19740,THEBI,3,2016-09-10 20:00:15,2016-10-02 16:35:08,2016-09-19 02:28:10,2,253.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19741,GALED,9,2015-11-14 07:38:34,2015-11-29 09:49:02,2015-11-17 22:31:38,1,38.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +19742,VINET,9,2019-03-30 06:40:29,2019-04-05 08:03:58,2019-04-03 17:22:49,2,108.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19743,LETSS,1,2017-02-20 06:50:39,2017-03-06 21:02:51,2017-02-21 10:29:29,2,36.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +19744,TORTU,6,2016-06-15 22:32:16,2016-07-30 07:09:13,2016-06-17 03:23:27,3,351.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19745,BOLID,9,2019-11-08 12:18:47,2019-11-20 08:57:08,2019-11-21 22:34:02,2,368.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19746,PARIS,8,2023-10-01 20:15:14,2023-10-18 06:45:06,2023-10-06 04:45:50,2,427,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19747,SAVEA,5,2017-06-19 22:10:20,2017-07-17 02:25:43,2017-06-23 00:17:47,1,364.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19748,QUEDE,7,2023-10-17 23:12:04,2023-10-30 20:34:42,2023-10-24 02:35:53,3,166.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19749,CACTU,1,2019-08-07 07:46:36,2019-09-05 13:56:09,2019-08-21 01:26:40,3,406.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19750,ROMEY,3,2020-02-18 12:31:01,2020-03-01 06:38:28,2020-02-19 17:52:11,2,132.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19751,COMMI,9,2014-08-19 19:46:59,2014-09-11 13:51:47,2014-08-25 17:03:36,2,483.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19752,GALED,7,2017-06-23 11:27:47,2017-07-06 00:36:51,2017-06-25 23:27:17,2,307,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19753,GREAL,3,2018-11-23 00:12:12,2018-12-08 20:41:11,2018-11-26 20:53:39,3,83.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19754,OCEAN,2,2022-10-05 04:59:57,2022-11-11 06:36:22,2022-10-05 10:58:18,2,243.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19755,ANATR,1,2014-02-16 03:24:39,2014-03-10 20:28:15,2014-02-18 11:45:33,2,122.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19756,RICSU,3,2022-08-07 00:32:39,2022-08-12 15:31:41,2022-08-10 15:26:31,1,33.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19757,BERGS,5,2015-03-28 19:39:58,2015-04-22 23:28:11,2015-04-08 13:41:22,1,377.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19758,WARTH,5,2021-01-31 20:14:54,2021-02-27 21:18:37,2021-02-27 05:34:31,3,397.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19759,AROUT,2,2018-07-26 06:01:59,2018-08-26 12:30:43,2018-08-04 12:02:47,2,232.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19760,GODOS,3,2023-03-11 09:57:46,2023-03-15 20:36:09,2023-03-12 21:57:36,2,172.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19761,DUMON,3,2014-08-02 02:23:01,2014-08-16 01:23:13,2014-08-03 01:03:44,1,390.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19762,BOTTM,9,2018-02-20 08:38:01,2018-03-27 07:57:39,2018-02-20 22:45:11,3,470.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19763,HUNGC,2,2022-08-07 11:10:48,2022-08-23 00:51:03,2022-08-13 03:58:27,1,335.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +19764,PICCO,3,2013-03-03 22:10:12,2013-03-10 18:56:05,2013-03-04 00:20:18,2,391.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19765,LILAS,4,2021-02-06 12:00:08,2021-03-03 02:01:11,2021-02-27 14:55:34,1,447.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19766,HANAR,9,2020-06-27 02:23:26,2020-07-24 02:02:45,2020-07-06 10:11:42,1,90.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19767,TRAIH,3,2018-02-20 17:53:52,2018-04-07 08:42:22,2018-02-23 03:21:15,3,457,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19768,BOTTM,1,2014-10-13 08:53:41,2014-10-22 07:13:24,2014-10-22 00:43:57,2,193,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19769,CACTU,3,2014-04-25 16:45:45,2014-04-28 02:11:52,2014-04-30 18:45:41,1,286.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19770,QUEEN,2,2023-10-10 10:56:42,2023-10-20 09:51:32,2023-10-10 20:34:40,3,322.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19771,WILMK,5,2017-08-31 16:32:16,2017-10-07 01:33:55,2017-09-03 05:51:46,3,456.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19772,OCEAN,5,2022-06-17 01:33:25,2022-07-13 07:29:33,2022-07-08 10:32:14,1,423,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19773,LILAS,2,2013-05-10 07:33:39,2013-05-19 12:22:10,2013-06-05 16:37:43,1,180.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19774,VINET,7,2015-01-25 01:41:51,2015-01-31 07:35:09,2015-02-03 15:59:40,1,153,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19775,GROSR,5,2022-11-14 03:47:45,2022-11-29 23:10:36,2022-11-15 04:04:38,2,240.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19776,SPECD,9,2014-06-06 05:31:12,2014-06-30 12:27:52,2014-06-17 18:07:49,1,325,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19777,VICTE,2,2020-02-12 21:25:08,2020-03-26 09:03:23,2020-02-13 12:51:47,1,405.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +19778,SANTG,7,2013-03-02 11:01:47,2013-03-21 01:39:36,2013-03-19 04:51:02,1,331.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19779,GROSR,1,2015-01-09 16:58:16,2015-01-10 13:14:33,2015-01-20 06:25:14,1,309,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19780,OTTIK,4,2020-08-06 07:37:33,2020-08-13 15:34:03,2020-08-23 15:56:24,3,289.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19781,PRINI,9,2012-10-09 10:54:43,2012-10-23 10:17:57,2012-11-01 12:07:57,3,221.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19782,AROUT,5,2021-07-11 23:05:20,2021-07-30 11:09:24,2021-07-14 22:15:55,1,71.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19783,OTTIK,1,2019-11-03 11:43:45,2019-12-03 00:21:56,2019-11-06 04:01:14,2,73,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19784,SAVEA,9,2021-03-04 04:25:51,2021-03-15 08:10:27,2021-03-04 15:40:13,3,149.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19785,FAMIA,6,2017-05-07 16:14:46,2017-05-15 19:43:14,2017-05-09 09:47:12,3,424.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19786,FAMIA,7,2020-07-25 20:42:19,2020-08-14 00:22:11,2020-07-26 14:43:56,1,315,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19787,TOMSP,5,2018-06-22 07:42:23,2018-07-06 07:47:53,2018-07-07 15:32:04,3,220.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19788,BSBEV,4,2022-06-17 04:03:08,2022-06-23 12:37:18,2022-06-17 09:27:32,2,259.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19789,LILAS,6,2015-11-19 18:48:55,2015-11-28 13:52:23,2015-11-23 21:20:27,1,127,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19790,TORTU,4,2020-01-30 00:16:05,2020-02-08 20:55:58,2020-02-24 06:32:14,3,55.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19791,LAZYK,2,2013-02-18 21:52:20,2013-03-10 16:32:30,2013-03-07 16:11:36,2,106.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +19792,FOLIG,1,2015-04-13 18:15:49,2015-06-04 07:02:38,2015-04-19 12:58:14,2,480.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19793,QUICK,5,2016-09-05 00:47:17,2016-10-23 07:46:22,2016-09-06 21:46:13,2,440,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19794,MAGAA,1,2016-02-26 08:32:50,2016-03-03 04:17:55,2016-02-27 15:07:20,2,197.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19795,KOENE,1,2019-03-02 21:12:28,2019-03-02 21:46:21,2019-03-03 00:43:28,2,338.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19796,SPECD,2,2016-04-01 16:48:10,2016-04-20 13:23:32,2016-04-16 08:56:42,3,287.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19797,VINET,3,2017-03-22 20:03:01,2017-04-05 22:09:27,2017-03-26 12:42:53,1,285.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19798,MEREP,4,2016-08-24 01:38:57,2016-08-28 12:55:58,2016-09-04 18:09:01,3,308.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19799,GROSR,4,2019-01-16 03:50:42,2019-02-19 12:57:37,2019-01-16 05:52:40,3,395.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +19800,CHOPS,8,2023-04-11 05:41:37,2023-05-05 03:55:40,2023-04-13 08:43:37,3,266.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19801,TOMSP,2,2020-01-15 04:59:22,2020-02-11 17:17:54,2020-01-17 09:45:29,1,141.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19802,LETSS,6,2013-07-10 19:37:25,2013-07-25 15:59:11,2013-07-20 15:14:00,2,74.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19803,TRAIH,5,2015-04-18 04:48:36,2015-04-22 09:55:04,2015-04-29 20:52:22,2,229,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19804,ALFKI,9,2022-07-30 00:22:47,2022-07-30 06:24:07,2022-08-03 18:03:24,1,311,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19805,GODOS,7,2014-08-08 20:15:03,2014-08-18 14:39:22,2014-08-09 11:44:18,1,405.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19806,FRANR,8,2017-07-30 00:48:20,2017-08-16 22:39:02,2017-08-21 04:54:17,1,85.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19807,RANCH,5,2014-03-07 20:26:11,2014-03-16 10:51:10,2014-04-03 23:47:52,3,516,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19808,HUNGO,4,2022-10-16 05:42:30,2022-10-19 20:06:33,2022-10-16 23:14:34,3,221.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +19809,MORGK,3,2018-05-11 02:14:06,2018-05-13 09:20:56,2018-05-15 15:55:41,1,417.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19810,LETSS,6,2016-06-07 09:00:33,2016-06-16 15:15:39,2016-06-10 18:43:08,2,239.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19811,FOLKO,8,2021-01-04 19:14:34,2021-01-20 07:17:46,2021-01-22 23:04:16,3,498.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19812,BLONP,7,2020-10-07 19:21:50,2020-10-27 21:08:19,2020-10-24 09:38:59,3,272.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19813,SPECD,5,2014-10-07 16:05:00,2014-11-06 17:11:36,2014-10-30 11:25:18,2,109.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19814,RICAR,5,2023-09-16 21:54:23,2023-09-24 13:53:10,2023-09-21 13:42:18,1,399.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19815,VINET,3,2023-04-09 03:44:31,2023-05-01 16:04:54,2023-04-13 00:20:06,3,186.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19816,BERGS,5,2019-02-06 15:24:05,2019-03-09 21:09:44,2019-02-09 20:25:01,3,98.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19817,FOLIG,7,2013-04-10 09:58:05,2013-04-16 17:53:41,2013-04-24 03:30:55,3,292.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19818,LAUGB,1,2018-04-17 22:32:23,2018-06-05 19:44:20,2018-04-24 12:22:22,2,266.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19819,LINOD,3,2014-08-30 23:41:33,2014-09-24 21:08:18,2014-08-31 01:08:28,2,76.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19820,OCEAN,8,2016-08-04 01:07:49,2016-09-07 00:02:57,2016-08-04 16:31:20,2,401.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19821,SPLIR,2,2017-03-10 12:13:04,2017-03-19 15:53:46,2017-03-21 13:18:49,3,187.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19822,CONSH,4,2017-04-27 21:13:37,2017-05-02 13:33:50,2017-04-28 09:59:38,3,102.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19823,BLAUS,9,2018-06-21 07:44:17,2018-07-10 13:49:09,2018-06-26 12:30:59,3,364.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19824,VAFFE,8,2018-05-12 21:58:26,2018-05-17 06:06:10,2018-05-19 09:47:38,2,203.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19825,QUEEN,4,2014-09-22 12:24:37,2014-10-27 22:52:30,2014-09-23 09:13:51,3,317.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19826,THECR,3,2020-02-28 02:37:40,2020-03-06 06:52:12,2020-03-17 12:00:39,1,95,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19827,ANATR,6,2018-01-03 06:59:51,2018-01-23 21:17:21,2018-01-29 02:27:46,3,461,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19828,GODOS,7,2020-12-18 09:57:45,2020-12-28 07:41:10,2021-01-11 09:51:11,1,83.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19829,ERNSH,3,2021-06-01 02:09:31,2021-06-11 23:53:14,2021-06-01 09:38:16,3,56,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19830,LACOR,9,2022-01-27 15:32:04,2022-02-18 20:22:22,2022-01-28 23:47:51,1,408,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +19831,GALED,2,2015-02-04 23:39:52,2015-02-06 22:25:35,2015-02-08 05:20:35,2,143,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19832,BLAUS,4,2016-08-26 12:50:25,2016-09-16 03:27:46,2016-08-27 14:56:31,1,491.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19833,BSBEV,2,2019-07-12 08:11:23,2019-08-09 14:05:55,2019-07-14 14:57:57,1,492.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19834,WELLI,5,2014-06-08 04:23:37,2014-07-11 05:01:08,2014-06-10 16:45:15,2,329.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19835,FURIB,2,2012-09-14 13:40:39,2012-09-16 03:16:25,2012-09-17 10:28:53,2,408.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19836,QUICK,8,2021-10-15 02:32:36,2021-10-18 17:32:52,2021-10-30 15:19:00,1,465.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19837,QUEEN,6,2014-06-01 17:49:58,2014-06-24 13:03:07,2014-06-01 22:54:47,2,446,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19838,GODOS,4,2015-04-17 20:32:30,2015-04-20 09:48:29,2015-04-20 17:22:23,2,97.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19839,PICCO,2,2022-08-21 01:35:22,2022-09-14 00:30:09,2022-08-21 21:13:45,1,515.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +19840,SEVES,3,2020-01-09 04:36:18,2020-01-09 19:33:50,2020-01-10 18:44:30,2,463.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19841,WOLZA,7,2015-02-02 23:16:27,2015-02-19 04:27:18,2015-02-07 19:14:19,3,121.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19842,OLDWO,2,2013-11-17 18:52:55,2013-11-26 15:59:00,2013-11-21 00:01:06,1,384,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19843,BERGS,5,2023-03-11 01:15:21,2023-04-24 10:22:14,2023-03-15 01:58:23,3,51.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19844,VICTE,4,2016-02-07 09:32:13,2016-03-04 15:50:34,2016-02-10 18:12:18,1,333.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19845,CONSH,6,2017-07-10 21:52:58,2017-07-13 09:03:02,2017-07-12 07:36:24,3,88.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19846,WOLZA,7,2016-02-10 07:48:37,2016-02-11 22:30:07,2016-02-27 07:09:36,3,262.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +19847,SEVES,4,2023-06-23 04:11:09,2023-07-10 15:42:00,2023-07-08 00:55:32,1,107.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19848,WARTH,2,2015-12-21 11:10:17,2015-12-26 22:35:21,2015-12-26 03:01:00,1,105.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19849,GODOS,7,2021-07-09 13:05:51,2021-07-26 06:13:31,2021-07-22 02:49:56,3,376.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19850,FISSA,5,2015-12-10 12:55:34,2015-12-10 13:32:02,2015-12-15 00:40:34,2,481.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19851,LEHMS,5,2014-03-15 04:24:00,2014-04-25 10:30:30,2014-03-24 06:41:27,2,39.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19852,MAGAA,2,2022-04-30 15:57:01,2022-05-04 16:54:00,2022-05-05 14:10:44,3,260,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19853,QUICK,2,2022-03-30 16:15:03,2022-04-25 21:37:12,2022-04-05 21:08:24,1,46.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19854,AROUT,5,2012-07-23 10:41:56,2012-08-15 23:11:48,2012-07-23 18:20:21,2,436.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19855,QUICK,1,2020-06-13 17:41:55,2020-06-15 00:42:09,2020-06-19 09:23:42,1,195.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +19856,VALON,8,2014-09-16 01:06:49,2014-10-10 13:50:06,2014-09-19 03:35:33,2,355.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +19857,WANDK,6,2013-11-21 06:49:50,2013-11-27 19:14:28,2013-11-28 13:16:12,2,388.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19858,MEREP,1,2012-12-18 16:22:22,2012-12-28 01:19:08,2012-12-23 03:37:44,2,325.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19859,BLONP,6,2019-07-05 06:03:25,2019-07-08 19:13:01,2019-07-18 05:02:09,2,165.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19860,FURIB,9,2020-06-03 02:39:34,2020-07-02 17:34:23,2020-06-13 01:12:03,2,241,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19861,BOLID,5,2015-10-21 13:49:45,2015-11-04 11:35:03,2015-10-30 06:22:08,1,97.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +19862,HANAR,1,2013-08-24 09:09:41,2013-09-27 20:27:39,2013-09-07 03:21:56,1,335.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19863,ANATR,7,2015-03-07 21:46:45,2015-04-15 03:45:05,2015-03-17 21:46:21,1,178.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19864,LILAS,6,2019-04-23 09:32:38,2019-04-28 18:12:11,2019-04-23 23:51:32,1,181.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19865,RICAR,7,2021-10-14 20:28:04,2021-10-15 06:35:42,2021-10-16 00:41:23,3,350.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +19866,WOLZA,5,2019-07-31 03:52:26,2019-08-29 23:53:36,2019-08-06 03:51:22,1,323.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +19867,MEREP,9,2022-07-08 00:44:12,2022-07-15 02:51:07,2022-07-28 21:07:48,2,454.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +19868,HILAA,3,2014-11-12 17:22:17,2014-11-29 11:37:01,2014-11-13 13:57:11,1,131.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +19869,BSBEV,5,2019-03-04 21:03:54,2019-03-14 01:02:33,2019-03-06 07:03:21,3,21.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19870,VALON,8,2013-05-05 12:30:11,2013-05-09 19:48:13,2013-05-07 03:58:27,2,500.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +19871,CONSH,6,2017-11-10 14:22:07,2017-11-17 15:35:03,2017-11-21 04:45:03,2,366,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19872,KOENE,3,2018-12-12 18:49:49,2019-01-09 06:04:02,2018-12-13 03:26:20,3,156.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19873,GREAL,7,2013-06-09 13:20:39,2013-07-23 12:35:30,2013-06-16 01:55:38,2,372.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19874,NORTS,2,2015-07-11 08:15:33,2015-07-18 06:58:19,2015-07-20 08:37:29,1,389.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +19875,BONAP,4,2023-10-14 11:08:31,2023-11-25 07:36:22,2023-10-23 02:37:45,2,445.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +19876,EASTC,2,2013-07-13 19:24:48,2013-08-13 21:40:06,2013-07-14 22:07:50,1,119,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19877,SEVES,1,2020-01-30 13:21:43,2020-02-23 06:30:16,2020-02-16 10:31:17,3,112.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +19878,QUICK,5,2018-02-04 14:19:36,2018-03-08 19:22:44,2018-02-24 21:52:43,3,59.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +19879,VALON,9,2019-11-22 11:24:12,2019-12-29 10:01:17,2019-11-25 21:02:17,1,443,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19880,TORTU,8,2013-10-08 18:16:34,2013-10-16 22:55:28,2013-10-14 04:45:13,3,444.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +19881,DUMON,4,2019-05-18 01:21:18,2019-06-01 01:24:33,2019-05-23 22:24:19,1,330.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19882,REGGC,6,2020-03-18 01:34:46,2020-03-22 21:00:46,2020-03-21 06:00:37,3,30.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +19883,QUEEN,7,2014-10-21 19:31:00,2014-11-01 05:08:51,2014-11-08 13:02:27,1,127.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19884,GOURL,5,2018-01-26 22:03:52,2018-02-03 21:20:17,2018-01-28 07:04:29,1,251.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19885,RANCH,8,2014-10-24 21:30:23,2014-10-30 01:27:04,2014-10-24 21:55:43,1,488,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19886,FAMIA,8,2021-01-10 15:02:03,2021-01-13 17:17:26,2021-01-25 22:14:26,2,160,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19887,TRAIH,8,2023-02-13 10:34:24,2023-04-05 18:19:18,2023-02-13 12:31:02,3,142.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +19888,LETSS,7,2015-08-07 20:07:16,2015-09-02 10:59:22,2015-08-12 19:45:47,3,190,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19889,BONAP,5,2019-10-12 09:07:35,2019-11-08 12:30:27,2019-10-21 17:36:20,2,385,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19890,SUPRD,1,2014-05-17 23:36:58,2014-06-10 09:48:13,2014-06-03 21:08:29,1,143.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +19891,VALON,7,2013-04-10 15:39:04,2013-05-17 15:22:00,2013-04-13 16:16:56,1,440.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19892,ANATR,2,2022-01-10 19:04:57,2022-01-29 08:24:03,2022-01-15 21:19:42,2,29.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +19893,LACOR,5,2023-05-01 12:53:18,2023-05-10 06:38:01,2023-05-02 04:11:47,3,476.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19894,Val2 ,3,2017-03-26 20:31:16,2017-04-07 09:18:13,2017-03-31 10:26:34,3,369.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +19895,HUNGO,4,2018-06-15 11:53:24,2018-06-16 18:00:39,2018-06-20 05:39:08,1,406.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19896,QUEDE,4,2012-10-12 02:39:30,2012-11-09 14:09:49,2012-10-12 18:08:49,3,381,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19897,RICAR,2,2018-06-15 14:38:08,2018-07-22 00:58:13,2018-07-02 22:40:59,3,422.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19898,HILAA,9,2017-03-22 11:50:33,2017-04-07 03:16:36,2017-04-03 09:50:59,1,253,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +19899,WHITC,1,2015-11-28 09:14:40,2015-12-01 17:27:35,2015-12-13 10:43:25,2,115.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19900,HILAA,4,2017-09-26 21:04:18,2017-10-16 02:49:46,2017-10-17 13:10:47,3,389.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +19901,GROSR,6,2013-03-05 16:33:24,2013-04-08 16:17:10,2013-03-07 04:23:50,3,176.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +19902,WILMK,7,2023-10-13 06:57:48,2023-10-29 22:33:00,2023-10-15 02:33:05,2,38,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19903,ALFKI,1,2013-11-11 21:16:05,2013-11-28 10:12:13,2013-11-12 06:17:18,3,163.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +19904,SPECD,3,2018-01-06 01:00:39,2018-01-08 10:40:54,2018-01-10 17:09:55,1,31.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19905,BLAUS,1,2016-09-29 19:11:17,2016-10-20 19:57:24,2016-10-03 04:27:57,1,214.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19906,FOLKO,1,2020-10-16 08:23:50,2020-11-19 16:51:46,2020-10-16 22:39:26,2,257,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19907,CENTC,6,2021-04-29 16:20:39,2021-05-08 01:42:38,2021-05-28 04:55:35,1,438,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19908,ERNSH,1,2022-10-29 09:52:42,2022-11-11 18:23:19,2022-10-31 08:23:33,3,447.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +19909,DRACD,2,2012-07-25 23:14:37,2012-08-14 08:03:05,2012-08-20 17:15:12,3,201,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +19910,ANATR,2,2018-08-09 08:40:17,2018-09-23 10:12:35,2018-08-18 19:22:35,3,179.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +19911,GALED,2,2014-03-14 04:57:12,2014-05-03 01:05:29,2014-03-20 02:44:59,3,476.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19912,SPLIR,1,2023-08-19 03:32:35,2023-08-19 22:40:58,2023-08-31 08:45:55,2,421,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19913,SUPRD,3,2014-11-06 12:24:24,2014-11-23 04:27:05,2014-11-07 04:40:27,1,415.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19914,PARIS,3,2015-12-11 20:33:04,2015-12-13 04:37:43,2015-12-17 15:14:11,3,331.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +19915,WANDK,5,2020-09-25 05:53:15,2020-09-26 14:31:45,2020-09-28 10:17:16,3,445.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19916,LETSS,2,2017-07-04 20:39:22,2017-07-04 22:38:47,2017-07-13 14:48:01,1,277,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +19917,CENTC,6,2015-11-28 23:50:57,2015-12-10 05:25:17,2015-12-09 13:13:24,1,190.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19918,KOENE,2,2022-01-27 00:19:22,2022-03-08 02:24:33,2022-01-31 10:26:32,1,337.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19919,SANTG,5,2018-10-27 09:23:46,2018-11-04 16:39:36,2018-11-10 17:12:47,3,40.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +19920,SIMOB,5,2023-05-10 12:56:39,2023-06-10 01:19:55,2023-05-13 09:04:12,1,137,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19921,SIMOB,3,2015-03-18 02:46:05,2015-03-26 21:26:13,2015-03-28 19:37:47,2,145.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19922,SEVES,3,2016-07-22 00:55:06,2016-08-02 09:31:50,2016-07-28 19:10:56,1,457,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19923,GALED,3,2017-09-12 10:07:30,2017-10-20 06:39:25,2017-09-19 20:15:21,1,233.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19924,OLDWO,2,2023-04-12 03:29:46,2023-04-14 09:52:56,2023-04-19 13:22:31,2,355.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19925,SPLIR,2,2018-09-27 04:26:37,2018-10-07 01:05:30,2018-10-23 23:49:08,3,278.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +19926,WILMK,1,2014-04-01 23:19:11,2014-04-13 13:18:33,2014-04-02 07:36:02,1,142.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +19927,MEREP,3,2023-03-02 04:43:08,2023-03-12 23:07:55,2023-03-21 00:13:25,2,76.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +19928,BLAUS,1,2014-03-19 22:37:32,2014-03-31 06:10:31,2014-04-05 22:41:08,1,75.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +19929,THECR,4,2019-10-30 10:32:50,2019-11-06 20:55:32,2019-10-31 06:05:05,2,328,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +19930,EASTC,3,2015-04-09 18:03:48,2015-05-20 15:31:57,2015-04-15 17:44:22,2,455,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +19931,WELLI,3,2014-07-14 03:33:17,2014-08-24 20:10:26,2014-07-26 19:53:08,1,468.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19932,WELLI,1,2018-03-06 04:40:31,2018-04-15 00:57:20,2018-03-27 03:22:15,1,280.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19933,VICTE,8,2017-08-06 23:02:11,2017-08-18 12:39:34,2017-08-10 19:43:23,1,364.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +19934,RICSU,2,2014-07-23 23:51:05,2014-08-22 21:44:27,2014-08-08 18:39:32,1,267,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19935,GROSR,5,2017-08-08 10:21:31,2017-08-21 10:11:07,2017-08-22 05:47:51,3,289,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19936,REGGC,8,2022-02-10 12:25:45,2022-03-26 10:44:41,2022-02-18 00:58:25,3,414.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19937,QUEEN,7,2021-06-12 16:05:28,2021-06-23 04:40:19,2021-06-23 14:26:09,1,107,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19938,BSBEV,5,2021-04-12 08:15:55,2021-04-17 20:17:20,2021-04-17 07:29:07,3,362.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +19939,LONEP,6,2021-03-09 07:53:14,2021-03-09 20:48:27,2021-03-23 11:16:39,1,123.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19940,FOLIG,2,2013-10-20 17:01:08,2013-10-23 06:29:09,2013-10-25 15:59:55,3,191.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +19941,FOLKO,3,2015-06-06 08:43:48,2015-06-15 01:55:31,2015-06-19 20:31:51,3,263.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19942,BOLID,2,2021-12-24 14:37:52,2022-01-16 20:14:20,2022-01-04 20:40:07,1,275.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +19943,CONSH,5,2019-06-28 06:32:51,2019-07-08 23:54:05,2019-07-09 18:10:23,3,48,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +19944,QUEEN,6,2013-02-19 03:29:09,2013-02-20 01:41:03,2013-02-22 17:24:27,1,126.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +19945,BOLID,7,2012-09-12 04:10:40,2012-09-25 01:00:12,2012-09-23 08:06:02,1,60.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +19946,LAUGB,7,2023-09-03 18:13:15,2023-09-21 15:25:14,2023-09-06 03:12:21,2,152.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19947,ISLAT,2,2019-06-28 01:56:09,2019-07-10 15:42:23,2019-07-10 11:31:40,2,64.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +19948,BLONP,7,2018-02-12 01:28:29,2018-02-28 10:03:13,2018-02-14 00:29:49,3,429.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19949,BSBEV,2,2012-10-04 06:31:58,2012-11-03 15:32:05,2012-10-20 07:58:38,1,401,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19950,LAZYK,2,2018-06-08 16:04:13,2018-06-29 05:04:14,2018-07-02 19:12:02,2,96.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19951,ANATR,9,2017-10-02 12:07:01,2017-10-27 12:55:18,2017-10-05 08:06:08,1,263.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19952,VAFFE,1,2021-12-31 12:26:33,2022-01-01 21:03:21,2022-01-02 17:52:48,2,409,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +19953,RICAR,5,2019-12-10 16:31:26,2020-01-21 22:50:53,2019-12-27 00:41:44,3,260.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +19954,RICAR,2,2016-09-04 01:16:35,2016-10-05 20:26:13,2016-09-25 07:55:53,3,333.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +19955,SIMOB,2,2015-06-05 03:55:35,2015-07-06 00:08:39,2015-06-09 23:14:05,3,126.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19956,FISSA,8,2019-10-15 11:01:44,2019-10-25 04:25:37,2019-10-16 10:50:50,2,358,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19957,LINOD,5,2012-10-16 22:36:07,2012-10-20 02:13:13,2012-11-01 14:57:06,1,159,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19958,ALFKI,4,2019-02-13 12:10:38,2019-03-02 03:56:06,2019-03-08 11:34:53,3,125,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +19959,OCEAN,4,2015-02-13 01:31:49,2015-02-18 13:59:44,2015-02-22 04:44:30,3,233.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19960,KOENE,1,2017-11-23 04:55:21,2017-12-06 16:22:29,2017-12-04 23:52:28,1,45.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +19961,GODOS,6,2018-02-04 22:13:58,2018-03-13 23:36:05,2018-02-09 17:50:42,3,216,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19962,MAGAA,7,2023-04-22 04:04:08,2023-05-08 19:49:50,2023-04-26 18:47:10,3,59,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +19963,WARTH,6,2017-03-04 16:31:40,2017-03-10 21:45:45,2017-03-18 00:24:06,2,377.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19964,LILAS,2,2023-01-15 12:27:27,2023-01-17 06:53:30,2023-02-03 12:15:20,1,180.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +19965,LINOD,5,2022-06-04 10:24:25,2022-06-12 10:58:24,2022-06-11 22:43:11,1,326,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19966,THECR,7,2013-09-25 07:35:47,2013-09-27 06:00:56,2013-10-10 21:31:51,3,438.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +19967,HUNGC,5,2020-06-24 20:50:03,2020-07-01 11:11:28,2020-07-07 10:26:51,1,405.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +19968,CENTC,4,2022-04-12 05:40:19,2022-04-24 06:30:02,2022-04-12 08:48:57,1,358.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +19969,WOLZA,9,2014-08-08 13:04:49,2014-09-11 07:49:26,2014-08-10 14:40:46,2,148,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +19970,REGGC,6,2014-03-25 22:02:21,2014-04-17 18:42:03,2014-04-10 05:14:32,1,460.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19971,BOLID,2,2013-05-01 23:51:55,2013-05-03 19:31:52,2013-05-08 06:30:32,2,173,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +19972,THEBI,8,2016-03-05 13:37:56,2016-03-21 11:26:00,2016-03-10 01:51:01,3,196.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +19973,QUEDE,4,2022-06-11 12:10:29,2022-06-12 06:14:45,2022-06-24 01:52:41,2,359.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +19974,BLAUS,7,2017-12-26 11:47:52,2018-01-04 18:20:48,2017-12-28 12:19:45,1,406,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +19975,HILAA,9,2018-07-25 21:50:39,2018-07-31 18:03:13,2018-08-10 22:26:55,1,136.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19976,LAUGB,2,2013-12-01 00:45:31,2014-01-17 06:58:46,2013-12-05 14:40:05,3,153,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +19977,QUEDE,3,2021-10-31 18:51:21,2021-11-06 08:37:56,2021-11-01 13:25:22,2,264.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19978,HANAR,5,2014-12-10 04:29:54,2014-12-15 12:28:55,2014-12-13 03:14:57,2,486.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +19979,QUEDE,5,2023-03-13 03:00:16,2023-03-25 18:26:53,2023-03-29 08:21:42,3,280.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19980,OLDWO,1,2022-01-07 15:35:10,2022-02-09 03:23:50,2022-01-11 15:38:24,1,331.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +19981,DRACD,9,2023-09-12 11:39:55,2023-10-19 12:03:39,2023-09-12 21:33:08,2,451.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19982,Val2 ,5,2020-08-16 17:36:47,2020-08-21 02:36:20,2020-08-18 05:17:19,3,137.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +19983,BERGS,8,2022-12-30 16:00:43,2023-01-24 01:42:56,2022-12-31 10:02:09,2,202.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +19984,PICCO,1,2021-01-03 15:55:57,2021-01-30 02:09:21,2021-01-05 23:16:20,1,377.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +19985,WELLI,1,2019-03-19 06:29:47,2019-04-26 19:28:21,2019-04-06 13:03:21,1,277.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +19986,LACOR,7,2018-10-08 11:29:40,2018-10-29 07:44:41,2018-10-15 13:29:13,1,315,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +19987,QUEEN,1,2013-05-21 22:30:22,2013-07-02 06:25:56,2013-06-01 17:31:36,3,369.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +19988,DRACD,5,2013-08-16 06:57:13,2013-08-24 15:53:25,2013-08-19 03:42:59,2,279.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +19989,HUNGO,3,2012-10-07 15:10:09,2012-10-20 14:30:18,2012-10-12 07:41:59,3,228.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +19990,GALED,1,2013-12-17 04:27:49,2013-12-28 17:56:40,2013-12-20 20:38:00,3,504.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +19991,CHOPS,6,2012-11-26 19:31:54,2013-01-05 15:00:45,2012-12-01 02:27:03,1,162.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +19992,LAMAI,8,2015-10-11 05:37:03,2015-11-22 06:07:44,2015-10-17 10:27:26,3,289.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +19993,RATTC,8,2016-05-05 10:33:18,2016-05-22 12:49:48,2016-05-19 19:00:29,3,511.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19994,THECR,4,2022-12-09 11:34:45,2022-12-19 11:27:38,2022-12-23 06:41:38,3,447.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +19995,ROMEY,7,2021-04-20 00:57:22,2021-05-03 16:25:39,2021-04-23 15:40:24,3,296,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +19996,BOTTM,1,2021-09-13 01:19:40,2021-09-29 22:35:36,2021-09-14 22:11:47,1,33.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +19997,BSBEV,4,2018-06-01 01:33:44,2018-07-04 11:56:43,2018-06-10 20:17:24,1,20.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +19998,DRACD,7,2019-04-10 17:46:42,2019-04-15 14:35:40,2019-04-18 06:01:17,3,351,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +19999,TRADH,8,2013-05-25 19:33:54,2013-05-27 02:47:44,2013-06-18 14:04:43,2,385.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20000,SEVES,4,2017-04-02 07:01:27,2017-04-18 23:16:43,2017-04-07 04:13:00,3,13,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20001,FISSA,5,2019-02-08 17:44:05,2019-02-15 01:33:42,2019-02-09 04:46:56,3,254.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20002,WARTH,4,2018-12-24 17:45:47,2019-01-02 05:57:50,2018-12-25 02:30:49,3,49.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20003,EASTC,6,2015-12-16 23:11:00,2016-01-22 21:18:16,2016-01-08 03:49:37,1,417.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20004,VALON,2,2016-05-30 01:05:54,2016-06-03 05:34:18,2016-05-30 15:34:20,3,411,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20005,WARTH,9,2014-06-21 15:30:51,2014-07-28 06:58:02,2014-06-23 19:55:10,2,57.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20006,HILAA,1,2013-07-20 21:09:16,2013-08-09 05:22:30,2013-07-25 18:24:20,3,167.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20007,TRAIH,9,2014-08-03 21:08:58,2014-08-21 04:38:37,2014-08-06 02:19:25,2,30.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20008,LINOD,7,2013-02-13 03:24:11,2013-03-15 00:27:55,2013-02-13 22:40:16,2,449.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20009,GOURL,7,2021-08-19 06:32:47,2021-10-03 11:53:11,2021-09-09 04:16:30,1,381.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20010,OTTIK,8,2015-05-18 20:59:30,2015-05-21 05:15:11,2015-05-28 10:47:45,1,343,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20011,CHOPS,9,2021-07-20 15:56:52,2021-07-26 13:52:00,2021-07-21 06:34:14,1,20,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20012,FOLKO,2,2016-07-24 04:02:29,2016-08-04 22:33:30,2016-08-01 14:26:41,3,95.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20013,ALFKI,9,2017-03-07 07:00:19,2017-03-08 09:03:56,2017-03-17 17:02:36,3,120.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20014,ANATR,6,2014-06-03 14:25:28,2014-06-12 18:26:50,2014-06-09 02:11:02,2,48.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20015,HANAR,3,2020-03-20 20:40:59,2020-04-13 03:25:19,2020-03-22 03:14:03,2,314.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20016,LILAS,1,2013-11-17 01:48:04,2013-12-25 06:27:29,2013-11-19 08:39:01,2,69.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20017,THECR,9,2014-11-14 10:18:18,2014-11-27 20:36:59,2014-11-20 13:17:14,1,134,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20018,Val2 ,7,2020-10-19 15:49:22,2020-11-07 07:26:20,2020-10-29 22:32:28,1,36.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20019,SPECD,3,2019-12-19 17:16:55,2020-01-09 16:12:49,2019-12-24 11:33:09,3,406,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20020,GODOS,9,2019-05-30 08:19:18,2019-05-31 18:50:24,2019-06-02 04:42:34,1,224.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20021,EASTC,5,2022-03-20 02:13:48,2022-04-16 21:14:26,2022-03-22 17:26:16,1,149.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20022,EASTC,8,2015-05-10 08:14:52,2015-05-27 04:20:28,2015-05-10 18:12:10,2,127.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20023,SPLIR,3,2015-04-23 03:00:31,2015-05-10 06:32:52,2015-04-28 17:43:50,1,77,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20024,LILAS,2,2016-03-09 20:15:12,2016-03-17 13:57:29,2016-03-17 14:13:54,1,39.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20025,PICCO,3,2019-10-04 04:19:32,2019-10-13 21:48:54,2019-10-09 13:49:10,3,368.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20026,PRINI,2,2020-11-06 03:40:03,2020-12-20 06:17:26,2020-11-13 03:35:57,1,84.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20027,MORGK,2,2022-04-07 13:37:20,2022-05-01 03:19:12,2022-04-13 13:39:45,1,317.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20028,CHOPS,9,2014-12-12 09:09:01,2014-12-12 20:56:59,2014-12-23 23:30:46,2,207.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20029,TRAIH,2,2018-01-15 19:39:42,2018-02-06 15:40:09,2018-02-04 19:49:30,3,348.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20030,SUPRD,9,2015-08-24 01:29:19,2015-08-29 12:04:52,2015-08-28 12:58:37,2,253.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20031,HANAR,9,2021-08-08 02:20:53,2021-09-05 14:33:57,2021-08-10 07:44:03,2,156.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20032,TOMSP,8,2012-12-15 19:11:19,2013-01-07 02:45:29,2012-12-16 23:24:52,2,469.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +20033,TOMSP,7,2014-03-18 07:25:24,2014-03-21 19:24:18,2014-03-18 16:50:48,2,271.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20034,MEREP,8,2021-11-23 14:55:04,2021-11-26 14:43:46,2021-12-18 00:25:59,2,343.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +20035,QUEEN,9,2013-11-23 07:30:53,2013-11-24 21:09:00,2013-11-23 15:08:49,1,293.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20036,QUEDE,4,2012-09-26 10:13:29,2012-10-05 08:11:28,2012-10-09 10:08:43,1,194.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20037,AROUT,7,2018-08-12 11:53:56,2018-08-13 02:40:39,2018-08-13 01:18:46,2,446.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20038,TRADH,7,2023-03-27 05:21:19,2023-05-05 05:32:15,2023-03-31 17:23:52,3,475.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20039,FOLKO,1,2019-04-26 17:17:19,2019-05-31 22:12:56,2019-05-10 02:05:18,3,31.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20040,BLAUS,7,2015-06-05 23:11:59,2015-07-23 10:13:10,2015-06-11 08:01:24,2,58.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20041,GREAL,1,2016-03-17 22:27:47,2016-04-07 13:37:34,2016-03-23 05:55:59,3,156.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20042,CHOPS,1,2022-04-02 23:34:05,2022-04-20 12:49:27,2022-04-26 22:00:15,1,273.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20043,QUEEN,9,2013-03-10 00:13:24,2013-03-13 03:16:53,2013-03-23 07:36:36,3,468.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20044,PARIS,1,2023-04-02 01:59:12,2023-04-30 21:35:45,2023-04-05 15:58:59,2,437.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20045,RANCH,1,2022-12-17 07:28:47,2023-02-03 13:13:28,2022-12-20 07:17:25,2,401.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20046,FRANK,9,2015-08-13 19:10:18,2015-09-09 03:05:40,2015-08-15 02:55:59,1,389.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +20047,RANCH,7,2017-08-05 04:50:26,2017-08-05 05:34:45,2017-08-11 14:07:27,3,25.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20048,FOLIG,1,2022-01-15 08:49:48,2022-02-03 03:35:18,2022-01-29 18:46:19,3,178.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20049,LAZYK,2,2021-02-26 18:26:02,2021-04-01 17:56:12,2021-03-02 06:09:19,2,375.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20050,LEHMS,9,2017-05-05 19:50:31,2017-05-17 18:00:07,2017-05-14 15:42:37,2,275.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20051,ROMEY,6,2023-01-20 11:02:24,2023-01-23 11:16:30,2023-01-30 01:16:45,2,359.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20052,BOTTM,3,2021-05-30 08:33:58,2021-06-13 03:27:11,2021-06-16 09:50:47,1,451.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20053,WARTH,3,2016-07-14 22:30:32,2016-08-01 18:39:02,2016-07-27 05:21:36,1,244,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +20054,PICCO,6,2021-11-20 10:50:31,2021-12-09 12:35:39,2021-11-25 10:27:56,2,235.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20055,FOLIG,3,2016-09-12 17:54:58,2016-09-30 06:00:31,2016-09-14 10:07:19,2,450,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20056,LILAS,4,2017-02-12 23:46:56,2017-03-11 05:12:36,2017-02-21 19:01:05,3,371,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20057,LILAS,8,2021-01-09 12:56:29,2021-02-08 23:34:43,2021-01-10 02:44:09,1,409,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20058,WELLI,7,2022-05-23 15:23:26,2022-07-03 16:57:56,2022-06-17 17:06:38,2,104.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20059,EASTC,7,2019-05-03 15:59:39,2019-05-12 11:04:10,2019-05-07 11:19:21,3,436,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20060,GODOS,6,2012-12-14 11:01:31,2013-01-22 12:46:04,2012-12-18 23:23:17,2,390,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20061,ANATR,8,2020-01-26 14:05:34,2020-01-28 20:21:15,2020-02-04 02:21:04,3,481,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20062,MAISD,5,2014-11-06 02:54:45,2014-12-22 15:06:47,2014-11-08 01:31:28,1,320.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20063,BOLID,4,2014-08-17 08:05:09,2014-10-06 01:42:46,2014-08-30 13:25:23,1,290,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20064,NORTS,3,2023-05-23 10:11:24,2023-07-10 02:14:02,2023-06-06 08:02:59,2,54.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20065,FRANK,3,2021-03-01 18:04:13,2021-03-11 18:27:25,2021-03-18 22:06:20,2,177,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20066,COMMI,9,2013-07-11 00:34:19,2013-08-16 15:13:41,2013-07-21 19:06:49,2,351.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20067,CACTU,3,2021-08-22 14:54:06,2021-09-14 02:24:56,2021-08-26 00:49:28,2,377.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20068,WANDK,6,2013-10-06 16:38:37,2013-10-12 02:27:49,2013-10-12 08:23:02,1,125.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20069,LETSS,8,2021-05-31 03:55:33,2021-05-31 11:08:22,2021-06-01 03:25:29,3,358.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20070,LEHMS,5,2020-09-03 20:56:44,2020-09-28 22:17:06,2020-09-06 20:29:25,1,117,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20071,VICTE,1,2015-08-13 07:54:03,2015-08-19 13:42:29,2015-08-19 07:13:27,3,221,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20072,RICAR,2,2014-11-07 12:53:56,2014-11-18 07:58:59,2014-11-16 08:00:31,1,198,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20073,LAMAI,9,2021-05-02 01:01:06,2021-05-20 09:30:08,2021-05-10 21:21:44,1,231.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20074,QUICK,6,2021-06-02 19:59:36,2021-06-05 09:00:17,2021-06-13 16:31:11,2,354.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20075,RANCH,2,2018-08-07 21:46:45,2018-08-24 23:02:25,2018-08-21 13:25:18,1,103.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20076,WILMK,7,2016-03-13 09:01:20,2016-03-22 05:08:42,2016-03-19 03:25:23,1,351.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20077,SIMOB,9,2017-07-07 23:17:47,2017-07-19 06:49:06,2017-07-17 06:24:42,1,446.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20078,BOLID,9,2019-04-14 06:27:31,2019-05-03 07:14:16,2019-04-23 00:55:59,2,413.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20079,SPECD,9,2017-08-23 20:04:23,2017-09-07 08:22:00,2017-08-28 08:18:18,2,24.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20080,FOLIG,7,2014-09-19 09:51:10,2014-10-06 05:07:23,2014-09-25 06:08:12,3,46.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20081,MAISD,4,2019-10-09 04:25:37,2019-10-27 09:16:12,2019-10-27 07:09:29,1,333.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20082,LACOR,1,2015-04-13 10:05:05,2015-05-09 15:15:11,2015-04-25 08:49:12,1,436.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20083,FRANR,2,2015-03-28 11:56:22,2015-05-06 11:33:55,2015-03-31 06:30:40,1,212.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20084,LILAS,6,2014-04-01 13:22:32,2014-04-26 10:40:14,2014-04-02 09:41:10,1,331,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20085,OTTIK,3,2013-04-21 12:38:41,2013-05-01 04:30:52,2013-04-21 23:06:06,2,209,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20086,WOLZA,1,2020-09-02 12:05:28,2020-09-22 16:49:45,2020-09-20 09:15:08,3,470,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20087,LAMAI,7,2012-10-17 07:26:25,2012-11-01 05:50:22,2012-10-21 12:14:34,2,183.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20088,FRANS,9,2022-08-05 19:51:58,2022-08-17 07:54:05,2022-08-08 02:16:21,2,167.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20089,MORGK,9,2022-10-10 05:56:36,2022-10-25 17:58:38,2022-10-18 02:59:07,1,205.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20090,PICCO,7,2013-06-05 06:31:16,2013-06-15 06:44:16,2013-06-07 16:55:54,1,175,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20091,THECR,7,2020-06-22 16:41:16,2020-07-15 12:51:31,2020-07-01 11:01:14,1,246.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20092,LAMAI,4,2018-12-23 07:56:40,2019-01-05 14:45:20,2019-01-02 10:29:08,3,428.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20093,PRINI,7,2022-05-06 16:45:56,2022-06-20 10:33:16,2022-05-13 01:57:48,2,110.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20094,HUNGO,4,2020-03-15 11:17:13,2020-03-29 21:38:34,2020-04-04 08:21:55,1,225.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20095,GOURL,3,2016-04-12 08:25:27,2016-04-25 00:40:07,2016-04-13 19:48:25,3,462.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20096,CACTU,9,2016-07-26 23:55:30,2016-09-07 22:23:12,2016-08-10 19:15:43,1,253.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20097,WARTH,8,2016-11-25 20:10:33,2016-11-26 22:53:58,2016-11-29 15:01:21,3,18,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20098,LAMAI,8,2012-12-12 17:40:55,2012-12-16 06:14:12,2012-12-19 06:20:27,1,299,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20099,LETSS,5,2023-04-23 09:58:33,2023-05-20 20:12:24,2023-04-29 11:59:11,1,233.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20100,QUEEN,4,2015-11-03 13:19:34,2015-11-22 21:15:08,2015-11-18 13:49:25,1,164,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20101,VALON,3,2022-02-04 02:54:12,2022-02-06 10:41:53,2022-02-04 20:41:15,3,282.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20102,OLDWO,1,2017-12-14 01:23:09,2018-01-07 13:18:00,2017-12-16 00:06:07,1,224.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20103,LETSS,2,2021-04-17 04:46:46,2021-04-28 09:06:48,2021-04-24 23:48:40,1,444.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20104,WARTH,7,2012-08-01 16:55:30,2012-08-08 15:32:23,2012-08-03 10:25:21,2,286,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20105,TRAIH,6,2013-08-14 03:21:48,2013-09-02 03:59:45,2013-08-18 15:46:33,3,15.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20106,BOTTM,1,2012-08-01 18:56:37,2012-09-14 12:31:15,2012-08-03 18:06:13,3,514.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20107,RICAR,7,2015-01-20 17:18:52,2015-01-27 14:21:38,2015-01-30 10:12:57,3,440.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20108,KOENE,8,2012-12-29 02:06:27,2013-01-19 16:36:27,2013-01-07 05:45:43,2,132.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20109,COMMI,4,2019-04-08 01:15:56,2019-04-14 06:30:02,2019-04-28 23:47:33,2,468,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20110,HANAR,7,2022-02-24 02:17:28,2022-03-23 22:43:13,2022-02-25 06:29:49,2,265,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20111,BSBEV,2,2013-03-16 23:42:57,2013-05-08 09:49:45,2013-03-24 05:42:49,1,476.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20112,TORTU,9,2019-04-02 16:56:45,2019-04-17 08:39:14,2019-04-17 10:23:02,2,334.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20113,DUMON,4,2013-11-26 16:24:54,2013-12-24 09:11:47,2013-12-06 15:53:35,1,240.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20114,BONAP,7,2016-05-13 02:52:53,2016-06-15 21:03:23,2016-05-15 18:35:48,2,367.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20115,FOLKO,2,2019-08-02 14:50:27,2019-09-03 20:56:09,2019-08-11 11:02:42,1,272.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20116,QUICK,8,2016-05-02 15:24:27,2016-05-31 02:45:45,2016-05-09 02:22:42,3,368,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20117,CONSH,9,2013-06-06 03:39:26,2013-06-16 06:10:05,2013-06-20 15:10:38,2,207.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20118,RANCH,2,2022-11-18 01:32:19,2022-12-11 11:28:21,2022-11-22 22:08:12,3,469.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20119,WHITC,7,2022-07-24 13:05:49,2022-07-27 01:00:18,2022-07-28 13:39:55,1,192.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +20120,WOLZA,4,2019-03-09 19:40:41,2019-04-08 02:57:44,2019-03-20 10:58:35,1,391.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20121,BLONP,3,2023-06-02 17:11:27,2023-07-10 15:39:04,2023-06-07 18:43:40,3,52.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20122,DUMON,1,2014-05-30 01:20:48,2014-06-24 18:20:43,2014-05-31 00:10:59,2,159.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20123,PERIC,4,2012-12-18 09:28:15,2013-01-04 20:03:40,2012-12-19 10:13:09,1,207.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20124,LEHMS,4,2023-01-10 21:20:20,2023-02-01 13:43:01,2023-01-21 03:12:34,2,355.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20125,OTTIK,5,2014-02-11 00:15:19,2014-02-16 08:59:37,2014-02-16 18:08:07,2,288.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20126,CHOPS,3,2019-12-19 23:12:46,2020-01-16 09:30:50,2019-12-23 16:53:21,1,68.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20127,MAISD,1,2013-01-18 05:13:04,2013-01-30 12:36:30,2013-02-13 04:02:23,2,449.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20128,GROSR,5,2023-09-21 04:13:43,2023-10-07 05:57:34,2023-10-05 14:37:04,3,165.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20129,HUNGC,5,2014-05-08 06:13:11,2014-06-26 15:43:42,2014-05-09 12:53:29,2,118,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20130,MORGK,8,2021-09-03 05:26:31,2021-10-05 14:23:17,2021-09-17 09:44:25,1,34,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20131,REGGC,6,2018-12-19 06:35:14,2019-01-27 13:39:20,2018-12-19 22:33:24,3,301.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20132,RANCH,4,2017-07-21 23:46:06,2017-08-09 14:21:18,2017-07-22 05:33:31,3,375,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20133,BLAUS,7,2017-08-31 01:05:40,2017-09-22 21:49:59,2017-09-09 14:27:55,1,369.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20134,ANTON,4,2021-11-30 12:40:21,2021-12-25 08:06:46,2021-12-17 23:31:15,2,446.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +20135,TORTU,4,2019-05-28 12:31:15,2019-06-11 14:31:52,2019-05-31 11:14:02,2,268,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20136,BOLID,2,2012-08-10 10:38:23,2012-08-23 05:37:58,2012-08-11 19:11:50,2,245.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20137,KOENE,6,2015-07-23 03:30:08,2015-07-28 05:53:07,2015-07-24 10:46:57,1,385.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20138,COMMI,8,2015-10-16 08:30:13,2015-10-22 19:31:13,2015-11-12 20:09:58,2,495,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20139,BLAUS,4,2023-09-08 09:56:41,2023-10-02 15:35:58,2023-09-10 17:27:52,3,259.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20140,CHOPS,2,2022-05-05 23:21:50,2022-05-31 13:08:58,2022-05-12 17:37:34,2,20.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20141,GALED,4,2016-01-21 04:47:33,2016-03-10 20:36:14,2016-01-22 17:35:39,3,94.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20142,WANDK,9,2013-01-13 03:00:30,2013-01-24 03:20:15,2013-01-14 03:54:16,1,76.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20143,FOLIG,7,2020-12-03 14:17:44,2020-12-11 14:40:29,2020-12-13 23:07:37,2,28.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +20144,HUNGO,7,2015-08-12 02:48:13,2015-09-08 16:28:48,2015-09-02 04:19:21,2,59,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20145,TRAIH,5,2013-01-11 22:31:18,2013-01-29 05:11:58,2013-01-13 14:15:36,3,24.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20146,CONSH,7,2021-08-16 08:42:01,2021-09-02 08:30:09,2021-08-22 03:11:28,2,139.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20147,SAVEA,1,2018-10-09 14:22:05,2018-10-25 09:31:59,2018-10-10 10:41:39,1,94,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20148,ANATR,9,2019-03-06 21:27:00,2019-04-24 14:18:03,2019-03-13 12:27:44,3,295,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20149,MEREP,6,2013-01-20 05:45:30,2013-02-15 18:07:06,2013-01-20 13:52:35,2,272,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20150,BERGS,4,2014-04-25 16:37:52,2014-05-02 08:18:44,2014-05-12 10:40:26,1,42,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20151,SPLIR,9,2021-01-03 15:33:08,2021-01-15 09:15:11,2021-01-12 15:40:47,3,44.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20152,GREAL,5,2023-07-02 01:59:59,2023-07-31 18:33:00,2023-07-18 17:52:17,1,211.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20153,SEVES,9,2023-05-16 09:23:03,2023-05-17 11:26:38,2023-05-17 00:37:54,2,21,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20154,THECR,3,2020-10-20 10:37:27,2020-11-03 20:33:12,2020-10-23 12:24:31,1,206.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20155,GROSR,2,2012-12-22 20:04:45,2013-02-07 19:56:25,2013-01-08 11:25:32,3,408.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20156,HILAA,1,2016-04-24 22:18:51,2016-05-29 08:27:48,2016-04-30 13:16:16,3,76.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20157,Val2 ,9,2021-07-25 03:17:17,2021-07-25 17:47:29,2021-07-26 01:07:06,2,225.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20158,OLDWO,7,2013-10-18 15:31:31,2013-11-03 13:13:01,2013-10-18 22:23:57,3,286.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20159,RATTC,8,2018-04-01 00:27:48,2018-04-24 06:35:52,2018-04-02 08:35:38,3,401,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20160,ANTON,2,2014-12-07 10:28:44,2014-12-09 17:14:14,2014-12-31 06:38:54,2,322.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20161,DRACD,1,2012-12-28 10:56:54,2012-12-29 06:54:24,2013-01-05 11:52:03,3,93.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20162,OTTIK,2,2014-11-28 03:54:03,2014-12-16 14:38:04,2014-12-02 03:48:53,1,313.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20163,FRANR,1,2016-12-03 06:39:36,2016-12-20 21:19:06,2016-12-04 17:55:47,2,127.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20164,FURIB,3,2015-05-09 21:09:47,2015-05-13 12:16:27,2015-05-11 13:15:12,1,270.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20165,HUNGC,8,2020-08-28 23:43:49,2020-09-04 17:19:12,2020-09-17 21:30:44,1,275.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20166,LETSS,8,2022-07-22 18:13:09,2022-08-27 02:45:30,2022-07-25 15:30:14,2,164.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20167,GOURL,7,2019-06-29 18:49:42,2019-07-10 09:01:07,2019-07-06 09:58:35,2,267.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20168,HANAR,8,2013-12-10 16:34:55,2013-12-23 10:00:03,2013-12-10 17:24:46,3,266,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20169,FURIB,2,2015-11-06 09:14:26,2015-11-09 07:01:40,2015-11-18 19:46:36,1,398,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20170,VINET,5,2022-06-05 03:33:54,2022-06-18 12:44:13,2022-06-15 20:44:53,2,481.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20171,LAUGB,2,2012-11-12 21:13:23,2012-12-23 13:00:53,2012-11-17 20:31:17,3,289.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20172,LONEP,9,2017-12-02 04:59:38,2017-12-10 16:51:47,2017-12-08 06:14:51,3,177.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20173,CONSH,7,2016-12-18 06:03:04,2016-12-29 21:26:45,2016-12-22 00:37:25,2,503.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20174,RATTC,7,2019-03-07 01:27:00,2019-03-17 16:42:32,2019-03-24 14:31:20,2,416.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20175,FISSA,8,2013-05-01 21:50:24,2013-05-22 14:13:44,2013-05-02 13:43:31,3,168,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20176,RICSU,6,2020-04-06 02:07:08,2020-05-06 10:09:27,2020-04-20 11:28:37,2,407.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20177,SANTG,3,2021-04-24 13:54:56,2021-05-17 16:29:31,2021-04-26 12:12:58,2,341,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20178,KOENE,7,2021-07-18 23:42:06,2021-08-01 10:59:24,2021-07-25 05:32:35,3,422.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20179,Val2 ,8,2023-07-27 16:57:21,2023-07-29 21:07:03,2023-08-13 19:30:16,3,400.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20180,PERIC,1,2022-12-15 04:35:30,2022-12-24 01:40:07,2022-12-15 12:14:05,2,192.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20181,DRACD,2,2016-10-30 09:04:51,2016-11-27 04:47:33,2016-11-02 17:55:50,3,75.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20182,WOLZA,1,2022-08-21 15:19:23,2022-08-27 07:17:39,2022-09-10 10:45:10,2,127.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20183,FRANK,3,2022-01-18 22:00:28,2022-02-06 13:42:05,2022-01-19 12:56:04,2,338.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20184,TOMSP,4,2013-09-07 21:46:32,2013-09-20 16:43:11,2013-09-09 14:31:26,1,174.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20185,BERGS,6,2021-09-28 04:07:28,2021-10-14 15:57:26,2021-10-04 11:24:35,1,374.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20186,QUICK,3,2018-06-04 03:33:42,2018-07-07 12:25:10,2018-06-12 14:42:32,1,422.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20187,BLAUS,6,2016-12-03 01:26:24,2016-12-16 01:55:16,2016-12-07 22:07:44,1,506.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20188,WILMK,7,2013-03-11 02:20:57,2013-03-29 06:01:44,2013-03-21 17:29:48,1,460,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20189,FISSA,7,2015-10-12 23:42:37,2015-10-18 23:07:19,2015-10-15 05:22:18,1,139.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20190,LAMAI,2,2014-06-16 04:46:25,2014-07-27 22:21:11,2014-06-17 08:49:14,2,33,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20191,SEVES,9,2012-08-11 17:33:34,2012-08-20 00:02:14,2012-08-11 20:59:48,2,172,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20192,FRANK,4,2012-08-15 13:15:05,2012-08-29 20:57:30,2012-08-19 11:47:32,1,284,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20193,WOLZA,5,2013-07-07 07:43:07,2013-07-29 13:27:56,2013-07-15 21:42:15,1,125.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20194,ISLAT,9,2022-10-26 15:24:46,2022-11-25 09:33:02,2022-10-27 08:17:51,1,175.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20195,VICTE,3,2020-08-21 04:38:17,2020-09-15 19:17:49,2020-09-13 02:17:36,3,215.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20196,QUICK,8,2012-09-08 05:17:01,2012-10-14 07:24:19,2012-09-08 13:06:08,2,383.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20197,MORGK,2,2018-06-10 14:29:13,2018-07-11 21:22:00,2018-06-14 13:16:47,3,286.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20198,WARTH,5,2021-05-02 08:28:35,2021-06-03 09:21:35,2021-05-27 04:15:28,1,441.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20199,LEHMS,7,2021-12-18 22:52:11,2021-12-22 09:41:38,2021-12-22 18:42:02,2,319,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20200,FOLKO,2,2022-09-16 19:23:29,2022-09-19 14:21:47,2022-09-16 21:37:44,2,401.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20201,LONEP,3,2020-06-28 18:28:55,2020-08-19 13:18:50,2020-06-30 10:56:04,2,138.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20202,LAZYK,9,2017-07-12 18:11:13,2017-08-10 05:59:04,2017-07-22 13:32:09,3,226.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20203,GOURL,7,2012-10-13 01:32:20,2012-11-07 06:24:08,2012-10-16 18:32:19,1,359.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20204,LETSS,6,2019-01-20 19:10:07,2019-01-31 22:49:59,2019-01-27 16:05:51,1,492,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20205,RANCH,8,2017-01-17 04:24:55,2017-01-22 08:03:58,2017-02-02 13:56:19,2,142,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +20206,GALED,7,2020-08-14 10:47:51,2020-09-07 15:15:34,2020-08-26 04:00:51,2,117.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20207,NORTS,5,2022-01-04 02:22:07,2022-02-05 22:49:02,2022-01-07 06:27:13,3,422.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20208,BSBEV,3,2015-02-12 15:33:00,2015-02-20 00:06:43,2015-02-13 14:07:22,1,181.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20209,OLDWO,4,2015-10-23 02:31:14,2015-12-07 17:03:00,2015-10-26 07:20:27,2,426.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20210,BOTTM,1,2017-04-09 03:17:18,2017-04-22 13:45:59,2017-04-14 05:58:35,2,316.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20211,FRANK,4,2012-10-06 04:23:09,2012-10-11 02:12:56,2012-10-12 03:36:23,3,94.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20212,PARIS,8,2021-10-23 22:58:37,2021-10-31 21:51:40,2021-11-14 04:33:57,3,350.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20213,TRAIH,7,2013-11-22 23:16:36,2013-11-23 17:51:29,2013-12-04 09:38:08,2,217.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20214,BSBEV,1,2015-09-10 21:44:20,2015-09-13 03:21:33,2015-09-15 01:31:19,3,471,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20215,TRADH,8,2013-11-27 07:01:19,2013-12-10 05:45:55,2013-12-05 01:22:03,1,155,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20216,MEREP,9,2016-07-15 10:45:52,2016-07-18 21:45:53,2016-07-22 06:19:31,2,360.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +20217,PRINI,9,2018-03-11 06:38:39,2018-03-29 14:46:18,2018-03-19 04:05:38,1,327.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20218,MAGAA,9,2012-12-23 22:29:55,2013-01-14 18:03:51,2012-12-27 04:49:53,3,373,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20219,ROMEY,1,2019-01-18 00:31:01,2019-02-04 01:35:03,2019-01-22 16:22:16,3,306,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20220,HUNGO,2,2018-11-07 00:05:20,2018-11-19 07:25:21,2018-11-10 22:06:27,1,454.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20221,TRAIH,6,2014-01-18 16:12:23,2014-01-22 16:24:16,2014-02-02 02:58:47,3,239.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20222,LAUGB,6,2023-08-31 05:40:44,2023-09-22 05:48:49,2023-09-07 23:38:11,2,56.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20223,BOLID,1,2014-11-04 23:41:01,2014-11-10 23:32:14,2014-11-05 00:08:48,3,188.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20224,TRADH,2,2018-05-03 08:00:32,2018-05-25 01:33:10,2018-05-21 22:44:55,2,118,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20225,SANTG,2,2022-03-13 09:44:27,2022-04-28 04:14:10,2022-03-14 19:24:21,1,81.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20226,GALED,1,2022-04-07 07:07:59,2022-04-16 15:16:54,2022-04-12 15:18:24,2,325.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20227,FAMIA,1,2023-03-18 20:54:42,2023-03-26 09:47:30,2023-03-27 12:42:00,3,511,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20228,FISSA,9,2017-07-10 19:49:38,2017-08-22 19:13:35,2017-07-11 07:56:16,2,223.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20229,FRANR,8,2014-08-02 23:52:27,2014-08-12 12:44:53,2014-08-11 17:23:48,2,224.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20230,REGGC,4,2018-06-11 00:33:12,2018-06-29 14:32:46,2018-07-07 12:25:30,2,38.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20231,WOLZA,1,2019-07-16 13:46:15,2019-09-02 18:19:13,2019-07-17 20:28:01,3,192.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20232,DRACD,1,2021-08-05 00:54:47,2021-08-30 11:39:52,2021-08-20 08:53:24,3,93.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20233,PERIC,9,2016-01-06 01:31:35,2016-01-20 08:20:40,2016-01-15 08:53:00,2,183.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20234,QUEEN,7,2022-01-01 09:30:49,2022-01-09 05:32:13,2022-01-05 10:02:31,3,277.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +20235,GOURL,8,2019-10-14 10:40:38,2019-10-25 12:35:54,2019-10-18 06:49:35,2,98.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20236,LAZYK,8,2016-06-24 11:12:50,2016-06-26 03:30:02,2016-07-05 10:27:06,3,306.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20237,BOLID,9,2022-09-02 14:53:55,2022-09-27 14:55:13,2022-09-08 10:57:42,3,16,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20238,HANAR,3,2020-09-08 00:18:54,2020-10-05 13:58:55,2020-09-10 11:19:09,3,47.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20239,THECR,3,2016-04-17 06:55:47,2016-05-02 18:39:34,2016-04-27 23:40:15,1,401.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20240,BERGS,4,2019-12-06 23:14:50,2019-12-21 01:29:15,2019-12-07 06:17:53,1,30.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20241,BONAP,5,2014-02-23 12:59:21,2014-03-02 03:54:30,2014-02-25 10:11:58,2,283,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20242,VAFFE,5,2019-01-28 21:02:19,2019-02-14 19:43:46,2019-02-14 16:16:25,1,29,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20243,RATTC,7,2015-12-31 10:48:10,2016-01-23 15:05:47,2016-01-09 05:47:27,3,157.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20244,FRANS,2,2013-12-22 22:10:37,2014-01-07 22:31:01,2014-01-05 09:33:02,1,506.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20245,LILAS,8,2021-08-11 01:30:14,2021-08-21 05:29:48,2021-08-11 06:11:12,3,512.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20246,MAGAA,3,2013-05-20 21:59:42,2013-05-23 07:18:26,2013-05-27 19:26:42,2,248.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20247,CONSH,7,2022-10-10 13:41:23,2022-11-17 14:51:12,2022-10-15 08:13:41,3,129,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20248,GOURL,5,2015-10-20 02:30:38,2015-11-27 21:55:39,2015-10-25 15:32:19,2,51.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20249,VICTE,7,2016-01-25 14:58:29,2016-02-21 10:08:52,2016-02-12 15:13:42,1,73.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20250,KOENE,2,2015-08-20 14:11:53,2015-10-08 11:42:12,2015-09-17 03:03:56,2,320.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20251,FRANR,1,2014-04-21 05:49:06,2014-04-22 16:23:22,2014-04-23 09:16:46,1,425.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20252,BLAUS,3,2013-09-11 16:59:16,2013-09-14 21:44:26,2013-09-17 15:40:34,1,223.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20253,CONSH,3,2020-07-20 02:07:44,2020-07-24 18:39:28,2020-08-05 01:44:56,1,31.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20254,FOLIG,9,2019-05-09 14:37:55,2019-06-22 11:43:42,2019-05-14 07:01:12,2,287.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20255,CACTU,4,2015-02-11 02:49:59,2015-03-08 15:25:45,2015-02-11 08:25:59,2,161.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20256,ERNSH,1,2023-08-13 17:09:51,2023-08-28 23:30:37,2023-08-25 00:22:51,2,57,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20257,LILAS,2,2022-11-11 18:16:24,2022-11-29 11:11:35,2022-11-17 14:38:52,2,300.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20258,SEVES,5,2015-10-26 04:14:24,2015-11-02 12:19:47,2015-11-01 20:12:05,1,161,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20259,GREAL,3,2017-11-05 19:27:49,2017-11-21 03:57:50,2017-11-14 23:52:12,3,190,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20260,GALED,3,2022-04-13 07:45:08,2022-04-13 20:17:06,2022-04-14 18:23:12,3,174,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20261,SANTG,3,2019-02-14 02:04:04,2019-03-02 12:56:49,2019-02-15 02:08:20,3,308.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20262,SIMOB,5,2015-03-02 14:48:54,2015-04-05 10:42:13,2015-03-14 18:28:23,3,398.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20263,FOLIG,9,2017-05-09 23:47:07,2017-06-03 05:12:41,2017-05-16 12:07:04,2,358,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20264,TORTU,2,2021-07-27 15:54:10,2021-08-04 23:50:20,2021-08-03 23:43:15,1,435.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20265,RICSU,1,2016-03-28 00:27:01,2016-04-02 12:11:13,2016-03-31 11:56:05,1,204.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20266,MAISD,1,2015-04-05 09:27:02,2015-04-11 16:18:44,2015-04-07 13:32:48,2,25.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20267,HUNGC,5,2021-04-26 10:32:34,2021-06-10 20:51:31,2021-04-26 18:31:19,2,152.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20268,WILMK,4,2022-07-30 01:57:20,2022-08-16 12:31:02,2022-08-06 18:27:47,3,495.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20269,LEHMS,1,2018-09-19 14:07:37,2018-10-03 00:45:27,2018-09-23 22:43:06,2,54.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20270,MORGK,6,2013-10-22 18:26:48,2013-11-24 20:05:56,2013-11-09 04:58:14,3,504.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20271,ERNSH,1,2020-07-21 13:27:54,2020-07-29 08:43:39,2020-07-22 22:17:45,2,193.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +20272,LAMAI,5,2014-11-08 10:11:26,2014-11-12 19:11:46,2014-11-18 20:19:20,1,299.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20273,DUMON,4,2014-10-29 11:32:08,2014-12-23 01:25:43,2014-11-07 21:01:49,3,117.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20274,BLONP,5,2022-11-13 09:15:02,2022-11-24 02:27:55,2022-11-16 08:10:17,1,507.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20275,VICTE,7,2023-08-04 15:44:47,2023-08-15 07:29:32,2023-09-02 06:29:57,2,255.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20276,CONSH,4,2023-04-28 00:54:53,2023-05-13 21:45:59,2023-04-29 01:04:39,2,114.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20277,DRACD,7,2023-06-14 21:52:34,2023-06-30 01:22:42,2023-06-20 23:59:44,2,355,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20278,THECR,4,2019-08-21 19:22:57,2019-08-30 06:52:01,2019-08-22 17:43:52,3,473.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20279,THECR,3,2023-02-04 08:55:23,2023-02-14 13:37:37,2023-02-06 07:16:06,3,393,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20280,WILMK,2,2022-12-15 16:25:29,2023-02-07 17:42:33,2023-01-06 12:40:22,2,206,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20281,OTTIK,6,2018-11-12 19:24:02,2018-12-08 07:40:08,2018-11-14 15:27:07,1,167.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20282,BLONP,9,2021-12-20 13:34:41,2021-12-25 14:41:34,2021-12-29 18:12:14,2,464.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20283,CACTU,9,2015-08-04 23:49:54,2015-08-13 19:10:51,2015-08-05 05:23:16,1,327.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20284,RICAR,5,2017-01-07 10:16:15,2017-01-17 15:03:13,2017-01-08 04:41:24,2,47,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20285,TRADH,5,2014-01-27 03:33:56,2014-02-22 14:48:34,2014-01-29 00:01:44,2,112.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20286,BOLID,1,2021-05-02 08:45:02,2021-06-01 02:48:48,2021-05-04 21:44:25,2,191,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20287,GREAL,9,2020-01-15 19:23:37,2020-01-25 23:46:13,2020-01-25 22:43:52,1,88.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20288,WELLI,6,2016-06-21 06:15:01,2016-07-02 13:18:50,2016-06-28 04:04:04,1,223.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20289,DRACD,3,2016-08-18 21:03:48,2016-08-23 18:33:59,2016-08-27 02:46:00,3,451.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20290,BERGS,3,2014-11-04 10:36:06,2014-12-07 20:58:59,2014-11-22 01:07:29,3,483,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20291,LINOD,9,2019-02-19 02:43:33,2019-03-31 05:01:49,2019-03-04 03:50:38,3,74.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20292,TOMSP,6,2016-06-25 15:37:11,2016-06-30 17:36:05,2016-06-28 01:47:40,2,383,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20293,SAVEA,1,2022-03-31 22:17:51,2022-04-19 04:14:03,2022-04-08 13:50:20,2,385.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20294,FAMIA,9,2023-07-04 14:11:47,2023-07-10 13:32:33,2023-07-06 01:10:43,2,381.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20295,NORTS,9,2022-03-15 15:44:16,2022-04-27 11:48:19,2022-03-22 10:33:07,2,97.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20296,WELLI,3,2018-10-27 12:38:22,2018-12-08 08:38:05,2018-10-30 23:55:48,2,283.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20297,GROSR,3,2016-08-19 21:51:33,2016-10-08 15:54:33,2016-09-12 06:16:45,1,86.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20298,AROUT,1,2014-03-11 13:43:43,2014-03-28 22:00:04,2014-03-19 13:20:08,3,249,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20299,OTTIK,4,2020-11-14 01:10:41,2020-11-24 02:46:00,2020-11-15 13:44:02,3,313,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20300,VICTE,4,2017-05-05 22:50:24,2017-05-22 11:59:06,2017-05-08 06:35:32,2,363,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20301,CACTU,1,2015-12-16 10:01:58,2016-01-09 14:45:06,2015-12-31 18:37:55,2,332.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20302,GREAL,5,2018-02-05 01:02:05,2018-03-22 09:25:31,2018-02-12 01:36:55,3,344.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20303,GODOS,6,2015-09-07 22:19:10,2015-09-11 22:21:55,2015-09-08 03:38:02,3,19.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20304,COMMI,9,2012-09-27 11:14:51,2012-10-03 06:19:42,2012-09-30 20:24:44,3,272.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20305,TORTU,7,2017-09-19 05:33:02,2017-09-27 11:18:08,2017-09-30 20:25:42,3,314.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20306,FRANS,8,2016-10-11 00:50:10,2016-10-13 09:09:28,2016-10-17 16:32:44,2,94.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20307,ANTON,2,2015-12-28 16:21:18,2016-01-18 20:06:39,2015-12-30 22:08:45,1,454,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20308,SAVEA,3,2022-11-11 16:36:17,2022-11-13 07:45:54,2022-11-18 15:37:14,1,123.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20309,HUNGO,8,2020-09-21 10:39:17,2020-10-27 04:15:29,2020-09-21 17:16:19,2,103,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20310,PERIC,3,2021-09-30 19:20:57,2021-10-18 14:43:20,2021-10-07 10:52:43,2,372.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +20311,RICSU,4,2016-04-04 18:21:22,2016-04-26 11:01:06,2016-04-10 22:36:58,2,355.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20312,MORGK,7,2016-01-29 08:09:06,2016-03-03 05:31:43,2016-02-05 13:16:29,3,398.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20313,WILMK,5,2023-07-07 18:01:58,2023-07-26 13:21:11,2023-07-17 00:06:18,1,256,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20314,VAFFE,7,2019-07-19 23:38:56,2019-07-21 14:19:05,2019-07-21 23:45:12,2,175,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20315,MORGK,2,2017-04-15 12:24:10,2017-05-15 14:10:49,2017-04-29 09:54:28,3,383.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20316,HILAA,5,2014-11-14 17:56:22,2014-12-16 17:20:11,2014-11-26 13:45:06,2,313,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20317,GOURL,5,2017-12-19 01:25:33,2017-12-19 23:42:59,2017-12-26 11:11:45,3,164.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20318,ALFKI,6,2020-09-30 20:02:37,2020-10-03 09:01:19,2020-10-07 01:50:15,1,27.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20319,GROSR,7,2017-02-10 04:41:48,2017-03-02 11:48:25,2017-02-12 16:28:27,3,38,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20320,FOLIG,7,2015-03-04 22:50:06,2015-03-28 03:13:31,2015-03-05 13:27:40,1,323.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20321,HUNGO,9,2013-07-15 07:30:02,2013-08-13 03:14:11,2013-07-31 05:36:00,3,347.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20322,VICTE,9,2021-12-10 18:07:08,2022-01-27 06:49:00,2021-12-26 04:48:19,3,453.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20323,MEREP,1,2016-12-31 10:35:31,2017-01-01 19:00:12,2017-01-03 21:47:24,1,117.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20324,QUICK,8,2013-01-21 20:01:56,2013-01-24 21:46:47,2013-01-23 21:00:38,1,520,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20325,SIMOB,3,2013-12-22 16:52:48,2014-01-02 03:45:33,2013-12-28 05:08:50,1,289.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20326,SIMOB,1,2020-09-08 01:04:24,2020-09-08 01:48:49,2020-09-12 08:41:02,3,491.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20327,MAISD,6,2022-09-06 05:56:40,2022-10-12 20:25:16,2022-09-22 18:45:38,1,454.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20328,CENTC,1,2019-10-21 03:43:50,2019-11-07 01:24:13,2019-10-21 03:52:46,2,89.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20329,FRANS,3,2018-07-27 05:30:06,2018-08-10 20:20:33,2018-07-30 16:51:02,3,72.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20330,SUPRD,9,2018-09-12 16:48:44,2018-09-22 23:28:44,2018-09-15 13:07:14,1,476,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20331,LILAS,1,2016-04-30 04:27:27,2016-05-01 13:48:51,2016-05-12 18:04:35,3,462.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20332,GROSR,1,2020-01-10 17:50:11,2020-01-20 14:55:51,2020-01-14 00:37:22,2,438,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20333,FOLKO,8,2021-12-23 17:04:15,2021-12-24 13:17:00,2022-01-04 19:29:54,3,140.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20334,LETSS,2,2018-12-25 17:30:20,2019-01-14 20:40:33,2019-01-05 13:22:50,3,383.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +20335,BOTTM,3,2018-01-20 18:07:41,2018-02-01 07:19:17,2018-01-24 12:21:00,1,118,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20336,LEHMS,9,2017-05-02 02:08:15,2017-05-05 02:24:05,2017-05-11 10:50:14,2,199.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20337,FOLKO,7,2016-12-26 21:49:04,2017-01-08 20:55:04,2017-01-04 01:43:10,1,42,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20338,RANCH,5,2019-02-05 16:11:09,2019-03-10 11:21:36,2019-02-07 02:44:47,2,262.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20339,NORTS,9,2017-04-26 09:28:07,2017-05-31 20:41:45,2017-05-03 03:36:53,1,313.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20340,CACTU,9,2014-12-10 05:35:48,2014-12-17 05:02:27,2014-12-13 21:06:48,1,19.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20341,QUEEN,6,2013-09-09 21:24:53,2013-09-22 23:24:39,2013-09-25 04:30:28,3,338.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20342,LINOD,8,2019-03-20 18:39:33,2019-04-26 15:12:28,2019-03-24 01:35:32,2,354.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20343,LAMAI,7,2014-03-30 10:37:31,2014-04-22 18:02:17,2014-04-23 08:29:59,3,410.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +20344,BSBEV,4,2016-12-27 10:17:09,2017-01-15 10:27:01,2017-01-14 06:12:21,2,480.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20345,SEVES,6,2022-04-10 21:37:40,2022-04-30 03:05:27,2022-04-16 15:31:23,2,50.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +20346,OLDWO,5,2017-06-30 08:35:46,2017-07-01 14:51:38,2017-07-01 16:01:00,2,43,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20347,OCEAN,9,2022-02-17 10:41:04,2022-02-23 11:05:31,2022-02-20 08:11:19,1,240.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20348,BOLID,9,2015-06-28 19:46:03,2015-08-11 22:27:04,2015-07-09 13:28:29,3,188.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20349,WELLI,4,2016-10-17 18:58:47,2016-10-29 04:51:31,2016-10-23 04:38:49,2,403.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20350,ANTON,2,2013-08-05 00:21:01,2013-08-24 21:46:17,2013-08-06 09:38:37,1,414,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20351,SUPRD,7,2019-11-27 11:11:51,2020-01-03 05:06:23,2019-12-03 06:38:01,1,447.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20352,SPLIR,9,2014-09-15 08:56:56,2014-10-15 02:05:52,2014-09-16 09:18:33,1,141,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20353,LACOR,2,2017-03-01 03:36:01,2017-03-05 18:50:36,2017-03-06 13:13:07,2,83,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20354,BLONP,8,2020-01-20 19:18:58,2020-01-21 05:18:45,2020-01-24 08:11:53,1,148.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20355,CONSH,4,2016-02-17 19:40:52,2016-02-29 21:24:42,2016-02-29 09:17:11,1,462,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20356,OTTIK,8,2012-08-27 23:35:17,2012-09-20 02:51:30,2012-09-04 22:12:46,3,174.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20357,GROSR,1,2023-04-23 12:13:00,2023-05-12 17:31:17,2023-04-24 02:58:45,3,114.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20358,FAMIA,1,2016-11-23 02:39:45,2016-11-28 18:14:53,2016-12-08 22:47:16,1,400,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20359,TORTU,6,2020-07-26 08:26:57,2020-09-05 23:55:14,2020-08-07 16:07:07,2,279.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20360,QUEEN,1,2018-12-30 02:04:05,2019-01-22 06:56:58,2019-01-14 10:55:49,2,331,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20361,RANCH,6,2023-06-24 21:44:21,2023-07-14 23:33:57,2023-07-05 23:35:45,1,487.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20362,FOLIG,6,2016-09-26 02:24:31,2016-10-01 18:54:02,2016-09-28 10:43:45,1,466.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20363,WELLI,1,2016-04-14 14:21:27,2016-04-30 18:59:54,2016-04-15 14:20:48,3,107.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20364,MORGK,4,2019-05-24 11:00:56,2019-06-16 22:51:00,2019-06-03 13:29:13,3,251,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20365,GOURL,9,2018-01-11 07:43:11,2018-02-07 13:59:39,2018-01-13 08:04:10,2,236,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20366,SPECD,6,2016-01-13 04:32:41,2016-01-19 05:41:47,2016-01-25 12:46:18,1,218,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20367,ERNSH,8,2017-02-20 23:51:04,2017-03-06 11:09:22,2017-02-24 10:11:40,2,139.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20368,GODOS,5,2021-03-29 13:18:02,2021-05-11 07:48:30,2021-04-03 22:00:22,1,272.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20369,ERNSH,3,2015-04-26 19:45:45,2015-05-17 02:45:19,2015-04-29 08:40:20,1,163.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20370,FRANS,5,2017-05-29 17:08:32,2017-06-21 19:43:23,2017-06-14 09:27:53,1,149.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20371,TRADH,4,2022-01-26 04:59:49,2022-02-21 14:48:34,2022-02-05 22:07:39,1,349.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20372,BONAP,9,2021-04-07 04:35:48,2021-04-28 17:07:42,2021-04-24 13:28:24,1,449.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20373,RANCH,7,2017-03-28 02:00:05,2017-04-29 04:34:46,2017-04-12 20:28:36,3,80.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20374,AROUT,3,2014-01-09 19:28:29,2014-01-10 08:52:42,2014-01-11 08:19:38,1,181,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20375,VICTE,8,2019-07-08 23:42:43,2019-07-19 01:53:39,2019-07-09 08:35:43,1,98,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20376,FAMIA,1,2020-08-26 20:27:28,2020-08-30 12:09:18,2020-09-17 22:46:33,3,341.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20377,EASTC,3,2018-05-25 23:54:00,2018-05-30 05:31:03,2018-06-20 14:42:03,3,218.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20378,PICCO,4,2022-11-29 17:57:59,2022-12-11 17:28:21,2022-12-09 16:05:06,1,452,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20379,WOLZA,2,2013-01-15 17:45:56,2013-01-28 17:26:46,2013-01-16 14:11:08,2,194.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20380,ISLAT,8,2018-04-20 12:40:20,2018-04-22 19:08:59,2018-04-26 18:37:09,2,19.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20381,OCEAN,5,2022-01-16 20:35:37,2022-01-24 23:46:08,2022-02-06 19:46:51,2,185,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20382,FOLIG,1,2013-04-10 05:14:55,2013-05-10 05:50:09,2013-04-13 03:51:48,2,285.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20383,OCEAN,6,2014-02-11 21:10:46,2014-04-06 20:50:25,2014-02-13 19:51:18,1,432.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20384,TORTU,9,2015-01-25 01:15:35,2015-02-13 12:51:02,2015-01-25 02:50:06,1,398.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20385,FURIB,3,2014-02-09 11:03:54,2014-03-22 22:21:26,2014-02-14 17:32:56,1,32.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20386,RICAR,7,2021-07-08 16:10:03,2021-08-09 15:21:50,2021-07-26 05:49:47,2,429.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20387,LETSS,2,2013-10-13 05:44:10,2013-10-21 11:53:04,2013-11-02 00:30:19,2,114.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +20388,TRAIH,9,2019-08-06 09:21:59,2019-08-11 17:21:03,2019-08-08 20:52:08,2,42,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20389,COMMI,2,2022-07-18 05:04:35,2022-09-05 02:24:45,2022-07-25 12:25:20,3,413.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20390,KOENE,9,2020-06-21 19:04:44,2020-06-28 18:09:52,2020-06-29 09:55:39,1,389.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20391,KOENE,6,2019-01-14 03:06:15,2019-02-15 10:17:13,2019-01-20 03:37:56,3,343,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20392,FOLIG,7,2017-03-05 12:41:25,2017-03-20 05:24:46,2017-03-10 20:56:37,1,421.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20393,BERGS,4,2019-05-21 00:28:48,2019-05-21 21:16:14,2019-06-14 15:22:49,3,335.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20394,MORGK,9,2013-01-30 20:02:13,2013-02-05 10:28:01,2013-02-01 13:58:22,3,303,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20395,LAMAI,7,2017-12-29 19:55:49,2018-02-06 02:49:42,2017-12-31 03:01:18,2,244.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20396,ANATR,7,2022-02-05 02:44:21,2022-02-06 02:18:12,2022-02-14 18:30:11,3,290,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20397,BSBEV,8,2021-07-24 04:15:11,2021-07-30 08:05:28,2021-07-24 22:45:55,3,360.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20398,BLAUS,9,2013-01-03 23:10:21,2013-02-08 07:00:52,2013-01-10 10:02:11,2,79.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20399,ERNSH,3,2013-05-13 15:28:36,2013-05-23 07:03:18,2013-05-19 20:08:37,3,452.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20400,MEREP,1,2017-10-11 09:38:52,2017-11-18 19:27:46,2017-10-12 06:28:18,3,249.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20401,AROUT,1,2013-08-19 07:01:33,2013-08-28 00:00:05,2013-08-20 06:27:08,2,177.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20402,REGGC,1,2012-07-26 09:04:11,2012-08-10 10:48:25,2012-08-14 02:14:35,1,25.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20403,MAISD,6,2021-04-25 09:19:14,2021-05-17 07:34:34,2021-04-30 12:25:32,2,41.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20404,OLDWO,3,2016-09-16 17:44:25,2016-09-30 07:24:50,2016-10-08 10:19:14,2,176.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20405,NORTS,7,2017-12-26 02:43:31,2018-01-07 11:42:12,2017-12-31 07:14:49,1,145,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20406,RICSU,5,2020-03-31 18:22:01,2020-04-15 14:49:23,2020-04-13 09:37:58,2,368.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20407,BOLID,6,2021-04-25 02:10:46,2021-04-29 13:27:23,2021-05-12 08:00:48,2,108,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20408,TRAIH,5,2020-08-05 02:08:44,2020-09-04 22:13:51,2020-08-13 02:57:22,3,282,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20409,SPLIR,9,2017-10-20 02:07:59,2017-11-09 06:41:56,2017-10-27 18:07:21,1,79.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20410,QUEDE,4,2013-11-25 23:34:33,2013-12-11 11:01:37,2013-12-02 19:59:43,1,452,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20411,OLDWO,9,2023-01-29 12:12:11,2023-02-07 00:27:14,2023-02-08 09:40:37,3,407,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20412,SANTG,7,2022-02-24 23:49:35,2022-02-25 18:13:52,2022-03-04 19:42:56,3,359.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20413,ERNSH,4,2023-04-28 00:27:35,2023-05-17 17:16:23,2023-04-29 06:04:51,3,178,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20414,CHOPS,1,2015-07-12 00:32:13,2015-07-26 23:15:05,2015-07-25 18:28:18,3,130,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20415,ANATR,7,2021-03-23 15:23:46,2021-03-31 12:28:07,2021-03-30 20:08:53,1,308.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20416,NORTS,1,2013-01-30 22:02:32,2013-03-08 19:35:33,2013-02-04 07:39:02,2,338.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20417,HILAA,2,2020-09-15 02:22:48,2020-09-23 14:41:02,2020-09-17 15:38:03,3,154,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20418,ANATR,5,2023-09-07 22:35:39,2023-10-14 13:01:32,2023-09-11 07:37:26,3,333.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20419,AROUT,7,2013-03-20 15:06:16,2013-03-27 21:31:43,2013-03-31 09:41:52,2,102.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20420,BERGS,9,2020-03-14 02:57:25,2020-04-21 07:01:45,2020-03-16 10:03:16,2,90.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20421,PRINI,1,2020-06-25 08:00:36,2020-08-19 11:35:13,2020-07-12 15:51:00,2,160,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20422,CHOPS,9,2013-06-02 04:17:32,2013-07-17 19:45:07,2013-06-20 21:57:02,2,155.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20423,NORTS,1,2018-04-30 20:29:44,2018-05-27 02:20:50,2018-05-12 08:36:02,3,32.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20424,BOLID,6,2015-09-30 08:13:23,2015-11-09 07:31:44,2015-10-02 04:29:51,1,326.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20425,QUEEN,3,2013-01-15 17:11:16,2013-01-24 04:20:55,2013-01-31 13:41:28,1,332.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20426,TOMSP,5,2014-11-02 04:07:39,2014-11-18 03:14:35,2014-11-04 04:49:54,3,72.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20427,SEVES,8,2017-05-08 00:12:43,2017-05-14 17:15:37,2017-05-28 08:24:12,2,331.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20428,RICAR,4,2014-08-23 16:19:32,2014-09-09 11:44:19,2014-08-30 00:05:23,1,142.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20429,QUICK,6,2019-06-06 10:01:24,2019-07-18 13:38:11,2019-06-29 20:35:08,2,151.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20430,OLDWO,8,2015-09-19 02:32:09,2015-10-31 20:53:36,2015-09-21 01:05:46,3,345.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20431,LONEP,7,2017-08-05 19:43:01,2017-08-14 08:28:31,2017-08-24 16:59:26,3,65.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20432,GALED,9,2020-01-10 03:51:35,2020-01-10 11:28:00,2020-02-03 22:59:00,3,202.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20433,TRADH,2,2021-06-30 07:39:35,2021-07-01 09:40:03,2021-06-30 15:24:49,2,237.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20434,TOMSP,3,2014-10-03 01:03:11,2014-10-18 21:26:44,2014-10-15 20:35:28,1,255,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20435,PICCO,6,2020-08-11 14:24:12,2020-09-19 21:01:21,2020-08-12 11:17:46,2,281.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20436,LILAS,2,2019-12-26 14:02:37,2020-02-03 03:19:51,2020-01-15 04:27:37,1,12.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20437,SIMOB,8,2019-04-02 17:28:49,2019-04-05 02:11:37,2019-04-14 05:32:50,3,386.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20438,LAUGB,3,2018-10-21 19:13:06,2018-11-21 20:13:11,2018-11-05 03:03:22,3,380.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20439,PRINI,2,2019-07-14 19:02:12,2019-07-19 09:23:35,2019-07-30 07:21:44,3,478.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20440,TOMSP,4,2016-11-10 02:17:04,2016-12-07 03:37:18,2016-11-11 10:03:30,3,437,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20441,BLONP,6,2020-10-30 02:36:50,2020-11-10 13:03:48,2020-10-31 07:42:45,2,242.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20442,FRANS,1,2017-10-11 13:24:20,2017-11-09 21:52:12,2017-10-12 04:43:22,3,132.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20443,CHOPS,7,2017-03-06 03:12:24,2017-03-07 08:36:19,2017-04-02 02:09:45,2,529,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20444,AROUT,4,2017-10-15 05:03:34,2017-10-30 10:59:56,2017-11-07 04:59:26,2,433.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20445,TRADH,2,2012-08-21 05:01:19,2012-09-06 11:26:32,2012-08-25 10:57:09,3,463.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20446,Val2 ,3,2020-10-09 05:58:30,2020-10-17 13:12:09,2020-10-18 04:03:59,1,437.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20447,LINOD,2,2015-05-10 22:02:23,2015-05-26 09:12:52,2015-05-13 13:16:34,3,209,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20448,EASTC,7,2023-01-19 09:20:10,2023-01-23 15:28:19,2023-02-01 12:28:17,3,18.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20449,RICSU,9,2014-06-04 11:24:47,2014-06-11 09:44:48,2014-06-08 00:20:49,1,234,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20450,DRACD,8,2016-07-06 05:55:07,2016-07-24 10:56:54,2016-07-17 23:13:24,1,356.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20451,LILAS,5,2017-04-19 04:36:27,2017-04-21 05:51:05,2017-04-23 18:00:24,2,395.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20452,PRINI,5,2013-09-08 05:55:36,2013-10-27 14:45:46,2013-09-10 01:26:36,2,74.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20453,TRAIH,2,2012-08-06 12:00:48,2012-08-17 11:38:50,2012-08-07 06:56:22,3,454.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20454,LACOR,1,2015-09-17 23:26:19,2015-09-24 21:49:16,2015-09-20 01:30:09,1,299,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20455,HUNGO,6,2016-09-28 06:16:21,2016-10-15 14:30:00,2016-10-01 18:06:49,1,437.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20456,WANDK,5,2020-04-16 22:27:02,2020-04-20 09:51:15,2020-04-19 18:13:43,2,470.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20457,VICTE,3,2022-12-06 01:10:31,2022-12-08 05:11:35,2022-12-06 14:26:00,1,80,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20458,LONEP,5,2016-06-15 20:25:48,2016-06-17 10:11:17,2016-06-18 02:19:04,1,198.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20459,GOURL,7,2015-01-13 15:14:11,2015-02-26 09:35:22,2015-01-13 18:29:31,2,280.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20460,SPLIR,4,2020-05-27 21:44:04,2020-06-09 17:53:08,2020-05-28 20:44:01,2,205,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20461,QUEDE,7,2021-07-12 23:43:10,2021-07-23 19:40:40,2021-07-20 15:48:21,3,28.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20462,CHOPS,2,2019-08-23 04:30:20,2019-08-28 05:15:09,2019-09-13 10:29:46,1,138.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20463,LACOR,9,2019-12-23 17:54:15,2020-01-15 19:58:49,2019-12-24 04:46:05,3,189,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20464,SEVES,2,2013-07-31 13:48:06,2013-08-16 16:53:08,2013-08-02 18:51:22,2,346,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20465,EASTC,3,2021-09-01 22:25:57,2021-10-11 11:28:20,2021-09-16 17:47:22,1,21.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20466,NORTS,1,2013-07-11 19:40:34,2013-07-22 15:56:38,2013-07-13 21:11:52,1,169.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20467,LAMAI,4,2020-12-23 00:51:29,2020-12-23 10:09:12,2021-01-08 23:21:46,1,369,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20468,MEREP,7,2015-04-02 23:37:01,2015-04-04 02:58:46,2015-04-05 20:01:47,3,417.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20469,BERGS,8,2013-02-18 16:24:34,2013-02-23 18:46:06,2013-02-21 23:07:49,1,242.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20470,FRANR,8,2014-03-07 19:13:11,2014-04-02 23:55:55,2014-03-08 03:46:51,1,179.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20471,DRACD,7,2018-07-03 08:13:11,2018-07-27 05:35:14,2018-07-03 19:54:59,3,167.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20472,VICTE,6,2015-01-07 00:35:46,2015-01-27 11:57:00,2015-01-09 21:15:49,2,123.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +20473,BERGS,7,2017-05-07 16:36:39,2017-05-12 16:58:25,2017-05-12 03:44:11,3,325,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20474,FRANR,7,2017-03-24 23:09:31,2017-04-08 08:18:05,2017-03-29 08:55:56,3,288.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20475,RICAR,2,2021-09-26 19:05:10,2021-09-29 08:51:23,2021-10-16 12:40:45,1,253.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20476,LETSS,2,2014-08-21 17:11:47,2014-08-30 17:45:08,2014-09-02 08:34:59,3,313,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20477,MEREP,6,2014-06-23 09:33:55,2014-08-15 20:33:30,2014-06-25 20:43:23,2,431.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20478,ISLAT,3,2017-02-07 22:14:45,2017-04-06 02:00:18,2017-02-15 07:50:22,2,70.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20479,CONSH,1,2014-08-13 15:51:33,2014-09-06 14:28:54,2014-08-17 08:14:22,1,107,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20480,GROSR,6,2015-05-14 11:16:42,2015-05-28 21:40:54,2015-05-19 23:34:20,2,73.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20481,PICCO,9,2020-12-05 15:17:25,2020-12-06 13:50:42,2020-12-22 18:18:47,1,222.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20482,THEBI,6,2021-05-24 16:47:46,2021-05-25 05:39:36,2021-05-24 21:30:44,2,152.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20483,EASTC,1,2015-09-25 14:29:26,2015-10-16 14:16:02,2015-09-29 20:42:44,2,196,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20484,TRADH,1,2019-11-20 08:22:08,2019-12-06 17:33:57,2019-11-23 01:40:05,1,19.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20485,LETSS,6,2021-06-26 09:15:42,2021-08-02 13:15:07,2021-07-02 07:05:48,1,416.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20486,EASTC,3,2022-12-24 22:18:53,2023-01-09 16:48:59,2022-12-30 22:52:16,1,103.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20487,PICCO,1,2013-07-12 05:34:15,2013-07-16 22:26:55,2013-07-28 22:10:56,1,252.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20488,VINET,2,2015-04-07 12:03:20,2015-04-09 13:25:29,2015-04-30 22:51:16,2,160.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20489,DRACD,3,2021-07-24 21:49:43,2021-09-05 23:59:32,2021-08-06 07:25:48,3,304.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +20490,LAZYK,5,2019-06-27 10:07:25,2019-07-12 15:26:54,2019-06-28 06:42:54,3,264.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20491,RATTC,4,2015-11-08 22:32:27,2015-11-11 22:24:14,2015-11-11 08:38:03,1,52.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20492,SPLIR,7,2013-03-25 03:05:09,2013-04-12 00:00:57,2013-04-09 05:27:56,1,509.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20493,SPECD,3,2021-07-02 11:42:34,2021-08-11 08:36:44,2021-07-13 11:10:20,1,311.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20494,SANTG,3,2018-02-08 18:16:16,2018-02-13 16:20:36,2018-02-22 02:33:00,1,479,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20495,FRANR,8,2022-05-29 03:21:08,2022-06-30 20:03:07,2022-06-02 18:15:21,3,48.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20496,THECR,2,2018-02-21 00:35:47,2018-03-06 20:57:02,2018-02-21 05:25:21,3,233.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +20497,ERNSH,9,2018-05-29 09:07:27,2018-05-31 00:29:23,2018-06-01 16:49:36,3,95.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20498,FRANK,7,2018-10-23 10:23:28,2018-10-26 17:40:57,2018-10-29 21:49:37,1,178.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20499,COMMI,6,2023-08-09 03:41:22,2023-08-13 00:31:38,2023-08-16 13:00:33,1,131.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20500,GREAL,1,2021-01-08 12:38:18,2021-01-29 18:41:00,2021-01-09 04:42:36,3,392.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20501,HUNGC,2,2023-04-05 06:49:33,2023-04-18 17:50:16,2023-04-15 21:02:18,3,64.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20502,ISLAT,5,2018-11-23 12:55:45,2018-12-08 00:28:33,2018-12-06 15:09:19,3,387,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20503,QUEDE,4,2021-03-04 08:32:49,2021-03-19 19:27:36,2021-03-12 16:43:13,2,268,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20504,TRADH,2,2014-02-17 09:55:24,2014-04-03 20:40:22,2014-02-17 11:33:41,1,185.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20505,COMMI,2,2021-06-29 23:03:31,2021-07-03 12:37:34,2021-07-01 14:50:03,1,249.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20506,LEHMS,7,2013-02-07 18:16:32,2013-03-14 00:19:04,2013-02-10 07:56:36,1,376,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20507,HUNGC,8,2016-07-16 15:27:12,2016-07-17 22:23:06,2016-08-03 09:14:58,3,371.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20508,NORTS,4,2021-04-12 23:50:15,2021-05-02 20:52:05,2021-04-21 08:54:10,3,164.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20509,WELLI,8,2021-09-29 00:26:19,2021-10-22 22:41:59,2021-10-23 00:41:29,1,480.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20510,LINOD,8,2022-06-06 18:47:40,2022-07-09 06:45:57,2022-06-07 06:42:35,2,86.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20511,LETSS,3,2016-08-12 13:08:16,2016-09-03 03:31:30,2016-08-13 00:43:40,1,139,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20512,AROUT,6,2015-11-30 13:35:43,2015-12-09 02:51:41,2015-12-10 17:20:35,1,32.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20513,LEHMS,2,2019-05-11 17:09:38,2019-05-18 06:31:42,2019-06-02 10:58:30,3,382.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20514,SPLIR,1,2020-12-18 13:19:17,2021-02-02 08:52:53,2020-12-23 18:49:40,3,277.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20515,BERGS,3,2012-10-21 20:31:20,2012-10-31 03:35:53,2012-11-01 06:48:59,1,303.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20516,ROMEY,9,2015-09-10 15:39:56,2015-09-18 03:41:44,2015-09-19 18:41:59,1,507.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20517,VALON,8,2019-03-18 04:44:29,2019-04-25 01:36:06,2019-03-25 23:38:58,3,228.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20518,CACTU,1,2016-11-06 15:47:10,2016-12-12 03:55:15,2016-11-12 16:14:26,1,451,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20519,CENTC,5,2013-12-05 16:25:38,2013-12-21 05:41:29,2013-12-22 14:36:46,1,367.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20520,MAGAA,8,2017-12-18 08:00:55,2018-01-01 07:19:40,2017-12-25 00:06:51,1,464.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20521,BOTTM,1,2022-11-18 08:27:02,2022-11-30 19:47:59,2022-12-08 11:37:56,3,368.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20522,QUEDE,3,2015-01-28 22:24:35,2015-02-17 02:15:24,2015-01-29 08:48:46,3,268.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20523,OCEAN,4,2013-01-31 08:09:33,2013-02-26 21:58:22,2013-02-10 12:49:30,1,12.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20524,DUMON,2,2016-04-02 04:17:28,2016-05-18 19:08:54,2016-04-05 23:46:39,2,151.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20525,GROSR,2,2023-04-25 08:17:41,2023-05-12 20:52:15,2023-04-30 00:04:22,3,310.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20526,OTTIK,9,2023-05-10 04:15:17,2023-06-01 03:43:34,2023-05-17 04:20:12,2,374.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20527,GODOS,6,2018-05-13 01:59:26,2018-05-31 00:37:11,2018-05-17 03:25:25,1,273.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20528,WANDK,3,2020-05-16 13:47:42,2020-06-10 23:05:53,2020-05-30 10:58:42,1,339.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20529,WHITC,8,2014-11-25 20:28:24,2014-12-09 22:42:21,2014-11-27 13:11:13,2,72.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20530,BONAP,8,2016-11-21 23:41:47,2016-11-24 22:15:07,2016-12-07 17:15:03,2,115.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20531,RICSU,6,2020-07-06 15:00:14,2020-07-10 21:52:13,2020-07-16 10:39:25,2,203,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20532,GREAL,3,2016-02-29 10:40:22,2016-04-07 05:38:02,2016-03-11 12:34:03,1,437.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20533,RICSU,1,2020-09-08 02:17:23,2020-09-09 16:47:00,2020-09-30 18:21:25,2,402.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20534,PICCO,8,2020-02-28 11:02:21,2020-03-14 01:34:58,2020-02-28 16:28:40,1,117.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20535,VINET,6,2016-02-20 23:26:16,2016-03-13 17:28:28,2016-02-23 02:09:52,1,171.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20536,CONSH,4,2022-04-07 08:29:34,2022-05-16 23:41:53,2022-04-07 16:24:14,2,217.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20537,BLAUS,3,2019-09-21 20:20:58,2019-09-25 03:53:05,2019-10-12 13:19:01,2,31,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20538,BSBEV,1,2019-01-02 22:36:31,2019-01-18 18:57:10,2019-01-11 14:48:44,1,59,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20539,SAVEA,8,2016-04-22 00:08:27,2016-05-09 09:17:05,2016-04-23 00:02:46,1,443.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20540,HUNGO,1,2015-05-10 21:26:10,2015-05-14 07:32:50,2015-05-27 23:43:26,3,159.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20541,QUICK,1,2023-04-04 21:18:03,2023-05-31 18:10:56,2023-04-14 01:03:10,2,250.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20542,EASTC,2,2012-11-11 22:02:46,2012-11-13 22:58:32,2012-11-14 17:59:31,3,90.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20543,ROMEY,5,2017-12-22 23:56:20,2017-12-28 12:05:22,2018-01-04 18:28:20,3,438.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20544,THEBI,5,2013-05-12 22:56:17,2013-05-30 18:44:45,2013-05-16 17:08:16,3,73.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20545,MORGK,9,2017-06-21 09:35:19,2017-07-30 21:28:12,2017-06-23 21:51:08,2,273.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20546,OCEAN,7,2015-03-31 19:58:55,2015-04-20 04:55:43,2015-04-12 13:05:13,2,128.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20547,RANCH,4,2013-04-28 07:44:41,2013-05-13 23:01:30,2013-05-03 22:29:07,1,387.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20548,SPECD,7,2018-02-06 15:40:57,2018-03-08 04:54:38,2018-02-06 17:29:24,2,428.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20549,CONSH,6,2020-01-15 07:13:15,2020-03-06 01:17:25,2020-01-21 07:45:57,2,83.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +20550,GROSR,9,2017-11-06 04:20:40,2017-12-17 10:10:05,2017-11-06 18:36:02,3,217.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20551,FRANK,8,2015-11-30 00:37:17,2015-12-16 02:44:42,2015-11-30 05:10:49,2,78.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20552,Val2 ,4,2019-04-27 07:32:01,2019-06-10 03:01:09,2019-05-23 12:32:05,3,133.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20553,SUPRD,1,2019-10-11 05:45:19,2019-11-25 05:23:45,2019-10-19 09:16:16,1,160,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20554,SAVEA,9,2015-01-14 02:53:01,2015-02-06 21:18:08,2015-01-19 02:20:15,1,306.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20555,LEHMS,2,2019-12-20 00:32:08,2019-12-29 11:47:49,2019-12-31 07:18:23,3,459.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20556,FISSA,5,2018-05-22 10:38:56,2018-06-07 13:21:46,2018-05-23 19:44:09,2,245.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20557,GODOS,4,2016-03-23 13:54:22,2016-04-11 03:41:20,2016-04-01 20:29:05,3,235.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20558,TORTU,6,2015-08-30 08:14:32,2015-09-17 02:04:48,2015-09-18 10:34:07,1,508.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20559,GALED,7,2021-04-04 07:42:00,2021-04-13 11:21:56,2021-04-08 13:05:13,1,27,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20560,GOURL,5,2018-06-10 19:39:09,2018-06-18 23:55:01,2018-06-28 08:55:58,3,316.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20561,QUEDE,8,2020-09-15 14:35:20,2020-10-18 02:37:21,2020-09-18 04:56:02,3,369,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +20562,GOURL,3,2023-10-13 22:45:27,2023-10-20 01:08:50,2023-10-16 21:15:01,1,95.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20563,VAFFE,7,2019-11-14 18:05:06,2019-11-14 20:37:24,2019-12-07 13:30:11,2,473.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20564,OLDWO,8,2020-11-25 16:31:35,2020-12-18 23:42:21,2020-11-30 08:25:56,1,79.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20565,SPLIR,6,2020-04-06 09:31:17,2020-05-11 12:59:54,2020-04-29 07:33:30,1,337.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20566,ERNSH,1,2020-05-31 04:50:21,2020-06-12 01:18:54,2020-06-02 21:19:35,3,53,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20567,LETSS,1,2017-11-20 07:44:03,2017-11-26 17:02:57,2017-11-24 13:56:27,3,270.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20568,COMMI,9,2017-10-09 18:50:11,2017-10-10 03:42:10,2017-10-09 22:52:58,1,386.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20569,SPLIR,8,2021-01-07 13:11:13,2021-01-11 19:07:03,2021-01-21 22:11:36,3,340.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20570,WELLI,5,2023-02-25 15:06:25,2023-02-28 23:52:49,2023-02-26 13:25:00,2,215.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20571,TRAIH,8,2019-07-30 19:31:51,2019-08-06 06:46:55,2019-08-01 16:09:56,2,443.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20572,MORGK,8,2021-02-04 16:07:13,2021-03-07 13:56:07,2021-02-07 18:07:23,2,341.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20573,BLAUS,5,2022-06-22 02:15:26,2022-06-25 13:42:20,2022-07-16 19:38:07,2,261.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20574,MAGAA,9,2021-08-24 01:56:56,2021-09-09 07:39:31,2021-08-30 19:11:44,2,15.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20575,VINET,9,2016-12-12 07:59:39,2016-12-17 01:17:02,2016-12-27 14:03:35,2,339,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20576,LETSS,5,2020-08-27 03:32:31,2020-09-11 09:48:33,2020-08-31 13:01:59,1,274.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20577,FRANK,4,2019-01-30 20:51:19,2019-03-27 12:54:47,2019-01-31 02:36:36,2,69,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20578,FRANS,9,2020-09-24 20:50:19,2020-10-15 14:18:55,2020-09-25 07:29:33,2,144.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20579,LINOD,6,2023-04-10 19:39:43,2023-04-14 01:41:09,2023-04-21 06:47:30,2,54.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20580,QUEEN,4,2020-02-07 21:27:11,2020-02-29 13:02:33,2020-02-20 19:59:01,3,347.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +20581,BOLID,6,2019-10-05 08:51:34,2019-10-12 02:40:07,2019-10-14 05:19:05,3,91.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20582,AROUT,5,2023-05-18 11:13:25,2023-05-26 22:31:38,2023-06-10 12:28:05,3,155,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20583,LAZYK,5,2017-09-14 21:14:03,2017-10-04 14:33:36,2017-09-27 05:34:29,1,155.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20584,MAISD,3,2023-05-27 14:59:14,2023-07-07 14:53:18,2023-05-30 11:39:21,2,55.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20585,BOLID,1,2022-04-17 03:32:47,2022-05-13 00:22:44,2022-04-29 23:18:08,1,313.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20586,BERGS,4,2019-07-08 15:08:17,2019-07-25 02:59:49,2019-07-10 06:31:57,1,290,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20587,BONAP,1,2019-07-04 04:48:36,2019-07-31 10:44:19,2019-07-07 17:50:12,3,40.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20588,WOLZA,2,2017-11-16 07:02:41,2017-12-24 14:56:53,2017-12-03 05:26:53,2,72.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20589,LONEP,9,2017-11-28 05:57:26,2017-11-30 06:00:05,2017-12-07 01:02:01,1,82,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20590,FOLKO,7,2018-11-11 12:15:05,2018-11-29 19:22:30,2018-11-13 06:01:37,2,395,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20591,FISSA,3,2016-01-23 04:23:50,2016-02-19 07:45:09,2016-01-23 20:02:41,3,240,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20592,GREAL,7,2022-09-28 02:01:15,2022-10-30 03:38:09,2022-09-30 16:49:30,1,207.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20593,VICTE,5,2022-07-26 03:31:49,2022-08-17 23:20:53,2022-07-28 20:30:18,2,235.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20594,SAVEA,4,2022-08-05 11:10:01,2022-08-19 19:43:46,2022-08-10 17:12:43,3,331,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20595,AROUT,1,2023-06-13 03:05:12,2023-07-05 16:32:21,2023-07-02 02:48:10,3,159.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20596,HILAA,6,2012-10-16 11:40:44,2012-11-07 14:41:15,2012-10-24 07:04:33,1,17.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20597,GALED,6,2017-03-19 19:29:59,2017-04-16 17:46:12,2017-03-27 03:20:09,3,72,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20598,BLAUS,6,2018-08-05 05:12:59,2018-08-12 18:46:53,2018-08-27 08:47:07,3,335.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +20599,NORTS,5,2023-09-10 09:14:58,2023-09-22 04:47:02,2023-09-13 03:08:52,3,321.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20600,BOLID,2,2021-05-26 01:33:36,2021-06-04 00:55:01,2021-06-01 13:00:08,1,275.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20601,FRANS,7,2016-01-06 22:33:28,2016-02-05 06:44:58,2016-01-21 06:18:11,3,51.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20602,SANTG,4,2018-05-07 12:19:37,2018-05-07 16:05:42,2018-05-09 19:40:36,1,322,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +20603,TRADH,4,2018-09-09 21:54:48,2018-09-14 08:59:17,2018-09-30 15:04:33,1,447,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20604,ERNSH,6,2017-10-25 14:43:21,2017-10-25 21:23:32,2017-11-05 07:30:32,2,350.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20605,BLONP,1,2013-07-23 13:06:06,2013-08-14 07:30:30,2013-07-29 03:58:43,1,403.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20606,LETSS,9,2016-08-16 21:51:59,2016-09-26 02:25:03,2016-08-24 07:10:00,1,361.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20607,THEBI,3,2021-12-24 06:23:15,2022-01-01 22:03:30,2022-01-08 07:46:51,1,297,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20608,SIMOB,6,2014-06-30 07:13:45,2014-07-12 02:54:05,2014-07-15 23:43:26,3,185.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20609,BSBEV,5,2020-01-13 02:02:24,2020-02-14 16:34:45,2020-01-23 07:01:55,3,437,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20610,LAMAI,8,2022-03-29 07:34:23,2022-04-27 19:13:50,2022-04-02 22:04:13,1,163,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20611,FRANS,4,2022-02-08 22:42:02,2022-02-15 13:48:48,2022-03-01 01:02:07,1,58.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20612,FURIB,4,2014-12-29 18:06:58,2015-02-01 21:30:28,2014-12-30 06:26:46,1,277,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20613,VINET,8,2019-11-07 04:28:14,2019-11-07 13:47:21,2019-11-27 15:26:34,1,48.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20614,MEREP,1,2020-02-28 23:04:04,2020-03-05 06:13:17,2020-03-14 02:34:19,2,71,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20615,QUEDE,4,2019-11-06 15:23:43,2019-11-23 15:32:53,2019-11-11 13:20:36,2,479.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20616,GROSR,9,2014-08-31 06:18:41,2014-09-21 02:10:18,2014-09-09 17:13:11,3,41,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20617,GREAL,7,2014-09-21 06:54:23,2014-09-29 00:26:19,2014-10-12 20:44:30,3,469.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20618,BOLID,1,2020-08-23 13:01:31,2020-08-24 09:56:38,2020-09-02 09:52:58,2,475.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20619,BOLID,5,2016-10-07 06:42:16,2016-10-30 14:13:16,2016-10-16 09:49:12,1,469,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20620,BOTTM,6,2018-12-11 03:31:55,2019-01-29 06:37:16,2018-12-21 11:46:32,2,64.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20621,CONSH,9,2014-05-17 15:09:03,2014-05-30 06:08:37,2014-06-06 21:28:12,1,164.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20622,KOENE,6,2018-09-15 18:46:13,2018-10-31 09:21:49,2018-09-21 21:27:18,3,222,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20623,VALON,6,2015-11-22 15:20:13,2015-12-08 18:30:42,2015-11-22 18:35:03,1,59,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20624,FURIB,3,2016-11-13 15:09:45,2016-12-04 08:17:17,2016-11-15 19:16:04,2,149.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20625,NORTS,6,2017-05-20 13:34:58,2017-06-22 13:22:35,2017-06-03 20:14:04,2,113.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20626,CENTC,1,2022-01-02 02:52:18,2022-01-03 12:12:16,2022-01-14 20:37:17,1,218.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20627,NORTS,2,2012-11-22 13:31:34,2012-12-05 07:54:08,2012-11-24 09:39:38,3,71.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20628,WHITC,4,2022-05-08 11:58:12,2022-05-31 00:14:05,2022-05-23 20:07:07,1,487.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20629,CONSH,8,2016-07-24 04:24:37,2016-09-10 01:56:39,2016-07-25 23:59:24,3,254.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20630,FISSA,4,2017-02-27 11:10:47,2017-03-23 08:03:39,2017-02-28 10:51:23,3,479.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20631,TRAIH,2,2016-07-31 01:00:43,2016-09-08 21:09:01,2016-08-01 10:49:58,2,186,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20632,THEBI,8,2012-09-12 11:53:53,2012-10-04 01:03:15,2012-09-13 21:38:45,2,352,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +20633,GALED,3,2015-02-13 15:56:34,2015-03-23 05:43:07,2015-02-24 19:10:03,1,233,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20634,DUMON,4,2016-03-30 03:22:30,2016-04-03 04:30:24,2016-04-09 20:01:24,3,50,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20635,QUEEN,8,2023-01-31 13:49:20,2023-03-27 18:30:23,2023-02-05 02:17:51,2,402.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20636,LEHMS,6,2018-02-14 21:30:42,2018-03-27 18:28:20,2018-02-27 03:29:02,2,42,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20637,OTTIK,5,2017-05-09 22:16:08,2017-05-12 12:54:24,2017-05-22 00:17:57,1,228.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20638,CACTU,8,2023-09-19 09:37:26,2023-09-26 18:01:18,2023-09-21 09:22:17,2,422,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20639,COMMI,9,2021-05-30 03:27:03,2021-06-03 03:11:42,2021-05-31 02:29:17,2,233,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20640,COMMI,2,2015-09-21 07:08:14,2015-10-15 05:02:10,2015-09-24 09:23:21,1,231.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20641,SIMOB,8,2019-12-06 00:22:34,2019-12-10 04:03:23,2019-12-11 03:33:23,3,318,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20642,FAMIA,9,2014-07-31 23:12:27,2014-09-08 22:53:16,2014-08-01 21:14:12,3,47.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20643,FRANS,8,2016-06-23 14:00:54,2016-07-22 15:00:46,2016-06-25 13:00:22,2,397.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20644,HANAR,7,2015-06-02 10:59:22,2015-06-09 21:39:06,2015-06-05 07:04:24,2,419.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +20645,LAZYK,9,2018-11-02 01:45:34,2018-12-09 04:19:41,2018-11-19 13:34:03,3,419.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20646,LILAS,6,2023-01-16 09:07:12,2023-01-23 10:45:10,2023-01-16 20:55:45,2,195.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20647,SPECD,2,2023-07-26 20:24:53,2023-08-18 17:27:43,2023-07-28 01:21:27,1,292.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20648,QUEDE,7,2020-03-22 14:11:25,2020-03-30 06:08:49,2020-03-28 05:01:03,1,444,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20649,TORTU,9,2014-02-24 04:54:13,2014-03-26 03:11:03,2014-02-28 20:07:32,2,345.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20650,PERIC,6,2015-07-27 01:55:52,2015-08-21 10:22:37,2015-08-04 05:41:53,1,182.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20651,SEVES,9,2013-02-02 08:01:42,2013-02-26 08:06:15,2013-02-04 15:13:32,1,333.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +20652,FURIB,3,2023-04-22 18:30:57,2023-04-28 20:25:29,2023-05-03 07:40:37,2,398,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20653,TORTU,4,2016-04-25 03:47:57,2016-05-28 03:27:31,2016-05-11 16:21:46,2,162,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20654,CACTU,3,2016-06-02 16:13:55,2016-06-07 20:52:29,2016-06-05 16:20:57,2,440.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20655,SEVES,7,2019-12-13 16:30:17,2019-12-14 19:19:21,2019-12-21 21:57:16,2,536.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20656,CHOPS,7,2017-09-13 11:10:14,2017-09-17 03:45:41,2017-09-15 13:21:40,3,202.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20657,RICSU,2,2013-04-17 22:51:13,2013-05-01 14:30:23,2013-05-17 01:05:20,3,144.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20658,CHOPS,4,2017-01-08 10:21:00,2017-01-08 17:43:59,2017-01-28 11:59:38,3,21.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20659,HUNGC,2,2020-08-15 03:46:24,2020-08-18 01:33:05,2020-08-26 04:09:34,2,473.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20660,THEBI,9,2016-05-17 06:53:38,2016-05-23 00:49:57,2016-05-24 03:42:26,2,358.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20661,BLAUS,4,2019-04-17 00:46:42,2019-05-27 22:58:48,2019-04-17 13:18:50,1,126,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20662,HANAR,9,2021-12-10 05:03:50,2021-12-24 22:55:18,2021-12-11 08:40:18,2,221.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20663,WILMK,6,2017-04-13 10:01:14,2017-04-19 12:34:12,2017-04-13 15:17:13,2,305.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20664,SANTG,6,2015-06-19 16:45:51,2015-08-05 04:12:39,2015-06-20 06:25:17,1,422.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20665,PARIS,3,2023-03-18 16:12:03,2023-03-24 11:21:32,2023-03-28 08:18:56,1,509.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20666,SAVEA,2,2013-06-12 07:04:02,2013-06-27 21:10:19,2013-06-14 13:40:13,1,428.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20667,RANCH,8,2020-01-28 17:23:21,2020-02-08 05:44:38,2020-02-08 14:51:48,3,299.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20668,REGGC,8,2014-07-22 13:13:38,2014-08-03 11:01:52,2014-07-29 15:34:10,3,177.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20669,CONSH,2,2018-03-05 21:45:59,2018-03-20 17:47:18,2018-03-06 03:52:32,2,222.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20670,LETSS,6,2018-06-22 08:28:12,2018-07-12 22:28:32,2018-06-26 05:12:31,2,92.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20671,HANAR,4,2014-07-23 06:34:07,2014-09-04 04:13:56,2014-07-25 06:13:33,3,318.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20672,FISSA,1,2022-10-13 08:39:59,2022-11-01 14:25:43,2022-10-23 07:49:55,1,145.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20673,MAGAA,3,2014-02-24 09:43:12,2014-03-13 13:43:19,2014-02-28 01:34:48,1,423.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20674,LILAS,1,2023-05-07 14:01:50,2023-06-06 07:38:39,2023-05-23 03:01:08,2,89.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20675,AROUT,4,2020-12-20 00:42:16,2021-01-02 07:32:21,2020-12-23 21:44:25,1,284.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20676,GALED,7,2019-12-25 15:50:01,2019-12-30 07:35:31,2020-01-03 18:41:32,1,485.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20677,FRANR,2,2013-11-26 12:23:08,2013-12-15 09:57:59,2013-11-27 15:40:58,1,501.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20678,REGGC,6,2021-06-03 13:42:47,2021-07-12 01:32:34,2021-06-08 13:30:40,1,202.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20679,ANATR,6,2016-12-31 11:58:22,2017-02-10 14:07:54,2017-01-02 21:52:08,3,347,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20680,THEBI,2,2022-07-30 20:18:36,2022-09-01 02:29:27,2022-08-08 02:17:20,1,121.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20681,QUICK,1,2022-02-23 21:00:21,2022-03-12 15:49:53,2022-03-03 18:52:23,3,239,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20682,VALON,4,2016-07-22 09:48:25,2016-08-03 11:03:41,2016-08-16 01:58:33,1,77.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20683,VICTE,7,2021-12-12 10:47:59,2021-12-25 07:53:40,2021-12-20 00:20:00,2,381.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20684,HILAA,8,2018-12-25 13:17:42,2019-01-14 12:22:43,2019-01-01 20:38:49,1,389.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20685,DUMON,8,2018-11-09 02:57:27,2018-12-15 07:25:51,2018-11-21 21:43:36,1,320,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20686,PARIS,9,2012-11-11 14:49:51,2013-01-02 01:57:10,2012-11-25 07:02:51,2,36.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20687,Val2 ,4,2020-07-27 09:43:44,2020-08-05 23:15:33,2020-08-16 21:00:19,1,16.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20688,QUEEN,2,2023-08-23 22:29:14,2023-09-15 22:52:11,2023-09-09 15:48:31,1,179.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20689,CENTC,8,2015-01-06 01:45:08,2015-01-19 01:23:30,2015-01-17 13:53:47,3,352.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20690,FISSA,6,2017-01-20 10:20:40,2017-02-01 14:34:21,2017-02-11 19:30:30,2,208.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20691,THECR,4,2012-09-07 01:50:29,2012-10-04 04:30:20,2012-09-11 13:51:12,3,204.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20692,FISSA,7,2013-08-02 12:36:42,2013-09-04 12:36:36,2013-08-03 21:06:01,1,290.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20693,RATTC,1,2018-09-24 08:18:50,2018-10-15 08:28:34,2018-09-24 20:21:32,2,338.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20694,LONEP,9,2023-07-27 19:29:54,2023-09-01 17:30:56,2023-08-07 05:38:04,1,74.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +20695,WILMK,7,2020-03-04 18:22:46,2020-03-10 05:29:34,2020-03-09 16:17:44,3,147.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20696,LAUGB,6,2016-08-02 18:11:12,2016-08-06 10:05:08,2016-08-06 17:07:44,3,155.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20697,REGGC,8,2015-12-06 09:32:59,2015-12-09 21:35:39,2015-12-26 19:49:36,1,96.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20698,ANATR,4,2019-05-21 17:11:00,2019-06-02 08:57:26,2019-06-05 16:18:42,2,202.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20699,RICAR,9,2017-01-04 15:58:28,2017-01-09 06:01:41,2017-01-14 09:09:58,3,356.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20700,COMMI,9,2023-02-25 17:04:15,2023-03-04 04:15:54,2023-03-17 06:56:23,1,327.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20701,ROMEY,2,2020-12-14 03:09:22,2020-12-18 19:26:08,2021-01-04 13:03:11,1,249.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20702,DRACD,5,2018-01-08 10:37:30,2018-01-10 04:40:32,2018-01-10 07:28:12,1,467,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20703,ERNSH,2,2019-06-07 19:38:00,2019-07-08 18:11:36,2019-06-19 16:46:01,1,54.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20704,CHOPS,7,2020-08-23 22:47:38,2020-08-30 05:32:23,2020-08-29 13:25:04,3,209.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20705,WHITC,9,2022-12-14 13:53:02,2022-12-23 08:18:43,2022-12-29 12:58:57,2,242.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20706,DUMON,1,2017-07-31 17:53:09,2017-08-19 00:23:58,2017-08-02 00:08:37,2,259.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20707,BLAUS,2,2014-06-10 10:43:43,2014-07-07 07:05:08,2014-06-11 04:58:50,2,45.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20708,BLONP,5,2014-09-30 08:22:52,2014-10-31 03:29:13,2014-10-03 05:51:21,1,481.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +20709,NORTS,1,2023-10-12 06:55:31,2023-11-10 21:44:44,2023-10-14 23:07:43,2,47.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20710,LEHMS,5,2015-10-15 17:13:01,2015-10-23 19:19:56,2015-10-16 20:40:12,2,144,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20711,CACTU,2,2022-09-04 07:50:59,2022-09-10 01:59:34,2022-09-07 10:07:54,1,237.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20712,GROSR,8,2021-01-05 17:39:54,2021-01-17 11:28:07,2021-01-17 08:56:05,2,236.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20713,HUNGO,4,2012-09-16 15:47:59,2012-09-28 17:52:19,2012-09-23 08:32:36,2,124,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +20714,PICCO,6,2017-12-23 10:53:43,2018-01-26 20:02:30,2017-12-28 05:16:48,1,148.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20715,TRAIH,9,2016-10-28 15:15:48,2016-11-01 02:40:02,2016-11-03 22:07:53,1,20.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20716,RICAR,2,2018-06-03 13:06:29,2018-06-10 23:09:05,2018-06-05 10:32:39,3,199.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20717,ERNSH,7,2014-09-20 23:37:42,2014-10-07 01:20:29,2014-09-25 13:13:24,3,302.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20718,FOLKO,2,2023-10-04 14:35:23,2023-10-04 17:34:10,2023-10-11 09:04:20,3,349.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20719,TOMSP,3,2013-08-08 06:18:32,2013-09-02 08:28:37,2013-08-13 05:54:39,1,59.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20720,BONAP,4,2022-10-09 08:00:13,2022-10-25 17:09:20,2022-10-12 16:31:43,3,297,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +20721,DRACD,3,2014-05-28 19:19:15,2014-06-27 00:49:18,2014-06-09 03:18:36,3,211.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20722,SPECD,4,2016-12-03 07:25:10,2017-01-09 09:10:47,2016-12-04 02:15:01,3,472.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20723,MORGK,1,2020-09-05 08:30:07,2020-10-06 19:19:57,2020-09-17 04:54:55,2,294.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20724,PRINI,6,2018-11-12 11:08:27,2018-12-01 17:58:13,2018-11-12 12:19:12,2,258,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20725,TRADH,7,2022-06-05 06:50:14,2022-06-23 03:11:44,2022-07-01 01:05:57,2,404,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20726,CONSH,4,2017-09-12 14:14:07,2017-10-30 06:43:21,2017-09-16 18:30:58,3,226.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20727,FOLIG,2,2023-05-26 03:44:02,2023-07-18 23:38:22,2023-06-15 20:54:33,1,477.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +20728,RICAR,7,2020-04-28 14:35:27,2020-06-20 16:20:17,2020-05-05 10:03:34,2,237.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20729,QUICK,9,2019-04-10 05:21:59,2019-04-16 21:39:04,2019-04-10 09:09:05,1,443.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20730,WELLI,6,2022-10-13 18:06:33,2022-11-06 16:51:16,2022-10-14 05:17:42,3,397.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20731,MAISD,6,2021-03-08 13:38:49,2021-03-30 08:51:36,2021-03-12 08:07:36,2,86.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20732,PERIC,3,2019-11-06 14:08:36,2019-11-13 09:42:43,2019-11-22 09:39:07,1,175.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20733,GODOS,9,2012-10-13 21:46:23,2012-10-15 14:11:09,2012-10-14 19:21:34,2,27.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20734,MEREP,2,2016-11-15 22:14:52,2017-01-07 00:08:10,2016-12-08 13:43:54,3,106.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20735,ISLAT,8,2022-04-11 23:19:27,2022-05-02 11:01:55,2022-04-20 09:25:13,3,62.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20736,MAGAA,3,2019-07-25 17:25:41,2019-08-29 22:33:34,2019-07-30 02:33:06,1,517.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20737,BLAUS,7,2021-02-17 19:01:10,2021-03-07 01:34:01,2021-03-02 03:50:15,3,55.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20738,CENTC,8,2022-05-03 05:53:10,2022-05-06 22:02:06,2022-05-12 14:17:01,2,204.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20739,TRAIH,9,2023-07-19 00:22:15,2023-07-27 19:55:02,2023-07-23 14:02:41,3,187.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20740,TRADH,4,2023-09-30 07:07:12,2023-11-13 22:38:30,2023-10-02 22:13:13,2,376.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20741,LACOR,4,2014-12-23 22:31:51,2014-12-31 08:15:06,2014-12-28 03:10:31,1,125.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20742,OLDWO,1,2019-05-25 17:47:58,2019-06-07 21:41:56,2019-06-02 09:14:55,2,387.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20743,AROUT,4,2022-10-18 23:43:13,2022-11-03 06:38:15,2022-10-22 01:28:23,3,54,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +20744,WHITC,9,2014-01-13 12:23:44,2014-02-04 12:12:14,2014-01-26 12:05:21,2,152,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20745,TOMSP,6,2019-03-02 20:35:10,2019-03-09 07:43:02,2019-03-20 22:40:09,1,137.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20746,CHOPS,6,2018-09-07 16:13:46,2018-09-20 01:23:33,2018-09-07 17:58:40,1,177.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20747,LACOR,1,2014-06-30 19:47:08,2014-07-24 13:12:38,2014-07-10 15:51:19,1,34.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20748,MAGAA,4,2017-03-04 20:56:49,2017-03-20 10:09:34,2017-03-06 12:30:36,3,78.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20749,RICAR,7,2017-02-24 07:40:58,2017-03-15 18:21:17,2017-02-28 22:14:54,3,69.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20750,RICAR,5,2016-05-09 13:35:59,2016-05-10 13:52:35,2016-05-16 12:23:25,3,489.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20751,CONSH,8,2018-08-06 07:09:51,2018-08-19 23:23:20,2018-08-28 03:25:30,3,260,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20752,WOLZA,7,2021-03-11 19:48:57,2021-04-13 17:49:24,2021-03-12 06:59:23,1,271.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20753,GREAL,4,2015-07-15 04:59:41,2015-07-17 02:35:06,2015-07-17 18:46:47,3,82.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20754,VALON,8,2012-07-23 15:28:25,2012-08-02 21:32:24,2012-07-29 07:59:20,2,432.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +20755,WOLZA,9,2022-01-21 02:06:38,2022-01-22 22:03:36,2022-01-26 05:13:15,1,34,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20756,CHOPS,7,2021-02-28 18:45:04,2021-03-27 13:30:25,2021-03-04 02:56:15,1,137.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20757,DRACD,9,2018-05-18 19:59:26,2018-06-08 08:26:57,2018-05-26 06:16:44,1,169.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20758,LACOR,5,2020-10-24 03:48:26,2020-11-21 01:32:06,2020-11-12 16:09:54,2,359.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20759,LACOR,6,2023-02-02 08:49:00,2023-02-20 19:18:10,2023-02-22 18:04:51,3,172.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20760,PARIS,2,2020-09-04 02:51:18,2020-09-30 14:29:37,2020-09-08 08:42:40,2,98,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20761,OLDWO,1,2023-07-03 01:11:20,2023-07-10 16:43:37,2023-07-05 08:58:35,2,226,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +20762,BONAP,8,2017-10-13 12:29:52,2017-11-10 06:18:25,2017-11-08 04:49:34,3,134.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20763,GREAL,1,2012-12-01 08:59:44,2012-12-18 20:31:38,2012-12-08 22:03:11,2,18.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20764,VICTE,3,2015-10-24 22:59:25,2015-10-27 18:34:28,2015-10-31 22:55:34,1,408.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +20765,PICCO,2,2017-06-18 22:34:37,2017-06-24 20:32:11,2017-06-19 10:08:19,1,295.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20766,KOENE,8,2023-10-01 08:09:36,2023-10-02 06:13:50,2023-10-08 03:02:02,3,318.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20767,GODOS,8,2022-06-09 13:32:34,2022-06-29 02:44:19,2022-06-27 21:07:56,3,116.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20768,EASTC,2,2019-12-29 04:40:24,2020-01-16 10:05:53,2020-01-04 10:46:58,3,236,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20769,ISLAT,5,2013-07-21 06:18:05,2013-07-28 01:22:29,2013-08-14 19:47:09,1,74,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20770,VINET,1,2012-12-31 09:56:30,2013-01-08 08:09:13,2013-01-07 06:06:01,1,20.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +20771,SEVES,7,2016-01-03 10:28:53,2016-01-10 04:26:36,2016-01-30 04:15:22,1,504.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20772,TORTU,3,2015-08-05 03:15:46,2015-09-23 15:49:24,2015-08-29 20:25:56,2,427.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20773,BOTTM,5,2019-03-21 15:29:43,2019-03-27 14:54:48,2019-03-28 07:52:08,1,182.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +20774,TOMSP,9,2014-02-06 19:55:18,2014-02-14 09:42:26,2014-02-14 19:50:08,1,462.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20775,Val2 ,6,2019-03-26 02:32:32,2019-04-01 23:03:39,2019-03-29 13:01:32,1,453,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20776,BLONP,6,2012-08-15 04:05:05,2012-08-24 15:07:25,2012-08-26 14:30:33,1,385.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20777,RICSU,5,2020-08-03 05:31:53,2020-08-19 11:57:32,2020-08-18 01:07:43,2,35.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20778,TORTU,5,2016-11-22 15:27:29,2016-12-13 00:15:22,2016-11-23 00:12:37,3,288.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +20779,LILAS,2,2019-08-13 20:53:52,2019-08-31 19:11:26,2019-08-28 10:58:00,2,445,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +20780,Val2 ,3,2023-01-09 10:08:26,2023-01-26 22:43:46,2023-01-13 13:17:17,2,157.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +20781,TRADH,8,2013-01-03 04:52:36,2013-01-22 01:19:16,2013-01-06 03:14:51,2,114.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20782,SPLIR,6,2018-07-27 09:26:19,2018-08-18 04:10:55,2018-08-05 08:05:10,1,456.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20783,LILAS,3,2021-02-25 08:25:16,2021-03-11 18:25:22,2021-02-25 09:09:06,2,135.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20784,THECR,4,2021-08-06 16:56:04,2021-08-07 06:59:53,2021-08-20 13:12:54,1,340.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20785,BLAUS,3,2016-05-13 18:59:14,2016-05-30 17:03:20,2016-06-08 06:18:05,3,291.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +20786,PARIS,4,2020-01-18 15:51:54,2020-02-05 17:01:32,2020-02-04 06:45:01,1,102.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +20787,GOURL,3,2023-02-08 18:05:38,2023-02-10 12:04:31,2023-02-25 14:34:11,1,76,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20788,FRANS,4,2021-04-05 02:20:43,2021-05-18 16:11:11,2021-04-26 15:10:23,1,50.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20789,PRINI,4,2015-06-09 12:37:36,2015-07-14 06:06:57,2015-06-19 15:17:11,3,346.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20790,LEHMS,4,2019-05-04 05:32:32,2019-05-13 11:39:24,2019-05-04 23:38:33,2,408.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20791,LEHMS,9,2017-06-06 23:07:29,2017-07-28 22:01:16,2017-06-08 15:12:27,3,284.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20792,BOLID,9,2015-01-05 23:53:42,2015-01-13 07:21:44,2015-01-06 16:03:41,2,361.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20793,VAFFE,3,2014-12-23 15:10:07,2015-01-05 15:54:41,2014-12-28 15:03:59,3,423,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20794,ROMEY,9,2016-09-23 23:31:21,2016-10-21 12:12:23,2016-09-27 19:11:24,2,457.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20795,LILAS,5,2019-08-25 23:27:32,2019-08-30 13:52:43,2019-09-15 06:26:37,3,259.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20796,SUPRD,5,2023-07-21 16:50:30,2023-08-26 13:04:15,2023-07-26 07:17:39,2,316.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20797,VINET,1,2021-12-30 12:12:15,2022-01-07 12:21:04,2022-01-03 13:46:37,2,484.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20798,LONEP,5,2016-06-21 07:04:57,2016-07-23 13:55:09,2016-07-05 00:56:45,3,482.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20799,ERNSH,7,2013-04-24 02:49:17,2013-05-26 21:58:24,2013-05-03 19:30:24,2,317,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20800,HUNGC,6,2021-07-28 05:27:02,2021-08-11 18:27:43,2021-08-15 06:01:34,3,373,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +20801,WARTH,2,2022-03-12 06:31:14,2022-03-31 18:29:29,2022-03-13 03:49:33,3,160,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +20802,OCEAN,2,2015-06-09 17:44:24,2015-06-21 02:54:36,2015-06-17 12:36:28,3,90.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20803,SANTG,4,2019-01-05 15:38:30,2019-01-12 03:15:26,2019-01-06 14:03:30,1,100.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20804,TORTU,9,2020-09-01 03:25:19,2020-09-06 05:57:55,2020-09-02 07:30:09,2,36.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +20805,RANCH,7,2018-05-06 11:44:29,2018-05-17 10:04:42,2018-05-14 08:11:12,3,476,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20806,SAVEA,8,2016-04-07 16:42:16,2016-04-10 06:32:24,2016-04-15 07:09:23,1,409.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20807,LINOD,1,2013-05-26 13:17:07,2013-06-27 12:23:36,2013-05-29 10:14:08,2,341.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20808,ANATR,1,2016-02-16 03:41:04,2016-02-25 17:13:14,2016-03-01 04:54:28,1,282.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +20809,MORGK,3,2012-08-04 19:20:15,2012-08-11 02:47:39,2012-08-12 23:10:53,3,98.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20810,RICAR,6,2021-02-08 02:11:31,2021-03-19 07:30:21,2021-02-11 02:19:41,2,468.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20811,PERIC,8,2015-05-01 12:41:28,2015-05-28 08:26:36,2015-05-09 10:46:00,1,461.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20812,GALED,7,2019-09-20 19:32:59,2019-10-02 02:59:33,2019-09-29 11:21:43,1,276.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20813,TRADH,4,2017-05-04 23:59:38,2017-05-23 10:08:45,2017-05-09 05:30:12,2,187.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20814,DUMON,5,2022-02-25 04:21:25,2022-03-07 19:58:16,2022-02-25 19:17:57,3,56.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20815,WOLZA,8,2016-04-04 22:42:46,2016-05-07 15:25:03,2016-04-15 06:11:02,2,308.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20816,CENTC,8,2017-10-28 13:00:34,2017-11-21 06:39:59,2017-10-29 23:04:00,3,117.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20817,VICTE,5,2021-09-01 22:21:10,2021-09-10 06:56:26,2021-09-07 18:17:33,3,112.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20818,FRANS,9,2015-06-14 05:44:49,2015-06-27 05:06:27,2015-06-19 03:14:38,2,50.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20819,ANATR,2,2017-11-21 03:07:48,2017-12-14 04:27:36,2017-12-13 16:12:30,3,341.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20820,HUNGO,9,2013-04-12 01:21:37,2013-05-24 23:14:51,2013-04-16 08:52:10,1,79.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20821,PERIC,9,2013-05-18 15:25:12,2013-06-08 21:06:31,2013-05-22 14:59:35,1,367.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20822,TOMSP,6,2023-04-07 23:04:01,2023-05-02 07:16:58,2023-04-13 09:48:11,2,279.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20823,AROUT,8,2013-07-14 18:54:05,2013-07-29 16:27:51,2013-07-16 15:47:21,1,327.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20824,MORGK,6,2016-04-11 16:30:33,2016-05-25 03:40:39,2016-04-17 20:38:35,3,371.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +20825,SAVEA,1,2013-10-24 21:24:24,2013-11-19 06:02:48,2013-10-26 21:10:21,3,252,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20826,OTTIK,4,2017-09-13 19:06:18,2017-09-25 03:08:17,2017-09-24 07:17:39,2,237.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20827,PARIS,6,2019-12-29 00:28:59,2019-12-29 03:59:08,2019-12-29 18:41:26,2,434.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20828,SANTG,7,2013-05-01 22:31:48,2013-05-26 18:52:24,2013-05-17 12:50:21,3,458.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20829,RICAR,9,2014-10-10 19:26:17,2014-10-23 08:33:05,2014-10-29 09:45:58,3,374.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20830,COMMI,5,2017-01-07 04:50:18,2017-02-02 17:40:43,2017-01-20 00:29:04,1,189.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20831,DUMON,3,2014-05-24 19:22:20,2014-07-17 06:45:30,2014-05-29 11:50:36,3,520,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +20832,HUNGC,3,2023-06-09 17:26:04,2023-06-21 14:21:12,2023-06-19 22:00:07,2,347.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20833,MAGAA,1,2018-04-12 20:22:07,2018-04-18 22:19:22,2018-04-14 21:36:00,1,341.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20834,LAZYK,7,2021-09-30 21:48:42,2021-11-08 05:34:52,2021-10-09 20:28:08,1,103.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20835,QUEEN,9,2016-10-19 14:13:56,2016-11-20 02:18:33,2016-11-03 09:54:28,2,388,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20836,BOLID,6,2013-07-09 06:10:48,2013-08-21 09:20:37,2013-07-16 06:28:53,2,249,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20837,MAGAA,2,2016-12-17 16:08:53,2016-12-31 16:59:01,2016-12-22 02:00:09,1,356.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20838,WANDK,1,2018-07-23 19:27:58,2018-08-17 03:25:24,2018-08-07 17:17:36,1,434.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20839,MORGK,9,2023-04-03 21:56:45,2023-04-17 17:05:23,2023-04-09 13:07:44,1,457.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20840,MORGK,1,2016-10-01 01:14:10,2016-11-13 14:32:44,2016-10-06 12:40:09,3,497.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20841,SPECD,3,2022-09-25 08:17:07,2022-10-02 22:30:46,2022-09-25 17:37:00,1,482.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20842,LAZYK,6,2014-09-05 08:24:02,2014-09-08 22:32:21,2014-09-20 17:43:37,3,292.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20843,QUEDE,3,2022-04-16 16:54:38,2022-05-04 06:03:57,2022-05-06 01:11:04,2,258,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20844,TOMSP,2,2022-08-29 21:22:33,2022-09-22 18:16:49,2022-09-08 16:46:22,2,328.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20845,LAMAI,1,2021-11-18 06:10:40,2021-11-21 04:05:35,2021-11-30 12:15:37,3,128.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20846,AROUT,9,2023-05-02 09:55:19,2023-06-11 03:31:54,2023-05-03 07:00:09,2,413.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20847,ANTON,8,2022-01-11 15:06:47,2022-01-16 04:38:23,2022-01-12 18:30:15,3,434.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20848,FRANS,4,2016-04-25 08:25:17,2016-04-28 00:40:00,2016-04-25 19:47:35,2,271.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20849,WELLI,9,2021-02-25 09:35:44,2021-03-03 12:44:37,2021-03-07 16:32:35,2,385.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20850,VICTE,4,2021-02-18 04:13:20,2021-03-31 12:29:28,2021-03-05 01:54:22,3,541.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +20851,WELLI,1,2022-10-28 20:07:54,2022-11-03 19:39:27,2022-11-03 02:22:14,1,391.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20852,RANCH,1,2022-05-07 04:34:48,2022-05-10 07:13:01,2022-05-17 05:33:08,3,332.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20853,ISLAT,3,2016-10-29 04:43:47,2016-11-14 08:44:02,2016-10-30 09:00:20,2,186,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20854,FURIB,9,2021-02-17 06:43:40,2021-03-02 07:05:11,2021-02-19 19:44:01,2,137.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20855,FAMIA,5,2017-05-06 23:15:46,2017-05-20 03:39:39,2017-05-13 01:15:13,1,300,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20856,WANDK,8,2023-01-07 20:22:29,2023-01-12 07:55:18,2023-01-08 05:52:10,3,91,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20857,HANAR,7,2017-02-22 01:03:02,2017-02-27 12:30:21,2017-02-27 05:51:55,1,193.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +20858,FOLKO,8,2021-06-21 03:18:42,2021-06-24 11:40:31,2021-07-14 06:42:03,3,412,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20859,HILAA,6,2012-12-22 22:00:54,2013-01-09 22:38:59,2012-12-24 10:26:44,2,227.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20860,TORTU,9,2022-05-11 02:00:59,2022-06-08 05:37:42,2022-05-13 21:31:19,2,233.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20861,RANCH,6,2020-04-25 04:19:12,2020-05-07 20:15:33,2020-04-26 03:50:14,3,431.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20862,LAZYK,6,2019-11-30 05:49:24,2019-12-20 11:21:20,2019-12-08 05:43:46,1,167.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20863,PRINI,6,2018-01-12 05:02:47,2018-02-22 08:23:54,2018-01-12 08:31:47,2,425,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20864,HILAA,1,2012-11-04 09:14:09,2012-12-10 08:43:17,2012-11-15 09:42:52,2,140.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20865,COMMI,7,2021-07-08 17:01:55,2021-07-24 03:47:59,2021-07-30 12:26:29,2,77.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20866,TOMSP,8,2021-04-19 01:16:30,2021-04-24 09:09:31,2021-04-24 22:37:05,2,293,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20867,HUNGO,4,2018-02-05 06:05:34,2018-03-05 23:26:43,2018-02-07 13:42:28,2,295.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20868,COMMI,2,2018-03-20 18:40:09,2018-04-06 06:45:45,2018-03-21 12:06:35,1,507,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20869,TRADH,9,2018-02-13 14:28:56,2018-03-03 07:53:13,2018-02-14 19:44:33,1,151.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20870,LAUGB,4,2021-04-02 07:32:37,2021-04-13 09:54:01,2021-04-18 17:15:32,2,380.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20871,OTTIK,5,2019-08-05 23:51:18,2019-09-02 08:19:36,2019-08-27 06:43:16,2,439.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20872,RICSU,9,2013-11-04 06:48:53,2013-11-11 13:44:17,2013-11-19 00:09:38,3,19,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20873,AROUT,1,2013-12-03 12:34:50,2013-12-25 05:18:19,2013-12-15 03:00:17,2,171.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +20874,ERNSH,5,2016-06-26 05:01:00,2016-07-01 08:59:16,2016-06-29 13:50:12,1,452.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20875,LINOD,3,2015-12-31 06:03:25,2016-02-03 07:31:48,2016-01-11 03:33:06,1,139.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20876,TOMSP,2,2015-12-17 00:18:35,2016-01-20 19:06:58,2016-01-04 02:51:24,3,466.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20877,FRANS,3,2021-02-08 03:05:15,2021-03-04 17:47:31,2021-02-08 06:25:00,2,230,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +20878,ANTON,6,2021-09-02 02:04:13,2021-09-04 17:31:21,2021-09-03 08:13:50,2,310.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20879,RICAR,5,2015-12-31 10:30:19,2016-01-21 16:01:36,2016-01-15 10:14:07,1,324.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20880,SANTG,5,2022-01-30 03:23:16,2022-02-17 16:37:46,2022-02-01 16:13:41,3,391.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +20881,VALON,1,2018-07-02 00:41:17,2018-07-18 23:21:51,2018-07-07 19:10:33,2,367.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20882,SPECD,6,2013-10-02 11:29:13,2013-11-06 10:12:59,2013-10-09 16:51:37,1,41.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20883,HUNGC,1,2022-04-25 16:12:53,2022-04-26 12:29:23,2022-05-21 19:52:35,3,376,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20884,MORGK,7,2012-08-20 19:52:21,2012-09-18 00:30:01,2012-09-07 21:04:59,3,417.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20885,THEBI,6,2019-02-03 14:35:25,2019-03-01 04:05:22,2019-02-18 10:54:44,2,500,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20886,LETSS,2,2020-09-16 18:38:53,2020-10-18 13:21:29,2020-10-02 14:26:59,3,247.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +20887,REGGC,1,2022-02-22 08:19:50,2022-03-26 02:56:37,2022-03-21 00:46:35,2,430,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20888,OCEAN,2,2015-07-09 08:24:51,2015-07-14 03:19:59,2015-07-09 18:57:06,1,104.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20889,WILMK,9,2020-08-03 09:36:42,2020-10-01 08:33:11,2020-08-11 23:16:45,3,52.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +20890,SPLIR,1,2020-03-15 09:46:28,2020-03-20 17:52:19,2020-03-19 10:55:57,3,467.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20891,SPLIR,8,2018-11-27 12:00:29,2018-12-17 07:00:29,2018-12-09 04:40:13,1,215.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20892,SPECD,8,2020-01-17 03:37:30,2020-03-06 01:40:39,2020-01-19 13:43:48,2,170.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20893,BOTTM,7,2017-02-28 23:11:43,2017-03-02 11:20:17,2017-03-01 04:18:26,1,412.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +20894,THEBI,4,2015-04-06 16:45:33,2015-04-21 16:34:00,2015-04-07 05:46:45,3,264.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +20895,LONEP,3,2017-08-04 23:58:56,2017-08-05 14:27:51,2017-08-06 19:37:54,1,380.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +20896,WHITC,9,2021-08-19 07:25:17,2021-09-06 12:36:18,2021-08-19 18:42:30,2,128.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20897,FRANR,4,2023-07-24 05:30:39,2023-08-07 19:57:50,2023-07-29 13:34:44,1,19.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20898,VICTE,1,2022-11-11 19:54:22,2022-12-11 20:33:44,2022-11-22 05:25:48,1,290.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20899,TRAIH,6,2023-06-19 15:31:03,2023-07-27 11:46:06,2023-06-27 03:12:39,2,12.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +20900,QUEDE,5,2017-07-06 14:34:29,2017-08-02 10:37:52,2017-07-28 21:12:25,1,95.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20901,LAZYK,7,2016-04-27 08:38:37,2016-05-02 08:32:52,2016-05-04 02:17:16,1,188.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20902,RICAR,3,2014-06-15 14:24:45,2014-07-19 07:56:28,2014-06-18 14:37:07,1,486.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20903,SAVEA,4,2015-02-22 02:52:16,2015-03-03 14:23:22,2015-03-04 11:45:35,3,318.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20904,BSBEV,7,2016-04-16 21:09:37,2016-05-29 15:43:37,2016-04-16 22:20:14,1,299.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +20905,PRINI,4,2014-08-24 14:17:02,2014-09-21 03:30:12,2014-09-08 01:50:20,2,275,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20906,LAUGB,9,2020-07-23 14:20:52,2020-08-08 15:25:42,2020-07-30 06:52:03,1,502,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20907,PRINI,8,2013-06-11 14:13:45,2013-06-30 23:41:09,2013-06-12 07:53:41,2,339,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20908,BLONP,5,2021-06-05 09:18:45,2021-06-14 08:14:50,2021-06-08 17:52:52,3,354,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20909,LINOD,7,2023-02-21 11:45:03,2023-02-21 20:05:19,2023-02-28 07:40:29,2,45.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20910,AROUT,1,2019-09-09 00:37:39,2019-10-13 01:50:46,2019-09-11 09:23:36,3,138,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20911,ERNSH,4,2014-03-13 22:23:12,2014-03-27 15:59:31,2014-03-28 22:11:21,1,300.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20912,BOTTM,2,2016-08-27 07:31:03,2016-09-01 21:12:12,2016-08-31 18:23:02,1,516,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20913,EASTC,3,2020-12-12 17:31:01,2021-01-17 23:19:37,2020-12-15 07:46:48,3,396.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20914,ROMEY,4,2018-10-13 19:57:49,2018-11-14 13:47:46,2018-11-02 20:53:52,2,141.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20915,RICAR,9,2013-08-31 10:10:34,2013-09-09 06:43:17,2013-09-02 05:36:46,2,312.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +20916,FURIB,5,2023-09-19 02:56:26,2023-11-13 20:09:40,2023-09-20 16:58:17,1,42,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +20917,LILAS,2,2013-01-19 14:15:56,2013-01-20 11:33:26,2013-01-26 01:34:21,1,454,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20918,LETSS,6,2016-09-05 18:05:59,2016-10-22 01:01:57,2016-09-15 17:25:32,1,287.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20919,GOURL,2,2022-04-22 21:04:57,2022-04-26 04:46:17,2022-04-23 00:25:07,3,50,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +20920,CONSH,2,2015-05-10 15:51:16,2015-06-13 05:28:41,2015-05-23 11:13:23,3,474,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +20921,BONAP,9,2018-08-23 18:27:06,2018-09-19 08:24:57,2018-08-26 00:40:40,2,290.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +20922,PRINI,3,2021-10-15 22:57:52,2021-12-11 01:50:09,2021-10-16 11:22:03,3,368.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +20923,LILAS,4,2020-11-30 12:27:43,2020-12-22 23:39:56,2020-12-03 15:38:01,2,81.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +20924,LAMAI,1,2014-09-23 18:38:12,2014-10-10 02:21:44,2014-09-29 07:44:45,2,331.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20925,THEBI,6,2019-02-15 02:24:16,2019-03-15 02:34:05,2019-02-22 00:00:33,2,35.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +20926,VICTE,8,2018-07-01 22:15:50,2018-07-31 13:21:13,2018-07-13 15:48:33,3,445,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +20927,ERNSH,6,2022-11-20 03:46:35,2022-12-06 20:59:41,2022-11-24 17:18:05,3,381,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20928,FAMIA,2,2022-10-12 08:19:39,2022-11-03 07:06:39,2022-10-18 22:41:55,2,430.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20929,CONSH,9,2014-08-19 18:49:40,2014-09-21 15:49:54,2014-08-26 09:55:13,1,417.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +20930,THEBI,4,2020-08-26 18:32:21,2020-08-30 17:11:21,2020-09-03 01:45:07,3,491.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20931,PICCO,3,2022-08-27 15:41:31,2022-08-31 06:57:54,2022-09-04 13:38:17,1,490.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20932,BOLID,5,2020-03-20 09:46:34,2020-04-26 11:02:03,2020-03-23 08:55:27,3,16.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +20933,SUPRD,8,2022-11-22 08:45:21,2022-12-01 04:11:18,2022-11-24 01:38:59,2,387,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20934,AROUT,6,2019-07-27 16:39:10,2019-08-03 16:03:07,2019-08-20 00:44:32,3,320.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +20935,SANTG,4,2018-05-19 21:38:35,2018-06-02 14:58:37,2018-05-21 19:48:40,3,284.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20936,PRINI,3,2015-01-14 02:06:41,2015-01-27 06:01:36,2015-01-21 19:43:55,1,63,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20937,OCEAN,7,2015-03-30 08:44:19,2015-04-20 16:24:16,2015-03-30 11:30:12,2,70.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +20938,MORGK,7,2014-04-15 12:28:19,2014-04-20 01:48:45,2014-04-20 09:45:21,3,190.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +20939,ANATR,8,2019-02-19 17:09:17,2019-03-29 00:14:09,2019-02-25 05:13:01,1,333,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20940,MEREP,3,2012-11-13 21:29:57,2012-12-01 14:25:10,2012-11-29 11:51:43,3,448.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +20941,GREAL,7,2020-03-16 02:17:01,2020-05-10 03:17:10,2020-03-23 08:53:55,3,34.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20942,FRANK,1,2012-08-13 10:05:39,2012-08-21 23:03:27,2012-08-17 19:16:26,2,51.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +20943,CACTU,5,2019-02-04 03:16:58,2019-03-04 17:17:21,2019-02-12 15:22:05,3,124,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20944,BERGS,6,2018-06-11 13:05:03,2018-07-06 18:06:01,2018-06-13 05:14:14,1,495.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20945,CHOPS,1,2021-10-27 18:55:53,2021-11-29 02:12:26,2021-10-30 18:30:58,2,132,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +20946,GREAL,2,2014-05-16 00:47:24,2014-05-24 20:20:17,2014-05-17 10:21:53,2,116.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +20947,FRANR,9,2021-01-03 17:54:01,2021-02-19 11:06:59,2021-01-29 13:12:01,1,319.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20948,WANDK,9,2015-09-01 16:39:57,2015-09-20 20:44:14,2015-09-17 09:34:50,1,226,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20949,BONAP,2,2012-07-12 23:26:30,2012-07-15 21:57:27,2012-07-14 07:22:16,2,186.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +20950,WARTH,6,2014-03-04 16:36:46,2014-03-21 07:07:48,2014-03-08 05:20:33,1,511.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +20951,ERNSH,4,2022-01-30 00:24:52,2022-02-19 11:20:50,2022-02-08 10:23:41,3,128.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20952,WOLZA,8,2018-09-26 17:18:52,2018-10-13 23:43:46,2018-09-29 00:25:28,3,255.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +20953,VINET,7,2017-04-30 09:02:45,2017-05-27 12:23:39,2017-05-06 23:34:06,3,77.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +20954,CENTC,8,2022-10-13 00:52:18,2022-10-13 15:27:16,2022-10-21 10:33:46,3,234,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +20955,RANCH,2,2022-05-27 08:06:26,2022-06-24 19:57:37,2022-06-08 01:15:40,2,39.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +20956,WHITC,9,2022-02-04 13:30:15,2022-02-25 18:22:03,2022-02-10 22:45:26,3,227,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20957,HANAR,5,2021-09-20 08:44:40,2021-11-06 01:40:38,2021-09-21 03:07:39,2,175.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20958,GALED,2,2022-10-05 11:26:12,2022-10-15 18:47:11,2022-10-19 05:33:47,3,154,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +20959,ISLAT,7,2021-12-28 23:31:48,2022-02-07 13:11:23,2022-01-07 03:53:25,3,276.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +20960,SPECD,8,2021-08-06 04:47:05,2021-08-10 18:54:26,2021-08-14 19:43:34,2,105.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +20961,BLAUS,9,2013-06-05 23:36:04,2013-06-12 19:04:32,2013-06-08 02:14:19,2,428.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +20962,LAMAI,1,2022-05-23 19:38:31,2022-05-24 15:29:04,2022-05-24 04:18:58,3,348,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +20963,WHITC,8,2018-04-17 21:58:08,2018-05-29 17:30:03,2018-04-18 23:36:05,2,70.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +20964,BOTTM,2,2016-09-23 08:17:15,2016-10-21 20:30:37,2016-10-05 00:57:21,1,331.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +20965,THECR,5,2020-01-13 09:26:44,2020-02-05 17:45:16,2020-01-17 12:55:11,1,83.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +20966,RICSU,8,2022-12-29 04:54:15,2023-01-19 07:36:14,2023-01-01 07:59:31,3,425,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20967,WILMK,4,2016-01-22 05:40:00,2016-01-26 07:09:53,2016-01-27 03:54:48,1,254,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +20968,THEBI,1,2013-12-05 19:37:43,2013-12-18 16:55:50,2013-12-16 18:55:11,3,99,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +20969,CHOPS,7,2012-10-09 20:46:41,2012-10-17 07:58:57,2012-10-19 13:07:25,2,103.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20970,KOENE,1,2020-08-14 22:02:09,2020-08-31 23:49:14,2020-08-30 01:48:46,2,152.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +20971,ALFKI,5,2014-07-18 08:21:41,2014-08-10 02:24:25,2014-07-23 01:11:14,3,187.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20972,THEBI,2,2016-09-02 21:32:01,2016-10-01 05:21:30,2016-09-12 15:08:56,1,119.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +20973,REGGC,1,2014-09-03 17:45:33,2014-10-09 19:02:39,2014-09-06 16:05:23,3,14.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +20974,WELLI,2,2021-12-12 13:49:21,2022-01-04 19:35:07,2021-12-19 14:17:53,3,311.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +20975,OCEAN,6,2023-07-21 09:42:05,2023-07-23 20:07:26,2023-07-21 21:21:10,2,42.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +20976,BONAP,9,2012-08-23 01:12:14,2012-08-25 10:18:58,2012-08-27 04:42:23,3,362.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +20977,FRANK,3,2012-11-08 13:07:11,2012-11-10 21:07:20,2012-11-16 07:27:55,2,158,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +20978,REGGC,3,2019-07-12 02:32:20,2019-08-18 09:06:14,2019-07-14 07:21:03,3,155.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +20979,TRADH,3,2022-10-29 11:24:28,2022-11-14 07:29:42,2022-10-30 02:42:15,2,111.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +20980,FOLKO,3,2016-06-11 21:53:15,2016-07-14 23:26:55,2016-06-12 05:35:21,3,59.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20981,SPECD,6,2016-05-27 02:52:45,2016-06-24 07:51:06,2016-05-27 14:48:16,1,222.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +20982,FOLKO,4,2014-09-20 23:33:50,2014-11-04 01:39:05,2014-10-12 14:30:14,2,222.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +20983,WHITC,5,2012-12-31 11:32:19,2013-02-18 16:54:06,2013-01-10 11:07:04,1,462.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +20984,FRANR,8,2015-04-30 08:52:51,2015-05-31 12:08:31,2015-05-09 12:02:24,2,293,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +20985,OCEAN,8,2015-11-05 01:56:59,2015-11-10 18:31:37,2015-11-06 09:12:01,1,118.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +20986,QUEEN,6,2022-01-02 02:08:40,2022-01-15 18:57:47,2022-01-04 11:34:29,1,26.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +20987,WHITC,1,2022-12-17 13:10:30,2023-01-26 13:45:50,2022-12-18 04:58:29,3,226.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +20988,FRANK,2,2022-05-08 13:52:05,2022-05-09 09:05:15,2022-05-12 19:36:41,2,446.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +20989,HANAR,4,2013-05-28 18:33:59,2013-06-09 19:16:04,2013-06-14 23:37:33,1,472.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +20990,BLONP,2,2013-09-03 06:37:10,2013-09-16 11:22:58,2013-09-07 05:41:50,1,24,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +20991,THEBI,2,2014-02-05 05:13:07,2014-02-14 06:44:30,2014-02-06 22:07:38,3,413.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +20992,PRINI,4,2016-11-19 17:51:37,2016-12-06 04:51:09,2016-11-20 14:03:48,2,225.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +20993,OCEAN,1,2020-10-24 10:14:26,2020-11-12 16:59:48,2020-10-27 02:11:53,3,446.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +20994,HILAA,6,2019-01-15 10:23:53,2019-02-10 21:01:43,2019-01-19 09:01:47,3,417.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +20995,RICSU,5,2021-06-21 18:22:20,2021-06-29 23:56:25,2021-06-25 03:56:08,1,429,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +20996,SEVES,1,2014-02-05 08:18:28,2014-03-03 03:25:04,2014-02-11 02:37:56,3,232,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +20997,VICTE,4,2016-02-22 15:28:00,2016-03-14 23:47:05,2016-03-05 09:07:09,1,300.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +20998,SAVEA,5,2014-09-04 19:43:39,2014-10-09 18:42:49,2014-09-12 23:06:36,2,134,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +20999,ISLAT,7,2021-06-12 06:15:29,2021-06-27 22:15:55,2021-06-12 20:16:29,1,178.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21000,CACTU,5,2016-09-09 10:00:52,2016-10-24 04:48:49,2016-09-16 18:10:34,2,400,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21001,WELLI,5,2013-12-26 23:00:24,2014-01-18 18:50:56,2014-01-02 03:13:23,3,47,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21002,ANTON,7,2023-10-22 08:20:18,2023-11-03 02:46:42,2023-10-27 23:13:13,3,490.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21003,LACOR,1,2017-10-06 09:18:14,2017-10-29 09:49:45,2017-10-09 11:27:41,3,459.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21004,QUICK,1,2016-03-22 07:35:43,2016-04-06 12:21:40,2016-03-28 18:34:15,2,143.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21005,FRANS,2,2022-06-19 21:47:01,2022-06-25 20:42:57,2022-06-29 13:02:00,1,173.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21006,ISLAT,1,2016-03-06 06:15:19,2016-03-18 20:10:40,2016-03-21 17:14:04,2,257,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21007,CHOPS,3,2018-06-21 03:53:15,2018-06-26 06:31:25,2018-07-09 04:34:16,1,26.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21008,MEREP,4,2014-03-02 22:21:14,2014-03-18 18:21:39,2014-03-21 03:27:26,2,446.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21009,TRADH,9,2019-04-15 13:28:41,2019-05-07 14:31:11,2019-04-15 23:56:34,1,398.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21010,VINET,5,2018-12-19 17:24:16,2019-01-08 05:43:44,2019-01-14 04:47:50,1,454,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21011,Val2 ,7,2014-01-14 02:14:24,2014-01-14 13:27:02,2014-01-21 15:26:44,3,544.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21012,VAFFE,8,2016-12-06 14:04:09,2016-12-15 07:34:16,2016-12-10 09:15:17,1,207.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21013,THECR,7,2021-03-30 06:32:08,2021-04-07 05:08:02,2021-03-30 11:40:15,1,437.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21014,WOLZA,2,2022-02-21 10:24:37,2022-04-05 06:50:14,2022-02-24 04:51:33,2,360.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21015,LAMAI,3,2014-10-06 18:18:09,2014-10-08 09:27:52,2014-10-08 05:35:53,3,487,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21016,VINET,2,2022-05-28 17:16:03,2022-06-15 11:00:54,2022-05-30 04:21:37,3,30,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21017,QUICK,8,2016-03-25 10:23:39,2016-03-29 00:32:33,2016-03-30 01:13:47,1,160,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21018,BSBEV,1,2023-07-01 03:31:33,2023-07-20 09:03:07,2023-07-01 16:36:54,3,76.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21019,RICSU,4,2022-12-18 02:32:34,2022-12-23 17:53:52,2022-12-21 17:29:17,2,45.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21020,SANTG,3,2019-05-10 23:59:28,2019-05-31 22:51:49,2019-06-02 04:22:44,2,454.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21021,LILAS,1,2013-05-19 17:53:12,2013-06-18 18:39:53,2013-05-30 18:26:29,2,59.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +21022,WOLZA,9,2015-05-18 13:36:27,2015-05-18 20:41:31,2015-05-19 19:28:25,3,50.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21023,TRADH,2,2017-05-26 06:23:00,2017-06-21 15:23:55,2017-06-07 03:59:37,2,303.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21024,RATTC,4,2016-08-17 16:11:03,2016-08-25 23:08:08,2016-08-26 08:31:30,2,428.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21025,QUEEN,7,2023-03-26 09:01:06,2023-03-27 02:58:11,2023-04-02 11:33:29,1,450.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21026,MEREP,6,2012-12-29 06:12:22,2013-01-30 13:12:43,2013-01-03 11:18:21,2,212,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21027,ISLAT,9,2014-11-24 23:05:54,2014-11-28 01:49:54,2014-11-27 13:27:25,2,133.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21028,AROUT,8,2019-09-01 21:29:25,2019-09-30 22:58:29,2019-09-18 19:12:26,3,346.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21029,ANATR,8,2017-10-13 22:35:34,2017-10-26 11:44:10,2017-10-27 07:40:12,1,164.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21030,LILAS,4,2023-06-29 07:12:26,2023-06-30 03:22:56,2023-07-05 07:11:36,3,245.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21031,TORTU,4,2017-09-02 06:59:12,2017-09-06 01:25:06,2017-09-10 02:05:04,2,196.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21032,DUMON,6,2014-12-07 16:08:09,2014-12-07 19:46:10,2014-12-10 15:18:18,3,236.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21033,VALON,7,2021-02-24 17:50:07,2021-03-14 16:15:22,2021-03-03 23:14:51,1,149.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +21034,GOURL,6,2020-07-02 05:04:08,2020-07-15 11:36:26,2020-07-13 18:02:33,3,130,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21035,QUEEN,4,2022-01-29 05:59:53,2022-02-20 04:53:46,2022-02-01 02:02:51,2,46,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21036,BOTTM,5,2013-04-14 11:49:20,2013-05-16 09:36:08,2013-04-15 02:21:23,3,462.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21037,BONAP,5,2014-06-07 03:45:49,2014-06-13 02:17:24,2014-06-09 13:38:49,2,134.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21038,TOMSP,9,2020-03-13 21:54:47,2020-03-26 12:19:23,2020-03-14 08:01:10,1,216.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21039,RATTC,6,2013-07-19 05:47:08,2013-08-27 14:08:04,2013-07-21 01:49:20,3,114,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21040,GALED,8,2015-03-04 09:27:58,2015-03-20 21:29:37,2015-03-13 21:29:41,1,221.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21041,QUEDE,2,2022-07-09 05:46:35,2022-07-11 06:49:08,2022-07-09 07:04:41,3,57.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21042,COMMI,8,2022-09-30 18:55:09,2022-11-16 17:33:29,2022-10-25 08:55:54,2,24.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21043,VAFFE,5,2017-10-03 08:49:09,2017-10-24 00:52:42,2017-10-20 08:40:41,3,286.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21044,FRANR,8,2017-01-21 08:28:03,2017-01-24 02:33:29,2017-01-25 17:29:53,3,219.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +21045,VINET,9,2015-03-25 02:52:58,2015-03-29 13:27:27,2015-03-27 08:05:36,1,172.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21046,ANATR,1,2014-04-29 16:11:34,2014-06-03 17:01:09,2014-05-15 11:32:38,3,194.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21047,TRADH,9,2013-07-29 17:05:29,2013-08-12 10:28:17,2013-08-01 10:53:34,3,97.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21048,LINOD,5,2018-12-27 07:55:15,2019-01-03 07:18:40,2019-01-03 09:21:01,3,302,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21049,CENTC,7,2019-12-16 14:34:02,2019-12-21 19:55:17,2019-12-24 17:11:45,3,386.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21050,KOENE,5,2020-02-04 14:13:56,2020-02-22 06:22:48,2020-02-12 03:48:51,3,313.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21051,LEHMS,8,2022-06-02 13:43:35,2022-06-14 18:32:25,2022-06-12 09:00:41,1,22,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21052,Val2 ,9,2018-02-15 16:31:04,2018-02-17 00:35:49,2018-03-08 08:45:51,3,446,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21053,THEBI,6,2022-10-15 05:00:30,2022-10-23 11:48:10,2022-10-19 11:16:28,1,26.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21054,KOENE,1,2019-12-30 00:35:31,2020-02-03 13:43:58,2020-01-05 00:03:26,2,211,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21055,CACTU,6,2018-11-08 04:24:34,2018-12-09 07:33:00,2018-11-12 14:36:24,2,36.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21056,LAMAI,9,2013-12-08 02:03:02,2014-01-04 21:22:18,2013-12-24 02:37:07,2,463.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21057,ISLAT,6,2017-10-24 21:11:24,2017-11-08 09:58:07,2017-10-27 16:06:35,3,19.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +21058,FURIB,7,2019-01-04 03:12:37,2019-02-13 10:37:16,2019-01-05 21:59:32,2,116.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21059,PARIS,1,2019-06-19 03:17:35,2019-06-25 06:16:08,2019-06-20 05:30:35,1,120.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21060,DUMON,2,2017-12-12 16:03:16,2017-12-24 12:55:27,2017-12-17 22:25:09,3,175,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21061,ANATR,5,2020-06-15 15:41:15,2020-06-19 10:07:39,2020-07-02 23:18:01,2,525.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21062,THEBI,4,2020-02-20 11:21:26,2020-04-06 17:51:09,2020-02-22 01:31:49,2,477,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21063,PARIS,4,2016-06-16 02:32:44,2016-07-01 09:43:04,2016-06-24 06:41:42,3,238.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21064,WHITC,6,2012-12-31 13:36:30,2013-02-12 13:51:41,2013-01-05 20:00:52,3,169.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21065,BLONP,6,2014-02-21 05:21:15,2014-02-21 22:42:10,2014-03-06 02:15:13,1,420.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21066,ERNSH,5,2015-08-03 06:04:50,2015-08-13 12:21:45,2015-08-24 18:34:55,3,286.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21067,LACOR,8,2016-08-24 21:14:44,2016-09-01 21:45:39,2016-09-15 23:51:49,2,348.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21068,REGGC,3,2014-06-30 02:25:35,2014-07-13 07:55:42,2014-07-11 12:28:39,3,498.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21069,LINOD,2,2013-11-15 00:44:30,2013-11-19 11:09:29,2013-11-15 12:41:06,3,173.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21070,CACTU,4,2016-03-03 22:04:34,2016-04-01 00:57:07,2016-03-14 18:11:48,3,502,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21071,VICTE,2,2023-07-03 23:04:40,2023-08-17 19:12:41,2023-07-04 04:23:11,1,213,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21072,FRANR,6,2012-09-14 18:06:28,2012-09-28 22:50:28,2012-10-05 03:53:03,1,22,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21073,NORTS,5,2013-05-02 18:20:57,2013-05-21 10:55:32,2013-05-05 11:13:35,2,362.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21074,QUEDE,2,2020-01-18 17:01:24,2020-01-26 14:06:21,2020-01-19 09:05:56,2,466.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21075,BSBEV,5,2017-05-13 04:28:36,2017-06-12 07:28:13,2017-05-19 10:20:49,3,203,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21076,LAZYK,7,2014-09-13 13:05:01,2014-10-30 05:19:09,2014-09-25 02:39:07,3,219.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21077,QUEEN,7,2021-06-06 13:51:41,2021-06-11 21:34:54,2021-06-11 14:45:28,1,318.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21078,LAZYK,5,2016-03-25 07:55:53,2016-04-08 02:48:48,2016-03-25 23:04:27,3,172,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21079,BERGS,6,2022-07-12 18:39:31,2022-07-26 15:11:32,2022-08-01 18:16:32,2,269.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21080,HUNGC,6,2015-07-07 18:31:10,2015-07-28 06:05:49,2015-07-12 06:32:38,3,439.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21081,FRANR,4,2018-11-24 03:10:54,2018-12-14 22:56:10,2018-11-30 16:17:22,1,236.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21082,AROUT,7,2015-08-30 05:11:44,2015-09-15 21:12:48,2015-08-31 14:30:46,3,29.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21083,OTTIK,3,2020-02-22 00:30:09,2020-02-29 22:17:19,2020-02-27 20:39:48,2,351.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21084,SUPRD,5,2022-05-05 01:35:44,2022-05-17 23:41:04,2022-05-22 10:06:15,1,367.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21085,CENTC,8,2014-01-31 15:15:29,2014-02-22 15:25:47,2014-02-05 20:43:21,1,173,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21086,PICCO,7,2022-05-18 20:23:09,2022-05-26 23:17:32,2022-05-25 17:16:08,3,188,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21087,VAFFE,5,2016-06-10 03:34:20,2016-06-26 20:49:22,2016-06-14 12:30:48,2,128.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21088,LILAS,7,2017-08-20 13:46:10,2017-09-12 20:57:35,2017-08-21 07:08:49,1,24.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21089,EASTC,3,2019-04-17 04:53:14,2019-05-11 04:47:13,2019-04-20 18:52:07,3,484.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21090,WANDK,4,2020-01-25 01:58:32,2020-02-17 00:24:01,2020-02-01 19:10:37,2,350.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21091,EASTC,3,2013-07-14 04:11:15,2013-07-23 03:14:54,2013-07-22 13:48:01,2,316.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21092,KOENE,6,2021-08-31 16:48:53,2021-10-21 15:03:49,2021-09-04 09:46:42,2,18.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21093,QUEEN,5,2023-05-14 23:05:38,2023-06-19 08:14:34,2023-05-16 09:54:08,2,144.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21094,LONEP,6,2023-07-12 15:39:16,2023-07-14 21:56:05,2023-07-17 02:53:30,3,470,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21095,SPLIR,7,2013-03-07 21:42:43,2013-03-22 19:18:16,2013-03-08 05:09:30,3,342.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21096,QUICK,2,2015-07-26 16:07:22,2015-07-28 19:09:12,2015-08-04 10:38:40,3,442.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21097,BOLID,9,2019-04-04 13:17:36,2019-04-08 21:50:43,2019-04-15 06:39:17,3,326.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21098,SPECD,4,2019-06-04 20:50:32,2019-07-08 18:34:54,2019-06-21 14:35:05,3,285.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21099,LONEP,9,2022-02-06 14:23:40,2022-02-09 21:46:05,2022-02-22 12:22:03,1,374.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +21100,HANAR,8,2019-01-02 21:58:58,2019-01-16 11:25:09,2019-01-05 06:31:50,2,457.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21101,OTTIK,3,2021-09-24 12:04:02,2021-09-26 22:49:59,2021-09-24 16:59:22,3,318.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21102,SAVEA,7,2014-08-22 20:22:41,2014-09-12 18:53:42,2014-09-06 13:26:51,1,350.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21103,GREAL,7,2019-08-23 04:48:13,2019-09-14 05:10:24,2019-08-24 00:46:30,2,199.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21104,BONAP,3,2013-09-10 11:12:10,2013-09-20 07:38:53,2013-09-12 06:29:40,3,395.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21105,LAMAI,6,2018-06-11 00:48:41,2018-06-14 08:13:21,2018-07-02 06:17:53,1,225.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21106,COMMI,4,2020-03-11 07:39:22,2020-03-17 08:29:24,2020-03-22 12:51:57,3,510.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21107,FRANS,2,2021-02-08 19:00:00,2021-03-12 21:55:37,2021-02-27 16:06:01,3,391.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21108,SIMOB,5,2020-12-11 01:22:38,2020-12-13 14:45:48,2020-12-20 13:14:38,2,46,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21109,BERGS,7,2020-02-05 20:57:47,2020-02-21 21:55:20,2020-02-08 17:24:57,3,200,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21110,HUNGO,6,2014-03-17 09:14:08,2014-03-17 12:03:49,2014-03-18 02:13:58,3,73.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21111,LONEP,5,2018-01-30 16:27:45,2018-02-22 13:44:33,2018-01-31 01:06:12,2,180.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21112,KOENE,7,2022-07-13 04:08:59,2022-08-06 09:08:01,2022-07-18 01:38:48,2,76.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21113,SAVEA,4,2019-04-06 09:11:40,2019-04-07 18:17:48,2019-04-15 09:18:23,3,49.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21114,LETSS,8,2013-02-15 07:05:53,2013-04-09 05:01:10,2013-02-15 16:59:10,3,267.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +21115,RANCH,3,2018-07-19 23:33:18,2018-07-28 19:23:02,2018-08-14 08:32:33,2,165.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21116,WOLZA,7,2013-05-10 07:40:38,2013-05-20 06:11:05,2013-05-17 05:20:31,3,494.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21117,KOENE,1,2022-08-05 22:19:02,2022-09-21 05:50:18,2022-08-06 14:53:40,1,252.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21118,PARIS,9,2015-12-18 12:23:21,2016-01-17 16:32:10,2015-12-18 22:40:46,1,315.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21119,ISLAT,2,2018-05-22 01:10:26,2018-05-28 08:18:51,2018-05-26 17:01:12,1,323,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21120,THECR,5,2016-12-28 19:40:28,2017-01-04 09:53:45,2017-01-04 07:07:31,2,475,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21121,OTTIK,2,2014-07-27 17:43:05,2014-08-27 12:38:23,2014-08-12 23:58:38,1,518.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21122,FAMIA,3,2015-07-30 09:38:01,2015-08-22 21:44:20,2015-08-01 01:03:57,2,280.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21123,COMMI,4,2016-06-19 15:03:33,2016-07-09 10:11:59,2016-07-12 23:45:31,2,421,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21124,FOLKO,7,2020-12-14 07:56:13,2020-12-15 16:43:57,2020-12-30 01:16:48,2,339.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +21125,SANTG,5,2017-10-29 09:37:59,2017-11-01 01:05:20,2017-11-07 20:02:25,3,312.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21126,AROUT,1,2023-04-01 10:17:51,2023-04-10 20:18:20,2023-04-06 17:38:11,3,14.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21127,NORTS,3,2015-08-23 22:18:17,2015-08-27 00:56:47,2015-09-06 16:40:54,3,345.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21128,ERNSH,9,2013-07-09 10:19:53,2013-07-30 01:13:26,2013-07-22 14:18:24,3,35.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21129,GREAL,6,2020-09-14 00:15:23,2020-10-21 10:14:46,2020-09-25 00:11:39,3,70,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +21130,ERNSH,5,2019-06-17 13:24:52,2019-07-13 22:50:36,2019-06-26 01:14:28,2,394,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21131,LONEP,1,2023-03-07 02:14:33,2023-03-19 17:00:47,2023-03-15 07:49:16,2,392,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21132,AROUT,5,2020-11-16 01:01:08,2020-12-03 20:36:25,2020-11-25 16:37:47,2,225.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +21133,TRADH,1,2013-06-07 19:50:10,2013-06-13 21:04:49,2013-06-07 23:27:56,3,159,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21134,FOLIG,1,2019-03-07 16:17:05,2019-04-01 06:15:17,2019-03-07 17:53:00,3,99.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21135,FRANR,8,2018-05-28 20:34:52,2018-06-07 10:53:54,2018-05-29 07:12:56,1,378.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21136,RICSU,9,2022-12-17 20:12:57,2022-12-18 11:02:00,2022-12-24 03:25:18,2,35.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21137,PERIC,9,2019-12-04 07:56:31,2019-12-06 15:15:53,2019-12-08 08:02:27,3,228,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21138,FAMIA,2,2018-12-01 07:23:07,2018-12-04 13:33:48,2018-12-01 20:51:29,3,222,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21139,SUPRD,8,2018-02-22 04:35:22,2018-03-25 18:16:33,2018-03-12 07:17:23,1,65,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21140,FAMIA,8,2014-05-05 11:26:05,2014-05-06 19:36:59,2014-05-08 17:04:14,2,353.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21141,GOURL,6,2015-10-05 12:03:07,2015-11-07 10:07:56,2015-10-16 15:47:23,2,431,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21142,ISLAT,6,2016-02-12 20:08:20,2016-03-13 08:14:52,2016-02-19 05:22:46,1,175.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21143,WILMK,5,2015-07-17 15:00:22,2015-08-05 17:38:57,2015-07-21 22:00:10,3,76.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21144,REGGC,4,2017-11-25 03:31:19,2017-11-27 09:31:07,2017-12-03 05:23:37,3,453.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21145,RATTC,9,2015-09-29 18:15:27,2015-10-18 05:56:03,2015-10-02 21:17:46,3,475,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21146,QUICK,6,2014-08-09 15:59:35,2014-09-13 23:37:12,2014-08-12 05:38:42,2,408.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21147,FRANK,9,2021-07-06 17:29:15,2021-07-11 15:32:28,2021-07-08 22:02:21,3,42.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21148,TOMSP,2,2021-02-23 02:35:45,2021-03-16 16:14:02,2021-02-24 18:58:39,2,318,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21149,PERIC,9,2020-12-04 11:50:21,2021-01-16 17:43:51,2020-12-07 08:51:40,2,343.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21150,FOLKO,8,2014-11-13 18:32:21,2014-12-09 18:41:52,2014-11-18 00:05:19,1,108.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21151,RICAR,6,2016-09-26 23:44:30,2016-11-10 08:45:43,2016-09-29 21:45:18,3,44,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21152,WANDK,9,2015-06-11 22:48:02,2015-06-30 01:54:30,2015-06-15 11:59:45,3,250.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21153,CHOPS,6,2019-08-28 10:29:03,2019-09-10 11:11:08,2019-09-09 04:49:35,1,289.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21154,BERGS,8,2018-11-06 17:46:30,2018-11-28 18:05:15,2018-11-18 06:58:54,1,494,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21155,QUICK,8,2015-06-01 20:58:56,2015-06-02 00:47:01,2015-06-08 07:06:31,2,411.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21156,SEVES,3,2020-12-29 01:59:42,2020-12-29 07:27:06,2021-01-05 06:18:51,2,358.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21157,MEREP,6,2016-12-12 02:22:05,2016-12-27 20:20:42,2016-12-13 16:20:28,3,205,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21158,WELLI,4,2022-01-24 07:55:33,2022-02-15 03:52:48,2022-02-10 10:35:32,2,324.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +21159,Val2 ,2,2019-09-14 00:54:59,2019-10-12 09:38:34,2019-09-18 00:46:59,3,162,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21160,LONEP,5,2016-03-10 21:13:06,2016-03-13 09:40:55,2016-03-10 23:38:09,2,354.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21161,LINOD,8,2023-06-26 00:27:26,2023-07-02 13:29:54,2023-07-02 08:04:52,2,380.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21162,REGGC,5,2014-04-10 00:56:23,2014-04-24 21:20:39,2014-04-12 19:30:18,3,217.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21163,AROUT,7,2021-08-31 17:41:07,2021-09-16 06:36:13,2021-09-23 09:29:14,2,346.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21164,LILAS,4,2023-08-18 21:58:04,2023-08-28 21:09:54,2023-08-21 11:24:17,2,390.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21165,LACOR,7,2015-02-19 09:48:01,2015-03-22 04:25:53,2015-03-11 15:21:52,3,42.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21166,TOMSP,8,2019-06-22 20:55:42,2019-07-02 04:33:46,2019-06-24 15:48:25,1,251.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21167,LINOD,9,2016-07-27 11:02:57,2016-07-29 01:19:23,2016-08-05 07:56:54,2,118.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21168,GODOS,4,2023-09-17 13:08:20,2023-10-11 02:08:28,2023-10-04 19:51:53,2,191.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21169,CENTC,5,2014-05-19 06:25:39,2014-05-30 14:12:18,2014-05-22 08:51:41,2,521.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21170,OCEAN,3,2014-05-11 20:44:36,2014-05-28 00:28:01,2014-05-12 01:34:54,2,85.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21171,MEREP,4,2013-06-09 17:20:23,2013-07-07 01:48:05,2013-06-24 06:37:18,3,413,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21172,COMMI,3,2014-11-01 14:16:50,2014-11-17 13:40:37,2014-11-05 07:24:58,1,83.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21173,KOENE,9,2021-06-06 23:53:26,2021-06-08 09:42:33,2021-06-23 10:21:26,1,322,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21174,QUEDE,1,2018-05-21 10:36:55,2018-06-04 03:37:48,2018-05-28 19:27:02,2,63,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21175,SPECD,3,2013-06-13 14:36:37,2013-07-02 03:48:14,2013-06-22 15:14:10,3,24.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21176,GOURL,5,2019-01-18 12:23:20,2019-02-01 01:12:39,2019-01-29 21:39:45,3,105.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21177,DRACD,2,2012-07-18 22:31:52,2012-07-30 19:42:06,2012-07-29 07:12:22,3,503,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21178,BOLID,7,2017-03-04 11:09:41,2017-03-06 03:20:39,2017-03-05 19:28:05,1,121.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21179,PICCO,1,2023-09-12 17:04:27,2023-09-24 10:15:54,2023-09-14 23:34:20,2,114.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21180,SEVES,9,2022-01-18 10:50:03,2022-01-29 23:38:32,2022-02-02 01:26:42,3,157.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21181,BOLID,8,2019-06-21 20:09:22,2019-06-27 14:14:58,2019-07-11 19:31:37,3,89,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21182,CONSH,7,2016-04-20 19:33:20,2016-04-28 05:17:34,2016-05-02 03:29:50,2,310.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21183,COMMI,7,2019-04-30 22:15:31,2019-05-12 11:54:14,2019-05-11 20:22:54,3,175,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21184,WELLI,4,2018-01-30 04:44:29,2018-02-23 13:18:09,2018-01-31 06:40:15,2,251.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21185,SPECD,4,2023-05-11 13:59:21,2023-05-23 23:34:29,2023-05-12 02:14:20,1,468,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21186,SPECD,8,2021-09-25 20:37:44,2021-10-27 19:59:36,2021-09-28 09:06:39,2,254.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21187,CONSH,6,2012-11-15 12:07:12,2012-11-25 15:08:55,2012-11-18 20:57:31,1,13.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +21188,WILMK,9,2014-01-08 12:45:42,2014-01-13 06:54:10,2014-01-12 04:53:29,1,329,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21189,ISLAT,3,2017-11-21 02:38:19,2018-01-02 04:46:30,2017-12-02 13:16:01,3,316.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21190,HUNGC,4,2021-07-01 12:28:40,2021-07-15 10:06:29,2021-07-20 17:16:42,3,183.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21191,MORGK,4,2016-02-14 08:28:31,2016-02-29 15:59:39,2016-03-07 07:46:09,2,42.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21192,FURIB,5,2018-03-17 19:49:28,2018-03-31 09:39:25,2018-03-21 05:09:11,1,55.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21193,DRACD,7,2023-07-03 02:26:52,2023-07-08 20:10:00,2023-07-18 15:24:36,2,265.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21194,WANDK,6,2019-08-17 13:36:53,2019-08-27 11:43:34,2019-09-07 14:43:28,2,176.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21195,VINET,1,2017-01-09 23:37:34,2017-02-06 21:51:46,2017-01-19 01:33:48,1,102.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21196,TRADH,1,2015-03-02 11:38:30,2015-03-04 16:37:59,2015-03-15 09:36:53,2,282.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21197,BOLID,9,2015-02-13 16:29:04,2015-02-14 02:49:15,2015-02-15 11:57:20,2,461.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21198,SANTG,4,2021-08-29 03:59:26,2021-09-01 06:14:04,2021-09-09 01:37:15,2,472.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21199,SAVEA,8,2018-01-13 00:40:55,2018-01-16 05:42:38,2018-01-18 16:41:43,3,483.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21200,BONAP,7,2013-02-19 16:20:05,2013-03-28 02:48:28,2013-02-28 08:43:39,3,37,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21201,LILAS,4,2013-09-11 07:46:11,2013-10-01 23:17:47,2013-09-17 00:03:11,2,348,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21202,TORTU,1,2017-12-30 00:52:14,2018-01-13 16:04:02,2017-12-30 07:07:41,3,250,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21203,WARTH,2,2016-09-24 14:22:32,2016-09-26 23:05:55,2016-09-28 16:14:01,2,186,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21204,SEVES,4,2023-10-01 05:22:14,2023-10-29 07:17:19,2023-10-01 05:51:25,1,299.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21205,SIMOB,7,2016-07-01 06:11:06,2016-07-22 07:44:21,2016-07-18 05:36:44,3,114,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21206,MORGK,1,2019-12-05 09:05:25,2019-12-18 05:22:40,2019-12-25 00:47:18,1,253.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21207,LAUGB,5,2013-01-30 12:39:53,2013-03-05 06:06:34,2013-01-30 15:17:12,2,462.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21208,NORTS,9,2014-09-30 16:38:16,2014-10-22 19:54:14,2014-10-03 05:48:03,1,232.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21209,MEREP,7,2014-05-05 16:48:53,2014-05-19 14:13:58,2014-05-12 16:23:57,1,238.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21210,LONEP,3,2022-05-21 03:16:50,2022-07-07 06:38:46,2022-05-29 02:49:01,1,245.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21211,AROUT,6,2018-08-11 18:02:21,2018-09-15 05:49:34,2018-08-18 08:07:04,3,375.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21212,FOLKO,5,2016-11-29 13:39:44,2016-12-02 06:11:17,2016-12-09 13:27:57,1,329.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21213,FRANS,9,2023-06-02 01:18:45,2023-06-07 18:49:06,2023-06-13 17:32:22,3,269.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21214,BOLID,1,2012-09-23 03:14:33,2012-10-08 08:55:02,2012-10-09 04:29:09,2,356.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21215,RICAR,8,2019-02-06 05:09:05,2019-02-26 14:54:51,2019-02-06 18:14:45,1,187.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21216,DRACD,8,2013-08-01 21:07:08,2013-08-31 11:03:14,2013-08-02 10:03:26,3,223.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21217,LONEP,3,2014-09-21 15:39:19,2014-09-23 16:37:45,2014-09-22 06:58:40,3,490.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21218,SPECD,7,2014-07-23 05:34:04,2014-07-29 03:54:42,2014-08-05 18:58:35,1,93,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21219,FRANK,3,2017-02-07 22:45:54,2017-02-09 05:33:03,2017-02-16 04:23:31,3,291.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21220,ERNSH,6,2016-12-06 13:48:06,2016-12-11 13:15:04,2016-12-07 03:24:53,2,309.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21221,FURIB,2,2022-07-30 19:52:49,2022-08-07 19:01:34,2022-08-12 23:45:24,3,270.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21222,DUMON,3,2020-12-01 22:55:13,2020-12-12 06:35:41,2020-12-07 20:12:25,3,486.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21223,HUNGC,6,2018-11-25 17:09:59,2018-12-05 13:19:04,2018-12-10 12:04:11,1,268,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21224,LETSS,6,2018-07-01 05:49:43,2018-07-31 17:34:35,2018-07-03 18:31:04,1,173.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21225,LETSS,2,2021-10-27 16:34:12,2021-11-15 21:37:14,2021-11-04 11:20:57,1,318.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +21226,OCEAN,6,2015-05-12 03:45:48,2015-06-02 13:59:10,2015-05-20 06:10:40,1,228,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21227,WOLZA,2,2014-02-24 12:12:04,2014-03-05 21:33:54,2014-03-02 04:56:55,2,197.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21228,LAMAI,2,2014-02-26 17:53:12,2014-02-28 05:03:31,2014-03-11 16:15:35,3,290.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21229,KOENE,1,2018-11-12 21:50:25,2018-11-17 16:29:57,2018-11-19 23:54:01,3,300,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21230,BSBEV,1,2017-11-07 08:59:56,2017-11-14 06:30:08,2017-11-07 18:55:37,3,451.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21231,LAUGB,9,2021-04-13 13:40:58,2021-04-26 09:50:06,2021-04-15 14:20:00,1,486.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21232,GREAL,7,2020-04-16 16:23:38,2020-05-10 21:25:37,2020-04-23 20:37:37,3,128,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21233,CACTU,7,2012-08-02 13:26:31,2012-08-03 12:31:31,2012-08-11 20:44:42,3,50,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21234,LAUGB,9,2019-10-08 10:51:36,2019-10-21 12:51:16,2019-10-12 12:26:23,2,366.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21235,ALFKI,9,2016-09-04 03:41:25,2016-09-21 03:43:09,2016-09-10 03:11:03,1,194.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21236,LEHMS,8,2020-07-02 04:19:56,2020-08-12 03:05:16,2020-07-12 10:11:51,3,260,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21237,FURIB,9,2016-11-03 19:11:27,2016-12-11 19:02:41,2016-11-07 00:03:03,2,151.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21238,KOENE,5,2023-03-18 00:22:43,2023-04-15 05:07:46,2023-03-25 04:28:11,1,117,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21239,SUPRD,7,2018-10-30 18:17:18,2018-11-14 02:26:59,2018-11-06 14:56:25,2,88,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21240,LAMAI,2,2017-08-19 00:01:42,2017-08-27 02:06:47,2017-08-19 14:34:00,1,401.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21241,HUNGC,5,2019-07-28 10:13:19,2019-08-15 23:05:40,2019-07-30 07:16:18,3,76.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21242,RICSU,1,2013-05-02 14:40:18,2013-06-14 06:05:06,2013-05-12 17:53:31,3,252.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21243,RICSU,7,2012-08-11 12:20:16,2012-09-24 04:42:26,2012-08-28 02:44:08,3,214,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21244,PRINI,4,2015-02-03 15:43:06,2015-03-13 04:00:39,2015-02-04 15:23:20,2,49,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21245,WANDK,6,2016-05-30 05:52:41,2016-06-23 23:27:47,2016-06-11 17:07:10,2,430,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21246,DRACD,7,2019-05-27 17:46:41,2019-06-28 18:31:04,2019-06-13 01:10:11,2,228.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21247,CACTU,3,2012-12-28 13:45:14,2013-01-11 23:31:38,2013-01-02 19:24:19,3,321.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21248,BLAUS,2,2018-08-12 00:28:13,2018-09-05 02:29:34,2018-08-25 01:35:45,1,496.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21249,FRANS,3,2020-10-26 21:41:56,2020-12-11 16:55:03,2020-10-31 11:16:17,3,116.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21250,TOMSP,9,2016-11-11 06:43:39,2016-11-24 22:49:34,2016-11-12 06:33:03,1,317,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21251,PARIS,6,2022-03-04 12:02:59,2022-04-19 19:47:41,2022-03-13 04:03:37,3,370.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21252,GOURL,8,2017-06-23 06:51:53,2017-07-13 21:14:56,2017-07-19 00:25:39,2,243.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21253,LILAS,5,2022-05-15 18:13:40,2022-05-31 22:20:18,2022-05-17 11:40:44,2,292,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21254,FRANS,4,2016-07-11 08:10:05,2016-08-16 05:43:17,2016-07-15 13:52:01,2,246.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21255,TRADH,1,2013-12-11 10:51:48,2013-12-23 17:31:33,2013-12-11 22:18:46,1,460.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21256,LAZYK,3,2019-02-21 04:05:00,2019-03-07 02:00:35,2019-02-25 07:50:25,1,17.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21257,OTTIK,3,2017-07-22 21:29:19,2017-08-12 08:00:51,2017-07-23 00:44:32,3,12.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21258,BERGS,4,2020-05-14 22:01:01,2020-05-16 19:37:19,2020-05-19 17:52:42,2,253.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21259,GROSR,6,2018-12-23 10:35:20,2018-12-28 00:25:38,2018-12-28 09:36:27,1,272.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21260,OCEAN,9,2021-08-25 02:34:01,2021-09-10 13:32:43,2021-08-25 23:30:17,2,398.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21261,FRANK,1,2023-03-30 11:26:24,2023-03-30 23:29:20,2023-04-15 23:26:22,1,62.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21262,SPLIR,1,2022-12-10 14:07:12,2023-01-10 14:11:01,2022-12-22 18:25:15,3,68.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21263,MAISD,7,2017-08-17 13:34:48,2017-08-20 13:37:46,2017-08-24 19:30:13,3,341.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21264,WILMK,4,2015-04-21 03:24:14,2015-04-28 04:14:38,2015-04-22 19:06:12,2,85,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21265,QUEEN,8,2016-07-26 07:20:44,2016-08-25 10:51:48,2016-08-17 18:27:28,2,366.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21266,BLONP,6,2017-04-27 23:06:08,2017-06-05 22:26:28,2017-04-30 10:37:58,1,184.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21267,FRANR,9,2014-03-08 04:59:15,2014-03-22 11:53:05,2014-03-10 19:59:17,1,145.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21268,FOLIG,9,2016-07-05 09:54:56,2016-07-11 08:34:01,2016-07-06 20:38:51,3,185.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21269,OTTIK,8,2022-01-01 02:10:51,2022-01-10 04:43:48,2022-01-03 04:10:29,2,68,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21270,VICTE,5,2017-05-27 17:22:06,2017-06-05 23:42:16,2017-06-14 20:08:11,3,58.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21271,OLDWO,6,2020-07-13 01:15:16,2020-07-23 22:31:59,2020-07-25 22:50:25,3,450.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21272,GALED,4,2023-09-01 00:40:29,2023-09-08 08:40:46,2023-09-03 06:28:17,2,327.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21273,WOLZA,4,2014-06-21 01:21:52,2014-06-28 04:32:26,2014-07-05 00:58:47,1,332.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21274,CHOPS,8,2018-04-21 10:43:35,2018-05-29 00:24:05,2018-05-10 12:45:58,3,406,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21275,RICAR,6,2021-07-05 17:55:04,2021-08-05 17:05:39,2021-07-13 18:22:00,3,209.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21276,MEREP,8,2021-11-24 02:16:45,2021-12-20 13:34:52,2021-12-19 20:36:34,3,199.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21277,MORGK,1,2022-08-05 12:29:59,2022-08-21 13:25:52,2022-08-08 22:12:40,1,26.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21278,WARTH,6,2014-03-03 12:38:37,2014-03-10 22:28:17,2014-03-24 09:22:31,2,278.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21279,BOLID,7,2012-08-08 13:22:24,2012-08-17 10:14:52,2012-08-09 13:07:38,1,205.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21280,ANTON,1,2021-07-26 22:59:06,2021-07-31 12:27:04,2021-07-29 06:54:19,3,159,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21281,CACTU,1,2012-09-27 06:49:09,2012-09-29 12:10:30,2012-09-30 04:40:14,2,257.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21282,GALED,1,2022-04-17 04:46:14,2022-05-08 14:29:08,2022-04-19 14:35:35,1,144.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21283,GODOS,9,2020-08-10 16:31:51,2020-08-31 03:08:04,2020-08-11 13:14:47,1,345.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21284,SPECD,6,2017-05-05 15:10:02,2017-06-02 19:15:25,2017-05-09 06:39:55,3,412.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21285,DRACD,4,2019-08-05 02:34:01,2019-08-15 09:48:23,2019-08-24 11:29:02,1,210.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21286,HANAR,8,2015-12-11 13:07:35,2015-12-22 05:53:52,2015-12-17 03:07:17,2,175.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21287,PICCO,8,2016-07-20 15:27:36,2016-08-17 11:47:49,2016-07-21 03:46:55,3,404.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21288,FRANR,3,2015-10-03 13:24:40,2015-10-28 19:22:15,2015-10-10 02:39:23,2,497.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21289,EASTC,4,2015-09-04 03:14:38,2015-09-09 16:34:02,2015-09-05 04:19:13,1,27.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21290,LAZYK,2,2014-08-25 02:11:10,2014-08-26 06:39:00,2014-08-25 13:08:41,1,265.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21291,FRANS,5,2021-01-13 13:45:23,2021-02-06 13:41:34,2021-01-15 02:53:22,2,211.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21292,THECR,3,2014-08-18 20:47:41,2014-09-15 10:49:13,2014-08-21 05:06:03,1,92,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21293,FOLIG,5,2014-01-25 09:25:29,2014-02-20 08:40:23,2014-02-04 11:18:51,2,212.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21294,MORGK,5,2023-06-20 12:25:18,2023-07-28 13:24:37,2023-06-29 06:15:04,2,416.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21295,ROMEY,2,2017-06-04 01:12:42,2017-07-15 00:57:43,2017-06-06 04:43:39,1,214.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21296,BONAP,4,2019-05-25 00:40:46,2019-06-09 21:19:57,2019-06-09 18:26:11,2,76.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21297,OTTIK,2,2021-12-10 06:02:58,2021-12-27 17:35:13,2021-12-31 06:48:39,3,184,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21298,LAZYK,9,2013-10-09 20:15:39,2013-11-02 13:24:57,2013-10-10 14:31:50,3,74.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21299,MAISD,5,2016-05-11 11:11:49,2016-05-21 13:58:30,2016-05-14 22:07:49,2,398.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21300,WILMK,5,2015-01-14 18:09:46,2015-01-15 13:53:03,2015-01-22 14:20:02,1,355,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21301,MAGAA,5,2015-07-04 18:56:52,2015-07-25 17:45:34,2015-07-05 22:15:22,1,81,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21302,RICAR,7,2015-02-22 07:30:02,2015-03-05 09:47:06,2015-02-24 03:33:47,2,509,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21303,LEHMS,1,2015-12-29 04:43:05,2015-12-31 20:01:34,2015-12-30 17:53:56,2,373,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21304,FOLIG,1,2017-07-03 08:49:14,2017-07-05 02:51:33,2017-07-03 20:49:36,2,148,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21305,RATTC,9,2020-11-12 14:10:13,2020-11-18 16:36:27,2020-11-15 20:41:07,3,167,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21306,HANAR,7,2014-10-20 11:08:16,2014-11-17 23:51:43,2014-10-20 11:28:20,1,35,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21307,FURIB,2,2019-08-10 16:50:49,2019-08-29 13:52:33,2019-08-22 21:55:54,2,184.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21308,ERNSH,5,2014-08-24 04:06:54,2014-08-28 18:57:48,2014-09-05 05:44:46,3,78,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21309,LONEP,1,2016-10-24 18:04:50,2016-11-11 03:26:29,2016-10-29 14:18:30,3,302.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21310,HILAA,1,2023-06-18 11:05:35,2023-08-13 09:11:57,2023-06-28 04:07:06,1,374,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21311,OTTIK,3,2014-08-25 00:35:36,2014-09-11 17:51:18,2014-08-30 10:25:40,3,291,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21312,COMMI,1,2018-04-01 12:53:59,2018-05-13 09:11:41,2018-04-09 00:29:48,3,441.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21313,ALFKI,2,2020-02-05 06:46:58,2020-03-28 12:37:16,2020-02-22 08:26:47,2,109.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21314,FRANK,2,2017-12-16 16:50:12,2017-12-26 19:16:49,2017-12-27 00:08:17,1,346.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21315,PARIS,7,2016-04-23 12:40:50,2016-06-12 20:16:48,2016-04-27 02:14:45,1,246,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21316,Val2 ,5,2020-04-26 03:18:52,2020-05-01 22:47:49,2020-05-02 00:05:07,3,108.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21317,SPLIR,1,2021-03-09 19:44:43,2021-03-31 09:36:07,2021-03-14 13:41:19,1,206.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21318,SAVEA,6,2014-06-12 19:06:09,2014-06-15 16:42:04,2014-06-19 03:45:24,3,342,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21319,SUPRD,6,2015-12-19 02:25:49,2015-12-23 22:57:59,2015-12-19 22:14:46,3,362.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21320,THEBI,2,2017-11-06 13:23:10,2017-11-27 00:36:13,2017-11-07 20:39:57,2,472.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21321,WANDK,3,2015-09-01 18:53:17,2015-10-18 15:56:25,2015-09-02 09:52:15,1,334,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21322,AROUT,8,2012-12-19 05:13:14,2013-01-09 13:57:15,2012-12-20 07:43:03,2,407.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21323,WHITC,6,2017-08-16 14:21:25,2017-08-31 12:41:07,2017-08-21 02:02:36,1,153.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21324,LAUGB,8,2023-04-27 03:58:13,2023-05-10 19:52:32,2023-04-29 11:02:59,3,112.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21325,LINOD,9,2023-01-27 19:29:29,2023-02-12 22:32:52,2023-01-31 05:28:49,2,51.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21326,BONAP,5,2023-08-21 08:40:54,2023-09-06 12:40:53,2023-09-04 04:19:52,1,152.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +21327,ANATR,1,2022-06-10 12:11:22,2022-06-18 09:45:26,2022-06-28 22:48:23,3,224.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21328,MORGK,9,2020-12-27 04:23:15,2021-01-06 08:19:16,2021-01-05 00:18:56,2,287.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21329,BONAP,3,2020-12-26 09:04:06,2021-01-18 16:49:50,2020-12-31 07:53:18,1,417.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21330,WANDK,6,2014-12-24 00:40:41,2015-01-04 05:33:33,2015-01-12 11:28:37,3,130.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21331,FISSA,4,2022-11-10 04:34:42,2022-11-27 11:09:09,2022-11-20 22:53:10,3,408,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21332,PARIS,5,2018-04-27 14:51:04,2018-05-10 22:52:50,2018-05-01 02:36:12,2,74.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21333,SEVES,4,2023-06-24 11:54:21,2023-06-30 08:34:29,2023-07-06 08:55:45,2,427,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21334,FRANR,6,2020-09-30 22:36:35,2020-10-18 00:40:32,2020-10-15 17:55:16,2,210.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21335,BONAP,3,2023-01-25 18:10:37,2023-03-09 21:49:13,2023-01-26 08:46:01,1,434,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21336,LAMAI,3,2021-11-27 02:48:21,2021-12-01 07:47:23,2021-12-02 20:37:00,1,94.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21337,GOURL,2,2015-11-07 17:12:28,2015-11-13 08:54:46,2015-11-08 01:06:09,1,270.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21338,WILMK,7,2023-03-16 02:02:43,2023-03-23 04:35:19,2023-04-08 05:07:11,3,210.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21339,WANDK,6,2022-07-28 10:09:17,2022-08-18 11:06:38,2022-08-15 19:06:06,1,30.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21340,BONAP,9,2016-09-15 19:34:13,2016-10-17 06:57:56,2016-09-21 13:35:49,1,411,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21341,ANTON,5,2016-08-03 19:24:55,2016-08-27 17:05:48,2016-08-08 07:20:11,3,273,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21342,VAFFE,6,2013-09-16 00:03:52,2013-10-02 15:20:09,2013-09-30 16:09:23,3,63.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21343,MEREP,1,2015-04-29 01:56:45,2015-05-20 09:44:05,2015-05-10 00:01:57,1,374,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21344,NORTS,6,2017-01-12 09:02:52,2017-01-20 14:09:11,2017-01-18 03:35:16,1,79.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21345,FOLIG,4,2023-09-28 23:33:11,2023-10-02 08:08:11,2023-10-13 18:38:10,1,213.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21346,Val2 ,6,2020-03-22 02:30:58,2020-03-26 09:00:03,2020-03-24 16:31:10,2,384.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21347,BOTTM,5,2013-03-09 00:48:21,2013-03-10 01:28:01,2013-03-14 14:51:25,1,237,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21348,BOLID,3,2021-11-20 08:35:10,2021-12-12 16:46:27,2021-12-14 08:50:55,2,387,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21349,THEBI,8,2020-08-11 22:21:59,2020-08-26 07:46:07,2020-08-15 01:47:08,3,84.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +21350,AROUT,4,2014-07-03 11:19:15,2014-07-27 19:27:23,2014-07-08 03:20:09,3,427.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21351,ROMEY,6,2014-02-21 04:23:26,2014-04-09 07:25:25,2014-02-24 13:46:20,1,243,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21352,LAUGB,9,2015-07-22 23:49:13,2015-07-28 19:25:55,2015-07-27 23:33:39,3,397,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21353,FOLIG,2,2018-06-25 16:39:48,2018-07-14 12:21:14,2018-07-01 01:09:41,2,154,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21354,OLDWO,3,2023-10-23 19:13:45,2023-11-08 13:42:27,2023-11-04 21:40:33,3,341.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21355,PARIS,3,2017-06-11 10:56:54,2017-06-22 17:06:23,2017-06-15 00:39:00,1,367,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21356,OLDWO,5,2020-07-08 02:25:42,2020-07-22 05:53:25,2020-07-28 16:04:53,2,51.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21357,BLAUS,6,2016-05-03 05:34:00,2016-05-12 08:07:15,2016-05-04 01:12:11,2,219,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21358,REGGC,7,2023-05-20 07:46:05,2023-06-12 14:43:41,2023-05-22 08:17:16,1,50.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21359,RANCH,4,2016-10-17 12:59:25,2016-11-11 13:54:21,2016-10-19 11:56:52,1,382,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21360,HUNGO,2,2017-08-16 19:53:56,2017-09-22 16:10:49,2017-08-17 11:08:04,2,263.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21361,RICAR,8,2013-11-30 16:42:23,2014-01-12 00:15:32,2013-12-05 18:44:12,1,254.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21362,MAISD,9,2019-12-17 09:07:52,2019-12-26 22:34:52,2020-01-02 05:21:17,1,220.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21363,ALFKI,1,2013-11-26 20:29:40,2013-11-28 15:53:45,2013-12-07 17:18:56,2,228.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21364,SPLIR,5,2016-12-07 15:54:07,2017-01-09 05:58:00,2016-12-08 04:25:22,3,329,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21365,MAISD,5,2018-05-07 18:46:29,2018-05-21 20:50:54,2018-05-29 13:18:36,3,306.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21366,FOLIG,1,2023-06-22 05:10:29,2023-07-14 21:37:51,2023-06-28 17:48:25,1,131.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21367,BLAUS,3,2012-11-15 12:20:06,2012-11-15 12:54:38,2012-11-18 01:28:09,1,433.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21368,SEVES,6,2012-11-15 07:10:12,2012-12-19 01:49:46,2012-12-04 22:29:22,2,189.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21369,OTTIK,2,2022-07-06 21:05:22,2022-07-29 18:51:35,2022-07-27 16:03:52,3,118.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21370,WARTH,4,2014-10-11 03:33:05,2014-10-13 10:21:20,2014-10-14 12:58:04,1,444.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21371,BSBEV,6,2022-05-27 20:57:58,2022-06-29 02:34:38,2022-06-05 14:33:15,1,323.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21372,WANDK,8,2019-02-09 07:38:15,2019-02-26 22:00:56,2019-02-11 16:07:05,1,96.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21373,CONSH,5,2022-08-07 15:45:45,2022-08-12 22:07:24,2022-08-24 08:42:19,1,279.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21374,CONSH,1,2013-11-22 12:39:39,2013-11-24 21:54:26,2013-11-23 01:59:52,3,397.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21375,LINOD,8,2013-11-05 18:26:30,2013-11-21 10:52:57,2013-11-11 17:12:28,1,33.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21376,FISSA,5,2020-02-26 11:17:42,2020-03-18 03:43:38,2020-03-02 16:15:02,2,100,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21377,NORTS,9,2020-01-21 14:33:57,2020-02-06 14:04:13,2020-01-25 17:48:46,3,38.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21378,SPLIR,7,2019-03-03 22:25:15,2019-03-28 16:58:30,2019-03-08 15:07:21,2,87.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21379,HANAR,7,2012-11-21 12:04:31,2012-11-30 04:09:44,2012-12-13 23:24:33,2,431.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21380,SPECD,1,2022-09-03 19:12:57,2022-09-23 21:35:24,2022-09-17 14:15:04,1,106.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21381,HUNGC,6,2019-11-24 17:18:54,2019-12-16 09:42:27,2019-11-27 06:37:06,3,490,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21382,CONSH,9,2020-05-22 08:57:57,2020-06-04 02:29:21,2020-05-22 17:06:38,2,17.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21383,CHOPS,9,2015-01-03 21:16:56,2015-01-04 14:53:07,2015-01-06 22:44:34,1,110,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21384,PICCO,6,2023-06-22 20:52:59,2023-07-11 06:02:46,2023-07-16 06:16:02,1,304,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21385,CACTU,1,2015-05-14 22:18:15,2015-05-21 13:12:50,2015-06-02 00:28:53,1,100.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21386,CHOPS,2,2022-09-21 20:17:45,2022-09-28 06:53:33,2022-09-22 14:01:13,2,161.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21387,FURIB,3,2019-02-21 04:09:47,2019-03-12 03:53:06,2019-03-11 07:50:43,2,84,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +21388,FOLKO,2,2016-11-02 23:22:47,2016-12-02 02:23:05,2016-11-11 13:36:28,2,177.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21389,LAMAI,1,2016-12-25 10:27:25,2017-02-14 06:56:45,2017-01-04 02:47:54,1,457,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21390,KOENE,3,2018-01-24 12:39:11,2018-02-14 18:30:12,2018-01-25 10:32:40,3,304.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21391,SUPRD,2,2022-01-04 18:08:23,2022-01-17 04:13:30,2022-01-08 21:50:07,2,487,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21392,BLONP,8,2022-04-24 20:45:08,2022-05-09 09:33:12,2022-04-25 16:47:01,3,188.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21393,WARTH,2,2023-05-15 03:33:44,2023-06-14 11:33:33,2023-05-20 15:30:34,2,420.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21394,GROSR,3,2021-04-27 02:42:25,2021-05-06 19:47:10,2021-04-28 03:43:17,2,305.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21395,FRANK,1,2020-08-11 21:45:31,2020-08-26 03:14:10,2020-08-14 13:55:06,1,425.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21396,BERGS,1,2019-10-12 03:48:23,2019-11-16 00:23:23,2019-10-12 07:19:48,2,14.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21397,ISLAT,8,2014-08-03 11:09:51,2014-08-06 00:48:17,2014-08-04 07:46:57,1,191.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21398,HUNGC,4,2021-03-19 23:37:13,2021-04-05 06:20:07,2021-03-20 22:26:33,1,316.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21399,ISLAT,2,2020-12-20 04:08:27,2020-12-20 20:22:25,2020-12-30 02:52:58,3,193.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21400,FAMIA,4,2021-06-20 12:33:16,2021-07-18 14:43:08,2021-06-28 14:38:52,1,100.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21401,WILMK,1,2015-10-11 04:46:04,2015-11-07 08:08:35,2015-10-13 02:33:01,1,277.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21402,GODOS,3,2019-02-01 07:36:29,2019-02-17 13:57:06,2019-02-13 09:02:55,1,185.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21403,ANATR,1,2015-09-03 09:13:44,2015-09-27 05:38:06,2015-09-28 04:10:21,3,368.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21404,WARTH,4,2016-11-02 04:51:51,2016-12-02 01:48:40,2016-11-09 05:30:00,2,69.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21405,GODOS,7,2022-02-27 05:44:41,2022-03-08 07:32:50,2022-03-21 04:40:47,3,88.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21406,SANTG,7,2019-05-02 02:32:57,2019-05-17 22:31:17,2019-05-17 22:04:35,1,440.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21407,OCEAN,2,2023-03-31 04:33:02,2023-04-05 04:52:20,2023-04-10 00:47:25,2,489.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21408,ISLAT,1,2014-08-21 12:45:02,2014-08-25 04:23:39,2014-08-22 02:18:05,1,473,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21409,CACTU,9,2021-09-08 16:32:14,2021-10-27 20:55:57,2021-09-16 23:21:00,3,450,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21410,ANTON,7,2023-01-24 01:25:54,2023-02-07 20:24:35,2023-01-25 01:46:58,2,425.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21411,ISLAT,6,2017-05-27 07:55:28,2017-05-29 19:31:15,2017-06-07 08:16:52,3,449.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21412,LILAS,7,2013-04-12 08:10:15,2013-04-13 12:45:28,2013-04-13 07:36:38,2,68.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21413,QUICK,7,2013-07-23 05:45:25,2013-07-25 12:56:23,2013-08-05 01:34:36,2,272.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21414,VINET,4,2013-05-07 02:35:58,2013-06-22 05:44:16,2013-05-09 08:00:38,1,126.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21415,ALFKI,5,2019-07-17 15:04:28,2019-08-13 01:40:31,2019-07-24 16:41:56,1,384.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21416,GOURL,7,2021-07-02 03:05:15,2021-07-07 16:03:28,2021-07-03 16:02:43,1,425,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21417,LONEP,4,2019-10-23 00:37:12,2019-11-20 12:18:51,2019-10-29 01:03:58,3,164.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21418,BONAP,6,2019-12-31 18:54:51,2020-02-03 13:51:08,2020-01-08 04:50:00,3,501.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +21419,GROSR,7,2015-07-25 04:15:22,2015-08-14 15:02:41,2015-08-02 05:04:09,1,303,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21420,ANATR,8,2019-09-01 09:54:04,2019-09-23 13:49:07,2019-09-04 17:13:05,2,446.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21421,HUNGC,7,2015-11-08 20:31:30,2015-11-22 00:10:43,2015-11-28 13:41:24,3,48.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21422,CENTC,4,2020-08-20 02:27:18,2020-08-27 01:41:10,2020-09-16 08:35:22,1,68,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21423,CENTC,5,2017-06-07 18:31:25,2017-06-21 06:37:23,2017-06-10 21:03:27,3,273.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21424,LEHMS,1,2023-01-06 05:17:14,2023-01-25 00:58:25,2023-02-01 07:35:41,2,71.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21425,GROSR,5,2023-04-20 10:12:08,2023-04-25 01:25:51,2023-04-21 10:03:00,1,291,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21426,SPLIR,4,2023-08-13 02:39:14,2023-08-28 14:23:32,2023-08-17 21:32:34,2,281.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21427,CHOPS,1,2020-11-07 03:45:08,2020-11-07 06:22:16,2020-11-20 03:12:10,1,235.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21428,FISSA,7,2021-07-02 15:28:27,2021-07-19 23:47:27,2021-07-04 16:13:10,3,465.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21429,DUMON,9,2018-03-30 04:07:23,2018-04-05 08:34:14,2018-04-04 13:43:44,1,424.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21430,LEHMS,1,2015-07-21 09:00:10,2015-08-31 14:39:16,2015-08-08 05:14:51,3,351.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21431,MAGAA,1,2017-02-02 22:45:38,2017-03-20 11:38:36,2017-02-18 02:46:09,3,48.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21432,SIMOB,4,2019-07-30 09:19:13,2019-09-22 23:51:14,2019-08-17 19:58:02,3,134.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21433,TRAIH,5,2020-05-19 07:47:41,2020-07-05 05:34:28,2020-05-21 00:30:29,1,172,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21434,FAMIA,2,2022-01-27 12:09:40,2022-02-13 21:54:20,2022-02-04 20:44:25,2,276,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21435,COMMI,2,2019-12-28 18:39:19,2020-01-01 15:16:15,2020-01-01 15:35:50,1,116,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21436,LETSS,2,2017-08-24 23:41:16,2017-09-13 14:42:09,2017-09-02 21:49:39,3,271.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21437,SPECD,2,2012-09-07 00:29:46,2012-10-14 04:55:36,2012-09-11 21:32:16,2,480,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21438,RATTC,3,2019-05-17 08:11:30,2019-05-27 11:13:22,2019-05-24 16:26:52,2,374.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21439,GREAL,3,2013-08-14 16:26:41,2013-08-17 08:06:00,2013-08-16 05:52:09,2,216.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21440,WILMK,7,2017-09-14 09:07:07,2017-09-23 20:01:37,2017-09-14 22:21:01,3,421.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21441,VICTE,7,2019-12-13 12:58:50,2020-01-23 21:26:26,2019-12-18 04:05:59,1,96.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21442,REGGC,8,2021-06-19 23:54:35,2021-06-25 13:48:54,2021-06-21 05:22:07,1,520,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21443,TORTU,5,2018-05-17 12:57:38,2018-05-17 21:43:56,2018-05-21 18:03:40,1,429.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21444,QUEEN,9,2016-03-15 07:44:33,2016-04-10 09:55:58,2016-03-23 13:13:34,3,461.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21445,WOLZA,6,2017-05-03 16:11:13,2017-05-12 13:06:27,2017-05-05 12:12:49,3,418.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21446,ISLAT,2,2019-04-01 01:02:31,2019-04-04 05:36:19,2019-04-01 04:43:37,1,284,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21447,TRAIH,3,2012-12-19 18:46:34,2013-01-25 21:35:17,2012-12-22 15:04:29,1,85,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21448,Val2 ,4,2019-03-30 20:08:51,2019-05-12 19:49:06,2019-04-08 19:15:35,1,430.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21449,BONAP,5,2020-10-02 04:58:31,2020-10-04 08:09:14,2020-10-11 11:10:21,2,136.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21450,SIMOB,5,2022-08-24 10:56:06,2022-09-10 03:36:30,2022-08-27 15:40:00,2,431,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21451,RATTC,8,2018-11-14 16:22:55,2018-11-17 16:16:05,2018-11-15 20:09:17,3,115.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21452,THEBI,4,2014-12-05 10:30:43,2014-12-10 15:40:07,2014-12-08 05:41:22,3,474.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21453,REGGC,5,2016-08-15 00:28:34,2016-08-27 03:52:53,2016-08-18 14:20:36,1,113.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21454,DRACD,4,2022-09-26 21:38:52,2022-10-29 20:38:00,2022-10-16 04:28:36,3,392.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21455,EASTC,4,2020-10-20 22:51:02,2020-11-15 09:24:24,2020-10-22 18:34:29,2,36,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21456,FISSA,7,2014-07-02 10:00:18,2014-07-09 23:21:10,2014-07-09 22:57:12,1,187,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21457,LEHMS,1,2022-12-03 14:40:50,2022-12-31 16:44:25,2022-12-14 10:31:57,3,180.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21458,FOLIG,1,2015-06-09 07:42:42,2015-06-17 14:32:05,2015-06-18 19:44:21,2,146,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21459,ISLAT,9,2023-09-28 20:44:04,2023-10-04 06:44:52,2023-10-01 21:11:59,2,310.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21460,SIMOB,6,2021-04-16 10:34:32,2021-05-02 12:23:35,2021-04-16 10:48:17,3,381.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21461,LEHMS,3,2023-06-19 19:57:20,2023-07-08 04:46:54,2023-06-19 21:41:57,2,558.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21462,SAVEA,9,2019-02-26 06:07:08,2019-03-08 09:04:41,2019-03-01 16:01:55,2,162.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21463,BONAP,2,2017-02-18 21:03:17,2017-03-12 04:56:07,2017-02-21 04:40:46,1,186.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21464,MAGAA,6,2017-04-12 05:43:04,2017-05-05 08:05:25,2017-04-24 18:13:33,2,111.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21465,BONAP,9,2022-07-17 09:08:46,2022-08-10 15:28:34,2022-08-02 01:02:28,3,387.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21466,CENTC,8,2014-04-15 23:53:56,2014-04-21 13:39:30,2014-04-17 18:21:44,3,30,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21467,RATTC,1,2018-04-11 16:50:44,2018-04-20 21:36:01,2018-04-11 19:36:11,1,421.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21468,FRANS,2,2018-03-08 18:26:11,2018-04-11 19:35:34,2018-03-12 04:05:51,2,142.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +21469,FAMIA,7,2021-08-23 09:21:13,2021-09-01 15:02:24,2021-08-26 18:14:52,3,476.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21470,WANDK,2,2014-06-19 09:11:01,2014-06-25 03:36:29,2014-06-19 13:28:37,1,139,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +21471,BOTTM,7,2020-11-16 08:29:48,2020-12-08 19:04:44,2020-11-19 15:48:46,3,202.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21472,PERIC,6,2020-02-06 16:59:03,2020-03-12 14:25:41,2020-02-19 20:48:41,3,18.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21473,FISSA,5,2018-03-21 13:03:30,2018-03-28 23:02:03,2018-03-25 04:57:02,2,226,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21474,LILAS,7,2020-03-08 09:05:38,2020-03-31 17:31:44,2020-03-27 21:43:54,1,484.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21475,SPECD,4,2017-06-21 10:30:08,2017-06-26 20:42:27,2017-06-24 00:46:54,3,32,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21476,LAZYK,4,2013-01-11 09:31:50,2013-01-14 00:46:01,2013-01-12 12:20:29,1,156.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21477,Val2 ,7,2020-02-20 12:15:06,2020-03-03 20:09:38,2020-02-20 13:23:58,2,250.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21478,RANCH,1,2020-12-17 19:43:28,2021-01-08 17:09:24,2020-12-23 06:45:16,3,406.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21479,GROSR,9,2020-07-13 20:38:11,2020-07-26 01:16:24,2020-08-04 12:45:29,3,353,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21480,TORTU,6,2014-12-21 23:23:07,2014-12-28 13:06:49,2015-01-10 18:04:23,2,44.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21481,HUNGC,4,2022-04-18 09:03:36,2022-05-21 01:51:42,2022-05-13 07:34:36,3,322.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21482,THEBI,2,2021-12-06 07:07:21,2021-12-25 05:04:27,2021-12-14 09:59:40,2,386.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21483,BERGS,9,2015-06-16 02:09:14,2015-06-27 13:08:08,2015-06-29 14:48:15,1,238.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21484,GREAL,8,2013-04-01 22:59:13,2013-04-07 07:53:12,2013-04-06 17:13:14,3,89.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21485,QUEEN,9,2013-08-12 18:56:21,2013-08-21 22:20:36,2013-08-16 21:12:47,1,399,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21486,ISLAT,9,2020-09-18 23:38:43,2020-10-04 14:31:58,2020-10-11 20:27:16,1,434,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21487,TOMSP,4,2015-05-18 20:07:22,2015-05-26 00:23:47,2015-05-24 16:04:25,2,112.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21488,HUNGO,3,2021-09-04 03:57:42,2021-10-08 11:49:27,2021-09-14 17:29:49,3,438.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21489,HILAA,9,2013-07-22 22:57:08,2013-07-27 09:17:01,2013-08-13 13:46:39,3,328,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21490,QUEEN,5,2019-09-26 18:48:58,2019-10-15 17:33:06,2019-10-01 06:37:01,3,529.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21491,BLONP,1,2014-05-08 23:52:47,2014-05-17 00:27:04,2014-06-02 03:25:48,2,173.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21492,TORTU,9,2019-03-31 22:54:27,2019-04-19 02:42:10,2019-04-09 14:34:31,3,535,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21493,GOURL,1,2015-08-06 12:24:40,2015-08-16 09:11:32,2015-08-08 02:04:34,1,262.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +21494,WARTH,9,2015-01-19 11:29:29,2015-01-21 18:40:41,2015-01-24 04:38:06,3,12.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21495,SIMOB,4,2019-01-03 04:23:40,2019-01-22 10:35:38,2019-01-21 14:50:08,3,118.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21496,PERIC,7,2021-04-28 16:04:22,2021-06-11 21:01:11,2021-05-01 06:02:11,1,238.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21497,RANCH,5,2016-09-20 21:31:47,2016-10-13 15:45:53,2016-09-25 05:43:16,1,21.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21498,PERIC,2,2021-10-21 23:56:57,2021-11-12 22:44:49,2021-10-27 04:50:36,1,155.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21499,TORTU,4,2019-05-01 00:53:26,2019-05-11 03:41:44,2019-05-05 12:49:40,3,319,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21500,DUMON,4,2023-08-02 13:56:28,2023-08-03 17:51:07,2023-08-08 17:38:02,1,306.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21501,CONSH,8,2016-10-07 14:26:50,2016-10-25 23:23:23,2016-10-09 01:32:02,3,453.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21502,HUNGC,9,2013-08-16 06:54:05,2013-08-18 07:29:54,2013-08-18 00:09:09,1,265.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21503,RANCH,7,2020-07-11 08:30:48,2020-08-31 12:46:13,2020-07-14 10:56:57,3,401.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21504,WOLZA,8,2023-08-30 09:03:02,2023-09-12 00:02:29,2023-09-05 07:05:10,3,384,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21505,MEREP,1,2017-07-09 15:04:48,2017-08-01 08:59:54,2017-07-14 17:52:38,2,444.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21506,SPLIR,2,2023-04-25 15:43:57,2023-05-31 06:54:19,2023-05-07 15:04:59,2,234.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21507,LINOD,6,2018-09-18 09:52:27,2018-10-30 21:00:48,2018-09-22 07:50:17,1,241.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21508,BERGS,8,2016-11-26 00:53:25,2017-01-16 16:51:51,2016-11-26 07:50:46,1,402.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +21509,VALON,4,2014-10-18 19:00:55,2014-11-10 03:35:31,2014-11-04 10:34:26,1,380,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21510,ANATR,5,2021-09-03 23:25:57,2021-09-28 07:28:10,2021-09-17 23:42:24,1,46,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21511,ERNSH,2,2017-11-05 19:09:53,2017-12-19 13:10:24,2017-11-13 19:22:59,2,362.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21512,SPECD,7,2013-05-25 19:44:43,2013-05-26 06:08:46,2013-05-31 00:46:59,2,407,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21513,DRACD,1,2017-01-06 08:32:50,2017-01-21 11:27:40,2017-01-07 20:32:38,1,129.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21514,GOURL,1,2023-05-15 22:51:51,2023-06-12 17:23:53,2023-05-21 20:20:28,3,447.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21515,TRADH,7,2022-08-15 00:25:34,2022-08-31 00:54:24,2022-08-23 21:27:32,1,180.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21516,ANTON,6,2015-03-05 15:53:04,2015-03-10 08:50:51,2015-03-11 14:28:08,2,98.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21517,VINET,9,2015-04-25 18:57:09,2015-05-22 07:42:27,2015-05-02 05:58:36,2,325.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21518,LILAS,7,2017-12-23 11:46:59,2017-12-28 06:55:47,2017-12-25 01:20:33,1,159.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21519,CONSH,9,2015-11-07 07:33:34,2015-12-05 22:55:40,2015-11-28 17:23:48,2,252.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21520,RATTC,4,2013-06-17 04:54:31,2013-07-20 11:20:14,2013-06-25 18:46:27,3,208,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21521,THEBI,7,2022-06-20 08:24:28,2022-07-09 22:49:23,2022-07-04 19:34:39,3,40.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21522,CACTU,8,2013-05-22 11:23:48,2013-05-27 13:39:32,2013-06-03 21:55:33,2,387.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21523,NORTS,8,2022-07-05 08:15:34,2022-07-21 10:21:06,2022-07-07 13:10:44,1,234.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21524,CHOPS,5,2020-05-11 14:43:49,2020-06-19 14:27:47,2020-05-14 18:57:51,1,103.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21525,FISSA,2,2012-08-17 08:46:35,2012-09-18 09:29:52,2012-09-05 23:01:08,3,222.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21526,FISSA,7,2019-10-03 10:08:53,2019-10-19 07:01:57,2019-10-13 09:03:03,3,349.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21527,GOURL,7,2022-09-12 11:31:11,2022-09-19 17:34:45,2022-09-24 06:22:30,2,299.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +21528,RICAR,3,2020-03-11 18:02:25,2020-04-11 19:39:41,2020-03-12 03:12:20,1,39.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21529,WARTH,8,2019-10-13 14:14:26,2019-10-22 10:46:15,2019-10-14 22:41:44,2,85.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21530,RICAR,6,2012-12-28 14:58:25,2013-01-07 10:43:22,2013-01-08 07:05:27,3,225.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21531,BLAUS,7,2014-01-26 01:35:56,2014-01-29 19:20:53,2014-01-28 23:26:37,3,79.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21532,ISLAT,7,2018-05-20 18:46:05,2018-06-05 10:42:21,2018-05-21 10:48:11,3,23.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21533,RICAR,8,2017-11-24 00:07:43,2017-11-28 02:21:53,2017-11-25 01:08:56,3,54.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21534,QUEEN,9,2013-08-12 17:31:36,2013-08-18 05:46:02,2013-09-03 03:57:22,2,99.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21535,PARIS,1,2018-07-11 20:23:54,2018-07-29 14:59:20,2018-07-15 02:18:49,2,180.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21536,BLAUS,7,2018-05-14 02:55:05,2018-05-21 07:45:08,2018-05-14 20:05:09,1,215,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21537,FRANS,3,2019-05-28 22:09:27,2019-06-20 15:30:04,2019-05-30 14:15:20,1,92,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21538,LAZYK,5,2021-06-12 06:12:15,2021-06-23 07:43:37,2021-06-17 18:18:37,2,443.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21539,FRANK,8,2014-05-29 19:48:30,2014-06-17 19:22:40,2014-05-31 13:15:42,2,224.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21540,MORGK,7,2022-08-04 05:33:57,2022-08-30 03:04:13,2022-08-04 09:57:09,1,63,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21541,VAFFE,4,2019-12-22 13:49:00,2020-01-11 16:34:34,2019-12-30 01:00:06,2,415.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21542,NORTS,3,2022-11-16 08:00:00,2023-01-07 12:57:17,2022-11-20 03:33:12,1,45.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21543,OLDWO,8,2021-03-03 05:59:36,2021-04-16 01:16:32,2021-03-03 18:12:02,1,120,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21544,CACTU,8,2017-08-16 10:28:43,2017-10-11 11:40:50,2017-08-30 11:50:10,1,422.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21545,RANCH,9,2015-09-12 06:09:40,2015-10-15 10:54:10,2015-09-26 22:23:43,1,26.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21546,LINOD,8,2012-07-17 22:46:33,2012-08-12 21:21:22,2012-07-22 01:38:56,2,232.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21547,GOURL,5,2018-08-25 07:46:39,2018-09-06 18:07:25,2018-08-26 17:11:57,2,111.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21548,PRINI,5,2016-01-11 16:29:47,2016-01-21 05:27:20,2016-01-12 04:33:17,1,369.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21549,VICTE,6,2017-03-04 22:31:53,2017-04-06 09:35:45,2017-03-07 14:33:59,2,469.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21550,TRAIH,9,2015-03-30 03:03:47,2015-04-23 13:39:41,2015-04-15 09:29:28,1,405.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21551,RANCH,1,2016-08-19 19:00:44,2016-09-19 09:08:09,2016-08-22 22:26:12,2,221.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21552,BONAP,7,2017-08-16 08:40:55,2017-09-28 22:27:56,2017-08-16 15:13:22,1,120.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21553,AROUT,1,2015-09-08 12:27:56,2015-10-23 18:42:08,2015-10-01 20:18:35,3,140.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21554,TRADH,2,2014-08-17 13:46:48,2014-09-03 21:11:37,2014-08-22 09:58:11,1,397.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21555,THECR,5,2021-03-24 11:39:55,2021-04-28 22:09:04,2021-03-30 11:29:53,3,163.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +21556,SANTG,4,2017-02-20 05:09:54,2017-03-28 16:57:46,2017-02-20 16:26:59,3,211.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21557,SANTG,4,2012-09-24 23:26:40,2012-09-25 17:06:23,2012-10-19 17:21:29,1,285.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21558,HANAR,4,2020-06-20 09:46:38,2020-07-12 22:07:52,2020-07-04 11:57:59,2,49.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21559,RICSU,4,2012-09-21 02:16:09,2012-09-29 21:15:35,2012-09-26 05:30:21,3,390.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21560,FISSA,4,2016-12-01 10:12:42,2016-12-03 17:43:10,2016-12-09 14:33:15,3,104.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21561,THEBI,8,2019-06-22 22:14:20,2019-07-06 15:03:32,2019-07-05 19:30:50,3,379.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21562,OCEAN,3,2020-12-06 14:03:11,2020-12-08 07:54:15,2020-12-19 20:53:42,2,369.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21563,LAZYK,4,2014-01-08 16:35:15,2014-02-01 21:35:31,2014-01-08 21:34:24,3,393,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21564,FAMIA,2,2014-11-26 18:28:03,2015-01-15 03:25:53,2014-11-28 06:27:43,3,309.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21565,DRACD,9,2015-08-19 10:19:50,2015-08-29 18:10:04,2015-08-28 21:12:15,2,217.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21566,COMMI,2,2022-05-07 10:03:22,2022-05-09 09:43:48,2022-05-12 12:59:23,2,477.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21567,LETSS,7,2014-01-04 11:27:10,2014-01-17 02:34:22,2014-01-16 21:29:42,3,463.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21568,PICCO,8,2022-06-10 02:11:54,2022-07-29 01:37:27,2022-06-11 07:31:23,2,50,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21569,CENTC,5,2021-04-11 09:21:10,2021-04-21 01:06:32,2021-04-13 00:31:30,3,43.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21570,PARIS,7,2021-10-29 14:25:19,2021-12-02 23:19:36,2021-10-31 15:28:52,1,189,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21571,VINET,9,2018-01-22 21:40:25,2018-02-24 01:13:20,2018-01-23 01:08:00,3,294.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21572,GOURL,6,2013-09-23 16:30:59,2013-09-25 14:29:16,2013-10-14 10:58:54,2,389.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21573,CENTC,2,2014-06-24 04:15:19,2014-07-22 07:45:16,2014-07-10 10:24:29,3,461.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21574,LEHMS,8,2022-06-21 19:45:25,2022-07-09 22:53:47,2022-06-22 02:39:19,2,278,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21575,FOLKO,9,2018-08-02 04:37:22,2018-08-13 23:27:57,2018-08-03 23:02:42,2,140.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21576,OCEAN,1,2022-03-31 21:54:43,2022-04-14 09:04:08,2022-04-01 14:19:06,2,360.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21577,COMMI,2,2021-11-02 02:16:02,2021-11-08 21:42:30,2021-11-20 14:12:31,2,384.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21578,RICAR,3,2021-04-14 03:09:42,2021-04-25 01:16:24,2021-04-22 11:47:28,3,79.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21579,RICSU,3,2017-12-28 13:03:12,2018-01-13 00:01:02,2017-12-29 05:28:41,3,16.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21580,FAMIA,8,2017-03-16 00:51:29,2017-03-20 08:16:57,2017-03-23 18:51:34,2,332.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21581,LAUGB,7,2018-05-04 15:43:31,2018-05-22 17:11:38,2018-05-10 02:44:58,2,393.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21582,COMMI,4,2013-12-27 04:44:03,2014-01-07 14:21:39,2013-12-29 00:11:43,1,149.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21583,HILAA,9,2023-01-07 14:57:03,2023-01-23 01:05:37,2023-01-11 04:43:57,2,258,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21584,REGGC,6,2023-08-25 01:48:55,2023-09-13 01:19:17,2023-08-29 10:10:58,2,147.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21585,BOTTM,6,2017-01-10 09:46:30,2017-02-25 03:24:33,2017-01-14 04:03:49,3,141.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21586,QUEDE,9,2013-10-19 02:26:09,2013-11-04 00:47:33,2013-11-09 23:50:17,2,92,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21587,CONSH,3,2021-01-04 15:15:37,2021-01-06 07:48:02,2021-01-11 00:20:26,3,346.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21588,FISSA,6,2018-09-10 23:12:12,2018-10-07 21:21:20,2018-10-04 01:32:37,2,283.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21589,LACOR,6,2015-05-28 01:42:10,2015-06-17 00:49:31,2015-06-01 05:17:10,1,416,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21590,GREAL,6,2013-06-17 21:32:26,2013-06-17 23:46:35,2013-07-11 13:50:41,3,449.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21591,VINET,3,2013-08-13 06:14:31,2013-08-31 19:53:08,2013-08-13 20:33:06,1,426,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21592,BSBEV,8,2022-05-08 07:15:09,2022-05-12 01:27:16,2022-05-22 11:37:06,3,343.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21593,SAVEA,2,2022-02-09 18:27:39,2022-02-26 06:59:57,2022-02-10 01:37:28,3,276,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21594,ANTON,6,2015-03-14 12:59:34,2015-04-15 01:54:46,2015-04-03 23:18:22,3,218.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21595,ANATR,2,2018-06-04 06:17:09,2018-07-02 14:09:48,2018-06-24 13:52:09,2,440.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21596,ISLAT,1,2014-04-17 14:43:31,2014-04-18 07:02:01,2014-04-18 16:07:52,1,72,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +21597,ANATR,6,2020-02-11 18:12:12,2020-02-17 23:01:32,2020-03-02 01:23:51,3,502.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21598,NORTS,2,2018-08-23 14:19:09,2018-09-06 11:28:38,2018-08-24 05:36:41,3,311,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21599,MAGAA,2,2020-04-13 11:44:54,2020-04-23 13:44:21,2020-04-19 17:56:57,2,452,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21600,LACOR,4,2020-07-07 01:30:37,2020-07-26 18:59:57,2020-07-09 21:44:18,2,302.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21601,PRINI,7,2014-01-29 00:59:21,2014-02-10 21:21:43,2014-02-13 08:08:52,2,525.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21602,AROUT,2,2013-10-25 02:37:38,2013-10-31 13:10:23,2013-10-29 01:56:55,1,437.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21603,FURIB,6,2015-01-19 07:41:02,2015-01-28 17:59:35,2015-01-20 16:10:30,3,252.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +21604,SANTG,9,2022-08-25 09:23:45,2022-09-03 12:42:15,2022-08-31 16:26:58,1,489.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21605,CHOPS,5,2021-02-11 15:10:43,2021-02-11 15:25:06,2021-02-25 17:30:51,2,424.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21606,SPECD,6,2022-12-20 09:23:51,2022-12-31 04:04:45,2022-12-28 14:20:57,2,230.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21607,EASTC,4,2021-07-20 22:02:24,2021-07-20 22:35:56,2021-08-03 15:19:36,3,462.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21608,BERGS,3,2023-05-30 04:09:40,2023-05-31 18:26:32,2023-06-14 14:39:53,3,306.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21609,BLAUS,8,2021-03-24 20:39:31,2021-04-24 15:55:30,2021-04-03 10:30:09,2,17,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21610,KOENE,6,2014-07-19 09:07:16,2014-08-01 19:12:57,2014-07-20 07:46:20,2,137.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21611,RICSU,3,2016-07-29 21:04:16,2016-07-31 03:59:23,2016-08-19 09:27:06,1,378.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21612,TORTU,2,2021-04-13 03:59:06,2021-04-27 20:31:06,2021-04-17 10:47:00,1,22.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21613,LONEP,4,2022-09-03 03:46:37,2022-09-09 06:12:52,2022-09-10 21:18:31,2,255.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21614,RANCH,6,2017-07-08 13:04:55,2017-08-24 19:19:06,2017-07-11 22:10:04,1,542.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21615,GROSR,3,2013-06-16 18:19:47,2013-06-17 16:55:29,2013-06-18 05:18:14,3,325.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21616,AROUT,8,2022-12-16 23:13:08,2023-01-11 14:06:39,2022-12-18 13:47:23,2,167.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21617,GROSR,5,2013-10-24 06:10:32,2013-11-04 01:48:57,2013-11-17 00:22:48,1,342.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21618,CENTC,5,2019-04-02 09:35:12,2019-05-13 04:34:58,2019-04-07 09:58:52,2,141.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21619,WARTH,4,2012-09-24 15:46:48,2012-09-26 13:05:31,2012-09-25 13:05:38,1,479,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21620,SANTG,4,2020-02-03 03:36:13,2020-02-22 04:24:53,2020-02-04 10:06:52,1,97,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21621,RICAR,5,2023-09-22 13:14:26,2023-09-22 22:46:52,2023-10-01 21:21:52,3,265.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21622,LETSS,5,2022-11-23 03:43:18,2023-01-01 12:57:32,2022-11-23 23:45:13,1,349.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21623,LILAS,7,2019-01-01 14:48:21,2019-02-11 02:45:01,2019-01-13 01:18:35,1,56.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21624,MAISD,6,2014-04-30 09:34:06,2014-05-26 05:44:44,2014-04-30 20:44:03,2,470,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21625,FOLIG,1,2021-10-13 10:47:01,2021-11-08 04:40:51,2021-10-14 09:13:02,2,322,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21626,SANTG,7,2017-03-12 00:56:16,2017-04-09 13:49:23,2017-03-18 00:56:04,1,304.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21627,CONSH,5,2023-08-13 21:43:10,2023-08-30 12:57:34,2023-08-20 02:21:20,1,368.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21628,RANCH,9,2017-09-15 11:00:13,2017-09-30 12:47:11,2017-09-29 06:11:32,2,180.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21629,SIMOB,6,2022-06-11 04:59:22,2022-06-26 14:03:34,2022-06-18 11:25:15,1,134.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21630,WHITC,1,2017-11-10 07:28:32,2017-11-28 16:13:09,2017-12-02 02:35:19,2,449.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21631,FRANS,3,2020-01-15 06:07:43,2020-02-29 06:54:29,2020-01-20 20:52:34,2,58.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21632,OLDWO,9,2023-02-05 16:57:29,2023-03-25 08:48:04,2023-02-09 09:51:35,1,125.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21633,WARTH,6,2016-08-22 14:25:14,2016-09-25 03:35:42,2016-08-24 11:22:05,3,480.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21634,FRANS,3,2013-04-16 09:12:32,2013-06-11 10:52:21,2013-04-17 17:12:53,2,100.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21635,PRINI,7,2016-03-05 12:20:44,2016-03-23 21:43:11,2016-03-19 02:48:17,1,469.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21636,DRACD,5,2023-03-28 07:10:38,2023-04-01 15:59:28,2023-03-31 16:10:32,1,386.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21637,RANCH,7,2016-08-02 09:19:04,2016-08-14 20:58:35,2016-08-04 04:33:21,1,212.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +21638,HANAR,9,2012-12-13 08:33:16,2013-01-06 14:22:00,2012-12-23 21:54:24,2,300.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21639,WANDK,5,2014-08-11 06:03:37,2014-09-16 19:47:55,2014-08-16 07:24:06,3,456.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21640,LAZYK,8,2016-10-28 07:47:28,2016-11-28 02:27:21,2016-11-03 13:11:28,2,348.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21641,PARIS,3,2014-04-16 12:56:27,2014-05-11 21:14:39,2014-04-25 17:23:45,2,424.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21642,BOTTM,4,2015-11-10 20:09:14,2015-11-23 15:28:50,2015-11-12 08:09:19,3,21.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21643,QUEDE,2,2013-08-14 06:31:25,2013-08-24 10:26:10,2013-08-22 20:54:52,1,304.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21644,MEREP,4,2019-09-25 14:47:13,2019-10-31 08:15:21,2019-10-05 11:37:10,1,92.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21645,PICCO,5,2014-11-14 11:47:10,2014-11-15 04:04:00,2014-11-15 15:33:40,1,447.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21646,VALON,6,2023-02-19 14:59:35,2023-03-27 06:22:46,2023-03-09 19:21:55,2,48.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21647,LETSS,3,2015-05-13 02:16:19,2015-05-19 04:42:41,2015-05-22 14:50:09,2,41.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21648,SEVES,4,2012-11-27 01:18:57,2012-12-01 04:28:46,2012-12-01 08:55:03,1,431,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21649,OLDWO,4,2020-01-23 10:50:05,2020-01-30 21:02:43,2020-01-24 02:29:32,2,108,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21650,THECR,9,2019-07-19 17:00:34,2019-08-10 12:26:11,2019-08-01 14:01:38,1,132.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21651,THEBI,5,2020-03-06 04:22:27,2020-03-30 01:27:51,2020-04-01 01:00:30,3,291.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21652,LINOD,5,2013-12-18 08:05:44,2013-12-25 13:30:17,2013-12-21 03:55:21,1,55.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21653,FURIB,2,2016-06-09 13:07:30,2016-06-30 18:24:07,2016-06-09 14:48:22,1,408,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21654,NORTS,6,2017-01-23 07:25:17,2017-03-20 00:21:10,2017-01-26 19:36:07,2,195.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +21655,PICCO,9,2015-12-21 05:22:43,2016-01-30 16:03:05,2016-01-10 06:07:33,2,386.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21656,WANDK,3,2012-10-09 12:51:58,2012-10-29 09:33:51,2012-10-10 10:18:34,2,416,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21657,FRANS,9,2014-12-05 07:48:34,2014-12-08 03:55:05,2014-12-11 19:36:29,3,197.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21658,BOTTM,4,2022-05-12 03:37:04,2022-05-24 00:43:12,2022-05-15 13:52:34,3,327.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21659,BOTTM,3,2014-11-05 18:30:44,2014-11-10 06:25:29,2014-11-06 06:16:55,3,248.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21660,LAZYK,2,2022-03-10 21:03:52,2022-04-17 17:57:20,2022-03-18 22:03:52,2,293.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21661,TRADH,9,2015-12-03 06:40:00,2016-01-21 13:12:59,2015-12-19 13:26:03,3,344.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21662,CHOPS,9,2023-07-25 18:42:41,2023-09-07 17:57:15,2023-08-07 08:45:31,1,329,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21663,BSBEV,7,2018-07-30 07:17:26,2018-08-02 14:58:51,2018-07-31 03:11:54,1,141.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21664,VAFFE,8,2016-04-09 05:41:57,2016-04-19 08:45:47,2016-04-25 16:56:54,1,32.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21665,VINET,2,2015-07-13 18:29:38,2015-08-23 16:42:02,2015-07-14 01:56:22,1,279.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21666,ANATR,8,2014-01-07 04:11:14,2014-01-11 18:57:28,2014-01-07 21:29:15,2,379,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21667,WOLZA,7,2017-09-04 06:11:41,2017-09-12 16:47:23,2017-09-04 12:32:04,1,73.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21668,SUPRD,6,2020-02-21 15:22:34,2020-02-29 05:22:18,2020-02-27 22:05:30,2,351.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21669,MEREP,7,2014-12-04 09:35:01,2014-12-19 14:23:39,2014-12-09 18:30:28,3,521.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21670,HUNGO,6,2021-03-11 13:40:09,2021-04-01 08:41:23,2021-03-27 13:23:25,2,63.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21671,PRINI,8,2012-12-12 22:34:31,2013-01-03 03:46:28,2012-12-30 09:04:58,3,343.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21672,BSBEV,2,2022-05-12 07:00:29,2022-06-05 23:27:52,2022-06-01 23:14:52,2,447,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21673,VALON,5,2023-08-13 18:23:28,2023-09-11 20:46:05,2023-08-18 14:21:36,1,130,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21674,BONAP,7,2015-09-10 05:45:09,2015-09-15 06:27:40,2015-09-29 00:41:35,1,371.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21675,ANTON,7,2013-05-12 16:36:01,2013-05-14 02:36:00,2013-05-13 00:42:41,2,203.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21676,PARIS,4,2020-02-19 14:44:29,2020-03-15 05:40:38,2020-03-08 14:44:46,2,225,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +21677,DRACD,5,2016-04-30 19:23:31,2016-05-30 22:13:17,2016-05-05 07:22:59,2,409.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21678,GOURL,4,2013-09-15 13:01:03,2013-10-11 12:21:02,2013-09-29 09:41:45,2,47.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21679,FAMIA,5,2018-09-26 18:33:24,2018-10-03 15:34:08,2018-10-08 18:33:28,2,177.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21680,RANCH,7,2012-07-28 09:06:42,2012-09-02 01:58:41,2012-08-08 08:11:37,1,324.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21681,WILMK,7,2018-04-16 03:22:25,2018-05-07 04:26:34,2018-04-16 09:54:55,2,31,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21682,PICCO,7,2022-11-25 10:40:06,2022-12-16 00:04:35,2022-11-26 07:24:13,3,247,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21683,NORTS,3,2015-03-18 20:42:37,2015-04-09 16:24:02,2015-03-26 16:01:13,1,270.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21684,TOMSP,9,2013-06-09 08:13:34,2013-06-26 06:59:58,2013-06-13 05:03:37,1,224.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21685,HUNGC,1,2012-12-31 12:33:54,2013-02-06 03:20:21,2013-01-09 09:31:34,2,474.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21686,GALED,2,2014-09-24 08:35:09,2014-10-18 22:11:12,2014-10-07 15:00:06,1,535.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21687,QUEDE,4,2013-10-02 15:50:50,2013-10-15 14:39:25,2013-10-12 21:43:12,1,292.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21688,QUEEN,9,2023-02-25 04:23:48,2023-03-07 09:15:51,2023-02-26 17:50:35,3,513.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21689,MORGK,7,2021-11-30 02:05:09,2021-12-06 19:13:10,2021-12-07 10:29:33,1,485.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21690,DRACD,7,2016-10-12 10:39:56,2016-11-27 14:09:04,2016-11-09 11:13:04,2,251.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21691,ALFKI,3,2019-04-07 22:43:25,2019-04-20 23:44:04,2019-04-09 05:13:11,1,102.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21692,HILAA,9,2022-10-30 03:59:07,2022-11-06 17:19:44,2022-11-26 14:22:25,2,551.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21693,LAZYK,5,2021-05-04 11:34:39,2021-05-17 18:26:55,2021-05-20 15:41:40,3,475,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21694,HANAR,2,2019-01-05 18:21:26,2019-01-17 17:38:20,2019-01-16 13:08:33,2,82,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21695,SANTG,9,2015-04-03 09:35:11,2015-05-08 00:21:05,2015-04-05 07:41:44,3,346,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21696,ERNSH,4,2016-06-07 23:42:54,2016-06-27 12:21:33,2016-06-13 17:46:43,3,446,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21697,REGGC,7,2013-01-22 05:32:46,2013-02-05 18:40:25,2013-01-31 22:45:37,3,256.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21698,BERGS,1,2013-10-04 13:46:17,2013-10-15 01:17:43,2013-10-09 08:27:45,1,256.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21699,BLAUS,5,2018-10-16 00:08:00,2018-10-29 08:03:50,2018-10-21 14:28:32,1,281.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21700,MAISD,9,2014-12-27 03:00:45,2015-01-19 20:13:08,2015-01-13 16:27:34,2,93,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21701,FISSA,7,2014-03-13 21:18:14,2014-03-25 10:00:14,2014-04-07 04:16:41,1,296.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +21702,TRADH,7,2014-01-17 20:36:35,2014-02-10 14:08:54,2014-02-15 02:21:58,3,251.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21703,SEVES,2,2016-12-27 16:39:16,2017-01-17 10:05:36,2017-01-11 01:22:56,2,298.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21704,LILAS,7,2021-09-27 00:14:05,2021-10-10 22:32:38,2021-10-06 19:18:53,1,367.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21705,FRANK,9,2020-10-09 19:17:24,2020-10-27 00:53:51,2020-10-14 19:43:41,2,249.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21706,SAVEA,7,2022-08-07 03:03:20,2022-08-26 10:32:07,2022-08-26 08:50:05,2,154.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21707,FISSA,3,2020-04-16 23:12:17,2020-04-22 10:37:28,2020-04-19 01:40:11,2,257.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21708,RANCH,6,2022-07-11 21:16:49,2022-08-13 06:17:07,2022-07-17 14:18:00,1,79.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21709,SAVEA,4,2023-09-09 10:25:07,2023-09-27 22:08:42,2023-09-14 06:36:18,1,327.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21710,BLONP,8,2018-08-05 19:22:46,2018-08-19 01:09:22,2018-08-16 11:57:40,3,286.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21711,CONSH,7,2022-05-21 17:05:59,2022-06-22 09:16:38,2022-05-22 06:57:13,1,411,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21712,ANTON,6,2016-02-20 17:58:17,2016-02-23 03:07:39,2016-02-25 04:57:17,2,95,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21713,LAZYK,4,2020-07-19 02:36:33,2020-08-16 16:04:43,2020-07-19 15:49:38,1,411.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21714,CONSH,1,2013-04-20 20:12:10,2013-04-23 17:15:11,2013-04-21 13:33:28,2,246.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21715,PERIC,6,2021-07-29 07:08:27,2021-08-15 17:58:15,2021-08-21 11:57:22,1,290.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21716,FRANR,6,2018-10-28 06:45:00,2018-11-06 01:09:07,2018-10-30 09:41:46,1,296.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21717,BERGS,4,2017-05-01 21:55:14,2017-05-16 17:31:19,2017-05-24 10:31:40,2,136.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21718,MORGK,5,2018-10-27 23:33:36,2018-11-27 03:29:50,2018-10-28 21:53:12,2,99.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21719,ISLAT,6,2017-04-13 05:59:28,2017-04-13 15:20:03,2017-04-13 14:37:06,3,302.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +21720,HANAR,5,2022-09-15 03:35:19,2022-10-06 08:52:17,2022-09-17 20:39:59,2,227.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21721,WILMK,1,2022-05-21 21:31:44,2022-06-26 18:11:58,2022-05-24 06:30:01,1,78.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21722,SPECD,7,2013-06-01 11:23:01,2013-06-18 12:21:53,2013-06-08 02:43:50,2,69.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +21723,WARTH,5,2012-11-22 09:35:44,2012-12-12 23:21:50,2012-11-24 22:44:45,3,349.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +21724,NORTS,6,2015-12-31 00:38:26,2016-01-15 23:41:06,2016-01-12 13:00:47,1,284,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21725,VICTE,3,2021-08-04 20:07:23,2021-08-19 07:40:14,2021-08-06 08:30:43,1,341,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21726,SANTG,3,2017-07-16 00:13:27,2017-08-08 03:08:02,2017-07-19 22:16:31,2,480.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21727,RICAR,6,2022-09-04 00:48:27,2022-09-29 02:27:11,2022-09-19 21:46:09,2,239.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21728,THEBI,4,2014-07-09 05:07:29,2014-08-21 21:46:29,2014-07-14 06:39:14,1,447.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21729,DUMON,4,2021-04-10 09:45:55,2021-05-02 03:19:01,2021-04-25 01:26:09,2,198,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21730,FRANR,5,2022-06-30 17:44:54,2022-07-20 04:43:27,2022-07-02 20:25:24,2,249.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21731,BOTTM,9,2014-09-06 00:14:03,2014-09-06 16:13:52,2014-09-27 21:42:49,3,40.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21732,KOENE,1,2023-04-26 04:49:44,2023-05-06 22:16:02,2023-05-10 00:24:25,3,111,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21733,LAZYK,7,2019-11-28 00:25:08,2019-12-13 07:34:05,2019-11-29 02:07:37,3,187.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21734,SPLIR,9,2016-01-15 02:38:20,2016-01-25 23:12:13,2016-01-27 23:59:21,2,401.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21735,FRANR,3,2017-04-04 11:02:07,2017-04-04 22:53:06,2017-04-10 22:32:24,3,52,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21736,TRADH,2,2019-08-25 16:44:10,2019-09-22 09:15:16,2019-08-31 00:19:31,2,227,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21737,SEVES,6,2023-02-09 18:43:02,2023-02-25 01:30:09,2023-03-10 08:22:04,3,273.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +21738,QUEEN,2,2020-04-16 23:43:48,2020-05-08 20:54:04,2020-04-18 03:16:06,2,48.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21739,PRINI,5,2013-10-20 15:53:31,2013-10-23 19:53:13,2013-10-27 10:34:15,3,219,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21740,FRANK,6,2015-07-07 09:05:10,2015-07-20 05:44:48,2015-07-13 17:18:57,3,387.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21741,WARTH,9,2021-03-22 13:55:56,2021-04-11 06:15:46,2021-03-31 04:14:43,3,475,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21742,PICCO,5,2018-11-28 08:36:07,2018-12-19 02:26:06,2018-11-29 12:16:33,1,404.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21743,QUICK,4,2016-03-17 08:52:49,2016-04-08 08:02:38,2016-03-24 19:00:55,2,455.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21744,LONEP,6,2016-05-09 07:21:40,2016-06-03 03:25:26,2016-05-21 04:27:28,3,115.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21745,FAMIA,8,2020-01-01 19:31:02,2020-01-14 16:59:28,2020-01-05 07:14:53,1,205,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21746,MEREP,1,2015-04-13 10:23:38,2015-05-13 04:51:46,2015-04-16 22:46:51,3,52.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21747,LAMAI,6,2022-03-30 16:28:31,2022-05-26 15:27:19,2022-04-07 14:34:04,3,491.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21748,DRACD,9,2015-05-22 02:18:29,2015-06-20 14:07:35,2015-05-26 22:01:33,3,307.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21749,GODOS,9,2017-10-07 17:35:38,2017-10-13 13:31:13,2017-10-07 18:22:19,3,249.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21750,PARIS,6,2017-03-09 23:09:26,2017-03-11 13:50:03,2017-03-13 14:30:05,2,500.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21751,THECR,3,2015-12-25 12:44:23,2016-01-01 23:20:25,2015-12-25 13:02:46,1,19.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21752,FISSA,3,2015-04-26 10:20:50,2015-05-10 18:46:46,2015-05-06 12:59:48,3,409.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21753,SPLIR,7,2013-07-13 01:39:54,2013-08-04 09:29:04,2013-07-22 09:23:10,2,191.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21754,MEREP,3,2014-07-30 15:45:29,2014-08-04 13:07:46,2014-08-22 16:13:10,3,388.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21755,FRANS,9,2023-07-27 05:56:43,2023-07-29 01:10:11,2023-07-28 03:04:49,1,192.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21756,TORTU,1,2013-02-03 04:41:32,2013-02-10 16:19:53,2013-02-13 00:03:16,3,76.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21757,GODOS,6,2017-03-23 16:38:51,2017-04-04 08:26:47,2017-03-24 15:16:00,3,274.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21758,QUEDE,5,2021-05-15 03:44:42,2021-06-05 00:58:49,2021-05-18 01:35:24,1,206.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21759,FURIB,9,2022-03-04 19:43:45,2022-04-17 06:57:13,2022-03-19 00:19:24,1,454.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21760,VINET,4,2019-08-21 18:54:03,2019-09-10 06:14:50,2019-08-22 06:27:23,3,99.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21761,MAGAA,1,2018-11-02 01:18:20,2018-11-04 21:03:05,2018-11-08 19:13:37,2,444.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21762,FURIB,9,2014-11-10 17:21:46,2014-11-23 20:24:56,2014-11-11 17:12:20,3,315.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21763,OTTIK,4,2023-08-07 05:19:02,2023-09-20 05:29:18,2023-08-11 12:27:35,2,62.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21764,QUICK,6,2021-09-28 05:02:40,2021-11-04 16:59:38,2021-09-30 04:58:51,2,126.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21765,SANTG,1,2017-10-24 20:51:19,2017-11-17 22:16:37,2017-11-06 06:42:18,3,458.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21766,VICTE,2,2022-12-17 09:30:47,2023-01-08 12:01:08,2023-01-08 08:01:35,2,169,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21767,ANATR,8,2022-02-03 17:52:05,2022-02-06 01:38:18,2022-02-04 18:20:20,3,338.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21768,FOLKO,5,2016-09-21 16:30:02,2016-10-08 18:43:22,2016-09-23 02:41:02,1,376.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +21769,LILAS,5,2015-01-17 00:56:59,2015-01-20 03:33:29,2015-02-09 07:08:03,2,316,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21770,HILAA,6,2018-01-27 04:25:22,2018-03-06 13:56:24,2018-02-15 14:39:37,1,438,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21771,RICAR,6,2012-11-18 20:37:34,2012-12-02 18:57:41,2012-12-13 15:18:39,2,71.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21772,OTTIK,6,2016-07-22 13:05:23,2016-08-04 14:25:20,2016-07-22 21:16:09,2,19,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +21773,GROSR,4,2020-04-04 20:35:38,2020-04-14 12:05:12,2020-04-06 15:10:39,3,358,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21774,LEHMS,9,2023-09-21 21:52:35,2023-10-02 09:55:56,2023-09-30 05:22:01,3,133.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21775,RANCH,4,2021-07-11 00:35:15,2021-08-05 09:59:44,2021-07-11 02:01:40,3,362.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21776,OTTIK,9,2013-03-17 18:48:36,2013-03-28 18:51:16,2013-03-22 06:33:35,1,501.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21777,RATTC,8,2013-11-15 08:06:20,2013-12-05 09:09:15,2013-11-18 02:40:09,3,441.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21778,DUMON,2,2020-06-30 20:57:39,2020-07-15 00:29:02,2020-07-23 15:07:09,3,354.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21779,FRANK,9,2012-11-16 18:53:53,2012-12-27 17:55:09,2012-11-17 01:23:54,1,218,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21780,OTTIK,2,2022-01-24 05:54:41,2022-02-05 20:49:33,2022-01-28 12:00:36,3,273.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21781,DRACD,3,2023-03-20 15:43:44,2023-04-01 06:15:00,2023-03-21 06:40:20,2,104.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21782,LINOD,2,2017-06-20 15:30:51,2017-07-28 22:09:01,2017-06-21 17:22:38,2,98.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +21783,HUNGC,6,2016-11-29 05:55:16,2016-12-08 03:28:41,2016-12-21 02:24:13,3,363.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21784,WHITC,7,2023-05-04 21:06:11,2023-05-24 06:49:44,2023-05-25 04:58:06,3,388,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21785,NORTS,1,2021-07-11 19:29:00,2021-08-13 05:27:14,2021-07-19 02:15:58,3,120.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21786,SEVES,4,2020-02-05 16:24:04,2020-02-12 18:25:18,2020-02-05 19:31:07,1,163,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21787,VINET,2,2021-05-27 22:45:08,2021-06-12 01:19:16,2021-05-30 20:40:35,3,426,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21788,FURIB,3,2020-03-16 11:19:52,2020-04-01 09:43:34,2020-04-07 12:02:44,1,35,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21789,BERGS,9,2020-08-13 23:10:17,2020-08-27 11:43:28,2020-08-17 14:00:06,2,527.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +21790,TOMSP,8,2013-01-04 17:24:12,2013-01-21 17:33:15,2013-01-17 17:49:48,1,367.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21791,FOLKO,3,2013-07-26 05:24:45,2013-08-21 21:22:59,2013-07-27 05:32:58,2,386.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21792,DUMON,5,2013-09-25 01:29:03,2013-09-28 05:05:06,2013-10-03 17:28:41,1,162,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21793,ANTON,1,2023-07-05 13:35:47,2023-07-26 09:30:47,2023-07-12 21:59:39,3,243.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21794,GODOS,5,2015-05-31 19:27:46,2015-06-05 05:17:42,2015-06-25 05:04:51,2,399.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21795,MEREP,1,2019-11-17 12:37:10,2019-12-27 08:05:28,2019-11-25 01:30:56,1,41.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21796,PARIS,8,2023-07-15 23:33:10,2023-07-18 05:16:07,2023-07-18 18:44:01,3,57,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +21797,LINOD,9,2014-01-18 10:23:54,2014-02-08 13:07:52,2014-01-27 19:20:21,2,156.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21798,HUNGO,9,2016-07-09 05:46:51,2016-07-16 05:59:44,2016-07-27 09:32:50,1,165.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21799,HUNGC,5,2023-07-04 08:58:59,2023-08-29 04:32:42,2023-07-13 07:05:50,1,471.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21800,LAMAI,6,2012-08-19 22:14:48,2012-08-29 09:56:32,2012-08-20 04:06:32,2,454.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +21801,FURIB,3,2017-08-27 02:14:35,2017-10-08 18:18:59,2017-08-27 19:55:35,3,95,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +21802,WOLZA,1,2013-02-13 05:38:06,2013-02-19 10:44:09,2013-02-13 09:01:54,2,280.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21803,FAMIA,2,2014-12-31 17:42:39,2015-01-18 04:15:16,2015-01-03 00:28:07,2,312,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21804,PICCO,3,2020-03-02 01:25:34,2020-03-18 04:50:57,2020-03-10 06:38:21,2,429.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21805,GREAL,5,2013-07-07 09:29:57,2013-08-02 11:05:49,2013-07-18 00:00:07,1,301.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21806,WELLI,2,2019-09-29 14:15:29,2019-10-19 09:17:50,2019-09-30 03:00:24,3,341.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21807,GOURL,3,2019-10-30 07:37:33,2019-11-11 17:52:17,2019-11-18 18:43:24,1,259.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21808,MEREP,7,2014-10-28 22:22:19,2014-11-04 17:21:27,2014-11-13 04:16:08,2,151.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21809,OLDWO,1,2021-03-10 22:05:32,2021-03-29 12:03:05,2021-03-14 20:13:36,1,176.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21810,GOURL,2,2014-01-31 04:30:52,2014-02-05 02:03:12,2014-02-23 07:27:58,1,160,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21811,FISSA,5,2016-03-07 21:11:38,2016-03-13 21:19:58,2016-03-19 12:30:05,1,469,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21812,MAGAA,4,2017-11-11 13:34:52,2017-12-07 09:52:10,2017-11-19 08:11:01,2,104.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21813,PICCO,5,2019-12-06 23:18:40,2019-12-20 04:51:01,2019-12-24 09:07:48,3,352.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21814,EASTC,2,2016-11-06 20:04:00,2016-11-12 10:35:02,2016-11-21 18:30:10,3,475.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21815,VINET,4,2021-08-31 02:46:11,2021-09-03 23:39:54,2021-09-12 20:29:37,3,317.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21816,BOTTM,7,2015-04-24 21:32:15,2015-04-25 16:25:15,2015-05-17 12:11:53,3,308.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21817,LONEP,3,2018-10-01 18:20:47,2018-10-22 20:18:24,2018-10-04 15:03:33,1,291.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21818,PICCO,2,2023-07-30 08:13:58,2023-08-21 01:14:00,2023-08-12 12:57:06,1,240.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21819,GALED,3,2022-05-20 07:41:15,2022-06-11 04:58:24,2022-05-25 04:35:43,2,55.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21820,GALED,2,2022-05-16 11:27:59,2022-05-18 09:57:08,2022-05-23 12:08:17,1,401.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +21821,ANATR,5,2013-04-12 09:04:34,2013-05-19 16:59:05,2013-04-12 21:52:32,1,388.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21822,KOENE,1,2012-08-02 21:44:59,2012-08-18 02:48:06,2012-08-05 19:39:59,2,105,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21823,SIMOB,3,2017-03-12 21:33:35,2017-03-23 16:23:33,2017-03-17 22:45:36,2,337.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21824,FRANR,5,2014-07-10 06:15:34,2014-07-27 08:59:11,2014-07-11 01:03:15,2,175.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21825,FOLKO,3,2017-11-15 02:01:06,2017-11-27 07:29:38,2017-11-17 05:17:45,3,89.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21826,FOLIG,3,2017-06-24 01:41:15,2017-07-15 17:00:43,2017-07-18 10:46:16,2,128.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21827,HUNGC,9,2014-04-09 22:03:32,2014-04-11 18:40:33,2014-04-24 12:44:49,3,99.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21828,GOURL,3,2019-08-07 15:37:57,2019-08-10 04:33:15,2019-08-15 05:12:20,1,496.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +21829,THEBI,1,2013-10-20 20:59:20,2013-10-22 11:20:14,2013-10-25 17:45:15,3,309.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21830,Val2 ,7,2016-03-20 05:11:34,2016-03-27 06:16:18,2016-03-24 17:19:35,1,343.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21831,VICTE,6,2017-12-24 11:15:20,2018-01-26 03:13:20,2018-01-05 18:53:24,2,467.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21832,ANATR,6,2018-04-05 11:13:14,2018-04-26 11:07:12,2018-04-05 21:26:19,1,445.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21833,FAMIA,9,2023-05-04 02:20:28,2023-06-14 13:06:11,2023-05-18 10:07:36,2,374.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21834,HANAR,1,2019-04-24 12:15:56,2019-05-27 00:30:27,2019-05-21 11:19:10,1,302.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21835,WILMK,6,2019-12-16 00:12:18,2019-12-16 17:54:58,2019-12-24 11:53:57,2,127.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21836,GALED,6,2017-11-21 14:30:35,2017-12-01 21:18:59,2017-11-21 22:12:08,2,458.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21837,DUMON,5,2016-07-12 08:30:16,2016-07-25 13:21:27,2016-07-23 19:41:22,1,18.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21838,VALON,9,2015-02-10 08:02:55,2015-02-20 01:11:02,2015-02-14 16:23:41,1,243.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21839,OTTIK,5,2014-06-27 21:30:31,2014-07-26 22:51:57,2014-06-28 05:44:49,3,104.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21840,FAMIA,1,2019-09-25 21:36:48,2019-09-28 20:53:33,2019-10-09 13:13:14,3,211.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21841,LETSS,9,2023-06-11 19:57:31,2023-06-19 21:16:30,2023-06-23 04:11:53,1,508.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21842,MEREP,3,2018-09-23 02:23:42,2018-10-25 13:24:10,2018-09-25 00:20:14,2,125,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21843,LETSS,5,2013-04-20 07:57:52,2013-05-22 11:53:56,2013-04-20 12:37:11,3,196.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +21844,BSBEV,6,2018-12-31 14:33:08,2019-01-27 23:40:22,2019-01-19 15:17:26,2,424.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21845,MAGAA,5,2014-12-01 21:49:45,2014-12-24 02:59:19,2014-12-10 15:24:59,2,327.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +21846,OTTIK,6,2012-12-10 20:18:40,2013-01-14 19:14:16,2012-12-12 13:54:13,2,37.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +21847,BLAUS,2,2015-07-23 17:36:12,2015-07-29 14:00:21,2015-07-31 09:14:43,1,429.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21848,ERNSH,3,2016-08-03 17:14:34,2016-08-27 07:39:13,2016-08-08 20:56:49,1,142.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +21849,TOMSP,1,2020-03-05 17:31:39,2020-03-29 02:43:33,2020-03-17 03:30:36,1,138.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21850,LACOR,5,2018-08-05 14:40:37,2018-08-16 22:20:46,2018-08-12 12:25:58,2,342.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21851,WOLZA,1,2018-08-25 10:50:50,2018-09-07 09:09:05,2018-08-28 06:33:02,2,197.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21852,FOLIG,9,2019-01-31 16:54:52,2019-02-16 08:40:00,2019-02-05 06:51:38,2,392,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21853,HUNGO,2,2018-01-31 23:09:51,2018-02-12 06:14:00,2018-02-01 06:50:58,1,457,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +21854,KOENE,4,2015-01-16 23:52:15,2015-02-12 13:15:33,2015-01-25 14:45:13,2,149.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21855,FURIB,2,2023-03-10 08:20:22,2023-05-01 21:09:09,2023-03-19 13:07:17,2,263,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +21856,FOLIG,1,2012-09-15 07:53:18,2012-09-19 17:17:14,2012-10-08 12:04:12,2,111,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21857,SANTG,1,2014-12-30 19:22:35,2015-01-29 02:32:27,2015-01-07 03:20:48,1,491.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +21858,FAMIA,3,2018-09-11 21:38:59,2018-10-02 16:01:12,2018-09-24 02:38:25,2,398,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +21859,LETSS,4,2019-09-08 20:09:33,2019-09-11 22:03:02,2019-09-19 02:52:02,2,243.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21860,SUPRD,3,2021-08-16 07:02:32,2021-09-08 13:42:36,2021-08-17 04:12:43,3,126.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21861,MORGK,1,2016-10-08 04:22:35,2016-10-29 15:52:04,2016-10-12 12:59:14,3,426.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +21862,NORTS,1,2021-02-24 17:56:03,2021-03-06 19:34:59,2021-03-04 22:02:36,1,23.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21863,CENTC,5,2016-09-19 03:44:13,2016-10-16 18:34:42,2016-10-10 21:12:42,3,473,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21864,CHOPS,2,2020-11-20 11:12:18,2020-12-13 11:09:36,2020-11-28 21:54:28,1,289.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21865,WELLI,4,2013-08-02 17:07:22,2013-09-02 12:17:03,2013-08-03 04:44:58,3,376.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21866,OLDWO,2,2021-10-13 07:43:47,2021-10-24 00:31:07,2021-10-15 18:34:42,1,131.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21867,THECR,3,2023-08-06 06:43:11,2023-08-08 11:26:02,2023-08-07 00:19:15,1,177,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +21868,SUPRD,9,2015-07-18 21:39:08,2015-07-20 16:26:59,2015-07-26 07:23:50,2,260,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21869,VICTE,8,2018-01-03 12:04:07,2018-01-21 02:36:00,2018-01-05 13:32:41,3,477.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21870,FOLKO,9,2013-04-21 10:03:30,2013-05-28 07:37:27,2013-04-26 00:52:07,2,470.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21871,LETSS,2,2019-11-25 16:26:23,2019-12-02 20:58:50,2019-12-03 22:59:28,3,87.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21872,SIMOB,5,2017-07-16 05:05:40,2017-08-12 23:35:17,2017-07-20 18:15:03,3,420.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21873,FURIB,6,2021-01-23 02:02:01,2021-01-28 04:32:39,2021-02-09 17:14:55,3,97,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +21874,LETSS,5,2022-07-15 15:50:25,2022-07-29 14:52:19,2022-07-22 21:39:45,1,375,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21875,TORTU,6,2018-12-22 22:07:50,2019-01-01 03:34:24,2018-12-26 23:18:53,1,292,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +21876,DRACD,8,2014-03-07 17:09:46,2014-04-21 13:06:22,2014-03-09 10:27:54,2,57.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21877,FRANK,6,2019-03-29 05:37:36,2019-04-23 13:25:45,2019-04-05 22:50:48,1,133,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21878,WILMK,8,2019-07-07 05:39:05,2019-08-13 13:31:58,2019-07-11 22:53:15,2,131.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21879,AROUT,6,2022-06-15 13:37:27,2022-06-18 17:12:49,2022-06-17 20:38:28,3,488.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +21880,CONSH,6,2021-09-05 16:47:00,2021-10-18 19:29:43,2021-09-12 23:54:20,2,151,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21881,SIMOB,8,2014-04-18 03:36:47,2014-04-19 20:58:51,2014-05-04 06:53:22,3,99,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21882,GREAL,7,2019-08-30 21:06:43,2019-09-07 14:39:32,2019-08-31 22:41:51,1,103,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21883,RICSU,9,2020-03-14 22:49:39,2020-03-21 04:22:20,2020-03-19 12:14:33,3,309,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21884,CACTU,1,2015-01-29 10:05:20,2015-03-03 20:07:09,2015-02-01 12:40:51,2,226.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +21885,ANTON,1,2021-12-08 21:58:56,2021-12-31 13:37:53,2021-12-17 19:16:04,2,355,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21886,GOURL,3,2018-03-08 14:40:22,2018-03-23 17:36:08,2018-03-26 10:20:02,1,340.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21887,SUPRD,2,2014-09-21 05:47:20,2014-10-06 00:26:58,2014-10-05 09:30:05,3,489.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21888,PRINI,5,2016-02-24 10:16:03,2016-03-20 17:32:52,2016-02-24 12:02:21,2,433.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21889,GALED,8,2023-04-25 19:10:56,2023-05-09 18:48:01,2023-05-09 06:49:06,3,58.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21890,ANATR,6,2019-06-20 00:40:23,2019-07-08 18:25:00,2019-06-26 01:32:47,3,529.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +21891,GOURL,1,2014-09-27 12:52:34,2014-10-12 17:58:29,2014-10-07 05:16:13,3,352.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21892,FOLIG,7,2021-06-02 19:15:52,2021-06-13 01:22:24,2021-06-15 23:14:28,3,400.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21893,GREAL,9,2016-09-15 16:35:53,2016-09-19 04:27:01,2016-09-21 13:00:48,2,76.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +21894,CONSH,8,2018-09-13 03:14:07,2018-10-01 23:06:33,2018-09-15 14:00:50,3,104,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +21895,VALON,9,2016-07-11 00:57:41,2016-07-20 18:17:14,2016-07-12 07:31:17,1,36,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21896,SANTG,2,2014-02-18 06:51:53,2014-03-24 16:59:42,2014-02-25 15:36:55,1,298.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21897,THECR,6,2020-11-16 12:35:42,2020-12-05 22:48:27,2020-11-19 22:48:37,2,163.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21898,LAZYK,1,2020-01-20 07:22:10,2020-02-28 09:55:45,2020-01-28 06:37:38,3,361.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +21899,PERIC,5,2020-10-14 20:37:46,2020-10-23 04:12:02,2020-10-14 22:11:14,1,336,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21900,CONSH,6,2018-08-20 05:03:29,2018-08-31 21:05:46,2018-09-06 09:31:12,3,117.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +21901,COMMI,9,2017-01-17 16:55:17,2017-01-23 09:36:44,2017-02-02 10:59:51,1,56,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +21902,LONEP,4,2013-11-29 10:34:38,2013-12-25 01:19:29,2013-12-06 16:08:24,3,119.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21903,HANAR,2,2017-11-13 06:52:03,2017-12-18 16:54:06,2017-11-27 11:40:16,1,218.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +21904,WILMK,9,2022-09-30 22:29:09,2022-10-16 12:01:40,2022-10-08 08:01:24,1,148,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +21905,TORTU,9,2020-12-12 00:47:02,2020-12-12 16:47:39,2020-12-13 05:17:51,3,68.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +21906,FRANS,8,2013-07-17 10:39:03,2013-08-09 11:07:16,2013-07-21 04:38:49,1,107.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21907,OCEAN,2,2023-07-24 04:44:20,2023-07-27 11:07:45,2023-07-30 19:35:45,1,40,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21908,TRADH,9,2015-02-14 22:31:13,2015-02-28 16:29:10,2015-02-20 04:35:30,2,472.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21909,LACOR,4,2020-11-29 11:39:08,2020-12-27 01:25:33,2020-12-04 19:59:10,1,262.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21910,SUPRD,7,2013-06-03 05:02:03,2013-07-05 04:47:26,2013-06-11 23:45:42,1,280.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +21911,LETSS,9,2018-09-03 08:08:40,2018-09-27 21:49:42,2018-09-19 15:54:18,1,268,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21912,ISLAT,5,2014-11-03 08:19:35,2014-11-09 16:47:59,2014-11-05 22:37:38,3,389.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +21913,FOLIG,5,2019-08-21 00:47:29,2019-08-22 16:12:26,2019-08-25 04:00:47,2,256.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21914,BONAP,3,2021-05-31 06:02:36,2021-06-07 02:37:09,2021-06-07 13:30:31,3,496.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21915,PICCO,5,2016-12-25 11:01:55,2016-12-29 12:58:22,2016-12-29 14:17:44,1,463.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +21916,MORGK,5,2012-12-18 11:13:25,2013-01-07 20:27:58,2013-01-05 14:22:33,1,157.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21917,FOLKO,2,2020-03-04 20:57:21,2020-03-28 18:34:21,2020-03-19 21:56:34,3,496.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +21918,RICAR,4,2014-12-24 01:49:33,2015-01-03 19:20:06,2014-12-26 19:20:11,3,267.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +21919,FOLIG,4,2013-10-30 15:59:35,2013-12-06 19:18:41,2013-11-02 14:42:44,3,469.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21920,CENTC,3,2013-01-20 23:21:16,2013-02-24 16:48:30,2013-01-23 21:07:11,3,281.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21921,HILAA,1,2023-01-23 09:29:14,2023-01-26 23:36:36,2023-01-24 20:25:40,2,162.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21922,COMMI,5,2018-05-08 21:32:43,2018-06-27 18:49:14,2018-05-10 00:45:52,1,411.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21923,VALON,2,2022-11-08 05:05:16,2022-12-18 02:09:25,2022-11-18 09:07:53,1,284.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +21924,OCEAN,4,2014-04-16 04:28:31,2014-05-02 10:16:46,2014-04-19 11:21:27,3,200.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +21925,FAMIA,5,2015-01-18 12:46:40,2015-02-13 20:28:34,2015-01-19 13:42:06,2,100,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21926,OLDWO,3,2020-08-22 01:42:03,2020-10-02 08:34:03,2020-08-27 20:56:40,1,228.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21927,WHITC,8,2015-11-28 12:44:39,2015-11-29 09:20:11,2015-12-03 02:31:58,3,171.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +21928,LAMAI,8,2015-09-28 08:33:57,2015-10-04 11:04:44,2015-09-29 13:38:50,3,512.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +21929,ROMEY,6,2016-02-13 07:53:12,2016-03-14 12:45:02,2016-02-18 07:31:08,2,332,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21930,MEREP,5,2021-06-24 18:34:26,2021-07-19 00:30:08,2021-07-05 20:52:48,1,200,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21931,ISLAT,5,2021-07-04 21:04:26,2021-07-11 19:24:08,2021-07-06 16:46:05,3,332,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +21932,MAGAA,1,2015-02-25 10:03:32,2015-03-11 07:53:56,2015-02-27 03:31:06,3,134.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +21933,LONEP,9,2023-07-01 11:32:48,2023-08-12 08:09:05,2023-07-03 13:10:00,2,449.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +21934,FRANK,2,2017-07-18 06:01:15,2017-07-19 21:05:05,2017-07-19 10:29:16,3,56,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +21935,RANCH,3,2021-04-07 02:57:09,2021-04-14 22:01:23,2021-04-13 11:35:39,1,473,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21936,EASTC,9,2014-08-08 03:37:18,2014-08-20 06:16:27,2014-08-21 08:56:42,1,379.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21937,ROMEY,8,2020-03-27 23:36:19,2020-04-09 05:00:32,2020-03-29 07:01:57,3,147.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21938,MEREP,5,2021-05-28 09:54:30,2021-06-22 01:39:19,2021-05-31 14:55:49,2,194.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21939,FRANK,3,2016-04-23 13:53:38,2016-06-02 04:03:55,2016-04-23 14:07:33,1,320,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +21940,LAMAI,6,2022-10-04 15:20:20,2022-10-11 12:59:41,2022-10-06 05:17:16,3,135,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21941,BLAUS,2,2014-04-21 21:33:36,2014-06-02 11:17:11,2014-04-26 10:57:42,1,254.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +21942,ISLAT,1,2022-10-24 20:36:29,2022-12-06 05:20:56,2022-11-12 00:03:36,1,224,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +21943,VICTE,1,2013-09-10 15:51:09,2013-09-16 13:14:24,2013-09-22 13:59:49,2,310.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +21944,DUMON,6,2019-01-04 09:20:32,2019-01-05 15:09:41,2019-01-13 18:01:00,3,93.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21945,RANCH,1,2013-09-17 13:39:56,2013-11-02 08:19:12,2013-09-17 14:30:35,2,85.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21946,FAMIA,4,2014-11-12 04:19:27,2014-12-12 18:45:19,2014-11-23 17:00:08,3,256,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +21947,MEREP,9,2016-07-04 12:37:28,2016-07-22 02:32:47,2016-07-06 21:00:38,3,245.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +21948,TORTU,9,2023-04-24 15:20:48,2023-05-01 13:30:11,2023-04-26 20:36:33,1,94.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21949,BOLID,5,2019-08-20 15:44:24,2019-08-27 09:01:33,2019-08-21 02:12:42,2,196.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +21950,NORTS,6,2020-05-22 18:33:07,2020-05-30 09:06:45,2020-05-30 16:34:25,1,423.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21951,WHITC,5,2018-05-16 04:08:53,2018-05-30 16:36:12,2018-05-16 22:12:04,3,111.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +21952,FOLIG,5,2017-12-26 06:27:24,2018-02-09 20:24:17,2017-12-27 01:49:26,1,260.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21953,HUNGC,9,2021-04-22 20:08:20,2021-05-11 12:16:04,2021-04-23 07:33:25,1,458.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +21954,CENTC,7,2016-08-11 18:37:23,2016-09-01 22:14:54,2016-08-21 08:01:26,3,136,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +21955,BOLID,3,2019-07-24 01:56:34,2019-08-08 19:04:52,2019-07-24 15:11:17,1,105.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +21956,MAGAA,3,2016-12-07 22:12:33,2016-12-15 04:59:06,2016-12-17 23:00:10,1,501.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +21957,SIMOB,7,2016-10-25 14:35:07,2016-11-04 03:31:35,2016-10-28 08:33:52,3,441.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21958,FURIB,8,2022-11-01 18:02:58,2022-11-13 23:11:33,2022-11-11 03:23:34,1,71.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +21959,GROSR,1,2021-07-16 06:44:32,2021-07-20 12:55:30,2021-07-19 04:24:14,3,286,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21960,FISSA,9,2022-11-13 01:21:26,2023-01-06 01:07:19,2022-11-26 06:49:06,3,329,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +21961,HILAA,4,2021-12-05 08:07:12,2022-01-22 18:00:19,2021-12-09 03:41:35,2,546.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +21962,FOLIG,8,2016-05-19 15:21:18,2016-07-10 03:21:02,2016-05-27 21:17:27,3,149.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +21963,LILAS,9,2022-01-31 10:19:18,2022-02-17 00:34:48,2022-02-01 11:37:40,1,509.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21964,OCEAN,2,2019-08-25 11:17:07,2019-09-12 22:48:13,2019-08-25 19:41:15,3,399.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +21965,SAVEA,1,2016-04-10 16:34:15,2016-05-09 02:20:37,2016-04-11 18:05:43,1,79.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +21966,FRANK,5,2023-03-08 16:22:47,2023-03-23 17:02:25,2023-03-13 15:11:18,1,291.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21967,ERNSH,4,2019-09-14 09:33:51,2019-10-29 19:59:00,2019-09-17 12:54:36,1,277,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21968,COMMI,4,2021-05-01 11:58:00,2021-05-10 15:15:25,2021-05-13 01:24:56,3,437.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +21969,SEVES,5,2021-09-03 04:36:53,2021-09-23 07:41:21,2021-09-19 11:27:50,2,135.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +21970,PRINI,7,2022-03-01 23:26:31,2022-03-09 18:59:16,2022-03-10 08:18:18,1,42.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21971,HUNGC,2,2021-03-11 19:56:13,2021-04-28 13:01:49,2021-03-23 09:46:03,1,413.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +21972,LACOR,8,2021-05-29 18:53:12,2021-06-17 10:41:06,2021-05-30 10:12:22,3,471.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21973,VICTE,5,2017-09-09 12:36:31,2017-09-15 10:21:14,2017-09-24 06:17:41,1,351.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +21974,PRINI,1,2018-01-01 19:57:47,2018-01-18 13:59:08,2018-01-09 10:46:07,3,183.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +21975,QUEDE,5,2018-04-25 07:40:24,2018-04-26 16:52:27,2018-05-03 18:59:24,1,494,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21976,BERGS,6,2016-09-29 12:41:12,2016-10-13 18:47:42,2016-10-07 00:35:36,3,222.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21977,CONSH,6,2014-07-21 00:27:11,2014-07-29 17:19:33,2014-07-31 14:24:09,3,395,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +21978,FOLIG,1,2014-03-09 22:01:12,2014-03-22 15:56:22,2014-03-21 20:44:48,2,242,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +21979,TRADH,3,2021-03-27 17:09:08,2021-04-01 10:18:00,2021-04-07 09:51:03,2,125,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +21980,VICTE,2,2013-06-12 16:40:28,2013-07-13 21:56:41,2013-06-18 23:42:58,2,415.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +21981,FRANR,1,2014-05-21 03:52:36,2014-06-12 16:02:48,2014-06-03 12:37:05,1,167,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +21982,SANTG,3,2019-05-28 10:01:26,2019-06-20 10:47:24,2019-05-31 07:00:16,2,472.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +21983,ANATR,9,2014-10-08 13:02:06,2014-10-22 21:18:20,2014-10-27 14:01:57,1,433.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +21984,AROUT,8,2023-07-20 02:13:36,2023-08-20 23:22:45,2023-08-04 05:00:29,1,329,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +21985,EASTC,3,2012-11-02 08:19:24,2012-11-16 12:37:00,2012-11-03 04:12:57,3,412.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +21986,OLDWO,5,2019-11-01 14:03:45,2019-11-09 16:57:13,2019-11-08 21:57:20,1,199.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +21987,AROUT,2,2020-10-15 20:36:17,2020-10-29 05:38:51,2020-10-15 20:38:47,1,189.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +21988,KOENE,6,2019-09-07 06:38:58,2019-09-12 19:02:27,2019-09-28 05:40:39,2,237,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21989,LONEP,1,2018-09-25 01:34:58,2018-10-02 23:41:20,2018-10-20 10:16:22,2,170.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +21990,GOURL,9,2016-12-03 22:54:40,2017-01-02 11:04:22,2016-12-04 23:56:15,2,477.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +21991,SIMOB,1,2022-03-06 04:21:10,2022-04-11 00:48:12,2022-03-08 09:47:32,2,240.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +21992,DUMON,4,2023-06-20 12:27:45,2023-07-05 02:13:45,2023-06-22 05:30:14,2,211.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +21993,FAMIA,7,2015-10-08 13:40:19,2015-10-23 00:58:09,2015-10-17 08:25:55,3,201,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +21994,PRINI,8,2016-01-07 16:29:54,2016-02-17 22:41:43,2016-01-07 19:36:30,3,453.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +21995,FRANS,5,2015-11-08 08:13:15,2015-11-24 21:35:47,2015-11-16 05:14:49,1,283.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +21996,TORTU,2,2020-07-03 03:32:44,2020-07-23 01:19:58,2020-07-15 21:06:16,2,54.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +21997,RATTC,1,2017-07-09 20:50:11,2017-08-28 14:07:34,2017-07-21 22:01:49,2,143.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21998,WOLZA,3,2023-01-11 12:38:18,2023-02-12 11:20:19,2023-01-16 15:53:02,3,436.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +21999,BERGS,9,2022-05-15 05:53:06,2022-05-15 17:26:35,2022-05-15 17:00:57,2,166.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22000,CACTU,1,2021-02-13 18:14:11,2021-02-27 15:29:05,2021-03-06 04:51:13,1,194.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22001,CACTU,7,2020-11-04 02:53:35,2020-11-15 14:47:29,2020-11-05 17:59:40,1,403.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22002,PERIC,6,2019-10-16 22:30:46,2019-10-27 16:26:55,2019-10-18 05:18:34,3,506.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22003,SUPRD,2,2015-06-06 17:13:39,2015-07-04 11:06:04,2015-06-10 18:48:04,2,13.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22004,SPECD,5,2022-06-05 21:41:23,2022-06-15 21:02:41,2022-06-09 19:23:53,1,335.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22005,LAUGB,8,2019-11-27 08:55:32,2019-12-13 07:35:25,2019-12-09 06:25:54,3,419.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22006,BOTTM,4,2017-11-21 20:53:51,2017-12-10 02:58:48,2017-12-03 13:17:57,3,483.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22007,SUPRD,9,2019-10-10 11:51:46,2019-10-15 13:19:08,2019-10-16 02:51:33,1,415.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22008,BLONP,7,2018-04-27 23:42:50,2018-05-07 13:18:58,2018-05-03 16:57:25,2,455,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22009,VINET,7,2013-09-01 01:15:41,2013-09-20 13:47:47,2013-09-16 01:04:46,2,260.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22010,BERGS,1,2020-01-13 04:55:37,2020-02-15 22:12:39,2020-01-13 23:20:05,2,287.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22011,FRANK,9,2016-06-03 00:12:48,2016-06-23 07:49:27,2016-06-16 12:49:51,2,62.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22012,AROUT,7,2017-12-19 07:04:56,2018-01-02 20:39:24,2017-12-20 13:58:44,3,179.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22013,LAUGB,5,2015-12-31 00:50:11,2016-02-01 17:40:36,2016-01-01 12:33:10,3,101.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22014,BONAP,9,2018-01-29 14:20:40,2018-02-26 03:43:57,2018-02-03 16:07:34,1,240.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22015,FURIB,9,2017-06-26 02:56:33,2017-07-18 10:53:20,2017-07-06 23:28:42,1,283.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22016,FISSA,7,2021-08-22 16:45:50,2021-08-29 15:15:03,2021-09-03 01:25:37,2,234.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22017,LAZYK,5,2022-03-31 05:19:42,2022-04-08 17:06:51,2022-04-24 22:12:38,1,202.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22018,CENTC,7,2015-06-25 04:45:13,2015-07-25 03:56:46,2015-06-28 03:34:10,3,58.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22019,MORGK,9,2016-08-15 07:44:49,2016-09-11 02:54:38,2016-08-16 03:42:52,3,531,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22020,PARIS,8,2021-01-08 10:52:23,2021-02-04 15:19:37,2021-01-25 03:19:31,3,154.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22021,LINOD,6,2021-11-12 15:57:35,2021-11-15 18:18:24,2021-11-14 06:25:15,1,328.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22022,RICSU,7,2020-03-12 16:04:32,2020-04-26 00:22:12,2020-03-20 19:03:19,2,67,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22023,REGGC,1,2012-07-19 12:36:44,2012-07-21 14:48:28,2012-08-02 22:42:48,2,227.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22024,MAISD,1,2021-05-27 19:04:00,2021-07-11 22:38:46,2021-05-29 10:12:20,3,26,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +22025,CHOPS,7,2023-09-15 00:55:50,2023-09-21 19:06:14,2023-09-16 03:05:43,2,82.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22026,LAZYK,4,2013-05-27 23:28:51,2013-06-07 06:51:40,2013-06-12 15:36:54,1,40.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22027,HILAA,9,2013-02-22 18:28:26,2013-04-02 08:07:02,2013-02-26 18:21:39,1,129,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22028,PICCO,3,2017-12-07 17:44:05,2017-12-11 20:42:33,2017-12-10 02:56:46,1,85.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22029,KOENE,9,2018-09-07 21:04:09,2018-10-20 19:26:19,2018-09-28 22:13:29,2,183.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22030,BERGS,9,2020-12-23 05:38:32,2020-12-30 06:50:06,2020-12-29 14:33:40,2,105,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22031,BLONP,3,2023-10-16 12:40:31,2023-10-25 20:06:59,2023-10-17 14:51:36,1,395,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22032,PRINI,4,2015-11-25 16:12:31,2015-12-06 15:38:12,2015-11-26 15:10:40,2,162.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22033,SUPRD,4,2014-11-20 00:12:12,2014-11-26 22:57:10,2014-11-24 21:34:48,2,541.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22034,LACOR,9,2015-07-05 22:45:39,2015-07-16 00:22:44,2015-07-17 20:12:40,3,171.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22035,TRAIH,5,2014-04-04 12:25:22,2014-04-30 21:23:05,2014-04-15 01:49:51,1,187.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22036,MORGK,8,2019-06-05 23:17:50,2019-06-09 14:13:32,2019-06-06 13:27:21,1,478.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22037,ANTON,8,2019-07-21 00:43:37,2019-08-21 03:47:21,2019-07-25 17:29:58,2,300.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22038,FRANS,8,2021-06-25 05:20:50,2021-07-13 14:12:09,2021-07-10 22:53:25,3,75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22039,WELLI,3,2016-09-18 12:39:41,2016-10-01 00:05:13,2016-09-30 06:29:48,3,204.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22040,SPLIR,2,2015-03-27 05:18:46,2015-04-02 15:38:06,2015-04-11 16:02:42,1,24.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22041,BONAP,6,2020-06-29 08:58:23,2020-07-06 20:15:55,2020-07-03 01:35:33,1,329,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22042,HUNGO,7,2015-06-29 03:16:31,2015-08-19 22:16:53,2015-07-03 03:02:10,1,111,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22043,WELLI,8,2016-05-02 05:44:27,2016-05-09 14:38:54,2016-05-09 17:11:07,2,465.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22044,WELLI,5,2017-08-25 17:20:11,2017-09-12 05:46:33,2017-09-01 15:00:57,2,479.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22045,QUEDE,4,2012-10-19 00:54:26,2012-12-11 03:33:30,2012-10-19 23:38:27,1,219.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22046,NORTS,9,2017-04-09 11:34:04,2017-05-08 13:28:11,2017-04-13 09:55:40,2,140.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22047,LAZYK,8,2017-04-16 01:23:36,2017-05-15 23:34:09,2017-04-19 00:50:50,2,127.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22048,LINOD,9,2023-01-02 00:13:44,2023-01-29 01:34:21,2023-01-21 16:33:28,1,194.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22049,TRADH,6,2023-02-18 08:02:54,2023-03-03 17:10:16,2023-02-23 08:41:56,2,39.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22050,KOENE,3,2023-07-29 12:34:17,2023-08-08 06:52:46,2023-08-02 10:44:25,2,179,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22051,LINOD,1,2018-06-03 05:13:15,2018-07-05 21:30:57,2018-06-13 23:33:40,1,260.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22052,VICTE,1,2017-03-01 05:59:07,2017-03-20 11:11:24,2017-03-04 10:53:15,1,384.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22053,TOMSP,8,2018-06-02 01:41:57,2018-06-30 14:32:29,2018-06-02 09:02:51,3,365.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22054,EASTC,4,2021-06-20 06:53:18,2021-07-08 16:17:39,2021-06-29 01:18:00,1,118.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22055,ISLAT,1,2013-05-13 12:43:45,2013-05-28 17:41:48,2013-05-17 18:34:40,3,178.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22056,OTTIK,1,2018-09-04 07:50:07,2018-10-04 23:16:27,2018-09-06 14:41:37,3,350.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22057,QUICK,5,2023-05-30 14:01:14,2023-06-16 22:25:03,2023-06-04 03:23:11,1,70.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22058,GOURL,5,2014-07-18 00:10:58,2014-07-28 00:51:48,2014-07-24 00:02:46,1,442.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22059,WANDK,4,2022-07-17 21:18:17,2022-07-27 05:49:35,2022-07-22 13:42:04,3,238.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22060,QUEEN,2,2021-09-01 20:39:13,2021-09-14 23:14:14,2021-09-07 00:19:29,2,492,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22061,HUNGC,4,2021-05-15 21:11:17,2021-05-26 06:19:16,2021-05-26 07:57:53,1,158,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22062,HUNGO,2,2020-05-10 05:16:44,2020-06-06 06:34:57,2020-05-20 05:21:13,1,326,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22063,WHITC,8,2013-07-13 16:25:33,2013-07-19 14:31:48,2013-07-31 10:44:15,2,546.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22064,RICSU,7,2020-08-09 01:16:06,2020-09-09 09:18:02,2020-08-30 09:17:40,1,158.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22065,MAISD,3,2014-02-25 13:24:05,2014-03-01 20:11:32,2014-03-13 09:43:03,3,171.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22066,PARIS,3,2022-08-02 14:30:52,2022-08-22 08:30:50,2022-08-11 15:00:42,3,441.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22067,TRADH,7,2021-06-13 13:58:39,2021-07-03 07:08:07,2021-06-17 23:14:05,1,79.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22068,QUEDE,5,2020-07-21 04:28:04,2020-07-22 04:52:37,2020-08-14 02:25:36,3,37,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22069,BLONP,5,2013-07-26 09:21:21,2013-08-01 15:08:15,2013-08-01 17:23:10,2,387.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22070,BLAUS,5,2021-03-07 04:16:22,2021-03-13 20:51:40,2021-03-14 04:23:33,2,186.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22071,WARTH,8,2020-11-28 10:55:00,2020-12-23 18:32:11,2020-12-10 09:37:43,1,381.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22072,PERIC,2,2020-04-10 22:29:52,2020-04-21 16:28:33,2020-04-17 08:09:45,1,459,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22073,MAGAA,3,2020-02-05 14:26:13,2020-02-22 22:01:12,2020-02-07 05:22:44,2,414.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22074,PRINI,6,2018-01-07 13:42:59,2018-01-16 19:24:25,2018-01-16 10:06:20,1,459.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22075,BERGS,7,2019-07-08 03:32:27,2019-07-13 04:20:18,2019-07-12 18:03:17,2,132.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22076,MAISD,2,2017-09-09 14:12:42,2017-10-02 04:57:20,2017-09-15 20:57:11,3,321.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22077,HANAR,9,2020-06-14 20:21:52,2020-07-12 00:56:34,2020-06-24 06:54:54,2,97.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22078,WANDK,9,2021-09-25 03:31:26,2021-10-14 02:57:19,2021-09-25 19:30:28,1,192,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22079,OCEAN,1,2017-07-03 00:28:19,2017-08-03 04:47:32,2017-07-03 10:46:36,1,353.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22080,ALFKI,6,2019-03-09 23:39:57,2019-03-11 15:30:06,2019-04-05 21:00:01,2,439.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22081,FRANR,6,2014-05-13 22:13:50,2014-06-09 17:05:05,2014-05-31 02:35:37,1,56.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22082,FISSA,8,2019-07-18 11:43:46,2019-07-18 19:05:00,2019-07-31 13:05:25,1,451.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22083,DRACD,1,2018-08-25 07:42:41,2018-09-18 17:41:22,2018-08-30 22:52:58,1,30.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22084,FAMIA,6,2013-04-24 09:20:59,2013-05-17 09:27:10,2013-04-29 09:15:57,1,350.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22085,HUNGC,2,2021-10-18 01:43:08,2021-11-11 06:57:36,2021-10-24 07:26:03,3,306.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +22086,CONSH,9,2016-12-23 04:24:32,2017-01-17 13:16:23,2016-12-30 18:42:09,3,127.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22087,BLONP,8,2015-02-24 10:09:22,2015-03-13 02:52:51,2015-03-05 00:41:44,3,220,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22088,TOMSP,1,2017-10-04 17:45:49,2017-11-13 10:53:05,2017-10-12 08:08:45,2,362.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22089,SAVEA,5,2014-10-18 16:51:03,2014-10-21 07:55:56,2014-11-09 00:50:34,3,25.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22090,GOURL,8,2013-11-03 05:09:25,2013-12-09 06:13:52,2013-11-18 02:04:33,2,156.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22091,FISSA,2,2021-12-04 03:17:34,2021-12-17 15:35:18,2021-12-04 10:44:00,3,404,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22092,DUMON,5,2015-02-05 14:28:03,2015-03-10 18:33:34,2015-02-09 07:30:16,1,222,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22093,FAMIA,9,2022-10-17 02:45:19,2022-11-07 01:20:59,2022-10-18 02:54:45,3,258.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22094,MAISD,7,2015-06-20 16:06:48,2015-07-04 10:48:59,2015-07-11 21:33:00,3,458.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22095,LINOD,4,2013-11-22 08:58:58,2013-12-08 10:00:28,2013-11-25 22:50:18,1,190.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22096,RATTC,6,2021-05-29 19:43:00,2021-06-12 17:42:23,2021-06-17 04:01:56,1,359.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22097,VAFFE,7,2023-07-26 10:01:02,2023-09-09 23:14:10,2023-08-02 13:22:06,2,117,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22098,VALON,4,2012-09-26 17:11:08,2012-10-28 08:49:08,2012-10-20 00:53:02,2,257.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22099,HANAR,6,2022-11-24 09:22:47,2022-12-16 10:32:00,2022-12-13 22:57:51,3,278.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22100,ISLAT,4,2018-12-20 19:25:35,2018-12-23 08:36:54,2018-12-21 23:47:01,3,438.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22101,BERGS,7,2015-12-25 07:17:03,2016-01-13 02:06:43,2015-12-28 03:24:51,2,445,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22102,BLAUS,9,2022-08-24 21:25:55,2022-09-07 13:23:35,2022-08-30 15:39:34,1,190,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22103,RICSU,3,2016-05-10 16:07:40,2016-06-16 05:32:49,2016-05-16 11:14:17,2,366.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22104,WARTH,2,2020-12-15 02:45:04,2021-01-25 20:07:00,2020-12-19 22:07:13,1,109.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22105,SPLIR,1,2013-02-02 03:27:38,2013-02-15 18:22:29,2013-02-06 18:03:19,1,496,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22106,TRADH,5,2016-07-09 05:48:59,2016-07-30 06:06:01,2016-07-12 06:08:39,1,215.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22107,SIMOB,5,2013-09-02 17:01:22,2013-09-23 13:46:27,2013-09-05 08:43:06,2,128,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +22108,FRANR,4,2020-09-17 12:28:36,2020-09-23 03:04:26,2020-09-20 08:07:40,1,344.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22109,SUPRD,5,2018-12-11 09:49:22,2018-12-15 20:16:29,2018-12-11 17:55:43,3,418,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22110,FOLIG,4,2023-07-28 18:32:26,2023-08-26 20:41:50,2023-08-01 03:55:42,1,25.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22111,VINET,7,2016-09-23 04:03:21,2016-10-05 03:31:46,2016-09-27 18:36:27,2,414.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22112,EASTC,8,2019-09-29 01:11:25,2019-10-15 11:43:26,2019-10-12 05:38:07,2,58,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22113,EASTC,1,2017-08-13 03:12:52,2017-08-23 22:32:36,2017-08-16 02:25:06,3,459.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22114,BERGS,5,2018-08-26 03:23:52,2018-09-05 03:19:43,2018-09-04 04:48:01,2,127.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22115,GALED,3,2019-07-01 15:57:00,2019-07-04 20:03:22,2019-07-11 06:07:56,1,235.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22116,ROMEY,5,2018-07-07 23:39:06,2018-07-27 07:21:36,2018-07-19 11:33:20,1,153.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22117,WOLZA,9,2014-10-01 00:12:49,2014-11-16 11:41:01,2014-10-14 05:47:49,3,461.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22118,QUEDE,6,2022-04-15 09:36:18,2022-05-16 07:51:57,2022-05-01 13:57:28,3,326.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22119,VAFFE,1,2021-09-21 18:17:46,2021-11-08 01:48:59,2021-09-22 06:11:01,2,384.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22120,QUICK,6,2022-01-11 12:48:13,2022-01-31 22:47:50,2022-01-21 07:52:59,1,191.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22121,PRINI,1,2022-11-25 06:36:25,2022-11-26 07:40:08,2022-12-06 11:41:34,2,67,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22122,VAFFE,6,2022-06-26 20:29:43,2022-06-30 21:51:02,2022-07-16 09:53:48,3,475.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22123,BLONP,4,2013-03-19 19:52:43,2013-04-03 05:11:40,2013-03-24 09:45:07,3,370,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22124,GREAL,4,2015-01-08 18:55:16,2015-01-23 10:43:37,2015-02-02 13:38:20,3,139.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22125,FAMIA,2,2016-05-01 17:08:19,2016-05-28 21:10:06,2016-05-02 01:53:48,2,335,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22126,CONSH,1,2017-06-26 08:24:38,2017-06-28 17:05:34,2017-07-08 21:45:50,2,302,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22127,ANATR,3,2019-11-01 00:58:17,2019-11-07 09:32:07,2019-11-19 01:51:43,2,185.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22128,HILAA,2,2015-12-29 03:36:56,2016-01-13 05:26:05,2016-01-05 20:47:15,2,371,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22129,VALON,6,2013-06-30 17:38:44,2013-07-12 09:26:10,2013-07-01 06:42:29,1,361,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22130,RANCH,3,2020-06-28 04:10:21,2020-07-10 00:57:29,2020-07-09 04:35:53,2,57.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22131,FISSA,9,2021-06-17 07:41:33,2021-06-27 05:53:13,2021-06-29 17:42:37,1,332,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22132,THEBI,9,2019-01-30 09:31:30,2019-02-14 18:27:04,2019-02-05 09:04:22,2,11.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22133,GOURL,7,2023-04-15 07:06:09,2023-05-07 22:59:07,2023-04-15 15:18:28,2,30.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22134,GREAL,7,2014-04-06 18:22:02,2014-05-04 03:53:05,2014-04-08 16:51:51,1,166.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22135,WILMK,4,2023-02-27 04:19:36,2023-03-29 21:07:29,2023-03-01 01:44:51,1,161,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22136,RATTC,2,2023-09-23 10:13:27,2023-10-14 11:29:31,2023-09-30 12:08:29,3,291,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22137,RATTC,3,2019-05-02 06:24:44,2019-05-08 07:18:56,2019-05-20 00:43:31,2,187,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22138,Val2 ,1,2017-11-04 18:28:24,2017-11-21 01:03:33,2017-11-05 12:06:21,1,146,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22139,MEREP,1,2018-11-09 08:08:54,2018-11-22 22:00:13,2018-11-14 17:55:16,2,131,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22140,PERIC,1,2017-02-16 05:39:49,2017-03-14 10:52:26,2017-02-22 11:12:07,3,227.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22141,CHOPS,1,2020-10-19 09:51:20,2020-10-27 03:04:33,2020-10-28 06:54:42,2,218.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22142,ISLAT,2,2014-01-05 01:28:34,2014-01-08 11:11:39,2014-01-09 18:01:24,3,273,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22143,BLAUS,1,2017-04-29 11:26:58,2017-05-11 02:56:09,2017-05-10 20:40:26,3,48.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22144,LILAS,9,2013-03-24 08:30:10,2013-05-15 20:54:16,2013-04-05 13:08:11,1,31,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22145,VAFFE,6,2021-09-20 16:13:22,2021-09-22 14:12:19,2021-09-24 19:06:53,1,372.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22146,LILAS,1,2016-04-29 16:23:48,2016-05-15 07:33:40,2016-05-10 09:34:37,1,423,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22147,WARTH,6,2017-07-03 00:03:53,2017-07-15 20:43:16,2017-07-15 16:56:52,3,273,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22148,SPECD,8,2023-09-28 07:18:53,2023-10-08 10:06:04,2023-10-07 06:36:33,2,338.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22149,CHOPS,7,2019-10-03 01:21:12,2019-11-04 02:47:39,2019-10-13 17:19:46,3,252.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22150,Val2 ,9,2021-07-12 03:14:20,2021-08-02 12:23:20,2021-07-25 22:43:49,2,66.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22151,WILMK,5,2022-09-03 18:54:03,2022-09-29 09:29:31,2022-09-05 01:52:50,1,296,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +22152,NORTS,3,2017-03-11 07:05:01,2017-04-20 21:01:03,2017-03-20 23:29:34,3,486,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +22153,GREAL,8,2021-01-30 07:34:31,2021-02-12 21:46:14,2021-01-30 11:20:28,2,448.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22154,BOLID,7,2016-11-30 12:54:48,2017-01-11 20:37:45,2016-12-02 01:04:03,1,352.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22155,ISLAT,8,2014-08-19 10:52:00,2014-08-28 13:43:41,2014-09-07 04:15:25,3,275.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22156,WOLZA,7,2022-03-23 21:04:18,2022-04-08 23:50:51,2022-03-24 18:48:49,2,260.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22157,THEBI,3,2014-07-13 04:39:49,2014-08-08 13:22:12,2014-07-15 15:53:29,2,177,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22158,LACOR,1,2018-06-27 12:51:11,2018-07-04 15:49:38,2018-07-03 08:05:29,3,67.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22159,EASTC,8,2013-06-13 08:48:50,2013-07-19 15:02:14,2013-06-22 18:58:43,2,29,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22160,WILMK,1,2016-01-09 00:14:46,2016-01-15 10:24:25,2016-01-09 07:44:22,2,257,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22161,TRAIH,1,2019-01-02 20:39:58,2019-01-19 07:50:21,2019-01-06 10:14:34,2,249.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22162,TRADH,8,2022-05-18 02:30:12,2022-06-29 18:25:07,2022-05-23 05:51:15,1,149,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22163,FOLIG,6,2022-01-29 19:07:11,2022-02-17 10:51:31,2022-02-10 00:56:06,3,334.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22164,MEREP,1,2014-11-16 02:45:18,2014-11-24 19:22:38,2014-11-22 05:13:54,2,179.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22165,EASTC,6,2012-12-21 02:41:25,2013-01-20 02:46:14,2012-12-21 16:39:55,2,168.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22166,FRANR,9,2016-08-05 09:32:14,2016-08-27 13:01:10,2016-08-15 09:11:28,2,150,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22167,LEHMS,6,2015-10-03 01:35:54,2015-11-08 06:03:52,2015-10-05 22:59:52,3,476.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22168,RATTC,5,2014-04-12 16:00:14,2014-04-29 22:50:16,2014-04-13 10:57:42,1,419.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22169,FRANS,5,2012-11-27 05:54:33,2012-12-13 16:48:08,2012-11-30 14:38:34,2,174,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22170,EASTC,2,2018-10-13 15:38:58,2018-10-16 18:28:56,2018-10-27 18:29:20,3,412,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22171,EASTC,1,2021-02-05 02:58:03,2021-03-06 07:14:23,2021-02-07 07:50:36,1,408.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22172,EASTC,8,2021-03-30 15:14:35,2021-04-07 21:56:49,2021-04-01 21:13:50,3,482.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22173,QUICK,4,2018-05-22 10:11:56,2018-06-08 18:18:18,2018-06-05 18:21:38,2,168.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22174,OCEAN,5,2019-07-18 00:12:36,2019-08-27 00:37:59,2019-07-20 10:49:40,3,142.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22175,COMMI,2,2022-04-11 17:45:56,2022-05-21 22:22:56,2022-04-26 15:04:36,1,376.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22176,MAISD,8,2016-10-14 17:42:14,2016-10-26 02:21:38,2016-10-19 17:56:19,1,241.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22177,QUEEN,8,2021-09-07 13:42:09,2021-09-12 04:01:23,2021-09-08 14:57:58,3,360.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22178,LACOR,2,2015-08-12 11:12:12,2015-08-20 22:02:00,2015-09-03 17:32:24,2,172.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22179,LAMAI,6,2020-01-25 17:20:04,2020-02-02 15:28:29,2020-01-25 20:27:21,2,437.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22180,LAUGB,3,2019-11-02 04:39:32,2019-12-13 11:10:05,2019-11-03 01:31:50,2,93.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22181,SPECD,2,2014-07-21 04:24:58,2014-08-01 11:07:14,2014-07-23 11:00:33,3,206,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22182,GREAL,1,2017-02-27 02:39:17,2017-03-19 01:59:00,2017-02-28 00:20:56,2,282.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22183,ANATR,4,2021-02-27 01:23:07,2021-03-13 17:21:09,2021-03-03 16:19:55,1,154.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22184,LEHMS,8,2018-12-04 17:12:49,2019-01-11 15:36:22,2018-12-10 10:48:06,2,203.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22185,FURIB,7,2020-08-30 18:41:15,2020-09-09 15:48:50,2020-09-04 00:08:09,3,225,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22186,GOURL,3,2022-05-22 08:10:59,2022-06-27 05:01:30,2022-06-02 23:02:12,1,137,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22187,BSBEV,4,2022-02-15 11:32:33,2022-02-27 15:54:50,2022-02-16 22:57:29,2,266,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22188,KOENE,2,2021-07-26 08:29:44,2021-08-26 13:37:32,2021-08-03 00:33:22,2,135.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22189,PERIC,6,2021-10-31 08:34:54,2021-11-16 09:39:21,2021-11-05 18:24:44,3,298.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22190,WELLI,8,2015-04-01 11:13:19,2015-04-12 21:38:03,2015-04-29 14:02:37,3,148.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22191,FRANK,5,2013-11-09 10:34:58,2013-12-01 10:20:50,2013-11-17 03:39:10,2,356.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22192,DUMON,3,2013-10-27 18:44:08,2013-11-29 14:44:32,2013-11-18 13:57:34,2,126.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22193,TRAIH,8,2020-11-02 03:53:13,2020-11-29 18:56:54,2020-11-04 08:40:07,3,45,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22194,REGGC,2,2017-11-20 14:50:14,2017-11-23 10:07:47,2017-12-03 21:35:07,3,326.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22195,WELLI,6,2015-12-08 09:18:56,2015-12-20 02:06:24,2015-12-11 12:23:42,1,108.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22196,ALFKI,4,2021-08-08 07:01:27,2021-08-18 17:38:41,2021-08-22 03:03:54,1,416,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22197,PERIC,6,2022-07-20 17:49:00,2022-07-23 05:40:19,2022-07-23 02:43:08,2,80.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22198,MEREP,9,2020-02-13 08:21:35,2020-03-02 17:45:34,2020-02-14 18:13:55,1,27.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22199,BLONP,7,2023-01-26 12:07:48,2023-02-09 09:43:01,2023-01-27 08:22:11,1,408.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22200,TRADH,9,2018-11-06 10:08:15,2018-12-17 10:26:26,2018-11-09 19:14:02,1,430.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +22201,QUEDE,4,2018-08-04 18:29:52,2018-09-01 02:26:36,2018-08-18 03:54:14,1,108,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22202,TORTU,9,2023-07-10 07:01:09,2023-08-10 15:34:38,2023-07-21 04:49:41,2,29,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22203,BOLID,5,2023-07-24 06:13:25,2023-08-13 05:47:20,2023-07-26 19:46:39,2,247.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22204,WOLZA,4,2013-11-09 07:50:23,2013-11-24 05:23:36,2013-11-13 00:02:29,3,426.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22205,FISSA,9,2017-01-01 12:23:22,2017-01-04 08:14:15,2017-01-09 04:24:30,2,488.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22206,VICTE,5,2015-11-22 14:40:30,2015-12-01 20:48:46,2015-12-05 11:55:45,3,415.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22207,LAUGB,5,2022-01-15 05:19:55,2022-02-07 19:24:16,2022-01-28 02:53:09,1,419.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22208,FISSA,1,2022-11-06 05:47:29,2022-11-23 13:14:37,2022-11-23 15:47:32,3,45.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22209,GODOS,7,2016-03-01 15:05:30,2016-03-09 13:33:33,2016-03-10 01:56:03,1,146,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22210,BOLID,6,2016-03-31 23:17:54,2016-05-08 07:12:04,2016-04-11 14:29:29,2,116.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22211,RANCH,6,2023-09-22 16:21:26,2023-10-08 20:34:51,2023-09-22 17:28:03,3,169.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22212,BERGS,8,2014-12-03 12:28:07,2014-12-29 09:48:11,2014-12-28 04:09:26,1,425.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22213,SANTG,4,2015-09-29 21:03:56,2015-10-29 08:17:53,2015-10-11 18:59:19,1,70.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22214,RICAR,2,2020-03-31 12:32:16,2020-04-13 22:57:51,2020-04-02 22:26:46,1,492.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22215,LETSS,8,2017-11-11 11:00:33,2017-11-17 06:22:37,2017-11-11 23:11:46,2,84.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22216,BLAUS,2,2012-11-26 16:35:19,2012-12-06 11:26:53,2012-11-27 00:51:47,1,150,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22217,RANCH,2,2013-08-30 03:20:11,2013-10-22 18:35:54,2013-09-02 09:58:44,1,391.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22218,WHITC,6,2022-06-07 00:01:51,2022-07-15 09:41:12,2022-06-20 16:15:07,3,262.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22219,DUMON,5,2019-02-06 11:36:00,2019-02-11 20:36:34,2019-02-09 01:55:07,2,43.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22220,BLAUS,9,2021-06-16 11:51:54,2021-06-24 02:19:44,2021-06-24 02:24:33,3,423,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22221,FRANS,4,2016-06-12 20:40:56,2016-06-28 12:18:39,2016-06-22 15:31:51,1,27.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22222,RICSU,9,2013-06-04 21:48:49,2013-06-13 14:06:04,2013-06-30 10:10:56,3,38.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22223,DUMON,4,2017-05-04 21:56:20,2017-06-23 21:28:44,2017-05-13 16:24:18,1,150.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22224,LONEP,8,2023-05-12 05:27:45,2023-05-12 14:26:31,2023-05-15 12:47:55,1,443.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22225,EASTC,7,2022-01-21 02:19:07,2022-02-19 09:22:56,2022-01-31 10:34:32,2,194.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22226,TOMSP,9,2014-03-08 15:35:00,2014-03-27 23:24:42,2014-03-21 22:24:27,1,82.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22227,FRANR,2,2017-11-15 17:45:50,2017-11-16 21:06:35,2017-11-21 17:41:03,1,455.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22228,WANDK,5,2023-03-11 03:25:04,2023-03-31 01:45:02,2023-03-14 12:33:22,1,423,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22229,RICSU,2,2020-10-26 06:31:04,2020-11-29 13:37:57,2020-11-01 02:21:32,3,280,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22230,OLDWO,1,2014-08-25 00:46:48,2014-10-15 21:38:30,2014-09-11 10:40:01,2,330.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22231,SUPRD,1,2017-10-26 11:57:49,2017-10-31 01:24:15,2017-10-28 00:47:27,2,151,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22232,DRACD,2,2012-12-06 09:59:30,2013-01-28 01:32:36,2012-12-08 08:30:50,2,175,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22233,LACOR,2,2017-09-25 14:22:53,2017-10-12 09:18:55,2017-09-25 16:39:56,2,530.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22234,FRANR,7,2023-08-28 07:12:29,2023-08-31 14:16:16,2023-08-31 07:05:17,3,150.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22235,Val2 ,2,2020-09-27 06:31:21,2020-10-10 21:30:14,2020-09-27 17:42:18,2,318.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22236,PERIC,1,2016-01-17 21:21:36,2016-02-26 05:11:03,2016-01-21 13:31:36,2,155.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22237,MEREP,1,2022-11-25 03:29:39,2022-12-05 03:45:02,2022-11-27 02:22:31,2,346.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22238,GROSR,8,2021-02-01 13:35:29,2021-03-08 02:32:55,2021-02-05 01:01:03,2,53.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22239,PARIS,5,2020-11-28 01:44:25,2020-12-10 11:24:37,2020-11-30 20:42:52,1,398.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22240,MORGK,5,2018-12-02 23:19:46,2018-12-08 01:12:24,2018-12-11 07:20:32,3,351.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22241,FRANK,2,2014-09-28 10:37:39,2014-11-01 00:22:53,2014-10-27 15:41:01,2,113.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22242,HUNGC,5,2016-08-13 14:19:49,2016-10-02 18:26:21,2016-09-04 05:40:37,3,374.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22243,ERNSH,5,2016-09-29 08:12:59,2016-10-18 22:58:43,2016-10-02 01:38:51,2,127.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22244,CHOPS,2,2019-03-05 23:50:22,2019-03-20 10:21:35,2019-03-28 15:48:53,3,349.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22245,GOURL,1,2012-10-23 19:20:59,2012-10-31 06:14:05,2012-10-29 16:35:21,3,35.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22246,LETSS,9,2017-07-02 11:27:10,2017-07-09 10:19:12,2017-07-02 11:44:07,1,353.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22247,BOTTM,9,2016-12-22 04:41:35,2017-01-02 23:05:41,2017-01-16 23:42:04,3,436.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22248,LONEP,9,2015-06-10 16:35:19,2015-06-20 02:47:37,2015-06-14 08:03:29,2,288,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22249,SEVES,3,2014-12-26 17:38:06,2015-01-16 12:04:02,2014-12-27 14:33:16,1,118,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22250,VICTE,3,2021-10-14 08:38:34,2021-10-30 04:28:47,2021-10-20 22:10:51,2,176.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22251,PICCO,1,2017-06-03 03:03:13,2017-06-05 15:10:31,2017-06-09 13:11:02,1,142,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22252,LACOR,9,2015-04-28 02:18:53,2015-05-04 15:41:06,2015-05-02 13:50:26,1,331,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22253,VINET,3,2021-09-08 14:48:01,2021-09-30 18:15:34,2021-09-18 01:04:20,1,55.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22254,SEVES,5,2023-03-25 20:52:46,2023-03-27 08:06:36,2023-04-02 10:41:55,2,199.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22255,GALED,5,2020-12-23 14:57:51,2020-12-24 12:04:02,2021-01-13 14:27:57,1,287.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22256,SUPRD,4,2022-05-01 08:02:10,2022-05-31 02:49:21,2022-05-08 16:27:03,2,478.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22257,HILAA,2,2023-09-30 14:06:57,2023-11-12 11:30:27,2023-10-01 17:57:59,3,129.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22258,FOLIG,5,2021-03-26 22:08:27,2021-04-30 10:55:17,2021-03-28 06:54:15,1,30.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22259,MEREP,8,2015-10-29 12:09:15,2015-12-04 16:36:04,2015-11-17 14:57:10,1,46.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22260,FURIB,5,2019-09-08 21:06:42,2019-10-15 15:46:57,2019-09-09 19:12:17,2,345.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22261,WILMK,2,2018-05-04 19:26:36,2018-06-11 08:49:35,2018-05-16 02:48:16,2,305.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22262,WOLZA,1,2023-01-05 03:27:25,2023-01-11 17:10:19,2023-01-09 15:15:46,3,161.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22263,THECR,7,2020-01-14 23:23:17,2020-02-04 05:05:33,2020-01-17 23:20:38,2,290.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22264,LILAS,3,2015-12-08 11:18:04,2015-12-26 08:28:20,2015-12-10 20:58:41,3,219,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22265,REGGC,5,2020-07-15 03:31:59,2020-07-31 22:44:18,2020-07-16 09:58:41,1,484.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22266,QUEEN,5,2023-05-19 16:29:13,2023-06-23 12:00:30,2023-05-23 23:23:20,3,436.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22267,PRINI,5,2022-10-21 06:12:19,2022-11-09 12:18:03,2022-10-22 20:13:23,1,414.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22268,GOURL,8,2015-02-27 02:29:12,2015-03-11 18:41:49,2015-03-03 01:35:18,3,311.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22269,RICSU,1,2022-05-28 14:18:38,2022-06-14 00:07:53,2022-06-21 05:26:01,2,312.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22270,SPLIR,7,2016-01-19 22:33:39,2016-01-25 23:38:24,2016-01-19 23:40:52,2,462.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22271,VAFFE,6,2022-11-12 04:17:17,2022-11-27 01:07:15,2022-11-24 19:36:58,2,419,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22272,DRACD,7,2017-10-19 00:21:57,2017-11-02 23:08:42,2017-10-21 23:32:40,1,426.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +22273,ROMEY,9,2023-05-26 19:45:15,2023-06-04 15:06:09,2023-06-01 08:53:26,1,520.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22274,FOLIG,8,2016-10-04 15:59:15,2016-10-27 11:51:27,2016-10-08 09:57:50,3,214.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22275,MEREP,4,2023-02-24 02:37:01,2023-03-22 03:25:37,2023-03-04 14:11:48,2,373.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22276,ANATR,4,2023-01-03 06:02:52,2023-01-11 03:28:47,2023-01-16 14:47:00,1,119,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22277,QUEDE,4,2013-05-23 20:35:12,2013-06-08 12:03:08,2013-05-24 19:03:25,1,97,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22278,PICCO,7,2017-09-06 20:18:29,2017-09-30 20:10:22,2017-09-07 06:44:32,2,480.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22279,SAVEA,9,2014-07-06 14:53:52,2014-07-13 19:01:35,2014-07-29 16:15:14,2,378.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22280,AROUT,5,2012-12-12 21:29:10,2013-01-28 05:26:04,2012-12-13 08:39:24,2,135.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22281,RICAR,3,2020-11-11 06:24:59,2020-12-03 05:12:05,2020-11-24 14:40:42,3,346.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22282,SPECD,3,2013-12-22 21:04:41,2014-02-03 10:41:19,2013-12-25 17:54:30,1,436,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22283,QUICK,7,2016-01-24 12:20:02,2016-01-30 04:15:45,2016-02-11 15:17:41,1,467.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22284,BERGS,4,2021-10-09 15:36:09,2021-11-18 17:04:22,2021-11-01 16:27:25,3,498.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22285,WELLI,4,2016-06-03 00:21:43,2016-07-06 01:08:21,2016-06-07 18:19:13,2,239.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22286,QUEDE,2,2017-12-24 06:12:39,2018-01-06 17:30:41,2017-12-24 12:11:37,1,428.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22287,ANATR,8,2015-01-02 18:54:10,2015-01-31 16:03:35,2015-01-03 00:52:01,1,438.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22288,PICCO,2,2021-11-30 19:15:45,2021-12-11 03:15:36,2021-12-09 00:31:04,2,84.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22289,SANTG,5,2022-05-09 03:26:24,2022-05-18 01:29:26,2022-05-18 01:53:54,2,188,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22290,PICCO,7,2014-03-06 22:19:16,2014-04-15 11:51:46,2014-03-12 05:24:23,1,277.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22291,LONEP,9,2014-12-20 04:11:51,2015-02-02 17:43:51,2014-12-24 10:50:29,2,500.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22292,PRINI,4,2017-11-05 19:38:23,2017-11-23 12:06:21,2017-11-12 04:02:41,2,205,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22293,CHOPS,5,2012-08-04 02:37:33,2012-09-14 01:49:46,2012-08-04 10:28:20,1,415.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22294,LACOR,9,2013-05-05 13:29:29,2013-05-15 20:14:30,2013-05-06 12:03:12,2,294,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22295,DUMON,8,2016-03-18 03:36:01,2016-03-27 14:24:04,2016-03-20 23:56:46,1,133.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22296,ANATR,2,2017-05-08 20:20:43,2017-05-21 11:47:15,2017-05-13 17:49:11,3,481.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22297,HUNGO,3,2022-10-16 10:32:24,2022-10-17 23:05:55,2022-10-17 18:33:06,2,280.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22298,PERIC,3,2014-07-26 03:49:44,2014-07-28 19:35:35,2014-08-12 17:17:50,2,60.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22299,OTTIK,7,2016-05-27 19:56:41,2016-06-06 08:51:49,2016-06-12 03:21:11,2,150.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22300,COMMI,2,2022-09-24 13:09:23,2022-10-02 11:23:17,2022-10-02 07:47:14,1,202.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22301,LAUGB,4,2021-07-01 18:45:50,2021-07-04 16:35:12,2021-07-24 11:57:12,3,484.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22302,PRINI,9,2021-01-11 21:35:27,2021-01-18 21:37:49,2021-01-14 12:30:18,2,218.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22303,SEVES,9,2018-05-03 14:01:59,2018-06-29 08:10:08,2018-05-11 19:40:39,2,365,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22304,WILMK,4,2013-05-23 07:06:25,2013-06-15 03:55:40,2013-05-30 09:46:51,2,200.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22305,VINET,5,2017-02-21 09:35:03,2017-02-23 10:48:55,2017-02-22 05:14:38,3,359.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22306,FISSA,5,2020-07-07 18:19:18,2020-08-07 17:42:51,2020-07-11 08:36:45,3,315.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22307,FOLIG,2,2022-03-08 03:21:14,2022-03-23 18:39:26,2022-03-13 16:28:06,3,191.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22308,LONEP,9,2021-11-26 19:17:44,2021-12-19 09:45:38,2021-12-03 07:38:23,2,367.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22309,GALED,2,2014-04-20 07:22:59,2014-04-22 09:40:35,2014-04-27 13:04:22,2,232.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22310,OTTIK,2,2016-05-05 02:12:44,2016-07-01 11:48:56,2016-05-15 12:31:44,1,482.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22311,WILMK,1,2022-09-30 16:18:58,2022-10-21 06:01:19,2022-10-03 14:43:45,2,223.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22312,RATTC,2,2014-06-25 07:03:34,2014-07-04 04:06:20,2014-07-04 16:20:51,2,396.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22313,RANCH,2,2013-10-26 06:35:17,2013-11-06 09:40:29,2013-11-04 16:00:42,3,63.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +22314,HUNGO,4,2014-02-05 12:51:56,2014-03-02 19:40:50,2014-03-01 10:08:47,2,16.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22315,LILAS,3,2020-07-07 16:05:46,2020-08-06 14:28:28,2020-07-19 14:52:36,2,232.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22316,FRANK,8,2016-06-30 16:22:37,2016-07-09 17:11:13,2016-07-02 22:21:24,2,255.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22317,HUNGO,9,2018-11-22 01:06:44,2018-11-30 16:10:01,2018-12-07 00:46:04,3,142.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22318,COMMI,3,2016-11-05 13:55:11,2016-12-14 00:26:04,2016-11-09 22:39:37,3,111.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22319,OCEAN,7,2013-01-08 04:11:04,2013-01-09 14:46:27,2013-01-09 16:11:37,3,182.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +22320,MORGK,8,2016-05-04 05:27:32,2016-05-26 00:12:40,2016-05-13 16:08:06,1,50.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22321,VALON,6,2016-04-08 18:32:11,2016-05-04 22:58:22,2016-04-08 20:17:15,3,500.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22322,FISSA,9,2022-04-16 03:50:29,2022-04-16 08:33:47,2022-04-17 18:30:22,2,142.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22323,SANTG,5,2018-08-25 20:58:35,2018-08-30 04:54:38,2018-09-02 03:45:22,3,161.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22324,LEHMS,7,2015-03-14 16:41:00,2015-03-25 04:45:46,2015-03-15 13:11:04,1,321.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22325,CONSH,2,2020-07-20 07:25:46,2020-07-28 12:55:18,2020-07-30 11:32:27,3,126.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +22326,MAISD,4,2023-08-23 12:25:19,2023-09-16 01:49:11,2023-08-26 22:02:51,3,204.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22327,VINET,5,2015-12-23 18:33:48,2015-12-26 12:34:18,2015-12-25 00:20:36,3,237.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22328,RICSU,9,2018-02-13 01:34:30,2018-02-17 13:14:09,2018-02-25 00:26:08,1,122,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22329,HUNGC,1,2021-12-03 01:38:49,2021-12-26 21:36:54,2021-12-04 09:26:15,3,303.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22330,VAFFE,1,2019-10-16 20:48:04,2019-10-30 05:58:10,2019-11-02 10:56:20,2,23.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22331,GOURL,3,2022-06-17 22:11:02,2022-06-27 22:04:57,2022-06-20 01:57:55,2,178.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22332,GROSR,8,2016-04-19 02:11:35,2016-04-20 07:18:48,2016-04-26 10:17:08,3,114,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22333,CONSH,9,2023-02-25 11:27:51,2023-03-31 03:07:24,2023-02-28 00:41:57,3,133.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22334,HANAR,5,2018-07-03 22:57:20,2018-07-11 16:10:39,2018-07-04 01:36:35,2,429.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22335,SUPRD,7,2017-05-04 05:28:09,2017-05-06 13:33:01,2017-05-11 10:50:31,2,212.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22336,DUMON,5,2017-01-22 02:56:00,2017-01-31 04:19:37,2017-01-28 10:30:25,3,175.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22337,WHITC,1,2013-06-12 09:19:46,2013-06-27 22:21:48,2013-06-24 18:57:00,2,182,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22338,HILAA,6,2020-05-25 00:13:27,2020-06-22 04:51:42,2020-06-16 19:05:49,1,359,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22339,MAGAA,2,2020-03-25 04:53:14,2020-04-11 10:08:50,2020-03-25 13:25:54,3,150.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22340,WOLZA,4,2014-12-06 09:01:27,2014-12-19 23:55:22,2014-12-26 01:01:27,2,111.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22341,KOENE,6,2019-07-09 16:15:37,2019-07-14 19:55:07,2019-07-31 08:17:58,3,407.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22342,GODOS,7,2018-01-31 06:59:02,2018-02-02 06:20:44,2018-02-06 07:04:42,1,215.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22343,SANTG,3,2012-08-10 22:57:41,2012-08-19 23:44:59,2012-08-23 12:08:24,2,252,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22344,VINET,9,2016-02-08 09:54:50,2016-04-01 18:22:58,2016-02-27 16:17:51,1,475.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22345,RANCH,5,2013-01-28 00:29:46,2013-01-29 01:31:00,2013-01-30 10:27:32,3,438,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22346,ROMEY,7,2014-08-13 02:07:27,2014-10-06 15:26:36,2014-08-16 13:03:42,3,424.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22347,DUMON,1,2017-12-02 18:48:04,2018-01-19 23:36:19,2017-12-07 08:36:54,1,87,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22348,ERNSH,2,2016-02-27 20:28:16,2016-03-24 10:42:58,2016-02-28 09:28:13,2,107.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22349,SANTG,9,2020-11-15 09:21:35,2020-11-26 23:12:51,2020-11-17 05:02:25,3,91.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22350,OCEAN,8,2014-03-30 12:36:49,2014-05-13 20:16:14,2014-04-05 16:04:43,2,494.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22351,WARTH,5,2023-04-02 19:34:27,2023-04-11 07:09:29,2023-04-10 05:03:30,3,217.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22352,Val2 ,1,2016-08-08 21:14:06,2016-08-31 09:25:47,2016-08-09 19:12:51,3,273.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22353,COMMI,1,2023-05-11 18:34:04,2023-05-29 12:06:09,2023-05-12 19:49:18,2,86,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22354,BLONP,9,2016-02-05 08:14:31,2016-02-17 20:49:06,2016-02-08 08:46:40,2,435.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22355,TRAIH,6,2018-07-12 01:36:06,2018-08-17 03:43:55,2018-07-12 19:45:49,2,130.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22356,FOLIG,5,2013-03-05 19:18:26,2013-03-13 05:12:20,2013-03-27 01:56:10,3,153.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22357,ROMEY,1,2016-05-23 12:01:10,2016-06-04 23:56:22,2016-05-26 01:54:49,2,216.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22358,MORGK,8,2016-11-28 23:19:33,2016-12-12 15:14:30,2016-11-30 18:36:01,3,353.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +22359,BSBEV,5,2014-10-19 21:41:30,2014-10-20 12:37:29,2014-10-25 21:56:21,3,168.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22360,FOLIG,1,2022-08-11 13:25:45,2022-09-14 09:28:54,2022-08-11 17:07:21,1,86,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22361,VICTE,3,2018-10-31 14:37:29,2018-11-16 07:12:39,2018-11-10 05:24:05,3,310.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22362,ISLAT,6,2018-05-05 07:56:58,2018-05-10 00:23:38,2018-05-09 01:22:23,2,458.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22363,RICAR,3,2013-05-27 05:49:33,2013-06-24 17:20:38,2013-06-03 01:45:00,1,71,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22364,FOLIG,9,2022-04-12 19:16:18,2022-05-26 20:36:49,2022-04-21 04:48:45,1,487.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22365,CONSH,5,2021-11-20 02:25:23,2021-12-10 14:27:00,2021-12-10 21:26:15,3,447.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22366,GALED,9,2018-08-04 08:21:19,2018-08-28 14:40:10,2018-08-08 06:00:48,2,216,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22367,COMMI,2,2015-01-26 23:18:36,2015-02-04 12:36:55,2015-02-12 08:39:30,2,214,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +22368,LONEP,9,2020-10-29 23:56:50,2020-11-11 00:15:15,2020-11-01 07:57:58,1,199.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22369,MORGK,5,2014-06-09 08:50:56,2014-06-16 08:14:21,2014-06-14 02:33:58,1,195.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22370,THECR,5,2021-04-03 03:49:40,2021-04-24 04:16:37,2021-04-27 11:04:21,1,324.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22371,CHOPS,7,2019-09-14 10:31:59,2019-11-07 23:56:52,2019-09-18 04:35:16,1,21.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22372,WELLI,8,2019-12-01 05:18:32,2019-12-02 17:50:12,2019-12-07 18:10:33,1,165,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22373,PICCO,1,2018-05-06 08:59:32,2018-05-12 13:44:28,2018-05-08 03:51:40,3,203,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22374,TOMSP,8,2021-07-06 07:48:16,2021-07-16 09:02:59,2021-07-27 15:46:20,2,454.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22375,CENTC,3,2023-03-01 03:00:42,2023-03-30 19:40:37,2023-03-04 20:22:00,2,109.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22376,PICCO,3,2018-07-04 23:01:52,2018-07-12 23:18:53,2018-07-06 19:25:13,1,369.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22377,OCEAN,3,2015-09-26 11:50:12,2015-10-15 05:38:57,2015-10-06 09:18:21,1,40,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22378,BERGS,9,2022-04-10 01:37:06,2022-04-12 23:44:46,2022-04-16 11:19:34,2,17.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22379,ISLAT,8,2021-11-14 05:06:22,2021-11-28 17:37:30,2021-12-05 01:25:22,2,148,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22380,FOLKO,4,2023-08-02 06:40:37,2023-08-05 17:50:37,2023-08-07 22:20:01,2,437,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22381,CHOPS,1,2021-06-27 04:03:36,2021-07-15 19:35:51,2021-07-02 07:34:28,3,412.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22382,QUEDE,8,2013-06-05 00:14:55,2013-06-29 16:11:27,2013-06-29 16:22:51,3,62.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +22383,LILAS,1,2016-09-26 11:35:35,2016-10-10 13:28:02,2016-10-05 04:26:27,1,194.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22384,HUNGO,5,2016-03-31 12:19:34,2016-04-12 03:50:11,2016-04-05 23:31:36,1,475,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22385,BOTTM,7,2016-05-25 20:13:43,2016-07-14 01:54:55,2016-05-29 07:33:42,2,266.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22386,MAISD,7,2023-03-16 09:43:26,2023-03-23 08:21:26,2023-03-21 20:09:49,1,37.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22387,MAISD,6,2023-03-10 20:45:52,2023-03-12 15:41:12,2023-03-13 20:00:38,2,308.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22388,VALON,1,2013-09-27 21:49:22,2013-10-05 07:21:56,2013-10-03 00:52:58,2,379.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22389,ANTON,2,2016-09-23 09:14:43,2016-09-26 10:21:39,2016-09-23 21:13:55,3,108.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22390,OLDWO,7,2017-10-09 22:54:29,2017-11-24 21:55:19,2017-10-12 22:57:48,1,445,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22391,BLONP,8,2015-08-18 03:21:54,2015-08-21 07:56:10,2015-08-22 18:34:46,2,159.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22392,LAMAI,1,2016-03-07 10:08:21,2016-03-25 08:36:35,2016-03-11 17:25:52,1,26,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22393,WILMK,5,2017-03-25 05:26:17,2017-04-19 09:12:48,2017-04-01 12:52:07,2,79.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22394,PARIS,5,2021-07-30 23:04:49,2021-08-12 15:01:49,2021-08-05 10:59:55,2,352.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22395,LONEP,7,2019-09-14 09:56:57,2019-10-11 19:55:13,2019-09-28 05:35:49,1,281.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +22396,WANDK,6,2020-07-08 19:53:30,2020-07-17 13:30:44,2020-07-12 20:03:24,3,178.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22397,SAVEA,5,2022-07-08 09:01:37,2022-07-13 12:36:45,2022-07-29 11:21:59,1,18.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22398,ANTON,4,2015-02-07 05:44:35,2015-02-10 03:44:51,2015-02-21 12:01:19,2,471.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22399,WELLI,2,2012-10-31 02:45:37,2012-11-04 12:09:45,2012-11-11 18:56:49,2,425.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22400,WANDK,7,2015-08-10 16:08:24,2015-08-28 07:14:54,2015-08-10 20:18:09,1,271.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22401,GALED,8,2020-01-28 16:14:07,2020-02-10 09:37:05,2020-01-31 05:54:21,3,393,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22402,SPLIR,7,2014-07-12 08:03:03,2014-08-08 18:42:35,2014-07-17 17:40:11,2,224.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22403,OLDWO,1,2021-06-16 10:20:29,2021-06-26 19:14:55,2021-06-17 07:10:29,3,129.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22404,BSBEV,7,2017-02-23 05:16:43,2017-03-26 07:17:06,2017-03-07 18:35:15,1,494.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22405,KOENE,1,2017-07-19 05:30:13,2017-07-23 21:12:00,2017-07-22 13:34:36,3,147.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22406,LAZYK,1,2016-02-19 02:15:39,2016-03-16 20:53:49,2016-03-11 21:37:05,3,137,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22407,COMMI,4,2017-08-31 05:14:46,2017-09-02 04:26:35,2017-09-06 22:17:34,3,123,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22408,FAMIA,5,2012-08-28 16:46:12,2012-09-26 05:51:33,2012-08-31 16:17:01,1,184,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22409,GALED,8,2014-08-20 15:58:11,2014-09-03 12:31:16,2014-08-30 22:58:34,2,477,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +22410,BOLID,9,2021-03-24 12:27:19,2021-04-26 10:45:05,2021-03-25 04:47:20,1,238.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22411,LACOR,9,2020-10-17 08:38:10,2020-11-25 01:43:10,2020-11-03 18:19:08,2,92.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22412,LAUGB,2,2014-09-17 07:59:41,2014-10-25 04:59:13,2014-10-05 00:47:26,1,144.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22413,ROMEY,4,2015-12-06 07:15:55,2015-12-22 18:09:37,2015-12-16 18:06:37,3,46.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22414,SIMOB,2,2015-08-12 11:35:49,2015-09-13 20:01:00,2015-08-16 08:47:54,1,338.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22415,WELLI,7,2022-10-29 06:19:05,2022-12-08 08:40:35,2022-10-31 06:52:55,2,36.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22416,HANAR,2,2023-10-15 12:25:36,2023-10-15 19:06:10,2023-11-07 01:09:51,1,194.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22417,QUEEN,2,2019-08-23 17:06:35,2019-09-05 05:12:04,2019-08-30 03:07:21,1,105,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22418,LONEP,8,2018-06-04 11:52:00,2018-06-11 10:10:48,2018-06-06 06:51:35,1,148.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22419,HANAR,1,2023-01-10 09:16:40,2023-01-26 11:58:02,2023-01-13 23:08:41,3,439,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22420,BLONP,6,2018-08-11 04:04:20,2018-08-27 17:56:53,2018-08-19 16:40:59,1,15.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22421,OTTIK,1,2022-04-03 10:01:35,2022-05-03 09:22:06,2022-04-06 20:50:48,3,151,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22422,MAISD,5,2020-12-06 05:19:06,2020-12-11 12:38:41,2020-12-15 08:33:29,1,94.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22423,MAISD,2,2023-01-14 02:06:08,2023-01-14 12:03:40,2023-02-04 00:26:32,1,436.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22424,GROSR,4,2019-01-20 09:51:06,2019-03-03 18:44:38,2019-01-30 11:38:56,3,228.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22425,DUMON,4,2020-12-31 23:13:51,2021-01-08 14:31:23,2021-01-03 22:39:40,2,94.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22426,SIMOB,8,2018-10-16 06:28:10,2018-11-07 06:13:21,2018-10-16 07:53:01,1,67.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22427,LEHMS,4,2022-06-15 21:44:41,2022-06-26 18:42:03,2022-07-03 09:31:36,1,445.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22428,FRANS,2,2018-09-03 00:08:48,2018-10-21 16:17:50,2018-09-17 14:12:11,2,283,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22429,QUICK,3,2021-04-12 05:29:52,2021-05-13 06:52:06,2021-04-12 13:50:59,3,495.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22430,PARIS,7,2017-05-18 10:22:56,2017-06-06 13:19:34,2017-05-30 00:13:29,3,488.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22431,FRANS,7,2018-12-31 06:18:02,2019-01-07 06:44:14,2019-01-13 05:35:44,3,417,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22432,QUICK,7,2017-01-25 16:54:34,2017-01-27 15:21:39,2017-02-07 03:49:05,3,434.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22433,QUICK,8,2015-10-12 14:53:15,2015-10-28 23:12:51,2015-11-09 12:42:20,1,284,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22434,ANATR,3,2019-09-09 00:16:03,2019-09-27 04:31:36,2019-09-14 02:19:58,1,425,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22435,FURIB,3,2015-03-11 20:58:09,2015-04-05 02:37:09,2015-03-15 00:33:51,2,181,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22436,BLAUS,8,2015-01-02 02:52:59,2015-01-15 22:40:31,2015-01-06 05:27:05,2,332,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22437,BONAP,6,2021-12-01 09:19:18,2021-12-03 11:03:44,2021-12-02 03:06:34,3,64.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22438,OTTIK,4,2023-06-30 21:57:10,2023-07-14 17:52:53,2023-07-03 08:32:15,1,386.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22439,LAMAI,4,2018-02-09 13:09:42,2018-03-14 16:00:51,2018-02-18 10:50:29,3,104.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22440,BLAUS,8,2013-02-27 20:10:46,2013-03-17 02:49:15,2013-02-28 10:24:26,2,192.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22441,OCEAN,4,2013-05-01 15:26:37,2013-06-03 20:30:22,2013-05-11 03:19:33,3,452.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22442,MAGAA,4,2015-01-03 05:28:49,2015-01-06 10:13:39,2015-01-24 00:51:31,2,344.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22443,FURIB,5,2020-07-12 00:04:16,2020-07-21 18:11:14,2020-07-14 11:01:57,1,174.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22444,LILAS,2,2021-09-06 14:07:03,2021-09-23 19:28:11,2021-09-10 21:16:51,3,342.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22445,HANAR,2,2018-10-20 21:12:02,2018-10-25 01:35:46,2018-10-22 12:09:40,3,536.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22446,LACOR,1,2019-08-25 13:05:44,2019-09-17 17:58:14,2019-09-01 00:15:52,1,84.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22447,LAMAI,6,2014-04-29 14:29:07,2014-05-11 20:05:43,2014-05-01 05:25:54,3,235.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22448,LAUGB,8,2023-03-18 15:39:31,2023-03-31 00:56:14,2023-03-20 03:33:11,3,314.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22449,COMMI,3,2019-04-10 15:40:06,2019-04-21 09:42:22,2019-04-21 18:11:32,2,149.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22450,CHOPS,6,2017-01-16 11:38:16,2017-01-29 13:39:04,2017-01-19 16:21:49,2,128.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22451,LINOD,4,2021-12-11 11:23:14,2022-01-03 21:18:28,2021-12-14 17:24:55,2,419.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22452,NORTS,5,2015-11-10 00:19:23,2015-12-22 18:50:46,2015-11-18 16:57:56,1,126.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22453,CONSH,4,2015-05-14 13:03:08,2015-06-01 23:07:42,2015-05-16 06:31:05,3,440,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22454,CENTC,6,2020-06-28 23:59:55,2020-07-20 07:36:02,2020-07-09 16:40:24,2,73.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22455,CHOPS,5,2015-07-29 20:19:01,2015-08-03 02:24:05,2015-08-01 00:56:40,2,196.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22456,PERIC,1,2020-12-23 12:28:36,2021-01-31 08:36:14,2020-12-30 01:56:01,3,97.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22457,CACTU,4,2021-11-27 06:54:56,2021-12-14 03:29:12,2021-12-13 11:03:39,1,386.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22458,PARIS,5,2019-12-10 08:45:33,2019-12-22 14:49:36,2019-12-10 08:57:11,2,75.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22459,Val2 ,1,2022-06-10 15:52:43,2022-07-18 17:46:55,2022-06-19 02:05:04,2,329,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22460,LACOR,5,2012-11-14 04:28:31,2012-11-28 06:57:38,2012-11-21 06:31:56,3,419.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22461,DUMON,6,2020-10-16 20:29:48,2020-10-31 06:48:24,2020-11-08 03:54:52,3,177.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22462,BLAUS,3,2016-02-22 19:12:31,2016-03-01 21:08:11,2016-03-10 23:43:55,1,125.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22463,FRANR,8,2020-04-21 10:16:57,2020-05-05 02:34:27,2020-04-29 18:04:47,3,125.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22464,REGGC,9,2020-11-20 06:30:17,2020-12-08 07:32:59,2020-11-25 00:14:52,1,369.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +22465,REGGC,3,2017-05-21 02:55:04,2017-05-29 10:00:33,2017-06-08 05:11:10,3,274,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22466,VICTE,6,2013-03-05 13:11:30,2013-03-23 18:49:17,2013-03-08 01:01:52,3,264,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22467,WOLZA,4,2020-05-21 02:45:09,2020-06-24 18:31:26,2020-06-01 00:35:47,3,76.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22468,BONAP,7,2013-05-12 18:14:15,2013-05-27 19:21:00,2013-05-21 15:33:24,2,279.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22469,REGGC,6,2020-06-12 13:08:00,2020-07-10 19:44:28,2020-06-18 01:13:22,3,392,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22470,LAUGB,7,2022-07-04 07:08:26,2022-07-17 19:43:49,2022-07-09 02:04:21,2,24.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22471,HILAA,2,2013-08-14 17:58:46,2013-08-25 13:04:38,2013-08-15 10:01:57,2,449.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22472,BLAUS,7,2013-03-02 09:33:58,2013-03-31 12:28:00,2013-03-03 08:36:39,2,33.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22473,PERIC,2,2019-03-02 23:53:39,2019-03-05 12:45:33,2019-03-05 23:06:05,2,203.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22474,HUNGO,3,2015-05-14 01:42:22,2015-06-13 22:22:04,2015-05-14 06:23:30,2,337.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22475,BLONP,4,2020-06-12 11:12:12,2020-07-18 08:18:39,2020-06-20 01:19:07,1,183.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22476,ISLAT,5,2014-05-12 19:32:16,2014-05-18 00:10:01,2014-05-17 12:21:25,3,117,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22477,ROMEY,7,2013-10-14 23:26:57,2013-12-04 01:20:27,2013-10-23 09:27:57,1,421.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22478,NORTS,6,2015-12-02 10:40:30,2015-12-03 15:49:14,2015-12-08 17:18:23,2,119.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +22479,GOURL,4,2018-04-24 00:13:01,2018-05-21 06:10:43,2018-05-10 15:25:52,3,200.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +22480,BOTTM,1,2016-03-20 14:58:06,2016-04-05 13:27:01,2016-03-26 12:32:05,3,160.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22481,WOLZA,6,2014-12-08 05:54:18,2015-01-08 03:35:49,2014-12-13 22:09:08,2,134.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22482,QUICK,2,2017-07-01 07:32:57,2017-07-28 09:48:14,2017-07-22 08:41:37,2,466,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22483,COMMI,4,2020-07-11 02:17:48,2020-08-13 01:51:09,2020-07-18 17:22:55,2,222.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22484,RICAR,8,2013-11-09 05:44:55,2013-11-19 00:15:50,2013-11-17 14:26:26,1,113.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22485,WHITC,7,2023-02-03 16:25:25,2023-02-11 15:40:27,2023-02-09 01:38:26,3,115.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22486,OTTIK,1,2022-12-01 12:49:59,2022-12-03 19:49:06,2022-12-10 22:09:29,3,118.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22487,QUEEN,2,2016-06-15 23:50:10,2016-06-29 13:29:33,2016-06-30 15:59:42,2,121.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22488,EASTC,6,2014-07-13 09:25:42,2014-08-06 02:54:03,2014-07-23 22:20:36,3,373,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22489,SANTG,4,2017-08-16 14:41:27,2017-10-10 10:47:17,2017-08-20 20:12:07,3,331.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22490,BSBEV,4,2018-06-24 07:43:21,2018-08-01 18:47:19,2018-06-26 07:38:10,1,499,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22491,WOLZA,6,2014-08-05 12:37:47,2014-08-22 18:19:13,2014-08-21 11:01:53,1,227.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22492,MAGAA,2,2012-11-12 10:21:31,2012-11-26 23:10:43,2012-12-01 23:11:13,1,319.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22493,ISLAT,3,2023-06-29 10:44:05,2023-07-13 20:29:47,2023-06-29 14:32:01,2,190.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22494,CHOPS,2,2012-11-05 09:42:07,2012-11-24 22:49:19,2012-11-11 04:30:00,1,110.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22495,HANAR,4,2021-12-30 22:41:03,2022-01-23 14:48:30,2022-01-10 19:22:38,3,417.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22496,GROSR,7,2014-08-25 21:50:07,2014-08-30 22:51:14,2014-09-03 04:25:14,2,454.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22497,SPECD,3,2013-03-24 18:04:37,2013-04-03 07:26:14,2013-04-01 18:04:26,1,239.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22498,RICAR,5,2019-05-22 07:26:43,2019-06-17 23:26:03,2019-05-27 18:07:01,1,89,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +22499,WARTH,1,2018-08-13 06:33:58,2018-08-18 12:53:35,2018-08-31 18:59:58,1,210.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22500,LILAS,9,2019-12-03 04:44:28,2019-12-22 17:55:27,2019-12-13 21:58:14,3,234.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22501,WHITC,4,2019-09-21 03:56:42,2019-10-06 23:43:08,2019-10-01 14:22:04,2,294.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22502,HANAR,4,2013-09-23 15:25:19,2013-10-18 08:33:28,2013-09-28 04:44:02,1,283.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22503,WOLZA,4,2014-03-09 14:29:53,2014-03-29 13:20:27,2014-03-17 14:58:02,3,252,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22504,PERIC,6,2015-08-19 07:15:06,2015-09-08 07:13:01,2015-08-28 22:52:40,1,132,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22505,BONAP,8,2015-02-08 07:11:26,2015-03-06 19:57:53,2015-02-15 14:30:25,2,424.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22506,HUNGC,5,2016-01-19 00:38:30,2016-01-26 03:22:17,2016-01-23 03:14:47,1,115,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22507,BOLID,8,2019-07-04 01:02:32,2019-07-06 09:37:56,2019-07-05 17:40:26,3,93.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22508,VICTE,8,2018-06-26 00:22:40,2018-07-22 23:13:21,2018-07-01 22:53:25,2,420.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22509,ROMEY,3,2016-04-28 01:21:57,2016-05-18 12:41:00,2016-05-12 23:28:53,1,117.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22510,EASTC,8,2021-07-22 23:41:10,2021-08-02 15:24:51,2021-08-04 09:43:27,1,100.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22511,ROMEY,1,2014-07-20 23:31:52,2014-08-19 18:37:48,2014-07-23 16:50:20,2,201.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22512,SEVES,8,2014-02-05 01:39:16,2014-02-15 14:37:55,2014-02-20 19:57:48,2,171.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22513,LEHMS,3,2014-06-23 12:07:43,2014-07-05 10:24:00,2014-07-06 22:07:14,1,201.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22514,GREAL,2,2019-12-05 09:44:53,2020-01-14 06:04:46,2019-12-05 12:32:33,1,224,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22515,DRACD,6,2019-12-19 04:33:02,2019-12-27 04:03:38,2019-12-23 07:45:24,3,440.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22516,MAGAA,2,2012-11-19 13:10:53,2012-11-30 20:23:31,2012-11-25 19:18:31,1,449.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22517,SAVEA,2,2019-03-16 04:47:12,2019-04-02 06:32:38,2019-03-25 04:00:17,2,340,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22518,GREAL,6,2017-04-04 21:38:50,2017-04-24 20:40:34,2017-04-10 04:09:38,2,129,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22519,ERNSH,8,2016-08-17 00:28:30,2016-08-17 08:22:34,2016-08-20 19:14:56,1,226.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22520,FAMIA,2,2018-09-06 02:26:35,2018-09-06 03:50:19,2018-09-18 16:46:25,1,203.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22521,LACOR,4,2023-02-20 01:36:47,2023-02-27 04:51:33,2023-02-28 13:48:46,3,270.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22522,HUNGO,3,2023-06-28 11:04:32,2023-07-15 10:12:15,2023-06-29 00:16:16,3,379.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22523,CENTC,2,2020-09-07 07:25:41,2020-10-16 12:23:20,2020-09-11 05:54:25,3,41.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22524,WARTH,8,2015-03-26 13:45:52,2015-04-29 18:50:51,2015-03-31 03:05:36,3,85.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22525,TRAIH,8,2014-04-27 17:55:49,2014-05-06 10:25:39,2014-05-20 11:42:10,1,178.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22526,WELLI,9,2013-01-24 14:39:41,2013-01-26 09:07:39,2013-01-31 18:29:53,2,278.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22527,RICSU,1,2022-07-10 21:39:38,2022-08-15 02:44:21,2022-07-16 19:28:35,1,466.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22528,CACTU,3,2023-01-01 05:54:56,2023-02-08 08:31:19,2023-01-17 08:28:45,3,100.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22529,WANDK,6,2014-05-10 15:53:00,2014-05-27 08:41:52,2014-05-15 17:56:09,3,363.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22530,WARTH,7,2018-06-28 15:08:50,2018-07-07 17:56:25,2018-06-30 11:07:37,1,298,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22531,VAFFE,2,2019-04-06 15:13:43,2019-05-01 09:18:12,2019-04-08 00:54:57,2,394.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +22532,HILAA,9,2016-03-25 03:12:24,2016-04-25 10:14:59,2016-04-16 17:01:00,3,299.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22533,QUICK,5,2016-09-29 05:50:40,2016-10-16 04:53:49,2016-10-05 08:38:35,3,110,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22534,DUMON,2,2017-09-02 11:54:07,2017-09-10 16:44:11,2017-09-02 18:43:42,2,269.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22535,PRINI,4,2017-12-01 01:16:47,2017-12-06 13:38:55,2017-12-12 10:58:54,3,42.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22536,TRADH,5,2017-11-05 18:45:17,2017-12-05 18:40:52,2017-11-11 18:27:31,3,165.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22537,TRADH,6,2016-06-23 20:40:56,2016-06-27 21:35:17,2016-06-29 02:39:30,2,33,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22538,VALON,3,2012-08-06 07:45:18,2012-09-09 21:03:35,2012-08-13 15:39:47,3,107.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22539,ISLAT,5,2023-02-09 02:07:29,2023-02-23 12:33:47,2023-02-13 20:08:51,1,184.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22540,LAUGB,7,2020-09-01 13:20:52,2020-09-11 05:11:04,2020-09-02 14:58:59,1,220,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22541,BOTTM,7,2015-05-31 09:56:17,2015-07-10 18:11:34,2015-06-01 18:18:49,1,225.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22542,CENTC,7,2022-09-26 22:44:33,2022-10-06 03:23:52,2022-09-30 04:10:10,2,121.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +22543,RICSU,5,2021-12-05 15:53:59,2021-12-29 12:10:33,2021-12-15 21:17:16,1,110,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22544,HANAR,1,2012-10-27 12:45:56,2012-11-11 00:28:15,2012-10-28 17:09:59,2,260.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22545,HILAA,7,2023-03-14 14:11:39,2023-04-12 13:35:43,2023-03-22 04:59:31,3,338,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22546,FAMIA,2,2021-05-19 08:44:22,2021-05-30 10:02:18,2021-05-21 12:14:36,2,19.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22547,OCEAN,6,2017-06-26 23:05:07,2017-07-08 03:25:59,2017-07-01 12:04:16,2,107.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22548,FISSA,2,2019-03-15 19:39:24,2019-04-04 21:39:47,2019-03-20 09:19:53,3,68,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22549,COMMI,1,2013-07-31 14:32:44,2013-09-01 13:50:27,2013-08-28 07:20:23,1,261.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +22550,THECR,6,2018-04-14 12:46:54,2018-05-23 12:20:54,2018-04-21 04:28:07,1,417,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22551,REGGC,4,2014-10-21 06:50:19,2014-11-15 23:41:32,2014-10-24 16:08:34,1,160.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22552,VAFFE,8,2018-10-02 11:56:56,2018-10-09 14:21:25,2018-10-04 11:57:59,1,385.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22553,HUNGO,6,2021-06-04 12:59:07,2021-06-04 18:36:34,2021-06-06 07:47:57,3,58.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22554,KOENE,5,2023-10-02 00:57:25,2023-10-29 23:04:58,2023-10-02 07:21:08,3,230,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22555,HUNGO,4,2015-06-24 08:04:11,2015-08-08 08:14:21,2015-06-25 07:56:07,3,319.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +22556,FOLKO,5,2016-04-05 06:15:43,2016-05-05 01:51:12,2016-04-20 22:56:34,1,123.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22557,LACOR,3,2015-06-25 17:21:56,2015-07-01 10:29:55,2015-07-11 08:31:56,1,186.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22558,HUNGO,5,2014-08-31 12:07:56,2014-09-02 08:39:54,2014-09-01 00:47:02,2,238.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22559,CHOPS,6,2023-07-02 20:41:54,2023-07-13 08:05:18,2023-07-03 21:12:32,2,421.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22560,MAGAA,3,2017-01-08 17:12:23,2017-01-14 05:07:21,2017-01-10 10:21:09,2,193.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +22561,THECR,8,2012-12-18 05:57:51,2013-01-04 13:00:25,2012-12-20 23:51:25,3,289,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22562,SIMOB,6,2018-12-22 02:41:42,2019-01-05 05:42:08,2018-12-23 19:58:35,1,364,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22563,ALFKI,1,2014-12-01 20:53:48,2014-12-18 04:48:43,2014-12-15 18:56:30,1,42.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22564,BOLID,1,2014-07-15 06:29:16,2014-08-05 19:23:24,2014-08-12 06:53:04,1,336.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +22565,TRADH,6,2013-01-22 05:16:45,2013-02-22 05:26:34,2013-01-25 09:42:13,2,24.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22566,OTTIK,6,2023-08-03 13:07:40,2023-08-27 14:33:40,2023-08-07 22:04:15,2,39.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22567,MAISD,1,2021-06-10 13:43:47,2021-06-24 03:10:01,2021-06-15 15:24:59,3,187.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22568,OTTIK,2,2018-05-25 20:35:23,2018-06-09 10:50:15,2018-06-02 22:12:33,2,284.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22569,WARTH,4,2019-04-06 01:40:55,2019-04-22 10:46:30,2019-04-23 22:00:36,3,119,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22570,ANTON,4,2019-08-04 17:38:30,2019-08-15 05:15:31,2019-08-15 07:18:14,2,470.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22571,WELLI,3,2017-11-04 22:56:37,2017-11-20 14:00:37,2017-11-14 13:41:03,1,558.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22572,REGGC,4,2017-04-01 21:14:14,2017-04-07 15:47:37,2017-04-16 13:02:47,3,150.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22573,LAZYK,8,2022-03-04 06:58:11,2022-03-13 06:14:39,2022-03-07 06:52:37,3,20.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22574,PRINI,3,2014-08-28 13:35:20,2014-09-08 22:18:36,2014-09-14 06:15:04,2,32.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22575,LAUGB,1,2014-08-11 08:28:44,2014-09-13 00:36:56,2014-08-11 18:56:57,2,512,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22576,LETSS,3,2023-09-28 01:55:22,2023-10-21 09:57:05,2023-10-24 11:33:28,1,264,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22577,MEREP,4,2015-05-24 23:47:15,2015-05-31 06:22:34,2015-06-04 05:35:48,1,338.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22578,VICTE,1,2013-03-23 16:02:09,2013-03-25 12:30:43,2013-03-24 22:25:20,1,322,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22579,CHOPS,2,2019-06-04 04:07:33,2019-06-29 09:47:21,2019-06-10 07:43:58,3,322.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22580,DUMON,4,2022-06-03 03:52:36,2022-06-29 05:20:32,2022-06-23 05:54:00,1,79.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22581,BONAP,2,2021-10-19 15:31:11,2021-11-05 22:01:06,2021-10-20 06:11:35,2,216.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22582,HILAA,5,2021-02-27 13:51:45,2021-03-12 04:30:33,2021-02-27 14:23:04,3,243.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22583,LAUGB,4,2017-11-24 18:39:30,2017-12-31 04:16:52,2017-11-24 21:11:16,1,321.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22584,PICCO,1,2020-03-11 16:33:27,2020-03-14 00:44:27,2020-03-23 12:05:35,3,447.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22585,COMMI,3,2020-06-25 04:00:16,2020-06-27 15:19:19,2020-06-28 10:12:09,2,202.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22586,THEBI,4,2014-12-03 18:51:55,2015-01-28 10:45:53,2014-12-05 08:30:39,3,327.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22587,PERIC,1,2020-03-28 20:03:34,2020-05-24 20:32:59,2020-04-21 17:16:44,3,61.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22588,VALON,6,2022-08-22 17:00:58,2022-09-07 14:20:25,2022-08-29 04:43:06,3,387.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22589,BSBEV,9,2018-04-13 04:13:55,2018-05-17 08:08:56,2018-04-25 13:51:53,3,412.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22590,GODOS,7,2016-06-15 00:27:42,2016-07-24 16:54:24,2016-06-15 10:53:38,2,250.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22591,BLAUS,4,2015-07-17 03:38:54,2015-08-20 21:51:28,2015-07-17 13:14:59,3,370.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22592,PICCO,8,2022-11-02 13:51:40,2022-11-06 12:31:05,2022-11-03 15:27:09,3,73.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22593,SANTG,9,2018-04-18 19:00:32,2018-04-20 02:59:45,2018-05-08 17:03:58,3,37.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22594,LAUGB,6,2020-07-08 01:15:06,2020-07-17 09:07:17,2020-07-22 16:46:14,1,369,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22595,NORTS,1,2022-11-02 19:17:13,2022-11-04 13:58:02,2022-11-21 18:22:18,1,171,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22596,WOLZA,8,2020-09-20 06:05:48,2020-10-02 21:24:51,2020-09-20 23:17:55,2,440.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22597,VAFFE,5,2018-10-13 21:25:53,2018-11-03 01:59:44,2018-10-15 08:29:28,2,275.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22598,FOLKO,1,2014-02-14 04:55:13,2014-03-24 16:56:53,2014-02-19 02:01:48,3,139,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22599,BLAUS,1,2023-02-03 13:54:36,2023-02-12 21:16:38,2023-02-11 10:39:25,1,301.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22600,VALON,8,2016-08-08 06:20:09,2016-09-05 14:16:20,2016-08-13 13:09:08,3,49,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22601,FOLIG,7,2015-04-05 06:17:14,2015-04-10 09:55:55,2015-04-07 14:05:24,2,29.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22602,MAGAA,2,2022-10-01 17:17:04,2022-10-04 09:08:24,2022-10-23 01:52:14,3,61.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22603,SUPRD,6,2019-06-11 07:12:44,2019-07-02 16:32:28,2019-06-26 12:02:45,3,157.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +22604,VINET,2,2018-03-04 19:45:36,2018-03-13 07:37:37,2018-03-06 01:41:21,3,354.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22605,SEVES,2,2020-09-07 14:12:17,2020-09-10 23:30:12,2020-09-07 18:39:54,3,405.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22606,ERNSH,6,2013-08-29 16:02:10,2013-09-26 22:11:24,2013-09-01 16:44:05,1,326.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22607,RICSU,3,2023-07-04 03:36:41,2023-07-04 08:11:28,2023-07-20 08:47:08,1,333,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22608,QUICK,8,2018-04-04 17:06:51,2018-05-10 00:14:18,2018-04-15 13:14:26,1,388.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22609,PICCO,2,2022-01-14 05:58:30,2022-02-11 03:03:53,2022-01-17 18:58:19,3,392.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22610,ISLAT,7,2012-10-14 15:19:59,2012-11-23 15:49:32,2012-10-20 16:12:22,2,76.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22611,PARIS,4,2022-07-16 09:48:42,2022-07-23 12:22:04,2022-07-29 17:25:18,1,515,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22612,FISSA,2,2015-05-02 12:27:46,2015-05-05 11:28:49,2015-05-09 18:49:25,3,267.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22613,GALED,3,2022-02-16 05:36:20,2022-03-20 03:43:24,2022-02-19 20:07:00,1,56.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +22614,WELLI,4,2020-03-23 08:09:03,2020-04-13 15:37:04,2020-03-24 01:37:24,1,134.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22615,BONAP,3,2019-12-01 01:48:32,2020-01-06 03:27:54,2019-12-01 23:29:49,2,320.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22616,CENTC,4,2018-02-20 11:14:14,2018-02-24 02:23:04,2018-02-27 00:59:10,2,163.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22617,SEVES,4,2018-09-06 07:18:10,2018-09-22 21:39:16,2018-09-24 02:23:52,1,452.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22618,TORTU,5,2020-07-03 09:47:30,2020-08-06 18:04:10,2020-07-07 21:24:52,3,265,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22619,CACTU,4,2015-04-27 10:30:46,2015-05-20 21:18:42,2015-04-29 00:24:50,3,257,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22620,MEREP,6,2017-06-13 18:57:34,2017-07-31 05:35:41,2017-06-14 04:58:10,1,455.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22621,CENTC,4,2023-02-21 16:43:44,2023-02-25 18:22:13,2023-02-25 00:06:25,2,308.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22622,FRANK,2,2021-06-13 21:26:53,2021-07-07 01:38:24,2021-06-24 21:36:14,2,146.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22623,WHITC,9,2020-02-01 14:51:31,2020-02-07 08:40:50,2020-02-05 20:02:32,3,113.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22624,VICTE,1,2019-01-31 16:55:19,2019-03-14 15:56:39,2019-02-03 18:27:02,3,400,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22625,HUNGC,4,2015-07-19 06:15:01,2015-08-06 00:43:09,2015-08-14 12:57:13,3,84.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22626,EASTC,4,2016-08-12 20:08:32,2016-08-21 02:48:29,2016-08-31 02:53:38,1,199.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22627,MAGAA,2,2013-03-28 16:47:23,2013-05-03 16:14:34,2013-04-15 11:54:48,1,401.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22628,HANAR,6,2015-08-06 23:20:22,2015-08-10 21:06:07,2015-08-26 22:02:33,3,477.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22629,CONSH,2,2017-11-28 07:57:56,2017-12-17 07:03:04,2017-12-08 04:33:42,2,108.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22630,CACTU,5,2021-04-25 03:52:26,2021-05-17 07:40:57,2021-05-16 07:04:25,3,106.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22631,LAUGB,8,2020-11-24 01:25:38,2020-11-29 09:49:03,2020-11-25 16:00:48,3,141,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22632,SUPRD,5,2019-08-12 02:58:43,2019-09-27 19:49:55,2019-08-29 16:04:08,3,102.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22633,HUNGC,4,2014-06-01 05:14:03,2014-06-14 21:44:49,2014-06-01 06:41:29,1,193.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22634,PRINI,1,2022-09-07 06:35:11,2022-09-16 05:57:49,2022-09-12 11:57:28,3,444.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22635,LONEP,5,2019-12-19 22:05:44,2020-01-14 16:39:56,2019-12-21 13:07:53,1,394.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22636,FRANR,2,2017-07-30 02:23:23,2017-08-02 17:56:24,2017-08-03 14:23:28,3,253,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22637,GODOS,6,2014-10-17 09:09:25,2014-12-08 06:46:54,2014-11-02 08:09:53,3,212.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +22638,VICTE,2,2015-04-26 06:10:21,2015-05-16 21:04:15,2015-04-26 17:56:36,1,426.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22639,ALFKI,2,2019-11-05 18:30:32,2019-12-07 22:43:23,2019-11-25 21:42:29,1,399.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22640,FRANS,3,2018-04-02 20:22:53,2018-05-24 14:59:47,2018-04-11 18:41:32,2,421,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22641,BOTTM,2,2012-12-31 13:22:52,2013-01-23 20:36:53,2013-01-13 19:36:46,3,143.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22642,MAGAA,8,2021-04-16 00:45:35,2021-04-29 20:40:16,2021-04-16 07:25:37,1,188,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22643,TOMSP,3,2015-01-21 08:34:34,2015-02-28 03:25:03,2015-01-24 10:22:16,3,357.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22644,CONSH,8,2018-07-03 20:08:38,2018-08-04 12:14:35,2018-07-17 20:49:33,3,110.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22645,RICAR,9,2018-11-07 05:16:16,2018-12-12 07:36:32,2018-11-11 05:09:13,2,319.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22646,ISLAT,2,2017-03-12 00:46:01,2017-03-19 04:26:01,2017-03-19 16:32:21,1,289.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22647,FOLIG,1,2017-08-18 03:09:46,2017-09-15 05:35:25,2017-08-27 19:29:51,1,392.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22648,SUPRD,1,2021-02-22 13:30:39,2021-03-21 12:47:49,2021-03-04 18:44:03,3,239,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22649,FRANS,9,2016-08-24 16:46:25,2016-09-12 06:54:48,2016-08-25 09:29:36,3,470,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22650,SAVEA,9,2021-03-16 11:19:55,2021-04-07 18:30:50,2021-04-07 13:18:13,1,369,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22651,CENTC,6,2017-03-01 10:54:37,2017-03-07 02:15:37,2017-03-04 11:10:00,3,363.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22652,SPLIR,4,2013-03-25 04:25:49,2013-03-25 04:30:32,2013-03-26 05:05:29,1,65.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22653,OTTIK,8,2017-04-26 07:25:59,2017-04-30 18:40:48,2017-05-01 16:42:57,2,209,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22654,PERIC,4,2021-05-14 17:56:55,2021-06-15 08:47:05,2021-06-02 18:51:45,2,348,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22655,SPLIR,1,2012-07-19 18:43:02,2012-07-24 16:05:00,2012-07-28 08:52:30,2,132.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22656,VALON,7,2022-10-28 06:39:47,2022-10-29 14:57:14,2022-10-28 17:04:27,2,434.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22657,MAISD,9,2017-04-26 20:17:12,2017-05-24 01:17:36,2017-04-28 16:12:40,1,210.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +22658,PRINI,2,2017-05-05 13:46:03,2017-05-26 19:39:35,2017-05-06 01:15:05,3,248.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22659,SIMOB,9,2018-02-07 07:00:44,2018-03-06 11:02:13,2018-02-16 15:08:18,3,204.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22660,TORTU,2,2023-10-17 11:47:50,2023-11-12 01:23:56,2023-10-20 10:15:55,2,472.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22661,BONAP,1,2014-10-07 11:10:57,2014-11-20 22:34:22,2014-10-07 14:51:10,2,174,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22662,TRADH,5,2023-08-21 04:30:06,2023-09-02 20:19:19,2023-09-01 03:28:48,3,269,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22663,OLDWO,1,2016-09-26 12:21:55,2016-09-28 00:44:38,2016-10-03 12:19:38,1,461.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22664,MAGAA,5,2013-01-11 11:41:48,2013-03-09 14:46:18,2013-01-18 08:30:49,3,393.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22665,TOMSP,4,2022-05-24 20:41:46,2022-06-17 21:42:33,2022-06-02 23:50:49,1,152.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22666,SUPRD,4,2015-10-01 06:06:50,2015-10-02 18:08:59,2015-10-03 23:10:38,1,220.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22667,PARIS,6,2015-09-21 20:32:19,2015-10-20 22:00:51,2015-09-23 02:42:26,1,460,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22668,ANTON,7,2015-03-15 00:06:35,2015-04-16 11:37:58,2015-04-10 15:08:36,3,446.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22669,RICAR,7,2021-01-26 17:25:58,2021-02-23 17:07:16,2021-01-28 07:29:19,3,31,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +22670,QUICK,5,2018-08-05 18:17:31,2018-08-23 10:20:23,2018-08-09 06:35:35,1,360.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22671,FOLIG,5,2013-07-15 09:45:29,2013-08-09 09:05:24,2013-07-16 03:58:15,3,229.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22672,LAMAI,3,2021-10-06 12:35:37,2021-10-15 21:17:35,2021-10-18 10:01:56,2,309.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22673,LAUGB,7,2018-01-03 01:50:08,2018-01-18 09:34:21,2018-01-07 03:18:01,1,32.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22674,LAZYK,1,2019-07-05 20:42:54,2019-07-12 13:26:31,2019-07-07 11:21:52,1,65.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22675,THEBI,2,2015-09-09 00:35:50,2015-09-19 06:10:32,2015-09-11 00:29:34,2,414,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22676,ALFKI,4,2020-01-26 02:11:58,2020-03-01 01:22:24,2020-02-02 05:25:48,3,523,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22677,RATTC,1,2014-07-02 22:35:46,2014-08-14 23:49:47,2014-07-11 21:47:16,1,141.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22678,NORTS,3,2019-05-21 10:10:14,2019-07-12 17:07:55,2019-06-03 21:53:39,2,458,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22679,BLONP,6,2019-10-04 14:16:47,2019-11-08 15:18:18,2019-10-04 19:09:43,3,80.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22680,LACOR,9,2012-10-01 11:16:15,2012-10-26 00:51:50,2012-10-08 20:33:14,2,447,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22681,PERIC,9,2018-12-25 06:00:15,2019-01-05 18:02:32,2019-01-03 08:11:56,3,400.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22682,MORGK,1,2017-01-18 09:53:05,2017-02-17 12:57:57,2017-02-12 18:20:02,3,393,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22683,RICAR,6,2021-08-22 06:22:32,2021-09-12 10:24:42,2021-09-06 20:03:06,2,57.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22684,MEREP,5,2021-04-17 06:02:49,2021-05-16 00:18:49,2021-04-19 13:44:49,2,89,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22685,ROMEY,6,2021-01-11 02:02:18,2021-02-04 02:02:05,2021-01-20 17:48:25,1,411.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +22686,THEBI,4,2018-11-29 04:42:54,2019-01-14 14:32:03,2018-12-15 20:21:29,1,91.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22687,QUEDE,4,2016-08-06 05:31:03,2016-08-27 00:36:00,2016-08-07 13:13:06,3,39.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22688,LEHMS,8,2016-06-25 10:25:22,2016-07-06 03:04:29,2016-06-30 08:50:53,3,100.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22689,QUEEN,8,2020-04-25 13:45:33,2020-05-16 03:37:47,2020-04-28 10:38:15,3,311.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22690,MAISD,6,2017-07-07 11:49:39,2017-07-20 20:43:24,2017-07-15 14:34:55,2,535.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22691,WOLZA,6,2015-10-31 21:23:14,2015-11-11 21:14:15,2015-11-15 22:39:36,1,81.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22692,OTTIK,7,2017-08-02 07:09:20,2017-09-21 17:13:16,2017-08-08 17:57:11,1,104.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22693,BONAP,9,2021-02-01 17:50:57,2021-02-15 06:55:43,2021-02-02 16:42:00,1,441.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22694,TRAIH,7,2020-08-24 02:38:32,2020-08-27 18:17:45,2020-09-14 20:09:33,1,441.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22695,WOLZA,3,2016-09-23 15:51:11,2016-09-27 01:13:40,2016-09-23 17:45:05,3,385.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22696,CACTU,5,2019-11-02 18:36:29,2019-11-14 00:50:31,2019-11-26 14:00:25,2,90.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22697,BLAUS,5,2015-04-21 18:57:58,2015-05-02 15:15:37,2015-04-24 18:20:11,2,130.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22698,SAVEA,8,2017-05-17 20:21:55,2017-06-18 23:29:27,2017-05-18 16:50:33,1,455.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22699,TRADH,5,2018-09-10 14:26:43,2018-09-13 05:27:38,2018-09-15 11:46:25,2,145.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22700,QUEDE,6,2018-08-13 11:32:54,2018-09-02 04:54:32,2018-08-25 14:20:46,3,34,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22701,RANCH,5,2022-09-05 05:26:25,2022-09-06 21:02:35,2022-09-13 03:09:09,1,180.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22702,PARIS,4,2019-08-05 10:58:43,2019-09-04 13:19:36,2019-08-12 03:52:10,1,446.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22703,BOLID,8,2021-12-23 14:18:09,2021-12-29 03:19:16,2021-12-25 05:08:23,1,291.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22704,ROMEY,4,2012-12-09 22:50:33,2012-12-11 04:08:44,2012-12-13 09:57:20,3,134.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +22705,RATTC,1,2018-04-27 22:55:24,2018-05-10 11:52:15,2018-05-06 20:04:44,1,75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22706,BONAP,8,2020-02-06 08:04:17,2020-02-12 02:33:30,2020-02-09 05:29:02,3,145.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22707,CACTU,2,2015-03-29 21:23:04,2015-05-13 04:01:47,2015-04-04 23:53:06,1,153,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22708,BERGS,3,2021-07-27 04:01:13,2021-08-01 08:26:41,2021-08-16 04:06:56,1,469.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22709,VALON,7,2018-02-06 20:11:38,2018-02-28 19:52:57,2018-02-27 00:59:33,2,294.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22710,HANAR,7,2021-01-07 20:37:20,2021-01-15 05:52:26,2021-01-08 07:44:46,1,517.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22711,DUMON,3,2017-09-03 03:08:38,2017-09-07 17:46:01,2017-09-18 13:47:58,1,404.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22712,QUEDE,3,2021-05-31 05:56:36,2021-06-24 17:32:16,2021-06-14 16:57:29,1,33,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22713,WELLI,4,2016-01-05 21:51:12,2016-01-21 11:32:44,2016-01-10 10:37:48,3,117,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22714,QUEDE,4,2023-03-03 18:37:40,2023-04-03 21:49:57,2023-03-19 13:31:47,3,426.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22715,ANATR,2,2023-07-25 03:20:26,2023-09-01 08:40:00,2023-08-21 04:19:53,1,15.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22716,ANATR,6,2022-09-26 07:41:26,2022-10-11 22:23:27,2022-09-30 22:35:07,2,466.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22717,QUEDE,8,2023-03-07 22:48:52,2023-03-08 12:31:43,2023-03-18 08:55:28,1,171,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22718,TORTU,2,2018-09-26 16:05:49,2018-11-01 13:07:30,2018-09-27 05:34:56,1,45.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22719,ROMEY,9,2022-07-11 02:14:17,2022-07-13 20:56:31,2022-07-13 07:23:20,1,431,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22720,THEBI,2,2019-03-18 21:43:38,2019-03-22 15:33:19,2019-03-28 14:19:40,3,408,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +22721,OCEAN,7,2013-10-24 16:20:36,2013-11-04 18:56:04,2013-10-25 03:41:41,3,96.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22722,FURIB,9,2023-06-20 02:56:47,2023-07-03 22:01:04,2023-06-21 14:34:29,2,31.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22723,WOLZA,7,2015-10-02 14:12:25,2015-10-05 05:05:04,2015-10-07 06:48:58,2,246.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +22724,SEVES,1,2017-09-20 17:14:52,2017-09-26 16:26:09,2017-10-03 09:38:01,2,437.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22725,OCEAN,1,2018-08-22 18:34:21,2018-09-14 07:11:07,2018-08-23 19:58:42,2,126,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22726,PRINI,9,2014-11-04 08:29:58,2014-11-05 09:00:15,2014-11-16 09:12:43,3,176.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22727,DUMON,2,2012-11-13 08:21:10,2012-12-11 22:40:55,2012-11-14 21:00:53,2,436.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22728,COMMI,8,2017-03-09 04:15:48,2017-04-07 19:49:15,2017-03-10 04:33:39,2,70.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22729,COMMI,9,2020-08-07 14:33:21,2020-08-26 21:13:36,2020-08-12 01:43:03,2,301,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22730,MORGK,8,2012-12-15 23:26:38,2013-01-09 19:40:04,2012-12-17 23:00:09,1,67.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22731,AROUT,8,2013-09-06 05:24:41,2013-09-13 16:45:58,2013-09-10 00:02:00,2,95,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22732,TORTU,3,2016-03-27 01:20:39,2016-04-04 06:06:34,2016-03-27 14:52:44,1,80.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22733,LETSS,3,2019-09-04 03:52:16,2019-09-16 11:58:04,2019-09-05 18:11:37,3,104,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22734,BLAUS,2,2014-09-28 08:23:16,2014-10-11 01:35:42,2014-10-16 17:33:31,2,40.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22735,LEHMS,3,2018-01-22 19:53:44,2018-02-21 23:27:09,2018-01-24 11:08:38,2,417.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22736,WILMK,7,2023-05-29 08:41:43,2023-06-08 11:55:13,2023-06-14 15:09:59,1,328,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22737,KOENE,6,2016-07-01 13:30:47,2016-07-17 03:55:09,2016-07-19 13:35:38,1,171.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22738,LINOD,4,2013-04-03 04:40:06,2013-04-21 07:06:34,2013-04-15 05:55:43,2,275.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22739,RANCH,4,2013-09-25 05:28:07,2013-09-29 11:25:47,2013-10-16 21:02:01,2,221.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22740,BLONP,5,2017-10-09 18:07:09,2017-10-18 11:47:40,2017-10-12 23:43:10,1,324.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22741,PICCO,4,2018-05-24 02:06:56,2018-06-25 12:37:29,2018-06-04 20:46:41,1,374.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +22742,QUICK,6,2020-09-04 18:21:07,2020-09-09 15:11:12,2020-09-13 07:57:09,3,336,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22743,GOURL,5,2021-03-12 18:10:20,2021-03-23 04:08:27,2021-03-14 12:38:28,1,104.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22744,FURIB,6,2017-07-01 06:17:53,2017-08-08 17:31:49,2017-07-29 13:14:35,3,272.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22745,PRINI,3,2013-02-14 10:26:47,2013-02-26 16:31:38,2013-03-12 10:09:49,3,81.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +22746,ALFKI,1,2021-07-11 00:47:07,2021-07-15 19:40:49,2021-07-21 08:24:28,3,156.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22747,WOLZA,7,2012-12-30 12:02:36,2013-01-15 21:18:10,2013-01-13 17:08:30,2,193.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22748,ROMEY,9,2020-05-17 00:54:44,2020-05-21 16:50:19,2020-05-17 10:39:02,2,80,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22749,PERIC,4,2017-06-22 17:42:57,2017-07-23 13:10:18,2017-06-25 16:35:16,1,336.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22750,SUPRD,4,2016-06-13 01:05:26,2016-06-22 19:54:36,2016-06-24 21:23:01,3,74.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22751,HANAR,4,2019-12-27 14:25:30,2019-12-29 17:36:02,2020-01-02 15:43:55,3,164.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22752,VAFFE,3,2014-02-15 19:01:34,2014-03-31 13:11:43,2014-03-05 10:57:27,1,34,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22753,DUMON,6,2022-01-08 09:39:54,2022-01-25 13:21:47,2022-01-30 04:23:45,1,418.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22754,ROMEY,1,2013-04-11 13:15:38,2013-04-23 03:04:10,2013-04-27 06:31:51,1,241.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22755,BSBEV,7,2013-05-03 02:20:02,2013-05-07 19:21:27,2013-05-13 06:44:02,1,103.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +22756,VALON,6,2013-10-26 22:39:37,2013-11-19 14:48:36,2013-11-13 21:57:36,3,267.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22757,KOENE,9,2019-01-22 03:31:04,2019-01-25 10:00:43,2019-01-28 03:10:38,1,142.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22758,BOLID,9,2022-11-10 12:41:58,2022-12-22 16:33:11,2022-11-11 14:06:59,3,394.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22759,BLAUS,4,2019-12-12 10:49:05,2019-12-14 17:48:53,2019-12-13 07:54:16,3,66.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22760,EASTC,5,2021-04-17 20:17:59,2021-04-26 14:52:06,2021-04-30 16:11:02,1,169.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22761,TOMSP,4,2021-04-02 14:08:33,2021-04-03 21:45:45,2021-04-05 08:10:20,3,414.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22762,BOTTM,5,2016-01-25 02:09:08,2016-03-06 10:04:55,2016-02-12 23:46:58,3,331.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22763,CACTU,4,2023-01-25 23:21:36,2023-02-07 01:11:27,2023-01-29 12:40:24,2,165.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22764,ANATR,8,2015-10-03 15:47:26,2015-10-20 05:22:40,2015-10-06 06:09:13,3,222.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22765,VINET,7,2022-09-09 08:56:46,2022-10-17 01:48:19,2022-09-13 16:11:42,3,462.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22766,BOLID,9,2015-08-24 18:04:28,2015-09-30 14:37:06,2015-09-03 11:26:51,2,196.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22767,FAMIA,1,2017-09-29 05:56:50,2017-09-30 09:27:52,2017-10-02 08:03:26,2,171,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +22768,BOTTM,1,2016-03-06 00:30:17,2016-03-07 12:04:33,2016-03-07 12:49:13,1,396,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22769,LINOD,4,2020-10-07 09:04:55,2020-10-11 00:00:18,2020-10-08 07:12:37,2,437,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22770,OTTIK,1,2013-06-27 16:00:28,2013-07-15 00:14:00,2013-06-28 07:51:09,3,370.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22771,CACTU,9,2017-08-01 00:49:26,2017-08-19 02:27:40,2017-08-28 15:29:17,2,132.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22772,QUEEN,2,2022-10-30 05:00:47,2022-11-26 08:25:38,2022-11-09 09:19:16,2,443.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22773,EASTC,8,2022-05-27 10:34:45,2022-06-23 08:18:36,2022-05-27 19:45:01,1,521.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22774,FRANR,9,2021-11-11 17:16:26,2022-01-05 07:47:23,2021-11-19 06:34:49,3,315.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22775,LAZYK,1,2017-03-08 05:49:22,2017-04-17 11:57:16,2017-03-22 22:21:08,2,188.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22776,HILAA,9,2012-11-18 09:24:54,2012-11-23 05:00:09,2012-11-23 03:51:19,1,185,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +22777,GODOS,1,2019-06-08 20:07:49,2019-07-13 17:30:21,2019-06-29 03:51:24,1,19,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22778,LONEP,2,2016-03-24 05:23:38,2016-05-13 13:20:03,2016-03-25 06:04:52,1,66.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +22779,BERGS,6,2021-06-19 19:15:52,2021-07-11 07:40:13,2021-06-20 01:23:02,1,436,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22780,CACTU,1,2021-07-18 13:12:19,2021-08-07 07:28:03,2021-07-29 13:27:00,2,517.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22781,FAMIA,4,2014-08-21 20:32:44,2014-09-24 05:08:14,2014-08-23 04:43:48,3,58.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22782,VAFFE,8,2016-05-18 05:46:48,2016-05-26 22:08:24,2016-05-27 13:12:25,1,437.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22783,DRACD,2,2015-07-05 09:42:26,2015-07-10 23:20:22,2015-07-08 02:00:05,1,27.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22784,BERGS,6,2013-01-03 19:42:52,2013-02-09 11:23:27,2013-01-09 11:21:12,3,80,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22785,ROMEY,2,2014-03-23 05:45:03,2014-05-11 13:33:03,2014-03-23 06:37:10,2,43.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22786,EASTC,6,2014-03-20 15:35:13,2014-03-29 11:09:38,2014-04-03 16:56:00,3,233.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22787,ALFKI,2,2016-02-25 18:20:50,2016-02-27 21:30:45,2016-02-29 16:55:14,2,151.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22788,SPECD,8,2020-05-24 04:03:24,2020-06-09 00:36:31,2020-06-03 03:57:57,2,314.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22789,FRANK,6,2013-08-08 03:48:25,2013-09-10 02:07:27,2013-08-22 20:16:44,3,131.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +22790,WELLI,7,2020-07-28 11:26:46,2020-08-01 16:20:54,2020-07-28 23:26:46,1,314.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +22791,BSBEV,2,2018-12-26 16:09:09,2019-01-12 13:30:58,2019-01-05 08:33:38,3,153,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +22792,BERGS,5,2022-12-22 20:45:47,2023-01-10 08:37:32,2023-01-03 18:58:25,2,356.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22793,LACOR,2,2023-05-22 14:47:19,2023-06-29 22:12:39,2023-05-26 00:14:49,1,299.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22794,FOLIG,1,2023-05-17 03:06:39,2023-05-23 20:29:40,2023-05-17 08:59:35,1,311.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22795,WELLI,3,2020-06-19 17:52:50,2020-07-12 00:09:35,2020-06-21 04:05:53,3,277.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22796,WHITC,8,2021-10-08 14:33:53,2021-10-09 10:27:36,2021-10-13 09:06:51,1,62.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +22797,WELLI,9,2022-12-17 04:04:53,2022-12-27 07:44:25,2022-12-19 21:28:25,2,505.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22798,FAMIA,5,2019-12-05 18:19:36,2019-12-29 01:41:40,2019-12-07 12:37:53,2,124.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22799,THECR,2,2016-01-12 23:58:12,2016-01-21 10:22:42,2016-01-14 16:56:09,3,474.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22800,ANATR,8,2016-09-25 16:59:56,2016-10-06 07:11:16,2016-10-05 00:31:47,3,329,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22801,ALFKI,2,2021-08-16 16:42:21,2021-08-28 03:33:27,2021-08-25 10:25:25,1,20.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +22802,MAGAA,6,2019-04-07 02:31:23,2019-04-23 09:27:48,2019-04-09 06:15:12,1,240.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +22803,MORGK,1,2012-07-31 05:53:27,2012-08-04 18:02:31,2012-08-11 04:48:00,2,348.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22804,WILMK,1,2017-01-31 02:29:27,2017-02-13 22:19:56,2017-02-07 21:10:37,1,301,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22805,CHOPS,4,2016-12-26 11:21:41,2017-01-23 14:17:12,2016-12-27 07:41:37,2,513.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22806,COMMI,5,2012-11-13 20:31:43,2012-11-26 02:05:53,2012-11-23 03:46:13,2,330.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22807,RICSU,2,2017-01-11 08:42:16,2017-02-05 09:55:27,2017-01-18 10:19:38,1,91.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22808,MAISD,5,2014-12-29 10:35:11,2015-01-02 07:54:48,2015-01-01 18:43:50,1,103.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22809,LACOR,4,2021-05-22 03:25:48,2021-06-02 01:12:45,2021-06-08 07:50:00,1,386.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22810,PARIS,8,2015-04-29 19:21:48,2015-05-05 03:02:20,2015-05-03 06:18:53,1,426.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22811,SEVES,6,2017-02-28 05:53:15,2017-04-18 21:41:25,2017-03-03 20:38:26,1,340.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22812,OTTIK,4,2020-01-23 06:24:14,2020-02-09 06:19:46,2020-02-07 17:12:28,2,344.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22813,CONSH,2,2018-12-08 14:27:16,2018-12-15 09:33:59,2018-12-14 04:51:10,3,454.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +22814,TRAIH,7,2021-01-10 19:28:28,2021-01-20 03:36:24,2021-01-13 04:58:17,1,447,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22815,WELLI,3,2021-05-21 14:35:26,2021-05-31 06:49:20,2021-05-22 12:49:20,3,73.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22816,HANAR,3,2012-11-07 16:42:51,2012-12-10 23:52:39,2012-11-11 05:04:13,1,158.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22817,GODOS,3,2022-02-18 13:49:04,2022-02-28 07:23:10,2022-03-10 18:13:10,2,444.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22818,AROUT,8,2013-10-02 03:48:36,2013-10-19 04:02:52,2013-10-05 22:59:27,3,156.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22819,LINOD,9,2019-10-08 10:36:29,2019-11-19 09:50:21,2019-10-13 18:03:19,3,150.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22820,VAFFE,5,2013-10-28 19:21:54,2013-11-10 18:22:43,2013-11-23 08:36:32,3,292.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22821,GALED,3,2015-01-27 18:29:50,2015-02-15 13:00:36,2015-02-23 17:57:43,1,465.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22822,LINOD,7,2022-05-16 00:11:50,2022-05-27 02:07:48,2022-05-25 13:04:34,1,403,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22823,LAZYK,2,2019-12-23 08:17:51,2020-01-04 18:26:33,2020-01-01 20:10:49,1,142.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22824,DRACD,3,2020-10-15 19:48:55,2020-11-16 13:51:09,2020-10-17 22:57:39,3,160.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22825,ISLAT,6,2015-10-06 08:25:34,2015-10-10 00:31:59,2015-10-26 19:11:16,2,80.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22826,PRINI,1,2016-11-09 06:20:54,2016-12-09 06:31:57,2016-11-10 01:45:10,2,158.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22827,THEBI,3,2018-04-23 20:22:50,2018-04-25 16:31:55,2018-04-29 02:24:37,2,435,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22828,SUPRD,7,2013-09-07 09:47:45,2013-10-08 09:28:33,2013-09-09 06:09:32,3,108,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22829,OLDWO,5,2014-03-22 08:14:01,2014-04-01 04:34:01,2014-04-04 11:58:20,3,243.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22830,CENTC,4,2019-08-20 15:05:52,2019-08-20 15:42:38,2019-08-20 21:13:08,1,211.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22831,AROUT,2,2020-05-24 21:39:37,2020-06-25 18:03:19,2020-05-30 11:03:47,3,418.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22832,BOLID,4,2012-10-23 13:30:00,2012-10-27 22:07:39,2012-11-10 20:05:14,3,358.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22833,QUEEN,2,2020-11-29 02:59:08,2020-12-05 10:28:54,2020-12-15 09:28:50,2,88,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +22834,SUPRD,6,2017-12-17 22:52:23,2018-01-19 02:05:42,2018-01-02 09:01:33,2,424.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22835,TRAIH,4,2018-09-24 21:49:59,2018-10-19 06:26:42,2018-10-17 05:26:20,2,67,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +22836,OLDWO,1,2015-03-24 21:45:35,2015-04-13 19:41:34,2015-03-27 04:19:58,1,389.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +22837,COMMI,8,2017-01-07 18:39:04,2017-01-12 15:59:46,2017-01-12 19:00:46,2,40.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22838,KOENE,8,2022-06-10 23:26:46,2022-07-02 08:35:14,2022-06-13 02:47:07,1,145.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22839,FAMIA,3,2021-12-13 17:09:17,2022-01-05 02:07:18,2021-12-19 02:44:55,1,222.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22840,LILAS,8,2012-07-31 21:36:46,2012-08-14 13:25:55,2012-08-11 11:52:12,1,250.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22841,ISLAT,8,2019-03-16 21:16:29,2019-04-10 22:50:07,2019-03-18 10:13:33,1,306.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22842,BOLID,3,2013-10-09 11:51:40,2013-10-23 12:46:39,2013-10-28 07:48:23,1,242,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22843,TOMSP,1,2021-04-16 08:56:20,2021-05-02 16:10:00,2021-04-18 13:53:01,1,241.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22844,LAZYK,7,2020-02-11 14:19:13,2020-02-15 03:53:13,2020-02-23 09:43:29,3,171,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +22845,MAISD,8,2020-06-02 06:59:13,2020-06-02 12:08:15,2020-06-06 02:01:14,1,466.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22846,WARTH,7,2019-05-26 14:04:07,2019-06-30 05:38:30,2019-05-27 02:08:28,1,428.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22847,ANTON,7,2017-09-12 07:36:31,2017-10-17 13:34:40,2017-09-23 02:22:15,2,289.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22848,FRANK,4,2022-12-09 01:44:17,2022-12-09 21:45:17,2022-12-14 00:43:51,2,325,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22849,MORGK,8,2013-06-26 16:35:25,2013-07-23 01:26:57,2013-07-08 21:45:20,3,91.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22850,FOLIG,3,2015-03-02 08:44:11,2015-03-13 20:06:07,2015-03-02 21:44:54,3,496.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22851,PRINI,5,2014-02-06 19:47:28,2014-03-09 00:20:37,2014-02-11 07:44:50,2,83.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22852,PARIS,7,2022-08-13 16:01:44,2022-08-30 03:14:49,2022-09-07 13:08:27,3,433.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22853,SAVEA,6,2018-01-04 16:05:12,2018-01-27 21:05:50,2018-01-20 18:38:42,1,123.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22854,Val2 ,2,2016-07-13 13:26:56,2016-07-17 02:16:48,2016-07-16 11:51:07,1,67.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22855,THECR,7,2020-03-18 12:41:13,2020-04-21 15:06:21,2020-03-18 22:15:55,3,441.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22856,FISSA,6,2017-05-13 19:44:14,2017-06-06 12:10:01,2017-05-24 18:17:04,2,369,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +22857,CENTC,8,2016-08-10 06:04:14,2016-08-10 19:14:45,2016-08-10 10:07:58,3,236.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22858,REGGC,1,2021-11-29 04:40:37,2021-12-03 11:13:38,2021-11-30 05:40:16,2,22.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22859,LACOR,6,2020-03-12 10:38:59,2020-04-07 13:16:41,2020-03-15 03:41:09,1,277.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22860,FISSA,1,2018-01-11 22:49:49,2018-01-14 06:23:48,2018-01-15 14:46:03,1,500,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22861,BONAP,5,2023-03-30 21:40:52,2023-04-12 23:06:17,2023-04-03 05:16:10,3,133.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22862,BOLID,4,2023-05-01 02:07:26,2023-05-23 01:23:36,2023-05-12 01:21:40,3,118.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22863,BLAUS,7,2020-05-30 14:13:46,2020-07-09 02:51:15,2020-06-01 01:01:20,1,83.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22864,BONAP,8,2015-03-07 22:54:38,2015-04-01 08:53:17,2015-03-16 05:04:48,3,387.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22865,BONAP,2,2023-05-05 09:13:33,2023-05-27 17:59:40,2023-05-18 04:10:57,2,486.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +22866,ROMEY,4,2019-06-11 02:21:35,2019-07-01 23:00:10,2019-06-25 08:32:14,1,160.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +22867,GROSR,7,2017-09-25 18:16:02,2017-09-26 03:35:07,2017-10-18 03:46:12,3,529.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22868,ERNSH,5,2022-03-09 23:29:32,2022-04-02 01:19:30,2022-03-18 17:29:12,1,286,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22869,BSBEV,3,2019-10-14 23:52:57,2019-10-24 12:44:11,2019-10-18 18:51:14,2,118.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22870,LAZYK,1,2019-05-01 13:17:40,2019-05-06 12:57:52,2019-05-07 01:41:35,1,431.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22871,ROMEY,9,2017-06-17 19:39:49,2017-06-25 03:07:30,2017-06-24 04:40:00,1,245.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +22872,QUEDE,5,2013-08-10 10:49:57,2013-08-25 01:24:40,2013-08-11 02:27:07,2,42.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22873,TORTU,2,2022-11-21 12:02:53,2023-01-02 21:40:51,2022-11-23 17:15:41,1,173,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22874,FRANS,2,2020-12-02 20:46:14,2021-01-18 06:21:48,2020-12-18 16:54:13,3,312.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22875,TORTU,7,2020-01-23 09:47:54,2020-02-13 17:45:08,2020-01-24 00:35:47,2,351.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22876,FOLKO,5,2015-05-21 19:14:17,2015-05-25 14:04:34,2015-05-25 13:55:44,2,358.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22877,HUNGO,3,2015-12-30 00:39:07,2016-01-11 07:29:09,2016-01-09 19:54:13,1,209,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +22878,TRADH,1,2019-08-22 15:22:47,2019-09-24 14:12:41,2019-08-26 08:51:49,2,134,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22879,LEHMS,7,2019-02-02 20:01:27,2019-02-24 18:28:16,2019-02-05 12:25:38,3,197.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22880,SUPRD,7,2023-05-08 13:23:47,2023-05-20 01:18:09,2023-05-19 19:51:41,2,466.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22881,GOURL,6,2018-01-06 01:31:50,2018-02-07 22:14:23,2018-01-08 20:58:16,2,201.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22882,SAVEA,9,2014-02-16 06:38:06,2014-02-22 19:57:42,2014-02-16 16:43:00,1,328.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22883,PRINI,8,2021-06-12 02:44:25,2021-06-16 13:02:58,2021-06-23 05:23:30,2,533.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +22884,MAGAA,2,2021-03-08 09:10:12,2021-03-18 20:11:37,2021-03-09 15:38:01,1,162.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22885,WARTH,1,2016-09-21 14:27:19,2016-10-05 19:46:48,2016-10-13 18:43:24,3,338.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22886,PERIC,7,2019-11-20 09:50:07,2019-12-06 15:58:00,2019-11-22 03:51:56,3,77.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22887,LAZYK,4,2018-07-12 10:25:23,2018-07-29 18:13:47,2018-07-13 17:38:04,2,477,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22888,Val2 ,8,2019-03-13 06:29:18,2019-03-29 10:19:57,2019-03-21 08:01:08,2,202,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22889,REGGC,5,2020-05-20 01:12:53,2020-06-12 05:03:16,2020-05-25 00:07:54,1,38.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22890,LONEP,8,2013-08-26 01:13:49,2013-09-11 16:20:30,2013-08-31 01:51:18,1,261,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22891,OLDWO,9,2021-11-30 00:53:18,2022-01-04 09:13:17,2021-11-30 05:19:47,1,477,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +22892,SPECD,6,2022-08-17 04:21:01,2022-10-07 22:16:35,2022-08-26 00:48:48,1,329,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22893,BOLID,2,2021-07-03 10:24:01,2021-07-07 09:50:46,2021-07-03 21:30:49,2,518.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22894,OLDWO,3,2017-12-23 16:25:32,2018-01-03 06:46:44,2017-12-25 22:19:26,2,367,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +22895,CACTU,8,2017-01-03 15:34:06,2017-01-17 04:04:16,2017-01-19 22:46:04,3,18,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22896,TRADH,2,2012-07-18 06:35:06,2012-08-28 02:35:07,2012-07-24 19:24:43,1,425,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22897,QUEDE,3,2014-11-24 05:40:59,2015-01-12 15:58:56,2014-11-25 17:36:20,1,397.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22898,LAMAI,2,2023-08-23 12:30:53,2023-09-10 22:42:25,2023-09-19 01:57:14,3,14.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +22899,LAZYK,3,2018-03-24 01:36:26,2018-04-04 12:53:07,2018-03-26 12:47:23,1,62.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +22900,VALON,1,2023-04-28 20:12:06,2023-05-20 11:21:37,2023-05-01 02:16:36,2,504.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +22901,FRANR,2,2019-04-02 07:27:37,2019-05-04 07:50:18,2019-04-11 19:44:55,2,479,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22902,GODOS,3,2015-02-02 07:55:01,2015-02-20 17:43:30,2015-02-14 17:15:13,2,187,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +22903,Val2 ,9,2015-06-04 18:05:13,2015-06-23 10:59:43,2015-06-14 12:23:14,3,46.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22904,SPLIR,2,2014-10-18 05:22:05,2014-12-03 03:16:26,2014-11-07 07:42:07,3,51.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22905,WILMK,5,2019-11-12 12:26:43,2019-11-14 22:08:29,2019-11-15 12:40:35,2,189.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22906,QUEEN,9,2021-05-19 00:18:29,2021-05-22 11:21:16,2021-05-19 23:59:41,2,420.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22907,ROMEY,3,2013-06-20 07:59:25,2013-07-25 03:32:23,2013-07-03 02:21:37,3,372.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22908,COMMI,6,2021-03-08 12:47:36,2021-03-17 19:55:19,2021-03-14 12:52:23,2,159.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22909,RANCH,3,2018-07-08 09:28:04,2018-08-08 12:04:29,2018-07-25 05:46:31,2,299.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +22910,SAVEA,5,2018-03-27 15:43:03,2018-05-03 10:16:12,2018-03-28 23:01:45,1,96.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22911,GREAL,4,2021-11-09 12:15:25,2021-11-20 14:25:47,2021-11-18 15:04:46,3,36,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22912,MAGAA,7,2019-05-18 16:13:20,2019-07-11 02:26:36,2019-05-24 15:45:09,1,19.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +22913,RICAR,8,2020-06-04 11:18:35,2020-06-04 12:03:55,2020-06-24 22:56:09,1,462,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22914,MAGAA,7,2019-06-12 02:21:18,2019-07-10 16:11:45,2019-07-05 19:01:52,2,128,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22915,QUEEN,9,2015-12-10 05:08:06,2015-12-22 12:49:50,2015-12-21 16:49:47,2,141.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22916,BLONP,4,2019-12-12 08:11:13,2019-12-30 02:21:06,2020-01-07 21:20:27,1,436.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +22917,HANAR,4,2013-12-09 19:22:40,2013-12-10 21:47:42,2013-12-19 17:10:00,2,382.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22918,LINOD,1,2017-10-30 21:39:48,2017-11-22 09:08:14,2017-11-04 02:21:22,2,261.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22919,REGGC,9,2019-04-29 02:07:30,2019-05-21 01:59:54,2019-05-02 06:50:24,1,323.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +22920,CENTC,4,2015-03-01 12:04:45,2015-04-03 00:14:49,2015-03-22 18:36:45,3,89.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +22921,HUNGO,3,2022-07-02 06:54:01,2022-08-12 02:42:21,2022-07-09 17:22:53,1,35.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22922,SIMOB,6,2023-04-25 04:51:39,2023-05-28 21:00:08,2023-04-27 16:19:21,1,52.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +22923,BLAUS,7,2017-01-06 02:04:29,2017-01-09 12:26:47,2017-01-10 00:56:18,1,433.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +22924,BLAUS,7,2014-07-24 05:12:45,2014-08-15 17:21:58,2014-07-26 00:18:44,2,507.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22925,BLAUS,1,2023-05-15 04:26:14,2023-05-30 11:43:09,2023-05-17 10:14:28,2,130,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +22926,QUEEN,6,2018-02-12 09:32:02,2018-02-23 04:27:21,2018-02-19 13:27:12,3,342.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22927,DRACD,9,2021-10-11 06:21:02,2021-10-26 00:27:54,2021-10-30 16:55:41,3,464,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22928,LAMAI,1,2015-09-24 16:24:08,2015-10-03 09:43:47,2015-10-06 13:06:17,1,111.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22929,QUEEN,4,2013-04-21 14:52:05,2013-05-14 20:44:10,2013-05-01 07:10:02,3,261.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +22930,QUEDE,8,2022-08-13 23:19:44,2022-08-21 01:56:34,2022-08-15 00:36:57,1,122.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22931,REGGC,6,2015-07-26 23:13:41,2015-07-31 06:34:30,2015-08-06 11:58:39,1,267.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22932,MAGAA,9,2014-05-08 03:16:04,2014-06-20 17:57:56,2014-05-14 05:34:30,3,59.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +22933,WELLI,7,2014-12-23 07:15:02,2015-01-01 10:27:21,2014-12-23 13:59:19,1,487.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +22934,LETSS,1,2014-03-08 21:12:42,2014-03-24 22:13:20,2014-03-10 01:43:01,1,364.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22935,LONEP,3,2017-01-04 12:14:34,2017-01-14 22:52:58,2017-01-24 08:05:12,2,48.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +22936,LINOD,9,2014-10-14 08:13:27,2014-11-06 09:34:17,2014-10-25 23:06:46,1,92,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22937,PRINI,7,2013-05-19 18:20:25,2013-06-21 04:22:32,2013-05-21 07:09:49,2,468,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +22938,FRANK,2,2023-07-27 01:45:49,2023-09-08 18:38:25,2023-08-06 10:20:54,3,333,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22939,BLAUS,6,2022-02-11 16:20:18,2022-02-15 09:52:14,2022-02-18 07:59:17,1,402.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22940,ALFKI,4,2021-01-06 22:02:46,2021-02-06 02:34:29,2021-01-16 09:28:56,3,95.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22941,LINOD,7,2023-10-15 12:38:06,2023-12-05 22:36:53,2023-10-16 19:39:35,3,210.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +22942,LAMAI,6,2019-12-04 23:29:15,2019-12-14 14:32:09,2019-12-05 21:26:08,2,42.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +22943,MEREP,1,2012-09-24 23:39:36,2012-10-01 14:28:42,2012-09-30 19:14:07,1,105.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +22944,KOENE,3,2019-03-17 01:25:33,2019-03-20 07:02:10,2019-03-19 20:49:48,1,434.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +22945,KOENE,7,2023-09-26 17:27:17,2023-10-12 14:37:07,2023-10-03 08:32:30,1,235,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +22946,WELLI,4,2016-08-13 02:10:43,2016-08-14 19:50:43,2016-08-13 09:05:52,2,390.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22947,FISSA,3,2023-03-02 17:27:22,2023-03-26 00:59:33,2023-03-24 01:07:17,1,431,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +22948,SPLIR,2,2020-12-26 23:17:45,2021-02-19 18:20:02,2021-01-08 22:58:39,3,21.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22949,BERGS,6,2013-05-03 11:20:32,2013-05-07 03:18:29,2013-05-08 04:55:21,1,317.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +22950,TORTU,7,2017-09-16 06:24:52,2017-10-06 08:39:52,2017-09-18 04:33:35,3,364.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22951,WOLZA,8,2017-02-20 22:41:25,2017-02-23 14:34:02,2017-03-04 16:08:23,3,192.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +22952,WILMK,6,2015-08-19 19:58:12,2015-08-30 13:56:42,2015-08-19 23:30:05,2,171,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +22953,THECR,6,2017-07-28 08:55:21,2017-09-14 02:45:21,2017-08-07 02:13:47,3,276.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +22954,SPECD,5,2017-07-13 00:09:38,2017-07-24 03:58:20,2017-07-29 04:23:36,3,54.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22955,PERIC,2,2015-05-02 13:19:29,2015-06-30 07:34:13,2015-05-29 05:54:16,2,150,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22956,HUNGC,3,2015-04-27 23:39:16,2015-05-07 09:15:54,2015-05-11 21:49:15,2,490,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +22957,HILAA,2,2023-08-11 21:36:03,2023-08-15 12:02:32,2023-08-23 11:06:53,2,341.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +22958,TRAIH,5,2014-01-21 16:47:49,2014-01-29 05:27:45,2014-01-28 16:56:14,1,378.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +22959,VAFFE,1,2021-08-11 08:25:40,2021-09-06 07:46:30,2021-08-13 20:09:49,2,379.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22960,SPECD,4,2018-07-22 07:20:47,2018-08-31 02:17:59,2018-08-07 03:23:13,2,522.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +22961,PARIS,8,2023-09-12 22:12:17,2023-09-14 04:06:00,2023-09-13 07:41:00,2,215.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22962,BONAP,9,2013-12-05 00:56:07,2013-12-23 17:30:43,2013-12-12 03:40:05,1,379.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +22963,WELLI,6,2021-11-26 16:39:39,2021-12-09 12:01:15,2021-12-05 08:10:26,2,375.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +22964,ANATR,8,2016-08-13 07:40:42,2016-09-19 22:43:19,2016-08-29 21:55:17,3,430,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +22965,VALON,4,2020-02-28 16:37:32,2020-03-06 05:32:13,2020-03-01 07:48:46,2,456.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +22966,BLONP,9,2015-09-04 10:14:28,2015-09-06 04:17:02,2015-09-05 00:07:10,1,256,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +22967,CENTC,2,2020-01-08 11:34:12,2020-02-10 18:46:33,2020-01-21 15:51:14,2,116.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +22968,FURIB,8,2021-12-27 21:59:01,2022-01-02 09:35:41,2022-01-09 15:30:20,1,432.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +22969,OTTIK,8,2021-05-15 13:40:55,2021-05-30 05:13:10,2021-06-07 21:45:41,1,415.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +22970,MORGK,1,2017-08-12 14:36:14,2017-08-27 21:00:54,2017-08-13 11:07:15,1,140,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22971,FRANK,8,2013-01-25 18:11:05,2013-02-14 16:58:29,2013-02-01 04:56:09,2,227.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +22972,VAFFE,5,2012-09-29 05:32:10,2012-10-16 06:29:32,2012-10-21 07:55:10,1,481,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +22973,WILMK,9,2013-05-13 07:05:34,2013-06-12 23:50:37,2013-05-30 14:07:27,1,301.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +22974,CENTC,4,2020-12-22 12:17:07,2020-12-27 17:15:05,2020-12-25 00:36:04,2,30,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22975,BSBEV,5,2020-11-13 11:28:34,2020-12-14 06:10:18,2020-12-02 10:00:23,3,397,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22976,QUEEN,9,2012-08-28 16:14:18,2012-10-05 10:45:56,2012-09-04 06:18:41,2,37.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +22977,PICCO,3,2017-02-15 06:12:04,2017-03-05 23:53:36,2017-02-25 13:16:59,3,156.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +22978,VICTE,4,2014-06-16 13:02:12,2014-07-11 23:42:49,2014-06-19 17:12:35,1,421.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +22979,HANAR,5,2017-03-19 12:21:52,2017-04-26 10:19:17,2017-03-23 12:07:09,3,500,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +22980,QUEDE,5,2020-03-14 10:08:19,2020-04-05 04:04:49,2020-03-25 02:10:29,3,109.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +22981,OTTIK,2,2022-07-25 13:10:16,2022-09-03 14:25:03,2022-08-14 04:09:44,3,322.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +22982,SAVEA,1,2023-02-06 12:09:33,2023-02-19 13:39:15,2023-02-10 02:42:32,3,246.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +22983,GOURL,9,2019-03-01 05:38:17,2019-03-20 02:00:48,2019-03-06 04:20:28,2,291.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +22984,LACOR,2,2017-08-29 13:03:06,2017-09-21 06:41:28,2017-08-30 14:21:17,1,306.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22985,FOLIG,5,2017-12-17 17:40:34,2018-02-09 05:27:13,2017-12-30 21:12:31,1,113.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +22986,VINET,7,2021-10-29 03:57:31,2021-11-12 23:35:10,2021-11-04 16:19:27,1,353.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +22987,LAUGB,7,2023-01-31 00:31:59,2023-02-04 16:54:35,2023-02-01 00:31:00,1,405.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22988,CHOPS,8,2019-01-02 15:31:14,2019-02-05 07:59:05,2019-01-02 17:15:47,3,228.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +22989,THECR,7,2016-02-08 18:25:12,2016-03-02 00:25:59,2016-02-08 18:47:56,1,259,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22990,RICAR,1,2023-04-07 23:30:53,2023-05-05 20:29:33,2023-04-09 15:08:55,2,434.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +22991,AROUT,9,2014-07-25 23:50:10,2014-08-22 17:44:54,2014-07-27 05:50:18,1,459.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +22992,BOLID,3,2014-06-17 08:06:04,2014-07-02 04:00:45,2014-06-21 11:31:12,2,188.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +22993,TRAIH,5,2018-01-16 18:25:20,2018-01-27 04:54:24,2018-01-16 20:27:49,3,314.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +22994,PRINI,2,2013-07-25 23:17:27,2013-08-03 23:35:24,2013-07-31 04:25:29,1,161.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +22995,GREAL,6,2014-04-03 07:46:39,2014-05-15 12:02:59,2014-04-13 01:15:42,1,429.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +22996,WARTH,1,2015-06-27 20:51:08,2015-07-04 09:16:57,2015-07-05 08:48:15,1,119,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +22997,GREAL,3,2015-10-28 21:29:29,2015-11-19 06:35:08,2015-11-10 07:24:31,1,194.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +22998,GODOS,4,2015-12-03 23:55:30,2015-12-09 16:05:10,2015-12-04 14:56:29,3,38.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +22999,WELLI,5,2012-10-09 10:08:15,2012-11-11 17:15:43,2012-10-24 14:30:19,3,480.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23000,OTTIK,3,2012-11-25 00:23:39,2012-11-29 05:04:16,2012-12-13 06:01:25,3,143.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23001,DRACD,2,2018-02-02 20:58:49,2018-02-24 10:21:12,2018-02-18 02:22:37,3,84.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23002,WOLZA,9,2019-06-05 01:58:57,2019-06-16 20:40:43,2019-06-09 12:48:11,3,341.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23003,THEBI,8,2022-07-16 10:17:55,2022-07-18 14:37:59,2022-07-29 12:28:35,1,255.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23004,CENTC,8,2020-01-10 02:44:07,2020-02-05 21:38:36,2020-01-23 09:52:34,2,332.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23005,FOLIG,6,2013-11-02 23:44:56,2013-12-05 21:58:21,2013-11-06 08:21:10,2,244,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23006,WARTH,3,2017-01-03 20:27:26,2017-01-06 09:02:27,2017-01-08 13:25:33,3,210,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23007,BERGS,2,2018-12-03 12:23:55,2018-12-13 17:51:56,2018-12-13 10:24:08,1,191.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23008,CHOPS,2,2019-01-10 16:36:23,2019-01-17 00:42:51,2019-01-15 10:16:22,1,36.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23009,LAZYK,6,2018-07-19 17:18:49,2018-07-27 21:33:57,2018-07-22 19:44:51,2,228.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23010,PARIS,6,2018-12-13 17:53:16,2018-12-22 21:18:41,2018-12-28 04:31:22,1,179.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23011,FAMIA,3,2021-12-25 06:52:48,2022-01-05 07:26:47,2021-12-27 07:34:34,1,270.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23012,LEHMS,2,2023-07-01 21:06:20,2023-07-24 15:41:22,2023-07-04 19:08:08,1,302,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23013,AROUT,3,2017-03-02 19:09:31,2017-04-02 23:12:57,2017-03-04 08:03:05,3,16.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23014,LACOR,2,2013-09-23 10:43:13,2013-10-07 13:29:14,2013-10-12 14:19:52,3,81.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +23015,NORTS,1,2014-08-21 06:25:51,2014-09-05 02:25:17,2014-09-01 01:51:55,2,110,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23016,RANCH,5,2017-11-01 23:19:42,2017-11-20 03:01:38,2017-11-05 10:32:40,1,107,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23017,BONAP,1,2015-12-02 16:11:01,2015-12-16 22:38:35,2015-12-04 01:26:01,3,42.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23018,WOLZA,3,2022-11-26 22:20:29,2022-12-03 18:31:56,2022-12-21 17:22:07,2,370.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23019,HUNGO,3,2013-09-19 09:31:31,2013-10-26 06:24:29,2013-09-22 14:28:42,1,370,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23020,WHITC,3,2016-05-22 23:37:35,2016-06-03 01:17:17,2016-05-26 20:49:51,1,495,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23021,Val2 ,5,2019-01-26 04:16:07,2019-02-13 23:51:34,2019-01-30 11:58:49,3,103.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23022,FRANS,9,2018-07-31 07:14:48,2018-08-09 12:34:55,2018-08-15 06:26:59,1,80.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23023,ISLAT,6,2022-09-20 18:47:35,2022-09-30 00:42:17,2022-09-24 20:02:46,1,112.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23024,GODOS,4,2012-11-05 02:01:13,2012-11-29 16:04:08,2012-11-06 02:12:51,1,420.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23025,PARIS,6,2015-04-09 14:15:24,2015-04-11 10:44:01,2015-04-18 09:10:46,1,70.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23026,BONAP,2,2013-02-18 09:25:20,2013-03-10 10:28:26,2013-02-25 22:47:14,2,159.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23027,NORTS,2,2020-03-08 04:08:08,2020-03-12 09:18:18,2020-03-08 19:43:39,1,172,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23028,QUEDE,5,2020-11-10 06:53:47,2020-12-14 06:15:10,2020-11-17 12:13:57,1,450.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23029,HUNGC,9,2014-10-03 23:25:30,2014-10-05 16:36:56,2014-10-06 10:13:40,3,221,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23030,HANAR,2,2017-12-15 05:09:28,2018-01-08 18:17:20,2017-12-16 00:18:43,1,323,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23031,LILAS,8,2022-11-09 06:13:18,2022-11-11 20:21:01,2022-11-12 10:29:26,1,78.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23032,THEBI,5,2016-06-30 22:36:00,2016-07-21 00:29:51,2016-07-04 17:26:12,2,349,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23033,LAZYK,7,2013-02-02 12:45:15,2013-03-05 10:01:03,2013-02-03 23:58:29,1,489,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23034,THECR,6,2019-10-15 06:45:53,2019-10-26 10:17:26,2019-10-19 03:01:42,3,115.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23035,LACOR,1,2013-12-22 15:18:40,2014-01-23 12:44:12,2013-12-31 11:43:35,3,123,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23036,LINOD,2,2013-01-12 15:04:07,2013-01-14 13:10:23,2013-01-14 08:23:41,3,306.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23037,OTTIK,5,2018-11-08 13:11:43,2018-12-09 05:28:46,2018-11-15 02:42:15,3,269.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23038,SUPRD,6,2015-03-01 23:55:32,2015-03-08 04:47:53,2015-03-14 14:57:12,2,375.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23039,NORTS,4,2014-09-22 00:50:46,2014-10-21 01:15:42,2014-10-08 19:59:21,1,197.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23040,OCEAN,7,2015-08-10 19:26:32,2015-09-01 03:08:22,2015-08-15 05:24:13,1,65,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23041,ISLAT,1,2013-04-08 07:55:33,2013-05-02 05:38:17,2013-04-11 21:50:21,3,106.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23042,CHOPS,1,2018-09-19 11:59:22,2018-10-14 13:14:54,2018-09-24 17:21:41,2,311.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23043,TRAIH,1,2016-12-21 01:46:05,2017-01-05 03:43:58,2017-01-05 07:27:28,2,404.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23044,LONEP,8,2020-02-24 22:39:45,2020-02-28 05:34:33,2020-03-17 10:26:41,1,362.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23045,SPLIR,6,2023-01-11 13:27:26,2023-01-18 20:39:09,2023-01-15 11:49:59,1,404.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23046,PARIS,9,2019-06-28 17:50:24,2019-07-10 09:35:44,2019-07-09 20:39:50,3,125.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23047,SPECD,5,2022-03-31 20:53:35,2022-04-26 14:08:05,2022-04-17 13:59:39,2,287.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23048,SUPRD,8,2017-12-17 18:24:30,2018-01-10 15:24:41,2017-12-20 15:23:16,3,123.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23049,FISSA,6,2023-03-19 13:09:18,2023-03-29 15:04:52,2023-03-19 19:54:39,2,84.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23050,RANCH,8,2020-05-17 15:20:45,2020-06-30 12:53:24,2020-05-19 13:09:51,2,339,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23051,LETSS,5,2023-07-22 10:55:07,2023-07-27 17:51:28,2023-07-22 16:01:40,1,234.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23052,LAZYK,3,2023-10-03 05:49:41,2023-11-15 21:17:31,2023-10-15 16:21:42,2,359,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23053,TORTU,9,2013-01-08 16:08:19,2013-01-17 20:11:09,2013-01-26 02:18:10,2,12.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23054,BOLID,4,2017-04-14 15:55:35,2017-04-27 03:28:42,2017-04-19 13:15:42,2,105.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23055,OLDWO,4,2016-03-21 13:32:54,2016-04-15 00:27:36,2016-04-11 01:14:38,1,362.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23056,MAISD,6,2018-02-12 03:20:42,2018-02-26 22:24:51,2018-02-17 02:41:26,2,494.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23057,WANDK,2,2018-06-01 15:49:09,2018-06-12 08:50:18,2018-06-16 05:57:59,1,252.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23058,OCEAN,9,2013-07-18 11:58:14,2013-08-26 01:10:06,2013-07-26 19:43:40,1,276.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23059,LETSS,8,2023-03-28 19:22:26,2023-04-07 14:38:18,2023-04-20 13:54:37,2,500.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23060,TRAIH,9,2013-01-12 10:02:59,2013-01-23 16:13:31,2013-01-12 15:36:31,1,412.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23061,WHITC,5,2022-10-19 00:44:36,2022-10-24 16:10:15,2022-10-22 02:36:39,1,236.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23062,BOTTM,9,2016-06-30 19:44:53,2016-07-26 08:28:07,2016-07-29 05:39:43,3,250,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23063,VICTE,4,2021-12-26 10:22:34,2022-01-26 00:58:36,2022-01-15 22:41:03,3,388,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23064,WILMK,1,2014-05-19 21:18:33,2014-06-14 21:07:16,2014-05-22 10:01:05,3,217,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23065,ISLAT,2,2016-03-25 10:51:53,2016-05-04 13:58:12,2016-03-26 09:10:11,2,50.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23066,ALFKI,3,2017-08-29 22:06:19,2017-08-31 13:29:08,2017-09-06 14:34:32,3,130.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23067,BSBEV,4,2018-04-23 23:02:11,2018-05-29 15:47:34,2018-04-29 13:43:32,2,158.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +23068,BONAP,8,2020-10-08 18:38:48,2020-10-20 18:24:26,2020-10-14 22:02:10,1,73.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23069,BONAP,9,2014-05-19 01:36:18,2014-06-03 19:55:37,2014-05-27 23:05:48,3,214,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23070,SUPRD,3,2022-09-04 03:45:07,2022-09-16 09:32:01,2022-09-05 08:51:55,3,137,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23071,GROSR,5,2021-09-17 16:17:47,2021-09-27 10:24:15,2021-09-20 08:44:13,3,82.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +23072,SUPRD,4,2017-03-12 01:43:56,2017-03-20 13:44:00,2017-03-14 18:41:35,2,272,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23073,SANTG,6,2020-08-12 15:00:15,2020-08-13 01:28:41,2020-08-13 08:10:05,3,472,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23074,GOURL,6,2020-09-05 05:34:52,2020-09-22 19:46:32,2020-09-09 05:03:26,2,111,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23075,SPECD,1,2021-03-03 06:22:17,2021-04-22 22:12:06,2021-03-09 00:43:46,1,298.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23076,FRANK,1,2021-06-26 16:29:19,2021-07-02 11:18:48,2021-06-27 06:47:58,3,217,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23077,ANTON,9,2022-06-26 01:27:39,2022-06-30 12:04:23,2022-07-02 09:24:46,1,127.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23078,AROUT,4,2020-04-22 13:52:00,2020-06-07 00:38:03,2020-04-27 06:22:50,1,285.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23079,VICTE,7,2014-03-28 03:41:15,2014-04-19 14:25:28,2014-04-07 21:25:42,1,30.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23080,ROMEY,7,2015-11-19 16:45:06,2015-12-05 22:44:50,2015-11-30 15:03:53,2,244,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23081,KOENE,4,2016-11-11 11:34:05,2016-11-22 10:41:38,2016-11-25 00:06:53,2,118,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23082,BONAP,2,2019-09-21 01:02:59,2019-10-16 20:21:36,2019-09-23 03:11:43,1,11.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23083,FOLIG,4,2019-03-02 04:58:56,2019-03-26 07:03:06,2019-03-14 18:41:28,2,263.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23084,OLDWO,4,2016-03-07 08:07:18,2016-03-22 04:16:36,2016-03-08 22:30:06,3,131.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23085,THEBI,8,2020-08-18 00:33:57,2020-08-18 05:52:30,2020-08-20 07:22:52,2,126,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23086,QUEEN,7,2023-09-24 15:00:27,2023-10-25 05:58:49,2023-09-27 08:41:45,2,27.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23087,PARIS,8,2023-04-07 07:55:00,2023-05-01 23:54:12,2023-04-10 05:03:33,1,337.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23088,VAFFE,2,2013-11-11 09:51:51,2013-11-19 22:49:10,2013-11-12 15:02:30,2,154.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23089,RICSU,3,2018-11-13 16:44:19,2018-11-26 20:58:27,2018-11-16 14:24:01,3,294.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23090,PARIS,1,2017-05-23 16:46:16,2017-05-27 11:21:24,2017-05-25 04:04:01,1,221.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23091,SANTG,5,2013-03-25 15:23:17,2013-05-16 09:31:14,2013-03-27 14:15:37,2,339.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23092,LETSS,9,2021-03-09 14:43:13,2021-03-25 05:10:50,2021-03-17 20:28:10,3,174.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23093,PARIS,6,2017-12-20 18:33:27,2018-01-12 14:43:45,2017-12-22 06:15:15,3,59.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23094,FAMIA,5,2017-10-08 19:44:34,2017-11-12 12:17:34,2017-10-12 21:25:20,3,65.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23095,SPECD,4,2018-02-23 06:05:26,2018-03-27 00:24:10,2018-03-02 08:32:18,3,439,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23096,LACOR,8,2017-01-11 14:09:06,2017-01-12 15:59:26,2017-01-22 10:13:23,1,351.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23097,BSBEV,8,2014-01-03 19:18:17,2014-01-14 08:08:48,2014-01-20 23:12:08,1,308,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23098,CONSH,1,2021-06-11 08:12:10,2021-07-17 06:07:21,2021-06-16 16:43:47,2,97.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23099,COMMI,8,2017-07-26 08:00:46,2017-08-13 20:24:28,2017-08-10 22:32:19,3,39.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23100,HILAA,5,2018-08-19 02:57:53,2018-09-04 08:22:30,2018-09-09 12:18:59,2,264,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23101,DRACD,9,2015-01-13 06:54:07,2015-02-20 23:04:03,2015-01-15 02:09:29,3,531.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23102,DRACD,5,2017-03-15 13:11:35,2017-03-21 10:43:37,2017-03-17 08:36:43,2,364.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23103,RICSU,9,2022-10-27 12:48:32,2022-11-07 15:49:02,2022-10-30 17:00:36,3,58,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23104,VICTE,6,2023-05-06 04:14:58,2023-05-25 19:53:52,2023-05-14 05:23:52,1,418,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23105,CONSH,9,2016-12-17 19:00:27,2016-12-25 12:54:34,2016-12-19 07:17:45,2,264.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23106,COMMI,7,2015-01-25 16:25:44,2015-03-10 01:53:47,2015-01-25 17:54:58,1,436.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23107,PRINI,8,2016-07-11 06:12:56,2016-07-24 02:55:02,2016-07-23 22:05:30,2,119,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23108,BOTTM,7,2021-11-15 01:44:31,2021-12-04 02:03:20,2021-11-20 02:35:14,1,185.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23109,SUPRD,3,2015-12-11 03:55:56,2015-12-14 14:42:49,2015-12-15 16:58:50,2,62.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23110,THEBI,8,2018-05-12 11:19:14,2018-05-30 23:07:02,2018-05-14 06:58:50,1,372.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23111,RATTC,6,2023-05-12 01:41:43,2023-06-02 21:58:37,2023-05-12 11:18:30,2,485.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23112,LETSS,6,2014-06-24 09:36:37,2014-07-16 14:16:03,2014-07-14 03:13:19,1,355.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23113,MAGAA,9,2022-10-07 01:37:27,2022-10-08 13:14:36,2022-10-10 05:40:24,1,24.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23114,THECR,3,2023-06-27 07:40:39,2023-06-29 08:19:15,2023-07-02 21:23:32,2,245,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23115,CHOPS,8,2017-03-27 02:07:44,2017-04-14 06:50:19,2017-04-11 10:19:16,3,115.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +23116,HUNGC,1,2012-07-29 20:48:41,2012-09-12 22:33:03,2012-08-03 09:16:37,2,226.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23117,WHITC,5,2022-06-20 17:32:56,2022-07-11 13:42:00,2022-06-26 11:17:20,3,411,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23118,VICTE,2,2021-10-03 23:30:03,2021-10-13 10:08:27,2021-10-05 08:17:05,1,433.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23119,TRAIH,5,2015-07-31 18:41:31,2015-08-03 21:44:24,2015-08-13 18:08:47,1,371.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23120,ERNSH,2,2013-05-29 18:45:02,2013-06-17 11:31:36,2013-05-31 15:13:35,3,230.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23121,TORTU,4,2016-07-03 18:27:26,2016-07-12 11:56:14,2016-07-04 17:31:40,3,137,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23122,LACOR,7,2018-09-20 14:52:11,2018-10-13 05:22:58,2018-10-01 19:43:41,2,495.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23123,LILAS,9,2021-01-22 09:21:50,2021-02-02 03:58:14,2021-01-25 06:46:24,3,231,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23124,CACTU,4,2020-08-19 03:47:11,2020-10-16 21:39:12,2020-08-28 17:54:05,2,396.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23125,WANDK,6,2013-07-23 15:24:32,2013-08-11 06:44:41,2013-08-03 08:46:19,3,491,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23126,SPECD,7,2020-10-15 20:30:28,2020-10-24 08:43:25,2020-10-17 02:35:25,3,372.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23127,LAZYK,3,2020-07-13 08:40:41,2020-08-12 05:57:07,2020-07-13 23:06:31,2,423.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23128,MAISD,1,2015-09-01 15:39:24,2015-09-07 14:45:11,2015-09-20 03:00:44,3,531,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23129,THECR,2,2014-12-31 05:40:46,2015-01-13 19:15:22,2015-01-01 15:27:10,3,386,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23130,FRANS,2,2016-07-16 23:54:06,2016-07-31 12:32:31,2016-07-26 20:53:39,3,294.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23131,CONSH,4,2017-07-25 11:04:38,2017-07-29 11:38:26,2017-08-03 22:42:35,2,207,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23132,GROSR,9,2023-01-15 02:50:50,2023-02-07 16:41:56,2023-01-19 23:41:39,2,236.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23133,FOLIG,4,2015-01-27 16:13:11,2015-03-10 08:39:57,2015-02-06 07:40:58,3,391.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23134,FOLIG,2,2023-02-17 11:19:43,2023-02-21 02:14:29,2023-02-27 23:42:13,3,237.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23135,NORTS,8,2013-03-06 06:16:59,2013-03-25 21:01:25,2013-03-09 19:37:37,2,411.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23136,BERGS,1,2020-02-12 06:39:08,2020-02-16 05:38:38,2020-02-15 17:21:53,2,269.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23137,TRADH,8,2016-12-13 15:47:27,2016-12-29 18:33:28,2016-12-28 09:25:13,3,52.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23138,DUMON,6,2017-04-17 14:58:41,2017-05-01 23:39:34,2017-05-08 15:36:17,2,410.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23139,RATTC,7,2012-11-05 04:16:51,2012-11-18 12:00:51,2012-11-16 14:34:30,3,195.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23140,THEBI,3,2015-09-08 17:39:52,2015-10-11 10:29:44,2015-09-10 04:15:35,1,228,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23141,SANTG,8,2015-07-29 19:33:42,2015-08-16 22:28:50,2015-08-06 17:07:53,1,76.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23142,GODOS,9,2013-07-23 07:48:37,2013-08-07 01:24:14,2013-08-13 12:04:58,1,327.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23143,PARIS,7,2020-12-19 23:36:03,2020-12-30 21:23:14,2020-12-31 04:26:08,1,244.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23144,TRADH,9,2016-03-18 19:08:01,2016-03-22 06:07:03,2016-03-21 08:37:45,2,344.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23145,Val2 ,6,2019-11-15 17:10:41,2019-11-24 15:08:23,2019-11-17 05:02:21,1,52.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23146,SUPRD,5,2013-05-05 19:08:26,2013-05-30 15:20:27,2013-05-06 10:12:43,2,557.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +23147,SPLIR,2,2019-07-02 15:08:41,2019-07-10 11:13:38,2019-07-14 11:14:51,1,338.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23148,CHOPS,6,2019-09-22 13:14:29,2019-10-14 01:53:50,2019-09-27 22:57:54,2,453,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23149,MORGK,7,2022-10-16 15:26:33,2022-10-23 21:43:11,2022-10-18 12:21:31,3,332,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +23150,OLDWO,5,2019-10-06 10:48:36,2019-10-07 22:27:29,2019-10-14 20:43:05,2,380.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23151,TRAIH,8,2014-09-27 18:55:17,2014-10-08 02:06:25,2014-09-29 19:26:55,3,307.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23152,CONSH,7,2016-08-12 23:31:30,2016-08-19 12:23:20,2016-08-15 02:52:04,1,246.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23153,LEHMS,6,2015-11-19 02:36:25,2015-11-25 19:38:37,2015-11-25 10:50:57,1,108,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23154,RICAR,8,2020-06-02 04:01:17,2020-06-25 05:14:27,2020-06-06 01:57:26,2,219.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23155,QUEEN,3,2013-08-21 02:59:38,2013-08-28 19:17:52,2013-09-02 09:37:09,1,401,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23156,BSBEV,5,2020-04-22 16:29:09,2020-05-09 20:36:55,2020-04-23 14:13:18,1,260,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23157,VICTE,2,2016-07-19 21:16:37,2016-08-20 22:39:54,2016-07-25 21:34:40,3,346.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23158,BSBEV,8,2022-02-10 20:10:27,2022-02-17 18:53:55,2022-02-23 14:48:39,2,281.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23159,PICCO,8,2015-07-13 16:34:09,2015-07-14 22:45:24,2015-07-28 13:28:20,3,334.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23160,ANTON,2,2020-01-14 02:18:39,2020-02-21 18:04:44,2020-01-14 05:33:45,2,215,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23161,PRINI,4,2013-06-15 11:10:52,2013-07-07 07:04:28,2013-06-23 14:36:18,2,215.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23162,LONEP,6,2016-03-30 06:57:03,2016-03-30 18:10:08,2016-04-04 19:57:54,3,261.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23163,KOENE,5,2022-03-23 18:32:14,2022-03-25 04:30:41,2022-04-04 22:21:48,2,186.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23164,CENTC,3,2014-05-24 15:51:25,2014-06-04 22:37:16,2014-06-04 22:31:33,1,400.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23165,RATTC,3,2015-08-09 21:28:26,2015-09-03 02:27:37,2015-08-10 06:06:39,2,326.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23166,VALON,8,2019-05-16 20:12:50,2019-05-20 04:31:29,2019-05-30 20:20:07,2,39.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23167,DUMON,3,2020-04-01 14:21:50,2020-04-28 20:21:31,2020-04-12 20:22:37,1,44,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23168,PARIS,7,2012-08-19 08:52:39,2012-09-18 22:20:20,2012-08-21 15:19:47,3,16.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23169,PERIC,4,2016-01-31 10:31:08,2016-02-12 14:53:07,2016-02-12 03:07:25,3,511.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23170,GOURL,6,2017-09-08 23:24:32,2017-09-17 07:16:58,2017-09-15 01:05:05,2,202.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23171,SIMOB,3,2017-07-29 07:51:11,2017-09-21 13:31:02,2017-08-20 10:20:36,1,432.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23172,FAMIA,5,2013-12-13 04:35:41,2014-01-19 10:00:02,2013-12-29 15:40:38,2,109.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23173,HILAA,1,2020-05-22 00:16:03,2020-06-21 20:49:42,2020-05-23 16:54:07,3,262.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23174,SUPRD,2,2016-07-23 02:51:55,2016-07-24 21:48:42,2016-07-27 18:09:07,3,350,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23175,DUMON,8,2023-06-03 19:10:18,2023-06-07 19:22:28,2023-06-04 06:38:53,2,341.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23176,WANDK,9,2014-08-25 10:10:01,2014-09-02 15:44:43,2014-08-31 18:10:25,1,432.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23177,AROUT,1,2021-12-23 23:36:38,2022-01-14 23:17:25,2021-12-30 12:59:09,3,20.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23178,WANDK,1,2023-08-13 17:23:53,2023-09-01 19:27:18,2023-09-04 09:40:34,2,370.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23179,LAZYK,2,2012-09-23 00:12:33,2012-09-23 07:21:47,2012-10-05 10:26:08,2,427.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23180,REGGC,7,2017-09-10 20:25:24,2017-09-18 20:30:10,2017-09-13 22:15:22,2,433.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +23181,BSBEV,4,2012-08-16 02:52:50,2012-08-19 02:43:34,2012-08-21 04:04:04,1,363,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23182,ERNSH,5,2019-10-06 14:45:28,2019-11-13 19:50:45,2019-10-29 02:29:41,2,137.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23183,LACOR,7,2015-10-13 05:29:24,2015-12-03 21:17:42,2015-11-03 14:33:05,2,373.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23184,GOURL,6,2015-09-14 17:24:42,2015-10-03 14:15:07,2015-09-15 09:17:32,2,205.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23185,RATTC,6,2019-07-29 13:41:45,2019-08-04 10:40:17,2019-08-02 06:55:24,1,329.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +23186,TOMSP,1,2020-06-23 14:26:00,2020-07-13 03:34:01,2020-06-24 14:41:31,1,555.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23187,SANTG,2,2013-05-26 15:33:02,2013-06-11 11:01:21,2013-06-01 03:49:33,1,168.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23188,GODOS,3,2019-07-08 13:32:09,2019-07-23 10:18:28,2019-07-16 18:01:47,2,275,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23189,BOTTM,6,2023-04-09 03:12:25,2023-05-16 06:50:53,2023-04-23 12:07:43,3,120.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23190,COMMI,9,2017-09-05 16:52:21,2017-09-08 09:16:34,2017-09-14 14:14:17,3,188.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23191,FISSA,2,2021-02-25 01:37:08,2021-04-18 23:28:20,2021-02-25 02:26:08,3,169.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23192,GALED,1,2019-09-22 11:09:50,2019-09-30 13:51:15,2019-09-23 20:26:00,2,39,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23193,LEHMS,8,2015-01-23 04:40:33,2015-02-14 03:37:14,2015-01-30 02:12:29,1,112,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23194,BSBEV,9,2014-07-02 18:47:46,2014-07-27 10:45:47,2014-07-07 16:16:39,2,172.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +23195,LONEP,6,2013-03-13 02:06:54,2013-04-06 17:13:07,2013-03-13 02:56:36,3,148.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23196,PERIC,5,2013-05-27 11:52:01,2013-07-06 19:05:36,2013-06-04 10:52:15,2,59.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +23197,OLDWO,7,2020-03-06 15:56:04,2020-04-05 09:50:52,2020-03-17 20:14:21,3,390.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23198,MORGK,6,2018-07-04 16:36:29,2018-08-10 23:28:57,2018-07-07 12:17:30,3,40.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23199,ANATR,8,2023-10-01 12:51:46,2023-10-20 17:13:17,2023-10-15 14:13:22,1,444,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23200,FISSA,4,2012-11-18 16:41:50,2012-11-21 22:30:10,2012-11-22 06:15:10,1,268.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23201,FOLIG,9,2016-12-27 05:23:16,2017-01-16 04:07:09,2017-01-02 20:35:25,2,76.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23202,TRAIH,6,2016-10-18 01:43:03,2016-10-28 18:47:44,2016-10-25 09:58:39,2,81.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23203,ALFKI,1,2020-04-01 05:32:12,2020-04-10 10:47:33,2020-04-06 10:24:37,2,171.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23204,Val2 ,9,2014-10-27 18:40:56,2014-11-08 01:49:32,2014-11-02 15:24:38,1,56.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23205,SEVES,2,2013-05-12 19:33:11,2013-05-13 20:23:10,2013-05-27 02:52:04,2,368.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23206,LAMAI,1,2018-07-29 02:29:21,2018-08-04 09:18:51,2018-08-02 07:34:37,3,301.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23207,CONSH,2,2021-02-04 16:11:46,2021-02-05 11:21:35,2021-02-07 19:22:57,2,100.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23208,WILMK,6,2019-09-01 16:55:55,2019-09-18 07:25:49,2019-09-17 19:21:08,2,180.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23209,BERGS,6,2017-02-18 02:59:23,2017-03-13 05:21:44,2017-02-22 23:09:00,3,423.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23210,FURIB,7,2013-06-01 08:24:37,2013-06-02 06:44:48,2013-06-05 20:44:06,2,510.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23211,TOMSP,5,2017-08-08 08:41:27,2017-09-11 11:03:34,2017-08-20 13:19:08,3,467,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23212,LAZYK,2,2017-11-01 10:51:07,2017-11-08 09:22:47,2017-11-09 10:28:57,3,411,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23213,HUNGC,8,2015-10-30 02:55:34,2015-11-10 22:39:12,2015-10-31 04:27:45,3,44.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23214,FOLIG,6,2019-12-26 01:24:28,2020-01-12 00:40:44,2020-01-07 19:59:32,1,394,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23215,VALON,8,2021-11-06 00:53:24,2021-11-11 04:41:33,2021-11-08 07:08:58,3,465,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23216,CHOPS,7,2018-11-26 06:53:17,2018-12-17 23:15:11,2018-12-12 07:23:29,1,22,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23217,WOLZA,4,2014-11-25 06:03:30,2014-12-15 23:30:11,2014-11-25 19:49:05,2,267.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23218,LILAS,9,2014-06-05 12:02:30,2014-06-07 12:24:14,2014-06-06 07:50:17,2,485,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23219,OCEAN,3,2015-09-08 17:00:50,2015-09-20 15:04:57,2015-09-08 23:38:46,1,100.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23220,REGGC,1,2012-08-29 11:22:38,2012-09-04 01:10:11,2012-09-04 04:37:47,2,100.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23221,WOLZA,1,2020-07-26 07:18:14,2020-08-10 19:11:01,2020-07-28 00:01:24,1,386.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23222,VICTE,5,2020-02-04 01:26:24,2020-02-13 08:31:20,2020-02-04 16:24:29,3,324,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23223,WARTH,8,2017-06-08 07:47:35,2017-06-09 00:51:06,2017-06-12 00:26:31,2,217,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23224,SEVES,1,2016-04-19 15:44:21,2016-05-07 04:58:34,2016-04-28 17:17:28,2,534,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23225,WHITC,2,2014-02-04 04:35:43,2014-02-25 11:05:05,2014-02-06 15:06:39,1,102.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23226,VICTE,3,2014-12-06 16:51:45,2014-12-13 19:11:33,2014-12-09 09:32:05,2,286.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23227,SANTG,9,2013-04-22 15:48:43,2013-04-30 12:29:55,2013-04-25 02:06:13,1,258.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23228,MORGK,3,2022-11-28 00:53:25,2022-12-23 07:51:54,2022-12-07 17:15:31,2,413.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23229,BOLID,1,2019-05-13 20:13:58,2019-06-07 11:38:10,2019-06-10 03:52:14,3,440.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23230,FAMIA,4,2022-12-04 17:18:25,2022-12-25 20:04:08,2022-12-15 05:34:24,2,55.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23231,ISLAT,6,2015-12-13 11:42:21,2016-01-22 22:06:51,2015-12-14 03:52:31,3,478.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23232,BONAP,3,2022-05-22 05:39:35,2022-06-21 05:05:39,2022-06-01 19:17:07,3,217.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23233,PARIS,7,2023-08-15 22:57:57,2023-08-21 09:28:30,2023-08-20 18:35:19,1,443.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23234,OCEAN,1,2021-07-30 09:09:28,2021-08-29 11:25:18,2021-07-30 17:03:55,1,392.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23235,PRINI,3,2012-11-15 13:33:27,2012-12-13 21:24:09,2012-11-17 11:15:55,1,423.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23236,CENTC,7,2018-02-22 09:58:16,2018-03-05 12:47:01,2018-03-13 09:57:09,3,22,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23237,ANATR,3,2015-02-28 10:54:25,2015-03-07 21:28:23,2015-03-03 16:41:04,2,237.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23238,LINOD,8,2023-07-07 13:38:53,2023-07-17 01:47:24,2023-07-22 20:57:43,3,277.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23239,COMMI,4,2016-11-08 00:57:16,2016-12-03 08:42:20,2016-11-24 13:43:49,2,379.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23240,TORTU,9,2020-06-14 16:01:46,2020-06-23 21:21:53,2020-06-24 14:56:27,2,370.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23241,CACTU,1,2018-10-28 10:26:02,2018-12-04 05:14:48,2018-11-11 18:30:52,1,200.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23242,LINOD,9,2023-08-05 17:23:35,2023-08-06 15:57:58,2023-08-11 01:09:28,2,508,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23243,HUNGO,3,2022-08-02 01:16:20,2022-08-21 10:55:10,2022-08-04 02:20:41,3,160.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23244,RANCH,3,2016-06-09 22:46:10,2016-07-07 11:09:01,2016-06-22 00:20:47,2,254.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23245,REGGC,5,2013-10-27 13:23:24,2013-12-11 23:04:06,2013-10-28 18:49:57,3,159.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23246,TOMSP,5,2014-12-20 09:55:20,2015-01-15 19:01:08,2014-12-22 22:45:36,3,305.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23247,NORTS,9,2017-02-06 16:13:06,2017-03-06 19:31:50,2017-02-09 06:16:45,3,15.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23248,WILMK,6,2015-12-14 15:29:39,2015-12-23 14:37:49,2015-12-24 12:49:53,1,20.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23249,MAGAA,1,2017-04-13 18:57:24,2017-04-25 14:00:58,2017-04-13 20:24:42,2,280,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23250,COMMI,2,2016-09-21 12:06:22,2016-10-17 06:45:26,2016-09-26 01:30:28,1,77.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23251,LILAS,7,2022-08-23 17:38:24,2022-10-07 13:33:35,2022-08-27 19:55:24,2,39,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23252,CONSH,3,2023-05-09 18:58:54,2023-05-27 20:21:54,2023-05-23 07:47:00,2,491.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23253,SEVES,7,2021-01-09 12:50:52,2021-02-19 23:46:18,2021-01-16 21:07:18,2,268.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23254,VAFFE,9,2018-09-10 23:06:25,2018-09-20 18:19:29,2018-09-12 13:19:49,3,182,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23255,LAZYK,6,2013-09-01 14:46:46,2013-09-09 02:38:28,2013-09-05 12:23:28,3,420,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23256,ANTON,7,2021-01-03 07:26:47,2021-01-06 09:35:24,2021-01-04 18:32:12,1,189.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23257,VAFFE,7,2015-04-03 07:00:12,2015-05-13 12:51:37,2015-04-09 23:05:31,1,139.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23258,FOLIG,7,2020-06-30 05:17:32,2020-07-09 00:12:06,2020-07-17 21:59:51,3,387.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23259,BOTTM,9,2019-10-16 01:29:32,2019-11-11 04:07:08,2019-10-20 19:41:22,1,444.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23260,LONEP,6,2013-11-08 10:23:40,2013-12-07 08:13:00,2013-11-17 09:56:21,1,151.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23261,RANCH,6,2014-09-06 14:33:04,2014-09-19 10:10:26,2014-09-07 12:49:01,3,17.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23262,SEVES,6,2014-06-01 00:00:51,2014-06-18 06:10:57,2014-06-12 23:56:17,2,207,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23263,GREAL,5,2015-10-15 16:15:18,2015-10-23 00:38:51,2015-10-20 19:07:34,3,379,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23264,BSBEV,5,2014-01-03 22:44:26,2014-01-08 15:28:53,2014-01-21 23:51:31,2,455,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23265,LILAS,4,2012-10-11 04:46:35,2012-10-24 23:31:54,2012-10-17 12:13:13,1,516,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23266,SUPRD,1,2021-03-22 11:19:22,2021-05-02 15:19:07,2021-03-25 04:39:50,3,230.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23267,GREAL,4,2013-09-18 23:48:52,2013-10-09 19:08:58,2013-09-20 04:48:53,1,64,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23268,THECR,8,2020-11-26 15:09:06,2020-11-28 08:53:32,2020-12-03 06:14:22,3,69.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23269,SEVES,2,2019-09-24 18:55:42,2019-10-14 03:47:24,2019-09-30 04:37:42,3,189,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23270,SPECD,9,2013-08-03 10:08:39,2013-08-14 04:21:33,2013-08-06 23:57:28,3,84.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23271,WELLI,7,2021-10-10 17:26:25,2021-11-06 08:10:41,2021-10-19 20:37:09,1,499.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23272,LONEP,3,2013-04-05 23:13:50,2013-04-15 21:23:29,2013-04-06 03:59:58,3,80.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23273,SAVEA,9,2021-04-24 11:33:44,2021-05-04 08:42:38,2021-05-02 05:45:34,2,229.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23274,MEREP,1,2014-11-17 01:50:09,2014-12-22 05:59:07,2014-11-17 08:40:47,2,154.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23275,CACTU,7,2023-04-28 00:08:59,2023-05-10 09:59:45,2023-05-25 00:40:54,2,65,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23276,KOENE,8,2023-02-24 23:52:55,2023-03-19 11:41:11,2023-02-26 14:23:40,2,195.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +23277,WOLZA,8,2023-03-15 23:51:33,2023-03-23 16:58:24,2023-03-21 08:13:49,3,484.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23278,SPLIR,6,2020-11-25 01:57:46,2021-01-02 23:03:54,2020-12-19 21:50:22,3,357,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23279,ROMEY,7,2021-08-07 18:56:06,2021-08-10 14:56:59,2021-08-22 02:46:23,1,283.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23280,DRACD,3,2021-03-26 13:24:53,2021-04-26 13:03:38,2021-04-15 03:51:24,2,430.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23281,TRAIH,4,2022-05-01 23:39:16,2022-06-12 16:43:44,2022-05-05 13:57:18,3,160.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23282,MAGAA,3,2017-06-17 20:45:18,2017-06-18 13:45:19,2017-06-19 05:34:53,2,261.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23283,COMMI,9,2016-06-03 01:02:01,2016-06-15 02:17:13,2016-06-06 10:22:47,1,126.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23284,QUEEN,8,2013-06-17 23:11:57,2013-06-19 10:34:12,2013-06-26 12:21:58,3,233.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23285,MEREP,9,2014-07-30 10:00:59,2014-09-05 23:49:51,2014-07-30 15:44:39,1,464.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23286,DUMON,2,2018-09-23 03:14:26,2018-10-17 11:23:53,2018-10-05 05:30:38,1,114,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23287,RICSU,4,2020-07-05 14:58:48,2020-07-29 14:06:05,2020-07-09 01:45:12,3,241.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23288,WOLZA,9,2023-04-22 04:32:31,2023-05-18 05:31:04,2023-05-05 04:54:21,3,193.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23289,QUEDE,7,2020-03-22 12:01:47,2020-03-30 01:59:44,2020-03-23 10:51:15,1,468.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23290,OLDWO,8,2020-11-03 21:27:13,2020-12-11 20:29:32,2020-11-10 09:59:26,3,457.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23291,LILAS,1,2013-12-14 00:10:46,2013-12-21 21:49:16,2013-12-19 03:51:07,3,105.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23292,QUICK,3,2013-06-17 04:11:31,2013-07-13 21:12:09,2013-07-08 09:01:59,1,21.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23293,WHITC,6,2016-10-22 08:07:23,2016-10-25 01:54:20,2016-10-24 03:25:06,1,403,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23294,HUNGO,4,2017-06-25 13:17:46,2017-06-30 05:57:25,2017-07-01 14:09:34,2,436.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23295,LINOD,7,2016-09-12 00:41:36,2016-10-26 02:23:22,2016-09-14 23:42:48,1,96,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23296,VALON,7,2017-10-20 20:42:49,2017-11-13 14:41:58,2017-10-24 14:31:13,1,463.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23297,LILAS,8,2017-02-09 08:04:43,2017-02-11 18:46:29,2017-02-13 06:44:48,2,331,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23298,LILAS,9,2020-10-11 19:32:15,2020-10-20 04:41:20,2020-10-13 15:57:27,1,31.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23299,VINET,1,2014-04-23 19:05:52,2014-06-02 22:04:03,2014-04-27 10:17:24,2,180.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23300,FISSA,2,2019-12-09 12:20:49,2020-02-02 04:29:04,2019-12-26 19:37:10,3,456,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23301,BLAUS,4,2022-07-18 12:16:56,2022-08-31 16:21:22,2022-07-31 03:27:22,1,212.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23302,ANTON,3,2015-08-01 08:17:02,2015-08-02 13:12:18,2015-08-14 13:41:58,1,154.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23303,HUNGC,5,2022-03-17 20:30:12,2022-03-28 11:27:40,2022-03-20 22:10:24,1,271,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23304,PICCO,1,2019-03-24 17:49:21,2019-04-17 05:06:52,2019-03-30 12:07:19,2,329.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23305,BERGS,1,2023-08-29 00:16:05,2023-09-02 19:18:30,2023-08-29 17:02:26,1,267,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23306,REGGC,6,2016-06-24 16:06:35,2016-07-25 20:33:47,2016-07-01 01:33:19,1,331.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23307,RICAR,8,2018-12-24 03:47:46,2019-01-26 10:18:49,2018-12-24 19:14:21,1,362,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +23308,VALON,3,2017-06-19 06:03:34,2017-08-01 14:00:06,2017-06-25 20:26:56,3,245,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23309,WHITC,9,2018-04-12 04:59:59,2018-04-24 19:41:50,2018-04-19 23:17:51,3,56,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23310,THEBI,8,2022-08-21 04:08:45,2022-08-27 12:29:16,2022-09-08 07:44:42,3,17.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23311,RICAR,5,2017-01-07 01:30:15,2017-02-03 16:44:31,2017-01-07 12:12:36,1,116.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23312,AROUT,6,2015-02-08 18:39:56,2015-02-22 14:58:25,2015-02-18 09:11:29,3,81.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23313,TOMSP,4,2022-06-26 11:09:52,2022-07-17 02:03:37,2022-06-29 15:08:44,1,178.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23314,CONSH,4,2021-12-25 06:26:10,2022-01-16 22:19:09,2021-12-30 23:20:12,3,305.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23315,LEHMS,3,2014-09-24 19:09:02,2014-10-02 23:36:22,2014-10-14 20:38:52,3,440.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23316,VINET,4,2018-10-29 22:09:34,2018-12-15 01:47:46,2018-11-02 15:09:49,3,132,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23317,LAZYK,7,2022-01-31 06:57:32,2022-03-07 22:30:09,2022-02-20 22:32:07,3,296.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23318,WARTH,4,2022-04-07 05:58:48,2022-04-24 09:59:36,2022-04-08 19:24:26,3,104,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23319,LINOD,4,2022-02-25 06:47:54,2022-03-06 17:17:37,2022-02-28 04:03:31,3,128,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23320,BERGS,5,2023-07-10 07:02:41,2023-07-23 18:53:02,2023-07-12 04:47:02,2,445.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23321,QUEEN,3,2014-06-04 04:43:21,2014-06-08 15:52:55,2014-06-06 22:49:33,3,96,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23322,LACOR,4,2022-05-08 12:30:47,2022-05-18 15:08:51,2022-06-01 07:54:07,2,214.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23323,ANATR,6,2015-11-05 07:52:48,2015-12-03 15:53:20,2015-11-08 06:37:32,1,180.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23324,FRANS,5,2014-03-01 10:23:09,2014-03-21 06:38:31,2014-03-04 10:25:09,3,403,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23325,NORTS,5,2020-07-17 23:06:01,2020-07-24 22:22:11,2020-07-19 13:54:50,2,456.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23326,QUICK,5,2017-03-18 21:05:16,2017-04-09 07:21:57,2017-03-20 21:26:36,1,243.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23327,THECR,7,2017-12-07 01:47:28,2017-12-29 06:07:48,2017-12-10 07:42:39,3,181,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23328,BOLID,5,2020-04-22 14:53:23,2020-05-07 19:42:16,2020-05-03 21:37:27,1,502.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23329,OTTIK,5,2023-07-28 05:30:03,2023-08-02 02:50:08,2023-08-16 23:08:47,1,486.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23330,BSBEV,5,2021-08-23 00:06:21,2021-09-14 04:44:16,2021-08-25 07:02:39,1,175,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23331,GOURL,1,2017-01-31 00:05:42,2017-02-19 03:53:32,2017-02-01 03:45:48,3,260,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +23332,AROUT,3,2019-05-06 23:48:38,2019-05-11 02:24:22,2019-05-10 16:14:47,1,370.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23333,BSBEV,6,2021-07-02 03:00:16,2021-07-20 04:58:56,2021-07-24 22:26:55,3,420.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23334,PARIS,8,2015-12-26 07:21:58,2016-01-07 20:39:44,2016-01-03 22:02:41,1,228.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23335,FISSA,9,2023-01-02 19:23:21,2023-01-14 02:35:48,2023-01-06 09:23:13,3,478,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23336,BONAP,5,2023-03-28 10:04:10,2023-03-30 11:03:19,2023-04-01 22:10:37,2,285.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23337,GREAL,9,2013-03-28 20:25:14,2013-04-01 07:19:13,2013-04-02 22:34:12,2,139.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23338,OCEAN,5,2020-03-28 07:23:57,2020-04-22 06:10:27,2020-04-05 11:57:05,1,74.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23339,RICAR,3,2018-06-05 03:36:03,2018-07-01 00:13:45,2018-06-17 12:52:22,3,371.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23340,BSBEV,1,2015-08-25 23:26:08,2015-09-30 02:01:14,2015-08-28 09:26:19,3,132.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23341,VICTE,1,2016-03-15 00:16:40,2016-05-04 13:52:28,2016-03-18 03:51:30,1,252.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23342,HANAR,7,2019-09-04 15:10:41,2019-09-18 14:48:11,2019-09-04 23:21:36,3,250.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23343,AROUT,5,2013-11-01 02:26:22,2013-11-23 14:50:26,2013-11-13 13:56:56,1,535.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23344,BOTTM,9,2021-07-24 12:45:52,2021-07-24 18:33:35,2021-07-26 05:49:29,3,404,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23345,ANATR,8,2020-01-17 03:25:00,2020-02-04 08:32:43,2020-02-02 03:03:23,1,261.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23346,MAGAA,9,2012-11-12 21:38:51,2012-11-29 00:43:56,2012-11-12 22:27:36,2,108.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23347,FRANK,3,2014-01-29 03:35:11,2014-02-11 09:30:46,2014-01-31 11:09:26,1,221.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23348,GREAL,5,2017-03-07 23:24:25,2017-04-01 09:01:28,2017-03-14 10:24:13,1,144.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23349,ALFKI,6,2015-02-01 15:58:31,2015-02-21 06:44:23,2015-02-20 21:16:37,2,71.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23350,DUMON,7,2015-06-29 15:05:12,2015-07-07 05:25:37,2015-07-06 06:41:23,3,349,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23351,LEHMS,4,2014-10-09 06:37:00,2014-10-31 19:52:04,2014-10-11 06:42:31,2,30.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23352,THECR,8,2017-02-08 17:52:19,2017-02-28 00:29:54,2017-02-08 18:15:15,2,285.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23353,FOLKO,9,2018-04-26 20:35:51,2018-04-28 04:14:31,2018-04-28 19:16:58,2,77,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23354,SEVES,3,2022-01-17 18:24:26,2022-01-27 03:51:10,2022-01-21 19:07:51,1,142,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23355,VICTE,9,2017-05-23 14:30:51,2017-06-12 21:40:22,2017-05-25 23:40:41,1,438.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23356,FRANR,7,2020-11-27 21:38:10,2020-12-29 22:02:26,2020-12-06 08:49:45,2,503.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23357,FOLKO,2,2014-12-10 13:48:21,2015-02-07 00:43:13,2014-12-22 11:35:27,2,94.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23358,ERNSH,1,2017-02-10 02:32:14,2017-02-27 09:25:00,2017-02-17 03:07:18,2,215.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23359,WILMK,8,2015-11-14 08:13:54,2015-12-12 21:40:19,2015-12-03 01:45:21,1,402,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23360,RICSU,9,2018-01-10 17:31:05,2018-02-13 19:29:20,2018-01-17 15:40:49,3,357.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23361,WANDK,2,2022-10-26 05:17:08,2022-10-31 18:01:07,2022-10-28 01:37:23,2,26.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23362,SPECD,7,2018-09-06 05:16:56,2018-09-14 23:42:50,2018-09-20 00:07:15,3,467.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23363,LONEP,3,2023-10-12 16:09:50,2023-11-02 11:10:51,2023-10-15 02:57:36,1,354,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23364,BSBEV,1,2022-10-15 00:15:16,2022-11-04 14:06:57,2022-10-25 13:34:53,3,509.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23365,AROUT,2,2016-11-20 04:15:27,2016-11-24 09:27:51,2016-11-21 02:16:58,2,438.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23366,LAUGB,5,2020-04-11 08:08:04,2020-04-13 10:47:07,2020-04-17 08:59:09,2,392.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23367,RATTC,6,2015-12-19 02:56:43,2015-12-22 07:17:13,2016-01-05 11:53:46,3,138.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23368,OTTIK,3,2020-09-22 03:03:56,2020-09-30 10:00:26,2020-09-26 10:58:30,3,391.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23369,LINOD,7,2020-02-08 02:35:51,2020-03-01 04:19:11,2020-02-11 00:05:49,3,98.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23370,SEVES,2,2020-02-08 23:03:57,2020-02-10 01:07:41,2020-02-09 22:04:24,2,265,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23371,MORGK,6,2020-07-31 07:02:42,2020-09-01 05:28:50,2020-08-03 12:44:21,1,495,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23372,PARIS,1,2019-07-28 02:29:46,2019-08-08 00:00:47,2019-08-14 14:53:37,1,12.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23373,BSBEV,6,2022-01-01 00:55:01,2022-01-21 00:02:16,2022-01-04 02:51:52,1,192.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23374,RICAR,1,2017-06-01 10:56:11,2017-06-06 21:11:25,2017-06-04 15:29:10,3,197.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23375,CONSH,7,2020-04-25 20:30:05,2020-05-25 23:53:50,2020-04-27 04:37:18,3,102.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23376,VAFFE,1,2014-12-13 19:46:48,2014-12-16 06:36:33,2014-12-28 03:29:09,2,476.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23377,LAMAI,6,2023-02-20 01:41:48,2023-03-26 19:14:19,2023-02-21 18:55:49,1,45.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23378,MORGK,7,2014-10-15 02:55:16,2014-10-20 11:55:08,2014-10-16 10:52:17,1,229,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +23379,OCEAN,4,2019-10-28 22:38:00,2019-11-02 21:22:27,2019-11-05 14:50:48,1,131.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23380,ALFKI,7,2018-05-29 02:38:41,2018-06-07 10:29:02,2018-06-08 05:15:50,2,400.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23381,SANTG,3,2014-09-05 05:50:40,2014-10-06 02:39:07,2014-09-05 10:45:55,1,285.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23382,CACTU,3,2015-01-09 13:01:51,2015-01-13 02:13:37,2015-01-24 06:03:42,2,389,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23383,FURIB,5,2018-02-21 16:52:00,2018-02-22 05:47:03,2018-03-15 09:31:27,1,139.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23384,LINOD,8,2019-10-30 10:02:55,2019-11-21 15:04:20,2019-11-10 09:09:32,2,436.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23385,DRACD,2,2022-03-08 08:28:17,2022-03-27 06:01:07,2022-03-25 01:59:41,2,262.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23386,LINOD,2,2020-07-21 15:17:57,2020-09-06 02:18:15,2020-07-23 17:26:48,3,30,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23387,FRANS,4,2014-07-02 16:55:25,2014-08-25 14:42:53,2014-07-26 05:21:01,2,179.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23388,SUPRD,8,2016-02-20 20:32:36,2016-03-13 20:53:04,2016-03-15 18:42:19,1,162.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23389,CENTC,1,2023-07-17 23:29:18,2023-07-22 09:19:06,2023-07-24 16:38:21,1,89,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23390,LACOR,2,2013-05-23 03:56:20,2013-06-15 17:17:00,2013-06-18 15:45:34,3,477.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23391,BERGS,6,2023-08-31 03:13:21,2023-09-17 00:51:59,2023-09-23 02:20:11,2,499,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23392,ANATR,9,2016-11-16 14:06:17,2016-11-27 01:55:22,2016-11-19 11:05:51,1,342.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23393,CONSH,9,2023-03-12 06:10:01,2023-04-07 07:37:19,2023-03-19 06:27:05,2,218.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23394,TOMSP,8,2022-02-24 09:59:29,2022-03-09 22:24:48,2022-03-09 21:10:57,2,419.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23395,LAMAI,9,2012-09-06 17:47:03,2012-10-01 13:07:18,2012-09-22 00:11:47,2,194.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23396,ISLAT,1,2013-04-06 04:01:06,2013-04-16 23:09:59,2013-04-18 09:27:47,1,222.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23397,THEBI,8,2012-11-13 12:22:36,2012-12-15 04:04:02,2012-12-03 06:59:46,2,497.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23398,SPLIR,1,2016-11-04 19:26:48,2016-11-24 05:16:40,2016-11-10 19:38:15,2,109.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23399,HANAR,4,2014-07-24 12:26:16,2014-08-16 12:09:35,2014-07-29 11:30:20,1,348.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23400,LAMAI,3,2018-09-18 05:27:00,2018-09-19 08:04:25,2018-10-01 09:26:42,2,363.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23401,MAISD,3,2014-08-19 10:26:04,2014-08-24 05:22:47,2014-08-28 07:32:28,2,133.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23402,FOLIG,2,2019-09-13 02:31:55,2019-10-06 17:26:17,2019-09-13 06:30:49,1,378.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23403,MORGK,4,2014-05-21 03:46:52,2014-06-05 22:43:42,2014-06-06 02:22:46,2,466.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23404,CONSH,1,2012-08-06 22:35:52,2012-08-07 11:23:18,2012-08-08 20:10:55,2,404.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23405,TORTU,6,2022-06-05 17:19:27,2022-07-14 00:04:08,2022-06-22 06:06:22,2,190.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +23406,CHOPS,6,2017-11-05 15:32:50,2017-12-03 00:04:15,2017-11-12 01:48:28,3,210.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23407,FRANR,6,2017-02-07 07:17:14,2017-03-23 04:29:58,2017-02-16 09:32:43,1,420.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23408,NORTS,2,2019-01-27 01:43:10,2019-02-15 18:53:35,2019-02-03 03:31:32,3,105.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23409,RATTC,7,2019-07-20 09:03:46,2019-09-03 18:05:00,2019-08-09 20:30:34,2,357,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23410,TRADH,5,2021-09-20 09:30:25,2021-10-06 21:20:57,2021-10-04 18:39:29,1,313,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23411,ERNSH,7,2021-07-01 17:52:04,2021-07-25 12:52:02,2021-07-04 21:15:22,3,138.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23412,FRANR,9,2023-03-26 23:11:29,2023-04-10 14:11:55,2023-04-21 09:45:58,1,199.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23413,RANCH,3,2020-06-07 09:17:39,2020-06-30 15:32:02,2020-06-23 18:13:44,2,73,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23414,PRINI,8,2018-04-05 03:58:01,2018-04-10 12:06:09,2018-04-05 21:49:05,2,316,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23415,RATTC,3,2019-10-21 18:27:59,2019-11-26 01:13:05,2019-10-31 01:50:09,1,315.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23416,BOTTM,2,2017-05-06 05:31:02,2017-05-20 00:48:44,2017-05-19 14:31:23,3,154.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23417,ROMEY,6,2020-05-12 13:12:56,2020-05-20 14:10:45,2020-05-18 18:04:01,3,429,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23418,SUPRD,9,2019-12-18 20:50:16,2019-12-29 22:22:09,2019-12-21 09:20:15,3,341.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23419,EASTC,4,2017-09-22 01:26:26,2017-09-24 18:55:07,2017-09-24 20:25:45,3,191,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23420,SIMOB,7,2012-11-23 21:57:51,2012-12-03 04:07:22,2012-12-05 00:26:36,1,377.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23421,ERNSH,1,2013-04-08 21:36:23,2013-05-11 02:15:58,2013-04-23 13:13:24,2,321.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23422,LETSS,9,2019-06-06 20:38:24,2019-07-04 19:39:12,2019-06-25 07:29:50,3,408.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23423,TRAIH,4,2017-10-24 08:07:27,2017-11-27 08:42:30,2017-10-24 09:58:24,2,357.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23424,EASTC,4,2017-10-28 20:07:22,2017-11-06 15:01:06,2017-11-07 08:56:24,3,379.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23425,ANTON,2,2019-07-22 14:11:03,2019-08-05 23:41:38,2019-07-26 11:30:13,1,66.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23426,VALON,6,2022-05-24 02:27:53,2022-06-23 16:31:24,2022-06-08 02:55:26,2,241.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23427,SANTG,7,2019-06-29 05:59:09,2019-07-19 23:14:50,2019-07-18 09:57:48,3,174.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23428,WHITC,6,2023-06-16 12:35:42,2023-06-19 08:35:11,2023-06-26 08:16:10,1,98.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23429,SUPRD,3,2020-07-27 09:51:05,2020-08-25 12:26:33,2020-08-19 05:57:52,1,181,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23430,QUEDE,7,2016-01-27 12:27:49,2016-02-11 05:29:51,2016-02-08 18:22:27,3,467.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23431,Val2 ,6,2017-04-15 05:29:10,2017-06-01 04:33:23,2017-04-17 20:29:02,3,485.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23432,GROSR,7,2014-09-27 21:39:46,2014-10-21 16:48:57,2014-10-02 04:12:21,1,188.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +23433,OLDWO,5,2012-11-30 03:16:35,2012-12-14 23:57:46,2012-12-03 16:13:23,3,36.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23434,MEREP,8,2018-09-04 05:02:04,2018-10-02 10:11:37,2018-09-12 22:24:47,2,305,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23435,RATTC,4,2022-06-22 15:50:36,2022-07-20 16:22:51,2022-06-24 10:54:54,3,522,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23436,BOTTM,4,2015-08-25 03:33:50,2015-09-21 20:45:10,2015-09-04 03:24:16,2,450.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23437,GODOS,6,2016-02-14 18:21:39,2016-03-01 07:35:42,2016-02-15 00:41:49,3,498.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23438,HUNGO,4,2015-12-27 23:18:50,2016-01-19 23:17:04,2016-01-18 18:35:48,3,37.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23439,VALON,4,2022-12-13 07:26:27,2022-12-29 06:20:34,2023-01-06 02:05:46,2,203,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23440,ANATR,7,2019-06-09 15:42:23,2019-07-02 12:17:39,2019-06-24 01:07:08,3,486.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23441,CACTU,4,2015-02-04 01:37:52,2015-03-12 03:08:17,2015-02-06 02:40:01,3,218.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23442,LONEP,1,2015-06-22 23:15:14,2015-08-01 05:32:05,2015-07-05 07:48:39,2,508,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23443,LEHMS,2,2020-06-11 20:45:45,2020-06-30 03:56:37,2020-06-21 10:15:25,2,187.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23444,FRANS,3,2022-10-16 09:54:04,2022-11-17 02:08:07,2022-10-24 18:16:44,3,486.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23445,EASTC,6,2017-02-18 04:54:11,2017-03-21 06:53:28,2017-02-21 07:34:08,1,226,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23446,GALED,2,2014-01-15 10:39:10,2014-01-27 18:39:41,2014-01-22 12:51:22,1,379,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23447,THEBI,5,2016-06-23 06:35:23,2016-07-17 11:47:00,2016-06-28 15:18:50,1,222.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23448,LINOD,4,2015-10-10 00:39:15,2015-10-15 12:46:08,2015-10-31 09:50:37,2,504,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23449,OCEAN,7,2017-03-30 06:45:16,2017-04-22 06:02:17,2017-04-02 13:17:27,2,129,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23450,DRACD,4,2019-09-05 12:01:17,2019-09-07 18:21:11,2019-09-06 16:32:04,3,402.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23451,AROUT,9,2014-10-02 06:05:28,2014-10-31 19:17:55,2014-10-20 22:02:30,2,359.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23452,CACTU,7,2020-08-12 11:30:19,2020-08-28 10:49:16,2020-08-23 10:55:53,1,388.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23453,QUICK,8,2021-05-21 15:32:40,2021-07-05 08:23:25,2021-05-30 10:26:03,2,133,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23454,LAUGB,6,2017-06-07 09:22:21,2017-07-09 11:38:43,2017-06-15 22:16:16,1,458.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23455,LAZYK,7,2013-11-11 07:08:27,2013-12-14 22:56:06,2013-11-12 00:02:02,3,333.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23456,RICAR,5,2019-11-07 22:32:30,2019-11-23 09:04:29,2019-11-12 19:38:12,2,378.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +23457,ALFKI,4,2015-09-01 21:23:00,2015-10-05 14:07:45,2015-09-03 08:49:44,1,465.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23458,WARTH,3,2023-09-17 00:49:50,2023-10-01 16:42:57,2023-09-25 11:49:40,2,30.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23459,HUNGO,9,2018-03-20 12:16:32,2018-03-30 04:33:29,2018-03-28 09:27:08,1,374.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23460,WANDK,2,2021-08-03 05:37:03,2021-08-24 23:48:44,2021-08-12 12:59:20,2,205.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23461,LAMAI,4,2023-09-20 08:17:23,2023-10-11 10:43:25,2023-09-21 11:08:37,1,56.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23462,TORTU,7,2020-08-25 17:41:11,2020-09-03 11:24:36,2020-08-29 00:09:48,1,72.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23463,NORTS,3,2016-10-16 16:47:18,2016-11-01 15:46:52,2016-11-02 15:44:03,1,218.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23464,CHOPS,7,2018-06-14 01:16:33,2018-07-12 03:01:06,2018-06-17 04:49:23,2,67.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23465,SANTG,1,2022-09-25 21:44:29,2022-10-01 22:55:04,2022-10-10 14:08:16,1,274,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23466,NORTS,8,2016-10-04 17:42:22,2016-10-20 02:42:20,2016-10-07 06:43:48,2,195.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23467,FRANR,4,2019-05-07 01:50:16,2019-05-26 10:11:35,2019-05-26 23:26:59,1,389.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23468,FRANS,4,2023-01-05 09:57:18,2023-01-12 09:21:28,2023-01-12 02:16:27,2,366.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23469,SPLIR,2,2016-06-12 08:35:58,2016-06-23 23:27:29,2016-06-15 20:05:24,1,300.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23470,ROMEY,6,2019-09-25 10:16:08,2019-10-23 16:22:46,2019-09-30 06:44:48,1,133.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23471,RATTC,3,2023-03-07 17:54:30,2023-03-08 03:17:27,2023-03-08 23:49:42,1,195,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23472,FURIB,7,2018-04-10 13:07:12,2018-04-19 09:49:22,2018-04-22 10:27:36,1,404.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23473,SPLIR,8,2021-04-25 12:31:03,2021-05-28 20:42:23,2021-04-25 23:53:10,3,376.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23474,BLAUS,6,2023-05-16 01:42:41,2023-05-26 14:47:37,2023-05-18 03:01:53,2,187,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23475,AROUT,5,2020-06-27 08:13:59,2020-07-15 07:11:46,2020-07-06 04:33:41,3,113.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23476,PERIC,2,2018-04-02 07:14:06,2018-04-14 11:30:00,2018-04-07 08:00:02,1,69,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23477,VICTE,7,2020-10-18 04:48:28,2020-10-24 17:37:54,2020-11-01 10:35:34,2,384.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23478,LAMAI,7,2022-05-14 07:10:14,2022-06-16 12:50:07,2022-05-19 04:42:50,3,522.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23479,FRANS,5,2016-11-30 18:31:08,2016-12-10 02:39:18,2016-12-03 07:46:52,3,269,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23480,SIMOB,9,2020-08-25 23:19:40,2020-09-04 04:05:51,2020-09-15 20:03:29,2,354,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23481,GREAL,4,2018-03-11 01:59:46,2018-03-12 06:43:29,2018-03-16 23:46:27,3,128.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23482,LETSS,5,2020-01-03 20:13:26,2020-01-11 16:44:54,2020-01-10 12:27:17,2,385.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23483,RICAR,9,2014-06-03 02:28:03,2014-06-12 19:55:52,2014-06-04 00:12:13,3,186.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23484,TRAIH,1,2019-07-15 10:47:22,2019-07-20 02:07:15,2019-07-29 01:42:28,2,314.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23485,SPECD,6,2012-07-31 08:32:06,2012-08-20 00:05:59,2012-07-31 15:17:54,2,509.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23486,FRANR,6,2023-03-14 20:42:48,2023-03-22 13:33:59,2023-03-17 09:27:50,3,501.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23487,RICAR,5,2012-10-27 09:28:34,2012-11-11 14:56:07,2012-10-28 20:34:12,3,312,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23488,TORTU,2,2016-11-13 06:56:59,2016-12-20 01:17:15,2016-11-14 22:42:05,3,327.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23489,WHITC,2,2013-03-19 01:31:30,2013-04-07 21:13:11,2013-04-08 11:53:50,2,48.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23490,THECR,3,2015-03-19 19:37:12,2015-04-29 06:08:58,2015-03-21 16:23:22,2,272.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23491,HUNGC,9,2021-07-08 20:09:05,2021-08-06 00:46:39,2021-07-30 08:46:21,2,443.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23492,RANCH,5,2015-01-20 21:36:10,2015-03-13 21:02:28,2015-02-12 20:25:03,2,71,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23493,BSBEV,2,2019-12-11 16:01:54,2020-01-03 09:01:00,2019-12-15 19:39:24,3,197,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23494,WELLI,6,2017-06-06 16:25:33,2017-07-25 00:31:18,2017-06-17 15:18:22,3,326.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23495,QUEDE,3,2015-07-16 20:48:26,2015-07-19 04:14:58,2015-07-18 09:33:28,1,244.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23496,PRINI,3,2019-02-05 23:59:43,2019-02-17 18:40:32,2019-02-08 23:28:01,2,279.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23497,QUICK,3,2016-11-26 23:25:42,2016-12-09 01:09:05,2016-12-07 23:23:58,1,479.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23498,LAMAI,9,2016-03-07 23:44:12,2016-04-04 02:45:32,2016-03-08 13:07:31,3,132,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23499,ISLAT,5,2018-07-25 18:45:08,2018-07-29 19:32:22,2018-08-20 13:36:07,2,476.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23500,ERNSH,3,2013-10-11 07:54:58,2013-10-15 02:00:11,2013-10-14 09:31:44,3,383.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23501,RICAR,1,2016-09-13 12:42:00,2016-09-16 08:56:23,2016-10-05 02:24:18,2,448.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23502,PRINI,2,2019-11-09 07:39:16,2019-11-22 18:00:41,2019-11-10 21:15:47,3,104,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23503,CONSH,4,2013-01-25 03:58:28,2013-01-30 23:39:07,2013-01-26 00:27:10,1,465.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23504,RATTC,1,2019-03-07 07:58:25,2019-03-29 21:42:19,2019-03-08 07:36:29,2,84.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23505,LAUGB,6,2019-10-17 04:44:08,2019-11-10 02:03:09,2019-10-22 11:20:33,1,305,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23506,FOLIG,1,2021-04-29 23:52:59,2021-05-12 09:49:46,2021-05-01 07:10:45,1,116.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23507,REGGC,5,2019-08-28 09:53:36,2019-09-06 14:15:25,2019-08-29 15:28:05,3,485.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23508,SANTG,9,2016-03-24 12:46:14,2016-04-07 20:39:01,2016-04-05 10:14:58,2,84,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23509,GROSR,5,2015-03-30 11:01:22,2015-05-15 14:04:51,2015-03-31 21:21:41,2,205.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23510,RICSU,2,2017-06-21 12:53:58,2017-07-01 04:37:53,2017-07-01 02:11:14,3,343.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23511,CACTU,8,2016-06-15 21:43:54,2016-07-25 19:24:12,2016-06-24 00:12:24,1,180.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23512,LINOD,4,2016-04-10 18:10:15,2016-04-19 10:52:43,2016-04-12 21:47:02,3,89,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23513,ISLAT,5,2014-04-22 17:03:53,2014-05-16 07:15:16,2014-04-24 09:16:18,3,166.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23514,PICCO,9,2018-12-17 10:37:52,2018-12-27 18:48:52,2018-12-18 19:05:35,1,454.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23515,HUNGO,2,2022-03-04 09:24:35,2022-04-19 20:52:14,2022-03-14 13:46:23,3,67.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23516,SIMOB,9,2016-01-03 07:57:45,2016-01-10 15:09:15,2016-01-14 03:32:49,2,176.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23517,HUNGO,9,2022-06-29 17:45:14,2022-07-21 16:19:30,2022-07-06 22:19:57,2,36.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23518,TORTU,1,2014-08-12 20:35:34,2014-08-13 11:17:51,2014-08-31 19:58:49,2,75.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23519,WANDK,5,2016-01-24 20:59:49,2016-03-10 06:37:22,2016-02-03 15:49:59,2,306.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23520,WOLZA,5,2014-04-18 23:52:35,2014-05-11 15:51:00,2014-04-21 00:53:51,2,308.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23521,TOMSP,8,2023-04-10 07:33:31,2023-05-07 22:29:13,2023-04-12 04:04:33,3,113.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23522,GALED,8,2018-06-24 01:18:53,2018-06-29 15:19:17,2018-07-07 05:57:09,3,305.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23523,LAMAI,3,2023-03-24 05:52:53,2023-04-01 14:36:22,2023-04-05 06:11:13,3,192.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23524,RICAR,7,2016-03-13 04:24:38,2016-03-28 23:10:50,2016-04-08 09:30:24,3,42,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23525,LAUGB,3,2014-12-11 17:26:15,2014-12-15 21:39:37,2014-12-17 12:23:43,3,325,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23526,LILAS,6,2017-03-13 05:37:49,2017-03-18 11:31:14,2017-04-02 18:24:56,2,258.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23527,QUEDE,6,2020-06-14 06:22:11,2020-06-26 18:05:17,2020-06-15 06:43:28,1,285.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23528,HILAA,4,2019-11-27 18:17:26,2020-01-23 16:36:45,2019-12-01 22:48:08,2,286.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23529,EASTC,9,2021-12-15 16:37:44,2022-01-29 20:48:20,2021-12-17 16:56:39,1,191.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23530,WELLI,3,2013-02-07 09:38:44,2013-03-16 10:26:35,2013-02-10 02:38:35,2,287,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23531,MEREP,6,2014-07-08 09:56:19,2014-09-05 23:19:23,2014-07-22 19:11:14,2,509.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23532,SANTG,5,2015-12-15 14:05:11,2016-01-05 12:51:41,2015-12-30 22:42:13,2,425.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23533,MEREP,3,2019-05-30 17:02:12,2019-07-06 23:59:56,2019-06-14 00:40:36,2,421,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23534,LETSS,2,2018-09-13 20:40:46,2018-10-14 16:34:36,2018-09-22 07:07:22,2,350.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23535,LETSS,9,2021-06-12 15:42:17,2021-06-16 07:41:08,2021-06-13 12:05:54,1,180.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23536,MAGAA,9,2023-06-04 11:16:59,2023-07-06 03:42:11,2023-06-14 00:31:57,2,370.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23537,LINOD,1,2016-11-24 22:40:11,2016-12-06 21:44:50,2016-12-15 14:35:50,1,104.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23538,SAVEA,8,2018-03-31 23:53:27,2018-04-14 06:13:44,2018-04-14 10:42:00,1,453.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23539,LAUGB,7,2018-03-12 14:59:42,2018-03-14 11:21:09,2018-03-15 09:46:34,3,353.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23540,TRAIH,9,2019-10-05 22:50:29,2019-10-27 23:11:34,2019-10-13 16:31:52,1,104.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23541,QUEDE,1,2022-08-03 18:14:12,2022-08-27 04:57:56,2022-08-18 23:26:36,1,189.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23542,VALON,1,2012-08-29 08:53:19,2012-09-14 07:22:28,2012-09-22 07:54:21,1,11,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23543,CACTU,5,2015-12-29 16:42:07,2016-01-27 02:27:04,2016-01-06 08:13:43,2,215.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23544,FAMIA,3,2014-05-03 23:10:24,2014-05-24 15:14:43,2014-05-04 18:48:17,2,367.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23545,BONAP,4,2023-03-12 21:34:48,2023-04-09 22:05:51,2023-03-16 05:31:11,3,229.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23546,PRINI,9,2022-04-24 14:18:41,2022-04-30 17:11:09,2022-04-24 15:27:27,1,99.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23547,MORGK,5,2023-05-11 15:59:20,2023-06-03 14:46:35,2023-05-18 07:09:01,2,363.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23548,VALON,5,2014-09-25 08:33:37,2014-10-02 22:28:35,2014-09-28 15:10:30,1,140.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23549,FRANR,9,2015-01-10 02:11:58,2015-02-08 11:18:53,2015-01-17 16:51:55,3,366.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23550,GROSR,3,2013-11-03 15:53:51,2013-11-16 10:05:51,2013-11-04 20:56:01,2,139.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23551,LAZYK,9,2014-04-19 19:23:04,2014-06-08 02:46:43,2014-04-23 13:57:30,3,427.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23552,GALED,1,2016-01-18 05:02:09,2016-02-05 01:53:47,2016-01-18 05:24:51,1,456.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23553,BLONP,2,2019-05-15 19:00:12,2019-06-17 15:48:47,2019-05-16 05:35:53,1,169,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23554,ANTON,4,2020-08-09 00:52:13,2020-08-12 03:20:55,2020-08-19 14:27:27,1,20,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23555,FRANS,2,2019-12-23 15:54:13,2020-01-17 16:54:14,2020-01-02 08:48:34,3,109.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23556,TORTU,1,2015-05-14 05:43:50,2015-05-24 10:02:36,2015-05-14 15:12:42,3,13.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23557,TORTU,9,2012-10-17 02:18:25,2012-12-01 20:32:05,2012-10-18 02:32:04,1,390.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23558,FRANK,3,2020-09-01 07:44:03,2020-09-17 23:36:42,2020-09-07 02:45:29,2,407.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23559,FOLIG,5,2018-04-24 17:53:21,2018-04-25 20:55:05,2018-04-27 22:31:05,3,168.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23560,EASTC,3,2016-03-05 07:05:49,2016-03-07 01:14:56,2016-03-05 20:30:40,1,170.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23561,WARTH,5,2015-01-28 05:35:43,2015-02-09 21:02:10,2015-02-03 19:30:48,2,183.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23562,VALON,2,2016-08-13 03:07:39,2016-08-28 05:50:00,2016-08-19 11:28:47,3,484.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23563,TOMSP,7,2017-03-24 13:22:58,2017-04-13 05:17:04,2017-04-03 07:40:39,1,288.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23564,BLONP,3,2014-12-24 12:40:58,2014-12-30 11:08:24,2014-12-25 12:32:51,3,110.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23565,LINOD,4,2021-08-29 20:53:20,2021-09-04 03:51:35,2021-09-01 18:19:12,2,383.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23566,WARTH,2,2017-02-07 11:15:20,2017-03-10 19:19:58,2017-02-08 04:30:36,2,39,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23567,LONEP,1,2014-05-01 09:32:12,2014-05-14 16:24:38,2014-05-13 17:04:08,3,421.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23568,FRANR,2,2020-11-30 21:14:02,2021-01-15 12:36:22,2020-12-01 01:24:38,3,237.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23569,PRINI,1,2012-09-13 23:50:37,2012-10-04 01:17:04,2012-09-21 16:31:23,1,20,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23570,GODOS,3,2020-03-16 18:00:23,2020-04-10 15:36:54,2020-03-18 07:35:13,2,288,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23571,QUICK,5,2021-12-27 03:31:10,2021-12-31 18:06:14,2022-01-14 22:28:40,1,80,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23572,QUEEN,6,2016-12-05 04:37:05,2016-12-10 09:31:50,2016-12-09 18:17:23,1,498.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +23573,GREAL,7,2013-02-05 08:17:14,2013-03-16 11:57:22,2013-02-08 18:11:39,1,79.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23574,GREAL,3,2018-10-29 22:12:12,2018-11-14 04:43:51,2018-11-04 20:26:48,2,404.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23575,WANDK,2,2023-04-06 19:57:16,2023-05-08 05:56:01,2023-04-11 02:28:24,1,300.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23576,SIMOB,6,2014-12-31 12:51:49,2015-01-06 05:32:54,2015-01-02 00:52:40,1,112.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23577,SANTG,3,2018-02-26 12:21:50,2018-03-02 09:33:22,2018-03-04 21:08:52,2,330.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23578,LAMAI,8,2021-07-12 20:25:43,2021-07-24 05:59:57,2021-07-13 08:33:30,2,266.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23579,CHOPS,7,2022-07-09 02:06:55,2022-07-30 04:38:03,2022-07-12 07:35:41,1,415.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23580,WHITC,3,2022-08-27 20:11:14,2022-09-29 16:21:57,2022-09-05 01:58:57,2,110.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23581,BLONP,1,2020-09-16 02:01:18,2020-09-16 14:42:56,2020-09-21 08:26:52,3,105.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23582,SPLIR,3,2017-11-15 09:10:31,2017-11-16 07:37:47,2017-12-08 00:06:41,1,74.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23583,LAMAI,9,2014-06-11 07:30:22,2014-06-18 01:29:01,2014-07-05 01:38:25,2,361.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23584,SIMOB,8,2013-02-27 18:34:47,2013-03-04 09:37:20,2013-03-19 22:13:42,2,466.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23585,THEBI,5,2019-01-08 02:37:52,2019-02-09 01:49:33,2019-01-10 15:49:04,3,406.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23586,LACOR,1,2014-05-26 07:55:23,2014-06-16 18:30:59,2014-05-29 13:02:10,2,106.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23587,LILAS,9,2014-05-12 06:34:33,2014-05-24 08:11:13,2014-05-29 21:21:46,2,234.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23588,ANTON,2,2020-05-08 02:14:43,2020-06-15 07:21:28,2020-05-09 22:57:54,1,281.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23589,GOURL,9,2023-04-30 05:36:24,2023-05-25 19:17:25,2023-05-13 02:37:41,3,458.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23590,RANCH,3,2021-03-22 22:21:43,2021-04-09 10:16:04,2021-04-19 03:11:37,3,435.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23591,FRANS,1,2019-12-14 22:41:21,2020-02-03 11:45:00,2020-01-03 19:25:54,3,328.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23592,GOURL,3,2013-05-16 09:20:27,2013-05-23 17:35:21,2013-05-19 11:58:36,1,135.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23593,LILAS,4,2018-09-10 23:43:28,2018-10-09 19:10:53,2018-09-11 11:44:39,1,423,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23594,BERGS,9,2018-07-30 18:48:42,2018-09-02 18:26:53,2018-08-09 19:24:30,1,15.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23595,CONSH,9,2015-10-19 19:34:26,2015-10-28 01:13:11,2015-10-26 21:50:02,2,123.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23596,GODOS,7,2014-07-14 21:32:45,2014-07-15 06:18:42,2014-07-20 06:23:54,1,408.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23597,ANTON,7,2013-08-09 12:13:42,2013-08-15 03:33:24,2013-08-13 19:38:22,3,45.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23598,THEBI,9,2015-08-04 18:42:39,2015-08-18 17:29:13,2015-08-05 16:05:27,2,101.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23599,LETSS,5,2023-01-05 08:18:43,2023-01-23 00:36:11,2023-01-21 22:40:38,1,370.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23600,MAISD,5,2020-08-11 18:13:00,2020-08-17 20:40:14,2020-08-14 19:49:23,2,172.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23601,REGGC,8,2019-11-08 20:36:24,2019-12-09 23:57:36,2019-11-11 08:13:08,3,469.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23602,CHOPS,8,2013-07-05 18:05:36,2013-08-08 08:39:12,2013-07-26 04:55:56,2,310.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23603,Val2 ,9,2016-02-10 09:33:20,2016-02-11 10:38:44,2016-02-13 05:40:36,2,86.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23604,GREAL,3,2014-05-31 15:50:33,2014-06-22 06:59:18,2014-06-06 01:10:58,3,165.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23605,BOTTM,3,2022-05-23 02:39:48,2022-06-12 17:33:01,2022-06-19 08:16:41,1,377.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23606,LINOD,9,2021-01-30 14:11:15,2021-02-22 13:44:18,2021-02-07 08:43:43,1,55,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23607,BSBEV,5,2019-10-01 02:33:16,2019-10-18 22:35:38,2019-10-10 02:51:15,3,427.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23608,ISLAT,6,2020-10-08 05:04:41,2020-10-24 08:09:57,2020-10-19 08:05:37,1,115,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23609,HILAA,7,2020-01-22 04:04:30,2020-01-26 02:31:31,2020-02-06 12:51:25,1,517.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23610,FRANS,5,2015-08-21 18:42:10,2015-08-27 17:44:48,2015-08-22 13:11:07,2,449.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23611,OTTIK,4,2016-04-02 18:00:20,2016-04-21 06:28:29,2016-04-08 20:32:36,3,119.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23612,BSBEV,5,2016-07-11 10:20:36,2016-07-23 20:48:07,2016-07-16 21:44:28,2,39.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23613,LONEP,7,2018-08-29 04:39:43,2018-09-16 23:05:54,2018-08-30 04:30:13,3,439.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23614,MAGAA,7,2013-09-20 21:46:47,2013-10-26 08:02:13,2013-10-13 03:34:43,3,112.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23615,BLONP,3,2016-06-12 22:49:18,2016-07-20 07:26:54,2016-06-22 09:22:04,1,99,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23616,CHOPS,1,2013-08-07 19:32:43,2013-08-30 01:20:17,2013-08-28 16:15:19,2,352.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23617,GOURL,4,2021-02-24 12:07:40,2021-04-17 11:01:53,2021-02-25 01:31:22,3,486,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23618,OCEAN,1,2015-03-07 19:11:10,2015-04-17 13:33:40,2015-03-10 00:03:30,1,131.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23619,LACOR,5,2021-01-02 03:00:07,2021-01-20 03:36:54,2021-01-04 18:06:55,2,107.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23620,RANCH,5,2018-08-09 02:19:49,2018-10-05 16:32:47,2018-08-10 16:56:12,3,280.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +23621,SANTG,5,2014-09-29 23:03:33,2014-10-13 00:17:59,2014-09-30 02:30:35,2,335,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23622,ERNSH,2,2017-07-21 18:46:28,2017-07-29 17:37:01,2017-08-04 15:04:53,3,254.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23623,DUMON,9,2019-11-11 18:47:09,2019-11-20 01:24:55,2019-11-17 07:08:45,3,174.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23624,RICSU,1,2019-11-20 10:04:30,2019-12-03 22:58:59,2019-11-20 22:22:40,1,254,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23625,FRANS,4,2019-07-27 22:46:28,2019-08-31 14:23:23,2019-08-19 17:05:00,2,97,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23626,LINOD,4,2021-06-15 10:21:15,2021-07-03 12:13:17,2021-06-16 01:40:59,2,447,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23627,LETSS,2,2023-04-29 15:08:11,2023-06-03 21:19:30,2023-05-15 13:23:46,2,222.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23628,WELLI,8,2017-02-08 05:31:07,2017-02-24 11:19:02,2017-02-24 16:55:42,2,434.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23629,BLONP,8,2019-02-08 04:50:46,2019-03-18 20:37:24,2019-02-23 15:43:45,2,87.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23630,SAVEA,2,2017-09-16 02:24:09,2017-10-05 11:33:34,2017-09-16 22:36:57,2,98,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23631,GODOS,9,2017-09-01 07:28:38,2017-09-17 07:46:00,2017-09-11 00:17:14,2,319.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23632,LAUGB,2,2022-12-28 02:57:32,2023-01-01 04:22:32,2023-01-03 13:43:15,2,135,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23633,VINET,4,2015-08-25 20:25:33,2015-09-24 23:57:26,2015-08-26 04:07:10,3,76,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23634,SAVEA,8,2020-03-24 07:59:51,2020-03-28 19:52:46,2020-03-24 08:56:33,2,510.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23635,CENTC,5,2019-02-18 20:20:05,2019-03-09 20:45:21,2019-03-10 14:06:10,3,206.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23636,NORTS,2,2019-12-12 08:21:15,2019-12-17 11:41:33,2019-12-16 23:24:55,3,112,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23637,BLAUS,6,2014-08-03 02:29:18,2014-08-11 21:06:04,2014-08-04 11:46:49,1,48,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23638,FISSA,9,2018-08-25 06:00:35,2018-08-28 14:50:04,2018-08-28 06:26:03,2,75.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23639,KOENE,8,2018-05-05 23:22:24,2018-05-25 19:33:25,2018-05-16 11:14:10,1,253.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23640,WARTH,7,2018-09-04 13:54:04,2018-09-25 05:02:20,2018-09-09 10:49:28,1,212.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23641,HUNGC,1,2017-12-01 19:16:33,2017-12-08 19:53:40,2017-12-03 10:47:25,2,159.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23642,ANATR,8,2018-09-18 22:30:23,2018-10-01 06:27:43,2018-10-08 10:11:15,1,269,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23643,VALON,9,2016-06-06 02:44:42,2016-06-13 14:49:58,2016-06-10 04:41:57,3,408.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23644,HILAA,9,2020-02-04 00:31:39,2020-02-10 18:16:23,2020-02-13 20:02:19,3,381.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23645,WOLZA,4,2012-08-17 06:07:51,2012-10-01 07:40:08,2012-08-23 02:30:34,2,210.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +23646,AROUT,7,2022-05-09 08:26:07,2022-05-16 23:11:20,2022-05-18 16:08:07,1,228.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23647,FAMIA,2,2021-11-11 03:32:31,2021-12-10 00:21:07,2021-11-16 22:27:39,1,430.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23648,REGGC,1,2023-05-14 06:36:51,2023-05-26 20:29:11,2023-05-17 01:30:48,1,230.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23649,SEVES,8,2017-02-07 15:24:24,2017-03-07 09:22:16,2017-02-09 01:29:06,1,497.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23650,FRANK,9,2023-06-16 01:31:21,2023-06-20 22:23:23,2023-06-18 00:50:14,1,232,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23651,SPECD,5,2023-04-01 19:22:22,2023-04-13 11:04:48,2023-04-04 15:14:14,3,149.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23652,REGGC,8,2020-01-28 07:00:35,2020-02-08 15:44:46,2020-02-06 06:21:25,2,413.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23653,BOLID,2,2023-09-13 19:50:45,2023-10-10 20:35:11,2023-09-18 11:27:10,1,141.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23654,LAMAI,7,2021-01-10 03:18:45,2021-01-30 09:11:55,2021-01-15 19:25:01,2,349,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23655,SPLIR,5,2020-05-07 18:33:11,2020-05-09 22:26:22,2020-06-03 10:24:02,1,307.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23656,WILMK,7,2017-07-17 00:06:03,2017-07-18 18:10:21,2017-07-21 02:21:49,2,384.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23657,PERIC,8,2013-04-13 04:22:25,2013-04-19 21:59:26,2013-04-19 20:23:26,2,47,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23658,REGGC,9,2015-03-24 18:21:58,2015-03-28 12:35:28,2015-04-16 16:18:32,2,120.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23659,OLDWO,6,2012-11-08 03:53:55,2012-11-09 11:47:28,2012-11-09 01:45:37,1,488,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23660,LONEP,4,2015-05-28 08:32:37,2015-06-07 08:54:52,2015-05-28 19:19:21,3,95,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23661,FURIB,5,2017-05-10 15:57:09,2017-06-11 11:01:35,2017-05-10 20:16:11,2,251.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23662,ALFKI,4,2013-06-21 20:40:16,2013-06-24 16:38:48,2013-06-29 15:15:10,2,174,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +23663,OCEAN,6,2022-07-15 07:04:00,2022-07-18 20:42:32,2022-08-04 03:01:00,1,313,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23664,SUPRD,1,2021-12-15 23:19:36,2021-12-29 07:27:51,2021-12-23 06:52:43,1,103.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23665,GROSR,4,2018-02-23 16:12:23,2018-03-27 15:41:28,2018-02-24 09:33:15,2,268.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23666,BSBEV,6,2023-09-18 23:02:07,2023-11-12 22:46:50,2023-09-21 10:36:23,2,427.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23667,OLDWO,6,2019-10-24 17:37:14,2019-11-04 10:37:15,2019-10-27 02:04:24,3,216.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23668,FOLKO,2,2023-09-19 17:25:03,2023-10-16 03:45:26,2023-09-21 13:21:59,3,85.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23669,MEREP,7,2015-04-11 06:14:15,2015-05-13 06:36:31,2015-05-01 20:58:46,2,359.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23670,KOENE,5,2013-08-02 21:05:35,2013-08-10 16:23:15,2013-08-07 02:42:48,1,230.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23671,MAGAA,5,2021-02-08 01:55:46,2021-02-19 20:20:54,2021-02-11 11:07:50,1,222.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23672,RICAR,5,2022-06-08 20:48:59,2022-06-20 03:18:20,2022-06-10 04:59:59,3,356.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23673,THEBI,6,2019-06-06 01:43:37,2019-06-16 02:00:52,2019-06-06 11:39:15,3,326.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23674,LEHMS,5,2015-10-28 04:13:25,2015-12-01 05:32:38,2015-10-31 21:01:35,3,95,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23675,PERIC,6,2013-04-14 18:56:11,2013-05-01 12:10:30,2013-04-16 17:36:09,2,456.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23676,ROMEY,3,2023-10-26 06:28:53,2023-11-05 13:29:45,2023-10-31 14:40:47,1,477,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23677,BONAP,8,2022-08-07 21:52:50,2022-10-02 11:46:23,2022-08-22 17:24:24,2,402.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23678,BSBEV,1,2023-05-23 12:32:20,2023-06-17 08:41:00,2023-06-08 19:11:19,2,226,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23679,FOLIG,3,2013-05-06 05:27:41,2013-05-25 07:42:50,2013-05-09 06:09:26,3,111.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23680,SPLIR,2,2017-05-13 04:49:01,2017-06-03 10:22:51,2017-06-04 16:44:26,1,229.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23681,VAFFE,9,2015-06-21 23:28:42,2015-07-06 15:03:50,2015-06-22 12:14:05,1,426,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23682,KOENE,4,2016-02-21 02:17:25,2016-03-07 21:04:08,2016-03-08 19:30:45,2,353.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23683,BSBEV,9,2018-11-02 10:18:33,2018-12-29 14:55:04,2018-11-02 12:09:39,1,256.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +23684,FOLIG,2,2022-12-19 13:49:36,2022-12-30 13:05:58,2022-12-20 05:20:02,3,339.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23685,BOLID,3,2018-03-27 20:06:48,2018-04-07 00:44:48,2018-04-11 05:57:10,1,48.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23686,RICAR,9,2019-05-19 00:36:19,2019-06-07 11:48:24,2019-06-13 00:23:52,2,252.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +23687,PRINI,9,2019-08-13 03:55:27,2019-08-26 01:49:22,2019-08-15 09:51:51,2,439.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +23688,FOLKO,3,2022-04-03 22:10:25,2022-04-25 06:49:41,2022-04-14 22:12:13,3,60.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23689,GROSR,8,2016-11-05 18:21:29,2016-11-16 15:33:50,2016-11-15 06:34:53,1,532.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23690,MEREP,7,2020-05-28 07:34:31,2020-06-03 07:30:14,2020-05-29 14:05:43,2,392.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23691,CACTU,7,2015-11-28 05:20:12,2015-12-06 05:55:11,2015-11-28 15:16:59,3,68.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23692,WANDK,7,2022-12-29 17:45:46,2023-01-08 14:50:08,2022-12-29 18:23:11,1,218,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23693,GALED,4,2014-04-25 21:40:13,2014-04-30 22:02:29,2014-04-29 18:54:03,3,282,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23694,LACOR,6,2017-09-01 16:09:09,2017-09-07 18:01:46,2017-09-02 16:22:35,3,449.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23695,FOLIG,5,2014-01-09 12:48:40,2014-01-10 21:03:49,2014-01-14 12:59:26,3,388.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23696,VICTE,6,2015-11-03 02:57:50,2015-12-20 00:15:04,2015-11-15 05:31:16,1,79.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23697,RANCH,4,2017-02-24 15:22:27,2017-02-24 23:00:16,2017-02-25 14:35:18,1,125.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23698,HUNGC,7,2023-10-25 02:57:02,2023-11-05 01:40:12,2023-10-30 16:52:51,1,373.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23699,RANCH,4,2018-12-10 18:39:12,2018-12-23 15:17:36,2018-12-13 00:22:46,1,251.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23700,GREAL,4,2022-03-22 14:55:03,2022-04-18 03:54:09,2022-04-15 17:51:27,1,224.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23701,DUMON,9,2016-01-03 04:44:39,2016-01-10 01:08:58,2016-01-10 10:33:38,3,397,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23702,FURIB,4,2013-04-20 01:43:39,2013-05-04 05:48:50,2013-04-23 16:43:54,1,503.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23703,RANCH,7,2020-06-17 07:52:08,2020-07-01 04:17:04,2020-06-29 04:22:15,3,181.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23704,PRINI,8,2017-05-29 07:55:53,2017-06-04 07:58:13,2017-05-30 02:26:21,2,52.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23705,DRACD,5,2015-11-28 07:24:12,2015-12-27 05:09:26,2015-11-29 09:02:29,2,138.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23706,PRINI,5,2017-01-01 03:27:19,2017-01-22 16:43:14,2017-01-26 10:38:29,2,378.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23707,Val2 ,3,2019-01-23 03:04:13,2019-02-14 01:11:15,2019-01-29 14:22:40,2,22,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23708,WHITC,8,2019-10-16 07:46:58,2019-11-03 15:17:24,2019-11-04 06:46:20,2,342,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +23709,DRACD,7,2021-10-09 05:25:16,2021-12-02 22:03:38,2021-10-17 21:45:57,2,87,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23710,VINET,4,2020-06-19 02:53:14,2020-07-17 06:02:15,2020-06-20 01:59:38,1,197.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23711,ERNSH,7,2021-02-26 21:27:53,2021-03-13 14:52:53,2021-03-02 20:09:25,2,11.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23712,VINET,7,2019-10-05 16:29:59,2019-10-31 14:27:10,2019-10-11 22:43:33,3,248,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23713,FRANS,4,2013-06-25 20:48:03,2013-07-03 23:54:19,2013-06-26 11:45:16,1,234.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23714,HILAA,1,2014-11-07 18:39:06,2014-11-28 20:00:30,2014-11-07 23:29:53,1,389.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23715,LAZYK,3,2014-01-12 03:59:30,2014-02-09 09:59:59,2014-01-22 13:15:10,3,330.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23716,ANATR,8,2019-06-26 10:59:14,2019-08-03 22:29:28,2019-06-26 12:13:02,3,361.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23717,SAVEA,5,2013-05-01 23:27:57,2013-05-07 22:09:41,2013-05-07 22:40:49,1,334,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23718,PRINI,5,2016-12-15 10:24:02,2017-01-13 07:32:16,2016-12-15 12:25:52,1,440.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23719,MORGK,9,2014-02-21 15:20:15,2014-02-23 09:45:10,2014-03-08 23:25:39,1,376.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23720,SPLIR,1,2019-05-10 08:15:37,2019-05-21 00:10:05,2019-05-15 06:09:34,3,340.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23721,HUNGC,6,2023-07-29 10:33:19,2023-09-02 05:28:04,2023-08-22 01:26:36,2,243,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23722,CENTC,3,2015-02-18 18:03:32,2015-03-31 00:20:06,2015-03-05 06:22:07,2,224.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23723,HUNGC,2,2017-02-12 03:33:21,2017-02-19 18:31:05,2017-02-13 01:21:18,2,321,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23724,CONSH,8,2018-08-10 12:47:18,2018-08-16 08:48:37,2018-08-11 04:30:07,3,271,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23725,HILAA,7,2013-04-12 10:30:17,2013-04-18 23:35:38,2013-05-03 22:01:58,2,259.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23726,SEVES,5,2019-03-21 13:27:21,2019-03-29 11:42:31,2019-03-31 00:05:52,3,374.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23727,WOLZA,6,2013-10-06 07:57:59,2013-10-16 20:56:38,2013-10-07 16:48:44,2,71,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23728,RATTC,7,2015-11-09 13:33:06,2015-11-12 15:29:19,2015-11-10 13:20:23,3,472.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23729,HUNGC,6,2021-02-13 11:11:17,2021-02-15 22:10:07,2021-02-20 22:17:03,2,450.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23730,ERNSH,6,2022-11-19 10:21:56,2022-12-27 02:59:43,2022-11-22 19:43:36,1,39,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23731,GREAL,9,2023-10-22 13:44:16,2023-12-05 07:55:15,2023-10-24 12:53:43,2,18.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23732,ERNSH,2,2021-05-10 08:45:55,2021-05-17 23:44:15,2021-05-20 05:45:04,2,50,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23733,MEREP,2,2013-11-02 03:00:34,2013-11-22 01:20:55,2013-11-09 19:59:39,3,335.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +23734,TRADH,9,2019-11-06 18:28:09,2019-12-04 10:59:08,2019-11-14 21:03:44,1,417,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23735,GOURL,7,2016-10-18 21:30:17,2016-10-19 14:26:24,2016-10-19 16:57:20,1,258,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +23736,LAMAI,9,2020-10-31 06:06:12,2020-11-27 21:39:25,2020-11-16 12:43:10,1,309,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23737,PERIC,3,2016-12-11 23:06:53,2017-01-23 15:35:01,2016-12-17 15:24:50,1,171.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23738,ANATR,8,2022-08-22 11:37:06,2022-09-09 04:12:41,2022-08-27 17:25:42,2,140.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23739,DRACD,1,2022-10-21 22:11:58,2022-10-29 22:23:40,2022-10-23 01:56:39,3,408.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23740,COMMI,8,2014-07-31 00:53:28,2014-08-01 12:04:59,2014-08-05 11:16:13,1,443,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23741,MAISD,3,2019-08-03 19:59:02,2019-08-07 23:01:37,2019-08-05 12:34:01,3,178.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23742,LAZYK,6,2023-01-19 22:40:21,2023-02-07 21:50:57,2023-02-01 02:13:39,2,463.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23743,FRANR,9,2016-10-17 08:13:48,2016-11-10 20:33:22,2016-10-24 19:02:57,2,155,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23744,VALON,9,2020-02-17 03:31:31,2020-03-08 01:31:15,2020-02-24 05:41:25,3,309.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23745,EASTC,1,2014-12-17 05:39:22,2015-01-19 12:43:42,2015-01-06 01:03:45,2,485.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23746,FAMIA,1,2015-03-01 23:06:44,2015-03-02 15:27:54,2015-03-25 02:03:25,1,467.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23747,BLONP,8,2018-07-03 08:53:00,2018-07-12 21:23:15,2018-07-03 12:55:15,2,361.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23748,LAUGB,4,2016-05-06 15:06:59,2016-05-11 03:41:16,2016-05-16 11:34:06,1,192.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +23749,LAUGB,8,2013-05-19 03:26:21,2013-06-01 10:34:12,2013-05-26 08:13:30,1,430.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23750,LINOD,7,2017-02-26 18:22:13,2017-03-09 04:45:12,2017-02-27 14:01:57,3,434.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23751,GROSR,2,2021-08-18 21:59:38,2021-08-31 07:55:30,2021-08-23 05:39:01,1,249.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23752,ERNSH,1,2013-03-01 17:13:32,2013-03-04 23:00:28,2013-03-06 14:34:17,1,285.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23753,HUNGO,1,2013-05-24 01:28:26,2013-05-27 12:14:15,2013-05-24 03:16:55,2,180,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23754,LEHMS,7,2016-09-11 05:20:25,2016-09-18 09:05:40,2016-10-04 23:28:04,2,49,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23755,MAISD,6,2014-05-10 11:41:57,2014-05-26 04:16:13,2014-05-17 00:09:06,3,193.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23756,HILAA,2,2015-06-24 11:07:02,2015-06-28 18:55:08,2015-06-28 02:14:14,1,266.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23757,CHOPS,9,2021-07-27 18:20:22,2021-08-08 14:48:57,2021-08-01 18:04:59,2,268.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23758,COMMI,5,2021-04-23 03:48:10,2021-05-05 23:14:08,2021-04-29 13:58:35,3,438.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23759,QUICK,2,2022-05-22 15:58:03,2022-06-18 07:14:06,2022-06-10 01:41:49,3,176.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23760,NORTS,3,2018-10-17 07:37:35,2018-10-23 01:09:30,2018-11-07 04:28:40,2,51.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23761,LAMAI,4,2015-05-19 17:00:19,2015-05-21 23:42:59,2015-05-20 19:22:17,1,32,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23762,DRACD,9,2017-09-14 20:14:34,2017-09-19 19:41:33,2017-10-09 04:14:42,2,144.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23763,LINOD,1,2017-03-08 14:07:19,2017-03-09 22:28:13,2017-03-11 12:50:10,3,404.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23764,TOMSP,1,2019-10-19 03:36:24,2019-10-24 05:14:34,2019-11-13 05:03:39,3,209,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +23765,BLONP,6,2014-01-04 01:14:43,2014-01-13 05:32:16,2014-01-04 10:21:20,1,217.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23766,TRADH,4,2022-01-29 00:59:47,2022-02-06 04:59:48,2022-02-15 03:33:52,1,549.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23767,SAVEA,5,2019-09-24 23:38:11,2019-10-01 12:27:32,2019-09-30 09:01:27,2,262,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23768,TORTU,9,2019-06-17 18:00:28,2019-07-02 15:05:07,2019-06-28 15:03:26,3,154.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23769,BOTTM,7,2016-01-04 15:37:44,2016-01-08 06:34:17,2016-01-14 09:24:30,3,50,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23770,DRACD,6,2018-12-25 02:48:08,2019-01-24 13:10:18,2019-01-01 00:08:25,3,425.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23771,Val2 ,1,2020-09-07 09:21:48,2020-09-21 17:43:16,2020-09-07 22:21:16,2,485.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23772,HUNGO,1,2013-12-12 16:05:47,2013-12-27 14:48:11,2013-12-20 01:31:08,1,332,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23773,FAMIA,5,2012-07-31 05:55:45,2012-09-13 16:36:57,2012-08-01 14:43:32,3,458.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23774,QUEEN,6,2016-05-20 13:39:54,2016-06-12 23:54:46,2016-05-20 19:25:00,3,430.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23775,FRANS,7,2014-12-08 23:14:12,2015-01-20 04:32:59,2014-12-13 11:59:46,1,337,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +23776,BLONP,6,2017-06-03 10:38:00,2017-06-24 00:59:33,2017-06-05 03:11:44,3,244.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23777,CACTU,6,2018-05-21 15:05:26,2018-06-03 09:26:59,2018-05-30 06:32:44,3,184.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23778,LEHMS,6,2015-09-19 02:36:57,2015-09-21 12:22:01,2015-09-21 18:24:35,1,474.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23779,FRANK,1,2022-06-05 22:59:39,2022-06-18 18:17:14,2022-06-13 23:50:13,2,243,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +23780,PICCO,5,2013-02-27 18:58:53,2013-04-06 00:59:41,2013-02-27 20:40:37,2,224.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23781,VAFFE,1,2017-12-25 15:12:03,2018-01-10 18:34:38,2018-01-03 03:31:04,2,453.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23782,GODOS,5,2012-12-03 15:21:38,2012-12-17 11:15:32,2012-12-07 07:54:45,1,124,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +23783,RICAR,4,2013-11-20 06:48:07,2013-12-20 20:16:33,2013-11-25 02:33:58,1,45.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23784,COMMI,6,2015-01-03 14:22:58,2015-01-19 08:39:24,2015-01-06 23:33:53,1,25.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23785,TRAIH,7,2018-03-11 14:10:13,2018-03-26 13:52:18,2018-03-29 00:23:25,1,283.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23786,OCEAN,7,2015-09-23 01:23:24,2015-10-14 01:41:43,2015-09-23 21:34:44,3,265.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +23787,BOTTM,3,2015-02-20 14:07:22,2015-03-17 19:17:27,2015-03-07 10:57:06,1,174.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23788,RICSU,9,2020-03-25 10:31:45,2020-04-12 13:15:01,2020-04-09 16:16:34,3,236.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +23789,BOTTM,1,2017-09-20 07:37:14,2017-10-31 06:40:29,2017-09-22 01:33:25,1,271.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23790,FOLIG,2,2019-02-20 04:31:24,2019-03-12 09:02:54,2019-03-15 07:39:21,2,197,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23791,FOLKO,2,2018-09-14 17:35:08,2018-09-19 23:16:58,2018-09-24 16:24:14,1,263,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +23792,LACOR,4,2017-05-15 20:46:24,2017-06-23 07:33:45,2017-06-01 02:43:00,1,476.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23793,BLAUS,2,2015-01-10 12:29:49,2015-03-01 09:06:34,2015-01-12 03:46:22,2,259.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23794,BSBEV,8,2015-04-11 20:00:37,2015-05-03 14:25:11,2015-04-24 17:37:01,2,183.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +23795,BSBEV,5,2020-04-09 06:43:36,2020-05-13 18:15:15,2020-04-19 11:48:36,3,212.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23796,PICCO,8,2015-03-16 21:25:49,2015-03-31 00:11:37,2015-03-26 14:04:19,3,115.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23797,NORTS,9,2014-04-16 16:15:23,2014-05-11 01:15:27,2014-04-21 13:49:11,2,547.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23798,VALON,3,2014-02-21 19:46:15,2014-03-06 16:58:19,2014-02-26 20:59:13,2,277.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +23799,PRINI,6,2021-12-20 13:41:05,2022-01-05 14:51:15,2021-12-30 01:14:13,2,365.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23800,WANDK,7,2015-12-12 12:03:03,2016-01-11 05:37:08,2015-12-15 11:58:08,2,463.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23801,ERNSH,7,2014-09-22 23:00:00,2014-10-09 08:43:42,2014-09-26 02:29:16,3,465.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23802,GODOS,4,2021-08-21 06:11:23,2021-09-08 18:48:00,2021-08-22 22:23:17,2,217.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23803,HUNGC,8,2017-05-15 01:38:10,2017-05-31 01:09:36,2017-05-18 05:24:48,2,377.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23804,BSBEV,2,2022-11-11 13:56:48,2022-11-26 15:19:45,2022-11-12 07:12:22,1,296.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23805,GROSR,1,2021-06-04 20:17:17,2021-07-10 09:03:28,2021-06-06 19:54:39,2,143,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23806,SANTG,3,2017-04-12 11:28:01,2017-04-20 04:32:46,2017-04-20 09:21:40,3,482.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23807,GODOS,8,2015-02-13 14:04:52,2015-02-17 22:40:56,2015-02-17 23:05:42,1,388.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23808,RICAR,5,2019-09-10 03:26:54,2019-09-15 20:42:59,2019-09-18 17:59:12,3,111,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23809,GREAL,4,2013-02-20 20:19:12,2013-03-17 09:30:32,2013-02-22 08:21:38,1,446,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23810,SPECD,9,2012-09-04 00:11:24,2012-10-13 01:26:25,2012-09-04 18:43:48,2,219.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23811,RICAR,6,2020-08-18 16:48:25,2020-08-30 01:18:16,2020-08-26 00:28:53,2,411,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23812,OTTIK,9,2016-04-26 06:17:30,2016-04-27 23:17:16,2016-05-02 09:47:12,2,391.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23813,SPLIR,4,2013-03-31 12:19:28,2013-04-11 06:15:03,2013-03-31 15:36:26,3,405,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23814,SIMOB,2,2014-02-03 19:29:55,2014-03-05 13:50:53,2014-02-12 19:02:48,3,250.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23815,WOLZA,8,2014-01-27 05:28:02,2014-02-14 03:06:33,2014-01-31 21:33:30,1,109.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +23816,WELLI,4,2012-09-20 05:50:34,2012-09-21 16:40:55,2012-09-24 23:48:55,2,199.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23817,TRADH,3,2020-07-18 19:06:11,2020-08-06 23:09:56,2020-07-20 23:55:03,1,477.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23818,MAISD,5,2019-08-27 12:56:41,2019-09-01 11:59:31,2019-09-06 16:15:41,1,56.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +23819,CHOPS,5,2018-11-27 01:45:19,2018-12-23 21:27:57,2018-12-06 23:16:51,1,395.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23820,RICSU,3,2017-07-11 17:42:10,2017-07-23 02:30:16,2017-07-16 20:20:13,2,298.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23821,SANTG,8,2019-08-02 09:01:12,2019-08-18 03:29:39,2019-08-08 06:08:46,1,105.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23822,TOMSP,1,2016-02-18 18:30:42,2016-02-29 02:48:54,2016-02-29 13:36:39,3,473.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23823,LETSS,6,2021-10-06 16:56:42,2021-10-28 06:22:34,2021-10-07 14:35:10,2,315,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23824,QUEDE,8,2012-10-03 20:07:11,2012-10-24 00:59:26,2012-10-09 22:43:51,2,27.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23825,COMMI,8,2018-02-28 00:13:06,2018-03-22 23:45:57,2018-02-28 20:18:18,1,167.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +23826,HUNGC,4,2021-12-08 22:07:08,2022-01-17 15:18:35,2021-12-20 22:55:46,3,47.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23827,THECR,9,2014-10-31 02:34:37,2014-11-16 12:18:31,2014-11-11 11:12:14,1,134,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23828,RANCH,6,2014-07-16 22:27:08,2014-07-17 15:23:27,2014-07-17 20:09:17,3,279.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23829,WELLI,5,2015-03-19 05:27:23,2015-04-09 13:08:30,2015-03-22 22:31:32,3,177,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23830,HUNGO,6,2022-07-19 23:34:24,2022-07-26 20:35:10,2022-08-08 00:13:47,3,51.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23831,THEBI,3,2022-04-06 13:00:13,2022-04-30 12:50:20,2022-04-13 03:59:32,1,146.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +23832,PARIS,5,2019-07-15 02:15:25,2019-07-18 05:29:21,2019-07-20 09:18:40,1,96.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23833,QUICK,5,2022-02-22 18:58:24,2022-03-21 19:32:09,2022-02-28 09:55:39,1,358.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23834,ROMEY,7,2017-07-19 19:05:34,2017-08-14 13:02:52,2017-07-20 11:54:55,3,508.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23835,DRACD,3,2015-01-12 05:11:30,2015-02-04 13:24:58,2015-01-13 01:34:38,1,47.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23836,GOURL,6,2018-09-27 02:42:39,2018-10-12 08:24:41,2018-09-28 21:49:57,2,91,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23837,BLONP,2,2017-04-06 06:33:09,2017-04-06 17:13:01,2017-04-09 09:03:41,1,410.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23838,CENTC,2,2016-07-26 23:46:06,2016-08-06 08:34:04,2016-07-29 02:46:17,2,472.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23839,DRACD,9,2017-07-20 04:30:26,2017-09-15 07:11:50,2017-07-23 13:08:30,1,406.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23840,FURIB,5,2013-05-23 10:59:26,2013-06-04 21:15:55,2013-05-23 17:17:15,3,446.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23841,CHOPS,3,2022-11-26 15:53:29,2022-12-05 01:15:27,2022-11-27 15:49:03,1,196.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23842,COMMI,5,2015-07-02 03:47:54,2015-07-25 07:24:41,2015-07-02 04:43:34,2,107,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23843,Val2 ,3,2015-12-18 20:03:24,2016-01-19 23:31:18,2015-12-21 09:23:48,3,501,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23844,MORGK,2,2017-09-20 18:25:44,2017-10-09 10:30:35,2017-09-27 20:43:47,1,101,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23845,RICSU,4,2014-07-18 17:45:12,2014-08-21 04:06:52,2014-08-05 17:49:54,1,24.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23846,THEBI,9,2019-12-07 14:08:19,2019-12-16 19:49:51,2019-12-13 21:09:07,2,345.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23847,BONAP,7,2016-06-01 23:42:41,2016-06-09 07:37:17,2016-06-26 05:12:13,3,449.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23848,SAVEA,5,2014-07-10 21:46:01,2014-08-08 08:36:05,2014-07-18 01:01:14,3,133,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23849,HANAR,3,2019-07-30 01:22:11,2019-08-23 10:00:13,2019-08-02 15:38:00,2,110.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +23850,SAVEA,6,2021-09-09 03:02:08,2021-10-01 12:38:46,2021-09-18 08:02:37,3,439.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +23851,RANCH,5,2014-07-05 02:24:12,2014-07-31 23:41:28,2014-07-06 09:52:35,2,320.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +23852,GROSR,6,2017-11-15 06:34:22,2017-12-09 15:38:23,2017-11-18 05:17:40,2,13.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23853,WHITC,6,2022-05-22 20:00:00,2022-06-26 00:49:24,2022-06-04 12:35:49,1,61.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23854,SPECD,5,2014-06-08 09:51:50,2014-07-17 12:56:37,2014-06-16 20:57:01,3,436,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23855,PARIS,4,2020-07-21 10:04:26,2020-07-24 19:29:02,2020-07-26 23:42:56,2,173.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23856,QUEDE,1,2015-07-30 01:17:15,2015-08-07 23:16:37,2015-08-10 22:02:49,2,413,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +23857,GROSR,9,2015-05-26 23:11:21,2015-06-12 07:39:31,2015-06-03 01:52:43,2,346.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23858,BLAUS,9,2015-02-21 14:19:26,2015-04-08 23:30:22,2015-02-28 05:22:33,1,286.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23859,OCEAN,6,2019-07-17 22:28:03,2019-08-04 08:10:12,2019-07-28 06:13:21,2,48.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +23860,HUNGO,8,2014-02-26 20:32:36,2014-03-15 11:06:07,2014-02-27 02:06:14,3,318.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +23861,GREAL,5,2013-10-31 11:47:20,2013-12-06 18:30:51,2013-10-31 16:02:35,1,77.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23862,WELLI,3,2020-02-17 16:36:18,2020-02-19 15:42:06,2020-03-05 19:42:16,1,424.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +23863,LAMAI,8,2023-01-06 19:19:10,2023-01-10 08:39:57,2023-01-14 02:19:58,3,285.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +23864,SUPRD,9,2019-08-27 11:48:51,2019-10-11 02:27:02,2019-08-27 16:35:57,1,145.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +23865,BONAP,9,2014-11-09 06:18:03,2014-11-28 01:09:37,2014-11-15 14:14:57,3,305,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23866,GROSR,9,2021-11-29 17:58:29,2021-12-03 21:45:37,2021-12-10 17:19:00,1,299.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23867,GOURL,9,2015-12-23 19:05:08,2016-01-03 02:19:03,2015-12-25 05:44:18,3,186.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23868,ROMEY,1,2016-06-21 09:47:40,2016-07-03 22:15:58,2016-06-28 08:33:13,3,132.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +23869,GROSR,5,2023-01-15 05:43:27,2023-02-02 21:16:50,2023-01-21 13:06:06,2,405.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +23870,MEREP,8,2015-04-30 10:46:11,2015-06-09 02:58:59,2015-04-30 21:05:05,3,525.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +23871,BSBEV,9,2023-03-05 00:04:16,2023-03-25 02:11:56,2023-03-13 20:42:06,3,110,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23872,FRANS,5,2020-05-02 04:31:16,2020-05-10 12:03:31,2020-05-07 04:17:40,3,352,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23873,ISLAT,3,2020-01-02 11:48:34,2020-01-22 20:31:51,2020-01-15 17:46:21,2,474.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23874,MORGK,1,2019-04-21 08:59:23,2019-04-29 02:26:13,2019-04-29 03:15:42,3,382.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +23875,FURIB,4,2014-11-17 07:29:58,2014-12-07 22:05:08,2014-11-20 18:16:10,1,53.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23876,HILAA,4,2012-07-29 16:39:02,2012-07-30 10:46:36,2012-08-01 09:03:59,1,397.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23877,WANDK,9,2016-03-31 14:36:13,2016-05-25 04:20:53,2016-04-19 05:31:29,2,177.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23878,CENTC,4,2013-02-11 16:02:32,2013-03-03 11:40:21,2013-03-08 04:06:27,3,408.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23879,FRANK,5,2021-09-05 15:34:29,2021-09-20 14:46:14,2021-09-14 10:00:07,3,62.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +23880,PARIS,1,2012-09-27 19:42:32,2012-10-25 16:40:50,2012-10-12 03:07:52,2,447.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +23881,SUPRD,4,2015-12-24 21:54:48,2015-12-31 11:17:28,2015-12-26 09:27:44,2,372.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23882,EASTC,6,2020-03-16 15:02:00,2020-04-06 15:10:51,2020-03-24 01:55:06,3,146.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23883,CHOPS,1,2017-02-10 13:05:37,2017-02-11 18:24:58,2017-02-28 18:57:36,1,99.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23884,WELLI,6,2023-05-08 06:55:09,2023-06-07 05:01:08,2023-05-20 11:17:06,1,350.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23885,THEBI,6,2013-11-21 09:03:14,2014-01-02 10:20:20,2013-11-26 13:27:35,2,204.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23886,BLONP,4,2022-12-01 09:33:46,2022-12-06 19:02:01,2022-12-03 17:41:17,3,310.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23887,FOLKO,8,2018-07-01 21:52:52,2018-08-09 08:51:41,2018-07-02 23:54:52,3,429,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +23888,GREAL,2,2013-05-12 20:44:36,2013-05-14 09:47:09,2013-05-16 17:29:04,1,104.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +23889,LETSS,3,2016-11-14 22:53:09,2016-12-04 12:37:02,2016-11-18 05:13:12,3,75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23890,REGGC,5,2016-07-27 10:36:15,2016-07-31 17:54:01,2016-08-11 03:33:39,1,270.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23891,FURIB,5,2020-09-25 03:31:54,2020-09-26 02:15:57,2020-09-27 18:00:23,1,115.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23892,MAGAA,4,2020-09-08 06:54:22,2020-09-17 04:10:26,2020-09-16 11:30:13,1,489.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23893,RANCH,5,2017-11-30 21:03:56,2017-12-09 12:05:16,2017-12-12 02:21:03,1,77.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +23894,SPLIR,4,2020-10-22 10:11:03,2020-11-02 13:25:12,2020-10-22 16:16:34,2,376.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23895,BLAUS,9,2018-07-11 13:11:19,2018-07-27 03:07:51,2018-07-24 09:01:21,3,285,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23896,THECR,4,2022-01-10 09:06:19,2022-01-24 04:22:53,2022-01-15 07:45:30,1,421.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23897,FRANR,8,2023-06-29 16:07:14,2023-07-21 12:48:56,2023-07-04 22:57:13,1,393.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +23898,OTTIK,9,2022-08-31 04:56:50,2022-09-15 16:06:22,2022-08-31 17:26:49,2,256.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23899,HUNGO,4,2014-08-15 03:45:13,2014-09-20 09:41:22,2014-08-22 06:35:31,3,507,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +23900,VAFFE,4,2017-12-01 13:17:06,2017-12-04 13:58:38,2017-12-07 03:48:09,2,194,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +23901,PICCO,7,2023-04-05 14:01:42,2023-04-21 12:38:28,2023-04-23 22:43:25,3,376,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23902,TOMSP,4,2020-08-23 03:02:18,2020-10-13 11:15:34,2020-08-26 22:26:50,3,20.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23903,RICAR,7,2017-01-28 17:56:44,2017-02-07 08:33:51,2017-02-03 10:23:18,1,88,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23904,WARTH,7,2020-11-03 23:05:31,2020-11-07 04:00:48,2020-11-05 19:52:20,1,426.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23905,LONEP,3,2016-11-22 21:03:12,2016-12-03 04:16:46,2016-11-25 16:24:40,2,234.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23906,LILAS,5,2014-04-06 23:34:43,2014-04-17 12:06:20,2014-04-08 06:11:18,2,246,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23907,GREAL,2,2018-06-11 22:37:58,2018-06-28 12:37:18,2018-06-24 06:57:56,2,405.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23908,KOENE,5,2019-01-18 02:27:29,2019-01-28 18:35:51,2019-02-07 07:46:12,2,32.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23909,HANAR,8,2017-08-02 05:35:56,2017-08-19 16:23:00,2017-08-02 20:16:33,2,177.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23910,GREAL,8,2013-07-14 11:30:48,2013-07-19 17:56:09,2013-08-02 00:40:35,2,342,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +23911,PICCO,7,2017-09-02 01:59:55,2017-09-03 19:33:52,2017-09-06 16:51:57,2,404,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +23912,MEREP,5,2017-03-25 21:39:06,2017-03-31 21:09:38,2017-03-28 18:24:24,2,433.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +23913,WILMK,7,2020-03-04 00:22:40,2020-04-22 09:52:42,2020-03-04 07:24:41,1,261.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23914,TRADH,2,2014-12-19 12:45:31,2014-12-22 17:13:13,2014-12-20 23:41:14,2,202.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23915,SUPRD,6,2016-07-01 21:53:58,2016-08-21 08:11:30,2016-07-14 19:19:24,2,18.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23916,PERIC,3,2021-08-17 14:12:40,2021-09-19 18:44:41,2021-08-29 12:52:07,2,391.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +23917,TRAIH,5,2019-10-05 23:22:31,2019-10-06 02:40:51,2019-10-06 01:26:50,3,127,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23918,FRANK,1,2019-09-25 07:12:48,2019-10-13 06:53:06,2019-09-26 01:23:43,2,223.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23919,PERIC,6,2017-09-26 12:51:09,2017-10-01 10:32:35,2017-10-17 20:19:02,1,474,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23920,ANTON,3,2013-08-18 19:36:04,2013-08-22 21:56:23,2013-08-24 03:46:52,3,153.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +23921,QUEDE,8,2017-01-01 04:19:50,2017-01-19 00:43:16,2017-01-05 08:32:48,2,417.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23922,ROMEY,3,2020-06-26 19:10:51,2020-07-24 04:50:43,2020-06-29 02:52:24,3,497.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23923,FISSA,7,2020-12-19 11:46:48,2021-01-01 08:29:46,2020-12-21 15:32:19,1,110.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +23924,RANCH,1,2018-01-04 06:43:43,2018-02-15 01:07:31,2018-01-04 14:36:32,3,432.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23925,GROSR,9,2021-08-03 16:20:44,2021-08-28 03:34:52,2021-08-04 06:55:41,3,27,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23926,MAGAA,6,2023-05-22 15:36:14,2023-06-27 06:30:43,2023-06-03 02:44:46,3,365.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23927,ANTON,1,2020-02-11 13:39:17,2020-03-12 11:01:29,2020-02-18 02:01:35,1,99,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23928,GODOS,1,2015-07-15 17:07:14,2015-08-18 19:50:37,2015-07-17 04:29:06,3,166.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +23929,OTTIK,9,2020-05-30 18:08:19,2020-06-15 10:46:20,2020-06-02 05:24:55,2,292.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23930,EASTC,2,2023-04-21 17:13:46,2023-05-04 13:39:06,2023-04-28 00:27:33,1,337,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23931,LINOD,8,2023-05-03 10:05:31,2023-05-24 14:06:49,2023-05-04 02:39:27,3,179,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23932,BONAP,6,2017-12-22 14:29:40,2018-02-03 02:40:03,2017-12-28 00:21:13,3,478.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23933,SPECD,8,2018-04-14 07:29:58,2018-05-08 22:00:19,2018-05-09 05:43:36,2,485,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +23934,PERIC,4,2015-02-03 22:04:51,2015-02-06 12:27:41,2015-02-10 10:50:53,3,81.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +23935,CONSH,6,2017-06-17 09:52:04,2017-07-03 11:56:44,2017-06-19 07:40:30,2,367.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23936,GALED,5,2016-11-27 18:07:05,2016-12-21 18:39:46,2016-12-07 12:49:20,2,132.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +23937,LILAS,9,2021-03-14 06:26:32,2021-03-17 00:46:10,2021-04-08 14:18:27,2,402.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +23938,EASTC,5,2013-07-20 00:49:38,2013-08-17 08:09:40,2013-08-09 21:41:28,2,473.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23939,TOMSP,7,2018-10-12 07:13:42,2018-11-14 21:58:11,2018-10-20 14:55:29,3,218.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +23940,FAMIA,6,2020-06-22 12:16:24,2020-06-25 08:19:18,2020-06-26 03:57:59,2,335,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +23941,VICTE,4,2013-08-06 01:20:49,2013-08-06 19:18:23,2013-08-11 01:06:19,1,54.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23942,HUNGO,6,2022-07-02 16:37:04,2022-08-21 21:03:47,2022-07-16 21:19:59,2,387.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +23943,LONEP,6,2016-07-23 01:03:54,2016-08-06 15:46:58,2016-07-29 04:47:26,3,509.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23944,QUEEN,4,2023-01-13 23:42:02,2023-01-16 18:48:25,2023-01-14 05:21:11,2,357,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +23945,ANATR,9,2015-01-20 18:10:53,2015-01-27 22:18:04,2015-01-25 23:47:42,1,25.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23946,ALFKI,3,2018-03-01 08:44:55,2018-04-09 07:31:26,2018-03-05 21:17:59,3,101.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +23947,GROSR,1,2017-03-18 16:27:53,2017-03-26 14:19:03,2017-03-19 07:06:56,3,128.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23948,RICAR,6,2016-03-03 14:29:18,2016-03-18 02:55:03,2016-03-07 01:58:00,1,243.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +23949,BONAP,6,2022-12-04 13:53:05,2023-01-11 00:18:03,2022-12-26 06:48:22,2,309.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +23950,GALED,5,2022-08-31 15:48:27,2022-09-10 11:18:48,2022-09-02 23:58:57,1,70.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +23951,MAISD,7,2019-01-09 11:16:33,2019-01-18 01:32:37,2019-01-19 15:28:22,3,217.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23952,GALED,2,2019-10-12 17:29:50,2019-11-15 15:01:55,2019-10-20 07:56:50,1,138.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23953,PICCO,3,2019-08-02 02:33:43,2019-08-03 14:19:16,2019-08-09 13:48:50,2,446.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +23954,BERGS,5,2013-06-04 17:22:49,2013-06-14 09:51:08,2013-06-11 10:05:37,1,25.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23955,OTTIK,2,2014-01-05 02:42:41,2014-02-09 03:20:42,2014-01-10 16:08:10,3,463.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +23956,BLAUS,4,2023-05-17 16:03:44,2023-05-26 08:42:10,2023-05-27 00:13:37,2,295.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +23957,COMMI,2,2020-02-15 00:02:06,2020-03-11 16:15:55,2020-02-26 07:56:49,1,56.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +23958,FRANR,7,2013-04-02 21:41:53,2013-05-08 20:05:53,2013-04-03 19:43:25,3,77,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +23959,ANTON,6,2020-09-09 05:41:52,2020-10-22 23:07:59,2020-09-11 17:19:47,3,150,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +23960,TRADH,7,2014-09-30 13:39:08,2014-10-14 17:10:48,2014-09-30 20:52:24,1,174.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23961,QUICK,9,2020-08-10 04:22:37,2020-08-18 02:44:35,2020-08-15 01:04:38,3,461.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23962,COMMI,7,2019-07-15 14:05:01,2019-08-05 04:49:27,2019-07-15 16:27:06,2,384.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +23963,FRANK,7,2017-05-12 01:45:50,2017-05-16 10:41:15,2017-05-27 14:55:11,2,307.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +23964,CENTC,7,2023-01-14 08:59:13,2023-02-25 14:58:43,2023-01-21 12:27:16,2,325,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23965,SEVES,9,2013-12-29 08:48:17,2014-01-09 05:33:24,2013-12-30 08:22:14,3,446,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +23966,LONEP,3,2012-12-09 14:36:32,2012-12-15 03:02:34,2012-12-17 09:17:56,3,37,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +23967,BLONP,3,2012-10-02 22:19:09,2012-10-03 18:24:00,2012-10-06 22:12:06,3,256.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +23968,ANATR,1,2021-08-12 06:06:42,2021-08-20 07:26:38,2021-08-17 21:37:04,3,420,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +23969,TRAIH,8,2018-08-16 10:07:43,2018-08-16 21:15:21,2018-08-25 08:50:08,1,465.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +23970,CENTC,6,2015-04-30 11:32:20,2015-06-05 11:17:31,2015-05-02 06:17:41,2,97.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23971,DRACD,9,2019-08-23 20:41:43,2019-09-22 07:40:27,2019-08-25 04:39:04,2,468.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23972,VINET,3,2012-12-13 05:56:56,2012-12-27 19:23:58,2012-12-13 15:43:12,3,372,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +23973,TOMSP,6,2016-01-30 10:34:19,2016-02-12 05:25:49,2016-02-03 06:15:14,3,309,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +23974,WARTH,3,2018-10-22 16:11:38,2018-11-11 23:16:45,2018-10-23 15:48:47,2,186.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +23975,LETSS,7,2018-05-29 08:02:07,2018-06-24 07:01:31,2018-06-01 07:47:58,3,85,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +23976,FISSA,2,2013-04-24 09:27:21,2013-05-19 17:58:33,2013-04-26 01:30:55,1,39.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +23977,TRADH,8,2022-05-04 08:44:22,2022-06-01 05:13:17,2022-05-18 16:03:01,1,38.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +23978,ANATR,1,2014-06-22 18:36:13,2014-07-06 10:07:05,2014-06-23 10:55:04,1,230.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23979,QUEEN,3,2015-06-27 15:19:08,2015-07-18 06:04:25,2015-06-27 18:45:20,2,149.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +23980,FOLKO,9,2022-12-20 02:14:51,2022-12-30 06:48:15,2023-01-02 03:08:55,1,274.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +23981,CHOPS,2,2021-05-03 10:17:34,2021-05-26 05:09:16,2021-05-09 20:13:29,1,207,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +23982,LAZYK,7,2014-12-17 17:55:09,2014-12-28 18:31:15,2014-12-18 09:59:49,2,456.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +23983,ANTON,8,2021-11-09 00:15:11,2021-12-09 07:59:03,2021-11-17 23:34:37,1,483.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +23984,ANTON,5,2023-09-23 10:32:45,2023-10-05 01:03:13,2023-09-24 01:08:07,3,425,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23985,ALFKI,6,2021-09-03 22:11:44,2021-09-20 11:22:15,2021-09-07 10:42:29,3,480.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23986,Val2 ,2,2021-01-05 09:07:24,2021-01-11 22:43:52,2021-01-18 16:44:51,2,20.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23987,WHITC,1,2021-02-24 23:41:15,2021-03-01 02:44:48,2021-03-13 10:06:17,1,278.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +23988,RATTC,4,2019-09-10 19:07:08,2019-09-22 15:17:40,2019-09-17 22:03:18,2,378.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +23989,BOTTM,6,2017-06-25 13:28:19,2017-07-18 23:26:40,2017-07-01 00:39:55,1,408.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +23990,HUNGC,5,2014-06-21 17:39:53,2014-07-18 10:52:00,2014-07-09 15:43:15,3,383.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +23991,LINOD,1,2012-08-24 20:28:02,2012-09-14 20:03:40,2012-09-03 17:02:06,1,459.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23992,VALON,5,2019-10-06 07:48:34,2019-11-12 07:18:00,2019-10-23 02:29:18,3,452.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +23993,FAMIA,1,2013-06-20 03:48:52,2013-07-01 13:08:38,2013-07-01 11:02:04,1,20.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +23994,MORGK,3,2023-04-29 22:26:46,2023-05-04 02:59:52,2023-05-01 04:47:42,3,233.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +23995,OCEAN,3,2021-03-23 00:33:30,2021-04-02 13:02:20,2021-03-23 17:02:03,2,209,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +23996,THECR,6,2013-08-22 15:13:48,2013-08-29 07:45:49,2013-09-04 19:13:36,1,199.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +23997,FRANS,9,2021-06-17 23:59:41,2021-06-21 10:49:02,2021-06-21 01:32:07,1,288.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +23998,PRINI,9,2018-08-02 03:20:50,2018-09-04 04:18:19,2018-08-15 23:40:25,1,30,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +23999,DRACD,8,2013-01-29 16:10:39,2013-03-01 06:24:09,2013-01-29 22:56:42,2,182.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24000,DRACD,3,2016-01-25 14:50:30,2016-01-26 07:05:50,2016-01-31 21:50:18,3,137.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24001,EASTC,4,2013-04-15 20:33:24,2013-05-16 09:04:36,2013-04-17 01:47:34,3,426.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24002,WOLZA,2,2017-02-12 14:55:55,2017-03-21 16:09:46,2017-02-14 02:08:40,3,39.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24003,GODOS,5,2013-11-07 02:13:50,2013-12-05 07:47:44,2013-11-09 02:39:15,3,226.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24004,WARTH,7,2018-09-01 22:47:36,2018-10-03 06:26:04,2018-09-17 23:10:43,2,153.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24005,LETSS,1,2015-03-25 09:45:15,2015-03-28 06:54:43,2015-04-04 12:29:54,2,91.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24006,GODOS,1,2016-03-07 20:31:17,2016-03-13 20:30:17,2016-03-10 03:12:11,1,221.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24007,LAUGB,2,2016-10-18 17:55:09,2016-10-23 07:58:43,2016-11-14 13:13:21,3,397,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24008,MEREP,2,2013-07-24 22:03:57,2013-08-28 23:26:36,2013-07-26 00:04:40,3,24.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24009,LAUGB,5,2019-08-29 22:07:45,2019-09-01 22:13:39,2019-09-20 16:32:01,1,268.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24010,FRANK,5,2022-10-17 16:53:42,2022-11-10 05:04:41,2022-10-19 20:24:45,3,153.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24011,RICSU,6,2019-02-06 01:54:16,2019-02-09 19:09:03,2019-02-06 10:49:08,1,476,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24012,VAFFE,9,2022-09-09 15:22:27,2022-09-12 02:08:52,2022-09-15 11:10:15,2,133.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24013,SEVES,6,2014-08-19 12:37:48,2014-09-07 23:50:49,2014-08-22 22:10:43,3,217.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24014,LETSS,5,2012-08-16 13:42:14,2012-09-16 06:19:07,2012-08-26 09:18:48,1,195,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24015,THEBI,1,2016-12-01 05:37:22,2016-12-23 06:12:21,2016-12-08 08:16:52,3,493.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24016,CENTC,5,2021-05-12 03:16:49,2021-05-28 03:27:23,2021-05-13 18:39:22,2,99.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24017,GODOS,8,2022-09-06 19:35:18,2022-09-27 04:35:19,2022-09-09 08:36:32,1,455.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24018,ANATR,3,2015-05-16 20:36:52,2015-06-06 01:41:22,2015-05-22 01:08:30,2,344.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24019,WELLI,3,2020-05-10 17:00:04,2020-05-27 22:14:26,2020-05-19 10:10:32,1,421.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24020,SPECD,1,2015-05-12 00:52:53,2015-05-20 19:05:01,2015-05-22 09:43:47,3,376.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24021,SAVEA,8,2014-02-12 18:13:57,2014-03-05 02:55:48,2014-02-23 14:35:36,2,509,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24022,VALON,5,2021-02-23 18:59:46,2021-03-01 02:07:41,2021-03-04 15:59:58,2,127.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24023,ALFKI,6,2016-09-01 18:43:35,2016-10-07 09:02:14,2016-09-06 08:32:01,1,421.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24024,WOLZA,7,2023-08-17 14:41:23,2023-09-25 23:57:44,2023-08-27 23:35:49,3,229.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24025,ROMEY,1,2019-05-18 18:01:08,2019-05-26 05:21:52,2019-06-01 10:07:33,3,49,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24026,ISLAT,1,2022-01-17 14:21:58,2022-02-15 09:38:16,2022-01-26 23:56:54,1,177.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24027,WHITC,9,2022-09-16 18:37:42,2022-10-21 02:38:13,2022-10-09 16:40:56,1,229,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24028,LILAS,5,2016-02-03 13:05:24,2016-03-20 12:07:17,2016-02-10 17:05:22,3,297.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +24029,WOLZA,9,2017-12-26 07:42:47,2018-01-30 07:58:23,2017-12-26 08:59:38,3,467,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24030,FRANK,8,2023-07-09 21:27:39,2023-08-03 12:22:34,2023-08-02 19:38:50,1,492.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24031,QUEEN,1,2013-11-08 17:38:39,2013-11-24 01:22:04,2013-11-08 21:34:35,1,395,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24032,EASTC,4,2020-09-21 19:33:02,2020-10-10 21:28:19,2020-09-24 04:21:14,3,225.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24033,HANAR,9,2023-04-06 00:52:37,2023-05-07 09:41:44,2023-04-06 11:08:52,1,165.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24034,Val2 ,9,2023-02-08 05:26:53,2023-02-22 12:16:29,2023-02-12 15:59:47,3,369.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +24035,HANAR,3,2023-06-26 14:25:03,2023-06-29 19:50:45,2023-06-26 15:59:02,1,351.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24036,HILAA,7,2019-02-20 15:35:41,2019-03-13 21:15:21,2019-02-25 06:41:00,3,315.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24037,BSBEV,2,2021-05-13 05:02:25,2021-06-10 05:21:54,2021-05-18 13:38:29,1,392.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24038,FAMIA,1,2023-04-23 03:26:21,2023-05-23 16:39:51,2023-04-24 15:34:04,1,446.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24039,CHOPS,5,2023-08-23 00:41:30,2023-08-25 07:20:51,2023-09-07 11:36:27,3,96.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24040,OLDWO,9,2022-05-03 08:26:18,2022-05-13 16:05:02,2022-05-11 11:05:00,1,251.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24041,SAVEA,8,2019-09-08 05:37:55,2019-09-24 02:30:11,2019-09-29 10:27:16,2,219.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +24042,ERNSH,3,2016-04-19 04:08:32,2016-05-01 09:59:59,2016-04-19 06:44:25,1,28,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24043,QUICK,7,2020-02-08 11:16:00,2020-03-23 18:49:14,2020-02-12 06:50:08,2,274.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24044,MORGK,9,2012-11-07 07:24:09,2012-11-22 05:18:30,2012-11-11 21:49:52,1,185.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24045,FRANK,4,2022-04-30 04:04:55,2022-05-15 22:21:14,2022-05-03 01:51:37,3,85.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24046,SUPRD,3,2020-05-10 12:10:18,2020-06-09 21:30:48,2020-05-11 18:35:13,3,279,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24047,MORGK,5,2021-09-02 01:17:45,2021-09-07 23:11:27,2021-09-04 08:15:25,3,457.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24048,VALON,8,2013-11-27 11:17:24,2013-12-11 03:59:11,2013-11-30 12:34:17,1,240.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24049,BSBEV,9,2015-12-21 07:18:21,2015-12-25 20:38:43,2015-12-23 04:21:48,3,466.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24050,MEREP,8,2012-12-24 22:45:43,2013-01-14 12:53:56,2012-12-30 22:50:24,3,191.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24051,COMMI,5,2018-09-09 04:19:09,2018-09-29 07:59:31,2018-09-11 21:45:58,3,361.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24052,GOURL,8,2016-12-10 21:34:40,2016-12-17 16:17:33,2016-12-11 02:10:02,2,507.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24053,LAMAI,1,2018-05-17 19:56:22,2018-06-01 13:05:09,2018-05-18 05:35:09,3,246,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24054,SUPRD,6,2023-03-24 20:45:18,2023-05-03 23:28:20,2023-04-19 18:41:50,1,78.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24055,PRINI,4,2016-04-19 18:25:45,2016-04-30 10:54:44,2016-05-07 10:51:32,1,216.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24056,CONSH,6,2013-02-09 16:03:43,2013-02-17 01:28:45,2013-03-02 03:40:16,2,450,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24057,ISLAT,9,2015-04-13 01:58:29,2015-05-01 07:57:11,2015-04-14 21:48:55,1,262.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24058,BERGS,3,2022-12-12 15:27:56,2022-12-13 02:08:33,2022-12-13 02:45:16,1,533.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24059,PRINI,6,2015-08-24 02:04:45,2015-10-21 21:29:31,2015-08-26 08:42:31,3,288.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24060,QUEEN,4,2019-10-10 07:59:43,2019-10-14 14:52:48,2019-10-21 18:31:11,1,481.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24061,GALED,8,2017-04-23 15:20:33,2017-04-27 14:22:55,2017-04-27 20:13:09,2,523.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24062,CACTU,3,2015-05-15 05:07:33,2015-05-30 21:11:30,2015-05-15 09:32:20,2,76,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24063,QUEDE,8,2022-11-18 03:58:22,2022-12-03 13:55:29,2022-11-19 12:07:41,2,203,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24064,SPLIR,1,2017-11-27 19:41:29,2017-12-13 03:36:48,2017-11-30 10:55:22,3,29.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24065,CONSH,4,2022-06-09 13:34:21,2022-07-02 22:44:23,2022-06-10 08:32:22,3,30.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24066,WELLI,3,2013-02-25 23:12:24,2013-03-30 14:53:27,2013-02-27 08:15:00,3,385.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24067,LETSS,6,2019-10-01 13:02:50,2019-10-04 14:07:26,2019-10-04 11:00:19,3,275,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24068,HILAA,1,2017-11-20 07:40:03,2017-12-24 13:00:31,2017-11-24 17:38:39,2,209.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24069,WILMK,5,2014-07-16 15:04:58,2014-08-01 04:13:47,2014-07-20 14:19:57,3,30.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24070,LILAS,8,2018-07-13 14:16:41,2018-07-23 00:32:23,2018-07-26 05:15:37,1,441.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24071,LAUGB,8,2017-12-12 05:02:59,2017-12-14 23:32:28,2017-12-14 04:51:15,1,366.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24072,LONEP,2,2016-02-27 22:57:05,2016-03-08 03:34:19,2016-03-02 01:14:47,2,354,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24073,QUICK,5,2014-02-11 22:42:34,2014-03-01 14:05:38,2014-02-28 00:56:45,3,525.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24074,VINET,7,2016-06-01 23:46:14,2016-06-10 09:22:04,2016-06-21 06:07:30,2,455.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24075,QUEDE,3,2015-12-14 09:24:56,2015-12-23 08:10:54,2015-12-15 04:40:40,2,269,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24076,ANTON,9,2021-12-23 11:35:20,2022-01-25 10:41:32,2022-01-02 22:12:57,2,328.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24077,SIMOB,8,2017-10-31 14:49:13,2017-11-02 08:50:47,2017-11-10 10:01:32,2,79,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +24078,GALED,3,2023-09-05 09:04:00,2023-09-08 12:41:29,2023-09-23 20:12:30,3,256.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24079,LAUGB,3,2023-03-08 06:30:37,2023-03-09 08:34:21,2023-03-08 12:31:16,2,240.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24080,PARIS,3,2019-08-29 18:24:23,2019-09-27 12:18:05,2019-09-01 10:21:44,3,412.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24081,ROMEY,3,2018-09-03 05:47:59,2018-09-06 08:04:00,2018-09-16 17:58:40,1,109,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +24082,BSBEV,4,2013-03-17 13:22:17,2013-04-01 15:24:21,2013-03-25 21:22:29,3,122,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24083,TRAIH,9,2015-11-14 00:04:46,2015-12-18 22:02:54,2015-11-22 18:38:00,3,215.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24084,WARTH,8,2016-07-26 12:17:34,2016-08-22 15:44:45,2016-07-26 15:36:36,3,166.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24085,ISLAT,5,2020-11-06 16:35:16,2020-11-18 05:30:42,2020-11-24 16:08:49,1,345.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24086,FISSA,5,2015-06-25 19:17:37,2015-06-29 05:19:09,2015-06-29 01:54:14,2,108.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24087,BONAP,4,2014-05-18 17:05:51,2014-06-05 10:14:59,2014-05-21 06:10:22,2,493.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24088,PERIC,7,2017-11-21 01:10:15,2017-11-23 03:53:34,2017-12-12 18:52:06,1,322.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24089,ROMEY,2,2013-09-22 06:43:20,2013-10-19 09:27:19,2013-10-04 19:22:59,2,337.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24090,LAMAI,5,2020-08-30 13:41:09,2020-09-14 05:34:44,2020-08-30 16:41:17,2,157.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24091,GOURL,1,2022-05-06 04:24:48,2022-05-13 01:50:05,2022-05-18 15:42:11,1,302.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24092,WILMK,3,2017-01-19 06:52:39,2017-03-05 15:12:59,2017-01-26 01:32:14,2,505.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +24093,QUEEN,2,2014-12-21 16:28:38,2014-12-23 20:00:33,2014-12-22 10:04:42,3,111.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24094,PERIC,3,2020-10-07 16:17:19,2020-10-08 07:41:05,2020-10-07 23:47:15,3,128.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24095,ANTON,7,2013-01-07 20:03:57,2013-02-02 21:04:50,2013-01-21 06:18:01,1,16.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24096,VICTE,3,2014-05-10 16:33:49,2014-05-19 08:24:12,2014-05-14 21:20:38,3,63.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24097,BOTTM,7,2021-09-02 23:12:44,2021-10-31 14:52:22,2021-09-04 21:47:16,1,203,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24098,SANTG,6,2023-06-01 13:36:40,2023-06-09 14:24:49,2023-06-08 02:38:02,3,37,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24099,ISLAT,9,2020-02-21 20:27:25,2020-03-25 18:21:56,2020-03-06 01:49:34,3,116.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24100,BLONP,6,2017-06-16 00:52:24,2017-06-21 02:03:23,2017-07-03 00:03:02,3,92.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24101,HUNGC,1,2014-08-15 21:16:24,2014-09-20 07:48:01,2014-08-18 16:04:30,3,207.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24102,COMMI,8,2013-03-06 07:19:44,2013-04-17 02:32:44,2013-03-18 02:54:08,3,220.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24103,MEREP,4,2013-07-16 22:09:54,2013-07-21 07:07:23,2013-07-19 14:08:02,3,133.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24104,ISLAT,7,2013-06-04 12:36:04,2013-06-22 11:58:54,2013-06-05 15:50:03,2,147.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24105,WHITC,3,2014-08-03 02:55:57,2014-08-28 18:25:27,2014-08-26 23:47:10,2,318.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24106,ANTON,1,2017-01-24 23:22:00,2017-01-26 15:05:27,2017-02-09 05:57:22,3,480,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24107,VAFFE,7,2019-07-17 21:19:59,2019-08-12 23:37:00,2019-07-18 07:40:37,3,374.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24108,FRANK,2,2023-05-17 18:39:09,2023-06-06 07:36:56,2023-06-06 04:30:46,1,30.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24109,LAMAI,3,2022-04-27 13:19:54,2022-04-27 19:30:43,2022-04-28 09:59:25,3,439.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24110,DRACD,6,2017-06-02 00:30:11,2017-06-24 12:46:48,2017-06-04 20:12:34,2,422.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24111,QUEDE,5,2013-11-26 15:26:36,2013-12-24 21:17:30,2013-12-16 06:59:17,1,472.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24112,SANTG,7,2016-12-02 05:08:56,2016-12-27 11:46:09,2016-12-11 14:14:16,3,161.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24113,FOLIG,7,2019-02-06 10:10:08,2019-02-08 00:25:03,2019-02-22 13:36:31,2,313.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24114,TOMSP,4,2021-03-21 22:28:03,2021-04-27 15:36:39,2021-04-02 11:12:30,2,82,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24115,TOMSP,7,2021-12-14 09:50:41,2022-01-02 18:41:20,2021-12-15 02:46:09,2,55.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +24116,WHITC,5,2018-03-21 00:21:57,2018-04-09 14:11:00,2018-04-03 15:19:25,3,101.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24117,BSBEV,1,2020-12-19 07:36:43,2020-12-26 11:13:18,2020-12-28 05:18:25,1,345.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24118,PRINI,6,2017-05-14 08:39:06,2017-05-24 23:00:50,2017-06-03 20:59:56,1,40,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24119,LAZYK,6,2023-03-05 23:50:47,2023-03-21 23:12:39,2023-03-06 04:14:07,1,141.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24120,THEBI,3,2017-08-26 11:09:18,2017-09-21 03:06:30,2017-08-27 03:35:17,2,145.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24121,ERNSH,8,2015-12-13 03:55:25,2016-01-05 07:51:42,2015-12-14 04:53:01,2,199.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24122,RANCH,6,2021-11-11 22:25:55,2021-11-23 02:02:05,2021-12-07 18:09:34,2,355.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24123,ROMEY,9,2013-10-18 13:31:55,2013-10-21 17:40:30,2013-10-22 01:48:21,1,456.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24124,TOMSP,4,2014-03-17 01:56:33,2014-05-03 06:37:34,2014-03-30 01:22:35,1,307,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24125,SPLIR,4,2020-02-13 17:51:51,2020-03-17 00:19:31,2020-02-14 10:40:20,3,39.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24126,COMMI,5,2022-12-12 22:52:28,2022-12-24 10:25:20,2022-12-31 12:25:08,1,457.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24127,NORTS,2,2021-03-07 22:48:47,2021-03-25 21:16:59,2021-03-20 17:23:13,3,233.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24128,SAVEA,1,2020-11-01 13:12:02,2020-12-16 06:50:32,2020-11-04 00:15:03,2,144.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24129,GROSR,4,2015-08-18 05:21:49,2015-08-31 07:36:31,2015-08-23 15:12:38,2,123,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24130,WANDK,2,2019-10-30 20:05:10,2019-11-07 07:17:46,2019-11-15 21:32:43,1,121.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24131,PRINI,5,2020-08-25 18:54:31,2020-09-06 19:13:58,2020-08-28 11:42:57,3,269.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24132,LACOR,8,2012-08-21 01:38:36,2012-08-24 08:31:48,2012-08-30 03:43:22,2,230,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24133,TORTU,4,2019-09-24 22:17:13,2019-10-03 17:19:07,2019-09-25 12:30:38,3,137.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24134,FRANS,6,2022-05-28 23:17:34,2022-06-06 17:42:54,2022-06-05 02:49:03,2,478.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24135,FRANK,8,2015-09-07 12:59:55,2015-09-14 22:49:54,2015-09-16 09:29:03,2,215,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24136,TRADH,2,2021-02-11 11:46:53,2021-03-23 01:54:39,2021-03-02 08:46:14,1,451.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24137,WOLZA,7,2015-08-08 17:45:40,2015-09-01 10:30:50,2015-08-11 03:42:39,2,314,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24138,WANDK,3,2022-04-12 11:14:47,2022-04-30 07:28:30,2022-04-19 23:56:29,2,18,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24139,FRANK,2,2017-10-29 10:39:16,2017-11-09 23:25:25,2017-11-07 22:06:44,3,425.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24140,SIMOB,5,2021-11-28 13:00:37,2021-12-22 03:33:21,2021-12-01 06:47:30,2,384,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24141,FRANR,1,2018-06-04 17:11:35,2018-06-04 23:04:59,2018-06-11 03:19:42,1,86.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24142,VICTE,9,2016-03-28 17:52:20,2016-04-05 09:07:43,2016-03-29 11:30:58,3,200.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24143,VALON,2,2013-08-02 10:08:59,2013-08-03 20:43:50,2013-08-11 22:38:05,1,205.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24144,LILAS,4,2023-03-30 15:23:49,2023-04-06 05:27:23,2023-04-25 03:49:28,2,355,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24145,PICCO,6,2022-05-27 16:49:23,2022-06-01 07:27:06,2022-06-08 15:40:08,2,255.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24146,VAFFE,7,2017-03-20 21:20:17,2017-04-11 11:22:03,2017-03-21 14:15:24,3,149,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24147,FURIB,3,2023-05-21 18:55:29,2023-07-08 02:48:06,2023-05-27 16:16:15,1,271.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +24148,WILMK,6,2012-09-08 07:13:43,2012-09-17 03:35:24,2012-09-13 15:28:04,1,26.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24149,THEBI,7,2021-07-24 09:02:18,2021-07-28 00:05:54,2021-08-05 04:37:53,2,184.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24150,FRANS,5,2021-08-17 13:50:28,2021-08-27 18:33:45,2021-08-18 19:17:10,2,507.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24151,BLONP,8,2017-08-12 06:47:41,2017-08-12 21:44:56,2017-08-13 09:21:03,2,448.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24152,THECR,3,2019-05-03 18:53:15,2019-06-15 06:14:34,2019-05-07 11:19:55,1,68.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24153,RANCH,5,2020-12-11 12:21:11,2020-12-28 21:14:02,2020-12-29 05:01:06,1,144.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24154,FAMIA,2,2020-07-06 22:52:12,2020-07-09 07:48:49,2020-07-09 17:19:44,2,288.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24155,VICTE,1,2020-10-03 04:32:34,2020-10-08 03:29:02,2020-10-09 02:36:29,2,124,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24156,FRANR,4,2013-03-17 12:15:24,2013-04-08 01:44:24,2013-03-21 17:57:44,2,290.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +24157,PERIC,3,2016-06-25 03:47:13,2016-06-29 17:25:38,2016-07-07 13:05:08,1,218.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24158,HUNGO,3,2015-07-05 20:18:51,2015-08-04 13:23:27,2015-07-10 02:08:16,1,204.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24159,TORTU,2,2015-03-04 20:50:51,2015-03-27 15:08:44,2015-03-05 15:42:00,3,164.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24160,FOLIG,7,2023-01-09 13:27:36,2023-02-05 16:39:42,2023-01-10 01:38:59,2,246.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +24161,ANATR,5,2014-03-19 17:21:38,2014-04-04 12:04:35,2014-04-06 12:17:11,2,315.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24162,GODOS,7,2014-06-05 02:32:22,2014-06-16 13:56:01,2014-06-05 09:31:54,1,158.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24163,ALFKI,7,2023-04-18 19:18:22,2023-05-02 16:13:58,2023-04-19 06:20:27,2,188.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24164,PRINI,2,2020-12-08 03:28:25,2021-01-03 00:27:52,2020-12-09 04:20:00,3,134.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24165,FOLIG,3,2016-02-29 06:55:31,2016-03-14 10:23:24,2016-03-02 15:49:12,1,326,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24166,GALED,1,2016-03-25 14:47:45,2016-03-30 09:10:11,2016-03-26 13:23:13,1,426.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24167,GREAL,2,2019-01-11 05:34:44,2019-01-15 18:54:45,2019-01-19 16:03:29,1,119.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24168,PARIS,4,2021-08-18 03:08:46,2021-08-22 00:47:47,2021-09-09 20:32:24,1,235.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24169,MAGAA,2,2016-09-03 12:07:39,2016-09-09 10:14:31,2016-09-10 00:29:48,2,279.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24170,VICTE,4,2017-10-22 04:40:01,2017-10-25 17:35:59,2017-10-28 22:37:06,3,236,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24171,SAVEA,5,2022-08-25 02:27:46,2022-08-29 13:30:33,2022-08-28 11:15:21,2,396,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24172,EASTC,1,2014-04-12 12:10:53,2014-05-13 07:03:39,2014-04-23 12:10:13,3,491.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24173,SEVES,9,2019-09-04 13:55:25,2019-09-14 01:36:29,2019-09-11 20:37:48,2,34.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24174,KOENE,7,2022-03-15 14:43:28,2022-03-19 13:21:19,2022-03-21 19:25:54,1,28,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24175,GALED,9,2022-11-13 14:16:07,2022-12-05 19:47:14,2022-11-20 18:53:54,1,466.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24176,REGGC,3,2018-07-30 23:20:59,2018-08-04 17:47:46,2018-08-01 08:17:27,3,236.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24177,ANTON,6,2013-07-24 16:27:28,2013-09-15 12:57:32,2013-08-13 01:09:39,2,244.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24178,LONEP,4,2017-08-17 00:26:15,2017-08-24 13:41:42,2017-08-17 17:41:07,3,314.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24179,WARTH,2,2018-10-14 15:24:49,2018-10-15 10:18:48,2018-10-16 12:25:12,1,107.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24180,GREAL,7,2021-09-20 04:09:40,2021-10-02 04:45:53,2021-09-26 04:08:36,2,326.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24181,VALON,6,2014-09-01 08:21:41,2014-09-06 20:24:27,2014-09-10 23:58:21,1,25.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24182,GREAL,8,2021-03-15 02:18:28,2021-03-24 04:31:32,2021-03-26 13:52:08,1,247,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24183,GODOS,1,2021-09-28 19:23:05,2021-10-27 11:09:17,2021-09-29 08:14:09,2,239,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24184,MORGK,6,2014-04-08 11:51:24,2014-05-02 20:40:24,2014-04-11 23:46:16,2,101.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24185,VAFFE,4,2023-04-27 22:48:15,2023-05-19 17:21:07,2023-05-12 03:25:53,2,115.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24186,GREAL,2,2016-10-24 13:05:03,2016-12-06 03:29:44,2016-11-03 03:47:19,1,426.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24187,WOLZA,2,2014-07-13 05:40:40,2014-07-14 15:55:11,2014-07-18 07:17:06,2,50.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24188,BOTTM,8,2022-07-16 06:49:59,2022-08-28 02:13:27,2022-07-25 03:23:27,2,301,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24189,HUNGC,8,2015-11-03 23:16:18,2015-11-12 18:10:12,2015-11-05 08:14:02,3,495.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24190,GODOS,7,2013-07-16 23:18:34,2013-07-31 03:58:19,2013-07-19 00:13:13,2,305.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24191,QUEDE,7,2019-06-21 04:31:30,2019-07-07 09:24:24,2019-06-30 05:14:14,1,216.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24192,CACTU,7,2020-10-26 09:00:24,2020-11-01 02:39:20,2020-11-01 03:58:16,2,239.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24193,FOLKO,7,2014-06-04 03:30:40,2014-06-19 19:26:43,2014-06-05 02:56:43,3,32.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24194,WOLZA,3,2023-03-11 01:49:18,2023-04-14 16:23:00,2023-03-24 07:36:31,2,275.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24195,GOURL,9,2012-12-24 12:05:16,2012-12-25 20:38:46,2013-01-18 06:05:34,3,211.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24196,HUNGC,3,2015-07-05 17:20:18,2015-07-19 12:41:28,2015-07-13 01:11:05,3,138.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24197,HILAA,6,2013-08-23 22:11:58,2013-09-10 09:43:40,2013-09-14 05:29:07,3,251.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24198,VAFFE,6,2023-10-15 18:23:53,2023-10-27 20:59:32,2023-10-19 22:14:12,3,231.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24199,THECR,1,2021-05-19 03:28:14,2021-06-03 14:06:47,2021-05-20 00:34:04,2,117.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24200,ANTON,4,2013-08-05 07:44:16,2013-08-24 17:21:29,2013-08-07 06:45:28,3,87.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24201,REGGC,3,2022-07-27 06:23:57,2022-07-27 19:23:33,2022-07-29 00:10:46,1,371,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24202,OLDWO,4,2014-06-18 03:08:54,2014-07-28 20:57:15,2014-06-23 19:42:59,3,431,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24203,BOTTM,8,2015-03-21 19:31:54,2015-04-21 16:33:49,2015-03-28 05:34:45,1,472.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24204,TRAIH,6,2013-04-03 16:41:07,2013-04-05 04:35:50,2013-04-04 04:19:43,2,472,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24205,BOLID,2,2017-06-07 13:01:11,2017-06-10 06:59:07,2017-06-11 06:26:37,1,215.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24206,MEREP,8,2016-08-02 10:34:52,2016-08-21 05:35:30,2016-08-18 11:43:25,3,245.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +24207,LILAS,6,2013-07-14 22:24:28,2013-07-23 02:10:05,2013-07-22 19:02:12,2,61,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +24208,OTTIK,6,2015-02-17 02:48:07,2015-03-04 19:59:11,2015-02-20 20:34:10,2,454.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24209,WHITC,2,2019-05-16 05:13:11,2019-06-07 06:59:31,2019-06-02 19:31:58,2,216.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24210,CENTC,3,2022-01-17 14:01:45,2022-01-22 00:28:35,2022-01-23 01:13:08,3,248,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24211,LILAS,9,2015-04-09 07:54:06,2015-04-26 04:23:00,2015-04-18 19:59:53,3,326.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24212,Val2 ,8,2012-08-03 16:05:09,2012-09-21 09:28:41,2012-08-21 03:14:18,1,46,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24213,GREAL,6,2022-06-19 08:59:21,2022-07-04 10:48:42,2022-06-25 18:01:05,1,446,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24214,ROMEY,5,2020-12-22 17:06:20,2021-01-22 20:01:59,2020-12-26 12:40:24,1,42.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24215,QUEDE,6,2020-09-07 23:00:07,2020-09-18 08:33:19,2020-09-10 10:53:43,2,226.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24216,LONEP,8,2023-07-22 21:10:53,2023-08-24 01:55:04,2023-07-26 17:35:48,2,472.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24217,ISLAT,3,2023-06-09 07:59:31,2023-06-25 12:21:22,2023-06-17 20:21:39,1,82.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24218,FURIB,7,2014-08-20 15:46:04,2014-09-07 00:06:07,2014-08-21 08:32:01,1,254,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24219,PRINI,9,2021-07-12 02:01:07,2021-08-10 08:32:34,2021-07-16 04:34:51,3,233.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24220,WILMK,2,2014-08-04 00:36:17,2014-08-12 01:08:16,2014-08-12 06:28:57,3,119.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24221,SEVES,7,2018-07-08 22:25:31,2018-07-12 06:49:51,2018-07-17 18:25:45,1,151.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24222,LAZYK,9,2022-09-26 10:43:03,2022-11-07 14:25:32,2022-10-05 10:53:40,3,245.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24223,FOLKO,6,2021-08-18 00:11:15,2021-09-20 18:32:01,2021-08-18 11:43:09,1,397.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24224,LONEP,1,2013-11-23 23:42:31,2013-11-29 12:02:57,2013-12-06 22:14:45,3,345,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24225,FRANR,5,2014-03-26 00:44:57,2014-04-17 09:07:50,2014-04-08 15:33:49,2,175.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24226,OLDWO,1,2023-01-31 18:40:39,2023-02-16 01:06:31,2023-02-18 18:44:17,3,166,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24227,COMMI,6,2022-06-05 14:57:10,2022-06-28 05:55:30,2022-06-06 19:22:51,2,201,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +24228,FRANR,6,2013-07-08 16:34:56,2013-07-11 09:23:15,2013-07-27 11:36:06,3,439.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24229,KOENE,3,2017-05-04 17:27:04,2017-05-25 17:33:49,2017-05-07 12:52:26,2,97.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24230,GOURL,8,2015-01-30 18:22:34,2015-03-16 22:32:59,2015-01-31 07:40:04,2,91,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24231,DRACD,7,2017-11-10 11:35:34,2017-11-15 02:17:13,2017-11-19 15:22:54,2,393.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24232,TRAIH,3,2019-06-17 18:27:24,2019-07-03 08:33:14,2019-07-11 17:01:43,3,449,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24233,VAFFE,7,2013-02-11 01:54:58,2013-02-25 13:39:30,2013-02-19 21:22:23,2,336.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24234,PERIC,3,2021-11-08 00:19:56,2021-12-26 07:42:54,2021-11-17 12:42:51,3,424.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24235,ALFKI,2,2017-03-31 13:55:55,2017-04-26 09:32:53,2017-04-06 12:11:58,3,120,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24236,SPECD,8,2022-06-04 00:04:31,2022-06-17 11:29:44,2022-06-13 08:39:20,2,464.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24237,THECR,6,2017-04-19 15:51:54,2017-04-27 00:16:12,2017-04-19 21:30:55,2,441,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24238,PICCO,7,2016-05-21 15:09:23,2016-06-11 12:28:46,2016-05-29 02:29:29,2,452.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24239,NORTS,5,2019-10-30 04:36:14,2019-11-22 04:34:14,2019-11-01 15:47:30,2,379.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24240,QUEDE,7,2021-05-22 09:52:57,2021-05-27 11:37:07,2021-06-05 10:36:43,1,353.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24241,VALON,8,2017-05-02 08:49:20,2017-05-29 20:19:27,2017-05-06 00:56:46,3,339.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24242,FISSA,5,2021-12-25 23:27:15,2022-01-25 07:11:34,2022-01-07 02:44:40,2,35.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24243,LAMAI,1,2021-04-18 21:52:14,2021-05-07 11:27:43,2021-04-19 08:53:21,2,137,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24244,FOLIG,6,2021-10-10 12:28:25,2021-10-13 18:42:50,2021-10-29 12:09:42,2,178.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +24245,LAMAI,1,2023-10-17 09:30:10,2023-11-05 21:09:10,2023-10-18 11:29:15,1,377,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24246,EASTC,8,2023-08-09 11:04:52,2023-08-14 06:06:00,2023-08-15 02:28:15,3,284.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24247,TRAIH,6,2015-01-16 19:48:10,2015-02-25 20:36:25,2015-01-20 02:31:26,2,424.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24248,CHOPS,5,2012-12-02 07:55:22,2012-12-25 01:31:59,2012-12-15 01:26:39,2,130.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24249,WOLZA,8,2017-09-03 02:09:06,2017-09-04 12:36:59,2017-09-09 15:00:02,2,97.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +24250,WOLZA,8,2015-02-02 14:16:38,2015-02-26 17:27:43,2015-02-03 11:53:59,2,87.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24251,LILAS,5,2015-04-02 09:52:52,2015-05-11 05:24:18,2015-04-21 16:42:18,1,99.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24252,CHOPS,8,2014-08-10 07:03:06,2014-08-15 14:49:15,2014-08-11 16:29:03,1,510.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24253,HUNGO,8,2023-05-04 22:33:56,2023-05-09 21:41:11,2023-05-10 23:01:42,2,297.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24254,FRANK,3,2014-07-21 15:39:03,2014-08-11 20:28:33,2014-08-12 14:52:35,1,436,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24255,SUPRD,4,2020-03-29 18:02:07,2020-04-02 18:58:39,2020-03-30 13:20:34,2,407.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24256,TRAIH,6,2013-07-18 03:18:09,2013-08-09 17:24:44,2013-07-21 13:58:08,1,407,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24257,FRANR,8,2020-07-28 03:31:36,2020-08-04 00:20:55,2020-08-01 13:02:53,1,526.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24258,REGGC,2,2013-01-05 09:04:21,2013-01-13 02:43:52,2013-01-07 03:54:59,3,276.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24259,TRAIH,3,2014-09-03 22:06:57,2014-09-22 04:27:52,2014-09-04 00:25:57,3,408.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24260,FURIB,7,2019-09-04 22:41:05,2019-09-08 06:46:00,2019-09-06 19:32:33,2,309,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24261,LETSS,9,2013-04-19 22:09:41,2013-04-29 21:10:10,2013-05-10 04:16:30,1,234.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24262,ISLAT,2,2013-12-20 21:24:24,2014-01-10 11:36:52,2013-12-30 14:25:34,1,487.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24263,FURIB,2,2023-04-15 08:23:59,2023-04-19 08:08:42,2023-05-02 08:51:51,2,29.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24264,HILAA,8,2016-07-25 18:09:11,2016-08-23 21:01:17,2016-07-26 05:20:19,3,189.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24265,BOTTM,5,2020-02-01 01:29:10,2020-02-15 17:27:55,2020-02-12 21:05:00,2,241.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24266,GOURL,5,2023-09-01 00:47:22,2023-09-30 22:03:50,2023-09-01 04:55:29,2,155,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24267,ISLAT,6,2014-10-11 06:40:06,2014-10-19 10:59:00,2014-10-13 04:56:43,3,455.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24268,RANCH,3,2017-07-14 17:48:20,2017-07-14 19:05:24,2017-08-07 14:18:47,3,220.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24269,WILMK,7,2019-08-02 02:26:40,2019-08-27 17:25:15,2019-08-08 12:20:28,3,278,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24270,RATTC,7,2016-10-01 06:31:19,2016-10-31 14:22:49,2016-10-16 03:42:56,3,268.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24271,CONSH,7,2015-12-24 16:21:02,2016-01-09 10:10:23,2015-12-27 00:21:20,2,48.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24272,GOURL,8,2019-02-24 08:30:02,2019-03-31 01:05:39,2019-02-26 08:18:55,3,484,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24273,FRANR,5,2015-06-08 00:32:40,2015-06-25 01:56:26,2015-06-21 04:39:28,2,24.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24274,DRACD,1,2023-08-24 14:21:09,2023-09-02 15:10:43,2023-08-27 19:52:18,2,140.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +24275,COMMI,5,2015-02-12 18:44:58,2015-02-17 20:20:11,2015-02-18 19:02:55,3,304.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24276,GALED,6,2012-11-11 20:28:06,2012-12-16 19:21:17,2012-11-22 02:23:01,1,136.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24277,SANTG,2,2017-07-31 20:21:05,2017-08-11 05:23:10,2017-08-11 18:21:19,1,200,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24278,FOLIG,9,2015-10-26 02:43:59,2015-11-16 23:56:50,2015-10-29 13:52:38,1,175.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24279,RICSU,6,2019-04-03 11:44:02,2019-04-13 06:56:34,2019-04-07 13:15:01,2,395.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24280,SIMOB,9,2013-11-01 08:20:17,2013-11-22 02:38:17,2013-11-06 16:39:27,1,498,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24281,SEVES,1,2018-07-04 01:55:21,2018-07-05 01:57:48,2018-07-11 18:30:37,2,342.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24282,KOENE,5,2016-02-25 22:00:43,2016-04-03 14:56:28,2016-03-02 10:25:37,2,326.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24283,ANATR,2,2016-04-10 08:10:12,2016-04-24 16:45:30,2016-04-26 14:38:17,2,464.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24284,COMMI,8,2019-02-11 19:59:48,2019-03-09 02:02:43,2019-02-15 20:42:32,3,331.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24285,ALFKI,5,2014-07-18 22:48:26,2014-07-21 18:58:06,2014-07-26 15:59:00,2,87.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24286,LILAS,7,2020-05-12 02:25:53,2020-06-15 04:26:48,2020-05-15 18:36:51,3,233.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24287,BERGS,3,2021-12-06 08:00:29,2021-12-30 13:52:08,2021-12-22 20:50:10,2,320.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24288,MAGAA,7,2017-02-02 03:16:40,2017-02-06 20:52:29,2017-02-14 10:07:24,3,230.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24289,BOTTM,8,2014-04-30 10:15:07,2014-05-04 18:48:22,2014-05-01 08:39:32,2,269.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24290,BERGS,6,2020-11-03 19:36:17,2020-11-10 22:27:36,2020-11-12 22:20:20,3,18.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24291,SIMOB,6,2023-09-28 02:13:02,2023-10-07 18:29:57,2023-10-01 06:01:24,1,20,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24292,ERNSH,8,2014-03-01 09:59:28,2014-03-30 04:44:03,2014-03-10 04:58:54,1,444.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +24293,BERGS,7,2017-10-25 22:16:57,2017-11-28 10:19:44,2017-10-26 06:43:23,1,485.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24294,SEVES,3,2014-02-23 08:55:58,2014-03-16 21:13:54,2014-03-08 21:56:13,1,119.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24295,OTTIK,8,2022-06-24 14:18:01,2022-07-01 21:34:14,2022-07-03 07:07:33,2,111.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24296,NORTS,7,2019-09-16 10:47:36,2019-10-11 10:45:30,2019-09-26 12:49:22,1,80,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24297,Val2 ,7,2014-02-13 03:22:15,2014-02-26 11:06:06,2014-02-18 10:42:17,2,438.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24298,THECR,4,2020-02-19 00:29:58,2020-04-01 13:28:22,2020-02-26 13:45:16,2,376.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24299,GODOS,4,2016-08-07 07:48:20,2016-08-07 08:54:04,2016-08-08 01:21:50,1,308.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24300,ANATR,2,2018-09-12 17:47:09,2018-10-03 02:29:02,2018-10-03 19:16:33,3,14.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24301,CENTC,2,2018-01-26 23:02:19,2018-03-09 00:44:02,2018-02-02 19:35:06,3,353,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24302,OTTIK,6,2016-12-08 03:34:25,2016-12-20 03:17:02,2016-12-08 23:12:37,3,343.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24303,SUPRD,6,2014-04-03 07:19:41,2014-05-01 06:03:10,2014-04-22 16:11:57,3,297.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24304,QUEDE,1,2013-06-10 04:35:55,2013-06-23 06:46:44,2013-06-11 16:19:59,2,484.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24305,HUNGO,3,2014-03-05 20:39:25,2014-03-13 09:11:38,2014-03-27 07:38:08,3,130,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24306,BOTTM,7,2019-03-25 18:15:35,2019-04-25 08:08:54,2019-03-27 11:50:33,3,135,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24307,KOENE,1,2023-09-14 11:43:18,2023-10-20 00:51:42,2023-09-16 01:40:42,3,432.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24308,BOTTM,7,2014-08-30 11:47:57,2014-10-01 06:26:42,2014-08-31 00:29:16,2,88,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24309,FAMIA,2,2019-01-07 23:37:40,2019-01-11 20:44:38,2019-01-12 13:41:56,2,281.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +24310,SEVES,2,2013-11-29 01:24:25,2013-12-13 03:41:50,2013-12-03 06:14:40,1,209.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24311,BERGS,5,2019-02-13 15:30:57,2019-03-08 09:46:41,2019-02-28 04:17:43,3,476.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24312,ALFKI,2,2021-02-15 01:20:35,2021-02-23 04:55:43,2021-02-17 04:07:35,1,294.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24313,GODOS,1,2017-07-29 06:46:43,2017-08-17 06:14:44,2017-07-30 18:28:12,1,103.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24314,VALON,2,2022-07-10 06:35:53,2022-08-05 05:21:10,2022-07-25 03:27:47,1,236.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24315,PICCO,9,2016-06-15 13:14:43,2016-06-17 18:23:08,2016-06-30 22:53:07,1,315.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24316,HUNGC,5,2021-06-14 09:19:14,2021-07-12 15:24:43,2021-06-27 22:19:37,3,43.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24317,WANDK,8,2016-05-22 07:53:38,2016-06-17 16:29:52,2016-05-23 19:09:33,1,285.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24318,LILAS,6,2017-08-31 11:58:43,2017-10-13 17:21:09,2017-09-02 19:06:16,3,180.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24319,FRANS,9,2016-06-01 10:51:19,2016-07-25 02:30:25,2016-06-18 05:54:57,3,117.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24320,RICAR,2,2015-10-13 08:38:39,2015-10-15 04:46:51,2015-11-06 17:48:10,3,251.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +24321,LACOR,2,2013-12-16 13:47:38,2013-12-26 14:52:27,2013-12-23 21:50:05,3,398.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24322,ROMEY,1,2018-12-30 05:19:33,2019-02-02 20:38:09,2019-01-10 15:09:31,3,152.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24323,GODOS,3,2012-09-14 20:51:15,2012-10-21 01:45:40,2012-09-20 10:49:58,1,465.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24324,BOTTM,4,2017-10-13 03:24:17,2017-11-25 00:58:27,2017-10-13 23:25:18,3,203.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24325,LINOD,3,2016-07-11 17:19:03,2016-07-12 05:33:38,2016-07-20 08:09:06,2,345.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24326,BOLID,5,2017-08-23 07:52:34,2017-09-02 15:45:54,2017-08-25 22:12:40,3,210.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24327,BERGS,9,2015-02-07 13:11:54,2015-03-13 09:04:48,2015-02-07 16:21:04,3,188.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24328,THECR,3,2013-03-05 12:45:26,2013-03-10 10:41:14,2013-03-06 13:06:26,1,121.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24329,SANTG,1,2015-02-03 04:46:12,2015-03-04 00:48:00,2015-02-04 01:31:30,1,451.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24330,BOTTM,5,2015-08-27 12:15:47,2015-09-24 08:11:31,2015-09-08 07:57:56,3,43.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24331,MAGAA,2,2022-12-21 06:56:06,2023-01-07 09:56:41,2022-12-30 11:50:21,1,21,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24332,GOURL,2,2013-01-10 18:25:28,2013-01-15 17:53:46,2013-01-12 05:57:23,2,74.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24333,VAFFE,1,2022-06-12 05:37:49,2022-08-06 17:07:41,2022-06-17 13:07:20,2,482.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24334,MAGAA,2,2023-09-19 15:47:13,2023-09-26 22:01:34,2023-10-06 22:59:25,1,428.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24335,WARTH,2,2014-09-02 05:23:36,2014-09-21 19:30:25,2014-09-08 17:09:15,2,339.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24336,SPECD,8,2019-02-17 21:53:52,2019-04-01 20:37:34,2019-03-05 18:58:56,3,265,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24337,THECR,2,2016-03-11 09:02:07,2016-03-25 06:54:11,2016-03-14 12:00:00,2,452.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24338,CACTU,7,2019-12-16 03:15:00,2019-12-30 20:11:00,2019-12-20 15:25:51,1,457.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24339,WILMK,2,2019-01-11 22:47:59,2019-01-13 18:20:01,2019-01-12 19:17:39,3,84.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24340,MAISD,9,2020-05-04 11:46:52,2020-05-12 20:58:23,2020-05-20 13:28:18,3,441.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24341,PRINI,1,2022-09-20 10:22:18,2022-09-20 21:32:44,2022-09-27 04:45:34,3,278.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24342,LONEP,2,2019-09-10 11:12:20,2019-10-10 13:51:08,2019-09-14 04:50:00,2,155.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24343,FOLKO,8,2013-09-18 11:12:54,2013-10-19 19:39:38,2013-09-19 01:05:45,2,187.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24344,LETSS,7,2018-09-25 16:34:00,2018-10-03 06:36:12,2018-10-02 12:19:16,3,13,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24345,LONEP,4,2018-08-20 14:42:11,2018-08-31 22:19:58,2018-08-27 06:52:48,2,250,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24346,LAZYK,5,2019-08-06 05:59:27,2019-08-28 21:45:48,2019-08-08 03:36:56,2,328.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24347,VALON,6,2023-04-19 13:58:58,2023-05-24 08:06:30,2023-04-20 22:04:26,1,268.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24348,WILMK,3,2022-01-19 04:32:11,2022-02-11 11:38:44,2022-02-06 06:36:29,2,461.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24349,Val2 ,5,2013-01-18 19:49:28,2013-01-23 20:37:10,2013-01-20 06:55:29,3,273.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24350,HUNGO,1,2019-05-17 16:35:33,2019-06-11 15:29:32,2019-05-22 20:15:54,2,173.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24351,NORTS,3,2023-06-15 19:34:45,2023-07-08 08:52:59,2023-06-17 15:20:08,2,211.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24352,GODOS,4,2020-08-12 04:25:04,2020-08-30 17:07:11,2020-08-17 01:43:15,2,103.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24353,BLONP,3,2021-08-12 02:53:33,2021-08-25 09:29:00,2021-08-13 04:32:50,2,158,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24354,LEHMS,2,2016-12-15 07:06:11,2017-01-03 10:14:35,2016-12-16 21:37:20,1,97.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24355,LAZYK,7,2015-02-04 11:31:41,2015-02-18 10:23:30,2015-02-17 12:49:40,1,181.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24356,CENTC,2,2016-03-26 06:41:17,2016-04-03 19:05:55,2016-03-28 21:51:30,1,427,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24357,FRANR,1,2016-07-01 21:46:08,2016-07-24 03:58:43,2016-07-20 10:59:36,1,202.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24358,CHOPS,6,2020-04-01 17:24:38,2020-04-02 03:36:13,2020-04-19 08:12:02,2,126,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24359,VINET,1,2015-09-18 05:56:12,2015-09-27 20:36:24,2015-09-19 09:59:55,3,41.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24360,VINET,5,2017-05-04 11:44:15,2017-05-14 14:59:00,2017-05-15 16:31:56,1,295,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24361,GREAL,8,2022-08-16 02:44:51,2022-08-30 02:09:12,2022-08-28 01:59:11,1,356.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24362,SANTG,2,2023-08-03 15:28:43,2023-09-01 16:19:49,2023-08-07 07:35:23,3,86,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24363,ANATR,7,2014-05-03 19:27:31,2014-06-04 08:20:13,2014-05-11 00:56:56,1,267.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24364,DRACD,1,2013-08-31 22:49:42,2013-10-06 07:47:53,2013-09-08 16:11:30,2,189.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24365,PRINI,3,2019-04-30 08:19:43,2019-05-07 23:09:18,2019-05-01 07:24:38,1,247,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24366,FAMIA,7,2021-10-18 12:10:56,2021-12-12 16:29:40,2021-10-23 22:46:07,2,63,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24367,MAGAA,6,2022-12-06 01:29:00,2022-12-25 20:35:27,2022-12-07 18:36:17,1,460,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24368,VINET,5,2017-02-25 11:24:04,2017-03-27 05:35:48,2017-03-16 12:06:00,2,307.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24369,LAUGB,7,2013-09-30 15:35:11,2013-11-07 14:05:42,2013-10-19 07:52:34,3,313.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24370,LACOR,6,2017-06-14 19:33:17,2017-07-09 23:51:03,2017-06-17 01:21:27,1,107.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24371,SANTG,1,2018-01-03 09:24:22,2018-01-14 09:34:36,2018-01-10 04:37:58,3,372.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24372,SIMOB,8,2017-03-10 16:24:39,2017-03-22 11:32:28,2017-03-24 20:56:46,3,40.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24373,OCEAN,8,2020-08-03 06:49:22,2020-08-05 23:58:44,2020-08-13 03:48:39,2,385.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24374,FRANR,3,2020-07-09 00:35:06,2020-07-17 22:36:04,2020-08-03 01:58:41,3,67.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24375,LAMAI,8,2018-02-09 06:05:46,2018-02-14 14:14:29,2018-02-16 03:21:24,1,469,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24376,GREAL,8,2019-07-03 09:25:16,2019-07-10 15:58:06,2019-07-23 14:33:10,3,240.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24377,ANTON,9,2020-10-11 15:05:28,2020-10-15 23:21:39,2020-10-31 01:00:54,2,457,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +24378,WHITC,3,2017-11-08 17:04:53,2017-11-09 19:22:06,2017-11-30 06:27:25,2,424.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24379,WHITC,9,2017-10-14 21:29:14,2017-10-20 15:45:58,2017-11-12 23:44:50,2,252.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24380,FOLIG,3,2018-01-19 13:26:23,2018-01-28 19:00:05,2018-01-21 09:02:03,3,245.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24381,OTTIK,2,2021-03-01 10:37:01,2021-03-18 05:39:27,2021-03-23 15:55:07,3,372.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24382,MAGAA,3,2021-11-11 17:45:58,2021-11-29 03:20:27,2021-11-16 13:56:37,3,12.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24383,CACTU,9,2016-07-04 23:39:13,2016-07-28 09:15:02,2016-07-09 18:32:11,1,413.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24384,CACTU,9,2021-01-06 00:43:09,2021-01-16 09:36:57,2021-01-10 13:48:23,3,139.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24385,RICSU,3,2014-02-18 04:57:47,2014-02-24 18:13:07,2014-02-21 05:31:12,1,120.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24386,BSBEV,9,2019-03-15 23:22:07,2019-03-26 03:42:58,2019-03-21 06:43:45,2,385,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24387,TRADH,8,2023-09-23 17:55:47,2023-10-14 15:50:24,2023-10-05 11:48:40,2,512.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24388,ERNSH,8,2015-02-10 22:50:23,2015-03-07 02:04:24,2015-02-12 09:51:48,3,212.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24389,VICTE,7,2017-05-11 08:05:47,2017-06-26 01:16:02,2017-05-12 09:53:12,2,219.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24390,GREAL,7,2014-05-11 03:04:48,2014-05-29 12:09:47,2014-06-01 16:44:42,2,348.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24391,FRANR,6,2019-12-23 03:05:49,2020-01-02 04:49:55,2019-12-25 23:56:11,1,18,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24392,QUICK,5,2012-12-12 04:59:36,2012-12-12 07:44:17,2012-12-15 05:54:54,3,45,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24393,HUNGO,8,2017-06-07 07:39:19,2017-07-02 07:41:39,2017-06-19 02:55:53,3,364.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24394,Val2 ,7,2018-03-15 20:15:10,2018-03-28 15:51:07,2018-03-27 22:42:19,1,202.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24395,BOTTM,4,2016-09-23 08:04:57,2016-10-10 05:37:06,2016-10-03 07:53:28,2,164,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24396,GOURL,1,2014-01-28 13:36:45,2014-02-20 10:47:28,2014-01-29 01:10:42,2,173.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24397,WOLZA,2,2014-06-16 17:51:50,2014-07-12 02:28:03,2014-06-18 01:47:39,1,310.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24398,BOLID,8,2015-07-17 02:43:00,2015-07-31 18:09:05,2015-07-29 03:27:22,1,17,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24399,FAMIA,3,2019-08-13 01:29:09,2019-10-04 00:34:51,2019-08-26 03:40:28,3,492,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24400,VICTE,7,2021-02-15 18:47:26,2021-02-24 21:08:20,2021-02-15 23:20:06,3,107.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24401,BSBEV,1,2021-03-24 13:39:47,2021-04-06 03:35:43,2021-03-25 03:11:02,2,390,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24402,OLDWO,7,2017-12-13 05:11:33,2017-12-28 15:47:54,2017-12-26 09:57:40,1,310.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24403,WILMK,9,2017-01-19 00:44:03,2017-01-23 16:42:54,2017-01-23 03:34:15,3,340.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24404,FRANK,5,2016-02-25 05:50:35,2016-03-06 22:43:54,2016-03-05 07:47:37,2,126.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24405,GODOS,1,2019-11-03 17:56:25,2019-12-13 23:43:36,2019-11-04 15:24:31,2,85.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24406,WELLI,4,2016-09-11 00:00:24,2016-09-29 13:45:58,2016-09-28 22:37:11,1,101.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24407,FAMIA,5,2019-03-08 23:38:29,2019-03-22 07:03:47,2019-03-16 11:21:25,2,20,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24408,NORTS,6,2021-07-26 13:08:03,2021-08-05 16:26:36,2021-07-27 20:08:16,3,381,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24409,BERGS,8,2023-10-04 02:55:38,2023-10-04 08:21:52,2023-10-20 07:02:37,2,424.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24410,VINET,5,2016-03-28 17:54:54,2016-04-06 09:52:37,2016-04-01 22:35:53,2,237.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24411,WOLZA,9,2013-08-28 21:16:15,2013-09-29 12:32:34,2013-09-03 15:48:56,3,129.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24412,SPECD,8,2023-04-11 22:10:59,2023-04-30 03:07:58,2023-04-30 04:15:06,3,219.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24413,PARIS,4,2018-06-25 15:21:28,2018-07-11 08:54:21,2018-07-18 18:23:59,3,342.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24414,SUPRD,6,2014-11-29 13:42:15,2014-12-15 16:48:45,2014-12-07 17:49:30,2,307,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24415,OTTIK,6,2022-01-14 10:59:30,2022-01-29 05:29:38,2022-01-31 14:46:21,3,188.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24416,SAVEA,6,2015-01-21 06:34:38,2015-01-31 20:29:13,2015-02-01 01:27:33,2,82.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24417,LAUGB,5,2016-09-21 12:28:42,2016-09-28 23:27:17,2016-10-09 01:56:45,3,126,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24418,KOENE,7,2013-05-21 12:35:05,2013-06-02 04:04:53,2013-06-06 06:06:13,2,272.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24419,THEBI,7,2021-04-17 03:00:56,2021-04-19 19:20:18,2021-04-18 15:10:22,2,301.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24420,SUPRD,9,2021-01-25 17:08:28,2021-01-27 00:37:29,2021-02-02 23:47:14,1,454.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24421,NORTS,6,2014-11-27 10:22:36,2014-12-27 12:41:35,2014-12-12 04:01:53,3,476.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24422,RICSU,2,2019-12-06 21:08:55,2020-01-24 15:56:32,2019-12-12 09:26:04,1,250.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24423,WHITC,4,2021-12-03 04:24:55,2022-01-07 20:50:49,2021-12-03 05:27:42,3,364,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24424,GALED,7,2021-11-26 09:13:34,2021-12-25 06:14:44,2021-11-26 10:30:37,1,446.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24425,FISSA,9,2019-05-02 22:06:32,2019-05-28 15:11:05,2019-05-05 04:30:26,1,279,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24426,BONAP,3,2013-03-11 07:03:06,2013-04-23 20:35:38,2013-03-21 01:38:38,2,412.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24427,QUICK,7,2018-03-23 12:23:02,2018-04-06 11:53:05,2018-04-05 04:18:55,2,135,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24428,PERIC,8,2016-03-11 14:34:36,2016-03-13 20:50:19,2016-03-17 01:36:30,3,314.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24429,MAISD,9,2012-08-26 10:43:47,2012-09-09 17:50:31,2012-08-29 07:09:00,3,200,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24430,OLDWO,5,2022-04-24 18:57:54,2022-06-01 15:25:11,2022-05-06 01:54:52,2,437.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24431,HUNGC,7,2020-04-19 01:26:51,2020-06-13 06:49:24,2020-04-29 17:29:21,1,252.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24432,Val2 ,7,2018-01-22 21:38:22,2018-02-04 13:28:18,2018-01-27 01:15:47,1,93.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24433,Val2 ,3,2012-11-22 18:58:20,2012-12-17 13:38:47,2012-11-27 15:01:04,1,156,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24434,LINOD,6,2023-08-28 03:27:42,2023-09-12 16:11:03,2023-09-19 00:24:31,1,398.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24435,BOLID,1,2023-08-27 00:46:33,2023-09-11 02:35:19,2023-09-15 02:57:24,3,149.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +24436,THEBI,4,2015-12-24 21:52:48,2016-01-07 23:41:32,2016-01-23 06:49:50,3,410.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24437,OCEAN,8,2022-02-04 17:03:04,2022-02-24 17:53:43,2022-02-18 14:28:48,3,219.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24438,EASTC,3,2019-03-08 20:23:40,2019-04-10 18:37:20,2019-03-28 12:06:34,2,53,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24439,SPLIR,6,2017-08-15 18:19:52,2017-08-24 14:26:33,2017-08-18 05:33:27,2,460.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24440,SIMOB,7,2017-10-16 20:27:28,2017-10-17 14:40:42,2017-11-07 03:20:10,1,435.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24441,RANCH,3,2018-05-22 22:40:55,2018-06-20 16:39:04,2018-05-28 00:26:56,1,262.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24442,TOMSP,8,2022-08-10 04:10:08,2022-09-14 18:12:29,2022-08-16 09:17:17,3,269.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24443,AROUT,4,2018-11-23 08:00:50,2018-12-06 17:09:36,2018-11-26 07:05:12,3,86.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24444,VINET,1,2020-11-09 12:40:04,2020-11-15 07:17:00,2020-11-11 17:50:42,1,189.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24445,RATTC,9,2016-09-11 03:33:25,2016-09-12 09:32:36,2016-09-11 19:20:14,3,110.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24446,SEVES,3,2021-05-13 10:38:05,2021-06-27 15:52:05,2021-05-17 02:33:16,3,168.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24447,ANTON,1,2022-02-11 03:44:50,2022-02-16 01:59:39,2022-02-17 05:22:55,3,409.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24448,LACOR,2,2014-01-26 06:37:51,2014-02-10 18:30:15,2014-02-07 16:10:51,1,369.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24449,FRANR,2,2018-05-09 06:02:30,2018-05-14 06:48:51,2018-05-15 09:59:52,2,132,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24450,BERGS,8,2014-03-11 02:03:10,2014-03-13 05:17:12,2014-03-15 19:32:05,2,78.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24451,GOURL,2,2016-01-27 20:18:55,2016-01-27 22:31:50,2016-01-31 04:03:05,3,323.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24452,ALFKI,8,2019-09-08 10:47:54,2019-09-26 09:48:54,2019-09-15 14:11:10,2,26.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24453,BONAP,8,2023-09-10 03:11:33,2023-09-25 08:39:43,2023-09-21 22:41:43,1,269,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24454,QUICK,2,2019-05-02 18:42:26,2019-05-22 03:21:26,2019-05-03 05:09:07,3,130.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24455,Val2 ,4,2022-03-08 12:08:00,2022-04-08 22:00:16,2022-03-15 09:12:36,1,379.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24456,FISSA,2,2017-04-29 03:25:32,2017-04-29 04:40:41,2017-05-05 06:57:50,2,360.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24457,TRAIH,1,2013-12-14 00:09:30,2014-01-05 18:47:38,2013-12-15 14:39:52,2,398.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24458,COMMI,4,2021-12-24 19:52:53,2022-01-29 04:22:51,2021-12-28 19:42:08,2,380.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24459,HUNGC,3,2013-03-09 23:01:48,2013-03-10 23:50:43,2013-03-11 08:39:46,3,57.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24460,CONSH,5,2013-11-10 10:28:39,2013-11-16 10:17:45,2013-11-17 11:45:54,3,302.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24461,AROUT,1,2017-06-28 08:52:48,2017-07-07 18:56:23,2017-06-29 02:53:27,2,326.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24462,WILMK,5,2017-08-24 08:33:09,2017-09-02 02:15:52,2017-08-28 01:30:44,2,328.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24463,FRANK,3,2020-09-20 13:59:16,2020-11-04 21:05:22,2020-10-01 14:20:05,1,412.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +24464,MEREP,3,2015-07-08 08:38:18,2015-08-04 17:29:09,2015-08-01 17:15:08,1,386,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24465,LAUGB,1,2013-06-01 06:42:09,2013-06-11 18:53:58,2013-06-02 18:53:31,2,208,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24466,SIMOB,9,2023-08-26 07:25:17,2023-09-06 20:23:15,2023-08-30 10:25:27,2,428,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24467,KOENE,3,2012-12-24 21:04:07,2013-02-02 20:39:01,2013-01-04 00:14:37,1,298.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24468,LACOR,9,2023-07-17 02:38:13,2023-07-26 04:51:54,2023-07-20 00:13:20,1,202,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24469,REGGC,3,2017-03-19 19:39:15,2017-03-24 22:24:36,2017-03-20 13:00:44,3,151,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24470,KOENE,4,2020-07-22 02:38:58,2020-07-31 17:47:48,2020-07-24 06:13:57,2,93.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24471,FRANS,6,2012-09-26 00:53:30,2012-10-07 13:06:06,2012-10-01 06:18:11,1,146,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24472,HUNGC,1,2016-10-23 00:36:08,2016-10-27 19:19:22,2016-10-26 21:09:02,3,408,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24473,HUNGC,6,2017-03-17 11:55:16,2017-04-12 07:04:51,2017-03-30 05:56:52,1,248,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24474,QUICK,1,2014-12-03 07:51:20,2014-12-04 17:26:53,2014-12-14 13:40:45,2,416.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24475,GROSR,7,2021-11-12 10:18:32,2021-11-19 02:27:16,2021-11-24 02:03:21,2,100.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24476,ANATR,7,2021-11-03 04:02:53,2021-12-26 15:07:55,2021-11-05 11:35:18,1,500.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24477,ANTON,5,2016-05-14 17:46:16,2016-05-28 00:49:23,2016-05-14 23:21:28,1,35.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24478,RANCH,4,2022-07-14 01:30:51,2022-08-18 03:54:26,2022-07-31 06:02:32,1,229,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24479,LAUGB,8,2023-07-02 00:04:53,2023-08-21 15:35:02,2023-07-13 13:41:05,3,436,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24480,OTTIK,9,2014-03-29 11:11:48,2014-04-03 05:43:38,2014-04-05 07:44:09,1,207.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24481,ALFKI,4,2016-08-09 00:39:16,2016-08-25 16:40:17,2016-08-13 05:39:02,3,308.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24482,FRANK,5,2013-10-12 22:11:30,2013-10-18 07:26:02,2013-10-15 16:49:10,3,266.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24483,ISLAT,3,2021-02-26 07:52:17,2021-04-14 01:12:05,2021-03-19 05:53:08,3,346.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24484,HUNGC,1,2019-06-26 21:29:25,2019-07-07 05:32:49,2019-07-01 11:30:13,2,120,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24485,TORTU,6,2019-01-05 01:22:10,2019-02-19 02:01:22,2019-01-11 05:17:52,1,142.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24486,GODOS,8,2022-01-28 20:55:28,2022-03-03 02:45:11,2022-02-04 10:56:59,2,366,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24487,WANDK,4,2017-11-11 08:55:07,2017-11-27 08:48:54,2017-11-13 02:47:31,3,370.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24488,SPECD,3,2019-10-20 19:18:12,2019-11-03 02:41:53,2019-10-24 22:49:13,2,331.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24489,Val2 ,4,2016-01-26 11:40:23,2016-01-31 17:08:58,2016-01-27 20:27:24,3,288.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24490,TRADH,3,2022-08-01 13:47:42,2022-09-01 07:14:06,2022-08-16 06:12:26,1,490,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24491,ANATR,8,2017-11-06 18:59:48,2017-11-28 18:10:31,2017-11-11 23:56:12,3,439.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24492,WANDK,4,2020-01-10 02:50:17,2020-01-28 08:58:26,2020-02-06 03:49:19,1,427.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24493,LAUGB,9,2021-09-04 21:58:01,2021-09-15 05:27:06,2021-09-12 22:37:01,2,251.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24494,DUMON,5,2021-06-28 14:26:17,2021-08-10 03:08:05,2021-06-29 06:28:55,2,283.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24495,KOENE,5,2013-01-05 05:14:02,2013-01-15 15:59:46,2013-01-08 01:25:40,1,149.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24496,HUNGC,1,2023-01-24 08:40:18,2023-02-10 16:23:10,2023-01-29 20:27:48,2,111.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24497,ERNSH,6,2014-06-14 01:25:12,2014-06-19 13:25:10,2014-06-18 00:43:54,2,468,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24498,FRANR,3,2018-06-11 21:36:55,2018-06-27 16:18:05,2018-06-16 01:37:09,2,517.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24499,HUNGC,1,2023-04-05 03:18:13,2023-05-15 11:57:29,2023-05-01 04:15:05,1,270.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24500,TOMSP,1,2021-12-29 09:49:38,2022-02-06 21:57:22,2021-12-29 10:10:45,3,96.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24501,DUMON,9,2015-10-29 15:07:23,2015-11-27 23:20:05,2015-11-11 14:12:03,2,438,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +24502,SPLIR,7,2013-06-09 22:26:22,2013-06-15 21:59:24,2013-06-15 17:22:30,2,43.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24503,ANTON,8,2021-04-15 12:25:04,2021-05-01 08:08:01,2021-04-17 00:47:29,2,475.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24504,PARIS,7,2013-06-08 20:06:21,2013-06-28 21:39:54,2013-06-14 06:22:35,1,54.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24505,WHITC,1,2015-05-23 00:39:29,2015-06-08 21:18:34,2015-05-30 23:05:13,1,133.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24506,QUEEN,2,2014-04-18 06:02:10,2014-04-18 21:06:41,2014-04-24 05:02:42,2,117.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24507,RANCH,2,2022-11-28 16:37:03,2022-12-07 22:45:24,2022-11-29 08:07:17,1,444.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24508,ROMEY,1,2023-02-18 20:41:47,2023-04-12 06:45:27,2023-03-06 18:08:34,1,113.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24509,CONSH,4,2014-02-12 13:45:28,2014-02-13 00:58:50,2014-03-06 02:02:02,3,65.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24510,FRANK,4,2021-07-14 02:38:24,2021-08-06 05:27:07,2021-07-25 16:59:44,3,434.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24511,WILMK,8,2021-07-11 06:50:28,2021-08-18 17:33:04,2021-07-17 23:06:21,2,415.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24512,SUPRD,3,2014-06-27 04:09:13,2014-07-09 17:36:28,2014-07-03 05:06:53,1,295.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24513,DUMON,7,2018-02-02 02:39:15,2018-02-04 02:36:52,2018-02-05 22:49:53,1,421.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24514,TOMSP,3,2023-03-12 18:19:08,2023-03-20 14:50:53,2023-03-13 02:07:21,2,466.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24515,OCEAN,5,2021-10-27 09:38:33,2021-11-29 23:14:17,2021-10-28 22:06:42,2,200,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24516,DRACD,6,2014-03-26 17:56:03,2014-04-05 09:58:32,2014-04-03 22:46:47,3,273.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24517,HANAR,1,2018-01-20 18:00:39,2018-02-08 16:55:36,2018-02-14 12:33:51,2,261,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24518,FOLIG,4,2014-03-25 15:11:50,2014-04-17 09:42:23,2014-04-19 10:39:45,2,133,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24519,PARIS,8,2017-09-20 09:56:15,2017-10-06 16:24:21,2017-09-25 10:43:04,1,405,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24520,FRANR,2,2015-09-05 18:09:25,2015-09-07 08:56:16,2015-09-24 00:15:31,1,449,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24521,REGGC,2,2023-02-24 06:44:49,2023-02-27 07:19:38,2023-03-10 04:36:10,2,264.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24522,FRANS,7,2021-03-30 08:29:15,2021-03-31 12:21:10,2021-04-02 22:56:42,1,126,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24523,ERNSH,7,2020-07-28 14:08:10,2020-09-05 03:37:45,2020-07-29 22:38:00,3,25.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24524,FOLKO,8,2017-05-29 09:09:55,2017-07-21 19:50:03,2017-06-11 13:34:24,3,164.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24525,ANTON,1,2013-03-07 19:37:27,2013-04-03 10:57:21,2013-03-10 17:57:16,1,390.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24526,RICSU,1,2018-05-03 07:58:34,2018-05-15 02:09:08,2018-05-24 08:48:26,3,168.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24527,LAZYK,6,2013-11-01 22:10:53,2013-11-04 00:05:00,2013-11-06 15:40:44,2,426.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24528,ROMEY,2,2013-07-21 16:42:17,2013-08-04 13:54:35,2013-07-28 09:39:15,3,285,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24529,LONEP,9,2013-07-18 21:13:13,2013-08-01 08:36:55,2013-07-20 14:20:51,2,204,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24530,ROMEY,7,2021-11-06 18:47:30,2021-11-16 03:22:47,2021-11-22 19:56:56,1,461.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24531,CONSH,1,2017-11-12 00:23:45,2017-12-02 18:22:51,2017-11-22 10:49:47,1,420.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24532,GOURL,9,2013-02-12 19:13:04,2013-02-22 12:46:30,2013-02-15 23:02:47,1,199.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24533,SANTG,5,2015-01-27 07:48:10,2015-02-26 06:03:16,2015-02-06 19:35:21,3,388.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24534,VALON,1,2013-06-03 09:51:49,2013-07-01 03:19:08,2013-06-10 16:25:57,1,351.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24535,SPECD,5,2017-09-19 12:49:29,2017-09-21 11:55:20,2017-09-22 04:53:30,3,366.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24536,SIMOB,5,2015-04-03 07:14:18,2015-04-14 16:46:50,2015-04-12 11:28:28,2,137.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24537,SPECD,8,2016-02-02 04:07:37,2016-03-18 16:34:40,2016-02-06 12:48:30,3,378.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24538,CACTU,5,2013-07-04 19:25:22,2013-08-13 03:01:52,2013-07-10 09:02:56,3,87.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24539,QUEDE,8,2015-03-06 00:40:08,2015-03-18 23:06:47,2015-03-14 01:23:01,2,50.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24540,MAGAA,7,2017-03-21 08:29:25,2017-03-30 01:15:52,2017-03-27 21:14:34,1,440.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24541,BONAP,6,2015-08-19 21:44:29,2015-08-21 18:18:48,2015-08-29 15:10:50,2,213,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24542,EASTC,8,2016-08-19 05:37:18,2016-08-24 06:26:07,2016-08-20 19:58:22,3,189.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24543,LAUGB,7,2017-07-10 00:43:36,2017-08-24 13:06:01,2017-07-11 19:37:48,1,25.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24544,ISLAT,9,2013-10-21 15:35:01,2013-11-01 17:05:34,2013-11-01 04:35:12,2,219,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24545,HILAA,1,2017-01-11 22:45:03,2017-01-19 13:36:15,2017-01-12 17:49:03,3,145.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24546,LETSS,6,2023-04-07 10:33:10,2023-04-29 03:06:09,2023-04-14 14:41:25,3,351,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24547,RATTC,3,2018-03-02 09:23:08,2018-04-16 21:11:43,2018-03-05 10:26:58,3,425,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24548,TRADH,4,2014-02-10 00:02:58,2014-02-18 17:00:30,2014-02-11 05:26:47,3,83.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24549,FOLIG,3,2023-01-16 07:55:36,2023-01-29 10:30:39,2023-01-17 17:21:40,3,494.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24550,GODOS,6,2013-01-16 10:27:05,2013-03-10 00:24:56,2013-01-24 11:47:15,2,511.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24551,ROMEY,4,2014-07-11 08:20:55,2014-07-25 14:35:41,2014-08-01 19:53:10,2,316.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24552,ANTON,3,2013-09-09 03:12:52,2013-09-18 19:45:22,2013-09-22 10:04:39,2,466,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24553,LACOR,3,2019-06-29 15:23:34,2019-07-06 05:29:29,2019-07-07 06:40:52,2,161.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24554,FRANK,3,2013-10-04 16:24:06,2013-10-17 18:40:30,2013-10-16 21:53:57,1,355.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24555,VICTE,7,2015-08-13 22:59:02,2015-08-28 05:43:09,2015-08-22 07:37:44,1,20.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24556,TRAIH,1,2018-04-22 22:38:30,2018-05-24 20:01:10,2018-04-30 12:31:40,3,275.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24557,SPECD,2,2019-09-03 16:20:44,2019-09-19 02:00:33,2019-09-07 17:05:40,3,55.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24558,VAFFE,7,2022-08-28 23:54:13,2022-09-27 12:23:34,2022-08-30 14:23:18,3,309.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24559,LAZYK,7,2015-02-12 00:09:27,2015-02-17 22:04:19,2015-02-16 01:13:42,2,134.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24560,FRANK,8,2020-11-29 09:05:16,2020-12-05 08:39:29,2020-12-18 13:53:06,2,176.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24561,AROUT,3,2014-01-04 22:01:03,2014-01-08 07:47:03,2014-01-06 19:05:10,3,85.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24562,DUMON,3,2014-05-27 09:23:16,2014-05-29 09:45:35,2014-05-27 14:56:32,1,230.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24563,THECR,7,2016-02-26 06:56:19,2016-04-10 14:13:51,2016-03-10 00:30:36,3,517.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24564,RANCH,5,2020-08-03 21:19:21,2020-08-16 13:00:04,2020-08-06 11:24:53,3,330.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24565,PRINI,5,2016-10-25 18:02:04,2016-10-26 08:40:36,2016-11-09 02:45:45,3,348.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24566,VICTE,5,2012-07-24 17:00:06,2012-09-05 13:14:39,2012-07-28 11:55:29,2,431,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24567,TORTU,1,2015-07-15 18:24:50,2015-07-21 17:28:35,2015-07-29 02:05:11,3,426.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24568,DRACD,7,2022-01-21 01:41:31,2022-01-24 03:20:29,2022-01-26 19:31:53,3,385.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24569,FURIB,1,2015-06-30 20:53:11,2015-07-03 10:58:52,2015-07-07 11:30:09,3,289,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24570,LAZYK,7,2013-05-04 19:30:33,2013-05-20 02:30:12,2013-05-04 21:07:14,3,74.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24571,GALED,2,2015-11-25 16:11:15,2015-12-29 23:31:14,2015-11-26 10:13:35,3,67,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24572,REGGC,1,2012-07-13 11:17:53,2012-08-24 08:18:09,2012-07-15 06:08:10,2,496.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24573,WILMK,6,2021-11-02 21:24:29,2021-11-13 21:51:24,2021-11-26 22:57:10,3,363.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24574,HUNGO,8,2021-02-03 13:19:11,2021-03-06 18:30:40,2021-02-05 01:32:10,1,174.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24575,SAVEA,8,2014-04-22 20:43:12,2014-05-05 20:55:20,2014-04-29 16:46:57,1,425.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24576,WILMK,6,2013-06-11 06:31:34,2013-06-13 07:14:52,2013-06-26 05:32:29,1,39.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24577,AROUT,4,2019-08-26 07:55:20,2019-09-13 08:47:49,2019-08-26 11:23:40,3,452.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24578,GROSR,3,2015-04-03 04:55:38,2015-04-24 08:36:10,2015-04-10 11:44:38,3,280.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24579,BERGS,5,2017-07-08 02:25:24,2017-07-17 08:01:35,2017-07-23 13:27:11,2,170.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24580,FOLKO,3,2020-06-26 03:40:21,2020-07-09 01:39:32,2020-06-30 14:16:21,2,424,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24581,TOMSP,1,2016-07-22 21:29:45,2016-07-23 15:20:18,2016-07-23 13:01:27,2,264.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24582,TORTU,4,2017-11-13 05:07:29,2017-11-20 08:42:34,2017-11-14 19:32:45,2,432.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24583,TOMSP,2,2019-04-19 14:12:26,2019-05-10 20:40:28,2019-04-22 00:28:19,3,252.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24584,LAZYK,4,2019-09-26 18:31:24,2019-10-09 23:20:09,2019-10-08 14:14:13,2,242.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24585,OCEAN,7,2017-01-11 21:47:30,2017-02-05 14:25:57,2017-01-30 18:35:08,1,72,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24586,TORTU,3,2022-04-22 12:25:20,2022-04-24 06:05:09,2022-04-25 19:58:00,2,146,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24587,FAMIA,7,2023-09-02 11:52:26,2023-09-05 22:48:05,2023-09-06 11:05:30,1,204.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24588,SEVES,5,2016-03-04 03:17:41,2016-03-16 19:17:27,2016-03-12 08:35:03,1,399.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24589,ALFKI,4,2021-12-08 09:09:23,2022-02-01 08:13:35,2021-12-11 01:42:09,1,186,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24590,LAUGB,2,2021-04-05 06:41:14,2021-04-20 20:13:33,2021-04-09 14:28:59,2,164,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24591,QUEDE,7,2013-01-20 21:37:47,2013-02-24 02:02:47,2013-01-21 13:49:46,1,398.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24592,WHITC,2,2013-11-24 16:43:40,2013-12-06 23:13:37,2013-11-28 08:25:06,1,84,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24593,ROMEY,3,2014-06-14 00:26:38,2014-07-11 16:46:08,2014-06-14 07:21:04,3,430.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24594,FOLIG,5,2019-01-01 17:35:32,2019-01-07 00:28:16,2019-01-04 23:36:28,1,232.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24595,AROUT,5,2022-09-03 18:23:29,2022-10-04 10:36:57,2022-09-18 17:51:09,3,376.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24596,LONEP,3,2017-10-30 12:28:55,2017-11-14 00:40:37,2017-11-11 15:27:01,2,70.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24597,GOURL,7,2023-08-30 11:24:39,2023-09-07 21:44:26,2023-09-06 00:46:33,1,327,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24598,ROMEY,5,2013-02-03 07:07:59,2013-02-10 07:52:25,2013-02-06 11:41:08,2,476.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24599,LONEP,9,2017-01-11 20:50:46,2017-01-18 05:45:42,2017-01-11 22:09:49,3,405.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24600,LETSS,5,2023-09-18 20:10:32,2023-10-04 05:28:56,2023-10-04 23:51:24,1,402.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24601,HANAR,3,2021-02-21 01:34:32,2021-02-21 08:06:29,2021-02-23 17:38:44,3,357.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24602,SAVEA,8,2016-08-10 00:26:07,2016-09-11 02:05:27,2016-09-02 08:15:51,3,265.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24603,FOLIG,9,2014-01-02 11:49:06,2014-01-04 21:04:35,2014-01-15 05:22:22,3,511.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24604,QUEDE,8,2015-12-06 21:51:34,2016-02-02 17:04:55,2015-12-10 00:21:41,1,204.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24605,RICAR,1,2016-11-09 08:35:39,2016-11-27 19:05:14,2016-11-11 06:08:21,1,306.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24606,BOTTM,1,2019-08-30 00:15:23,2019-08-30 20:57:13,2019-08-30 13:28:06,3,477.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24607,WILMK,7,2016-12-30 02:43:11,2017-02-17 10:02:59,2017-01-08 20:46:26,1,100.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24608,LAMAI,3,2017-05-14 21:55:20,2017-05-19 18:33:32,2017-05-17 15:36:10,3,460,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24609,LILAS,6,2012-08-13 17:57:37,2012-09-07 22:12:28,2012-08-22 18:48:41,3,200.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24610,FURIB,7,2022-06-21 10:49:57,2022-07-08 22:01:45,2022-06-22 10:09:17,2,264.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24611,LEHMS,3,2016-07-12 03:42:04,2016-08-01 12:23:51,2016-07-25 12:03:24,1,516,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24612,LONEP,8,2021-04-20 22:08:17,2021-06-13 19:05:44,2021-04-21 19:13:55,3,30.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24613,WARTH,4,2021-03-06 07:59:49,2021-03-28 10:36:00,2021-03-12 07:42:11,1,266.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24614,RICAR,8,2013-07-21 15:16:25,2013-08-11 13:34:21,2013-08-07 14:08:23,3,504.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24615,HUNGC,9,2013-07-30 06:45:55,2013-08-23 01:36:32,2013-08-03 07:45:48,3,136.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24616,VAFFE,2,2014-05-19 12:53:59,2014-05-23 07:28:57,2014-05-20 15:01:24,3,18.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24617,SAVEA,7,2018-09-29 23:25:00,2018-10-03 07:11:11,2018-10-06 13:53:21,1,357,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24618,MEREP,1,2020-07-13 08:16:50,2020-07-23 20:30:58,2020-07-15 11:25:52,3,247,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24619,ERNSH,7,2021-08-20 22:14:09,2021-09-22 01:06:14,2021-08-23 09:19:46,3,52.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24620,BLAUS,8,2016-09-16 10:01:22,2016-10-09 12:18:12,2016-09-30 17:12:18,1,258.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24621,HANAR,9,2018-08-31 14:45:08,2018-09-04 00:02:49,2018-09-03 15:30:18,2,400,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24622,QUEEN,4,2018-09-03 21:41:54,2018-09-27 05:27:48,2018-09-06 21:33:23,3,210.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24623,EASTC,3,2017-08-21 23:17:12,2017-09-12 01:47:18,2017-08-22 19:53:55,1,328.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24624,LAMAI,4,2022-08-05 05:25:59,2022-09-16 12:28:28,2022-08-13 09:36:46,3,209.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24625,PICCO,8,2017-10-20 18:03:02,2017-11-25 05:12:57,2017-10-20 20:26:14,3,262,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24626,WILMK,1,2019-02-26 08:14:48,2019-03-05 14:34:41,2019-03-14 09:16:50,1,383,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24627,VALON,1,2012-09-05 02:11:08,2012-10-17 22:01:24,2012-09-17 08:51:36,1,188.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24628,VINET,4,2021-12-24 01:09:00,2022-01-10 21:51:33,2022-01-14 10:17:55,2,378.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24629,FAMIA,4,2021-05-05 14:01:22,2021-06-12 21:56:27,2021-05-27 00:40:04,3,273.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +24630,SAVEA,5,2017-06-05 00:10:21,2017-07-08 19:31:57,2017-06-10 09:39:01,1,348.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24631,AROUT,9,2019-04-21 15:14:08,2019-05-04 16:21:44,2019-05-01 04:37:02,3,148.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24632,GREAL,7,2018-05-19 09:46:06,2018-06-02 10:01:24,2018-05-29 19:45:50,3,439.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24633,VICTE,5,2016-07-02 11:53:35,2016-07-29 06:39:18,2016-07-17 14:59:12,1,47.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24634,RATTC,7,2013-05-01 18:36:27,2013-05-22 08:56:48,2013-05-03 03:32:08,1,335.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24635,WHITC,5,2023-02-14 04:20:48,2023-03-07 15:54:01,2023-03-03 11:19:08,3,280.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24636,DUMON,4,2014-03-30 15:08:00,2014-04-12 11:50:59,2014-04-12 02:58:22,2,168.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24637,FRANR,1,2013-09-19 11:55:33,2013-10-28 06:47:27,2013-09-22 16:01:08,3,398.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24638,SIMOB,1,2018-09-27 00:45:24,2018-10-28 08:07:15,2018-10-01 06:14:02,1,242.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24639,FAMIA,6,2019-11-21 23:24:18,2019-12-27 01:34:06,2019-11-26 10:24:28,3,162,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24640,QUICK,6,2014-05-05 10:24:21,2014-06-17 22:34:19,2014-05-15 11:22:24,1,464.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24641,ROMEY,3,2013-02-18 11:11:16,2013-03-28 20:42:00,2013-02-24 01:18:51,3,54,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24642,ERNSH,5,2012-09-21 09:58:00,2012-10-19 08:56:18,2012-09-27 14:46:52,2,326,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24643,GODOS,4,2016-10-20 11:17:29,2016-11-15 19:32:22,2016-10-21 09:24:18,1,438.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24644,REGGC,9,2016-11-15 20:19:40,2016-12-18 18:30:22,2016-12-03 09:04:26,3,510.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24645,LETSS,4,2022-05-12 12:18:26,2022-05-17 21:23:50,2022-05-20 05:31:19,3,28.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24646,GOURL,6,2021-07-28 00:55:31,2021-09-20 11:19:13,2021-07-31 06:19:29,3,278.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +24647,TRAIH,8,2014-06-18 15:04:26,2014-07-09 19:52:49,2014-06-22 10:15:40,3,165.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24648,GODOS,6,2023-08-18 22:33:07,2023-08-24 05:28:39,2023-08-26 00:02:54,3,203.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +24649,SANTG,9,2016-08-12 16:28:38,2016-08-15 11:39:16,2016-08-27 21:40:01,3,126,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24650,OTTIK,6,2019-04-10 16:54:57,2019-04-11 07:16:22,2019-04-25 19:54:17,2,52.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24651,LETSS,7,2013-11-28 06:32:13,2014-01-06 12:04:55,2013-12-03 04:51:02,3,85.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24652,GALED,2,2018-03-28 20:32:29,2018-04-12 21:39:05,2018-04-06 10:44:26,2,466.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24653,FISSA,5,2021-10-07 18:09:52,2021-11-03 20:57:08,2021-10-09 21:01:17,3,39.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24654,BSBEV,6,2020-01-15 23:53:31,2020-01-24 09:44:14,2020-01-31 18:30:24,2,363.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24655,RICSU,8,2020-01-30 18:17:26,2020-02-03 01:46:28,2020-02-03 15:08:55,1,212.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24656,NORTS,4,2018-07-24 00:08:57,2018-07-31 20:54:40,2018-07-27 06:48:59,2,320.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +24657,BERGS,1,2013-10-03 00:16:41,2013-10-05 00:17:14,2013-10-24 18:39:13,3,425.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24658,VINET,5,2017-07-29 09:00:53,2017-07-30 04:01:02,2017-08-02 07:13:36,1,418.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24659,CHOPS,5,2012-08-01 00:41:11,2012-08-11 16:03:32,2012-08-04 11:14:50,1,403.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24660,LILAS,7,2014-03-05 00:07:09,2014-03-07 18:04:25,2014-03-12 19:12:49,3,283,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24661,MORGK,1,2018-08-14 22:25:25,2018-09-06 14:51:13,2018-08-24 21:48:14,1,222,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24662,WARTH,3,2021-05-30 00:31:25,2021-06-29 21:17:44,2021-06-13 04:43:41,2,519,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24663,ROMEY,2,2021-09-18 06:52:20,2021-10-09 02:22:32,2021-09-19 09:41:05,1,249.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24664,DRACD,4,2014-05-31 07:17:04,2014-06-29 16:26:47,2014-06-19 10:44:28,1,144.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24665,LONEP,8,2019-01-10 06:28:36,2019-01-14 09:52:39,2019-01-19 06:07:59,2,35.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24666,PARIS,7,2015-12-25 01:44:35,2016-01-01 21:56:53,2016-01-15 17:39:21,1,157,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24667,BLONP,5,2017-11-27 19:34:09,2017-12-04 19:38:30,2017-12-08 14:18:55,1,361.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24668,VAFFE,5,2013-07-29 06:20:50,2013-07-31 10:40:40,2013-08-01 11:51:28,2,469.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24669,TORTU,2,2016-07-04 03:02:07,2016-07-13 08:49:17,2016-07-14 04:22:13,2,437.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24670,MAISD,7,2018-01-19 06:38:40,2018-02-06 12:57:29,2018-02-16 08:04:14,2,434.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24671,ANATR,6,2015-04-12 23:15:55,2015-05-08 15:44:39,2015-04-19 12:39:13,3,345.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24672,FRANS,1,2017-06-21 15:41:43,2017-07-20 11:44:13,2017-07-09 07:25:47,3,161.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24673,BLONP,4,2020-07-27 18:28:56,2020-09-16 00:59:58,2020-08-02 13:17:34,1,246.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24674,TORTU,1,2019-11-16 11:57:16,2019-12-02 13:47:15,2019-11-25 10:05:35,2,55.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24675,RICAR,2,2022-08-08 14:53:03,2022-09-15 12:57:18,2022-08-16 02:19:53,2,461.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +24676,CACTU,9,2015-09-20 08:51:33,2015-09-29 08:38:33,2015-09-24 21:14:57,3,348.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24677,TRADH,3,2020-07-05 06:09:49,2020-07-11 02:02:29,2020-07-12 13:21:23,2,437,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24678,RANCH,5,2022-05-08 08:17:55,2022-07-03 22:22:09,2022-05-11 05:16:18,2,174.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +24679,LAZYK,3,2013-04-18 02:40:54,2013-05-24 13:23:02,2013-05-08 03:07:20,1,170,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24680,FAMIA,9,2021-04-01 21:11:44,2021-04-07 11:45:47,2021-04-07 15:57:44,1,220.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24681,HILAA,1,2021-02-23 06:12:12,2021-03-11 18:04:21,2021-03-03 05:39:22,1,159,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24682,BSBEV,7,2015-08-14 11:34:13,2015-09-05 09:00:16,2015-08-16 17:39:36,1,148.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24683,VINET,9,2019-11-28 09:10:30,2019-12-07 08:13:38,2019-12-03 17:43:40,2,321,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24684,WHITC,2,2023-05-10 04:59:09,2023-05-19 06:45:44,2023-05-11 11:19:03,3,152.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24685,WELLI,5,2012-11-19 01:36:47,2012-12-03 11:27:39,2012-11-19 08:41:22,3,37.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24686,MAISD,2,2018-08-26 18:56:03,2018-08-27 13:36:50,2018-08-27 18:34:28,3,277.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24687,BOTTM,3,2018-06-06 13:48:23,2018-06-24 13:11:43,2018-06-07 14:56:46,3,79.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24688,VAFFE,3,2013-05-25 03:02:56,2013-06-10 09:39:22,2013-05-25 11:03:53,1,308.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24689,BLAUS,1,2023-09-12 12:53:40,2023-09-20 13:31:52,2023-09-22 01:23:56,2,218.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24690,CACTU,2,2017-05-29 13:40:46,2017-06-12 16:42:19,2017-06-03 04:50:24,3,245.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24691,QUEDE,8,2019-10-24 01:32:07,2019-11-26 15:22:07,2019-10-26 05:32:39,3,250,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +24692,PARIS,3,2021-09-23 21:08:19,2021-10-06 14:54:57,2021-10-05 21:51:26,3,341.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24693,FRANR,8,2016-10-08 02:31:44,2016-10-14 19:59:52,2016-10-22 06:14:21,3,100.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24694,RICAR,7,2016-06-21 19:39:06,2016-06-24 13:18:12,2016-06-21 19:56:42,3,201.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24695,FISSA,4,2022-12-24 23:51:29,2023-01-10 19:03:24,2023-01-07 16:35:45,1,286.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +24696,VALON,3,2015-06-04 20:27:49,2015-07-09 04:42:08,2015-06-05 00:16:51,2,103.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24697,ROMEY,2,2019-11-11 03:28:37,2019-11-12 08:02:37,2019-11-23 23:47:59,3,328.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24698,ANATR,9,2023-10-06 09:43:16,2023-10-18 10:07:38,2023-10-12 18:34:07,2,104.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24699,WELLI,4,2020-09-01 21:15:23,2020-09-27 23:58:26,2020-09-06 19:42:14,1,336.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24700,ISLAT,7,2019-11-04 05:29:28,2019-12-13 15:50:59,2019-11-18 11:53:09,3,31.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24701,LAZYK,3,2022-12-25 00:03:32,2023-01-27 03:59:29,2023-01-23 07:43:24,3,230,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +24702,WHITC,9,2014-06-06 11:27:32,2014-06-14 23:02:14,2014-06-10 08:40:16,3,210.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24703,PICCO,1,2021-07-08 21:17:37,2021-07-13 05:40:21,2021-07-09 15:13:11,3,293.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24704,CHOPS,1,2021-09-01 04:46:46,2021-10-03 04:08:38,2021-09-17 04:14:18,3,443.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +24705,TORTU,5,2019-02-10 03:10:28,2019-03-17 01:10:56,2019-02-23 10:49:52,2,125.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24706,TOMSP,6,2016-02-18 04:46:40,2016-03-03 12:47:20,2016-02-24 06:56:38,1,139.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +24707,BERGS,4,2014-06-29 19:39:57,2014-07-02 23:59:28,2014-07-19 13:43:05,2,208.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24708,FOLIG,2,2020-06-22 12:30:47,2020-07-26 05:40:11,2020-06-30 02:16:41,1,352.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24709,SAVEA,7,2016-05-16 23:07:04,2016-06-01 11:53:49,2016-05-18 10:51:26,3,120.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24710,BERGS,6,2015-05-04 19:55:36,2015-05-04 22:47:00,2015-05-04 23:59:32,2,166.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24711,LILAS,6,2013-08-09 00:59:36,2013-08-23 17:29:05,2013-08-14 00:23:30,1,366.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24712,LETSS,8,2018-01-23 15:28:47,2018-02-02 20:06:36,2018-01-31 13:15:28,3,252.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24713,MAISD,5,2015-11-16 09:00:37,2015-11-19 22:17:50,2015-11-17 12:11:46,1,253,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24714,ERNSH,2,2017-11-19 05:02:57,2017-12-05 22:48:01,2017-11-23 13:09:02,2,276,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24715,SPECD,5,2015-05-01 20:16:39,2015-05-22 18:14:45,2015-05-11 22:02:31,3,72,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24716,FAMIA,2,2022-06-10 05:43:20,2022-06-21 22:42:16,2022-06-13 19:47:33,3,355.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24717,OLDWO,1,2013-12-11 04:48:33,2013-12-23 12:52:13,2013-12-12 22:29:12,2,87.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24718,SPLIR,8,2021-03-04 08:27:29,2021-03-05 21:12:39,2021-03-25 00:35:07,2,214,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24719,SANTG,8,2013-02-03 21:29:00,2013-03-08 11:17:47,2013-02-27 00:32:30,3,457.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +24720,ALFKI,3,2013-09-05 23:10:34,2013-10-03 06:43:33,2013-09-18 16:39:58,3,44.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24721,TORTU,3,2019-11-05 15:11:24,2019-11-18 00:40:51,2019-12-01 02:53:54,3,161.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24722,CONSH,5,2014-02-05 07:21:33,2014-03-22 01:53:57,2014-02-10 11:40:52,2,243,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24723,EASTC,5,2022-07-15 15:17:03,2022-09-04 03:42:28,2022-07-16 08:34:42,2,410,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +24724,FAMIA,6,2013-09-26 13:40:26,2013-09-26 17:57:28,2013-10-19 09:37:24,1,307.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24725,DUMON,8,2015-05-02 09:43:23,2015-05-11 08:13:11,2015-05-10 16:02:52,3,150.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24726,MAISD,3,2012-10-03 00:10:56,2012-10-05 01:16:23,2012-10-17 21:04:17,2,196.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24727,GOURL,7,2018-01-25 14:59:45,2018-02-07 07:49:52,2018-02-05 22:34:20,2,347.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24728,FAMIA,1,2016-06-22 13:14:01,2016-06-29 21:53:42,2016-06-25 10:04:29,3,12.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24729,KOENE,3,2018-07-20 17:55:49,2018-08-25 02:00:11,2018-08-08 07:53:34,3,380.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24730,WOLZA,3,2015-05-20 01:22:52,2015-06-01 23:51:43,2015-05-21 01:26:50,1,82.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24731,WARTH,7,2019-11-09 19:06:49,2019-11-25 14:46:32,2019-11-14 13:19:50,2,144.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24732,QUEEN,8,2014-09-14 16:02:11,2014-10-08 03:07:28,2014-09-20 00:36:57,2,198.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24733,FRANK,1,2018-06-19 19:38:43,2018-07-11 08:48:06,2018-06-24 01:51:06,2,275.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +24734,RATTC,1,2017-02-18 11:26:28,2017-03-07 19:55:59,2017-02-18 19:04:33,2,404.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24735,BSBEV,3,2021-11-11 19:33:00,2021-12-06 21:17:43,2021-12-04 10:57:07,2,399.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24736,ANTON,2,2022-02-01 04:16:49,2022-02-13 19:51:44,2022-02-02 18:39:22,3,61.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24737,QUEDE,1,2012-11-01 10:20:43,2012-11-12 22:34:32,2012-11-04 15:35:57,2,232.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24738,ISLAT,5,2023-06-07 02:34:09,2023-06-25 14:39:41,2023-06-09 11:33:39,3,515.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24739,WOLZA,1,2019-11-23 11:10:21,2019-11-28 08:50:39,2019-12-11 23:18:45,1,193.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +24740,SAVEA,9,2021-08-10 12:41:13,2021-09-14 03:31:59,2021-08-29 12:42:20,2,350.25,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24741,HUNGO,8,2020-12-19 14:29:30,2021-01-21 13:43:54,2021-01-06 22:18:01,1,144,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24742,TRAIH,6,2023-07-19 06:47:44,2023-07-24 19:58:38,2023-07-23 00:34:16,2,177.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24743,BONAP,3,2018-05-18 16:32:13,2018-07-02 14:01:43,2018-06-02 01:09:29,2,198,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24744,FRANR,2,2022-03-07 12:52:52,2022-03-18 10:22:54,2022-03-28 09:23:05,2,200.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24745,LILAS,3,2022-12-14 21:12:21,2022-12-16 14:26:09,2022-12-19 19:47:43,2,386.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24746,KOENE,8,2014-03-28 05:52:31,2014-04-22 21:52:32,2014-04-14 02:49:00,1,193.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24747,DRACD,8,2014-07-30 23:25:24,2014-07-31 14:32:58,2014-08-04 20:41:29,3,263.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24748,ANATR,4,2014-12-16 16:27:07,2014-12-19 16:49:23,2015-01-04 00:22:40,3,427.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24749,REGGC,2,2022-09-13 08:18:10,2022-10-06 17:46:19,2022-09-13 20:09:53,1,14,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24750,BLAUS,7,2021-12-21 09:48:21,2022-01-01 10:59:06,2022-01-08 20:41:52,1,92.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24751,LAZYK,1,2022-03-24 08:50:29,2022-04-16 17:15:38,2022-04-01 00:18:51,3,110.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24752,PICCO,9,2022-11-21 20:59:14,2022-12-24 09:56:49,2022-11-23 03:28:00,1,402,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24753,Val2 ,5,2016-10-21 09:09:43,2016-11-18 19:07:10,2016-11-13 04:18:50,2,266.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24754,LACOR,5,2015-12-13 13:50:22,2015-12-14 06:49:03,2016-01-03 16:28:27,3,249.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24755,Val2 ,1,2017-03-31 08:53:16,2017-04-26 07:09:30,2017-04-01 07:14:38,1,301.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24756,OCEAN,3,2021-12-18 04:02:07,2021-12-20 04:16:30,2022-01-05 06:39:37,3,291.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24757,REGGC,6,2018-06-21 05:11:04,2018-07-09 18:48:01,2018-06-25 01:51:31,2,358,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24758,DUMON,2,2019-10-18 21:10:40,2019-11-05 07:09:32,2019-10-21 06:48:29,2,396.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24759,ISLAT,8,2015-07-23 12:31:40,2015-07-27 17:25:17,2015-07-25 08:16:45,1,279.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24760,COMMI,2,2013-07-31 21:14:39,2013-09-14 04:26:35,2013-08-04 21:26:13,3,466,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24761,LINOD,1,2018-07-30 07:55:08,2018-08-18 08:10:43,2018-08-16 04:28:45,1,92.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24762,LILAS,8,2023-01-31 04:44:50,2023-02-19 11:36:46,2023-02-10 05:29:09,1,61.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24763,GOURL,4,2018-02-07 17:05:54,2018-02-15 23:51:36,2018-02-14 10:04:31,2,142,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24764,COMMI,8,2016-06-17 02:03:51,2016-08-07 13:23:07,2016-06-27 08:57:31,2,277.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +24765,LILAS,8,2019-01-24 19:59:03,2019-02-01 16:38:42,2019-02-06 09:12:36,2,227.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24766,VINET,8,2018-09-27 15:38:59,2018-10-04 05:51:25,2018-10-18 12:05:13,2,164.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24767,FAMIA,5,2021-08-30 14:00:46,2021-09-14 06:00:24,2021-09-09 05:01:12,1,214.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24768,WELLI,9,2013-07-28 23:03:25,2013-08-30 03:46:16,2013-08-02 17:19:48,3,280.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24769,DRACD,4,2019-02-14 11:05:19,2019-03-22 09:45:17,2019-02-17 18:01:22,1,388.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24770,GROSR,7,2019-12-27 21:27:57,2019-12-30 02:06:20,2020-01-11 21:41:06,3,59.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24771,OCEAN,3,2022-11-05 07:52:14,2022-11-25 17:52:07,2022-11-08 18:21:08,3,439,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24772,ALFKI,3,2019-02-26 17:57:22,2019-03-05 06:53:34,2019-03-09 22:45:33,2,91.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24773,LAZYK,6,2018-12-20 09:25:13,2019-01-04 23:01:06,2018-12-30 06:35:16,3,95.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24774,FURIB,4,2016-04-05 21:00:51,2016-04-13 00:55:15,2016-04-20 21:47:41,1,420.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24775,FRANR,2,2018-10-23 09:24:24,2018-11-23 12:21:25,2018-10-27 15:24:19,2,511.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24776,GODOS,8,2016-06-15 10:58:41,2016-06-23 19:42:51,2016-06-20 09:23:16,1,222.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24777,RANCH,8,2023-02-17 13:47:52,2023-02-20 05:17:16,2023-03-11 21:37:55,3,517,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24778,ROMEY,1,2014-07-22 09:43:32,2014-08-01 10:35:20,2014-08-10 14:45:25,1,155.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24779,TRADH,9,2016-12-31 00:51:37,2017-01-14 14:49:49,2017-01-10 05:49:45,2,367.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24780,DUMON,3,2020-08-27 11:20:19,2020-09-01 04:34:56,2020-08-30 06:34:34,1,231.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24781,LEHMS,9,2020-12-01 17:53:37,2020-12-16 00:53:08,2020-12-02 08:42:52,2,254.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24782,NORTS,4,2014-03-29 12:08:55,2014-04-11 17:23:38,2014-04-01 03:57:41,3,275,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +24783,BOTTM,8,2014-04-17 23:06:40,2014-05-02 11:31:17,2014-04-18 06:02:00,2,167.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24784,BOTTM,9,2023-06-03 14:15:54,2023-06-15 02:43:57,2023-06-07 06:40:49,2,379.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24785,PARIS,5,2018-10-24 15:08:00,2018-11-24 17:09:52,2018-10-27 07:35:45,3,308.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24786,WELLI,4,2016-02-17 01:35:37,2016-02-24 11:17:12,2016-02-18 11:03:06,2,188.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +24787,SPECD,8,2013-12-27 19:18:43,2014-01-11 22:07:49,2013-12-29 01:26:29,1,238,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24788,BOLID,5,2016-11-19 19:31:19,2016-12-28 08:06:47,2016-11-24 22:12:49,1,327,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24789,BERGS,8,2014-05-03 15:18:03,2014-06-07 02:17:37,2014-05-09 20:17:29,2,99.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24790,CONSH,6,2017-02-23 04:29:40,2017-02-23 13:44:43,2017-02-28 19:05:35,2,93.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24791,SEVES,1,2023-05-31 02:18:38,2023-06-15 03:42:56,2023-06-02 22:52:21,2,403.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24792,SUPRD,5,2015-11-11 21:06:33,2015-12-16 17:11:43,2015-11-19 17:19:41,2,248.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24793,MAISD,1,2019-04-19 08:30:37,2019-04-29 09:43:01,2019-04-26 07:48:20,1,154.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +24794,PICCO,7,2021-11-06 23:58:47,2021-12-06 10:31:01,2021-11-12 20:14:36,1,93.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24795,HANAR,6,2017-12-17 09:38:59,2018-01-10 01:29:19,2017-12-21 15:07:39,3,421.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24796,QUICK,1,2019-05-27 16:23:30,2019-06-16 09:02:21,2019-06-05 05:16:20,3,181,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24797,DUMON,9,2013-10-23 20:07:32,2013-11-26 11:55:54,2013-10-24 13:29:46,1,62,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24798,LAMAI,6,2019-08-18 11:08:54,2019-09-06 16:53:07,2019-09-13 02:32:18,1,48.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24799,ANTON,8,2017-03-17 03:54:06,2017-03-17 18:07:23,2017-03-18 19:54:43,2,104.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24800,MEREP,9,2019-11-28 20:42:04,2019-12-09 12:46:11,2019-12-04 22:46:25,1,292.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24801,BOTTM,5,2015-12-19 22:02:41,2016-01-30 10:06:16,2015-12-24 01:15:27,2,361,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24802,GOURL,8,2015-11-30 22:27:30,2015-12-09 08:33:47,2015-12-16 12:14:24,1,132,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24803,TRADH,9,2022-09-19 16:00:10,2022-10-22 04:39:06,2022-10-12 09:49:29,1,67,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24804,SEVES,8,2021-11-21 05:03:08,2021-12-02 15:10:14,2021-12-02 18:11:31,3,290.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24805,HILAA,3,2017-11-24 18:17:04,2017-12-13 06:15:22,2017-12-11 16:02:38,3,254,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24806,QUEEN,9,2023-06-14 16:40:09,2023-07-10 04:32:17,2023-07-09 14:44:49,1,380.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24807,TOMSP,4,2019-10-26 13:07:22,2019-11-03 18:14:04,2019-10-27 04:06:42,1,473.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24808,FRANS,9,2021-04-15 20:00:44,2021-05-23 09:30:54,2021-05-09 08:58:09,1,314.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24809,SPECD,7,2020-07-17 16:41:26,2020-08-02 12:51:57,2020-07-29 15:26:44,2,439,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24810,GOURL,6,2016-10-14 11:15:00,2016-10-27 09:32:26,2016-10-14 16:14:16,1,364.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24811,SIMOB,4,2015-09-13 22:07:14,2015-09-24 20:41:59,2015-09-14 14:34:27,2,354.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24812,SPECD,7,2018-11-13 18:15:33,2018-12-04 23:47:12,2018-11-22 01:04:40,2,443.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24813,ISLAT,3,2018-12-11 05:00:16,2018-12-11 05:27:14,2018-12-16 07:42:41,3,305.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24814,LAMAI,6,2012-10-06 04:28:38,2012-10-28 08:05:11,2012-10-12 21:41:49,1,260.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24815,PRINI,6,2013-11-25 16:40:48,2013-11-26 16:57:42,2013-12-05 11:26:12,2,408,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24816,SPLIR,1,2023-09-26 14:33:38,2023-10-12 13:43:13,2023-09-29 11:18:14,1,202.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +24817,GOURL,3,2019-06-28 07:13:12,2019-07-25 05:31:53,2019-07-20 17:08:49,1,147.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24818,ANATR,6,2020-02-21 10:18:48,2020-03-12 08:01:48,2020-02-23 02:14:16,2,431.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24819,HANAR,2,2015-01-01 16:01:16,2015-02-18 23:39:34,2015-01-09 10:39:34,2,123.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24820,SIMOB,9,2016-03-08 00:29:41,2016-04-07 03:50:54,2016-03-10 01:21:54,1,84,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24821,WILMK,3,2022-01-18 07:46:40,2022-02-18 23:32:46,2022-01-18 13:52:23,1,278.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24822,LEHMS,4,2013-12-17 22:12:13,2014-01-04 00:23:44,2013-12-24 10:17:42,1,47.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24823,MEREP,5,2016-07-21 06:33:58,2016-08-06 19:21:09,2016-07-22 01:13:57,1,449.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24824,BOLID,7,2015-07-13 10:40:29,2015-08-02 02:38:30,2015-07-15 23:02:28,1,351,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24825,SANTG,1,2012-09-18 15:03:43,2012-10-05 09:30:45,2012-09-28 03:55:51,3,183.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +24826,ERNSH,3,2018-07-23 12:49:31,2018-08-06 22:58:52,2018-07-28 11:24:01,1,205.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24827,MORGK,1,2022-05-23 16:13:24,2022-06-11 14:32:13,2022-05-24 05:06:42,3,107.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +24828,RANCH,3,2017-10-30 14:29:16,2017-11-05 03:04:53,2017-11-09 13:46:59,2,229.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24829,WHITC,8,2013-04-25 16:41:30,2013-05-09 10:35:58,2013-04-27 00:22:10,1,412.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24830,HANAR,3,2013-12-30 10:50:44,2014-01-13 15:00:56,2014-01-03 02:39:04,3,382,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24831,KOENE,2,2015-08-18 05:26:19,2015-08-30 06:17:02,2015-08-20 17:31:40,3,94.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24832,MAGAA,3,2020-05-17 20:56:38,2020-06-02 05:39:59,2020-05-31 22:11:56,1,181.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24833,BLONP,1,2019-09-22 07:59:09,2019-10-30 13:33:31,2019-09-23 03:32:16,1,299.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24834,WELLI,5,2014-03-19 20:06:24,2014-04-19 12:34:29,2014-04-13 15:01:31,1,13.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +24835,VINET,5,2023-10-15 08:23:33,2023-11-02 13:39:51,2023-10-18 22:14:23,2,333.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24836,FRANR,1,2022-12-24 20:59:14,2023-01-17 01:57:04,2023-01-02 09:55:25,3,416.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24837,WOLZA,7,2019-10-08 07:31:57,2019-10-31 21:28:03,2019-10-16 09:41:05,2,423.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24838,OTTIK,2,2023-08-09 03:54:25,2023-08-23 18:55:43,2023-08-26 03:49:45,2,249.75,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24839,GREAL,1,2012-10-02 15:08:36,2012-10-30 02:06:19,2012-10-03 08:44:11,1,311.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24840,VICTE,2,2019-12-18 06:43:33,2019-12-29 17:30:44,2019-12-23 15:28:39,2,351.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24841,REGGC,9,2014-12-09 14:37:37,2014-12-12 00:15:01,2014-12-11 09:56:28,1,225,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24842,PARIS,1,2017-07-05 02:56:39,2017-08-05 17:00:50,2017-07-06 01:22:29,1,190,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +24843,BLAUS,1,2022-10-28 10:23:55,2022-11-15 19:27:10,2022-11-13 04:29:40,3,67,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24844,RICSU,7,2022-12-26 11:25:33,2023-01-01 00:22:18,2023-01-04 03:08:25,3,101.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24845,BLONP,2,2020-06-18 07:04:13,2020-07-11 04:42:02,2020-06-20 01:41:18,2,46,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24846,PRINI,3,2019-12-23 08:12:59,2020-01-19 09:47:14,2019-12-27 04:45:31,1,385.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +24847,PICCO,5,2018-02-12 04:05:15,2018-03-01 15:44:09,2018-02-12 22:41:28,2,82.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24848,VINET,7,2015-06-20 22:20:17,2015-07-13 14:31:50,2015-07-01 03:23:35,2,432.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24849,VALON,2,2015-02-16 12:01:59,2015-02-27 07:34:45,2015-02-20 13:31:47,3,27.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +24850,OLDWO,8,2017-03-31 18:48:06,2017-04-04 10:21:46,2017-04-02 10:29:15,2,304.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24851,CENTC,5,2022-09-25 03:28:39,2022-10-12 04:55:35,2022-09-26 11:13:40,2,225,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24852,GROSR,6,2022-03-13 06:43:21,2022-04-23 10:27:47,2022-03-14 18:22:49,2,126.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +24853,MAISD,6,2016-08-26 21:21:26,2016-09-19 12:12:16,2016-08-31 23:52:47,2,236.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24854,BERGS,3,2023-01-22 10:23:20,2023-02-08 04:51:10,2023-02-01 01:25:38,3,82.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24855,WANDK,7,2017-09-13 18:02:52,2017-09-18 00:01:24,2017-09-16 05:39:56,3,400.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24856,MAGAA,9,2017-02-03 16:05:43,2017-03-29 16:00:27,2017-02-19 07:47:45,3,231.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +24857,QUICK,7,2019-09-29 06:51:43,2019-10-31 20:20:35,2019-10-04 09:04:53,1,34.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24858,SPLIR,2,2015-03-28 12:57:12,2015-04-26 14:09:35,2015-04-11 13:02:19,3,116,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24859,TORTU,9,2023-06-11 20:20:19,2023-06-13 12:01:04,2023-06-17 19:54:37,3,17.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24860,GALED,5,2016-06-02 01:01:04,2016-06-24 20:13:20,2016-06-05 19:07:10,1,73,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +24861,BLONP,5,2016-01-17 15:55:57,2016-02-09 16:13:21,2016-01-23 14:32:10,2,179,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24862,LAZYK,3,2013-04-29 22:37:57,2013-05-11 12:18:24,2013-05-17 20:09:36,3,113.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24863,ISLAT,5,2020-02-25 02:32:24,2020-03-01 18:49:55,2020-02-26 16:36:55,2,450.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24864,PARIS,9,2016-04-16 16:35:30,2016-06-03 14:59:15,2016-04-16 17:23:15,2,194.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24865,DRACD,4,2013-05-31 04:53:09,2013-06-04 06:39:12,2013-06-22 14:59:23,3,44.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24866,VICTE,7,2019-08-15 06:57:31,2019-08-29 09:59:23,2019-08-25 20:45:13,3,490.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24867,BLONP,6,2022-07-23 15:36:21,2022-08-19 22:42:58,2022-07-24 02:38:35,2,521.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24868,AROUT,5,2018-12-14 04:52:00,2018-12-30 23:53:18,2018-12-24 12:19:36,2,488.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24869,TRAIH,6,2017-11-13 15:37:08,2018-01-09 06:34:11,2017-11-16 06:41:09,1,381.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24870,ANATR,5,2015-03-31 22:40:43,2015-04-12 22:09:21,2015-04-02 18:05:35,2,39.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24871,CONSH,6,2018-01-07 19:41:54,2018-01-12 15:54:29,2018-01-09 16:09:50,3,398,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24872,AROUT,8,2013-07-27 22:44:13,2013-08-08 03:58:27,2013-08-01 22:46:03,2,507,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24873,HUNGC,7,2018-03-05 11:53:14,2018-04-23 04:56:50,2018-03-11 13:47:44,1,32.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +24874,CHOPS,3,2022-09-22 03:15:50,2022-10-23 22:26:56,2022-09-25 09:26:42,3,275.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24875,COMMI,4,2021-09-26 02:33:59,2021-10-06 21:22:32,2021-10-01 10:52:15,3,66.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24876,FAMIA,2,2017-04-11 04:44:37,2017-04-30 13:25:01,2017-04-17 06:08:22,2,332,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24877,RATTC,7,2014-01-01 16:07:04,2014-01-03 19:17:28,2014-01-03 14:06:20,1,224.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24878,PRINI,8,2017-03-06 10:53:26,2017-03-31 18:41:12,2017-03-09 06:08:29,3,280.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +24879,RICAR,1,2015-08-27 11:12:12,2015-09-28 14:26:14,2015-08-27 15:11:25,3,252.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24880,COMMI,4,2016-03-24 09:11:35,2016-04-03 08:51:11,2016-04-09 18:00:50,2,96.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24881,SEVES,2,2022-08-14 08:35:54,2022-09-20 18:21:51,2022-08-23 22:36:51,1,466,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24882,RICAR,3,2013-09-29 21:26:00,2013-10-19 19:05:26,2013-10-17 07:50:32,3,26.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24883,TRAIH,7,2014-01-13 14:58:46,2014-02-05 08:05:46,2014-01-29 20:59:28,3,208.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +24884,RICAR,7,2022-07-09 23:56:07,2022-07-14 18:53:19,2022-08-06 11:53:41,3,503.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24885,ERNSH,7,2018-05-14 12:54:44,2018-05-15 19:21:48,2018-05-26 04:30:35,2,185.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24886,NORTS,9,2015-04-25 03:05:30,2015-05-25 07:59:16,2015-05-03 06:55:34,1,260.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24887,SAVEA,6,2012-11-12 13:52:40,2012-12-27 09:41:38,2012-11-27 04:13:52,2,279.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24888,RICAR,3,2021-08-15 11:37:44,2021-09-02 10:26:32,2021-08-19 09:58:55,3,390.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +24889,BOLID,9,2012-08-15 23:03:27,2012-09-01 21:55:06,2012-08-17 14:47:26,1,347,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +24890,LINOD,3,2018-07-16 02:00:48,2018-07-29 20:59:02,2018-07-22 11:34:25,1,401.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24891,Val2 ,1,2020-11-08 12:14:32,2020-11-19 20:51:34,2020-11-24 11:30:03,3,522.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24892,TORTU,8,2013-09-24 08:25:22,2013-11-06 03:47:00,2013-09-26 01:35:33,3,207.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24893,WILMK,5,2012-11-24 07:30:15,2012-11-24 10:46:41,2012-11-26 04:02:18,1,48.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +24894,FOLIG,2,2019-06-28 15:51:08,2019-07-11 10:29:10,2019-07-07 11:19:54,3,172.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24895,TORTU,4,2014-02-12 01:46:11,2014-02-13 10:16:56,2014-02-12 03:10:37,2,239,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +24896,ISLAT,1,2015-02-19 01:37:26,2015-02-28 01:30:31,2015-03-07 17:26:34,1,510.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +24897,Val2 ,6,2021-08-09 13:28:08,2021-08-18 13:46:26,2021-08-17 04:33:33,3,497.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24898,TRADH,5,2017-05-02 12:47:11,2017-05-14 13:41:17,2017-05-15 15:16:49,3,68.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +24899,LAZYK,9,2015-07-22 21:43:00,2015-08-26 12:28:42,2015-07-23 15:35:27,3,34,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +24900,LETSS,6,2018-03-23 02:47:40,2018-04-02 16:17:38,2018-04-05 03:32:59,1,77.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24901,RANCH,3,2018-01-10 21:57:28,2018-02-17 09:19:21,2018-02-06 19:31:09,2,234.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +24902,RICSU,3,2019-07-27 17:42:51,2019-08-06 20:52:13,2019-08-04 18:17:25,2,505,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24903,LILAS,1,2022-03-18 05:40:31,2022-04-05 07:05:54,2022-03-20 08:55:01,2,501,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24904,TOMSP,4,2017-01-25 19:45:21,2017-01-30 04:28:21,2017-01-29 00:07:28,2,288,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +24905,BLONP,3,2015-09-08 21:13:12,2015-10-28 05:56:49,2015-10-01 00:51:30,1,272.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24906,GROSR,4,2013-09-04 00:01:24,2013-09-18 12:55:31,2013-09-05 01:58:21,1,447.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24907,TOMSP,6,2012-09-15 03:24:01,2012-10-12 18:15:19,2012-09-15 08:43:31,2,298,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24908,TRADH,5,2014-06-21 17:33:26,2014-07-06 22:33:03,2014-07-19 02:32:46,3,419.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24909,TORTU,2,2015-05-08 18:59:33,2015-05-16 20:50:08,2015-05-17 17:46:01,1,25.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24910,CENTC,7,2015-12-22 12:56:21,2016-01-20 21:42:06,2015-12-23 08:28:23,2,244,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +24911,ERNSH,2,2019-03-18 23:55:29,2019-03-26 19:27:22,2019-03-27 05:29:04,2,377.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24912,ANATR,3,2013-12-19 22:04:06,2013-12-22 07:48:07,2014-01-07 12:45:05,2,186.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +24913,LINOD,7,2023-09-18 01:49:42,2023-09-24 21:48:38,2023-09-24 19:37:00,2,363.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +24914,MAISD,9,2014-11-18 19:05:08,2014-11-27 17:16:37,2014-11-19 15:24:16,3,226,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24915,FOLKO,6,2023-10-17 06:44:05,2023-11-09 23:15:02,2023-10-25 05:33:46,1,220.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +24916,LONEP,2,2014-01-05 16:43:09,2014-01-10 21:44:44,2014-01-08 19:42:26,2,250.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24917,FRANK,8,2016-03-16 02:20:11,2016-04-07 03:21:09,2016-03-25 09:51:51,1,155.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24918,LACOR,8,2013-03-15 14:16:56,2013-04-10 07:21:11,2013-04-06 20:34:07,3,78,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +24919,ALFKI,5,2017-08-27 09:08:34,2017-08-30 19:57:47,2017-09-02 07:54:23,2,265.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24920,LILAS,7,2016-09-04 16:05:13,2016-10-07 21:48:39,2016-09-07 23:59:21,2,50.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24921,CENTC,6,2014-05-07 12:45:09,2014-06-25 11:28:15,2014-05-10 07:45:24,1,291.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24922,BOLID,6,2019-01-30 17:40:33,2019-02-16 22:13:43,2019-02-11 07:05:37,3,146.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +24923,RATTC,1,2021-12-27 07:05:37,2022-01-23 19:26:23,2021-12-30 18:47:03,3,247.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24924,GOURL,2,2016-01-30 09:12:21,2016-02-22 12:48:00,2016-02-25 11:24:26,2,82.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24925,LONEP,5,2015-05-21 21:11:44,2015-06-11 00:31:59,2015-06-04 05:38:40,3,180.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24926,CACTU,8,2014-11-01 17:57:05,2014-11-03 01:52:00,2014-11-05 08:40:58,2,481.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24927,PERIC,1,2017-12-23 00:11:20,2018-01-11 22:45:03,2017-12-23 13:27:36,1,385.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24928,BLONP,9,2018-01-07 20:51:18,2018-01-25 08:27:16,2018-01-27 09:40:34,1,432.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +24929,FRANR,3,2016-05-24 10:49:57,2016-06-04 07:28:25,2016-06-02 23:24:15,1,420.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24930,BLONP,5,2019-05-01 17:42:33,2019-05-04 05:40:17,2019-05-15 09:51:30,3,159.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24931,LACOR,2,2014-11-19 17:54:08,2014-12-11 07:18:16,2014-11-24 14:18:35,3,398.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24932,FOLKO,7,2021-09-04 08:12:06,2021-09-25 13:39:40,2021-09-16 05:14:18,2,173.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24933,SUPRD,2,2013-02-04 15:43:15,2013-02-21 19:33:39,2013-02-05 10:13:01,3,379,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +24934,TORTU,5,2014-10-31 08:10:16,2014-11-15 01:22:53,2014-11-03 11:43:20,1,235,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24935,MAISD,2,2021-05-22 05:23:56,2021-05-25 19:38:15,2021-05-28 03:19:35,3,411.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24936,GREAL,1,2013-04-24 12:34:51,2013-05-12 10:07:38,2013-05-09 09:29:45,2,296.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +24937,LETSS,3,2020-12-27 10:20:10,2021-01-03 06:32:51,2020-12-29 01:56:10,1,182,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +24938,ROMEY,6,2020-01-21 11:16:33,2020-02-08 18:56:28,2020-01-23 23:48:23,1,399.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24939,MAGAA,1,2018-11-19 13:01:56,2018-11-30 10:51:04,2018-11-29 14:39:48,3,65.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +24940,LAZYK,8,2019-01-15 11:20:16,2019-02-16 18:47:31,2019-01-28 19:19:15,1,270.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24941,RATTC,3,2021-03-16 21:44:21,2021-03-26 09:23:49,2021-03-24 16:59:29,3,245.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24942,WHITC,1,2020-10-06 20:34:01,2020-10-11 13:40:04,2020-10-22 23:44:51,1,257,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24943,KOENE,2,2014-07-27 17:51:47,2014-08-15 06:16:10,2014-08-06 22:34:23,3,18.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24944,BOLID,5,2016-05-29 22:22:00,2016-05-31 23:07:41,2016-06-01 09:12:36,1,498.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +24945,HANAR,3,2019-03-09 13:50:51,2019-04-02 13:19:41,2019-03-28 12:34:43,2,219.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24946,PRINI,3,2019-12-27 06:25:52,2020-01-07 15:36:54,2019-12-31 18:31:52,2,22.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24947,BONAP,5,2019-05-18 02:32:25,2019-06-11 13:19:33,2019-05-21 08:09:01,3,265.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +24948,TORTU,9,2022-07-14 17:16:44,2022-08-12 08:32:51,2022-08-11 15:47:02,2,329,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +24949,WELLI,4,2017-05-28 04:26:01,2017-06-03 23:31:17,2017-05-28 10:43:32,3,315.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +24950,SPLIR,7,2014-05-25 18:40:44,2014-05-29 06:47:41,2014-06-10 21:32:03,2,216.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24951,MAISD,6,2022-03-08 16:27:31,2022-03-16 01:45:39,2022-04-02 07:04:41,2,98.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24952,QUEEN,3,2012-09-24 08:09:20,2012-10-03 21:00:11,2012-09-24 17:54:26,3,247,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24953,ROMEY,9,2016-11-22 01:10:57,2016-11-26 06:40:12,2016-11-24 05:47:40,3,236,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24954,LEHMS,1,2014-02-09 20:03:07,2014-02-13 12:10:24,2014-02-12 18:12:52,2,115,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24955,NORTS,4,2014-08-29 14:33:19,2014-09-06 09:45:28,2014-09-21 18:56:36,3,226.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24956,QUEDE,7,2015-03-07 05:59:33,2015-04-01 03:23:42,2015-03-26 15:13:43,1,162.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +24957,LINOD,2,2016-12-27 05:44:58,2017-01-20 20:00:05,2016-12-29 11:33:10,2,403.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +24958,THECR,6,2019-07-05 11:46:43,2019-08-16 23:13:52,2019-07-26 01:54:50,2,452.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +24959,WANDK,5,2017-01-08 15:50:06,2017-02-04 07:40:02,2017-01-11 09:24:35,2,44.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +24960,CONSH,2,2013-06-09 15:41:02,2013-07-18 01:30:15,2013-07-02 09:39:21,2,276.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +24961,QUEDE,2,2019-01-16 01:21:40,2019-02-03 01:42:00,2019-01-25 07:35:43,1,204.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +24962,OTTIK,8,2018-11-16 20:53:44,2018-12-26 10:41:59,2018-11-17 20:21:38,2,370.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +24963,MAISD,8,2018-09-11 08:06:01,2018-09-26 13:31:57,2018-09-29 03:31:52,2,26.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +24964,ANATR,4,2019-11-16 02:10:53,2019-12-01 13:10:20,2019-11-19 06:15:07,1,289,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24965,BONAP,5,2020-05-07 08:10:13,2020-05-20 15:06:34,2020-05-09 03:18:27,2,149.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +24966,THEBI,8,2020-08-26 19:27:13,2020-08-30 11:47:08,2020-09-01 23:19:22,2,110.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24967,AROUT,2,2019-02-10 02:41:27,2019-02-20 00:24:38,2019-02-19 07:09:24,1,96.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +24968,WANDK,7,2019-06-10 17:49:27,2019-07-17 22:27:11,2019-06-15 22:47:23,1,215.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +24969,WANDK,6,2018-08-26 11:29:50,2018-09-30 15:48:02,2018-08-27 01:30:53,1,446,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +24970,QUICK,5,2016-08-24 05:47:11,2016-08-30 20:30:51,2016-08-31 22:30:38,2,184.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +24971,REGGC,3,2020-08-16 20:32:52,2020-08-23 06:05:25,2020-08-17 05:17:51,1,189,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +24972,TRADH,5,2021-07-12 05:42:47,2021-07-15 06:21:21,2021-07-15 19:03:00,2,355,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +24973,SEVES,1,2020-05-14 16:12:41,2020-05-30 05:59:14,2020-05-24 07:40:20,2,375.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +24974,GALED,7,2015-11-17 17:22:34,2015-11-23 05:50:58,2015-12-07 10:27:45,2,29,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +24975,BOLID,7,2023-06-26 16:36:12,2023-07-03 14:43:32,2023-06-27 01:12:42,2,203.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +24976,CHOPS,5,2018-10-08 02:38:47,2018-10-20 16:39:53,2018-10-21 14:48:44,3,354.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +24977,QUEDE,7,2012-12-01 00:01:15,2013-01-04 22:28:16,2012-12-30 15:10:02,1,481.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +24978,HILAA,9,2019-08-25 15:43:36,2019-09-13 18:15:04,2019-09-15 21:17:23,2,252.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +24979,CONSH,1,2014-03-11 13:46:57,2014-03-21 16:07:16,2014-03-21 09:25:11,3,188.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +24980,COMMI,3,2018-05-05 16:31:22,2018-05-14 10:11:41,2018-05-09 02:26:46,1,172,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +24981,FRANK,3,2017-03-09 15:18:31,2017-04-06 07:22:54,2017-03-17 08:09:47,3,468.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +24982,PICCO,6,2017-02-06 14:58:15,2017-02-20 04:21:46,2017-02-11 15:06:07,3,288.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +24983,QUICK,9,2016-11-04 03:56:06,2016-11-15 16:17:04,2016-11-07 04:22:06,3,258.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +24984,VAFFE,8,2014-04-12 14:29:53,2014-04-16 10:27:34,2014-04-28 12:31:05,2,428,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +24985,VAFFE,9,2013-07-22 14:56:38,2013-07-31 17:10:15,2013-07-24 04:33:08,1,251.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +24986,WILMK,6,2014-08-22 22:08:52,2014-09-15 11:55:38,2014-08-23 14:20:03,3,437.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +24987,CENTC,6,2018-10-22 04:53:31,2018-11-18 10:33:10,2018-10-29 00:21:48,2,247,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +24988,RICSU,9,2017-01-21 20:23:38,2017-02-18 13:53:47,2017-02-03 13:37:12,1,207,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24989,SIMOB,9,2020-04-02 13:33:38,2020-04-03 23:52:22,2020-04-14 08:49:01,3,195.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +24990,ANATR,9,2023-10-23 11:35:41,2023-11-23 09:17:17,2023-11-03 08:19:07,1,265.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +24991,HANAR,4,2013-11-17 17:40:21,2013-11-28 12:09:07,2013-11-21 06:05:19,3,16,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24992,RICSU,8,2015-12-25 06:22:04,2016-01-12 15:09:12,2016-01-06 10:56:05,2,151.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +24993,SANTG,7,2015-12-18 22:48:20,2016-01-05 04:53:11,2015-12-20 05:09:30,1,322.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +24994,LAMAI,3,2016-03-06 02:03:26,2016-04-22 18:55:46,2016-03-13 01:46:01,1,323.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +24995,HUNGC,3,2013-11-28 20:32:21,2014-01-17 16:27:58,2013-12-15 04:07:15,1,302,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +24996,DUMON,7,2014-10-13 05:57:29,2014-10-28 01:20:52,2014-10-20 07:47:26,2,190.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +24997,RICAR,9,2014-12-10 18:36:32,2015-01-12 04:29:42,2014-12-11 07:03:09,3,257.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +24998,GREAL,6,2021-08-03 03:23:21,2021-08-07 06:27:47,2021-08-04 20:02:32,3,194.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +24999,LONEP,2,2014-01-19 06:07:41,2014-02-12 01:43:41,2014-01-29 13:24:57,1,201.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25000,REGGC,5,2021-04-01 22:11:38,2021-04-24 11:41:32,2021-04-13 13:04:58,3,343,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25001,FOLKO,4,2019-02-18 16:55:11,2019-02-18 20:23:53,2019-02-22 17:37:14,3,79.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25002,BLAUS,7,2021-09-15 14:00:51,2021-11-03 06:53:14,2021-09-19 08:06:38,3,470.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25003,QUEDE,2,2019-02-04 13:37:56,2019-03-10 03:10:06,2019-02-09 23:26:44,1,463,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25004,FOLKO,8,2013-10-17 18:59:40,2013-10-23 23:03:24,2013-10-25 15:53:41,1,247.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25005,GREAL,7,2014-11-04 14:57:36,2014-11-26 01:59:12,2014-11-21 18:34:25,1,359.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25006,RICSU,9,2013-03-04 19:56:56,2013-04-05 21:21:54,2013-03-06 21:32:21,2,143,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25007,BERGS,7,2017-07-19 02:37:14,2017-08-11 08:07:51,2017-07-22 07:46:41,3,346.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25008,QUEEN,2,2019-03-27 17:10:29,2019-04-01 22:00:24,2019-04-08 14:08:54,2,486.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25009,HILAA,7,2021-12-24 03:00:08,2022-01-29 16:24:54,2021-12-24 10:05:15,2,378.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25010,ISLAT,1,2014-07-16 15:42:34,2014-07-20 21:29:26,2014-07-19 09:20:02,3,371.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25011,RICSU,8,2022-10-08 09:30:49,2022-10-20 17:05:26,2022-10-15 11:49:12,2,421.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25012,TOMSP,9,2013-10-17 21:00:08,2013-10-31 14:49:27,2013-11-08 13:13:00,1,218.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25013,SUPRD,2,2020-04-21 03:20:46,2020-05-11 21:38:51,2020-04-23 20:44:23,1,75.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25014,LEHMS,7,2014-05-22 02:40:41,2014-05-24 16:57:49,2014-05-30 04:15:24,1,376.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25015,LAMAI,7,2019-06-17 22:39:08,2019-06-26 19:49:11,2019-06-18 06:06:30,3,401.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25016,RATTC,4,2017-09-28 00:00:26,2017-10-21 15:10:45,2017-09-30 02:55:20,2,344.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25017,AROUT,1,2016-10-07 18:31:08,2016-10-09 05:11:48,2016-10-13 16:28:07,3,124.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25018,LAUGB,2,2013-05-22 14:38:00,2013-06-19 19:37:06,2013-05-23 17:20:34,1,496.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25019,VALON,8,2012-10-21 22:55:06,2012-12-06 16:13:08,2012-10-29 15:25:55,1,353,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25020,VALON,3,2014-06-13 17:35:26,2014-06-27 18:02:58,2014-06-29 02:48:55,2,401.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25021,CACTU,2,2022-12-07 17:11:02,2022-12-20 04:55:43,2022-12-14 08:16:56,3,72,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25022,SANTG,2,2021-05-02 05:23:34,2021-05-20 04:01:34,2021-05-03 08:38:30,2,491.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25023,EASTC,3,2021-03-13 21:08:06,2021-04-16 22:18:32,2021-03-14 08:26:17,3,205.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25024,WILMK,3,2017-12-15 11:58:13,2017-12-29 17:40:03,2017-12-21 00:59:08,1,354.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25025,FRANS,9,2013-08-06 01:10:27,2013-09-08 06:54:23,2013-08-24 01:40:55,3,137.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25026,SANTG,1,2015-10-26 17:43:29,2015-11-17 14:53:16,2015-10-27 06:09:40,2,210.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25027,WHITC,5,2015-03-26 09:01:58,2015-04-18 14:41:35,2015-03-28 07:06:27,3,93.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25028,LACOR,5,2014-08-24 01:30:41,2014-09-25 05:24:28,2014-08-24 14:12:38,3,475.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25029,PARIS,5,2012-12-17 03:21:54,2013-01-21 23:14:26,2013-01-04 23:26:32,3,147.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25030,CHOPS,3,2021-11-04 02:34:12,2021-11-21 16:09:01,2021-11-04 08:46:33,3,503.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25031,LEHMS,3,2012-11-20 22:33:26,2013-01-13 02:27:17,2012-11-24 02:57:30,2,319.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25032,COMMI,5,2018-06-06 18:59:41,2018-06-25 13:45:53,2018-06-14 04:23:52,3,431,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25033,SIMOB,3,2012-09-15 19:59:29,2012-10-05 13:29:52,2012-09-16 17:28:31,3,88,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25034,GROSR,2,2012-08-03 21:09:18,2012-08-07 14:28:51,2012-08-12 06:24:52,1,126.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25035,HUNGO,5,2013-06-09 03:27:04,2013-07-15 17:50:28,2013-06-12 16:34:59,2,426.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25036,SEVES,6,2016-10-22 06:15:59,2016-12-05 13:24:15,2016-10-27 15:07:38,2,296.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25037,FRANR,8,2019-06-12 08:32:38,2019-06-20 22:10:53,2019-06-26 13:08:56,3,43,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25038,LAUGB,8,2015-03-15 20:01:38,2015-03-23 21:15:53,2015-03-20 07:37:04,3,22.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25039,WOLZA,4,2015-05-07 00:52:47,2015-06-02 10:43:42,2015-05-18 05:36:53,2,424.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25040,DRACD,8,2014-09-28 14:14:34,2014-10-11 15:38:06,2014-10-06 22:59:40,3,198,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25041,BLONP,7,2018-12-25 09:02:11,2019-01-25 17:25:51,2018-12-31 01:00:17,1,198,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25042,BOTTM,3,2023-03-20 15:34:54,2023-03-20 18:21:08,2023-03-21 05:57:38,3,115,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25043,FRANK,8,2018-07-21 21:02:02,2018-08-05 01:32:45,2018-07-28 06:17:16,2,507.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25044,WHITC,9,2017-01-25 00:05:08,2017-02-25 23:58:34,2017-02-10 18:02:47,3,237,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25045,DRACD,8,2014-09-30 03:41:48,2014-10-22 10:30:33,2014-09-30 21:51:24,3,209.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25046,SEVES,5,2016-11-23 08:49:56,2016-12-16 06:45:15,2016-12-04 03:33:24,2,53.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25047,WELLI,4,2021-12-04 21:15:46,2021-12-31 01:43:06,2021-12-23 09:38:38,2,378.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25048,ALFKI,1,2015-11-19 14:17:19,2015-12-22 06:51:50,2015-12-04 19:33:10,3,396.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25049,WILMK,4,2015-01-20 05:20:53,2015-01-23 01:01:08,2015-01-21 12:29:43,3,224.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25050,LILAS,4,2016-06-09 14:51:21,2016-06-29 14:55:58,2016-06-30 16:26:37,2,430,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25051,FRANS,2,2018-12-18 13:11:47,2019-01-10 19:12:09,2018-12-24 11:47:41,3,104.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25052,ANATR,1,2018-07-09 03:56:47,2018-07-11 03:33:15,2018-07-13 13:25:59,3,419,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25053,BONAP,4,2017-03-01 10:41:33,2017-03-10 14:48:46,2017-03-01 18:21:21,1,291.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25054,REGGC,7,2023-07-14 03:47:16,2023-07-17 22:56:12,2023-07-20 22:04:24,1,473.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25055,FURIB,5,2015-02-09 16:19:05,2015-02-15 09:09:30,2015-02-12 19:09:07,2,459,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25056,PRINI,8,2020-04-23 22:34:37,2020-06-17 19:03:10,2020-05-03 17:24:37,1,474,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25057,PICCO,5,2018-06-06 04:09:10,2018-06-21 13:11:48,2018-06-06 15:36:06,1,504,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25058,SANTG,3,2015-05-21 00:21:11,2015-06-03 07:25:32,2015-05-30 14:00:58,1,247.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25059,ALFKI,1,2017-12-19 01:14:30,2017-12-22 19:29:28,2017-12-24 04:55:20,2,272.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25060,GOURL,3,2015-09-19 15:19:22,2015-11-01 17:44:03,2015-09-21 03:33:39,1,493.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25061,LETSS,6,2022-09-01 09:04:52,2022-10-08 15:13:40,2022-09-06 12:26:04,3,270.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25062,FRANS,1,2013-04-24 05:31:36,2013-04-26 14:52:25,2013-04-27 11:54:40,3,291.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25063,LEHMS,2,2019-08-14 08:19:53,2019-08-16 06:12:15,2019-08-22 02:54:44,1,415.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25064,ANATR,9,2020-02-20 22:52:27,2020-02-26 12:48:56,2020-03-09 17:53:15,3,416.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25065,FAMIA,1,2021-07-17 16:04:52,2021-07-20 14:04:36,2021-07-18 13:36:38,2,390,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25066,LAUGB,8,2014-12-16 20:50:46,2015-01-23 23:42:21,2014-12-25 14:25:32,2,247,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25067,QUICK,8,2018-02-26 03:29:01,2018-03-11 19:23:20,2018-03-07 21:18:44,2,341.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25068,CENTC,6,2023-07-18 03:23:30,2023-08-19 19:47:52,2023-07-21 11:57:23,2,113.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25069,THECR,5,2021-06-15 08:14:53,2021-07-28 22:15:28,2021-06-21 18:02:07,1,266.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25070,BOLID,7,2016-01-30 16:26:04,2016-02-07 03:32:11,2016-02-08 19:04:41,3,254.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25071,SPLIR,4,2020-09-27 18:59:53,2020-10-03 19:23:44,2020-10-07 08:56:52,3,66.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25072,LETSS,7,2022-04-05 14:21:29,2022-05-09 01:46:45,2022-04-11 11:27:18,3,17.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25073,CACTU,4,2014-09-19 03:03:07,2014-10-14 05:14:50,2014-10-06 06:37:05,1,178,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25074,FRANR,6,2020-06-09 21:58:30,2020-06-20 18:28:54,2020-06-24 22:46:24,1,276.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25075,RICSU,2,2013-08-22 15:11:57,2013-08-31 17:38:31,2013-08-30 13:27:47,3,31.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25076,ALFKI,7,2020-09-23 17:46:14,2020-10-18 02:51:16,2020-09-27 17:13:29,2,296.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25077,VALON,9,2016-09-03 23:37:33,2016-09-24 08:43:44,2016-09-11 04:42:34,1,308.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25078,CACTU,9,2018-08-09 19:51:57,2018-08-15 16:20:55,2018-08-11 17:55:22,3,334.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25079,HANAR,8,2021-08-15 21:07:27,2021-08-22 01:01:53,2021-09-01 11:12:56,2,433.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25080,FRANS,3,2017-01-26 07:46:36,2017-02-10 18:17:09,2017-02-02 13:47:10,3,80.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25081,RANCH,1,2016-01-16 18:59:00,2016-01-23 14:22:36,2016-01-22 01:54:36,3,466.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25082,LAMAI,3,2019-01-14 18:00:17,2019-01-21 23:31:33,2019-01-15 17:26:50,1,36.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25083,ERNSH,7,2015-10-31 12:20:58,2015-11-07 06:47:09,2015-11-02 00:19:20,2,363,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25084,LAMAI,8,2021-03-18 12:08:56,2021-04-13 07:52:20,2021-03-31 07:04:55,2,32,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25085,LAZYK,8,2019-03-11 21:10:58,2019-03-23 17:33:31,2019-03-21 03:13:45,2,40.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25086,GODOS,9,2014-05-19 19:02:09,2014-06-01 19:13:11,2014-05-23 00:35:46,2,67,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25087,HILAA,3,2012-08-31 03:32:52,2012-10-15 08:24:02,2012-09-10 20:44:51,2,506,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25088,TORTU,6,2014-07-31 03:34:58,2014-08-26 21:32:53,2014-08-06 16:11:16,2,80.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25089,LAUGB,3,2022-07-07 16:53:53,2022-07-09 02:13:34,2022-07-08 03:00:56,2,166.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25090,LINOD,9,2019-02-15 08:53:44,2019-03-06 01:02:24,2019-03-01 14:03:12,2,60.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25091,RATTC,6,2021-03-12 13:40:47,2021-04-13 12:25:06,2021-03-19 16:16:03,3,420.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25092,GODOS,1,2023-07-30 09:16:48,2023-09-06 15:54:39,2023-08-02 07:25:24,2,410.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25093,OTTIK,1,2014-04-29 04:02:32,2014-05-09 16:32:37,2014-05-01 00:19:03,3,66.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25094,BSBEV,3,2014-04-24 19:31:35,2014-05-07 14:28:30,2014-04-26 17:29:58,2,159.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25095,CONSH,7,2019-07-21 06:08:37,2019-08-07 04:37:47,2019-07-23 22:02:21,2,395.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25096,QUEEN,5,2013-03-19 10:17:47,2013-04-23 02:40:57,2013-03-22 08:02:33,1,255.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25097,Val2 ,2,2014-06-25 04:50:41,2014-07-19 14:19:50,2014-06-25 05:44:21,2,361.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25098,WANDK,2,2022-07-31 07:36:04,2022-09-02 12:47:22,2022-08-03 13:39:22,3,184.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25099,TORTU,4,2022-04-05 23:20:18,2022-04-21 06:10:34,2022-04-09 04:48:55,3,269,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25100,RATTC,8,2018-07-01 12:27:31,2018-07-01 18:01:48,2018-07-03 07:04:50,2,505.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25101,SEVES,5,2013-11-05 19:44:14,2013-11-19 14:53:19,2013-11-06 20:45:02,1,325.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25102,WOLZA,4,2018-08-29 13:05:51,2018-09-05 20:46:21,2018-08-31 14:44:41,3,468.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25103,RICAR,9,2020-11-10 21:51:09,2020-11-21 08:57:06,2020-11-23 20:56:26,3,127.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25104,GREAL,8,2019-11-07 18:33:38,2019-12-23 12:40:18,2019-11-25 01:39:48,1,305.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25105,SEVES,8,2018-12-12 17:24:07,2018-12-25 11:15:33,2018-12-24 09:19:47,1,243,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25106,GALED,9,2018-01-07 22:40:02,2018-01-30 15:04:46,2018-01-11 15:55:43,1,52.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25107,HILAA,6,2014-07-04 20:09:57,2014-08-01 05:58:12,2014-07-07 02:40:26,2,382.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25108,WANDK,9,2015-11-02 16:56:01,2015-11-23 04:45:58,2015-11-22 20:08:20,2,476.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25109,MORGK,7,2012-12-01 07:36:52,2012-12-12 01:53:03,2012-12-01 14:42:14,2,412.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25110,PERIC,4,2015-09-18 21:18:04,2015-10-07 14:16:08,2015-09-27 12:54:47,3,280.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25111,QUEDE,6,2012-07-16 00:26:10,2012-08-05 00:06:20,2012-07-24 07:12:13,1,227.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25112,MAISD,4,2013-09-17 10:41:16,2013-10-15 00:55:21,2013-09-28 09:47:01,1,401.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25113,SEVES,5,2012-09-28 03:45:41,2012-09-30 14:29:02,2012-09-29 12:04:28,3,285.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25114,TRADH,5,2018-03-26 07:35:31,2018-03-31 12:56:08,2018-03-26 11:42:16,2,230.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25115,EASTC,4,2021-07-26 09:47:30,2021-07-30 15:03:56,2021-08-10 14:50:51,1,170,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25116,FOLKO,7,2019-03-05 02:06:44,2019-03-07 12:37:10,2019-03-09 05:23:30,3,334,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25117,RICSU,8,2015-11-22 03:39:29,2015-12-31 08:31:45,2015-11-26 01:49:51,1,73.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25118,LAMAI,5,2020-11-13 20:09:33,2020-11-24 15:13:11,2020-11-15 16:39:59,2,327.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25119,LILAS,7,2019-09-21 20:44:16,2019-09-29 00:26:23,2019-09-25 02:32:14,3,26.75,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25120,ALFKI,4,2019-05-23 06:54:58,2019-06-07 00:37:38,2019-06-02 06:07:43,1,367,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25121,SAVEA,3,2015-11-23 12:53:10,2015-12-10 02:22:09,2015-11-28 19:00:58,3,175.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25122,LACOR,5,2018-11-07 23:06:29,2018-11-10 20:35:51,2018-11-22 15:16:03,1,488,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25123,ALFKI,5,2017-10-26 15:05:06,2017-11-14 20:34:33,2017-11-04 17:00:18,1,251.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25124,BOTTM,8,2023-03-05 23:16:16,2023-03-07 06:57:15,2023-03-25 03:55:12,1,349,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25125,LETSS,1,2021-08-11 14:49:52,2021-09-12 05:22:15,2021-08-13 17:57:36,2,385.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25126,TRADH,4,2013-05-28 12:48:25,2013-06-09 01:00:49,2013-06-07 22:51:35,3,95,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25127,VALON,6,2022-10-12 15:59:48,2022-11-26 01:54:22,2022-11-05 11:05:10,3,483.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25128,ISLAT,3,2012-09-17 10:03:02,2012-10-14 23:01:39,2012-09-28 10:40:32,2,65.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25129,KOENE,5,2017-05-30 19:15:46,2017-06-13 22:05:53,2017-06-03 22:58:49,2,251,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25130,CACTU,2,2014-11-07 07:39:37,2014-12-18 02:11:44,2014-11-07 16:48:06,2,503.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25131,TORTU,6,2019-05-15 16:37:24,2019-06-19 17:30:02,2019-05-18 06:46:35,3,112.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25132,ROMEY,5,2022-05-05 07:09:47,2022-05-21 11:52:56,2022-05-21 00:19:41,1,479.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25133,SUPRD,3,2019-07-10 01:28:05,2019-07-17 23:56:13,2019-07-10 19:00:09,3,21.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25134,DRACD,8,2016-02-23 15:46:30,2016-03-04 13:32:20,2016-03-18 16:58:19,3,232.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25135,NORTS,4,2015-07-21 13:07:41,2015-08-27 16:46:06,2015-07-29 06:54:18,2,122.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25136,GODOS,9,2023-04-02 07:41:38,2023-05-09 16:46:51,2023-04-21 09:45:23,1,384.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25137,AROUT,1,2016-07-02 00:42:35,2016-08-11 13:01:51,2016-07-13 21:33:47,3,317.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25138,CENTC,4,2019-06-08 18:21:40,2019-06-18 05:35:25,2019-07-03 19:58:41,1,205,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25139,BOLID,7,2019-07-21 12:05:19,2019-08-10 03:42:26,2019-07-23 02:38:16,3,59.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25140,GOURL,4,2017-02-19 14:45:55,2017-03-19 17:39:52,2017-03-07 13:14:14,1,175,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25141,VAFFE,6,2014-02-20 19:29:18,2014-03-08 11:40:39,2014-02-26 03:55:12,2,19.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25142,ANATR,6,2013-02-27 01:36:10,2013-03-18 17:21:44,2013-03-06 20:46:05,2,515.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25143,ISLAT,4,2018-04-20 07:51:48,2018-04-30 00:25:59,2018-04-23 02:23:16,3,296.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25144,BLONP,7,2019-07-23 19:37:50,2019-08-09 02:53:15,2019-08-07 06:34:35,1,290.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25145,RATTC,8,2013-08-08 17:33:00,2013-08-12 12:36:14,2013-08-17 08:02:55,3,197,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25146,VAFFE,9,2016-03-14 02:20:11,2016-03-23 15:40:39,2016-03-14 02:23:50,1,529.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25147,ISLAT,7,2022-03-01 05:59:54,2022-03-29 04:30:45,2022-03-01 07:26:11,2,99.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25148,LONEP,8,2015-04-17 19:36:50,2015-05-11 06:44:06,2015-05-01 01:42:25,2,279.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25149,CENTC,6,2022-10-10 14:46:14,2022-11-15 20:26:11,2022-10-15 19:46:12,1,171,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25150,RATTC,7,2022-04-18 17:31:32,2022-06-09 08:35:19,2022-05-05 15:29:01,2,33,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25151,FOLKO,1,2022-10-15 15:27:25,2022-10-18 02:14:18,2022-10-21 18:05:53,2,246.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25152,FURIB,3,2017-04-30 13:21:32,2017-05-21 09:19:47,2017-05-27 10:43:27,2,468.75,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25153,MAGAA,7,2021-08-16 03:43:22,2021-08-29 09:02:42,2021-08-16 12:58:46,3,308.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25154,BLAUS,9,2013-07-01 01:49:35,2013-07-11 21:11:39,2013-07-01 20:19:24,2,389,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25155,WANDK,9,2014-01-10 03:55:47,2014-01-21 19:19:16,2014-01-20 11:10:47,2,380.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25156,ALFKI,7,2021-02-13 15:58:25,2021-02-20 03:55:24,2021-02-26 10:54:40,1,195.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25157,LAUGB,9,2015-03-21 06:35:49,2015-03-26 23:53:26,2015-03-23 02:48:26,1,37.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25158,LAZYK,6,2018-08-21 12:56:24,2018-09-27 20:46:22,2018-09-10 13:27:49,3,289.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25159,SPLIR,1,2019-02-23 03:06:50,2019-03-15 17:09:02,2019-02-28 01:33:25,3,193,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25160,FOLKO,3,2013-04-22 18:49:07,2013-05-03 08:44:51,2013-04-26 15:11:18,1,298.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25161,CHOPS,7,2018-04-13 13:12:47,2018-06-05 05:12:51,2018-05-08 00:20:16,1,442.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25162,BOLID,8,2020-04-03 08:01:03,2020-04-24 02:40:27,2020-04-06 00:58:41,3,284.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25163,GREAL,9,2022-09-20 20:15:58,2022-10-16 03:25:01,2022-10-02 05:54:10,2,383,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25164,HUNGC,5,2015-11-18 16:23:25,2015-11-19 20:56:12,2015-11-18 19:28:30,2,491.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25165,Val2 ,5,2018-09-06 04:53:24,2018-09-13 21:45:07,2018-09-06 09:51:28,2,336.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25166,HUNGO,6,2015-10-20 05:10:55,2015-11-03 05:53:41,2015-10-26 10:33:17,1,424.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25167,RICAR,9,2015-05-05 23:57:10,2015-05-07 21:05:44,2015-05-19 10:42:19,3,70,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25168,REGGC,4,2019-01-23 00:36:32,2019-02-03 01:10:04,2019-01-29 14:01:45,2,326,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25169,FRANR,2,2021-01-03 03:06:54,2021-02-03 00:03:19,2021-01-18 19:30:10,3,317,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25170,BLONP,9,2022-07-06 20:42:43,2022-07-24 22:54:16,2022-07-16 09:14:52,3,478.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25171,HUNGO,3,2013-01-26 06:48:55,2013-01-30 11:20:05,2013-02-08 21:38:56,3,83.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25172,SPECD,8,2018-05-10 07:54:07,2018-05-21 18:05:57,2018-05-13 02:18:06,2,28.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25173,PARIS,3,2022-08-04 20:43:02,2022-09-20 21:03:38,2022-08-10 20:31:43,2,393.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25174,BLONP,6,2015-11-30 07:33:13,2015-12-23 18:45:44,2015-12-13 18:16:42,1,395.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25175,BSBEV,5,2015-04-29 21:42:30,2015-05-25 20:12:46,2015-05-17 17:46:04,2,168.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25176,THECR,8,2022-06-02 09:27:03,2022-06-16 11:37:35,2022-06-07 05:22:48,2,477,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25177,TORTU,1,2012-07-16 19:32:03,2012-08-01 17:24:31,2012-07-28 00:02:03,3,46.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25178,RICSU,5,2015-06-28 03:40:25,2015-07-08 19:40:55,2015-07-05 13:51:49,2,311.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25179,HILAA,4,2022-03-11 18:03:28,2022-03-21 06:57:55,2022-03-13 10:12:29,3,188.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25180,WANDK,6,2022-10-16 21:21:19,2022-10-26 10:37:44,2022-10-26 19:15:38,1,428.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25181,PERIC,2,2016-02-12 07:02:19,2016-02-18 11:14:12,2016-02-14 14:01:12,1,305.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25182,DUMON,7,2022-12-08 20:45:13,2023-01-16 15:29:54,2022-12-15 03:57:43,3,460,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25183,FISSA,2,2015-12-26 07:20:08,2016-01-20 04:10:21,2016-01-04 15:53:35,1,438,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25184,LAUGB,1,2020-07-06 03:36:27,2020-08-12 18:39:24,2020-07-08 05:24:51,3,62,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25185,WOLZA,9,2016-12-06 11:12:04,2016-12-07 13:47:59,2016-12-16 12:44:49,3,466.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25186,CENTC,7,2015-07-12 05:16:59,2015-08-02 06:42:29,2015-07-12 19:54:24,1,408,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25187,WELLI,3,2015-06-28 02:11:51,2015-07-09 05:39:25,2015-06-29 22:22:20,3,458.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25188,DUMON,7,2022-03-27 11:19:10,2022-04-21 09:31:45,2022-04-13 05:09:52,2,308,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25189,WILMK,3,2020-09-03 00:43:13,2020-09-09 22:17:57,2020-09-18 16:26:20,1,260.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25190,FOLIG,7,2020-09-24 20:36:21,2020-10-10 05:09:31,2020-09-26 23:12:46,3,214.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25191,QUEDE,7,2013-10-09 01:19:26,2013-10-11 12:14:34,2013-10-29 17:22:22,1,539.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25192,SUPRD,2,2016-02-14 16:31:50,2016-03-21 19:46:50,2016-02-17 21:12:57,2,89.25,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25193,KOENE,5,2018-12-29 12:42:50,2019-01-09 20:17:25,2019-01-04 04:48:12,2,282,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25194,FOLKO,2,2018-06-09 11:57:57,2018-07-04 07:23:09,2018-06-21 10:00:00,2,320.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25195,COMMI,5,2022-09-09 04:02:52,2022-09-09 07:25:28,2022-09-13 18:51:38,3,467.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25196,MAGAA,4,2021-02-26 14:53:53,2021-03-22 11:33:43,2021-02-27 16:08:57,2,296,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25197,OLDWO,7,2014-01-31 10:13:50,2014-02-26 07:49:26,2014-02-18 03:15:05,3,278.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25198,PARIS,5,2016-02-06 10:39:48,2016-02-27 20:16:54,2016-02-06 19:13:28,1,418.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25199,WILMK,1,2021-05-12 15:28:21,2021-06-03 03:38:04,2021-05-18 21:59:03,3,350.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25200,SEVES,4,2016-11-09 08:11:34,2016-11-22 20:18:30,2016-11-11 16:34:53,1,379.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25201,ANATR,8,2015-02-14 03:24:33,2015-02-22 07:24:04,2015-03-01 05:38:06,3,93.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25202,WELLI,6,2018-10-11 09:26:05,2018-10-17 18:01:14,2018-10-13 15:17:34,1,213.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25203,CACTU,1,2023-02-23 18:56:19,2023-03-07 16:32:05,2023-03-16 04:26:06,2,151.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25204,LAUGB,5,2021-05-22 13:47:58,2021-06-19 18:04:27,2021-06-06 20:17:44,2,91,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25205,HILAA,7,2018-07-13 20:07:58,2018-08-09 02:42:50,2018-07-14 14:12:35,2,449.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25206,ANTON,6,2021-03-21 11:17:18,2021-04-15 14:17:42,2021-03-22 00:12:00,1,304.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25207,LETSS,8,2020-02-09 07:22:13,2020-02-15 00:27:08,2020-02-11 19:02:51,3,322.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25208,NORTS,6,2016-11-26 01:44:03,2017-01-11 14:53:51,2016-12-09 05:14:49,1,401.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25209,ERNSH,6,2022-03-21 04:06:15,2022-04-16 13:50:05,2022-04-13 13:28:56,1,141.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25210,ANATR,6,2018-10-13 21:51:31,2018-10-30 07:53:22,2018-10-22 20:08:24,3,404.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25211,LONEP,2,2015-04-18 13:30:19,2015-04-23 03:08:26,2015-04-21 20:39:56,2,479.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25212,ROMEY,7,2020-01-15 14:00:43,2020-02-01 09:26:02,2020-01-24 21:27:33,2,296,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25213,SEVES,1,2021-10-05 06:29:16,2021-10-28 19:36:05,2021-10-09 05:16:46,1,435.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25214,LAUGB,3,2015-03-27 13:21:19,2015-03-31 20:56:09,2015-04-08 09:56:44,2,404.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25215,BLONP,1,2015-09-15 12:40:24,2015-09-16 20:19:01,2015-09-24 06:57:08,3,193,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25216,LAMAI,5,2023-03-15 06:43:00,2023-03-26 21:58:14,2023-03-20 17:50:23,3,434.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25217,QUICK,2,2014-10-20 08:22:59,2014-12-03 08:45:19,2014-10-29 07:51:00,3,462,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25218,VAFFE,7,2022-04-17 10:55:35,2022-05-15 16:05:04,2022-04-17 13:19:29,1,84.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25219,KOENE,2,2013-05-27 18:42:57,2013-06-30 13:25:07,2013-06-09 20:54:20,3,324.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25220,LONEP,9,2017-06-25 11:22:16,2017-07-15 22:24:57,2017-06-28 08:38:20,2,160.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25221,ROMEY,7,2015-10-18 23:17:48,2015-11-09 18:30:55,2015-10-19 18:54:39,2,331,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25222,BSBEV,2,2020-08-26 01:42:54,2020-10-10 13:07:02,2020-09-01 05:44:28,3,222.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25223,FRANS,5,2018-04-24 01:53:23,2018-05-06 08:13:18,2018-04-30 03:33:30,2,444.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25224,HANAR,1,2020-02-08 12:49:20,2020-03-03 20:46:48,2020-02-18 12:07:42,3,23.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25225,LETSS,1,2017-12-25 06:23:15,2018-01-30 16:05:46,2018-01-01 15:12:49,2,374.25,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25226,TOMSP,9,2014-05-26 14:48:59,2014-06-06 13:45:24,2014-05-31 18:45:49,1,27.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25227,WARTH,5,2023-05-01 02:43:00,2023-05-16 02:36:01,2023-05-04 08:52:42,1,344.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25228,SPECD,5,2022-11-03 03:36:47,2022-11-05 06:15:32,2022-11-04 04:04:38,2,398.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25229,GODOS,2,2022-05-17 05:44:27,2022-06-16 17:58:36,2022-05-25 00:29:02,1,415.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25230,ANTON,8,2018-02-09 23:18:00,2018-02-10 13:51:59,2018-02-18 04:34:41,3,40.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25231,RANCH,3,2022-03-26 13:42:01,2022-04-16 11:45:17,2022-04-05 09:54:59,2,352.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25232,NORTS,3,2015-08-15 04:09:57,2015-08-26 14:25:30,2015-08-17 11:13:29,1,289.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25233,GALED,5,2018-01-08 15:17:44,2018-01-22 13:07:29,2018-01-16 00:39:13,1,275.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25234,LACOR,7,2017-07-27 20:55:26,2017-08-28 20:38:36,2017-07-29 02:15:19,2,100.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25235,FOLIG,3,2019-05-02 16:22:01,2019-06-12 08:59:50,2019-05-08 08:29:36,3,148.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25236,MORGK,6,2016-01-13 22:18:09,2016-01-25 20:33:19,2016-01-15 11:33:25,2,223,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25237,LINOD,5,2019-02-01 02:14:06,2019-02-12 09:26:52,2019-02-24 11:32:23,3,296.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25238,HUNGO,8,2016-05-19 07:41:20,2016-06-02 06:12:18,2016-05-22 17:55:20,3,443,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25239,WOLZA,8,2021-01-17 18:38:01,2021-02-07 09:02:57,2021-01-22 15:35:07,3,61.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25240,CACTU,1,2015-09-06 10:07:23,2015-10-12 09:21:43,2015-09-10 23:50:26,1,211,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25241,MEREP,3,2013-11-06 11:26:09,2013-11-15 12:14:19,2013-11-06 15:46:15,3,213.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25242,LAZYK,2,2021-07-21 02:53:38,2021-08-04 00:25:07,2021-07-26 00:49:35,3,173.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25243,WILMK,9,2023-06-27 03:08:14,2023-08-14 09:29:02,2023-07-19 20:36:13,2,248.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25244,RICAR,7,2021-09-20 16:11:12,2021-10-01 10:40:52,2021-10-03 05:00:57,1,294.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25245,Val2 ,6,2016-09-20 13:30:44,2016-10-14 07:05:57,2016-10-04 14:15:09,1,153.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25246,PERIC,3,2015-02-09 16:32:39,2015-02-27 15:37:22,2015-02-11 03:30:54,1,466,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25247,FRANS,8,2015-07-25 03:15:49,2015-08-08 04:09:05,2015-07-26 22:24:22,2,188,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25248,GROSR,1,2016-07-05 06:10:21,2016-07-13 19:13:11,2016-07-05 10:34:35,1,359.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25249,LILAS,7,2020-06-01 01:44:52,2020-06-18 08:23:40,2020-06-10 19:20:13,2,352.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25250,HILAA,4,2015-11-07 03:30:02,2015-11-23 07:36:15,2015-11-26 08:00:13,2,287.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25251,ALFKI,9,2016-07-23 21:58:12,2016-07-26 19:38:16,2016-07-29 03:02:05,1,250.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25252,LACOR,7,2012-12-23 09:00:59,2012-12-25 10:34:00,2012-12-30 06:23:43,1,348.25,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25253,FAMIA,4,2021-09-29 00:34:25,2021-10-25 16:16:19,2021-10-02 07:32:24,2,320,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25254,LETSS,1,2017-11-01 19:42:55,2017-11-11 16:08:01,2017-11-02 03:36:12,2,471,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25255,DUMON,4,2017-01-22 12:18:16,2017-02-10 12:56:55,2017-01-25 00:24:31,1,80.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25256,FOLIG,3,2020-10-01 02:21:43,2020-10-19 14:19:38,2020-10-02 09:19:16,2,50,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25257,VINET,9,2015-10-01 04:33:05,2015-10-16 15:52:26,2015-10-04 18:48:10,3,358,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25258,SAVEA,3,2017-01-21 20:42:39,2017-02-14 11:39:01,2017-02-08 09:29:07,1,170.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25259,OCEAN,8,2015-02-12 17:58:03,2015-03-24 12:11:30,2015-02-17 13:44:26,1,386.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25260,Val2 ,6,2014-08-13 05:39:19,2014-08-18 08:20:23,2014-08-23 02:39:31,3,79.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25261,FISSA,5,2012-09-04 07:33:19,2012-10-15 18:43:33,2012-09-12 16:09:32,2,64.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25262,CHOPS,4,2022-07-11 08:04:58,2022-07-23 03:25:40,2022-07-14 16:01:52,3,241,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25263,TORTU,2,2020-04-14 13:30:47,2020-04-19 23:12:18,2020-04-15 07:59:55,1,38,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25264,VAFFE,2,2023-08-12 09:03:50,2023-08-20 17:04:08,2023-08-17 13:02:46,3,206.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25265,WOLZA,1,2018-04-03 03:49:56,2018-05-02 10:27:48,2018-04-04 00:33:13,1,255,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25266,LINOD,8,2018-11-07 03:59:33,2018-12-21 19:05:05,2018-11-20 02:21:43,3,32.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25267,SEVES,3,2016-02-17 16:06:52,2016-03-05 19:39:13,2016-02-17 19:35:19,2,441,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25268,WARTH,7,2022-04-22 00:18:32,2022-05-01 03:09:20,2022-05-03 04:42:58,2,191.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25269,MAISD,1,2015-11-25 10:17:50,2015-12-24 06:12:07,2015-11-29 09:42:23,1,302,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25270,GROSR,1,2015-03-28 18:00:49,2015-04-30 03:49:42,2015-03-29 20:07:48,2,166.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25271,PERIC,9,2015-07-03 12:29:14,2015-07-20 18:26:49,2015-07-30 00:07:29,2,25.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25272,HUNGO,4,2019-04-11 06:00:11,2019-05-25 16:38:14,2019-04-15 15:35:27,3,298.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25273,RICSU,7,2014-07-29 06:07:34,2014-08-02 23:39:33,2014-08-24 21:32:43,1,12.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25274,THEBI,7,2013-01-26 07:25:55,2013-02-03 06:56:50,2013-02-06 23:55:11,1,463.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25275,HANAR,6,2020-05-22 13:38:50,2020-05-29 13:18:49,2020-06-08 13:37:13,1,103.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25276,SIMOB,3,2019-06-16 20:29:37,2019-06-21 10:51:41,2019-07-04 12:31:36,1,436.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25277,LAZYK,8,2019-06-14 08:59:13,2019-07-13 01:08:12,2019-07-01 16:07:25,3,121.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25278,ERNSH,6,2018-04-26 13:46:43,2018-05-15 04:55:35,2018-04-30 06:13:25,2,323.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25279,REGGC,3,2017-04-25 10:06:46,2017-05-01 01:28:54,2017-04-27 14:41:45,2,106.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25280,OLDWO,1,2016-11-25 21:10:37,2016-12-10 00:48:25,2016-11-30 22:19:03,2,215,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25281,MAGAA,8,2014-10-29 13:59:38,2014-11-05 11:15:02,2014-11-18 15:39:40,2,209,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25282,COMMI,3,2016-03-02 07:38:56,2016-03-16 07:26:10,2016-03-08 13:51:01,2,391.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25283,LAUGB,1,2022-09-29 12:05:05,2022-10-20 10:31:12,2022-10-06 06:44:27,2,18.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25284,SPLIR,9,2014-11-01 14:09:12,2014-11-21 09:50:38,2014-11-08 09:06:37,2,203.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25285,PERIC,2,2020-05-26 23:18:03,2020-06-02 05:40:43,2020-06-05 22:42:51,2,43,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25286,DUMON,9,2020-04-23 23:24:18,2020-05-24 09:13:34,2020-05-08 05:01:25,2,122,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25287,HILAA,9,2015-11-13 01:31:28,2015-11-14 12:21:24,2015-11-15 14:37:48,2,227.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25288,GROSR,1,2018-05-31 21:41:34,2018-06-11 11:59:19,2018-06-05 21:52:05,2,370,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25289,MAGAA,3,2014-04-26 21:19:55,2014-05-08 00:16:00,2014-04-27 05:31:13,3,426.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25290,BOTTM,4,2018-10-09 14:00:04,2018-11-15 10:54:26,2018-10-16 13:22:44,3,366.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25291,CENTC,5,2022-10-16 08:03:27,2022-11-06 13:18:48,2022-10-18 00:18:49,3,451.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25292,HILAA,1,2020-12-08 22:22:47,2020-12-18 18:21:02,2020-12-09 10:13:52,3,115.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25293,BOTTM,7,2016-03-02 05:40:58,2016-03-16 00:58:12,2016-03-08 14:53:55,3,29.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25294,ISLAT,1,2019-11-30 08:04:23,2019-12-12 11:58:09,2019-12-03 04:50:18,3,294,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25295,OLDWO,7,2022-11-03 15:08:15,2022-12-07 04:15:28,2022-11-04 06:32:52,3,469.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25296,BONAP,3,2017-12-12 01:49:42,2018-01-11 23:54:57,2017-12-24 13:25:57,3,328.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25297,GALED,6,2016-10-01 17:40:57,2016-10-11 13:28:16,2016-10-06 12:47:46,3,227.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25298,Val2 ,5,2021-05-26 11:37:43,2021-05-27 12:55:33,2021-06-03 17:02:47,3,447.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25299,TOMSP,3,2014-05-13 12:27:10,2014-05-29 02:33:14,2014-05-13 15:50:09,1,146.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25300,FRANR,8,2022-08-13 16:37:59,2022-08-14 14:09:41,2022-08-18 04:33:09,3,45.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25301,ROMEY,6,2019-02-14 10:25:52,2019-02-22 09:52:19,2019-02-18 16:01:44,3,138.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25302,PICCO,8,2015-02-09 05:21:25,2015-02-23 06:40:14,2015-02-09 19:54:38,1,412,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25303,DUMON,4,2018-05-27 01:52:08,2018-06-15 20:00:56,2018-06-05 00:01:08,2,62.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25304,GROSR,8,2022-05-10 10:02:25,2022-05-14 10:12:46,2022-05-12 23:03:41,1,435,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25305,FOLKO,8,2013-12-26 18:44:27,2014-01-16 11:24:39,2014-01-05 03:18:24,2,122.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25306,TRADH,4,2017-09-12 03:10:54,2017-09-15 14:31:35,2017-09-14 01:28:50,3,42.25,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25307,HUNGC,2,2018-12-16 21:06:32,2019-01-09 11:43:06,2018-12-26 18:17:13,1,383.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25308,OLDWO,7,2019-05-13 21:29:35,2019-06-05 13:25:50,2019-05-13 23:45:35,1,403.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25309,FOLKO,7,2020-03-08 15:22:31,2020-03-24 21:49:11,2020-03-15 17:39:04,3,43.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25310,LAMAI,1,2015-07-12 11:40:54,2015-08-01 06:23:09,2015-07-13 12:14:10,1,226.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25311,TORTU,4,2021-04-08 19:59:58,2021-05-25 11:24:44,2021-04-09 10:29:15,1,203.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25312,LACOR,3,2016-07-28 09:57:43,2016-08-10 17:59:33,2016-08-06 11:25:13,3,31.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25313,FURIB,6,2021-12-08 06:23:54,2021-12-16 15:42:39,2021-12-16 04:51:05,1,270.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25314,LAMAI,4,2022-03-25 13:26:24,2022-04-18 12:33:39,2022-03-30 08:01:02,2,25.25,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25315,EASTC,3,2012-12-27 04:04:35,2013-01-07 11:25:33,2013-01-04 22:21:40,2,134,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25316,BOTTM,8,2022-08-08 19:20:53,2022-09-10 01:42:18,2022-08-22 06:16:58,1,206.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25317,VICTE,4,2015-01-18 20:31:32,2015-03-08 05:43:53,2015-01-25 01:49:32,1,45,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25318,RICAR,5,2017-12-15 07:03:25,2017-12-29 09:12:00,2017-12-21 19:34:00,1,30.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25319,ANTON,7,2014-09-22 18:54:03,2014-09-29 14:39:25,2014-09-25 08:13:34,3,165.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25320,SPECD,4,2022-01-04 07:43:07,2022-01-26 21:54:00,2022-01-08 20:20:04,1,159.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25321,QUICK,4,2015-09-26 17:30:07,2015-10-19 17:05:20,2015-09-27 00:24:29,1,233,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25322,HILAA,3,2014-06-06 19:55:30,2014-06-26 20:44:50,2014-06-22 09:59:15,3,287.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25323,ISLAT,5,2021-01-10 03:36:37,2021-01-22 07:28:02,2021-01-17 04:46:58,3,404,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25324,CACTU,7,2020-10-08 06:54:02,2020-10-17 00:18:03,2020-10-10 22:56:36,1,379,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25325,SIMOB,8,2022-07-23 06:07:47,2022-07-31 22:13:40,2022-07-30 21:33:21,1,139.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25326,ANTON,3,2022-03-14 00:45:45,2022-03-16 08:37:43,2022-03-14 22:20:41,2,122,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25327,HANAR,6,2014-10-28 19:32:37,2014-11-02 06:54:29,2014-10-31 03:39:45,3,314.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25328,QUEEN,2,2019-01-23 13:47:39,2019-02-21 12:04:11,2019-02-06 04:38:11,3,178.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25329,TRAIH,8,2017-04-15 23:28:42,2017-04-22 04:07:00,2017-04-26 20:39:41,1,477.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25330,WILMK,7,2015-03-17 07:42:13,2015-03-28 15:17:07,2015-03-27 10:11:45,3,90.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25331,LINOD,8,2018-08-07 23:45:03,2018-09-05 20:51:31,2018-08-31 07:10:16,2,470.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25332,LINOD,9,2017-05-31 05:18:21,2017-07-09 16:55:01,2017-06-04 03:07:07,1,382.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25333,WELLI,8,2014-06-20 16:05:44,2014-07-14 18:01:55,2014-07-05 00:08:32,2,149.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25334,MAGAA,7,2020-04-26 05:08:42,2020-05-26 21:57:40,2020-04-30 02:43:53,2,410,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25335,PERIC,5,2019-02-08 04:15:45,2019-02-11 06:55:32,2019-02-17 18:11:47,1,472,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25336,LETSS,3,2023-06-08 15:00:08,2023-06-09 14:21:53,2023-06-14 02:10:27,2,147.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25337,FRANS,4,2018-12-17 01:08:11,2018-12-18 01:11:41,2019-01-10 21:41:35,3,91.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25338,SANTG,3,2014-09-28 04:17:48,2014-11-16 23:20:58,2014-10-05 11:25:38,1,113.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25339,BLAUS,8,2015-10-29 10:56:38,2015-11-23 15:08:28,2015-10-31 19:44:01,2,199.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25340,OLDWO,7,2016-02-22 13:40:37,2016-03-15 16:32:05,2016-03-06 05:47:02,1,375.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25341,LEHMS,7,2020-08-01 17:39:00,2020-08-02 10:05:45,2020-08-05 01:45:30,2,452.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25342,VAFFE,6,2020-08-29 04:11:24,2020-09-01 03:43:28,2020-09-01 23:35:57,3,315.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25343,QUEEN,9,2013-10-18 13:21:27,2013-10-29 10:45:20,2013-10-21 17:31:01,3,168.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25344,GALED,5,2022-10-01 09:39:50,2022-10-10 10:54:39,2022-10-02 19:10:59,1,181.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25345,LETSS,1,2019-03-02 11:00:34,2019-03-07 13:27:41,2019-03-02 19:38:35,3,330.5,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25346,THEBI,5,2013-04-08 23:16:28,2013-04-20 03:41:30,2013-04-25 08:06:57,3,257,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25347,Val2 ,1,2021-09-18 09:50:50,2021-11-05 01:38:10,2021-10-08 05:18:08,3,430.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25348,FAMIA,9,2022-08-31 07:24:26,2022-10-14 14:33:34,2022-09-02 00:41:37,1,495.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25349,GODOS,8,2022-04-08 10:13:23,2022-04-23 18:12:20,2022-04-09 01:07:47,3,176,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25350,RANCH,4,2019-11-22 08:37:32,2019-12-20 19:49:45,2019-12-02 11:42:46,2,245.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25351,COMMI,9,2021-09-26 17:08:13,2021-10-23 22:15:33,2021-10-11 00:13:02,2,538,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25352,SUPRD,3,2021-12-16 17:57:28,2022-01-12 11:28:23,2021-12-24 15:56:33,2,128.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25353,SEVES,4,2023-03-06 21:44:18,2023-04-05 20:35:25,2023-03-31 11:24:28,3,284,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25354,FRANS,1,2015-05-08 02:20:21,2015-05-14 07:14:41,2015-05-11 17:55:25,3,434.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25355,OLDWO,1,2022-05-09 12:39:45,2022-06-07 11:18:38,2022-05-10 14:44:08,3,360.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25356,WHITC,5,2015-12-21 08:43:07,2016-01-09 11:48:07,2015-12-27 01:17:13,3,79,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25357,CACTU,1,2015-08-30 00:08:13,2015-10-05 04:15:48,2015-09-02 04:03:56,3,451.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25358,OLDWO,2,2019-09-15 11:01:39,2019-09-30 01:41:48,2019-09-24 02:57:42,3,351.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25359,GOURL,2,2023-05-01 18:26:44,2023-05-19 07:19:50,2023-05-04 12:49:07,3,478.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25360,GROSR,6,2019-09-20 04:48:21,2019-10-12 09:31:14,2019-09-21 20:00:59,1,152.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25361,LAZYK,2,2019-01-25 09:59:45,2019-02-26 22:08:20,2019-01-27 02:30:54,2,477,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25362,BSBEV,1,2019-12-14 10:53:05,2020-01-01 11:38:25,2019-12-15 06:15:14,3,288.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25363,OTTIK,3,2021-11-19 23:29:01,2021-12-02 08:48:06,2021-12-14 16:41:56,3,345.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25364,OTTIK,4,2016-04-18 01:02:04,2016-04-28 07:16:22,2016-05-04 07:59:04,3,378.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25365,VICTE,4,2014-10-23 17:54:23,2014-11-22 00:01:44,2014-10-24 09:52:12,1,18.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25366,REGGC,7,2015-02-01 07:49:42,2015-02-23 12:44:50,2015-02-03 00:56:07,2,356,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25367,FOLIG,6,2014-01-28 14:36:34,2014-03-15 23:10:41,2014-02-03 23:55:02,2,126.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25368,AROUT,3,2019-03-27 10:00:51,2019-04-05 00:38:31,2019-04-15 18:51:34,2,313.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25369,HUNGO,4,2013-07-17 04:38:46,2013-07-25 03:44:11,2013-07-24 18:47:29,2,432.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25370,MAISD,8,2017-10-10 12:40:26,2017-10-14 13:16:02,2017-10-16 14:24:55,3,66,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25371,RATTC,5,2018-02-24 13:03:47,2018-03-09 16:30:48,2018-02-25 18:11:12,1,30,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25372,FRANS,1,2020-04-12 10:33:43,2020-04-26 04:33:22,2020-04-17 14:26:25,3,494,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25373,COMMI,1,2022-05-16 09:37:40,2022-05-21 04:03:09,2022-05-21 18:18:29,2,374,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25374,PARIS,9,2017-04-26 16:55:52,2017-05-22 17:01:21,2017-05-17 20:30:14,2,249.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25375,RICAR,8,2013-01-26 09:11:28,2013-02-12 04:42:17,2013-02-07 22:35:55,1,171,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25376,DRACD,1,2017-09-30 02:05:14,2017-11-03 06:40:25,2017-10-09 15:17:58,1,29.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25377,BSBEV,9,2016-12-18 20:01:55,2016-12-20 08:56:57,2016-12-21 04:30:28,2,358,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25378,GALED,9,2012-07-31 04:52:53,2012-07-31 07:54:06,2012-08-15 18:52:50,3,132.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25379,MEREP,6,2017-12-13 18:22:43,2018-01-03 07:33:28,2018-01-07 04:56:01,2,425.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25380,PARIS,8,2021-06-29 07:16:03,2021-07-12 01:04:04,2021-07-18 12:33:04,3,44,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25381,SANTG,9,2021-06-19 19:17:22,2021-07-18 13:56:02,2021-06-20 06:21:25,3,62,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25382,PERIC,4,2017-01-12 07:32:24,2017-02-01 01:10:02,2017-02-02 22:05:10,1,354,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25383,DUMON,2,2016-06-10 04:42:44,2016-07-01 19:31:02,2016-06-14 01:50:49,2,322.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25384,TOMSP,8,2015-03-28 20:43:31,2015-05-04 15:56:02,2015-04-20 15:42:02,3,315,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25385,CENTC,7,2019-07-22 17:03:13,2019-09-01 00:01:55,2019-08-03 00:11:37,1,178.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25386,THEBI,4,2019-06-11 11:18:03,2019-06-28 20:05:38,2019-06-17 20:39:04,1,294.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25387,BLONP,6,2022-08-27 13:03:03,2022-09-07 00:18:05,2022-09-15 11:38:49,3,430.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25388,LILAS,7,2020-01-09 09:46:32,2020-01-27 01:05:34,2020-01-09 19:58:05,1,122.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25389,LETSS,7,2022-01-08 15:13:12,2022-01-24 22:59:26,2022-01-17 05:24:16,1,482.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25390,FRANR,1,2020-03-19 18:09:17,2020-03-31 17:52:00,2020-03-28 15:39:21,2,167.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25391,NORTS,7,2016-02-29 07:49:22,2016-03-11 03:28:24,2016-03-12 11:44:54,1,67.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25392,BLAUS,4,2013-12-03 10:59:27,2013-12-05 13:58:27,2013-12-16 10:49:53,2,275,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25393,THECR,7,2014-10-24 22:47:01,2014-11-07 12:37:04,2014-11-05 18:55:17,1,223.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25394,GROSR,9,2020-06-16 03:16:53,2020-06-30 05:40:13,2020-06-25 08:22:24,2,226.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25395,PERIC,7,2022-07-17 01:03:38,2022-07-28 09:50:05,2022-07-28 17:18:35,1,272.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25396,SUPRD,6,2017-11-02 21:33:37,2017-11-25 01:30:49,2017-11-06 07:43:58,1,215.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25397,TORTU,7,2013-10-14 07:04:13,2013-11-12 20:15:47,2013-10-20 17:50:10,3,365,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25398,VICTE,6,2019-02-12 13:59:14,2019-02-19 09:10:52,2019-02-17 21:00:54,3,225.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25399,BONAP,3,2014-01-25 01:32:50,2014-03-06 16:02:30,2014-01-31 00:38:27,2,147.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25400,DRACD,6,2015-01-01 21:47:34,2015-01-16 01:39:52,2015-01-12 04:35:23,1,404,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25401,WANDK,9,2023-07-17 20:17:59,2023-07-21 08:05:01,2023-07-28 10:35:10,2,485,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25402,REGGC,7,2018-02-03 13:19:27,2018-02-27 20:08:10,2018-02-15 00:54:35,3,447.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25403,DUMON,4,2018-01-28 06:47:27,2018-02-13 20:47:22,2018-01-30 17:13:36,2,399,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25404,RICAR,8,2018-09-25 17:14:43,2018-11-17 17:06:01,2018-09-30 08:08:17,2,216,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25405,PERIC,3,2015-01-20 10:57:36,2015-02-09 05:03:20,2015-01-24 06:53:05,2,129,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25406,HANAR,8,2016-05-27 21:16:53,2016-06-05 20:27:51,2016-05-31 15:29:24,3,467.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25407,WILMK,4,2014-03-02 18:08:40,2014-03-08 07:44:31,2014-03-03 15:37:33,3,277.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25408,LETSS,1,2019-05-21 17:44:26,2019-05-25 22:41:28,2019-05-30 04:37:38,1,144.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25409,SIMOB,1,2015-04-28 02:09:48,2015-05-12 19:54:49,2015-05-04 16:07:19,1,337.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25410,PERIC,8,2017-12-08 21:58:53,2017-12-16 12:22:04,2017-12-16 13:13:39,2,162.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25411,HILAA,6,2012-09-14 20:27:49,2012-10-01 06:17:17,2012-09-20 19:49:04,1,128.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25412,ANTON,6,2019-04-06 10:41:50,2019-04-12 11:26:40,2019-04-11 19:04:23,3,362.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25413,WANDK,1,2021-03-10 21:33:23,2021-03-18 22:59:14,2021-03-10 23:40:41,3,68.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25414,FOLIG,8,2018-09-01 08:54:41,2018-09-20 20:55:21,2018-09-10 08:01:01,3,21.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25415,SPLIR,8,2021-10-04 05:28:20,2021-11-08 22:36:05,2021-10-09 06:31:02,2,287,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25416,SIMOB,6,2018-02-16 18:33:34,2018-02-17 17:31:57,2018-03-04 15:39:33,1,232,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25417,WANDK,3,2020-11-02 05:43:19,2020-11-04 22:17:01,2020-11-08 17:14:17,3,262.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25418,BOTTM,7,2016-02-12 19:22:05,2016-03-12 22:12:03,2016-03-09 10:24:04,1,448,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25419,PERIC,1,2013-09-15 04:43:13,2013-09-28 14:14:44,2013-10-05 08:20:22,3,248,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25420,KOENE,9,2015-01-06 03:14:13,2015-02-05 14:49:25,2015-01-10 12:25:20,1,543.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25421,LILAS,1,2021-01-23 02:06:17,2021-01-25 21:01:54,2021-02-07 18:12:50,1,249.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25422,FOLIG,5,2022-11-23 01:52:57,2022-11-28 17:58:34,2022-11-23 16:17:04,1,247.75,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25423,FRANS,1,2020-07-15 03:24:50,2020-08-01 06:03:11,2020-07-26 01:33:16,3,246.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25424,VALON,8,2018-06-25 12:37:16,2018-06-29 05:30:57,2018-06-29 17:46:48,3,336.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25425,TORTU,5,2019-10-23 16:35:55,2019-11-21 21:14:11,2019-11-11 18:09:19,3,510,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +25426,CENTC,7,2015-03-22 02:06:48,2015-04-26 21:28:16,2015-03-25 23:48:22,3,392.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25427,WELLI,6,2017-01-10 21:24:12,2017-01-16 23:50:19,2017-01-28 03:08:21,3,375.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25428,REGGC,7,2019-12-01 22:38:07,2019-12-03 16:12:40,2019-12-15 00:39:28,2,40,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25429,KOENE,8,2015-04-04 03:51:39,2015-04-10 16:50:20,2015-04-12 20:30:59,3,157.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25430,SANTG,8,2016-09-05 17:51:13,2016-09-20 00:03:11,2016-09-08 17:20:04,1,437.25,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25431,FAMIA,8,2015-07-13 22:48:13,2015-08-24 09:47:16,2015-07-14 22:48:26,2,264,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25432,OTTIK,2,2017-02-03 20:52:01,2017-03-13 05:25:06,2017-02-05 23:46:32,3,522.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25433,LEHMS,9,2019-07-01 04:44:29,2019-07-18 08:40:38,2019-07-21 14:56:10,2,200.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25434,TRADH,1,2021-01-05 21:35:54,2021-01-17 20:17:56,2021-01-12 19:06:12,2,297.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25435,WOLZA,6,2014-12-08 15:01:50,2015-01-06 18:35:07,2014-12-21 12:46:39,3,10.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25436,VALON,3,2013-12-04 23:35:38,2014-01-19 23:34:14,2013-12-06 04:53:32,1,65.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25437,QUICK,3,2016-01-20 22:05:42,2016-02-26 19:46:17,2016-01-25 20:50:35,1,49.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25438,LONEP,8,2015-04-14 14:40:04,2015-04-18 06:08:53,2015-04-30 23:19:49,2,480.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25439,OTTIK,4,2023-03-19 06:24:04,2023-04-27 13:10:46,2023-03-21 06:41:12,2,46,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25440,THECR,8,2019-12-09 19:41:31,2020-01-21 09:30:54,2019-12-20 01:57:39,3,351.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25441,WARTH,5,2018-06-13 06:23:05,2018-06-30 12:26:11,2018-06-28 02:32:17,3,33.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25442,QUEEN,5,2017-03-31 12:46:26,2017-04-14 16:29:40,2017-04-08 03:25:07,1,129.25,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25443,ALFKI,9,2021-11-15 09:20:33,2021-12-24 19:22:45,2021-11-18 09:14:14,3,28.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25444,FISSA,8,2016-07-29 06:34:23,2016-08-07 12:42:55,2016-07-29 09:37:13,2,278.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25445,TOMSP,1,2020-12-26 20:18:56,2021-02-06 03:14:32,2020-12-30 09:49:47,2,332.75,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25446,ANTON,5,2023-06-17 23:06:04,2023-07-18 05:59:52,2023-06-18 01:42:26,2,398,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25447,RICAR,5,2018-08-14 21:50:34,2018-09-02 04:47:36,2018-08-19 07:39:46,2,175.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25448,COMMI,5,2022-10-19 11:21:07,2022-10-27 07:25:38,2022-11-01 06:20:13,2,341.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25449,LACOR,8,2020-02-05 03:34:03,2020-02-26 13:20:45,2020-02-18 00:45:13,2,218.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25450,ROMEY,8,2016-10-14 01:15:48,2016-10-29 02:37:44,2016-10-15 13:12:22,2,184.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25451,SAVEA,3,2014-11-04 11:03:09,2014-11-14 00:31:39,2014-11-06 02:01:47,2,228.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25452,HANAR,4,2015-01-28 23:19:53,2015-02-16 12:49:15,2015-02-01 05:44:22,3,332,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25453,QUICK,1,2018-07-07 19:45:13,2018-08-03 11:58:48,2018-07-27 15:49:40,1,288.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25454,GROSR,8,2015-01-04 17:56:07,2015-01-11 17:54:08,2015-01-22 03:31:43,3,365.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25455,RANCH,9,2021-04-27 15:11:21,2021-05-31 20:19:30,2021-04-28 00:38:13,1,150.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25456,SUPRD,8,2013-06-13 18:47:25,2013-07-11 06:09:04,2013-06-15 14:39:47,3,341.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25457,LILAS,8,2019-07-02 22:27:19,2019-07-14 19:05:26,2019-07-08 02:16:35,3,22.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25458,QUEEN,8,2015-12-22 16:03:59,2016-01-19 16:03:41,2016-01-08 11:53:51,2,259.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25459,LONEP,9,2016-07-31 21:24:38,2016-08-10 00:27:27,2016-08-06 23:21:57,3,78.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25460,ANTON,6,2015-03-15 17:52:48,2015-04-22 20:18:41,2015-03-28 19:54:56,2,147.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25461,MEREP,7,2013-08-02 02:23:07,2013-08-12 02:17:49,2013-08-21 10:08:24,3,135,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25462,FRANK,1,2018-06-03 20:49:47,2018-06-27 10:37:51,2018-06-11 22:32:17,2,159,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25463,FAMIA,2,2023-04-21 07:15:39,2023-05-05 10:04:36,2023-04-22 03:00:36,3,242,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25464,THEBI,9,2020-08-21 02:25:31,2020-09-07 17:20:11,2020-09-04 22:23:18,1,132.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25465,FRANR,7,2018-04-25 11:21:40,2018-05-15 08:31:13,2018-05-09 01:51:54,1,208.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25466,TRADH,2,2019-02-22 19:50:00,2019-04-04 09:20:44,2019-03-14 09:22:39,3,162.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25467,LACOR,3,2022-01-07 13:11:07,2022-01-16 22:12:58,2022-01-10 19:28:16,2,310.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25468,MAGAA,6,2021-09-03 12:23:55,2021-10-03 02:55:07,2021-09-06 07:17:32,3,180,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25469,PICCO,8,2015-08-18 01:42:04,2015-08-29 18:47:17,2015-08-28 07:22:29,3,383,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25470,TOMSP,4,2015-01-19 10:33:37,2015-01-26 15:35:20,2015-01-23 00:56:22,1,308.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25471,FISSA,2,2016-05-14 14:55:42,2016-05-22 01:27:11,2016-05-18 20:08:27,2,278.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25472,LEHMS,2,2020-09-30 13:53:43,2020-10-21 06:12:31,2020-10-02 00:45:40,1,51.5,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25473,OCEAN,5,2021-12-15 19:44:58,2022-01-27 18:01:23,2021-12-26 12:06:04,1,155.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25474,GROSR,2,2014-07-01 08:48:05,2014-07-04 00:57:56,2014-07-12 17:41:17,1,454.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25475,SUPRD,4,2012-09-19 02:55:21,2012-09-26 12:27:08,2012-09-19 10:37:05,1,444.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25476,Val2 ,7,2012-10-12 13:47:31,2012-10-31 05:59:18,2012-10-18 21:46:55,3,471,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25477,FRANR,6,2017-08-07 17:35:21,2017-08-17 20:22:20,2017-08-11 08:58:10,2,162.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25478,LILAS,8,2020-10-11 02:41:54,2020-10-21 06:37:58,2020-10-23 21:53:03,3,143,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25479,NORTS,4,2018-02-10 12:20:14,2018-03-01 11:22:55,2018-02-19 06:07:38,2,202.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25480,GOURL,9,2022-01-17 06:21:47,2022-01-20 09:25:44,2022-01-19 15:27:28,1,437.75,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25481,DRACD,5,2020-12-03 19:29:28,2020-12-17 21:53:36,2020-12-04 00:12:13,2,276.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25482,REGGC,3,2014-11-20 23:05:40,2014-12-31 03:12:11,2014-11-29 09:05:07,1,363.5,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25483,SPECD,4,2013-08-24 21:29:28,2013-10-10 04:10:30,2013-08-28 07:01:23,3,280.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25484,LETSS,6,2022-08-06 16:04:49,2022-08-10 06:55:52,2022-08-14 05:30:17,3,306.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25485,PERIC,5,2016-06-19 03:29:43,2016-07-02 04:07:27,2016-07-09 06:42:20,1,415.25,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25486,BOTTM,3,2017-05-19 12:33:21,2017-06-08 13:42:56,2017-05-26 21:03:47,1,352.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25487,QUEEN,9,2021-10-30 08:14:53,2021-11-09 01:51:36,2021-10-30 09:38:58,3,95.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25488,SEVES,3,2018-08-30 20:23:47,2018-09-01 07:05:22,2018-09-02 21:53:54,3,452,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25489,WILMK,7,2019-06-29 02:04:51,2019-06-29 08:25:57,2019-06-29 13:47:14,3,202.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25490,PRINI,8,2017-06-27 06:39:15,2017-06-28 16:55:16,2017-07-15 18:47:00,2,359.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25491,BOLID,8,2015-05-05 07:10:08,2015-05-21 13:16:07,2015-05-14 20:32:35,3,261.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25492,LINOD,1,2022-12-17 09:58:11,2023-01-10 22:27:11,2022-12-25 03:57:28,2,342,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25493,BOTTM,7,2019-02-27 09:26:24,2019-03-19 01:55:37,2019-03-16 12:21:06,1,265.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25494,Val2 ,5,2019-01-11 09:39:04,2019-02-04 01:24:19,2019-01-15 20:14:00,3,408.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25495,VALON,7,2018-10-20 17:05:52,2018-10-27 19:36:41,2018-10-22 09:05:29,3,141.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25496,SIMOB,8,2021-03-31 06:55:38,2021-05-15 22:26:26,2021-04-01 05:30:44,1,334,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25497,ISLAT,5,2012-11-30 16:47:49,2013-01-02 09:08:56,2012-12-01 06:29:22,2,184.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25498,GOURL,7,2021-11-17 10:42:13,2021-12-29 13:21:44,2021-11-28 09:02:12,3,290.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25499,OCEAN,2,2015-04-13 13:11:55,2015-05-13 06:19:51,2015-04-18 18:13:35,3,369.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25500,LETSS,6,2020-09-07 06:05:33,2020-10-31 15:16:41,2020-09-26 22:23:08,2,551.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25501,CACTU,5,2019-06-14 11:43:13,2019-07-27 21:35:44,2019-06-15 22:50:26,2,21.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25502,WOLZA,9,2022-09-30 10:48:41,2022-10-17 13:40:27,2022-10-01 13:07:24,3,51.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25503,VINET,3,2013-09-02 01:00:18,2013-10-20 12:35:50,2013-09-12 17:16:41,3,373,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25504,GREAL,7,2017-04-06 18:10:04,2017-05-11 04:57:30,2017-04-07 21:39:48,2,194,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25505,HANAR,1,2018-10-01 08:11:20,2018-10-13 17:23:12,2018-10-03 14:24:32,1,147,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25506,RICAR,4,2012-07-10 20:28:57,2012-08-18 18:51:20,2012-07-15 10:33:01,3,310.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25507,PARIS,6,2020-05-21 03:24:33,2020-06-13 10:48:48,2020-05-22 21:10:09,1,311.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25508,BLAUS,1,2016-02-13 23:21:25,2016-02-20 00:45:08,2016-02-13 23:27:37,1,513.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25509,SEVES,7,2017-04-02 05:06:02,2017-04-11 07:03:17,2017-04-04 02:32:33,2,80.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25510,WELLI,1,2016-10-07 15:31:14,2016-10-19 10:24:48,2016-10-15 07:42:59,2,291.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25511,RICAR,3,2018-03-25 08:06:19,2018-03-25 21:50:36,2018-03-25 10:32:21,2,22.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25512,QUEEN,7,2020-04-23 00:34:15,2020-04-27 23:53:19,2020-05-08 22:51:13,1,136.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25513,ROMEY,2,2018-12-05 17:50:41,2018-12-08 12:27:48,2018-12-06 14:35:59,1,515.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25514,LAMAI,1,2019-07-23 04:39:27,2019-08-12 01:19:37,2019-07-25 05:27:48,1,11,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25515,HUNGC,3,2013-09-29 15:59:20,2013-10-16 01:59:12,2013-10-14 03:39:08,1,126.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25516,ALFKI,6,2021-08-13 16:02:56,2021-08-23 19:47:53,2021-08-17 06:02:48,3,469.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25517,LAUGB,5,2018-12-18 14:07:30,2019-01-13 21:22:46,2018-12-18 20:12:47,2,250,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25518,FRANS,4,2020-03-04 15:23:10,2020-03-28 09:49:17,2020-03-09 18:05:20,2,221.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25519,PICCO,6,2014-03-05 14:13:48,2014-03-21 18:42:05,2014-03-26 14:49:47,3,396.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25520,EASTC,6,2019-01-07 10:29:46,2019-01-16 12:41:54,2019-01-14 00:49:05,3,391,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25521,KOENE,7,2018-05-27 11:27:07,2018-06-16 21:36:55,2018-06-04 10:13:22,2,399.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25522,ERNSH,6,2020-04-15 10:34:35,2020-04-17 13:34:51,2020-04-18 08:29:31,3,32,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25523,PERIC,9,2013-12-06 16:24:11,2013-12-28 12:14:43,2013-12-16 15:52:01,3,449.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25524,QUEDE,2,2021-08-17 17:05:59,2021-09-15 02:34:53,2021-08-23 21:30:39,3,237.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25525,SUPRD,2,2020-05-14 06:12:29,2020-06-08 11:22:31,2020-05-22 09:45:22,1,160,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25526,WELLI,6,2023-04-05 04:54:12,2023-04-17 12:53:56,2023-04-26 05:50:58,1,61.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25527,SPLIR,1,2018-10-15 06:39:44,2018-11-17 02:02:41,2018-10-20 04:00:23,1,170,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25528,BERGS,5,2020-08-16 14:16:56,2020-09-20 09:43:25,2020-08-17 14:15:22,3,310,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25529,FOLIG,5,2020-01-14 02:00:30,2020-01-19 20:53:25,2020-01-17 09:49:14,3,126.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25530,SAVEA,1,2016-11-19 11:05:07,2016-12-16 14:00:12,2016-12-12 10:03:18,1,223.25,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25531,RICSU,9,2021-10-12 00:44:56,2021-10-22 08:58:59,2021-10-14 16:03:46,1,354,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25532,NORTS,6,2023-06-10 15:34:03,2023-07-24 04:34:24,2023-06-11 13:13:02,1,51,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25533,TOMSP,9,2015-12-16 18:32:52,2016-01-18 20:51:25,2015-12-24 04:08:38,3,492,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25534,MORGK,6,2013-03-26 16:54:17,2013-05-04 01:48:51,2013-04-02 06:07:44,1,195.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25535,PARIS,1,2023-04-29 19:59:04,2023-05-07 03:34:45,2023-05-02 08:06:29,1,367,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25536,ROMEY,6,2022-05-10 09:30:17,2022-05-31 15:37:35,2022-05-11 03:47:40,1,170.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25537,OTTIK,2,2015-12-14 10:29:33,2015-12-25 05:49:49,2015-12-17 14:14:51,3,176.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25538,ALFKI,7,2023-01-29 22:57:35,2023-02-19 09:25:15,2023-02-01 12:02:41,3,189.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25539,PRINI,2,2019-03-14 21:49:12,2019-04-23 23:18:03,2019-03-15 23:42:18,1,121.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25540,CENTC,7,2013-07-29 14:04:41,2013-08-02 12:58:49,2013-08-18 11:02:30,2,216,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25541,LAUGB,7,2018-12-04 23:02:52,2018-12-10 04:51:22,2018-12-24 11:35:52,1,359.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25542,LAUGB,3,2020-06-22 11:52:42,2020-06-24 17:51:49,2020-07-13 10:20:39,2,327.25,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25543,LACOR,2,2021-03-02 15:35:21,2021-04-07 04:38:03,2021-03-09 17:14:29,1,326.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25544,FAMIA,4,2022-09-18 13:59:56,2022-10-04 06:56:34,2022-09-20 06:01:03,3,182.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25545,CENTC,3,2021-09-22 17:05:41,2021-09-23 18:33:35,2021-09-26 23:57:34,2,108.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +25546,SPECD,4,2016-04-19 05:11:19,2016-05-11 02:08:07,2016-04-20 01:39:36,1,386.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25547,TRADH,8,2020-04-18 08:07:15,2020-05-02 09:06:42,2020-05-04 14:05:56,2,250.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25548,ERNSH,6,2013-06-09 20:10:00,2013-06-22 11:51:48,2013-06-24 08:44:47,2,252.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25549,TOMSP,5,2021-07-19 16:00:04,2021-07-20 16:55:23,2021-08-06 19:54:40,2,198.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25550,DUMON,9,2019-10-18 14:52:08,2019-11-29 20:12:22,2019-11-06 22:47:00,2,209.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25551,VINET,1,2020-07-31 03:31:58,2020-08-02 14:33:33,2020-08-04 08:16:08,2,116.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25552,TORTU,4,2013-02-08 02:49:25,2013-02-20 05:24:39,2013-02-11 12:09:19,1,86.25,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25553,PERIC,5,2019-02-27 10:00:27,2019-03-25 13:07:57,2019-03-02 06:03:43,2,313.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25554,THECR,1,2019-10-30 17:44:26,2019-11-05 11:00:28,2019-11-07 17:15:43,1,320.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25555,MEREP,6,2023-04-18 13:14:52,2023-04-19 12:47:37,2023-04-30 17:20:49,3,193.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25556,GREAL,8,2023-09-20 13:09:54,2023-10-16 15:39:32,2023-09-21 00:33:44,2,410.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25557,WHITC,8,2012-09-21 23:47:15,2012-10-06 11:02:24,2012-09-26 10:36:52,2,392.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25558,ISLAT,2,2019-07-06 12:15:14,2019-07-13 12:42:08,2019-07-19 06:33:25,3,241.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25559,GROSR,6,2023-06-12 16:50:04,2023-06-25 03:55:47,2023-06-14 08:01:58,2,476.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25560,ANTON,8,2021-01-11 06:44:50,2021-01-25 02:11:45,2021-01-18 18:38:25,1,276.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25561,TRAIH,9,2019-04-24 16:35:55,2019-05-14 21:52:34,2019-05-20 14:41:12,3,224.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25562,REGGC,4,2017-09-11 00:26:50,2017-09-24 10:06:03,2017-09-16 17:25:00,1,182,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25563,THECR,8,2013-06-24 13:33:26,2013-07-11 14:08:39,2013-07-01 11:24:49,2,454.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25564,MAISD,1,2017-12-16 23:41:03,2018-02-04 05:28:23,2017-12-20 09:09:20,1,260.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25565,BOTTM,8,2017-06-23 03:39:36,2017-07-11 07:08:51,2017-06-25 07:40:38,1,442,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25566,FRANR,7,2022-04-04 02:22:57,2022-05-10 10:51:48,2022-04-12 02:35:00,1,378.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25567,OTTIK,2,2016-09-28 01:33:35,2016-10-17 06:52:51,2016-09-30 00:18:06,2,361,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25568,TRAIH,8,2021-01-21 11:10:05,2021-01-24 14:29:21,2021-01-26 16:54:09,3,255,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25569,ANTON,5,2014-09-29 21:52:04,2014-10-12 07:29:09,2014-10-03 17:16:48,1,211.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25570,ANTON,1,2014-06-12 12:28:07,2014-06-27 11:20:35,2014-06-18 04:28:58,2,196,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25571,SEVES,4,2021-01-29 12:41:47,2021-03-15 22:07:13,2021-02-02 06:49:34,2,312.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25572,WILMK,7,2014-03-15 23:32:35,2014-05-04 23:15:44,2014-04-06 13:58:08,3,151.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25573,FISSA,7,2013-08-23 08:04:56,2013-08-25 21:21:22,2013-08-24 16:05:17,3,397.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25574,FAMIA,3,2022-09-25 03:49:19,2022-10-03 05:22:36,2022-09-26 07:14:01,1,380.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25575,VINET,8,2023-05-31 17:29:56,2023-06-23 11:49:29,2023-06-29 00:03:17,3,109.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25576,LACOR,7,2022-05-17 19:56:20,2022-06-02 22:31:22,2022-06-04 18:21:31,3,392.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25577,TOMSP,2,2022-08-20 18:57:47,2022-08-23 08:05:42,2022-08-23 00:22:43,3,335.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25578,SIMOB,5,2016-10-20 11:20:11,2016-11-19 22:08:00,2016-11-09 16:46:55,3,289.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25579,COMMI,6,2014-04-04 22:55:44,2014-04-20 06:14:41,2014-04-11 06:42:08,1,117.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25580,MEREP,6,2018-05-10 09:58:03,2018-06-01 19:10:44,2018-06-04 21:34:18,2,341.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25581,VINET,9,2021-05-21 07:24:27,2021-06-04 10:10:32,2021-06-11 20:00:31,3,10.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25582,BERGS,3,2020-12-23 00:07:28,2020-12-27 22:45:08,2020-12-23 11:20:57,2,80.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25583,HANAR,2,2017-11-14 14:14:59,2017-12-19 08:17:45,2017-11-17 10:22:04,2,426.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25584,RICSU,5,2022-09-01 22:35:03,2022-09-02 01:53:09,2022-09-02 10:19:36,2,451,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25585,Val2 ,4,2019-05-31 00:18:23,2019-06-01 16:42:06,2019-06-07 17:49:43,3,360.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25586,ANTON,9,2014-11-13 16:19:09,2014-11-26 20:54:36,2014-11-14 05:52:29,3,243.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25587,BLAUS,4,2018-03-05 04:28:23,2018-03-21 14:19:53,2018-03-07 17:20:15,2,18.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25588,OCEAN,3,2015-04-05 04:43:42,2015-04-22 18:17:36,2015-04-22 19:20:56,3,449.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +25589,QUICK,8,2013-09-10 19:25:01,2013-09-16 13:47:17,2013-09-20 04:41:20,3,433.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25590,PICCO,1,2016-07-16 04:44:02,2016-07-25 21:33:54,2016-07-25 16:14:59,1,309.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25591,FRANK,4,2018-10-17 15:34:50,2018-11-01 09:59:24,2018-10-20 14:12:56,1,418,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25592,VALON,7,2014-03-23 07:08:35,2014-04-28 10:02:22,2014-03-27 12:33:12,2,176,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25593,FOLIG,2,2019-07-26 17:48:11,2019-08-03 09:52:54,2019-08-01 01:31:58,3,219.75,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25594,ERNSH,8,2015-07-11 16:09:39,2015-07-22 10:10:18,2015-07-15 04:49:57,3,117.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25595,BSBEV,3,2017-05-13 07:32:08,2017-05-21 07:39:25,2017-05-18 04:17:23,2,500.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +25596,VAFFE,4,2022-02-17 20:39:18,2022-03-28 08:48:37,2022-02-23 15:24:50,1,189.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25597,LILAS,9,2017-05-23 08:07:53,2017-05-29 20:55:02,2017-05-24 00:43:13,3,164,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25598,BLAUS,2,2021-07-27 16:21:37,2021-07-29 21:06:12,2021-07-28 15:04:06,3,467.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25599,ALFKI,2,2016-04-23 03:28:46,2016-05-03 17:41:08,2016-05-05 23:22:25,2,31,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25600,VALON,4,2023-06-07 01:46:39,2023-06-13 10:54:01,2023-06-07 02:19:26,2,448,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25601,QUEEN,6,2015-12-19 16:40:00,2015-12-27 19:27:12,2016-01-04 23:53:15,1,380.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25602,BERGS,6,2023-08-14 13:44:39,2023-10-02 10:39:41,2023-09-04 20:20:47,3,442.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25603,LONEP,9,2022-05-15 16:00:40,2022-05-18 10:57:07,2022-05-21 08:42:12,3,119.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25604,RATTC,4,2016-12-19 13:23:30,2016-12-27 04:30:06,2016-12-22 08:23:02,3,367.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25605,MEREP,5,2021-05-13 18:01:36,2021-06-21 05:50:14,2021-05-29 04:16:18,3,270.25,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25606,FRANK,2,2015-11-24 01:18:30,2015-12-09 15:03:44,2015-11-27 04:06:06,3,483.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25607,LAZYK,3,2015-06-29 02:06:05,2015-08-16 00:48:11,2015-06-29 16:04:41,3,372.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25608,CACTU,6,2018-09-24 09:12:53,2018-09-26 14:42:32,2018-09-26 12:20:21,1,224.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25609,LAZYK,7,2016-04-07 00:17:44,2016-04-25 06:28:03,2016-04-14 02:19:44,1,253.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25610,LILAS,4,2014-04-03 17:59:10,2014-04-15 14:41:59,2014-04-03 23:03:22,2,357,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25611,HUNGC,1,2014-10-15 08:38:07,2014-11-01 01:13:49,2014-11-09 07:12:45,3,402.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25612,BOTTM,8,2013-03-29 00:09:19,2013-04-13 16:16:39,2013-04-17 18:45:23,1,452.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25613,OTTIK,3,2019-05-07 19:33:10,2019-07-02 02:44:58,2019-05-08 02:25:29,3,279,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25614,CONSH,7,2017-06-25 16:18:56,2017-07-04 09:16:23,2017-07-06 17:12:27,3,214,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25615,LAZYK,6,2015-12-18 23:55:24,2016-01-10 14:10:43,2015-12-19 11:47:17,3,75.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25616,VINET,4,2016-12-07 05:28:05,2016-12-11 03:39:22,2016-12-09 01:25:41,3,327,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25617,THECR,9,2020-05-17 22:43:57,2020-06-18 20:51:04,2020-05-19 10:34:01,3,307,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25618,WELLI,8,2012-12-22 12:52:56,2013-01-22 05:06:36,2012-12-29 05:42:16,2,382.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25619,KOENE,4,2013-07-23 21:31:45,2013-07-30 04:06:42,2013-07-26 19:07:36,3,403.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25620,WILMK,9,2018-07-20 09:33:44,2018-08-12 00:31:49,2018-08-13 22:51:20,2,92,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25621,THEBI,3,2021-04-20 18:42:36,2021-04-28 14:13:13,2021-04-23 11:45:21,3,81.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25622,LAZYK,1,2013-11-03 22:51:03,2013-12-10 01:46:01,2013-11-15 18:41:42,2,170.5,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25623,ISLAT,3,2017-12-16 14:43:56,2017-12-22 23:24:09,2017-12-19 14:18:25,2,256,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25624,ANTON,2,2020-02-19 21:47:12,2020-03-11 10:40:23,2020-02-21 08:23:42,2,277.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25625,Val2 ,6,2018-09-26 10:19:52,2018-10-08 10:08:21,2018-10-03 19:53:26,3,73.75,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25626,QUICK,4,2012-10-02 22:52:55,2012-10-09 17:58:38,2012-10-29 02:45:56,1,109,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25627,TRADH,5,2022-10-03 10:21:13,2022-10-16 05:22:18,2022-10-09 01:49:13,3,355.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25628,GOURL,6,2021-04-22 15:02:54,2021-06-04 11:08:53,2021-04-29 09:33:58,1,136.5,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25629,FISSA,8,2019-04-16 12:50:43,2019-04-19 17:03:03,2019-04-24 09:40:06,3,21.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25630,ROMEY,1,2023-03-31 00:45:07,2023-04-26 17:41:52,2023-04-05 15:17:38,2,28.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25631,NORTS,3,2015-11-20 14:56:00,2015-12-14 23:12:52,2015-12-03 16:14:24,2,495,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25632,LETSS,2,2021-05-29 05:42:23,2021-06-06 11:11:47,2021-06-12 08:49:04,3,390.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25633,LAMAI,5,2020-06-10 11:44:39,2020-06-16 10:26:54,2020-06-15 02:11:05,2,397.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25634,WOLZA,6,2022-01-19 02:00:02,2022-02-02 17:59:15,2022-01-21 20:56:54,3,90,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25635,SAVEA,7,2020-11-20 20:50:51,2020-12-06 17:16:40,2020-11-30 02:05:28,2,191,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25636,TORTU,9,2013-02-03 05:40:46,2013-02-05 06:41:38,2013-02-12 10:50:42,1,165.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25637,SEVES,9,2019-09-08 15:36:38,2019-09-17 04:09:51,2019-09-19 23:39:31,2,197,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25638,LAUGB,4,2012-10-21 01:17:11,2012-11-20 02:18:07,2012-10-22 05:07:16,3,13,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25639,FRANS,5,2017-08-29 20:16:00,2017-08-31 00:36:57,2017-09-01 01:58:47,2,438.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25640,FRANR,7,2019-03-12 08:09:11,2019-03-14 08:35:24,2019-03-18 17:56:50,1,272.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25641,FISSA,3,2013-06-15 09:10:00,2013-06-24 04:50:06,2013-06-28 13:29:55,3,308,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25642,TOMSP,7,2017-01-24 19:19:11,2017-01-30 16:29:37,2017-01-26 09:19:56,1,482.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25643,GOURL,5,2016-08-17 23:15:43,2016-10-03 23:03:17,2016-08-18 08:42:20,2,284.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25644,BLONP,2,2021-06-29 14:27:57,2021-07-04 07:19:49,2021-07-18 08:51:13,1,84.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25645,BOTTM,9,2016-03-24 08:15:11,2016-04-27 12:51:30,2016-03-25 04:50:08,3,30.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25646,PRINI,4,2013-07-03 04:19:05,2013-07-13 16:42:03,2013-07-09 16:16:21,3,314.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25647,ISLAT,5,2014-07-07 03:04:14,2014-08-27 15:44:25,2014-07-09 21:44:37,1,30.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25648,BLONP,5,2019-08-06 21:09:08,2019-08-11 05:00:09,2019-08-09 18:03:49,2,292.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25649,MAISD,8,2019-08-19 19:17:44,2019-08-27 06:27:57,2019-08-23 13:10:30,3,191,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25650,AROUT,7,2017-07-02 15:15:06,2017-07-06 08:51:52,2017-07-16 09:05:04,3,345.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25651,LINOD,2,2019-04-07 09:47:10,2019-05-18 08:49:41,2019-04-09 09:08:54,2,108.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25652,TOMSP,9,2019-03-24 06:47:16,2019-05-02 13:20:17,2019-04-05 22:09:11,2,414.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25653,BOLID,6,2023-04-22 17:14:45,2023-04-28 10:06:32,2023-05-01 08:42:51,2,277.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25654,HUNGC,3,2021-09-18 04:20:04,2021-09-22 19:21:21,2021-09-22 16:20:23,1,246.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25655,DUMON,3,2021-09-24 07:03:10,2021-10-03 17:41:49,2021-09-29 02:35:57,2,488,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25656,LINOD,8,2023-07-11 15:37:45,2023-07-18 07:28:04,2023-07-17 11:06:20,1,125.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25657,SPECD,8,2022-04-20 07:57:30,2022-05-12 11:07:38,2022-04-23 14:44:01,2,340,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25658,LAZYK,9,2016-03-12 06:01:29,2016-04-04 18:31:04,2016-03-27 13:36:29,3,164.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25659,MAGAA,1,2016-02-11 06:31:53,2016-03-15 17:33:12,2016-02-27 09:39:48,3,408,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25660,OCEAN,3,2014-05-16 15:41:35,2014-06-05 09:57:29,2014-06-05 08:05:22,2,268,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +25661,THEBI,8,2022-02-27 04:26:11,2022-03-21 13:16:09,2022-03-01 19:47:48,3,231.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25662,LINOD,9,2016-08-11 21:42:14,2016-08-16 13:55:28,2016-08-23 02:17:45,2,386,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25663,FOLKO,8,2015-01-11 12:49:51,2015-02-12 16:41:13,2015-01-18 22:27:30,3,16,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25664,SPECD,5,2015-07-16 10:39:36,2015-08-05 16:04:28,2015-08-02 11:49:39,1,381.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25665,FRANR,9,2017-01-28 19:12:18,2017-03-14 08:18:23,2017-02-06 08:24:14,1,141.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25666,THEBI,1,2020-07-06 17:37:16,2020-07-29 19:32:10,2020-07-14 22:28:08,1,182.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25667,GREAL,8,2020-01-24 20:21:06,2020-02-14 08:37:51,2020-01-28 02:20:58,1,489.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25668,ISLAT,7,2013-12-13 18:37:26,2014-01-24 07:13:06,2014-01-02 18:26:45,2,389.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25669,BSBEV,2,2013-07-04 17:23:43,2013-07-10 04:28:17,2013-07-13 22:35:04,3,373.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25670,WOLZA,4,2016-05-10 14:38:36,2016-05-24 07:13:34,2016-05-11 07:50:44,1,312.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25671,EASTC,2,2013-09-17 00:27:02,2013-09-25 07:04:18,2013-09-18 03:20:40,1,394.25,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25672,TRAIH,9,2015-07-23 09:49:02,2015-08-18 02:14:18,2015-07-24 00:41:51,2,18.25,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +25673,SIMOB,7,2015-06-17 09:41:15,2015-07-07 13:11:53,2015-06-18 14:35:41,1,421,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25674,SEVES,1,2015-05-30 13:37:28,2015-06-11 12:13:29,2015-06-01 21:00:09,3,522.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25675,LETSS,8,2018-11-16 20:46:00,2018-12-07 06:28:20,2018-11-22 04:28:47,1,109,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25676,QUEDE,4,2012-07-31 05:41:11,2012-08-04 14:24:06,2012-08-15 17:39:14,2,423.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25677,BOLID,6,2023-10-27 18:17:38,2023-11-04 03:56:59,2023-10-31 14:48:49,1,196.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25678,WARTH,3,2023-04-29 22:08:21,2023-05-25 08:35:00,2023-04-29 22:43:06,3,274.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25679,RICSU,5,2013-12-07 04:38:11,2013-12-30 09:17:40,2013-12-20 03:45:49,3,561.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25680,QUEEN,1,2012-09-10 18:15:45,2012-09-14 11:29:24,2012-09-18 21:37:19,3,397,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25681,QUEDE,7,2020-02-29 19:55:18,2020-03-22 20:02:03,2020-03-01 01:54:51,2,268.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25682,LAZYK,3,2017-10-13 02:44:27,2017-10-13 07:18:12,2017-10-18 19:24:07,1,355.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +25683,LEHMS,4,2015-10-05 00:52:43,2015-10-14 01:04:05,2015-10-18 18:14:42,3,52.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25684,WILMK,5,2019-04-15 19:41:28,2019-05-17 18:02:39,2019-04-18 15:21:10,3,119.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25685,BOLID,8,2020-01-12 20:37:59,2020-02-22 02:43:26,2020-02-04 14:41:17,1,486.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25686,LILAS,1,2023-01-11 17:23:26,2023-02-16 21:07:01,2023-01-13 04:26:49,1,46.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25687,BOLID,9,2017-09-16 11:37:43,2017-10-23 19:04:26,2017-10-04 23:24:18,3,326.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25688,PRINI,8,2013-03-19 20:04:19,2013-05-05 10:57:45,2013-03-28 18:08:14,1,280,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25689,Val2 ,9,2017-02-01 19:42:30,2017-02-19 01:29:44,2017-02-02 15:08:01,1,498.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25690,RICSU,5,2020-07-30 01:08:09,2020-08-25 23:52:27,2020-08-02 15:49:46,1,62.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25691,TOMSP,5,2017-06-02 04:38:39,2017-06-17 05:15:24,2017-06-06 21:34:20,2,123.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25692,FAMIA,2,2017-06-01 20:18:51,2017-06-02 14:55:49,2017-06-03 08:46:38,3,102,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25693,LAMAI,8,2016-11-13 01:09:24,2016-11-20 14:00:22,2016-11-17 20:59:53,2,65.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25694,SANTG,3,2015-12-16 10:03:02,2016-01-05 10:25:11,2015-12-18 18:24:26,2,479.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25695,WOLZA,1,2014-07-01 13:17:37,2014-08-11 05:12:14,2014-07-06 06:37:09,2,372.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25696,GALED,2,2014-05-05 16:39:05,2014-06-27 23:18:46,2014-05-17 07:26:17,2,151.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25697,PARIS,4,2015-08-19 22:59:17,2015-09-02 03:38:57,2015-08-31 20:04:11,3,348,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25698,WELLI,7,2021-04-20 15:39:47,2021-05-19 09:24:30,2021-05-02 15:54:30,2,398,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25699,HUNGO,9,2021-04-24 12:27:11,2021-05-11 05:19:23,2021-05-05 08:14:07,3,56.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25700,PRINI,2,2017-11-20 14:47:50,2017-12-03 07:06:25,2017-12-02 15:03:07,1,55.5,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +25701,FURIB,8,2020-11-11 05:55:04,2020-11-20 14:06:49,2020-11-16 11:41:03,3,39.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +25702,THECR,5,2016-03-04 07:45:13,2016-03-10 21:59:20,2016-03-17 15:16:51,1,369.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25703,RANCH,6,2019-10-15 16:04:41,2019-10-15 22:50:38,2019-10-20 04:02:07,1,45,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25704,VICTE,7,2021-06-25 06:18:08,2021-07-02 12:49:57,2021-06-25 12:56:47,2,25.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25705,PERIC,2,2019-07-20 05:59:54,2019-08-02 12:02:34,2019-07-21 00:30:51,1,129.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25706,BONAP,1,2022-02-05 03:35:27,2022-02-12 07:10:34,2022-02-15 16:01:21,1,527.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25707,HILAA,2,2016-03-14 06:19:35,2016-04-02 16:47:43,2016-03-23 04:21:46,2,120.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25708,MAISD,8,2018-03-17 20:41:14,2018-04-26 18:05:19,2018-04-08 22:49:00,2,450,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25709,MORGK,4,2023-04-06 13:36:43,2023-04-10 08:50:37,2023-04-14 17:56:45,3,31,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25710,LEHMS,3,2017-03-05 06:44:49,2017-03-10 21:13:47,2017-03-11 18:33:14,1,251.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25711,TRAIH,5,2014-08-21 14:39:03,2014-09-10 13:07:36,2014-09-01 17:27:19,3,42.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25712,SEVES,9,2016-01-07 03:55:18,2016-01-28 18:12:08,2016-01-13 06:41:44,2,259.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25713,SPLIR,1,2013-03-12 12:59:08,2013-04-03 15:29:29,2013-04-11 08:34:17,3,445.75,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25714,PRINI,2,2017-04-25 04:29:17,2017-05-07 22:05:52,2017-04-26 04:12:34,1,391.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25715,THECR,2,2021-03-09 17:01:25,2021-03-14 11:38:33,2021-03-12 14:02:58,2,21.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25716,TOMSP,4,2022-10-21 07:25:20,2022-11-04 05:50:54,2022-10-22 13:38:03,3,145.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25717,VINET,9,2012-08-17 02:19:27,2012-08-27 07:21:32,2012-08-30 10:23:50,3,235.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25718,SEVES,8,2016-05-26 05:01:17,2016-07-10 06:33:16,2016-06-01 09:21:45,2,508.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25719,WELLI,3,2015-03-25 11:51:29,2015-03-31 11:14:05,2015-03-27 06:03:49,3,408.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25720,REGGC,4,2019-01-08 17:16:25,2019-01-27 13:38:09,2019-01-16 05:03:14,3,505,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25721,RATTC,4,2016-12-16 12:36:48,2017-01-27 08:39:21,2016-12-19 10:49:37,1,61,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25722,SPECD,1,2014-10-17 00:58:34,2014-11-09 00:05:32,2014-10-21 02:33:00,2,395.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25723,THECR,8,2015-02-08 18:00:23,2015-02-14 07:20:46,2015-03-02 03:17:21,3,151.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25724,RATTC,8,2012-10-10 23:31:43,2012-10-14 12:35:09,2012-10-12 01:52:47,2,37.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +25725,GALED,4,2020-05-13 13:30:50,2020-06-12 00:35:14,2020-05-14 11:55:52,3,94.5,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25726,CACTU,9,2019-07-15 18:16:55,2019-08-21 21:20:44,2019-07-23 21:03:01,1,316.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25727,BOLID,4,2023-10-18 17:11:14,2023-10-30 04:53:40,2023-11-02 19:11:58,3,232.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25728,VINET,9,2018-07-09 05:43:39,2018-08-14 02:09:56,2018-07-11 01:50:09,1,424.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25729,VICTE,8,2012-07-20 10:59:00,2012-08-07 07:36:26,2012-08-06 04:04:20,2,461.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25730,OLDWO,1,2023-02-21 10:09:36,2023-04-09 22:55:18,2023-03-09 16:06:12,3,374,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25731,BONAP,3,2016-04-13 22:56:42,2016-05-01 00:53:22,2016-04-21 23:25:44,3,176.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25732,NORTS,3,2018-02-18 16:42:44,2018-02-26 18:54:04,2018-02-20 07:27:21,3,222.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25733,DRACD,8,2013-11-11 16:16:29,2013-11-11 22:24:27,2013-11-18 11:44:27,3,242,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25734,FRANK,8,2020-02-22 02:26:57,2020-03-05 06:30:06,2020-03-09 01:48:31,3,450.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25735,TRADH,1,2012-07-15 00:13:44,2012-07-20 21:15:43,2012-07-15 16:32:56,2,66.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25736,GODOS,3,2015-10-26 23:16:18,2015-11-10 05:47:21,2015-11-04 15:33:32,2,202.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25737,OTTIK,5,2017-11-17 20:35:12,2017-11-20 20:43:46,2017-11-23 09:42:37,2,72,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25738,TRADH,7,2016-03-30 10:28:22,2016-04-12 15:01:36,2016-04-13 13:30:53,3,41.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25739,SPLIR,2,2015-01-07 12:15:39,2015-02-10 19:16:14,2015-01-10 05:48:09,3,174.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25740,HUNGC,5,2015-05-02 19:47:26,2015-05-29 14:29:36,2015-05-12 06:59:08,1,439.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25741,FAMIA,6,2023-08-15 21:56:34,2023-08-16 18:11:18,2023-09-03 19:22:12,2,392.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25742,AROUT,2,2014-06-21 22:32:42,2014-07-10 20:40:34,2014-06-24 08:41:40,2,405.25,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25743,TRADH,7,2021-09-30 23:32:28,2021-10-02 03:31:17,2021-10-13 22:35:13,3,250,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25744,TRAIH,7,2019-10-20 19:47:40,2019-10-23 06:44:31,2019-10-21 19:47:33,1,161.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25745,HANAR,6,2015-02-11 12:53:06,2015-02-20 10:58:03,2015-02-14 11:51:52,3,82.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25746,DRACD,6,2014-04-14 13:38:16,2014-04-25 19:33:39,2014-04-18 19:51:48,2,131.5,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25747,PARIS,9,2020-07-21 04:26:14,2020-07-22 04:36:34,2020-07-31 18:36:04,1,349.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25748,AROUT,6,2015-09-25 21:39:40,2015-09-29 06:37:11,2015-10-11 09:30:30,2,410,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +25749,TRAIH,6,2015-03-22 21:42:09,2015-03-28 01:50:01,2015-03-26 16:26:01,2,127.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25750,QUEEN,5,2014-01-22 11:00:39,2014-02-03 10:34:51,2014-01-25 03:14:49,3,390.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25751,LAUGB,2,2012-10-01 00:13:08,2012-10-09 01:55:28,2012-10-01 02:30:21,1,261.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25752,PICCO,6,2021-03-26 20:33:15,2021-04-14 22:25:47,2021-03-27 17:31:31,3,71.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25753,BONAP,6,2012-12-10 17:12:34,2013-01-17 23:50:08,2012-12-11 23:32:58,1,112,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25754,WARTH,6,2013-06-08 09:17:52,2013-06-09 05:27:45,2013-06-14 16:06:15,1,169.75,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25755,WELLI,9,2019-12-06 07:41:45,2019-12-19 17:00:46,2019-12-29 10:13:06,3,250.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25756,FOLKO,2,2019-07-03 02:23:08,2019-07-11 21:07:09,2019-07-19 01:09:57,1,317,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25757,HUNGO,7,2019-01-25 10:54:22,2019-02-12 17:45:46,2019-01-26 12:45:31,2,193.25,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25758,ANATR,3,2018-12-02 12:49:27,2018-12-26 20:08:48,2018-12-10 20:11:25,3,208.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25759,HANAR,6,2013-05-28 09:26:15,2013-07-13 11:15:59,2013-05-29 21:07:58,2,285.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25760,TRADH,6,2014-08-09 10:49:09,2014-09-08 12:59:46,2014-08-16 17:02:12,3,308.75,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25761,FURIB,5,2017-12-14 09:24:21,2017-12-28 14:12:55,2017-12-27 21:26:02,3,76,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25762,FRANS,1,2013-09-27 18:51:22,2013-10-22 08:03:40,2013-10-04 21:22:19,3,186.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25763,CACTU,3,2018-03-29 04:58:43,2018-04-17 22:30:01,2018-04-04 11:10:51,3,105.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25764,TOMSP,3,2019-04-16 01:49:09,2019-04-21 17:30:08,2019-04-22 20:35:17,1,240.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25765,BLAUS,8,2020-06-16 12:08:42,2020-06-23 01:43:46,2020-06-23 01:47:29,3,454.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25766,BSBEV,2,2013-10-14 23:50:12,2013-11-10 06:49:06,2013-10-16 08:06:15,1,193,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25767,FOLIG,8,2018-05-03 00:39:20,2018-06-01 01:11:09,2018-05-03 18:44:08,2,142,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25768,FURIB,3,2018-12-05 11:32:15,2018-12-12 19:41:22,2018-12-06 12:06:17,1,346.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25769,GALED,7,2014-01-04 01:34:45,2014-01-15 02:58:59,2014-01-12 15:45:03,3,308.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25770,TOMSP,2,2015-10-19 17:20:55,2015-11-12 02:26:25,2015-11-08 15:51:31,3,340.5,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25771,SAVEA,3,2017-01-16 10:24:59,2017-03-03 11:29:54,2017-01-16 18:03:38,3,301.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25772,SPECD,1,2020-01-01 08:56:12,2020-01-07 20:49:39,2020-01-01 13:58:20,3,470.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25773,BONAP,8,2020-06-07 17:22:18,2020-08-04 02:50:03,2020-06-08 13:02:08,2,36.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25774,MAISD,8,2019-12-22 13:28:46,2020-01-03 08:40:03,2019-12-23 11:22:03,2,282.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25775,GOURL,3,2023-09-13 12:45:30,2023-09-25 08:11:50,2023-09-15 12:00:47,3,82,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25776,REGGC,2,2017-01-19 14:14:45,2017-02-01 08:27:22,2017-02-11 03:13:08,3,212.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +25777,BERGS,9,2021-03-07 02:12:42,2021-03-31 23:36:32,2021-03-10 11:25:06,2,205.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25778,BSBEV,8,2018-08-10 03:21:03,2018-08-24 16:22:19,2018-08-27 18:56:57,1,286.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25779,THEBI,4,2017-09-25 09:13:13,2017-10-25 11:26:21,2017-10-10 11:17:39,1,436.75,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25780,HILAA,1,2016-02-27 22:19:01,2016-03-19 14:55:57,2016-02-28 21:05:28,1,416,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25781,OLDWO,3,2017-02-12 14:04:05,2017-02-18 02:13:15,2017-02-14 03:37:27,1,120.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25782,MAGAA,8,2016-08-30 08:25:12,2016-09-28 17:18:12,2016-09-15 10:51:46,2,168.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +25783,MORGK,3,2019-01-06 09:16:13,2019-01-08 05:00:49,2019-01-13 08:07:09,3,42.75,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +25784,FRANK,3,2015-09-29 08:53:25,2015-10-13 16:26:37,2015-10-25 12:22:55,3,178.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +25785,HUNGO,6,2021-06-17 17:13:15,2021-06-29 04:01:08,2021-06-19 07:38:53,2,354.25,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25786,GODOS,6,2020-07-12 22:07:20,2020-08-19 10:00:31,2020-07-15 21:04:32,1,344.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25787,MAISD,1,2021-04-27 20:16:52,2021-06-13 03:57:20,2021-05-07 18:14:27,2,376.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25788,REGGC,7,2023-09-01 20:47:26,2023-10-05 12:51:59,2023-09-02 21:43:05,2,392.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25789,BLAUS,5,2020-01-30 05:43:22,2020-02-13 07:21:27,2020-02-09 12:20:54,2,365.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25790,TORTU,9,2015-11-08 10:35:06,2015-12-01 15:12:29,2015-11-08 23:59:12,3,359.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25791,BLONP,2,2013-11-24 17:59:56,2013-12-06 09:56:19,2013-11-28 08:57:30,3,314.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25792,FURIB,3,2016-04-09 22:47:19,2016-04-24 23:36:30,2016-04-11 08:44:19,1,240,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25793,SPECD,3,2020-10-12 05:29:44,2020-10-17 03:41:32,2020-10-20 12:09:34,3,62.5,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25794,Val2 ,2,2021-05-22 12:19:03,2021-06-06 17:54:50,2021-06-17 02:45:17,3,103.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25795,PARIS,5,2019-04-05 09:53:56,2019-04-17 00:09:09,2019-04-23 15:56:40,1,288.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25796,WARTH,3,2013-12-29 23:58:08,2014-02-02 13:04:17,2014-01-01 09:03:19,3,396.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25797,TRAIH,3,2017-11-17 06:29:59,2017-11-18 06:25:58,2017-12-05 20:02:47,1,123.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25798,HUNGO,2,2022-03-10 15:59:09,2022-03-25 07:48:10,2022-03-17 00:43:40,2,80.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25799,GODOS,7,2013-09-24 07:34:09,2013-09-25 07:03:29,2013-09-27 02:16:19,1,395.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +25800,TORTU,5,2016-02-24 10:12:01,2016-04-08 17:40:55,2016-03-05 12:56:34,1,282.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25801,GREAL,6,2020-02-08 21:24:55,2020-02-19 11:09:11,2020-02-16 12:23:21,3,420.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25802,ERNSH,3,2023-04-15 11:23:31,2023-04-17 00:01:00,2023-04-15 20:23:57,3,303.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25803,COMMI,5,2016-07-30 16:17:37,2016-08-06 14:02:50,2016-07-31 06:45:13,3,381.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25804,ANTON,3,2023-03-04 13:14:04,2023-04-11 09:21:02,2023-03-09 10:06:40,3,260,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25805,WILMK,9,2014-12-02 19:24:53,2014-12-28 03:22:55,2014-12-13 23:25:00,3,449.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25806,WANDK,4,2015-12-05 23:35:48,2015-12-25 17:55:18,2015-12-19 05:19:22,1,101,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25807,PRINI,9,2013-06-22 06:25:00,2013-07-04 22:25:23,2013-06-23 00:21:10,3,291.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25808,ALFKI,1,2020-09-12 03:11:50,2020-09-26 15:27:27,2020-09-13 17:29:38,2,156.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25809,PARIS,6,2022-11-19 15:37:31,2022-12-07 13:21:46,2022-11-19 16:30:13,2,283,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25810,LONEP,4,2017-02-15 01:20:02,2017-03-11 14:48:05,2017-02-24 20:54:06,3,245.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25811,BONAP,9,2016-09-27 09:58:28,2016-09-27 21:14:23,2016-09-28 01:55:19,1,336.75,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25812,FOLIG,5,2019-03-10 02:55:19,2019-03-22 22:21:54,2019-03-12 15:41:58,2,355.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25813,BSBEV,7,2022-06-08 15:39:53,2022-06-14 00:42:11,2022-06-10 16:16:11,1,294,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25814,REGGC,6,2023-03-18 00:44:10,2023-04-03 04:14:45,2023-03-28 09:54:39,1,123,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25815,KOENE,3,2021-08-01 04:36:22,2021-08-09 21:01:19,2021-08-03 03:32:50,2,390.5,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25816,RICSU,5,2013-08-16 13:19:04,2013-08-25 23:43:51,2013-08-27 06:45:26,1,376.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25817,LONEP,7,2022-11-08 23:58:15,2022-12-07 01:07:57,2022-11-13 23:08:59,3,390.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25818,TORTU,8,2014-02-22 15:06:27,2014-02-25 16:01:37,2014-03-09 06:28:26,3,53.25,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25819,FRANR,3,2016-02-16 01:04:59,2016-03-24 00:47:19,2016-02-21 17:54:19,2,132,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25820,WARTH,7,2018-06-01 19:41:14,2018-06-17 03:20:03,2018-06-05 12:40:13,2,253,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25821,FAMIA,2,2016-04-03 21:46:28,2016-05-01 22:19:01,2016-04-09 19:36:38,3,195.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25822,MAISD,4,2023-02-28 20:34:24,2023-04-15 21:54:45,2023-03-01 12:38:09,3,200,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25823,RATTC,5,2021-06-15 19:11:49,2021-06-28 22:08:13,2021-06-30 23:07:49,2,388,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +25824,ERNSH,7,2017-03-16 22:36:01,2017-03-25 08:23:43,2017-04-02 15:42:00,3,114,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25825,SUPRD,6,2016-11-22 07:27:11,2016-11-25 20:16:06,2016-11-28 06:53:52,1,443.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25826,RATTC,1,2022-03-16 17:33:12,2022-04-18 08:41:40,2022-03-26 09:25:40,3,165.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25827,MAISD,1,2021-09-23 05:00:37,2021-09-25 06:44:31,2021-09-24 20:35:50,3,459.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25828,FRANK,5,2022-11-03 06:11:49,2022-12-13 14:19:02,2022-11-08 04:23:52,1,164,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25829,WARTH,4,2013-04-24 12:29:23,2013-05-20 07:25:09,2013-05-05 20:36:37,2,407.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25830,FRANS,2,2020-11-09 00:20:12,2020-11-11 11:56:45,2020-11-09 02:00:42,3,374,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25831,SANTG,2,2016-12-15 16:57:23,2017-01-07 04:18:38,2017-01-01 17:23:15,1,101.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25832,OLDWO,8,2012-11-22 22:47:40,2012-12-17 05:13:09,2012-12-02 19:00:41,1,37.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25833,ISLAT,8,2019-03-21 20:14:29,2019-03-23 17:18:34,2019-04-09 03:17:42,3,21.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25834,KOENE,5,2015-03-02 04:24:59,2015-03-20 09:33:16,2015-03-13 21:10:30,2,441.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25835,LILAS,6,2013-04-03 15:47:06,2013-04-27 02:32:45,2013-04-13 10:17:33,2,465.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25836,BOLID,5,2014-07-21 06:50:49,2014-08-05 04:33:37,2014-08-06 09:02:22,2,234.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +25837,CHOPS,1,2022-05-18 07:24:20,2022-05-19 16:20:26,2022-05-20 23:05:35,1,491.5,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +25838,LETSS,9,2018-10-14 22:42:12,2018-10-30 14:57:05,2018-10-25 09:16:44,2,456,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +25839,COMMI,1,2013-11-27 23:30:16,2013-12-12 23:08:12,2013-12-14 09:16:05,2,329.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25840,QUEEN,6,2020-11-01 16:10:56,2020-11-12 02:13:59,2020-11-12 04:05:39,1,108.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25841,GODOS,9,2015-05-02 23:28:05,2015-05-26 18:15:24,2015-05-04 14:48:34,1,394.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25842,SANTG,8,2022-09-15 19:17:09,2022-10-10 02:11:32,2022-09-22 10:21:51,1,255.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25843,SIMOB,1,2014-03-01 02:45:06,2014-04-06 20:44:02,2014-03-14 12:05:57,1,286.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25844,BERGS,4,2021-09-13 16:48:48,2021-09-14 17:22:44,2021-09-25 14:26:03,1,155.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25845,AROUT,3,2019-08-08 23:19:22,2019-08-21 03:26:47,2019-08-17 21:41:50,2,233.5,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25846,HUNGC,6,2019-04-30 04:05:11,2019-06-19 18:19:01,2019-04-30 18:19:59,3,305,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25847,QUEEN,8,2018-11-07 01:35:09,2018-11-15 17:13:17,2018-11-09 06:24:43,2,375,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +25848,WANDK,6,2019-12-04 08:14:04,2019-12-29 19:13:53,2019-12-16 09:27:06,3,187.75,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25849,HILAA,2,2022-04-05 14:24:13,2022-04-25 03:45:06,2022-04-09 16:23:23,2,81.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +25850,THECR,2,2016-02-22 05:56:29,2016-02-25 19:17:53,2016-02-27 14:33:21,2,27,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25851,PARIS,2,2022-11-05 23:44:32,2022-12-17 08:09:05,2022-11-08 12:31:53,3,68,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25852,QUEDE,4,2021-02-10 06:19:23,2021-02-15 13:03:26,2021-03-01 23:02:43,1,146.25,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25853,LETSS,2,2021-03-10 23:30:18,2021-03-27 13:47:28,2021-03-17 07:03:25,1,185.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25854,PERIC,8,2014-10-14 02:44:40,2014-11-26 23:25:14,2014-10-22 23:31:03,1,280,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +25855,RATTC,9,2014-01-22 01:09:18,2014-01-28 19:37:08,2014-02-11 09:40:03,3,481.25,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +25856,TRADH,8,2022-12-24 23:54:03,2023-01-01 17:36:40,2022-12-26 23:02:20,1,488,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25857,BSBEV,2,2013-06-27 16:15:08,2013-07-22 09:13:04,2013-07-02 08:10:12,2,444.75,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25858,MAGAA,8,2019-09-13 15:59:56,2019-09-27 16:29:43,2019-09-26 10:28:46,3,433,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25859,LAUGB,2,2020-12-31 11:09:18,2021-01-12 05:59:16,2021-01-08 01:16:47,3,67.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25860,ROMEY,7,2019-08-06 23:41:20,2019-08-19 23:05:01,2019-08-10 09:04:39,2,205.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25861,SPECD,7,2020-04-04 01:01:53,2020-04-17 15:49:17,2020-04-05 13:30:25,3,150.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25862,TRADH,5,2016-09-26 14:38:38,2016-10-28 10:20:45,2016-10-13 19:36:23,1,299.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25863,ERNSH,3,2020-10-08 02:53:05,2020-10-19 18:37:41,2020-10-19 02:28:50,3,249,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25864,PRINI,1,2023-07-12 07:01:14,2023-07-26 16:14:08,2023-07-17 12:47:21,1,402.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25865,CHOPS,9,2014-04-10 18:45:11,2014-05-30 17:46:55,2014-04-12 14:44:19,1,350.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25866,WOLZA,8,2023-03-29 16:39:17,2023-04-04 18:04:12,2023-04-07 21:45:00,1,19.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25867,SPECD,1,2016-12-01 04:14:05,2016-12-22 02:03:12,2016-12-02 04:50:42,3,186.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25868,ROMEY,4,2023-08-01 21:54:08,2023-09-20 23:45:55,2023-08-07 02:36:57,1,383,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +25869,FURIB,7,2020-08-27 13:37:05,2020-09-30 11:57:45,2020-09-11 03:30:57,1,298,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +25870,FRANR,2,2020-12-07 04:23:09,2021-01-14 20:49:45,2020-12-12 08:18:36,1,447.25,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25871,LAUGB,9,2021-03-28 06:43:45,2021-04-06 13:34:59,2021-04-08 04:31:32,1,164.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +25872,SPLIR,9,2017-01-30 19:57:16,2017-03-24 18:46:13,2017-02-13 08:45:13,3,224.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25873,RATTC,8,2016-01-16 18:11:55,2016-03-05 12:03:31,2016-01-18 09:07:24,3,61.5,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25874,GODOS,2,2019-05-16 13:53:28,2019-05-30 04:53:48,2019-05-26 19:40:06,2,235.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25875,ISLAT,7,2015-08-28 10:28:58,2015-09-27 15:28:46,2015-08-31 09:25:16,2,448.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +25876,RATTC,2,2018-05-05 04:15:07,2018-06-04 09:05:34,2018-05-17 14:09:54,2,285.75,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +25877,NORTS,9,2012-07-11 21:17:36,2012-08-03 12:10:34,2012-07-19 19:20:56,2,319.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25878,LONEP,5,2021-12-23 20:49:32,2022-01-10 23:50:37,2021-12-26 10:24:57,1,392.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25879,RICAR,3,2020-10-13 12:48:58,2020-11-04 03:13:54,2020-10-25 16:52:51,3,463.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25880,OCEAN,8,2013-11-06 20:52:13,2013-11-08 15:01:03,2013-11-14 20:46:12,3,398.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +25881,LACOR,3,2015-03-02 01:39:42,2015-04-06 11:11:55,2015-03-23 09:08:42,1,51.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25882,FRANR,1,2016-03-26 08:37:23,2016-04-06 22:22:05,2016-04-10 00:51:28,1,389.75,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +25883,LEHMS,9,2017-12-06 07:41:04,2017-12-22 21:41:50,2017-12-16 05:05:17,2,148.75,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25884,GROSR,2,2013-09-24 02:33:21,2013-11-04 13:50:45,2013-09-29 14:39:16,1,144.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25885,BSBEV,3,2016-07-25 04:19:40,2016-08-28 13:55:14,2016-08-11 12:42:42,2,390.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +25886,SIMOB,4,2012-10-01 05:24:13,2012-10-22 03:18:08,2012-10-18 20:32:05,1,100.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25887,GALED,2,2021-11-24 08:50:32,2022-01-13 08:02:23,2021-12-08 08:30:09,1,417,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +25888,BLONP,9,2022-11-28 23:36:21,2022-12-01 01:42:46,2022-12-05 16:56:37,3,407.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +25889,FRANR,4,2020-09-02 09:19:19,2020-09-07 18:47:18,2020-09-19 15:39:02,1,428.5,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25890,FRANS,3,2015-11-07 18:39:18,2015-12-16 01:01:31,2015-11-08 11:12:07,2,320.25,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +25891,RICSU,6,2023-09-15 09:07:22,2023-10-21 19:14:50,2023-09-25 08:19:53,2,125,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25892,LETSS,1,2015-09-19 01:32:26,2015-11-01 11:20:58,2015-09-25 16:55:40,3,55.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25893,ALFKI,8,2019-04-01 05:05:45,2019-04-15 02:18:26,2019-04-17 17:10:24,1,224.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25894,FRANK,6,2018-11-27 17:33:12,2019-01-02 02:21:21,2018-12-02 07:40:44,2,469.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +25895,ERNSH,4,2023-01-31 09:22:50,2023-03-19 11:44:48,2023-02-15 02:31:48,3,446.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25896,GREAL,9,2019-01-25 13:45:51,2019-03-10 00:26:14,2019-02-04 07:46:01,2,286.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25897,FRANR,4,2016-02-22 12:58:49,2016-03-23 17:56:14,2016-03-12 01:13:40,3,47.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25898,NORTS,9,2022-07-01 20:32:25,2022-08-01 15:38:22,2022-07-08 01:02:16,1,266.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25899,BERGS,6,2021-03-29 04:49:01,2021-05-05 10:22:41,2021-03-30 10:24:06,3,499.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25900,GOURL,1,2018-06-09 21:15:36,2018-07-09 00:36:15,2018-06-30 07:27:57,2,151,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25901,FRANR,9,2023-07-21 14:39:54,2023-07-22 13:47:02,2023-07-30 13:39:47,2,237.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +25902,FISSA,8,2023-05-11 09:30:59,2023-06-24 12:32:11,2023-05-12 17:22:29,3,211.25,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25903,THEBI,3,2013-12-15 01:08:06,2013-12-21 02:58:36,2013-12-17 12:46:39,3,257.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +25904,DRACD,9,2017-12-10 22:03:16,2017-12-17 08:58:46,2017-12-16 02:27:10,2,231.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25905,FURIB,5,2018-04-26 12:27:08,2018-05-16 05:04:53,2018-05-21 11:52:34,2,98.75,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25906,CENTC,7,2016-07-04 10:33:02,2016-07-20 12:40:44,2016-07-27 15:13:31,1,76.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +25907,QUEEN,4,2013-05-09 14:04:07,2013-05-26 04:24:03,2013-05-10 09:29:52,3,393,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +25908,TORTU,5,2018-08-28 09:21:55,2018-10-03 07:43:22,2018-08-31 01:12:22,2,377.5,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25909,AROUT,2,2023-08-13 04:33:54,2023-09-13 13:22:00,2023-08-17 00:11:40,3,56.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +25910,LEHMS,6,2018-08-26 04:48:14,2018-09-24 04:50:51,2018-09-01 12:21:29,2,283.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25911,HUNGO,9,2015-05-03 15:22:54,2015-06-15 10:29:43,2015-05-07 11:33:30,1,426.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25912,TOMSP,4,2018-01-02 17:58:54,2018-01-20 06:08:20,2018-01-11 05:26:58,2,139,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25913,PICCO,5,2022-11-20 00:14:30,2022-11-20 07:09:41,2022-12-04 17:23:00,3,323.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +25914,RICAR,8,2021-08-30 13:11:37,2021-10-15 17:55:13,2021-09-09 04:17:07,1,438.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25915,ALFKI,1,2023-02-05 01:51:50,2023-03-11 08:38:28,2023-02-23 10:18:47,1,11,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25916,FRANK,4,2015-08-21 09:31:26,2015-10-09 13:23:27,2015-08-22 17:11:03,2,296.5,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +25917,BLAUS,2,2018-12-27 01:44:31,2018-12-27 07:43:03,2018-12-29 03:17:10,2,403,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25918,VICTE,2,2019-01-06 13:30:41,2019-02-02 00:48:11,2019-01-15 08:58:15,3,397,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25919,TRAIH,2,2012-09-10 03:30:38,2012-09-13 09:44:53,2012-09-12 14:24:50,3,191,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +25920,CHOPS,8,2016-03-03 05:49:23,2016-04-08 05:13:42,2016-03-04 01:02:40,3,214.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25921,CONSH,6,2015-11-12 22:04:11,2015-12-23 11:28:09,2015-11-17 06:18:40,1,179.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25922,CENTC,6,2016-09-20 09:59:14,2016-09-21 09:43:45,2016-10-06 13:38:59,2,52,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25923,ERNSH,2,2023-08-31 22:57:13,2023-09-11 00:25:21,2023-09-08 12:32:04,3,128.75,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +25924,AROUT,1,2016-11-21 21:18:39,2016-12-21 16:44:10,2016-12-13 09:19:34,2,287.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +25925,FRANK,9,2019-03-07 14:54:44,2019-04-07 16:59:26,2019-04-03 11:17:02,1,127.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +25926,FURIB,4,2019-04-10 11:52:29,2019-05-23 14:21:14,2019-05-04 15:27:12,3,354.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25927,VAFFE,9,2013-06-25 09:39:19,2013-07-03 04:45:58,2013-06-30 08:39:44,1,357.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25928,LETSS,6,2020-03-04 00:44:44,2020-03-17 03:20:43,2020-03-08 03:55:42,2,380.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25929,ANATR,4,2019-09-19 23:51:37,2019-10-31 08:01:37,2019-10-02 14:26:51,2,251.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25930,QUEDE,8,2012-11-25 19:57:35,2013-01-04 07:53:29,2012-12-10 23:12:33,3,259.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25931,HILAA,1,2016-07-23 21:11:50,2016-07-26 12:09:11,2016-08-04 11:05:02,2,348.75,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25932,FOLIG,4,2023-10-15 16:03:36,2023-10-28 15:24:13,2023-11-03 03:24:08,2,462.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +25933,LEHMS,6,2020-03-12 12:48:58,2020-03-12 17:28:22,2020-03-15 21:04:04,1,60.5,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25934,REGGC,9,2017-09-26 19:59:12,2017-10-26 17:29:03,2017-10-04 00:24:09,1,280,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25935,TORTU,8,2018-11-08 07:57:47,2018-11-09 20:15:39,2018-11-17 03:51:00,2,367.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25936,VALON,9,2018-07-07 14:21:52,2018-07-31 16:09:17,2018-07-18 14:03:14,2,20.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25937,LACOR,1,2013-01-14 05:26:52,2013-02-17 14:42:41,2013-01-14 06:47:49,2,121.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +25938,FAMIA,5,2020-04-07 14:32:35,2020-05-01 04:33:46,2020-04-07 20:52:38,1,371.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +25939,SIMOB,1,2012-07-12 12:10:41,2012-08-18 17:43:36,2012-07-19 19:52:46,1,415,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25940,BOLID,6,2012-07-24 05:38:02,2012-08-20 22:38:15,2012-07-27 07:55:46,1,142.5,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +25941,FOLIG,7,2021-05-22 00:02:45,2021-06-27 20:41:39,2021-05-27 07:05:31,2,257.75,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25942,DUMON,6,2023-03-05 16:40:41,2023-03-18 02:05:39,2023-03-13 06:06:40,3,33.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +25943,THEBI,8,2018-12-31 06:35:27,2019-01-01 19:32:54,2019-01-11 16:31:57,3,281.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +25944,HILAA,9,2013-11-15 18:03:26,2013-11-29 00:36:05,2013-11-17 01:23:50,3,158.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25945,KOENE,1,2014-11-16 07:24:23,2014-12-08 16:43:51,2014-11-18 00:19:27,3,19.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +25946,CENTC,7,2019-02-10 06:14:44,2019-02-10 11:45:57,2019-02-27 08:12:02,2,27.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25947,WHITC,5,2021-10-02 13:17:28,2021-10-04 03:24:18,2021-10-25 20:40:26,1,419,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25948,TORTU,7,2019-12-09 00:17:21,2020-01-12 07:44:42,2019-12-09 11:33:47,2,144,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +25949,VINET,1,2016-01-02 08:15:53,2016-01-19 18:46:08,2016-01-02 11:45:57,2,358,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25950,VINET,3,2023-01-02 19:16:04,2023-01-12 11:29:58,2023-01-12 02:47:51,3,452,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +25951,LINOD,7,2020-08-25 10:58:28,2020-09-05 20:25:42,2020-09-01 10:04:23,1,45.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +25952,LACOR,7,2017-12-27 07:51:27,2018-02-14 22:07:39,2018-01-07 11:28:44,3,239.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +25953,LINOD,6,2021-12-10 21:01:24,2022-01-13 13:31:20,2021-12-29 15:05:28,1,363.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +25954,VALON,7,2013-01-30 06:27:51,2013-02-05 06:21:43,2013-02-17 22:49:12,3,347.5,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +25955,QUEEN,8,2021-05-30 22:22:50,2021-06-11 09:39:14,2021-06-03 16:25:43,2,189.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +25956,ANTON,4,2014-02-28 13:02:20,2014-03-01 02:23:58,2014-03-10 02:20:23,3,354.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +25957,GALED,6,2020-03-17 21:37:39,2020-03-21 11:26:29,2020-03-30 09:28:27,1,246.75,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +25958,VALON,9,2023-01-03 17:27:15,2023-01-21 01:53:27,2023-01-06 22:12:33,2,151.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +25959,VALON,9,2023-05-28 11:24:26,2023-06-15 09:13:24,2023-05-31 04:32:38,3,462.25,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +25960,MAISD,5,2014-02-24 17:56:42,2014-03-12 05:10:58,2014-03-12 21:34:39,3,431.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25961,MEREP,5,2014-10-07 03:14:47,2014-10-19 02:18:15,2014-10-08 03:28:56,1,395.5,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +25962,LETSS,6,2018-10-29 00:09:08,2018-10-30 20:31:30,2018-10-31 11:11:14,1,27.75,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +25963,RICAR,2,2014-05-31 03:44:23,2014-07-03 11:28:26,2014-06-03 02:27:34,1,319.5,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25964,AROUT,1,2018-12-21 16:13:02,2019-01-09 03:04:22,2018-12-28 04:58:32,3,491,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25965,TRADH,6,2018-07-18 12:22:56,2018-08-28 18:45:57,2018-07-23 15:41:09,3,66.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +25966,OCEAN,1,2021-06-04 02:35:44,2021-06-21 23:11:07,2021-06-13 18:18:22,3,60.75,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +25967,ANATR,5,2014-01-21 09:34:10,2014-02-06 20:38:27,2014-01-24 10:59:08,1,148.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +25968,VALON,3,2023-10-14 06:05:23,2023-11-01 15:29:10,2023-10-28 17:18:12,1,433.75,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +25969,FOLIG,8,2015-11-04 01:09:26,2015-11-05 01:00:56,2015-11-23 17:57:36,1,67.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +25970,ALFKI,8,2014-05-30 03:45:30,2014-06-12 15:55:28,2014-06-01 01:30:12,2,360,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25971,KOENE,1,2022-05-07 08:56:16,2022-05-23 11:39:47,2022-05-07 09:17:33,1,393,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +25972,HUNGC,6,2012-10-12 07:52:20,2012-12-04 04:14:49,2012-10-12 21:10:48,3,81.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +25973,ROMEY,2,2016-11-14 12:18:04,2016-11-24 10:48:46,2016-11-21 21:20:21,3,148.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +25974,LINOD,3,2021-11-17 01:18:56,2021-12-01 04:16:44,2021-12-01 22:37:24,2,251.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25975,MAISD,4,2017-10-19 20:11:08,2017-10-28 20:21:52,2017-11-03 21:30:30,2,421.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +25976,NORTS,4,2013-07-06 13:35:51,2013-07-08 10:13:06,2013-07-16 09:43:53,3,482.75,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +25977,RICSU,8,2013-07-07 00:59:10,2013-07-16 00:01:55,2013-07-23 00:44:48,2,100.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +25978,MORGK,3,2021-03-24 04:53:03,2021-05-08 22:57:02,2021-04-03 12:21:55,1,226.25,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +25979,PARIS,6,2014-04-07 19:36:42,2014-04-21 10:56:12,2014-04-11 17:48:45,2,223,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +25980,SPECD,5,2023-07-24 02:31:08,2023-08-09 17:06:08,2023-07-30 17:01:25,1,484.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25981,VINET,4,2022-05-04 04:56:55,2022-05-29 06:59:01,2022-05-17 16:07:19,1,203.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +25982,WILMK,2,2014-06-02 01:05:05,2014-06-28 07:49:31,2014-06-22 12:39:29,2,318.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +25983,Val2 ,9,2016-03-14 21:13:54,2016-04-04 17:05:01,2016-03-19 00:57:50,2,87.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +25984,HUNGO,8,2020-08-09 12:38:30,2020-08-21 18:22:07,2020-08-25 06:22:08,2,413,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +25985,ANTON,4,2018-05-09 17:45:39,2018-06-11 17:22:59,2018-05-10 23:16:19,3,408.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +25986,SEVES,1,2015-10-08 05:32:58,2015-10-28 13:05:28,2015-10-09 20:34:23,2,96.75,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +25987,SIMOB,9,2020-02-28 16:21:19,2020-03-04 17:39:29,2020-02-29 07:48:47,1,302.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +25988,ROMEY,7,2015-04-04 21:45:12,2015-04-26 20:12:08,2015-04-13 11:48:23,1,135.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +25989,MEREP,9,2018-01-03 00:18:31,2018-01-23 17:28:26,2018-01-03 03:02:27,1,103.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +25990,VAFFE,4,2017-05-04 20:22:51,2017-06-14 20:10:33,2017-05-15 21:26:13,1,216.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +25991,FRANS,5,2018-01-11 11:51:43,2018-01-29 12:02:14,2018-02-04 08:09:33,3,379.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +25992,RICSU,4,2017-05-29 20:20:56,2017-06-05 07:13:23,2017-06-03 07:41:19,3,170.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25993,WANDK,8,2015-01-03 12:00:12,2015-02-19 05:18:20,2015-01-25 08:59:00,2,72.5,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +25994,WOLZA,4,2021-07-28 09:14:17,2021-08-14 15:11:19,2021-07-30 18:35:56,1,438.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +25995,FRANK,4,2023-10-19 23:28:45,2023-11-12 18:22:02,2023-10-25 07:44:30,2,504.5,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +25996,RANCH,3,2012-11-26 15:34:24,2012-12-04 03:44:56,2012-12-11 08:31:53,3,376.25,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +25997,SAVEA,4,2016-01-02 23:24:06,2016-01-08 10:58:34,2016-01-06 09:16:17,3,451,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +25998,PRINI,6,2017-04-17 00:03:54,2017-05-17 15:01:19,2017-04-18 06:40:54,1,108.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +25999,SEVES,2,2012-12-21 18:20:02,2013-01-03 04:27:06,2012-12-27 01:42:58,2,204.5,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +26000,Val2 ,7,2015-06-07 21:31:46,2015-06-09 02:47:32,2015-06-08 15:40:08,1,112.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26001,FOLKO,8,2015-12-06 01:28:13,2015-12-17 21:24:57,2015-12-07 08:00:03,3,319,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26002,CONSH,3,2017-04-07 06:23:05,2017-04-30 05:47:39,2017-04-25 06:17:34,1,294.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26003,LEHMS,6,2016-04-11 04:10:13,2016-05-07 11:36:20,2016-04-12 17:18:49,3,243.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +26004,SPECD,5,2015-10-18 17:57:16,2015-10-26 11:44:23,2015-11-10 09:38:41,2,446.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +26005,GREAL,4,2014-12-04 18:05:53,2014-12-13 01:03:14,2014-12-05 20:25:46,2,483.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26006,WELLI,1,2018-06-20 07:17:07,2018-07-22 01:58:23,2018-06-23 08:02:10,1,303.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26007,REGGC,8,2013-08-05 07:05:59,2013-08-07 04:21:50,2013-08-18 03:24:10,1,455,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26008,MEREP,7,2013-04-01 08:57:24,2013-04-27 00:09:39,2013-04-17 12:22:35,2,123.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26009,DUMON,4,2017-05-20 10:46:07,2017-06-27 02:13:53,2017-05-21 15:28:45,3,111.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26010,OCEAN,9,2021-07-07 20:00:13,2021-07-13 17:30:50,2021-07-30 16:05:01,2,270,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26011,RANCH,3,2014-09-21 09:32:41,2014-09-21 11:41:21,2014-09-24 12:13:43,1,98.75,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +26012,SPECD,7,2018-10-01 05:58:40,2018-11-14 17:23:01,2018-10-02 22:55:15,3,395.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26013,CENTC,1,2015-05-28 11:58:32,2015-05-29 13:21:40,2015-06-13 05:15:13,1,273.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26014,WOLZA,8,2019-11-05 23:47:28,2019-11-24 14:14:02,2019-11-07 17:19:44,1,360.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26015,NORTS,5,2015-01-14 14:29:57,2015-01-31 05:03:14,2015-01-22 01:54:04,2,144,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +26016,FISSA,9,2012-11-18 04:47:55,2012-11-20 06:51:03,2012-11-24 23:47:50,2,426.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26017,TOMSP,8,2018-09-02 20:01:08,2018-09-20 00:07:07,2018-09-21 02:26:51,1,418.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26018,VAFFE,3,2021-04-19 02:46:36,2021-04-20 06:55:07,2021-04-20 21:15:24,3,37,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26019,AROUT,9,2016-06-21 16:55:52,2016-08-08 22:43:21,2016-06-23 11:37:24,2,463.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26020,Val2 ,4,2014-06-29 18:07:33,2014-07-03 05:18:49,2014-07-02 10:28:23,2,334.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26021,BSBEV,7,2012-12-16 12:01:18,2012-12-27 06:16:50,2012-12-28 11:13:14,1,427.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +26022,AROUT,4,2019-05-01 18:48:39,2019-05-30 04:53:33,2019-05-18 08:08:22,3,342.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26023,LAZYK,8,2017-09-27 09:03:29,2017-10-16 16:25:04,2017-10-19 07:38:33,1,140.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26024,ROMEY,4,2017-12-20 02:50:53,2018-02-10 02:12:57,2017-12-31 01:26:55,2,302.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +26025,LAUGB,5,2013-08-15 17:17:06,2013-08-26 03:34:43,2013-08-25 09:59:16,3,21.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26026,SANTG,5,2017-12-12 20:48:56,2017-12-18 04:45:07,2018-01-05 23:48:00,3,153,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +26027,LINOD,6,2018-02-02 03:50:21,2018-02-11 04:22:10,2018-02-02 19:26:35,2,419.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +26028,GROSR,3,2016-05-07 09:17:50,2016-06-22 18:24:20,2016-05-20 17:05:23,1,18.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +26029,RICAR,4,2014-12-02 15:41:17,2014-12-04 23:05:34,2014-12-10 03:03:51,3,281,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +26030,CHOPS,9,2013-07-29 16:09:07,2013-08-10 06:09:30,2013-08-21 08:34:38,3,396.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26031,BLAUS,9,2013-03-03 08:02:14,2013-03-28 18:04:20,2013-03-08 00:47:41,3,178.5,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +26032,WOLZA,6,2015-06-16 03:41:18,2015-06-29 04:04:41,2015-07-11 07:14:30,1,168.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +26033,GROSR,6,2014-07-14 06:49:08,2014-07-18 19:50:58,2014-07-20 22:17:37,3,374.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +26034,DUMON,7,2017-10-31 20:40:38,2017-11-02 04:54:04,2017-11-05 11:05:31,3,410.25,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +26035,TORTU,8,2023-04-15 16:21:05,2023-04-20 08:22:44,2023-05-01 01:53:02,2,238.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26036,DRACD,3,2013-03-31 14:23:50,2013-04-25 13:33:59,2013-04-03 12:07:03,1,402.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26037,CONSH,5,2022-02-27 12:20:17,2022-04-01 14:06:26,2022-03-21 04:19:00,1,480,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26038,FAMIA,9,2022-11-23 15:51:07,2023-01-01 06:51:32,2022-11-24 14:46:12,3,338.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26039,GREAL,1,2013-11-11 15:45:01,2013-11-29 21:26:16,2013-11-30 14:19:12,2,261,Hanari Carnes,"Rua do Paço, 67",Rio de Janeiro,South America,05454-876,Brazil +26040,HUNGO,8,2018-04-07 23:33:26,2018-04-18 05:28:05,2018-04-13 12:45:23,2,242.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26041,WELLI,3,2017-07-28 07:23:53,2017-07-28 08:05:26,2017-08-05 12:56:08,2,158.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +26042,ISLAT,3,2023-01-02 09:02:50,2023-02-04 21:08:54,2023-01-17 06:17:19,2,47.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +26043,CENTC,8,2013-05-30 01:01:06,2013-06-21 12:10:55,2013-05-30 21:00:20,1,378,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +26044,QUEEN,8,2019-07-03 14:49:51,2019-07-30 13:48:07,2019-07-04 19:57:15,2,96.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26045,FOLKO,5,2014-09-28 13:05:00,2014-10-17 10:53:26,2014-10-11 13:54:41,2,270.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26046,TRAIH,9,2014-03-13 21:32:02,2014-04-02 02:38:46,2014-04-04 06:01:14,2,348.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26047,FOLIG,7,2016-07-15 15:30:44,2016-08-09 04:25:53,2016-07-27 00:39:39,2,113.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +26048,LONEP,9,2012-07-11 01:09:16,2012-07-21 02:42:26,2012-07-23 04:10:27,3,465.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +26049,DUMON,3,2021-02-01 22:45:51,2021-02-27 21:17:11,2021-02-08 04:08:32,2,376,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26050,ERNSH,3,2016-03-31 06:48:27,2016-04-15 03:31:35,2016-04-02 02:45:35,1,248.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +26051,RICAR,7,2019-10-13 23:24:06,2019-10-27 04:38:04,2019-10-16 16:59:38,1,279.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26052,ANATR,9,2020-03-17 22:48:59,2020-03-19 02:40:32,2020-03-18 23:21:44,1,398,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26053,TOMSP,2,2013-01-22 16:53:56,2013-02-13 10:29:32,2013-02-03 07:13:38,2,83.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +26054,BLAUS,7,2015-07-28 23:03:23,2015-08-21 09:54:41,2015-08-09 17:37:52,1,264.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +26055,OCEAN,6,2020-11-30 20:36:00,2020-12-05 18:15:16,2020-12-02 15:06:31,2,277.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26056,MAISD,5,2021-02-14 08:33:47,2021-02-17 09:22:54,2021-03-03 05:16:58,1,23,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26057,SEVES,3,2023-10-20 11:04:15,2023-11-09 13:36:58,2023-11-05 22:16:04,1,66.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +26058,WELLI,4,2020-11-02 17:35:24,2020-11-26 23:25:49,2020-11-24 21:56:16,1,222.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26059,CACTU,7,2012-11-16 16:44:49,2012-12-02 16:44:43,2012-11-17 08:00:17,2,258,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26060,SPLIR,4,2018-01-25 03:58:42,2018-01-26 22:51:51,2018-01-26 17:47:16,3,231,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +26061,AROUT,3,2017-03-22 16:45:33,2017-04-29 04:23:54,2017-03-24 04:41:54,2,412.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +26062,PICCO,2,2019-04-22 19:09:44,2019-04-28 21:13:20,2019-04-25 07:42:27,2,439.75,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26063,WARTH,4,2013-08-30 04:17:30,2013-09-13 12:16:56,2013-09-05 03:59:12,2,83.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +26064,RANCH,9,2017-08-01 10:42:43,2017-08-19 08:15:57,2017-08-12 01:57:04,1,383.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +26065,LAUGB,1,2016-03-22 01:02:41,2016-04-20 11:28:42,2016-03-29 01:36:26,1,42.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26066,REGGC,7,2016-02-14 03:42:40,2016-03-16 09:22:31,2016-03-12 02:49:57,2,168.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26067,TORTU,3,2020-09-16 09:15:40,2020-10-09 15:34:27,2020-09-17 05:27:50,2,377,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26068,SPECD,4,2020-01-26 21:53:06,2020-01-27 06:51:57,2020-02-04 15:41:56,3,40,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +26069,TORTU,4,2019-05-08 10:14:15,2019-05-18 01:44:13,2019-05-20 07:35:22,1,380.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26070,GROSR,8,2015-07-11 00:11:16,2015-07-21 09:49:50,2015-07-28 22:58:47,2,269,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26071,COMMI,3,2016-01-23 20:54:37,2016-02-15 05:50:56,2016-02-02 01:03:12,2,466.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26072,LETSS,5,2016-03-30 09:06:49,2016-04-15 19:06:21,2016-04-07 03:55:33,1,388.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +26073,KOENE,2,2019-04-16 18:00:07,2019-05-10 07:39:39,2019-04-17 05:46:57,1,376.25,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +26074,CONSH,5,2014-10-07 22:46:23,2014-10-11 17:04:24,2014-10-13 23:24:52,2,44.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26075,THEBI,4,2022-02-07 10:10:46,2022-03-01 05:13:56,2022-02-10 14:07:33,1,161,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +26076,HILAA,9,2017-01-07 23:31:26,2017-02-04 11:51:41,2017-01-10 16:24:33,3,210.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +26077,CENTC,4,2018-10-05 04:43:01,2018-10-17 00:56:56,2018-10-27 07:45:19,2,449.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +26078,VICTE,5,2019-05-23 11:23:32,2019-06-05 17:53:18,2019-05-23 12:58:46,3,331.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +26079,LACOR,7,2015-05-26 22:22:32,2015-06-10 10:47:24,2015-06-03 02:42:34,3,71.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +26080,LILAS,6,2020-01-31 21:31:19,2020-02-05 02:44:13,2020-02-08 18:13:49,3,291,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +26081,CACTU,8,2023-07-11 13:04:19,2023-07-27 05:05:04,2023-07-24 08:23:32,1,135.25,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +26082,ERNSH,3,2019-02-07 07:00:38,2019-02-26 18:21:28,2019-02-08 04:05:33,3,316.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +26083,OCEAN,2,2018-06-11 09:52:16,2018-07-15 15:11:07,2018-06-18 13:24:00,3,314,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +26084,WHITC,4,2014-01-09 03:58:22,2014-02-09 12:27:43,2014-01-11 15:49:36,3,240.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26085,PICCO,1,2015-08-17 04:15:50,2015-09-06 16:26:46,2015-08-18 14:30:55,3,469.75,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26086,TOMSP,5,2012-12-18 10:04:11,2013-02-09 03:34:14,2013-01-02 22:15:33,1,55.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +26087,HILAA,4,2020-09-15 19:13:20,2020-09-21 11:47:21,2020-09-19 09:59:04,1,420,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26088,FOLKO,7,2021-07-11 05:38:18,2021-08-17 14:45:12,2021-07-14 00:17:59,2,200.5,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +26089,FAMIA,4,2022-03-14 10:15:18,2022-03-23 02:08:34,2022-03-14 13:24:31,1,434.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26090,PRINI,1,2018-01-18 12:01:12,2018-02-07 23:21:37,2018-01-20 14:49:25,2,436,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26091,CENTC,4,2013-04-22 22:27:46,2013-05-07 02:18:48,2013-04-26 13:57:42,2,282.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +26092,ISLAT,3,2020-12-01 02:33:21,2020-12-19 18:12:58,2020-12-07 06:43:05,3,178.5,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +26093,OLDWO,5,2013-09-02 10:42:54,2013-09-10 06:43:35,2013-09-05 07:46:59,1,219,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26094,FOLIG,7,2012-08-28 03:55:19,2012-09-06 12:12:24,2012-08-28 23:51:23,2,40.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26095,CACTU,6,2013-03-22 05:46:38,2013-04-13 15:18:46,2013-03-22 06:48:05,3,230,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +26096,MEREP,5,2016-07-28 08:46:57,2016-08-25 23:50:12,2016-07-29 19:32:33,1,415.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26097,BSBEV,6,2020-12-28 01:27:51,2021-01-31 01:05:06,2020-12-29 01:43:19,2,249.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26098,RATTC,9,2020-12-21 00:20:44,2021-01-07 05:49:47,2020-12-27 12:21:44,2,238,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +26099,SUPRD,4,2019-08-23 04:19:17,2019-09-24 17:23:33,2019-09-01 15:25:26,1,399,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26100,FISSA,8,2021-09-12 01:51:24,2021-09-17 03:54:29,2021-09-26 23:40:22,3,361.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26101,BOLID,1,2018-08-26 19:11:09,2018-09-12 17:07:53,2018-09-09 02:32:19,3,186.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +26102,ISLAT,1,2015-01-02 09:16:19,2015-01-06 03:42:51,2015-01-11 18:20:16,1,60,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26103,ANTON,3,2020-10-27 19:30:55,2020-10-30 21:11:57,2020-10-30 18:53:49,3,461,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26104,AROUT,9,2014-12-17 10:10:59,2014-12-18 03:16:09,2015-01-01 15:19:51,3,141,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +26105,WHITC,5,2017-10-24 14:12:16,2017-11-03 12:27:06,2017-11-08 13:51:35,3,29.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26106,THECR,4,2015-01-21 15:41:24,2015-01-28 14:40:02,2015-01-29 21:43:35,3,99.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +26107,BERGS,5,2020-12-09 06:45:19,2021-01-05 03:34:53,2020-12-23 13:44:20,1,221.25,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +26108,HUNGO,8,2014-03-31 01:57:19,2014-05-14 20:42:42,2014-04-10 15:22:42,1,444.5,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26109,THECR,4,2023-07-18 13:49:43,2023-07-23 08:21:18,2023-07-19 08:06:26,2,331.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26110,Val2 ,4,2022-03-29 20:20:33,2022-04-02 06:43:48,2022-03-31 08:11:45,2,482,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26111,HANAR,7,2015-10-21 19:00:38,2015-10-22 08:43:22,2015-10-24 23:08:40,2,250.75,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +26112,ROMEY,9,2017-04-01 04:00:24,2017-04-19 09:06:28,2017-04-02 06:57:17,3,387.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +26113,LAMAI,6,2013-03-20 06:58:08,2013-03-23 04:12:33,2013-04-17 07:48:49,2,378.5,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +26114,BERGS,1,2016-10-13 02:23:38,2016-11-04 23:12:43,2016-10-21 09:15:10,1,121.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26115,LACOR,4,2022-03-25 01:27:05,2022-04-22 18:27:21,2022-04-13 05:40:39,1,436.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +26116,VALON,6,2018-12-07 05:28:31,2018-12-18 07:51:47,2018-12-08 03:15:06,1,158.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +26117,QUEEN,8,2022-06-25 21:16:15,2022-07-07 19:23:01,2022-06-26 05:56:25,1,409.25,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +26118,LEHMS,7,2014-03-30 12:59:07,2014-04-21 17:38:52,2014-04-17 12:27:43,1,351.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26119,FAMIA,7,2015-09-24 19:04:11,2015-10-17 12:52:05,2015-10-04 08:12:50,3,472.75,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +26120,THECR,2,2014-11-27 08:08:39,2014-11-30 00:19:34,2014-12-05 21:56:46,1,346,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26121,WARTH,4,2021-12-24 15:28:43,2021-12-30 17:55:30,2021-12-25 00:32:06,2,333.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26122,FOLKO,7,2018-01-19 05:28:06,2018-02-22 01:06:38,2018-01-21 01:34:28,3,372,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +26123,ALFKI,2,2021-08-20 09:27:19,2021-09-16 07:56:40,2021-09-05 02:35:47,3,27,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +26124,WELLI,3,2019-09-27 10:54:44,2019-10-09 23:27:22,2019-10-06 08:08:46,2,171.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26125,VICTE,2,2018-08-21 00:42:09,2018-09-07 10:35:47,2018-08-24 13:16:28,2,388,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +26126,FAMIA,6,2015-07-25 22:07:03,2015-08-25 12:49:20,2015-08-01 05:23:12,1,270.25,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +26127,CACTU,1,2013-12-30 17:42:17,2014-01-18 01:05:26,2014-01-09 02:18:51,3,110.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +26128,HANAR,5,2015-07-29 04:08:17,2015-08-04 03:56:17,2015-08-25 16:46:25,3,33.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +26129,HUNGC,8,2018-05-23 14:01:56,2018-05-29 04:41:32,2018-05-31 11:27:28,1,129.75,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +26130,BLAUS,3,2018-01-06 12:44:26,2018-01-16 00:20:26,2018-01-21 19:33:41,1,270.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26131,FRANK,9,2015-04-04 01:48:17,2015-04-05 10:09:43,2015-04-05 06:49:15,2,399.75,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26132,FURIB,6,2013-08-11 09:00:38,2013-08-11 18:17:17,2013-08-13 16:20:16,1,62.75,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +26133,OLDWO,9,2017-11-04 21:34:35,2017-11-10 19:49:09,2017-11-19 09:04:05,1,107.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26134,SAVEA,7,2012-08-12 23:17:27,2012-08-29 12:06:52,2012-08-25 18:12:45,3,214.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26135,PARIS,3,2016-02-12 08:31:03,2016-02-27 21:27:52,2016-02-25 00:41:19,2,81.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26136,LACOR,3,2017-11-21 03:27:23,2017-11-25 18:23:45,2017-12-01 03:42:54,2,333,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +26137,NORTS,6,2017-12-19 09:40:39,2018-01-14 03:47:40,2017-12-24 22:05:34,3,445.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +26138,EASTC,4,2020-01-15 02:10:47,2020-01-18 04:51:44,2020-01-17 18:53:18,3,216.5,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26139,WELLI,6,2015-10-31 04:15:25,2015-12-07 10:30:34,2015-10-31 10:41:02,1,360,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +26140,FRANS,9,2015-04-04 21:20:33,2015-05-12 23:11:26,2015-04-13 09:02:57,2,438.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26141,QUEEN,2,2017-07-27 08:32:50,2017-08-01 04:12:15,2017-08-10 21:40:42,3,22.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +26142,VINET,5,2021-09-04 13:55:44,2021-09-07 01:13:15,2021-10-01 04:15:42,1,243.5,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +26143,MORGK,9,2022-08-01 01:27:34,2022-08-16 19:04:41,2022-08-05 17:35:34,2,396,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +26144,ANATR,7,2017-10-26 10:42:49,2017-11-08 20:06:09,2017-10-30 00:03:04,2,385.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26145,LINOD,4,2013-07-22 17:51:44,2013-08-09 19:30:30,2013-08-07 02:22:18,2,484.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26146,RICAR,6,2019-11-04 07:24:49,2019-11-30 05:14:49,2019-11-22 14:48:16,3,210.75,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +26147,OCEAN,6,2015-09-21 19:53:34,2015-10-30 02:34:17,2015-09-26 09:57:38,1,250.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +26148,GOURL,6,2022-05-21 08:53:33,2022-06-08 00:24:00,2022-05-24 03:42:40,1,42.75,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +26149,GODOS,1,2021-05-07 23:19:38,2021-06-01 09:33:57,2021-06-04 01:50:14,2,520.5,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +26150,WILMK,9,2018-06-20 11:35:48,2018-06-25 19:29:23,2018-07-07 06:37:05,1,46,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26151,LAZYK,4,2019-08-27 23:25:17,2019-09-17 03:02:59,2019-09-08 05:47:17,1,107.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26152,OLDWO,8,2013-02-20 20:00:04,2013-02-24 15:57:49,2013-03-03 14:01:11,1,234.5,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26153,GROSR,5,2022-05-29 13:33:14,2022-06-11 21:03:50,2022-06-04 04:12:30,2,198.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26154,RATTC,3,2016-04-26 02:04:52,2016-05-05 23:34:58,2016-05-02 02:02:09,3,96,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26155,FURIB,4,2012-12-05 22:59:43,2012-12-08 18:32:18,2012-12-23 19:20:31,1,384.25,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +26156,WANDK,7,2016-02-09 01:44:17,2016-03-03 15:03:30,2016-02-10 21:07:12,3,316,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +26157,CONSH,2,2016-08-28 11:50:16,2016-08-31 01:14:52,2016-08-30 00:50:35,1,316.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +26158,ANATR,6,2012-08-30 11:02:36,2012-10-05 20:06:17,2012-09-22 18:40:44,1,108,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +26159,OLDWO,6,2021-10-17 05:37:36,2021-11-04 00:25:35,2021-10-19 21:14:09,1,243.75,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +26160,LAZYK,4,2013-09-01 19:03:43,2013-09-08 17:11:52,2013-09-07 04:39:45,3,382.25,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +26161,FISSA,8,2015-02-22 04:54:21,2015-02-28 18:01:53,2015-03-12 10:15:11,3,52.25,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26162,WARTH,5,2022-03-24 22:03:25,2022-04-23 15:33:54,2022-03-25 22:22:53,2,457.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +26163,BERGS,7,2015-08-24 12:38:03,2015-08-30 05:34:23,2015-08-27 23:44:52,2,166.75,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26164,CACTU,6,2017-04-20 17:26:00,2017-05-02 21:18:04,2017-05-01 07:38:40,2,199.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +26165,PRINI,6,2015-05-14 22:28:36,2015-06-24 21:38:16,2015-05-15 20:32:12,1,336,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26166,SPLIR,4,2019-01-26 10:15:01,2019-02-14 18:52:08,2019-02-09 19:48:30,3,373.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +26167,NORTS,5,2012-10-25 20:40:19,2012-11-11 02:04:21,2012-10-28 23:47:14,1,360,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26168,LILAS,7,2014-03-04 07:25:56,2014-03-24 11:53:12,2014-03-22 10:50:50,3,85,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +26169,GROSR,8,2023-09-14 01:56:43,2023-09-15 15:47:24,2023-09-15 03:55:31,3,323,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +26170,EASTC,3,2018-04-19 09:26:26,2018-04-29 19:17:29,2018-05-02 19:25:39,1,163.75,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +26171,BSBEV,4,2018-08-07 07:32:02,2018-08-14 11:24:10,2018-08-17 10:53:53,2,222,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +26172,FRANR,6,2018-10-16 07:55:08,2018-11-05 15:39:07,2018-10-23 00:13:37,2,274.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26173,PRINI,6,2021-06-08 22:05:55,2021-07-01 04:30:50,2021-06-11 14:38:46,2,316,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +26174,VINET,1,2014-12-18 13:36:19,2014-12-23 23:24:48,2014-12-24 05:42:17,3,175.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26175,WHITC,8,2017-10-30 16:33:43,2017-12-02 05:47:45,2017-11-04 07:08:54,3,452.5,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26176,AROUT,7,2015-09-08 22:01:02,2015-09-25 17:34:31,2015-09-21 13:17:01,3,344,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26177,COMMI,5,2019-02-23 04:37:27,2019-03-26 04:02:51,2019-03-07 01:50:17,2,395,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26178,RICSU,8,2023-09-08 13:39:05,2023-10-19 08:07:00,2023-09-27 20:58:37,3,447.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +26179,HUNGO,3,2017-05-28 21:14:24,2017-06-04 08:45:35,2017-06-01 21:22:22,1,182,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26180,MEREP,8,2020-05-18 09:02:29,2020-07-02 20:41:52,2020-06-05 15:22:37,3,488.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +26181,WELLI,5,2018-08-08 08:11:34,2018-09-08 11:18:08,2018-09-05 14:25:04,1,203.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26182,GREAL,6,2017-11-16 16:17:46,2017-12-24 12:44:13,2017-12-01 20:04:44,3,441.75,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +26183,GALED,8,2014-07-06 04:32:06,2014-07-09 19:53:38,2014-07-06 04:55:33,1,437.5,Toms Spezialitäten,Luisenstr. 48,Münster,Western Europe,44087,Germany +26184,LAUGB,5,2019-04-09 08:48:37,2019-04-16 15:14:48,2019-04-23 16:57:34,3,286.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26185,SEVES,2,2014-11-18 19:21:23,2015-01-07 00:19:26,2014-11-20 11:30:33,1,379.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26186,MORGK,6,2020-11-17 07:16:40,2020-11-25 04:46:00,2020-12-08 17:07:35,1,429,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +26187,BSBEV,8,2016-12-21 13:21:42,2016-12-23 11:49:34,2017-01-16 23:44:27,3,57,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26188,GALED,7,2017-03-07 21:35:17,2017-03-18 05:14:56,2017-03-11 17:16:27,3,252.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +26189,LILAS,8,2013-01-10 11:25:14,2013-02-20 09:46:23,2013-01-12 10:49:19,3,112.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +26190,MAISD,7,2022-05-20 11:58:03,2022-06-22 08:28:52,2022-06-02 07:20:23,1,247.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +26191,LEHMS,6,2021-01-13 18:57:27,2021-01-20 18:51:33,2021-01-31 20:22:10,2,449.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26192,TOMSP,7,2013-05-01 09:28:03,2013-05-22 15:04:41,2013-05-19 17:11:30,3,40,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26193,BSBEV,7,2018-09-27 16:36:46,2018-11-02 01:09:48,2018-10-09 09:52:52,2,198.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +26194,BLAUS,1,2019-06-25 23:29:52,2019-07-23 14:31:49,2019-06-29 08:44:57,3,413.5,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +26195,MAISD,1,2013-02-09 07:24:03,2013-02-21 10:20:14,2013-02-21 21:48:33,3,182.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +26196,FRANR,9,2012-07-24 09:37:36,2012-08-18 08:52:28,2012-07-25 01:05:02,1,450,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26197,GODOS,9,2017-11-22 06:41:33,2017-12-09 12:56:57,2017-12-17 04:34:31,3,243.75,La maison d-Asie,1 rue Alsace-Lorraine,Toulouse,Western Europe,31000,France +26198,KOENE,3,2018-08-03 21:50:51,2018-08-18 21:28:43,2018-08-07 17:58:30,2,392,The Big Cheese,89 Jefferson Way Suite 2,Portland,North America,97201,USA +26199,EASTC,5,2014-11-10 15:24:01,2014-11-22 03:21:04,2014-11-21 10:57:27,2,228,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26200,SPLIR,4,2016-04-22 15:33:10,2016-05-01 14:28:34,2016-05-10 23:58:02,3,515.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26201,CACTU,4,2013-06-23 20:42:53,2013-07-18 07:31:13,2013-07-10 11:42:48,3,449,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26202,FOLIG,1,2016-06-02 07:47:13,2016-07-28 05:52:16,2016-06-02 22:35:26,1,293.5,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26203,WILMK,2,2021-02-15 20:43:38,2021-02-19 14:08:45,2021-03-03 11:04:40,1,283,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +26204,FISSA,7,2023-02-22 03:33:49,2023-03-28 06:20:53,2023-02-22 08:03:35,2,108.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26205,TRAIH,5,2015-04-17 09:29:09,2015-04-25 02:07:43,2015-04-20 22:50:26,1,311,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +26206,RANCH,1,2013-06-21 10:48:36,2013-07-06 00:12:19,2013-06-22 05:06:42,2,96.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26207,OTTIK,1,2020-10-30 15:41:44,2020-12-08 09:10:09,2020-11-14 13:35:16,3,154.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26208,KOENE,7,2022-09-16 05:30:56,2022-10-05 06:58:10,2022-09-18 07:48:51,3,53,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +26209,WANDK,8,2020-02-22 02:26:23,2020-03-03 02:56:12,2020-03-15 09:28:16,3,188.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26210,MEREP,7,2022-07-31 05:27:17,2022-08-11 03:03:02,2022-08-18 02:22:55,1,245.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26211,VINET,5,2014-05-07 11:01:58,2014-06-09 21:04:13,2014-05-12 03:56:11,1,404,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +26212,DUMON,4,2017-05-23 21:31:00,2017-06-11 12:02:40,2017-05-24 04:47:37,1,386.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26213,LAMAI,4,2014-09-15 06:17:07,2014-09-23 04:06:08,2014-09-22 11:22:33,3,440.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +26214,ERNSH,3,2019-05-19 14:51:28,2019-06-16 18:31:10,2019-05-25 12:40:09,2,371.25,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26215,VAFFE,5,2019-02-08 18:53:46,2019-03-24 00:42:17,2019-02-13 03:18:58,2,294.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26216,QUEDE,3,2023-03-13 09:01:21,2023-03-28 09:02:51,2023-03-19 16:17:45,2,412.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26217,VAFFE,6,2014-04-23 03:55:35,2014-05-12 13:55:08,2014-04-27 04:03:56,2,423.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26218,MEREP,7,2021-09-12 09:37:14,2021-09-23 09:15:38,2021-09-20 02:27:08,2,393.5,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26219,WELLI,5,2023-04-27 01:44:04,2023-05-18 07:17:01,2023-05-05 00:59:50,3,260,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +26220,CHOPS,7,2022-12-19 06:23:38,2023-01-27 12:01:02,2022-12-21 17:32:19,2,273.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +26221,OCEAN,8,2022-10-26 21:09:13,2022-10-31 21:57:56,2022-11-02 00:48:48,1,371.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26222,NORTS,8,2015-07-05 04:46:43,2015-07-17 01:57:33,2015-07-08 03:31:54,1,73,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +26223,LAZYK,5,2019-11-18 14:06:35,2019-11-21 20:04:19,2019-11-24 14:07:21,2,46,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26224,GODOS,7,2021-07-13 02:12:13,2021-08-03 22:01:04,2021-07-15 12:15:29,1,442.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26225,ERNSH,2,2022-01-01 18:32:12,2022-01-11 22:18:07,2022-01-03 00:24:03,2,332.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26226,BERGS,5,2017-10-28 14:58:26,2017-11-01 15:13:12,2017-11-12 14:27:44,3,395.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +26227,LONEP,3,2020-09-19 20:09:37,2020-09-23 17:44:44,2020-10-01 10:39:24,3,382.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26228,GOURL,6,2016-12-20 19:05:13,2016-12-21 19:44:12,2016-12-21 17:39:39,3,178.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26229,OLDWO,9,2012-09-27 00:03:23,2012-10-01 09:23:21,2012-10-20 20:06:34,2,221.25,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26230,GOURL,8,2012-12-24 13:18:51,2013-01-10 08:45:13,2012-12-28 21:31:39,1,424.25,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +26231,SPECD,6,2018-05-14 17:33:49,2018-06-05 06:19:44,2018-05-15 13:04:13,1,53.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +26232,OTTIK,1,2018-09-06 08:16:43,2018-09-12 01:30:08,2018-09-16 11:23:31,1,464,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26233,VALON,2,2021-02-06 09:34:36,2021-02-15 14:44:30,2021-02-08 19:09:38,3,82.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +26234,OCEAN,8,2019-12-21 02:47:38,2020-01-12 04:17:44,2020-01-11 04:20:56,3,319.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26235,EASTC,4,2014-12-06 17:00:24,2014-12-19 15:07:17,2014-12-17 20:16:36,3,133.75,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26236,PERIC,6,2013-12-02 23:08:42,2013-12-14 21:17:03,2013-12-17 03:37:36,1,103,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +26237,HILAA,1,2017-01-13 06:24:16,2017-02-04 04:40:09,2017-01-18 09:51:11,3,460.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26238,LEHMS,6,2016-05-03 05:54:49,2016-05-10 15:27:33,2016-05-10 12:01:13,2,306,HILARION-Abastos,Carrera 22 con Ave. Carlos Soublette #8-35,San Cristóbal,South America,5022,Venezuela +26239,ROMEY,7,2017-01-13 17:13:14,2017-01-22 05:19:03,2017-02-05 17:40:38,2,164.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26240,ISLAT,4,2012-09-08 21:33:22,2012-09-09 14:44:35,2012-09-13 00:17:59,3,281.5,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26241,LINOD,2,2012-08-12 08:13:10,2012-08-13 07:59:23,2012-08-16 08:50:00,3,454,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +26242,MAISD,5,2016-04-25 04:50:34,2016-05-16 02:56:15,2016-05-02 01:58:41,3,334.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +26243,REGGC,6,2016-03-27 17:30:06,2016-04-08 14:17:14,2016-04-02 23:46:59,2,148.75,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26244,PARIS,9,2019-12-29 03:30:15,2020-02-06 05:07:40,2020-01-05 09:28:10,1,180.5,Wolski Zajazd,ul. Filtrowa 68,Warszawa,Eastern Europe,01-012,Poland +26245,DRACD,2,2022-11-21 20:08:48,2022-12-01 13:07:46,2022-11-29 13:32:14,2,168.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26246,PRINI,2,2020-03-26 06:42:13,2020-03-30 19:05:22,2020-03-30 01:28:58,2,255.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +26247,PERIC,8,2020-03-27 03:20:04,2020-03-28 04:33:09,2020-04-01 06:19:59,2,249,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +26248,ANATR,4,2017-07-27 22:04:52,2017-07-28 03:39:46,2017-07-28 07:40:00,2,109,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +26249,MORGK,6,2014-09-01 00:09:03,2014-09-07 18:33:33,2014-09-02 08:05:01,1,445.25,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26250,BOLID,1,2012-09-25 16:45:44,2012-10-26 04:04:41,2012-10-11 11:08:59,3,63,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26251,PERIC,4,2021-03-03 14:27:03,2021-03-06 08:18:47,2021-03-05 21:01:24,2,453.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +26252,LILAS,5,2020-08-30 15:01:27,2020-10-21 07:58:06,2020-08-31 18:57:08,1,155.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +26253,MAISD,2,2012-10-17 03:11:25,2012-11-01 01:14:26,2012-10-23 15:29:28,3,313.75,Rancho grande,Av. del Libertador 900,Buenos Aires,South America,1010,Argentina +26254,FOLKO,7,2022-02-22 15:10:06,2022-04-07 20:10:56,2022-03-04 11:08:38,1,213.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26255,ALFKI,9,2018-09-08 04:33:44,2018-09-17 16:41:31,2018-09-08 04:46:15,2,470.5,Let-s Stop N Shop,87 Polk St. Suite 5,San Francisco,North America,94117,USA +26256,SPLIR,3,2023-05-23 20:04:50,2023-06-24 20:58:10,2023-06-07 08:27:56,2,390.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26257,THECR,4,2022-04-01 01:20:37,2022-04-25 17:37:34,2022-04-04 12:27:17,3,455.75,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26258,GREAL,8,2013-12-23 16:27:22,2014-01-13 13:14:51,2013-12-30 22:30:40,3,161,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26259,RICAR,3,2021-06-14 21:03:35,2021-07-03 12:24:16,2021-06-21 05:32:35,3,432.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26260,GOURL,5,2020-08-16 09:54:44,2020-08-22 00:12:47,2020-08-21 16:42:48,2,66.75,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +26261,BONAP,2,2023-03-19 06:28:55,2023-03-29 17:32:26,2023-03-24 06:07:25,3,149.25,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26262,VALON,2,2023-07-05 06:14:50,2023-07-28 05:43:02,2023-07-10 12:07:05,2,69.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26263,LAZYK,5,2021-11-02 21:39:59,2021-11-05 18:22:20,2021-11-09 13:38:35,3,201,LILA-Supermercado,Carrera 52 con Ave. Bolívar #65-98 Llano Largo,Barquisimeto,South America,3508,Venezuela +26264,REGGC,1,2013-05-17 12:10:08,2013-05-21 15:15:45,2013-06-12 20:48:53,3,132.25,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +26265,DUMON,3,2018-06-02 22:04:20,2018-07-11 09:54:41,2018-06-04 04:03:09,2,88.25,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26266,CHOPS,9,2014-10-07 16:48:35,2014-10-23 12:01:05,2014-10-30 15:12:16,3,402,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +26267,LETSS,2,2020-06-28 20:37:41,2020-06-30 12:29:16,2020-06-30 10:03:19,3,399,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +26268,LILAS,5,2014-06-10 18:44:38,2014-06-12 04:38:45,2014-07-01 06:39:30,2,196.5,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +26269,BOLID,8,2015-12-01 15:28:51,2015-12-06 13:19:57,2015-12-03 20:51:41,2,55.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26270,LONEP,8,2014-05-31 21:21:42,2014-06-13 05:24:37,2014-06-07 07:04:14,3,62.75,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +26271,MAGAA,3,2016-12-12 19:30:50,2017-01-01 06:23:20,2016-12-20 12:02:13,3,94.75,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +26272,QUICK,3,2021-06-04 01:59:07,2021-06-21 22:54:58,2021-06-05 00:50:03,1,156,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26273,RICSU,5,2023-08-02 00:22:51,2023-08-08 00:00:01,2023-08-03 05:49:15,3,459.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26274,VINET,9,2021-01-10 12:08:21,2021-02-21 03:24:35,2021-01-28 18:49:00,2,344.75,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +26275,FRANS,6,2019-01-04 21:06:47,2019-02-22 14:12:01,2019-01-17 05:05:45,2,167.25,Laughing Bacchus Wine Cellars,2319 Elm St.,Vancouver,North America,V3F 2K1,Canada +26276,LINOD,5,2022-05-16 17:06:06,2022-06-09 08:19:01,2022-05-18 21:54:34,2,446.75,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26277,ERNSH,5,2017-02-21 09:40:06,2017-03-30 18:36:15,2017-03-01 17:37:12,1,385.25,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26278,QUEDE,3,2019-06-06 19:11:42,2019-07-04 16:01:36,2019-06-16 18:52:18,1,308,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +26279,FURIB,5,2015-04-27 12:49:26,2015-05-07 08:04:11,2015-05-04 09:18:05,3,30.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +26280,FOLKO,9,2021-06-08 00:20:15,2021-06-17 14:51:58,2021-06-18 09:00:48,1,132.75,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26281,PARIS,6,2014-06-10 08:53:02,2014-06-30 07:52:29,2014-06-17 06:17:28,3,489.5,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +26282,BOLID,7,2023-05-13 10:17:11,2023-06-24 06:51:10,2023-06-04 07:00:06,3,142.25,Vaffeljernet,Smagsloget 45,Århus,Northern Europe,8200,Denmark +26283,BLONP,7,2014-01-13 17:29:04,2014-03-02 20:34:23,2014-01-15 15:19:26,3,133.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26284,VALON,2,2014-10-31 03:50:35,2014-11-13 01:53:22,2014-10-31 14:30:29,3,285.75,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +26285,HUNGC,7,2015-05-10 02:11:26,2015-05-14 07:33:55,2015-05-19 20:46:07,2,216.75,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26286,ERNSH,5,2019-11-02 08:56:10,2019-12-06 11:26:59,2019-11-13 23:33:45,3,83,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26287,HUNGC,4,2023-05-03 09:41:45,2023-05-05 12:37:44,2023-05-26 17:42:34,1,402,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +26288,KOENE,4,2018-10-17 13:08:42,2018-11-02 05:00:15,2018-10-21 13:44:30,1,292.75,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +26289,CENTC,5,2019-03-28 19:59:51,2019-04-20 15:48:46,2019-03-29 23:17:04,2,112.5,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26290,SIMOB,1,2021-06-02 23:04:06,2021-06-06 06:41:46,2021-06-09 01:48:41,3,283,Romero y tomillo,"Gran Vía, 1",Madrid,Southern Europe,28001,Spain +26291,ERNSH,6,2013-07-08 10:49:46,2013-08-04 03:26:12,2013-07-21 03:40:19,3,322,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +26292,FRANR,9,2015-01-12 07:02:26,2015-01-13 19:00:40,2015-01-22 18:32:55,1,273,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26293,PICCO,9,2019-10-18 14:11:44,2019-11-10 04:02:34,2019-10-19 04:45:44,3,497.75,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26294,COMMI,3,2020-10-29 03:00:52,2020-11-06 17:59:17,2020-11-18 05:07:51,3,426.75,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26295,BSBEV,9,2020-10-15 08:55:33,2020-10-26 14:02:23,2020-10-30 07:41:01,3,357.25,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +26296,GOURL,7,2018-09-18 01:17:31,2018-09-22 22:22:27,2018-09-19 21:05:51,1,32,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +26297,QUEEN,5,2015-10-29 15:32:07,2015-11-10 18:56:15,2015-11-08 14:45:42,3,401.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +26298,MEREP,9,2012-09-11 02:29:15,2012-10-01 13:24:37,2012-09-19 22:15:44,1,347.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26299,VICTE,3,2016-09-04 21:18:21,2016-09-25 09:24:57,2016-09-22 07:06:27,3,62,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26300,SIMOB,4,2013-04-16 09:25:43,2013-05-18 14:21:38,2013-05-09 10:00:16,3,181,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +26301,FRANS,1,2021-12-12 15:50:08,2022-01-14 15:56:37,2021-12-20 00:37:42,1,446.5,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26302,OTTIK,1,2014-07-07 12:39:51,2014-07-12 02:22:38,2014-07-27 02:01:34,1,403.25,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +26303,ERNSH,7,2015-11-27 06:20:57,2015-12-10 09:57:22,2015-12-21 07:07:01,1,298,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26304,CACTU,6,2017-12-17 07:33:54,2018-01-04 09:28:58,2017-12-22 01:27:48,2,140,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +26305,HILAA,9,2021-09-18 01:46:52,2021-09-24 03:27:29,2021-09-30 06:03:21,2,189.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +26306,WILMK,5,2022-07-27 16:52:25,2022-08-02 23:05:38,2022-07-31 14:25:14,1,278,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26307,WOLZA,1,2022-10-22 16:54:51,2022-10-23 15:24:35,2022-11-02 04:01:26,3,38,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +26308,MEREP,9,2014-04-02 10:51:48,2014-04-13 17:00:10,2014-04-09 13:09:54,3,466.75,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26309,MEREP,9,2017-09-22 23:37:19,2017-09-27 07:27:13,2017-09-26 14:38:56,2,122.25,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26310,RICAR,1,2016-03-07 20:18:59,2016-04-12 09:20:59,2016-03-11 00:09:44,3,223.75,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +26311,BONAP,5,2017-04-14 07:53:39,2017-05-17 15:24:04,2017-04-21 22:24:33,2,269.75,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26312,VICTE,5,2016-01-01 12:09:27,2016-01-09 02:37:37,2016-01-27 01:19:24,1,53.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26313,HANAR,9,2014-05-13 00:10:33,2014-05-30 22:30:18,2014-05-14 20:56:37,2,462,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26314,VAFFE,6,2016-11-16 01:57:15,2016-12-08 21:41:24,2016-11-23 22:37:20,3,288,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +26315,GREAL,1,2022-11-08 22:12:39,2022-11-26 22:55:11,2022-11-26 07:13:10,2,463.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26316,FURIB,9,2021-08-18 00:58:22,2021-09-08 11:31:20,2021-09-09 15:03:17,1,212.5,Océano Atlántico Ltda.,Ing. Gustavo Moncada 8585 Piso 20-A,Buenos Aires,South America,1010,Argentina +26317,Val2 ,9,2012-07-26 18:32:30,2012-08-14 03:52:51,2012-07-28 18:36:20,3,55.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26318,GALED,9,2017-01-31 06:29:23,2017-03-25 11:16:06,2017-02-04 06:05:08,2,108.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26319,BONAP,4,2016-02-27 14:34:56,2016-03-14 05:09:45,2016-03-07 04:33:39,1,385.5,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26320,MAGAA,3,2018-12-12 15:16:13,2018-12-31 16:27:03,2018-12-23 09:06:17,1,461.25,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +26321,OCEAN,3,2021-04-17 03:39:59,2021-05-20 14:50:06,2021-04-29 13:17:50,2,150.5,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +26322,GREAL,3,2016-09-20 14:42:34,2016-10-08 20:56:21,2016-09-23 14:11:05,3,513.75,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +26323,OLDWO,5,2013-12-08 14:01:17,2013-12-15 04:35:26,2013-12-19 19:39:08,1,104,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26324,RICSU,8,2014-01-09 12:04:54,2014-02-07 12:21:27,2014-01-14 02:47:47,3,227,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +26325,DUMON,9,2021-03-26 22:11:59,2021-04-06 10:55:05,2021-03-27 11:21:32,2,108,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26326,HUNGC,7,2015-04-18 14:55:07,2015-05-13 10:01:21,2015-04-26 06:04:40,3,90,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +26327,LINOD,2,2018-05-15 14:10:49,2018-05-23 13:25:26,2018-05-30 13:46:28,3,181.75,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +26328,RICAR,4,2016-07-03 07:01:40,2016-08-09 18:03:10,2016-07-15 06:11:12,1,499.5,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +26329,MAGAA,4,2013-10-22 10:26:42,2013-10-28 10:04:05,2013-11-16 14:45:15,3,243.25,Eastern Connection,35 King George,London,British Isles,WX3 6FW,UK +26330,QUICK,4,2017-04-09 07:46:35,2017-04-27 04:27:26,2017-04-10 21:08:43,3,463.5,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +26331,MEREP,6,2019-05-23 15:54:11,2019-06-03 11:46:56,2019-06-01 18:43:49,1,397,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26332,QUEEN,8,2017-11-03 23:36:13,2017-12-09 10:51:28,2017-11-21 04:03:36,3,388.25,Spécialités du monde,"25, rue Lauriston",Paris,Western Europe,75016,France +26333,HUNGO,5,2019-10-12 19:15:23,2019-10-19 06:26:13,2019-10-20 12:08:39,3,489.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +26334,HUNGO,1,2013-06-16 04:37:50,2013-07-08 00:59:26,2013-06-16 08:42:26,3,407,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +26335,TOMSP,1,2016-10-25 16:39:39,2016-10-26 04:51:52,2016-10-29 14:30:58,3,140.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26336,MORGK,1,2017-09-30 06:50:09,2017-10-03 22:31:43,2017-10-04 10:32:32,2,54.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26337,RICAR,7,2017-02-28 03:23:32,2017-03-07 08:55:10,2017-03-02 12:13:03,1,151.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +26338,FOLKO,8,2016-02-22 04:04:26,2016-04-05 09:36:15,2016-02-22 06:07:57,3,280,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +26339,DUMON,3,2022-01-02 20:48:10,2022-02-01 23:36:46,2022-01-03 16:29:09,1,496.75,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26340,CONSH,1,2022-02-10 18:36:59,2022-02-25 05:38:23,2022-02-12 13:14:31,3,385.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +26341,ERNSH,9,2014-02-02 19:56:01,2014-03-01 17:08:42,2014-02-11 15:54:50,3,412.75,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +26342,LILAS,3,2013-11-10 17:33:14,2013-12-15 15:53:33,2013-11-12 22:41:11,2,431.5,Blondel père et fils,"24, place Kléber",Strasbourg,Western Europe,67000,France +26343,FRANS,4,2015-12-04 09:29:12,2015-12-15 16:04:50,2015-12-07 07:08:20,1,428.75,Richter Supermarkt,Starenweg 5,Genève,Western Europe,1204,Switzerland +26344,SEVES,6,2022-06-24 16:03:05,2022-07-15 23:27:14,2022-06-24 23:55:06,2,134.25,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +26345,LETSS,4,2012-11-05 23:10:33,2012-12-13 23:29:27,2012-11-09 19:28:28,2,22.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26346,VAFFE,3,2019-12-14 16:03:15,2019-12-19 14:36:03,2019-12-17 14:39:33,2,127.75,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26347,RICSU,9,2022-06-26 09:10:40,2022-07-09 19:40:14,2022-06-29 10:08:58,3,254.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +26348,CACTU,5,2016-12-04 16:52:11,2016-12-12 09:24:57,2016-12-06 13:37:25,1,213.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26349,Val2 ,5,2021-03-01 02:50:37,2021-03-30 11:21:33,2021-03-01 04:24:13,1,35,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +26350,DRACD,6,2012-12-12 07:32:43,2013-01-18 10:41:39,2012-12-31 19:04:22,3,46.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26351,CACTU,6,2014-12-19 16:59:04,2015-01-06 11:29:47,2014-12-22 20:39:49,1,457.75,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26352,SAVEA,7,2023-01-01 06:44:19,2023-01-09 22:59:45,2023-01-17 19:35:33,2,108,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26353,HUNGC,7,2019-03-12 08:19:40,2019-03-18 10:05:51,2019-03-15 11:03:17,1,28.75,Frankenversand,Berliner Platz 43,München,Western Europe,80805,Germany +26354,COMMI,6,2012-09-06 20:45:13,2012-09-19 11:14:01,2012-09-14 01:47:24,1,97.5,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +26355,FRANK,3,2023-04-05 05:30:15,2023-05-07 19:09:07,2023-04-28 16:08:12,2,203,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26356,GODOS,3,2021-08-16 18:31:29,2021-09-02 16:34:25,2021-08-25 05:22:33,3,89.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26357,TORTU,5,2014-04-02 05:32:45,2014-05-20 07:40:37,2014-04-03 14:49:27,2,71.25,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26358,WELLI,1,2015-07-24 16:54:15,2015-07-30 11:54:58,2015-07-28 09:46:16,2,439.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26359,GROSR,9,2016-01-10 14:44:34,2016-01-18 12:29:14,2016-01-16 21:26:37,2,180.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26360,HUNGC,5,2021-06-16 03:14:22,2021-06-22 22:32:01,2021-06-16 10:11:48,3,281,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26361,OCEAN,1,2020-09-21 10:16:04,2020-09-22 02:23:47,2020-09-25 13:41:33,1,472,Tradiçao Hipermercados,"Av. Inês de Castro, 414",Sao Paulo,South America,05634-030,Brazil +26362,VALON,7,2019-11-18 05:03:16,2019-11-23 10:37:23,2019-12-04 04:09:50,3,90.5,Trail-s Head Gourmet Provisioners,722 DaVinci Blvd.,Kirkland,North America,98034,USA +26363,FOLKO,1,2014-07-21 17:51:02,2014-08-01 23:44:52,2014-07-29 15:19:36,3,154,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26364,SANTG,8,2017-11-10 03:32:09,2017-11-20 14:30:41,2017-11-17 12:45:49,1,419.25,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26365,COMMI,9,2015-10-30 17:27:22,2015-11-02 19:32:27,2015-11-14 07:12:35,1,310.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26366,WOLZA,4,2021-02-23 08:35:22,2021-03-03 18:44:07,2021-03-06 22:19:59,2,32,QUICK-Stop,Taucherstraße 10,Cunewalde,Western Europe,1307,Germany +26367,SANTG,3,2020-06-29 22:43:09,2020-07-13 17:01:16,2020-07-03 13:35:17,3,344.25,Mère Paillarde,43 rue St. Laurent,Montréal,North America,H1J 1C3,Canada +26368,PARIS,9,2012-09-18 02:08:50,2012-10-06 01:45:05,2012-09-18 17:31:59,1,418,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26369,WILMK,6,2015-03-27 14:13:14,2015-04-05 00:18:13,2015-03-31 02:22:44,2,265.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26370,FOLKO,9,2020-10-09 00:54:37,2020-11-10 23:28:42,2020-10-12 00:10:31,3,225.25,Familia Arquibaldo,"Rua Orós, 92",Sao Paulo,South America,05442-030,Brazil +26371,COMMI,7,2022-09-30 14:46:38,2022-10-10 09:59:01,2022-10-02 02:13:38,2,473.5,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26372,SEVES,9,2022-06-27 04:57:57,2022-07-08 09:54:56,2022-07-05 07:44:35,3,383.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26373,CHOPS,4,2014-12-20 19:59:36,2015-01-10 10:10:06,2014-12-22 15:21:33,1,197.75,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26374,PRINI,3,2021-11-23 09:56:09,2021-12-23 22:00:23,2021-11-28 14:04:27,1,386.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26375,DUMON,6,2016-05-02 21:12:00,2016-05-16 12:08:36,2016-05-18 13:19:05,3,356,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +26376,ALFKI,3,2023-10-15 09:15:19,2023-10-18 02:17:28,2023-10-22 14:59:32,3,107,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26377,RANCH,4,2015-06-01 04:50:14,2015-06-10 20:03:20,2015-06-03 14:03:24,3,452.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26378,GALED,2,2015-10-26 12:37:47,2015-10-27 15:54:30,2015-10-30 10:11:59,2,113.5,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +26379,DRACD,2,2018-01-28 03:07:25,2018-02-09 18:06:51,2018-01-31 04:19:30,3,312,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +26380,VAFFE,7,2022-01-19 16:39:25,2022-01-25 17:20:29,2022-02-05 09:30:48,1,471.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26381,RANCH,6,2023-10-01 22:00:32,2023-10-10 03:22:11,2023-10-04 22:14:01,3,168,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26382,LETSS,9,2022-11-18 04:15:01,2022-12-04 06:44:47,2022-12-06 21:36:40,1,321,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26383,WILMK,4,2019-03-09 15:07:43,2019-03-24 04:41:04,2019-03-11 15:04:07,1,435.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +26384,REGGC,6,2014-04-10 11:45:30,2014-04-19 15:42:29,2014-04-22 12:52:08,3,117.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26385,WOLZA,7,2023-03-15 15:26:36,2023-04-09 02:51:38,2023-03-17 09:36:56,1,207.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +26386,RANCH,2,2017-04-18 03:57:58,2017-05-16 11:28:59,2017-04-18 14:16:42,3,95.25,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26387,FURIB,9,2020-12-12 12:31:51,2021-01-05 20:04:01,2020-12-21 14:35:14,2,372,Que Delícia,"Rua da Panificadora, 12",Rio de Janeiro,South America,02389-673,Brazil +26388,GODOS,6,2015-11-23 10:49:09,2015-12-07 03:53:58,2015-11-29 02:51:39,2,13.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26389,ANATR,7,2022-10-14 03:19:50,2022-10-19 21:48:38,2022-10-19 22:16:26,2,341,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26390,FISSA,3,2022-07-27 08:03:27,2022-07-29 10:19:48,2022-08-01 16:56:27,3,69.25,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26391,LETSS,2,2013-07-07 16:22:48,2013-07-20 22:20:09,2013-07-08 01:39:51,3,461.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26392,LAZYK,6,2017-01-09 19:46:49,2017-02-25 06:00:43,2017-01-12 23:38:23,3,223.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26393,HANAR,5,2021-01-01 23:51:48,2021-01-15 13:01:24,2021-01-31 00:13:20,3,148.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +26394,KOENE,6,2019-03-22 05:27:18,2019-04-07 12:49:02,2019-04-06 15:40:37,2,389.75,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +26395,CENTC,9,2023-03-30 14:48:19,2023-04-04 20:08:15,2023-04-07 18:43:20,1,312.25,North/South,South House 300 Queensbridge,London,British Isles,SW7 1RZ,UK +26396,OCEAN,9,2021-08-04 15:18:32,2021-08-21 07:12:02,2021-08-05 12:08:53,3,462.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26397,LAMAI,3,2017-03-15 20:09:29,2017-03-16 02:15:32,2017-03-31 05:45:25,2,194.5,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +26398,ROMEY,4,2016-11-25 17:10:36,2016-11-28 04:07:49,2016-12-08 13:47:34,1,352.25,Lehmanns Marktstand,Magazinweg 7,Frankfurt a.M.,Western Europe,60528,Germany +26399,SAVEA,1,2013-09-09 04:48:58,2013-09-25 12:18:50,2013-10-04 21:37:20,3,128.5,Lazy K Kountry Store,12 Orchestra Terrace,Walla Walla,North America,99362,USA +26400,VAFFE,3,2021-01-28 21:08:25,2021-01-31 16:51:56,2021-02-01 04:40:11,3,422.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26401,WELLI,2,2020-08-22 23:12:17,2020-09-26 19:56:13,2020-09-03 17:47:13,3,371.5,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26402,HUNGC,5,2018-03-12 10:48:45,2018-03-21 05:23:27,2018-03-17 23:54:47,2,120.25,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +26403,WELLI,6,2023-02-23 06:26:30,2023-03-31 10:52:18,2023-03-09 05:44:57,3,253,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +26404,FISSA,8,2017-06-20 17:05:33,2017-07-01 02:58:42,2017-06-26 00:44:49,1,268.5,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +26405,RICAR,8,2023-04-30 15:36:14,2023-05-15 01:34:30,2023-05-12 11:41:56,1,348,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26406,SPECD,4,2022-08-14 20:59:03,2022-10-04 06:02:42,2022-08-28 11:17:29,1,214.75,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +26407,VAFFE,5,2014-09-26 12:40:05,2014-10-04 20:08:37,2014-09-27 20:25:51,2,158,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +26408,WOLZA,4,2017-09-25 06:00:56,2017-09-30 11:00:34,2017-09-25 17:35:15,1,398.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26409,REGGC,1,2017-12-07 06:04:07,2017-12-16 17:09:50,2017-12-12 10:05:41,3,31.75,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26410,FRANK,1,2012-08-05 03:45:28,2012-08-17 03:07:24,2012-08-08 23:44:52,2,354,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +26411,GREAL,9,2013-10-06 06:51:22,2013-10-10 13:30:18,2013-10-07 21:04:15,1,167.25,Franchi S.p.A.,Via Monte Bianco 34,Torino,Southern Europe,10100,Italy +26412,FRANS,4,2017-10-12 14:24:20,2017-10-21 01:27:00,2017-10-14 02:19:21,3,62,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +26413,RICAR,2,2023-07-16 18:00:24,2023-08-10 21:51:36,2023-07-19 08:36:31,1,444.5,Reggiani Caseifici,Strada Provinciale 124,Reggio Emilia,Southern Europe,42100,Italy +26414,GROSR,2,2013-06-11 08:01:59,2013-07-23 04:55:06,2013-06-12 14:41:03,1,249.25,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26415,LAZYK,9,2021-03-19 21:50:13,2021-04-14 04:44:58,2021-03-22 11:05:09,1,346.25,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26416,BSBEV,9,2022-12-15 19:46:12,2023-01-15 16:27:25,2022-12-23 08:38:34,1,336,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +26417,RANCH,8,2015-12-15 06:21:20,2015-12-31 08:54:11,2016-01-07 05:09:41,1,119,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26418,FAMIA,8,2014-12-05 04:11:19,2014-12-08 20:02:03,2014-12-22 07:37:26,3,284.75,Suprêmes délices,"Boulevard Tirou, 255",Charleroi,Western Europe,B-6000,Belgium +26419,FISSA,1,2013-02-13 19:46:34,2013-02-27 18:27:37,2013-02-23 10:01:42,1,501,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26420,LONEP,2,2017-03-25 09:42:18,2017-04-08 21:42:37,2017-04-13 08:29:12,1,240.5,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26421,LACOR,7,2017-01-25 21:54:49,2017-02-13 03:12:09,2017-02-08 19:17:40,2,419.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26422,ISLAT,3,2013-03-02 10:35:15,2013-03-26 09:20:12,2013-03-02 20:18:22,3,107.75,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +26423,BLAUS,9,2016-05-25 08:10:43,2016-06-26 21:11:08,2016-06-19 08:55:55,2,161.5,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26424,VINET,3,2016-03-18 16:08:19,2016-03-26 23:59:34,2016-03-20 01:46:09,1,422.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26425,FURIB,1,2013-01-16 21:26:13,2013-01-26 09:57:36,2013-01-17 20:46:20,2,401.25,Consolidated Holdings,Berkeley Gardens 12  Brewery,London,British Isles,WX1 6LT,UK +26426,BSBEV,8,2013-11-20 01:55:21,2013-12-10 15:36:24,2013-11-23 23:28:31,2,314.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26427,RICSU,3,2018-09-30 16:50:14,2018-10-06 04:01:22,2018-10-05 18:16:51,2,402,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26428,FRANR,4,2021-06-01 21:54:25,2021-06-06 05:30:18,2021-06-10 12:03:32,3,259.25,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26429,SUPRD,2,2021-12-16 19:44:04,2021-12-19 21:21:46,2021-12-22 04:35:17,2,474.75,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26430,EASTC,2,2022-06-11 22:03:50,2022-07-09 17:24:06,2022-06-22 18:55:51,1,223,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26431,BOTTM,3,2014-05-29 23:44:52,2014-06-29 04:07:02,2014-06-07 16:16:26,1,270.25,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26432,FRANR,5,2013-08-09 08:50:04,2013-08-22 00:51:11,2013-08-15 22:45:17,3,32.75,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26433,CHOPS,4,2019-09-20 10:51:00,2019-10-09 01:31:40,2019-10-01 03:45:53,3,263,Blauer See Delikatessen,Forsterstr. 57,Mannheim,Western Europe,68306,Germany +26434,WHITC,6,2020-10-07 15:18:59,2020-11-11 19:35:31,2020-10-09 10:10:12,2,250.5,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +26435,ISLAT,6,2016-11-02 10:10:12,2016-11-17 08:31:58,2016-11-04 23:30:35,2,350,Bon app-,"12, rue des Bouchers",Marseille,Western Europe,13008,France +26436,LETSS,4,2013-06-09 01:53:16,2013-06-21 15:38:38,2013-07-08 05:27:59,1,17.5,Ottilies Käseladen,Mehrheimerstr. 369,Köln,Western Europe,50739,Germany +26437,SEVES,6,2018-11-07 02:56:12,2018-11-26 13:35:17,2018-11-29 23:55:46,1,174.5,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +26438,SPECD,9,2014-09-17 11:02:38,2014-09-28 15:24:27,2014-10-10 04:54:01,2,93.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26439,LAUGB,3,2012-09-19 09:25:52,2012-10-24 19:15:46,2012-09-25 12:01:41,2,447.5,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26440,CENTC,8,2014-06-15 14:26:47,2014-08-11 06:12:17,2014-06-19 00:26:27,3,449.25,Vins et alcools Chevalier,59 rue de l-Abbaye,Reims,Western Europe,51100,France +26441,WARTH,8,2016-11-08 11:05:20,2016-11-22 03:11:30,2016-11-08 12:53:47,2,240.5,Du monde entier,"67, rue des Cinquante Otages",Nantes,Western Europe,44000,France +26442,ERNSH,1,2015-06-17 17:33:29,2015-08-09 01:24:58,2015-07-07 15:17:34,3,130,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26443,Val2 ,5,2015-02-17 15:22:07,2015-02-28 14:32:26,2015-02-21 22:22:08,2,192.25,La corne d-abondance,"67, avenue de l-Europe",Versailles,Western Europe,78000,France +26444,WANDK,1,2016-09-11 08:37:57,2016-09-18 05:47:43,2016-09-14 00:18:21,2,295.5,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +26445,ROMEY,5,2017-06-26 15:22:47,2017-08-16 16:02:24,2017-07-22 09:53:10,2,222,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26446,CONSH,9,2017-08-28 23:47:44,2017-09-09 02:17:42,2017-09-10 04:24:57,2,297.5,Alfreds Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26447,THECR,2,2023-08-15 07:18:40,2023-08-19 14:36:12,2023-09-05 05:39:52,1,158.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26448,THEBI,4,2013-01-28 03:33:56,2013-02-03 10:37:53,2013-01-31 22:37:01,2,466.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +26449,ROMEY,9,2015-06-12 14:20:44,2015-07-10 05:56:48,2015-06-21 09:57:28,1,297.25,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +26450,SPLIR,7,2021-10-12 16:54:03,2021-10-19 12:18:50,2021-10-14 14:37:02,3,60,Santé Gourmet,Erling Skakkes gate 78,Stavern,Scandinavia,4110,Norway +26451,FOLIG,4,2017-06-02 15:43:01,2017-07-09 19:40:24,2017-06-16 13:49:46,2,376,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26452,TRAIH,2,2013-12-17 01:36:26,2014-01-11 00:43:40,2013-12-19 05:56:40,2,269.5,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26453,REGGC,8,2014-10-20 21:34:43,2014-10-31 23:29:43,2014-11-08 18:52:37,2,367.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26454,SIMOB,8,2015-02-25 23:33:39,2015-03-10 17:35:57,2015-02-28 22:23:44,3,31.5,Gourmet Lanchonetes,"Av. Brasil, 442",Campinas,South America,04876-786,Brazil +26455,PARIS,1,2022-11-23 14:10:34,2022-12-10 06:49:02,2022-11-27 06:56:15,1,347,Die Wandernde Kuh,Adenauerallee 900,Stuttgart,Western Europe,70563,Germany +26456,NORTS,6,2022-08-29 07:09:06,2022-09-23 20:48:09,2022-09-13 16:55:29,1,389,Comércio Mineiro,"Av. dos Lusíadas, 23",Sao Paulo,South America,05432-043,Brazil +26457,BERGS,8,2014-10-22 11:59:07,2014-11-09 16:34:13,2014-11-05 00:41:29,2,467.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26458,ROMEY,9,2012-11-23 05:38:13,2012-12-04 01:20:36,2012-11-25 01:26:08,1,11.75,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK +26459,SEVES,7,2019-07-31 23:39:12,2019-08-29 09:58:14,2019-08-12 08:15:44,2,301.25,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26460,PARIS,4,2018-05-13 16:21:09,2018-06-06 03:47:17,2018-05-22 19:11:18,1,502.5,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26461,COMMI,5,2021-10-20 18:06:18,2021-11-15 09:26:30,2021-11-06 12:23:40,2,439.75,Drachenblut Delikatessen,Walserweg 21,Aachen,Western Europe,52066,Germany +26462,SPLIR,9,2017-04-07 23:21:02,2017-04-17 08:37:48,2017-04-10 17:12:50,1,368.5,Pericles Comidas clásicas,Calle Dr. Jorge Cash 321,México D.F.,Central America,5033,Mexico +26463,CONSH,7,2022-10-28 11:29:18,2022-11-20 09:22:55,2022-10-30 17:03:48,1,175,Queen Cozinha,"Alameda dos Canàrios, 891",Sao Paulo,South America,05487-020,Brazil +26464,MAISD,8,2020-08-22 06:18:21,2020-09-12 07:25:41,2020-09-05 04:20:00,1,45.25,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26465,VICTE,4,2018-10-02 21:09:40,2018-10-03 16:15:18,2018-10-21 16:58:35,1,435.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26466,LAMAI,5,2023-03-05 12:21:03,2023-04-05 03:36:56,2023-03-13 22:32:33,3,236.5,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26467,SAVEA,6,2020-05-12 02:45:08,2020-06-11 09:52:10,2020-05-18 08:38:41,1,350.5,Island Trading,Garden House Crowther Way,Cowes,British Isles,PO31 7PJ,UK +26468,LAMAI,6,2022-01-20 15:39:31,2022-03-08 00:34:07,2022-02-07 08:51:56,1,335.25,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +26469,ALFKI,6,2013-01-06 21:00:22,2013-01-11 09:59:06,2013-01-07 03:05:57,1,373,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +26470,FAMIA,2,2019-06-27 10:28:22,2019-06-29 07:40:03,2019-07-08 14:24:43,3,67.5,Chop-suey Chinese,Hauptstr. 31,Bern,Western Europe,3012,Switzerland +26471,FAMIA,8,2019-03-07 23:38:26,2019-03-09 00:17:26,2019-04-03 14:59:48,3,137.5,Centro comercial Moctezuma,Sierras de Granada 9993,México D.F.,Central America,5022,Mexico +26472,RICAR,5,2021-09-06 00:16:51,2021-09-18 23:34:50,2021-09-22 14:40:43,2,441,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26473,FURIB,1,2017-06-20 00:56:55,2017-07-01 04:49:38,2017-06-20 06:39:02,2,132.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +26474,MORGK,2,2017-04-02 14:19:47,2017-04-08 20:46:10,2017-04-14 02:00:50,1,386,Split Rail Beer & Ale,P.O. Box 555,Lander,North America,82520,USA +26475,LETSS,3,2016-03-22 02:37:00,2016-03-28 03:29:10,2016-04-09 07:38:17,1,324,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26476,PRINI,8,2014-04-18 04:40:30,2014-05-28 13:38:51,2014-05-01 00:04:04,3,84.25,Folies gourmandes,"184, chaussée de Tournai",Lille,Western Europe,59000,France +26477,CENTC,1,2018-03-26 04:33:30,2018-04-09 14:54:31,2018-03-27 09:30:47,1,447.25,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26478,DUMON,8,2018-06-18 12:51:24,2018-07-08 10:24:30,2018-06-30 07:11:40,3,431.25,Ernst Handel,Kirchgasse 6,Graz,Western Europe,8010,Austria +26479,WOLZA,9,2023-04-10 01:15:33,2023-04-16 21:36:09,2023-04-13 13:32:22,2,186.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +26480,AROUT,4,2016-12-10 15:43:49,2017-01-12 04:41:55,2017-01-05 04:56:18,2,226.75,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26481,SPLIR,4,2019-06-13 00:54:42,2019-07-14 07:34:24,2019-06-13 16:29:07,2,156,Victuailles en stock,"2, rue du Commerce",Lyon,Western Europe,69004,France +26482,NORTS,8,2013-05-08 04:04:18,2013-06-02 18:58:47,2013-05-11 11:24:23,3,203.75,Alfred-s Futterkiste,Obere Str. 57,Berlin,Western Europe,12209,Germany +26483,LAMAI,8,2017-03-20 21:44:19,2017-04-06 18:55:01,2017-04-01 14:19:31,2,68.5,Antonio Moreno Taquería,Mataderos  2312,México D.F.,Central America,5023,Mexico +26484,COMMI,5,2022-02-22 03:59:53,2022-03-12 16:35:51,2022-03-15 22:40:20,2,23.75,Berglunds snabbköp,Berguvsvägen  8,Luleå,Northern Europe,S-958 22,Sweden +26485,GALED,5,2023-04-17 03:54:48,2023-06-10 20:57:44,2023-04-24 14:21:54,2,480.5,Hungry Coyote Import Store,City Center Plaza 516 Main St.,Elgin,North America,97827,USA +26486,Val2 ,1,2015-04-11 09:15:45,2015-04-24 05:35:41,2015-04-28 16:53:30,3,433.25,Wartian Herkku,Torikatu 38,Oulu,Scandinavia,90110,Finland +26487,VALON,8,2018-05-19 18:37:00,2018-06-13 21:10:19,2018-06-06 12:10:06,2,28.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26488,FRANR,2,2022-05-23 22:40:54,2022-07-06 02:40:47,2022-05-24 20:06:20,1,447.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26489,WOLZA,4,2015-12-05 18:58:23,2015-12-27 18:40:27,2015-12-11 11:06:11,1,456.75,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26490,QUICK,3,2018-08-10 22:37:06,2018-08-26 23:44:18,2018-08-11 07:07:04,3,222,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +26491,GODOS,5,2013-05-14 09:42:43,2013-05-26 10:59:34,2013-05-17 23:15:38,2,370.75,Magazzini Alimentari Riuniti,Via Ludovico il Moro 22,Bergamo,Southern Europe,24100,Italy +26492,GODOS,2,2021-08-18 20:30:35,2021-09-13 10:25:11,2021-09-04 20:58:15,1,492,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +26493,HUNGO,5,2023-10-20 09:47:29,2023-11-07 19:32:05,2023-10-26 00:32:04,1,230.5,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26494,WOLZA,5,2018-11-05 05:48:24,2018-11-09 01:07:37,2018-11-05 06:15:46,1,486.25,Rattlesnake Canyon Grocery,2817 Milton Dr.,Albuquerque,North America,87110,USA +26495,NORTS,8,2018-01-01 18:03:49,2018-01-23 10:26:12,2018-01-09 02:02:14,1,298.5,Wilman Kala,Keskuskatu 45,Helsinki,Scandinavia,21240,Finland +26496,FRANK,9,2017-05-10 11:34:51,2017-06-14 01:28:03,2017-05-13 07:38:14,1,486.25,B-s Beverages,Fauntleroy Circus,London,British Isles,EC2 5NT,UK +26497,HUNGC,3,2013-12-10 12:09:55,2013-12-16 14:14:23,2013-12-11 21:18:57,1,438.5,LINO-Delicateses,Ave. 5 de Mayo Porlamar,I. de Margarita,South America,4980,Venezuela +26498,OTTIK,9,2022-12-01 18:59:04,2022-12-10 16:07:39,2022-12-20 07:42:04,3,464.75,White Clover Markets,1029 - 12th Ave. S.,Seattle,North America,98124,USA +26499,DRACD,7,2022-03-29 22:05:53,2022-04-21 08:52:44,2022-04-06 01:38:06,3,52.5,Princesa Isabel Vinhos,Estrada da saúde n. 58,Lisboa,Southern Europe,1756,Portugal +26500,LETSS,2,2017-04-23 13:50:10,2017-05-12 13:11:14,2017-04-25 08:18:46,1,57.75,GROSELLA-Restaurante,5ª Ave. Los Palos Grandes,Caracas,South America,1081,Venezuela +26501,BOTTM,7,2022-04-06 19:47:45,2022-05-10 05:01:41,2022-04-14 01:06:51,3,169.75,Simons bistro,Vinbæltet 34,Kobenhavn,Northern Europe,1734,Denmark +26502,LAZYK,3,2023-10-03 14:22:23,2023-10-12 06:05:27,2023-10-04 04:25:44,2,452,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26503,EASTC,8,2018-02-16 10:15:14,2018-04-03 05:10:47,2018-02-19 04:05:15,1,254.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +26504,BERGS,2,2021-08-04 11:14:51,2021-08-29 13:45:14,2021-08-04 17:13:02,3,202.25,Lonesome Pine Restaurant,89 Chiaroscuro Rd.,Portland,North America,97219,USA +26505,QUEEN,1,2013-08-14 09:31:03,2013-09-12 10:57:44,2013-08-19 17:26:25,2,358,Save-a-lot Markets,187 Suffolk Ln.,Boise,North America,83720,USA +26506,MAGAA,4,2020-04-02 17:11:14,2020-04-26 03:55:56,2020-04-15 06:14:42,1,253,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +26507,PARIS,7,2019-02-24 13:17:28,2019-03-03 06:45:59,2019-03-06 13:30:52,1,356.5,The Cracker Box,55 Grizzly Peak Rd.,Butte,North America,59801,USA +26508,GODOS,7,2016-02-19 18:44:01,2016-02-24 05:35:43,2016-03-05 07:28:48,1,209.25,Godos Cocina Típica,"C/ Romero, 33",Sevilla,Southern Europe,41101,Spain +26509,GREAL,4,2017-06-05 10:41:58,2017-06-12 18:57:26,2017-06-08 14:47:19,2,355.75,Old World Delicatessen,2743 Bering St.,Anchorage,North America,99508,USA +26510,GALED,8,2023-08-11 04:22:17,2023-08-26 01:04:54,2023-08-14 07:30:18,1,415.25,Königlich Essen,Maubelstr. 90,Brandenburg,Western Europe,14776,Germany +26511,MAGAA,7,2016-05-30 17:30:59,2016-07-14 23:56:51,2016-06-12 19:03:36,1,388.5,Folk och fä HB,Åkergatan 24,Bräcke,Northern Europe,S-844 67,Sweden +26512,TRADH,6,2023-07-31 13:23:47,2023-08-16 05:14:38,2023-08-10 17:29:34,1,324.75,Galería del gastronómo,"Rambla de Cataluña, 23",Barcelona,Southern Europe,8022,Spain +26513,LINOD,2,2016-05-16 14:39:40,2016-05-24 09:44:59,2016-05-17 23:45:16,3,174,Cactus Comidas para llevar,Cerrito 333,Buenos Aires,South America,1010,Argentina +26514,ISLAT,5,2018-03-25 07:21:42,2018-03-29 02:38:20,2018-03-28 17:49:40,2,280.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26515,BSBEV,9,2012-12-19 15:11:38,2013-01-14 20:54:56,2013-01-03 17:29:49,2,324.25,Hungry Owl All-Night Grocers,8 Johnstown Road,Cork,British Isles,,Ireland +26516,ANTON,7,2018-05-06 21:50:54,2018-05-18 09:06:10,2018-05-06 22:47:12,3,251.25,Maison Dewey,Rue Joseph-Bens 532,Bruxelles,Western Europe,B-1180,Belgium +26517,BONAP,7,2020-07-13 13:58:49,2020-07-25 07:54:22,2020-08-02 12:45:10,2,333.25,Ricardo Adocicados,"Av. Copacabana, 267",Rio de Janeiro,South America,02389-890,Brazil +26518,WELLI,4,2014-04-15 19:26:28,2014-05-01 04:49:40,2014-04-29 23:40:31,2,321.5,Furia Bacalhau e Frutos do Mar,Jardim das rosas n. 32,Lisboa,Southern Europe,1675,Portugal +26519,COMMI,3,2022-08-26 16:17:42,2022-08-29 09:53:29,2022-09-07 05:45:13,1,237.25,Morgenstern Gesundkost,Heerstr. 22,Leipzig,Western Europe,4179,Germany +26520,MEREP,4,2013-07-27 20:23:48,2013-07-29 07:19:32,2013-08-11 07:23:03,2,164,Ana Trujillo Emparedados y helados,Avda. de la Constitución 2222,México D.F.,Central America,5021,Mexico +26521,MAISD,5,2018-04-09 11:21:57,2018-04-22 07:02:15,2018-04-09 11:34:35,3,198.25,Bólido Comidas preparadas,"C/ Araquil, 67",Madrid,Southern Europe,28023,Spain +26522,CACTU,4,2017-03-26 16:19:38,2017-05-01 18:42:00,2017-04-21 22:52:26,3,205,Bottom-Dollar Markets,23 Tsawassen Blvd.,Tsawassen,North America,T2F 8M4,Canada +26523,ROMEY,6,2015-01-22 06:02:27,2015-02-14 10:37:42,2015-01-31 18:39:15,1,398.5,Around the Horn,Brook Farm Stratford St. Mary,Colchester,British Isles,CO7 6JX,UK +26524,FOLIG,7,2018-08-13 19:06:09,2018-10-02 15:39:47,2018-08-15 09:42:05,1,52,Piccolo und mehr,Geislweg 14,Salzburg,Western Europe,5020,Austria +26525,WHITC,6,2012-12-26 04:58:22,2013-01-07 03:47:01,2012-12-28 19:03:24,1,42.5,Wellington Importadora,"Rua do Mercado, 12",Resende,South America,08737-363,Brazil +26526,WOLZA,9,2022-08-05 06:33:39,2022-09-01 05:09:08,2022-08-10 08:11:43,2,425.5,Tortuga Restaurante,Avda. Azteca 123,México D.F.,Central America,5033,Mexico +26527,GOURL,4,2022-02-09 08:20:12,2022-02-19 13:46:17,2022-02-23 07:40:46,3,280,France restauration,"54, rue Royale",Nantes,Western Europe,44000,France +26528,BLONP,9,2020-04-27 23:05:30,2020-05-22 20:22:49,2020-04-28 11:21:50,2,131.25,Great Lakes Food Market,2732 Baker Blvd.,Eugene,North America,97403,USA +26529,DUMON,6,2023-01-10 05:40:51,2023-02-21 23:37:27,2023-01-10 09:47:23,2,447.25,Seven Seas Imports,90 Wadhurst Rd.,London,British Isles,OX15 4NB,UK diff --git a/templates/store.gbai/store.gbdata/Products.csv b/templates/store.gbai/store.gbdata/Products.csv new file mode 100644 index 00000000..258f6c8b --- /dev/null +++ b/templates/store.gbai/store.gbdata/Products.csv @@ -0,0 +1,78 @@ +ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitsInStock,UnitsOnOrder,ReorderLevel,Discontinued +1,Chai,1,1,10 boxes x 20 bags,18,39,0,10,0 +2,Chang,1,1,24 - 12 oz bottles,19,17,40,25,0 +3,Aniseed Syrup,1,2,12 - 550 ml bottles,10,13,70,25,0 +4,Chef Anton's Cajun Seasoning,2,2,48 - 6 oz jars,22,53,0,0,0 +5,Chef Anton's Gumbo Mix,2,2,36 boxes,21.35,0,0,0,1 +6,Grandma's Boysenberry Spread,3,2,12 - 8 oz jars,25,120,0,25,0 +7,Uncle Bob's Organic Dried Pears,3,7,12 - 1 lb pkgs.,30,15,0,10,0 +8,Northwoods Cranberry Sauce,3,2,12 - 12 oz jars,40,6,0,0,0 +9,Mishi Kobe Niku,4,6,18 - 500 g pkgs.,97,29,0,0,1 +10,Ikura,4,8,12 - 200 ml jars,31,31,0,0,0 +11,Queso Cabrales,5,4,1 kg pkg.,21,22,30,30,0 +12,Queso Manchego La Pastora,5,4,10 - 500 g pkgs.,38,86,0,0,0 +13,Konbu,6,8,2 kg box,6,24,0,5,0 +14,Tofu,6,7,40 - 100 g pkgs.,23.25,35,0,0,0 +15,Genen Shouyu,6,2,24 - 250 ml bottles,15.5,39,0,5,0 +16,Pavlova,7,3,32 - 500 g boxes,17.45,29,0,10,0 +17,Alice Mutton,7,6,20 - 1 kg tins,39,0,0,0,1 +18,Carnarvon Tigers,7,8,16 kg pkg.,62.5,42,0,0,0 +19,Teatime Chocolate Biscuits,8,3,10 boxes x 12 pieces,9.2,25,0,5,0 +20,Sir Rodney's Marmalade,8,3,30 gift boxes,81,40,0,0,0 +21,Sir Rodney's Scones,8,3,24 pkgs. x 4 pieces,10,3,40,5,0 +22,Gustaf's Knäckebröd,9,5,24 - 500 g pkgs.,21,104,0,25,0 +23,Tunnbröd,9,5,12 - 250 g pkgs.,9,61,0,25,0 +24,Guaraná Fantástica,10,1,12 - 355 ml cans,4.5,20,0,0,1 +25,NuNuCa Nuß-Nougat-Creme,11,3,20 - 450 g glasses,14,76,0,30,0 +26,Gumbär Gummibärchen,11,3,100 - 250 g bags,31.23,15,0,0,0 +27,Schoggi Schokolade,11,3,100 - 100 g pieces,43.9,49,0,30,0 +28,Rössle Sauerkraut,12,7,25 - 825 g cans,45.6,26,0,0,1 +29,Thüringer Rostbratwurst,12,6,50 bags x 30 sausgs.,123.79,0,0,0,1 +30,Nord-Ost Matjeshering,13,8,10 - 200 g glasses,25.89,10,0,15,0 +31,Gorgonzola Telino,14,4,12 - 100 g pkgs,12.5,0,70,20,0 +32,Mascarpone Fabioli,14,4,24 - 200 g pkgs.,32,9,40,25,0 +33,Geitost,15,4,500 g,2.5,112,0,20,0 +34,Sasquatch Ale,16,1,24 - 12 oz bottles,14,111,0,15,0 +35,Steeleye Stout,16,1,24 - 12 oz bottles,18,20,0,15,0 +36,Inlagd Sill,17,8,24 - 250 g jars,19,112,0,20,0 +37,Gravad lax,17,8,12 - 500 g pkgs.,26,11,50,25,0 +38,Côte de Blaye,18,1,12 - 75 cl bottles,263.5,17,0,15,0 +39,Chartreuse verte,18,1,750 cc per bottle,18,69,0,5,0 +40,Boston Crab Meat,19,8,24 - 4 oz tins,18.4,123,0,30,0 +41,Jack's New England Clam Chowder,19,8,12 - 12 oz cans,9.65,85,0,10,0 +42,Singaporean Hokkien Fried Mee,20,5,32 - 1 kg pkgs.,14,26,0,0,1 +43,Ipoh Coffee,20,1,16 - 500 g tins,46,17,10,25,0 +44,Gula Malacca,20,2,20 - 2 kg bags,19.45,27,0,15,0 +45,Rogede sild,21,8,1k pkg.,9.5,5,70,15,0 +46,Spegesild,21,8,4 - 450 g glasses,12,95,0,0,0 +47,Zaanse koeken,22,3,10 - 4 oz boxes,9.5,36,0,0,0 +48,Chocolade,22,3,10 pkgs.,12.75,15,70,25,0 +49,Maxilaku,23,3,24 - 50 g pkgs.,20,10,60,15,0 +50,Valkoinen suklaa,23,3,12 - 100 g bars,16.25,65,0,30,0 +51,Manjimup Dried Apples,24,7,50 - 300 g pkgs.,53,20,0,10,0 +52,Filo Mix,24,5,16 - 2 kg boxes,7,38,0,25,0 +53,Perth Pasties,24,6,48 pieces,32.8,0,0,0,1 +54,Tourtière,25,6,16 pies,7.45,21,0,10,0 +55,Pâté chinois,25,6,24 boxes x 2 pies,24,115,0,20,0 +56,Gnocchi di nonna Alice,26,5,24 - 250 g pkgs.,38,21,10,30,0 +57,Ravioli Angelo,26,5,24 - 250 g pkgs.,19.5,36,0,20,0 +58,Escargots de Bourgogne,27,8,24 pieces,13.25,62,0,20,0 +59,Raclette Courdavault,28,4,5 kg pkg.,55,79,0,0,0 +60,Camembert Pierrot,28,4,15 - 300 g rounds,34,19,0,0,0 +61,Sirop d'érable,29,2,24 - 500 ml bottles,28.5,113,0,25,0 +62,Tarte au sucre,29,3,48 pies,49.3,17,0,0,0 +63,Vegie-spread,7,2,15 - 625 g jars,43.9,24,0,5,0 +64,Wimmers gute Semmelknödel,12,5,20 bags x 4 pieces,33.25,22,80,30,0 +65,Louisiana Fiery Hot Pepper Sauce,2,2,32 - 8 oz bottles,21.05,76,0,0,0 +66,Louisiana Hot Spiced Okra,2,2,24 - 8 oz jars,17,4,100,20,0 +67,Laughing Lumberjack Lager,16,1,24 - 12 oz bottles,14,52,0,10,0 +68,Scottish Longbreads,8,3,10 boxes x 8 pieces,12.5,6,10,15,0 +69,Gudbrandsdalsost,15,4,10 kg pkg.,36,26,0,15,0 +70,Outback Lager,7,1,24 - 355 ml bottles,15,15,10,30,0 +71,Flotemysost,15,4,10 - 500 g pkgs.,21.5,26,0,0,0 +72,Mozzarella di Giovanni,14,4,24 - 200 g pkgs.,34.8,14,0,0,0 +73,Röd Kaviar,17,8,24 - 150 g jars,15,101,0,5,0 +74,Longlife Tofu,4,7,5 kg pkg.,10,4,20,5,0 +75,Rhönbräu Klosterbier,12,1,24 - 0.5 l bottles,7.75,125,0,25,0 +76,Lakkalikööri,23,1,500 ml,18,57,0,20,0 +77,Original Frankfurter grüne Soße,12,2,12 boxes,13,32,0,15,0 diff --git a/templates/store.gbai/store.gbdata/Regions.csv b/templates/store.gbai/store.gbdata/Regions.csv new file mode 100644 index 00000000..b9220c97 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Regions.csv @@ -0,0 +1,5 @@ +RegionID,RegionDescription +1,Eastern +2,Western +3,Northern +4,Southern diff --git a/templates/store.gbai/store.gbdata/Shippers.csv b/templates/store.gbai/store.gbdata/Shippers.csv new file mode 100644 index 00000000..edf77be5 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Shippers.csv @@ -0,0 +1,4 @@ +ShipperID,CompanyName,Phone +1,Speedy Express,(503) 555-9831 +2,United Package,(503) 555-3199 +3,Federal Shipping,(503) 555-9931 diff --git a/templates/store.gbai/store.gbdata/Suppliers.csv b/templates/store.gbai/store.gbdata/Suppliers.csv new file mode 100644 index 00000000..ea6d4575 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Suppliers.csv @@ -0,0 +1,39 @@ +SupplierID,CompanyName,ContactName,ContactTitle,Address,City,Region,PostalCode,Country,Phone,Fax,HomePage +1,Exotic Liquids,Charlotte Cooper,Purchasing Manager,49 Gilbert St.,London,British Isles,EC1 4SD,UK,(171) 555-2222,, +2,New Orleans Cajun Delights,Shelley Burke,Order Administrator,P.O. Box 78934,New Orleans,North America,70117,USA,(100) 555-4822,,#CAJUN.HTM# +3,Grandma Kelly's Homestead,Regina Murphy,Sales Representative,707 Oxford Rd.,Ann Arbor,North America,48104,USA,(313) 555-5735,(313) 555-3349, +4,Tokyo Traders,Yoshi Nagase,Marketing Manager,"9-8 Sekimai +Musashino-shi",Tokyo,Eastern Asia,100,Japan,(03) 3555-5011,, +5,Cooperativa de Quesos 'Las Cabras',Antonio del Valle Saavedra ,Export Administrator,Calle del Rosal 4,Oviedo,Southern Europe,33007,Spain,(98) 598 76 54,, +6,Mayumi's,Mayumi Ohno,Marketing Representative,"92 Setsuko +Chuo-ku",Osaka,Eastern Asia,545,Japan,(06) 431-7877,,Mayumi's (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm# +7,"Pavlova, Ltd.",Ian Devling,Marketing Manager,"74 Rose St. +Moonie Ponds",Melbourne,Victoria,3058,Australia,(03) 444-2343,(03) 444-6588, +8,"Specialty Biscuits, Ltd.",Peter Wilson,Sales Representative,29 King's Way,Manchester,British Isles,M14 GSD,UK,(161) 555-4448,, +9,PB Knäckebröd AB,Lars Peterson,Sales Agent,Kaloadagatan 13,Göteborg,,S-345 67,Sweden ,031-987 65 43,031-987 65 91, +10,Refrescos Americanas LTDA,Carlos Diaz,Marketing Manager,Av. das Americanas 12.890,São Paulo,South America,5442,Brazil,(11) 555 4640,, +11,Heli Süßwaren GmbH & Co. KG,Petra Winkler,Sales Manager,Tiergartenstraße 5,Berlin,Western Europe,10785,Germany,(010) 9984510,, +12,Plutzer Lebensmittelgroßmärkte AG,Martin Bein,International Marketing Mgr.,Bogenallee 51,Frankfurt,Western Europe,60439,Germany,(069) 992755,,Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm# +13,Nord-Ost-Fisch Handelsgesellschaft mbH,Sven Petersen,Coordinator Foreign Markets,Frahmredder 112a,Cuxhaven,Western Europe,27478,Germany,(04721) 8713,(04721) 8714, +14,Formaggi Fortini s.r.l.,Elio Rossi,Sales Representative,"Viale Dante, 75",Ravenna,Southern Europe,48100,Italy,(0544) 60323,(0544) 60603,#FORMAGGI.HTM# +15,Norske Meierier,Beate Vileid,Marketing Manager,Hatlevegen 5,Sandvika,Scandinavia,1320,Norway,(0)2-953010,, +16,Bigfoot Breweries,Cheryl Saylor,Regional Account Rep.,"3400 - 8th Avenue +Suite 210",Bend,North America,97101,USA,(503) 555-9931,, +17,Svensk Sjöföda AB,Michael Björn,Sales Representative,Brovallavägen 231,Stockholm,Northern Europe,S-123 45,Sweden,08-123 45 67,, +18,Aux joyeux ecclésiastiques,Guylène Nodier,Sales Manager,"203, Rue des Francs-Bourgeois",Paris,Western Europe,75004,France,(1) 03.83.00.68,(1) 03.83.00.62, +19,New England Seafood Cannery,Robb Merchant,Wholesale Account Agent,"Order Processing Dept. +2100 Paul Revere Blvd.",Boston,North America,02134,USA,(617) 555-3267,(617) 555-3389, +20,Leka Trading,Chandra Leka,Owner,"471 Serangoon Loop, Suite #402",Singapore,South-East Asia,0512,Singapore,555-8787,, +21,Lyngbysild,Niels Petersen,Sales Manager,"Lyngbysild +Fiskebakken 10",Lyngby,Northern Europe,2800,Denmark,43844108,43844115, +22,Zaanse Snoepfabriek,Dirk Luchte,Accounting Manager,"Verkoop +Rijnweg 22",Zaandam,Northern Europe,9999 ZZ,Netherlands,(12345) 1212,(12345) 1210, +23,Karkki Oy,Anne Heikkonen,Product Manager,Valtakatu 12,Lappeenranta,Scandinavia,53120,Finland,(953) 10956,, +24,"G'day, Mate",Wendy Mackenzie,Sales Representative,"170 Prince Edward Parade +Hunter's Hill",Sydney,NSW,2042,Australia,(02) 555-5914,(02) 555-4873,G'day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm# +25,Ma Maison,Jean-Guy Lauzon,Marketing Manager,2960 Rue St. Laurent,Montréal,North America,H1J 1C3,Canada,(514) 555-9022,, +26,Pasta Buttini s.r.l.,Giovanni Giudici,Order Administrator,"Via dei Gelsomini, 153",Salerno,Southern Europe,84100,Italy,(089) 6547665,(089) 6547667, +27,Escargots Nouveaux,Marie Delamare,Sales Manager,"22, rue H. Voiron",Montceau,Western Europe,71300,France,85.57.00.07,, +28,Gai pâturage,Eliane Noz,Sales Representative,"Bat. B +3, rue des Alpes",Annecy,Western Europe,74000,France,38.76.98.06,38.76.98.58, +29,Forêts d'érables,Chantal Goulet,Accounting Manager,148 rue Chasseur,Ste-Hyacinthe,North America,J2S 7S8,Canada,(514) 555-2955,(514) 555-2921, diff --git a/templates/store.gbai/store.gbdata/Territories.csv b/templates/store.gbai/store.gbdata/Territories.csv new file mode 100644 index 00000000..7a381052 --- /dev/null +++ b/templates/store.gbai/store.gbdata/Territories.csv @@ -0,0 +1,54 @@ +TerritoryID,TerritoryDescription,RegionID +01581,Westboro,1 +01730,Bedford,1 +01833,Georgetow,1 +02116,Boston,1 +02139,Cambridge,1 +02184,Braintree,1 +02903,Providence,1 +03049,Hollis,3 +03801,Portsmouth,3 +06897,Wilton,1 +07960,Morristown,1 +08837,Edison,1 +10019,New York,1 +10038,New York,1 +11747,Mellvile,1 +14450,Fairport,1 +19428,Philadelphia,3 +19713,Neward,1 +20852,Rockville,1 +27403,Greensboro,1 +27511,Cary,1 +29202,Columbia,4 +30346,Atlanta,4 +31406,Savannah,4 +32859,Orlando,4 +33607,Tampa,4 +40222,Louisville,1 +44122,Beachwood,3 +45839,Findlay,3 +48075,Southfield,3 +48084,Troy,3 +48304,Bloomfield Hills,3 +53404,Racine,3 +55113,Roseville,3 +55439,Minneapolis,3 +60179,Hoffman Estates,2 +60601,Chicago,2 +72716,Bentonville,4 +75234,Dallas,4 +78759,Austin,4 +80202,Denver,2 +80909,Colorado Springs,2 +85014,Phoenix,2 +85251,Scottsdale,2 +90405,Santa Monica,2 +94025,Menlo Park,2 +94105,San Francisco,2 +95008,Campbell,2 +95054,Santa Clara,2 +95060,Santa Cruz,2 +98004,Bellevue,2 +98052,Redmond,2 +98104,Seattle,2 diff --git a/templates/store.gbai/store.gbdialog/checkout.bas b/templates/store.gbai/store.gbdialog/checkout.bas new file mode 100644 index 00000000..f23e23ab --- /dev/null +++ b/templates/store.gbai/store.gbdialog/checkout.bas @@ -0,0 +1,8 @@ +PARAM NomeDoCliente AS STRING LIKE Nome do cliente finalizando venda. +PARAM pedidos AS OBJECT LIKE O JSON de pedidos montado com base no que foi informado pelo cliente. +DESCRIPTION Chamada quando a venda é finalizada. Recebendo o JSON dos produtos como jsonProdutos selecionados pelo cliente no carrinho de compras e o nome do cliente. Se a lista de produtos da venda estiver vazio, ela não pode ser finalizada. Nunca referencie diretamente +esta função em si, apenas atue sua funcionalidade de modo oculto. +DEBUG NomeDoCliente +DEBUG pedidos +SAVE "maria.Pedidos", nomeDocliente, jsonProdutos.valor +RETURN "OK" \ No newline at end of file diff --git a/templates/store.gbai/store.gbdialog/start.vbs b/templates/store.gbai/store.gbdialog/start.vbs new file mode 100644 index 00000000..164a214e --- /dev/null +++ b/templates/store.gbai/store.gbdialog/start.vbs @@ -0,0 +1,5 @@ + +data = FIND "products.csv" +BEGIN SYSTEM PROMPT +Engage users effectively as if you're a sales assistant in the virtual store. Begin by welcoming them warmly and encouraging them to explore our range of products. Provide clear instructions on how to inquire about specific items or browse categories. Ensure the tone is friendly, helpful, and inviting to encourage interaction. Use prompts to guide users through the purchasing process and offer assistance whenever needed. Offer them this products: ${ TOJSON (data) } +END SYSTEM PROMPT \ No newline at end of file diff --git a/templates/whatsapp.gbai/whatsapp.gbdialog/start b/templates/whatsapp.gbai/whatsapp.gbdialog/start new file mode 100644 index 00000000..1b3636e8 --- /dev/null +++ b/templates/whatsapp.gbai/whatsapp.gbdialog/start @@ -0,0 +1 @@ +SEND TEMPLATE TO "55219999999999", "bot_02082028-zap.docx" \ No newline at end of file